/* Options: Date: 2025-11-08 17:57:11 Version: 5.10 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: http://localhost:5492 //Package: //GlobalNamespace: dtos //AddPropertyAccessors: True //SettersReturnThis: True //AddServiceStackTypes: True //AddResponseStatus: False //AddDescriptionAsComments: True //AddImplicitVersion: //IncludeTypes: //ExcludeTypes: //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,net.servicestack.client.*,com.google.gson.annotations.*,com.google.gson.reflect.* */ import java.math.*; import java.util.*; import net.servicestack.client.*; import com.google.gson.annotations.*; import com.google.gson.reflect.*; public class dtos { @Route(Path="/auth/logout", Verbs="GET") @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="logged out OK", StatusCode=200) public static class LogoutGetRequest implements IReturn { private static Object responseType = LogoutGetResponse.class; public Object getResponseType() { return responseType; } } @Route("/login") public static class LoginGetRequest implements IReturn { public String redirect = null; public String getRedirect() { return redirect; } public LoginGetRequest setRedirect(String value) { this.redirect = value; return this; } private static Object responseType = LoginGetResponse.class; public Object getResponseType() { return responseType; } } @Route(Path="/Bills/{BillID}", Verbs="GET") @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="No bill record with the BillID provided was found", StatusCode=404) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Read OK", StatusCode=200) public static class BillGETRequest implements IReturn { public String BillID = null; public String getBillID() { return BillID; } public BillGETRequest setBillID(String value) { this.BillID = value; return this; } private static Object responseType = Bill.class; public Object getResponseType() { return responseType; } } @Route(Path="/Bills", Verbs="POST") @ApiResponse(Description="Created OK", StatusCode=201) // @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="Not authenticated", StatusCode=401) public static class BillPOSTRequest extends Bill implements IReturn { private static Object responseType = Bill.class; public Object getResponseType() { return responseType; } } @Route(Path="/Bills/{BillID}", Verbs="PATCH") @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="Updated OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="No bill record with the BillID provided was found", StatusCode=404) public static class BillPATCHRequest extends Bill implements IReturn { public String BillID = null; public String getBillID() { return BillID; } public BillPATCHRequest setBillID(String value) { this.BillID = value; return this; } private static Object responseType = Bill.class; public Object getResponseType() { return responseType; } } @Route(Path="/Bills/{BillID}", Verbs="DELETE") @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="No bill record with the BillID provided was found", StatusCode=404) // @ApiResponse(Description="Deleted OK", StatusCode=204) public static class BillDELETERequest { public String BillID = null; public String getBillID() { return BillID; } public BillDELETERequest setBillID(String value) { this.BillID = value; return this; } } @Route(Path="/Bills/{BillID}/CustomFieldValues", Verbs="GET") @ApiResponse(Description="No bill record with the BillID provided was found", StatusCode=404) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="Read OK", StatusCode=200) public static class BillCustomFieldValuesGETManyRequest implements IReturn> { public String BillID = null; public String getBillID() { return BillID; } public BillCustomFieldValuesGETManyRequest setBillID(String value) { this.BillID = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @Route(Path="/Bills/{BillID}/CustomFieldValues/{SettingID}", Verbs="GET") @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="No bill custom field value with the BillID or SettingID provided was found", StatusCode=404) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class BillCustomFieldValueGETRequest implements IReturn { public String BillID = null; public String SettingID = null; public String getBillID() { return BillID; } public BillCustomFieldValueGETRequest setBillID(String value) { this.BillID = value; return this; } public String getSettingID() { return SettingID; } public BillCustomFieldValueGETRequest setSettingID(String value) { this.SettingID = value; return this; } private static Object responseType = CustomFieldValue.class; public Object getResponseType() { return responseType; } } @Route(Path="/Bills/{BillID}/CustomFieldValues/{SettingID}", Verbs="PATCH") @ApiResponse(Description="Updated OK", StatusCode=200) // @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="No bill custom field value with the BillID or SettingID provided was found", StatusCode=404) public static class BillCustomFieldValuePATCHRequest extends CustomFieldValue implements IReturn { public String BillID = null; public String SettingID = null; public String getBillID() { return BillID; } public BillCustomFieldValuePATCHRequest setBillID(String value) { this.BillID = value; return this; } public String getSettingID() { return SettingID; } public BillCustomFieldValuePATCHRequest setSettingID(String value) { this.SettingID = value; return this; } private static Object responseType = CustomFieldValue.class; public Object getResponseType() { return responseType; } } @Route(Path="/Bills/CustomFields", Verbs="GET") @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class BillCustomFieldsGETManyRequest implements IReturn> { private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @Route(Path="/Bills/CustomFields/{SettingID}", Verbs="GET") @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="No custom field with the SettingID provided was found", StatusCode=404) // @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class BillCustomFieldGETRequest implements IReturn { public String SettingID = null; public String getSettingID() { return SettingID; } public BillCustomFieldGETRequest setSettingID(String value) { this.SettingID = value; return this; } private static Object responseType = CustomField.class; public Object getResponseType() { return responseType; } } @Route(Path="/Bills/DocumentTypes/{DocumentTypeID}", Verbs="GET") @ApiResponse(Description="No bill document type with the DocumentTypeID provided was found", StatusCode=404) // @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class BillDocumentTypeGETRequest implements IReturn { public String DocumentTypeID = null; public String getDocumentTypeID() { return DocumentTypeID; } public BillDocumentTypeGETRequest setDocumentTypeID(String value) { this.DocumentTypeID = value; return this; } private static Object responseType = DocumentType.class; public Object getResponseType() { return responseType; } } @Route(Path="/Bills/DocumentTypes", Verbs="GET") @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="Read OK", StatusCode=200) public static class BillDocumentTypesGETManyRequest implements IReturn> { private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @Route(Path="/Bills/DocumentTypes", Verbs="POST") @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Created OK", StatusCode=201) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class BillDocumentTypePOSTRequest extends DocumentType implements IReturn { private static Object responseType = DocumentType.class; public Object getResponseType() { return responseType; } } @Route(Path="/Bills/DocumentTypes/{DocumentTypeID}", Verbs="PATCH") @ApiResponse(Description="No bill document type with the DocumentTypeID provided was found", StatusCode=404) // @ApiResponse(Description="Updated OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class BillDocumentTypePATCHRequest extends DocumentType implements IReturn { public String DocumentTypeID = null; public String getDocumentTypeID() { return DocumentTypeID; } public BillDocumentTypePATCHRequest setDocumentTypeID(String value) { this.DocumentTypeID = value; return this; } private static Object responseType = DocumentType.class; public Object getResponseType() { return responseType; } } @Route(Path="/Bills/DocumentTypes/{DocumentTypeID}", Verbs="DELETE") @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="No bill document type with the DocumentTypeID provided was found", StatusCode=404) // @ApiResponse(Description="Deleted OK", StatusCode=204) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class BillDocumentTypeDELETERequest { public String DocumentTypeID = null; public String getDocumentTypeID() { return DocumentTypeID; } public BillDocumentTypeDELETERequest setDocumentTypeID(String value) { this.DocumentTypeID = value; return this; } } @Route(Path="/Bills/{BillID}/Documents/{DocumentID}", Verbs="GET") @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="No bill document with the BillID or DocumentID provided was found", StatusCode=404) // @ApiResponse(Description="Read OK", StatusCode=200) public static class BillDocumentGETRequest implements IReturn { public String BillID = null; public String DocumentID = null; public String getBillID() { return BillID; } public BillDocumentGETRequest setBillID(String value) { this.BillID = value; return this; } public String getDocumentID() { return DocumentID; } public BillDocumentGETRequest setDocumentID(String value) { this.DocumentID = value; return this; } private static Object responseType = Document.class; public Object getResponseType() { return responseType; } } @Route(Path="/Bills/{BillID}/Documents", Verbs="GET") @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="No bill with the BillID provided was found", StatusCode=404) // @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) public static class BillDocumentsGETManyRequest implements IReturn> { public String BillID = null; public String getBillID() { return BillID; } public BillDocumentsGETManyRequest setBillID(String value) { this.BillID = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @Route(Path="/Bills/{BillID}/Documents", Verbs="POST") @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="No bill with the BillID provided was found", StatusCode=404) // @ApiResponse(Description="Created OK", StatusCode=201) public static class BillDocumentPOSTRequest extends Document implements IReturn { public String BillID = null; public String getBillID() { return BillID; } public BillDocumentPOSTRequest setBillID(String value) { this.BillID = value; return this; } private static Object responseType = Document.class; public Object getResponseType() { return responseType; } } @Route(Path="/Bills/{BillID}/Documents/{DocumentID}", Verbs="PATCH") @ApiResponse(Description="Updated OK", StatusCode=200) // @ApiResponse(Description="No bill with the BillID provided was found", StatusCode=404) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class BillDocumentPATCHRequest extends Document implements IReturn { public String BillID = null; public String DocumentID = null; public String getBillID() { return BillID; } public BillDocumentPATCHRequest setBillID(String value) { this.BillID = value; return this; } public String getDocumentID() { return DocumentID; } public BillDocumentPATCHRequest setDocumentID(String value) { this.DocumentID = value; return this; } private static Object responseType = Document.class; public Object getResponseType() { return responseType; } } @Route(Path="/Bills/{BillID}/Documents/{DocumentID}", Verbs="DELETE") @ApiResponse(Description="No bill with the BillID provided was found", StatusCode=404) // @ApiResponse(Description="Deleted OK", StatusCode=204) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class BillDocumentDELETERequest { public String BillID = null; public String DocumentID = null; public String getBillID() { return BillID; } public BillDocumentDELETERequest setBillID(String value) { this.BillID = value; return this; } public String getDocumentID() { return DocumentID; } public BillDocumentDELETERequest setDocumentID(String value) { this.DocumentID = value; return this; } } @Route(Path="/Bills/{BillID}/Stages/{StageID}/Inputs/{InputID}/CustomFieldValues", Verbs="GET") @ApiResponse(Description="No bill stage input BillID, StageID or InputID provided was found", StatusCode=404) // @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="Not authenticated", StatusCode=401) public static class BillInputCustomFieldValuesGETManyRequest implements IReturn> { public String BillID = null; public String StageID = null; public String InputID = null; public String getBillID() { return BillID; } public BillInputCustomFieldValuesGETManyRequest setBillID(String value) { this.BillID = value; return this; } public String getStageID() { return StageID; } public BillInputCustomFieldValuesGETManyRequest setStageID(String value) { this.StageID = value; return this; } public String getInputID() { return InputID; } public BillInputCustomFieldValuesGETManyRequest setInputID(String value) { this.InputID = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @Route(Path="/Bills/{BillID}/Stages/{StageID}/Inputs/{InputID}/CustomFieldValues/{SettingID}", Verbs="GET") @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="No bill stage input custom field Value with the BillID, StageID, InputID or SettingID provided was found", StatusCode=404) // @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class BillInputCustomFieldValueGETRequest implements IReturn { public String BillID = null; public String StageID = null; public String InputID = null; public String SettingID = null; public String getBillID() { return BillID; } public BillInputCustomFieldValueGETRequest setBillID(String value) { this.BillID = value; return this; } public String getStageID() { return StageID; } public BillInputCustomFieldValueGETRequest setStageID(String value) { this.StageID = value; return this; } public String getInputID() { return InputID; } public BillInputCustomFieldValueGETRequest setInputID(String value) { this.InputID = value; return this; } public String getSettingID() { return SettingID; } public BillInputCustomFieldValueGETRequest setSettingID(String value) { this.SettingID = value; return this; } private static Object responseType = CustomFieldValue.class; public Object getResponseType() { return responseType; } } @Route(Path="/Bills/{BillID}/Stages/{StageID}/Inputs/{InputID}/CustomFieldValues/{SettingID}", Verbs="PATCH") @ApiResponse(Description="Updated OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="No bill stage input custom field Value with the BillID, StageID, InputID or SettingID provided was found", StatusCode=404) public static class BillInputCustomFieldValuePATCHRequest extends CustomFieldValue implements IReturn { public String BillID = null; public String StageID = null; public String InputID = null; public String SettingID = null; public String getBillID() { return BillID; } public BillInputCustomFieldValuePATCHRequest setBillID(String value) { this.BillID = value; return this; } public String getStageID() { return StageID; } public BillInputCustomFieldValuePATCHRequest setStageID(String value) { this.StageID = value; return this; } public String getInputID() { return InputID; } public BillInputCustomFieldValuePATCHRequest setInputID(String value) { this.InputID = value; return this; } public String getSettingID() { return SettingID; } public BillInputCustomFieldValuePATCHRequest setSettingID(String value) { this.SettingID = value; return this; } private static Object responseType = CustomFieldValue.class; public Object getResponseType() { return responseType; } } @Route(Path="/Bills/Inputs/CustomFields", Verbs="GET") @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class BillInputCustomFieldsGETManyRequest implements IReturn> { private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @Route(Path="/Bills/Inputs/CustomFields/{SettingID}", Verbs="GET") @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class BillInputCustomFieldGETRequest implements IReturn { public String SettingID = null; public String getSettingID() { return SettingID; } public BillInputCustomFieldGETRequest setSettingID(String value) { this.SettingID = value; return this; } private static Object responseType = CustomField.class; public Object getResponseType() { return responseType; } } @Route(Path="/Bills/{BillID}/Stages/{StageID}/Inputs/{InputID}", Verbs="GET") @ApiResponse(Description="No bill stage input with the BillID, StageID, or InputID provided was found", StatusCode=404) // @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class BillInputGETRequest implements IReturn { public String BillID = null; public String StageID = null; public String InputID = null; public String getBillID() { return BillID; } public BillInputGETRequest setBillID(String value) { this.BillID = value; return this; } public String getStageID() { return StageID; } public BillInputGETRequest setStageID(String value) { this.StageID = value; return this; } public String getInputID() { return InputID; } public BillInputGETRequest setInputID(String value) { this.InputID = value; return this; } private static Object responseType = BillInput.class; public Object getResponseType() { return responseType; } } @Route(Path="/Bills/{BillID}/Stages/{StageID}/Inputs", Verbs="GET") @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="No bill stage inputs with the BillID or StageID provided was found", StatusCode=404) public static class BillInputsGETManyRequest implements IReturn> { public String BillID = null; public String StageID = null; public String getBillID() { return BillID; } public BillInputsGETManyRequest setBillID(String value) { this.BillID = value; return this; } public String getStageID() { return StageID; } public BillInputsGETManyRequest setStageID(String value) { this.StageID = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @Route(Path="/Bills/{BillID}/Stages/{StageID}/Inputs", Verbs="POST") @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="No bill stage input with the BillID, StageID or InputID provided was found", StatusCode=404) // @ApiResponse(Description="Created OK", StatusCode=201) // @ApiResponse(Description="Not authenticated", StatusCode=401) public static class BillInputPOSTRequest extends BillInput implements IReturn { public String BillID = null; public String StageID = null; public String getBillID() { return BillID; } public BillInputPOSTRequest setBillID(String value) { this.BillID = value; return this; } public String getStageID() { return StageID; } public BillInputPOSTRequest setStageID(String value) { this.StageID = value; return this; } private static Object responseType = BillInput.class; public Object getResponseType() { return responseType; } } @Route(Path="/Bills/{BillID}/Stages/{StageID}/Inputs/{InputID}", Verbs="PATCH") @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="No bill stage input with the BillID, StageID, or InputID provided was found", StatusCode=404) // @ApiResponse(Description="Updated OK", StatusCode=200) public static class BillInputPATCHRequest extends BillInput implements IReturn { public String BillID = null; public String StageID = null; public String InputID = null; public String getBillID() { return BillID; } public BillInputPATCHRequest setBillID(String value) { this.BillID = value; return this; } public String getStageID() { return StageID; } public BillInputPATCHRequest setStageID(String value) { this.StageID = value; return this; } public String getInputID() { return InputID; } public BillInputPATCHRequest setInputID(String value) { this.InputID = value; return this; } private static Object responseType = BillInput.class; public Object getResponseType() { return responseType; } } @Route(Path="/Bills/{BillID}/Stages/{StageID}/Inputs/{InputID}", Verbs="DELETE") @ApiResponse(Description="Deleted OK", StatusCode=204) // @ApiResponse(Description="No bill stage input with the BillID, StageID, or InputID provided was found", StatusCode=404) // @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="Not authenticated", StatusCode=401) public static class BillInputDELETERequest { public String BillID = null; public String StageID = null; public String InputID = null; public String getBillID() { return BillID; } public BillInputDELETERequest setBillID(String value) { this.BillID = value; return this; } public String getStageID() { return StageID; } public BillInputDELETERequest setStageID(String value) { this.StageID = value; return this; } public String getInputID() { return InputID; } public BillInputDELETERequest setInputID(String value) { this.InputID = value; return this; } } @Route(Path="/Bills/{BillID}/Stages/{StageID}/Instructions/{InstructionID}/CustomFieldValues", Verbs="GET") @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="No bill stage instruction BillID, StageID or InstructionID provided was found", StatusCode=404) // @ApiResponse(Description="Not authenticated", StatusCode=401) public static class BillInstructionCustomFieldValuesGETManyRequest implements IReturn> { public String BillID = null; public String StageID = null; public String InstructionID = null; public String getBillID() { return BillID; } public BillInstructionCustomFieldValuesGETManyRequest setBillID(String value) { this.BillID = value; return this; } public String getStageID() { return StageID; } public BillInstructionCustomFieldValuesGETManyRequest setStageID(String value) { this.StageID = value; return this; } public String getInstructionID() { return InstructionID; } public BillInstructionCustomFieldValuesGETManyRequest setInstructionID(String value) { this.InstructionID = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @Route(Path="/Bills/{BillID}/Stages/{StageID}/Instructions/{InstructionID}/CustomFieldValues/{SettingID}", Verbs="GET") @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="No bill stage instruction custom field Value with the BillID, StageID, InstructionID or SettingID provided was found", StatusCode=404) // @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="Not authenticated", StatusCode=401) public static class BillInstructionCustomFieldValueGETRequest implements IReturn { public String BillID = null; public String StageID = null; public String InstructionID = null; public String SettingID = null; public String getBillID() { return BillID; } public BillInstructionCustomFieldValueGETRequest setBillID(String value) { this.BillID = value; return this; } public String getStageID() { return StageID; } public BillInstructionCustomFieldValueGETRequest setStageID(String value) { this.StageID = value; return this; } public String getInstructionID() { return InstructionID; } public BillInstructionCustomFieldValueGETRequest setInstructionID(String value) { this.InstructionID = value; return this; } public String getSettingID() { return SettingID; } public BillInstructionCustomFieldValueGETRequest setSettingID(String value) { this.SettingID = value; return this; } private static Object responseType = CustomFieldValue.class; public Object getResponseType() { return responseType; } } @Route(Path="/Bills/{BillID}/Stages/{StageID}/Instructions/{InstructionID}/CustomFieldValues/{SettingID}", Verbs="PATCH") @ApiResponse(Description="No bill stage instruction custom field Value with the BillID, StageID, InstructionID or SettingID provided was found", StatusCode=404) // @ApiResponse(Description="Updated OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class BillInstructionCustomFieldValuePATCHRequest extends CustomFieldValue implements IReturn { public String BillID = null; public String StageID = null; public String InstructionID = null; public String SettingID = null; public String getBillID() { return BillID; } public BillInstructionCustomFieldValuePATCHRequest setBillID(String value) { this.BillID = value; return this; } public String getStageID() { return StageID; } public BillInstructionCustomFieldValuePATCHRequest setStageID(String value) { this.StageID = value; return this; } public String getInstructionID() { return InstructionID; } public BillInstructionCustomFieldValuePATCHRequest setInstructionID(String value) { this.InstructionID = value; return this; } public String getSettingID() { return SettingID; } public BillInstructionCustomFieldValuePATCHRequest setSettingID(String value) { this.SettingID = value; return this; } private static Object responseType = CustomFieldValue.class; public Object getResponseType() { return responseType; } } @Route(Path="/Bills/Instructions/CustomFields", Verbs="GET") @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) public static class BillInstructionCustomFieldsGETManyRequest implements IReturn> { private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @Route(Path="/Bills/Instructions/CustomFields/{SettingID}", Verbs="GET") @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="Read OK", StatusCode=200) public static class BillInstructionCustomFieldGETRequest implements IReturn { public String SettingID = null; public String getSettingID() { return SettingID; } public BillInstructionCustomFieldGETRequest setSettingID(String value) { this.SettingID = value; return this; } private static Object responseType = CustomField.class; public Object getResponseType() { return responseType; } } @Route(Path="/Bills/{BillID}/Stages/{StageID}/Instructions/{InstructionID}", Verbs="GET") @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="No bill stage instruction with the BillID, StageID, or InstructionID provided was found", StatusCode=404) // @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class BillInstructionGETRequest implements IReturn { public String BillID = null; public String StageID = null; public String InstructionID = null; public String getBillID() { return BillID; } public BillInstructionGETRequest setBillID(String value) { this.BillID = value; return this; } public String getStageID() { return StageID; } public BillInstructionGETRequest setStageID(String value) { this.StageID = value; return this; } public String getInstructionID() { return InstructionID; } public BillInstructionGETRequest setInstructionID(String value) { this.InstructionID = value; return this; } private static Object responseType = BillInstruction.class; public Object getResponseType() { return responseType; } } @Route(Path="/Bills/{BillID}/Stages/{StageID}/Instructions", Verbs="GET") @ApiResponse(Description="No bill stage instructions with the BillID or StageID provided was found", StatusCode=404) // @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class BillInstructionsGETManyRequest implements IReturn> { public String BillID = null; public String StageID = null; public String getBillID() { return BillID; } public BillInstructionsGETManyRequest setBillID(String value) { this.BillID = value; return this; } public String getStageID() { return StageID; } public BillInstructionsGETManyRequest setStageID(String value) { this.StageID = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @Route(Path="/Bills/{BillID}/Stages/{StageID}/Instructions", Verbs="POST") @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="No bill stage instruction with the BillID, StageID or InstructionID provided was found", StatusCode=404) // @ApiResponse(Description="Created OK", StatusCode=201) public static class BillInstructionPOSTRequest extends BillInstruction implements IReturn { public String BillID = null; public String StageID = null; public String getBillID() { return BillID; } public BillInstructionPOSTRequest setBillID(String value) { this.BillID = value; return this; } public String getStageID() { return StageID; } public BillInstructionPOSTRequest setStageID(String value) { this.StageID = value; return this; } private static Object responseType = BillInstruction.class; public Object getResponseType() { return responseType; } } @Route(Path="/Bills/{BillID}/Stages/{StageID}/Instructions/{InstructionID}", Verbs="PATCH") @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="No bill stage instruction with the BillID, StageID, or InstructionID provided was found", StatusCode=404) // @ApiResponse(Description="Updated OK", StatusCode=200) public static class BillInstructionPATCHRequest extends BillInstruction implements IReturn { public String BillID = null; public String StageID = null; public String InstructionID = null; public String getBillID() { return BillID; } public BillInstructionPATCHRequest setBillID(String value) { this.BillID = value; return this; } public String getStageID() { return StageID; } public BillInstructionPATCHRequest setStageID(String value) { this.StageID = value; return this; } public String getInstructionID() { return InstructionID; } public BillInstructionPATCHRequest setInstructionID(String value) { this.InstructionID = value; return this; } private static Object responseType = BillInstruction.class; public Object getResponseType() { return responseType; } } @Route(Path="/Bills/{BillID}/Stages/{StageID}/Instructions/{InstructionID}", Verbs="DELETE") @ApiResponse(Description="Deleted OK", StatusCode=204) // @ApiResponse(Description="No bill stage instruction with the BillID, StageID, or InstructionID provided was found", StatusCode=404) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class BillInstructionDELETERequest { public String BillID = null; public String StageID = null; public String InstructionID = null; public String getBillID() { return BillID; } public BillInstructionDELETERequest setBillID(String value) { this.BillID = value; return this; } public String getStageID() { return StageID; } public BillInstructionDELETERequest setStageID(String value) { this.StageID = value; return this; } public String getInstructionID() { return InstructionID; } public BillInstructionDELETERequest setInstructionID(String value) { this.InstructionID = value; return this; } } @Route(Path="/Bills/NoteTypes/{NoteTypeID}", Verbs="GET") @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="No bill note type with the NoteTypeID provided was found", StatusCode=404) public static class BillNoteTypeGETRequest implements IReturn { public String NoteTypeID = null; public String getNoteTypeID() { return NoteTypeID; } public BillNoteTypeGETRequest setNoteTypeID(String value) { this.NoteTypeID = value; return this; } private static Object responseType = NoteType.class; public Object getResponseType() { return responseType; } } @Route(Path="/Bills/NoteTypes", Verbs="GET") @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) public static class BillNoteTypesGETManyRequest implements IReturn> { private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @Route(Path="/Bills/NoteTypes", Verbs="POST") @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Created OK", StatusCode=201) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class BillNoteTypePOSTRequest extends NoteType implements IReturn { private static Object responseType = NoteType.class; public Object getResponseType() { return responseType; } } @Route(Path="/Bills/NoteTypes/{NoteTypeID}", Verbs="PATCH") @ApiResponse(Description="Updated OK", StatusCode=200) // @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="No bill note type with the NoteTypeID provided was found", StatusCode=404) public static class BillNoteTypePATCHRequest extends NoteType implements IReturn { public String NoteTypeID = null; public String getNoteTypeID() { return NoteTypeID; } public BillNoteTypePATCHRequest setNoteTypeID(String value) { this.NoteTypeID = value; return this; } private static Object responseType = NoteType.class; public Object getResponseType() { return responseType; } } @Route(Path="/Bills/NoteTypes/{NoteTypeID}", Verbs="DELETE") @ApiResponse(Description="No bill note type with the NoteTypeID provided was found", StatusCode=404) // @ApiResponse(Description="Deleted OK", StatusCode=204) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class BillNoteTypeDELETERequest { public String NoteTypeID = null; public String getNoteTypeID() { return NoteTypeID; } public BillNoteTypeDELETERequest setNoteTypeID(String value) { this.NoteTypeID = value; return this; } } @Route(Path="/Bills/{BillID}/Notes/{NoteID}", Verbs="GET") @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="No bill note with the BillID or NoteID provided was found", StatusCode=404) public static class BillNoteGETRequest implements IReturn { public String BillID = null; public String NoteID = null; public String getBillID() { return BillID; } public BillNoteGETRequest setBillID(String value) { this.BillID = value; return this; } public String getNoteID() { return NoteID; } public BillNoteGETRequest setNoteID(String value) { this.NoteID = value; return this; } private static Object responseType = Note.class; public Object getResponseType() { return responseType; } } @Route(Path="/Bills/{BillID}/Notes", Verbs="GET") @ApiResponse(Description="No bill with the BillID provided was found", StatusCode=404) // @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class BillNotesGETManyRequest implements IReturn> { public String BillID = null; public String getBillID() { return BillID; } public BillNotesGETManyRequest setBillID(String value) { this.BillID = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @Route(Path="/Bills/{BillID}/Notes", Verbs="POST") @ApiResponse(Description="No bill with the BillID provided was found", StatusCode=404) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="Created OK", StatusCode=201) public static class BillNotePOSTRequest extends Note implements IReturn { public String BillID = null; public String getBillID() { return BillID; } public BillNotePOSTRequest setBillID(String value) { this.BillID = value; return this; } private static Object responseType = Note.class; public Object getResponseType() { return responseType; } } @Route(Path="/Bills/{BillID}/Notes/{NoteID}", Verbs="PATCH") @ApiResponse(Description="No bill with the BillID provided was found", StatusCode=404) // @ApiResponse(Description="Updated OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class BillNotePATCHRequest extends Note implements IReturn { public String BillID = null; public String NoteID = null; public String getBillID() { return BillID; } public BillNotePATCHRequest setBillID(String value) { this.BillID = value; return this; } public String getNoteID() { return NoteID; } public BillNotePATCHRequest setNoteID(String value) { this.NoteID = value; return this; } private static Object responseType = Note.class; public Object getResponseType() { return responseType; } } @Route(Path="/Bills/{BillID}/Notes/{NoteID}", Verbs="DELETE") @ApiResponse(Description="Deleted OK", StatusCode=204) // @ApiResponse(Description="No bill with the BillID provided was found", StatusCode=404) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class BillNoteDELETERequest { public String BillID = null; public String NoteID = null; public String getBillID() { return BillID; } public BillNoteDELETERequest setBillID(String value) { this.BillID = value; return this; } public String getNoteID() { return NoteID; } public BillNoteDELETERequest setNoteID(String value) { this.NoteID = value; return this; } } @Route(Path="/Bills/{BillID}/Outputs/{OutputID}/CustomFieldValues", Verbs="GET") @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="No bill output output BillID or OutputID provided was found", StatusCode=404) // @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="Read OK", StatusCode=200) public static class BillOutputCustomFieldValuesGETManyRequest implements IReturn> { public String BillID = null; public String OutputID = null; public String getBillID() { return BillID; } public BillOutputCustomFieldValuesGETManyRequest setBillID(String value) { this.BillID = value; return this; } public String getOutputID() { return OutputID; } public BillOutputCustomFieldValuesGETManyRequest setOutputID(String value) { this.OutputID = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @Route(Path="/Bills/{BillID}/Outputs/{OutputID}/CustomFieldValues/{SettingID}", Verbs="GET") @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="No bill output output custom field Value with the BillID, OutputID or SettingID provided was found", StatusCode=404) // @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) public static class BillOutputCustomFieldValueGETRequest implements IReturn { public String BillID = null; public String OutputID = null; public String SettingID = null; public String getBillID() { return BillID; } public BillOutputCustomFieldValueGETRequest setBillID(String value) { this.BillID = value; return this; } public String getOutputID() { return OutputID; } public BillOutputCustomFieldValueGETRequest setOutputID(String value) { this.OutputID = value; return this; } public String getSettingID() { return SettingID; } public BillOutputCustomFieldValueGETRequest setSettingID(String value) { this.SettingID = value; return this; } private static Object responseType = CustomFieldValue.class; public Object getResponseType() { return responseType; } } @Route(Path="/Bills/{BillID}/Outputs/{OutputID}/CustomFieldValues/{SettingID}", Verbs="PATCH") @ApiResponse(Description="Updated OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="No bill output custom field value with the BillID, OutputID or SettingID provided was found", StatusCode=404) public static class BillOutputCustomFieldValuePATCHRequest extends CustomFieldValue implements IReturn { public String BillID = null; public String OutputID = null; public String SettingID = null; public String getBillID() { return BillID; } public BillOutputCustomFieldValuePATCHRequest setBillID(String value) { this.BillID = value; return this; } public String getOutputID() { return OutputID; } public BillOutputCustomFieldValuePATCHRequest setOutputID(String value) { this.OutputID = value; return this; } public String getSettingID() { return SettingID; } public BillOutputCustomFieldValuePATCHRequest setSettingID(String value) { this.SettingID = value; return this; } private static Object responseType = CustomFieldValue.class; public Object getResponseType() { return responseType; } } @Route(Path="/Bills/Outputs/CustomFields", Verbs="GET") @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class BillOutputCustomFieldsGETManyRequest implements IReturn> { private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @Route(Path="/Bills/Outputs/CustomFields/{SettingID}", Verbs="GET") @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="Read OK", StatusCode=200) public static class BillOutputCustomFieldGETRequest implements IReturn { public String SettingID = null; public String getSettingID() { return SettingID; } public BillOutputCustomFieldGETRequest setSettingID(String value) { this.SettingID = value; return this; } private static Object responseType = CustomField.class; public Object getResponseType() { return responseType; } } @Route(Path="/Bills/{BillID}/Outputs/{OutputID}", Verbs="GET") @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="No bill output with the BillID or OutputID provided was found", StatusCode=404) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class BillOutputGETRequest implements IReturn { public String BillID = null; public String OutputID = null; public String getBillID() { return BillID; } public BillOutputGETRequest setBillID(String value) { this.BillID = value; return this; } public String getOutputID() { return OutputID; } public BillOutputGETRequest setOutputID(String value) { this.OutputID = value; return this; } private static Object responseType = BillOutput.class; public Object getResponseType() { return responseType; } } @Route(Path="/Bills/{BillID}/Outputs", Verbs="GET") @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="No bill record with the BillID provided was found", StatusCode=404) // @ApiResponse(Description="Not authenticated", StatusCode=401) public static class BillOutputsGETManyRequest implements IReturn> { public String BillID = null; public String getBillID() { return BillID; } public BillOutputsGETManyRequest setBillID(String value) { this.BillID = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @Route(Path="/Bills/{BillID}/Outputs", Verbs="POST") @ApiResponse(Description="No bill with the BillID provided was found", StatusCode=404) // @ApiResponse(Description="Created OK", StatusCode=201) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class BillOutputPOSTRequest extends BillOutput implements IReturn { public String BillID = null; public String getBillID() { return BillID; } public BillOutputPOSTRequest setBillID(String value) { this.BillID = value; return this; } private static Object responseType = BillOutput.class; public Object getResponseType() { return responseType; } } @Route(Path="/Bills/{BillID}/Outputs/{OutputID}", Verbs="PATCH") @ApiResponse(Description="No bill record with the BillID, or OutputID provided was found", StatusCode=404) // @ApiResponse(Description="Updated OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class BillOutputPATCHRequest extends BillOutput implements IReturn { public String BillID = null; public String OutputID = null; public String getBillID() { return BillID; } public BillOutputPATCHRequest setBillID(String value) { this.BillID = value; return this; } public String getOutputID() { return OutputID; } public BillOutputPATCHRequest setOutputID(String value) { this.OutputID = value; return this; } private static Object responseType = BillOutput.class; public Object getResponseType() { return responseType; } } @Route(Path="/Bills/{BillID}/Outputs/{OutputID}", Verbs="DELETE") @ApiResponse(Description="Deleted OK", StatusCode=204) // @ApiResponse(Description="No bill with the BillID provided was found", StatusCode=404) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class BillOutputDELETERequest { public String BillID = null; public String OutputID = null; public String getBillID() { return BillID; } public BillOutputDELETERequest setBillID(String value) { this.BillID = value; return this; } public String getOutputID() { return OutputID; } public BillOutputDELETERequest setOutputID(String value) { this.OutputID = value; return this; } } @Route(Path="/Bills/{BillID}/Stages/{StageID}/CustomFieldValues", Verbs="GET") @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="No bill stage stage BillID or StageID provided was found", StatusCode=404) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Read OK", StatusCode=200) public static class BillStageCustomFieldValuesGETManyRequest implements IReturn> { public String BillID = null; public String StageID = null; public String getBillID() { return BillID; } public BillStageCustomFieldValuesGETManyRequest setBillID(String value) { this.BillID = value; return this; } public String getStageID() { return StageID; } public BillStageCustomFieldValuesGETManyRequest setStageID(String value) { this.StageID = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @Route(Path="/Bills/{BillID}/Stages/{StageID}/CustomFieldValues/{SettingID}", Verbs="GET") @ApiResponse(Description="No bill stage stage custom field Value with the BillID, StageID or SettingID provided was found", StatusCode=404) // @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class BillStageCustomFieldValueGETRequest implements IReturn { public String BillID = null; public String StageID = null; public String SettingID = null; public String getBillID() { return BillID; } public BillStageCustomFieldValueGETRequest setBillID(String value) { this.BillID = value; return this; } public String getStageID() { return StageID; } public BillStageCustomFieldValueGETRequest setStageID(String value) { this.StageID = value; return this; } public String getSettingID() { return SettingID; } public BillStageCustomFieldValueGETRequest setSettingID(String value) { this.SettingID = value; return this; } private static Object responseType = CustomFieldValue.class; public Object getResponseType() { return responseType; } } @Route(Path="/Bills/{BillID}/Stages/{StageID}/CustomFieldValues/{SettingID}", Verbs="PATCH") @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Updated OK", StatusCode=200) // @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="No bill stage custom field value with the BillID, StageID or SettingID provided was found", StatusCode=404) public static class BillStageCustomFieldValuePATCHRequest extends CustomFieldValue implements IReturn { public String BillID = null; public String StageID = null; public String SettingID = null; public String getBillID() { return BillID; } public BillStageCustomFieldValuePATCHRequest setBillID(String value) { this.BillID = value; return this; } public String getStageID() { return StageID; } public BillStageCustomFieldValuePATCHRequest setStageID(String value) { this.StageID = value; return this; } public String getSettingID() { return SettingID; } public BillStageCustomFieldValuePATCHRequest setSettingID(String value) { this.SettingID = value; return this; } private static Object responseType = CustomFieldValue.class; public Object getResponseType() { return responseType; } } @Route(Path="/Bills/Stages/CustomFields", Verbs="GET") @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) public static class BillStageCustomFieldsGETManyRequest implements IReturn> { private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @Route(Path="/Bills/Stages/CustomFields/{SettingID}", Verbs="GET") @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) public static class BillStageCustomFieldGETRequest implements IReturn { public String SettingID = null; public String getSettingID() { return SettingID; } public BillStageCustomFieldGETRequest setSettingID(String value) { this.SettingID = value; return this; } private static Object responseType = CustomField.class; public Object getResponseType() { return responseType; } } @Route(Path="/Bills/{BillID}/Stages/{StageID}", Verbs="GET") @ApiResponse(Description="No bill stage with the BillID or StageID provided was found", StatusCode=404) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="Read OK", StatusCode=200) public static class BillStageGETRequest implements IReturn { public String BillID = null; public String StageID = null; public String getBillID() { return BillID; } public BillStageGETRequest setBillID(String value) { this.BillID = value; return this; } public String getStageID() { return StageID; } public BillStageGETRequest setStageID(String value) { this.StageID = value; return this; } private static Object responseType = BillStage.class; public Object getResponseType() { return responseType; } } @Route(Path="/Bills/{BillID}/Stages", Verbs="GET") @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="No bill record with the BillID provided was found", StatusCode=404) // @ApiResponse(Description="Read OK", StatusCode=200) public static class BillStagesGETManyRequest implements IReturn> { public String BillID = null; public String getBillID() { return BillID; } public BillStagesGETManyRequest setBillID(String value) { this.BillID = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @Route(Path="/Bills/{BillID}/Stages", Verbs="POST") @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="No bill with the BillID provided was found", StatusCode=404) // @ApiResponse(Description="Created OK", StatusCode=201) public static class BillStagePOSTRequest extends BillStage implements IReturn { public String BillID = null; public String getBillID() { return BillID; } public BillStagePOSTRequest setBillID(String value) { this.BillID = value; return this; } private static Object responseType = BillStage.class; public Object getResponseType() { return responseType; } } @Route(Path="/Bills/{BillID}/Stages/{StageID}", Verbs="PATCH") @ApiResponse(Description="Updated OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="No bill record with the BillID, or StageID provided was found", StatusCode=404) public static class BillStagePATCHRequest extends BillStage implements IReturn { public String BillID = null; public String StageID = null; public String getBillID() { return BillID; } public BillStagePATCHRequest setBillID(String value) { this.BillID = value; return this; } public String getStageID() { return StageID; } public BillStagePATCHRequest setStageID(String value) { this.StageID = value; return this; } private static Object responseType = BillStage.class; public Object getResponseType() { return responseType; } } @Route(Path="/Bills/{BillID}/Stages/{StageID}", Verbs="DELETE") @ApiResponse(Description="Deleted OK", StatusCode=204) // @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="No bill with the BillID provided was found", StatusCode=404) public static class BillStageDELETERequest { public String BillID = null; public String StageID = null; public String getBillID() { return BillID; } public BillStageDELETERequest setBillID(String value) { this.BillID = value; return this; } public String getStageID() { return StageID; } public BillStageDELETERequest setStageID(String value) { this.StageID = value; return this; } } @Route(Path="/Carriers/{CarrierID}", Verbs="GET") @ApiResponse(Description="No Carrier with the CarrierID provided was found", StatusCode=404) // @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class CarrierGETRequest implements IReturn { public String CarrierID = null; public String getCarrierID() { return CarrierID; } public CarrierGETRequest setCarrierID(String value) { this.CarrierID = value; return this; } private static Object responseType = Carrier.class; public Object getResponseType() { return responseType; } } @Route(Path="/Carriers", Verbs="POST") @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Created OK", StatusCode=201) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class CarrierPOSTRequest extends Carrier implements IReturn { private static Object responseType = Carrier.class; public Object getResponseType() { return responseType; } } @Route(Path="/Carriers/{CarrierID}", Verbs="PATCH") @ApiResponse(Description="No carrier with the CarrierID provided was found", StatusCode=404) // @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="Updated OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) public static class CarrierPATCHRequest extends Carrier implements IReturn { public String CarrierID = null; public String getCarrierID() { return CarrierID; } public CarrierPATCHRequest setCarrierID(String value) { this.CarrierID = value; return this; } private static Object responseType = Carrier.class; public Object getResponseType() { return responseType; } } @Route(Path="/Carriers/{CarrierID}", Verbs="DELETE") @ApiResponse(Description="Deleted OK", StatusCode=204) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="No carrier with the CarrierID provided was found", StatusCode=404) public static class CarrierDELETERequest { public String CarrierID = null; public String getCarrierID() { return CarrierID; } public CarrierDELETERequest setCarrierID(String value) { this.CarrierID = value; return this; } } @Route(Path="/Carriers/{CarrierID}/Services/{ServiceID}", Verbs="GET") @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="No service with the CarrierID or ServiceID provided was found", StatusCode=404) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class CarrierServiceGETRequest implements IReturn { public String CarrierID = null; public String ServiceID = null; public String getCarrierID() { return CarrierID; } public CarrierServiceGETRequest setCarrierID(String value) { this.CarrierID = value; return this; } public String getServiceID() { return ServiceID; } public CarrierServiceGETRequest setServiceID(String value) { this.ServiceID = value; return this; } private static Object responseType = CarrierService.class; public Object getResponseType() { return responseType; } } @Route(Path="/Carriers/{CarrierID}/Services", Verbs="GET") @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="No service with the CarrierID provided was found", StatusCode=404) // @ApiResponse(Description="Not authenticated", StatusCode=401) public static class CarrierServicesGETManyRequest implements IReturn> { public String CarrierID = null; public String getCarrierID() { return CarrierID; } public CarrierServicesGETManyRequest setCarrierID(String value) { this.CarrierID = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @Route(Path="/Carriers/{CarrierID}/Services", Verbs="POST") @ApiResponse(Description="No service with the CarrierID or ServiceID provided was found", StatusCode=404) // @ApiResponse(Description="Created OK", StatusCode=201) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class CarrierServicePOSTRequest extends CarrierService implements IReturn { public String CarrierID = null; public String getCarrierID() { return CarrierID; } public CarrierServicePOSTRequest setCarrierID(String value) { this.CarrierID = value; return this; } private static Object responseType = CarrierService.class; public Object getResponseType() { return responseType; } } @Route(Path="/Carriers/{CarrierID}/Services/{ServiceID}", Verbs="PATCH") @ApiResponse(Description="No service with the CarrierID or ServiceID provided was found", StatusCode=404) // @ApiResponse(Description="Updated OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class CarrierServicePATCHRequest extends CarrierService implements IReturn { public String CarrierID = null; public String ServiceID = null; public String getCarrierID() { return CarrierID; } public CarrierServicePATCHRequest setCarrierID(String value) { this.CarrierID = value; return this; } public String getServiceID() { return ServiceID; } public CarrierServicePATCHRequest setServiceID(String value) { this.ServiceID = value; return this; } private static Object responseType = CarrierService.class; public Object getResponseType() { return responseType; } } @Route(Path="/Carriers/{CarrierID}/Services/{ServiceID}", Verbs="DELETE") @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Deleted OK", StatusCode=204) // @ApiResponse(Description="No service with the CarrierID or ServiceID provided was found", StatusCode=404) public static class CarrierServiceDELETERequest extends CarrierService { public String CarrierID = null; public String ServiceID = null; public String getCarrierID() { return CarrierID; } public CarrierServiceDELETERequest setCarrierID(String value) { this.CarrierID = value; return this; } public String getServiceID() { return ServiceID; } public CarrierServiceDELETERequest setServiceID(String value) { this.ServiceID = value; return this; } } @Route(Path="/Carriers/{CarrierID}/FreightDescriptions/{FreightDescriptionID}", Verbs="GET") @ApiResponse(Description="No freight description with the CarrierID or FreightDescriptionID provided was found", StatusCode=404) // @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) public static class CarrierFreightDescriptionGETRequest implements IReturn { public String CarrierID = null; public String FreightDescriptionID = null; public String getCarrierID() { return CarrierID; } public CarrierFreightDescriptionGETRequest setCarrierID(String value) { this.CarrierID = value; return this; } public String getFreightDescriptionID() { return FreightDescriptionID; } public CarrierFreightDescriptionGETRequest setFreightDescriptionID(String value) { this.FreightDescriptionID = value; return this; } private static Object responseType = CarrierFreightDescription.class; public Object getResponseType() { return responseType; } } @Route(Path="/Carriers/{CarrierID}/FreightDescriptions", Verbs="GET") @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="No freight description with the CarrierID provided was found", StatusCode=404) // @ApiResponse(Description="Not authenticated", StatusCode=401) public static class CarrierFreightDescriptionsGETManyRequest implements IReturn> { public String CarrierID = null; public String getCarrierID() { return CarrierID; } public CarrierFreightDescriptionsGETManyRequest setCarrierID(String value) { this.CarrierID = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @Route(Path="/Carriers/{CarrierID}/FreightDescriptions", Verbs="POST") @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Created OK", StatusCode=201) // @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="No freight description with the CarrierID or FreightDescriptionID provided was found", StatusCode=404) public static class CarrierFreightDescriptionPOSTRequest extends CarrierFreightDescription implements IReturn { public String CarrierID = null; public String getCarrierID() { return CarrierID; } public CarrierFreightDescriptionPOSTRequest setCarrierID(String value) { this.CarrierID = value; return this; } private static Object responseType = CarrierFreightDescription.class; public Object getResponseType() { return responseType; } } @Route(Path="/Carriers/{CarrierID}/FreightDescriptions/{FreightDescriptionID}", Verbs="PATCH") @ApiResponse(Description="Updated OK", StatusCode=200) // @ApiResponse(Description="No freight description with the CarrierID or FreightDescriptionID provided was found", StatusCode=404) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class CarrierFreightDescriptionPATCHRequest extends CarrierFreightDescription implements IReturn { public String CarrierID = null; public String FreightDescriptionID = null; public String getCarrierID() { return CarrierID; } public CarrierFreightDescriptionPATCHRequest setCarrierID(String value) { this.CarrierID = value; return this; } public String getFreightDescriptionID() { return FreightDescriptionID; } public CarrierFreightDescriptionPATCHRequest setFreightDescriptionID(String value) { this.FreightDescriptionID = value; return this; } private static Object responseType = CarrierFreightDescription.class; public Object getResponseType() { return responseType; } } @Route(Path="/Carriers/{CarrierID}/FreightDescriptions/{FreightDescriptionID}", Verbs="DELETE") @ApiResponse(Description="No freight description with the CarrierID or FreightDescriptionID provided was found", StatusCode=404) // @ApiResponse(Description="Deleted OK", StatusCode=204) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class CarrierFreightDescriptionDELETERequest extends CarrierFreightDescription { public String CarrierID = null; public String FreightDescriptionID = null; public String getCarrierID() { return CarrierID; } public CarrierFreightDescriptionDELETERequest setCarrierID(String value) { this.CarrierID = value; return this; } public String getFreightDescriptionID() { return FreightDescriptionID; } public CarrierFreightDescriptionDELETERequest setFreightDescriptionID(String value) { this.FreightDescriptionID = value; return this; } } @Route(Path="/Creditors/{CreditorID}", Verbs="GET") @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="No Creditor with the CreditorID provided was found", StatusCode=404) public static class CreditorGETRequest implements IReturn { public String CreditorID = null; public String getCreditorID() { return CreditorID; } public CreditorGETRequest setCreditorID(String value) { this.CreditorID = value; return this; } private static Object responseType = Creditor.class; public Object getResponseType() { return responseType; } } @Route(Path="/Creditors", Verbs="POST") @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="Created OK", StatusCode=201) // @ApiResponse(Description="Not authenticated", StatusCode=401) public static class CreditorPOSTRequest extends Creditor implements IReturn { private static Object responseType = Creditor.class; public Object getResponseType() { return responseType; } } @Route(Path="/Creditors/{CreditorID}", Verbs="PATCH") @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Updated OK", StatusCode=200) // @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="No creditor with the CreditorID provided was found", StatusCode=404) public static class CreditorPATCHRequest extends Creditor implements IReturn { public String CreditorID = null; public String getCreditorID() { return CreditorID; } public CreditorPATCHRequest setCreditorID(String value) { this.CreditorID = value; return this; } private static Object responseType = Creditor.class; public Object getResponseType() { return responseType; } } @Route(Path="/Creditors/{CreditorID}", Verbs="DELETE") @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="No creditor with the CreditorID provided was found", StatusCode=404) // @ApiResponse(Description="Deleted OK", StatusCode=204) public static class CreditorDELETERequest { public String CreditorID = null; public String getCreditorID() { return CreditorID; } public CreditorDELETERequest setCreditorID(String value) { this.CreditorID = value; return this; } } @Route(Path="/Creditors/Classifications/{ClassificationID}", Verbs="GET") @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="No Creditor classification with the ClassificationID provided was found", StatusCode=404) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Read OK", StatusCode=200) public static class CreditorClassificationGETRequest implements IReturn { public String ClassificationID = null; public String getClassificationID() { return ClassificationID; } public CreditorClassificationGETRequest setClassificationID(String value) { this.ClassificationID = value; return this; } private static Object responseType = CreditorClassification.class; public Object getResponseType() { return responseType; } } @Route(Path="/Creditors/Classifications", Verbs="POST") @ApiResponse(Description="Created OK", StatusCode=201) // @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="Not authenticated", StatusCode=401) public static class CreditorClassificationPOSTRequest extends CreditorClassification implements IReturn { private static Object responseType = CreditorClassification.class; public Object getResponseType() { return responseType; } } @Route(Path="/Creditors/Classifications/{ClassificationID}", Verbs="PATCH") @ApiResponse(Description="Updated OK", StatusCode=200) // @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="No Creditor classification with the ClassificationID provided was found", StatusCode=404) public static class CreditorClassificationPATCHRequest extends CreditorClassification implements IReturn { public String ClassificationID = null; public String getClassificationID() { return ClassificationID; } public CreditorClassificationPATCHRequest setClassificationID(String value) { this.ClassificationID = value; return this; } private static Object responseType = CreditorClassification.class; public Object getResponseType() { return responseType; } } @Route(Path="/Creditors/Classifications/{ClassificationID}", Verbs="DELETE") @ApiResponse(Description="No Creditor classification with the ClassificationID provided was found", StatusCode=404) // @ApiResponse(Description="Insufficient permission to update Creditor classifications", StatusCode=403) // @ApiResponse(Description="Deleted OK", StatusCode=204) // @ApiResponse(Description="Not authenticated", StatusCode=401) public static class CreditorClassificationDELETERequest { public String ClassificationID = null; public String getClassificationID() { return ClassificationID; } public CreditorClassificationDELETERequest setClassificationID(String value) { this.ClassificationID = value; return this; } } @Route(Path="/Creditors/{CreditorID}/WarehouseAddress/{WarehouseAddressID}", Verbs="GET") @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="No warehouse address with the CreditorID or WarehouseAddressID provided was found", StatusCode=404) // @ApiResponse(Description="Read OK", StatusCode=200) public static class CreditorWarehouseAddressGETRequest implements IReturn { public String CreditorID = null; public String WarehouseAddressID = null; public String getCreditorID() { return CreditorID; } public CreditorWarehouseAddressGETRequest setCreditorID(String value) { this.CreditorID = value; return this; } public String getWarehouseAddressID() { return WarehouseAddressID; } public CreditorWarehouseAddressGETRequest setWarehouseAddressID(String value) { this.WarehouseAddressID = value; return this; } private static Object responseType = CreditorWarehouseAddress.class; public Object getResponseType() { return responseType; } } @Route(Path="/Creditors/{CreditorID}/WarehouseAddresses", Verbs="GET") @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="No warehouse address with the CreditorID provided was found", StatusCode=404) public static class CreditorWarehouseAddressesGETManyRequest implements IReturn> { public String CreditorID = null; public String getCreditorID() { return CreditorID; } public CreditorWarehouseAddressesGETManyRequest setCreditorID(String value) { this.CreditorID = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @Route(Path="/Creditors/{CreditorID}/WarehouseAddress", Verbs="POST") @ApiResponse(Description="Created OK", StatusCode=201) // @ApiResponse(Description="No warehouse address with the CreditorID or WarehouseAddressID provided was found", StatusCode=404) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class CreditorWarehouseAddressPOSTRequest extends CreditorWarehouseAddress implements IReturn { public String CreditorID = null; public String getCreditorID() { return CreditorID; } public CreditorWarehouseAddressPOSTRequest setCreditorID(String value) { this.CreditorID = value; return this; } private static Object responseType = CreditorWarehouseAddress.class; public Object getResponseType() { return responseType; } } @Route(Path="/Creditors/{CreditorID}/WarehouseAddress/{WarehouseAddressID}", Verbs="PATCH") @ApiResponse(Description="Updated OK", StatusCode=200) // @ApiResponse(Description="No warehouse address with the CreditorID or WarehouseAddressID provided was found", StatusCode=404) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class CreditorWarehouseAddressPATCHRequest extends CreditorWarehouseAddress implements IReturn { public String CreditorID = null; public String WarehouseAddressID = null; public String getCreditorID() { return CreditorID; } public CreditorWarehouseAddressPATCHRequest setCreditorID(String value) { this.CreditorID = value; return this; } public String getWarehouseAddressID() { return WarehouseAddressID; } public CreditorWarehouseAddressPATCHRequest setWarehouseAddressID(String value) { this.WarehouseAddressID = value; return this; } private static Object responseType = CreditorWarehouseAddress.class; public Object getResponseType() { return responseType; } } @Route(Path="/Creditors/{CreditorID}/WarehouseAddress/{WarehouseAddressID}", Verbs="DELETE") @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="Deleted OK", StatusCode=204) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="No warehouse address with the CreditorID or WarehouseAddressID provided was found", StatusCode=404) public static class CreditorWarehouseAddressDELETERequest extends CreditorWarehouseAddress { public String CreditorID = null; public String WarehouseAddressID = null; public String getCreditorID() { return CreditorID; } public CreditorWarehouseAddressDELETERequest setCreditorID(String value) { this.CreditorID = value; return this; } public String getWarehouseAddressID() { return WarehouseAddressID; } public CreditorWarehouseAddressDELETERequest setWarehouseAddressID(String value) { this.WarehouseAddressID = value; return this; } } @Route(Path="/Currencies/{CurrencyID}", Verbs="GET") @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="No Currency with the CurrencyID provided was found", StatusCode=404) public static class CurrencyGETRequest implements IReturn { public String CurrencyID = null; public String getCurrencyID() { return CurrencyID; } public CurrencyGETRequest setCurrencyID(String value) { this.CurrencyID = value; return this; } private static Object responseType = Currency.class; public Object getResponseType() { return responseType; } } @Route(Path="/Currencies", Verbs="POST") @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="Created OK", StatusCode=201) public static class CurrencyPOSTRequest extends Currency implements IReturn { private static Object responseType = Currency.class; public Object getResponseType() { return responseType; } } @Route(Path="/Currencies/{CurrencyID}", Verbs="PATCH") @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="No currency with the CurrencyID provided was found", StatusCode=404) // @ApiResponse(Description="Updated OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) public static class CurrencyPATCHRequest extends Currency implements IReturn { public String CurrencyID = null; public String getCurrencyID() { return CurrencyID; } public CurrencyPATCHRequest setCurrencyID(String value) { this.CurrencyID = value; return this; } private static Object responseType = Currency.class; public Object getResponseType() { return responseType; } } @Route(Path="/Currencies/{CurrencyID}", Verbs="DELETE") @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Deleted OK", StatusCode=204) // @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="No currency with the CurrencyID provided was found", StatusCode=404) public static class CurrencyDELETERequest { public String CurrencyID = null; public String getCurrencyID() { return CurrencyID; } public CurrencyDELETERequest setCurrencyID(String value) { this.CurrencyID = value; return this; } } @Route(Path="/Currencies/{CurrencyID}/Rates/{RateID}", Verbs="GET") @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="No rate with the CurrencyID or RateID provided was found", StatusCode=404) // @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) public static class CurrencyRateGETRequest implements IReturn { public String CurrencyID = null; public String RateID = null; public String getCurrencyID() { return CurrencyID; } public CurrencyRateGETRequest setCurrencyID(String value) { this.CurrencyID = value; return this; } public String getRateID() { return RateID; } public CurrencyRateGETRequest setRateID(String value) { this.RateID = value; return this; } private static Object responseType = CurrencyRate.class; public Object getResponseType() { return responseType; } } @Route(Path="/Currencies/{CurrencyID}/Rates", Verbs="POST") @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="No description with the CurrencyID or RateID provided was found", StatusCode=404) // @ApiResponse(Description="Created OK", StatusCode=201) public static class CurrencyRatePOSTRequest extends CurrencyRate implements IReturn { public String CurrencyID = null; public String getCurrencyID() { return CurrencyID; } public CurrencyRatePOSTRequest setCurrencyID(String value) { this.CurrencyID = value; return this; } private static Object responseType = CurrencyRate.class; public Object getResponseType() { return responseType; } } @Route(Path="/Currencies/{CurrencyID}/Rates/{RateID}", Verbs="PATCH") @ApiResponse(Description="Updated OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="No rate with the CurrencyID or RateID provided was found", StatusCode=404) public static class CurrencyRatePATCHRequest extends CurrencyRate implements IReturn { public String CurrencyID = null; public String RateID = null; public String getCurrencyID() { return CurrencyID; } public CurrencyRatePATCHRequest setCurrencyID(String value) { this.CurrencyID = value; return this; } public String getRateID() { return RateID; } public CurrencyRatePATCHRequest setRateID(String value) { this.RateID = value; return this; } private static Object responseType = CurrencyRate.class; public Object getResponseType() { return responseType; } } @Route(Path="/Currencies/{CurrencyID}/Rates/{RateID}", Verbs="DELETE") @ApiResponse(Description="Deleted OK", StatusCode=204) // @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="No rate with the CurrencyID or RateID provided was found", StatusCode=404) // @ApiResponse(Description="Not authenticated", StatusCode=401) public static class CurrencyRateDELETERequest extends CurrencyRate { public String CurrencyID = null; public String RateID = null; public String getCurrencyID() { return CurrencyID; } public CurrencyRateDELETERequest setCurrencyID(String value) { this.CurrencyID = value; return this; } public String getRateID() { return RateID; } public CurrencyRateDELETERequest setRateID(String value) { this.RateID = value; return this; } } @Route(Path="/Debtors", Verbs="GET") @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class DebtorAPIKeyDebtorGETRequest implements IReturn { private static Object responseType = Debtor.class; public Object getResponseType() { return responseType; } } @Route(Path="/Debtors/{DebtorID}", Verbs="GET") @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="No debtor with the DebtorID provided was found", StatusCode=404) // @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="Read OK", StatusCode=200) public static class DebtorGETRequest implements IReturn { public String DebtorID = null; public String getDebtorID() { return DebtorID; } public DebtorGETRequest setDebtorID(String value) { this.DebtorID = value; return this; } private static Object responseType = Debtor.class; public Object getResponseType() { return responseType; } } @Route(Path="/Debtors", Verbs="POST") @ApiResponse(Description="Created OK", StatusCode=201) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class DebtorPOSTRequest extends Debtor implements IReturn { private static Object responseType = Debtor.class; public Object getResponseType() { return responseType; } } @Route(Path="/Debtors/{DebtorID}", Verbs="PATCH") @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="No debtor with the DebtorID provided was found", StatusCode=404) // @ApiResponse(Description="Updated OK", StatusCode=200) public static class DebtorPATCHRequest extends Debtor implements IReturn { public String DebtorID = null; public String getDebtorID() { return DebtorID; } public DebtorPATCHRequest setDebtorID(String value) { this.DebtorID = value; return this; } private static Object responseType = Debtor.class; public Object getResponseType() { return responseType; } } @Route(Path="/Debtors/{DebtorID}", Verbs="DELETE") @ApiResponse(Description="Deleted OK", StatusCode=204) // @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="No debtor with the DebtorID provided was found", StatusCode=404) // @ApiResponse(Description="Not authenticated", StatusCode=401) public static class DebtorDELETERequest { public String DebtorID = null; public String getDebtorID() { return DebtorID; } public DebtorDELETERequest setDebtorID(String value) { this.DebtorID = value; return this; } } @Route(Path="/Debtors/{DebtorID}/Backorders", Verbs="GET") @ApiResponse(Description="Rread OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="No debtor with the DebtorID provided was found", StatusCode=404) public static class DebtorBackordersGETRequest implements IReturn> { public String DebtorID = null; public String getDebtorID() { return DebtorID; } public DebtorBackordersGETRequest setDebtorID(String value) { this.DebtorID = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @Route(Path="/Debtors/Categories/{CategoryID}", Verbs="GET") @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="No debtor category with the CategoryID provided was found", StatusCode=404) // @ApiResponse(Description="Read OK", StatusCode=200) public static class DebtorCategoryGETRequest implements IReturn { public String CategoryID = null; public String getCategoryID() { return CategoryID; } public DebtorCategoryGETRequest setCategoryID(String value) { this.CategoryID = value; return this; } private static Object responseType = DebtorCategory.class; public Object getResponseType() { return responseType; } } @Route(Path="/Debtors/Categories", Verbs="POST") @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="Created OK", StatusCode=201) // @ApiResponse(Description="Not authenticated", StatusCode=401) public static class DebtorCategoryPOSTRequest extends DebtorCategory implements IReturn { private static Object responseType = DebtorCategory.class; public Object getResponseType() { return responseType; } } @Route(Path="/Debtors/Categories/{CategoryID}", Verbs="PATCH") @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Updated OK", StatusCode=200) // @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="No debtor category with the CategoryID provided was found", StatusCode=404) public static class DebtorCategoryPATCHRequest extends DebtorCategory implements IReturn { public String CategoryID = null; public String getCategoryID() { return CategoryID; } public DebtorCategoryPATCHRequest setCategoryID(String value) { this.CategoryID = value; return this; } private static Object responseType = DebtorCategory.class; public Object getResponseType() { return responseType; } } @Route(Path="/Debtors/Categories/{CategoryID}", Verbs="DELETE") @ApiResponse(Description="Deleted OK", StatusCode=204) // @ApiResponse(Description="No category with the CategoryID provided was found", StatusCode=404) // @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="Not authenticated", StatusCode=401) public static class DebtorCategoryDELETERequest { public String CategoryID = null; public String getCategoryID() { return CategoryID; } public DebtorCategoryDELETERequest setCategoryID(String value) { this.CategoryID = value; return this; } } @Route(Path="/Debtors/Classifications/{ClassificationID}", Verbs="GET") @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="No debtor classification with the ClassificationID provided was found", StatusCode=404) public static class DebtorClassificationGETRequest implements IReturn { public String ClassificationID = null; public String getClassificationID() { return ClassificationID; } public DebtorClassificationGETRequest setClassificationID(String value) { this.ClassificationID = value; return this; } private static Object responseType = DebtorClassification.class; public Object getResponseType() { return responseType; } } @Route(Path="/Debtors/Classifications", Verbs="POST") @ApiResponse(Description="Created OK", StatusCode=201) // @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="Not authenticated", StatusCode=401) public static class DebtorClassificationPOSTRequest extends DebtorClassification implements IReturn { private static Object responseType = DebtorClassification.class; public Object getResponseType() { return responseType; } } @Route(Path="/Debtors/Classifications/{ClassificationID}", Verbs="PATCH") @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="No debtor classification with the ClassificationID provided was found", StatusCode=404) // @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="Updated OK", StatusCode=200) public static class DebtorClassificationPATCHRequest extends DebtorClassification implements IReturn { public String ClassificationID = null; public String getClassificationID() { return ClassificationID; } public DebtorClassificationPATCHRequest setClassificationID(String value) { this.ClassificationID = value; return this; } private static Object responseType = DebtorClassification.class; public Object getResponseType() { return responseType; } } @Route(Path="/Debtors/Classifications/{ClassificationID}", Verbs="DELETE") @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Deleted OK", StatusCode=204) // @ApiResponse(Description="No debtor classification with the ClassificationID provided was found", StatusCode=404) // @ApiResponse(Description="Insufficient permission to update debtor classifications", StatusCode=403) public static class DebtorClassificationDELETERequest { public String ClassificationID = null; public String getClassificationID() { return ClassificationID; } public DebtorClassificationDELETERequest setClassificationID(String value) { this.ClassificationID = value; return this; } } @Route(Path="/Debtors/{DebtorID}/ContactNames/{ContactNameID}", Verbs="GET") @ApiResponse(Description="No debtor contact name with the DebtorID or ContactNameID provided was found", StatusCode=404) // @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class DebtorContactNameGETRequest implements IReturn { public String DebtorID = null; public String ContactNameID = null; public String getDebtorID() { return DebtorID; } public DebtorContactNameGETRequest setDebtorID(String value) { this.DebtorID = value; return this; } public String getContactNameID() { return ContactNameID; } public DebtorContactNameGETRequest setContactNameID(String value) { this.ContactNameID = value; return this; } private static Object responseType = DebtorContactName.class; public Object getResponseType() { return responseType; } } @Route(Path="/Debtors/{DebtorID}/ContactNames", Verbs="GET") @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="No debtor contact name with the DebtorID or ContactNameID provided was found", StatusCode=404) // @ApiResponse(Description="Read OK", StatusCode=200) public static class DebtorContactNamesGETManyRequest implements IReturn> { public String DebtorID = null; public String getDebtorID() { return DebtorID; } public DebtorContactNamesGETManyRequest setDebtorID(String value) { this.DebtorID = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @Route(Path="/Debtors/{DebtorID}/ContactNames", Verbs="POST") @ApiResponse(Description="No debtor contact name with the DebtorID or ContactNameID provided was found", StatusCode=404) // @ApiResponse(Description="Created OK", StatusCode=201) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class DebtorContactNamePOSTRequest extends DebtorContactName implements IReturn { public String DebtorID = null; public String getDebtorID() { return DebtorID; } public DebtorContactNamePOSTRequest setDebtorID(String value) { this.DebtorID = value; return this; } private static Object responseType = DebtorContactName.class; public Object getResponseType() { return responseType; } } @Route(Path="/Debtors/{DebtorID}/ContactNames/{ContactNameID}", Verbs="PATCH") @ApiResponse(Description="Updated OK", StatusCode=200) // @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="No debtor contact name with the DebtorID or ContactNameID provided was found", StatusCode=404) // @ApiResponse(Description="Not authenticated", StatusCode=401) public static class DebtorContactNamePATCHRequest extends DebtorContactName implements IReturn { public String DebtorID = null; public String ContactNameID = null; public String getDebtorID() { return DebtorID; } public DebtorContactNamePATCHRequest setDebtorID(String value) { this.DebtorID = value; return this; } public String getContactNameID() { return ContactNameID; } public DebtorContactNamePATCHRequest setContactNameID(String value) { this.ContactNameID = value; return this; } private static Object responseType = DebtorContactName.class; public Object getResponseType() { return responseType; } } @Route(Path="/Debtors/{DebtorID}/ContactNames/{ContactNameID}", Verbs="DELETE") @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="No debtor contact name with the DebtorID or ContactNameID provided was found", StatusCode=404) // @ApiResponse(Description="Deleted OK", StatusCode=204) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class DebtorContactNameDELETERequest extends DebtorContactName { public String DebtorID = null; public String ContactNameID = null; public String getDebtorID() { return DebtorID; } public DebtorContactNameDELETERequest setDebtorID(String value) { this.DebtorID = value; return this; } public String getContactNameID() { return ContactNameID; } public DebtorContactNameDELETERequest setContactNameID(String value) { this.ContactNameID = value; return this; } } @Route(Path="/Debtors/{DebtorID}/CustomFieldValues/{SettingID}", Verbs="GET") @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="No debtor custom field value with the DebtorID or SettingID provided was found", StatusCode=404) // @ApiResponse(Description="Read OK", StatusCode=200) public static class DebtorCustomFieldValueGETRequest implements IReturn { public String DebtorID = null; public String SettingID = null; public String getDebtorID() { return DebtorID; } public DebtorCustomFieldValueGETRequest setDebtorID(String value) { this.DebtorID = value; return this; } public String getSettingID() { return SettingID; } public DebtorCustomFieldValueGETRequest setSettingID(String value) { this.SettingID = value; return this; } private static Object responseType = CustomFieldValue.class; public Object getResponseType() { return responseType; } } @Route(Path="/Debtors/{DebtorID}/CustomFieldValues/{SettingID}", Verbs="PATCH") @ApiResponse(Description="No debtor custom field value with the DebtorID or SettingID provided was found", StatusCode=404) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="Updated OK", StatusCode=200) public static class DebtorCustomFieldValuePATCHRequest extends CustomFieldValue implements IReturn { public String DebtorID = null; public String SettingID = null; public String getDebtorID() { return DebtorID; } public DebtorCustomFieldValuePATCHRequest setDebtorID(String value) { this.DebtorID = value; return this; } public String getSettingID() { return SettingID; } public DebtorCustomFieldValuePATCHRequest setSettingID(String value) { this.SettingID = value; return this; } private static Object responseType = CustomFieldValue.class; public Object getResponseType() { return responseType; } } @Route(Path="/Debtors/CustomFields", Verbs="GET") @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) public static class DebtorCustomFieldsGETManyRequest implements IReturn> { private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @Route(Path="/Debtors/{DebtorID}/CustomFieldValues", Verbs="GET") @ApiResponse(Description="No debtor with the DebtorID provided was found", StatusCode=404) // @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class DebtorCustomFieldValuesGETManyRequest implements IReturn> { public String DebtorID = null; public String getDebtorID() { return DebtorID; } public DebtorCustomFieldValuesGETManyRequest setDebtorID(String value) { this.DebtorID = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @Route(Path="/Debtors/{DebtorID}/DebtorPartNumbers/{PartNumberID}", Verbs="GET") @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="No debtor part number with the DebtorID or PartNumberID provided was found", StatusCode=404) // @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class DebtorPartNumberGETRequest implements IReturn { public String DebtorID = null; public String PartNumberID = null; public String getDebtorID() { return DebtorID; } public DebtorPartNumberGETRequest setDebtorID(String value) { this.DebtorID = value; return this; } public String getPartNumberID() { return PartNumberID; } public DebtorPartNumberGETRequest setPartNumberID(String value) { this.PartNumberID = value; return this; } private static Object responseType = DebtorPartNumber.class; public Object getResponseType() { return responseType; } } @Route(Path="/Debtors/{DebtorID}/DebtorPartNumbers", Verbs="GET") @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="No debtor part number with the DebtorID or PartNumberID provided was found", StatusCode=404) // @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="Not authenticated", StatusCode=401) public static class DebtorPartNumbersGETManyRequest implements IReturn> { public String DebtorID = null; public String getDebtorID() { return DebtorID; } public DebtorPartNumbersGETManyRequest setDebtorID(String value) { this.DebtorID = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @Route(Path="/Debtors/{DebtorID}/DebtorPartNumbers", Verbs="POST") @ApiResponse(Description="No debtor part number with the DebtorID or PartNumberID provided was found", StatusCode=404) // @ApiResponse(Description="Created OK", StatusCode=201) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class DebtorPartNumberPOSTRequest extends DebtorPartNumber implements IReturn { public String DebtorID = null; public String getDebtorID() { return DebtorID; } public DebtorPartNumberPOSTRequest setDebtorID(String value) { this.DebtorID = value; return this; } private static Object responseType = DebtorPartNumber.class; public Object getResponseType() { return responseType; } } @Route(Path="/Debtors/{DebtorID}/DebtorPartNumbers/{PartNumberID}", Verbs="PATCH") @ApiResponse(Description="No debtor part number with the DebtorID or PartNumberID provided was found", StatusCode=404) // @ApiResponse(Description="Updated OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class DebtorPartNumberPATCHRequest extends DebtorPartNumber implements IReturn { public String DebtorID = null; public String PartNumberID = null; public String getDebtorID() { return DebtorID; } public DebtorPartNumberPATCHRequest setDebtorID(String value) { this.DebtorID = value; return this; } public String getPartNumberID() { return PartNumberID; } public DebtorPartNumberPATCHRequest setPartNumberID(String value) { this.PartNumberID = value; return this; } private static Object responseType = DebtorPartNumber.class; public Object getResponseType() { return responseType; } } @Route(Path="/Debtors/{DebtorID}/DebtorPartNumbers/{PartNumberID}", Verbs="DELETE") @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="No debtor part number with the DebtorID or PartNumberID provided was found", StatusCode=404) // @ApiResponse(Description="Deleted OK", StatusCode=204) // @ApiResponse(Description="Not authenticated", StatusCode=401) public static class DebtorPartNumberDELETERequest extends DebtorPartNumber { public String DebtorID = null; public String PartNumberID = null; public String getDebtorID() { return DebtorID; } public DebtorPartNumberDELETERequest setDebtorID(String value) { this.DebtorID = value; return this; } public String getPartNumberID() { return PartNumberID; } public DebtorPartNumberDELETERequest setPartNumberID(String value) { this.PartNumberID = value; return this; } } @Route(Path="/Debtors/{DebtorID}/DeliveryAddresses/{DeliveryAddressID}", Verbs="GET") @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="No debtor delivery address with the DebtorID or DeliveryAddressID provided was found", StatusCode=404) // @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) public static class DebtorDeliveryAddressGETRequest implements IReturn { public String DebtorID = null; public String DeliveryAddressID = null; public String getDebtorID() { return DebtorID; } public DebtorDeliveryAddressGETRequest setDebtorID(String value) { this.DebtorID = value; return this; } public String getDeliveryAddressID() { return DeliveryAddressID; } public DebtorDeliveryAddressGETRequest setDeliveryAddressID(String value) { this.DeliveryAddressID = value; return this; } private static Object responseType = DebtorDeliveryAddress.class; public Object getResponseType() { return responseType; } } @Route(Path="/Debtors/{DebtorID}/DeliveryAddresses", Verbs="GET") @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="No debtor delivery address with the DebtorID or DeliveryAddressID provided was found", StatusCode=404) public static class DebtorDeliveryAddressesGETManyRequest implements IReturn> { public String DebtorID = null; public String getDebtorID() { return DebtorID; } public DebtorDeliveryAddressesGETManyRequest setDebtorID(String value) { this.DebtorID = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @Route(Path="/Debtors/{DebtorID}/DeliveryAddresses", Verbs="POST") @ApiResponse(Description="Created OK", StatusCode=201) // @ApiResponse(Description="No debtor delivery address with the DebtorID or DeliveryAddressID provided was found", StatusCode=404) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class DebtorDeliveryAddressPOSTRequest extends DebtorDeliveryAddress implements IReturn { public String DebtorID = null; public String getDebtorID() { return DebtorID; } public DebtorDeliveryAddressPOSTRequest setDebtorID(String value) { this.DebtorID = value; return this; } private static Object responseType = DebtorDeliveryAddress.class; public Object getResponseType() { return responseType; } } @Route(Path="/Debtors/{DebtorID}/DeliveryAddresses/{DeliveryAddressID}", Verbs="PATCH") @ApiResponse(Description="Updated OK", StatusCode=200) // @ApiResponse(Description="Insufficient permission to update debtor delivery addresses", StatusCode=403) // @ApiResponse(Description="No debtor delivery address with the DebtorID or DeliveryAddressID provided was found", StatusCode=404) // @ApiResponse(Description="Not authenticated", StatusCode=401) public static class DebtorDeliveryAddressPATCHRequest extends DebtorDeliveryAddress implements IReturn { public String DebtorID = null; public String DeliveryAddressID = null; public String getDebtorID() { return DebtorID; } public DebtorDeliveryAddressPATCHRequest setDebtorID(String value) { this.DebtorID = value; return this; } public String getDeliveryAddressID() { return DeliveryAddressID; } public DebtorDeliveryAddressPATCHRequest setDeliveryAddressID(String value) { this.DeliveryAddressID = value; return this; } private static Object responseType = DebtorDeliveryAddress.class; public Object getResponseType() { return responseType; } } @Route(Path="/Debtors/{DebtorID}/DeliveryAddresses/{DeliveryAddressID}", Verbs="DELETE") @ApiResponse(Description="No debtor delivery address with the DebtorID or DeliveryAddressID provided was found", StatusCode=404) // @ApiResponse(Description="Deleted OK", StatusCode=204) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Insufficient permission to update debtor delivery addresses", StatusCode=403) public static class DebtorDeliveryAddressDELETERequest extends DebtorDeliveryAddress { public String DebtorID = null; public String DeliveryAddressID = null; public String getDebtorID() { return DebtorID; } public DebtorDeliveryAddressDELETERequest setDebtorID(String value) { this.DebtorID = value; return this; } public String getDeliveryAddressID() { return DeliveryAddressID; } public DebtorDeliveryAddressDELETERequest setDeliveryAddressID(String value) { this.DeliveryAddressID = value; return this; } } @Route(Path="/Debtors/DocumentTypes/{DocumentTypeID}", Verbs="GET") @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="No debtor document type with the DocumentTypeID provided was found", StatusCode=404) public static class DebtorDocumentTypeGETRequest implements IReturn { public String DocumentTypeID = null; public String getDocumentTypeID() { return DocumentTypeID; } public DebtorDocumentTypeGETRequest setDocumentTypeID(String value) { this.DocumentTypeID = value; return this; } private static Object responseType = DocumentType.class; public Object getResponseType() { return responseType; } } @Route(Path="/Debtors/DocumentTypes", Verbs="GET") @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="Read OK", StatusCode=200) public static class DebtorDocumentTypesGETManyRequest implements IReturn> { private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @Route(Path="/Debtors/DocumentTypes", Verbs="POST") @ApiResponse(Description="Created OK", StatusCode=201) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class DebtorDocumentTypePOSTRequest extends DocumentType implements IReturn { private static Object responseType = DocumentType.class; public Object getResponseType() { return responseType; } } @Route(Path="/Debtors/DocumentTypes/{DocumentTypeID}", Verbs="PATCH") @ApiResponse(Description="Updated OK", StatusCode=200) // @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="No debtor document type with the DocumentTypeID provided was found", StatusCode=404) // @ApiResponse(Description="Not authenticated", StatusCode=401) public static class DebtorDocumentTypePATCHRequest extends DocumentType implements IReturn { public String DocumentTypeID = null; public String getDocumentTypeID() { return DocumentTypeID; } public DebtorDocumentTypePATCHRequest setDocumentTypeID(String value) { this.DocumentTypeID = value; return this; } private static Object responseType = DocumentType.class; public Object getResponseType() { return responseType; } } @Route(Path="/Debtors/DocumentTypes/{DocumentTypeID}", Verbs="DELETE") @ApiResponse(Description="Deleted OK", StatusCode=204) // @ApiResponse(Description="No debtor document type with the DocumentTypeID provided was found", StatusCode=404) // @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="Not authenticated", StatusCode=401) public static class DebtorDocumentTypeDELETERequest { public String DocumentTypeID = null; public String getDocumentTypeID() { return DocumentTypeID; } public DebtorDocumentTypeDELETERequest setDocumentTypeID(String value) { this.DocumentTypeID = value; return this; } } @Route(Path="/Debtors/{DebtorID}/Documents/{DocumentID}", Verbs="GET") @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="No debtor Document with the DebtorID or DocumentID provided was found", StatusCode=404) public static class DebtorDocumentGETRequest implements IReturn { public String DebtorID = null; public String DocumentID = null; public String getDebtorID() { return DebtorID; } public DebtorDocumentGETRequest setDebtorID(String value) { this.DebtorID = value; return this; } public String getDocumentID() { return DocumentID; } public DebtorDocumentGETRequest setDocumentID(String value) { this.DocumentID = value; return this; } private static Object responseType = Document.class; public Object getResponseType() { return responseType; } } @Route(Path="/Debtors/{DebtorID}/Documents", Verbs="GET") @ApiResponse(Description="No debtor with the DebtorID provided was found", StatusCode=404) // @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class DebtorDocumentsGETManyRequest implements IReturn> { public String DebtorID = null; public String getDebtorID() { return DebtorID; } public DebtorDocumentsGETManyRequest setDebtorID(String value) { this.DebtorID = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @Route(Path="/Debtors/{DebtorID}/Documents", Verbs="POST") @ApiResponse(Description="No debtor with the DebtorID provided was found", StatusCode=404) // @ApiResponse(Description="Created OK", StatusCode=201) // @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="Not authenticated", StatusCode=401) public static class DebtorDocumentPOSTRequest extends Document implements IReturn { public String DebtorID = null; public String getDebtorID() { return DebtorID; } public DebtorDocumentPOSTRequest setDebtorID(String value) { this.DebtorID = value; return this; } private static Object responseType = Document.class; public Object getResponseType() { return responseType; } } @Route(Path="/Debtors/{DebtorID}/Documents/{DocumentID}", Verbs="PATCH") @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="No debtor with the DebtorID provided was found", StatusCode=404) // @ApiResponse(Description="Updated OK", StatusCode=200) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class DebtorDocumentPATCHRequest extends Document implements IReturn { public String DebtorID = null; public String DocumentID = null; public String getDebtorID() { return DebtorID; } public DebtorDocumentPATCHRequest setDebtorID(String value) { this.DebtorID = value; return this; } public String getDocumentID() { return DocumentID; } public DebtorDocumentPATCHRequest setDocumentID(String value) { this.DocumentID = value; return this; } private static Object responseType = Document.class; public Object getResponseType() { return responseType; } } @Route(Path="/Debtors/{DebtorID}/Documents/{DocumentID}", Verbs="DELETE") @ApiResponse(Description="No debtor with the DebtorID provided was found", StatusCode=404) // @ApiResponse(Description="Deleted OK", StatusCode=204) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class DebtorDocumentDELETERequest { public String DebtorID = null; public String DocumentID = null; public String getDebtorID() { return DebtorID; } public DebtorDocumentDELETERequest setDebtorID(String value) { this.DebtorID = value; return this; } public String getDocumentID() { return DocumentID; } public DebtorDocumentDELETERequest setDocumentID(String value) { this.DocumentID = value; return this; } } @Route(Path="/Debtors/{DebtorID}/FreightForwarderAddresses/{FreightForwarderAddressID}", Verbs="GET") @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="No debtor freight forwarder address with the DebtorID or FreightForwarderAddressID provided was found", StatusCode=404) // @ApiResponse(Description="Not authenticated", StatusCode=401) public static class DebtorFreightForwarderAddressGETRequest implements IReturn { public String DebtorID = null; public String FreightForwarderAddressID = null; public String getDebtorID() { return DebtorID; } public DebtorFreightForwarderAddressGETRequest setDebtorID(String value) { this.DebtorID = value; return this; } public String getFreightForwarderAddressID() { return FreightForwarderAddressID; } public DebtorFreightForwarderAddressGETRequest setFreightForwarderAddressID(String value) { this.FreightForwarderAddressID = value; return this; } private static Object responseType = DebtorFreightForwarderAddress.class; public Object getResponseType() { return responseType; } } @Route(Path="/Debtors/{DebtorID}/FreightForwarderAddresses", Verbs="GET") @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="No debtor freight forwarder address with the DebtorID or FreightForwarderAddressID provided was found", StatusCode=404) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class DebtorFreightForwarderAddressesGETManyRequest implements IReturn> { public String DebtorID = null; public String getDebtorID() { return DebtorID; } public DebtorFreightForwarderAddressesGETManyRequest setDebtorID(String value) { this.DebtorID = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @Route(Path="/Debtors/{DebtorID}/FreightForwarderAddresses", Verbs="POST") @ApiResponse(Description="Created OK", StatusCode=201) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="No debtor freight forwarder address with the DebtorID or FreightForwarderAddressID provided was found", StatusCode=404) public static class DebtorFreightForwarderAddressPOSTRequest extends DebtorFreightForwarderAddress implements IReturn { public String DebtorID = null; public String getDebtorID() { return DebtorID; } public DebtorFreightForwarderAddressPOSTRequest setDebtorID(String value) { this.DebtorID = value; return this; } private static Object responseType = DebtorFreightForwarderAddress.class; public Object getResponseType() { return responseType; } } @Route(Path="/Debtors/{DebtorID}/FreightForwarderAddresses/{FreightForwarderAddressID}", Verbs="PATCH") @ApiResponse(Description="No debtor freight forwarder address with the DebtorID or FreightForwarderAddressID provided was found", StatusCode=404) // @ApiResponse(Description="Updated OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class DebtorFreightForwarderAddressPATCHRequest extends DebtorFreightForwarderAddress implements IReturn { public String DebtorID = null; public String FreightForwarderAddressID = null; public String getDebtorID() { return DebtorID; } public DebtorFreightForwarderAddressPATCHRequest setDebtorID(String value) { this.DebtorID = value; return this; } public String getFreightForwarderAddressID() { return FreightForwarderAddressID; } public DebtorFreightForwarderAddressPATCHRequest setFreightForwarderAddressID(String value) { this.FreightForwarderAddressID = value; return this; } private static Object responseType = DebtorFreightForwarderAddress.class; public Object getResponseType() { return responseType; } } @Route(Path="/Debtors/{DebtorID}/FreightForwarderAddresses/{FreightForwarderAddressID}", Verbs="DELETE") @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="Deleted OK", StatusCode=204) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="No debtor freight forwarder address with the DebtorID or FreightForwarderAddressID provided was found", StatusCode=404) public static class DebtorFreightForwarderAddressDELETERequest extends DebtorFreightForwarderAddress { public String DebtorID = null; public String FreightForwarderAddressID = null; public String getDebtorID() { return DebtorID; } public DebtorFreightForwarderAddressDELETERequest setDebtorID(String value) { this.DebtorID = value; return this; } public String getFreightForwarderAddressID() { return FreightForwarderAddressID; } public DebtorFreightForwarderAddressDELETERequest setFreightForwarderAddressID(String value) { this.FreightForwarderAddressID = value; return this; } } @Route(Path="/Debtors/{DebtorID}/GroupMemberships/{GroupMembershipID}", Verbs="GET") @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="No debtor group membership with the DebtorID or GroupMembershipID provided was found", StatusCode=404) public static class DebtorGroupMembershipGETRequest implements IReturn { public String DebtorID = null; public String GroupMembershipID = null; public String getDebtorID() { return DebtorID; } public DebtorGroupMembershipGETRequest setDebtorID(String value) { this.DebtorID = value; return this; } public String getGroupMembershipID() { return GroupMembershipID; } public DebtorGroupMembershipGETRequest setGroupMembershipID(String value) { this.GroupMembershipID = value; return this; } private static Object responseType = DebtorGroupMembership.class; public Object getResponseType() { return responseType; } } @Route(Path="/Debtors/{DebtorID}/GroupMemberships", Verbs="GET") @ApiResponse(Description="No debtor group membership with the DebtorID or GroupMembershipID provided was found", StatusCode=404) // @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="Not authenticated", StatusCode=401) public static class DebtorGroupMembershipsGETManyRequest implements IReturn> { public String DebtorID = null; public String getDebtorID() { return DebtorID; } public DebtorGroupMembershipsGETManyRequest setDebtorID(String value) { this.DebtorID = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @Route(Path="/Debtors/{DebtorID}/GroupMemberships", Verbs="POST") @ApiResponse(Description="No debtor group membership with the DebtorID or GroupMembershipID provided was found", StatusCode=404) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="Created OK", StatusCode=201) public static class DebtorGroupMembershipPOSTRequest extends DebtorGroupMembership implements IReturn { public String DebtorID = null; public String getDebtorID() { return DebtorID; } public DebtorGroupMembershipPOSTRequest setDebtorID(String value) { this.DebtorID = value; return this; } private static Object responseType = DebtorGroupMembership.class; public Object getResponseType() { return responseType; } } @Route(Path="/Debtors/{DebtorID}/GroupMemberships/{GroupMembershipID}", Verbs="PATCH") @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="No debtor group membership with the DebtorID or GroupMembershipID provided was found", StatusCode=404) // @ApiResponse(Description="Updated OK", StatusCode=200) public static class DebtorGroupMembershipPATCHRequest extends DebtorGroupMembership implements IReturn { public String DebtorID = null; public String GroupMembershipID = null; public String getDebtorID() { return DebtorID; } public DebtorGroupMembershipPATCHRequest setDebtorID(String value) { this.DebtorID = value; return this; } public String getGroupMembershipID() { return GroupMembershipID; } public DebtorGroupMembershipPATCHRequest setGroupMembershipID(String value) { this.GroupMembershipID = value; return this; } private static Object responseType = DebtorGroupMembership.class; public Object getResponseType() { return responseType; } } @Route(Path="/Debtors/{DebtorID}/GroupMemberships/{GroupMembershipID}", Verbs="DELETE") @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="No debtor group membership with the DebtorID or GroupMembershipID provided was found", StatusCode=404) // @ApiResponse(Description="Deleted OK", StatusCode=204) public static class DebtorGroupMembershipDELETERequest extends DebtorGroupMembership { public String DebtorID = null; public String GroupMembershipID = null; public String getDebtorID() { return DebtorID; } public DebtorGroupMembershipDELETERequest setDebtorID(String value) { this.DebtorID = value; return this; } public String getGroupMembershipID() { return GroupMembershipID; } public DebtorGroupMembershipDELETERequest setGroupMembershipID(String value) { this.GroupMembershipID = value; return this; } } @Route(Path="/Debtors/NoteTypes/{NoteTypeID}", Verbs="GET") @ApiResponse(Description="No debtor note type with the NoteTypeID provided was found", StatusCode=404) // @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) public static class DebtorNoteTypeGETRequest implements IReturn { public String NoteTypeID = null; public String getNoteTypeID() { return NoteTypeID; } public DebtorNoteTypeGETRequest setNoteTypeID(String value) { this.NoteTypeID = value; return this; } private static Object responseType = NoteType.class; public Object getResponseType() { return responseType; } } @Route(Path="/Debtors/NoteTypes", Verbs="GET") @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class DebtorNoteTypesGETManyRequest implements IReturn> { private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @Route(Path="/Debtors/NoteTypes", Verbs="POST") @ApiResponse(Description="Created OK", StatusCode=201) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class DebtorNoteTypePOSTRequest extends NoteType implements IReturn { private static Object responseType = NoteType.class; public Object getResponseType() { return responseType; } } @Route(Path="/Debtors/NoteTypes/{NoteTypeID}", Verbs="PATCH") @ApiResponse(Description="No debtor note type with the NoteTypeID provided was found", StatusCode=404) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="Updated OK", StatusCode=200) public static class DebtorNoteTypePATCHRequest extends NoteType implements IReturn { public String NoteTypeID = null; public String getNoteTypeID() { return NoteTypeID; } public DebtorNoteTypePATCHRequest setNoteTypeID(String value) { this.NoteTypeID = value; return this; } private static Object responseType = NoteType.class; public Object getResponseType() { return responseType; } } @Route(Path="/Debtors/NoteTypes/{NoteTypeID}", Verbs="DELETE") @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="No debtor note type with the NoteTypeID provided was found", StatusCode=404) // @ApiResponse(Description="Deleted OK", StatusCode=204) // @ApiResponse(Description="Not authenticated", StatusCode=401) public static class DebtorNoteTypeDELETERequest { public String NoteTypeID = null; public String getNoteTypeID() { return NoteTypeID; } public DebtorNoteTypeDELETERequest setNoteTypeID(String value) { this.NoteTypeID = value; return this; } } @Route(Path="/Debtors/{DebtorID}/Notes/{NoteID}", Verbs="GET") @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="No debtor Note with the DebtorID or NoteID provided was found", StatusCode=404) // @ApiResponse(Description="Not authenticated", StatusCode=401) public static class DebtorNoteGETRequest implements IReturn { public String DebtorID = null; public String NoteID = null; public String getDebtorID() { return DebtorID; } public DebtorNoteGETRequest setDebtorID(String value) { this.DebtorID = value; return this; } public String getNoteID() { return NoteID; } public DebtorNoteGETRequest setNoteID(String value) { this.NoteID = value; return this; } private static Object responseType = Note.class; public Object getResponseType() { return responseType; } } @Route(Path="/Debtors/{DebtorID}/Notes", Verbs="GET") @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="No debtor with the DebtorID provided was found", StatusCode=404) public static class DebtorNotesGETManyRequest implements IReturn> { public String DebtorID = null; public String getDebtorID() { return DebtorID; } public DebtorNotesGETManyRequest setDebtorID(String value) { this.DebtorID = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @Route(Path="/Debtors/{DebtorID}/Notes", Verbs="POST") @ApiResponse(Description="Created OK", StatusCode=201) // @ApiResponse(Description="No debtor with the DebtorID provided was found", StatusCode=404) // @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="Not authenticated", StatusCode=401) public static class DebtorNotePOSTRequest extends Note implements IReturn { public String DebtorID = null; public String getDebtorID() { return DebtorID; } public DebtorNotePOSTRequest setDebtorID(String value) { this.DebtorID = value; return this; } private static Object responseType = Note.class; public Object getResponseType() { return responseType; } } @Route(Path="/Debtors/{DebtorID}/Notes/{NoteID}", Verbs="PATCH") @ApiResponse(Description="Updated OK", StatusCode=200) // @ApiResponse(Description="No debtor with the DebtorID provided was found", StatusCode=404) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class DebtorNotePATCHRequest extends Note implements IReturn { public String DebtorID = null; public String NoteID = null; public String getDebtorID() { return DebtorID; } public DebtorNotePATCHRequest setDebtorID(String value) { this.DebtorID = value; return this; } public String getNoteID() { return NoteID; } public DebtorNotePATCHRequest setNoteID(String value) { this.NoteID = value; return this; } private static Object responseType = Note.class; public Object getResponseType() { return responseType; } } @Route(Path="/Debtors/{DebtorID}/Notes/{NoteID}", Verbs="DELETE") @ApiResponse(Description="No debtor with the DebtorID provided was found", StatusCode=404) // @ApiResponse(Description="Deleted OK", StatusCode=204) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class DebtorNoteDELETERequest { public String DebtorID = null; public String NoteID = null; public String getDebtorID() { return DebtorID; } public DebtorNoteDELETERequest setDebtorID(String value) { this.DebtorID = value; return this; } public String getNoteID() { return NoteID; } public DebtorNoteDELETERequest setNoteID(String value) { this.NoteID = value; return this; } } @Route(Path="/Debtors/PricingGroups/{PricingGroupID}", Verbs="GET") @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="No debtor pricing group with the PricingGroupID provided was found", StatusCode=404) public static class DebtorPricingGroupGETRequest implements IReturn { public String PricingGroupID = null; public String getPricingGroupID() { return PricingGroupID; } public DebtorPricingGroupGETRequest setPricingGroupID(String value) { this.PricingGroupID = value; return this; } private static Object responseType = DebtorPricingGroup.class; public Object getResponseType() { return responseType; } } @Route(Path="/Debtors/PricingGroups", Verbs="POST") @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="Created OK", StatusCode=201) public static class DebtorPricingGroupPOSTRequest extends DebtorPricingGroup implements IReturn { private static Object responseType = DebtorPricingGroup.class; public Object getResponseType() { return responseType; } } @Route(Path="/Debtors/PricingGroups/{PricingGroupID}", Verbs="PATCH") @ApiResponse(Description="Updated OK", StatusCode=200) // @ApiResponse(Description="No debtor pricing group with the PricingGroupID provided was found", StatusCode=404) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class DebtorPricingGroupPATCHRequest extends DebtorPricingGroup implements IReturn { public String PricingGroupID = null; public String getPricingGroupID() { return PricingGroupID; } public DebtorPricingGroupPATCHRequest setPricingGroupID(String value) { this.PricingGroupID = value; return this; } private static Object responseType = DebtorPricingGroup.class; public Object getResponseType() { return responseType; } } @Route(Path="/Debtors/PricingGroups/{PricingGroupID}", Verbs="DELETE") @ApiResponse(Description="Deleted OK", StatusCode=204) // @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="No debtor pricing group with the PricingGroupID provided was found", StatusCode=404) // @ApiResponse(Description="Not authenticated", StatusCode=401) public static class DebtorPricingGroupDELETERequest { public String PricingGroupID = null; public String getPricingGroupID() { return PricingGroupID; } public DebtorPricingGroupDELETERequest setPricingGroupID(String value) { this.PricingGroupID = value; return this; } } @Route(Path="/EmailMessages/{EmailMessageID}", Verbs="GET") @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="No email message with the EmailMessageID provided was found", StatusCode=404) public static class EmailMessageGETRequest implements IReturn { public String EmailMessageID = null; public String getEmailMessageID() { return EmailMessageID; } public EmailMessageGETRequest setEmailMessageID(String value) { this.EmailMessageID = value; return this; } private static Object responseType = EmailMessage.class; public Object getResponseType() { return responseType; } } @Route(Path="/EmailMessages/", Verbs="POST") @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="Created OK", StatusCode=201) // @ApiResponse(Description="Not authenticated", StatusCode=401) public static class EmailMessagePOSTRequest extends EmailMessage implements IReturn { private static Object responseType = EmailMessage.class; public Object getResponseType() { return responseType; } } @Route(Path="/EmailMessages/{EmailMessageID}", Verbs="PATCH") @ApiResponse(Description="No email message with the EmailMessageID provided was found", StatusCode=404) // @ApiResponse(Description="Updated OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class EmailMessagePATCHRequest extends EmailMessage implements IReturn { public String EmailMessageID = null; public String getEmailMessageID() { return EmailMessageID; } public EmailMessagePATCHRequest setEmailMessageID(String value) { this.EmailMessageID = value; return this; } private static Object responseType = EmailMessage.class; public Object getResponseType() { return responseType; } } @Route(Path="/EmailMessages/{EmailMessageID}", Verbs="DELETE") @ApiResponse(Description="Deleted OK", StatusCode=204) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="No email message with the EmailMessageID provided was found", StatusCode=404) public static class EmailMessageDELETERequest { public String EmailMessageID = null; public String getEmailMessageID() { return EmailMessageID; } public EmailMessageDELETERequest setEmailMessageID(String value) { this.EmailMessageID = value; return this; } } @Route(Path="/EmailMessages/AttachmentTypes/{AttachmentTypeID}", Verbs="GET") @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="No email message attachment type with the DocumentTypeID provided was found", StatusCode=404) public static class EmailMessageAttachmentTypeGETRequest implements IReturn { public String AttachmentTypeID = null; public String getAttachmentTypeID() { return AttachmentTypeID; } public EmailMessageAttachmentTypeGETRequest setAttachmentTypeID(String value) { this.AttachmentTypeID = value; return this; } private static Object responseType = DocumentType.class; public Object getResponseType() { return responseType; } } @Route(Path="/EmailMessages/AttachmentTypes", Verbs="GET") @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="Read OK", StatusCode=200) public static class EmailMessageAttachmentTypesGETManyRequest implements IReturn> { private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @Route(Path="/EmailMessages/AttachmentTypes", Verbs="POST") @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Created OK", StatusCode=201) public static class EmailMessageAttachmentTypePOSTRequest extends DocumentType implements IReturn { private static Object responseType = DocumentType.class; public Object getResponseType() { return responseType; } } @Route(Path="/EmailMessages/AttachmentTypes/{AttachmentTypeID}", Verbs="PATCH") @ApiResponse(Description="Updated OK", StatusCode=200) // @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="No email message attachment type with the DocumentTypeID provided was found", StatusCode=404) public static class EmailMessageAttachmentTypePATCHRequest extends DocumentType implements IReturn { public String AttachmentTypeID = null; public String getAttachmentTypeID() { return AttachmentTypeID; } public EmailMessageAttachmentTypePATCHRequest setAttachmentTypeID(String value) { this.AttachmentTypeID = value; return this; } private static Object responseType = DocumentType.class; public Object getResponseType() { return responseType; } } @Route(Path="/EmailMessages/AttachmentTypes/{AttachmentTypeID}", Verbs="DELETE") @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="No email message attachment type with the DocumentTypeID provided was found", StatusCode=404) // @ApiResponse(Description="Deleted OK", StatusCode=204) // @ApiResponse(Description="Not authenticated", StatusCode=401) public static class EmailMessageAttachmentTypeDELETERequest { public String AttachmentTypeID = null; public String getAttachmentTypeID() { return AttachmentTypeID; } public EmailMessageAttachmentTypeDELETERequest setAttachmentTypeID(String value) { this.AttachmentTypeID = value; return this; } } @Route(Path="/EmailMessages/{EmailMessageID}/Attachments/{AttachmentID}", Verbs="GET") @ApiResponse(Description="No email message attachment with the EmailMessageID or DocumentID provided was found", StatusCode=404) // @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class EmailMessageAttachmentGETRequest implements IReturn { public String EmailMessageID = null; public String AttachmentID = null; public String getEmailMessageID() { return EmailMessageID; } public EmailMessageAttachmentGETRequest setEmailMessageID(String value) { this.EmailMessageID = value; return this; } public String getAttachmentID() { return AttachmentID; } public EmailMessageAttachmentGETRequest setAttachmentID(String value) { this.AttachmentID = value; return this; } private static Object responseType = Document.class; public Object getResponseType() { return responseType; } } @Route(Path="/EmailMessages/{EmailMessageID}/Attachments", Verbs="GET") @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="No email message with the EmailMessageID provided was found", StatusCode=404) // @ApiResponse(Description="Not authenticated", StatusCode=401) public static class EmailMessageAttachmentsGETManyRequest implements IReturn> { public String EmailMessageID = null; public String getEmailMessageID() { return EmailMessageID; } public EmailMessageAttachmentsGETManyRequest setEmailMessageID(String value) { this.EmailMessageID = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @Route(Path="/EmailMessages/{EmailMessageID}/Attachments", Verbs="POST") @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="No email message with the EmailMessageID provided was found", StatusCode=404) // @ApiResponse(Description="Created OK", StatusCode=201) // @ApiResponse(Description="Not authenticated", StatusCode=401) public static class EmailMessageAttachmentPOSTRequest extends Document implements IReturn { public String EmailMessageID = null; public String getEmailMessageID() { return EmailMessageID; } public EmailMessageAttachmentPOSTRequest setEmailMessageID(String value) { this.EmailMessageID = value; return this; } private static Object responseType = Document.class; public Object getResponseType() { return responseType; } } @Route(Path="/EmailMessages/{EmailMessageID}/Attachments/{AttachmentID}", Verbs="PATCH") @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="Updated OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="No email message with the EmailMessageID provided was found", StatusCode=404) public static class EmailMessageAttachmentPATCHRequest extends Document implements IReturn { public String EmailMessageID = null; public String AttachmentID = null; public String getEmailMessageID() { return EmailMessageID; } public EmailMessageAttachmentPATCHRequest setEmailMessageID(String value) { this.EmailMessageID = value; return this; } public String getAttachmentID() { return AttachmentID; } public EmailMessageAttachmentPATCHRequest setAttachmentID(String value) { this.AttachmentID = value; return this; } private static Object responseType = Document.class; public Object getResponseType() { return responseType; } } @Route(Path="/EmailMessages/{EmailMessageID}/Attachments/{AttachmentID}", Verbs="DELETE") @ApiResponse(Description="Deleted OK", StatusCode=204) // @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="No email message with the EmailMessageID provided was found", StatusCode=404) // @ApiResponse(Description="Not authenticated", StatusCode=401) public static class EmailMessageAttachmentDELETERequest { public String EmailMessageID = null; public String AttachmentID = null; public String getEmailMessageID() { return EmailMessageID; } public EmailMessageAttachmentDELETERequest setEmailMessageID(String value) { this.EmailMessageID = value; return this; } public String getAttachmentID() { return AttachmentID; } public EmailMessageAttachmentDELETERequest setAttachmentID(String value) { this.AttachmentID = value; return this; } } @Route(Path="/GoodsReceivedNotes/{GRNID}", Verbs="GET") @ApiResponse(Description="No goods received note with the GRNID provided was found", StatusCode=404) // @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="Not authenticated", StatusCode=401) public static class GoodsReceivedNoteGETRequest implements IReturn { public String GRNID = null; public String getGrnid() { return GRNID; } public GoodsReceivedNoteGETRequest setGrnid(String value) { this.GRNID = value; return this; } private static Object responseType = GoodsReceivedNote.class; public Object getResponseType() { return responseType; } } @Route(Path="/GoodsReceivedNotes", Verbs="POST") @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Created OK", StatusCode=201) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class GoodsReceivedNotePOSTRequest extends GoodsReceivedNote implements IReturn { public String CreditorID = null; public String getCreditorID() { return CreditorID; } public GoodsReceivedNotePOSTRequest setCreditorID(String value) { this.CreditorID = value; return this; } private static Object responseType = GoodsReceivedNote.class; public Object getResponseType() { return responseType; } } @Route(Path="/GoodsReceivedNotes/{GRNID}", Verbs="PATCH") @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="No goods received note with the GRNID provided was found", StatusCode=404) // @ApiResponse(Description="Created OK", StatusCode=201) // @ApiResponse(Description="Not authenticated", StatusCode=401) public static class GoodsReceivedNotePATCHRequest extends GoodsReceivedNote implements IReturn { public String GRNID = null; public String getGrnid() { return GRNID; } public GoodsReceivedNotePATCHRequest setGrnid(String value) { this.GRNID = value; return this; } private static Object responseType = GoodsReceivedNote.class; public Object getResponseType() { return responseType; } } @Route(Path="/GoodsReceivedNotes/{GRNID}", Verbs="DELETE") @ApiResponse(Description="Deleted OK", StatusCode=204) // @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="No goods received note with the GRNID provided was found", StatusCode=404) // @ApiResponse(Description="Not authenticated", StatusCode=401) public static class GoodsReceivedNoteDELETERequest { public String GRNID = null; public String getGrnid() { return GRNID; } public GoodsReceivedNoteDELETERequest setGrnid(String value) { this.GRNID = value; return this; } } @Route(Path="/GoodsReceivedNotes/FromPurchaseOrders/{OrderNos}", Verbs="POST") @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="No Purchase Order(s) with the PO No. provided was found", StatusCode=404) // @ApiResponse(Description="Created OK", StatusCode=201) public static class GoodsReceivedNoteCREATEFromPORequest implements IReturn { public ArrayList OrderNos = null; public ArrayList getOrderNos() { return OrderNos; } public GoodsReceivedNoteCREATEFromPORequest setOrderNos(ArrayList value) { this.OrderNos = value; return this; } private static Object responseType = GoodsReceivedNote.class; public Object getResponseType() { return responseType; } } @Route(Path="/GoodsReceivedNotes/FromPurchaseOrderLines", Verbs="POST") @ApiResponse(Description="Created OK", StatusCode=201) // @ApiResponse(Description="No Purchase Order Line(s) with the OrderLineID provided was found", StatusCode=404) // @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="Not authenticated", StatusCode=401) public static class GoodsReceivedNoteCREATEFromPOLinesRequest implements IReturn { public ArrayList ReceivedPOLineQuantities = null; public Date ReceivedDate = null; public ArrayList getReceivedPOLineQuantities() { return ReceivedPOLineQuantities; } public GoodsReceivedNoteCREATEFromPOLinesRequest setReceivedPOLineQuantities(ArrayList value) { this.ReceivedPOLineQuantities = value; return this; } public Date getReceivedDate() { return ReceivedDate; } public GoodsReceivedNoteCREATEFromPOLinesRequest setReceivedDate(Date value) { this.ReceivedDate = value; return this; } private static Object responseType = GoodsReceivedNote.class; public Object getResponseType() { return responseType; } } @Route(Path="/GoodsReceivedNotes/Activate/{GRNID}", Verbs="POST") @ApiResponse(Description="Activated OK", StatusCode=204) // @ApiResponse(Description="No GRN with the GRNID provided was found", StatusCode=404) // @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="Not authenticated", StatusCode=401) public static class GoodsReceivedNoteACTIVATERequest implements IReturn { public String GRNID = null; public String getGrnid() { return GRNID; } public GoodsReceivedNoteACTIVATERequest setGrnid(String value) { this.GRNID = value; return this; } private static Object responseType = GoodsReceivedNote.class; public Object getResponseType() { return responseType; } } @Route(Path="/GoodsReceivedNotes/{GRNID}/PurchaseOrders/{OrderID}", Verbs="GET") @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="No purchase order with the GRNID or OrderID provided was found", StatusCode=404) // @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="Read OK", StatusCode=200) public static class GoodsReceivedNotePurchaseOrderGETRequest implements IReturn { public String GRNID = null; public String OrderID = null; public String getGrnid() { return GRNID; } public GoodsReceivedNotePurchaseOrderGETRequest setGrnid(String value) { this.GRNID = value; return this; } public String getOrderID() { return OrderID; } public GoodsReceivedNotePurchaseOrderGETRequest setOrderID(String value) { this.OrderID = value; return this; } private static Object responseType = GoodsReceivedNotePurchaseOrderReceived.class; public Object getResponseType() { return responseType; } } @Route(Path="/GoodsReceivedNotes/{GRNID}/PurchaseOrders", Verbs="GET") @ApiResponse(Description="No purchase order with the GRNID provided was found", StatusCode=404) // @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class GoodsReceivedNotePurchaseOrdersGETManyRequest implements IReturn> { public String GRNID = null; public String getGrnid() { return GRNID; } public GoodsReceivedNotePurchaseOrdersGETManyRequest setGrnid(String value) { this.GRNID = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @Route(Path="/GoodsReceivedNotes/{GRNID}/PurchaseOrders", Verbs="POST") @ApiResponse(Description="Created OK", StatusCode=201) // @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="No purchase order with the GRNID or OrderID provided was found", StatusCode=404) // @ApiResponse(Description="Not authenticated", StatusCode=401) public static class GoodsReceivedNotePurchaseOrderPOSTRequest extends GoodsReceivedNotePurchaseOrderReceived implements IReturn { public String GRNID = null; public String OrderID = null; public String getGrnid() { return GRNID; } public GoodsReceivedNotePurchaseOrderPOSTRequest setGrnid(String value) { this.GRNID = value; return this; } public String getOrderID() { return OrderID; } public GoodsReceivedNotePurchaseOrderPOSTRequest setOrderID(String value) { this.OrderID = value; return this; } private static Object responseType = GoodsReceivedNotePurchaseOrderReceived.class; public Object getResponseType() { return responseType; } } @Route(Path="/GoodsReceivedNotes/{GRNID}/PurchaseOrders/{OrderID}", Verbs="DELETE") @ApiResponse(Description="No purchase order with the GRNID or OrderID provided was found", StatusCode=404) // @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="Deleted OK", StatusCode=204) // @ApiResponse(Description="Not authenticated", StatusCode=401) public static class GoodsReceivedNotePurchaseOrderDELETERequest extends GoodsReceivedNotePurchaseOrderReceived { public String GRNID = null; public String OrderID = null; public String getGrnid() { return GRNID; } public GoodsReceivedNotePurchaseOrderDELETERequest setGrnid(String value) { this.GRNID = value; return this; } public String getOrderID() { return OrderID; } public GoodsReceivedNotePurchaseOrderDELETERequest setOrderID(String value) { this.OrderID = value; return this; } } @Route(Path="/GoodsReceivedNotes/{GRNID}/Lines/{LineID}", Verbs="GET") @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="No line with the GRNID or LineID provided was found", StatusCode=404) // @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="Read OK", StatusCode=200) public static class GoodsReceivedNoteLineGETRequest implements IReturn { public String GRNID = null; public String LineID = null; public String getGrnid() { return GRNID; } public GoodsReceivedNoteLineGETRequest setGrnid(String value) { this.GRNID = value; return this; } public String getLineID() { return LineID; } public GoodsReceivedNoteLineGETRequest setLineID(String value) { this.LineID = value; return this; } private static Object responseType = GoodsReceivedNoteLine.class; public Object getResponseType() { return responseType; } } @Route(Path="/GoodsReceivedNotes/{GRNID}/Lines", Verbs="GET") @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="No line with the GRNID provided was found", StatusCode=404) // @ApiResponse(Description="Read OK", StatusCode=200) public static class GoodsReceivedNoteLinesGETManyRequest implements IReturn> { public String GRNID = null; public String getGrnid() { return GRNID; } public GoodsReceivedNoteLinesGETManyRequest setGrnid(String value) { this.GRNID = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @Route(Path="/GoodsReceivedNotes/{GRNID}/Lines", Verbs="POST") @ApiResponse(Description="Created OK", StatusCode=201) // @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="No line with the GRNID or LineID provided was found", StatusCode=404) public static class GoodsReceivedNoteLinePOSTRequest extends GoodsReceivedNoteLine implements IReturn { public String GRNID = null; public String getGrnid() { return GRNID; } public GoodsReceivedNoteLinePOSTRequest setGrnid(String value) { this.GRNID = value; return this; } private static Object responseType = GoodsReceivedNoteLine.class; public Object getResponseType() { return responseType; } } @Route(Path="/GoodsReceivedNotes/{GRNID}/Lines/{LineID}", Verbs="PATCH") @ApiResponse(Description="Updated OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="No line with the GRNID or LineID provided was found", StatusCode=404) public static class GoodsReceivedNoteLinePATCHRequest extends GoodsReceivedNoteLine implements IReturn { public String GRNID = null; public String LineID = null; public String getGrnid() { return GRNID; } public GoodsReceivedNoteLinePATCHRequest setGrnid(String value) { this.GRNID = value; return this; } public String getLineID() { return LineID; } public GoodsReceivedNoteLinePATCHRequest setLineID(String value) { this.LineID = value; return this; } private static Object responseType = GoodsReceivedNoteLine.class; public Object getResponseType() { return responseType; } } @Route(Path="/GoodsReceivedNotes/{GRNID}/Lines/{LineID}", Verbs="DELETE") @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="No line with the GRNID or LineID provided was found", StatusCode=404) // @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="Deleted OK", StatusCode=204) public static class GoodsReceivedNoteLineDELETERequest extends GoodsReceivedNoteLine { public String GRNID = null; public String LineID = null; public String getGrnid() { return GRNID; } public GoodsReceivedNoteLineDELETERequest setGrnid(String value) { this.GRNID = value; return this; } public String getLineID() { return LineID; } public GoodsReceivedNoteLineDELETERequest setLineID(String value) { this.LineID = value; return this; } } @Route(Path="/GoodsReceivedNotes/{GRNID}/Lines/{LineID}/LineDetails", Verbs="GET") @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="No goods received note with the GRNID or LineID provided was found", StatusCode=404) // @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class GoodsReceivedNoteLineDetailsGETManyRequest implements IReturn> { public String GRNID = null; public String LineID = null; public String getGrnid() { return GRNID; } public GoodsReceivedNoteLineDetailsGETManyRequest setGrnid(String value) { this.GRNID = value; return this; } public String getLineID() { return LineID; } public GoodsReceivedNoteLineDetailsGETManyRequest setLineID(String value) { this.LineID = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @Route(Path="/GoodsReceivedNotes/{GRNID}/Lines/{LineID}/LineDetails/{LineDetailID}", Verbs="GET") @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="No goods received note with the GRNID or LineID or LineDetailID provided was found", StatusCode=404) // @ApiResponse(Description="Not authenticated", StatusCode=401) public static class GoodsReceivedNoteLineDetailGETRequest implements IReturn { public String GRNID = null; public String LineID = null; public String LineDetailID = null; public String getGrnid() { return GRNID; } public GoodsReceivedNoteLineDetailGETRequest setGrnid(String value) { this.GRNID = value; return this; } public String getLineID() { return LineID; } public GoodsReceivedNoteLineDetailGETRequest setLineID(String value) { this.LineID = value; return this; } public String getLineDetailID() { return LineDetailID; } public GoodsReceivedNoteLineDetailGETRequest setLineDetailID(String value) { this.LineDetailID = value; return this; } private static Object responseType = GoodsReceivedNoteLineDetail.class; public Object getResponseType() { return responseType; } } @Route(Path="/GoodsReceivedNotes/{GRNID}/Lines/{LineID}/LineDetails", Verbs="POST") @ApiResponse(Description="No goods received note with the GRNID or LineID provided was found", StatusCode=404) // @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="Created OK", StatusCode=201) // @ApiResponse(Description="Not authenticated", StatusCode=401) public static class GoodsReceivedNoteLineDetailPOSTRequest extends GoodsReceivedNoteLineDetail implements IReturn { public String GRNID = null; public String LineID = null; public String getGrnid() { return GRNID; } public GoodsReceivedNoteLineDetailPOSTRequest setGrnid(String value) { this.GRNID = value; return this; } public String getLineID() { return LineID; } public GoodsReceivedNoteLineDetailPOSTRequest setLineID(String value) { this.LineID = value; return this; } private static Object responseType = GoodsReceivedNoteLineDetail.class; public Object getResponseType() { return responseType; } } @Route(Path="/GoodsReceivedNotes/{GRNID}/Lines/{LineID}/LineDetails", Verbs="PUT") public static class GoodsReceivedNoteLineDetailPUTRequest extends ArrayList implements IReturn> { private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @Route(Path="/GoodsReceivedNotes/{GRNID}/Lines/{LineID}/LineDetails/{LineDetailID}", Verbs="PATCH") @ApiResponse(Description="Updated OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="No goods received note with the GRNID or LineID provided was found", StatusCode=404) public static class GoodsReceivedNoteLineDetailPATCHRequest extends GoodsReceivedNoteLineDetail implements IReturn { public String GRNID = null; public String LineID = null; public String LineDetailID = null; public String getGrnid() { return GRNID; } public GoodsReceivedNoteLineDetailPATCHRequest setGrnid(String value) { this.GRNID = value; return this; } public String getLineID() { return LineID; } public GoodsReceivedNoteLineDetailPATCHRequest setLineID(String value) { this.LineID = value; return this; } public String getLineDetailID() { return LineDetailID; } public GoodsReceivedNoteLineDetailPATCHRequest setLineDetailID(String value) { this.LineDetailID = value; return this; } private static Object responseType = GoodsReceivedNoteLineDetail.class; public Object getResponseType() { return responseType; } } @Route(Path="/GoodsReceivedNotes/{GRNID}/Lines/{LineID}/LineDetails/{LineDetailID}", Verbs="DELETE") @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="No goods received note with the GRNID or LineID or LineDetailID provided was found", StatusCode=404) // @ApiResponse(Description="Deleted OK", StatusCode=204) // @ApiResponse(Description="Not authenticated", StatusCode=401) public static class GoodsReceivedNoteLineDetailDELETERequest { public String GRNID = null; public String LineID = null; public String LineDetailID = null; public String getGrnid() { return GRNID; } public GoodsReceivedNoteLineDetailDELETERequest setGrnid(String value) { this.GRNID = value; return this; } public String getLineID() { return LineID; } public GoodsReceivedNoteLineDetailDELETERequest setLineID(String value) { this.LineID = value; return this; } public String getLineDetailID() { return LineDetailID; } public GoodsReceivedNoteLineDetailDELETERequest setLineDetailID(String value) { this.LineDetailID = value; return this; } } @Route(Path="/Inventory/{InventoryID}", Verbs="GET") @ApiResponse(Description="No inventory with the InventoryID provided was found", StatusCode=404) // @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class InventoryGETRequest implements IReturn { public String InventoryID = null; public String getInventoryID() { return InventoryID; } public InventoryGETRequest setInventoryID(String value) { this.InventoryID = value; return this; } private static Object responseType = InventoryItem.class; public Object getResponseType() { return responseType; } } @Route(Path="/Inventory", Verbs="POST") @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="Created OK", StatusCode=201) // @ApiResponse(Description="Not authenticated", StatusCode=401) public static class InventoryPOSTRequest extends InventoryItem implements IReturn { private static Object responseType = InventoryItem.class; public Object getResponseType() { return responseType; } } @Route(Path="/Inventory/{InventoryID}", Verbs="PATCH") @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Updated OK", StatusCode=200) public static class InventoryPATCHRequest extends InventoryItem implements IReturn { public String InventoryID = null; public String getInventoryID() { return InventoryID; } public InventoryPATCHRequest setInventoryID(String value) { this.InventoryID = value; return this; } private static Object responseType = InventoryItem.class; public Object getResponseType() { return responseType; } } @Route(Path="/Inventory/{InventoryID}", Verbs="DELETE") @ApiResponse(Description="Deleted OK", StatusCode=204) // @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="No inventory with the InventoryID provided was found", StatusCode=404) // @ApiResponse(Description="Not authenticated", StatusCode=401) public static class InventoryDELETERequest { public String InventoryID = null; public String getInventoryID() { return InventoryID; } public InventoryDELETERequest setInventoryID(String value) { this.InventoryID = value; return this; } } @Route(Path="/Inventory/{InventoryID}/AlternateChildren/{AlternateChildID}", Verbs="GET") @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="No inventory alternate child with the InventoryID or RecID provided was found", StatusCode=404) // @ApiResponse(Description="Read OK", StatusCode=200) public static class InventoryAlternateChildGETRequest implements IReturn { public String InventoryID = null; public String AlternateChildID = null; public String getInventoryID() { return InventoryID; } public InventoryAlternateChildGETRequest setInventoryID(String value) { this.InventoryID = value; return this; } public String getAlternateChildID() { return AlternateChildID; } public InventoryAlternateChildGETRequest setAlternateChildID(String value) { this.AlternateChildID = value; return this; } private static Object responseType = InventoryAlternateChild.class; public Object getResponseType() { return responseType; } } @Route(Path="/Inventory/{InventoryID}/AlternateChildren", Verbs="GET") @ApiResponse(Description="No inventory alternate child with the InventoryID or RecID provided was found", StatusCode=404) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="Read OK", StatusCode=200) public static class InventoryAlternateChildrenGETManyRequest implements IReturn> { public String InventoryID = null; public String getInventoryID() { return InventoryID; } public InventoryAlternateChildrenGETManyRequest setInventoryID(String value) { this.InventoryID = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @Route(Path="/Inventory/{InventoryID}/AlternateChildren", Verbs="POST") @ApiResponse(Description="No inventory alternate child with the InventoryID or RecID provided was found", StatusCode=404) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="Created OK", StatusCode=201) public static class InventoryAlternateChildPOSTRequest extends InventoryAlternateChild implements IReturn { public String InventoryID = null; public String getInventoryID() { return InventoryID; } public InventoryAlternateChildPOSTRequest setInventoryID(String value) { this.InventoryID = value; return this; } private static Object responseType = InventoryAlternateChild.class; public Object getResponseType() { return responseType; } } @Route(Path="/Inventory/{InventoryID}/AlternateChildren/{AlternateChildID}", Verbs="PATCH") @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="No inventory alternate child with the InventoryID or RecID provided was found", StatusCode=404) // @ApiResponse(Description="Updated OK", StatusCode=200) public static class InventoryAlternateChildPATCHRequest extends InventoryAlternateChild implements IReturn { public String InventoryID = null; public String AlternateChildID = null; public String getInventoryID() { return InventoryID; } public InventoryAlternateChildPATCHRequest setInventoryID(String value) { this.InventoryID = value; return this; } public String getAlternateChildID() { return AlternateChildID; } public InventoryAlternateChildPATCHRequest setAlternateChildID(String value) { this.AlternateChildID = value; return this; } private static Object responseType = InventoryAlternateChild.class; public Object getResponseType() { return responseType; } } @Route(Path="/Inventory/{InventoryID}/AlternateChildren/{AlternateChildID}", Verbs="DELETE") @ApiResponse(Description="Deleted OK", StatusCode=204) // @ApiResponse(Description="No inventory alternate child with the InventoryID or RecID provided was found", StatusCode=404) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class InventoryAlternateChildDELETERequest extends InventoryAlternateChild { public String InventoryID = null; public String AlternateChildID = null; public String getInventoryID() { return InventoryID; } public InventoryAlternateChildDELETERequest setInventoryID(String value) { this.InventoryID = value; return this; } public String getAlternateChildID() { return AlternateChildID; } public InventoryAlternateChildDELETERequest setAlternateChildID(String value) { this.AlternateChildID = value; return this; } } @Route(Path="/Inventory/{InventoryID}/AlternateParents/{LinkedInventoryID}", Verbs="GET") @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="No inventory alternate parent with the InventoryID or RecID provided was found", StatusCode=404) // @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="Read OK", StatusCode=200) public static class InventoryAlternateParentGETRequest implements IReturn { public String InventoryID = null; public String LinkedInventoryID = null; public String getInventoryID() { return InventoryID; } public InventoryAlternateParentGETRequest setInventoryID(String value) { this.InventoryID = value; return this; } public String getLinkedInventoryID() { return LinkedInventoryID; } public InventoryAlternateParentGETRequest setLinkedInventoryID(String value) { this.LinkedInventoryID = value; return this; } private static Object responseType = InventoryAlternateParent.class; public Object getResponseType() { return responseType; } } @Route(Path="/Inventory/{InventoryID}/AlternateParents", Verbs="GET") @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="No inventory alternate parent with the InventoryID or RecID provided was found", StatusCode=404) // @ApiResponse(Description="Not authenticated", StatusCode=401) public static class InventoryAlternateParentsGETManyRequest implements IReturn> { public String InventoryID = null; public String getInventoryID() { return InventoryID; } public InventoryAlternateParentsGETManyRequest setInventoryID(String value) { this.InventoryID = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @Route(Path="/Inventory/AttributeGroupTemplates/{AttributeGroupTemplateID}/Attributes/{TemplateAttributeID}", Verbs="GET") @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="No inventory attribute group template attribute with the AttributeGroupTemplateAttributeID provided was found", StatusCode=404) // @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) public static class InventoryAttributeGroupTemplateAttributeGETRequest implements IReturn { public String AttributeGroupTemplateID = null; public String TemplateAttributeID = null; public String getAttributeGroupTemplateID() { return AttributeGroupTemplateID; } public InventoryAttributeGroupTemplateAttributeGETRequest setAttributeGroupTemplateID(String value) { this.AttributeGroupTemplateID = value; return this; } public String getTemplateAttributeID() { return TemplateAttributeID; } public InventoryAttributeGroupTemplateAttributeGETRequest setTemplateAttributeID(String value) { this.TemplateAttributeID = value; return this; } private static Object responseType = InventoryAttributeGroupTemplateAttribute.class; public Object getResponseType() { return responseType; } } @Route(Path="/Inventory/AttributeGroupTemplates/{AttributeGroupTemplateID}/Attributes", Verbs="GET") @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="No inventory attribute group template with the AttributeTemplateID provided was found", StatusCode=404) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Read OK", StatusCode=200) public static class InventoryAttributeGroupTemplateAttributesGETManyRequest implements IReturn> { public String AttributeGroupTemplateID = null; public String getAttributeGroupTemplateID() { return AttributeGroupTemplateID; } public InventoryAttributeGroupTemplateAttributesGETManyRequest setAttributeGroupTemplateID(String value) { this.AttributeGroupTemplateID = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @Route(Path="/Inventory/AttributeGroupTemplates/{AttributeGroupTemplateID}/Attribute", Verbs="POST") @ApiResponse(Description="Created OK", StatusCode=201) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="No inventory attribute group template with the AttributeTemplateID provided was found", StatusCode=404) public static class InventoryAttributeGroupTemplateAttributePOSTRequest extends InventoryAttributeGroupTemplateAttribute implements IReturn { public String AttributeGroupTemplateID = null; public String getAttributeGroupTemplateID() { return AttributeGroupTemplateID; } public InventoryAttributeGroupTemplateAttributePOSTRequest setAttributeGroupTemplateID(String value) { this.AttributeGroupTemplateID = value; return this; } private static Object responseType = InventoryAttributeGroupTemplateAttribute.class; public Object getResponseType() { return responseType; } } @Route(Path="/Inventory/AttributeGroupTemplates/{AttributeGroupTemplateID}/Attributes/{TemplateAttributeID}", Verbs="PATCH") @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="No inventory attribute group template attribute with the AttributeTemplateID or AttributeGroupTemplateAttributeID provided was found", StatusCode=404) // @ApiResponse(Description="Updated OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) public static class InventoryAttributeGroupTemplateAttributePATCHRequest extends InventoryAttributeGroupTemplateAttribute implements IReturn { public String TemplateAttributeID = null; public String AttributeGroupTemplateID = null; public String getTemplateAttributeID() { return TemplateAttributeID; } public InventoryAttributeGroupTemplateAttributePATCHRequest setTemplateAttributeID(String value) { this.TemplateAttributeID = value; return this; } public String getAttributeGroupTemplateID() { return AttributeGroupTemplateID; } public InventoryAttributeGroupTemplateAttributePATCHRequest setAttributeGroupTemplateID(String value) { this.AttributeGroupTemplateID = value; return this; } private static Object responseType = InventoryAttributeGroupTemplateAttribute.class; public Object getResponseType() { return responseType; } } @Route(Path="/Inventory/AttributeGroupTemplates/{AttributeGroupTemplateID}/Attributes/{TemplateAttributeID}", Verbs="DELETE") @ApiResponse(Description="No inventory attribute group template attribute with the AttributeGroupTemplateAttributeID provided was found", StatusCode=404) // @ApiResponse(Description="Deleted OK", StatusCode=204) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class InventoryAttributeGroupTemplateAttributeDELETERequest extends InventoryAttributeGroupTemplateAttribute { public String TemplateAttributeID = null; public String getTemplateAttributeID() { return TemplateAttributeID; } public InventoryAttributeGroupTemplateAttributeDELETERequest setTemplateAttributeID(String value) { this.TemplateAttributeID = value; return this; } } @Route(Path="/Inventory/AttributeGroupTemplates/{AttributeGroupTemplateID}", Verbs="GET") @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="No inventory attribute group template with the AttributeGroupTemplateID provided was found", StatusCode=404) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class InventoryAttributeGroupTemplateGETRequest implements IReturn { public String AttributeGroupTemplateID = null; public String getAttributeGroupTemplateID() { return AttributeGroupTemplateID; } public InventoryAttributeGroupTemplateGETRequest setAttributeGroupTemplateID(String value) { this.AttributeGroupTemplateID = value; return this; } private static Object responseType = InventoryAttributeGroupTemplate.class; public Object getResponseType() { return responseType; } } @Route(Path="/Inventory/AttributeGroupTemplates", Verbs="POST") @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Created OK", StatusCode=201) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class InventoryAttributeGroupTemplatePOSTRequest extends InventoryAttributeGroupTemplate implements IReturn { private static Object responseType = InventoryAttributeGroupTemplate.class; public Object getResponseType() { return responseType; } } @Route(Path="/Inventory/AttributeGroupTemplates/{AttributeGroupTemplateID}", Verbs="PATCH") @ApiResponse(Description="No inventory attribute group template with the AttributeGroupTemplateID provided was found", StatusCode=404) // @ApiResponse(Description="Updated OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class InventoryAttributeGroupTemplatePATCHRequest extends InventoryAttributeGroupTemplate implements IReturn { public String AttributeGroupTemplateID = null; public String getAttributeGroupTemplateID() { return AttributeGroupTemplateID; } public InventoryAttributeGroupTemplatePATCHRequest setAttributeGroupTemplateID(String value) { this.AttributeGroupTemplateID = value; return this; } private static Object responseType = InventoryAttributeGroupTemplate.class; public Object getResponseType() { return responseType; } } @Route(Path="/Inventory/AttributeGroupTemplates/{AttributeGroupTemplateID}", Verbs="DELETE") @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="No classification with the AttributeGroupTemplateID provided was found", StatusCode=404) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Deleted OK", StatusCode=204) public static class InventoryAttributeGroupTemplateDELETERequest { public String AttributeGroupTemplateID = null; public String getAttributeGroupTemplateID() { return AttributeGroupTemplateID; } public InventoryAttributeGroupTemplateDELETERequest setAttributeGroupTemplateID(String value) { this.AttributeGroupTemplateID = value; return this; } } @Route(Path="/Inventory/{InventoryID}/AttributeGroups/{AttributeGroupID}", Verbs="GET") @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="No inventory attribute group with the InventoryID or RecID provided was found", StatusCode=404) // @ApiResponse(Description="Not authenticated", StatusCode=401) public static class InventoryAttributeGroupGETRequest implements IReturn { public String InventoryID = null; public String AttributeGroupID = null; public String getInventoryID() { return InventoryID; } public InventoryAttributeGroupGETRequest setInventoryID(String value) { this.InventoryID = value; return this; } public String getAttributeGroupID() { return AttributeGroupID; } public InventoryAttributeGroupGETRequest setAttributeGroupID(String value) { this.AttributeGroupID = value; return this; } private static Object responseType = InventoryAttributeGroup.class; public Object getResponseType() { return responseType; } } @Route(Path="/Inventory/{InventoryID}/AttributeGroups", Verbs="GET") @ApiResponse(Description="No inventory attribute group with the InventoryID or RecID provided was found", StatusCode=404) // @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class InventoryAttributeGroupsGETManyRequest implements IReturn> { public String InventoryID = null; public String getInventoryID() { return InventoryID; } public InventoryAttributeGroupsGETManyRequest setInventoryID(String value) { this.InventoryID = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @Route(Path="/Inventory/{InventoryID}/AttributeGroups", Verbs="POST") @ApiResponse(Description="No inventory attribute group with the InventoryID or RecID provided was found", StatusCode=404) // @ApiResponse(Description="Created OK", StatusCode=201) // @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="Not authenticated", StatusCode=401) public static class InventoryAttributeGroupPOSTRequest extends InventoryAttributeGroup implements IReturn { public String InventoryID = null; public String getInventoryID() { return InventoryID; } public InventoryAttributeGroupPOSTRequest setInventoryID(String value) { this.InventoryID = value; return this; } private static Object responseType = InventoryAttributeGroup.class; public Object getResponseType() { return responseType; } } @Route(Path="/Inventory/{InventoryID}/AttributeGroups/{AttributeGroupID}", Verbs="PATCH") @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="No inventory attribute group with the InventoryID or RecID provided was found", StatusCode=404) // @ApiResponse(Description="Updated OK", StatusCode=200) public static class InventoryAttributeGroupPATCHRequest extends InventoryAttributeGroup implements IReturn { public String InventoryID = null; public String AttributeGroupID = null; public String getInventoryID() { return InventoryID; } public InventoryAttributeGroupPATCHRequest setInventoryID(String value) { this.InventoryID = value; return this; } public String getAttributeGroupID() { return AttributeGroupID; } public InventoryAttributeGroupPATCHRequest setAttributeGroupID(String value) { this.AttributeGroupID = value; return this; } private static Object responseType = InventoryAttributeGroup.class; public Object getResponseType() { return responseType; } } @Route(Path="/Inventory/{InventoryID}/AttributeGroups/{AttributeGroupID}", Verbs="DELETE") @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="No inventory attribute group with the InventoryID or RecID provided was found", StatusCode=404) // @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="Deleted OK", StatusCode=204) public static class InventoryAttributeGroupDELETERequest extends InventoryAttributeGroup { public String InventoryID = null; public String AttributeGroupID = null; public String getInventoryID() { return InventoryID; } public InventoryAttributeGroupDELETERequest setInventoryID(String value) { this.InventoryID = value; return this; } public String getAttributeGroupID() { return AttributeGroupID; } public InventoryAttributeGroupDELETERequest setAttributeGroupID(String value) { this.AttributeGroupID = value; return this; } } @Route(Path="/Inventory/{InventoryID}/AttributeGroups/{AttributeGroupID}/AttributeValues/{AttributeID}", Verbs="GET") @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="No inventory attribute value with the InventoryID or RecID provided was found", StatusCode=404) // @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class InventoryAttributeValueGETRequest implements IReturn { public String InventoryID = null; public String AttributeGroupID = null; public String AttributeID = null; public String getInventoryID() { return InventoryID; } public InventoryAttributeValueGETRequest setInventoryID(String value) { this.InventoryID = value; return this; } public String getAttributeGroupID() { return AttributeGroupID; } public InventoryAttributeValueGETRequest setAttributeGroupID(String value) { this.AttributeGroupID = value; return this; } public String getAttributeID() { return AttributeID; } public InventoryAttributeValueGETRequest setAttributeID(String value) { this.AttributeID = value; return this; } private static Object responseType = InventoryAttributeGroupAttribute.class; public Object getResponseType() { return responseType; } } @Route(Path="/Inventory/{InventoryID}/AttributeGroups/{AttributeGroupID}/AttributeValues/{AttributeID}", Verbs="PATCH") @ApiResponse(Description="Updated OK", StatusCode=200) // @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="No inventory attribute value with the InventoryID or RecID provided was found", StatusCode=404) // @ApiResponse(Description="Not authenticated", StatusCode=401) public static class InventoryAttributeValuePATCHRequest extends InventoryAttributeGroupAttribute implements IReturn { public String InventoryID = null; public String AttributeGroupID = null; public String AttributeID = null; public String getInventoryID() { return InventoryID; } public InventoryAttributeValuePATCHRequest setInventoryID(String value) { this.InventoryID = value; return this; } public String getAttributeGroupID() { return AttributeGroupID; } public InventoryAttributeValuePATCHRequest setAttributeGroupID(String value) { this.AttributeGroupID = value; return this; } public String getAttributeID() { return AttributeID; } public InventoryAttributeValuePATCHRequest setAttributeID(String value) { this.AttributeID = value; return this; } private static Object responseType = InventoryAttributeGroupAttribute.class; public Object getResponseType() { return responseType; } } @Route(Path="/Inventory/{InventoryID}/Budgets/{LogicalWarehouseID}", Verbs="GET") @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="No budget with the InventoryID or LogicalWarehouseID provided was found", StatusCode=404) // @ApiResponse(Description="Not authenticated", StatusCode=401) public static class InventoryBudgetGETRequest implements IReturn { public Integer MonthIndex = null; public String InventoryID = null; public String LogicalWarehouseID = null; public Integer getMonthIndex() { return MonthIndex; } public InventoryBudgetGETRequest setMonthIndex(Integer value) { this.MonthIndex = value; return this; } public String getInventoryID() { return InventoryID; } public InventoryBudgetGETRequest setInventoryID(String value) { this.InventoryID = value; return this; } public String getLogicalWarehouseID() { return LogicalWarehouseID; } public InventoryBudgetGETRequest setLogicalWarehouseID(String value) { this.LogicalWarehouseID = value; return this; } private static Object responseType = InventoryBudget.class; public Object getResponseType() { return responseType; } } @Route(Path="/Inventory/{InventoryID}/Budgets", Verbs="GET") @ApiResponse(Description="No budgets with the InventoryID provided was found", StatusCode=404) // @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class InventoryBudgetsGETManyRequest implements IReturn> { public String InventoryID = null; public String LogicalWarehouseID = null; public String getInventoryID() { return InventoryID; } public InventoryBudgetsGETManyRequest setInventoryID(String value) { this.InventoryID = value; return this; } public String getLogicalWarehouseID() { return LogicalWarehouseID; } public InventoryBudgetsGETManyRequest setLogicalWarehouseID(String value) { this.LogicalWarehouseID = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @Route(Path="/Inventory/{InventoryID}/Budgets/{LogicalWarehouseID}", Verbs="PATCH") @ApiResponse(Description="No budget with the InventoryID or LogicalWarehouseID provided was found", StatusCode=404) // @ApiResponse(Description="Updated OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class InventoryBudgetPATCHRequest extends InventoryBudget implements IReturn { public Integer MonthIndex = null; public String InventoryID = null; public String LogicalWarehouseID = null; public Integer getMonthIndex() { return MonthIndex; } public InventoryBudgetPATCHRequest setMonthIndex(Integer value) { this.MonthIndex = value; return this; } public String getInventoryID() { return InventoryID; } public InventoryBudgetPATCHRequest setInventoryID(String value) { this.InventoryID = value; return this; } public String getLogicalWarehouseID() { return LogicalWarehouseID; } public InventoryBudgetPATCHRequest setLogicalWarehouseID(String value) { this.LogicalWarehouseID = value; return this; } private static Object responseType = InventoryBudget.class; public Object getResponseType() { return responseType; } } @Route(Path="/Inventory/Categories/{CategoryID}", Verbs="GET") @ApiResponse(Description="No inventory category with the CategoryID provided was found", StatusCode=404) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class InventoryCategoryGETRequest implements IReturn { public String CategoryID = null; public String getCategoryID() { return CategoryID; } public InventoryCategoryGETRequest setCategoryID(String value) { this.CategoryID = value; return this; } private static Object responseType = InventoryCategory.class; public Object getResponseType() { return responseType; } } @Route(Path="/Inventory/Categories", Verbs="POST") @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="Created OK", StatusCode=201) public static class InventoryCategoryPOSTRequest extends InventoryCategory implements IReturn { private static Object responseType = InventoryCategory.class; public Object getResponseType() { return responseType; } } @Route(Path="/Inventory/Categories/{CategoryID}", Verbs="PATCH") @ApiResponse(Description="No inventory category with the CategoryID provided was found", StatusCode=404) // @ApiResponse(Description="Updated OK", StatusCode=200) // @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="Not authenticated", StatusCode=401) public static class InventoryCategoryPATCHRequest extends InventoryCategory implements IReturn { public String CategoryID = null; public String getCategoryID() { return CategoryID; } public InventoryCategoryPATCHRequest setCategoryID(String value) { this.CategoryID = value; return this; } private static Object responseType = InventoryCategory.class; public Object getResponseType() { return responseType; } } @Route(Path="/Inventory/Categories/{CategoryID}", Verbs="DELETE") @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="No category with the CategoryID provided was found", StatusCode=404) // @ApiResponse(Description="Deleted OK", StatusCode=204) public static class InventoryCategoryDELETERequest { public String CategoryID = null; public String getCategoryID() { return CategoryID; } public InventoryCategoryDELETERequest setCategoryID(String value) { this.CategoryID = value; return this; } } @Route(Path="/Inventory/Classifications/{ClassificationID}", Verbs="GET") @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="No inventory classification with the ClassificationID provided was found", StatusCode=404) // @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) public static class InventoryClassificationGETRequest implements IReturn { public String ClassificationID = null; public String getClassificationID() { return ClassificationID; } public InventoryClassificationGETRequest setClassificationID(String value) { this.ClassificationID = value; return this; } private static Object responseType = InventoryClassification.class; public Object getResponseType() { return responseType; } } @Route(Path="/Inventory/Classifications", Verbs="POST") @ApiResponse(Description="Created OK", StatusCode=201) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class InventoryClassificationPOSTRequest extends InventoryClassification implements IReturn { private static Object responseType = InventoryClassification.class; public Object getResponseType() { return responseType; } } @Route(Path="/Inventory/Classifications/{ClassificationID}", Verbs="PATCH") @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="No inventory classification with the ClassificationID provided was found", StatusCode=404) // @ApiResponse(Description="Updated OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) public static class InventoryClassificationPATCHRequest extends InventoryClassification implements IReturn { public String ClassificationID = null; public String getClassificationID() { return ClassificationID; } public InventoryClassificationPATCHRequest setClassificationID(String value) { this.ClassificationID = value; return this; } private static Object responseType = InventoryClassification.class; public Object getResponseType() { return responseType; } } @Route(Path="/Inventory/Classifications/{ClassificationID}", Verbs="DELETE") @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="No classification with the ClassificationID provided was found", StatusCode=404) // @ApiResponse(Description="Deleted OK", StatusCode=204) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class InventoryClassificationDELETERequest { public String ClassificationID = null; public String getClassificationID() { return ClassificationID; } public InventoryClassificationDELETERequest setClassificationID(String value) { this.ClassificationID = value; return this; } } @Route(Path="/Inventory/{InventoryID}/Components/{ComponentID}", Verbs="GET") @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="No component with the InventoryID or RecID provided was found", StatusCode=404) // @ApiResponse(Description="Read OK", StatusCode=200) public static class InventoryComponentGETRequest implements IReturn { public String InventoryID = null; public String ComponentID = null; public String getInventoryID() { return InventoryID; } public InventoryComponentGETRequest setInventoryID(String value) { this.InventoryID = value; return this; } public String getComponentID() { return ComponentID; } public InventoryComponentGETRequest setComponentID(String value) { this.ComponentID = value; return this; } private static Object responseType = InventoryComponent.class; public Object getResponseType() { return responseType; } } @Route(Path="/Inventory/{InventoryID}/Components", Verbs="GET") @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="No component with the InventoryID or RecID provided was found", StatusCode=404) // @ApiResponse(Description="Read OK", StatusCode=200) public static class InventoryComponentsGETManyRequest implements IReturn> { public String InventoryID = null; public String getInventoryID() { return InventoryID; } public InventoryComponentsGETManyRequest setInventoryID(String value) { this.InventoryID = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @Route(Path="/Inventory/{InventoryID}/Components", Verbs="POST") @ApiResponse(Description="Created OK", StatusCode=201) // @ApiResponse(Description="No component with the InventoryID or RecID provided was found", StatusCode=404) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class InventoryComponentPOSTRequest extends InventoryComponent implements IReturn { public String InventoryID = null; public String getInventoryID() { return InventoryID; } public InventoryComponentPOSTRequest setInventoryID(String value) { this.InventoryID = value; return this; } private static Object responseType = InventoryComponent.class; public Object getResponseType() { return responseType; } } @Route(Path="/Inventory/{InventoryID}/Components/{ComponentID}", Verbs="PATCH") @ApiResponse(Description="Updated OK", StatusCode=200) // @ApiResponse(Description="No component with the InventoryID or RecID provided was found", StatusCode=404) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class InventoryComponentPATCHRequest extends InventoryComponent implements IReturn { public String InventoryID = null; public String ComponentID = null; public String getInventoryID() { return InventoryID; } public InventoryComponentPATCHRequest setInventoryID(String value) { this.InventoryID = value; return this; } public String getComponentID() { return ComponentID; } public InventoryComponentPATCHRequest setComponentID(String value) { this.ComponentID = value; return this; } private static Object responseType = InventoryComponent.class; public Object getResponseType() { return responseType; } } @Route(Path="/Inventory/{InventoryID}/Components/{ComponentID}", Verbs="DELETE") @ApiResponse(Description="No component with the InventoryID or RecID provided was found", StatusCode=404) // @ApiResponse(Description="Deleted OK", StatusCode=204) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class InventoryComponentDELETERequest extends InventoryComponent { public String InventoryID = null; public String ComponentID = null; public String getInventoryID() { return InventoryID; } public InventoryComponentDELETERequest setInventoryID(String value) { this.InventoryID = value; return this; } public String getComponentID() { return ComponentID; } public InventoryComponentDELETERequest setComponentID(String value) { this.ComponentID = value; return this; } } @Route(Path="/Inventory/{InventoryID}/CustomFieldValues/{SettingID}", Verbs="GET") @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="No inventory custom field value with the InventoryID or SettingID provided was found", StatusCode=404) // @ApiResponse(Description="Not authenticated", StatusCode=401) public static class InventoryCustomFieldValueGETRequest implements IReturn { public String InventoryID = null; public String SettingID = null; public String getInventoryID() { return InventoryID; } public InventoryCustomFieldValueGETRequest setInventoryID(String value) { this.InventoryID = value; return this; } public String getSettingID() { return SettingID; } public InventoryCustomFieldValueGETRequest setSettingID(String value) { this.SettingID = value; return this; } private static Object responseType = CustomFieldValue.class; public Object getResponseType() { return responseType; } } @Route(Path="/Inventory/{InventoryID}/CustomFieldValues/{SettingID}", Verbs="PATCH") @ApiResponse(Description="Updated OK", StatusCode=200) // @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="No inventory custom field value with the InventoryID or SettingID provided was found", StatusCode=404) // @ApiResponse(Description="Not authenticated", StatusCode=401) public static class InventoryCustomFieldValuePATCHRequest extends CustomFieldValue implements IReturn { public String InventoryID = null; public String SettingID = null; public String getInventoryID() { return InventoryID; } public InventoryCustomFieldValuePATCHRequest setInventoryID(String value) { this.InventoryID = value; return this; } public String getSettingID() { return SettingID; } public InventoryCustomFieldValuePATCHRequest setSettingID(String value) { this.SettingID = value; return this; } private static Object responseType = CustomFieldValue.class; public Object getResponseType() { return responseType; } } @Route(Path="/Inventory/CustomFields", Verbs="GET") @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class InventoryCustomFieldsGETManyRequest implements IReturn> { private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @Route(Path="/Inventory/{InventoryID}/CustomFieldValues", Verbs="GET") @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="No inventory item with the InventoryID provided was found", StatusCode=404) // @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) public static class InventoryCustomFieldValuesGETManyRequest implements IReturn> { public String InventoryID = null; public String getInventoryID() { return InventoryID; } public InventoryCustomFieldValuesGETManyRequest setInventoryID(String value) { this.InventoryID = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @Route(Path="/Inventory/DocumentTypes/{DocumentTypeID}", Verbs="GET") @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="No inventory document type with the DocumentTypeID provided was found", StatusCode=404) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class InventoryDocumentTypeGETRequest implements IReturn { public String DocumentTypeID = null; public String getDocumentTypeID() { return DocumentTypeID; } public InventoryDocumentTypeGETRequest setDocumentTypeID(String value) { this.DocumentTypeID = value; return this; } private static Object responseType = DocumentType.class; public Object getResponseType() { return responseType; } } @Route(Path="/Inventory/DocumentTypes", Verbs="GET") @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class InventoryDocumentTypesGETManyRequest implements IReturn> { private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @Route(Path="/Inventory/DocumentTypes", Verbs="POST") @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Created OK", StatusCode=201) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class InventoryDocumentTypePOSTRequest extends DocumentType implements IReturn { private static Object responseType = DocumentType.class; public Object getResponseType() { return responseType; } } @Route(Path="/Inventory/DocumentTypes/{DocumentTypeID}", Verbs="PATCH") @ApiResponse(Description="No inventory document type with the DocumentTypeID provided was found", StatusCode=404) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="Updated OK", StatusCode=200) public static class InventoryDocumentTypePATCHRequest extends DocumentType implements IReturn { public String DocumentTypeID = null; public String getDocumentTypeID() { return DocumentTypeID; } public InventoryDocumentTypePATCHRequest setDocumentTypeID(String value) { this.DocumentTypeID = value; return this; } private static Object responseType = DocumentType.class; public Object getResponseType() { return responseType; } } @Route(Path="/Inventory/DocumentTypes/{DocumentTypeID}", Verbs="DELETE") @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="No inventory document type with the DocumentTypeID provided was found", StatusCode=404) // @ApiResponse(Description="Deleted OK", StatusCode=204) public static class InventoryDocumentTypeDELETERequest { public String DocumentTypeID = null; public String getDocumentTypeID() { return DocumentTypeID; } public InventoryDocumentTypeDELETERequest setDocumentTypeID(String value) { this.DocumentTypeID = value; return this; } } @Route(Path="/Inventory/{InventoryID}/Documents/{DocumentID}", Verbs="GET") @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="No inventory Document with the InventoryID or DocumentID provided was found", StatusCode=404) public static class InventoryDocumentGETRequest implements IReturn { public String InventoryID = null; public String DocumentID = null; public String getInventoryID() { return InventoryID; } public InventoryDocumentGETRequest setInventoryID(String value) { this.InventoryID = value; return this; } public String getDocumentID() { return DocumentID; } public InventoryDocumentGETRequest setDocumentID(String value) { this.DocumentID = value; return this; } private static Object responseType = Document.class; public Object getResponseType() { return responseType; } } @Route(Path="/Inventory/{InventoryID}/Documents", Verbs="GET") @ApiResponse(Description="Read Ok", StatusCode=200) // @ApiResponse(Description="No inventory with the InventoryID provided was found", StatusCode=404) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class InventoryDocumentsGETManyRequest implements IReturn> { public String InventoryID = null; public String getInventoryID() { return InventoryID; } public InventoryDocumentsGETManyRequest setInventoryID(String value) { this.InventoryID = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @Route(Path="/Inventory/{InventoryID}/Documents", Verbs="POST") @ApiResponse(Description="No inventory with the InventoryID provided was found", StatusCode=404) // @ApiResponse(Description="Created OK", StatusCode=201) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class InventoryDocumentPOSTRequest extends Document implements IReturn { public String InventoryID = null; public String getInventoryID() { return InventoryID; } public InventoryDocumentPOSTRequest setInventoryID(String value) { this.InventoryID = value; return this; } private static Object responseType = Document.class; public Object getResponseType() { return responseType; } } @Route(Path="/Inventory/{InventoryID}/Documents/{DocumentID}", Verbs="PATCH") @ApiResponse(Description="Updated OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="No inventory with the InventoryID provided was found", StatusCode=404) public static class InventoryDocumentPATCHRequest extends Document implements IReturn { public String InventoryID = null; public String DocumentID = null; public String getInventoryID() { return InventoryID; } public InventoryDocumentPATCHRequest setInventoryID(String value) { this.InventoryID = value; return this; } public String getDocumentID() { return DocumentID; } public InventoryDocumentPATCHRequest setDocumentID(String value) { this.DocumentID = value; return this; } private static Object responseType = Document.class; public Object getResponseType() { return responseType; } } @Route(Path="/Inventory/{InventoryID}/Documents/{DocumentID}", Verbs="DELETE") @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="No inventory with the InventoryID provided was found", StatusCode=404) // @ApiResponse(Description="Deleted OK", StatusCode=204) // @ApiResponse(Description="Not authenticated", StatusCode=401) public static class InventoryDocumentDELETERequest { public String InventoryID = null; public String DocumentID = null; public String getInventoryID() { return InventoryID; } public InventoryDocumentDELETERequest setInventoryID(String value) { this.InventoryID = value; return this; } public String getDocumentID() { return DocumentID; } public InventoryDocumentDELETERequest setDocumentID(String value) { this.DocumentID = value; return this; } } @Route(Path="/Inventory/{InventoryID}/Ledgers/{Name}", Verbs="GET") @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="No inventory ledger with the InventoryID or Name provided was found", StatusCode=404) // @ApiResponse(Description="Not authenticated", StatusCode=401) public static class InventoryLedgerGETRequest implements IReturn { public String InventoryID = null; public String Name = null; public String getInventoryID() { return InventoryID; } public InventoryLedgerGETRequest setInventoryID(String value) { this.InventoryID = value; return this; } public String getName() { return Name; } public InventoryLedgerGETRequest setName(String value) { this.Name = value; return this; } private static Object responseType = InventoryLedger.class; public Object getResponseType() { return responseType; } } @Route(Path="/Inventory/{InventoryID}/Ledgers", Verbs="GET") @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="No inventory ledger with the InventoryID provided was found", StatusCode=404) // @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="Not authenticated", StatusCode=401) public static class InventoryLedgersGETManyRequest implements IReturn> { public String InventoryID = null; public String getInventoryID() { return InventoryID; } public InventoryLedgersGETManyRequest setInventoryID(String value) { this.InventoryID = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @Route(Path="/Inventory/{InventoryID}/Ledgers/{Name}", Verbs="PATCH") @ApiResponse(Description="Updated OK", StatusCode=200) // @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="No inventory ledger with the InventoryID or Name provided was found", StatusCode=404) public static class InventoryLedgerPATCHRequest extends InventoryLedger implements IReturn { public String InventoryID = null; public String Name = null; public String getInventoryID() { return InventoryID; } public InventoryLedgerPATCHRequest setInventoryID(String value) { this.InventoryID = value; return this; } public String getName() { return Name; } public InventoryLedgerPATCHRequest setName(String value) { this.Name = value; return this; } private static Object responseType = InventoryLedger.class; public Object getResponseType() { return responseType; } } @Route(Path="/Inventory/NoteTypes/{NoteTypeID}", Verbs="GET") @ApiResponse(Description="No inventory note type with the NoteTypeID provided was found", StatusCode=404) // @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class InventoryNoteTypeGETRequest implements IReturn { public String NoteTypeID = null; public String getNoteTypeID() { return NoteTypeID; } public InventoryNoteTypeGETRequest setNoteTypeID(String value) { this.NoteTypeID = value; return this; } private static Object responseType = NoteType.class; public Object getResponseType() { return responseType; } } @Route(Path="/Inventory/NoteTypes", Verbs="GET") @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class InventoryNoteTypesGETManyRequest implements IReturn> { private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @Route(Path="/Inventory/NoteTypes", Verbs="POST") @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="Created OK", StatusCode=201) // @ApiResponse(Description="Not authenticated", StatusCode=401) public static class InventoryNoteTypePOSTRequest extends NoteType implements IReturn { private static Object responseType = NoteType.class; public Object getResponseType() { return responseType; } } @Route(Path="/Inventory/NoteTypes/{NoteTypeID}", Verbs="PATCH") @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="No inventory note type with the NoteTypeID provided was found", StatusCode=404) // @ApiResponse(Description="Updated OK", StatusCode=200) public static class InventoryNoteTypePATCHRequest extends NoteType implements IReturn { public String NoteTypeID = null; public String getNoteTypeID() { return NoteTypeID; } public InventoryNoteTypePATCHRequest setNoteTypeID(String value) { this.NoteTypeID = value; return this; } private static Object responseType = NoteType.class; public Object getResponseType() { return responseType; } } @Route(Path="/Inventory/NoteTypes/{NoteTypeID}", Verbs="DELETE") @ApiResponse(Description="No inventory note type with the NoteTypeID provided was found", StatusCode=404) // @ApiResponse(Description="Deleted OK", StatusCode=204) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class InventoryNoteTypeDELETERequest { public String NoteTypeID = null; public String getNoteTypeID() { return NoteTypeID; } public InventoryNoteTypeDELETERequest setNoteTypeID(String value) { this.NoteTypeID = value; return this; } } @Route(Path="/Inventory/{InventoryID}/Notes/{NoteID}", Verbs="GET") @ApiResponse(Description="No inventory Note with the InventoryID or NoteID provided was found", StatusCode=404) // @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) public static class InventoryNoteGETRequest implements IReturn { public String InventoryID = null; public String NoteID = null; public String getInventoryID() { return InventoryID; } public InventoryNoteGETRequest setInventoryID(String value) { this.InventoryID = value; return this; } public String getNoteID() { return NoteID; } public InventoryNoteGETRequest setNoteID(String value) { this.NoteID = value; return this; } private static Object responseType = Note.class; public Object getResponseType() { return responseType; } } @Route(Path="/Inventory/{InventoryID}/Notes", Verbs="GET") @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="No inventory with the InventoryID provided was found", StatusCode=404) public static class InventoryNotesGETManyRequest implements IReturn> { public String InventoryID = null; public String getInventoryID() { return InventoryID; } public InventoryNotesGETManyRequest setInventoryID(String value) { this.InventoryID = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @Route(Path="/Inventory/{InventoryID}/Notes", Verbs="POST") @ApiResponse(Description="Created OK", StatusCode=201) // @ApiResponse(Description="No inventory with the InventoryID provided was found", StatusCode=404) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class InventoryNotePOSTRequest extends Note implements IReturn { public String InventoryID = null; public String getInventoryID() { return InventoryID; } public InventoryNotePOSTRequest setInventoryID(String value) { this.InventoryID = value; return this; } private static Object responseType = Note.class; public Object getResponseType() { return responseType; } } @Route(Path="/Inventory/{InventoryID}/Notes/{NoteID}", Verbs="PATCH") @ApiResponse(Description="Updated OK", StatusCode=200) // @ApiResponse(Description="No inventory with the InventoryID provided was found", StatusCode=404) // @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="Not authenticated", StatusCode=401) public static class InventoryNotePATCHRequest extends Note implements IReturn { public String InventoryID = null; public String NoteID = null; public String getInventoryID() { return InventoryID; } public InventoryNotePATCHRequest setInventoryID(String value) { this.InventoryID = value; return this; } public String getNoteID() { return NoteID; } public InventoryNotePATCHRequest setNoteID(String value) { this.NoteID = value; return this; } private static Object responseType = Note.class; public Object getResponseType() { return responseType; } } @Route(Path="/Inventory/{InventoryID}/Notes/{NoteID}", Verbs="DELETE") @ApiResponse(Description="No inventory with the InventoryID provided was found", StatusCode=404) // @ApiResponse(Description="Deleted OK", StatusCode=204) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class InventoryNoteDELETERequest { public String InventoryID = null; public String NoteID = null; public String getInventoryID() { return InventoryID; } public InventoryNoteDELETERequest setInventoryID(String value) { this.InventoryID = value; return this; } public String getNoteID() { return NoteID; } public InventoryNoteDELETERequest setNoteID(String value) { this.NoteID = value; return this; } } @Route(Path="/Inventory/{InventoryID}/OrderLevels/{LogicalWarehouseID}/Periods/{PeriodNo}", Verbs="GET") @ApiResponse(Description="No order level with the OrderLevelID provided was found", StatusCode=404) // @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class InventoryOrderLevelGETRequest implements IReturn { public String LogicalWarehouseID = null; public String InventoryID = null; public Integer PeriodNo = null; public String getLogicalWarehouseID() { return LogicalWarehouseID; } public InventoryOrderLevelGETRequest setLogicalWarehouseID(String value) { this.LogicalWarehouseID = value; return this; } public String getInventoryID() { return InventoryID; } public InventoryOrderLevelGETRequest setInventoryID(String value) { this.InventoryID = value; return this; } public Integer getPeriodNo() { return PeriodNo; } public InventoryOrderLevelGETRequest setPeriodNo(Integer value) { this.PeriodNo = value; return this; } private static Object responseType = InventoryOrderLevel.class; public Object getResponseType() { return responseType; } } @Route(Path="/Inventory/{InventoryID}/OrderLevels", Verbs="GET") @ApiResponse(Description="No order levels with the InventoryID provided was found", StatusCode=404) // @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) public static class InventoryOrderLevelsGETManyRequest implements IReturn> { public String InventoryID = null; public String getInventoryID() { return InventoryID; } public InventoryOrderLevelsGETManyRequest setInventoryID(String value) { this.InventoryID = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @Route(Path="/Inventory/{InventoryID}/OrderLevels/{LogicalWarehouseID}/Periods/{PeriodNo}", Verbs="PATCH") @ApiResponse(Description="No order level with the InventoryID or LogicalWarehouseID provided was found", StatusCode=404) // @ApiResponse(Description="Updated OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class InventoryOrderLevelPATCHRequest extends InventoryOrderLevel implements IReturn { public String LogicalWarehouseID = null; public String InventoryID = null; public Integer PeriodNo = null; public String getLogicalWarehouseID() { return LogicalWarehouseID; } public InventoryOrderLevelPATCHRequest setLogicalWarehouseID(String value) { this.LogicalWarehouseID = value; return this; } public String getInventoryID() { return InventoryID; } public InventoryOrderLevelPATCHRequest setInventoryID(String value) { this.InventoryID = value; return this; } public Integer getPeriodNo() { return PeriodNo; } public InventoryOrderLevelPATCHRequest setPeriodNo(Integer value) { this.PeriodNo = value; return this; } private static Object responseType = InventoryOrderLevel.class; public Object getResponseType() { return responseType; } } @Route(Path="/Inventory/{InventoryID}/OtherDescriptions/{OtherDescriptionID}", Verbs="GET") @ApiResponse(Description="No inventory other description with the InventoryID or OtherDescriptionID provided was found", StatusCode=404) // @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) public static class InventoryOtherDescriptionGETRequest implements IReturn { public String InventoryID = null; public String OtherDescriptionID = null; public String getInventoryID() { return InventoryID; } public InventoryOtherDescriptionGETRequest setInventoryID(String value) { this.InventoryID = value; return this; } public String getOtherDescriptionID() { return OtherDescriptionID; } public InventoryOtherDescriptionGETRequest setOtherDescriptionID(String value) { this.OtherDescriptionID = value; return this; } private static Object responseType = InventoryOtherDescription.class; public Object getResponseType() { return responseType; } } @Route(Path="/Inventory/{InventoryID}/OtherDescriptions", Verbs="GET") @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="No inventory other descriptions with the InventoryID provided was found", StatusCode=404) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class InventoryOtherDescriptionsGETManyRequest implements IReturn> { public String InventoryID = null; public String getInventoryID() { return InventoryID; } public InventoryOtherDescriptionsGETManyRequest setInventoryID(String value) { this.InventoryID = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @Route(Path="/Inventory/{InventoryID}/OtherDescriptions", Verbs="POST") @ApiResponse(Description="Created OK", StatusCode=201) // @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="No inventory other description with the InventoryID provided was found", StatusCode=404) // @ApiResponse(Description="Not authenticated", StatusCode=401) public static class InventoryOtherDescriptionPOSTRequest extends InventoryOtherDescription implements IReturn { public String InventoryID = null; public String getInventoryID() { return InventoryID; } public InventoryOtherDescriptionPOSTRequest setInventoryID(String value) { this.InventoryID = value; return this; } private static Object responseType = InventoryOtherDescription.class; public Object getResponseType() { return responseType; } } @Route(Path="/Inventory/{InventoryID}/OtherDescriptions/{OtherDescriptionID}", Verbs="PATCH") @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="Updated OK", StatusCode=200) // @ApiResponse(Description="No inventory other description with the InventoryID or OtherDescriptionID provided was found", StatusCode=404) public static class InventoryOtherDescriptionPATCHRequest extends InventoryOtherDescription implements IReturn { public String InventoryID = null; public String OtherDescriptionID = null; public String getInventoryID() { return InventoryID; } public InventoryOtherDescriptionPATCHRequest setInventoryID(String value) { this.InventoryID = value; return this; } public String getOtherDescriptionID() { return OtherDescriptionID; } public InventoryOtherDescriptionPATCHRequest setOtherDescriptionID(String value) { this.OtherDescriptionID = value; return this; } private static Object responseType = InventoryOtherDescription.class; public Object getResponseType() { return responseType; } } @Route(Path="/Inventory/{InventoryID}/OtherDescriptions/{OtherDescriptionID}", Verbs="DELETE") @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="No inventory other description with the InventoryID or OtherDescriptionID provided was found", StatusCode=404) // @ApiResponse(Description="Deleted OK", StatusCode=204) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class InventoryOtherDescriptionDELETERequest extends InventoryOtherDescription { public String InventoryID = null; public String OtherDescriptionID = null; public String getInventoryID() { return InventoryID; } public InventoryOtherDescriptionDELETERequest setInventoryID(String value) { this.InventoryID = value; return this; } public String getOtherDescriptionID() { return OtherDescriptionID; } public InventoryOtherDescriptionDELETERequest setOtherDescriptionID(String value) { this.OtherDescriptionID = value; return this; } } @Route(Path="/Inventory/{InventoryID}/Pricing/{DebtorID}/{IN_LogicalID}/{Date}/{Quantity}", Verbs="GET") @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) public static class InventoryPriceGETRequest implements IReturn { public String InventoryID = null; public String DebtorID = null; public String IN_LogicalID = null; public Date Date = null; public BigDecimal Quantity = null; public String getInventoryID() { return InventoryID; } public InventoryPriceGETRequest setInventoryID(String value) { this.InventoryID = value; return this; } public String getDebtorID() { return DebtorID; } public InventoryPriceGETRequest setDebtorID(String value) { this.DebtorID = value; return this; } public String getInLogicalID() { return IN_LogicalID; } public InventoryPriceGETRequest setInLogicalID(String value) { this.IN_LogicalID = value; return this; } public Date getDate() { return Date; } public InventoryPriceGETRequest setDate(Date value) { this.Date = value; return this; } public BigDecimal getQuantity() { return Quantity; } public InventoryPriceGETRequest setQuantity(BigDecimal value) { this.Quantity = value; return this; } private static Object responseType = InventoryPriceGETResponse.class; public Object getResponseType() { return responseType; } } @Route(Path="/Inventory/{InventoryID}/DebtorSpecificPrices/{DebtorSpecificPriceID}", Verbs="GET") @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="No debtor specific price with the InventoryID or LogicalWarehouseID provided was found", StatusCode=404) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class InventoryDebtorSpecificPriceGETRequest implements IReturn { public String InventoryID = null; public String DebtorSpecificPriceID = null; public String getInventoryID() { return InventoryID; } public InventoryDebtorSpecificPriceGETRequest setInventoryID(String value) { this.InventoryID = value; return this; } public String getDebtorSpecificPriceID() { return DebtorSpecificPriceID; } public InventoryDebtorSpecificPriceGETRequest setDebtorSpecificPriceID(String value) { this.DebtorSpecificPriceID = value; return this; } private static Object responseType = InventoryDebtorPrice.class; public Object getResponseType() { return responseType; } } @Route(Path="/Inventory/{InventoryID}/DebtorSpecificPrices", Verbs="GET") @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="No debtor specific prices with the InventoryID provided was found", StatusCode=404) // @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) public static class InventoryDebtorSpecificPricesGETManyRequest implements IReturn> { public String InventoryID = null; public String getInventoryID() { return InventoryID; } public InventoryDebtorSpecificPricesGETManyRequest setInventoryID(String value) { this.InventoryID = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @Route(Path="/Inventory/{InventoryID}/DebtorSpecificPrices", Verbs="POST") @ApiResponse(Description="No inventory item with the InventoryID provided was found", StatusCode=404) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="Created OK", StatusCode=201) public static class InventoryDebtorSpecificPricePOSTRequest extends InventoryDebtorPrice implements IReturn { public String InventoryID = null; public String DebtorID = null; public String getInventoryID() { return InventoryID; } public InventoryDebtorSpecificPricePOSTRequest setInventoryID(String value) { this.InventoryID = value; return this; } public String getDebtorID() { return DebtorID; } public InventoryDebtorSpecificPricePOSTRequest setDebtorID(String value) { this.DebtorID = value; return this; } private static Object responseType = InventoryDebtorPrice.class; public Object getResponseType() { return responseType; } } @Route(Path="/Inventory/{InventoryID}/DebtorSpecificPrices/{DebtorSpecificPriceID}", Verbs="PATCH") @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="No debtor specific price with the InventoryID or DebtorSpecificPriceID provided was found", StatusCode=404) // @ApiResponse(Description="Updated OK", StatusCode=200) public static class InventoryDebtorSpecificPricePATCHRequest extends InventoryDebtorPrice implements IReturn { public String InventoryID = null; public String DebtorSpecificPriceID = null; public String getInventoryID() { return InventoryID; } public InventoryDebtorSpecificPricePATCHRequest setInventoryID(String value) { this.InventoryID = value; return this; } public String getDebtorSpecificPriceID() { return DebtorSpecificPriceID; } public InventoryDebtorSpecificPricePATCHRequest setDebtorSpecificPriceID(String value) { this.DebtorSpecificPriceID = value; return this; } private static Object responseType = InventoryDebtorPrice.class; public Object getResponseType() { return responseType; } } @Route(Path="/Inventory/{InventoryID}/DebtorSpecificPrices/{DebtorSpecificPriceID}", Verbs="DELETE") @ApiResponse(Description="Deleted OK", StatusCode=204) // @ApiResponse(Description="No debtor specific price with the InventoryID or InventoryID DebtorSpecificPriceID was found", StatusCode=404) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class InventoryDebtorSpecificPriceDELETERequest extends InventoryDebtorPrice { public String InventoryID = null; public String DebtorSpecificPriceID = null; public String getInventoryID() { return InventoryID; } public InventoryDebtorSpecificPriceDELETERequest setInventoryID(String value) { this.InventoryID = value; return this; } public String getDebtorSpecificPriceID() { return DebtorSpecificPriceID; } public InventoryDebtorSpecificPriceDELETERequest setDebtorSpecificPriceID(String value) { this.DebtorSpecificPriceID = value; return this; } } @Route(Path="/Inventory/{InventoryID}/DebtorClassificationPrices/{DebtorClassificationPriceID}", Verbs="GET") @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="No debtor classification price with the InventoryID or LogicalWarehouseID provided was found", StatusCode=404) // @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="Read OK", StatusCode=200) public static class InventoryDebtorClassificationPriceGETRequest implements IReturn { public String InventoryID = null; public String DebtorClassificationPriceID = null; public String getInventoryID() { return InventoryID; } public InventoryDebtorClassificationPriceGETRequest setInventoryID(String value) { this.InventoryID = value; return this; } public String getDebtorClassificationPriceID() { return DebtorClassificationPriceID; } public InventoryDebtorClassificationPriceGETRequest setDebtorClassificationPriceID(String value) { this.DebtorClassificationPriceID = value; return this; } private static Object responseType = InventoryDebtorClassificationPrice.class; public Object getResponseType() { return responseType; } } @Route(Path="/Inventory/{InventoryID}/DebtorClassificationPrices", Verbs="GET") @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="No debtor classification prices with the InventoryID provided was found", StatusCode=404) // @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) public static class InventoryDebtorClassificationPricesGETManyRequest implements IReturn> { public String InventoryID = null; public String getInventoryID() { return InventoryID; } public InventoryDebtorClassificationPricesGETManyRequest setInventoryID(String value) { this.InventoryID = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @Route(Path="/Inventory/{InventoryID}/DebtorClassificationPrices", Verbs="POST") @ApiResponse(Description="No inventory item with the InventoryID provided was found", StatusCode=404) // @ApiResponse(Description="Created OK", StatusCode=201) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class InventoryDebtorClassificationPricePOSTRequest extends InventoryDebtorClassificationPrice implements IReturn { public String InventoryID = null; public String DebtorClassificationPriceID = null; public String getInventoryID() { return InventoryID; } public InventoryDebtorClassificationPricePOSTRequest setInventoryID(String value) { this.InventoryID = value; return this; } public String getDebtorClassificationPriceID() { return DebtorClassificationPriceID; } public InventoryDebtorClassificationPricePOSTRequest setDebtorClassificationPriceID(String value) { this.DebtorClassificationPriceID = value; return this; } private static Object responseType = InventoryDebtorClassificationPrice.class; public Object getResponseType() { return responseType; } } @Route(Path="/Inventory/{InventoryID}/DebtorClassificationPrices/{DebtorClassificationPriceID}", Verbs="PATCH") @ApiResponse(Description="No debtor classification price with the InventoryID or LogicalWarehouseID provided was found", StatusCode=404) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="Updated OK", StatusCode=200) public static class InventoryDebtorClassificationPricePATCHRequest extends InventoryDebtorClassificationPrice implements IReturn { public String InventoryID = null; public String DebtorClassificationPriceID = null; public String getInventoryID() { return InventoryID; } public InventoryDebtorClassificationPricePATCHRequest setInventoryID(String value) { this.InventoryID = value; return this; } public String getDebtorClassificationPriceID() { return DebtorClassificationPriceID; } public InventoryDebtorClassificationPricePATCHRequest setDebtorClassificationPriceID(String value) { this.DebtorClassificationPriceID = value; return this; } private static Object responseType = InventoryDebtorClassificationPrice.class; public Object getResponseType() { return responseType; } } @Route(Path="/Inventory/{InventoryID}/DebtorClassificationPrices/{DebtorClassificationPriceID}", Verbs="DELETE") @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="No DebtorClassificationPrice with the DebtorClassificationPriceID or InventoryID provided was found", StatusCode=404) // @ApiResponse(Description="Deleted OK", StatusCode=204) public static class InventoryDebtorClassificationPriceDELETERequest extends InventoryDebtorClassificationPrice { public String InventoryID = null; public String DebtorClassificationPriceID = null; public String getInventoryID() { return InventoryID; } public InventoryDebtorClassificationPriceDELETERequest setInventoryID(String value) { this.InventoryID = value; return this; } public String getDebtorClassificationPriceID() { return DebtorClassificationPriceID; } public InventoryDebtorClassificationPriceDELETERequest setDebtorClassificationPriceID(String value) { this.DebtorClassificationPriceID = value; return this; } } @Route(Path="/Inventory/{InventoryID}/DebtorPriceGroupPrices/{DebtorPriceGroupInventorySpecificID}", Verbs="GET") @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="No debtor price group price with the InventoryID or LogicalWarehouseID provided was found", StatusCode=404) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class InventoryDebtorPriceGroupPriceGETRequest implements IReturn { public String InventoryID = null; public String DebtorPriceGroupInventorySpecificID = null; public String getInventoryID() { return InventoryID; } public InventoryDebtorPriceGroupPriceGETRequest setInventoryID(String value) { this.InventoryID = value; return this; } public String getDebtorPriceGroupInventorySpecificID() { return DebtorPriceGroupInventorySpecificID; } public InventoryDebtorPriceGroupPriceGETRequest setDebtorPriceGroupInventorySpecificID(String value) { this.DebtorPriceGroupInventorySpecificID = value; return this; } private static Object responseType = InventoryDebtorPriceGroupInventorySpecific.class; public Object getResponseType() { return responseType; } } @Route(Path="/Inventory/{InventoryID}/DebtorPriceGroupPrices", Verbs="GET") @ApiResponse(Description="No debtor price group prices with the InventoryID provided was found", StatusCode=404) // @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class InventoryDebtorPriceGroupPricesGETManyRequest implements IReturn> { public String InventoryID = null; public String getInventoryID() { return InventoryID; } public InventoryDebtorPriceGroupPricesGETManyRequest setInventoryID(String value) { this.InventoryID = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @Route(Path="/Inventory/{InventoryID}/DebtorPriceGroupPrices", Verbs="POST") @ApiResponse(Description="Created OK", StatusCode=201) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="No inventory item with the InventoryID provided was found", StatusCode=404) public static class InventoryDebtorPriceGroupPricePOSTRequest extends InventoryDebtorPriceGroupInventorySpecific implements IReturn { public String InventoryID = null; public String DebtorPriceGroupInventorySpecificID = null; public String getInventoryID() { return InventoryID; } public InventoryDebtorPriceGroupPricePOSTRequest setInventoryID(String value) { this.InventoryID = value; return this; } public String getDebtorPriceGroupInventorySpecificID() { return DebtorPriceGroupInventorySpecificID; } public InventoryDebtorPriceGroupPricePOSTRequest setDebtorPriceGroupInventorySpecificID(String value) { this.DebtorPriceGroupInventorySpecificID = value; return this; } private static Object responseType = InventoryDebtorPriceGroupInventorySpecific.class; public Object getResponseType() { return responseType; } } @Route(Path="/Inventory/{InventoryID}/DebtorPriceGroupPrices/{DebtorPriceGroupInventorySpecificID}", Verbs="PATCH") @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="No debtor price group price with the InventoryID or DebtorPriceGroupInventorySpecificID provided was found", StatusCode=404) // @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="Updated OK", StatusCode=200) public static class InventoryDebtorPriceGroupPricePATCHRequest extends InventoryDebtorPriceGroupInventorySpecific implements IReturn { public String InventoryID = null; public String DebtorPriceGroupInventorySpecificID = null; public String getInventoryID() { return InventoryID; } public InventoryDebtorPriceGroupPricePATCHRequest setInventoryID(String value) { this.InventoryID = value; return this; } public String getDebtorPriceGroupInventorySpecificID() { return DebtorPriceGroupInventorySpecificID; } public InventoryDebtorPriceGroupPricePATCHRequest setDebtorPriceGroupInventorySpecificID(String value) { this.DebtorPriceGroupInventorySpecificID = value; return this; } private static Object responseType = InventoryDebtorPriceGroupInventorySpecific.class; public Object getResponseType() { return responseType; } } @Route(Path="/Inventory/{InventoryID}/DebtorPriceGroupPrices/{DebtorPriceGroupInventorySpecificID}", Verbs="DELETE") @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="No debtor price group price with the InventoryID or DebtorPriceGroupInventorySpecificID provided was found", StatusCode=404) // @ApiResponse(Description="Deleted OK", StatusCode=204) public static class InventoryDebtorPriceGroupPriceDELETERequest extends InventoryDebtorPriceGroupInventorySpecific { public String InventoryID = null; public String DebtorPriceGroupInventorySpecificID = null; public String getInventoryID() { return InventoryID; } public InventoryDebtorPriceGroupPriceDELETERequest setInventoryID(String value) { this.InventoryID = value; return this; } public String getDebtorPriceGroupInventorySpecificID() { return DebtorPriceGroupInventorySpecificID; } public InventoryDebtorPriceGroupPriceDELETERequest setDebtorPriceGroupInventorySpecificID(String value) { this.DebtorPriceGroupInventorySpecificID = value; return this; } } @Route(Path="/Inventory/{InventoryID}/SellingPrices", Verbs="GET") @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="No selling price with the InventoryID provided was found", StatusCode=404) public static class InventorySellingPriceGETRequest implements IReturn { public String InventoryID = null; public String getInventoryID() { return InventoryID; } public InventorySellingPriceGETRequest setInventoryID(String value) { this.InventoryID = value; return this; } private static Object responseType = InventorySellingPrices.class; public Object getResponseType() { return responseType; } } @Route(Path="/Inventory/{InventoryID}/SellingPrices", Verbs="PATCH") @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="No selling price with the InventoryID or LogicalWarehouseID provided was found", StatusCode=404) // @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="Updated OK", StatusCode=200) public static class InventorySellingPricePATCHRequest extends InventorySellingPrices implements IReturn { public String InventoryID = null; public String getInventoryID() { return InventoryID; } public InventorySellingPricePATCHRequest setInventoryID(String value) { this.InventoryID = value; return this; } private static Object responseType = InventorySellingPrices.class; public Object getResponseType() { return responseType; } } @Route(Path="/Inventory/PricingGroups/{PricingGroupID}", Verbs="GET") @ApiResponse(Description="No inventory pricing group with the RecID provided was found", StatusCode=404) // @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class InventoryPricingGroupGETRequest implements IReturn { public String PricingGroupID = null; public String getPricingGroupID() { return PricingGroupID; } public InventoryPricingGroupGETRequest setPricingGroupID(String value) { this.PricingGroupID = value; return this; } private static Object responseType = InventoryPricingGroup.class; public Object getResponseType() { return responseType; } } @Route(Path="/Inventory/PricingGroups", Verbs="GET") @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) public static class InventoryPricingGroupsGETManyRequest implements IReturn> { private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @Route(Path="/Inventory/PricingGroups", Verbs="POST") @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="Created OK", StatusCode=201) // @ApiResponse(Description="Not authenticated", StatusCode=401) public static class InventoryPricingGroupPOSTRequest extends InventoryPricingGroup implements IReturn { private static Object responseType = InventoryPricingGroup.class; public Object getResponseType() { return responseType; } } @Route(Path="/Inventory/PricingGroups/{PricingGroupID}", Verbs="PATCH") @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="No inventory pricing group with the RecID provided was found", StatusCode=404) // @ApiResponse(Description="Updated OK", StatusCode=200) public static class InventoryPricingGroupPATCHRequest extends InventoryPricingGroup implements IReturn { public String PricingGroupID = null; public String getPricingGroupID() { return PricingGroupID; } public InventoryPricingGroupPATCHRequest setPricingGroupID(String value) { this.PricingGroupID = value; return this; } private static Object responseType = InventoryPricingGroup.class; public Object getResponseType() { return responseType; } } @Route(Path="/Inventory/PricingGroups/{PricingGroupID}", Verbs="DELETE") @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="No inventory pricing group with the RecID provided was found", StatusCode=404) // @ApiResponse(Description="Deleted OK", StatusCode=204) // @ApiResponse(Description="Not authenticated", StatusCode=401) public static class InventoryPricingGroupDELETERequest { public String PricingGroupID = null; public String getPricingGroupID() { return PricingGroupID; } public InventoryPricingGroupDELETERequest setPricingGroupID(String value) { this.PricingGroupID = value; return this; } } @Route(Path="/Inventory/{InventoryID}/ProductAvailabilities/{LogicalWarehouseID}", Verbs="GET") @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="No product availability with the InventoryID or LogicalWarehouseID provided was found", StatusCode=404) // @ApiResponse(Description="Read OK", StatusCode=200) public static class InventoryProductAvailabilityGETRequest implements IReturn { public String InventoryID = null; public String LogicalWarehouseID = null; public String getInventoryID() { return InventoryID; } public InventoryProductAvailabilityGETRequest setInventoryID(String value) { this.InventoryID = value; return this; } public String getLogicalWarehouseID() { return LogicalWarehouseID; } public InventoryProductAvailabilityGETRequest setLogicalWarehouseID(String value) { this.LogicalWarehouseID = value; return this; } private static Object responseType = InventoryProductAvailability.class; public Object getResponseType() { return responseType; } } @Route(Path="/Inventory/{InventoryID}/ProductAvailabilities", Verbs="GET") @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="No product availabilities with the InventoryID provided was found", StatusCode=404) // @ApiResponse(Description="Read OK", StatusCode=200) public static class InventoryProductAvailabilitiesGETManyRequest implements IReturn> { public String InventoryID = null; public String getInventoryID() { return InventoryID; } public InventoryProductAvailabilitiesGETManyRequest setInventoryID(String value) { this.InventoryID = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @Route(Path="/Inventory/{InventoryID}/ProductAvailabilities/{LogicalWarehouseID}", Verbs="PATCH") @ApiResponse(Description="No product availability with the InventoryID or LogicalWarehouseID provided was found", StatusCode=404) // @ApiResponse(Description="Updated OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class InventoryProductAvailabilityPATCHRequest extends InventoryProductAvailability implements IReturn { public String InventoryID = null; public String LogicalWarehouseID = null; public String getInventoryID() { return InventoryID; } public InventoryProductAvailabilityPATCHRequest setInventoryID(String value) { this.InventoryID = value; return this; } public String getLogicalWarehouseID() { return LogicalWarehouseID; } public InventoryProductAvailabilityPATCHRequest setLogicalWarehouseID(String value) { this.LogicalWarehouseID = value; return this; } private static Object responseType = InventoryProductAvailability.class; public Object getResponseType() { return responseType; } } @Route(Path="/Inventory/{InventoryID}/Regions/{RegionName}", Verbs="GET") @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="No inventory region with the InventoryID or RegionName provided was found", StatusCode=404) // @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class InventoryRegionGETRequest implements IReturn { public String InventoryID = null; public String RegionName = null; public String getInventoryID() { return InventoryID; } public InventoryRegionGETRequest setInventoryID(String value) { this.InventoryID = value; return this; } public String getRegionName() { return RegionName; } public InventoryRegionGETRequest setRegionName(String value) { this.RegionName = value; return this; } private static Object responseType = InventoryRegion.class; public Object getResponseType() { return responseType; } } @Route(Path="/Inventory/{InventoryID}/Regions", Verbs="GET") @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="No inventory region with the InventoryID provided was found", StatusCode=404) public static class InventoryRegionsGETManyRequest implements IReturn> { public String InventoryID = null; public String getInventoryID() { return InventoryID; } public InventoryRegionsGETManyRequest setInventoryID(String value) { this.InventoryID = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @Route(Path="/Inventory/{InventoryID}/Regions/{RegionName}", Verbs="PATCH") @ApiResponse(Description="No inventory region with the InventoryID or RegionName provided was found", StatusCode=404) // @ApiResponse(Description="Updated OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class InventoryRegionPATCHRequest extends InventoryRegion implements IReturn { public String InventoryID = null; public String RegionName = null; public String getInventoryID() { return InventoryID; } public InventoryRegionPATCHRequest setInventoryID(String value) { this.InventoryID = value; return this; } public String getRegionName() { return RegionName; } public InventoryRegionPATCHRequest setRegionName(String value) { this.RegionName = value; return this; } private static Object responseType = InventoryRegion.class; public Object getResponseType() { return responseType; } } @Route(Path="/Inventory/{InventoryID}/Regions/{RegionName}/Suppliers/{SupplierID}", Verbs="GET") @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="No inventory supplier with the InventoryID, RegionName or SupplierID provided was found", StatusCode=404) // @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) public static class InventorySupplierGETRequest implements IReturn { public String InventoryID = null; public String RegionName = null; public String SupplierID = null; public String getInventoryID() { return InventoryID; } public InventorySupplierGETRequest setInventoryID(String value) { this.InventoryID = value; return this; } public String getRegionName() { return RegionName; } public InventorySupplierGETRequest setRegionName(String value) { this.RegionName = value; return this; } public String getSupplierID() { return SupplierID; } public InventorySupplierGETRequest setSupplierID(String value) { this.SupplierID = value; return this; } private static Object responseType = InventorySupplier.class; public Object getResponseType() { return responseType; } } @Route(Path="/Inventory/{InventoryID}/Regions/{RegionName}/Suppliers", Verbs="GET") @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="No inventory suppliers with the InventoryID or RegionName provided was found", StatusCode=404) public static class InventorySuppliersGETManyRequest implements IReturn> { public String InventoryID = null; public String RegionName = null; public String getInventoryID() { return InventoryID; } public InventorySuppliersGETManyRequest setInventoryID(String value) { this.InventoryID = value; return this; } public String getRegionName() { return RegionName; } public InventorySuppliersGETManyRequest setRegionName(String value) { this.RegionName = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @Route(Path="/Inventory/{InventoryID}/Regions/{RegionName}/Suppliers", Verbs="POST") @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="No inventory supplier with the InventoryID or RegionName provided was found", StatusCode=404) // @ApiResponse(Description="Created OK", StatusCode=201) // @ApiResponse(Description="Not authenticated", StatusCode=401) public static class InventorySupplierPOSTRequest extends InventorySupplier implements IReturn { public String InventoryID = null; public String RegionName = null; public String getInventoryID() { return InventoryID; } public InventorySupplierPOSTRequest setInventoryID(String value) { this.InventoryID = value; return this; } public String getRegionName() { return RegionName; } public InventorySupplierPOSTRequest setRegionName(String value) { this.RegionName = value; return this; } private static Object responseType = InventorySupplier.class; public Object getResponseType() { return responseType; } } @Route(Path="/Inventory/{InventoryID}/Regions/{RegionName}/Suppliers/{SupplierID}", Verbs="PATCH") @ApiResponse(Description="No inventory supplier with the InventoryID, RegionName or SupplierID provided was found", StatusCode=404) // @ApiResponse(Description="Updated OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class InventorySupplierPATCHRequest extends InventorySupplier implements IReturn { public String InventoryID = null; public String RegionName = null; public String SupplierID = null; public String getInventoryID() { return InventoryID; } public InventorySupplierPATCHRequest setInventoryID(String value) { this.InventoryID = value; return this; } public String getRegionName() { return RegionName; } public InventorySupplierPATCHRequest setRegionName(String value) { this.RegionName = value; return this; } public String getSupplierID() { return SupplierID; } public InventorySupplierPATCHRequest setSupplierID(String value) { this.SupplierID = value; return this; } private static Object responseType = InventorySupplier.class; public Object getResponseType() { return responseType; } } @Route(Path="/Inventory/{InventoryID}/Regions/{RegionName}/Suppliers/{SupplierID}", Verbs="DELETE") @ApiResponse(Description="No inventory supplier with the InventoryID, RegionName or SupplierID provided was found", StatusCode=404) // @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="Deleted OK", StatusCode=204) // @ApiResponse(Description="Not authenticated", StatusCode=401) public static class InventorySupplierDELETERequest extends InventorySupplier { public String InventoryID = null; public String RegionName = null; public String SupplierID = null; public String getInventoryID() { return InventoryID; } public InventorySupplierDELETERequest setInventoryID(String value) { this.InventoryID = value; return this; } public String getRegionName() { return RegionName; } public InventorySupplierDELETERequest setRegionName(String value) { this.RegionName = value; return this; } public String getSupplierID() { return SupplierID; } public InventorySupplierDELETERequest setSupplierID(String value) { this.SupplierID = value; return this; } } @Route(Path="/Inventory/{InventoryID}/Regions/{RegionName}/Suppliers/{SupplierID}/SupplierWarehouses/{SupplierWarehouseID}", Verbs="GET") @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="No supplier warehouse with the InventoryID, SupplierID, or SupplierWarehouseID provided was found", StatusCode=404) public static class InventorySupplierWarehouseGETRequest implements IReturn { public String InventoryID = null; public String RegionName = null; public String SupplierID = null; public String SupplierWarehouseID = null; public String getInventoryID() { return InventoryID; } public InventorySupplierWarehouseGETRequest setInventoryID(String value) { this.InventoryID = value; return this; } public String getRegionName() { return RegionName; } public InventorySupplierWarehouseGETRequest setRegionName(String value) { this.RegionName = value; return this; } public String getSupplierID() { return SupplierID; } public InventorySupplierWarehouseGETRequest setSupplierID(String value) { this.SupplierID = value; return this; } public String getSupplierWarehouseID() { return SupplierWarehouseID; } public InventorySupplierWarehouseGETRequest setSupplierWarehouseID(String value) { this.SupplierWarehouseID = value; return this; } private static Object responseType = InventorySupplierWarehouse.class; public Object getResponseType() { return responseType; } } @Route(Path="/Inventory/{InventoryID}/Regions/{RegionName}/Suppliers/{SupplierID}/SupplierWarehouses", Verbs="GET") @ApiResponse(Description="No supplier warehouse with the InventoryID or SupplierID provided was found", StatusCode=404) // @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) public static class InventorySupplierWarehousesGETManyRequest implements IReturn> { public String InventoryID = null; public String RegionName = null; public String SupplierID = null; public String getInventoryID() { return InventoryID; } public InventorySupplierWarehousesGETManyRequest setInventoryID(String value) { this.InventoryID = value; return this; } public String getRegionName() { return RegionName; } public InventorySupplierWarehousesGETManyRequest setRegionName(String value) { this.RegionName = value; return this; } public String getSupplierID() { return SupplierID; } public InventorySupplierWarehousesGETManyRequest setSupplierID(String value) { this.SupplierID = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @Route(Path="/Inventory/{InventoryID}/Regions/{RegionName}/Suppliers/{SupplierID}/SupplierWarehouses", Verbs="POST") @ApiResponse(Description="No description with the InventoryID, SupplierID or SupplierWarehouseID provided was found", StatusCode=404) // @ApiResponse(Description="Created OK", StatusCode=201) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class InventorySupplierWarehousePOSTRequest extends InventorySupplierWarehouse implements IReturn { public String InventoryID = null; public String RegionName = null; public String SupplierID = null; public String getInventoryID() { return InventoryID; } public InventorySupplierWarehousePOSTRequest setInventoryID(String value) { this.InventoryID = value; return this; } public String getRegionName() { return RegionName; } public InventorySupplierWarehousePOSTRequest setRegionName(String value) { this.RegionName = value; return this; } public String getSupplierID() { return SupplierID; } public InventorySupplierWarehousePOSTRequest setSupplierID(String value) { this.SupplierID = value; return this; } private static Object responseType = InventorySupplierWarehouse.class; public Object getResponseType() { return responseType; } } @Route(Path="/Inventory/{InventoryID}/Regions/{RegionName}/Suppliers/{SupplierID}/SupplierWarehouses/{SupplierWarehouseID}", Verbs="PATCH") @ApiResponse(Description="No supplier warehouse with the InventoryID, SupplierID or SupplierWarehouseID provided was found", StatusCode=404) // @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="Updated OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) public static class InventorySupplierWarehousePATCHRequest extends InventorySupplierWarehouse implements IReturn { public String InventoryID = null; public String RegionName = null; public String SupplierID = null; public String SupplierWarehouseID = null; public String getInventoryID() { return InventoryID; } public InventorySupplierWarehousePATCHRequest setInventoryID(String value) { this.InventoryID = value; return this; } public String getRegionName() { return RegionName; } public InventorySupplierWarehousePATCHRequest setRegionName(String value) { this.RegionName = value; return this; } public String getSupplierID() { return SupplierID; } public InventorySupplierWarehousePATCHRequest setSupplierID(String value) { this.SupplierID = value; return this; } public String getSupplierWarehouseID() { return SupplierWarehouseID; } public InventorySupplierWarehousePATCHRequest setSupplierWarehouseID(String value) { this.SupplierWarehouseID = value; return this; } private static Object responseType = InventorySupplierWarehouse.class; public Object getResponseType() { return responseType; } } @Route(Path="/Inventory/{InventoryID}/Regions/{RegionName}/Suppliers/{SupplierID}/SupplierWarehouses/{SupplierWarehouseID}", Verbs="DELETE") @ApiResponse(Description="No supplier warehouse with the InventoryID, SupplierID or SupplierWarehouseID provided was found", StatusCode=404) // @ApiResponse(Description="Deleted OK", StatusCode=204) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class InventorySupplierWarehouseDELETERequest extends InventorySupplierWarehouse { public String InventoryID = null; public String RegionName = null; public String SupplierID = null; public String SupplierWarehouseID = null; public String getInventoryID() { return InventoryID; } public InventorySupplierWarehouseDELETERequest setInventoryID(String value) { this.InventoryID = value; return this; } public String getRegionName() { return RegionName; } public InventorySupplierWarehouseDELETERequest setRegionName(String value) { this.RegionName = value; return this; } public String getSupplierID() { return SupplierID; } public InventorySupplierWarehouseDELETERequest setSupplierID(String value) { this.SupplierID = value; return this; } public String getSupplierWarehouseID() { return SupplierWarehouseID; } public InventorySupplierWarehouseDELETERequest setSupplierWarehouseID(String value) { this.SupplierWarehouseID = value; return this; } } @Route(Path="/Inventory/{InventoryID}/UnitOfMeasures/{UnitOfMeasureID}", Verbs="GET") @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="No inventory unit of measure with the InventoryID or UnitOfMeasureID provided was found", StatusCode=404) public static class InventoryUnitOfMeasureGETRequest implements IReturn { public String InventoryID = null; public String UnitOfMeasureID = null; public String getInventoryID() { return InventoryID; } public InventoryUnitOfMeasureGETRequest setInventoryID(String value) { this.InventoryID = value; return this; } public String getUnitOfMeasureID() { return UnitOfMeasureID; } public InventoryUnitOfMeasureGETRequest setUnitOfMeasureID(String value) { this.UnitOfMeasureID = value; return this; } private static Object responseType = InventoryUnitOfMeasure.class; public Object getResponseType() { return responseType; } } @Route(Path="/Inventory/{InventoryID}/UnitOfMeasures", Verbs="GET") @ApiResponse(Description="No inventory unit of measure with the InventoryID provided was found", StatusCode=404) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class InventoryUnitOfMeasuresGETManyRequest implements IReturn> { public String InventoryID = null; public String getInventoryID() { return InventoryID; } public InventoryUnitOfMeasuresGETManyRequest setInventoryID(String value) { this.InventoryID = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @Route(Path="/Inventory/{InventoryID}/UnitOfMeasures", Verbs="POST") @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="Created OK", StatusCode=201) // @ApiResponse(Description="No inventory unit of measure with the InventoryID or UnitOfMeasureID provided was found", StatusCode=404) // @ApiResponse(Description="Not authenticated", StatusCode=401) public static class InventoryUnitOfMeasurePOSTRequest extends InventoryUnitOfMeasure implements IReturn { public String InventoryID = null; public String getInventoryID() { return InventoryID; } public InventoryUnitOfMeasurePOSTRequest setInventoryID(String value) { this.InventoryID = value; return this; } private static Object responseType = InventoryUnitOfMeasure.class; public Object getResponseType() { return responseType; } } @Route(Path="/Inventory/{InventoryID}/UnitOfMeasures/{UnitOfMeasureID}", Verbs="PATCH") @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="No inventory unit of measure with the InventoryID or UnitOfMeasureID provided was found", StatusCode=404) // @ApiResponse(Description="Updated OK", StatusCode=200) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class InventoryUnitOfMeasurePATCHRequest extends InventoryUnitOfMeasure implements IReturn { public String InventoryID = null; public String UnitOfMeasureID = null; public String getInventoryID() { return InventoryID; } public InventoryUnitOfMeasurePATCHRequest setInventoryID(String value) { this.InventoryID = value; return this; } public String getUnitOfMeasureID() { return UnitOfMeasureID; } public InventoryUnitOfMeasurePATCHRequest setUnitOfMeasureID(String value) { this.UnitOfMeasureID = value; return this; } private static Object responseType = InventoryUnitOfMeasure.class; public Object getResponseType() { return responseType; } } @Route(Path="/Inventory/{InventoryID}/UnitOfMeasures/{UnitOfMeasureID}", Verbs="DELETE") @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="No inventory unit of measure with the InventoryID or UnitOfMeasureID provided was found", StatusCode=404) // @ApiResponse(Description="Deleted OK", StatusCode=204) // @ApiResponse(Description="Not authenticated", StatusCode=401) public static class InventoryUnitOfMeasureDELETERequest extends InventoryUnitOfMeasure { public String InventoryID = null; public String UnitOfMeasureID = null; public String getInventoryID() { return InventoryID; } public InventoryUnitOfMeasureDELETERequest setInventoryID(String value) { this.InventoryID = value; return this; } public String getUnitOfMeasureID() { return UnitOfMeasureID; } public InventoryUnitOfMeasureDELETERequest setUnitOfMeasureID(String value) { this.UnitOfMeasureID = value; return this; } } @Route(Path="/Inventory/{InventoryID}/UpSells/{UpSellID}", Verbs="GET") @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="No inventory up sell with the InventoryID or RecID provided was found", StatusCode=404) // @ApiResponse(Description="Read OK", StatusCode=200) public static class InventoryUpSellGETRequest implements IReturn { public String InventoryID = null; public String UpSellID = null; public String getInventoryID() { return InventoryID; } public InventoryUpSellGETRequest setInventoryID(String value) { this.InventoryID = value; return this; } public String getUpSellID() { return UpSellID; } public InventoryUpSellGETRequest setUpSellID(String value) { this.UpSellID = value; return this; } private static Object responseType = InventoryUpSell.class; public Object getResponseType() { return responseType; } } @Route(Path="/Inventory/{InventoryID}/UpSells", Verbs="GET") @ApiResponse(Description="No inventory up sell with the InventoryID or RecID provided was found", StatusCode=404) // @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class InventoryUpSellsGETManyRequest implements IReturn> { public String InventoryID = null; public String getInventoryID() { return InventoryID; } public InventoryUpSellsGETManyRequest setInventoryID(String value) { this.InventoryID = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @Route(Path="/Inventory/{InventoryID}/UpSells", Verbs="POST") @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="No inventory up sell with the InventoryID or RecID provided was found", StatusCode=404) // @ApiResponse(Description="Created OK", StatusCode=201) public static class InventoryUpSellPOSTRequest extends InventoryUpSell implements IReturn { public String InventoryID = null; public String getInventoryID() { return InventoryID; } public InventoryUpSellPOSTRequest setInventoryID(String value) { this.InventoryID = value; return this; } private static Object responseType = InventoryUpSell.class; public Object getResponseType() { return responseType; } } @Route(Path="/Inventory/{InventoryID}/UpSells/{UpSellID}", Verbs="PATCH") @ApiResponse(Description="No inventory up sell with the InventoryID or RecID provided was found", StatusCode=404) // @ApiResponse(Description="Updated OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class InventoryUpSellPATCHRequest extends InventoryUpSell implements IReturn { public String InventoryID = null; public String UpSellID = null; public String getInventoryID() { return InventoryID; } public InventoryUpSellPATCHRequest setInventoryID(String value) { this.InventoryID = value; return this; } public String getUpSellID() { return UpSellID; } public InventoryUpSellPATCHRequest setUpSellID(String value) { this.UpSellID = value; return this; } private static Object responseType = InventoryUpSell.class; public Object getResponseType() { return responseType; } } @Route(Path="/Inventory/{InventoryID}/UpSells/{UpSellID}", Verbs="DELETE") @ApiResponse(Description="No inventory up sell with the InventoryID or RecID provided was found", StatusCode=404) // @ApiResponse(Description="Deleted OK", StatusCode=204) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class InventoryUpSellDELETERequest extends InventoryUpSell { public String InventoryID = null; public String UpSellID = null; public String getInventoryID() { return InventoryID; } public InventoryUpSellDELETERequest setInventoryID(String value) { this.InventoryID = value; return this; } public String getUpSellID() { return UpSellID; } public InventoryUpSellDELETERequest setUpSellID(String value) { this.UpSellID = value; return this; } } @Route(Path="/JournalSets/{JournalSetID}", Verbs="GET") @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="No journal set with the JournalSetID provided was found", StatusCode=404) public static class JournalSetGETRequest implements IReturn { public String JournalSetID = null; public String getJournalSetID() { return JournalSetID; } public JournalSetGETRequest setJournalSetID(String value) { this.JournalSetID = value; return this; } private static Object responseType = JournalSet.class; public Object getResponseType() { return responseType; } } @Route(Path="/JournalSets/", Verbs="POST") @ApiResponse(Description="Created OK", StatusCode=201) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class JournalSetPOSTRequest extends JournalSet implements IReturn { private static Object responseType = JournalSet.class; public Object getResponseType() { return responseType; } } @Route(Path="/JournalSets/{JournalSetID}", Verbs="PATCH") @ApiResponse(Description="No journal set with the JournalSetID provided was found", StatusCode=404) // @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Updated OK", StatusCode=200) public static class JournalSetPATCHRequest extends JournalSet implements IReturn { public String JournalSetID = null; public String getJournalSetID() { return JournalSetID; } public JournalSetPATCHRequest setJournalSetID(String value) { this.JournalSetID = value; return this; } private static Object responseType = JournalSet.class; public Object getResponseType() { return responseType; } } @Route(Path="/JournalSets/{JournalSetID}", Verbs="DELETE") @ApiResponse(Description="Deleted OK", StatusCode=204) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="No journal set with the JournalSetID provided was found", StatusCode=404) public static class JournalSetDELETERequest { public String JournalSetID = null; public String getJournalSetID() { return JournalSetID; } public JournalSetDELETERequest setJournalSetID(String value) { this.JournalSetID = value; return this; } } @Route(Path="/JournalSets/DocumentTypes/{DocumentTypeID}", Verbs="GET") @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="No journal set document type with the DocumentTypeID provided was found", StatusCode=404) // @ApiResponse(Description="Not authenticated", StatusCode=401) public static class JournalSetDocumentTypeGETRequest implements IReturn { public String DocumentTypeID = null; public String getDocumentTypeID() { return DocumentTypeID; } public JournalSetDocumentTypeGETRequest setDocumentTypeID(String value) { this.DocumentTypeID = value; return this; } private static Object responseType = DocumentType.class; public Object getResponseType() { return responseType; } } @Route(Path="/JournalSets/DocumentTypes", Verbs="GET") @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class JournalSetDocumentTypesGETManyRequest implements IReturn> { private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @Route(Path="/JournalSets/DocumentTypes", Verbs="POST") @ApiResponse(Description="Created OK", StatusCode=201) // @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="Not authenticated", StatusCode=401) public static class JournalSetDocumentTypePOSTRequest extends DocumentType implements IReturn { private static Object responseType = DocumentType.class; public Object getResponseType() { return responseType; } } @Route(Path="/JournalSets/DocumentTypes/{DocumentTypeID}", Verbs="PATCH") @ApiResponse(Description="No journal set document type with the DocumentTypeID provided was found", StatusCode=404) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="Updated OK", StatusCode=200) public static class JournalSetDocumentTypePATCHRequest extends DocumentType implements IReturn { public String DocumentTypeID = null; public String getDocumentTypeID() { return DocumentTypeID; } public JournalSetDocumentTypePATCHRequest setDocumentTypeID(String value) { this.DocumentTypeID = value; return this; } private static Object responseType = DocumentType.class; public Object getResponseType() { return responseType; } } @Route(Path="/JournalSets/DocumentTypes/{DocumentTypeID}", Verbs="DELETE") @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Deleted OK", StatusCode=204) // @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="No journal set document type with the DocumentTypeID provided was found", StatusCode=404) public static class JournalSetDocumentTypeDELETERequest { public String DocumentTypeID = null; public String getDocumentTypeID() { return DocumentTypeID; } public JournalSetDocumentTypeDELETERequest setDocumentTypeID(String value) { this.DocumentTypeID = value; return this; } } @Route(Path="/JournalSets/{JournalSetID}/Documents/{DocumentID}", Verbs="GET") @ApiResponse(Description="No journal set document with the JournalSetID or DocumentID provided was found", StatusCode=404) // @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="Not authenticated", StatusCode=401) public static class JournalSetDocumentGETRequest implements IReturn { public String JournalSetID = null; public String DocumentID = null; public String getJournalSetID() { return JournalSetID; } public JournalSetDocumentGETRequest setJournalSetID(String value) { this.JournalSetID = value; return this; } public String getDocumentID() { return DocumentID; } public JournalSetDocumentGETRequest setDocumentID(String value) { this.DocumentID = value; return this; } private static Object responseType = Document.class; public Object getResponseType() { return responseType; } } @Route(Path="/JournalSets/{JournalSetID}/Documents", Verbs="GET") @ApiResponse(Description="No journal set with the JournalSetID provided was found", StatusCode=404) // @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class JournalSetDocumentsGETManyRequest implements IReturn> { public String JournalSetID = null; public String getJournalSetID() { return JournalSetID; } public JournalSetDocumentsGETManyRequest setJournalSetID(String value) { this.JournalSetID = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @Route(Path="/JournalSets/{JournalSetID}/Documents", Verbs="POST") @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="No journal set with the JournalSetID provided was found", StatusCode=404) // @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="Created OK", StatusCode=201) public static class JournalSetDocumentPOSTRequest extends Document implements IReturn { public String JournalSetID = null; public String getJournalSetID() { return JournalSetID; } public JournalSetDocumentPOSTRequest setJournalSetID(String value) { this.JournalSetID = value; return this; } private static Object responseType = Document.class; public Object getResponseType() { return responseType; } } @Route(Path="/JournalSets/{JournalSetID}/Documents/{DocumentID}", Verbs="PATCH") @ApiResponse(Description="No journal set with the JournalSetID provided was found", StatusCode=404) // @ApiResponse(Description="Updated OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class JournalSetDocumentPATCHRequest extends Document implements IReturn { public String JournalSetID = null; public String DocumentID = null; public String getJournalSetID() { return JournalSetID; } public JournalSetDocumentPATCHRequest setJournalSetID(String value) { this.JournalSetID = value; return this; } public String getDocumentID() { return DocumentID; } public JournalSetDocumentPATCHRequest setDocumentID(String value) { this.DocumentID = value; return this; } private static Object responseType = Document.class; public Object getResponseType() { return responseType; } } @Route(Path="/JournalSets/{JournalSetID}/Documents/{DocumentID}", Verbs="DELETE") @ApiResponse(Description="No journal set with the JournalSetID provided was found", StatusCode=404) // @ApiResponse(Description="Deleted OK", StatusCode=204) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class JournalSetDocumentDELETERequest { public String JournalSetID = null; public String DocumentID = null; public String getJournalSetID() { return JournalSetID; } public JournalSetDocumentDELETERequest setJournalSetID(String value) { this.JournalSetID = value; return this; } public String getDocumentID() { return DocumentID; } public JournalSetDocumentDELETERequest setDocumentID(String value) { this.DocumentID = value; return this; } } @Route(Path="/JournalSets/{JournalSetID}/Lines/{JournalSetLineID}", Verbs="GET") @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="No line with the JournalSetID or JournalSetLineID provided was found", StatusCode=404) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class JournalSetLineGETRequest implements IReturn { public String JournalSetID = null; public String JournalSetLineID = null; public String getJournalSetID() { return JournalSetID; } public JournalSetLineGETRequest setJournalSetID(String value) { this.JournalSetID = value; return this; } public String getJournalSetLineID() { return JournalSetLineID; } public JournalSetLineGETRequest setJournalSetLineID(String value) { this.JournalSetLineID = value; return this; } private static Object responseType = JournalSetLine.class; public Object getResponseType() { return responseType; } } @Route(Path="/JournalSets/{JournalSetID}/Lines", Verbs="GET") @ApiResponse(Description="No line with the JournalSetID provided was found", StatusCode=404) // @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class JournalSetLinesGETManyRequest implements IReturn> { public String JournalSetID = null; public String getJournalSetID() { return JournalSetID; } public JournalSetLinesGETManyRequest setJournalSetID(String value) { this.JournalSetID = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @Route(Path="/JournalSets/{JournalSetID}/Lines", Verbs="POST") @ApiResponse(Description="No line with the JournalSetID or JournalSetLineID provided was found", StatusCode=404) // @ApiResponse(Description="Created OK", StatusCode=201) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class JournalSetLinePOSTRequest extends JournalSetLine implements IReturn { public String JournalSetID = null; public String getJournalSetID() { return JournalSetID; } public JournalSetLinePOSTRequest setJournalSetID(String value) { this.JournalSetID = value; return this; } private static Object responseType = JournalSetLine.class; public Object getResponseType() { return responseType; } } @Route(Path="/JournalSets/{JournalSetID}/Lines/{JournalSetLineID}", Verbs="PATCH") @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="Updated OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="No line with the JournalSetID or JournalSetLineID provided was found", StatusCode=404) public static class JournalSetLinePATCHRequest extends JournalSetLine implements IReturn { public String JournalSetID = null; public String JournalSetLineID = null; public String getJournalSetID() { return JournalSetID; } public JournalSetLinePATCHRequest setJournalSetID(String value) { this.JournalSetID = value; return this; } public String getJournalSetLineID() { return JournalSetLineID; } public JournalSetLinePATCHRequest setJournalSetLineID(String value) { this.JournalSetLineID = value; return this; } private static Object responseType = JournalSetLine.class; public Object getResponseType() { return responseType; } } @Route(Path="/JournalSets/{JournalSetID}/Lines/{JournalSetLineID}", Verbs="DELETE") @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Deleted OK", StatusCode=204) // @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="No line with the JournalSetID or JournalSetLineID provided was found", StatusCode=404) public static class JournalSetLineDELETERequest extends JournalSetLine { public String JournalSetID = null; public String JournalSetLineID = null; public String getJournalSetID() { return JournalSetID; } public JournalSetLineDELETERequest setJournalSetID(String value) { this.JournalSetID = value; return this; } public String getJournalSetLineID() { return JournalSetLineID; } public JournalSetLineDELETERequest setJournalSetLineID(String value) { this.JournalSetLineID = value; return this; } } @Route(Path="/JournalSets/NoteTypes/{NoteTypeID}", Verbs="GET") @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="No journal set note type with the NoteTypeID provided was found", StatusCode=404) // @ApiResponse(Description="Read OK", StatusCode=200) public static class JournalSetNoteTypeGETRequest implements IReturn { public String NoteTypeID = null; public String getNoteTypeID() { return NoteTypeID; } public JournalSetNoteTypeGETRequest setNoteTypeID(String value) { this.NoteTypeID = value; return this; } private static Object responseType = NoteType.class; public Object getResponseType() { return responseType; } } @Route(Path="/JournalSets/NoteTypes", Verbs="GET") @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class JournalSetNoteTypesGETManyRequest implements IReturn> { private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @Route(Path="/JournalSets/NoteTypes", Verbs="POST") @ApiResponse(Description="Created OK", StatusCode=201) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class JournalSetNoteTypePOSTRequest extends NoteType implements IReturn { private static Object responseType = NoteType.class; public Object getResponseType() { return responseType; } } @Route(Path="/JournalSets/NoteTypes/{NoteTypeID}", Verbs="PATCH") @ApiResponse(Description="Updated OK", StatusCode=200) // @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="No journal set note type with the NoteTypeID provided was found", StatusCode=404) public static class JournalSetNoteTypePATCHRequest extends NoteType implements IReturn { public String NoteTypeID = null; public String getNoteTypeID() { return NoteTypeID; } public JournalSetNoteTypePATCHRequest setNoteTypeID(String value) { this.NoteTypeID = value; return this; } private static Object responseType = NoteType.class; public Object getResponseType() { return responseType; } } @Route(Path="/JournalSets/NoteTypes/{NoteTypeID}", Verbs="DELETE") @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="No journal set note type with the NoteTypeID provided was found", StatusCode=404) // @ApiResponse(Description="Deleted OK", StatusCode=204) // @ApiResponse(Description="Not authenticated", StatusCode=401) public static class JournalSetNoteTypeDELETERequest { public String NoteTypeID = null; public String getNoteTypeID() { return NoteTypeID; } public JournalSetNoteTypeDELETERequest setNoteTypeID(String value) { this.NoteTypeID = value; return this; } } @Route(Path="/JournalSets/{JournalSetID}/Notes/{NoteID}", Verbs="GET") @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="No Sales Order Note with the JournalSetID or NoteID provided was found", StatusCode=404) // @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) public static class JournalSetNoteGETRequest implements IReturn { public String JournalSetID = null; public String NoteID = null; public String getJournalSetID() { return JournalSetID; } public JournalSetNoteGETRequest setJournalSetID(String value) { this.JournalSetID = value; return this; } public String getNoteID() { return NoteID; } public JournalSetNoteGETRequest setNoteID(String value) { this.NoteID = value; return this; } private static Object responseType = Note.class; public Object getResponseType() { return responseType; } } @Route(Path="/JournalSets/{JournalSetID}/Notes", Verbs="GET") @ApiResponse(Description="No Sales Order with the JournalSetID provided was found", StatusCode=404) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class JournalSetNotesGETManyRequest implements IReturn> { public String JournalSetID = null; public String getJournalSetID() { return JournalSetID; } public JournalSetNotesGETManyRequest setJournalSetID(String value) { this.JournalSetID = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @Route(Path="/JournalSets/{JournalSetID}/Notes", Verbs="POST") @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="Created OK", StatusCode=201) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="No Sales Order with the JournalSetID provided was found", StatusCode=404) public static class JournalSetNotePOSTRequest extends Note implements IReturn { public String JournalSetID = null; public String getJournalSetID() { return JournalSetID; } public JournalSetNotePOSTRequest setJournalSetID(String value) { this.JournalSetID = value; return this; } private static Object responseType = Note.class; public Object getResponseType() { return responseType; } } @Route(Path="/JournalSets/{JournalSetID}/Notes/{NoteID}", Verbs="PATCH") @ApiResponse(Description="No Sales Order with the JournalSetID provided was found", StatusCode=404) // @ApiResponse(Description="Updated OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class JournalSetNotePATCHRequest extends Note implements IReturn { public String JournalSetID = null; public String NoteID = null; public String getJournalSetID() { return JournalSetID; } public JournalSetNotePATCHRequest setJournalSetID(String value) { this.JournalSetID = value; return this; } public String getNoteID() { return NoteID; } public JournalSetNotePATCHRequest setNoteID(String value) { this.NoteID = value; return this; } private static Object responseType = Note.class; public Object getResponseType() { return responseType; } } @Route(Path="/JournalSets/{JournalSetID}/Notes/{NoteID}", Verbs="DELETE") @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="Deleted OK", StatusCode=204) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="No Sales Order with the JournalSetID provided was found", StatusCode=404) public static class JournalSetNoteDELETERequest { public String JournalSetID = null; public String NoteID = null; public String getJournalSetID() { return JournalSetID; } public JournalSetNoteDELETERequest setJournalSetID(String value) { this.JournalSetID = value; return this; } public String getNoteID() { return NoteID; } public JournalSetNoteDELETERequest setNoteID(String value) { this.NoteID = value; return this; } } @Route(Path="/KeepAlive", Verbs="GET") @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="OK", StatusCode=204) public static class KeepAliveGETRequest { } @Route(Path="/BookIns/{BookInID}", Verbs="GET") @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="No book in with the book in no. provided was found", StatusCode=404) // @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="Read OK", StatusCode=200) public static class LandedCostBookInGETRequest implements IReturn { public String BookInID = null; public String getBookInID() { return BookInID; } public LandedCostBookInGETRequest setBookInID(String value) { this.BookInID = value; return this; } private static Object responseType = BookIn.class; public Object getResponseType() { return responseType; } } @Route(Path="/BookIns/{BookInID}", Verbs="PATCH") @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="No book in with the book in no. provided was found", StatusCode=404) // @ApiResponse(Description="Created OK", StatusCode=201) // @ApiResponse(Description="Not authenticated", StatusCode=401) public static class LandedCostBookInPATCHRequest extends BookIn implements IReturn { public String BookInID = null; public String getBookInID() { return BookInID; } public LandedCostBookInPATCHRequest setBookInID(String value) { this.BookInID = value; return this; } private static Object responseType = BookIn.class; public Object getResponseType() { return responseType; } } @Route(Path="/BookIns/FromShipmentID/{ShipmentID}", Verbs="POST") @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="Created OK", StatusCode=201) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="No shipment with the shipment no. provided was found", StatusCode=404) public static class LandedCostBookInCREATEFromShipmentIDRequest implements IReturn { public String ShipmentID = null; public String getShipmentID() { return ShipmentID; } public LandedCostBookInCREATEFromShipmentIDRequest setShipmentID(String value) { this.ShipmentID = value; return this; } private static Object responseType = BookIn.class; public Object getResponseType() { return responseType; } } @Route(Path="/BookIns/FromShipmentNo/{ShipmentNo}", Verbs="POST") @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="No shipment with the shipment no. provided was found", StatusCode=404) // @ApiResponse(Description="Created OK", StatusCode=201) public static class LandedCostBookInCREATEFromShipmentNoRequest implements IReturn { public String ShipmentNo = null; public String getShipmentNo() { return ShipmentNo; } public LandedCostBookInCREATEFromShipmentNoRequest setShipmentNo(String value) { this.ShipmentNo = value; return this; } private static Object responseType = BookIn.class; public Object getResponseType() { return responseType; } } @Route(Path="/BookIns/Activate/{BookInID}", Verbs="POST") @ApiResponse(Description="Activated OK", StatusCode=204) // @ApiResponse(Description="No book in with the book in no. provided was found", StatusCode=404) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class LandedCostBookInACTIVATERequest implements IReturn { public String BookInID = null; public String getBookInID() { return BookInID; } public LandedCostBookInACTIVATERequest setBookInID(String value) { this.BookInID = value; return this; } private static Object responseType = BookIn.class; public Object getResponseType() { return responseType; } } @Route(Path="/BookIns/{BookInID}/Lines/{LineID}", Verbs="GET") @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="No line with the BookInID or LineID provided was found", StatusCode=404) // @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="Read OK", StatusCode=200) public static class LandedCostBookInLineGETRequest implements IReturn { public String BookInID = null; public String LineID = null; public String getBookInID() { return BookInID; } public LandedCostBookInLineGETRequest setBookInID(String value) { this.BookInID = value; return this; } public String getLineID() { return LineID; } public LandedCostBookInLineGETRequest setLineID(String value) { this.LineID = value; return this; } private static Object responseType = BookInLine.class; public Object getResponseType() { return responseType; } } @Route(Path="/BookIns/{BookInID}/Lines", Verbs="GET") @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="No line with the BookInID provided was found", StatusCode=404) public static class LandedCostBookInLinesGETManyRequest implements IReturn> { public String BookInID = null; public String getBookInID() { return BookInID; } public LandedCostBookInLinesGETManyRequest setBookInID(String value) { this.BookInID = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @Route(Path="/BookIns/{BookInID}/Lines/{LineID}", Verbs="PATCH") @ApiResponse(Description="No line with the BookInID or LineID provided was found", StatusCode=404) // @ApiResponse(Description="Updated OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class LandedCostBookInLinePATCHRequest extends BookInLine implements IReturn { public String BookInID = null; public String LineID = null; public String getBookInID() { return BookInID; } public LandedCostBookInLinePATCHRequest setBookInID(String value) { this.BookInID = value; return this; } public String getLineID() { return LineID; } public LandedCostBookInLinePATCHRequest setLineID(String value) { this.LineID = value; return this; } private static Object responseType = BookInLine.class; public Object getResponseType() { return responseType; } } @Route(Path="/BookIns/{BookInID}/Lines/{LineID}", Verbs="DELETE") @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="No line with the BookInID or LineID provided was found", StatusCode=404) // @ApiResponse(Description="Deleted OK", StatusCode=204) public static class LandedCostBookInLineDELETERequest extends BookInLine { public String BookInID = null; public String LineID = null; public String getBookInID() { return BookInID; } public LandedCostBookInLineDELETERequest setBookInID(String value) { this.BookInID = value; return this; } public String getLineID() { return LineID; } public LandedCostBookInLineDELETERequest setLineID(String value) { this.LineID = value; return this; } } @Route(Path="/Shipments/{ShipmentID}", Verbs="GET") @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="No shipment with the ShipmentID provided was found", StatusCode=404) // @ApiResponse(Description="Read OK", StatusCode=200) public static class LandedCostShipmentGETRequest implements IReturn { public String ShipmentID = null; public String getShipmentID() { return ShipmentID; } public LandedCostShipmentGETRequest setShipmentID(String value) { this.ShipmentID = value; return this; } private static Object responseType = Shipment.class; public Object getResponseType() { return responseType; } } @Route(Path="/Shipments", Verbs="POST") @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Created OK", StatusCode=201) public static class LandedCostShipmentPOSTRequest extends Shipment implements IReturn { private static Object responseType = Shipment.class; public Object getResponseType() { return responseType; } } @Route(Path="/Shipments/{ShipmentID}", Verbs="PATCH") @ApiResponse(Description="No shipment with the ShipmentID provided was found", StatusCode=404) // @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="Created OK", StatusCode=201) // @ApiResponse(Description="Not authenticated", StatusCode=401) public static class LandedCostShipmentPATCHRequest extends Shipment implements IReturn { public String ShipmentID = null; public String getShipmentID() { return ShipmentID; } public LandedCostShipmentPATCHRequest setShipmentID(String value) { this.ShipmentID = value; return this; } private static Object responseType = Shipment.class; public Object getResponseType() { return responseType; } } @Route(Path="/Shipments/{ShipmentID}", Verbs="DELETE") @ApiResponse(Description="No shipment with the ShipmentID provided was found", StatusCode=404) // @ApiResponse(Description="Deleted OK", StatusCode=204) // @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="Not authenticated", StatusCode=401) public static class LandedCostShipmentDELETERequest { public String ShipmentID = null; public String getShipmentID() { return ShipmentID; } public LandedCostShipmentDELETERequest setShipmentID(String value) { this.ShipmentID = value; return this; } } @Route(Path="/Shipments/FromPurchaseOrders/{OrderNos}", Verbs="POST") @ApiResponse(Description="Created OK", StatusCode=201) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="No purchase order(s) with the order nos. provided were found", StatusCode=404) public static class LandedCostShipmentCREATEFromPORequest implements IReturn { public ArrayList OrderNos = null; public ArrayList getOrderNos() { return OrderNos; } public LandedCostShipmentCREATEFromPORequest setOrderNos(ArrayList value) { this.OrderNos = value; return this; } private static Object responseType = Shipment.class; public Object getResponseType() { return responseType; } } @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="No Purchase Order Line(s) with the OrderLineID provided was found", StatusCode=404) // @ApiResponse(Description="Created OK", StatusCode=201) // @ApiResponse(Description="Not authenticated", StatusCode=401) public static class LandedCostShipmentCREATEFromPOLinesRequest implements IReturn { public ArrayList ReceivedPOLineQuantities = null; public ArrayList getReceivedPOLineQuantities() { return ReceivedPOLineQuantities; } public LandedCostShipmentCREATEFromPOLinesRequest setReceivedPOLineQuantities(ArrayList value) { this.ReceivedPOLineQuantities = value; return this; } private static Object responseType = Shipment.class; public Object getResponseType() { return responseType; } } @Route(Path="/Shipments/Activate/{ShipmentID}", Verbs="POST") @ApiResponse(Description="Activated OK", StatusCode=204) // @ApiResponse(Description="No shipment with the ShipmentID provided was found", StatusCode=404) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class LandedCostShipmentACTIVATERequest implements IReturn { public String ShipmentID = null; public String getShipmentID() { return ShipmentID; } public LandedCostShipmentACTIVATERequest setShipmentID(String value) { this.ShipmentID = value; return this; } private static Object responseType = Shipment.class; public Object getResponseType() { return responseType; } } @Route(Path="/Shipments/{ShipmentID}/PurchaseOrders/{OrderID}", Verbs="GET") @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="No purchase order with the ShipmentID or OrderID provided was found", StatusCode=404) // @ApiResponse(Description="Read OK", StatusCode=200) public static class LandedCostShipmentPurchaseOrderGETRequest implements IReturn { public String ShipmentID = null; public String OrderID = null; public String getShipmentID() { return ShipmentID; } public LandedCostShipmentPurchaseOrderGETRequest setShipmentID(String value) { this.ShipmentID = value; return this; } public String getOrderID() { return OrderID; } public LandedCostShipmentPurchaseOrderGETRequest setOrderID(String value) { this.OrderID = value; return this; } private static Object responseType = ShipmentPurchaseOrderReceived.class; public Object getResponseType() { return responseType; } } @Route(Path="/Shipments/{ShipmentID}/PurchaseOrders", Verbs="GET") @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="No purchase order with the ShipmentID provided was found", StatusCode=404) // @ApiResponse(Description="Read OK", StatusCode=200) public static class LandedCostShipmentPurchaseOrdersGETManyRequest implements IReturn> { public String ShipmentID = null; public String getShipmentID() { return ShipmentID; } public LandedCostShipmentPurchaseOrdersGETManyRequest setShipmentID(String value) { this.ShipmentID = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @Route(Path="/Shipments/{ShipmentID}/PurchaseOrders", Verbs="POST") @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="No purchase order with the ShipmentID or OrderID provided was found", StatusCode=404) // @ApiResponse(Description="Created OK", StatusCode=201) public static class LandedCostShipmentPurchaseOrderPOSTRequest extends ShipmentPurchaseOrderReceived implements IReturn { public String ShipmentID = null; public String OrderID = null; public String getShipmentID() { return ShipmentID; } public LandedCostShipmentPurchaseOrderPOSTRequest setShipmentID(String value) { this.ShipmentID = value; return this; } public String getOrderID() { return OrderID; } public LandedCostShipmentPurchaseOrderPOSTRequest setOrderID(String value) { this.OrderID = value; return this; } private static Object responseType = ShipmentPurchaseOrderReceived.class; public Object getResponseType() { return responseType; } } @Route(Path="/Shipments/{ShipmentID}/PurchaseOrders/{OrderID}", Verbs="DELETE") @ApiResponse(Description="Deleted OK", StatusCode=204) // @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="No purchase order with the ShipmentID or OrderID provided was found", StatusCode=404) // @ApiResponse(Description="Not authenticated", StatusCode=401) public static class LandedCostShipmentPurchaseOrderDELETERequest extends ShipmentPurchaseOrderReceived { public String ShipmentID = null; public String OrderID = null; public String getShipmentID() { return ShipmentID; } public LandedCostShipmentPurchaseOrderDELETERequest setShipmentID(String value) { this.ShipmentID = value; return this; } public String getOrderID() { return OrderID; } public LandedCostShipmentPurchaseOrderDELETERequest setOrderID(String value) { this.OrderID = value; return this; } } @Route(Path="/Shipments/{ShipmentID}/Lines/{LineID}", Verbs="GET") @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="No line with the ShipmentID or LineID provided was found", StatusCode=404) // @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) public static class LandedCostShipmentLineGETRequest implements IReturn { public String ShipmentID = null; public String LineID = null; public String getShipmentID() { return ShipmentID; } public LandedCostShipmentLineGETRequest setShipmentID(String value) { this.ShipmentID = value; return this; } public String getLineID() { return LineID; } public LandedCostShipmentLineGETRequest setLineID(String value) { this.LineID = value; return this; } private static Object responseType = ShipmentLine.class; public Object getResponseType() { return responseType; } } @Route(Path="/Shipments/{ShipmentID}/Lines", Verbs="GET") @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="No line with the ShipmentID provided was found", StatusCode=404) // @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) public static class LandedCostShipmentLinesGETManyRequest implements IReturn> { public String ShipmentID = null; public String getShipmentID() { return ShipmentID; } public LandedCostShipmentLinesGETManyRequest setShipmentID(String value) { this.ShipmentID = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @Route(Path="/Shipments/{ShipmentID}/Lines/{LineID}", Verbs="PATCH") @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="No line with the ShipmentID or LineID provided was found", StatusCode=404) // @ApiResponse(Description="Updated OK", StatusCode=200) public static class LandedCostShipmentLinePATCHRequest extends ShipmentLine implements IReturn { public String ShipmentID = null; public String LineID = null; public String getShipmentID() { return ShipmentID; } public LandedCostShipmentLinePATCHRequest setShipmentID(String value) { this.ShipmentID = value; return this; } public String getLineID() { return LineID; } public LandedCostShipmentLinePATCHRequest setLineID(String value) { this.LineID = value; return this; } private static Object responseType = ShipmentLine.class; public Object getResponseType() { return responseType; } } @Route(Path="/Languages/{LanguageID}", Verbs="GET") @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="No language with the RecID provided was found", StatusCode=404) // @ApiResponse(Description="Not authenticated", StatusCode=401) public static class LanguageGETRequest implements IReturn { public String LanguageID = null; public String getLanguageID() { return LanguageID; } public LanguageGETRequest setLanguageID(String value) { this.LanguageID = value; return this; } private static Object responseType = Language.class; public Object getResponseType() { return responseType; } } @Route(Path="/Languages", Verbs="GET") @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="Read OK", StatusCode=200) public static class LanguagesGETManyRequest implements IReturn> { private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @Route(Path="/Languages", Verbs="POST") @ApiResponse(Description="Created OK", StatusCode=201) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class LanguagePOSTRequest extends Language implements IReturn { private static Object responseType = Language.class; public Object getResponseType() { return responseType; } } @Route(Path="/Languages/{LanguageID}", Verbs="PATCH") @ApiResponse(Description="Updated OK", StatusCode=200) // @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="No language with the RecID provided was found", StatusCode=404) // @ApiResponse(Description="Not authenticated", StatusCode=401) public static class LanguagePATCHRequest extends Language implements IReturn { public String LanguageID = null; public String getLanguageID() { return LanguageID; } public LanguagePATCHRequest setLanguageID(String value) { this.LanguageID = value; return this; } private static Object responseType = Language.class; public Object getResponseType() { return responseType; } } @Route(Path="/Languages/{LanguageID}", Verbs="DELETE") @ApiResponse(Description="No language with the RecID provided was found", StatusCode=404) // @ApiResponse(Description="Deleted OK", StatusCode=204) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class LanguageDELETERequest { public String LanguageID = null; public String getLanguageID() { return LanguageID; } public LanguageDELETERequest setLanguageID(String value) { this.LanguageID = value; return this; } } @Route(Path="/LogicalWarehouses/Current", Verbs="GET") @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) public static class LogicalWarehousesCurrentGETRequest implements IReturn { private static Object responseType = IN_Logical.class; public Object getResponseType() { return responseType; } } @Route(Path="/LogicalWarehouses/Current", Verbs="PATCH") @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="Warehouse changed OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) public static class LogicalWarehousesCurrentPATCHRequest implements IReturn { public String IN_LogicalID = null; public String getInLogicalID() { return IN_LogicalID; } public LogicalWarehousesCurrentPATCHRequest setInLogicalID(String value) { this.IN_LogicalID = value; return this; } private static Object responseType = IN_Logical.class; public Object getResponseType() { return responseType; } } @Route(Path="/PurchaseOrders/{PurchaseOrderID}", Verbs="GET") @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="No purchase order with the PurchaseOrderID provided was found", StatusCode=404) // @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) public static class PurchaseOrderGETRequest implements IReturn { public String PurchaseOrderID = null; public String getPurchaseOrderID() { return PurchaseOrderID; } public PurchaseOrderGETRequest setPurchaseOrderID(String value) { this.PurchaseOrderID = value; return this; } private static Object responseType = PurchaseOrder.class; public Object getResponseType() { return responseType; } } @Route(Path="/PurchaseOrders/", Verbs="POST") @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Created OK", StatusCode=201) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class PurchaseOrderPOSTRequest extends PurchaseOrder implements IReturn { public String CreditorRecID = null; public String getCreditorRecID() { return CreditorRecID; } public PurchaseOrderPOSTRequest setCreditorRecID(String value) { this.CreditorRecID = value; return this; } private static Object responseType = PurchaseOrder.class; public Object getResponseType() { return responseType; } } @Route(Path="/PurchaseOrders/{PurchaseOrderID}", Verbs="PATCH") @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="No purchase order with the PurchaseOrderID provided was found", StatusCode=404) // @ApiResponse(Description="Updated OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) public static class PurchaseOrderPATCHRequest extends PurchaseOrder implements IReturn { public String PurchaseOrderID = null; public String getPurchaseOrderID() { return PurchaseOrderID; } public PurchaseOrderPATCHRequest setPurchaseOrderID(String value) { this.PurchaseOrderID = value; return this; } private static Object responseType = PurchaseOrder.class; public Object getResponseType() { return responseType; } } @Route(Path="/PurchaseOrders/{PurchaseOrderID}", Verbs="DELETE") @ApiResponse(Description="Deleted OK", StatusCode=204) // @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="No purchase order with the PurchaseOrderID provided was found", StatusCode=404) // @ApiResponse(Description="Not authenticated", StatusCode=401) public static class PurchaseOrderDELETERequest { public String PurchaseOrderID = null; public String getPurchaseOrderID() { return PurchaseOrderID; } public PurchaseOrderDELETERequest setPurchaseOrderID(String value) { this.PurchaseOrderID = value; return this; } } @Route(Path="/PurchaseOrders/FromPurchaseOrderLines", Verbs="POST") @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="No purchase order line(s) with the OrderLineID provided was found", StatusCode=404) // @ApiResponse(Description="Created OK", StatusCode=201) public static class PurchaseOrderReceiveStockCREATEFromPOLinesRequest implements IReturn> { public ArrayList ReceivedPOLineQuantities = null; public Date ReceivedDate = null; public ArrayList getReceivedPOLineQuantities() { return ReceivedPOLineQuantities; } public PurchaseOrderReceiveStockCREATEFromPOLinesRequest setReceivedPOLineQuantities(ArrayList value) { this.ReceivedPOLineQuantities = value; return this; } public Date getReceivedDate() { return ReceivedDate; } public PurchaseOrderReceiveStockCREATEFromPOLinesRequest setReceivedDate(Date value) { this.ReceivedDate = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @Route(Path="/PurchaseOrders/Activate/{PurchaseOrderID}", Verbs="POST") @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="No purchase order with the PurchaseOrderID provided was found", StatusCode=404) // @ApiResponse(Description="Activated OK", StatusCode=204) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class PurchaseOrderACTIVATERequest implements IReturn { public String PurchaseOrderID = null; public String getPurchaseOrderID() { return PurchaseOrderID; } public PurchaseOrderACTIVATERequest setPurchaseOrderID(String value) { this.PurchaseOrderID = value; return this; } private static Object responseType = PurchaseOrder.class; public Object getResponseType() { return responseType; } } @Route(Path="/PurchaseOrders/{PurchaseOrderID}/Lines/{PurchaseOrderLineID}", Verbs="GET") @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="No line with the PurchaseOrderID or PurchaseOrderLineID provided was found", StatusCode=404) // @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="Read OK", StatusCode=200) public static class PurchaseOrderLineGETRequest implements IReturn { public String PurchaseOrderID = null; public String PurchaseOrderLineID = null; public String getPurchaseOrderID() { return PurchaseOrderID; } public PurchaseOrderLineGETRequest setPurchaseOrderID(String value) { this.PurchaseOrderID = value; return this; } public String getPurchaseOrderLineID() { return PurchaseOrderLineID; } public PurchaseOrderLineGETRequest setPurchaseOrderLineID(String value) { this.PurchaseOrderLineID = value; return this; } private static Object responseType = PurchaseOrderLine.class; public Object getResponseType() { return responseType; } } @Route(Path="/PurchaseOrders/{PurchaseOrderID}/Lines", Verbs="GET") @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="No line with the PurchaseOrderID provided was found", StatusCode=404) public static class PurchaseOrderLinesGETManyRequest implements IReturn> { public String PurchaseOrderID = null; public String getPurchaseOrderID() { return PurchaseOrderID; } public PurchaseOrderLinesGETManyRequest setPurchaseOrderID(String value) { this.PurchaseOrderID = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @Route(Path="/PurchaseOrders/{PurchaseOrderID}/Lines", Verbs="POST") @ApiResponse(Description="No line with the PurchaseOrderID or PurchaseOrderLineID provided was found", StatusCode=404) // @ApiResponse(Description="Created OK", StatusCode=201) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class PurchaseOrderLinePOSTRequest extends PurchaseOrderLine implements IReturn { public String PurchaseOrderID = null; public String getPurchaseOrderID() { return PurchaseOrderID; } public PurchaseOrderLinePOSTRequest setPurchaseOrderID(String value) { this.PurchaseOrderID = value; return this; } private static Object responseType = PurchaseOrderLine.class; public Object getResponseType() { return responseType; } } @Route(Path="/PurchaseOrders/{PurchaseOrderID}/Lines/{PurchaseOrderLineID}", Verbs="PATCH") @ApiResponse(Description="No line with the PurchaseOrderID or PurchaseOrderLineID provided was found", StatusCode=404) // @ApiResponse(Description="Updated OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class PurchaseOrderLinePATCHRequest extends PurchaseOrderLine implements IReturn { public String PurchaseOrderID = null; public String PurchaseOrderLineID = null; public String getPurchaseOrderID() { return PurchaseOrderID; } public PurchaseOrderLinePATCHRequest setPurchaseOrderID(String value) { this.PurchaseOrderID = value; return this; } public String getPurchaseOrderLineID() { return PurchaseOrderLineID; } public PurchaseOrderLinePATCHRequest setPurchaseOrderLineID(String value) { this.PurchaseOrderLineID = value; return this; } private static Object responseType = PurchaseOrderLine.class; public Object getResponseType() { return responseType; } } @Route(Path="/PurchaseOrders/{PurchaseOrderID}/Lines/{PurchaseOrderLineID}", Verbs="DELETE") @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="No line with the PurchaseOrderID or PurchaseOrderLineID provided was found", StatusCode=404) // @ApiResponse(Description="Deleted OK", StatusCode=204) // @ApiResponse(Description="Not authenticated", StatusCode=401) public static class PurchaseOrderLineDELETERequest extends PurchaseOrderLine { public String PurchaseOrderID = null; public String PurchaseOrderLineID = null; public String getPurchaseOrderID() { return PurchaseOrderID; } public PurchaseOrderLineDELETERequest setPurchaseOrderID(String value) { this.PurchaseOrderID = value; return this; } public String getPurchaseOrderLineID() { return PurchaseOrderLineID; } public PurchaseOrderLineDELETERequest setPurchaseOrderLineID(String value) { this.PurchaseOrderLineID = value; return this; } } @Route(Path="/PurchaseOrders/DocumentTypes/{DocumentTypeID}", Verbs="GET") @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="No PurchaseOrder document type with the DocumentTypeID provided was found", StatusCode=404) // @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class PurchaseOrderDocumentTypeGETRequest implements IReturn { public String DocumentTypeID = null; public String getDocumentTypeID() { return DocumentTypeID; } public PurchaseOrderDocumentTypeGETRequest setDocumentTypeID(String value) { this.DocumentTypeID = value; return this; } private static Object responseType = DocumentType.class; public Object getResponseType() { return responseType; } } @Route(Path="/PurchaseOrders/DocumentTypes", Verbs="GET") @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) public static class PurchaseOrderDocumentTypesGETManyRequest implements IReturn> { private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @Route(Path="/PurchaseOrders/DocumentTypes", Verbs="POST") @ApiResponse(Description="Created OK", StatusCode=201) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class PurchaseOrderDocumentTypePOSTRequest extends DocumentType implements IReturn { private static Object responseType = DocumentType.class; public Object getResponseType() { return responseType; } } @Route(Path="/PurchaseOrders/DocumentTypes/{DocumentTypeID}", Verbs="PATCH") @ApiResponse(Description="No PurchaseOrder document type with the DocumentTypeID provided was found", StatusCode=404) // @ApiResponse(Description="Updated OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class PurchaseOrderDocumentTypePATCHRequest extends DocumentType implements IReturn { public String DocumentTypeID = null; public String getDocumentTypeID() { return DocumentTypeID; } public PurchaseOrderDocumentTypePATCHRequest setDocumentTypeID(String value) { this.DocumentTypeID = value; return this; } private static Object responseType = DocumentType.class; public Object getResponseType() { return responseType; } } @Route(Path="/PurchaseOrders/DocumentTypes/{DocumentTypeID}", Verbs="DELETE") @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="No PurchaseOrder document type with the DocumentTypeID provided was found", StatusCode=404) // @ApiResponse(Description="Deleted OK", StatusCode=204) // @ApiResponse(Description="Not authenticated", StatusCode=401) public static class PurchaseOrderDocumentTypeDELETERequest { public String DocumentTypeID = null; public String getDocumentTypeID() { return DocumentTypeID; } public PurchaseOrderDocumentTypeDELETERequest setDocumentTypeID(String value) { this.DocumentTypeID = value; return this; } } @Route(Path="/PurchaseOrders/{PurchaseOrderID}/Documents/{DocumentID}", Verbs="GET") @ApiResponse(Description="No PurchaseOrder Document with the PurchaseOrderID or DocumentID provided was found", StatusCode=404) // @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class PurchaseOrderDocumentGETRequest implements IReturn { public String PurchaseOrderID = null; public String DocumentID = null; public String getPurchaseOrderID() { return PurchaseOrderID; } public PurchaseOrderDocumentGETRequest setPurchaseOrderID(String value) { this.PurchaseOrderID = value; return this; } public String getDocumentID() { return DocumentID; } public PurchaseOrderDocumentGETRequest setDocumentID(String value) { this.DocumentID = value; return this; } private static Object responseType = Document.class; public Object getResponseType() { return responseType; } } @Route(Path="/PurchaseOrders/{PurchaseOrderID}/Documents", Verbs="GET") @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="No PurchaseOrder with the PurchaseOrderID provided was found", StatusCode=404) // @ApiResponse(Description="Read OK", StatusCode=200) public static class PurchaseOrderDocumentsGETManyRequest implements IReturn> { public String PurchaseOrderID = null; public String getPurchaseOrderID() { return PurchaseOrderID; } public PurchaseOrderDocumentsGETManyRequest setPurchaseOrderID(String value) { this.PurchaseOrderID = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @Route(Path="/PurchaseOrders/{PurchaseOrderID}/Documents", Verbs="POST") @ApiResponse(Description="Created OK", StatusCode=201) // @ApiResponse(Description="No PurchaseOrder with the PurchaseOrderID provided was found", StatusCode=404) // @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="Not authenticated", StatusCode=401) public static class PurchaseOrderDocumentPOSTRequest extends Document implements IReturn { public String PurchaseOrderID = null; public String getPurchaseOrderID() { return PurchaseOrderID; } public PurchaseOrderDocumentPOSTRequest setPurchaseOrderID(String value) { this.PurchaseOrderID = value; return this; } private static Object responseType = Document.class; public Object getResponseType() { return responseType; } } @Route(Path="/PurchaseOrders/{PurchaseOrderID}/Documents/{DocumentID}", Verbs="PATCH") @ApiResponse(Description="Updated OK", StatusCode=200) // @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="No PurchaseOrder with the PurchaseOrderID provided was found", StatusCode=404) // @ApiResponse(Description="Not authenticated", StatusCode=401) public static class PurchaseOrderDocumentPATCHRequest extends Document implements IReturn { public String PurchaseOrderID = null; public String DocumentID = null; public String getPurchaseOrderID() { return PurchaseOrderID; } public PurchaseOrderDocumentPATCHRequest setPurchaseOrderID(String value) { this.PurchaseOrderID = value; return this; } public String getDocumentID() { return DocumentID; } public PurchaseOrderDocumentPATCHRequest setDocumentID(String value) { this.DocumentID = value; return this; } private static Object responseType = Document.class; public Object getResponseType() { return responseType; } } @Route(Path="/PurchaseOrders/{PurchaseOrderID}/Documents/{DocumentID}", Verbs="DELETE") @ApiResponse(Description="Deleted OK", StatusCode=204) // @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="No PurchaseOrder with the PurchaseOrderID provided was found", StatusCode=404) public static class PurchaseOrderDocumentDELETERequest { public String PurchaseOrderID = null; public String DocumentID = null; public String getPurchaseOrderID() { return PurchaseOrderID; } public PurchaseOrderDocumentDELETERequest setPurchaseOrderID(String value) { this.PurchaseOrderID = value; return this; } public String getDocumentID() { return DocumentID; } public PurchaseOrderDocumentDELETERequest setDocumentID(String value) { this.DocumentID = value; return this; } } @Route(Path="/PurchaseOrders/NoteTypes/{NoteTypeID}", Verbs="GET") @ApiResponse(Description="No Purchase Order Note Type with the NoteTypeID provided was found", StatusCode=404) // @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class PurchaseOrderNoteTypeGETRequest implements IReturn { public String NoteTypeID = null; public String getNoteTypeID() { return NoteTypeID; } public PurchaseOrderNoteTypeGETRequest setNoteTypeID(String value) { this.NoteTypeID = value; return this; } private static Object responseType = NoteType.class; public Object getResponseType() { return responseType; } } @Route(Path="/PurchaseOrders/NoteTypes", Verbs="GET") @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="Read OK", StatusCode=200) public static class PurchaseOrderNoteTypesGETManyRequest implements IReturn> { private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @Route(Path="/PurchaseOrders/NoteTypes", Verbs="POST") @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Created OK", StatusCode=201) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class PurchaseOrderNoteTypePOSTRequest extends NoteType implements IReturn { private static Object responseType = NoteType.class; public Object getResponseType() { return responseType; } } @Route(Path="/PurchaseOrders/NoteTypes/{NoteTypeID}", Verbs="PATCH") @ApiResponse(Description="Updated OK", StatusCode=200) // @ApiResponse(Description="No Purchase Order Note Type with the NoteTypeID provided was found", StatusCode=404) // @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="Not authenticated", StatusCode=401) public static class PurchaseOrderNoteTypePATCHRequest extends NoteType implements IReturn { public String NoteTypeID = null; public String getNoteTypeID() { return NoteTypeID; } public PurchaseOrderNoteTypePATCHRequest setNoteTypeID(String value) { this.NoteTypeID = value; return this; } private static Object responseType = NoteType.class; public Object getResponseType() { return responseType; } } @Route(Path="/PurchaseOrders/NoteTypes/{NoteTypeID}", Verbs="DELETE") @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Deleted OK", StatusCode=204) // @ApiResponse(Description="No Purchase Order Note Type with the NoteTypeID provided was found", StatusCode=404) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class PurchaseOrderNoteTypeDELETERequest { public String NoteTypeID = null; public String getNoteTypeID() { return NoteTypeID; } public PurchaseOrderNoteTypeDELETERequest setNoteTypeID(String value) { this.NoteTypeID = value; return this; } } @Route(Path="/PurchaseOrders/{PurchaseOrderID}/Notes/{NoteID}", Verbs="GET") @ApiResponse(Description="No Purchase Order Note with the PurchaseOrderID or NoteID provided was found", StatusCode=404) // @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class PurchaseOrderNoteGETRequest implements IReturn { public String PurchaseOrderID = null; public String NoteID = null; public String getPurchaseOrderID() { return PurchaseOrderID; } public PurchaseOrderNoteGETRequest setPurchaseOrderID(String value) { this.PurchaseOrderID = value; return this; } public String getNoteID() { return NoteID; } public PurchaseOrderNoteGETRequest setNoteID(String value) { this.NoteID = value; return this; } private static Object responseType = Note.class; public Object getResponseType() { return responseType; } } @Route(Path="/PurchaseOrders/{PurchaseOrderID}/Notes", Verbs="GET") @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="No Purchase Order with the PurchaseOrderID provided was found", StatusCode=404) // @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) public static class PurchaseOrderNotesGETManyRequest implements IReturn> { public String PurchaseOrderID = null; public String getPurchaseOrderID() { return PurchaseOrderID; } public PurchaseOrderNotesGETManyRequest setPurchaseOrderID(String value) { this.PurchaseOrderID = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @Route(Path="/PurchaseOrders/{PurchaseOrderID}/Notes", Verbs="POST") @ApiResponse(Description="Created OK", StatusCode=201) // @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="No Purchase Order with the PurchaseOrderID provided was found", StatusCode=404) // @ApiResponse(Description="Not authenticated", StatusCode=401) public static class PurchaseOrderNotePOSTRequest extends Note implements IReturn { public String PurchaseOrderID = null; public String getPurchaseOrderID() { return PurchaseOrderID; } public PurchaseOrderNotePOSTRequest setPurchaseOrderID(String value) { this.PurchaseOrderID = value; return this; } private static Object responseType = Note.class; public Object getResponseType() { return responseType; } } @Route(Path="/PurchaseOrders/{PurchaseOrderID}/Notes/{NoteID}", Verbs="PATCH") @ApiResponse(Description="Updated OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="No Purchase Order with the PurchaseOrderID provided was found", StatusCode=404) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class PurchaseOrderNotePATCHRequest extends Note implements IReturn { public String PurchaseOrderID = null; public String NoteID = null; public String getPurchaseOrderID() { return PurchaseOrderID; } public PurchaseOrderNotePATCHRequest setPurchaseOrderID(String value) { this.PurchaseOrderID = value; return this; } public String getNoteID() { return NoteID; } public PurchaseOrderNotePATCHRequest setNoteID(String value) { this.NoteID = value; return this; } private static Object responseType = Note.class; public Object getResponseType() { return responseType; } } @Route(Path="/PurchaseOrders/{PurchaseOrderID}/Notes/{NoteID}", Verbs="DELETE") @ApiResponse(Description="No Purchase Order with the PurchaseOrderID provided was found", StatusCode=404) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="Deleted OK", StatusCode=204) public static class PurchaseOrderNoteDELETERequest { public String PurchaseOrderID = null; public String NoteID = null; public String getPurchaseOrderID() { return PurchaseOrderID; } public PurchaseOrderNoteDELETERequest setPurchaseOrderID(String value) { this.PurchaseOrderID = value; return this; } public String getNoteID() { return NoteID; } public PurchaseOrderNoteDELETERequest setNoteID(String value) { this.NoteID = value; return this; } } @Route(Path="/PurchaseInvoices/{PurchaseInvoiceID}", Verbs="GET") @ApiResponse(Description="No purchase invoice with the PurchaseInvoiceID provided was found", StatusCode=404) // @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class PurchaseInvoiceGETRequest implements IReturn { public String PurchaseInvoiceID = null; public String getPurchaseInvoiceID() { return PurchaseInvoiceID; } public PurchaseInvoiceGETRequest setPurchaseInvoiceID(String value) { this.PurchaseInvoiceID = value; return this; } private static Object responseType = PurchaseInvoice.class; public Object getResponseType() { return responseType; } } @Route(Path="/PurchaseInvoices", Verbs="POST") @ApiResponse(Description="Created OK", StatusCode=201) // @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="Not authenticated", StatusCode=401) public static class PurchaseInvoicePOSTRequest extends PurchaseInvoice implements IReturn { public String CreditorID = null; public String getCreditorID() { return CreditorID; } public PurchaseInvoicePOSTRequest setCreditorID(String value) { this.CreditorID = value; return this; } private static Object responseType = PurchaseInvoice.class; public Object getResponseType() { return responseType; } } @Route(Path="/PurchaseInvoices/{PurchaseInvoiceID}", Verbs="PATCH") @ApiResponse(Description="No purchase invoice with the PurchaseInvoiceID provided was found", StatusCode=404) // @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="Created OK", StatusCode=201) // @ApiResponse(Description="Not authenticated", StatusCode=401) public static class PurchaseInvoicePATCHRequest extends PurchaseInvoice implements IReturn { public String PurchaseInvoiceID = null; public String getPurchaseInvoiceID() { return PurchaseInvoiceID; } public PurchaseInvoicePATCHRequest setPurchaseInvoiceID(String value) { this.PurchaseInvoiceID = value; return this; } private static Object responseType = PurchaseInvoice.class; public Object getResponseType() { return responseType; } } @Route(Path="/PurchaseInvoices/{PurchaseInvoiceID}", Verbs="DELETE") @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="Deleted OK", StatusCode=204) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="No purchase invoice with the PurchaseInvoiceID provided was found", StatusCode=404) public static class PurchaseInvoiceDELETERequest { public String PurchaseInvoiceID = null; public String getPurchaseInvoiceID() { return PurchaseInvoiceID; } public PurchaseInvoiceDELETERequest setPurchaseInvoiceID(String value) { this.PurchaseInvoiceID = value; return this; } } @Route(Path="/PurchaseInvoices/FromGoodsReceivedNotes/{GRNNos}", Verbs="POST") @ApiResponse(Description="No Goods Received Note(s) with the GRN No(s). provided was/were found", StatusCode=404) // @ApiResponse(Description="Created OK", StatusCode=201) // @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="Not authenticated", StatusCode=401) public static class PurchaseInvoiceCREATEFromGRNRequest implements IReturn { public ArrayList GRNNos = null; public ArrayList getGrnNos() { return GRNNos; } public PurchaseInvoiceCREATEFromGRNRequest setGrnNos(ArrayList value) { this.GRNNos = value; return this; } private static Object responseType = PurchaseInvoice.class; public Object getResponseType() { return responseType; } } @Route(Path="/PurchaseInvoices/Activate/{PurchaseInvoiceID}", Verbs="POST") @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="No purchase invoice with the PurchaseInvoiceID provided was found", StatusCode=404) // @ApiResponse(Description="Activated OK", StatusCode=204) // @ApiResponse(Description="Not authenticated", StatusCode=401) public static class PurchaseInvoiceACTIVATERequest implements IReturn { public String PurchaseInvoiceID = null; public String getPurchaseInvoiceID() { return PurchaseInvoiceID; } public PurchaseInvoiceACTIVATERequest setPurchaseInvoiceID(String value) { this.PurchaseInvoiceID = value; return this; } private static Object responseType = PurchaseInvoice.class; public Object getResponseType() { return responseType; } } @Route(Path="/PurchaseInvoices/{PurchaseInvoiceID}/GoodsReceivedNotes/{GRNID}", Verbs="GET") @ApiResponse(Description="No goods received note with the PurchaseInvoiceID or OrderID provided was found", StatusCode=404) // @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class PurchaseInvoiceGoodsReceivedNoteGETRequest implements IReturn { public String PurchaseInvoiceID = null; public String GRNID = null; public String getPurchaseInvoiceID() { return PurchaseInvoiceID; } public PurchaseInvoiceGoodsReceivedNoteGETRequest setPurchaseInvoiceID(String value) { this.PurchaseInvoiceID = value; return this; } public String getGrnid() { return GRNID; } public PurchaseInvoiceGoodsReceivedNoteGETRequest setGrnid(String value) { this.GRNID = value; return this; } private static Object responseType = PurchaseInvoiceGoodsReceivedNoteInvoiced.class; public Object getResponseType() { return responseType; } } @Route(Path="/PurchaseInvoices/{PurchaseInvoiceID}/GoodsReceivedNotes", Verbs="GET") @ApiResponse(Description="No goods received note with the PurchaseInvoiceID provided was found", StatusCode=404) // @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="Not authenticated", StatusCode=401) public static class PurchaseInvoiceGoodsReceivedNotesGETManyRequest implements IReturn> { public String PurchaseInvoiceID = null; public String getPurchaseInvoiceID() { return PurchaseInvoiceID; } public PurchaseInvoiceGoodsReceivedNotesGETManyRequest setPurchaseInvoiceID(String value) { this.PurchaseInvoiceID = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @Route(Path="/PurchaseInvoices/{PurchaseInvoiceID}/GoodsReceivedNotes", Verbs="POST") @ApiResponse(Description="Created OK", StatusCode=201) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="No goods received note with the PurchaseInvoiceID or GRNID provided was found", StatusCode=404) public static class PurchaseInvoiceGoodsReceivedNotePOSTRequest extends PurchaseInvoiceGoodsReceivedNoteInvoiced implements IReturn { public String PurchaseInvoiceID = null; public String GRNID = null; public String getPurchaseInvoiceID() { return PurchaseInvoiceID; } public PurchaseInvoiceGoodsReceivedNotePOSTRequest setPurchaseInvoiceID(String value) { this.PurchaseInvoiceID = value; return this; } public String getGrnid() { return GRNID; } public PurchaseInvoiceGoodsReceivedNotePOSTRequest setGrnid(String value) { this.GRNID = value; return this; } private static Object responseType = PurchaseInvoiceGoodsReceivedNoteInvoiced.class; public Object getResponseType() { return responseType; } } @Route(Path="/PurchaseInvoices/{PurchaseInvoiceID}/GoodsReceivedNotes/{GRNID}", Verbs="DELETE") @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="No goods received note with the PurchaseInvoiceID or GRNID provided was found", StatusCode=404) // @ApiResponse(Description="Deleted OK", StatusCode=204) public static class PurchaseInvoiceGoodsReceivedNoteDELETERequest extends PurchaseInvoiceGoodsReceivedNoteInvoiced { public String PurchaseInvoiceID = null; public String GRNID = null; public String getPurchaseInvoiceID() { return PurchaseInvoiceID; } public PurchaseInvoiceGoodsReceivedNoteDELETERequest setPurchaseInvoiceID(String value) { this.PurchaseInvoiceID = value; return this; } public String getGrnid() { return GRNID; } public PurchaseInvoiceGoodsReceivedNoteDELETERequest setGrnid(String value) { this.GRNID = value; return this; } } @Route(Path="/PurchaseInvoices/{PurchaseInvoiceID}/Lines/{PurchaseInvoiceLineID}", Verbs="GET") @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="No line with the PurchaseInvoiceID or PurchaseInvoiceLineID provided was found", StatusCode=404) public static class PurchaseInvoiceLineGETRequest implements IReturn { public String PurchaseInvoiceID = null; public String PurchaseInvoiceLineID = null; public String getPurchaseInvoiceID() { return PurchaseInvoiceID; } public PurchaseInvoiceLineGETRequest setPurchaseInvoiceID(String value) { this.PurchaseInvoiceID = value; return this; } public String getPurchaseInvoiceLineID() { return PurchaseInvoiceLineID; } public PurchaseInvoiceLineGETRequest setPurchaseInvoiceLineID(String value) { this.PurchaseInvoiceLineID = value; return this; } private static Object responseType = PurchaseInvoiceLine.class; public Object getResponseType() { return responseType; } } @Route(Path="/PurchaseInvoices/{PurchaseInvoiceID}/PurchaseInvoiceLineID", Verbs="GET") @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="No line with the PurchaseInvoiceID provided was found", StatusCode=404) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class PurchaseInvoiceLinesGETManyRequest implements IReturn> { public String PurchaseInvoiceID = null; public String getPurchaseInvoiceID() { return PurchaseInvoiceID; } public PurchaseInvoiceLinesGETManyRequest setPurchaseInvoiceID(String value) { this.PurchaseInvoiceID = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @Route(Path="/PurchaseInvoices/{PurchaseInvoiceID}/Lines/{PurchaseInvoiceLineID}", Verbs="PATCH") @ApiResponse(Description="Updated OK", StatusCode=200) // @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="No line with the PurchaseInvoiceID or PurchaseInvoiceLineID provided was found", StatusCode=404) // @ApiResponse(Description="Not authenticated", StatusCode=401) public static class PurchaseInvoiceLinePATCHRequest extends PurchaseInvoiceLine implements IReturn { public String PurchaseInvoiceID = null; public String PurchaseInvoiceLineID = null; public String getPurchaseInvoiceID() { return PurchaseInvoiceID; } public PurchaseInvoiceLinePATCHRequest setPurchaseInvoiceID(String value) { this.PurchaseInvoiceID = value; return this; } public String getPurchaseInvoiceLineID() { return PurchaseInvoiceLineID; } public PurchaseInvoiceLinePATCHRequest setPurchaseInvoiceLineID(String value) { this.PurchaseInvoiceLineID = value; return this; } private static Object responseType = PurchaseInvoiceLine.class; public Object getResponseType() { return responseType; } } @Route(Path="/Regions/{RegionID}", Verbs="GET") @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="No region with the RegionID provided was found", StatusCode=404) // @ApiResponse(Description="Read OK", StatusCode=200) public static class RegionGETRequest implements IReturn { public String RegionID = null; public String getRegionID() { return RegionID; } public RegionGETRequest setRegionID(String value) { this.RegionID = value; return this; } private static Object responseType = Region.class; public Object getResponseType() { return responseType; } } @Route(Path="/Regions", Verbs="POST") @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="Created OK", StatusCode=201) public static class RegionPOSTRequest extends Region implements IReturn { private static Object responseType = Region.class; public Object getResponseType() { return responseType; } } @Route(Path="/Regions/{RegionID}", Verbs="PATCH") @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="No region with the RegionID provided was found", StatusCode=404) // @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="Updated OK", StatusCode=200) public static class RegionPATCHRequest extends Region implements IReturn { public String RegionID = null; public String getRegionID() { return RegionID; } public RegionPATCHRequest setRegionID(String value) { this.RegionID = value; return this; } private static Object responseType = Region.class; public Object getResponseType() { return responseType; } } @Route(Path="/Regions/{RegionID}", Verbs="DELETE") @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="No region with the RegionID provided was found", StatusCode=404) // @ApiResponse(Description="Deleted OK", StatusCode=204) // @ApiResponse(Description="Not authenticated", StatusCode=401) public static class RegionDELETERequest { public String RegionID = null; public String getRegionID() { return RegionID; } public RegionDELETERequest setRegionID(String value) { this.RegionID = value; return this; } } @Route(Path="/Reports/{ReportID}/PDF/Download", Verbs="GET") @ApiResponse(Description="No report with the ReportID provided was found", StatusCode=404) // @ApiResponse(Description="OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class ReportsPDFGETRequest implements IReturn { public String ReportID = null; public ArrayList ReportParameters = null; public Boolean AsAttachment = null; public String getReportID() { return ReportID; } public ReportsPDFGETRequest setReportID(String value) { this.ReportID = value; return this; } public ArrayList getReportParameters() { return ReportParameters; } public ReportsPDFGETRequest setReportParameters(ArrayList value) { this.ReportParameters = value; return this; } public Boolean isAsAttachment() { return AsAttachment; } public ReportsPDFGETRequest setAsAttachment(Boolean value) { this.AsAttachment = value; return this; } private static Object responseType = IHttpResult.class; public Object getResponseType() { return responseType; } } @Route(Path="/RestPaths", Verbs="GET") @ApiResponse(Description="Read", StatusCode=200) public static class RestPathsGETManyRequest implements IReturn> { private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @Route(Path="/SalesOrders/{InvoiceID}", Verbs="GET") @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="No Sales Order with the InvoiceID provided was found", StatusCode=404) // @ApiResponse(Description="Read OK", StatusCode=200) public static class SalesOrderGETRequest implements IReturn { public String InvoiceID = null; public String getInvoiceID() { return InvoiceID; } public SalesOrderGETRequest setInvoiceID(String value) { this.InvoiceID = value; return this; } private static Object responseType = SalesOrder.class; public Object getResponseType() { return responseType; } } @Route(Path="/SalesOrders", Verbs="POST") @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Created OK", StatusCode=201) public static class SalesOrderPOSTRequest extends SalesOrder implements IReturn { private static Object responseType = SalesOrder.class; public Object getResponseType() { return responseType; } } @Route(Path="/SalesOrders/{InvoiceID}", Verbs="PATCH") @ApiResponse(Description="No Sales Order with the InvoiceID provided was found", StatusCode=404) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="Updated OK", StatusCode=200) public static class SalesOrderPATCHRequest extends SalesOrder implements IReturn { public String InvoiceID = null; public String getInvoiceID() { return InvoiceID; } public SalesOrderPATCHRequest setInvoiceID(String value) { this.InvoiceID = value; return this; } private static Object responseType = SalesOrder.class; public Object getResponseType() { return responseType; } } @Route(Path="/SalesOrders/{InvoiceID}/Process", Verbs="GET") @ApiResponse(Description="Processed OK", StatusCode=200) // @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="No Sales Order with the InvoiceID provided was found", StatusCode=404) // @ApiResponse(Description="Not authenticated", StatusCode=401) public static class SalesOrderPROCESSRequest implements IReturn { public String InvoiceID = null; public String getInvoiceID() { return InvoiceID; } public SalesOrderPROCESSRequest setInvoiceID(String value) { this.InvoiceID = value; return this; } private static Object responseType = SalesOrder.class; public Object getResponseType() { return responseType; } } @Route(Path="/SalesOrders/{InvoiceID}/CustomFieldValues", Verbs="GET") @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="No Sales Order with the InvoiceID provided was found", StatusCode=404) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class SalesOrderCustomFieldValuesGETManyRequest implements IReturn> { public String InvoiceID = null; public String getInvoiceID() { return InvoiceID; } public SalesOrderCustomFieldValuesGETManyRequest setInvoiceID(String value) { this.InvoiceID = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @Route(Path="/SalesOrders/{InvoiceID}/CustomFieldValues/{SettingID}", Verbs="GET") @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="No Sales Order Custom Field Value with the InvoiceID or SettingID provided was found", StatusCode=404) // @ApiResponse(Description="Read OK", StatusCode=200) public static class SalesOrderCustomFieldValueGETRequest implements IReturn { public String InvoiceID = null; public String SettingID = null; public String getInvoiceID() { return InvoiceID; } public SalesOrderCustomFieldValueGETRequest setInvoiceID(String value) { this.InvoiceID = value; return this; } public String getSettingID() { return SettingID; } public SalesOrderCustomFieldValueGETRequest setSettingID(String value) { this.SettingID = value; return this; } private static Object responseType = CustomFieldValue.class; public Object getResponseType() { return responseType; } } @Route(Path="/SalesOrders/{InvoiceID}/CustomFieldValues/{SettingID}", Verbs="PATCH") @ApiResponse(Description="Updated OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="No Sales Order Custom Field Value with the InvoiceID or SettingID provided was found", StatusCode=404) public static class SalesOrderCustomFieldValuePATCHRequest extends CustomFieldValue implements IReturn { public String InvoiceID = null; public String SettingID = null; public String getInvoiceID() { return InvoiceID; } public SalesOrderCustomFieldValuePATCHRequest setInvoiceID(String value) { this.InvoiceID = value; return this; } public String getSettingID() { return SettingID; } public SalesOrderCustomFieldValuePATCHRequest setSettingID(String value) { this.SettingID = value; return this; } private static Object responseType = CustomFieldValue.class; public Object getResponseType() { return responseType; } } @Route(Path="/SalesOrders/CustomFields", Verbs="GET") @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class SalesOrderCustomFieldsGETManyRequest implements IReturn> { private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @Route(Path="/SalesOrders/DocumentTypes/{DocumentTypeID}", Verbs="GET") @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="No SalesOrder document type with the DocumentTypeID provided was found", StatusCode=404) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class SalesOrderDocumentTypeGETRequest implements IReturn { public String DocumentTypeID = null; public String getDocumentTypeID() { return DocumentTypeID; } public SalesOrderDocumentTypeGETRequest setDocumentTypeID(String value) { this.DocumentTypeID = value; return this; } private static Object responseType = DocumentType.class; public Object getResponseType() { return responseType; } } @Route(Path="/SalesOrders/DocumentTypes", Verbs="GET") @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Read OK", StatusCode=200) public static class SalesOrderDocumentTypesGETManyRequest implements IReturn> { private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @Route(Path="/SalesOrders/DocumentTypes", Verbs="POST") @ApiResponse(Description="Created OK", StatusCode=201) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class SalesOrderDocumentTypePOSTRequest extends DocumentType implements IReturn { private static Object responseType = DocumentType.class; public Object getResponseType() { return responseType; } } @Route(Path="/SalesOrders/DocumentTypes/{DocumentTypeID}", Verbs="PATCH") @ApiResponse(Description="Updated OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="No SalesOrder document type with the DocumentTypeID provided was found", StatusCode=404) public static class SalesOrderDocumentTypePATCHRequest extends DocumentType implements IReturn { public String DocumentTypeID = null; public String getDocumentTypeID() { return DocumentTypeID; } public SalesOrderDocumentTypePATCHRequest setDocumentTypeID(String value) { this.DocumentTypeID = value; return this; } private static Object responseType = DocumentType.class; public Object getResponseType() { return responseType; } } @Route(Path="/SalesOrders/DocumentTypes/{DocumentTypeID}", Verbs="DELETE") @ApiResponse(Description="No SalesOrder document type with the DocumentTypeID provided was found", StatusCode=404) // @ApiResponse(Description="Deleted OK", StatusCode=204) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class SalesOrderDocumentTypeDELETERequest { public String DocumentTypeID = null; public String getDocumentTypeID() { return DocumentTypeID; } public SalesOrderDocumentTypeDELETERequest setDocumentTypeID(String value) { this.DocumentTypeID = value; return this; } } @Route(Path="/SalesOrders/{InvoiceID}/Documents/{DocumentID}", Verbs="GET") @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="No SalesOrder Document with the InvoiceID or DocumentID provided was found", StatusCode=404) public static class SalesOrderDocumentGETRequest implements IReturn { public String InvoiceID = null; public String DocumentID = null; public String getInvoiceID() { return InvoiceID; } public SalesOrderDocumentGETRequest setInvoiceID(String value) { this.InvoiceID = value; return this; } public String getDocumentID() { return DocumentID; } public SalesOrderDocumentGETRequest setDocumentID(String value) { this.DocumentID = value; return this; } private static Object responseType = Document.class; public Object getResponseType() { return responseType; } } @Route(Path="/SalesOrders/{InvoiceID}/Documents", Verbs="GET") @ApiResponse(Description="No SalesOrder with the InvoiceID provided was found", StatusCode=404) // @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class SalesOrderDocumentsGETManyRequest implements IReturn> { public String InvoiceID = null; public String getInvoiceID() { return InvoiceID; } public SalesOrderDocumentsGETManyRequest setInvoiceID(String value) { this.InvoiceID = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @Route(Path="/SalesOrders/{InvoiceID}/Documents", Verbs="POST") @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="Created OK", StatusCode=201) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="No SalesOrder with the InvoiceID provided was found", StatusCode=404) public static class SalesOrderDocumentPOSTRequest extends Document implements IReturn { public String InvoiceID = null; public String getInvoiceID() { return InvoiceID; } public SalesOrderDocumentPOSTRequest setInvoiceID(String value) { this.InvoiceID = value; return this; } private static Object responseType = Document.class; public Object getResponseType() { return responseType; } } @Route(Path="/SalesOrders/{InvoiceID}/Documents/{DocumentID}", Verbs="PATCH") @ApiResponse(Description="Updated OK", StatusCode=200) // @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="No SalesOrder with the InvoiceID provided was found", StatusCode=404) // @ApiResponse(Description="Not authenticated", StatusCode=401) public static class SalesOrderDocumentPATCHRequest extends Document implements IReturn { public String InvoiceID = null; public String DocumentID = null; public String getInvoiceID() { return InvoiceID; } public SalesOrderDocumentPATCHRequest setInvoiceID(String value) { this.InvoiceID = value; return this; } public String getDocumentID() { return DocumentID; } public SalesOrderDocumentPATCHRequest setDocumentID(String value) { this.DocumentID = value; return this; } private static Object responseType = Document.class; public Object getResponseType() { return responseType; } } @Route(Path="/SalesOrders/{InvoiceID}/Documents/{DocumentID}", Verbs="DELETE") @ApiResponse(Description="Deleted OK", StatusCode=204) // @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="No SalesOrder with the InvoiceID provided was found", StatusCode=404) // @ApiResponse(Description="Not authenticated", StatusCode=401) public static class SalesOrderDocumentDELETERequest { public String InvoiceID = null; public String DocumentID = null; public String getInvoiceID() { return InvoiceID; } public SalesOrderDocumentDELETERequest setInvoiceID(String value) { this.InvoiceID = value; return this; } public String getDocumentID() { return DocumentID; } public SalesOrderDocumentDELETERequest setDocumentID(String value) { this.DocumentID = value; return this; } } @Route(Path="/SalesOrders/{InvoiceID}/Historys/{InvoiceHistoryID}", Verbs="GET") @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="No SalesOrder History with the InvoiceID or HistoryID provided was found", StatusCode=404) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class SalesOrderHistorysGETRequest implements IReturn { public String InvoiceID = null; public String InvoiceHistoryID = null; public String getInvoiceID() { return InvoiceID; } public SalesOrderHistorysGETRequest setInvoiceID(String value) { this.InvoiceID = value; return this; } public String getInvoiceHistoryID() { return InvoiceHistoryID; } public SalesOrderHistorysGETRequest setInvoiceHistoryID(String value) { this.InvoiceHistoryID = value; return this; } private static Object responseType = SalesOrderHistory.class; public Object getResponseType() { return responseType; } } @Route(Path="/SalesOrders/{InvoiceID}/Historys", Verbs="GET") @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="No SalesOrder with the InvoiceID provided was found", StatusCode=404) // @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class SalesOrderHistorysGETManyRequest implements IReturn> { public String InvoiceID = null; public String getInvoiceID() { return InvoiceID; } public SalesOrderHistorysGETManyRequest setInvoiceID(String value) { this.InvoiceID = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @Route(Path="/SalesOrders/{InvoiceID}/Historys/{InvoiceHistoryID}", Verbs="PATCH") @ApiResponse(Description="Updated OK", StatusCode=200) // @ApiResponse(Description="No SalesOrder with the InvoiceID, Or InvoiceHistoryID provided was found", StatusCode=404) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class SalesOrderHistorysPATCHRequest extends SalesOrderHistory implements IReturn { public String InvoiceID = null; public String InvoiceHistoryID = null; public String getInvoiceID() { return InvoiceID; } public SalesOrderHistorysPATCHRequest setInvoiceID(String value) { this.InvoiceID = value; return this; } public String getInvoiceHistoryID() { return InvoiceHistoryID; } public SalesOrderHistorysPATCHRequest setInvoiceHistoryID(String value) { this.InvoiceHistoryID = value; return this; } private static Object responseType = SalesOrderHistory.class; public Object getResponseType() { return responseType; } } @Route(Path="/SalesOrders/{InvoiceID}/Historys/{InvoiceHistoryID}/Carrier/ConsignmentNotes", Verbs="GET") @ApiResponse(Description="No SalesOrder History with the InvoiceID or HistoryID provided was found", StatusCode=404) // @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class SalesOrderHistoryConsignmentNotesGETManyRequest implements IReturn> { public String InvoiceID = null; public String InvoiceHistoryID = null; public String getInvoiceID() { return InvoiceID; } public SalesOrderHistoryConsignmentNotesGETManyRequest setInvoiceID(String value) { this.InvoiceID = value; return this; } public String getInvoiceHistoryID() { return InvoiceHistoryID; } public SalesOrderHistoryConsignmentNotesGETManyRequest setInvoiceHistoryID(String value) { this.InvoiceHistoryID = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @Route(Path="/SalesOrders/{InvoiceID}/Historys/{InvoiceHistoryID}/Carrier/ConsignmentNotes/{ConsignmentNoteID}", Verbs="GET") @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="No SalesOrder consignment note with ConsignmentNoteID, InvoiceID or HistoryID provided was found", StatusCode=404) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class SalesOrderHistoryConsignmentNotesGETRequest implements IReturn { public String InvoiceID = null; public String InvoiceHistoryID = null; public String ConsignmentNoteID = null; public String getInvoiceID() { return InvoiceID; } public SalesOrderHistoryConsignmentNotesGETRequest setInvoiceID(String value) { this.InvoiceID = value; return this; } public String getInvoiceHistoryID() { return InvoiceHistoryID; } public SalesOrderHistoryConsignmentNotesGETRequest setInvoiceHistoryID(String value) { this.InvoiceHistoryID = value; return this; } public String getConsignmentNoteID() { return ConsignmentNoteID; } public SalesOrderHistoryConsignmentNotesGETRequest setConsignmentNoteID(String value) { this.ConsignmentNoteID = value; return this; } private static Object responseType = SalesOrderConsignmentNote.class; public Object getResponseType() { return responseType; } } @Route(Path="/SalesOrders/{InvoiceID}/Historys/{InvoiceHistoryID}/Carrier/ConsignmentNotes", Verbs="POST") @ApiResponse(Description="No SalesOrder History with the InvoiceID or HistoryID provided was found", StatusCode=404) // @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="Created OK", StatusCode=201) // @ApiResponse(Description="Not authenticated", StatusCode=401) public static class SalesOrderHistoryConsignmentNotesPOSTRequest extends SalesOrderConsignmentNote implements IReturn { public String InvoiceID = null; public String InvoiceHistoryID = null; public String getInvoiceID() { return InvoiceID; } public SalesOrderHistoryConsignmentNotesPOSTRequest setInvoiceID(String value) { this.InvoiceID = value; return this; } public String getInvoiceHistoryID() { return InvoiceHistoryID; } public SalesOrderHistoryConsignmentNotesPOSTRequest setInvoiceHistoryID(String value) { this.InvoiceHistoryID = value; return this; } private static Object responseType = SalesOrderConsignmentNote.class; public Object getResponseType() { return responseType; } } @Route(Path="/SalesOrders/{InvoiceID}/Historys/{InvoiceHistoryID}/Carrier/ConsignmentNotes/{ConsignmentNoteID}", Verbs="PATCH") @ApiResponse(Description="Updated OK", StatusCode=200) // @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="No SalesOrder consignment note with ConsignmentNoteID, InvoiceID or HistoryID provided was found", StatusCode=404) // @ApiResponse(Description="Not authenticated", StatusCode=401) public static class SalesOrderHistoryConsignmentNotesPATCHRequest extends SalesOrderConsignmentNote implements IReturn { public String InvoiceID = null; public String InvoiceHistoryID = null; public String ConsignmentNoteID = null; public String getInvoiceID() { return InvoiceID; } public SalesOrderHistoryConsignmentNotesPATCHRequest setInvoiceID(String value) { this.InvoiceID = value; return this; } public String getInvoiceHistoryID() { return InvoiceHistoryID; } public SalesOrderHistoryConsignmentNotesPATCHRequest setInvoiceHistoryID(String value) { this.InvoiceHistoryID = value; return this; } public String getConsignmentNoteID() { return ConsignmentNoteID; } public SalesOrderHistoryConsignmentNotesPATCHRequest setConsignmentNoteID(String value) { this.ConsignmentNoteID = value; return this; } private static Object responseType = SalesOrderConsignmentNote.class; public Object getResponseType() { return responseType; } } @Route(Path="/SalesOrders/{InvoiceID}/Historys/{InvoiceHistoryID}/Carrier/ConsignmentNotes/{ConsignmentNoteID}", Verbs="DELETE") @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Deleted OK", StatusCode=204) // @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="No SalesOrder consignment note with ConsignmentNoteID, InvoiceID or HistoryID provided was found", StatusCode=404) public static class SalesOrderHistoryConsignmentNotesDELETERequest { public String InvoiceID = null; public String InvoiceHistoryID = null; public String ConsignmentNoteID = null; public String getInvoiceID() { return InvoiceID; } public SalesOrderHistoryConsignmentNotesDELETERequest setInvoiceID(String value) { this.InvoiceID = value; return this; } public String getInvoiceHistoryID() { return InvoiceHistoryID; } public SalesOrderHistoryConsignmentNotesDELETERequest setInvoiceHistoryID(String value) { this.InvoiceHistoryID = value; return this; } public String getConsignmentNoteID() { return ConsignmentNoteID; } public SalesOrderHistoryConsignmentNotesDELETERequest setConsignmentNoteID(String value) { this.ConsignmentNoteID = value; return this; } } @Route(Path="/SalesOrders/{InvoiceID}/Historys/{InvoiceHistoryID}/Carrier/FreightItems", Verbs="GET") @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="No SalesOrder History with the InvoiceID or HistoryID provided was found", StatusCode=404) // @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) public static class SalesOrderHistoryFreightItemsGETManyRequest implements IReturn> { public String InvoiceID = null; public String InvoiceHistoryID = null; public String getInvoiceID() { return InvoiceID; } public SalesOrderHistoryFreightItemsGETManyRequest setInvoiceID(String value) { this.InvoiceID = value; return this; } public String getInvoiceHistoryID() { return InvoiceHistoryID; } public SalesOrderHistoryFreightItemsGETManyRequest setInvoiceHistoryID(String value) { this.InvoiceHistoryID = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @Route(Path="/SalesOrders/{InvoiceID}/Historys/{InvoiceHistoryID}/Carrier/FreightItems/{FreightItemID}", Verbs="GET") @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="No SalesOrder Freight Item with FreightItemID, InvoiceID or HistoryID provided was found", StatusCode=404) public static class SalesOrderHistoryFreightItemsGETRequest implements IReturn { public String InvoiceID = null; public String InvoiceHistoryID = null; public String FreightItemID = null; public String getInvoiceID() { return InvoiceID; } public SalesOrderHistoryFreightItemsGETRequest setInvoiceID(String value) { this.InvoiceID = value; return this; } public String getInvoiceHistoryID() { return InvoiceHistoryID; } public SalesOrderHistoryFreightItemsGETRequest setInvoiceHistoryID(String value) { this.InvoiceHistoryID = value; return this; } public String getFreightItemID() { return FreightItemID; } public SalesOrderHistoryFreightItemsGETRequest setFreightItemID(String value) { this.FreightItemID = value; return this; } private static Object responseType = SalesOrderFreightItem.class; public Object getResponseType() { return responseType; } } @Route(Path="/SalesOrders/{InvoiceID}/Historys/{InvoiceHistoryID}/Carrier/FreightItems", Verbs="POST") @ApiResponse(Description="No SalesOrder History with the InvoiceID or HistoryID provided was found", StatusCode=404) // @ApiResponse(Description="Created OK", StatusCode=201) // @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="Not authenticated", StatusCode=401) public static class SalesOrderHistoryFreightItemsPOSTRequest extends SalesOrderFreightItem implements IReturn { public String InvoiceID = null; public String InvoiceHistoryID = null; public String getInvoiceID() { return InvoiceID; } public SalesOrderHistoryFreightItemsPOSTRequest setInvoiceID(String value) { this.InvoiceID = value; return this; } public String getInvoiceHistoryID() { return InvoiceHistoryID; } public SalesOrderHistoryFreightItemsPOSTRequest setInvoiceHistoryID(String value) { this.InvoiceHistoryID = value; return this; } private static Object responseType = SalesOrderFreightItem.class; public Object getResponseType() { return responseType; } } @Route(Path="/SalesOrders/{InvoiceID}/Historys/{InvoiceHistoryID}/Carrier/FreightItems/{FreightItemID}", Verbs="PATCH") @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Updated OK", StatusCode=200) // @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="No SalesOrder Freight Item with FreightItemID, InvoiceID or HistoryID provided was found", StatusCode=404) public static class SalesOrderHistoryFreightItemsPATCHRequest extends SalesOrderFreightItem implements IReturn { public String InvoiceID = null; public String InvoiceHistoryID = null; public String FreightItemID = null; public String getInvoiceID() { return InvoiceID; } public SalesOrderHistoryFreightItemsPATCHRequest setInvoiceID(String value) { this.InvoiceID = value; return this; } public String getInvoiceHistoryID() { return InvoiceHistoryID; } public SalesOrderHistoryFreightItemsPATCHRequest setInvoiceHistoryID(String value) { this.InvoiceHistoryID = value; return this; } public String getFreightItemID() { return FreightItemID; } public SalesOrderHistoryFreightItemsPATCHRequest setFreightItemID(String value) { this.FreightItemID = value; return this; } private static Object responseType = SalesOrderFreightItem.class; public Object getResponseType() { return responseType; } } @Route(Path="/SalesOrders/{InvoiceID}/Historys/{InvoiceHistoryID}/Carrier/FreightItems/{FreightItemID}", Verbs="DELETE") @ApiResponse(Description="No SalesOrder Freight Item with FreightItemID, InvoiceID or HistoryID provided was found", StatusCode=404) // @ApiResponse(Description="Deleted OK", StatusCode=204) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class SalesOrderHistoryFreightItemsDELETERequest { public String InvoiceID = null; public String InvoiceHistoryID = null; public String FreightItemID = null; public String getInvoiceID() { return InvoiceID; } public SalesOrderHistoryFreightItemsDELETERequest setInvoiceID(String value) { this.InvoiceID = value; return this; } public String getInvoiceHistoryID() { return InvoiceHistoryID; } public SalesOrderHistoryFreightItemsDELETERequest setInvoiceHistoryID(String value) { this.InvoiceHistoryID = value; return this; } public String getFreightItemID() { return FreightItemID; } public SalesOrderHistoryFreightItemsDELETERequest setFreightItemID(String value) { this.FreightItemID = value; return this; } } @Route(Path="/SalesOrders/Historys/CustomFields", Verbs="GET") @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class SalesOrderHistoryCustomFieldsGETManyRequest implements IReturn> { private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @Route(Path="/SalesOrders/{InvoiceID}/Historys/{InvoiceHistoryID}/CustomFieldValues", Verbs="GET") @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="No SalesOrder History with the InvoiceID or HistoryID provided was found", StatusCode=404) // @ApiResponse(Description="Read OK", StatusCode=200) public static class SalesOrderHistoryCustomFieldValuesGETManyRequest implements IReturn> { public String InvoiceID = null; public String InvoiceHistoryID = null; public String getInvoiceID() { return InvoiceID; } public SalesOrderHistoryCustomFieldValuesGETManyRequest setInvoiceID(String value) { this.InvoiceID = value; return this; } public String getInvoiceHistoryID() { return InvoiceHistoryID; } public SalesOrderHistoryCustomFieldValuesGETManyRequest setInvoiceHistoryID(String value) { this.InvoiceHistoryID = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @Route(Path="/SalesOrders/{InvoiceID}/Historys/{InvoiceHistoryID}/CustomFieldValues/{SettingID}", Verbs="GET") @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="No SalesOrder History with the InvoiceID or HistoryID provided was found", StatusCode=404) // @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="Read OK", StatusCode=200) public static class SalesOrderHistoryCustomFieldValuesGETRequest implements IReturn { public String InvoiceID = null; public String InvoiceHistoryID = null; public String SettingID = null; public String getInvoiceID() { return InvoiceID; } public SalesOrderHistoryCustomFieldValuesGETRequest setInvoiceID(String value) { this.InvoiceID = value; return this; } public String getInvoiceHistoryID() { return InvoiceHistoryID; } public SalesOrderHistoryCustomFieldValuesGETRequest setInvoiceHistoryID(String value) { this.InvoiceHistoryID = value; return this; } public String getSettingID() { return SettingID; } public SalesOrderHistoryCustomFieldValuesGETRequest setSettingID(String value) { this.SettingID = value; return this; } private static Object responseType = CustomFieldValue.class; public Object getResponseType() { return responseType; } } @Route(Path="/SalesOrders/{InvoiceID}/Historys/{InvoiceHistoryID}/CustomFieldValues/{SettingID}", Verbs="PATCH") @ApiResponse(Description="Updated OK", StatusCode=200) // @ApiResponse(Description="No SalesOrder History with the InvoiceID or HistoryID provided was found", StatusCode=404) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class SalesOrderHistoryCustomFieldValuesPATCHRequest extends CustomFieldValue implements IReturn { public String InvoiceID = null; public String InvoiceHistoryID = null; public String SettingID = null; public String getInvoiceID() { return InvoiceID; } public SalesOrderHistoryCustomFieldValuesPATCHRequest setInvoiceID(String value) { this.InvoiceID = value; return this; } public String getInvoiceHistoryID() { return InvoiceHistoryID; } public SalesOrderHistoryCustomFieldValuesPATCHRequest setInvoiceHistoryID(String value) { this.InvoiceHistoryID = value; return this; } public String getSettingID() { return SettingID; } public SalesOrderHistoryCustomFieldValuesPATCHRequest setSettingID(String value) { this.SettingID = value; return this; } private static Object responseType = CustomFieldValue.class; public Object getResponseType() { return responseType; } } @Route(Path="/SalesOrders/{InvoiceID}/Historys/{InvoiceHistoryID}/Lines/{InvoiceLineID}/CustomFieldValues", Verbs="GET") @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="No Sales Order Line InvoiceID, InvoiceHistoryID or InvoiceLineID provided was found", StatusCode=404) // @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) public static class SalesOrderLineCustomFieldValuesGETManyRequest implements IReturn> { public String InvoiceID = null; public String InvoiceHistoryID = null; public String InvoiceLineID = null; public String getInvoiceID() { return InvoiceID; } public SalesOrderLineCustomFieldValuesGETManyRequest setInvoiceID(String value) { this.InvoiceID = value; return this; } public String getInvoiceHistoryID() { return InvoiceHistoryID; } public SalesOrderLineCustomFieldValuesGETManyRequest setInvoiceHistoryID(String value) { this.InvoiceHistoryID = value; return this; } public String getInvoiceLineID() { return InvoiceLineID; } public SalesOrderLineCustomFieldValuesGETManyRequest setInvoiceLineID(String value) { this.InvoiceLineID = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @Route(Path="/SalesOrders/{InvoiceID}/Historys/{InvoiceHistoryID}/Lines/{InvoiceLineID}/CustomFieldValues/{SettingID}", Verbs="GET") @ApiResponse(Description="No Sales Order Line Custom Field Value with the InvoiceID, InvoiceHistoryID, InvoiceLineID or SettingID provided was found", StatusCode=404) // @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class SalesOrderLineCustomFieldValueGETRequest implements IReturn { public String InvoiceID = null; public String InvoiceHistoryID = null; public String InvoiceLineID = null; public String SettingID = null; public String getInvoiceID() { return InvoiceID; } public SalesOrderLineCustomFieldValueGETRequest setInvoiceID(String value) { this.InvoiceID = value; return this; } public String getInvoiceHistoryID() { return InvoiceHistoryID; } public SalesOrderLineCustomFieldValueGETRequest setInvoiceHistoryID(String value) { this.InvoiceHistoryID = value; return this; } public String getInvoiceLineID() { return InvoiceLineID; } public SalesOrderLineCustomFieldValueGETRequest setInvoiceLineID(String value) { this.InvoiceLineID = value; return this; } public String getSettingID() { return SettingID; } public SalesOrderLineCustomFieldValueGETRequest setSettingID(String value) { this.SettingID = value; return this; } private static Object responseType = CustomFieldValue.class; public Object getResponseType() { return responseType; } } @Route(Path="/SalesOrders/{InvoiceID}/Historys/{InvoiceHistoryID}/Lines/{InvoiceLineID}/CustomFieldValues/{SettingID}", Verbs="PATCH") @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="Updated OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="No Sales Order Line Custom Field Value with the InvoiceID, InvoiceHistoryID, InvoiceLineID or SettingID provided was found", StatusCode=404) public static class SalesOrderLineCustomFieldValuePATCHRequest extends CustomFieldValue implements IReturn { public String InvoiceID = null; public String InvoiceHistoryID = null; public String InvoiceLineID = null; public String SettingID = null; public String getInvoiceID() { return InvoiceID; } public SalesOrderLineCustomFieldValuePATCHRequest setInvoiceID(String value) { this.InvoiceID = value; return this; } public String getInvoiceHistoryID() { return InvoiceHistoryID; } public SalesOrderLineCustomFieldValuePATCHRequest setInvoiceHistoryID(String value) { this.InvoiceHistoryID = value; return this; } public String getInvoiceLineID() { return InvoiceLineID; } public SalesOrderLineCustomFieldValuePATCHRequest setInvoiceLineID(String value) { this.InvoiceLineID = value; return this; } public String getSettingID() { return SettingID; } public SalesOrderLineCustomFieldValuePATCHRequest setSettingID(String value) { this.SettingID = value; return this; } private static Object responseType = CustomFieldValue.class; public Object getResponseType() { return responseType; } } @Route(Path="/SalesOrders/Lines/CustomFields", Verbs="GET") @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class SalesOrderLineCustomFieldsGETManyRequest implements IReturn> { private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @Route(Path="/SalesOrders/{InvoiceID}/Historys/{InvoiceHistoryID}/Lines/{InvoiceLineID}", Verbs="GET") @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="No Sales Order Line with the InvoiceID or InvoiceLineID provided was found", StatusCode=404) // @ApiResponse(Description="Not authenticated", StatusCode=401) public static class SalesOrderLineGETRequest implements IReturn { public String InvoiceID = null; public String InvoiceHistoryID = null; public String InvoiceLineID = null; public String getInvoiceID() { return InvoiceID; } public SalesOrderLineGETRequest setInvoiceID(String value) { this.InvoiceID = value; return this; } public String getInvoiceHistoryID() { return InvoiceHistoryID; } public SalesOrderLineGETRequest setInvoiceHistoryID(String value) { this.InvoiceHistoryID = value; return this; } public String getInvoiceLineID() { return InvoiceLineID; } public SalesOrderLineGETRequest setInvoiceLineID(String value) { this.InvoiceLineID = value; return this; } private static Object responseType = SalesOrderLine.class; public Object getResponseType() { return responseType; } } @Route(Path="/SalesOrders/{InvoiceID}/Historys/{InvoiceHistoryID}/Lines", Verbs="GET") @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="No Sales Order Line with the InvoiceID or InvoiceLineID provided was found", StatusCode=404) // @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class SalesOrderLinesGETManyRequest implements IReturn> { public String InvoiceID = null; public String InvoiceHistoryID = null; public String getInvoiceID() { return InvoiceID; } public SalesOrderLinesGETManyRequest setInvoiceID(String value) { this.InvoiceID = value; return this; } public String getInvoiceHistoryID() { return InvoiceHistoryID; } public SalesOrderLinesGETManyRequest setInvoiceHistoryID(String value) { this.InvoiceHistoryID = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @Route(Path="/SalesOrders/{InvoiceID}/Historys/{InvoiceHistoryID}/Lines", Verbs="POST") @ApiResponse(Description="Created OK", StatusCode=201) // @ApiResponse(Description="No Sales Order Line with the InvoiceID or InvoiceLineID provided was found", StatusCode=404) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class SalesOrderLinePOSTRequest extends SalesOrderLine implements IReturn { public String InvoiceID = null; public String InvoiceHistoryID = null; public String getInvoiceID() { return InvoiceID; } public SalesOrderLinePOSTRequest setInvoiceID(String value) { this.InvoiceID = value; return this; } public String getInvoiceHistoryID() { return InvoiceHistoryID; } public SalesOrderLinePOSTRequest setInvoiceHistoryID(String value) { this.InvoiceHistoryID = value; return this; } private static Object responseType = SalesOrderLine.class; public Object getResponseType() { return responseType; } } @Route(Path="/SalesOrders/{InvoiceID}/Historys/{InvoiceHistoryID}/Lines/{InvoiceLineID}", Verbs="PATCH") @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="No Sales Order Line with the InvoiceID or InvoiceLineID provided was found", StatusCode=404) // @ApiResponse(Description="Updated OK", StatusCode=200) public static class SalesOrderLinePATCHRequest extends SalesOrderLine implements IReturn { public String InvoiceID = null; public String InvoiceHistoryID = null; public String InvoiceLineID = null; public String getInvoiceID() { return InvoiceID; } public SalesOrderLinePATCHRequest setInvoiceID(String value) { this.InvoiceID = value; return this; } public String getInvoiceHistoryID() { return InvoiceHistoryID; } public SalesOrderLinePATCHRequest setInvoiceHistoryID(String value) { this.InvoiceHistoryID = value; return this; } public String getInvoiceLineID() { return InvoiceLineID; } public SalesOrderLinePATCHRequest setInvoiceLineID(String value) { this.InvoiceLineID = value; return this; } private static Object responseType = SalesOrderLine.class; public Object getResponseType() { return responseType; } } @Route(Path="/SalesOrders/{InvoiceID}/Historys/{InvoiceHistoryID}/Lines/{InvoiceLineID}", Verbs="DELETE") @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="No Sales Order Line with the InvoiceID or InvoiceLineID provided was found", StatusCode=404) // @ApiResponse(Description="Deleted OK", StatusCode=204) // @ApiResponse(Description="Not authenticated", StatusCode=401) public static class SalesOrderLineDELETERequest { public String InvoiceID = null; public String InvoiceHistoryID = null; public String InvoiceLineID = null; public String getInvoiceID() { return InvoiceID; } public SalesOrderLineDELETERequest setInvoiceID(String value) { this.InvoiceID = value; return this; } public String getInvoiceHistoryID() { return InvoiceHistoryID; } public SalesOrderLineDELETERequest setInvoiceHistoryID(String value) { this.InvoiceHistoryID = value; return this; } public String getInvoiceLineID() { return InvoiceLineID; } public SalesOrderLineDELETERequest setInvoiceLineID(String value) { this.InvoiceLineID = value; return this; } } @Route(Path="/SalesOrders/{InvoiceID}/Historys/{InvoiceHistoryID}/Lines/{InvoiceLineID}/LineDetails", Verbs="GET") @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="No Sales Order with the InvoiceID or InvoiceLineID provided was found", StatusCode=404) public static class SalesOrderLineDetailsGETManyRequest implements IReturn> { public String InvoiceID = null; public String InvoiceHistoryID = null; public String InvoiceLineID = null; public String getInvoiceID() { return InvoiceID; } public SalesOrderLineDetailsGETManyRequest setInvoiceID(String value) { this.InvoiceID = value; return this; } public String getInvoiceHistoryID() { return InvoiceHistoryID; } public SalesOrderLineDetailsGETManyRequest setInvoiceHistoryID(String value) { this.InvoiceHistoryID = value; return this; } public String getInvoiceLineID() { return InvoiceLineID; } public SalesOrderLineDetailsGETManyRequest setInvoiceLineID(String value) { this.InvoiceLineID = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @Route(Path="/SalesOrders/{InvoiceID}/Historys/{InvoiceHistoryID}/Lines/{InvoiceLineID}/LineDetails/{DetailsLineID}", Verbs="GET") @ApiResponse(Description="No Sales Order with the InvoiceID or InvoiceLineID or DetailsLineID provided was found", StatusCode=404) // @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class SalesOrderLineDetailGETRequest implements IReturn { public String InvoiceID = null; public String InvoiceHistoryID = null; public String InvoiceLineID = null; public String DetailsLineID = null; public String getInvoiceID() { return InvoiceID; } public SalesOrderLineDetailGETRequest setInvoiceID(String value) { this.InvoiceID = value; return this; } public String getInvoiceHistoryID() { return InvoiceHistoryID; } public SalesOrderLineDetailGETRequest setInvoiceHistoryID(String value) { this.InvoiceHistoryID = value; return this; } public String getInvoiceLineID() { return InvoiceLineID; } public SalesOrderLineDetailGETRequest setInvoiceLineID(String value) { this.InvoiceLineID = value; return this; } public String getDetailsLineID() { return DetailsLineID; } public SalesOrderLineDetailGETRequest setDetailsLineID(String value) { this.DetailsLineID = value; return this; } private static Object responseType = SalesOrderLineDetail.class; public Object getResponseType() { return responseType; } } @Route(Path="/SalesOrders/{InvoiceID}/Historys/{InvoiceHistoryID}/Lines/{InvoiceLineID}/LineDetails", Verbs="POST") @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Created OK", StatusCode=201) // @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="No Sales Order with the InvoiceID or InvoiceLineID provided was found", StatusCode=404) public static class SalesOrderLineDetailPOSTRequest extends SalesOrderLineDetail implements IReturn { public String InvoiceID = null; public String InvoiceHistoryID = null; public String InvoiceLineID = null; public String getInvoiceID() { return InvoiceID; } public SalesOrderLineDetailPOSTRequest setInvoiceID(String value) { this.InvoiceID = value; return this; } public String getInvoiceHistoryID() { return InvoiceHistoryID; } public SalesOrderLineDetailPOSTRequest setInvoiceHistoryID(String value) { this.InvoiceHistoryID = value; return this; } public String getInvoiceLineID() { return InvoiceLineID; } public SalesOrderLineDetailPOSTRequest setInvoiceLineID(String value) { this.InvoiceLineID = value; return this; } private static Object responseType = SalesOrderLineDetail.class; public Object getResponseType() { return responseType; } } @Route(Path="/SalesOrders/{InvoiceID}/Historys/{InvoiceHistoryID}/Lines/{InvoiceLineID}/LineDetails/{DetailsLineID}", Verbs="PATCH") @ApiResponse(Description="No Sales Order with the InvoiceID or InvoiceLineID provided was found", StatusCode=404) // @ApiResponse(Description="Updated OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class SalesOrderLineDetailPATCHRequest extends SalesOrderLineDetail implements IReturn { public String InvoiceID = null; public String InvoiceHistoryID = null; public String InvoiceLineID = null; public String DetailsLineID = null; public String getInvoiceID() { return InvoiceID; } public SalesOrderLineDetailPATCHRequest setInvoiceID(String value) { this.InvoiceID = value; return this; } public String getInvoiceHistoryID() { return InvoiceHistoryID; } public SalesOrderLineDetailPATCHRequest setInvoiceHistoryID(String value) { this.InvoiceHistoryID = value; return this; } public String getInvoiceLineID() { return InvoiceLineID; } public SalesOrderLineDetailPATCHRequest setInvoiceLineID(String value) { this.InvoiceLineID = value; return this; } public String getDetailsLineID() { return DetailsLineID; } public SalesOrderLineDetailPATCHRequest setDetailsLineID(String value) { this.DetailsLineID = value; return this; } private static Object responseType = SalesOrderLineDetail.class; public Object getResponseType() { return responseType; } } @Route(Path="/SalesOrders/{InvoiceID}/Historys/{InvoiceHistoryID}/Lines/{InvoiceLineID}/LineDetails/{DetailsLineID}", Verbs="DELETE") @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="No Sales Order with the InvoiceID or InvoiceLineID or DetailsLineID provided was found", StatusCode=404) // @ApiResponse(Description="Deleted OK", StatusCode=204) public static class SalesOrderLineDetailDELETERequest { public String InvoiceID = null; public String InvoiceHistoryID = null; public String InvoiceLineID = null; public String DetailsLineID = null; public String getInvoiceID() { return InvoiceID; } public SalesOrderLineDetailDELETERequest setInvoiceID(String value) { this.InvoiceID = value; return this; } public String getInvoiceHistoryID() { return InvoiceHistoryID; } public SalesOrderLineDetailDELETERequest setInvoiceHistoryID(String value) { this.InvoiceHistoryID = value; return this; } public String getInvoiceLineID() { return InvoiceLineID; } public SalesOrderLineDetailDELETERequest setInvoiceLineID(String value) { this.InvoiceLineID = value; return this; } public String getDetailsLineID() { return DetailsLineID; } public SalesOrderLineDetailDELETERequest setDetailsLineID(String value) { this.DetailsLineID = value; return this; } } @Route(Path="/SalesOrders/NoteTypes/{NoteTypeID}", Verbs="GET") @ApiResponse(Description="No Sales Order Note Type with the NoteTypeID provided was found", StatusCode=404) // @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class SalesOrderNoteTypeGETRequest implements IReturn { public String NoteTypeID = null; public String getNoteTypeID() { return NoteTypeID; } public SalesOrderNoteTypeGETRequest setNoteTypeID(String value) { this.NoteTypeID = value; return this; } private static Object responseType = NoteType.class; public Object getResponseType() { return responseType; } } @Route(Path="/SalesOrders/NoteTypes", Verbs="GET") @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Read OK", StatusCode=200) public static class SalesOrderNoteTypesGETManyRequest implements IReturn> { private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @Route(Path="/SalesOrders/NoteTypes", Verbs="POST") @ApiResponse(Description="Created OK", StatusCode=201) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class SalesOrderNoteTypePOSTRequest extends NoteType implements IReturn { private static Object responseType = NoteType.class; public Object getResponseType() { return responseType; } } @Route(Path="/SalesOrders/NoteTypes/{NoteTypeID}", Verbs="PATCH") @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="No Sales Order Note Type with the NoteTypeID provided was found", StatusCode=404) // @ApiResponse(Description="Updated OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) public static class SalesOrderNoteTypePATCHRequest extends NoteType implements IReturn { public String NoteTypeID = null; public String getNoteTypeID() { return NoteTypeID; } public SalesOrderNoteTypePATCHRequest setNoteTypeID(String value) { this.NoteTypeID = value; return this; } private static Object responseType = NoteType.class; public Object getResponseType() { return responseType; } } @Route(Path="/SalesOrders/NoteTypes/{NoteTypeID}", Verbs="DELETE") @ApiResponse(Description="Deleted OK", StatusCode=204) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="No Sales Order Note Type with the NoteTypeID provided was found", StatusCode=404) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class SalesOrderNoteTypeDELETERequest { public String NoteTypeID = null; public String getNoteTypeID() { return NoteTypeID; } public SalesOrderNoteTypeDELETERequest setNoteTypeID(String value) { this.NoteTypeID = value; return this; } } @Route(Path="/SalesOrders/{InvoiceID}/Notes/{NoteID}", Verbs="GET") @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="No Sales Order Note with the InvoiceID or NoteID provided was found", StatusCode=404) // @ApiResponse(Description="Read OK", StatusCode=200) public static class SalesOrderNoteGETRequest implements IReturn { public String InvoiceID = null; public String NoteID = null; public String getInvoiceID() { return InvoiceID; } public SalesOrderNoteGETRequest setInvoiceID(String value) { this.InvoiceID = value; return this; } public String getNoteID() { return NoteID; } public SalesOrderNoteGETRequest setNoteID(String value) { this.NoteID = value; return this; } private static Object responseType = Note.class; public Object getResponseType() { return responseType; } } @Route(Path="/SalesOrders/{InvoiceID}/Notes", Verbs="GET") @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="No Sales Order with the InvoiceID provided was found", StatusCode=404) // @ApiResponse(Description="Read OK", StatusCode=200) public static class SalesOrderNotesGETManyRequest implements IReturn> { public String InvoiceID = null; public String getInvoiceID() { return InvoiceID; } public SalesOrderNotesGETManyRequest setInvoiceID(String value) { this.InvoiceID = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @Route(Path="/SalesOrders/{InvoiceID}/Notes", Verbs="POST") @ApiResponse(Description="Created OK", StatusCode=201) // @ApiResponse(Description="No Sales Order with the InvoiceID provided was found", StatusCode=404) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class SalesOrderNotePOSTRequest extends Note implements IReturn { public String InvoiceID = null; public String getInvoiceID() { return InvoiceID; } public SalesOrderNotePOSTRequest setInvoiceID(String value) { this.InvoiceID = value; return this; } private static Object responseType = Note.class; public Object getResponseType() { return responseType; } } @Route(Path="/SalesOrders/{InvoiceID}/Notes/{NoteID}", Verbs="PATCH") @ApiResponse(Description="Updated OK", StatusCode=200) // @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="No Sales Order with the InvoiceID provided was found", StatusCode=404) // @ApiResponse(Description="Not authenticated", StatusCode=401) public static class SalesOrderNotePATCHRequest extends Note implements IReturn { public String InvoiceID = null; public String NoteID = null; public String getInvoiceID() { return InvoiceID; } public SalesOrderNotePATCHRequest setInvoiceID(String value) { this.InvoiceID = value; return this; } public String getNoteID() { return NoteID; } public SalesOrderNotePATCHRequest setNoteID(String value) { this.NoteID = value; return this; } private static Object responseType = Note.class; public Object getResponseType() { return responseType; } } @Route(Path="/SalesOrders/{InvoiceID}/Notes/{NoteID}", Verbs="DELETE") @ApiResponse(Description="No Sales Order with the InvoiceID provided was found", StatusCode=404) // @ApiResponse(Description="Deleted OK", StatusCode=204) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class SalesOrderNoteDELETERequest { public String InvoiceID = null; public String NoteID = null; public String getInvoiceID() { return InvoiceID; } public SalesOrderNoteDELETERequest setInvoiceID(String value) { this.InvoiceID = value; return this; } public String getNoteID() { return NoteID; } public SalesOrderNoteDELETERequest setNoteID(String value) { this.NoteID = value; return this; } } @Route(Path="/SalesOrders/PaymentTypes", Verbs="GET") @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) public static class SalesOrderPaymentTypesGETManyRequest implements IReturn> { private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @Route(Path="/SalesOrders/PaymentTypes/{PaymentTypeID}", Verbs="GET") @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="No payment type with PaymentTypeID provided was found", StatusCode=404) // @ApiResponse(Description="Read OK", StatusCode=200) public static class SalesOrderPaymentTypesGETRequest implements IReturn { public String PaymentTypeID = null; public String getPaymentTypeID() { return PaymentTypeID; } public SalesOrderPaymentTypesGETRequest setPaymentTypeID(String value) { this.PaymentTypeID = value; return this; } private static Object responseType = PaymentType.class; public Object getResponseType() { return responseType; } } @Route(Path="/SalesOrders/PaymentTypes", Verbs="POST") @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="Created OK", StatusCode=201) public static class SalesOrderPaymentTypesPOSTRequest extends PaymentType implements IReturn { private static Object responseType = PaymentType.class; public Object getResponseType() { return responseType; } } @Route(Path="/SalesOrders/PaymentTypes/{PaymentTypeID}", Verbs="PATCH") @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Updated OK", StatusCode=200) // @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="No payment type with PaymentTypeID provided was found", StatusCode=404) public static class SalesOrderPaymentTypesPATCHRequest extends PaymentType implements IReturn { public String PaymentTypeID = null; public String getPaymentTypeID() { return PaymentTypeID; } public SalesOrderPaymentTypesPATCHRequest setPaymentTypeID(String value) { this.PaymentTypeID = value; return this; } private static Object responseType = PaymentType.class; public Object getResponseType() { return responseType; } } @Route(Path="/SalesOrders/PaymentTypes/{PaymentTypeID}", Verbs="DELETE") @ApiResponse(Description="No payment type with PaymentTypeID provided was found", StatusCode=404) // @ApiResponse(Description="Deleted OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class SalesOrderPaymentTypesDELETERequest { public String PaymentTypeID = null; public String getPaymentTypeID() { return PaymentTypeID; } public SalesOrderPaymentTypesDELETERequest setPaymentTypeID(String value) { this.PaymentTypeID = value; return this; } } @Route(Path="/SalesOrders/{InvoiceID}/Payments", Verbs="GET") @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class SalesOrderPaymentsGETManyRequest implements IReturn> { public String InvoiceID = null; public String getInvoiceID() { return InvoiceID; } public SalesOrderPaymentsGETManyRequest setInvoiceID(String value) { this.InvoiceID = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @Route(Path="/SalesOrders/{InvoiceID}/Payments/{PaymentID}", Verbs="GET") @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="No payment with PaymentID or InvoiceID provided was found", StatusCode=404) // @ApiResponse(Description="Read OK", StatusCode=200) public static class SalesOrderPaymentsGETRequest implements IReturn { public String InvoiceID = null; public String PaymentID = null; public String getInvoiceID() { return InvoiceID; } public SalesOrderPaymentsGETRequest setInvoiceID(String value) { this.InvoiceID = value; return this; } public String getPaymentID() { return PaymentID; } public SalesOrderPaymentsGETRequest setPaymentID(String value) { this.PaymentID = value; return this; } private static Object responseType = SalesOrderPayment.class; public Object getResponseType() { return responseType; } } @Route(Path="/SalesOrders/{InvoiceID}/Historys/{InvoiceHistoryID}/Payments", Verbs="POST") @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Created OK", StatusCode=200) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class SalesOrderPaymentsPOSTRequest extends SalesOrderPayment implements IReturn { public String InvoiceID = null; public String InvoiceHistoryID = null; public String getInvoiceID() { return InvoiceID; } public SalesOrderPaymentsPOSTRequest setInvoiceID(String value) { this.InvoiceID = value; return this; } public String getInvoiceHistoryID() { return InvoiceHistoryID; } public SalesOrderPaymentsPOSTRequest setInvoiceHistoryID(String value) { this.InvoiceHistoryID = value; return this; } private static Object responseType = SalesOrderPayment.class; public Object getResponseType() { return responseType; } } @Route(Path="/SalesOrders/{InvoiceID}/Payments/{PaymentID}", Verbs="PATCH") @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="No payment with PaymentID or InvoiceID provided was found", StatusCode=404) // @ApiResponse(Description="Updated OK", StatusCode=200) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class SalesOrderPaymentsPATCHRequest extends SalesOrderPayment implements IReturn { public String InvoiceID = null; public String PaymentID = null; public String getInvoiceID() { return InvoiceID; } public SalesOrderPaymentsPATCHRequest setInvoiceID(String value) { this.InvoiceID = value; return this; } public String getPaymentID() { return PaymentID; } public SalesOrderPaymentsPATCHRequest setPaymentID(String value) { this.PaymentID = value; return this; } private static Object responseType = SalesOrderPayment.class; public Object getResponseType() { return responseType; } } @Route(Path="/SalesOrders/{InvoiceID}/Payments/{PaymentID}", Verbs="DELETE") @ApiResponse(Description="Deleted OK", StatusCode=204) // @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="No payment with PaymentID or InvoiceID provided was found", StatusCode=404) // @ApiResponse(Description="Not authenticated", StatusCode=401) public static class SalesOrderPaymentsDELETERequest { public String InvoiceID = null; public String PaymentID = null; public String getInvoiceID() { return InvoiceID; } public SalesOrderPaymentsDELETERequest setInvoiceID(String value) { this.InvoiceID = value; return this; } public String getPaymentID() { return PaymentID; } public SalesOrderPaymentsDELETERequest setPaymentID(String value) { this.PaymentID = value; return this; } } @Route(Path="/SalesQuotes/{QuoteID}", Verbs="GET") @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="No Sales Quote with the QuoteID provided was found", StatusCode=404) public static class SalesQuoteGETRequest implements IReturn { public String QuoteID = null; public String getQuoteID() { return QuoteID; } public SalesQuoteGETRequest setQuoteID(String value) { this.QuoteID = value; return this; } private static Object responseType = SalesQuote.class; public Object getResponseType() { return responseType; } } @Route(Path="/SalesQuotes", Verbs="POST") @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="Created OK", StatusCode=201) // @ApiResponse(Description="Not authenticated", StatusCode=401) public static class SalesQuotePOSTRequest extends SalesQuote implements IReturn { private static Object responseType = SalesQuote.class; public Object getResponseType() { return responseType; } } @Route(Path="/SalesQuotes/{QuoteID}", Verbs="PATCH") @ApiResponse(Description="No Sales Quote with the QuoteID provided was found", StatusCode=404) // @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="Updated OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) public static class SalesQuotePATCHRequest extends SalesQuote implements IReturn { public String QuoteID = null; public String getQuoteID() { return QuoteID; } public SalesQuotePATCHRequest setQuoteID(String value) { this.QuoteID = value; return this; } private static Object responseType = SalesQuote.class; public Object getResponseType() { return responseType; } } @Route(Path="/SalesQuotes/{QuoteID}/MakeOrder", Verbs="POST") @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="No Sales Quote with the QuoteID provided was found", StatusCode=404) // @ApiResponse(Description="Created OK", StatusCode=200) public static class SalesQuoteMAKEORDERRequest implements IReturn { public String QuoteID = null; public String getQuoteID() { return QuoteID; } public SalesQuoteMAKEORDERRequest setQuoteID(String value) { this.QuoteID = value; return this; } private static Object responseType = SalesQuote.class; public Object getResponseType() { return responseType; } } @Route(Path="/SalesQuotes/{QuoteID}/MakeOrderB2B", Verbs="POST") @ApiResponse(Description="No Sales Quote with the QuoteID provided was found", StatusCode=404) // @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="Created OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) public static class SalesQuoteMAKEORDERB2BRequest implements IReturn { public String QuoteID = null; public String getQuoteID() { return QuoteID; } public SalesQuoteMAKEORDERB2BRequest setQuoteID(String value) { this.QuoteID = value; return this; } private static Object responseType = SalesQuote.class; public Object getResponseType() { return responseType; } } @Route(Path="/SalesQuotes/{QuoteID}/CustomFieldValues", Verbs="GET") @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="No Sales Quote with the QuoteID provided was found", StatusCode=404) public static class SalesQuoteCustomFieldValuesGETManyRequest implements IReturn> { public String QuoteID = null; public String getQuoteID() { return QuoteID; } public SalesQuoteCustomFieldValuesGETManyRequest setQuoteID(String value) { this.QuoteID = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @Route(Path="/SalesQuotes/{QuoteID}/CustomFieldValues/{SettingID}", Verbs="GET") @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="No Sales Quote Custom Field Value with the QuoteID or SettingID provided was found", StatusCode=404) // @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="Not authenticated", StatusCode=401) public static class SalesQuoteCustomFieldValueGETRequest implements IReturn { public String QuoteID = null; public String SettingID = null; public String getQuoteID() { return QuoteID; } public SalesQuoteCustomFieldValueGETRequest setQuoteID(String value) { this.QuoteID = value; return this; } public String getSettingID() { return SettingID; } public SalesQuoteCustomFieldValueGETRequest setSettingID(String value) { this.SettingID = value; return this; } private static Object responseType = CustomFieldValue.class; public Object getResponseType() { return responseType; } } @Route(Path="/SalesQuotes/{QuoteID}/CustomFieldValues/{SettingID}", Verbs="PATCH") @ApiResponse(Description="No Sales Quote Custom Field Value with the QuoteID or SettingID provided was found", StatusCode=404) // @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="Updated OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) public static class SalesQuoteCustomFieldValuePATCHRequest extends CustomFieldValue implements IReturn { public String QuoteID = null; public String SettingID = null; public String getQuoteID() { return QuoteID; } public SalesQuoteCustomFieldValuePATCHRequest setQuoteID(String value) { this.QuoteID = value; return this; } public String getSettingID() { return SettingID; } public SalesQuoteCustomFieldValuePATCHRequest setSettingID(String value) { this.SettingID = value; return this; } private static Object responseType = CustomFieldValue.class; public Object getResponseType() { return responseType; } } @Route(Path="/SalesQuotes/CustomFields", Verbs="GET") @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="Not authenticated", StatusCode=401) public static class SalesQuoteCustomFieldsGETManyRequest implements IReturn> { private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @Route(Path="/SalesQuotes/DocumentTypes/{DocumentTypeID}", Verbs="GET") @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="No SalesQuote document type with the DocumentTypeID provided was found", StatusCode=404) public static class SalesQuoteDocumentTypeGETRequest implements IReturn { public String DocumentTypeID = null; public String getDocumentTypeID() { return DocumentTypeID; } public SalesQuoteDocumentTypeGETRequest setDocumentTypeID(String value) { this.DocumentTypeID = value; return this; } private static Object responseType = DocumentType.class; public Object getResponseType() { return responseType; } } @Route(Path="/SalesQuotes/DocumentTypes", Verbs="GET") @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="Read OK", StatusCode=200) public static class SalesQuoteDocumentTypesGETManyRequest implements IReturn> { private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @Route(Path="/SalesQuotes/DocumentTypes", Verbs="POST") @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="Created OK", StatusCode=201) // @ApiResponse(Description="Not authenticated", StatusCode=401) public static class SalesQuoteDocumentTypePOSTRequest extends DocumentType implements IReturn { private static Object responseType = DocumentType.class; public Object getResponseType() { return responseType; } } @Route(Path="/SalesQuotes/DocumentTypes/{DocumentTypeID}", Verbs="PATCH") @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="No SalesQuote document type with the DocumentTypeID provided was found", StatusCode=404) // @ApiResponse(Description="Updated OK", StatusCode=200) public static class SalesQuoteDocumentTypePATCHRequest extends DocumentType implements IReturn { public String DocumentTypeID = null; public String getDocumentTypeID() { return DocumentTypeID; } public SalesQuoteDocumentTypePATCHRequest setDocumentTypeID(String value) { this.DocumentTypeID = value; return this; } private static Object responseType = DocumentType.class; public Object getResponseType() { return responseType; } } @Route(Path="/SalesQuotes/DocumentTypes/{DocumentTypeID}", Verbs="DELETE") @ApiResponse(Description="Deleted OK", StatusCode=204) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="No SalesQuote document type with the DocumentTypeID provided was found", StatusCode=404) public static class SalesQuoteDocumentTypeDELETERequest { public String DocumentTypeID = null; public String getDocumentTypeID() { return DocumentTypeID; } public SalesQuoteDocumentTypeDELETERequest setDocumentTypeID(String value) { this.DocumentTypeID = value; return this; } } @Route(Path="/SalesQuotes/{QuoteID}/Documents/{DocumentID}", Verbs="GET") @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="No SalesQuote Document with the QuoteID or DocumentID provided was found", StatusCode=404) // @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) public static class SalesQuoteDocumentGETRequest implements IReturn { public String QuoteID = null; public String DocumentID = null; public String getQuoteID() { return QuoteID; } public SalesQuoteDocumentGETRequest setQuoteID(String value) { this.QuoteID = value; return this; } public String getDocumentID() { return DocumentID; } public SalesQuoteDocumentGETRequest setDocumentID(String value) { this.DocumentID = value; return this; } private static Object responseType = Document.class; public Object getResponseType() { return responseType; } } @Route(Path="/SalesQuotes/{QuoteID}/Documents", Verbs="GET") @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="No SalesQuote with the QuoteID provided was found", StatusCode=404) // @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class SalesQuoteDocumentsGETManyRequest implements IReturn> { public String QuoteID = null; public String getQuoteID() { return QuoteID; } public SalesQuoteDocumentsGETManyRequest setQuoteID(String value) { this.QuoteID = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @Route(Path="/SalesQuotes/{QuoteID}/Documents", Verbs="POST") @ApiResponse(Description="No SalesQuote with the QuoteID provided was found", StatusCode=404) // @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="Created OK", StatusCode=201) // @ApiResponse(Description="Not authenticated", StatusCode=401) public static class SalesQuoteDocumentPOSTRequest extends Document implements IReturn { public String QuoteID = null; public String getQuoteID() { return QuoteID; } public SalesQuoteDocumentPOSTRequest setQuoteID(String value) { this.QuoteID = value; return this; } private static Object responseType = Document.class; public Object getResponseType() { return responseType; } } @Route(Path="/SalesQuotes/{QuoteID}/Documents/{DocumentID}", Verbs="PATCH") @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="No SalesQuote with the QuoteID provided was found", StatusCode=404) // @ApiResponse(Description="Updated OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) public static class SalesQuoteDocumentPATCHRequest extends Document implements IReturn { public String QuoteID = null; public String DocumentID = null; public String getQuoteID() { return QuoteID; } public SalesQuoteDocumentPATCHRequest setQuoteID(String value) { this.QuoteID = value; return this; } public String getDocumentID() { return DocumentID; } public SalesQuoteDocumentPATCHRequest setDocumentID(String value) { this.DocumentID = value; return this; } private static Object responseType = Document.class; public Object getResponseType() { return responseType; } } @Route(Path="/SalesQuotes/{QuoteID}/Documents/{DocumentID}", Verbs="DELETE") @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="No SalesQuote with the QuoteID provided was found", StatusCode=404) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Deleted OK", StatusCode=204) public static class SalesQuoteDocumentDELETERequest { public String QuoteID = null; public String DocumentID = null; public String getQuoteID() { return QuoteID; } public SalesQuoteDocumentDELETERequest setQuoteID(String value) { this.QuoteID = value; return this; } public String getDocumentID() { return DocumentID; } public SalesQuoteDocumentDELETERequest setDocumentID(String value) { this.DocumentID = value; return this; } } @Route(Path="/SalesQuotes/{QuoteID}/Historys/{QuoteHistoryID}", Verbs="GET") @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="No SalesQuote History with the QuoteID or HistoryID provided was found", StatusCode=404) public static class SalesQuoteHistorysGETRequest implements IReturn { public String QuoteID = null; public String QuoteHistoryID = null; public String getQuoteID() { return QuoteID; } public SalesQuoteHistorysGETRequest setQuoteID(String value) { this.QuoteID = value; return this; } public String getQuoteHistoryID() { return QuoteHistoryID; } public SalesQuoteHistorysGETRequest setQuoteHistoryID(String value) { this.QuoteHistoryID = value; return this; } private static Object responseType = SalesQuoteHistory.class; public Object getResponseType() { return responseType; } } @Route(Path="/SalesQuotes/{QuoteID}/Historys", Verbs="GET") @ApiResponse(Description="No SalesQuote with the QuoteID provided was found", StatusCode=404) // @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class SalesQuoteHistorysGETManyRequest implements IReturn> { public String QuoteID = null; public String getQuoteID() { return QuoteID; } public SalesQuoteHistorysGETManyRequest setQuoteID(String value) { this.QuoteID = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @Route(Path="/SalesQuotes/{QuoteID}/Historys/{QuoteHistoryID}", Verbs="PATCH") @ApiResponse(Description="No SalesQuote with the QuoteID, Or QuoteHistoryID provided was found", StatusCode=404) // @ApiResponse(Description="Updated OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class SalesQuoteHistorysPATCHRequest extends SalesQuoteHistory implements IReturn { public String QuoteID = null; public String QuoteHistoryID = null; public String getQuoteID() { return QuoteID; } public SalesQuoteHistorysPATCHRequest setQuoteID(String value) { this.QuoteID = value; return this; } public String getQuoteHistoryID() { return QuoteHistoryID; } public SalesQuoteHistorysPATCHRequest setQuoteHistoryID(String value) { this.QuoteHistoryID = value; return this; } private static Object responseType = SalesQuoteHistory.class; public Object getResponseType() { return responseType; } } @Route(Path="/SalesQuotes/{QuoteID}/Historys/{QuoteHistoryID}/Lines/{QuoteLineID}/CustomFieldValues", Verbs="GET") @ApiResponse(Description="No Sales Quote Line QuoteID, QuoteHistoryID or QuoteLineID provided was found", StatusCode=404) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="Read OK", StatusCode=200) public static class SalesQuoteLineCustomFieldValuesGETManyRequest implements IReturn> { public String QuoteID = null; public String QuoteHistoryID = null; public String QuoteLineID = null; public String getQuoteID() { return QuoteID; } public SalesQuoteLineCustomFieldValuesGETManyRequest setQuoteID(String value) { this.QuoteID = value; return this; } public String getQuoteHistoryID() { return QuoteHistoryID; } public SalesQuoteLineCustomFieldValuesGETManyRequest setQuoteHistoryID(String value) { this.QuoteHistoryID = value; return this; } public String getQuoteLineID() { return QuoteLineID; } public SalesQuoteLineCustomFieldValuesGETManyRequest setQuoteLineID(String value) { this.QuoteLineID = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @Route(Path="/SalesQuotes/{QuoteID}/Historys/{QuoteHistoryID}/Lines/{QuoteLineID}/CustomFieldValues/{SettingID}", Verbs="GET") @ApiResponse(Description="No Sales Quote Line Custom Field Value with the QuoteID, QuoteHistoryID, QuoteLineID or SettingID provided was found", StatusCode=404) // @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class SalesQuoteLineCustomFieldValueGETRequest implements IReturn { public String QuoteID = null; public String QuoteHistoryID = null; public String QuoteLineID = null; public String SettingID = null; public String getQuoteID() { return QuoteID; } public SalesQuoteLineCustomFieldValueGETRequest setQuoteID(String value) { this.QuoteID = value; return this; } public String getQuoteHistoryID() { return QuoteHistoryID; } public SalesQuoteLineCustomFieldValueGETRequest setQuoteHistoryID(String value) { this.QuoteHistoryID = value; return this; } public String getQuoteLineID() { return QuoteLineID; } public SalesQuoteLineCustomFieldValueGETRequest setQuoteLineID(String value) { this.QuoteLineID = value; return this; } public String getSettingID() { return SettingID; } public SalesQuoteLineCustomFieldValueGETRequest setSettingID(String value) { this.SettingID = value; return this; } private static Object responseType = CustomFieldValue.class; public Object getResponseType() { return responseType; } } @Route(Path="/SalesQuotes/{QuoteID}/Historys/{QuoteHistoryID}/Lines/{QuoteLineID}/CustomFieldValues/{SettingID}", Verbs="PATCH") @ApiResponse(Description="No Sales Quote Line Custom Field Value with the QuoteID, QuoteHistoryID, QuoteLineID or SettingID provided was found", StatusCode=404) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="Updated OK", StatusCode=200) public static class SalesQuoteLineCustomFieldValuePATCHRequest extends CustomFieldValue implements IReturn { public String QuoteID = null; public String QuoteHistoryID = null; public String QuoteLineID = null; public String SettingID = null; public String getQuoteID() { return QuoteID; } public SalesQuoteLineCustomFieldValuePATCHRequest setQuoteID(String value) { this.QuoteID = value; return this; } public String getQuoteHistoryID() { return QuoteHistoryID; } public SalesQuoteLineCustomFieldValuePATCHRequest setQuoteHistoryID(String value) { this.QuoteHistoryID = value; return this; } public String getQuoteLineID() { return QuoteLineID; } public SalesQuoteLineCustomFieldValuePATCHRequest setQuoteLineID(String value) { this.QuoteLineID = value; return this; } public String getSettingID() { return SettingID; } public SalesQuoteLineCustomFieldValuePATCHRequest setSettingID(String value) { this.SettingID = value; return this; } private static Object responseType = CustomFieldValue.class; public Object getResponseType() { return responseType; } } @Route(Path="/SalesQuotes/Lines/CustomFields", Verbs="GET") @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) public static class SalesQuoteLineCustomFieldsGETManyRequest implements IReturn> { private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @Route(Path="/SalesQuotes/{QuoteID}/Historys/{QuoteHistoryID}/Lines/{QuoteLineID}", Verbs="GET") @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="No Sales Quote Line with the QuoteID or QuoteLineID provided was found", StatusCode=404) // @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="Read OK", StatusCode=200) public static class SalesQuoteLineGETRequest implements IReturn { public String QuoteID = null; public String QuoteHistoryID = null; public String QuoteLineID = null; public String getQuoteID() { return QuoteID; } public SalesQuoteLineGETRequest setQuoteID(String value) { this.QuoteID = value; return this; } public String getQuoteHistoryID() { return QuoteHistoryID; } public SalesQuoteLineGETRequest setQuoteHistoryID(String value) { this.QuoteHistoryID = value; return this; } public String getQuoteLineID() { return QuoteLineID; } public SalesQuoteLineGETRequest setQuoteLineID(String value) { this.QuoteLineID = value; return this; } private static Object responseType = SalesQuoteLine.class; public Object getResponseType() { return responseType; } } @Route(Path="/SalesQuotes/{QuoteID}/Historys/{QuoteHistoryID}/Lines", Verbs="GET") @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="No Sales Quote Line with the QuoteID or QuoteLineID provided was found", StatusCode=404) // @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="Not authenticated", StatusCode=401) public static class SalesQuoteLinesGETManyRequest implements IReturn> { public String QuoteID = null; public String QuoteHistoryID = null; public String getQuoteID() { return QuoteID; } public SalesQuoteLinesGETManyRequest setQuoteID(String value) { this.QuoteID = value; return this; } public String getQuoteHistoryID() { return QuoteHistoryID; } public SalesQuoteLinesGETManyRequest setQuoteHistoryID(String value) { this.QuoteHistoryID = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @Route(Path="/SalesQuotes/{QuoteID}/Historys/{QuoteHistoryID}/Lines", Verbs="POST") @ApiResponse(Description="Created OK", StatusCode=201) // @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="No Sales Quote Line with the QuoteID or QuoteLineID provided was found", StatusCode=404) // @ApiResponse(Description="Not authenticated", StatusCode=401) public static class SalesQuoteLinePOSTRequest extends SalesQuoteLine implements IReturn { public String QuoteID = null; public String QuoteHistoryID = null; public String getQuoteID() { return QuoteID; } public SalesQuoteLinePOSTRequest setQuoteID(String value) { this.QuoteID = value; return this; } public String getQuoteHistoryID() { return QuoteHistoryID; } public SalesQuoteLinePOSTRequest setQuoteHistoryID(String value) { this.QuoteHistoryID = value; return this; } private static Object responseType = SalesQuoteLine.class; public Object getResponseType() { return responseType; } } @Route(Path="/SalesQuotes/{QuoteID}/Historys/{QuoteHistoryID}/Lines/{QuoteLineID}", Verbs="PATCH") @ApiResponse(Description="Updated OK", StatusCode=200) // @ApiResponse(Description="No Sales Quote Line with the QuoteID or QuoteLineID provided was found", StatusCode=404) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class SalesQuoteLinePATCHRequest extends SalesQuoteLine implements IReturn { public String QuoteID = null; public String QuoteHistoryID = null; public String QuoteLineID = null; public String getQuoteID() { return QuoteID; } public SalesQuoteLinePATCHRequest setQuoteID(String value) { this.QuoteID = value; return this; } public String getQuoteHistoryID() { return QuoteHistoryID; } public SalesQuoteLinePATCHRequest setQuoteHistoryID(String value) { this.QuoteHistoryID = value; return this; } public String getQuoteLineID() { return QuoteLineID; } public SalesQuoteLinePATCHRequest setQuoteLineID(String value) { this.QuoteLineID = value; return this; } private static Object responseType = SalesQuoteLine.class; public Object getResponseType() { return responseType; } } @Route(Path="/SalesQuotes/{QuoteID}/Historys/{QuoteHistoryID}/Lines/{QuoteLineID}", Verbs="DELETE") @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="No Sales Quote Line with the QuoteID or QuoteLineID provided was found", StatusCode=404) // @ApiResponse(Description="Deleted OK", StatusCode=204) public static class SalesQuoteLineDELETERequest { public String QuoteID = null; public String QuoteHistoryID = null; public String QuoteLineID = null; public String getQuoteID() { return QuoteID; } public SalesQuoteLineDELETERequest setQuoteID(String value) { this.QuoteID = value; return this; } public String getQuoteHistoryID() { return QuoteHistoryID; } public SalesQuoteLineDELETERequest setQuoteHistoryID(String value) { this.QuoteHistoryID = value; return this; } public String getQuoteLineID() { return QuoteLineID; } public SalesQuoteLineDELETERequest setQuoteLineID(String value) { this.QuoteLineID = value; return this; } } @Route(Path="/SalesQuotes/NoteTypes/{NoteTypeID}", Verbs="GET") @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="No Sales Quote Note Type with the NoteTypeID provided was found", StatusCode=404) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class SalesQuoteNoteTypeGETRequest implements IReturn { public String NoteTypeID = null; public String getNoteTypeID() { return NoteTypeID; } public SalesQuoteNoteTypeGETRequest setNoteTypeID(String value) { this.NoteTypeID = value; return this; } private static Object responseType = NoteType.class; public Object getResponseType() { return responseType; } } @Route(Path="/SalesQuotes/NoteTypes", Verbs="GET") @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="Read OK", StatusCode=200) public static class SalesQuoteNoteTypesGETManyRequest implements IReturn> { private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @Route(Path="/SalesQuotes/NoteTypes", Verbs="POST") @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Created OK", StatusCode=201) public static class SalesQuoteNoteTypePOSTRequest extends NoteType implements IReturn { private static Object responseType = NoteType.class; public Object getResponseType() { return responseType; } } @Route(Path="/SalesQuotes/NoteTypes/{NoteTypeID}", Verbs="PATCH") @ApiResponse(Description="No Sales Quote Note Type with the NoteTypeID provided was found", StatusCode=404) // @ApiResponse(Description="Updated OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class SalesQuoteNoteTypePATCHRequest extends NoteType implements IReturn { public String NoteTypeID = null; public String getNoteTypeID() { return NoteTypeID; } public SalesQuoteNoteTypePATCHRequest setNoteTypeID(String value) { this.NoteTypeID = value; return this; } private static Object responseType = NoteType.class; public Object getResponseType() { return responseType; } } @Route(Path="/SalesQuotes/NoteTypes/{NoteTypeID}", Verbs="DELETE") @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="No Sales Quote Note Type with the NoteTypeID provided was found", StatusCode=404) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Deleted OK", StatusCode=204) public static class SalesQuoteNoteTypeDELETERequest { public String NoteTypeID = null; public String getNoteTypeID() { return NoteTypeID; } public SalesQuoteNoteTypeDELETERequest setNoteTypeID(String value) { this.NoteTypeID = value; return this; } } @Route(Path="/SalesQuotes/{QuoteID}/Notes/{NoteID}", Verbs="GET") @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="No Sales Quote Note with the QuoteID or NoteID provided was found", StatusCode=404) public static class SalesQuoteNoteGETRequest implements IReturn { public String QuoteID = null; public String NoteID = null; public String getQuoteID() { return QuoteID; } public SalesQuoteNoteGETRequest setQuoteID(String value) { this.QuoteID = value; return this; } public String getNoteID() { return NoteID; } public SalesQuoteNoteGETRequest setNoteID(String value) { this.NoteID = value; return this; } private static Object responseType = Note.class; public Object getResponseType() { return responseType; } } @Route(Path="/SalesQuotes/{QuoteID}/Notes", Verbs="GET") @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="No Sales Quote with the QuoteID provided was found", StatusCode=404) // @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) public static class SalesQuoteNotesGETManyRequest implements IReturn> { public String QuoteID = null; public String getQuoteID() { return QuoteID; } public SalesQuoteNotesGETManyRequest setQuoteID(String value) { this.QuoteID = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @Route(Path="/SalesQuotes/{QuoteID}/Notes", Verbs="POST") @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="No Sales Quote with the QuoteID provided was found", StatusCode=404) // @ApiResponse(Description="Created OK", StatusCode=201) public static class SalesQuoteNotePOSTRequest extends Note implements IReturn { public String QuoteID = null; public String getQuoteID() { return QuoteID; } public SalesQuoteNotePOSTRequest setQuoteID(String value) { this.QuoteID = value; return this; } private static Object responseType = Note.class; public Object getResponseType() { return responseType; } } @Route(Path="/SalesQuotes/{QuoteID}/Notes/{NoteID}", Verbs="PATCH") @ApiResponse(Description="No Sales Quote with the QuoteID provided was found", StatusCode=404) // @ApiResponse(Description="Updated OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class SalesQuoteNotePATCHRequest extends Note implements IReturn { public String QuoteID = null; public String NoteID = null; public String getQuoteID() { return QuoteID; } public SalesQuoteNotePATCHRequest setQuoteID(String value) { this.QuoteID = value; return this; } public String getNoteID() { return NoteID; } public SalesQuoteNotePATCHRequest setNoteID(String value) { this.NoteID = value; return this; } private static Object responseType = Note.class; public Object getResponseType() { return responseType; } } @Route(Path="/SalesQuotes/{QuoteID}/Notes/{NoteID}", Verbs="DELETE") @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="Deleted OK", StatusCode=204) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="No Sales Quote with the QuoteID provided was found", StatusCode=404) public static class SalesQuoteNoteDELETERequest { public String QuoteID = null; public String NoteID = null; public String getQuoteID() { return QuoteID; } public SalesQuoteNoteDELETERequest setQuoteID(String value) { this.QuoteID = value; return this; } public String getNoteID() { return NoteID; } public SalesQuoteNoteDELETERequest setNoteID(String value) { this.NoteID = value; return this; } } @Route(Path="/Services/Stop", Verbs="GET") @ApiResponse(Description="Stop request sent OK", StatusCode=204) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class StopRequest { } @Route(Path="/Services/Restart", Verbs="GET") @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Restart request sent OK", StatusCode=204) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class RestartRequest { } @ApiResponse(Description="Read OK", StatusCode=200) public static class AuthUserSessionsGETRequest implements IReturn> { private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @Route(Path="/Staff/Current", Verbs="GET") @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="Read OK", StatusCode=200) public static class StaffCurrentUserGETRequest implements IReturn { private static Object responseType = StaffCurrentUserGETResponse.class; public Object getResponseType() { return responseType; } } @Route(Path="/Staff/Current/List", Verbs="GET") @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="Not authenticated", StatusCode=401) public static class StaffCurrentUserListGETRequest implements IReturn> { private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @Route(Path="/Queries/StartupLog", Verbs="GET") public static class StartupLogEntryQuery extends QueryData implements IReturn> { private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @Route(Path="/Queries/PluginExceptions", Verbs="GET") public static class PluginExceptionQuery extends QueryData implements IReturn> { private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @Route(Path="/StockTransfers/{TransferID}", Verbs="GET") @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="No Stock Transfer with the TransferID provided was found", StatusCode=404) // @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="Read OK", StatusCode=200) public static class StockTransferGETRequest implements IReturn { public String TransferID = null; public String getTransferID() { return TransferID; } public StockTransferGETRequest setTransferID(String value) { this.TransferID = value; return this; } private static Object responseType = StockTransfer.class; public Object getResponseType() { return responseType; } } @Route(Path="/StockTransfers/", Verbs="POST") @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Created OK", StatusCode=201) public static class StockTransferPOSTRequest extends StockTransfer implements IReturn { private static Object responseType = StockTransfer.class; public Object getResponseType() { return responseType; } } @Route(Path="/StockTransfers/{TransferID}", Verbs="DELETE") @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="Deleted OK", StatusCode=204) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="No Stock Transfer with the Transfer No. provided was found", StatusCode=404) public static class StockTransferDELETERequest { public String TransferID = null; public String getTransferID() { return TransferID; } public StockTransferDELETERequest setTransferID(String value) { this.TransferID = value; return this; } } @Route(Path="/SupplierReturns/Credit/{CreditID}", Verbs="GET") @ApiResponse(Description="No Supplier Return Credit with the RecID provided was found", StatusCode=404) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="Read OK", StatusCode=200) public static class SupplierReturnCreditGETRequest implements IReturn { public String CreditID = null; public String getCreditID() { return CreditID; } public SupplierReturnCreditGETRequest setCreditID(String value) { this.CreditID = value; return this; } private static Object responseType = Credit.class; public Object getResponseType() { return responseType; } } @Route(Path="/SupplierReturns/Credit/FromShipments", Verbs="POST") @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Created OK", StatusCode=201) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class SupplierReturnCreditCreateFromShipmentsRequest implements IReturn { public ArrayList ShipmentIDs = null; public ArrayList ShipmentNos = null; public ArrayList getShipmentIDs() { return ShipmentIDs; } public SupplierReturnCreditCreateFromShipmentsRequest setShipmentIDs(ArrayList value) { this.ShipmentIDs = value; return this; } public ArrayList getShipmentNos() { return ShipmentNos; } public SupplierReturnCreditCreateFromShipmentsRequest setShipmentNos(ArrayList value) { this.ShipmentNos = value; return this; } private static Object responseType = Credit.class; public Object getResponseType() { return responseType; } } @Route(Path="/SupplierReturns/Credit/Activate/{CreditID}", Verbs="POST") @ApiResponse(Description="Activated OK", StatusCode=204) // @ApiResponse(Description="No supplier return credit with the CreditID provided was found", StatusCode=404) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class SupplierReturnCreditACTIVATERequest implements IReturn { public String CreditID = null; public String getCreditID() { return CreditID; } public SupplierReturnCreditACTIVATERequest setCreditID(String value) { this.CreditID = value; return this; } private static Object responseType = Credit.class; public Object getResponseType() { return responseType; } } @Route(Path="/SupplierReturns/Shipping/{ShippingID}", Verbs="GET") @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="No Supplier Return Credit with the RecID provided was found", StatusCode=404) // @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="Read OK", StatusCode=200) public static class SupplierReturnShippingGETRequest implements IReturn { public String ShippingID = null; public String getShippingID() { return ShippingID; } public SupplierReturnShippingGETRequest setShippingID(String value) { this.ShippingID = value; return this; } private static Object responseType = Shipping.class; public Object getResponseType() { return responseType; } } @Route(Path="/SystemInfo/", Verbs="GET") @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) public static class SystemInformationGETRequest implements IReturn { private static Object responseType = SystemInformationGETResponse.class; public Object getResponseType() { return responseType; } } @Route(Path="/TaxRates/{TaxID}", Verbs="GET") @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="No tax rate with the RecID provided was found", StatusCode=404) public static class TaxRateGETRequest implements IReturn { public String TaxID = null; public String getTaxID() { return TaxID; } public TaxRateGETRequest setTaxID(String value) { this.TaxID = value; return this; } private static Object responseType = TaxRate.class; public Object getResponseType() { return responseType; } } @Route(Path="/TaxRates", Verbs="POST") @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="Created OK", StatusCode=201) public static class TaxRatePOSTRequest extends TaxRate implements IReturn { private static Object responseType = TaxRate.class; public Object getResponseType() { return responseType; } } @Route(Path="/TaxRates/{TaxID}", Verbs="PATCH") @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="No tax rate with the RecID provided was found", StatusCode=404) // @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="Updated OK", StatusCode=200) public static class TaxRatePATCHRequest extends TaxRate implements IReturn { public String TaxID = null; public String getTaxID() { return TaxID; } public TaxRatePATCHRequest setTaxID(String value) { this.TaxID = value; return this; } private static Object responseType = TaxRate.class; public Object getResponseType() { return responseType; } } @Route(Path="/TaxRates/{TaxID}", Verbs="DELETE") @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="Deleted OK", StatusCode=204) // @ApiResponse(Description="No tax rate with the RecID provided was found", StatusCode=404) public static class TaxRateDELETERequest { public String TaxID = null; public String getTaxID() { return TaxID; } public TaxRateDELETERequest setTaxID(String value) { this.TaxID = value; return this; } } @Route(Path="/UserSettings", Verbs="POST") @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class UserSettingPOSTRequest extends UserSetting { } @Route(Path="/UserSettings", Verbs="GET") @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) public static class UserSettingsGETManyRequest extends QueryDb implements IReturn> { private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @Route(Path="/WarehouseTransfersOut/{WarehouseTransferOutID}", Verbs="GET") @ApiResponse(Description="No warehouse transfer out with the WarehouseTransferOutID provided was found", StatusCode=404) // @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class WarehouseTransferOutGETRequest implements IReturn { public String WarehouseTransferOutID = null; public String getWarehouseTransferOutID() { return WarehouseTransferOutID; } public WarehouseTransferOutGETRequest setWarehouseTransferOutID(String value) { this.WarehouseTransferOutID = value; return this; } private static Object responseType = WarehouseTransferOut.class; public Object getResponseType() { return responseType; } } @Route(Path="/WarehouseTransfersOut", Verbs="POST") @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="Created OK", StatusCode=201) public static class WarehouseTransferOutPOSTRequest extends WarehouseTransferOut implements IReturn { public String DestinationWarehouseID = null; public String getDestinationWarehouseID() { return DestinationWarehouseID; } public WarehouseTransferOutPOSTRequest setDestinationWarehouseID(String value) { this.DestinationWarehouseID = value; return this; } private static Object responseType = WarehouseTransferOut.class; public Object getResponseType() { return responseType; } } @Route(Path="/WarehouseTransfersOut/{WarehouseTransferOutID}", Verbs="PATCH") @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="No warehouse transfer out with the WarehouseTransferOutID provided was found", StatusCode=404) // @ApiResponse(Description="Updated OK", StatusCode=200) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class WarehouseTransferOutPATCHRequest extends WarehouseTransferOut implements IReturn { public String WarehouseTransferOutID = null; public String getWarehouseTransferOutID() { return WarehouseTransferOutID; } public WarehouseTransferOutPATCHRequest setWarehouseTransferOutID(String value) { this.WarehouseTransferOutID = value; return this; } private static Object responseType = WarehouseTransferOut.class; public Object getResponseType() { return responseType; } } @Route(Path="/WarehouseTransfersOut/{WarehouseTransferOutID}", Verbs="DELETE") @ApiResponse(Description="Deleted OK", StatusCode=204) // @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="No warehouse transfer out with the WarehouseTransferOutID provided was found", StatusCode=404) public static class WarehouseTransferOutCANCELRequest { public String WarehouseTransferOutID = null; public String getWarehouseTransferOutID() { return WarehouseTransferOutID; } public WarehouseTransferOutCANCELRequest setWarehouseTransferOutID(String value) { this.WarehouseTransferOutID = value; return this; } } @Route(Path="/WarehouseTransfersOut/Activate/{WarehouseTransferOutID}", Verbs="POST") @ApiResponse(Description="No warehouse transfer out with the WarehouseTransferOutID provided was found", StatusCode=404) // @ApiResponse(Description="Activated OK", StatusCode=204) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class WarehouseTransferOutACTIVATERequest implements IReturn { public String WarehouseTransferOutID = null; public String getWarehouseTransferOutID() { return WarehouseTransferOutID; } public WarehouseTransferOutACTIVATERequest setWarehouseTransferOutID(String value) { this.WarehouseTransferOutID = value; return this; } private static Object responseType = WarehouseTransferOut.class; public Object getResponseType() { return responseType; } } @Route(Path="/WarehouseTransfersOut/{WarehouseTransferOutID}/ReceiveIns", Verbs="GET") @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="No purchase order with the WarehouseTransferOutID provided was found", StatusCode=404) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class WarehouseTransferOutReceiveInsGETManyRequest implements IReturn> { public String WarehouseTransferOutID = null; public String getWarehouseTransferOutID() { return WarehouseTransferOutID; } public WarehouseTransferOutReceiveInsGETManyRequest setWarehouseTransferOutID(String value) { this.WarehouseTransferOutID = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @Route(Path="/WarehouseTransfersOut/{WarehouseTransferOutID}/Lines/{WarehouseTransferOutLineID}", Verbs="GET") @ApiResponse(Description="No warehouse transfer out line with the WarehouseTransferOutID or WarehouseTransferOutLineID provided was found", StatusCode=404) // @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class WarehouseTransferOutLineGETRequest implements IReturn { public String WarehouseTransferOutID = null; public String WarehouseTransferOutLineID = null; public String getWarehouseTransferOutID() { return WarehouseTransferOutID; } public WarehouseTransferOutLineGETRequest setWarehouseTransferOutID(String value) { this.WarehouseTransferOutID = value; return this; } public String getWarehouseTransferOutLineID() { return WarehouseTransferOutLineID; } public WarehouseTransferOutLineGETRequest setWarehouseTransferOutLineID(String value) { this.WarehouseTransferOutLineID = value; return this; } private static Object responseType = WarehouseTransferOutLine.class; public Object getResponseType() { return responseType; } } @Route(Path="/WarehouseTransfersOut/{WarehouseTransferOutID}/Lines", Verbs="GET") @ApiResponse(Description="No warehouse transfer out line with the WarehouseTransferOutID provided was found", StatusCode=404) // @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class WarehouseTransferOutLinesGETManyRequest implements IReturn> { public String WarehouseTransferOutID = null; public String getWarehouseTransferOutID() { return WarehouseTransferOutID; } public WarehouseTransferOutLinesGETManyRequest setWarehouseTransferOutID(String value) { this.WarehouseTransferOutID = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @Route(Path="/WarehouseTransfersOut/{WarehouseTransferOutID}/Lines", Verbs="POST") @ApiResponse(Description="Created OK", StatusCode=201) // @ApiResponse(Description="No warehouse transfer out line with the WarehouseTransferOutID or WarehouseTransferOutLineID provided was found", StatusCode=404) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class WarehouseTransferOutLinePOSTRequest extends WarehouseTransferOutLine implements IReturn { public String WarehouseTransferOutID = null; public String getWarehouseTransferOutID() { return WarehouseTransferOutID; } public WarehouseTransferOutLinePOSTRequest setWarehouseTransferOutID(String value) { this.WarehouseTransferOutID = value; return this; } private static Object responseType = WarehouseTransferOutLine.class; public Object getResponseType() { return responseType; } } @Route(Path="/WarehouseTransfersOut/{WarehouseTransferOutID}/Lines/{WarehouseTransferOutLineID}", Verbs="PATCH") @ApiResponse(Description="Updated OK", StatusCode=200) // @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="No warehouse transfer out line with the WarehouseTransferOutID or WarehouseTransferOutLineID provided was found", StatusCode=404) // @ApiResponse(Description="Not authenticated", StatusCode=401) public static class WarehouseTransferOutLinePATCHRequest extends WarehouseTransferOutLine implements IReturn { public String WarehouseTransferOutID = null; public String WarehouseTransferOutLineID = null; public String getWarehouseTransferOutID() { return WarehouseTransferOutID; } public WarehouseTransferOutLinePATCHRequest setWarehouseTransferOutID(String value) { this.WarehouseTransferOutID = value; return this; } public String getWarehouseTransferOutLineID() { return WarehouseTransferOutLineID; } public WarehouseTransferOutLinePATCHRequest setWarehouseTransferOutLineID(String value) { this.WarehouseTransferOutLineID = value; return this; } private static Object responseType = WarehouseTransferOutLine.class; public Object getResponseType() { return responseType; } } @Route(Path="/WarehouseTransfersOut/{WarehouseTransferOutID}/Lines/{WarehouseTransferOutLineID}", Verbs="DELETE") @ApiResponse(Description="No warehouse transfer out line with the WarehouseTransferOutID or WarehouseTransferOutLineID provided was found", StatusCode=404) // @ApiResponse(Description="Deleted OK", StatusCode=204) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class WarehouseTransferOutLineDELETERequest extends WarehouseTransferOutLine { public String WarehouseTransferOutID = null; public String WarehouseTransferOutLineID = null; public String getWarehouseTransferOutID() { return WarehouseTransferOutID; } public WarehouseTransferOutLineDELETERequest setWarehouseTransferOutID(String value) { this.WarehouseTransferOutID = value; return this; } public String getWarehouseTransferOutLineID() { return WarehouseTransferOutLineID; } public WarehouseTransferOutLineDELETERequest setWarehouseTransferOutLineID(String value) { this.WarehouseTransferOutLineID = value; return this; } } @Route(Path="/WarehouseTransfersIn/{WarehouseTransferInID}", Verbs="GET") @ApiResponse(Description="No warehouse transfer in with the WarehouseTransferInID provided was found", StatusCode=404) // @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class WarehouseTransferInGETRequest implements IReturn { public String WarehouseTransferInID = null; public String getWarehouseTransferInID() { return WarehouseTransferInID; } public WarehouseTransferInGETRequest setWarehouseTransferInID(String value) { this.WarehouseTransferInID = value; return this; } private static Object responseType = WarehouseTransferIn.class; public Object getResponseType() { return responseType; } } @Route(Path="/WarehouseTransfersIn", Verbs="POST") @ApiResponse(Description="Created OK", StatusCode=201) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class WarehouseTransferInPOSTRequest extends WarehouseTransferIn implements IReturn { public String WarehouseTransferOutID = null; public String getWarehouseTransferOutID() { return WarehouseTransferOutID; } public WarehouseTransferInPOSTRequest setWarehouseTransferOutID(String value) { this.WarehouseTransferOutID = value; return this; } private static Object responseType = WarehouseTransferIn.class; public Object getResponseType() { return responseType; } } @Route(Path="/WarehouseTransfersIn/{WarehouseTransferInID}", Verbs="PATCH") @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="Updated OK", StatusCode=201) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="No warehouse transfer in with the WarehouseTransferInID provided was found", StatusCode=404) public static class WarehouseTransferInPATCHRequest extends WarehouseTransferIn implements IReturn { public String WarehouseTransferInID = null; public String getWarehouseTransferInID() { return WarehouseTransferInID; } public WarehouseTransferInPATCHRequest setWarehouseTransferInID(String value) { this.WarehouseTransferInID = value; return this; } private static Object responseType = WarehouseTransferIn.class; public Object getResponseType() { return responseType; } } @Route(Path="/WarehouseTransfersIn/Activate/{WarehouseTransferInID}", Verbs="POST") @ApiResponse(Description="Activated OK", StatusCode=204) // @ApiResponse(Description="No warehouse transfer in with the WarehouseTransferInID provided was found", StatusCode=404) // @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="Not authenticated", StatusCode=401) public static class WarehouseTransferInACTIVATERequest implements IReturn { public String WarehouseTransferInID = null; public String getWarehouseTransferInID() { return WarehouseTransferInID; } public WarehouseTransferInACTIVATERequest setWarehouseTransferInID(String value) { this.WarehouseTransferInID = value; return this; } private static Object responseType = WarehouseTransferIn.class; public Object getResponseType() { return responseType; } } @Route(Path="/WarehouseTransfersIn/{WarehouseTransferInID}/ReceiveIns", Verbs="GET") @ApiResponse(Description="No purchase order with the WarehouseTransferInID provided was found", StatusCode=404) // @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class WarehouseTransferInReceiveInsGETManyRequest implements IReturn> { public String WarehouseTransferInID = null; public String getWarehouseTransferInID() { return WarehouseTransferInID; } public WarehouseTransferInReceiveInsGETManyRequest setWarehouseTransferInID(String value) { this.WarehouseTransferInID = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @Route(Path="/WarehouseTransfersIn/{WarehouseTransferInID}/Lines/{WarehouseTransferInLineID}", Verbs="GET") @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="No warehouse transfer in line with the WarehouseTransferInID or WarehouseTransferInLineID provided was found", StatusCode=404) public static class WarehouseTransferInLineGETRequest implements IReturn { public String WarehouseTransferInID = null; public String WarehouseTransferInLineID = null; public String getWarehouseTransferInID() { return WarehouseTransferInID; } public WarehouseTransferInLineGETRequest setWarehouseTransferInID(String value) { this.WarehouseTransferInID = value; return this; } public String getWarehouseTransferInLineID() { return WarehouseTransferInLineID; } public WarehouseTransferInLineGETRequest setWarehouseTransferInLineID(String value) { this.WarehouseTransferInLineID = value; return this; } private static Object responseType = WarehouseTransferInLine.class; public Object getResponseType() { return responseType; } } @Route(Path="/WarehouseTransfersIn/{WarehouseTransferInID}/Lines", Verbs="GET") @ApiResponse(Description="No warehouse transfer in line with the WarehouseTransferInID provided was found", StatusCode=404) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="Read OK", StatusCode=200) public static class WarehouseTransferInLinesGETManyRequest implements IReturn> { public String WarehouseTransferInID = null; public String getWarehouseTransferInID() { return WarehouseTransferInID; } public WarehouseTransferInLinesGETManyRequest setWarehouseTransferInID(String value) { this.WarehouseTransferInID = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @Route(Path="/WarehouseTransfersIn/{WarehouseTransferInID}/Lines/{WarehouseTransferInLineID}", Verbs="PATCH") @ApiResponse(Description="No warehouse transfer in line with the WarehouseTransferInID or WarehouseTransferInLineID provided was found", StatusCode=404) // @ApiResponse(Description="Updated OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class WarehouseTransferInLinePATCHRequest extends WarehouseTransferInLine implements IReturn { public String WarehouseTransferInID = null; public String WarehouseTransferInLineID = null; public String getWarehouseTransferInID() { return WarehouseTransferInID; } public WarehouseTransferInLinePATCHRequest setWarehouseTransferInID(String value) { this.WarehouseTransferInID = value; return this; } public String getWarehouseTransferInLineID() { return WarehouseTransferInLineID; } public WarehouseTransferInLinePATCHRequest setWarehouseTransferInLineID(String value) { this.WarehouseTransferInLineID = value; return this; } private static Object responseType = WarehouseTransferInLine.class; public Object getResponseType() { return responseType; } } @Route(Path="/Webhooks/Subscribers/", Verbs="GET") @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class WebhooksSubscribersGETManyRequest extends QueryDb implements IReturn> { private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @Route(Path="/Webhooks/Subscribers/{SubscriberID}", Verbs="GET") @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="Read OK", StatusCode=200) public static class WebhooksSubscribersGETRequest implements IReturn { public String SubscriberID = null; public String getSubscriberID() { return SubscriberID; } public WebhooksSubscribersGETRequest setSubscriberID(String value) { this.SubscriberID = value; return this; } private static Object responseType = WebhookSubscriber.class; public Object getResponseType() { return responseType; } } @Route(Path="/Webhooks/Subscribers/", Verbs="POST") @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="Created OK", StatusCode=201) // @ApiResponse(Description="Not authenticated", StatusCode=401) public static class WebhooksSubscribersPOSTRequest implements IReturn { public String Name = null; public Boolean IsEnabled = null; public String getName() { return Name; } public WebhooksSubscribersPOSTRequest setName(String value) { this.Name = value; return this; } public Boolean getIsEnabled() { return IsEnabled; } public WebhooksSubscribersPOSTRequest setIsEnabled(Boolean value) { this.IsEnabled = value; return this; } private static Object responseType = SY_WebhookSubscriber.class; public Object getResponseType() { return responseType; } } @Route(Path="/Webhooks/Subscribers/{SubscriberID}/", Verbs="PATCH") @ApiResponse(Description="Updated OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="No Subscriber with the SubscriberID was found.", StatusCode=404) public static class WebhooksSubscribersPATCHRequest implements IReturn { public String SubscriberID = null; public String Name = null; public Boolean IsEnabled = null; public Integer ItemNo = null; public String getSubscriberID() { return SubscriberID; } public WebhooksSubscribersPATCHRequest setSubscriberID(String value) { this.SubscriberID = value; return this; } public String getName() { return Name; } public WebhooksSubscribersPATCHRequest setName(String value) { this.Name = value; return this; } public Boolean getIsEnabled() { return IsEnabled; } public WebhooksSubscribersPATCHRequest setIsEnabled(Boolean value) { this.IsEnabled = value; return this; } public Integer getItemNo() { return ItemNo; } public WebhooksSubscribersPATCHRequest setItemNo(Integer value) { this.ItemNo = value; return this; } private static Object responseType = SY_WebhookSubscriber.class; public Object getResponseType() { return responseType; } } @Route(Path="/Webhooks/Subscribers/{SubscriberID}/", Verbs="DELETE") @ApiResponse(Description="Deleted OK", StatusCode=204) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="No Subscriber with the SubscriberID was found.", StatusCode=404) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class WebhooksSubscribersDELETERequest { public String SubscriberID = null; public String getSubscriberID() { return SubscriberID; } public WebhooksSubscribersDELETERequest setSubscriberID(String value) { this.SubscriberID = value; return this; } } @Route(Path="/Webhooks/Subscribers/{SubscriberID}/Subscriptions/", Verbs="GET") @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="No Subscriber with the SubscriberID was found.", StatusCode=404) public static class WebhooksSubscriptionsGETRequest implements IReturn> { public String SubscriberID = null; public String getSubscriberID() { return SubscriberID; } public WebhooksSubscriptionsGETRequest setSubscriberID(String value) { this.SubscriberID = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @Route(Path="/Webhooks/Subscribers/{SubscriberID}/Subscriptions/", Verbs="POST") @ApiResponse(Description="No Subscriber with the SubscriberID was found.", StatusCode=404) // @ApiResponse(Description="Created OK", StatusCode=201) public static class WebhooksSubscriptionsPOSTRequest implements IReturn { public String SubscriberID = null; public String URL = null; public String EventName = null; public ArrayList Headers = null; public String getSubscriberID() { return SubscriberID; } public WebhooksSubscriptionsPOSTRequest setSubscriberID(String value) { this.SubscriberID = value; return this; } public String getUrl() { return URL; } public WebhooksSubscriptionsPOSTRequest setUrl(String value) { this.URL = value; return this; } public String getEventName() { return EventName; } public WebhooksSubscriptionsPOSTRequest setEventName(String value) { this.EventName = value; return this; } public ArrayList getHeaders() { return Headers; } public WebhooksSubscriptionsPOSTRequest setHeaders(ArrayList value) { this.Headers = value; return this; } private static Object responseType = SY_WebhookSubscription.class; public Object getResponseType() { return responseType; } } @Route(Path="/Webhooks/Subscribers/{SubscriberID}/Subscriptions/", Verbs="PATCH") @ApiResponse(Description="Updated OK", StatusCode=200) // @ApiResponse(Description="No Subscriber with the SubscriberID was found.", StatusCode=404) public static class WebhooksSubscriptionsPATCHRequest implements IReturn { public String SubscriberID = null; public String SubscriptionID = null; public String URL = null; public String EventName = null; public ArrayList Headers = null; public String getSubscriberID() { return SubscriberID; } public WebhooksSubscriptionsPATCHRequest setSubscriberID(String value) { this.SubscriberID = value; return this; } public String getSubscriptionID() { return SubscriptionID; } public WebhooksSubscriptionsPATCHRequest setSubscriptionID(String value) { this.SubscriptionID = value; return this; } public String getUrl() { return URL; } public WebhooksSubscriptionsPATCHRequest setUrl(String value) { this.URL = value; return this; } public String getEventName() { return EventName; } public WebhooksSubscriptionsPATCHRequest setEventName(String value) { this.EventName = value; return this; } public ArrayList getHeaders() { return Headers; } public WebhooksSubscriptionsPATCHRequest setHeaders(ArrayList value) { this.Headers = value; return this; } private static Object responseType = SY_WebhookSubscription.class; public Object getResponseType() { return responseType; } } @Route(Path="/Webhooks/Subscribers/{SubscriberID}/Subscriptions/{SubscriptionID}/", Verbs="DELETE") @ApiResponse(Description="Deleted OK", StatusCode=204) // @ApiResponse(Description="No Subscriber with the SubscriberID or Webhook with the SubscriptionID provided was found", StatusCode=404) public static class WebhooksSubscriptionsDELETERequest { public String SubscriberID = null; public String SubscriptionID = null; public String getSubscriberID() { return SubscriberID; } public WebhooksSubscriptionsDELETERequest setSubscriberID(String value) { this.SubscriberID = value; return this; } public String getSubscriptionID() { return SubscriptionID; } public WebhooksSubscriptionsDELETERequest setSubscriptionID(String value) { this.SubscriptionID = value; return this; } } @Route(Path="/Webhooks/Subscribers/{SubscriberID}/Messages", Verbs="GET") public static class WebhooksMessagesGETRequest extends QueryDb implements IReturn> { public String SubscriberID = null; public String getSubscriberID() { return SubscriberID; } public WebhooksMessagesGETRequest setSubscriberID(String value) { this.SubscriberID = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @Route(Path="/Webhooks/Subscribers/{SubscriberID}/Subscriptions/{SubscriptionID}/Messages/{MessageID}", Verbs="DELETE") @ApiResponse(Description="Deleted OK", StatusCode=204) // @ApiResponse(Description="No Subscriber with the SubscriberID, Subscription with the SubscriptionID, Or Message with the MessageID provided was found.", StatusCode=404) public static class WebhooksMessagesDELETERequest { public String SubscriberID = null; public String SubscriptionID = null; public String MessageID = null; public String getSubscriberID() { return SubscriberID; } public WebhooksMessagesDELETERequest setSubscriberID(String value) { this.SubscriberID = value; return this; } public String getSubscriptionID() { return SubscriptionID; } public WebhooksMessagesDELETERequest setSubscriptionID(String value) { this.SubscriptionID = value; return this; } public String getMessageID() { return MessageID; } public WebhooksMessagesDELETERequest setMessageID(String value) { this.MessageID = value; return this; } } @Route(Path="/Webhooks/Subscribers/{SubscriberID}/Messages/Responses", Verbs="GET") public static class WebhooksMessageResponsesGETRequest extends QueryDb implements IReturn> { public String SubscriberID = null; public String getSubscriberID() { return SubscriberID; } public WebhooksMessageResponsesGETRequest setSubscriberID(String value) { this.SubscriberID = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @Route(Path="/Webhooks/Events/", Verbs="GET") @ApiResponse(Description="Read OK", StatusCode=200) public static class WebhooksEventsGETRequest implements IReturn> { private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @Route(Path="/Webhooks/Events/", Verbs="POST") // @Route(Path="/Webhooks/Events/", Verbs="POST") @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="Created OK", StatusCode=201) // @ApiResponse(Description="Not authenticated", StatusCode=401) public static class WebhooksEventsPOSTRequest { public String EventName = null; public String Body = null; public String SourceDTOType = null; public String SourceDTOID = null; public String getEventName() { return EventName; } public WebhooksEventsPOSTRequest setEventName(String value) { this.EventName = value; return this; } public String getBody() { return Body; } public WebhooksEventsPOSTRequest setBody(String value) { this.Body = value; return this; } public String getSourceDTOType() { return SourceDTOType; } public WebhooksEventsPOSTRequest setSourceDTOType(String value) { this.SourceDTOType = value; return this; } public String getSourceDTOID() { return SourceDTOID; } public WebhooksEventsPOSTRequest setSourceDTOID(String value) { this.SourceDTOID = value; return this; } } @Route(Path="/Webhooks/Test/", Verbs="POST") // @Route(Path="/Webhooks/Test/", Verbs="POST") @ApiResponse(Description="Created OK", StatusCode=201) public static class WebhooksTestPOSTRequest { public String Body = null; public String getBody() { return Body; } public WebhooksTestPOSTRequest setBody(String value) { this.Body = value; return this; } } @Route(Path="/WorkOrders/{WorkOrderID}", Verbs="GET") @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="No work order record with the WorkOrderID provided was found", StatusCode=404) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Read OK", StatusCode=200) public static class WorkOrderGETRequest implements IReturn { public String WorkOrderID = null; public String getWorkOrderID() { return WorkOrderID; } public WorkOrderGETRequest setWorkOrderID(String value) { this.WorkOrderID = value; return this; } private static Object responseType = WorkOrder.class; public Object getResponseType() { return responseType; } } @Route(Path="/WorkOrders", Verbs="POST") @ApiResponse(Description="Created OK", StatusCode=201) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class WorkOrderPOSTRequest extends WorkOrder implements IReturn { private static Object responseType = WorkOrder.class; public Object getResponseType() { return responseType; } } @Route(Path="/WorkOrders/{WorkOrderID}", Verbs="PATCH") @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="No work order record with the WorkOrderID provided was found", StatusCode=404) // @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="Updated OK", StatusCode=200) public static class WorkOrderPATCHRequest extends WorkOrder implements IReturn { public String WorkOrderID = null; public String getWorkOrderID() { return WorkOrderID; } public WorkOrderPATCHRequest setWorkOrderID(String value) { this.WorkOrderID = value; return this; } private static Object responseType = WorkOrder.class; public Object getResponseType() { return responseType; } } @Route(Path="/WorkOrders/{WorkOrderID}", Verbs="DELETE") @ApiResponse(Description="No work order record with the WorkOrderID provided was found", StatusCode=404) // @ApiResponse(Description="Deleted OK", StatusCode=204) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class WorkOrderDELETERequest { public String WorkOrderID = null; public String getWorkOrderID() { return WorkOrderID; } public WorkOrderDELETERequest setWorkOrderID(String value) { this.WorkOrderID = value; return this; } } @Route(Path="/WorkOrders/{WorkOrderID}/Allocations/{AllocationID}", Verbs="GET") @ApiResponse(Description="No work order allocation with the WorkOrderID or AllocationID provided was found", StatusCode=404) // @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="Not authenticated", StatusCode=401) public static class WorkOrderAllocationGETRequest implements IReturn { public String WorkOrderID = null; public String AllocationID = null; public String getWorkOrderID() { return WorkOrderID; } public WorkOrderAllocationGETRequest setWorkOrderID(String value) { this.WorkOrderID = value; return this; } public String getAllocationID() { return AllocationID; } public WorkOrderAllocationGETRequest setAllocationID(String value) { this.AllocationID = value; return this; } private static Object responseType = Allocation.class; public Object getResponseType() { return responseType; } } @Route(Path="/WorkOrders/{WorkOrderID}/Allocations", Verbs="GET") @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="No work order allocations with the WorkOrderID provided was found", StatusCode=404) public static class WorkOrderAllocationsGETManyRequest implements IReturn> { public String WorkOrderID = null; public String getWorkOrderID() { return WorkOrderID; } public WorkOrderAllocationsGETManyRequest setWorkOrderID(String value) { this.WorkOrderID = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @Route(Path="/WorkOrders/{WorkOrderID}/Allocations", Verbs="POST") @ApiResponse(Description="Created OK", StatusCode=201) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="No work order allocation with the WorkOrderID or AllocationID provided was found", StatusCode=404) public static class WorkOrderAllocationPOSTRequest extends Allocation implements IReturn { public String WorkOrderID = null; public String getWorkOrderID() { return WorkOrderID; } public WorkOrderAllocationPOSTRequest setWorkOrderID(String value) { this.WorkOrderID = value; return this; } private static Object responseType = Allocation.class; public Object getResponseType() { return responseType; } } @Route(Path="/WorkOrders/{WorkOrderID}/Allocations/{AllocationID}", Verbs="DELETE") @ApiResponse(Description="No work order allocation with the WorkOrderID or AllocationID provided was found", StatusCode=404) // @ApiResponse(Description="Deleted OK", StatusCode=204) // @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="Not authenticated", StatusCode=401) public static class WorkOrderAllocationDELETERequest { public String WorkOrderID = null; public String AllocationID = null; public String getWorkOrderID() { return WorkOrderID; } public WorkOrderAllocationDELETERequest setWorkOrderID(String value) { this.WorkOrderID = value; return this; } public String getAllocationID() { return AllocationID; } public WorkOrderAllocationDELETERequest setAllocationID(String value) { this.AllocationID = value; return this; } } @Route(Path="/WorkOrders/{WorkOrderID}/CustomFieldValues", Verbs="GET") @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="No work order record with the WorkOrderID provided was found", StatusCode=404) // @ApiResponse(Description="Read OK", StatusCode=200) public static class WorkOrderCustomFieldValuesGETManyRequest implements IReturn> { public String WorkOrderID = null; public String getWorkOrderID() { return WorkOrderID; } public WorkOrderCustomFieldValuesGETManyRequest setWorkOrderID(String value) { this.WorkOrderID = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @Route(Path="/WorkOrders/{WorkOrderID}/CustomFieldValues/{SettingID}", Verbs="GET") @ApiResponse(Description="No work order custom field value with the WorkOrderID or SettingID provided was found", StatusCode=404) // @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) public static class WorkOrderCustomFieldValueGETRequest implements IReturn { public String WorkOrderID = null; public String SettingID = null; public String getWorkOrderID() { return WorkOrderID; } public WorkOrderCustomFieldValueGETRequest setWorkOrderID(String value) { this.WorkOrderID = value; return this; } public String getSettingID() { return SettingID; } public WorkOrderCustomFieldValueGETRequest setSettingID(String value) { this.SettingID = value; return this; } private static Object responseType = CustomFieldValue.class; public Object getResponseType() { return responseType; } } @Route(Path="/WorkOrders/{WorkOrderID}/CustomFieldValues/{SettingID}", Verbs="PATCH") @ApiResponse(Description="No work order custom field value with the WorkOrderID or SettingID provided was found", StatusCode=404) // @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="Updated OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) public static class WorkOrderCustomFieldValuePATCHRequest extends CustomFieldValue implements IReturn { public String WorkOrderID = null; public String SettingID = null; public String getWorkOrderID() { return WorkOrderID; } public WorkOrderCustomFieldValuePATCHRequest setWorkOrderID(String value) { this.WorkOrderID = value; return this; } public String getSettingID() { return SettingID; } public WorkOrderCustomFieldValuePATCHRequest setSettingID(String value) { this.SettingID = value; return this; } private static Object responseType = CustomFieldValue.class; public Object getResponseType() { return responseType; } } @Route(Path="/WorkOrders/CustomFields", Verbs="GET") @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="Read OK", StatusCode=200) public static class WorkOrderCustomFieldsGETManyRequest implements IReturn> { private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @Route(Path="/WorkOrders/CustomFields/{SettingID}", Verbs="GET") @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="No custom field with the SettingID provided was found", StatusCode=404) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class WorkOrderCustomFieldGETRequest implements IReturn { public String SettingID = null; public String getSettingID() { return SettingID; } public WorkOrderCustomFieldGETRequest setSettingID(String value) { this.SettingID = value; return this; } private static Object responseType = CustomField.class; public Object getResponseType() { return responseType; } } @Route(Path="/WorkOrders/DocumentTypes/{DocumentTypeID}", Verbs="GET") @ApiResponse(Description="No work order document type with the DocumentTypeID provided was found", StatusCode=404) // @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="Not authenticated", StatusCode=401) public static class WorkOrderDocumentTypeGETRequest implements IReturn { public String DocumentTypeID = null; public String getDocumentTypeID() { return DocumentTypeID; } public WorkOrderDocumentTypeGETRequest setDocumentTypeID(String value) { this.DocumentTypeID = value; return this; } private static Object responseType = DocumentType.class; public Object getResponseType() { return responseType; } } @Route(Path="/WorkOrders/DocumentTypes", Verbs="GET") @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Read OK", StatusCode=200) public static class WorkOrderDocumentTypesGETManyRequest implements IReturn> { private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @Route(Path="/WorkOrders/DocumentTypes", Verbs="POST") @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="Created OK", StatusCode=201) public static class WorkOrderDocumentTypePOSTRequest extends DocumentType implements IReturn { private static Object responseType = DocumentType.class; public Object getResponseType() { return responseType; } } @Route(Path="/WorkOrders/DocumentTypes/{DocumentTypeID}", Verbs="PATCH") @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="No work order document type with the DocumentTypeID provided was found", StatusCode=404) // @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="Updated OK", StatusCode=200) public static class WorkOrderDocumentTypePATCHRequest extends DocumentType implements IReturn { public String DocumentTypeID = null; public String getDocumentTypeID() { return DocumentTypeID; } public WorkOrderDocumentTypePATCHRequest setDocumentTypeID(String value) { this.DocumentTypeID = value; return this; } private static Object responseType = DocumentType.class; public Object getResponseType() { return responseType; } } @Route(Path="/WorkOrders/DocumentTypes/{DocumentTypeID}", Verbs="DELETE") @ApiResponse(Description="Deleted OK", StatusCode=204) // @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="No work order document type with the DocumentTypeID provided was found", StatusCode=404) // @ApiResponse(Description="Not authenticated", StatusCode=401) public static class WorkOrderDocumentTypeDELETERequest { public String DocumentTypeID = null; public String getDocumentTypeID() { return DocumentTypeID; } public WorkOrderDocumentTypeDELETERequest setDocumentTypeID(String value) { this.DocumentTypeID = value; return this; } } @Route(Path="/WorkOrders/{WorkOrderID}/Documents/{DocumentID}", Verbs="GET") @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="No work order document with the WorkOrderID or DocumentID provided was found", StatusCode=404) public static class WorkOrderDocumentGETRequest implements IReturn { public String WorkOrderID = null; public String DocumentID = null; public String getWorkOrderID() { return WorkOrderID; } public WorkOrderDocumentGETRequest setWorkOrderID(String value) { this.WorkOrderID = value; return this; } public String getDocumentID() { return DocumentID; } public WorkOrderDocumentGETRequest setDocumentID(String value) { this.DocumentID = value; return this; } private static Object responseType = Document.class; public Object getResponseType() { return responseType; } } @Route(Path="/WorkOrders/{WorkOrderID}/Documents", Verbs="GET") @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="No work order with the WorkOrderID provided was found", StatusCode=404) // @ApiResponse(Description="Read OK", StatusCode=200) public static class WorkOrderDocumentsGETManyRequest implements IReturn> { public String WorkOrderID = null; public String getWorkOrderID() { return WorkOrderID; } public WorkOrderDocumentsGETManyRequest setWorkOrderID(String value) { this.WorkOrderID = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @Route(Path="/WorkOrders/{WorkOrderID}/Documents", Verbs="POST") @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Created OK", StatusCode=201) // @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="No work order with the WorkOrderID provided was found", StatusCode=404) public static class WorkOrderDocumentPOSTRequest extends Document implements IReturn { public String WorkOrderID = null; public String getWorkOrderID() { return WorkOrderID; } public WorkOrderDocumentPOSTRequest setWorkOrderID(String value) { this.WorkOrderID = value; return this; } private static Object responseType = Document.class; public Object getResponseType() { return responseType; } } @Route(Path="/WorkOrders/{WorkOrderID}/Documents/{DocumentID}", Verbs="PATCH") @ApiResponse(Description="Updated OK", StatusCode=200) // @ApiResponse(Description="No work order with the WorkOrderID provided was found", StatusCode=404) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class WorkOrderDocumentPATCHRequest extends Document implements IReturn { public String WorkOrderID = null; public String DocumentID = null; public String getWorkOrderID() { return WorkOrderID; } public WorkOrderDocumentPATCHRequest setWorkOrderID(String value) { this.WorkOrderID = value; return this; } public String getDocumentID() { return DocumentID; } public WorkOrderDocumentPATCHRequest setDocumentID(String value) { this.DocumentID = value; return this; } private static Object responseType = Document.class; public Object getResponseType() { return responseType; } } @Route(Path="/WorkOrders/{WorkOrderID}/Documents/{DocumentID}", Verbs="DELETE") @ApiResponse(Description="Deleted OK", StatusCode=204) // @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="No work order with the WorkOrderID provided was found", StatusCode=404) public static class WorkOrderDocumentDELETERequest { public String WorkOrderID = null; public String DocumentID = null; public String getWorkOrderID() { return WorkOrderID; } public WorkOrderDocumentDELETERequest setWorkOrderID(String value) { this.WorkOrderID = value; return this; } public String getDocumentID() { return DocumentID; } public WorkOrderDocumentDELETERequest setDocumentID(String value) { this.DocumentID = value; return this; } } @Route(Path="/WorkOrders/{WorkOrderID}/Stages/{StageID}/Inputs/{InputID}/CustomFieldValues", Verbs="GET") @ApiResponse(Description="No work order stage input WorkOrderID, StageID or InputID provided was found", StatusCode=404) // @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class WorkOrderInputCustomFieldValuesGETManyRequest implements IReturn> { public String WorkOrderID = null; public String StageID = null; public String InputID = null; public String getWorkOrderID() { return WorkOrderID; } public WorkOrderInputCustomFieldValuesGETManyRequest setWorkOrderID(String value) { this.WorkOrderID = value; return this; } public String getStageID() { return StageID; } public WorkOrderInputCustomFieldValuesGETManyRequest setStageID(String value) { this.StageID = value; return this; } public String getInputID() { return InputID; } public WorkOrderInputCustomFieldValuesGETManyRequest setInputID(String value) { this.InputID = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @Route(Path="/WorkOrders/{WorkOrderID}/Stages/{StageID}/Inputs/{InputID}/CustomFieldValues/{SettingID}", Verbs="GET") @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="No work order stage input custom field Value with the WorkOrderID, StageID, InputID or SettingID provided was found", StatusCode=404) // @ApiResponse(Description="Read OK", StatusCode=200) public static class WorkOrderInputCustomFieldValueGETRequest implements IReturn { public String WorkOrderID = null; public String StageID = null; public String InputID = null; public String SettingID = null; public String getWorkOrderID() { return WorkOrderID; } public WorkOrderInputCustomFieldValueGETRequest setWorkOrderID(String value) { this.WorkOrderID = value; return this; } public String getStageID() { return StageID; } public WorkOrderInputCustomFieldValueGETRequest setStageID(String value) { this.StageID = value; return this; } public String getInputID() { return InputID; } public WorkOrderInputCustomFieldValueGETRequest setInputID(String value) { this.InputID = value; return this; } public String getSettingID() { return SettingID; } public WorkOrderInputCustomFieldValueGETRequest setSettingID(String value) { this.SettingID = value; return this; } private static Object responseType = CustomFieldValue.class; public Object getResponseType() { return responseType; } } @Route(Path="/WorkOrders/{WorkOrderID}/Stages/{StageID}/Inputs/{InputID}/CustomFieldValues/{SettingID}", Verbs="PATCH") @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Updated OK", StatusCode=200) // @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="No work order stage input custom field Value with the WorkOrderID, StageID, InputID or SettingID provided was found", StatusCode=404) public static class WorkOrderInputCustomFieldValuePATCHRequest extends CustomFieldValue implements IReturn { public String WorkOrderID = null; public String StageID = null; public String InputID = null; public String SettingID = null; public String getWorkOrderID() { return WorkOrderID; } public WorkOrderInputCustomFieldValuePATCHRequest setWorkOrderID(String value) { this.WorkOrderID = value; return this; } public String getStageID() { return StageID; } public WorkOrderInputCustomFieldValuePATCHRequest setStageID(String value) { this.StageID = value; return this; } public String getInputID() { return InputID; } public WorkOrderInputCustomFieldValuePATCHRequest setInputID(String value) { this.InputID = value; return this; } public String getSettingID() { return SettingID; } public WorkOrderInputCustomFieldValuePATCHRequest setSettingID(String value) { this.SettingID = value; return this; } private static Object responseType = CustomFieldValue.class; public Object getResponseType() { return responseType; } } @Route(Path="/WorkOrders/Inputs/CustomFields", Verbs="GET") @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) public static class WorkOrderInputCustomFieldsGETManyRequest implements IReturn> { private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @Route(Path="/WorkOrders/Inputs/CustomFields/{SettingID}", Verbs="GET") @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class WorkOrderInputCustomFieldGETRequest implements IReturn { public String SettingID = null; public String getSettingID() { return SettingID; } public WorkOrderInputCustomFieldGETRequest setSettingID(String value) { this.SettingID = value; return this; } private static Object responseType = CustomField.class; public Object getResponseType() { return responseType; } } @Route(Path="/WorkOrders/{WorkOrderID}/Stages/{StageID}/Inputs/{InputID}/LineDetails", Verbs="GET") @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="No work order stage input with the WorkOrderID, StageID, or InputID provided was found", StatusCode=404) // @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) public static class WorkOrderInputLineDetailsGETManyRequest implements IReturn> { public String WorkOrderID = null; public String StageID = null; public String InputID = null; public String getWorkOrderID() { return WorkOrderID; } public WorkOrderInputLineDetailsGETManyRequest setWorkOrderID(String value) { this.WorkOrderID = value; return this; } public String getStageID() { return StageID; } public WorkOrderInputLineDetailsGETManyRequest setStageID(String value) { this.StageID = value; return this; } public String getInputID() { return InputID; } public WorkOrderInputLineDetailsGETManyRequest setInputID(String value) { this.InputID = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @Route(Path="/WorkOrders/{WorkOrderID}/Stages/{StageID}/Inputs/{InputID}/LineDetails/{LineDetailID}", Verbs="GET") @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="No work order stage input line detail with the WorkOrderID, StageID, InputID, or LineDetailID provided was found", StatusCode=404) // @ApiResponse(Description="Not authenticated", StatusCode=401) public static class WorkOrderInputLineDetailGETRequest implements IReturn { public String WorkOrderID = null; public String StageID = null; public String InputID = null; public String LineDetailID = null; public String getWorkOrderID() { return WorkOrderID; } public WorkOrderInputLineDetailGETRequest setWorkOrderID(String value) { this.WorkOrderID = value; return this; } public String getStageID() { return StageID; } public WorkOrderInputLineDetailGETRequest setStageID(String value) { this.StageID = value; return this; } public String getInputID() { return InputID; } public WorkOrderInputLineDetailGETRequest setInputID(String value) { this.InputID = value; return this; } public String getLineDetailID() { return LineDetailID; } public WorkOrderInputLineDetailGETRequest setLineDetailID(String value) { this.LineDetailID = value; return this; } private static Object responseType = InventorySOHLineDetail.class; public Object getResponseType() { return responseType; } } @Route(Path="/WorkOrders/{WorkOrderID}/Stages/{StageID}/Inputs/{InputID}/LineDetails", Verbs="POST") @ApiResponse(Description="No work order stage input with the WorkOrderID, StageID, or InputID provided was found", StatusCode=404) // @ApiResponse(Description="Created OK", StatusCode=201) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class WorkOrderInputLineDetailPOSTRequest extends InventorySOHLineDetail implements IReturn { public String WorkOrderID = null; public String StageID = null; public String InputID = null; public String getWorkOrderID() { return WorkOrderID; } public WorkOrderInputLineDetailPOSTRequest setWorkOrderID(String value) { this.WorkOrderID = value; return this; } public String getStageID() { return StageID; } public WorkOrderInputLineDetailPOSTRequest setStageID(String value) { this.StageID = value; return this; } public String getInputID() { return InputID; } public WorkOrderInputLineDetailPOSTRequest setInputID(String value) { this.InputID = value; return this; } private static Object responseType = InventorySOHLineDetail.class; public Object getResponseType() { return responseType; } } @Route(Path="/WorkOrders/{WorkOrderID}/Stages/{StageID}/Inputs/{InputID}/LineDetails", Verbs="PUT") public static class WorkOrderInputLineDetailPUTRequest extends ArrayList implements IReturn> { private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @Route(Path="/WorkOrders/{WorkOrderID}/Stages/{StageID}/Inputs/{InputID}/LineDetails/{LineDetailID}", Verbs="PATCH") @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="No work order stage input line detail with the WorkOrderID, StageID, InputID, or LineDetailID provided was found", StatusCode=404) // @ApiResponse(Description="Updated OK", StatusCode=200) public static class WorkOrderInputLineDetailPATCHRequest extends InventorySOHLineDetail implements IReturn { public String WorkOrderID = null; public String StageID = null; public String InputID = null; public String LineDetailID = null; public String getWorkOrderID() { return WorkOrderID; } public WorkOrderInputLineDetailPATCHRequest setWorkOrderID(String value) { this.WorkOrderID = value; return this; } public String getStageID() { return StageID; } public WorkOrderInputLineDetailPATCHRequest setStageID(String value) { this.StageID = value; return this; } public String getInputID() { return InputID; } public WorkOrderInputLineDetailPATCHRequest setInputID(String value) { this.InputID = value; return this; } public String getLineDetailID() { return LineDetailID; } public WorkOrderInputLineDetailPATCHRequest setLineDetailID(String value) { this.LineDetailID = value; return this; } private static Object responseType = InventorySOHLineDetail.class; public Object getResponseType() { return responseType; } } @Route(Path="/WorkOrders/{WorkOrderID}/Stages/{StageID}/Inputs/{InputID}/LineDetails/{LineDetailID}", Verbs="DELETE") @ApiResponse(Description="Deleted OK", StatusCode=204) // @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="No work order stage input line detail with the WorkOrderID, StageID, InputID, or LineDetailID provided was found", StatusCode=404) // @ApiResponse(Description="Not authenticated", StatusCode=401) public static class WorkOrderInputLineDetailDELETERequest { public String WorkOrderID = null; public String StageID = null; public String InputID = null; public String LineDetailID = null; public String getWorkOrderID() { return WorkOrderID; } public WorkOrderInputLineDetailDELETERequest setWorkOrderID(String value) { this.WorkOrderID = value; return this; } public String getStageID() { return StageID; } public WorkOrderInputLineDetailDELETERequest setStageID(String value) { this.StageID = value; return this; } public String getInputID() { return InputID; } public WorkOrderInputLineDetailDELETERequest setInputID(String value) { this.InputID = value; return this; } public String getLineDetailID() { return LineDetailID; } public WorkOrderInputLineDetailDELETERequest setLineDetailID(String value) { this.LineDetailID = value; return this; } } @Route(Path="/WorkOrders/{WorkOrderID}/Stages/{StageID}/Inputs/{InputID}/WastageLineDetails", Verbs="GET") @ApiResponse(Description="No work order stage input with the WorkOrderID, StageID, or InputID provided was found", StatusCode=404) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="Read OK", StatusCode=200) public static class WorkOrderInputWastageLineDetailsGETManyRequest implements IReturn> { public String WorkOrderID = null; public String StageID = null; public String InputID = null; public String getWorkOrderID() { return WorkOrderID; } public WorkOrderInputWastageLineDetailsGETManyRequest setWorkOrderID(String value) { this.WorkOrderID = value; return this; } public String getStageID() { return StageID; } public WorkOrderInputWastageLineDetailsGETManyRequest setStageID(String value) { this.StageID = value; return this; } public String getInputID() { return InputID; } public WorkOrderInputWastageLineDetailsGETManyRequest setInputID(String value) { this.InputID = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @Route(Path="/WorkOrders/{WorkOrderID}/Stages/{StageID}/Inputs/{InputID}/WastageLineDetails/{LineDetailID}", Verbs="GET") @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="No work order stage input wastage line detail with the WorkOrderID, StageID, InputID, or LineDetailID provided was found", StatusCode=404) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class WorkOrderInputWastageLineDetailGETRequest implements IReturn { public String WorkOrderID = null; public String StageID = null; public String InputID = null; public String LineDetailID = null; public String getWorkOrderID() { return WorkOrderID; } public WorkOrderInputWastageLineDetailGETRequest setWorkOrderID(String value) { this.WorkOrderID = value; return this; } public String getStageID() { return StageID; } public WorkOrderInputWastageLineDetailGETRequest setStageID(String value) { this.StageID = value; return this; } public String getInputID() { return InputID; } public WorkOrderInputWastageLineDetailGETRequest setInputID(String value) { this.InputID = value; return this; } public String getLineDetailID() { return LineDetailID; } public WorkOrderInputWastageLineDetailGETRequest setLineDetailID(String value) { this.LineDetailID = value; return this; } private static Object responseType = InventorySOHLineDetail.class; public Object getResponseType() { return responseType; } } @Route(Path="/WorkOrders/{WorkOrderID}/Stages/{StageID}/Inputs/{InputID}/WastageLineDetails", Verbs="POST") @ApiResponse(Description="No work order stage input with the WorkOrderID, StageID, or InputID provided was found", StatusCode=404) // @ApiResponse(Description="Created OK", StatusCode=201) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class WorkOrderInputWastageLineDetailPOSTRequest extends InventorySOHLineDetail implements IReturn { public String WorkOrderID = null; public String StageID = null; public String InputID = null; public String getWorkOrderID() { return WorkOrderID; } public WorkOrderInputWastageLineDetailPOSTRequest setWorkOrderID(String value) { this.WorkOrderID = value; return this; } public String getStageID() { return StageID; } public WorkOrderInputWastageLineDetailPOSTRequest setStageID(String value) { this.StageID = value; return this; } public String getInputID() { return InputID; } public WorkOrderInputWastageLineDetailPOSTRequest setInputID(String value) { this.InputID = value; return this; } private static Object responseType = InventorySOHLineDetail.class; public Object getResponseType() { return responseType; } } @Route(Path="/WorkOrders/{WorkOrderID}/Stages/{StageID}/Inputs/{InputID}/WastageLineDetails", Verbs="PUT") public static class WorkOrderInputWastageLineDetailPUTRequest extends ArrayList implements IReturn> { private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @Route(Path="/WorkOrders/{WorkOrderID}/Stages/{StageID}/Inputs/{InputID}/WastageLineDetails/{LineDetailID}", Verbs="PATCH") @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="No work order stage input wastage line detail with the WorkOrderID, StageID, InputID, or LineDetailID provided was found", StatusCode=404) // @ApiResponse(Description="Updated OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) public static class WorkOrderInputWastageLineDetailPATCHRequest extends InventorySOHLineDetail implements IReturn { public String WorkOrderID = null; public String StageID = null; public String InputID = null; public String LineDetailID = null; public String getWorkOrderID() { return WorkOrderID; } public WorkOrderInputWastageLineDetailPATCHRequest setWorkOrderID(String value) { this.WorkOrderID = value; return this; } public String getStageID() { return StageID; } public WorkOrderInputWastageLineDetailPATCHRequest setStageID(String value) { this.StageID = value; return this; } public String getInputID() { return InputID; } public WorkOrderInputWastageLineDetailPATCHRequest setInputID(String value) { this.InputID = value; return this; } public String getLineDetailID() { return LineDetailID; } public WorkOrderInputWastageLineDetailPATCHRequest setLineDetailID(String value) { this.LineDetailID = value; return this; } private static Object responseType = InventorySOHLineDetail.class; public Object getResponseType() { return responseType; } } @Route(Path="/WorkOrders/{WorkOrderID}/Stages/{StageID}/Inputs/{InputID}/WastageLineDetails/{LineDetailID}", Verbs="DELETE") @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Deleted OK", StatusCode=204) // @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="No work order stage input wastage line detail with the WorkOrderID, StageID, InputID, or LineDetailID provided was found", StatusCode=404) public static class WorkOrderInputWastageLineDetailDELETERequest { public String WorkOrderID = null; public String StageID = null; public String InputID = null; public String LineDetailID = null; public String getWorkOrderID() { return WorkOrderID; } public WorkOrderInputWastageLineDetailDELETERequest setWorkOrderID(String value) { this.WorkOrderID = value; return this; } public String getStageID() { return StageID; } public WorkOrderInputWastageLineDetailDELETERequest setStageID(String value) { this.StageID = value; return this; } public String getInputID() { return InputID; } public WorkOrderInputWastageLineDetailDELETERequest setInputID(String value) { this.InputID = value; return this; } public String getLineDetailID() { return LineDetailID; } public WorkOrderInputWastageLineDetailDELETERequest setLineDetailID(String value) { this.LineDetailID = value; return this; } } @Route(Path="/WorkOrders/{WorkOrderID}/Stages/{StageID}/Inputs/{InputID}", Verbs="GET") @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="No work order stage input with the WorkOrderID, StageID, or InputID provided was found", StatusCode=404) // @ApiResponse(Description="Read OK", StatusCode=200) public static class WorkOrderInputGETRequest implements IReturn { public String WorkOrderID = null; public String StageID = null; public String InputID = null; public String getWorkOrderID() { return WorkOrderID; } public WorkOrderInputGETRequest setWorkOrderID(String value) { this.WorkOrderID = value; return this; } public String getStageID() { return StageID; } public WorkOrderInputGETRequest setStageID(String value) { this.StageID = value; return this; } public String getInputID() { return InputID; } public WorkOrderInputGETRequest setInputID(String value) { this.InputID = value; return this; } private static Object responseType = WorkOrderInput.class; public Object getResponseType() { return responseType; } } @Route(Path="/WorkOrders/{WorkOrderID}/Stages/{StageID}/Inputs", Verbs="GET") @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="No work order stage inputs with the WorkOrderID or StageID provided was found", StatusCode=404) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class WorkOrderInputsGETManyRequest implements IReturn> { public String WorkOrderID = null; public String StageID = null; public String getWorkOrderID() { return WorkOrderID; } public WorkOrderInputsGETManyRequest setWorkOrderID(String value) { this.WorkOrderID = value; return this; } public String getStageID() { return StageID; } public WorkOrderInputsGETManyRequest setStageID(String value) { this.StageID = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @Route(Path="/WorkOrders/{WorkOrderID}/Stages/{StageID}/Inputs", Verbs="POST") @ApiResponse(Description="Created OK", StatusCode=201) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="No work order stage input with the WorkOrderID, StageID or InputID provided was found", StatusCode=404) public static class WorkOrderInputPOSTRequest extends WorkOrderInput implements IReturn { public String WorkOrderID = null; public String StageID = null; public String getWorkOrderID() { return WorkOrderID; } public WorkOrderInputPOSTRequest setWorkOrderID(String value) { this.WorkOrderID = value; return this; } public String getStageID() { return StageID; } public WorkOrderInputPOSTRequest setStageID(String value) { this.StageID = value; return this; } private static Object responseType = WorkOrderInput.class; public Object getResponseType() { return responseType; } } @Route(Path="/WorkOrders/{WorkOrderID}/Stages/{StageID}/Inputs/{InputID}", Verbs="PATCH") @ApiResponse(Description="No work order stage input with the WorkOrderID, StageID, or InputID provided was found", StatusCode=404) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="Updated OK", StatusCode=200) public static class WorkOrderInputPATCHRequest extends WorkOrderInput implements IReturn { public String WorkOrderID = null; public String StageID = null; public String InputID = null; public String getWorkOrderID() { return WorkOrderID; } public WorkOrderInputPATCHRequest setWorkOrderID(String value) { this.WorkOrderID = value; return this; } public String getStageID() { return StageID; } public WorkOrderInputPATCHRequest setStageID(String value) { this.StageID = value; return this; } public String getInputID() { return InputID; } public WorkOrderInputPATCHRequest setInputID(String value) { this.InputID = value; return this; } private static Object responseType = WorkOrderInput.class; public Object getResponseType() { return responseType; } } @Route(Path="/WorkOrders/{WorkOrderID}/Stages/{StageID}/Inputs/{InputID}", Verbs="DELETE") @ApiResponse(Description="No work order stage input with the WorkOrderID, StageID, or InputID provided was found", StatusCode=404) // @ApiResponse(Description="Deleted OK", StatusCode=204) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class WorkOrderInputDELETERequest { public String WorkOrderID = null; public String StageID = null; public String InputID = null; public String getWorkOrderID() { return WorkOrderID; } public WorkOrderInputDELETERequest setWorkOrderID(String value) { this.WorkOrderID = value; return this; } public String getStageID() { return StageID; } public WorkOrderInputDELETERequest setStageID(String value) { this.StageID = value; return this; } public String getInputID() { return InputID; } public WorkOrderInputDELETERequest setInputID(String value) { this.InputID = value; return this; } } @Route(Path="/WorkOrders/{WorkOrderID}/Stages/{StageID}/Instructions/{InstructionID}/CustomFieldValues", Verbs="GET") @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="No work order stage instruction WorkOrderID, StageID or InstructionID provided was found", StatusCode=404) // @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) public static class WorkOrderInstructionCustomFieldValuesGETManyRequest implements IReturn> { public String WorkOrderID = null; public String StageID = null; public String InstructionID = null; public String getWorkOrderID() { return WorkOrderID; } public WorkOrderInstructionCustomFieldValuesGETManyRequest setWorkOrderID(String value) { this.WorkOrderID = value; return this; } public String getStageID() { return StageID; } public WorkOrderInstructionCustomFieldValuesGETManyRequest setStageID(String value) { this.StageID = value; return this; } public String getInstructionID() { return InstructionID; } public WorkOrderInstructionCustomFieldValuesGETManyRequest setInstructionID(String value) { this.InstructionID = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @Route(Path="/WorkOrders/{WorkOrderID}/Stages/{StageID}/Instructions/{InstructionID}/CustomFieldValues/{SettingID}", Verbs="GET") @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="No work order stage instruction custom field Value with the WorkOrderID, StageID, InstructionID or SettingID provided was found", StatusCode=404) // @ApiResponse(Description="Read OK", StatusCode=200) public static class WorkOrderInstructionCustomFieldValueGETRequest implements IReturn { public String WorkOrderID = null; public String StageID = null; public String InstructionID = null; public String SettingID = null; public String getWorkOrderID() { return WorkOrderID; } public WorkOrderInstructionCustomFieldValueGETRequest setWorkOrderID(String value) { this.WorkOrderID = value; return this; } public String getStageID() { return StageID; } public WorkOrderInstructionCustomFieldValueGETRequest setStageID(String value) { this.StageID = value; return this; } public String getInstructionID() { return InstructionID; } public WorkOrderInstructionCustomFieldValueGETRequest setInstructionID(String value) { this.InstructionID = value; return this; } public String getSettingID() { return SettingID; } public WorkOrderInstructionCustomFieldValueGETRequest setSettingID(String value) { this.SettingID = value; return this; } private static Object responseType = CustomFieldValue.class; public Object getResponseType() { return responseType; } } @Route(Path="/WorkOrders/{WorkOrderID}/Stages/{StageID}/Instructions/{InstructionID}/CustomFieldValues/{SettingID}", Verbs="PATCH") @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="No work order stage instruction custom field Value with the WorkOrderID, StageID, InstructionID or SettingID provided was found", StatusCode=404) // @ApiResponse(Description="Updated OK", StatusCode=200) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class WorkOrderInstructionCustomFieldValuePATCHRequest extends CustomFieldValue implements IReturn { public String WorkOrderID = null; public String StageID = null; public String InstructionID = null; public String SettingID = null; public String getWorkOrderID() { return WorkOrderID; } public WorkOrderInstructionCustomFieldValuePATCHRequest setWorkOrderID(String value) { this.WorkOrderID = value; return this; } public String getStageID() { return StageID; } public WorkOrderInstructionCustomFieldValuePATCHRequest setStageID(String value) { this.StageID = value; return this; } public String getInstructionID() { return InstructionID; } public WorkOrderInstructionCustomFieldValuePATCHRequest setInstructionID(String value) { this.InstructionID = value; return this; } public String getSettingID() { return SettingID; } public WorkOrderInstructionCustomFieldValuePATCHRequest setSettingID(String value) { this.SettingID = value; return this; } private static Object responseType = CustomFieldValue.class; public Object getResponseType() { return responseType; } } @Route(Path="/WorkOrders/Instructions/CustomFields", Verbs="GET") @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="Read OK", StatusCode=200) public static class WorkOrderInstructionCustomFieldsGETManyRequest implements IReturn> { private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @Route(Path="/WorkOrders/Instructions/CustomFields/{SettingID}", Verbs="GET") @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="Read OK", StatusCode=200) public static class WorkOrderInstructionCustomFieldGETRequest implements IReturn { public String SettingID = null; public String getSettingID() { return SettingID; } public WorkOrderInstructionCustomFieldGETRequest setSettingID(String value) { this.SettingID = value; return this; } private static Object responseType = CustomField.class; public Object getResponseType() { return responseType; } } @Route(Path="/WorkOrders/{WorkOrderID}/Stages/{StageID}/Instructions/{InstructionID}", Verbs="GET") @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="No work order stage instruction with the WorkOrderID, StageID, or InstructionID provided was found", StatusCode=404) // @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class WorkOrderInstructionGETRequest implements IReturn { public String WorkOrderID = null; public String StageID = null; public String InstructionID = null; public String getWorkOrderID() { return WorkOrderID; } public WorkOrderInstructionGETRequest setWorkOrderID(String value) { this.WorkOrderID = value; return this; } public String getStageID() { return StageID; } public WorkOrderInstructionGETRequest setStageID(String value) { this.StageID = value; return this; } public String getInstructionID() { return InstructionID; } public WorkOrderInstructionGETRequest setInstructionID(String value) { this.InstructionID = value; return this; } private static Object responseType = WorkOrderInstruction.class; public Object getResponseType() { return responseType; } } @Route(Path="/WorkOrders/{WorkOrderID}/Stages/{StageID}/Instructions", Verbs="GET") @ApiResponse(Description="No work order stage instructions with the WorkOrderID or StageID provided was found", StatusCode=404) // @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) public static class WorkOrderInstructionsGETManyRequest implements IReturn> { public String WorkOrderID = null; public String StageID = null; public String getWorkOrderID() { return WorkOrderID; } public WorkOrderInstructionsGETManyRequest setWorkOrderID(String value) { this.WorkOrderID = value; return this; } public String getStageID() { return StageID; } public WorkOrderInstructionsGETManyRequest setStageID(String value) { this.StageID = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @Route(Path="/WorkOrders/{WorkOrderID}/Stages/{StageID}/Instructions", Verbs="POST") @ApiResponse(Description="Created OK", StatusCode=201) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="No work order stage instruction with the WorkOrderID, StageID or InstructionID provided was found", StatusCode=404) public static class WorkOrderInstructionPOSTRequest extends WorkOrderInstruction implements IReturn { public String WorkOrderID = null; public String StageID = null; public String getWorkOrderID() { return WorkOrderID; } public WorkOrderInstructionPOSTRequest setWorkOrderID(String value) { this.WorkOrderID = value; return this; } public String getStageID() { return StageID; } public WorkOrderInstructionPOSTRequest setStageID(String value) { this.StageID = value; return this; } private static Object responseType = WorkOrderInstruction.class; public Object getResponseType() { return responseType; } } @Route(Path="/WorkOrders/{WorkOrderID}/Stages/{StageID}/Instructions/{InstructionID}", Verbs="PATCH") @ApiResponse(Description="Updated OK", StatusCode=200) // @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="No work order stage instruction with the WorkOrderID, StageID, or InstructionID provided was found", StatusCode=404) // @ApiResponse(Description="Not authenticated", StatusCode=401) public static class WorkOrderInstructionPATCHRequest extends WorkOrderInstruction implements IReturn { public String WorkOrderID = null; public String StageID = null; public String InstructionID = null; public String getWorkOrderID() { return WorkOrderID; } public WorkOrderInstructionPATCHRequest setWorkOrderID(String value) { this.WorkOrderID = value; return this; } public String getStageID() { return StageID; } public WorkOrderInstructionPATCHRequest setStageID(String value) { this.StageID = value; return this; } public String getInstructionID() { return InstructionID; } public WorkOrderInstructionPATCHRequest setInstructionID(String value) { this.InstructionID = value; return this; } private static Object responseType = WorkOrderInstruction.class; public Object getResponseType() { return responseType; } } @Route(Path="/WorkOrders/{WorkOrderID}/Stages/{StageID}/Instructions/{InstructionID}", Verbs="DELETE") @ApiResponse(Description="No work order stage instruction with the WorkOrderID, StageID, or InstructionID provided was found", StatusCode=404) // @ApiResponse(Description="Deleted OK", StatusCode=204) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class WorkOrderInstructionDELETERequest { public String WorkOrderID = null; public String StageID = null; public String InstructionID = null; public String getWorkOrderID() { return WorkOrderID; } public WorkOrderInstructionDELETERequest setWorkOrderID(String value) { this.WorkOrderID = value; return this; } public String getStageID() { return StageID; } public WorkOrderInstructionDELETERequest setStageID(String value) { this.StageID = value; return this; } public String getInstructionID() { return InstructionID; } public WorkOrderInstructionDELETERequest setInstructionID(String value) { this.InstructionID = value; return this; } } @Route(Path="/WorkOrders/NoteTypes/{NoteTypeID}", Verbs="GET") @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="No work order note type with the NoteTypeID provided was found", StatusCode=404) public static class WorkOrderNoteTypeGETRequest implements IReturn { public String NoteTypeID = null; public String getNoteTypeID() { return NoteTypeID; } public WorkOrderNoteTypeGETRequest setNoteTypeID(String value) { this.NoteTypeID = value; return this; } private static Object responseType = NoteType.class; public Object getResponseType() { return responseType; } } @Route(Path="/WorkOrders/NoteTypes", Verbs="GET") @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) public static class WorkOrderNoteTypesGETManyRequest implements IReturn> { private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @Route(Path="/WorkOrders/NoteTypes", Verbs="POST") @ApiResponse(Description="Created OK", StatusCode=201) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class WorkOrderNoteTypePOSTRequest extends NoteType implements IReturn { private static Object responseType = NoteType.class; public Object getResponseType() { return responseType; } } @Route(Path="/WorkOrders/NoteTypes/{NoteTypeID}", Verbs="PATCH") @ApiResponse(Description="No work order note type with the NoteTypeID provided was found", StatusCode=404) // @ApiResponse(Description="Updated OK", StatusCode=200) // @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="Not authenticated", StatusCode=401) public static class WorkOrderNoteTypePATCHRequest extends NoteType implements IReturn { public String NoteTypeID = null; public String getNoteTypeID() { return NoteTypeID; } public WorkOrderNoteTypePATCHRequest setNoteTypeID(String value) { this.NoteTypeID = value; return this; } private static Object responseType = NoteType.class; public Object getResponseType() { return responseType; } } @Route(Path="/WorkOrders/NoteTypes/{NoteTypeID}", Verbs="DELETE") @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="No work order note type with the NoteTypeID provided was found", StatusCode=404) // @ApiResponse(Description="Deleted OK", StatusCode=204) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class WorkOrderNoteTypeDELETERequest { public String NoteTypeID = null; public String getNoteTypeID() { return NoteTypeID; } public WorkOrderNoteTypeDELETERequest setNoteTypeID(String value) { this.NoteTypeID = value; return this; } } @Route(Path="/WorkOrders/{WorkOrderID}/Notes/{NoteID}", Verbs="GET") @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="No work order note with the WorkOrderID or NoteID provided was found", StatusCode=404) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Read OK", StatusCode=200) public static class WorkOrderNoteGETRequest implements IReturn { public String WorkOrderID = null; public String NoteID = null; public String getWorkOrderID() { return WorkOrderID; } public WorkOrderNoteGETRequest setWorkOrderID(String value) { this.WorkOrderID = value; return this; } public String getNoteID() { return NoteID; } public WorkOrderNoteGETRequest setNoteID(String value) { this.NoteID = value; return this; } private static Object responseType = Note.class; public Object getResponseType() { return responseType; } } @Route(Path="/WorkOrders/{WorkOrderID}/Notes", Verbs="GET") @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="No work order with the WorkOrderID provided was found", StatusCode=404) // @ApiResponse(Description="Not authenticated", StatusCode=401) public static class WorkOrderNotesGETManyRequest implements IReturn> { public String WorkOrderID = null; public String getWorkOrderID() { return WorkOrderID; } public WorkOrderNotesGETManyRequest setWorkOrderID(String value) { this.WorkOrderID = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @Route(Path="/WorkOrders/{WorkOrderID}/Notes", Verbs="POST") @ApiResponse(Description="No work order with the WorkOrderID provided was found", StatusCode=404) // @ApiResponse(Description="Created OK", StatusCode=201) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class WorkOrderNotePOSTRequest extends Note implements IReturn { public String WorkOrderID = null; public String getWorkOrderID() { return WorkOrderID; } public WorkOrderNotePOSTRequest setWorkOrderID(String value) { this.WorkOrderID = value; return this; } private static Object responseType = Note.class; public Object getResponseType() { return responseType; } } @Route(Path="/WorkOrders/{WorkOrderID}/Notes/{NoteID}", Verbs="PATCH") @ApiResponse(Description="Updated OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="No work order with the WorkOrderID provided was found", StatusCode=404) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class WorkOrderNotePATCHRequest extends Note implements IReturn { public String WorkOrderID = null; public String NoteID = null; public String getWorkOrderID() { return WorkOrderID; } public WorkOrderNotePATCHRequest setWorkOrderID(String value) { this.WorkOrderID = value; return this; } public String getNoteID() { return NoteID; } public WorkOrderNotePATCHRequest setNoteID(String value) { this.NoteID = value; return this; } private static Object responseType = Note.class; public Object getResponseType() { return responseType; } } @Route(Path="/WorkOrders/{WorkOrderID}/Notes/{NoteID}", Verbs="DELETE") @ApiResponse(Description="No work order with the WorkOrderID provided was found", StatusCode=404) // @ApiResponse(Description="Deleted OK", StatusCode=204) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class WorkOrderNoteDELETERequest { public String WorkOrderID = null; public String NoteID = null; public String getWorkOrderID() { return WorkOrderID; } public WorkOrderNoteDELETERequest setWorkOrderID(String value) { this.WorkOrderID = value; return this; } public String getNoteID() { return NoteID; } public WorkOrderNoteDELETERequest setNoteID(String value) { this.NoteID = value; return this; } } @Route(Path="/WorkOrders/{WorkOrderID}/Outputs/{OutputID}/CustomFieldValues", Verbs="GET") @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="No work order output output WorkOrderID or OutputID provided was found", StatusCode=404) public static class WorkOrderOutputCustomFieldValuesGETManyRequest implements IReturn> { public String WorkOrderID = null; public String OutputID = null; public String getWorkOrderID() { return WorkOrderID; } public WorkOrderOutputCustomFieldValuesGETManyRequest setWorkOrderID(String value) { this.WorkOrderID = value; return this; } public String getOutputID() { return OutputID; } public WorkOrderOutputCustomFieldValuesGETManyRequest setOutputID(String value) { this.OutputID = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @Route(Path="/WorkOrders/{WorkOrderID}/Outputs/{OutputID}/CustomFieldValues/{SettingID}", Verbs="GET") @ApiResponse(Description="No work order output output custom field Value with the WorkOrderID, OutputID or SettingID provided was found", StatusCode=404) // @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="Not authenticated", StatusCode=401) public static class WorkOrderOutputCustomFieldValueGETRequest implements IReturn { public String WorkOrderID = null; public String OutputID = null; public String SettingID = null; public String getWorkOrderID() { return WorkOrderID; } public WorkOrderOutputCustomFieldValueGETRequest setWorkOrderID(String value) { this.WorkOrderID = value; return this; } public String getOutputID() { return OutputID; } public WorkOrderOutputCustomFieldValueGETRequest setOutputID(String value) { this.OutputID = value; return this; } public String getSettingID() { return SettingID; } public WorkOrderOutputCustomFieldValueGETRequest setSettingID(String value) { this.SettingID = value; return this; } private static Object responseType = CustomFieldValue.class; public Object getResponseType() { return responseType; } } @Route(Path="/WorkOrders/{WorkOrderID}/Outputs/{OutputID}/CustomFieldValues/{SettingID}", Verbs="PATCH") @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="Updated OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="No work order output custom field value with the WorkOrderID, OutputID or SettingID provided was found", StatusCode=404) public static class WorkOrderOutputCustomFieldValuePATCHRequest extends CustomFieldValue implements IReturn { public String WorkOrderID = null; public String OutputID = null; public String SettingID = null; public String getWorkOrderID() { return WorkOrderID; } public WorkOrderOutputCustomFieldValuePATCHRequest setWorkOrderID(String value) { this.WorkOrderID = value; return this; } public String getOutputID() { return OutputID; } public WorkOrderOutputCustomFieldValuePATCHRequest setOutputID(String value) { this.OutputID = value; return this; } public String getSettingID() { return SettingID; } public WorkOrderOutputCustomFieldValuePATCHRequest setSettingID(String value) { this.SettingID = value; return this; } private static Object responseType = CustomFieldValue.class; public Object getResponseType() { return responseType; } } @Route(Path="/WorkOrders/Outputs/CustomFields", Verbs="GET") @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) public static class WorkOrderOutputCustomFieldsGETManyRequest implements IReturn> { private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @Route(Path="/WorkOrders/Outputs/CustomFields/{SettingID}", Verbs="GET") @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="Read OK", StatusCode=200) public static class WorkOrderOutputCustomFieldGETRequest implements IReturn { public String SettingID = null; public String getSettingID() { return SettingID; } public WorkOrderOutputCustomFieldGETRequest setSettingID(String value) { this.SettingID = value; return this; } private static Object responseType = CustomField.class; public Object getResponseType() { return responseType; } } @Route(Path="/WorkOrders/{WorkOrderID}/Outputs/{OutputID}/LineDetails", Verbs="GET") @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="No work order output with the WorkOrderID or OutputID provided was found", StatusCode=404) // @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) public static class WorkOrderOutputLineDetailsGETManyRequest implements IReturn> { public String WorkOrderID = null; public String OutputID = null; public String getWorkOrderID() { return WorkOrderID; } public WorkOrderOutputLineDetailsGETManyRequest setWorkOrderID(String value) { this.WorkOrderID = value; return this; } public String getOutputID() { return OutputID; } public WorkOrderOutputLineDetailsGETManyRequest setOutputID(String value) { this.OutputID = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @Route(Path="/WorkOrders/{WorkOrderID}/Outputs/{OutputID}/LineDetails/{LineDetailID}", Verbs="GET") @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="No work order output line detail with the WorkOrderID, OutputID, or LineDetailID provided was found", StatusCode=404) public static class WorkOrderOutputLineDetailGETRequest implements IReturn { public String WorkOrderID = null; public String OutputID = null; public String LineDetailID = null; public String getWorkOrderID() { return WorkOrderID; } public WorkOrderOutputLineDetailGETRequest setWorkOrderID(String value) { this.WorkOrderID = value; return this; } public String getOutputID() { return OutputID; } public WorkOrderOutputLineDetailGETRequest setOutputID(String value) { this.OutputID = value; return this; } public String getLineDetailID() { return LineDetailID; } public WorkOrderOutputLineDetailGETRequest setLineDetailID(String value) { this.LineDetailID = value; return this; } private static Object responseType = InventorySOHLineDetail.class; public Object getResponseType() { return responseType; } } @Route(Path="/WorkOrders/{WorkOrderID}/Outputs/{OutputID}/LineDetails", Verbs="POST") @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="No work order output with the WorkOrderID or OutputID provided was found", StatusCode=404) // @ApiResponse(Description="Created OK", StatusCode=201) // @ApiResponse(Description="Not authenticated", StatusCode=401) public static class WorkOrderOutputLineDetailPOSTRequest extends InventorySOHLineDetail implements IReturn { public String WorkOrderID = null; public String OutputID = null; public String getWorkOrderID() { return WorkOrderID; } public WorkOrderOutputLineDetailPOSTRequest setWorkOrderID(String value) { this.WorkOrderID = value; return this; } public String getOutputID() { return OutputID; } public WorkOrderOutputLineDetailPOSTRequest setOutputID(String value) { this.OutputID = value; return this; } private static Object responseType = InventorySOHLineDetail.class; public Object getResponseType() { return responseType; } } @Route(Path="/WorkOrders/{WorkOrderID}/Outputs/{OutputID}/LineDetails", Verbs="PUT") public static class WorkOrderOutputLineDetailPUTRequest extends ArrayList implements IReturn> { private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @Route(Path="/WorkOrders/{WorkOrderID}/Outputs/{OutputID}/LineDetails/{LineDetailID}", Verbs="PATCH") @ApiResponse(Description="No work order output line detail with the WorkOrderID, OutputID, or LineDetailID provided was found", StatusCode=404) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="Updated OK", StatusCode=200) public static class WorkOrderOutputLineDetailPATCHRequest extends InventorySOHLineDetail implements IReturn { public String WorkOrderID = null; public String OutputID = null; public String LineDetailID = null; public String getWorkOrderID() { return WorkOrderID; } public WorkOrderOutputLineDetailPATCHRequest setWorkOrderID(String value) { this.WorkOrderID = value; return this; } public String getOutputID() { return OutputID; } public WorkOrderOutputLineDetailPATCHRequest setOutputID(String value) { this.OutputID = value; return this; } public String getLineDetailID() { return LineDetailID; } public WorkOrderOutputLineDetailPATCHRequest setLineDetailID(String value) { this.LineDetailID = value; return this; } private static Object responseType = InventorySOHLineDetail.class; public Object getResponseType() { return responseType; } } @Route(Path="/WorkOrders/{WorkOrderID}/Outputs/{OutputID}/LineDetails/{LineDetailID}", Verbs="DELETE") @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="No work order output line detail with the WorkOrderID, OutputID, or LineDetailID provided was found", StatusCode=404) // @ApiResponse(Description="Deleted OK", StatusCode=204) public static class WorkOrderOutputLineDetailDELETERequest { public String WorkOrderID = null; public String OutputID = null; public String LineDetailID = null; public String getWorkOrderID() { return WorkOrderID; } public WorkOrderOutputLineDetailDELETERequest setWorkOrderID(String value) { this.WorkOrderID = value; return this; } public String getOutputID() { return OutputID; } public WorkOrderOutputLineDetailDELETERequest setOutputID(String value) { this.OutputID = value; return this; } public String getLineDetailID() { return LineDetailID; } public WorkOrderOutputLineDetailDELETERequest setLineDetailID(String value) { this.LineDetailID = value; return this; } } @Route(Path="/WorkOrders/{WorkOrderID}/Outputs/{OutputID}/WastageLineDetails", Verbs="GET") @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="No work order output with the WorkOrderID or OutputID provided was found", StatusCode=404) // @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) public static class WorkOrderOutputWastageLineDetailsGETManyRequest implements IReturn> { public String WorkOrderID = null; public String OutputID = null; public String getWorkOrderID() { return WorkOrderID; } public WorkOrderOutputWastageLineDetailsGETManyRequest setWorkOrderID(String value) { this.WorkOrderID = value; return this; } public String getOutputID() { return OutputID; } public WorkOrderOutputWastageLineDetailsGETManyRequest setOutputID(String value) { this.OutputID = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @Route(Path="/WorkOrders/{WorkOrderID}/Outputs/{OutputID}/WastageLineDetails/{LineDetailID}", Verbs="GET") @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="No work order output wastage line detail with the WorkOrderID, OutputID, or LineDetailID provided was found", StatusCode=404) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class WorkOrderOutputWastageLineDetailGETRequest implements IReturn { public String WorkOrderID = null; public String OutputID = null; public String LineDetailID = null; public String getWorkOrderID() { return WorkOrderID; } public WorkOrderOutputWastageLineDetailGETRequest setWorkOrderID(String value) { this.WorkOrderID = value; return this; } public String getOutputID() { return OutputID; } public WorkOrderOutputWastageLineDetailGETRequest setOutputID(String value) { this.OutputID = value; return this; } public String getLineDetailID() { return LineDetailID; } public WorkOrderOutputWastageLineDetailGETRequest setLineDetailID(String value) { this.LineDetailID = value; return this; } private static Object responseType = InventorySOHLineDetail.class; public Object getResponseType() { return responseType; } } @Route(Path="/WorkOrders/{WorkOrderID}/Outputs/{OutputID}/WastageLineDetails", Verbs="POST") @ApiResponse(Description="Created OK", StatusCode=201) // @ApiResponse(Description="No work order output with the WorkOrderID or OutputID provided was found", StatusCode=404) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class WorkOrderOutputWastageLineDetailPOSTRequest extends InventorySOHLineDetail implements IReturn { public String WorkOrderID = null; public String OutputID = null; public String getWorkOrderID() { return WorkOrderID; } public WorkOrderOutputWastageLineDetailPOSTRequest setWorkOrderID(String value) { this.WorkOrderID = value; return this; } public String getOutputID() { return OutputID; } public WorkOrderOutputWastageLineDetailPOSTRequest setOutputID(String value) { this.OutputID = value; return this; } private static Object responseType = InventorySOHLineDetail.class; public Object getResponseType() { return responseType; } } @Route(Path="/WorkOrders/{WorkOrderID}/Outputs/{OutputID}/WastageLineDetails", Verbs="PUT") public static class WorkOrderOutputWastageLineDetailPUTRequest extends ArrayList implements IReturn> { private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @Route(Path="/WorkOrders/{WorkOrderID}/Outputs/{OutputID}/WastageLineDetails/{LineDetailID}", Verbs="PATCH") @ApiResponse(Description="No work order output wastage line detail with the WorkOrderID, OutputID, or LineDetailID provided was found", StatusCode=404) // @ApiResponse(Description="Updated OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class WorkOrderOutputWastageLineDetailPATCHRequest extends InventorySOHLineDetail implements IReturn { public String WorkOrderID = null; public String OutputID = null; public String LineDetailID = null; public String getWorkOrderID() { return WorkOrderID; } public WorkOrderOutputWastageLineDetailPATCHRequest setWorkOrderID(String value) { this.WorkOrderID = value; return this; } public String getOutputID() { return OutputID; } public WorkOrderOutputWastageLineDetailPATCHRequest setOutputID(String value) { this.OutputID = value; return this; } public String getLineDetailID() { return LineDetailID; } public WorkOrderOutputWastageLineDetailPATCHRequest setLineDetailID(String value) { this.LineDetailID = value; return this; } private static Object responseType = InventorySOHLineDetail.class; public Object getResponseType() { return responseType; } } @Route(Path="/WorkOrders/{WorkOrderID}/Outputs/{OutputID}/WastageLineDetails/{LineDetailID}", Verbs="DELETE") @ApiResponse(Description="No work order output wastage line detail with the WorkOrderID, OutputID, or LineDetailID provided was found", StatusCode=404) // @ApiResponse(Description="Deleted OK", StatusCode=204) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class WorkOrderOutputWastageLineDetailDELETERequest { public String WorkOrderID = null; public String OutputID = null; public String LineDetailID = null; public String getWorkOrderID() { return WorkOrderID; } public WorkOrderOutputWastageLineDetailDELETERequest setWorkOrderID(String value) { this.WorkOrderID = value; return this; } public String getOutputID() { return OutputID; } public WorkOrderOutputWastageLineDetailDELETERequest setOutputID(String value) { this.OutputID = value; return this; } public String getLineDetailID() { return LineDetailID; } public WorkOrderOutputWastageLineDetailDELETERequest setLineDetailID(String value) { this.LineDetailID = value; return this; } } @Route(Path="/WorkOrders/{WorkOrderID}/Outputs/{OutputID}", Verbs="GET") @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="No work order output with the WorkOrderID or OutputID provided was found", StatusCode=404) public static class WorkOrderOutputGETRequest implements IReturn { public String WorkOrderID = null; public String OutputID = null; public String getWorkOrderID() { return WorkOrderID; } public WorkOrderOutputGETRequest setWorkOrderID(String value) { this.WorkOrderID = value; return this; } public String getOutputID() { return OutputID; } public WorkOrderOutputGETRequest setOutputID(String value) { this.OutputID = value; return this; } private static Object responseType = WorkOrderOutput.class; public Object getResponseType() { return responseType; } } @Route(Path="/WorkOrders/{WorkOrderID}/Outputs", Verbs="GET") @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="No work order record with the WorkOrderID provided was found", StatusCode=404) // @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) public static class WorkOrderOutputsGETManyRequest implements IReturn> { public String WorkOrderID = null; public String getWorkOrderID() { return WorkOrderID; } public WorkOrderOutputsGETManyRequest setWorkOrderID(String value) { this.WorkOrderID = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @Route(Path="/WorkOrders/{WorkOrderID}/Outputs", Verbs="POST") @ApiResponse(Description="Created OK", StatusCode=201) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="No work order with the WorkOrderID provided was found", StatusCode=404) public static class WorkOrderOutputPOSTRequest extends WorkOrderOutput implements IReturn { public String WorkOrderID = null; public String getWorkOrderID() { return WorkOrderID; } public WorkOrderOutputPOSTRequest setWorkOrderID(String value) { this.WorkOrderID = value; return this; } private static Object responseType = WorkOrderOutput.class; public Object getResponseType() { return responseType; } } @Route(Path="/WorkOrders/{WorkOrderID}/Outputs/{OutputID}", Verbs="PATCH") @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="No work order record with the WorkOrderID, or OutputID provided was found", StatusCode=404) // @ApiResponse(Description="Updated OK", StatusCode=200) public static class WorkOrderOutputPATCHRequest extends WorkOrderOutput implements IReturn { public String WorkOrderID = null; public String OutputID = null; public String getWorkOrderID() { return WorkOrderID; } public WorkOrderOutputPATCHRequest setWorkOrderID(String value) { this.WorkOrderID = value; return this; } public String getOutputID() { return OutputID; } public WorkOrderOutputPATCHRequest setOutputID(String value) { this.OutputID = value; return this; } private static Object responseType = WorkOrderOutput.class; public Object getResponseType() { return responseType; } } @Route(Path="/WorkOrders/{WorkOrderID}/Outputs/{OutputID}", Verbs="DELETE") @ApiResponse(Description="Deleted OK", StatusCode=204) // @ApiResponse(Description="No work order with the WorkOrderID provided was found", StatusCode=404) // @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="Not authenticated", StatusCode=401) public static class WorkOrderOutputDELETERequest { public String WorkOrderID = null; public String OutputID = null; public String getWorkOrderID() { return WorkOrderID; } public WorkOrderOutputDELETERequest setWorkOrderID(String value) { this.WorkOrderID = value; return this; } public String getOutputID() { return OutputID; } public WorkOrderOutputDELETERequest setOutputID(String value) { this.OutputID = value; return this; } } @Route(Path="/WorkOrders/{WorkOrderID}/Stages/{StageID}/CustomFieldValues", Verbs="GET") @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="No work order stage stage WorkOrderID or StageID provided was found", StatusCode=404) public static class WorkOrderStageCustomFieldValuesGETManyRequest implements IReturn> { public String WorkOrderID = null; public String StageID = null; public String getWorkOrderID() { return WorkOrderID; } public WorkOrderStageCustomFieldValuesGETManyRequest setWorkOrderID(String value) { this.WorkOrderID = value; return this; } public String getStageID() { return StageID; } public WorkOrderStageCustomFieldValuesGETManyRequest setStageID(String value) { this.StageID = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @Route(Path="/WorkOrders/{WorkOrderID}/Stages/{StageID}/CustomFieldValues/{SettingID}", Verbs="GET") @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="No work order stage stage custom field Value with the WorkOrderID, StageID or SettingID provided was found", StatusCode=404) public static class WorkOrderStageCustomFieldValueGETRequest implements IReturn { public String WorkOrderID = null; public String StageID = null; public String SettingID = null; public String getWorkOrderID() { return WorkOrderID; } public WorkOrderStageCustomFieldValueGETRequest setWorkOrderID(String value) { this.WorkOrderID = value; return this; } public String getStageID() { return StageID; } public WorkOrderStageCustomFieldValueGETRequest setStageID(String value) { this.StageID = value; return this; } public String getSettingID() { return SettingID; } public WorkOrderStageCustomFieldValueGETRequest setSettingID(String value) { this.SettingID = value; return this; } private static Object responseType = CustomFieldValue.class; public Object getResponseType() { return responseType; } } @Route(Path="/WorkOrders/{WorkOrderID}/Stages/{StageID}/CustomFieldValues/{SettingID}", Verbs="PATCH") @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="No work order stage custom field value with the WorkOrderID, StageID or SettingID provided was found", StatusCode=404) // @ApiResponse(Description="Updated OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) public static class WorkOrderStageCustomFieldValuePATCHRequest extends CustomFieldValue implements IReturn { public String WorkOrderID = null; public String StageID = null; public String SettingID = null; public String getWorkOrderID() { return WorkOrderID; } public WorkOrderStageCustomFieldValuePATCHRequest setWorkOrderID(String value) { this.WorkOrderID = value; return this; } public String getStageID() { return StageID; } public WorkOrderStageCustomFieldValuePATCHRequest setStageID(String value) { this.StageID = value; return this; } public String getSettingID() { return SettingID; } public WorkOrderStageCustomFieldValuePATCHRequest setSettingID(String value) { this.SettingID = value; return this; } private static Object responseType = CustomFieldValue.class; public Object getResponseType() { return responseType; } } @Route(Path="/WorkOrders/Stages/CustomFields", Verbs="GET") @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="Not authenticated", StatusCode=401) public static class WorkOrderStageCustomFieldsGETManyRequest implements IReturn> { private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @Route(Path="/WorkOrders/Stages/CustomFields/{SettingID}", Verbs="GET") @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) public static class WorkOrderStageCustomFieldGETRequest implements IReturn { public String SettingID = null; public String getSettingID() { return SettingID; } public WorkOrderStageCustomFieldGETRequest setSettingID(String value) { this.SettingID = value; return this; } private static Object responseType = CustomField.class; public Object getResponseType() { return responseType; } } @Route(Path="/WorkOrders/{WorkOrderID}/Stages/{StageID}", Verbs="GET") @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="No work order stage with the WorkOrderID or StageID provided was found", StatusCode=404) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class WorkOrderStageGETRequest implements IReturn { public String WorkOrderID = null; public String StageID = null; public String getWorkOrderID() { return WorkOrderID; } public WorkOrderStageGETRequest setWorkOrderID(String value) { this.WorkOrderID = value; return this; } public String getStageID() { return StageID; } public WorkOrderStageGETRequest setStageID(String value) { this.StageID = value; return this; } private static Object responseType = WorkOrderStage.class; public Object getResponseType() { return responseType; } } @Route(Path="/WorkOrders/{WorkOrderID}/Stages", Verbs="GET") @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="No work order record with the WorkOrderID provided was found", StatusCode=404) // @ApiResponse(Description="Read OK", StatusCode=200) public static class WorkOrderStagesGETManyRequest implements IReturn> { public String WorkOrderID = null; public String getWorkOrderID() { return WorkOrderID; } public WorkOrderStagesGETManyRequest setWorkOrderID(String value) { this.WorkOrderID = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @Route(Path="/WorkOrders/{WorkOrderID}/Stages", Verbs="POST") @ApiResponse(Description="Created OK", StatusCode=201) // @ApiResponse(Description="No work order with the WorkOrderID provided was found", StatusCode=404) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class WorkOrderStagePOSTRequest extends WorkOrderStage implements IReturn { public String WorkOrderID = null; public String getWorkOrderID() { return WorkOrderID; } public WorkOrderStagePOSTRequest setWorkOrderID(String value) { this.WorkOrderID = value; return this; } private static Object responseType = WorkOrderStage.class; public Object getResponseType() { return responseType; } } @Route(Path="/WorkOrders/{WorkOrderID}/Stages/{StageID}", Verbs="PATCH") @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="No work order record with the WorkOrderID, or StageID provided was found", StatusCode=404) // @ApiResponse(Description="Updated OK", StatusCode=200) public static class WorkOrderStagePATCHRequest extends WorkOrderStage implements IReturn { public String WorkOrderID = null; public String StageID = null; public String getWorkOrderID() { return WorkOrderID; } public WorkOrderStagePATCHRequest setWorkOrderID(String value) { this.WorkOrderID = value; return this; } public String getStageID() { return StageID; } public WorkOrderStagePATCHRequest setStageID(String value) { this.StageID = value; return this; } private static Object responseType = WorkOrderStage.class; public Object getResponseType() { return responseType; } } @Route(Path="/WorkOrders/{WorkOrderID}/Stages/{StageID}", Verbs="DELETE") @ApiResponse(Description="Deleted OK", StatusCode=204) // @ApiResponse(Description="No work order with the WorkOrderID provided was found", StatusCode=404) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class WorkOrderStageDELETERequest { public String WorkOrderID = null; public String StageID = null; public String getWorkOrderID() { return WorkOrderID; } public WorkOrderStageDELETERequest setWorkOrderID(String value) { this.WorkOrderID = value; return this; } public String getStageID() { return StageID; } public WorkOrderStageDELETERequest setStageID(String value) { this.StageID = value; return this; } } @Route(Path="/Debtors/{DebtorID}/Contacts/{ContactID}", Verbs="GET") @ApiResponse(Description="No debtor contact with the DebtorID or ContactID provided was found", StatusCode=404) // @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class DebtorContactGETRequest implements IReturn { public String DebtorID = null; public String ContactID = null; public String getDebtorID() { return DebtorID; } public DebtorContactGETRequest setDebtorID(String value) { this.DebtorID = value; return this; } public String getContactID() { return ContactID; } public DebtorContactGETRequest setContactID(String value) { this.ContactID = value; return this; } private static Object responseType = DebtorContact.class; public Object getResponseType() { return responseType; } } @Route(Path="/Debtors/{DebtorID}/Contacts/{ContactID}", Verbs="PATCH") @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="Updated OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="No debtor contact with the DebtorID or ContactNameID provided was found", StatusCode=404) public static class DebtorContactPATCHRequest extends DebtorContact implements IReturn { private static Object responseType = DebtorContact.class; public Object getResponseType() { return responseType; } } @Route(Path="/Debtors/{DebtorID}/Contacts", Verbs="POST") @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="No debtor contact with the DebtorID or ContactNameID provided was found", StatusCode=404) // @ApiResponse(Description="Created OK", StatusCode=201) // @ApiResponse(Description="Not authenticated", StatusCode=401) public static class DebtorContactPOSTRequest extends DebtorContact implements IReturn { private static Object responseType = DebtorContact.class; public Object getResponseType() { return responseType; } } @Route(Path="/Warehouse/{IN_LogicalID}/Stock", Verbs="GET") @ApiResponse(Description="Warehouse not found", StatusCode=404) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="Read OK", StatusCode=200) public static class WarehouseStockGETAllRequest implements IReturn> { public String IN_LogicalID = null; public String getInLogicalID() { return IN_LogicalID; } public WarehouseStockGETAllRequest setInLogicalID(String value) { this.IN_LogicalID = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @Route(Path="/auth", Verbs="GET") @DataContract public static class Authenticate implements IReturn, IPost { @DataMember(Order=1) public String provider = null; @DataMember(Order=2) public String State = null; @DataMember(Order=3) public String oauth_token = null; @DataMember(Order=4) public String oauth_verifier = null; @DataMember(Order=5) public String UserName = null; @DataMember(Order=6) public String Password = null; @DataMember(Order=7) public Boolean RememberMe = null; @DataMember(Order=8) public String Continue = null; @DataMember(Order=9) public String nonce = null; @DataMember(Order=10) public String uri = null; @DataMember(Order=11) public String response = null; @DataMember(Order=12) public String qop = null; @DataMember(Order=13) public String nc = null; @DataMember(Order=14) public String cnonce = null; @DataMember(Order=15) public Boolean UseTokenCookie = null; @DataMember(Order=16) public String AccessToken = null; @DataMember(Order=17) public String AccessTokenSecret = null; @DataMember(Order=18) public HashMap Meta = null; public String getProvider() { return provider; } public Authenticate setProvider(String value) { this.provider = value; return this; } public String getState() { return State; } public Authenticate setState(String value) { this.State = value; return this; } public String getOauthToken() { return oauth_token; } public Authenticate setOauthToken(String value) { this.oauth_token = value; return this; } public String getOauthVerifier() { return oauth_verifier; } public Authenticate setOauthVerifier(String value) { this.oauth_verifier = value; return this; } public String getUserName() { return UserName; } public Authenticate setUserName(String value) { this.UserName = value; return this; } public String getPassword() { return Password; } public Authenticate setPassword(String value) { this.Password = value; return this; } public Boolean isRememberMe() { return RememberMe; } public Authenticate setRememberMe(Boolean value) { this.RememberMe = value; return this; } public String getContinue() { return Continue; } public Authenticate setContinue(String value) { this.Continue = value; return this; } public String getNonce() { return nonce; } public Authenticate setNonce(String value) { this.nonce = value; return this; } public String getUri() { return uri; } public Authenticate setUri(String value) { this.uri = value; return this; } public String getResponse() { return response; } public Authenticate setResponse(String value) { this.response = value; return this; } public String getQop() { return qop; } public Authenticate setQop(String value) { this.qop = value; return this; } public String getNc() { return nc; } public Authenticate setNc(String value) { this.nc = value; return this; } public String getCnonce() { return cnonce; } public Authenticate setCnonce(String value) { this.cnonce = value; return this; } public Boolean isUseTokenCookie() { return UseTokenCookie; } public Authenticate setUseTokenCookie(Boolean value) { this.UseTokenCookie = value; return this; } public String getAccessToken() { return AccessToken; } public Authenticate setAccessToken(String value) { this.AccessToken = value; return this; } public String getAccessTokenSecret() { return AccessTokenSecret; } public Authenticate setAccessTokenSecret(String value) { this.AccessTokenSecret = value; return this; } public HashMap getMeta() { return Meta; } public Authenticate setMeta(HashMap value) { this.Meta = value; return this; } private static Object responseType = AuthenticateResponse.class; public Object getResponseType() { return responseType; } } @Route(Path="/Queries/InventoryItemList", Verbs="GET") @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class v_Jiwa_Inventory_Item_ListQuery extends QueryDb implements IReturn> { public String InventoryID = null; public String InventoryIDStartsWith = null; public String InventoryIDEndsWith = null; public String InventoryIDContains = null; public String InventoryIDLike = null; public ArrayList InventoryIDBetween = null; public ArrayList InventoryIDIn = null; public String PartNo = null; public String PartNoStartsWith = null; public String PartNoEndsWith = null; public String PartNoContains = null; public String PartNoLike = null; public ArrayList PartNoBetween = null; public ArrayList PartNoIn = null; public String Description = null; public String DescriptionStartsWith = null; public String DescriptionEndsWith = null; public String DescriptionContains = null; public String DescriptionLike = null; public ArrayList DescriptionBetween = null; public ArrayList DescriptionIn = null; public ArrayList Picture = null; public String InventoryClassificationID = null; public String InventoryClassificationIDStartsWith = null; public String InventoryClassificationIDEndsWith = null; public String InventoryClassificationIDContains = null; public String InventoryClassificationIDLike = null; public ArrayList InventoryClassificationIDBetween = null; public ArrayList InventoryClassificationIDIn = null; public String ClassificationDescription = null; public String ClassificationDescriptionStartsWith = null; public String ClassificationDescriptionEndsWith = null; public String ClassificationDescriptionContains = null; public String ClassificationDescriptionLike = null; public ArrayList ClassificationDescriptionBetween = null; public ArrayList ClassificationDescriptionIn = null; public String Category1ID = null; public String Category1IDStartsWith = null; public String Category1IDEndsWith = null; public String Category1IDContains = null; public String Category1IDLike = null; public ArrayList Category1IDBetween = null; public ArrayList Category1IDIn = null; public String Category1Description = null; public String Category1DescriptionStartsWith = null; public String Category1DescriptionEndsWith = null; public String Category1DescriptionContains = null; public String Category1DescriptionLike = null; public ArrayList Category1DescriptionBetween = null; public ArrayList Category1DescriptionIn = null; public String Category2ID = null; public String Category2IDStartsWith = null; public String Category2IDEndsWith = null; public String Category2IDContains = null; public String Category2IDLike = null; public ArrayList Category2IDBetween = null; public ArrayList Category2IDIn = null; public String Category2Description = null; public String Category2DescriptionStartsWith = null; public String Category2DescriptionEndsWith = null; public String Category2DescriptionContains = null; public String Category2DescriptionLike = null; public ArrayList Category2DescriptionBetween = null; public ArrayList Category2DescriptionIn = null; public String Category3ID = null; public String Category3IDStartsWith = null; public String Category3IDEndsWith = null; public String Category3IDContains = null; public String Category3IDLike = null; public ArrayList Category3IDBetween = null; public ArrayList Category3IDIn = null; public String Category3Description = null; public String Category3DescriptionStartsWith = null; public String Category3DescriptionEndsWith = null; public String Category3DescriptionContains = null; public String Category3DescriptionLike = null; public ArrayList Category3DescriptionBetween = null; public ArrayList Category3DescriptionIn = null; public String Category4ID = null; public String Category4IDStartsWith = null; public String Category4IDEndsWith = null; public String Category4IDContains = null; public String Category4IDLike = null; public ArrayList Category4IDBetween = null; public ArrayList Category4IDIn = null; public String Category4Description = null; public String Category4DescriptionStartsWith = null; public String Category4DescriptionEndsWith = null; public String Category4DescriptionContains = null; public String Category4DescriptionLike = null; public ArrayList Category4DescriptionBetween = null; public ArrayList Category4DescriptionIn = null; public String Category5ID = null; public String Category5IDStartsWith = null; public String Category5IDEndsWith = null; public String Category5IDContains = null; public String Category5IDLike = null; public ArrayList Category5IDBetween = null; public ArrayList Category5IDIn = null; public String Category5Description = null; public String Category5DescriptionStartsWith = null; public String Category5DescriptionEndsWith = null; public String Category5DescriptionContains = null; public String Category5DescriptionLike = null; public ArrayList Category5DescriptionBetween = null; public ArrayList Category5DescriptionIn = null; public String IN_LogicalID = null; public String IN_LogicalIDStartsWith = null; public String IN_LogicalIDEndsWith = null; public String IN_LogicalIDContains = null; public String IN_LogicalIDLike = null; public ArrayList IN_LogicalIDBetween = null; public ArrayList IN_LogicalIDIn = null; public String LogicalWarehouseDescription = null; public String LogicalWarehouseDescriptionStartsWith = null; public String LogicalWarehouseDescriptionEndsWith = null; public String LogicalWarehouseDescriptionContains = null; public String LogicalWarehouseDescriptionLike = null; public ArrayList LogicalWarehouseDescriptionBetween = null; public ArrayList LogicalWarehouseDescriptionIn = null; public String IN_PhysicalID = null; public String IN_PhysicalIDStartsWith = null; public String IN_PhysicalIDEndsWith = null; public String IN_PhysicalIDContains = null; public String IN_PhysicalIDLike = null; public ArrayList IN_PhysicalIDBetween = null; public ArrayList IN_PhysicalIDIn = null; public String PhysicalWarehouseDescription = null; public String PhysicalWarehouseDescriptionStartsWith = null; public String PhysicalWarehouseDescriptionEndsWith = null; public String PhysicalWarehouseDescriptionContains = null; public String PhysicalWarehouseDescriptionLike = null; public ArrayList PhysicalWarehouseDescriptionBetween = null; public ArrayList PhysicalWarehouseDescriptionIn = null; public BigDecimal AvailableStock = null; public BigDecimal AvailableStockGreaterThanOrEqualTo = null; public BigDecimal AvailableStockGreaterThan = null; public BigDecimal AvailableStockLessThan = null; public BigDecimal AvailableStockLessThanOrEqualTo = null; public BigDecimal AvailableStockNotEqualTo = null; public ArrayList AvailableStockBetween = null; public ArrayList AvailableStockIn = null; public BigDecimal SellPrice = null; public BigDecimal SellPriceGreaterThanOrEqualTo = null; public BigDecimal SellPriceGreaterThan = null; public BigDecimal SellPriceLessThan = null; public BigDecimal SellPriceLessThanOrEqualTo = null; public BigDecimal SellPriceNotEqualTo = null; public ArrayList SellPriceBetween = null; public ArrayList SellPriceIn = null; public BigDecimal RRPPrice = null; public BigDecimal RRPPriceGreaterThanOrEqualTo = null; public BigDecimal RRPPriceGreaterThan = null; public BigDecimal RRPPriceLessThan = null; public BigDecimal RRPPriceLessThanOrEqualTo = null; public BigDecimal RRPPriceNotEqualTo = null; public ArrayList RRPPriceBetween = null; public ArrayList RRPPriceIn = null; public Date LastSavedDateTime = null; public Date LastSavedDateTimeGreaterThanOrEqualTo = null; public Date LastSavedDateTimeGreaterThan = null; public Date LastSavedDateTimeLessThan = null; public Date LastSavedDateTimeLessThanOrEqualTo = null; public Date LastSavedDateTimeNotEqualTo = null; public ArrayList LastSavedDateTimeBetween = null; public ArrayList LastSavedDateTimeIn = null; public String getInventoryID() { return InventoryID; } public v_Jiwa_Inventory_Item_ListQuery setInventoryID(String value) { this.InventoryID = value; return this; } public String getInventoryIDStartsWith() { return InventoryIDStartsWith; } public v_Jiwa_Inventory_Item_ListQuery setInventoryIDStartsWith(String value) { this.InventoryIDStartsWith = value; return this; } public String getInventoryIDEndsWith() { return InventoryIDEndsWith; } public v_Jiwa_Inventory_Item_ListQuery setInventoryIDEndsWith(String value) { this.InventoryIDEndsWith = value; return this; } public String getInventoryIDContains() { return InventoryIDContains; } public v_Jiwa_Inventory_Item_ListQuery setInventoryIDContains(String value) { this.InventoryIDContains = value; return this; } public String getInventoryIDLike() { return InventoryIDLike; } public v_Jiwa_Inventory_Item_ListQuery setInventoryIDLike(String value) { this.InventoryIDLike = value; return this; } public ArrayList getInventoryIDBetween() { return InventoryIDBetween; } public v_Jiwa_Inventory_Item_ListQuery setInventoryIDBetween(ArrayList value) { this.InventoryIDBetween = value; return this; } public ArrayList getInventoryIDIn() { return InventoryIDIn; } public v_Jiwa_Inventory_Item_ListQuery setInventoryIDIn(ArrayList value) { this.InventoryIDIn = value; return this; } public String getPartNo() { return PartNo; } public v_Jiwa_Inventory_Item_ListQuery setPartNo(String value) { this.PartNo = value; return this; } public String getPartNoStartsWith() { return PartNoStartsWith; } public v_Jiwa_Inventory_Item_ListQuery setPartNoStartsWith(String value) { this.PartNoStartsWith = value; return this; } public String getPartNoEndsWith() { return PartNoEndsWith; } public v_Jiwa_Inventory_Item_ListQuery setPartNoEndsWith(String value) { this.PartNoEndsWith = value; return this; } public String getPartNoContains() { return PartNoContains; } public v_Jiwa_Inventory_Item_ListQuery setPartNoContains(String value) { this.PartNoContains = value; return this; } public String getPartNoLike() { return PartNoLike; } public v_Jiwa_Inventory_Item_ListQuery setPartNoLike(String value) { this.PartNoLike = value; return this; } public ArrayList getPartNoBetween() { return PartNoBetween; } public v_Jiwa_Inventory_Item_ListQuery setPartNoBetween(ArrayList value) { this.PartNoBetween = value; return this; } public ArrayList getPartNoIn() { return PartNoIn; } public v_Jiwa_Inventory_Item_ListQuery setPartNoIn(ArrayList value) { this.PartNoIn = value; return this; } public String getDescription() { return Description; } public v_Jiwa_Inventory_Item_ListQuery setDescription(String value) { this.Description = value; return this; } public String getDescriptionStartsWith() { return DescriptionStartsWith; } public v_Jiwa_Inventory_Item_ListQuery setDescriptionStartsWith(String value) { this.DescriptionStartsWith = value; return this; } public String getDescriptionEndsWith() { return DescriptionEndsWith; } public v_Jiwa_Inventory_Item_ListQuery setDescriptionEndsWith(String value) { this.DescriptionEndsWith = value; return this; } public String getDescriptionContains() { return DescriptionContains; } public v_Jiwa_Inventory_Item_ListQuery setDescriptionContains(String value) { this.DescriptionContains = value; return this; } public String getDescriptionLike() { return DescriptionLike; } public v_Jiwa_Inventory_Item_ListQuery setDescriptionLike(String value) { this.DescriptionLike = value; return this; } public ArrayList getDescriptionBetween() { return DescriptionBetween; } public v_Jiwa_Inventory_Item_ListQuery setDescriptionBetween(ArrayList value) { this.DescriptionBetween = value; return this; } public ArrayList getDescriptionIn() { return DescriptionIn; } public v_Jiwa_Inventory_Item_ListQuery setDescriptionIn(ArrayList value) { this.DescriptionIn = value; return this; } public ArrayList getPicture() { return Picture; } public v_Jiwa_Inventory_Item_ListQuery setPicture(ArrayList value) { this.Picture = value; return this; } public String getInventoryClassificationID() { return InventoryClassificationID; } public v_Jiwa_Inventory_Item_ListQuery setInventoryClassificationID(String value) { this.InventoryClassificationID = value; return this; } public String getInventoryClassificationIDStartsWith() { return InventoryClassificationIDStartsWith; } public v_Jiwa_Inventory_Item_ListQuery setInventoryClassificationIDStartsWith(String value) { this.InventoryClassificationIDStartsWith = value; return this; } public String getInventoryClassificationIDEndsWith() { return InventoryClassificationIDEndsWith; } public v_Jiwa_Inventory_Item_ListQuery setInventoryClassificationIDEndsWith(String value) { this.InventoryClassificationIDEndsWith = value; return this; } public String getInventoryClassificationIDContains() { return InventoryClassificationIDContains; } public v_Jiwa_Inventory_Item_ListQuery setInventoryClassificationIDContains(String value) { this.InventoryClassificationIDContains = value; return this; } public String getInventoryClassificationIDLike() { return InventoryClassificationIDLike; } public v_Jiwa_Inventory_Item_ListQuery setInventoryClassificationIDLike(String value) { this.InventoryClassificationIDLike = value; return this; } public ArrayList getInventoryClassificationIDBetween() { return InventoryClassificationIDBetween; } public v_Jiwa_Inventory_Item_ListQuery setInventoryClassificationIDBetween(ArrayList value) { this.InventoryClassificationIDBetween = value; return this; } public ArrayList getInventoryClassificationIDIn() { return InventoryClassificationIDIn; } public v_Jiwa_Inventory_Item_ListQuery setInventoryClassificationIDIn(ArrayList value) { this.InventoryClassificationIDIn = value; return this; } public String getClassificationDescription() { return ClassificationDescription; } public v_Jiwa_Inventory_Item_ListQuery setClassificationDescription(String value) { this.ClassificationDescription = value; return this; } public String getClassificationDescriptionStartsWith() { return ClassificationDescriptionStartsWith; } public v_Jiwa_Inventory_Item_ListQuery setClassificationDescriptionStartsWith(String value) { this.ClassificationDescriptionStartsWith = value; return this; } public String getClassificationDescriptionEndsWith() { return ClassificationDescriptionEndsWith; } public v_Jiwa_Inventory_Item_ListQuery setClassificationDescriptionEndsWith(String value) { this.ClassificationDescriptionEndsWith = value; return this; } public String getClassificationDescriptionContains() { return ClassificationDescriptionContains; } public v_Jiwa_Inventory_Item_ListQuery setClassificationDescriptionContains(String value) { this.ClassificationDescriptionContains = value; return this; } public String getClassificationDescriptionLike() { return ClassificationDescriptionLike; } public v_Jiwa_Inventory_Item_ListQuery setClassificationDescriptionLike(String value) { this.ClassificationDescriptionLike = value; return this; } public ArrayList getClassificationDescriptionBetween() { return ClassificationDescriptionBetween; } public v_Jiwa_Inventory_Item_ListQuery setClassificationDescriptionBetween(ArrayList value) { this.ClassificationDescriptionBetween = value; return this; } public ArrayList getClassificationDescriptionIn() { return ClassificationDescriptionIn; } public v_Jiwa_Inventory_Item_ListQuery setClassificationDescriptionIn(ArrayList value) { this.ClassificationDescriptionIn = value; return this; } public String getCategory1ID() { return Category1ID; } public v_Jiwa_Inventory_Item_ListQuery setCategory1ID(String value) { this.Category1ID = value; return this; } public String getCategory1IDStartsWith() { return Category1IDStartsWith; } public v_Jiwa_Inventory_Item_ListQuery setCategory1IDStartsWith(String value) { this.Category1IDStartsWith = value; return this; } public String getCategory1IDEndsWith() { return Category1IDEndsWith; } public v_Jiwa_Inventory_Item_ListQuery setCategory1IDEndsWith(String value) { this.Category1IDEndsWith = value; return this; } public String getCategory1IDContains() { return Category1IDContains; } public v_Jiwa_Inventory_Item_ListQuery setCategory1IDContains(String value) { this.Category1IDContains = value; return this; } public String getCategory1IDLike() { return Category1IDLike; } public v_Jiwa_Inventory_Item_ListQuery setCategory1IDLike(String value) { this.Category1IDLike = value; return this; } public ArrayList getCategory1IDBetween() { return Category1IDBetween; } public v_Jiwa_Inventory_Item_ListQuery setCategory1IDBetween(ArrayList value) { this.Category1IDBetween = value; return this; } public ArrayList getCategory1IDIn() { return Category1IDIn; } public v_Jiwa_Inventory_Item_ListQuery setCategory1IDIn(ArrayList value) { this.Category1IDIn = value; return this; } public String getCategory1Description() { return Category1Description; } public v_Jiwa_Inventory_Item_ListQuery setCategory1Description(String value) { this.Category1Description = value; return this; } public String getCategory1DescriptionStartsWith() { return Category1DescriptionStartsWith; } public v_Jiwa_Inventory_Item_ListQuery setCategory1DescriptionStartsWith(String value) { this.Category1DescriptionStartsWith = value; return this; } public String getCategory1DescriptionEndsWith() { return Category1DescriptionEndsWith; } public v_Jiwa_Inventory_Item_ListQuery setCategory1DescriptionEndsWith(String value) { this.Category1DescriptionEndsWith = value; return this; } public String getCategory1DescriptionContains() { return Category1DescriptionContains; } public v_Jiwa_Inventory_Item_ListQuery setCategory1DescriptionContains(String value) { this.Category1DescriptionContains = value; return this; } public String getCategory1DescriptionLike() { return Category1DescriptionLike; } public v_Jiwa_Inventory_Item_ListQuery setCategory1DescriptionLike(String value) { this.Category1DescriptionLike = value; return this; } public ArrayList getCategory1DescriptionBetween() { return Category1DescriptionBetween; } public v_Jiwa_Inventory_Item_ListQuery setCategory1DescriptionBetween(ArrayList value) { this.Category1DescriptionBetween = value; return this; } public ArrayList getCategory1DescriptionIn() { return Category1DescriptionIn; } public v_Jiwa_Inventory_Item_ListQuery setCategory1DescriptionIn(ArrayList value) { this.Category1DescriptionIn = value; return this; } public String getCategory2ID() { return Category2ID; } public v_Jiwa_Inventory_Item_ListQuery setCategory2ID(String value) { this.Category2ID = value; return this; } public String getCategory2IDStartsWith() { return Category2IDStartsWith; } public v_Jiwa_Inventory_Item_ListQuery setCategory2IDStartsWith(String value) { this.Category2IDStartsWith = value; return this; } public String getCategory2IDEndsWith() { return Category2IDEndsWith; } public v_Jiwa_Inventory_Item_ListQuery setCategory2IDEndsWith(String value) { this.Category2IDEndsWith = value; return this; } public String getCategory2IDContains() { return Category2IDContains; } public v_Jiwa_Inventory_Item_ListQuery setCategory2IDContains(String value) { this.Category2IDContains = value; return this; } public String getCategory2IDLike() { return Category2IDLike; } public v_Jiwa_Inventory_Item_ListQuery setCategory2IDLike(String value) { this.Category2IDLike = value; return this; } public ArrayList getCategory2IDBetween() { return Category2IDBetween; } public v_Jiwa_Inventory_Item_ListQuery setCategory2IDBetween(ArrayList value) { this.Category2IDBetween = value; return this; } public ArrayList getCategory2IDIn() { return Category2IDIn; } public v_Jiwa_Inventory_Item_ListQuery setCategory2IDIn(ArrayList value) { this.Category2IDIn = value; return this; } public String getCategory2Description() { return Category2Description; } public v_Jiwa_Inventory_Item_ListQuery setCategory2Description(String value) { this.Category2Description = value; return this; } public String getCategory2DescriptionStartsWith() { return Category2DescriptionStartsWith; } public v_Jiwa_Inventory_Item_ListQuery setCategory2DescriptionStartsWith(String value) { this.Category2DescriptionStartsWith = value; return this; } public String getCategory2DescriptionEndsWith() { return Category2DescriptionEndsWith; } public v_Jiwa_Inventory_Item_ListQuery setCategory2DescriptionEndsWith(String value) { this.Category2DescriptionEndsWith = value; return this; } public String getCategory2DescriptionContains() { return Category2DescriptionContains; } public v_Jiwa_Inventory_Item_ListQuery setCategory2DescriptionContains(String value) { this.Category2DescriptionContains = value; return this; } public String getCategory2DescriptionLike() { return Category2DescriptionLike; } public v_Jiwa_Inventory_Item_ListQuery setCategory2DescriptionLike(String value) { this.Category2DescriptionLike = value; return this; } public ArrayList getCategory2DescriptionBetween() { return Category2DescriptionBetween; } public v_Jiwa_Inventory_Item_ListQuery setCategory2DescriptionBetween(ArrayList value) { this.Category2DescriptionBetween = value; return this; } public ArrayList getCategory2DescriptionIn() { return Category2DescriptionIn; } public v_Jiwa_Inventory_Item_ListQuery setCategory2DescriptionIn(ArrayList value) { this.Category2DescriptionIn = value; return this; } public String getCategory3ID() { return Category3ID; } public v_Jiwa_Inventory_Item_ListQuery setCategory3ID(String value) { this.Category3ID = value; return this; } public String getCategory3IDStartsWith() { return Category3IDStartsWith; } public v_Jiwa_Inventory_Item_ListQuery setCategory3IDStartsWith(String value) { this.Category3IDStartsWith = value; return this; } public String getCategory3IDEndsWith() { return Category3IDEndsWith; } public v_Jiwa_Inventory_Item_ListQuery setCategory3IDEndsWith(String value) { this.Category3IDEndsWith = value; return this; } public String getCategory3IDContains() { return Category3IDContains; } public v_Jiwa_Inventory_Item_ListQuery setCategory3IDContains(String value) { this.Category3IDContains = value; return this; } public String getCategory3IDLike() { return Category3IDLike; } public v_Jiwa_Inventory_Item_ListQuery setCategory3IDLike(String value) { this.Category3IDLike = value; return this; } public ArrayList getCategory3IDBetween() { return Category3IDBetween; } public v_Jiwa_Inventory_Item_ListQuery setCategory3IDBetween(ArrayList value) { this.Category3IDBetween = value; return this; } public ArrayList getCategory3IDIn() { return Category3IDIn; } public v_Jiwa_Inventory_Item_ListQuery setCategory3IDIn(ArrayList value) { this.Category3IDIn = value; return this; } public String getCategory3Description() { return Category3Description; } public v_Jiwa_Inventory_Item_ListQuery setCategory3Description(String value) { this.Category3Description = value; return this; } public String getCategory3DescriptionStartsWith() { return Category3DescriptionStartsWith; } public v_Jiwa_Inventory_Item_ListQuery setCategory3DescriptionStartsWith(String value) { this.Category3DescriptionStartsWith = value; return this; } public String getCategory3DescriptionEndsWith() { return Category3DescriptionEndsWith; } public v_Jiwa_Inventory_Item_ListQuery setCategory3DescriptionEndsWith(String value) { this.Category3DescriptionEndsWith = value; return this; } public String getCategory3DescriptionContains() { return Category3DescriptionContains; } public v_Jiwa_Inventory_Item_ListQuery setCategory3DescriptionContains(String value) { this.Category3DescriptionContains = value; return this; } public String getCategory3DescriptionLike() { return Category3DescriptionLike; } public v_Jiwa_Inventory_Item_ListQuery setCategory3DescriptionLike(String value) { this.Category3DescriptionLike = value; return this; } public ArrayList getCategory3DescriptionBetween() { return Category3DescriptionBetween; } public v_Jiwa_Inventory_Item_ListQuery setCategory3DescriptionBetween(ArrayList value) { this.Category3DescriptionBetween = value; return this; } public ArrayList getCategory3DescriptionIn() { return Category3DescriptionIn; } public v_Jiwa_Inventory_Item_ListQuery setCategory3DescriptionIn(ArrayList value) { this.Category3DescriptionIn = value; return this; } public String getCategory4ID() { return Category4ID; } public v_Jiwa_Inventory_Item_ListQuery setCategory4ID(String value) { this.Category4ID = value; return this; } public String getCategory4IDStartsWith() { return Category4IDStartsWith; } public v_Jiwa_Inventory_Item_ListQuery setCategory4IDStartsWith(String value) { this.Category4IDStartsWith = value; return this; } public String getCategory4IDEndsWith() { return Category4IDEndsWith; } public v_Jiwa_Inventory_Item_ListQuery setCategory4IDEndsWith(String value) { this.Category4IDEndsWith = value; return this; } public String getCategory4IDContains() { return Category4IDContains; } public v_Jiwa_Inventory_Item_ListQuery setCategory4IDContains(String value) { this.Category4IDContains = value; return this; } public String getCategory4IDLike() { return Category4IDLike; } public v_Jiwa_Inventory_Item_ListQuery setCategory4IDLike(String value) { this.Category4IDLike = value; return this; } public ArrayList getCategory4IDBetween() { return Category4IDBetween; } public v_Jiwa_Inventory_Item_ListQuery setCategory4IDBetween(ArrayList value) { this.Category4IDBetween = value; return this; } public ArrayList getCategory4IDIn() { return Category4IDIn; } public v_Jiwa_Inventory_Item_ListQuery setCategory4IDIn(ArrayList value) { this.Category4IDIn = value; return this; } public String getCategory4Description() { return Category4Description; } public v_Jiwa_Inventory_Item_ListQuery setCategory4Description(String value) { this.Category4Description = value; return this; } public String getCategory4DescriptionStartsWith() { return Category4DescriptionStartsWith; } public v_Jiwa_Inventory_Item_ListQuery setCategory4DescriptionStartsWith(String value) { this.Category4DescriptionStartsWith = value; return this; } public String getCategory4DescriptionEndsWith() { return Category4DescriptionEndsWith; } public v_Jiwa_Inventory_Item_ListQuery setCategory4DescriptionEndsWith(String value) { this.Category4DescriptionEndsWith = value; return this; } public String getCategory4DescriptionContains() { return Category4DescriptionContains; } public v_Jiwa_Inventory_Item_ListQuery setCategory4DescriptionContains(String value) { this.Category4DescriptionContains = value; return this; } public String getCategory4DescriptionLike() { return Category4DescriptionLike; } public v_Jiwa_Inventory_Item_ListQuery setCategory4DescriptionLike(String value) { this.Category4DescriptionLike = value; return this; } public ArrayList getCategory4DescriptionBetween() { return Category4DescriptionBetween; } public v_Jiwa_Inventory_Item_ListQuery setCategory4DescriptionBetween(ArrayList value) { this.Category4DescriptionBetween = value; return this; } public ArrayList getCategory4DescriptionIn() { return Category4DescriptionIn; } public v_Jiwa_Inventory_Item_ListQuery setCategory4DescriptionIn(ArrayList value) { this.Category4DescriptionIn = value; return this; } public String getCategory5ID() { return Category5ID; } public v_Jiwa_Inventory_Item_ListQuery setCategory5ID(String value) { this.Category5ID = value; return this; } public String getCategory5IDStartsWith() { return Category5IDStartsWith; } public v_Jiwa_Inventory_Item_ListQuery setCategory5IDStartsWith(String value) { this.Category5IDStartsWith = value; return this; } public String getCategory5IDEndsWith() { return Category5IDEndsWith; } public v_Jiwa_Inventory_Item_ListQuery setCategory5IDEndsWith(String value) { this.Category5IDEndsWith = value; return this; } public String getCategory5IDContains() { return Category5IDContains; } public v_Jiwa_Inventory_Item_ListQuery setCategory5IDContains(String value) { this.Category5IDContains = value; return this; } public String getCategory5IDLike() { return Category5IDLike; } public v_Jiwa_Inventory_Item_ListQuery setCategory5IDLike(String value) { this.Category5IDLike = value; return this; } public ArrayList getCategory5IDBetween() { return Category5IDBetween; } public v_Jiwa_Inventory_Item_ListQuery setCategory5IDBetween(ArrayList value) { this.Category5IDBetween = value; return this; } public ArrayList getCategory5IDIn() { return Category5IDIn; } public v_Jiwa_Inventory_Item_ListQuery setCategory5IDIn(ArrayList value) { this.Category5IDIn = value; return this; } public String getCategory5Description() { return Category5Description; } public v_Jiwa_Inventory_Item_ListQuery setCategory5Description(String value) { this.Category5Description = value; return this; } public String getCategory5DescriptionStartsWith() { return Category5DescriptionStartsWith; } public v_Jiwa_Inventory_Item_ListQuery setCategory5DescriptionStartsWith(String value) { this.Category5DescriptionStartsWith = value; return this; } public String getCategory5DescriptionEndsWith() { return Category5DescriptionEndsWith; } public v_Jiwa_Inventory_Item_ListQuery setCategory5DescriptionEndsWith(String value) { this.Category5DescriptionEndsWith = value; return this; } public String getCategory5DescriptionContains() { return Category5DescriptionContains; } public v_Jiwa_Inventory_Item_ListQuery setCategory5DescriptionContains(String value) { this.Category5DescriptionContains = value; return this; } public String getCategory5DescriptionLike() { return Category5DescriptionLike; } public v_Jiwa_Inventory_Item_ListQuery setCategory5DescriptionLike(String value) { this.Category5DescriptionLike = value; return this; } public ArrayList getCategory5DescriptionBetween() { return Category5DescriptionBetween; } public v_Jiwa_Inventory_Item_ListQuery setCategory5DescriptionBetween(ArrayList value) { this.Category5DescriptionBetween = value; return this; } public ArrayList getCategory5DescriptionIn() { return Category5DescriptionIn; } public v_Jiwa_Inventory_Item_ListQuery setCategory5DescriptionIn(ArrayList value) { this.Category5DescriptionIn = value; return this; } public String getInLogicalID() { return IN_LogicalID; } public v_Jiwa_Inventory_Item_ListQuery setInLogicalID(String value) { this.IN_LogicalID = value; return this; } public String getInLogicalIDStartsWith() { return IN_LogicalIDStartsWith; } public v_Jiwa_Inventory_Item_ListQuery setInLogicalIDStartsWith(String value) { this.IN_LogicalIDStartsWith = value; return this; } public String getInLogicalIDEndsWith() { return IN_LogicalIDEndsWith; } public v_Jiwa_Inventory_Item_ListQuery setInLogicalIDEndsWith(String value) { this.IN_LogicalIDEndsWith = value; return this; } public String getInLogicalIDContains() { return IN_LogicalIDContains; } public v_Jiwa_Inventory_Item_ListQuery setInLogicalIDContains(String value) { this.IN_LogicalIDContains = value; return this; } public String getInLogicalIDLike() { return IN_LogicalIDLike; } public v_Jiwa_Inventory_Item_ListQuery setInLogicalIDLike(String value) { this.IN_LogicalIDLike = value; return this; } public ArrayList getInLogicalIDBetween() { return IN_LogicalIDBetween; } public v_Jiwa_Inventory_Item_ListQuery setInLogicalIDBetween(ArrayList value) { this.IN_LogicalIDBetween = value; return this; } public ArrayList getInLogicalIDIn() { return IN_LogicalIDIn; } public v_Jiwa_Inventory_Item_ListQuery setInLogicalIDIn(ArrayList value) { this.IN_LogicalIDIn = value; return this; } public String getLogicalWarehouseDescription() { return LogicalWarehouseDescription; } public v_Jiwa_Inventory_Item_ListQuery setLogicalWarehouseDescription(String value) { this.LogicalWarehouseDescription = value; return this; } public String getLogicalWarehouseDescriptionStartsWith() { return LogicalWarehouseDescriptionStartsWith; } public v_Jiwa_Inventory_Item_ListQuery setLogicalWarehouseDescriptionStartsWith(String value) { this.LogicalWarehouseDescriptionStartsWith = value; return this; } public String getLogicalWarehouseDescriptionEndsWith() { return LogicalWarehouseDescriptionEndsWith; } public v_Jiwa_Inventory_Item_ListQuery setLogicalWarehouseDescriptionEndsWith(String value) { this.LogicalWarehouseDescriptionEndsWith = value; return this; } public String getLogicalWarehouseDescriptionContains() { return LogicalWarehouseDescriptionContains; } public v_Jiwa_Inventory_Item_ListQuery setLogicalWarehouseDescriptionContains(String value) { this.LogicalWarehouseDescriptionContains = value; return this; } public String getLogicalWarehouseDescriptionLike() { return LogicalWarehouseDescriptionLike; } public v_Jiwa_Inventory_Item_ListQuery setLogicalWarehouseDescriptionLike(String value) { this.LogicalWarehouseDescriptionLike = value; return this; } public ArrayList getLogicalWarehouseDescriptionBetween() { return LogicalWarehouseDescriptionBetween; } public v_Jiwa_Inventory_Item_ListQuery setLogicalWarehouseDescriptionBetween(ArrayList value) { this.LogicalWarehouseDescriptionBetween = value; return this; } public ArrayList getLogicalWarehouseDescriptionIn() { return LogicalWarehouseDescriptionIn; } public v_Jiwa_Inventory_Item_ListQuery setLogicalWarehouseDescriptionIn(ArrayList value) { this.LogicalWarehouseDescriptionIn = value; return this; } public String getInPhysicalID() { return IN_PhysicalID; } public v_Jiwa_Inventory_Item_ListQuery setInPhysicalID(String value) { this.IN_PhysicalID = value; return this; } public String getInPhysicalIDStartsWith() { return IN_PhysicalIDStartsWith; } public v_Jiwa_Inventory_Item_ListQuery setInPhysicalIDStartsWith(String value) { this.IN_PhysicalIDStartsWith = value; return this; } public String getInPhysicalIDEndsWith() { return IN_PhysicalIDEndsWith; } public v_Jiwa_Inventory_Item_ListQuery setInPhysicalIDEndsWith(String value) { this.IN_PhysicalIDEndsWith = value; return this; } public String getInPhysicalIDContains() { return IN_PhysicalIDContains; } public v_Jiwa_Inventory_Item_ListQuery setInPhysicalIDContains(String value) { this.IN_PhysicalIDContains = value; return this; } public String getInPhysicalIDLike() { return IN_PhysicalIDLike; } public v_Jiwa_Inventory_Item_ListQuery setInPhysicalIDLike(String value) { this.IN_PhysicalIDLike = value; return this; } public ArrayList getInPhysicalIDBetween() { return IN_PhysicalIDBetween; } public v_Jiwa_Inventory_Item_ListQuery setInPhysicalIDBetween(ArrayList value) { this.IN_PhysicalIDBetween = value; return this; } public ArrayList getInPhysicalIDIn() { return IN_PhysicalIDIn; } public v_Jiwa_Inventory_Item_ListQuery setInPhysicalIDIn(ArrayList value) { this.IN_PhysicalIDIn = value; return this; } public String getPhysicalWarehouseDescription() { return PhysicalWarehouseDescription; } public v_Jiwa_Inventory_Item_ListQuery setPhysicalWarehouseDescription(String value) { this.PhysicalWarehouseDescription = value; return this; } public String getPhysicalWarehouseDescriptionStartsWith() { return PhysicalWarehouseDescriptionStartsWith; } public v_Jiwa_Inventory_Item_ListQuery setPhysicalWarehouseDescriptionStartsWith(String value) { this.PhysicalWarehouseDescriptionStartsWith = value; return this; } public String getPhysicalWarehouseDescriptionEndsWith() { return PhysicalWarehouseDescriptionEndsWith; } public v_Jiwa_Inventory_Item_ListQuery setPhysicalWarehouseDescriptionEndsWith(String value) { this.PhysicalWarehouseDescriptionEndsWith = value; return this; } public String getPhysicalWarehouseDescriptionContains() { return PhysicalWarehouseDescriptionContains; } public v_Jiwa_Inventory_Item_ListQuery setPhysicalWarehouseDescriptionContains(String value) { this.PhysicalWarehouseDescriptionContains = value; return this; } public String getPhysicalWarehouseDescriptionLike() { return PhysicalWarehouseDescriptionLike; } public v_Jiwa_Inventory_Item_ListQuery setPhysicalWarehouseDescriptionLike(String value) { this.PhysicalWarehouseDescriptionLike = value; return this; } public ArrayList getPhysicalWarehouseDescriptionBetween() { return PhysicalWarehouseDescriptionBetween; } public v_Jiwa_Inventory_Item_ListQuery setPhysicalWarehouseDescriptionBetween(ArrayList value) { this.PhysicalWarehouseDescriptionBetween = value; return this; } public ArrayList getPhysicalWarehouseDescriptionIn() { return PhysicalWarehouseDescriptionIn; } public v_Jiwa_Inventory_Item_ListQuery setPhysicalWarehouseDescriptionIn(ArrayList value) { this.PhysicalWarehouseDescriptionIn = value; return this; } public BigDecimal getAvailableStock() { return AvailableStock; } public v_Jiwa_Inventory_Item_ListQuery setAvailableStock(BigDecimal value) { this.AvailableStock = value; return this; } public BigDecimal getAvailableStockGreaterThanOrEqualTo() { return AvailableStockGreaterThanOrEqualTo; } public v_Jiwa_Inventory_Item_ListQuery setAvailableStockGreaterThanOrEqualTo(BigDecimal value) { this.AvailableStockGreaterThanOrEqualTo = value; return this; } public BigDecimal getAvailableStockGreaterThan() { return AvailableStockGreaterThan; } public v_Jiwa_Inventory_Item_ListQuery setAvailableStockGreaterThan(BigDecimal value) { this.AvailableStockGreaterThan = value; return this; } public BigDecimal getAvailableStockLessThan() { return AvailableStockLessThan; } public v_Jiwa_Inventory_Item_ListQuery setAvailableStockLessThan(BigDecimal value) { this.AvailableStockLessThan = value; return this; } public BigDecimal getAvailableStockLessThanOrEqualTo() { return AvailableStockLessThanOrEqualTo; } public v_Jiwa_Inventory_Item_ListQuery setAvailableStockLessThanOrEqualTo(BigDecimal value) { this.AvailableStockLessThanOrEqualTo = value; return this; } public BigDecimal getAvailableStockNotEqualTo() { return AvailableStockNotEqualTo; } public v_Jiwa_Inventory_Item_ListQuery setAvailableStockNotEqualTo(BigDecimal value) { this.AvailableStockNotEqualTo = value; return this; } public ArrayList getAvailableStockBetween() { return AvailableStockBetween; } public v_Jiwa_Inventory_Item_ListQuery setAvailableStockBetween(ArrayList value) { this.AvailableStockBetween = value; return this; } public ArrayList getAvailableStockIn() { return AvailableStockIn; } public v_Jiwa_Inventory_Item_ListQuery setAvailableStockIn(ArrayList value) { this.AvailableStockIn = value; return this; } public BigDecimal getSellPrice() { return SellPrice; } public v_Jiwa_Inventory_Item_ListQuery setSellPrice(BigDecimal value) { this.SellPrice = value; return this; } public BigDecimal getSellPriceGreaterThanOrEqualTo() { return SellPriceGreaterThanOrEqualTo; } public v_Jiwa_Inventory_Item_ListQuery setSellPriceGreaterThanOrEqualTo(BigDecimal value) { this.SellPriceGreaterThanOrEqualTo = value; return this; } public BigDecimal getSellPriceGreaterThan() { return SellPriceGreaterThan; } public v_Jiwa_Inventory_Item_ListQuery setSellPriceGreaterThan(BigDecimal value) { this.SellPriceGreaterThan = value; return this; } public BigDecimal getSellPriceLessThan() { return SellPriceLessThan; } public v_Jiwa_Inventory_Item_ListQuery setSellPriceLessThan(BigDecimal value) { this.SellPriceLessThan = value; return this; } public BigDecimal getSellPriceLessThanOrEqualTo() { return SellPriceLessThanOrEqualTo; } public v_Jiwa_Inventory_Item_ListQuery setSellPriceLessThanOrEqualTo(BigDecimal value) { this.SellPriceLessThanOrEqualTo = value; return this; } public BigDecimal getSellPriceNotEqualTo() { return SellPriceNotEqualTo; } public v_Jiwa_Inventory_Item_ListQuery setSellPriceNotEqualTo(BigDecimal value) { this.SellPriceNotEqualTo = value; return this; } public ArrayList getSellPriceBetween() { return SellPriceBetween; } public v_Jiwa_Inventory_Item_ListQuery setSellPriceBetween(ArrayList value) { this.SellPriceBetween = value; return this; } public ArrayList getSellPriceIn() { return SellPriceIn; } public v_Jiwa_Inventory_Item_ListQuery setSellPriceIn(ArrayList value) { this.SellPriceIn = value; return this; } public BigDecimal getRrpPrice() { return RRPPrice; } public v_Jiwa_Inventory_Item_ListQuery setRrpPrice(BigDecimal value) { this.RRPPrice = value; return this; } public BigDecimal getRrpPriceGreaterThanOrEqualTo() { return RRPPriceGreaterThanOrEqualTo; } public v_Jiwa_Inventory_Item_ListQuery setRrpPriceGreaterThanOrEqualTo(BigDecimal value) { this.RRPPriceGreaterThanOrEqualTo = value; return this; } public BigDecimal getRrpPriceGreaterThan() { return RRPPriceGreaterThan; } public v_Jiwa_Inventory_Item_ListQuery setRrpPriceGreaterThan(BigDecimal value) { this.RRPPriceGreaterThan = value; return this; } public BigDecimal getRrpPriceLessThan() { return RRPPriceLessThan; } public v_Jiwa_Inventory_Item_ListQuery setRrpPriceLessThan(BigDecimal value) { this.RRPPriceLessThan = value; return this; } public BigDecimal getRrpPriceLessThanOrEqualTo() { return RRPPriceLessThanOrEqualTo; } public v_Jiwa_Inventory_Item_ListQuery setRrpPriceLessThanOrEqualTo(BigDecimal value) { this.RRPPriceLessThanOrEqualTo = value; return this; } public BigDecimal getRrpPriceNotEqualTo() { return RRPPriceNotEqualTo; } public v_Jiwa_Inventory_Item_ListQuery setRrpPriceNotEqualTo(BigDecimal value) { this.RRPPriceNotEqualTo = value; return this; } public ArrayList getRrpPriceBetween() { return RRPPriceBetween; } public v_Jiwa_Inventory_Item_ListQuery setRrpPriceBetween(ArrayList value) { this.RRPPriceBetween = value; return this; } public ArrayList getRrpPriceIn() { return RRPPriceIn; } public v_Jiwa_Inventory_Item_ListQuery setRrpPriceIn(ArrayList value) { this.RRPPriceIn = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public v_Jiwa_Inventory_Item_ListQuery setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getLastSavedDateTimeGreaterThanOrEqualTo() { return LastSavedDateTimeGreaterThanOrEqualTo; } public v_Jiwa_Inventory_Item_ListQuery setLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.LastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeGreaterThan() { return LastSavedDateTimeGreaterThan; } public v_Jiwa_Inventory_Item_ListQuery setLastSavedDateTimeGreaterThan(Date value) { this.LastSavedDateTimeGreaterThan = value; return this; } public Date getLastSavedDateTimeLessThan() { return LastSavedDateTimeLessThan; } public v_Jiwa_Inventory_Item_ListQuery setLastSavedDateTimeLessThan(Date value) { this.LastSavedDateTimeLessThan = value; return this; } public Date getLastSavedDateTimeLessThanOrEqualTo() { return LastSavedDateTimeLessThanOrEqualTo; } public v_Jiwa_Inventory_Item_ListQuery setLastSavedDateTimeLessThanOrEqualTo(Date value) { this.LastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeNotEqualTo() { return LastSavedDateTimeNotEqualTo; } public v_Jiwa_Inventory_Item_ListQuery setLastSavedDateTimeNotEqualTo(Date value) { this.LastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getLastSavedDateTimeBetween() { return LastSavedDateTimeBetween; } public v_Jiwa_Inventory_Item_ListQuery setLastSavedDateTimeBetween(ArrayList value) { this.LastSavedDateTimeBetween = value; return this; } public ArrayList getLastSavedDateTimeIn() { return LastSavedDateTimeIn; } public v_Jiwa_Inventory_Item_ListQuery setLastSavedDateTimeIn(ArrayList value) { this.LastSavedDateTimeIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class v_JIWA_JobCosting_EstimateAndActualLinesQuery extends QueryDb implements IReturn> { public String JB_Estimates_RecID = null; public String JB_Estimates_RecIDStartsWith = null; public String JB_Estimates_RecIDEndsWith = null; public String JB_Estimates_RecIDContains = null; public String JB_Estimates_RecIDLike = null; public ArrayList JB_Estimates_RecIDBetween = null; public ArrayList JB_Estimates_RecIDIn = null; public String JB_JobStages_RecID = null; public String JB_JobStages_RecIDStartsWith = null; public String JB_JobStages_RecIDEndsWith = null; public String JB_JobStages_RecIDContains = null; public String JB_JobStages_RecIDLike = null; public ArrayList JB_JobStages_RecIDBetween = null; public ArrayList JB_JobStages_RecIDIn = null; public String ComponentID = null; public String ComponentIDStartsWith = null; public String ComponentIDEndsWith = null; public String ComponentIDContains = null; public String ComponentIDLike = null; public ArrayList ComponentIDBetween = null; public ArrayList ComponentIDIn = null; public String ComponentNo = null; public String ComponentNoStartsWith = null; public String ComponentNoEndsWith = null; public String ComponentNoContains = null; public String ComponentNoLike = null; public ArrayList ComponentNoBetween = null; public ArrayList ComponentNoIn = null; public String ComponentDescription = null; public String ComponentDescriptionStartsWith = null; public String ComponentDescriptionEndsWith = null; public String ComponentDescriptionContains = null; public String ComponentDescriptionLike = null; public ArrayList ComponentDescriptionBetween = null; public ArrayList ComponentDescriptionIn = null; public Date TransactionDate = null; public Date TransactionDateGreaterThanOrEqualTo = null; public Date TransactionDateGreaterThan = null; public Date TransactionDateLessThan = null; public Date TransactionDateLessThanOrEqualTo = null; public Date TransactionDateNotEqualTo = null; public ArrayList TransactionDateBetween = null; public ArrayList TransactionDateIn = null; public BigDecimal Quantity = null; public BigDecimal QuantityGreaterThanOrEqualTo = null; public BigDecimal QuantityGreaterThan = null; public BigDecimal QuantityLessThan = null; public BigDecimal QuantityLessThanOrEqualTo = null; public BigDecimal QuantityNotEqualTo = null; public ArrayList QuantityBetween = null; public ArrayList QuantityIn = null; public BigDecimal UnitCost = null; public BigDecimal UnitCostGreaterThanOrEqualTo = null; public BigDecimal UnitCostGreaterThan = null; public BigDecimal UnitCostLessThan = null; public BigDecimal UnitCostLessThanOrEqualTo = null; public BigDecimal UnitCostNotEqualTo = null; public ArrayList UnitCostBetween = null; public ArrayList UnitCostIn = null; public BigDecimal UnitCharge = null; public BigDecimal UnitChargeGreaterThanOrEqualTo = null; public BigDecimal UnitChargeGreaterThan = null; public BigDecimal UnitChargeLessThan = null; public BigDecimal UnitChargeLessThanOrEqualTo = null; public BigDecimal UnitChargeNotEqualTo = null; public ArrayList UnitChargeBetween = null; public ArrayList UnitChargeIn = null; public String Remark = null; public String RemarkStartsWith = null; public String RemarkEndsWith = null; public String RemarkContains = null; public String RemarkLike = null; public ArrayList RemarkBetween = null; public ArrayList RemarkIn = null; public Integer ItemNo = null; public Integer ItemNoGreaterThanOrEqualTo = null; public Integer ItemNoGreaterThan = null; public Integer ItemNoLessThan = null; public Integer ItemNoLessThanOrEqualTo = null; public Integer ItemNoNotEqualTo = null; public ArrayList ItemNoBetween = null; public ArrayList ItemNoIn = null; public String Units = null; public String UnitsStartsWith = null; public String UnitsEndsWith = null; public String UnitsContains = null; public String UnitsLike = null; public ArrayList UnitsBetween = null; public ArrayList UnitsIn = null; public Integer ComponentType = null; public Integer ComponentTypeGreaterThanOrEqualTo = null; public Integer ComponentTypeGreaterThan = null; public Integer ComponentTypeLessThan = null; public Integer ComponentTypeLessThanOrEqualTo = null; public Integer ComponentTypeNotEqualTo = null; public ArrayList ComponentTypeBetween = null; public ArrayList ComponentTypeIn = null; public Integer IsEstimate = null; public Integer IsEstimateGreaterThanOrEqualTo = null; public Integer IsEstimateGreaterThan = null; public Integer IsEstimateLessThan = null; public Integer IsEstimateLessThanOrEqualTo = null; public Integer IsEstimateNotEqualTo = null; public ArrayList IsEstimateBetween = null; public ArrayList IsEstimateIn = null; public String getJbEstimatesRecID() { return JB_Estimates_RecID; } public v_JIWA_JobCosting_EstimateAndActualLinesQuery setJbEstimatesRecID(String value) { this.JB_Estimates_RecID = value; return this; } public String getJbEstimatesRecIDStartsWith() { return JB_Estimates_RecIDStartsWith; } public v_JIWA_JobCosting_EstimateAndActualLinesQuery setJbEstimatesRecIDStartsWith(String value) { this.JB_Estimates_RecIDStartsWith = value; return this; } public String getJbEstimatesRecIDEndsWith() { return JB_Estimates_RecIDEndsWith; } public v_JIWA_JobCosting_EstimateAndActualLinesQuery setJbEstimatesRecIDEndsWith(String value) { this.JB_Estimates_RecIDEndsWith = value; return this; } public String getJbEstimatesRecIDContains() { return JB_Estimates_RecIDContains; } public v_JIWA_JobCosting_EstimateAndActualLinesQuery setJbEstimatesRecIDContains(String value) { this.JB_Estimates_RecIDContains = value; return this; } public String getJbEstimatesRecIDLike() { return JB_Estimates_RecIDLike; } public v_JIWA_JobCosting_EstimateAndActualLinesQuery setJbEstimatesRecIDLike(String value) { this.JB_Estimates_RecIDLike = value; return this; } public ArrayList getJbEstimatesRecIDBetween() { return JB_Estimates_RecIDBetween; } public v_JIWA_JobCosting_EstimateAndActualLinesQuery setJbEstimatesRecIDBetween(ArrayList value) { this.JB_Estimates_RecIDBetween = value; return this; } public ArrayList getJbEstimatesRecIDIn() { return JB_Estimates_RecIDIn; } public v_JIWA_JobCosting_EstimateAndActualLinesQuery setJbEstimatesRecIDIn(ArrayList value) { this.JB_Estimates_RecIDIn = value; return this; } public String getJbJobStagesRecID() { return JB_JobStages_RecID; } public v_JIWA_JobCosting_EstimateAndActualLinesQuery setJbJobStagesRecID(String value) { this.JB_JobStages_RecID = value; return this; } public String getJbJobStagesRecIDStartsWith() { return JB_JobStages_RecIDStartsWith; } public v_JIWA_JobCosting_EstimateAndActualLinesQuery setJbJobStagesRecIDStartsWith(String value) { this.JB_JobStages_RecIDStartsWith = value; return this; } public String getJbJobStagesRecIDEndsWith() { return JB_JobStages_RecIDEndsWith; } public v_JIWA_JobCosting_EstimateAndActualLinesQuery setJbJobStagesRecIDEndsWith(String value) { this.JB_JobStages_RecIDEndsWith = value; return this; } public String getJbJobStagesRecIDContains() { return JB_JobStages_RecIDContains; } public v_JIWA_JobCosting_EstimateAndActualLinesQuery setJbJobStagesRecIDContains(String value) { this.JB_JobStages_RecIDContains = value; return this; } public String getJbJobStagesRecIDLike() { return JB_JobStages_RecIDLike; } public v_JIWA_JobCosting_EstimateAndActualLinesQuery setJbJobStagesRecIDLike(String value) { this.JB_JobStages_RecIDLike = value; return this; } public ArrayList getJbJobStagesRecIDBetween() { return JB_JobStages_RecIDBetween; } public v_JIWA_JobCosting_EstimateAndActualLinesQuery setJbJobStagesRecIDBetween(ArrayList value) { this.JB_JobStages_RecIDBetween = value; return this; } public ArrayList getJbJobStagesRecIDIn() { return JB_JobStages_RecIDIn; } public v_JIWA_JobCosting_EstimateAndActualLinesQuery setJbJobStagesRecIDIn(ArrayList value) { this.JB_JobStages_RecIDIn = value; return this; } public String getComponentID() { return ComponentID; } public v_JIWA_JobCosting_EstimateAndActualLinesQuery setComponentID(String value) { this.ComponentID = value; return this; } public String getComponentIDStartsWith() { return ComponentIDStartsWith; } public v_JIWA_JobCosting_EstimateAndActualLinesQuery setComponentIDStartsWith(String value) { this.ComponentIDStartsWith = value; return this; } public String getComponentIDEndsWith() { return ComponentIDEndsWith; } public v_JIWA_JobCosting_EstimateAndActualLinesQuery setComponentIDEndsWith(String value) { this.ComponentIDEndsWith = value; return this; } public String getComponentIDContains() { return ComponentIDContains; } public v_JIWA_JobCosting_EstimateAndActualLinesQuery setComponentIDContains(String value) { this.ComponentIDContains = value; return this; } public String getComponentIDLike() { return ComponentIDLike; } public v_JIWA_JobCosting_EstimateAndActualLinesQuery setComponentIDLike(String value) { this.ComponentIDLike = value; return this; } public ArrayList getComponentIDBetween() { return ComponentIDBetween; } public v_JIWA_JobCosting_EstimateAndActualLinesQuery setComponentIDBetween(ArrayList value) { this.ComponentIDBetween = value; return this; } public ArrayList getComponentIDIn() { return ComponentIDIn; } public v_JIWA_JobCosting_EstimateAndActualLinesQuery setComponentIDIn(ArrayList value) { this.ComponentIDIn = value; return this; } public String getComponentNo() { return ComponentNo; } public v_JIWA_JobCosting_EstimateAndActualLinesQuery setComponentNo(String value) { this.ComponentNo = value; return this; } public String getComponentNoStartsWith() { return ComponentNoStartsWith; } public v_JIWA_JobCosting_EstimateAndActualLinesQuery setComponentNoStartsWith(String value) { this.ComponentNoStartsWith = value; return this; } public String getComponentNoEndsWith() { return ComponentNoEndsWith; } public v_JIWA_JobCosting_EstimateAndActualLinesQuery setComponentNoEndsWith(String value) { this.ComponentNoEndsWith = value; return this; } public String getComponentNoContains() { return ComponentNoContains; } public v_JIWA_JobCosting_EstimateAndActualLinesQuery setComponentNoContains(String value) { this.ComponentNoContains = value; return this; } public String getComponentNoLike() { return ComponentNoLike; } public v_JIWA_JobCosting_EstimateAndActualLinesQuery setComponentNoLike(String value) { this.ComponentNoLike = value; return this; } public ArrayList getComponentNoBetween() { return ComponentNoBetween; } public v_JIWA_JobCosting_EstimateAndActualLinesQuery setComponentNoBetween(ArrayList value) { this.ComponentNoBetween = value; return this; } public ArrayList getComponentNoIn() { return ComponentNoIn; } public v_JIWA_JobCosting_EstimateAndActualLinesQuery setComponentNoIn(ArrayList value) { this.ComponentNoIn = value; return this; } public String getComponentDescription() { return ComponentDescription; } public v_JIWA_JobCosting_EstimateAndActualLinesQuery setComponentDescription(String value) { this.ComponentDescription = value; return this; } public String getComponentDescriptionStartsWith() { return ComponentDescriptionStartsWith; } public v_JIWA_JobCosting_EstimateAndActualLinesQuery setComponentDescriptionStartsWith(String value) { this.ComponentDescriptionStartsWith = value; return this; } public String getComponentDescriptionEndsWith() { return ComponentDescriptionEndsWith; } public v_JIWA_JobCosting_EstimateAndActualLinesQuery setComponentDescriptionEndsWith(String value) { this.ComponentDescriptionEndsWith = value; return this; } public String getComponentDescriptionContains() { return ComponentDescriptionContains; } public v_JIWA_JobCosting_EstimateAndActualLinesQuery setComponentDescriptionContains(String value) { this.ComponentDescriptionContains = value; return this; } public String getComponentDescriptionLike() { return ComponentDescriptionLike; } public v_JIWA_JobCosting_EstimateAndActualLinesQuery setComponentDescriptionLike(String value) { this.ComponentDescriptionLike = value; return this; } public ArrayList getComponentDescriptionBetween() { return ComponentDescriptionBetween; } public v_JIWA_JobCosting_EstimateAndActualLinesQuery setComponentDescriptionBetween(ArrayList value) { this.ComponentDescriptionBetween = value; return this; } public ArrayList getComponentDescriptionIn() { return ComponentDescriptionIn; } public v_JIWA_JobCosting_EstimateAndActualLinesQuery setComponentDescriptionIn(ArrayList value) { this.ComponentDescriptionIn = value; return this; } public Date getTransactionDate() { return TransactionDate; } public v_JIWA_JobCosting_EstimateAndActualLinesQuery setTransactionDate(Date value) { this.TransactionDate = value; return this; } public Date getTransactionDateGreaterThanOrEqualTo() { return TransactionDateGreaterThanOrEqualTo; } public v_JIWA_JobCosting_EstimateAndActualLinesQuery setTransactionDateGreaterThanOrEqualTo(Date value) { this.TransactionDateGreaterThanOrEqualTo = value; return this; } public Date getTransactionDateGreaterThan() { return TransactionDateGreaterThan; } public v_JIWA_JobCosting_EstimateAndActualLinesQuery setTransactionDateGreaterThan(Date value) { this.TransactionDateGreaterThan = value; return this; } public Date getTransactionDateLessThan() { return TransactionDateLessThan; } public v_JIWA_JobCosting_EstimateAndActualLinesQuery setTransactionDateLessThan(Date value) { this.TransactionDateLessThan = value; return this; } public Date getTransactionDateLessThanOrEqualTo() { return TransactionDateLessThanOrEqualTo; } public v_JIWA_JobCosting_EstimateAndActualLinesQuery setTransactionDateLessThanOrEqualTo(Date value) { this.TransactionDateLessThanOrEqualTo = value; return this; } public Date getTransactionDateNotEqualTo() { return TransactionDateNotEqualTo; } public v_JIWA_JobCosting_EstimateAndActualLinesQuery setTransactionDateNotEqualTo(Date value) { this.TransactionDateNotEqualTo = value; return this; } public ArrayList getTransactionDateBetween() { return TransactionDateBetween; } public v_JIWA_JobCosting_EstimateAndActualLinesQuery setTransactionDateBetween(ArrayList value) { this.TransactionDateBetween = value; return this; } public ArrayList getTransactionDateIn() { return TransactionDateIn; } public v_JIWA_JobCosting_EstimateAndActualLinesQuery setTransactionDateIn(ArrayList value) { this.TransactionDateIn = value; return this; } public BigDecimal getQuantity() { return Quantity; } public v_JIWA_JobCosting_EstimateAndActualLinesQuery setQuantity(BigDecimal value) { this.Quantity = value; return this; } public BigDecimal getQuantityGreaterThanOrEqualTo() { return QuantityGreaterThanOrEqualTo; } public v_JIWA_JobCosting_EstimateAndActualLinesQuery setQuantityGreaterThanOrEqualTo(BigDecimal value) { this.QuantityGreaterThanOrEqualTo = value; return this; } public BigDecimal getQuantityGreaterThan() { return QuantityGreaterThan; } public v_JIWA_JobCosting_EstimateAndActualLinesQuery setQuantityGreaterThan(BigDecimal value) { this.QuantityGreaterThan = value; return this; } public BigDecimal getQuantityLessThan() { return QuantityLessThan; } public v_JIWA_JobCosting_EstimateAndActualLinesQuery setQuantityLessThan(BigDecimal value) { this.QuantityLessThan = value; return this; } public BigDecimal getQuantityLessThanOrEqualTo() { return QuantityLessThanOrEqualTo; } public v_JIWA_JobCosting_EstimateAndActualLinesQuery setQuantityLessThanOrEqualTo(BigDecimal value) { this.QuantityLessThanOrEqualTo = value; return this; } public BigDecimal getQuantityNotEqualTo() { return QuantityNotEqualTo; } public v_JIWA_JobCosting_EstimateAndActualLinesQuery setQuantityNotEqualTo(BigDecimal value) { this.QuantityNotEqualTo = value; return this; } public ArrayList getQuantityBetween() { return QuantityBetween; } public v_JIWA_JobCosting_EstimateAndActualLinesQuery setQuantityBetween(ArrayList value) { this.QuantityBetween = value; return this; } public ArrayList getQuantityIn() { return QuantityIn; } public v_JIWA_JobCosting_EstimateAndActualLinesQuery setQuantityIn(ArrayList value) { this.QuantityIn = value; return this; } public BigDecimal getUnitCost() { return UnitCost; } public v_JIWA_JobCosting_EstimateAndActualLinesQuery setUnitCost(BigDecimal value) { this.UnitCost = value; return this; } public BigDecimal getUnitCostGreaterThanOrEqualTo() { return UnitCostGreaterThanOrEqualTo; } public v_JIWA_JobCosting_EstimateAndActualLinesQuery setUnitCostGreaterThanOrEqualTo(BigDecimal value) { this.UnitCostGreaterThanOrEqualTo = value; return this; } public BigDecimal getUnitCostGreaterThan() { return UnitCostGreaterThan; } public v_JIWA_JobCosting_EstimateAndActualLinesQuery setUnitCostGreaterThan(BigDecimal value) { this.UnitCostGreaterThan = value; return this; } public BigDecimal getUnitCostLessThan() { return UnitCostLessThan; } public v_JIWA_JobCosting_EstimateAndActualLinesQuery setUnitCostLessThan(BigDecimal value) { this.UnitCostLessThan = value; return this; } public BigDecimal getUnitCostLessThanOrEqualTo() { return UnitCostLessThanOrEqualTo; } public v_JIWA_JobCosting_EstimateAndActualLinesQuery setUnitCostLessThanOrEqualTo(BigDecimal value) { this.UnitCostLessThanOrEqualTo = value; return this; } public BigDecimal getUnitCostNotEqualTo() { return UnitCostNotEqualTo; } public v_JIWA_JobCosting_EstimateAndActualLinesQuery setUnitCostNotEqualTo(BigDecimal value) { this.UnitCostNotEqualTo = value; return this; } public ArrayList getUnitCostBetween() { return UnitCostBetween; } public v_JIWA_JobCosting_EstimateAndActualLinesQuery setUnitCostBetween(ArrayList value) { this.UnitCostBetween = value; return this; } public ArrayList getUnitCostIn() { return UnitCostIn; } public v_JIWA_JobCosting_EstimateAndActualLinesQuery setUnitCostIn(ArrayList value) { this.UnitCostIn = value; return this; } public BigDecimal getUnitCharge() { return UnitCharge; } public v_JIWA_JobCosting_EstimateAndActualLinesQuery setUnitCharge(BigDecimal value) { this.UnitCharge = value; return this; } public BigDecimal getUnitChargeGreaterThanOrEqualTo() { return UnitChargeGreaterThanOrEqualTo; } public v_JIWA_JobCosting_EstimateAndActualLinesQuery setUnitChargeGreaterThanOrEqualTo(BigDecimal value) { this.UnitChargeGreaterThanOrEqualTo = value; return this; } public BigDecimal getUnitChargeGreaterThan() { return UnitChargeGreaterThan; } public v_JIWA_JobCosting_EstimateAndActualLinesQuery setUnitChargeGreaterThan(BigDecimal value) { this.UnitChargeGreaterThan = value; return this; } public BigDecimal getUnitChargeLessThan() { return UnitChargeLessThan; } public v_JIWA_JobCosting_EstimateAndActualLinesQuery setUnitChargeLessThan(BigDecimal value) { this.UnitChargeLessThan = value; return this; } public BigDecimal getUnitChargeLessThanOrEqualTo() { return UnitChargeLessThanOrEqualTo; } public v_JIWA_JobCosting_EstimateAndActualLinesQuery setUnitChargeLessThanOrEqualTo(BigDecimal value) { this.UnitChargeLessThanOrEqualTo = value; return this; } public BigDecimal getUnitChargeNotEqualTo() { return UnitChargeNotEqualTo; } public v_JIWA_JobCosting_EstimateAndActualLinesQuery setUnitChargeNotEqualTo(BigDecimal value) { this.UnitChargeNotEqualTo = value; return this; } public ArrayList getUnitChargeBetween() { return UnitChargeBetween; } public v_JIWA_JobCosting_EstimateAndActualLinesQuery setUnitChargeBetween(ArrayList value) { this.UnitChargeBetween = value; return this; } public ArrayList getUnitChargeIn() { return UnitChargeIn; } public v_JIWA_JobCosting_EstimateAndActualLinesQuery setUnitChargeIn(ArrayList value) { this.UnitChargeIn = value; return this; } public String getRemark() { return Remark; } public v_JIWA_JobCosting_EstimateAndActualLinesQuery setRemark(String value) { this.Remark = value; return this; } public String getRemarkStartsWith() { return RemarkStartsWith; } public v_JIWA_JobCosting_EstimateAndActualLinesQuery setRemarkStartsWith(String value) { this.RemarkStartsWith = value; return this; } public String getRemarkEndsWith() { return RemarkEndsWith; } public v_JIWA_JobCosting_EstimateAndActualLinesQuery setRemarkEndsWith(String value) { this.RemarkEndsWith = value; return this; } public String getRemarkContains() { return RemarkContains; } public v_JIWA_JobCosting_EstimateAndActualLinesQuery setRemarkContains(String value) { this.RemarkContains = value; return this; } public String getRemarkLike() { return RemarkLike; } public v_JIWA_JobCosting_EstimateAndActualLinesQuery setRemarkLike(String value) { this.RemarkLike = value; return this; } public ArrayList getRemarkBetween() { return RemarkBetween; } public v_JIWA_JobCosting_EstimateAndActualLinesQuery setRemarkBetween(ArrayList value) { this.RemarkBetween = value; return this; } public ArrayList getRemarkIn() { return RemarkIn; } public v_JIWA_JobCosting_EstimateAndActualLinesQuery setRemarkIn(ArrayList value) { this.RemarkIn = value; return this; } public Integer getItemNo() { return ItemNo; } public v_JIWA_JobCosting_EstimateAndActualLinesQuery setItemNo(Integer value) { this.ItemNo = value; return this; } public Integer getItemNoGreaterThanOrEqualTo() { return ItemNoGreaterThanOrEqualTo; } public v_JIWA_JobCosting_EstimateAndActualLinesQuery setItemNoGreaterThanOrEqualTo(Integer value) { this.ItemNoGreaterThanOrEqualTo = value; return this; } public Integer getItemNoGreaterThan() { return ItemNoGreaterThan; } public v_JIWA_JobCosting_EstimateAndActualLinesQuery setItemNoGreaterThan(Integer value) { this.ItemNoGreaterThan = value; return this; } public Integer getItemNoLessThan() { return ItemNoLessThan; } public v_JIWA_JobCosting_EstimateAndActualLinesQuery setItemNoLessThan(Integer value) { this.ItemNoLessThan = value; return this; } public Integer getItemNoLessThanOrEqualTo() { return ItemNoLessThanOrEqualTo; } public v_JIWA_JobCosting_EstimateAndActualLinesQuery setItemNoLessThanOrEqualTo(Integer value) { this.ItemNoLessThanOrEqualTo = value; return this; } public Integer getItemNoNotEqualTo() { return ItemNoNotEqualTo; } public v_JIWA_JobCosting_EstimateAndActualLinesQuery setItemNoNotEqualTo(Integer value) { this.ItemNoNotEqualTo = value; return this; } public ArrayList getItemNoBetween() { return ItemNoBetween; } public v_JIWA_JobCosting_EstimateAndActualLinesQuery setItemNoBetween(ArrayList value) { this.ItemNoBetween = value; return this; } public ArrayList getItemNoIn() { return ItemNoIn; } public v_JIWA_JobCosting_EstimateAndActualLinesQuery setItemNoIn(ArrayList value) { this.ItemNoIn = value; return this; } public String getUnits() { return Units; } public v_JIWA_JobCosting_EstimateAndActualLinesQuery setUnits(String value) { this.Units = value; return this; } public String getUnitsStartsWith() { return UnitsStartsWith; } public v_JIWA_JobCosting_EstimateAndActualLinesQuery setUnitsStartsWith(String value) { this.UnitsStartsWith = value; return this; } public String getUnitsEndsWith() { return UnitsEndsWith; } public v_JIWA_JobCosting_EstimateAndActualLinesQuery setUnitsEndsWith(String value) { this.UnitsEndsWith = value; return this; } public String getUnitsContains() { return UnitsContains; } public v_JIWA_JobCosting_EstimateAndActualLinesQuery setUnitsContains(String value) { this.UnitsContains = value; return this; } public String getUnitsLike() { return UnitsLike; } public v_JIWA_JobCosting_EstimateAndActualLinesQuery setUnitsLike(String value) { this.UnitsLike = value; return this; } public ArrayList getUnitsBetween() { return UnitsBetween; } public v_JIWA_JobCosting_EstimateAndActualLinesQuery setUnitsBetween(ArrayList value) { this.UnitsBetween = value; return this; } public ArrayList getUnitsIn() { return UnitsIn; } public v_JIWA_JobCosting_EstimateAndActualLinesQuery setUnitsIn(ArrayList value) { this.UnitsIn = value; return this; } public Integer getComponentType() { return ComponentType; } public v_JIWA_JobCosting_EstimateAndActualLinesQuery setComponentType(Integer value) { this.ComponentType = value; return this; } public Integer getComponentTypeGreaterThanOrEqualTo() { return ComponentTypeGreaterThanOrEqualTo; } public v_JIWA_JobCosting_EstimateAndActualLinesQuery setComponentTypeGreaterThanOrEqualTo(Integer value) { this.ComponentTypeGreaterThanOrEqualTo = value; return this; } public Integer getComponentTypeGreaterThan() { return ComponentTypeGreaterThan; } public v_JIWA_JobCosting_EstimateAndActualLinesQuery setComponentTypeGreaterThan(Integer value) { this.ComponentTypeGreaterThan = value; return this; } public Integer getComponentTypeLessThan() { return ComponentTypeLessThan; } public v_JIWA_JobCosting_EstimateAndActualLinesQuery setComponentTypeLessThan(Integer value) { this.ComponentTypeLessThan = value; return this; } public Integer getComponentTypeLessThanOrEqualTo() { return ComponentTypeLessThanOrEqualTo; } public v_JIWA_JobCosting_EstimateAndActualLinesQuery setComponentTypeLessThanOrEqualTo(Integer value) { this.ComponentTypeLessThanOrEqualTo = value; return this; } public Integer getComponentTypeNotEqualTo() { return ComponentTypeNotEqualTo; } public v_JIWA_JobCosting_EstimateAndActualLinesQuery setComponentTypeNotEqualTo(Integer value) { this.ComponentTypeNotEqualTo = value; return this; } public ArrayList getComponentTypeBetween() { return ComponentTypeBetween; } public v_JIWA_JobCosting_EstimateAndActualLinesQuery setComponentTypeBetween(ArrayList value) { this.ComponentTypeBetween = value; return this; } public ArrayList getComponentTypeIn() { return ComponentTypeIn; } public v_JIWA_JobCosting_EstimateAndActualLinesQuery setComponentTypeIn(ArrayList value) { this.ComponentTypeIn = value; return this; } public Integer getIsEstimate() { return IsEstimate; } public v_JIWA_JobCosting_EstimateAndActualLinesQuery setIsEstimate(Integer value) { this.IsEstimate = value; return this; } public Integer getIsEstimateGreaterThanOrEqualTo() { return IsEstimateGreaterThanOrEqualTo; } public v_JIWA_JobCosting_EstimateAndActualLinesQuery setIsEstimateGreaterThanOrEqualTo(Integer value) { this.IsEstimateGreaterThanOrEqualTo = value; return this; } public Integer getIsEstimateGreaterThan() { return IsEstimateGreaterThan; } public v_JIWA_JobCosting_EstimateAndActualLinesQuery setIsEstimateGreaterThan(Integer value) { this.IsEstimateGreaterThan = value; return this; } public Integer getIsEstimateLessThan() { return IsEstimateLessThan; } public v_JIWA_JobCosting_EstimateAndActualLinesQuery setIsEstimateLessThan(Integer value) { this.IsEstimateLessThan = value; return this; } public Integer getIsEstimateLessThanOrEqualTo() { return IsEstimateLessThanOrEqualTo; } public v_JIWA_JobCosting_EstimateAndActualLinesQuery setIsEstimateLessThanOrEqualTo(Integer value) { this.IsEstimateLessThanOrEqualTo = value; return this; } public Integer getIsEstimateNotEqualTo() { return IsEstimateNotEqualTo; } public v_JIWA_JobCosting_EstimateAndActualLinesQuery setIsEstimateNotEqualTo(Integer value) { this.IsEstimateNotEqualTo = value; return this; } public ArrayList getIsEstimateBetween() { return IsEstimateBetween; } public v_JIWA_JobCosting_EstimateAndActualLinesQuery setIsEstimateBetween(ArrayList value) { this.IsEstimateBetween = value; return this; } public ArrayList getIsEstimateIn() { return IsEstimateIn; } public v_JIWA_JobCosting_EstimateAndActualLinesQuery setIsEstimateIn(ArrayList value) { this.IsEstimateIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class v_Jiwa_JobCosting_EstimateLinesQuery extends QueryDb implements IReturn> { public String JB_Estimates_RecID = null; public String JB_Estimates_RecIDStartsWith = null; public String JB_Estimates_RecIDEndsWith = null; public String JB_Estimates_RecIDContains = null; public String JB_Estimates_RecIDLike = null; public ArrayList JB_Estimates_RecIDBetween = null; public ArrayList JB_Estimates_RecIDIn = null; public String JB_JobStages_RecID = null; public String JB_JobStages_RecIDStartsWith = null; public String JB_JobStages_RecIDEndsWith = null; public String JB_JobStages_RecIDContains = null; public String JB_JobStages_RecIDLike = null; public ArrayList JB_JobStages_RecIDBetween = null; public ArrayList JB_JobStages_RecIDIn = null; public String ComponentID = null; public String ComponentIDStartsWith = null; public String ComponentIDEndsWith = null; public String ComponentIDContains = null; public String ComponentIDLike = null; public ArrayList ComponentIDBetween = null; public ArrayList ComponentIDIn = null; public String ComponentNo = null; public String ComponentNoStartsWith = null; public String ComponentNoEndsWith = null; public String ComponentNoContains = null; public String ComponentNoLike = null; public ArrayList ComponentNoBetween = null; public ArrayList ComponentNoIn = null; public String ComponentDescription = null; public String ComponentDescriptionStartsWith = null; public String ComponentDescriptionEndsWith = null; public String ComponentDescriptionContains = null; public String ComponentDescriptionLike = null; public ArrayList ComponentDescriptionBetween = null; public ArrayList ComponentDescriptionIn = null; public Date TransactionDate = null; public Date TransactionDateGreaterThanOrEqualTo = null; public Date TransactionDateGreaterThan = null; public Date TransactionDateLessThan = null; public Date TransactionDateLessThanOrEqualTo = null; public Date TransactionDateNotEqualTo = null; public ArrayList TransactionDateBetween = null; public ArrayList TransactionDateIn = null; public BigDecimal Quantity = null; public BigDecimal QuantityGreaterThanOrEqualTo = null; public BigDecimal QuantityGreaterThan = null; public BigDecimal QuantityLessThan = null; public BigDecimal QuantityLessThanOrEqualTo = null; public BigDecimal QuantityNotEqualTo = null; public ArrayList QuantityBetween = null; public ArrayList QuantityIn = null; public BigDecimal UnitCost = null; public BigDecimal UnitCostGreaterThanOrEqualTo = null; public BigDecimal UnitCostGreaterThan = null; public BigDecimal UnitCostLessThan = null; public BigDecimal UnitCostLessThanOrEqualTo = null; public BigDecimal UnitCostNotEqualTo = null; public ArrayList UnitCostBetween = null; public ArrayList UnitCostIn = null; public BigDecimal UnitCharge = null; public BigDecimal UnitChargeGreaterThanOrEqualTo = null; public BigDecimal UnitChargeGreaterThan = null; public BigDecimal UnitChargeLessThan = null; public BigDecimal UnitChargeLessThanOrEqualTo = null; public BigDecimal UnitChargeNotEqualTo = null; public ArrayList UnitChargeBetween = null; public ArrayList UnitChargeIn = null; public String Remark = null; public String RemarkStartsWith = null; public String RemarkEndsWith = null; public String RemarkContains = null; public String RemarkLike = null; public ArrayList RemarkBetween = null; public ArrayList RemarkIn = null; public Integer ItemNo = null; public Integer ItemNoGreaterThanOrEqualTo = null; public Integer ItemNoGreaterThan = null; public Integer ItemNoLessThan = null; public Integer ItemNoLessThanOrEqualTo = null; public Integer ItemNoNotEqualTo = null; public ArrayList ItemNoBetween = null; public ArrayList ItemNoIn = null; public String Units = null; public String UnitsStartsWith = null; public String UnitsEndsWith = null; public String UnitsContains = null; public String UnitsLike = null; public ArrayList UnitsBetween = null; public ArrayList UnitsIn = null; public Integer ComponentType = null; public Integer ComponentTypeGreaterThanOrEqualTo = null; public Integer ComponentTypeGreaterThan = null; public Integer ComponentTypeLessThan = null; public Integer ComponentTypeLessThanOrEqualTo = null; public Integer ComponentTypeNotEqualTo = null; public ArrayList ComponentTypeBetween = null; public ArrayList ComponentTypeIn = null; public String getJbEstimatesRecID() { return JB_Estimates_RecID; } public v_Jiwa_JobCosting_EstimateLinesQuery setJbEstimatesRecID(String value) { this.JB_Estimates_RecID = value; return this; } public String getJbEstimatesRecIDStartsWith() { return JB_Estimates_RecIDStartsWith; } public v_Jiwa_JobCosting_EstimateLinesQuery setJbEstimatesRecIDStartsWith(String value) { this.JB_Estimates_RecIDStartsWith = value; return this; } public String getJbEstimatesRecIDEndsWith() { return JB_Estimates_RecIDEndsWith; } public v_Jiwa_JobCosting_EstimateLinesQuery setJbEstimatesRecIDEndsWith(String value) { this.JB_Estimates_RecIDEndsWith = value; return this; } public String getJbEstimatesRecIDContains() { return JB_Estimates_RecIDContains; } public v_Jiwa_JobCosting_EstimateLinesQuery setJbEstimatesRecIDContains(String value) { this.JB_Estimates_RecIDContains = value; return this; } public String getJbEstimatesRecIDLike() { return JB_Estimates_RecIDLike; } public v_Jiwa_JobCosting_EstimateLinesQuery setJbEstimatesRecIDLike(String value) { this.JB_Estimates_RecIDLike = value; return this; } public ArrayList getJbEstimatesRecIDBetween() { return JB_Estimates_RecIDBetween; } public v_Jiwa_JobCosting_EstimateLinesQuery setJbEstimatesRecIDBetween(ArrayList value) { this.JB_Estimates_RecIDBetween = value; return this; } public ArrayList getJbEstimatesRecIDIn() { return JB_Estimates_RecIDIn; } public v_Jiwa_JobCosting_EstimateLinesQuery setJbEstimatesRecIDIn(ArrayList value) { this.JB_Estimates_RecIDIn = value; return this; } public String getJbJobStagesRecID() { return JB_JobStages_RecID; } public v_Jiwa_JobCosting_EstimateLinesQuery setJbJobStagesRecID(String value) { this.JB_JobStages_RecID = value; return this; } public String getJbJobStagesRecIDStartsWith() { return JB_JobStages_RecIDStartsWith; } public v_Jiwa_JobCosting_EstimateLinesQuery setJbJobStagesRecIDStartsWith(String value) { this.JB_JobStages_RecIDStartsWith = value; return this; } public String getJbJobStagesRecIDEndsWith() { return JB_JobStages_RecIDEndsWith; } public v_Jiwa_JobCosting_EstimateLinesQuery setJbJobStagesRecIDEndsWith(String value) { this.JB_JobStages_RecIDEndsWith = value; return this; } public String getJbJobStagesRecIDContains() { return JB_JobStages_RecIDContains; } public v_Jiwa_JobCosting_EstimateLinesQuery setJbJobStagesRecIDContains(String value) { this.JB_JobStages_RecIDContains = value; return this; } public String getJbJobStagesRecIDLike() { return JB_JobStages_RecIDLike; } public v_Jiwa_JobCosting_EstimateLinesQuery setJbJobStagesRecIDLike(String value) { this.JB_JobStages_RecIDLike = value; return this; } public ArrayList getJbJobStagesRecIDBetween() { return JB_JobStages_RecIDBetween; } public v_Jiwa_JobCosting_EstimateLinesQuery setJbJobStagesRecIDBetween(ArrayList value) { this.JB_JobStages_RecIDBetween = value; return this; } public ArrayList getJbJobStagesRecIDIn() { return JB_JobStages_RecIDIn; } public v_Jiwa_JobCosting_EstimateLinesQuery setJbJobStagesRecIDIn(ArrayList value) { this.JB_JobStages_RecIDIn = value; return this; } public String getComponentID() { return ComponentID; } public v_Jiwa_JobCosting_EstimateLinesQuery setComponentID(String value) { this.ComponentID = value; return this; } public String getComponentIDStartsWith() { return ComponentIDStartsWith; } public v_Jiwa_JobCosting_EstimateLinesQuery setComponentIDStartsWith(String value) { this.ComponentIDStartsWith = value; return this; } public String getComponentIDEndsWith() { return ComponentIDEndsWith; } public v_Jiwa_JobCosting_EstimateLinesQuery setComponentIDEndsWith(String value) { this.ComponentIDEndsWith = value; return this; } public String getComponentIDContains() { return ComponentIDContains; } public v_Jiwa_JobCosting_EstimateLinesQuery setComponentIDContains(String value) { this.ComponentIDContains = value; return this; } public String getComponentIDLike() { return ComponentIDLike; } public v_Jiwa_JobCosting_EstimateLinesQuery setComponentIDLike(String value) { this.ComponentIDLike = value; return this; } public ArrayList getComponentIDBetween() { return ComponentIDBetween; } public v_Jiwa_JobCosting_EstimateLinesQuery setComponentIDBetween(ArrayList value) { this.ComponentIDBetween = value; return this; } public ArrayList getComponentIDIn() { return ComponentIDIn; } public v_Jiwa_JobCosting_EstimateLinesQuery setComponentIDIn(ArrayList value) { this.ComponentIDIn = value; return this; } public String getComponentNo() { return ComponentNo; } public v_Jiwa_JobCosting_EstimateLinesQuery setComponentNo(String value) { this.ComponentNo = value; return this; } public String getComponentNoStartsWith() { return ComponentNoStartsWith; } public v_Jiwa_JobCosting_EstimateLinesQuery setComponentNoStartsWith(String value) { this.ComponentNoStartsWith = value; return this; } public String getComponentNoEndsWith() { return ComponentNoEndsWith; } public v_Jiwa_JobCosting_EstimateLinesQuery setComponentNoEndsWith(String value) { this.ComponentNoEndsWith = value; return this; } public String getComponentNoContains() { return ComponentNoContains; } public v_Jiwa_JobCosting_EstimateLinesQuery setComponentNoContains(String value) { this.ComponentNoContains = value; return this; } public String getComponentNoLike() { return ComponentNoLike; } public v_Jiwa_JobCosting_EstimateLinesQuery setComponentNoLike(String value) { this.ComponentNoLike = value; return this; } public ArrayList getComponentNoBetween() { return ComponentNoBetween; } public v_Jiwa_JobCosting_EstimateLinesQuery setComponentNoBetween(ArrayList value) { this.ComponentNoBetween = value; return this; } public ArrayList getComponentNoIn() { return ComponentNoIn; } public v_Jiwa_JobCosting_EstimateLinesQuery setComponentNoIn(ArrayList value) { this.ComponentNoIn = value; return this; } public String getComponentDescription() { return ComponentDescription; } public v_Jiwa_JobCosting_EstimateLinesQuery setComponentDescription(String value) { this.ComponentDescription = value; return this; } public String getComponentDescriptionStartsWith() { return ComponentDescriptionStartsWith; } public v_Jiwa_JobCosting_EstimateLinesQuery setComponentDescriptionStartsWith(String value) { this.ComponentDescriptionStartsWith = value; return this; } public String getComponentDescriptionEndsWith() { return ComponentDescriptionEndsWith; } public v_Jiwa_JobCosting_EstimateLinesQuery setComponentDescriptionEndsWith(String value) { this.ComponentDescriptionEndsWith = value; return this; } public String getComponentDescriptionContains() { return ComponentDescriptionContains; } public v_Jiwa_JobCosting_EstimateLinesQuery setComponentDescriptionContains(String value) { this.ComponentDescriptionContains = value; return this; } public String getComponentDescriptionLike() { return ComponentDescriptionLike; } public v_Jiwa_JobCosting_EstimateLinesQuery setComponentDescriptionLike(String value) { this.ComponentDescriptionLike = value; return this; } public ArrayList getComponentDescriptionBetween() { return ComponentDescriptionBetween; } public v_Jiwa_JobCosting_EstimateLinesQuery setComponentDescriptionBetween(ArrayList value) { this.ComponentDescriptionBetween = value; return this; } public ArrayList getComponentDescriptionIn() { return ComponentDescriptionIn; } public v_Jiwa_JobCosting_EstimateLinesQuery setComponentDescriptionIn(ArrayList value) { this.ComponentDescriptionIn = value; return this; } public Date getTransactionDate() { return TransactionDate; } public v_Jiwa_JobCosting_EstimateLinesQuery setTransactionDate(Date value) { this.TransactionDate = value; return this; } public Date getTransactionDateGreaterThanOrEqualTo() { return TransactionDateGreaterThanOrEqualTo; } public v_Jiwa_JobCosting_EstimateLinesQuery setTransactionDateGreaterThanOrEqualTo(Date value) { this.TransactionDateGreaterThanOrEqualTo = value; return this; } public Date getTransactionDateGreaterThan() { return TransactionDateGreaterThan; } public v_Jiwa_JobCosting_EstimateLinesQuery setTransactionDateGreaterThan(Date value) { this.TransactionDateGreaterThan = value; return this; } public Date getTransactionDateLessThan() { return TransactionDateLessThan; } public v_Jiwa_JobCosting_EstimateLinesQuery setTransactionDateLessThan(Date value) { this.TransactionDateLessThan = value; return this; } public Date getTransactionDateLessThanOrEqualTo() { return TransactionDateLessThanOrEqualTo; } public v_Jiwa_JobCosting_EstimateLinesQuery setTransactionDateLessThanOrEqualTo(Date value) { this.TransactionDateLessThanOrEqualTo = value; return this; } public Date getTransactionDateNotEqualTo() { return TransactionDateNotEqualTo; } public v_Jiwa_JobCosting_EstimateLinesQuery setTransactionDateNotEqualTo(Date value) { this.TransactionDateNotEqualTo = value; return this; } public ArrayList getTransactionDateBetween() { return TransactionDateBetween; } public v_Jiwa_JobCosting_EstimateLinesQuery setTransactionDateBetween(ArrayList value) { this.TransactionDateBetween = value; return this; } public ArrayList getTransactionDateIn() { return TransactionDateIn; } public v_Jiwa_JobCosting_EstimateLinesQuery setTransactionDateIn(ArrayList value) { this.TransactionDateIn = value; return this; } public BigDecimal getQuantity() { return Quantity; } public v_Jiwa_JobCosting_EstimateLinesQuery setQuantity(BigDecimal value) { this.Quantity = value; return this; } public BigDecimal getQuantityGreaterThanOrEqualTo() { return QuantityGreaterThanOrEqualTo; } public v_Jiwa_JobCosting_EstimateLinesQuery setQuantityGreaterThanOrEqualTo(BigDecimal value) { this.QuantityGreaterThanOrEqualTo = value; return this; } public BigDecimal getQuantityGreaterThan() { return QuantityGreaterThan; } public v_Jiwa_JobCosting_EstimateLinesQuery setQuantityGreaterThan(BigDecimal value) { this.QuantityGreaterThan = value; return this; } public BigDecimal getQuantityLessThan() { return QuantityLessThan; } public v_Jiwa_JobCosting_EstimateLinesQuery setQuantityLessThan(BigDecimal value) { this.QuantityLessThan = value; return this; } public BigDecimal getQuantityLessThanOrEqualTo() { return QuantityLessThanOrEqualTo; } public v_Jiwa_JobCosting_EstimateLinesQuery setQuantityLessThanOrEqualTo(BigDecimal value) { this.QuantityLessThanOrEqualTo = value; return this; } public BigDecimal getQuantityNotEqualTo() { return QuantityNotEqualTo; } public v_Jiwa_JobCosting_EstimateLinesQuery setQuantityNotEqualTo(BigDecimal value) { this.QuantityNotEqualTo = value; return this; } public ArrayList getQuantityBetween() { return QuantityBetween; } public v_Jiwa_JobCosting_EstimateLinesQuery setQuantityBetween(ArrayList value) { this.QuantityBetween = value; return this; } public ArrayList getQuantityIn() { return QuantityIn; } public v_Jiwa_JobCosting_EstimateLinesQuery setQuantityIn(ArrayList value) { this.QuantityIn = value; return this; } public BigDecimal getUnitCost() { return UnitCost; } public v_Jiwa_JobCosting_EstimateLinesQuery setUnitCost(BigDecimal value) { this.UnitCost = value; return this; } public BigDecimal getUnitCostGreaterThanOrEqualTo() { return UnitCostGreaterThanOrEqualTo; } public v_Jiwa_JobCosting_EstimateLinesQuery setUnitCostGreaterThanOrEqualTo(BigDecimal value) { this.UnitCostGreaterThanOrEqualTo = value; return this; } public BigDecimal getUnitCostGreaterThan() { return UnitCostGreaterThan; } public v_Jiwa_JobCosting_EstimateLinesQuery setUnitCostGreaterThan(BigDecimal value) { this.UnitCostGreaterThan = value; return this; } public BigDecimal getUnitCostLessThan() { return UnitCostLessThan; } public v_Jiwa_JobCosting_EstimateLinesQuery setUnitCostLessThan(BigDecimal value) { this.UnitCostLessThan = value; return this; } public BigDecimal getUnitCostLessThanOrEqualTo() { return UnitCostLessThanOrEqualTo; } public v_Jiwa_JobCosting_EstimateLinesQuery setUnitCostLessThanOrEqualTo(BigDecimal value) { this.UnitCostLessThanOrEqualTo = value; return this; } public BigDecimal getUnitCostNotEqualTo() { return UnitCostNotEqualTo; } public v_Jiwa_JobCosting_EstimateLinesQuery setUnitCostNotEqualTo(BigDecimal value) { this.UnitCostNotEqualTo = value; return this; } public ArrayList getUnitCostBetween() { return UnitCostBetween; } public v_Jiwa_JobCosting_EstimateLinesQuery setUnitCostBetween(ArrayList value) { this.UnitCostBetween = value; return this; } public ArrayList getUnitCostIn() { return UnitCostIn; } public v_Jiwa_JobCosting_EstimateLinesQuery setUnitCostIn(ArrayList value) { this.UnitCostIn = value; return this; } public BigDecimal getUnitCharge() { return UnitCharge; } public v_Jiwa_JobCosting_EstimateLinesQuery setUnitCharge(BigDecimal value) { this.UnitCharge = value; return this; } public BigDecimal getUnitChargeGreaterThanOrEqualTo() { return UnitChargeGreaterThanOrEqualTo; } public v_Jiwa_JobCosting_EstimateLinesQuery setUnitChargeGreaterThanOrEqualTo(BigDecimal value) { this.UnitChargeGreaterThanOrEqualTo = value; return this; } public BigDecimal getUnitChargeGreaterThan() { return UnitChargeGreaterThan; } public v_Jiwa_JobCosting_EstimateLinesQuery setUnitChargeGreaterThan(BigDecimal value) { this.UnitChargeGreaterThan = value; return this; } public BigDecimal getUnitChargeLessThan() { return UnitChargeLessThan; } public v_Jiwa_JobCosting_EstimateLinesQuery setUnitChargeLessThan(BigDecimal value) { this.UnitChargeLessThan = value; return this; } public BigDecimal getUnitChargeLessThanOrEqualTo() { return UnitChargeLessThanOrEqualTo; } public v_Jiwa_JobCosting_EstimateLinesQuery setUnitChargeLessThanOrEqualTo(BigDecimal value) { this.UnitChargeLessThanOrEqualTo = value; return this; } public BigDecimal getUnitChargeNotEqualTo() { return UnitChargeNotEqualTo; } public v_Jiwa_JobCosting_EstimateLinesQuery setUnitChargeNotEqualTo(BigDecimal value) { this.UnitChargeNotEqualTo = value; return this; } public ArrayList getUnitChargeBetween() { return UnitChargeBetween; } public v_Jiwa_JobCosting_EstimateLinesQuery setUnitChargeBetween(ArrayList value) { this.UnitChargeBetween = value; return this; } public ArrayList getUnitChargeIn() { return UnitChargeIn; } public v_Jiwa_JobCosting_EstimateLinesQuery setUnitChargeIn(ArrayList value) { this.UnitChargeIn = value; return this; } public String getRemark() { return Remark; } public v_Jiwa_JobCosting_EstimateLinesQuery setRemark(String value) { this.Remark = value; return this; } public String getRemarkStartsWith() { return RemarkStartsWith; } public v_Jiwa_JobCosting_EstimateLinesQuery setRemarkStartsWith(String value) { this.RemarkStartsWith = value; return this; } public String getRemarkEndsWith() { return RemarkEndsWith; } public v_Jiwa_JobCosting_EstimateLinesQuery setRemarkEndsWith(String value) { this.RemarkEndsWith = value; return this; } public String getRemarkContains() { return RemarkContains; } public v_Jiwa_JobCosting_EstimateLinesQuery setRemarkContains(String value) { this.RemarkContains = value; return this; } public String getRemarkLike() { return RemarkLike; } public v_Jiwa_JobCosting_EstimateLinesQuery setRemarkLike(String value) { this.RemarkLike = value; return this; } public ArrayList getRemarkBetween() { return RemarkBetween; } public v_Jiwa_JobCosting_EstimateLinesQuery setRemarkBetween(ArrayList value) { this.RemarkBetween = value; return this; } public ArrayList getRemarkIn() { return RemarkIn; } public v_Jiwa_JobCosting_EstimateLinesQuery setRemarkIn(ArrayList value) { this.RemarkIn = value; return this; } public Integer getItemNo() { return ItemNo; } public v_Jiwa_JobCosting_EstimateLinesQuery setItemNo(Integer value) { this.ItemNo = value; return this; } public Integer getItemNoGreaterThanOrEqualTo() { return ItemNoGreaterThanOrEqualTo; } public v_Jiwa_JobCosting_EstimateLinesQuery setItemNoGreaterThanOrEqualTo(Integer value) { this.ItemNoGreaterThanOrEqualTo = value; return this; } public Integer getItemNoGreaterThan() { return ItemNoGreaterThan; } public v_Jiwa_JobCosting_EstimateLinesQuery setItemNoGreaterThan(Integer value) { this.ItemNoGreaterThan = value; return this; } public Integer getItemNoLessThan() { return ItemNoLessThan; } public v_Jiwa_JobCosting_EstimateLinesQuery setItemNoLessThan(Integer value) { this.ItemNoLessThan = value; return this; } public Integer getItemNoLessThanOrEqualTo() { return ItemNoLessThanOrEqualTo; } public v_Jiwa_JobCosting_EstimateLinesQuery setItemNoLessThanOrEqualTo(Integer value) { this.ItemNoLessThanOrEqualTo = value; return this; } public Integer getItemNoNotEqualTo() { return ItemNoNotEqualTo; } public v_Jiwa_JobCosting_EstimateLinesQuery setItemNoNotEqualTo(Integer value) { this.ItemNoNotEqualTo = value; return this; } public ArrayList getItemNoBetween() { return ItemNoBetween; } public v_Jiwa_JobCosting_EstimateLinesQuery setItemNoBetween(ArrayList value) { this.ItemNoBetween = value; return this; } public ArrayList getItemNoIn() { return ItemNoIn; } public v_Jiwa_JobCosting_EstimateLinesQuery setItemNoIn(ArrayList value) { this.ItemNoIn = value; return this; } public String getUnits() { return Units; } public v_Jiwa_JobCosting_EstimateLinesQuery setUnits(String value) { this.Units = value; return this; } public String getUnitsStartsWith() { return UnitsStartsWith; } public v_Jiwa_JobCosting_EstimateLinesQuery setUnitsStartsWith(String value) { this.UnitsStartsWith = value; return this; } public String getUnitsEndsWith() { return UnitsEndsWith; } public v_Jiwa_JobCosting_EstimateLinesQuery setUnitsEndsWith(String value) { this.UnitsEndsWith = value; return this; } public String getUnitsContains() { return UnitsContains; } public v_Jiwa_JobCosting_EstimateLinesQuery setUnitsContains(String value) { this.UnitsContains = value; return this; } public String getUnitsLike() { return UnitsLike; } public v_Jiwa_JobCosting_EstimateLinesQuery setUnitsLike(String value) { this.UnitsLike = value; return this; } public ArrayList getUnitsBetween() { return UnitsBetween; } public v_Jiwa_JobCosting_EstimateLinesQuery setUnitsBetween(ArrayList value) { this.UnitsBetween = value; return this; } public ArrayList getUnitsIn() { return UnitsIn; } public v_Jiwa_JobCosting_EstimateLinesQuery setUnitsIn(ArrayList value) { this.UnitsIn = value; return this; } public Integer getComponentType() { return ComponentType; } public v_Jiwa_JobCosting_EstimateLinesQuery setComponentType(Integer value) { this.ComponentType = value; return this; } public Integer getComponentTypeGreaterThanOrEqualTo() { return ComponentTypeGreaterThanOrEqualTo; } public v_Jiwa_JobCosting_EstimateLinesQuery setComponentTypeGreaterThanOrEqualTo(Integer value) { this.ComponentTypeGreaterThanOrEqualTo = value; return this; } public Integer getComponentTypeGreaterThan() { return ComponentTypeGreaterThan; } public v_Jiwa_JobCosting_EstimateLinesQuery setComponentTypeGreaterThan(Integer value) { this.ComponentTypeGreaterThan = value; return this; } public Integer getComponentTypeLessThan() { return ComponentTypeLessThan; } public v_Jiwa_JobCosting_EstimateLinesQuery setComponentTypeLessThan(Integer value) { this.ComponentTypeLessThan = value; return this; } public Integer getComponentTypeLessThanOrEqualTo() { return ComponentTypeLessThanOrEqualTo; } public v_Jiwa_JobCosting_EstimateLinesQuery setComponentTypeLessThanOrEqualTo(Integer value) { this.ComponentTypeLessThanOrEqualTo = value; return this; } public Integer getComponentTypeNotEqualTo() { return ComponentTypeNotEqualTo; } public v_Jiwa_JobCosting_EstimateLinesQuery setComponentTypeNotEqualTo(Integer value) { this.ComponentTypeNotEqualTo = value; return this; } public ArrayList getComponentTypeBetween() { return ComponentTypeBetween; } public v_Jiwa_JobCosting_EstimateLinesQuery setComponentTypeBetween(ArrayList value) { this.ComponentTypeBetween = value; return this; } public ArrayList getComponentTypeIn() { return ComponentTypeIn; } public v_Jiwa_JobCosting_EstimateLinesQuery setComponentTypeIn(ArrayList value) { this.ComponentTypeIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class v_JIWA_JobCosting_EstimatesAndActualsQuery extends QueryDb implements IReturn> { public String RecID = null; public String RecIDStartsWith = null; public String RecIDEndsWith = null; public String RecIDContains = null; public String RecIDLike = null; public ArrayList RecIDBetween = null; public ArrayList RecIDIn = null; public String EstimateNo = null; public String EstimateNoStartsWith = null; public String EstimateNoEndsWith = null; public String EstimateNoContains = null; public String EstimateNoLike = null; public ArrayList EstimateNoBetween = null; public ArrayList EstimateNoIn = null; public String Description = null; public String DescriptionStartsWith = null; public String DescriptionEndsWith = null; public String DescriptionContains = null; public String DescriptionLike = null; public ArrayList DescriptionBetween = null; public ArrayList DescriptionIn = null; public String JB_Main_RecID = null; public String JB_Main_RecIDStartsWith = null; public String JB_Main_RecIDEndsWith = null; public String JB_Main_RecIDContains = null; public String JB_Main_RecIDLike = null; public ArrayList JB_Main_RecIDBetween = null; public ArrayList JB_Main_RecIDIn = null; public Date LastSavedDateTime = null; public Date LastSavedDateTimeGreaterThanOrEqualTo = null; public Date LastSavedDateTimeGreaterThan = null; public Date LastSavedDateTimeLessThan = null; public Date LastSavedDateTimeLessThanOrEqualTo = null; public Date LastSavedDateTimeNotEqualTo = null; public ArrayList LastSavedDateTimeBetween = null; public ArrayList LastSavedDateTimeIn = null; public String HR_Staff_RecID = null; public String HR_Staff_RecIDStartsWith = null; public String HR_Staff_RecIDEndsWith = null; public String HR_Staff_RecIDContains = null; public String HR_Staff_RecIDLike = null; public ArrayList HR_Staff_RecIDBetween = null; public ArrayList HR_Staff_RecIDIn = null; public String IN_Logical_RecID = null; public String IN_Logical_RecIDStartsWith = null; public String IN_Logical_RecIDEndsWith = null; public String IN_Logical_RecIDContains = null; public String IN_Logical_RecIDLike = null; public ArrayList IN_Logical_RecIDBetween = null; public ArrayList IN_Logical_RecIDIn = null; public Integer IsDefault = null; public Integer IsDefaultGreaterThanOrEqualTo = null; public Integer IsDefaultGreaterThan = null; public Integer IsDefaultLessThan = null; public Integer IsDefaultLessThanOrEqualTo = null; public Integer IsDefaultNotEqualTo = null; public ArrayList IsDefaultBetween = null; public ArrayList IsDefaultIn = null; public Integer Status = null; public Integer StatusGreaterThanOrEqualTo = null; public Integer StatusGreaterThan = null; public Integer StatusLessThan = null; public Integer StatusLessThanOrEqualTo = null; public Integer StatusNotEqualTo = null; public ArrayList StatusBetween = null; public ArrayList StatusIn = null; public Integer IsEstimate = null; public Integer IsEstimateGreaterThanOrEqualTo = null; public Integer IsEstimateGreaterThan = null; public Integer IsEstimateLessThan = null; public Integer IsEstimateLessThanOrEqualTo = null; public Integer IsEstimateNotEqualTo = null; public ArrayList IsEstimateBetween = null; public ArrayList IsEstimateIn = null; public String getRecID() { return RecID; } public v_JIWA_JobCosting_EstimatesAndActualsQuery setRecID(String value) { this.RecID = value; return this; } public String getRecIDStartsWith() { return RecIDStartsWith; } public v_JIWA_JobCosting_EstimatesAndActualsQuery setRecIDStartsWith(String value) { this.RecIDStartsWith = value; return this; } public String getRecIDEndsWith() { return RecIDEndsWith; } public v_JIWA_JobCosting_EstimatesAndActualsQuery setRecIDEndsWith(String value) { this.RecIDEndsWith = value; return this; } public String getRecIDContains() { return RecIDContains; } public v_JIWA_JobCosting_EstimatesAndActualsQuery setRecIDContains(String value) { this.RecIDContains = value; return this; } public String getRecIDLike() { return RecIDLike; } public v_JIWA_JobCosting_EstimatesAndActualsQuery setRecIDLike(String value) { this.RecIDLike = value; return this; } public ArrayList getRecIDBetween() { return RecIDBetween; } public v_JIWA_JobCosting_EstimatesAndActualsQuery setRecIDBetween(ArrayList value) { this.RecIDBetween = value; return this; } public ArrayList getRecIDIn() { return RecIDIn; } public v_JIWA_JobCosting_EstimatesAndActualsQuery setRecIDIn(ArrayList value) { this.RecIDIn = value; return this; } public String getEstimateNo() { return EstimateNo; } public v_JIWA_JobCosting_EstimatesAndActualsQuery setEstimateNo(String value) { this.EstimateNo = value; return this; } public String getEstimateNoStartsWith() { return EstimateNoStartsWith; } public v_JIWA_JobCosting_EstimatesAndActualsQuery setEstimateNoStartsWith(String value) { this.EstimateNoStartsWith = value; return this; } public String getEstimateNoEndsWith() { return EstimateNoEndsWith; } public v_JIWA_JobCosting_EstimatesAndActualsQuery setEstimateNoEndsWith(String value) { this.EstimateNoEndsWith = value; return this; } public String getEstimateNoContains() { return EstimateNoContains; } public v_JIWA_JobCosting_EstimatesAndActualsQuery setEstimateNoContains(String value) { this.EstimateNoContains = value; return this; } public String getEstimateNoLike() { return EstimateNoLike; } public v_JIWA_JobCosting_EstimatesAndActualsQuery setEstimateNoLike(String value) { this.EstimateNoLike = value; return this; } public ArrayList getEstimateNoBetween() { return EstimateNoBetween; } public v_JIWA_JobCosting_EstimatesAndActualsQuery setEstimateNoBetween(ArrayList value) { this.EstimateNoBetween = value; return this; } public ArrayList getEstimateNoIn() { return EstimateNoIn; } public v_JIWA_JobCosting_EstimatesAndActualsQuery setEstimateNoIn(ArrayList value) { this.EstimateNoIn = value; return this; } public String getDescription() { return Description; } public v_JIWA_JobCosting_EstimatesAndActualsQuery setDescription(String value) { this.Description = value; return this; } public String getDescriptionStartsWith() { return DescriptionStartsWith; } public v_JIWA_JobCosting_EstimatesAndActualsQuery setDescriptionStartsWith(String value) { this.DescriptionStartsWith = value; return this; } public String getDescriptionEndsWith() { return DescriptionEndsWith; } public v_JIWA_JobCosting_EstimatesAndActualsQuery setDescriptionEndsWith(String value) { this.DescriptionEndsWith = value; return this; } public String getDescriptionContains() { return DescriptionContains; } public v_JIWA_JobCosting_EstimatesAndActualsQuery setDescriptionContains(String value) { this.DescriptionContains = value; return this; } public String getDescriptionLike() { return DescriptionLike; } public v_JIWA_JobCosting_EstimatesAndActualsQuery setDescriptionLike(String value) { this.DescriptionLike = value; return this; } public ArrayList getDescriptionBetween() { return DescriptionBetween; } public v_JIWA_JobCosting_EstimatesAndActualsQuery setDescriptionBetween(ArrayList value) { this.DescriptionBetween = value; return this; } public ArrayList getDescriptionIn() { return DescriptionIn; } public v_JIWA_JobCosting_EstimatesAndActualsQuery setDescriptionIn(ArrayList value) { this.DescriptionIn = value; return this; } public String getJbMainRecID() { return JB_Main_RecID; } public v_JIWA_JobCosting_EstimatesAndActualsQuery setJbMainRecID(String value) { this.JB_Main_RecID = value; return this; } public String getJbMainRecIDStartsWith() { return JB_Main_RecIDStartsWith; } public v_JIWA_JobCosting_EstimatesAndActualsQuery setJbMainRecIDStartsWith(String value) { this.JB_Main_RecIDStartsWith = value; return this; } public String getJbMainRecIDEndsWith() { return JB_Main_RecIDEndsWith; } public v_JIWA_JobCosting_EstimatesAndActualsQuery setJbMainRecIDEndsWith(String value) { this.JB_Main_RecIDEndsWith = value; return this; } public String getJbMainRecIDContains() { return JB_Main_RecIDContains; } public v_JIWA_JobCosting_EstimatesAndActualsQuery setJbMainRecIDContains(String value) { this.JB_Main_RecIDContains = value; return this; } public String getJbMainRecIDLike() { return JB_Main_RecIDLike; } public v_JIWA_JobCosting_EstimatesAndActualsQuery setJbMainRecIDLike(String value) { this.JB_Main_RecIDLike = value; return this; } public ArrayList getJbMainRecIDBetween() { return JB_Main_RecIDBetween; } public v_JIWA_JobCosting_EstimatesAndActualsQuery setJbMainRecIDBetween(ArrayList value) { this.JB_Main_RecIDBetween = value; return this; } public ArrayList getJbMainRecIDIn() { return JB_Main_RecIDIn; } public v_JIWA_JobCosting_EstimatesAndActualsQuery setJbMainRecIDIn(ArrayList value) { this.JB_Main_RecIDIn = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public v_JIWA_JobCosting_EstimatesAndActualsQuery setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getLastSavedDateTimeGreaterThanOrEqualTo() { return LastSavedDateTimeGreaterThanOrEqualTo; } public v_JIWA_JobCosting_EstimatesAndActualsQuery setLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.LastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeGreaterThan() { return LastSavedDateTimeGreaterThan; } public v_JIWA_JobCosting_EstimatesAndActualsQuery setLastSavedDateTimeGreaterThan(Date value) { this.LastSavedDateTimeGreaterThan = value; return this; } public Date getLastSavedDateTimeLessThan() { return LastSavedDateTimeLessThan; } public v_JIWA_JobCosting_EstimatesAndActualsQuery setLastSavedDateTimeLessThan(Date value) { this.LastSavedDateTimeLessThan = value; return this; } public Date getLastSavedDateTimeLessThanOrEqualTo() { return LastSavedDateTimeLessThanOrEqualTo; } public v_JIWA_JobCosting_EstimatesAndActualsQuery setLastSavedDateTimeLessThanOrEqualTo(Date value) { this.LastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeNotEqualTo() { return LastSavedDateTimeNotEqualTo; } public v_JIWA_JobCosting_EstimatesAndActualsQuery setLastSavedDateTimeNotEqualTo(Date value) { this.LastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getLastSavedDateTimeBetween() { return LastSavedDateTimeBetween; } public v_JIWA_JobCosting_EstimatesAndActualsQuery setLastSavedDateTimeBetween(ArrayList value) { this.LastSavedDateTimeBetween = value; return this; } public ArrayList getLastSavedDateTimeIn() { return LastSavedDateTimeIn; } public v_JIWA_JobCosting_EstimatesAndActualsQuery setLastSavedDateTimeIn(ArrayList value) { this.LastSavedDateTimeIn = value; return this; } public String getHrStaffRecID() { return HR_Staff_RecID; } public v_JIWA_JobCosting_EstimatesAndActualsQuery setHrStaffRecID(String value) { this.HR_Staff_RecID = value; return this; } public String getHrStaffRecIDStartsWith() { return HR_Staff_RecIDStartsWith; } public v_JIWA_JobCosting_EstimatesAndActualsQuery setHrStaffRecIDStartsWith(String value) { this.HR_Staff_RecIDStartsWith = value; return this; } public String getHrStaffRecIDEndsWith() { return HR_Staff_RecIDEndsWith; } public v_JIWA_JobCosting_EstimatesAndActualsQuery setHrStaffRecIDEndsWith(String value) { this.HR_Staff_RecIDEndsWith = value; return this; } public String getHrStaffRecIDContains() { return HR_Staff_RecIDContains; } public v_JIWA_JobCosting_EstimatesAndActualsQuery setHrStaffRecIDContains(String value) { this.HR_Staff_RecIDContains = value; return this; } public String getHrStaffRecIDLike() { return HR_Staff_RecIDLike; } public v_JIWA_JobCosting_EstimatesAndActualsQuery setHrStaffRecIDLike(String value) { this.HR_Staff_RecIDLike = value; return this; } public ArrayList getHrStaffRecIDBetween() { return HR_Staff_RecIDBetween; } public v_JIWA_JobCosting_EstimatesAndActualsQuery setHrStaffRecIDBetween(ArrayList value) { this.HR_Staff_RecIDBetween = value; return this; } public ArrayList getHrStaffRecIDIn() { return HR_Staff_RecIDIn; } public v_JIWA_JobCosting_EstimatesAndActualsQuery setHrStaffRecIDIn(ArrayList value) { this.HR_Staff_RecIDIn = value; return this; } public String getInLogicalRecID() { return IN_Logical_RecID; } public v_JIWA_JobCosting_EstimatesAndActualsQuery setInLogicalRecID(String value) { this.IN_Logical_RecID = value; return this; } public String getInLogicalRecIDStartsWith() { return IN_Logical_RecIDStartsWith; } public v_JIWA_JobCosting_EstimatesAndActualsQuery setInLogicalRecIDStartsWith(String value) { this.IN_Logical_RecIDStartsWith = value; return this; } public String getInLogicalRecIDEndsWith() { return IN_Logical_RecIDEndsWith; } public v_JIWA_JobCosting_EstimatesAndActualsQuery setInLogicalRecIDEndsWith(String value) { this.IN_Logical_RecIDEndsWith = value; return this; } public String getInLogicalRecIDContains() { return IN_Logical_RecIDContains; } public v_JIWA_JobCosting_EstimatesAndActualsQuery setInLogicalRecIDContains(String value) { this.IN_Logical_RecIDContains = value; return this; } public String getInLogicalRecIDLike() { return IN_Logical_RecIDLike; } public v_JIWA_JobCosting_EstimatesAndActualsQuery setInLogicalRecIDLike(String value) { this.IN_Logical_RecIDLike = value; return this; } public ArrayList getInLogicalRecIDBetween() { return IN_Logical_RecIDBetween; } public v_JIWA_JobCosting_EstimatesAndActualsQuery setInLogicalRecIDBetween(ArrayList value) { this.IN_Logical_RecIDBetween = value; return this; } public ArrayList getInLogicalRecIDIn() { return IN_Logical_RecIDIn; } public v_JIWA_JobCosting_EstimatesAndActualsQuery setInLogicalRecIDIn(ArrayList value) { this.IN_Logical_RecIDIn = value; return this; } public Integer getIsDefault() { return IsDefault; } public v_JIWA_JobCosting_EstimatesAndActualsQuery setIsDefault(Integer value) { this.IsDefault = value; return this; } public Integer getIsDefaultGreaterThanOrEqualTo() { return IsDefaultGreaterThanOrEqualTo; } public v_JIWA_JobCosting_EstimatesAndActualsQuery setIsDefaultGreaterThanOrEqualTo(Integer value) { this.IsDefaultGreaterThanOrEqualTo = value; return this; } public Integer getIsDefaultGreaterThan() { return IsDefaultGreaterThan; } public v_JIWA_JobCosting_EstimatesAndActualsQuery setIsDefaultGreaterThan(Integer value) { this.IsDefaultGreaterThan = value; return this; } public Integer getIsDefaultLessThan() { return IsDefaultLessThan; } public v_JIWA_JobCosting_EstimatesAndActualsQuery setIsDefaultLessThan(Integer value) { this.IsDefaultLessThan = value; return this; } public Integer getIsDefaultLessThanOrEqualTo() { return IsDefaultLessThanOrEqualTo; } public v_JIWA_JobCosting_EstimatesAndActualsQuery setIsDefaultLessThanOrEqualTo(Integer value) { this.IsDefaultLessThanOrEqualTo = value; return this; } public Integer getIsDefaultNotEqualTo() { return IsDefaultNotEqualTo; } public v_JIWA_JobCosting_EstimatesAndActualsQuery setIsDefaultNotEqualTo(Integer value) { this.IsDefaultNotEqualTo = value; return this; } public ArrayList getIsDefaultBetween() { return IsDefaultBetween; } public v_JIWA_JobCosting_EstimatesAndActualsQuery setIsDefaultBetween(ArrayList value) { this.IsDefaultBetween = value; return this; } public ArrayList getIsDefaultIn() { return IsDefaultIn; } public v_JIWA_JobCosting_EstimatesAndActualsQuery setIsDefaultIn(ArrayList value) { this.IsDefaultIn = value; return this; } public Integer getStatus() { return Status; } public v_JIWA_JobCosting_EstimatesAndActualsQuery setStatus(Integer value) { this.Status = value; return this; } public Integer getStatusGreaterThanOrEqualTo() { return StatusGreaterThanOrEqualTo; } public v_JIWA_JobCosting_EstimatesAndActualsQuery setStatusGreaterThanOrEqualTo(Integer value) { this.StatusGreaterThanOrEqualTo = value; return this; } public Integer getStatusGreaterThan() { return StatusGreaterThan; } public v_JIWA_JobCosting_EstimatesAndActualsQuery setStatusGreaterThan(Integer value) { this.StatusGreaterThan = value; return this; } public Integer getStatusLessThan() { return StatusLessThan; } public v_JIWA_JobCosting_EstimatesAndActualsQuery setStatusLessThan(Integer value) { this.StatusLessThan = value; return this; } public Integer getStatusLessThanOrEqualTo() { return StatusLessThanOrEqualTo; } public v_JIWA_JobCosting_EstimatesAndActualsQuery setStatusLessThanOrEqualTo(Integer value) { this.StatusLessThanOrEqualTo = value; return this; } public Integer getStatusNotEqualTo() { return StatusNotEqualTo; } public v_JIWA_JobCosting_EstimatesAndActualsQuery setStatusNotEqualTo(Integer value) { this.StatusNotEqualTo = value; return this; } public ArrayList getStatusBetween() { return StatusBetween; } public v_JIWA_JobCosting_EstimatesAndActualsQuery setStatusBetween(ArrayList value) { this.StatusBetween = value; return this; } public ArrayList getStatusIn() { return StatusIn; } public v_JIWA_JobCosting_EstimatesAndActualsQuery setStatusIn(ArrayList value) { this.StatusIn = value; return this; } public Integer getIsEstimate() { return IsEstimate; } public v_JIWA_JobCosting_EstimatesAndActualsQuery setIsEstimate(Integer value) { this.IsEstimate = value; return this; } public Integer getIsEstimateGreaterThanOrEqualTo() { return IsEstimateGreaterThanOrEqualTo; } public v_JIWA_JobCosting_EstimatesAndActualsQuery setIsEstimateGreaterThanOrEqualTo(Integer value) { this.IsEstimateGreaterThanOrEqualTo = value; return this; } public Integer getIsEstimateGreaterThan() { return IsEstimateGreaterThan; } public v_JIWA_JobCosting_EstimatesAndActualsQuery setIsEstimateGreaterThan(Integer value) { this.IsEstimateGreaterThan = value; return this; } public Integer getIsEstimateLessThan() { return IsEstimateLessThan; } public v_JIWA_JobCosting_EstimatesAndActualsQuery setIsEstimateLessThan(Integer value) { this.IsEstimateLessThan = value; return this; } public Integer getIsEstimateLessThanOrEqualTo() { return IsEstimateLessThanOrEqualTo; } public v_JIWA_JobCosting_EstimatesAndActualsQuery setIsEstimateLessThanOrEqualTo(Integer value) { this.IsEstimateLessThanOrEqualTo = value; return this; } public Integer getIsEstimateNotEqualTo() { return IsEstimateNotEqualTo; } public v_JIWA_JobCosting_EstimatesAndActualsQuery setIsEstimateNotEqualTo(Integer value) { this.IsEstimateNotEqualTo = value; return this; } public ArrayList getIsEstimateBetween() { return IsEstimateBetween; } public v_JIWA_JobCosting_EstimatesAndActualsQuery setIsEstimateBetween(ArrayList value) { this.IsEstimateBetween = value; return this; } public ArrayList getIsEstimateIn() { return IsEstimateIn; } public v_JIWA_JobCosting_EstimatesAndActualsQuery setIsEstimateIn(ArrayList value) { this.IsEstimateIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class v_Jiwa_LicencesQuery extends QueryDb implements IReturn> { public String RecID = null; public String RecIDStartsWith = null; public String RecIDEndsWith = null; public String RecIDContains = null; public String RecIDLike = null; public ArrayList RecIDBetween = null; public ArrayList RecIDIn = null; public String ResourceID = null; public String ResourceIDStartsWith = null; public String ResourceIDEndsWith = null; public String ResourceIDContains = null; public String ResourceIDLike = null; public ArrayList ResourceIDBetween = null; public ArrayList ResourceIDIn = null; public String ResourceName = null; public String ResourceNameStartsWith = null; public String ResourceNameEndsWith = null; public String ResourceNameContains = null; public String ResourceNameLike = null; public ArrayList ResourceNameBetween = null; public ArrayList ResourceNameIn = null; public Date IssueDate = null; public Date IssueDateGreaterThanOrEqualTo = null; public Date IssueDateGreaterThan = null; public Date IssueDateLessThan = null; public Date IssueDateLessThanOrEqualTo = null; public Date IssueDateNotEqualTo = null; public ArrayList IssueDateBetween = null; public ArrayList IssueDateIn = null; public String Scope = null; public String ScopeStartsWith = null; public String ScopeEndsWith = null; public String ScopeContains = null; public String ScopeLike = null; public ArrayList ScopeBetween = null; public ArrayList ScopeIn = null; public String Note = null; public String NoteStartsWith = null; public String NoteEndsWith = null; public String NoteContains = null; public String NoteLike = null; public ArrayList NoteBetween = null; public ArrayList NoteIn = null; public Date CommenceDate = null; public Date CommenceDateGreaterThanOrEqualTo = null; public Date CommenceDateGreaterThan = null; public Date CommenceDateLessThan = null; public Date CommenceDateLessThanOrEqualTo = null; public Date CommenceDateNotEqualTo = null; public ArrayList CommenceDateBetween = null; public ArrayList CommenceDateIn = null; public Date ExpiryDate = null; public Date ExpiryDateGreaterThanOrEqualTo = null; public Date ExpiryDateGreaterThan = null; public Date ExpiryDateLessThan = null; public Date ExpiryDateLessThanOrEqualTo = null; public Date ExpiryDateNotEqualTo = null; public ArrayList ExpiryDateBetween = null; public ArrayList ExpiryDateIn = null; public Integer CALs = null; public Integer CALsGreaterThanOrEqualTo = null; public Integer CALsGreaterThan = null; public Integer CALsLessThan = null; public Integer CALsLessThanOrEqualTo = null; public Integer CALsNotEqualTo = null; public ArrayList CALsBetween = null; public ArrayList CALsIn = null; public Integer Used = null; public Integer UsedGreaterThanOrEqualTo = null; public Integer UsedGreaterThan = null; public Integer UsedLessThan = null; public Integer UsedLessThanOrEqualTo = null; public Integer UsedNotEqualTo = null; public ArrayList UsedBetween = null; public ArrayList UsedIn = null; public Integer Unused = null; public Integer UnusedGreaterThanOrEqualTo = null; public Integer UnusedGreaterThan = null; public Integer UnusedLessThan = null; public Integer UnusedLessThanOrEqualTo = null; public Integer UnusedNotEqualTo = null; public ArrayList UnusedBetween = null; public ArrayList UnusedIn = null; public String Version = null; public String VersionStartsWith = null; public String VersionEndsWith = null; public String VersionContains = null; public String VersionLike = null; public ArrayList VersionBetween = null; public ArrayList VersionIn = null; public String Signature = null; public String SignatureStartsWith = null; public String SignatureEndsWith = null; public String SignatureContains = null; public String SignatureLike = null; public ArrayList SignatureBetween = null; public ArrayList SignatureIn = null; public String getRecID() { return RecID; } public v_Jiwa_LicencesQuery setRecID(String value) { this.RecID = value; return this; } public String getRecIDStartsWith() { return RecIDStartsWith; } public v_Jiwa_LicencesQuery setRecIDStartsWith(String value) { this.RecIDStartsWith = value; return this; } public String getRecIDEndsWith() { return RecIDEndsWith; } public v_Jiwa_LicencesQuery setRecIDEndsWith(String value) { this.RecIDEndsWith = value; return this; } public String getRecIDContains() { return RecIDContains; } public v_Jiwa_LicencesQuery setRecIDContains(String value) { this.RecIDContains = value; return this; } public String getRecIDLike() { return RecIDLike; } public v_Jiwa_LicencesQuery setRecIDLike(String value) { this.RecIDLike = value; return this; } public ArrayList getRecIDBetween() { return RecIDBetween; } public v_Jiwa_LicencesQuery setRecIDBetween(ArrayList value) { this.RecIDBetween = value; return this; } public ArrayList getRecIDIn() { return RecIDIn; } public v_Jiwa_LicencesQuery setRecIDIn(ArrayList value) { this.RecIDIn = value; return this; } public String getResourceID() { return ResourceID; } public v_Jiwa_LicencesQuery setResourceID(String value) { this.ResourceID = value; return this; } public String getResourceIDStartsWith() { return ResourceIDStartsWith; } public v_Jiwa_LicencesQuery setResourceIDStartsWith(String value) { this.ResourceIDStartsWith = value; return this; } public String getResourceIDEndsWith() { return ResourceIDEndsWith; } public v_Jiwa_LicencesQuery setResourceIDEndsWith(String value) { this.ResourceIDEndsWith = value; return this; } public String getResourceIDContains() { return ResourceIDContains; } public v_Jiwa_LicencesQuery setResourceIDContains(String value) { this.ResourceIDContains = value; return this; } public String getResourceIDLike() { return ResourceIDLike; } public v_Jiwa_LicencesQuery setResourceIDLike(String value) { this.ResourceIDLike = value; return this; } public ArrayList getResourceIDBetween() { return ResourceIDBetween; } public v_Jiwa_LicencesQuery setResourceIDBetween(ArrayList value) { this.ResourceIDBetween = value; return this; } public ArrayList getResourceIDIn() { return ResourceIDIn; } public v_Jiwa_LicencesQuery setResourceIDIn(ArrayList value) { this.ResourceIDIn = value; return this; } public String getResourceName() { return ResourceName; } public v_Jiwa_LicencesQuery setResourceName(String value) { this.ResourceName = value; return this; } public String getResourceNameStartsWith() { return ResourceNameStartsWith; } public v_Jiwa_LicencesQuery setResourceNameStartsWith(String value) { this.ResourceNameStartsWith = value; return this; } public String getResourceNameEndsWith() { return ResourceNameEndsWith; } public v_Jiwa_LicencesQuery setResourceNameEndsWith(String value) { this.ResourceNameEndsWith = value; return this; } public String getResourceNameContains() { return ResourceNameContains; } public v_Jiwa_LicencesQuery setResourceNameContains(String value) { this.ResourceNameContains = value; return this; } public String getResourceNameLike() { return ResourceNameLike; } public v_Jiwa_LicencesQuery setResourceNameLike(String value) { this.ResourceNameLike = value; return this; } public ArrayList getResourceNameBetween() { return ResourceNameBetween; } public v_Jiwa_LicencesQuery setResourceNameBetween(ArrayList value) { this.ResourceNameBetween = value; return this; } public ArrayList getResourceNameIn() { return ResourceNameIn; } public v_Jiwa_LicencesQuery setResourceNameIn(ArrayList value) { this.ResourceNameIn = value; return this; } public Date getIssueDate() { return IssueDate; } public v_Jiwa_LicencesQuery setIssueDate(Date value) { this.IssueDate = value; return this; } public Date getIssueDateGreaterThanOrEqualTo() { return IssueDateGreaterThanOrEqualTo; } public v_Jiwa_LicencesQuery setIssueDateGreaterThanOrEqualTo(Date value) { this.IssueDateGreaterThanOrEqualTo = value; return this; } public Date getIssueDateGreaterThan() { return IssueDateGreaterThan; } public v_Jiwa_LicencesQuery setIssueDateGreaterThan(Date value) { this.IssueDateGreaterThan = value; return this; } public Date getIssueDateLessThan() { return IssueDateLessThan; } public v_Jiwa_LicencesQuery setIssueDateLessThan(Date value) { this.IssueDateLessThan = value; return this; } public Date getIssueDateLessThanOrEqualTo() { return IssueDateLessThanOrEqualTo; } public v_Jiwa_LicencesQuery setIssueDateLessThanOrEqualTo(Date value) { this.IssueDateLessThanOrEqualTo = value; return this; } public Date getIssueDateNotEqualTo() { return IssueDateNotEqualTo; } public v_Jiwa_LicencesQuery setIssueDateNotEqualTo(Date value) { this.IssueDateNotEqualTo = value; return this; } public ArrayList getIssueDateBetween() { return IssueDateBetween; } public v_Jiwa_LicencesQuery setIssueDateBetween(ArrayList value) { this.IssueDateBetween = value; return this; } public ArrayList getIssueDateIn() { return IssueDateIn; } public v_Jiwa_LicencesQuery setIssueDateIn(ArrayList value) { this.IssueDateIn = value; return this; } public String getScope() { return Scope; } public v_Jiwa_LicencesQuery setScope(String value) { this.Scope = value; return this; } public String getScopeStartsWith() { return ScopeStartsWith; } public v_Jiwa_LicencesQuery setScopeStartsWith(String value) { this.ScopeStartsWith = value; return this; } public String getScopeEndsWith() { return ScopeEndsWith; } public v_Jiwa_LicencesQuery setScopeEndsWith(String value) { this.ScopeEndsWith = value; return this; } public String getScopeContains() { return ScopeContains; } public v_Jiwa_LicencesQuery setScopeContains(String value) { this.ScopeContains = value; return this; } public String getScopeLike() { return ScopeLike; } public v_Jiwa_LicencesQuery setScopeLike(String value) { this.ScopeLike = value; return this; } public ArrayList getScopeBetween() { return ScopeBetween; } public v_Jiwa_LicencesQuery setScopeBetween(ArrayList value) { this.ScopeBetween = value; return this; } public ArrayList getScopeIn() { return ScopeIn; } public v_Jiwa_LicencesQuery setScopeIn(ArrayList value) { this.ScopeIn = value; return this; } public String getNote() { return Note; } public v_Jiwa_LicencesQuery setNote(String value) { this.Note = value; return this; } public String getNoteStartsWith() { return NoteStartsWith; } public v_Jiwa_LicencesQuery setNoteStartsWith(String value) { this.NoteStartsWith = value; return this; } public String getNoteEndsWith() { return NoteEndsWith; } public v_Jiwa_LicencesQuery setNoteEndsWith(String value) { this.NoteEndsWith = value; return this; } public String getNoteContains() { return NoteContains; } public v_Jiwa_LicencesQuery setNoteContains(String value) { this.NoteContains = value; return this; } public String getNoteLike() { return NoteLike; } public v_Jiwa_LicencesQuery setNoteLike(String value) { this.NoteLike = value; return this; } public ArrayList getNoteBetween() { return NoteBetween; } public v_Jiwa_LicencesQuery setNoteBetween(ArrayList value) { this.NoteBetween = value; return this; } public ArrayList getNoteIn() { return NoteIn; } public v_Jiwa_LicencesQuery setNoteIn(ArrayList value) { this.NoteIn = value; return this; } public Date getCommenceDate() { return CommenceDate; } public v_Jiwa_LicencesQuery setCommenceDate(Date value) { this.CommenceDate = value; return this; } public Date getCommenceDateGreaterThanOrEqualTo() { return CommenceDateGreaterThanOrEqualTo; } public v_Jiwa_LicencesQuery setCommenceDateGreaterThanOrEqualTo(Date value) { this.CommenceDateGreaterThanOrEqualTo = value; return this; } public Date getCommenceDateGreaterThan() { return CommenceDateGreaterThan; } public v_Jiwa_LicencesQuery setCommenceDateGreaterThan(Date value) { this.CommenceDateGreaterThan = value; return this; } public Date getCommenceDateLessThan() { return CommenceDateLessThan; } public v_Jiwa_LicencesQuery setCommenceDateLessThan(Date value) { this.CommenceDateLessThan = value; return this; } public Date getCommenceDateLessThanOrEqualTo() { return CommenceDateLessThanOrEqualTo; } public v_Jiwa_LicencesQuery setCommenceDateLessThanOrEqualTo(Date value) { this.CommenceDateLessThanOrEqualTo = value; return this; } public Date getCommenceDateNotEqualTo() { return CommenceDateNotEqualTo; } public v_Jiwa_LicencesQuery setCommenceDateNotEqualTo(Date value) { this.CommenceDateNotEqualTo = value; return this; } public ArrayList getCommenceDateBetween() { return CommenceDateBetween; } public v_Jiwa_LicencesQuery setCommenceDateBetween(ArrayList value) { this.CommenceDateBetween = value; return this; } public ArrayList getCommenceDateIn() { return CommenceDateIn; } public v_Jiwa_LicencesQuery setCommenceDateIn(ArrayList value) { this.CommenceDateIn = value; return this; } public Date getExpiryDate() { return ExpiryDate; } public v_Jiwa_LicencesQuery setExpiryDate(Date value) { this.ExpiryDate = value; return this; } public Date getExpiryDateGreaterThanOrEqualTo() { return ExpiryDateGreaterThanOrEqualTo; } public v_Jiwa_LicencesQuery setExpiryDateGreaterThanOrEqualTo(Date value) { this.ExpiryDateGreaterThanOrEqualTo = value; return this; } public Date getExpiryDateGreaterThan() { return ExpiryDateGreaterThan; } public v_Jiwa_LicencesQuery setExpiryDateGreaterThan(Date value) { this.ExpiryDateGreaterThan = value; return this; } public Date getExpiryDateLessThan() { return ExpiryDateLessThan; } public v_Jiwa_LicencesQuery setExpiryDateLessThan(Date value) { this.ExpiryDateLessThan = value; return this; } public Date getExpiryDateLessThanOrEqualTo() { return ExpiryDateLessThanOrEqualTo; } public v_Jiwa_LicencesQuery setExpiryDateLessThanOrEqualTo(Date value) { this.ExpiryDateLessThanOrEqualTo = value; return this; } public Date getExpiryDateNotEqualTo() { return ExpiryDateNotEqualTo; } public v_Jiwa_LicencesQuery setExpiryDateNotEqualTo(Date value) { this.ExpiryDateNotEqualTo = value; return this; } public ArrayList getExpiryDateBetween() { return ExpiryDateBetween; } public v_Jiwa_LicencesQuery setExpiryDateBetween(ArrayList value) { this.ExpiryDateBetween = value; return this; } public ArrayList getExpiryDateIn() { return ExpiryDateIn; } public v_Jiwa_LicencesQuery setExpiryDateIn(ArrayList value) { this.ExpiryDateIn = value; return this; } public Integer getCaLs() { return CALs; } public v_Jiwa_LicencesQuery setCaLs(Integer value) { this.CALs = value; return this; } public Integer getCaLsGreaterThanOrEqualTo() { return CALsGreaterThanOrEqualTo; } public v_Jiwa_LicencesQuery setCaLsGreaterThanOrEqualTo(Integer value) { this.CALsGreaterThanOrEqualTo = value; return this; } public Integer getCaLsGreaterThan() { return CALsGreaterThan; } public v_Jiwa_LicencesQuery setCaLsGreaterThan(Integer value) { this.CALsGreaterThan = value; return this; } public Integer getCaLsLessThan() { return CALsLessThan; } public v_Jiwa_LicencesQuery setCaLsLessThan(Integer value) { this.CALsLessThan = value; return this; } public Integer getCaLsLessThanOrEqualTo() { return CALsLessThanOrEqualTo; } public v_Jiwa_LicencesQuery setCaLsLessThanOrEqualTo(Integer value) { this.CALsLessThanOrEqualTo = value; return this; } public Integer getCaLsNotEqualTo() { return CALsNotEqualTo; } public v_Jiwa_LicencesQuery setCaLsNotEqualTo(Integer value) { this.CALsNotEqualTo = value; return this; } public ArrayList getCaLsBetween() { return CALsBetween; } public v_Jiwa_LicencesQuery setCaLsBetween(ArrayList value) { this.CALsBetween = value; return this; } public ArrayList getCaLsIn() { return CALsIn; } public v_Jiwa_LicencesQuery setCaLsIn(ArrayList value) { this.CALsIn = value; return this; } public Integer getUsed() { return Used; } public v_Jiwa_LicencesQuery setUsed(Integer value) { this.Used = value; return this; } public Integer getUsedGreaterThanOrEqualTo() { return UsedGreaterThanOrEqualTo; } public v_Jiwa_LicencesQuery setUsedGreaterThanOrEqualTo(Integer value) { this.UsedGreaterThanOrEqualTo = value; return this; } public Integer getUsedGreaterThan() { return UsedGreaterThan; } public v_Jiwa_LicencesQuery setUsedGreaterThan(Integer value) { this.UsedGreaterThan = value; return this; } public Integer getUsedLessThan() { return UsedLessThan; } public v_Jiwa_LicencesQuery setUsedLessThan(Integer value) { this.UsedLessThan = value; return this; } public Integer getUsedLessThanOrEqualTo() { return UsedLessThanOrEqualTo; } public v_Jiwa_LicencesQuery setUsedLessThanOrEqualTo(Integer value) { this.UsedLessThanOrEqualTo = value; return this; } public Integer getUsedNotEqualTo() { return UsedNotEqualTo; } public v_Jiwa_LicencesQuery setUsedNotEqualTo(Integer value) { this.UsedNotEqualTo = value; return this; } public ArrayList getUsedBetween() { return UsedBetween; } public v_Jiwa_LicencesQuery setUsedBetween(ArrayList value) { this.UsedBetween = value; return this; } public ArrayList getUsedIn() { return UsedIn; } public v_Jiwa_LicencesQuery setUsedIn(ArrayList value) { this.UsedIn = value; return this; } public Integer getUnused() { return Unused; } public v_Jiwa_LicencesQuery setUnused(Integer value) { this.Unused = value; return this; } public Integer getUnusedGreaterThanOrEqualTo() { return UnusedGreaterThanOrEqualTo; } public v_Jiwa_LicencesQuery setUnusedGreaterThanOrEqualTo(Integer value) { this.UnusedGreaterThanOrEqualTo = value; return this; } public Integer getUnusedGreaterThan() { return UnusedGreaterThan; } public v_Jiwa_LicencesQuery setUnusedGreaterThan(Integer value) { this.UnusedGreaterThan = value; return this; } public Integer getUnusedLessThan() { return UnusedLessThan; } public v_Jiwa_LicencesQuery setUnusedLessThan(Integer value) { this.UnusedLessThan = value; return this; } public Integer getUnusedLessThanOrEqualTo() { return UnusedLessThanOrEqualTo; } public v_Jiwa_LicencesQuery setUnusedLessThanOrEqualTo(Integer value) { this.UnusedLessThanOrEqualTo = value; return this; } public Integer getUnusedNotEqualTo() { return UnusedNotEqualTo; } public v_Jiwa_LicencesQuery setUnusedNotEqualTo(Integer value) { this.UnusedNotEqualTo = value; return this; } public ArrayList getUnusedBetween() { return UnusedBetween; } public v_Jiwa_LicencesQuery setUnusedBetween(ArrayList value) { this.UnusedBetween = value; return this; } public ArrayList getUnusedIn() { return UnusedIn; } public v_Jiwa_LicencesQuery setUnusedIn(ArrayList value) { this.UnusedIn = value; return this; } public String getVersion() { return Version; } public v_Jiwa_LicencesQuery setVersion(String value) { this.Version = value; return this; } public String getVersionStartsWith() { return VersionStartsWith; } public v_Jiwa_LicencesQuery setVersionStartsWith(String value) { this.VersionStartsWith = value; return this; } public String getVersionEndsWith() { return VersionEndsWith; } public v_Jiwa_LicencesQuery setVersionEndsWith(String value) { this.VersionEndsWith = value; return this; } public String getVersionContains() { return VersionContains; } public v_Jiwa_LicencesQuery setVersionContains(String value) { this.VersionContains = value; return this; } public String getVersionLike() { return VersionLike; } public v_Jiwa_LicencesQuery setVersionLike(String value) { this.VersionLike = value; return this; } public ArrayList getVersionBetween() { return VersionBetween; } public v_Jiwa_LicencesQuery setVersionBetween(ArrayList value) { this.VersionBetween = value; return this; } public ArrayList getVersionIn() { return VersionIn; } public v_Jiwa_LicencesQuery setVersionIn(ArrayList value) { this.VersionIn = value; return this; } public String getSignature() { return Signature; } public v_Jiwa_LicencesQuery setSignature(String value) { this.Signature = value; return this; } public String getSignatureStartsWith() { return SignatureStartsWith; } public v_Jiwa_LicencesQuery setSignatureStartsWith(String value) { this.SignatureStartsWith = value; return this; } public String getSignatureEndsWith() { return SignatureEndsWith; } public v_Jiwa_LicencesQuery setSignatureEndsWith(String value) { this.SignatureEndsWith = value; return this; } public String getSignatureContains() { return SignatureContains; } public v_Jiwa_LicencesQuery setSignatureContains(String value) { this.SignatureContains = value; return this; } public String getSignatureLike() { return SignatureLike; } public v_Jiwa_LicencesQuery setSignatureLike(String value) { this.SignatureLike = value; return this; } public ArrayList getSignatureBetween() { return SignatureBetween; } public v_Jiwa_LicencesQuery setSignatureBetween(ArrayList value) { this.SignatureBetween = value; return this; } public ArrayList getSignatureIn() { return SignatureIn; } public v_Jiwa_LicencesQuery setSignatureIn(ArrayList value) { this.SignatureIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class v_JIWA_PurchaseOrders_DeliveryNotesQuery extends QueryDb implements IReturn> { public String PurchaseOrderID = null; public String PurchaseOrderIDStartsWith = null; public String PurchaseOrderIDEndsWith = null; public String PurchaseOrderIDContains = null; public String PurchaseOrderIDLike = null; public ArrayList PurchaseOrderIDBetween = null; public ArrayList PurchaseOrderIDIn = null; public String DeliveryNote = null; public String DeliveryNoteStartsWith = null; public String DeliveryNoteEndsWith = null; public String DeliveryNoteContains = null; public String DeliveryNoteLike = null; public ArrayList DeliveryNoteBetween = null; public ArrayList DeliveryNoteIn = null; public String getPurchaseOrderID() { return PurchaseOrderID; } public v_JIWA_PurchaseOrders_DeliveryNotesQuery setPurchaseOrderID(String value) { this.PurchaseOrderID = value; return this; } public String getPurchaseOrderIDStartsWith() { return PurchaseOrderIDStartsWith; } public v_JIWA_PurchaseOrders_DeliveryNotesQuery setPurchaseOrderIDStartsWith(String value) { this.PurchaseOrderIDStartsWith = value; return this; } public String getPurchaseOrderIDEndsWith() { return PurchaseOrderIDEndsWith; } public v_JIWA_PurchaseOrders_DeliveryNotesQuery setPurchaseOrderIDEndsWith(String value) { this.PurchaseOrderIDEndsWith = value; return this; } public String getPurchaseOrderIDContains() { return PurchaseOrderIDContains; } public v_JIWA_PurchaseOrders_DeliveryNotesQuery setPurchaseOrderIDContains(String value) { this.PurchaseOrderIDContains = value; return this; } public String getPurchaseOrderIDLike() { return PurchaseOrderIDLike; } public v_JIWA_PurchaseOrders_DeliveryNotesQuery setPurchaseOrderIDLike(String value) { this.PurchaseOrderIDLike = value; return this; } public ArrayList getPurchaseOrderIDBetween() { return PurchaseOrderIDBetween; } public v_JIWA_PurchaseOrders_DeliveryNotesQuery setPurchaseOrderIDBetween(ArrayList value) { this.PurchaseOrderIDBetween = value; return this; } public ArrayList getPurchaseOrderIDIn() { return PurchaseOrderIDIn; } public v_JIWA_PurchaseOrders_DeliveryNotesQuery setPurchaseOrderIDIn(ArrayList value) { this.PurchaseOrderIDIn = value; return this; } public String getDeliveryNote() { return DeliveryNote; } public v_JIWA_PurchaseOrders_DeliveryNotesQuery setDeliveryNote(String value) { this.DeliveryNote = value; return this; } public String getDeliveryNoteStartsWith() { return DeliveryNoteStartsWith; } public v_JIWA_PurchaseOrders_DeliveryNotesQuery setDeliveryNoteStartsWith(String value) { this.DeliveryNoteStartsWith = value; return this; } public String getDeliveryNoteEndsWith() { return DeliveryNoteEndsWith; } public v_JIWA_PurchaseOrders_DeliveryNotesQuery setDeliveryNoteEndsWith(String value) { this.DeliveryNoteEndsWith = value; return this; } public String getDeliveryNoteContains() { return DeliveryNoteContains; } public v_JIWA_PurchaseOrders_DeliveryNotesQuery setDeliveryNoteContains(String value) { this.DeliveryNoteContains = value; return this; } public String getDeliveryNoteLike() { return DeliveryNoteLike; } public v_JIWA_PurchaseOrders_DeliveryNotesQuery setDeliveryNoteLike(String value) { this.DeliveryNoteLike = value; return this; } public ArrayList getDeliveryNoteBetween() { return DeliveryNoteBetween; } public v_JIWA_PurchaseOrders_DeliveryNotesQuery setDeliveryNoteBetween(ArrayList value) { this.DeliveryNoteBetween = value; return this; } public ArrayList getDeliveryNoteIn() { return DeliveryNoteIn; } public v_JIWA_PurchaseOrders_DeliveryNotesQuery setDeliveryNoteIn(ArrayList value) { this.DeliveryNoteIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class v_JIWA_PurchaseOrders_UOMQuery extends QueryDb implements IReturn> { public String OrderLineID = null; public String OrderLineIDStartsWith = null; public String OrderLineIDEndsWith = null; public String OrderLineIDContains = null; public String OrderLineIDLike = null; public ArrayList OrderLineIDBetween = null; public ArrayList OrderLineIDIn = null; public BigDecimal QtyUom = null; public BigDecimal QtyUomGreaterThanOrEqualTo = null; public BigDecimal QtyUomGreaterThan = null; public BigDecimal QtyUomLessThan = null; public BigDecimal QtyUomLessThanOrEqualTo = null; public BigDecimal QtyUomNotEqualTo = null; public ArrayList QtyUomBetween = null; public ArrayList QtyUomIn = null; public String Name = null; public String NameStartsWith = null; public String NameEndsWith = null; public String NameContains = null; public String NameLike = null; public ArrayList NameBetween = null; public ArrayList NameIn = null; public String getOrderLineID() { return OrderLineID; } public v_JIWA_PurchaseOrders_UOMQuery setOrderLineID(String value) { this.OrderLineID = value; return this; } public String getOrderLineIDStartsWith() { return OrderLineIDStartsWith; } public v_JIWA_PurchaseOrders_UOMQuery setOrderLineIDStartsWith(String value) { this.OrderLineIDStartsWith = value; return this; } public String getOrderLineIDEndsWith() { return OrderLineIDEndsWith; } public v_JIWA_PurchaseOrders_UOMQuery setOrderLineIDEndsWith(String value) { this.OrderLineIDEndsWith = value; return this; } public String getOrderLineIDContains() { return OrderLineIDContains; } public v_JIWA_PurchaseOrders_UOMQuery setOrderLineIDContains(String value) { this.OrderLineIDContains = value; return this; } public String getOrderLineIDLike() { return OrderLineIDLike; } public v_JIWA_PurchaseOrders_UOMQuery setOrderLineIDLike(String value) { this.OrderLineIDLike = value; return this; } public ArrayList getOrderLineIDBetween() { return OrderLineIDBetween; } public v_JIWA_PurchaseOrders_UOMQuery setOrderLineIDBetween(ArrayList value) { this.OrderLineIDBetween = value; return this; } public ArrayList getOrderLineIDIn() { return OrderLineIDIn; } public v_JIWA_PurchaseOrders_UOMQuery setOrderLineIDIn(ArrayList value) { this.OrderLineIDIn = value; return this; } public BigDecimal getQtyUom() { return QtyUom; } public v_JIWA_PurchaseOrders_UOMQuery setQtyUom(BigDecimal value) { this.QtyUom = value; return this; } public BigDecimal getQtyUomGreaterThanOrEqualTo() { return QtyUomGreaterThanOrEqualTo; } public v_JIWA_PurchaseOrders_UOMQuery setQtyUomGreaterThanOrEqualTo(BigDecimal value) { this.QtyUomGreaterThanOrEqualTo = value; return this; } public BigDecimal getQtyUomGreaterThan() { return QtyUomGreaterThan; } public v_JIWA_PurchaseOrders_UOMQuery setQtyUomGreaterThan(BigDecimal value) { this.QtyUomGreaterThan = value; return this; } public BigDecimal getQtyUomLessThan() { return QtyUomLessThan; } public v_JIWA_PurchaseOrders_UOMQuery setQtyUomLessThan(BigDecimal value) { this.QtyUomLessThan = value; return this; } public BigDecimal getQtyUomLessThanOrEqualTo() { return QtyUomLessThanOrEqualTo; } public v_JIWA_PurchaseOrders_UOMQuery setQtyUomLessThanOrEqualTo(BigDecimal value) { this.QtyUomLessThanOrEqualTo = value; return this; } public BigDecimal getQtyUomNotEqualTo() { return QtyUomNotEqualTo; } public v_JIWA_PurchaseOrders_UOMQuery setQtyUomNotEqualTo(BigDecimal value) { this.QtyUomNotEqualTo = value; return this; } public ArrayList getQtyUomBetween() { return QtyUomBetween; } public v_JIWA_PurchaseOrders_UOMQuery setQtyUomBetween(ArrayList value) { this.QtyUomBetween = value; return this; } public ArrayList getQtyUomIn() { return QtyUomIn; } public v_JIWA_PurchaseOrders_UOMQuery setQtyUomIn(ArrayList value) { this.QtyUomIn = value; return this; } public String getName() { return Name; } public v_JIWA_PurchaseOrders_UOMQuery setName(String value) { this.Name = value; return this; } public String getNameStartsWith() { return NameStartsWith; } public v_JIWA_PurchaseOrders_UOMQuery setNameStartsWith(String value) { this.NameStartsWith = value; return this; } public String getNameEndsWith() { return NameEndsWith; } public v_JIWA_PurchaseOrders_UOMQuery setNameEndsWith(String value) { this.NameEndsWith = value; return this; } public String getNameContains() { return NameContains; } public v_JIWA_PurchaseOrders_UOMQuery setNameContains(String value) { this.NameContains = value; return this; } public String getNameLike() { return NameLike; } public v_JIWA_PurchaseOrders_UOMQuery setNameLike(String value) { this.NameLike = value; return this; } public ArrayList getNameBetween() { return NameBetween; } public v_JIWA_PurchaseOrders_UOMQuery setNameBetween(ArrayList value) { this.NameBetween = value; return this; } public ArrayList getNameIn() { return NameIn; } public v_JIWA_PurchaseOrders_UOMQuery setNameIn(ArrayList value) { this.NameIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class v_JIWA_QO_LinesKitHeaderTaxQuery extends QueryDb implements IReturn> { public String InvoiceLineID = null; public String InvoiceLineIDStartsWith = null; public String InvoiceLineIDEndsWith = null; public String InvoiceLineIDContains = null; public String InvoiceLineIDLike = null; public ArrayList InvoiceLineIDBetween = null; public ArrayList InvoiceLineIDIn = null; public BigDecimal KitHeaderTax = null; public BigDecimal KitHeaderTaxGreaterThanOrEqualTo = null; public BigDecimal KitHeaderTaxGreaterThan = null; public BigDecimal KitHeaderTaxLessThan = null; public BigDecimal KitHeaderTaxLessThanOrEqualTo = null; public BigDecimal KitHeaderTaxNotEqualTo = null; public ArrayList KitHeaderTaxBetween = null; public ArrayList KitHeaderTaxIn = null; public BigDecimal KitHeaderTotalIncTax = null; public BigDecimal KitHeaderTotalIncTaxGreaterThanOrEqualTo = null; public BigDecimal KitHeaderTotalIncTaxGreaterThan = null; public BigDecimal KitHeaderTotalIncTaxLessThan = null; public BigDecimal KitHeaderTotalIncTaxLessThanOrEqualTo = null; public BigDecimal KitHeaderTotalIncTaxNotEqualTo = null; public ArrayList KitHeaderTotalIncTaxBetween = null; public ArrayList KitHeaderTotalIncTaxIn = null; public String getInvoiceLineID() { return InvoiceLineID; } public v_JIWA_QO_LinesKitHeaderTaxQuery setInvoiceLineID(String value) { this.InvoiceLineID = value; return this; } public String getInvoiceLineIDStartsWith() { return InvoiceLineIDStartsWith; } public v_JIWA_QO_LinesKitHeaderTaxQuery setInvoiceLineIDStartsWith(String value) { this.InvoiceLineIDStartsWith = value; return this; } public String getInvoiceLineIDEndsWith() { return InvoiceLineIDEndsWith; } public v_JIWA_QO_LinesKitHeaderTaxQuery setInvoiceLineIDEndsWith(String value) { this.InvoiceLineIDEndsWith = value; return this; } public String getInvoiceLineIDContains() { return InvoiceLineIDContains; } public v_JIWA_QO_LinesKitHeaderTaxQuery setInvoiceLineIDContains(String value) { this.InvoiceLineIDContains = value; return this; } public String getInvoiceLineIDLike() { return InvoiceLineIDLike; } public v_JIWA_QO_LinesKitHeaderTaxQuery setInvoiceLineIDLike(String value) { this.InvoiceLineIDLike = value; return this; } public ArrayList getInvoiceLineIDBetween() { return InvoiceLineIDBetween; } public v_JIWA_QO_LinesKitHeaderTaxQuery setInvoiceLineIDBetween(ArrayList value) { this.InvoiceLineIDBetween = value; return this; } public ArrayList getInvoiceLineIDIn() { return InvoiceLineIDIn; } public v_JIWA_QO_LinesKitHeaderTaxQuery setInvoiceLineIDIn(ArrayList value) { this.InvoiceLineIDIn = value; return this; } public BigDecimal getKitHeaderTax() { return KitHeaderTax; } public v_JIWA_QO_LinesKitHeaderTaxQuery setKitHeaderTax(BigDecimal value) { this.KitHeaderTax = value; return this; } public BigDecimal getKitHeaderTaxGreaterThanOrEqualTo() { return KitHeaderTaxGreaterThanOrEqualTo; } public v_JIWA_QO_LinesKitHeaderTaxQuery setKitHeaderTaxGreaterThanOrEqualTo(BigDecimal value) { this.KitHeaderTaxGreaterThanOrEqualTo = value; return this; } public BigDecimal getKitHeaderTaxGreaterThan() { return KitHeaderTaxGreaterThan; } public v_JIWA_QO_LinesKitHeaderTaxQuery setKitHeaderTaxGreaterThan(BigDecimal value) { this.KitHeaderTaxGreaterThan = value; return this; } public BigDecimal getKitHeaderTaxLessThan() { return KitHeaderTaxLessThan; } public v_JIWA_QO_LinesKitHeaderTaxQuery setKitHeaderTaxLessThan(BigDecimal value) { this.KitHeaderTaxLessThan = value; return this; } public BigDecimal getKitHeaderTaxLessThanOrEqualTo() { return KitHeaderTaxLessThanOrEqualTo; } public v_JIWA_QO_LinesKitHeaderTaxQuery setKitHeaderTaxLessThanOrEqualTo(BigDecimal value) { this.KitHeaderTaxLessThanOrEqualTo = value; return this; } public BigDecimal getKitHeaderTaxNotEqualTo() { return KitHeaderTaxNotEqualTo; } public v_JIWA_QO_LinesKitHeaderTaxQuery setKitHeaderTaxNotEqualTo(BigDecimal value) { this.KitHeaderTaxNotEqualTo = value; return this; } public ArrayList getKitHeaderTaxBetween() { return KitHeaderTaxBetween; } public v_JIWA_QO_LinesKitHeaderTaxQuery setKitHeaderTaxBetween(ArrayList value) { this.KitHeaderTaxBetween = value; return this; } public ArrayList getKitHeaderTaxIn() { return KitHeaderTaxIn; } public v_JIWA_QO_LinesKitHeaderTaxQuery setKitHeaderTaxIn(ArrayList value) { this.KitHeaderTaxIn = value; return this; } public BigDecimal getKitHeaderTotalIncTax() { return KitHeaderTotalIncTax; } public v_JIWA_QO_LinesKitHeaderTaxQuery setKitHeaderTotalIncTax(BigDecimal value) { this.KitHeaderTotalIncTax = value; return this; } public BigDecimal getKitHeaderTotalIncTaxGreaterThanOrEqualTo() { return KitHeaderTotalIncTaxGreaterThanOrEqualTo; } public v_JIWA_QO_LinesKitHeaderTaxQuery setKitHeaderTotalIncTaxGreaterThanOrEqualTo(BigDecimal value) { this.KitHeaderTotalIncTaxGreaterThanOrEqualTo = value; return this; } public BigDecimal getKitHeaderTotalIncTaxGreaterThan() { return KitHeaderTotalIncTaxGreaterThan; } public v_JIWA_QO_LinesKitHeaderTaxQuery setKitHeaderTotalIncTaxGreaterThan(BigDecimal value) { this.KitHeaderTotalIncTaxGreaterThan = value; return this; } public BigDecimal getKitHeaderTotalIncTaxLessThan() { return KitHeaderTotalIncTaxLessThan; } public v_JIWA_QO_LinesKitHeaderTaxQuery setKitHeaderTotalIncTaxLessThan(BigDecimal value) { this.KitHeaderTotalIncTaxLessThan = value; return this; } public BigDecimal getKitHeaderTotalIncTaxLessThanOrEqualTo() { return KitHeaderTotalIncTaxLessThanOrEqualTo; } public v_JIWA_QO_LinesKitHeaderTaxQuery setKitHeaderTotalIncTaxLessThanOrEqualTo(BigDecimal value) { this.KitHeaderTotalIncTaxLessThanOrEqualTo = value; return this; } public BigDecimal getKitHeaderTotalIncTaxNotEqualTo() { return KitHeaderTotalIncTaxNotEqualTo; } public v_JIWA_QO_LinesKitHeaderTaxQuery setKitHeaderTotalIncTaxNotEqualTo(BigDecimal value) { this.KitHeaderTotalIncTaxNotEqualTo = value; return this; } public ArrayList getKitHeaderTotalIncTaxBetween() { return KitHeaderTotalIncTaxBetween; } public v_JIWA_QO_LinesKitHeaderTaxQuery setKitHeaderTotalIncTaxBetween(ArrayList value) { this.KitHeaderTotalIncTaxBetween = value; return this; } public ArrayList getKitHeaderTotalIncTaxIn() { return KitHeaderTotalIncTaxIn; } public v_JIWA_QO_LinesKitHeaderTaxQuery setKitHeaderTotalIncTaxIn(ArrayList value) { this.KitHeaderTotalIncTaxIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @Route(Path="/Queries/SalesOrderList", Verbs="GET") @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class v_Jiwa_SalesOrder_ListQuery extends QueryDb implements IReturn> { public String InvoiceID = null; public String InvoiceIDStartsWith = null; public String InvoiceIDEndsWith = null; public String InvoiceIDContains = null; public String InvoiceIDLike = null; public ArrayList InvoiceIDBetween = null; public ArrayList InvoiceIDIn = null; public String InvoiceNo = null; public String InvoiceNoStartsWith = null; public String InvoiceNoEndsWith = null; public String InvoiceNoContains = null; public String InvoiceNoLike = null; public ArrayList InvoiceNoBetween = null; public ArrayList InvoiceNoIn = null; public String OrderNo = null; public String OrderNoStartsWith = null; public String OrderNoEndsWith = null; public String OrderNoContains = null; public String OrderNoLike = null; public ArrayList OrderNoBetween = null; public ArrayList OrderNoIn = null; public String SOReference = null; public String SOReferenceStartsWith = null; public String SOReferenceEndsWith = null; public String SOReferenceContains = null; public String SOReferenceLike = null; public ArrayList SOReferenceBetween = null; public ArrayList SOReferenceIn = null; public Date InvoiceInitDate = null; public Date InvoiceInitDateGreaterThanOrEqualTo = null; public Date InvoiceInitDateGreaterThan = null; public Date InvoiceInitDateLessThan = null; public Date InvoiceInitDateLessThanOrEqualTo = null; public Date InvoiceInitDateNotEqualTo = null; public ArrayList InvoiceInitDateBetween = null; public ArrayList InvoiceInitDateIn = null; public Short Status = null; public Short StatusGreaterThanOrEqualTo = null; public Short StatusGreaterThan = null; public Short StatusLessThan = null; public Short StatusLessThanOrEqualTo = null; public Short StatusNotEqualTo = null; public ArrayList StatusBetween = null; public ArrayList StatusIn = null; public Boolean CreditNote = null; public Date LastSavedDateTime = null; public Date LastSavedDateTimeGreaterThanOrEqualTo = null; public Date LastSavedDateTimeGreaterThan = null; public Date LastSavedDateTimeLessThan = null; public Date LastSavedDateTimeLessThanOrEqualTo = null; public Date LastSavedDateTimeNotEqualTo = null; public ArrayList LastSavedDateTimeBetween = null; public ArrayList LastSavedDateTimeIn = null; public BigDecimal InvoiceTotal = null; public BigDecimal InvoiceTotalGreaterThanOrEqualTo = null; public BigDecimal InvoiceTotalGreaterThan = null; public BigDecimal InvoiceTotalLessThan = null; public BigDecimal InvoiceTotalLessThanOrEqualTo = null; public BigDecimal InvoiceTotalNotEqualTo = null; public ArrayList InvoiceTotalBetween = null; public ArrayList InvoiceTotalIn = null; public String DebtorID = null; public String DebtorIDStartsWith = null; public String DebtorIDEndsWith = null; public String DebtorIDContains = null; public String DebtorIDLike = null; public ArrayList DebtorIDBetween = null; public ArrayList DebtorIDIn = null; public String AccountNo = null; public String AccountNoStartsWith = null; public String AccountNoEndsWith = null; public String AccountNoContains = null; public String AccountNoLike = null; public ArrayList AccountNoBetween = null; public ArrayList AccountNoIn = null; public String DebtorName = null; public String DebtorNameStartsWith = null; public String DebtorNameEndsWith = null; public String DebtorNameContains = null; public String DebtorNameLike = null; public ArrayList DebtorNameBetween = null; public ArrayList DebtorNameIn = null; public String IN_LogicalID = null; public String IN_LogicalIDStartsWith = null; public String IN_LogicalIDEndsWith = null; public String IN_LogicalIDContains = null; public String IN_LogicalIDLike = null; public ArrayList IN_LogicalIDBetween = null; public ArrayList IN_LogicalIDIn = null; public String LogicalWarehouseDescription = null; public String LogicalWarehouseDescriptionStartsWith = null; public String LogicalWarehouseDescriptionEndsWith = null; public String LogicalWarehouseDescriptionContains = null; public String LogicalWarehouseDescriptionLike = null; public ArrayList LogicalWarehouseDescriptionBetween = null; public ArrayList LogicalWarehouseDescriptionIn = null; public String IN_PhysicalID = null; public String IN_PhysicalIDStartsWith = null; public String IN_PhysicalIDEndsWith = null; public String IN_PhysicalIDContains = null; public String IN_PhysicalIDLike = null; public ArrayList IN_PhysicalIDBetween = null; public ArrayList IN_PhysicalIDIn = null; public String PhysicalWarehouseDescription = null; public String PhysicalWarehouseDescriptionStartsWith = null; public String PhysicalWarehouseDescriptionEndsWith = null; public String PhysicalWarehouseDescriptionContains = null; public String PhysicalWarehouseDescriptionLike = null; public ArrayList PhysicalWarehouseDescriptionBetween = null; public ArrayList PhysicalWarehouseDescriptionIn = null; public String BranchID = null; public String BranchIDStartsWith = null; public String BranchIDEndsWith = null; public String BranchIDContains = null; public String BranchIDLike = null; public ArrayList BranchIDBetween = null; public ArrayList BranchIDIn = null; public String BranchDescription = null; public String BranchDescriptionStartsWith = null; public String BranchDescriptionEndsWith = null; public String BranchDescriptionContains = null; public String BranchDescriptionLike = null; public ArrayList BranchDescriptionBetween = null; public ArrayList BranchDescriptionIn = null; public String CashSaleAddress1 = null; public String CashSaleAddress1StartsWith = null; public String CashSaleAddress1EndsWith = null; public String CashSaleAddress1Contains = null; public String CashSaleAddress1Like = null; public ArrayList CashSaleAddress1Between = null; public ArrayList CashSaleAddress1In = null; public String CashSaleAddress2 = null; public String CashSaleAddress2StartsWith = null; public String CashSaleAddress2EndsWith = null; public String CashSaleAddress2Contains = null; public String CashSaleAddress2Like = null; public ArrayList CashSaleAddress2Between = null; public ArrayList CashSaleAddress2In = null; public String CashSaleAddress3 = null; public String CashSaleAddress3StartsWith = null; public String CashSaleAddress3EndsWith = null; public String CashSaleAddress3Contains = null; public String CashSaleAddress3Like = null; public ArrayList CashSaleAddress3Between = null; public ArrayList CashSaleAddress3In = null; public String CashSaleAddress4 = null; public String CashSaleAddress4StartsWith = null; public String CashSaleAddress4EndsWith = null; public String CashSaleAddress4Contains = null; public String CashSaleAddress4Like = null; public ArrayList CashSaleAddress4Between = null; public ArrayList CashSaleAddress4In = null; public String CashSalePostcode = null; public String CashSalePostcodeStartsWith = null; public String CashSalePostcodeEndsWith = null; public String CashSalePostcodeContains = null; public String CashSalePostcodeLike = null; public ArrayList CashSalePostcodeBetween = null; public ArrayList CashSalePostcodeIn = null; public String CashSaleCompany = null; public String CashSaleCompanyStartsWith = null; public String CashSaleCompanyEndsWith = null; public String CashSaleCompanyContains = null; public String CashSaleCompanyLike = null; public ArrayList CashSaleCompanyBetween = null; public ArrayList CashSaleCompanyIn = null; public String CashSaleName = null; public String CashSaleNameStartsWith = null; public String CashSaleNameEndsWith = null; public String CashSaleNameContains = null; public String CashSaleNameLike = null; public ArrayList CashSaleNameBetween = null; public ArrayList CashSaleNameIn = null; public String CashSalePhone = null; public String CashSalePhoneStartsWith = null; public String CashSalePhoneEndsWith = null; public String CashSalePhoneContains = null; public String CashSalePhoneLike = null; public ArrayList CashSalePhoneBetween = null; public ArrayList CashSalePhoneIn = null; public String DeliveryAddressContactName = null; public String DeliveryAddressContactNameStartsWith = null; public String DeliveryAddressContactNameEndsWith = null; public String DeliveryAddressContactNameContains = null; public String DeliveryAddressContactNameLike = null; public ArrayList DeliveryAddressContactNameBetween = null; public ArrayList DeliveryAddressContactNameIn = null; public String DeliveryAddressee = null; public String DeliveryAddresseeStartsWith = null; public String DeliveryAddresseeEndsWith = null; public String DeliveryAddresseeContains = null; public String DeliveryAddresseeLike = null; public ArrayList DeliveryAddresseeBetween = null; public ArrayList DeliveryAddresseeIn = null; public String DeliveryAddress1 = null; public String DeliveryAddress1StartsWith = null; public String DeliveryAddress1EndsWith = null; public String DeliveryAddress1Contains = null; public String DeliveryAddress1Like = null; public ArrayList DeliveryAddress1Between = null; public ArrayList DeliveryAddress1In = null; public String DeliveryAddress2 = null; public String DeliveryAddress2StartsWith = null; public String DeliveryAddress2EndsWith = null; public String DeliveryAddress2Contains = null; public String DeliveryAddress2Like = null; public ArrayList DeliveryAddress2Between = null; public ArrayList DeliveryAddress2In = null; public String DeliveryAddress3 = null; public String DeliveryAddress3StartsWith = null; public String DeliveryAddress3EndsWith = null; public String DeliveryAddress3Contains = null; public String DeliveryAddress3Like = null; public ArrayList DeliveryAddress3Between = null; public ArrayList DeliveryAddress3In = null; public String DeliveryAddress4 = null; public String DeliveryAddress4StartsWith = null; public String DeliveryAddress4EndsWith = null; public String DeliveryAddress4Contains = null; public String DeliveryAddress4Like = null; public ArrayList DeliveryAddress4Between = null; public ArrayList DeliveryAddress4In = null; public String DeliveryAddressPostcode = null; public String DeliveryAddressPostcodeStartsWith = null; public String DeliveryAddressPostcodeEndsWith = null; public String DeliveryAddressPostcodeContains = null; public String DeliveryAddressPostcodeLike = null; public ArrayList DeliveryAddressPostcodeBetween = null; public ArrayList DeliveryAddressPostcodeIn = null; public String DeliveryAddressCountry = null; public String DeliveryAddressCountryStartsWith = null; public String DeliveryAddressCountryEndsWith = null; public String DeliveryAddressCountryContains = null; public String DeliveryAddressCountryLike = null; public ArrayList DeliveryAddressCountryBetween = null; public ArrayList DeliveryAddressCountryIn = null; public Boolean Delivered = null; public Date DeliveredDate = null; public Date DeliveredDateGreaterThanOrEqualTo = null; public Date DeliveredDateGreaterThan = null; public Date DeliveredDateLessThan = null; public Date DeliveredDateLessThanOrEqualTo = null; public Date DeliveredDateNotEqualTo = null; public ArrayList DeliveredDateBetween = null; public ArrayList DeliveredDateIn = null; public String ConsignmentNote = null; public String ConsignmentNoteStartsWith = null; public String ConsignmentNoteEndsWith = null; public String ConsignmentNoteContains = null; public String ConsignmentNoteLike = null; public ArrayList ConsignmentNoteBetween = null; public ArrayList ConsignmentNoteIn = null; public BigDecimal CartageCharge1 = null; public BigDecimal CartageCharge1GreaterThanOrEqualTo = null; public BigDecimal CartageCharge1GreaterThan = null; public BigDecimal CartageCharge1LessThan = null; public BigDecimal CartageCharge1LessThanOrEqualTo = null; public BigDecimal CartageCharge1NotEqualTo = null; public ArrayList CartageCharge1Between = null; public ArrayList CartageCharge1In = null; public BigDecimal Cartage1TaxAmount = null; public BigDecimal Cartage1TaxAmountGreaterThanOrEqualTo = null; public BigDecimal Cartage1TaxAmountGreaterThan = null; public BigDecimal Cartage1TaxAmountLessThan = null; public BigDecimal Cartage1TaxAmountLessThanOrEqualTo = null; public BigDecimal Cartage1TaxAmountNotEqualTo = null; public ArrayList Cartage1TaxAmountBetween = null; public ArrayList Cartage1TaxAmountIn = null; public BigDecimal CartageCharge2 = null; public BigDecimal CartageCharge2GreaterThanOrEqualTo = null; public BigDecimal CartageCharge2GreaterThan = null; public BigDecimal CartageCharge2LessThan = null; public BigDecimal CartageCharge2LessThanOrEqualTo = null; public BigDecimal CartageCharge2NotEqualTo = null; public ArrayList CartageCharge2Between = null; public ArrayList CartageCharge2In = null; public BigDecimal Cartage2TaxAmount = null; public BigDecimal Cartage2TaxAmountGreaterThanOrEqualTo = null; public BigDecimal Cartage2TaxAmountGreaterThan = null; public BigDecimal Cartage2TaxAmountLessThan = null; public BigDecimal Cartage2TaxAmountLessThanOrEqualTo = null; public BigDecimal Cartage2TaxAmountNotEqualTo = null; public ArrayList Cartage2TaxAmountBetween = null; public ArrayList Cartage2TaxAmountIn = null; public BigDecimal CartageCharge3 = null; public BigDecimal CartageCharge3GreaterThanOrEqualTo = null; public BigDecimal CartageCharge3GreaterThan = null; public BigDecimal CartageCharge3LessThan = null; public BigDecimal CartageCharge3LessThanOrEqualTo = null; public BigDecimal CartageCharge3NotEqualTo = null; public ArrayList CartageCharge3Between = null; public ArrayList CartageCharge3In = null; public BigDecimal Cartage3TaxAmount = null; public BigDecimal Cartage3TaxAmountGreaterThanOrEqualTo = null; public BigDecimal Cartage3TaxAmountGreaterThan = null; public BigDecimal Cartage3TaxAmountLessThan = null; public BigDecimal Cartage3TaxAmountLessThanOrEqualTo = null; public BigDecimal Cartage3TaxAmountNotEqualTo = null; public ArrayList Cartage3TaxAmountBetween = null; public ArrayList Cartage3TaxAmountIn = null; public String CourierDetails = null; public String CourierDetailsStartsWith = null; public String CourierDetailsEndsWith = null; public String CourierDetailsContains = null; public String CourierDetailsLike = null; public ArrayList CourierDetailsBetween = null; public ArrayList CourierDetailsIn = null; public String Notes = null; public String NotesStartsWith = null; public String NotesEndsWith = null; public String NotesContains = null; public String NotesLike = null; public ArrayList NotesBetween = null; public ArrayList NotesIn = null; public String EmailAddress = null; public String EmailAddressStartsWith = null; public String EmailAddressEndsWith = null; public String EmailAddressContains = null; public String EmailAddressLike = null; public ArrayList EmailAddressBetween = null; public ArrayList EmailAddressIn = null; public String StaffID = null; public String StaffIDStartsWith = null; public String StaffIDEndsWith = null; public String StaffIDContains = null; public String StaffIDLike = null; public ArrayList StaffIDBetween = null; public ArrayList StaffIDIn = null; public String StaffTitle = null; public String StaffTitleStartsWith = null; public String StaffTitleEndsWith = null; public String StaffTitleContains = null; public String StaffTitleLike = null; public ArrayList StaffTitleBetween = null; public ArrayList StaffTitleIn = null; public String StaffFirstName = null; public String StaffFirstNameStartsWith = null; public String StaffFirstNameEndsWith = null; public String StaffFirstNameContains = null; public String StaffFirstNameLike = null; public ArrayList StaffFirstNameBetween = null; public ArrayList StaffFirstNameIn = null; public String StaffSurname = null; public String StaffSurnameStartsWith = null; public String StaffSurnameEndsWith = null; public String StaffSurnameContains = null; public String StaffSurnameLike = null; public ArrayList StaffSurnameBetween = null; public ArrayList StaffSurnameIn = null; public String StaffUsername = null; public String StaffUsernameStartsWith = null; public String StaffUsernameEndsWith = null; public String StaffUsernameContains = null; public String StaffUsernameLike = null; public ArrayList StaffUsernameBetween = null; public ArrayList StaffUsernameIn = null; public String getInvoiceID() { return InvoiceID; } public v_Jiwa_SalesOrder_ListQuery setInvoiceID(String value) { this.InvoiceID = value; return this; } public String getInvoiceIDStartsWith() { return InvoiceIDStartsWith; } public v_Jiwa_SalesOrder_ListQuery setInvoiceIDStartsWith(String value) { this.InvoiceIDStartsWith = value; return this; } public String getInvoiceIDEndsWith() { return InvoiceIDEndsWith; } public v_Jiwa_SalesOrder_ListQuery setInvoiceIDEndsWith(String value) { this.InvoiceIDEndsWith = value; return this; } public String getInvoiceIDContains() { return InvoiceIDContains; } public v_Jiwa_SalesOrder_ListQuery setInvoiceIDContains(String value) { this.InvoiceIDContains = value; return this; } public String getInvoiceIDLike() { return InvoiceIDLike; } public v_Jiwa_SalesOrder_ListQuery setInvoiceIDLike(String value) { this.InvoiceIDLike = value; return this; } public ArrayList getInvoiceIDBetween() { return InvoiceIDBetween; } public v_Jiwa_SalesOrder_ListQuery setInvoiceIDBetween(ArrayList value) { this.InvoiceIDBetween = value; return this; } public ArrayList getInvoiceIDIn() { return InvoiceIDIn; } public v_Jiwa_SalesOrder_ListQuery setInvoiceIDIn(ArrayList value) { this.InvoiceIDIn = value; return this; } public String getInvoiceNo() { return InvoiceNo; } public v_Jiwa_SalesOrder_ListQuery setInvoiceNo(String value) { this.InvoiceNo = value; return this; } public String getInvoiceNoStartsWith() { return InvoiceNoStartsWith; } public v_Jiwa_SalesOrder_ListQuery setInvoiceNoStartsWith(String value) { this.InvoiceNoStartsWith = value; return this; } public String getInvoiceNoEndsWith() { return InvoiceNoEndsWith; } public v_Jiwa_SalesOrder_ListQuery setInvoiceNoEndsWith(String value) { this.InvoiceNoEndsWith = value; return this; } public String getInvoiceNoContains() { return InvoiceNoContains; } public v_Jiwa_SalesOrder_ListQuery setInvoiceNoContains(String value) { this.InvoiceNoContains = value; return this; } public String getInvoiceNoLike() { return InvoiceNoLike; } public v_Jiwa_SalesOrder_ListQuery setInvoiceNoLike(String value) { this.InvoiceNoLike = value; return this; } public ArrayList getInvoiceNoBetween() { return InvoiceNoBetween; } public v_Jiwa_SalesOrder_ListQuery setInvoiceNoBetween(ArrayList value) { this.InvoiceNoBetween = value; return this; } public ArrayList getInvoiceNoIn() { return InvoiceNoIn; } public v_Jiwa_SalesOrder_ListQuery setInvoiceNoIn(ArrayList value) { this.InvoiceNoIn = value; return this; } public String getOrderNo() { return OrderNo; } public v_Jiwa_SalesOrder_ListQuery setOrderNo(String value) { this.OrderNo = value; return this; } public String getOrderNoStartsWith() { return OrderNoStartsWith; } public v_Jiwa_SalesOrder_ListQuery setOrderNoStartsWith(String value) { this.OrderNoStartsWith = value; return this; } public String getOrderNoEndsWith() { return OrderNoEndsWith; } public v_Jiwa_SalesOrder_ListQuery setOrderNoEndsWith(String value) { this.OrderNoEndsWith = value; return this; } public String getOrderNoContains() { return OrderNoContains; } public v_Jiwa_SalesOrder_ListQuery setOrderNoContains(String value) { this.OrderNoContains = value; return this; } public String getOrderNoLike() { return OrderNoLike; } public v_Jiwa_SalesOrder_ListQuery setOrderNoLike(String value) { this.OrderNoLike = value; return this; } public ArrayList getOrderNoBetween() { return OrderNoBetween; } public v_Jiwa_SalesOrder_ListQuery setOrderNoBetween(ArrayList value) { this.OrderNoBetween = value; return this; } public ArrayList getOrderNoIn() { return OrderNoIn; } public v_Jiwa_SalesOrder_ListQuery setOrderNoIn(ArrayList value) { this.OrderNoIn = value; return this; } public String getSoReference() { return SOReference; } public v_Jiwa_SalesOrder_ListQuery setSoReference(String value) { this.SOReference = value; return this; } public String getSoReferenceStartsWith() { return SOReferenceStartsWith; } public v_Jiwa_SalesOrder_ListQuery setSoReferenceStartsWith(String value) { this.SOReferenceStartsWith = value; return this; } public String getSoReferenceEndsWith() { return SOReferenceEndsWith; } public v_Jiwa_SalesOrder_ListQuery setSoReferenceEndsWith(String value) { this.SOReferenceEndsWith = value; return this; } public String getSoReferenceContains() { return SOReferenceContains; } public v_Jiwa_SalesOrder_ListQuery setSoReferenceContains(String value) { this.SOReferenceContains = value; return this; } public String getSoReferenceLike() { return SOReferenceLike; } public v_Jiwa_SalesOrder_ListQuery setSoReferenceLike(String value) { this.SOReferenceLike = value; return this; } public ArrayList getSoReferenceBetween() { return SOReferenceBetween; } public v_Jiwa_SalesOrder_ListQuery setSoReferenceBetween(ArrayList value) { this.SOReferenceBetween = value; return this; } public ArrayList getSoReferenceIn() { return SOReferenceIn; } public v_Jiwa_SalesOrder_ListQuery setSoReferenceIn(ArrayList value) { this.SOReferenceIn = value; return this; } public Date getInvoiceInitDate() { return InvoiceInitDate; } public v_Jiwa_SalesOrder_ListQuery setInvoiceInitDate(Date value) { this.InvoiceInitDate = value; return this; } public Date getInvoiceInitDateGreaterThanOrEqualTo() { return InvoiceInitDateGreaterThanOrEqualTo; } public v_Jiwa_SalesOrder_ListQuery setInvoiceInitDateGreaterThanOrEqualTo(Date value) { this.InvoiceInitDateGreaterThanOrEqualTo = value; return this; } public Date getInvoiceInitDateGreaterThan() { return InvoiceInitDateGreaterThan; } public v_Jiwa_SalesOrder_ListQuery setInvoiceInitDateGreaterThan(Date value) { this.InvoiceInitDateGreaterThan = value; return this; } public Date getInvoiceInitDateLessThan() { return InvoiceInitDateLessThan; } public v_Jiwa_SalesOrder_ListQuery setInvoiceInitDateLessThan(Date value) { this.InvoiceInitDateLessThan = value; return this; } public Date getInvoiceInitDateLessThanOrEqualTo() { return InvoiceInitDateLessThanOrEqualTo; } public v_Jiwa_SalesOrder_ListQuery setInvoiceInitDateLessThanOrEqualTo(Date value) { this.InvoiceInitDateLessThanOrEqualTo = value; return this; } public Date getInvoiceInitDateNotEqualTo() { return InvoiceInitDateNotEqualTo; } public v_Jiwa_SalesOrder_ListQuery setInvoiceInitDateNotEqualTo(Date value) { this.InvoiceInitDateNotEqualTo = value; return this; } public ArrayList getInvoiceInitDateBetween() { return InvoiceInitDateBetween; } public v_Jiwa_SalesOrder_ListQuery setInvoiceInitDateBetween(ArrayList value) { this.InvoiceInitDateBetween = value; return this; } public ArrayList getInvoiceInitDateIn() { return InvoiceInitDateIn; } public v_Jiwa_SalesOrder_ListQuery setInvoiceInitDateIn(ArrayList value) { this.InvoiceInitDateIn = value; return this; } public Short getStatus() { return Status; } public v_Jiwa_SalesOrder_ListQuery setStatus(Short value) { this.Status = value; return this; } public Short getStatusGreaterThanOrEqualTo() { return StatusGreaterThanOrEqualTo; } public v_Jiwa_SalesOrder_ListQuery setStatusGreaterThanOrEqualTo(Short value) { this.StatusGreaterThanOrEqualTo = value; return this; } public Short getStatusGreaterThan() { return StatusGreaterThan; } public v_Jiwa_SalesOrder_ListQuery setStatusGreaterThan(Short value) { this.StatusGreaterThan = value; return this; } public Short getStatusLessThan() { return StatusLessThan; } public v_Jiwa_SalesOrder_ListQuery setStatusLessThan(Short value) { this.StatusLessThan = value; return this; } public Short getStatusLessThanOrEqualTo() { return StatusLessThanOrEqualTo; } public v_Jiwa_SalesOrder_ListQuery setStatusLessThanOrEqualTo(Short value) { this.StatusLessThanOrEqualTo = value; return this; } public Short getStatusNotEqualTo() { return StatusNotEqualTo; } public v_Jiwa_SalesOrder_ListQuery setStatusNotEqualTo(Short value) { this.StatusNotEqualTo = value; return this; } public ArrayList getStatusBetween() { return StatusBetween; } public v_Jiwa_SalesOrder_ListQuery setStatusBetween(ArrayList value) { this.StatusBetween = value; return this; } public ArrayList getStatusIn() { return StatusIn; } public v_Jiwa_SalesOrder_ListQuery setStatusIn(ArrayList value) { this.StatusIn = value; return this; } public Boolean isCreditNote() { return CreditNote; } public v_Jiwa_SalesOrder_ListQuery setCreditNote(Boolean value) { this.CreditNote = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public v_Jiwa_SalesOrder_ListQuery setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getLastSavedDateTimeGreaterThanOrEqualTo() { return LastSavedDateTimeGreaterThanOrEqualTo; } public v_Jiwa_SalesOrder_ListQuery setLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.LastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeGreaterThan() { return LastSavedDateTimeGreaterThan; } public v_Jiwa_SalesOrder_ListQuery setLastSavedDateTimeGreaterThan(Date value) { this.LastSavedDateTimeGreaterThan = value; return this; } public Date getLastSavedDateTimeLessThan() { return LastSavedDateTimeLessThan; } public v_Jiwa_SalesOrder_ListQuery setLastSavedDateTimeLessThan(Date value) { this.LastSavedDateTimeLessThan = value; return this; } public Date getLastSavedDateTimeLessThanOrEqualTo() { return LastSavedDateTimeLessThanOrEqualTo; } public v_Jiwa_SalesOrder_ListQuery setLastSavedDateTimeLessThanOrEqualTo(Date value) { this.LastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeNotEqualTo() { return LastSavedDateTimeNotEqualTo; } public v_Jiwa_SalesOrder_ListQuery setLastSavedDateTimeNotEqualTo(Date value) { this.LastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getLastSavedDateTimeBetween() { return LastSavedDateTimeBetween; } public v_Jiwa_SalesOrder_ListQuery setLastSavedDateTimeBetween(ArrayList value) { this.LastSavedDateTimeBetween = value; return this; } public ArrayList getLastSavedDateTimeIn() { return LastSavedDateTimeIn; } public v_Jiwa_SalesOrder_ListQuery setLastSavedDateTimeIn(ArrayList value) { this.LastSavedDateTimeIn = value; return this; } public BigDecimal getInvoiceTotal() { return InvoiceTotal; } public v_Jiwa_SalesOrder_ListQuery setInvoiceTotal(BigDecimal value) { this.InvoiceTotal = value; return this; } public BigDecimal getInvoiceTotalGreaterThanOrEqualTo() { return InvoiceTotalGreaterThanOrEqualTo; } public v_Jiwa_SalesOrder_ListQuery setInvoiceTotalGreaterThanOrEqualTo(BigDecimal value) { this.InvoiceTotalGreaterThanOrEqualTo = value; return this; } public BigDecimal getInvoiceTotalGreaterThan() { return InvoiceTotalGreaterThan; } public v_Jiwa_SalesOrder_ListQuery setInvoiceTotalGreaterThan(BigDecimal value) { this.InvoiceTotalGreaterThan = value; return this; } public BigDecimal getInvoiceTotalLessThan() { return InvoiceTotalLessThan; } public v_Jiwa_SalesOrder_ListQuery setInvoiceTotalLessThan(BigDecimal value) { this.InvoiceTotalLessThan = value; return this; } public BigDecimal getInvoiceTotalLessThanOrEqualTo() { return InvoiceTotalLessThanOrEqualTo; } public v_Jiwa_SalesOrder_ListQuery setInvoiceTotalLessThanOrEqualTo(BigDecimal value) { this.InvoiceTotalLessThanOrEqualTo = value; return this; } public BigDecimal getInvoiceTotalNotEqualTo() { return InvoiceTotalNotEqualTo; } public v_Jiwa_SalesOrder_ListQuery setInvoiceTotalNotEqualTo(BigDecimal value) { this.InvoiceTotalNotEqualTo = value; return this; } public ArrayList getInvoiceTotalBetween() { return InvoiceTotalBetween; } public v_Jiwa_SalesOrder_ListQuery setInvoiceTotalBetween(ArrayList value) { this.InvoiceTotalBetween = value; return this; } public ArrayList getInvoiceTotalIn() { return InvoiceTotalIn; } public v_Jiwa_SalesOrder_ListQuery setInvoiceTotalIn(ArrayList value) { this.InvoiceTotalIn = value; return this; } public String getDebtorID() { return DebtorID; } public v_Jiwa_SalesOrder_ListQuery setDebtorID(String value) { this.DebtorID = value; return this; } public String getDebtorIDStartsWith() { return DebtorIDStartsWith; } public v_Jiwa_SalesOrder_ListQuery setDebtorIDStartsWith(String value) { this.DebtorIDStartsWith = value; return this; } public String getDebtorIDEndsWith() { return DebtorIDEndsWith; } public v_Jiwa_SalesOrder_ListQuery setDebtorIDEndsWith(String value) { this.DebtorIDEndsWith = value; return this; } public String getDebtorIDContains() { return DebtorIDContains; } public v_Jiwa_SalesOrder_ListQuery setDebtorIDContains(String value) { this.DebtorIDContains = value; return this; } public String getDebtorIDLike() { return DebtorIDLike; } public v_Jiwa_SalesOrder_ListQuery setDebtorIDLike(String value) { this.DebtorIDLike = value; return this; } public ArrayList getDebtorIDBetween() { return DebtorIDBetween; } public v_Jiwa_SalesOrder_ListQuery setDebtorIDBetween(ArrayList value) { this.DebtorIDBetween = value; return this; } public ArrayList getDebtorIDIn() { return DebtorIDIn; } public v_Jiwa_SalesOrder_ListQuery setDebtorIDIn(ArrayList value) { this.DebtorIDIn = value; return this; } public String getAccountNo() { return AccountNo; } public v_Jiwa_SalesOrder_ListQuery setAccountNo(String value) { this.AccountNo = value; return this; } public String getAccountNoStartsWith() { return AccountNoStartsWith; } public v_Jiwa_SalesOrder_ListQuery setAccountNoStartsWith(String value) { this.AccountNoStartsWith = value; return this; } public String getAccountNoEndsWith() { return AccountNoEndsWith; } public v_Jiwa_SalesOrder_ListQuery setAccountNoEndsWith(String value) { this.AccountNoEndsWith = value; return this; } public String getAccountNoContains() { return AccountNoContains; } public v_Jiwa_SalesOrder_ListQuery setAccountNoContains(String value) { this.AccountNoContains = value; return this; } public String getAccountNoLike() { return AccountNoLike; } public v_Jiwa_SalesOrder_ListQuery setAccountNoLike(String value) { this.AccountNoLike = value; return this; } public ArrayList getAccountNoBetween() { return AccountNoBetween; } public v_Jiwa_SalesOrder_ListQuery setAccountNoBetween(ArrayList value) { this.AccountNoBetween = value; return this; } public ArrayList getAccountNoIn() { return AccountNoIn; } public v_Jiwa_SalesOrder_ListQuery setAccountNoIn(ArrayList value) { this.AccountNoIn = value; return this; } public String getDebtorName() { return DebtorName; } public v_Jiwa_SalesOrder_ListQuery setDebtorName(String value) { this.DebtorName = value; return this; } public String getDebtorNameStartsWith() { return DebtorNameStartsWith; } public v_Jiwa_SalesOrder_ListQuery setDebtorNameStartsWith(String value) { this.DebtorNameStartsWith = value; return this; } public String getDebtorNameEndsWith() { return DebtorNameEndsWith; } public v_Jiwa_SalesOrder_ListQuery setDebtorNameEndsWith(String value) { this.DebtorNameEndsWith = value; return this; } public String getDebtorNameContains() { return DebtorNameContains; } public v_Jiwa_SalesOrder_ListQuery setDebtorNameContains(String value) { this.DebtorNameContains = value; return this; } public String getDebtorNameLike() { return DebtorNameLike; } public v_Jiwa_SalesOrder_ListQuery setDebtorNameLike(String value) { this.DebtorNameLike = value; return this; } public ArrayList getDebtorNameBetween() { return DebtorNameBetween; } public v_Jiwa_SalesOrder_ListQuery setDebtorNameBetween(ArrayList value) { this.DebtorNameBetween = value; return this; } public ArrayList getDebtorNameIn() { return DebtorNameIn; } public v_Jiwa_SalesOrder_ListQuery setDebtorNameIn(ArrayList value) { this.DebtorNameIn = value; return this; } public String getInLogicalID() { return IN_LogicalID; } public v_Jiwa_SalesOrder_ListQuery setInLogicalID(String value) { this.IN_LogicalID = value; return this; } public String getInLogicalIDStartsWith() { return IN_LogicalIDStartsWith; } public v_Jiwa_SalesOrder_ListQuery setInLogicalIDStartsWith(String value) { this.IN_LogicalIDStartsWith = value; return this; } public String getInLogicalIDEndsWith() { return IN_LogicalIDEndsWith; } public v_Jiwa_SalesOrder_ListQuery setInLogicalIDEndsWith(String value) { this.IN_LogicalIDEndsWith = value; return this; } public String getInLogicalIDContains() { return IN_LogicalIDContains; } public v_Jiwa_SalesOrder_ListQuery setInLogicalIDContains(String value) { this.IN_LogicalIDContains = value; return this; } public String getInLogicalIDLike() { return IN_LogicalIDLike; } public v_Jiwa_SalesOrder_ListQuery setInLogicalIDLike(String value) { this.IN_LogicalIDLike = value; return this; } public ArrayList getInLogicalIDBetween() { return IN_LogicalIDBetween; } public v_Jiwa_SalesOrder_ListQuery setInLogicalIDBetween(ArrayList value) { this.IN_LogicalIDBetween = value; return this; } public ArrayList getInLogicalIDIn() { return IN_LogicalIDIn; } public v_Jiwa_SalesOrder_ListQuery setInLogicalIDIn(ArrayList value) { this.IN_LogicalIDIn = value; return this; } public String getLogicalWarehouseDescription() { return LogicalWarehouseDescription; } public v_Jiwa_SalesOrder_ListQuery setLogicalWarehouseDescription(String value) { this.LogicalWarehouseDescription = value; return this; } public String getLogicalWarehouseDescriptionStartsWith() { return LogicalWarehouseDescriptionStartsWith; } public v_Jiwa_SalesOrder_ListQuery setLogicalWarehouseDescriptionStartsWith(String value) { this.LogicalWarehouseDescriptionStartsWith = value; return this; } public String getLogicalWarehouseDescriptionEndsWith() { return LogicalWarehouseDescriptionEndsWith; } public v_Jiwa_SalesOrder_ListQuery setLogicalWarehouseDescriptionEndsWith(String value) { this.LogicalWarehouseDescriptionEndsWith = value; return this; } public String getLogicalWarehouseDescriptionContains() { return LogicalWarehouseDescriptionContains; } public v_Jiwa_SalesOrder_ListQuery setLogicalWarehouseDescriptionContains(String value) { this.LogicalWarehouseDescriptionContains = value; return this; } public String getLogicalWarehouseDescriptionLike() { return LogicalWarehouseDescriptionLike; } public v_Jiwa_SalesOrder_ListQuery setLogicalWarehouseDescriptionLike(String value) { this.LogicalWarehouseDescriptionLike = value; return this; } public ArrayList getLogicalWarehouseDescriptionBetween() { return LogicalWarehouseDescriptionBetween; } public v_Jiwa_SalesOrder_ListQuery setLogicalWarehouseDescriptionBetween(ArrayList value) { this.LogicalWarehouseDescriptionBetween = value; return this; } public ArrayList getLogicalWarehouseDescriptionIn() { return LogicalWarehouseDescriptionIn; } public v_Jiwa_SalesOrder_ListQuery setLogicalWarehouseDescriptionIn(ArrayList value) { this.LogicalWarehouseDescriptionIn = value; return this; } public String getInPhysicalID() { return IN_PhysicalID; } public v_Jiwa_SalesOrder_ListQuery setInPhysicalID(String value) { this.IN_PhysicalID = value; return this; } public String getInPhysicalIDStartsWith() { return IN_PhysicalIDStartsWith; } public v_Jiwa_SalesOrder_ListQuery setInPhysicalIDStartsWith(String value) { this.IN_PhysicalIDStartsWith = value; return this; } public String getInPhysicalIDEndsWith() { return IN_PhysicalIDEndsWith; } public v_Jiwa_SalesOrder_ListQuery setInPhysicalIDEndsWith(String value) { this.IN_PhysicalIDEndsWith = value; return this; } public String getInPhysicalIDContains() { return IN_PhysicalIDContains; } public v_Jiwa_SalesOrder_ListQuery setInPhysicalIDContains(String value) { this.IN_PhysicalIDContains = value; return this; } public String getInPhysicalIDLike() { return IN_PhysicalIDLike; } public v_Jiwa_SalesOrder_ListQuery setInPhysicalIDLike(String value) { this.IN_PhysicalIDLike = value; return this; } public ArrayList getInPhysicalIDBetween() { return IN_PhysicalIDBetween; } public v_Jiwa_SalesOrder_ListQuery setInPhysicalIDBetween(ArrayList value) { this.IN_PhysicalIDBetween = value; return this; } public ArrayList getInPhysicalIDIn() { return IN_PhysicalIDIn; } public v_Jiwa_SalesOrder_ListQuery setInPhysicalIDIn(ArrayList value) { this.IN_PhysicalIDIn = value; return this; } public String getPhysicalWarehouseDescription() { return PhysicalWarehouseDescription; } public v_Jiwa_SalesOrder_ListQuery setPhysicalWarehouseDescription(String value) { this.PhysicalWarehouseDescription = value; return this; } public String getPhysicalWarehouseDescriptionStartsWith() { return PhysicalWarehouseDescriptionStartsWith; } public v_Jiwa_SalesOrder_ListQuery setPhysicalWarehouseDescriptionStartsWith(String value) { this.PhysicalWarehouseDescriptionStartsWith = value; return this; } public String getPhysicalWarehouseDescriptionEndsWith() { return PhysicalWarehouseDescriptionEndsWith; } public v_Jiwa_SalesOrder_ListQuery setPhysicalWarehouseDescriptionEndsWith(String value) { this.PhysicalWarehouseDescriptionEndsWith = value; return this; } public String getPhysicalWarehouseDescriptionContains() { return PhysicalWarehouseDescriptionContains; } public v_Jiwa_SalesOrder_ListQuery setPhysicalWarehouseDescriptionContains(String value) { this.PhysicalWarehouseDescriptionContains = value; return this; } public String getPhysicalWarehouseDescriptionLike() { return PhysicalWarehouseDescriptionLike; } public v_Jiwa_SalesOrder_ListQuery setPhysicalWarehouseDescriptionLike(String value) { this.PhysicalWarehouseDescriptionLike = value; return this; } public ArrayList getPhysicalWarehouseDescriptionBetween() { return PhysicalWarehouseDescriptionBetween; } public v_Jiwa_SalesOrder_ListQuery setPhysicalWarehouseDescriptionBetween(ArrayList value) { this.PhysicalWarehouseDescriptionBetween = value; return this; } public ArrayList getPhysicalWarehouseDescriptionIn() { return PhysicalWarehouseDescriptionIn; } public v_Jiwa_SalesOrder_ListQuery setPhysicalWarehouseDescriptionIn(ArrayList value) { this.PhysicalWarehouseDescriptionIn = value; return this; } public String getBranchID() { return BranchID; } public v_Jiwa_SalesOrder_ListQuery setBranchID(String value) { this.BranchID = value; return this; } public String getBranchIDStartsWith() { return BranchIDStartsWith; } public v_Jiwa_SalesOrder_ListQuery setBranchIDStartsWith(String value) { this.BranchIDStartsWith = value; return this; } public String getBranchIDEndsWith() { return BranchIDEndsWith; } public v_Jiwa_SalesOrder_ListQuery setBranchIDEndsWith(String value) { this.BranchIDEndsWith = value; return this; } public String getBranchIDContains() { return BranchIDContains; } public v_Jiwa_SalesOrder_ListQuery setBranchIDContains(String value) { this.BranchIDContains = value; return this; } public String getBranchIDLike() { return BranchIDLike; } public v_Jiwa_SalesOrder_ListQuery setBranchIDLike(String value) { this.BranchIDLike = value; return this; } public ArrayList getBranchIDBetween() { return BranchIDBetween; } public v_Jiwa_SalesOrder_ListQuery setBranchIDBetween(ArrayList value) { this.BranchIDBetween = value; return this; } public ArrayList getBranchIDIn() { return BranchIDIn; } public v_Jiwa_SalesOrder_ListQuery setBranchIDIn(ArrayList value) { this.BranchIDIn = value; return this; } public String getBranchDescription() { return BranchDescription; } public v_Jiwa_SalesOrder_ListQuery setBranchDescription(String value) { this.BranchDescription = value; return this; } public String getBranchDescriptionStartsWith() { return BranchDescriptionStartsWith; } public v_Jiwa_SalesOrder_ListQuery setBranchDescriptionStartsWith(String value) { this.BranchDescriptionStartsWith = value; return this; } public String getBranchDescriptionEndsWith() { return BranchDescriptionEndsWith; } public v_Jiwa_SalesOrder_ListQuery setBranchDescriptionEndsWith(String value) { this.BranchDescriptionEndsWith = value; return this; } public String getBranchDescriptionContains() { return BranchDescriptionContains; } public v_Jiwa_SalesOrder_ListQuery setBranchDescriptionContains(String value) { this.BranchDescriptionContains = value; return this; } public String getBranchDescriptionLike() { return BranchDescriptionLike; } public v_Jiwa_SalesOrder_ListQuery setBranchDescriptionLike(String value) { this.BranchDescriptionLike = value; return this; } public ArrayList getBranchDescriptionBetween() { return BranchDescriptionBetween; } public v_Jiwa_SalesOrder_ListQuery setBranchDescriptionBetween(ArrayList value) { this.BranchDescriptionBetween = value; return this; } public ArrayList getBranchDescriptionIn() { return BranchDescriptionIn; } public v_Jiwa_SalesOrder_ListQuery setBranchDescriptionIn(ArrayList value) { this.BranchDescriptionIn = value; return this; } public String getCashSaleAddress1() { return CashSaleAddress1; } public v_Jiwa_SalesOrder_ListQuery setCashSaleAddress1(String value) { this.CashSaleAddress1 = value; return this; } public String getCashSaleAddress1StartsWith() { return CashSaleAddress1StartsWith; } public v_Jiwa_SalesOrder_ListQuery setCashSaleAddress1StartsWith(String value) { this.CashSaleAddress1StartsWith = value; return this; } public String getCashSaleAddress1EndsWith() { return CashSaleAddress1EndsWith; } public v_Jiwa_SalesOrder_ListQuery setCashSaleAddress1EndsWith(String value) { this.CashSaleAddress1EndsWith = value; return this; } public String getCashSaleAddress1Contains() { return CashSaleAddress1Contains; } public v_Jiwa_SalesOrder_ListQuery setCashSaleAddress1Contains(String value) { this.CashSaleAddress1Contains = value; return this; } public String getCashSaleAddress1Like() { return CashSaleAddress1Like; } public v_Jiwa_SalesOrder_ListQuery setCashSaleAddress1Like(String value) { this.CashSaleAddress1Like = value; return this; } public ArrayList getCashSaleAddress1Between() { return CashSaleAddress1Between; } public v_Jiwa_SalesOrder_ListQuery setCashSaleAddress1Between(ArrayList value) { this.CashSaleAddress1Between = value; return this; } public ArrayList getCashSaleAddress1In() { return CashSaleAddress1In; } public v_Jiwa_SalesOrder_ListQuery setCashSaleAddress1In(ArrayList value) { this.CashSaleAddress1In = value; return this; } public String getCashSaleAddress2() { return CashSaleAddress2; } public v_Jiwa_SalesOrder_ListQuery setCashSaleAddress2(String value) { this.CashSaleAddress2 = value; return this; } public String getCashSaleAddress2StartsWith() { return CashSaleAddress2StartsWith; } public v_Jiwa_SalesOrder_ListQuery setCashSaleAddress2StartsWith(String value) { this.CashSaleAddress2StartsWith = value; return this; } public String getCashSaleAddress2EndsWith() { return CashSaleAddress2EndsWith; } public v_Jiwa_SalesOrder_ListQuery setCashSaleAddress2EndsWith(String value) { this.CashSaleAddress2EndsWith = value; return this; } public String getCashSaleAddress2Contains() { return CashSaleAddress2Contains; } public v_Jiwa_SalesOrder_ListQuery setCashSaleAddress2Contains(String value) { this.CashSaleAddress2Contains = value; return this; } public String getCashSaleAddress2Like() { return CashSaleAddress2Like; } public v_Jiwa_SalesOrder_ListQuery setCashSaleAddress2Like(String value) { this.CashSaleAddress2Like = value; return this; } public ArrayList getCashSaleAddress2Between() { return CashSaleAddress2Between; } public v_Jiwa_SalesOrder_ListQuery setCashSaleAddress2Between(ArrayList value) { this.CashSaleAddress2Between = value; return this; } public ArrayList getCashSaleAddress2In() { return CashSaleAddress2In; } public v_Jiwa_SalesOrder_ListQuery setCashSaleAddress2In(ArrayList value) { this.CashSaleAddress2In = value; return this; } public String getCashSaleAddress3() { return CashSaleAddress3; } public v_Jiwa_SalesOrder_ListQuery setCashSaleAddress3(String value) { this.CashSaleAddress3 = value; return this; } public String getCashSaleAddress3StartsWith() { return CashSaleAddress3StartsWith; } public v_Jiwa_SalesOrder_ListQuery setCashSaleAddress3StartsWith(String value) { this.CashSaleAddress3StartsWith = value; return this; } public String getCashSaleAddress3EndsWith() { return CashSaleAddress3EndsWith; } public v_Jiwa_SalesOrder_ListQuery setCashSaleAddress3EndsWith(String value) { this.CashSaleAddress3EndsWith = value; return this; } public String getCashSaleAddress3Contains() { return CashSaleAddress3Contains; } public v_Jiwa_SalesOrder_ListQuery setCashSaleAddress3Contains(String value) { this.CashSaleAddress3Contains = value; return this; } public String getCashSaleAddress3Like() { return CashSaleAddress3Like; } public v_Jiwa_SalesOrder_ListQuery setCashSaleAddress3Like(String value) { this.CashSaleAddress3Like = value; return this; } public ArrayList getCashSaleAddress3Between() { return CashSaleAddress3Between; } public v_Jiwa_SalesOrder_ListQuery setCashSaleAddress3Between(ArrayList value) { this.CashSaleAddress3Between = value; return this; } public ArrayList getCashSaleAddress3In() { return CashSaleAddress3In; } public v_Jiwa_SalesOrder_ListQuery setCashSaleAddress3In(ArrayList value) { this.CashSaleAddress3In = value; return this; } public String getCashSaleAddress4() { return CashSaleAddress4; } public v_Jiwa_SalesOrder_ListQuery setCashSaleAddress4(String value) { this.CashSaleAddress4 = value; return this; } public String getCashSaleAddress4StartsWith() { return CashSaleAddress4StartsWith; } public v_Jiwa_SalesOrder_ListQuery setCashSaleAddress4StartsWith(String value) { this.CashSaleAddress4StartsWith = value; return this; } public String getCashSaleAddress4EndsWith() { return CashSaleAddress4EndsWith; } public v_Jiwa_SalesOrder_ListQuery setCashSaleAddress4EndsWith(String value) { this.CashSaleAddress4EndsWith = value; return this; } public String getCashSaleAddress4Contains() { return CashSaleAddress4Contains; } public v_Jiwa_SalesOrder_ListQuery setCashSaleAddress4Contains(String value) { this.CashSaleAddress4Contains = value; return this; } public String getCashSaleAddress4Like() { return CashSaleAddress4Like; } public v_Jiwa_SalesOrder_ListQuery setCashSaleAddress4Like(String value) { this.CashSaleAddress4Like = value; return this; } public ArrayList getCashSaleAddress4Between() { return CashSaleAddress4Between; } public v_Jiwa_SalesOrder_ListQuery setCashSaleAddress4Between(ArrayList value) { this.CashSaleAddress4Between = value; return this; } public ArrayList getCashSaleAddress4In() { return CashSaleAddress4In; } public v_Jiwa_SalesOrder_ListQuery setCashSaleAddress4In(ArrayList value) { this.CashSaleAddress4In = value; return this; } public String getCashSalePostcode() { return CashSalePostcode; } public v_Jiwa_SalesOrder_ListQuery setCashSalePostcode(String value) { this.CashSalePostcode = value; return this; } public String getCashSalePostcodeStartsWith() { return CashSalePostcodeStartsWith; } public v_Jiwa_SalesOrder_ListQuery setCashSalePostcodeStartsWith(String value) { this.CashSalePostcodeStartsWith = value; return this; } public String getCashSalePostcodeEndsWith() { return CashSalePostcodeEndsWith; } public v_Jiwa_SalesOrder_ListQuery setCashSalePostcodeEndsWith(String value) { this.CashSalePostcodeEndsWith = value; return this; } public String getCashSalePostcodeContains() { return CashSalePostcodeContains; } public v_Jiwa_SalesOrder_ListQuery setCashSalePostcodeContains(String value) { this.CashSalePostcodeContains = value; return this; } public String getCashSalePostcodeLike() { return CashSalePostcodeLike; } public v_Jiwa_SalesOrder_ListQuery setCashSalePostcodeLike(String value) { this.CashSalePostcodeLike = value; return this; } public ArrayList getCashSalePostcodeBetween() { return CashSalePostcodeBetween; } public v_Jiwa_SalesOrder_ListQuery setCashSalePostcodeBetween(ArrayList value) { this.CashSalePostcodeBetween = value; return this; } public ArrayList getCashSalePostcodeIn() { return CashSalePostcodeIn; } public v_Jiwa_SalesOrder_ListQuery setCashSalePostcodeIn(ArrayList value) { this.CashSalePostcodeIn = value; return this; } public String getCashSaleCompany() { return CashSaleCompany; } public v_Jiwa_SalesOrder_ListQuery setCashSaleCompany(String value) { this.CashSaleCompany = value; return this; } public String getCashSaleCompanyStartsWith() { return CashSaleCompanyStartsWith; } public v_Jiwa_SalesOrder_ListQuery setCashSaleCompanyStartsWith(String value) { this.CashSaleCompanyStartsWith = value; return this; } public String getCashSaleCompanyEndsWith() { return CashSaleCompanyEndsWith; } public v_Jiwa_SalesOrder_ListQuery setCashSaleCompanyEndsWith(String value) { this.CashSaleCompanyEndsWith = value; return this; } public String getCashSaleCompanyContains() { return CashSaleCompanyContains; } public v_Jiwa_SalesOrder_ListQuery setCashSaleCompanyContains(String value) { this.CashSaleCompanyContains = value; return this; } public String getCashSaleCompanyLike() { return CashSaleCompanyLike; } public v_Jiwa_SalesOrder_ListQuery setCashSaleCompanyLike(String value) { this.CashSaleCompanyLike = value; return this; } public ArrayList getCashSaleCompanyBetween() { return CashSaleCompanyBetween; } public v_Jiwa_SalesOrder_ListQuery setCashSaleCompanyBetween(ArrayList value) { this.CashSaleCompanyBetween = value; return this; } public ArrayList getCashSaleCompanyIn() { return CashSaleCompanyIn; } public v_Jiwa_SalesOrder_ListQuery setCashSaleCompanyIn(ArrayList value) { this.CashSaleCompanyIn = value; return this; } public String getCashSaleName() { return CashSaleName; } public v_Jiwa_SalesOrder_ListQuery setCashSaleName(String value) { this.CashSaleName = value; return this; } public String getCashSaleNameStartsWith() { return CashSaleNameStartsWith; } public v_Jiwa_SalesOrder_ListQuery setCashSaleNameStartsWith(String value) { this.CashSaleNameStartsWith = value; return this; } public String getCashSaleNameEndsWith() { return CashSaleNameEndsWith; } public v_Jiwa_SalesOrder_ListQuery setCashSaleNameEndsWith(String value) { this.CashSaleNameEndsWith = value; return this; } public String getCashSaleNameContains() { return CashSaleNameContains; } public v_Jiwa_SalesOrder_ListQuery setCashSaleNameContains(String value) { this.CashSaleNameContains = value; return this; } public String getCashSaleNameLike() { return CashSaleNameLike; } public v_Jiwa_SalesOrder_ListQuery setCashSaleNameLike(String value) { this.CashSaleNameLike = value; return this; } public ArrayList getCashSaleNameBetween() { return CashSaleNameBetween; } public v_Jiwa_SalesOrder_ListQuery setCashSaleNameBetween(ArrayList value) { this.CashSaleNameBetween = value; return this; } public ArrayList getCashSaleNameIn() { return CashSaleNameIn; } public v_Jiwa_SalesOrder_ListQuery setCashSaleNameIn(ArrayList value) { this.CashSaleNameIn = value; return this; } public String getCashSalePhone() { return CashSalePhone; } public v_Jiwa_SalesOrder_ListQuery setCashSalePhone(String value) { this.CashSalePhone = value; return this; } public String getCashSalePhoneStartsWith() { return CashSalePhoneStartsWith; } public v_Jiwa_SalesOrder_ListQuery setCashSalePhoneStartsWith(String value) { this.CashSalePhoneStartsWith = value; return this; } public String getCashSalePhoneEndsWith() { return CashSalePhoneEndsWith; } public v_Jiwa_SalesOrder_ListQuery setCashSalePhoneEndsWith(String value) { this.CashSalePhoneEndsWith = value; return this; } public String getCashSalePhoneContains() { return CashSalePhoneContains; } public v_Jiwa_SalesOrder_ListQuery setCashSalePhoneContains(String value) { this.CashSalePhoneContains = value; return this; } public String getCashSalePhoneLike() { return CashSalePhoneLike; } public v_Jiwa_SalesOrder_ListQuery setCashSalePhoneLike(String value) { this.CashSalePhoneLike = value; return this; } public ArrayList getCashSalePhoneBetween() { return CashSalePhoneBetween; } public v_Jiwa_SalesOrder_ListQuery setCashSalePhoneBetween(ArrayList value) { this.CashSalePhoneBetween = value; return this; } public ArrayList getCashSalePhoneIn() { return CashSalePhoneIn; } public v_Jiwa_SalesOrder_ListQuery setCashSalePhoneIn(ArrayList value) { this.CashSalePhoneIn = value; return this; } public String getDeliveryAddressContactName() { return DeliveryAddressContactName; } public v_Jiwa_SalesOrder_ListQuery setDeliveryAddressContactName(String value) { this.DeliveryAddressContactName = value; return this; } public String getDeliveryAddressContactNameStartsWith() { return DeliveryAddressContactNameStartsWith; } public v_Jiwa_SalesOrder_ListQuery setDeliveryAddressContactNameStartsWith(String value) { this.DeliveryAddressContactNameStartsWith = value; return this; } public String getDeliveryAddressContactNameEndsWith() { return DeliveryAddressContactNameEndsWith; } public v_Jiwa_SalesOrder_ListQuery setDeliveryAddressContactNameEndsWith(String value) { this.DeliveryAddressContactNameEndsWith = value; return this; } public String getDeliveryAddressContactNameContains() { return DeliveryAddressContactNameContains; } public v_Jiwa_SalesOrder_ListQuery setDeliveryAddressContactNameContains(String value) { this.DeliveryAddressContactNameContains = value; return this; } public String getDeliveryAddressContactNameLike() { return DeliveryAddressContactNameLike; } public v_Jiwa_SalesOrder_ListQuery setDeliveryAddressContactNameLike(String value) { this.DeliveryAddressContactNameLike = value; return this; } public ArrayList getDeliveryAddressContactNameBetween() { return DeliveryAddressContactNameBetween; } public v_Jiwa_SalesOrder_ListQuery setDeliveryAddressContactNameBetween(ArrayList value) { this.DeliveryAddressContactNameBetween = value; return this; } public ArrayList getDeliveryAddressContactNameIn() { return DeliveryAddressContactNameIn; } public v_Jiwa_SalesOrder_ListQuery setDeliveryAddressContactNameIn(ArrayList value) { this.DeliveryAddressContactNameIn = value; return this; } public String getDeliveryAddressee() { return DeliveryAddressee; } public v_Jiwa_SalesOrder_ListQuery setDeliveryAddressee(String value) { this.DeliveryAddressee = value; return this; } public String getDeliveryAddresseeStartsWith() { return DeliveryAddresseeStartsWith; } public v_Jiwa_SalesOrder_ListQuery setDeliveryAddresseeStartsWith(String value) { this.DeliveryAddresseeStartsWith = value; return this; } public String getDeliveryAddresseeEndsWith() { return DeliveryAddresseeEndsWith; } public v_Jiwa_SalesOrder_ListQuery setDeliveryAddresseeEndsWith(String value) { this.DeliveryAddresseeEndsWith = value; return this; } public String getDeliveryAddresseeContains() { return DeliveryAddresseeContains; } public v_Jiwa_SalesOrder_ListQuery setDeliveryAddresseeContains(String value) { this.DeliveryAddresseeContains = value; return this; } public String getDeliveryAddresseeLike() { return DeliveryAddresseeLike; } public v_Jiwa_SalesOrder_ListQuery setDeliveryAddresseeLike(String value) { this.DeliveryAddresseeLike = value; return this; } public ArrayList getDeliveryAddresseeBetween() { return DeliveryAddresseeBetween; } public v_Jiwa_SalesOrder_ListQuery setDeliveryAddresseeBetween(ArrayList value) { this.DeliveryAddresseeBetween = value; return this; } public ArrayList getDeliveryAddresseeIn() { return DeliveryAddresseeIn; } public v_Jiwa_SalesOrder_ListQuery setDeliveryAddresseeIn(ArrayList value) { this.DeliveryAddresseeIn = value; return this; } public String getDeliveryAddress1() { return DeliveryAddress1; } public v_Jiwa_SalesOrder_ListQuery setDeliveryAddress1(String value) { this.DeliveryAddress1 = value; return this; } public String getDeliveryAddress1StartsWith() { return DeliveryAddress1StartsWith; } public v_Jiwa_SalesOrder_ListQuery setDeliveryAddress1StartsWith(String value) { this.DeliveryAddress1StartsWith = value; return this; } public String getDeliveryAddress1EndsWith() { return DeliveryAddress1EndsWith; } public v_Jiwa_SalesOrder_ListQuery setDeliveryAddress1EndsWith(String value) { this.DeliveryAddress1EndsWith = value; return this; } public String getDeliveryAddress1Contains() { return DeliveryAddress1Contains; } public v_Jiwa_SalesOrder_ListQuery setDeliveryAddress1Contains(String value) { this.DeliveryAddress1Contains = value; return this; } public String getDeliveryAddress1Like() { return DeliveryAddress1Like; } public v_Jiwa_SalesOrder_ListQuery setDeliveryAddress1Like(String value) { this.DeliveryAddress1Like = value; return this; } public ArrayList getDeliveryAddress1Between() { return DeliveryAddress1Between; } public v_Jiwa_SalesOrder_ListQuery setDeliveryAddress1Between(ArrayList value) { this.DeliveryAddress1Between = value; return this; } public ArrayList getDeliveryAddress1In() { return DeliveryAddress1In; } public v_Jiwa_SalesOrder_ListQuery setDeliveryAddress1In(ArrayList value) { this.DeliveryAddress1In = value; return this; } public String getDeliveryAddress2() { return DeliveryAddress2; } public v_Jiwa_SalesOrder_ListQuery setDeliveryAddress2(String value) { this.DeliveryAddress2 = value; return this; } public String getDeliveryAddress2StartsWith() { return DeliveryAddress2StartsWith; } public v_Jiwa_SalesOrder_ListQuery setDeliveryAddress2StartsWith(String value) { this.DeliveryAddress2StartsWith = value; return this; } public String getDeliveryAddress2EndsWith() { return DeliveryAddress2EndsWith; } public v_Jiwa_SalesOrder_ListQuery setDeliveryAddress2EndsWith(String value) { this.DeliveryAddress2EndsWith = value; return this; } public String getDeliveryAddress2Contains() { return DeliveryAddress2Contains; } public v_Jiwa_SalesOrder_ListQuery setDeliveryAddress2Contains(String value) { this.DeliveryAddress2Contains = value; return this; } public String getDeliveryAddress2Like() { return DeliveryAddress2Like; } public v_Jiwa_SalesOrder_ListQuery setDeliveryAddress2Like(String value) { this.DeliveryAddress2Like = value; return this; } public ArrayList getDeliveryAddress2Between() { return DeliveryAddress2Between; } public v_Jiwa_SalesOrder_ListQuery setDeliveryAddress2Between(ArrayList value) { this.DeliveryAddress2Between = value; return this; } public ArrayList getDeliveryAddress2In() { return DeliveryAddress2In; } public v_Jiwa_SalesOrder_ListQuery setDeliveryAddress2In(ArrayList value) { this.DeliveryAddress2In = value; return this; } public String getDeliveryAddress3() { return DeliveryAddress3; } public v_Jiwa_SalesOrder_ListQuery setDeliveryAddress3(String value) { this.DeliveryAddress3 = value; return this; } public String getDeliveryAddress3StartsWith() { return DeliveryAddress3StartsWith; } public v_Jiwa_SalesOrder_ListQuery setDeliveryAddress3StartsWith(String value) { this.DeliveryAddress3StartsWith = value; return this; } public String getDeliveryAddress3EndsWith() { return DeliveryAddress3EndsWith; } public v_Jiwa_SalesOrder_ListQuery setDeliveryAddress3EndsWith(String value) { this.DeliveryAddress3EndsWith = value; return this; } public String getDeliveryAddress3Contains() { return DeliveryAddress3Contains; } public v_Jiwa_SalesOrder_ListQuery setDeliveryAddress3Contains(String value) { this.DeliveryAddress3Contains = value; return this; } public String getDeliveryAddress3Like() { return DeliveryAddress3Like; } public v_Jiwa_SalesOrder_ListQuery setDeliveryAddress3Like(String value) { this.DeliveryAddress3Like = value; return this; } public ArrayList getDeliveryAddress3Between() { return DeliveryAddress3Between; } public v_Jiwa_SalesOrder_ListQuery setDeliveryAddress3Between(ArrayList value) { this.DeliveryAddress3Between = value; return this; } public ArrayList getDeliveryAddress3In() { return DeliveryAddress3In; } public v_Jiwa_SalesOrder_ListQuery setDeliveryAddress3In(ArrayList value) { this.DeliveryAddress3In = value; return this; } public String getDeliveryAddress4() { return DeliveryAddress4; } public v_Jiwa_SalesOrder_ListQuery setDeliveryAddress4(String value) { this.DeliveryAddress4 = value; return this; } public String getDeliveryAddress4StartsWith() { return DeliveryAddress4StartsWith; } public v_Jiwa_SalesOrder_ListQuery setDeliveryAddress4StartsWith(String value) { this.DeliveryAddress4StartsWith = value; return this; } public String getDeliveryAddress4EndsWith() { return DeliveryAddress4EndsWith; } public v_Jiwa_SalesOrder_ListQuery setDeliveryAddress4EndsWith(String value) { this.DeliveryAddress4EndsWith = value; return this; } public String getDeliveryAddress4Contains() { return DeliveryAddress4Contains; } public v_Jiwa_SalesOrder_ListQuery setDeliveryAddress4Contains(String value) { this.DeliveryAddress4Contains = value; return this; } public String getDeliveryAddress4Like() { return DeliveryAddress4Like; } public v_Jiwa_SalesOrder_ListQuery setDeliveryAddress4Like(String value) { this.DeliveryAddress4Like = value; return this; } public ArrayList getDeliveryAddress4Between() { return DeliveryAddress4Between; } public v_Jiwa_SalesOrder_ListQuery setDeliveryAddress4Between(ArrayList value) { this.DeliveryAddress4Between = value; return this; } public ArrayList getDeliveryAddress4In() { return DeliveryAddress4In; } public v_Jiwa_SalesOrder_ListQuery setDeliveryAddress4In(ArrayList value) { this.DeliveryAddress4In = value; return this; } public String getDeliveryAddressPostcode() { return DeliveryAddressPostcode; } public v_Jiwa_SalesOrder_ListQuery setDeliveryAddressPostcode(String value) { this.DeliveryAddressPostcode = value; return this; } public String getDeliveryAddressPostcodeStartsWith() { return DeliveryAddressPostcodeStartsWith; } public v_Jiwa_SalesOrder_ListQuery setDeliveryAddressPostcodeStartsWith(String value) { this.DeliveryAddressPostcodeStartsWith = value; return this; } public String getDeliveryAddressPostcodeEndsWith() { return DeliveryAddressPostcodeEndsWith; } public v_Jiwa_SalesOrder_ListQuery setDeliveryAddressPostcodeEndsWith(String value) { this.DeliveryAddressPostcodeEndsWith = value; return this; } public String getDeliveryAddressPostcodeContains() { return DeliveryAddressPostcodeContains; } public v_Jiwa_SalesOrder_ListQuery setDeliveryAddressPostcodeContains(String value) { this.DeliveryAddressPostcodeContains = value; return this; } public String getDeliveryAddressPostcodeLike() { return DeliveryAddressPostcodeLike; } public v_Jiwa_SalesOrder_ListQuery setDeliveryAddressPostcodeLike(String value) { this.DeliveryAddressPostcodeLike = value; return this; } public ArrayList getDeliveryAddressPostcodeBetween() { return DeliveryAddressPostcodeBetween; } public v_Jiwa_SalesOrder_ListQuery setDeliveryAddressPostcodeBetween(ArrayList value) { this.DeliveryAddressPostcodeBetween = value; return this; } public ArrayList getDeliveryAddressPostcodeIn() { return DeliveryAddressPostcodeIn; } public v_Jiwa_SalesOrder_ListQuery setDeliveryAddressPostcodeIn(ArrayList value) { this.DeliveryAddressPostcodeIn = value; return this; } public String getDeliveryAddressCountry() { return DeliveryAddressCountry; } public v_Jiwa_SalesOrder_ListQuery setDeliveryAddressCountry(String value) { this.DeliveryAddressCountry = value; return this; } public String getDeliveryAddressCountryStartsWith() { return DeliveryAddressCountryStartsWith; } public v_Jiwa_SalesOrder_ListQuery setDeliveryAddressCountryStartsWith(String value) { this.DeliveryAddressCountryStartsWith = value; return this; } public String getDeliveryAddressCountryEndsWith() { return DeliveryAddressCountryEndsWith; } public v_Jiwa_SalesOrder_ListQuery setDeliveryAddressCountryEndsWith(String value) { this.DeliveryAddressCountryEndsWith = value; return this; } public String getDeliveryAddressCountryContains() { return DeliveryAddressCountryContains; } public v_Jiwa_SalesOrder_ListQuery setDeliveryAddressCountryContains(String value) { this.DeliveryAddressCountryContains = value; return this; } public String getDeliveryAddressCountryLike() { return DeliveryAddressCountryLike; } public v_Jiwa_SalesOrder_ListQuery setDeliveryAddressCountryLike(String value) { this.DeliveryAddressCountryLike = value; return this; } public ArrayList getDeliveryAddressCountryBetween() { return DeliveryAddressCountryBetween; } public v_Jiwa_SalesOrder_ListQuery setDeliveryAddressCountryBetween(ArrayList value) { this.DeliveryAddressCountryBetween = value; return this; } public ArrayList getDeliveryAddressCountryIn() { return DeliveryAddressCountryIn; } public v_Jiwa_SalesOrder_ListQuery setDeliveryAddressCountryIn(ArrayList value) { this.DeliveryAddressCountryIn = value; return this; } public Boolean isDelivered() { return Delivered; } public v_Jiwa_SalesOrder_ListQuery setDelivered(Boolean value) { this.Delivered = value; return this; } public Date getDeliveredDate() { return DeliveredDate; } public v_Jiwa_SalesOrder_ListQuery setDeliveredDate(Date value) { this.DeliveredDate = value; return this; } public Date getDeliveredDateGreaterThanOrEqualTo() { return DeliveredDateGreaterThanOrEqualTo; } public v_Jiwa_SalesOrder_ListQuery setDeliveredDateGreaterThanOrEqualTo(Date value) { this.DeliveredDateGreaterThanOrEqualTo = value; return this; } public Date getDeliveredDateGreaterThan() { return DeliveredDateGreaterThan; } public v_Jiwa_SalesOrder_ListQuery setDeliveredDateGreaterThan(Date value) { this.DeliveredDateGreaterThan = value; return this; } public Date getDeliveredDateLessThan() { return DeliveredDateLessThan; } public v_Jiwa_SalesOrder_ListQuery setDeliveredDateLessThan(Date value) { this.DeliveredDateLessThan = value; return this; } public Date getDeliveredDateLessThanOrEqualTo() { return DeliveredDateLessThanOrEqualTo; } public v_Jiwa_SalesOrder_ListQuery setDeliveredDateLessThanOrEqualTo(Date value) { this.DeliveredDateLessThanOrEqualTo = value; return this; } public Date getDeliveredDateNotEqualTo() { return DeliveredDateNotEqualTo; } public v_Jiwa_SalesOrder_ListQuery setDeliveredDateNotEqualTo(Date value) { this.DeliveredDateNotEqualTo = value; return this; } public ArrayList getDeliveredDateBetween() { return DeliveredDateBetween; } public v_Jiwa_SalesOrder_ListQuery setDeliveredDateBetween(ArrayList value) { this.DeliveredDateBetween = value; return this; } public ArrayList getDeliveredDateIn() { return DeliveredDateIn; } public v_Jiwa_SalesOrder_ListQuery setDeliveredDateIn(ArrayList value) { this.DeliveredDateIn = value; return this; } public String getConsignmentNote() { return ConsignmentNote; } public v_Jiwa_SalesOrder_ListQuery setConsignmentNote(String value) { this.ConsignmentNote = value; return this; } public String getConsignmentNoteStartsWith() { return ConsignmentNoteStartsWith; } public v_Jiwa_SalesOrder_ListQuery setConsignmentNoteStartsWith(String value) { this.ConsignmentNoteStartsWith = value; return this; } public String getConsignmentNoteEndsWith() { return ConsignmentNoteEndsWith; } public v_Jiwa_SalesOrder_ListQuery setConsignmentNoteEndsWith(String value) { this.ConsignmentNoteEndsWith = value; return this; } public String getConsignmentNoteContains() { return ConsignmentNoteContains; } public v_Jiwa_SalesOrder_ListQuery setConsignmentNoteContains(String value) { this.ConsignmentNoteContains = value; return this; } public String getConsignmentNoteLike() { return ConsignmentNoteLike; } public v_Jiwa_SalesOrder_ListQuery setConsignmentNoteLike(String value) { this.ConsignmentNoteLike = value; return this; } public ArrayList getConsignmentNoteBetween() { return ConsignmentNoteBetween; } public v_Jiwa_SalesOrder_ListQuery setConsignmentNoteBetween(ArrayList value) { this.ConsignmentNoteBetween = value; return this; } public ArrayList getConsignmentNoteIn() { return ConsignmentNoteIn; } public v_Jiwa_SalesOrder_ListQuery setConsignmentNoteIn(ArrayList value) { this.ConsignmentNoteIn = value; return this; } public BigDecimal getCartageCharge1() { return CartageCharge1; } public v_Jiwa_SalesOrder_ListQuery setCartageCharge1(BigDecimal value) { this.CartageCharge1 = value; return this; } public BigDecimal getCartageCharge1GreaterThanOrEqualTo() { return CartageCharge1GreaterThanOrEqualTo; } public v_Jiwa_SalesOrder_ListQuery setCartageCharge1GreaterThanOrEqualTo(BigDecimal value) { this.CartageCharge1GreaterThanOrEqualTo = value; return this; } public BigDecimal getCartageCharge1GreaterThan() { return CartageCharge1GreaterThan; } public v_Jiwa_SalesOrder_ListQuery setCartageCharge1GreaterThan(BigDecimal value) { this.CartageCharge1GreaterThan = value; return this; } public BigDecimal getCartageCharge1LessThan() { return CartageCharge1LessThan; } public v_Jiwa_SalesOrder_ListQuery setCartageCharge1LessThan(BigDecimal value) { this.CartageCharge1LessThan = value; return this; } public BigDecimal getCartageCharge1LessThanOrEqualTo() { return CartageCharge1LessThanOrEqualTo; } public v_Jiwa_SalesOrder_ListQuery setCartageCharge1LessThanOrEqualTo(BigDecimal value) { this.CartageCharge1LessThanOrEqualTo = value; return this; } public BigDecimal getCartageCharge1NotEqualTo() { return CartageCharge1NotEqualTo; } public v_Jiwa_SalesOrder_ListQuery setCartageCharge1NotEqualTo(BigDecimal value) { this.CartageCharge1NotEqualTo = value; return this; } public ArrayList getCartageCharge1Between() { return CartageCharge1Between; } public v_Jiwa_SalesOrder_ListQuery setCartageCharge1Between(ArrayList value) { this.CartageCharge1Between = value; return this; } public ArrayList getCartageCharge1In() { return CartageCharge1In; } public v_Jiwa_SalesOrder_ListQuery setCartageCharge1In(ArrayList value) { this.CartageCharge1In = value; return this; } public BigDecimal getCartage1TaxAmount() { return Cartage1TaxAmount; } public v_Jiwa_SalesOrder_ListQuery setCartage1TaxAmount(BigDecimal value) { this.Cartage1TaxAmount = value; return this; } public BigDecimal getCartage1TaxAmountGreaterThanOrEqualTo() { return Cartage1TaxAmountGreaterThanOrEqualTo; } public v_Jiwa_SalesOrder_ListQuery setCartage1TaxAmountGreaterThanOrEqualTo(BigDecimal value) { this.Cartage1TaxAmountGreaterThanOrEqualTo = value; return this; } public BigDecimal getCartage1TaxAmountGreaterThan() { return Cartage1TaxAmountGreaterThan; } public v_Jiwa_SalesOrder_ListQuery setCartage1TaxAmountGreaterThan(BigDecimal value) { this.Cartage1TaxAmountGreaterThan = value; return this; } public BigDecimal getCartage1TaxAmountLessThan() { return Cartage1TaxAmountLessThan; } public v_Jiwa_SalesOrder_ListQuery setCartage1TaxAmountLessThan(BigDecimal value) { this.Cartage1TaxAmountLessThan = value; return this; } public BigDecimal getCartage1TaxAmountLessThanOrEqualTo() { return Cartage1TaxAmountLessThanOrEqualTo; } public v_Jiwa_SalesOrder_ListQuery setCartage1TaxAmountLessThanOrEqualTo(BigDecimal value) { this.Cartage1TaxAmountLessThanOrEqualTo = value; return this; } public BigDecimal getCartage1TaxAmountNotEqualTo() { return Cartage1TaxAmountNotEqualTo; } public v_Jiwa_SalesOrder_ListQuery setCartage1TaxAmountNotEqualTo(BigDecimal value) { this.Cartage1TaxAmountNotEqualTo = value; return this; } public ArrayList getCartage1TaxAmountBetween() { return Cartage1TaxAmountBetween; } public v_Jiwa_SalesOrder_ListQuery setCartage1TaxAmountBetween(ArrayList value) { this.Cartage1TaxAmountBetween = value; return this; } public ArrayList getCartage1TaxAmountIn() { return Cartage1TaxAmountIn; } public v_Jiwa_SalesOrder_ListQuery setCartage1TaxAmountIn(ArrayList value) { this.Cartage1TaxAmountIn = value; return this; } public BigDecimal getCartageCharge2() { return CartageCharge2; } public v_Jiwa_SalesOrder_ListQuery setCartageCharge2(BigDecimal value) { this.CartageCharge2 = value; return this; } public BigDecimal getCartageCharge2GreaterThanOrEqualTo() { return CartageCharge2GreaterThanOrEqualTo; } public v_Jiwa_SalesOrder_ListQuery setCartageCharge2GreaterThanOrEqualTo(BigDecimal value) { this.CartageCharge2GreaterThanOrEqualTo = value; return this; } public BigDecimal getCartageCharge2GreaterThan() { return CartageCharge2GreaterThan; } public v_Jiwa_SalesOrder_ListQuery setCartageCharge2GreaterThan(BigDecimal value) { this.CartageCharge2GreaterThan = value; return this; } public BigDecimal getCartageCharge2LessThan() { return CartageCharge2LessThan; } public v_Jiwa_SalesOrder_ListQuery setCartageCharge2LessThan(BigDecimal value) { this.CartageCharge2LessThan = value; return this; } public BigDecimal getCartageCharge2LessThanOrEqualTo() { return CartageCharge2LessThanOrEqualTo; } public v_Jiwa_SalesOrder_ListQuery setCartageCharge2LessThanOrEqualTo(BigDecimal value) { this.CartageCharge2LessThanOrEqualTo = value; return this; } public BigDecimal getCartageCharge2NotEqualTo() { return CartageCharge2NotEqualTo; } public v_Jiwa_SalesOrder_ListQuery setCartageCharge2NotEqualTo(BigDecimal value) { this.CartageCharge2NotEqualTo = value; return this; } public ArrayList getCartageCharge2Between() { return CartageCharge2Between; } public v_Jiwa_SalesOrder_ListQuery setCartageCharge2Between(ArrayList value) { this.CartageCharge2Between = value; return this; } public ArrayList getCartageCharge2In() { return CartageCharge2In; } public v_Jiwa_SalesOrder_ListQuery setCartageCharge2In(ArrayList value) { this.CartageCharge2In = value; return this; } public BigDecimal getCartage2TaxAmount() { return Cartage2TaxAmount; } public v_Jiwa_SalesOrder_ListQuery setCartage2TaxAmount(BigDecimal value) { this.Cartage2TaxAmount = value; return this; } public BigDecimal getCartage2TaxAmountGreaterThanOrEqualTo() { return Cartage2TaxAmountGreaterThanOrEqualTo; } public v_Jiwa_SalesOrder_ListQuery setCartage2TaxAmountGreaterThanOrEqualTo(BigDecimal value) { this.Cartage2TaxAmountGreaterThanOrEqualTo = value; return this; } public BigDecimal getCartage2TaxAmountGreaterThan() { return Cartage2TaxAmountGreaterThan; } public v_Jiwa_SalesOrder_ListQuery setCartage2TaxAmountGreaterThan(BigDecimal value) { this.Cartage2TaxAmountGreaterThan = value; return this; } public BigDecimal getCartage2TaxAmountLessThan() { return Cartage2TaxAmountLessThan; } public v_Jiwa_SalesOrder_ListQuery setCartage2TaxAmountLessThan(BigDecimal value) { this.Cartage2TaxAmountLessThan = value; return this; } public BigDecimal getCartage2TaxAmountLessThanOrEqualTo() { return Cartage2TaxAmountLessThanOrEqualTo; } public v_Jiwa_SalesOrder_ListQuery setCartage2TaxAmountLessThanOrEqualTo(BigDecimal value) { this.Cartage2TaxAmountLessThanOrEqualTo = value; return this; } public BigDecimal getCartage2TaxAmountNotEqualTo() { return Cartage2TaxAmountNotEqualTo; } public v_Jiwa_SalesOrder_ListQuery setCartage2TaxAmountNotEqualTo(BigDecimal value) { this.Cartage2TaxAmountNotEqualTo = value; return this; } public ArrayList getCartage2TaxAmountBetween() { return Cartage2TaxAmountBetween; } public v_Jiwa_SalesOrder_ListQuery setCartage2TaxAmountBetween(ArrayList value) { this.Cartage2TaxAmountBetween = value; return this; } public ArrayList getCartage2TaxAmountIn() { return Cartage2TaxAmountIn; } public v_Jiwa_SalesOrder_ListQuery setCartage2TaxAmountIn(ArrayList value) { this.Cartage2TaxAmountIn = value; return this; } public BigDecimal getCartageCharge3() { return CartageCharge3; } public v_Jiwa_SalesOrder_ListQuery setCartageCharge3(BigDecimal value) { this.CartageCharge3 = value; return this; } public BigDecimal getCartageCharge3GreaterThanOrEqualTo() { return CartageCharge3GreaterThanOrEqualTo; } public v_Jiwa_SalesOrder_ListQuery setCartageCharge3GreaterThanOrEqualTo(BigDecimal value) { this.CartageCharge3GreaterThanOrEqualTo = value; return this; } public BigDecimal getCartageCharge3GreaterThan() { return CartageCharge3GreaterThan; } public v_Jiwa_SalesOrder_ListQuery setCartageCharge3GreaterThan(BigDecimal value) { this.CartageCharge3GreaterThan = value; return this; } public BigDecimal getCartageCharge3LessThan() { return CartageCharge3LessThan; } public v_Jiwa_SalesOrder_ListQuery setCartageCharge3LessThan(BigDecimal value) { this.CartageCharge3LessThan = value; return this; } public BigDecimal getCartageCharge3LessThanOrEqualTo() { return CartageCharge3LessThanOrEqualTo; } public v_Jiwa_SalesOrder_ListQuery setCartageCharge3LessThanOrEqualTo(BigDecimal value) { this.CartageCharge3LessThanOrEqualTo = value; return this; } public BigDecimal getCartageCharge3NotEqualTo() { return CartageCharge3NotEqualTo; } public v_Jiwa_SalesOrder_ListQuery setCartageCharge3NotEqualTo(BigDecimal value) { this.CartageCharge3NotEqualTo = value; return this; } public ArrayList getCartageCharge3Between() { return CartageCharge3Between; } public v_Jiwa_SalesOrder_ListQuery setCartageCharge3Between(ArrayList value) { this.CartageCharge3Between = value; return this; } public ArrayList getCartageCharge3In() { return CartageCharge3In; } public v_Jiwa_SalesOrder_ListQuery setCartageCharge3In(ArrayList value) { this.CartageCharge3In = value; return this; } public BigDecimal getCartage3TaxAmount() { return Cartage3TaxAmount; } public v_Jiwa_SalesOrder_ListQuery setCartage3TaxAmount(BigDecimal value) { this.Cartage3TaxAmount = value; return this; } public BigDecimal getCartage3TaxAmountGreaterThanOrEqualTo() { return Cartage3TaxAmountGreaterThanOrEqualTo; } public v_Jiwa_SalesOrder_ListQuery setCartage3TaxAmountGreaterThanOrEqualTo(BigDecimal value) { this.Cartage3TaxAmountGreaterThanOrEqualTo = value; return this; } public BigDecimal getCartage3TaxAmountGreaterThan() { return Cartage3TaxAmountGreaterThan; } public v_Jiwa_SalesOrder_ListQuery setCartage3TaxAmountGreaterThan(BigDecimal value) { this.Cartage3TaxAmountGreaterThan = value; return this; } public BigDecimal getCartage3TaxAmountLessThan() { return Cartage3TaxAmountLessThan; } public v_Jiwa_SalesOrder_ListQuery setCartage3TaxAmountLessThan(BigDecimal value) { this.Cartage3TaxAmountLessThan = value; return this; } public BigDecimal getCartage3TaxAmountLessThanOrEqualTo() { return Cartage3TaxAmountLessThanOrEqualTo; } public v_Jiwa_SalesOrder_ListQuery setCartage3TaxAmountLessThanOrEqualTo(BigDecimal value) { this.Cartage3TaxAmountLessThanOrEqualTo = value; return this; } public BigDecimal getCartage3TaxAmountNotEqualTo() { return Cartage3TaxAmountNotEqualTo; } public v_Jiwa_SalesOrder_ListQuery setCartage3TaxAmountNotEqualTo(BigDecimal value) { this.Cartage3TaxAmountNotEqualTo = value; return this; } public ArrayList getCartage3TaxAmountBetween() { return Cartage3TaxAmountBetween; } public v_Jiwa_SalesOrder_ListQuery setCartage3TaxAmountBetween(ArrayList value) { this.Cartage3TaxAmountBetween = value; return this; } public ArrayList getCartage3TaxAmountIn() { return Cartage3TaxAmountIn; } public v_Jiwa_SalesOrder_ListQuery setCartage3TaxAmountIn(ArrayList value) { this.Cartage3TaxAmountIn = value; return this; } public String getCourierDetails() { return CourierDetails; } public v_Jiwa_SalesOrder_ListQuery setCourierDetails(String value) { this.CourierDetails = value; return this; } public String getCourierDetailsStartsWith() { return CourierDetailsStartsWith; } public v_Jiwa_SalesOrder_ListQuery setCourierDetailsStartsWith(String value) { this.CourierDetailsStartsWith = value; return this; } public String getCourierDetailsEndsWith() { return CourierDetailsEndsWith; } public v_Jiwa_SalesOrder_ListQuery setCourierDetailsEndsWith(String value) { this.CourierDetailsEndsWith = value; return this; } public String getCourierDetailsContains() { return CourierDetailsContains; } public v_Jiwa_SalesOrder_ListQuery setCourierDetailsContains(String value) { this.CourierDetailsContains = value; return this; } public String getCourierDetailsLike() { return CourierDetailsLike; } public v_Jiwa_SalesOrder_ListQuery setCourierDetailsLike(String value) { this.CourierDetailsLike = value; return this; } public ArrayList getCourierDetailsBetween() { return CourierDetailsBetween; } public v_Jiwa_SalesOrder_ListQuery setCourierDetailsBetween(ArrayList value) { this.CourierDetailsBetween = value; return this; } public ArrayList getCourierDetailsIn() { return CourierDetailsIn; } public v_Jiwa_SalesOrder_ListQuery setCourierDetailsIn(ArrayList value) { this.CourierDetailsIn = value; return this; } public String getNotes() { return Notes; } public v_Jiwa_SalesOrder_ListQuery setNotes(String value) { this.Notes = value; return this; } public String getNotesStartsWith() { return NotesStartsWith; } public v_Jiwa_SalesOrder_ListQuery setNotesStartsWith(String value) { this.NotesStartsWith = value; return this; } public String getNotesEndsWith() { return NotesEndsWith; } public v_Jiwa_SalesOrder_ListQuery setNotesEndsWith(String value) { this.NotesEndsWith = value; return this; } public String getNotesContains() { return NotesContains; } public v_Jiwa_SalesOrder_ListQuery setNotesContains(String value) { this.NotesContains = value; return this; } public String getNotesLike() { return NotesLike; } public v_Jiwa_SalesOrder_ListQuery setNotesLike(String value) { this.NotesLike = value; return this; } public ArrayList getNotesBetween() { return NotesBetween; } public v_Jiwa_SalesOrder_ListQuery setNotesBetween(ArrayList value) { this.NotesBetween = value; return this; } public ArrayList getNotesIn() { return NotesIn; } public v_Jiwa_SalesOrder_ListQuery setNotesIn(ArrayList value) { this.NotesIn = value; return this; } public String getEmailAddress() { return EmailAddress; } public v_Jiwa_SalesOrder_ListQuery setEmailAddress(String value) { this.EmailAddress = value; return this; } public String getEmailAddressStartsWith() { return EmailAddressStartsWith; } public v_Jiwa_SalesOrder_ListQuery setEmailAddressStartsWith(String value) { this.EmailAddressStartsWith = value; return this; } public String getEmailAddressEndsWith() { return EmailAddressEndsWith; } public v_Jiwa_SalesOrder_ListQuery setEmailAddressEndsWith(String value) { this.EmailAddressEndsWith = value; return this; } public String getEmailAddressContains() { return EmailAddressContains; } public v_Jiwa_SalesOrder_ListQuery setEmailAddressContains(String value) { this.EmailAddressContains = value; return this; } public String getEmailAddressLike() { return EmailAddressLike; } public v_Jiwa_SalesOrder_ListQuery setEmailAddressLike(String value) { this.EmailAddressLike = value; return this; } public ArrayList getEmailAddressBetween() { return EmailAddressBetween; } public v_Jiwa_SalesOrder_ListQuery setEmailAddressBetween(ArrayList value) { this.EmailAddressBetween = value; return this; } public ArrayList getEmailAddressIn() { return EmailAddressIn; } public v_Jiwa_SalesOrder_ListQuery setEmailAddressIn(ArrayList value) { this.EmailAddressIn = value; return this; } public String getStaffID() { return StaffID; } public v_Jiwa_SalesOrder_ListQuery setStaffID(String value) { this.StaffID = value; return this; } public String getStaffIDStartsWith() { return StaffIDStartsWith; } public v_Jiwa_SalesOrder_ListQuery setStaffIDStartsWith(String value) { this.StaffIDStartsWith = value; return this; } public String getStaffIDEndsWith() { return StaffIDEndsWith; } public v_Jiwa_SalesOrder_ListQuery setStaffIDEndsWith(String value) { this.StaffIDEndsWith = value; return this; } public String getStaffIDContains() { return StaffIDContains; } public v_Jiwa_SalesOrder_ListQuery setStaffIDContains(String value) { this.StaffIDContains = value; return this; } public String getStaffIDLike() { return StaffIDLike; } public v_Jiwa_SalesOrder_ListQuery setStaffIDLike(String value) { this.StaffIDLike = value; return this; } public ArrayList getStaffIDBetween() { return StaffIDBetween; } public v_Jiwa_SalesOrder_ListQuery setStaffIDBetween(ArrayList value) { this.StaffIDBetween = value; return this; } public ArrayList getStaffIDIn() { return StaffIDIn; } public v_Jiwa_SalesOrder_ListQuery setStaffIDIn(ArrayList value) { this.StaffIDIn = value; return this; } public String getStaffTitle() { return StaffTitle; } public v_Jiwa_SalesOrder_ListQuery setStaffTitle(String value) { this.StaffTitle = value; return this; } public String getStaffTitleStartsWith() { return StaffTitleStartsWith; } public v_Jiwa_SalesOrder_ListQuery setStaffTitleStartsWith(String value) { this.StaffTitleStartsWith = value; return this; } public String getStaffTitleEndsWith() { return StaffTitleEndsWith; } public v_Jiwa_SalesOrder_ListQuery setStaffTitleEndsWith(String value) { this.StaffTitleEndsWith = value; return this; } public String getStaffTitleContains() { return StaffTitleContains; } public v_Jiwa_SalesOrder_ListQuery setStaffTitleContains(String value) { this.StaffTitleContains = value; return this; } public String getStaffTitleLike() { return StaffTitleLike; } public v_Jiwa_SalesOrder_ListQuery setStaffTitleLike(String value) { this.StaffTitleLike = value; return this; } public ArrayList getStaffTitleBetween() { return StaffTitleBetween; } public v_Jiwa_SalesOrder_ListQuery setStaffTitleBetween(ArrayList value) { this.StaffTitleBetween = value; return this; } public ArrayList getStaffTitleIn() { return StaffTitleIn; } public v_Jiwa_SalesOrder_ListQuery setStaffTitleIn(ArrayList value) { this.StaffTitleIn = value; return this; } public String getStaffFirstName() { return StaffFirstName; } public v_Jiwa_SalesOrder_ListQuery setStaffFirstName(String value) { this.StaffFirstName = value; return this; } public String getStaffFirstNameStartsWith() { return StaffFirstNameStartsWith; } public v_Jiwa_SalesOrder_ListQuery setStaffFirstNameStartsWith(String value) { this.StaffFirstNameStartsWith = value; return this; } public String getStaffFirstNameEndsWith() { return StaffFirstNameEndsWith; } public v_Jiwa_SalesOrder_ListQuery setStaffFirstNameEndsWith(String value) { this.StaffFirstNameEndsWith = value; return this; } public String getStaffFirstNameContains() { return StaffFirstNameContains; } public v_Jiwa_SalesOrder_ListQuery setStaffFirstNameContains(String value) { this.StaffFirstNameContains = value; return this; } public String getStaffFirstNameLike() { return StaffFirstNameLike; } public v_Jiwa_SalesOrder_ListQuery setStaffFirstNameLike(String value) { this.StaffFirstNameLike = value; return this; } public ArrayList getStaffFirstNameBetween() { return StaffFirstNameBetween; } public v_Jiwa_SalesOrder_ListQuery setStaffFirstNameBetween(ArrayList value) { this.StaffFirstNameBetween = value; return this; } public ArrayList getStaffFirstNameIn() { return StaffFirstNameIn; } public v_Jiwa_SalesOrder_ListQuery setStaffFirstNameIn(ArrayList value) { this.StaffFirstNameIn = value; return this; } public String getStaffSurname() { return StaffSurname; } public v_Jiwa_SalesOrder_ListQuery setStaffSurname(String value) { this.StaffSurname = value; return this; } public String getStaffSurnameStartsWith() { return StaffSurnameStartsWith; } public v_Jiwa_SalesOrder_ListQuery setStaffSurnameStartsWith(String value) { this.StaffSurnameStartsWith = value; return this; } public String getStaffSurnameEndsWith() { return StaffSurnameEndsWith; } public v_Jiwa_SalesOrder_ListQuery setStaffSurnameEndsWith(String value) { this.StaffSurnameEndsWith = value; return this; } public String getStaffSurnameContains() { return StaffSurnameContains; } public v_Jiwa_SalesOrder_ListQuery setStaffSurnameContains(String value) { this.StaffSurnameContains = value; return this; } public String getStaffSurnameLike() { return StaffSurnameLike; } public v_Jiwa_SalesOrder_ListQuery setStaffSurnameLike(String value) { this.StaffSurnameLike = value; return this; } public ArrayList getStaffSurnameBetween() { return StaffSurnameBetween; } public v_Jiwa_SalesOrder_ListQuery setStaffSurnameBetween(ArrayList value) { this.StaffSurnameBetween = value; return this; } public ArrayList getStaffSurnameIn() { return StaffSurnameIn; } public v_Jiwa_SalesOrder_ListQuery setStaffSurnameIn(ArrayList value) { this.StaffSurnameIn = value; return this; } public String getStaffUsername() { return StaffUsername; } public v_Jiwa_SalesOrder_ListQuery setStaffUsername(String value) { this.StaffUsername = value; return this; } public String getStaffUsernameStartsWith() { return StaffUsernameStartsWith; } public v_Jiwa_SalesOrder_ListQuery setStaffUsernameStartsWith(String value) { this.StaffUsernameStartsWith = value; return this; } public String getStaffUsernameEndsWith() { return StaffUsernameEndsWith; } public v_Jiwa_SalesOrder_ListQuery setStaffUsernameEndsWith(String value) { this.StaffUsernameEndsWith = value; return this; } public String getStaffUsernameContains() { return StaffUsernameContains; } public v_Jiwa_SalesOrder_ListQuery setStaffUsernameContains(String value) { this.StaffUsernameContains = value; return this; } public String getStaffUsernameLike() { return StaffUsernameLike; } public v_Jiwa_SalesOrder_ListQuery setStaffUsernameLike(String value) { this.StaffUsernameLike = value; return this; } public ArrayList getStaffUsernameBetween() { return StaffUsernameBetween; } public v_Jiwa_SalesOrder_ListQuery setStaffUsernameBetween(ArrayList value) { this.StaffUsernameBetween = value; return this; } public ArrayList getStaffUsernameIn() { return StaffUsernameIn; } public v_Jiwa_SalesOrder_ListQuery setStaffUsernameIn(ArrayList value) { this.StaffUsernameIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @Route(Path="/Queries/SalesQuoteList", Verbs="GET") @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class v_Jiwa_SalesQuote_ListQuery extends QueryDb implements IReturn> { public String InvoiceID = null; public String InvoiceIDStartsWith = null; public String InvoiceIDEndsWith = null; public String InvoiceIDContains = null; public String InvoiceIDLike = null; public ArrayList InvoiceIDBetween = null; public ArrayList InvoiceIDIn = null; public String InvoiceNo = null; public String InvoiceNoStartsWith = null; public String InvoiceNoEndsWith = null; public String InvoiceNoContains = null; public String InvoiceNoLike = null; public ArrayList InvoiceNoBetween = null; public ArrayList InvoiceNoIn = null; public String OrderNo = null; public String OrderNoStartsWith = null; public String OrderNoEndsWith = null; public String OrderNoContains = null; public String OrderNoLike = null; public ArrayList OrderNoBetween = null; public ArrayList OrderNoIn = null; public String QOReference = null; public String QOReferenceStartsWith = null; public String QOReferenceEndsWith = null; public String QOReferenceContains = null; public String QOReferenceLike = null; public ArrayList QOReferenceBetween = null; public ArrayList QOReferenceIn = null; public Date InvoiceInitDate = null; public Date InvoiceInitDateGreaterThanOrEqualTo = null; public Date InvoiceInitDateGreaterThan = null; public Date InvoiceInitDateLessThan = null; public Date InvoiceInitDateLessThanOrEqualTo = null; public Date InvoiceInitDateNotEqualTo = null; public ArrayList InvoiceInitDateBetween = null; public ArrayList InvoiceInitDateIn = null; public Short Status = null; public Short StatusGreaterThanOrEqualTo = null; public Short StatusGreaterThan = null; public Short StatusLessThan = null; public Short StatusLessThanOrEqualTo = null; public Short StatusNotEqualTo = null; public ArrayList StatusBetween = null; public ArrayList StatusIn = null; public Date LastSavedDateTime = null; public Date LastSavedDateTimeGreaterThanOrEqualTo = null; public Date LastSavedDateTimeGreaterThan = null; public Date LastSavedDateTimeLessThan = null; public Date LastSavedDateTimeLessThanOrEqualTo = null; public Date LastSavedDateTimeNotEqualTo = null; public ArrayList LastSavedDateTimeBetween = null; public ArrayList LastSavedDateTimeIn = null; public BigDecimal InvoiceTotal = null; public BigDecimal InvoiceTotalGreaterThanOrEqualTo = null; public BigDecimal InvoiceTotalGreaterThan = null; public BigDecimal InvoiceTotalLessThan = null; public BigDecimal InvoiceTotalLessThanOrEqualTo = null; public BigDecimal InvoiceTotalNotEqualTo = null; public ArrayList InvoiceTotalBetween = null; public ArrayList InvoiceTotalIn = null; public String DebtorID = null; public String DebtorIDStartsWith = null; public String DebtorIDEndsWith = null; public String DebtorIDContains = null; public String DebtorIDLike = null; public ArrayList DebtorIDBetween = null; public ArrayList DebtorIDIn = null; public String AccountNo = null; public String AccountNoStartsWith = null; public String AccountNoEndsWith = null; public String AccountNoContains = null; public String AccountNoLike = null; public ArrayList AccountNoBetween = null; public ArrayList AccountNoIn = null; public String DebtorName = null; public String DebtorNameStartsWith = null; public String DebtorNameEndsWith = null; public String DebtorNameContains = null; public String DebtorNameLike = null; public ArrayList DebtorNameBetween = null; public ArrayList DebtorNameIn = null; public String IN_LogicalID = null; public String IN_LogicalIDStartsWith = null; public String IN_LogicalIDEndsWith = null; public String IN_LogicalIDContains = null; public String IN_LogicalIDLike = null; public ArrayList IN_LogicalIDBetween = null; public ArrayList IN_LogicalIDIn = null; public String LogicalWarehouseDescription = null; public String LogicalWarehouseDescriptionStartsWith = null; public String LogicalWarehouseDescriptionEndsWith = null; public String LogicalWarehouseDescriptionContains = null; public String LogicalWarehouseDescriptionLike = null; public ArrayList LogicalWarehouseDescriptionBetween = null; public ArrayList LogicalWarehouseDescriptionIn = null; public String IN_PhysicalID = null; public String IN_PhysicalIDStartsWith = null; public String IN_PhysicalIDEndsWith = null; public String IN_PhysicalIDContains = null; public String IN_PhysicalIDLike = null; public ArrayList IN_PhysicalIDBetween = null; public ArrayList IN_PhysicalIDIn = null; public String PhysicalWarehouseDescription = null; public String PhysicalWarehouseDescriptionStartsWith = null; public String PhysicalWarehouseDescriptionEndsWith = null; public String PhysicalWarehouseDescriptionContains = null; public String PhysicalWarehouseDescriptionLike = null; public ArrayList PhysicalWarehouseDescriptionBetween = null; public ArrayList PhysicalWarehouseDescriptionIn = null; public String BranchID = null; public String BranchIDStartsWith = null; public String BranchIDEndsWith = null; public String BranchIDContains = null; public String BranchIDLike = null; public ArrayList BranchIDBetween = null; public ArrayList BranchIDIn = null; public String BranchDescription = null; public String BranchDescriptionStartsWith = null; public String BranchDescriptionEndsWith = null; public String BranchDescriptionContains = null; public String BranchDescriptionLike = null; public ArrayList BranchDescriptionBetween = null; public ArrayList BranchDescriptionIn = null; public String CashSaleAddress1 = null; public String CashSaleAddress1StartsWith = null; public String CashSaleAddress1EndsWith = null; public String CashSaleAddress1Contains = null; public String CashSaleAddress1Like = null; public ArrayList CashSaleAddress1Between = null; public ArrayList CashSaleAddress1In = null; public String CashSaleAddress2 = null; public String CashSaleAddress2StartsWith = null; public String CashSaleAddress2EndsWith = null; public String CashSaleAddress2Contains = null; public String CashSaleAddress2Like = null; public ArrayList CashSaleAddress2Between = null; public ArrayList CashSaleAddress2In = null; public String CashSaleAddress3 = null; public String CashSaleAddress3StartsWith = null; public String CashSaleAddress3EndsWith = null; public String CashSaleAddress3Contains = null; public String CashSaleAddress3Like = null; public ArrayList CashSaleAddress3Between = null; public ArrayList CashSaleAddress3In = null; public String CashSaleAddress4 = null; public String CashSaleAddress4StartsWith = null; public String CashSaleAddress4EndsWith = null; public String CashSaleAddress4Contains = null; public String CashSaleAddress4Like = null; public ArrayList CashSaleAddress4Between = null; public ArrayList CashSaleAddress4In = null; public String CashSalePostcode = null; public String CashSalePostcodeStartsWith = null; public String CashSalePostcodeEndsWith = null; public String CashSalePostcodeContains = null; public String CashSalePostcodeLike = null; public ArrayList CashSalePostcodeBetween = null; public ArrayList CashSalePostcodeIn = null; public String CashSaleCompany = null; public String CashSaleCompanyStartsWith = null; public String CashSaleCompanyEndsWith = null; public String CashSaleCompanyContains = null; public String CashSaleCompanyLike = null; public ArrayList CashSaleCompanyBetween = null; public ArrayList CashSaleCompanyIn = null; public String CashSaleName = null; public String CashSaleNameStartsWith = null; public String CashSaleNameEndsWith = null; public String CashSaleNameContains = null; public String CashSaleNameLike = null; public ArrayList CashSaleNameBetween = null; public ArrayList CashSaleNameIn = null; public String CashSalePhone = null; public String CashSalePhoneStartsWith = null; public String CashSalePhoneEndsWith = null; public String CashSalePhoneContains = null; public String CashSalePhoneLike = null; public ArrayList CashSalePhoneBetween = null; public ArrayList CashSalePhoneIn = null; public String DeliveryAddressContactName = null; public String DeliveryAddressContactNameStartsWith = null; public String DeliveryAddressContactNameEndsWith = null; public String DeliveryAddressContactNameContains = null; public String DeliveryAddressContactNameLike = null; public ArrayList DeliveryAddressContactNameBetween = null; public ArrayList DeliveryAddressContactNameIn = null; public String DeliveryAddressee = null; public String DeliveryAddresseeStartsWith = null; public String DeliveryAddresseeEndsWith = null; public String DeliveryAddresseeContains = null; public String DeliveryAddresseeLike = null; public ArrayList DeliveryAddresseeBetween = null; public ArrayList DeliveryAddresseeIn = null; public String DeliveryAddress1 = null; public String DeliveryAddress1StartsWith = null; public String DeliveryAddress1EndsWith = null; public String DeliveryAddress1Contains = null; public String DeliveryAddress1Like = null; public ArrayList DeliveryAddress1Between = null; public ArrayList DeliveryAddress1In = null; public String DeliveryAddress2 = null; public String DeliveryAddress2StartsWith = null; public String DeliveryAddress2EndsWith = null; public String DeliveryAddress2Contains = null; public String DeliveryAddress2Like = null; public ArrayList DeliveryAddress2Between = null; public ArrayList DeliveryAddress2In = null; public String DeliveryAddress3 = null; public String DeliveryAddress3StartsWith = null; public String DeliveryAddress3EndsWith = null; public String DeliveryAddress3Contains = null; public String DeliveryAddress3Like = null; public ArrayList DeliveryAddress3Between = null; public ArrayList DeliveryAddress3In = null; public String DeliveryAddress4 = null; public String DeliveryAddress4StartsWith = null; public String DeliveryAddress4EndsWith = null; public String DeliveryAddress4Contains = null; public String DeliveryAddress4Like = null; public ArrayList DeliveryAddress4Between = null; public ArrayList DeliveryAddress4In = null; public String DeliveryAddressPostcode = null; public String DeliveryAddressPostcodeStartsWith = null; public String DeliveryAddressPostcodeEndsWith = null; public String DeliveryAddressPostcodeContains = null; public String DeliveryAddressPostcodeLike = null; public ArrayList DeliveryAddressPostcodeBetween = null; public ArrayList DeliveryAddressPostcodeIn = null; public String DeliveryAddressCountry = null; public String DeliveryAddressCountryStartsWith = null; public String DeliveryAddressCountryEndsWith = null; public String DeliveryAddressCountryContains = null; public String DeliveryAddressCountryLike = null; public ArrayList DeliveryAddressCountryBetween = null; public ArrayList DeliveryAddressCountryIn = null; public BigDecimal CartageCharge1 = null; public BigDecimal CartageCharge1GreaterThanOrEqualTo = null; public BigDecimal CartageCharge1GreaterThan = null; public BigDecimal CartageCharge1LessThan = null; public BigDecimal CartageCharge1LessThanOrEqualTo = null; public BigDecimal CartageCharge1NotEqualTo = null; public ArrayList CartageCharge1Between = null; public ArrayList CartageCharge1In = null; public BigDecimal Cartage1TaxAmount = null; public BigDecimal Cartage1TaxAmountGreaterThanOrEqualTo = null; public BigDecimal Cartage1TaxAmountGreaterThan = null; public BigDecimal Cartage1TaxAmountLessThan = null; public BigDecimal Cartage1TaxAmountLessThanOrEqualTo = null; public BigDecimal Cartage1TaxAmountNotEqualTo = null; public ArrayList Cartage1TaxAmountBetween = null; public ArrayList Cartage1TaxAmountIn = null; public BigDecimal CartageCharge2 = null; public BigDecimal CartageCharge2GreaterThanOrEqualTo = null; public BigDecimal CartageCharge2GreaterThan = null; public BigDecimal CartageCharge2LessThan = null; public BigDecimal CartageCharge2LessThanOrEqualTo = null; public BigDecimal CartageCharge2NotEqualTo = null; public ArrayList CartageCharge2Between = null; public ArrayList CartageCharge2In = null; public BigDecimal Cartage2TaxAmount = null; public BigDecimal Cartage2TaxAmountGreaterThanOrEqualTo = null; public BigDecimal Cartage2TaxAmountGreaterThan = null; public BigDecimal Cartage2TaxAmountLessThan = null; public BigDecimal Cartage2TaxAmountLessThanOrEqualTo = null; public BigDecimal Cartage2TaxAmountNotEqualTo = null; public ArrayList Cartage2TaxAmountBetween = null; public ArrayList Cartage2TaxAmountIn = null; public BigDecimal CartageCharge3 = null; public BigDecimal CartageCharge3GreaterThanOrEqualTo = null; public BigDecimal CartageCharge3GreaterThan = null; public BigDecimal CartageCharge3LessThan = null; public BigDecimal CartageCharge3LessThanOrEqualTo = null; public BigDecimal CartageCharge3NotEqualTo = null; public ArrayList CartageCharge3Between = null; public ArrayList CartageCharge3In = null; public BigDecimal Cartage3TaxAmount = null; public BigDecimal Cartage3TaxAmountGreaterThanOrEqualTo = null; public BigDecimal Cartage3TaxAmountGreaterThan = null; public BigDecimal Cartage3TaxAmountLessThan = null; public BigDecimal Cartage3TaxAmountLessThanOrEqualTo = null; public BigDecimal Cartage3TaxAmountNotEqualTo = null; public ArrayList Cartage3TaxAmountBetween = null; public ArrayList Cartage3TaxAmountIn = null; public String CourierDetails = null; public String CourierDetailsStartsWith = null; public String CourierDetailsEndsWith = null; public String CourierDetailsContains = null; public String CourierDetailsLike = null; public ArrayList CourierDetailsBetween = null; public ArrayList CourierDetailsIn = null; public String Notes = null; public String NotesStartsWith = null; public String NotesEndsWith = null; public String NotesContains = null; public String NotesLike = null; public ArrayList NotesBetween = null; public ArrayList NotesIn = null; public String StaffID = null; public String StaffIDStartsWith = null; public String StaffIDEndsWith = null; public String StaffIDContains = null; public String StaffIDLike = null; public ArrayList StaffIDBetween = null; public ArrayList StaffIDIn = null; public String StaffTitle = null; public String StaffTitleStartsWith = null; public String StaffTitleEndsWith = null; public String StaffTitleContains = null; public String StaffTitleLike = null; public ArrayList StaffTitleBetween = null; public ArrayList StaffTitleIn = null; public String StaffFirstName = null; public String StaffFirstNameStartsWith = null; public String StaffFirstNameEndsWith = null; public String StaffFirstNameContains = null; public String StaffFirstNameLike = null; public ArrayList StaffFirstNameBetween = null; public ArrayList StaffFirstNameIn = null; public String StaffSurname = null; public String StaffSurnameStartsWith = null; public String StaffSurnameEndsWith = null; public String StaffSurnameContains = null; public String StaffSurnameLike = null; public ArrayList StaffSurnameBetween = null; public ArrayList StaffSurnameIn = null; public String StaffUsername = null; public String StaffUsernameStartsWith = null; public String StaffUsernameEndsWith = null; public String StaffUsernameContains = null; public String StaffUsernameLike = null; public ArrayList StaffUsernameBetween = null; public ArrayList StaffUsernameIn = null; public String getInvoiceID() { return InvoiceID; } public v_Jiwa_SalesQuote_ListQuery setInvoiceID(String value) { this.InvoiceID = value; return this; } public String getInvoiceIDStartsWith() { return InvoiceIDStartsWith; } public v_Jiwa_SalesQuote_ListQuery setInvoiceIDStartsWith(String value) { this.InvoiceIDStartsWith = value; return this; } public String getInvoiceIDEndsWith() { return InvoiceIDEndsWith; } public v_Jiwa_SalesQuote_ListQuery setInvoiceIDEndsWith(String value) { this.InvoiceIDEndsWith = value; return this; } public String getInvoiceIDContains() { return InvoiceIDContains; } public v_Jiwa_SalesQuote_ListQuery setInvoiceIDContains(String value) { this.InvoiceIDContains = value; return this; } public String getInvoiceIDLike() { return InvoiceIDLike; } public v_Jiwa_SalesQuote_ListQuery setInvoiceIDLike(String value) { this.InvoiceIDLike = value; return this; } public ArrayList getInvoiceIDBetween() { return InvoiceIDBetween; } public v_Jiwa_SalesQuote_ListQuery setInvoiceIDBetween(ArrayList value) { this.InvoiceIDBetween = value; return this; } public ArrayList getInvoiceIDIn() { return InvoiceIDIn; } public v_Jiwa_SalesQuote_ListQuery setInvoiceIDIn(ArrayList value) { this.InvoiceIDIn = value; return this; } public String getInvoiceNo() { return InvoiceNo; } public v_Jiwa_SalesQuote_ListQuery setInvoiceNo(String value) { this.InvoiceNo = value; return this; } public String getInvoiceNoStartsWith() { return InvoiceNoStartsWith; } public v_Jiwa_SalesQuote_ListQuery setInvoiceNoStartsWith(String value) { this.InvoiceNoStartsWith = value; return this; } public String getInvoiceNoEndsWith() { return InvoiceNoEndsWith; } public v_Jiwa_SalesQuote_ListQuery setInvoiceNoEndsWith(String value) { this.InvoiceNoEndsWith = value; return this; } public String getInvoiceNoContains() { return InvoiceNoContains; } public v_Jiwa_SalesQuote_ListQuery setInvoiceNoContains(String value) { this.InvoiceNoContains = value; return this; } public String getInvoiceNoLike() { return InvoiceNoLike; } public v_Jiwa_SalesQuote_ListQuery setInvoiceNoLike(String value) { this.InvoiceNoLike = value; return this; } public ArrayList getInvoiceNoBetween() { return InvoiceNoBetween; } public v_Jiwa_SalesQuote_ListQuery setInvoiceNoBetween(ArrayList value) { this.InvoiceNoBetween = value; return this; } public ArrayList getInvoiceNoIn() { return InvoiceNoIn; } public v_Jiwa_SalesQuote_ListQuery setInvoiceNoIn(ArrayList value) { this.InvoiceNoIn = value; return this; } public String getOrderNo() { return OrderNo; } public v_Jiwa_SalesQuote_ListQuery setOrderNo(String value) { this.OrderNo = value; return this; } public String getOrderNoStartsWith() { return OrderNoStartsWith; } public v_Jiwa_SalesQuote_ListQuery setOrderNoStartsWith(String value) { this.OrderNoStartsWith = value; return this; } public String getOrderNoEndsWith() { return OrderNoEndsWith; } public v_Jiwa_SalesQuote_ListQuery setOrderNoEndsWith(String value) { this.OrderNoEndsWith = value; return this; } public String getOrderNoContains() { return OrderNoContains; } public v_Jiwa_SalesQuote_ListQuery setOrderNoContains(String value) { this.OrderNoContains = value; return this; } public String getOrderNoLike() { return OrderNoLike; } public v_Jiwa_SalesQuote_ListQuery setOrderNoLike(String value) { this.OrderNoLike = value; return this; } public ArrayList getOrderNoBetween() { return OrderNoBetween; } public v_Jiwa_SalesQuote_ListQuery setOrderNoBetween(ArrayList value) { this.OrderNoBetween = value; return this; } public ArrayList getOrderNoIn() { return OrderNoIn; } public v_Jiwa_SalesQuote_ListQuery setOrderNoIn(ArrayList value) { this.OrderNoIn = value; return this; } public String getQoReference() { return QOReference; } public v_Jiwa_SalesQuote_ListQuery setQoReference(String value) { this.QOReference = value; return this; } public String getQoReferenceStartsWith() { return QOReferenceStartsWith; } public v_Jiwa_SalesQuote_ListQuery setQoReferenceStartsWith(String value) { this.QOReferenceStartsWith = value; return this; } public String getQoReferenceEndsWith() { return QOReferenceEndsWith; } public v_Jiwa_SalesQuote_ListQuery setQoReferenceEndsWith(String value) { this.QOReferenceEndsWith = value; return this; } public String getQoReferenceContains() { return QOReferenceContains; } public v_Jiwa_SalesQuote_ListQuery setQoReferenceContains(String value) { this.QOReferenceContains = value; return this; } public String getQoReferenceLike() { return QOReferenceLike; } public v_Jiwa_SalesQuote_ListQuery setQoReferenceLike(String value) { this.QOReferenceLike = value; return this; } public ArrayList getQoReferenceBetween() { return QOReferenceBetween; } public v_Jiwa_SalesQuote_ListQuery setQoReferenceBetween(ArrayList value) { this.QOReferenceBetween = value; return this; } public ArrayList getQoReferenceIn() { return QOReferenceIn; } public v_Jiwa_SalesQuote_ListQuery setQoReferenceIn(ArrayList value) { this.QOReferenceIn = value; return this; } public Date getInvoiceInitDate() { return InvoiceInitDate; } public v_Jiwa_SalesQuote_ListQuery setInvoiceInitDate(Date value) { this.InvoiceInitDate = value; return this; } public Date getInvoiceInitDateGreaterThanOrEqualTo() { return InvoiceInitDateGreaterThanOrEqualTo; } public v_Jiwa_SalesQuote_ListQuery setInvoiceInitDateGreaterThanOrEqualTo(Date value) { this.InvoiceInitDateGreaterThanOrEqualTo = value; return this; } public Date getInvoiceInitDateGreaterThan() { return InvoiceInitDateGreaterThan; } public v_Jiwa_SalesQuote_ListQuery setInvoiceInitDateGreaterThan(Date value) { this.InvoiceInitDateGreaterThan = value; return this; } public Date getInvoiceInitDateLessThan() { return InvoiceInitDateLessThan; } public v_Jiwa_SalesQuote_ListQuery setInvoiceInitDateLessThan(Date value) { this.InvoiceInitDateLessThan = value; return this; } public Date getInvoiceInitDateLessThanOrEqualTo() { return InvoiceInitDateLessThanOrEqualTo; } public v_Jiwa_SalesQuote_ListQuery setInvoiceInitDateLessThanOrEqualTo(Date value) { this.InvoiceInitDateLessThanOrEqualTo = value; return this; } public Date getInvoiceInitDateNotEqualTo() { return InvoiceInitDateNotEqualTo; } public v_Jiwa_SalesQuote_ListQuery setInvoiceInitDateNotEqualTo(Date value) { this.InvoiceInitDateNotEqualTo = value; return this; } public ArrayList getInvoiceInitDateBetween() { return InvoiceInitDateBetween; } public v_Jiwa_SalesQuote_ListQuery setInvoiceInitDateBetween(ArrayList value) { this.InvoiceInitDateBetween = value; return this; } public ArrayList getInvoiceInitDateIn() { return InvoiceInitDateIn; } public v_Jiwa_SalesQuote_ListQuery setInvoiceInitDateIn(ArrayList value) { this.InvoiceInitDateIn = value; return this; } public Short getStatus() { return Status; } public v_Jiwa_SalesQuote_ListQuery setStatus(Short value) { this.Status = value; return this; } public Short getStatusGreaterThanOrEqualTo() { return StatusGreaterThanOrEqualTo; } public v_Jiwa_SalesQuote_ListQuery setStatusGreaterThanOrEqualTo(Short value) { this.StatusGreaterThanOrEqualTo = value; return this; } public Short getStatusGreaterThan() { return StatusGreaterThan; } public v_Jiwa_SalesQuote_ListQuery setStatusGreaterThan(Short value) { this.StatusGreaterThan = value; return this; } public Short getStatusLessThan() { return StatusLessThan; } public v_Jiwa_SalesQuote_ListQuery setStatusLessThan(Short value) { this.StatusLessThan = value; return this; } public Short getStatusLessThanOrEqualTo() { return StatusLessThanOrEqualTo; } public v_Jiwa_SalesQuote_ListQuery setStatusLessThanOrEqualTo(Short value) { this.StatusLessThanOrEqualTo = value; return this; } public Short getStatusNotEqualTo() { return StatusNotEqualTo; } public v_Jiwa_SalesQuote_ListQuery setStatusNotEqualTo(Short value) { this.StatusNotEqualTo = value; return this; } public ArrayList getStatusBetween() { return StatusBetween; } public v_Jiwa_SalesQuote_ListQuery setStatusBetween(ArrayList value) { this.StatusBetween = value; return this; } public ArrayList getStatusIn() { return StatusIn; } public v_Jiwa_SalesQuote_ListQuery setStatusIn(ArrayList value) { this.StatusIn = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public v_Jiwa_SalesQuote_ListQuery setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getLastSavedDateTimeGreaterThanOrEqualTo() { return LastSavedDateTimeGreaterThanOrEqualTo; } public v_Jiwa_SalesQuote_ListQuery setLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.LastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeGreaterThan() { return LastSavedDateTimeGreaterThan; } public v_Jiwa_SalesQuote_ListQuery setLastSavedDateTimeGreaterThan(Date value) { this.LastSavedDateTimeGreaterThan = value; return this; } public Date getLastSavedDateTimeLessThan() { return LastSavedDateTimeLessThan; } public v_Jiwa_SalesQuote_ListQuery setLastSavedDateTimeLessThan(Date value) { this.LastSavedDateTimeLessThan = value; return this; } public Date getLastSavedDateTimeLessThanOrEqualTo() { return LastSavedDateTimeLessThanOrEqualTo; } public v_Jiwa_SalesQuote_ListQuery setLastSavedDateTimeLessThanOrEqualTo(Date value) { this.LastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeNotEqualTo() { return LastSavedDateTimeNotEqualTo; } public v_Jiwa_SalesQuote_ListQuery setLastSavedDateTimeNotEqualTo(Date value) { this.LastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getLastSavedDateTimeBetween() { return LastSavedDateTimeBetween; } public v_Jiwa_SalesQuote_ListQuery setLastSavedDateTimeBetween(ArrayList value) { this.LastSavedDateTimeBetween = value; return this; } public ArrayList getLastSavedDateTimeIn() { return LastSavedDateTimeIn; } public v_Jiwa_SalesQuote_ListQuery setLastSavedDateTimeIn(ArrayList value) { this.LastSavedDateTimeIn = value; return this; } public BigDecimal getInvoiceTotal() { return InvoiceTotal; } public v_Jiwa_SalesQuote_ListQuery setInvoiceTotal(BigDecimal value) { this.InvoiceTotal = value; return this; } public BigDecimal getInvoiceTotalGreaterThanOrEqualTo() { return InvoiceTotalGreaterThanOrEqualTo; } public v_Jiwa_SalesQuote_ListQuery setInvoiceTotalGreaterThanOrEqualTo(BigDecimal value) { this.InvoiceTotalGreaterThanOrEqualTo = value; return this; } public BigDecimal getInvoiceTotalGreaterThan() { return InvoiceTotalGreaterThan; } public v_Jiwa_SalesQuote_ListQuery setInvoiceTotalGreaterThan(BigDecimal value) { this.InvoiceTotalGreaterThan = value; return this; } public BigDecimal getInvoiceTotalLessThan() { return InvoiceTotalLessThan; } public v_Jiwa_SalesQuote_ListQuery setInvoiceTotalLessThan(BigDecimal value) { this.InvoiceTotalLessThan = value; return this; } public BigDecimal getInvoiceTotalLessThanOrEqualTo() { return InvoiceTotalLessThanOrEqualTo; } public v_Jiwa_SalesQuote_ListQuery setInvoiceTotalLessThanOrEqualTo(BigDecimal value) { this.InvoiceTotalLessThanOrEqualTo = value; return this; } public BigDecimal getInvoiceTotalNotEqualTo() { return InvoiceTotalNotEqualTo; } public v_Jiwa_SalesQuote_ListQuery setInvoiceTotalNotEqualTo(BigDecimal value) { this.InvoiceTotalNotEqualTo = value; return this; } public ArrayList getInvoiceTotalBetween() { return InvoiceTotalBetween; } public v_Jiwa_SalesQuote_ListQuery setInvoiceTotalBetween(ArrayList value) { this.InvoiceTotalBetween = value; return this; } public ArrayList getInvoiceTotalIn() { return InvoiceTotalIn; } public v_Jiwa_SalesQuote_ListQuery setInvoiceTotalIn(ArrayList value) { this.InvoiceTotalIn = value; return this; } public String getDebtorID() { return DebtorID; } public v_Jiwa_SalesQuote_ListQuery setDebtorID(String value) { this.DebtorID = value; return this; } public String getDebtorIDStartsWith() { return DebtorIDStartsWith; } public v_Jiwa_SalesQuote_ListQuery setDebtorIDStartsWith(String value) { this.DebtorIDStartsWith = value; return this; } public String getDebtorIDEndsWith() { return DebtorIDEndsWith; } public v_Jiwa_SalesQuote_ListQuery setDebtorIDEndsWith(String value) { this.DebtorIDEndsWith = value; return this; } public String getDebtorIDContains() { return DebtorIDContains; } public v_Jiwa_SalesQuote_ListQuery setDebtorIDContains(String value) { this.DebtorIDContains = value; return this; } public String getDebtorIDLike() { return DebtorIDLike; } public v_Jiwa_SalesQuote_ListQuery setDebtorIDLike(String value) { this.DebtorIDLike = value; return this; } public ArrayList getDebtorIDBetween() { return DebtorIDBetween; } public v_Jiwa_SalesQuote_ListQuery setDebtorIDBetween(ArrayList value) { this.DebtorIDBetween = value; return this; } public ArrayList getDebtorIDIn() { return DebtorIDIn; } public v_Jiwa_SalesQuote_ListQuery setDebtorIDIn(ArrayList value) { this.DebtorIDIn = value; return this; } public String getAccountNo() { return AccountNo; } public v_Jiwa_SalesQuote_ListQuery setAccountNo(String value) { this.AccountNo = value; return this; } public String getAccountNoStartsWith() { return AccountNoStartsWith; } public v_Jiwa_SalesQuote_ListQuery setAccountNoStartsWith(String value) { this.AccountNoStartsWith = value; return this; } public String getAccountNoEndsWith() { return AccountNoEndsWith; } public v_Jiwa_SalesQuote_ListQuery setAccountNoEndsWith(String value) { this.AccountNoEndsWith = value; return this; } public String getAccountNoContains() { return AccountNoContains; } public v_Jiwa_SalesQuote_ListQuery setAccountNoContains(String value) { this.AccountNoContains = value; return this; } public String getAccountNoLike() { return AccountNoLike; } public v_Jiwa_SalesQuote_ListQuery setAccountNoLike(String value) { this.AccountNoLike = value; return this; } public ArrayList getAccountNoBetween() { return AccountNoBetween; } public v_Jiwa_SalesQuote_ListQuery setAccountNoBetween(ArrayList value) { this.AccountNoBetween = value; return this; } public ArrayList getAccountNoIn() { return AccountNoIn; } public v_Jiwa_SalesQuote_ListQuery setAccountNoIn(ArrayList value) { this.AccountNoIn = value; return this; } public String getDebtorName() { return DebtorName; } public v_Jiwa_SalesQuote_ListQuery setDebtorName(String value) { this.DebtorName = value; return this; } public String getDebtorNameStartsWith() { return DebtorNameStartsWith; } public v_Jiwa_SalesQuote_ListQuery setDebtorNameStartsWith(String value) { this.DebtorNameStartsWith = value; return this; } public String getDebtorNameEndsWith() { return DebtorNameEndsWith; } public v_Jiwa_SalesQuote_ListQuery setDebtorNameEndsWith(String value) { this.DebtorNameEndsWith = value; return this; } public String getDebtorNameContains() { return DebtorNameContains; } public v_Jiwa_SalesQuote_ListQuery setDebtorNameContains(String value) { this.DebtorNameContains = value; return this; } public String getDebtorNameLike() { return DebtorNameLike; } public v_Jiwa_SalesQuote_ListQuery setDebtorNameLike(String value) { this.DebtorNameLike = value; return this; } public ArrayList getDebtorNameBetween() { return DebtorNameBetween; } public v_Jiwa_SalesQuote_ListQuery setDebtorNameBetween(ArrayList value) { this.DebtorNameBetween = value; return this; } public ArrayList getDebtorNameIn() { return DebtorNameIn; } public v_Jiwa_SalesQuote_ListQuery setDebtorNameIn(ArrayList value) { this.DebtorNameIn = value; return this; } public String getInLogicalID() { return IN_LogicalID; } public v_Jiwa_SalesQuote_ListQuery setInLogicalID(String value) { this.IN_LogicalID = value; return this; } public String getInLogicalIDStartsWith() { return IN_LogicalIDStartsWith; } public v_Jiwa_SalesQuote_ListQuery setInLogicalIDStartsWith(String value) { this.IN_LogicalIDStartsWith = value; return this; } public String getInLogicalIDEndsWith() { return IN_LogicalIDEndsWith; } public v_Jiwa_SalesQuote_ListQuery setInLogicalIDEndsWith(String value) { this.IN_LogicalIDEndsWith = value; return this; } public String getInLogicalIDContains() { return IN_LogicalIDContains; } public v_Jiwa_SalesQuote_ListQuery setInLogicalIDContains(String value) { this.IN_LogicalIDContains = value; return this; } public String getInLogicalIDLike() { return IN_LogicalIDLike; } public v_Jiwa_SalesQuote_ListQuery setInLogicalIDLike(String value) { this.IN_LogicalIDLike = value; return this; } public ArrayList getInLogicalIDBetween() { return IN_LogicalIDBetween; } public v_Jiwa_SalesQuote_ListQuery setInLogicalIDBetween(ArrayList value) { this.IN_LogicalIDBetween = value; return this; } public ArrayList getInLogicalIDIn() { return IN_LogicalIDIn; } public v_Jiwa_SalesQuote_ListQuery setInLogicalIDIn(ArrayList value) { this.IN_LogicalIDIn = value; return this; } public String getLogicalWarehouseDescription() { return LogicalWarehouseDescription; } public v_Jiwa_SalesQuote_ListQuery setLogicalWarehouseDescription(String value) { this.LogicalWarehouseDescription = value; return this; } public String getLogicalWarehouseDescriptionStartsWith() { return LogicalWarehouseDescriptionStartsWith; } public v_Jiwa_SalesQuote_ListQuery setLogicalWarehouseDescriptionStartsWith(String value) { this.LogicalWarehouseDescriptionStartsWith = value; return this; } public String getLogicalWarehouseDescriptionEndsWith() { return LogicalWarehouseDescriptionEndsWith; } public v_Jiwa_SalesQuote_ListQuery setLogicalWarehouseDescriptionEndsWith(String value) { this.LogicalWarehouseDescriptionEndsWith = value; return this; } public String getLogicalWarehouseDescriptionContains() { return LogicalWarehouseDescriptionContains; } public v_Jiwa_SalesQuote_ListQuery setLogicalWarehouseDescriptionContains(String value) { this.LogicalWarehouseDescriptionContains = value; return this; } public String getLogicalWarehouseDescriptionLike() { return LogicalWarehouseDescriptionLike; } public v_Jiwa_SalesQuote_ListQuery setLogicalWarehouseDescriptionLike(String value) { this.LogicalWarehouseDescriptionLike = value; return this; } public ArrayList getLogicalWarehouseDescriptionBetween() { return LogicalWarehouseDescriptionBetween; } public v_Jiwa_SalesQuote_ListQuery setLogicalWarehouseDescriptionBetween(ArrayList value) { this.LogicalWarehouseDescriptionBetween = value; return this; } public ArrayList getLogicalWarehouseDescriptionIn() { return LogicalWarehouseDescriptionIn; } public v_Jiwa_SalesQuote_ListQuery setLogicalWarehouseDescriptionIn(ArrayList value) { this.LogicalWarehouseDescriptionIn = value; return this; } public String getInPhysicalID() { return IN_PhysicalID; } public v_Jiwa_SalesQuote_ListQuery setInPhysicalID(String value) { this.IN_PhysicalID = value; return this; } public String getInPhysicalIDStartsWith() { return IN_PhysicalIDStartsWith; } public v_Jiwa_SalesQuote_ListQuery setInPhysicalIDStartsWith(String value) { this.IN_PhysicalIDStartsWith = value; return this; } public String getInPhysicalIDEndsWith() { return IN_PhysicalIDEndsWith; } public v_Jiwa_SalesQuote_ListQuery setInPhysicalIDEndsWith(String value) { this.IN_PhysicalIDEndsWith = value; return this; } public String getInPhysicalIDContains() { return IN_PhysicalIDContains; } public v_Jiwa_SalesQuote_ListQuery setInPhysicalIDContains(String value) { this.IN_PhysicalIDContains = value; return this; } public String getInPhysicalIDLike() { return IN_PhysicalIDLike; } public v_Jiwa_SalesQuote_ListQuery setInPhysicalIDLike(String value) { this.IN_PhysicalIDLike = value; return this; } public ArrayList getInPhysicalIDBetween() { return IN_PhysicalIDBetween; } public v_Jiwa_SalesQuote_ListQuery setInPhysicalIDBetween(ArrayList value) { this.IN_PhysicalIDBetween = value; return this; } public ArrayList getInPhysicalIDIn() { return IN_PhysicalIDIn; } public v_Jiwa_SalesQuote_ListQuery setInPhysicalIDIn(ArrayList value) { this.IN_PhysicalIDIn = value; return this; } public String getPhysicalWarehouseDescription() { return PhysicalWarehouseDescription; } public v_Jiwa_SalesQuote_ListQuery setPhysicalWarehouseDescription(String value) { this.PhysicalWarehouseDescription = value; return this; } public String getPhysicalWarehouseDescriptionStartsWith() { return PhysicalWarehouseDescriptionStartsWith; } public v_Jiwa_SalesQuote_ListQuery setPhysicalWarehouseDescriptionStartsWith(String value) { this.PhysicalWarehouseDescriptionStartsWith = value; return this; } public String getPhysicalWarehouseDescriptionEndsWith() { return PhysicalWarehouseDescriptionEndsWith; } public v_Jiwa_SalesQuote_ListQuery setPhysicalWarehouseDescriptionEndsWith(String value) { this.PhysicalWarehouseDescriptionEndsWith = value; return this; } public String getPhysicalWarehouseDescriptionContains() { return PhysicalWarehouseDescriptionContains; } public v_Jiwa_SalesQuote_ListQuery setPhysicalWarehouseDescriptionContains(String value) { this.PhysicalWarehouseDescriptionContains = value; return this; } public String getPhysicalWarehouseDescriptionLike() { return PhysicalWarehouseDescriptionLike; } public v_Jiwa_SalesQuote_ListQuery setPhysicalWarehouseDescriptionLike(String value) { this.PhysicalWarehouseDescriptionLike = value; return this; } public ArrayList getPhysicalWarehouseDescriptionBetween() { return PhysicalWarehouseDescriptionBetween; } public v_Jiwa_SalesQuote_ListQuery setPhysicalWarehouseDescriptionBetween(ArrayList value) { this.PhysicalWarehouseDescriptionBetween = value; return this; } public ArrayList getPhysicalWarehouseDescriptionIn() { return PhysicalWarehouseDescriptionIn; } public v_Jiwa_SalesQuote_ListQuery setPhysicalWarehouseDescriptionIn(ArrayList value) { this.PhysicalWarehouseDescriptionIn = value; return this; } public String getBranchID() { return BranchID; } public v_Jiwa_SalesQuote_ListQuery setBranchID(String value) { this.BranchID = value; return this; } public String getBranchIDStartsWith() { return BranchIDStartsWith; } public v_Jiwa_SalesQuote_ListQuery setBranchIDStartsWith(String value) { this.BranchIDStartsWith = value; return this; } public String getBranchIDEndsWith() { return BranchIDEndsWith; } public v_Jiwa_SalesQuote_ListQuery setBranchIDEndsWith(String value) { this.BranchIDEndsWith = value; return this; } public String getBranchIDContains() { return BranchIDContains; } public v_Jiwa_SalesQuote_ListQuery setBranchIDContains(String value) { this.BranchIDContains = value; return this; } public String getBranchIDLike() { return BranchIDLike; } public v_Jiwa_SalesQuote_ListQuery setBranchIDLike(String value) { this.BranchIDLike = value; return this; } public ArrayList getBranchIDBetween() { return BranchIDBetween; } public v_Jiwa_SalesQuote_ListQuery setBranchIDBetween(ArrayList value) { this.BranchIDBetween = value; return this; } public ArrayList getBranchIDIn() { return BranchIDIn; } public v_Jiwa_SalesQuote_ListQuery setBranchIDIn(ArrayList value) { this.BranchIDIn = value; return this; } public String getBranchDescription() { return BranchDescription; } public v_Jiwa_SalesQuote_ListQuery setBranchDescription(String value) { this.BranchDescription = value; return this; } public String getBranchDescriptionStartsWith() { return BranchDescriptionStartsWith; } public v_Jiwa_SalesQuote_ListQuery setBranchDescriptionStartsWith(String value) { this.BranchDescriptionStartsWith = value; return this; } public String getBranchDescriptionEndsWith() { return BranchDescriptionEndsWith; } public v_Jiwa_SalesQuote_ListQuery setBranchDescriptionEndsWith(String value) { this.BranchDescriptionEndsWith = value; return this; } public String getBranchDescriptionContains() { return BranchDescriptionContains; } public v_Jiwa_SalesQuote_ListQuery setBranchDescriptionContains(String value) { this.BranchDescriptionContains = value; return this; } public String getBranchDescriptionLike() { return BranchDescriptionLike; } public v_Jiwa_SalesQuote_ListQuery setBranchDescriptionLike(String value) { this.BranchDescriptionLike = value; return this; } public ArrayList getBranchDescriptionBetween() { return BranchDescriptionBetween; } public v_Jiwa_SalesQuote_ListQuery setBranchDescriptionBetween(ArrayList value) { this.BranchDescriptionBetween = value; return this; } public ArrayList getBranchDescriptionIn() { return BranchDescriptionIn; } public v_Jiwa_SalesQuote_ListQuery setBranchDescriptionIn(ArrayList value) { this.BranchDescriptionIn = value; return this; } public String getCashSaleAddress1() { return CashSaleAddress1; } public v_Jiwa_SalesQuote_ListQuery setCashSaleAddress1(String value) { this.CashSaleAddress1 = value; return this; } public String getCashSaleAddress1StartsWith() { return CashSaleAddress1StartsWith; } public v_Jiwa_SalesQuote_ListQuery setCashSaleAddress1StartsWith(String value) { this.CashSaleAddress1StartsWith = value; return this; } public String getCashSaleAddress1EndsWith() { return CashSaleAddress1EndsWith; } public v_Jiwa_SalesQuote_ListQuery setCashSaleAddress1EndsWith(String value) { this.CashSaleAddress1EndsWith = value; return this; } public String getCashSaleAddress1Contains() { return CashSaleAddress1Contains; } public v_Jiwa_SalesQuote_ListQuery setCashSaleAddress1Contains(String value) { this.CashSaleAddress1Contains = value; return this; } public String getCashSaleAddress1Like() { return CashSaleAddress1Like; } public v_Jiwa_SalesQuote_ListQuery setCashSaleAddress1Like(String value) { this.CashSaleAddress1Like = value; return this; } public ArrayList getCashSaleAddress1Between() { return CashSaleAddress1Between; } public v_Jiwa_SalesQuote_ListQuery setCashSaleAddress1Between(ArrayList value) { this.CashSaleAddress1Between = value; return this; } public ArrayList getCashSaleAddress1In() { return CashSaleAddress1In; } public v_Jiwa_SalesQuote_ListQuery setCashSaleAddress1In(ArrayList value) { this.CashSaleAddress1In = value; return this; } public String getCashSaleAddress2() { return CashSaleAddress2; } public v_Jiwa_SalesQuote_ListQuery setCashSaleAddress2(String value) { this.CashSaleAddress2 = value; return this; } public String getCashSaleAddress2StartsWith() { return CashSaleAddress2StartsWith; } public v_Jiwa_SalesQuote_ListQuery setCashSaleAddress2StartsWith(String value) { this.CashSaleAddress2StartsWith = value; return this; } public String getCashSaleAddress2EndsWith() { return CashSaleAddress2EndsWith; } public v_Jiwa_SalesQuote_ListQuery setCashSaleAddress2EndsWith(String value) { this.CashSaleAddress2EndsWith = value; return this; } public String getCashSaleAddress2Contains() { return CashSaleAddress2Contains; } public v_Jiwa_SalesQuote_ListQuery setCashSaleAddress2Contains(String value) { this.CashSaleAddress2Contains = value; return this; } public String getCashSaleAddress2Like() { return CashSaleAddress2Like; } public v_Jiwa_SalesQuote_ListQuery setCashSaleAddress2Like(String value) { this.CashSaleAddress2Like = value; return this; } public ArrayList getCashSaleAddress2Between() { return CashSaleAddress2Between; } public v_Jiwa_SalesQuote_ListQuery setCashSaleAddress2Between(ArrayList value) { this.CashSaleAddress2Between = value; return this; } public ArrayList getCashSaleAddress2In() { return CashSaleAddress2In; } public v_Jiwa_SalesQuote_ListQuery setCashSaleAddress2In(ArrayList value) { this.CashSaleAddress2In = value; return this; } public String getCashSaleAddress3() { return CashSaleAddress3; } public v_Jiwa_SalesQuote_ListQuery setCashSaleAddress3(String value) { this.CashSaleAddress3 = value; return this; } public String getCashSaleAddress3StartsWith() { return CashSaleAddress3StartsWith; } public v_Jiwa_SalesQuote_ListQuery setCashSaleAddress3StartsWith(String value) { this.CashSaleAddress3StartsWith = value; return this; } public String getCashSaleAddress3EndsWith() { return CashSaleAddress3EndsWith; } public v_Jiwa_SalesQuote_ListQuery setCashSaleAddress3EndsWith(String value) { this.CashSaleAddress3EndsWith = value; return this; } public String getCashSaleAddress3Contains() { return CashSaleAddress3Contains; } public v_Jiwa_SalesQuote_ListQuery setCashSaleAddress3Contains(String value) { this.CashSaleAddress3Contains = value; return this; } public String getCashSaleAddress3Like() { return CashSaleAddress3Like; } public v_Jiwa_SalesQuote_ListQuery setCashSaleAddress3Like(String value) { this.CashSaleAddress3Like = value; return this; } public ArrayList getCashSaleAddress3Between() { return CashSaleAddress3Between; } public v_Jiwa_SalesQuote_ListQuery setCashSaleAddress3Between(ArrayList value) { this.CashSaleAddress3Between = value; return this; } public ArrayList getCashSaleAddress3In() { return CashSaleAddress3In; } public v_Jiwa_SalesQuote_ListQuery setCashSaleAddress3In(ArrayList value) { this.CashSaleAddress3In = value; return this; } public String getCashSaleAddress4() { return CashSaleAddress4; } public v_Jiwa_SalesQuote_ListQuery setCashSaleAddress4(String value) { this.CashSaleAddress4 = value; return this; } public String getCashSaleAddress4StartsWith() { return CashSaleAddress4StartsWith; } public v_Jiwa_SalesQuote_ListQuery setCashSaleAddress4StartsWith(String value) { this.CashSaleAddress4StartsWith = value; return this; } public String getCashSaleAddress4EndsWith() { return CashSaleAddress4EndsWith; } public v_Jiwa_SalesQuote_ListQuery setCashSaleAddress4EndsWith(String value) { this.CashSaleAddress4EndsWith = value; return this; } public String getCashSaleAddress4Contains() { return CashSaleAddress4Contains; } public v_Jiwa_SalesQuote_ListQuery setCashSaleAddress4Contains(String value) { this.CashSaleAddress4Contains = value; return this; } public String getCashSaleAddress4Like() { return CashSaleAddress4Like; } public v_Jiwa_SalesQuote_ListQuery setCashSaleAddress4Like(String value) { this.CashSaleAddress4Like = value; return this; } public ArrayList getCashSaleAddress4Between() { return CashSaleAddress4Between; } public v_Jiwa_SalesQuote_ListQuery setCashSaleAddress4Between(ArrayList value) { this.CashSaleAddress4Between = value; return this; } public ArrayList getCashSaleAddress4In() { return CashSaleAddress4In; } public v_Jiwa_SalesQuote_ListQuery setCashSaleAddress4In(ArrayList value) { this.CashSaleAddress4In = value; return this; } public String getCashSalePostcode() { return CashSalePostcode; } public v_Jiwa_SalesQuote_ListQuery setCashSalePostcode(String value) { this.CashSalePostcode = value; return this; } public String getCashSalePostcodeStartsWith() { return CashSalePostcodeStartsWith; } public v_Jiwa_SalesQuote_ListQuery setCashSalePostcodeStartsWith(String value) { this.CashSalePostcodeStartsWith = value; return this; } public String getCashSalePostcodeEndsWith() { return CashSalePostcodeEndsWith; } public v_Jiwa_SalesQuote_ListQuery setCashSalePostcodeEndsWith(String value) { this.CashSalePostcodeEndsWith = value; return this; } public String getCashSalePostcodeContains() { return CashSalePostcodeContains; } public v_Jiwa_SalesQuote_ListQuery setCashSalePostcodeContains(String value) { this.CashSalePostcodeContains = value; return this; } public String getCashSalePostcodeLike() { return CashSalePostcodeLike; } public v_Jiwa_SalesQuote_ListQuery setCashSalePostcodeLike(String value) { this.CashSalePostcodeLike = value; return this; } public ArrayList getCashSalePostcodeBetween() { return CashSalePostcodeBetween; } public v_Jiwa_SalesQuote_ListQuery setCashSalePostcodeBetween(ArrayList value) { this.CashSalePostcodeBetween = value; return this; } public ArrayList getCashSalePostcodeIn() { return CashSalePostcodeIn; } public v_Jiwa_SalesQuote_ListQuery setCashSalePostcodeIn(ArrayList value) { this.CashSalePostcodeIn = value; return this; } public String getCashSaleCompany() { return CashSaleCompany; } public v_Jiwa_SalesQuote_ListQuery setCashSaleCompany(String value) { this.CashSaleCompany = value; return this; } public String getCashSaleCompanyStartsWith() { return CashSaleCompanyStartsWith; } public v_Jiwa_SalesQuote_ListQuery setCashSaleCompanyStartsWith(String value) { this.CashSaleCompanyStartsWith = value; return this; } public String getCashSaleCompanyEndsWith() { return CashSaleCompanyEndsWith; } public v_Jiwa_SalesQuote_ListQuery setCashSaleCompanyEndsWith(String value) { this.CashSaleCompanyEndsWith = value; return this; } public String getCashSaleCompanyContains() { return CashSaleCompanyContains; } public v_Jiwa_SalesQuote_ListQuery setCashSaleCompanyContains(String value) { this.CashSaleCompanyContains = value; return this; } public String getCashSaleCompanyLike() { return CashSaleCompanyLike; } public v_Jiwa_SalesQuote_ListQuery setCashSaleCompanyLike(String value) { this.CashSaleCompanyLike = value; return this; } public ArrayList getCashSaleCompanyBetween() { return CashSaleCompanyBetween; } public v_Jiwa_SalesQuote_ListQuery setCashSaleCompanyBetween(ArrayList value) { this.CashSaleCompanyBetween = value; return this; } public ArrayList getCashSaleCompanyIn() { return CashSaleCompanyIn; } public v_Jiwa_SalesQuote_ListQuery setCashSaleCompanyIn(ArrayList value) { this.CashSaleCompanyIn = value; return this; } public String getCashSaleName() { return CashSaleName; } public v_Jiwa_SalesQuote_ListQuery setCashSaleName(String value) { this.CashSaleName = value; return this; } public String getCashSaleNameStartsWith() { return CashSaleNameStartsWith; } public v_Jiwa_SalesQuote_ListQuery setCashSaleNameStartsWith(String value) { this.CashSaleNameStartsWith = value; return this; } public String getCashSaleNameEndsWith() { return CashSaleNameEndsWith; } public v_Jiwa_SalesQuote_ListQuery setCashSaleNameEndsWith(String value) { this.CashSaleNameEndsWith = value; return this; } public String getCashSaleNameContains() { return CashSaleNameContains; } public v_Jiwa_SalesQuote_ListQuery setCashSaleNameContains(String value) { this.CashSaleNameContains = value; return this; } public String getCashSaleNameLike() { return CashSaleNameLike; } public v_Jiwa_SalesQuote_ListQuery setCashSaleNameLike(String value) { this.CashSaleNameLike = value; return this; } public ArrayList getCashSaleNameBetween() { return CashSaleNameBetween; } public v_Jiwa_SalesQuote_ListQuery setCashSaleNameBetween(ArrayList value) { this.CashSaleNameBetween = value; return this; } public ArrayList getCashSaleNameIn() { return CashSaleNameIn; } public v_Jiwa_SalesQuote_ListQuery setCashSaleNameIn(ArrayList value) { this.CashSaleNameIn = value; return this; } public String getCashSalePhone() { return CashSalePhone; } public v_Jiwa_SalesQuote_ListQuery setCashSalePhone(String value) { this.CashSalePhone = value; return this; } public String getCashSalePhoneStartsWith() { return CashSalePhoneStartsWith; } public v_Jiwa_SalesQuote_ListQuery setCashSalePhoneStartsWith(String value) { this.CashSalePhoneStartsWith = value; return this; } public String getCashSalePhoneEndsWith() { return CashSalePhoneEndsWith; } public v_Jiwa_SalesQuote_ListQuery setCashSalePhoneEndsWith(String value) { this.CashSalePhoneEndsWith = value; return this; } public String getCashSalePhoneContains() { return CashSalePhoneContains; } public v_Jiwa_SalesQuote_ListQuery setCashSalePhoneContains(String value) { this.CashSalePhoneContains = value; return this; } public String getCashSalePhoneLike() { return CashSalePhoneLike; } public v_Jiwa_SalesQuote_ListQuery setCashSalePhoneLike(String value) { this.CashSalePhoneLike = value; return this; } public ArrayList getCashSalePhoneBetween() { return CashSalePhoneBetween; } public v_Jiwa_SalesQuote_ListQuery setCashSalePhoneBetween(ArrayList value) { this.CashSalePhoneBetween = value; return this; } public ArrayList getCashSalePhoneIn() { return CashSalePhoneIn; } public v_Jiwa_SalesQuote_ListQuery setCashSalePhoneIn(ArrayList value) { this.CashSalePhoneIn = value; return this; } public String getDeliveryAddressContactName() { return DeliveryAddressContactName; } public v_Jiwa_SalesQuote_ListQuery setDeliveryAddressContactName(String value) { this.DeliveryAddressContactName = value; return this; } public String getDeliveryAddressContactNameStartsWith() { return DeliveryAddressContactNameStartsWith; } public v_Jiwa_SalesQuote_ListQuery setDeliveryAddressContactNameStartsWith(String value) { this.DeliveryAddressContactNameStartsWith = value; return this; } public String getDeliveryAddressContactNameEndsWith() { return DeliveryAddressContactNameEndsWith; } public v_Jiwa_SalesQuote_ListQuery setDeliveryAddressContactNameEndsWith(String value) { this.DeliveryAddressContactNameEndsWith = value; return this; } public String getDeliveryAddressContactNameContains() { return DeliveryAddressContactNameContains; } public v_Jiwa_SalesQuote_ListQuery setDeliveryAddressContactNameContains(String value) { this.DeliveryAddressContactNameContains = value; return this; } public String getDeliveryAddressContactNameLike() { return DeliveryAddressContactNameLike; } public v_Jiwa_SalesQuote_ListQuery setDeliveryAddressContactNameLike(String value) { this.DeliveryAddressContactNameLike = value; return this; } public ArrayList getDeliveryAddressContactNameBetween() { return DeliveryAddressContactNameBetween; } public v_Jiwa_SalesQuote_ListQuery setDeliveryAddressContactNameBetween(ArrayList value) { this.DeliveryAddressContactNameBetween = value; return this; } public ArrayList getDeliveryAddressContactNameIn() { return DeliveryAddressContactNameIn; } public v_Jiwa_SalesQuote_ListQuery setDeliveryAddressContactNameIn(ArrayList value) { this.DeliveryAddressContactNameIn = value; return this; } public String getDeliveryAddressee() { return DeliveryAddressee; } public v_Jiwa_SalesQuote_ListQuery setDeliveryAddressee(String value) { this.DeliveryAddressee = value; return this; } public String getDeliveryAddresseeStartsWith() { return DeliveryAddresseeStartsWith; } public v_Jiwa_SalesQuote_ListQuery setDeliveryAddresseeStartsWith(String value) { this.DeliveryAddresseeStartsWith = value; return this; } public String getDeliveryAddresseeEndsWith() { return DeliveryAddresseeEndsWith; } public v_Jiwa_SalesQuote_ListQuery setDeliveryAddresseeEndsWith(String value) { this.DeliveryAddresseeEndsWith = value; return this; } public String getDeliveryAddresseeContains() { return DeliveryAddresseeContains; } public v_Jiwa_SalesQuote_ListQuery setDeliveryAddresseeContains(String value) { this.DeliveryAddresseeContains = value; return this; } public String getDeliveryAddresseeLike() { return DeliveryAddresseeLike; } public v_Jiwa_SalesQuote_ListQuery setDeliveryAddresseeLike(String value) { this.DeliveryAddresseeLike = value; return this; } public ArrayList getDeliveryAddresseeBetween() { return DeliveryAddresseeBetween; } public v_Jiwa_SalesQuote_ListQuery setDeliveryAddresseeBetween(ArrayList value) { this.DeliveryAddresseeBetween = value; return this; } public ArrayList getDeliveryAddresseeIn() { return DeliveryAddresseeIn; } public v_Jiwa_SalesQuote_ListQuery setDeliveryAddresseeIn(ArrayList value) { this.DeliveryAddresseeIn = value; return this; } public String getDeliveryAddress1() { return DeliveryAddress1; } public v_Jiwa_SalesQuote_ListQuery setDeliveryAddress1(String value) { this.DeliveryAddress1 = value; return this; } public String getDeliveryAddress1StartsWith() { return DeliveryAddress1StartsWith; } public v_Jiwa_SalesQuote_ListQuery setDeliveryAddress1StartsWith(String value) { this.DeliveryAddress1StartsWith = value; return this; } public String getDeliveryAddress1EndsWith() { return DeliveryAddress1EndsWith; } public v_Jiwa_SalesQuote_ListQuery setDeliveryAddress1EndsWith(String value) { this.DeliveryAddress1EndsWith = value; return this; } public String getDeliveryAddress1Contains() { return DeliveryAddress1Contains; } public v_Jiwa_SalesQuote_ListQuery setDeliveryAddress1Contains(String value) { this.DeliveryAddress1Contains = value; return this; } public String getDeliveryAddress1Like() { return DeliveryAddress1Like; } public v_Jiwa_SalesQuote_ListQuery setDeliveryAddress1Like(String value) { this.DeliveryAddress1Like = value; return this; } public ArrayList getDeliveryAddress1Between() { return DeliveryAddress1Between; } public v_Jiwa_SalesQuote_ListQuery setDeliveryAddress1Between(ArrayList value) { this.DeliveryAddress1Between = value; return this; } public ArrayList getDeliveryAddress1In() { return DeliveryAddress1In; } public v_Jiwa_SalesQuote_ListQuery setDeliveryAddress1In(ArrayList value) { this.DeliveryAddress1In = value; return this; } public String getDeliveryAddress2() { return DeliveryAddress2; } public v_Jiwa_SalesQuote_ListQuery setDeliveryAddress2(String value) { this.DeliveryAddress2 = value; return this; } public String getDeliveryAddress2StartsWith() { return DeliveryAddress2StartsWith; } public v_Jiwa_SalesQuote_ListQuery setDeliveryAddress2StartsWith(String value) { this.DeliveryAddress2StartsWith = value; return this; } public String getDeliveryAddress2EndsWith() { return DeliveryAddress2EndsWith; } public v_Jiwa_SalesQuote_ListQuery setDeliveryAddress2EndsWith(String value) { this.DeliveryAddress2EndsWith = value; return this; } public String getDeliveryAddress2Contains() { return DeliveryAddress2Contains; } public v_Jiwa_SalesQuote_ListQuery setDeliveryAddress2Contains(String value) { this.DeliveryAddress2Contains = value; return this; } public String getDeliveryAddress2Like() { return DeliveryAddress2Like; } public v_Jiwa_SalesQuote_ListQuery setDeliveryAddress2Like(String value) { this.DeliveryAddress2Like = value; return this; } public ArrayList getDeliveryAddress2Between() { return DeliveryAddress2Between; } public v_Jiwa_SalesQuote_ListQuery setDeliveryAddress2Between(ArrayList value) { this.DeliveryAddress2Between = value; return this; } public ArrayList getDeliveryAddress2In() { return DeliveryAddress2In; } public v_Jiwa_SalesQuote_ListQuery setDeliveryAddress2In(ArrayList value) { this.DeliveryAddress2In = value; return this; } public String getDeliveryAddress3() { return DeliveryAddress3; } public v_Jiwa_SalesQuote_ListQuery setDeliveryAddress3(String value) { this.DeliveryAddress3 = value; return this; } public String getDeliveryAddress3StartsWith() { return DeliveryAddress3StartsWith; } public v_Jiwa_SalesQuote_ListQuery setDeliveryAddress3StartsWith(String value) { this.DeliveryAddress3StartsWith = value; return this; } public String getDeliveryAddress3EndsWith() { return DeliveryAddress3EndsWith; } public v_Jiwa_SalesQuote_ListQuery setDeliveryAddress3EndsWith(String value) { this.DeliveryAddress3EndsWith = value; return this; } public String getDeliveryAddress3Contains() { return DeliveryAddress3Contains; } public v_Jiwa_SalesQuote_ListQuery setDeliveryAddress3Contains(String value) { this.DeliveryAddress3Contains = value; return this; } public String getDeliveryAddress3Like() { return DeliveryAddress3Like; } public v_Jiwa_SalesQuote_ListQuery setDeliveryAddress3Like(String value) { this.DeliveryAddress3Like = value; return this; } public ArrayList getDeliveryAddress3Between() { return DeliveryAddress3Between; } public v_Jiwa_SalesQuote_ListQuery setDeliveryAddress3Between(ArrayList value) { this.DeliveryAddress3Between = value; return this; } public ArrayList getDeliveryAddress3In() { return DeliveryAddress3In; } public v_Jiwa_SalesQuote_ListQuery setDeliveryAddress3In(ArrayList value) { this.DeliveryAddress3In = value; return this; } public String getDeliveryAddress4() { return DeliveryAddress4; } public v_Jiwa_SalesQuote_ListQuery setDeliveryAddress4(String value) { this.DeliveryAddress4 = value; return this; } public String getDeliveryAddress4StartsWith() { return DeliveryAddress4StartsWith; } public v_Jiwa_SalesQuote_ListQuery setDeliveryAddress4StartsWith(String value) { this.DeliveryAddress4StartsWith = value; return this; } public String getDeliveryAddress4EndsWith() { return DeliveryAddress4EndsWith; } public v_Jiwa_SalesQuote_ListQuery setDeliveryAddress4EndsWith(String value) { this.DeliveryAddress4EndsWith = value; return this; } public String getDeliveryAddress4Contains() { return DeliveryAddress4Contains; } public v_Jiwa_SalesQuote_ListQuery setDeliveryAddress4Contains(String value) { this.DeliveryAddress4Contains = value; return this; } public String getDeliveryAddress4Like() { return DeliveryAddress4Like; } public v_Jiwa_SalesQuote_ListQuery setDeliveryAddress4Like(String value) { this.DeliveryAddress4Like = value; return this; } public ArrayList getDeliveryAddress4Between() { return DeliveryAddress4Between; } public v_Jiwa_SalesQuote_ListQuery setDeliveryAddress4Between(ArrayList value) { this.DeliveryAddress4Between = value; return this; } public ArrayList getDeliveryAddress4In() { return DeliveryAddress4In; } public v_Jiwa_SalesQuote_ListQuery setDeliveryAddress4In(ArrayList value) { this.DeliveryAddress4In = value; return this; } public String getDeliveryAddressPostcode() { return DeliveryAddressPostcode; } public v_Jiwa_SalesQuote_ListQuery setDeliveryAddressPostcode(String value) { this.DeliveryAddressPostcode = value; return this; } public String getDeliveryAddressPostcodeStartsWith() { return DeliveryAddressPostcodeStartsWith; } public v_Jiwa_SalesQuote_ListQuery setDeliveryAddressPostcodeStartsWith(String value) { this.DeliveryAddressPostcodeStartsWith = value; return this; } public String getDeliveryAddressPostcodeEndsWith() { return DeliveryAddressPostcodeEndsWith; } public v_Jiwa_SalesQuote_ListQuery setDeliveryAddressPostcodeEndsWith(String value) { this.DeliveryAddressPostcodeEndsWith = value; return this; } public String getDeliveryAddressPostcodeContains() { return DeliveryAddressPostcodeContains; } public v_Jiwa_SalesQuote_ListQuery setDeliveryAddressPostcodeContains(String value) { this.DeliveryAddressPostcodeContains = value; return this; } public String getDeliveryAddressPostcodeLike() { return DeliveryAddressPostcodeLike; } public v_Jiwa_SalesQuote_ListQuery setDeliveryAddressPostcodeLike(String value) { this.DeliveryAddressPostcodeLike = value; return this; } public ArrayList getDeliveryAddressPostcodeBetween() { return DeliveryAddressPostcodeBetween; } public v_Jiwa_SalesQuote_ListQuery setDeliveryAddressPostcodeBetween(ArrayList value) { this.DeliveryAddressPostcodeBetween = value; return this; } public ArrayList getDeliveryAddressPostcodeIn() { return DeliveryAddressPostcodeIn; } public v_Jiwa_SalesQuote_ListQuery setDeliveryAddressPostcodeIn(ArrayList value) { this.DeliveryAddressPostcodeIn = value; return this; } public String getDeliveryAddressCountry() { return DeliveryAddressCountry; } public v_Jiwa_SalesQuote_ListQuery setDeliveryAddressCountry(String value) { this.DeliveryAddressCountry = value; return this; } public String getDeliveryAddressCountryStartsWith() { return DeliveryAddressCountryStartsWith; } public v_Jiwa_SalesQuote_ListQuery setDeliveryAddressCountryStartsWith(String value) { this.DeliveryAddressCountryStartsWith = value; return this; } public String getDeliveryAddressCountryEndsWith() { return DeliveryAddressCountryEndsWith; } public v_Jiwa_SalesQuote_ListQuery setDeliveryAddressCountryEndsWith(String value) { this.DeliveryAddressCountryEndsWith = value; return this; } public String getDeliveryAddressCountryContains() { return DeliveryAddressCountryContains; } public v_Jiwa_SalesQuote_ListQuery setDeliveryAddressCountryContains(String value) { this.DeliveryAddressCountryContains = value; return this; } public String getDeliveryAddressCountryLike() { return DeliveryAddressCountryLike; } public v_Jiwa_SalesQuote_ListQuery setDeliveryAddressCountryLike(String value) { this.DeliveryAddressCountryLike = value; return this; } public ArrayList getDeliveryAddressCountryBetween() { return DeliveryAddressCountryBetween; } public v_Jiwa_SalesQuote_ListQuery setDeliveryAddressCountryBetween(ArrayList value) { this.DeliveryAddressCountryBetween = value; return this; } public ArrayList getDeliveryAddressCountryIn() { return DeliveryAddressCountryIn; } public v_Jiwa_SalesQuote_ListQuery setDeliveryAddressCountryIn(ArrayList value) { this.DeliveryAddressCountryIn = value; return this; } public BigDecimal getCartageCharge1() { return CartageCharge1; } public v_Jiwa_SalesQuote_ListQuery setCartageCharge1(BigDecimal value) { this.CartageCharge1 = value; return this; } public BigDecimal getCartageCharge1GreaterThanOrEqualTo() { return CartageCharge1GreaterThanOrEqualTo; } public v_Jiwa_SalesQuote_ListQuery setCartageCharge1GreaterThanOrEqualTo(BigDecimal value) { this.CartageCharge1GreaterThanOrEqualTo = value; return this; } public BigDecimal getCartageCharge1GreaterThan() { return CartageCharge1GreaterThan; } public v_Jiwa_SalesQuote_ListQuery setCartageCharge1GreaterThan(BigDecimal value) { this.CartageCharge1GreaterThan = value; return this; } public BigDecimal getCartageCharge1LessThan() { return CartageCharge1LessThan; } public v_Jiwa_SalesQuote_ListQuery setCartageCharge1LessThan(BigDecimal value) { this.CartageCharge1LessThan = value; return this; } public BigDecimal getCartageCharge1LessThanOrEqualTo() { return CartageCharge1LessThanOrEqualTo; } public v_Jiwa_SalesQuote_ListQuery setCartageCharge1LessThanOrEqualTo(BigDecimal value) { this.CartageCharge1LessThanOrEqualTo = value; return this; } public BigDecimal getCartageCharge1NotEqualTo() { return CartageCharge1NotEqualTo; } public v_Jiwa_SalesQuote_ListQuery setCartageCharge1NotEqualTo(BigDecimal value) { this.CartageCharge1NotEqualTo = value; return this; } public ArrayList getCartageCharge1Between() { return CartageCharge1Between; } public v_Jiwa_SalesQuote_ListQuery setCartageCharge1Between(ArrayList value) { this.CartageCharge1Between = value; return this; } public ArrayList getCartageCharge1In() { return CartageCharge1In; } public v_Jiwa_SalesQuote_ListQuery setCartageCharge1In(ArrayList value) { this.CartageCharge1In = value; return this; } public BigDecimal getCartage1TaxAmount() { return Cartage1TaxAmount; } public v_Jiwa_SalesQuote_ListQuery setCartage1TaxAmount(BigDecimal value) { this.Cartage1TaxAmount = value; return this; } public BigDecimal getCartage1TaxAmountGreaterThanOrEqualTo() { return Cartage1TaxAmountGreaterThanOrEqualTo; } public v_Jiwa_SalesQuote_ListQuery setCartage1TaxAmountGreaterThanOrEqualTo(BigDecimal value) { this.Cartage1TaxAmountGreaterThanOrEqualTo = value; return this; } public BigDecimal getCartage1TaxAmountGreaterThan() { return Cartage1TaxAmountGreaterThan; } public v_Jiwa_SalesQuote_ListQuery setCartage1TaxAmountGreaterThan(BigDecimal value) { this.Cartage1TaxAmountGreaterThan = value; return this; } public BigDecimal getCartage1TaxAmountLessThan() { return Cartage1TaxAmountLessThan; } public v_Jiwa_SalesQuote_ListQuery setCartage1TaxAmountLessThan(BigDecimal value) { this.Cartage1TaxAmountLessThan = value; return this; } public BigDecimal getCartage1TaxAmountLessThanOrEqualTo() { return Cartage1TaxAmountLessThanOrEqualTo; } public v_Jiwa_SalesQuote_ListQuery setCartage1TaxAmountLessThanOrEqualTo(BigDecimal value) { this.Cartage1TaxAmountLessThanOrEqualTo = value; return this; } public BigDecimal getCartage1TaxAmountNotEqualTo() { return Cartage1TaxAmountNotEqualTo; } public v_Jiwa_SalesQuote_ListQuery setCartage1TaxAmountNotEqualTo(BigDecimal value) { this.Cartage1TaxAmountNotEqualTo = value; return this; } public ArrayList getCartage1TaxAmountBetween() { return Cartage1TaxAmountBetween; } public v_Jiwa_SalesQuote_ListQuery setCartage1TaxAmountBetween(ArrayList value) { this.Cartage1TaxAmountBetween = value; return this; } public ArrayList getCartage1TaxAmountIn() { return Cartage1TaxAmountIn; } public v_Jiwa_SalesQuote_ListQuery setCartage1TaxAmountIn(ArrayList value) { this.Cartage1TaxAmountIn = value; return this; } public BigDecimal getCartageCharge2() { return CartageCharge2; } public v_Jiwa_SalesQuote_ListQuery setCartageCharge2(BigDecimal value) { this.CartageCharge2 = value; return this; } public BigDecimal getCartageCharge2GreaterThanOrEqualTo() { return CartageCharge2GreaterThanOrEqualTo; } public v_Jiwa_SalesQuote_ListQuery setCartageCharge2GreaterThanOrEqualTo(BigDecimal value) { this.CartageCharge2GreaterThanOrEqualTo = value; return this; } public BigDecimal getCartageCharge2GreaterThan() { return CartageCharge2GreaterThan; } public v_Jiwa_SalesQuote_ListQuery setCartageCharge2GreaterThan(BigDecimal value) { this.CartageCharge2GreaterThan = value; return this; } public BigDecimal getCartageCharge2LessThan() { return CartageCharge2LessThan; } public v_Jiwa_SalesQuote_ListQuery setCartageCharge2LessThan(BigDecimal value) { this.CartageCharge2LessThan = value; return this; } public BigDecimal getCartageCharge2LessThanOrEqualTo() { return CartageCharge2LessThanOrEqualTo; } public v_Jiwa_SalesQuote_ListQuery setCartageCharge2LessThanOrEqualTo(BigDecimal value) { this.CartageCharge2LessThanOrEqualTo = value; return this; } public BigDecimal getCartageCharge2NotEqualTo() { return CartageCharge2NotEqualTo; } public v_Jiwa_SalesQuote_ListQuery setCartageCharge2NotEqualTo(BigDecimal value) { this.CartageCharge2NotEqualTo = value; return this; } public ArrayList getCartageCharge2Between() { return CartageCharge2Between; } public v_Jiwa_SalesQuote_ListQuery setCartageCharge2Between(ArrayList value) { this.CartageCharge2Between = value; return this; } public ArrayList getCartageCharge2In() { return CartageCharge2In; } public v_Jiwa_SalesQuote_ListQuery setCartageCharge2In(ArrayList value) { this.CartageCharge2In = value; return this; } public BigDecimal getCartage2TaxAmount() { return Cartage2TaxAmount; } public v_Jiwa_SalesQuote_ListQuery setCartage2TaxAmount(BigDecimal value) { this.Cartage2TaxAmount = value; return this; } public BigDecimal getCartage2TaxAmountGreaterThanOrEqualTo() { return Cartage2TaxAmountGreaterThanOrEqualTo; } public v_Jiwa_SalesQuote_ListQuery setCartage2TaxAmountGreaterThanOrEqualTo(BigDecimal value) { this.Cartage2TaxAmountGreaterThanOrEqualTo = value; return this; } public BigDecimal getCartage2TaxAmountGreaterThan() { return Cartage2TaxAmountGreaterThan; } public v_Jiwa_SalesQuote_ListQuery setCartage2TaxAmountGreaterThan(BigDecimal value) { this.Cartage2TaxAmountGreaterThan = value; return this; } public BigDecimal getCartage2TaxAmountLessThan() { return Cartage2TaxAmountLessThan; } public v_Jiwa_SalesQuote_ListQuery setCartage2TaxAmountLessThan(BigDecimal value) { this.Cartage2TaxAmountLessThan = value; return this; } public BigDecimal getCartage2TaxAmountLessThanOrEqualTo() { return Cartage2TaxAmountLessThanOrEqualTo; } public v_Jiwa_SalesQuote_ListQuery setCartage2TaxAmountLessThanOrEqualTo(BigDecimal value) { this.Cartage2TaxAmountLessThanOrEqualTo = value; return this; } public BigDecimal getCartage2TaxAmountNotEqualTo() { return Cartage2TaxAmountNotEqualTo; } public v_Jiwa_SalesQuote_ListQuery setCartage2TaxAmountNotEqualTo(BigDecimal value) { this.Cartage2TaxAmountNotEqualTo = value; return this; } public ArrayList getCartage2TaxAmountBetween() { return Cartage2TaxAmountBetween; } public v_Jiwa_SalesQuote_ListQuery setCartage2TaxAmountBetween(ArrayList value) { this.Cartage2TaxAmountBetween = value; return this; } public ArrayList getCartage2TaxAmountIn() { return Cartage2TaxAmountIn; } public v_Jiwa_SalesQuote_ListQuery setCartage2TaxAmountIn(ArrayList value) { this.Cartage2TaxAmountIn = value; return this; } public BigDecimal getCartageCharge3() { return CartageCharge3; } public v_Jiwa_SalesQuote_ListQuery setCartageCharge3(BigDecimal value) { this.CartageCharge3 = value; return this; } public BigDecimal getCartageCharge3GreaterThanOrEqualTo() { return CartageCharge3GreaterThanOrEqualTo; } public v_Jiwa_SalesQuote_ListQuery setCartageCharge3GreaterThanOrEqualTo(BigDecimal value) { this.CartageCharge3GreaterThanOrEqualTo = value; return this; } public BigDecimal getCartageCharge3GreaterThan() { return CartageCharge3GreaterThan; } public v_Jiwa_SalesQuote_ListQuery setCartageCharge3GreaterThan(BigDecimal value) { this.CartageCharge3GreaterThan = value; return this; } public BigDecimal getCartageCharge3LessThan() { return CartageCharge3LessThan; } public v_Jiwa_SalesQuote_ListQuery setCartageCharge3LessThan(BigDecimal value) { this.CartageCharge3LessThan = value; return this; } public BigDecimal getCartageCharge3LessThanOrEqualTo() { return CartageCharge3LessThanOrEqualTo; } public v_Jiwa_SalesQuote_ListQuery setCartageCharge3LessThanOrEqualTo(BigDecimal value) { this.CartageCharge3LessThanOrEqualTo = value; return this; } public BigDecimal getCartageCharge3NotEqualTo() { return CartageCharge3NotEqualTo; } public v_Jiwa_SalesQuote_ListQuery setCartageCharge3NotEqualTo(BigDecimal value) { this.CartageCharge3NotEqualTo = value; return this; } public ArrayList getCartageCharge3Between() { return CartageCharge3Between; } public v_Jiwa_SalesQuote_ListQuery setCartageCharge3Between(ArrayList value) { this.CartageCharge3Between = value; return this; } public ArrayList getCartageCharge3In() { return CartageCharge3In; } public v_Jiwa_SalesQuote_ListQuery setCartageCharge3In(ArrayList value) { this.CartageCharge3In = value; return this; } public BigDecimal getCartage3TaxAmount() { return Cartage3TaxAmount; } public v_Jiwa_SalesQuote_ListQuery setCartage3TaxAmount(BigDecimal value) { this.Cartage3TaxAmount = value; return this; } public BigDecimal getCartage3TaxAmountGreaterThanOrEqualTo() { return Cartage3TaxAmountGreaterThanOrEqualTo; } public v_Jiwa_SalesQuote_ListQuery setCartage3TaxAmountGreaterThanOrEqualTo(BigDecimal value) { this.Cartage3TaxAmountGreaterThanOrEqualTo = value; return this; } public BigDecimal getCartage3TaxAmountGreaterThan() { return Cartage3TaxAmountGreaterThan; } public v_Jiwa_SalesQuote_ListQuery setCartage3TaxAmountGreaterThan(BigDecimal value) { this.Cartage3TaxAmountGreaterThan = value; return this; } public BigDecimal getCartage3TaxAmountLessThan() { return Cartage3TaxAmountLessThan; } public v_Jiwa_SalesQuote_ListQuery setCartage3TaxAmountLessThan(BigDecimal value) { this.Cartage3TaxAmountLessThan = value; return this; } public BigDecimal getCartage3TaxAmountLessThanOrEqualTo() { return Cartage3TaxAmountLessThanOrEqualTo; } public v_Jiwa_SalesQuote_ListQuery setCartage3TaxAmountLessThanOrEqualTo(BigDecimal value) { this.Cartage3TaxAmountLessThanOrEqualTo = value; return this; } public BigDecimal getCartage3TaxAmountNotEqualTo() { return Cartage3TaxAmountNotEqualTo; } public v_Jiwa_SalesQuote_ListQuery setCartage3TaxAmountNotEqualTo(BigDecimal value) { this.Cartage3TaxAmountNotEqualTo = value; return this; } public ArrayList getCartage3TaxAmountBetween() { return Cartage3TaxAmountBetween; } public v_Jiwa_SalesQuote_ListQuery setCartage3TaxAmountBetween(ArrayList value) { this.Cartage3TaxAmountBetween = value; return this; } public ArrayList getCartage3TaxAmountIn() { return Cartage3TaxAmountIn; } public v_Jiwa_SalesQuote_ListQuery setCartage3TaxAmountIn(ArrayList value) { this.Cartage3TaxAmountIn = value; return this; } public String getCourierDetails() { return CourierDetails; } public v_Jiwa_SalesQuote_ListQuery setCourierDetails(String value) { this.CourierDetails = value; return this; } public String getCourierDetailsStartsWith() { return CourierDetailsStartsWith; } public v_Jiwa_SalesQuote_ListQuery setCourierDetailsStartsWith(String value) { this.CourierDetailsStartsWith = value; return this; } public String getCourierDetailsEndsWith() { return CourierDetailsEndsWith; } public v_Jiwa_SalesQuote_ListQuery setCourierDetailsEndsWith(String value) { this.CourierDetailsEndsWith = value; return this; } public String getCourierDetailsContains() { return CourierDetailsContains; } public v_Jiwa_SalesQuote_ListQuery setCourierDetailsContains(String value) { this.CourierDetailsContains = value; return this; } public String getCourierDetailsLike() { return CourierDetailsLike; } public v_Jiwa_SalesQuote_ListQuery setCourierDetailsLike(String value) { this.CourierDetailsLike = value; return this; } public ArrayList getCourierDetailsBetween() { return CourierDetailsBetween; } public v_Jiwa_SalesQuote_ListQuery setCourierDetailsBetween(ArrayList value) { this.CourierDetailsBetween = value; return this; } public ArrayList getCourierDetailsIn() { return CourierDetailsIn; } public v_Jiwa_SalesQuote_ListQuery setCourierDetailsIn(ArrayList value) { this.CourierDetailsIn = value; return this; } public String getNotes() { return Notes; } public v_Jiwa_SalesQuote_ListQuery setNotes(String value) { this.Notes = value; return this; } public String getNotesStartsWith() { return NotesStartsWith; } public v_Jiwa_SalesQuote_ListQuery setNotesStartsWith(String value) { this.NotesStartsWith = value; return this; } public String getNotesEndsWith() { return NotesEndsWith; } public v_Jiwa_SalesQuote_ListQuery setNotesEndsWith(String value) { this.NotesEndsWith = value; return this; } public String getNotesContains() { return NotesContains; } public v_Jiwa_SalesQuote_ListQuery setNotesContains(String value) { this.NotesContains = value; return this; } public String getNotesLike() { return NotesLike; } public v_Jiwa_SalesQuote_ListQuery setNotesLike(String value) { this.NotesLike = value; return this; } public ArrayList getNotesBetween() { return NotesBetween; } public v_Jiwa_SalesQuote_ListQuery setNotesBetween(ArrayList value) { this.NotesBetween = value; return this; } public ArrayList getNotesIn() { return NotesIn; } public v_Jiwa_SalesQuote_ListQuery setNotesIn(ArrayList value) { this.NotesIn = value; return this; } public String getStaffID() { return StaffID; } public v_Jiwa_SalesQuote_ListQuery setStaffID(String value) { this.StaffID = value; return this; } public String getStaffIDStartsWith() { return StaffIDStartsWith; } public v_Jiwa_SalesQuote_ListQuery setStaffIDStartsWith(String value) { this.StaffIDStartsWith = value; return this; } public String getStaffIDEndsWith() { return StaffIDEndsWith; } public v_Jiwa_SalesQuote_ListQuery setStaffIDEndsWith(String value) { this.StaffIDEndsWith = value; return this; } public String getStaffIDContains() { return StaffIDContains; } public v_Jiwa_SalesQuote_ListQuery setStaffIDContains(String value) { this.StaffIDContains = value; return this; } public String getStaffIDLike() { return StaffIDLike; } public v_Jiwa_SalesQuote_ListQuery setStaffIDLike(String value) { this.StaffIDLike = value; return this; } public ArrayList getStaffIDBetween() { return StaffIDBetween; } public v_Jiwa_SalesQuote_ListQuery setStaffIDBetween(ArrayList value) { this.StaffIDBetween = value; return this; } public ArrayList getStaffIDIn() { return StaffIDIn; } public v_Jiwa_SalesQuote_ListQuery setStaffIDIn(ArrayList value) { this.StaffIDIn = value; return this; } public String getStaffTitle() { return StaffTitle; } public v_Jiwa_SalesQuote_ListQuery setStaffTitle(String value) { this.StaffTitle = value; return this; } public String getStaffTitleStartsWith() { return StaffTitleStartsWith; } public v_Jiwa_SalesQuote_ListQuery setStaffTitleStartsWith(String value) { this.StaffTitleStartsWith = value; return this; } public String getStaffTitleEndsWith() { return StaffTitleEndsWith; } public v_Jiwa_SalesQuote_ListQuery setStaffTitleEndsWith(String value) { this.StaffTitleEndsWith = value; return this; } public String getStaffTitleContains() { return StaffTitleContains; } public v_Jiwa_SalesQuote_ListQuery setStaffTitleContains(String value) { this.StaffTitleContains = value; return this; } public String getStaffTitleLike() { return StaffTitleLike; } public v_Jiwa_SalesQuote_ListQuery setStaffTitleLike(String value) { this.StaffTitleLike = value; return this; } public ArrayList getStaffTitleBetween() { return StaffTitleBetween; } public v_Jiwa_SalesQuote_ListQuery setStaffTitleBetween(ArrayList value) { this.StaffTitleBetween = value; return this; } public ArrayList getStaffTitleIn() { return StaffTitleIn; } public v_Jiwa_SalesQuote_ListQuery setStaffTitleIn(ArrayList value) { this.StaffTitleIn = value; return this; } public String getStaffFirstName() { return StaffFirstName; } public v_Jiwa_SalesQuote_ListQuery setStaffFirstName(String value) { this.StaffFirstName = value; return this; } public String getStaffFirstNameStartsWith() { return StaffFirstNameStartsWith; } public v_Jiwa_SalesQuote_ListQuery setStaffFirstNameStartsWith(String value) { this.StaffFirstNameStartsWith = value; return this; } public String getStaffFirstNameEndsWith() { return StaffFirstNameEndsWith; } public v_Jiwa_SalesQuote_ListQuery setStaffFirstNameEndsWith(String value) { this.StaffFirstNameEndsWith = value; return this; } public String getStaffFirstNameContains() { return StaffFirstNameContains; } public v_Jiwa_SalesQuote_ListQuery setStaffFirstNameContains(String value) { this.StaffFirstNameContains = value; return this; } public String getStaffFirstNameLike() { return StaffFirstNameLike; } public v_Jiwa_SalesQuote_ListQuery setStaffFirstNameLike(String value) { this.StaffFirstNameLike = value; return this; } public ArrayList getStaffFirstNameBetween() { return StaffFirstNameBetween; } public v_Jiwa_SalesQuote_ListQuery setStaffFirstNameBetween(ArrayList value) { this.StaffFirstNameBetween = value; return this; } public ArrayList getStaffFirstNameIn() { return StaffFirstNameIn; } public v_Jiwa_SalesQuote_ListQuery setStaffFirstNameIn(ArrayList value) { this.StaffFirstNameIn = value; return this; } public String getStaffSurname() { return StaffSurname; } public v_Jiwa_SalesQuote_ListQuery setStaffSurname(String value) { this.StaffSurname = value; return this; } public String getStaffSurnameStartsWith() { return StaffSurnameStartsWith; } public v_Jiwa_SalesQuote_ListQuery setStaffSurnameStartsWith(String value) { this.StaffSurnameStartsWith = value; return this; } public String getStaffSurnameEndsWith() { return StaffSurnameEndsWith; } public v_Jiwa_SalesQuote_ListQuery setStaffSurnameEndsWith(String value) { this.StaffSurnameEndsWith = value; return this; } public String getStaffSurnameContains() { return StaffSurnameContains; } public v_Jiwa_SalesQuote_ListQuery setStaffSurnameContains(String value) { this.StaffSurnameContains = value; return this; } public String getStaffSurnameLike() { return StaffSurnameLike; } public v_Jiwa_SalesQuote_ListQuery setStaffSurnameLike(String value) { this.StaffSurnameLike = value; return this; } public ArrayList getStaffSurnameBetween() { return StaffSurnameBetween; } public v_Jiwa_SalesQuote_ListQuery setStaffSurnameBetween(ArrayList value) { this.StaffSurnameBetween = value; return this; } public ArrayList getStaffSurnameIn() { return StaffSurnameIn; } public v_Jiwa_SalesQuote_ListQuery setStaffSurnameIn(ArrayList value) { this.StaffSurnameIn = value; return this; } public String getStaffUsername() { return StaffUsername; } public v_Jiwa_SalesQuote_ListQuery setStaffUsername(String value) { this.StaffUsername = value; return this; } public String getStaffUsernameStartsWith() { return StaffUsernameStartsWith; } public v_Jiwa_SalesQuote_ListQuery setStaffUsernameStartsWith(String value) { this.StaffUsernameStartsWith = value; return this; } public String getStaffUsernameEndsWith() { return StaffUsernameEndsWith; } public v_Jiwa_SalesQuote_ListQuery setStaffUsernameEndsWith(String value) { this.StaffUsernameEndsWith = value; return this; } public String getStaffUsernameContains() { return StaffUsernameContains; } public v_Jiwa_SalesQuote_ListQuery setStaffUsernameContains(String value) { this.StaffUsernameContains = value; return this; } public String getStaffUsernameLike() { return StaffUsernameLike; } public v_Jiwa_SalesQuote_ListQuery setStaffUsernameLike(String value) { this.StaffUsernameLike = value; return this; } public ArrayList getStaffUsernameBetween() { return StaffUsernameBetween; } public v_Jiwa_SalesQuote_ListQuery setStaffUsernameBetween(ArrayList value) { this.StaffUsernameBetween = value; return this; } public ArrayList getStaffUsernameIn() { return StaffUsernameIn; } public v_Jiwa_SalesQuote_ListQuery setStaffUsernameIn(ArrayList value) { this.StaffUsernameIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class v_JIWA_SO_LinesKitHeaderTaxQuery extends QueryDb implements IReturn> { public String InvoiceLineID = null; public String InvoiceLineIDStartsWith = null; public String InvoiceLineIDEndsWith = null; public String InvoiceLineIDContains = null; public String InvoiceLineIDLike = null; public ArrayList InvoiceLineIDBetween = null; public ArrayList InvoiceLineIDIn = null; public BigDecimal KitHeaderTax = null; public BigDecimal KitHeaderTaxGreaterThanOrEqualTo = null; public BigDecimal KitHeaderTaxGreaterThan = null; public BigDecimal KitHeaderTaxLessThan = null; public BigDecimal KitHeaderTaxLessThanOrEqualTo = null; public BigDecimal KitHeaderTaxNotEqualTo = null; public ArrayList KitHeaderTaxBetween = null; public ArrayList KitHeaderTaxIn = null; public BigDecimal KitHeaderTotalIncTax = null; public BigDecimal KitHeaderTotalIncTaxGreaterThanOrEqualTo = null; public BigDecimal KitHeaderTotalIncTaxGreaterThan = null; public BigDecimal KitHeaderTotalIncTaxLessThan = null; public BigDecimal KitHeaderTotalIncTaxLessThanOrEqualTo = null; public BigDecimal KitHeaderTotalIncTaxNotEqualTo = null; public ArrayList KitHeaderTotalIncTaxBetween = null; public ArrayList KitHeaderTotalIncTaxIn = null; public String getInvoiceLineID() { return InvoiceLineID; } public v_JIWA_SO_LinesKitHeaderTaxQuery setInvoiceLineID(String value) { this.InvoiceLineID = value; return this; } public String getInvoiceLineIDStartsWith() { return InvoiceLineIDStartsWith; } public v_JIWA_SO_LinesKitHeaderTaxQuery setInvoiceLineIDStartsWith(String value) { this.InvoiceLineIDStartsWith = value; return this; } public String getInvoiceLineIDEndsWith() { return InvoiceLineIDEndsWith; } public v_JIWA_SO_LinesKitHeaderTaxQuery setInvoiceLineIDEndsWith(String value) { this.InvoiceLineIDEndsWith = value; return this; } public String getInvoiceLineIDContains() { return InvoiceLineIDContains; } public v_JIWA_SO_LinesKitHeaderTaxQuery setInvoiceLineIDContains(String value) { this.InvoiceLineIDContains = value; return this; } public String getInvoiceLineIDLike() { return InvoiceLineIDLike; } public v_JIWA_SO_LinesKitHeaderTaxQuery setInvoiceLineIDLike(String value) { this.InvoiceLineIDLike = value; return this; } public ArrayList getInvoiceLineIDBetween() { return InvoiceLineIDBetween; } public v_JIWA_SO_LinesKitHeaderTaxQuery setInvoiceLineIDBetween(ArrayList value) { this.InvoiceLineIDBetween = value; return this; } public ArrayList getInvoiceLineIDIn() { return InvoiceLineIDIn; } public v_JIWA_SO_LinesKitHeaderTaxQuery setInvoiceLineIDIn(ArrayList value) { this.InvoiceLineIDIn = value; return this; } public BigDecimal getKitHeaderTax() { return KitHeaderTax; } public v_JIWA_SO_LinesKitHeaderTaxQuery setKitHeaderTax(BigDecimal value) { this.KitHeaderTax = value; return this; } public BigDecimal getKitHeaderTaxGreaterThanOrEqualTo() { return KitHeaderTaxGreaterThanOrEqualTo; } public v_JIWA_SO_LinesKitHeaderTaxQuery setKitHeaderTaxGreaterThanOrEqualTo(BigDecimal value) { this.KitHeaderTaxGreaterThanOrEqualTo = value; return this; } public BigDecimal getKitHeaderTaxGreaterThan() { return KitHeaderTaxGreaterThan; } public v_JIWA_SO_LinesKitHeaderTaxQuery setKitHeaderTaxGreaterThan(BigDecimal value) { this.KitHeaderTaxGreaterThan = value; return this; } public BigDecimal getKitHeaderTaxLessThan() { return KitHeaderTaxLessThan; } public v_JIWA_SO_LinesKitHeaderTaxQuery setKitHeaderTaxLessThan(BigDecimal value) { this.KitHeaderTaxLessThan = value; return this; } public BigDecimal getKitHeaderTaxLessThanOrEqualTo() { return KitHeaderTaxLessThanOrEqualTo; } public v_JIWA_SO_LinesKitHeaderTaxQuery setKitHeaderTaxLessThanOrEqualTo(BigDecimal value) { this.KitHeaderTaxLessThanOrEqualTo = value; return this; } public BigDecimal getKitHeaderTaxNotEqualTo() { return KitHeaderTaxNotEqualTo; } public v_JIWA_SO_LinesKitHeaderTaxQuery setKitHeaderTaxNotEqualTo(BigDecimal value) { this.KitHeaderTaxNotEqualTo = value; return this; } public ArrayList getKitHeaderTaxBetween() { return KitHeaderTaxBetween; } public v_JIWA_SO_LinesKitHeaderTaxQuery setKitHeaderTaxBetween(ArrayList value) { this.KitHeaderTaxBetween = value; return this; } public ArrayList getKitHeaderTaxIn() { return KitHeaderTaxIn; } public v_JIWA_SO_LinesKitHeaderTaxQuery setKitHeaderTaxIn(ArrayList value) { this.KitHeaderTaxIn = value; return this; } public BigDecimal getKitHeaderTotalIncTax() { return KitHeaderTotalIncTax; } public v_JIWA_SO_LinesKitHeaderTaxQuery setKitHeaderTotalIncTax(BigDecimal value) { this.KitHeaderTotalIncTax = value; return this; } public BigDecimal getKitHeaderTotalIncTaxGreaterThanOrEqualTo() { return KitHeaderTotalIncTaxGreaterThanOrEqualTo; } public v_JIWA_SO_LinesKitHeaderTaxQuery setKitHeaderTotalIncTaxGreaterThanOrEqualTo(BigDecimal value) { this.KitHeaderTotalIncTaxGreaterThanOrEqualTo = value; return this; } public BigDecimal getKitHeaderTotalIncTaxGreaterThan() { return KitHeaderTotalIncTaxGreaterThan; } public v_JIWA_SO_LinesKitHeaderTaxQuery setKitHeaderTotalIncTaxGreaterThan(BigDecimal value) { this.KitHeaderTotalIncTaxGreaterThan = value; return this; } public BigDecimal getKitHeaderTotalIncTaxLessThan() { return KitHeaderTotalIncTaxLessThan; } public v_JIWA_SO_LinesKitHeaderTaxQuery setKitHeaderTotalIncTaxLessThan(BigDecimal value) { this.KitHeaderTotalIncTaxLessThan = value; return this; } public BigDecimal getKitHeaderTotalIncTaxLessThanOrEqualTo() { return KitHeaderTotalIncTaxLessThanOrEqualTo; } public v_JIWA_SO_LinesKitHeaderTaxQuery setKitHeaderTotalIncTaxLessThanOrEqualTo(BigDecimal value) { this.KitHeaderTotalIncTaxLessThanOrEqualTo = value; return this; } public BigDecimal getKitHeaderTotalIncTaxNotEqualTo() { return KitHeaderTotalIncTaxNotEqualTo; } public v_JIWA_SO_LinesKitHeaderTaxQuery setKitHeaderTotalIncTaxNotEqualTo(BigDecimal value) { this.KitHeaderTotalIncTaxNotEqualTo = value; return this; } public ArrayList getKitHeaderTotalIncTaxBetween() { return KitHeaderTotalIncTaxBetween; } public v_JIWA_SO_LinesKitHeaderTaxQuery setKitHeaderTotalIncTaxBetween(ArrayList value) { this.KitHeaderTotalIncTaxBetween = value; return this; } public ArrayList getKitHeaderTotalIncTaxIn() { return KitHeaderTotalIncTaxIn; } public v_JIWA_SO_LinesKitHeaderTaxQuery setKitHeaderTotalIncTaxIn(ArrayList value) { this.KitHeaderTotalIncTaxIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class v_JobPrioritiesQuery extends QueryDb implements IReturn> { public String RecID = null; public String RecIDStartsWith = null; public String RecIDEndsWith = null; public String RecIDContains = null; public String RecIDLike = null; public ArrayList RecIDBetween = null; public ArrayList RecIDIn = null; public String HighestTaskPriorityRecID = null; public String HighestTaskPriorityRecIDStartsWith = null; public String HighestTaskPriorityRecIDEndsWith = null; public String HighestTaskPriorityRecIDContains = null; public String HighestTaskPriorityRecIDLike = null; public ArrayList HighestTaskPriorityRecIDBetween = null; public ArrayList HighestTaskPriorityRecIDIn = null; public String getRecID() { return RecID; } public v_JobPrioritiesQuery setRecID(String value) { this.RecID = value; return this; } public String getRecIDStartsWith() { return RecIDStartsWith; } public v_JobPrioritiesQuery setRecIDStartsWith(String value) { this.RecIDStartsWith = value; return this; } public String getRecIDEndsWith() { return RecIDEndsWith; } public v_JobPrioritiesQuery setRecIDEndsWith(String value) { this.RecIDEndsWith = value; return this; } public String getRecIDContains() { return RecIDContains; } public v_JobPrioritiesQuery setRecIDContains(String value) { this.RecIDContains = value; return this; } public String getRecIDLike() { return RecIDLike; } public v_JobPrioritiesQuery setRecIDLike(String value) { this.RecIDLike = value; return this; } public ArrayList getRecIDBetween() { return RecIDBetween; } public v_JobPrioritiesQuery setRecIDBetween(ArrayList value) { this.RecIDBetween = value; return this; } public ArrayList getRecIDIn() { return RecIDIn; } public v_JobPrioritiesQuery setRecIDIn(ArrayList value) { this.RecIDIn = value; return this; } public String getHighestTaskPriorityRecID() { return HighestTaskPriorityRecID; } public v_JobPrioritiesQuery setHighestTaskPriorityRecID(String value) { this.HighestTaskPriorityRecID = value; return this; } public String getHighestTaskPriorityRecIDStartsWith() { return HighestTaskPriorityRecIDStartsWith; } public v_JobPrioritiesQuery setHighestTaskPriorityRecIDStartsWith(String value) { this.HighestTaskPriorityRecIDStartsWith = value; return this; } public String getHighestTaskPriorityRecIDEndsWith() { return HighestTaskPriorityRecIDEndsWith; } public v_JobPrioritiesQuery setHighestTaskPriorityRecIDEndsWith(String value) { this.HighestTaskPriorityRecIDEndsWith = value; return this; } public String getHighestTaskPriorityRecIDContains() { return HighestTaskPriorityRecIDContains; } public v_JobPrioritiesQuery setHighestTaskPriorityRecIDContains(String value) { this.HighestTaskPriorityRecIDContains = value; return this; } public String getHighestTaskPriorityRecIDLike() { return HighestTaskPriorityRecIDLike; } public v_JobPrioritiesQuery setHighestTaskPriorityRecIDLike(String value) { this.HighestTaskPriorityRecIDLike = value; return this; } public ArrayList getHighestTaskPriorityRecIDBetween() { return HighestTaskPriorityRecIDBetween; } public v_JobPrioritiesQuery setHighestTaskPriorityRecIDBetween(ArrayList value) { this.HighestTaskPriorityRecIDBetween = value; return this; } public ArrayList getHighestTaskPriorityRecIDIn() { return HighestTaskPriorityRecIDIn; } public v_JobPrioritiesQuery setHighestTaskPriorityRecIDIn(ArrayList value) { this.HighestTaskPriorityRecIDIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class v_JobStatusesQuery extends QueryDb implements IReturn> { public String RecID = null; public String RecIDStartsWith = null; public String RecIDEndsWith = null; public String RecIDContains = null; public String RecIDLike = null; public ArrayList RecIDBetween = null; public ArrayList RecIDIn = null; public String SM_Jobs_RecID = null; public String SM_Jobs_RecIDStartsWith = null; public String SM_Jobs_RecIDEndsWith = null; public String SM_Jobs_RecIDContains = null; public String SM_Jobs_RecIDLike = null; public ArrayList SM_Jobs_RecIDBetween = null; public ArrayList SM_Jobs_RecIDIn = null; public String getRecID() { return RecID; } public v_JobStatusesQuery setRecID(String value) { this.RecID = value; return this; } public String getRecIDStartsWith() { return RecIDStartsWith; } public v_JobStatusesQuery setRecIDStartsWith(String value) { this.RecIDStartsWith = value; return this; } public String getRecIDEndsWith() { return RecIDEndsWith; } public v_JobStatusesQuery setRecIDEndsWith(String value) { this.RecIDEndsWith = value; return this; } public String getRecIDContains() { return RecIDContains; } public v_JobStatusesQuery setRecIDContains(String value) { this.RecIDContains = value; return this; } public String getRecIDLike() { return RecIDLike; } public v_JobStatusesQuery setRecIDLike(String value) { this.RecIDLike = value; return this; } public ArrayList getRecIDBetween() { return RecIDBetween; } public v_JobStatusesQuery setRecIDBetween(ArrayList value) { this.RecIDBetween = value; return this; } public ArrayList getRecIDIn() { return RecIDIn; } public v_JobStatusesQuery setRecIDIn(ArrayList value) { this.RecIDIn = value; return this; } public String getSmJobsRecID() { return SM_Jobs_RecID; } public v_JobStatusesQuery setSmJobsRecID(String value) { this.SM_Jobs_RecID = value; return this; } public String getSmJobsRecIDStartsWith() { return SM_Jobs_RecIDStartsWith; } public v_JobStatusesQuery setSmJobsRecIDStartsWith(String value) { this.SM_Jobs_RecIDStartsWith = value; return this; } public String getSmJobsRecIDEndsWith() { return SM_Jobs_RecIDEndsWith; } public v_JobStatusesQuery setSmJobsRecIDEndsWith(String value) { this.SM_Jobs_RecIDEndsWith = value; return this; } public String getSmJobsRecIDContains() { return SM_Jobs_RecIDContains; } public v_JobStatusesQuery setSmJobsRecIDContains(String value) { this.SM_Jobs_RecIDContains = value; return this; } public String getSmJobsRecIDLike() { return SM_Jobs_RecIDLike; } public v_JobStatusesQuery setSmJobsRecIDLike(String value) { this.SM_Jobs_RecIDLike = value; return this; } public ArrayList getSmJobsRecIDBetween() { return SM_Jobs_RecIDBetween; } public v_JobStatusesQuery setSmJobsRecIDBetween(ArrayList value) { this.SM_Jobs_RecIDBetween = value; return this; } public ArrayList getSmJobsRecIDIn() { return SM_Jobs_RecIDIn; } public v_JobStatusesQuery setSmJobsRecIDIn(ArrayList value) { this.SM_Jobs_RecIDIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class v_JobStatusesMinDisplayOrderQuery extends QueryDb implements IReturn> { public String SM_Jobs_RecID = null; public String SM_Jobs_RecIDStartsWith = null; public String SM_Jobs_RecIDEndsWith = null; public String SM_Jobs_RecIDContains = null; public String SM_Jobs_RecIDLike = null; public ArrayList SM_Jobs_RecIDBetween = null; public ArrayList SM_Jobs_RecIDIn = null; public Integer ItemNo = null; public Integer ItemNoGreaterThanOrEqualTo = null; public Integer ItemNoGreaterThan = null; public Integer ItemNoLessThan = null; public Integer ItemNoLessThanOrEqualTo = null; public Integer ItemNoNotEqualTo = null; public ArrayList ItemNoBetween = null; public ArrayList ItemNoIn = null; public String getSmJobsRecID() { return SM_Jobs_RecID; } public v_JobStatusesMinDisplayOrderQuery setSmJobsRecID(String value) { this.SM_Jobs_RecID = value; return this; } public String getSmJobsRecIDStartsWith() { return SM_Jobs_RecIDStartsWith; } public v_JobStatusesMinDisplayOrderQuery setSmJobsRecIDStartsWith(String value) { this.SM_Jobs_RecIDStartsWith = value; return this; } public String getSmJobsRecIDEndsWith() { return SM_Jobs_RecIDEndsWith; } public v_JobStatusesMinDisplayOrderQuery setSmJobsRecIDEndsWith(String value) { this.SM_Jobs_RecIDEndsWith = value; return this; } public String getSmJobsRecIDContains() { return SM_Jobs_RecIDContains; } public v_JobStatusesMinDisplayOrderQuery setSmJobsRecIDContains(String value) { this.SM_Jobs_RecIDContains = value; return this; } public String getSmJobsRecIDLike() { return SM_Jobs_RecIDLike; } public v_JobStatusesMinDisplayOrderQuery setSmJobsRecIDLike(String value) { this.SM_Jobs_RecIDLike = value; return this; } public ArrayList getSmJobsRecIDBetween() { return SM_Jobs_RecIDBetween; } public v_JobStatusesMinDisplayOrderQuery setSmJobsRecIDBetween(ArrayList value) { this.SM_Jobs_RecIDBetween = value; return this; } public ArrayList getSmJobsRecIDIn() { return SM_Jobs_RecIDIn; } public v_JobStatusesMinDisplayOrderQuery setSmJobsRecIDIn(ArrayList value) { this.SM_Jobs_RecIDIn = value; return this; } public Integer getItemNo() { return ItemNo; } public v_JobStatusesMinDisplayOrderQuery setItemNo(Integer value) { this.ItemNo = value; return this; } public Integer getItemNoGreaterThanOrEqualTo() { return ItemNoGreaterThanOrEqualTo; } public v_JobStatusesMinDisplayOrderQuery setItemNoGreaterThanOrEqualTo(Integer value) { this.ItemNoGreaterThanOrEqualTo = value; return this; } public Integer getItemNoGreaterThan() { return ItemNoGreaterThan; } public v_JobStatusesMinDisplayOrderQuery setItemNoGreaterThan(Integer value) { this.ItemNoGreaterThan = value; return this; } public Integer getItemNoLessThan() { return ItemNoLessThan; } public v_JobStatusesMinDisplayOrderQuery setItemNoLessThan(Integer value) { this.ItemNoLessThan = value; return this; } public Integer getItemNoLessThanOrEqualTo() { return ItemNoLessThanOrEqualTo; } public v_JobStatusesMinDisplayOrderQuery setItemNoLessThanOrEqualTo(Integer value) { this.ItemNoLessThanOrEqualTo = value; return this; } public Integer getItemNoNotEqualTo() { return ItemNoNotEqualTo; } public v_JobStatusesMinDisplayOrderQuery setItemNoNotEqualTo(Integer value) { this.ItemNoNotEqualTo = value; return this; } public ArrayList getItemNoBetween() { return ItemNoBetween; } public v_JobStatusesMinDisplayOrderQuery setItemNoBetween(ArrayList value) { this.ItemNoBetween = value; return this; } public ArrayList getItemNoIn() { return ItemNoIn; } public v_JobStatusesMinDisplayOrderQuery setItemNoIn(ArrayList value) { this.ItemNoIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class v_JobsWithActiveTaskQuery extends QueryDb implements IReturn> { public String JobID = null; public String JobIDStartsWith = null; public String JobIDEndsWith = null; public String JobIDContains = null; public String JobIDLike = null; public ArrayList JobIDBetween = null; public ArrayList JobIDIn = null; public String JobNo = null; public String JobNoStartsWith = null; public String JobNoEndsWith = null; public String JobNoContains = null; public String JobNoLike = null; public ArrayList JobNoBetween = null; public ArrayList JobNoIn = null; public String DB_Main_RecID = null; public String DB_Main_RecIDStartsWith = null; public String DB_Main_RecIDEndsWith = null; public String DB_Main_RecIDContains = null; public String DB_Main_RecIDLike = null; public ArrayList DB_Main_RecIDBetween = null; public ArrayList DB_Main_RecIDIn = null; public String AccountNo = null; public String AccountNoStartsWith = null; public String AccountNoEndsWith = null; public String AccountNoContains = null; public String AccountNoLike = null; public ArrayList AccountNoBetween = null; public ArrayList AccountNoIn = null; public String Name = null; public String NameStartsWith = null; public String NameEndsWith = null; public String NameContains = null; public String NameLike = null; public ArrayList NameBetween = null; public ArrayList NameIn = null; public String JobDescription = null; public String JobDescriptionStartsWith = null; public String JobDescriptionEndsWith = null; public String JobDescriptionContains = null; public String JobDescriptionLike = null; public ArrayList JobDescriptionBetween = null; public ArrayList JobDescriptionIn = null; public String CoordinatorName = null; public String CoordinatorNameStartsWith = null; public String CoordinatorNameEndsWith = null; public String CoordinatorNameContains = null; public String CoordinatorNameLike = null; public ArrayList CoordinatorNameBetween = null; public ArrayList CoordinatorNameIn = null; public Date JobDateLogged = null; public Date JobDateLoggedGreaterThanOrEqualTo = null; public Date JobDateLoggedGreaterThan = null; public Date JobDateLoggedLessThan = null; public Date JobDateLoggedLessThanOrEqualTo = null; public Date JobDateLoggedNotEqualTo = null; public ArrayList JobDateLoggedBetween = null; public ArrayList JobDateLoggedIn = null; public String getJobID() { return JobID; } public v_JobsWithActiveTaskQuery setJobID(String value) { this.JobID = value; return this; } public String getJobIDStartsWith() { return JobIDStartsWith; } public v_JobsWithActiveTaskQuery setJobIDStartsWith(String value) { this.JobIDStartsWith = value; return this; } public String getJobIDEndsWith() { return JobIDEndsWith; } public v_JobsWithActiveTaskQuery setJobIDEndsWith(String value) { this.JobIDEndsWith = value; return this; } public String getJobIDContains() { return JobIDContains; } public v_JobsWithActiveTaskQuery setJobIDContains(String value) { this.JobIDContains = value; return this; } public String getJobIDLike() { return JobIDLike; } public v_JobsWithActiveTaskQuery setJobIDLike(String value) { this.JobIDLike = value; return this; } public ArrayList getJobIDBetween() { return JobIDBetween; } public v_JobsWithActiveTaskQuery setJobIDBetween(ArrayList value) { this.JobIDBetween = value; return this; } public ArrayList getJobIDIn() { return JobIDIn; } public v_JobsWithActiveTaskQuery setJobIDIn(ArrayList value) { this.JobIDIn = value; return this; } public String getJobNo() { return JobNo; } public v_JobsWithActiveTaskQuery setJobNo(String value) { this.JobNo = value; return this; } public String getJobNoStartsWith() { return JobNoStartsWith; } public v_JobsWithActiveTaskQuery setJobNoStartsWith(String value) { this.JobNoStartsWith = value; return this; } public String getJobNoEndsWith() { return JobNoEndsWith; } public v_JobsWithActiveTaskQuery setJobNoEndsWith(String value) { this.JobNoEndsWith = value; return this; } public String getJobNoContains() { return JobNoContains; } public v_JobsWithActiveTaskQuery setJobNoContains(String value) { this.JobNoContains = value; return this; } public String getJobNoLike() { return JobNoLike; } public v_JobsWithActiveTaskQuery setJobNoLike(String value) { this.JobNoLike = value; return this; } public ArrayList getJobNoBetween() { return JobNoBetween; } public v_JobsWithActiveTaskQuery setJobNoBetween(ArrayList value) { this.JobNoBetween = value; return this; } public ArrayList getJobNoIn() { return JobNoIn; } public v_JobsWithActiveTaskQuery setJobNoIn(ArrayList value) { this.JobNoIn = value; return this; } public String getDbMainRecID() { return DB_Main_RecID; } public v_JobsWithActiveTaskQuery setDbMainRecID(String value) { this.DB_Main_RecID = value; return this; } public String getDbMainRecIDStartsWith() { return DB_Main_RecIDStartsWith; } public v_JobsWithActiveTaskQuery setDbMainRecIDStartsWith(String value) { this.DB_Main_RecIDStartsWith = value; return this; } public String getDbMainRecIDEndsWith() { return DB_Main_RecIDEndsWith; } public v_JobsWithActiveTaskQuery setDbMainRecIDEndsWith(String value) { this.DB_Main_RecIDEndsWith = value; return this; } public String getDbMainRecIDContains() { return DB_Main_RecIDContains; } public v_JobsWithActiveTaskQuery setDbMainRecIDContains(String value) { this.DB_Main_RecIDContains = value; return this; } public String getDbMainRecIDLike() { return DB_Main_RecIDLike; } public v_JobsWithActiveTaskQuery setDbMainRecIDLike(String value) { this.DB_Main_RecIDLike = value; return this; } public ArrayList getDbMainRecIDBetween() { return DB_Main_RecIDBetween; } public v_JobsWithActiveTaskQuery setDbMainRecIDBetween(ArrayList value) { this.DB_Main_RecIDBetween = value; return this; } public ArrayList getDbMainRecIDIn() { return DB_Main_RecIDIn; } public v_JobsWithActiveTaskQuery setDbMainRecIDIn(ArrayList value) { this.DB_Main_RecIDIn = value; return this; } public String getAccountNo() { return AccountNo; } public v_JobsWithActiveTaskQuery setAccountNo(String value) { this.AccountNo = value; return this; } public String getAccountNoStartsWith() { return AccountNoStartsWith; } public v_JobsWithActiveTaskQuery setAccountNoStartsWith(String value) { this.AccountNoStartsWith = value; return this; } public String getAccountNoEndsWith() { return AccountNoEndsWith; } public v_JobsWithActiveTaskQuery setAccountNoEndsWith(String value) { this.AccountNoEndsWith = value; return this; } public String getAccountNoContains() { return AccountNoContains; } public v_JobsWithActiveTaskQuery setAccountNoContains(String value) { this.AccountNoContains = value; return this; } public String getAccountNoLike() { return AccountNoLike; } public v_JobsWithActiveTaskQuery setAccountNoLike(String value) { this.AccountNoLike = value; return this; } public ArrayList getAccountNoBetween() { return AccountNoBetween; } public v_JobsWithActiveTaskQuery setAccountNoBetween(ArrayList value) { this.AccountNoBetween = value; return this; } public ArrayList getAccountNoIn() { return AccountNoIn; } public v_JobsWithActiveTaskQuery setAccountNoIn(ArrayList value) { this.AccountNoIn = value; return this; } public String getName() { return Name; } public v_JobsWithActiveTaskQuery setName(String value) { this.Name = value; return this; } public String getNameStartsWith() { return NameStartsWith; } public v_JobsWithActiveTaskQuery setNameStartsWith(String value) { this.NameStartsWith = value; return this; } public String getNameEndsWith() { return NameEndsWith; } public v_JobsWithActiveTaskQuery setNameEndsWith(String value) { this.NameEndsWith = value; return this; } public String getNameContains() { return NameContains; } public v_JobsWithActiveTaskQuery setNameContains(String value) { this.NameContains = value; return this; } public String getNameLike() { return NameLike; } public v_JobsWithActiveTaskQuery setNameLike(String value) { this.NameLike = value; return this; } public ArrayList getNameBetween() { return NameBetween; } public v_JobsWithActiveTaskQuery setNameBetween(ArrayList value) { this.NameBetween = value; return this; } public ArrayList getNameIn() { return NameIn; } public v_JobsWithActiveTaskQuery setNameIn(ArrayList value) { this.NameIn = value; return this; } public String getJobDescription() { return JobDescription; } public v_JobsWithActiveTaskQuery setJobDescription(String value) { this.JobDescription = value; return this; } public String getJobDescriptionStartsWith() { return JobDescriptionStartsWith; } public v_JobsWithActiveTaskQuery setJobDescriptionStartsWith(String value) { this.JobDescriptionStartsWith = value; return this; } public String getJobDescriptionEndsWith() { return JobDescriptionEndsWith; } public v_JobsWithActiveTaskQuery setJobDescriptionEndsWith(String value) { this.JobDescriptionEndsWith = value; return this; } public String getJobDescriptionContains() { return JobDescriptionContains; } public v_JobsWithActiveTaskQuery setJobDescriptionContains(String value) { this.JobDescriptionContains = value; return this; } public String getJobDescriptionLike() { return JobDescriptionLike; } public v_JobsWithActiveTaskQuery setJobDescriptionLike(String value) { this.JobDescriptionLike = value; return this; } public ArrayList getJobDescriptionBetween() { return JobDescriptionBetween; } public v_JobsWithActiveTaskQuery setJobDescriptionBetween(ArrayList value) { this.JobDescriptionBetween = value; return this; } public ArrayList getJobDescriptionIn() { return JobDescriptionIn; } public v_JobsWithActiveTaskQuery setJobDescriptionIn(ArrayList value) { this.JobDescriptionIn = value; return this; } public String getCoordinatorName() { return CoordinatorName; } public v_JobsWithActiveTaskQuery setCoordinatorName(String value) { this.CoordinatorName = value; return this; } public String getCoordinatorNameStartsWith() { return CoordinatorNameStartsWith; } public v_JobsWithActiveTaskQuery setCoordinatorNameStartsWith(String value) { this.CoordinatorNameStartsWith = value; return this; } public String getCoordinatorNameEndsWith() { return CoordinatorNameEndsWith; } public v_JobsWithActiveTaskQuery setCoordinatorNameEndsWith(String value) { this.CoordinatorNameEndsWith = value; return this; } public String getCoordinatorNameContains() { return CoordinatorNameContains; } public v_JobsWithActiveTaskQuery setCoordinatorNameContains(String value) { this.CoordinatorNameContains = value; return this; } public String getCoordinatorNameLike() { return CoordinatorNameLike; } public v_JobsWithActiveTaskQuery setCoordinatorNameLike(String value) { this.CoordinatorNameLike = value; return this; } public ArrayList getCoordinatorNameBetween() { return CoordinatorNameBetween; } public v_JobsWithActiveTaskQuery setCoordinatorNameBetween(ArrayList value) { this.CoordinatorNameBetween = value; return this; } public ArrayList getCoordinatorNameIn() { return CoordinatorNameIn; } public v_JobsWithActiveTaskQuery setCoordinatorNameIn(ArrayList value) { this.CoordinatorNameIn = value; return this; } public Date getJobDateLogged() { return JobDateLogged; } public v_JobsWithActiveTaskQuery setJobDateLogged(Date value) { this.JobDateLogged = value; return this; } public Date getJobDateLoggedGreaterThanOrEqualTo() { return JobDateLoggedGreaterThanOrEqualTo; } public v_JobsWithActiveTaskQuery setJobDateLoggedGreaterThanOrEqualTo(Date value) { this.JobDateLoggedGreaterThanOrEqualTo = value; return this; } public Date getJobDateLoggedGreaterThan() { return JobDateLoggedGreaterThan; } public v_JobsWithActiveTaskQuery setJobDateLoggedGreaterThan(Date value) { this.JobDateLoggedGreaterThan = value; return this; } public Date getJobDateLoggedLessThan() { return JobDateLoggedLessThan; } public v_JobsWithActiveTaskQuery setJobDateLoggedLessThan(Date value) { this.JobDateLoggedLessThan = value; return this; } public Date getJobDateLoggedLessThanOrEqualTo() { return JobDateLoggedLessThanOrEqualTo; } public v_JobsWithActiveTaskQuery setJobDateLoggedLessThanOrEqualTo(Date value) { this.JobDateLoggedLessThanOrEqualTo = value; return this; } public Date getJobDateLoggedNotEqualTo() { return JobDateLoggedNotEqualTo; } public v_JobsWithActiveTaskQuery setJobDateLoggedNotEqualTo(Date value) { this.JobDateLoggedNotEqualTo = value; return this; } public ArrayList getJobDateLoggedBetween() { return JobDateLoggedBetween; } public v_JobsWithActiveTaskQuery setJobDateLoggedBetween(ArrayList value) { this.JobDateLoggedBetween = value; return this; } public ArrayList getJobDateLoggedIn() { return JobDateLoggedIn; } public v_JobsWithActiveTaskQuery setJobDateLoggedIn(ArrayList value) { this.JobDateLoggedIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class v_PrepaidLabourPacksHoursInvoicedQuery extends QueryDb implements IReturn> { public String SM_PrepaidLabourPacks_RecID = null; public String SM_PrepaidLabourPacks_RecIDStartsWith = null; public String SM_PrepaidLabourPacks_RecIDEndsWith = null; public String SM_PrepaidLabourPacks_RecIDContains = null; public String SM_PrepaidLabourPacks_RecIDLike = null; public ArrayList SM_PrepaidLabourPacks_RecIDBetween = null; public ArrayList SM_PrepaidLabourPacks_RecIDIn = null; public BigDecimal HoursInvoiced = null; public BigDecimal HoursInvoicedGreaterThanOrEqualTo = null; public BigDecimal HoursInvoicedGreaterThan = null; public BigDecimal HoursInvoicedLessThan = null; public BigDecimal HoursInvoicedLessThanOrEqualTo = null; public BigDecimal HoursInvoicedNotEqualTo = null; public ArrayList HoursInvoicedBetween = null; public ArrayList HoursInvoicedIn = null; public String getSmPrepaidLabourPacksRecID() { return SM_PrepaidLabourPacks_RecID; } public v_PrepaidLabourPacksHoursInvoicedQuery setSmPrepaidLabourPacksRecID(String value) { this.SM_PrepaidLabourPacks_RecID = value; return this; } public String getSmPrepaidLabourPacksRecIDStartsWith() { return SM_PrepaidLabourPacks_RecIDStartsWith; } public v_PrepaidLabourPacksHoursInvoicedQuery setSmPrepaidLabourPacksRecIDStartsWith(String value) { this.SM_PrepaidLabourPacks_RecIDStartsWith = value; return this; } public String getSmPrepaidLabourPacksRecIDEndsWith() { return SM_PrepaidLabourPacks_RecIDEndsWith; } public v_PrepaidLabourPacksHoursInvoicedQuery setSmPrepaidLabourPacksRecIDEndsWith(String value) { this.SM_PrepaidLabourPacks_RecIDEndsWith = value; return this; } public String getSmPrepaidLabourPacksRecIDContains() { return SM_PrepaidLabourPacks_RecIDContains; } public v_PrepaidLabourPacksHoursInvoicedQuery setSmPrepaidLabourPacksRecIDContains(String value) { this.SM_PrepaidLabourPacks_RecIDContains = value; return this; } public String getSmPrepaidLabourPacksRecIDLike() { return SM_PrepaidLabourPacks_RecIDLike; } public v_PrepaidLabourPacksHoursInvoicedQuery setSmPrepaidLabourPacksRecIDLike(String value) { this.SM_PrepaidLabourPacks_RecIDLike = value; return this; } public ArrayList getSmPrepaidLabourPacksRecIDBetween() { return SM_PrepaidLabourPacks_RecIDBetween; } public v_PrepaidLabourPacksHoursInvoicedQuery setSmPrepaidLabourPacksRecIDBetween(ArrayList value) { this.SM_PrepaidLabourPacks_RecIDBetween = value; return this; } public ArrayList getSmPrepaidLabourPacksRecIDIn() { return SM_PrepaidLabourPacks_RecIDIn; } public v_PrepaidLabourPacksHoursInvoicedQuery setSmPrepaidLabourPacksRecIDIn(ArrayList value) { this.SM_PrepaidLabourPacks_RecIDIn = value; return this; } public BigDecimal getHoursInvoiced() { return HoursInvoiced; } public v_PrepaidLabourPacksHoursInvoicedQuery setHoursInvoiced(BigDecimal value) { this.HoursInvoiced = value; return this; } public BigDecimal getHoursInvoicedGreaterThanOrEqualTo() { return HoursInvoicedGreaterThanOrEqualTo; } public v_PrepaidLabourPacksHoursInvoicedQuery setHoursInvoicedGreaterThanOrEqualTo(BigDecimal value) { this.HoursInvoicedGreaterThanOrEqualTo = value; return this; } public BigDecimal getHoursInvoicedGreaterThan() { return HoursInvoicedGreaterThan; } public v_PrepaidLabourPacksHoursInvoicedQuery setHoursInvoicedGreaterThan(BigDecimal value) { this.HoursInvoicedGreaterThan = value; return this; } public BigDecimal getHoursInvoicedLessThan() { return HoursInvoicedLessThan; } public v_PrepaidLabourPacksHoursInvoicedQuery setHoursInvoicedLessThan(BigDecimal value) { this.HoursInvoicedLessThan = value; return this; } public BigDecimal getHoursInvoicedLessThanOrEqualTo() { return HoursInvoicedLessThanOrEqualTo; } public v_PrepaidLabourPacksHoursInvoicedQuery setHoursInvoicedLessThanOrEqualTo(BigDecimal value) { this.HoursInvoicedLessThanOrEqualTo = value; return this; } public BigDecimal getHoursInvoicedNotEqualTo() { return HoursInvoicedNotEqualTo; } public v_PrepaidLabourPacksHoursInvoicedQuery setHoursInvoicedNotEqualTo(BigDecimal value) { this.HoursInvoicedNotEqualTo = value; return this; } public ArrayList getHoursInvoicedBetween() { return HoursInvoicedBetween; } public v_PrepaidLabourPacksHoursInvoicedQuery setHoursInvoicedBetween(ArrayList value) { this.HoursInvoicedBetween = value; return this; } public ArrayList getHoursInvoicedIn() { return HoursInvoicedIn; } public v_PrepaidLabourPacksHoursInvoicedQuery setHoursInvoicedIn(ArrayList value) { this.HoursInvoicedIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class v_PrepaidLabourPacksHoursUsedQuery extends QueryDb implements IReturn> { public String SM_PrepaidLabourPacks_RecID = null; public String SM_PrepaidLabourPacks_RecIDStartsWith = null; public String SM_PrepaidLabourPacks_RecIDEndsWith = null; public String SM_PrepaidLabourPacks_RecIDContains = null; public String SM_PrepaidLabourPacks_RecIDLike = null; public ArrayList SM_PrepaidLabourPacks_RecIDBetween = null; public ArrayList SM_PrepaidLabourPacks_RecIDIn = null; public BigDecimal HoursUsed = null; public BigDecimal HoursUsedGreaterThanOrEqualTo = null; public BigDecimal HoursUsedGreaterThan = null; public BigDecimal HoursUsedLessThan = null; public BigDecimal HoursUsedLessThanOrEqualTo = null; public BigDecimal HoursUsedNotEqualTo = null; public ArrayList HoursUsedBetween = null; public ArrayList HoursUsedIn = null; public String getSmPrepaidLabourPacksRecID() { return SM_PrepaidLabourPacks_RecID; } public v_PrepaidLabourPacksHoursUsedQuery setSmPrepaidLabourPacksRecID(String value) { this.SM_PrepaidLabourPacks_RecID = value; return this; } public String getSmPrepaidLabourPacksRecIDStartsWith() { return SM_PrepaidLabourPacks_RecIDStartsWith; } public v_PrepaidLabourPacksHoursUsedQuery setSmPrepaidLabourPacksRecIDStartsWith(String value) { this.SM_PrepaidLabourPacks_RecIDStartsWith = value; return this; } public String getSmPrepaidLabourPacksRecIDEndsWith() { return SM_PrepaidLabourPacks_RecIDEndsWith; } public v_PrepaidLabourPacksHoursUsedQuery setSmPrepaidLabourPacksRecIDEndsWith(String value) { this.SM_PrepaidLabourPacks_RecIDEndsWith = value; return this; } public String getSmPrepaidLabourPacksRecIDContains() { return SM_PrepaidLabourPacks_RecIDContains; } public v_PrepaidLabourPacksHoursUsedQuery setSmPrepaidLabourPacksRecIDContains(String value) { this.SM_PrepaidLabourPacks_RecIDContains = value; return this; } public String getSmPrepaidLabourPacksRecIDLike() { return SM_PrepaidLabourPacks_RecIDLike; } public v_PrepaidLabourPacksHoursUsedQuery setSmPrepaidLabourPacksRecIDLike(String value) { this.SM_PrepaidLabourPacks_RecIDLike = value; return this; } public ArrayList getSmPrepaidLabourPacksRecIDBetween() { return SM_PrepaidLabourPacks_RecIDBetween; } public v_PrepaidLabourPacksHoursUsedQuery setSmPrepaidLabourPacksRecIDBetween(ArrayList value) { this.SM_PrepaidLabourPacks_RecIDBetween = value; return this; } public ArrayList getSmPrepaidLabourPacksRecIDIn() { return SM_PrepaidLabourPacks_RecIDIn; } public v_PrepaidLabourPacksHoursUsedQuery setSmPrepaidLabourPacksRecIDIn(ArrayList value) { this.SM_PrepaidLabourPacks_RecIDIn = value; return this; } public BigDecimal getHoursUsed() { return HoursUsed; } public v_PrepaidLabourPacksHoursUsedQuery setHoursUsed(BigDecimal value) { this.HoursUsed = value; return this; } public BigDecimal getHoursUsedGreaterThanOrEqualTo() { return HoursUsedGreaterThanOrEqualTo; } public v_PrepaidLabourPacksHoursUsedQuery setHoursUsedGreaterThanOrEqualTo(BigDecimal value) { this.HoursUsedGreaterThanOrEqualTo = value; return this; } public BigDecimal getHoursUsedGreaterThan() { return HoursUsedGreaterThan; } public v_PrepaidLabourPacksHoursUsedQuery setHoursUsedGreaterThan(BigDecimal value) { this.HoursUsedGreaterThan = value; return this; } public BigDecimal getHoursUsedLessThan() { return HoursUsedLessThan; } public v_PrepaidLabourPacksHoursUsedQuery setHoursUsedLessThan(BigDecimal value) { this.HoursUsedLessThan = value; return this; } public BigDecimal getHoursUsedLessThanOrEqualTo() { return HoursUsedLessThanOrEqualTo; } public v_PrepaidLabourPacksHoursUsedQuery setHoursUsedLessThanOrEqualTo(BigDecimal value) { this.HoursUsedLessThanOrEqualTo = value; return this; } public BigDecimal getHoursUsedNotEqualTo() { return HoursUsedNotEqualTo; } public v_PrepaidLabourPacksHoursUsedQuery setHoursUsedNotEqualTo(BigDecimal value) { this.HoursUsedNotEqualTo = value; return this; } public ArrayList getHoursUsedBetween() { return HoursUsedBetween; } public v_PrepaidLabourPacksHoursUsedQuery setHoursUsedBetween(ArrayList value) { this.HoursUsedBetween = value; return this; } public ArrayList getHoursUsedIn() { return HoursUsedIn; } public v_PrepaidLabourPacksHoursUsedQuery setHoursUsedIn(ArrayList value) { this.HoursUsedIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class v_SalesInformationQuery extends QueryDb implements IReturn> { public String InvoiceLineID = null; public String InvoiceLineIDStartsWith = null; public String InvoiceLineIDEndsWith = null; public String InvoiceLineIDContains = null; public String InvoiceLineIDLike = null; public ArrayList InvoiceLineIDBetween = null; public ArrayList InvoiceLineIDIn = null; public String InvoiceNo = null; public String InvoiceNoStartsWith = null; public String InvoiceNoEndsWith = null; public String InvoiceNoContains = null; public String InvoiceNoLike = null; public ArrayList InvoiceNoBetween = null; public ArrayList InvoiceNoIn = null; public String StaffID = null; public String StaffIDStartsWith = null; public String StaffIDEndsWith = null; public String StaffIDContains = null; public String StaffIDLike = null; public ArrayList StaffIDBetween = null; public ArrayList StaffIDIn = null; public String IN_LogicalID = null; public String IN_LogicalIDStartsWith = null; public String IN_LogicalIDEndsWith = null; public String IN_LogicalIDContains = null; public String IN_LogicalIDLike = null; public ArrayList IN_LogicalIDBetween = null; public ArrayList IN_LogicalIDIn = null; public String IN_PhysicalID = null; public String IN_PhysicalIDStartsWith = null; public String IN_PhysicalIDEndsWith = null; public String IN_PhysicalIDContains = null; public String IN_PhysicalIDLike = null; public ArrayList IN_PhysicalIDBetween = null; public ArrayList IN_PhysicalIDIn = null; public String BranchID = null; public String BranchIDStartsWith = null; public String BranchIDEndsWith = null; public String BranchIDContains = null; public String BranchIDLike = null; public ArrayList BranchIDBetween = null; public ArrayList BranchIDIn = null; public String PartNo = null; public String PartNoStartsWith = null; public String PartNoEndsWith = null; public String PartNoContains = null; public String PartNoLike = null; public ArrayList PartNoBetween = null; public ArrayList PartNoIn = null; public String PartDescription = null; public String PartDescriptionStartsWith = null; public String PartDescriptionEndsWith = null; public String PartDescriptionContains = null; public String PartDescriptionLike = null; public ArrayList PartDescriptionBetween = null; public ArrayList PartDescriptionIn = null; public BigDecimal Quantity = null; public BigDecimal QuantityGreaterThanOrEqualTo = null; public BigDecimal QuantityGreaterThan = null; public BigDecimal QuantityLessThan = null; public BigDecimal QuantityLessThanOrEqualTo = null; public BigDecimal QuantityNotEqualTo = null; public ArrayList QuantityBetween = null; public ArrayList QuantityIn = null; public BigDecimal LineTotalIncGST = null; public BigDecimal LineTotalIncGSTGreaterThanOrEqualTo = null; public BigDecimal LineTotalIncGSTGreaterThan = null; public BigDecimal LineTotalIncGSTLessThan = null; public BigDecimal LineTotalIncGSTLessThanOrEqualTo = null; public BigDecimal LineTotalIncGSTNotEqualTo = null; public ArrayList LineTotalIncGSTBetween = null; public ArrayList LineTotalIncGSTIn = null; public BigDecimal LineTaxTotal = null; public BigDecimal LineTaxTotalGreaterThanOrEqualTo = null; public BigDecimal LineTaxTotalGreaterThan = null; public BigDecimal LineTaxTotalLessThan = null; public BigDecimal LineTaxTotalLessThanOrEqualTo = null; public BigDecimal LineTaxTotalNotEqualTo = null; public ArrayList LineTaxTotalBetween = null; public ArrayList LineTaxTotalIn = null; public BigDecimal LineTotalExGST = null; public BigDecimal LineTotalExGSTGreaterThanOrEqualTo = null; public BigDecimal LineTotalExGSTGreaterThan = null; public BigDecimal LineTotalExGSTLessThan = null; public BigDecimal LineTotalExGSTLessThanOrEqualTo = null; public BigDecimal LineTotalExGSTNotEqualTo = null; public ArrayList LineTotalExGSTBetween = null; public ArrayList LineTotalExGSTIn = null; public BigDecimal LineCost = null; public BigDecimal LineCostGreaterThanOrEqualTo = null; public BigDecimal LineCostGreaterThan = null; public BigDecimal LineCostLessThan = null; public BigDecimal LineCostLessThanOrEqualTo = null; public BigDecimal LineCostNotEqualTo = null; public ArrayList LineCostBetween = null; public ArrayList LineCostIn = null; public BigDecimal LineProfit = null; public BigDecimal LineProfitGreaterThanOrEqualTo = null; public BigDecimal LineProfitGreaterThan = null; public BigDecimal LineProfitLessThan = null; public BigDecimal LineProfitLessThanOrEqualTo = null; public BigDecimal LineProfitNotEqualTo = null; public ArrayList LineProfitBetween = null; public ArrayList LineProfitIn = null; public String ClassificationDescription = null; public String ClassificationDescriptionStartsWith = null; public String ClassificationDescriptionEndsWith = null; public String ClassificationDescriptionContains = null; public String ClassificationDescriptionLike = null; public ArrayList ClassificationDescriptionBetween = null; public ArrayList ClassificationDescriptionIn = null; public String Category1DescriptionAtTimeOfSale = null; public String Category1DescriptionAtTimeOfSaleStartsWith = null; public String Category1DescriptionAtTimeOfSaleEndsWith = null; public String Category1DescriptionAtTimeOfSaleContains = null; public String Category1DescriptionAtTimeOfSaleLike = null; public ArrayList Category1DescriptionAtTimeOfSaleBetween = null; public ArrayList Category1DescriptionAtTimeOfSaleIn = null; public String Category2DescriptionAtTimeOfSale = null; public String Category2DescriptionAtTimeOfSaleStartsWith = null; public String Category2DescriptionAtTimeOfSaleEndsWith = null; public String Category2DescriptionAtTimeOfSaleContains = null; public String Category2DescriptionAtTimeOfSaleLike = null; public ArrayList Category2DescriptionAtTimeOfSaleBetween = null; public ArrayList Category2DescriptionAtTimeOfSaleIn = null; public String Category3DescriptionAtTimeOfSale = null; public String Category3DescriptionAtTimeOfSaleStartsWith = null; public String Category3DescriptionAtTimeOfSaleEndsWith = null; public String Category3DescriptionAtTimeOfSaleContains = null; public String Category3DescriptionAtTimeOfSaleLike = null; public ArrayList Category3DescriptionAtTimeOfSaleBetween = null; public ArrayList Category3DescriptionAtTimeOfSaleIn = null; public String DebtorID = null; public String DebtorIDStartsWith = null; public String DebtorIDEndsWith = null; public String DebtorIDContains = null; public String DebtorIDLike = null; public ArrayList DebtorIDBetween = null; public ArrayList DebtorIDIn = null; public String DebtorClassificationID = null; public String DebtorClassificationIDStartsWith = null; public String DebtorClassificationIDEndsWith = null; public String DebtorClassificationIDContains = null; public String DebtorClassificationIDLike = null; public ArrayList DebtorClassificationIDBetween = null; public ArrayList DebtorClassificationIDIn = null; public Date ProcessDate = null; public Date ProcessDateGreaterThanOrEqualTo = null; public Date ProcessDateGreaterThan = null; public Date ProcessDateLessThan = null; public Date ProcessDateLessThanOrEqualTo = null; public Date ProcessDateNotEqualTo = null; public ArrayList ProcessDateBetween = null; public ArrayList ProcessDateIn = null; public String InventoryID = null; public String InventoryIDStartsWith = null; public String InventoryIDEndsWith = null; public String InventoryIDContains = null; public String InventoryIDLike = null; public ArrayList InventoryIDBetween = null; public ArrayList InventoryIDIn = null; public String getInvoiceLineID() { return InvoiceLineID; } public v_SalesInformationQuery setInvoiceLineID(String value) { this.InvoiceLineID = value; return this; } public String getInvoiceLineIDStartsWith() { return InvoiceLineIDStartsWith; } public v_SalesInformationQuery setInvoiceLineIDStartsWith(String value) { this.InvoiceLineIDStartsWith = value; return this; } public String getInvoiceLineIDEndsWith() { return InvoiceLineIDEndsWith; } public v_SalesInformationQuery setInvoiceLineIDEndsWith(String value) { this.InvoiceLineIDEndsWith = value; return this; } public String getInvoiceLineIDContains() { return InvoiceLineIDContains; } public v_SalesInformationQuery setInvoiceLineIDContains(String value) { this.InvoiceLineIDContains = value; return this; } public String getInvoiceLineIDLike() { return InvoiceLineIDLike; } public v_SalesInformationQuery setInvoiceLineIDLike(String value) { this.InvoiceLineIDLike = value; return this; } public ArrayList getInvoiceLineIDBetween() { return InvoiceLineIDBetween; } public v_SalesInformationQuery setInvoiceLineIDBetween(ArrayList value) { this.InvoiceLineIDBetween = value; return this; } public ArrayList getInvoiceLineIDIn() { return InvoiceLineIDIn; } public v_SalesInformationQuery setInvoiceLineIDIn(ArrayList value) { this.InvoiceLineIDIn = value; return this; } public String getInvoiceNo() { return InvoiceNo; } public v_SalesInformationQuery setInvoiceNo(String value) { this.InvoiceNo = value; return this; } public String getInvoiceNoStartsWith() { return InvoiceNoStartsWith; } public v_SalesInformationQuery setInvoiceNoStartsWith(String value) { this.InvoiceNoStartsWith = value; return this; } public String getInvoiceNoEndsWith() { return InvoiceNoEndsWith; } public v_SalesInformationQuery setInvoiceNoEndsWith(String value) { this.InvoiceNoEndsWith = value; return this; } public String getInvoiceNoContains() { return InvoiceNoContains; } public v_SalesInformationQuery setInvoiceNoContains(String value) { this.InvoiceNoContains = value; return this; } public String getInvoiceNoLike() { return InvoiceNoLike; } public v_SalesInformationQuery setInvoiceNoLike(String value) { this.InvoiceNoLike = value; return this; } public ArrayList getInvoiceNoBetween() { return InvoiceNoBetween; } public v_SalesInformationQuery setInvoiceNoBetween(ArrayList value) { this.InvoiceNoBetween = value; return this; } public ArrayList getInvoiceNoIn() { return InvoiceNoIn; } public v_SalesInformationQuery setInvoiceNoIn(ArrayList value) { this.InvoiceNoIn = value; return this; } public String getStaffID() { return StaffID; } public v_SalesInformationQuery setStaffID(String value) { this.StaffID = value; return this; } public String getStaffIDStartsWith() { return StaffIDStartsWith; } public v_SalesInformationQuery setStaffIDStartsWith(String value) { this.StaffIDStartsWith = value; return this; } public String getStaffIDEndsWith() { return StaffIDEndsWith; } public v_SalesInformationQuery setStaffIDEndsWith(String value) { this.StaffIDEndsWith = value; return this; } public String getStaffIDContains() { return StaffIDContains; } public v_SalesInformationQuery setStaffIDContains(String value) { this.StaffIDContains = value; return this; } public String getStaffIDLike() { return StaffIDLike; } public v_SalesInformationQuery setStaffIDLike(String value) { this.StaffIDLike = value; return this; } public ArrayList getStaffIDBetween() { return StaffIDBetween; } public v_SalesInformationQuery setStaffIDBetween(ArrayList value) { this.StaffIDBetween = value; return this; } public ArrayList getStaffIDIn() { return StaffIDIn; } public v_SalesInformationQuery setStaffIDIn(ArrayList value) { this.StaffIDIn = value; return this; } public String getInLogicalID() { return IN_LogicalID; } public v_SalesInformationQuery setInLogicalID(String value) { this.IN_LogicalID = value; return this; } public String getInLogicalIDStartsWith() { return IN_LogicalIDStartsWith; } public v_SalesInformationQuery setInLogicalIDStartsWith(String value) { this.IN_LogicalIDStartsWith = value; return this; } public String getInLogicalIDEndsWith() { return IN_LogicalIDEndsWith; } public v_SalesInformationQuery setInLogicalIDEndsWith(String value) { this.IN_LogicalIDEndsWith = value; return this; } public String getInLogicalIDContains() { return IN_LogicalIDContains; } public v_SalesInformationQuery setInLogicalIDContains(String value) { this.IN_LogicalIDContains = value; return this; } public String getInLogicalIDLike() { return IN_LogicalIDLike; } public v_SalesInformationQuery setInLogicalIDLike(String value) { this.IN_LogicalIDLike = value; return this; } public ArrayList getInLogicalIDBetween() { return IN_LogicalIDBetween; } public v_SalesInformationQuery setInLogicalIDBetween(ArrayList value) { this.IN_LogicalIDBetween = value; return this; } public ArrayList getInLogicalIDIn() { return IN_LogicalIDIn; } public v_SalesInformationQuery setInLogicalIDIn(ArrayList value) { this.IN_LogicalIDIn = value; return this; } public String getInPhysicalID() { return IN_PhysicalID; } public v_SalesInformationQuery setInPhysicalID(String value) { this.IN_PhysicalID = value; return this; } public String getInPhysicalIDStartsWith() { return IN_PhysicalIDStartsWith; } public v_SalesInformationQuery setInPhysicalIDStartsWith(String value) { this.IN_PhysicalIDStartsWith = value; return this; } public String getInPhysicalIDEndsWith() { return IN_PhysicalIDEndsWith; } public v_SalesInformationQuery setInPhysicalIDEndsWith(String value) { this.IN_PhysicalIDEndsWith = value; return this; } public String getInPhysicalIDContains() { return IN_PhysicalIDContains; } public v_SalesInformationQuery setInPhysicalIDContains(String value) { this.IN_PhysicalIDContains = value; return this; } public String getInPhysicalIDLike() { return IN_PhysicalIDLike; } public v_SalesInformationQuery setInPhysicalIDLike(String value) { this.IN_PhysicalIDLike = value; return this; } public ArrayList getInPhysicalIDBetween() { return IN_PhysicalIDBetween; } public v_SalesInformationQuery setInPhysicalIDBetween(ArrayList value) { this.IN_PhysicalIDBetween = value; return this; } public ArrayList getInPhysicalIDIn() { return IN_PhysicalIDIn; } public v_SalesInformationQuery setInPhysicalIDIn(ArrayList value) { this.IN_PhysicalIDIn = value; return this; } public String getBranchID() { return BranchID; } public v_SalesInformationQuery setBranchID(String value) { this.BranchID = value; return this; } public String getBranchIDStartsWith() { return BranchIDStartsWith; } public v_SalesInformationQuery setBranchIDStartsWith(String value) { this.BranchIDStartsWith = value; return this; } public String getBranchIDEndsWith() { return BranchIDEndsWith; } public v_SalesInformationQuery setBranchIDEndsWith(String value) { this.BranchIDEndsWith = value; return this; } public String getBranchIDContains() { return BranchIDContains; } public v_SalesInformationQuery setBranchIDContains(String value) { this.BranchIDContains = value; return this; } public String getBranchIDLike() { return BranchIDLike; } public v_SalesInformationQuery setBranchIDLike(String value) { this.BranchIDLike = value; return this; } public ArrayList getBranchIDBetween() { return BranchIDBetween; } public v_SalesInformationQuery setBranchIDBetween(ArrayList value) { this.BranchIDBetween = value; return this; } public ArrayList getBranchIDIn() { return BranchIDIn; } public v_SalesInformationQuery setBranchIDIn(ArrayList value) { this.BranchIDIn = value; return this; } public String getPartNo() { return PartNo; } public v_SalesInformationQuery setPartNo(String value) { this.PartNo = value; return this; } public String getPartNoStartsWith() { return PartNoStartsWith; } public v_SalesInformationQuery setPartNoStartsWith(String value) { this.PartNoStartsWith = value; return this; } public String getPartNoEndsWith() { return PartNoEndsWith; } public v_SalesInformationQuery setPartNoEndsWith(String value) { this.PartNoEndsWith = value; return this; } public String getPartNoContains() { return PartNoContains; } public v_SalesInformationQuery setPartNoContains(String value) { this.PartNoContains = value; return this; } public String getPartNoLike() { return PartNoLike; } public v_SalesInformationQuery setPartNoLike(String value) { this.PartNoLike = value; return this; } public ArrayList getPartNoBetween() { return PartNoBetween; } public v_SalesInformationQuery setPartNoBetween(ArrayList value) { this.PartNoBetween = value; return this; } public ArrayList getPartNoIn() { return PartNoIn; } public v_SalesInformationQuery setPartNoIn(ArrayList value) { this.PartNoIn = value; return this; } public String getPartDescription() { return PartDescription; } public v_SalesInformationQuery setPartDescription(String value) { this.PartDescription = value; return this; } public String getPartDescriptionStartsWith() { return PartDescriptionStartsWith; } public v_SalesInformationQuery setPartDescriptionStartsWith(String value) { this.PartDescriptionStartsWith = value; return this; } public String getPartDescriptionEndsWith() { return PartDescriptionEndsWith; } public v_SalesInformationQuery setPartDescriptionEndsWith(String value) { this.PartDescriptionEndsWith = value; return this; } public String getPartDescriptionContains() { return PartDescriptionContains; } public v_SalesInformationQuery setPartDescriptionContains(String value) { this.PartDescriptionContains = value; return this; } public String getPartDescriptionLike() { return PartDescriptionLike; } public v_SalesInformationQuery setPartDescriptionLike(String value) { this.PartDescriptionLike = value; return this; } public ArrayList getPartDescriptionBetween() { return PartDescriptionBetween; } public v_SalesInformationQuery setPartDescriptionBetween(ArrayList value) { this.PartDescriptionBetween = value; return this; } public ArrayList getPartDescriptionIn() { return PartDescriptionIn; } public v_SalesInformationQuery setPartDescriptionIn(ArrayList value) { this.PartDescriptionIn = value; return this; } public BigDecimal getQuantity() { return Quantity; } public v_SalesInformationQuery setQuantity(BigDecimal value) { this.Quantity = value; return this; } public BigDecimal getQuantityGreaterThanOrEqualTo() { return QuantityGreaterThanOrEqualTo; } public v_SalesInformationQuery setQuantityGreaterThanOrEqualTo(BigDecimal value) { this.QuantityGreaterThanOrEqualTo = value; return this; } public BigDecimal getQuantityGreaterThan() { return QuantityGreaterThan; } public v_SalesInformationQuery setQuantityGreaterThan(BigDecimal value) { this.QuantityGreaterThan = value; return this; } public BigDecimal getQuantityLessThan() { return QuantityLessThan; } public v_SalesInformationQuery setQuantityLessThan(BigDecimal value) { this.QuantityLessThan = value; return this; } public BigDecimal getQuantityLessThanOrEqualTo() { return QuantityLessThanOrEqualTo; } public v_SalesInformationQuery setQuantityLessThanOrEqualTo(BigDecimal value) { this.QuantityLessThanOrEqualTo = value; return this; } public BigDecimal getQuantityNotEqualTo() { return QuantityNotEqualTo; } public v_SalesInformationQuery setQuantityNotEqualTo(BigDecimal value) { this.QuantityNotEqualTo = value; return this; } public ArrayList getQuantityBetween() { return QuantityBetween; } public v_SalesInformationQuery setQuantityBetween(ArrayList value) { this.QuantityBetween = value; return this; } public ArrayList getQuantityIn() { return QuantityIn; } public v_SalesInformationQuery setQuantityIn(ArrayList value) { this.QuantityIn = value; return this; } public BigDecimal getLineTotalIncGST() { return LineTotalIncGST; } public v_SalesInformationQuery setLineTotalIncGST(BigDecimal value) { this.LineTotalIncGST = value; return this; } public BigDecimal getLineTotalIncGSTGreaterThanOrEqualTo() { return LineTotalIncGSTGreaterThanOrEqualTo; } public v_SalesInformationQuery setLineTotalIncGSTGreaterThanOrEqualTo(BigDecimal value) { this.LineTotalIncGSTGreaterThanOrEqualTo = value; return this; } public BigDecimal getLineTotalIncGSTGreaterThan() { return LineTotalIncGSTGreaterThan; } public v_SalesInformationQuery setLineTotalIncGSTGreaterThan(BigDecimal value) { this.LineTotalIncGSTGreaterThan = value; return this; } public BigDecimal getLineTotalIncGSTLessThan() { return LineTotalIncGSTLessThan; } public v_SalesInformationQuery setLineTotalIncGSTLessThan(BigDecimal value) { this.LineTotalIncGSTLessThan = value; return this; } public BigDecimal getLineTotalIncGSTLessThanOrEqualTo() { return LineTotalIncGSTLessThanOrEqualTo; } public v_SalesInformationQuery setLineTotalIncGSTLessThanOrEqualTo(BigDecimal value) { this.LineTotalIncGSTLessThanOrEqualTo = value; return this; } public BigDecimal getLineTotalIncGSTNotEqualTo() { return LineTotalIncGSTNotEqualTo; } public v_SalesInformationQuery setLineTotalIncGSTNotEqualTo(BigDecimal value) { this.LineTotalIncGSTNotEqualTo = value; return this; } public ArrayList getLineTotalIncGSTBetween() { return LineTotalIncGSTBetween; } public v_SalesInformationQuery setLineTotalIncGSTBetween(ArrayList value) { this.LineTotalIncGSTBetween = value; return this; } public ArrayList getLineTotalIncGSTIn() { return LineTotalIncGSTIn; } public v_SalesInformationQuery setLineTotalIncGSTIn(ArrayList value) { this.LineTotalIncGSTIn = value; return this; } public BigDecimal getLineTaxTotal() { return LineTaxTotal; } public v_SalesInformationQuery setLineTaxTotal(BigDecimal value) { this.LineTaxTotal = value; return this; } public BigDecimal getLineTaxTotalGreaterThanOrEqualTo() { return LineTaxTotalGreaterThanOrEqualTo; } public v_SalesInformationQuery setLineTaxTotalGreaterThanOrEqualTo(BigDecimal value) { this.LineTaxTotalGreaterThanOrEqualTo = value; return this; } public BigDecimal getLineTaxTotalGreaterThan() { return LineTaxTotalGreaterThan; } public v_SalesInformationQuery setLineTaxTotalGreaterThan(BigDecimal value) { this.LineTaxTotalGreaterThan = value; return this; } public BigDecimal getLineTaxTotalLessThan() { return LineTaxTotalLessThan; } public v_SalesInformationQuery setLineTaxTotalLessThan(BigDecimal value) { this.LineTaxTotalLessThan = value; return this; } public BigDecimal getLineTaxTotalLessThanOrEqualTo() { return LineTaxTotalLessThanOrEqualTo; } public v_SalesInformationQuery setLineTaxTotalLessThanOrEqualTo(BigDecimal value) { this.LineTaxTotalLessThanOrEqualTo = value; return this; } public BigDecimal getLineTaxTotalNotEqualTo() { return LineTaxTotalNotEqualTo; } public v_SalesInformationQuery setLineTaxTotalNotEqualTo(BigDecimal value) { this.LineTaxTotalNotEqualTo = value; return this; } public ArrayList getLineTaxTotalBetween() { return LineTaxTotalBetween; } public v_SalesInformationQuery setLineTaxTotalBetween(ArrayList value) { this.LineTaxTotalBetween = value; return this; } public ArrayList getLineTaxTotalIn() { return LineTaxTotalIn; } public v_SalesInformationQuery setLineTaxTotalIn(ArrayList value) { this.LineTaxTotalIn = value; return this; } public BigDecimal getLineTotalExGST() { return LineTotalExGST; } public v_SalesInformationQuery setLineTotalExGST(BigDecimal value) { this.LineTotalExGST = value; return this; } public BigDecimal getLineTotalExGSTGreaterThanOrEqualTo() { return LineTotalExGSTGreaterThanOrEqualTo; } public v_SalesInformationQuery setLineTotalExGSTGreaterThanOrEqualTo(BigDecimal value) { this.LineTotalExGSTGreaterThanOrEqualTo = value; return this; } public BigDecimal getLineTotalExGSTGreaterThan() { return LineTotalExGSTGreaterThan; } public v_SalesInformationQuery setLineTotalExGSTGreaterThan(BigDecimal value) { this.LineTotalExGSTGreaterThan = value; return this; } public BigDecimal getLineTotalExGSTLessThan() { return LineTotalExGSTLessThan; } public v_SalesInformationQuery setLineTotalExGSTLessThan(BigDecimal value) { this.LineTotalExGSTLessThan = value; return this; } public BigDecimal getLineTotalExGSTLessThanOrEqualTo() { return LineTotalExGSTLessThanOrEqualTo; } public v_SalesInformationQuery setLineTotalExGSTLessThanOrEqualTo(BigDecimal value) { this.LineTotalExGSTLessThanOrEqualTo = value; return this; } public BigDecimal getLineTotalExGSTNotEqualTo() { return LineTotalExGSTNotEqualTo; } public v_SalesInformationQuery setLineTotalExGSTNotEqualTo(BigDecimal value) { this.LineTotalExGSTNotEqualTo = value; return this; } public ArrayList getLineTotalExGSTBetween() { return LineTotalExGSTBetween; } public v_SalesInformationQuery setLineTotalExGSTBetween(ArrayList value) { this.LineTotalExGSTBetween = value; return this; } public ArrayList getLineTotalExGSTIn() { return LineTotalExGSTIn; } public v_SalesInformationQuery setLineTotalExGSTIn(ArrayList value) { this.LineTotalExGSTIn = value; return this; } public BigDecimal getLineCost() { return LineCost; } public v_SalesInformationQuery setLineCost(BigDecimal value) { this.LineCost = value; return this; } public BigDecimal getLineCostGreaterThanOrEqualTo() { return LineCostGreaterThanOrEqualTo; } public v_SalesInformationQuery setLineCostGreaterThanOrEqualTo(BigDecimal value) { this.LineCostGreaterThanOrEqualTo = value; return this; } public BigDecimal getLineCostGreaterThan() { return LineCostGreaterThan; } public v_SalesInformationQuery setLineCostGreaterThan(BigDecimal value) { this.LineCostGreaterThan = value; return this; } public BigDecimal getLineCostLessThan() { return LineCostLessThan; } public v_SalesInformationQuery setLineCostLessThan(BigDecimal value) { this.LineCostLessThan = value; return this; } public BigDecimal getLineCostLessThanOrEqualTo() { return LineCostLessThanOrEqualTo; } public v_SalesInformationQuery setLineCostLessThanOrEqualTo(BigDecimal value) { this.LineCostLessThanOrEqualTo = value; return this; } public BigDecimal getLineCostNotEqualTo() { return LineCostNotEqualTo; } public v_SalesInformationQuery setLineCostNotEqualTo(BigDecimal value) { this.LineCostNotEqualTo = value; return this; } public ArrayList getLineCostBetween() { return LineCostBetween; } public v_SalesInformationQuery setLineCostBetween(ArrayList value) { this.LineCostBetween = value; return this; } public ArrayList getLineCostIn() { return LineCostIn; } public v_SalesInformationQuery setLineCostIn(ArrayList value) { this.LineCostIn = value; return this; } public BigDecimal getLineProfit() { return LineProfit; } public v_SalesInformationQuery setLineProfit(BigDecimal value) { this.LineProfit = value; return this; } public BigDecimal getLineProfitGreaterThanOrEqualTo() { return LineProfitGreaterThanOrEqualTo; } public v_SalesInformationQuery setLineProfitGreaterThanOrEqualTo(BigDecimal value) { this.LineProfitGreaterThanOrEqualTo = value; return this; } public BigDecimal getLineProfitGreaterThan() { return LineProfitGreaterThan; } public v_SalesInformationQuery setLineProfitGreaterThan(BigDecimal value) { this.LineProfitGreaterThan = value; return this; } public BigDecimal getLineProfitLessThan() { return LineProfitLessThan; } public v_SalesInformationQuery setLineProfitLessThan(BigDecimal value) { this.LineProfitLessThan = value; return this; } public BigDecimal getLineProfitLessThanOrEqualTo() { return LineProfitLessThanOrEqualTo; } public v_SalesInformationQuery setLineProfitLessThanOrEqualTo(BigDecimal value) { this.LineProfitLessThanOrEqualTo = value; return this; } public BigDecimal getLineProfitNotEqualTo() { return LineProfitNotEqualTo; } public v_SalesInformationQuery setLineProfitNotEqualTo(BigDecimal value) { this.LineProfitNotEqualTo = value; return this; } public ArrayList getLineProfitBetween() { return LineProfitBetween; } public v_SalesInformationQuery setLineProfitBetween(ArrayList value) { this.LineProfitBetween = value; return this; } public ArrayList getLineProfitIn() { return LineProfitIn; } public v_SalesInformationQuery setLineProfitIn(ArrayList value) { this.LineProfitIn = value; return this; } public String getClassificationDescription() { return ClassificationDescription; } public v_SalesInformationQuery setClassificationDescription(String value) { this.ClassificationDescription = value; return this; } public String getClassificationDescriptionStartsWith() { return ClassificationDescriptionStartsWith; } public v_SalesInformationQuery setClassificationDescriptionStartsWith(String value) { this.ClassificationDescriptionStartsWith = value; return this; } public String getClassificationDescriptionEndsWith() { return ClassificationDescriptionEndsWith; } public v_SalesInformationQuery setClassificationDescriptionEndsWith(String value) { this.ClassificationDescriptionEndsWith = value; return this; } public String getClassificationDescriptionContains() { return ClassificationDescriptionContains; } public v_SalesInformationQuery setClassificationDescriptionContains(String value) { this.ClassificationDescriptionContains = value; return this; } public String getClassificationDescriptionLike() { return ClassificationDescriptionLike; } public v_SalesInformationQuery setClassificationDescriptionLike(String value) { this.ClassificationDescriptionLike = value; return this; } public ArrayList getClassificationDescriptionBetween() { return ClassificationDescriptionBetween; } public v_SalesInformationQuery setClassificationDescriptionBetween(ArrayList value) { this.ClassificationDescriptionBetween = value; return this; } public ArrayList getClassificationDescriptionIn() { return ClassificationDescriptionIn; } public v_SalesInformationQuery setClassificationDescriptionIn(ArrayList value) { this.ClassificationDescriptionIn = value; return this; } public String getCategory1DescriptionAtTimeOfSale() { return Category1DescriptionAtTimeOfSale; } public v_SalesInformationQuery setCategory1DescriptionAtTimeOfSale(String value) { this.Category1DescriptionAtTimeOfSale = value; return this; } public String getCategory1DescriptionAtTimeOfSaleStartsWith() { return Category1DescriptionAtTimeOfSaleStartsWith; } public v_SalesInformationQuery setCategory1DescriptionAtTimeOfSaleStartsWith(String value) { this.Category1DescriptionAtTimeOfSaleStartsWith = value; return this; } public String getCategory1DescriptionAtTimeOfSaleEndsWith() { return Category1DescriptionAtTimeOfSaleEndsWith; } public v_SalesInformationQuery setCategory1DescriptionAtTimeOfSaleEndsWith(String value) { this.Category1DescriptionAtTimeOfSaleEndsWith = value; return this; } public String getCategory1DescriptionAtTimeOfSaleContains() { return Category1DescriptionAtTimeOfSaleContains; } public v_SalesInformationQuery setCategory1DescriptionAtTimeOfSaleContains(String value) { this.Category1DescriptionAtTimeOfSaleContains = value; return this; } public String getCategory1DescriptionAtTimeOfSaleLike() { return Category1DescriptionAtTimeOfSaleLike; } public v_SalesInformationQuery setCategory1DescriptionAtTimeOfSaleLike(String value) { this.Category1DescriptionAtTimeOfSaleLike = value; return this; } public ArrayList getCategory1DescriptionAtTimeOfSaleBetween() { return Category1DescriptionAtTimeOfSaleBetween; } public v_SalesInformationQuery setCategory1DescriptionAtTimeOfSaleBetween(ArrayList value) { this.Category1DescriptionAtTimeOfSaleBetween = value; return this; } public ArrayList getCategory1DescriptionAtTimeOfSaleIn() { return Category1DescriptionAtTimeOfSaleIn; } public v_SalesInformationQuery setCategory1DescriptionAtTimeOfSaleIn(ArrayList value) { this.Category1DescriptionAtTimeOfSaleIn = value; return this; } public String getCategory2DescriptionAtTimeOfSale() { return Category2DescriptionAtTimeOfSale; } public v_SalesInformationQuery setCategory2DescriptionAtTimeOfSale(String value) { this.Category2DescriptionAtTimeOfSale = value; return this; } public String getCategory2DescriptionAtTimeOfSaleStartsWith() { return Category2DescriptionAtTimeOfSaleStartsWith; } public v_SalesInformationQuery setCategory2DescriptionAtTimeOfSaleStartsWith(String value) { this.Category2DescriptionAtTimeOfSaleStartsWith = value; return this; } public String getCategory2DescriptionAtTimeOfSaleEndsWith() { return Category2DescriptionAtTimeOfSaleEndsWith; } public v_SalesInformationQuery setCategory2DescriptionAtTimeOfSaleEndsWith(String value) { this.Category2DescriptionAtTimeOfSaleEndsWith = value; return this; } public String getCategory2DescriptionAtTimeOfSaleContains() { return Category2DescriptionAtTimeOfSaleContains; } public v_SalesInformationQuery setCategory2DescriptionAtTimeOfSaleContains(String value) { this.Category2DescriptionAtTimeOfSaleContains = value; return this; } public String getCategory2DescriptionAtTimeOfSaleLike() { return Category2DescriptionAtTimeOfSaleLike; } public v_SalesInformationQuery setCategory2DescriptionAtTimeOfSaleLike(String value) { this.Category2DescriptionAtTimeOfSaleLike = value; return this; } public ArrayList getCategory2DescriptionAtTimeOfSaleBetween() { return Category2DescriptionAtTimeOfSaleBetween; } public v_SalesInformationQuery setCategory2DescriptionAtTimeOfSaleBetween(ArrayList value) { this.Category2DescriptionAtTimeOfSaleBetween = value; return this; } public ArrayList getCategory2DescriptionAtTimeOfSaleIn() { return Category2DescriptionAtTimeOfSaleIn; } public v_SalesInformationQuery setCategory2DescriptionAtTimeOfSaleIn(ArrayList value) { this.Category2DescriptionAtTimeOfSaleIn = value; return this; } public String getCategory3DescriptionAtTimeOfSale() { return Category3DescriptionAtTimeOfSale; } public v_SalesInformationQuery setCategory3DescriptionAtTimeOfSale(String value) { this.Category3DescriptionAtTimeOfSale = value; return this; } public String getCategory3DescriptionAtTimeOfSaleStartsWith() { return Category3DescriptionAtTimeOfSaleStartsWith; } public v_SalesInformationQuery setCategory3DescriptionAtTimeOfSaleStartsWith(String value) { this.Category3DescriptionAtTimeOfSaleStartsWith = value; return this; } public String getCategory3DescriptionAtTimeOfSaleEndsWith() { return Category3DescriptionAtTimeOfSaleEndsWith; } public v_SalesInformationQuery setCategory3DescriptionAtTimeOfSaleEndsWith(String value) { this.Category3DescriptionAtTimeOfSaleEndsWith = value; return this; } public String getCategory3DescriptionAtTimeOfSaleContains() { return Category3DescriptionAtTimeOfSaleContains; } public v_SalesInformationQuery setCategory3DescriptionAtTimeOfSaleContains(String value) { this.Category3DescriptionAtTimeOfSaleContains = value; return this; } public String getCategory3DescriptionAtTimeOfSaleLike() { return Category3DescriptionAtTimeOfSaleLike; } public v_SalesInformationQuery setCategory3DescriptionAtTimeOfSaleLike(String value) { this.Category3DescriptionAtTimeOfSaleLike = value; return this; } public ArrayList getCategory3DescriptionAtTimeOfSaleBetween() { return Category3DescriptionAtTimeOfSaleBetween; } public v_SalesInformationQuery setCategory3DescriptionAtTimeOfSaleBetween(ArrayList value) { this.Category3DescriptionAtTimeOfSaleBetween = value; return this; } public ArrayList getCategory3DescriptionAtTimeOfSaleIn() { return Category3DescriptionAtTimeOfSaleIn; } public v_SalesInformationQuery setCategory3DescriptionAtTimeOfSaleIn(ArrayList value) { this.Category3DescriptionAtTimeOfSaleIn = value; return this; } public String getDebtorID() { return DebtorID; } public v_SalesInformationQuery setDebtorID(String value) { this.DebtorID = value; return this; } public String getDebtorIDStartsWith() { return DebtorIDStartsWith; } public v_SalesInformationQuery setDebtorIDStartsWith(String value) { this.DebtorIDStartsWith = value; return this; } public String getDebtorIDEndsWith() { return DebtorIDEndsWith; } public v_SalesInformationQuery setDebtorIDEndsWith(String value) { this.DebtorIDEndsWith = value; return this; } public String getDebtorIDContains() { return DebtorIDContains; } public v_SalesInformationQuery setDebtorIDContains(String value) { this.DebtorIDContains = value; return this; } public String getDebtorIDLike() { return DebtorIDLike; } public v_SalesInformationQuery setDebtorIDLike(String value) { this.DebtorIDLike = value; return this; } public ArrayList getDebtorIDBetween() { return DebtorIDBetween; } public v_SalesInformationQuery setDebtorIDBetween(ArrayList value) { this.DebtorIDBetween = value; return this; } public ArrayList getDebtorIDIn() { return DebtorIDIn; } public v_SalesInformationQuery setDebtorIDIn(ArrayList value) { this.DebtorIDIn = value; return this; } public String getDebtorClassificationID() { return DebtorClassificationID; } public v_SalesInformationQuery setDebtorClassificationID(String value) { this.DebtorClassificationID = value; return this; } public String getDebtorClassificationIDStartsWith() { return DebtorClassificationIDStartsWith; } public v_SalesInformationQuery setDebtorClassificationIDStartsWith(String value) { this.DebtorClassificationIDStartsWith = value; return this; } public String getDebtorClassificationIDEndsWith() { return DebtorClassificationIDEndsWith; } public v_SalesInformationQuery setDebtorClassificationIDEndsWith(String value) { this.DebtorClassificationIDEndsWith = value; return this; } public String getDebtorClassificationIDContains() { return DebtorClassificationIDContains; } public v_SalesInformationQuery setDebtorClassificationIDContains(String value) { this.DebtorClassificationIDContains = value; return this; } public String getDebtorClassificationIDLike() { return DebtorClassificationIDLike; } public v_SalesInformationQuery setDebtorClassificationIDLike(String value) { this.DebtorClassificationIDLike = value; return this; } public ArrayList getDebtorClassificationIDBetween() { return DebtorClassificationIDBetween; } public v_SalesInformationQuery setDebtorClassificationIDBetween(ArrayList value) { this.DebtorClassificationIDBetween = value; return this; } public ArrayList getDebtorClassificationIDIn() { return DebtorClassificationIDIn; } public v_SalesInformationQuery setDebtorClassificationIDIn(ArrayList value) { this.DebtorClassificationIDIn = value; return this; } public Date getProcessDate() { return ProcessDate; } public v_SalesInformationQuery setProcessDate(Date value) { this.ProcessDate = value; return this; } public Date getProcessDateGreaterThanOrEqualTo() { return ProcessDateGreaterThanOrEqualTo; } public v_SalesInformationQuery setProcessDateGreaterThanOrEqualTo(Date value) { this.ProcessDateGreaterThanOrEqualTo = value; return this; } public Date getProcessDateGreaterThan() { return ProcessDateGreaterThan; } public v_SalesInformationQuery setProcessDateGreaterThan(Date value) { this.ProcessDateGreaterThan = value; return this; } public Date getProcessDateLessThan() { return ProcessDateLessThan; } public v_SalesInformationQuery setProcessDateLessThan(Date value) { this.ProcessDateLessThan = value; return this; } public Date getProcessDateLessThanOrEqualTo() { return ProcessDateLessThanOrEqualTo; } public v_SalesInformationQuery setProcessDateLessThanOrEqualTo(Date value) { this.ProcessDateLessThanOrEqualTo = value; return this; } public Date getProcessDateNotEqualTo() { return ProcessDateNotEqualTo; } public v_SalesInformationQuery setProcessDateNotEqualTo(Date value) { this.ProcessDateNotEqualTo = value; return this; } public ArrayList getProcessDateBetween() { return ProcessDateBetween; } public v_SalesInformationQuery setProcessDateBetween(ArrayList value) { this.ProcessDateBetween = value; return this; } public ArrayList getProcessDateIn() { return ProcessDateIn; } public v_SalesInformationQuery setProcessDateIn(ArrayList value) { this.ProcessDateIn = value; return this; } public String getInventoryID() { return InventoryID; } public v_SalesInformationQuery setInventoryID(String value) { this.InventoryID = value; return this; } public String getInventoryIDStartsWith() { return InventoryIDStartsWith; } public v_SalesInformationQuery setInventoryIDStartsWith(String value) { this.InventoryIDStartsWith = value; return this; } public String getInventoryIDEndsWith() { return InventoryIDEndsWith; } public v_SalesInformationQuery setInventoryIDEndsWith(String value) { this.InventoryIDEndsWith = value; return this; } public String getInventoryIDContains() { return InventoryIDContains; } public v_SalesInformationQuery setInventoryIDContains(String value) { this.InventoryIDContains = value; return this; } public String getInventoryIDLike() { return InventoryIDLike; } public v_SalesInformationQuery setInventoryIDLike(String value) { this.InventoryIDLike = value; return this; } public ArrayList getInventoryIDBetween() { return InventoryIDBetween; } public v_SalesInformationQuery setInventoryIDBetween(ArrayList value) { this.InventoryIDBetween = value; return this; } public ArrayList getInventoryIDIn() { return InventoryIDIn; } public v_SalesInformationQuery setInventoryIDIn(ArrayList value) { this.InventoryIDIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class v_SerialNumbersSoldQuery extends QueryDb implements IReturn> { public String inventoryid = null; public String inventoryidStartsWith = null; public String inventoryidEndsWith = null; public String inventoryidContains = null; public String inventoryidLike = null; public ArrayList inventoryidBetween = null; public ArrayList inventoryidIn = null; public String SerialNo = null; public String SerialNoStartsWith = null; public String SerialNoEndsWith = null; public String SerialNoContains = null; public String SerialNoLike = null; public ArrayList SerialNoBetween = null; public ArrayList SerialNoIn = null; public String PartNo = null; public String PartNoStartsWith = null; public String PartNoEndsWith = null; public String PartNoContains = null; public String PartNoLike = null; public ArrayList PartNoBetween = null; public ArrayList PartNoIn = null; public String Description = null; public String DescriptionStartsWith = null; public String DescriptionEndsWith = null; public String DescriptionContains = null; public String DescriptionLike = null; public ArrayList DescriptionBetween = null; public ArrayList DescriptionIn = null; public String getInventoryid() { return inventoryid; } public v_SerialNumbersSoldQuery setInventoryid(String value) { this.inventoryid = value; return this; } public String getInventoryidStartsWith() { return inventoryidStartsWith; } public v_SerialNumbersSoldQuery setInventoryidStartsWith(String value) { this.inventoryidStartsWith = value; return this; } public String getInventoryidEndsWith() { return inventoryidEndsWith; } public v_SerialNumbersSoldQuery setInventoryidEndsWith(String value) { this.inventoryidEndsWith = value; return this; } public String getInventoryidContains() { return inventoryidContains; } public v_SerialNumbersSoldQuery setInventoryidContains(String value) { this.inventoryidContains = value; return this; } public String getInventoryidLike() { return inventoryidLike; } public v_SerialNumbersSoldQuery setInventoryidLike(String value) { this.inventoryidLike = value; return this; } public ArrayList getInventoryidBetween() { return inventoryidBetween; } public v_SerialNumbersSoldQuery setInventoryidBetween(ArrayList value) { this.inventoryidBetween = value; return this; } public ArrayList getInventoryidIn() { return inventoryidIn; } public v_SerialNumbersSoldQuery setInventoryidIn(ArrayList value) { this.inventoryidIn = value; return this; } public String getSerialNo() { return SerialNo; } public v_SerialNumbersSoldQuery setSerialNo(String value) { this.SerialNo = value; return this; } public String getSerialNoStartsWith() { return SerialNoStartsWith; } public v_SerialNumbersSoldQuery setSerialNoStartsWith(String value) { this.SerialNoStartsWith = value; return this; } public String getSerialNoEndsWith() { return SerialNoEndsWith; } public v_SerialNumbersSoldQuery setSerialNoEndsWith(String value) { this.SerialNoEndsWith = value; return this; } public String getSerialNoContains() { return SerialNoContains; } public v_SerialNumbersSoldQuery setSerialNoContains(String value) { this.SerialNoContains = value; return this; } public String getSerialNoLike() { return SerialNoLike; } public v_SerialNumbersSoldQuery setSerialNoLike(String value) { this.SerialNoLike = value; return this; } public ArrayList getSerialNoBetween() { return SerialNoBetween; } public v_SerialNumbersSoldQuery setSerialNoBetween(ArrayList value) { this.SerialNoBetween = value; return this; } public ArrayList getSerialNoIn() { return SerialNoIn; } public v_SerialNumbersSoldQuery setSerialNoIn(ArrayList value) { this.SerialNoIn = value; return this; } public String getPartNo() { return PartNo; } public v_SerialNumbersSoldQuery setPartNo(String value) { this.PartNo = value; return this; } public String getPartNoStartsWith() { return PartNoStartsWith; } public v_SerialNumbersSoldQuery setPartNoStartsWith(String value) { this.PartNoStartsWith = value; return this; } public String getPartNoEndsWith() { return PartNoEndsWith; } public v_SerialNumbersSoldQuery setPartNoEndsWith(String value) { this.PartNoEndsWith = value; return this; } public String getPartNoContains() { return PartNoContains; } public v_SerialNumbersSoldQuery setPartNoContains(String value) { this.PartNoContains = value; return this; } public String getPartNoLike() { return PartNoLike; } public v_SerialNumbersSoldQuery setPartNoLike(String value) { this.PartNoLike = value; return this; } public ArrayList getPartNoBetween() { return PartNoBetween; } public v_SerialNumbersSoldQuery setPartNoBetween(ArrayList value) { this.PartNoBetween = value; return this; } public ArrayList getPartNoIn() { return PartNoIn; } public v_SerialNumbersSoldQuery setPartNoIn(ArrayList value) { this.PartNoIn = value; return this; } public String getDescription() { return Description; } public v_SerialNumbersSoldQuery setDescription(String value) { this.Description = value; return this; } public String getDescriptionStartsWith() { return DescriptionStartsWith; } public v_SerialNumbersSoldQuery setDescriptionStartsWith(String value) { this.DescriptionStartsWith = value; return this; } public String getDescriptionEndsWith() { return DescriptionEndsWith; } public v_SerialNumbersSoldQuery setDescriptionEndsWith(String value) { this.DescriptionEndsWith = value; return this; } public String getDescriptionContains() { return DescriptionContains; } public v_SerialNumbersSoldQuery setDescriptionContains(String value) { this.DescriptionContains = value; return this; } public String getDescriptionLike() { return DescriptionLike; } public v_SerialNumbersSoldQuery setDescriptionLike(String value) { this.DescriptionLike = value; return this; } public ArrayList getDescriptionBetween() { return DescriptionBetween; } public v_SerialNumbersSoldQuery setDescriptionBetween(ArrayList value) { this.DescriptionBetween = value; return this; } public ArrayList getDescriptionIn() { return DescriptionIn; } public v_SerialNumbersSoldQuery setDescriptionIn(ArrayList value) { this.DescriptionIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class V_SHBookinShipmentsQuery extends QueryDb implements IReturn> { public String ShipmentID = null; public String ShipmentIDStartsWith = null; public String ShipmentIDEndsWith = null; public String ShipmentIDContains = null; public String ShipmentIDLike = null; public ArrayList ShipmentIDBetween = null; public ArrayList ShipmentIDIn = null; public String getShipmentID() { return ShipmentID; } public V_SHBookinShipmentsQuery setShipmentID(String value) { this.ShipmentID = value; return this; } public String getShipmentIDStartsWith() { return ShipmentIDStartsWith; } public V_SHBookinShipmentsQuery setShipmentIDStartsWith(String value) { this.ShipmentIDStartsWith = value; return this; } public String getShipmentIDEndsWith() { return ShipmentIDEndsWith; } public V_SHBookinShipmentsQuery setShipmentIDEndsWith(String value) { this.ShipmentIDEndsWith = value; return this; } public String getShipmentIDContains() { return ShipmentIDContains; } public V_SHBookinShipmentsQuery setShipmentIDContains(String value) { this.ShipmentIDContains = value; return this; } public String getShipmentIDLike() { return ShipmentIDLike; } public V_SHBookinShipmentsQuery setShipmentIDLike(String value) { this.ShipmentIDLike = value; return this; } public ArrayList getShipmentIDBetween() { return ShipmentIDBetween; } public V_SHBookinShipmentsQuery setShipmentIDBetween(ArrayList value) { this.ShipmentIDBetween = value; return this; } public ArrayList getShipmentIDIn() { return ShipmentIDIn; } public V_SHBookinShipmentsQuery setShipmentIDIn(ArrayList value) { this.ShipmentIDIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class V_ShipmentQuery extends QueryDb implements IReturn> { public String ShipmentID = null; public String ShipmentIDStartsWith = null; public String ShipmentIDEndsWith = null; public String ShipmentIDContains = null; public String ShipmentIDLike = null; public ArrayList ShipmentIDBetween = null; public ArrayList ShipmentIDIn = null; public String LineID = null; public String LineIDStartsWith = null; public String LineIDEndsWith = null; public String LineIDContains = null; public String LineIDLike = null; public ArrayList LineIDBetween = null; public ArrayList LineIDIn = null; public String OrderNo = null; public String OrderNoStartsWith = null; public String OrderNoEndsWith = null; public String OrderNoContains = null; public String OrderNoLike = null; public ArrayList OrderNoBetween = null; public ArrayList OrderNoIn = null; public String InvoiceNo = null; public String InvoiceNoStartsWith = null; public String InvoiceNoEndsWith = null; public String InvoiceNoContains = null; public String InvoiceNoLike = null; public ArrayList InvoiceNoBetween = null; public ArrayList InvoiceNoIn = null; public String CreditorID = null; public String CreditorIDStartsWith = null; public String CreditorIDEndsWith = null; public String CreditorIDContains = null; public String CreditorIDLike = null; public ArrayList CreditorIDBetween = null; public ArrayList CreditorIDIn = null; public String PartNo = null; public String PartNoStartsWith = null; public String PartNoEndsWith = null; public String PartNoContains = null; public String PartNoLike = null; public ArrayList PartNoBetween = null; public ArrayList PartNoIn = null; public String Description = null; public String DescriptionStartsWith = null; public String DescriptionEndsWith = null; public String DescriptionContains = null; public String DescriptionLike = null; public ArrayList DescriptionBetween = null; public ArrayList DescriptionIn = null; public String SuppPartNo = null; public String SuppPartNoStartsWith = null; public String SuppPartNoEndsWith = null; public String SuppPartNoContains = null; public String SuppPartNoLike = null; public ArrayList SuppPartNoBetween = null; public ArrayList SuppPartNoIn = null; public BigDecimal QtyOrdered = null; public BigDecimal QtyOrderedGreaterThanOrEqualTo = null; public BigDecimal QtyOrderedGreaterThan = null; public BigDecimal QtyOrderedLessThan = null; public BigDecimal QtyOrderedLessThanOrEqualTo = null; public BigDecimal QtyOrderedNotEqualTo = null; public ArrayList QtyOrderedBetween = null; public ArrayList QtyOrderedIn = null; public BigDecimal QtyThisShip = null; public BigDecimal QtyThisShipGreaterThanOrEqualTo = null; public BigDecimal QtyThisShipGreaterThan = null; public BigDecimal QtyThisShipLessThan = null; public BigDecimal QtyThisShipLessThanOrEqualTo = null; public BigDecimal QtyThisShipNotEqualTo = null; public ArrayList QtyThisShipBetween = null; public ArrayList QtyThisShipIn = null; public BigDecimal LineCost = null; public BigDecimal LineCostGreaterThanOrEqualTo = null; public BigDecimal LineCostGreaterThan = null; public BigDecimal LineCostLessThan = null; public BigDecimal LineCostLessThanOrEqualTo = null; public BigDecimal LineCostNotEqualTo = null; public ArrayList LineCostBetween = null; public ArrayList LineCostIn = null; public BigDecimal LandedCost = null; public BigDecimal LandedCostGreaterThanOrEqualTo = null; public BigDecimal LandedCostGreaterThan = null; public BigDecimal LandedCostLessThan = null; public BigDecimal LandedCostLessThanOrEqualTo = null; public BigDecimal LandedCostNotEqualTo = null; public ArrayList LandedCostBetween = null; public ArrayList LandedCostIn = null; public BigDecimal LandedTotal = null; public BigDecimal LandedTotalGreaterThanOrEqualTo = null; public BigDecimal LandedTotalGreaterThan = null; public BigDecimal LandedTotalLessThan = null; public BigDecimal LandedTotalLessThanOrEqualTo = null; public BigDecimal LandedTotalNotEqualTo = null; public ArrayList LandedTotalBetween = null; public ArrayList LandedTotalIn = null; public String CostType = null; public String CostTypeStartsWith = null; public String CostTypeEndsWith = null; public String CostTypeContains = null; public String CostTypeLike = null; public ArrayList CostTypeBetween = null; public ArrayList CostTypeIn = null; public String CurrencyID = null; public String CurrencyIDStartsWith = null; public String CurrencyIDEndsWith = null; public String CurrencyIDContains = null; public String CurrencyIDLike = null; public ArrayList CurrencyIDBetween = null; public ArrayList CurrencyIDIn = null; public BigDecimal FXrate = null; public BigDecimal FXrateGreaterThanOrEqualTo = null; public BigDecimal FXrateGreaterThan = null; public BigDecimal FXrateLessThan = null; public BigDecimal FXrateLessThanOrEqualTo = null; public BigDecimal FXrateNotEqualTo = null; public ArrayList FXrateBetween = null; public ArrayList FXrateIn = null; public BigDecimal FXAmount = null; public BigDecimal FXAmountGreaterThanOrEqualTo = null; public BigDecimal FXAmountGreaterThan = null; public BigDecimal FXAmountLessThan = null; public BigDecimal FXAmountLessThanOrEqualTo = null; public BigDecimal FXAmountNotEqualTo = null; public ArrayList FXAmountBetween = null; public ArrayList FXAmountIn = null; public BigDecimal HomeAmount = null; public BigDecimal HomeAmountGreaterThanOrEqualTo = null; public BigDecimal HomeAmountGreaterThan = null; public BigDecimal HomeAmountLessThan = null; public BigDecimal HomeAmountLessThanOrEqualTo = null; public BigDecimal HomeAmountNotEqualTo = null; public ArrayList HomeAmountBetween = null; public ArrayList HomeAmountIn = null; public String GSTDesc = null; public String GSTDescStartsWith = null; public String GSTDescEndsWith = null; public String GSTDescContains = null; public String GSTDescLike = null; public ArrayList GSTDescBetween = null; public ArrayList GSTDescIn = null; public BigDecimal GSTAmount = null; public BigDecimal GSTAmountGreaterThanOrEqualTo = null; public BigDecimal GSTAmountGreaterThan = null; public BigDecimal GSTAmountLessThan = null; public BigDecimal GSTAmountLessThanOrEqualTo = null; public BigDecimal GSTAmountNotEqualTo = null; public ArrayList GSTAmountBetween = null; public ArrayList GSTAmountIn = null; public BigDecimal GSTRate = null; public BigDecimal GSTRateGreaterThanOrEqualTo = null; public BigDecimal GSTRateGreaterThan = null; public BigDecimal GSTRateLessThan = null; public BigDecimal GSTRateLessThanOrEqualTo = null; public BigDecimal GSTRateNotEqualTo = null; public ArrayList GSTRateBetween = null; public ArrayList GSTRateIn = null; public BigDecimal TotalAmount = null; public BigDecimal TotalAmountGreaterThanOrEqualTo = null; public BigDecimal TotalAmountGreaterThan = null; public BigDecimal TotalAmountLessThan = null; public BigDecimal TotalAmountLessThanOrEqualTo = null; public BigDecimal TotalAmountNotEqualTo = null; public ArrayList TotalAmountBetween = null; public ArrayList TotalAmountIn = null; public String ApportionedOnPO = null; public String ApportionedOnPOStartsWith = null; public String ApportionedOnPOEndsWith = null; public String ApportionedOnPOContains = null; public String ApportionedOnPOLike = null; public ArrayList ApportionedOnPOBetween = null; public ArrayList ApportionedOnPOIn = null; public Date DueDate = null; public Date DueDateGreaterThanOrEqualTo = null; public Date DueDateGreaterThan = null; public Date DueDateLessThan = null; public Date DueDateLessThanOrEqualTo = null; public Date DueDateNotEqualTo = null; public ArrayList DueDateBetween = null; public ArrayList DueDateIn = null; public Date Date = null; public Date DateGreaterThanOrEqualTo = null; public Date DateGreaterThan = null; public Date DateLessThan = null; public Date DateLessThanOrEqualTo = null; public Date DateNotEqualTo = null; public ArrayList DateBetween = null; public ArrayList DateIn = null; public String SectionDesc = null; public String SectionDescStartsWith = null; public String SectionDescEndsWith = null; public String SectionDescContains = null; public String SectionDescLike = null; public ArrayList SectionDescBetween = null; public ArrayList SectionDescIn = null; public BigDecimal TotalCost = null; public BigDecimal TotalCostGreaterThanOrEqualTo = null; public BigDecimal TotalCostGreaterThan = null; public BigDecimal TotalCostLessThan = null; public BigDecimal TotalCostLessThanOrEqualTo = null; public BigDecimal TotalCostNotEqualTo = null; public ArrayList TotalCostBetween = null; public ArrayList TotalCostIn = null; public BigDecimal UnitCostExGST = null; public BigDecimal UnitCostExGSTGreaterThanOrEqualTo = null; public BigDecimal UnitCostExGSTGreaterThan = null; public BigDecimal UnitCostExGSTLessThan = null; public BigDecimal UnitCostExGSTLessThanOrEqualTo = null; public BigDecimal UnitCostExGSTNotEqualTo = null; public ArrayList UnitCostExGSTBetween = null; public ArrayList UnitCostExGSTIn = null; public BigDecimal Duty = null; public BigDecimal DutyGreaterThanOrEqualTo = null; public BigDecimal DutyGreaterThan = null; public BigDecimal DutyLessThan = null; public BigDecimal DutyLessThanOrEqualTo = null; public BigDecimal DutyNotEqualTo = null; public ArrayList DutyBetween = null; public ArrayList DutyIn = null; public BigDecimal Expenses = null; public BigDecimal ExpensesGreaterThanOrEqualTo = null; public BigDecimal ExpensesGreaterThan = null; public BigDecimal ExpensesLessThan = null; public BigDecimal ExpensesLessThanOrEqualTo = null; public BigDecimal ExpensesNotEqualTo = null; public ArrayList ExpensesBetween = null; public ArrayList ExpensesIn = null; public BigDecimal FXShipUnitCostExGST = null; public BigDecimal FXShipUnitCostExGSTGreaterThanOrEqualTo = null; public BigDecimal FXShipUnitCostExGSTGreaterThan = null; public BigDecimal FXShipUnitCostExGSTLessThan = null; public BigDecimal FXShipUnitCostExGSTLessThanOrEqualTo = null; public BigDecimal FXShipUnitCostExGSTNotEqualTo = null; public ArrayList FXShipUnitCostExGSTBetween = null; public ArrayList FXShipUnitCostExGSTIn = null; public String getShipmentID() { return ShipmentID; } public V_ShipmentQuery setShipmentID(String value) { this.ShipmentID = value; return this; } public String getShipmentIDStartsWith() { return ShipmentIDStartsWith; } public V_ShipmentQuery setShipmentIDStartsWith(String value) { this.ShipmentIDStartsWith = value; return this; } public String getShipmentIDEndsWith() { return ShipmentIDEndsWith; } public V_ShipmentQuery setShipmentIDEndsWith(String value) { this.ShipmentIDEndsWith = value; return this; } public String getShipmentIDContains() { return ShipmentIDContains; } public V_ShipmentQuery setShipmentIDContains(String value) { this.ShipmentIDContains = value; return this; } public String getShipmentIDLike() { return ShipmentIDLike; } public V_ShipmentQuery setShipmentIDLike(String value) { this.ShipmentIDLike = value; return this; } public ArrayList getShipmentIDBetween() { return ShipmentIDBetween; } public V_ShipmentQuery setShipmentIDBetween(ArrayList value) { this.ShipmentIDBetween = value; return this; } public ArrayList getShipmentIDIn() { return ShipmentIDIn; } public V_ShipmentQuery setShipmentIDIn(ArrayList value) { this.ShipmentIDIn = value; return this; } public String getLineID() { return LineID; } public V_ShipmentQuery setLineID(String value) { this.LineID = value; return this; } public String getLineIDStartsWith() { return LineIDStartsWith; } public V_ShipmentQuery setLineIDStartsWith(String value) { this.LineIDStartsWith = value; return this; } public String getLineIDEndsWith() { return LineIDEndsWith; } public V_ShipmentQuery setLineIDEndsWith(String value) { this.LineIDEndsWith = value; return this; } public String getLineIDContains() { return LineIDContains; } public V_ShipmentQuery setLineIDContains(String value) { this.LineIDContains = value; return this; } public String getLineIDLike() { return LineIDLike; } public V_ShipmentQuery setLineIDLike(String value) { this.LineIDLike = value; return this; } public ArrayList getLineIDBetween() { return LineIDBetween; } public V_ShipmentQuery setLineIDBetween(ArrayList value) { this.LineIDBetween = value; return this; } public ArrayList getLineIDIn() { return LineIDIn; } public V_ShipmentQuery setLineIDIn(ArrayList value) { this.LineIDIn = value; return this; } public String getOrderNo() { return OrderNo; } public V_ShipmentQuery setOrderNo(String value) { this.OrderNo = value; return this; } public String getOrderNoStartsWith() { return OrderNoStartsWith; } public V_ShipmentQuery setOrderNoStartsWith(String value) { this.OrderNoStartsWith = value; return this; } public String getOrderNoEndsWith() { return OrderNoEndsWith; } public V_ShipmentQuery setOrderNoEndsWith(String value) { this.OrderNoEndsWith = value; return this; } public String getOrderNoContains() { return OrderNoContains; } public V_ShipmentQuery setOrderNoContains(String value) { this.OrderNoContains = value; return this; } public String getOrderNoLike() { return OrderNoLike; } public V_ShipmentQuery setOrderNoLike(String value) { this.OrderNoLike = value; return this; } public ArrayList getOrderNoBetween() { return OrderNoBetween; } public V_ShipmentQuery setOrderNoBetween(ArrayList value) { this.OrderNoBetween = value; return this; } public ArrayList getOrderNoIn() { return OrderNoIn; } public V_ShipmentQuery setOrderNoIn(ArrayList value) { this.OrderNoIn = value; return this; } public String getInvoiceNo() { return InvoiceNo; } public V_ShipmentQuery setInvoiceNo(String value) { this.InvoiceNo = value; return this; } public String getInvoiceNoStartsWith() { return InvoiceNoStartsWith; } public V_ShipmentQuery setInvoiceNoStartsWith(String value) { this.InvoiceNoStartsWith = value; return this; } public String getInvoiceNoEndsWith() { return InvoiceNoEndsWith; } public V_ShipmentQuery setInvoiceNoEndsWith(String value) { this.InvoiceNoEndsWith = value; return this; } public String getInvoiceNoContains() { return InvoiceNoContains; } public V_ShipmentQuery setInvoiceNoContains(String value) { this.InvoiceNoContains = value; return this; } public String getInvoiceNoLike() { return InvoiceNoLike; } public V_ShipmentQuery setInvoiceNoLike(String value) { this.InvoiceNoLike = value; return this; } public ArrayList getInvoiceNoBetween() { return InvoiceNoBetween; } public V_ShipmentQuery setInvoiceNoBetween(ArrayList value) { this.InvoiceNoBetween = value; return this; } public ArrayList getInvoiceNoIn() { return InvoiceNoIn; } public V_ShipmentQuery setInvoiceNoIn(ArrayList value) { this.InvoiceNoIn = value; return this; } public String getCreditorID() { return CreditorID; } public V_ShipmentQuery setCreditorID(String value) { this.CreditorID = value; return this; } public String getCreditorIDStartsWith() { return CreditorIDStartsWith; } public V_ShipmentQuery setCreditorIDStartsWith(String value) { this.CreditorIDStartsWith = value; return this; } public String getCreditorIDEndsWith() { return CreditorIDEndsWith; } public V_ShipmentQuery setCreditorIDEndsWith(String value) { this.CreditorIDEndsWith = value; return this; } public String getCreditorIDContains() { return CreditorIDContains; } public V_ShipmentQuery setCreditorIDContains(String value) { this.CreditorIDContains = value; return this; } public String getCreditorIDLike() { return CreditorIDLike; } public V_ShipmentQuery setCreditorIDLike(String value) { this.CreditorIDLike = value; return this; } public ArrayList getCreditorIDBetween() { return CreditorIDBetween; } public V_ShipmentQuery setCreditorIDBetween(ArrayList value) { this.CreditorIDBetween = value; return this; } public ArrayList getCreditorIDIn() { return CreditorIDIn; } public V_ShipmentQuery setCreditorIDIn(ArrayList value) { this.CreditorIDIn = value; return this; } public String getPartNo() { return PartNo; } public V_ShipmentQuery setPartNo(String value) { this.PartNo = value; return this; } public String getPartNoStartsWith() { return PartNoStartsWith; } public V_ShipmentQuery setPartNoStartsWith(String value) { this.PartNoStartsWith = value; return this; } public String getPartNoEndsWith() { return PartNoEndsWith; } public V_ShipmentQuery setPartNoEndsWith(String value) { this.PartNoEndsWith = value; return this; } public String getPartNoContains() { return PartNoContains; } public V_ShipmentQuery setPartNoContains(String value) { this.PartNoContains = value; return this; } public String getPartNoLike() { return PartNoLike; } public V_ShipmentQuery setPartNoLike(String value) { this.PartNoLike = value; return this; } public ArrayList getPartNoBetween() { return PartNoBetween; } public V_ShipmentQuery setPartNoBetween(ArrayList value) { this.PartNoBetween = value; return this; } public ArrayList getPartNoIn() { return PartNoIn; } public V_ShipmentQuery setPartNoIn(ArrayList value) { this.PartNoIn = value; return this; } public String getDescription() { return Description; } public V_ShipmentQuery setDescription(String value) { this.Description = value; return this; } public String getDescriptionStartsWith() { return DescriptionStartsWith; } public V_ShipmentQuery setDescriptionStartsWith(String value) { this.DescriptionStartsWith = value; return this; } public String getDescriptionEndsWith() { return DescriptionEndsWith; } public V_ShipmentQuery setDescriptionEndsWith(String value) { this.DescriptionEndsWith = value; return this; } public String getDescriptionContains() { return DescriptionContains; } public V_ShipmentQuery setDescriptionContains(String value) { this.DescriptionContains = value; return this; } public String getDescriptionLike() { return DescriptionLike; } public V_ShipmentQuery setDescriptionLike(String value) { this.DescriptionLike = value; return this; } public ArrayList getDescriptionBetween() { return DescriptionBetween; } public V_ShipmentQuery setDescriptionBetween(ArrayList value) { this.DescriptionBetween = value; return this; } public ArrayList getDescriptionIn() { return DescriptionIn; } public V_ShipmentQuery setDescriptionIn(ArrayList value) { this.DescriptionIn = value; return this; } public String getSuppPartNo() { return SuppPartNo; } public V_ShipmentQuery setSuppPartNo(String value) { this.SuppPartNo = value; return this; } public String getSuppPartNoStartsWith() { return SuppPartNoStartsWith; } public V_ShipmentQuery setSuppPartNoStartsWith(String value) { this.SuppPartNoStartsWith = value; return this; } public String getSuppPartNoEndsWith() { return SuppPartNoEndsWith; } public V_ShipmentQuery setSuppPartNoEndsWith(String value) { this.SuppPartNoEndsWith = value; return this; } public String getSuppPartNoContains() { return SuppPartNoContains; } public V_ShipmentQuery setSuppPartNoContains(String value) { this.SuppPartNoContains = value; return this; } public String getSuppPartNoLike() { return SuppPartNoLike; } public V_ShipmentQuery setSuppPartNoLike(String value) { this.SuppPartNoLike = value; return this; } public ArrayList getSuppPartNoBetween() { return SuppPartNoBetween; } public V_ShipmentQuery setSuppPartNoBetween(ArrayList value) { this.SuppPartNoBetween = value; return this; } public ArrayList getSuppPartNoIn() { return SuppPartNoIn; } public V_ShipmentQuery setSuppPartNoIn(ArrayList value) { this.SuppPartNoIn = value; return this; } public BigDecimal getQtyOrdered() { return QtyOrdered; } public V_ShipmentQuery setQtyOrdered(BigDecimal value) { this.QtyOrdered = value; return this; } public BigDecimal getQtyOrderedGreaterThanOrEqualTo() { return QtyOrderedGreaterThanOrEqualTo; } public V_ShipmentQuery setQtyOrderedGreaterThanOrEqualTo(BigDecimal value) { this.QtyOrderedGreaterThanOrEqualTo = value; return this; } public BigDecimal getQtyOrderedGreaterThan() { return QtyOrderedGreaterThan; } public V_ShipmentQuery setQtyOrderedGreaterThan(BigDecimal value) { this.QtyOrderedGreaterThan = value; return this; } public BigDecimal getQtyOrderedLessThan() { return QtyOrderedLessThan; } public V_ShipmentQuery setQtyOrderedLessThan(BigDecimal value) { this.QtyOrderedLessThan = value; return this; } public BigDecimal getQtyOrderedLessThanOrEqualTo() { return QtyOrderedLessThanOrEqualTo; } public V_ShipmentQuery setQtyOrderedLessThanOrEqualTo(BigDecimal value) { this.QtyOrderedLessThanOrEqualTo = value; return this; } public BigDecimal getQtyOrderedNotEqualTo() { return QtyOrderedNotEqualTo; } public V_ShipmentQuery setQtyOrderedNotEqualTo(BigDecimal value) { this.QtyOrderedNotEqualTo = value; return this; } public ArrayList getQtyOrderedBetween() { return QtyOrderedBetween; } public V_ShipmentQuery setQtyOrderedBetween(ArrayList value) { this.QtyOrderedBetween = value; return this; } public ArrayList getQtyOrderedIn() { return QtyOrderedIn; } public V_ShipmentQuery setQtyOrderedIn(ArrayList value) { this.QtyOrderedIn = value; return this; } public BigDecimal getQtyThisShip() { return QtyThisShip; } public V_ShipmentQuery setQtyThisShip(BigDecimal value) { this.QtyThisShip = value; return this; } public BigDecimal getQtyThisShipGreaterThanOrEqualTo() { return QtyThisShipGreaterThanOrEqualTo; } public V_ShipmentQuery setQtyThisShipGreaterThanOrEqualTo(BigDecimal value) { this.QtyThisShipGreaterThanOrEqualTo = value; return this; } public BigDecimal getQtyThisShipGreaterThan() { return QtyThisShipGreaterThan; } public V_ShipmentQuery setQtyThisShipGreaterThan(BigDecimal value) { this.QtyThisShipGreaterThan = value; return this; } public BigDecimal getQtyThisShipLessThan() { return QtyThisShipLessThan; } public V_ShipmentQuery setQtyThisShipLessThan(BigDecimal value) { this.QtyThisShipLessThan = value; return this; } public BigDecimal getQtyThisShipLessThanOrEqualTo() { return QtyThisShipLessThanOrEqualTo; } public V_ShipmentQuery setQtyThisShipLessThanOrEqualTo(BigDecimal value) { this.QtyThisShipLessThanOrEqualTo = value; return this; } public BigDecimal getQtyThisShipNotEqualTo() { return QtyThisShipNotEqualTo; } public V_ShipmentQuery setQtyThisShipNotEqualTo(BigDecimal value) { this.QtyThisShipNotEqualTo = value; return this; } public ArrayList getQtyThisShipBetween() { return QtyThisShipBetween; } public V_ShipmentQuery setQtyThisShipBetween(ArrayList value) { this.QtyThisShipBetween = value; return this; } public ArrayList getQtyThisShipIn() { return QtyThisShipIn; } public V_ShipmentQuery setQtyThisShipIn(ArrayList value) { this.QtyThisShipIn = value; return this; } public BigDecimal getLineCost() { return LineCost; } public V_ShipmentQuery setLineCost(BigDecimal value) { this.LineCost = value; return this; } public BigDecimal getLineCostGreaterThanOrEqualTo() { return LineCostGreaterThanOrEqualTo; } public V_ShipmentQuery setLineCostGreaterThanOrEqualTo(BigDecimal value) { this.LineCostGreaterThanOrEqualTo = value; return this; } public BigDecimal getLineCostGreaterThan() { return LineCostGreaterThan; } public V_ShipmentQuery setLineCostGreaterThan(BigDecimal value) { this.LineCostGreaterThan = value; return this; } public BigDecimal getLineCostLessThan() { return LineCostLessThan; } public V_ShipmentQuery setLineCostLessThan(BigDecimal value) { this.LineCostLessThan = value; return this; } public BigDecimal getLineCostLessThanOrEqualTo() { return LineCostLessThanOrEqualTo; } public V_ShipmentQuery setLineCostLessThanOrEqualTo(BigDecimal value) { this.LineCostLessThanOrEqualTo = value; return this; } public BigDecimal getLineCostNotEqualTo() { return LineCostNotEqualTo; } public V_ShipmentQuery setLineCostNotEqualTo(BigDecimal value) { this.LineCostNotEqualTo = value; return this; } public ArrayList getLineCostBetween() { return LineCostBetween; } public V_ShipmentQuery setLineCostBetween(ArrayList value) { this.LineCostBetween = value; return this; } public ArrayList getLineCostIn() { return LineCostIn; } public V_ShipmentQuery setLineCostIn(ArrayList value) { this.LineCostIn = value; return this; } public BigDecimal getLandedCost() { return LandedCost; } public V_ShipmentQuery setLandedCost(BigDecimal value) { this.LandedCost = value; return this; } public BigDecimal getLandedCostGreaterThanOrEqualTo() { return LandedCostGreaterThanOrEqualTo; } public V_ShipmentQuery setLandedCostGreaterThanOrEqualTo(BigDecimal value) { this.LandedCostGreaterThanOrEqualTo = value; return this; } public BigDecimal getLandedCostGreaterThan() { return LandedCostGreaterThan; } public V_ShipmentQuery setLandedCostGreaterThan(BigDecimal value) { this.LandedCostGreaterThan = value; return this; } public BigDecimal getLandedCostLessThan() { return LandedCostLessThan; } public V_ShipmentQuery setLandedCostLessThan(BigDecimal value) { this.LandedCostLessThan = value; return this; } public BigDecimal getLandedCostLessThanOrEqualTo() { return LandedCostLessThanOrEqualTo; } public V_ShipmentQuery setLandedCostLessThanOrEqualTo(BigDecimal value) { this.LandedCostLessThanOrEqualTo = value; return this; } public BigDecimal getLandedCostNotEqualTo() { return LandedCostNotEqualTo; } public V_ShipmentQuery setLandedCostNotEqualTo(BigDecimal value) { this.LandedCostNotEqualTo = value; return this; } public ArrayList getLandedCostBetween() { return LandedCostBetween; } public V_ShipmentQuery setLandedCostBetween(ArrayList value) { this.LandedCostBetween = value; return this; } public ArrayList getLandedCostIn() { return LandedCostIn; } public V_ShipmentQuery setLandedCostIn(ArrayList value) { this.LandedCostIn = value; return this; } public BigDecimal getLandedTotal() { return LandedTotal; } public V_ShipmentQuery setLandedTotal(BigDecimal value) { this.LandedTotal = value; return this; } public BigDecimal getLandedTotalGreaterThanOrEqualTo() { return LandedTotalGreaterThanOrEqualTo; } public V_ShipmentQuery setLandedTotalGreaterThanOrEqualTo(BigDecimal value) { this.LandedTotalGreaterThanOrEqualTo = value; return this; } public BigDecimal getLandedTotalGreaterThan() { return LandedTotalGreaterThan; } public V_ShipmentQuery setLandedTotalGreaterThan(BigDecimal value) { this.LandedTotalGreaterThan = value; return this; } public BigDecimal getLandedTotalLessThan() { return LandedTotalLessThan; } public V_ShipmentQuery setLandedTotalLessThan(BigDecimal value) { this.LandedTotalLessThan = value; return this; } public BigDecimal getLandedTotalLessThanOrEqualTo() { return LandedTotalLessThanOrEqualTo; } public V_ShipmentQuery setLandedTotalLessThanOrEqualTo(BigDecimal value) { this.LandedTotalLessThanOrEqualTo = value; return this; } public BigDecimal getLandedTotalNotEqualTo() { return LandedTotalNotEqualTo; } public V_ShipmentQuery setLandedTotalNotEqualTo(BigDecimal value) { this.LandedTotalNotEqualTo = value; return this; } public ArrayList getLandedTotalBetween() { return LandedTotalBetween; } public V_ShipmentQuery setLandedTotalBetween(ArrayList value) { this.LandedTotalBetween = value; return this; } public ArrayList getLandedTotalIn() { return LandedTotalIn; } public V_ShipmentQuery setLandedTotalIn(ArrayList value) { this.LandedTotalIn = value; return this; } public String getCostType() { return CostType; } public V_ShipmentQuery setCostType(String value) { this.CostType = value; return this; } public String getCostTypeStartsWith() { return CostTypeStartsWith; } public V_ShipmentQuery setCostTypeStartsWith(String value) { this.CostTypeStartsWith = value; return this; } public String getCostTypeEndsWith() { return CostTypeEndsWith; } public V_ShipmentQuery setCostTypeEndsWith(String value) { this.CostTypeEndsWith = value; return this; } public String getCostTypeContains() { return CostTypeContains; } public V_ShipmentQuery setCostTypeContains(String value) { this.CostTypeContains = value; return this; } public String getCostTypeLike() { return CostTypeLike; } public V_ShipmentQuery setCostTypeLike(String value) { this.CostTypeLike = value; return this; } public ArrayList getCostTypeBetween() { return CostTypeBetween; } public V_ShipmentQuery setCostTypeBetween(ArrayList value) { this.CostTypeBetween = value; return this; } public ArrayList getCostTypeIn() { return CostTypeIn; } public V_ShipmentQuery setCostTypeIn(ArrayList value) { this.CostTypeIn = value; return this; } public String getCurrencyID() { return CurrencyID; } public V_ShipmentQuery setCurrencyID(String value) { this.CurrencyID = value; return this; } public String getCurrencyIDStartsWith() { return CurrencyIDStartsWith; } public V_ShipmentQuery setCurrencyIDStartsWith(String value) { this.CurrencyIDStartsWith = value; return this; } public String getCurrencyIDEndsWith() { return CurrencyIDEndsWith; } public V_ShipmentQuery setCurrencyIDEndsWith(String value) { this.CurrencyIDEndsWith = value; return this; } public String getCurrencyIDContains() { return CurrencyIDContains; } public V_ShipmentQuery setCurrencyIDContains(String value) { this.CurrencyIDContains = value; return this; } public String getCurrencyIDLike() { return CurrencyIDLike; } public V_ShipmentQuery setCurrencyIDLike(String value) { this.CurrencyIDLike = value; return this; } public ArrayList getCurrencyIDBetween() { return CurrencyIDBetween; } public V_ShipmentQuery setCurrencyIDBetween(ArrayList value) { this.CurrencyIDBetween = value; return this; } public ArrayList getCurrencyIDIn() { return CurrencyIDIn; } public V_ShipmentQuery setCurrencyIDIn(ArrayList value) { this.CurrencyIDIn = value; return this; } public BigDecimal getFXrate() { return FXrate; } public V_ShipmentQuery setFXrate(BigDecimal value) { this.FXrate = value; return this; } public BigDecimal getFXrateGreaterThanOrEqualTo() { return FXrateGreaterThanOrEqualTo; } public V_ShipmentQuery setFXrateGreaterThanOrEqualTo(BigDecimal value) { this.FXrateGreaterThanOrEqualTo = value; return this; } public BigDecimal getFXrateGreaterThan() { return FXrateGreaterThan; } public V_ShipmentQuery setFXrateGreaterThan(BigDecimal value) { this.FXrateGreaterThan = value; return this; } public BigDecimal getFXrateLessThan() { return FXrateLessThan; } public V_ShipmentQuery setFXrateLessThan(BigDecimal value) { this.FXrateLessThan = value; return this; } public BigDecimal getFXrateLessThanOrEqualTo() { return FXrateLessThanOrEqualTo; } public V_ShipmentQuery setFXrateLessThanOrEqualTo(BigDecimal value) { this.FXrateLessThanOrEqualTo = value; return this; } public BigDecimal getFXrateNotEqualTo() { return FXrateNotEqualTo; } public V_ShipmentQuery setFXrateNotEqualTo(BigDecimal value) { this.FXrateNotEqualTo = value; return this; } public ArrayList getFXrateBetween() { return FXrateBetween; } public V_ShipmentQuery setFXrateBetween(ArrayList value) { this.FXrateBetween = value; return this; } public ArrayList getFXrateIn() { return FXrateIn; } public V_ShipmentQuery setFXrateIn(ArrayList value) { this.FXrateIn = value; return this; } public BigDecimal getFxAmount() { return FXAmount; } public V_ShipmentQuery setFxAmount(BigDecimal value) { this.FXAmount = value; return this; } public BigDecimal getFxAmountGreaterThanOrEqualTo() { return FXAmountGreaterThanOrEqualTo; } public V_ShipmentQuery setFxAmountGreaterThanOrEqualTo(BigDecimal value) { this.FXAmountGreaterThanOrEqualTo = value; return this; } public BigDecimal getFxAmountGreaterThan() { return FXAmountGreaterThan; } public V_ShipmentQuery setFxAmountGreaterThan(BigDecimal value) { this.FXAmountGreaterThan = value; return this; } public BigDecimal getFxAmountLessThan() { return FXAmountLessThan; } public V_ShipmentQuery setFxAmountLessThan(BigDecimal value) { this.FXAmountLessThan = value; return this; } public BigDecimal getFxAmountLessThanOrEqualTo() { return FXAmountLessThanOrEqualTo; } public V_ShipmentQuery setFxAmountLessThanOrEqualTo(BigDecimal value) { this.FXAmountLessThanOrEqualTo = value; return this; } public BigDecimal getFxAmountNotEqualTo() { return FXAmountNotEqualTo; } public V_ShipmentQuery setFxAmountNotEqualTo(BigDecimal value) { this.FXAmountNotEqualTo = value; return this; } public ArrayList getFxAmountBetween() { return FXAmountBetween; } public V_ShipmentQuery setFxAmountBetween(ArrayList value) { this.FXAmountBetween = value; return this; } public ArrayList getFxAmountIn() { return FXAmountIn; } public V_ShipmentQuery setFxAmountIn(ArrayList value) { this.FXAmountIn = value; return this; } public BigDecimal getHomeAmount() { return HomeAmount; } public V_ShipmentQuery setHomeAmount(BigDecimal value) { this.HomeAmount = value; return this; } public BigDecimal getHomeAmountGreaterThanOrEqualTo() { return HomeAmountGreaterThanOrEqualTo; } public V_ShipmentQuery setHomeAmountGreaterThanOrEqualTo(BigDecimal value) { this.HomeAmountGreaterThanOrEqualTo = value; return this; } public BigDecimal getHomeAmountGreaterThan() { return HomeAmountGreaterThan; } public V_ShipmentQuery setHomeAmountGreaterThan(BigDecimal value) { this.HomeAmountGreaterThan = value; return this; } public BigDecimal getHomeAmountLessThan() { return HomeAmountLessThan; } public V_ShipmentQuery setHomeAmountLessThan(BigDecimal value) { this.HomeAmountLessThan = value; return this; } public BigDecimal getHomeAmountLessThanOrEqualTo() { return HomeAmountLessThanOrEqualTo; } public V_ShipmentQuery setHomeAmountLessThanOrEqualTo(BigDecimal value) { this.HomeAmountLessThanOrEqualTo = value; return this; } public BigDecimal getHomeAmountNotEqualTo() { return HomeAmountNotEqualTo; } public V_ShipmentQuery setHomeAmountNotEqualTo(BigDecimal value) { this.HomeAmountNotEqualTo = value; return this; } public ArrayList getHomeAmountBetween() { return HomeAmountBetween; } public V_ShipmentQuery setHomeAmountBetween(ArrayList value) { this.HomeAmountBetween = value; return this; } public ArrayList getHomeAmountIn() { return HomeAmountIn; } public V_ShipmentQuery setHomeAmountIn(ArrayList value) { this.HomeAmountIn = value; return this; } public String getGstDesc() { return GSTDesc; } public V_ShipmentQuery setGstDesc(String value) { this.GSTDesc = value; return this; } public String getGstDescStartsWith() { return GSTDescStartsWith; } public V_ShipmentQuery setGstDescStartsWith(String value) { this.GSTDescStartsWith = value; return this; } public String getGstDescEndsWith() { return GSTDescEndsWith; } public V_ShipmentQuery setGstDescEndsWith(String value) { this.GSTDescEndsWith = value; return this; } public String getGstDescContains() { return GSTDescContains; } public V_ShipmentQuery setGstDescContains(String value) { this.GSTDescContains = value; return this; } public String getGstDescLike() { return GSTDescLike; } public V_ShipmentQuery setGstDescLike(String value) { this.GSTDescLike = value; return this; } public ArrayList getGstDescBetween() { return GSTDescBetween; } public V_ShipmentQuery setGstDescBetween(ArrayList value) { this.GSTDescBetween = value; return this; } public ArrayList getGstDescIn() { return GSTDescIn; } public V_ShipmentQuery setGstDescIn(ArrayList value) { this.GSTDescIn = value; return this; } public BigDecimal getGstAmount() { return GSTAmount; } public V_ShipmentQuery setGstAmount(BigDecimal value) { this.GSTAmount = value; return this; } public BigDecimal getGstAmountGreaterThanOrEqualTo() { return GSTAmountGreaterThanOrEqualTo; } public V_ShipmentQuery setGstAmountGreaterThanOrEqualTo(BigDecimal value) { this.GSTAmountGreaterThanOrEqualTo = value; return this; } public BigDecimal getGstAmountGreaterThan() { return GSTAmountGreaterThan; } public V_ShipmentQuery setGstAmountGreaterThan(BigDecimal value) { this.GSTAmountGreaterThan = value; return this; } public BigDecimal getGstAmountLessThan() { return GSTAmountLessThan; } public V_ShipmentQuery setGstAmountLessThan(BigDecimal value) { this.GSTAmountLessThan = value; return this; } public BigDecimal getGstAmountLessThanOrEqualTo() { return GSTAmountLessThanOrEqualTo; } public V_ShipmentQuery setGstAmountLessThanOrEqualTo(BigDecimal value) { this.GSTAmountLessThanOrEqualTo = value; return this; } public BigDecimal getGstAmountNotEqualTo() { return GSTAmountNotEqualTo; } public V_ShipmentQuery setGstAmountNotEqualTo(BigDecimal value) { this.GSTAmountNotEqualTo = value; return this; } public ArrayList getGstAmountBetween() { return GSTAmountBetween; } public V_ShipmentQuery setGstAmountBetween(ArrayList value) { this.GSTAmountBetween = value; return this; } public ArrayList getGstAmountIn() { return GSTAmountIn; } public V_ShipmentQuery setGstAmountIn(ArrayList value) { this.GSTAmountIn = value; return this; } public BigDecimal getGstRate() { return GSTRate; } public V_ShipmentQuery setGstRate(BigDecimal value) { this.GSTRate = value; return this; } public BigDecimal getGstRateGreaterThanOrEqualTo() { return GSTRateGreaterThanOrEqualTo; } public V_ShipmentQuery setGstRateGreaterThanOrEqualTo(BigDecimal value) { this.GSTRateGreaterThanOrEqualTo = value; return this; } public BigDecimal getGstRateGreaterThan() { return GSTRateGreaterThan; } public V_ShipmentQuery setGstRateGreaterThan(BigDecimal value) { this.GSTRateGreaterThan = value; return this; } public BigDecimal getGstRateLessThan() { return GSTRateLessThan; } public V_ShipmentQuery setGstRateLessThan(BigDecimal value) { this.GSTRateLessThan = value; return this; } public BigDecimal getGstRateLessThanOrEqualTo() { return GSTRateLessThanOrEqualTo; } public V_ShipmentQuery setGstRateLessThanOrEqualTo(BigDecimal value) { this.GSTRateLessThanOrEqualTo = value; return this; } public BigDecimal getGstRateNotEqualTo() { return GSTRateNotEqualTo; } public V_ShipmentQuery setGstRateNotEqualTo(BigDecimal value) { this.GSTRateNotEqualTo = value; return this; } public ArrayList getGstRateBetween() { return GSTRateBetween; } public V_ShipmentQuery setGstRateBetween(ArrayList value) { this.GSTRateBetween = value; return this; } public ArrayList getGstRateIn() { return GSTRateIn; } public V_ShipmentQuery setGstRateIn(ArrayList value) { this.GSTRateIn = value; return this; } public BigDecimal getTotalAmount() { return TotalAmount; } public V_ShipmentQuery setTotalAmount(BigDecimal value) { this.TotalAmount = value; return this; } public BigDecimal getTotalAmountGreaterThanOrEqualTo() { return TotalAmountGreaterThanOrEqualTo; } public V_ShipmentQuery setTotalAmountGreaterThanOrEqualTo(BigDecimal value) { this.TotalAmountGreaterThanOrEqualTo = value; return this; } public BigDecimal getTotalAmountGreaterThan() { return TotalAmountGreaterThan; } public V_ShipmentQuery setTotalAmountGreaterThan(BigDecimal value) { this.TotalAmountGreaterThan = value; return this; } public BigDecimal getTotalAmountLessThan() { return TotalAmountLessThan; } public V_ShipmentQuery setTotalAmountLessThan(BigDecimal value) { this.TotalAmountLessThan = value; return this; } public BigDecimal getTotalAmountLessThanOrEqualTo() { return TotalAmountLessThanOrEqualTo; } public V_ShipmentQuery setTotalAmountLessThanOrEqualTo(BigDecimal value) { this.TotalAmountLessThanOrEqualTo = value; return this; } public BigDecimal getTotalAmountNotEqualTo() { return TotalAmountNotEqualTo; } public V_ShipmentQuery setTotalAmountNotEqualTo(BigDecimal value) { this.TotalAmountNotEqualTo = value; return this; } public ArrayList getTotalAmountBetween() { return TotalAmountBetween; } public V_ShipmentQuery setTotalAmountBetween(ArrayList value) { this.TotalAmountBetween = value; return this; } public ArrayList getTotalAmountIn() { return TotalAmountIn; } public V_ShipmentQuery setTotalAmountIn(ArrayList value) { this.TotalAmountIn = value; return this; } public String getApportionedOnPO() { return ApportionedOnPO; } public V_ShipmentQuery setApportionedOnPO(String value) { this.ApportionedOnPO = value; return this; } public String getApportionedOnPOStartsWith() { return ApportionedOnPOStartsWith; } public V_ShipmentQuery setApportionedOnPOStartsWith(String value) { this.ApportionedOnPOStartsWith = value; return this; } public String getApportionedOnPOEndsWith() { return ApportionedOnPOEndsWith; } public V_ShipmentQuery setApportionedOnPOEndsWith(String value) { this.ApportionedOnPOEndsWith = value; return this; } public String getApportionedOnPOContains() { return ApportionedOnPOContains; } public V_ShipmentQuery setApportionedOnPOContains(String value) { this.ApportionedOnPOContains = value; return this; } public String getApportionedOnPOLike() { return ApportionedOnPOLike; } public V_ShipmentQuery setApportionedOnPOLike(String value) { this.ApportionedOnPOLike = value; return this; } public ArrayList getApportionedOnPOBetween() { return ApportionedOnPOBetween; } public V_ShipmentQuery setApportionedOnPOBetween(ArrayList value) { this.ApportionedOnPOBetween = value; return this; } public ArrayList getApportionedOnPOIn() { return ApportionedOnPOIn; } public V_ShipmentQuery setApportionedOnPOIn(ArrayList value) { this.ApportionedOnPOIn = value; return this; } public Date getDueDate() { return DueDate; } public V_ShipmentQuery setDueDate(Date value) { this.DueDate = value; return this; } public Date getDueDateGreaterThanOrEqualTo() { return DueDateGreaterThanOrEqualTo; } public V_ShipmentQuery setDueDateGreaterThanOrEqualTo(Date value) { this.DueDateGreaterThanOrEqualTo = value; return this; } public Date getDueDateGreaterThan() { return DueDateGreaterThan; } public V_ShipmentQuery setDueDateGreaterThan(Date value) { this.DueDateGreaterThan = value; return this; } public Date getDueDateLessThan() { return DueDateLessThan; } public V_ShipmentQuery setDueDateLessThan(Date value) { this.DueDateLessThan = value; return this; } public Date getDueDateLessThanOrEqualTo() { return DueDateLessThanOrEqualTo; } public V_ShipmentQuery setDueDateLessThanOrEqualTo(Date value) { this.DueDateLessThanOrEqualTo = value; return this; } public Date getDueDateNotEqualTo() { return DueDateNotEqualTo; } public V_ShipmentQuery setDueDateNotEqualTo(Date value) { this.DueDateNotEqualTo = value; return this; } public ArrayList getDueDateBetween() { return DueDateBetween; } public V_ShipmentQuery setDueDateBetween(ArrayList value) { this.DueDateBetween = value; return this; } public ArrayList getDueDateIn() { return DueDateIn; } public V_ShipmentQuery setDueDateIn(ArrayList value) { this.DueDateIn = value; return this; } public Date getDate() { return Date; } public V_ShipmentQuery setDate(Date value) { this.Date = value; return this; } public Date getDateGreaterThanOrEqualTo() { return DateGreaterThanOrEqualTo; } public V_ShipmentQuery setDateGreaterThanOrEqualTo(Date value) { this.DateGreaterThanOrEqualTo = value; return this; } public Date getDateGreaterThan() { return DateGreaterThan; } public V_ShipmentQuery setDateGreaterThan(Date value) { this.DateGreaterThan = value; return this; } public Date getDateLessThan() { return DateLessThan; } public V_ShipmentQuery setDateLessThan(Date value) { this.DateLessThan = value; return this; } public Date getDateLessThanOrEqualTo() { return DateLessThanOrEqualTo; } public V_ShipmentQuery setDateLessThanOrEqualTo(Date value) { this.DateLessThanOrEqualTo = value; return this; } public Date getDateNotEqualTo() { return DateNotEqualTo; } public V_ShipmentQuery setDateNotEqualTo(Date value) { this.DateNotEqualTo = value; return this; } public ArrayList getDateBetween() { return DateBetween; } public V_ShipmentQuery setDateBetween(ArrayList value) { this.DateBetween = value; return this; } public ArrayList getDateIn() { return DateIn; } public V_ShipmentQuery setDateIn(ArrayList value) { this.DateIn = value; return this; } public String getSectionDesc() { return SectionDesc; } public V_ShipmentQuery setSectionDesc(String value) { this.SectionDesc = value; return this; } public String getSectionDescStartsWith() { return SectionDescStartsWith; } public V_ShipmentQuery setSectionDescStartsWith(String value) { this.SectionDescStartsWith = value; return this; } public String getSectionDescEndsWith() { return SectionDescEndsWith; } public V_ShipmentQuery setSectionDescEndsWith(String value) { this.SectionDescEndsWith = value; return this; } public String getSectionDescContains() { return SectionDescContains; } public V_ShipmentQuery setSectionDescContains(String value) { this.SectionDescContains = value; return this; } public String getSectionDescLike() { return SectionDescLike; } public V_ShipmentQuery setSectionDescLike(String value) { this.SectionDescLike = value; return this; } public ArrayList getSectionDescBetween() { return SectionDescBetween; } public V_ShipmentQuery setSectionDescBetween(ArrayList value) { this.SectionDescBetween = value; return this; } public ArrayList getSectionDescIn() { return SectionDescIn; } public V_ShipmentQuery setSectionDescIn(ArrayList value) { this.SectionDescIn = value; return this; } public BigDecimal getTotalCost() { return TotalCost; } public V_ShipmentQuery setTotalCost(BigDecimal value) { this.TotalCost = value; return this; } public BigDecimal getTotalCostGreaterThanOrEqualTo() { return TotalCostGreaterThanOrEqualTo; } public V_ShipmentQuery setTotalCostGreaterThanOrEqualTo(BigDecimal value) { this.TotalCostGreaterThanOrEqualTo = value; return this; } public BigDecimal getTotalCostGreaterThan() { return TotalCostGreaterThan; } public V_ShipmentQuery setTotalCostGreaterThan(BigDecimal value) { this.TotalCostGreaterThan = value; return this; } public BigDecimal getTotalCostLessThan() { return TotalCostLessThan; } public V_ShipmentQuery setTotalCostLessThan(BigDecimal value) { this.TotalCostLessThan = value; return this; } public BigDecimal getTotalCostLessThanOrEqualTo() { return TotalCostLessThanOrEqualTo; } public V_ShipmentQuery setTotalCostLessThanOrEqualTo(BigDecimal value) { this.TotalCostLessThanOrEqualTo = value; return this; } public BigDecimal getTotalCostNotEqualTo() { return TotalCostNotEqualTo; } public V_ShipmentQuery setTotalCostNotEqualTo(BigDecimal value) { this.TotalCostNotEqualTo = value; return this; } public ArrayList getTotalCostBetween() { return TotalCostBetween; } public V_ShipmentQuery setTotalCostBetween(ArrayList value) { this.TotalCostBetween = value; return this; } public ArrayList getTotalCostIn() { return TotalCostIn; } public V_ShipmentQuery setTotalCostIn(ArrayList value) { this.TotalCostIn = value; return this; } public BigDecimal getUnitCostExGST() { return UnitCostExGST; } public V_ShipmentQuery setUnitCostExGST(BigDecimal value) { this.UnitCostExGST = value; return this; } public BigDecimal getUnitCostExGSTGreaterThanOrEqualTo() { return UnitCostExGSTGreaterThanOrEqualTo; } public V_ShipmentQuery setUnitCostExGSTGreaterThanOrEqualTo(BigDecimal value) { this.UnitCostExGSTGreaterThanOrEqualTo = value; return this; } public BigDecimal getUnitCostExGSTGreaterThan() { return UnitCostExGSTGreaterThan; } public V_ShipmentQuery setUnitCostExGSTGreaterThan(BigDecimal value) { this.UnitCostExGSTGreaterThan = value; return this; } public BigDecimal getUnitCostExGSTLessThan() { return UnitCostExGSTLessThan; } public V_ShipmentQuery setUnitCostExGSTLessThan(BigDecimal value) { this.UnitCostExGSTLessThan = value; return this; } public BigDecimal getUnitCostExGSTLessThanOrEqualTo() { return UnitCostExGSTLessThanOrEqualTo; } public V_ShipmentQuery setUnitCostExGSTLessThanOrEqualTo(BigDecimal value) { this.UnitCostExGSTLessThanOrEqualTo = value; return this; } public BigDecimal getUnitCostExGSTNotEqualTo() { return UnitCostExGSTNotEqualTo; } public V_ShipmentQuery setUnitCostExGSTNotEqualTo(BigDecimal value) { this.UnitCostExGSTNotEqualTo = value; return this; } public ArrayList getUnitCostExGSTBetween() { return UnitCostExGSTBetween; } public V_ShipmentQuery setUnitCostExGSTBetween(ArrayList value) { this.UnitCostExGSTBetween = value; return this; } public ArrayList getUnitCostExGSTIn() { return UnitCostExGSTIn; } public V_ShipmentQuery setUnitCostExGSTIn(ArrayList value) { this.UnitCostExGSTIn = value; return this; } public BigDecimal getDuty() { return Duty; } public V_ShipmentQuery setDuty(BigDecimal value) { this.Duty = value; return this; } public BigDecimal getDutyGreaterThanOrEqualTo() { return DutyGreaterThanOrEqualTo; } public V_ShipmentQuery setDutyGreaterThanOrEqualTo(BigDecimal value) { this.DutyGreaterThanOrEqualTo = value; return this; } public BigDecimal getDutyGreaterThan() { return DutyGreaterThan; } public V_ShipmentQuery setDutyGreaterThan(BigDecimal value) { this.DutyGreaterThan = value; return this; } public BigDecimal getDutyLessThan() { return DutyLessThan; } public V_ShipmentQuery setDutyLessThan(BigDecimal value) { this.DutyLessThan = value; return this; } public BigDecimal getDutyLessThanOrEqualTo() { return DutyLessThanOrEqualTo; } public V_ShipmentQuery setDutyLessThanOrEqualTo(BigDecimal value) { this.DutyLessThanOrEqualTo = value; return this; } public BigDecimal getDutyNotEqualTo() { return DutyNotEqualTo; } public V_ShipmentQuery setDutyNotEqualTo(BigDecimal value) { this.DutyNotEqualTo = value; return this; } public ArrayList getDutyBetween() { return DutyBetween; } public V_ShipmentQuery setDutyBetween(ArrayList value) { this.DutyBetween = value; return this; } public ArrayList getDutyIn() { return DutyIn; } public V_ShipmentQuery setDutyIn(ArrayList value) { this.DutyIn = value; return this; } public BigDecimal getExpenses() { return Expenses; } public V_ShipmentQuery setExpenses(BigDecimal value) { this.Expenses = value; return this; } public BigDecimal getExpensesGreaterThanOrEqualTo() { return ExpensesGreaterThanOrEqualTo; } public V_ShipmentQuery setExpensesGreaterThanOrEqualTo(BigDecimal value) { this.ExpensesGreaterThanOrEqualTo = value; return this; } public BigDecimal getExpensesGreaterThan() { return ExpensesGreaterThan; } public V_ShipmentQuery setExpensesGreaterThan(BigDecimal value) { this.ExpensesGreaterThan = value; return this; } public BigDecimal getExpensesLessThan() { return ExpensesLessThan; } public V_ShipmentQuery setExpensesLessThan(BigDecimal value) { this.ExpensesLessThan = value; return this; } public BigDecimal getExpensesLessThanOrEqualTo() { return ExpensesLessThanOrEqualTo; } public V_ShipmentQuery setExpensesLessThanOrEqualTo(BigDecimal value) { this.ExpensesLessThanOrEqualTo = value; return this; } public BigDecimal getExpensesNotEqualTo() { return ExpensesNotEqualTo; } public V_ShipmentQuery setExpensesNotEqualTo(BigDecimal value) { this.ExpensesNotEqualTo = value; return this; } public ArrayList getExpensesBetween() { return ExpensesBetween; } public V_ShipmentQuery setExpensesBetween(ArrayList value) { this.ExpensesBetween = value; return this; } public ArrayList getExpensesIn() { return ExpensesIn; } public V_ShipmentQuery setExpensesIn(ArrayList value) { this.ExpensesIn = value; return this; } public BigDecimal getFxShipUnitCostExGST() { return FXShipUnitCostExGST; } public V_ShipmentQuery setFxShipUnitCostExGST(BigDecimal value) { this.FXShipUnitCostExGST = value; return this; } public BigDecimal getFxShipUnitCostExGSTGreaterThanOrEqualTo() { return FXShipUnitCostExGSTGreaterThanOrEqualTo; } public V_ShipmentQuery setFxShipUnitCostExGSTGreaterThanOrEqualTo(BigDecimal value) { this.FXShipUnitCostExGSTGreaterThanOrEqualTo = value; return this; } public BigDecimal getFxShipUnitCostExGSTGreaterThan() { return FXShipUnitCostExGSTGreaterThan; } public V_ShipmentQuery setFxShipUnitCostExGSTGreaterThan(BigDecimal value) { this.FXShipUnitCostExGSTGreaterThan = value; return this; } public BigDecimal getFxShipUnitCostExGSTLessThan() { return FXShipUnitCostExGSTLessThan; } public V_ShipmentQuery setFxShipUnitCostExGSTLessThan(BigDecimal value) { this.FXShipUnitCostExGSTLessThan = value; return this; } public BigDecimal getFxShipUnitCostExGSTLessThanOrEqualTo() { return FXShipUnitCostExGSTLessThanOrEqualTo; } public V_ShipmentQuery setFxShipUnitCostExGSTLessThanOrEqualTo(BigDecimal value) { this.FXShipUnitCostExGSTLessThanOrEqualTo = value; return this; } public BigDecimal getFxShipUnitCostExGSTNotEqualTo() { return FXShipUnitCostExGSTNotEqualTo; } public V_ShipmentQuery setFxShipUnitCostExGSTNotEqualTo(BigDecimal value) { this.FXShipUnitCostExGSTNotEqualTo = value; return this; } public ArrayList getFxShipUnitCostExGSTBetween() { return FXShipUnitCostExGSTBetween; } public V_ShipmentQuery setFxShipUnitCostExGSTBetween(ArrayList value) { this.FXShipUnitCostExGSTBetween = value; return this; } public ArrayList getFxShipUnitCostExGSTIn() { return FXShipUnitCostExGSTIn; } public V_ShipmentQuery setFxShipUnitCostExGSTIn(ArrayList value) { this.FXShipUnitCostExGSTIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class V_Shipment_BOQuery extends QueryDb implements IReturn> { public String InvoiceNo = null; public String InvoiceNoStartsWith = null; public String InvoiceNoEndsWith = null; public String InvoiceNoContains = null; public String InvoiceNoLike = null; public ArrayList InvoiceNoBetween = null; public ArrayList InvoiceNoIn = null; public Date RecordDate = null; public Date RecordDateGreaterThanOrEqualTo = null; public Date RecordDateGreaterThan = null; public Date RecordDateLessThan = null; public Date RecordDateLessThanOrEqualTo = null; public Date RecordDateNotEqualTo = null; public ArrayList RecordDateBetween = null; public ArrayList RecordDateIn = null; public String OrderNo = null; public String OrderNoStartsWith = null; public String OrderNoEndsWith = null; public String OrderNoContains = null; public String OrderNoLike = null; public ArrayList OrderNoBetween = null; public ArrayList OrderNoIn = null; public String DebtorID = null; public String DebtorIDStartsWith = null; public String DebtorIDEndsWith = null; public String DebtorIDContains = null; public String DebtorIDLike = null; public ArrayList DebtorIDBetween = null; public ArrayList DebtorIDIn = null; public Short HistoryNo = null; public Short HistoryNoGreaterThanOrEqualTo = null; public Short HistoryNoGreaterThan = null; public Short HistoryNoLessThan = null; public Short HistoryNoLessThanOrEqualTo = null; public Short HistoryNoNotEqualTo = null; public ArrayList HistoryNoBetween = null; public ArrayList HistoryNoIn = null; public String PartNo = null; public String PartNoStartsWith = null; public String PartNoEndsWith = null; public String PartNoContains = null; public String PartNoLike = null; public ArrayList PartNoBetween = null; public ArrayList PartNoIn = null; public String Description = null; public String DescriptionStartsWith = null; public String DescriptionEndsWith = null; public String DescriptionContains = null; public String DescriptionLike = null; public ArrayList DescriptionBetween = null; public ArrayList DescriptionIn = null; public BigDecimal QuantityOrdered = null; public BigDecimal QuantityOrderedGreaterThanOrEqualTo = null; public BigDecimal QuantityOrderedGreaterThan = null; public BigDecimal QuantityOrderedLessThan = null; public BigDecimal QuantityOrderedLessThanOrEqualTo = null; public BigDecimal QuantityOrderedNotEqualTo = null; public ArrayList QuantityOrderedBetween = null; public ArrayList QuantityOrderedIn = null; public BigDecimal QuantityThisDel = null; public BigDecimal QuantityThisDelGreaterThanOrEqualTo = null; public BigDecimal QuantityThisDelGreaterThan = null; public BigDecimal QuantityThisDelLessThan = null; public BigDecimal QuantityThisDelLessThanOrEqualTo = null; public BigDecimal QuantityThisDelNotEqualTo = null; public ArrayList QuantityThisDelBetween = null; public ArrayList QuantityThisDelIn = null; public BigDecimal QuantityBackord = null; public BigDecimal QuantityBackordGreaterThanOrEqualTo = null; public BigDecimal QuantityBackordGreaterThan = null; public BigDecimal QuantityBackordLessThan = null; public BigDecimal QuantityBackordLessThanOrEqualTo = null; public BigDecimal QuantityBackordNotEqualTo = null; public ArrayList QuantityBackordBetween = null; public ArrayList QuantityBackordIn = null; public BigDecimal QuantityPrevDel = null; public BigDecimal QuantityPrevDelGreaterThanOrEqualTo = null; public BigDecimal QuantityPrevDelGreaterThan = null; public BigDecimal QuantityPrevDelLessThan = null; public BigDecimal QuantityPrevDelLessThanOrEqualTo = null; public BigDecimal QuantityPrevDelNotEqualTo = null; public ArrayList QuantityPrevDelBetween = null; public ArrayList QuantityPrevDelIn = null; public BigDecimal ItemPrice = null; public BigDecimal ItemPriceGreaterThanOrEqualTo = null; public BigDecimal ItemPriceGreaterThan = null; public BigDecimal ItemPriceLessThan = null; public BigDecimal ItemPriceLessThanOrEqualTo = null; public BigDecimal ItemPriceNotEqualTo = null; public ArrayList ItemPriceBetween = null; public ArrayList ItemPriceIn = null; public BigDecimal TaxToCharge = null; public BigDecimal TaxToChargeGreaterThanOrEqualTo = null; public BigDecimal TaxToChargeGreaterThan = null; public BigDecimal TaxToChargeLessThan = null; public BigDecimal TaxToChargeLessThanOrEqualTo = null; public BigDecimal TaxToChargeNotEqualTo = null; public ArrayList TaxToChargeBetween = null; public ArrayList TaxToChargeIn = null; public String InvoiceLineID = null; public String InvoiceLineIDStartsWith = null; public String InvoiceLineIDEndsWith = null; public String InvoiceLineIDContains = null; public String InvoiceLineIDLike = null; public ArrayList InvoiceLineIDBetween = null; public ArrayList InvoiceLineIDIn = null; public String RptType = null; public String RptTypeStartsWith = null; public String RptTypeEndsWith = null; public String RptTypeContains = null; public String RptTypeLike = null; public ArrayList RptTypeBetween = null; public ArrayList RptTypeIn = null; public String getInvoiceNo() { return InvoiceNo; } public V_Shipment_BOQuery setInvoiceNo(String value) { this.InvoiceNo = value; return this; } public String getInvoiceNoStartsWith() { return InvoiceNoStartsWith; } public V_Shipment_BOQuery setInvoiceNoStartsWith(String value) { this.InvoiceNoStartsWith = value; return this; } public String getInvoiceNoEndsWith() { return InvoiceNoEndsWith; } public V_Shipment_BOQuery setInvoiceNoEndsWith(String value) { this.InvoiceNoEndsWith = value; return this; } public String getInvoiceNoContains() { return InvoiceNoContains; } public V_Shipment_BOQuery setInvoiceNoContains(String value) { this.InvoiceNoContains = value; return this; } public String getInvoiceNoLike() { return InvoiceNoLike; } public V_Shipment_BOQuery setInvoiceNoLike(String value) { this.InvoiceNoLike = value; return this; } public ArrayList getInvoiceNoBetween() { return InvoiceNoBetween; } public V_Shipment_BOQuery setInvoiceNoBetween(ArrayList value) { this.InvoiceNoBetween = value; return this; } public ArrayList getInvoiceNoIn() { return InvoiceNoIn; } public V_Shipment_BOQuery setInvoiceNoIn(ArrayList value) { this.InvoiceNoIn = value; return this; } public Date getRecordDate() { return RecordDate; } public V_Shipment_BOQuery setRecordDate(Date value) { this.RecordDate = value; return this; } public Date getRecordDateGreaterThanOrEqualTo() { return RecordDateGreaterThanOrEqualTo; } public V_Shipment_BOQuery setRecordDateGreaterThanOrEqualTo(Date value) { this.RecordDateGreaterThanOrEqualTo = value; return this; } public Date getRecordDateGreaterThan() { return RecordDateGreaterThan; } public V_Shipment_BOQuery setRecordDateGreaterThan(Date value) { this.RecordDateGreaterThan = value; return this; } public Date getRecordDateLessThan() { return RecordDateLessThan; } public V_Shipment_BOQuery setRecordDateLessThan(Date value) { this.RecordDateLessThan = value; return this; } public Date getRecordDateLessThanOrEqualTo() { return RecordDateLessThanOrEqualTo; } public V_Shipment_BOQuery setRecordDateLessThanOrEqualTo(Date value) { this.RecordDateLessThanOrEqualTo = value; return this; } public Date getRecordDateNotEqualTo() { return RecordDateNotEqualTo; } public V_Shipment_BOQuery setRecordDateNotEqualTo(Date value) { this.RecordDateNotEqualTo = value; return this; } public ArrayList getRecordDateBetween() { return RecordDateBetween; } public V_Shipment_BOQuery setRecordDateBetween(ArrayList value) { this.RecordDateBetween = value; return this; } public ArrayList getRecordDateIn() { return RecordDateIn; } public V_Shipment_BOQuery setRecordDateIn(ArrayList value) { this.RecordDateIn = value; return this; } public String getOrderNo() { return OrderNo; } public V_Shipment_BOQuery setOrderNo(String value) { this.OrderNo = value; return this; } public String getOrderNoStartsWith() { return OrderNoStartsWith; } public V_Shipment_BOQuery setOrderNoStartsWith(String value) { this.OrderNoStartsWith = value; return this; } public String getOrderNoEndsWith() { return OrderNoEndsWith; } public V_Shipment_BOQuery setOrderNoEndsWith(String value) { this.OrderNoEndsWith = value; return this; } public String getOrderNoContains() { return OrderNoContains; } public V_Shipment_BOQuery setOrderNoContains(String value) { this.OrderNoContains = value; return this; } public String getOrderNoLike() { return OrderNoLike; } public V_Shipment_BOQuery setOrderNoLike(String value) { this.OrderNoLike = value; return this; } public ArrayList getOrderNoBetween() { return OrderNoBetween; } public V_Shipment_BOQuery setOrderNoBetween(ArrayList value) { this.OrderNoBetween = value; return this; } public ArrayList getOrderNoIn() { return OrderNoIn; } public V_Shipment_BOQuery setOrderNoIn(ArrayList value) { this.OrderNoIn = value; return this; } public String getDebtorID() { return DebtorID; } public V_Shipment_BOQuery setDebtorID(String value) { this.DebtorID = value; return this; } public String getDebtorIDStartsWith() { return DebtorIDStartsWith; } public V_Shipment_BOQuery setDebtorIDStartsWith(String value) { this.DebtorIDStartsWith = value; return this; } public String getDebtorIDEndsWith() { return DebtorIDEndsWith; } public V_Shipment_BOQuery setDebtorIDEndsWith(String value) { this.DebtorIDEndsWith = value; return this; } public String getDebtorIDContains() { return DebtorIDContains; } public V_Shipment_BOQuery setDebtorIDContains(String value) { this.DebtorIDContains = value; return this; } public String getDebtorIDLike() { return DebtorIDLike; } public V_Shipment_BOQuery setDebtorIDLike(String value) { this.DebtorIDLike = value; return this; } public ArrayList getDebtorIDBetween() { return DebtorIDBetween; } public V_Shipment_BOQuery setDebtorIDBetween(ArrayList value) { this.DebtorIDBetween = value; return this; } public ArrayList getDebtorIDIn() { return DebtorIDIn; } public V_Shipment_BOQuery setDebtorIDIn(ArrayList value) { this.DebtorIDIn = value; return this; } public Short getHistoryNo() { return HistoryNo; } public V_Shipment_BOQuery setHistoryNo(Short value) { this.HistoryNo = value; return this; } public Short getHistoryNoGreaterThanOrEqualTo() { return HistoryNoGreaterThanOrEqualTo; } public V_Shipment_BOQuery setHistoryNoGreaterThanOrEqualTo(Short value) { this.HistoryNoGreaterThanOrEqualTo = value; return this; } public Short getHistoryNoGreaterThan() { return HistoryNoGreaterThan; } public V_Shipment_BOQuery setHistoryNoGreaterThan(Short value) { this.HistoryNoGreaterThan = value; return this; } public Short getHistoryNoLessThan() { return HistoryNoLessThan; } public V_Shipment_BOQuery setHistoryNoLessThan(Short value) { this.HistoryNoLessThan = value; return this; } public Short getHistoryNoLessThanOrEqualTo() { return HistoryNoLessThanOrEqualTo; } public V_Shipment_BOQuery setHistoryNoLessThanOrEqualTo(Short value) { this.HistoryNoLessThanOrEqualTo = value; return this; } public Short getHistoryNoNotEqualTo() { return HistoryNoNotEqualTo; } public V_Shipment_BOQuery setHistoryNoNotEqualTo(Short value) { this.HistoryNoNotEqualTo = value; return this; } public ArrayList getHistoryNoBetween() { return HistoryNoBetween; } public V_Shipment_BOQuery setHistoryNoBetween(ArrayList value) { this.HistoryNoBetween = value; return this; } public ArrayList getHistoryNoIn() { return HistoryNoIn; } public V_Shipment_BOQuery setHistoryNoIn(ArrayList value) { this.HistoryNoIn = value; return this; } public String getPartNo() { return PartNo; } public V_Shipment_BOQuery setPartNo(String value) { this.PartNo = value; return this; } public String getPartNoStartsWith() { return PartNoStartsWith; } public V_Shipment_BOQuery setPartNoStartsWith(String value) { this.PartNoStartsWith = value; return this; } public String getPartNoEndsWith() { return PartNoEndsWith; } public V_Shipment_BOQuery setPartNoEndsWith(String value) { this.PartNoEndsWith = value; return this; } public String getPartNoContains() { return PartNoContains; } public V_Shipment_BOQuery setPartNoContains(String value) { this.PartNoContains = value; return this; } public String getPartNoLike() { return PartNoLike; } public V_Shipment_BOQuery setPartNoLike(String value) { this.PartNoLike = value; return this; } public ArrayList getPartNoBetween() { return PartNoBetween; } public V_Shipment_BOQuery setPartNoBetween(ArrayList value) { this.PartNoBetween = value; return this; } public ArrayList getPartNoIn() { return PartNoIn; } public V_Shipment_BOQuery setPartNoIn(ArrayList value) { this.PartNoIn = value; return this; } public String getDescription() { return Description; } public V_Shipment_BOQuery setDescription(String value) { this.Description = value; return this; } public String getDescriptionStartsWith() { return DescriptionStartsWith; } public V_Shipment_BOQuery setDescriptionStartsWith(String value) { this.DescriptionStartsWith = value; return this; } public String getDescriptionEndsWith() { return DescriptionEndsWith; } public V_Shipment_BOQuery setDescriptionEndsWith(String value) { this.DescriptionEndsWith = value; return this; } public String getDescriptionContains() { return DescriptionContains; } public V_Shipment_BOQuery setDescriptionContains(String value) { this.DescriptionContains = value; return this; } public String getDescriptionLike() { return DescriptionLike; } public V_Shipment_BOQuery setDescriptionLike(String value) { this.DescriptionLike = value; return this; } public ArrayList getDescriptionBetween() { return DescriptionBetween; } public V_Shipment_BOQuery setDescriptionBetween(ArrayList value) { this.DescriptionBetween = value; return this; } public ArrayList getDescriptionIn() { return DescriptionIn; } public V_Shipment_BOQuery setDescriptionIn(ArrayList value) { this.DescriptionIn = value; return this; } public BigDecimal getQuantityOrdered() { return QuantityOrdered; } public V_Shipment_BOQuery setQuantityOrdered(BigDecimal value) { this.QuantityOrdered = value; return this; } public BigDecimal getQuantityOrderedGreaterThanOrEqualTo() { return QuantityOrderedGreaterThanOrEqualTo; } public V_Shipment_BOQuery setQuantityOrderedGreaterThanOrEqualTo(BigDecimal value) { this.QuantityOrderedGreaterThanOrEqualTo = value; return this; } public BigDecimal getQuantityOrderedGreaterThan() { return QuantityOrderedGreaterThan; } public V_Shipment_BOQuery setQuantityOrderedGreaterThan(BigDecimal value) { this.QuantityOrderedGreaterThan = value; return this; } public BigDecimal getQuantityOrderedLessThan() { return QuantityOrderedLessThan; } public V_Shipment_BOQuery setQuantityOrderedLessThan(BigDecimal value) { this.QuantityOrderedLessThan = value; return this; } public BigDecimal getQuantityOrderedLessThanOrEqualTo() { return QuantityOrderedLessThanOrEqualTo; } public V_Shipment_BOQuery setQuantityOrderedLessThanOrEqualTo(BigDecimal value) { this.QuantityOrderedLessThanOrEqualTo = value; return this; } public BigDecimal getQuantityOrderedNotEqualTo() { return QuantityOrderedNotEqualTo; } public V_Shipment_BOQuery setQuantityOrderedNotEqualTo(BigDecimal value) { this.QuantityOrderedNotEqualTo = value; return this; } public ArrayList getQuantityOrderedBetween() { return QuantityOrderedBetween; } public V_Shipment_BOQuery setQuantityOrderedBetween(ArrayList value) { this.QuantityOrderedBetween = value; return this; } public ArrayList getQuantityOrderedIn() { return QuantityOrderedIn; } public V_Shipment_BOQuery setQuantityOrderedIn(ArrayList value) { this.QuantityOrderedIn = value; return this; } public BigDecimal getQuantityThisDel() { return QuantityThisDel; } public V_Shipment_BOQuery setQuantityThisDel(BigDecimal value) { this.QuantityThisDel = value; return this; } public BigDecimal getQuantityThisDelGreaterThanOrEqualTo() { return QuantityThisDelGreaterThanOrEqualTo; } public V_Shipment_BOQuery setQuantityThisDelGreaterThanOrEqualTo(BigDecimal value) { this.QuantityThisDelGreaterThanOrEqualTo = value; return this; } public BigDecimal getQuantityThisDelGreaterThan() { return QuantityThisDelGreaterThan; } public V_Shipment_BOQuery setQuantityThisDelGreaterThan(BigDecimal value) { this.QuantityThisDelGreaterThan = value; return this; } public BigDecimal getQuantityThisDelLessThan() { return QuantityThisDelLessThan; } public V_Shipment_BOQuery setQuantityThisDelLessThan(BigDecimal value) { this.QuantityThisDelLessThan = value; return this; } public BigDecimal getQuantityThisDelLessThanOrEqualTo() { return QuantityThisDelLessThanOrEqualTo; } public V_Shipment_BOQuery setQuantityThisDelLessThanOrEqualTo(BigDecimal value) { this.QuantityThisDelLessThanOrEqualTo = value; return this; } public BigDecimal getQuantityThisDelNotEqualTo() { return QuantityThisDelNotEqualTo; } public V_Shipment_BOQuery setQuantityThisDelNotEqualTo(BigDecimal value) { this.QuantityThisDelNotEqualTo = value; return this; } public ArrayList getQuantityThisDelBetween() { return QuantityThisDelBetween; } public V_Shipment_BOQuery setQuantityThisDelBetween(ArrayList value) { this.QuantityThisDelBetween = value; return this; } public ArrayList getQuantityThisDelIn() { return QuantityThisDelIn; } public V_Shipment_BOQuery setQuantityThisDelIn(ArrayList value) { this.QuantityThisDelIn = value; return this; } public BigDecimal getQuantityBackord() { return QuantityBackord; } public V_Shipment_BOQuery setQuantityBackord(BigDecimal value) { this.QuantityBackord = value; return this; } public BigDecimal getQuantityBackordGreaterThanOrEqualTo() { return QuantityBackordGreaterThanOrEqualTo; } public V_Shipment_BOQuery setQuantityBackordGreaterThanOrEqualTo(BigDecimal value) { this.QuantityBackordGreaterThanOrEqualTo = value; return this; } public BigDecimal getQuantityBackordGreaterThan() { return QuantityBackordGreaterThan; } public V_Shipment_BOQuery setQuantityBackordGreaterThan(BigDecimal value) { this.QuantityBackordGreaterThan = value; return this; } public BigDecimal getQuantityBackordLessThan() { return QuantityBackordLessThan; } public V_Shipment_BOQuery setQuantityBackordLessThan(BigDecimal value) { this.QuantityBackordLessThan = value; return this; } public BigDecimal getQuantityBackordLessThanOrEqualTo() { return QuantityBackordLessThanOrEqualTo; } public V_Shipment_BOQuery setQuantityBackordLessThanOrEqualTo(BigDecimal value) { this.QuantityBackordLessThanOrEqualTo = value; return this; } public BigDecimal getQuantityBackordNotEqualTo() { return QuantityBackordNotEqualTo; } public V_Shipment_BOQuery setQuantityBackordNotEqualTo(BigDecimal value) { this.QuantityBackordNotEqualTo = value; return this; } public ArrayList getQuantityBackordBetween() { return QuantityBackordBetween; } public V_Shipment_BOQuery setQuantityBackordBetween(ArrayList value) { this.QuantityBackordBetween = value; return this; } public ArrayList getQuantityBackordIn() { return QuantityBackordIn; } public V_Shipment_BOQuery setQuantityBackordIn(ArrayList value) { this.QuantityBackordIn = value; return this; } public BigDecimal getQuantityPrevDel() { return QuantityPrevDel; } public V_Shipment_BOQuery setQuantityPrevDel(BigDecimal value) { this.QuantityPrevDel = value; return this; } public BigDecimal getQuantityPrevDelGreaterThanOrEqualTo() { return QuantityPrevDelGreaterThanOrEqualTo; } public V_Shipment_BOQuery setQuantityPrevDelGreaterThanOrEqualTo(BigDecimal value) { this.QuantityPrevDelGreaterThanOrEqualTo = value; return this; } public BigDecimal getQuantityPrevDelGreaterThan() { return QuantityPrevDelGreaterThan; } public V_Shipment_BOQuery setQuantityPrevDelGreaterThan(BigDecimal value) { this.QuantityPrevDelGreaterThan = value; return this; } public BigDecimal getQuantityPrevDelLessThan() { return QuantityPrevDelLessThan; } public V_Shipment_BOQuery setQuantityPrevDelLessThan(BigDecimal value) { this.QuantityPrevDelLessThan = value; return this; } public BigDecimal getQuantityPrevDelLessThanOrEqualTo() { return QuantityPrevDelLessThanOrEqualTo; } public V_Shipment_BOQuery setQuantityPrevDelLessThanOrEqualTo(BigDecimal value) { this.QuantityPrevDelLessThanOrEqualTo = value; return this; } public BigDecimal getQuantityPrevDelNotEqualTo() { return QuantityPrevDelNotEqualTo; } public V_Shipment_BOQuery setQuantityPrevDelNotEqualTo(BigDecimal value) { this.QuantityPrevDelNotEqualTo = value; return this; } public ArrayList getQuantityPrevDelBetween() { return QuantityPrevDelBetween; } public V_Shipment_BOQuery setQuantityPrevDelBetween(ArrayList value) { this.QuantityPrevDelBetween = value; return this; } public ArrayList getQuantityPrevDelIn() { return QuantityPrevDelIn; } public V_Shipment_BOQuery setQuantityPrevDelIn(ArrayList value) { this.QuantityPrevDelIn = value; return this; } public BigDecimal getItemPrice() { return ItemPrice; } public V_Shipment_BOQuery setItemPrice(BigDecimal value) { this.ItemPrice = value; return this; } public BigDecimal getItemPriceGreaterThanOrEqualTo() { return ItemPriceGreaterThanOrEqualTo; } public V_Shipment_BOQuery setItemPriceGreaterThanOrEqualTo(BigDecimal value) { this.ItemPriceGreaterThanOrEqualTo = value; return this; } public BigDecimal getItemPriceGreaterThan() { return ItemPriceGreaterThan; } public V_Shipment_BOQuery setItemPriceGreaterThan(BigDecimal value) { this.ItemPriceGreaterThan = value; return this; } public BigDecimal getItemPriceLessThan() { return ItemPriceLessThan; } public V_Shipment_BOQuery setItemPriceLessThan(BigDecimal value) { this.ItemPriceLessThan = value; return this; } public BigDecimal getItemPriceLessThanOrEqualTo() { return ItemPriceLessThanOrEqualTo; } public V_Shipment_BOQuery setItemPriceLessThanOrEqualTo(BigDecimal value) { this.ItemPriceLessThanOrEqualTo = value; return this; } public BigDecimal getItemPriceNotEqualTo() { return ItemPriceNotEqualTo; } public V_Shipment_BOQuery setItemPriceNotEqualTo(BigDecimal value) { this.ItemPriceNotEqualTo = value; return this; } public ArrayList getItemPriceBetween() { return ItemPriceBetween; } public V_Shipment_BOQuery setItemPriceBetween(ArrayList value) { this.ItemPriceBetween = value; return this; } public ArrayList getItemPriceIn() { return ItemPriceIn; } public V_Shipment_BOQuery setItemPriceIn(ArrayList value) { this.ItemPriceIn = value; return this; } public BigDecimal getTaxToCharge() { return TaxToCharge; } public V_Shipment_BOQuery setTaxToCharge(BigDecimal value) { this.TaxToCharge = value; return this; } public BigDecimal getTaxToChargeGreaterThanOrEqualTo() { return TaxToChargeGreaterThanOrEqualTo; } public V_Shipment_BOQuery setTaxToChargeGreaterThanOrEqualTo(BigDecimal value) { this.TaxToChargeGreaterThanOrEqualTo = value; return this; } public BigDecimal getTaxToChargeGreaterThan() { return TaxToChargeGreaterThan; } public V_Shipment_BOQuery setTaxToChargeGreaterThan(BigDecimal value) { this.TaxToChargeGreaterThan = value; return this; } public BigDecimal getTaxToChargeLessThan() { return TaxToChargeLessThan; } public V_Shipment_BOQuery setTaxToChargeLessThan(BigDecimal value) { this.TaxToChargeLessThan = value; return this; } public BigDecimal getTaxToChargeLessThanOrEqualTo() { return TaxToChargeLessThanOrEqualTo; } public V_Shipment_BOQuery setTaxToChargeLessThanOrEqualTo(BigDecimal value) { this.TaxToChargeLessThanOrEqualTo = value; return this; } public BigDecimal getTaxToChargeNotEqualTo() { return TaxToChargeNotEqualTo; } public V_Shipment_BOQuery setTaxToChargeNotEqualTo(BigDecimal value) { this.TaxToChargeNotEqualTo = value; return this; } public ArrayList getTaxToChargeBetween() { return TaxToChargeBetween; } public V_Shipment_BOQuery setTaxToChargeBetween(ArrayList value) { this.TaxToChargeBetween = value; return this; } public ArrayList getTaxToChargeIn() { return TaxToChargeIn; } public V_Shipment_BOQuery setTaxToChargeIn(ArrayList value) { this.TaxToChargeIn = value; return this; } public String getInvoiceLineID() { return InvoiceLineID; } public V_Shipment_BOQuery setInvoiceLineID(String value) { this.InvoiceLineID = value; return this; } public String getInvoiceLineIDStartsWith() { return InvoiceLineIDStartsWith; } public V_Shipment_BOQuery setInvoiceLineIDStartsWith(String value) { this.InvoiceLineIDStartsWith = value; return this; } public String getInvoiceLineIDEndsWith() { return InvoiceLineIDEndsWith; } public V_Shipment_BOQuery setInvoiceLineIDEndsWith(String value) { this.InvoiceLineIDEndsWith = value; return this; } public String getInvoiceLineIDContains() { return InvoiceLineIDContains; } public V_Shipment_BOQuery setInvoiceLineIDContains(String value) { this.InvoiceLineIDContains = value; return this; } public String getInvoiceLineIDLike() { return InvoiceLineIDLike; } public V_Shipment_BOQuery setInvoiceLineIDLike(String value) { this.InvoiceLineIDLike = value; return this; } public ArrayList getInvoiceLineIDBetween() { return InvoiceLineIDBetween; } public V_Shipment_BOQuery setInvoiceLineIDBetween(ArrayList value) { this.InvoiceLineIDBetween = value; return this; } public ArrayList getInvoiceLineIDIn() { return InvoiceLineIDIn; } public V_Shipment_BOQuery setInvoiceLineIDIn(ArrayList value) { this.InvoiceLineIDIn = value; return this; } public String getRptType() { return RptType; } public V_Shipment_BOQuery setRptType(String value) { this.RptType = value; return this; } public String getRptTypeStartsWith() { return RptTypeStartsWith; } public V_Shipment_BOQuery setRptTypeStartsWith(String value) { this.RptTypeStartsWith = value; return this; } public String getRptTypeEndsWith() { return RptTypeEndsWith; } public V_Shipment_BOQuery setRptTypeEndsWith(String value) { this.RptTypeEndsWith = value; return this; } public String getRptTypeContains() { return RptTypeContains; } public V_Shipment_BOQuery setRptTypeContains(String value) { this.RptTypeContains = value; return this; } public String getRptTypeLike() { return RptTypeLike; } public V_Shipment_BOQuery setRptTypeLike(String value) { this.RptTypeLike = value; return this; } public ArrayList getRptTypeBetween() { return RptTypeBetween; } public V_Shipment_BOQuery setRptTypeBetween(ArrayList value) { this.RptTypeBetween = value; return this; } public ArrayList getRptTypeIn() { return RptTypeIn; } public V_Shipment_BOQuery setRptTypeIn(ArrayList value) { this.RptTypeIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class V_ShipmentReconciliationQuery extends QueryDb implements IReturn> { public String SourceID = null; public String SourceIDStartsWith = null; public String SourceIDEndsWith = null; public String SourceIDContains = null; public String SourceIDLike = null; public ArrayList SourceIDBetween = null; public ArrayList SourceIDIn = null; public String ShipmentNo = null; public String ShipmentNoStartsWith = null; public String ShipmentNoEndsWith = null; public String ShipmentNoContains = null; public String ShipmentNoLike = null; public ArrayList ShipmentNoBetween = null; public ArrayList ShipmentNoIn = null; public String ImportCostClearingAccountID = null; public String ImportCostClearingAccountIDStartsWith = null; public String ImportCostClearingAccountIDEndsWith = null; public String ImportCostClearingAccountIDContains = null; public String ImportCostClearingAccountIDLike = null; public ArrayList ImportCostClearingAccountIDBetween = null; public ArrayList ImportCostClearingAccountIDIn = null; public String getSourceID() { return SourceID; } public V_ShipmentReconciliationQuery setSourceID(String value) { this.SourceID = value; return this; } public String getSourceIDStartsWith() { return SourceIDStartsWith; } public V_ShipmentReconciliationQuery setSourceIDStartsWith(String value) { this.SourceIDStartsWith = value; return this; } public String getSourceIDEndsWith() { return SourceIDEndsWith; } public V_ShipmentReconciliationQuery setSourceIDEndsWith(String value) { this.SourceIDEndsWith = value; return this; } public String getSourceIDContains() { return SourceIDContains; } public V_ShipmentReconciliationQuery setSourceIDContains(String value) { this.SourceIDContains = value; return this; } public String getSourceIDLike() { return SourceIDLike; } public V_ShipmentReconciliationQuery setSourceIDLike(String value) { this.SourceIDLike = value; return this; } public ArrayList getSourceIDBetween() { return SourceIDBetween; } public V_ShipmentReconciliationQuery setSourceIDBetween(ArrayList value) { this.SourceIDBetween = value; return this; } public ArrayList getSourceIDIn() { return SourceIDIn; } public V_ShipmentReconciliationQuery setSourceIDIn(ArrayList value) { this.SourceIDIn = value; return this; } public String getShipmentNo() { return ShipmentNo; } public V_ShipmentReconciliationQuery setShipmentNo(String value) { this.ShipmentNo = value; return this; } public String getShipmentNoStartsWith() { return ShipmentNoStartsWith; } public V_ShipmentReconciliationQuery setShipmentNoStartsWith(String value) { this.ShipmentNoStartsWith = value; return this; } public String getShipmentNoEndsWith() { return ShipmentNoEndsWith; } public V_ShipmentReconciliationQuery setShipmentNoEndsWith(String value) { this.ShipmentNoEndsWith = value; return this; } public String getShipmentNoContains() { return ShipmentNoContains; } public V_ShipmentReconciliationQuery setShipmentNoContains(String value) { this.ShipmentNoContains = value; return this; } public String getShipmentNoLike() { return ShipmentNoLike; } public V_ShipmentReconciliationQuery setShipmentNoLike(String value) { this.ShipmentNoLike = value; return this; } public ArrayList getShipmentNoBetween() { return ShipmentNoBetween; } public V_ShipmentReconciliationQuery setShipmentNoBetween(ArrayList value) { this.ShipmentNoBetween = value; return this; } public ArrayList getShipmentNoIn() { return ShipmentNoIn; } public V_ShipmentReconciliationQuery setShipmentNoIn(ArrayList value) { this.ShipmentNoIn = value; return this; } public String getImportCostClearingAccountID() { return ImportCostClearingAccountID; } public V_ShipmentReconciliationQuery setImportCostClearingAccountID(String value) { this.ImportCostClearingAccountID = value; return this; } public String getImportCostClearingAccountIDStartsWith() { return ImportCostClearingAccountIDStartsWith; } public V_ShipmentReconciliationQuery setImportCostClearingAccountIDStartsWith(String value) { this.ImportCostClearingAccountIDStartsWith = value; return this; } public String getImportCostClearingAccountIDEndsWith() { return ImportCostClearingAccountIDEndsWith; } public V_ShipmentReconciliationQuery setImportCostClearingAccountIDEndsWith(String value) { this.ImportCostClearingAccountIDEndsWith = value; return this; } public String getImportCostClearingAccountIDContains() { return ImportCostClearingAccountIDContains; } public V_ShipmentReconciliationQuery setImportCostClearingAccountIDContains(String value) { this.ImportCostClearingAccountIDContains = value; return this; } public String getImportCostClearingAccountIDLike() { return ImportCostClearingAccountIDLike; } public V_ShipmentReconciliationQuery setImportCostClearingAccountIDLike(String value) { this.ImportCostClearingAccountIDLike = value; return this; } public ArrayList getImportCostClearingAccountIDBetween() { return ImportCostClearingAccountIDBetween; } public V_ShipmentReconciliationQuery setImportCostClearingAccountIDBetween(ArrayList value) { this.ImportCostClearingAccountIDBetween = value; return this; } public ArrayList getImportCostClearingAccountIDIn() { return ImportCostClearingAccountIDIn; } public V_ShipmentReconciliationQuery setImportCostClearingAccountIDIn(ArrayList value) { this.ImportCostClearingAccountIDIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class v_StaffQuery extends QueryDb implements IReturn> { public String StaffID = null; public String StaffIDStartsWith = null; public String StaffIDEndsWith = null; public String StaffIDContains = null; public String StaffIDLike = null; public ArrayList StaffIDBetween = null; public ArrayList StaffIDIn = null; public String FullName = null; public String FullNameStartsWith = null; public String FullNameEndsWith = null; public String FullNameContains = null; public String FullNameLike = null; public ArrayList FullNameBetween = null; public ArrayList FullNameIn = null; public String getStaffID() { return StaffID; } public v_StaffQuery setStaffID(String value) { this.StaffID = value; return this; } public String getStaffIDStartsWith() { return StaffIDStartsWith; } public v_StaffQuery setStaffIDStartsWith(String value) { this.StaffIDStartsWith = value; return this; } public String getStaffIDEndsWith() { return StaffIDEndsWith; } public v_StaffQuery setStaffIDEndsWith(String value) { this.StaffIDEndsWith = value; return this; } public String getStaffIDContains() { return StaffIDContains; } public v_StaffQuery setStaffIDContains(String value) { this.StaffIDContains = value; return this; } public String getStaffIDLike() { return StaffIDLike; } public v_StaffQuery setStaffIDLike(String value) { this.StaffIDLike = value; return this; } public ArrayList getStaffIDBetween() { return StaffIDBetween; } public v_StaffQuery setStaffIDBetween(ArrayList value) { this.StaffIDBetween = value; return this; } public ArrayList getStaffIDIn() { return StaffIDIn; } public v_StaffQuery setStaffIDIn(ArrayList value) { this.StaffIDIn = value; return this; } public String getFullName() { return FullName; } public v_StaffQuery setFullName(String value) { this.FullName = value; return this; } public String getFullNameStartsWith() { return FullNameStartsWith; } public v_StaffQuery setFullNameStartsWith(String value) { this.FullNameStartsWith = value; return this; } public String getFullNameEndsWith() { return FullNameEndsWith; } public v_StaffQuery setFullNameEndsWith(String value) { this.FullNameEndsWith = value; return this; } public String getFullNameContains() { return FullNameContains; } public v_StaffQuery setFullNameContains(String value) { this.FullNameContains = value; return this; } public String getFullNameLike() { return FullNameLike; } public v_StaffQuery setFullNameLike(String value) { this.FullNameLike = value; return this; } public ArrayList getFullNameBetween() { return FullNameBetween; } public v_StaffQuery setFullNameBetween(ArrayList value) { this.FullNameBetween = value; return this; } public ArrayList getFullNameIn() { return FullNameIn; } public v_StaffQuery setFullNameIn(ArrayList value) { this.FullNameIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class V_STK_LineDetailsQuery extends QueryDb implements IReturn> { public String StockTakeDetailsID = null; public String StockTakeDetailsIDStartsWith = null; public String StockTakeDetailsIDEndsWith = null; public String StockTakeDetailsIDContains = null; public String StockTakeDetailsIDLike = null; public ArrayList StockTakeDetailsIDBetween = null; public ArrayList StockTakeDetailsIDIn = null; public String StockTakeLineID = null; public String StockTakeLineIDStartsWith = null; public String StockTakeLineIDEndsWith = null; public String StockTakeLineIDContains = null; public String StockTakeLineIDLike = null; public ArrayList StockTakeLineIDBetween = null; public ArrayList StockTakeLineIDIn = null; public String SerialNumber = null; public String SerialNumberStartsWith = null; public String SerialNumberEndsWith = null; public String SerialNumberContains = null; public String SerialNumberLike = null; public ArrayList SerialNumberBetween = null; public ArrayList SerialNumberIn = null; public String LinkID = null; public String LinkIDStartsWith = null; public String LinkIDEndsWith = null; public String LinkIDContains = null; public String LinkIDLike = null; public ArrayList LinkIDBetween = null; public ArrayList LinkIDIn = null; public BigDecimal QtyFound = null; public BigDecimal QtyFoundGreaterThanOrEqualTo = null; public BigDecimal QtyFoundGreaterThan = null; public BigDecimal QtyFoundLessThan = null; public BigDecimal QtyFoundLessThanOrEqualTo = null; public BigDecimal QtyFoundNotEqualTo = null; public ArrayList QtyFoundBetween = null; public ArrayList QtyFoundIn = null; public BigDecimal Qty = null; public BigDecimal QtyGreaterThanOrEqualTo = null; public BigDecimal QtyGreaterThan = null; public BigDecimal QtyLessThan = null; public BigDecimal QtyLessThanOrEqualTo = null; public BigDecimal QtyNotEqualTo = null; public ArrayList QtyBetween = null; public ArrayList QtyIn = null; public Integer Inc_Dec = null; public Integer Inc_DecGreaterThanOrEqualTo = null; public Integer Inc_DecGreaterThan = null; public Integer Inc_DecLessThan = null; public Integer Inc_DecLessThanOrEqualTo = null; public Integer Inc_DecNotEqualTo = null; public ArrayList Inc_DecBetween = null; public ArrayList Inc_DecIn = null; public BigDecimal Cost = null; public BigDecimal CostGreaterThanOrEqualTo = null; public BigDecimal CostGreaterThan = null; public BigDecimal CostLessThan = null; public BigDecimal CostLessThanOrEqualTo = null; public BigDecimal CostNotEqualTo = null; public ArrayList CostBetween = null; public ArrayList CostIn = null; public Date ExpiryDate = null; public Date ExpiryDateGreaterThanOrEqualTo = null; public Date ExpiryDateGreaterThan = null; public Date ExpiryDateLessThan = null; public Date ExpiryDateLessThanOrEqualTo = null; public Date ExpiryDateNotEqualTo = null; public ArrayList ExpiryDateBetween = null; public ArrayList ExpiryDateIn = null; public String BinLocation = null; public String BinLocationStartsWith = null; public String BinLocationEndsWith = null; public String BinLocationContains = null; public String BinLocationLike = null; public ArrayList BinLocationBetween = null; public ArrayList BinLocationIn = null; public String getStockTakeDetailsID() { return StockTakeDetailsID; } public V_STK_LineDetailsQuery setStockTakeDetailsID(String value) { this.StockTakeDetailsID = value; return this; } public String getStockTakeDetailsIDStartsWith() { return StockTakeDetailsIDStartsWith; } public V_STK_LineDetailsQuery setStockTakeDetailsIDStartsWith(String value) { this.StockTakeDetailsIDStartsWith = value; return this; } public String getStockTakeDetailsIDEndsWith() { return StockTakeDetailsIDEndsWith; } public V_STK_LineDetailsQuery setStockTakeDetailsIDEndsWith(String value) { this.StockTakeDetailsIDEndsWith = value; return this; } public String getStockTakeDetailsIDContains() { return StockTakeDetailsIDContains; } public V_STK_LineDetailsQuery setStockTakeDetailsIDContains(String value) { this.StockTakeDetailsIDContains = value; return this; } public String getStockTakeDetailsIDLike() { return StockTakeDetailsIDLike; } public V_STK_LineDetailsQuery setStockTakeDetailsIDLike(String value) { this.StockTakeDetailsIDLike = value; return this; } public ArrayList getStockTakeDetailsIDBetween() { return StockTakeDetailsIDBetween; } public V_STK_LineDetailsQuery setStockTakeDetailsIDBetween(ArrayList value) { this.StockTakeDetailsIDBetween = value; return this; } public ArrayList getStockTakeDetailsIDIn() { return StockTakeDetailsIDIn; } public V_STK_LineDetailsQuery setStockTakeDetailsIDIn(ArrayList value) { this.StockTakeDetailsIDIn = value; return this; } public String getStockTakeLineID() { return StockTakeLineID; } public V_STK_LineDetailsQuery setStockTakeLineID(String value) { this.StockTakeLineID = value; return this; } public String getStockTakeLineIDStartsWith() { return StockTakeLineIDStartsWith; } public V_STK_LineDetailsQuery setStockTakeLineIDStartsWith(String value) { this.StockTakeLineIDStartsWith = value; return this; } public String getStockTakeLineIDEndsWith() { return StockTakeLineIDEndsWith; } public V_STK_LineDetailsQuery setStockTakeLineIDEndsWith(String value) { this.StockTakeLineIDEndsWith = value; return this; } public String getStockTakeLineIDContains() { return StockTakeLineIDContains; } public V_STK_LineDetailsQuery setStockTakeLineIDContains(String value) { this.StockTakeLineIDContains = value; return this; } public String getStockTakeLineIDLike() { return StockTakeLineIDLike; } public V_STK_LineDetailsQuery setStockTakeLineIDLike(String value) { this.StockTakeLineIDLike = value; return this; } public ArrayList getStockTakeLineIDBetween() { return StockTakeLineIDBetween; } public V_STK_LineDetailsQuery setStockTakeLineIDBetween(ArrayList value) { this.StockTakeLineIDBetween = value; return this; } public ArrayList getStockTakeLineIDIn() { return StockTakeLineIDIn; } public V_STK_LineDetailsQuery setStockTakeLineIDIn(ArrayList value) { this.StockTakeLineIDIn = value; return this; } public String getSerialNumber() { return SerialNumber; } public V_STK_LineDetailsQuery setSerialNumber(String value) { this.SerialNumber = value; return this; } public String getSerialNumberStartsWith() { return SerialNumberStartsWith; } public V_STK_LineDetailsQuery setSerialNumberStartsWith(String value) { this.SerialNumberStartsWith = value; return this; } public String getSerialNumberEndsWith() { return SerialNumberEndsWith; } public V_STK_LineDetailsQuery setSerialNumberEndsWith(String value) { this.SerialNumberEndsWith = value; return this; } public String getSerialNumberContains() { return SerialNumberContains; } public V_STK_LineDetailsQuery setSerialNumberContains(String value) { this.SerialNumberContains = value; return this; } public String getSerialNumberLike() { return SerialNumberLike; } public V_STK_LineDetailsQuery setSerialNumberLike(String value) { this.SerialNumberLike = value; return this; } public ArrayList getSerialNumberBetween() { return SerialNumberBetween; } public V_STK_LineDetailsQuery setSerialNumberBetween(ArrayList value) { this.SerialNumberBetween = value; return this; } public ArrayList getSerialNumberIn() { return SerialNumberIn; } public V_STK_LineDetailsQuery setSerialNumberIn(ArrayList value) { this.SerialNumberIn = value; return this; } public String getLinkID() { return LinkID; } public V_STK_LineDetailsQuery setLinkID(String value) { this.LinkID = value; return this; } public String getLinkIDStartsWith() { return LinkIDStartsWith; } public V_STK_LineDetailsQuery setLinkIDStartsWith(String value) { this.LinkIDStartsWith = value; return this; } public String getLinkIDEndsWith() { return LinkIDEndsWith; } public V_STK_LineDetailsQuery setLinkIDEndsWith(String value) { this.LinkIDEndsWith = value; return this; } public String getLinkIDContains() { return LinkIDContains; } public V_STK_LineDetailsQuery setLinkIDContains(String value) { this.LinkIDContains = value; return this; } public String getLinkIDLike() { return LinkIDLike; } public V_STK_LineDetailsQuery setLinkIDLike(String value) { this.LinkIDLike = value; return this; } public ArrayList getLinkIDBetween() { return LinkIDBetween; } public V_STK_LineDetailsQuery setLinkIDBetween(ArrayList value) { this.LinkIDBetween = value; return this; } public ArrayList getLinkIDIn() { return LinkIDIn; } public V_STK_LineDetailsQuery setLinkIDIn(ArrayList value) { this.LinkIDIn = value; return this; } public BigDecimal getQtyFound() { return QtyFound; } public V_STK_LineDetailsQuery setQtyFound(BigDecimal value) { this.QtyFound = value; return this; } public BigDecimal getQtyFoundGreaterThanOrEqualTo() { return QtyFoundGreaterThanOrEqualTo; } public V_STK_LineDetailsQuery setQtyFoundGreaterThanOrEqualTo(BigDecimal value) { this.QtyFoundGreaterThanOrEqualTo = value; return this; } public BigDecimal getQtyFoundGreaterThan() { return QtyFoundGreaterThan; } public V_STK_LineDetailsQuery setQtyFoundGreaterThan(BigDecimal value) { this.QtyFoundGreaterThan = value; return this; } public BigDecimal getQtyFoundLessThan() { return QtyFoundLessThan; } public V_STK_LineDetailsQuery setQtyFoundLessThan(BigDecimal value) { this.QtyFoundLessThan = value; return this; } public BigDecimal getQtyFoundLessThanOrEqualTo() { return QtyFoundLessThanOrEqualTo; } public V_STK_LineDetailsQuery setQtyFoundLessThanOrEqualTo(BigDecimal value) { this.QtyFoundLessThanOrEqualTo = value; return this; } public BigDecimal getQtyFoundNotEqualTo() { return QtyFoundNotEqualTo; } public V_STK_LineDetailsQuery setQtyFoundNotEqualTo(BigDecimal value) { this.QtyFoundNotEqualTo = value; return this; } public ArrayList getQtyFoundBetween() { return QtyFoundBetween; } public V_STK_LineDetailsQuery setQtyFoundBetween(ArrayList value) { this.QtyFoundBetween = value; return this; } public ArrayList getQtyFoundIn() { return QtyFoundIn; } public V_STK_LineDetailsQuery setQtyFoundIn(ArrayList value) { this.QtyFoundIn = value; return this; } public BigDecimal getQty() { return Qty; } public V_STK_LineDetailsQuery setQty(BigDecimal value) { this.Qty = value; return this; } public BigDecimal getQtyGreaterThanOrEqualTo() { return QtyGreaterThanOrEqualTo; } public V_STK_LineDetailsQuery setQtyGreaterThanOrEqualTo(BigDecimal value) { this.QtyGreaterThanOrEqualTo = value; return this; } public BigDecimal getQtyGreaterThan() { return QtyGreaterThan; } public V_STK_LineDetailsQuery setQtyGreaterThan(BigDecimal value) { this.QtyGreaterThan = value; return this; } public BigDecimal getQtyLessThan() { return QtyLessThan; } public V_STK_LineDetailsQuery setQtyLessThan(BigDecimal value) { this.QtyLessThan = value; return this; } public BigDecimal getQtyLessThanOrEqualTo() { return QtyLessThanOrEqualTo; } public V_STK_LineDetailsQuery setQtyLessThanOrEqualTo(BigDecimal value) { this.QtyLessThanOrEqualTo = value; return this; } public BigDecimal getQtyNotEqualTo() { return QtyNotEqualTo; } public V_STK_LineDetailsQuery setQtyNotEqualTo(BigDecimal value) { this.QtyNotEqualTo = value; return this; } public ArrayList getQtyBetween() { return QtyBetween; } public V_STK_LineDetailsQuery setQtyBetween(ArrayList value) { this.QtyBetween = value; return this; } public ArrayList getQtyIn() { return QtyIn; } public V_STK_LineDetailsQuery setQtyIn(ArrayList value) { this.QtyIn = value; return this; } public Integer getIncDec() { return Inc_Dec; } public V_STK_LineDetailsQuery setIncDec(Integer value) { this.Inc_Dec = value; return this; } public Integer getIncDecGreaterThanOrEqualTo() { return Inc_DecGreaterThanOrEqualTo; } public V_STK_LineDetailsQuery setIncDecGreaterThanOrEqualTo(Integer value) { this.Inc_DecGreaterThanOrEqualTo = value; return this; } public Integer getIncDecGreaterThan() { return Inc_DecGreaterThan; } public V_STK_LineDetailsQuery setIncDecGreaterThan(Integer value) { this.Inc_DecGreaterThan = value; return this; } public Integer getIncDecLessThan() { return Inc_DecLessThan; } public V_STK_LineDetailsQuery setIncDecLessThan(Integer value) { this.Inc_DecLessThan = value; return this; } public Integer getIncDecLessThanOrEqualTo() { return Inc_DecLessThanOrEqualTo; } public V_STK_LineDetailsQuery setIncDecLessThanOrEqualTo(Integer value) { this.Inc_DecLessThanOrEqualTo = value; return this; } public Integer getIncDecNotEqualTo() { return Inc_DecNotEqualTo; } public V_STK_LineDetailsQuery setIncDecNotEqualTo(Integer value) { this.Inc_DecNotEqualTo = value; return this; } public ArrayList getIncDecBetween() { return Inc_DecBetween; } public V_STK_LineDetailsQuery setIncDecBetween(ArrayList value) { this.Inc_DecBetween = value; return this; } public ArrayList getIncDecIn() { return Inc_DecIn; } public V_STK_LineDetailsQuery setIncDecIn(ArrayList value) { this.Inc_DecIn = value; return this; } public BigDecimal getCost() { return Cost; } public V_STK_LineDetailsQuery setCost(BigDecimal value) { this.Cost = value; return this; } public BigDecimal getCostGreaterThanOrEqualTo() { return CostGreaterThanOrEqualTo; } public V_STK_LineDetailsQuery setCostGreaterThanOrEqualTo(BigDecimal value) { this.CostGreaterThanOrEqualTo = value; return this; } public BigDecimal getCostGreaterThan() { return CostGreaterThan; } public V_STK_LineDetailsQuery setCostGreaterThan(BigDecimal value) { this.CostGreaterThan = value; return this; } public BigDecimal getCostLessThan() { return CostLessThan; } public V_STK_LineDetailsQuery setCostLessThan(BigDecimal value) { this.CostLessThan = value; return this; } public BigDecimal getCostLessThanOrEqualTo() { return CostLessThanOrEqualTo; } public V_STK_LineDetailsQuery setCostLessThanOrEqualTo(BigDecimal value) { this.CostLessThanOrEqualTo = value; return this; } public BigDecimal getCostNotEqualTo() { return CostNotEqualTo; } public V_STK_LineDetailsQuery setCostNotEqualTo(BigDecimal value) { this.CostNotEqualTo = value; return this; } public ArrayList getCostBetween() { return CostBetween; } public V_STK_LineDetailsQuery setCostBetween(ArrayList value) { this.CostBetween = value; return this; } public ArrayList getCostIn() { return CostIn; } public V_STK_LineDetailsQuery setCostIn(ArrayList value) { this.CostIn = value; return this; } public Date getExpiryDate() { return ExpiryDate; } public V_STK_LineDetailsQuery setExpiryDate(Date value) { this.ExpiryDate = value; return this; } public Date getExpiryDateGreaterThanOrEqualTo() { return ExpiryDateGreaterThanOrEqualTo; } public V_STK_LineDetailsQuery setExpiryDateGreaterThanOrEqualTo(Date value) { this.ExpiryDateGreaterThanOrEqualTo = value; return this; } public Date getExpiryDateGreaterThan() { return ExpiryDateGreaterThan; } public V_STK_LineDetailsQuery setExpiryDateGreaterThan(Date value) { this.ExpiryDateGreaterThan = value; return this; } public Date getExpiryDateLessThan() { return ExpiryDateLessThan; } public V_STK_LineDetailsQuery setExpiryDateLessThan(Date value) { this.ExpiryDateLessThan = value; return this; } public Date getExpiryDateLessThanOrEqualTo() { return ExpiryDateLessThanOrEqualTo; } public V_STK_LineDetailsQuery setExpiryDateLessThanOrEqualTo(Date value) { this.ExpiryDateLessThanOrEqualTo = value; return this; } public Date getExpiryDateNotEqualTo() { return ExpiryDateNotEqualTo; } public V_STK_LineDetailsQuery setExpiryDateNotEqualTo(Date value) { this.ExpiryDateNotEqualTo = value; return this; } public ArrayList getExpiryDateBetween() { return ExpiryDateBetween; } public V_STK_LineDetailsQuery setExpiryDateBetween(ArrayList value) { this.ExpiryDateBetween = value; return this; } public ArrayList getExpiryDateIn() { return ExpiryDateIn; } public V_STK_LineDetailsQuery setExpiryDateIn(ArrayList value) { this.ExpiryDateIn = value; return this; } public String getBinLocation() { return BinLocation; } public V_STK_LineDetailsQuery setBinLocation(String value) { this.BinLocation = value; return this; } public String getBinLocationStartsWith() { return BinLocationStartsWith; } public V_STK_LineDetailsQuery setBinLocationStartsWith(String value) { this.BinLocationStartsWith = value; return this; } public String getBinLocationEndsWith() { return BinLocationEndsWith; } public V_STK_LineDetailsQuery setBinLocationEndsWith(String value) { this.BinLocationEndsWith = value; return this; } public String getBinLocationContains() { return BinLocationContains; } public V_STK_LineDetailsQuery setBinLocationContains(String value) { this.BinLocationContains = value; return this; } public String getBinLocationLike() { return BinLocationLike; } public V_STK_LineDetailsQuery setBinLocationLike(String value) { this.BinLocationLike = value; return this; } public ArrayList getBinLocationBetween() { return BinLocationBetween; } public V_STK_LineDetailsQuery setBinLocationBetween(ArrayList value) { this.BinLocationBetween = value; return this; } public ArrayList getBinLocationIn() { return BinLocationIn; } public V_STK_LineDetailsQuery setBinLocationIn(ArrayList value) { this.BinLocationIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class v_SupportPackHoursRemainingQuery extends QueryDb implements IReturn> { public String DB_Main_RecID = null; public String DB_Main_RecIDStartsWith = null; public String DB_Main_RecIDEndsWith = null; public String DB_Main_RecIDContains = null; public String DB_Main_RecIDLike = null; public ArrayList DB_Main_RecIDBetween = null; public ArrayList DB_Main_RecIDIn = null; public BigDecimal HoursRemining = null; public BigDecimal HoursReminingGreaterThanOrEqualTo = null; public BigDecimal HoursReminingGreaterThan = null; public BigDecimal HoursReminingLessThan = null; public BigDecimal HoursReminingLessThanOrEqualTo = null; public BigDecimal HoursReminingNotEqualTo = null; public ArrayList HoursReminingBetween = null; public ArrayList HoursReminingIn = null; public String getDbMainRecID() { return DB_Main_RecID; } public v_SupportPackHoursRemainingQuery setDbMainRecID(String value) { this.DB_Main_RecID = value; return this; } public String getDbMainRecIDStartsWith() { return DB_Main_RecIDStartsWith; } public v_SupportPackHoursRemainingQuery setDbMainRecIDStartsWith(String value) { this.DB_Main_RecIDStartsWith = value; return this; } public String getDbMainRecIDEndsWith() { return DB_Main_RecIDEndsWith; } public v_SupportPackHoursRemainingQuery setDbMainRecIDEndsWith(String value) { this.DB_Main_RecIDEndsWith = value; return this; } public String getDbMainRecIDContains() { return DB_Main_RecIDContains; } public v_SupportPackHoursRemainingQuery setDbMainRecIDContains(String value) { this.DB_Main_RecIDContains = value; return this; } public String getDbMainRecIDLike() { return DB_Main_RecIDLike; } public v_SupportPackHoursRemainingQuery setDbMainRecIDLike(String value) { this.DB_Main_RecIDLike = value; return this; } public ArrayList getDbMainRecIDBetween() { return DB_Main_RecIDBetween; } public v_SupportPackHoursRemainingQuery setDbMainRecIDBetween(ArrayList value) { this.DB_Main_RecIDBetween = value; return this; } public ArrayList getDbMainRecIDIn() { return DB_Main_RecIDIn; } public v_SupportPackHoursRemainingQuery setDbMainRecIDIn(ArrayList value) { this.DB_Main_RecIDIn = value; return this; } public BigDecimal getHoursRemining() { return HoursRemining; } public v_SupportPackHoursRemainingQuery setHoursRemining(BigDecimal value) { this.HoursRemining = value; return this; } public BigDecimal getHoursReminingGreaterThanOrEqualTo() { return HoursReminingGreaterThanOrEqualTo; } public v_SupportPackHoursRemainingQuery setHoursReminingGreaterThanOrEqualTo(BigDecimal value) { this.HoursReminingGreaterThanOrEqualTo = value; return this; } public BigDecimal getHoursReminingGreaterThan() { return HoursReminingGreaterThan; } public v_SupportPackHoursRemainingQuery setHoursReminingGreaterThan(BigDecimal value) { this.HoursReminingGreaterThan = value; return this; } public BigDecimal getHoursReminingLessThan() { return HoursReminingLessThan; } public v_SupportPackHoursRemainingQuery setHoursReminingLessThan(BigDecimal value) { this.HoursReminingLessThan = value; return this; } public BigDecimal getHoursReminingLessThanOrEqualTo() { return HoursReminingLessThanOrEqualTo; } public v_SupportPackHoursRemainingQuery setHoursReminingLessThanOrEqualTo(BigDecimal value) { this.HoursReminingLessThanOrEqualTo = value; return this; } public BigDecimal getHoursReminingNotEqualTo() { return HoursReminingNotEqualTo; } public v_SupportPackHoursRemainingQuery setHoursReminingNotEqualTo(BigDecimal value) { this.HoursReminingNotEqualTo = value; return this; } public ArrayList getHoursReminingBetween() { return HoursReminingBetween; } public v_SupportPackHoursRemainingQuery setHoursReminingBetween(ArrayList value) { this.HoursReminingBetween = value; return this; } public ArrayList getHoursReminingIn() { return HoursReminingIn; } public v_SupportPackHoursRemainingQuery setHoursReminingIn(ArrayList value) { this.HoursReminingIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class v_SupportPackNormalHoursRemainingByDebtorQuery extends QueryDb implements IReturn> { public String DebtorID = null; public String DebtorIDStartsWith = null; public String DebtorIDEndsWith = null; public String DebtorIDContains = null; public String DebtorIDLike = null; public ArrayList DebtorIDBetween = null; public ArrayList DebtorIDIn = null; public BigDecimal NormalHoursRemaining = null; public BigDecimal NormalHoursRemainingGreaterThanOrEqualTo = null; public BigDecimal NormalHoursRemainingGreaterThan = null; public BigDecimal NormalHoursRemainingLessThan = null; public BigDecimal NormalHoursRemainingLessThanOrEqualTo = null; public BigDecimal NormalHoursRemainingNotEqualTo = null; public ArrayList NormalHoursRemainingBetween = null; public ArrayList NormalHoursRemainingIn = null; public String getDebtorID() { return DebtorID; } public v_SupportPackNormalHoursRemainingByDebtorQuery setDebtorID(String value) { this.DebtorID = value; return this; } public String getDebtorIDStartsWith() { return DebtorIDStartsWith; } public v_SupportPackNormalHoursRemainingByDebtorQuery setDebtorIDStartsWith(String value) { this.DebtorIDStartsWith = value; return this; } public String getDebtorIDEndsWith() { return DebtorIDEndsWith; } public v_SupportPackNormalHoursRemainingByDebtorQuery setDebtorIDEndsWith(String value) { this.DebtorIDEndsWith = value; return this; } public String getDebtorIDContains() { return DebtorIDContains; } public v_SupportPackNormalHoursRemainingByDebtorQuery setDebtorIDContains(String value) { this.DebtorIDContains = value; return this; } public String getDebtorIDLike() { return DebtorIDLike; } public v_SupportPackNormalHoursRemainingByDebtorQuery setDebtorIDLike(String value) { this.DebtorIDLike = value; return this; } public ArrayList getDebtorIDBetween() { return DebtorIDBetween; } public v_SupportPackNormalHoursRemainingByDebtorQuery setDebtorIDBetween(ArrayList value) { this.DebtorIDBetween = value; return this; } public ArrayList getDebtorIDIn() { return DebtorIDIn; } public v_SupportPackNormalHoursRemainingByDebtorQuery setDebtorIDIn(ArrayList value) { this.DebtorIDIn = value; return this; } public BigDecimal getNormalHoursRemaining() { return NormalHoursRemaining; } public v_SupportPackNormalHoursRemainingByDebtorQuery setNormalHoursRemaining(BigDecimal value) { this.NormalHoursRemaining = value; return this; } public BigDecimal getNormalHoursRemainingGreaterThanOrEqualTo() { return NormalHoursRemainingGreaterThanOrEqualTo; } public v_SupportPackNormalHoursRemainingByDebtorQuery setNormalHoursRemainingGreaterThanOrEqualTo(BigDecimal value) { this.NormalHoursRemainingGreaterThanOrEqualTo = value; return this; } public BigDecimal getNormalHoursRemainingGreaterThan() { return NormalHoursRemainingGreaterThan; } public v_SupportPackNormalHoursRemainingByDebtorQuery setNormalHoursRemainingGreaterThan(BigDecimal value) { this.NormalHoursRemainingGreaterThan = value; return this; } public BigDecimal getNormalHoursRemainingLessThan() { return NormalHoursRemainingLessThan; } public v_SupportPackNormalHoursRemainingByDebtorQuery setNormalHoursRemainingLessThan(BigDecimal value) { this.NormalHoursRemainingLessThan = value; return this; } public BigDecimal getNormalHoursRemainingLessThanOrEqualTo() { return NormalHoursRemainingLessThanOrEqualTo; } public v_SupportPackNormalHoursRemainingByDebtorQuery setNormalHoursRemainingLessThanOrEqualTo(BigDecimal value) { this.NormalHoursRemainingLessThanOrEqualTo = value; return this; } public BigDecimal getNormalHoursRemainingNotEqualTo() { return NormalHoursRemainingNotEqualTo; } public v_SupportPackNormalHoursRemainingByDebtorQuery setNormalHoursRemainingNotEqualTo(BigDecimal value) { this.NormalHoursRemainingNotEqualTo = value; return this; } public ArrayList getNormalHoursRemainingBetween() { return NormalHoursRemainingBetween; } public v_SupportPackNormalHoursRemainingByDebtorQuery setNormalHoursRemainingBetween(ArrayList value) { this.NormalHoursRemainingBetween = value; return this; } public ArrayList getNormalHoursRemainingIn() { return NormalHoursRemainingIn; } public v_SupportPackNormalHoursRemainingByDebtorQuery setNormalHoursRemainingIn(ArrayList value) { this.NormalHoursRemainingIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class v_SupportPackNormalHoursTotalByDebtorQuery extends QueryDb implements IReturn> { public String DebtorID = null; public String DebtorIDStartsWith = null; public String DebtorIDEndsWith = null; public String DebtorIDContains = null; public String DebtorIDLike = null; public ArrayList DebtorIDBetween = null; public ArrayList DebtorIDIn = null; public BigDecimal NormalHoursTotal = null; public BigDecimal NormalHoursTotalGreaterThanOrEqualTo = null; public BigDecimal NormalHoursTotalGreaterThan = null; public BigDecimal NormalHoursTotalLessThan = null; public BigDecimal NormalHoursTotalLessThanOrEqualTo = null; public BigDecimal NormalHoursTotalNotEqualTo = null; public ArrayList NormalHoursTotalBetween = null; public ArrayList NormalHoursTotalIn = null; public String getDebtorID() { return DebtorID; } public v_SupportPackNormalHoursTotalByDebtorQuery setDebtorID(String value) { this.DebtorID = value; return this; } public String getDebtorIDStartsWith() { return DebtorIDStartsWith; } public v_SupportPackNormalHoursTotalByDebtorQuery setDebtorIDStartsWith(String value) { this.DebtorIDStartsWith = value; return this; } public String getDebtorIDEndsWith() { return DebtorIDEndsWith; } public v_SupportPackNormalHoursTotalByDebtorQuery setDebtorIDEndsWith(String value) { this.DebtorIDEndsWith = value; return this; } public String getDebtorIDContains() { return DebtorIDContains; } public v_SupportPackNormalHoursTotalByDebtorQuery setDebtorIDContains(String value) { this.DebtorIDContains = value; return this; } public String getDebtorIDLike() { return DebtorIDLike; } public v_SupportPackNormalHoursTotalByDebtorQuery setDebtorIDLike(String value) { this.DebtorIDLike = value; return this; } public ArrayList getDebtorIDBetween() { return DebtorIDBetween; } public v_SupportPackNormalHoursTotalByDebtorQuery setDebtorIDBetween(ArrayList value) { this.DebtorIDBetween = value; return this; } public ArrayList getDebtorIDIn() { return DebtorIDIn; } public v_SupportPackNormalHoursTotalByDebtorQuery setDebtorIDIn(ArrayList value) { this.DebtorIDIn = value; return this; } public BigDecimal getNormalHoursTotal() { return NormalHoursTotal; } public v_SupportPackNormalHoursTotalByDebtorQuery setNormalHoursTotal(BigDecimal value) { this.NormalHoursTotal = value; return this; } public BigDecimal getNormalHoursTotalGreaterThanOrEqualTo() { return NormalHoursTotalGreaterThanOrEqualTo; } public v_SupportPackNormalHoursTotalByDebtorQuery setNormalHoursTotalGreaterThanOrEqualTo(BigDecimal value) { this.NormalHoursTotalGreaterThanOrEqualTo = value; return this; } public BigDecimal getNormalHoursTotalGreaterThan() { return NormalHoursTotalGreaterThan; } public v_SupportPackNormalHoursTotalByDebtorQuery setNormalHoursTotalGreaterThan(BigDecimal value) { this.NormalHoursTotalGreaterThan = value; return this; } public BigDecimal getNormalHoursTotalLessThan() { return NormalHoursTotalLessThan; } public v_SupportPackNormalHoursTotalByDebtorQuery setNormalHoursTotalLessThan(BigDecimal value) { this.NormalHoursTotalLessThan = value; return this; } public BigDecimal getNormalHoursTotalLessThanOrEqualTo() { return NormalHoursTotalLessThanOrEqualTo; } public v_SupportPackNormalHoursTotalByDebtorQuery setNormalHoursTotalLessThanOrEqualTo(BigDecimal value) { this.NormalHoursTotalLessThanOrEqualTo = value; return this; } public BigDecimal getNormalHoursTotalNotEqualTo() { return NormalHoursTotalNotEqualTo; } public v_SupportPackNormalHoursTotalByDebtorQuery setNormalHoursTotalNotEqualTo(BigDecimal value) { this.NormalHoursTotalNotEqualTo = value; return this; } public ArrayList getNormalHoursTotalBetween() { return NormalHoursTotalBetween; } public v_SupportPackNormalHoursTotalByDebtorQuery setNormalHoursTotalBetween(ArrayList value) { this.NormalHoursTotalBetween = value; return this; } public ArrayList getNormalHoursTotalIn() { return NormalHoursTotalIn; } public v_SupportPackNormalHoursTotalByDebtorQuery setNormalHoursTotalIn(ArrayList value) { this.NormalHoursTotalIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class v_SupportPackSpecialHoursRemainingByDebtorQuery extends QueryDb implements IReturn> { public String DebtorID = null; public String DebtorIDStartsWith = null; public String DebtorIDEndsWith = null; public String DebtorIDContains = null; public String DebtorIDLike = null; public ArrayList DebtorIDBetween = null; public ArrayList DebtorIDIn = null; public BigDecimal SpecialHoursRemaining = null; public BigDecimal SpecialHoursRemainingGreaterThanOrEqualTo = null; public BigDecimal SpecialHoursRemainingGreaterThan = null; public BigDecimal SpecialHoursRemainingLessThan = null; public BigDecimal SpecialHoursRemainingLessThanOrEqualTo = null; public BigDecimal SpecialHoursRemainingNotEqualTo = null; public ArrayList SpecialHoursRemainingBetween = null; public ArrayList SpecialHoursRemainingIn = null; public String getDebtorID() { return DebtorID; } public v_SupportPackSpecialHoursRemainingByDebtorQuery setDebtorID(String value) { this.DebtorID = value; return this; } public String getDebtorIDStartsWith() { return DebtorIDStartsWith; } public v_SupportPackSpecialHoursRemainingByDebtorQuery setDebtorIDStartsWith(String value) { this.DebtorIDStartsWith = value; return this; } public String getDebtorIDEndsWith() { return DebtorIDEndsWith; } public v_SupportPackSpecialHoursRemainingByDebtorQuery setDebtorIDEndsWith(String value) { this.DebtorIDEndsWith = value; return this; } public String getDebtorIDContains() { return DebtorIDContains; } public v_SupportPackSpecialHoursRemainingByDebtorQuery setDebtorIDContains(String value) { this.DebtorIDContains = value; return this; } public String getDebtorIDLike() { return DebtorIDLike; } public v_SupportPackSpecialHoursRemainingByDebtorQuery setDebtorIDLike(String value) { this.DebtorIDLike = value; return this; } public ArrayList getDebtorIDBetween() { return DebtorIDBetween; } public v_SupportPackSpecialHoursRemainingByDebtorQuery setDebtorIDBetween(ArrayList value) { this.DebtorIDBetween = value; return this; } public ArrayList getDebtorIDIn() { return DebtorIDIn; } public v_SupportPackSpecialHoursRemainingByDebtorQuery setDebtorIDIn(ArrayList value) { this.DebtorIDIn = value; return this; } public BigDecimal getSpecialHoursRemaining() { return SpecialHoursRemaining; } public v_SupportPackSpecialHoursRemainingByDebtorQuery setSpecialHoursRemaining(BigDecimal value) { this.SpecialHoursRemaining = value; return this; } public BigDecimal getSpecialHoursRemainingGreaterThanOrEqualTo() { return SpecialHoursRemainingGreaterThanOrEqualTo; } public v_SupportPackSpecialHoursRemainingByDebtorQuery setSpecialHoursRemainingGreaterThanOrEqualTo(BigDecimal value) { this.SpecialHoursRemainingGreaterThanOrEqualTo = value; return this; } public BigDecimal getSpecialHoursRemainingGreaterThan() { return SpecialHoursRemainingGreaterThan; } public v_SupportPackSpecialHoursRemainingByDebtorQuery setSpecialHoursRemainingGreaterThan(BigDecimal value) { this.SpecialHoursRemainingGreaterThan = value; return this; } public BigDecimal getSpecialHoursRemainingLessThan() { return SpecialHoursRemainingLessThan; } public v_SupportPackSpecialHoursRemainingByDebtorQuery setSpecialHoursRemainingLessThan(BigDecimal value) { this.SpecialHoursRemainingLessThan = value; return this; } public BigDecimal getSpecialHoursRemainingLessThanOrEqualTo() { return SpecialHoursRemainingLessThanOrEqualTo; } public v_SupportPackSpecialHoursRemainingByDebtorQuery setSpecialHoursRemainingLessThanOrEqualTo(BigDecimal value) { this.SpecialHoursRemainingLessThanOrEqualTo = value; return this; } public BigDecimal getSpecialHoursRemainingNotEqualTo() { return SpecialHoursRemainingNotEqualTo; } public v_SupportPackSpecialHoursRemainingByDebtorQuery setSpecialHoursRemainingNotEqualTo(BigDecimal value) { this.SpecialHoursRemainingNotEqualTo = value; return this; } public ArrayList getSpecialHoursRemainingBetween() { return SpecialHoursRemainingBetween; } public v_SupportPackSpecialHoursRemainingByDebtorQuery setSpecialHoursRemainingBetween(ArrayList value) { this.SpecialHoursRemainingBetween = value; return this; } public ArrayList getSpecialHoursRemainingIn() { return SpecialHoursRemainingIn; } public v_SupportPackSpecialHoursRemainingByDebtorQuery setSpecialHoursRemainingIn(ArrayList value) { this.SpecialHoursRemainingIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class v_SupportPackSpecialHoursTotalByDebtorQuery extends QueryDb implements IReturn> { public String DebtorID = null; public String DebtorIDStartsWith = null; public String DebtorIDEndsWith = null; public String DebtorIDContains = null; public String DebtorIDLike = null; public ArrayList DebtorIDBetween = null; public ArrayList DebtorIDIn = null; public BigDecimal SpecialHoursTotal = null; public BigDecimal SpecialHoursTotalGreaterThanOrEqualTo = null; public BigDecimal SpecialHoursTotalGreaterThan = null; public BigDecimal SpecialHoursTotalLessThan = null; public BigDecimal SpecialHoursTotalLessThanOrEqualTo = null; public BigDecimal SpecialHoursTotalNotEqualTo = null; public ArrayList SpecialHoursTotalBetween = null; public ArrayList SpecialHoursTotalIn = null; public String getDebtorID() { return DebtorID; } public v_SupportPackSpecialHoursTotalByDebtorQuery setDebtorID(String value) { this.DebtorID = value; return this; } public String getDebtorIDStartsWith() { return DebtorIDStartsWith; } public v_SupportPackSpecialHoursTotalByDebtorQuery setDebtorIDStartsWith(String value) { this.DebtorIDStartsWith = value; return this; } public String getDebtorIDEndsWith() { return DebtorIDEndsWith; } public v_SupportPackSpecialHoursTotalByDebtorQuery setDebtorIDEndsWith(String value) { this.DebtorIDEndsWith = value; return this; } public String getDebtorIDContains() { return DebtorIDContains; } public v_SupportPackSpecialHoursTotalByDebtorQuery setDebtorIDContains(String value) { this.DebtorIDContains = value; return this; } public String getDebtorIDLike() { return DebtorIDLike; } public v_SupportPackSpecialHoursTotalByDebtorQuery setDebtorIDLike(String value) { this.DebtorIDLike = value; return this; } public ArrayList getDebtorIDBetween() { return DebtorIDBetween; } public v_SupportPackSpecialHoursTotalByDebtorQuery setDebtorIDBetween(ArrayList value) { this.DebtorIDBetween = value; return this; } public ArrayList getDebtorIDIn() { return DebtorIDIn; } public v_SupportPackSpecialHoursTotalByDebtorQuery setDebtorIDIn(ArrayList value) { this.DebtorIDIn = value; return this; } public BigDecimal getSpecialHoursTotal() { return SpecialHoursTotal; } public v_SupportPackSpecialHoursTotalByDebtorQuery setSpecialHoursTotal(BigDecimal value) { this.SpecialHoursTotal = value; return this; } public BigDecimal getSpecialHoursTotalGreaterThanOrEqualTo() { return SpecialHoursTotalGreaterThanOrEqualTo; } public v_SupportPackSpecialHoursTotalByDebtorQuery setSpecialHoursTotalGreaterThanOrEqualTo(BigDecimal value) { this.SpecialHoursTotalGreaterThanOrEqualTo = value; return this; } public BigDecimal getSpecialHoursTotalGreaterThan() { return SpecialHoursTotalGreaterThan; } public v_SupportPackSpecialHoursTotalByDebtorQuery setSpecialHoursTotalGreaterThan(BigDecimal value) { this.SpecialHoursTotalGreaterThan = value; return this; } public BigDecimal getSpecialHoursTotalLessThan() { return SpecialHoursTotalLessThan; } public v_SupportPackSpecialHoursTotalByDebtorQuery setSpecialHoursTotalLessThan(BigDecimal value) { this.SpecialHoursTotalLessThan = value; return this; } public BigDecimal getSpecialHoursTotalLessThanOrEqualTo() { return SpecialHoursTotalLessThanOrEqualTo; } public v_SupportPackSpecialHoursTotalByDebtorQuery setSpecialHoursTotalLessThanOrEqualTo(BigDecimal value) { this.SpecialHoursTotalLessThanOrEqualTo = value; return this; } public BigDecimal getSpecialHoursTotalNotEqualTo() { return SpecialHoursTotalNotEqualTo; } public v_SupportPackSpecialHoursTotalByDebtorQuery setSpecialHoursTotalNotEqualTo(BigDecimal value) { this.SpecialHoursTotalNotEqualTo = value; return this; } public ArrayList getSpecialHoursTotalBetween() { return SpecialHoursTotalBetween; } public v_SupportPackSpecialHoursTotalByDebtorQuery setSpecialHoursTotalBetween(ArrayList value) { this.SpecialHoursTotalBetween = value; return this; } public ArrayList getSpecialHoursTotalIn() { return SpecialHoursTotalIn; } public v_SupportPackSpecialHoursTotalByDebtorQuery setSpecialHoursTotalIn(ArrayList value) { this.SpecialHoursTotalIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class v_SY_WebhookSubscriber_MessageResponsesQuery extends QueryDb implements IReturn> { public UUID SubscriberID = null; public ArrayList SubscriberIDIn = null; public UUID SubscriptionID = null; public ArrayList SubscriptionIDIn = null; public UUID MessageID = null; public ArrayList MessageIDIn = null; public UUID MessageResponseID = null; public ArrayList MessageResponseIDIn = null; public String EventName = null; public String EventNameStartsWith = null; public String EventNameEndsWith = null; public String EventNameContains = null; public String EventNameLike = null; public ArrayList EventNameBetween = null; public ArrayList EventNameIn = null; public String URL = null; public String URLStartsWith = null; public String URLEndsWith = null; public String URLContains = null; public String URLLike = null; public ArrayList URLBetween = null; public ArrayList URLIn = null; public String Body = null; public String BodyStartsWith = null; public String BodyEndsWith = null; public String BodyContains = null; public String BodyLike = null; public ArrayList BodyBetween = null; public ArrayList BodyIn = null; public Integer MessageItemNo = null; public Integer MessageItemNoGreaterThanOrEqualTo = null; public Integer MessageItemNoGreaterThan = null; public Integer MessageItemNoLessThan = null; public Integer MessageItemNoLessThanOrEqualTo = null; public Integer MessageItemNoNotEqualTo = null; public ArrayList MessageItemNoBetween = null; public ArrayList MessageItemNoIn = null; public Short Status = null; public Short StatusGreaterThanOrEqualTo = null; public Short StatusGreaterThan = null; public Short StatusLessThan = null; public Short StatusLessThanOrEqualTo = null; public Short StatusNotEqualTo = null; public ArrayList StatusBetween = null; public ArrayList StatusIn = null; public Integer Retries = null; public Integer RetriesGreaterThanOrEqualTo = null; public Integer RetriesGreaterThan = null; public Integer RetriesLessThan = null; public Integer RetriesLessThanOrEqualTo = null; public Integer RetriesNotEqualTo = null; public ArrayList RetriesBetween = null; public ArrayList RetriesIn = null; public Date AddedDateTime = null; public Date AddedDateTimeGreaterThanOrEqualTo = null; public Date AddedDateTimeGreaterThan = null; public Date AddedDateTimeLessThan = null; public Date AddedDateTimeLessThanOrEqualTo = null; public Date AddedDateTimeNotEqualTo = null; public ArrayList AddedDateTimeBetween = null; public ArrayList AddedDateTimeIn = null; public Date MessageLastSavedDateTime = null; public Date MessageLastSavedDateTimeGreaterThanOrEqualTo = null; public Date MessageLastSavedDateTimeGreaterThan = null; public Date MessageLastSavedDateTimeLessThan = null; public Date MessageLastSavedDateTimeLessThanOrEqualTo = null; public Date MessageLastSavedDateTimeNotEqualTo = null; public ArrayList MessageLastSavedDateTimeBetween = null; public ArrayList MessageLastSavedDateTimeIn = null; public Integer HTTPCode = null; public Integer HTTPCodeGreaterThanOrEqualTo = null; public Integer HTTPCodeGreaterThan = null; public Integer HTTPCodeLessThan = null; public Integer HTTPCodeLessThanOrEqualTo = null; public Integer HTTPCodeNotEqualTo = null; public ArrayList HTTPCodeBetween = null; public ArrayList HTTPCodeIn = null; public String Message = null; public String MessageStartsWith = null; public String MessageEndsWith = null; public String MessageContains = null; public String MessageLike = null; public ArrayList MessageBetween = null; public ArrayList MessageIn = null; public Integer ItemNo = null; public Integer ItemNoGreaterThanOrEqualTo = null; public Integer ItemNoGreaterThan = null; public Integer ItemNoLessThan = null; public Integer ItemNoLessThanOrEqualTo = null; public Integer ItemNoNotEqualTo = null; public ArrayList ItemNoBetween = null; public ArrayList ItemNoIn = null; public Date LastSavedDateTime = null; public Date LastSavedDateTimeGreaterThanOrEqualTo = null; public Date LastSavedDateTimeGreaterThan = null; public Date LastSavedDateTimeLessThan = null; public Date LastSavedDateTimeLessThanOrEqualTo = null; public Date LastSavedDateTimeNotEqualTo = null; public ArrayList LastSavedDateTimeBetween = null; public ArrayList LastSavedDateTimeIn = null; public UUID getSubscriberID() { return SubscriberID; } public v_SY_WebhookSubscriber_MessageResponsesQuery setSubscriberID(UUID value) { this.SubscriberID = value; return this; } public ArrayList getSubscriberIDIn() { return SubscriberIDIn; } public v_SY_WebhookSubscriber_MessageResponsesQuery setSubscriberIDIn(ArrayList value) { this.SubscriberIDIn = value; return this; } public UUID getSubscriptionID() { return SubscriptionID; } public v_SY_WebhookSubscriber_MessageResponsesQuery setSubscriptionID(UUID value) { this.SubscriptionID = value; return this; } public ArrayList getSubscriptionIDIn() { return SubscriptionIDIn; } public v_SY_WebhookSubscriber_MessageResponsesQuery setSubscriptionIDIn(ArrayList value) { this.SubscriptionIDIn = value; return this; } public UUID getMessageID() { return MessageID; } public v_SY_WebhookSubscriber_MessageResponsesQuery setMessageID(UUID value) { this.MessageID = value; return this; } public ArrayList getMessageIDIn() { return MessageIDIn; } public v_SY_WebhookSubscriber_MessageResponsesQuery setMessageIDIn(ArrayList value) { this.MessageIDIn = value; return this; } public UUID getMessageResponseID() { return MessageResponseID; } public v_SY_WebhookSubscriber_MessageResponsesQuery setMessageResponseID(UUID value) { this.MessageResponseID = value; return this; } public ArrayList getMessageResponseIDIn() { return MessageResponseIDIn; } public v_SY_WebhookSubscriber_MessageResponsesQuery setMessageResponseIDIn(ArrayList value) { this.MessageResponseIDIn = value; return this; } public String getEventName() { return EventName; } public v_SY_WebhookSubscriber_MessageResponsesQuery setEventName(String value) { this.EventName = value; return this; } public String getEventNameStartsWith() { return EventNameStartsWith; } public v_SY_WebhookSubscriber_MessageResponsesQuery setEventNameStartsWith(String value) { this.EventNameStartsWith = value; return this; } public String getEventNameEndsWith() { return EventNameEndsWith; } public v_SY_WebhookSubscriber_MessageResponsesQuery setEventNameEndsWith(String value) { this.EventNameEndsWith = value; return this; } public String getEventNameContains() { return EventNameContains; } public v_SY_WebhookSubscriber_MessageResponsesQuery setEventNameContains(String value) { this.EventNameContains = value; return this; } public String getEventNameLike() { return EventNameLike; } public v_SY_WebhookSubscriber_MessageResponsesQuery setEventNameLike(String value) { this.EventNameLike = value; return this; } public ArrayList getEventNameBetween() { return EventNameBetween; } public v_SY_WebhookSubscriber_MessageResponsesQuery setEventNameBetween(ArrayList value) { this.EventNameBetween = value; return this; } public ArrayList getEventNameIn() { return EventNameIn; } public v_SY_WebhookSubscriber_MessageResponsesQuery setEventNameIn(ArrayList value) { this.EventNameIn = value; return this; } public String getUrl() { return URL; } public v_SY_WebhookSubscriber_MessageResponsesQuery setUrl(String value) { this.URL = value; return this; } public String getUrlStartsWith() { return URLStartsWith; } public v_SY_WebhookSubscriber_MessageResponsesQuery setUrlStartsWith(String value) { this.URLStartsWith = value; return this; } public String getUrlEndsWith() { return URLEndsWith; } public v_SY_WebhookSubscriber_MessageResponsesQuery setUrlEndsWith(String value) { this.URLEndsWith = value; return this; } public String getUrlContains() { return URLContains; } public v_SY_WebhookSubscriber_MessageResponsesQuery setUrlContains(String value) { this.URLContains = value; return this; } public String getUrlLike() { return URLLike; } public v_SY_WebhookSubscriber_MessageResponsesQuery setUrlLike(String value) { this.URLLike = value; return this; } public ArrayList getUrlBetween() { return URLBetween; } public v_SY_WebhookSubscriber_MessageResponsesQuery setUrlBetween(ArrayList value) { this.URLBetween = value; return this; } public ArrayList getUrlIn() { return URLIn; } public v_SY_WebhookSubscriber_MessageResponsesQuery setUrlIn(ArrayList value) { this.URLIn = value; return this; } public String getBody() { return Body; } public v_SY_WebhookSubscriber_MessageResponsesQuery setBody(String value) { this.Body = value; return this; } public String getBodyStartsWith() { return BodyStartsWith; } public v_SY_WebhookSubscriber_MessageResponsesQuery setBodyStartsWith(String value) { this.BodyStartsWith = value; return this; } public String getBodyEndsWith() { return BodyEndsWith; } public v_SY_WebhookSubscriber_MessageResponsesQuery setBodyEndsWith(String value) { this.BodyEndsWith = value; return this; } public String getBodyContains() { return BodyContains; } public v_SY_WebhookSubscriber_MessageResponsesQuery setBodyContains(String value) { this.BodyContains = value; return this; } public String getBodyLike() { return BodyLike; } public v_SY_WebhookSubscriber_MessageResponsesQuery setBodyLike(String value) { this.BodyLike = value; return this; } public ArrayList getBodyBetween() { return BodyBetween; } public v_SY_WebhookSubscriber_MessageResponsesQuery setBodyBetween(ArrayList value) { this.BodyBetween = value; return this; } public ArrayList getBodyIn() { return BodyIn; } public v_SY_WebhookSubscriber_MessageResponsesQuery setBodyIn(ArrayList value) { this.BodyIn = value; return this; } public Integer getMessageItemNo() { return MessageItemNo; } public v_SY_WebhookSubscriber_MessageResponsesQuery setMessageItemNo(Integer value) { this.MessageItemNo = value; return this; } public Integer getMessageItemNoGreaterThanOrEqualTo() { return MessageItemNoGreaterThanOrEqualTo; } public v_SY_WebhookSubscriber_MessageResponsesQuery setMessageItemNoGreaterThanOrEqualTo(Integer value) { this.MessageItemNoGreaterThanOrEqualTo = value; return this; } public Integer getMessageItemNoGreaterThan() { return MessageItemNoGreaterThan; } public v_SY_WebhookSubscriber_MessageResponsesQuery setMessageItemNoGreaterThan(Integer value) { this.MessageItemNoGreaterThan = value; return this; } public Integer getMessageItemNoLessThan() { return MessageItemNoLessThan; } public v_SY_WebhookSubscriber_MessageResponsesQuery setMessageItemNoLessThan(Integer value) { this.MessageItemNoLessThan = value; return this; } public Integer getMessageItemNoLessThanOrEqualTo() { return MessageItemNoLessThanOrEqualTo; } public v_SY_WebhookSubscriber_MessageResponsesQuery setMessageItemNoLessThanOrEqualTo(Integer value) { this.MessageItemNoLessThanOrEqualTo = value; return this; } public Integer getMessageItemNoNotEqualTo() { return MessageItemNoNotEqualTo; } public v_SY_WebhookSubscriber_MessageResponsesQuery setMessageItemNoNotEqualTo(Integer value) { this.MessageItemNoNotEqualTo = value; return this; } public ArrayList getMessageItemNoBetween() { return MessageItemNoBetween; } public v_SY_WebhookSubscriber_MessageResponsesQuery setMessageItemNoBetween(ArrayList value) { this.MessageItemNoBetween = value; return this; } public ArrayList getMessageItemNoIn() { return MessageItemNoIn; } public v_SY_WebhookSubscriber_MessageResponsesQuery setMessageItemNoIn(ArrayList value) { this.MessageItemNoIn = value; return this; } public Short getStatus() { return Status; } public v_SY_WebhookSubscriber_MessageResponsesQuery setStatus(Short value) { this.Status = value; return this; } public Short getStatusGreaterThanOrEqualTo() { return StatusGreaterThanOrEqualTo; } public v_SY_WebhookSubscriber_MessageResponsesQuery setStatusGreaterThanOrEqualTo(Short value) { this.StatusGreaterThanOrEqualTo = value; return this; } public Short getStatusGreaterThan() { return StatusGreaterThan; } public v_SY_WebhookSubscriber_MessageResponsesQuery setStatusGreaterThan(Short value) { this.StatusGreaterThan = value; return this; } public Short getStatusLessThan() { return StatusLessThan; } public v_SY_WebhookSubscriber_MessageResponsesQuery setStatusLessThan(Short value) { this.StatusLessThan = value; return this; } public Short getStatusLessThanOrEqualTo() { return StatusLessThanOrEqualTo; } public v_SY_WebhookSubscriber_MessageResponsesQuery setStatusLessThanOrEqualTo(Short value) { this.StatusLessThanOrEqualTo = value; return this; } public Short getStatusNotEqualTo() { return StatusNotEqualTo; } public v_SY_WebhookSubscriber_MessageResponsesQuery setStatusNotEqualTo(Short value) { this.StatusNotEqualTo = value; return this; } public ArrayList getStatusBetween() { return StatusBetween; } public v_SY_WebhookSubscriber_MessageResponsesQuery setStatusBetween(ArrayList value) { this.StatusBetween = value; return this; } public ArrayList getStatusIn() { return StatusIn; } public v_SY_WebhookSubscriber_MessageResponsesQuery setStatusIn(ArrayList value) { this.StatusIn = value; return this; } public Integer getRetries() { return Retries; } public v_SY_WebhookSubscriber_MessageResponsesQuery setRetries(Integer value) { this.Retries = value; return this; } public Integer getRetriesGreaterThanOrEqualTo() { return RetriesGreaterThanOrEqualTo; } public v_SY_WebhookSubscriber_MessageResponsesQuery setRetriesGreaterThanOrEqualTo(Integer value) { this.RetriesGreaterThanOrEqualTo = value; return this; } public Integer getRetriesGreaterThan() { return RetriesGreaterThan; } public v_SY_WebhookSubscriber_MessageResponsesQuery setRetriesGreaterThan(Integer value) { this.RetriesGreaterThan = value; return this; } public Integer getRetriesLessThan() { return RetriesLessThan; } public v_SY_WebhookSubscriber_MessageResponsesQuery setRetriesLessThan(Integer value) { this.RetriesLessThan = value; return this; } public Integer getRetriesLessThanOrEqualTo() { return RetriesLessThanOrEqualTo; } public v_SY_WebhookSubscriber_MessageResponsesQuery setRetriesLessThanOrEqualTo(Integer value) { this.RetriesLessThanOrEqualTo = value; return this; } public Integer getRetriesNotEqualTo() { return RetriesNotEqualTo; } public v_SY_WebhookSubscriber_MessageResponsesQuery setRetriesNotEqualTo(Integer value) { this.RetriesNotEqualTo = value; return this; } public ArrayList getRetriesBetween() { return RetriesBetween; } public v_SY_WebhookSubscriber_MessageResponsesQuery setRetriesBetween(ArrayList value) { this.RetriesBetween = value; return this; } public ArrayList getRetriesIn() { return RetriesIn; } public v_SY_WebhookSubscriber_MessageResponsesQuery setRetriesIn(ArrayList value) { this.RetriesIn = value; return this; } public Date getAddedDateTime() { return AddedDateTime; } public v_SY_WebhookSubscriber_MessageResponsesQuery setAddedDateTime(Date value) { this.AddedDateTime = value; return this; } public Date getAddedDateTimeGreaterThanOrEqualTo() { return AddedDateTimeGreaterThanOrEqualTo; } public v_SY_WebhookSubscriber_MessageResponsesQuery setAddedDateTimeGreaterThanOrEqualTo(Date value) { this.AddedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getAddedDateTimeGreaterThan() { return AddedDateTimeGreaterThan; } public v_SY_WebhookSubscriber_MessageResponsesQuery setAddedDateTimeGreaterThan(Date value) { this.AddedDateTimeGreaterThan = value; return this; } public Date getAddedDateTimeLessThan() { return AddedDateTimeLessThan; } public v_SY_WebhookSubscriber_MessageResponsesQuery setAddedDateTimeLessThan(Date value) { this.AddedDateTimeLessThan = value; return this; } public Date getAddedDateTimeLessThanOrEqualTo() { return AddedDateTimeLessThanOrEqualTo; } public v_SY_WebhookSubscriber_MessageResponsesQuery setAddedDateTimeLessThanOrEqualTo(Date value) { this.AddedDateTimeLessThanOrEqualTo = value; return this; } public Date getAddedDateTimeNotEqualTo() { return AddedDateTimeNotEqualTo; } public v_SY_WebhookSubscriber_MessageResponsesQuery setAddedDateTimeNotEqualTo(Date value) { this.AddedDateTimeNotEqualTo = value; return this; } public ArrayList getAddedDateTimeBetween() { return AddedDateTimeBetween; } public v_SY_WebhookSubscriber_MessageResponsesQuery setAddedDateTimeBetween(ArrayList value) { this.AddedDateTimeBetween = value; return this; } public ArrayList getAddedDateTimeIn() { return AddedDateTimeIn; } public v_SY_WebhookSubscriber_MessageResponsesQuery setAddedDateTimeIn(ArrayList value) { this.AddedDateTimeIn = value; return this; } public Date getMessageLastSavedDateTime() { return MessageLastSavedDateTime; } public v_SY_WebhookSubscriber_MessageResponsesQuery setMessageLastSavedDateTime(Date value) { this.MessageLastSavedDateTime = value; return this; } public Date getMessageLastSavedDateTimeGreaterThanOrEqualTo() { return MessageLastSavedDateTimeGreaterThanOrEqualTo; } public v_SY_WebhookSubscriber_MessageResponsesQuery setMessageLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.MessageLastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getMessageLastSavedDateTimeGreaterThan() { return MessageLastSavedDateTimeGreaterThan; } public v_SY_WebhookSubscriber_MessageResponsesQuery setMessageLastSavedDateTimeGreaterThan(Date value) { this.MessageLastSavedDateTimeGreaterThan = value; return this; } public Date getMessageLastSavedDateTimeLessThan() { return MessageLastSavedDateTimeLessThan; } public v_SY_WebhookSubscriber_MessageResponsesQuery setMessageLastSavedDateTimeLessThan(Date value) { this.MessageLastSavedDateTimeLessThan = value; return this; } public Date getMessageLastSavedDateTimeLessThanOrEqualTo() { return MessageLastSavedDateTimeLessThanOrEqualTo; } public v_SY_WebhookSubscriber_MessageResponsesQuery setMessageLastSavedDateTimeLessThanOrEqualTo(Date value) { this.MessageLastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getMessageLastSavedDateTimeNotEqualTo() { return MessageLastSavedDateTimeNotEqualTo; } public v_SY_WebhookSubscriber_MessageResponsesQuery setMessageLastSavedDateTimeNotEqualTo(Date value) { this.MessageLastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getMessageLastSavedDateTimeBetween() { return MessageLastSavedDateTimeBetween; } public v_SY_WebhookSubscriber_MessageResponsesQuery setMessageLastSavedDateTimeBetween(ArrayList value) { this.MessageLastSavedDateTimeBetween = value; return this; } public ArrayList getMessageLastSavedDateTimeIn() { return MessageLastSavedDateTimeIn; } public v_SY_WebhookSubscriber_MessageResponsesQuery setMessageLastSavedDateTimeIn(ArrayList value) { this.MessageLastSavedDateTimeIn = value; return this; } public Integer getHttpCode() { return HTTPCode; } public v_SY_WebhookSubscriber_MessageResponsesQuery setHttpCode(Integer value) { this.HTTPCode = value; return this; } public Integer getHttpCodeGreaterThanOrEqualTo() { return HTTPCodeGreaterThanOrEqualTo; } public v_SY_WebhookSubscriber_MessageResponsesQuery setHttpCodeGreaterThanOrEqualTo(Integer value) { this.HTTPCodeGreaterThanOrEqualTo = value; return this; } public Integer getHttpCodeGreaterThan() { return HTTPCodeGreaterThan; } public v_SY_WebhookSubscriber_MessageResponsesQuery setHttpCodeGreaterThan(Integer value) { this.HTTPCodeGreaterThan = value; return this; } public Integer getHttpCodeLessThan() { return HTTPCodeLessThan; } public v_SY_WebhookSubscriber_MessageResponsesQuery setHttpCodeLessThan(Integer value) { this.HTTPCodeLessThan = value; return this; } public Integer getHttpCodeLessThanOrEqualTo() { return HTTPCodeLessThanOrEqualTo; } public v_SY_WebhookSubscriber_MessageResponsesQuery setHttpCodeLessThanOrEqualTo(Integer value) { this.HTTPCodeLessThanOrEqualTo = value; return this; } public Integer getHttpCodeNotEqualTo() { return HTTPCodeNotEqualTo; } public v_SY_WebhookSubscriber_MessageResponsesQuery setHttpCodeNotEqualTo(Integer value) { this.HTTPCodeNotEqualTo = value; return this; } public ArrayList getHttpCodeBetween() { return HTTPCodeBetween; } public v_SY_WebhookSubscriber_MessageResponsesQuery setHttpCodeBetween(ArrayList value) { this.HTTPCodeBetween = value; return this; } public ArrayList getHttpCodeIn() { return HTTPCodeIn; } public v_SY_WebhookSubscriber_MessageResponsesQuery setHttpCodeIn(ArrayList value) { this.HTTPCodeIn = value; return this; } public String getMessage() { return Message; } public v_SY_WebhookSubscriber_MessageResponsesQuery setMessage(String value) { this.Message = value; return this; } public String getMessageStartsWith() { return MessageStartsWith; } public v_SY_WebhookSubscriber_MessageResponsesQuery setMessageStartsWith(String value) { this.MessageStartsWith = value; return this; } public String getMessageEndsWith() { return MessageEndsWith; } public v_SY_WebhookSubscriber_MessageResponsesQuery setMessageEndsWith(String value) { this.MessageEndsWith = value; return this; } public String getMessageContains() { return MessageContains; } public v_SY_WebhookSubscriber_MessageResponsesQuery setMessageContains(String value) { this.MessageContains = value; return this; } public String getMessageLike() { return MessageLike; } public v_SY_WebhookSubscriber_MessageResponsesQuery setMessageLike(String value) { this.MessageLike = value; return this; } public ArrayList getMessageBetween() { return MessageBetween; } public v_SY_WebhookSubscriber_MessageResponsesQuery setMessageBetween(ArrayList value) { this.MessageBetween = value; return this; } public ArrayList getMessageIn() { return MessageIn; } public v_SY_WebhookSubscriber_MessageResponsesQuery setMessageIn(ArrayList value) { this.MessageIn = value; return this; } public Integer getItemNo() { return ItemNo; } public v_SY_WebhookSubscriber_MessageResponsesQuery setItemNo(Integer value) { this.ItemNo = value; return this; } public Integer getItemNoGreaterThanOrEqualTo() { return ItemNoGreaterThanOrEqualTo; } public v_SY_WebhookSubscriber_MessageResponsesQuery setItemNoGreaterThanOrEqualTo(Integer value) { this.ItemNoGreaterThanOrEqualTo = value; return this; } public Integer getItemNoGreaterThan() { return ItemNoGreaterThan; } public v_SY_WebhookSubscriber_MessageResponsesQuery setItemNoGreaterThan(Integer value) { this.ItemNoGreaterThan = value; return this; } public Integer getItemNoLessThan() { return ItemNoLessThan; } public v_SY_WebhookSubscriber_MessageResponsesQuery setItemNoLessThan(Integer value) { this.ItemNoLessThan = value; return this; } public Integer getItemNoLessThanOrEqualTo() { return ItemNoLessThanOrEqualTo; } public v_SY_WebhookSubscriber_MessageResponsesQuery setItemNoLessThanOrEqualTo(Integer value) { this.ItemNoLessThanOrEqualTo = value; return this; } public Integer getItemNoNotEqualTo() { return ItemNoNotEqualTo; } public v_SY_WebhookSubscriber_MessageResponsesQuery setItemNoNotEqualTo(Integer value) { this.ItemNoNotEqualTo = value; return this; } public ArrayList getItemNoBetween() { return ItemNoBetween; } public v_SY_WebhookSubscriber_MessageResponsesQuery setItemNoBetween(ArrayList value) { this.ItemNoBetween = value; return this; } public ArrayList getItemNoIn() { return ItemNoIn; } public v_SY_WebhookSubscriber_MessageResponsesQuery setItemNoIn(ArrayList value) { this.ItemNoIn = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public v_SY_WebhookSubscriber_MessageResponsesQuery setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getLastSavedDateTimeGreaterThanOrEqualTo() { return LastSavedDateTimeGreaterThanOrEqualTo; } public v_SY_WebhookSubscriber_MessageResponsesQuery setLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.LastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeGreaterThan() { return LastSavedDateTimeGreaterThan; } public v_SY_WebhookSubscriber_MessageResponsesQuery setLastSavedDateTimeGreaterThan(Date value) { this.LastSavedDateTimeGreaterThan = value; return this; } public Date getLastSavedDateTimeLessThan() { return LastSavedDateTimeLessThan; } public v_SY_WebhookSubscriber_MessageResponsesQuery setLastSavedDateTimeLessThan(Date value) { this.LastSavedDateTimeLessThan = value; return this; } public Date getLastSavedDateTimeLessThanOrEqualTo() { return LastSavedDateTimeLessThanOrEqualTo; } public v_SY_WebhookSubscriber_MessageResponsesQuery setLastSavedDateTimeLessThanOrEqualTo(Date value) { this.LastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeNotEqualTo() { return LastSavedDateTimeNotEqualTo; } public v_SY_WebhookSubscriber_MessageResponsesQuery setLastSavedDateTimeNotEqualTo(Date value) { this.LastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getLastSavedDateTimeBetween() { return LastSavedDateTimeBetween; } public v_SY_WebhookSubscriber_MessageResponsesQuery setLastSavedDateTimeBetween(ArrayList value) { this.LastSavedDateTimeBetween = value; return this; } public ArrayList getLastSavedDateTimeIn() { return LastSavedDateTimeIn; } public v_SY_WebhookSubscriber_MessageResponsesQuery setLastSavedDateTimeIn(ArrayList value) { this.LastSavedDateTimeIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class v_SY_WebhookSubscriber_MessagesQuery extends QueryDb implements IReturn> { public UUID SubscriberID = null; public ArrayList SubscriberIDIn = null; public UUID SubscriptionID = null; public ArrayList SubscriptionIDIn = null; public UUID MessageID = null; public ArrayList MessageIDIn = null; public String EventName = null; public String EventNameStartsWith = null; public String EventNameEndsWith = null; public String EventNameContains = null; public String EventNameLike = null; public ArrayList EventNameBetween = null; public ArrayList EventNameIn = null; public String URL = null; public String URLStartsWith = null; public String URLEndsWith = null; public String URLContains = null; public String URLLike = null; public ArrayList URLBetween = null; public ArrayList URLIn = null; public String Body = null; public String BodyStartsWith = null; public String BodyEndsWith = null; public String BodyContains = null; public String BodyLike = null; public ArrayList BodyBetween = null; public ArrayList BodyIn = null; public Integer ItemNo = null; public Integer ItemNoGreaterThanOrEqualTo = null; public Integer ItemNoGreaterThan = null; public Integer ItemNoLessThan = null; public Integer ItemNoLessThanOrEqualTo = null; public Integer ItemNoNotEqualTo = null; public ArrayList ItemNoBetween = null; public ArrayList ItemNoIn = null; public Short Status = null; public Short StatusGreaterThanOrEqualTo = null; public Short StatusGreaterThan = null; public Short StatusLessThan = null; public Short StatusLessThanOrEqualTo = null; public Short StatusNotEqualTo = null; public ArrayList StatusBetween = null; public ArrayList StatusIn = null; public Integer Retries = null; public Integer RetriesGreaterThanOrEqualTo = null; public Integer RetriesGreaterThan = null; public Integer RetriesLessThan = null; public Integer RetriesLessThanOrEqualTo = null; public Integer RetriesNotEqualTo = null; public ArrayList RetriesBetween = null; public ArrayList RetriesIn = null; public Date AddedDateTime = null; public Date AddedDateTimeGreaterThanOrEqualTo = null; public Date AddedDateTimeGreaterThan = null; public Date AddedDateTimeLessThan = null; public Date AddedDateTimeLessThanOrEqualTo = null; public Date AddedDateTimeNotEqualTo = null; public ArrayList AddedDateTimeBetween = null; public ArrayList AddedDateTimeIn = null; public Date LastSavedDateTime = null; public Date LastSavedDateTimeGreaterThanOrEqualTo = null; public Date LastSavedDateTimeGreaterThan = null; public Date LastSavedDateTimeLessThan = null; public Date LastSavedDateTimeLessThanOrEqualTo = null; public Date LastSavedDateTimeNotEqualTo = null; public ArrayList LastSavedDateTimeBetween = null; public ArrayList LastSavedDateTimeIn = null; public Integer LastMessageResponseHTTPCode = null; public Integer LastMessageResponseHTTPCodeGreaterThanOrEqualTo = null; public Integer LastMessageResponseHTTPCodeGreaterThan = null; public Integer LastMessageResponseHTTPCodeLessThan = null; public Integer LastMessageResponseHTTPCodeLessThanOrEqualTo = null; public Integer LastMessageResponseHTTPCodeNotEqualTo = null; public ArrayList LastMessageResponseHTTPCodeBetween = null; public ArrayList LastMessageResponseHTTPCodeIn = null; public String LastMessageResponseMessage = null; public String LastMessageResponseMessageStartsWith = null; public String LastMessageResponseMessageEndsWith = null; public String LastMessageResponseMessageContains = null; public String LastMessageResponseMessageLike = null; public ArrayList LastMessageResponseMessageBetween = null; public ArrayList LastMessageResponseMessageIn = null; public UUID getSubscriberID() { return SubscriberID; } public v_SY_WebhookSubscriber_MessagesQuery setSubscriberID(UUID value) { this.SubscriberID = value; return this; } public ArrayList getSubscriberIDIn() { return SubscriberIDIn; } public v_SY_WebhookSubscriber_MessagesQuery setSubscriberIDIn(ArrayList value) { this.SubscriberIDIn = value; return this; } public UUID getSubscriptionID() { return SubscriptionID; } public v_SY_WebhookSubscriber_MessagesQuery setSubscriptionID(UUID value) { this.SubscriptionID = value; return this; } public ArrayList getSubscriptionIDIn() { return SubscriptionIDIn; } public v_SY_WebhookSubscriber_MessagesQuery setSubscriptionIDIn(ArrayList value) { this.SubscriptionIDIn = value; return this; } public UUID getMessageID() { return MessageID; } public v_SY_WebhookSubscriber_MessagesQuery setMessageID(UUID value) { this.MessageID = value; return this; } public ArrayList getMessageIDIn() { return MessageIDIn; } public v_SY_WebhookSubscriber_MessagesQuery setMessageIDIn(ArrayList value) { this.MessageIDIn = value; return this; } public String getEventName() { return EventName; } public v_SY_WebhookSubscriber_MessagesQuery setEventName(String value) { this.EventName = value; return this; } public String getEventNameStartsWith() { return EventNameStartsWith; } public v_SY_WebhookSubscriber_MessagesQuery setEventNameStartsWith(String value) { this.EventNameStartsWith = value; return this; } public String getEventNameEndsWith() { return EventNameEndsWith; } public v_SY_WebhookSubscriber_MessagesQuery setEventNameEndsWith(String value) { this.EventNameEndsWith = value; return this; } public String getEventNameContains() { return EventNameContains; } public v_SY_WebhookSubscriber_MessagesQuery setEventNameContains(String value) { this.EventNameContains = value; return this; } public String getEventNameLike() { return EventNameLike; } public v_SY_WebhookSubscriber_MessagesQuery setEventNameLike(String value) { this.EventNameLike = value; return this; } public ArrayList getEventNameBetween() { return EventNameBetween; } public v_SY_WebhookSubscriber_MessagesQuery setEventNameBetween(ArrayList value) { this.EventNameBetween = value; return this; } public ArrayList getEventNameIn() { return EventNameIn; } public v_SY_WebhookSubscriber_MessagesQuery setEventNameIn(ArrayList value) { this.EventNameIn = value; return this; } public String getUrl() { return URL; } public v_SY_WebhookSubscriber_MessagesQuery setUrl(String value) { this.URL = value; return this; } public String getUrlStartsWith() { return URLStartsWith; } public v_SY_WebhookSubscriber_MessagesQuery setUrlStartsWith(String value) { this.URLStartsWith = value; return this; } public String getUrlEndsWith() { return URLEndsWith; } public v_SY_WebhookSubscriber_MessagesQuery setUrlEndsWith(String value) { this.URLEndsWith = value; return this; } public String getUrlContains() { return URLContains; } public v_SY_WebhookSubscriber_MessagesQuery setUrlContains(String value) { this.URLContains = value; return this; } public String getUrlLike() { return URLLike; } public v_SY_WebhookSubscriber_MessagesQuery setUrlLike(String value) { this.URLLike = value; return this; } public ArrayList getUrlBetween() { return URLBetween; } public v_SY_WebhookSubscriber_MessagesQuery setUrlBetween(ArrayList value) { this.URLBetween = value; return this; } public ArrayList getUrlIn() { return URLIn; } public v_SY_WebhookSubscriber_MessagesQuery setUrlIn(ArrayList value) { this.URLIn = value; return this; } public String getBody() { return Body; } public v_SY_WebhookSubscriber_MessagesQuery setBody(String value) { this.Body = value; return this; } public String getBodyStartsWith() { return BodyStartsWith; } public v_SY_WebhookSubscriber_MessagesQuery setBodyStartsWith(String value) { this.BodyStartsWith = value; return this; } public String getBodyEndsWith() { return BodyEndsWith; } public v_SY_WebhookSubscriber_MessagesQuery setBodyEndsWith(String value) { this.BodyEndsWith = value; return this; } public String getBodyContains() { return BodyContains; } public v_SY_WebhookSubscriber_MessagesQuery setBodyContains(String value) { this.BodyContains = value; return this; } public String getBodyLike() { return BodyLike; } public v_SY_WebhookSubscriber_MessagesQuery setBodyLike(String value) { this.BodyLike = value; return this; } public ArrayList getBodyBetween() { return BodyBetween; } public v_SY_WebhookSubscriber_MessagesQuery setBodyBetween(ArrayList value) { this.BodyBetween = value; return this; } public ArrayList getBodyIn() { return BodyIn; } public v_SY_WebhookSubscriber_MessagesQuery setBodyIn(ArrayList value) { this.BodyIn = value; return this; } public Integer getItemNo() { return ItemNo; } public v_SY_WebhookSubscriber_MessagesQuery setItemNo(Integer value) { this.ItemNo = value; return this; } public Integer getItemNoGreaterThanOrEqualTo() { return ItemNoGreaterThanOrEqualTo; } public v_SY_WebhookSubscriber_MessagesQuery setItemNoGreaterThanOrEqualTo(Integer value) { this.ItemNoGreaterThanOrEqualTo = value; return this; } public Integer getItemNoGreaterThan() { return ItemNoGreaterThan; } public v_SY_WebhookSubscriber_MessagesQuery setItemNoGreaterThan(Integer value) { this.ItemNoGreaterThan = value; return this; } public Integer getItemNoLessThan() { return ItemNoLessThan; } public v_SY_WebhookSubscriber_MessagesQuery setItemNoLessThan(Integer value) { this.ItemNoLessThan = value; return this; } public Integer getItemNoLessThanOrEqualTo() { return ItemNoLessThanOrEqualTo; } public v_SY_WebhookSubscriber_MessagesQuery setItemNoLessThanOrEqualTo(Integer value) { this.ItemNoLessThanOrEqualTo = value; return this; } public Integer getItemNoNotEqualTo() { return ItemNoNotEqualTo; } public v_SY_WebhookSubscriber_MessagesQuery setItemNoNotEqualTo(Integer value) { this.ItemNoNotEqualTo = value; return this; } public ArrayList getItemNoBetween() { return ItemNoBetween; } public v_SY_WebhookSubscriber_MessagesQuery setItemNoBetween(ArrayList value) { this.ItemNoBetween = value; return this; } public ArrayList getItemNoIn() { return ItemNoIn; } public v_SY_WebhookSubscriber_MessagesQuery setItemNoIn(ArrayList value) { this.ItemNoIn = value; return this; } public Short getStatus() { return Status; } public v_SY_WebhookSubscriber_MessagesQuery setStatus(Short value) { this.Status = value; return this; } public Short getStatusGreaterThanOrEqualTo() { return StatusGreaterThanOrEqualTo; } public v_SY_WebhookSubscriber_MessagesQuery setStatusGreaterThanOrEqualTo(Short value) { this.StatusGreaterThanOrEqualTo = value; return this; } public Short getStatusGreaterThan() { return StatusGreaterThan; } public v_SY_WebhookSubscriber_MessagesQuery setStatusGreaterThan(Short value) { this.StatusGreaterThan = value; return this; } public Short getStatusLessThan() { return StatusLessThan; } public v_SY_WebhookSubscriber_MessagesQuery setStatusLessThan(Short value) { this.StatusLessThan = value; return this; } public Short getStatusLessThanOrEqualTo() { return StatusLessThanOrEqualTo; } public v_SY_WebhookSubscriber_MessagesQuery setStatusLessThanOrEqualTo(Short value) { this.StatusLessThanOrEqualTo = value; return this; } public Short getStatusNotEqualTo() { return StatusNotEqualTo; } public v_SY_WebhookSubscriber_MessagesQuery setStatusNotEqualTo(Short value) { this.StatusNotEqualTo = value; return this; } public ArrayList getStatusBetween() { return StatusBetween; } public v_SY_WebhookSubscriber_MessagesQuery setStatusBetween(ArrayList value) { this.StatusBetween = value; return this; } public ArrayList getStatusIn() { return StatusIn; } public v_SY_WebhookSubscriber_MessagesQuery setStatusIn(ArrayList value) { this.StatusIn = value; return this; } public Integer getRetries() { return Retries; } public v_SY_WebhookSubscriber_MessagesQuery setRetries(Integer value) { this.Retries = value; return this; } public Integer getRetriesGreaterThanOrEqualTo() { return RetriesGreaterThanOrEqualTo; } public v_SY_WebhookSubscriber_MessagesQuery setRetriesGreaterThanOrEqualTo(Integer value) { this.RetriesGreaterThanOrEqualTo = value; return this; } public Integer getRetriesGreaterThan() { return RetriesGreaterThan; } public v_SY_WebhookSubscriber_MessagesQuery setRetriesGreaterThan(Integer value) { this.RetriesGreaterThan = value; return this; } public Integer getRetriesLessThan() { return RetriesLessThan; } public v_SY_WebhookSubscriber_MessagesQuery setRetriesLessThan(Integer value) { this.RetriesLessThan = value; return this; } public Integer getRetriesLessThanOrEqualTo() { return RetriesLessThanOrEqualTo; } public v_SY_WebhookSubscriber_MessagesQuery setRetriesLessThanOrEqualTo(Integer value) { this.RetriesLessThanOrEqualTo = value; return this; } public Integer getRetriesNotEqualTo() { return RetriesNotEqualTo; } public v_SY_WebhookSubscriber_MessagesQuery setRetriesNotEqualTo(Integer value) { this.RetriesNotEqualTo = value; return this; } public ArrayList getRetriesBetween() { return RetriesBetween; } public v_SY_WebhookSubscriber_MessagesQuery setRetriesBetween(ArrayList value) { this.RetriesBetween = value; return this; } public ArrayList getRetriesIn() { return RetriesIn; } public v_SY_WebhookSubscriber_MessagesQuery setRetriesIn(ArrayList value) { this.RetriesIn = value; return this; } public Date getAddedDateTime() { return AddedDateTime; } public v_SY_WebhookSubscriber_MessagesQuery setAddedDateTime(Date value) { this.AddedDateTime = value; return this; } public Date getAddedDateTimeGreaterThanOrEqualTo() { return AddedDateTimeGreaterThanOrEqualTo; } public v_SY_WebhookSubscriber_MessagesQuery setAddedDateTimeGreaterThanOrEqualTo(Date value) { this.AddedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getAddedDateTimeGreaterThan() { return AddedDateTimeGreaterThan; } public v_SY_WebhookSubscriber_MessagesQuery setAddedDateTimeGreaterThan(Date value) { this.AddedDateTimeGreaterThan = value; return this; } public Date getAddedDateTimeLessThan() { return AddedDateTimeLessThan; } public v_SY_WebhookSubscriber_MessagesQuery setAddedDateTimeLessThan(Date value) { this.AddedDateTimeLessThan = value; return this; } public Date getAddedDateTimeLessThanOrEqualTo() { return AddedDateTimeLessThanOrEqualTo; } public v_SY_WebhookSubscriber_MessagesQuery setAddedDateTimeLessThanOrEqualTo(Date value) { this.AddedDateTimeLessThanOrEqualTo = value; return this; } public Date getAddedDateTimeNotEqualTo() { return AddedDateTimeNotEqualTo; } public v_SY_WebhookSubscriber_MessagesQuery setAddedDateTimeNotEqualTo(Date value) { this.AddedDateTimeNotEqualTo = value; return this; } public ArrayList getAddedDateTimeBetween() { return AddedDateTimeBetween; } public v_SY_WebhookSubscriber_MessagesQuery setAddedDateTimeBetween(ArrayList value) { this.AddedDateTimeBetween = value; return this; } public ArrayList getAddedDateTimeIn() { return AddedDateTimeIn; } public v_SY_WebhookSubscriber_MessagesQuery setAddedDateTimeIn(ArrayList value) { this.AddedDateTimeIn = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public v_SY_WebhookSubscriber_MessagesQuery setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getLastSavedDateTimeGreaterThanOrEqualTo() { return LastSavedDateTimeGreaterThanOrEqualTo; } public v_SY_WebhookSubscriber_MessagesQuery setLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.LastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeGreaterThan() { return LastSavedDateTimeGreaterThan; } public v_SY_WebhookSubscriber_MessagesQuery setLastSavedDateTimeGreaterThan(Date value) { this.LastSavedDateTimeGreaterThan = value; return this; } public Date getLastSavedDateTimeLessThan() { return LastSavedDateTimeLessThan; } public v_SY_WebhookSubscriber_MessagesQuery setLastSavedDateTimeLessThan(Date value) { this.LastSavedDateTimeLessThan = value; return this; } public Date getLastSavedDateTimeLessThanOrEqualTo() { return LastSavedDateTimeLessThanOrEqualTo; } public v_SY_WebhookSubscriber_MessagesQuery setLastSavedDateTimeLessThanOrEqualTo(Date value) { this.LastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeNotEqualTo() { return LastSavedDateTimeNotEqualTo; } public v_SY_WebhookSubscriber_MessagesQuery setLastSavedDateTimeNotEqualTo(Date value) { this.LastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getLastSavedDateTimeBetween() { return LastSavedDateTimeBetween; } public v_SY_WebhookSubscriber_MessagesQuery setLastSavedDateTimeBetween(ArrayList value) { this.LastSavedDateTimeBetween = value; return this; } public ArrayList getLastSavedDateTimeIn() { return LastSavedDateTimeIn; } public v_SY_WebhookSubscriber_MessagesQuery setLastSavedDateTimeIn(ArrayList value) { this.LastSavedDateTimeIn = value; return this; } public Integer getLastMessageResponseHTTPCode() { return LastMessageResponseHTTPCode; } public v_SY_WebhookSubscriber_MessagesQuery setLastMessageResponseHTTPCode(Integer value) { this.LastMessageResponseHTTPCode = value; return this; } public Integer getLastMessageResponseHTTPCodeGreaterThanOrEqualTo() { return LastMessageResponseHTTPCodeGreaterThanOrEqualTo; } public v_SY_WebhookSubscriber_MessagesQuery setLastMessageResponseHTTPCodeGreaterThanOrEqualTo(Integer value) { this.LastMessageResponseHTTPCodeGreaterThanOrEqualTo = value; return this; } public Integer getLastMessageResponseHTTPCodeGreaterThan() { return LastMessageResponseHTTPCodeGreaterThan; } public v_SY_WebhookSubscriber_MessagesQuery setLastMessageResponseHTTPCodeGreaterThan(Integer value) { this.LastMessageResponseHTTPCodeGreaterThan = value; return this; } public Integer getLastMessageResponseHTTPCodeLessThan() { return LastMessageResponseHTTPCodeLessThan; } public v_SY_WebhookSubscriber_MessagesQuery setLastMessageResponseHTTPCodeLessThan(Integer value) { this.LastMessageResponseHTTPCodeLessThan = value; return this; } public Integer getLastMessageResponseHTTPCodeLessThanOrEqualTo() { return LastMessageResponseHTTPCodeLessThanOrEqualTo; } public v_SY_WebhookSubscriber_MessagesQuery setLastMessageResponseHTTPCodeLessThanOrEqualTo(Integer value) { this.LastMessageResponseHTTPCodeLessThanOrEqualTo = value; return this; } public Integer getLastMessageResponseHTTPCodeNotEqualTo() { return LastMessageResponseHTTPCodeNotEqualTo; } public v_SY_WebhookSubscriber_MessagesQuery setLastMessageResponseHTTPCodeNotEqualTo(Integer value) { this.LastMessageResponseHTTPCodeNotEqualTo = value; return this; } public ArrayList getLastMessageResponseHTTPCodeBetween() { return LastMessageResponseHTTPCodeBetween; } public v_SY_WebhookSubscriber_MessagesQuery setLastMessageResponseHTTPCodeBetween(ArrayList value) { this.LastMessageResponseHTTPCodeBetween = value; return this; } public ArrayList getLastMessageResponseHTTPCodeIn() { return LastMessageResponseHTTPCodeIn; } public v_SY_WebhookSubscriber_MessagesQuery setLastMessageResponseHTTPCodeIn(ArrayList value) { this.LastMessageResponseHTTPCodeIn = value; return this; } public String getLastMessageResponseMessage() { return LastMessageResponseMessage; } public v_SY_WebhookSubscriber_MessagesQuery setLastMessageResponseMessage(String value) { this.LastMessageResponseMessage = value; return this; } public String getLastMessageResponseMessageStartsWith() { return LastMessageResponseMessageStartsWith; } public v_SY_WebhookSubscriber_MessagesQuery setLastMessageResponseMessageStartsWith(String value) { this.LastMessageResponseMessageStartsWith = value; return this; } public String getLastMessageResponseMessageEndsWith() { return LastMessageResponseMessageEndsWith; } public v_SY_WebhookSubscriber_MessagesQuery setLastMessageResponseMessageEndsWith(String value) { this.LastMessageResponseMessageEndsWith = value; return this; } public String getLastMessageResponseMessageContains() { return LastMessageResponseMessageContains; } public v_SY_WebhookSubscriber_MessagesQuery setLastMessageResponseMessageContains(String value) { this.LastMessageResponseMessageContains = value; return this; } public String getLastMessageResponseMessageLike() { return LastMessageResponseMessageLike; } public v_SY_WebhookSubscriber_MessagesQuery setLastMessageResponseMessageLike(String value) { this.LastMessageResponseMessageLike = value; return this; } public ArrayList getLastMessageResponseMessageBetween() { return LastMessageResponseMessageBetween; } public v_SY_WebhookSubscriber_MessagesQuery setLastMessageResponseMessageBetween(ArrayList value) { this.LastMessageResponseMessageBetween = value; return this; } public ArrayList getLastMessageResponseMessageIn() { return LastMessageResponseMessageIn; } public v_SY_WebhookSubscriber_MessagesQuery setLastMessageResponseMessageIn(ArrayList value) { this.LastMessageResponseMessageIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class v_TaskPrioritiesQuery extends QueryDb implements IReturn> { public String SM_Jobs_RecID = null; public String SM_Jobs_RecIDStartsWith = null; public String SM_Jobs_RecIDEndsWith = null; public String SM_Jobs_RecIDContains = null; public String SM_Jobs_RecIDLike = null; public ArrayList SM_Jobs_RecIDBetween = null; public ArrayList SM_Jobs_RecIDIn = null; public String SM_Tasks_RecID = null; public String SM_Tasks_RecIDStartsWith = null; public String SM_Tasks_RecIDEndsWith = null; public String SM_Tasks_RecIDContains = null; public String SM_Tasks_RecIDLike = null; public ArrayList SM_Tasks_RecIDBetween = null; public ArrayList SM_Tasks_RecIDIn = null; public String SM_Priorities_RecID = null; public String SM_Priorities_RecIDStartsWith = null; public String SM_Priorities_RecIDEndsWith = null; public String SM_Priorities_RecIDContains = null; public String SM_Priorities_RecIDLike = null; public ArrayList SM_Priorities_RecIDBetween = null; public ArrayList SM_Priorities_RecIDIn = null; public BigDecimal ResponseTime = null; public BigDecimal ResponseTimeGreaterThanOrEqualTo = null; public BigDecimal ResponseTimeGreaterThan = null; public BigDecimal ResponseTimeLessThan = null; public BigDecimal ResponseTimeLessThanOrEqualTo = null; public BigDecimal ResponseTimeNotEqualTo = null; public ArrayList ResponseTimeBetween = null; public ArrayList ResponseTimeIn = null; public String getSmJobsRecID() { return SM_Jobs_RecID; } public v_TaskPrioritiesQuery setSmJobsRecID(String value) { this.SM_Jobs_RecID = value; return this; } public String getSmJobsRecIDStartsWith() { return SM_Jobs_RecIDStartsWith; } public v_TaskPrioritiesQuery setSmJobsRecIDStartsWith(String value) { this.SM_Jobs_RecIDStartsWith = value; return this; } public String getSmJobsRecIDEndsWith() { return SM_Jobs_RecIDEndsWith; } public v_TaskPrioritiesQuery setSmJobsRecIDEndsWith(String value) { this.SM_Jobs_RecIDEndsWith = value; return this; } public String getSmJobsRecIDContains() { return SM_Jobs_RecIDContains; } public v_TaskPrioritiesQuery setSmJobsRecIDContains(String value) { this.SM_Jobs_RecIDContains = value; return this; } public String getSmJobsRecIDLike() { return SM_Jobs_RecIDLike; } public v_TaskPrioritiesQuery setSmJobsRecIDLike(String value) { this.SM_Jobs_RecIDLike = value; return this; } public ArrayList getSmJobsRecIDBetween() { return SM_Jobs_RecIDBetween; } public v_TaskPrioritiesQuery setSmJobsRecIDBetween(ArrayList value) { this.SM_Jobs_RecIDBetween = value; return this; } public ArrayList getSmJobsRecIDIn() { return SM_Jobs_RecIDIn; } public v_TaskPrioritiesQuery setSmJobsRecIDIn(ArrayList value) { this.SM_Jobs_RecIDIn = value; return this; } public String getSmTasksRecID() { return SM_Tasks_RecID; } public v_TaskPrioritiesQuery setSmTasksRecID(String value) { this.SM_Tasks_RecID = value; return this; } public String getSmTasksRecIDStartsWith() { return SM_Tasks_RecIDStartsWith; } public v_TaskPrioritiesQuery setSmTasksRecIDStartsWith(String value) { this.SM_Tasks_RecIDStartsWith = value; return this; } public String getSmTasksRecIDEndsWith() { return SM_Tasks_RecIDEndsWith; } public v_TaskPrioritiesQuery setSmTasksRecIDEndsWith(String value) { this.SM_Tasks_RecIDEndsWith = value; return this; } public String getSmTasksRecIDContains() { return SM_Tasks_RecIDContains; } public v_TaskPrioritiesQuery setSmTasksRecIDContains(String value) { this.SM_Tasks_RecIDContains = value; return this; } public String getSmTasksRecIDLike() { return SM_Tasks_RecIDLike; } public v_TaskPrioritiesQuery setSmTasksRecIDLike(String value) { this.SM_Tasks_RecIDLike = value; return this; } public ArrayList getSmTasksRecIDBetween() { return SM_Tasks_RecIDBetween; } public v_TaskPrioritiesQuery setSmTasksRecIDBetween(ArrayList value) { this.SM_Tasks_RecIDBetween = value; return this; } public ArrayList getSmTasksRecIDIn() { return SM_Tasks_RecIDIn; } public v_TaskPrioritiesQuery setSmTasksRecIDIn(ArrayList value) { this.SM_Tasks_RecIDIn = value; return this; } public String getSmPrioritiesRecID() { return SM_Priorities_RecID; } public v_TaskPrioritiesQuery setSmPrioritiesRecID(String value) { this.SM_Priorities_RecID = value; return this; } public String getSmPrioritiesRecIDStartsWith() { return SM_Priorities_RecIDStartsWith; } public v_TaskPrioritiesQuery setSmPrioritiesRecIDStartsWith(String value) { this.SM_Priorities_RecIDStartsWith = value; return this; } public String getSmPrioritiesRecIDEndsWith() { return SM_Priorities_RecIDEndsWith; } public v_TaskPrioritiesQuery setSmPrioritiesRecIDEndsWith(String value) { this.SM_Priorities_RecIDEndsWith = value; return this; } public String getSmPrioritiesRecIDContains() { return SM_Priorities_RecIDContains; } public v_TaskPrioritiesQuery setSmPrioritiesRecIDContains(String value) { this.SM_Priorities_RecIDContains = value; return this; } public String getSmPrioritiesRecIDLike() { return SM_Priorities_RecIDLike; } public v_TaskPrioritiesQuery setSmPrioritiesRecIDLike(String value) { this.SM_Priorities_RecIDLike = value; return this; } public ArrayList getSmPrioritiesRecIDBetween() { return SM_Priorities_RecIDBetween; } public v_TaskPrioritiesQuery setSmPrioritiesRecIDBetween(ArrayList value) { this.SM_Priorities_RecIDBetween = value; return this; } public ArrayList getSmPrioritiesRecIDIn() { return SM_Priorities_RecIDIn; } public v_TaskPrioritiesQuery setSmPrioritiesRecIDIn(ArrayList value) { this.SM_Priorities_RecIDIn = value; return this; } public BigDecimal getResponseTime() { return ResponseTime; } public v_TaskPrioritiesQuery setResponseTime(BigDecimal value) { this.ResponseTime = value; return this; } public BigDecimal getResponseTimeGreaterThanOrEqualTo() { return ResponseTimeGreaterThanOrEqualTo; } public v_TaskPrioritiesQuery setResponseTimeGreaterThanOrEqualTo(BigDecimal value) { this.ResponseTimeGreaterThanOrEqualTo = value; return this; } public BigDecimal getResponseTimeGreaterThan() { return ResponseTimeGreaterThan; } public v_TaskPrioritiesQuery setResponseTimeGreaterThan(BigDecimal value) { this.ResponseTimeGreaterThan = value; return this; } public BigDecimal getResponseTimeLessThan() { return ResponseTimeLessThan; } public v_TaskPrioritiesQuery setResponseTimeLessThan(BigDecimal value) { this.ResponseTimeLessThan = value; return this; } public BigDecimal getResponseTimeLessThanOrEqualTo() { return ResponseTimeLessThanOrEqualTo; } public v_TaskPrioritiesQuery setResponseTimeLessThanOrEqualTo(BigDecimal value) { this.ResponseTimeLessThanOrEqualTo = value; return this; } public BigDecimal getResponseTimeNotEqualTo() { return ResponseTimeNotEqualTo; } public v_TaskPrioritiesQuery setResponseTimeNotEqualTo(BigDecimal value) { this.ResponseTimeNotEqualTo = value; return this; } public ArrayList getResponseTimeBetween() { return ResponseTimeBetween; } public v_TaskPrioritiesQuery setResponseTimeBetween(ArrayList value) { this.ResponseTimeBetween = value; return this; } public ArrayList getResponseTimeIn() { return ResponseTimeIn; } public v_TaskPrioritiesQuery setResponseTimeIn(ArrayList value) { this.ResponseTimeIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class v_TaskStatusesQuery extends QueryDb implements IReturn> { public String SM_Jobs_RecID = null; public String SM_Jobs_RecIDStartsWith = null; public String SM_Jobs_RecIDEndsWith = null; public String SM_Jobs_RecIDContains = null; public String SM_Jobs_RecIDLike = null; public ArrayList SM_Jobs_RecIDBetween = null; public ArrayList SM_Jobs_RecIDIn = null; public String SM_Tasks_RecID = null; public String SM_Tasks_RecIDStartsWith = null; public String SM_Tasks_RecIDEndsWith = null; public String SM_Tasks_RecIDContains = null; public String SM_Tasks_RecIDLike = null; public ArrayList SM_Tasks_RecIDBetween = null; public ArrayList SM_Tasks_RecIDIn = null; public String SM_Statuses_RecID = null; public String SM_Statuses_RecIDStartsWith = null; public String SM_Statuses_RecIDEndsWith = null; public String SM_Statuses_RecIDContains = null; public String SM_Statuses_RecIDLike = null; public ArrayList SM_Statuses_RecIDBetween = null; public ArrayList SM_Statuses_RecIDIn = null; public Integer ItemNo = null; public Integer ItemNoGreaterThanOrEqualTo = null; public Integer ItemNoGreaterThan = null; public Integer ItemNoLessThan = null; public Integer ItemNoLessThanOrEqualTo = null; public Integer ItemNoNotEqualTo = null; public ArrayList ItemNoBetween = null; public ArrayList ItemNoIn = null; public String getSmJobsRecID() { return SM_Jobs_RecID; } public v_TaskStatusesQuery setSmJobsRecID(String value) { this.SM_Jobs_RecID = value; return this; } public String getSmJobsRecIDStartsWith() { return SM_Jobs_RecIDStartsWith; } public v_TaskStatusesQuery setSmJobsRecIDStartsWith(String value) { this.SM_Jobs_RecIDStartsWith = value; return this; } public String getSmJobsRecIDEndsWith() { return SM_Jobs_RecIDEndsWith; } public v_TaskStatusesQuery setSmJobsRecIDEndsWith(String value) { this.SM_Jobs_RecIDEndsWith = value; return this; } public String getSmJobsRecIDContains() { return SM_Jobs_RecIDContains; } public v_TaskStatusesQuery setSmJobsRecIDContains(String value) { this.SM_Jobs_RecIDContains = value; return this; } public String getSmJobsRecIDLike() { return SM_Jobs_RecIDLike; } public v_TaskStatusesQuery setSmJobsRecIDLike(String value) { this.SM_Jobs_RecIDLike = value; return this; } public ArrayList getSmJobsRecIDBetween() { return SM_Jobs_RecIDBetween; } public v_TaskStatusesQuery setSmJobsRecIDBetween(ArrayList value) { this.SM_Jobs_RecIDBetween = value; return this; } public ArrayList getSmJobsRecIDIn() { return SM_Jobs_RecIDIn; } public v_TaskStatusesQuery setSmJobsRecIDIn(ArrayList value) { this.SM_Jobs_RecIDIn = value; return this; } public String getSmTasksRecID() { return SM_Tasks_RecID; } public v_TaskStatusesQuery setSmTasksRecID(String value) { this.SM_Tasks_RecID = value; return this; } public String getSmTasksRecIDStartsWith() { return SM_Tasks_RecIDStartsWith; } public v_TaskStatusesQuery setSmTasksRecIDStartsWith(String value) { this.SM_Tasks_RecIDStartsWith = value; return this; } public String getSmTasksRecIDEndsWith() { return SM_Tasks_RecIDEndsWith; } public v_TaskStatusesQuery setSmTasksRecIDEndsWith(String value) { this.SM_Tasks_RecIDEndsWith = value; return this; } public String getSmTasksRecIDContains() { return SM_Tasks_RecIDContains; } public v_TaskStatusesQuery setSmTasksRecIDContains(String value) { this.SM_Tasks_RecIDContains = value; return this; } public String getSmTasksRecIDLike() { return SM_Tasks_RecIDLike; } public v_TaskStatusesQuery setSmTasksRecIDLike(String value) { this.SM_Tasks_RecIDLike = value; return this; } public ArrayList getSmTasksRecIDBetween() { return SM_Tasks_RecIDBetween; } public v_TaskStatusesQuery setSmTasksRecIDBetween(ArrayList value) { this.SM_Tasks_RecIDBetween = value; return this; } public ArrayList getSmTasksRecIDIn() { return SM_Tasks_RecIDIn; } public v_TaskStatusesQuery setSmTasksRecIDIn(ArrayList value) { this.SM_Tasks_RecIDIn = value; return this; } public String getSmStatusesRecID() { return SM_Statuses_RecID; } public v_TaskStatusesQuery setSmStatusesRecID(String value) { this.SM_Statuses_RecID = value; return this; } public String getSmStatusesRecIDStartsWith() { return SM_Statuses_RecIDStartsWith; } public v_TaskStatusesQuery setSmStatusesRecIDStartsWith(String value) { this.SM_Statuses_RecIDStartsWith = value; return this; } public String getSmStatusesRecIDEndsWith() { return SM_Statuses_RecIDEndsWith; } public v_TaskStatusesQuery setSmStatusesRecIDEndsWith(String value) { this.SM_Statuses_RecIDEndsWith = value; return this; } public String getSmStatusesRecIDContains() { return SM_Statuses_RecIDContains; } public v_TaskStatusesQuery setSmStatusesRecIDContains(String value) { this.SM_Statuses_RecIDContains = value; return this; } public String getSmStatusesRecIDLike() { return SM_Statuses_RecIDLike; } public v_TaskStatusesQuery setSmStatusesRecIDLike(String value) { this.SM_Statuses_RecIDLike = value; return this; } public ArrayList getSmStatusesRecIDBetween() { return SM_Statuses_RecIDBetween; } public v_TaskStatusesQuery setSmStatusesRecIDBetween(ArrayList value) { this.SM_Statuses_RecIDBetween = value; return this; } public ArrayList getSmStatusesRecIDIn() { return SM_Statuses_RecIDIn; } public v_TaskStatusesQuery setSmStatusesRecIDIn(ArrayList value) { this.SM_Statuses_RecIDIn = value; return this; } public Integer getItemNo() { return ItemNo; } public v_TaskStatusesQuery setItemNo(Integer value) { this.ItemNo = value; return this; } public Integer getItemNoGreaterThanOrEqualTo() { return ItemNoGreaterThanOrEqualTo; } public v_TaskStatusesQuery setItemNoGreaterThanOrEqualTo(Integer value) { this.ItemNoGreaterThanOrEqualTo = value; return this; } public Integer getItemNoGreaterThan() { return ItemNoGreaterThan; } public v_TaskStatusesQuery setItemNoGreaterThan(Integer value) { this.ItemNoGreaterThan = value; return this; } public Integer getItemNoLessThan() { return ItemNoLessThan; } public v_TaskStatusesQuery setItemNoLessThan(Integer value) { this.ItemNoLessThan = value; return this; } public Integer getItemNoLessThanOrEqualTo() { return ItemNoLessThanOrEqualTo; } public v_TaskStatusesQuery setItemNoLessThanOrEqualTo(Integer value) { this.ItemNoLessThanOrEqualTo = value; return this; } public Integer getItemNoNotEqualTo() { return ItemNoNotEqualTo; } public v_TaskStatusesQuery setItemNoNotEqualTo(Integer value) { this.ItemNoNotEqualTo = value; return this; } public ArrayList getItemNoBetween() { return ItemNoBetween; } public v_TaskStatusesQuery setItemNoBetween(ArrayList value) { this.ItemNoBetween = value; return this; } public ArrayList getItemNoIn() { return ItemNoIn; } public v_TaskStatusesQuery setItemNoIn(ArrayList value) { this.ItemNoIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class VLogicalWHQuery extends QueryDb implements IReturn> { public String LogicalWH = null; public String LogicalWHStartsWith = null; public String LogicalWHEndsWith = null; public String LogicalWHContains = null; public String LogicalWHLike = null; public ArrayList LogicalWHBetween = null; public ArrayList LogicalWHIn = null; public String getLogicalWH() { return LogicalWH; } public VLogicalWHQuery setLogicalWH(String value) { this.LogicalWH = value; return this; } public String getLogicalWHStartsWith() { return LogicalWHStartsWith; } public VLogicalWHQuery setLogicalWHStartsWith(String value) { this.LogicalWHStartsWith = value; return this; } public String getLogicalWHEndsWith() { return LogicalWHEndsWith; } public VLogicalWHQuery setLogicalWHEndsWith(String value) { this.LogicalWHEndsWith = value; return this; } public String getLogicalWHContains() { return LogicalWHContains; } public VLogicalWHQuery setLogicalWHContains(String value) { this.LogicalWHContains = value; return this; } public String getLogicalWHLike() { return LogicalWHLike; } public VLogicalWHQuery setLogicalWHLike(String value) { this.LogicalWHLike = value; return this; } public ArrayList getLogicalWHBetween() { return LogicalWHBetween; } public VLogicalWHQuery setLogicalWHBetween(ArrayList value) { this.LogicalWHBetween = value; return this; } public ArrayList getLogicalWHIn() { return LogicalWHIn; } public VLogicalWHQuery setLogicalWHIn(ArrayList value) { this.LogicalWHIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class VPhysicalWHQuery extends QueryDb implements IReturn> { public String PhysicalWH = null; public String PhysicalWHStartsWith = null; public String PhysicalWHEndsWith = null; public String PhysicalWHContains = null; public String PhysicalWHLike = null; public ArrayList PhysicalWHBetween = null; public ArrayList PhysicalWHIn = null; public String getPhysicalWH() { return PhysicalWH; } public VPhysicalWHQuery setPhysicalWH(String value) { this.PhysicalWH = value; return this; } public String getPhysicalWHStartsWith() { return PhysicalWHStartsWith; } public VPhysicalWHQuery setPhysicalWHStartsWith(String value) { this.PhysicalWHStartsWith = value; return this; } public String getPhysicalWHEndsWith() { return PhysicalWHEndsWith; } public VPhysicalWHQuery setPhysicalWHEndsWith(String value) { this.PhysicalWHEndsWith = value; return this; } public String getPhysicalWHContains() { return PhysicalWHContains; } public VPhysicalWHQuery setPhysicalWHContains(String value) { this.PhysicalWHContains = value; return this; } public String getPhysicalWHLike() { return PhysicalWHLike; } public VPhysicalWHQuery setPhysicalWHLike(String value) { this.PhysicalWHLike = value; return this; } public ArrayList getPhysicalWHBetween() { return PhysicalWHBetween; } public VPhysicalWHQuery setPhysicalWHBetween(ArrayList value) { this.PhysicalWHBetween = value; return this; } public ArrayList getPhysicalWHIn() { return PhysicalWHIn; } public VPhysicalWHQuery setPhysicalWHIn(ArrayList value) { this.PhysicalWHIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @Route(Path="/Queries/WH_Transfer", Verbs="GET") @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class WH_TransferQuery extends QueryDb implements IReturn> { public String WH_TransferID = null; public String WH_TransferIDStartsWith = null; public String WH_TransferIDEndsWith = null; public String WH_TransferIDContains = null; public String WH_TransferIDLike = null; public ArrayList WH_TransferIDBetween = null; public ArrayList WH_TransferIDIn = null; public Date LastSavedDateTime = null; public Date LastSavedDateTimeGreaterThanOrEqualTo = null; public Date LastSavedDateTimeGreaterThan = null; public Date LastSavedDateTimeLessThan = null; public Date LastSavedDateTimeLessThanOrEqualTo = null; public Date LastSavedDateTimeNotEqualTo = null; public ArrayList LastSavedDateTimeBetween = null; public ArrayList LastSavedDateTimeIn = null; public Date TransferDate = null; public Date TransferDateGreaterThanOrEqualTo = null; public Date TransferDateGreaterThan = null; public Date TransferDateLessThan = null; public Date TransferDateLessThanOrEqualTo = null; public Date TransferDateNotEqualTo = null; public ArrayList TransferDateBetween = null; public ArrayList TransferDateIn = null; public Date ActivateDate = null; public Date ActivateDateGreaterThanOrEqualTo = null; public Date ActivateDateGreaterThan = null; public Date ActivateDateLessThan = null; public Date ActivateDateLessThanOrEqualTo = null; public Date ActivateDateNotEqualTo = null; public ArrayList ActivateDateBetween = null; public ArrayList ActivateDateIn = null; public Short Status = null; public Short StatusGreaterThanOrEqualTo = null; public Short StatusGreaterThan = null; public Short StatusLessThan = null; public Short StatusLessThanOrEqualTo = null; public Short StatusNotEqualTo = null; public ArrayList StatusBetween = null; public ArrayList StatusIn = null; public String TransferBy = null; public String TransferByStartsWith = null; public String TransferByEndsWith = null; public String TransferByContains = null; public String TransferByLike = null; public ArrayList TransferByBetween = null; public ArrayList TransferByIn = null; public String Ref = null; public String RefStartsWith = null; public String RefEndsWith = null; public String RefContains = null; public String RefLike = null; public ArrayList RefBetween = null; public ArrayList RefIn = null; public String Notes = null; public String NotesStartsWith = null; public String NotesEndsWith = null; public String NotesContains = null; public String NotesLike = null; public ArrayList NotesBetween = null; public ArrayList NotesIn = null; public Short SourceType = null; public Short SourceTypeGreaterThanOrEqualTo = null; public Short SourceTypeGreaterThan = null; public Short SourceTypeLessThan = null; public Short SourceTypeLessThanOrEqualTo = null; public Short SourceTypeNotEqualTo = null; public ArrayList SourceTypeBetween = null; public ArrayList SourceTypeIn = null; public String SourceID = null; public String SourceIDStartsWith = null; public String SourceIDEndsWith = null; public String SourceIDContains = null; public String SourceIDLike = null; public ArrayList SourceIDBetween = null; public ArrayList SourceIDIn = null; public String SrcIN_LogicalID = null; public String SrcIN_LogicalIDStartsWith = null; public String SrcIN_LogicalIDEndsWith = null; public String SrcIN_LogicalIDContains = null; public String SrcIN_LogicalIDLike = null; public ArrayList SrcIN_LogicalIDBetween = null; public ArrayList SrcIN_LogicalIDIn = null; public String DstIN_LogicalID = null; public String DstIN_LogicalIDStartsWith = null; public String DstIN_LogicalIDEndsWith = null; public String DstIN_LogicalIDContains = null; public String DstIN_LogicalIDLike = null; public ArrayList DstIN_LogicalIDBetween = null; public ArrayList DstIN_LogicalIDIn = null; public String TransferNo = null; public String TransferNoStartsWith = null; public String TransferNoEndsWith = null; public String TransferNoContains = null; public String TransferNoLike = null; public ArrayList TransferNoBetween = null; public ArrayList TransferNoIn = null; public Boolean InTransit = null; public String TransitNotes = null; public String TransitNotesStartsWith = null; public String TransitNotesEndsWith = null; public String TransitNotesContains = null; public String TransitNotesLike = null; public ArrayList TransitNotesBetween = null; public ArrayList TransitNotesIn = null; public String IN_TransitID = null; public String IN_TransitIDStartsWith = null; public String IN_TransitIDEndsWith = null; public String IN_TransitIDContains = null; public String IN_TransitIDLike = null; public ArrayList IN_TransitIDBetween = null; public ArrayList IN_TransitIDIn = null; public BigDecimal AddedCost1 = null; public BigDecimal AddedCost1GreaterThanOrEqualTo = null; public BigDecimal AddedCost1GreaterThan = null; public BigDecimal AddedCost1LessThan = null; public BigDecimal AddedCost1LessThanOrEqualTo = null; public BigDecimal AddedCost1NotEqualTo = null; public ArrayList AddedCost1Between = null; public ArrayList AddedCost1In = null; public BigDecimal AddedCost2 = null; public BigDecimal AddedCost2GreaterThanOrEqualTo = null; public BigDecimal AddedCost2GreaterThan = null; public BigDecimal AddedCost2LessThan = null; public BigDecimal AddedCost2LessThanOrEqualTo = null; public BigDecimal AddedCost2NotEqualTo = null; public ArrayList AddedCost2Between = null; public ArrayList AddedCost2In = null; public BigDecimal AddedCost3 = null; public BigDecimal AddedCost3GreaterThanOrEqualTo = null; public BigDecimal AddedCost3GreaterThan = null; public BigDecimal AddedCost3LessThan = null; public BigDecimal AddedCost3LessThanOrEqualTo = null; public BigDecimal AddedCost3NotEqualTo = null; public ArrayList AddedCost3Between = null; public ArrayList AddedCost3In = null; public String PickedBy = null; public String PickedByStartsWith = null; public String PickedByEndsWith = null; public String PickedByContains = null; public String PickedByLike = null; public ArrayList PickedByBetween = null; public ArrayList PickedByIn = null; public String ReceivedBy = null; public String ReceivedByStartsWith = null; public String ReceivedByEndsWith = null; public String ReceivedByContains = null; public String ReceivedByLike = null; public ArrayList ReceivedByBetween = null; public ArrayList ReceivedByIn = null; public Short Type = null; public Short TypeGreaterThanOrEqualTo = null; public Short TypeGreaterThan = null; public Short TypeLessThan = null; public Short TypeLessThanOrEqualTo = null; public Short TypeNotEqualTo = null; public ArrayList TypeBetween = null; public ArrayList TypeIn = null; public String AddCostMethod = null; public String AddCostMethodStartsWith = null; public String AddCostMethodEndsWith = null; public String AddCostMethodContains = null; public String AddCostMethodLike = null; public ArrayList AddCostMethodBetween = null; public ArrayList AddCostMethodIn = null; public String getWhTransferID() { return WH_TransferID; } public WH_TransferQuery setWhTransferID(String value) { this.WH_TransferID = value; return this; } public String getWhTransferIDStartsWith() { return WH_TransferIDStartsWith; } public WH_TransferQuery setWhTransferIDStartsWith(String value) { this.WH_TransferIDStartsWith = value; return this; } public String getWhTransferIDEndsWith() { return WH_TransferIDEndsWith; } public WH_TransferQuery setWhTransferIDEndsWith(String value) { this.WH_TransferIDEndsWith = value; return this; } public String getWhTransferIDContains() { return WH_TransferIDContains; } public WH_TransferQuery setWhTransferIDContains(String value) { this.WH_TransferIDContains = value; return this; } public String getWhTransferIDLike() { return WH_TransferIDLike; } public WH_TransferQuery setWhTransferIDLike(String value) { this.WH_TransferIDLike = value; return this; } public ArrayList getWhTransferIDBetween() { return WH_TransferIDBetween; } public WH_TransferQuery setWhTransferIDBetween(ArrayList value) { this.WH_TransferIDBetween = value; return this; } public ArrayList getWhTransferIDIn() { return WH_TransferIDIn; } public WH_TransferQuery setWhTransferIDIn(ArrayList value) { this.WH_TransferIDIn = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public WH_TransferQuery setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getLastSavedDateTimeGreaterThanOrEqualTo() { return LastSavedDateTimeGreaterThanOrEqualTo; } public WH_TransferQuery setLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.LastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeGreaterThan() { return LastSavedDateTimeGreaterThan; } public WH_TransferQuery setLastSavedDateTimeGreaterThan(Date value) { this.LastSavedDateTimeGreaterThan = value; return this; } public Date getLastSavedDateTimeLessThan() { return LastSavedDateTimeLessThan; } public WH_TransferQuery setLastSavedDateTimeLessThan(Date value) { this.LastSavedDateTimeLessThan = value; return this; } public Date getLastSavedDateTimeLessThanOrEqualTo() { return LastSavedDateTimeLessThanOrEqualTo; } public WH_TransferQuery setLastSavedDateTimeLessThanOrEqualTo(Date value) { this.LastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeNotEqualTo() { return LastSavedDateTimeNotEqualTo; } public WH_TransferQuery setLastSavedDateTimeNotEqualTo(Date value) { this.LastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getLastSavedDateTimeBetween() { return LastSavedDateTimeBetween; } public WH_TransferQuery setLastSavedDateTimeBetween(ArrayList value) { this.LastSavedDateTimeBetween = value; return this; } public ArrayList getLastSavedDateTimeIn() { return LastSavedDateTimeIn; } public WH_TransferQuery setLastSavedDateTimeIn(ArrayList value) { this.LastSavedDateTimeIn = value; return this; } public Date getTransferDate() { return TransferDate; } public WH_TransferQuery setTransferDate(Date value) { this.TransferDate = value; return this; } public Date getTransferDateGreaterThanOrEqualTo() { return TransferDateGreaterThanOrEqualTo; } public WH_TransferQuery setTransferDateGreaterThanOrEqualTo(Date value) { this.TransferDateGreaterThanOrEqualTo = value; return this; } public Date getTransferDateGreaterThan() { return TransferDateGreaterThan; } public WH_TransferQuery setTransferDateGreaterThan(Date value) { this.TransferDateGreaterThan = value; return this; } public Date getTransferDateLessThan() { return TransferDateLessThan; } public WH_TransferQuery setTransferDateLessThan(Date value) { this.TransferDateLessThan = value; return this; } public Date getTransferDateLessThanOrEqualTo() { return TransferDateLessThanOrEqualTo; } public WH_TransferQuery setTransferDateLessThanOrEqualTo(Date value) { this.TransferDateLessThanOrEqualTo = value; return this; } public Date getTransferDateNotEqualTo() { return TransferDateNotEqualTo; } public WH_TransferQuery setTransferDateNotEqualTo(Date value) { this.TransferDateNotEqualTo = value; return this; } public ArrayList getTransferDateBetween() { return TransferDateBetween; } public WH_TransferQuery setTransferDateBetween(ArrayList value) { this.TransferDateBetween = value; return this; } public ArrayList getTransferDateIn() { return TransferDateIn; } public WH_TransferQuery setTransferDateIn(ArrayList value) { this.TransferDateIn = value; return this; } public Date getActivateDate() { return ActivateDate; } public WH_TransferQuery setActivateDate(Date value) { this.ActivateDate = value; return this; } public Date getActivateDateGreaterThanOrEqualTo() { return ActivateDateGreaterThanOrEqualTo; } public WH_TransferQuery setActivateDateGreaterThanOrEqualTo(Date value) { this.ActivateDateGreaterThanOrEqualTo = value; return this; } public Date getActivateDateGreaterThan() { return ActivateDateGreaterThan; } public WH_TransferQuery setActivateDateGreaterThan(Date value) { this.ActivateDateGreaterThan = value; return this; } public Date getActivateDateLessThan() { return ActivateDateLessThan; } public WH_TransferQuery setActivateDateLessThan(Date value) { this.ActivateDateLessThan = value; return this; } public Date getActivateDateLessThanOrEqualTo() { return ActivateDateLessThanOrEqualTo; } public WH_TransferQuery setActivateDateLessThanOrEqualTo(Date value) { this.ActivateDateLessThanOrEqualTo = value; return this; } public Date getActivateDateNotEqualTo() { return ActivateDateNotEqualTo; } public WH_TransferQuery setActivateDateNotEqualTo(Date value) { this.ActivateDateNotEqualTo = value; return this; } public ArrayList getActivateDateBetween() { return ActivateDateBetween; } public WH_TransferQuery setActivateDateBetween(ArrayList value) { this.ActivateDateBetween = value; return this; } public ArrayList getActivateDateIn() { return ActivateDateIn; } public WH_TransferQuery setActivateDateIn(ArrayList value) { this.ActivateDateIn = value; return this; } public Short getStatus() { return Status; } public WH_TransferQuery setStatus(Short value) { this.Status = value; return this; } public Short getStatusGreaterThanOrEqualTo() { return StatusGreaterThanOrEqualTo; } public WH_TransferQuery setStatusGreaterThanOrEqualTo(Short value) { this.StatusGreaterThanOrEqualTo = value; return this; } public Short getStatusGreaterThan() { return StatusGreaterThan; } public WH_TransferQuery setStatusGreaterThan(Short value) { this.StatusGreaterThan = value; return this; } public Short getStatusLessThan() { return StatusLessThan; } public WH_TransferQuery setStatusLessThan(Short value) { this.StatusLessThan = value; return this; } public Short getStatusLessThanOrEqualTo() { return StatusLessThanOrEqualTo; } public WH_TransferQuery setStatusLessThanOrEqualTo(Short value) { this.StatusLessThanOrEqualTo = value; return this; } public Short getStatusNotEqualTo() { return StatusNotEqualTo; } public WH_TransferQuery setStatusNotEqualTo(Short value) { this.StatusNotEqualTo = value; return this; } public ArrayList getStatusBetween() { return StatusBetween; } public WH_TransferQuery setStatusBetween(ArrayList value) { this.StatusBetween = value; return this; } public ArrayList getStatusIn() { return StatusIn; } public WH_TransferQuery setStatusIn(ArrayList value) { this.StatusIn = value; return this; } public String getTransferBy() { return TransferBy; } public WH_TransferQuery setTransferBy(String value) { this.TransferBy = value; return this; } public String getTransferByStartsWith() { return TransferByStartsWith; } public WH_TransferQuery setTransferByStartsWith(String value) { this.TransferByStartsWith = value; return this; } public String getTransferByEndsWith() { return TransferByEndsWith; } public WH_TransferQuery setTransferByEndsWith(String value) { this.TransferByEndsWith = value; return this; } public String getTransferByContains() { return TransferByContains; } public WH_TransferQuery setTransferByContains(String value) { this.TransferByContains = value; return this; } public String getTransferByLike() { return TransferByLike; } public WH_TransferQuery setTransferByLike(String value) { this.TransferByLike = value; return this; } public ArrayList getTransferByBetween() { return TransferByBetween; } public WH_TransferQuery setTransferByBetween(ArrayList value) { this.TransferByBetween = value; return this; } public ArrayList getTransferByIn() { return TransferByIn; } public WH_TransferQuery setTransferByIn(ArrayList value) { this.TransferByIn = value; return this; } public String getRef() { return Ref; } public WH_TransferQuery setRef(String value) { this.Ref = value; return this; } public String getRefStartsWith() { return RefStartsWith; } public WH_TransferQuery setRefStartsWith(String value) { this.RefStartsWith = value; return this; } public String getRefEndsWith() { return RefEndsWith; } public WH_TransferQuery setRefEndsWith(String value) { this.RefEndsWith = value; return this; } public String getRefContains() { return RefContains; } public WH_TransferQuery setRefContains(String value) { this.RefContains = value; return this; } public String getRefLike() { return RefLike; } public WH_TransferQuery setRefLike(String value) { this.RefLike = value; return this; } public ArrayList getRefBetween() { return RefBetween; } public WH_TransferQuery setRefBetween(ArrayList value) { this.RefBetween = value; return this; } public ArrayList getRefIn() { return RefIn; } public WH_TransferQuery setRefIn(ArrayList value) { this.RefIn = value; return this; } public String getNotes() { return Notes; } public WH_TransferQuery setNotes(String value) { this.Notes = value; return this; } public String getNotesStartsWith() { return NotesStartsWith; } public WH_TransferQuery setNotesStartsWith(String value) { this.NotesStartsWith = value; return this; } public String getNotesEndsWith() { return NotesEndsWith; } public WH_TransferQuery setNotesEndsWith(String value) { this.NotesEndsWith = value; return this; } public String getNotesContains() { return NotesContains; } public WH_TransferQuery setNotesContains(String value) { this.NotesContains = value; return this; } public String getNotesLike() { return NotesLike; } public WH_TransferQuery setNotesLike(String value) { this.NotesLike = value; return this; } public ArrayList getNotesBetween() { return NotesBetween; } public WH_TransferQuery setNotesBetween(ArrayList value) { this.NotesBetween = value; return this; } public ArrayList getNotesIn() { return NotesIn; } public WH_TransferQuery setNotesIn(ArrayList value) { this.NotesIn = value; return this; } public Short getSourceType() { return SourceType; } public WH_TransferQuery setSourceType(Short value) { this.SourceType = value; return this; } public Short getSourceTypeGreaterThanOrEqualTo() { return SourceTypeGreaterThanOrEqualTo; } public WH_TransferQuery setSourceTypeGreaterThanOrEqualTo(Short value) { this.SourceTypeGreaterThanOrEqualTo = value; return this; } public Short getSourceTypeGreaterThan() { return SourceTypeGreaterThan; } public WH_TransferQuery setSourceTypeGreaterThan(Short value) { this.SourceTypeGreaterThan = value; return this; } public Short getSourceTypeLessThan() { return SourceTypeLessThan; } public WH_TransferQuery setSourceTypeLessThan(Short value) { this.SourceTypeLessThan = value; return this; } public Short getSourceTypeLessThanOrEqualTo() { return SourceTypeLessThanOrEqualTo; } public WH_TransferQuery setSourceTypeLessThanOrEqualTo(Short value) { this.SourceTypeLessThanOrEqualTo = value; return this; } public Short getSourceTypeNotEqualTo() { return SourceTypeNotEqualTo; } public WH_TransferQuery setSourceTypeNotEqualTo(Short value) { this.SourceTypeNotEqualTo = value; return this; } public ArrayList getSourceTypeBetween() { return SourceTypeBetween; } public WH_TransferQuery setSourceTypeBetween(ArrayList value) { this.SourceTypeBetween = value; return this; } public ArrayList getSourceTypeIn() { return SourceTypeIn; } public WH_TransferQuery setSourceTypeIn(ArrayList value) { this.SourceTypeIn = value; return this; } public String getSourceID() { return SourceID; } public WH_TransferQuery setSourceID(String value) { this.SourceID = value; return this; } public String getSourceIDStartsWith() { return SourceIDStartsWith; } public WH_TransferQuery setSourceIDStartsWith(String value) { this.SourceIDStartsWith = value; return this; } public String getSourceIDEndsWith() { return SourceIDEndsWith; } public WH_TransferQuery setSourceIDEndsWith(String value) { this.SourceIDEndsWith = value; return this; } public String getSourceIDContains() { return SourceIDContains; } public WH_TransferQuery setSourceIDContains(String value) { this.SourceIDContains = value; return this; } public String getSourceIDLike() { return SourceIDLike; } public WH_TransferQuery setSourceIDLike(String value) { this.SourceIDLike = value; return this; } public ArrayList getSourceIDBetween() { return SourceIDBetween; } public WH_TransferQuery setSourceIDBetween(ArrayList value) { this.SourceIDBetween = value; return this; } public ArrayList getSourceIDIn() { return SourceIDIn; } public WH_TransferQuery setSourceIDIn(ArrayList value) { this.SourceIDIn = value; return this; } public String getSrcINLogicalID() { return SrcIN_LogicalID; } public WH_TransferQuery setSrcINLogicalID(String value) { this.SrcIN_LogicalID = value; return this; } public String getSrcINLogicalIDStartsWith() { return SrcIN_LogicalIDStartsWith; } public WH_TransferQuery setSrcINLogicalIDStartsWith(String value) { this.SrcIN_LogicalIDStartsWith = value; return this; } public String getSrcINLogicalIDEndsWith() { return SrcIN_LogicalIDEndsWith; } public WH_TransferQuery setSrcINLogicalIDEndsWith(String value) { this.SrcIN_LogicalIDEndsWith = value; return this; } public String getSrcINLogicalIDContains() { return SrcIN_LogicalIDContains; } public WH_TransferQuery setSrcINLogicalIDContains(String value) { this.SrcIN_LogicalIDContains = value; return this; } public String getSrcINLogicalIDLike() { return SrcIN_LogicalIDLike; } public WH_TransferQuery setSrcINLogicalIDLike(String value) { this.SrcIN_LogicalIDLike = value; return this; } public ArrayList getSrcINLogicalIDBetween() { return SrcIN_LogicalIDBetween; } public WH_TransferQuery setSrcINLogicalIDBetween(ArrayList value) { this.SrcIN_LogicalIDBetween = value; return this; } public ArrayList getSrcINLogicalIDIn() { return SrcIN_LogicalIDIn; } public WH_TransferQuery setSrcINLogicalIDIn(ArrayList value) { this.SrcIN_LogicalIDIn = value; return this; } public String getDstINLogicalID() { return DstIN_LogicalID; } public WH_TransferQuery setDstINLogicalID(String value) { this.DstIN_LogicalID = value; return this; } public String getDstINLogicalIDStartsWith() { return DstIN_LogicalIDStartsWith; } public WH_TransferQuery setDstINLogicalIDStartsWith(String value) { this.DstIN_LogicalIDStartsWith = value; return this; } public String getDstINLogicalIDEndsWith() { return DstIN_LogicalIDEndsWith; } public WH_TransferQuery setDstINLogicalIDEndsWith(String value) { this.DstIN_LogicalIDEndsWith = value; return this; } public String getDstINLogicalIDContains() { return DstIN_LogicalIDContains; } public WH_TransferQuery setDstINLogicalIDContains(String value) { this.DstIN_LogicalIDContains = value; return this; } public String getDstINLogicalIDLike() { return DstIN_LogicalIDLike; } public WH_TransferQuery setDstINLogicalIDLike(String value) { this.DstIN_LogicalIDLike = value; return this; } public ArrayList getDstINLogicalIDBetween() { return DstIN_LogicalIDBetween; } public WH_TransferQuery setDstINLogicalIDBetween(ArrayList value) { this.DstIN_LogicalIDBetween = value; return this; } public ArrayList getDstINLogicalIDIn() { return DstIN_LogicalIDIn; } public WH_TransferQuery setDstINLogicalIDIn(ArrayList value) { this.DstIN_LogicalIDIn = value; return this; } public String getTransferNo() { return TransferNo; } public WH_TransferQuery setTransferNo(String value) { this.TransferNo = value; return this; } public String getTransferNoStartsWith() { return TransferNoStartsWith; } public WH_TransferQuery setTransferNoStartsWith(String value) { this.TransferNoStartsWith = value; return this; } public String getTransferNoEndsWith() { return TransferNoEndsWith; } public WH_TransferQuery setTransferNoEndsWith(String value) { this.TransferNoEndsWith = value; return this; } public String getTransferNoContains() { return TransferNoContains; } public WH_TransferQuery setTransferNoContains(String value) { this.TransferNoContains = value; return this; } public String getTransferNoLike() { return TransferNoLike; } public WH_TransferQuery setTransferNoLike(String value) { this.TransferNoLike = value; return this; } public ArrayList getTransferNoBetween() { return TransferNoBetween; } public WH_TransferQuery setTransferNoBetween(ArrayList value) { this.TransferNoBetween = value; return this; } public ArrayList getTransferNoIn() { return TransferNoIn; } public WH_TransferQuery setTransferNoIn(ArrayList value) { this.TransferNoIn = value; return this; } public Boolean isInTransit() { return InTransit; } public WH_TransferQuery setInTransit(Boolean value) { this.InTransit = value; return this; } public String getTransitNotes() { return TransitNotes; } public WH_TransferQuery setTransitNotes(String value) { this.TransitNotes = value; return this; } public String getTransitNotesStartsWith() { return TransitNotesStartsWith; } public WH_TransferQuery setTransitNotesStartsWith(String value) { this.TransitNotesStartsWith = value; return this; } public String getTransitNotesEndsWith() { return TransitNotesEndsWith; } public WH_TransferQuery setTransitNotesEndsWith(String value) { this.TransitNotesEndsWith = value; return this; } public String getTransitNotesContains() { return TransitNotesContains; } public WH_TransferQuery setTransitNotesContains(String value) { this.TransitNotesContains = value; return this; } public String getTransitNotesLike() { return TransitNotesLike; } public WH_TransferQuery setTransitNotesLike(String value) { this.TransitNotesLike = value; return this; } public ArrayList getTransitNotesBetween() { return TransitNotesBetween; } public WH_TransferQuery setTransitNotesBetween(ArrayList value) { this.TransitNotesBetween = value; return this; } public ArrayList getTransitNotesIn() { return TransitNotesIn; } public WH_TransferQuery setTransitNotesIn(ArrayList value) { this.TransitNotesIn = value; return this; } public String getInTransitID() { return IN_TransitID; } public WH_TransferQuery setInTransitID(String value) { this.IN_TransitID = value; return this; } public String getInTransitIDStartsWith() { return IN_TransitIDStartsWith; } public WH_TransferQuery setInTransitIDStartsWith(String value) { this.IN_TransitIDStartsWith = value; return this; } public String getInTransitIDEndsWith() { return IN_TransitIDEndsWith; } public WH_TransferQuery setInTransitIDEndsWith(String value) { this.IN_TransitIDEndsWith = value; return this; } public String getInTransitIDContains() { return IN_TransitIDContains; } public WH_TransferQuery setInTransitIDContains(String value) { this.IN_TransitIDContains = value; return this; } public String getInTransitIDLike() { return IN_TransitIDLike; } public WH_TransferQuery setInTransitIDLike(String value) { this.IN_TransitIDLike = value; return this; } public ArrayList getInTransitIDBetween() { return IN_TransitIDBetween; } public WH_TransferQuery setInTransitIDBetween(ArrayList value) { this.IN_TransitIDBetween = value; return this; } public ArrayList getInTransitIDIn() { return IN_TransitIDIn; } public WH_TransferQuery setInTransitIDIn(ArrayList value) { this.IN_TransitIDIn = value; return this; } public BigDecimal getAddedCost1() { return AddedCost1; } public WH_TransferQuery setAddedCost1(BigDecimal value) { this.AddedCost1 = value; return this; } public BigDecimal getAddedCost1GreaterThanOrEqualTo() { return AddedCost1GreaterThanOrEqualTo; } public WH_TransferQuery setAddedCost1GreaterThanOrEqualTo(BigDecimal value) { this.AddedCost1GreaterThanOrEqualTo = value; return this; } public BigDecimal getAddedCost1GreaterThan() { return AddedCost1GreaterThan; } public WH_TransferQuery setAddedCost1GreaterThan(BigDecimal value) { this.AddedCost1GreaterThan = value; return this; } public BigDecimal getAddedCost1LessThan() { return AddedCost1LessThan; } public WH_TransferQuery setAddedCost1LessThan(BigDecimal value) { this.AddedCost1LessThan = value; return this; } public BigDecimal getAddedCost1LessThanOrEqualTo() { return AddedCost1LessThanOrEqualTo; } public WH_TransferQuery setAddedCost1LessThanOrEqualTo(BigDecimal value) { this.AddedCost1LessThanOrEqualTo = value; return this; } public BigDecimal getAddedCost1NotEqualTo() { return AddedCost1NotEqualTo; } public WH_TransferQuery setAddedCost1NotEqualTo(BigDecimal value) { this.AddedCost1NotEqualTo = value; return this; } public ArrayList getAddedCost1Between() { return AddedCost1Between; } public WH_TransferQuery setAddedCost1Between(ArrayList value) { this.AddedCost1Between = value; return this; } public ArrayList getAddedCost1In() { return AddedCost1In; } public WH_TransferQuery setAddedCost1In(ArrayList value) { this.AddedCost1In = value; return this; } public BigDecimal getAddedCost2() { return AddedCost2; } public WH_TransferQuery setAddedCost2(BigDecimal value) { this.AddedCost2 = value; return this; } public BigDecimal getAddedCost2GreaterThanOrEqualTo() { return AddedCost2GreaterThanOrEqualTo; } public WH_TransferQuery setAddedCost2GreaterThanOrEqualTo(BigDecimal value) { this.AddedCost2GreaterThanOrEqualTo = value; return this; } public BigDecimal getAddedCost2GreaterThan() { return AddedCost2GreaterThan; } public WH_TransferQuery setAddedCost2GreaterThan(BigDecimal value) { this.AddedCost2GreaterThan = value; return this; } public BigDecimal getAddedCost2LessThan() { return AddedCost2LessThan; } public WH_TransferQuery setAddedCost2LessThan(BigDecimal value) { this.AddedCost2LessThan = value; return this; } public BigDecimal getAddedCost2LessThanOrEqualTo() { return AddedCost2LessThanOrEqualTo; } public WH_TransferQuery setAddedCost2LessThanOrEqualTo(BigDecimal value) { this.AddedCost2LessThanOrEqualTo = value; return this; } public BigDecimal getAddedCost2NotEqualTo() { return AddedCost2NotEqualTo; } public WH_TransferQuery setAddedCost2NotEqualTo(BigDecimal value) { this.AddedCost2NotEqualTo = value; return this; } public ArrayList getAddedCost2Between() { return AddedCost2Between; } public WH_TransferQuery setAddedCost2Between(ArrayList value) { this.AddedCost2Between = value; return this; } public ArrayList getAddedCost2In() { return AddedCost2In; } public WH_TransferQuery setAddedCost2In(ArrayList value) { this.AddedCost2In = value; return this; } public BigDecimal getAddedCost3() { return AddedCost3; } public WH_TransferQuery setAddedCost3(BigDecimal value) { this.AddedCost3 = value; return this; } public BigDecimal getAddedCost3GreaterThanOrEqualTo() { return AddedCost3GreaterThanOrEqualTo; } public WH_TransferQuery setAddedCost3GreaterThanOrEqualTo(BigDecimal value) { this.AddedCost3GreaterThanOrEqualTo = value; return this; } public BigDecimal getAddedCost3GreaterThan() { return AddedCost3GreaterThan; } public WH_TransferQuery setAddedCost3GreaterThan(BigDecimal value) { this.AddedCost3GreaterThan = value; return this; } public BigDecimal getAddedCost3LessThan() { return AddedCost3LessThan; } public WH_TransferQuery setAddedCost3LessThan(BigDecimal value) { this.AddedCost3LessThan = value; return this; } public BigDecimal getAddedCost3LessThanOrEqualTo() { return AddedCost3LessThanOrEqualTo; } public WH_TransferQuery setAddedCost3LessThanOrEqualTo(BigDecimal value) { this.AddedCost3LessThanOrEqualTo = value; return this; } public BigDecimal getAddedCost3NotEqualTo() { return AddedCost3NotEqualTo; } public WH_TransferQuery setAddedCost3NotEqualTo(BigDecimal value) { this.AddedCost3NotEqualTo = value; return this; } public ArrayList getAddedCost3Between() { return AddedCost3Between; } public WH_TransferQuery setAddedCost3Between(ArrayList value) { this.AddedCost3Between = value; return this; } public ArrayList getAddedCost3In() { return AddedCost3In; } public WH_TransferQuery setAddedCost3In(ArrayList value) { this.AddedCost3In = value; return this; } public String getPickedBy() { return PickedBy; } public WH_TransferQuery setPickedBy(String value) { this.PickedBy = value; return this; } public String getPickedByStartsWith() { return PickedByStartsWith; } public WH_TransferQuery setPickedByStartsWith(String value) { this.PickedByStartsWith = value; return this; } public String getPickedByEndsWith() { return PickedByEndsWith; } public WH_TransferQuery setPickedByEndsWith(String value) { this.PickedByEndsWith = value; return this; } public String getPickedByContains() { return PickedByContains; } public WH_TransferQuery setPickedByContains(String value) { this.PickedByContains = value; return this; } public String getPickedByLike() { return PickedByLike; } public WH_TransferQuery setPickedByLike(String value) { this.PickedByLike = value; return this; } public ArrayList getPickedByBetween() { return PickedByBetween; } public WH_TransferQuery setPickedByBetween(ArrayList value) { this.PickedByBetween = value; return this; } public ArrayList getPickedByIn() { return PickedByIn; } public WH_TransferQuery setPickedByIn(ArrayList value) { this.PickedByIn = value; return this; } public String getReceivedBy() { return ReceivedBy; } public WH_TransferQuery setReceivedBy(String value) { this.ReceivedBy = value; return this; } public String getReceivedByStartsWith() { return ReceivedByStartsWith; } public WH_TransferQuery setReceivedByStartsWith(String value) { this.ReceivedByStartsWith = value; return this; } public String getReceivedByEndsWith() { return ReceivedByEndsWith; } public WH_TransferQuery setReceivedByEndsWith(String value) { this.ReceivedByEndsWith = value; return this; } public String getReceivedByContains() { return ReceivedByContains; } public WH_TransferQuery setReceivedByContains(String value) { this.ReceivedByContains = value; return this; } public String getReceivedByLike() { return ReceivedByLike; } public WH_TransferQuery setReceivedByLike(String value) { this.ReceivedByLike = value; return this; } public ArrayList getReceivedByBetween() { return ReceivedByBetween; } public WH_TransferQuery setReceivedByBetween(ArrayList value) { this.ReceivedByBetween = value; return this; } public ArrayList getReceivedByIn() { return ReceivedByIn; } public WH_TransferQuery setReceivedByIn(ArrayList value) { this.ReceivedByIn = value; return this; } public Short getType() { return Type; } public WH_TransferQuery setType(Short value) { this.Type = value; return this; } public Short getTypeGreaterThanOrEqualTo() { return TypeGreaterThanOrEqualTo; } public WH_TransferQuery setTypeGreaterThanOrEqualTo(Short value) { this.TypeGreaterThanOrEqualTo = value; return this; } public Short getTypeGreaterThan() { return TypeGreaterThan; } public WH_TransferQuery setTypeGreaterThan(Short value) { this.TypeGreaterThan = value; return this; } public Short getTypeLessThan() { return TypeLessThan; } public WH_TransferQuery setTypeLessThan(Short value) { this.TypeLessThan = value; return this; } public Short getTypeLessThanOrEqualTo() { return TypeLessThanOrEqualTo; } public WH_TransferQuery setTypeLessThanOrEqualTo(Short value) { this.TypeLessThanOrEqualTo = value; return this; } public Short getTypeNotEqualTo() { return TypeNotEqualTo; } public WH_TransferQuery setTypeNotEqualTo(Short value) { this.TypeNotEqualTo = value; return this; } public ArrayList getTypeBetween() { return TypeBetween; } public WH_TransferQuery setTypeBetween(ArrayList value) { this.TypeBetween = value; return this; } public ArrayList getTypeIn() { return TypeIn; } public WH_TransferQuery setTypeIn(ArrayList value) { this.TypeIn = value; return this; } public String getAddCostMethod() { return AddCostMethod; } public WH_TransferQuery setAddCostMethod(String value) { this.AddCostMethod = value; return this; } public String getAddCostMethodStartsWith() { return AddCostMethodStartsWith; } public WH_TransferQuery setAddCostMethodStartsWith(String value) { this.AddCostMethodStartsWith = value; return this; } public String getAddCostMethodEndsWith() { return AddCostMethodEndsWith; } public WH_TransferQuery setAddCostMethodEndsWith(String value) { this.AddCostMethodEndsWith = value; return this; } public String getAddCostMethodContains() { return AddCostMethodContains; } public WH_TransferQuery setAddCostMethodContains(String value) { this.AddCostMethodContains = value; return this; } public String getAddCostMethodLike() { return AddCostMethodLike; } public WH_TransferQuery setAddCostMethodLike(String value) { this.AddCostMethodLike = value; return this; } public ArrayList getAddCostMethodBetween() { return AddCostMethodBetween; } public WH_TransferQuery setAddCostMethodBetween(ArrayList value) { this.AddCostMethodBetween = value; return this; } public ArrayList getAddCostMethodIn() { return AddCostMethodIn; } public WH_TransferQuery setAddCostMethodIn(ArrayList value) { this.AddCostMethodIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class WH_TransferLineDetailsQuery extends QueryDb implements IReturn> { public String WH_TransferLineDetailsID = null; public String WH_TransferLineDetailsIDStartsWith = null; public String WH_TransferLineDetailsIDEndsWith = null; public String WH_TransferLineDetailsIDContains = null; public String WH_TransferLineDetailsIDLike = null; public ArrayList WH_TransferLineDetailsIDBetween = null; public ArrayList WH_TransferLineDetailsIDIn = null; public String WH_TransferLineID = null; public String WH_TransferLineIDStartsWith = null; public String WH_TransferLineIDEndsWith = null; public String WH_TransferLineIDContains = null; public String WH_TransferLineIDLike = null; public ArrayList WH_TransferLineIDBetween = null; public ArrayList WH_TransferLineIDIn = null; public String InventoryID = null; public String InventoryIDStartsWith = null; public String InventoryIDEndsWith = null; public String InventoryIDContains = null; public String InventoryIDLike = null; public ArrayList InventoryIDBetween = null; public ArrayList InventoryIDIn = null; public BigDecimal Quantity = null; public BigDecimal QuantityGreaterThanOrEqualTo = null; public BigDecimal QuantityGreaterThan = null; public BigDecimal QuantityLessThan = null; public BigDecimal QuantityLessThanOrEqualTo = null; public BigDecimal QuantityNotEqualTo = null; public ArrayList QuantityBetween = null; public ArrayList QuantityIn = null; public BigDecimal Cost = null; public BigDecimal CostGreaterThanOrEqualTo = null; public BigDecimal CostGreaterThan = null; public BigDecimal CostLessThan = null; public BigDecimal CostLessThanOrEqualTo = null; public BigDecimal CostNotEqualTo = null; public ArrayList CostBetween = null; public ArrayList CostIn = null; public String SerialNo = null; public String SerialNoStartsWith = null; public String SerialNoEndsWith = null; public String SerialNoContains = null; public String SerialNoLike = null; public ArrayList SerialNoBetween = null; public ArrayList SerialNoIn = null; public String IN_SOHID = null; public String IN_SOHIDStartsWith = null; public String IN_SOHIDEndsWith = null; public String IN_SOHIDContains = null; public String IN_SOHIDLike = null; public ArrayList IN_SOHIDBetween = null; public ArrayList IN_SOHIDIn = null; public String Source_IN_SOHID = null; public String Source_IN_SOHIDStartsWith = null; public String Source_IN_SOHIDEndsWith = null; public String Source_IN_SOHIDContains = null; public String Source_IN_SOHIDLike = null; public ArrayList Source_IN_SOHIDBetween = null; public ArrayList Source_IN_SOHIDIn = null; public String InTransit_IN_SOHID = null; public String InTransit_IN_SOHIDStartsWith = null; public String InTransit_IN_SOHIDEndsWith = null; public String InTransit_IN_SOHIDContains = null; public String InTransit_IN_SOHIDLike = null; public ArrayList InTransit_IN_SOHIDBetween = null; public ArrayList InTransit_IN_SOHIDIn = null; public BigDecimal CostReceived = null; public BigDecimal CostReceivedGreaterThanOrEqualTo = null; public BigDecimal CostReceivedGreaterThan = null; public BigDecimal CostReceivedLessThan = null; public BigDecimal CostReceivedLessThanOrEqualTo = null; public BigDecimal CostReceivedNotEqualTo = null; public ArrayList CostReceivedBetween = null; public ArrayList CostReceivedIn = null; public BigDecimal QuantityReceived = null; public BigDecimal QuantityReceivedGreaterThanOrEqualTo = null; public BigDecimal QuantityReceivedGreaterThan = null; public BigDecimal QuantityReceivedLessThan = null; public BigDecimal QuantityReceivedLessThanOrEqualTo = null; public BigDecimal QuantityReceivedNotEqualTo = null; public ArrayList QuantityReceivedBetween = null; public ArrayList QuantityReceivedIn = null; public String SerialNoInwards = null; public String SerialNoInwardsStartsWith = null; public String SerialNoInwardsEndsWith = null; public String SerialNoInwardsContains = null; public String SerialNoInwardsLike = null; public ArrayList SerialNoInwardsBetween = null; public ArrayList SerialNoInwardsIn = null; public String BinLocation = null; public String BinLocationStartsWith = null; public String BinLocationEndsWith = null; public String BinLocationContains = null; public String BinLocationLike = null; public ArrayList BinLocationBetween = null; public ArrayList BinLocationIn = null; public String BinLocationInwards = null; public String BinLocationInwardsStartsWith = null; public String BinLocationInwardsEndsWith = null; public String BinLocationInwardsContains = null; public String BinLocationInwardsLike = null; public ArrayList BinLocationInwardsBetween = null; public ArrayList BinLocationInwardsIn = null; public Date ExpiryDate = null; public Date ExpiryDateGreaterThanOrEqualTo = null; public Date ExpiryDateGreaterThan = null; public Date ExpiryDateLessThan = null; public Date ExpiryDateLessThanOrEqualTo = null; public Date ExpiryDateNotEqualTo = null; public ArrayList ExpiryDateBetween = null; public ArrayList ExpiryDateIn = null; public Date ExpiryDateInwards = null; public Date ExpiryDateInwardsGreaterThanOrEqualTo = null; public Date ExpiryDateInwardsGreaterThan = null; public Date ExpiryDateInwardsLessThan = null; public Date ExpiryDateInwardsLessThanOrEqualTo = null; public Date ExpiryDateInwardsNotEqualTo = null; public ArrayList ExpiryDateInwardsBetween = null; public ArrayList ExpiryDateInwardsIn = null; public Date DateIn = null; public Date DateInGreaterThanOrEqualTo = null; public Date DateInGreaterThan = null; public Date DateInLessThan = null; public Date DateInLessThanOrEqualTo = null; public Date DateInNotEqualTo = null; public ArrayList DateInBetween = null; public ArrayList DateInIn = null; public BigDecimal SpecialPrice = null; public BigDecimal SpecialPriceGreaterThanOrEqualTo = null; public BigDecimal SpecialPriceGreaterThan = null; public BigDecimal SpecialPriceLessThan = null; public BigDecimal SpecialPriceLessThanOrEqualTo = null; public BigDecimal SpecialPriceNotEqualTo = null; public ArrayList SpecialPriceBetween = null; public ArrayList SpecialPriceIn = null; public BigDecimal AddedCost = null; public BigDecimal AddedCostGreaterThanOrEqualTo = null; public BigDecimal AddedCostGreaterThan = null; public BigDecimal AddedCostLessThan = null; public BigDecimal AddedCostLessThanOrEqualTo = null; public BigDecimal AddedCostNotEqualTo = null; public ArrayList AddedCostBetween = null; public ArrayList AddedCostIn = null; public String getWhTransferLineDetailsID() { return WH_TransferLineDetailsID; } public WH_TransferLineDetailsQuery setWhTransferLineDetailsID(String value) { this.WH_TransferLineDetailsID = value; return this; } public String getWhTransferLineDetailsIDStartsWith() { return WH_TransferLineDetailsIDStartsWith; } public WH_TransferLineDetailsQuery setWhTransferLineDetailsIDStartsWith(String value) { this.WH_TransferLineDetailsIDStartsWith = value; return this; } public String getWhTransferLineDetailsIDEndsWith() { return WH_TransferLineDetailsIDEndsWith; } public WH_TransferLineDetailsQuery setWhTransferLineDetailsIDEndsWith(String value) { this.WH_TransferLineDetailsIDEndsWith = value; return this; } public String getWhTransferLineDetailsIDContains() { return WH_TransferLineDetailsIDContains; } public WH_TransferLineDetailsQuery setWhTransferLineDetailsIDContains(String value) { this.WH_TransferLineDetailsIDContains = value; return this; } public String getWhTransferLineDetailsIDLike() { return WH_TransferLineDetailsIDLike; } public WH_TransferLineDetailsQuery setWhTransferLineDetailsIDLike(String value) { this.WH_TransferLineDetailsIDLike = value; return this; } public ArrayList getWhTransferLineDetailsIDBetween() { return WH_TransferLineDetailsIDBetween; } public WH_TransferLineDetailsQuery setWhTransferLineDetailsIDBetween(ArrayList value) { this.WH_TransferLineDetailsIDBetween = value; return this; } public ArrayList getWhTransferLineDetailsIDIn() { return WH_TransferLineDetailsIDIn; } public WH_TransferLineDetailsQuery setWhTransferLineDetailsIDIn(ArrayList value) { this.WH_TransferLineDetailsIDIn = value; return this; } public String getWhTransferLineID() { return WH_TransferLineID; } public WH_TransferLineDetailsQuery setWhTransferLineID(String value) { this.WH_TransferLineID = value; return this; } public String getWhTransferLineIDStartsWith() { return WH_TransferLineIDStartsWith; } public WH_TransferLineDetailsQuery setWhTransferLineIDStartsWith(String value) { this.WH_TransferLineIDStartsWith = value; return this; } public String getWhTransferLineIDEndsWith() { return WH_TransferLineIDEndsWith; } public WH_TransferLineDetailsQuery setWhTransferLineIDEndsWith(String value) { this.WH_TransferLineIDEndsWith = value; return this; } public String getWhTransferLineIDContains() { return WH_TransferLineIDContains; } public WH_TransferLineDetailsQuery setWhTransferLineIDContains(String value) { this.WH_TransferLineIDContains = value; return this; } public String getWhTransferLineIDLike() { return WH_TransferLineIDLike; } public WH_TransferLineDetailsQuery setWhTransferLineIDLike(String value) { this.WH_TransferLineIDLike = value; return this; } public ArrayList getWhTransferLineIDBetween() { return WH_TransferLineIDBetween; } public WH_TransferLineDetailsQuery setWhTransferLineIDBetween(ArrayList value) { this.WH_TransferLineIDBetween = value; return this; } public ArrayList getWhTransferLineIDIn() { return WH_TransferLineIDIn; } public WH_TransferLineDetailsQuery setWhTransferLineIDIn(ArrayList value) { this.WH_TransferLineIDIn = value; return this; } public String getInventoryID() { return InventoryID; } public WH_TransferLineDetailsQuery setInventoryID(String value) { this.InventoryID = value; return this; } public String getInventoryIDStartsWith() { return InventoryIDStartsWith; } public WH_TransferLineDetailsQuery setInventoryIDStartsWith(String value) { this.InventoryIDStartsWith = value; return this; } public String getInventoryIDEndsWith() { return InventoryIDEndsWith; } public WH_TransferLineDetailsQuery setInventoryIDEndsWith(String value) { this.InventoryIDEndsWith = value; return this; } public String getInventoryIDContains() { return InventoryIDContains; } public WH_TransferLineDetailsQuery setInventoryIDContains(String value) { this.InventoryIDContains = value; return this; } public String getInventoryIDLike() { return InventoryIDLike; } public WH_TransferLineDetailsQuery setInventoryIDLike(String value) { this.InventoryIDLike = value; return this; } public ArrayList getInventoryIDBetween() { return InventoryIDBetween; } public WH_TransferLineDetailsQuery setInventoryIDBetween(ArrayList value) { this.InventoryIDBetween = value; return this; } public ArrayList getInventoryIDIn() { return InventoryIDIn; } public WH_TransferLineDetailsQuery setInventoryIDIn(ArrayList value) { this.InventoryIDIn = value; return this; } public BigDecimal getQuantity() { return Quantity; } public WH_TransferLineDetailsQuery setQuantity(BigDecimal value) { this.Quantity = value; return this; } public BigDecimal getQuantityGreaterThanOrEqualTo() { return QuantityGreaterThanOrEqualTo; } public WH_TransferLineDetailsQuery setQuantityGreaterThanOrEqualTo(BigDecimal value) { this.QuantityGreaterThanOrEqualTo = value; return this; } public BigDecimal getQuantityGreaterThan() { return QuantityGreaterThan; } public WH_TransferLineDetailsQuery setQuantityGreaterThan(BigDecimal value) { this.QuantityGreaterThan = value; return this; } public BigDecimal getQuantityLessThan() { return QuantityLessThan; } public WH_TransferLineDetailsQuery setQuantityLessThan(BigDecimal value) { this.QuantityLessThan = value; return this; } public BigDecimal getQuantityLessThanOrEqualTo() { return QuantityLessThanOrEqualTo; } public WH_TransferLineDetailsQuery setQuantityLessThanOrEqualTo(BigDecimal value) { this.QuantityLessThanOrEqualTo = value; return this; } public BigDecimal getQuantityNotEqualTo() { return QuantityNotEqualTo; } public WH_TransferLineDetailsQuery setQuantityNotEqualTo(BigDecimal value) { this.QuantityNotEqualTo = value; return this; } public ArrayList getQuantityBetween() { return QuantityBetween; } public WH_TransferLineDetailsQuery setQuantityBetween(ArrayList value) { this.QuantityBetween = value; return this; } public ArrayList getQuantityIn() { return QuantityIn; } public WH_TransferLineDetailsQuery setQuantityIn(ArrayList value) { this.QuantityIn = value; return this; } public BigDecimal getCost() { return Cost; } public WH_TransferLineDetailsQuery setCost(BigDecimal value) { this.Cost = value; return this; } public BigDecimal getCostGreaterThanOrEqualTo() { return CostGreaterThanOrEqualTo; } public WH_TransferLineDetailsQuery setCostGreaterThanOrEqualTo(BigDecimal value) { this.CostGreaterThanOrEqualTo = value; return this; } public BigDecimal getCostGreaterThan() { return CostGreaterThan; } public WH_TransferLineDetailsQuery setCostGreaterThan(BigDecimal value) { this.CostGreaterThan = value; return this; } public BigDecimal getCostLessThan() { return CostLessThan; } public WH_TransferLineDetailsQuery setCostLessThan(BigDecimal value) { this.CostLessThan = value; return this; } public BigDecimal getCostLessThanOrEqualTo() { return CostLessThanOrEqualTo; } public WH_TransferLineDetailsQuery setCostLessThanOrEqualTo(BigDecimal value) { this.CostLessThanOrEqualTo = value; return this; } public BigDecimal getCostNotEqualTo() { return CostNotEqualTo; } public WH_TransferLineDetailsQuery setCostNotEqualTo(BigDecimal value) { this.CostNotEqualTo = value; return this; } public ArrayList getCostBetween() { return CostBetween; } public WH_TransferLineDetailsQuery setCostBetween(ArrayList value) { this.CostBetween = value; return this; } public ArrayList getCostIn() { return CostIn; } public WH_TransferLineDetailsQuery setCostIn(ArrayList value) { this.CostIn = value; return this; } public String getSerialNo() { return SerialNo; } public WH_TransferLineDetailsQuery setSerialNo(String value) { this.SerialNo = value; return this; } public String getSerialNoStartsWith() { return SerialNoStartsWith; } public WH_TransferLineDetailsQuery setSerialNoStartsWith(String value) { this.SerialNoStartsWith = value; return this; } public String getSerialNoEndsWith() { return SerialNoEndsWith; } public WH_TransferLineDetailsQuery setSerialNoEndsWith(String value) { this.SerialNoEndsWith = value; return this; } public String getSerialNoContains() { return SerialNoContains; } public WH_TransferLineDetailsQuery setSerialNoContains(String value) { this.SerialNoContains = value; return this; } public String getSerialNoLike() { return SerialNoLike; } public WH_TransferLineDetailsQuery setSerialNoLike(String value) { this.SerialNoLike = value; return this; } public ArrayList getSerialNoBetween() { return SerialNoBetween; } public WH_TransferLineDetailsQuery setSerialNoBetween(ArrayList value) { this.SerialNoBetween = value; return this; } public ArrayList getSerialNoIn() { return SerialNoIn; } public WH_TransferLineDetailsQuery setSerialNoIn(ArrayList value) { this.SerialNoIn = value; return this; } public String getInSohid() { return IN_SOHID; } public WH_TransferLineDetailsQuery setInSohid(String value) { this.IN_SOHID = value; return this; } public String getInSohidStartsWith() { return IN_SOHIDStartsWith; } public WH_TransferLineDetailsQuery setInSohidStartsWith(String value) { this.IN_SOHIDStartsWith = value; return this; } public String getInSohidEndsWith() { return IN_SOHIDEndsWith; } public WH_TransferLineDetailsQuery setInSohidEndsWith(String value) { this.IN_SOHIDEndsWith = value; return this; } public String getInSohidContains() { return IN_SOHIDContains; } public WH_TransferLineDetailsQuery setInSohidContains(String value) { this.IN_SOHIDContains = value; return this; } public String getInSohidLike() { return IN_SOHIDLike; } public WH_TransferLineDetailsQuery setInSohidLike(String value) { this.IN_SOHIDLike = value; return this; } public ArrayList getInSohidBetween() { return IN_SOHIDBetween; } public WH_TransferLineDetailsQuery setInSohidBetween(ArrayList value) { this.IN_SOHIDBetween = value; return this; } public ArrayList getInSohidIn() { return IN_SOHIDIn; } public WH_TransferLineDetailsQuery setInSohidIn(ArrayList value) { this.IN_SOHIDIn = value; return this; } public String getSourceInSohid() { return Source_IN_SOHID; } public WH_TransferLineDetailsQuery setSourceInSohid(String value) { this.Source_IN_SOHID = value; return this; } public String getSourceInSohidStartsWith() { return Source_IN_SOHIDStartsWith; } public WH_TransferLineDetailsQuery setSourceInSohidStartsWith(String value) { this.Source_IN_SOHIDStartsWith = value; return this; } public String getSourceInSohidEndsWith() { return Source_IN_SOHIDEndsWith; } public WH_TransferLineDetailsQuery setSourceInSohidEndsWith(String value) { this.Source_IN_SOHIDEndsWith = value; return this; } public String getSourceInSohidContains() { return Source_IN_SOHIDContains; } public WH_TransferLineDetailsQuery setSourceInSohidContains(String value) { this.Source_IN_SOHIDContains = value; return this; } public String getSourceInSohidLike() { return Source_IN_SOHIDLike; } public WH_TransferLineDetailsQuery setSourceInSohidLike(String value) { this.Source_IN_SOHIDLike = value; return this; } public ArrayList getSourceInSohidBetween() { return Source_IN_SOHIDBetween; } public WH_TransferLineDetailsQuery setSourceInSohidBetween(ArrayList value) { this.Source_IN_SOHIDBetween = value; return this; } public ArrayList getSourceInSohidIn() { return Source_IN_SOHIDIn; } public WH_TransferLineDetailsQuery setSourceInSohidIn(ArrayList value) { this.Source_IN_SOHIDIn = value; return this; } public String getInTransitInSohid() { return InTransit_IN_SOHID; } public WH_TransferLineDetailsQuery setInTransitInSohid(String value) { this.InTransit_IN_SOHID = value; return this; } public String getInTransitInSohidStartsWith() { return InTransit_IN_SOHIDStartsWith; } public WH_TransferLineDetailsQuery setInTransitInSohidStartsWith(String value) { this.InTransit_IN_SOHIDStartsWith = value; return this; } public String getInTransitInSohidEndsWith() { return InTransit_IN_SOHIDEndsWith; } public WH_TransferLineDetailsQuery setInTransitInSohidEndsWith(String value) { this.InTransit_IN_SOHIDEndsWith = value; return this; } public String getInTransitInSohidContains() { return InTransit_IN_SOHIDContains; } public WH_TransferLineDetailsQuery setInTransitInSohidContains(String value) { this.InTransit_IN_SOHIDContains = value; return this; } public String getInTransitInSohidLike() { return InTransit_IN_SOHIDLike; } public WH_TransferLineDetailsQuery setInTransitInSohidLike(String value) { this.InTransit_IN_SOHIDLike = value; return this; } public ArrayList getInTransitInSohidBetween() { return InTransit_IN_SOHIDBetween; } public WH_TransferLineDetailsQuery setInTransitInSohidBetween(ArrayList value) { this.InTransit_IN_SOHIDBetween = value; return this; } public ArrayList getInTransitInSohidIn() { return InTransit_IN_SOHIDIn; } public WH_TransferLineDetailsQuery setInTransitInSohidIn(ArrayList value) { this.InTransit_IN_SOHIDIn = value; return this; } public BigDecimal getCostReceived() { return CostReceived; } public WH_TransferLineDetailsQuery setCostReceived(BigDecimal value) { this.CostReceived = value; return this; } public BigDecimal getCostReceivedGreaterThanOrEqualTo() { return CostReceivedGreaterThanOrEqualTo; } public WH_TransferLineDetailsQuery setCostReceivedGreaterThanOrEqualTo(BigDecimal value) { this.CostReceivedGreaterThanOrEqualTo = value; return this; } public BigDecimal getCostReceivedGreaterThan() { return CostReceivedGreaterThan; } public WH_TransferLineDetailsQuery setCostReceivedGreaterThan(BigDecimal value) { this.CostReceivedGreaterThan = value; return this; } public BigDecimal getCostReceivedLessThan() { return CostReceivedLessThan; } public WH_TransferLineDetailsQuery setCostReceivedLessThan(BigDecimal value) { this.CostReceivedLessThan = value; return this; } public BigDecimal getCostReceivedLessThanOrEqualTo() { return CostReceivedLessThanOrEqualTo; } public WH_TransferLineDetailsQuery setCostReceivedLessThanOrEqualTo(BigDecimal value) { this.CostReceivedLessThanOrEqualTo = value; return this; } public BigDecimal getCostReceivedNotEqualTo() { return CostReceivedNotEqualTo; } public WH_TransferLineDetailsQuery setCostReceivedNotEqualTo(BigDecimal value) { this.CostReceivedNotEqualTo = value; return this; } public ArrayList getCostReceivedBetween() { return CostReceivedBetween; } public WH_TransferLineDetailsQuery setCostReceivedBetween(ArrayList value) { this.CostReceivedBetween = value; return this; } public ArrayList getCostReceivedIn() { return CostReceivedIn; } public WH_TransferLineDetailsQuery setCostReceivedIn(ArrayList value) { this.CostReceivedIn = value; return this; } public BigDecimal getQuantityReceived() { return QuantityReceived; } public WH_TransferLineDetailsQuery setQuantityReceived(BigDecimal value) { this.QuantityReceived = value; return this; } public BigDecimal getQuantityReceivedGreaterThanOrEqualTo() { return QuantityReceivedGreaterThanOrEqualTo; } public WH_TransferLineDetailsQuery setQuantityReceivedGreaterThanOrEqualTo(BigDecimal value) { this.QuantityReceivedGreaterThanOrEqualTo = value; return this; } public BigDecimal getQuantityReceivedGreaterThan() { return QuantityReceivedGreaterThan; } public WH_TransferLineDetailsQuery setQuantityReceivedGreaterThan(BigDecimal value) { this.QuantityReceivedGreaterThan = value; return this; } public BigDecimal getQuantityReceivedLessThan() { return QuantityReceivedLessThan; } public WH_TransferLineDetailsQuery setQuantityReceivedLessThan(BigDecimal value) { this.QuantityReceivedLessThan = value; return this; } public BigDecimal getQuantityReceivedLessThanOrEqualTo() { return QuantityReceivedLessThanOrEqualTo; } public WH_TransferLineDetailsQuery setQuantityReceivedLessThanOrEqualTo(BigDecimal value) { this.QuantityReceivedLessThanOrEqualTo = value; return this; } public BigDecimal getQuantityReceivedNotEqualTo() { return QuantityReceivedNotEqualTo; } public WH_TransferLineDetailsQuery setQuantityReceivedNotEqualTo(BigDecimal value) { this.QuantityReceivedNotEqualTo = value; return this; } public ArrayList getQuantityReceivedBetween() { return QuantityReceivedBetween; } public WH_TransferLineDetailsQuery setQuantityReceivedBetween(ArrayList value) { this.QuantityReceivedBetween = value; return this; } public ArrayList getQuantityReceivedIn() { return QuantityReceivedIn; } public WH_TransferLineDetailsQuery setQuantityReceivedIn(ArrayList value) { this.QuantityReceivedIn = value; return this; } public String getSerialNoInwards() { return SerialNoInwards; } public WH_TransferLineDetailsQuery setSerialNoInwards(String value) { this.SerialNoInwards = value; return this; } public String getSerialNoInwardsStartsWith() { return SerialNoInwardsStartsWith; } public WH_TransferLineDetailsQuery setSerialNoInwardsStartsWith(String value) { this.SerialNoInwardsStartsWith = value; return this; } public String getSerialNoInwardsEndsWith() { return SerialNoInwardsEndsWith; } public WH_TransferLineDetailsQuery setSerialNoInwardsEndsWith(String value) { this.SerialNoInwardsEndsWith = value; return this; } public String getSerialNoInwardsContains() { return SerialNoInwardsContains; } public WH_TransferLineDetailsQuery setSerialNoInwardsContains(String value) { this.SerialNoInwardsContains = value; return this; } public String getSerialNoInwardsLike() { return SerialNoInwardsLike; } public WH_TransferLineDetailsQuery setSerialNoInwardsLike(String value) { this.SerialNoInwardsLike = value; return this; } public ArrayList getSerialNoInwardsBetween() { return SerialNoInwardsBetween; } public WH_TransferLineDetailsQuery setSerialNoInwardsBetween(ArrayList value) { this.SerialNoInwardsBetween = value; return this; } public ArrayList getSerialNoInwardsIn() { return SerialNoInwardsIn; } public WH_TransferLineDetailsQuery setSerialNoInwardsIn(ArrayList value) { this.SerialNoInwardsIn = value; return this; } public String getBinLocation() { return BinLocation; } public WH_TransferLineDetailsQuery setBinLocation(String value) { this.BinLocation = value; return this; } public String getBinLocationStartsWith() { return BinLocationStartsWith; } public WH_TransferLineDetailsQuery setBinLocationStartsWith(String value) { this.BinLocationStartsWith = value; return this; } public String getBinLocationEndsWith() { return BinLocationEndsWith; } public WH_TransferLineDetailsQuery setBinLocationEndsWith(String value) { this.BinLocationEndsWith = value; return this; } public String getBinLocationContains() { return BinLocationContains; } public WH_TransferLineDetailsQuery setBinLocationContains(String value) { this.BinLocationContains = value; return this; } public String getBinLocationLike() { return BinLocationLike; } public WH_TransferLineDetailsQuery setBinLocationLike(String value) { this.BinLocationLike = value; return this; } public ArrayList getBinLocationBetween() { return BinLocationBetween; } public WH_TransferLineDetailsQuery setBinLocationBetween(ArrayList value) { this.BinLocationBetween = value; return this; } public ArrayList getBinLocationIn() { return BinLocationIn; } public WH_TransferLineDetailsQuery setBinLocationIn(ArrayList value) { this.BinLocationIn = value; return this; } public String getBinLocationInwards() { return BinLocationInwards; } public WH_TransferLineDetailsQuery setBinLocationInwards(String value) { this.BinLocationInwards = value; return this; } public String getBinLocationInwardsStartsWith() { return BinLocationInwardsStartsWith; } public WH_TransferLineDetailsQuery setBinLocationInwardsStartsWith(String value) { this.BinLocationInwardsStartsWith = value; return this; } public String getBinLocationInwardsEndsWith() { return BinLocationInwardsEndsWith; } public WH_TransferLineDetailsQuery setBinLocationInwardsEndsWith(String value) { this.BinLocationInwardsEndsWith = value; return this; } public String getBinLocationInwardsContains() { return BinLocationInwardsContains; } public WH_TransferLineDetailsQuery setBinLocationInwardsContains(String value) { this.BinLocationInwardsContains = value; return this; } public String getBinLocationInwardsLike() { return BinLocationInwardsLike; } public WH_TransferLineDetailsQuery setBinLocationInwardsLike(String value) { this.BinLocationInwardsLike = value; return this; } public ArrayList getBinLocationInwardsBetween() { return BinLocationInwardsBetween; } public WH_TransferLineDetailsQuery setBinLocationInwardsBetween(ArrayList value) { this.BinLocationInwardsBetween = value; return this; } public ArrayList getBinLocationInwardsIn() { return BinLocationInwardsIn; } public WH_TransferLineDetailsQuery setBinLocationInwardsIn(ArrayList value) { this.BinLocationInwardsIn = value; return this; } public Date getExpiryDate() { return ExpiryDate; } public WH_TransferLineDetailsQuery setExpiryDate(Date value) { this.ExpiryDate = value; return this; } public Date getExpiryDateGreaterThanOrEqualTo() { return ExpiryDateGreaterThanOrEqualTo; } public WH_TransferLineDetailsQuery setExpiryDateGreaterThanOrEqualTo(Date value) { this.ExpiryDateGreaterThanOrEqualTo = value; return this; } public Date getExpiryDateGreaterThan() { return ExpiryDateGreaterThan; } public WH_TransferLineDetailsQuery setExpiryDateGreaterThan(Date value) { this.ExpiryDateGreaterThan = value; return this; } public Date getExpiryDateLessThan() { return ExpiryDateLessThan; } public WH_TransferLineDetailsQuery setExpiryDateLessThan(Date value) { this.ExpiryDateLessThan = value; return this; } public Date getExpiryDateLessThanOrEqualTo() { return ExpiryDateLessThanOrEqualTo; } public WH_TransferLineDetailsQuery setExpiryDateLessThanOrEqualTo(Date value) { this.ExpiryDateLessThanOrEqualTo = value; return this; } public Date getExpiryDateNotEqualTo() { return ExpiryDateNotEqualTo; } public WH_TransferLineDetailsQuery setExpiryDateNotEqualTo(Date value) { this.ExpiryDateNotEqualTo = value; return this; } public ArrayList getExpiryDateBetween() { return ExpiryDateBetween; } public WH_TransferLineDetailsQuery setExpiryDateBetween(ArrayList value) { this.ExpiryDateBetween = value; return this; } public ArrayList getExpiryDateIn() { return ExpiryDateIn; } public WH_TransferLineDetailsQuery setExpiryDateIn(ArrayList value) { this.ExpiryDateIn = value; return this; } public Date getExpiryDateInwards() { return ExpiryDateInwards; } public WH_TransferLineDetailsQuery setExpiryDateInwards(Date value) { this.ExpiryDateInwards = value; return this; } public Date getExpiryDateInwardsGreaterThanOrEqualTo() { return ExpiryDateInwardsGreaterThanOrEqualTo; } public WH_TransferLineDetailsQuery setExpiryDateInwardsGreaterThanOrEqualTo(Date value) { this.ExpiryDateInwardsGreaterThanOrEqualTo = value; return this; } public Date getExpiryDateInwardsGreaterThan() { return ExpiryDateInwardsGreaterThan; } public WH_TransferLineDetailsQuery setExpiryDateInwardsGreaterThan(Date value) { this.ExpiryDateInwardsGreaterThan = value; return this; } public Date getExpiryDateInwardsLessThan() { return ExpiryDateInwardsLessThan; } public WH_TransferLineDetailsQuery setExpiryDateInwardsLessThan(Date value) { this.ExpiryDateInwardsLessThan = value; return this; } public Date getExpiryDateInwardsLessThanOrEqualTo() { return ExpiryDateInwardsLessThanOrEqualTo; } public WH_TransferLineDetailsQuery setExpiryDateInwardsLessThanOrEqualTo(Date value) { this.ExpiryDateInwardsLessThanOrEqualTo = value; return this; } public Date getExpiryDateInwardsNotEqualTo() { return ExpiryDateInwardsNotEqualTo; } public WH_TransferLineDetailsQuery setExpiryDateInwardsNotEqualTo(Date value) { this.ExpiryDateInwardsNotEqualTo = value; return this; } public ArrayList getExpiryDateInwardsBetween() { return ExpiryDateInwardsBetween; } public WH_TransferLineDetailsQuery setExpiryDateInwardsBetween(ArrayList value) { this.ExpiryDateInwardsBetween = value; return this; } public ArrayList getExpiryDateInwardsIn() { return ExpiryDateInwardsIn; } public WH_TransferLineDetailsQuery setExpiryDateInwardsIn(ArrayList value) { this.ExpiryDateInwardsIn = value; return this; } public Date getDateIn() { return DateIn; } public WH_TransferLineDetailsQuery setDateIn(Date value) { this.DateIn = value; return this; } public Date getDateInGreaterThanOrEqualTo() { return DateInGreaterThanOrEqualTo; } public WH_TransferLineDetailsQuery setDateInGreaterThanOrEqualTo(Date value) { this.DateInGreaterThanOrEqualTo = value; return this; } public Date getDateInGreaterThan() { return DateInGreaterThan; } public WH_TransferLineDetailsQuery setDateInGreaterThan(Date value) { this.DateInGreaterThan = value; return this; } public Date getDateInLessThan() { return DateInLessThan; } public WH_TransferLineDetailsQuery setDateInLessThan(Date value) { this.DateInLessThan = value; return this; } public Date getDateInLessThanOrEqualTo() { return DateInLessThanOrEqualTo; } public WH_TransferLineDetailsQuery setDateInLessThanOrEqualTo(Date value) { this.DateInLessThanOrEqualTo = value; return this; } public Date getDateInNotEqualTo() { return DateInNotEqualTo; } public WH_TransferLineDetailsQuery setDateInNotEqualTo(Date value) { this.DateInNotEqualTo = value; return this; } public ArrayList getDateInBetween() { return DateInBetween; } public WH_TransferLineDetailsQuery setDateInBetween(ArrayList value) { this.DateInBetween = value; return this; } public ArrayList getDateInIn() { return DateInIn; } public WH_TransferLineDetailsQuery setDateInIn(ArrayList value) { this.DateInIn = value; return this; } public BigDecimal getSpecialPrice() { return SpecialPrice; } public WH_TransferLineDetailsQuery setSpecialPrice(BigDecimal value) { this.SpecialPrice = value; return this; } public BigDecimal getSpecialPriceGreaterThanOrEqualTo() { return SpecialPriceGreaterThanOrEqualTo; } public WH_TransferLineDetailsQuery setSpecialPriceGreaterThanOrEqualTo(BigDecimal value) { this.SpecialPriceGreaterThanOrEqualTo = value; return this; } public BigDecimal getSpecialPriceGreaterThan() { return SpecialPriceGreaterThan; } public WH_TransferLineDetailsQuery setSpecialPriceGreaterThan(BigDecimal value) { this.SpecialPriceGreaterThan = value; return this; } public BigDecimal getSpecialPriceLessThan() { return SpecialPriceLessThan; } public WH_TransferLineDetailsQuery setSpecialPriceLessThan(BigDecimal value) { this.SpecialPriceLessThan = value; return this; } public BigDecimal getSpecialPriceLessThanOrEqualTo() { return SpecialPriceLessThanOrEqualTo; } public WH_TransferLineDetailsQuery setSpecialPriceLessThanOrEqualTo(BigDecimal value) { this.SpecialPriceLessThanOrEqualTo = value; return this; } public BigDecimal getSpecialPriceNotEqualTo() { return SpecialPriceNotEqualTo; } public WH_TransferLineDetailsQuery setSpecialPriceNotEqualTo(BigDecimal value) { this.SpecialPriceNotEqualTo = value; return this; } public ArrayList getSpecialPriceBetween() { return SpecialPriceBetween; } public WH_TransferLineDetailsQuery setSpecialPriceBetween(ArrayList value) { this.SpecialPriceBetween = value; return this; } public ArrayList getSpecialPriceIn() { return SpecialPriceIn; } public WH_TransferLineDetailsQuery setSpecialPriceIn(ArrayList value) { this.SpecialPriceIn = value; return this; } public BigDecimal getAddedCost() { return AddedCost; } public WH_TransferLineDetailsQuery setAddedCost(BigDecimal value) { this.AddedCost = value; return this; } public BigDecimal getAddedCostGreaterThanOrEqualTo() { return AddedCostGreaterThanOrEqualTo; } public WH_TransferLineDetailsQuery setAddedCostGreaterThanOrEqualTo(BigDecimal value) { this.AddedCostGreaterThanOrEqualTo = value; return this; } public BigDecimal getAddedCostGreaterThan() { return AddedCostGreaterThan; } public WH_TransferLineDetailsQuery setAddedCostGreaterThan(BigDecimal value) { this.AddedCostGreaterThan = value; return this; } public BigDecimal getAddedCostLessThan() { return AddedCostLessThan; } public WH_TransferLineDetailsQuery setAddedCostLessThan(BigDecimal value) { this.AddedCostLessThan = value; return this; } public BigDecimal getAddedCostLessThanOrEqualTo() { return AddedCostLessThanOrEqualTo; } public WH_TransferLineDetailsQuery setAddedCostLessThanOrEqualTo(BigDecimal value) { this.AddedCostLessThanOrEqualTo = value; return this; } public BigDecimal getAddedCostNotEqualTo() { return AddedCostNotEqualTo; } public WH_TransferLineDetailsQuery setAddedCostNotEqualTo(BigDecimal value) { this.AddedCostNotEqualTo = value; return this; } public ArrayList getAddedCostBetween() { return AddedCostBetween; } public WH_TransferLineDetailsQuery setAddedCostBetween(ArrayList value) { this.AddedCostBetween = value; return this; } public ArrayList getAddedCostIn() { return AddedCostIn; } public WH_TransferLineDetailsQuery setAddedCostIn(ArrayList value) { this.AddedCostIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class WH_TransferLinesQuery extends QueryDb implements IReturn> { public String WH_TransferLineID = null; public String WH_TransferLineIDStartsWith = null; public String WH_TransferLineIDEndsWith = null; public String WH_TransferLineIDContains = null; public String WH_TransferLineIDLike = null; public ArrayList WH_TransferLineIDBetween = null; public ArrayList WH_TransferLineIDIn = null; public String WH_TransferID = null; public String WH_TransferIDStartsWith = null; public String WH_TransferIDEndsWith = null; public String WH_TransferIDContains = null; public String WH_TransferIDLike = null; public ArrayList WH_TransferIDBetween = null; public ArrayList WH_TransferIDIn = null; public String InventoryID = null; public String InventoryIDStartsWith = null; public String InventoryIDEndsWith = null; public String InventoryIDContains = null; public String InventoryIDLike = null; public ArrayList InventoryIDBetween = null; public ArrayList InventoryIDIn = null; public String PartNo = null; public String PartNoStartsWith = null; public String PartNoEndsWith = null; public String PartNoContains = null; public String PartNoLike = null; public ArrayList PartNoBetween = null; public ArrayList PartNoIn = null; public String Description = null; public String DescriptionStartsWith = null; public String DescriptionEndsWith = null; public String DescriptionContains = null; public String DescriptionLike = null; public ArrayList DescriptionBetween = null; public ArrayList DescriptionIn = null; public BigDecimal QtyWanted = null; public BigDecimal QtyWantedGreaterThanOrEqualTo = null; public BigDecimal QtyWantedGreaterThan = null; public BigDecimal QtyWantedLessThan = null; public BigDecimal QtyWantedLessThanOrEqualTo = null; public BigDecimal QtyWantedNotEqualTo = null; public ArrayList QtyWantedBetween = null; public ArrayList QtyWantedIn = null; public BigDecimal QtyTrans = null; public BigDecimal QtyTransGreaterThanOrEqualTo = null; public BigDecimal QtyTransGreaterThan = null; public BigDecimal QtyTransLessThan = null; public BigDecimal QtyTransLessThanOrEqualTo = null; public BigDecimal QtyTransNotEqualTo = null; public ArrayList QtyTransBetween = null; public ArrayList QtyTransIn = null; public BigDecimal Cost = null; public BigDecimal CostGreaterThanOrEqualTo = null; public BigDecimal CostGreaterThan = null; public BigDecimal CostLessThan = null; public BigDecimal CostLessThanOrEqualTo = null; public BigDecimal CostNotEqualTo = null; public ArrayList CostBetween = null; public ArrayList CostIn = null; public String Ref = null; public String RefStartsWith = null; public String RefEndsWith = null; public String RefContains = null; public String RefLike = null; public ArrayList RefBetween = null; public ArrayList RefIn = null; public Short LineNum = null; public Short LineNumGreaterThanOrEqualTo = null; public Short LineNumGreaterThan = null; public Short LineNumLessThan = null; public Short LineNumLessThanOrEqualTo = null; public Short LineNumNotEqualTo = null; public ArrayList LineNumBetween = null; public ArrayList LineNumIn = null; public String BackOrderID = null; public String BackOrderIDStartsWith = null; public String BackOrderIDEndsWith = null; public String BackOrderIDContains = null; public String BackOrderIDLike = null; public ArrayList BackOrderIDBetween = null; public ArrayList BackOrderIDIn = null; public String PurchaseOrderID = null; public String PurchaseOrderIDStartsWith = null; public String PurchaseOrderIDEndsWith = null; public String PurchaseOrderIDContains = null; public String PurchaseOrderIDLike = null; public ArrayList PurchaseOrderIDBetween = null; public ArrayList PurchaseOrderIDIn = null; public String PurchaseOrderLineID = null; public String PurchaseOrderLineIDStartsWith = null; public String PurchaseOrderLineIDEndsWith = null; public String PurchaseOrderLineIDContains = null; public String PurchaseOrderLineIDLike = null; public ArrayList PurchaseOrderLineIDBetween = null; public ArrayList PurchaseOrderLineIDIn = null; public String DestinationBinLoc = null; public String DestinationBinLocStartsWith = null; public String DestinationBinLocEndsWith = null; public String DestinationBinLocContains = null; public String DestinationBinLocLike = null; public ArrayList DestinationBinLocBetween = null; public ArrayList DestinationBinLocIn = null; public BigDecimal QtyReceived = null; public BigDecimal QtyReceivedGreaterThanOrEqualTo = null; public BigDecimal QtyReceivedGreaterThan = null; public BigDecimal QtyReceivedLessThan = null; public BigDecimal QtyReceivedLessThanOrEqualTo = null; public BigDecimal QtyReceivedNotEqualTo = null; public ArrayList QtyReceivedBetween = null; public ArrayList QtyReceivedIn = null; public String LinkID = null; public String LinkIDStartsWith = null; public String LinkIDEndsWith = null; public String LinkIDContains = null; public String LinkIDLike = null; public ArrayList LinkIDBetween = null; public ArrayList LinkIDIn = null; public String AddCostLedgerID1 = null; public String AddCostLedgerID1StartsWith = null; public String AddCostLedgerID1EndsWith = null; public String AddCostLedgerID1Contains = null; public String AddCostLedgerID1Like = null; public ArrayList AddCostLedgerID1Between = null; public ArrayList AddCostLedgerID1In = null; public String AddCostLedgerID2 = null; public String AddCostLedgerID2StartsWith = null; public String AddCostLedgerID2EndsWith = null; public String AddCostLedgerID2Contains = null; public String AddCostLedgerID2Like = null; public ArrayList AddCostLedgerID2Between = null; public ArrayList AddCostLedgerID2In = null; public String AddCostLedgerID3 = null; public String AddCostLedgerID3StartsWith = null; public String AddCostLedgerID3EndsWith = null; public String AddCostLedgerID3Contains = null; public String AddCostLedgerID3Like = null; public ArrayList AddCostLedgerID3Between = null; public ArrayList AddCostLedgerID3In = null; public BigDecimal Weight = null; public BigDecimal WeightGreaterThanOrEqualTo = null; public BigDecimal WeightGreaterThan = null; public BigDecimal WeightLessThan = null; public BigDecimal WeightLessThanOrEqualTo = null; public BigDecimal WeightNotEqualTo = null; public ArrayList WeightBetween = null; public ArrayList WeightIn = null; public BigDecimal Cubic = null; public BigDecimal CubicGreaterThanOrEqualTo = null; public BigDecimal CubicGreaterThan = null; public BigDecimal CubicLessThan = null; public BigDecimal CubicLessThanOrEqualTo = null; public BigDecimal CubicNotEqualTo = null; public ArrayList CubicBetween = null; public ArrayList CubicIn = null; public BigDecimal QtyBackOrdered = null; public BigDecimal QtyBackOrderedGreaterThanOrEqualTo = null; public BigDecimal QtyBackOrderedGreaterThan = null; public BigDecimal QtyBackOrderedLessThan = null; public BigDecimal QtyBackOrderedLessThanOrEqualTo = null; public BigDecimal QtyBackOrderedNotEqualTo = null; public ArrayList QtyBackOrderedBetween = null; public ArrayList QtyBackOrderedIn = null; public Date LastSavedDateTime = null; public Date LastSavedDateTimeGreaterThanOrEqualTo = null; public Date LastSavedDateTimeGreaterThan = null; public Date LastSavedDateTimeLessThan = null; public Date LastSavedDateTimeLessThanOrEqualTo = null; public Date LastSavedDateTimeNotEqualTo = null; public ArrayList LastSavedDateTimeBetween = null; public ArrayList LastSavedDateTimeIn = null; public String getWhTransferLineID() { return WH_TransferLineID; } public WH_TransferLinesQuery setWhTransferLineID(String value) { this.WH_TransferLineID = value; return this; } public String getWhTransferLineIDStartsWith() { return WH_TransferLineIDStartsWith; } public WH_TransferLinesQuery setWhTransferLineIDStartsWith(String value) { this.WH_TransferLineIDStartsWith = value; return this; } public String getWhTransferLineIDEndsWith() { return WH_TransferLineIDEndsWith; } public WH_TransferLinesQuery setWhTransferLineIDEndsWith(String value) { this.WH_TransferLineIDEndsWith = value; return this; } public String getWhTransferLineIDContains() { return WH_TransferLineIDContains; } public WH_TransferLinesQuery setWhTransferLineIDContains(String value) { this.WH_TransferLineIDContains = value; return this; } public String getWhTransferLineIDLike() { return WH_TransferLineIDLike; } public WH_TransferLinesQuery setWhTransferLineIDLike(String value) { this.WH_TransferLineIDLike = value; return this; } public ArrayList getWhTransferLineIDBetween() { return WH_TransferLineIDBetween; } public WH_TransferLinesQuery setWhTransferLineIDBetween(ArrayList value) { this.WH_TransferLineIDBetween = value; return this; } public ArrayList getWhTransferLineIDIn() { return WH_TransferLineIDIn; } public WH_TransferLinesQuery setWhTransferLineIDIn(ArrayList value) { this.WH_TransferLineIDIn = value; return this; } public String getWhTransferID() { return WH_TransferID; } public WH_TransferLinesQuery setWhTransferID(String value) { this.WH_TransferID = value; return this; } public String getWhTransferIDStartsWith() { return WH_TransferIDStartsWith; } public WH_TransferLinesQuery setWhTransferIDStartsWith(String value) { this.WH_TransferIDStartsWith = value; return this; } public String getWhTransferIDEndsWith() { return WH_TransferIDEndsWith; } public WH_TransferLinesQuery setWhTransferIDEndsWith(String value) { this.WH_TransferIDEndsWith = value; return this; } public String getWhTransferIDContains() { return WH_TransferIDContains; } public WH_TransferLinesQuery setWhTransferIDContains(String value) { this.WH_TransferIDContains = value; return this; } public String getWhTransferIDLike() { return WH_TransferIDLike; } public WH_TransferLinesQuery setWhTransferIDLike(String value) { this.WH_TransferIDLike = value; return this; } public ArrayList getWhTransferIDBetween() { return WH_TransferIDBetween; } public WH_TransferLinesQuery setWhTransferIDBetween(ArrayList value) { this.WH_TransferIDBetween = value; return this; } public ArrayList getWhTransferIDIn() { return WH_TransferIDIn; } public WH_TransferLinesQuery setWhTransferIDIn(ArrayList value) { this.WH_TransferIDIn = value; return this; } public String getInventoryID() { return InventoryID; } public WH_TransferLinesQuery setInventoryID(String value) { this.InventoryID = value; return this; } public String getInventoryIDStartsWith() { return InventoryIDStartsWith; } public WH_TransferLinesQuery setInventoryIDStartsWith(String value) { this.InventoryIDStartsWith = value; return this; } public String getInventoryIDEndsWith() { return InventoryIDEndsWith; } public WH_TransferLinesQuery setInventoryIDEndsWith(String value) { this.InventoryIDEndsWith = value; return this; } public String getInventoryIDContains() { return InventoryIDContains; } public WH_TransferLinesQuery setInventoryIDContains(String value) { this.InventoryIDContains = value; return this; } public String getInventoryIDLike() { return InventoryIDLike; } public WH_TransferLinesQuery setInventoryIDLike(String value) { this.InventoryIDLike = value; return this; } public ArrayList getInventoryIDBetween() { return InventoryIDBetween; } public WH_TransferLinesQuery setInventoryIDBetween(ArrayList value) { this.InventoryIDBetween = value; return this; } public ArrayList getInventoryIDIn() { return InventoryIDIn; } public WH_TransferLinesQuery setInventoryIDIn(ArrayList value) { this.InventoryIDIn = value; return this; } public String getPartNo() { return PartNo; } public WH_TransferLinesQuery setPartNo(String value) { this.PartNo = value; return this; } public String getPartNoStartsWith() { return PartNoStartsWith; } public WH_TransferLinesQuery setPartNoStartsWith(String value) { this.PartNoStartsWith = value; return this; } public String getPartNoEndsWith() { return PartNoEndsWith; } public WH_TransferLinesQuery setPartNoEndsWith(String value) { this.PartNoEndsWith = value; return this; } public String getPartNoContains() { return PartNoContains; } public WH_TransferLinesQuery setPartNoContains(String value) { this.PartNoContains = value; return this; } public String getPartNoLike() { return PartNoLike; } public WH_TransferLinesQuery setPartNoLike(String value) { this.PartNoLike = value; return this; } public ArrayList getPartNoBetween() { return PartNoBetween; } public WH_TransferLinesQuery setPartNoBetween(ArrayList value) { this.PartNoBetween = value; return this; } public ArrayList getPartNoIn() { return PartNoIn; } public WH_TransferLinesQuery setPartNoIn(ArrayList value) { this.PartNoIn = value; return this; } public String getDescription() { return Description; } public WH_TransferLinesQuery setDescription(String value) { this.Description = value; return this; } public String getDescriptionStartsWith() { return DescriptionStartsWith; } public WH_TransferLinesQuery setDescriptionStartsWith(String value) { this.DescriptionStartsWith = value; return this; } public String getDescriptionEndsWith() { return DescriptionEndsWith; } public WH_TransferLinesQuery setDescriptionEndsWith(String value) { this.DescriptionEndsWith = value; return this; } public String getDescriptionContains() { return DescriptionContains; } public WH_TransferLinesQuery setDescriptionContains(String value) { this.DescriptionContains = value; return this; } public String getDescriptionLike() { return DescriptionLike; } public WH_TransferLinesQuery setDescriptionLike(String value) { this.DescriptionLike = value; return this; } public ArrayList getDescriptionBetween() { return DescriptionBetween; } public WH_TransferLinesQuery setDescriptionBetween(ArrayList value) { this.DescriptionBetween = value; return this; } public ArrayList getDescriptionIn() { return DescriptionIn; } public WH_TransferLinesQuery setDescriptionIn(ArrayList value) { this.DescriptionIn = value; return this; } public BigDecimal getQtyWanted() { return QtyWanted; } public WH_TransferLinesQuery setQtyWanted(BigDecimal value) { this.QtyWanted = value; return this; } public BigDecimal getQtyWantedGreaterThanOrEqualTo() { return QtyWantedGreaterThanOrEqualTo; } public WH_TransferLinesQuery setQtyWantedGreaterThanOrEqualTo(BigDecimal value) { this.QtyWantedGreaterThanOrEqualTo = value; return this; } public BigDecimal getQtyWantedGreaterThan() { return QtyWantedGreaterThan; } public WH_TransferLinesQuery setQtyWantedGreaterThan(BigDecimal value) { this.QtyWantedGreaterThan = value; return this; } public BigDecimal getQtyWantedLessThan() { return QtyWantedLessThan; } public WH_TransferLinesQuery setQtyWantedLessThan(BigDecimal value) { this.QtyWantedLessThan = value; return this; } public BigDecimal getQtyWantedLessThanOrEqualTo() { return QtyWantedLessThanOrEqualTo; } public WH_TransferLinesQuery setQtyWantedLessThanOrEqualTo(BigDecimal value) { this.QtyWantedLessThanOrEqualTo = value; return this; } public BigDecimal getQtyWantedNotEqualTo() { return QtyWantedNotEqualTo; } public WH_TransferLinesQuery setQtyWantedNotEqualTo(BigDecimal value) { this.QtyWantedNotEqualTo = value; return this; } public ArrayList getQtyWantedBetween() { return QtyWantedBetween; } public WH_TransferLinesQuery setQtyWantedBetween(ArrayList value) { this.QtyWantedBetween = value; return this; } public ArrayList getQtyWantedIn() { return QtyWantedIn; } public WH_TransferLinesQuery setQtyWantedIn(ArrayList value) { this.QtyWantedIn = value; return this; } public BigDecimal getQtyTrans() { return QtyTrans; } public WH_TransferLinesQuery setQtyTrans(BigDecimal value) { this.QtyTrans = value; return this; } public BigDecimal getQtyTransGreaterThanOrEqualTo() { return QtyTransGreaterThanOrEqualTo; } public WH_TransferLinesQuery setQtyTransGreaterThanOrEqualTo(BigDecimal value) { this.QtyTransGreaterThanOrEqualTo = value; return this; } public BigDecimal getQtyTransGreaterThan() { return QtyTransGreaterThan; } public WH_TransferLinesQuery setQtyTransGreaterThan(BigDecimal value) { this.QtyTransGreaterThan = value; return this; } public BigDecimal getQtyTransLessThan() { return QtyTransLessThan; } public WH_TransferLinesQuery setQtyTransLessThan(BigDecimal value) { this.QtyTransLessThan = value; return this; } public BigDecimal getQtyTransLessThanOrEqualTo() { return QtyTransLessThanOrEqualTo; } public WH_TransferLinesQuery setQtyTransLessThanOrEqualTo(BigDecimal value) { this.QtyTransLessThanOrEqualTo = value; return this; } public BigDecimal getQtyTransNotEqualTo() { return QtyTransNotEqualTo; } public WH_TransferLinesQuery setQtyTransNotEqualTo(BigDecimal value) { this.QtyTransNotEqualTo = value; return this; } public ArrayList getQtyTransBetween() { return QtyTransBetween; } public WH_TransferLinesQuery setQtyTransBetween(ArrayList value) { this.QtyTransBetween = value; return this; } public ArrayList getQtyTransIn() { return QtyTransIn; } public WH_TransferLinesQuery setQtyTransIn(ArrayList value) { this.QtyTransIn = value; return this; } public BigDecimal getCost() { return Cost; } public WH_TransferLinesQuery setCost(BigDecimal value) { this.Cost = value; return this; } public BigDecimal getCostGreaterThanOrEqualTo() { return CostGreaterThanOrEqualTo; } public WH_TransferLinesQuery setCostGreaterThanOrEqualTo(BigDecimal value) { this.CostGreaterThanOrEqualTo = value; return this; } public BigDecimal getCostGreaterThan() { return CostGreaterThan; } public WH_TransferLinesQuery setCostGreaterThan(BigDecimal value) { this.CostGreaterThan = value; return this; } public BigDecimal getCostLessThan() { return CostLessThan; } public WH_TransferLinesQuery setCostLessThan(BigDecimal value) { this.CostLessThan = value; return this; } public BigDecimal getCostLessThanOrEqualTo() { return CostLessThanOrEqualTo; } public WH_TransferLinesQuery setCostLessThanOrEqualTo(BigDecimal value) { this.CostLessThanOrEqualTo = value; return this; } public BigDecimal getCostNotEqualTo() { return CostNotEqualTo; } public WH_TransferLinesQuery setCostNotEqualTo(BigDecimal value) { this.CostNotEqualTo = value; return this; } public ArrayList getCostBetween() { return CostBetween; } public WH_TransferLinesQuery setCostBetween(ArrayList value) { this.CostBetween = value; return this; } public ArrayList getCostIn() { return CostIn; } public WH_TransferLinesQuery setCostIn(ArrayList value) { this.CostIn = value; return this; } public String getRef() { return Ref; } public WH_TransferLinesQuery setRef(String value) { this.Ref = value; return this; } public String getRefStartsWith() { return RefStartsWith; } public WH_TransferLinesQuery setRefStartsWith(String value) { this.RefStartsWith = value; return this; } public String getRefEndsWith() { return RefEndsWith; } public WH_TransferLinesQuery setRefEndsWith(String value) { this.RefEndsWith = value; return this; } public String getRefContains() { return RefContains; } public WH_TransferLinesQuery setRefContains(String value) { this.RefContains = value; return this; } public String getRefLike() { return RefLike; } public WH_TransferLinesQuery setRefLike(String value) { this.RefLike = value; return this; } public ArrayList getRefBetween() { return RefBetween; } public WH_TransferLinesQuery setRefBetween(ArrayList value) { this.RefBetween = value; return this; } public ArrayList getRefIn() { return RefIn; } public WH_TransferLinesQuery setRefIn(ArrayList value) { this.RefIn = value; return this; } public Short getLineNum() { return LineNum; } public WH_TransferLinesQuery setLineNum(Short value) { this.LineNum = value; return this; } public Short getLineNumGreaterThanOrEqualTo() { return LineNumGreaterThanOrEqualTo; } public WH_TransferLinesQuery setLineNumGreaterThanOrEqualTo(Short value) { this.LineNumGreaterThanOrEqualTo = value; return this; } public Short getLineNumGreaterThan() { return LineNumGreaterThan; } public WH_TransferLinesQuery setLineNumGreaterThan(Short value) { this.LineNumGreaterThan = value; return this; } public Short getLineNumLessThan() { return LineNumLessThan; } public WH_TransferLinesQuery setLineNumLessThan(Short value) { this.LineNumLessThan = value; return this; } public Short getLineNumLessThanOrEqualTo() { return LineNumLessThanOrEqualTo; } public WH_TransferLinesQuery setLineNumLessThanOrEqualTo(Short value) { this.LineNumLessThanOrEqualTo = value; return this; } public Short getLineNumNotEqualTo() { return LineNumNotEqualTo; } public WH_TransferLinesQuery setLineNumNotEqualTo(Short value) { this.LineNumNotEqualTo = value; return this; } public ArrayList getLineNumBetween() { return LineNumBetween; } public WH_TransferLinesQuery setLineNumBetween(ArrayList value) { this.LineNumBetween = value; return this; } public ArrayList getLineNumIn() { return LineNumIn; } public WH_TransferLinesQuery setLineNumIn(ArrayList value) { this.LineNumIn = value; return this; } public String getBackOrderID() { return BackOrderID; } public WH_TransferLinesQuery setBackOrderID(String value) { this.BackOrderID = value; return this; } public String getBackOrderIDStartsWith() { return BackOrderIDStartsWith; } public WH_TransferLinesQuery setBackOrderIDStartsWith(String value) { this.BackOrderIDStartsWith = value; return this; } public String getBackOrderIDEndsWith() { return BackOrderIDEndsWith; } public WH_TransferLinesQuery setBackOrderIDEndsWith(String value) { this.BackOrderIDEndsWith = value; return this; } public String getBackOrderIDContains() { return BackOrderIDContains; } public WH_TransferLinesQuery setBackOrderIDContains(String value) { this.BackOrderIDContains = value; return this; } public String getBackOrderIDLike() { return BackOrderIDLike; } public WH_TransferLinesQuery setBackOrderIDLike(String value) { this.BackOrderIDLike = value; return this; } public ArrayList getBackOrderIDBetween() { return BackOrderIDBetween; } public WH_TransferLinesQuery setBackOrderIDBetween(ArrayList value) { this.BackOrderIDBetween = value; return this; } public ArrayList getBackOrderIDIn() { return BackOrderIDIn; } public WH_TransferLinesQuery setBackOrderIDIn(ArrayList value) { this.BackOrderIDIn = value; return this; } public String getPurchaseOrderID() { return PurchaseOrderID; } public WH_TransferLinesQuery setPurchaseOrderID(String value) { this.PurchaseOrderID = value; return this; } public String getPurchaseOrderIDStartsWith() { return PurchaseOrderIDStartsWith; } public WH_TransferLinesQuery setPurchaseOrderIDStartsWith(String value) { this.PurchaseOrderIDStartsWith = value; return this; } public String getPurchaseOrderIDEndsWith() { return PurchaseOrderIDEndsWith; } public WH_TransferLinesQuery setPurchaseOrderIDEndsWith(String value) { this.PurchaseOrderIDEndsWith = value; return this; } public String getPurchaseOrderIDContains() { return PurchaseOrderIDContains; } public WH_TransferLinesQuery setPurchaseOrderIDContains(String value) { this.PurchaseOrderIDContains = value; return this; } public String getPurchaseOrderIDLike() { return PurchaseOrderIDLike; } public WH_TransferLinesQuery setPurchaseOrderIDLike(String value) { this.PurchaseOrderIDLike = value; return this; } public ArrayList getPurchaseOrderIDBetween() { return PurchaseOrderIDBetween; } public WH_TransferLinesQuery setPurchaseOrderIDBetween(ArrayList value) { this.PurchaseOrderIDBetween = value; return this; } public ArrayList getPurchaseOrderIDIn() { return PurchaseOrderIDIn; } public WH_TransferLinesQuery setPurchaseOrderIDIn(ArrayList value) { this.PurchaseOrderIDIn = value; return this; } public String getPurchaseOrderLineID() { return PurchaseOrderLineID; } public WH_TransferLinesQuery setPurchaseOrderLineID(String value) { this.PurchaseOrderLineID = value; return this; } public String getPurchaseOrderLineIDStartsWith() { return PurchaseOrderLineIDStartsWith; } public WH_TransferLinesQuery setPurchaseOrderLineIDStartsWith(String value) { this.PurchaseOrderLineIDStartsWith = value; return this; } public String getPurchaseOrderLineIDEndsWith() { return PurchaseOrderLineIDEndsWith; } public WH_TransferLinesQuery setPurchaseOrderLineIDEndsWith(String value) { this.PurchaseOrderLineIDEndsWith = value; return this; } public String getPurchaseOrderLineIDContains() { return PurchaseOrderLineIDContains; } public WH_TransferLinesQuery setPurchaseOrderLineIDContains(String value) { this.PurchaseOrderLineIDContains = value; return this; } public String getPurchaseOrderLineIDLike() { return PurchaseOrderLineIDLike; } public WH_TransferLinesQuery setPurchaseOrderLineIDLike(String value) { this.PurchaseOrderLineIDLike = value; return this; } public ArrayList getPurchaseOrderLineIDBetween() { return PurchaseOrderLineIDBetween; } public WH_TransferLinesQuery setPurchaseOrderLineIDBetween(ArrayList value) { this.PurchaseOrderLineIDBetween = value; return this; } public ArrayList getPurchaseOrderLineIDIn() { return PurchaseOrderLineIDIn; } public WH_TransferLinesQuery setPurchaseOrderLineIDIn(ArrayList value) { this.PurchaseOrderLineIDIn = value; return this; } public String getDestinationBinLoc() { return DestinationBinLoc; } public WH_TransferLinesQuery setDestinationBinLoc(String value) { this.DestinationBinLoc = value; return this; } public String getDestinationBinLocStartsWith() { return DestinationBinLocStartsWith; } public WH_TransferLinesQuery setDestinationBinLocStartsWith(String value) { this.DestinationBinLocStartsWith = value; return this; } public String getDestinationBinLocEndsWith() { return DestinationBinLocEndsWith; } public WH_TransferLinesQuery setDestinationBinLocEndsWith(String value) { this.DestinationBinLocEndsWith = value; return this; } public String getDestinationBinLocContains() { return DestinationBinLocContains; } public WH_TransferLinesQuery setDestinationBinLocContains(String value) { this.DestinationBinLocContains = value; return this; } public String getDestinationBinLocLike() { return DestinationBinLocLike; } public WH_TransferLinesQuery setDestinationBinLocLike(String value) { this.DestinationBinLocLike = value; return this; } public ArrayList getDestinationBinLocBetween() { return DestinationBinLocBetween; } public WH_TransferLinesQuery setDestinationBinLocBetween(ArrayList value) { this.DestinationBinLocBetween = value; return this; } public ArrayList getDestinationBinLocIn() { return DestinationBinLocIn; } public WH_TransferLinesQuery setDestinationBinLocIn(ArrayList value) { this.DestinationBinLocIn = value; return this; } public BigDecimal getQtyReceived() { return QtyReceived; } public WH_TransferLinesQuery setQtyReceived(BigDecimal value) { this.QtyReceived = value; return this; } public BigDecimal getQtyReceivedGreaterThanOrEqualTo() { return QtyReceivedGreaterThanOrEqualTo; } public WH_TransferLinesQuery setQtyReceivedGreaterThanOrEqualTo(BigDecimal value) { this.QtyReceivedGreaterThanOrEqualTo = value; return this; } public BigDecimal getQtyReceivedGreaterThan() { return QtyReceivedGreaterThan; } public WH_TransferLinesQuery setQtyReceivedGreaterThan(BigDecimal value) { this.QtyReceivedGreaterThan = value; return this; } public BigDecimal getQtyReceivedLessThan() { return QtyReceivedLessThan; } public WH_TransferLinesQuery setQtyReceivedLessThan(BigDecimal value) { this.QtyReceivedLessThan = value; return this; } public BigDecimal getQtyReceivedLessThanOrEqualTo() { return QtyReceivedLessThanOrEqualTo; } public WH_TransferLinesQuery setQtyReceivedLessThanOrEqualTo(BigDecimal value) { this.QtyReceivedLessThanOrEqualTo = value; return this; } public BigDecimal getQtyReceivedNotEqualTo() { return QtyReceivedNotEqualTo; } public WH_TransferLinesQuery setQtyReceivedNotEqualTo(BigDecimal value) { this.QtyReceivedNotEqualTo = value; return this; } public ArrayList getQtyReceivedBetween() { return QtyReceivedBetween; } public WH_TransferLinesQuery setQtyReceivedBetween(ArrayList value) { this.QtyReceivedBetween = value; return this; } public ArrayList getQtyReceivedIn() { return QtyReceivedIn; } public WH_TransferLinesQuery setQtyReceivedIn(ArrayList value) { this.QtyReceivedIn = value; return this; } public String getLinkID() { return LinkID; } public WH_TransferLinesQuery setLinkID(String value) { this.LinkID = value; return this; } public String getLinkIDStartsWith() { return LinkIDStartsWith; } public WH_TransferLinesQuery setLinkIDStartsWith(String value) { this.LinkIDStartsWith = value; return this; } public String getLinkIDEndsWith() { return LinkIDEndsWith; } public WH_TransferLinesQuery setLinkIDEndsWith(String value) { this.LinkIDEndsWith = value; return this; } public String getLinkIDContains() { return LinkIDContains; } public WH_TransferLinesQuery setLinkIDContains(String value) { this.LinkIDContains = value; return this; } public String getLinkIDLike() { return LinkIDLike; } public WH_TransferLinesQuery setLinkIDLike(String value) { this.LinkIDLike = value; return this; } public ArrayList getLinkIDBetween() { return LinkIDBetween; } public WH_TransferLinesQuery setLinkIDBetween(ArrayList value) { this.LinkIDBetween = value; return this; } public ArrayList getLinkIDIn() { return LinkIDIn; } public WH_TransferLinesQuery setLinkIDIn(ArrayList value) { this.LinkIDIn = value; return this; } public String getAddCostLedgerID1() { return AddCostLedgerID1; } public WH_TransferLinesQuery setAddCostLedgerID1(String value) { this.AddCostLedgerID1 = value; return this; } public String getAddCostLedgerID1StartsWith() { return AddCostLedgerID1StartsWith; } public WH_TransferLinesQuery setAddCostLedgerID1StartsWith(String value) { this.AddCostLedgerID1StartsWith = value; return this; } public String getAddCostLedgerID1EndsWith() { return AddCostLedgerID1EndsWith; } public WH_TransferLinesQuery setAddCostLedgerID1EndsWith(String value) { this.AddCostLedgerID1EndsWith = value; return this; } public String getAddCostLedgerID1Contains() { return AddCostLedgerID1Contains; } public WH_TransferLinesQuery setAddCostLedgerID1Contains(String value) { this.AddCostLedgerID1Contains = value; return this; } public String getAddCostLedgerID1Like() { return AddCostLedgerID1Like; } public WH_TransferLinesQuery setAddCostLedgerID1Like(String value) { this.AddCostLedgerID1Like = value; return this; } public ArrayList getAddCostLedgerID1Between() { return AddCostLedgerID1Between; } public WH_TransferLinesQuery setAddCostLedgerID1Between(ArrayList value) { this.AddCostLedgerID1Between = value; return this; } public ArrayList getAddCostLedgerID1In() { return AddCostLedgerID1In; } public WH_TransferLinesQuery setAddCostLedgerID1In(ArrayList value) { this.AddCostLedgerID1In = value; return this; } public String getAddCostLedgerID2() { return AddCostLedgerID2; } public WH_TransferLinesQuery setAddCostLedgerID2(String value) { this.AddCostLedgerID2 = value; return this; } public String getAddCostLedgerID2StartsWith() { return AddCostLedgerID2StartsWith; } public WH_TransferLinesQuery setAddCostLedgerID2StartsWith(String value) { this.AddCostLedgerID2StartsWith = value; return this; } public String getAddCostLedgerID2EndsWith() { return AddCostLedgerID2EndsWith; } public WH_TransferLinesQuery setAddCostLedgerID2EndsWith(String value) { this.AddCostLedgerID2EndsWith = value; return this; } public String getAddCostLedgerID2Contains() { return AddCostLedgerID2Contains; } public WH_TransferLinesQuery setAddCostLedgerID2Contains(String value) { this.AddCostLedgerID2Contains = value; return this; } public String getAddCostLedgerID2Like() { return AddCostLedgerID2Like; } public WH_TransferLinesQuery setAddCostLedgerID2Like(String value) { this.AddCostLedgerID2Like = value; return this; } public ArrayList getAddCostLedgerID2Between() { return AddCostLedgerID2Between; } public WH_TransferLinesQuery setAddCostLedgerID2Between(ArrayList value) { this.AddCostLedgerID2Between = value; return this; } public ArrayList getAddCostLedgerID2In() { return AddCostLedgerID2In; } public WH_TransferLinesQuery setAddCostLedgerID2In(ArrayList value) { this.AddCostLedgerID2In = value; return this; } public String getAddCostLedgerID3() { return AddCostLedgerID3; } public WH_TransferLinesQuery setAddCostLedgerID3(String value) { this.AddCostLedgerID3 = value; return this; } public String getAddCostLedgerID3StartsWith() { return AddCostLedgerID3StartsWith; } public WH_TransferLinesQuery setAddCostLedgerID3StartsWith(String value) { this.AddCostLedgerID3StartsWith = value; return this; } public String getAddCostLedgerID3EndsWith() { return AddCostLedgerID3EndsWith; } public WH_TransferLinesQuery setAddCostLedgerID3EndsWith(String value) { this.AddCostLedgerID3EndsWith = value; return this; } public String getAddCostLedgerID3Contains() { return AddCostLedgerID3Contains; } public WH_TransferLinesQuery setAddCostLedgerID3Contains(String value) { this.AddCostLedgerID3Contains = value; return this; } public String getAddCostLedgerID3Like() { return AddCostLedgerID3Like; } public WH_TransferLinesQuery setAddCostLedgerID3Like(String value) { this.AddCostLedgerID3Like = value; return this; } public ArrayList getAddCostLedgerID3Between() { return AddCostLedgerID3Between; } public WH_TransferLinesQuery setAddCostLedgerID3Between(ArrayList value) { this.AddCostLedgerID3Between = value; return this; } public ArrayList getAddCostLedgerID3In() { return AddCostLedgerID3In; } public WH_TransferLinesQuery setAddCostLedgerID3In(ArrayList value) { this.AddCostLedgerID3In = value; return this; } public BigDecimal getWeight() { return Weight; } public WH_TransferLinesQuery setWeight(BigDecimal value) { this.Weight = value; return this; } public BigDecimal getWeightGreaterThanOrEqualTo() { return WeightGreaterThanOrEqualTo; } public WH_TransferLinesQuery setWeightGreaterThanOrEqualTo(BigDecimal value) { this.WeightGreaterThanOrEqualTo = value; return this; } public BigDecimal getWeightGreaterThan() { return WeightGreaterThan; } public WH_TransferLinesQuery setWeightGreaterThan(BigDecimal value) { this.WeightGreaterThan = value; return this; } public BigDecimal getWeightLessThan() { return WeightLessThan; } public WH_TransferLinesQuery setWeightLessThan(BigDecimal value) { this.WeightLessThan = value; return this; } public BigDecimal getWeightLessThanOrEqualTo() { return WeightLessThanOrEqualTo; } public WH_TransferLinesQuery setWeightLessThanOrEqualTo(BigDecimal value) { this.WeightLessThanOrEqualTo = value; return this; } public BigDecimal getWeightNotEqualTo() { return WeightNotEqualTo; } public WH_TransferLinesQuery setWeightNotEqualTo(BigDecimal value) { this.WeightNotEqualTo = value; return this; } public ArrayList getWeightBetween() { return WeightBetween; } public WH_TransferLinesQuery setWeightBetween(ArrayList value) { this.WeightBetween = value; return this; } public ArrayList getWeightIn() { return WeightIn; } public WH_TransferLinesQuery setWeightIn(ArrayList value) { this.WeightIn = value; return this; } public BigDecimal getCubic() { return Cubic; } public WH_TransferLinesQuery setCubic(BigDecimal value) { this.Cubic = value; return this; } public BigDecimal getCubicGreaterThanOrEqualTo() { return CubicGreaterThanOrEqualTo; } public WH_TransferLinesQuery setCubicGreaterThanOrEqualTo(BigDecimal value) { this.CubicGreaterThanOrEqualTo = value; return this; } public BigDecimal getCubicGreaterThan() { return CubicGreaterThan; } public WH_TransferLinesQuery setCubicGreaterThan(BigDecimal value) { this.CubicGreaterThan = value; return this; } public BigDecimal getCubicLessThan() { return CubicLessThan; } public WH_TransferLinesQuery setCubicLessThan(BigDecimal value) { this.CubicLessThan = value; return this; } public BigDecimal getCubicLessThanOrEqualTo() { return CubicLessThanOrEqualTo; } public WH_TransferLinesQuery setCubicLessThanOrEqualTo(BigDecimal value) { this.CubicLessThanOrEqualTo = value; return this; } public BigDecimal getCubicNotEqualTo() { return CubicNotEqualTo; } public WH_TransferLinesQuery setCubicNotEqualTo(BigDecimal value) { this.CubicNotEqualTo = value; return this; } public ArrayList getCubicBetween() { return CubicBetween; } public WH_TransferLinesQuery setCubicBetween(ArrayList value) { this.CubicBetween = value; return this; } public ArrayList getCubicIn() { return CubicIn; } public WH_TransferLinesQuery setCubicIn(ArrayList value) { this.CubicIn = value; return this; } public BigDecimal getQtyBackOrdered() { return QtyBackOrdered; } public WH_TransferLinesQuery setQtyBackOrdered(BigDecimal value) { this.QtyBackOrdered = value; return this; } public BigDecimal getQtyBackOrderedGreaterThanOrEqualTo() { return QtyBackOrderedGreaterThanOrEqualTo; } public WH_TransferLinesQuery setQtyBackOrderedGreaterThanOrEqualTo(BigDecimal value) { this.QtyBackOrderedGreaterThanOrEqualTo = value; return this; } public BigDecimal getQtyBackOrderedGreaterThan() { return QtyBackOrderedGreaterThan; } public WH_TransferLinesQuery setQtyBackOrderedGreaterThan(BigDecimal value) { this.QtyBackOrderedGreaterThan = value; return this; } public BigDecimal getQtyBackOrderedLessThan() { return QtyBackOrderedLessThan; } public WH_TransferLinesQuery setQtyBackOrderedLessThan(BigDecimal value) { this.QtyBackOrderedLessThan = value; return this; } public BigDecimal getQtyBackOrderedLessThanOrEqualTo() { return QtyBackOrderedLessThanOrEqualTo; } public WH_TransferLinesQuery setQtyBackOrderedLessThanOrEqualTo(BigDecimal value) { this.QtyBackOrderedLessThanOrEqualTo = value; return this; } public BigDecimal getQtyBackOrderedNotEqualTo() { return QtyBackOrderedNotEqualTo; } public WH_TransferLinesQuery setQtyBackOrderedNotEqualTo(BigDecimal value) { this.QtyBackOrderedNotEqualTo = value; return this; } public ArrayList getQtyBackOrderedBetween() { return QtyBackOrderedBetween; } public WH_TransferLinesQuery setQtyBackOrderedBetween(ArrayList value) { this.QtyBackOrderedBetween = value; return this; } public ArrayList getQtyBackOrderedIn() { return QtyBackOrderedIn; } public WH_TransferLinesQuery setQtyBackOrderedIn(ArrayList value) { this.QtyBackOrderedIn = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public WH_TransferLinesQuery setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getLastSavedDateTimeGreaterThanOrEqualTo() { return LastSavedDateTimeGreaterThanOrEqualTo; } public WH_TransferLinesQuery setLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.LastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeGreaterThan() { return LastSavedDateTimeGreaterThan; } public WH_TransferLinesQuery setLastSavedDateTimeGreaterThan(Date value) { this.LastSavedDateTimeGreaterThan = value; return this; } public Date getLastSavedDateTimeLessThan() { return LastSavedDateTimeLessThan; } public WH_TransferLinesQuery setLastSavedDateTimeLessThan(Date value) { this.LastSavedDateTimeLessThan = value; return this; } public Date getLastSavedDateTimeLessThanOrEqualTo() { return LastSavedDateTimeLessThanOrEqualTo; } public WH_TransferLinesQuery setLastSavedDateTimeLessThanOrEqualTo(Date value) { this.LastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeNotEqualTo() { return LastSavedDateTimeNotEqualTo; } public WH_TransferLinesQuery setLastSavedDateTimeNotEqualTo(Date value) { this.LastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getLastSavedDateTimeBetween() { return LastSavedDateTimeBetween; } public WH_TransferLinesQuery setLastSavedDateTimeBetween(ArrayList value) { this.LastSavedDateTimeBetween = value; return this; } public ArrayList getLastSavedDateTimeIn() { return LastSavedDateTimeIn; } public WH_TransferLinesQuery setLastSavedDateTimeIn(ArrayList value) { this.LastSavedDateTimeIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @Route(Path="/Queries/sh_WarehouseStock", Verbs="GET") @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class sh_WarehouseStockQuery extends QueryDb implements IReturn> { private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @Route(Path="/Queries/sh_SalesOrderLines", Verbs="GET") @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="Not authenticated", StatusCode=401) public static class sh_SalesOrderLineQuery extends QueryDb implements IReturn> { public String InvoiceID = null; public String InvoiceIDStartsWith = null; public String InvoiceIDEndsWith = null; public String InvoiceIDContains = null; public String InvoiceIDLike = null; public ArrayList InvoiceIDBetween = null; public ArrayList InvoiceIDIn = null; public Integer UnitIncGST = null; public Integer UnitIncGSTGreaterThanOrEqualTo = null; public Integer UnitIncGSTGreaterThan = null; public Integer UnitIncGSTLessThan = null; public Integer UnitIncGSTLessThanOrEqualTo = null; public Integer UnitIncGSTNotEqualTo = null; public Boolean UseSerialNo = null; public String PartNo = null; public ArrayList PartNoBetween = null; public ArrayList PartNoIn = null; public String getInvoiceID() { return InvoiceID; } public sh_SalesOrderLineQuery setInvoiceID(String value) { this.InvoiceID = value; return this; } public String getInvoiceIDStartsWith() { return InvoiceIDStartsWith; } public sh_SalesOrderLineQuery setInvoiceIDStartsWith(String value) { this.InvoiceIDStartsWith = value; return this; } public String getInvoiceIDEndsWith() { return InvoiceIDEndsWith; } public sh_SalesOrderLineQuery setInvoiceIDEndsWith(String value) { this.InvoiceIDEndsWith = value; return this; } public String getInvoiceIDContains() { return InvoiceIDContains; } public sh_SalesOrderLineQuery setInvoiceIDContains(String value) { this.InvoiceIDContains = value; return this; } public String getInvoiceIDLike() { return InvoiceIDLike; } public sh_SalesOrderLineQuery setInvoiceIDLike(String value) { this.InvoiceIDLike = value; return this; } public ArrayList getInvoiceIDBetween() { return InvoiceIDBetween; } public sh_SalesOrderLineQuery setInvoiceIDBetween(ArrayList value) { this.InvoiceIDBetween = value; return this; } public ArrayList getInvoiceIDIn() { return InvoiceIDIn; } public sh_SalesOrderLineQuery setInvoiceIDIn(ArrayList value) { this.InvoiceIDIn = value; return this; } public Integer getUnitIncGST() { return UnitIncGST; } public sh_SalesOrderLineQuery setUnitIncGST(Integer value) { this.UnitIncGST = value; return this; } public Integer getUnitIncGSTGreaterThanOrEqualTo() { return UnitIncGSTGreaterThanOrEqualTo; } public sh_SalesOrderLineQuery setUnitIncGSTGreaterThanOrEqualTo(Integer value) { this.UnitIncGSTGreaterThanOrEqualTo = value; return this; } public Integer getUnitIncGSTGreaterThan() { return UnitIncGSTGreaterThan; } public sh_SalesOrderLineQuery setUnitIncGSTGreaterThan(Integer value) { this.UnitIncGSTGreaterThan = value; return this; } public Integer getUnitIncGSTLessThan() { return UnitIncGSTLessThan; } public sh_SalesOrderLineQuery setUnitIncGSTLessThan(Integer value) { this.UnitIncGSTLessThan = value; return this; } public Integer getUnitIncGSTLessThanOrEqualTo() { return UnitIncGSTLessThanOrEqualTo; } public sh_SalesOrderLineQuery setUnitIncGSTLessThanOrEqualTo(Integer value) { this.UnitIncGSTLessThanOrEqualTo = value; return this; } public Integer getUnitIncGSTNotEqualTo() { return UnitIncGSTNotEqualTo; } public sh_SalesOrderLineQuery setUnitIncGSTNotEqualTo(Integer value) { this.UnitIncGSTNotEqualTo = value; return this; } public Boolean isUseSerialNo() { return UseSerialNo; } public sh_SalesOrderLineQuery setUseSerialNo(Boolean value) { this.UseSerialNo = value; return this; } public String getPartNo() { return PartNo; } public sh_SalesOrderLineQuery setPartNo(String value) { this.PartNo = value; return this; } public ArrayList getPartNoBetween() { return PartNoBetween; } public sh_SalesOrderLineQuery setPartNoBetween(ArrayList value) { this.PartNoBetween = value; return this; } public ArrayList getPartNoIn() { return PartNoIn; } public sh_SalesOrderLineQuery setPartNoIn(ArrayList value) { this.PartNoIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @Route(Path="/Queries/sh_SalesOrders", Verbs="GET") @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) public static class sh_SalesOrderQuery extends QueryDb implements IReturn> { public String InvoiceID = null; public String InvoiceIDStartsWith = null; public String InvoiceIDEndsWith = null; public String InvoiceIDContains = null; public String InvoiceIDLike = null; public ArrayList InvoiceIDBetween = null; public ArrayList InvoiceIDIn = null; public String Source = null; public Integer DocType = null; public String DebtorID = null; public String getInvoiceID() { return InvoiceID; } public sh_SalesOrderQuery setInvoiceID(String value) { this.InvoiceID = value; return this; } public String getInvoiceIDStartsWith() { return InvoiceIDStartsWith; } public sh_SalesOrderQuery setInvoiceIDStartsWith(String value) { this.InvoiceIDStartsWith = value; return this; } public String getInvoiceIDEndsWith() { return InvoiceIDEndsWith; } public sh_SalesOrderQuery setInvoiceIDEndsWith(String value) { this.InvoiceIDEndsWith = value; return this; } public String getInvoiceIDContains() { return InvoiceIDContains; } public sh_SalesOrderQuery setInvoiceIDContains(String value) { this.InvoiceIDContains = value; return this; } public String getInvoiceIDLike() { return InvoiceIDLike; } public sh_SalesOrderQuery setInvoiceIDLike(String value) { this.InvoiceIDLike = value; return this; } public ArrayList getInvoiceIDBetween() { return InvoiceIDBetween; } public sh_SalesOrderQuery setInvoiceIDBetween(ArrayList value) { this.InvoiceIDBetween = value; return this; } public ArrayList getInvoiceIDIn() { return InvoiceIDIn; } public sh_SalesOrderQuery setInvoiceIDIn(ArrayList value) { this.InvoiceIDIn = value; return this; } public String getSource() { return Source; } public sh_SalesOrderQuery setSource(String value) { this.Source = value; return this; } public Integer getDocType() { return DocType; } public sh_SalesOrderQuery setDocType(Integer value) { this.DocType = value; return this; } public String getDebtorID() { return DebtorID; } public sh_SalesOrderQuery setDebtorID(String value) { this.DebtorID = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @Route(Path="/Queries/sh_Debtors", Verbs="GET") @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) public static class sh_DebtorQuery extends QueryDb implements IReturn> { private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @Route(Path="/Queries/sh_GoodsReceived_Devices", Verbs="GET") @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) // @ApiResponse(Description="Read OK", StatusCode=200) public static class sh_GoodsReceived_DeviceQuery extends QueryDb implements IReturn> { private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @Route(Path="/Queries/DebtorContact", Verbs="GET") @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class DebtorContactQuery extends QueryDb implements IReturn> { private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class SY_Plugin_ImageQuery extends QueryDb implements IReturn> { public UUID RecID = null; public ArrayList RecIDIn = null; public UUID SY_Plugin_RecID = null; public ArrayList SY_Plugin_RecIDIn = null; public ArrayList Picture = null; public Date LastSavedDateTime = null; public Date LastSavedDateTimeGreaterThanOrEqualTo = null; public Date LastSavedDateTimeGreaterThan = null; public Date LastSavedDateTimeLessThan = null; public Date LastSavedDateTimeLessThanOrEqualTo = null; public Date LastSavedDateTimeNotEqualTo = null; public ArrayList LastSavedDateTimeBetween = null; public ArrayList LastSavedDateTimeIn = null; public Integer ItemNo = null; public Integer ItemNoGreaterThanOrEqualTo = null; public Integer ItemNoGreaterThan = null; public Integer ItemNoLessThan = null; public Integer ItemNoLessThanOrEqualTo = null; public Integer ItemNoNotEqualTo = null; public ArrayList ItemNoBetween = null; public ArrayList ItemNoIn = null; public ArrayList RowHash = null; public UUID getRecID() { return RecID; } public SY_Plugin_ImageQuery setRecID(UUID value) { this.RecID = value; return this; } public ArrayList getRecIDIn() { return RecIDIn; } public SY_Plugin_ImageQuery setRecIDIn(ArrayList value) { this.RecIDIn = value; return this; } public UUID getSyPluginRecID() { return SY_Plugin_RecID; } public SY_Plugin_ImageQuery setSyPluginRecID(UUID value) { this.SY_Plugin_RecID = value; return this; } public ArrayList getSyPluginRecIDIn() { return SY_Plugin_RecIDIn; } public SY_Plugin_ImageQuery setSyPluginRecIDIn(ArrayList value) { this.SY_Plugin_RecIDIn = value; return this; } public ArrayList getPicture() { return Picture; } public SY_Plugin_ImageQuery setPicture(ArrayList value) { this.Picture = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public SY_Plugin_ImageQuery setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getLastSavedDateTimeGreaterThanOrEqualTo() { return LastSavedDateTimeGreaterThanOrEqualTo; } public SY_Plugin_ImageQuery setLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.LastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeGreaterThan() { return LastSavedDateTimeGreaterThan; } public SY_Plugin_ImageQuery setLastSavedDateTimeGreaterThan(Date value) { this.LastSavedDateTimeGreaterThan = value; return this; } public Date getLastSavedDateTimeLessThan() { return LastSavedDateTimeLessThan; } public SY_Plugin_ImageQuery setLastSavedDateTimeLessThan(Date value) { this.LastSavedDateTimeLessThan = value; return this; } public Date getLastSavedDateTimeLessThanOrEqualTo() { return LastSavedDateTimeLessThanOrEqualTo; } public SY_Plugin_ImageQuery setLastSavedDateTimeLessThanOrEqualTo(Date value) { this.LastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeNotEqualTo() { return LastSavedDateTimeNotEqualTo; } public SY_Plugin_ImageQuery setLastSavedDateTimeNotEqualTo(Date value) { this.LastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getLastSavedDateTimeBetween() { return LastSavedDateTimeBetween; } public SY_Plugin_ImageQuery setLastSavedDateTimeBetween(ArrayList value) { this.LastSavedDateTimeBetween = value; return this; } public ArrayList getLastSavedDateTimeIn() { return LastSavedDateTimeIn; } public SY_Plugin_ImageQuery setLastSavedDateTimeIn(ArrayList value) { this.LastSavedDateTimeIn = value; return this; } public Integer getItemNo() { return ItemNo; } public SY_Plugin_ImageQuery setItemNo(Integer value) { this.ItemNo = value; return this; } public Integer getItemNoGreaterThanOrEqualTo() { return ItemNoGreaterThanOrEqualTo; } public SY_Plugin_ImageQuery setItemNoGreaterThanOrEqualTo(Integer value) { this.ItemNoGreaterThanOrEqualTo = value; return this; } public Integer getItemNoGreaterThan() { return ItemNoGreaterThan; } public SY_Plugin_ImageQuery setItemNoGreaterThan(Integer value) { this.ItemNoGreaterThan = value; return this; } public Integer getItemNoLessThan() { return ItemNoLessThan; } public SY_Plugin_ImageQuery setItemNoLessThan(Integer value) { this.ItemNoLessThan = value; return this; } public Integer getItemNoLessThanOrEqualTo() { return ItemNoLessThanOrEqualTo; } public SY_Plugin_ImageQuery setItemNoLessThanOrEqualTo(Integer value) { this.ItemNoLessThanOrEqualTo = value; return this; } public Integer getItemNoNotEqualTo() { return ItemNoNotEqualTo; } public SY_Plugin_ImageQuery setItemNoNotEqualTo(Integer value) { this.ItemNoNotEqualTo = value; return this; } public ArrayList getItemNoBetween() { return ItemNoBetween; } public SY_Plugin_ImageQuery setItemNoBetween(ArrayList value) { this.ItemNoBetween = value; return this; } public ArrayList getItemNoIn() { return ItemNoIn; } public SY_Plugin_ImageQuery setItemNoIn(ArrayList value) { this.ItemNoIn = value; return this; } public ArrayList getRowHash() { return RowHash; } public SY_Plugin_ImageQuery setRowHash(ArrayList value) { this.RowHash = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class SY_Plugin_NotesQuery extends QueryDb implements IReturn> { public String RecID = null; public String RecIDStartsWith = null; public String RecIDEndsWith = null; public String RecIDContains = null; public String RecIDLike = null; public ArrayList RecIDBetween = null; public ArrayList RecIDIn = null; public UUID SY_Plugin_RecID = null; public ArrayList SY_Plugin_RecIDIn = null; public String NoteTypeID = null; public String NoteTypeIDStartsWith = null; public String NoteTypeIDEndsWith = null; public String NoteTypeIDContains = null; public String NoteTypeIDLike = null; public ArrayList NoteTypeIDBetween = null; public ArrayList NoteTypeIDIn = null; public Date LastSavedDateTime = null; public Date LastSavedDateTimeGreaterThanOrEqualTo = null; public Date LastSavedDateTimeGreaterThan = null; public Date LastSavedDateTimeLessThan = null; public Date LastSavedDateTimeLessThanOrEqualTo = null; public Date LastSavedDateTimeNotEqualTo = null; public ArrayList LastSavedDateTimeBetween = null; public ArrayList LastSavedDateTimeIn = null; public String LastSavedByStaffID = null; public String LastSavedByStaffIDStartsWith = null; public String LastSavedByStaffIDEndsWith = null; public String LastSavedByStaffIDContains = null; public String LastSavedByStaffIDLike = null; public ArrayList LastSavedByStaffIDBetween = null; public ArrayList LastSavedByStaffIDIn = null; public String NoteText = null; public String NoteTextStartsWith = null; public String NoteTextEndsWith = null; public String NoteTextContains = null; public String NoteTextLike = null; public ArrayList NoteTextBetween = null; public ArrayList NoteTextIn = null; public Integer ItemNo = null; public Integer ItemNoGreaterThanOrEqualTo = null; public Integer ItemNoGreaterThan = null; public Integer ItemNoLessThan = null; public Integer ItemNoLessThanOrEqualTo = null; public Integer ItemNoNotEqualTo = null; public ArrayList ItemNoBetween = null; public ArrayList ItemNoIn = null; public String getRecID() { return RecID; } public SY_Plugin_NotesQuery setRecID(String value) { this.RecID = value; return this; } public String getRecIDStartsWith() { return RecIDStartsWith; } public SY_Plugin_NotesQuery setRecIDStartsWith(String value) { this.RecIDStartsWith = value; return this; } public String getRecIDEndsWith() { return RecIDEndsWith; } public SY_Plugin_NotesQuery setRecIDEndsWith(String value) { this.RecIDEndsWith = value; return this; } public String getRecIDContains() { return RecIDContains; } public SY_Plugin_NotesQuery setRecIDContains(String value) { this.RecIDContains = value; return this; } public String getRecIDLike() { return RecIDLike; } public SY_Plugin_NotesQuery setRecIDLike(String value) { this.RecIDLike = value; return this; } public ArrayList getRecIDBetween() { return RecIDBetween; } public SY_Plugin_NotesQuery setRecIDBetween(ArrayList value) { this.RecIDBetween = value; return this; } public ArrayList getRecIDIn() { return RecIDIn; } public SY_Plugin_NotesQuery setRecIDIn(ArrayList value) { this.RecIDIn = value; return this; } public UUID getSyPluginRecID() { return SY_Plugin_RecID; } public SY_Plugin_NotesQuery setSyPluginRecID(UUID value) { this.SY_Plugin_RecID = value; return this; } public ArrayList getSyPluginRecIDIn() { return SY_Plugin_RecIDIn; } public SY_Plugin_NotesQuery setSyPluginRecIDIn(ArrayList value) { this.SY_Plugin_RecIDIn = value; return this; } public String getNoteTypeID() { return NoteTypeID; } public SY_Plugin_NotesQuery setNoteTypeID(String value) { this.NoteTypeID = value; return this; } public String getNoteTypeIDStartsWith() { return NoteTypeIDStartsWith; } public SY_Plugin_NotesQuery setNoteTypeIDStartsWith(String value) { this.NoteTypeIDStartsWith = value; return this; } public String getNoteTypeIDEndsWith() { return NoteTypeIDEndsWith; } public SY_Plugin_NotesQuery setNoteTypeIDEndsWith(String value) { this.NoteTypeIDEndsWith = value; return this; } public String getNoteTypeIDContains() { return NoteTypeIDContains; } public SY_Plugin_NotesQuery setNoteTypeIDContains(String value) { this.NoteTypeIDContains = value; return this; } public String getNoteTypeIDLike() { return NoteTypeIDLike; } public SY_Plugin_NotesQuery setNoteTypeIDLike(String value) { this.NoteTypeIDLike = value; return this; } public ArrayList getNoteTypeIDBetween() { return NoteTypeIDBetween; } public SY_Plugin_NotesQuery setNoteTypeIDBetween(ArrayList value) { this.NoteTypeIDBetween = value; return this; } public ArrayList getNoteTypeIDIn() { return NoteTypeIDIn; } public SY_Plugin_NotesQuery setNoteTypeIDIn(ArrayList value) { this.NoteTypeIDIn = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public SY_Plugin_NotesQuery setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getLastSavedDateTimeGreaterThanOrEqualTo() { return LastSavedDateTimeGreaterThanOrEqualTo; } public SY_Plugin_NotesQuery setLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.LastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeGreaterThan() { return LastSavedDateTimeGreaterThan; } public SY_Plugin_NotesQuery setLastSavedDateTimeGreaterThan(Date value) { this.LastSavedDateTimeGreaterThan = value; return this; } public Date getLastSavedDateTimeLessThan() { return LastSavedDateTimeLessThan; } public SY_Plugin_NotesQuery setLastSavedDateTimeLessThan(Date value) { this.LastSavedDateTimeLessThan = value; return this; } public Date getLastSavedDateTimeLessThanOrEqualTo() { return LastSavedDateTimeLessThanOrEqualTo; } public SY_Plugin_NotesQuery setLastSavedDateTimeLessThanOrEqualTo(Date value) { this.LastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeNotEqualTo() { return LastSavedDateTimeNotEqualTo; } public SY_Plugin_NotesQuery setLastSavedDateTimeNotEqualTo(Date value) { this.LastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getLastSavedDateTimeBetween() { return LastSavedDateTimeBetween; } public SY_Plugin_NotesQuery setLastSavedDateTimeBetween(ArrayList value) { this.LastSavedDateTimeBetween = value; return this; } public ArrayList getLastSavedDateTimeIn() { return LastSavedDateTimeIn; } public SY_Plugin_NotesQuery setLastSavedDateTimeIn(ArrayList value) { this.LastSavedDateTimeIn = value; return this; } public String getLastSavedByStaffID() { return LastSavedByStaffID; } public SY_Plugin_NotesQuery setLastSavedByStaffID(String value) { this.LastSavedByStaffID = value; return this; } public String getLastSavedByStaffIDStartsWith() { return LastSavedByStaffIDStartsWith; } public SY_Plugin_NotesQuery setLastSavedByStaffIDStartsWith(String value) { this.LastSavedByStaffIDStartsWith = value; return this; } public String getLastSavedByStaffIDEndsWith() { return LastSavedByStaffIDEndsWith; } public SY_Plugin_NotesQuery setLastSavedByStaffIDEndsWith(String value) { this.LastSavedByStaffIDEndsWith = value; return this; } public String getLastSavedByStaffIDContains() { return LastSavedByStaffIDContains; } public SY_Plugin_NotesQuery setLastSavedByStaffIDContains(String value) { this.LastSavedByStaffIDContains = value; return this; } public String getLastSavedByStaffIDLike() { return LastSavedByStaffIDLike; } public SY_Plugin_NotesQuery setLastSavedByStaffIDLike(String value) { this.LastSavedByStaffIDLike = value; return this; } public ArrayList getLastSavedByStaffIDBetween() { return LastSavedByStaffIDBetween; } public SY_Plugin_NotesQuery setLastSavedByStaffIDBetween(ArrayList value) { this.LastSavedByStaffIDBetween = value; return this; } public ArrayList getLastSavedByStaffIDIn() { return LastSavedByStaffIDIn; } public SY_Plugin_NotesQuery setLastSavedByStaffIDIn(ArrayList value) { this.LastSavedByStaffIDIn = value; return this; } public String getNoteText() { return NoteText; } public SY_Plugin_NotesQuery setNoteText(String value) { this.NoteText = value; return this; } public String getNoteTextStartsWith() { return NoteTextStartsWith; } public SY_Plugin_NotesQuery setNoteTextStartsWith(String value) { this.NoteTextStartsWith = value; return this; } public String getNoteTextEndsWith() { return NoteTextEndsWith; } public SY_Plugin_NotesQuery setNoteTextEndsWith(String value) { this.NoteTextEndsWith = value; return this; } public String getNoteTextContains() { return NoteTextContains; } public SY_Plugin_NotesQuery setNoteTextContains(String value) { this.NoteTextContains = value; return this; } public String getNoteTextLike() { return NoteTextLike; } public SY_Plugin_NotesQuery setNoteTextLike(String value) { this.NoteTextLike = value; return this; } public ArrayList getNoteTextBetween() { return NoteTextBetween; } public SY_Plugin_NotesQuery setNoteTextBetween(ArrayList value) { this.NoteTextBetween = value; return this; } public ArrayList getNoteTextIn() { return NoteTextIn; } public SY_Plugin_NotesQuery setNoteTextIn(ArrayList value) { this.NoteTextIn = value; return this; } public Integer getItemNo() { return ItemNo; } public SY_Plugin_NotesQuery setItemNo(Integer value) { this.ItemNo = value; return this; } public Integer getItemNoGreaterThanOrEqualTo() { return ItemNoGreaterThanOrEqualTo; } public SY_Plugin_NotesQuery setItemNoGreaterThanOrEqualTo(Integer value) { this.ItemNoGreaterThanOrEqualTo = value; return this; } public Integer getItemNoGreaterThan() { return ItemNoGreaterThan; } public SY_Plugin_NotesQuery setItemNoGreaterThan(Integer value) { this.ItemNoGreaterThan = value; return this; } public Integer getItemNoLessThan() { return ItemNoLessThan; } public SY_Plugin_NotesQuery setItemNoLessThan(Integer value) { this.ItemNoLessThan = value; return this; } public Integer getItemNoLessThanOrEqualTo() { return ItemNoLessThanOrEqualTo; } public SY_Plugin_NotesQuery setItemNoLessThanOrEqualTo(Integer value) { this.ItemNoLessThanOrEqualTo = value; return this; } public Integer getItemNoNotEqualTo() { return ItemNoNotEqualTo; } public SY_Plugin_NotesQuery setItemNoNotEqualTo(Integer value) { this.ItemNoNotEqualTo = value; return this; } public ArrayList getItemNoBetween() { return ItemNoBetween; } public SY_Plugin_NotesQuery setItemNoBetween(ArrayList value) { this.ItemNoBetween = value; return this; } public ArrayList getItemNoIn() { return ItemNoIn; } public SY_Plugin_NotesQuery setItemNoIn(ArrayList value) { this.ItemNoIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class SY_PluginBusinessLogicQuery extends QueryDb implements IReturn> { public UUID RecID = null; public ArrayList RecIDIn = null; public UUID SY_Plugin_RecID = null; public ArrayList SY_Plugin_RecIDIn = null; public UUID SY_BusinessLogic_RecID = null; public ArrayList SY_BusinessLogic_RecIDIn = null; public Integer ItemNo = null; public Integer ItemNoGreaterThanOrEqualTo = null; public Integer ItemNoGreaterThan = null; public Integer ItemNoLessThan = null; public Integer ItemNoLessThanOrEqualTo = null; public Integer ItemNoNotEqualTo = null; public ArrayList ItemNoBetween = null; public ArrayList ItemNoIn = null; public ArrayList RowHash = null; public UUID getRecID() { return RecID; } public SY_PluginBusinessLogicQuery setRecID(UUID value) { this.RecID = value; return this; } public ArrayList getRecIDIn() { return RecIDIn; } public SY_PluginBusinessLogicQuery setRecIDIn(ArrayList value) { this.RecIDIn = value; return this; } public UUID getSyPluginRecID() { return SY_Plugin_RecID; } public SY_PluginBusinessLogicQuery setSyPluginRecID(UUID value) { this.SY_Plugin_RecID = value; return this; } public ArrayList getSyPluginRecIDIn() { return SY_Plugin_RecIDIn; } public SY_PluginBusinessLogicQuery setSyPluginRecIDIn(ArrayList value) { this.SY_Plugin_RecIDIn = value; return this; } public UUID getSyBusinessLogicRecID() { return SY_BusinessLogic_RecID; } public SY_PluginBusinessLogicQuery setSyBusinessLogicRecID(UUID value) { this.SY_BusinessLogic_RecID = value; return this; } public ArrayList getSyBusinessLogicRecIDIn() { return SY_BusinessLogic_RecIDIn; } public SY_PluginBusinessLogicQuery setSyBusinessLogicRecIDIn(ArrayList value) { this.SY_BusinessLogic_RecIDIn = value; return this; } public Integer getItemNo() { return ItemNo; } public SY_PluginBusinessLogicQuery setItemNo(Integer value) { this.ItemNo = value; return this; } public Integer getItemNoGreaterThanOrEqualTo() { return ItemNoGreaterThanOrEqualTo; } public SY_PluginBusinessLogicQuery setItemNoGreaterThanOrEqualTo(Integer value) { this.ItemNoGreaterThanOrEqualTo = value; return this; } public Integer getItemNoGreaterThan() { return ItemNoGreaterThan; } public SY_PluginBusinessLogicQuery setItemNoGreaterThan(Integer value) { this.ItemNoGreaterThan = value; return this; } public Integer getItemNoLessThan() { return ItemNoLessThan; } public SY_PluginBusinessLogicQuery setItemNoLessThan(Integer value) { this.ItemNoLessThan = value; return this; } public Integer getItemNoLessThanOrEqualTo() { return ItemNoLessThanOrEqualTo; } public SY_PluginBusinessLogicQuery setItemNoLessThanOrEqualTo(Integer value) { this.ItemNoLessThanOrEqualTo = value; return this; } public Integer getItemNoNotEqualTo() { return ItemNoNotEqualTo; } public SY_PluginBusinessLogicQuery setItemNoNotEqualTo(Integer value) { this.ItemNoNotEqualTo = value; return this; } public ArrayList getItemNoBetween() { return ItemNoBetween; } public SY_PluginBusinessLogicQuery setItemNoBetween(ArrayList value) { this.ItemNoBetween = value; return this; } public ArrayList getItemNoIn() { return ItemNoIn; } public SY_PluginBusinessLogicQuery setItemNoIn(ArrayList value) { this.ItemNoIn = value; return this; } public ArrayList getRowHash() { return RowHash; } public SY_PluginBusinessLogicQuery setRowHash(ArrayList value) { this.RowHash = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class SY_PluginCustomSettingModulesQuery extends QueryDb implements IReturn> { public UUID RecID = null; public ArrayList RecIDIn = null; public String ModuleName = null; public String ModuleNameStartsWith = null; public String ModuleNameEndsWith = null; public String ModuleNameContains = null; public String ModuleNameLike = null; public ArrayList ModuleNameBetween = null; public ArrayList ModuleNameIn = null; public String TableName = null; public String TableNameStartsWith = null; public String TableNameEndsWith = null; public String TableNameContains = null; public String TableNameLike = null; public ArrayList TableNameBetween = null; public ArrayList TableNameIn = null; public String IDColumnName = null; public String IDColumnNameStartsWith = null; public String IDColumnNameEndsWith = null; public String IDColumnNameContains = null; public String IDColumnNameLike = null; public ArrayList IDColumnNameBetween = null; public ArrayList IDColumnNameIn = null; public Integer ItemNo = null; public Integer ItemNoGreaterThanOrEqualTo = null; public Integer ItemNoGreaterThan = null; public Integer ItemNoLessThan = null; public Integer ItemNoLessThanOrEqualTo = null; public Integer ItemNoNotEqualTo = null; public ArrayList ItemNoBetween = null; public ArrayList ItemNoIn = null; public ArrayList RowHash = null; public String ValuesTableName = null; public String ValuesTableNameStartsWith = null; public String ValuesTableNameEndsWith = null; public String ValuesTableNameContains = null; public String ValuesTableNameLike = null; public ArrayList ValuesTableNameBetween = null; public ArrayList ValuesTableNameIn = null; public String ValuesIDColumnName = null; public String ValuesIDColumnNameStartsWith = null; public String ValuesIDColumnNameEndsWith = null; public String ValuesIDColumnNameContains = null; public String ValuesIDColumnNameLike = null; public ArrayList ValuesIDColumnNameBetween = null; public ArrayList ValuesIDColumnNameIn = null; public String ValuesSettingIDColumnName = null; public String ValuesSettingIDColumnNameStartsWith = null; public String ValuesSettingIDColumnNameEndsWith = null; public String ValuesSettingIDColumnNameContains = null; public String ValuesSettingIDColumnNameLike = null; public ArrayList ValuesSettingIDColumnNameBetween = null; public ArrayList ValuesSettingIDColumnNameIn = null; public String ValuesFKIDColumnName = null; public String ValuesFKIDColumnNameStartsWith = null; public String ValuesFKIDColumnNameEndsWith = null; public String ValuesFKIDColumnNameContains = null; public String ValuesFKIDColumnNameLike = null; public ArrayList ValuesFKIDColumnNameBetween = null; public ArrayList ValuesFKIDColumnNameIn = null; public UUID getRecID() { return RecID; } public SY_PluginCustomSettingModulesQuery setRecID(UUID value) { this.RecID = value; return this; } public ArrayList getRecIDIn() { return RecIDIn; } public SY_PluginCustomSettingModulesQuery setRecIDIn(ArrayList value) { this.RecIDIn = value; return this; } public String getModuleName() { return ModuleName; } public SY_PluginCustomSettingModulesQuery setModuleName(String value) { this.ModuleName = value; return this; } public String getModuleNameStartsWith() { return ModuleNameStartsWith; } public SY_PluginCustomSettingModulesQuery setModuleNameStartsWith(String value) { this.ModuleNameStartsWith = value; return this; } public String getModuleNameEndsWith() { return ModuleNameEndsWith; } public SY_PluginCustomSettingModulesQuery setModuleNameEndsWith(String value) { this.ModuleNameEndsWith = value; return this; } public String getModuleNameContains() { return ModuleNameContains; } public SY_PluginCustomSettingModulesQuery setModuleNameContains(String value) { this.ModuleNameContains = value; return this; } public String getModuleNameLike() { return ModuleNameLike; } public SY_PluginCustomSettingModulesQuery setModuleNameLike(String value) { this.ModuleNameLike = value; return this; } public ArrayList getModuleNameBetween() { return ModuleNameBetween; } public SY_PluginCustomSettingModulesQuery setModuleNameBetween(ArrayList value) { this.ModuleNameBetween = value; return this; } public ArrayList getModuleNameIn() { return ModuleNameIn; } public SY_PluginCustomSettingModulesQuery setModuleNameIn(ArrayList value) { this.ModuleNameIn = value; return this; } public String getTableName() { return TableName; } public SY_PluginCustomSettingModulesQuery setTableName(String value) { this.TableName = value; return this; } public String getTableNameStartsWith() { return TableNameStartsWith; } public SY_PluginCustomSettingModulesQuery setTableNameStartsWith(String value) { this.TableNameStartsWith = value; return this; } public String getTableNameEndsWith() { return TableNameEndsWith; } public SY_PluginCustomSettingModulesQuery setTableNameEndsWith(String value) { this.TableNameEndsWith = value; return this; } public String getTableNameContains() { return TableNameContains; } public SY_PluginCustomSettingModulesQuery setTableNameContains(String value) { this.TableNameContains = value; return this; } public String getTableNameLike() { return TableNameLike; } public SY_PluginCustomSettingModulesQuery setTableNameLike(String value) { this.TableNameLike = value; return this; } public ArrayList getTableNameBetween() { return TableNameBetween; } public SY_PluginCustomSettingModulesQuery setTableNameBetween(ArrayList value) { this.TableNameBetween = value; return this; } public ArrayList getTableNameIn() { return TableNameIn; } public SY_PluginCustomSettingModulesQuery setTableNameIn(ArrayList value) { this.TableNameIn = value; return this; } public String getIdColumnName() { return IDColumnName; } public SY_PluginCustomSettingModulesQuery setIdColumnName(String value) { this.IDColumnName = value; return this; } public String getIdColumnNameStartsWith() { return IDColumnNameStartsWith; } public SY_PluginCustomSettingModulesQuery setIdColumnNameStartsWith(String value) { this.IDColumnNameStartsWith = value; return this; } public String getIdColumnNameEndsWith() { return IDColumnNameEndsWith; } public SY_PluginCustomSettingModulesQuery setIdColumnNameEndsWith(String value) { this.IDColumnNameEndsWith = value; return this; } public String getIdColumnNameContains() { return IDColumnNameContains; } public SY_PluginCustomSettingModulesQuery setIdColumnNameContains(String value) { this.IDColumnNameContains = value; return this; } public String getIdColumnNameLike() { return IDColumnNameLike; } public SY_PluginCustomSettingModulesQuery setIdColumnNameLike(String value) { this.IDColumnNameLike = value; return this; } public ArrayList getIdColumnNameBetween() { return IDColumnNameBetween; } public SY_PluginCustomSettingModulesQuery setIdColumnNameBetween(ArrayList value) { this.IDColumnNameBetween = value; return this; } public ArrayList getIdColumnNameIn() { return IDColumnNameIn; } public SY_PluginCustomSettingModulesQuery setIdColumnNameIn(ArrayList value) { this.IDColumnNameIn = value; return this; } public Integer getItemNo() { return ItemNo; } public SY_PluginCustomSettingModulesQuery setItemNo(Integer value) { this.ItemNo = value; return this; } public Integer getItemNoGreaterThanOrEqualTo() { return ItemNoGreaterThanOrEqualTo; } public SY_PluginCustomSettingModulesQuery setItemNoGreaterThanOrEqualTo(Integer value) { this.ItemNoGreaterThanOrEqualTo = value; return this; } public Integer getItemNoGreaterThan() { return ItemNoGreaterThan; } public SY_PluginCustomSettingModulesQuery setItemNoGreaterThan(Integer value) { this.ItemNoGreaterThan = value; return this; } public Integer getItemNoLessThan() { return ItemNoLessThan; } public SY_PluginCustomSettingModulesQuery setItemNoLessThan(Integer value) { this.ItemNoLessThan = value; return this; } public Integer getItemNoLessThanOrEqualTo() { return ItemNoLessThanOrEqualTo; } public SY_PluginCustomSettingModulesQuery setItemNoLessThanOrEqualTo(Integer value) { this.ItemNoLessThanOrEqualTo = value; return this; } public Integer getItemNoNotEqualTo() { return ItemNoNotEqualTo; } public SY_PluginCustomSettingModulesQuery setItemNoNotEqualTo(Integer value) { this.ItemNoNotEqualTo = value; return this; } public ArrayList getItemNoBetween() { return ItemNoBetween; } public SY_PluginCustomSettingModulesQuery setItemNoBetween(ArrayList value) { this.ItemNoBetween = value; return this; } public ArrayList getItemNoIn() { return ItemNoIn; } public SY_PluginCustomSettingModulesQuery setItemNoIn(ArrayList value) { this.ItemNoIn = value; return this; } public ArrayList getRowHash() { return RowHash; } public SY_PluginCustomSettingModulesQuery setRowHash(ArrayList value) { this.RowHash = value; return this; } public String getValuesTableName() { return ValuesTableName; } public SY_PluginCustomSettingModulesQuery setValuesTableName(String value) { this.ValuesTableName = value; return this; } public String getValuesTableNameStartsWith() { return ValuesTableNameStartsWith; } public SY_PluginCustomSettingModulesQuery setValuesTableNameStartsWith(String value) { this.ValuesTableNameStartsWith = value; return this; } public String getValuesTableNameEndsWith() { return ValuesTableNameEndsWith; } public SY_PluginCustomSettingModulesQuery setValuesTableNameEndsWith(String value) { this.ValuesTableNameEndsWith = value; return this; } public String getValuesTableNameContains() { return ValuesTableNameContains; } public SY_PluginCustomSettingModulesQuery setValuesTableNameContains(String value) { this.ValuesTableNameContains = value; return this; } public String getValuesTableNameLike() { return ValuesTableNameLike; } public SY_PluginCustomSettingModulesQuery setValuesTableNameLike(String value) { this.ValuesTableNameLike = value; return this; } public ArrayList getValuesTableNameBetween() { return ValuesTableNameBetween; } public SY_PluginCustomSettingModulesQuery setValuesTableNameBetween(ArrayList value) { this.ValuesTableNameBetween = value; return this; } public ArrayList getValuesTableNameIn() { return ValuesTableNameIn; } public SY_PluginCustomSettingModulesQuery setValuesTableNameIn(ArrayList value) { this.ValuesTableNameIn = value; return this; } public String getValuesIDColumnName() { return ValuesIDColumnName; } public SY_PluginCustomSettingModulesQuery setValuesIDColumnName(String value) { this.ValuesIDColumnName = value; return this; } public String getValuesIDColumnNameStartsWith() { return ValuesIDColumnNameStartsWith; } public SY_PluginCustomSettingModulesQuery setValuesIDColumnNameStartsWith(String value) { this.ValuesIDColumnNameStartsWith = value; return this; } public String getValuesIDColumnNameEndsWith() { return ValuesIDColumnNameEndsWith; } public SY_PluginCustomSettingModulesQuery setValuesIDColumnNameEndsWith(String value) { this.ValuesIDColumnNameEndsWith = value; return this; } public String getValuesIDColumnNameContains() { return ValuesIDColumnNameContains; } public SY_PluginCustomSettingModulesQuery setValuesIDColumnNameContains(String value) { this.ValuesIDColumnNameContains = value; return this; } public String getValuesIDColumnNameLike() { return ValuesIDColumnNameLike; } public SY_PluginCustomSettingModulesQuery setValuesIDColumnNameLike(String value) { this.ValuesIDColumnNameLike = value; return this; } public ArrayList getValuesIDColumnNameBetween() { return ValuesIDColumnNameBetween; } public SY_PluginCustomSettingModulesQuery setValuesIDColumnNameBetween(ArrayList value) { this.ValuesIDColumnNameBetween = value; return this; } public ArrayList getValuesIDColumnNameIn() { return ValuesIDColumnNameIn; } public SY_PluginCustomSettingModulesQuery setValuesIDColumnNameIn(ArrayList value) { this.ValuesIDColumnNameIn = value; return this; } public String getValuesSettingIDColumnName() { return ValuesSettingIDColumnName; } public SY_PluginCustomSettingModulesQuery setValuesSettingIDColumnName(String value) { this.ValuesSettingIDColumnName = value; return this; } public String getValuesSettingIDColumnNameStartsWith() { return ValuesSettingIDColumnNameStartsWith; } public SY_PluginCustomSettingModulesQuery setValuesSettingIDColumnNameStartsWith(String value) { this.ValuesSettingIDColumnNameStartsWith = value; return this; } public String getValuesSettingIDColumnNameEndsWith() { return ValuesSettingIDColumnNameEndsWith; } public SY_PluginCustomSettingModulesQuery setValuesSettingIDColumnNameEndsWith(String value) { this.ValuesSettingIDColumnNameEndsWith = value; return this; } public String getValuesSettingIDColumnNameContains() { return ValuesSettingIDColumnNameContains; } public SY_PluginCustomSettingModulesQuery setValuesSettingIDColumnNameContains(String value) { this.ValuesSettingIDColumnNameContains = value; return this; } public String getValuesSettingIDColumnNameLike() { return ValuesSettingIDColumnNameLike; } public SY_PluginCustomSettingModulesQuery setValuesSettingIDColumnNameLike(String value) { this.ValuesSettingIDColumnNameLike = value; return this; } public ArrayList getValuesSettingIDColumnNameBetween() { return ValuesSettingIDColumnNameBetween; } public SY_PluginCustomSettingModulesQuery setValuesSettingIDColumnNameBetween(ArrayList value) { this.ValuesSettingIDColumnNameBetween = value; return this; } public ArrayList getValuesSettingIDColumnNameIn() { return ValuesSettingIDColumnNameIn; } public SY_PluginCustomSettingModulesQuery setValuesSettingIDColumnNameIn(ArrayList value) { this.ValuesSettingIDColumnNameIn = value; return this; } public String getValuesFKIDColumnName() { return ValuesFKIDColumnName; } public SY_PluginCustomSettingModulesQuery setValuesFKIDColumnName(String value) { this.ValuesFKIDColumnName = value; return this; } public String getValuesFKIDColumnNameStartsWith() { return ValuesFKIDColumnNameStartsWith; } public SY_PluginCustomSettingModulesQuery setValuesFKIDColumnNameStartsWith(String value) { this.ValuesFKIDColumnNameStartsWith = value; return this; } public String getValuesFKIDColumnNameEndsWith() { return ValuesFKIDColumnNameEndsWith; } public SY_PluginCustomSettingModulesQuery setValuesFKIDColumnNameEndsWith(String value) { this.ValuesFKIDColumnNameEndsWith = value; return this; } public String getValuesFKIDColumnNameContains() { return ValuesFKIDColumnNameContains; } public SY_PluginCustomSettingModulesQuery setValuesFKIDColumnNameContains(String value) { this.ValuesFKIDColumnNameContains = value; return this; } public String getValuesFKIDColumnNameLike() { return ValuesFKIDColumnNameLike; } public SY_PluginCustomSettingModulesQuery setValuesFKIDColumnNameLike(String value) { this.ValuesFKIDColumnNameLike = value; return this; } public ArrayList getValuesFKIDColumnNameBetween() { return ValuesFKIDColumnNameBetween; } public SY_PluginCustomSettingModulesQuery setValuesFKIDColumnNameBetween(ArrayList value) { this.ValuesFKIDColumnNameBetween = value; return this; } public ArrayList getValuesFKIDColumnNameIn() { return ValuesFKIDColumnNameIn; } public SY_PluginCustomSettingModulesQuery setValuesFKIDColumnNameIn(ArrayList value) { this.ValuesFKIDColumnNameIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class SY_PluginDocumentsQuery extends QueryDb implements IReturn> { public String RecID = null; public String RecIDStartsWith = null; public String RecIDEndsWith = null; public String RecIDContains = null; public String RecIDLike = null; public ArrayList RecIDBetween = null; public ArrayList RecIDIn = null; public UUID SY_Plugin_RecID = null; public ArrayList SY_Plugin_RecIDIn = null; public String DocumentTypeID = null; public String DocumentTypeIDStartsWith = null; public String DocumentTypeIDEndsWith = null; public String DocumentTypeIDContains = null; public String DocumentTypeIDLike = null; public ArrayList DocumentTypeIDBetween = null; public ArrayList DocumentTypeIDIn = null; public Date LastSavedDateTime = null; public Date LastSavedDateTimeGreaterThanOrEqualTo = null; public Date LastSavedDateTimeGreaterThan = null; public Date LastSavedDateTimeLessThan = null; public Date LastSavedDateTimeLessThanOrEqualTo = null; public Date LastSavedDateTimeNotEqualTo = null; public ArrayList LastSavedDateTimeBetween = null; public ArrayList LastSavedDateTimeIn = null; public String LastSavedByStaffID = null; public String LastSavedByStaffIDStartsWith = null; public String LastSavedByStaffIDEndsWith = null; public String LastSavedByStaffIDContains = null; public String LastSavedByStaffIDLike = null; public ArrayList LastSavedByStaffIDBetween = null; public ArrayList LastSavedByStaffIDIn = null; public ArrayList FileBinary = null; public String Description = null; public String DescriptionStartsWith = null; public String DescriptionEndsWith = null; public String DescriptionContains = null; public String DescriptionLike = null; public ArrayList DescriptionBetween = null; public ArrayList DescriptionIn = null; public String PhysicalFileName = null; public String PhysicalFileNameStartsWith = null; public String PhysicalFileNameEndsWith = null; public String PhysicalFileNameContains = null; public String PhysicalFileNameLike = null; public ArrayList PhysicalFileNameBetween = null; public ArrayList PhysicalFileNameIn = null; public Integer ItemNo = null; public Integer ItemNoGreaterThanOrEqualTo = null; public Integer ItemNoGreaterThan = null; public Integer ItemNoLessThan = null; public Integer ItemNoLessThanOrEqualTo = null; public Integer ItemNoNotEqualTo = null; public ArrayList ItemNoBetween = null; public ArrayList ItemNoIn = null; public String getRecID() { return RecID; } public SY_PluginDocumentsQuery setRecID(String value) { this.RecID = value; return this; } public String getRecIDStartsWith() { return RecIDStartsWith; } public SY_PluginDocumentsQuery setRecIDStartsWith(String value) { this.RecIDStartsWith = value; return this; } public String getRecIDEndsWith() { return RecIDEndsWith; } public SY_PluginDocumentsQuery setRecIDEndsWith(String value) { this.RecIDEndsWith = value; return this; } public String getRecIDContains() { return RecIDContains; } public SY_PluginDocumentsQuery setRecIDContains(String value) { this.RecIDContains = value; return this; } public String getRecIDLike() { return RecIDLike; } public SY_PluginDocumentsQuery setRecIDLike(String value) { this.RecIDLike = value; return this; } public ArrayList getRecIDBetween() { return RecIDBetween; } public SY_PluginDocumentsQuery setRecIDBetween(ArrayList value) { this.RecIDBetween = value; return this; } public ArrayList getRecIDIn() { return RecIDIn; } public SY_PluginDocumentsQuery setRecIDIn(ArrayList value) { this.RecIDIn = value; return this; } public UUID getSyPluginRecID() { return SY_Plugin_RecID; } public SY_PluginDocumentsQuery setSyPluginRecID(UUID value) { this.SY_Plugin_RecID = value; return this; } public ArrayList getSyPluginRecIDIn() { return SY_Plugin_RecIDIn; } public SY_PluginDocumentsQuery setSyPluginRecIDIn(ArrayList value) { this.SY_Plugin_RecIDIn = value; return this; } public String getDocumentTypeID() { return DocumentTypeID; } public SY_PluginDocumentsQuery setDocumentTypeID(String value) { this.DocumentTypeID = value; return this; } public String getDocumentTypeIDStartsWith() { return DocumentTypeIDStartsWith; } public SY_PluginDocumentsQuery setDocumentTypeIDStartsWith(String value) { this.DocumentTypeIDStartsWith = value; return this; } public String getDocumentTypeIDEndsWith() { return DocumentTypeIDEndsWith; } public SY_PluginDocumentsQuery setDocumentTypeIDEndsWith(String value) { this.DocumentTypeIDEndsWith = value; return this; } public String getDocumentTypeIDContains() { return DocumentTypeIDContains; } public SY_PluginDocumentsQuery setDocumentTypeIDContains(String value) { this.DocumentTypeIDContains = value; return this; } public String getDocumentTypeIDLike() { return DocumentTypeIDLike; } public SY_PluginDocumentsQuery setDocumentTypeIDLike(String value) { this.DocumentTypeIDLike = value; return this; } public ArrayList getDocumentTypeIDBetween() { return DocumentTypeIDBetween; } public SY_PluginDocumentsQuery setDocumentTypeIDBetween(ArrayList value) { this.DocumentTypeIDBetween = value; return this; } public ArrayList getDocumentTypeIDIn() { return DocumentTypeIDIn; } public SY_PluginDocumentsQuery setDocumentTypeIDIn(ArrayList value) { this.DocumentTypeIDIn = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public SY_PluginDocumentsQuery setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getLastSavedDateTimeGreaterThanOrEqualTo() { return LastSavedDateTimeGreaterThanOrEqualTo; } public SY_PluginDocumentsQuery setLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.LastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeGreaterThan() { return LastSavedDateTimeGreaterThan; } public SY_PluginDocumentsQuery setLastSavedDateTimeGreaterThan(Date value) { this.LastSavedDateTimeGreaterThan = value; return this; } public Date getLastSavedDateTimeLessThan() { return LastSavedDateTimeLessThan; } public SY_PluginDocumentsQuery setLastSavedDateTimeLessThan(Date value) { this.LastSavedDateTimeLessThan = value; return this; } public Date getLastSavedDateTimeLessThanOrEqualTo() { return LastSavedDateTimeLessThanOrEqualTo; } public SY_PluginDocumentsQuery setLastSavedDateTimeLessThanOrEqualTo(Date value) { this.LastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeNotEqualTo() { return LastSavedDateTimeNotEqualTo; } public SY_PluginDocumentsQuery setLastSavedDateTimeNotEqualTo(Date value) { this.LastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getLastSavedDateTimeBetween() { return LastSavedDateTimeBetween; } public SY_PluginDocumentsQuery setLastSavedDateTimeBetween(ArrayList value) { this.LastSavedDateTimeBetween = value; return this; } public ArrayList getLastSavedDateTimeIn() { return LastSavedDateTimeIn; } public SY_PluginDocumentsQuery setLastSavedDateTimeIn(ArrayList value) { this.LastSavedDateTimeIn = value; return this; } public String getLastSavedByStaffID() { return LastSavedByStaffID; } public SY_PluginDocumentsQuery setLastSavedByStaffID(String value) { this.LastSavedByStaffID = value; return this; } public String getLastSavedByStaffIDStartsWith() { return LastSavedByStaffIDStartsWith; } public SY_PluginDocumentsQuery setLastSavedByStaffIDStartsWith(String value) { this.LastSavedByStaffIDStartsWith = value; return this; } public String getLastSavedByStaffIDEndsWith() { return LastSavedByStaffIDEndsWith; } public SY_PluginDocumentsQuery setLastSavedByStaffIDEndsWith(String value) { this.LastSavedByStaffIDEndsWith = value; return this; } public String getLastSavedByStaffIDContains() { return LastSavedByStaffIDContains; } public SY_PluginDocumentsQuery setLastSavedByStaffIDContains(String value) { this.LastSavedByStaffIDContains = value; return this; } public String getLastSavedByStaffIDLike() { return LastSavedByStaffIDLike; } public SY_PluginDocumentsQuery setLastSavedByStaffIDLike(String value) { this.LastSavedByStaffIDLike = value; return this; } public ArrayList getLastSavedByStaffIDBetween() { return LastSavedByStaffIDBetween; } public SY_PluginDocumentsQuery setLastSavedByStaffIDBetween(ArrayList value) { this.LastSavedByStaffIDBetween = value; return this; } public ArrayList getLastSavedByStaffIDIn() { return LastSavedByStaffIDIn; } public SY_PluginDocumentsQuery setLastSavedByStaffIDIn(ArrayList value) { this.LastSavedByStaffIDIn = value; return this; } public ArrayList getFileBinary() { return FileBinary; } public SY_PluginDocumentsQuery setFileBinary(ArrayList value) { this.FileBinary = value; return this; } public String getDescription() { return Description; } public SY_PluginDocumentsQuery setDescription(String value) { this.Description = value; return this; } public String getDescriptionStartsWith() { return DescriptionStartsWith; } public SY_PluginDocumentsQuery setDescriptionStartsWith(String value) { this.DescriptionStartsWith = value; return this; } public String getDescriptionEndsWith() { return DescriptionEndsWith; } public SY_PluginDocumentsQuery setDescriptionEndsWith(String value) { this.DescriptionEndsWith = value; return this; } public String getDescriptionContains() { return DescriptionContains; } public SY_PluginDocumentsQuery setDescriptionContains(String value) { this.DescriptionContains = value; return this; } public String getDescriptionLike() { return DescriptionLike; } public SY_PluginDocumentsQuery setDescriptionLike(String value) { this.DescriptionLike = value; return this; } public ArrayList getDescriptionBetween() { return DescriptionBetween; } public SY_PluginDocumentsQuery setDescriptionBetween(ArrayList value) { this.DescriptionBetween = value; return this; } public ArrayList getDescriptionIn() { return DescriptionIn; } public SY_PluginDocumentsQuery setDescriptionIn(ArrayList value) { this.DescriptionIn = value; return this; } public String getPhysicalFileName() { return PhysicalFileName; } public SY_PluginDocumentsQuery setPhysicalFileName(String value) { this.PhysicalFileName = value; return this; } public String getPhysicalFileNameStartsWith() { return PhysicalFileNameStartsWith; } public SY_PluginDocumentsQuery setPhysicalFileNameStartsWith(String value) { this.PhysicalFileNameStartsWith = value; return this; } public String getPhysicalFileNameEndsWith() { return PhysicalFileNameEndsWith; } public SY_PluginDocumentsQuery setPhysicalFileNameEndsWith(String value) { this.PhysicalFileNameEndsWith = value; return this; } public String getPhysicalFileNameContains() { return PhysicalFileNameContains; } public SY_PluginDocumentsQuery setPhysicalFileNameContains(String value) { this.PhysicalFileNameContains = value; return this; } public String getPhysicalFileNameLike() { return PhysicalFileNameLike; } public SY_PluginDocumentsQuery setPhysicalFileNameLike(String value) { this.PhysicalFileNameLike = value; return this; } public ArrayList getPhysicalFileNameBetween() { return PhysicalFileNameBetween; } public SY_PluginDocumentsQuery setPhysicalFileNameBetween(ArrayList value) { this.PhysicalFileNameBetween = value; return this; } public ArrayList getPhysicalFileNameIn() { return PhysicalFileNameIn; } public SY_PluginDocumentsQuery setPhysicalFileNameIn(ArrayList value) { this.PhysicalFileNameIn = value; return this; } public Integer getItemNo() { return ItemNo; } public SY_PluginDocumentsQuery setItemNo(Integer value) { this.ItemNo = value; return this; } public Integer getItemNoGreaterThanOrEqualTo() { return ItemNoGreaterThanOrEqualTo; } public SY_PluginDocumentsQuery setItemNoGreaterThanOrEqualTo(Integer value) { this.ItemNoGreaterThanOrEqualTo = value; return this; } public Integer getItemNoGreaterThan() { return ItemNoGreaterThan; } public SY_PluginDocumentsQuery setItemNoGreaterThan(Integer value) { this.ItemNoGreaterThan = value; return this; } public Integer getItemNoLessThan() { return ItemNoLessThan; } public SY_PluginDocumentsQuery setItemNoLessThan(Integer value) { this.ItemNoLessThan = value; return this; } public Integer getItemNoLessThanOrEqualTo() { return ItemNoLessThanOrEqualTo; } public SY_PluginDocumentsQuery setItemNoLessThanOrEqualTo(Integer value) { this.ItemNoLessThanOrEqualTo = value; return this; } public Integer getItemNoNotEqualTo() { return ItemNoNotEqualTo; } public SY_PluginDocumentsQuery setItemNoNotEqualTo(Integer value) { this.ItemNoNotEqualTo = value; return this; } public ArrayList getItemNoBetween() { return ItemNoBetween; } public SY_PluginDocumentsQuery setItemNoBetween(ArrayList value) { this.ItemNoBetween = value; return this; } public ArrayList getItemNoIn() { return ItemNoIn; } public SY_PluginDocumentsQuery setItemNoIn(ArrayList value) { this.ItemNoIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class SY_PluginEmbeddedReferenceQuery extends QueryDb implements IReturn> { public UUID RecID = null; public ArrayList RecIDIn = null; public UUID SY_Plugin_RecID = null; public ArrayList SY_Plugin_RecIDIn = null; public String AssemblyName = null; public String AssemblyNameStartsWith = null; public String AssemblyNameEndsWith = null; public String AssemblyNameContains = null; public String AssemblyNameLike = null; public ArrayList AssemblyNameBetween = null; public ArrayList AssemblyNameIn = null; public ArrayList FileBinary = null; public Integer ItemNo = null; public Integer ItemNoGreaterThanOrEqualTo = null; public Integer ItemNoGreaterThan = null; public Integer ItemNoLessThan = null; public Integer ItemNoLessThanOrEqualTo = null; public Integer ItemNoNotEqualTo = null; public ArrayList ItemNoBetween = null; public ArrayList ItemNoIn = null; public ArrayList RowHash = null; public UUID getRecID() { return RecID; } public SY_PluginEmbeddedReferenceQuery setRecID(UUID value) { this.RecID = value; return this; } public ArrayList getRecIDIn() { return RecIDIn; } public SY_PluginEmbeddedReferenceQuery setRecIDIn(ArrayList value) { this.RecIDIn = value; return this; } public UUID getSyPluginRecID() { return SY_Plugin_RecID; } public SY_PluginEmbeddedReferenceQuery setSyPluginRecID(UUID value) { this.SY_Plugin_RecID = value; return this; } public ArrayList getSyPluginRecIDIn() { return SY_Plugin_RecIDIn; } public SY_PluginEmbeddedReferenceQuery setSyPluginRecIDIn(ArrayList value) { this.SY_Plugin_RecIDIn = value; return this; } public String getAssemblyName() { return AssemblyName; } public SY_PluginEmbeddedReferenceQuery setAssemblyName(String value) { this.AssemblyName = value; return this; } public String getAssemblyNameStartsWith() { return AssemblyNameStartsWith; } public SY_PluginEmbeddedReferenceQuery setAssemblyNameStartsWith(String value) { this.AssemblyNameStartsWith = value; return this; } public String getAssemblyNameEndsWith() { return AssemblyNameEndsWith; } public SY_PluginEmbeddedReferenceQuery setAssemblyNameEndsWith(String value) { this.AssemblyNameEndsWith = value; return this; } public String getAssemblyNameContains() { return AssemblyNameContains; } public SY_PluginEmbeddedReferenceQuery setAssemblyNameContains(String value) { this.AssemblyNameContains = value; return this; } public String getAssemblyNameLike() { return AssemblyNameLike; } public SY_PluginEmbeddedReferenceQuery setAssemblyNameLike(String value) { this.AssemblyNameLike = value; return this; } public ArrayList getAssemblyNameBetween() { return AssemblyNameBetween; } public SY_PluginEmbeddedReferenceQuery setAssemblyNameBetween(ArrayList value) { this.AssemblyNameBetween = value; return this; } public ArrayList getAssemblyNameIn() { return AssemblyNameIn; } public SY_PluginEmbeddedReferenceQuery setAssemblyNameIn(ArrayList value) { this.AssemblyNameIn = value; return this; } public ArrayList getFileBinary() { return FileBinary; } public SY_PluginEmbeddedReferenceQuery setFileBinary(ArrayList value) { this.FileBinary = value; return this; } public Integer getItemNo() { return ItemNo; } public SY_PluginEmbeddedReferenceQuery setItemNo(Integer value) { this.ItemNo = value; return this; } public Integer getItemNoGreaterThanOrEqualTo() { return ItemNoGreaterThanOrEqualTo; } public SY_PluginEmbeddedReferenceQuery setItemNoGreaterThanOrEqualTo(Integer value) { this.ItemNoGreaterThanOrEqualTo = value; return this; } public Integer getItemNoGreaterThan() { return ItemNoGreaterThan; } public SY_PluginEmbeddedReferenceQuery setItemNoGreaterThan(Integer value) { this.ItemNoGreaterThan = value; return this; } public Integer getItemNoLessThan() { return ItemNoLessThan; } public SY_PluginEmbeddedReferenceQuery setItemNoLessThan(Integer value) { this.ItemNoLessThan = value; return this; } public Integer getItemNoLessThanOrEqualTo() { return ItemNoLessThanOrEqualTo; } public SY_PluginEmbeddedReferenceQuery setItemNoLessThanOrEqualTo(Integer value) { this.ItemNoLessThanOrEqualTo = value; return this; } public Integer getItemNoNotEqualTo() { return ItemNoNotEqualTo; } public SY_PluginEmbeddedReferenceQuery setItemNoNotEqualTo(Integer value) { this.ItemNoNotEqualTo = value; return this; } public ArrayList getItemNoBetween() { return ItemNoBetween; } public SY_PluginEmbeddedReferenceQuery setItemNoBetween(ArrayList value) { this.ItemNoBetween = value; return this; } public ArrayList getItemNoIn() { return ItemNoIn; } public SY_PluginEmbeddedReferenceQuery setItemNoIn(ArrayList value) { this.ItemNoIn = value; return this; } public ArrayList getRowHash() { return RowHash; } public SY_PluginEmbeddedReferenceQuery setRowHash(ArrayList value) { this.RowHash = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class SY_PluginFormQuery extends QueryDb implements IReturn> { public UUID RecID = null; public ArrayList RecIDIn = null; public UUID SY_Plugin_RecID = null; public ArrayList SY_Plugin_RecIDIn = null; public String SY_Forms_ClassName = null; public String SY_Forms_ClassNameStartsWith = null; public String SY_Forms_ClassNameEndsWith = null; public String SY_Forms_ClassNameContains = null; public String SY_Forms_ClassNameLike = null; public ArrayList SY_Forms_ClassNameBetween = null; public ArrayList SY_Forms_ClassNameIn = null; public Integer ItemNo = null; public Integer ItemNoGreaterThanOrEqualTo = null; public Integer ItemNoGreaterThan = null; public Integer ItemNoLessThan = null; public Integer ItemNoLessThanOrEqualTo = null; public Integer ItemNoNotEqualTo = null; public ArrayList ItemNoBetween = null; public ArrayList ItemNoIn = null; public ArrayList RowHash = null; public UUID getRecID() { return RecID; } public SY_PluginFormQuery setRecID(UUID value) { this.RecID = value; return this; } public ArrayList getRecIDIn() { return RecIDIn; } public SY_PluginFormQuery setRecIDIn(ArrayList value) { this.RecIDIn = value; return this; } public UUID getSyPluginRecID() { return SY_Plugin_RecID; } public SY_PluginFormQuery setSyPluginRecID(UUID value) { this.SY_Plugin_RecID = value; return this; } public ArrayList getSyPluginRecIDIn() { return SY_Plugin_RecIDIn; } public SY_PluginFormQuery setSyPluginRecIDIn(ArrayList value) { this.SY_Plugin_RecIDIn = value; return this; } public String getSyFormsClassName() { return SY_Forms_ClassName; } public SY_PluginFormQuery setSyFormsClassName(String value) { this.SY_Forms_ClassName = value; return this; } public String getSyFormsClassNameStartsWith() { return SY_Forms_ClassNameStartsWith; } public SY_PluginFormQuery setSyFormsClassNameStartsWith(String value) { this.SY_Forms_ClassNameStartsWith = value; return this; } public String getSyFormsClassNameEndsWith() { return SY_Forms_ClassNameEndsWith; } public SY_PluginFormQuery setSyFormsClassNameEndsWith(String value) { this.SY_Forms_ClassNameEndsWith = value; return this; } public String getSyFormsClassNameContains() { return SY_Forms_ClassNameContains; } public SY_PluginFormQuery setSyFormsClassNameContains(String value) { this.SY_Forms_ClassNameContains = value; return this; } public String getSyFormsClassNameLike() { return SY_Forms_ClassNameLike; } public SY_PluginFormQuery setSyFormsClassNameLike(String value) { this.SY_Forms_ClassNameLike = value; return this; } public ArrayList getSyFormsClassNameBetween() { return SY_Forms_ClassNameBetween; } public SY_PluginFormQuery setSyFormsClassNameBetween(ArrayList value) { this.SY_Forms_ClassNameBetween = value; return this; } public ArrayList getSyFormsClassNameIn() { return SY_Forms_ClassNameIn; } public SY_PluginFormQuery setSyFormsClassNameIn(ArrayList value) { this.SY_Forms_ClassNameIn = value; return this; } public Integer getItemNo() { return ItemNo; } public SY_PluginFormQuery setItemNo(Integer value) { this.ItemNo = value; return this; } public Integer getItemNoGreaterThanOrEqualTo() { return ItemNoGreaterThanOrEqualTo; } public SY_PluginFormQuery setItemNoGreaterThanOrEqualTo(Integer value) { this.ItemNoGreaterThanOrEqualTo = value; return this; } public Integer getItemNoGreaterThan() { return ItemNoGreaterThan; } public SY_PluginFormQuery setItemNoGreaterThan(Integer value) { this.ItemNoGreaterThan = value; return this; } public Integer getItemNoLessThan() { return ItemNoLessThan; } public SY_PluginFormQuery setItemNoLessThan(Integer value) { this.ItemNoLessThan = value; return this; } public Integer getItemNoLessThanOrEqualTo() { return ItemNoLessThanOrEqualTo; } public SY_PluginFormQuery setItemNoLessThanOrEqualTo(Integer value) { this.ItemNoLessThanOrEqualTo = value; return this; } public Integer getItemNoNotEqualTo() { return ItemNoNotEqualTo; } public SY_PluginFormQuery setItemNoNotEqualTo(Integer value) { this.ItemNoNotEqualTo = value; return this; } public ArrayList getItemNoBetween() { return ItemNoBetween; } public SY_PluginFormQuery setItemNoBetween(ArrayList value) { this.ItemNoBetween = value; return this; } public ArrayList getItemNoIn() { return ItemNoIn; } public SY_PluginFormQuery setItemNoIn(ArrayList value) { this.ItemNoIn = value; return this; } public ArrayList getRowHash() { return RowHash; } public SY_PluginFormQuery setRowHash(ArrayList value) { this.RowHash = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class SY_PluginPluginReferenceQuery extends QueryDb implements IReturn> { public UUID RecID = null; public ArrayList RecIDIn = null; public UUID SY_Plugin_RecID = null; public ArrayList SY_Plugin_RecIDIn = null; public UUID Referenced_SY_Plugin_RecID = null; public ArrayList Referenced_SY_Plugin_RecIDIn = null; public Integer ItemNo = null; public Integer ItemNoGreaterThanOrEqualTo = null; public Integer ItemNoGreaterThan = null; public Integer ItemNoLessThan = null; public Integer ItemNoLessThanOrEqualTo = null; public Integer ItemNoNotEqualTo = null; public ArrayList ItemNoBetween = null; public ArrayList ItemNoIn = null; public ArrayList RowHash = null; public UUID getRecID() { return RecID; } public SY_PluginPluginReferenceQuery setRecID(UUID value) { this.RecID = value; return this; } public ArrayList getRecIDIn() { return RecIDIn; } public SY_PluginPluginReferenceQuery setRecIDIn(ArrayList value) { this.RecIDIn = value; return this; } public UUID getSyPluginRecID() { return SY_Plugin_RecID; } public SY_PluginPluginReferenceQuery setSyPluginRecID(UUID value) { this.SY_Plugin_RecID = value; return this; } public ArrayList getSyPluginRecIDIn() { return SY_Plugin_RecIDIn; } public SY_PluginPluginReferenceQuery setSyPluginRecIDIn(ArrayList value) { this.SY_Plugin_RecIDIn = value; return this; } public UUID getReferencedSyPluginRecID() { return Referenced_SY_Plugin_RecID; } public SY_PluginPluginReferenceQuery setReferencedSyPluginRecID(UUID value) { this.Referenced_SY_Plugin_RecID = value; return this; } public ArrayList getReferencedSyPluginRecIDIn() { return Referenced_SY_Plugin_RecIDIn; } public SY_PluginPluginReferenceQuery setReferencedSyPluginRecIDIn(ArrayList value) { this.Referenced_SY_Plugin_RecIDIn = value; return this; } public Integer getItemNo() { return ItemNo; } public SY_PluginPluginReferenceQuery setItemNo(Integer value) { this.ItemNo = value; return this; } public Integer getItemNoGreaterThanOrEqualTo() { return ItemNoGreaterThanOrEqualTo; } public SY_PluginPluginReferenceQuery setItemNoGreaterThanOrEqualTo(Integer value) { this.ItemNoGreaterThanOrEqualTo = value; return this; } public Integer getItemNoGreaterThan() { return ItemNoGreaterThan; } public SY_PluginPluginReferenceQuery setItemNoGreaterThan(Integer value) { this.ItemNoGreaterThan = value; return this; } public Integer getItemNoLessThan() { return ItemNoLessThan; } public SY_PluginPluginReferenceQuery setItemNoLessThan(Integer value) { this.ItemNoLessThan = value; return this; } public Integer getItemNoLessThanOrEqualTo() { return ItemNoLessThanOrEqualTo; } public SY_PluginPluginReferenceQuery setItemNoLessThanOrEqualTo(Integer value) { this.ItemNoLessThanOrEqualTo = value; return this; } public Integer getItemNoNotEqualTo() { return ItemNoNotEqualTo; } public SY_PluginPluginReferenceQuery setItemNoNotEqualTo(Integer value) { this.ItemNoNotEqualTo = value; return this; } public ArrayList getItemNoBetween() { return ItemNoBetween; } public SY_PluginPluginReferenceQuery setItemNoBetween(ArrayList value) { this.ItemNoBetween = value; return this; } public ArrayList getItemNoIn() { return ItemNoIn; } public SY_PluginPluginReferenceQuery setItemNoIn(ArrayList value) { this.ItemNoIn = value; return this; } public ArrayList getRowHash() { return RowHash; } public SY_PluginPluginReferenceQuery setRowHash(ArrayList value) { this.RowHash = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class SY_PluginReferenceQuery extends QueryDb implements IReturn> { public UUID RecID = null; public ArrayList RecIDIn = null; public UUID SY_Plugin_RecID = null; public ArrayList SY_Plugin_RecIDIn = null; public String AssemblyFullName = null; public String AssemblyFullNameStartsWith = null; public String AssemblyFullNameEndsWith = null; public String AssemblyFullNameContains = null; public String AssemblyFullNameLike = null; public ArrayList AssemblyFullNameBetween = null; public ArrayList AssemblyFullNameIn = null; public String AssemblyName = null; public String AssemblyNameStartsWith = null; public String AssemblyNameEndsWith = null; public String AssemblyNameContains = null; public String AssemblyNameLike = null; public ArrayList AssemblyNameBetween = null; public ArrayList AssemblyNameIn = null; public Integer ItemNo = null; public Integer ItemNoGreaterThanOrEqualTo = null; public Integer ItemNoGreaterThan = null; public Integer ItemNoLessThan = null; public Integer ItemNoLessThanOrEqualTo = null; public Integer ItemNoNotEqualTo = null; public ArrayList ItemNoBetween = null; public ArrayList ItemNoIn = null; public ArrayList RowHash = null; public UUID getRecID() { return RecID; } public SY_PluginReferenceQuery setRecID(UUID value) { this.RecID = value; return this; } public ArrayList getRecIDIn() { return RecIDIn; } public SY_PluginReferenceQuery setRecIDIn(ArrayList value) { this.RecIDIn = value; return this; } public UUID getSyPluginRecID() { return SY_Plugin_RecID; } public SY_PluginReferenceQuery setSyPluginRecID(UUID value) { this.SY_Plugin_RecID = value; return this; } public ArrayList getSyPluginRecIDIn() { return SY_Plugin_RecIDIn; } public SY_PluginReferenceQuery setSyPluginRecIDIn(ArrayList value) { this.SY_Plugin_RecIDIn = value; return this; } public String getAssemblyFullName() { return AssemblyFullName; } public SY_PluginReferenceQuery setAssemblyFullName(String value) { this.AssemblyFullName = value; return this; } public String getAssemblyFullNameStartsWith() { return AssemblyFullNameStartsWith; } public SY_PluginReferenceQuery setAssemblyFullNameStartsWith(String value) { this.AssemblyFullNameStartsWith = value; return this; } public String getAssemblyFullNameEndsWith() { return AssemblyFullNameEndsWith; } public SY_PluginReferenceQuery setAssemblyFullNameEndsWith(String value) { this.AssemblyFullNameEndsWith = value; return this; } public String getAssemblyFullNameContains() { return AssemblyFullNameContains; } public SY_PluginReferenceQuery setAssemblyFullNameContains(String value) { this.AssemblyFullNameContains = value; return this; } public String getAssemblyFullNameLike() { return AssemblyFullNameLike; } public SY_PluginReferenceQuery setAssemblyFullNameLike(String value) { this.AssemblyFullNameLike = value; return this; } public ArrayList getAssemblyFullNameBetween() { return AssemblyFullNameBetween; } public SY_PluginReferenceQuery setAssemblyFullNameBetween(ArrayList value) { this.AssemblyFullNameBetween = value; return this; } public ArrayList getAssemblyFullNameIn() { return AssemblyFullNameIn; } public SY_PluginReferenceQuery setAssemblyFullNameIn(ArrayList value) { this.AssemblyFullNameIn = value; return this; } public String getAssemblyName() { return AssemblyName; } public SY_PluginReferenceQuery setAssemblyName(String value) { this.AssemblyName = value; return this; } public String getAssemblyNameStartsWith() { return AssemblyNameStartsWith; } public SY_PluginReferenceQuery setAssemblyNameStartsWith(String value) { this.AssemblyNameStartsWith = value; return this; } public String getAssemblyNameEndsWith() { return AssemblyNameEndsWith; } public SY_PluginReferenceQuery setAssemblyNameEndsWith(String value) { this.AssemblyNameEndsWith = value; return this; } public String getAssemblyNameContains() { return AssemblyNameContains; } public SY_PluginReferenceQuery setAssemblyNameContains(String value) { this.AssemblyNameContains = value; return this; } public String getAssemblyNameLike() { return AssemblyNameLike; } public SY_PluginReferenceQuery setAssemblyNameLike(String value) { this.AssemblyNameLike = value; return this; } public ArrayList getAssemblyNameBetween() { return AssemblyNameBetween; } public SY_PluginReferenceQuery setAssemblyNameBetween(ArrayList value) { this.AssemblyNameBetween = value; return this; } public ArrayList getAssemblyNameIn() { return AssemblyNameIn; } public SY_PluginReferenceQuery setAssemblyNameIn(ArrayList value) { this.AssemblyNameIn = value; return this; } public Integer getItemNo() { return ItemNo; } public SY_PluginReferenceQuery setItemNo(Integer value) { this.ItemNo = value; return this; } public Integer getItemNoGreaterThanOrEqualTo() { return ItemNoGreaterThanOrEqualTo; } public SY_PluginReferenceQuery setItemNoGreaterThanOrEqualTo(Integer value) { this.ItemNoGreaterThanOrEqualTo = value; return this; } public Integer getItemNoGreaterThan() { return ItemNoGreaterThan; } public SY_PluginReferenceQuery setItemNoGreaterThan(Integer value) { this.ItemNoGreaterThan = value; return this; } public Integer getItemNoLessThan() { return ItemNoLessThan; } public SY_PluginReferenceQuery setItemNoLessThan(Integer value) { this.ItemNoLessThan = value; return this; } public Integer getItemNoLessThanOrEqualTo() { return ItemNoLessThanOrEqualTo; } public SY_PluginReferenceQuery setItemNoLessThanOrEqualTo(Integer value) { this.ItemNoLessThanOrEqualTo = value; return this; } public Integer getItemNoNotEqualTo() { return ItemNoNotEqualTo; } public SY_PluginReferenceQuery setItemNoNotEqualTo(Integer value) { this.ItemNoNotEqualTo = value; return this; } public ArrayList getItemNoBetween() { return ItemNoBetween; } public SY_PluginReferenceQuery setItemNoBetween(ArrayList value) { this.ItemNoBetween = value; return this; } public ArrayList getItemNoIn() { return ItemNoIn; } public SY_PluginReferenceQuery setItemNoIn(ArrayList value) { this.ItemNoIn = value; return this; } public ArrayList getRowHash() { return RowHash; } public SY_PluginReferenceQuery setRowHash(ArrayList value) { this.RowHash = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class SY_PluginScheduleQuery extends QueryDb implements IReturn> { public UUID RecID = null; public ArrayList RecIDIn = null; public UUID SY_Plugin_RecID = null; public ArrayList SY_Plugin_RecIDIn = null; public String Name = null; public String NameStartsWith = null; public String NameEndsWith = null; public String NameContains = null; public String NameLike = null; public ArrayList NameBetween = null; public ArrayList NameIn = null; public Boolean IsEnabled = null; public Short ScheduleType = null; public Short ScheduleTypeGreaterThanOrEqualTo = null; public Short ScheduleTypeGreaterThan = null; public Short ScheduleTypeLessThan = null; public Short ScheduleTypeLessThanOrEqualTo = null; public Short ScheduleTypeNotEqualTo = null; public ArrayList ScheduleTypeBetween = null; public ArrayList ScheduleTypeIn = null; public Short OccurrenceType = null; public Short OccurrenceTypeGreaterThanOrEqualTo = null; public Short OccurrenceTypeGreaterThan = null; public Short OccurrenceTypeLessThan = null; public Short OccurrenceTypeLessThanOrEqualTo = null; public Short OccurrenceTypeNotEqualTo = null; public ArrayList OccurrenceTypeBetween = null; public ArrayList OccurrenceTypeIn = null; public Integer OccurrenceFrequencyInterval = null; public Integer OccurrenceFrequencyIntervalGreaterThanOrEqualTo = null; public Integer OccurrenceFrequencyIntervalGreaterThan = null; public Integer OccurrenceFrequencyIntervalLessThan = null; public Integer OccurrenceFrequencyIntervalLessThanOrEqualTo = null; public Integer OccurrenceFrequencyIntervalNotEqualTo = null; public ArrayList OccurrenceFrequencyIntervalBetween = null; public ArrayList OccurrenceFrequencyIntervalIn = null; public Short DailyFrequencyType = null; public Short DailyFrequencyTypeGreaterThanOrEqualTo = null; public Short DailyFrequencyTypeGreaterThan = null; public Short DailyFrequencyTypeLessThan = null; public Short DailyFrequencyTypeLessThanOrEqualTo = null; public Short DailyFrequencyTypeNotEqualTo = null; public ArrayList DailyFrequencyTypeBetween = null; public ArrayList DailyFrequencyTypeIn = null; public Long DailyOccursOnceTime = null; public Long DailyOccursOnceTimeGreaterThanOrEqualTo = null; public Long DailyOccursOnceTimeGreaterThan = null; public Long DailyOccursOnceTimeLessThan = null; public Long DailyOccursOnceTimeLessThanOrEqualTo = null; public Long DailyOccursOnceTimeNotEqualTo = null; public ArrayList DailyOccursOnceTimeBetween = null; public ArrayList DailyOccursOnceTimeIn = null; public Integer DailyRepeatsInterval = null; public Integer DailyRepeatsIntervalGreaterThanOrEqualTo = null; public Integer DailyRepeatsIntervalGreaterThan = null; public Integer DailyRepeatsIntervalLessThan = null; public Integer DailyRepeatsIntervalLessThanOrEqualTo = null; public Integer DailyRepeatsIntervalNotEqualTo = null; public ArrayList DailyRepeatsIntervalBetween = null; public ArrayList DailyRepeatsIntervalIn = null; public Long DailyRepeatsStartTime = null; public Long DailyRepeatsStartTimeGreaterThanOrEqualTo = null; public Long DailyRepeatsStartTimeGreaterThan = null; public Long DailyRepeatsStartTimeLessThan = null; public Long DailyRepeatsStartTimeLessThanOrEqualTo = null; public Long DailyRepeatsStartTimeNotEqualTo = null; public ArrayList DailyRepeatsStartTimeBetween = null; public ArrayList DailyRepeatsStartTimeIn = null; public Long DailyRepeatsEndTime = null; public Long DailyRepeatsEndTimeGreaterThanOrEqualTo = null; public Long DailyRepeatsEndTimeGreaterThan = null; public Long DailyRepeatsEndTimeLessThan = null; public Long DailyRepeatsEndTimeLessThanOrEqualTo = null; public Long DailyRepeatsEndTimeNotEqualTo = null; public ArrayList DailyRepeatsEndTimeBetween = null; public ArrayList DailyRepeatsEndTimeIn = null; public Integer WeeklyRepeatsInterval = null; public Integer WeeklyRepeatsIntervalGreaterThanOrEqualTo = null; public Integer WeeklyRepeatsIntervalGreaterThan = null; public Integer WeeklyRepeatsIntervalLessThan = null; public Integer WeeklyRepeatsIntervalLessThanOrEqualTo = null; public Integer WeeklyRepeatsIntervalNotEqualTo = null; public ArrayList WeeklyRepeatsIntervalBetween = null; public ArrayList WeeklyRepeatsIntervalIn = null; public Short WeeklyDaysOfWeek = null; public Short WeeklyDaysOfWeekGreaterThanOrEqualTo = null; public Short WeeklyDaysOfWeekGreaterThan = null; public Short WeeklyDaysOfWeekLessThan = null; public Short WeeklyDaysOfWeekLessThanOrEqualTo = null; public Short WeeklyDaysOfWeekNotEqualTo = null; public ArrayList WeeklyDaysOfWeekBetween = null; public ArrayList WeeklyDaysOfWeekIn = null; public Short MonthlyFrequencyType = null; public Short MonthlyFrequencyTypeGreaterThanOrEqualTo = null; public Short MonthlyFrequencyTypeGreaterThan = null; public Short MonthlyFrequencyTypeLessThan = null; public Short MonthlyFrequencyTypeLessThanOrEqualTo = null; public Short MonthlyFrequencyTypeNotEqualTo = null; public ArrayList MonthlyFrequencyTypeBetween = null; public ArrayList MonthlyFrequencyTypeIn = null; public Short MonthlyDayOfMonth = null; public Short MonthlyDayOfMonthGreaterThanOrEqualTo = null; public Short MonthlyDayOfMonthGreaterThan = null; public Short MonthlyDayOfMonthLessThan = null; public Short MonthlyDayOfMonthLessThanOrEqualTo = null; public Short MonthlyDayOfMonthNotEqualTo = null; public ArrayList MonthlyDayOfMonthBetween = null; public ArrayList MonthlyDayOfMonthIn = null; public Integer MonthlyRepeatInterval = null; public Integer MonthlyRepeatIntervalGreaterThanOrEqualTo = null; public Integer MonthlyRepeatIntervalGreaterThan = null; public Integer MonthlyRepeatIntervalLessThan = null; public Integer MonthlyRepeatIntervalLessThanOrEqualTo = null; public Integer MonthlyRepeatIntervalNotEqualTo = null; public ArrayList MonthlyRepeatIntervalBetween = null; public ArrayList MonthlyRepeatIntervalIn = null; public Short MonthlyFrequencyAdjective = null; public Short MonthlyFrequencyAdjectiveGreaterThanOrEqualTo = null; public Short MonthlyFrequencyAdjectiveGreaterThan = null; public Short MonthlyFrequencyAdjectiveLessThan = null; public Short MonthlyFrequencyAdjectiveLessThanOrEqualTo = null; public Short MonthlyFrequencyAdjectiveNotEqualTo = null; public ArrayList MonthlyFrequencyAdjectiveBetween = null; public ArrayList MonthlyFrequencyAdjectiveIn = null; public Short MonthlyFrequencyDayOfWeek = null; public Short MonthlyFrequencyDayOfWeekGreaterThanOrEqualTo = null; public Short MonthlyFrequencyDayOfWeekGreaterThan = null; public Short MonthlyFrequencyDayOfWeekLessThan = null; public Short MonthlyFrequencyDayOfWeekLessThanOrEqualTo = null; public Short MonthlyFrequencyDayOfWeekNotEqualTo = null; public ArrayList MonthlyFrequencyDayOfWeekBetween = null; public ArrayList MonthlyFrequencyDayOfWeekIn = null; public Date StartDate = null; public Date StartDateGreaterThanOrEqualTo = null; public Date StartDateGreaterThan = null; public Date StartDateLessThan = null; public Date StartDateLessThanOrEqualTo = null; public Date StartDateNotEqualTo = null; public ArrayList StartDateBetween = null; public ArrayList StartDateIn = null; public Boolean HasEndDate = null; public Date EndDate = null; public Date EndDateGreaterThanOrEqualTo = null; public Date EndDateGreaterThan = null; public Date EndDateLessThan = null; public Date EndDateLessThanOrEqualTo = null; public Date EndDateNotEqualTo = null; public ArrayList EndDateBetween = null; public ArrayList EndDateIn = null; public Short ItemNo = null; public Short ItemNoGreaterThanOrEqualTo = null; public Short ItemNoGreaterThan = null; public Short ItemNoLessThan = null; public Short ItemNoLessThanOrEqualTo = null; public Short ItemNoNotEqualTo = null; public ArrayList ItemNoBetween = null; public ArrayList ItemNoIn = null; public Date LastRunDate = null; public Date LastRunDateGreaterThanOrEqualTo = null; public Date LastRunDateGreaterThan = null; public Date LastRunDateLessThan = null; public Date LastRunDateLessThanOrEqualTo = null; public Date LastRunDateNotEqualTo = null; public ArrayList LastRunDateBetween = null; public ArrayList LastRunDateIn = null; public Date NextRunDate = null; public Date NextRunDateGreaterThanOrEqualTo = null; public Date NextRunDateGreaterThan = null; public Date NextRunDateLessThan = null; public Date NextRunDateLessThanOrEqualTo = null; public Date NextRunDateNotEqualTo = null; public ArrayList NextRunDateBetween = null; public ArrayList NextRunDateIn = null; public ArrayList RowHash = null; public UUID getRecID() { return RecID; } public SY_PluginScheduleQuery setRecID(UUID value) { this.RecID = value; return this; } public ArrayList getRecIDIn() { return RecIDIn; } public SY_PluginScheduleQuery setRecIDIn(ArrayList value) { this.RecIDIn = value; return this; } public UUID getSyPluginRecID() { return SY_Plugin_RecID; } public SY_PluginScheduleQuery setSyPluginRecID(UUID value) { this.SY_Plugin_RecID = value; return this; } public ArrayList getSyPluginRecIDIn() { return SY_Plugin_RecIDIn; } public SY_PluginScheduleQuery setSyPluginRecIDIn(ArrayList value) { this.SY_Plugin_RecIDIn = value; return this; } public String getName() { return Name; } public SY_PluginScheduleQuery setName(String value) { this.Name = value; return this; } public String getNameStartsWith() { return NameStartsWith; } public SY_PluginScheduleQuery setNameStartsWith(String value) { this.NameStartsWith = value; return this; } public String getNameEndsWith() { return NameEndsWith; } public SY_PluginScheduleQuery setNameEndsWith(String value) { this.NameEndsWith = value; return this; } public String getNameContains() { return NameContains; } public SY_PluginScheduleQuery setNameContains(String value) { this.NameContains = value; return this; } public String getNameLike() { return NameLike; } public SY_PluginScheduleQuery setNameLike(String value) { this.NameLike = value; return this; } public ArrayList getNameBetween() { return NameBetween; } public SY_PluginScheduleQuery setNameBetween(ArrayList value) { this.NameBetween = value; return this; } public ArrayList getNameIn() { return NameIn; } public SY_PluginScheduleQuery setNameIn(ArrayList value) { this.NameIn = value; return this; } public Boolean getIsEnabled() { return IsEnabled; } public SY_PluginScheduleQuery setIsEnabled(Boolean value) { this.IsEnabled = value; return this; } public Short getScheduleType() { return ScheduleType; } public SY_PluginScheduleQuery setScheduleType(Short value) { this.ScheduleType = value; return this; } public Short getScheduleTypeGreaterThanOrEqualTo() { return ScheduleTypeGreaterThanOrEqualTo; } public SY_PluginScheduleQuery setScheduleTypeGreaterThanOrEqualTo(Short value) { this.ScheduleTypeGreaterThanOrEqualTo = value; return this; } public Short getScheduleTypeGreaterThan() { return ScheduleTypeGreaterThan; } public SY_PluginScheduleQuery setScheduleTypeGreaterThan(Short value) { this.ScheduleTypeGreaterThan = value; return this; } public Short getScheduleTypeLessThan() { return ScheduleTypeLessThan; } public SY_PluginScheduleQuery setScheduleTypeLessThan(Short value) { this.ScheduleTypeLessThan = value; return this; } public Short getScheduleTypeLessThanOrEqualTo() { return ScheduleTypeLessThanOrEqualTo; } public SY_PluginScheduleQuery setScheduleTypeLessThanOrEqualTo(Short value) { this.ScheduleTypeLessThanOrEqualTo = value; return this; } public Short getScheduleTypeNotEqualTo() { return ScheduleTypeNotEqualTo; } public SY_PluginScheduleQuery setScheduleTypeNotEqualTo(Short value) { this.ScheduleTypeNotEqualTo = value; return this; } public ArrayList getScheduleTypeBetween() { return ScheduleTypeBetween; } public SY_PluginScheduleQuery setScheduleTypeBetween(ArrayList value) { this.ScheduleTypeBetween = value; return this; } public ArrayList getScheduleTypeIn() { return ScheduleTypeIn; } public SY_PluginScheduleQuery setScheduleTypeIn(ArrayList value) { this.ScheduleTypeIn = value; return this; } public Short getOccurrenceType() { return OccurrenceType; } public SY_PluginScheduleQuery setOccurrenceType(Short value) { this.OccurrenceType = value; return this; } public Short getOccurrenceTypeGreaterThanOrEqualTo() { return OccurrenceTypeGreaterThanOrEqualTo; } public SY_PluginScheduleQuery setOccurrenceTypeGreaterThanOrEqualTo(Short value) { this.OccurrenceTypeGreaterThanOrEqualTo = value; return this; } public Short getOccurrenceTypeGreaterThan() { return OccurrenceTypeGreaterThan; } public SY_PluginScheduleQuery setOccurrenceTypeGreaterThan(Short value) { this.OccurrenceTypeGreaterThan = value; return this; } public Short getOccurrenceTypeLessThan() { return OccurrenceTypeLessThan; } public SY_PluginScheduleQuery setOccurrenceTypeLessThan(Short value) { this.OccurrenceTypeLessThan = value; return this; } public Short getOccurrenceTypeLessThanOrEqualTo() { return OccurrenceTypeLessThanOrEqualTo; } public SY_PluginScheduleQuery setOccurrenceTypeLessThanOrEqualTo(Short value) { this.OccurrenceTypeLessThanOrEqualTo = value; return this; } public Short getOccurrenceTypeNotEqualTo() { return OccurrenceTypeNotEqualTo; } public SY_PluginScheduleQuery setOccurrenceTypeNotEqualTo(Short value) { this.OccurrenceTypeNotEqualTo = value; return this; } public ArrayList getOccurrenceTypeBetween() { return OccurrenceTypeBetween; } public SY_PluginScheduleQuery setOccurrenceTypeBetween(ArrayList value) { this.OccurrenceTypeBetween = value; return this; } public ArrayList getOccurrenceTypeIn() { return OccurrenceTypeIn; } public SY_PluginScheduleQuery setOccurrenceTypeIn(ArrayList value) { this.OccurrenceTypeIn = value; return this; } public Integer getOccurrenceFrequencyInterval() { return OccurrenceFrequencyInterval; } public SY_PluginScheduleQuery setOccurrenceFrequencyInterval(Integer value) { this.OccurrenceFrequencyInterval = value; return this; } public Integer getOccurrenceFrequencyIntervalGreaterThanOrEqualTo() { return OccurrenceFrequencyIntervalGreaterThanOrEqualTo; } public SY_PluginScheduleQuery setOccurrenceFrequencyIntervalGreaterThanOrEqualTo(Integer value) { this.OccurrenceFrequencyIntervalGreaterThanOrEqualTo = value; return this; } public Integer getOccurrenceFrequencyIntervalGreaterThan() { return OccurrenceFrequencyIntervalGreaterThan; } public SY_PluginScheduleQuery setOccurrenceFrequencyIntervalGreaterThan(Integer value) { this.OccurrenceFrequencyIntervalGreaterThan = value; return this; } public Integer getOccurrenceFrequencyIntervalLessThan() { return OccurrenceFrequencyIntervalLessThan; } public SY_PluginScheduleQuery setOccurrenceFrequencyIntervalLessThan(Integer value) { this.OccurrenceFrequencyIntervalLessThan = value; return this; } public Integer getOccurrenceFrequencyIntervalLessThanOrEqualTo() { return OccurrenceFrequencyIntervalLessThanOrEqualTo; } public SY_PluginScheduleQuery setOccurrenceFrequencyIntervalLessThanOrEqualTo(Integer value) { this.OccurrenceFrequencyIntervalLessThanOrEqualTo = value; return this; } public Integer getOccurrenceFrequencyIntervalNotEqualTo() { return OccurrenceFrequencyIntervalNotEqualTo; } public SY_PluginScheduleQuery setOccurrenceFrequencyIntervalNotEqualTo(Integer value) { this.OccurrenceFrequencyIntervalNotEqualTo = value; return this; } public ArrayList getOccurrenceFrequencyIntervalBetween() { return OccurrenceFrequencyIntervalBetween; } public SY_PluginScheduleQuery setOccurrenceFrequencyIntervalBetween(ArrayList value) { this.OccurrenceFrequencyIntervalBetween = value; return this; } public ArrayList getOccurrenceFrequencyIntervalIn() { return OccurrenceFrequencyIntervalIn; } public SY_PluginScheduleQuery setOccurrenceFrequencyIntervalIn(ArrayList value) { this.OccurrenceFrequencyIntervalIn = value; return this; } public Short getDailyFrequencyType() { return DailyFrequencyType; } public SY_PluginScheduleQuery setDailyFrequencyType(Short value) { this.DailyFrequencyType = value; return this; } public Short getDailyFrequencyTypeGreaterThanOrEqualTo() { return DailyFrequencyTypeGreaterThanOrEqualTo; } public SY_PluginScheduleQuery setDailyFrequencyTypeGreaterThanOrEqualTo(Short value) { this.DailyFrequencyTypeGreaterThanOrEqualTo = value; return this; } public Short getDailyFrequencyTypeGreaterThan() { return DailyFrequencyTypeGreaterThan; } public SY_PluginScheduleQuery setDailyFrequencyTypeGreaterThan(Short value) { this.DailyFrequencyTypeGreaterThan = value; return this; } public Short getDailyFrequencyTypeLessThan() { return DailyFrequencyTypeLessThan; } public SY_PluginScheduleQuery setDailyFrequencyTypeLessThan(Short value) { this.DailyFrequencyTypeLessThan = value; return this; } public Short getDailyFrequencyTypeLessThanOrEqualTo() { return DailyFrequencyTypeLessThanOrEqualTo; } public SY_PluginScheduleQuery setDailyFrequencyTypeLessThanOrEqualTo(Short value) { this.DailyFrequencyTypeLessThanOrEqualTo = value; return this; } public Short getDailyFrequencyTypeNotEqualTo() { return DailyFrequencyTypeNotEqualTo; } public SY_PluginScheduleQuery setDailyFrequencyTypeNotEqualTo(Short value) { this.DailyFrequencyTypeNotEqualTo = value; return this; } public ArrayList getDailyFrequencyTypeBetween() { return DailyFrequencyTypeBetween; } public SY_PluginScheduleQuery setDailyFrequencyTypeBetween(ArrayList value) { this.DailyFrequencyTypeBetween = value; return this; } public ArrayList getDailyFrequencyTypeIn() { return DailyFrequencyTypeIn; } public SY_PluginScheduleQuery setDailyFrequencyTypeIn(ArrayList value) { this.DailyFrequencyTypeIn = value; return this; } public Long getDailyOccursOnceTime() { return DailyOccursOnceTime; } public SY_PluginScheduleQuery setDailyOccursOnceTime(Long value) { this.DailyOccursOnceTime = value; return this; } public Long getDailyOccursOnceTimeGreaterThanOrEqualTo() { return DailyOccursOnceTimeGreaterThanOrEqualTo; } public SY_PluginScheduleQuery setDailyOccursOnceTimeGreaterThanOrEqualTo(Long value) { this.DailyOccursOnceTimeGreaterThanOrEqualTo = value; return this; } public Long getDailyOccursOnceTimeGreaterThan() { return DailyOccursOnceTimeGreaterThan; } public SY_PluginScheduleQuery setDailyOccursOnceTimeGreaterThan(Long value) { this.DailyOccursOnceTimeGreaterThan = value; return this; } public Long getDailyOccursOnceTimeLessThan() { return DailyOccursOnceTimeLessThan; } public SY_PluginScheduleQuery setDailyOccursOnceTimeLessThan(Long value) { this.DailyOccursOnceTimeLessThan = value; return this; } public Long getDailyOccursOnceTimeLessThanOrEqualTo() { return DailyOccursOnceTimeLessThanOrEqualTo; } public SY_PluginScheduleQuery setDailyOccursOnceTimeLessThanOrEqualTo(Long value) { this.DailyOccursOnceTimeLessThanOrEqualTo = value; return this; } public Long getDailyOccursOnceTimeNotEqualTo() { return DailyOccursOnceTimeNotEqualTo; } public SY_PluginScheduleQuery setDailyOccursOnceTimeNotEqualTo(Long value) { this.DailyOccursOnceTimeNotEqualTo = value; return this; } public ArrayList getDailyOccursOnceTimeBetween() { return DailyOccursOnceTimeBetween; } public SY_PluginScheduleQuery setDailyOccursOnceTimeBetween(ArrayList value) { this.DailyOccursOnceTimeBetween = value; return this; } public ArrayList getDailyOccursOnceTimeIn() { return DailyOccursOnceTimeIn; } public SY_PluginScheduleQuery setDailyOccursOnceTimeIn(ArrayList value) { this.DailyOccursOnceTimeIn = value; return this; } public Integer getDailyRepeatsInterval() { return DailyRepeatsInterval; } public SY_PluginScheduleQuery setDailyRepeatsInterval(Integer value) { this.DailyRepeatsInterval = value; return this; } public Integer getDailyRepeatsIntervalGreaterThanOrEqualTo() { return DailyRepeatsIntervalGreaterThanOrEqualTo; } public SY_PluginScheduleQuery setDailyRepeatsIntervalGreaterThanOrEqualTo(Integer value) { this.DailyRepeatsIntervalGreaterThanOrEqualTo = value; return this; } public Integer getDailyRepeatsIntervalGreaterThan() { return DailyRepeatsIntervalGreaterThan; } public SY_PluginScheduleQuery setDailyRepeatsIntervalGreaterThan(Integer value) { this.DailyRepeatsIntervalGreaterThan = value; return this; } public Integer getDailyRepeatsIntervalLessThan() { return DailyRepeatsIntervalLessThan; } public SY_PluginScheduleQuery setDailyRepeatsIntervalLessThan(Integer value) { this.DailyRepeatsIntervalLessThan = value; return this; } public Integer getDailyRepeatsIntervalLessThanOrEqualTo() { return DailyRepeatsIntervalLessThanOrEqualTo; } public SY_PluginScheduleQuery setDailyRepeatsIntervalLessThanOrEqualTo(Integer value) { this.DailyRepeatsIntervalLessThanOrEqualTo = value; return this; } public Integer getDailyRepeatsIntervalNotEqualTo() { return DailyRepeatsIntervalNotEqualTo; } public SY_PluginScheduleQuery setDailyRepeatsIntervalNotEqualTo(Integer value) { this.DailyRepeatsIntervalNotEqualTo = value; return this; } public ArrayList getDailyRepeatsIntervalBetween() { return DailyRepeatsIntervalBetween; } public SY_PluginScheduleQuery setDailyRepeatsIntervalBetween(ArrayList value) { this.DailyRepeatsIntervalBetween = value; return this; } public ArrayList getDailyRepeatsIntervalIn() { return DailyRepeatsIntervalIn; } public SY_PluginScheduleQuery setDailyRepeatsIntervalIn(ArrayList value) { this.DailyRepeatsIntervalIn = value; return this; } public Long getDailyRepeatsStartTime() { return DailyRepeatsStartTime; } public SY_PluginScheduleQuery setDailyRepeatsStartTime(Long value) { this.DailyRepeatsStartTime = value; return this; } public Long getDailyRepeatsStartTimeGreaterThanOrEqualTo() { return DailyRepeatsStartTimeGreaterThanOrEqualTo; } public SY_PluginScheduleQuery setDailyRepeatsStartTimeGreaterThanOrEqualTo(Long value) { this.DailyRepeatsStartTimeGreaterThanOrEqualTo = value; return this; } public Long getDailyRepeatsStartTimeGreaterThan() { return DailyRepeatsStartTimeGreaterThan; } public SY_PluginScheduleQuery setDailyRepeatsStartTimeGreaterThan(Long value) { this.DailyRepeatsStartTimeGreaterThan = value; return this; } public Long getDailyRepeatsStartTimeLessThan() { return DailyRepeatsStartTimeLessThan; } public SY_PluginScheduleQuery setDailyRepeatsStartTimeLessThan(Long value) { this.DailyRepeatsStartTimeLessThan = value; return this; } public Long getDailyRepeatsStartTimeLessThanOrEqualTo() { return DailyRepeatsStartTimeLessThanOrEqualTo; } public SY_PluginScheduleQuery setDailyRepeatsStartTimeLessThanOrEqualTo(Long value) { this.DailyRepeatsStartTimeLessThanOrEqualTo = value; return this; } public Long getDailyRepeatsStartTimeNotEqualTo() { return DailyRepeatsStartTimeNotEqualTo; } public SY_PluginScheduleQuery setDailyRepeatsStartTimeNotEqualTo(Long value) { this.DailyRepeatsStartTimeNotEqualTo = value; return this; } public ArrayList getDailyRepeatsStartTimeBetween() { return DailyRepeatsStartTimeBetween; } public SY_PluginScheduleQuery setDailyRepeatsStartTimeBetween(ArrayList value) { this.DailyRepeatsStartTimeBetween = value; return this; } public ArrayList getDailyRepeatsStartTimeIn() { return DailyRepeatsStartTimeIn; } public SY_PluginScheduleQuery setDailyRepeatsStartTimeIn(ArrayList value) { this.DailyRepeatsStartTimeIn = value; return this; } public Long getDailyRepeatsEndTime() { return DailyRepeatsEndTime; } public SY_PluginScheduleQuery setDailyRepeatsEndTime(Long value) { this.DailyRepeatsEndTime = value; return this; } public Long getDailyRepeatsEndTimeGreaterThanOrEqualTo() { return DailyRepeatsEndTimeGreaterThanOrEqualTo; } public SY_PluginScheduleQuery setDailyRepeatsEndTimeGreaterThanOrEqualTo(Long value) { this.DailyRepeatsEndTimeGreaterThanOrEqualTo = value; return this; } public Long getDailyRepeatsEndTimeGreaterThan() { return DailyRepeatsEndTimeGreaterThan; } public SY_PluginScheduleQuery setDailyRepeatsEndTimeGreaterThan(Long value) { this.DailyRepeatsEndTimeGreaterThan = value; return this; } public Long getDailyRepeatsEndTimeLessThan() { return DailyRepeatsEndTimeLessThan; } public SY_PluginScheduleQuery setDailyRepeatsEndTimeLessThan(Long value) { this.DailyRepeatsEndTimeLessThan = value; return this; } public Long getDailyRepeatsEndTimeLessThanOrEqualTo() { return DailyRepeatsEndTimeLessThanOrEqualTo; } public SY_PluginScheduleQuery setDailyRepeatsEndTimeLessThanOrEqualTo(Long value) { this.DailyRepeatsEndTimeLessThanOrEqualTo = value; return this; } public Long getDailyRepeatsEndTimeNotEqualTo() { return DailyRepeatsEndTimeNotEqualTo; } public SY_PluginScheduleQuery setDailyRepeatsEndTimeNotEqualTo(Long value) { this.DailyRepeatsEndTimeNotEqualTo = value; return this; } public ArrayList getDailyRepeatsEndTimeBetween() { return DailyRepeatsEndTimeBetween; } public SY_PluginScheduleQuery setDailyRepeatsEndTimeBetween(ArrayList value) { this.DailyRepeatsEndTimeBetween = value; return this; } public ArrayList getDailyRepeatsEndTimeIn() { return DailyRepeatsEndTimeIn; } public SY_PluginScheduleQuery setDailyRepeatsEndTimeIn(ArrayList value) { this.DailyRepeatsEndTimeIn = value; return this; } public Integer getWeeklyRepeatsInterval() { return WeeklyRepeatsInterval; } public SY_PluginScheduleQuery setWeeklyRepeatsInterval(Integer value) { this.WeeklyRepeatsInterval = value; return this; } public Integer getWeeklyRepeatsIntervalGreaterThanOrEqualTo() { return WeeklyRepeatsIntervalGreaterThanOrEqualTo; } public SY_PluginScheduleQuery setWeeklyRepeatsIntervalGreaterThanOrEqualTo(Integer value) { this.WeeklyRepeatsIntervalGreaterThanOrEqualTo = value; return this; } public Integer getWeeklyRepeatsIntervalGreaterThan() { return WeeklyRepeatsIntervalGreaterThan; } public SY_PluginScheduleQuery setWeeklyRepeatsIntervalGreaterThan(Integer value) { this.WeeklyRepeatsIntervalGreaterThan = value; return this; } public Integer getWeeklyRepeatsIntervalLessThan() { return WeeklyRepeatsIntervalLessThan; } public SY_PluginScheduleQuery setWeeklyRepeatsIntervalLessThan(Integer value) { this.WeeklyRepeatsIntervalLessThan = value; return this; } public Integer getWeeklyRepeatsIntervalLessThanOrEqualTo() { return WeeklyRepeatsIntervalLessThanOrEqualTo; } public SY_PluginScheduleQuery setWeeklyRepeatsIntervalLessThanOrEqualTo(Integer value) { this.WeeklyRepeatsIntervalLessThanOrEqualTo = value; return this; } public Integer getWeeklyRepeatsIntervalNotEqualTo() { return WeeklyRepeatsIntervalNotEqualTo; } public SY_PluginScheduleQuery setWeeklyRepeatsIntervalNotEqualTo(Integer value) { this.WeeklyRepeatsIntervalNotEqualTo = value; return this; } public ArrayList getWeeklyRepeatsIntervalBetween() { return WeeklyRepeatsIntervalBetween; } public SY_PluginScheduleQuery setWeeklyRepeatsIntervalBetween(ArrayList value) { this.WeeklyRepeatsIntervalBetween = value; return this; } public ArrayList getWeeklyRepeatsIntervalIn() { return WeeklyRepeatsIntervalIn; } public SY_PluginScheduleQuery setWeeklyRepeatsIntervalIn(ArrayList value) { this.WeeklyRepeatsIntervalIn = value; return this; } public Short getWeeklyDaysOfWeek() { return WeeklyDaysOfWeek; } public SY_PluginScheduleQuery setWeeklyDaysOfWeek(Short value) { this.WeeklyDaysOfWeek = value; return this; } public Short getWeeklyDaysOfWeekGreaterThanOrEqualTo() { return WeeklyDaysOfWeekGreaterThanOrEqualTo; } public SY_PluginScheduleQuery setWeeklyDaysOfWeekGreaterThanOrEqualTo(Short value) { this.WeeklyDaysOfWeekGreaterThanOrEqualTo = value; return this; } public Short getWeeklyDaysOfWeekGreaterThan() { return WeeklyDaysOfWeekGreaterThan; } public SY_PluginScheduleQuery setWeeklyDaysOfWeekGreaterThan(Short value) { this.WeeklyDaysOfWeekGreaterThan = value; return this; } public Short getWeeklyDaysOfWeekLessThan() { return WeeklyDaysOfWeekLessThan; } public SY_PluginScheduleQuery setWeeklyDaysOfWeekLessThan(Short value) { this.WeeklyDaysOfWeekLessThan = value; return this; } public Short getWeeklyDaysOfWeekLessThanOrEqualTo() { return WeeklyDaysOfWeekLessThanOrEqualTo; } public SY_PluginScheduleQuery setWeeklyDaysOfWeekLessThanOrEqualTo(Short value) { this.WeeklyDaysOfWeekLessThanOrEqualTo = value; return this; } public Short getWeeklyDaysOfWeekNotEqualTo() { return WeeklyDaysOfWeekNotEqualTo; } public SY_PluginScheduleQuery setWeeklyDaysOfWeekNotEqualTo(Short value) { this.WeeklyDaysOfWeekNotEqualTo = value; return this; } public ArrayList getWeeklyDaysOfWeekBetween() { return WeeklyDaysOfWeekBetween; } public SY_PluginScheduleQuery setWeeklyDaysOfWeekBetween(ArrayList value) { this.WeeklyDaysOfWeekBetween = value; return this; } public ArrayList getWeeklyDaysOfWeekIn() { return WeeklyDaysOfWeekIn; } public SY_PluginScheduleQuery setWeeklyDaysOfWeekIn(ArrayList value) { this.WeeklyDaysOfWeekIn = value; return this; } public Short getMonthlyFrequencyType() { return MonthlyFrequencyType; } public SY_PluginScheduleQuery setMonthlyFrequencyType(Short value) { this.MonthlyFrequencyType = value; return this; } public Short getMonthlyFrequencyTypeGreaterThanOrEqualTo() { return MonthlyFrequencyTypeGreaterThanOrEqualTo; } public SY_PluginScheduleQuery setMonthlyFrequencyTypeGreaterThanOrEqualTo(Short value) { this.MonthlyFrequencyTypeGreaterThanOrEqualTo = value; return this; } public Short getMonthlyFrequencyTypeGreaterThan() { return MonthlyFrequencyTypeGreaterThan; } public SY_PluginScheduleQuery setMonthlyFrequencyTypeGreaterThan(Short value) { this.MonthlyFrequencyTypeGreaterThan = value; return this; } public Short getMonthlyFrequencyTypeLessThan() { return MonthlyFrequencyTypeLessThan; } public SY_PluginScheduleQuery setMonthlyFrequencyTypeLessThan(Short value) { this.MonthlyFrequencyTypeLessThan = value; return this; } public Short getMonthlyFrequencyTypeLessThanOrEqualTo() { return MonthlyFrequencyTypeLessThanOrEqualTo; } public SY_PluginScheduleQuery setMonthlyFrequencyTypeLessThanOrEqualTo(Short value) { this.MonthlyFrequencyTypeLessThanOrEqualTo = value; return this; } public Short getMonthlyFrequencyTypeNotEqualTo() { return MonthlyFrequencyTypeNotEqualTo; } public SY_PluginScheduleQuery setMonthlyFrequencyTypeNotEqualTo(Short value) { this.MonthlyFrequencyTypeNotEqualTo = value; return this; } public ArrayList getMonthlyFrequencyTypeBetween() { return MonthlyFrequencyTypeBetween; } public SY_PluginScheduleQuery setMonthlyFrequencyTypeBetween(ArrayList value) { this.MonthlyFrequencyTypeBetween = value; return this; } public ArrayList getMonthlyFrequencyTypeIn() { return MonthlyFrequencyTypeIn; } public SY_PluginScheduleQuery setMonthlyFrequencyTypeIn(ArrayList value) { this.MonthlyFrequencyTypeIn = value; return this; } public Short getMonthlyDayOfMonth() { return MonthlyDayOfMonth; } public SY_PluginScheduleQuery setMonthlyDayOfMonth(Short value) { this.MonthlyDayOfMonth = value; return this; } public Short getMonthlyDayOfMonthGreaterThanOrEqualTo() { return MonthlyDayOfMonthGreaterThanOrEqualTo; } public SY_PluginScheduleQuery setMonthlyDayOfMonthGreaterThanOrEqualTo(Short value) { this.MonthlyDayOfMonthGreaterThanOrEqualTo = value; return this; } public Short getMonthlyDayOfMonthGreaterThan() { return MonthlyDayOfMonthGreaterThan; } public SY_PluginScheduleQuery setMonthlyDayOfMonthGreaterThan(Short value) { this.MonthlyDayOfMonthGreaterThan = value; return this; } public Short getMonthlyDayOfMonthLessThan() { return MonthlyDayOfMonthLessThan; } public SY_PluginScheduleQuery setMonthlyDayOfMonthLessThan(Short value) { this.MonthlyDayOfMonthLessThan = value; return this; } public Short getMonthlyDayOfMonthLessThanOrEqualTo() { return MonthlyDayOfMonthLessThanOrEqualTo; } public SY_PluginScheduleQuery setMonthlyDayOfMonthLessThanOrEqualTo(Short value) { this.MonthlyDayOfMonthLessThanOrEqualTo = value; return this; } public Short getMonthlyDayOfMonthNotEqualTo() { return MonthlyDayOfMonthNotEqualTo; } public SY_PluginScheduleQuery setMonthlyDayOfMonthNotEqualTo(Short value) { this.MonthlyDayOfMonthNotEqualTo = value; return this; } public ArrayList getMonthlyDayOfMonthBetween() { return MonthlyDayOfMonthBetween; } public SY_PluginScheduleQuery setMonthlyDayOfMonthBetween(ArrayList value) { this.MonthlyDayOfMonthBetween = value; return this; } public ArrayList getMonthlyDayOfMonthIn() { return MonthlyDayOfMonthIn; } public SY_PluginScheduleQuery setMonthlyDayOfMonthIn(ArrayList value) { this.MonthlyDayOfMonthIn = value; return this; } public Integer getMonthlyRepeatInterval() { return MonthlyRepeatInterval; } public SY_PluginScheduleQuery setMonthlyRepeatInterval(Integer value) { this.MonthlyRepeatInterval = value; return this; } public Integer getMonthlyRepeatIntervalGreaterThanOrEqualTo() { return MonthlyRepeatIntervalGreaterThanOrEqualTo; } public SY_PluginScheduleQuery setMonthlyRepeatIntervalGreaterThanOrEqualTo(Integer value) { this.MonthlyRepeatIntervalGreaterThanOrEqualTo = value; return this; } public Integer getMonthlyRepeatIntervalGreaterThan() { return MonthlyRepeatIntervalGreaterThan; } public SY_PluginScheduleQuery setMonthlyRepeatIntervalGreaterThan(Integer value) { this.MonthlyRepeatIntervalGreaterThan = value; return this; } public Integer getMonthlyRepeatIntervalLessThan() { return MonthlyRepeatIntervalLessThan; } public SY_PluginScheduleQuery setMonthlyRepeatIntervalLessThan(Integer value) { this.MonthlyRepeatIntervalLessThan = value; return this; } public Integer getMonthlyRepeatIntervalLessThanOrEqualTo() { return MonthlyRepeatIntervalLessThanOrEqualTo; } public SY_PluginScheduleQuery setMonthlyRepeatIntervalLessThanOrEqualTo(Integer value) { this.MonthlyRepeatIntervalLessThanOrEqualTo = value; return this; } public Integer getMonthlyRepeatIntervalNotEqualTo() { return MonthlyRepeatIntervalNotEqualTo; } public SY_PluginScheduleQuery setMonthlyRepeatIntervalNotEqualTo(Integer value) { this.MonthlyRepeatIntervalNotEqualTo = value; return this; } public ArrayList getMonthlyRepeatIntervalBetween() { return MonthlyRepeatIntervalBetween; } public SY_PluginScheduleQuery setMonthlyRepeatIntervalBetween(ArrayList value) { this.MonthlyRepeatIntervalBetween = value; return this; } public ArrayList getMonthlyRepeatIntervalIn() { return MonthlyRepeatIntervalIn; } public SY_PluginScheduleQuery setMonthlyRepeatIntervalIn(ArrayList value) { this.MonthlyRepeatIntervalIn = value; return this; } public Short getMonthlyFrequencyAdjective() { return MonthlyFrequencyAdjective; } public SY_PluginScheduleQuery setMonthlyFrequencyAdjective(Short value) { this.MonthlyFrequencyAdjective = value; return this; } public Short getMonthlyFrequencyAdjectiveGreaterThanOrEqualTo() { return MonthlyFrequencyAdjectiveGreaterThanOrEqualTo; } public SY_PluginScheduleQuery setMonthlyFrequencyAdjectiveGreaterThanOrEqualTo(Short value) { this.MonthlyFrequencyAdjectiveGreaterThanOrEqualTo = value; return this; } public Short getMonthlyFrequencyAdjectiveGreaterThan() { return MonthlyFrequencyAdjectiveGreaterThan; } public SY_PluginScheduleQuery setMonthlyFrequencyAdjectiveGreaterThan(Short value) { this.MonthlyFrequencyAdjectiveGreaterThan = value; return this; } public Short getMonthlyFrequencyAdjectiveLessThan() { return MonthlyFrequencyAdjectiveLessThan; } public SY_PluginScheduleQuery setMonthlyFrequencyAdjectiveLessThan(Short value) { this.MonthlyFrequencyAdjectiveLessThan = value; return this; } public Short getMonthlyFrequencyAdjectiveLessThanOrEqualTo() { return MonthlyFrequencyAdjectiveLessThanOrEqualTo; } public SY_PluginScheduleQuery setMonthlyFrequencyAdjectiveLessThanOrEqualTo(Short value) { this.MonthlyFrequencyAdjectiveLessThanOrEqualTo = value; return this; } public Short getMonthlyFrequencyAdjectiveNotEqualTo() { return MonthlyFrequencyAdjectiveNotEqualTo; } public SY_PluginScheduleQuery setMonthlyFrequencyAdjectiveNotEqualTo(Short value) { this.MonthlyFrequencyAdjectiveNotEqualTo = value; return this; } public ArrayList getMonthlyFrequencyAdjectiveBetween() { return MonthlyFrequencyAdjectiveBetween; } public SY_PluginScheduleQuery setMonthlyFrequencyAdjectiveBetween(ArrayList value) { this.MonthlyFrequencyAdjectiveBetween = value; return this; } public ArrayList getMonthlyFrequencyAdjectiveIn() { return MonthlyFrequencyAdjectiveIn; } public SY_PluginScheduleQuery setMonthlyFrequencyAdjectiveIn(ArrayList value) { this.MonthlyFrequencyAdjectiveIn = value; return this; } public Short getMonthlyFrequencyDayOfWeek() { return MonthlyFrequencyDayOfWeek; } public SY_PluginScheduleQuery setMonthlyFrequencyDayOfWeek(Short value) { this.MonthlyFrequencyDayOfWeek = value; return this; } public Short getMonthlyFrequencyDayOfWeekGreaterThanOrEqualTo() { return MonthlyFrequencyDayOfWeekGreaterThanOrEqualTo; } public SY_PluginScheduleQuery setMonthlyFrequencyDayOfWeekGreaterThanOrEqualTo(Short value) { this.MonthlyFrequencyDayOfWeekGreaterThanOrEqualTo = value; return this; } public Short getMonthlyFrequencyDayOfWeekGreaterThan() { return MonthlyFrequencyDayOfWeekGreaterThan; } public SY_PluginScheduleQuery setMonthlyFrequencyDayOfWeekGreaterThan(Short value) { this.MonthlyFrequencyDayOfWeekGreaterThan = value; return this; } public Short getMonthlyFrequencyDayOfWeekLessThan() { return MonthlyFrequencyDayOfWeekLessThan; } public SY_PluginScheduleQuery setMonthlyFrequencyDayOfWeekLessThan(Short value) { this.MonthlyFrequencyDayOfWeekLessThan = value; return this; } public Short getMonthlyFrequencyDayOfWeekLessThanOrEqualTo() { return MonthlyFrequencyDayOfWeekLessThanOrEqualTo; } public SY_PluginScheduleQuery setMonthlyFrequencyDayOfWeekLessThanOrEqualTo(Short value) { this.MonthlyFrequencyDayOfWeekLessThanOrEqualTo = value; return this; } public Short getMonthlyFrequencyDayOfWeekNotEqualTo() { return MonthlyFrequencyDayOfWeekNotEqualTo; } public SY_PluginScheduleQuery setMonthlyFrequencyDayOfWeekNotEqualTo(Short value) { this.MonthlyFrequencyDayOfWeekNotEqualTo = value; return this; } public ArrayList getMonthlyFrequencyDayOfWeekBetween() { return MonthlyFrequencyDayOfWeekBetween; } public SY_PluginScheduleQuery setMonthlyFrequencyDayOfWeekBetween(ArrayList value) { this.MonthlyFrequencyDayOfWeekBetween = value; return this; } public ArrayList getMonthlyFrequencyDayOfWeekIn() { return MonthlyFrequencyDayOfWeekIn; } public SY_PluginScheduleQuery setMonthlyFrequencyDayOfWeekIn(ArrayList value) { this.MonthlyFrequencyDayOfWeekIn = value; return this; } public Date getStartDate() { return StartDate; } public SY_PluginScheduleQuery setStartDate(Date value) { this.StartDate = value; return this; } public Date getStartDateGreaterThanOrEqualTo() { return StartDateGreaterThanOrEqualTo; } public SY_PluginScheduleQuery setStartDateGreaterThanOrEqualTo(Date value) { this.StartDateGreaterThanOrEqualTo = value; return this; } public Date getStartDateGreaterThan() { return StartDateGreaterThan; } public SY_PluginScheduleQuery setStartDateGreaterThan(Date value) { this.StartDateGreaterThan = value; return this; } public Date getStartDateLessThan() { return StartDateLessThan; } public SY_PluginScheduleQuery setStartDateLessThan(Date value) { this.StartDateLessThan = value; return this; } public Date getStartDateLessThanOrEqualTo() { return StartDateLessThanOrEqualTo; } public SY_PluginScheduleQuery setStartDateLessThanOrEqualTo(Date value) { this.StartDateLessThanOrEqualTo = value; return this; } public Date getStartDateNotEqualTo() { return StartDateNotEqualTo; } public SY_PluginScheduleQuery setStartDateNotEqualTo(Date value) { this.StartDateNotEqualTo = value; return this; } public ArrayList getStartDateBetween() { return StartDateBetween; } public SY_PluginScheduleQuery setStartDateBetween(ArrayList value) { this.StartDateBetween = value; return this; } public ArrayList getStartDateIn() { return StartDateIn; } public SY_PluginScheduleQuery setStartDateIn(ArrayList value) { this.StartDateIn = value; return this; } public Boolean isHasEndDate() { return HasEndDate; } public SY_PluginScheduleQuery setHasEndDate(Boolean value) { this.HasEndDate = value; return this; } public Date getEndDate() { return EndDate; } public SY_PluginScheduleQuery setEndDate(Date value) { this.EndDate = value; return this; } public Date getEndDateGreaterThanOrEqualTo() { return EndDateGreaterThanOrEqualTo; } public SY_PluginScheduleQuery setEndDateGreaterThanOrEqualTo(Date value) { this.EndDateGreaterThanOrEqualTo = value; return this; } public Date getEndDateGreaterThan() { return EndDateGreaterThan; } public SY_PluginScheduleQuery setEndDateGreaterThan(Date value) { this.EndDateGreaterThan = value; return this; } public Date getEndDateLessThan() { return EndDateLessThan; } public SY_PluginScheduleQuery setEndDateLessThan(Date value) { this.EndDateLessThan = value; return this; } public Date getEndDateLessThanOrEqualTo() { return EndDateLessThanOrEqualTo; } public SY_PluginScheduleQuery setEndDateLessThanOrEqualTo(Date value) { this.EndDateLessThanOrEqualTo = value; return this; } public Date getEndDateNotEqualTo() { return EndDateNotEqualTo; } public SY_PluginScheduleQuery setEndDateNotEqualTo(Date value) { this.EndDateNotEqualTo = value; return this; } public ArrayList getEndDateBetween() { return EndDateBetween; } public SY_PluginScheduleQuery setEndDateBetween(ArrayList value) { this.EndDateBetween = value; return this; } public ArrayList getEndDateIn() { return EndDateIn; } public SY_PluginScheduleQuery setEndDateIn(ArrayList value) { this.EndDateIn = value; return this; } public Short getItemNo() { return ItemNo; } public SY_PluginScheduleQuery setItemNo(Short value) { this.ItemNo = value; return this; } public Short getItemNoGreaterThanOrEqualTo() { return ItemNoGreaterThanOrEqualTo; } public SY_PluginScheduleQuery setItemNoGreaterThanOrEqualTo(Short value) { this.ItemNoGreaterThanOrEqualTo = value; return this; } public Short getItemNoGreaterThan() { return ItemNoGreaterThan; } public SY_PluginScheduleQuery setItemNoGreaterThan(Short value) { this.ItemNoGreaterThan = value; return this; } public Short getItemNoLessThan() { return ItemNoLessThan; } public SY_PluginScheduleQuery setItemNoLessThan(Short value) { this.ItemNoLessThan = value; return this; } public Short getItemNoLessThanOrEqualTo() { return ItemNoLessThanOrEqualTo; } public SY_PluginScheduleQuery setItemNoLessThanOrEqualTo(Short value) { this.ItemNoLessThanOrEqualTo = value; return this; } public Short getItemNoNotEqualTo() { return ItemNoNotEqualTo; } public SY_PluginScheduleQuery setItemNoNotEqualTo(Short value) { this.ItemNoNotEqualTo = value; return this; } public ArrayList getItemNoBetween() { return ItemNoBetween; } public SY_PluginScheduleQuery setItemNoBetween(ArrayList value) { this.ItemNoBetween = value; return this; } public ArrayList getItemNoIn() { return ItemNoIn; } public SY_PluginScheduleQuery setItemNoIn(ArrayList value) { this.ItemNoIn = value; return this; } public Date getLastRunDate() { return LastRunDate; } public SY_PluginScheduleQuery setLastRunDate(Date value) { this.LastRunDate = value; return this; } public Date getLastRunDateGreaterThanOrEqualTo() { return LastRunDateGreaterThanOrEqualTo; } public SY_PluginScheduleQuery setLastRunDateGreaterThanOrEqualTo(Date value) { this.LastRunDateGreaterThanOrEqualTo = value; return this; } public Date getLastRunDateGreaterThan() { return LastRunDateGreaterThan; } public SY_PluginScheduleQuery setLastRunDateGreaterThan(Date value) { this.LastRunDateGreaterThan = value; return this; } public Date getLastRunDateLessThan() { return LastRunDateLessThan; } public SY_PluginScheduleQuery setLastRunDateLessThan(Date value) { this.LastRunDateLessThan = value; return this; } public Date getLastRunDateLessThanOrEqualTo() { return LastRunDateLessThanOrEqualTo; } public SY_PluginScheduleQuery setLastRunDateLessThanOrEqualTo(Date value) { this.LastRunDateLessThanOrEqualTo = value; return this; } public Date getLastRunDateNotEqualTo() { return LastRunDateNotEqualTo; } public SY_PluginScheduleQuery setLastRunDateNotEqualTo(Date value) { this.LastRunDateNotEqualTo = value; return this; } public ArrayList getLastRunDateBetween() { return LastRunDateBetween; } public SY_PluginScheduleQuery setLastRunDateBetween(ArrayList value) { this.LastRunDateBetween = value; return this; } public ArrayList getLastRunDateIn() { return LastRunDateIn; } public SY_PluginScheduleQuery setLastRunDateIn(ArrayList value) { this.LastRunDateIn = value; return this; } public Date getNextRunDate() { return NextRunDate; } public SY_PluginScheduleQuery setNextRunDate(Date value) { this.NextRunDate = value; return this; } public Date getNextRunDateGreaterThanOrEqualTo() { return NextRunDateGreaterThanOrEqualTo; } public SY_PluginScheduleQuery setNextRunDateGreaterThanOrEqualTo(Date value) { this.NextRunDateGreaterThanOrEqualTo = value; return this; } public Date getNextRunDateGreaterThan() { return NextRunDateGreaterThan; } public SY_PluginScheduleQuery setNextRunDateGreaterThan(Date value) { this.NextRunDateGreaterThan = value; return this; } public Date getNextRunDateLessThan() { return NextRunDateLessThan; } public SY_PluginScheduleQuery setNextRunDateLessThan(Date value) { this.NextRunDateLessThan = value; return this; } public Date getNextRunDateLessThanOrEqualTo() { return NextRunDateLessThanOrEqualTo; } public SY_PluginScheduleQuery setNextRunDateLessThanOrEqualTo(Date value) { this.NextRunDateLessThanOrEqualTo = value; return this; } public Date getNextRunDateNotEqualTo() { return NextRunDateNotEqualTo; } public SY_PluginScheduleQuery setNextRunDateNotEqualTo(Date value) { this.NextRunDateNotEqualTo = value; return this; } public ArrayList getNextRunDateBetween() { return NextRunDateBetween; } public SY_PluginScheduleQuery setNextRunDateBetween(ArrayList value) { this.NextRunDateBetween = value; return this; } public ArrayList getNextRunDateIn() { return NextRunDateIn; } public SY_PluginScheduleQuery setNextRunDateIn(ArrayList value) { this.NextRunDateIn = value; return this; } public ArrayList getRowHash() { return RowHash; } public SY_PluginScheduleQuery setRowHash(ArrayList value) { this.RowHash = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class SY_PluginSnippetQuery extends QueryDb implements IReturn> { public UUID RecID = null; public ArrayList RecIDIn = null; public String Title = null; public String TitleStartsWith = null; public String TitleEndsWith = null; public String TitleContains = null; public String TitleLike = null; public ArrayList TitleBetween = null; public ArrayList TitleIn = null; public String Description = null; public String DescriptionStartsWith = null; public String DescriptionEndsWith = null; public String DescriptionContains = null; public String DescriptionLike = null; public ArrayList DescriptionBetween = null; public ArrayList DescriptionIn = null; public String Shortcut = null; public String ShortcutStartsWith = null; public String ShortcutEndsWith = null; public String ShortcutContains = null; public String ShortcutLike = null; public ArrayList ShortcutBetween = null; public ArrayList ShortcutIn = null; public String Author = null; public String AuthorStartsWith = null; public String AuthorEndsWith = null; public String AuthorContains = null; public String AuthorLike = null; public ArrayList AuthorBetween = null; public ArrayList AuthorIn = null; public Boolean IsEnabled = null; public String Code = null; public String CodeStartsWith = null; public String CodeEndsWith = null; public String CodeContains = null; public String CodeLike = null; public ArrayList CodeBetween = null; public ArrayList CodeIn = null; public Short Language = null; public Short LanguageGreaterThanOrEqualTo = null; public Short LanguageGreaterThan = null; public Short LanguageLessThan = null; public Short LanguageLessThanOrEqualTo = null; public Short LanguageNotEqualTo = null; public ArrayList LanguageBetween = null; public ArrayList LanguageIn = null; public String FolderPath = null; public String FolderPathStartsWith = null; public String FolderPathEndsWith = null; public String FolderPathContains = null; public String FolderPathLike = null; public ArrayList FolderPathBetween = null; public ArrayList FolderPathIn = null; public String SnippetTypes = null; public String SnippetTypesStartsWith = null; public String SnippetTypesEndsWith = null; public String SnippetTypesContains = null; public String SnippetTypesLike = null; public ArrayList SnippetTypesBetween = null; public ArrayList SnippetTypesIn = null; public ArrayList RowHash = null; public Date LastSavedDateTime = null; public Date LastSavedDateTimeGreaterThanOrEqualTo = null; public Date LastSavedDateTimeGreaterThan = null; public Date LastSavedDateTimeLessThan = null; public Date LastSavedDateTimeLessThanOrEqualTo = null; public Date LastSavedDateTimeNotEqualTo = null; public ArrayList LastSavedDateTimeBetween = null; public ArrayList LastSavedDateTimeIn = null; public UUID getRecID() { return RecID; } public SY_PluginSnippetQuery setRecID(UUID value) { this.RecID = value; return this; } public ArrayList getRecIDIn() { return RecIDIn; } public SY_PluginSnippetQuery setRecIDIn(ArrayList value) { this.RecIDIn = value; return this; } public String getTitle() { return Title; } public SY_PluginSnippetQuery setTitle(String value) { this.Title = value; return this; } public String getTitleStartsWith() { return TitleStartsWith; } public SY_PluginSnippetQuery setTitleStartsWith(String value) { this.TitleStartsWith = value; return this; } public String getTitleEndsWith() { return TitleEndsWith; } public SY_PluginSnippetQuery setTitleEndsWith(String value) { this.TitleEndsWith = value; return this; } public String getTitleContains() { return TitleContains; } public SY_PluginSnippetQuery setTitleContains(String value) { this.TitleContains = value; return this; } public String getTitleLike() { return TitleLike; } public SY_PluginSnippetQuery setTitleLike(String value) { this.TitleLike = value; return this; } public ArrayList getTitleBetween() { return TitleBetween; } public SY_PluginSnippetQuery setTitleBetween(ArrayList value) { this.TitleBetween = value; return this; } public ArrayList getTitleIn() { return TitleIn; } public SY_PluginSnippetQuery setTitleIn(ArrayList value) { this.TitleIn = value; return this; } public String getDescription() { return Description; } public SY_PluginSnippetQuery setDescription(String value) { this.Description = value; return this; } public String getDescriptionStartsWith() { return DescriptionStartsWith; } public SY_PluginSnippetQuery setDescriptionStartsWith(String value) { this.DescriptionStartsWith = value; return this; } public String getDescriptionEndsWith() { return DescriptionEndsWith; } public SY_PluginSnippetQuery setDescriptionEndsWith(String value) { this.DescriptionEndsWith = value; return this; } public String getDescriptionContains() { return DescriptionContains; } public SY_PluginSnippetQuery setDescriptionContains(String value) { this.DescriptionContains = value; return this; } public String getDescriptionLike() { return DescriptionLike; } public SY_PluginSnippetQuery setDescriptionLike(String value) { this.DescriptionLike = value; return this; } public ArrayList getDescriptionBetween() { return DescriptionBetween; } public SY_PluginSnippetQuery setDescriptionBetween(ArrayList value) { this.DescriptionBetween = value; return this; } public ArrayList getDescriptionIn() { return DescriptionIn; } public SY_PluginSnippetQuery setDescriptionIn(ArrayList value) { this.DescriptionIn = value; return this; } public String getShortcut() { return Shortcut; } public SY_PluginSnippetQuery setShortcut(String value) { this.Shortcut = value; return this; } public String getShortcutStartsWith() { return ShortcutStartsWith; } public SY_PluginSnippetQuery setShortcutStartsWith(String value) { this.ShortcutStartsWith = value; return this; } public String getShortcutEndsWith() { return ShortcutEndsWith; } public SY_PluginSnippetQuery setShortcutEndsWith(String value) { this.ShortcutEndsWith = value; return this; } public String getShortcutContains() { return ShortcutContains; } public SY_PluginSnippetQuery setShortcutContains(String value) { this.ShortcutContains = value; return this; } public String getShortcutLike() { return ShortcutLike; } public SY_PluginSnippetQuery setShortcutLike(String value) { this.ShortcutLike = value; return this; } public ArrayList getShortcutBetween() { return ShortcutBetween; } public SY_PluginSnippetQuery setShortcutBetween(ArrayList value) { this.ShortcutBetween = value; return this; } public ArrayList getShortcutIn() { return ShortcutIn; } public SY_PluginSnippetQuery setShortcutIn(ArrayList value) { this.ShortcutIn = value; return this; } public String getAuthor() { return Author; } public SY_PluginSnippetQuery setAuthor(String value) { this.Author = value; return this; } public String getAuthorStartsWith() { return AuthorStartsWith; } public SY_PluginSnippetQuery setAuthorStartsWith(String value) { this.AuthorStartsWith = value; return this; } public String getAuthorEndsWith() { return AuthorEndsWith; } public SY_PluginSnippetQuery setAuthorEndsWith(String value) { this.AuthorEndsWith = value; return this; } public String getAuthorContains() { return AuthorContains; } public SY_PluginSnippetQuery setAuthorContains(String value) { this.AuthorContains = value; return this; } public String getAuthorLike() { return AuthorLike; } public SY_PluginSnippetQuery setAuthorLike(String value) { this.AuthorLike = value; return this; } public ArrayList getAuthorBetween() { return AuthorBetween; } public SY_PluginSnippetQuery setAuthorBetween(ArrayList value) { this.AuthorBetween = value; return this; } public ArrayList getAuthorIn() { return AuthorIn; } public SY_PluginSnippetQuery setAuthorIn(ArrayList value) { this.AuthorIn = value; return this; } public Boolean getIsEnabled() { return IsEnabled; } public SY_PluginSnippetQuery setIsEnabled(Boolean value) { this.IsEnabled = value; return this; } public String getCode() { return Code; } public SY_PluginSnippetQuery setCode(String value) { this.Code = value; return this; } public String getCodeStartsWith() { return CodeStartsWith; } public SY_PluginSnippetQuery setCodeStartsWith(String value) { this.CodeStartsWith = value; return this; } public String getCodeEndsWith() { return CodeEndsWith; } public SY_PluginSnippetQuery setCodeEndsWith(String value) { this.CodeEndsWith = value; return this; } public String getCodeContains() { return CodeContains; } public SY_PluginSnippetQuery setCodeContains(String value) { this.CodeContains = value; return this; } public String getCodeLike() { return CodeLike; } public SY_PluginSnippetQuery setCodeLike(String value) { this.CodeLike = value; return this; } public ArrayList getCodeBetween() { return CodeBetween; } public SY_PluginSnippetQuery setCodeBetween(ArrayList value) { this.CodeBetween = value; return this; } public ArrayList getCodeIn() { return CodeIn; } public SY_PluginSnippetQuery setCodeIn(ArrayList value) { this.CodeIn = value; return this; } public Short getLanguage() { return Language; } public SY_PluginSnippetQuery setLanguage(Short value) { this.Language = value; return this; } public Short getLanguageGreaterThanOrEqualTo() { return LanguageGreaterThanOrEqualTo; } public SY_PluginSnippetQuery setLanguageGreaterThanOrEqualTo(Short value) { this.LanguageGreaterThanOrEqualTo = value; return this; } public Short getLanguageGreaterThan() { return LanguageGreaterThan; } public SY_PluginSnippetQuery setLanguageGreaterThan(Short value) { this.LanguageGreaterThan = value; return this; } public Short getLanguageLessThan() { return LanguageLessThan; } public SY_PluginSnippetQuery setLanguageLessThan(Short value) { this.LanguageLessThan = value; return this; } public Short getLanguageLessThanOrEqualTo() { return LanguageLessThanOrEqualTo; } public SY_PluginSnippetQuery setLanguageLessThanOrEqualTo(Short value) { this.LanguageLessThanOrEqualTo = value; return this; } public Short getLanguageNotEqualTo() { return LanguageNotEqualTo; } public SY_PluginSnippetQuery setLanguageNotEqualTo(Short value) { this.LanguageNotEqualTo = value; return this; } public ArrayList getLanguageBetween() { return LanguageBetween; } public SY_PluginSnippetQuery setLanguageBetween(ArrayList value) { this.LanguageBetween = value; return this; } public ArrayList getLanguageIn() { return LanguageIn; } public SY_PluginSnippetQuery setLanguageIn(ArrayList value) { this.LanguageIn = value; return this; } public String getFolderPath() { return FolderPath; } public SY_PluginSnippetQuery setFolderPath(String value) { this.FolderPath = value; return this; } public String getFolderPathStartsWith() { return FolderPathStartsWith; } public SY_PluginSnippetQuery setFolderPathStartsWith(String value) { this.FolderPathStartsWith = value; return this; } public String getFolderPathEndsWith() { return FolderPathEndsWith; } public SY_PluginSnippetQuery setFolderPathEndsWith(String value) { this.FolderPathEndsWith = value; return this; } public String getFolderPathContains() { return FolderPathContains; } public SY_PluginSnippetQuery setFolderPathContains(String value) { this.FolderPathContains = value; return this; } public String getFolderPathLike() { return FolderPathLike; } public SY_PluginSnippetQuery setFolderPathLike(String value) { this.FolderPathLike = value; return this; } public ArrayList getFolderPathBetween() { return FolderPathBetween; } public SY_PluginSnippetQuery setFolderPathBetween(ArrayList value) { this.FolderPathBetween = value; return this; } public ArrayList getFolderPathIn() { return FolderPathIn; } public SY_PluginSnippetQuery setFolderPathIn(ArrayList value) { this.FolderPathIn = value; return this; } public String getSnippetTypes() { return SnippetTypes; } public SY_PluginSnippetQuery setSnippetTypes(String value) { this.SnippetTypes = value; return this; } public String getSnippetTypesStartsWith() { return SnippetTypesStartsWith; } public SY_PluginSnippetQuery setSnippetTypesStartsWith(String value) { this.SnippetTypesStartsWith = value; return this; } public String getSnippetTypesEndsWith() { return SnippetTypesEndsWith; } public SY_PluginSnippetQuery setSnippetTypesEndsWith(String value) { this.SnippetTypesEndsWith = value; return this; } public String getSnippetTypesContains() { return SnippetTypesContains; } public SY_PluginSnippetQuery setSnippetTypesContains(String value) { this.SnippetTypesContains = value; return this; } public String getSnippetTypesLike() { return SnippetTypesLike; } public SY_PluginSnippetQuery setSnippetTypesLike(String value) { this.SnippetTypesLike = value; return this; } public ArrayList getSnippetTypesBetween() { return SnippetTypesBetween; } public SY_PluginSnippetQuery setSnippetTypesBetween(ArrayList value) { this.SnippetTypesBetween = value; return this; } public ArrayList getSnippetTypesIn() { return SnippetTypesIn; } public SY_PluginSnippetQuery setSnippetTypesIn(ArrayList value) { this.SnippetTypesIn = value; return this; } public ArrayList getRowHash() { return RowHash; } public SY_PluginSnippetQuery setRowHash(ArrayList value) { this.RowHash = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public SY_PluginSnippetQuery setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getLastSavedDateTimeGreaterThanOrEqualTo() { return LastSavedDateTimeGreaterThanOrEqualTo; } public SY_PluginSnippetQuery setLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.LastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeGreaterThan() { return LastSavedDateTimeGreaterThan; } public SY_PluginSnippetQuery setLastSavedDateTimeGreaterThan(Date value) { this.LastSavedDateTimeGreaterThan = value; return this; } public Date getLastSavedDateTimeLessThan() { return LastSavedDateTimeLessThan; } public SY_PluginSnippetQuery setLastSavedDateTimeLessThan(Date value) { this.LastSavedDateTimeLessThan = value; return this; } public Date getLastSavedDateTimeLessThanOrEqualTo() { return LastSavedDateTimeLessThanOrEqualTo; } public SY_PluginSnippetQuery setLastSavedDateTimeLessThanOrEqualTo(Date value) { this.LastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeNotEqualTo() { return LastSavedDateTimeNotEqualTo; } public SY_PluginSnippetQuery setLastSavedDateTimeNotEqualTo(Date value) { this.LastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getLastSavedDateTimeBetween() { return LastSavedDateTimeBetween; } public SY_PluginSnippetQuery setLastSavedDateTimeBetween(ArrayList value) { this.LastSavedDateTimeBetween = value; return this; } public ArrayList getLastSavedDateTimeIn() { return LastSavedDateTimeIn; } public SY_PluginSnippetQuery setLastSavedDateTimeIn(ArrayList value) { this.LastSavedDateTimeIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class SY_PluginSnippetDeclarationQuery extends QueryDb implements IReturn> { public UUID RecID = null; public ArrayList RecIDIn = null; public UUID SY_PluginSnippet_RecID = null; public ArrayList SY_PluginSnippet_RecIDIn = null; public String ID = null; public String IDStartsWith = null; public String IDEndsWith = null; public String IDContains = null; public String IDLike = null; public ArrayList IDBetween = null; public ArrayList IDIn = null; public String Type = null; public String TypeStartsWith = null; public String TypeEndsWith = null; public String TypeContains = null; public String TypeLike = null; public ArrayList TypeBetween = null; public ArrayList TypeIn = null; public String Tooltip = null; public String TooltipStartsWith = null; public String TooltipEndsWith = null; public String TooltipContains = null; public String TooltipLike = null; public ArrayList TooltipBetween = null; public ArrayList TooltipIn = null; public String Default = null; public String DefaultStartsWith = null; public String DefaultEndsWith = null; public String DefaultContains = null; public String DefaultLike = null; public ArrayList DefaultBetween = null; public ArrayList DefaultIn = null; public Integer ItemNo = null; public Integer ItemNoGreaterThanOrEqualTo = null; public Integer ItemNoGreaterThan = null; public Integer ItemNoLessThan = null; public Integer ItemNoLessThanOrEqualTo = null; public Integer ItemNoNotEqualTo = null; public ArrayList ItemNoBetween = null; public ArrayList ItemNoIn = null; public ArrayList RowHash = null; public UUID getRecID() { return RecID; } public SY_PluginSnippetDeclarationQuery setRecID(UUID value) { this.RecID = value; return this; } public ArrayList getRecIDIn() { return RecIDIn; } public SY_PluginSnippetDeclarationQuery setRecIDIn(ArrayList value) { this.RecIDIn = value; return this; } public UUID getSyPluginSnippetRecID() { return SY_PluginSnippet_RecID; } public SY_PluginSnippetDeclarationQuery setSyPluginSnippetRecID(UUID value) { this.SY_PluginSnippet_RecID = value; return this; } public ArrayList getSyPluginSnippetRecIDIn() { return SY_PluginSnippet_RecIDIn; } public SY_PluginSnippetDeclarationQuery setSyPluginSnippetRecIDIn(ArrayList value) { this.SY_PluginSnippet_RecIDIn = value; return this; } public String getId() { return ID; } public SY_PluginSnippetDeclarationQuery setId(String value) { this.ID = value; return this; } public String getIdStartsWith() { return IDStartsWith; } public SY_PluginSnippetDeclarationQuery setIdStartsWith(String value) { this.IDStartsWith = value; return this; } public String getIdEndsWith() { return IDEndsWith; } public SY_PluginSnippetDeclarationQuery setIdEndsWith(String value) { this.IDEndsWith = value; return this; } public String getIdContains() { return IDContains; } public SY_PluginSnippetDeclarationQuery setIdContains(String value) { this.IDContains = value; return this; } public String getIdLike() { return IDLike; } public SY_PluginSnippetDeclarationQuery setIdLike(String value) { this.IDLike = value; return this; } public ArrayList getIdBetween() { return IDBetween; } public SY_PluginSnippetDeclarationQuery setIdBetween(ArrayList value) { this.IDBetween = value; return this; } public ArrayList getIdIn() { return IDIn; } public SY_PluginSnippetDeclarationQuery setIdIn(ArrayList value) { this.IDIn = value; return this; } public String getType() { return Type; } public SY_PluginSnippetDeclarationQuery setType(String value) { this.Type = value; return this; } public String getTypeStartsWith() { return TypeStartsWith; } public SY_PluginSnippetDeclarationQuery setTypeStartsWith(String value) { this.TypeStartsWith = value; return this; } public String getTypeEndsWith() { return TypeEndsWith; } public SY_PluginSnippetDeclarationQuery setTypeEndsWith(String value) { this.TypeEndsWith = value; return this; } public String getTypeContains() { return TypeContains; } public SY_PluginSnippetDeclarationQuery setTypeContains(String value) { this.TypeContains = value; return this; } public String getTypeLike() { return TypeLike; } public SY_PluginSnippetDeclarationQuery setTypeLike(String value) { this.TypeLike = value; return this; } public ArrayList getTypeBetween() { return TypeBetween; } public SY_PluginSnippetDeclarationQuery setTypeBetween(ArrayList value) { this.TypeBetween = value; return this; } public ArrayList getTypeIn() { return TypeIn; } public SY_PluginSnippetDeclarationQuery setTypeIn(ArrayList value) { this.TypeIn = value; return this; } public String getTooltip() { return Tooltip; } public SY_PluginSnippetDeclarationQuery setTooltip(String value) { this.Tooltip = value; return this; } public String getTooltipStartsWith() { return TooltipStartsWith; } public SY_PluginSnippetDeclarationQuery setTooltipStartsWith(String value) { this.TooltipStartsWith = value; return this; } public String getTooltipEndsWith() { return TooltipEndsWith; } public SY_PluginSnippetDeclarationQuery setTooltipEndsWith(String value) { this.TooltipEndsWith = value; return this; } public String getTooltipContains() { return TooltipContains; } public SY_PluginSnippetDeclarationQuery setTooltipContains(String value) { this.TooltipContains = value; return this; } public String getTooltipLike() { return TooltipLike; } public SY_PluginSnippetDeclarationQuery setTooltipLike(String value) { this.TooltipLike = value; return this; } public ArrayList getTooltipBetween() { return TooltipBetween; } public SY_PluginSnippetDeclarationQuery setTooltipBetween(ArrayList value) { this.TooltipBetween = value; return this; } public ArrayList getTooltipIn() { return TooltipIn; } public SY_PluginSnippetDeclarationQuery setTooltipIn(ArrayList value) { this.TooltipIn = value; return this; } public String getDefault() { return Default; } public SY_PluginSnippetDeclarationQuery setDefault(String value) { this.Default = value; return this; } public String getDefaultStartsWith() { return DefaultStartsWith; } public SY_PluginSnippetDeclarationQuery setDefaultStartsWith(String value) { this.DefaultStartsWith = value; return this; } public String getDefaultEndsWith() { return DefaultEndsWith; } public SY_PluginSnippetDeclarationQuery setDefaultEndsWith(String value) { this.DefaultEndsWith = value; return this; } public String getDefaultContains() { return DefaultContains; } public SY_PluginSnippetDeclarationQuery setDefaultContains(String value) { this.DefaultContains = value; return this; } public String getDefaultLike() { return DefaultLike; } public SY_PluginSnippetDeclarationQuery setDefaultLike(String value) { this.DefaultLike = value; return this; } public ArrayList getDefaultBetween() { return DefaultBetween; } public SY_PluginSnippetDeclarationQuery setDefaultBetween(ArrayList value) { this.DefaultBetween = value; return this; } public ArrayList getDefaultIn() { return DefaultIn; } public SY_PluginSnippetDeclarationQuery setDefaultIn(ArrayList value) { this.DefaultIn = value; return this; } public Integer getItemNo() { return ItemNo; } public SY_PluginSnippetDeclarationQuery setItemNo(Integer value) { this.ItemNo = value; return this; } public Integer getItemNoGreaterThanOrEqualTo() { return ItemNoGreaterThanOrEqualTo; } public SY_PluginSnippetDeclarationQuery setItemNoGreaterThanOrEqualTo(Integer value) { this.ItemNoGreaterThanOrEqualTo = value; return this; } public Integer getItemNoGreaterThan() { return ItemNoGreaterThan; } public SY_PluginSnippetDeclarationQuery setItemNoGreaterThan(Integer value) { this.ItemNoGreaterThan = value; return this; } public Integer getItemNoLessThan() { return ItemNoLessThan; } public SY_PluginSnippetDeclarationQuery setItemNoLessThan(Integer value) { this.ItemNoLessThan = value; return this; } public Integer getItemNoLessThanOrEqualTo() { return ItemNoLessThanOrEqualTo; } public SY_PluginSnippetDeclarationQuery setItemNoLessThanOrEqualTo(Integer value) { this.ItemNoLessThanOrEqualTo = value; return this; } public Integer getItemNoNotEqualTo() { return ItemNoNotEqualTo; } public SY_PluginSnippetDeclarationQuery setItemNoNotEqualTo(Integer value) { this.ItemNoNotEqualTo = value; return this; } public ArrayList getItemNoBetween() { return ItemNoBetween; } public SY_PluginSnippetDeclarationQuery setItemNoBetween(ArrayList value) { this.ItemNoBetween = value; return this; } public ArrayList getItemNoIn() { return ItemNoIn; } public SY_PluginSnippetDeclarationQuery setItemNoIn(ArrayList value) { this.ItemNoIn = value; return this; } public ArrayList getRowHash() { return RowHash; } public SY_PluginSnippetDeclarationQuery setRowHash(ArrayList value) { this.RowHash = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class SY_PluginSystemSettingsQuery extends QueryDb implements IReturn> { public UUID SY_Plugin_RecID = null; public ArrayList SY_Plugin_RecIDIn = null; public String SY_Sysvalues_RecID = null; public String SY_Sysvalues_RecIDStartsWith = null; public String SY_Sysvalues_RecIDEndsWith = null; public String SY_Sysvalues_RecIDContains = null; public String SY_Sysvalues_RecIDLike = null; public ArrayList SY_Sysvalues_RecIDBetween = null; public ArrayList SY_Sysvalues_RecIDIn = null; public UUID getSyPluginRecID() { return SY_Plugin_RecID; } public SY_PluginSystemSettingsQuery setSyPluginRecID(UUID value) { this.SY_Plugin_RecID = value; return this; } public ArrayList getSyPluginRecIDIn() { return SY_Plugin_RecIDIn; } public SY_PluginSystemSettingsQuery setSyPluginRecIDIn(ArrayList value) { this.SY_Plugin_RecIDIn = value; return this; } public String getSySysvaluesRecID() { return SY_Sysvalues_RecID; } public SY_PluginSystemSettingsQuery setSySysvaluesRecID(String value) { this.SY_Sysvalues_RecID = value; return this; } public String getSySysvaluesRecIDStartsWith() { return SY_Sysvalues_RecIDStartsWith; } public SY_PluginSystemSettingsQuery setSySysvaluesRecIDStartsWith(String value) { this.SY_Sysvalues_RecIDStartsWith = value; return this; } public String getSySysvaluesRecIDEndsWith() { return SY_Sysvalues_RecIDEndsWith; } public SY_PluginSystemSettingsQuery setSySysvaluesRecIDEndsWith(String value) { this.SY_Sysvalues_RecIDEndsWith = value; return this; } public String getSySysvaluesRecIDContains() { return SY_Sysvalues_RecIDContains; } public SY_PluginSystemSettingsQuery setSySysvaluesRecIDContains(String value) { this.SY_Sysvalues_RecIDContains = value; return this; } public String getSySysvaluesRecIDLike() { return SY_Sysvalues_RecIDLike; } public SY_PluginSystemSettingsQuery setSySysvaluesRecIDLike(String value) { this.SY_Sysvalues_RecIDLike = value; return this; } public ArrayList getSySysvaluesRecIDBetween() { return SY_Sysvalues_RecIDBetween; } public SY_PluginSystemSettingsQuery setSySysvaluesRecIDBetween(ArrayList value) { this.SY_Sysvalues_RecIDBetween = value; return this; } public ArrayList getSySysvaluesRecIDIn() { return SY_Sysvalues_RecIDIn; } public SY_PluginSystemSettingsQuery setSySysvaluesRecIDIn(ArrayList value) { this.SY_Sysvalues_RecIDIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class SY_PrintGroupQuery extends QueryDb implements IReturn> { public String RecID = null; public String RecIDStartsWith = null; public String RecIDEndsWith = null; public String RecIDContains = null; public String RecIDLike = null; public ArrayList RecIDBetween = null; public ArrayList RecIDIn = null; public ArrayList RowHash = null; public Date LastSavedDateTime = null; public Date LastSavedDateTimeGreaterThanOrEqualTo = null; public Date LastSavedDateTimeGreaterThan = null; public Date LastSavedDateTimeLessThan = null; public Date LastSavedDateTimeLessThanOrEqualTo = null; public Date LastSavedDateTimeNotEqualTo = null; public ArrayList LastSavedDateTimeBetween = null; public ArrayList LastSavedDateTimeIn = null; public String Name = null; public String NameStartsWith = null; public String NameEndsWith = null; public String NameContains = null; public String NameLike = null; public ArrayList NameBetween = null; public ArrayList NameIn = null; public String Description = null; public String DescriptionStartsWith = null; public String DescriptionEndsWith = null; public String DescriptionContains = null; public String DescriptionLike = null; public ArrayList DescriptionBetween = null; public ArrayList DescriptionIn = null; public Boolean IsDefault = null; public String getRecID() { return RecID; } public SY_PrintGroupQuery setRecID(String value) { this.RecID = value; return this; } public String getRecIDStartsWith() { return RecIDStartsWith; } public SY_PrintGroupQuery setRecIDStartsWith(String value) { this.RecIDStartsWith = value; return this; } public String getRecIDEndsWith() { return RecIDEndsWith; } public SY_PrintGroupQuery setRecIDEndsWith(String value) { this.RecIDEndsWith = value; return this; } public String getRecIDContains() { return RecIDContains; } public SY_PrintGroupQuery setRecIDContains(String value) { this.RecIDContains = value; return this; } public String getRecIDLike() { return RecIDLike; } public SY_PrintGroupQuery setRecIDLike(String value) { this.RecIDLike = value; return this; } public ArrayList getRecIDBetween() { return RecIDBetween; } public SY_PrintGroupQuery setRecIDBetween(ArrayList value) { this.RecIDBetween = value; return this; } public ArrayList getRecIDIn() { return RecIDIn; } public SY_PrintGroupQuery setRecIDIn(ArrayList value) { this.RecIDIn = value; return this; } public ArrayList getRowHash() { return RowHash; } public SY_PrintGroupQuery setRowHash(ArrayList value) { this.RowHash = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public SY_PrintGroupQuery setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getLastSavedDateTimeGreaterThanOrEqualTo() { return LastSavedDateTimeGreaterThanOrEqualTo; } public SY_PrintGroupQuery setLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.LastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeGreaterThan() { return LastSavedDateTimeGreaterThan; } public SY_PrintGroupQuery setLastSavedDateTimeGreaterThan(Date value) { this.LastSavedDateTimeGreaterThan = value; return this; } public Date getLastSavedDateTimeLessThan() { return LastSavedDateTimeLessThan; } public SY_PrintGroupQuery setLastSavedDateTimeLessThan(Date value) { this.LastSavedDateTimeLessThan = value; return this; } public Date getLastSavedDateTimeLessThanOrEqualTo() { return LastSavedDateTimeLessThanOrEqualTo; } public SY_PrintGroupQuery setLastSavedDateTimeLessThanOrEqualTo(Date value) { this.LastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeNotEqualTo() { return LastSavedDateTimeNotEqualTo; } public SY_PrintGroupQuery setLastSavedDateTimeNotEqualTo(Date value) { this.LastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getLastSavedDateTimeBetween() { return LastSavedDateTimeBetween; } public SY_PrintGroupQuery setLastSavedDateTimeBetween(ArrayList value) { this.LastSavedDateTimeBetween = value; return this; } public ArrayList getLastSavedDateTimeIn() { return LastSavedDateTimeIn; } public SY_PrintGroupQuery setLastSavedDateTimeIn(ArrayList value) { this.LastSavedDateTimeIn = value; return this; } public String getName() { return Name; } public SY_PrintGroupQuery setName(String value) { this.Name = value; return this; } public String getNameStartsWith() { return NameStartsWith; } public SY_PrintGroupQuery setNameStartsWith(String value) { this.NameStartsWith = value; return this; } public String getNameEndsWith() { return NameEndsWith; } public SY_PrintGroupQuery setNameEndsWith(String value) { this.NameEndsWith = value; return this; } public String getNameContains() { return NameContains; } public SY_PrintGroupQuery setNameContains(String value) { this.NameContains = value; return this; } public String getNameLike() { return NameLike; } public SY_PrintGroupQuery setNameLike(String value) { this.NameLike = value; return this; } public ArrayList getNameBetween() { return NameBetween; } public SY_PrintGroupQuery setNameBetween(ArrayList value) { this.NameBetween = value; return this; } public ArrayList getNameIn() { return NameIn; } public SY_PrintGroupQuery setNameIn(ArrayList value) { this.NameIn = value; return this; } public String getDescription() { return Description; } public SY_PrintGroupQuery setDescription(String value) { this.Description = value; return this; } public String getDescriptionStartsWith() { return DescriptionStartsWith; } public SY_PrintGroupQuery setDescriptionStartsWith(String value) { this.DescriptionStartsWith = value; return this; } public String getDescriptionEndsWith() { return DescriptionEndsWith; } public SY_PrintGroupQuery setDescriptionEndsWith(String value) { this.DescriptionEndsWith = value; return this; } public String getDescriptionContains() { return DescriptionContains; } public SY_PrintGroupQuery setDescriptionContains(String value) { this.DescriptionContains = value; return this; } public String getDescriptionLike() { return DescriptionLike; } public SY_PrintGroupQuery setDescriptionLike(String value) { this.DescriptionLike = value; return this; } public ArrayList getDescriptionBetween() { return DescriptionBetween; } public SY_PrintGroupQuery setDescriptionBetween(ArrayList value) { this.DescriptionBetween = value; return this; } public ArrayList getDescriptionIn() { return DescriptionIn; } public SY_PrintGroupQuery setDescriptionIn(ArrayList value) { this.DescriptionIn = value; return this; } public Boolean getIsDefault() { return IsDefault; } public SY_PrintGroupQuery setIsDefault(Boolean value) { this.IsDefault = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class SY_PrintGroupLogicalPrinterQuery extends QueryDb implements IReturn> { public String RecID = null; public String RecIDStartsWith = null; public String RecIDEndsWith = null; public String RecIDContains = null; public String RecIDLike = null; public ArrayList RecIDBetween = null; public ArrayList RecIDIn = null; public ArrayList RowHash = null; public Date LastSavedDateTime = null; public Date LastSavedDateTimeGreaterThanOrEqualTo = null; public Date LastSavedDateTimeGreaterThan = null; public Date LastSavedDateTimeLessThan = null; public Date LastSavedDateTimeLessThanOrEqualTo = null; public Date LastSavedDateTimeNotEqualTo = null; public ArrayList LastSavedDateTimeBetween = null; public ArrayList LastSavedDateTimeIn = null; public Integer ItemNo = null; public Integer ItemNoGreaterThanOrEqualTo = null; public Integer ItemNoGreaterThan = null; public Integer ItemNoLessThan = null; public Integer ItemNoLessThanOrEqualTo = null; public Integer ItemNoNotEqualTo = null; public ArrayList ItemNoBetween = null; public ArrayList ItemNoIn = null; public String SY_PrintGroup_RecID = null; public String SY_PrintGroup_RecIDStartsWith = null; public String SY_PrintGroup_RecIDEndsWith = null; public String SY_PrintGroup_RecIDContains = null; public String SY_PrintGroup_RecIDLike = null; public ArrayList SY_PrintGroup_RecIDBetween = null; public ArrayList SY_PrintGroup_RecIDIn = null; public String Name = null; public String NameStartsWith = null; public String NameEndsWith = null; public String NameContains = null; public String NameLike = null; public ArrayList NameBetween = null; public ArrayList NameIn = null; public String PhysicalPrinterName = null; public String PhysicalPrinterNameStartsWith = null; public String PhysicalPrinterNameEndsWith = null; public String PhysicalPrinterNameContains = null; public String PhysicalPrinterNameLike = null; public ArrayList PhysicalPrinterNameBetween = null; public ArrayList PhysicalPrinterNameIn = null; public String Description = null; public String DescriptionStartsWith = null; public String DescriptionEndsWith = null; public String DescriptionContains = null; public String DescriptionLike = null; public ArrayList DescriptionBetween = null; public ArrayList DescriptionIn = null; public Boolean IsDefault = null; public String getRecID() { return RecID; } public SY_PrintGroupLogicalPrinterQuery setRecID(String value) { this.RecID = value; return this; } public String getRecIDStartsWith() { return RecIDStartsWith; } public SY_PrintGroupLogicalPrinterQuery setRecIDStartsWith(String value) { this.RecIDStartsWith = value; return this; } public String getRecIDEndsWith() { return RecIDEndsWith; } public SY_PrintGroupLogicalPrinterQuery setRecIDEndsWith(String value) { this.RecIDEndsWith = value; return this; } public String getRecIDContains() { return RecIDContains; } public SY_PrintGroupLogicalPrinterQuery setRecIDContains(String value) { this.RecIDContains = value; return this; } public String getRecIDLike() { return RecIDLike; } public SY_PrintGroupLogicalPrinterQuery setRecIDLike(String value) { this.RecIDLike = value; return this; } public ArrayList getRecIDBetween() { return RecIDBetween; } public SY_PrintGroupLogicalPrinterQuery setRecIDBetween(ArrayList value) { this.RecIDBetween = value; return this; } public ArrayList getRecIDIn() { return RecIDIn; } public SY_PrintGroupLogicalPrinterQuery setRecIDIn(ArrayList value) { this.RecIDIn = value; return this; } public ArrayList getRowHash() { return RowHash; } public SY_PrintGroupLogicalPrinterQuery setRowHash(ArrayList value) { this.RowHash = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public SY_PrintGroupLogicalPrinterQuery setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getLastSavedDateTimeGreaterThanOrEqualTo() { return LastSavedDateTimeGreaterThanOrEqualTo; } public SY_PrintGroupLogicalPrinterQuery setLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.LastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeGreaterThan() { return LastSavedDateTimeGreaterThan; } public SY_PrintGroupLogicalPrinterQuery setLastSavedDateTimeGreaterThan(Date value) { this.LastSavedDateTimeGreaterThan = value; return this; } public Date getLastSavedDateTimeLessThan() { return LastSavedDateTimeLessThan; } public SY_PrintGroupLogicalPrinterQuery setLastSavedDateTimeLessThan(Date value) { this.LastSavedDateTimeLessThan = value; return this; } public Date getLastSavedDateTimeLessThanOrEqualTo() { return LastSavedDateTimeLessThanOrEqualTo; } public SY_PrintGroupLogicalPrinterQuery setLastSavedDateTimeLessThanOrEqualTo(Date value) { this.LastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeNotEqualTo() { return LastSavedDateTimeNotEqualTo; } public SY_PrintGroupLogicalPrinterQuery setLastSavedDateTimeNotEqualTo(Date value) { this.LastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getLastSavedDateTimeBetween() { return LastSavedDateTimeBetween; } public SY_PrintGroupLogicalPrinterQuery setLastSavedDateTimeBetween(ArrayList value) { this.LastSavedDateTimeBetween = value; return this; } public ArrayList getLastSavedDateTimeIn() { return LastSavedDateTimeIn; } public SY_PrintGroupLogicalPrinterQuery setLastSavedDateTimeIn(ArrayList value) { this.LastSavedDateTimeIn = value; return this; } public Integer getItemNo() { return ItemNo; } public SY_PrintGroupLogicalPrinterQuery setItemNo(Integer value) { this.ItemNo = value; return this; } public Integer getItemNoGreaterThanOrEqualTo() { return ItemNoGreaterThanOrEqualTo; } public SY_PrintGroupLogicalPrinterQuery setItemNoGreaterThanOrEqualTo(Integer value) { this.ItemNoGreaterThanOrEqualTo = value; return this; } public Integer getItemNoGreaterThan() { return ItemNoGreaterThan; } public SY_PrintGroupLogicalPrinterQuery setItemNoGreaterThan(Integer value) { this.ItemNoGreaterThan = value; return this; } public Integer getItemNoLessThan() { return ItemNoLessThan; } public SY_PrintGroupLogicalPrinterQuery setItemNoLessThan(Integer value) { this.ItemNoLessThan = value; return this; } public Integer getItemNoLessThanOrEqualTo() { return ItemNoLessThanOrEqualTo; } public SY_PrintGroupLogicalPrinterQuery setItemNoLessThanOrEqualTo(Integer value) { this.ItemNoLessThanOrEqualTo = value; return this; } public Integer getItemNoNotEqualTo() { return ItemNoNotEqualTo; } public SY_PrintGroupLogicalPrinterQuery setItemNoNotEqualTo(Integer value) { this.ItemNoNotEqualTo = value; return this; } public ArrayList getItemNoBetween() { return ItemNoBetween; } public SY_PrintGroupLogicalPrinterQuery setItemNoBetween(ArrayList value) { this.ItemNoBetween = value; return this; } public ArrayList getItemNoIn() { return ItemNoIn; } public SY_PrintGroupLogicalPrinterQuery setItemNoIn(ArrayList value) { this.ItemNoIn = value; return this; } public String getSyPrintGroupRecID() { return SY_PrintGroup_RecID; } public SY_PrintGroupLogicalPrinterQuery setSyPrintGroupRecID(String value) { this.SY_PrintGroup_RecID = value; return this; } public String getSyPrintGroupRecIDStartsWith() { return SY_PrintGroup_RecIDStartsWith; } public SY_PrintGroupLogicalPrinterQuery setSyPrintGroupRecIDStartsWith(String value) { this.SY_PrintGroup_RecIDStartsWith = value; return this; } public String getSyPrintGroupRecIDEndsWith() { return SY_PrintGroup_RecIDEndsWith; } public SY_PrintGroupLogicalPrinterQuery setSyPrintGroupRecIDEndsWith(String value) { this.SY_PrintGroup_RecIDEndsWith = value; return this; } public String getSyPrintGroupRecIDContains() { return SY_PrintGroup_RecIDContains; } public SY_PrintGroupLogicalPrinterQuery setSyPrintGroupRecIDContains(String value) { this.SY_PrintGroup_RecIDContains = value; return this; } public String getSyPrintGroupRecIDLike() { return SY_PrintGroup_RecIDLike; } public SY_PrintGroupLogicalPrinterQuery setSyPrintGroupRecIDLike(String value) { this.SY_PrintGroup_RecIDLike = value; return this; } public ArrayList getSyPrintGroupRecIDBetween() { return SY_PrintGroup_RecIDBetween; } public SY_PrintGroupLogicalPrinterQuery setSyPrintGroupRecIDBetween(ArrayList value) { this.SY_PrintGroup_RecIDBetween = value; return this; } public ArrayList getSyPrintGroupRecIDIn() { return SY_PrintGroup_RecIDIn; } public SY_PrintGroupLogicalPrinterQuery setSyPrintGroupRecIDIn(ArrayList value) { this.SY_PrintGroup_RecIDIn = value; return this; } public String getName() { return Name; } public SY_PrintGroupLogicalPrinterQuery setName(String value) { this.Name = value; return this; } public String getNameStartsWith() { return NameStartsWith; } public SY_PrintGroupLogicalPrinterQuery setNameStartsWith(String value) { this.NameStartsWith = value; return this; } public String getNameEndsWith() { return NameEndsWith; } public SY_PrintGroupLogicalPrinterQuery setNameEndsWith(String value) { this.NameEndsWith = value; return this; } public String getNameContains() { return NameContains; } public SY_PrintGroupLogicalPrinterQuery setNameContains(String value) { this.NameContains = value; return this; } public String getNameLike() { return NameLike; } public SY_PrintGroupLogicalPrinterQuery setNameLike(String value) { this.NameLike = value; return this; } public ArrayList getNameBetween() { return NameBetween; } public SY_PrintGroupLogicalPrinterQuery setNameBetween(ArrayList value) { this.NameBetween = value; return this; } public ArrayList getNameIn() { return NameIn; } public SY_PrintGroupLogicalPrinterQuery setNameIn(ArrayList value) { this.NameIn = value; return this; } public String getPhysicalPrinterName() { return PhysicalPrinterName; } public SY_PrintGroupLogicalPrinterQuery setPhysicalPrinterName(String value) { this.PhysicalPrinterName = value; return this; } public String getPhysicalPrinterNameStartsWith() { return PhysicalPrinterNameStartsWith; } public SY_PrintGroupLogicalPrinterQuery setPhysicalPrinterNameStartsWith(String value) { this.PhysicalPrinterNameStartsWith = value; return this; } public String getPhysicalPrinterNameEndsWith() { return PhysicalPrinterNameEndsWith; } public SY_PrintGroupLogicalPrinterQuery setPhysicalPrinterNameEndsWith(String value) { this.PhysicalPrinterNameEndsWith = value; return this; } public String getPhysicalPrinterNameContains() { return PhysicalPrinterNameContains; } public SY_PrintGroupLogicalPrinterQuery setPhysicalPrinterNameContains(String value) { this.PhysicalPrinterNameContains = value; return this; } public String getPhysicalPrinterNameLike() { return PhysicalPrinterNameLike; } public SY_PrintGroupLogicalPrinterQuery setPhysicalPrinterNameLike(String value) { this.PhysicalPrinterNameLike = value; return this; } public ArrayList getPhysicalPrinterNameBetween() { return PhysicalPrinterNameBetween; } public SY_PrintGroupLogicalPrinterQuery setPhysicalPrinterNameBetween(ArrayList value) { this.PhysicalPrinterNameBetween = value; return this; } public ArrayList getPhysicalPrinterNameIn() { return PhysicalPrinterNameIn; } public SY_PrintGroupLogicalPrinterQuery setPhysicalPrinterNameIn(ArrayList value) { this.PhysicalPrinterNameIn = value; return this; } public String getDescription() { return Description; } public SY_PrintGroupLogicalPrinterQuery setDescription(String value) { this.Description = value; return this; } public String getDescriptionStartsWith() { return DescriptionStartsWith; } public SY_PrintGroupLogicalPrinterQuery setDescriptionStartsWith(String value) { this.DescriptionStartsWith = value; return this; } public String getDescriptionEndsWith() { return DescriptionEndsWith; } public SY_PrintGroupLogicalPrinterQuery setDescriptionEndsWith(String value) { this.DescriptionEndsWith = value; return this; } public String getDescriptionContains() { return DescriptionContains; } public SY_PrintGroupLogicalPrinterQuery setDescriptionContains(String value) { this.DescriptionContains = value; return this; } public String getDescriptionLike() { return DescriptionLike; } public SY_PrintGroupLogicalPrinterQuery setDescriptionLike(String value) { this.DescriptionLike = value; return this; } public ArrayList getDescriptionBetween() { return DescriptionBetween; } public SY_PrintGroupLogicalPrinterQuery setDescriptionBetween(ArrayList value) { this.DescriptionBetween = value; return this; } public ArrayList getDescriptionIn() { return DescriptionIn; } public SY_PrintGroupLogicalPrinterQuery setDescriptionIn(ArrayList value) { this.DescriptionIn = value; return this; } public Boolean getIsDefault() { return IsDefault; } public SY_PrintGroupLogicalPrinterQuery setIsDefault(Boolean value) { this.IsDefault = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class SY_RecentlyViewedQuery extends QueryDb implements IReturn> { public UUID RecID = null; public ArrayList RecIDIn = null; public String SY_Forms_ClassName = null; public String SY_Forms_ClassNameStartsWith = null; public String SY_Forms_ClassNameEndsWith = null; public String SY_Forms_ClassNameContains = null; public String SY_Forms_ClassNameLike = null; public ArrayList SY_Forms_ClassNameBetween = null; public ArrayList SY_Forms_ClassNameIn = null; public String HR_Staff_StaffID = null; public String HR_Staff_StaffIDStartsWith = null; public String HR_Staff_StaffIDEndsWith = null; public String HR_Staff_StaffIDContains = null; public String HR_Staff_StaffIDLike = null; public ArrayList HR_Staff_StaffIDBetween = null; public ArrayList HR_Staff_StaffIDIn = null; public String Document_RecID = null; public String Document_RecIDStartsWith = null; public String Document_RecIDEndsWith = null; public String Document_RecIDContains = null; public String Document_RecIDLike = null; public ArrayList Document_RecIDBetween = null; public ArrayList Document_RecIDIn = null; public String Document_DisplayText = null; public String Document_DisplayTextStartsWith = null; public String Document_DisplayTextEndsWith = null; public String Document_DisplayTextContains = null; public String Document_DisplayTextLike = null; public ArrayList Document_DisplayTextBetween = null; public ArrayList Document_DisplayTextIn = null; public Boolean IsPinned = null; public Date LastSavedDateTime = null; public Date LastSavedDateTimeGreaterThanOrEqualTo = null; public Date LastSavedDateTimeGreaterThan = null; public Date LastSavedDateTimeLessThan = null; public Date LastSavedDateTimeLessThanOrEqualTo = null; public Date LastSavedDateTimeNotEqualTo = null; public ArrayList LastSavedDateTimeBetween = null; public ArrayList LastSavedDateTimeIn = null; public UUID getRecID() { return RecID; } public SY_RecentlyViewedQuery setRecID(UUID value) { this.RecID = value; return this; } public ArrayList getRecIDIn() { return RecIDIn; } public SY_RecentlyViewedQuery setRecIDIn(ArrayList value) { this.RecIDIn = value; return this; } public String getSyFormsClassName() { return SY_Forms_ClassName; } public SY_RecentlyViewedQuery setSyFormsClassName(String value) { this.SY_Forms_ClassName = value; return this; } public String getSyFormsClassNameStartsWith() { return SY_Forms_ClassNameStartsWith; } public SY_RecentlyViewedQuery setSyFormsClassNameStartsWith(String value) { this.SY_Forms_ClassNameStartsWith = value; return this; } public String getSyFormsClassNameEndsWith() { return SY_Forms_ClassNameEndsWith; } public SY_RecentlyViewedQuery setSyFormsClassNameEndsWith(String value) { this.SY_Forms_ClassNameEndsWith = value; return this; } public String getSyFormsClassNameContains() { return SY_Forms_ClassNameContains; } public SY_RecentlyViewedQuery setSyFormsClassNameContains(String value) { this.SY_Forms_ClassNameContains = value; return this; } public String getSyFormsClassNameLike() { return SY_Forms_ClassNameLike; } public SY_RecentlyViewedQuery setSyFormsClassNameLike(String value) { this.SY_Forms_ClassNameLike = value; return this; } public ArrayList getSyFormsClassNameBetween() { return SY_Forms_ClassNameBetween; } public SY_RecentlyViewedQuery setSyFormsClassNameBetween(ArrayList value) { this.SY_Forms_ClassNameBetween = value; return this; } public ArrayList getSyFormsClassNameIn() { return SY_Forms_ClassNameIn; } public SY_RecentlyViewedQuery setSyFormsClassNameIn(ArrayList value) { this.SY_Forms_ClassNameIn = value; return this; } public String getHrStaffStaffID() { return HR_Staff_StaffID; } public SY_RecentlyViewedQuery setHrStaffStaffID(String value) { this.HR_Staff_StaffID = value; return this; } public String getHrStaffStaffIDStartsWith() { return HR_Staff_StaffIDStartsWith; } public SY_RecentlyViewedQuery setHrStaffStaffIDStartsWith(String value) { this.HR_Staff_StaffIDStartsWith = value; return this; } public String getHrStaffStaffIDEndsWith() { return HR_Staff_StaffIDEndsWith; } public SY_RecentlyViewedQuery setHrStaffStaffIDEndsWith(String value) { this.HR_Staff_StaffIDEndsWith = value; return this; } public String getHrStaffStaffIDContains() { return HR_Staff_StaffIDContains; } public SY_RecentlyViewedQuery setHrStaffStaffIDContains(String value) { this.HR_Staff_StaffIDContains = value; return this; } public String getHrStaffStaffIDLike() { return HR_Staff_StaffIDLike; } public SY_RecentlyViewedQuery setHrStaffStaffIDLike(String value) { this.HR_Staff_StaffIDLike = value; return this; } public ArrayList getHrStaffStaffIDBetween() { return HR_Staff_StaffIDBetween; } public SY_RecentlyViewedQuery setHrStaffStaffIDBetween(ArrayList value) { this.HR_Staff_StaffIDBetween = value; return this; } public ArrayList getHrStaffStaffIDIn() { return HR_Staff_StaffIDIn; } public SY_RecentlyViewedQuery setHrStaffStaffIDIn(ArrayList value) { this.HR_Staff_StaffIDIn = value; return this; } public String getDocumentRecID() { return Document_RecID; } public SY_RecentlyViewedQuery setDocumentRecID(String value) { this.Document_RecID = value; return this; } public String getDocumentRecIDStartsWith() { return Document_RecIDStartsWith; } public SY_RecentlyViewedQuery setDocumentRecIDStartsWith(String value) { this.Document_RecIDStartsWith = value; return this; } public String getDocumentRecIDEndsWith() { return Document_RecIDEndsWith; } public SY_RecentlyViewedQuery setDocumentRecIDEndsWith(String value) { this.Document_RecIDEndsWith = value; return this; } public String getDocumentRecIDContains() { return Document_RecIDContains; } public SY_RecentlyViewedQuery setDocumentRecIDContains(String value) { this.Document_RecIDContains = value; return this; } public String getDocumentRecIDLike() { return Document_RecIDLike; } public SY_RecentlyViewedQuery setDocumentRecIDLike(String value) { this.Document_RecIDLike = value; return this; } public ArrayList getDocumentRecIDBetween() { return Document_RecIDBetween; } public SY_RecentlyViewedQuery setDocumentRecIDBetween(ArrayList value) { this.Document_RecIDBetween = value; return this; } public ArrayList getDocumentRecIDIn() { return Document_RecIDIn; } public SY_RecentlyViewedQuery setDocumentRecIDIn(ArrayList value) { this.Document_RecIDIn = value; return this; } public String getDocumentDisplayText() { return Document_DisplayText; } public SY_RecentlyViewedQuery setDocumentDisplayText(String value) { this.Document_DisplayText = value; return this; } public String getDocumentDisplayTextStartsWith() { return Document_DisplayTextStartsWith; } public SY_RecentlyViewedQuery setDocumentDisplayTextStartsWith(String value) { this.Document_DisplayTextStartsWith = value; return this; } public String getDocumentDisplayTextEndsWith() { return Document_DisplayTextEndsWith; } public SY_RecentlyViewedQuery setDocumentDisplayTextEndsWith(String value) { this.Document_DisplayTextEndsWith = value; return this; } public String getDocumentDisplayTextContains() { return Document_DisplayTextContains; } public SY_RecentlyViewedQuery setDocumentDisplayTextContains(String value) { this.Document_DisplayTextContains = value; return this; } public String getDocumentDisplayTextLike() { return Document_DisplayTextLike; } public SY_RecentlyViewedQuery setDocumentDisplayTextLike(String value) { this.Document_DisplayTextLike = value; return this; } public ArrayList getDocumentDisplayTextBetween() { return Document_DisplayTextBetween; } public SY_RecentlyViewedQuery setDocumentDisplayTextBetween(ArrayList value) { this.Document_DisplayTextBetween = value; return this; } public ArrayList getDocumentDisplayTextIn() { return Document_DisplayTextIn; } public SY_RecentlyViewedQuery setDocumentDisplayTextIn(ArrayList value) { this.Document_DisplayTextIn = value; return this; } public Boolean getIsPinned() { return IsPinned; } public SY_RecentlyViewedQuery setIsPinned(Boolean value) { this.IsPinned = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public SY_RecentlyViewedQuery setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getLastSavedDateTimeGreaterThanOrEqualTo() { return LastSavedDateTimeGreaterThanOrEqualTo; } public SY_RecentlyViewedQuery setLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.LastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeGreaterThan() { return LastSavedDateTimeGreaterThan; } public SY_RecentlyViewedQuery setLastSavedDateTimeGreaterThan(Date value) { this.LastSavedDateTimeGreaterThan = value; return this; } public Date getLastSavedDateTimeLessThan() { return LastSavedDateTimeLessThan; } public SY_RecentlyViewedQuery setLastSavedDateTimeLessThan(Date value) { this.LastSavedDateTimeLessThan = value; return this; } public Date getLastSavedDateTimeLessThanOrEqualTo() { return LastSavedDateTimeLessThanOrEqualTo; } public SY_RecentlyViewedQuery setLastSavedDateTimeLessThanOrEqualTo(Date value) { this.LastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeNotEqualTo() { return LastSavedDateTimeNotEqualTo; } public SY_RecentlyViewedQuery setLastSavedDateTimeNotEqualTo(Date value) { this.LastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getLastSavedDateTimeBetween() { return LastSavedDateTimeBetween; } public SY_RecentlyViewedQuery setLastSavedDateTimeBetween(ArrayList value) { this.LastSavedDateTimeBetween = value; return this; } public ArrayList getLastSavedDateTimeIn() { return LastSavedDateTimeIn; } public SY_RecentlyViewedQuery setLastSavedDateTimeIn(ArrayList value) { this.LastSavedDateTimeIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class SY_RemittanceAdviceEmailTemplatesQuery extends QueryDb implements IReturn> { public String RecID = null; public String RecIDStartsWith = null; public String RecIDEndsWith = null; public String RecIDContains = null; public String RecIDLike = null; public ArrayList RecIDBetween = null; public ArrayList RecIDIn = null; public String Name = null; public String NameStartsWith = null; public String NameEndsWith = null; public String NameContains = null; public String NameLike = null; public ArrayList NameBetween = null; public ArrayList NameIn = null; public String Header = null; public String HeaderStartsWith = null; public String HeaderEndsWith = null; public String HeaderContains = null; public String HeaderLike = null; public ArrayList HeaderBetween = null; public ArrayList HeaderIn = null; public String Body = null; public String BodyStartsWith = null; public String BodyEndsWith = null; public String BodyContains = null; public String BodyLike = null; public ArrayList BodyBetween = null; public ArrayList BodyIn = null; public String Footer = null; public String FooterStartsWith = null; public String FooterEndsWith = null; public String FooterContains = null; public String FooterLike = null; public ArrayList FooterBetween = null; public ArrayList FooterIn = null; public String ToField = null; public String ToFieldStartsWith = null; public String ToFieldEndsWith = null; public String ToFieldContains = null; public String ToFieldLike = null; public ArrayList ToFieldBetween = null; public ArrayList ToFieldIn = null; public String FromField = null; public String FromFieldStartsWith = null; public String FromFieldEndsWith = null; public String FromFieldContains = null; public String FromFieldLike = null; public ArrayList FromFieldBetween = null; public ArrayList FromFieldIn = null; public String CCField = null; public String CCFieldStartsWith = null; public String CCFieldEndsWith = null; public String CCFieldContains = null; public String CCFieldLike = null; public ArrayList CCFieldBetween = null; public ArrayList CCFieldIn = null; public String BCCField = null; public String BCCFieldStartsWith = null; public String BCCFieldEndsWith = null; public String BCCFieldContains = null; public String BCCFieldLike = null; public ArrayList BCCFieldBetween = null; public ArrayList BCCFieldIn = null; public String Subject = null; public String SubjectStartsWith = null; public String SubjectEndsWith = null; public String SubjectContains = null; public String SubjectLike = null; public ArrayList SubjectBetween = null; public ArrayList SubjectIn = null; public Boolean RequestReadReceipt = null; public ArrayList RowHash = null; public String getRecID() { return RecID; } public SY_RemittanceAdviceEmailTemplatesQuery setRecID(String value) { this.RecID = value; return this; } public String getRecIDStartsWith() { return RecIDStartsWith; } public SY_RemittanceAdviceEmailTemplatesQuery setRecIDStartsWith(String value) { this.RecIDStartsWith = value; return this; } public String getRecIDEndsWith() { return RecIDEndsWith; } public SY_RemittanceAdviceEmailTemplatesQuery setRecIDEndsWith(String value) { this.RecIDEndsWith = value; return this; } public String getRecIDContains() { return RecIDContains; } public SY_RemittanceAdviceEmailTemplatesQuery setRecIDContains(String value) { this.RecIDContains = value; return this; } public String getRecIDLike() { return RecIDLike; } public SY_RemittanceAdviceEmailTemplatesQuery setRecIDLike(String value) { this.RecIDLike = value; return this; } public ArrayList getRecIDBetween() { return RecIDBetween; } public SY_RemittanceAdviceEmailTemplatesQuery setRecIDBetween(ArrayList value) { this.RecIDBetween = value; return this; } public ArrayList getRecIDIn() { return RecIDIn; } public SY_RemittanceAdviceEmailTemplatesQuery setRecIDIn(ArrayList value) { this.RecIDIn = value; return this; } public String getName() { return Name; } public SY_RemittanceAdviceEmailTemplatesQuery setName(String value) { this.Name = value; return this; } public String getNameStartsWith() { return NameStartsWith; } public SY_RemittanceAdviceEmailTemplatesQuery setNameStartsWith(String value) { this.NameStartsWith = value; return this; } public String getNameEndsWith() { return NameEndsWith; } public SY_RemittanceAdviceEmailTemplatesQuery setNameEndsWith(String value) { this.NameEndsWith = value; return this; } public String getNameContains() { return NameContains; } public SY_RemittanceAdviceEmailTemplatesQuery setNameContains(String value) { this.NameContains = value; return this; } public String getNameLike() { return NameLike; } public SY_RemittanceAdviceEmailTemplatesQuery setNameLike(String value) { this.NameLike = value; return this; } public ArrayList getNameBetween() { return NameBetween; } public SY_RemittanceAdviceEmailTemplatesQuery setNameBetween(ArrayList value) { this.NameBetween = value; return this; } public ArrayList getNameIn() { return NameIn; } public SY_RemittanceAdviceEmailTemplatesQuery setNameIn(ArrayList value) { this.NameIn = value; return this; } public String getHeader() { return Header; } public SY_RemittanceAdviceEmailTemplatesQuery setHeader(String value) { this.Header = value; return this; } public String getHeaderStartsWith() { return HeaderStartsWith; } public SY_RemittanceAdviceEmailTemplatesQuery setHeaderStartsWith(String value) { this.HeaderStartsWith = value; return this; } public String getHeaderEndsWith() { return HeaderEndsWith; } public SY_RemittanceAdviceEmailTemplatesQuery setHeaderEndsWith(String value) { this.HeaderEndsWith = value; return this; } public String getHeaderContains() { return HeaderContains; } public SY_RemittanceAdviceEmailTemplatesQuery setHeaderContains(String value) { this.HeaderContains = value; return this; } public String getHeaderLike() { return HeaderLike; } public SY_RemittanceAdviceEmailTemplatesQuery setHeaderLike(String value) { this.HeaderLike = value; return this; } public ArrayList getHeaderBetween() { return HeaderBetween; } public SY_RemittanceAdviceEmailTemplatesQuery setHeaderBetween(ArrayList value) { this.HeaderBetween = value; return this; } public ArrayList getHeaderIn() { return HeaderIn; } public SY_RemittanceAdviceEmailTemplatesQuery setHeaderIn(ArrayList value) { this.HeaderIn = value; return this; } public String getBody() { return Body; } public SY_RemittanceAdviceEmailTemplatesQuery setBody(String value) { this.Body = value; return this; } public String getBodyStartsWith() { return BodyStartsWith; } public SY_RemittanceAdviceEmailTemplatesQuery setBodyStartsWith(String value) { this.BodyStartsWith = value; return this; } public String getBodyEndsWith() { return BodyEndsWith; } public SY_RemittanceAdviceEmailTemplatesQuery setBodyEndsWith(String value) { this.BodyEndsWith = value; return this; } public String getBodyContains() { return BodyContains; } public SY_RemittanceAdviceEmailTemplatesQuery setBodyContains(String value) { this.BodyContains = value; return this; } public String getBodyLike() { return BodyLike; } public SY_RemittanceAdviceEmailTemplatesQuery setBodyLike(String value) { this.BodyLike = value; return this; } public ArrayList getBodyBetween() { return BodyBetween; } public SY_RemittanceAdviceEmailTemplatesQuery setBodyBetween(ArrayList value) { this.BodyBetween = value; return this; } public ArrayList getBodyIn() { return BodyIn; } public SY_RemittanceAdviceEmailTemplatesQuery setBodyIn(ArrayList value) { this.BodyIn = value; return this; } public String getFooter() { return Footer; } public SY_RemittanceAdviceEmailTemplatesQuery setFooter(String value) { this.Footer = value; return this; } public String getFooterStartsWith() { return FooterStartsWith; } public SY_RemittanceAdviceEmailTemplatesQuery setFooterStartsWith(String value) { this.FooterStartsWith = value; return this; } public String getFooterEndsWith() { return FooterEndsWith; } public SY_RemittanceAdviceEmailTemplatesQuery setFooterEndsWith(String value) { this.FooterEndsWith = value; return this; } public String getFooterContains() { return FooterContains; } public SY_RemittanceAdviceEmailTemplatesQuery setFooterContains(String value) { this.FooterContains = value; return this; } public String getFooterLike() { return FooterLike; } public SY_RemittanceAdviceEmailTemplatesQuery setFooterLike(String value) { this.FooterLike = value; return this; } public ArrayList getFooterBetween() { return FooterBetween; } public SY_RemittanceAdviceEmailTemplatesQuery setFooterBetween(ArrayList value) { this.FooterBetween = value; return this; } public ArrayList getFooterIn() { return FooterIn; } public SY_RemittanceAdviceEmailTemplatesQuery setFooterIn(ArrayList value) { this.FooterIn = value; return this; } public String getToField() { return ToField; } public SY_RemittanceAdviceEmailTemplatesQuery setToField(String value) { this.ToField = value; return this; } public String getToFieldStartsWith() { return ToFieldStartsWith; } public SY_RemittanceAdviceEmailTemplatesQuery setToFieldStartsWith(String value) { this.ToFieldStartsWith = value; return this; } public String getToFieldEndsWith() { return ToFieldEndsWith; } public SY_RemittanceAdviceEmailTemplatesQuery setToFieldEndsWith(String value) { this.ToFieldEndsWith = value; return this; } public String getToFieldContains() { return ToFieldContains; } public SY_RemittanceAdviceEmailTemplatesQuery setToFieldContains(String value) { this.ToFieldContains = value; return this; } public String getToFieldLike() { return ToFieldLike; } public SY_RemittanceAdviceEmailTemplatesQuery setToFieldLike(String value) { this.ToFieldLike = value; return this; } public ArrayList getToFieldBetween() { return ToFieldBetween; } public SY_RemittanceAdviceEmailTemplatesQuery setToFieldBetween(ArrayList value) { this.ToFieldBetween = value; return this; } public ArrayList getToFieldIn() { return ToFieldIn; } public SY_RemittanceAdviceEmailTemplatesQuery setToFieldIn(ArrayList value) { this.ToFieldIn = value; return this; } public String getFromField() { return FromField; } public SY_RemittanceAdviceEmailTemplatesQuery setFromField(String value) { this.FromField = value; return this; } public String getFromFieldStartsWith() { return FromFieldStartsWith; } public SY_RemittanceAdviceEmailTemplatesQuery setFromFieldStartsWith(String value) { this.FromFieldStartsWith = value; return this; } public String getFromFieldEndsWith() { return FromFieldEndsWith; } public SY_RemittanceAdviceEmailTemplatesQuery setFromFieldEndsWith(String value) { this.FromFieldEndsWith = value; return this; } public String getFromFieldContains() { return FromFieldContains; } public SY_RemittanceAdviceEmailTemplatesQuery setFromFieldContains(String value) { this.FromFieldContains = value; return this; } public String getFromFieldLike() { return FromFieldLike; } public SY_RemittanceAdviceEmailTemplatesQuery setFromFieldLike(String value) { this.FromFieldLike = value; return this; } public ArrayList getFromFieldBetween() { return FromFieldBetween; } public SY_RemittanceAdviceEmailTemplatesQuery setFromFieldBetween(ArrayList value) { this.FromFieldBetween = value; return this; } public ArrayList getFromFieldIn() { return FromFieldIn; } public SY_RemittanceAdviceEmailTemplatesQuery setFromFieldIn(ArrayList value) { this.FromFieldIn = value; return this; } public String getCcField() { return CCField; } public SY_RemittanceAdviceEmailTemplatesQuery setCcField(String value) { this.CCField = value; return this; } public String getCcFieldStartsWith() { return CCFieldStartsWith; } public SY_RemittanceAdviceEmailTemplatesQuery setCcFieldStartsWith(String value) { this.CCFieldStartsWith = value; return this; } public String getCcFieldEndsWith() { return CCFieldEndsWith; } public SY_RemittanceAdviceEmailTemplatesQuery setCcFieldEndsWith(String value) { this.CCFieldEndsWith = value; return this; } public String getCcFieldContains() { return CCFieldContains; } public SY_RemittanceAdviceEmailTemplatesQuery setCcFieldContains(String value) { this.CCFieldContains = value; return this; } public String getCcFieldLike() { return CCFieldLike; } public SY_RemittanceAdviceEmailTemplatesQuery setCcFieldLike(String value) { this.CCFieldLike = value; return this; } public ArrayList getCcFieldBetween() { return CCFieldBetween; } public SY_RemittanceAdviceEmailTemplatesQuery setCcFieldBetween(ArrayList value) { this.CCFieldBetween = value; return this; } public ArrayList getCcFieldIn() { return CCFieldIn; } public SY_RemittanceAdviceEmailTemplatesQuery setCcFieldIn(ArrayList value) { this.CCFieldIn = value; return this; } public String getBccField() { return BCCField; } public SY_RemittanceAdviceEmailTemplatesQuery setBccField(String value) { this.BCCField = value; return this; } public String getBccFieldStartsWith() { return BCCFieldStartsWith; } public SY_RemittanceAdviceEmailTemplatesQuery setBccFieldStartsWith(String value) { this.BCCFieldStartsWith = value; return this; } public String getBccFieldEndsWith() { return BCCFieldEndsWith; } public SY_RemittanceAdviceEmailTemplatesQuery setBccFieldEndsWith(String value) { this.BCCFieldEndsWith = value; return this; } public String getBccFieldContains() { return BCCFieldContains; } public SY_RemittanceAdviceEmailTemplatesQuery setBccFieldContains(String value) { this.BCCFieldContains = value; return this; } public String getBccFieldLike() { return BCCFieldLike; } public SY_RemittanceAdviceEmailTemplatesQuery setBccFieldLike(String value) { this.BCCFieldLike = value; return this; } public ArrayList getBccFieldBetween() { return BCCFieldBetween; } public SY_RemittanceAdviceEmailTemplatesQuery setBccFieldBetween(ArrayList value) { this.BCCFieldBetween = value; return this; } public ArrayList getBccFieldIn() { return BCCFieldIn; } public SY_RemittanceAdviceEmailTemplatesQuery setBccFieldIn(ArrayList value) { this.BCCFieldIn = value; return this; } public String getSubject() { return Subject; } public SY_RemittanceAdviceEmailTemplatesQuery setSubject(String value) { this.Subject = value; return this; } public String getSubjectStartsWith() { return SubjectStartsWith; } public SY_RemittanceAdviceEmailTemplatesQuery setSubjectStartsWith(String value) { this.SubjectStartsWith = value; return this; } public String getSubjectEndsWith() { return SubjectEndsWith; } public SY_RemittanceAdviceEmailTemplatesQuery setSubjectEndsWith(String value) { this.SubjectEndsWith = value; return this; } public String getSubjectContains() { return SubjectContains; } public SY_RemittanceAdviceEmailTemplatesQuery setSubjectContains(String value) { this.SubjectContains = value; return this; } public String getSubjectLike() { return SubjectLike; } public SY_RemittanceAdviceEmailTemplatesQuery setSubjectLike(String value) { this.SubjectLike = value; return this; } public ArrayList getSubjectBetween() { return SubjectBetween; } public SY_RemittanceAdviceEmailTemplatesQuery setSubjectBetween(ArrayList value) { this.SubjectBetween = value; return this; } public ArrayList getSubjectIn() { return SubjectIn; } public SY_RemittanceAdviceEmailTemplatesQuery setSubjectIn(ArrayList value) { this.SubjectIn = value; return this; } public Boolean isRequestReadReceipt() { return RequestReadReceipt; } public SY_RemittanceAdviceEmailTemplatesQuery setRequestReadReceipt(Boolean value) { this.RequestReadReceipt = value; return this; } public ArrayList getRowHash() { return RowHash; } public SY_RemittanceAdviceEmailTemplatesQuery setRowHash(ArrayList value) { this.RowHash = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @Route(Path="/Queries/SY_Report", Verbs="GET") @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class SY_ReportQuery extends QueryDb implements IReturn> { public String RecID = null; public String RecIDStartsWith = null; public String RecIDEndsWith = null; public String RecIDContains = null; public String RecIDLike = null; public ArrayList RecIDBetween = null; public ArrayList RecIDIn = null; public String FileName = null; public String FileNameStartsWith = null; public String FileNameEndsWith = null; public String FileNameContains = null; public String FileNameLike = null; public ArrayList FileNameBetween = null; public ArrayList FileNameIn = null; public String Title = null; public String TitleStartsWith = null; public String TitleEndsWith = null; public String TitleContains = null; public String TitleLike = null; public ArrayList TitleBetween = null; public ArrayList TitleIn = null; public String Description = null; public String DescriptionStartsWith = null; public String DescriptionEndsWith = null; public String DescriptionContains = null; public String DescriptionLike = null; public ArrayList DescriptionBetween = null; public ArrayList DescriptionIn = null; public String Author = null; public String AuthorStartsWith = null; public String AuthorEndsWith = null; public String AuthorContains = null; public String AuthorLike = null; public ArrayList AuthorBetween = null; public ArrayList AuthorIn = null; public String SY_ReportSection_RecID = null; public String SY_ReportSection_RecIDStartsWith = null; public String SY_ReportSection_RecIDEndsWith = null; public String SY_ReportSection_RecIDContains = null; public String SY_ReportSection_RecIDLike = null; public ArrayList SY_ReportSection_RecIDBetween = null; public ArrayList SY_ReportSection_RecIDIn = null; public Short ReportType = null; public Short ReportTypeGreaterThanOrEqualTo = null; public Short ReportTypeGreaterThan = null; public Short ReportTypeLessThan = null; public Short ReportTypeLessThanOrEqualTo = null; public Short ReportTypeNotEqualTo = null; public ArrayList ReportTypeBetween = null; public ArrayList ReportTypeIn = null; public Boolean IsEnabled = null; public ArrayList FileBinary = null; public String FileHash = null; public String FileHashStartsWith = null; public String FileHashEndsWith = null; public String FileHashContains = null; public String FileHashLike = null; public ArrayList FileHashBetween = null; public ArrayList FileHashIn = null; public String Comment = null; public String CommentStartsWith = null; public String CommentEndsWith = null; public String CommentContains = null; public String CommentLike = null; public ArrayList CommentBetween = null; public ArrayList CommentIn = null; public Integer ItemNo = null; public Integer ItemNoGreaterThanOrEqualTo = null; public Integer ItemNoGreaterThan = null; public Integer ItemNoLessThan = null; public Integer ItemNoLessThanOrEqualTo = null; public Integer ItemNoNotEqualTo = null; public ArrayList ItemNoBetween = null; public ArrayList ItemNoIn = null; public Date LastSavedDateTime = null; public Date LastSavedDateTimeGreaterThanOrEqualTo = null; public Date LastSavedDateTimeGreaterThan = null; public Date LastSavedDateTimeLessThan = null; public Date LastSavedDateTimeLessThanOrEqualTo = null; public Date LastSavedDateTimeNotEqualTo = null; public ArrayList LastSavedDateTimeBetween = null; public ArrayList LastSavedDateTimeIn = null; public ArrayList RowHash = null; public Boolean IsReadOnly = null; public String getRecID() { return RecID; } public SY_ReportQuery setRecID(String value) { this.RecID = value; return this; } public String getRecIDStartsWith() { return RecIDStartsWith; } public SY_ReportQuery setRecIDStartsWith(String value) { this.RecIDStartsWith = value; return this; } public String getRecIDEndsWith() { return RecIDEndsWith; } public SY_ReportQuery setRecIDEndsWith(String value) { this.RecIDEndsWith = value; return this; } public String getRecIDContains() { return RecIDContains; } public SY_ReportQuery setRecIDContains(String value) { this.RecIDContains = value; return this; } public String getRecIDLike() { return RecIDLike; } public SY_ReportQuery setRecIDLike(String value) { this.RecIDLike = value; return this; } public ArrayList getRecIDBetween() { return RecIDBetween; } public SY_ReportQuery setRecIDBetween(ArrayList value) { this.RecIDBetween = value; return this; } public ArrayList getRecIDIn() { return RecIDIn; } public SY_ReportQuery setRecIDIn(ArrayList value) { this.RecIDIn = value; return this; } public String getFileName() { return FileName; } public SY_ReportQuery setFileName(String value) { this.FileName = value; return this; } public String getFileNameStartsWith() { return FileNameStartsWith; } public SY_ReportQuery setFileNameStartsWith(String value) { this.FileNameStartsWith = value; return this; } public String getFileNameEndsWith() { return FileNameEndsWith; } public SY_ReportQuery setFileNameEndsWith(String value) { this.FileNameEndsWith = value; return this; } public String getFileNameContains() { return FileNameContains; } public SY_ReportQuery setFileNameContains(String value) { this.FileNameContains = value; return this; } public String getFileNameLike() { return FileNameLike; } public SY_ReportQuery setFileNameLike(String value) { this.FileNameLike = value; return this; } public ArrayList getFileNameBetween() { return FileNameBetween; } public SY_ReportQuery setFileNameBetween(ArrayList value) { this.FileNameBetween = value; return this; } public ArrayList getFileNameIn() { return FileNameIn; } public SY_ReportQuery setFileNameIn(ArrayList value) { this.FileNameIn = value; return this; } public String getTitle() { return Title; } public SY_ReportQuery setTitle(String value) { this.Title = value; return this; } public String getTitleStartsWith() { return TitleStartsWith; } public SY_ReportQuery setTitleStartsWith(String value) { this.TitleStartsWith = value; return this; } public String getTitleEndsWith() { return TitleEndsWith; } public SY_ReportQuery setTitleEndsWith(String value) { this.TitleEndsWith = value; return this; } public String getTitleContains() { return TitleContains; } public SY_ReportQuery setTitleContains(String value) { this.TitleContains = value; return this; } public String getTitleLike() { return TitleLike; } public SY_ReportQuery setTitleLike(String value) { this.TitleLike = value; return this; } public ArrayList getTitleBetween() { return TitleBetween; } public SY_ReportQuery setTitleBetween(ArrayList value) { this.TitleBetween = value; return this; } public ArrayList getTitleIn() { return TitleIn; } public SY_ReportQuery setTitleIn(ArrayList value) { this.TitleIn = value; return this; } public String getDescription() { return Description; } public SY_ReportQuery setDescription(String value) { this.Description = value; return this; } public String getDescriptionStartsWith() { return DescriptionStartsWith; } public SY_ReportQuery setDescriptionStartsWith(String value) { this.DescriptionStartsWith = value; return this; } public String getDescriptionEndsWith() { return DescriptionEndsWith; } public SY_ReportQuery setDescriptionEndsWith(String value) { this.DescriptionEndsWith = value; return this; } public String getDescriptionContains() { return DescriptionContains; } public SY_ReportQuery setDescriptionContains(String value) { this.DescriptionContains = value; return this; } public String getDescriptionLike() { return DescriptionLike; } public SY_ReportQuery setDescriptionLike(String value) { this.DescriptionLike = value; return this; } public ArrayList getDescriptionBetween() { return DescriptionBetween; } public SY_ReportQuery setDescriptionBetween(ArrayList value) { this.DescriptionBetween = value; return this; } public ArrayList getDescriptionIn() { return DescriptionIn; } public SY_ReportQuery setDescriptionIn(ArrayList value) { this.DescriptionIn = value; return this; } public String getAuthor() { return Author; } public SY_ReportQuery setAuthor(String value) { this.Author = value; return this; } public String getAuthorStartsWith() { return AuthorStartsWith; } public SY_ReportQuery setAuthorStartsWith(String value) { this.AuthorStartsWith = value; return this; } public String getAuthorEndsWith() { return AuthorEndsWith; } public SY_ReportQuery setAuthorEndsWith(String value) { this.AuthorEndsWith = value; return this; } public String getAuthorContains() { return AuthorContains; } public SY_ReportQuery setAuthorContains(String value) { this.AuthorContains = value; return this; } public String getAuthorLike() { return AuthorLike; } public SY_ReportQuery setAuthorLike(String value) { this.AuthorLike = value; return this; } public ArrayList getAuthorBetween() { return AuthorBetween; } public SY_ReportQuery setAuthorBetween(ArrayList value) { this.AuthorBetween = value; return this; } public ArrayList getAuthorIn() { return AuthorIn; } public SY_ReportQuery setAuthorIn(ArrayList value) { this.AuthorIn = value; return this; } public String getSyReportSectionRecID() { return SY_ReportSection_RecID; } public SY_ReportQuery setSyReportSectionRecID(String value) { this.SY_ReportSection_RecID = value; return this; } public String getSyReportSectionRecIDStartsWith() { return SY_ReportSection_RecIDStartsWith; } public SY_ReportQuery setSyReportSectionRecIDStartsWith(String value) { this.SY_ReportSection_RecIDStartsWith = value; return this; } public String getSyReportSectionRecIDEndsWith() { return SY_ReportSection_RecIDEndsWith; } public SY_ReportQuery setSyReportSectionRecIDEndsWith(String value) { this.SY_ReportSection_RecIDEndsWith = value; return this; } public String getSyReportSectionRecIDContains() { return SY_ReportSection_RecIDContains; } public SY_ReportQuery setSyReportSectionRecIDContains(String value) { this.SY_ReportSection_RecIDContains = value; return this; } public String getSyReportSectionRecIDLike() { return SY_ReportSection_RecIDLike; } public SY_ReportQuery setSyReportSectionRecIDLike(String value) { this.SY_ReportSection_RecIDLike = value; return this; } public ArrayList getSyReportSectionRecIDBetween() { return SY_ReportSection_RecIDBetween; } public SY_ReportQuery setSyReportSectionRecIDBetween(ArrayList value) { this.SY_ReportSection_RecIDBetween = value; return this; } public ArrayList getSyReportSectionRecIDIn() { return SY_ReportSection_RecIDIn; } public SY_ReportQuery setSyReportSectionRecIDIn(ArrayList value) { this.SY_ReportSection_RecIDIn = value; return this; } public Short getReportType() { return ReportType; } public SY_ReportQuery setReportType(Short value) { this.ReportType = value; return this; } public Short getReportTypeGreaterThanOrEqualTo() { return ReportTypeGreaterThanOrEqualTo; } public SY_ReportQuery setReportTypeGreaterThanOrEqualTo(Short value) { this.ReportTypeGreaterThanOrEqualTo = value; return this; } public Short getReportTypeGreaterThan() { return ReportTypeGreaterThan; } public SY_ReportQuery setReportTypeGreaterThan(Short value) { this.ReportTypeGreaterThan = value; return this; } public Short getReportTypeLessThan() { return ReportTypeLessThan; } public SY_ReportQuery setReportTypeLessThan(Short value) { this.ReportTypeLessThan = value; return this; } public Short getReportTypeLessThanOrEqualTo() { return ReportTypeLessThanOrEqualTo; } public SY_ReportQuery setReportTypeLessThanOrEqualTo(Short value) { this.ReportTypeLessThanOrEqualTo = value; return this; } public Short getReportTypeNotEqualTo() { return ReportTypeNotEqualTo; } public SY_ReportQuery setReportTypeNotEqualTo(Short value) { this.ReportTypeNotEqualTo = value; return this; } public ArrayList getReportTypeBetween() { return ReportTypeBetween; } public SY_ReportQuery setReportTypeBetween(ArrayList value) { this.ReportTypeBetween = value; return this; } public ArrayList getReportTypeIn() { return ReportTypeIn; } public SY_ReportQuery setReportTypeIn(ArrayList value) { this.ReportTypeIn = value; return this; } public Boolean getIsEnabled() { return IsEnabled; } public SY_ReportQuery setIsEnabled(Boolean value) { this.IsEnabled = value; return this; } public ArrayList getFileBinary() { return FileBinary; } public SY_ReportQuery setFileBinary(ArrayList value) { this.FileBinary = value; return this; } public String getFileHash() { return FileHash; } public SY_ReportQuery setFileHash(String value) { this.FileHash = value; return this; } public String getFileHashStartsWith() { return FileHashStartsWith; } public SY_ReportQuery setFileHashStartsWith(String value) { this.FileHashStartsWith = value; return this; } public String getFileHashEndsWith() { return FileHashEndsWith; } public SY_ReportQuery setFileHashEndsWith(String value) { this.FileHashEndsWith = value; return this; } public String getFileHashContains() { return FileHashContains; } public SY_ReportQuery setFileHashContains(String value) { this.FileHashContains = value; return this; } public String getFileHashLike() { return FileHashLike; } public SY_ReportQuery setFileHashLike(String value) { this.FileHashLike = value; return this; } public ArrayList getFileHashBetween() { return FileHashBetween; } public SY_ReportQuery setFileHashBetween(ArrayList value) { this.FileHashBetween = value; return this; } public ArrayList getFileHashIn() { return FileHashIn; } public SY_ReportQuery setFileHashIn(ArrayList value) { this.FileHashIn = value; return this; } public String getComment() { return Comment; } public SY_ReportQuery setComment(String value) { this.Comment = value; return this; } public String getCommentStartsWith() { return CommentStartsWith; } public SY_ReportQuery setCommentStartsWith(String value) { this.CommentStartsWith = value; return this; } public String getCommentEndsWith() { return CommentEndsWith; } public SY_ReportQuery setCommentEndsWith(String value) { this.CommentEndsWith = value; return this; } public String getCommentContains() { return CommentContains; } public SY_ReportQuery setCommentContains(String value) { this.CommentContains = value; return this; } public String getCommentLike() { return CommentLike; } public SY_ReportQuery setCommentLike(String value) { this.CommentLike = value; return this; } public ArrayList getCommentBetween() { return CommentBetween; } public SY_ReportQuery setCommentBetween(ArrayList value) { this.CommentBetween = value; return this; } public ArrayList getCommentIn() { return CommentIn; } public SY_ReportQuery setCommentIn(ArrayList value) { this.CommentIn = value; return this; } public Integer getItemNo() { return ItemNo; } public SY_ReportQuery setItemNo(Integer value) { this.ItemNo = value; return this; } public Integer getItemNoGreaterThanOrEqualTo() { return ItemNoGreaterThanOrEqualTo; } public SY_ReportQuery setItemNoGreaterThanOrEqualTo(Integer value) { this.ItemNoGreaterThanOrEqualTo = value; return this; } public Integer getItemNoGreaterThan() { return ItemNoGreaterThan; } public SY_ReportQuery setItemNoGreaterThan(Integer value) { this.ItemNoGreaterThan = value; return this; } public Integer getItemNoLessThan() { return ItemNoLessThan; } public SY_ReportQuery setItemNoLessThan(Integer value) { this.ItemNoLessThan = value; return this; } public Integer getItemNoLessThanOrEqualTo() { return ItemNoLessThanOrEqualTo; } public SY_ReportQuery setItemNoLessThanOrEqualTo(Integer value) { this.ItemNoLessThanOrEqualTo = value; return this; } public Integer getItemNoNotEqualTo() { return ItemNoNotEqualTo; } public SY_ReportQuery setItemNoNotEqualTo(Integer value) { this.ItemNoNotEqualTo = value; return this; } public ArrayList getItemNoBetween() { return ItemNoBetween; } public SY_ReportQuery setItemNoBetween(ArrayList value) { this.ItemNoBetween = value; return this; } public ArrayList getItemNoIn() { return ItemNoIn; } public SY_ReportQuery setItemNoIn(ArrayList value) { this.ItemNoIn = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public SY_ReportQuery setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getLastSavedDateTimeGreaterThanOrEqualTo() { return LastSavedDateTimeGreaterThanOrEqualTo; } public SY_ReportQuery setLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.LastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeGreaterThan() { return LastSavedDateTimeGreaterThan; } public SY_ReportQuery setLastSavedDateTimeGreaterThan(Date value) { this.LastSavedDateTimeGreaterThan = value; return this; } public Date getLastSavedDateTimeLessThan() { return LastSavedDateTimeLessThan; } public SY_ReportQuery setLastSavedDateTimeLessThan(Date value) { this.LastSavedDateTimeLessThan = value; return this; } public Date getLastSavedDateTimeLessThanOrEqualTo() { return LastSavedDateTimeLessThanOrEqualTo; } public SY_ReportQuery setLastSavedDateTimeLessThanOrEqualTo(Date value) { this.LastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeNotEqualTo() { return LastSavedDateTimeNotEqualTo; } public SY_ReportQuery setLastSavedDateTimeNotEqualTo(Date value) { this.LastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getLastSavedDateTimeBetween() { return LastSavedDateTimeBetween; } public SY_ReportQuery setLastSavedDateTimeBetween(ArrayList value) { this.LastSavedDateTimeBetween = value; return this; } public ArrayList getLastSavedDateTimeIn() { return LastSavedDateTimeIn; } public SY_ReportQuery setLastSavedDateTimeIn(ArrayList value) { this.LastSavedDateTimeIn = value; return this; } public ArrayList getRowHash() { return RowHash; } public SY_ReportQuery setRowHash(ArrayList value) { this.RowHash = value; return this; } public Boolean getIsReadOnly() { return IsReadOnly; } public SY_ReportQuery setIsReadOnly(Boolean value) { this.IsReadOnly = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @Route(Path="/Queries/SY_ReportSection", Verbs="GET") @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class SY_ReportSectionQuery extends QueryDb implements IReturn> { public String RecID = null; public String RecIDStartsWith = null; public String RecIDEndsWith = null; public String RecIDContains = null; public String RecIDLike = null; public ArrayList RecIDBetween = null; public ArrayList RecIDIn = null; public String Name = null; public String NameStartsWith = null; public String NameEndsWith = null; public String NameContains = null; public String NameLike = null; public ArrayList NameBetween = null; public ArrayList NameIn = null; public String Description = null; public String DescriptionStartsWith = null; public String DescriptionEndsWith = null; public String DescriptionContains = null; public String DescriptionLike = null; public ArrayList DescriptionBetween = null; public ArrayList DescriptionIn = null; public Boolean IsDefault = null; public Integer ItemNo = null; public Integer ItemNoGreaterThanOrEqualTo = null; public Integer ItemNoGreaterThan = null; public Integer ItemNoLessThan = null; public Integer ItemNoLessThanOrEqualTo = null; public Integer ItemNoNotEqualTo = null; public ArrayList ItemNoBetween = null; public ArrayList ItemNoIn = null; public Date LastSavedDateTime = null; public Date LastSavedDateTimeGreaterThanOrEqualTo = null; public Date LastSavedDateTimeGreaterThan = null; public Date LastSavedDateTimeLessThan = null; public Date LastSavedDateTimeLessThanOrEqualTo = null; public Date LastSavedDateTimeNotEqualTo = null; public ArrayList LastSavedDateTimeBetween = null; public ArrayList LastSavedDateTimeIn = null; public ArrayList RowHash = null; public String getRecID() { return RecID; } public SY_ReportSectionQuery setRecID(String value) { this.RecID = value; return this; } public String getRecIDStartsWith() { return RecIDStartsWith; } public SY_ReportSectionQuery setRecIDStartsWith(String value) { this.RecIDStartsWith = value; return this; } public String getRecIDEndsWith() { return RecIDEndsWith; } public SY_ReportSectionQuery setRecIDEndsWith(String value) { this.RecIDEndsWith = value; return this; } public String getRecIDContains() { return RecIDContains; } public SY_ReportSectionQuery setRecIDContains(String value) { this.RecIDContains = value; return this; } public String getRecIDLike() { return RecIDLike; } public SY_ReportSectionQuery setRecIDLike(String value) { this.RecIDLike = value; return this; } public ArrayList getRecIDBetween() { return RecIDBetween; } public SY_ReportSectionQuery setRecIDBetween(ArrayList value) { this.RecIDBetween = value; return this; } public ArrayList getRecIDIn() { return RecIDIn; } public SY_ReportSectionQuery setRecIDIn(ArrayList value) { this.RecIDIn = value; return this; } public String getName() { return Name; } public SY_ReportSectionQuery setName(String value) { this.Name = value; return this; } public String getNameStartsWith() { return NameStartsWith; } public SY_ReportSectionQuery setNameStartsWith(String value) { this.NameStartsWith = value; return this; } public String getNameEndsWith() { return NameEndsWith; } public SY_ReportSectionQuery setNameEndsWith(String value) { this.NameEndsWith = value; return this; } public String getNameContains() { return NameContains; } public SY_ReportSectionQuery setNameContains(String value) { this.NameContains = value; return this; } public String getNameLike() { return NameLike; } public SY_ReportSectionQuery setNameLike(String value) { this.NameLike = value; return this; } public ArrayList getNameBetween() { return NameBetween; } public SY_ReportSectionQuery setNameBetween(ArrayList value) { this.NameBetween = value; return this; } public ArrayList getNameIn() { return NameIn; } public SY_ReportSectionQuery setNameIn(ArrayList value) { this.NameIn = value; return this; } public String getDescription() { return Description; } public SY_ReportSectionQuery setDescription(String value) { this.Description = value; return this; } public String getDescriptionStartsWith() { return DescriptionStartsWith; } public SY_ReportSectionQuery setDescriptionStartsWith(String value) { this.DescriptionStartsWith = value; return this; } public String getDescriptionEndsWith() { return DescriptionEndsWith; } public SY_ReportSectionQuery setDescriptionEndsWith(String value) { this.DescriptionEndsWith = value; return this; } public String getDescriptionContains() { return DescriptionContains; } public SY_ReportSectionQuery setDescriptionContains(String value) { this.DescriptionContains = value; return this; } public String getDescriptionLike() { return DescriptionLike; } public SY_ReportSectionQuery setDescriptionLike(String value) { this.DescriptionLike = value; return this; } public ArrayList getDescriptionBetween() { return DescriptionBetween; } public SY_ReportSectionQuery setDescriptionBetween(ArrayList value) { this.DescriptionBetween = value; return this; } public ArrayList getDescriptionIn() { return DescriptionIn; } public SY_ReportSectionQuery setDescriptionIn(ArrayList value) { this.DescriptionIn = value; return this; } public Boolean getIsDefault() { return IsDefault; } public SY_ReportSectionQuery setIsDefault(Boolean value) { this.IsDefault = value; return this; } public Integer getItemNo() { return ItemNo; } public SY_ReportSectionQuery setItemNo(Integer value) { this.ItemNo = value; return this; } public Integer getItemNoGreaterThanOrEqualTo() { return ItemNoGreaterThanOrEqualTo; } public SY_ReportSectionQuery setItemNoGreaterThanOrEqualTo(Integer value) { this.ItemNoGreaterThanOrEqualTo = value; return this; } public Integer getItemNoGreaterThan() { return ItemNoGreaterThan; } public SY_ReportSectionQuery setItemNoGreaterThan(Integer value) { this.ItemNoGreaterThan = value; return this; } public Integer getItemNoLessThan() { return ItemNoLessThan; } public SY_ReportSectionQuery setItemNoLessThan(Integer value) { this.ItemNoLessThan = value; return this; } public Integer getItemNoLessThanOrEqualTo() { return ItemNoLessThanOrEqualTo; } public SY_ReportSectionQuery setItemNoLessThanOrEqualTo(Integer value) { this.ItemNoLessThanOrEqualTo = value; return this; } public Integer getItemNoNotEqualTo() { return ItemNoNotEqualTo; } public SY_ReportSectionQuery setItemNoNotEqualTo(Integer value) { this.ItemNoNotEqualTo = value; return this; } public ArrayList getItemNoBetween() { return ItemNoBetween; } public SY_ReportSectionQuery setItemNoBetween(ArrayList value) { this.ItemNoBetween = value; return this; } public ArrayList getItemNoIn() { return ItemNoIn; } public SY_ReportSectionQuery setItemNoIn(ArrayList value) { this.ItemNoIn = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public SY_ReportSectionQuery setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getLastSavedDateTimeGreaterThanOrEqualTo() { return LastSavedDateTimeGreaterThanOrEqualTo; } public SY_ReportSectionQuery setLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.LastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeGreaterThan() { return LastSavedDateTimeGreaterThan; } public SY_ReportSectionQuery setLastSavedDateTimeGreaterThan(Date value) { this.LastSavedDateTimeGreaterThan = value; return this; } public Date getLastSavedDateTimeLessThan() { return LastSavedDateTimeLessThan; } public SY_ReportSectionQuery setLastSavedDateTimeLessThan(Date value) { this.LastSavedDateTimeLessThan = value; return this; } public Date getLastSavedDateTimeLessThanOrEqualTo() { return LastSavedDateTimeLessThanOrEqualTo; } public SY_ReportSectionQuery setLastSavedDateTimeLessThanOrEqualTo(Date value) { this.LastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeNotEqualTo() { return LastSavedDateTimeNotEqualTo; } public SY_ReportSectionQuery setLastSavedDateTimeNotEqualTo(Date value) { this.LastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getLastSavedDateTimeBetween() { return LastSavedDateTimeBetween; } public SY_ReportSectionQuery setLastSavedDateTimeBetween(ArrayList value) { this.LastSavedDateTimeBetween = value; return this; } public ArrayList getLastSavedDateTimeIn() { return LastSavedDateTimeIn; } public SY_ReportSectionQuery setLastSavedDateTimeIn(ArrayList value) { this.LastSavedDateTimeIn = value; return this; } public ArrayList getRowHash() { return RowHash; } public SY_ReportSectionQuery setRowHash(ArrayList value) { this.RowHash = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class SY_SavedReportRangesQuery extends QueryDb implements IReturn> { public String SavedReportRangeID = null; public String SavedReportRangeIDStartsWith = null; public String SavedReportRangeIDEndsWith = null; public String SavedReportRangeIDContains = null; public String SavedReportRangeIDLike = null; public ArrayList SavedReportRangeIDBetween = null; public ArrayList SavedReportRangeIDIn = null; public Date LastSavedDateTime = null; public Date LastSavedDateTimeGreaterThanOrEqualTo = null; public Date LastSavedDateTimeGreaterThan = null; public Date LastSavedDateTimeLessThan = null; public Date LastSavedDateTimeLessThanOrEqualTo = null; public Date LastSavedDateTimeNotEqualTo = null; public ArrayList LastSavedDateTimeBetween = null; public ArrayList LastSavedDateTimeIn = null; public String StaffID = null; public String StaffIDStartsWith = null; public String StaffIDEndsWith = null; public String StaffIDContains = null; public String StaffIDLike = null; public ArrayList StaffIDBetween = null; public ArrayList StaffIDIn = null; public String IDKey = null; public String IDKeyStartsWith = null; public String IDKeyEndsWith = null; public String IDKeyContains = null; public String IDKeyLike = null; public ArrayList IDKeyBetween = null; public ArrayList IDKeyIn = null; public String Description = null; public String DescriptionStartsWith = null; public String DescriptionEndsWith = null; public String DescriptionContains = null; public String DescriptionLike = null; public ArrayList DescriptionBetween = null; public ArrayList DescriptionIn = null; public String Contents = null; public String ContentsStartsWith = null; public String ContentsEndsWith = null; public String ContentsContains = null; public String ContentsLike = null; public ArrayList ContentsBetween = null; public ArrayList ContentsIn = null; public String getSavedReportRangeID() { return SavedReportRangeID; } public SY_SavedReportRangesQuery setSavedReportRangeID(String value) { this.SavedReportRangeID = value; return this; } public String getSavedReportRangeIDStartsWith() { return SavedReportRangeIDStartsWith; } public SY_SavedReportRangesQuery setSavedReportRangeIDStartsWith(String value) { this.SavedReportRangeIDStartsWith = value; return this; } public String getSavedReportRangeIDEndsWith() { return SavedReportRangeIDEndsWith; } public SY_SavedReportRangesQuery setSavedReportRangeIDEndsWith(String value) { this.SavedReportRangeIDEndsWith = value; return this; } public String getSavedReportRangeIDContains() { return SavedReportRangeIDContains; } public SY_SavedReportRangesQuery setSavedReportRangeIDContains(String value) { this.SavedReportRangeIDContains = value; return this; } public String getSavedReportRangeIDLike() { return SavedReportRangeIDLike; } public SY_SavedReportRangesQuery setSavedReportRangeIDLike(String value) { this.SavedReportRangeIDLike = value; return this; } public ArrayList getSavedReportRangeIDBetween() { return SavedReportRangeIDBetween; } public SY_SavedReportRangesQuery setSavedReportRangeIDBetween(ArrayList value) { this.SavedReportRangeIDBetween = value; return this; } public ArrayList getSavedReportRangeIDIn() { return SavedReportRangeIDIn; } public SY_SavedReportRangesQuery setSavedReportRangeIDIn(ArrayList value) { this.SavedReportRangeIDIn = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public SY_SavedReportRangesQuery setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getLastSavedDateTimeGreaterThanOrEqualTo() { return LastSavedDateTimeGreaterThanOrEqualTo; } public SY_SavedReportRangesQuery setLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.LastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeGreaterThan() { return LastSavedDateTimeGreaterThan; } public SY_SavedReportRangesQuery setLastSavedDateTimeGreaterThan(Date value) { this.LastSavedDateTimeGreaterThan = value; return this; } public Date getLastSavedDateTimeLessThan() { return LastSavedDateTimeLessThan; } public SY_SavedReportRangesQuery setLastSavedDateTimeLessThan(Date value) { this.LastSavedDateTimeLessThan = value; return this; } public Date getLastSavedDateTimeLessThanOrEqualTo() { return LastSavedDateTimeLessThanOrEqualTo; } public SY_SavedReportRangesQuery setLastSavedDateTimeLessThanOrEqualTo(Date value) { this.LastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeNotEqualTo() { return LastSavedDateTimeNotEqualTo; } public SY_SavedReportRangesQuery setLastSavedDateTimeNotEqualTo(Date value) { this.LastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getLastSavedDateTimeBetween() { return LastSavedDateTimeBetween; } public SY_SavedReportRangesQuery setLastSavedDateTimeBetween(ArrayList value) { this.LastSavedDateTimeBetween = value; return this; } public ArrayList getLastSavedDateTimeIn() { return LastSavedDateTimeIn; } public SY_SavedReportRangesQuery setLastSavedDateTimeIn(ArrayList value) { this.LastSavedDateTimeIn = value; return this; } public String getStaffID() { return StaffID; } public SY_SavedReportRangesQuery setStaffID(String value) { this.StaffID = value; return this; } public String getStaffIDStartsWith() { return StaffIDStartsWith; } public SY_SavedReportRangesQuery setStaffIDStartsWith(String value) { this.StaffIDStartsWith = value; return this; } public String getStaffIDEndsWith() { return StaffIDEndsWith; } public SY_SavedReportRangesQuery setStaffIDEndsWith(String value) { this.StaffIDEndsWith = value; return this; } public String getStaffIDContains() { return StaffIDContains; } public SY_SavedReportRangesQuery setStaffIDContains(String value) { this.StaffIDContains = value; return this; } public String getStaffIDLike() { return StaffIDLike; } public SY_SavedReportRangesQuery setStaffIDLike(String value) { this.StaffIDLike = value; return this; } public ArrayList getStaffIDBetween() { return StaffIDBetween; } public SY_SavedReportRangesQuery setStaffIDBetween(ArrayList value) { this.StaffIDBetween = value; return this; } public ArrayList getStaffIDIn() { return StaffIDIn; } public SY_SavedReportRangesQuery setStaffIDIn(ArrayList value) { this.StaffIDIn = value; return this; } public String getIdKey() { return IDKey; } public SY_SavedReportRangesQuery setIdKey(String value) { this.IDKey = value; return this; } public String getIdKeyStartsWith() { return IDKeyStartsWith; } public SY_SavedReportRangesQuery setIdKeyStartsWith(String value) { this.IDKeyStartsWith = value; return this; } public String getIdKeyEndsWith() { return IDKeyEndsWith; } public SY_SavedReportRangesQuery setIdKeyEndsWith(String value) { this.IDKeyEndsWith = value; return this; } public String getIdKeyContains() { return IDKeyContains; } public SY_SavedReportRangesQuery setIdKeyContains(String value) { this.IDKeyContains = value; return this; } public String getIdKeyLike() { return IDKeyLike; } public SY_SavedReportRangesQuery setIdKeyLike(String value) { this.IDKeyLike = value; return this; } public ArrayList getIdKeyBetween() { return IDKeyBetween; } public SY_SavedReportRangesQuery setIdKeyBetween(ArrayList value) { this.IDKeyBetween = value; return this; } public ArrayList getIdKeyIn() { return IDKeyIn; } public SY_SavedReportRangesQuery setIdKeyIn(ArrayList value) { this.IDKeyIn = value; return this; } public String getDescription() { return Description; } public SY_SavedReportRangesQuery setDescription(String value) { this.Description = value; return this; } public String getDescriptionStartsWith() { return DescriptionStartsWith; } public SY_SavedReportRangesQuery setDescriptionStartsWith(String value) { this.DescriptionStartsWith = value; return this; } public String getDescriptionEndsWith() { return DescriptionEndsWith; } public SY_SavedReportRangesQuery setDescriptionEndsWith(String value) { this.DescriptionEndsWith = value; return this; } public String getDescriptionContains() { return DescriptionContains; } public SY_SavedReportRangesQuery setDescriptionContains(String value) { this.DescriptionContains = value; return this; } public String getDescriptionLike() { return DescriptionLike; } public SY_SavedReportRangesQuery setDescriptionLike(String value) { this.DescriptionLike = value; return this; } public ArrayList getDescriptionBetween() { return DescriptionBetween; } public SY_SavedReportRangesQuery setDescriptionBetween(ArrayList value) { this.DescriptionBetween = value; return this; } public ArrayList getDescriptionIn() { return DescriptionIn; } public SY_SavedReportRangesQuery setDescriptionIn(ArrayList value) { this.DescriptionIn = value; return this; } public String getContents() { return Contents; } public SY_SavedReportRangesQuery setContents(String value) { this.Contents = value; return this; } public String getContentsStartsWith() { return ContentsStartsWith; } public SY_SavedReportRangesQuery setContentsStartsWith(String value) { this.ContentsStartsWith = value; return this; } public String getContentsEndsWith() { return ContentsEndsWith; } public SY_SavedReportRangesQuery setContentsEndsWith(String value) { this.ContentsEndsWith = value; return this; } public String getContentsContains() { return ContentsContains; } public SY_SavedReportRangesQuery setContentsContains(String value) { this.ContentsContains = value; return this; } public String getContentsLike() { return ContentsLike; } public SY_SavedReportRangesQuery setContentsLike(String value) { this.ContentsLike = value; return this; } public ArrayList getContentsBetween() { return ContentsBetween; } public SY_SavedReportRangesQuery setContentsBetween(ArrayList value) { this.ContentsBetween = value; return this; } public ArrayList getContentsIn() { return ContentsIn; } public SY_SavedReportRangesQuery setContentsIn(ArrayList value) { this.ContentsIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class SY_SearchItemQuery extends QueryDb implements IReturn> { public String RecID = null; public String RecIDStartsWith = null; public String RecIDEndsWith = null; public String RecIDContains = null; public String RecIDLike = null; public ArrayList RecIDBetween = null; public ArrayList RecIDIn = null; public Integer ItemNo = null; public Integer ItemNoGreaterThanOrEqualTo = null; public Integer ItemNoGreaterThan = null; public Integer ItemNoLessThan = null; public Integer ItemNoLessThanOrEqualTo = null; public Integer ItemNoNotEqualTo = null; public ArrayList ItemNoBetween = null; public ArrayList ItemNoIn = null; public String Name = null; public String NameStartsWith = null; public String NameEndsWith = null; public String NameContains = null; public String NameLike = null; public ArrayList NameBetween = null; public ArrayList NameIn = null; public String StoredProcedureName = null; public String StoredProcedureNameStartsWith = null; public String StoredProcedureNameEndsWith = null; public String StoredProcedureNameContains = null; public String StoredProcedureNameLike = null; public ArrayList StoredProcedureNameBetween = null; public ArrayList StoredProcedureNameIn = null; public Boolean IsEnabled = null; public ArrayList RowHash = null; public String getRecID() { return RecID; } public SY_SearchItemQuery setRecID(String value) { this.RecID = value; return this; } public String getRecIDStartsWith() { return RecIDStartsWith; } public SY_SearchItemQuery setRecIDStartsWith(String value) { this.RecIDStartsWith = value; return this; } public String getRecIDEndsWith() { return RecIDEndsWith; } public SY_SearchItemQuery setRecIDEndsWith(String value) { this.RecIDEndsWith = value; return this; } public String getRecIDContains() { return RecIDContains; } public SY_SearchItemQuery setRecIDContains(String value) { this.RecIDContains = value; return this; } public String getRecIDLike() { return RecIDLike; } public SY_SearchItemQuery setRecIDLike(String value) { this.RecIDLike = value; return this; } public ArrayList getRecIDBetween() { return RecIDBetween; } public SY_SearchItemQuery setRecIDBetween(ArrayList value) { this.RecIDBetween = value; return this; } public ArrayList getRecIDIn() { return RecIDIn; } public SY_SearchItemQuery setRecIDIn(ArrayList value) { this.RecIDIn = value; return this; } public Integer getItemNo() { return ItemNo; } public SY_SearchItemQuery setItemNo(Integer value) { this.ItemNo = value; return this; } public Integer getItemNoGreaterThanOrEqualTo() { return ItemNoGreaterThanOrEqualTo; } public SY_SearchItemQuery setItemNoGreaterThanOrEqualTo(Integer value) { this.ItemNoGreaterThanOrEqualTo = value; return this; } public Integer getItemNoGreaterThan() { return ItemNoGreaterThan; } public SY_SearchItemQuery setItemNoGreaterThan(Integer value) { this.ItemNoGreaterThan = value; return this; } public Integer getItemNoLessThan() { return ItemNoLessThan; } public SY_SearchItemQuery setItemNoLessThan(Integer value) { this.ItemNoLessThan = value; return this; } public Integer getItemNoLessThanOrEqualTo() { return ItemNoLessThanOrEqualTo; } public SY_SearchItemQuery setItemNoLessThanOrEqualTo(Integer value) { this.ItemNoLessThanOrEqualTo = value; return this; } public Integer getItemNoNotEqualTo() { return ItemNoNotEqualTo; } public SY_SearchItemQuery setItemNoNotEqualTo(Integer value) { this.ItemNoNotEqualTo = value; return this; } public ArrayList getItemNoBetween() { return ItemNoBetween; } public SY_SearchItemQuery setItemNoBetween(ArrayList value) { this.ItemNoBetween = value; return this; } public ArrayList getItemNoIn() { return ItemNoIn; } public SY_SearchItemQuery setItemNoIn(ArrayList value) { this.ItemNoIn = value; return this; } public String getName() { return Name; } public SY_SearchItemQuery setName(String value) { this.Name = value; return this; } public String getNameStartsWith() { return NameStartsWith; } public SY_SearchItemQuery setNameStartsWith(String value) { this.NameStartsWith = value; return this; } public String getNameEndsWith() { return NameEndsWith; } public SY_SearchItemQuery setNameEndsWith(String value) { this.NameEndsWith = value; return this; } public String getNameContains() { return NameContains; } public SY_SearchItemQuery setNameContains(String value) { this.NameContains = value; return this; } public String getNameLike() { return NameLike; } public SY_SearchItemQuery setNameLike(String value) { this.NameLike = value; return this; } public ArrayList getNameBetween() { return NameBetween; } public SY_SearchItemQuery setNameBetween(ArrayList value) { this.NameBetween = value; return this; } public ArrayList getNameIn() { return NameIn; } public SY_SearchItemQuery setNameIn(ArrayList value) { this.NameIn = value; return this; } public String getStoredProcedureName() { return StoredProcedureName; } public SY_SearchItemQuery setStoredProcedureName(String value) { this.StoredProcedureName = value; return this; } public String getStoredProcedureNameStartsWith() { return StoredProcedureNameStartsWith; } public SY_SearchItemQuery setStoredProcedureNameStartsWith(String value) { this.StoredProcedureNameStartsWith = value; return this; } public String getStoredProcedureNameEndsWith() { return StoredProcedureNameEndsWith; } public SY_SearchItemQuery setStoredProcedureNameEndsWith(String value) { this.StoredProcedureNameEndsWith = value; return this; } public String getStoredProcedureNameContains() { return StoredProcedureNameContains; } public SY_SearchItemQuery setStoredProcedureNameContains(String value) { this.StoredProcedureNameContains = value; return this; } public String getStoredProcedureNameLike() { return StoredProcedureNameLike; } public SY_SearchItemQuery setStoredProcedureNameLike(String value) { this.StoredProcedureNameLike = value; return this; } public ArrayList getStoredProcedureNameBetween() { return StoredProcedureNameBetween; } public SY_SearchItemQuery setStoredProcedureNameBetween(ArrayList value) { this.StoredProcedureNameBetween = value; return this; } public ArrayList getStoredProcedureNameIn() { return StoredProcedureNameIn; } public SY_SearchItemQuery setStoredProcedureNameIn(ArrayList value) { this.StoredProcedureNameIn = value; return this; } public Boolean getIsEnabled() { return IsEnabled; } public SY_SearchItemQuery setIsEnabled(Boolean value) { this.IsEnabled = value; return this; } public ArrayList getRowHash() { return RowHash; } public SY_SearchItemQuery setRowHash(ArrayList value) { this.RowHash = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @Route(Path="/Queries/SY_SysValues", Verbs="GET") @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class SY_SysValuesQuery extends QueryDb implements IReturn> { public String RecID = null; public String RecIDStartsWith = null; public String RecIDEndsWith = null; public String RecIDContains = null; public String RecIDLike = null; public ArrayList RecIDBetween = null; public ArrayList RecIDIn = null; public String Section = null; public String SectionStartsWith = null; public String SectionEndsWith = null; public String SectionContains = null; public String SectionLike = null; public ArrayList SectionBetween = null; public ArrayList SectionIn = null; public String IDKey = null; public String IDKeyStartsWith = null; public String IDKeyEndsWith = null; public String IDKeyContains = null; public String IDKeyLike = null; public ArrayList IDKeyBetween = null; public ArrayList IDKeyIn = null; public String Contents = null; public String ContentsStartsWith = null; public String ContentsEndsWith = null; public String ContentsContains = null; public String ContentsLike = null; public ArrayList ContentsBetween = null; public ArrayList ContentsIn = null; public String Description = null; public String DescriptionStartsWith = null; public String DescriptionEndsWith = null; public String DescriptionContains = null; public String DescriptionLike = null; public ArrayList DescriptionBetween = null; public ArrayList DescriptionIn = null; public Short CellType = null; public Short CellTypeGreaterThanOrEqualTo = null; public Short CellTypeGreaterThan = null; public Short CellTypeLessThan = null; public Short CellTypeLessThanOrEqualTo = null; public Short CellTypeNotEqualTo = null; public ArrayList CellTypeBetween = null; public ArrayList CellTypeIn = null; public Integer DisplayOrder = null; public Integer DisplayOrderGreaterThanOrEqualTo = null; public Integer DisplayOrderGreaterThan = null; public Integer DisplayOrderLessThan = null; public Integer DisplayOrderLessThanOrEqualTo = null; public Integer DisplayOrderNotEqualTo = null; public ArrayList DisplayOrderBetween = null; public ArrayList DisplayOrderIn = null; public String SectionCaption = null; public String SectionCaptionStartsWith = null; public String SectionCaptionEndsWith = null; public String SectionCaptionContains = null; public String SectionCaptionLike = null; public ArrayList SectionCaptionBetween = null; public ArrayList SectionCaptionIn = null; public Boolean ReadOnly = null; public String ScriptFormatCell = null; public String ScriptFormatCellStartsWith = null; public String ScriptFormatCellEndsWith = null; public String ScriptFormatCellContains = null; public String ScriptFormatCellLike = null; public ArrayList ScriptFormatCellBetween = null; public ArrayList ScriptFormatCellIn = null; public String ScriptButtonClicked = null; public String ScriptButtonClickedStartsWith = null; public String ScriptButtonClickedEndsWith = null; public String ScriptButtonClickedContains = null; public String ScriptButtonClickedLike = null; public ArrayList ScriptButtonClickedBetween = null; public ArrayList ScriptButtonClickedIn = null; public String ScriptReadData = null; public String ScriptReadDataStartsWith = null; public String ScriptReadDataEndsWith = null; public String ScriptReadDataContains = null; public String ScriptReadDataLike = null; public ArrayList ScriptReadDataBetween = null; public ArrayList ScriptReadDataIn = null; public String GridHandlerCode = null; public String GridHandlerCodeStartsWith = null; public String GridHandlerCodeEndsWith = null; public String GridHandlerCodeContains = null; public String GridHandlerCodeLike = null; public ArrayList GridHandlerCodeBetween = null; public ArrayList GridHandlerCodeIn = null; public String getRecID() { return RecID; } public SY_SysValuesQuery setRecID(String value) { this.RecID = value; return this; } public String getRecIDStartsWith() { return RecIDStartsWith; } public SY_SysValuesQuery setRecIDStartsWith(String value) { this.RecIDStartsWith = value; return this; } public String getRecIDEndsWith() { return RecIDEndsWith; } public SY_SysValuesQuery setRecIDEndsWith(String value) { this.RecIDEndsWith = value; return this; } public String getRecIDContains() { return RecIDContains; } public SY_SysValuesQuery setRecIDContains(String value) { this.RecIDContains = value; return this; } public String getRecIDLike() { return RecIDLike; } public SY_SysValuesQuery setRecIDLike(String value) { this.RecIDLike = value; return this; } public ArrayList getRecIDBetween() { return RecIDBetween; } public SY_SysValuesQuery setRecIDBetween(ArrayList value) { this.RecIDBetween = value; return this; } public ArrayList getRecIDIn() { return RecIDIn; } public SY_SysValuesQuery setRecIDIn(ArrayList value) { this.RecIDIn = value; return this; } public String getSection() { return Section; } public SY_SysValuesQuery setSection(String value) { this.Section = value; return this; } public String getSectionStartsWith() { return SectionStartsWith; } public SY_SysValuesQuery setSectionStartsWith(String value) { this.SectionStartsWith = value; return this; } public String getSectionEndsWith() { return SectionEndsWith; } public SY_SysValuesQuery setSectionEndsWith(String value) { this.SectionEndsWith = value; return this; } public String getSectionContains() { return SectionContains; } public SY_SysValuesQuery setSectionContains(String value) { this.SectionContains = value; return this; } public String getSectionLike() { return SectionLike; } public SY_SysValuesQuery setSectionLike(String value) { this.SectionLike = value; return this; } public ArrayList getSectionBetween() { return SectionBetween; } public SY_SysValuesQuery setSectionBetween(ArrayList value) { this.SectionBetween = value; return this; } public ArrayList getSectionIn() { return SectionIn; } public SY_SysValuesQuery setSectionIn(ArrayList value) { this.SectionIn = value; return this; } public String getIdKey() { return IDKey; } public SY_SysValuesQuery setIdKey(String value) { this.IDKey = value; return this; } public String getIdKeyStartsWith() { return IDKeyStartsWith; } public SY_SysValuesQuery setIdKeyStartsWith(String value) { this.IDKeyStartsWith = value; return this; } public String getIdKeyEndsWith() { return IDKeyEndsWith; } public SY_SysValuesQuery setIdKeyEndsWith(String value) { this.IDKeyEndsWith = value; return this; } public String getIdKeyContains() { return IDKeyContains; } public SY_SysValuesQuery setIdKeyContains(String value) { this.IDKeyContains = value; return this; } public String getIdKeyLike() { return IDKeyLike; } public SY_SysValuesQuery setIdKeyLike(String value) { this.IDKeyLike = value; return this; } public ArrayList getIdKeyBetween() { return IDKeyBetween; } public SY_SysValuesQuery setIdKeyBetween(ArrayList value) { this.IDKeyBetween = value; return this; } public ArrayList getIdKeyIn() { return IDKeyIn; } public SY_SysValuesQuery setIdKeyIn(ArrayList value) { this.IDKeyIn = value; return this; } public String getContents() { return Contents; } public SY_SysValuesQuery setContents(String value) { this.Contents = value; return this; } public String getContentsStartsWith() { return ContentsStartsWith; } public SY_SysValuesQuery setContentsStartsWith(String value) { this.ContentsStartsWith = value; return this; } public String getContentsEndsWith() { return ContentsEndsWith; } public SY_SysValuesQuery setContentsEndsWith(String value) { this.ContentsEndsWith = value; return this; } public String getContentsContains() { return ContentsContains; } public SY_SysValuesQuery setContentsContains(String value) { this.ContentsContains = value; return this; } public String getContentsLike() { return ContentsLike; } public SY_SysValuesQuery setContentsLike(String value) { this.ContentsLike = value; return this; } public ArrayList getContentsBetween() { return ContentsBetween; } public SY_SysValuesQuery setContentsBetween(ArrayList value) { this.ContentsBetween = value; return this; } public ArrayList getContentsIn() { return ContentsIn; } public SY_SysValuesQuery setContentsIn(ArrayList value) { this.ContentsIn = value; return this; } public String getDescription() { return Description; } public SY_SysValuesQuery setDescription(String value) { this.Description = value; return this; } public String getDescriptionStartsWith() { return DescriptionStartsWith; } public SY_SysValuesQuery setDescriptionStartsWith(String value) { this.DescriptionStartsWith = value; return this; } public String getDescriptionEndsWith() { return DescriptionEndsWith; } public SY_SysValuesQuery setDescriptionEndsWith(String value) { this.DescriptionEndsWith = value; return this; } public String getDescriptionContains() { return DescriptionContains; } public SY_SysValuesQuery setDescriptionContains(String value) { this.DescriptionContains = value; return this; } public String getDescriptionLike() { return DescriptionLike; } public SY_SysValuesQuery setDescriptionLike(String value) { this.DescriptionLike = value; return this; } public ArrayList getDescriptionBetween() { return DescriptionBetween; } public SY_SysValuesQuery setDescriptionBetween(ArrayList value) { this.DescriptionBetween = value; return this; } public ArrayList getDescriptionIn() { return DescriptionIn; } public SY_SysValuesQuery setDescriptionIn(ArrayList value) { this.DescriptionIn = value; return this; } public Short getCellType() { return CellType; } public SY_SysValuesQuery setCellType(Short value) { this.CellType = value; return this; } public Short getCellTypeGreaterThanOrEqualTo() { return CellTypeGreaterThanOrEqualTo; } public SY_SysValuesQuery setCellTypeGreaterThanOrEqualTo(Short value) { this.CellTypeGreaterThanOrEqualTo = value; return this; } public Short getCellTypeGreaterThan() { return CellTypeGreaterThan; } public SY_SysValuesQuery setCellTypeGreaterThan(Short value) { this.CellTypeGreaterThan = value; return this; } public Short getCellTypeLessThan() { return CellTypeLessThan; } public SY_SysValuesQuery setCellTypeLessThan(Short value) { this.CellTypeLessThan = value; return this; } public Short getCellTypeLessThanOrEqualTo() { return CellTypeLessThanOrEqualTo; } public SY_SysValuesQuery setCellTypeLessThanOrEqualTo(Short value) { this.CellTypeLessThanOrEqualTo = value; return this; } public Short getCellTypeNotEqualTo() { return CellTypeNotEqualTo; } public SY_SysValuesQuery setCellTypeNotEqualTo(Short value) { this.CellTypeNotEqualTo = value; return this; } public ArrayList getCellTypeBetween() { return CellTypeBetween; } public SY_SysValuesQuery setCellTypeBetween(ArrayList value) { this.CellTypeBetween = value; return this; } public ArrayList getCellTypeIn() { return CellTypeIn; } public SY_SysValuesQuery setCellTypeIn(ArrayList value) { this.CellTypeIn = value; return this; } public Integer getDisplayOrder() { return DisplayOrder; } public SY_SysValuesQuery setDisplayOrder(Integer value) { this.DisplayOrder = value; return this; } public Integer getDisplayOrderGreaterThanOrEqualTo() { return DisplayOrderGreaterThanOrEqualTo; } public SY_SysValuesQuery setDisplayOrderGreaterThanOrEqualTo(Integer value) { this.DisplayOrderGreaterThanOrEqualTo = value; return this; } public Integer getDisplayOrderGreaterThan() { return DisplayOrderGreaterThan; } public SY_SysValuesQuery setDisplayOrderGreaterThan(Integer value) { this.DisplayOrderGreaterThan = value; return this; } public Integer getDisplayOrderLessThan() { return DisplayOrderLessThan; } public SY_SysValuesQuery setDisplayOrderLessThan(Integer value) { this.DisplayOrderLessThan = value; return this; } public Integer getDisplayOrderLessThanOrEqualTo() { return DisplayOrderLessThanOrEqualTo; } public SY_SysValuesQuery setDisplayOrderLessThanOrEqualTo(Integer value) { this.DisplayOrderLessThanOrEqualTo = value; return this; } public Integer getDisplayOrderNotEqualTo() { return DisplayOrderNotEqualTo; } public SY_SysValuesQuery setDisplayOrderNotEqualTo(Integer value) { this.DisplayOrderNotEqualTo = value; return this; } public ArrayList getDisplayOrderBetween() { return DisplayOrderBetween; } public SY_SysValuesQuery setDisplayOrderBetween(ArrayList value) { this.DisplayOrderBetween = value; return this; } public ArrayList getDisplayOrderIn() { return DisplayOrderIn; } public SY_SysValuesQuery setDisplayOrderIn(ArrayList value) { this.DisplayOrderIn = value; return this; } public String getSectionCaption() { return SectionCaption; } public SY_SysValuesQuery setSectionCaption(String value) { this.SectionCaption = value; return this; } public String getSectionCaptionStartsWith() { return SectionCaptionStartsWith; } public SY_SysValuesQuery setSectionCaptionStartsWith(String value) { this.SectionCaptionStartsWith = value; return this; } public String getSectionCaptionEndsWith() { return SectionCaptionEndsWith; } public SY_SysValuesQuery setSectionCaptionEndsWith(String value) { this.SectionCaptionEndsWith = value; return this; } public String getSectionCaptionContains() { return SectionCaptionContains; } public SY_SysValuesQuery setSectionCaptionContains(String value) { this.SectionCaptionContains = value; return this; } public String getSectionCaptionLike() { return SectionCaptionLike; } public SY_SysValuesQuery setSectionCaptionLike(String value) { this.SectionCaptionLike = value; return this; } public ArrayList getSectionCaptionBetween() { return SectionCaptionBetween; } public SY_SysValuesQuery setSectionCaptionBetween(ArrayList value) { this.SectionCaptionBetween = value; return this; } public ArrayList getSectionCaptionIn() { return SectionCaptionIn; } public SY_SysValuesQuery setSectionCaptionIn(ArrayList value) { this.SectionCaptionIn = value; return this; } public Boolean isReadOnly() { return ReadOnly; } public SY_SysValuesQuery setReadOnly(Boolean value) { this.ReadOnly = value; return this; } public String getScriptFormatCell() { return ScriptFormatCell; } public SY_SysValuesQuery setScriptFormatCell(String value) { this.ScriptFormatCell = value; return this; } public String getScriptFormatCellStartsWith() { return ScriptFormatCellStartsWith; } public SY_SysValuesQuery setScriptFormatCellStartsWith(String value) { this.ScriptFormatCellStartsWith = value; return this; } public String getScriptFormatCellEndsWith() { return ScriptFormatCellEndsWith; } public SY_SysValuesQuery setScriptFormatCellEndsWith(String value) { this.ScriptFormatCellEndsWith = value; return this; } public String getScriptFormatCellContains() { return ScriptFormatCellContains; } public SY_SysValuesQuery setScriptFormatCellContains(String value) { this.ScriptFormatCellContains = value; return this; } public String getScriptFormatCellLike() { return ScriptFormatCellLike; } public SY_SysValuesQuery setScriptFormatCellLike(String value) { this.ScriptFormatCellLike = value; return this; } public ArrayList getScriptFormatCellBetween() { return ScriptFormatCellBetween; } public SY_SysValuesQuery setScriptFormatCellBetween(ArrayList value) { this.ScriptFormatCellBetween = value; return this; } public ArrayList getScriptFormatCellIn() { return ScriptFormatCellIn; } public SY_SysValuesQuery setScriptFormatCellIn(ArrayList value) { this.ScriptFormatCellIn = value; return this; } public String getScriptButtonClicked() { return ScriptButtonClicked; } public SY_SysValuesQuery setScriptButtonClicked(String value) { this.ScriptButtonClicked = value; return this; } public String getScriptButtonClickedStartsWith() { return ScriptButtonClickedStartsWith; } public SY_SysValuesQuery setScriptButtonClickedStartsWith(String value) { this.ScriptButtonClickedStartsWith = value; return this; } public String getScriptButtonClickedEndsWith() { return ScriptButtonClickedEndsWith; } public SY_SysValuesQuery setScriptButtonClickedEndsWith(String value) { this.ScriptButtonClickedEndsWith = value; return this; } public String getScriptButtonClickedContains() { return ScriptButtonClickedContains; } public SY_SysValuesQuery setScriptButtonClickedContains(String value) { this.ScriptButtonClickedContains = value; return this; } public String getScriptButtonClickedLike() { return ScriptButtonClickedLike; } public SY_SysValuesQuery setScriptButtonClickedLike(String value) { this.ScriptButtonClickedLike = value; return this; } public ArrayList getScriptButtonClickedBetween() { return ScriptButtonClickedBetween; } public SY_SysValuesQuery setScriptButtonClickedBetween(ArrayList value) { this.ScriptButtonClickedBetween = value; return this; } public ArrayList getScriptButtonClickedIn() { return ScriptButtonClickedIn; } public SY_SysValuesQuery setScriptButtonClickedIn(ArrayList value) { this.ScriptButtonClickedIn = value; return this; } public String getScriptReadData() { return ScriptReadData; } public SY_SysValuesQuery setScriptReadData(String value) { this.ScriptReadData = value; return this; } public String getScriptReadDataStartsWith() { return ScriptReadDataStartsWith; } public SY_SysValuesQuery setScriptReadDataStartsWith(String value) { this.ScriptReadDataStartsWith = value; return this; } public String getScriptReadDataEndsWith() { return ScriptReadDataEndsWith; } public SY_SysValuesQuery setScriptReadDataEndsWith(String value) { this.ScriptReadDataEndsWith = value; return this; } public String getScriptReadDataContains() { return ScriptReadDataContains; } public SY_SysValuesQuery setScriptReadDataContains(String value) { this.ScriptReadDataContains = value; return this; } public String getScriptReadDataLike() { return ScriptReadDataLike; } public SY_SysValuesQuery setScriptReadDataLike(String value) { this.ScriptReadDataLike = value; return this; } public ArrayList getScriptReadDataBetween() { return ScriptReadDataBetween; } public SY_SysValuesQuery setScriptReadDataBetween(ArrayList value) { this.ScriptReadDataBetween = value; return this; } public ArrayList getScriptReadDataIn() { return ScriptReadDataIn; } public SY_SysValuesQuery setScriptReadDataIn(ArrayList value) { this.ScriptReadDataIn = value; return this; } public String getGridHandlerCode() { return GridHandlerCode; } public SY_SysValuesQuery setGridHandlerCode(String value) { this.GridHandlerCode = value; return this; } public String getGridHandlerCodeStartsWith() { return GridHandlerCodeStartsWith; } public SY_SysValuesQuery setGridHandlerCodeStartsWith(String value) { this.GridHandlerCodeStartsWith = value; return this; } public String getGridHandlerCodeEndsWith() { return GridHandlerCodeEndsWith; } public SY_SysValuesQuery setGridHandlerCodeEndsWith(String value) { this.GridHandlerCodeEndsWith = value; return this; } public String getGridHandlerCodeContains() { return GridHandlerCodeContains; } public SY_SysValuesQuery setGridHandlerCodeContains(String value) { this.GridHandlerCodeContains = value; return this; } public String getGridHandlerCodeLike() { return GridHandlerCodeLike; } public SY_SysValuesQuery setGridHandlerCodeLike(String value) { this.GridHandlerCodeLike = value; return this; } public ArrayList getGridHandlerCodeBetween() { return GridHandlerCodeBetween; } public SY_SysValuesQuery setGridHandlerCodeBetween(ArrayList value) { this.GridHandlerCodeBetween = value; return this; } public ArrayList getGridHandlerCodeIn() { return GridHandlerCodeIn; } public SY_SysValuesQuery setGridHandlerCodeIn(ArrayList value) { this.GridHandlerCodeIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class SY_SysValuesLogQuery extends QueryDb implements IReturn> { public String RecID = null; public String RecIDStartsWith = null; public String RecIDEndsWith = null; public String RecIDContains = null; public String RecIDLike = null; public ArrayList RecIDBetween = null; public ArrayList RecIDIn = null; public String BatchID = null; public String BatchIDStartsWith = null; public String BatchIDEndsWith = null; public String BatchIDContains = null; public String BatchIDLike = null; public ArrayList BatchIDBetween = null; public ArrayList BatchIDIn = null; public String DatabaseVersion = null; public String DatabaseVersionStartsWith = null; public String DatabaseVersionEndsWith = null; public String DatabaseVersionContains = null; public String DatabaseVersionLike = null; public ArrayList DatabaseVersionBetween = null; public ArrayList DatabaseVersionIn = null; public String Section = null; public String SectionStartsWith = null; public String SectionEndsWith = null; public String SectionContains = null; public String SectionLike = null; public ArrayList SectionBetween = null; public ArrayList SectionIn = null; public String SectionCaption = null; public String SectionCaptionStartsWith = null; public String SectionCaptionEndsWith = null; public String SectionCaptionContains = null; public String SectionCaptionLike = null; public ArrayList SectionCaptionBetween = null; public ArrayList SectionCaptionIn = null; public String IDKey = null; public String IDKeyStartsWith = null; public String IDKeyEndsWith = null; public String IDKeyContains = null; public String IDKeyLike = null; public ArrayList IDKeyBetween = null; public ArrayList IDKeyIn = null; public String Contents = null; public String ContentsStartsWith = null; public String ContentsEndsWith = null; public String ContentsContains = null; public String ContentsLike = null; public ArrayList ContentsBetween = null; public ArrayList ContentsIn = null; public String NewContents = null; public String NewContentsStartsWith = null; public String NewContentsEndsWith = null; public String NewContentsContains = null; public String NewContentsLike = null; public ArrayList NewContentsBetween = null; public ArrayList NewContentsIn = null; public String Description = null; public String DescriptionStartsWith = null; public String DescriptionEndsWith = null; public String DescriptionContains = null; public String DescriptionLike = null; public ArrayList DescriptionBetween = null; public ArrayList DescriptionIn = null; public Short CellType = null; public Short CellTypeGreaterThanOrEqualTo = null; public Short CellTypeGreaterThan = null; public Short CellTypeLessThan = null; public Short CellTypeLessThanOrEqualTo = null; public Short CellTypeNotEqualTo = null; public ArrayList CellTypeBetween = null; public ArrayList CellTypeIn = null; public String LastModifiedByStaffID = null; public String LastModifiedByStaffIDStartsWith = null; public String LastModifiedByStaffIDEndsWith = null; public String LastModifiedByStaffIDContains = null; public String LastModifiedByStaffIDLike = null; public ArrayList LastModifiedByStaffIDBetween = null; public ArrayList LastModifiedByStaffIDIn = null; public Date LastSavedDateTime = null; public Date LastSavedDateTimeGreaterThanOrEqualTo = null; public Date LastSavedDateTimeGreaterThan = null; public Date LastSavedDateTimeLessThan = null; public Date LastSavedDateTimeLessThanOrEqualTo = null; public Date LastSavedDateTimeNotEqualTo = null; public ArrayList LastSavedDateTimeBetween = null; public ArrayList LastSavedDateTimeIn = null; public String getRecID() { return RecID; } public SY_SysValuesLogQuery setRecID(String value) { this.RecID = value; return this; } public String getRecIDStartsWith() { return RecIDStartsWith; } public SY_SysValuesLogQuery setRecIDStartsWith(String value) { this.RecIDStartsWith = value; return this; } public String getRecIDEndsWith() { return RecIDEndsWith; } public SY_SysValuesLogQuery setRecIDEndsWith(String value) { this.RecIDEndsWith = value; return this; } public String getRecIDContains() { return RecIDContains; } public SY_SysValuesLogQuery setRecIDContains(String value) { this.RecIDContains = value; return this; } public String getRecIDLike() { return RecIDLike; } public SY_SysValuesLogQuery setRecIDLike(String value) { this.RecIDLike = value; return this; } public ArrayList getRecIDBetween() { return RecIDBetween; } public SY_SysValuesLogQuery setRecIDBetween(ArrayList value) { this.RecIDBetween = value; return this; } public ArrayList getRecIDIn() { return RecIDIn; } public SY_SysValuesLogQuery setRecIDIn(ArrayList value) { this.RecIDIn = value; return this; } public String getBatchID() { return BatchID; } public SY_SysValuesLogQuery setBatchID(String value) { this.BatchID = value; return this; } public String getBatchIDStartsWith() { return BatchIDStartsWith; } public SY_SysValuesLogQuery setBatchIDStartsWith(String value) { this.BatchIDStartsWith = value; return this; } public String getBatchIDEndsWith() { return BatchIDEndsWith; } public SY_SysValuesLogQuery setBatchIDEndsWith(String value) { this.BatchIDEndsWith = value; return this; } public String getBatchIDContains() { return BatchIDContains; } public SY_SysValuesLogQuery setBatchIDContains(String value) { this.BatchIDContains = value; return this; } public String getBatchIDLike() { return BatchIDLike; } public SY_SysValuesLogQuery setBatchIDLike(String value) { this.BatchIDLike = value; return this; } public ArrayList getBatchIDBetween() { return BatchIDBetween; } public SY_SysValuesLogQuery setBatchIDBetween(ArrayList value) { this.BatchIDBetween = value; return this; } public ArrayList getBatchIDIn() { return BatchIDIn; } public SY_SysValuesLogQuery setBatchIDIn(ArrayList value) { this.BatchIDIn = value; return this; } public String getDatabaseVersion() { return DatabaseVersion; } public SY_SysValuesLogQuery setDatabaseVersion(String value) { this.DatabaseVersion = value; return this; } public String getDatabaseVersionStartsWith() { return DatabaseVersionStartsWith; } public SY_SysValuesLogQuery setDatabaseVersionStartsWith(String value) { this.DatabaseVersionStartsWith = value; return this; } public String getDatabaseVersionEndsWith() { return DatabaseVersionEndsWith; } public SY_SysValuesLogQuery setDatabaseVersionEndsWith(String value) { this.DatabaseVersionEndsWith = value; return this; } public String getDatabaseVersionContains() { return DatabaseVersionContains; } public SY_SysValuesLogQuery setDatabaseVersionContains(String value) { this.DatabaseVersionContains = value; return this; } public String getDatabaseVersionLike() { return DatabaseVersionLike; } public SY_SysValuesLogQuery setDatabaseVersionLike(String value) { this.DatabaseVersionLike = value; return this; } public ArrayList getDatabaseVersionBetween() { return DatabaseVersionBetween; } public SY_SysValuesLogQuery setDatabaseVersionBetween(ArrayList value) { this.DatabaseVersionBetween = value; return this; } public ArrayList getDatabaseVersionIn() { return DatabaseVersionIn; } public SY_SysValuesLogQuery setDatabaseVersionIn(ArrayList value) { this.DatabaseVersionIn = value; return this; } public String getSection() { return Section; } public SY_SysValuesLogQuery setSection(String value) { this.Section = value; return this; } public String getSectionStartsWith() { return SectionStartsWith; } public SY_SysValuesLogQuery setSectionStartsWith(String value) { this.SectionStartsWith = value; return this; } public String getSectionEndsWith() { return SectionEndsWith; } public SY_SysValuesLogQuery setSectionEndsWith(String value) { this.SectionEndsWith = value; return this; } public String getSectionContains() { return SectionContains; } public SY_SysValuesLogQuery setSectionContains(String value) { this.SectionContains = value; return this; } public String getSectionLike() { return SectionLike; } public SY_SysValuesLogQuery setSectionLike(String value) { this.SectionLike = value; return this; } public ArrayList getSectionBetween() { return SectionBetween; } public SY_SysValuesLogQuery setSectionBetween(ArrayList value) { this.SectionBetween = value; return this; } public ArrayList getSectionIn() { return SectionIn; } public SY_SysValuesLogQuery setSectionIn(ArrayList value) { this.SectionIn = value; return this; } public String getSectionCaption() { return SectionCaption; } public SY_SysValuesLogQuery setSectionCaption(String value) { this.SectionCaption = value; return this; } public String getSectionCaptionStartsWith() { return SectionCaptionStartsWith; } public SY_SysValuesLogQuery setSectionCaptionStartsWith(String value) { this.SectionCaptionStartsWith = value; return this; } public String getSectionCaptionEndsWith() { return SectionCaptionEndsWith; } public SY_SysValuesLogQuery setSectionCaptionEndsWith(String value) { this.SectionCaptionEndsWith = value; return this; } public String getSectionCaptionContains() { return SectionCaptionContains; } public SY_SysValuesLogQuery setSectionCaptionContains(String value) { this.SectionCaptionContains = value; return this; } public String getSectionCaptionLike() { return SectionCaptionLike; } public SY_SysValuesLogQuery setSectionCaptionLike(String value) { this.SectionCaptionLike = value; return this; } public ArrayList getSectionCaptionBetween() { return SectionCaptionBetween; } public SY_SysValuesLogQuery setSectionCaptionBetween(ArrayList value) { this.SectionCaptionBetween = value; return this; } public ArrayList getSectionCaptionIn() { return SectionCaptionIn; } public SY_SysValuesLogQuery setSectionCaptionIn(ArrayList value) { this.SectionCaptionIn = value; return this; } public String getIdKey() { return IDKey; } public SY_SysValuesLogQuery setIdKey(String value) { this.IDKey = value; return this; } public String getIdKeyStartsWith() { return IDKeyStartsWith; } public SY_SysValuesLogQuery setIdKeyStartsWith(String value) { this.IDKeyStartsWith = value; return this; } public String getIdKeyEndsWith() { return IDKeyEndsWith; } public SY_SysValuesLogQuery setIdKeyEndsWith(String value) { this.IDKeyEndsWith = value; return this; } public String getIdKeyContains() { return IDKeyContains; } public SY_SysValuesLogQuery setIdKeyContains(String value) { this.IDKeyContains = value; return this; } public String getIdKeyLike() { return IDKeyLike; } public SY_SysValuesLogQuery setIdKeyLike(String value) { this.IDKeyLike = value; return this; } public ArrayList getIdKeyBetween() { return IDKeyBetween; } public SY_SysValuesLogQuery setIdKeyBetween(ArrayList value) { this.IDKeyBetween = value; return this; } public ArrayList getIdKeyIn() { return IDKeyIn; } public SY_SysValuesLogQuery setIdKeyIn(ArrayList value) { this.IDKeyIn = value; return this; } public String getContents() { return Contents; } public SY_SysValuesLogQuery setContents(String value) { this.Contents = value; return this; } public String getContentsStartsWith() { return ContentsStartsWith; } public SY_SysValuesLogQuery setContentsStartsWith(String value) { this.ContentsStartsWith = value; return this; } public String getContentsEndsWith() { return ContentsEndsWith; } public SY_SysValuesLogQuery setContentsEndsWith(String value) { this.ContentsEndsWith = value; return this; } public String getContentsContains() { return ContentsContains; } public SY_SysValuesLogQuery setContentsContains(String value) { this.ContentsContains = value; return this; } public String getContentsLike() { return ContentsLike; } public SY_SysValuesLogQuery setContentsLike(String value) { this.ContentsLike = value; return this; } public ArrayList getContentsBetween() { return ContentsBetween; } public SY_SysValuesLogQuery setContentsBetween(ArrayList value) { this.ContentsBetween = value; return this; } public ArrayList getContentsIn() { return ContentsIn; } public SY_SysValuesLogQuery setContentsIn(ArrayList value) { this.ContentsIn = value; return this; } public String getNewContents() { return NewContents; } public SY_SysValuesLogQuery setNewContents(String value) { this.NewContents = value; return this; } public String getNewContentsStartsWith() { return NewContentsStartsWith; } public SY_SysValuesLogQuery setNewContentsStartsWith(String value) { this.NewContentsStartsWith = value; return this; } public String getNewContentsEndsWith() { return NewContentsEndsWith; } public SY_SysValuesLogQuery setNewContentsEndsWith(String value) { this.NewContentsEndsWith = value; return this; } public String getNewContentsContains() { return NewContentsContains; } public SY_SysValuesLogQuery setNewContentsContains(String value) { this.NewContentsContains = value; return this; } public String getNewContentsLike() { return NewContentsLike; } public SY_SysValuesLogQuery setNewContentsLike(String value) { this.NewContentsLike = value; return this; } public ArrayList getNewContentsBetween() { return NewContentsBetween; } public SY_SysValuesLogQuery setNewContentsBetween(ArrayList value) { this.NewContentsBetween = value; return this; } public ArrayList getNewContentsIn() { return NewContentsIn; } public SY_SysValuesLogQuery setNewContentsIn(ArrayList value) { this.NewContentsIn = value; return this; } public String getDescription() { return Description; } public SY_SysValuesLogQuery setDescription(String value) { this.Description = value; return this; } public String getDescriptionStartsWith() { return DescriptionStartsWith; } public SY_SysValuesLogQuery setDescriptionStartsWith(String value) { this.DescriptionStartsWith = value; return this; } public String getDescriptionEndsWith() { return DescriptionEndsWith; } public SY_SysValuesLogQuery setDescriptionEndsWith(String value) { this.DescriptionEndsWith = value; return this; } public String getDescriptionContains() { return DescriptionContains; } public SY_SysValuesLogQuery setDescriptionContains(String value) { this.DescriptionContains = value; return this; } public String getDescriptionLike() { return DescriptionLike; } public SY_SysValuesLogQuery setDescriptionLike(String value) { this.DescriptionLike = value; return this; } public ArrayList getDescriptionBetween() { return DescriptionBetween; } public SY_SysValuesLogQuery setDescriptionBetween(ArrayList value) { this.DescriptionBetween = value; return this; } public ArrayList getDescriptionIn() { return DescriptionIn; } public SY_SysValuesLogQuery setDescriptionIn(ArrayList value) { this.DescriptionIn = value; return this; } public Short getCellType() { return CellType; } public SY_SysValuesLogQuery setCellType(Short value) { this.CellType = value; return this; } public Short getCellTypeGreaterThanOrEqualTo() { return CellTypeGreaterThanOrEqualTo; } public SY_SysValuesLogQuery setCellTypeGreaterThanOrEqualTo(Short value) { this.CellTypeGreaterThanOrEqualTo = value; return this; } public Short getCellTypeGreaterThan() { return CellTypeGreaterThan; } public SY_SysValuesLogQuery setCellTypeGreaterThan(Short value) { this.CellTypeGreaterThan = value; return this; } public Short getCellTypeLessThan() { return CellTypeLessThan; } public SY_SysValuesLogQuery setCellTypeLessThan(Short value) { this.CellTypeLessThan = value; return this; } public Short getCellTypeLessThanOrEqualTo() { return CellTypeLessThanOrEqualTo; } public SY_SysValuesLogQuery setCellTypeLessThanOrEqualTo(Short value) { this.CellTypeLessThanOrEqualTo = value; return this; } public Short getCellTypeNotEqualTo() { return CellTypeNotEqualTo; } public SY_SysValuesLogQuery setCellTypeNotEqualTo(Short value) { this.CellTypeNotEqualTo = value; return this; } public ArrayList getCellTypeBetween() { return CellTypeBetween; } public SY_SysValuesLogQuery setCellTypeBetween(ArrayList value) { this.CellTypeBetween = value; return this; } public ArrayList getCellTypeIn() { return CellTypeIn; } public SY_SysValuesLogQuery setCellTypeIn(ArrayList value) { this.CellTypeIn = value; return this; } public String getLastModifiedByStaffID() { return LastModifiedByStaffID; } public SY_SysValuesLogQuery setLastModifiedByStaffID(String value) { this.LastModifiedByStaffID = value; return this; } public String getLastModifiedByStaffIDStartsWith() { return LastModifiedByStaffIDStartsWith; } public SY_SysValuesLogQuery setLastModifiedByStaffIDStartsWith(String value) { this.LastModifiedByStaffIDStartsWith = value; return this; } public String getLastModifiedByStaffIDEndsWith() { return LastModifiedByStaffIDEndsWith; } public SY_SysValuesLogQuery setLastModifiedByStaffIDEndsWith(String value) { this.LastModifiedByStaffIDEndsWith = value; return this; } public String getLastModifiedByStaffIDContains() { return LastModifiedByStaffIDContains; } public SY_SysValuesLogQuery setLastModifiedByStaffIDContains(String value) { this.LastModifiedByStaffIDContains = value; return this; } public String getLastModifiedByStaffIDLike() { return LastModifiedByStaffIDLike; } public SY_SysValuesLogQuery setLastModifiedByStaffIDLike(String value) { this.LastModifiedByStaffIDLike = value; return this; } public ArrayList getLastModifiedByStaffIDBetween() { return LastModifiedByStaffIDBetween; } public SY_SysValuesLogQuery setLastModifiedByStaffIDBetween(ArrayList value) { this.LastModifiedByStaffIDBetween = value; return this; } public ArrayList getLastModifiedByStaffIDIn() { return LastModifiedByStaffIDIn; } public SY_SysValuesLogQuery setLastModifiedByStaffIDIn(ArrayList value) { this.LastModifiedByStaffIDIn = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public SY_SysValuesLogQuery setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getLastSavedDateTimeGreaterThanOrEqualTo() { return LastSavedDateTimeGreaterThanOrEqualTo; } public SY_SysValuesLogQuery setLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.LastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeGreaterThan() { return LastSavedDateTimeGreaterThan; } public SY_SysValuesLogQuery setLastSavedDateTimeGreaterThan(Date value) { this.LastSavedDateTimeGreaterThan = value; return this; } public Date getLastSavedDateTimeLessThan() { return LastSavedDateTimeLessThan; } public SY_SysValuesLogQuery setLastSavedDateTimeLessThan(Date value) { this.LastSavedDateTimeLessThan = value; return this; } public Date getLastSavedDateTimeLessThanOrEqualTo() { return LastSavedDateTimeLessThanOrEqualTo; } public SY_SysValuesLogQuery setLastSavedDateTimeLessThanOrEqualTo(Date value) { this.LastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeNotEqualTo() { return LastSavedDateTimeNotEqualTo; } public SY_SysValuesLogQuery setLastSavedDateTimeNotEqualTo(Date value) { this.LastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getLastSavedDateTimeBetween() { return LastSavedDateTimeBetween; } public SY_SysValuesLogQuery setLastSavedDateTimeBetween(ArrayList value) { this.LastSavedDateTimeBetween = value; return this; } public ArrayList getLastSavedDateTimeIn() { return LastSavedDateTimeIn; } public SY_SysValuesLogQuery setLastSavedDateTimeIn(ArrayList value) { this.LastSavedDateTimeIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class SY_TabControlSettingsQuery extends QueryDb implements IReturn> { public String RecID = null; public String RecIDStartsWith = null; public String RecIDEndsWith = null; public String RecIDContains = null; public String RecIDLike = null; public ArrayList RecIDBetween = null; public ArrayList RecIDIn = null; public String HR_Staff_RecID = null; public String HR_Staff_RecIDStartsWith = null; public String HR_Staff_RecIDEndsWith = null; public String HR_Staff_RecIDContains = null; public String HR_Staff_RecIDLike = null; public ArrayList HR_Staff_RecIDBetween = null; public ArrayList HR_Staff_RecIDIn = null; public String Context = null; public String ContextStartsWith = null; public String ContextEndsWith = null; public String ContextContains = null; public String ContextLike = null; public ArrayList ContextBetween = null; public ArrayList ContextIn = null; public String FullName = null; public String FullNameStartsWith = null; public String FullNameEndsWith = null; public String FullNameContains = null; public String FullNameLike = null; public ArrayList FullNameBetween = null; public ArrayList FullNameIn = null; public Boolean UseCustomTabs = null; public String TabOrderXML = null; public String TabOrderXMLStartsWith = null; public String TabOrderXMLEndsWith = null; public String TabOrderXMLContains = null; public String TabOrderXMLLike = null; public ArrayList TabOrderXMLBetween = null; public ArrayList TabOrderXMLIn = null; public ArrayList RowHash = null; public String getRecID() { return RecID; } public SY_TabControlSettingsQuery setRecID(String value) { this.RecID = value; return this; } public String getRecIDStartsWith() { return RecIDStartsWith; } public SY_TabControlSettingsQuery setRecIDStartsWith(String value) { this.RecIDStartsWith = value; return this; } public String getRecIDEndsWith() { return RecIDEndsWith; } public SY_TabControlSettingsQuery setRecIDEndsWith(String value) { this.RecIDEndsWith = value; return this; } public String getRecIDContains() { return RecIDContains; } public SY_TabControlSettingsQuery setRecIDContains(String value) { this.RecIDContains = value; return this; } public String getRecIDLike() { return RecIDLike; } public SY_TabControlSettingsQuery setRecIDLike(String value) { this.RecIDLike = value; return this; } public ArrayList getRecIDBetween() { return RecIDBetween; } public SY_TabControlSettingsQuery setRecIDBetween(ArrayList value) { this.RecIDBetween = value; return this; } public ArrayList getRecIDIn() { return RecIDIn; } public SY_TabControlSettingsQuery setRecIDIn(ArrayList value) { this.RecIDIn = value; return this; } public String getHrStaffRecID() { return HR_Staff_RecID; } public SY_TabControlSettingsQuery setHrStaffRecID(String value) { this.HR_Staff_RecID = value; return this; } public String getHrStaffRecIDStartsWith() { return HR_Staff_RecIDStartsWith; } public SY_TabControlSettingsQuery setHrStaffRecIDStartsWith(String value) { this.HR_Staff_RecIDStartsWith = value; return this; } public String getHrStaffRecIDEndsWith() { return HR_Staff_RecIDEndsWith; } public SY_TabControlSettingsQuery setHrStaffRecIDEndsWith(String value) { this.HR_Staff_RecIDEndsWith = value; return this; } public String getHrStaffRecIDContains() { return HR_Staff_RecIDContains; } public SY_TabControlSettingsQuery setHrStaffRecIDContains(String value) { this.HR_Staff_RecIDContains = value; return this; } public String getHrStaffRecIDLike() { return HR_Staff_RecIDLike; } public SY_TabControlSettingsQuery setHrStaffRecIDLike(String value) { this.HR_Staff_RecIDLike = value; return this; } public ArrayList getHrStaffRecIDBetween() { return HR_Staff_RecIDBetween; } public SY_TabControlSettingsQuery setHrStaffRecIDBetween(ArrayList value) { this.HR_Staff_RecIDBetween = value; return this; } public ArrayList getHrStaffRecIDIn() { return HR_Staff_RecIDIn; } public SY_TabControlSettingsQuery setHrStaffRecIDIn(ArrayList value) { this.HR_Staff_RecIDIn = value; return this; } public String getContext() { return Context; } public SY_TabControlSettingsQuery setContext(String value) { this.Context = value; return this; } public String getContextStartsWith() { return ContextStartsWith; } public SY_TabControlSettingsQuery setContextStartsWith(String value) { this.ContextStartsWith = value; return this; } public String getContextEndsWith() { return ContextEndsWith; } public SY_TabControlSettingsQuery setContextEndsWith(String value) { this.ContextEndsWith = value; return this; } public String getContextContains() { return ContextContains; } public SY_TabControlSettingsQuery setContextContains(String value) { this.ContextContains = value; return this; } public String getContextLike() { return ContextLike; } public SY_TabControlSettingsQuery setContextLike(String value) { this.ContextLike = value; return this; } public ArrayList getContextBetween() { return ContextBetween; } public SY_TabControlSettingsQuery setContextBetween(ArrayList value) { this.ContextBetween = value; return this; } public ArrayList getContextIn() { return ContextIn; } public SY_TabControlSettingsQuery setContextIn(ArrayList value) { this.ContextIn = value; return this; } public String getFullName() { return FullName; } public SY_TabControlSettingsQuery setFullName(String value) { this.FullName = value; return this; } public String getFullNameStartsWith() { return FullNameStartsWith; } public SY_TabControlSettingsQuery setFullNameStartsWith(String value) { this.FullNameStartsWith = value; return this; } public String getFullNameEndsWith() { return FullNameEndsWith; } public SY_TabControlSettingsQuery setFullNameEndsWith(String value) { this.FullNameEndsWith = value; return this; } public String getFullNameContains() { return FullNameContains; } public SY_TabControlSettingsQuery setFullNameContains(String value) { this.FullNameContains = value; return this; } public String getFullNameLike() { return FullNameLike; } public SY_TabControlSettingsQuery setFullNameLike(String value) { this.FullNameLike = value; return this; } public ArrayList getFullNameBetween() { return FullNameBetween; } public SY_TabControlSettingsQuery setFullNameBetween(ArrayList value) { this.FullNameBetween = value; return this; } public ArrayList getFullNameIn() { return FullNameIn; } public SY_TabControlSettingsQuery setFullNameIn(ArrayList value) { this.FullNameIn = value; return this; } public Boolean isUseCustomTabs() { return UseCustomTabs; } public SY_TabControlSettingsQuery setUseCustomTabs(Boolean value) { this.UseCustomTabs = value; return this; } public String getTabOrderXML() { return TabOrderXML; } public SY_TabControlSettingsQuery setTabOrderXML(String value) { this.TabOrderXML = value; return this; } public String getTabOrderXMLStartsWith() { return TabOrderXMLStartsWith; } public SY_TabControlSettingsQuery setTabOrderXMLStartsWith(String value) { this.TabOrderXMLStartsWith = value; return this; } public String getTabOrderXMLEndsWith() { return TabOrderXMLEndsWith; } public SY_TabControlSettingsQuery setTabOrderXMLEndsWith(String value) { this.TabOrderXMLEndsWith = value; return this; } public String getTabOrderXMLContains() { return TabOrderXMLContains; } public SY_TabControlSettingsQuery setTabOrderXMLContains(String value) { this.TabOrderXMLContains = value; return this; } public String getTabOrderXMLLike() { return TabOrderXMLLike; } public SY_TabControlSettingsQuery setTabOrderXMLLike(String value) { this.TabOrderXMLLike = value; return this; } public ArrayList getTabOrderXMLBetween() { return TabOrderXMLBetween; } public SY_TabControlSettingsQuery setTabOrderXMLBetween(ArrayList value) { this.TabOrderXMLBetween = value; return this; } public ArrayList getTabOrderXMLIn() { return TabOrderXMLIn; } public SY_TabControlSettingsQuery setTabOrderXMLIn(ArrayList value) { this.TabOrderXMLIn = value; return this; } public ArrayList getRowHash() { return RowHash; } public SY_TabControlSettingsQuery setRowHash(ArrayList value) { this.RowHash = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class SY_TabSettingsQuery extends QueryDb implements IReturn> { public String RecID = null; public String RecIDStartsWith = null; public String RecIDEndsWith = null; public String RecIDContains = null; public String RecIDLike = null; public ArrayList RecIDBetween = null; public ArrayList RecIDIn = null; public String SY_TabControlSettings_RecID = null; public String SY_TabControlSettings_RecIDStartsWith = null; public String SY_TabControlSettings_RecIDEndsWith = null; public String SY_TabControlSettings_RecIDContains = null; public String SY_TabControlSettings_RecIDLike = null; public ArrayList SY_TabControlSettings_RecIDBetween = null; public ArrayList SY_TabControlSettings_RecIDIn = null; public String TabKey = null; public String TabKeyStartsWith = null; public String TabKeyEndsWith = null; public String TabKeyContains = null; public String TabKeyLike = null; public ArrayList TabKeyBetween = null; public ArrayList TabKeyIn = null; public String Text = null; public String TextStartsWith = null; public String TextEndsWith = null; public String TextContains = null; public String TextLike = null; public ArrayList TextBetween = null; public ArrayList TextIn = null; public Boolean Visible = null; public ArrayList RowHash = null; public String getRecID() { return RecID; } public SY_TabSettingsQuery setRecID(String value) { this.RecID = value; return this; } public String getRecIDStartsWith() { return RecIDStartsWith; } public SY_TabSettingsQuery setRecIDStartsWith(String value) { this.RecIDStartsWith = value; return this; } public String getRecIDEndsWith() { return RecIDEndsWith; } public SY_TabSettingsQuery setRecIDEndsWith(String value) { this.RecIDEndsWith = value; return this; } public String getRecIDContains() { return RecIDContains; } public SY_TabSettingsQuery setRecIDContains(String value) { this.RecIDContains = value; return this; } public String getRecIDLike() { return RecIDLike; } public SY_TabSettingsQuery setRecIDLike(String value) { this.RecIDLike = value; return this; } public ArrayList getRecIDBetween() { return RecIDBetween; } public SY_TabSettingsQuery setRecIDBetween(ArrayList value) { this.RecIDBetween = value; return this; } public ArrayList getRecIDIn() { return RecIDIn; } public SY_TabSettingsQuery setRecIDIn(ArrayList value) { this.RecIDIn = value; return this; } public String getSyTabControlSettingsRecID() { return SY_TabControlSettings_RecID; } public SY_TabSettingsQuery setSyTabControlSettingsRecID(String value) { this.SY_TabControlSettings_RecID = value; return this; } public String getSyTabControlSettingsRecIDStartsWith() { return SY_TabControlSettings_RecIDStartsWith; } public SY_TabSettingsQuery setSyTabControlSettingsRecIDStartsWith(String value) { this.SY_TabControlSettings_RecIDStartsWith = value; return this; } public String getSyTabControlSettingsRecIDEndsWith() { return SY_TabControlSettings_RecIDEndsWith; } public SY_TabSettingsQuery setSyTabControlSettingsRecIDEndsWith(String value) { this.SY_TabControlSettings_RecIDEndsWith = value; return this; } public String getSyTabControlSettingsRecIDContains() { return SY_TabControlSettings_RecIDContains; } public SY_TabSettingsQuery setSyTabControlSettingsRecIDContains(String value) { this.SY_TabControlSettings_RecIDContains = value; return this; } public String getSyTabControlSettingsRecIDLike() { return SY_TabControlSettings_RecIDLike; } public SY_TabSettingsQuery setSyTabControlSettingsRecIDLike(String value) { this.SY_TabControlSettings_RecIDLike = value; return this; } public ArrayList getSyTabControlSettingsRecIDBetween() { return SY_TabControlSettings_RecIDBetween; } public SY_TabSettingsQuery setSyTabControlSettingsRecIDBetween(ArrayList value) { this.SY_TabControlSettings_RecIDBetween = value; return this; } public ArrayList getSyTabControlSettingsRecIDIn() { return SY_TabControlSettings_RecIDIn; } public SY_TabSettingsQuery setSyTabControlSettingsRecIDIn(ArrayList value) { this.SY_TabControlSettings_RecIDIn = value; return this; } public String getTabKey() { return TabKey; } public SY_TabSettingsQuery setTabKey(String value) { this.TabKey = value; return this; } public String getTabKeyStartsWith() { return TabKeyStartsWith; } public SY_TabSettingsQuery setTabKeyStartsWith(String value) { this.TabKeyStartsWith = value; return this; } public String getTabKeyEndsWith() { return TabKeyEndsWith; } public SY_TabSettingsQuery setTabKeyEndsWith(String value) { this.TabKeyEndsWith = value; return this; } public String getTabKeyContains() { return TabKeyContains; } public SY_TabSettingsQuery setTabKeyContains(String value) { this.TabKeyContains = value; return this; } public String getTabKeyLike() { return TabKeyLike; } public SY_TabSettingsQuery setTabKeyLike(String value) { this.TabKeyLike = value; return this; } public ArrayList getTabKeyBetween() { return TabKeyBetween; } public SY_TabSettingsQuery setTabKeyBetween(ArrayList value) { this.TabKeyBetween = value; return this; } public ArrayList getTabKeyIn() { return TabKeyIn; } public SY_TabSettingsQuery setTabKeyIn(ArrayList value) { this.TabKeyIn = value; return this; } public String getText() { return Text; } public SY_TabSettingsQuery setText(String value) { this.Text = value; return this; } public String getTextStartsWith() { return TextStartsWith; } public SY_TabSettingsQuery setTextStartsWith(String value) { this.TextStartsWith = value; return this; } public String getTextEndsWith() { return TextEndsWith; } public SY_TabSettingsQuery setTextEndsWith(String value) { this.TextEndsWith = value; return this; } public String getTextContains() { return TextContains; } public SY_TabSettingsQuery setTextContains(String value) { this.TextContains = value; return this; } public String getTextLike() { return TextLike; } public SY_TabSettingsQuery setTextLike(String value) { this.TextLike = value; return this; } public ArrayList getTextBetween() { return TextBetween; } public SY_TabSettingsQuery setTextBetween(ArrayList value) { this.TextBetween = value; return this; } public ArrayList getTextIn() { return TextIn; } public SY_TabSettingsQuery setTextIn(ArrayList value) { this.TextIn = value; return this; } public Boolean isVisible() { return Visible; } public SY_TabSettingsQuery setVisible(Boolean value) { this.Visible = value; return this; } public ArrayList getRowHash() { return RowHash; } public SY_TabSettingsQuery setRowHash(ArrayList value) { this.RowHash = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class SY_UpgradeLogQuery extends QueryDb implements IReturn> { public Integer PK = null; public Integer PKGreaterThanOrEqualTo = null; public Integer PKGreaterThan = null; public Integer PKLessThan = null; public Integer PKLessThanOrEqualTo = null; public Integer PKNotEqualTo = null; public ArrayList PKBetween = null; public ArrayList PKIn = null; public Integer DatabaseMajor = null; public Integer DatabaseMajorGreaterThanOrEqualTo = null; public Integer DatabaseMajorGreaterThan = null; public Integer DatabaseMajorLessThan = null; public Integer DatabaseMajorLessThanOrEqualTo = null; public Integer DatabaseMajorNotEqualTo = null; public ArrayList DatabaseMajorBetween = null; public ArrayList DatabaseMajorIn = null; public Integer DatabaseMinor = null; public Integer DatabaseMinorGreaterThanOrEqualTo = null; public Integer DatabaseMinorGreaterThan = null; public Integer DatabaseMinorLessThan = null; public Integer DatabaseMinorLessThanOrEqualTo = null; public Integer DatabaseMinorNotEqualTo = null; public ArrayList DatabaseMinorBetween = null; public ArrayList DatabaseMinorIn = null; public Integer DatabaseRelease = null; public Integer DatabaseReleaseGreaterThanOrEqualTo = null; public Integer DatabaseReleaseGreaterThan = null; public Integer DatabaseReleaseLessThan = null; public Integer DatabaseReleaseLessThanOrEqualTo = null; public Integer DatabaseReleaseNotEqualTo = null; public ArrayList DatabaseReleaseBetween = null; public ArrayList DatabaseReleaseIn = null; public Integer getPk() { return PK; } public SY_UpgradeLogQuery setPk(Integer value) { this.PK = value; return this; } public Integer getPkGreaterThanOrEqualTo() { return PKGreaterThanOrEqualTo; } public SY_UpgradeLogQuery setPkGreaterThanOrEqualTo(Integer value) { this.PKGreaterThanOrEqualTo = value; return this; } public Integer getPkGreaterThan() { return PKGreaterThan; } public SY_UpgradeLogQuery setPkGreaterThan(Integer value) { this.PKGreaterThan = value; return this; } public Integer getPkLessThan() { return PKLessThan; } public SY_UpgradeLogQuery setPkLessThan(Integer value) { this.PKLessThan = value; return this; } public Integer getPkLessThanOrEqualTo() { return PKLessThanOrEqualTo; } public SY_UpgradeLogQuery setPkLessThanOrEqualTo(Integer value) { this.PKLessThanOrEqualTo = value; return this; } public Integer getPkNotEqualTo() { return PKNotEqualTo; } public SY_UpgradeLogQuery setPkNotEqualTo(Integer value) { this.PKNotEqualTo = value; return this; } public ArrayList getPkBetween() { return PKBetween; } public SY_UpgradeLogQuery setPkBetween(ArrayList value) { this.PKBetween = value; return this; } public ArrayList getPkIn() { return PKIn; } public SY_UpgradeLogQuery setPkIn(ArrayList value) { this.PKIn = value; return this; } public Integer getDatabaseMajor() { return DatabaseMajor; } public SY_UpgradeLogQuery setDatabaseMajor(Integer value) { this.DatabaseMajor = value; return this; } public Integer getDatabaseMajorGreaterThanOrEqualTo() { return DatabaseMajorGreaterThanOrEqualTo; } public SY_UpgradeLogQuery setDatabaseMajorGreaterThanOrEqualTo(Integer value) { this.DatabaseMajorGreaterThanOrEqualTo = value; return this; } public Integer getDatabaseMajorGreaterThan() { return DatabaseMajorGreaterThan; } public SY_UpgradeLogQuery setDatabaseMajorGreaterThan(Integer value) { this.DatabaseMajorGreaterThan = value; return this; } public Integer getDatabaseMajorLessThan() { return DatabaseMajorLessThan; } public SY_UpgradeLogQuery setDatabaseMajorLessThan(Integer value) { this.DatabaseMajorLessThan = value; return this; } public Integer getDatabaseMajorLessThanOrEqualTo() { return DatabaseMajorLessThanOrEqualTo; } public SY_UpgradeLogQuery setDatabaseMajorLessThanOrEqualTo(Integer value) { this.DatabaseMajorLessThanOrEqualTo = value; return this; } public Integer getDatabaseMajorNotEqualTo() { return DatabaseMajorNotEqualTo; } public SY_UpgradeLogQuery setDatabaseMajorNotEqualTo(Integer value) { this.DatabaseMajorNotEqualTo = value; return this; } public ArrayList getDatabaseMajorBetween() { return DatabaseMajorBetween; } public SY_UpgradeLogQuery setDatabaseMajorBetween(ArrayList value) { this.DatabaseMajorBetween = value; return this; } public ArrayList getDatabaseMajorIn() { return DatabaseMajorIn; } public SY_UpgradeLogQuery setDatabaseMajorIn(ArrayList value) { this.DatabaseMajorIn = value; return this; } public Integer getDatabaseMinor() { return DatabaseMinor; } public SY_UpgradeLogQuery setDatabaseMinor(Integer value) { this.DatabaseMinor = value; return this; } public Integer getDatabaseMinorGreaterThanOrEqualTo() { return DatabaseMinorGreaterThanOrEqualTo; } public SY_UpgradeLogQuery setDatabaseMinorGreaterThanOrEqualTo(Integer value) { this.DatabaseMinorGreaterThanOrEqualTo = value; return this; } public Integer getDatabaseMinorGreaterThan() { return DatabaseMinorGreaterThan; } public SY_UpgradeLogQuery setDatabaseMinorGreaterThan(Integer value) { this.DatabaseMinorGreaterThan = value; return this; } public Integer getDatabaseMinorLessThan() { return DatabaseMinorLessThan; } public SY_UpgradeLogQuery setDatabaseMinorLessThan(Integer value) { this.DatabaseMinorLessThan = value; return this; } public Integer getDatabaseMinorLessThanOrEqualTo() { return DatabaseMinorLessThanOrEqualTo; } public SY_UpgradeLogQuery setDatabaseMinorLessThanOrEqualTo(Integer value) { this.DatabaseMinorLessThanOrEqualTo = value; return this; } public Integer getDatabaseMinorNotEqualTo() { return DatabaseMinorNotEqualTo; } public SY_UpgradeLogQuery setDatabaseMinorNotEqualTo(Integer value) { this.DatabaseMinorNotEqualTo = value; return this; } public ArrayList getDatabaseMinorBetween() { return DatabaseMinorBetween; } public SY_UpgradeLogQuery setDatabaseMinorBetween(ArrayList value) { this.DatabaseMinorBetween = value; return this; } public ArrayList getDatabaseMinorIn() { return DatabaseMinorIn; } public SY_UpgradeLogQuery setDatabaseMinorIn(ArrayList value) { this.DatabaseMinorIn = value; return this; } public Integer getDatabaseRelease() { return DatabaseRelease; } public SY_UpgradeLogQuery setDatabaseRelease(Integer value) { this.DatabaseRelease = value; return this; } public Integer getDatabaseReleaseGreaterThanOrEqualTo() { return DatabaseReleaseGreaterThanOrEqualTo; } public SY_UpgradeLogQuery setDatabaseReleaseGreaterThanOrEqualTo(Integer value) { this.DatabaseReleaseGreaterThanOrEqualTo = value; return this; } public Integer getDatabaseReleaseGreaterThan() { return DatabaseReleaseGreaterThan; } public SY_UpgradeLogQuery setDatabaseReleaseGreaterThan(Integer value) { this.DatabaseReleaseGreaterThan = value; return this; } public Integer getDatabaseReleaseLessThan() { return DatabaseReleaseLessThan; } public SY_UpgradeLogQuery setDatabaseReleaseLessThan(Integer value) { this.DatabaseReleaseLessThan = value; return this; } public Integer getDatabaseReleaseLessThanOrEqualTo() { return DatabaseReleaseLessThanOrEqualTo; } public SY_UpgradeLogQuery setDatabaseReleaseLessThanOrEqualTo(Integer value) { this.DatabaseReleaseLessThanOrEqualTo = value; return this; } public Integer getDatabaseReleaseNotEqualTo() { return DatabaseReleaseNotEqualTo; } public SY_UpgradeLogQuery setDatabaseReleaseNotEqualTo(Integer value) { this.DatabaseReleaseNotEqualTo = value; return this; } public ArrayList getDatabaseReleaseBetween() { return DatabaseReleaseBetween; } public SY_UpgradeLogQuery setDatabaseReleaseBetween(ArrayList value) { this.DatabaseReleaseBetween = value; return this; } public ArrayList getDatabaseReleaseIn() { return DatabaseReleaseIn; } public SY_UpgradeLogQuery setDatabaseReleaseIn(ArrayList value) { this.DatabaseReleaseIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class SY_UpgradeScriptsQuery extends QueryDb implements IReturn> { public String RecId = null; public String RecIdStartsWith = null; public String RecIdEndsWith = null; public String RecIdContains = null; public String RecIdLike = null; public ArrayList RecIdBetween = null; public ArrayList RecIdIn = null; public Integer PK = null; public Integer PKGreaterThanOrEqualTo = null; public Integer PKGreaterThan = null; public Integer PKLessThan = null; public Integer PKLessThanOrEqualTo = null; public Integer PKNotEqualTo = null; public ArrayList PKBetween = null; public ArrayList PKIn = null; public Short DatabaseMajor = null; public Short DatabaseMajorGreaterThanOrEqualTo = null; public Short DatabaseMajorGreaterThan = null; public Short DatabaseMajorLessThan = null; public Short DatabaseMajorLessThanOrEqualTo = null; public Short DatabaseMajorNotEqualTo = null; public ArrayList DatabaseMajorBetween = null; public ArrayList DatabaseMajorIn = null; public Short DatabaseMinor = null; public Short DatabaseMinorGreaterThanOrEqualTo = null; public Short DatabaseMinorGreaterThan = null; public Short DatabaseMinorLessThan = null; public Short DatabaseMinorLessThanOrEqualTo = null; public Short DatabaseMinorNotEqualTo = null; public ArrayList DatabaseMinorBetween = null; public ArrayList DatabaseMinorIn = null; public Short DatabaseRelease = null; public Short DatabaseReleaseGreaterThanOrEqualTo = null; public Short DatabaseReleaseGreaterThan = null; public Short DatabaseReleaseLessThan = null; public Short DatabaseReleaseLessThanOrEqualTo = null; public Short DatabaseReleaseNotEqualTo = null; public ArrayList DatabaseReleaseBetween = null; public ArrayList DatabaseReleaseIn = null; public Integer ScriptOrder = null; public Integer ScriptOrderGreaterThanOrEqualTo = null; public Integer ScriptOrderGreaterThan = null; public Integer ScriptOrderLessThan = null; public Integer ScriptOrderLessThanOrEqualTo = null; public Integer ScriptOrderNotEqualTo = null; public ArrayList ScriptOrderBetween = null; public ArrayList ScriptOrderIn = null; public String Script = null; public String ScriptStartsWith = null; public String ScriptEndsWith = null; public String ScriptContains = null; public String ScriptLike = null; public ArrayList ScriptBetween = null; public ArrayList ScriptIn = null; public Short Status = null; public Short StatusGreaterThanOrEqualTo = null; public Short StatusGreaterThan = null; public Short StatusLessThan = null; public Short StatusLessThanOrEqualTo = null; public Short StatusNotEqualTo = null; public ArrayList StatusBetween = null; public ArrayList StatusIn = null; public String Message = null; public String MessageStartsWith = null; public String MessageEndsWith = null; public String MessageContains = null; public String MessageLike = null; public ArrayList MessageBetween = null; public ArrayList MessageIn = null; public Short ScriptType = null; public Short ScriptTypeGreaterThanOrEqualTo = null; public Short ScriptTypeGreaterThan = null; public Short ScriptTypeLessThan = null; public Short ScriptTypeLessThanOrEqualTo = null; public Short ScriptTypeNotEqualTo = null; public ArrayList ScriptTypeBetween = null; public ArrayList ScriptTypeIn = null; public ArrayList RowHash = null; public String getRecId() { return RecId; } public SY_UpgradeScriptsQuery setRecId(String value) { this.RecId = value; return this; } public String getRecIdStartsWith() { return RecIdStartsWith; } public SY_UpgradeScriptsQuery setRecIdStartsWith(String value) { this.RecIdStartsWith = value; return this; } public String getRecIdEndsWith() { return RecIdEndsWith; } public SY_UpgradeScriptsQuery setRecIdEndsWith(String value) { this.RecIdEndsWith = value; return this; } public String getRecIdContains() { return RecIdContains; } public SY_UpgradeScriptsQuery setRecIdContains(String value) { this.RecIdContains = value; return this; } public String getRecIdLike() { return RecIdLike; } public SY_UpgradeScriptsQuery setRecIdLike(String value) { this.RecIdLike = value; return this; } public ArrayList getRecIdBetween() { return RecIdBetween; } public SY_UpgradeScriptsQuery setRecIdBetween(ArrayList value) { this.RecIdBetween = value; return this; } public ArrayList getRecIdIn() { return RecIdIn; } public SY_UpgradeScriptsQuery setRecIdIn(ArrayList value) { this.RecIdIn = value; return this; } public Integer getPk() { return PK; } public SY_UpgradeScriptsQuery setPk(Integer value) { this.PK = value; return this; } public Integer getPkGreaterThanOrEqualTo() { return PKGreaterThanOrEqualTo; } public SY_UpgradeScriptsQuery setPkGreaterThanOrEqualTo(Integer value) { this.PKGreaterThanOrEqualTo = value; return this; } public Integer getPkGreaterThan() { return PKGreaterThan; } public SY_UpgradeScriptsQuery setPkGreaterThan(Integer value) { this.PKGreaterThan = value; return this; } public Integer getPkLessThan() { return PKLessThan; } public SY_UpgradeScriptsQuery setPkLessThan(Integer value) { this.PKLessThan = value; return this; } public Integer getPkLessThanOrEqualTo() { return PKLessThanOrEqualTo; } public SY_UpgradeScriptsQuery setPkLessThanOrEqualTo(Integer value) { this.PKLessThanOrEqualTo = value; return this; } public Integer getPkNotEqualTo() { return PKNotEqualTo; } public SY_UpgradeScriptsQuery setPkNotEqualTo(Integer value) { this.PKNotEqualTo = value; return this; } public ArrayList getPkBetween() { return PKBetween; } public SY_UpgradeScriptsQuery setPkBetween(ArrayList value) { this.PKBetween = value; return this; } public ArrayList getPkIn() { return PKIn; } public SY_UpgradeScriptsQuery setPkIn(ArrayList value) { this.PKIn = value; return this; } public Short getDatabaseMajor() { return DatabaseMajor; } public SY_UpgradeScriptsQuery setDatabaseMajor(Short value) { this.DatabaseMajor = value; return this; } public Short getDatabaseMajorGreaterThanOrEqualTo() { return DatabaseMajorGreaterThanOrEqualTo; } public SY_UpgradeScriptsQuery setDatabaseMajorGreaterThanOrEqualTo(Short value) { this.DatabaseMajorGreaterThanOrEqualTo = value; return this; } public Short getDatabaseMajorGreaterThan() { return DatabaseMajorGreaterThan; } public SY_UpgradeScriptsQuery setDatabaseMajorGreaterThan(Short value) { this.DatabaseMajorGreaterThan = value; return this; } public Short getDatabaseMajorLessThan() { return DatabaseMajorLessThan; } public SY_UpgradeScriptsQuery setDatabaseMajorLessThan(Short value) { this.DatabaseMajorLessThan = value; return this; } public Short getDatabaseMajorLessThanOrEqualTo() { return DatabaseMajorLessThanOrEqualTo; } public SY_UpgradeScriptsQuery setDatabaseMajorLessThanOrEqualTo(Short value) { this.DatabaseMajorLessThanOrEqualTo = value; return this; } public Short getDatabaseMajorNotEqualTo() { return DatabaseMajorNotEqualTo; } public SY_UpgradeScriptsQuery setDatabaseMajorNotEqualTo(Short value) { this.DatabaseMajorNotEqualTo = value; return this; } public ArrayList getDatabaseMajorBetween() { return DatabaseMajorBetween; } public SY_UpgradeScriptsQuery setDatabaseMajorBetween(ArrayList value) { this.DatabaseMajorBetween = value; return this; } public ArrayList getDatabaseMajorIn() { return DatabaseMajorIn; } public SY_UpgradeScriptsQuery setDatabaseMajorIn(ArrayList value) { this.DatabaseMajorIn = value; return this; } public Short getDatabaseMinor() { return DatabaseMinor; } public SY_UpgradeScriptsQuery setDatabaseMinor(Short value) { this.DatabaseMinor = value; return this; } public Short getDatabaseMinorGreaterThanOrEqualTo() { return DatabaseMinorGreaterThanOrEqualTo; } public SY_UpgradeScriptsQuery setDatabaseMinorGreaterThanOrEqualTo(Short value) { this.DatabaseMinorGreaterThanOrEqualTo = value; return this; } public Short getDatabaseMinorGreaterThan() { return DatabaseMinorGreaterThan; } public SY_UpgradeScriptsQuery setDatabaseMinorGreaterThan(Short value) { this.DatabaseMinorGreaterThan = value; return this; } public Short getDatabaseMinorLessThan() { return DatabaseMinorLessThan; } public SY_UpgradeScriptsQuery setDatabaseMinorLessThan(Short value) { this.DatabaseMinorLessThan = value; return this; } public Short getDatabaseMinorLessThanOrEqualTo() { return DatabaseMinorLessThanOrEqualTo; } public SY_UpgradeScriptsQuery setDatabaseMinorLessThanOrEqualTo(Short value) { this.DatabaseMinorLessThanOrEqualTo = value; return this; } public Short getDatabaseMinorNotEqualTo() { return DatabaseMinorNotEqualTo; } public SY_UpgradeScriptsQuery setDatabaseMinorNotEqualTo(Short value) { this.DatabaseMinorNotEqualTo = value; return this; } public ArrayList getDatabaseMinorBetween() { return DatabaseMinorBetween; } public SY_UpgradeScriptsQuery setDatabaseMinorBetween(ArrayList value) { this.DatabaseMinorBetween = value; return this; } public ArrayList getDatabaseMinorIn() { return DatabaseMinorIn; } public SY_UpgradeScriptsQuery setDatabaseMinorIn(ArrayList value) { this.DatabaseMinorIn = value; return this; } public Short getDatabaseRelease() { return DatabaseRelease; } public SY_UpgradeScriptsQuery setDatabaseRelease(Short value) { this.DatabaseRelease = value; return this; } public Short getDatabaseReleaseGreaterThanOrEqualTo() { return DatabaseReleaseGreaterThanOrEqualTo; } public SY_UpgradeScriptsQuery setDatabaseReleaseGreaterThanOrEqualTo(Short value) { this.DatabaseReleaseGreaterThanOrEqualTo = value; return this; } public Short getDatabaseReleaseGreaterThan() { return DatabaseReleaseGreaterThan; } public SY_UpgradeScriptsQuery setDatabaseReleaseGreaterThan(Short value) { this.DatabaseReleaseGreaterThan = value; return this; } public Short getDatabaseReleaseLessThan() { return DatabaseReleaseLessThan; } public SY_UpgradeScriptsQuery setDatabaseReleaseLessThan(Short value) { this.DatabaseReleaseLessThan = value; return this; } public Short getDatabaseReleaseLessThanOrEqualTo() { return DatabaseReleaseLessThanOrEqualTo; } public SY_UpgradeScriptsQuery setDatabaseReleaseLessThanOrEqualTo(Short value) { this.DatabaseReleaseLessThanOrEqualTo = value; return this; } public Short getDatabaseReleaseNotEqualTo() { return DatabaseReleaseNotEqualTo; } public SY_UpgradeScriptsQuery setDatabaseReleaseNotEqualTo(Short value) { this.DatabaseReleaseNotEqualTo = value; return this; } public ArrayList getDatabaseReleaseBetween() { return DatabaseReleaseBetween; } public SY_UpgradeScriptsQuery setDatabaseReleaseBetween(ArrayList value) { this.DatabaseReleaseBetween = value; return this; } public ArrayList getDatabaseReleaseIn() { return DatabaseReleaseIn; } public SY_UpgradeScriptsQuery setDatabaseReleaseIn(ArrayList value) { this.DatabaseReleaseIn = value; return this; } public Integer getScriptOrder() { return ScriptOrder; } public SY_UpgradeScriptsQuery setScriptOrder(Integer value) { this.ScriptOrder = value; return this; } public Integer getScriptOrderGreaterThanOrEqualTo() { return ScriptOrderGreaterThanOrEqualTo; } public SY_UpgradeScriptsQuery setScriptOrderGreaterThanOrEqualTo(Integer value) { this.ScriptOrderGreaterThanOrEqualTo = value; return this; } public Integer getScriptOrderGreaterThan() { return ScriptOrderGreaterThan; } public SY_UpgradeScriptsQuery setScriptOrderGreaterThan(Integer value) { this.ScriptOrderGreaterThan = value; return this; } public Integer getScriptOrderLessThan() { return ScriptOrderLessThan; } public SY_UpgradeScriptsQuery setScriptOrderLessThan(Integer value) { this.ScriptOrderLessThan = value; return this; } public Integer getScriptOrderLessThanOrEqualTo() { return ScriptOrderLessThanOrEqualTo; } public SY_UpgradeScriptsQuery setScriptOrderLessThanOrEqualTo(Integer value) { this.ScriptOrderLessThanOrEqualTo = value; return this; } public Integer getScriptOrderNotEqualTo() { return ScriptOrderNotEqualTo; } public SY_UpgradeScriptsQuery setScriptOrderNotEqualTo(Integer value) { this.ScriptOrderNotEqualTo = value; return this; } public ArrayList getScriptOrderBetween() { return ScriptOrderBetween; } public SY_UpgradeScriptsQuery setScriptOrderBetween(ArrayList value) { this.ScriptOrderBetween = value; return this; } public ArrayList getScriptOrderIn() { return ScriptOrderIn; } public SY_UpgradeScriptsQuery setScriptOrderIn(ArrayList value) { this.ScriptOrderIn = value; return this; } public String getScript() { return Script; } public SY_UpgradeScriptsQuery setScript(String value) { this.Script = value; return this; } public String getScriptStartsWith() { return ScriptStartsWith; } public SY_UpgradeScriptsQuery setScriptStartsWith(String value) { this.ScriptStartsWith = value; return this; } public String getScriptEndsWith() { return ScriptEndsWith; } public SY_UpgradeScriptsQuery setScriptEndsWith(String value) { this.ScriptEndsWith = value; return this; } public String getScriptContains() { return ScriptContains; } public SY_UpgradeScriptsQuery setScriptContains(String value) { this.ScriptContains = value; return this; } public String getScriptLike() { return ScriptLike; } public SY_UpgradeScriptsQuery setScriptLike(String value) { this.ScriptLike = value; return this; } public ArrayList getScriptBetween() { return ScriptBetween; } public SY_UpgradeScriptsQuery setScriptBetween(ArrayList value) { this.ScriptBetween = value; return this; } public ArrayList getScriptIn() { return ScriptIn; } public SY_UpgradeScriptsQuery setScriptIn(ArrayList value) { this.ScriptIn = value; return this; } public Short getStatus() { return Status; } public SY_UpgradeScriptsQuery setStatus(Short value) { this.Status = value; return this; } public Short getStatusGreaterThanOrEqualTo() { return StatusGreaterThanOrEqualTo; } public SY_UpgradeScriptsQuery setStatusGreaterThanOrEqualTo(Short value) { this.StatusGreaterThanOrEqualTo = value; return this; } public Short getStatusGreaterThan() { return StatusGreaterThan; } public SY_UpgradeScriptsQuery setStatusGreaterThan(Short value) { this.StatusGreaterThan = value; return this; } public Short getStatusLessThan() { return StatusLessThan; } public SY_UpgradeScriptsQuery setStatusLessThan(Short value) { this.StatusLessThan = value; return this; } public Short getStatusLessThanOrEqualTo() { return StatusLessThanOrEqualTo; } public SY_UpgradeScriptsQuery setStatusLessThanOrEqualTo(Short value) { this.StatusLessThanOrEqualTo = value; return this; } public Short getStatusNotEqualTo() { return StatusNotEqualTo; } public SY_UpgradeScriptsQuery setStatusNotEqualTo(Short value) { this.StatusNotEqualTo = value; return this; } public ArrayList getStatusBetween() { return StatusBetween; } public SY_UpgradeScriptsQuery setStatusBetween(ArrayList value) { this.StatusBetween = value; return this; } public ArrayList getStatusIn() { return StatusIn; } public SY_UpgradeScriptsQuery setStatusIn(ArrayList value) { this.StatusIn = value; return this; } public String getMessage() { return Message; } public SY_UpgradeScriptsQuery setMessage(String value) { this.Message = value; return this; } public String getMessageStartsWith() { return MessageStartsWith; } public SY_UpgradeScriptsQuery setMessageStartsWith(String value) { this.MessageStartsWith = value; return this; } public String getMessageEndsWith() { return MessageEndsWith; } public SY_UpgradeScriptsQuery setMessageEndsWith(String value) { this.MessageEndsWith = value; return this; } public String getMessageContains() { return MessageContains; } public SY_UpgradeScriptsQuery setMessageContains(String value) { this.MessageContains = value; return this; } public String getMessageLike() { return MessageLike; } public SY_UpgradeScriptsQuery setMessageLike(String value) { this.MessageLike = value; return this; } public ArrayList getMessageBetween() { return MessageBetween; } public SY_UpgradeScriptsQuery setMessageBetween(ArrayList value) { this.MessageBetween = value; return this; } public ArrayList getMessageIn() { return MessageIn; } public SY_UpgradeScriptsQuery setMessageIn(ArrayList value) { this.MessageIn = value; return this; } public Short getScriptType() { return ScriptType; } public SY_UpgradeScriptsQuery setScriptType(Short value) { this.ScriptType = value; return this; } public Short getScriptTypeGreaterThanOrEqualTo() { return ScriptTypeGreaterThanOrEqualTo; } public SY_UpgradeScriptsQuery setScriptTypeGreaterThanOrEqualTo(Short value) { this.ScriptTypeGreaterThanOrEqualTo = value; return this; } public Short getScriptTypeGreaterThan() { return ScriptTypeGreaterThan; } public SY_UpgradeScriptsQuery setScriptTypeGreaterThan(Short value) { this.ScriptTypeGreaterThan = value; return this; } public Short getScriptTypeLessThan() { return ScriptTypeLessThan; } public SY_UpgradeScriptsQuery setScriptTypeLessThan(Short value) { this.ScriptTypeLessThan = value; return this; } public Short getScriptTypeLessThanOrEqualTo() { return ScriptTypeLessThanOrEqualTo; } public SY_UpgradeScriptsQuery setScriptTypeLessThanOrEqualTo(Short value) { this.ScriptTypeLessThanOrEqualTo = value; return this; } public Short getScriptTypeNotEqualTo() { return ScriptTypeNotEqualTo; } public SY_UpgradeScriptsQuery setScriptTypeNotEqualTo(Short value) { this.ScriptTypeNotEqualTo = value; return this; } public ArrayList getScriptTypeBetween() { return ScriptTypeBetween; } public SY_UpgradeScriptsQuery setScriptTypeBetween(ArrayList value) { this.ScriptTypeBetween = value; return this; } public ArrayList getScriptTypeIn() { return ScriptTypeIn; } public SY_UpgradeScriptsQuery setScriptTypeIn(ArrayList value) { this.ScriptTypeIn = value; return this; } public ArrayList getRowHash() { return RowHash; } public SY_UpgradeScriptsQuery setRowHash(ArrayList value) { this.RowHash = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class SY_UserGroupAbstractPermissionsQuery extends QueryDb implements IReturn> { public UUID RecID = null; public ArrayList RecIDIn = null; public UUID SY_UserGroups_RecID = null; public ArrayList SY_UserGroups_RecIDIn = null; public UUID SY_FormsAbstractPermissions_RecID = null; public ArrayList SY_FormsAbstractPermissions_RecIDIn = null; public Short AccessLevel = null; public Short AccessLevelGreaterThanOrEqualTo = null; public Short AccessLevelGreaterThan = null; public Short AccessLevelLessThan = null; public Short AccessLevelLessThanOrEqualTo = null; public Short AccessLevelNotEqualTo = null; public ArrayList AccessLevelBetween = null; public ArrayList AccessLevelIn = null; public ArrayList RowHash = null; public UUID getRecID() { return RecID; } public SY_UserGroupAbstractPermissionsQuery setRecID(UUID value) { this.RecID = value; return this; } public ArrayList getRecIDIn() { return RecIDIn; } public SY_UserGroupAbstractPermissionsQuery setRecIDIn(ArrayList value) { this.RecIDIn = value; return this; } public UUID getSyUserGroupsRecID() { return SY_UserGroups_RecID; } public SY_UserGroupAbstractPermissionsQuery setSyUserGroupsRecID(UUID value) { this.SY_UserGroups_RecID = value; return this; } public ArrayList getSyUserGroupsRecIDIn() { return SY_UserGroups_RecIDIn; } public SY_UserGroupAbstractPermissionsQuery setSyUserGroupsRecIDIn(ArrayList value) { this.SY_UserGroups_RecIDIn = value; return this; } public UUID getSyFormsAbstractPermissionsRecID() { return SY_FormsAbstractPermissions_RecID; } public SY_UserGroupAbstractPermissionsQuery setSyFormsAbstractPermissionsRecID(UUID value) { this.SY_FormsAbstractPermissions_RecID = value; return this; } public ArrayList getSyFormsAbstractPermissionsRecIDIn() { return SY_FormsAbstractPermissions_RecIDIn; } public SY_UserGroupAbstractPermissionsQuery setSyFormsAbstractPermissionsRecIDIn(ArrayList value) { this.SY_FormsAbstractPermissions_RecIDIn = value; return this; } public Short getAccessLevel() { return AccessLevel; } public SY_UserGroupAbstractPermissionsQuery setAccessLevel(Short value) { this.AccessLevel = value; return this; } public Short getAccessLevelGreaterThanOrEqualTo() { return AccessLevelGreaterThanOrEqualTo; } public SY_UserGroupAbstractPermissionsQuery setAccessLevelGreaterThanOrEqualTo(Short value) { this.AccessLevelGreaterThanOrEqualTo = value; return this; } public Short getAccessLevelGreaterThan() { return AccessLevelGreaterThan; } public SY_UserGroupAbstractPermissionsQuery setAccessLevelGreaterThan(Short value) { this.AccessLevelGreaterThan = value; return this; } public Short getAccessLevelLessThan() { return AccessLevelLessThan; } public SY_UserGroupAbstractPermissionsQuery setAccessLevelLessThan(Short value) { this.AccessLevelLessThan = value; return this; } public Short getAccessLevelLessThanOrEqualTo() { return AccessLevelLessThanOrEqualTo; } public SY_UserGroupAbstractPermissionsQuery setAccessLevelLessThanOrEqualTo(Short value) { this.AccessLevelLessThanOrEqualTo = value; return this; } public Short getAccessLevelNotEqualTo() { return AccessLevelNotEqualTo; } public SY_UserGroupAbstractPermissionsQuery setAccessLevelNotEqualTo(Short value) { this.AccessLevelNotEqualTo = value; return this; } public ArrayList getAccessLevelBetween() { return AccessLevelBetween; } public SY_UserGroupAbstractPermissionsQuery setAccessLevelBetween(ArrayList value) { this.AccessLevelBetween = value; return this; } public ArrayList getAccessLevelIn() { return AccessLevelIn; } public SY_UserGroupAbstractPermissionsQuery setAccessLevelIn(ArrayList value) { this.AccessLevelIn = value; return this; } public ArrayList getRowHash() { return RowHash; } public SY_UserGroupAbstractPermissionsQuery setRowHash(ArrayList value) { this.RowHash = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class SY_UserGroupMembershipsQuery extends QueryDb implements IReturn> { public UUID RecID = null; public ArrayList RecIDIn = null; public String HR_Staff_StaffID = null; public String HR_Staff_StaffIDStartsWith = null; public String HR_Staff_StaffIDEndsWith = null; public String HR_Staff_StaffIDContains = null; public String HR_Staff_StaffIDLike = null; public ArrayList HR_Staff_StaffIDBetween = null; public ArrayList HR_Staff_StaffIDIn = null; public ArrayList RowHash = null; public UUID SY_UserGroups_RecID = null; public ArrayList SY_UserGroups_RecIDIn = null; public Integer ItemNo = null; public Integer ItemNoGreaterThanOrEqualTo = null; public Integer ItemNoGreaterThan = null; public Integer ItemNoLessThan = null; public Integer ItemNoLessThanOrEqualTo = null; public Integer ItemNoNotEqualTo = null; public ArrayList ItemNoBetween = null; public ArrayList ItemNoIn = null; public UUID getRecID() { return RecID; } public SY_UserGroupMembershipsQuery setRecID(UUID value) { this.RecID = value; return this; } public ArrayList getRecIDIn() { return RecIDIn; } public SY_UserGroupMembershipsQuery setRecIDIn(ArrayList value) { this.RecIDIn = value; return this; } public String getHrStaffStaffID() { return HR_Staff_StaffID; } public SY_UserGroupMembershipsQuery setHrStaffStaffID(String value) { this.HR_Staff_StaffID = value; return this; } public String getHrStaffStaffIDStartsWith() { return HR_Staff_StaffIDStartsWith; } public SY_UserGroupMembershipsQuery setHrStaffStaffIDStartsWith(String value) { this.HR_Staff_StaffIDStartsWith = value; return this; } public String getHrStaffStaffIDEndsWith() { return HR_Staff_StaffIDEndsWith; } public SY_UserGroupMembershipsQuery setHrStaffStaffIDEndsWith(String value) { this.HR_Staff_StaffIDEndsWith = value; return this; } public String getHrStaffStaffIDContains() { return HR_Staff_StaffIDContains; } public SY_UserGroupMembershipsQuery setHrStaffStaffIDContains(String value) { this.HR_Staff_StaffIDContains = value; return this; } public String getHrStaffStaffIDLike() { return HR_Staff_StaffIDLike; } public SY_UserGroupMembershipsQuery setHrStaffStaffIDLike(String value) { this.HR_Staff_StaffIDLike = value; return this; } public ArrayList getHrStaffStaffIDBetween() { return HR_Staff_StaffIDBetween; } public SY_UserGroupMembershipsQuery setHrStaffStaffIDBetween(ArrayList value) { this.HR_Staff_StaffIDBetween = value; return this; } public ArrayList getHrStaffStaffIDIn() { return HR_Staff_StaffIDIn; } public SY_UserGroupMembershipsQuery setHrStaffStaffIDIn(ArrayList value) { this.HR_Staff_StaffIDIn = value; return this; } public ArrayList getRowHash() { return RowHash; } public SY_UserGroupMembershipsQuery setRowHash(ArrayList value) { this.RowHash = value; return this; } public UUID getSyUserGroupsRecID() { return SY_UserGroups_RecID; } public SY_UserGroupMembershipsQuery setSyUserGroupsRecID(UUID value) { this.SY_UserGroups_RecID = value; return this; } public ArrayList getSyUserGroupsRecIDIn() { return SY_UserGroups_RecIDIn; } public SY_UserGroupMembershipsQuery setSyUserGroupsRecIDIn(ArrayList value) { this.SY_UserGroups_RecIDIn = value; return this; } public Integer getItemNo() { return ItemNo; } public SY_UserGroupMembershipsQuery setItemNo(Integer value) { this.ItemNo = value; return this; } public Integer getItemNoGreaterThanOrEqualTo() { return ItemNoGreaterThanOrEqualTo; } public SY_UserGroupMembershipsQuery setItemNoGreaterThanOrEqualTo(Integer value) { this.ItemNoGreaterThanOrEqualTo = value; return this; } public Integer getItemNoGreaterThan() { return ItemNoGreaterThan; } public SY_UserGroupMembershipsQuery setItemNoGreaterThan(Integer value) { this.ItemNoGreaterThan = value; return this; } public Integer getItemNoLessThan() { return ItemNoLessThan; } public SY_UserGroupMembershipsQuery setItemNoLessThan(Integer value) { this.ItemNoLessThan = value; return this; } public Integer getItemNoLessThanOrEqualTo() { return ItemNoLessThanOrEqualTo; } public SY_UserGroupMembershipsQuery setItemNoLessThanOrEqualTo(Integer value) { this.ItemNoLessThanOrEqualTo = value; return this; } public Integer getItemNoNotEqualTo() { return ItemNoNotEqualTo; } public SY_UserGroupMembershipsQuery setItemNoNotEqualTo(Integer value) { this.ItemNoNotEqualTo = value; return this; } public ArrayList getItemNoBetween() { return ItemNoBetween; } public SY_UserGroupMembershipsQuery setItemNoBetween(ArrayList value) { this.ItemNoBetween = value; return this; } public ArrayList getItemNoIn() { return ItemNoIn; } public SY_UserGroupMembershipsQuery setItemNoIn(ArrayList value) { this.ItemNoIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class SY_UserGroupPermissionsQuery extends QueryDb implements IReturn> { public UUID RecID = null; public ArrayList RecIDIn = null; public UUID SY_UserGroups_RecID = null; public ArrayList SY_UserGroups_RecIDIn = null; public String SY_Forms_ClassName = null; public String SY_Forms_ClassNameStartsWith = null; public String SY_Forms_ClassNameEndsWith = null; public String SY_Forms_ClassNameContains = null; public String SY_Forms_ClassNameLike = null; public ArrayList SY_Forms_ClassNameBetween = null; public ArrayList SY_Forms_ClassNameIn = null; public String ControlType = null; public String ControlTypeStartsWith = null; public String ControlTypeEndsWith = null; public String ControlTypeContains = null; public String ControlTypeLike = null; public ArrayList ControlTypeBetween = null; public ArrayList ControlTypeIn = null; public String ControlName = null; public String ControlNameStartsWith = null; public String ControlNameEndsWith = null; public String ControlNameContains = null; public String ControlNameLike = null; public ArrayList ControlNameBetween = null; public ArrayList ControlNameIn = null; public Short ReadAccessLevel = null; public Short ReadAccessLevelGreaterThanOrEqualTo = null; public Short ReadAccessLevelGreaterThan = null; public Short ReadAccessLevelLessThan = null; public Short ReadAccessLevelLessThanOrEqualTo = null; public Short ReadAccessLevelNotEqualTo = null; public ArrayList ReadAccessLevelBetween = null; public ArrayList ReadAccessLevelIn = null; public Short WriteAccessLevel = null; public Short WriteAccessLevelGreaterThanOrEqualTo = null; public Short WriteAccessLevelGreaterThan = null; public Short WriteAccessLevelLessThan = null; public Short WriteAccessLevelLessThanOrEqualTo = null; public Short WriteAccessLevelNotEqualTo = null; public ArrayList WriteAccessLevelBetween = null; public ArrayList WriteAccessLevelIn = null; public Integer ItemNo = null; public Integer ItemNoGreaterThanOrEqualTo = null; public Integer ItemNoGreaterThan = null; public Integer ItemNoLessThan = null; public Integer ItemNoLessThanOrEqualTo = null; public Integer ItemNoNotEqualTo = null; public ArrayList ItemNoBetween = null; public ArrayList ItemNoIn = null; public ArrayList RowHash = null; public UUID getRecID() { return RecID; } public SY_UserGroupPermissionsQuery setRecID(UUID value) { this.RecID = value; return this; } public ArrayList getRecIDIn() { return RecIDIn; } public SY_UserGroupPermissionsQuery setRecIDIn(ArrayList value) { this.RecIDIn = value; return this; } public UUID getSyUserGroupsRecID() { return SY_UserGroups_RecID; } public SY_UserGroupPermissionsQuery setSyUserGroupsRecID(UUID value) { this.SY_UserGroups_RecID = value; return this; } public ArrayList getSyUserGroupsRecIDIn() { return SY_UserGroups_RecIDIn; } public SY_UserGroupPermissionsQuery setSyUserGroupsRecIDIn(ArrayList value) { this.SY_UserGroups_RecIDIn = value; return this; } public String getSyFormsClassName() { return SY_Forms_ClassName; } public SY_UserGroupPermissionsQuery setSyFormsClassName(String value) { this.SY_Forms_ClassName = value; return this; } public String getSyFormsClassNameStartsWith() { return SY_Forms_ClassNameStartsWith; } public SY_UserGroupPermissionsQuery setSyFormsClassNameStartsWith(String value) { this.SY_Forms_ClassNameStartsWith = value; return this; } public String getSyFormsClassNameEndsWith() { return SY_Forms_ClassNameEndsWith; } public SY_UserGroupPermissionsQuery setSyFormsClassNameEndsWith(String value) { this.SY_Forms_ClassNameEndsWith = value; return this; } public String getSyFormsClassNameContains() { return SY_Forms_ClassNameContains; } public SY_UserGroupPermissionsQuery setSyFormsClassNameContains(String value) { this.SY_Forms_ClassNameContains = value; return this; } public String getSyFormsClassNameLike() { return SY_Forms_ClassNameLike; } public SY_UserGroupPermissionsQuery setSyFormsClassNameLike(String value) { this.SY_Forms_ClassNameLike = value; return this; } public ArrayList getSyFormsClassNameBetween() { return SY_Forms_ClassNameBetween; } public SY_UserGroupPermissionsQuery setSyFormsClassNameBetween(ArrayList value) { this.SY_Forms_ClassNameBetween = value; return this; } public ArrayList getSyFormsClassNameIn() { return SY_Forms_ClassNameIn; } public SY_UserGroupPermissionsQuery setSyFormsClassNameIn(ArrayList value) { this.SY_Forms_ClassNameIn = value; return this; } public String getControlType() { return ControlType; } public SY_UserGroupPermissionsQuery setControlType(String value) { this.ControlType = value; return this; } public String getControlTypeStartsWith() { return ControlTypeStartsWith; } public SY_UserGroupPermissionsQuery setControlTypeStartsWith(String value) { this.ControlTypeStartsWith = value; return this; } public String getControlTypeEndsWith() { return ControlTypeEndsWith; } public SY_UserGroupPermissionsQuery setControlTypeEndsWith(String value) { this.ControlTypeEndsWith = value; return this; } public String getControlTypeContains() { return ControlTypeContains; } public SY_UserGroupPermissionsQuery setControlTypeContains(String value) { this.ControlTypeContains = value; return this; } public String getControlTypeLike() { return ControlTypeLike; } public SY_UserGroupPermissionsQuery setControlTypeLike(String value) { this.ControlTypeLike = value; return this; } public ArrayList getControlTypeBetween() { return ControlTypeBetween; } public SY_UserGroupPermissionsQuery setControlTypeBetween(ArrayList value) { this.ControlTypeBetween = value; return this; } public ArrayList getControlTypeIn() { return ControlTypeIn; } public SY_UserGroupPermissionsQuery setControlTypeIn(ArrayList value) { this.ControlTypeIn = value; return this; } public String getControlName() { return ControlName; } public SY_UserGroupPermissionsQuery setControlName(String value) { this.ControlName = value; return this; } public String getControlNameStartsWith() { return ControlNameStartsWith; } public SY_UserGroupPermissionsQuery setControlNameStartsWith(String value) { this.ControlNameStartsWith = value; return this; } public String getControlNameEndsWith() { return ControlNameEndsWith; } public SY_UserGroupPermissionsQuery setControlNameEndsWith(String value) { this.ControlNameEndsWith = value; return this; } public String getControlNameContains() { return ControlNameContains; } public SY_UserGroupPermissionsQuery setControlNameContains(String value) { this.ControlNameContains = value; return this; } public String getControlNameLike() { return ControlNameLike; } public SY_UserGroupPermissionsQuery setControlNameLike(String value) { this.ControlNameLike = value; return this; } public ArrayList getControlNameBetween() { return ControlNameBetween; } public SY_UserGroupPermissionsQuery setControlNameBetween(ArrayList value) { this.ControlNameBetween = value; return this; } public ArrayList getControlNameIn() { return ControlNameIn; } public SY_UserGroupPermissionsQuery setControlNameIn(ArrayList value) { this.ControlNameIn = value; return this; } public Short getReadAccessLevel() { return ReadAccessLevel; } public SY_UserGroupPermissionsQuery setReadAccessLevel(Short value) { this.ReadAccessLevel = value; return this; } public Short getReadAccessLevelGreaterThanOrEqualTo() { return ReadAccessLevelGreaterThanOrEqualTo; } public SY_UserGroupPermissionsQuery setReadAccessLevelGreaterThanOrEqualTo(Short value) { this.ReadAccessLevelGreaterThanOrEqualTo = value; return this; } public Short getReadAccessLevelGreaterThan() { return ReadAccessLevelGreaterThan; } public SY_UserGroupPermissionsQuery setReadAccessLevelGreaterThan(Short value) { this.ReadAccessLevelGreaterThan = value; return this; } public Short getReadAccessLevelLessThan() { return ReadAccessLevelLessThan; } public SY_UserGroupPermissionsQuery setReadAccessLevelLessThan(Short value) { this.ReadAccessLevelLessThan = value; return this; } public Short getReadAccessLevelLessThanOrEqualTo() { return ReadAccessLevelLessThanOrEqualTo; } public SY_UserGroupPermissionsQuery setReadAccessLevelLessThanOrEqualTo(Short value) { this.ReadAccessLevelLessThanOrEqualTo = value; return this; } public Short getReadAccessLevelNotEqualTo() { return ReadAccessLevelNotEqualTo; } public SY_UserGroupPermissionsQuery setReadAccessLevelNotEqualTo(Short value) { this.ReadAccessLevelNotEqualTo = value; return this; } public ArrayList getReadAccessLevelBetween() { return ReadAccessLevelBetween; } public SY_UserGroupPermissionsQuery setReadAccessLevelBetween(ArrayList value) { this.ReadAccessLevelBetween = value; return this; } public ArrayList getReadAccessLevelIn() { return ReadAccessLevelIn; } public SY_UserGroupPermissionsQuery setReadAccessLevelIn(ArrayList value) { this.ReadAccessLevelIn = value; return this; } public Short getWriteAccessLevel() { return WriteAccessLevel; } public SY_UserGroupPermissionsQuery setWriteAccessLevel(Short value) { this.WriteAccessLevel = value; return this; } public Short getWriteAccessLevelGreaterThanOrEqualTo() { return WriteAccessLevelGreaterThanOrEqualTo; } public SY_UserGroupPermissionsQuery setWriteAccessLevelGreaterThanOrEqualTo(Short value) { this.WriteAccessLevelGreaterThanOrEqualTo = value; return this; } public Short getWriteAccessLevelGreaterThan() { return WriteAccessLevelGreaterThan; } public SY_UserGroupPermissionsQuery setWriteAccessLevelGreaterThan(Short value) { this.WriteAccessLevelGreaterThan = value; return this; } public Short getWriteAccessLevelLessThan() { return WriteAccessLevelLessThan; } public SY_UserGroupPermissionsQuery setWriteAccessLevelLessThan(Short value) { this.WriteAccessLevelLessThan = value; return this; } public Short getWriteAccessLevelLessThanOrEqualTo() { return WriteAccessLevelLessThanOrEqualTo; } public SY_UserGroupPermissionsQuery setWriteAccessLevelLessThanOrEqualTo(Short value) { this.WriteAccessLevelLessThanOrEqualTo = value; return this; } public Short getWriteAccessLevelNotEqualTo() { return WriteAccessLevelNotEqualTo; } public SY_UserGroupPermissionsQuery setWriteAccessLevelNotEqualTo(Short value) { this.WriteAccessLevelNotEqualTo = value; return this; } public ArrayList getWriteAccessLevelBetween() { return WriteAccessLevelBetween; } public SY_UserGroupPermissionsQuery setWriteAccessLevelBetween(ArrayList value) { this.WriteAccessLevelBetween = value; return this; } public ArrayList getWriteAccessLevelIn() { return WriteAccessLevelIn; } public SY_UserGroupPermissionsQuery setWriteAccessLevelIn(ArrayList value) { this.WriteAccessLevelIn = value; return this; } public Integer getItemNo() { return ItemNo; } public SY_UserGroupPermissionsQuery setItemNo(Integer value) { this.ItemNo = value; return this; } public Integer getItemNoGreaterThanOrEqualTo() { return ItemNoGreaterThanOrEqualTo; } public SY_UserGroupPermissionsQuery setItemNoGreaterThanOrEqualTo(Integer value) { this.ItemNoGreaterThanOrEqualTo = value; return this; } public Integer getItemNoGreaterThan() { return ItemNoGreaterThan; } public SY_UserGroupPermissionsQuery setItemNoGreaterThan(Integer value) { this.ItemNoGreaterThan = value; return this; } public Integer getItemNoLessThan() { return ItemNoLessThan; } public SY_UserGroupPermissionsQuery setItemNoLessThan(Integer value) { this.ItemNoLessThan = value; return this; } public Integer getItemNoLessThanOrEqualTo() { return ItemNoLessThanOrEqualTo; } public SY_UserGroupPermissionsQuery setItemNoLessThanOrEqualTo(Integer value) { this.ItemNoLessThanOrEqualTo = value; return this; } public Integer getItemNoNotEqualTo() { return ItemNoNotEqualTo; } public SY_UserGroupPermissionsQuery setItemNoNotEqualTo(Integer value) { this.ItemNoNotEqualTo = value; return this; } public ArrayList getItemNoBetween() { return ItemNoBetween; } public SY_UserGroupPermissionsQuery setItemNoBetween(ArrayList value) { this.ItemNoBetween = value; return this; } public ArrayList getItemNoIn() { return ItemNoIn; } public SY_UserGroupPermissionsQuery setItemNoIn(ArrayList value) { this.ItemNoIn = value; return this; } public ArrayList getRowHash() { return RowHash; } public SY_UserGroupPermissionsQuery setRowHash(ArrayList value) { this.RowHash = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class SY_UserGroupRESTAPIPermissionsQuery extends QueryDb implements IReturn> { public UUID RecID = null; public ArrayList RecIDIn = null; public UUID SY_UserGroups_RecID = null; public ArrayList SY_UserGroups_RecIDIn = null; public String RESTPath = null; public String RESTPathStartsWith = null; public String RESTPathEndsWith = null; public String RESTPathContains = null; public String RESTPathLike = null; public ArrayList RESTPathBetween = null; public ArrayList RESTPathIn = null; public String Verb = null; public String VerbStartsWith = null; public String VerbEndsWith = null; public String VerbContains = null; public String VerbLike = null; public ArrayList VerbBetween = null; public ArrayList VerbIn = null; public String Summary = null; public String SummaryStartsWith = null; public String SummaryEndsWith = null; public String SummaryContains = null; public String SummaryLike = null; public ArrayList SummaryBetween = null; public ArrayList SummaryIn = null; public Short AccessLevel = null; public Short AccessLevelGreaterThanOrEqualTo = null; public Short AccessLevelGreaterThan = null; public Short AccessLevelLessThan = null; public Short AccessLevelLessThanOrEqualTo = null; public Short AccessLevelNotEqualTo = null; public ArrayList AccessLevelBetween = null; public ArrayList AccessLevelIn = null; public Integer ItemNo = null; public Integer ItemNoGreaterThanOrEqualTo = null; public Integer ItemNoGreaterThan = null; public Integer ItemNoLessThan = null; public Integer ItemNoLessThanOrEqualTo = null; public Integer ItemNoNotEqualTo = null; public ArrayList ItemNoBetween = null; public ArrayList ItemNoIn = null; public ArrayList RowHash = null; public UUID getRecID() { return RecID; } public SY_UserGroupRESTAPIPermissionsQuery setRecID(UUID value) { this.RecID = value; return this; } public ArrayList getRecIDIn() { return RecIDIn; } public SY_UserGroupRESTAPIPermissionsQuery setRecIDIn(ArrayList value) { this.RecIDIn = value; return this; } public UUID getSyUserGroupsRecID() { return SY_UserGroups_RecID; } public SY_UserGroupRESTAPIPermissionsQuery setSyUserGroupsRecID(UUID value) { this.SY_UserGroups_RecID = value; return this; } public ArrayList getSyUserGroupsRecIDIn() { return SY_UserGroups_RecIDIn; } public SY_UserGroupRESTAPIPermissionsQuery setSyUserGroupsRecIDIn(ArrayList value) { this.SY_UserGroups_RecIDIn = value; return this; } public String getRestPath() { return RESTPath; } public SY_UserGroupRESTAPIPermissionsQuery setRestPath(String value) { this.RESTPath = value; return this; } public String getRestPathStartsWith() { return RESTPathStartsWith; } public SY_UserGroupRESTAPIPermissionsQuery setRestPathStartsWith(String value) { this.RESTPathStartsWith = value; return this; } public String getRestPathEndsWith() { return RESTPathEndsWith; } public SY_UserGroupRESTAPIPermissionsQuery setRestPathEndsWith(String value) { this.RESTPathEndsWith = value; return this; } public String getRestPathContains() { return RESTPathContains; } public SY_UserGroupRESTAPIPermissionsQuery setRestPathContains(String value) { this.RESTPathContains = value; return this; } public String getRestPathLike() { return RESTPathLike; } public SY_UserGroupRESTAPIPermissionsQuery setRestPathLike(String value) { this.RESTPathLike = value; return this; } public ArrayList getRestPathBetween() { return RESTPathBetween; } public SY_UserGroupRESTAPIPermissionsQuery setRestPathBetween(ArrayList value) { this.RESTPathBetween = value; return this; } public ArrayList getRestPathIn() { return RESTPathIn; } public SY_UserGroupRESTAPIPermissionsQuery setRestPathIn(ArrayList value) { this.RESTPathIn = value; return this; } public String getVerb() { return Verb; } public SY_UserGroupRESTAPIPermissionsQuery setVerb(String value) { this.Verb = value; return this; } public String getVerbStartsWith() { return VerbStartsWith; } public SY_UserGroupRESTAPIPermissionsQuery setVerbStartsWith(String value) { this.VerbStartsWith = value; return this; } public String getVerbEndsWith() { return VerbEndsWith; } public SY_UserGroupRESTAPIPermissionsQuery setVerbEndsWith(String value) { this.VerbEndsWith = value; return this; } public String getVerbContains() { return VerbContains; } public SY_UserGroupRESTAPIPermissionsQuery setVerbContains(String value) { this.VerbContains = value; return this; } public String getVerbLike() { return VerbLike; } public SY_UserGroupRESTAPIPermissionsQuery setVerbLike(String value) { this.VerbLike = value; return this; } public ArrayList getVerbBetween() { return VerbBetween; } public SY_UserGroupRESTAPIPermissionsQuery setVerbBetween(ArrayList value) { this.VerbBetween = value; return this; } public ArrayList getVerbIn() { return VerbIn; } public SY_UserGroupRESTAPIPermissionsQuery setVerbIn(ArrayList value) { this.VerbIn = value; return this; } public String getSummary() { return Summary; } public SY_UserGroupRESTAPIPermissionsQuery setSummary(String value) { this.Summary = value; return this; } public String getSummaryStartsWith() { return SummaryStartsWith; } public SY_UserGroupRESTAPIPermissionsQuery setSummaryStartsWith(String value) { this.SummaryStartsWith = value; return this; } public String getSummaryEndsWith() { return SummaryEndsWith; } public SY_UserGroupRESTAPIPermissionsQuery setSummaryEndsWith(String value) { this.SummaryEndsWith = value; return this; } public String getSummaryContains() { return SummaryContains; } public SY_UserGroupRESTAPIPermissionsQuery setSummaryContains(String value) { this.SummaryContains = value; return this; } public String getSummaryLike() { return SummaryLike; } public SY_UserGroupRESTAPIPermissionsQuery setSummaryLike(String value) { this.SummaryLike = value; return this; } public ArrayList getSummaryBetween() { return SummaryBetween; } public SY_UserGroupRESTAPIPermissionsQuery setSummaryBetween(ArrayList value) { this.SummaryBetween = value; return this; } public ArrayList getSummaryIn() { return SummaryIn; } public SY_UserGroupRESTAPIPermissionsQuery setSummaryIn(ArrayList value) { this.SummaryIn = value; return this; } public Short getAccessLevel() { return AccessLevel; } public SY_UserGroupRESTAPIPermissionsQuery setAccessLevel(Short value) { this.AccessLevel = value; return this; } public Short getAccessLevelGreaterThanOrEqualTo() { return AccessLevelGreaterThanOrEqualTo; } public SY_UserGroupRESTAPIPermissionsQuery setAccessLevelGreaterThanOrEqualTo(Short value) { this.AccessLevelGreaterThanOrEqualTo = value; return this; } public Short getAccessLevelGreaterThan() { return AccessLevelGreaterThan; } public SY_UserGroupRESTAPIPermissionsQuery setAccessLevelGreaterThan(Short value) { this.AccessLevelGreaterThan = value; return this; } public Short getAccessLevelLessThan() { return AccessLevelLessThan; } public SY_UserGroupRESTAPIPermissionsQuery setAccessLevelLessThan(Short value) { this.AccessLevelLessThan = value; return this; } public Short getAccessLevelLessThanOrEqualTo() { return AccessLevelLessThanOrEqualTo; } public SY_UserGroupRESTAPIPermissionsQuery setAccessLevelLessThanOrEqualTo(Short value) { this.AccessLevelLessThanOrEqualTo = value; return this; } public Short getAccessLevelNotEqualTo() { return AccessLevelNotEqualTo; } public SY_UserGroupRESTAPIPermissionsQuery setAccessLevelNotEqualTo(Short value) { this.AccessLevelNotEqualTo = value; return this; } public ArrayList getAccessLevelBetween() { return AccessLevelBetween; } public SY_UserGroupRESTAPIPermissionsQuery setAccessLevelBetween(ArrayList value) { this.AccessLevelBetween = value; return this; } public ArrayList getAccessLevelIn() { return AccessLevelIn; } public SY_UserGroupRESTAPIPermissionsQuery setAccessLevelIn(ArrayList value) { this.AccessLevelIn = value; return this; } public Integer getItemNo() { return ItemNo; } public SY_UserGroupRESTAPIPermissionsQuery setItemNo(Integer value) { this.ItemNo = value; return this; } public Integer getItemNoGreaterThanOrEqualTo() { return ItemNoGreaterThanOrEqualTo; } public SY_UserGroupRESTAPIPermissionsQuery setItemNoGreaterThanOrEqualTo(Integer value) { this.ItemNoGreaterThanOrEqualTo = value; return this; } public Integer getItemNoGreaterThan() { return ItemNoGreaterThan; } public SY_UserGroupRESTAPIPermissionsQuery setItemNoGreaterThan(Integer value) { this.ItemNoGreaterThan = value; return this; } public Integer getItemNoLessThan() { return ItemNoLessThan; } public SY_UserGroupRESTAPIPermissionsQuery setItemNoLessThan(Integer value) { this.ItemNoLessThan = value; return this; } public Integer getItemNoLessThanOrEqualTo() { return ItemNoLessThanOrEqualTo; } public SY_UserGroupRESTAPIPermissionsQuery setItemNoLessThanOrEqualTo(Integer value) { this.ItemNoLessThanOrEqualTo = value; return this; } public Integer getItemNoNotEqualTo() { return ItemNoNotEqualTo; } public SY_UserGroupRESTAPIPermissionsQuery setItemNoNotEqualTo(Integer value) { this.ItemNoNotEqualTo = value; return this; } public ArrayList getItemNoBetween() { return ItemNoBetween; } public SY_UserGroupRESTAPIPermissionsQuery setItemNoBetween(ArrayList value) { this.ItemNoBetween = value; return this; } public ArrayList getItemNoIn() { return ItemNoIn; } public SY_UserGroupRESTAPIPermissionsQuery setItemNoIn(ArrayList value) { this.ItemNoIn = value; return this; } public ArrayList getRowHash() { return RowHash; } public SY_UserGroupRESTAPIPermissionsQuery setRowHash(ArrayList value) { this.RowHash = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class SY_UserGroupsQuery extends QueryDb implements IReturn> { public UUID RecID = null; public ArrayList RecIDIn = null; public String Name = null; public String NameStartsWith = null; public String NameEndsWith = null; public String NameContains = null; public String NameLike = null; public ArrayList NameBetween = null; public ArrayList NameIn = null; public String Description = null; public String DescriptionStartsWith = null; public String DescriptionEndsWith = null; public String DescriptionContains = null; public String DescriptionLike = null; public ArrayList DescriptionBetween = null; public ArrayList DescriptionIn = null; public ArrayList RowHash = null; public Boolean IsDefault = null; public Boolean IsEnabled = null; public Boolean IsReadOnly = null; public Short DefaultReadAccessLevel = null; public Short DefaultReadAccessLevelGreaterThanOrEqualTo = null; public Short DefaultReadAccessLevelGreaterThan = null; public Short DefaultReadAccessLevelLessThan = null; public Short DefaultReadAccessLevelLessThanOrEqualTo = null; public Short DefaultReadAccessLevelNotEqualTo = null; public ArrayList DefaultReadAccessLevelBetween = null; public ArrayList DefaultReadAccessLevelIn = null; public Short DefaultWriteAccessLevel = null; public Short DefaultWriteAccessLevelGreaterThanOrEqualTo = null; public Short DefaultWriteAccessLevelGreaterThan = null; public Short DefaultWriteAccessLevelLessThan = null; public Short DefaultWriteAccessLevelLessThanOrEqualTo = null; public Short DefaultWriteAccessLevelNotEqualTo = null; public ArrayList DefaultWriteAccessLevelBetween = null; public ArrayList DefaultWriteAccessLevelIn = null; public Short DefaultAbstractAccessLevel = null; public Short DefaultAbstractAccessLevelGreaterThanOrEqualTo = null; public Short DefaultAbstractAccessLevelGreaterThan = null; public Short DefaultAbstractAccessLevelLessThan = null; public Short DefaultAbstractAccessLevelLessThanOrEqualTo = null; public Short DefaultAbstractAccessLevelNotEqualTo = null; public ArrayList DefaultAbstractAccessLevelBetween = null; public ArrayList DefaultAbstractAccessLevelIn = null; public String SY_Menu_RecID = null; public String SY_Menu_RecIDStartsWith = null; public String SY_Menu_RecIDEndsWith = null; public String SY_Menu_RecIDContains = null; public String SY_Menu_RecIDLike = null; public ArrayList SY_Menu_RecIDBetween = null; public ArrayList SY_Menu_RecIDIn = null; public Short DefaultRESTAPIAccessLevel = null; public Short DefaultRESTAPIAccessLevelGreaterThanOrEqualTo = null; public Short DefaultRESTAPIAccessLevelGreaterThan = null; public Short DefaultRESTAPIAccessLevelLessThan = null; public Short DefaultRESTAPIAccessLevelLessThanOrEqualTo = null; public Short DefaultRESTAPIAccessLevelNotEqualTo = null; public ArrayList DefaultRESTAPIAccessLevelBetween = null; public ArrayList DefaultRESTAPIAccessLevelIn = null; public UUID getRecID() { return RecID; } public SY_UserGroupsQuery setRecID(UUID value) { this.RecID = value; return this; } public ArrayList getRecIDIn() { return RecIDIn; } public SY_UserGroupsQuery setRecIDIn(ArrayList value) { this.RecIDIn = value; return this; } public String getName() { return Name; } public SY_UserGroupsQuery setName(String value) { this.Name = value; return this; } public String getNameStartsWith() { return NameStartsWith; } public SY_UserGroupsQuery setNameStartsWith(String value) { this.NameStartsWith = value; return this; } public String getNameEndsWith() { return NameEndsWith; } public SY_UserGroupsQuery setNameEndsWith(String value) { this.NameEndsWith = value; return this; } public String getNameContains() { return NameContains; } public SY_UserGroupsQuery setNameContains(String value) { this.NameContains = value; return this; } public String getNameLike() { return NameLike; } public SY_UserGroupsQuery setNameLike(String value) { this.NameLike = value; return this; } public ArrayList getNameBetween() { return NameBetween; } public SY_UserGroupsQuery setNameBetween(ArrayList value) { this.NameBetween = value; return this; } public ArrayList getNameIn() { return NameIn; } public SY_UserGroupsQuery setNameIn(ArrayList value) { this.NameIn = value; return this; } public String getDescription() { return Description; } public SY_UserGroupsQuery setDescription(String value) { this.Description = value; return this; } public String getDescriptionStartsWith() { return DescriptionStartsWith; } public SY_UserGroupsQuery setDescriptionStartsWith(String value) { this.DescriptionStartsWith = value; return this; } public String getDescriptionEndsWith() { return DescriptionEndsWith; } public SY_UserGroupsQuery setDescriptionEndsWith(String value) { this.DescriptionEndsWith = value; return this; } public String getDescriptionContains() { return DescriptionContains; } public SY_UserGroupsQuery setDescriptionContains(String value) { this.DescriptionContains = value; return this; } public String getDescriptionLike() { return DescriptionLike; } public SY_UserGroupsQuery setDescriptionLike(String value) { this.DescriptionLike = value; return this; } public ArrayList getDescriptionBetween() { return DescriptionBetween; } public SY_UserGroupsQuery setDescriptionBetween(ArrayList value) { this.DescriptionBetween = value; return this; } public ArrayList getDescriptionIn() { return DescriptionIn; } public SY_UserGroupsQuery setDescriptionIn(ArrayList value) { this.DescriptionIn = value; return this; } public ArrayList getRowHash() { return RowHash; } public SY_UserGroupsQuery setRowHash(ArrayList value) { this.RowHash = value; return this; } public Boolean getIsDefault() { return IsDefault; } public SY_UserGroupsQuery setIsDefault(Boolean value) { this.IsDefault = value; return this; } public Boolean getIsEnabled() { return IsEnabled; } public SY_UserGroupsQuery setIsEnabled(Boolean value) { this.IsEnabled = value; return this; } public Boolean getIsReadOnly() { return IsReadOnly; } public SY_UserGroupsQuery setIsReadOnly(Boolean value) { this.IsReadOnly = value; return this; } public Short getDefaultReadAccessLevel() { return DefaultReadAccessLevel; } public SY_UserGroupsQuery setDefaultReadAccessLevel(Short value) { this.DefaultReadAccessLevel = value; return this; } public Short getDefaultReadAccessLevelGreaterThanOrEqualTo() { return DefaultReadAccessLevelGreaterThanOrEqualTo; } public SY_UserGroupsQuery setDefaultReadAccessLevelGreaterThanOrEqualTo(Short value) { this.DefaultReadAccessLevelGreaterThanOrEqualTo = value; return this; } public Short getDefaultReadAccessLevelGreaterThan() { return DefaultReadAccessLevelGreaterThan; } public SY_UserGroupsQuery setDefaultReadAccessLevelGreaterThan(Short value) { this.DefaultReadAccessLevelGreaterThan = value; return this; } public Short getDefaultReadAccessLevelLessThan() { return DefaultReadAccessLevelLessThan; } public SY_UserGroupsQuery setDefaultReadAccessLevelLessThan(Short value) { this.DefaultReadAccessLevelLessThan = value; return this; } public Short getDefaultReadAccessLevelLessThanOrEqualTo() { return DefaultReadAccessLevelLessThanOrEqualTo; } public SY_UserGroupsQuery setDefaultReadAccessLevelLessThanOrEqualTo(Short value) { this.DefaultReadAccessLevelLessThanOrEqualTo = value; return this; } public Short getDefaultReadAccessLevelNotEqualTo() { return DefaultReadAccessLevelNotEqualTo; } public SY_UserGroupsQuery setDefaultReadAccessLevelNotEqualTo(Short value) { this.DefaultReadAccessLevelNotEqualTo = value; return this; } public ArrayList getDefaultReadAccessLevelBetween() { return DefaultReadAccessLevelBetween; } public SY_UserGroupsQuery setDefaultReadAccessLevelBetween(ArrayList value) { this.DefaultReadAccessLevelBetween = value; return this; } public ArrayList getDefaultReadAccessLevelIn() { return DefaultReadAccessLevelIn; } public SY_UserGroupsQuery setDefaultReadAccessLevelIn(ArrayList value) { this.DefaultReadAccessLevelIn = value; return this; } public Short getDefaultWriteAccessLevel() { return DefaultWriteAccessLevel; } public SY_UserGroupsQuery setDefaultWriteAccessLevel(Short value) { this.DefaultWriteAccessLevel = value; return this; } public Short getDefaultWriteAccessLevelGreaterThanOrEqualTo() { return DefaultWriteAccessLevelGreaterThanOrEqualTo; } public SY_UserGroupsQuery setDefaultWriteAccessLevelGreaterThanOrEqualTo(Short value) { this.DefaultWriteAccessLevelGreaterThanOrEqualTo = value; return this; } public Short getDefaultWriteAccessLevelGreaterThan() { return DefaultWriteAccessLevelGreaterThan; } public SY_UserGroupsQuery setDefaultWriteAccessLevelGreaterThan(Short value) { this.DefaultWriteAccessLevelGreaterThan = value; return this; } public Short getDefaultWriteAccessLevelLessThan() { return DefaultWriteAccessLevelLessThan; } public SY_UserGroupsQuery setDefaultWriteAccessLevelLessThan(Short value) { this.DefaultWriteAccessLevelLessThan = value; return this; } public Short getDefaultWriteAccessLevelLessThanOrEqualTo() { return DefaultWriteAccessLevelLessThanOrEqualTo; } public SY_UserGroupsQuery setDefaultWriteAccessLevelLessThanOrEqualTo(Short value) { this.DefaultWriteAccessLevelLessThanOrEqualTo = value; return this; } public Short getDefaultWriteAccessLevelNotEqualTo() { return DefaultWriteAccessLevelNotEqualTo; } public SY_UserGroupsQuery setDefaultWriteAccessLevelNotEqualTo(Short value) { this.DefaultWriteAccessLevelNotEqualTo = value; return this; } public ArrayList getDefaultWriteAccessLevelBetween() { return DefaultWriteAccessLevelBetween; } public SY_UserGroupsQuery setDefaultWriteAccessLevelBetween(ArrayList value) { this.DefaultWriteAccessLevelBetween = value; return this; } public ArrayList getDefaultWriteAccessLevelIn() { return DefaultWriteAccessLevelIn; } public SY_UserGroupsQuery setDefaultWriteAccessLevelIn(ArrayList value) { this.DefaultWriteAccessLevelIn = value; return this; } public Short getDefaultAbstractAccessLevel() { return DefaultAbstractAccessLevel; } public SY_UserGroupsQuery setDefaultAbstractAccessLevel(Short value) { this.DefaultAbstractAccessLevel = value; return this; } public Short getDefaultAbstractAccessLevelGreaterThanOrEqualTo() { return DefaultAbstractAccessLevelGreaterThanOrEqualTo; } public SY_UserGroupsQuery setDefaultAbstractAccessLevelGreaterThanOrEqualTo(Short value) { this.DefaultAbstractAccessLevelGreaterThanOrEqualTo = value; return this; } public Short getDefaultAbstractAccessLevelGreaterThan() { return DefaultAbstractAccessLevelGreaterThan; } public SY_UserGroupsQuery setDefaultAbstractAccessLevelGreaterThan(Short value) { this.DefaultAbstractAccessLevelGreaterThan = value; return this; } public Short getDefaultAbstractAccessLevelLessThan() { return DefaultAbstractAccessLevelLessThan; } public SY_UserGroupsQuery setDefaultAbstractAccessLevelLessThan(Short value) { this.DefaultAbstractAccessLevelLessThan = value; return this; } public Short getDefaultAbstractAccessLevelLessThanOrEqualTo() { return DefaultAbstractAccessLevelLessThanOrEqualTo; } public SY_UserGroupsQuery setDefaultAbstractAccessLevelLessThanOrEqualTo(Short value) { this.DefaultAbstractAccessLevelLessThanOrEqualTo = value; return this; } public Short getDefaultAbstractAccessLevelNotEqualTo() { return DefaultAbstractAccessLevelNotEqualTo; } public SY_UserGroupsQuery setDefaultAbstractAccessLevelNotEqualTo(Short value) { this.DefaultAbstractAccessLevelNotEqualTo = value; return this; } public ArrayList getDefaultAbstractAccessLevelBetween() { return DefaultAbstractAccessLevelBetween; } public SY_UserGroupsQuery setDefaultAbstractAccessLevelBetween(ArrayList value) { this.DefaultAbstractAccessLevelBetween = value; return this; } public ArrayList getDefaultAbstractAccessLevelIn() { return DefaultAbstractAccessLevelIn; } public SY_UserGroupsQuery setDefaultAbstractAccessLevelIn(ArrayList value) { this.DefaultAbstractAccessLevelIn = value; return this; } public String getSyMenuRecID() { return SY_Menu_RecID; } public SY_UserGroupsQuery setSyMenuRecID(String value) { this.SY_Menu_RecID = value; return this; } public String getSyMenuRecIDStartsWith() { return SY_Menu_RecIDStartsWith; } public SY_UserGroupsQuery setSyMenuRecIDStartsWith(String value) { this.SY_Menu_RecIDStartsWith = value; return this; } public String getSyMenuRecIDEndsWith() { return SY_Menu_RecIDEndsWith; } public SY_UserGroupsQuery setSyMenuRecIDEndsWith(String value) { this.SY_Menu_RecIDEndsWith = value; return this; } public String getSyMenuRecIDContains() { return SY_Menu_RecIDContains; } public SY_UserGroupsQuery setSyMenuRecIDContains(String value) { this.SY_Menu_RecIDContains = value; return this; } public String getSyMenuRecIDLike() { return SY_Menu_RecIDLike; } public SY_UserGroupsQuery setSyMenuRecIDLike(String value) { this.SY_Menu_RecIDLike = value; return this; } public ArrayList getSyMenuRecIDBetween() { return SY_Menu_RecIDBetween; } public SY_UserGroupsQuery setSyMenuRecIDBetween(ArrayList value) { this.SY_Menu_RecIDBetween = value; return this; } public ArrayList getSyMenuRecIDIn() { return SY_Menu_RecIDIn; } public SY_UserGroupsQuery setSyMenuRecIDIn(ArrayList value) { this.SY_Menu_RecIDIn = value; return this; } public Short getDefaultRESTAPIAccessLevel() { return DefaultRESTAPIAccessLevel; } public SY_UserGroupsQuery setDefaultRESTAPIAccessLevel(Short value) { this.DefaultRESTAPIAccessLevel = value; return this; } public Short getDefaultRESTAPIAccessLevelGreaterThanOrEqualTo() { return DefaultRESTAPIAccessLevelGreaterThanOrEqualTo; } public SY_UserGroupsQuery setDefaultRESTAPIAccessLevelGreaterThanOrEqualTo(Short value) { this.DefaultRESTAPIAccessLevelGreaterThanOrEqualTo = value; return this; } public Short getDefaultRESTAPIAccessLevelGreaterThan() { return DefaultRESTAPIAccessLevelGreaterThan; } public SY_UserGroupsQuery setDefaultRESTAPIAccessLevelGreaterThan(Short value) { this.DefaultRESTAPIAccessLevelGreaterThan = value; return this; } public Short getDefaultRESTAPIAccessLevelLessThan() { return DefaultRESTAPIAccessLevelLessThan; } public SY_UserGroupsQuery setDefaultRESTAPIAccessLevelLessThan(Short value) { this.DefaultRESTAPIAccessLevelLessThan = value; return this; } public Short getDefaultRESTAPIAccessLevelLessThanOrEqualTo() { return DefaultRESTAPIAccessLevelLessThanOrEqualTo; } public SY_UserGroupsQuery setDefaultRESTAPIAccessLevelLessThanOrEqualTo(Short value) { this.DefaultRESTAPIAccessLevelLessThanOrEqualTo = value; return this; } public Short getDefaultRESTAPIAccessLevelNotEqualTo() { return DefaultRESTAPIAccessLevelNotEqualTo; } public SY_UserGroupsQuery setDefaultRESTAPIAccessLevelNotEqualTo(Short value) { this.DefaultRESTAPIAccessLevelNotEqualTo = value; return this; } public ArrayList getDefaultRESTAPIAccessLevelBetween() { return DefaultRESTAPIAccessLevelBetween; } public SY_UserGroupsQuery setDefaultRESTAPIAccessLevelBetween(ArrayList value) { this.DefaultRESTAPIAccessLevelBetween = value; return this; } public ArrayList getDefaultRESTAPIAccessLevelIn() { return DefaultRESTAPIAccessLevelIn; } public SY_UserGroupsQuery setDefaultRESTAPIAccessLevelIn(ArrayList value) { this.DefaultRESTAPIAccessLevelIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class SY_UserProfileQuery extends QueryDb implements IReturn> { public String ProfileID = null; public String ProfileIDStartsWith = null; public String ProfileIDEndsWith = null; public String ProfileIDContains = null; public String ProfileIDLike = null; public ArrayList ProfileIDBetween = null; public ArrayList ProfileIDIn = null; public Date LastSavedDateTime = null; public Date LastSavedDateTimeGreaterThanOrEqualTo = null; public Date LastSavedDateTimeGreaterThan = null; public Date LastSavedDateTimeLessThan = null; public Date LastSavedDateTimeLessThanOrEqualTo = null; public Date LastSavedDateTimeNotEqualTo = null; public ArrayList LastSavedDateTimeBetween = null; public ArrayList LastSavedDateTimeIn = null; public String UserID = null; public String UserIDStartsWith = null; public String UserIDEndsWith = null; public String UserIDContains = null; public String UserIDLike = null; public ArrayList UserIDBetween = null; public ArrayList UserIDIn = null; public String Section = null; public String SectionStartsWith = null; public String SectionEndsWith = null; public String SectionContains = null; public String SectionLike = null; public ArrayList SectionBetween = null; public ArrayList SectionIn = null; public String IDKey = null; public String IDKeyStartsWith = null; public String IDKeyEndsWith = null; public String IDKeyContains = null; public String IDKeyLike = null; public ArrayList IDKeyBetween = null; public ArrayList IDKeyIn = null; public String Contents = null; public String ContentsStartsWith = null; public String ContentsEndsWith = null; public String ContentsContains = null; public String ContentsLike = null; public ArrayList ContentsBetween = null; public ArrayList ContentsIn = null; public String getProfileID() { return ProfileID; } public SY_UserProfileQuery setProfileID(String value) { this.ProfileID = value; return this; } public String getProfileIDStartsWith() { return ProfileIDStartsWith; } public SY_UserProfileQuery setProfileIDStartsWith(String value) { this.ProfileIDStartsWith = value; return this; } public String getProfileIDEndsWith() { return ProfileIDEndsWith; } public SY_UserProfileQuery setProfileIDEndsWith(String value) { this.ProfileIDEndsWith = value; return this; } public String getProfileIDContains() { return ProfileIDContains; } public SY_UserProfileQuery setProfileIDContains(String value) { this.ProfileIDContains = value; return this; } public String getProfileIDLike() { return ProfileIDLike; } public SY_UserProfileQuery setProfileIDLike(String value) { this.ProfileIDLike = value; return this; } public ArrayList getProfileIDBetween() { return ProfileIDBetween; } public SY_UserProfileQuery setProfileIDBetween(ArrayList value) { this.ProfileIDBetween = value; return this; } public ArrayList getProfileIDIn() { return ProfileIDIn; } public SY_UserProfileQuery setProfileIDIn(ArrayList value) { this.ProfileIDIn = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public SY_UserProfileQuery setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getLastSavedDateTimeGreaterThanOrEqualTo() { return LastSavedDateTimeGreaterThanOrEqualTo; } public SY_UserProfileQuery setLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.LastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeGreaterThan() { return LastSavedDateTimeGreaterThan; } public SY_UserProfileQuery setLastSavedDateTimeGreaterThan(Date value) { this.LastSavedDateTimeGreaterThan = value; return this; } public Date getLastSavedDateTimeLessThan() { return LastSavedDateTimeLessThan; } public SY_UserProfileQuery setLastSavedDateTimeLessThan(Date value) { this.LastSavedDateTimeLessThan = value; return this; } public Date getLastSavedDateTimeLessThanOrEqualTo() { return LastSavedDateTimeLessThanOrEqualTo; } public SY_UserProfileQuery setLastSavedDateTimeLessThanOrEqualTo(Date value) { this.LastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeNotEqualTo() { return LastSavedDateTimeNotEqualTo; } public SY_UserProfileQuery setLastSavedDateTimeNotEqualTo(Date value) { this.LastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getLastSavedDateTimeBetween() { return LastSavedDateTimeBetween; } public SY_UserProfileQuery setLastSavedDateTimeBetween(ArrayList value) { this.LastSavedDateTimeBetween = value; return this; } public ArrayList getLastSavedDateTimeIn() { return LastSavedDateTimeIn; } public SY_UserProfileQuery setLastSavedDateTimeIn(ArrayList value) { this.LastSavedDateTimeIn = value; return this; } public String getUserID() { return UserID; } public SY_UserProfileQuery setUserID(String value) { this.UserID = value; return this; } public String getUserIDStartsWith() { return UserIDStartsWith; } public SY_UserProfileQuery setUserIDStartsWith(String value) { this.UserIDStartsWith = value; return this; } public String getUserIDEndsWith() { return UserIDEndsWith; } public SY_UserProfileQuery setUserIDEndsWith(String value) { this.UserIDEndsWith = value; return this; } public String getUserIDContains() { return UserIDContains; } public SY_UserProfileQuery setUserIDContains(String value) { this.UserIDContains = value; return this; } public String getUserIDLike() { return UserIDLike; } public SY_UserProfileQuery setUserIDLike(String value) { this.UserIDLike = value; return this; } public ArrayList getUserIDBetween() { return UserIDBetween; } public SY_UserProfileQuery setUserIDBetween(ArrayList value) { this.UserIDBetween = value; return this; } public ArrayList getUserIDIn() { return UserIDIn; } public SY_UserProfileQuery setUserIDIn(ArrayList value) { this.UserIDIn = value; return this; } public String getSection() { return Section; } public SY_UserProfileQuery setSection(String value) { this.Section = value; return this; } public String getSectionStartsWith() { return SectionStartsWith; } public SY_UserProfileQuery setSectionStartsWith(String value) { this.SectionStartsWith = value; return this; } public String getSectionEndsWith() { return SectionEndsWith; } public SY_UserProfileQuery setSectionEndsWith(String value) { this.SectionEndsWith = value; return this; } public String getSectionContains() { return SectionContains; } public SY_UserProfileQuery setSectionContains(String value) { this.SectionContains = value; return this; } public String getSectionLike() { return SectionLike; } public SY_UserProfileQuery setSectionLike(String value) { this.SectionLike = value; return this; } public ArrayList getSectionBetween() { return SectionBetween; } public SY_UserProfileQuery setSectionBetween(ArrayList value) { this.SectionBetween = value; return this; } public ArrayList getSectionIn() { return SectionIn; } public SY_UserProfileQuery setSectionIn(ArrayList value) { this.SectionIn = value; return this; } public String getIdKey() { return IDKey; } public SY_UserProfileQuery setIdKey(String value) { this.IDKey = value; return this; } public String getIdKeyStartsWith() { return IDKeyStartsWith; } public SY_UserProfileQuery setIdKeyStartsWith(String value) { this.IDKeyStartsWith = value; return this; } public String getIdKeyEndsWith() { return IDKeyEndsWith; } public SY_UserProfileQuery setIdKeyEndsWith(String value) { this.IDKeyEndsWith = value; return this; } public String getIdKeyContains() { return IDKeyContains; } public SY_UserProfileQuery setIdKeyContains(String value) { this.IDKeyContains = value; return this; } public String getIdKeyLike() { return IDKeyLike; } public SY_UserProfileQuery setIdKeyLike(String value) { this.IDKeyLike = value; return this; } public ArrayList getIdKeyBetween() { return IDKeyBetween; } public SY_UserProfileQuery setIdKeyBetween(ArrayList value) { this.IDKeyBetween = value; return this; } public ArrayList getIdKeyIn() { return IDKeyIn; } public SY_UserProfileQuery setIdKeyIn(ArrayList value) { this.IDKeyIn = value; return this; } public String getContents() { return Contents; } public SY_UserProfileQuery setContents(String value) { this.Contents = value; return this; } public String getContentsStartsWith() { return ContentsStartsWith; } public SY_UserProfileQuery setContentsStartsWith(String value) { this.ContentsStartsWith = value; return this; } public String getContentsEndsWith() { return ContentsEndsWith; } public SY_UserProfileQuery setContentsEndsWith(String value) { this.ContentsEndsWith = value; return this; } public String getContentsContains() { return ContentsContains; } public SY_UserProfileQuery setContentsContains(String value) { this.ContentsContains = value; return this; } public String getContentsLike() { return ContentsLike; } public SY_UserProfileQuery setContentsLike(String value) { this.ContentsLike = value; return this; } public ArrayList getContentsBetween() { return ContentsBetween; } public SY_UserProfileQuery setContentsBetween(ArrayList value) { this.ContentsBetween = value; return this; } public ArrayList getContentsIn() { return ContentsIn; } public SY_UserProfileQuery setContentsIn(ArrayList value) { this.ContentsIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class SY_WebhookMessageQuery extends QueryDb implements IReturn> { public UUID RecID = null; public ArrayList RecIDIn = null; public UUID SY_WebhookSubscription_RecID = null; public ArrayList SY_WebhookSubscription_RecIDIn = null; public String Body = null; public String BodyStartsWith = null; public String BodyEndsWith = null; public String BodyContains = null; public String BodyLike = null; public ArrayList BodyBetween = null; public ArrayList BodyIn = null; public Integer ItemNo = null; public Integer ItemNoGreaterThanOrEqualTo = null; public Integer ItemNoGreaterThan = null; public Integer ItemNoLessThan = null; public Integer ItemNoLessThanOrEqualTo = null; public Integer ItemNoNotEqualTo = null; public ArrayList ItemNoBetween = null; public ArrayList ItemNoIn = null; public Short Status = null; public Short StatusGreaterThanOrEqualTo = null; public Short StatusGreaterThan = null; public Short StatusLessThan = null; public Short StatusLessThanOrEqualTo = null; public Short StatusNotEqualTo = null; public ArrayList StatusBetween = null; public ArrayList StatusIn = null; public Date LastSavedDateTime = null; public Date LastSavedDateTimeGreaterThanOrEqualTo = null; public Date LastSavedDateTimeGreaterThan = null; public Date LastSavedDateTimeLessThan = null; public Date LastSavedDateTimeLessThanOrEqualTo = null; public Date LastSavedDateTimeNotEqualTo = null; public ArrayList LastSavedDateTimeBetween = null; public ArrayList LastSavedDateTimeIn = null; public Date AddedDateTime = null; public Date AddedDateTimeGreaterThanOrEqualTo = null; public Date AddedDateTimeGreaterThan = null; public Date AddedDateTimeLessThan = null; public Date AddedDateTimeLessThanOrEqualTo = null; public Date AddedDateTimeNotEqualTo = null; public ArrayList AddedDateTimeBetween = null; public ArrayList AddedDateTimeIn = null; public Integer Retries = null; public Integer RetriesGreaterThanOrEqualTo = null; public Integer RetriesGreaterThan = null; public Integer RetriesLessThan = null; public Integer RetriesLessThanOrEqualTo = null; public Integer RetriesNotEqualTo = null; public ArrayList RetriesBetween = null; public ArrayList RetriesIn = null; public ArrayList RowHash = null; public UUID getRecID() { return RecID; } public SY_WebhookMessageQuery setRecID(UUID value) { this.RecID = value; return this; } public ArrayList getRecIDIn() { return RecIDIn; } public SY_WebhookMessageQuery setRecIDIn(ArrayList value) { this.RecIDIn = value; return this; } public UUID getSyWebhookSubscriptionRecID() { return SY_WebhookSubscription_RecID; } public SY_WebhookMessageQuery setSyWebhookSubscriptionRecID(UUID value) { this.SY_WebhookSubscription_RecID = value; return this; } public ArrayList getSyWebhookSubscriptionRecIDIn() { return SY_WebhookSubscription_RecIDIn; } public SY_WebhookMessageQuery setSyWebhookSubscriptionRecIDIn(ArrayList value) { this.SY_WebhookSubscription_RecIDIn = value; return this; } public String getBody() { return Body; } public SY_WebhookMessageQuery setBody(String value) { this.Body = value; return this; } public String getBodyStartsWith() { return BodyStartsWith; } public SY_WebhookMessageQuery setBodyStartsWith(String value) { this.BodyStartsWith = value; return this; } public String getBodyEndsWith() { return BodyEndsWith; } public SY_WebhookMessageQuery setBodyEndsWith(String value) { this.BodyEndsWith = value; return this; } public String getBodyContains() { return BodyContains; } public SY_WebhookMessageQuery setBodyContains(String value) { this.BodyContains = value; return this; } public String getBodyLike() { return BodyLike; } public SY_WebhookMessageQuery setBodyLike(String value) { this.BodyLike = value; return this; } public ArrayList getBodyBetween() { return BodyBetween; } public SY_WebhookMessageQuery setBodyBetween(ArrayList value) { this.BodyBetween = value; return this; } public ArrayList getBodyIn() { return BodyIn; } public SY_WebhookMessageQuery setBodyIn(ArrayList value) { this.BodyIn = value; return this; } public Integer getItemNo() { return ItemNo; } public SY_WebhookMessageQuery setItemNo(Integer value) { this.ItemNo = value; return this; } public Integer getItemNoGreaterThanOrEqualTo() { return ItemNoGreaterThanOrEqualTo; } public SY_WebhookMessageQuery setItemNoGreaterThanOrEqualTo(Integer value) { this.ItemNoGreaterThanOrEqualTo = value; return this; } public Integer getItemNoGreaterThan() { return ItemNoGreaterThan; } public SY_WebhookMessageQuery setItemNoGreaterThan(Integer value) { this.ItemNoGreaterThan = value; return this; } public Integer getItemNoLessThan() { return ItemNoLessThan; } public SY_WebhookMessageQuery setItemNoLessThan(Integer value) { this.ItemNoLessThan = value; return this; } public Integer getItemNoLessThanOrEqualTo() { return ItemNoLessThanOrEqualTo; } public SY_WebhookMessageQuery setItemNoLessThanOrEqualTo(Integer value) { this.ItemNoLessThanOrEqualTo = value; return this; } public Integer getItemNoNotEqualTo() { return ItemNoNotEqualTo; } public SY_WebhookMessageQuery setItemNoNotEqualTo(Integer value) { this.ItemNoNotEqualTo = value; return this; } public ArrayList getItemNoBetween() { return ItemNoBetween; } public SY_WebhookMessageQuery setItemNoBetween(ArrayList value) { this.ItemNoBetween = value; return this; } public ArrayList getItemNoIn() { return ItemNoIn; } public SY_WebhookMessageQuery setItemNoIn(ArrayList value) { this.ItemNoIn = value; return this; } public Short getStatus() { return Status; } public SY_WebhookMessageQuery setStatus(Short value) { this.Status = value; return this; } public Short getStatusGreaterThanOrEqualTo() { return StatusGreaterThanOrEqualTo; } public SY_WebhookMessageQuery setStatusGreaterThanOrEqualTo(Short value) { this.StatusGreaterThanOrEqualTo = value; return this; } public Short getStatusGreaterThan() { return StatusGreaterThan; } public SY_WebhookMessageQuery setStatusGreaterThan(Short value) { this.StatusGreaterThan = value; return this; } public Short getStatusLessThan() { return StatusLessThan; } public SY_WebhookMessageQuery setStatusLessThan(Short value) { this.StatusLessThan = value; return this; } public Short getStatusLessThanOrEqualTo() { return StatusLessThanOrEqualTo; } public SY_WebhookMessageQuery setStatusLessThanOrEqualTo(Short value) { this.StatusLessThanOrEqualTo = value; return this; } public Short getStatusNotEqualTo() { return StatusNotEqualTo; } public SY_WebhookMessageQuery setStatusNotEqualTo(Short value) { this.StatusNotEqualTo = value; return this; } public ArrayList getStatusBetween() { return StatusBetween; } public SY_WebhookMessageQuery setStatusBetween(ArrayList value) { this.StatusBetween = value; return this; } public ArrayList getStatusIn() { return StatusIn; } public SY_WebhookMessageQuery setStatusIn(ArrayList value) { this.StatusIn = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public SY_WebhookMessageQuery setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getLastSavedDateTimeGreaterThanOrEqualTo() { return LastSavedDateTimeGreaterThanOrEqualTo; } public SY_WebhookMessageQuery setLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.LastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeGreaterThan() { return LastSavedDateTimeGreaterThan; } public SY_WebhookMessageQuery setLastSavedDateTimeGreaterThan(Date value) { this.LastSavedDateTimeGreaterThan = value; return this; } public Date getLastSavedDateTimeLessThan() { return LastSavedDateTimeLessThan; } public SY_WebhookMessageQuery setLastSavedDateTimeLessThan(Date value) { this.LastSavedDateTimeLessThan = value; return this; } public Date getLastSavedDateTimeLessThanOrEqualTo() { return LastSavedDateTimeLessThanOrEqualTo; } public SY_WebhookMessageQuery setLastSavedDateTimeLessThanOrEqualTo(Date value) { this.LastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeNotEqualTo() { return LastSavedDateTimeNotEqualTo; } public SY_WebhookMessageQuery setLastSavedDateTimeNotEqualTo(Date value) { this.LastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getLastSavedDateTimeBetween() { return LastSavedDateTimeBetween; } public SY_WebhookMessageQuery setLastSavedDateTimeBetween(ArrayList value) { this.LastSavedDateTimeBetween = value; return this; } public ArrayList getLastSavedDateTimeIn() { return LastSavedDateTimeIn; } public SY_WebhookMessageQuery setLastSavedDateTimeIn(ArrayList value) { this.LastSavedDateTimeIn = value; return this; } public Date getAddedDateTime() { return AddedDateTime; } public SY_WebhookMessageQuery setAddedDateTime(Date value) { this.AddedDateTime = value; return this; } public Date getAddedDateTimeGreaterThanOrEqualTo() { return AddedDateTimeGreaterThanOrEqualTo; } public SY_WebhookMessageQuery setAddedDateTimeGreaterThanOrEqualTo(Date value) { this.AddedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getAddedDateTimeGreaterThan() { return AddedDateTimeGreaterThan; } public SY_WebhookMessageQuery setAddedDateTimeGreaterThan(Date value) { this.AddedDateTimeGreaterThan = value; return this; } public Date getAddedDateTimeLessThan() { return AddedDateTimeLessThan; } public SY_WebhookMessageQuery setAddedDateTimeLessThan(Date value) { this.AddedDateTimeLessThan = value; return this; } public Date getAddedDateTimeLessThanOrEqualTo() { return AddedDateTimeLessThanOrEqualTo; } public SY_WebhookMessageQuery setAddedDateTimeLessThanOrEqualTo(Date value) { this.AddedDateTimeLessThanOrEqualTo = value; return this; } public Date getAddedDateTimeNotEqualTo() { return AddedDateTimeNotEqualTo; } public SY_WebhookMessageQuery setAddedDateTimeNotEqualTo(Date value) { this.AddedDateTimeNotEqualTo = value; return this; } public ArrayList getAddedDateTimeBetween() { return AddedDateTimeBetween; } public SY_WebhookMessageQuery setAddedDateTimeBetween(ArrayList value) { this.AddedDateTimeBetween = value; return this; } public ArrayList getAddedDateTimeIn() { return AddedDateTimeIn; } public SY_WebhookMessageQuery setAddedDateTimeIn(ArrayList value) { this.AddedDateTimeIn = value; return this; } public Integer getRetries() { return Retries; } public SY_WebhookMessageQuery setRetries(Integer value) { this.Retries = value; return this; } public Integer getRetriesGreaterThanOrEqualTo() { return RetriesGreaterThanOrEqualTo; } public SY_WebhookMessageQuery setRetriesGreaterThanOrEqualTo(Integer value) { this.RetriesGreaterThanOrEqualTo = value; return this; } public Integer getRetriesGreaterThan() { return RetriesGreaterThan; } public SY_WebhookMessageQuery setRetriesGreaterThan(Integer value) { this.RetriesGreaterThan = value; return this; } public Integer getRetriesLessThan() { return RetriesLessThan; } public SY_WebhookMessageQuery setRetriesLessThan(Integer value) { this.RetriesLessThan = value; return this; } public Integer getRetriesLessThanOrEqualTo() { return RetriesLessThanOrEqualTo; } public SY_WebhookMessageQuery setRetriesLessThanOrEqualTo(Integer value) { this.RetriesLessThanOrEqualTo = value; return this; } public Integer getRetriesNotEqualTo() { return RetriesNotEqualTo; } public SY_WebhookMessageQuery setRetriesNotEqualTo(Integer value) { this.RetriesNotEqualTo = value; return this; } public ArrayList getRetriesBetween() { return RetriesBetween; } public SY_WebhookMessageQuery setRetriesBetween(ArrayList value) { this.RetriesBetween = value; return this; } public ArrayList getRetriesIn() { return RetriesIn; } public SY_WebhookMessageQuery setRetriesIn(ArrayList value) { this.RetriesIn = value; return this; } public ArrayList getRowHash() { return RowHash; } public SY_WebhookMessageQuery setRowHash(ArrayList value) { this.RowHash = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class SY_WebhookMessageResponseQuery extends QueryDb implements IReturn> { public UUID RecID = null; public ArrayList RecIDIn = null; public UUID SY_WebhookMessage_RecID = null; public ArrayList SY_WebhookMessage_RecIDIn = null; public Integer HTTPCode = null; public Integer HTTPCodeGreaterThanOrEqualTo = null; public Integer HTTPCodeGreaterThan = null; public Integer HTTPCodeLessThan = null; public Integer HTTPCodeLessThanOrEqualTo = null; public Integer HTTPCodeNotEqualTo = null; public ArrayList HTTPCodeBetween = null; public ArrayList HTTPCodeIn = null; public String Message = null; public String MessageStartsWith = null; public String MessageEndsWith = null; public String MessageContains = null; public String MessageLike = null; public ArrayList MessageBetween = null; public ArrayList MessageIn = null; public Integer ItemNo = null; public Integer ItemNoGreaterThanOrEqualTo = null; public Integer ItemNoGreaterThan = null; public Integer ItemNoLessThan = null; public Integer ItemNoLessThanOrEqualTo = null; public Integer ItemNoNotEqualTo = null; public ArrayList ItemNoBetween = null; public ArrayList ItemNoIn = null; public Date LastSavedDateTime = null; public Date LastSavedDateTimeGreaterThanOrEqualTo = null; public Date LastSavedDateTimeGreaterThan = null; public Date LastSavedDateTimeLessThan = null; public Date LastSavedDateTimeLessThanOrEqualTo = null; public Date LastSavedDateTimeNotEqualTo = null; public ArrayList LastSavedDateTimeBetween = null; public ArrayList LastSavedDateTimeIn = null; public UUID getRecID() { return RecID; } public SY_WebhookMessageResponseQuery setRecID(UUID value) { this.RecID = value; return this; } public ArrayList getRecIDIn() { return RecIDIn; } public SY_WebhookMessageResponseQuery setRecIDIn(ArrayList value) { this.RecIDIn = value; return this; } public UUID getSyWebhookMessageRecID() { return SY_WebhookMessage_RecID; } public SY_WebhookMessageResponseQuery setSyWebhookMessageRecID(UUID value) { this.SY_WebhookMessage_RecID = value; return this; } public ArrayList getSyWebhookMessageRecIDIn() { return SY_WebhookMessage_RecIDIn; } public SY_WebhookMessageResponseQuery setSyWebhookMessageRecIDIn(ArrayList value) { this.SY_WebhookMessage_RecIDIn = value; return this; } public Integer getHttpCode() { return HTTPCode; } public SY_WebhookMessageResponseQuery setHttpCode(Integer value) { this.HTTPCode = value; return this; } public Integer getHttpCodeGreaterThanOrEqualTo() { return HTTPCodeGreaterThanOrEqualTo; } public SY_WebhookMessageResponseQuery setHttpCodeGreaterThanOrEqualTo(Integer value) { this.HTTPCodeGreaterThanOrEqualTo = value; return this; } public Integer getHttpCodeGreaterThan() { return HTTPCodeGreaterThan; } public SY_WebhookMessageResponseQuery setHttpCodeGreaterThan(Integer value) { this.HTTPCodeGreaterThan = value; return this; } public Integer getHttpCodeLessThan() { return HTTPCodeLessThan; } public SY_WebhookMessageResponseQuery setHttpCodeLessThan(Integer value) { this.HTTPCodeLessThan = value; return this; } public Integer getHttpCodeLessThanOrEqualTo() { return HTTPCodeLessThanOrEqualTo; } public SY_WebhookMessageResponseQuery setHttpCodeLessThanOrEqualTo(Integer value) { this.HTTPCodeLessThanOrEqualTo = value; return this; } public Integer getHttpCodeNotEqualTo() { return HTTPCodeNotEqualTo; } public SY_WebhookMessageResponseQuery setHttpCodeNotEqualTo(Integer value) { this.HTTPCodeNotEqualTo = value; return this; } public ArrayList getHttpCodeBetween() { return HTTPCodeBetween; } public SY_WebhookMessageResponseQuery setHttpCodeBetween(ArrayList value) { this.HTTPCodeBetween = value; return this; } public ArrayList getHttpCodeIn() { return HTTPCodeIn; } public SY_WebhookMessageResponseQuery setHttpCodeIn(ArrayList value) { this.HTTPCodeIn = value; return this; } public String getMessage() { return Message; } public SY_WebhookMessageResponseQuery setMessage(String value) { this.Message = value; return this; } public String getMessageStartsWith() { return MessageStartsWith; } public SY_WebhookMessageResponseQuery setMessageStartsWith(String value) { this.MessageStartsWith = value; return this; } public String getMessageEndsWith() { return MessageEndsWith; } public SY_WebhookMessageResponseQuery setMessageEndsWith(String value) { this.MessageEndsWith = value; return this; } public String getMessageContains() { return MessageContains; } public SY_WebhookMessageResponseQuery setMessageContains(String value) { this.MessageContains = value; return this; } public String getMessageLike() { return MessageLike; } public SY_WebhookMessageResponseQuery setMessageLike(String value) { this.MessageLike = value; return this; } public ArrayList getMessageBetween() { return MessageBetween; } public SY_WebhookMessageResponseQuery setMessageBetween(ArrayList value) { this.MessageBetween = value; return this; } public ArrayList getMessageIn() { return MessageIn; } public SY_WebhookMessageResponseQuery setMessageIn(ArrayList value) { this.MessageIn = value; return this; } public Integer getItemNo() { return ItemNo; } public SY_WebhookMessageResponseQuery setItemNo(Integer value) { this.ItemNo = value; return this; } public Integer getItemNoGreaterThanOrEqualTo() { return ItemNoGreaterThanOrEqualTo; } public SY_WebhookMessageResponseQuery setItemNoGreaterThanOrEqualTo(Integer value) { this.ItemNoGreaterThanOrEqualTo = value; return this; } public Integer getItemNoGreaterThan() { return ItemNoGreaterThan; } public SY_WebhookMessageResponseQuery setItemNoGreaterThan(Integer value) { this.ItemNoGreaterThan = value; return this; } public Integer getItemNoLessThan() { return ItemNoLessThan; } public SY_WebhookMessageResponseQuery setItemNoLessThan(Integer value) { this.ItemNoLessThan = value; return this; } public Integer getItemNoLessThanOrEqualTo() { return ItemNoLessThanOrEqualTo; } public SY_WebhookMessageResponseQuery setItemNoLessThanOrEqualTo(Integer value) { this.ItemNoLessThanOrEqualTo = value; return this; } public Integer getItemNoNotEqualTo() { return ItemNoNotEqualTo; } public SY_WebhookMessageResponseQuery setItemNoNotEqualTo(Integer value) { this.ItemNoNotEqualTo = value; return this; } public ArrayList getItemNoBetween() { return ItemNoBetween; } public SY_WebhookMessageResponseQuery setItemNoBetween(ArrayList value) { this.ItemNoBetween = value; return this; } public ArrayList getItemNoIn() { return ItemNoIn; } public SY_WebhookMessageResponseQuery setItemNoIn(ArrayList value) { this.ItemNoIn = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public SY_WebhookMessageResponseQuery setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getLastSavedDateTimeGreaterThanOrEqualTo() { return LastSavedDateTimeGreaterThanOrEqualTo; } public SY_WebhookMessageResponseQuery setLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.LastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeGreaterThan() { return LastSavedDateTimeGreaterThan; } public SY_WebhookMessageResponseQuery setLastSavedDateTimeGreaterThan(Date value) { this.LastSavedDateTimeGreaterThan = value; return this; } public Date getLastSavedDateTimeLessThan() { return LastSavedDateTimeLessThan; } public SY_WebhookMessageResponseQuery setLastSavedDateTimeLessThan(Date value) { this.LastSavedDateTimeLessThan = value; return this; } public Date getLastSavedDateTimeLessThanOrEqualTo() { return LastSavedDateTimeLessThanOrEqualTo; } public SY_WebhookMessageResponseQuery setLastSavedDateTimeLessThanOrEqualTo(Date value) { this.LastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeNotEqualTo() { return LastSavedDateTimeNotEqualTo; } public SY_WebhookMessageResponseQuery setLastSavedDateTimeNotEqualTo(Date value) { this.LastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getLastSavedDateTimeBetween() { return LastSavedDateTimeBetween; } public SY_WebhookMessageResponseQuery setLastSavedDateTimeBetween(ArrayList value) { this.LastSavedDateTimeBetween = value; return this; } public ArrayList getLastSavedDateTimeIn() { return LastSavedDateTimeIn; } public SY_WebhookMessageResponseQuery setLastSavedDateTimeIn(ArrayList value) { this.LastSavedDateTimeIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @Route(Path="/Queries/SY_WebhookSubscriber", Verbs="GET") @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class SY_WebhookSubscriberQuery extends QueryDb implements IReturn> { public UUID RecID = null; public ArrayList RecIDIn = null; public String Name = null; public String NameStartsWith = null; public String NameEndsWith = null; public String NameContains = null; public String NameLike = null; public ArrayList NameBetween = null; public ArrayList NameIn = null; public Boolean IsEnabled = null; public Integer ItemNo = null; public Integer ItemNoGreaterThanOrEqualTo = null; public Integer ItemNoGreaterThan = null; public Integer ItemNoLessThan = null; public Integer ItemNoLessThanOrEqualTo = null; public Integer ItemNoNotEqualTo = null; public ArrayList ItemNoBetween = null; public ArrayList ItemNoIn = null; public Date LastSavedDateTime = null; public Date LastSavedDateTimeGreaterThanOrEqualTo = null; public Date LastSavedDateTimeGreaterThan = null; public Date LastSavedDateTimeLessThan = null; public Date LastSavedDateTimeLessThanOrEqualTo = null; public Date LastSavedDateTimeNotEqualTo = null; public ArrayList LastSavedDateTimeBetween = null; public ArrayList LastSavedDateTimeIn = null; public ArrayList RowHash = null; public UUID getRecID() { return RecID; } public SY_WebhookSubscriberQuery setRecID(UUID value) { this.RecID = value; return this; } public ArrayList getRecIDIn() { return RecIDIn; } public SY_WebhookSubscriberQuery setRecIDIn(ArrayList value) { this.RecIDIn = value; return this; } public String getName() { return Name; } public SY_WebhookSubscriberQuery setName(String value) { this.Name = value; return this; } public String getNameStartsWith() { return NameStartsWith; } public SY_WebhookSubscriberQuery setNameStartsWith(String value) { this.NameStartsWith = value; return this; } public String getNameEndsWith() { return NameEndsWith; } public SY_WebhookSubscriberQuery setNameEndsWith(String value) { this.NameEndsWith = value; return this; } public String getNameContains() { return NameContains; } public SY_WebhookSubscriberQuery setNameContains(String value) { this.NameContains = value; return this; } public String getNameLike() { return NameLike; } public SY_WebhookSubscriberQuery setNameLike(String value) { this.NameLike = value; return this; } public ArrayList getNameBetween() { return NameBetween; } public SY_WebhookSubscriberQuery setNameBetween(ArrayList value) { this.NameBetween = value; return this; } public ArrayList getNameIn() { return NameIn; } public SY_WebhookSubscriberQuery setNameIn(ArrayList value) { this.NameIn = value; return this; } public Boolean getIsEnabled() { return IsEnabled; } public SY_WebhookSubscriberQuery setIsEnabled(Boolean value) { this.IsEnabled = value; return this; } public Integer getItemNo() { return ItemNo; } public SY_WebhookSubscriberQuery setItemNo(Integer value) { this.ItemNo = value; return this; } public Integer getItemNoGreaterThanOrEqualTo() { return ItemNoGreaterThanOrEqualTo; } public SY_WebhookSubscriberQuery setItemNoGreaterThanOrEqualTo(Integer value) { this.ItemNoGreaterThanOrEqualTo = value; return this; } public Integer getItemNoGreaterThan() { return ItemNoGreaterThan; } public SY_WebhookSubscriberQuery setItemNoGreaterThan(Integer value) { this.ItemNoGreaterThan = value; return this; } public Integer getItemNoLessThan() { return ItemNoLessThan; } public SY_WebhookSubscriberQuery setItemNoLessThan(Integer value) { this.ItemNoLessThan = value; return this; } public Integer getItemNoLessThanOrEqualTo() { return ItemNoLessThanOrEqualTo; } public SY_WebhookSubscriberQuery setItemNoLessThanOrEqualTo(Integer value) { this.ItemNoLessThanOrEqualTo = value; return this; } public Integer getItemNoNotEqualTo() { return ItemNoNotEqualTo; } public SY_WebhookSubscriberQuery setItemNoNotEqualTo(Integer value) { this.ItemNoNotEqualTo = value; return this; } public ArrayList getItemNoBetween() { return ItemNoBetween; } public SY_WebhookSubscriberQuery setItemNoBetween(ArrayList value) { this.ItemNoBetween = value; return this; } public ArrayList getItemNoIn() { return ItemNoIn; } public SY_WebhookSubscriberQuery setItemNoIn(ArrayList value) { this.ItemNoIn = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public SY_WebhookSubscriberQuery setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getLastSavedDateTimeGreaterThanOrEqualTo() { return LastSavedDateTimeGreaterThanOrEqualTo; } public SY_WebhookSubscriberQuery setLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.LastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeGreaterThan() { return LastSavedDateTimeGreaterThan; } public SY_WebhookSubscriberQuery setLastSavedDateTimeGreaterThan(Date value) { this.LastSavedDateTimeGreaterThan = value; return this; } public Date getLastSavedDateTimeLessThan() { return LastSavedDateTimeLessThan; } public SY_WebhookSubscriberQuery setLastSavedDateTimeLessThan(Date value) { this.LastSavedDateTimeLessThan = value; return this; } public Date getLastSavedDateTimeLessThanOrEqualTo() { return LastSavedDateTimeLessThanOrEqualTo; } public SY_WebhookSubscriberQuery setLastSavedDateTimeLessThanOrEqualTo(Date value) { this.LastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeNotEqualTo() { return LastSavedDateTimeNotEqualTo; } public SY_WebhookSubscriberQuery setLastSavedDateTimeNotEqualTo(Date value) { this.LastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getLastSavedDateTimeBetween() { return LastSavedDateTimeBetween; } public SY_WebhookSubscriberQuery setLastSavedDateTimeBetween(ArrayList value) { this.LastSavedDateTimeBetween = value; return this; } public ArrayList getLastSavedDateTimeIn() { return LastSavedDateTimeIn; } public SY_WebhookSubscriberQuery setLastSavedDateTimeIn(ArrayList value) { this.LastSavedDateTimeIn = value; return this; } public ArrayList getRowHash() { return RowHash; } public SY_WebhookSubscriberQuery setRowHash(ArrayList value) { this.RowHash = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class SY_WebhookSubscriptionQuery extends QueryDb implements IReturn> { public UUID RecID = null; public ArrayList RecIDIn = null; public UUID SY_WebhookSubscriber_RecID = null; public ArrayList SY_WebhookSubscriber_RecIDIn = null; public String EventName = null; public String EventNameStartsWith = null; public String EventNameEndsWith = null; public String EventNameContains = null; public String EventNameLike = null; public ArrayList EventNameBetween = null; public ArrayList EventNameIn = null; public String URL = null; public String URLStartsWith = null; public String URLEndsWith = null; public String URLContains = null; public String URLLike = null; public ArrayList URLBetween = null; public ArrayList URLIn = null; public Integer ItemNo = null; public Integer ItemNoGreaterThanOrEqualTo = null; public Integer ItemNoGreaterThan = null; public Integer ItemNoLessThan = null; public Integer ItemNoLessThanOrEqualTo = null; public Integer ItemNoNotEqualTo = null; public ArrayList ItemNoBetween = null; public ArrayList ItemNoIn = null; public Date LastSavedDateTime = null; public Date LastSavedDateTimeGreaterThanOrEqualTo = null; public Date LastSavedDateTimeGreaterThan = null; public Date LastSavedDateTimeLessThan = null; public Date LastSavedDateTimeLessThanOrEqualTo = null; public Date LastSavedDateTimeNotEqualTo = null; public ArrayList LastSavedDateTimeBetween = null; public ArrayList LastSavedDateTimeIn = null; public ArrayList RowHash = null; public UUID getRecID() { return RecID; } public SY_WebhookSubscriptionQuery setRecID(UUID value) { this.RecID = value; return this; } public ArrayList getRecIDIn() { return RecIDIn; } public SY_WebhookSubscriptionQuery setRecIDIn(ArrayList value) { this.RecIDIn = value; return this; } public UUID getSyWebhookSubscriberRecID() { return SY_WebhookSubscriber_RecID; } public SY_WebhookSubscriptionQuery setSyWebhookSubscriberRecID(UUID value) { this.SY_WebhookSubscriber_RecID = value; return this; } public ArrayList getSyWebhookSubscriberRecIDIn() { return SY_WebhookSubscriber_RecIDIn; } public SY_WebhookSubscriptionQuery setSyWebhookSubscriberRecIDIn(ArrayList value) { this.SY_WebhookSubscriber_RecIDIn = value; return this; } public String getEventName() { return EventName; } public SY_WebhookSubscriptionQuery setEventName(String value) { this.EventName = value; return this; } public String getEventNameStartsWith() { return EventNameStartsWith; } public SY_WebhookSubscriptionQuery setEventNameStartsWith(String value) { this.EventNameStartsWith = value; return this; } public String getEventNameEndsWith() { return EventNameEndsWith; } public SY_WebhookSubscriptionQuery setEventNameEndsWith(String value) { this.EventNameEndsWith = value; return this; } public String getEventNameContains() { return EventNameContains; } public SY_WebhookSubscriptionQuery setEventNameContains(String value) { this.EventNameContains = value; return this; } public String getEventNameLike() { return EventNameLike; } public SY_WebhookSubscriptionQuery setEventNameLike(String value) { this.EventNameLike = value; return this; } public ArrayList getEventNameBetween() { return EventNameBetween; } public SY_WebhookSubscriptionQuery setEventNameBetween(ArrayList value) { this.EventNameBetween = value; return this; } public ArrayList getEventNameIn() { return EventNameIn; } public SY_WebhookSubscriptionQuery setEventNameIn(ArrayList value) { this.EventNameIn = value; return this; } public String getUrl() { return URL; } public SY_WebhookSubscriptionQuery setUrl(String value) { this.URL = value; return this; } public String getUrlStartsWith() { return URLStartsWith; } public SY_WebhookSubscriptionQuery setUrlStartsWith(String value) { this.URLStartsWith = value; return this; } public String getUrlEndsWith() { return URLEndsWith; } public SY_WebhookSubscriptionQuery setUrlEndsWith(String value) { this.URLEndsWith = value; return this; } public String getUrlContains() { return URLContains; } public SY_WebhookSubscriptionQuery setUrlContains(String value) { this.URLContains = value; return this; } public String getUrlLike() { return URLLike; } public SY_WebhookSubscriptionQuery setUrlLike(String value) { this.URLLike = value; return this; } public ArrayList getUrlBetween() { return URLBetween; } public SY_WebhookSubscriptionQuery setUrlBetween(ArrayList value) { this.URLBetween = value; return this; } public ArrayList getUrlIn() { return URLIn; } public SY_WebhookSubscriptionQuery setUrlIn(ArrayList value) { this.URLIn = value; return this; } public Integer getItemNo() { return ItemNo; } public SY_WebhookSubscriptionQuery setItemNo(Integer value) { this.ItemNo = value; return this; } public Integer getItemNoGreaterThanOrEqualTo() { return ItemNoGreaterThanOrEqualTo; } public SY_WebhookSubscriptionQuery setItemNoGreaterThanOrEqualTo(Integer value) { this.ItemNoGreaterThanOrEqualTo = value; return this; } public Integer getItemNoGreaterThan() { return ItemNoGreaterThan; } public SY_WebhookSubscriptionQuery setItemNoGreaterThan(Integer value) { this.ItemNoGreaterThan = value; return this; } public Integer getItemNoLessThan() { return ItemNoLessThan; } public SY_WebhookSubscriptionQuery setItemNoLessThan(Integer value) { this.ItemNoLessThan = value; return this; } public Integer getItemNoLessThanOrEqualTo() { return ItemNoLessThanOrEqualTo; } public SY_WebhookSubscriptionQuery setItemNoLessThanOrEqualTo(Integer value) { this.ItemNoLessThanOrEqualTo = value; return this; } public Integer getItemNoNotEqualTo() { return ItemNoNotEqualTo; } public SY_WebhookSubscriptionQuery setItemNoNotEqualTo(Integer value) { this.ItemNoNotEqualTo = value; return this; } public ArrayList getItemNoBetween() { return ItemNoBetween; } public SY_WebhookSubscriptionQuery setItemNoBetween(ArrayList value) { this.ItemNoBetween = value; return this; } public ArrayList getItemNoIn() { return ItemNoIn; } public SY_WebhookSubscriptionQuery setItemNoIn(ArrayList value) { this.ItemNoIn = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public SY_WebhookSubscriptionQuery setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getLastSavedDateTimeGreaterThanOrEqualTo() { return LastSavedDateTimeGreaterThanOrEqualTo; } public SY_WebhookSubscriptionQuery setLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.LastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeGreaterThan() { return LastSavedDateTimeGreaterThan; } public SY_WebhookSubscriptionQuery setLastSavedDateTimeGreaterThan(Date value) { this.LastSavedDateTimeGreaterThan = value; return this; } public Date getLastSavedDateTimeLessThan() { return LastSavedDateTimeLessThan; } public SY_WebhookSubscriptionQuery setLastSavedDateTimeLessThan(Date value) { this.LastSavedDateTimeLessThan = value; return this; } public Date getLastSavedDateTimeLessThanOrEqualTo() { return LastSavedDateTimeLessThanOrEqualTo; } public SY_WebhookSubscriptionQuery setLastSavedDateTimeLessThanOrEqualTo(Date value) { this.LastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeNotEqualTo() { return LastSavedDateTimeNotEqualTo; } public SY_WebhookSubscriptionQuery setLastSavedDateTimeNotEqualTo(Date value) { this.LastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getLastSavedDateTimeBetween() { return LastSavedDateTimeBetween; } public SY_WebhookSubscriptionQuery setLastSavedDateTimeBetween(ArrayList value) { this.LastSavedDateTimeBetween = value; return this; } public ArrayList getLastSavedDateTimeIn() { return LastSavedDateTimeIn; } public SY_WebhookSubscriptionQuery setLastSavedDateTimeIn(ArrayList value) { this.LastSavedDateTimeIn = value; return this; } public ArrayList getRowHash() { return RowHash; } public SY_WebhookSubscriptionQuery setRowHash(ArrayList value) { this.RowHash = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class SY_WebhookSubscriptionRequestHeaderQuery extends QueryDb implements IReturn> { public UUID RecID = null; public ArrayList RecIDIn = null; public UUID SY_WebhookSubscription_RecID = null; public ArrayList SY_WebhookSubscription_RecIDIn = null; public String Name = null; public String NameStartsWith = null; public String NameEndsWith = null; public String NameContains = null; public String NameLike = null; public ArrayList NameBetween = null; public ArrayList NameIn = null; public String Value = null; public String ValueStartsWith = null; public String ValueEndsWith = null; public String ValueContains = null; public String ValueLike = null; public ArrayList ValueBetween = null; public ArrayList ValueIn = null; public Integer ItemNo = null; public Integer ItemNoGreaterThanOrEqualTo = null; public Integer ItemNoGreaterThan = null; public Integer ItemNoLessThan = null; public Integer ItemNoLessThanOrEqualTo = null; public Integer ItemNoNotEqualTo = null; public ArrayList ItemNoBetween = null; public ArrayList ItemNoIn = null; public Date LastSavedDateTime = null; public Date LastSavedDateTimeGreaterThanOrEqualTo = null; public Date LastSavedDateTimeGreaterThan = null; public Date LastSavedDateTimeLessThan = null; public Date LastSavedDateTimeLessThanOrEqualTo = null; public Date LastSavedDateTimeNotEqualTo = null; public ArrayList LastSavedDateTimeBetween = null; public ArrayList LastSavedDateTimeIn = null; public ArrayList RowHash = null; public UUID getRecID() { return RecID; } public SY_WebhookSubscriptionRequestHeaderQuery setRecID(UUID value) { this.RecID = value; return this; } public ArrayList getRecIDIn() { return RecIDIn; } public SY_WebhookSubscriptionRequestHeaderQuery setRecIDIn(ArrayList value) { this.RecIDIn = value; return this; } public UUID getSyWebhookSubscriptionRecID() { return SY_WebhookSubscription_RecID; } public SY_WebhookSubscriptionRequestHeaderQuery setSyWebhookSubscriptionRecID(UUID value) { this.SY_WebhookSubscription_RecID = value; return this; } public ArrayList getSyWebhookSubscriptionRecIDIn() { return SY_WebhookSubscription_RecIDIn; } public SY_WebhookSubscriptionRequestHeaderQuery setSyWebhookSubscriptionRecIDIn(ArrayList value) { this.SY_WebhookSubscription_RecIDIn = value; return this; } public String getName() { return Name; } public SY_WebhookSubscriptionRequestHeaderQuery setName(String value) { this.Name = value; return this; } public String getNameStartsWith() { return NameStartsWith; } public SY_WebhookSubscriptionRequestHeaderQuery setNameStartsWith(String value) { this.NameStartsWith = value; return this; } public String getNameEndsWith() { return NameEndsWith; } public SY_WebhookSubscriptionRequestHeaderQuery setNameEndsWith(String value) { this.NameEndsWith = value; return this; } public String getNameContains() { return NameContains; } public SY_WebhookSubscriptionRequestHeaderQuery setNameContains(String value) { this.NameContains = value; return this; } public String getNameLike() { return NameLike; } public SY_WebhookSubscriptionRequestHeaderQuery setNameLike(String value) { this.NameLike = value; return this; } public ArrayList getNameBetween() { return NameBetween; } public SY_WebhookSubscriptionRequestHeaderQuery setNameBetween(ArrayList value) { this.NameBetween = value; return this; } public ArrayList getNameIn() { return NameIn; } public SY_WebhookSubscriptionRequestHeaderQuery setNameIn(ArrayList value) { this.NameIn = value; return this; } public String getValue() { return Value; } public SY_WebhookSubscriptionRequestHeaderQuery setValue(String value) { this.Value = value; return this; } public String getValueStartsWith() { return ValueStartsWith; } public SY_WebhookSubscriptionRequestHeaderQuery setValueStartsWith(String value) { this.ValueStartsWith = value; return this; } public String getValueEndsWith() { return ValueEndsWith; } public SY_WebhookSubscriptionRequestHeaderQuery setValueEndsWith(String value) { this.ValueEndsWith = value; return this; } public String getValueContains() { return ValueContains; } public SY_WebhookSubscriptionRequestHeaderQuery setValueContains(String value) { this.ValueContains = value; return this; } public String getValueLike() { return ValueLike; } public SY_WebhookSubscriptionRequestHeaderQuery setValueLike(String value) { this.ValueLike = value; return this; } public ArrayList getValueBetween() { return ValueBetween; } public SY_WebhookSubscriptionRequestHeaderQuery setValueBetween(ArrayList value) { this.ValueBetween = value; return this; } public ArrayList getValueIn() { return ValueIn; } public SY_WebhookSubscriptionRequestHeaderQuery setValueIn(ArrayList value) { this.ValueIn = value; return this; } public Integer getItemNo() { return ItemNo; } public SY_WebhookSubscriptionRequestHeaderQuery setItemNo(Integer value) { this.ItemNo = value; return this; } public Integer getItemNoGreaterThanOrEqualTo() { return ItemNoGreaterThanOrEqualTo; } public SY_WebhookSubscriptionRequestHeaderQuery setItemNoGreaterThanOrEqualTo(Integer value) { this.ItemNoGreaterThanOrEqualTo = value; return this; } public Integer getItemNoGreaterThan() { return ItemNoGreaterThan; } public SY_WebhookSubscriptionRequestHeaderQuery setItemNoGreaterThan(Integer value) { this.ItemNoGreaterThan = value; return this; } public Integer getItemNoLessThan() { return ItemNoLessThan; } public SY_WebhookSubscriptionRequestHeaderQuery setItemNoLessThan(Integer value) { this.ItemNoLessThan = value; return this; } public Integer getItemNoLessThanOrEqualTo() { return ItemNoLessThanOrEqualTo; } public SY_WebhookSubscriptionRequestHeaderQuery setItemNoLessThanOrEqualTo(Integer value) { this.ItemNoLessThanOrEqualTo = value; return this; } public Integer getItemNoNotEqualTo() { return ItemNoNotEqualTo; } public SY_WebhookSubscriptionRequestHeaderQuery setItemNoNotEqualTo(Integer value) { this.ItemNoNotEqualTo = value; return this; } public ArrayList getItemNoBetween() { return ItemNoBetween; } public SY_WebhookSubscriptionRequestHeaderQuery setItemNoBetween(ArrayList value) { this.ItemNoBetween = value; return this; } public ArrayList getItemNoIn() { return ItemNoIn; } public SY_WebhookSubscriptionRequestHeaderQuery setItemNoIn(ArrayList value) { this.ItemNoIn = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public SY_WebhookSubscriptionRequestHeaderQuery setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getLastSavedDateTimeGreaterThanOrEqualTo() { return LastSavedDateTimeGreaterThanOrEqualTo; } public SY_WebhookSubscriptionRequestHeaderQuery setLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.LastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeGreaterThan() { return LastSavedDateTimeGreaterThan; } public SY_WebhookSubscriptionRequestHeaderQuery setLastSavedDateTimeGreaterThan(Date value) { this.LastSavedDateTimeGreaterThan = value; return this; } public Date getLastSavedDateTimeLessThan() { return LastSavedDateTimeLessThan; } public SY_WebhookSubscriptionRequestHeaderQuery setLastSavedDateTimeLessThan(Date value) { this.LastSavedDateTimeLessThan = value; return this; } public Date getLastSavedDateTimeLessThanOrEqualTo() { return LastSavedDateTimeLessThanOrEqualTo; } public SY_WebhookSubscriptionRequestHeaderQuery setLastSavedDateTimeLessThanOrEqualTo(Date value) { this.LastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeNotEqualTo() { return LastSavedDateTimeNotEqualTo; } public SY_WebhookSubscriptionRequestHeaderQuery setLastSavedDateTimeNotEqualTo(Date value) { this.LastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getLastSavedDateTimeBetween() { return LastSavedDateTimeBetween; } public SY_WebhookSubscriptionRequestHeaderQuery setLastSavedDateTimeBetween(ArrayList value) { this.LastSavedDateTimeBetween = value; return this; } public ArrayList getLastSavedDateTimeIn() { return LastSavedDateTimeIn; } public SY_WebhookSubscriptionRequestHeaderQuery setLastSavedDateTimeIn(ArrayList value) { this.LastSavedDateTimeIn = value; return this; } public ArrayList getRowHash() { return RowHash; } public SY_WebhookSubscriptionRequestHeaderQuery setRowHash(ArrayList value) { this.RowHash = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class SYS_ProcessesQuery extends QueryDb implements IReturn> { public String ID = null; public String IDStartsWith = null; public String IDEndsWith = null; public String IDContains = null; public String IDLike = null; public ArrayList IDBetween = null; public ArrayList IDIn = null; public Date LastSavedDateTime = null; public Date LastSavedDateTimeGreaterThanOrEqualTo = null; public Date LastSavedDateTimeGreaterThan = null; public Date LastSavedDateTimeLessThan = null; public Date LastSavedDateTimeLessThanOrEqualTo = null; public Date LastSavedDateTimeNotEqualTo = null; public ArrayList LastSavedDateTimeBetween = null; public ArrayList LastSavedDateTimeIn = null; public String IDKey = null; public String IDKeyStartsWith = null; public String IDKeyEndsWith = null; public String IDKeyContains = null; public String IDKeyLike = null; public ArrayList IDKeyBetween = null; public ArrayList IDKeyIn = null; public String Contents = null; public String ContentsStartsWith = null; public String ContentsEndsWith = null; public String ContentsContains = null; public String ContentsLike = null; public ArrayList ContentsBetween = null; public ArrayList ContentsIn = null; public String getId() { return ID; } public SYS_ProcessesQuery setId(String value) { this.ID = value; return this; } public String getIdStartsWith() { return IDStartsWith; } public SYS_ProcessesQuery setIdStartsWith(String value) { this.IDStartsWith = value; return this; } public String getIdEndsWith() { return IDEndsWith; } public SYS_ProcessesQuery setIdEndsWith(String value) { this.IDEndsWith = value; return this; } public String getIdContains() { return IDContains; } public SYS_ProcessesQuery setIdContains(String value) { this.IDContains = value; return this; } public String getIdLike() { return IDLike; } public SYS_ProcessesQuery setIdLike(String value) { this.IDLike = value; return this; } public ArrayList getIdBetween() { return IDBetween; } public SYS_ProcessesQuery setIdBetween(ArrayList value) { this.IDBetween = value; return this; } public ArrayList getIdIn() { return IDIn; } public SYS_ProcessesQuery setIdIn(ArrayList value) { this.IDIn = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public SYS_ProcessesQuery setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getLastSavedDateTimeGreaterThanOrEqualTo() { return LastSavedDateTimeGreaterThanOrEqualTo; } public SYS_ProcessesQuery setLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.LastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeGreaterThan() { return LastSavedDateTimeGreaterThan; } public SYS_ProcessesQuery setLastSavedDateTimeGreaterThan(Date value) { this.LastSavedDateTimeGreaterThan = value; return this; } public Date getLastSavedDateTimeLessThan() { return LastSavedDateTimeLessThan; } public SYS_ProcessesQuery setLastSavedDateTimeLessThan(Date value) { this.LastSavedDateTimeLessThan = value; return this; } public Date getLastSavedDateTimeLessThanOrEqualTo() { return LastSavedDateTimeLessThanOrEqualTo; } public SYS_ProcessesQuery setLastSavedDateTimeLessThanOrEqualTo(Date value) { this.LastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeNotEqualTo() { return LastSavedDateTimeNotEqualTo; } public SYS_ProcessesQuery setLastSavedDateTimeNotEqualTo(Date value) { this.LastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getLastSavedDateTimeBetween() { return LastSavedDateTimeBetween; } public SYS_ProcessesQuery setLastSavedDateTimeBetween(ArrayList value) { this.LastSavedDateTimeBetween = value; return this; } public ArrayList getLastSavedDateTimeIn() { return LastSavedDateTimeIn; } public SYS_ProcessesQuery setLastSavedDateTimeIn(ArrayList value) { this.LastSavedDateTimeIn = value; return this; } public String getIdKey() { return IDKey; } public SYS_ProcessesQuery setIdKey(String value) { this.IDKey = value; return this; } public String getIdKeyStartsWith() { return IDKeyStartsWith; } public SYS_ProcessesQuery setIdKeyStartsWith(String value) { this.IDKeyStartsWith = value; return this; } public String getIdKeyEndsWith() { return IDKeyEndsWith; } public SYS_ProcessesQuery setIdKeyEndsWith(String value) { this.IDKeyEndsWith = value; return this; } public String getIdKeyContains() { return IDKeyContains; } public SYS_ProcessesQuery setIdKeyContains(String value) { this.IDKeyContains = value; return this; } public String getIdKeyLike() { return IDKeyLike; } public SYS_ProcessesQuery setIdKeyLike(String value) { this.IDKeyLike = value; return this; } public ArrayList getIdKeyBetween() { return IDKeyBetween; } public SYS_ProcessesQuery setIdKeyBetween(ArrayList value) { this.IDKeyBetween = value; return this; } public ArrayList getIdKeyIn() { return IDKeyIn; } public SYS_ProcessesQuery setIdKeyIn(ArrayList value) { this.IDKeyIn = value; return this; } public String getContents() { return Contents; } public SYS_ProcessesQuery setContents(String value) { this.Contents = value; return this; } public String getContentsStartsWith() { return ContentsStartsWith; } public SYS_ProcessesQuery setContentsStartsWith(String value) { this.ContentsStartsWith = value; return this; } public String getContentsEndsWith() { return ContentsEndsWith; } public SYS_ProcessesQuery setContentsEndsWith(String value) { this.ContentsEndsWith = value; return this; } public String getContentsContains() { return ContentsContains; } public SYS_ProcessesQuery setContentsContains(String value) { this.ContentsContains = value; return this; } public String getContentsLike() { return ContentsLike; } public SYS_ProcessesQuery setContentsLike(String value) { this.ContentsLike = value; return this; } public ArrayList getContentsBetween() { return ContentsBetween; } public SYS_ProcessesQuery setContentsBetween(ArrayList value) { this.ContentsBetween = value; return this; } public ArrayList getContentsIn() { return ContentsIn; } public SYS_ProcessesQuery setContentsIn(ArrayList value) { this.ContentsIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class TD_CollaborationsQuery extends QueryDb implements IReturn> { public String RecID = null; public String RecIDStartsWith = null; public String RecIDEndsWith = null; public String RecIDContains = null; public String RecIDLike = null; public ArrayList RecIDBetween = null; public ArrayList RecIDIn = null; public String TD_Main_RecID = null; public String TD_Main_RecIDStartsWith = null; public String TD_Main_RecIDEndsWith = null; public String TD_Main_RecIDContains = null; public String TD_Main_RecIDLike = null; public ArrayList TD_Main_RecIDBetween = null; public ArrayList TD_Main_RecIDIn = null; public String HR_Staff_RecID = null; public String HR_Staff_RecIDStartsWith = null; public String HR_Staff_RecIDEndsWith = null; public String HR_Staff_RecIDContains = null; public String HR_Staff_RecIDLike = null; public ArrayList HR_Staff_RecIDBetween = null; public ArrayList HR_Staff_RecIDIn = null; public Boolean NotificationEnabled = null; public String NotificationText = null; public String NotificationTextStartsWith = null; public String NotificationTextEndsWith = null; public String NotificationTextContains = null; public String NotificationTextLike = null; public ArrayList NotificationTextBetween = null; public ArrayList NotificationTextIn = null; public Date LastSavedDateTime = null; public Date LastSavedDateTimeGreaterThanOrEqualTo = null; public Date LastSavedDateTimeGreaterThan = null; public Date LastSavedDateTimeLessThan = null; public Date LastSavedDateTimeLessThanOrEqualTo = null; public Date LastSavedDateTimeNotEqualTo = null; public ArrayList LastSavedDateTimeBetween = null; public ArrayList LastSavedDateTimeIn = null; public ArrayList RowHash = null; public Integer ItemNo = null; public Integer ItemNoGreaterThanOrEqualTo = null; public Integer ItemNoGreaterThan = null; public Integer ItemNoLessThan = null; public Integer ItemNoLessThanOrEqualTo = null; public Integer ItemNoNotEqualTo = null; public ArrayList ItemNoBetween = null; public ArrayList ItemNoIn = null; public Boolean NotificationSent = null; public String getRecID() { return RecID; } public TD_CollaborationsQuery setRecID(String value) { this.RecID = value; return this; } public String getRecIDStartsWith() { return RecIDStartsWith; } public TD_CollaborationsQuery setRecIDStartsWith(String value) { this.RecIDStartsWith = value; return this; } public String getRecIDEndsWith() { return RecIDEndsWith; } public TD_CollaborationsQuery setRecIDEndsWith(String value) { this.RecIDEndsWith = value; return this; } public String getRecIDContains() { return RecIDContains; } public TD_CollaborationsQuery setRecIDContains(String value) { this.RecIDContains = value; return this; } public String getRecIDLike() { return RecIDLike; } public TD_CollaborationsQuery setRecIDLike(String value) { this.RecIDLike = value; return this; } public ArrayList getRecIDBetween() { return RecIDBetween; } public TD_CollaborationsQuery setRecIDBetween(ArrayList value) { this.RecIDBetween = value; return this; } public ArrayList getRecIDIn() { return RecIDIn; } public TD_CollaborationsQuery setRecIDIn(ArrayList value) { this.RecIDIn = value; return this; } public String getTdMainRecID() { return TD_Main_RecID; } public TD_CollaborationsQuery setTdMainRecID(String value) { this.TD_Main_RecID = value; return this; } public String getTdMainRecIDStartsWith() { return TD_Main_RecIDStartsWith; } public TD_CollaborationsQuery setTdMainRecIDStartsWith(String value) { this.TD_Main_RecIDStartsWith = value; return this; } public String getTdMainRecIDEndsWith() { return TD_Main_RecIDEndsWith; } public TD_CollaborationsQuery setTdMainRecIDEndsWith(String value) { this.TD_Main_RecIDEndsWith = value; return this; } public String getTdMainRecIDContains() { return TD_Main_RecIDContains; } public TD_CollaborationsQuery setTdMainRecIDContains(String value) { this.TD_Main_RecIDContains = value; return this; } public String getTdMainRecIDLike() { return TD_Main_RecIDLike; } public TD_CollaborationsQuery setTdMainRecIDLike(String value) { this.TD_Main_RecIDLike = value; return this; } public ArrayList getTdMainRecIDBetween() { return TD_Main_RecIDBetween; } public TD_CollaborationsQuery setTdMainRecIDBetween(ArrayList value) { this.TD_Main_RecIDBetween = value; return this; } public ArrayList getTdMainRecIDIn() { return TD_Main_RecIDIn; } public TD_CollaborationsQuery setTdMainRecIDIn(ArrayList value) { this.TD_Main_RecIDIn = value; return this; } public String getHrStaffRecID() { return HR_Staff_RecID; } public TD_CollaborationsQuery setHrStaffRecID(String value) { this.HR_Staff_RecID = value; return this; } public String getHrStaffRecIDStartsWith() { return HR_Staff_RecIDStartsWith; } public TD_CollaborationsQuery setHrStaffRecIDStartsWith(String value) { this.HR_Staff_RecIDStartsWith = value; return this; } public String getHrStaffRecIDEndsWith() { return HR_Staff_RecIDEndsWith; } public TD_CollaborationsQuery setHrStaffRecIDEndsWith(String value) { this.HR_Staff_RecIDEndsWith = value; return this; } public String getHrStaffRecIDContains() { return HR_Staff_RecIDContains; } public TD_CollaborationsQuery setHrStaffRecIDContains(String value) { this.HR_Staff_RecIDContains = value; return this; } public String getHrStaffRecIDLike() { return HR_Staff_RecIDLike; } public TD_CollaborationsQuery setHrStaffRecIDLike(String value) { this.HR_Staff_RecIDLike = value; return this; } public ArrayList getHrStaffRecIDBetween() { return HR_Staff_RecIDBetween; } public TD_CollaborationsQuery setHrStaffRecIDBetween(ArrayList value) { this.HR_Staff_RecIDBetween = value; return this; } public ArrayList getHrStaffRecIDIn() { return HR_Staff_RecIDIn; } public TD_CollaborationsQuery setHrStaffRecIDIn(ArrayList value) { this.HR_Staff_RecIDIn = value; return this; } public Boolean isNotificationEnabled() { return NotificationEnabled; } public TD_CollaborationsQuery setNotificationEnabled(Boolean value) { this.NotificationEnabled = value; return this; } public String getNotificationText() { return NotificationText; } public TD_CollaborationsQuery setNotificationText(String value) { this.NotificationText = value; return this; } public String getNotificationTextStartsWith() { return NotificationTextStartsWith; } public TD_CollaborationsQuery setNotificationTextStartsWith(String value) { this.NotificationTextStartsWith = value; return this; } public String getNotificationTextEndsWith() { return NotificationTextEndsWith; } public TD_CollaborationsQuery setNotificationTextEndsWith(String value) { this.NotificationTextEndsWith = value; return this; } public String getNotificationTextContains() { return NotificationTextContains; } public TD_CollaborationsQuery setNotificationTextContains(String value) { this.NotificationTextContains = value; return this; } public String getNotificationTextLike() { return NotificationTextLike; } public TD_CollaborationsQuery setNotificationTextLike(String value) { this.NotificationTextLike = value; return this; } public ArrayList getNotificationTextBetween() { return NotificationTextBetween; } public TD_CollaborationsQuery setNotificationTextBetween(ArrayList value) { this.NotificationTextBetween = value; return this; } public ArrayList getNotificationTextIn() { return NotificationTextIn; } public TD_CollaborationsQuery setNotificationTextIn(ArrayList value) { this.NotificationTextIn = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public TD_CollaborationsQuery setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getLastSavedDateTimeGreaterThanOrEqualTo() { return LastSavedDateTimeGreaterThanOrEqualTo; } public TD_CollaborationsQuery setLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.LastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeGreaterThan() { return LastSavedDateTimeGreaterThan; } public TD_CollaborationsQuery setLastSavedDateTimeGreaterThan(Date value) { this.LastSavedDateTimeGreaterThan = value; return this; } public Date getLastSavedDateTimeLessThan() { return LastSavedDateTimeLessThan; } public TD_CollaborationsQuery setLastSavedDateTimeLessThan(Date value) { this.LastSavedDateTimeLessThan = value; return this; } public Date getLastSavedDateTimeLessThanOrEqualTo() { return LastSavedDateTimeLessThanOrEqualTo; } public TD_CollaborationsQuery setLastSavedDateTimeLessThanOrEqualTo(Date value) { this.LastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeNotEqualTo() { return LastSavedDateTimeNotEqualTo; } public TD_CollaborationsQuery setLastSavedDateTimeNotEqualTo(Date value) { this.LastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getLastSavedDateTimeBetween() { return LastSavedDateTimeBetween; } public TD_CollaborationsQuery setLastSavedDateTimeBetween(ArrayList value) { this.LastSavedDateTimeBetween = value; return this; } public ArrayList getLastSavedDateTimeIn() { return LastSavedDateTimeIn; } public TD_CollaborationsQuery setLastSavedDateTimeIn(ArrayList value) { this.LastSavedDateTimeIn = value; return this; } public ArrayList getRowHash() { return RowHash; } public TD_CollaborationsQuery setRowHash(ArrayList value) { this.RowHash = value; return this; } public Integer getItemNo() { return ItemNo; } public TD_CollaborationsQuery setItemNo(Integer value) { this.ItemNo = value; return this; } public Integer getItemNoGreaterThanOrEqualTo() { return ItemNoGreaterThanOrEqualTo; } public TD_CollaborationsQuery setItemNoGreaterThanOrEqualTo(Integer value) { this.ItemNoGreaterThanOrEqualTo = value; return this; } public Integer getItemNoGreaterThan() { return ItemNoGreaterThan; } public TD_CollaborationsQuery setItemNoGreaterThan(Integer value) { this.ItemNoGreaterThan = value; return this; } public Integer getItemNoLessThan() { return ItemNoLessThan; } public TD_CollaborationsQuery setItemNoLessThan(Integer value) { this.ItemNoLessThan = value; return this; } public Integer getItemNoLessThanOrEqualTo() { return ItemNoLessThanOrEqualTo; } public TD_CollaborationsQuery setItemNoLessThanOrEqualTo(Integer value) { this.ItemNoLessThanOrEqualTo = value; return this; } public Integer getItemNoNotEqualTo() { return ItemNoNotEqualTo; } public TD_CollaborationsQuery setItemNoNotEqualTo(Integer value) { this.ItemNoNotEqualTo = value; return this; } public ArrayList getItemNoBetween() { return ItemNoBetween; } public TD_CollaborationsQuery setItemNoBetween(ArrayList value) { this.ItemNoBetween = value; return this; } public ArrayList getItemNoIn() { return ItemNoIn; } public TD_CollaborationsQuery setItemNoIn(ArrayList value) { this.ItemNoIn = value; return this; } public Boolean isNotificationSent() { return NotificationSent; } public TD_CollaborationsQuery setNotificationSent(Boolean value) { this.NotificationSent = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class TD_CustomSettingsQuery extends QueryDb implements IReturn> { public String SettingID = null; public String SettingIDStartsWith = null; public String SettingIDEndsWith = null; public String SettingIDContains = null; public String SettingIDLike = null; public ArrayList SettingIDBetween = null; public ArrayList SettingIDIn = null; public Date LastSavedDateTime = null; public Date LastSavedDateTimeGreaterThanOrEqualTo = null; public Date LastSavedDateTimeGreaterThan = null; public Date LastSavedDateTimeLessThan = null; public Date LastSavedDateTimeLessThanOrEqualTo = null; public Date LastSavedDateTimeNotEqualTo = null; public ArrayList LastSavedDateTimeBetween = null; public ArrayList LastSavedDateTimeIn = null; public String SettingDescription = null; public String SettingDescriptionStartsWith = null; public String SettingDescriptionEndsWith = null; public String SettingDescriptionContains = null; public String SettingDescriptionLike = null; public ArrayList SettingDescriptionBetween = null; public ArrayList SettingDescriptionIn = null; public String SettingName = null; public String SettingNameStartsWith = null; public String SettingNameEndsWith = null; public String SettingNameContains = null; public String SettingNameLike = null; public ArrayList SettingNameBetween = null; public ArrayList SettingNameIn = null; public BigDecimal DisplayOrder = null; public BigDecimal DisplayOrderGreaterThanOrEqualTo = null; public BigDecimal DisplayOrderGreaterThan = null; public BigDecimal DisplayOrderLessThan = null; public BigDecimal DisplayOrderLessThanOrEqualTo = null; public BigDecimal DisplayOrderNotEqualTo = null; public ArrayList DisplayOrderBetween = null; public ArrayList DisplayOrderIn = null; public Short CellType = null; public Short CellTypeGreaterThanOrEqualTo = null; public Short CellTypeGreaterThan = null; public Short CellTypeLessThan = null; public Short CellTypeLessThanOrEqualTo = null; public Short CellTypeNotEqualTo = null; public ArrayList CellTypeBetween = null; public ArrayList CellTypeIn = null; public String ScriptFormatCell = null; public String ScriptFormatCellStartsWith = null; public String ScriptFormatCellEndsWith = null; public String ScriptFormatCellContains = null; public String ScriptFormatCellLike = null; public ArrayList ScriptFormatCellBetween = null; public ArrayList ScriptFormatCellIn = null; public String ScriptButtonClicked = null; public String ScriptButtonClickedStartsWith = null; public String ScriptButtonClickedEndsWith = null; public String ScriptButtonClickedContains = null; public String ScriptButtonClickedLike = null; public ArrayList ScriptButtonClickedBetween = null; public ArrayList ScriptButtonClickedIn = null; public String ScriptReadData = null; public String ScriptReadDataStartsWith = null; public String ScriptReadDataEndsWith = null; public String ScriptReadDataContains = null; public String ScriptReadDataLike = null; public ArrayList ScriptReadDataBetween = null; public ArrayList ScriptReadDataIn = null; public UUID SY_Plugin_RecID = null; public ArrayList SY_Plugin_RecIDIn = null; public String getSettingID() { return SettingID; } public TD_CustomSettingsQuery setSettingID(String value) { this.SettingID = value; return this; } public String getSettingIDStartsWith() { return SettingIDStartsWith; } public TD_CustomSettingsQuery setSettingIDStartsWith(String value) { this.SettingIDStartsWith = value; return this; } public String getSettingIDEndsWith() { return SettingIDEndsWith; } public TD_CustomSettingsQuery setSettingIDEndsWith(String value) { this.SettingIDEndsWith = value; return this; } public String getSettingIDContains() { return SettingIDContains; } public TD_CustomSettingsQuery setSettingIDContains(String value) { this.SettingIDContains = value; return this; } public String getSettingIDLike() { return SettingIDLike; } public TD_CustomSettingsQuery setSettingIDLike(String value) { this.SettingIDLike = value; return this; } public ArrayList getSettingIDBetween() { return SettingIDBetween; } public TD_CustomSettingsQuery setSettingIDBetween(ArrayList value) { this.SettingIDBetween = value; return this; } public ArrayList getSettingIDIn() { return SettingIDIn; } public TD_CustomSettingsQuery setSettingIDIn(ArrayList value) { this.SettingIDIn = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public TD_CustomSettingsQuery setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getLastSavedDateTimeGreaterThanOrEqualTo() { return LastSavedDateTimeGreaterThanOrEqualTo; } public TD_CustomSettingsQuery setLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.LastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeGreaterThan() { return LastSavedDateTimeGreaterThan; } public TD_CustomSettingsQuery setLastSavedDateTimeGreaterThan(Date value) { this.LastSavedDateTimeGreaterThan = value; return this; } public Date getLastSavedDateTimeLessThan() { return LastSavedDateTimeLessThan; } public TD_CustomSettingsQuery setLastSavedDateTimeLessThan(Date value) { this.LastSavedDateTimeLessThan = value; return this; } public Date getLastSavedDateTimeLessThanOrEqualTo() { return LastSavedDateTimeLessThanOrEqualTo; } public TD_CustomSettingsQuery setLastSavedDateTimeLessThanOrEqualTo(Date value) { this.LastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeNotEqualTo() { return LastSavedDateTimeNotEqualTo; } public TD_CustomSettingsQuery setLastSavedDateTimeNotEqualTo(Date value) { this.LastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getLastSavedDateTimeBetween() { return LastSavedDateTimeBetween; } public TD_CustomSettingsQuery setLastSavedDateTimeBetween(ArrayList value) { this.LastSavedDateTimeBetween = value; return this; } public ArrayList getLastSavedDateTimeIn() { return LastSavedDateTimeIn; } public TD_CustomSettingsQuery setLastSavedDateTimeIn(ArrayList value) { this.LastSavedDateTimeIn = value; return this; } public String getSettingDescription() { return SettingDescription; } public TD_CustomSettingsQuery setSettingDescription(String value) { this.SettingDescription = value; return this; } public String getSettingDescriptionStartsWith() { return SettingDescriptionStartsWith; } public TD_CustomSettingsQuery setSettingDescriptionStartsWith(String value) { this.SettingDescriptionStartsWith = value; return this; } public String getSettingDescriptionEndsWith() { return SettingDescriptionEndsWith; } public TD_CustomSettingsQuery setSettingDescriptionEndsWith(String value) { this.SettingDescriptionEndsWith = value; return this; } public String getSettingDescriptionContains() { return SettingDescriptionContains; } public TD_CustomSettingsQuery setSettingDescriptionContains(String value) { this.SettingDescriptionContains = value; return this; } public String getSettingDescriptionLike() { return SettingDescriptionLike; } public TD_CustomSettingsQuery setSettingDescriptionLike(String value) { this.SettingDescriptionLike = value; return this; } public ArrayList getSettingDescriptionBetween() { return SettingDescriptionBetween; } public TD_CustomSettingsQuery setSettingDescriptionBetween(ArrayList value) { this.SettingDescriptionBetween = value; return this; } public ArrayList getSettingDescriptionIn() { return SettingDescriptionIn; } public TD_CustomSettingsQuery setSettingDescriptionIn(ArrayList value) { this.SettingDescriptionIn = value; return this; } public String getSettingName() { return SettingName; } public TD_CustomSettingsQuery setSettingName(String value) { this.SettingName = value; return this; } public String getSettingNameStartsWith() { return SettingNameStartsWith; } public TD_CustomSettingsQuery setSettingNameStartsWith(String value) { this.SettingNameStartsWith = value; return this; } public String getSettingNameEndsWith() { return SettingNameEndsWith; } public TD_CustomSettingsQuery setSettingNameEndsWith(String value) { this.SettingNameEndsWith = value; return this; } public String getSettingNameContains() { return SettingNameContains; } public TD_CustomSettingsQuery setSettingNameContains(String value) { this.SettingNameContains = value; return this; } public String getSettingNameLike() { return SettingNameLike; } public TD_CustomSettingsQuery setSettingNameLike(String value) { this.SettingNameLike = value; return this; } public ArrayList getSettingNameBetween() { return SettingNameBetween; } public TD_CustomSettingsQuery setSettingNameBetween(ArrayList value) { this.SettingNameBetween = value; return this; } public ArrayList getSettingNameIn() { return SettingNameIn; } public TD_CustomSettingsQuery setSettingNameIn(ArrayList value) { this.SettingNameIn = value; return this; } public BigDecimal getDisplayOrder() { return DisplayOrder; } public TD_CustomSettingsQuery setDisplayOrder(BigDecimal value) { this.DisplayOrder = value; return this; } public BigDecimal getDisplayOrderGreaterThanOrEqualTo() { return DisplayOrderGreaterThanOrEqualTo; } public TD_CustomSettingsQuery setDisplayOrderGreaterThanOrEqualTo(BigDecimal value) { this.DisplayOrderGreaterThanOrEqualTo = value; return this; } public BigDecimal getDisplayOrderGreaterThan() { return DisplayOrderGreaterThan; } public TD_CustomSettingsQuery setDisplayOrderGreaterThan(BigDecimal value) { this.DisplayOrderGreaterThan = value; return this; } public BigDecimal getDisplayOrderLessThan() { return DisplayOrderLessThan; } public TD_CustomSettingsQuery setDisplayOrderLessThan(BigDecimal value) { this.DisplayOrderLessThan = value; return this; } public BigDecimal getDisplayOrderLessThanOrEqualTo() { return DisplayOrderLessThanOrEqualTo; } public TD_CustomSettingsQuery setDisplayOrderLessThanOrEqualTo(BigDecimal value) { this.DisplayOrderLessThanOrEqualTo = value; return this; } public BigDecimal getDisplayOrderNotEqualTo() { return DisplayOrderNotEqualTo; } public TD_CustomSettingsQuery setDisplayOrderNotEqualTo(BigDecimal value) { this.DisplayOrderNotEqualTo = value; return this; } public ArrayList getDisplayOrderBetween() { return DisplayOrderBetween; } public TD_CustomSettingsQuery setDisplayOrderBetween(ArrayList value) { this.DisplayOrderBetween = value; return this; } public ArrayList getDisplayOrderIn() { return DisplayOrderIn; } public TD_CustomSettingsQuery setDisplayOrderIn(ArrayList value) { this.DisplayOrderIn = value; return this; } public Short getCellType() { return CellType; } public TD_CustomSettingsQuery setCellType(Short value) { this.CellType = value; return this; } public Short getCellTypeGreaterThanOrEqualTo() { return CellTypeGreaterThanOrEqualTo; } public TD_CustomSettingsQuery setCellTypeGreaterThanOrEqualTo(Short value) { this.CellTypeGreaterThanOrEqualTo = value; return this; } public Short getCellTypeGreaterThan() { return CellTypeGreaterThan; } public TD_CustomSettingsQuery setCellTypeGreaterThan(Short value) { this.CellTypeGreaterThan = value; return this; } public Short getCellTypeLessThan() { return CellTypeLessThan; } public TD_CustomSettingsQuery setCellTypeLessThan(Short value) { this.CellTypeLessThan = value; return this; } public Short getCellTypeLessThanOrEqualTo() { return CellTypeLessThanOrEqualTo; } public TD_CustomSettingsQuery setCellTypeLessThanOrEqualTo(Short value) { this.CellTypeLessThanOrEqualTo = value; return this; } public Short getCellTypeNotEqualTo() { return CellTypeNotEqualTo; } public TD_CustomSettingsQuery setCellTypeNotEqualTo(Short value) { this.CellTypeNotEqualTo = value; return this; } public ArrayList getCellTypeBetween() { return CellTypeBetween; } public TD_CustomSettingsQuery setCellTypeBetween(ArrayList value) { this.CellTypeBetween = value; return this; } public ArrayList getCellTypeIn() { return CellTypeIn; } public TD_CustomSettingsQuery setCellTypeIn(ArrayList value) { this.CellTypeIn = value; return this; } public String getScriptFormatCell() { return ScriptFormatCell; } public TD_CustomSettingsQuery setScriptFormatCell(String value) { this.ScriptFormatCell = value; return this; } public String getScriptFormatCellStartsWith() { return ScriptFormatCellStartsWith; } public TD_CustomSettingsQuery setScriptFormatCellStartsWith(String value) { this.ScriptFormatCellStartsWith = value; return this; } public String getScriptFormatCellEndsWith() { return ScriptFormatCellEndsWith; } public TD_CustomSettingsQuery setScriptFormatCellEndsWith(String value) { this.ScriptFormatCellEndsWith = value; return this; } public String getScriptFormatCellContains() { return ScriptFormatCellContains; } public TD_CustomSettingsQuery setScriptFormatCellContains(String value) { this.ScriptFormatCellContains = value; return this; } public String getScriptFormatCellLike() { return ScriptFormatCellLike; } public TD_CustomSettingsQuery setScriptFormatCellLike(String value) { this.ScriptFormatCellLike = value; return this; } public ArrayList getScriptFormatCellBetween() { return ScriptFormatCellBetween; } public TD_CustomSettingsQuery setScriptFormatCellBetween(ArrayList value) { this.ScriptFormatCellBetween = value; return this; } public ArrayList getScriptFormatCellIn() { return ScriptFormatCellIn; } public TD_CustomSettingsQuery setScriptFormatCellIn(ArrayList value) { this.ScriptFormatCellIn = value; return this; } public String getScriptButtonClicked() { return ScriptButtonClicked; } public TD_CustomSettingsQuery setScriptButtonClicked(String value) { this.ScriptButtonClicked = value; return this; } public String getScriptButtonClickedStartsWith() { return ScriptButtonClickedStartsWith; } public TD_CustomSettingsQuery setScriptButtonClickedStartsWith(String value) { this.ScriptButtonClickedStartsWith = value; return this; } public String getScriptButtonClickedEndsWith() { return ScriptButtonClickedEndsWith; } public TD_CustomSettingsQuery setScriptButtonClickedEndsWith(String value) { this.ScriptButtonClickedEndsWith = value; return this; } public String getScriptButtonClickedContains() { return ScriptButtonClickedContains; } public TD_CustomSettingsQuery setScriptButtonClickedContains(String value) { this.ScriptButtonClickedContains = value; return this; } public String getScriptButtonClickedLike() { return ScriptButtonClickedLike; } public TD_CustomSettingsQuery setScriptButtonClickedLike(String value) { this.ScriptButtonClickedLike = value; return this; } public ArrayList getScriptButtonClickedBetween() { return ScriptButtonClickedBetween; } public TD_CustomSettingsQuery setScriptButtonClickedBetween(ArrayList value) { this.ScriptButtonClickedBetween = value; return this; } public ArrayList getScriptButtonClickedIn() { return ScriptButtonClickedIn; } public TD_CustomSettingsQuery setScriptButtonClickedIn(ArrayList value) { this.ScriptButtonClickedIn = value; return this; } public String getScriptReadData() { return ScriptReadData; } public TD_CustomSettingsQuery setScriptReadData(String value) { this.ScriptReadData = value; return this; } public String getScriptReadDataStartsWith() { return ScriptReadDataStartsWith; } public TD_CustomSettingsQuery setScriptReadDataStartsWith(String value) { this.ScriptReadDataStartsWith = value; return this; } public String getScriptReadDataEndsWith() { return ScriptReadDataEndsWith; } public TD_CustomSettingsQuery setScriptReadDataEndsWith(String value) { this.ScriptReadDataEndsWith = value; return this; } public String getScriptReadDataContains() { return ScriptReadDataContains; } public TD_CustomSettingsQuery setScriptReadDataContains(String value) { this.ScriptReadDataContains = value; return this; } public String getScriptReadDataLike() { return ScriptReadDataLike; } public TD_CustomSettingsQuery setScriptReadDataLike(String value) { this.ScriptReadDataLike = value; return this; } public ArrayList getScriptReadDataBetween() { return ScriptReadDataBetween; } public TD_CustomSettingsQuery setScriptReadDataBetween(ArrayList value) { this.ScriptReadDataBetween = value; return this; } public ArrayList getScriptReadDataIn() { return ScriptReadDataIn; } public TD_CustomSettingsQuery setScriptReadDataIn(ArrayList value) { this.ScriptReadDataIn = value; return this; } public UUID getSyPluginRecID() { return SY_Plugin_RecID; } public TD_CustomSettingsQuery setSyPluginRecID(UUID value) { this.SY_Plugin_RecID = value; return this; } public ArrayList getSyPluginRecIDIn() { return SY_Plugin_RecIDIn; } public TD_CustomSettingsQuery setSyPluginRecIDIn(ArrayList value) { this.SY_Plugin_RecIDIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class TD_CustomSettingValuesQuery extends QueryDb implements IReturn> { public String SettingValueID = null; public String SettingValueIDStartsWith = null; public String SettingValueIDEndsWith = null; public String SettingValueIDContains = null; public String SettingValueIDLike = null; public ArrayList SettingValueIDBetween = null; public ArrayList SettingValueIDIn = null; public String SettingID = null; public String SettingIDStartsWith = null; public String SettingIDEndsWith = null; public String SettingIDContains = null; public String SettingIDLike = null; public ArrayList SettingIDBetween = null; public ArrayList SettingIDIn = null; public String TD_Main_RecID = null; public String TD_Main_RecIDStartsWith = null; public String TD_Main_RecIDEndsWith = null; public String TD_Main_RecIDContains = null; public String TD_Main_RecIDLike = null; public ArrayList TD_Main_RecIDBetween = null; public ArrayList TD_Main_RecIDIn = null; public String Contents = null; public String ContentsStartsWith = null; public String ContentsEndsWith = null; public String ContentsContains = null; public String ContentsLike = null; public ArrayList ContentsBetween = null; public ArrayList ContentsIn = null; public Date LastSavedDateTime = null; public Date LastSavedDateTimeGreaterThanOrEqualTo = null; public Date LastSavedDateTimeGreaterThan = null; public Date LastSavedDateTimeLessThan = null; public Date LastSavedDateTimeLessThanOrEqualTo = null; public Date LastSavedDateTimeNotEqualTo = null; public ArrayList LastSavedDateTimeBetween = null; public ArrayList LastSavedDateTimeIn = null; public String getSettingValueID() { return SettingValueID; } public TD_CustomSettingValuesQuery setSettingValueID(String value) { this.SettingValueID = value; return this; } public String getSettingValueIDStartsWith() { return SettingValueIDStartsWith; } public TD_CustomSettingValuesQuery setSettingValueIDStartsWith(String value) { this.SettingValueIDStartsWith = value; return this; } public String getSettingValueIDEndsWith() { return SettingValueIDEndsWith; } public TD_CustomSettingValuesQuery setSettingValueIDEndsWith(String value) { this.SettingValueIDEndsWith = value; return this; } public String getSettingValueIDContains() { return SettingValueIDContains; } public TD_CustomSettingValuesQuery setSettingValueIDContains(String value) { this.SettingValueIDContains = value; return this; } public String getSettingValueIDLike() { return SettingValueIDLike; } public TD_CustomSettingValuesQuery setSettingValueIDLike(String value) { this.SettingValueIDLike = value; return this; } public ArrayList getSettingValueIDBetween() { return SettingValueIDBetween; } public TD_CustomSettingValuesQuery setSettingValueIDBetween(ArrayList value) { this.SettingValueIDBetween = value; return this; } public ArrayList getSettingValueIDIn() { return SettingValueIDIn; } public TD_CustomSettingValuesQuery setSettingValueIDIn(ArrayList value) { this.SettingValueIDIn = value; return this; } public String getSettingID() { return SettingID; } public TD_CustomSettingValuesQuery setSettingID(String value) { this.SettingID = value; return this; } public String getSettingIDStartsWith() { return SettingIDStartsWith; } public TD_CustomSettingValuesQuery setSettingIDStartsWith(String value) { this.SettingIDStartsWith = value; return this; } public String getSettingIDEndsWith() { return SettingIDEndsWith; } public TD_CustomSettingValuesQuery setSettingIDEndsWith(String value) { this.SettingIDEndsWith = value; return this; } public String getSettingIDContains() { return SettingIDContains; } public TD_CustomSettingValuesQuery setSettingIDContains(String value) { this.SettingIDContains = value; return this; } public String getSettingIDLike() { return SettingIDLike; } public TD_CustomSettingValuesQuery setSettingIDLike(String value) { this.SettingIDLike = value; return this; } public ArrayList getSettingIDBetween() { return SettingIDBetween; } public TD_CustomSettingValuesQuery setSettingIDBetween(ArrayList value) { this.SettingIDBetween = value; return this; } public ArrayList getSettingIDIn() { return SettingIDIn; } public TD_CustomSettingValuesQuery setSettingIDIn(ArrayList value) { this.SettingIDIn = value; return this; } public String getTdMainRecID() { return TD_Main_RecID; } public TD_CustomSettingValuesQuery setTdMainRecID(String value) { this.TD_Main_RecID = value; return this; } public String getTdMainRecIDStartsWith() { return TD_Main_RecIDStartsWith; } public TD_CustomSettingValuesQuery setTdMainRecIDStartsWith(String value) { this.TD_Main_RecIDStartsWith = value; return this; } public String getTdMainRecIDEndsWith() { return TD_Main_RecIDEndsWith; } public TD_CustomSettingValuesQuery setTdMainRecIDEndsWith(String value) { this.TD_Main_RecIDEndsWith = value; return this; } public String getTdMainRecIDContains() { return TD_Main_RecIDContains; } public TD_CustomSettingValuesQuery setTdMainRecIDContains(String value) { this.TD_Main_RecIDContains = value; return this; } public String getTdMainRecIDLike() { return TD_Main_RecIDLike; } public TD_CustomSettingValuesQuery setTdMainRecIDLike(String value) { this.TD_Main_RecIDLike = value; return this; } public ArrayList getTdMainRecIDBetween() { return TD_Main_RecIDBetween; } public TD_CustomSettingValuesQuery setTdMainRecIDBetween(ArrayList value) { this.TD_Main_RecIDBetween = value; return this; } public ArrayList getTdMainRecIDIn() { return TD_Main_RecIDIn; } public TD_CustomSettingValuesQuery setTdMainRecIDIn(ArrayList value) { this.TD_Main_RecIDIn = value; return this; } public String getContents() { return Contents; } public TD_CustomSettingValuesQuery setContents(String value) { this.Contents = value; return this; } public String getContentsStartsWith() { return ContentsStartsWith; } public TD_CustomSettingValuesQuery setContentsStartsWith(String value) { this.ContentsStartsWith = value; return this; } public String getContentsEndsWith() { return ContentsEndsWith; } public TD_CustomSettingValuesQuery setContentsEndsWith(String value) { this.ContentsEndsWith = value; return this; } public String getContentsContains() { return ContentsContains; } public TD_CustomSettingValuesQuery setContentsContains(String value) { this.ContentsContains = value; return this; } public String getContentsLike() { return ContentsLike; } public TD_CustomSettingValuesQuery setContentsLike(String value) { this.ContentsLike = value; return this; } public ArrayList getContentsBetween() { return ContentsBetween; } public TD_CustomSettingValuesQuery setContentsBetween(ArrayList value) { this.ContentsBetween = value; return this; } public ArrayList getContentsIn() { return ContentsIn; } public TD_CustomSettingValuesQuery setContentsIn(ArrayList value) { this.ContentsIn = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public TD_CustomSettingValuesQuery setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getLastSavedDateTimeGreaterThanOrEqualTo() { return LastSavedDateTimeGreaterThanOrEqualTo; } public TD_CustomSettingValuesQuery setLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.LastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeGreaterThan() { return LastSavedDateTimeGreaterThan; } public TD_CustomSettingValuesQuery setLastSavedDateTimeGreaterThan(Date value) { this.LastSavedDateTimeGreaterThan = value; return this; } public Date getLastSavedDateTimeLessThan() { return LastSavedDateTimeLessThan; } public TD_CustomSettingValuesQuery setLastSavedDateTimeLessThan(Date value) { this.LastSavedDateTimeLessThan = value; return this; } public Date getLastSavedDateTimeLessThanOrEqualTo() { return LastSavedDateTimeLessThanOrEqualTo; } public TD_CustomSettingValuesQuery setLastSavedDateTimeLessThanOrEqualTo(Date value) { this.LastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeNotEqualTo() { return LastSavedDateTimeNotEqualTo; } public TD_CustomSettingValuesQuery setLastSavedDateTimeNotEqualTo(Date value) { this.LastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getLastSavedDateTimeBetween() { return LastSavedDateTimeBetween; } public TD_CustomSettingValuesQuery setLastSavedDateTimeBetween(ArrayList value) { this.LastSavedDateTimeBetween = value; return this; } public ArrayList getLastSavedDateTimeIn() { return LastSavedDateTimeIn; } public TD_CustomSettingValuesQuery setLastSavedDateTimeIn(ArrayList value) { this.LastSavedDateTimeIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class TD_DependenciesQuery extends QueryDb implements IReturn> { public String RecID = null; public String RecIDStartsWith = null; public String RecIDEndsWith = null; public String RecIDContains = null; public String RecIDLike = null; public ArrayList RecIDBetween = null; public ArrayList RecIDIn = null; public String TD_Main_RecID_Dependent = null; public String TD_Main_RecID_DependentStartsWith = null; public String TD_Main_RecID_DependentEndsWith = null; public String TD_Main_RecID_DependentContains = null; public String TD_Main_RecID_DependentLike = null; public ArrayList TD_Main_RecID_DependentBetween = null; public ArrayList TD_Main_RecID_DependentIn = null; public String TD_Main_RecID_Dependency = null; public String TD_Main_RecID_DependencyStartsWith = null; public String TD_Main_RecID_DependencyEndsWith = null; public String TD_Main_RecID_DependencyContains = null; public String TD_Main_RecID_DependencyLike = null; public ArrayList TD_Main_RecID_DependencyBetween = null; public ArrayList TD_Main_RecID_DependencyIn = null; public Date LastSavedDateTime = null; public Date LastSavedDateTimeGreaterThanOrEqualTo = null; public Date LastSavedDateTimeGreaterThan = null; public Date LastSavedDateTimeLessThan = null; public Date LastSavedDateTimeLessThanOrEqualTo = null; public Date LastSavedDateTimeNotEqualTo = null; public ArrayList LastSavedDateTimeBetween = null; public ArrayList LastSavedDateTimeIn = null; public Integer ItemNo = null; public Integer ItemNoGreaterThanOrEqualTo = null; public Integer ItemNoGreaterThan = null; public Integer ItemNoLessThan = null; public Integer ItemNoLessThanOrEqualTo = null; public Integer ItemNoNotEqualTo = null; public ArrayList ItemNoBetween = null; public ArrayList ItemNoIn = null; public ArrayList RowHash = null; public String getRecID() { return RecID; } public TD_DependenciesQuery setRecID(String value) { this.RecID = value; return this; } public String getRecIDStartsWith() { return RecIDStartsWith; } public TD_DependenciesQuery setRecIDStartsWith(String value) { this.RecIDStartsWith = value; return this; } public String getRecIDEndsWith() { return RecIDEndsWith; } public TD_DependenciesQuery setRecIDEndsWith(String value) { this.RecIDEndsWith = value; return this; } public String getRecIDContains() { return RecIDContains; } public TD_DependenciesQuery setRecIDContains(String value) { this.RecIDContains = value; return this; } public String getRecIDLike() { return RecIDLike; } public TD_DependenciesQuery setRecIDLike(String value) { this.RecIDLike = value; return this; } public ArrayList getRecIDBetween() { return RecIDBetween; } public TD_DependenciesQuery setRecIDBetween(ArrayList value) { this.RecIDBetween = value; return this; } public ArrayList getRecIDIn() { return RecIDIn; } public TD_DependenciesQuery setRecIDIn(ArrayList value) { this.RecIDIn = value; return this; } public String getTdMainRecIDDependent() { return TD_Main_RecID_Dependent; } public TD_DependenciesQuery setTdMainRecIDDependent(String value) { this.TD_Main_RecID_Dependent = value; return this; } public String getTdMainRecIDDependentStartsWith() { return TD_Main_RecID_DependentStartsWith; } public TD_DependenciesQuery setTdMainRecIDDependentStartsWith(String value) { this.TD_Main_RecID_DependentStartsWith = value; return this; } public String getTdMainRecIDDependentEndsWith() { return TD_Main_RecID_DependentEndsWith; } public TD_DependenciesQuery setTdMainRecIDDependentEndsWith(String value) { this.TD_Main_RecID_DependentEndsWith = value; return this; } public String getTdMainRecIDDependentContains() { return TD_Main_RecID_DependentContains; } public TD_DependenciesQuery setTdMainRecIDDependentContains(String value) { this.TD_Main_RecID_DependentContains = value; return this; } public String getTdMainRecIDDependentLike() { return TD_Main_RecID_DependentLike; } public TD_DependenciesQuery setTdMainRecIDDependentLike(String value) { this.TD_Main_RecID_DependentLike = value; return this; } public ArrayList getTdMainRecIDDependentBetween() { return TD_Main_RecID_DependentBetween; } public TD_DependenciesQuery setTdMainRecIDDependentBetween(ArrayList value) { this.TD_Main_RecID_DependentBetween = value; return this; } public ArrayList getTdMainRecIDDependentIn() { return TD_Main_RecID_DependentIn; } public TD_DependenciesQuery setTdMainRecIDDependentIn(ArrayList value) { this.TD_Main_RecID_DependentIn = value; return this; } public String getTdMainRecIDDependency() { return TD_Main_RecID_Dependency; } public TD_DependenciesQuery setTdMainRecIDDependency(String value) { this.TD_Main_RecID_Dependency = value; return this; } public String getTdMainRecIDDependencyStartsWith() { return TD_Main_RecID_DependencyStartsWith; } public TD_DependenciesQuery setTdMainRecIDDependencyStartsWith(String value) { this.TD_Main_RecID_DependencyStartsWith = value; return this; } public String getTdMainRecIDDependencyEndsWith() { return TD_Main_RecID_DependencyEndsWith; } public TD_DependenciesQuery setTdMainRecIDDependencyEndsWith(String value) { this.TD_Main_RecID_DependencyEndsWith = value; return this; } public String getTdMainRecIDDependencyContains() { return TD_Main_RecID_DependencyContains; } public TD_DependenciesQuery setTdMainRecIDDependencyContains(String value) { this.TD_Main_RecID_DependencyContains = value; return this; } public String getTdMainRecIDDependencyLike() { return TD_Main_RecID_DependencyLike; } public TD_DependenciesQuery setTdMainRecIDDependencyLike(String value) { this.TD_Main_RecID_DependencyLike = value; return this; } public ArrayList getTdMainRecIDDependencyBetween() { return TD_Main_RecID_DependencyBetween; } public TD_DependenciesQuery setTdMainRecIDDependencyBetween(ArrayList value) { this.TD_Main_RecID_DependencyBetween = value; return this; } public ArrayList getTdMainRecIDDependencyIn() { return TD_Main_RecID_DependencyIn; } public TD_DependenciesQuery setTdMainRecIDDependencyIn(ArrayList value) { this.TD_Main_RecID_DependencyIn = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public TD_DependenciesQuery setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getLastSavedDateTimeGreaterThanOrEqualTo() { return LastSavedDateTimeGreaterThanOrEqualTo; } public TD_DependenciesQuery setLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.LastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeGreaterThan() { return LastSavedDateTimeGreaterThan; } public TD_DependenciesQuery setLastSavedDateTimeGreaterThan(Date value) { this.LastSavedDateTimeGreaterThan = value; return this; } public Date getLastSavedDateTimeLessThan() { return LastSavedDateTimeLessThan; } public TD_DependenciesQuery setLastSavedDateTimeLessThan(Date value) { this.LastSavedDateTimeLessThan = value; return this; } public Date getLastSavedDateTimeLessThanOrEqualTo() { return LastSavedDateTimeLessThanOrEqualTo; } public TD_DependenciesQuery setLastSavedDateTimeLessThanOrEqualTo(Date value) { this.LastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeNotEqualTo() { return LastSavedDateTimeNotEqualTo; } public TD_DependenciesQuery setLastSavedDateTimeNotEqualTo(Date value) { this.LastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getLastSavedDateTimeBetween() { return LastSavedDateTimeBetween; } public TD_DependenciesQuery setLastSavedDateTimeBetween(ArrayList value) { this.LastSavedDateTimeBetween = value; return this; } public ArrayList getLastSavedDateTimeIn() { return LastSavedDateTimeIn; } public TD_DependenciesQuery setLastSavedDateTimeIn(ArrayList value) { this.LastSavedDateTimeIn = value; return this; } public Integer getItemNo() { return ItemNo; } public TD_DependenciesQuery setItemNo(Integer value) { this.ItemNo = value; return this; } public Integer getItemNoGreaterThanOrEqualTo() { return ItemNoGreaterThanOrEqualTo; } public TD_DependenciesQuery setItemNoGreaterThanOrEqualTo(Integer value) { this.ItemNoGreaterThanOrEqualTo = value; return this; } public Integer getItemNoGreaterThan() { return ItemNoGreaterThan; } public TD_DependenciesQuery setItemNoGreaterThan(Integer value) { this.ItemNoGreaterThan = value; return this; } public Integer getItemNoLessThan() { return ItemNoLessThan; } public TD_DependenciesQuery setItemNoLessThan(Integer value) { this.ItemNoLessThan = value; return this; } public Integer getItemNoLessThanOrEqualTo() { return ItemNoLessThanOrEqualTo; } public TD_DependenciesQuery setItemNoLessThanOrEqualTo(Integer value) { this.ItemNoLessThanOrEqualTo = value; return this; } public Integer getItemNoNotEqualTo() { return ItemNoNotEqualTo; } public TD_DependenciesQuery setItemNoNotEqualTo(Integer value) { this.ItemNoNotEqualTo = value; return this; } public ArrayList getItemNoBetween() { return ItemNoBetween; } public TD_DependenciesQuery setItemNoBetween(ArrayList value) { this.ItemNoBetween = value; return this; } public ArrayList getItemNoIn() { return ItemNoIn; } public TD_DependenciesQuery setItemNoIn(ArrayList value) { this.ItemNoIn = value; return this; } public ArrayList getRowHash() { return RowHash; } public TD_DependenciesQuery setRowHash(ArrayList value) { this.RowHash = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class TD_DocumentsQuery extends QueryDb implements IReturn> { public String RecID = null; public String RecIDStartsWith = null; public String RecIDEndsWith = null; public String RecIDContains = null; public String RecIDLike = null; public ArrayList RecIDBetween = null; public ArrayList RecIDIn = null; public String TD_Main_RecID = null; public String TD_Main_RecIDStartsWith = null; public String TD_Main_RecIDEndsWith = null; public String TD_Main_RecIDContains = null; public String TD_Main_RecIDLike = null; public ArrayList TD_Main_RecIDBetween = null; public ArrayList TD_Main_RecIDIn = null; public String DocumentTypeID = null; public String DocumentTypeIDStartsWith = null; public String DocumentTypeIDEndsWith = null; public String DocumentTypeIDContains = null; public String DocumentTypeIDLike = null; public ArrayList DocumentTypeIDBetween = null; public ArrayList DocumentTypeIDIn = null; public Date LastSavedDateTime = null; public Date LastSavedDateTimeGreaterThanOrEqualTo = null; public Date LastSavedDateTimeGreaterThan = null; public Date LastSavedDateTimeLessThan = null; public Date LastSavedDateTimeLessThanOrEqualTo = null; public Date LastSavedDateTimeNotEqualTo = null; public ArrayList LastSavedDateTimeBetween = null; public ArrayList LastSavedDateTimeIn = null; public String LastSavedByStaffID = null; public String LastSavedByStaffIDStartsWith = null; public String LastSavedByStaffIDEndsWith = null; public String LastSavedByStaffIDContains = null; public String LastSavedByStaffIDLike = null; public ArrayList LastSavedByStaffIDBetween = null; public ArrayList LastSavedByStaffIDIn = null; public ArrayList FileBinary = null; public String Description = null; public String DescriptionStartsWith = null; public String DescriptionEndsWith = null; public String DescriptionContains = null; public String DescriptionLike = null; public ArrayList DescriptionBetween = null; public ArrayList DescriptionIn = null; public String PhysicalFileName = null; public String PhysicalFileNameStartsWith = null; public String PhysicalFileNameEndsWith = null; public String PhysicalFileNameContains = null; public String PhysicalFileNameLike = null; public ArrayList PhysicalFileNameBetween = null; public ArrayList PhysicalFileNameIn = null; public Integer ItemNo = null; public Integer ItemNoGreaterThanOrEqualTo = null; public Integer ItemNoGreaterThan = null; public Integer ItemNoLessThan = null; public Integer ItemNoLessThanOrEqualTo = null; public Integer ItemNoNotEqualTo = null; public ArrayList ItemNoBetween = null; public ArrayList ItemNoIn = null; public String getRecID() { return RecID; } public TD_DocumentsQuery setRecID(String value) { this.RecID = value; return this; } public String getRecIDStartsWith() { return RecIDStartsWith; } public TD_DocumentsQuery setRecIDStartsWith(String value) { this.RecIDStartsWith = value; return this; } public String getRecIDEndsWith() { return RecIDEndsWith; } public TD_DocumentsQuery setRecIDEndsWith(String value) { this.RecIDEndsWith = value; return this; } public String getRecIDContains() { return RecIDContains; } public TD_DocumentsQuery setRecIDContains(String value) { this.RecIDContains = value; return this; } public String getRecIDLike() { return RecIDLike; } public TD_DocumentsQuery setRecIDLike(String value) { this.RecIDLike = value; return this; } public ArrayList getRecIDBetween() { return RecIDBetween; } public TD_DocumentsQuery setRecIDBetween(ArrayList value) { this.RecIDBetween = value; return this; } public ArrayList getRecIDIn() { return RecIDIn; } public TD_DocumentsQuery setRecIDIn(ArrayList value) { this.RecIDIn = value; return this; } public String getTdMainRecID() { return TD_Main_RecID; } public TD_DocumentsQuery setTdMainRecID(String value) { this.TD_Main_RecID = value; return this; } public String getTdMainRecIDStartsWith() { return TD_Main_RecIDStartsWith; } public TD_DocumentsQuery setTdMainRecIDStartsWith(String value) { this.TD_Main_RecIDStartsWith = value; return this; } public String getTdMainRecIDEndsWith() { return TD_Main_RecIDEndsWith; } public TD_DocumentsQuery setTdMainRecIDEndsWith(String value) { this.TD_Main_RecIDEndsWith = value; return this; } public String getTdMainRecIDContains() { return TD_Main_RecIDContains; } public TD_DocumentsQuery setTdMainRecIDContains(String value) { this.TD_Main_RecIDContains = value; return this; } public String getTdMainRecIDLike() { return TD_Main_RecIDLike; } public TD_DocumentsQuery setTdMainRecIDLike(String value) { this.TD_Main_RecIDLike = value; return this; } public ArrayList getTdMainRecIDBetween() { return TD_Main_RecIDBetween; } public TD_DocumentsQuery setTdMainRecIDBetween(ArrayList value) { this.TD_Main_RecIDBetween = value; return this; } public ArrayList getTdMainRecIDIn() { return TD_Main_RecIDIn; } public TD_DocumentsQuery setTdMainRecIDIn(ArrayList value) { this.TD_Main_RecIDIn = value; return this; } public String getDocumentTypeID() { return DocumentTypeID; } public TD_DocumentsQuery setDocumentTypeID(String value) { this.DocumentTypeID = value; return this; } public String getDocumentTypeIDStartsWith() { return DocumentTypeIDStartsWith; } public TD_DocumentsQuery setDocumentTypeIDStartsWith(String value) { this.DocumentTypeIDStartsWith = value; return this; } public String getDocumentTypeIDEndsWith() { return DocumentTypeIDEndsWith; } public TD_DocumentsQuery setDocumentTypeIDEndsWith(String value) { this.DocumentTypeIDEndsWith = value; return this; } public String getDocumentTypeIDContains() { return DocumentTypeIDContains; } public TD_DocumentsQuery setDocumentTypeIDContains(String value) { this.DocumentTypeIDContains = value; return this; } public String getDocumentTypeIDLike() { return DocumentTypeIDLike; } public TD_DocumentsQuery setDocumentTypeIDLike(String value) { this.DocumentTypeIDLike = value; return this; } public ArrayList getDocumentTypeIDBetween() { return DocumentTypeIDBetween; } public TD_DocumentsQuery setDocumentTypeIDBetween(ArrayList value) { this.DocumentTypeIDBetween = value; return this; } public ArrayList getDocumentTypeIDIn() { return DocumentTypeIDIn; } public TD_DocumentsQuery setDocumentTypeIDIn(ArrayList value) { this.DocumentTypeIDIn = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public TD_DocumentsQuery setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getLastSavedDateTimeGreaterThanOrEqualTo() { return LastSavedDateTimeGreaterThanOrEqualTo; } public TD_DocumentsQuery setLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.LastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeGreaterThan() { return LastSavedDateTimeGreaterThan; } public TD_DocumentsQuery setLastSavedDateTimeGreaterThan(Date value) { this.LastSavedDateTimeGreaterThan = value; return this; } public Date getLastSavedDateTimeLessThan() { return LastSavedDateTimeLessThan; } public TD_DocumentsQuery setLastSavedDateTimeLessThan(Date value) { this.LastSavedDateTimeLessThan = value; return this; } public Date getLastSavedDateTimeLessThanOrEqualTo() { return LastSavedDateTimeLessThanOrEqualTo; } public TD_DocumentsQuery setLastSavedDateTimeLessThanOrEqualTo(Date value) { this.LastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeNotEqualTo() { return LastSavedDateTimeNotEqualTo; } public TD_DocumentsQuery setLastSavedDateTimeNotEqualTo(Date value) { this.LastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getLastSavedDateTimeBetween() { return LastSavedDateTimeBetween; } public TD_DocumentsQuery setLastSavedDateTimeBetween(ArrayList value) { this.LastSavedDateTimeBetween = value; return this; } public ArrayList getLastSavedDateTimeIn() { return LastSavedDateTimeIn; } public TD_DocumentsQuery setLastSavedDateTimeIn(ArrayList value) { this.LastSavedDateTimeIn = value; return this; } public String getLastSavedByStaffID() { return LastSavedByStaffID; } public TD_DocumentsQuery setLastSavedByStaffID(String value) { this.LastSavedByStaffID = value; return this; } public String getLastSavedByStaffIDStartsWith() { return LastSavedByStaffIDStartsWith; } public TD_DocumentsQuery setLastSavedByStaffIDStartsWith(String value) { this.LastSavedByStaffIDStartsWith = value; return this; } public String getLastSavedByStaffIDEndsWith() { return LastSavedByStaffIDEndsWith; } public TD_DocumentsQuery setLastSavedByStaffIDEndsWith(String value) { this.LastSavedByStaffIDEndsWith = value; return this; } public String getLastSavedByStaffIDContains() { return LastSavedByStaffIDContains; } public TD_DocumentsQuery setLastSavedByStaffIDContains(String value) { this.LastSavedByStaffIDContains = value; return this; } public String getLastSavedByStaffIDLike() { return LastSavedByStaffIDLike; } public TD_DocumentsQuery setLastSavedByStaffIDLike(String value) { this.LastSavedByStaffIDLike = value; return this; } public ArrayList getLastSavedByStaffIDBetween() { return LastSavedByStaffIDBetween; } public TD_DocumentsQuery setLastSavedByStaffIDBetween(ArrayList value) { this.LastSavedByStaffIDBetween = value; return this; } public ArrayList getLastSavedByStaffIDIn() { return LastSavedByStaffIDIn; } public TD_DocumentsQuery setLastSavedByStaffIDIn(ArrayList value) { this.LastSavedByStaffIDIn = value; return this; } public ArrayList getFileBinary() { return FileBinary; } public TD_DocumentsQuery setFileBinary(ArrayList value) { this.FileBinary = value; return this; } public String getDescription() { return Description; } public TD_DocumentsQuery setDescription(String value) { this.Description = value; return this; } public String getDescriptionStartsWith() { return DescriptionStartsWith; } public TD_DocumentsQuery setDescriptionStartsWith(String value) { this.DescriptionStartsWith = value; return this; } public String getDescriptionEndsWith() { return DescriptionEndsWith; } public TD_DocumentsQuery setDescriptionEndsWith(String value) { this.DescriptionEndsWith = value; return this; } public String getDescriptionContains() { return DescriptionContains; } public TD_DocumentsQuery setDescriptionContains(String value) { this.DescriptionContains = value; return this; } public String getDescriptionLike() { return DescriptionLike; } public TD_DocumentsQuery setDescriptionLike(String value) { this.DescriptionLike = value; return this; } public ArrayList getDescriptionBetween() { return DescriptionBetween; } public TD_DocumentsQuery setDescriptionBetween(ArrayList value) { this.DescriptionBetween = value; return this; } public ArrayList getDescriptionIn() { return DescriptionIn; } public TD_DocumentsQuery setDescriptionIn(ArrayList value) { this.DescriptionIn = value; return this; } public String getPhysicalFileName() { return PhysicalFileName; } public TD_DocumentsQuery setPhysicalFileName(String value) { this.PhysicalFileName = value; return this; } public String getPhysicalFileNameStartsWith() { return PhysicalFileNameStartsWith; } public TD_DocumentsQuery setPhysicalFileNameStartsWith(String value) { this.PhysicalFileNameStartsWith = value; return this; } public String getPhysicalFileNameEndsWith() { return PhysicalFileNameEndsWith; } public TD_DocumentsQuery setPhysicalFileNameEndsWith(String value) { this.PhysicalFileNameEndsWith = value; return this; } public String getPhysicalFileNameContains() { return PhysicalFileNameContains; } public TD_DocumentsQuery setPhysicalFileNameContains(String value) { this.PhysicalFileNameContains = value; return this; } public String getPhysicalFileNameLike() { return PhysicalFileNameLike; } public TD_DocumentsQuery setPhysicalFileNameLike(String value) { this.PhysicalFileNameLike = value; return this; } public ArrayList getPhysicalFileNameBetween() { return PhysicalFileNameBetween; } public TD_DocumentsQuery setPhysicalFileNameBetween(ArrayList value) { this.PhysicalFileNameBetween = value; return this; } public ArrayList getPhysicalFileNameIn() { return PhysicalFileNameIn; } public TD_DocumentsQuery setPhysicalFileNameIn(ArrayList value) { this.PhysicalFileNameIn = value; return this; } public Integer getItemNo() { return ItemNo; } public TD_DocumentsQuery setItemNo(Integer value) { this.ItemNo = value; return this; } public Integer getItemNoGreaterThanOrEqualTo() { return ItemNoGreaterThanOrEqualTo; } public TD_DocumentsQuery setItemNoGreaterThanOrEqualTo(Integer value) { this.ItemNoGreaterThanOrEqualTo = value; return this; } public Integer getItemNoGreaterThan() { return ItemNoGreaterThan; } public TD_DocumentsQuery setItemNoGreaterThan(Integer value) { this.ItemNoGreaterThan = value; return this; } public Integer getItemNoLessThan() { return ItemNoLessThan; } public TD_DocumentsQuery setItemNoLessThan(Integer value) { this.ItemNoLessThan = value; return this; } public Integer getItemNoLessThanOrEqualTo() { return ItemNoLessThanOrEqualTo; } public TD_DocumentsQuery setItemNoLessThanOrEqualTo(Integer value) { this.ItemNoLessThanOrEqualTo = value; return this; } public Integer getItemNoNotEqualTo() { return ItemNoNotEqualTo; } public TD_DocumentsQuery setItemNoNotEqualTo(Integer value) { this.ItemNoNotEqualTo = value; return this; } public ArrayList getItemNoBetween() { return ItemNoBetween; } public TD_DocumentsQuery setItemNoBetween(ArrayList value) { this.ItemNoBetween = value; return this; } public ArrayList getItemNoIn() { return ItemNoIn; } public TD_DocumentsQuery setItemNoIn(ArrayList value) { this.ItemNoIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class TD_MainQuery extends QueryDb implements IReturn> { public String RecID = null; public String RecIDStartsWith = null; public String RecIDEndsWith = null; public String RecIDContains = null; public String RecIDLike = null; public ArrayList RecIDBetween = null; public ArrayList RecIDIn = null; public String ToDoNo = null; public String ToDoNoStartsWith = null; public String ToDoNoEndsWith = null; public String ToDoNoContains = null; public String ToDoNoLike = null; public ArrayList ToDoNoBetween = null; public ArrayList ToDoNoIn = null; public String Subject = null; public String SubjectStartsWith = null; public String SubjectEndsWith = null; public String SubjectContains = null; public String SubjectLike = null; public ArrayList SubjectBetween = null; public ArrayList SubjectIn = null; public String Body = null; public String BodyStartsWith = null; public String BodyEndsWith = null; public String BodyContains = null; public String BodyLike = null; public ArrayList BodyBetween = null; public ArrayList BodyIn = null; public String TD_Priorities_RecID = null; public String TD_Priorities_RecIDStartsWith = null; public String TD_Priorities_RecIDEndsWith = null; public String TD_Priorities_RecIDContains = null; public String TD_Priorities_RecIDLike = null; public ArrayList TD_Priorities_RecIDBetween = null; public ArrayList TD_Priorities_RecIDIn = null; public Integer DurationInHours = null; public Integer DurationInHoursGreaterThanOrEqualTo = null; public Integer DurationInHoursGreaterThan = null; public Integer DurationInHoursLessThan = null; public Integer DurationInHoursLessThanOrEqualTo = null; public Integer DurationInHoursNotEqualTo = null; public ArrayList DurationInHoursBetween = null; public ArrayList DurationInHoursIn = null; public String AssignedBy_HR_Staff_RecID = null; public String AssignedBy_HR_Staff_RecIDStartsWith = null; public String AssignedBy_HR_Staff_RecIDEndsWith = null; public String AssignedBy_HR_Staff_RecIDContains = null; public String AssignedBy_HR_Staff_RecIDLike = null; public ArrayList AssignedBy_HR_Staff_RecIDBetween = null; public ArrayList AssignedBy_HR_Staff_RecIDIn = null; public String AssignedTo_HR_Staff_RecID = null; public String AssignedTo_HR_Staff_RecIDStartsWith = null; public String AssignedTo_HR_Staff_RecIDEndsWith = null; public String AssignedTo_HR_Staff_RecIDContains = null; public String AssignedTo_HR_Staff_RecIDLike = null; public ArrayList AssignedTo_HR_Staff_RecIDBetween = null; public ArrayList AssignedTo_HR_Staff_RecIDIn = null; public Boolean ReminderEnabled = null; public Integer ReminderTrigger = null; public Integer ReminderTriggerGreaterThanOrEqualTo = null; public Integer ReminderTriggerGreaterThan = null; public Integer ReminderTriggerLessThan = null; public Integer ReminderTriggerLessThanOrEqualTo = null; public Integer ReminderTriggerNotEqualTo = null; public ArrayList ReminderTriggerBetween = null; public ArrayList ReminderTriggerIn = null; public Integer ReminderPredefinedSetting = null; public Integer ReminderPredefinedSettingGreaterThanOrEqualTo = null; public Integer ReminderPredefinedSettingGreaterThan = null; public Integer ReminderPredefinedSettingLessThan = null; public Integer ReminderPredefinedSettingLessThanOrEqualTo = null; public Integer ReminderPredefinedSettingNotEqualTo = null; public ArrayList ReminderPredefinedSettingBetween = null; public ArrayList ReminderPredefinedSettingIn = null; public Date ReminderSpecificDateTime = null; public Date ReminderSpecificDateTimeGreaterThanOrEqualTo = null; public Date ReminderSpecificDateTimeGreaterThan = null; public Date ReminderSpecificDateTimeLessThan = null; public Date ReminderSpecificDateTimeLessThanOrEqualTo = null; public Date ReminderSpecificDateTimeNotEqualTo = null; public ArrayList ReminderSpecificDateTimeBetween = null; public ArrayList ReminderSpecificDateTimeIn = null; public String Source_SY_Forms_ClassName = null; public String Source_SY_Forms_ClassNameStartsWith = null; public String Source_SY_Forms_ClassNameEndsWith = null; public String Source_SY_Forms_ClassNameContains = null; public String Source_SY_Forms_ClassNameLike = null; public ArrayList Source_SY_Forms_ClassNameBetween = null; public ArrayList Source_SY_Forms_ClassNameIn = null; public String Source_RecID = null; public String Source_RecIDStartsWith = null; public String Source_RecIDEndsWith = null; public String Source_RecIDContains = null; public String Source_RecIDLike = null; public ArrayList Source_RecIDBetween = null; public ArrayList Source_RecIDIn = null; public String TD_ToDoTypes_RecID = null; public String TD_ToDoTypes_RecIDStartsWith = null; public String TD_ToDoTypes_RecIDEndsWith = null; public String TD_ToDoTypes_RecIDContains = null; public String TD_ToDoTypes_RecIDLike = null; public ArrayList TD_ToDoTypes_RecIDBetween = null; public ArrayList TD_ToDoTypes_RecIDIn = null; public Boolean UsesStatusTracking = null; public String TD_Statuses_RecID = null; public String TD_Statuses_RecIDStartsWith = null; public String TD_Statuses_RecIDEndsWith = null; public String TD_Statuses_RecIDContains = null; public String TD_Statuses_RecIDLike = null; public ArrayList TD_Statuses_RecIDBetween = null; public ArrayList TD_Statuses_RecIDIn = null; public Integer CompletePercentage = null; public Integer CompletePercentageGreaterThanOrEqualTo = null; public Integer CompletePercentageGreaterThan = null; public Integer CompletePercentageLessThan = null; public Integer CompletePercentageLessThanOrEqualTo = null; public Integer CompletePercentageNotEqualTo = null; public ArrayList CompletePercentageBetween = null; public ArrayList CompletePercentageIn = null; public String LastSaved_HR_Staff_RecID = null; public String LastSaved_HR_Staff_RecIDStartsWith = null; public String LastSaved_HR_Staff_RecIDEndsWith = null; public String LastSaved_HR_Staff_RecIDContains = null; public String LastSaved_HR_Staff_RecIDLike = null; public ArrayList LastSaved_HR_Staff_RecIDBetween = null; public ArrayList LastSaved_HR_Staff_RecIDIn = null; public Date LastSavedDateTime = null; public Date LastSavedDateTimeGreaterThanOrEqualTo = null; public Date LastSavedDateTimeGreaterThan = null; public Date LastSavedDateTimeLessThan = null; public Date LastSavedDateTimeLessThanOrEqualTo = null; public Date LastSavedDateTimeNotEqualTo = null; public ArrayList LastSavedDateTimeBetween = null; public ArrayList LastSavedDateTimeIn = null; public Date DueDateTime = null; public Date DueDateTimeGreaterThanOrEqualTo = null; public Date DueDateTimeGreaterThan = null; public Date DueDateTimeLessThan = null; public Date DueDateTimeLessThanOrEqualTo = null; public Date DueDateTimeNotEqualTo = null; public ArrayList DueDateTimeBetween = null; public ArrayList DueDateTimeIn = null; public Date FinishedDateTime = null; public Date FinishedDateTimeGreaterThanOrEqualTo = null; public Date FinishedDateTimeGreaterThan = null; public Date FinishedDateTimeLessThan = null; public Date FinishedDateTimeLessThanOrEqualTo = null; public Date FinishedDateTimeNotEqualTo = null; public ArrayList FinishedDateTimeBetween = null; public ArrayList FinishedDateTimeIn = null; public Boolean HasBeenRead = null; public Boolean ReminderSent = null; public String Source_DisplayText = null; public String Source_DisplayTextStartsWith = null; public String Source_DisplayTextEndsWith = null; public String Source_DisplayTextContains = null; public String Source_DisplayTextLike = null; public ArrayList Source_DisplayTextBetween = null; public ArrayList Source_DisplayTextIn = null; public String getRecID() { return RecID; } public TD_MainQuery setRecID(String value) { this.RecID = value; return this; } public String getRecIDStartsWith() { return RecIDStartsWith; } public TD_MainQuery setRecIDStartsWith(String value) { this.RecIDStartsWith = value; return this; } public String getRecIDEndsWith() { return RecIDEndsWith; } public TD_MainQuery setRecIDEndsWith(String value) { this.RecIDEndsWith = value; return this; } public String getRecIDContains() { return RecIDContains; } public TD_MainQuery setRecIDContains(String value) { this.RecIDContains = value; return this; } public String getRecIDLike() { return RecIDLike; } public TD_MainQuery setRecIDLike(String value) { this.RecIDLike = value; return this; } public ArrayList getRecIDBetween() { return RecIDBetween; } public TD_MainQuery setRecIDBetween(ArrayList value) { this.RecIDBetween = value; return this; } public ArrayList getRecIDIn() { return RecIDIn; } public TD_MainQuery setRecIDIn(ArrayList value) { this.RecIDIn = value; return this; } public String getToDoNo() { return ToDoNo; } public TD_MainQuery setToDoNo(String value) { this.ToDoNo = value; return this; } public String getToDoNoStartsWith() { return ToDoNoStartsWith; } public TD_MainQuery setToDoNoStartsWith(String value) { this.ToDoNoStartsWith = value; return this; } public String getToDoNoEndsWith() { return ToDoNoEndsWith; } public TD_MainQuery setToDoNoEndsWith(String value) { this.ToDoNoEndsWith = value; return this; } public String getToDoNoContains() { return ToDoNoContains; } public TD_MainQuery setToDoNoContains(String value) { this.ToDoNoContains = value; return this; } public String getToDoNoLike() { return ToDoNoLike; } public TD_MainQuery setToDoNoLike(String value) { this.ToDoNoLike = value; return this; } public ArrayList getToDoNoBetween() { return ToDoNoBetween; } public TD_MainQuery setToDoNoBetween(ArrayList value) { this.ToDoNoBetween = value; return this; } public ArrayList getToDoNoIn() { return ToDoNoIn; } public TD_MainQuery setToDoNoIn(ArrayList value) { this.ToDoNoIn = value; return this; } public String getSubject() { return Subject; } public TD_MainQuery setSubject(String value) { this.Subject = value; return this; } public String getSubjectStartsWith() { return SubjectStartsWith; } public TD_MainQuery setSubjectStartsWith(String value) { this.SubjectStartsWith = value; return this; } public String getSubjectEndsWith() { return SubjectEndsWith; } public TD_MainQuery setSubjectEndsWith(String value) { this.SubjectEndsWith = value; return this; } public String getSubjectContains() { return SubjectContains; } public TD_MainQuery setSubjectContains(String value) { this.SubjectContains = value; return this; } public String getSubjectLike() { return SubjectLike; } public TD_MainQuery setSubjectLike(String value) { this.SubjectLike = value; return this; } public ArrayList getSubjectBetween() { return SubjectBetween; } public TD_MainQuery setSubjectBetween(ArrayList value) { this.SubjectBetween = value; return this; } public ArrayList getSubjectIn() { return SubjectIn; } public TD_MainQuery setSubjectIn(ArrayList value) { this.SubjectIn = value; return this; } public String getBody() { return Body; } public TD_MainQuery setBody(String value) { this.Body = value; return this; } public String getBodyStartsWith() { return BodyStartsWith; } public TD_MainQuery setBodyStartsWith(String value) { this.BodyStartsWith = value; return this; } public String getBodyEndsWith() { return BodyEndsWith; } public TD_MainQuery setBodyEndsWith(String value) { this.BodyEndsWith = value; return this; } public String getBodyContains() { return BodyContains; } public TD_MainQuery setBodyContains(String value) { this.BodyContains = value; return this; } public String getBodyLike() { return BodyLike; } public TD_MainQuery setBodyLike(String value) { this.BodyLike = value; return this; } public ArrayList getBodyBetween() { return BodyBetween; } public TD_MainQuery setBodyBetween(ArrayList value) { this.BodyBetween = value; return this; } public ArrayList getBodyIn() { return BodyIn; } public TD_MainQuery setBodyIn(ArrayList value) { this.BodyIn = value; return this; } public String getTdPrioritiesRecID() { return TD_Priorities_RecID; } public TD_MainQuery setTdPrioritiesRecID(String value) { this.TD_Priorities_RecID = value; return this; } public String getTdPrioritiesRecIDStartsWith() { return TD_Priorities_RecIDStartsWith; } public TD_MainQuery setTdPrioritiesRecIDStartsWith(String value) { this.TD_Priorities_RecIDStartsWith = value; return this; } public String getTdPrioritiesRecIDEndsWith() { return TD_Priorities_RecIDEndsWith; } public TD_MainQuery setTdPrioritiesRecIDEndsWith(String value) { this.TD_Priorities_RecIDEndsWith = value; return this; } public String getTdPrioritiesRecIDContains() { return TD_Priorities_RecIDContains; } public TD_MainQuery setTdPrioritiesRecIDContains(String value) { this.TD_Priorities_RecIDContains = value; return this; } public String getTdPrioritiesRecIDLike() { return TD_Priorities_RecIDLike; } public TD_MainQuery setTdPrioritiesRecIDLike(String value) { this.TD_Priorities_RecIDLike = value; return this; } public ArrayList getTdPrioritiesRecIDBetween() { return TD_Priorities_RecIDBetween; } public TD_MainQuery setTdPrioritiesRecIDBetween(ArrayList value) { this.TD_Priorities_RecIDBetween = value; return this; } public ArrayList getTdPrioritiesRecIDIn() { return TD_Priorities_RecIDIn; } public TD_MainQuery setTdPrioritiesRecIDIn(ArrayList value) { this.TD_Priorities_RecIDIn = value; return this; } public Integer getDurationInHours() { return DurationInHours; } public TD_MainQuery setDurationInHours(Integer value) { this.DurationInHours = value; return this; } public Integer getDurationInHoursGreaterThanOrEqualTo() { return DurationInHoursGreaterThanOrEqualTo; } public TD_MainQuery setDurationInHoursGreaterThanOrEqualTo(Integer value) { this.DurationInHoursGreaterThanOrEqualTo = value; return this; } public Integer getDurationInHoursGreaterThan() { return DurationInHoursGreaterThan; } public TD_MainQuery setDurationInHoursGreaterThan(Integer value) { this.DurationInHoursGreaterThan = value; return this; } public Integer getDurationInHoursLessThan() { return DurationInHoursLessThan; } public TD_MainQuery setDurationInHoursLessThan(Integer value) { this.DurationInHoursLessThan = value; return this; } public Integer getDurationInHoursLessThanOrEqualTo() { return DurationInHoursLessThanOrEqualTo; } public TD_MainQuery setDurationInHoursLessThanOrEqualTo(Integer value) { this.DurationInHoursLessThanOrEqualTo = value; return this; } public Integer getDurationInHoursNotEqualTo() { return DurationInHoursNotEqualTo; } public TD_MainQuery setDurationInHoursNotEqualTo(Integer value) { this.DurationInHoursNotEqualTo = value; return this; } public ArrayList getDurationInHoursBetween() { return DurationInHoursBetween; } public TD_MainQuery setDurationInHoursBetween(ArrayList value) { this.DurationInHoursBetween = value; return this; } public ArrayList getDurationInHoursIn() { return DurationInHoursIn; } public TD_MainQuery setDurationInHoursIn(ArrayList value) { this.DurationInHoursIn = value; return this; } public String getAssignedByHrStaffRecID() { return AssignedBy_HR_Staff_RecID; } public TD_MainQuery setAssignedByHrStaffRecID(String value) { this.AssignedBy_HR_Staff_RecID = value; return this; } public String getAssignedByHrStaffRecIDStartsWith() { return AssignedBy_HR_Staff_RecIDStartsWith; } public TD_MainQuery setAssignedByHrStaffRecIDStartsWith(String value) { this.AssignedBy_HR_Staff_RecIDStartsWith = value; return this; } public String getAssignedByHrStaffRecIDEndsWith() { return AssignedBy_HR_Staff_RecIDEndsWith; } public TD_MainQuery setAssignedByHrStaffRecIDEndsWith(String value) { this.AssignedBy_HR_Staff_RecIDEndsWith = value; return this; } public String getAssignedByHrStaffRecIDContains() { return AssignedBy_HR_Staff_RecIDContains; } public TD_MainQuery setAssignedByHrStaffRecIDContains(String value) { this.AssignedBy_HR_Staff_RecIDContains = value; return this; } public String getAssignedByHrStaffRecIDLike() { return AssignedBy_HR_Staff_RecIDLike; } public TD_MainQuery setAssignedByHrStaffRecIDLike(String value) { this.AssignedBy_HR_Staff_RecIDLike = value; return this; } public ArrayList getAssignedByHrStaffRecIDBetween() { return AssignedBy_HR_Staff_RecIDBetween; } public TD_MainQuery setAssignedByHrStaffRecIDBetween(ArrayList value) { this.AssignedBy_HR_Staff_RecIDBetween = value; return this; } public ArrayList getAssignedByHrStaffRecIDIn() { return AssignedBy_HR_Staff_RecIDIn; } public TD_MainQuery setAssignedByHrStaffRecIDIn(ArrayList value) { this.AssignedBy_HR_Staff_RecIDIn = value; return this; } public String getAssignedToHrStaffRecID() { return AssignedTo_HR_Staff_RecID; } public TD_MainQuery setAssignedToHrStaffRecID(String value) { this.AssignedTo_HR_Staff_RecID = value; return this; } public String getAssignedToHrStaffRecIDStartsWith() { return AssignedTo_HR_Staff_RecIDStartsWith; } public TD_MainQuery setAssignedToHrStaffRecIDStartsWith(String value) { this.AssignedTo_HR_Staff_RecIDStartsWith = value; return this; } public String getAssignedToHrStaffRecIDEndsWith() { return AssignedTo_HR_Staff_RecIDEndsWith; } public TD_MainQuery setAssignedToHrStaffRecIDEndsWith(String value) { this.AssignedTo_HR_Staff_RecIDEndsWith = value; return this; } public String getAssignedToHrStaffRecIDContains() { return AssignedTo_HR_Staff_RecIDContains; } public TD_MainQuery setAssignedToHrStaffRecIDContains(String value) { this.AssignedTo_HR_Staff_RecIDContains = value; return this; } public String getAssignedToHrStaffRecIDLike() { return AssignedTo_HR_Staff_RecIDLike; } public TD_MainQuery setAssignedToHrStaffRecIDLike(String value) { this.AssignedTo_HR_Staff_RecIDLike = value; return this; } public ArrayList getAssignedToHrStaffRecIDBetween() { return AssignedTo_HR_Staff_RecIDBetween; } public TD_MainQuery setAssignedToHrStaffRecIDBetween(ArrayList value) { this.AssignedTo_HR_Staff_RecIDBetween = value; return this; } public ArrayList getAssignedToHrStaffRecIDIn() { return AssignedTo_HR_Staff_RecIDIn; } public TD_MainQuery setAssignedToHrStaffRecIDIn(ArrayList value) { this.AssignedTo_HR_Staff_RecIDIn = value; return this; } public Boolean isReminderEnabled() { return ReminderEnabled; } public TD_MainQuery setReminderEnabled(Boolean value) { this.ReminderEnabled = value; return this; } public Integer getReminderTrigger() { return ReminderTrigger; } public TD_MainQuery setReminderTrigger(Integer value) { this.ReminderTrigger = value; return this; } public Integer getReminderTriggerGreaterThanOrEqualTo() { return ReminderTriggerGreaterThanOrEqualTo; } public TD_MainQuery setReminderTriggerGreaterThanOrEqualTo(Integer value) { this.ReminderTriggerGreaterThanOrEqualTo = value; return this; } public Integer getReminderTriggerGreaterThan() { return ReminderTriggerGreaterThan; } public TD_MainQuery setReminderTriggerGreaterThan(Integer value) { this.ReminderTriggerGreaterThan = value; return this; } public Integer getReminderTriggerLessThan() { return ReminderTriggerLessThan; } public TD_MainQuery setReminderTriggerLessThan(Integer value) { this.ReminderTriggerLessThan = value; return this; } public Integer getReminderTriggerLessThanOrEqualTo() { return ReminderTriggerLessThanOrEqualTo; } public TD_MainQuery setReminderTriggerLessThanOrEqualTo(Integer value) { this.ReminderTriggerLessThanOrEqualTo = value; return this; } public Integer getReminderTriggerNotEqualTo() { return ReminderTriggerNotEqualTo; } public TD_MainQuery setReminderTriggerNotEqualTo(Integer value) { this.ReminderTriggerNotEqualTo = value; return this; } public ArrayList getReminderTriggerBetween() { return ReminderTriggerBetween; } public TD_MainQuery setReminderTriggerBetween(ArrayList value) { this.ReminderTriggerBetween = value; return this; } public ArrayList getReminderTriggerIn() { return ReminderTriggerIn; } public TD_MainQuery setReminderTriggerIn(ArrayList value) { this.ReminderTriggerIn = value; return this; } public Integer getReminderPredefinedSetting() { return ReminderPredefinedSetting; } public TD_MainQuery setReminderPredefinedSetting(Integer value) { this.ReminderPredefinedSetting = value; return this; } public Integer getReminderPredefinedSettingGreaterThanOrEqualTo() { return ReminderPredefinedSettingGreaterThanOrEqualTo; } public TD_MainQuery setReminderPredefinedSettingGreaterThanOrEqualTo(Integer value) { this.ReminderPredefinedSettingGreaterThanOrEqualTo = value; return this; } public Integer getReminderPredefinedSettingGreaterThan() { return ReminderPredefinedSettingGreaterThan; } public TD_MainQuery setReminderPredefinedSettingGreaterThan(Integer value) { this.ReminderPredefinedSettingGreaterThan = value; return this; } public Integer getReminderPredefinedSettingLessThan() { return ReminderPredefinedSettingLessThan; } public TD_MainQuery setReminderPredefinedSettingLessThan(Integer value) { this.ReminderPredefinedSettingLessThan = value; return this; } public Integer getReminderPredefinedSettingLessThanOrEqualTo() { return ReminderPredefinedSettingLessThanOrEqualTo; } public TD_MainQuery setReminderPredefinedSettingLessThanOrEqualTo(Integer value) { this.ReminderPredefinedSettingLessThanOrEqualTo = value; return this; } public Integer getReminderPredefinedSettingNotEqualTo() { return ReminderPredefinedSettingNotEqualTo; } public TD_MainQuery setReminderPredefinedSettingNotEqualTo(Integer value) { this.ReminderPredefinedSettingNotEqualTo = value; return this; } public ArrayList getReminderPredefinedSettingBetween() { return ReminderPredefinedSettingBetween; } public TD_MainQuery setReminderPredefinedSettingBetween(ArrayList value) { this.ReminderPredefinedSettingBetween = value; return this; } public ArrayList getReminderPredefinedSettingIn() { return ReminderPredefinedSettingIn; } public TD_MainQuery setReminderPredefinedSettingIn(ArrayList value) { this.ReminderPredefinedSettingIn = value; return this; } public Date getReminderSpecificDateTime() { return ReminderSpecificDateTime; } public TD_MainQuery setReminderSpecificDateTime(Date value) { this.ReminderSpecificDateTime = value; return this; } public Date getReminderSpecificDateTimeGreaterThanOrEqualTo() { return ReminderSpecificDateTimeGreaterThanOrEqualTo; } public TD_MainQuery setReminderSpecificDateTimeGreaterThanOrEqualTo(Date value) { this.ReminderSpecificDateTimeGreaterThanOrEqualTo = value; return this; } public Date getReminderSpecificDateTimeGreaterThan() { return ReminderSpecificDateTimeGreaterThan; } public TD_MainQuery setReminderSpecificDateTimeGreaterThan(Date value) { this.ReminderSpecificDateTimeGreaterThan = value; return this; } public Date getReminderSpecificDateTimeLessThan() { return ReminderSpecificDateTimeLessThan; } public TD_MainQuery setReminderSpecificDateTimeLessThan(Date value) { this.ReminderSpecificDateTimeLessThan = value; return this; } public Date getReminderSpecificDateTimeLessThanOrEqualTo() { return ReminderSpecificDateTimeLessThanOrEqualTo; } public TD_MainQuery setReminderSpecificDateTimeLessThanOrEqualTo(Date value) { this.ReminderSpecificDateTimeLessThanOrEqualTo = value; return this; } public Date getReminderSpecificDateTimeNotEqualTo() { return ReminderSpecificDateTimeNotEqualTo; } public TD_MainQuery setReminderSpecificDateTimeNotEqualTo(Date value) { this.ReminderSpecificDateTimeNotEqualTo = value; return this; } public ArrayList getReminderSpecificDateTimeBetween() { return ReminderSpecificDateTimeBetween; } public TD_MainQuery setReminderSpecificDateTimeBetween(ArrayList value) { this.ReminderSpecificDateTimeBetween = value; return this; } public ArrayList getReminderSpecificDateTimeIn() { return ReminderSpecificDateTimeIn; } public TD_MainQuery setReminderSpecificDateTimeIn(ArrayList value) { this.ReminderSpecificDateTimeIn = value; return this; } public String getSourceSyFormsClassName() { return Source_SY_Forms_ClassName; } public TD_MainQuery setSourceSyFormsClassName(String value) { this.Source_SY_Forms_ClassName = value; return this; } public String getSourceSyFormsClassNameStartsWith() { return Source_SY_Forms_ClassNameStartsWith; } public TD_MainQuery setSourceSyFormsClassNameStartsWith(String value) { this.Source_SY_Forms_ClassNameStartsWith = value; return this; } public String getSourceSyFormsClassNameEndsWith() { return Source_SY_Forms_ClassNameEndsWith; } public TD_MainQuery setSourceSyFormsClassNameEndsWith(String value) { this.Source_SY_Forms_ClassNameEndsWith = value; return this; } public String getSourceSyFormsClassNameContains() { return Source_SY_Forms_ClassNameContains; } public TD_MainQuery setSourceSyFormsClassNameContains(String value) { this.Source_SY_Forms_ClassNameContains = value; return this; } public String getSourceSyFormsClassNameLike() { return Source_SY_Forms_ClassNameLike; } public TD_MainQuery setSourceSyFormsClassNameLike(String value) { this.Source_SY_Forms_ClassNameLike = value; return this; } public ArrayList getSourceSyFormsClassNameBetween() { return Source_SY_Forms_ClassNameBetween; } public TD_MainQuery setSourceSyFormsClassNameBetween(ArrayList value) { this.Source_SY_Forms_ClassNameBetween = value; return this; } public ArrayList getSourceSyFormsClassNameIn() { return Source_SY_Forms_ClassNameIn; } public TD_MainQuery setSourceSyFormsClassNameIn(ArrayList value) { this.Source_SY_Forms_ClassNameIn = value; return this; } public String getSourceRecID() { return Source_RecID; } public TD_MainQuery setSourceRecID(String value) { this.Source_RecID = value; return this; } public String getSourceRecIDStartsWith() { return Source_RecIDStartsWith; } public TD_MainQuery setSourceRecIDStartsWith(String value) { this.Source_RecIDStartsWith = value; return this; } public String getSourceRecIDEndsWith() { return Source_RecIDEndsWith; } public TD_MainQuery setSourceRecIDEndsWith(String value) { this.Source_RecIDEndsWith = value; return this; } public String getSourceRecIDContains() { return Source_RecIDContains; } public TD_MainQuery setSourceRecIDContains(String value) { this.Source_RecIDContains = value; return this; } public String getSourceRecIDLike() { return Source_RecIDLike; } public TD_MainQuery setSourceRecIDLike(String value) { this.Source_RecIDLike = value; return this; } public ArrayList getSourceRecIDBetween() { return Source_RecIDBetween; } public TD_MainQuery setSourceRecIDBetween(ArrayList value) { this.Source_RecIDBetween = value; return this; } public ArrayList getSourceRecIDIn() { return Source_RecIDIn; } public TD_MainQuery setSourceRecIDIn(ArrayList value) { this.Source_RecIDIn = value; return this; } public String getTdToDoTypesRecID() { return TD_ToDoTypes_RecID; } public TD_MainQuery setTdToDoTypesRecID(String value) { this.TD_ToDoTypes_RecID = value; return this; } public String getTdToDoTypesRecIDStartsWith() { return TD_ToDoTypes_RecIDStartsWith; } public TD_MainQuery setTdToDoTypesRecIDStartsWith(String value) { this.TD_ToDoTypes_RecIDStartsWith = value; return this; } public String getTdToDoTypesRecIDEndsWith() { return TD_ToDoTypes_RecIDEndsWith; } public TD_MainQuery setTdToDoTypesRecIDEndsWith(String value) { this.TD_ToDoTypes_RecIDEndsWith = value; return this; } public String getTdToDoTypesRecIDContains() { return TD_ToDoTypes_RecIDContains; } public TD_MainQuery setTdToDoTypesRecIDContains(String value) { this.TD_ToDoTypes_RecIDContains = value; return this; } public String getTdToDoTypesRecIDLike() { return TD_ToDoTypes_RecIDLike; } public TD_MainQuery setTdToDoTypesRecIDLike(String value) { this.TD_ToDoTypes_RecIDLike = value; return this; } public ArrayList getTdToDoTypesRecIDBetween() { return TD_ToDoTypes_RecIDBetween; } public TD_MainQuery setTdToDoTypesRecIDBetween(ArrayList value) { this.TD_ToDoTypes_RecIDBetween = value; return this; } public ArrayList getTdToDoTypesRecIDIn() { return TD_ToDoTypes_RecIDIn; } public TD_MainQuery setTdToDoTypesRecIDIn(ArrayList value) { this.TD_ToDoTypes_RecIDIn = value; return this; } public Boolean isUsesStatusTracking() { return UsesStatusTracking; } public TD_MainQuery setUsesStatusTracking(Boolean value) { this.UsesStatusTracking = value; return this; } public String getTdStatusesRecID() { return TD_Statuses_RecID; } public TD_MainQuery setTdStatusesRecID(String value) { this.TD_Statuses_RecID = value; return this; } public String getTdStatusesRecIDStartsWith() { return TD_Statuses_RecIDStartsWith; } public TD_MainQuery setTdStatusesRecIDStartsWith(String value) { this.TD_Statuses_RecIDStartsWith = value; return this; } public String getTdStatusesRecIDEndsWith() { return TD_Statuses_RecIDEndsWith; } public TD_MainQuery setTdStatusesRecIDEndsWith(String value) { this.TD_Statuses_RecIDEndsWith = value; return this; } public String getTdStatusesRecIDContains() { return TD_Statuses_RecIDContains; } public TD_MainQuery setTdStatusesRecIDContains(String value) { this.TD_Statuses_RecIDContains = value; return this; } public String getTdStatusesRecIDLike() { return TD_Statuses_RecIDLike; } public TD_MainQuery setTdStatusesRecIDLike(String value) { this.TD_Statuses_RecIDLike = value; return this; } public ArrayList getTdStatusesRecIDBetween() { return TD_Statuses_RecIDBetween; } public TD_MainQuery setTdStatusesRecIDBetween(ArrayList value) { this.TD_Statuses_RecIDBetween = value; return this; } public ArrayList getTdStatusesRecIDIn() { return TD_Statuses_RecIDIn; } public TD_MainQuery setTdStatusesRecIDIn(ArrayList value) { this.TD_Statuses_RecIDIn = value; return this; } public Integer getCompletePercentage() { return CompletePercentage; } public TD_MainQuery setCompletePercentage(Integer value) { this.CompletePercentage = value; return this; } public Integer getCompletePercentageGreaterThanOrEqualTo() { return CompletePercentageGreaterThanOrEqualTo; } public TD_MainQuery setCompletePercentageGreaterThanOrEqualTo(Integer value) { this.CompletePercentageGreaterThanOrEqualTo = value; return this; } public Integer getCompletePercentageGreaterThan() { return CompletePercentageGreaterThan; } public TD_MainQuery setCompletePercentageGreaterThan(Integer value) { this.CompletePercentageGreaterThan = value; return this; } public Integer getCompletePercentageLessThan() { return CompletePercentageLessThan; } public TD_MainQuery setCompletePercentageLessThan(Integer value) { this.CompletePercentageLessThan = value; return this; } public Integer getCompletePercentageLessThanOrEqualTo() { return CompletePercentageLessThanOrEqualTo; } public TD_MainQuery setCompletePercentageLessThanOrEqualTo(Integer value) { this.CompletePercentageLessThanOrEqualTo = value; return this; } public Integer getCompletePercentageNotEqualTo() { return CompletePercentageNotEqualTo; } public TD_MainQuery setCompletePercentageNotEqualTo(Integer value) { this.CompletePercentageNotEqualTo = value; return this; } public ArrayList getCompletePercentageBetween() { return CompletePercentageBetween; } public TD_MainQuery setCompletePercentageBetween(ArrayList value) { this.CompletePercentageBetween = value; return this; } public ArrayList getCompletePercentageIn() { return CompletePercentageIn; } public TD_MainQuery setCompletePercentageIn(ArrayList value) { this.CompletePercentageIn = value; return this; } public String getLastSavedHrStaffRecID() { return LastSaved_HR_Staff_RecID; } public TD_MainQuery setLastSavedHrStaffRecID(String value) { this.LastSaved_HR_Staff_RecID = value; return this; } public String getLastSavedHrStaffRecIDStartsWith() { return LastSaved_HR_Staff_RecIDStartsWith; } public TD_MainQuery setLastSavedHrStaffRecIDStartsWith(String value) { this.LastSaved_HR_Staff_RecIDStartsWith = value; return this; } public String getLastSavedHrStaffRecIDEndsWith() { return LastSaved_HR_Staff_RecIDEndsWith; } public TD_MainQuery setLastSavedHrStaffRecIDEndsWith(String value) { this.LastSaved_HR_Staff_RecIDEndsWith = value; return this; } public String getLastSavedHrStaffRecIDContains() { return LastSaved_HR_Staff_RecIDContains; } public TD_MainQuery setLastSavedHrStaffRecIDContains(String value) { this.LastSaved_HR_Staff_RecIDContains = value; return this; } public String getLastSavedHrStaffRecIDLike() { return LastSaved_HR_Staff_RecIDLike; } public TD_MainQuery setLastSavedHrStaffRecIDLike(String value) { this.LastSaved_HR_Staff_RecIDLike = value; return this; } public ArrayList getLastSavedHrStaffRecIDBetween() { return LastSaved_HR_Staff_RecIDBetween; } public TD_MainQuery setLastSavedHrStaffRecIDBetween(ArrayList value) { this.LastSaved_HR_Staff_RecIDBetween = value; return this; } public ArrayList getLastSavedHrStaffRecIDIn() { return LastSaved_HR_Staff_RecIDIn; } public TD_MainQuery setLastSavedHrStaffRecIDIn(ArrayList value) { this.LastSaved_HR_Staff_RecIDIn = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public TD_MainQuery setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getLastSavedDateTimeGreaterThanOrEqualTo() { return LastSavedDateTimeGreaterThanOrEqualTo; } public TD_MainQuery setLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.LastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeGreaterThan() { return LastSavedDateTimeGreaterThan; } public TD_MainQuery setLastSavedDateTimeGreaterThan(Date value) { this.LastSavedDateTimeGreaterThan = value; return this; } public Date getLastSavedDateTimeLessThan() { return LastSavedDateTimeLessThan; } public TD_MainQuery setLastSavedDateTimeLessThan(Date value) { this.LastSavedDateTimeLessThan = value; return this; } public Date getLastSavedDateTimeLessThanOrEqualTo() { return LastSavedDateTimeLessThanOrEqualTo; } public TD_MainQuery setLastSavedDateTimeLessThanOrEqualTo(Date value) { this.LastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeNotEqualTo() { return LastSavedDateTimeNotEqualTo; } public TD_MainQuery setLastSavedDateTimeNotEqualTo(Date value) { this.LastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getLastSavedDateTimeBetween() { return LastSavedDateTimeBetween; } public TD_MainQuery setLastSavedDateTimeBetween(ArrayList value) { this.LastSavedDateTimeBetween = value; return this; } public ArrayList getLastSavedDateTimeIn() { return LastSavedDateTimeIn; } public TD_MainQuery setLastSavedDateTimeIn(ArrayList value) { this.LastSavedDateTimeIn = value; return this; } public Date getDueDateTime() { return DueDateTime; } public TD_MainQuery setDueDateTime(Date value) { this.DueDateTime = value; return this; } public Date getDueDateTimeGreaterThanOrEqualTo() { return DueDateTimeGreaterThanOrEqualTo; } public TD_MainQuery setDueDateTimeGreaterThanOrEqualTo(Date value) { this.DueDateTimeGreaterThanOrEqualTo = value; return this; } public Date getDueDateTimeGreaterThan() { return DueDateTimeGreaterThan; } public TD_MainQuery setDueDateTimeGreaterThan(Date value) { this.DueDateTimeGreaterThan = value; return this; } public Date getDueDateTimeLessThan() { return DueDateTimeLessThan; } public TD_MainQuery setDueDateTimeLessThan(Date value) { this.DueDateTimeLessThan = value; return this; } public Date getDueDateTimeLessThanOrEqualTo() { return DueDateTimeLessThanOrEqualTo; } public TD_MainQuery setDueDateTimeLessThanOrEqualTo(Date value) { this.DueDateTimeLessThanOrEqualTo = value; return this; } public Date getDueDateTimeNotEqualTo() { return DueDateTimeNotEqualTo; } public TD_MainQuery setDueDateTimeNotEqualTo(Date value) { this.DueDateTimeNotEqualTo = value; return this; } public ArrayList getDueDateTimeBetween() { return DueDateTimeBetween; } public TD_MainQuery setDueDateTimeBetween(ArrayList value) { this.DueDateTimeBetween = value; return this; } public ArrayList getDueDateTimeIn() { return DueDateTimeIn; } public TD_MainQuery setDueDateTimeIn(ArrayList value) { this.DueDateTimeIn = value; return this; } public Date getFinishedDateTime() { return FinishedDateTime; } public TD_MainQuery setFinishedDateTime(Date value) { this.FinishedDateTime = value; return this; } public Date getFinishedDateTimeGreaterThanOrEqualTo() { return FinishedDateTimeGreaterThanOrEqualTo; } public TD_MainQuery setFinishedDateTimeGreaterThanOrEqualTo(Date value) { this.FinishedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getFinishedDateTimeGreaterThan() { return FinishedDateTimeGreaterThan; } public TD_MainQuery setFinishedDateTimeGreaterThan(Date value) { this.FinishedDateTimeGreaterThan = value; return this; } public Date getFinishedDateTimeLessThan() { return FinishedDateTimeLessThan; } public TD_MainQuery setFinishedDateTimeLessThan(Date value) { this.FinishedDateTimeLessThan = value; return this; } public Date getFinishedDateTimeLessThanOrEqualTo() { return FinishedDateTimeLessThanOrEqualTo; } public TD_MainQuery setFinishedDateTimeLessThanOrEqualTo(Date value) { this.FinishedDateTimeLessThanOrEqualTo = value; return this; } public Date getFinishedDateTimeNotEqualTo() { return FinishedDateTimeNotEqualTo; } public TD_MainQuery setFinishedDateTimeNotEqualTo(Date value) { this.FinishedDateTimeNotEqualTo = value; return this; } public ArrayList getFinishedDateTimeBetween() { return FinishedDateTimeBetween; } public TD_MainQuery setFinishedDateTimeBetween(ArrayList value) { this.FinishedDateTimeBetween = value; return this; } public ArrayList getFinishedDateTimeIn() { return FinishedDateTimeIn; } public TD_MainQuery setFinishedDateTimeIn(ArrayList value) { this.FinishedDateTimeIn = value; return this; } public Boolean isHasBeenRead() { return HasBeenRead; } public TD_MainQuery setHasBeenRead(Boolean value) { this.HasBeenRead = value; return this; } public Boolean isReminderSent() { return ReminderSent; } public TD_MainQuery setReminderSent(Boolean value) { this.ReminderSent = value; return this; } public String getSourceDisplayText() { return Source_DisplayText; } public TD_MainQuery setSourceDisplayText(String value) { this.Source_DisplayText = value; return this; } public String getSourceDisplayTextStartsWith() { return Source_DisplayTextStartsWith; } public TD_MainQuery setSourceDisplayTextStartsWith(String value) { this.Source_DisplayTextStartsWith = value; return this; } public String getSourceDisplayTextEndsWith() { return Source_DisplayTextEndsWith; } public TD_MainQuery setSourceDisplayTextEndsWith(String value) { this.Source_DisplayTextEndsWith = value; return this; } public String getSourceDisplayTextContains() { return Source_DisplayTextContains; } public TD_MainQuery setSourceDisplayTextContains(String value) { this.Source_DisplayTextContains = value; return this; } public String getSourceDisplayTextLike() { return Source_DisplayTextLike; } public TD_MainQuery setSourceDisplayTextLike(String value) { this.Source_DisplayTextLike = value; return this; } public ArrayList getSourceDisplayTextBetween() { return Source_DisplayTextBetween; } public TD_MainQuery setSourceDisplayTextBetween(ArrayList value) { this.Source_DisplayTextBetween = value; return this; } public ArrayList getSourceDisplayTextIn() { return Source_DisplayTextIn; } public TD_MainQuery setSourceDisplayTextIn(ArrayList value) { this.Source_DisplayTextIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class TD_NotesQuery extends QueryDb implements IReturn> { public String RecID = null; public String RecIDStartsWith = null; public String RecIDEndsWith = null; public String RecIDContains = null; public String RecIDLike = null; public ArrayList RecIDBetween = null; public ArrayList RecIDIn = null; public String TD_Main_RecID = null; public String TD_Main_RecIDStartsWith = null; public String TD_Main_RecIDEndsWith = null; public String TD_Main_RecIDContains = null; public String TD_Main_RecIDLike = null; public ArrayList TD_Main_RecIDBetween = null; public ArrayList TD_Main_RecIDIn = null; public String NoteTypeID = null; public String NoteTypeIDStartsWith = null; public String NoteTypeIDEndsWith = null; public String NoteTypeIDContains = null; public String NoteTypeIDLike = null; public ArrayList NoteTypeIDBetween = null; public ArrayList NoteTypeIDIn = null; public Date LastSavedDateTime = null; public Date LastSavedDateTimeGreaterThanOrEqualTo = null; public Date LastSavedDateTimeGreaterThan = null; public Date LastSavedDateTimeLessThan = null; public Date LastSavedDateTimeLessThanOrEqualTo = null; public Date LastSavedDateTimeNotEqualTo = null; public ArrayList LastSavedDateTimeBetween = null; public ArrayList LastSavedDateTimeIn = null; public String LastSavedByStaffID = null; public String LastSavedByStaffIDStartsWith = null; public String LastSavedByStaffIDEndsWith = null; public String LastSavedByStaffIDContains = null; public String LastSavedByStaffIDLike = null; public ArrayList LastSavedByStaffIDBetween = null; public ArrayList LastSavedByStaffIDIn = null; public String NoteText = null; public String NoteTextStartsWith = null; public String NoteTextEndsWith = null; public String NoteTextContains = null; public String NoteTextLike = null; public ArrayList NoteTextBetween = null; public ArrayList NoteTextIn = null; public Integer ItemNo = null; public Integer ItemNoGreaterThanOrEqualTo = null; public Integer ItemNoGreaterThan = null; public Integer ItemNoLessThan = null; public Integer ItemNoLessThanOrEqualTo = null; public Integer ItemNoNotEqualTo = null; public ArrayList ItemNoBetween = null; public ArrayList ItemNoIn = null; public String getRecID() { return RecID; } public TD_NotesQuery setRecID(String value) { this.RecID = value; return this; } public String getRecIDStartsWith() { return RecIDStartsWith; } public TD_NotesQuery setRecIDStartsWith(String value) { this.RecIDStartsWith = value; return this; } public String getRecIDEndsWith() { return RecIDEndsWith; } public TD_NotesQuery setRecIDEndsWith(String value) { this.RecIDEndsWith = value; return this; } public String getRecIDContains() { return RecIDContains; } public TD_NotesQuery setRecIDContains(String value) { this.RecIDContains = value; return this; } public String getRecIDLike() { return RecIDLike; } public TD_NotesQuery setRecIDLike(String value) { this.RecIDLike = value; return this; } public ArrayList getRecIDBetween() { return RecIDBetween; } public TD_NotesQuery setRecIDBetween(ArrayList value) { this.RecIDBetween = value; return this; } public ArrayList getRecIDIn() { return RecIDIn; } public TD_NotesQuery setRecIDIn(ArrayList value) { this.RecIDIn = value; return this; } public String getTdMainRecID() { return TD_Main_RecID; } public TD_NotesQuery setTdMainRecID(String value) { this.TD_Main_RecID = value; return this; } public String getTdMainRecIDStartsWith() { return TD_Main_RecIDStartsWith; } public TD_NotesQuery setTdMainRecIDStartsWith(String value) { this.TD_Main_RecIDStartsWith = value; return this; } public String getTdMainRecIDEndsWith() { return TD_Main_RecIDEndsWith; } public TD_NotesQuery setTdMainRecIDEndsWith(String value) { this.TD_Main_RecIDEndsWith = value; return this; } public String getTdMainRecIDContains() { return TD_Main_RecIDContains; } public TD_NotesQuery setTdMainRecIDContains(String value) { this.TD_Main_RecIDContains = value; return this; } public String getTdMainRecIDLike() { return TD_Main_RecIDLike; } public TD_NotesQuery setTdMainRecIDLike(String value) { this.TD_Main_RecIDLike = value; return this; } public ArrayList getTdMainRecIDBetween() { return TD_Main_RecIDBetween; } public TD_NotesQuery setTdMainRecIDBetween(ArrayList value) { this.TD_Main_RecIDBetween = value; return this; } public ArrayList getTdMainRecIDIn() { return TD_Main_RecIDIn; } public TD_NotesQuery setTdMainRecIDIn(ArrayList value) { this.TD_Main_RecIDIn = value; return this; } public String getNoteTypeID() { return NoteTypeID; } public TD_NotesQuery setNoteTypeID(String value) { this.NoteTypeID = value; return this; } public String getNoteTypeIDStartsWith() { return NoteTypeIDStartsWith; } public TD_NotesQuery setNoteTypeIDStartsWith(String value) { this.NoteTypeIDStartsWith = value; return this; } public String getNoteTypeIDEndsWith() { return NoteTypeIDEndsWith; } public TD_NotesQuery setNoteTypeIDEndsWith(String value) { this.NoteTypeIDEndsWith = value; return this; } public String getNoteTypeIDContains() { return NoteTypeIDContains; } public TD_NotesQuery setNoteTypeIDContains(String value) { this.NoteTypeIDContains = value; return this; } public String getNoteTypeIDLike() { return NoteTypeIDLike; } public TD_NotesQuery setNoteTypeIDLike(String value) { this.NoteTypeIDLike = value; return this; } public ArrayList getNoteTypeIDBetween() { return NoteTypeIDBetween; } public TD_NotesQuery setNoteTypeIDBetween(ArrayList value) { this.NoteTypeIDBetween = value; return this; } public ArrayList getNoteTypeIDIn() { return NoteTypeIDIn; } public TD_NotesQuery setNoteTypeIDIn(ArrayList value) { this.NoteTypeIDIn = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public TD_NotesQuery setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getLastSavedDateTimeGreaterThanOrEqualTo() { return LastSavedDateTimeGreaterThanOrEqualTo; } public TD_NotesQuery setLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.LastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeGreaterThan() { return LastSavedDateTimeGreaterThan; } public TD_NotesQuery setLastSavedDateTimeGreaterThan(Date value) { this.LastSavedDateTimeGreaterThan = value; return this; } public Date getLastSavedDateTimeLessThan() { return LastSavedDateTimeLessThan; } public TD_NotesQuery setLastSavedDateTimeLessThan(Date value) { this.LastSavedDateTimeLessThan = value; return this; } public Date getLastSavedDateTimeLessThanOrEqualTo() { return LastSavedDateTimeLessThanOrEqualTo; } public TD_NotesQuery setLastSavedDateTimeLessThanOrEqualTo(Date value) { this.LastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeNotEqualTo() { return LastSavedDateTimeNotEqualTo; } public TD_NotesQuery setLastSavedDateTimeNotEqualTo(Date value) { this.LastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getLastSavedDateTimeBetween() { return LastSavedDateTimeBetween; } public TD_NotesQuery setLastSavedDateTimeBetween(ArrayList value) { this.LastSavedDateTimeBetween = value; return this; } public ArrayList getLastSavedDateTimeIn() { return LastSavedDateTimeIn; } public TD_NotesQuery setLastSavedDateTimeIn(ArrayList value) { this.LastSavedDateTimeIn = value; return this; } public String getLastSavedByStaffID() { return LastSavedByStaffID; } public TD_NotesQuery setLastSavedByStaffID(String value) { this.LastSavedByStaffID = value; return this; } public String getLastSavedByStaffIDStartsWith() { return LastSavedByStaffIDStartsWith; } public TD_NotesQuery setLastSavedByStaffIDStartsWith(String value) { this.LastSavedByStaffIDStartsWith = value; return this; } public String getLastSavedByStaffIDEndsWith() { return LastSavedByStaffIDEndsWith; } public TD_NotesQuery setLastSavedByStaffIDEndsWith(String value) { this.LastSavedByStaffIDEndsWith = value; return this; } public String getLastSavedByStaffIDContains() { return LastSavedByStaffIDContains; } public TD_NotesQuery setLastSavedByStaffIDContains(String value) { this.LastSavedByStaffIDContains = value; return this; } public String getLastSavedByStaffIDLike() { return LastSavedByStaffIDLike; } public TD_NotesQuery setLastSavedByStaffIDLike(String value) { this.LastSavedByStaffIDLike = value; return this; } public ArrayList getLastSavedByStaffIDBetween() { return LastSavedByStaffIDBetween; } public TD_NotesQuery setLastSavedByStaffIDBetween(ArrayList value) { this.LastSavedByStaffIDBetween = value; return this; } public ArrayList getLastSavedByStaffIDIn() { return LastSavedByStaffIDIn; } public TD_NotesQuery setLastSavedByStaffIDIn(ArrayList value) { this.LastSavedByStaffIDIn = value; return this; } public String getNoteText() { return NoteText; } public TD_NotesQuery setNoteText(String value) { this.NoteText = value; return this; } public String getNoteTextStartsWith() { return NoteTextStartsWith; } public TD_NotesQuery setNoteTextStartsWith(String value) { this.NoteTextStartsWith = value; return this; } public String getNoteTextEndsWith() { return NoteTextEndsWith; } public TD_NotesQuery setNoteTextEndsWith(String value) { this.NoteTextEndsWith = value; return this; } public String getNoteTextContains() { return NoteTextContains; } public TD_NotesQuery setNoteTextContains(String value) { this.NoteTextContains = value; return this; } public String getNoteTextLike() { return NoteTextLike; } public TD_NotesQuery setNoteTextLike(String value) { this.NoteTextLike = value; return this; } public ArrayList getNoteTextBetween() { return NoteTextBetween; } public TD_NotesQuery setNoteTextBetween(ArrayList value) { this.NoteTextBetween = value; return this; } public ArrayList getNoteTextIn() { return NoteTextIn; } public TD_NotesQuery setNoteTextIn(ArrayList value) { this.NoteTextIn = value; return this; } public Integer getItemNo() { return ItemNo; } public TD_NotesQuery setItemNo(Integer value) { this.ItemNo = value; return this; } public Integer getItemNoGreaterThanOrEqualTo() { return ItemNoGreaterThanOrEqualTo; } public TD_NotesQuery setItemNoGreaterThanOrEqualTo(Integer value) { this.ItemNoGreaterThanOrEqualTo = value; return this; } public Integer getItemNoGreaterThan() { return ItemNoGreaterThan; } public TD_NotesQuery setItemNoGreaterThan(Integer value) { this.ItemNoGreaterThan = value; return this; } public Integer getItemNoLessThan() { return ItemNoLessThan; } public TD_NotesQuery setItemNoLessThan(Integer value) { this.ItemNoLessThan = value; return this; } public Integer getItemNoLessThanOrEqualTo() { return ItemNoLessThanOrEqualTo; } public TD_NotesQuery setItemNoLessThanOrEqualTo(Integer value) { this.ItemNoLessThanOrEqualTo = value; return this; } public Integer getItemNoNotEqualTo() { return ItemNoNotEqualTo; } public TD_NotesQuery setItemNoNotEqualTo(Integer value) { this.ItemNoNotEqualTo = value; return this; } public ArrayList getItemNoBetween() { return ItemNoBetween; } public TD_NotesQuery setItemNoBetween(ArrayList value) { this.ItemNoBetween = value; return this; } public ArrayList getItemNoIn() { return ItemNoIn; } public TD_NotesQuery setItemNoIn(ArrayList value) { this.ItemNoIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class TD_PrioritiesQuery extends QueryDb implements IReturn> { public String RecID = null; public String RecIDStartsWith = null; public String RecIDEndsWith = null; public String RecIDContains = null; public String RecIDLike = null; public ArrayList RecIDBetween = null; public ArrayList RecIDIn = null; public String Name = null; public String NameStartsWith = null; public String NameEndsWith = null; public String NameContains = null; public String NameLike = null; public ArrayList NameBetween = null; public ArrayList NameIn = null; public String Description = null; public String DescriptionStartsWith = null; public String DescriptionEndsWith = null; public String DescriptionContains = null; public String DescriptionLike = null; public ArrayList DescriptionBetween = null; public ArrayList DescriptionIn = null; public Integer ItemNo = null; public Integer ItemNoGreaterThanOrEqualTo = null; public Integer ItemNoGreaterThan = null; public Integer ItemNoLessThan = null; public Integer ItemNoLessThanOrEqualTo = null; public Integer ItemNoNotEqualTo = null; public ArrayList ItemNoBetween = null; public ArrayList ItemNoIn = null; public Boolean IsEnabled = null; public ArrayList RowHash = null; public Boolean IsDefault = null; public String getRecID() { return RecID; } public TD_PrioritiesQuery setRecID(String value) { this.RecID = value; return this; } public String getRecIDStartsWith() { return RecIDStartsWith; } public TD_PrioritiesQuery setRecIDStartsWith(String value) { this.RecIDStartsWith = value; return this; } public String getRecIDEndsWith() { return RecIDEndsWith; } public TD_PrioritiesQuery setRecIDEndsWith(String value) { this.RecIDEndsWith = value; return this; } public String getRecIDContains() { return RecIDContains; } public TD_PrioritiesQuery setRecIDContains(String value) { this.RecIDContains = value; return this; } public String getRecIDLike() { return RecIDLike; } public TD_PrioritiesQuery setRecIDLike(String value) { this.RecIDLike = value; return this; } public ArrayList getRecIDBetween() { return RecIDBetween; } public TD_PrioritiesQuery setRecIDBetween(ArrayList value) { this.RecIDBetween = value; return this; } public ArrayList getRecIDIn() { return RecIDIn; } public TD_PrioritiesQuery setRecIDIn(ArrayList value) { this.RecIDIn = value; return this; } public String getName() { return Name; } public TD_PrioritiesQuery setName(String value) { this.Name = value; return this; } public String getNameStartsWith() { return NameStartsWith; } public TD_PrioritiesQuery setNameStartsWith(String value) { this.NameStartsWith = value; return this; } public String getNameEndsWith() { return NameEndsWith; } public TD_PrioritiesQuery setNameEndsWith(String value) { this.NameEndsWith = value; return this; } public String getNameContains() { return NameContains; } public TD_PrioritiesQuery setNameContains(String value) { this.NameContains = value; return this; } public String getNameLike() { return NameLike; } public TD_PrioritiesQuery setNameLike(String value) { this.NameLike = value; return this; } public ArrayList getNameBetween() { return NameBetween; } public TD_PrioritiesQuery setNameBetween(ArrayList value) { this.NameBetween = value; return this; } public ArrayList getNameIn() { return NameIn; } public TD_PrioritiesQuery setNameIn(ArrayList value) { this.NameIn = value; return this; } public String getDescription() { return Description; } public TD_PrioritiesQuery setDescription(String value) { this.Description = value; return this; } public String getDescriptionStartsWith() { return DescriptionStartsWith; } public TD_PrioritiesQuery setDescriptionStartsWith(String value) { this.DescriptionStartsWith = value; return this; } public String getDescriptionEndsWith() { return DescriptionEndsWith; } public TD_PrioritiesQuery setDescriptionEndsWith(String value) { this.DescriptionEndsWith = value; return this; } public String getDescriptionContains() { return DescriptionContains; } public TD_PrioritiesQuery setDescriptionContains(String value) { this.DescriptionContains = value; return this; } public String getDescriptionLike() { return DescriptionLike; } public TD_PrioritiesQuery setDescriptionLike(String value) { this.DescriptionLike = value; return this; } public ArrayList getDescriptionBetween() { return DescriptionBetween; } public TD_PrioritiesQuery setDescriptionBetween(ArrayList value) { this.DescriptionBetween = value; return this; } public ArrayList getDescriptionIn() { return DescriptionIn; } public TD_PrioritiesQuery setDescriptionIn(ArrayList value) { this.DescriptionIn = value; return this; } public Integer getItemNo() { return ItemNo; } public TD_PrioritiesQuery setItemNo(Integer value) { this.ItemNo = value; return this; } public Integer getItemNoGreaterThanOrEqualTo() { return ItemNoGreaterThanOrEqualTo; } public TD_PrioritiesQuery setItemNoGreaterThanOrEqualTo(Integer value) { this.ItemNoGreaterThanOrEqualTo = value; return this; } public Integer getItemNoGreaterThan() { return ItemNoGreaterThan; } public TD_PrioritiesQuery setItemNoGreaterThan(Integer value) { this.ItemNoGreaterThan = value; return this; } public Integer getItemNoLessThan() { return ItemNoLessThan; } public TD_PrioritiesQuery setItemNoLessThan(Integer value) { this.ItemNoLessThan = value; return this; } public Integer getItemNoLessThanOrEqualTo() { return ItemNoLessThanOrEqualTo; } public TD_PrioritiesQuery setItemNoLessThanOrEqualTo(Integer value) { this.ItemNoLessThanOrEqualTo = value; return this; } public Integer getItemNoNotEqualTo() { return ItemNoNotEqualTo; } public TD_PrioritiesQuery setItemNoNotEqualTo(Integer value) { this.ItemNoNotEqualTo = value; return this; } public ArrayList getItemNoBetween() { return ItemNoBetween; } public TD_PrioritiesQuery setItemNoBetween(ArrayList value) { this.ItemNoBetween = value; return this; } public ArrayList getItemNoIn() { return ItemNoIn; } public TD_PrioritiesQuery setItemNoIn(ArrayList value) { this.ItemNoIn = value; return this; } public Boolean getIsEnabled() { return IsEnabled; } public TD_PrioritiesQuery setIsEnabled(Boolean value) { this.IsEnabled = value; return this; } public ArrayList getRowHash() { return RowHash; } public TD_PrioritiesQuery setRowHash(ArrayList value) { this.RowHash = value; return this; } public Boolean getIsDefault() { return IsDefault; } public TD_PrioritiesQuery setIsDefault(Boolean value) { this.IsDefault = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class TD_SourceTypesQuery extends QueryDb implements IReturn> { public String RecID = null; public String RecIDStartsWith = null; public String RecIDEndsWith = null; public String RecIDContains = null; public String RecIDLike = null; public ArrayList RecIDBetween = null; public ArrayList RecIDIn = null; public String ClassName = null; public String ClassNameStartsWith = null; public String ClassNameEndsWith = null; public String ClassNameContains = null; public String ClassNameLike = null; public ArrayList ClassNameBetween = null; public ArrayList ClassNameIn = null; public ArrayList RowHash = null; public String getRecID() { return RecID; } public TD_SourceTypesQuery setRecID(String value) { this.RecID = value; return this; } public String getRecIDStartsWith() { return RecIDStartsWith; } public TD_SourceTypesQuery setRecIDStartsWith(String value) { this.RecIDStartsWith = value; return this; } public String getRecIDEndsWith() { return RecIDEndsWith; } public TD_SourceTypesQuery setRecIDEndsWith(String value) { this.RecIDEndsWith = value; return this; } public String getRecIDContains() { return RecIDContains; } public TD_SourceTypesQuery setRecIDContains(String value) { this.RecIDContains = value; return this; } public String getRecIDLike() { return RecIDLike; } public TD_SourceTypesQuery setRecIDLike(String value) { this.RecIDLike = value; return this; } public ArrayList getRecIDBetween() { return RecIDBetween; } public TD_SourceTypesQuery setRecIDBetween(ArrayList value) { this.RecIDBetween = value; return this; } public ArrayList getRecIDIn() { return RecIDIn; } public TD_SourceTypesQuery setRecIDIn(ArrayList value) { this.RecIDIn = value; return this; } public String getClassName() { return ClassName; } public TD_SourceTypesQuery setClassName(String value) { this.ClassName = value; return this; } public String getClassNameStartsWith() { return ClassNameStartsWith; } public TD_SourceTypesQuery setClassNameStartsWith(String value) { this.ClassNameStartsWith = value; return this; } public String getClassNameEndsWith() { return ClassNameEndsWith; } public TD_SourceTypesQuery setClassNameEndsWith(String value) { this.ClassNameEndsWith = value; return this; } public String getClassNameContains() { return ClassNameContains; } public TD_SourceTypesQuery setClassNameContains(String value) { this.ClassNameContains = value; return this; } public String getClassNameLike() { return ClassNameLike; } public TD_SourceTypesQuery setClassNameLike(String value) { this.ClassNameLike = value; return this; } public ArrayList getClassNameBetween() { return ClassNameBetween; } public TD_SourceTypesQuery setClassNameBetween(ArrayList value) { this.ClassNameBetween = value; return this; } public ArrayList getClassNameIn() { return ClassNameIn; } public TD_SourceTypesQuery setClassNameIn(ArrayList value) { this.ClassNameIn = value; return this; } public ArrayList getRowHash() { return RowHash; } public TD_SourceTypesQuery setRowHash(ArrayList value) { this.RowHash = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class TD_StatusesQuery extends QueryDb implements IReturn> { public String RecID = null; public String RecIDStartsWith = null; public String RecIDEndsWith = null; public String RecIDContains = null; public String RecIDLike = null; public ArrayList RecIDBetween = null; public ArrayList RecIDIn = null; public String Name = null; public String NameStartsWith = null; public String NameEndsWith = null; public String NameContains = null; public String NameLike = null; public ArrayList NameBetween = null; public ArrayList NameIn = null; public String Description = null; public String DescriptionStartsWith = null; public String DescriptionEndsWith = null; public String DescriptionContains = null; public String DescriptionLike = null; public ArrayList DescriptionBetween = null; public ArrayList DescriptionIn = null; public Integer ItemNo = null; public Integer ItemNoGreaterThanOrEqualTo = null; public Integer ItemNoGreaterThan = null; public Integer ItemNoLessThan = null; public Integer ItemNoLessThanOrEqualTo = null; public Integer ItemNoNotEqualTo = null; public ArrayList ItemNoBetween = null; public ArrayList ItemNoIn = null; public Integer PercentageComplete = null; public Integer PercentageCompleteGreaterThanOrEqualTo = null; public Integer PercentageCompleteGreaterThan = null; public Integer PercentageCompleteLessThan = null; public Integer PercentageCompleteLessThanOrEqualTo = null; public Integer PercentageCompleteNotEqualTo = null; public ArrayList PercentageCompleteBetween = null; public ArrayList PercentageCompleteIn = null; public Boolean IsEnabled = null; public ArrayList RowHash = null; public String getRecID() { return RecID; } public TD_StatusesQuery setRecID(String value) { this.RecID = value; return this; } public String getRecIDStartsWith() { return RecIDStartsWith; } public TD_StatusesQuery setRecIDStartsWith(String value) { this.RecIDStartsWith = value; return this; } public String getRecIDEndsWith() { return RecIDEndsWith; } public TD_StatusesQuery setRecIDEndsWith(String value) { this.RecIDEndsWith = value; return this; } public String getRecIDContains() { return RecIDContains; } public TD_StatusesQuery setRecIDContains(String value) { this.RecIDContains = value; return this; } public String getRecIDLike() { return RecIDLike; } public TD_StatusesQuery setRecIDLike(String value) { this.RecIDLike = value; return this; } public ArrayList getRecIDBetween() { return RecIDBetween; } public TD_StatusesQuery setRecIDBetween(ArrayList value) { this.RecIDBetween = value; return this; } public ArrayList getRecIDIn() { return RecIDIn; } public TD_StatusesQuery setRecIDIn(ArrayList value) { this.RecIDIn = value; return this; } public String getName() { return Name; } public TD_StatusesQuery setName(String value) { this.Name = value; return this; } public String getNameStartsWith() { return NameStartsWith; } public TD_StatusesQuery setNameStartsWith(String value) { this.NameStartsWith = value; return this; } public String getNameEndsWith() { return NameEndsWith; } public TD_StatusesQuery setNameEndsWith(String value) { this.NameEndsWith = value; return this; } public String getNameContains() { return NameContains; } public TD_StatusesQuery setNameContains(String value) { this.NameContains = value; return this; } public String getNameLike() { return NameLike; } public TD_StatusesQuery setNameLike(String value) { this.NameLike = value; return this; } public ArrayList getNameBetween() { return NameBetween; } public TD_StatusesQuery setNameBetween(ArrayList value) { this.NameBetween = value; return this; } public ArrayList getNameIn() { return NameIn; } public TD_StatusesQuery setNameIn(ArrayList value) { this.NameIn = value; return this; } public String getDescription() { return Description; } public TD_StatusesQuery setDescription(String value) { this.Description = value; return this; } public String getDescriptionStartsWith() { return DescriptionStartsWith; } public TD_StatusesQuery setDescriptionStartsWith(String value) { this.DescriptionStartsWith = value; return this; } public String getDescriptionEndsWith() { return DescriptionEndsWith; } public TD_StatusesQuery setDescriptionEndsWith(String value) { this.DescriptionEndsWith = value; return this; } public String getDescriptionContains() { return DescriptionContains; } public TD_StatusesQuery setDescriptionContains(String value) { this.DescriptionContains = value; return this; } public String getDescriptionLike() { return DescriptionLike; } public TD_StatusesQuery setDescriptionLike(String value) { this.DescriptionLike = value; return this; } public ArrayList getDescriptionBetween() { return DescriptionBetween; } public TD_StatusesQuery setDescriptionBetween(ArrayList value) { this.DescriptionBetween = value; return this; } public ArrayList getDescriptionIn() { return DescriptionIn; } public TD_StatusesQuery setDescriptionIn(ArrayList value) { this.DescriptionIn = value; return this; } public Integer getItemNo() { return ItemNo; } public TD_StatusesQuery setItemNo(Integer value) { this.ItemNo = value; return this; } public Integer getItemNoGreaterThanOrEqualTo() { return ItemNoGreaterThanOrEqualTo; } public TD_StatusesQuery setItemNoGreaterThanOrEqualTo(Integer value) { this.ItemNoGreaterThanOrEqualTo = value; return this; } public Integer getItemNoGreaterThan() { return ItemNoGreaterThan; } public TD_StatusesQuery setItemNoGreaterThan(Integer value) { this.ItemNoGreaterThan = value; return this; } public Integer getItemNoLessThan() { return ItemNoLessThan; } public TD_StatusesQuery setItemNoLessThan(Integer value) { this.ItemNoLessThan = value; return this; } public Integer getItemNoLessThanOrEqualTo() { return ItemNoLessThanOrEqualTo; } public TD_StatusesQuery setItemNoLessThanOrEqualTo(Integer value) { this.ItemNoLessThanOrEqualTo = value; return this; } public Integer getItemNoNotEqualTo() { return ItemNoNotEqualTo; } public TD_StatusesQuery setItemNoNotEqualTo(Integer value) { this.ItemNoNotEqualTo = value; return this; } public ArrayList getItemNoBetween() { return ItemNoBetween; } public TD_StatusesQuery setItemNoBetween(ArrayList value) { this.ItemNoBetween = value; return this; } public ArrayList getItemNoIn() { return ItemNoIn; } public TD_StatusesQuery setItemNoIn(ArrayList value) { this.ItemNoIn = value; return this; } public Integer getPercentageComplete() { return PercentageComplete; } public TD_StatusesQuery setPercentageComplete(Integer value) { this.PercentageComplete = value; return this; } public Integer getPercentageCompleteGreaterThanOrEqualTo() { return PercentageCompleteGreaterThanOrEqualTo; } public TD_StatusesQuery setPercentageCompleteGreaterThanOrEqualTo(Integer value) { this.PercentageCompleteGreaterThanOrEqualTo = value; return this; } public Integer getPercentageCompleteGreaterThan() { return PercentageCompleteGreaterThan; } public TD_StatusesQuery setPercentageCompleteGreaterThan(Integer value) { this.PercentageCompleteGreaterThan = value; return this; } public Integer getPercentageCompleteLessThan() { return PercentageCompleteLessThan; } public TD_StatusesQuery setPercentageCompleteLessThan(Integer value) { this.PercentageCompleteLessThan = value; return this; } public Integer getPercentageCompleteLessThanOrEqualTo() { return PercentageCompleteLessThanOrEqualTo; } public TD_StatusesQuery setPercentageCompleteLessThanOrEqualTo(Integer value) { this.PercentageCompleteLessThanOrEqualTo = value; return this; } public Integer getPercentageCompleteNotEqualTo() { return PercentageCompleteNotEqualTo; } public TD_StatusesQuery setPercentageCompleteNotEqualTo(Integer value) { this.PercentageCompleteNotEqualTo = value; return this; } public ArrayList getPercentageCompleteBetween() { return PercentageCompleteBetween; } public TD_StatusesQuery setPercentageCompleteBetween(ArrayList value) { this.PercentageCompleteBetween = value; return this; } public ArrayList getPercentageCompleteIn() { return PercentageCompleteIn; } public TD_StatusesQuery setPercentageCompleteIn(ArrayList value) { this.PercentageCompleteIn = value; return this; } public Boolean getIsEnabled() { return IsEnabled; } public TD_StatusesQuery setIsEnabled(Boolean value) { this.IsEnabled = value; return this; } public ArrayList getRowHash() { return RowHash; } public TD_StatusesQuery setRowHash(ArrayList value) { this.RowHash = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class TD_ToDoTypesQuery extends QueryDb implements IReturn> { public String RecID = null; public String RecIDStartsWith = null; public String RecIDEndsWith = null; public String RecIDContains = null; public String RecIDLike = null; public ArrayList RecIDBetween = null; public ArrayList RecIDIn = null; public Boolean IsDefault = null; public String Description = null; public String DescriptionStartsWith = null; public String DescriptionEndsWith = null; public String DescriptionContains = null; public String DescriptionLike = null; public ArrayList DescriptionBetween = null; public ArrayList DescriptionIn = null; public Date LastSavedDateTime = null; public Date LastSavedDateTimeGreaterThanOrEqualTo = null; public Date LastSavedDateTimeGreaterThan = null; public Date LastSavedDateTimeLessThan = null; public Date LastSavedDateTimeLessThanOrEqualTo = null; public Date LastSavedDateTimeNotEqualTo = null; public ArrayList LastSavedDateTimeBetween = null; public ArrayList LastSavedDateTimeIn = null; public Integer ItemNo = null; public Integer ItemNoGreaterThanOrEqualTo = null; public Integer ItemNoGreaterThan = null; public Integer ItemNoLessThan = null; public Integer ItemNoLessThanOrEqualTo = null; public Integer ItemNoNotEqualTo = null; public ArrayList ItemNoBetween = null; public ArrayList ItemNoIn = null; public String TD_SourceTypes_RecID = null; public String TD_SourceTypes_RecIDStartsWith = null; public String TD_SourceTypes_RecIDEndsWith = null; public String TD_SourceTypes_RecIDContains = null; public String TD_SourceTypes_RecIDLike = null; public ArrayList TD_SourceTypes_RecIDBetween = null; public ArrayList TD_SourceTypes_RecIDIn = null; public String getRecID() { return RecID; } public TD_ToDoTypesQuery setRecID(String value) { this.RecID = value; return this; } public String getRecIDStartsWith() { return RecIDStartsWith; } public TD_ToDoTypesQuery setRecIDStartsWith(String value) { this.RecIDStartsWith = value; return this; } public String getRecIDEndsWith() { return RecIDEndsWith; } public TD_ToDoTypesQuery setRecIDEndsWith(String value) { this.RecIDEndsWith = value; return this; } public String getRecIDContains() { return RecIDContains; } public TD_ToDoTypesQuery setRecIDContains(String value) { this.RecIDContains = value; return this; } public String getRecIDLike() { return RecIDLike; } public TD_ToDoTypesQuery setRecIDLike(String value) { this.RecIDLike = value; return this; } public ArrayList getRecIDBetween() { return RecIDBetween; } public TD_ToDoTypesQuery setRecIDBetween(ArrayList value) { this.RecIDBetween = value; return this; } public ArrayList getRecIDIn() { return RecIDIn; } public TD_ToDoTypesQuery setRecIDIn(ArrayList value) { this.RecIDIn = value; return this; } public Boolean getIsDefault() { return IsDefault; } public TD_ToDoTypesQuery setIsDefault(Boolean value) { this.IsDefault = value; return this; } public String getDescription() { return Description; } public TD_ToDoTypesQuery setDescription(String value) { this.Description = value; return this; } public String getDescriptionStartsWith() { return DescriptionStartsWith; } public TD_ToDoTypesQuery setDescriptionStartsWith(String value) { this.DescriptionStartsWith = value; return this; } public String getDescriptionEndsWith() { return DescriptionEndsWith; } public TD_ToDoTypesQuery setDescriptionEndsWith(String value) { this.DescriptionEndsWith = value; return this; } public String getDescriptionContains() { return DescriptionContains; } public TD_ToDoTypesQuery setDescriptionContains(String value) { this.DescriptionContains = value; return this; } public String getDescriptionLike() { return DescriptionLike; } public TD_ToDoTypesQuery setDescriptionLike(String value) { this.DescriptionLike = value; return this; } public ArrayList getDescriptionBetween() { return DescriptionBetween; } public TD_ToDoTypesQuery setDescriptionBetween(ArrayList value) { this.DescriptionBetween = value; return this; } public ArrayList getDescriptionIn() { return DescriptionIn; } public TD_ToDoTypesQuery setDescriptionIn(ArrayList value) { this.DescriptionIn = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public TD_ToDoTypesQuery setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getLastSavedDateTimeGreaterThanOrEqualTo() { return LastSavedDateTimeGreaterThanOrEqualTo; } public TD_ToDoTypesQuery setLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.LastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeGreaterThan() { return LastSavedDateTimeGreaterThan; } public TD_ToDoTypesQuery setLastSavedDateTimeGreaterThan(Date value) { this.LastSavedDateTimeGreaterThan = value; return this; } public Date getLastSavedDateTimeLessThan() { return LastSavedDateTimeLessThan; } public TD_ToDoTypesQuery setLastSavedDateTimeLessThan(Date value) { this.LastSavedDateTimeLessThan = value; return this; } public Date getLastSavedDateTimeLessThanOrEqualTo() { return LastSavedDateTimeLessThanOrEqualTo; } public TD_ToDoTypesQuery setLastSavedDateTimeLessThanOrEqualTo(Date value) { this.LastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeNotEqualTo() { return LastSavedDateTimeNotEqualTo; } public TD_ToDoTypesQuery setLastSavedDateTimeNotEqualTo(Date value) { this.LastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getLastSavedDateTimeBetween() { return LastSavedDateTimeBetween; } public TD_ToDoTypesQuery setLastSavedDateTimeBetween(ArrayList value) { this.LastSavedDateTimeBetween = value; return this; } public ArrayList getLastSavedDateTimeIn() { return LastSavedDateTimeIn; } public TD_ToDoTypesQuery setLastSavedDateTimeIn(ArrayList value) { this.LastSavedDateTimeIn = value; return this; } public Integer getItemNo() { return ItemNo; } public TD_ToDoTypesQuery setItemNo(Integer value) { this.ItemNo = value; return this; } public Integer getItemNoGreaterThanOrEqualTo() { return ItemNoGreaterThanOrEqualTo; } public TD_ToDoTypesQuery setItemNoGreaterThanOrEqualTo(Integer value) { this.ItemNoGreaterThanOrEqualTo = value; return this; } public Integer getItemNoGreaterThan() { return ItemNoGreaterThan; } public TD_ToDoTypesQuery setItemNoGreaterThan(Integer value) { this.ItemNoGreaterThan = value; return this; } public Integer getItemNoLessThan() { return ItemNoLessThan; } public TD_ToDoTypesQuery setItemNoLessThan(Integer value) { this.ItemNoLessThan = value; return this; } public Integer getItemNoLessThanOrEqualTo() { return ItemNoLessThanOrEqualTo; } public TD_ToDoTypesQuery setItemNoLessThanOrEqualTo(Integer value) { this.ItemNoLessThanOrEqualTo = value; return this; } public Integer getItemNoNotEqualTo() { return ItemNoNotEqualTo; } public TD_ToDoTypesQuery setItemNoNotEqualTo(Integer value) { this.ItemNoNotEqualTo = value; return this; } public ArrayList getItemNoBetween() { return ItemNoBetween; } public TD_ToDoTypesQuery setItemNoBetween(ArrayList value) { this.ItemNoBetween = value; return this; } public ArrayList getItemNoIn() { return ItemNoIn; } public TD_ToDoTypesQuery setItemNoIn(ArrayList value) { this.ItemNoIn = value; return this; } public String getTdSourceTypesRecID() { return TD_SourceTypes_RecID; } public TD_ToDoTypesQuery setTdSourceTypesRecID(String value) { this.TD_SourceTypes_RecID = value; return this; } public String getTdSourceTypesRecIDStartsWith() { return TD_SourceTypes_RecIDStartsWith; } public TD_ToDoTypesQuery setTdSourceTypesRecIDStartsWith(String value) { this.TD_SourceTypes_RecIDStartsWith = value; return this; } public String getTdSourceTypesRecIDEndsWith() { return TD_SourceTypes_RecIDEndsWith; } public TD_ToDoTypesQuery setTdSourceTypesRecIDEndsWith(String value) { this.TD_SourceTypes_RecIDEndsWith = value; return this; } public String getTdSourceTypesRecIDContains() { return TD_SourceTypes_RecIDContains; } public TD_ToDoTypesQuery setTdSourceTypesRecIDContains(String value) { this.TD_SourceTypes_RecIDContains = value; return this; } public String getTdSourceTypesRecIDLike() { return TD_SourceTypes_RecIDLike; } public TD_ToDoTypesQuery setTdSourceTypesRecIDLike(String value) { this.TD_SourceTypes_RecIDLike = value; return this; } public ArrayList getTdSourceTypesRecIDBetween() { return TD_SourceTypes_RecIDBetween; } public TD_ToDoTypesQuery setTdSourceTypesRecIDBetween(ArrayList value) { this.TD_SourceTypes_RecIDBetween = value; return this; } public ArrayList getTdSourceTypesRecIDIn() { return TD_SourceTypes_RecIDIn; } public TD_ToDoTypesQuery setTdSourceTypesRecIDIn(ArrayList value) { this.TD_SourceTypes_RecIDIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @Route(Path="/Queries/TX_Main", Verbs="GET") @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class TX_MainQuery extends QueryDb implements IReturn> { public String TaxID = null; public String TaxIDStartsWith = null; public String TaxIDEndsWith = null; public String TaxIDContains = null; public String TaxIDLike = null; public ArrayList TaxIDBetween = null; public ArrayList TaxIDIn = null; public String Description = null; public String DescriptionStartsWith = null; public String DescriptionEndsWith = null; public String DescriptionContains = null; public String DescriptionLike = null; public ArrayList DescriptionBetween = null; public ArrayList DescriptionIn = null; public BigDecimal TaxRate = null; public BigDecimal TaxRateGreaterThanOrEqualTo = null; public BigDecimal TaxRateGreaterThan = null; public BigDecimal TaxRateLessThan = null; public BigDecimal TaxRateLessThanOrEqualTo = null; public BigDecimal TaxRateNotEqualTo = null; public ArrayList TaxRateBetween = null; public ArrayList TaxRateIn = null; public Date LastSavedDateTime = null; public Date LastSavedDateTimeGreaterThanOrEqualTo = null; public Date LastSavedDateTimeGreaterThan = null; public Date LastSavedDateTimeLessThan = null; public Date LastSavedDateTimeLessThanOrEqualTo = null; public Date LastSavedDateTimeNotEqualTo = null; public ArrayList LastSavedDateTimeBetween = null; public ArrayList LastSavedDateTimeIn = null; public String S1 = null; public String S1StartsWith = null; public String S1EndsWith = null; public String S1Contains = null; public String S1Like = null; public ArrayList S1Between = null; public ArrayList S1In = null; public String S2 = null; public String S2StartsWith = null; public String S2EndsWith = null; public String S2Contains = null; public String S2Like = null; public ArrayList S2Between = null; public ArrayList S2In = null; public String S3 = null; public String S3StartsWith = null; public String S3EndsWith = null; public String S3Contains = null; public String S3Like = null; public ArrayList S3Between = null; public ArrayList S3In = null; public String S4 = null; public String S4StartsWith = null; public String S4EndsWith = null; public String S4Contains = null; public String S4Like = null; public ArrayList S4Between = null; public ArrayList S4In = null; public Integer DefaultRate = null; public Integer DefaultRateGreaterThanOrEqualTo = null; public Integer DefaultRateGreaterThan = null; public Integer DefaultRateLessThan = null; public Integer DefaultRateLessThanOrEqualTo = null; public Integer DefaultRateNotEqualTo = null; public ArrayList DefaultRateBetween = null; public ArrayList DefaultRateIn = null; public Integer GSTTaxGroup = null; public Integer GSTTaxGroupGreaterThanOrEqualTo = null; public Integer GSTTaxGroupGreaterThan = null; public Integer GSTTaxGroupLessThan = null; public Integer GSTTaxGroupLessThanOrEqualTo = null; public Integer GSTTaxGroupNotEqualTo = null; public ArrayList GSTTaxGroupBetween = null; public ArrayList GSTTaxGroupIn = null; public Boolean DefaultRateInGroup = null; public Integer BASCode = null; public Integer BASCodeGreaterThanOrEqualTo = null; public Integer BASCodeGreaterThan = null; public Integer BASCodeLessThan = null; public Integer BASCodeLessThanOrEqualTo = null; public Integer BASCodeNotEqualTo = null; public ArrayList BASCodeBetween = null; public ArrayList BASCodeIn = null; public Boolean Disabled = null; public String getTaxID() { return TaxID; } public TX_MainQuery setTaxID(String value) { this.TaxID = value; return this; } public String getTaxIDStartsWith() { return TaxIDStartsWith; } public TX_MainQuery setTaxIDStartsWith(String value) { this.TaxIDStartsWith = value; return this; } public String getTaxIDEndsWith() { return TaxIDEndsWith; } public TX_MainQuery setTaxIDEndsWith(String value) { this.TaxIDEndsWith = value; return this; } public String getTaxIDContains() { return TaxIDContains; } public TX_MainQuery setTaxIDContains(String value) { this.TaxIDContains = value; return this; } public String getTaxIDLike() { return TaxIDLike; } public TX_MainQuery setTaxIDLike(String value) { this.TaxIDLike = value; return this; } public ArrayList getTaxIDBetween() { return TaxIDBetween; } public TX_MainQuery setTaxIDBetween(ArrayList value) { this.TaxIDBetween = value; return this; } public ArrayList getTaxIDIn() { return TaxIDIn; } public TX_MainQuery setTaxIDIn(ArrayList value) { this.TaxIDIn = value; return this; } public String getDescription() { return Description; } public TX_MainQuery setDescription(String value) { this.Description = value; return this; } public String getDescriptionStartsWith() { return DescriptionStartsWith; } public TX_MainQuery setDescriptionStartsWith(String value) { this.DescriptionStartsWith = value; return this; } public String getDescriptionEndsWith() { return DescriptionEndsWith; } public TX_MainQuery setDescriptionEndsWith(String value) { this.DescriptionEndsWith = value; return this; } public String getDescriptionContains() { return DescriptionContains; } public TX_MainQuery setDescriptionContains(String value) { this.DescriptionContains = value; return this; } public String getDescriptionLike() { return DescriptionLike; } public TX_MainQuery setDescriptionLike(String value) { this.DescriptionLike = value; return this; } public ArrayList getDescriptionBetween() { return DescriptionBetween; } public TX_MainQuery setDescriptionBetween(ArrayList value) { this.DescriptionBetween = value; return this; } public ArrayList getDescriptionIn() { return DescriptionIn; } public TX_MainQuery setDescriptionIn(ArrayList value) { this.DescriptionIn = value; return this; } public BigDecimal getTaxRate() { return TaxRate; } public TX_MainQuery setTaxRate(BigDecimal value) { this.TaxRate = value; return this; } public BigDecimal getTaxRateGreaterThanOrEqualTo() { return TaxRateGreaterThanOrEqualTo; } public TX_MainQuery setTaxRateGreaterThanOrEqualTo(BigDecimal value) { this.TaxRateGreaterThanOrEqualTo = value; return this; } public BigDecimal getTaxRateGreaterThan() { return TaxRateGreaterThan; } public TX_MainQuery setTaxRateGreaterThan(BigDecimal value) { this.TaxRateGreaterThan = value; return this; } public BigDecimal getTaxRateLessThan() { return TaxRateLessThan; } public TX_MainQuery setTaxRateLessThan(BigDecimal value) { this.TaxRateLessThan = value; return this; } public BigDecimal getTaxRateLessThanOrEqualTo() { return TaxRateLessThanOrEqualTo; } public TX_MainQuery setTaxRateLessThanOrEqualTo(BigDecimal value) { this.TaxRateLessThanOrEqualTo = value; return this; } public BigDecimal getTaxRateNotEqualTo() { return TaxRateNotEqualTo; } public TX_MainQuery setTaxRateNotEqualTo(BigDecimal value) { this.TaxRateNotEqualTo = value; return this; } public ArrayList getTaxRateBetween() { return TaxRateBetween; } public TX_MainQuery setTaxRateBetween(ArrayList value) { this.TaxRateBetween = value; return this; } public ArrayList getTaxRateIn() { return TaxRateIn; } public TX_MainQuery setTaxRateIn(ArrayList value) { this.TaxRateIn = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public TX_MainQuery setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getLastSavedDateTimeGreaterThanOrEqualTo() { return LastSavedDateTimeGreaterThanOrEqualTo; } public TX_MainQuery setLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.LastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeGreaterThan() { return LastSavedDateTimeGreaterThan; } public TX_MainQuery setLastSavedDateTimeGreaterThan(Date value) { this.LastSavedDateTimeGreaterThan = value; return this; } public Date getLastSavedDateTimeLessThan() { return LastSavedDateTimeLessThan; } public TX_MainQuery setLastSavedDateTimeLessThan(Date value) { this.LastSavedDateTimeLessThan = value; return this; } public Date getLastSavedDateTimeLessThanOrEqualTo() { return LastSavedDateTimeLessThanOrEqualTo; } public TX_MainQuery setLastSavedDateTimeLessThanOrEqualTo(Date value) { this.LastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeNotEqualTo() { return LastSavedDateTimeNotEqualTo; } public TX_MainQuery setLastSavedDateTimeNotEqualTo(Date value) { this.LastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getLastSavedDateTimeBetween() { return LastSavedDateTimeBetween; } public TX_MainQuery setLastSavedDateTimeBetween(ArrayList value) { this.LastSavedDateTimeBetween = value; return this; } public ArrayList getLastSavedDateTimeIn() { return LastSavedDateTimeIn; } public TX_MainQuery setLastSavedDateTimeIn(ArrayList value) { this.LastSavedDateTimeIn = value; return this; } public String getS1() { return S1; } public TX_MainQuery setS1(String value) { this.S1 = value; return this; } public String getS1StartsWith() { return S1StartsWith; } public TX_MainQuery setS1StartsWith(String value) { this.S1StartsWith = value; return this; } public String getS1EndsWith() { return S1EndsWith; } public TX_MainQuery setS1EndsWith(String value) { this.S1EndsWith = value; return this; } public String getS1Contains() { return S1Contains; } public TX_MainQuery setS1Contains(String value) { this.S1Contains = value; return this; } public String getS1Like() { return S1Like; } public TX_MainQuery setS1Like(String value) { this.S1Like = value; return this; } public ArrayList getS1Between() { return S1Between; } public TX_MainQuery setS1Between(ArrayList value) { this.S1Between = value; return this; } public ArrayList getS1In() { return S1In; } public TX_MainQuery setS1In(ArrayList value) { this.S1In = value; return this; } public String getS2() { return S2; } public TX_MainQuery setS2(String value) { this.S2 = value; return this; } public String getS2StartsWith() { return S2StartsWith; } public TX_MainQuery setS2StartsWith(String value) { this.S2StartsWith = value; return this; } public String getS2EndsWith() { return S2EndsWith; } public TX_MainQuery setS2EndsWith(String value) { this.S2EndsWith = value; return this; } public String getS2Contains() { return S2Contains; } public TX_MainQuery setS2Contains(String value) { this.S2Contains = value; return this; } public String getS2Like() { return S2Like; } public TX_MainQuery setS2Like(String value) { this.S2Like = value; return this; } public ArrayList getS2Between() { return S2Between; } public TX_MainQuery setS2Between(ArrayList value) { this.S2Between = value; return this; } public ArrayList getS2In() { return S2In; } public TX_MainQuery setS2In(ArrayList value) { this.S2In = value; return this; } public String getS3() { return S3; } public TX_MainQuery setS3(String value) { this.S3 = value; return this; } public String getS3StartsWith() { return S3StartsWith; } public TX_MainQuery setS3StartsWith(String value) { this.S3StartsWith = value; return this; } public String getS3EndsWith() { return S3EndsWith; } public TX_MainQuery setS3EndsWith(String value) { this.S3EndsWith = value; return this; } public String getS3Contains() { return S3Contains; } public TX_MainQuery setS3Contains(String value) { this.S3Contains = value; return this; } public String getS3Like() { return S3Like; } public TX_MainQuery setS3Like(String value) { this.S3Like = value; return this; } public ArrayList getS3Between() { return S3Between; } public TX_MainQuery setS3Between(ArrayList value) { this.S3Between = value; return this; } public ArrayList getS3In() { return S3In; } public TX_MainQuery setS3In(ArrayList value) { this.S3In = value; return this; } public String getS4() { return S4; } public TX_MainQuery setS4(String value) { this.S4 = value; return this; } public String getS4StartsWith() { return S4StartsWith; } public TX_MainQuery setS4StartsWith(String value) { this.S4StartsWith = value; return this; } public String getS4EndsWith() { return S4EndsWith; } public TX_MainQuery setS4EndsWith(String value) { this.S4EndsWith = value; return this; } public String getS4Contains() { return S4Contains; } public TX_MainQuery setS4Contains(String value) { this.S4Contains = value; return this; } public String getS4Like() { return S4Like; } public TX_MainQuery setS4Like(String value) { this.S4Like = value; return this; } public ArrayList getS4Between() { return S4Between; } public TX_MainQuery setS4Between(ArrayList value) { this.S4Between = value; return this; } public ArrayList getS4In() { return S4In; } public TX_MainQuery setS4In(ArrayList value) { this.S4In = value; return this; } public Integer getDefaultRate() { return DefaultRate; } public TX_MainQuery setDefaultRate(Integer value) { this.DefaultRate = value; return this; } public Integer getDefaultRateGreaterThanOrEqualTo() { return DefaultRateGreaterThanOrEqualTo; } public TX_MainQuery setDefaultRateGreaterThanOrEqualTo(Integer value) { this.DefaultRateGreaterThanOrEqualTo = value; return this; } public Integer getDefaultRateGreaterThan() { return DefaultRateGreaterThan; } public TX_MainQuery setDefaultRateGreaterThan(Integer value) { this.DefaultRateGreaterThan = value; return this; } public Integer getDefaultRateLessThan() { return DefaultRateLessThan; } public TX_MainQuery setDefaultRateLessThan(Integer value) { this.DefaultRateLessThan = value; return this; } public Integer getDefaultRateLessThanOrEqualTo() { return DefaultRateLessThanOrEqualTo; } public TX_MainQuery setDefaultRateLessThanOrEqualTo(Integer value) { this.DefaultRateLessThanOrEqualTo = value; return this; } public Integer getDefaultRateNotEqualTo() { return DefaultRateNotEqualTo; } public TX_MainQuery setDefaultRateNotEqualTo(Integer value) { this.DefaultRateNotEqualTo = value; return this; } public ArrayList getDefaultRateBetween() { return DefaultRateBetween; } public TX_MainQuery setDefaultRateBetween(ArrayList value) { this.DefaultRateBetween = value; return this; } public ArrayList getDefaultRateIn() { return DefaultRateIn; } public TX_MainQuery setDefaultRateIn(ArrayList value) { this.DefaultRateIn = value; return this; } public Integer getGstTaxGroup() { return GSTTaxGroup; } public TX_MainQuery setGstTaxGroup(Integer value) { this.GSTTaxGroup = value; return this; } public Integer getGstTaxGroupGreaterThanOrEqualTo() { return GSTTaxGroupGreaterThanOrEqualTo; } public TX_MainQuery setGstTaxGroupGreaterThanOrEqualTo(Integer value) { this.GSTTaxGroupGreaterThanOrEqualTo = value; return this; } public Integer getGstTaxGroupGreaterThan() { return GSTTaxGroupGreaterThan; } public TX_MainQuery setGstTaxGroupGreaterThan(Integer value) { this.GSTTaxGroupGreaterThan = value; return this; } public Integer getGstTaxGroupLessThan() { return GSTTaxGroupLessThan; } public TX_MainQuery setGstTaxGroupLessThan(Integer value) { this.GSTTaxGroupLessThan = value; return this; } public Integer getGstTaxGroupLessThanOrEqualTo() { return GSTTaxGroupLessThanOrEqualTo; } public TX_MainQuery setGstTaxGroupLessThanOrEqualTo(Integer value) { this.GSTTaxGroupLessThanOrEqualTo = value; return this; } public Integer getGstTaxGroupNotEqualTo() { return GSTTaxGroupNotEqualTo; } public TX_MainQuery setGstTaxGroupNotEqualTo(Integer value) { this.GSTTaxGroupNotEqualTo = value; return this; } public ArrayList getGstTaxGroupBetween() { return GSTTaxGroupBetween; } public TX_MainQuery setGstTaxGroupBetween(ArrayList value) { this.GSTTaxGroupBetween = value; return this; } public ArrayList getGstTaxGroupIn() { return GSTTaxGroupIn; } public TX_MainQuery setGstTaxGroupIn(ArrayList value) { this.GSTTaxGroupIn = value; return this; } public Boolean isDefaultRateInGroup() { return DefaultRateInGroup; } public TX_MainQuery setDefaultRateInGroup(Boolean value) { this.DefaultRateInGroup = value; return this; } public Integer getBasCode() { return BASCode; } public TX_MainQuery setBasCode(Integer value) { this.BASCode = value; return this; } public Integer getBasCodeGreaterThanOrEqualTo() { return BASCodeGreaterThanOrEqualTo; } public TX_MainQuery setBasCodeGreaterThanOrEqualTo(Integer value) { this.BASCodeGreaterThanOrEqualTo = value; return this; } public Integer getBasCodeGreaterThan() { return BASCodeGreaterThan; } public TX_MainQuery setBasCodeGreaterThan(Integer value) { this.BASCodeGreaterThan = value; return this; } public Integer getBasCodeLessThan() { return BASCodeLessThan; } public TX_MainQuery setBasCodeLessThan(Integer value) { this.BASCodeLessThan = value; return this; } public Integer getBasCodeLessThanOrEqualTo() { return BASCodeLessThanOrEqualTo; } public TX_MainQuery setBasCodeLessThanOrEqualTo(Integer value) { this.BASCodeLessThanOrEqualTo = value; return this; } public Integer getBasCodeNotEqualTo() { return BASCodeNotEqualTo; } public TX_MainQuery setBasCodeNotEqualTo(Integer value) { this.BASCodeNotEqualTo = value; return this; } public ArrayList getBasCodeBetween() { return BASCodeBetween; } public TX_MainQuery setBasCodeBetween(ArrayList value) { this.BASCodeBetween = value; return this; } public ArrayList getBasCodeIn() { return BASCodeIn; } public TX_MainQuery setBasCodeIn(ArrayList value) { this.BASCodeIn = value; return this; } public Boolean isDisabled() { return Disabled; } public TX_MainQuery setDisabled(Boolean value) { this.Disabled = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class v_AllWarehousesQuery extends QueryDb implements IReturn> { public String Warehouse = null; public String WarehouseStartsWith = null; public String WarehouseEndsWith = null; public String WarehouseContains = null; public String WarehouseLike = null; public ArrayList WarehouseBetween = null; public ArrayList WarehouseIn = null; public String getWarehouse() { return Warehouse; } public v_AllWarehousesQuery setWarehouse(String value) { this.Warehouse = value; return this; } public String getWarehouseStartsWith() { return WarehouseStartsWith; } public v_AllWarehousesQuery setWarehouseStartsWith(String value) { this.WarehouseStartsWith = value; return this; } public String getWarehouseEndsWith() { return WarehouseEndsWith; } public v_AllWarehousesQuery setWarehouseEndsWith(String value) { this.WarehouseEndsWith = value; return this; } public String getWarehouseContains() { return WarehouseContains; } public v_AllWarehousesQuery setWarehouseContains(String value) { this.WarehouseContains = value; return this; } public String getWarehouseLike() { return WarehouseLike; } public v_AllWarehousesQuery setWarehouseLike(String value) { this.WarehouseLike = value; return this; } public ArrayList getWarehouseBetween() { return WarehouseBetween; } public v_AllWarehousesQuery setWarehouseBetween(ArrayList value) { this.WarehouseBetween = value; return this; } public ArrayList getWarehouseIn() { return WarehouseIn; } public v_AllWarehousesQuery setWarehouseIn(ArrayList value) { this.WarehouseIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class v_APIKeyQuery extends QueryDb implements IReturn> { public UUID RecID = null; public ArrayList RecIDIn = null; public String Name = null; public String NameStartsWith = null; public String NameEndsWith = null; public String NameContains = null; public String NameLike = null; public ArrayList NameBetween = null; public ArrayList NameIn = null; public String PrincipalID = null; public String PrincipalIDStartsWith = null; public String PrincipalIDEndsWith = null; public String PrincipalIDContains = null; public String PrincipalIDLike = null; public ArrayList PrincipalIDBetween = null; public ArrayList PrincipalIDIn = null; public String HR_Staff_StaffID = null; public String HR_Staff_StaffIDStartsWith = null; public String HR_Staff_StaffIDEndsWith = null; public String HR_Staff_StaffIDContains = null; public String HR_Staff_StaffIDLike = null; public ArrayList HR_Staff_StaffIDBetween = null; public ArrayList HR_Staff_StaffIDIn = null; public Date CreatedDateTime = null; public Date CreatedDateTimeGreaterThanOrEqualTo = null; public Date CreatedDateTimeGreaterThan = null; public Date CreatedDateTimeLessThan = null; public Date CreatedDateTimeLessThanOrEqualTo = null; public Date CreatedDateTimeNotEqualTo = null; public ArrayList CreatedDateTimeBetween = null; public ArrayList CreatedDateTimeIn = null; public Date ExpiryDateTime = null; public Date ExpiryDateTimeGreaterThanOrEqualTo = null; public Date ExpiryDateTimeGreaterThan = null; public Date ExpiryDateTimeLessThan = null; public Date ExpiryDateTimeLessThanOrEqualTo = null; public Date ExpiryDateTimeNotEqualTo = null; public ArrayList ExpiryDateTimeBetween = null; public ArrayList ExpiryDateTimeIn = null; public Date CancelledDateTime = null; public Date CancelledDateTimeGreaterThanOrEqualTo = null; public Date CancelledDateTimeGreaterThan = null; public Date CancelledDateTimeLessThan = null; public Date CancelledDateTimeLessThanOrEqualTo = null; public Date CancelledDateTimeNotEqualTo = null; public ArrayList CancelledDateTimeBetween = null; public ArrayList CancelledDateTimeIn = null; public Date LastSavedDateTime = null; public Date LastSavedDateTimeGreaterThanOrEqualTo = null; public Date LastSavedDateTimeGreaterThan = null; public Date LastSavedDateTimeLessThan = null; public Date LastSavedDateTimeLessThanOrEqualTo = null; public Date LastSavedDateTimeNotEqualTo = null; public ArrayList LastSavedDateTimeBetween = null; public ArrayList LastSavedDateTimeIn = null; public String KeyValue = null; public String KeyValueStartsWith = null; public String KeyValueEndsWith = null; public String KeyValueContains = null; public String KeyValueLike = null; public ArrayList KeyValueBetween = null; public ArrayList KeyValueIn = null; public Boolean IsEnabled = null; public Integer ItemNo = null; public Integer ItemNoGreaterThanOrEqualTo = null; public Integer ItemNoGreaterThan = null; public Integer ItemNoLessThan = null; public Integer ItemNoLessThanOrEqualTo = null; public Integer ItemNoNotEqualTo = null; public ArrayList ItemNoBetween = null; public ArrayList ItemNoIn = null; public String KeyType = null; public String KeyTypeStartsWith = null; public String KeyTypeEndsWith = null; public String KeyTypeContains = null; public String KeyTypeLike = null; public ArrayList KeyTypeBetween = null; public ArrayList KeyTypeIn = null; public UUID getRecID() { return RecID; } public v_APIKeyQuery setRecID(UUID value) { this.RecID = value; return this; } public ArrayList getRecIDIn() { return RecIDIn; } public v_APIKeyQuery setRecIDIn(ArrayList value) { this.RecIDIn = value; return this; } public String getName() { return Name; } public v_APIKeyQuery setName(String value) { this.Name = value; return this; } public String getNameStartsWith() { return NameStartsWith; } public v_APIKeyQuery setNameStartsWith(String value) { this.NameStartsWith = value; return this; } public String getNameEndsWith() { return NameEndsWith; } public v_APIKeyQuery setNameEndsWith(String value) { this.NameEndsWith = value; return this; } public String getNameContains() { return NameContains; } public v_APIKeyQuery setNameContains(String value) { this.NameContains = value; return this; } public String getNameLike() { return NameLike; } public v_APIKeyQuery setNameLike(String value) { this.NameLike = value; return this; } public ArrayList getNameBetween() { return NameBetween; } public v_APIKeyQuery setNameBetween(ArrayList value) { this.NameBetween = value; return this; } public ArrayList getNameIn() { return NameIn; } public v_APIKeyQuery setNameIn(ArrayList value) { this.NameIn = value; return this; } public String getPrincipalID() { return PrincipalID; } public v_APIKeyQuery setPrincipalID(String value) { this.PrincipalID = value; return this; } public String getPrincipalIDStartsWith() { return PrincipalIDStartsWith; } public v_APIKeyQuery setPrincipalIDStartsWith(String value) { this.PrincipalIDStartsWith = value; return this; } public String getPrincipalIDEndsWith() { return PrincipalIDEndsWith; } public v_APIKeyQuery setPrincipalIDEndsWith(String value) { this.PrincipalIDEndsWith = value; return this; } public String getPrincipalIDContains() { return PrincipalIDContains; } public v_APIKeyQuery setPrincipalIDContains(String value) { this.PrincipalIDContains = value; return this; } public String getPrincipalIDLike() { return PrincipalIDLike; } public v_APIKeyQuery setPrincipalIDLike(String value) { this.PrincipalIDLike = value; return this; } public ArrayList getPrincipalIDBetween() { return PrincipalIDBetween; } public v_APIKeyQuery setPrincipalIDBetween(ArrayList value) { this.PrincipalIDBetween = value; return this; } public ArrayList getPrincipalIDIn() { return PrincipalIDIn; } public v_APIKeyQuery setPrincipalIDIn(ArrayList value) { this.PrincipalIDIn = value; return this; } public String getHrStaffStaffID() { return HR_Staff_StaffID; } public v_APIKeyQuery setHrStaffStaffID(String value) { this.HR_Staff_StaffID = value; return this; } public String getHrStaffStaffIDStartsWith() { return HR_Staff_StaffIDStartsWith; } public v_APIKeyQuery setHrStaffStaffIDStartsWith(String value) { this.HR_Staff_StaffIDStartsWith = value; return this; } public String getHrStaffStaffIDEndsWith() { return HR_Staff_StaffIDEndsWith; } public v_APIKeyQuery setHrStaffStaffIDEndsWith(String value) { this.HR_Staff_StaffIDEndsWith = value; return this; } public String getHrStaffStaffIDContains() { return HR_Staff_StaffIDContains; } public v_APIKeyQuery setHrStaffStaffIDContains(String value) { this.HR_Staff_StaffIDContains = value; return this; } public String getHrStaffStaffIDLike() { return HR_Staff_StaffIDLike; } public v_APIKeyQuery setHrStaffStaffIDLike(String value) { this.HR_Staff_StaffIDLike = value; return this; } public ArrayList getHrStaffStaffIDBetween() { return HR_Staff_StaffIDBetween; } public v_APIKeyQuery setHrStaffStaffIDBetween(ArrayList value) { this.HR_Staff_StaffIDBetween = value; return this; } public ArrayList getHrStaffStaffIDIn() { return HR_Staff_StaffIDIn; } public v_APIKeyQuery setHrStaffStaffIDIn(ArrayList value) { this.HR_Staff_StaffIDIn = value; return this; } public Date getCreatedDateTime() { return CreatedDateTime; } public v_APIKeyQuery setCreatedDateTime(Date value) { this.CreatedDateTime = value; return this; } public Date getCreatedDateTimeGreaterThanOrEqualTo() { return CreatedDateTimeGreaterThanOrEqualTo; } public v_APIKeyQuery setCreatedDateTimeGreaterThanOrEqualTo(Date value) { this.CreatedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getCreatedDateTimeGreaterThan() { return CreatedDateTimeGreaterThan; } public v_APIKeyQuery setCreatedDateTimeGreaterThan(Date value) { this.CreatedDateTimeGreaterThan = value; return this; } public Date getCreatedDateTimeLessThan() { return CreatedDateTimeLessThan; } public v_APIKeyQuery setCreatedDateTimeLessThan(Date value) { this.CreatedDateTimeLessThan = value; return this; } public Date getCreatedDateTimeLessThanOrEqualTo() { return CreatedDateTimeLessThanOrEqualTo; } public v_APIKeyQuery setCreatedDateTimeLessThanOrEqualTo(Date value) { this.CreatedDateTimeLessThanOrEqualTo = value; return this; } public Date getCreatedDateTimeNotEqualTo() { return CreatedDateTimeNotEqualTo; } public v_APIKeyQuery setCreatedDateTimeNotEqualTo(Date value) { this.CreatedDateTimeNotEqualTo = value; return this; } public ArrayList getCreatedDateTimeBetween() { return CreatedDateTimeBetween; } public v_APIKeyQuery setCreatedDateTimeBetween(ArrayList value) { this.CreatedDateTimeBetween = value; return this; } public ArrayList getCreatedDateTimeIn() { return CreatedDateTimeIn; } public v_APIKeyQuery setCreatedDateTimeIn(ArrayList value) { this.CreatedDateTimeIn = value; return this; } public Date getExpiryDateTime() { return ExpiryDateTime; } public v_APIKeyQuery setExpiryDateTime(Date value) { this.ExpiryDateTime = value; return this; } public Date getExpiryDateTimeGreaterThanOrEqualTo() { return ExpiryDateTimeGreaterThanOrEqualTo; } public v_APIKeyQuery setExpiryDateTimeGreaterThanOrEqualTo(Date value) { this.ExpiryDateTimeGreaterThanOrEqualTo = value; return this; } public Date getExpiryDateTimeGreaterThan() { return ExpiryDateTimeGreaterThan; } public v_APIKeyQuery setExpiryDateTimeGreaterThan(Date value) { this.ExpiryDateTimeGreaterThan = value; return this; } public Date getExpiryDateTimeLessThan() { return ExpiryDateTimeLessThan; } public v_APIKeyQuery setExpiryDateTimeLessThan(Date value) { this.ExpiryDateTimeLessThan = value; return this; } public Date getExpiryDateTimeLessThanOrEqualTo() { return ExpiryDateTimeLessThanOrEqualTo; } public v_APIKeyQuery setExpiryDateTimeLessThanOrEqualTo(Date value) { this.ExpiryDateTimeLessThanOrEqualTo = value; return this; } public Date getExpiryDateTimeNotEqualTo() { return ExpiryDateTimeNotEqualTo; } public v_APIKeyQuery setExpiryDateTimeNotEqualTo(Date value) { this.ExpiryDateTimeNotEqualTo = value; return this; } public ArrayList getExpiryDateTimeBetween() { return ExpiryDateTimeBetween; } public v_APIKeyQuery setExpiryDateTimeBetween(ArrayList value) { this.ExpiryDateTimeBetween = value; return this; } public ArrayList getExpiryDateTimeIn() { return ExpiryDateTimeIn; } public v_APIKeyQuery setExpiryDateTimeIn(ArrayList value) { this.ExpiryDateTimeIn = value; return this; } public Date getCancelledDateTime() { return CancelledDateTime; } public v_APIKeyQuery setCancelledDateTime(Date value) { this.CancelledDateTime = value; return this; } public Date getCancelledDateTimeGreaterThanOrEqualTo() { return CancelledDateTimeGreaterThanOrEqualTo; } public v_APIKeyQuery setCancelledDateTimeGreaterThanOrEqualTo(Date value) { this.CancelledDateTimeGreaterThanOrEqualTo = value; return this; } public Date getCancelledDateTimeGreaterThan() { return CancelledDateTimeGreaterThan; } public v_APIKeyQuery setCancelledDateTimeGreaterThan(Date value) { this.CancelledDateTimeGreaterThan = value; return this; } public Date getCancelledDateTimeLessThan() { return CancelledDateTimeLessThan; } public v_APIKeyQuery setCancelledDateTimeLessThan(Date value) { this.CancelledDateTimeLessThan = value; return this; } public Date getCancelledDateTimeLessThanOrEqualTo() { return CancelledDateTimeLessThanOrEqualTo; } public v_APIKeyQuery setCancelledDateTimeLessThanOrEqualTo(Date value) { this.CancelledDateTimeLessThanOrEqualTo = value; return this; } public Date getCancelledDateTimeNotEqualTo() { return CancelledDateTimeNotEqualTo; } public v_APIKeyQuery setCancelledDateTimeNotEqualTo(Date value) { this.CancelledDateTimeNotEqualTo = value; return this; } public ArrayList getCancelledDateTimeBetween() { return CancelledDateTimeBetween; } public v_APIKeyQuery setCancelledDateTimeBetween(ArrayList value) { this.CancelledDateTimeBetween = value; return this; } public ArrayList getCancelledDateTimeIn() { return CancelledDateTimeIn; } public v_APIKeyQuery setCancelledDateTimeIn(ArrayList value) { this.CancelledDateTimeIn = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public v_APIKeyQuery setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getLastSavedDateTimeGreaterThanOrEqualTo() { return LastSavedDateTimeGreaterThanOrEqualTo; } public v_APIKeyQuery setLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.LastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeGreaterThan() { return LastSavedDateTimeGreaterThan; } public v_APIKeyQuery setLastSavedDateTimeGreaterThan(Date value) { this.LastSavedDateTimeGreaterThan = value; return this; } public Date getLastSavedDateTimeLessThan() { return LastSavedDateTimeLessThan; } public v_APIKeyQuery setLastSavedDateTimeLessThan(Date value) { this.LastSavedDateTimeLessThan = value; return this; } public Date getLastSavedDateTimeLessThanOrEqualTo() { return LastSavedDateTimeLessThanOrEqualTo; } public v_APIKeyQuery setLastSavedDateTimeLessThanOrEqualTo(Date value) { this.LastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeNotEqualTo() { return LastSavedDateTimeNotEqualTo; } public v_APIKeyQuery setLastSavedDateTimeNotEqualTo(Date value) { this.LastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getLastSavedDateTimeBetween() { return LastSavedDateTimeBetween; } public v_APIKeyQuery setLastSavedDateTimeBetween(ArrayList value) { this.LastSavedDateTimeBetween = value; return this; } public ArrayList getLastSavedDateTimeIn() { return LastSavedDateTimeIn; } public v_APIKeyQuery setLastSavedDateTimeIn(ArrayList value) { this.LastSavedDateTimeIn = value; return this; } public String getKeyValue() { return KeyValue; } public v_APIKeyQuery setKeyValue(String value) { this.KeyValue = value; return this; } public String getKeyValueStartsWith() { return KeyValueStartsWith; } public v_APIKeyQuery setKeyValueStartsWith(String value) { this.KeyValueStartsWith = value; return this; } public String getKeyValueEndsWith() { return KeyValueEndsWith; } public v_APIKeyQuery setKeyValueEndsWith(String value) { this.KeyValueEndsWith = value; return this; } public String getKeyValueContains() { return KeyValueContains; } public v_APIKeyQuery setKeyValueContains(String value) { this.KeyValueContains = value; return this; } public String getKeyValueLike() { return KeyValueLike; } public v_APIKeyQuery setKeyValueLike(String value) { this.KeyValueLike = value; return this; } public ArrayList getKeyValueBetween() { return KeyValueBetween; } public v_APIKeyQuery setKeyValueBetween(ArrayList value) { this.KeyValueBetween = value; return this; } public ArrayList getKeyValueIn() { return KeyValueIn; } public v_APIKeyQuery setKeyValueIn(ArrayList value) { this.KeyValueIn = value; return this; } public Boolean getIsEnabled() { return IsEnabled; } public v_APIKeyQuery setIsEnabled(Boolean value) { this.IsEnabled = value; return this; } public Integer getItemNo() { return ItemNo; } public v_APIKeyQuery setItemNo(Integer value) { this.ItemNo = value; return this; } public Integer getItemNoGreaterThanOrEqualTo() { return ItemNoGreaterThanOrEqualTo; } public v_APIKeyQuery setItemNoGreaterThanOrEqualTo(Integer value) { this.ItemNoGreaterThanOrEqualTo = value; return this; } public Integer getItemNoGreaterThan() { return ItemNoGreaterThan; } public v_APIKeyQuery setItemNoGreaterThan(Integer value) { this.ItemNoGreaterThan = value; return this; } public Integer getItemNoLessThan() { return ItemNoLessThan; } public v_APIKeyQuery setItemNoLessThan(Integer value) { this.ItemNoLessThan = value; return this; } public Integer getItemNoLessThanOrEqualTo() { return ItemNoLessThanOrEqualTo; } public v_APIKeyQuery setItemNoLessThanOrEqualTo(Integer value) { this.ItemNoLessThanOrEqualTo = value; return this; } public Integer getItemNoNotEqualTo() { return ItemNoNotEqualTo; } public v_APIKeyQuery setItemNoNotEqualTo(Integer value) { this.ItemNoNotEqualTo = value; return this; } public ArrayList getItemNoBetween() { return ItemNoBetween; } public v_APIKeyQuery setItemNoBetween(ArrayList value) { this.ItemNoBetween = value; return this; } public ArrayList getItemNoIn() { return ItemNoIn; } public v_APIKeyQuery setItemNoIn(ArrayList value) { this.ItemNoIn = value; return this; } public String getKeyType() { return KeyType; } public v_APIKeyQuery setKeyType(String value) { this.KeyType = value; return this; } public String getKeyTypeStartsWith() { return KeyTypeStartsWith; } public v_APIKeyQuery setKeyTypeStartsWith(String value) { this.KeyTypeStartsWith = value; return this; } public String getKeyTypeEndsWith() { return KeyTypeEndsWith; } public v_APIKeyQuery setKeyTypeEndsWith(String value) { this.KeyTypeEndsWith = value; return this; } public String getKeyTypeContains() { return KeyTypeContains; } public v_APIKeyQuery setKeyTypeContains(String value) { this.KeyTypeContains = value; return this; } public String getKeyTypeLike() { return KeyTypeLike; } public v_APIKeyQuery setKeyTypeLike(String value) { this.KeyTypeLike = value; return this; } public ArrayList getKeyTypeBetween() { return KeyTypeBetween; } public v_APIKeyQuery setKeyTypeBetween(ArrayList value) { this.KeyTypeBetween = value; return this; } public ArrayList getKeyTypeIn() { return KeyTypeIn; } public v_APIKeyQuery setKeyTypeIn(ArrayList value) { this.KeyTypeIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class V_BASCodeNumQuery extends QueryDb implements IReturn> { public String transcode3id = null; public String transcode3idStartsWith = null; public String transcode3idEndsWith = null; public String transcode3idContains = null; public String transcode3idLike = null; public ArrayList transcode3idBetween = null; public ArrayList transcode3idIn = null; public String Description = null; public String DescriptionStartsWith = null; public String DescriptionEndsWith = null; public String DescriptionContains = null; public String DescriptionLike = null; public ArrayList DescriptionBetween = null; public ArrayList DescriptionIn = null; public String getTranscode3id() { return transcode3id; } public V_BASCodeNumQuery setTranscode3id(String value) { this.transcode3id = value; return this; } public String getTranscode3idStartsWith() { return transcode3idStartsWith; } public V_BASCodeNumQuery setTranscode3idStartsWith(String value) { this.transcode3idStartsWith = value; return this; } public String getTranscode3idEndsWith() { return transcode3idEndsWith; } public V_BASCodeNumQuery setTranscode3idEndsWith(String value) { this.transcode3idEndsWith = value; return this; } public String getTranscode3idContains() { return transcode3idContains; } public V_BASCodeNumQuery setTranscode3idContains(String value) { this.transcode3idContains = value; return this; } public String getTranscode3idLike() { return transcode3idLike; } public V_BASCodeNumQuery setTranscode3idLike(String value) { this.transcode3idLike = value; return this; } public ArrayList getTranscode3idBetween() { return transcode3idBetween; } public V_BASCodeNumQuery setTranscode3idBetween(ArrayList value) { this.transcode3idBetween = value; return this; } public ArrayList getTranscode3idIn() { return transcode3idIn; } public V_BASCodeNumQuery setTranscode3idIn(ArrayList value) { this.transcode3idIn = value; return this; } public String getDescription() { return Description; } public V_BASCodeNumQuery setDescription(String value) { this.Description = value; return this; } public String getDescriptionStartsWith() { return DescriptionStartsWith; } public V_BASCodeNumQuery setDescriptionStartsWith(String value) { this.DescriptionStartsWith = value; return this; } public String getDescriptionEndsWith() { return DescriptionEndsWith; } public V_BASCodeNumQuery setDescriptionEndsWith(String value) { this.DescriptionEndsWith = value; return this; } public String getDescriptionContains() { return DescriptionContains; } public V_BASCodeNumQuery setDescriptionContains(String value) { this.DescriptionContains = value; return this; } public String getDescriptionLike() { return DescriptionLike; } public V_BASCodeNumQuery setDescriptionLike(String value) { this.DescriptionLike = value; return this; } public ArrayList getDescriptionBetween() { return DescriptionBetween; } public V_BASCodeNumQuery setDescriptionBetween(ArrayList value) { this.DescriptionBetween = value; return this; } public ArrayList getDescriptionIn() { return DescriptionIn; } public V_BASCodeNumQuery setDescriptionIn(ArrayList value) { this.DescriptionIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class V_BOMSoldQuery extends QueryDb implements IReturn> { public String SourceID = null; public String SourceIDStartsWith = null; public String SourceIDEndsWith = null; public String SourceIDContains = null; public String SourceIDLike = null; public ArrayList SourceIDBetween = null; public ArrayList SourceIDIn = null; public BigDecimal BOM_QuantitySold = null; public BigDecimal BOM_QuantitySoldGreaterThanOrEqualTo = null; public BigDecimal BOM_QuantitySoldGreaterThan = null; public BigDecimal BOM_QuantitySoldLessThan = null; public BigDecimal BOM_QuantitySoldLessThanOrEqualTo = null; public BigDecimal BOM_QuantitySoldNotEqualTo = null; public ArrayList BOM_QuantitySoldBetween = null; public ArrayList BOM_QuantitySoldIn = null; public String getSourceID() { return SourceID; } public V_BOMSoldQuery setSourceID(String value) { this.SourceID = value; return this; } public String getSourceIDStartsWith() { return SourceIDStartsWith; } public V_BOMSoldQuery setSourceIDStartsWith(String value) { this.SourceIDStartsWith = value; return this; } public String getSourceIDEndsWith() { return SourceIDEndsWith; } public V_BOMSoldQuery setSourceIDEndsWith(String value) { this.SourceIDEndsWith = value; return this; } public String getSourceIDContains() { return SourceIDContains; } public V_BOMSoldQuery setSourceIDContains(String value) { this.SourceIDContains = value; return this; } public String getSourceIDLike() { return SourceIDLike; } public V_BOMSoldQuery setSourceIDLike(String value) { this.SourceIDLike = value; return this; } public ArrayList getSourceIDBetween() { return SourceIDBetween; } public V_BOMSoldQuery setSourceIDBetween(ArrayList value) { this.SourceIDBetween = value; return this; } public ArrayList getSourceIDIn() { return SourceIDIn; } public V_BOMSoldQuery setSourceIDIn(ArrayList value) { this.SourceIDIn = value; return this; } public BigDecimal getBomQuantitySold() { return BOM_QuantitySold; } public V_BOMSoldQuery setBomQuantitySold(BigDecimal value) { this.BOM_QuantitySold = value; return this; } public BigDecimal getBomQuantitySoldGreaterThanOrEqualTo() { return BOM_QuantitySoldGreaterThanOrEqualTo; } public V_BOMSoldQuery setBomQuantitySoldGreaterThanOrEqualTo(BigDecimal value) { this.BOM_QuantitySoldGreaterThanOrEqualTo = value; return this; } public BigDecimal getBomQuantitySoldGreaterThan() { return BOM_QuantitySoldGreaterThan; } public V_BOMSoldQuery setBomQuantitySoldGreaterThan(BigDecimal value) { this.BOM_QuantitySoldGreaterThan = value; return this; } public BigDecimal getBomQuantitySoldLessThan() { return BOM_QuantitySoldLessThan; } public V_BOMSoldQuery setBomQuantitySoldLessThan(BigDecimal value) { this.BOM_QuantitySoldLessThan = value; return this; } public BigDecimal getBomQuantitySoldLessThanOrEqualTo() { return BOM_QuantitySoldLessThanOrEqualTo; } public V_BOMSoldQuery setBomQuantitySoldLessThanOrEqualTo(BigDecimal value) { this.BOM_QuantitySoldLessThanOrEqualTo = value; return this; } public BigDecimal getBomQuantitySoldNotEqualTo() { return BOM_QuantitySoldNotEqualTo; } public V_BOMSoldQuery setBomQuantitySoldNotEqualTo(BigDecimal value) { this.BOM_QuantitySoldNotEqualTo = value; return this; } public ArrayList getBomQuantitySoldBetween() { return BOM_QuantitySoldBetween; } public V_BOMSoldQuery setBomQuantitySoldBetween(ArrayList value) { this.BOM_QuantitySoldBetween = value; return this; } public ArrayList getBomQuantitySoldIn() { return BOM_QuantitySoldIn; } public V_BOMSoldQuery setBomQuantitySoldIn(ArrayList value) { this.BOM_QuantitySoldIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class V_CR_AgedTransQuery extends QueryDb implements IReturn> { public String TransID = null; public String TransIDStartsWith = null; public String TransIDEndsWith = null; public String TransIDContains = null; public String TransIDLike = null; public ArrayList TransIDBetween = null; public ArrayList TransIDIn = null; public String CreditorID = null; public String CreditorIDStartsWith = null; public String CreditorIDEndsWith = null; public String CreditorIDContains = null; public String CreditorIDLike = null; public ArrayList CreditorIDBetween = null; public ArrayList CreditorIDIn = null; public Boolean DebitCredit = null; public String Ref = null; public String RefStartsWith = null; public String RefEndsWith = null; public String RefContains = null; public String RefLike = null; public ArrayList RefBetween = null; public ArrayList RefIn = null; public String Remark = null; public String RemarkStartsWith = null; public String RemarkEndsWith = null; public String RemarkContains = null; public String RemarkLike = null; public ArrayList RemarkBetween = null; public ArrayList RemarkIn = null; public Date TranDate = null; public Date TranDateGreaterThanOrEqualTo = null; public Date TranDateGreaterThan = null; public Date TranDateLessThan = null; public Date TranDateLessThanOrEqualTo = null; public Date TranDateNotEqualTo = null; public ArrayList TranDateBetween = null; public ArrayList TranDateIn = null; public String InvRemitNo = null; public String InvRemitNoStartsWith = null; public String InvRemitNoEndsWith = null; public String InvRemitNoContains = null; public String InvRemitNoLike = null; public ArrayList InvRemitNoBetween = null; public ArrayList InvRemitNoIn = null; public BigDecimal AllocatedAmount = null; public BigDecimal AllocatedAmountGreaterThanOrEqualTo = null; public BigDecimal AllocatedAmountGreaterThan = null; public BigDecimal AllocatedAmountLessThan = null; public BigDecimal AllocatedAmountLessThanOrEqualTo = null; public BigDecimal AllocatedAmountNotEqualTo = null; public ArrayList AllocatedAmountBetween = null; public ArrayList AllocatedAmountIn = null; public String Source = null; public String SourceStartsWith = null; public String SourceEndsWith = null; public String SourceContains = null; public String SourceLike = null; public ArrayList SourceBetween = null; public ArrayList SourceIn = null; public BigDecimal Amount = null; public BigDecimal AmountGreaterThanOrEqualTo = null; public BigDecimal AmountGreaterThan = null; public BigDecimal AmountLessThan = null; public BigDecimal AmountLessThanOrEqualTo = null; public BigDecimal AmountNotEqualTo = null; public ArrayList AmountBetween = null; public ArrayList AmountIn = null; public String getTransID() { return TransID; } public V_CR_AgedTransQuery setTransID(String value) { this.TransID = value; return this; } public String getTransIDStartsWith() { return TransIDStartsWith; } public V_CR_AgedTransQuery setTransIDStartsWith(String value) { this.TransIDStartsWith = value; return this; } public String getTransIDEndsWith() { return TransIDEndsWith; } public V_CR_AgedTransQuery setTransIDEndsWith(String value) { this.TransIDEndsWith = value; return this; } public String getTransIDContains() { return TransIDContains; } public V_CR_AgedTransQuery setTransIDContains(String value) { this.TransIDContains = value; return this; } public String getTransIDLike() { return TransIDLike; } public V_CR_AgedTransQuery setTransIDLike(String value) { this.TransIDLike = value; return this; } public ArrayList getTransIDBetween() { return TransIDBetween; } public V_CR_AgedTransQuery setTransIDBetween(ArrayList value) { this.TransIDBetween = value; return this; } public ArrayList getTransIDIn() { return TransIDIn; } public V_CR_AgedTransQuery setTransIDIn(ArrayList value) { this.TransIDIn = value; return this; } public String getCreditorID() { return CreditorID; } public V_CR_AgedTransQuery setCreditorID(String value) { this.CreditorID = value; return this; } public String getCreditorIDStartsWith() { return CreditorIDStartsWith; } public V_CR_AgedTransQuery setCreditorIDStartsWith(String value) { this.CreditorIDStartsWith = value; return this; } public String getCreditorIDEndsWith() { return CreditorIDEndsWith; } public V_CR_AgedTransQuery setCreditorIDEndsWith(String value) { this.CreditorIDEndsWith = value; return this; } public String getCreditorIDContains() { return CreditorIDContains; } public V_CR_AgedTransQuery setCreditorIDContains(String value) { this.CreditorIDContains = value; return this; } public String getCreditorIDLike() { return CreditorIDLike; } public V_CR_AgedTransQuery setCreditorIDLike(String value) { this.CreditorIDLike = value; return this; } public ArrayList getCreditorIDBetween() { return CreditorIDBetween; } public V_CR_AgedTransQuery setCreditorIDBetween(ArrayList value) { this.CreditorIDBetween = value; return this; } public ArrayList getCreditorIDIn() { return CreditorIDIn; } public V_CR_AgedTransQuery setCreditorIDIn(ArrayList value) { this.CreditorIDIn = value; return this; } public Boolean isDebitCredit() { return DebitCredit; } public V_CR_AgedTransQuery setDebitCredit(Boolean value) { this.DebitCredit = value; return this; } public String getRef() { return Ref; } public V_CR_AgedTransQuery setRef(String value) { this.Ref = value; return this; } public String getRefStartsWith() { return RefStartsWith; } public V_CR_AgedTransQuery setRefStartsWith(String value) { this.RefStartsWith = value; return this; } public String getRefEndsWith() { return RefEndsWith; } public V_CR_AgedTransQuery setRefEndsWith(String value) { this.RefEndsWith = value; return this; } public String getRefContains() { return RefContains; } public V_CR_AgedTransQuery setRefContains(String value) { this.RefContains = value; return this; } public String getRefLike() { return RefLike; } public V_CR_AgedTransQuery setRefLike(String value) { this.RefLike = value; return this; } public ArrayList getRefBetween() { return RefBetween; } public V_CR_AgedTransQuery setRefBetween(ArrayList value) { this.RefBetween = value; return this; } public ArrayList getRefIn() { return RefIn; } public V_CR_AgedTransQuery setRefIn(ArrayList value) { this.RefIn = value; return this; } public String getRemark() { return Remark; } public V_CR_AgedTransQuery setRemark(String value) { this.Remark = value; return this; } public String getRemarkStartsWith() { return RemarkStartsWith; } public V_CR_AgedTransQuery setRemarkStartsWith(String value) { this.RemarkStartsWith = value; return this; } public String getRemarkEndsWith() { return RemarkEndsWith; } public V_CR_AgedTransQuery setRemarkEndsWith(String value) { this.RemarkEndsWith = value; return this; } public String getRemarkContains() { return RemarkContains; } public V_CR_AgedTransQuery setRemarkContains(String value) { this.RemarkContains = value; return this; } public String getRemarkLike() { return RemarkLike; } public V_CR_AgedTransQuery setRemarkLike(String value) { this.RemarkLike = value; return this; } public ArrayList getRemarkBetween() { return RemarkBetween; } public V_CR_AgedTransQuery setRemarkBetween(ArrayList value) { this.RemarkBetween = value; return this; } public ArrayList getRemarkIn() { return RemarkIn; } public V_CR_AgedTransQuery setRemarkIn(ArrayList value) { this.RemarkIn = value; return this; } public Date getTranDate() { return TranDate; } public V_CR_AgedTransQuery setTranDate(Date value) { this.TranDate = value; return this; } public Date getTranDateGreaterThanOrEqualTo() { return TranDateGreaterThanOrEqualTo; } public V_CR_AgedTransQuery setTranDateGreaterThanOrEqualTo(Date value) { this.TranDateGreaterThanOrEqualTo = value; return this; } public Date getTranDateGreaterThan() { return TranDateGreaterThan; } public V_CR_AgedTransQuery setTranDateGreaterThan(Date value) { this.TranDateGreaterThan = value; return this; } public Date getTranDateLessThan() { return TranDateLessThan; } public V_CR_AgedTransQuery setTranDateLessThan(Date value) { this.TranDateLessThan = value; return this; } public Date getTranDateLessThanOrEqualTo() { return TranDateLessThanOrEqualTo; } public V_CR_AgedTransQuery setTranDateLessThanOrEqualTo(Date value) { this.TranDateLessThanOrEqualTo = value; return this; } public Date getTranDateNotEqualTo() { return TranDateNotEqualTo; } public V_CR_AgedTransQuery setTranDateNotEqualTo(Date value) { this.TranDateNotEqualTo = value; return this; } public ArrayList getTranDateBetween() { return TranDateBetween; } public V_CR_AgedTransQuery setTranDateBetween(ArrayList value) { this.TranDateBetween = value; return this; } public ArrayList getTranDateIn() { return TranDateIn; } public V_CR_AgedTransQuery setTranDateIn(ArrayList value) { this.TranDateIn = value; return this; } public String getInvRemitNo() { return InvRemitNo; } public V_CR_AgedTransQuery setInvRemitNo(String value) { this.InvRemitNo = value; return this; } public String getInvRemitNoStartsWith() { return InvRemitNoStartsWith; } public V_CR_AgedTransQuery setInvRemitNoStartsWith(String value) { this.InvRemitNoStartsWith = value; return this; } public String getInvRemitNoEndsWith() { return InvRemitNoEndsWith; } public V_CR_AgedTransQuery setInvRemitNoEndsWith(String value) { this.InvRemitNoEndsWith = value; return this; } public String getInvRemitNoContains() { return InvRemitNoContains; } public V_CR_AgedTransQuery setInvRemitNoContains(String value) { this.InvRemitNoContains = value; return this; } public String getInvRemitNoLike() { return InvRemitNoLike; } public V_CR_AgedTransQuery setInvRemitNoLike(String value) { this.InvRemitNoLike = value; return this; } public ArrayList getInvRemitNoBetween() { return InvRemitNoBetween; } public V_CR_AgedTransQuery setInvRemitNoBetween(ArrayList value) { this.InvRemitNoBetween = value; return this; } public ArrayList getInvRemitNoIn() { return InvRemitNoIn; } public V_CR_AgedTransQuery setInvRemitNoIn(ArrayList value) { this.InvRemitNoIn = value; return this; } public BigDecimal getAllocatedAmount() { return AllocatedAmount; } public V_CR_AgedTransQuery setAllocatedAmount(BigDecimal value) { this.AllocatedAmount = value; return this; } public BigDecimal getAllocatedAmountGreaterThanOrEqualTo() { return AllocatedAmountGreaterThanOrEqualTo; } public V_CR_AgedTransQuery setAllocatedAmountGreaterThanOrEqualTo(BigDecimal value) { this.AllocatedAmountGreaterThanOrEqualTo = value; return this; } public BigDecimal getAllocatedAmountGreaterThan() { return AllocatedAmountGreaterThan; } public V_CR_AgedTransQuery setAllocatedAmountGreaterThan(BigDecimal value) { this.AllocatedAmountGreaterThan = value; return this; } public BigDecimal getAllocatedAmountLessThan() { return AllocatedAmountLessThan; } public V_CR_AgedTransQuery setAllocatedAmountLessThan(BigDecimal value) { this.AllocatedAmountLessThan = value; return this; } public BigDecimal getAllocatedAmountLessThanOrEqualTo() { return AllocatedAmountLessThanOrEqualTo; } public V_CR_AgedTransQuery setAllocatedAmountLessThanOrEqualTo(BigDecimal value) { this.AllocatedAmountLessThanOrEqualTo = value; return this; } public BigDecimal getAllocatedAmountNotEqualTo() { return AllocatedAmountNotEqualTo; } public V_CR_AgedTransQuery setAllocatedAmountNotEqualTo(BigDecimal value) { this.AllocatedAmountNotEqualTo = value; return this; } public ArrayList getAllocatedAmountBetween() { return AllocatedAmountBetween; } public V_CR_AgedTransQuery setAllocatedAmountBetween(ArrayList value) { this.AllocatedAmountBetween = value; return this; } public ArrayList getAllocatedAmountIn() { return AllocatedAmountIn; } public V_CR_AgedTransQuery setAllocatedAmountIn(ArrayList value) { this.AllocatedAmountIn = value; return this; } public String getSource() { return Source; } public V_CR_AgedTransQuery setSource(String value) { this.Source = value; return this; } public String getSourceStartsWith() { return SourceStartsWith; } public V_CR_AgedTransQuery setSourceStartsWith(String value) { this.SourceStartsWith = value; return this; } public String getSourceEndsWith() { return SourceEndsWith; } public V_CR_AgedTransQuery setSourceEndsWith(String value) { this.SourceEndsWith = value; return this; } public String getSourceContains() { return SourceContains; } public V_CR_AgedTransQuery setSourceContains(String value) { this.SourceContains = value; return this; } public String getSourceLike() { return SourceLike; } public V_CR_AgedTransQuery setSourceLike(String value) { this.SourceLike = value; return this; } public ArrayList getSourceBetween() { return SourceBetween; } public V_CR_AgedTransQuery setSourceBetween(ArrayList value) { this.SourceBetween = value; return this; } public ArrayList getSourceIn() { return SourceIn; } public V_CR_AgedTransQuery setSourceIn(ArrayList value) { this.SourceIn = value; return this; } public BigDecimal getAmount() { return Amount; } public V_CR_AgedTransQuery setAmount(BigDecimal value) { this.Amount = value; return this; } public BigDecimal getAmountGreaterThanOrEqualTo() { return AmountGreaterThanOrEqualTo; } public V_CR_AgedTransQuery setAmountGreaterThanOrEqualTo(BigDecimal value) { this.AmountGreaterThanOrEqualTo = value; return this; } public BigDecimal getAmountGreaterThan() { return AmountGreaterThan; } public V_CR_AgedTransQuery setAmountGreaterThan(BigDecimal value) { this.AmountGreaterThan = value; return this; } public BigDecimal getAmountLessThan() { return AmountLessThan; } public V_CR_AgedTransQuery setAmountLessThan(BigDecimal value) { this.AmountLessThan = value; return this; } public BigDecimal getAmountLessThanOrEqualTo() { return AmountLessThanOrEqualTo; } public V_CR_AgedTransQuery setAmountLessThanOrEqualTo(BigDecimal value) { this.AmountLessThanOrEqualTo = value; return this; } public BigDecimal getAmountNotEqualTo() { return AmountNotEqualTo; } public V_CR_AgedTransQuery setAmountNotEqualTo(BigDecimal value) { this.AmountNotEqualTo = value; return this; } public ArrayList getAmountBetween() { return AmountBetween; } public V_CR_AgedTransQuery setAmountBetween(ArrayList value) { this.AmountBetween = value; return this; } public ArrayList getAmountIn() { return AmountIn; } public V_CR_AgedTransQuery setAmountIn(ArrayList value) { this.AmountIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class V_CR_PurchaseShipmentsQuery extends QueryDb implements IReturn> { public String CreditorID = null; public String CreditorIDStartsWith = null; public String CreditorIDEndsWith = null; public String CreditorIDContains = null; public String CreditorIDLike = null; public ArrayList CreditorIDBetween = null; public ArrayList CreditorIDIn = null; public String Type = null; public String TypeStartsWith = null; public String TypeEndsWith = null; public String TypeContains = null; public String TypeLike = null; public ArrayList TypeBetween = null; public ArrayList TypeIn = null; public Date TranDate = null; public Date TranDateGreaterThanOrEqualTo = null; public Date TranDateGreaterThan = null; public Date TranDateLessThan = null; public Date TranDateLessThanOrEqualTo = null; public Date TranDateNotEqualTo = null; public ArrayList TranDateBetween = null; public ArrayList TranDateIn = null; public Date DueDate = null; public Date DueDateGreaterThanOrEqualTo = null; public Date DueDateGreaterThan = null; public Date DueDateLessThan = null; public Date DueDateLessThanOrEqualTo = null; public Date DueDateNotEqualTo = null; public ArrayList DueDateBetween = null; public ArrayList DueDateIn = null; public String InvoiceNo = null; public String InvoiceNoStartsWith = null; public String InvoiceNoEndsWith = null; public String InvoiceNoContains = null; public String InvoiceNoLike = null; public ArrayList InvoiceNoBetween = null; public ArrayList InvoiceNoIn = null; public String PartNo = null; public String PartNoStartsWith = null; public String PartNoEndsWith = null; public String PartNoContains = null; public String PartNoLike = null; public ArrayList PartNoBetween = null; public ArrayList PartNoIn = null; public String PartDescription = null; public String PartDescriptionStartsWith = null; public String PartDescriptionEndsWith = null; public String PartDescriptionContains = null; public String PartDescriptionLike = null; public ArrayList PartDescriptionBetween = null; public ArrayList PartDescriptionIn = null; public BigDecimal Quantity = null; public BigDecimal QuantityGreaterThanOrEqualTo = null; public BigDecimal QuantityGreaterThan = null; public BigDecimal QuantityLessThan = null; public BigDecimal QuantityLessThanOrEqualTo = null; public BigDecimal QuantityNotEqualTo = null; public ArrayList QuantityBetween = null; public ArrayList QuantityIn = null; public BigDecimal UnitCost = null; public BigDecimal UnitCostGreaterThanOrEqualTo = null; public BigDecimal UnitCostGreaterThan = null; public BigDecimal UnitCostLessThan = null; public BigDecimal UnitCostLessThanOrEqualTo = null; public BigDecimal UnitCostNotEqualTo = null; public ArrayList UnitCostBetween = null; public ArrayList UnitCostIn = null; public BigDecimal TotalCost = null; public BigDecimal TotalCostGreaterThanOrEqualTo = null; public BigDecimal TotalCostGreaterThan = null; public BigDecimal TotalCostLessThan = null; public BigDecimal TotalCostLessThanOrEqualTo = null; public BigDecimal TotalCostNotEqualTo = null; public ArrayList TotalCostBetween = null; public ArrayList TotalCostIn = null; public BigDecimal TaxAmount = null; public BigDecimal TaxAmountGreaterThanOrEqualTo = null; public BigDecimal TaxAmountGreaterThan = null; public BigDecimal TaxAmountLessThan = null; public BigDecimal TaxAmountLessThanOrEqualTo = null; public BigDecimal TaxAmountNotEqualTo = null; public ArrayList TaxAmountBetween = null; public ArrayList TaxAmountIn = null; public BigDecimal IncTotal = null; public BigDecimal IncTotalGreaterThanOrEqualTo = null; public BigDecimal IncTotalGreaterThan = null; public BigDecimal IncTotalLessThan = null; public BigDecimal IncTotalLessThanOrEqualTo = null; public BigDecimal IncTotalNotEqualTo = null; public ArrayList IncTotalBetween = null; public ArrayList IncTotalIn = null; public BigDecimal CurrencyRate = null; public BigDecimal CurrencyRateGreaterThanOrEqualTo = null; public BigDecimal CurrencyRateGreaterThan = null; public BigDecimal CurrencyRateLessThan = null; public BigDecimal CurrencyRateLessThanOrEqualTo = null; public BigDecimal CurrencyRateNotEqualTo = null; public ArrayList CurrencyRateBetween = null; public ArrayList CurrencyRateIn = null; public BigDecimal FxUnitCost = null; public BigDecimal FxUnitCostGreaterThanOrEqualTo = null; public BigDecimal FxUnitCostGreaterThan = null; public BigDecimal FxUnitCostLessThan = null; public BigDecimal FxUnitCostLessThanOrEqualTo = null; public BigDecimal FxUnitCostNotEqualTo = null; public ArrayList FxUnitCostBetween = null; public ArrayList FxUnitCostIn = null; public BigDecimal FxTotalCost = null; public BigDecimal FxTotalCostGreaterThanOrEqualTo = null; public BigDecimal FxTotalCostGreaterThan = null; public BigDecimal FxTotalCostLessThan = null; public BigDecimal FxTotalCostLessThanOrEqualTo = null; public BigDecimal FxTotalCostNotEqualTo = null; public ArrayList FxTotalCostBetween = null; public ArrayList FxTotalCostIn = null; public String getCreditorID() { return CreditorID; } public V_CR_PurchaseShipmentsQuery setCreditorID(String value) { this.CreditorID = value; return this; } public String getCreditorIDStartsWith() { return CreditorIDStartsWith; } public V_CR_PurchaseShipmentsQuery setCreditorIDStartsWith(String value) { this.CreditorIDStartsWith = value; return this; } public String getCreditorIDEndsWith() { return CreditorIDEndsWith; } public V_CR_PurchaseShipmentsQuery setCreditorIDEndsWith(String value) { this.CreditorIDEndsWith = value; return this; } public String getCreditorIDContains() { return CreditorIDContains; } public V_CR_PurchaseShipmentsQuery setCreditorIDContains(String value) { this.CreditorIDContains = value; return this; } public String getCreditorIDLike() { return CreditorIDLike; } public V_CR_PurchaseShipmentsQuery setCreditorIDLike(String value) { this.CreditorIDLike = value; return this; } public ArrayList getCreditorIDBetween() { return CreditorIDBetween; } public V_CR_PurchaseShipmentsQuery setCreditorIDBetween(ArrayList value) { this.CreditorIDBetween = value; return this; } public ArrayList getCreditorIDIn() { return CreditorIDIn; } public V_CR_PurchaseShipmentsQuery setCreditorIDIn(ArrayList value) { this.CreditorIDIn = value; return this; } public String getType() { return Type; } public V_CR_PurchaseShipmentsQuery setType(String value) { this.Type = value; return this; } public String getTypeStartsWith() { return TypeStartsWith; } public V_CR_PurchaseShipmentsQuery setTypeStartsWith(String value) { this.TypeStartsWith = value; return this; } public String getTypeEndsWith() { return TypeEndsWith; } public V_CR_PurchaseShipmentsQuery setTypeEndsWith(String value) { this.TypeEndsWith = value; return this; } public String getTypeContains() { return TypeContains; } public V_CR_PurchaseShipmentsQuery setTypeContains(String value) { this.TypeContains = value; return this; } public String getTypeLike() { return TypeLike; } public V_CR_PurchaseShipmentsQuery setTypeLike(String value) { this.TypeLike = value; return this; } public ArrayList getTypeBetween() { return TypeBetween; } public V_CR_PurchaseShipmentsQuery setTypeBetween(ArrayList value) { this.TypeBetween = value; return this; } public ArrayList getTypeIn() { return TypeIn; } public V_CR_PurchaseShipmentsQuery setTypeIn(ArrayList value) { this.TypeIn = value; return this; } public Date getTranDate() { return TranDate; } public V_CR_PurchaseShipmentsQuery setTranDate(Date value) { this.TranDate = value; return this; } public Date getTranDateGreaterThanOrEqualTo() { return TranDateGreaterThanOrEqualTo; } public V_CR_PurchaseShipmentsQuery setTranDateGreaterThanOrEqualTo(Date value) { this.TranDateGreaterThanOrEqualTo = value; return this; } public Date getTranDateGreaterThan() { return TranDateGreaterThan; } public V_CR_PurchaseShipmentsQuery setTranDateGreaterThan(Date value) { this.TranDateGreaterThan = value; return this; } public Date getTranDateLessThan() { return TranDateLessThan; } public V_CR_PurchaseShipmentsQuery setTranDateLessThan(Date value) { this.TranDateLessThan = value; return this; } public Date getTranDateLessThanOrEqualTo() { return TranDateLessThanOrEqualTo; } public V_CR_PurchaseShipmentsQuery setTranDateLessThanOrEqualTo(Date value) { this.TranDateLessThanOrEqualTo = value; return this; } public Date getTranDateNotEqualTo() { return TranDateNotEqualTo; } public V_CR_PurchaseShipmentsQuery setTranDateNotEqualTo(Date value) { this.TranDateNotEqualTo = value; return this; } public ArrayList getTranDateBetween() { return TranDateBetween; } public V_CR_PurchaseShipmentsQuery setTranDateBetween(ArrayList value) { this.TranDateBetween = value; return this; } public ArrayList getTranDateIn() { return TranDateIn; } public V_CR_PurchaseShipmentsQuery setTranDateIn(ArrayList value) { this.TranDateIn = value; return this; } public Date getDueDate() { return DueDate; } public V_CR_PurchaseShipmentsQuery setDueDate(Date value) { this.DueDate = value; return this; } public Date getDueDateGreaterThanOrEqualTo() { return DueDateGreaterThanOrEqualTo; } public V_CR_PurchaseShipmentsQuery setDueDateGreaterThanOrEqualTo(Date value) { this.DueDateGreaterThanOrEqualTo = value; return this; } public Date getDueDateGreaterThan() { return DueDateGreaterThan; } public V_CR_PurchaseShipmentsQuery setDueDateGreaterThan(Date value) { this.DueDateGreaterThan = value; return this; } public Date getDueDateLessThan() { return DueDateLessThan; } public V_CR_PurchaseShipmentsQuery setDueDateLessThan(Date value) { this.DueDateLessThan = value; return this; } public Date getDueDateLessThanOrEqualTo() { return DueDateLessThanOrEqualTo; } public V_CR_PurchaseShipmentsQuery setDueDateLessThanOrEqualTo(Date value) { this.DueDateLessThanOrEqualTo = value; return this; } public Date getDueDateNotEqualTo() { return DueDateNotEqualTo; } public V_CR_PurchaseShipmentsQuery setDueDateNotEqualTo(Date value) { this.DueDateNotEqualTo = value; return this; } public ArrayList getDueDateBetween() { return DueDateBetween; } public V_CR_PurchaseShipmentsQuery setDueDateBetween(ArrayList value) { this.DueDateBetween = value; return this; } public ArrayList getDueDateIn() { return DueDateIn; } public V_CR_PurchaseShipmentsQuery setDueDateIn(ArrayList value) { this.DueDateIn = value; return this; } public String getInvoiceNo() { return InvoiceNo; } public V_CR_PurchaseShipmentsQuery setInvoiceNo(String value) { this.InvoiceNo = value; return this; } public String getInvoiceNoStartsWith() { return InvoiceNoStartsWith; } public V_CR_PurchaseShipmentsQuery setInvoiceNoStartsWith(String value) { this.InvoiceNoStartsWith = value; return this; } public String getInvoiceNoEndsWith() { return InvoiceNoEndsWith; } public V_CR_PurchaseShipmentsQuery setInvoiceNoEndsWith(String value) { this.InvoiceNoEndsWith = value; return this; } public String getInvoiceNoContains() { return InvoiceNoContains; } public V_CR_PurchaseShipmentsQuery setInvoiceNoContains(String value) { this.InvoiceNoContains = value; return this; } public String getInvoiceNoLike() { return InvoiceNoLike; } public V_CR_PurchaseShipmentsQuery setInvoiceNoLike(String value) { this.InvoiceNoLike = value; return this; } public ArrayList getInvoiceNoBetween() { return InvoiceNoBetween; } public V_CR_PurchaseShipmentsQuery setInvoiceNoBetween(ArrayList value) { this.InvoiceNoBetween = value; return this; } public ArrayList getInvoiceNoIn() { return InvoiceNoIn; } public V_CR_PurchaseShipmentsQuery setInvoiceNoIn(ArrayList value) { this.InvoiceNoIn = value; return this; } public String getPartNo() { return PartNo; } public V_CR_PurchaseShipmentsQuery setPartNo(String value) { this.PartNo = value; return this; } public String getPartNoStartsWith() { return PartNoStartsWith; } public V_CR_PurchaseShipmentsQuery setPartNoStartsWith(String value) { this.PartNoStartsWith = value; return this; } public String getPartNoEndsWith() { return PartNoEndsWith; } public V_CR_PurchaseShipmentsQuery setPartNoEndsWith(String value) { this.PartNoEndsWith = value; return this; } public String getPartNoContains() { return PartNoContains; } public V_CR_PurchaseShipmentsQuery setPartNoContains(String value) { this.PartNoContains = value; return this; } public String getPartNoLike() { return PartNoLike; } public V_CR_PurchaseShipmentsQuery setPartNoLike(String value) { this.PartNoLike = value; return this; } public ArrayList getPartNoBetween() { return PartNoBetween; } public V_CR_PurchaseShipmentsQuery setPartNoBetween(ArrayList value) { this.PartNoBetween = value; return this; } public ArrayList getPartNoIn() { return PartNoIn; } public V_CR_PurchaseShipmentsQuery setPartNoIn(ArrayList value) { this.PartNoIn = value; return this; } public String getPartDescription() { return PartDescription; } public V_CR_PurchaseShipmentsQuery setPartDescription(String value) { this.PartDescription = value; return this; } public String getPartDescriptionStartsWith() { return PartDescriptionStartsWith; } public V_CR_PurchaseShipmentsQuery setPartDescriptionStartsWith(String value) { this.PartDescriptionStartsWith = value; return this; } public String getPartDescriptionEndsWith() { return PartDescriptionEndsWith; } public V_CR_PurchaseShipmentsQuery setPartDescriptionEndsWith(String value) { this.PartDescriptionEndsWith = value; return this; } public String getPartDescriptionContains() { return PartDescriptionContains; } public V_CR_PurchaseShipmentsQuery setPartDescriptionContains(String value) { this.PartDescriptionContains = value; return this; } public String getPartDescriptionLike() { return PartDescriptionLike; } public V_CR_PurchaseShipmentsQuery setPartDescriptionLike(String value) { this.PartDescriptionLike = value; return this; } public ArrayList getPartDescriptionBetween() { return PartDescriptionBetween; } public V_CR_PurchaseShipmentsQuery setPartDescriptionBetween(ArrayList value) { this.PartDescriptionBetween = value; return this; } public ArrayList getPartDescriptionIn() { return PartDescriptionIn; } public V_CR_PurchaseShipmentsQuery setPartDescriptionIn(ArrayList value) { this.PartDescriptionIn = value; return this; } public BigDecimal getQuantity() { return Quantity; } public V_CR_PurchaseShipmentsQuery setQuantity(BigDecimal value) { this.Quantity = value; return this; } public BigDecimal getQuantityGreaterThanOrEqualTo() { return QuantityGreaterThanOrEqualTo; } public V_CR_PurchaseShipmentsQuery setQuantityGreaterThanOrEqualTo(BigDecimal value) { this.QuantityGreaterThanOrEqualTo = value; return this; } public BigDecimal getQuantityGreaterThan() { return QuantityGreaterThan; } public V_CR_PurchaseShipmentsQuery setQuantityGreaterThan(BigDecimal value) { this.QuantityGreaterThan = value; return this; } public BigDecimal getQuantityLessThan() { return QuantityLessThan; } public V_CR_PurchaseShipmentsQuery setQuantityLessThan(BigDecimal value) { this.QuantityLessThan = value; return this; } public BigDecimal getQuantityLessThanOrEqualTo() { return QuantityLessThanOrEqualTo; } public V_CR_PurchaseShipmentsQuery setQuantityLessThanOrEqualTo(BigDecimal value) { this.QuantityLessThanOrEqualTo = value; return this; } public BigDecimal getQuantityNotEqualTo() { return QuantityNotEqualTo; } public V_CR_PurchaseShipmentsQuery setQuantityNotEqualTo(BigDecimal value) { this.QuantityNotEqualTo = value; return this; } public ArrayList getQuantityBetween() { return QuantityBetween; } public V_CR_PurchaseShipmentsQuery setQuantityBetween(ArrayList value) { this.QuantityBetween = value; return this; } public ArrayList getQuantityIn() { return QuantityIn; } public V_CR_PurchaseShipmentsQuery setQuantityIn(ArrayList value) { this.QuantityIn = value; return this; } public BigDecimal getUnitCost() { return UnitCost; } public V_CR_PurchaseShipmentsQuery setUnitCost(BigDecimal value) { this.UnitCost = value; return this; } public BigDecimal getUnitCostGreaterThanOrEqualTo() { return UnitCostGreaterThanOrEqualTo; } public V_CR_PurchaseShipmentsQuery setUnitCostGreaterThanOrEqualTo(BigDecimal value) { this.UnitCostGreaterThanOrEqualTo = value; return this; } public BigDecimal getUnitCostGreaterThan() { return UnitCostGreaterThan; } public V_CR_PurchaseShipmentsQuery setUnitCostGreaterThan(BigDecimal value) { this.UnitCostGreaterThan = value; return this; } public BigDecimal getUnitCostLessThan() { return UnitCostLessThan; } public V_CR_PurchaseShipmentsQuery setUnitCostLessThan(BigDecimal value) { this.UnitCostLessThan = value; return this; } public BigDecimal getUnitCostLessThanOrEqualTo() { return UnitCostLessThanOrEqualTo; } public V_CR_PurchaseShipmentsQuery setUnitCostLessThanOrEqualTo(BigDecimal value) { this.UnitCostLessThanOrEqualTo = value; return this; } public BigDecimal getUnitCostNotEqualTo() { return UnitCostNotEqualTo; } public V_CR_PurchaseShipmentsQuery setUnitCostNotEqualTo(BigDecimal value) { this.UnitCostNotEqualTo = value; return this; } public ArrayList getUnitCostBetween() { return UnitCostBetween; } public V_CR_PurchaseShipmentsQuery setUnitCostBetween(ArrayList value) { this.UnitCostBetween = value; return this; } public ArrayList getUnitCostIn() { return UnitCostIn; } public V_CR_PurchaseShipmentsQuery setUnitCostIn(ArrayList value) { this.UnitCostIn = value; return this; } public BigDecimal getTotalCost() { return TotalCost; } public V_CR_PurchaseShipmentsQuery setTotalCost(BigDecimal value) { this.TotalCost = value; return this; } public BigDecimal getTotalCostGreaterThanOrEqualTo() { return TotalCostGreaterThanOrEqualTo; } public V_CR_PurchaseShipmentsQuery setTotalCostGreaterThanOrEqualTo(BigDecimal value) { this.TotalCostGreaterThanOrEqualTo = value; return this; } public BigDecimal getTotalCostGreaterThan() { return TotalCostGreaterThan; } public V_CR_PurchaseShipmentsQuery setTotalCostGreaterThan(BigDecimal value) { this.TotalCostGreaterThan = value; return this; } public BigDecimal getTotalCostLessThan() { return TotalCostLessThan; } public V_CR_PurchaseShipmentsQuery setTotalCostLessThan(BigDecimal value) { this.TotalCostLessThan = value; return this; } public BigDecimal getTotalCostLessThanOrEqualTo() { return TotalCostLessThanOrEqualTo; } public V_CR_PurchaseShipmentsQuery setTotalCostLessThanOrEqualTo(BigDecimal value) { this.TotalCostLessThanOrEqualTo = value; return this; } public BigDecimal getTotalCostNotEqualTo() { return TotalCostNotEqualTo; } public V_CR_PurchaseShipmentsQuery setTotalCostNotEqualTo(BigDecimal value) { this.TotalCostNotEqualTo = value; return this; } public ArrayList getTotalCostBetween() { return TotalCostBetween; } public V_CR_PurchaseShipmentsQuery setTotalCostBetween(ArrayList value) { this.TotalCostBetween = value; return this; } public ArrayList getTotalCostIn() { return TotalCostIn; } public V_CR_PurchaseShipmentsQuery setTotalCostIn(ArrayList value) { this.TotalCostIn = value; return this; } public BigDecimal getTaxAmount() { return TaxAmount; } public V_CR_PurchaseShipmentsQuery setTaxAmount(BigDecimal value) { this.TaxAmount = value; return this; } public BigDecimal getTaxAmountGreaterThanOrEqualTo() { return TaxAmountGreaterThanOrEqualTo; } public V_CR_PurchaseShipmentsQuery setTaxAmountGreaterThanOrEqualTo(BigDecimal value) { this.TaxAmountGreaterThanOrEqualTo = value; return this; } public BigDecimal getTaxAmountGreaterThan() { return TaxAmountGreaterThan; } public V_CR_PurchaseShipmentsQuery setTaxAmountGreaterThan(BigDecimal value) { this.TaxAmountGreaterThan = value; return this; } public BigDecimal getTaxAmountLessThan() { return TaxAmountLessThan; } public V_CR_PurchaseShipmentsQuery setTaxAmountLessThan(BigDecimal value) { this.TaxAmountLessThan = value; return this; } public BigDecimal getTaxAmountLessThanOrEqualTo() { return TaxAmountLessThanOrEqualTo; } public V_CR_PurchaseShipmentsQuery setTaxAmountLessThanOrEqualTo(BigDecimal value) { this.TaxAmountLessThanOrEqualTo = value; return this; } public BigDecimal getTaxAmountNotEqualTo() { return TaxAmountNotEqualTo; } public V_CR_PurchaseShipmentsQuery setTaxAmountNotEqualTo(BigDecimal value) { this.TaxAmountNotEqualTo = value; return this; } public ArrayList getTaxAmountBetween() { return TaxAmountBetween; } public V_CR_PurchaseShipmentsQuery setTaxAmountBetween(ArrayList value) { this.TaxAmountBetween = value; return this; } public ArrayList getTaxAmountIn() { return TaxAmountIn; } public V_CR_PurchaseShipmentsQuery setTaxAmountIn(ArrayList value) { this.TaxAmountIn = value; return this; } public BigDecimal getIncTotal() { return IncTotal; } public V_CR_PurchaseShipmentsQuery setIncTotal(BigDecimal value) { this.IncTotal = value; return this; } public BigDecimal getIncTotalGreaterThanOrEqualTo() { return IncTotalGreaterThanOrEqualTo; } public V_CR_PurchaseShipmentsQuery setIncTotalGreaterThanOrEqualTo(BigDecimal value) { this.IncTotalGreaterThanOrEqualTo = value; return this; } public BigDecimal getIncTotalGreaterThan() { return IncTotalGreaterThan; } public V_CR_PurchaseShipmentsQuery setIncTotalGreaterThan(BigDecimal value) { this.IncTotalGreaterThan = value; return this; } public BigDecimal getIncTotalLessThan() { return IncTotalLessThan; } public V_CR_PurchaseShipmentsQuery setIncTotalLessThan(BigDecimal value) { this.IncTotalLessThan = value; return this; } public BigDecimal getIncTotalLessThanOrEqualTo() { return IncTotalLessThanOrEqualTo; } public V_CR_PurchaseShipmentsQuery setIncTotalLessThanOrEqualTo(BigDecimal value) { this.IncTotalLessThanOrEqualTo = value; return this; } public BigDecimal getIncTotalNotEqualTo() { return IncTotalNotEqualTo; } public V_CR_PurchaseShipmentsQuery setIncTotalNotEqualTo(BigDecimal value) { this.IncTotalNotEqualTo = value; return this; } public ArrayList getIncTotalBetween() { return IncTotalBetween; } public V_CR_PurchaseShipmentsQuery setIncTotalBetween(ArrayList value) { this.IncTotalBetween = value; return this; } public ArrayList getIncTotalIn() { return IncTotalIn; } public V_CR_PurchaseShipmentsQuery setIncTotalIn(ArrayList value) { this.IncTotalIn = value; return this; } public BigDecimal getCurrencyRate() { return CurrencyRate; } public V_CR_PurchaseShipmentsQuery setCurrencyRate(BigDecimal value) { this.CurrencyRate = value; return this; } public BigDecimal getCurrencyRateGreaterThanOrEqualTo() { return CurrencyRateGreaterThanOrEqualTo; } public V_CR_PurchaseShipmentsQuery setCurrencyRateGreaterThanOrEqualTo(BigDecimal value) { this.CurrencyRateGreaterThanOrEqualTo = value; return this; } public BigDecimal getCurrencyRateGreaterThan() { return CurrencyRateGreaterThan; } public V_CR_PurchaseShipmentsQuery setCurrencyRateGreaterThan(BigDecimal value) { this.CurrencyRateGreaterThan = value; return this; } public BigDecimal getCurrencyRateLessThan() { return CurrencyRateLessThan; } public V_CR_PurchaseShipmentsQuery setCurrencyRateLessThan(BigDecimal value) { this.CurrencyRateLessThan = value; return this; } public BigDecimal getCurrencyRateLessThanOrEqualTo() { return CurrencyRateLessThanOrEqualTo; } public V_CR_PurchaseShipmentsQuery setCurrencyRateLessThanOrEqualTo(BigDecimal value) { this.CurrencyRateLessThanOrEqualTo = value; return this; } public BigDecimal getCurrencyRateNotEqualTo() { return CurrencyRateNotEqualTo; } public V_CR_PurchaseShipmentsQuery setCurrencyRateNotEqualTo(BigDecimal value) { this.CurrencyRateNotEqualTo = value; return this; } public ArrayList getCurrencyRateBetween() { return CurrencyRateBetween; } public V_CR_PurchaseShipmentsQuery setCurrencyRateBetween(ArrayList value) { this.CurrencyRateBetween = value; return this; } public ArrayList getCurrencyRateIn() { return CurrencyRateIn; } public V_CR_PurchaseShipmentsQuery setCurrencyRateIn(ArrayList value) { this.CurrencyRateIn = value; return this; } public BigDecimal getFxUnitCost() { return FxUnitCost; } public V_CR_PurchaseShipmentsQuery setFxUnitCost(BigDecimal value) { this.FxUnitCost = value; return this; } public BigDecimal getFxUnitCostGreaterThanOrEqualTo() { return FxUnitCostGreaterThanOrEqualTo; } public V_CR_PurchaseShipmentsQuery setFxUnitCostGreaterThanOrEqualTo(BigDecimal value) { this.FxUnitCostGreaterThanOrEqualTo = value; return this; } public BigDecimal getFxUnitCostGreaterThan() { return FxUnitCostGreaterThan; } public V_CR_PurchaseShipmentsQuery setFxUnitCostGreaterThan(BigDecimal value) { this.FxUnitCostGreaterThan = value; return this; } public BigDecimal getFxUnitCostLessThan() { return FxUnitCostLessThan; } public V_CR_PurchaseShipmentsQuery setFxUnitCostLessThan(BigDecimal value) { this.FxUnitCostLessThan = value; return this; } public BigDecimal getFxUnitCostLessThanOrEqualTo() { return FxUnitCostLessThanOrEqualTo; } public V_CR_PurchaseShipmentsQuery setFxUnitCostLessThanOrEqualTo(BigDecimal value) { this.FxUnitCostLessThanOrEqualTo = value; return this; } public BigDecimal getFxUnitCostNotEqualTo() { return FxUnitCostNotEqualTo; } public V_CR_PurchaseShipmentsQuery setFxUnitCostNotEqualTo(BigDecimal value) { this.FxUnitCostNotEqualTo = value; return this; } public ArrayList getFxUnitCostBetween() { return FxUnitCostBetween; } public V_CR_PurchaseShipmentsQuery setFxUnitCostBetween(ArrayList value) { this.FxUnitCostBetween = value; return this; } public ArrayList getFxUnitCostIn() { return FxUnitCostIn; } public V_CR_PurchaseShipmentsQuery setFxUnitCostIn(ArrayList value) { this.FxUnitCostIn = value; return this; } public BigDecimal getFxTotalCost() { return FxTotalCost; } public V_CR_PurchaseShipmentsQuery setFxTotalCost(BigDecimal value) { this.FxTotalCost = value; return this; } public BigDecimal getFxTotalCostGreaterThanOrEqualTo() { return FxTotalCostGreaterThanOrEqualTo; } public V_CR_PurchaseShipmentsQuery setFxTotalCostGreaterThanOrEqualTo(BigDecimal value) { this.FxTotalCostGreaterThanOrEqualTo = value; return this; } public BigDecimal getFxTotalCostGreaterThan() { return FxTotalCostGreaterThan; } public V_CR_PurchaseShipmentsQuery setFxTotalCostGreaterThan(BigDecimal value) { this.FxTotalCostGreaterThan = value; return this; } public BigDecimal getFxTotalCostLessThan() { return FxTotalCostLessThan; } public V_CR_PurchaseShipmentsQuery setFxTotalCostLessThan(BigDecimal value) { this.FxTotalCostLessThan = value; return this; } public BigDecimal getFxTotalCostLessThanOrEqualTo() { return FxTotalCostLessThanOrEqualTo; } public V_CR_PurchaseShipmentsQuery setFxTotalCostLessThanOrEqualTo(BigDecimal value) { this.FxTotalCostLessThanOrEqualTo = value; return this; } public BigDecimal getFxTotalCostNotEqualTo() { return FxTotalCostNotEqualTo; } public V_CR_PurchaseShipmentsQuery setFxTotalCostNotEqualTo(BigDecimal value) { this.FxTotalCostNotEqualTo = value; return this; } public ArrayList getFxTotalCostBetween() { return FxTotalCostBetween; } public V_CR_PurchaseShipmentsQuery setFxTotalCostBetween(ArrayList value) { this.FxTotalCostBetween = value; return this; } public ArrayList getFxTotalCostIn() { return FxTotalCostIn; } public V_CR_PurchaseShipmentsQuery setFxTotalCostIn(ArrayList value) { this.FxTotalCostIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class V_CRGL_ReconciliationQuery extends QueryDb implements IReturn> { public String ID = null; public String IDStartsWith = null; public String IDEndsWith = null; public String IDContains = null; public String IDLike = null; public ArrayList IDBetween = null; public ArrayList IDIn = null; public String Accountno = null; public String AccountnoStartsWith = null; public String AccountnoEndsWith = null; public String AccountnoContains = null; public String AccountnoLike = null; public ArrayList AccountnoBetween = null; public ArrayList AccountnoIn = null; public String Description = null; public String DescriptionStartsWith = null; public String DescriptionEndsWith = null; public String DescriptionContains = null; public String DescriptionLike = null; public ArrayList DescriptionBetween = null; public ArrayList DescriptionIn = null; public Date TransDate = null; public Date TransDateGreaterThanOrEqualTo = null; public Date TransDateGreaterThan = null; public Date TransDateLessThan = null; public Date TransDateLessThanOrEqualTo = null; public Date TransDateNotEqualTo = null; public ArrayList TransDateBetween = null; public ArrayList TransDateIn = null; public String SourceText = null; public String SourceTextStartsWith = null; public String SourceTextEndsWith = null; public String SourceTextContains = null; public String SourceTextLike = null; public ArrayList SourceTextBetween = null; public ArrayList SourceTextIn = null; public String SourceID = null; public String SourceIDStartsWith = null; public String SourceIDEndsWith = null; public String SourceIDContains = null; public String SourceIDLike = null; public ArrayList SourceIDBetween = null; public ArrayList SourceIDIn = null; public Integer SourceNum = null; public Integer SourceNumGreaterThanOrEqualTo = null; public Integer SourceNumGreaterThan = null; public Integer SourceNumLessThan = null; public Integer SourceNumLessThanOrEqualTo = null; public Integer SourceNumNotEqualTo = null; public ArrayList SourceNumBetween = null; public ArrayList SourceNumIn = null; public Integer SubTypeNum = null; public Integer SubTypeNumGreaterThanOrEqualTo = null; public Integer SubTypeNumGreaterThan = null; public Integer SubTypeNumLessThan = null; public Integer SubTypeNumLessThanOrEqualTo = null; public Integer SubTypeNumNotEqualTo = null; public ArrayList SubTypeNumBetween = null; public ArrayList SubTypeNumIn = null; public BigDecimal Value = null; public BigDecimal ValueGreaterThanOrEqualTo = null; public BigDecimal ValueGreaterThan = null; public BigDecimal ValueLessThan = null; public BigDecimal ValueLessThanOrEqualTo = null; public BigDecimal ValueNotEqualTo = null; public ArrayList ValueBetween = null; public ArrayList ValueIn = null; public Boolean DebitCredit = null; public String ReportType = null; public String ReportTypeStartsWith = null; public String ReportTypeEndsWith = null; public String ReportTypeContains = null; public String ReportTypeLike = null; public ArrayList ReportTypeBetween = null; public ArrayList ReportTypeIn = null; public String getId() { return ID; } public V_CRGL_ReconciliationQuery setId(String value) { this.ID = value; return this; } public String getIdStartsWith() { return IDStartsWith; } public V_CRGL_ReconciliationQuery setIdStartsWith(String value) { this.IDStartsWith = value; return this; } public String getIdEndsWith() { return IDEndsWith; } public V_CRGL_ReconciliationQuery setIdEndsWith(String value) { this.IDEndsWith = value; return this; } public String getIdContains() { return IDContains; } public V_CRGL_ReconciliationQuery setIdContains(String value) { this.IDContains = value; return this; } public String getIdLike() { return IDLike; } public V_CRGL_ReconciliationQuery setIdLike(String value) { this.IDLike = value; return this; } public ArrayList getIdBetween() { return IDBetween; } public V_CRGL_ReconciliationQuery setIdBetween(ArrayList value) { this.IDBetween = value; return this; } public ArrayList getIdIn() { return IDIn; } public V_CRGL_ReconciliationQuery setIdIn(ArrayList value) { this.IDIn = value; return this; } public String getAccountno() { return Accountno; } public V_CRGL_ReconciliationQuery setAccountno(String value) { this.Accountno = value; return this; } public String getAccountnoStartsWith() { return AccountnoStartsWith; } public V_CRGL_ReconciliationQuery setAccountnoStartsWith(String value) { this.AccountnoStartsWith = value; return this; } public String getAccountnoEndsWith() { return AccountnoEndsWith; } public V_CRGL_ReconciliationQuery setAccountnoEndsWith(String value) { this.AccountnoEndsWith = value; return this; } public String getAccountnoContains() { return AccountnoContains; } public V_CRGL_ReconciliationQuery setAccountnoContains(String value) { this.AccountnoContains = value; return this; } public String getAccountnoLike() { return AccountnoLike; } public V_CRGL_ReconciliationQuery setAccountnoLike(String value) { this.AccountnoLike = value; return this; } public ArrayList getAccountnoBetween() { return AccountnoBetween; } public V_CRGL_ReconciliationQuery setAccountnoBetween(ArrayList value) { this.AccountnoBetween = value; return this; } public ArrayList getAccountnoIn() { return AccountnoIn; } public V_CRGL_ReconciliationQuery setAccountnoIn(ArrayList value) { this.AccountnoIn = value; return this; } public String getDescription() { return Description; } public V_CRGL_ReconciliationQuery setDescription(String value) { this.Description = value; return this; } public String getDescriptionStartsWith() { return DescriptionStartsWith; } public V_CRGL_ReconciliationQuery setDescriptionStartsWith(String value) { this.DescriptionStartsWith = value; return this; } public String getDescriptionEndsWith() { return DescriptionEndsWith; } public V_CRGL_ReconciliationQuery setDescriptionEndsWith(String value) { this.DescriptionEndsWith = value; return this; } public String getDescriptionContains() { return DescriptionContains; } public V_CRGL_ReconciliationQuery setDescriptionContains(String value) { this.DescriptionContains = value; return this; } public String getDescriptionLike() { return DescriptionLike; } public V_CRGL_ReconciliationQuery setDescriptionLike(String value) { this.DescriptionLike = value; return this; } public ArrayList getDescriptionBetween() { return DescriptionBetween; } public V_CRGL_ReconciliationQuery setDescriptionBetween(ArrayList value) { this.DescriptionBetween = value; return this; } public ArrayList getDescriptionIn() { return DescriptionIn; } public V_CRGL_ReconciliationQuery setDescriptionIn(ArrayList value) { this.DescriptionIn = value; return this; } public Date getTransDate() { return TransDate; } public V_CRGL_ReconciliationQuery setTransDate(Date value) { this.TransDate = value; return this; } public Date getTransDateGreaterThanOrEqualTo() { return TransDateGreaterThanOrEqualTo; } public V_CRGL_ReconciliationQuery setTransDateGreaterThanOrEqualTo(Date value) { this.TransDateGreaterThanOrEqualTo = value; return this; } public Date getTransDateGreaterThan() { return TransDateGreaterThan; } public V_CRGL_ReconciliationQuery setTransDateGreaterThan(Date value) { this.TransDateGreaterThan = value; return this; } public Date getTransDateLessThan() { return TransDateLessThan; } public V_CRGL_ReconciliationQuery setTransDateLessThan(Date value) { this.TransDateLessThan = value; return this; } public Date getTransDateLessThanOrEqualTo() { return TransDateLessThanOrEqualTo; } public V_CRGL_ReconciliationQuery setTransDateLessThanOrEqualTo(Date value) { this.TransDateLessThanOrEqualTo = value; return this; } public Date getTransDateNotEqualTo() { return TransDateNotEqualTo; } public V_CRGL_ReconciliationQuery setTransDateNotEqualTo(Date value) { this.TransDateNotEqualTo = value; return this; } public ArrayList getTransDateBetween() { return TransDateBetween; } public V_CRGL_ReconciliationQuery setTransDateBetween(ArrayList value) { this.TransDateBetween = value; return this; } public ArrayList getTransDateIn() { return TransDateIn; } public V_CRGL_ReconciliationQuery setTransDateIn(ArrayList value) { this.TransDateIn = value; return this; } public String getSourceText() { return SourceText; } public V_CRGL_ReconciliationQuery setSourceText(String value) { this.SourceText = value; return this; } public String getSourceTextStartsWith() { return SourceTextStartsWith; } public V_CRGL_ReconciliationQuery setSourceTextStartsWith(String value) { this.SourceTextStartsWith = value; return this; } public String getSourceTextEndsWith() { return SourceTextEndsWith; } public V_CRGL_ReconciliationQuery setSourceTextEndsWith(String value) { this.SourceTextEndsWith = value; return this; } public String getSourceTextContains() { return SourceTextContains; } public V_CRGL_ReconciliationQuery setSourceTextContains(String value) { this.SourceTextContains = value; return this; } public String getSourceTextLike() { return SourceTextLike; } public V_CRGL_ReconciliationQuery setSourceTextLike(String value) { this.SourceTextLike = value; return this; } public ArrayList getSourceTextBetween() { return SourceTextBetween; } public V_CRGL_ReconciliationQuery setSourceTextBetween(ArrayList value) { this.SourceTextBetween = value; return this; } public ArrayList getSourceTextIn() { return SourceTextIn; } public V_CRGL_ReconciliationQuery setSourceTextIn(ArrayList value) { this.SourceTextIn = value; return this; } public String getSourceID() { return SourceID; } public V_CRGL_ReconciliationQuery setSourceID(String value) { this.SourceID = value; return this; } public String getSourceIDStartsWith() { return SourceIDStartsWith; } public V_CRGL_ReconciliationQuery setSourceIDStartsWith(String value) { this.SourceIDStartsWith = value; return this; } public String getSourceIDEndsWith() { return SourceIDEndsWith; } public V_CRGL_ReconciliationQuery setSourceIDEndsWith(String value) { this.SourceIDEndsWith = value; return this; } public String getSourceIDContains() { return SourceIDContains; } public V_CRGL_ReconciliationQuery setSourceIDContains(String value) { this.SourceIDContains = value; return this; } public String getSourceIDLike() { return SourceIDLike; } public V_CRGL_ReconciliationQuery setSourceIDLike(String value) { this.SourceIDLike = value; return this; } public ArrayList getSourceIDBetween() { return SourceIDBetween; } public V_CRGL_ReconciliationQuery setSourceIDBetween(ArrayList value) { this.SourceIDBetween = value; return this; } public ArrayList getSourceIDIn() { return SourceIDIn; } public V_CRGL_ReconciliationQuery setSourceIDIn(ArrayList value) { this.SourceIDIn = value; return this; } public Integer getSourceNum() { return SourceNum; } public V_CRGL_ReconciliationQuery setSourceNum(Integer value) { this.SourceNum = value; return this; } public Integer getSourceNumGreaterThanOrEqualTo() { return SourceNumGreaterThanOrEqualTo; } public V_CRGL_ReconciliationQuery setSourceNumGreaterThanOrEqualTo(Integer value) { this.SourceNumGreaterThanOrEqualTo = value; return this; } public Integer getSourceNumGreaterThan() { return SourceNumGreaterThan; } public V_CRGL_ReconciliationQuery setSourceNumGreaterThan(Integer value) { this.SourceNumGreaterThan = value; return this; } public Integer getSourceNumLessThan() { return SourceNumLessThan; } public V_CRGL_ReconciliationQuery setSourceNumLessThan(Integer value) { this.SourceNumLessThan = value; return this; } public Integer getSourceNumLessThanOrEqualTo() { return SourceNumLessThanOrEqualTo; } public V_CRGL_ReconciliationQuery setSourceNumLessThanOrEqualTo(Integer value) { this.SourceNumLessThanOrEqualTo = value; return this; } public Integer getSourceNumNotEqualTo() { return SourceNumNotEqualTo; } public V_CRGL_ReconciliationQuery setSourceNumNotEqualTo(Integer value) { this.SourceNumNotEqualTo = value; return this; } public ArrayList getSourceNumBetween() { return SourceNumBetween; } public V_CRGL_ReconciliationQuery setSourceNumBetween(ArrayList value) { this.SourceNumBetween = value; return this; } public ArrayList getSourceNumIn() { return SourceNumIn; } public V_CRGL_ReconciliationQuery setSourceNumIn(ArrayList value) { this.SourceNumIn = value; return this; } public Integer getSubTypeNum() { return SubTypeNum; } public V_CRGL_ReconciliationQuery setSubTypeNum(Integer value) { this.SubTypeNum = value; return this; } public Integer getSubTypeNumGreaterThanOrEqualTo() { return SubTypeNumGreaterThanOrEqualTo; } public V_CRGL_ReconciliationQuery setSubTypeNumGreaterThanOrEqualTo(Integer value) { this.SubTypeNumGreaterThanOrEqualTo = value; return this; } public Integer getSubTypeNumGreaterThan() { return SubTypeNumGreaterThan; } public V_CRGL_ReconciliationQuery setSubTypeNumGreaterThan(Integer value) { this.SubTypeNumGreaterThan = value; return this; } public Integer getSubTypeNumLessThan() { return SubTypeNumLessThan; } public V_CRGL_ReconciliationQuery setSubTypeNumLessThan(Integer value) { this.SubTypeNumLessThan = value; return this; } public Integer getSubTypeNumLessThanOrEqualTo() { return SubTypeNumLessThanOrEqualTo; } public V_CRGL_ReconciliationQuery setSubTypeNumLessThanOrEqualTo(Integer value) { this.SubTypeNumLessThanOrEqualTo = value; return this; } public Integer getSubTypeNumNotEqualTo() { return SubTypeNumNotEqualTo; } public V_CRGL_ReconciliationQuery setSubTypeNumNotEqualTo(Integer value) { this.SubTypeNumNotEqualTo = value; return this; } public ArrayList getSubTypeNumBetween() { return SubTypeNumBetween; } public V_CRGL_ReconciliationQuery setSubTypeNumBetween(ArrayList value) { this.SubTypeNumBetween = value; return this; } public ArrayList getSubTypeNumIn() { return SubTypeNumIn; } public V_CRGL_ReconciliationQuery setSubTypeNumIn(ArrayList value) { this.SubTypeNumIn = value; return this; } public BigDecimal getValue() { return Value; } public V_CRGL_ReconciliationQuery setValue(BigDecimal value) { this.Value = value; return this; } public BigDecimal getValueGreaterThanOrEqualTo() { return ValueGreaterThanOrEqualTo; } public V_CRGL_ReconciliationQuery setValueGreaterThanOrEqualTo(BigDecimal value) { this.ValueGreaterThanOrEqualTo = value; return this; } public BigDecimal getValueGreaterThan() { return ValueGreaterThan; } public V_CRGL_ReconciliationQuery setValueGreaterThan(BigDecimal value) { this.ValueGreaterThan = value; return this; } public BigDecimal getValueLessThan() { return ValueLessThan; } public V_CRGL_ReconciliationQuery setValueLessThan(BigDecimal value) { this.ValueLessThan = value; return this; } public BigDecimal getValueLessThanOrEqualTo() { return ValueLessThanOrEqualTo; } public V_CRGL_ReconciliationQuery setValueLessThanOrEqualTo(BigDecimal value) { this.ValueLessThanOrEqualTo = value; return this; } public BigDecimal getValueNotEqualTo() { return ValueNotEqualTo; } public V_CRGL_ReconciliationQuery setValueNotEqualTo(BigDecimal value) { this.ValueNotEqualTo = value; return this; } public ArrayList getValueBetween() { return ValueBetween; } public V_CRGL_ReconciliationQuery setValueBetween(ArrayList value) { this.ValueBetween = value; return this; } public ArrayList getValueIn() { return ValueIn; } public V_CRGL_ReconciliationQuery setValueIn(ArrayList value) { this.ValueIn = value; return this; } public Boolean isDebitCredit() { return DebitCredit; } public V_CRGL_ReconciliationQuery setDebitCredit(Boolean value) { this.DebitCredit = value; return this; } public String getReportType() { return ReportType; } public V_CRGL_ReconciliationQuery setReportType(String value) { this.ReportType = value; return this; } public String getReportTypeStartsWith() { return ReportTypeStartsWith; } public V_CRGL_ReconciliationQuery setReportTypeStartsWith(String value) { this.ReportTypeStartsWith = value; return this; } public String getReportTypeEndsWith() { return ReportTypeEndsWith; } public V_CRGL_ReconciliationQuery setReportTypeEndsWith(String value) { this.ReportTypeEndsWith = value; return this; } public String getReportTypeContains() { return ReportTypeContains; } public V_CRGL_ReconciliationQuery setReportTypeContains(String value) { this.ReportTypeContains = value; return this; } public String getReportTypeLike() { return ReportTypeLike; } public V_CRGL_ReconciliationQuery setReportTypeLike(String value) { this.ReportTypeLike = value; return this; } public ArrayList getReportTypeBetween() { return ReportTypeBetween; } public V_CRGL_ReconciliationQuery setReportTypeBetween(ArrayList value) { this.ReportTypeBetween = value; return this; } public ArrayList getReportTypeIn() { return ReportTypeIn; } public V_CRGL_ReconciliationQuery setReportTypeIn(ArrayList value) { this.ReportTypeIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class V_DBGL_ReconciliationQuery extends QueryDb implements IReturn> { public String ID = null; public String IDStartsWith = null; public String IDEndsWith = null; public String IDContains = null; public String IDLike = null; public ArrayList IDBetween = null; public ArrayList IDIn = null; public String Accountno = null; public String AccountnoStartsWith = null; public String AccountnoEndsWith = null; public String AccountnoContains = null; public String AccountnoLike = null; public ArrayList AccountnoBetween = null; public ArrayList AccountnoIn = null; public String Description = null; public String DescriptionStartsWith = null; public String DescriptionEndsWith = null; public String DescriptionContains = null; public String DescriptionLike = null; public ArrayList DescriptionBetween = null; public ArrayList DescriptionIn = null; public Date TransDate = null; public Date TransDateGreaterThanOrEqualTo = null; public Date TransDateGreaterThan = null; public Date TransDateLessThan = null; public Date TransDateLessThanOrEqualTo = null; public Date TransDateNotEqualTo = null; public ArrayList TransDateBetween = null; public ArrayList TransDateIn = null; public String SourceText = null; public String SourceTextStartsWith = null; public String SourceTextEndsWith = null; public String SourceTextContains = null; public String SourceTextLike = null; public ArrayList SourceTextBetween = null; public ArrayList SourceTextIn = null; public String SourceID = null; public String SourceIDStartsWith = null; public String SourceIDEndsWith = null; public String SourceIDContains = null; public String SourceIDLike = null; public ArrayList SourceIDBetween = null; public ArrayList SourceIDIn = null; public Integer SourceNum = null; public Integer SourceNumGreaterThanOrEqualTo = null; public Integer SourceNumGreaterThan = null; public Integer SourceNumLessThan = null; public Integer SourceNumLessThanOrEqualTo = null; public Integer SourceNumNotEqualTo = null; public ArrayList SourceNumBetween = null; public ArrayList SourceNumIn = null; public Integer SubTypeNum = null; public Integer SubTypeNumGreaterThanOrEqualTo = null; public Integer SubTypeNumGreaterThan = null; public Integer SubTypeNumLessThan = null; public Integer SubTypeNumLessThanOrEqualTo = null; public Integer SubTypeNumNotEqualTo = null; public ArrayList SubTypeNumBetween = null; public ArrayList SubTypeNumIn = null; public BigDecimal Value = null; public BigDecimal ValueGreaterThanOrEqualTo = null; public BigDecimal ValueGreaterThan = null; public BigDecimal ValueLessThan = null; public BigDecimal ValueLessThanOrEqualTo = null; public BigDecimal ValueNotEqualTo = null; public ArrayList ValueBetween = null; public ArrayList ValueIn = null; public Boolean DebitCredit = null; public String ReportType = null; public String ReportTypeStartsWith = null; public String ReportTypeEndsWith = null; public String ReportTypeContains = null; public String ReportTypeLike = null; public ArrayList ReportTypeBetween = null; public ArrayList ReportTypeIn = null; public String getId() { return ID; } public V_DBGL_ReconciliationQuery setId(String value) { this.ID = value; return this; } public String getIdStartsWith() { return IDStartsWith; } public V_DBGL_ReconciliationQuery setIdStartsWith(String value) { this.IDStartsWith = value; return this; } public String getIdEndsWith() { return IDEndsWith; } public V_DBGL_ReconciliationQuery setIdEndsWith(String value) { this.IDEndsWith = value; return this; } public String getIdContains() { return IDContains; } public V_DBGL_ReconciliationQuery setIdContains(String value) { this.IDContains = value; return this; } public String getIdLike() { return IDLike; } public V_DBGL_ReconciliationQuery setIdLike(String value) { this.IDLike = value; return this; } public ArrayList getIdBetween() { return IDBetween; } public V_DBGL_ReconciliationQuery setIdBetween(ArrayList value) { this.IDBetween = value; return this; } public ArrayList getIdIn() { return IDIn; } public V_DBGL_ReconciliationQuery setIdIn(ArrayList value) { this.IDIn = value; return this; } public String getAccountno() { return Accountno; } public V_DBGL_ReconciliationQuery setAccountno(String value) { this.Accountno = value; return this; } public String getAccountnoStartsWith() { return AccountnoStartsWith; } public V_DBGL_ReconciliationQuery setAccountnoStartsWith(String value) { this.AccountnoStartsWith = value; return this; } public String getAccountnoEndsWith() { return AccountnoEndsWith; } public V_DBGL_ReconciliationQuery setAccountnoEndsWith(String value) { this.AccountnoEndsWith = value; return this; } public String getAccountnoContains() { return AccountnoContains; } public V_DBGL_ReconciliationQuery setAccountnoContains(String value) { this.AccountnoContains = value; return this; } public String getAccountnoLike() { return AccountnoLike; } public V_DBGL_ReconciliationQuery setAccountnoLike(String value) { this.AccountnoLike = value; return this; } public ArrayList getAccountnoBetween() { return AccountnoBetween; } public V_DBGL_ReconciliationQuery setAccountnoBetween(ArrayList value) { this.AccountnoBetween = value; return this; } public ArrayList getAccountnoIn() { return AccountnoIn; } public V_DBGL_ReconciliationQuery setAccountnoIn(ArrayList value) { this.AccountnoIn = value; return this; } public String getDescription() { return Description; } public V_DBGL_ReconciliationQuery setDescription(String value) { this.Description = value; return this; } public String getDescriptionStartsWith() { return DescriptionStartsWith; } public V_DBGL_ReconciliationQuery setDescriptionStartsWith(String value) { this.DescriptionStartsWith = value; return this; } public String getDescriptionEndsWith() { return DescriptionEndsWith; } public V_DBGL_ReconciliationQuery setDescriptionEndsWith(String value) { this.DescriptionEndsWith = value; return this; } public String getDescriptionContains() { return DescriptionContains; } public V_DBGL_ReconciliationQuery setDescriptionContains(String value) { this.DescriptionContains = value; return this; } public String getDescriptionLike() { return DescriptionLike; } public V_DBGL_ReconciliationQuery setDescriptionLike(String value) { this.DescriptionLike = value; return this; } public ArrayList getDescriptionBetween() { return DescriptionBetween; } public V_DBGL_ReconciliationQuery setDescriptionBetween(ArrayList value) { this.DescriptionBetween = value; return this; } public ArrayList getDescriptionIn() { return DescriptionIn; } public V_DBGL_ReconciliationQuery setDescriptionIn(ArrayList value) { this.DescriptionIn = value; return this; } public Date getTransDate() { return TransDate; } public V_DBGL_ReconciliationQuery setTransDate(Date value) { this.TransDate = value; return this; } public Date getTransDateGreaterThanOrEqualTo() { return TransDateGreaterThanOrEqualTo; } public V_DBGL_ReconciliationQuery setTransDateGreaterThanOrEqualTo(Date value) { this.TransDateGreaterThanOrEqualTo = value; return this; } public Date getTransDateGreaterThan() { return TransDateGreaterThan; } public V_DBGL_ReconciliationQuery setTransDateGreaterThan(Date value) { this.TransDateGreaterThan = value; return this; } public Date getTransDateLessThan() { return TransDateLessThan; } public V_DBGL_ReconciliationQuery setTransDateLessThan(Date value) { this.TransDateLessThan = value; return this; } public Date getTransDateLessThanOrEqualTo() { return TransDateLessThanOrEqualTo; } public V_DBGL_ReconciliationQuery setTransDateLessThanOrEqualTo(Date value) { this.TransDateLessThanOrEqualTo = value; return this; } public Date getTransDateNotEqualTo() { return TransDateNotEqualTo; } public V_DBGL_ReconciliationQuery setTransDateNotEqualTo(Date value) { this.TransDateNotEqualTo = value; return this; } public ArrayList getTransDateBetween() { return TransDateBetween; } public V_DBGL_ReconciliationQuery setTransDateBetween(ArrayList value) { this.TransDateBetween = value; return this; } public ArrayList getTransDateIn() { return TransDateIn; } public V_DBGL_ReconciliationQuery setTransDateIn(ArrayList value) { this.TransDateIn = value; return this; } public String getSourceText() { return SourceText; } public V_DBGL_ReconciliationQuery setSourceText(String value) { this.SourceText = value; return this; } public String getSourceTextStartsWith() { return SourceTextStartsWith; } public V_DBGL_ReconciliationQuery setSourceTextStartsWith(String value) { this.SourceTextStartsWith = value; return this; } public String getSourceTextEndsWith() { return SourceTextEndsWith; } public V_DBGL_ReconciliationQuery setSourceTextEndsWith(String value) { this.SourceTextEndsWith = value; return this; } public String getSourceTextContains() { return SourceTextContains; } public V_DBGL_ReconciliationQuery setSourceTextContains(String value) { this.SourceTextContains = value; return this; } public String getSourceTextLike() { return SourceTextLike; } public V_DBGL_ReconciliationQuery setSourceTextLike(String value) { this.SourceTextLike = value; return this; } public ArrayList getSourceTextBetween() { return SourceTextBetween; } public V_DBGL_ReconciliationQuery setSourceTextBetween(ArrayList value) { this.SourceTextBetween = value; return this; } public ArrayList getSourceTextIn() { return SourceTextIn; } public V_DBGL_ReconciliationQuery setSourceTextIn(ArrayList value) { this.SourceTextIn = value; return this; } public String getSourceID() { return SourceID; } public V_DBGL_ReconciliationQuery setSourceID(String value) { this.SourceID = value; return this; } public String getSourceIDStartsWith() { return SourceIDStartsWith; } public V_DBGL_ReconciliationQuery setSourceIDStartsWith(String value) { this.SourceIDStartsWith = value; return this; } public String getSourceIDEndsWith() { return SourceIDEndsWith; } public V_DBGL_ReconciliationQuery setSourceIDEndsWith(String value) { this.SourceIDEndsWith = value; return this; } public String getSourceIDContains() { return SourceIDContains; } public V_DBGL_ReconciliationQuery setSourceIDContains(String value) { this.SourceIDContains = value; return this; } public String getSourceIDLike() { return SourceIDLike; } public V_DBGL_ReconciliationQuery setSourceIDLike(String value) { this.SourceIDLike = value; return this; } public ArrayList getSourceIDBetween() { return SourceIDBetween; } public V_DBGL_ReconciliationQuery setSourceIDBetween(ArrayList value) { this.SourceIDBetween = value; return this; } public ArrayList getSourceIDIn() { return SourceIDIn; } public V_DBGL_ReconciliationQuery setSourceIDIn(ArrayList value) { this.SourceIDIn = value; return this; } public Integer getSourceNum() { return SourceNum; } public V_DBGL_ReconciliationQuery setSourceNum(Integer value) { this.SourceNum = value; return this; } public Integer getSourceNumGreaterThanOrEqualTo() { return SourceNumGreaterThanOrEqualTo; } public V_DBGL_ReconciliationQuery setSourceNumGreaterThanOrEqualTo(Integer value) { this.SourceNumGreaterThanOrEqualTo = value; return this; } public Integer getSourceNumGreaterThan() { return SourceNumGreaterThan; } public V_DBGL_ReconciliationQuery setSourceNumGreaterThan(Integer value) { this.SourceNumGreaterThan = value; return this; } public Integer getSourceNumLessThan() { return SourceNumLessThan; } public V_DBGL_ReconciliationQuery setSourceNumLessThan(Integer value) { this.SourceNumLessThan = value; return this; } public Integer getSourceNumLessThanOrEqualTo() { return SourceNumLessThanOrEqualTo; } public V_DBGL_ReconciliationQuery setSourceNumLessThanOrEqualTo(Integer value) { this.SourceNumLessThanOrEqualTo = value; return this; } public Integer getSourceNumNotEqualTo() { return SourceNumNotEqualTo; } public V_DBGL_ReconciliationQuery setSourceNumNotEqualTo(Integer value) { this.SourceNumNotEqualTo = value; return this; } public ArrayList getSourceNumBetween() { return SourceNumBetween; } public V_DBGL_ReconciliationQuery setSourceNumBetween(ArrayList value) { this.SourceNumBetween = value; return this; } public ArrayList getSourceNumIn() { return SourceNumIn; } public V_DBGL_ReconciliationQuery setSourceNumIn(ArrayList value) { this.SourceNumIn = value; return this; } public Integer getSubTypeNum() { return SubTypeNum; } public V_DBGL_ReconciliationQuery setSubTypeNum(Integer value) { this.SubTypeNum = value; return this; } public Integer getSubTypeNumGreaterThanOrEqualTo() { return SubTypeNumGreaterThanOrEqualTo; } public V_DBGL_ReconciliationQuery setSubTypeNumGreaterThanOrEqualTo(Integer value) { this.SubTypeNumGreaterThanOrEqualTo = value; return this; } public Integer getSubTypeNumGreaterThan() { return SubTypeNumGreaterThan; } public V_DBGL_ReconciliationQuery setSubTypeNumGreaterThan(Integer value) { this.SubTypeNumGreaterThan = value; return this; } public Integer getSubTypeNumLessThan() { return SubTypeNumLessThan; } public V_DBGL_ReconciliationQuery setSubTypeNumLessThan(Integer value) { this.SubTypeNumLessThan = value; return this; } public Integer getSubTypeNumLessThanOrEqualTo() { return SubTypeNumLessThanOrEqualTo; } public V_DBGL_ReconciliationQuery setSubTypeNumLessThanOrEqualTo(Integer value) { this.SubTypeNumLessThanOrEqualTo = value; return this; } public Integer getSubTypeNumNotEqualTo() { return SubTypeNumNotEqualTo; } public V_DBGL_ReconciliationQuery setSubTypeNumNotEqualTo(Integer value) { this.SubTypeNumNotEqualTo = value; return this; } public ArrayList getSubTypeNumBetween() { return SubTypeNumBetween; } public V_DBGL_ReconciliationQuery setSubTypeNumBetween(ArrayList value) { this.SubTypeNumBetween = value; return this; } public ArrayList getSubTypeNumIn() { return SubTypeNumIn; } public V_DBGL_ReconciliationQuery setSubTypeNumIn(ArrayList value) { this.SubTypeNumIn = value; return this; } public BigDecimal getValue() { return Value; } public V_DBGL_ReconciliationQuery setValue(BigDecimal value) { this.Value = value; return this; } public BigDecimal getValueGreaterThanOrEqualTo() { return ValueGreaterThanOrEqualTo; } public V_DBGL_ReconciliationQuery setValueGreaterThanOrEqualTo(BigDecimal value) { this.ValueGreaterThanOrEqualTo = value; return this; } public BigDecimal getValueGreaterThan() { return ValueGreaterThan; } public V_DBGL_ReconciliationQuery setValueGreaterThan(BigDecimal value) { this.ValueGreaterThan = value; return this; } public BigDecimal getValueLessThan() { return ValueLessThan; } public V_DBGL_ReconciliationQuery setValueLessThan(BigDecimal value) { this.ValueLessThan = value; return this; } public BigDecimal getValueLessThanOrEqualTo() { return ValueLessThanOrEqualTo; } public V_DBGL_ReconciliationQuery setValueLessThanOrEqualTo(BigDecimal value) { this.ValueLessThanOrEqualTo = value; return this; } public BigDecimal getValueNotEqualTo() { return ValueNotEqualTo; } public V_DBGL_ReconciliationQuery setValueNotEqualTo(BigDecimal value) { this.ValueNotEqualTo = value; return this; } public ArrayList getValueBetween() { return ValueBetween; } public V_DBGL_ReconciliationQuery setValueBetween(ArrayList value) { this.ValueBetween = value; return this; } public ArrayList getValueIn() { return ValueIn; } public V_DBGL_ReconciliationQuery setValueIn(ArrayList value) { this.ValueIn = value; return this; } public Boolean isDebitCredit() { return DebitCredit; } public V_DBGL_ReconciliationQuery setDebitCredit(Boolean value) { this.DebitCredit = value; return this; } public String getReportType() { return ReportType; } public V_DBGL_ReconciliationQuery setReportType(String value) { this.ReportType = value; return this; } public String getReportTypeStartsWith() { return ReportTypeStartsWith; } public V_DBGL_ReconciliationQuery setReportTypeStartsWith(String value) { this.ReportTypeStartsWith = value; return this; } public String getReportTypeEndsWith() { return ReportTypeEndsWith; } public V_DBGL_ReconciliationQuery setReportTypeEndsWith(String value) { this.ReportTypeEndsWith = value; return this; } public String getReportTypeContains() { return ReportTypeContains; } public V_DBGL_ReconciliationQuery setReportTypeContains(String value) { this.ReportTypeContains = value; return this; } public String getReportTypeLike() { return ReportTypeLike; } public V_DBGL_ReconciliationQuery setReportTypeLike(String value) { this.ReportTypeLike = value; return this; } public ArrayList getReportTypeBetween() { return ReportTypeBetween; } public V_DBGL_ReconciliationQuery setReportTypeBetween(ArrayList value) { this.ReportTypeBetween = value; return this; } public ArrayList getReportTypeIn() { return ReportTypeIn; } public V_DBGL_ReconciliationQuery setReportTypeIn(ArrayList value) { this.ReportTypeIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class V_DBStatement_TransQuery extends QueryDb implements IReturn> { public String AccountNo = null; public String AccountNoStartsWith = null; public String AccountNoEndsWith = null; public String AccountNoContains = null; public String AccountNoLike = null; public ArrayList AccountNoBetween = null; public ArrayList AccountNoIn = null; public String DebtorID = null; public String DebtorIDStartsWith = null; public String DebtorIDEndsWith = null; public String DebtorIDContains = null; public String DebtorIDLike = null; public ArrayList DebtorIDBetween = null; public ArrayList DebtorIDIn = null; public Boolean DebitCredit = null; public String Ref = null; public String RefStartsWith = null; public String RefEndsWith = null; public String RefContains = null; public String RefLike = null; public ArrayList RefBetween = null; public ArrayList RefIn = null; public String Remark = null; public String RemarkStartsWith = null; public String RemarkEndsWith = null; public String RemarkContains = null; public String RemarkLike = null; public ArrayList RemarkBetween = null; public ArrayList RemarkIn = null; public Date TranDate = null; public Date TranDateGreaterThanOrEqualTo = null; public Date TranDateGreaterThan = null; public Date TranDateLessThan = null; public Date TranDateLessThanOrEqualTo = null; public Date TranDateNotEqualTo = null; public ArrayList TranDateBetween = null; public ArrayList TranDateIn = null; public String InvRemitNo = null; public String InvRemitNoStartsWith = null; public String InvRemitNoEndsWith = null; public String InvRemitNoContains = null; public String InvRemitNoLike = null; public ArrayList InvRemitNoBetween = null; public ArrayList InvRemitNoIn = null; public BigDecimal DiscountedAmount = null; public BigDecimal DiscountedAmountGreaterThanOrEqualTo = null; public BigDecimal DiscountedAmountGreaterThan = null; public BigDecimal DiscountedAmountLessThan = null; public BigDecimal DiscountedAmountLessThanOrEqualTo = null; public BigDecimal DiscountedAmountNotEqualTo = null; public ArrayList DiscountedAmountBetween = null; public ArrayList DiscountedAmountIn = null; public BigDecimal AllocatedAmount = null; public BigDecimal AllocatedAmountGreaterThanOrEqualTo = null; public BigDecimal AllocatedAmountGreaterThan = null; public BigDecimal AllocatedAmountLessThan = null; public BigDecimal AllocatedAmountLessThanOrEqualTo = null; public BigDecimal AllocatedAmountNotEqualTo = null; public ArrayList AllocatedAmountBetween = null; public ArrayList AllocatedAmountIn = null; public Short SubType = null; public Short SubTypeGreaterThanOrEqualTo = null; public Short SubTypeGreaterThan = null; public Short SubTypeLessThan = null; public Short SubTypeLessThanOrEqualTo = null; public Short SubTypeNotEqualTo = null; public ArrayList SubTypeBetween = null; public ArrayList SubTypeIn = null; public Boolean AgedOut = null; public String TransID = null; public String TransIDStartsWith = null; public String TransIDEndsWith = null; public String TransIDContains = null; public String TransIDLike = null; public ArrayList TransIDBetween = null; public ArrayList TransIDIn = null; public String getAccountNo() { return AccountNo; } public V_DBStatement_TransQuery setAccountNo(String value) { this.AccountNo = value; return this; } public String getAccountNoStartsWith() { return AccountNoStartsWith; } public V_DBStatement_TransQuery setAccountNoStartsWith(String value) { this.AccountNoStartsWith = value; return this; } public String getAccountNoEndsWith() { return AccountNoEndsWith; } public V_DBStatement_TransQuery setAccountNoEndsWith(String value) { this.AccountNoEndsWith = value; return this; } public String getAccountNoContains() { return AccountNoContains; } public V_DBStatement_TransQuery setAccountNoContains(String value) { this.AccountNoContains = value; return this; } public String getAccountNoLike() { return AccountNoLike; } public V_DBStatement_TransQuery setAccountNoLike(String value) { this.AccountNoLike = value; return this; } public ArrayList getAccountNoBetween() { return AccountNoBetween; } public V_DBStatement_TransQuery setAccountNoBetween(ArrayList value) { this.AccountNoBetween = value; return this; } public ArrayList getAccountNoIn() { return AccountNoIn; } public V_DBStatement_TransQuery setAccountNoIn(ArrayList value) { this.AccountNoIn = value; return this; } public String getDebtorID() { return DebtorID; } public V_DBStatement_TransQuery setDebtorID(String value) { this.DebtorID = value; return this; } public String getDebtorIDStartsWith() { return DebtorIDStartsWith; } public V_DBStatement_TransQuery setDebtorIDStartsWith(String value) { this.DebtorIDStartsWith = value; return this; } public String getDebtorIDEndsWith() { return DebtorIDEndsWith; } public V_DBStatement_TransQuery setDebtorIDEndsWith(String value) { this.DebtorIDEndsWith = value; return this; } public String getDebtorIDContains() { return DebtorIDContains; } public V_DBStatement_TransQuery setDebtorIDContains(String value) { this.DebtorIDContains = value; return this; } public String getDebtorIDLike() { return DebtorIDLike; } public V_DBStatement_TransQuery setDebtorIDLike(String value) { this.DebtorIDLike = value; return this; } public ArrayList getDebtorIDBetween() { return DebtorIDBetween; } public V_DBStatement_TransQuery setDebtorIDBetween(ArrayList value) { this.DebtorIDBetween = value; return this; } public ArrayList getDebtorIDIn() { return DebtorIDIn; } public V_DBStatement_TransQuery setDebtorIDIn(ArrayList value) { this.DebtorIDIn = value; return this; } public Boolean isDebitCredit() { return DebitCredit; } public V_DBStatement_TransQuery setDebitCredit(Boolean value) { this.DebitCredit = value; return this; } public String getRef() { return Ref; } public V_DBStatement_TransQuery setRef(String value) { this.Ref = value; return this; } public String getRefStartsWith() { return RefStartsWith; } public V_DBStatement_TransQuery setRefStartsWith(String value) { this.RefStartsWith = value; return this; } public String getRefEndsWith() { return RefEndsWith; } public V_DBStatement_TransQuery setRefEndsWith(String value) { this.RefEndsWith = value; return this; } public String getRefContains() { return RefContains; } public V_DBStatement_TransQuery setRefContains(String value) { this.RefContains = value; return this; } public String getRefLike() { return RefLike; } public V_DBStatement_TransQuery setRefLike(String value) { this.RefLike = value; return this; } public ArrayList getRefBetween() { return RefBetween; } public V_DBStatement_TransQuery setRefBetween(ArrayList value) { this.RefBetween = value; return this; } public ArrayList getRefIn() { return RefIn; } public V_DBStatement_TransQuery setRefIn(ArrayList value) { this.RefIn = value; return this; } public String getRemark() { return Remark; } public V_DBStatement_TransQuery setRemark(String value) { this.Remark = value; return this; } public String getRemarkStartsWith() { return RemarkStartsWith; } public V_DBStatement_TransQuery setRemarkStartsWith(String value) { this.RemarkStartsWith = value; return this; } public String getRemarkEndsWith() { return RemarkEndsWith; } public V_DBStatement_TransQuery setRemarkEndsWith(String value) { this.RemarkEndsWith = value; return this; } public String getRemarkContains() { return RemarkContains; } public V_DBStatement_TransQuery setRemarkContains(String value) { this.RemarkContains = value; return this; } public String getRemarkLike() { return RemarkLike; } public V_DBStatement_TransQuery setRemarkLike(String value) { this.RemarkLike = value; return this; } public ArrayList getRemarkBetween() { return RemarkBetween; } public V_DBStatement_TransQuery setRemarkBetween(ArrayList value) { this.RemarkBetween = value; return this; } public ArrayList getRemarkIn() { return RemarkIn; } public V_DBStatement_TransQuery setRemarkIn(ArrayList value) { this.RemarkIn = value; return this; } public Date getTranDate() { return TranDate; } public V_DBStatement_TransQuery setTranDate(Date value) { this.TranDate = value; return this; } public Date getTranDateGreaterThanOrEqualTo() { return TranDateGreaterThanOrEqualTo; } public V_DBStatement_TransQuery setTranDateGreaterThanOrEqualTo(Date value) { this.TranDateGreaterThanOrEqualTo = value; return this; } public Date getTranDateGreaterThan() { return TranDateGreaterThan; } public V_DBStatement_TransQuery setTranDateGreaterThan(Date value) { this.TranDateGreaterThan = value; return this; } public Date getTranDateLessThan() { return TranDateLessThan; } public V_DBStatement_TransQuery setTranDateLessThan(Date value) { this.TranDateLessThan = value; return this; } public Date getTranDateLessThanOrEqualTo() { return TranDateLessThanOrEqualTo; } public V_DBStatement_TransQuery setTranDateLessThanOrEqualTo(Date value) { this.TranDateLessThanOrEqualTo = value; return this; } public Date getTranDateNotEqualTo() { return TranDateNotEqualTo; } public V_DBStatement_TransQuery setTranDateNotEqualTo(Date value) { this.TranDateNotEqualTo = value; return this; } public ArrayList getTranDateBetween() { return TranDateBetween; } public V_DBStatement_TransQuery setTranDateBetween(ArrayList value) { this.TranDateBetween = value; return this; } public ArrayList getTranDateIn() { return TranDateIn; } public V_DBStatement_TransQuery setTranDateIn(ArrayList value) { this.TranDateIn = value; return this; } public String getInvRemitNo() { return InvRemitNo; } public V_DBStatement_TransQuery setInvRemitNo(String value) { this.InvRemitNo = value; return this; } public String getInvRemitNoStartsWith() { return InvRemitNoStartsWith; } public V_DBStatement_TransQuery setInvRemitNoStartsWith(String value) { this.InvRemitNoStartsWith = value; return this; } public String getInvRemitNoEndsWith() { return InvRemitNoEndsWith; } public V_DBStatement_TransQuery setInvRemitNoEndsWith(String value) { this.InvRemitNoEndsWith = value; return this; } public String getInvRemitNoContains() { return InvRemitNoContains; } public V_DBStatement_TransQuery setInvRemitNoContains(String value) { this.InvRemitNoContains = value; return this; } public String getInvRemitNoLike() { return InvRemitNoLike; } public V_DBStatement_TransQuery setInvRemitNoLike(String value) { this.InvRemitNoLike = value; return this; } public ArrayList getInvRemitNoBetween() { return InvRemitNoBetween; } public V_DBStatement_TransQuery setInvRemitNoBetween(ArrayList value) { this.InvRemitNoBetween = value; return this; } public ArrayList getInvRemitNoIn() { return InvRemitNoIn; } public V_DBStatement_TransQuery setInvRemitNoIn(ArrayList value) { this.InvRemitNoIn = value; return this; } public BigDecimal getDiscountedAmount() { return DiscountedAmount; } public V_DBStatement_TransQuery setDiscountedAmount(BigDecimal value) { this.DiscountedAmount = value; return this; } public BigDecimal getDiscountedAmountGreaterThanOrEqualTo() { return DiscountedAmountGreaterThanOrEqualTo; } public V_DBStatement_TransQuery setDiscountedAmountGreaterThanOrEqualTo(BigDecimal value) { this.DiscountedAmountGreaterThanOrEqualTo = value; return this; } public BigDecimal getDiscountedAmountGreaterThan() { return DiscountedAmountGreaterThan; } public V_DBStatement_TransQuery setDiscountedAmountGreaterThan(BigDecimal value) { this.DiscountedAmountGreaterThan = value; return this; } public BigDecimal getDiscountedAmountLessThan() { return DiscountedAmountLessThan; } public V_DBStatement_TransQuery setDiscountedAmountLessThan(BigDecimal value) { this.DiscountedAmountLessThan = value; return this; } public BigDecimal getDiscountedAmountLessThanOrEqualTo() { return DiscountedAmountLessThanOrEqualTo; } public V_DBStatement_TransQuery setDiscountedAmountLessThanOrEqualTo(BigDecimal value) { this.DiscountedAmountLessThanOrEqualTo = value; return this; } public BigDecimal getDiscountedAmountNotEqualTo() { return DiscountedAmountNotEqualTo; } public V_DBStatement_TransQuery setDiscountedAmountNotEqualTo(BigDecimal value) { this.DiscountedAmountNotEqualTo = value; return this; } public ArrayList getDiscountedAmountBetween() { return DiscountedAmountBetween; } public V_DBStatement_TransQuery setDiscountedAmountBetween(ArrayList value) { this.DiscountedAmountBetween = value; return this; } public ArrayList getDiscountedAmountIn() { return DiscountedAmountIn; } public V_DBStatement_TransQuery setDiscountedAmountIn(ArrayList value) { this.DiscountedAmountIn = value; return this; } public BigDecimal getAllocatedAmount() { return AllocatedAmount; } public V_DBStatement_TransQuery setAllocatedAmount(BigDecimal value) { this.AllocatedAmount = value; return this; } public BigDecimal getAllocatedAmountGreaterThanOrEqualTo() { return AllocatedAmountGreaterThanOrEqualTo; } public V_DBStatement_TransQuery setAllocatedAmountGreaterThanOrEqualTo(BigDecimal value) { this.AllocatedAmountGreaterThanOrEqualTo = value; return this; } public BigDecimal getAllocatedAmountGreaterThan() { return AllocatedAmountGreaterThan; } public V_DBStatement_TransQuery setAllocatedAmountGreaterThan(BigDecimal value) { this.AllocatedAmountGreaterThan = value; return this; } public BigDecimal getAllocatedAmountLessThan() { return AllocatedAmountLessThan; } public V_DBStatement_TransQuery setAllocatedAmountLessThan(BigDecimal value) { this.AllocatedAmountLessThan = value; return this; } public BigDecimal getAllocatedAmountLessThanOrEqualTo() { return AllocatedAmountLessThanOrEqualTo; } public V_DBStatement_TransQuery setAllocatedAmountLessThanOrEqualTo(BigDecimal value) { this.AllocatedAmountLessThanOrEqualTo = value; return this; } public BigDecimal getAllocatedAmountNotEqualTo() { return AllocatedAmountNotEqualTo; } public V_DBStatement_TransQuery setAllocatedAmountNotEqualTo(BigDecimal value) { this.AllocatedAmountNotEqualTo = value; return this; } public ArrayList getAllocatedAmountBetween() { return AllocatedAmountBetween; } public V_DBStatement_TransQuery setAllocatedAmountBetween(ArrayList value) { this.AllocatedAmountBetween = value; return this; } public ArrayList getAllocatedAmountIn() { return AllocatedAmountIn; } public V_DBStatement_TransQuery setAllocatedAmountIn(ArrayList value) { this.AllocatedAmountIn = value; return this; } public Short getSubType() { return SubType; } public V_DBStatement_TransQuery setSubType(Short value) { this.SubType = value; return this; } public Short getSubTypeGreaterThanOrEqualTo() { return SubTypeGreaterThanOrEqualTo; } public V_DBStatement_TransQuery setSubTypeGreaterThanOrEqualTo(Short value) { this.SubTypeGreaterThanOrEqualTo = value; return this; } public Short getSubTypeGreaterThan() { return SubTypeGreaterThan; } public V_DBStatement_TransQuery setSubTypeGreaterThan(Short value) { this.SubTypeGreaterThan = value; return this; } public Short getSubTypeLessThan() { return SubTypeLessThan; } public V_DBStatement_TransQuery setSubTypeLessThan(Short value) { this.SubTypeLessThan = value; return this; } public Short getSubTypeLessThanOrEqualTo() { return SubTypeLessThanOrEqualTo; } public V_DBStatement_TransQuery setSubTypeLessThanOrEqualTo(Short value) { this.SubTypeLessThanOrEqualTo = value; return this; } public Short getSubTypeNotEqualTo() { return SubTypeNotEqualTo; } public V_DBStatement_TransQuery setSubTypeNotEqualTo(Short value) { this.SubTypeNotEqualTo = value; return this; } public ArrayList getSubTypeBetween() { return SubTypeBetween; } public V_DBStatement_TransQuery setSubTypeBetween(ArrayList value) { this.SubTypeBetween = value; return this; } public ArrayList getSubTypeIn() { return SubTypeIn; } public V_DBStatement_TransQuery setSubTypeIn(ArrayList value) { this.SubTypeIn = value; return this; } public Boolean isAgedOut() { return AgedOut; } public V_DBStatement_TransQuery setAgedOut(Boolean value) { this.AgedOut = value; return this; } public String getTransID() { return TransID; } public V_DBStatement_TransQuery setTransID(String value) { this.TransID = value; return this; } public String getTransIDStartsWith() { return TransIDStartsWith; } public V_DBStatement_TransQuery setTransIDStartsWith(String value) { this.TransIDStartsWith = value; return this; } public String getTransIDEndsWith() { return TransIDEndsWith; } public V_DBStatement_TransQuery setTransIDEndsWith(String value) { this.TransIDEndsWith = value; return this; } public String getTransIDContains() { return TransIDContains; } public V_DBStatement_TransQuery setTransIDContains(String value) { this.TransIDContains = value; return this; } public String getTransIDLike() { return TransIDLike; } public V_DBStatement_TransQuery setTransIDLike(String value) { this.TransIDLike = value; return this; } public ArrayList getTransIDBetween() { return TransIDBetween; } public V_DBStatement_TransQuery setTransIDBetween(ArrayList value) { this.TransIDBetween = value; return this; } public ArrayList getTransIDIn() { return TransIDIn; } public V_DBStatement_TransQuery setTransIDIn(ArrayList value) { this.TransIDIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class V_DBStatement_TransAsAtQuery extends QueryDb implements IReturn> { public String AccountNo = null; public String AccountNoStartsWith = null; public String AccountNoEndsWith = null; public String AccountNoContains = null; public String AccountNoLike = null; public ArrayList AccountNoBetween = null; public ArrayList AccountNoIn = null; public String DebtorID = null; public String DebtorIDStartsWith = null; public String DebtorIDEndsWith = null; public String DebtorIDContains = null; public String DebtorIDLike = null; public ArrayList DebtorIDBetween = null; public ArrayList DebtorIDIn = null; public String TransID = null; public String TransIDStartsWith = null; public String TransIDEndsWith = null; public String TransIDContains = null; public String TransIDLike = null; public ArrayList TransIDBetween = null; public ArrayList TransIDIn = null; public Boolean DebitCredit = null; public String Ref = null; public String RefStartsWith = null; public String RefEndsWith = null; public String RefContains = null; public String RefLike = null; public ArrayList RefBetween = null; public ArrayList RefIn = null; public String Remark = null; public String RemarkStartsWith = null; public String RemarkEndsWith = null; public String RemarkContains = null; public String RemarkLike = null; public ArrayList RemarkBetween = null; public ArrayList RemarkIn = null; public Date TranDate = null; public Date TranDateGreaterThanOrEqualTo = null; public Date TranDateGreaterThan = null; public Date TranDateLessThan = null; public Date TranDateLessThanOrEqualTo = null; public Date TranDateNotEqualTo = null; public ArrayList TranDateBetween = null; public ArrayList TranDateIn = null; public String InvRemitNo = null; public String InvRemitNoStartsWith = null; public String InvRemitNoEndsWith = null; public String InvRemitNoContains = null; public String InvRemitNoLike = null; public ArrayList InvRemitNoBetween = null; public ArrayList InvRemitNoIn = null; public BigDecimal DiscountedAmount = null; public BigDecimal DiscountedAmountGreaterThanOrEqualTo = null; public BigDecimal DiscountedAmountGreaterThan = null; public BigDecimal DiscountedAmountLessThan = null; public BigDecimal DiscountedAmountLessThanOrEqualTo = null; public BigDecimal DiscountedAmountNotEqualTo = null; public ArrayList DiscountedAmountBetween = null; public ArrayList DiscountedAmountIn = null; public BigDecimal AllocatedAmount = null; public BigDecimal AllocatedAmountGreaterThanOrEqualTo = null; public BigDecimal AllocatedAmountGreaterThan = null; public BigDecimal AllocatedAmountLessThan = null; public BigDecimal AllocatedAmountLessThanOrEqualTo = null; public BigDecimal AllocatedAmountNotEqualTo = null; public ArrayList AllocatedAmountBetween = null; public ArrayList AllocatedAmountIn = null; public Short SubType = null; public Short SubTypeGreaterThanOrEqualTo = null; public Short SubTypeGreaterThan = null; public Short SubTypeLessThan = null; public Short SubTypeLessThanOrEqualTo = null; public Short SubTypeNotEqualTo = null; public ArrayList SubTypeBetween = null; public ArrayList SubTypeIn = null; public Boolean AgedOut = null; public String getAccountNo() { return AccountNo; } public V_DBStatement_TransAsAtQuery setAccountNo(String value) { this.AccountNo = value; return this; } public String getAccountNoStartsWith() { return AccountNoStartsWith; } public V_DBStatement_TransAsAtQuery setAccountNoStartsWith(String value) { this.AccountNoStartsWith = value; return this; } public String getAccountNoEndsWith() { return AccountNoEndsWith; } public V_DBStatement_TransAsAtQuery setAccountNoEndsWith(String value) { this.AccountNoEndsWith = value; return this; } public String getAccountNoContains() { return AccountNoContains; } public V_DBStatement_TransAsAtQuery setAccountNoContains(String value) { this.AccountNoContains = value; return this; } public String getAccountNoLike() { return AccountNoLike; } public V_DBStatement_TransAsAtQuery setAccountNoLike(String value) { this.AccountNoLike = value; return this; } public ArrayList getAccountNoBetween() { return AccountNoBetween; } public V_DBStatement_TransAsAtQuery setAccountNoBetween(ArrayList value) { this.AccountNoBetween = value; return this; } public ArrayList getAccountNoIn() { return AccountNoIn; } public V_DBStatement_TransAsAtQuery setAccountNoIn(ArrayList value) { this.AccountNoIn = value; return this; } public String getDebtorID() { return DebtorID; } public V_DBStatement_TransAsAtQuery setDebtorID(String value) { this.DebtorID = value; return this; } public String getDebtorIDStartsWith() { return DebtorIDStartsWith; } public V_DBStatement_TransAsAtQuery setDebtorIDStartsWith(String value) { this.DebtorIDStartsWith = value; return this; } public String getDebtorIDEndsWith() { return DebtorIDEndsWith; } public V_DBStatement_TransAsAtQuery setDebtorIDEndsWith(String value) { this.DebtorIDEndsWith = value; return this; } public String getDebtorIDContains() { return DebtorIDContains; } public V_DBStatement_TransAsAtQuery setDebtorIDContains(String value) { this.DebtorIDContains = value; return this; } public String getDebtorIDLike() { return DebtorIDLike; } public V_DBStatement_TransAsAtQuery setDebtorIDLike(String value) { this.DebtorIDLike = value; return this; } public ArrayList getDebtorIDBetween() { return DebtorIDBetween; } public V_DBStatement_TransAsAtQuery setDebtorIDBetween(ArrayList value) { this.DebtorIDBetween = value; return this; } public ArrayList getDebtorIDIn() { return DebtorIDIn; } public V_DBStatement_TransAsAtQuery setDebtorIDIn(ArrayList value) { this.DebtorIDIn = value; return this; } public String getTransID() { return TransID; } public V_DBStatement_TransAsAtQuery setTransID(String value) { this.TransID = value; return this; } public String getTransIDStartsWith() { return TransIDStartsWith; } public V_DBStatement_TransAsAtQuery setTransIDStartsWith(String value) { this.TransIDStartsWith = value; return this; } public String getTransIDEndsWith() { return TransIDEndsWith; } public V_DBStatement_TransAsAtQuery setTransIDEndsWith(String value) { this.TransIDEndsWith = value; return this; } public String getTransIDContains() { return TransIDContains; } public V_DBStatement_TransAsAtQuery setTransIDContains(String value) { this.TransIDContains = value; return this; } public String getTransIDLike() { return TransIDLike; } public V_DBStatement_TransAsAtQuery setTransIDLike(String value) { this.TransIDLike = value; return this; } public ArrayList getTransIDBetween() { return TransIDBetween; } public V_DBStatement_TransAsAtQuery setTransIDBetween(ArrayList value) { this.TransIDBetween = value; return this; } public ArrayList getTransIDIn() { return TransIDIn; } public V_DBStatement_TransAsAtQuery setTransIDIn(ArrayList value) { this.TransIDIn = value; return this; } public Boolean isDebitCredit() { return DebitCredit; } public V_DBStatement_TransAsAtQuery setDebitCredit(Boolean value) { this.DebitCredit = value; return this; } public String getRef() { return Ref; } public V_DBStatement_TransAsAtQuery setRef(String value) { this.Ref = value; return this; } public String getRefStartsWith() { return RefStartsWith; } public V_DBStatement_TransAsAtQuery setRefStartsWith(String value) { this.RefStartsWith = value; return this; } public String getRefEndsWith() { return RefEndsWith; } public V_DBStatement_TransAsAtQuery setRefEndsWith(String value) { this.RefEndsWith = value; return this; } public String getRefContains() { return RefContains; } public V_DBStatement_TransAsAtQuery setRefContains(String value) { this.RefContains = value; return this; } public String getRefLike() { return RefLike; } public V_DBStatement_TransAsAtQuery setRefLike(String value) { this.RefLike = value; return this; } public ArrayList getRefBetween() { return RefBetween; } public V_DBStatement_TransAsAtQuery setRefBetween(ArrayList value) { this.RefBetween = value; return this; } public ArrayList getRefIn() { return RefIn; } public V_DBStatement_TransAsAtQuery setRefIn(ArrayList value) { this.RefIn = value; return this; } public String getRemark() { return Remark; } public V_DBStatement_TransAsAtQuery setRemark(String value) { this.Remark = value; return this; } public String getRemarkStartsWith() { return RemarkStartsWith; } public V_DBStatement_TransAsAtQuery setRemarkStartsWith(String value) { this.RemarkStartsWith = value; return this; } public String getRemarkEndsWith() { return RemarkEndsWith; } public V_DBStatement_TransAsAtQuery setRemarkEndsWith(String value) { this.RemarkEndsWith = value; return this; } public String getRemarkContains() { return RemarkContains; } public V_DBStatement_TransAsAtQuery setRemarkContains(String value) { this.RemarkContains = value; return this; } public String getRemarkLike() { return RemarkLike; } public V_DBStatement_TransAsAtQuery setRemarkLike(String value) { this.RemarkLike = value; return this; } public ArrayList getRemarkBetween() { return RemarkBetween; } public V_DBStatement_TransAsAtQuery setRemarkBetween(ArrayList value) { this.RemarkBetween = value; return this; } public ArrayList getRemarkIn() { return RemarkIn; } public V_DBStatement_TransAsAtQuery setRemarkIn(ArrayList value) { this.RemarkIn = value; return this; } public Date getTranDate() { return TranDate; } public V_DBStatement_TransAsAtQuery setTranDate(Date value) { this.TranDate = value; return this; } public Date getTranDateGreaterThanOrEqualTo() { return TranDateGreaterThanOrEqualTo; } public V_DBStatement_TransAsAtQuery setTranDateGreaterThanOrEqualTo(Date value) { this.TranDateGreaterThanOrEqualTo = value; return this; } public Date getTranDateGreaterThan() { return TranDateGreaterThan; } public V_DBStatement_TransAsAtQuery setTranDateGreaterThan(Date value) { this.TranDateGreaterThan = value; return this; } public Date getTranDateLessThan() { return TranDateLessThan; } public V_DBStatement_TransAsAtQuery setTranDateLessThan(Date value) { this.TranDateLessThan = value; return this; } public Date getTranDateLessThanOrEqualTo() { return TranDateLessThanOrEqualTo; } public V_DBStatement_TransAsAtQuery setTranDateLessThanOrEqualTo(Date value) { this.TranDateLessThanOrEqualTo = value; return this; } public Date getTranDateNotEqualTo() { return TranDateNotEqualTo; } public V_DBStatement_TransAsAtQuery setTranDateNotEqualTo(Date value) { this.TranDateNotEqualTo = value; return this; } public ArrayList getTranDateBetween() { return TranDateBetween; } public V_DBStatement_TransAsAtQuery setTranDateBetween(ArrayList value) { this.TranDateBetween = value; return this; } public ArrayList getTranDateIn() { return TranDateIn; } public V_DBStatement_TransAsAtQuery setTranDateIn(ArrayList value) { this.TranDateIn = value; return this; } public String getInvRemitNo() { return InvRemitNo; } public V_DBStatement_TransAsAtQuery setInvRemitNo(String value) { this.InvRemitNo = value; return this; } public String getInvRemitNoStartsWith() { return InvRemitNoStartsWith; } public V_DBStatement_TransAsAtQuery setInvRemitNoStartsWith(String value) { this.InvRemitNoStartsWith = value; return this; } public String getInvRemitNoEndsWith() { return InvRemitNoEndsWith; } public V_DBStatement_TransAsAtQuery setInvRemitNoEndsWith(String value) { this.InvRemitNoEndsWith = value; return this; } public String getInvRemitNoContains() { return InvRemitNoContains; } public V_DBStatement_TransAsAtQuery setInvRemitNoContains(String value) { this.InvRemitNoContains = value; return this; } public String getInvRemitNoLike() { return InvRemitNoLike; } public V_DBStatement_TransAsAtQuery setInvRemitNoLike(String value) { this.InvRemitNoLike = value; return this; } public ArrayList getInvRemitNoBetween() { return InvRemitNoBetween; } public V_DBStatement_TransAsAtQuery setInvRemitNoBetween(ArrayList value) { this.InvRemitNoBetween = value; return this; } public ArrayList getInvRemitNoIn() { return InvRemitNoIn; } public V_DBStatement_TransAsAtQuery setInvRemitNoIn(ArrayList value) { this.InvRemitNoIn = value; return this; } public BigDecimal getDiscountedAmount() { return DiscountedAmount; } public V_DBStatement_TransAsAtQuery setDiscountedAmount(BigDecimal value) { this.DiscountedAmount = value; return this; } public BigDecimal getDiscountedAmountGreaterThanOrEqualTo() { return DiscountedAmountGreaterThanOrEqualTo; } public V_DBStatement_TransAsAtQuery setDiscountedAmountGreaterThanOrEqualTo(BigDecimal value) { this.DiscountedAmountGreaterThanOrEqualTo = value; return this; } public BigDecimal getDiscountedAmountGreaterThan() { return DiscountedAmountGreaterThan; } public V_DBStatement_TransAsAtQuery setDiscountedAmountGreaterThan(BigDecimal value) { this.DiscountedAmountGreaterThan = value; return this; } public BigDecimal getDiscountedAmountLessThan() { return DiscountedAmountLessThan; } public V_DBStatement_TransAsAtQuery setDiscountedAmountLessThan(BigDecimal value) { this.DiscountedAmountLessThan = value; return this; } public BigDecimal getDiscountedAmountLessThanOrEqualTo() { return DiscountedAmountLessThanOrEqualTo; } public V_DBStatement_TransAsAtQuery setDiscountedAmountLessThanOrEqualTo(BigDecimal value) { this.DiscountedAmountLessThanOrEqualTo = value; return this; } public BigDecimal getDiscountedAmountNotEqualTo() { return DiscountedAmountNotEqualTo; } public V_DBStatement_TransAsAtQuery setDiscountedAmountNotEqualTo(BigDecimal value) { this.DiscountedAmountNotEqualTo = value; return this; } public ArrayList getDiscountedAmountBetween() { return DiscountedAmountBetween; } public V_DBStatement_TransAsAtQuery setDiscountedAmountBetween(ArrayList value) { this.DiscountedAmountBetween = value; return this; } public ArrayList getDiscountedAmountIn() { return DiscountedAmountIn; } public V_DBStatement_TransAsAtQuery setDiscountedAmountIn(ArrayList value) { this.DiscountedAmountIn = value; return this; } public BigDecimal getAllocatedAmount() { return AllocatedAmount; } public V_DBStatement_TransAsAtQuery setAllocatedAmount(BigDecimal value) { this.AllocatedAmount = value; return this; } public BigDecimal getAllocatedAmountGreaterThanOrEqualTo() { return AllocatedAmountGreaterThanOrEqualTo; } public V_DBStatement_TransAsAtQuery setAllocatedAmountGreaterThanOrEqualTo(BigDecimal value) { this.AllocatedAmountGreaterThanOrEqualTo = value; return this; } public BigDecimal getAllocatedAmountGreaterThan() { return AllocatedAmountGreaterThan; } public V_DBStatement_TransAsAtQuery setAllocatedAmountGreaterThan(BigDecimal value) { this.AllocatedAmountGreaterThan = value; return this; } public BigDecimal getAllocatedAmountLessThan() { return AllocatedAmountLessThan; } public V_DBStatement_TransAsAtQuery setAllocatedAmountLessThan(BigDecimal value) { this.AllocatedAmountLessThan = value; return this; } public BigDecimal getAllocatedAmountLessThanOrEqualTo() { return AllocatedAmountLessThanOrEqualTo; } public V_DBStatement_TransAsAtQuery setAllocatedAmountLessThanOrEqualTo(BigDecimal value) { this.AllocatedAmountLessThanOrEqualTo = value; return this; } public BigDecimal getAllocatedAmountNotEqualTo() { return AllocatedAmountNotEqualTo; } public V_DBStatement_TransAsAtQuery setAllocatedAmountNotEqualTo(BigDecimal value) { this.AllocatedAmountNotEqualTo = value; return this; } public ArrayList getAllocatedAmountBetween() { return AllocatedAmountBetween; } public V_DBStatement_TransAsAtQuery setAllocatedAmountBetween(ArrayList value) { this.AllocatedAmountBetween = value; return this; } public ArrayList getAllocatedAmountIn() { return AllocatedAmountIn; } public V_DBStatement_TransAsAtQuery setAllocatedAmountIn(ArrayList value) { this.AllocatedAmountIn = value; return this; } public Short getSubType() { return SubType; } public V_DBStatement_TransAsAtQuery setSubType(Short value) { this.SubType = value; return this; } public Short getSubTypeGreaterThanOrEqualTo() { return SubTypeGreaterThanOrEqualTo; } public V_DBStatement_TransAsAtQuery setSubTypeGreaterThanOrEqualTo(Short value) { this.SubTypeGreaterThanOrEqualTo = value; return this; } public Short getSubTypeGreaterThan() { return SubTypeGreaterThan; } public V_DBStatement_TransAsAtQuery setSubTypeGreaterThan(Short value) { this.SubTypeGreaterThan = value; return this; } public Short getSubTypeLessThan() { return SubTypeLessThan; } public V_DBStatement_TransAsAtQuery setSubTypeLessThan(Short value) { this.SubTypeLessThan = value; return this; } public Short getSubTypeLessThanOrEqualTo() { return SubTypeLessThanOrEqualTo; } public V_DBStatement_TransAsAtQuery setSubTypeLessThanOrEqualTo(Short value) { this.SubTypeLessThanOrEqualTo = value; return this; } public Short getSubTypeNotEqualTo() { return SubTypeNotEqualTo; } public V_DBStatement_TransAsAtQuery setSubTypeNotEqualTo(Short value) { this.SubTypeNotEqualTo = value; return this; } public ArrayList getSubTypeBetween() { return SubTypeBetween; } public V_DBStatement_TransAsAtQuery setSubTypeBetween(ArrayList value) { this.SubTypeBetween = value; return this; } public ArrayList getSubTypeIn() { return SubTypeIn; } public V_DBStatement_TransAsAtQuery setSubTypeIn(ArrayList value) { this.SubTypeIn = value; return this; } public Boolean isAgedOut() { return AgedOut; } public V_DBStatement_TransAsAtQuery setAgedOut(Boolean value) { this.AgedOut = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class v_DebtorBalanceInformationQuery extends QueryDb implements IReturn> { public String DebtorID = null; public String DebtorIDStartsWith = null; public String DebtorIDEndsWith = null; public String DebtorIDContains = null; public String DebtorIDLike = null; public ArrayList DebtorIDBetween = null; public ArrayList DebtorIDIn = null; public Date DueDate = null; public Date DueDateGreaterThanOrEqualTo = null; public Date DueDateGreaterThan = null; public Date DueDateLessThan = null; public Date DueDateLessThanOrEqualTo = null; public Date DueDateNotEqualTo = null; public ArrayList DueDateBetween = null; public ArrayList DueDateIn = null; public BigDecimal Balance = null; public BigDecimal BalanceGreaterThanOrEqualTo = null; public BigDecimal BalanceGreaterThan = null; public BigDecimal BalanceLessThan = null; public BigDecimal BalanceLessThanOrEqualTo = null; public BigDecimal BalanceNotEqualTo = null; public ArrayList BalanceBetween = null; public ArrayList BalanceIn = null; public String Source = null; public String SourceStartsWith = null; public String SourceEndsWith = null; public String SourceContains = null; public String SourceLike = null; public ArrayList SourceBetween = null; public ArrayList SourceIn = null; public String getDebtorID() { return DebtorID; } public v_DebtorBalanceInformationQuery setDebtorID(String value) { this.DebtorID = value; return this; } public String getDebtorIDStartsWith() { return DebtorIDStartsWith; } public v_DebtorBalanceInformationQuery setDebtorIDStartsWith(String value) { this.DebtorIDStartsWith = value; return this; } public String getDebtorIDEndsWith() { return DebtorIDEndsWith; } public v_DebtorBalanceInformationQuery setDebtorIDEndsWith(String value) { this.DebtorIDEndsWith = value; return this; } public String getDebtorIDContains() { return DebtorIDContains; } public v_DebtorBalanceInformationQuery setDebtorIDContains(String value) { this.DebtorIDContains = value; return this; } public String getDebtorIDLike() { return DebtorIDLike; } public v_DebtorBalanceInformationQuery setDebtorIDLike(String value) { this.DebtorIDLike = value; return this; } public ArrayList getDebtorIDBetween() { return DebtorIDBetween; } public v_DebtorBalanceInformationQuery setDebtorIDBetween(ArrayList value) { this.DebtorIDBetween = value; return this; } public ArrayList getDebtorIDIn() { return DebtorIDIn; } public v_DebtorBalanceInformationQuery setDebtorIDIn(ArrayList value) { this.DebtorIDIn = value; return this; } public Date getDueDate() { return DueDate; } public v_DebtorBalanceInformationQuery setDueDate(Date value) { this.DueDate = value; return this; } public Date getDueDateGreaterThanOrEqualTo() { return DueDateGreaterThanOrEqualTo; } public v_DebtorBalanceInformationQuery setDueDateGreaterThanOrEqualTo(Date value) { this.DueDateGreaterThanOrEqualTo = value; return this; } public Date getDueDateGreaterThan() { return DueDateGreaterThan; } public v_DebtorBalanceInformationQuery setDueDateGreaterThan(Date value) { this.DueDateGreaterThan = value; return this; } public Date getDueDateLessThan() { return DueDateLessThan; } public v_DebtorBalanceInformationQuery setDueDateLessThan(Date value) { this.DueDateLessThan = value; return this; } public Date getDueDateLessThanOrEqualTo() { return DueDateLessThanOrEqualTo; } public v_DebtorBalanceInformationQuery setDueDateLessThanOrEqualTo(Date value) { this.DueDateLessThanOrEqualTo = value; return this; } public Date getDueDateNotEqualTo() { return DueDateNotEqualTo; } public v_DebtorBalanceInformationQuery setDueDateNotEqualTo(Date value) { this.DueDateNotEqualTo = value; return this; } public ArrayList getDueDateBetween() { return DueDateBetween; } public v_DebtorBalanceInformationQuery setDueDateBetween(ArrayList value) { this.DueDateBetween = value; return this; } public ArrayList getDueDateIn() { return DueDateIn; } public v_DebtorBalanceInformationQuery setDueDateIn(ArrayList value) { this.DueDateIn = value; return this; } public BigDecimal getBalance() { return Balance; } public v_DebtorBalanceInformationQuery setBalance(BigDecimal value) { this.Balance = value; return this; } public BigDecimal getBalanceGreaterThanOrEqualTo() { return BalanceGreaterThanOrEqualTo; } public v_DebtorBalanceInformationQuery setBalanceGreaterThanOrEqualTo(BigDecimal value) { this.BalanceGreaterThanOrEqualTo = value; return this; } public BigDecimal getBalanceGreaterThan() { return BalanceGreaterThan; } public v_DebtorBalanceInformationQuery setBalanceGreaterThan(BigDecimal value) { this.BalanceGreaterThan = value; return this; } public BigDecimal getBalanceLessThan() { return BalanceLessThan; } public v_DebtorBalanceInformationQuery setBalanceLessThan(BigDecimal value) { this.BalanceLessThan = value; return this; } public BigDecimal getBalanceLessThanOrEqualTo() { return BalanceLessThanOrEqualTo; } public v_DebtorBalanceInformationQuery setBalanceLessThanOrEqualTo(BigDecimal value) { this.BalanceLessThanOrEqualTo = value; return this; } public BigDecimal getBalanceNotEqualTo() { return BalanceNotEqualTo; } public v_DebtorBalanceInformationQuery setBalanceNotEqualTo(BigDecimal value) { this.BalanceNotEqualTo = value; return this; } public ArrayList getBalanceBetween() { return BalanceBetween; } public v_DebtorBalanceInformationQuery setBalanceBetween(ArrayList value) { this.BalanceBetween = value; return this; } public ArrayList getBalanceIn() { return BalanceIn; } public v_DebtorBalanceInformationQuery setBalanceIn(ArrayList value) { this.BalanceIn = value; return this; } public String getSource() { return Source; } public v_DebtorBalanceInformationQuery setSource(String value) { this.Source = value; return this; } public String getSourceStartsWith() { return SourceStartsWith; } public v_DebtorBalanceInformationQuery setSourceStartsWith(String value) { this.SourceStartsWith = value; return this; } public String getSourceEndsWith() { return SourceEndsWith; } public v_DebtorBalanceInformationQuery setSourceEndsWith(String value) { this.SourceEndsWith = value; return this; } public String getSourceContains() { return SourceContains; } public v_DebtorBalanceInformationQuery setSourceContains(String value) { this.SourceContains = value; return this; } public String getSourceLike() { return SourceLike; } public v_DebtorBalanceInformationQuery setSourceLike(String value) { this.SourceLike = value; return this; } public ArrayList getSourceBetween() { return SourceBetween; } public v_DebtorBalanceInformationQuery setSourceBetween(ArrayList value) { this.SourceBetween = value; return this; } public ArrayList getSourceIn() { return SourceIn; } public v_DebtorBalanceInformationQuery setSourceIn(ArrayList value) { this.SourceIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class v_DebtorsQuery extends QueryDb implements IReturn> { public String DebtorID = null; public String DebtorIDStartsWith = null; public String DebtorIDEndsWith = null; public String DebtorIDContains = null; public String DebtorIDLike = null; public ArrayList DebtorIDBetween = null; public ArrayList DebtorIDIn = null; public String DebtorAccountnoAndName = null; public String DebtorAccountnoAndNameStartsWith = null; public String DebtorAccountnoAndNameEndsWith = null; public String DebtorAccountnoAndNameContains = null; public String DebtorAccountnoAndNameLike = null; public ArrayList DebtorAccountnoAndNameBetween = null; public ArrayList DebtorAccountnoAndNameIn = null; public String ClassificationID = null; public String ClassificationIDStartsWith = null; public String ClassificationIDEndsWith = null; public String ClassificationIDContains = null; public String ClassificationIDLike = null; public ArrayList ClassificationIDBetween = null; public ArrayList ClassificationIDIn = null; public String getDebtorID() { return DebtorID; } public v_DebtorsQuery setDebtorID(String value) { this.DebtorID = value; return this; } public String getDebtorIDStartsWith() { return DebtorIDStartsWith; } public v_DebtorsQuery setDebtorIDStartsWith(String value) { this.DebtorIDStartsWith = value; return this; } public String getDebtorIDEndsWith() { return DebtorIDEndsWith; } public v_DebtorsQuery setDebtorIDEndsWith(String value) { this.DebtorIDEndsWith = value; return this; } public String getDebtorIDContains() { return DebtorIDContains; } public v_DebtorsQuery setDebtorIDContains(String value) { this.DebtorIDContains = value; return this; } public String getDebtorIDLike() { return DebtorIDLike; } public v_DebtorsQuery setDebtorIDLike(String value) { this.DebtorIDLike = value; return this; } public ArrayList getDebtorIDBetween() { return DebtorIDBetween; } public v_DebtorsQuery setDebtorIDBetween(ArrayList value) { this.DebtorIDBetween = value; return this; } public ArrayList getDebtorIDIn() { return DebtorIDIn; } public v_DebtorsQuery setDebtorIDIn(ArrayList value) { this.DebtorIDIn = value; return this; } public String getDebtorAccountnoAndName() { return DebtorAccountnoAndName; } public v_DebtorsQuery setDebtorAccountnoAndName(String value) { this.DebtorAccountnoAndName = value; return this; } public String getDebtorAccountnoAndNameStartsWith() { return DebtorAccountnoAndNameStartsWith; } public v_DebtorsQuery setDebtorAccountnoAndNameStartsWith(String value) { this.DebtorAccountnoAndNameStartsWith = value; return this; } public String getDebtorAccountnoAndNameEndsWith() { return DebtorAccountnoAndNameEndsWith; } public v_DebtorsQuery setDebtorAccountnoAndNameEndsWith(String value) { this.DebtorAccountnoAndNameEndsWith = value; return this; } public String getDebtorAccountnoAndNameContains() { return DebtorAccountnoAndNameContains; } public v_DebtorsQuery setDebtorAccountnoAndNameContains(String value) { this.DebtorAccountnoAndNameContains = value; return this; } public String getDebtorAccountnoAndNameLike() { return DebtorAccountnoAndNameLike; } public v_DebtorsQuery setDebtorAccountnoAndNameLike(String value) { this.DebtorAccountnoAndNameLike = value; return this; } public ArrayList getDebtorAccountnoAndNameBetween() { return DebtorAccountnoAndNameBetween; } public v_DebtorsQuery setDebtorAccountnoAndNameBetween(ArrayList value) { this.DebtorAccountnoAndNameBetween = value; return this; } public ArrayList getDebtorAccountnoAndNameIn() { return DebtorAccountnoAndNameIn; } public v_DebtorsQuery setDebtorAccountnoAndNameIn(ArrayList value) { this.DebtorAccountnoAndNameIn = value; return this; } public String getClassificationID() { return ClassificationID; } public v_DebtorsQuery setClassificationID(String value) { this.ClassificationID = value; return this; } public String getClassificationIDStartsWith() { return ClassificationIDStartsWith; } public v_DebtorsQuery setClassificationIDStartsWith(String value) { this.ClassificationIDStartsWith = value; return this; } public String getClassificationIDEndsWith() { return ClassificationIDEndsWith; } public v_DebtorsQuery setClassificationIDEndsWith(String value) { this.ClassificationIDEndsWith = value; return this; } public String getClassificationIDContains() { return ClassificationIDContains; } public v_DebtorsQuery setClassificationIDContains(String value) { this.ClassificationIDContains = value; return this; } public String getClassificationIDLike() { return ClassificationIDLike; } public v_DebtorsQuery setClassificationIDLike(String value) { this.ClassificationIDLike = value; return this; } public ArrayList getClassificationIDBetween() { return ClassificationIDBetween; } public v_DebtorsQuery setClassificationIDBetween(ArrayList value) { this.ClassificationIDBetween = value; return this; } public ArrayList getClassificationIDIn() { return ClassificationIDIn; } public v_DebtorsQuery setClassificationIDIn(ArrayList value) { this.ClassificationIDIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class v_DebtorTransactionSourcesQuery extends QueryDb implements IReturn> { public Integer SourceNo = null; public Integer SourceNoGreaterThanOrEqualTo = null; public Integer SourceNoGreaterThan = null; public Integer SourceNoLessThan = null; public Integer SourceNoLessThanOrEqualTo = null; public Integer SourceNoNotEqualTo = null; public ArrayList SourceNoBetween = null; public ArrayList SourceNoIn = null; public String SourceName = null; public String SourceNameStartsWith = null; public String SourceNameEndsWith = null; public String SourceNameContains = null; public String SourceNameLike = null; public ArrayList SourceNameBetween = null; public ArrayList SourceNameIn = null; public Integer getSourceNo() { return SourceNo; } public v_DebtorTransactionSourcesQuery setSourceNo(Integer value) { this.SourceNo = value; return this; } public Integer getSourceNoGreaterThanOrEqualTo() { return SourceNoGreaterThanOrEqualTo; } public v_DebtorTransactionSourcesQuery setSourceNoGreaterThanOrEqualTo(Integer value) { this.SourceNoGreaterThanOrEqualTo = value; return this; } public Integer getSourceNoGreaterThan() { return SourceNoGreaterThan; } public v_DebtorTransactionSourcesQuery setSourceNoGreaterThan(Integer value) { this.SourceNoGreaterThan = value; return this; } public Integer getSourceNoLessThan() { return SourceNoLessThan; } public v_DebtorTransactionSourcesQuery setSourceNoLessThan(Integer value) { this.SourceNoLessThan = value; return this; } public Integer getSourceNoLessThanOrEqualTo() { return SourceNoLessThanOrEqualTo; } public v_DebtorTransactionSourcesQuery setSourceNoLessThanOrEqualTo(Integer value) { this.SourceNoLessThanOrEqualTo = value; return this; } public Integer getSourceNoNotEqualTo() { return SourceNoNotEqualTo; } public v_DebtorTransactionSourcesQuery setSourceNoNotEqualTo(Integer value) { this.SourceNoNotEqualTo = value; return this; } public ArrayList getSourceNoBetween() { return SourceNoBetween; } public v_DebtorTransactionSourcesQuery setSourceNoBetween(ArrayList value) { this.SourceNoBetween = value; return this; } public ArrayList getSourceNoIn() { return SourceNoIn; } public v_DebtorTransactionSourcesQuery setSourceNoIn(ArrayList value) { this.SourceNoIn = value; return this; } public String getSourceName() { return SourceName; } public v_DebtorTransactionSourcesQuery setSourceName(String value) { this.SourceName = value; return this; } public String getSourceNameStartsWith() { return SourceNameStartsWith; } public v_DebtorTransactionSourcesQuery setSourceNameStartsWith(String value) { this.SourceNameStartsWith = value; return this; } public String getSourceNameEndsWith() { return SourceNameEndsWith; } public v_DebtorTransactionSourcesQuery setSourceNameEndsWith(String value) { this.SourceNameEndsWith = value; return this; } public String getSourceNameContains() { return SourceNameContains; } public v_DebtorTransactionSourcesQuery setSourceNameContains(String value) { this.SourceNameContains = value; return this; } public String getSourceNameLike() { return SourceNameLike; } public v_DebtorTransactionSourcesQuery setSourceNameLike(String value) { this.SourceNameLike = value; return this; } public ArrayList getSourceNameBetween() { return SourceNameBetween; } public v_DebtorTransactionSourcesQuery setSourceNameBetween(ArrayList value) { this.SourceNameBetween = value; return this; } public ArrayList getSourceNameIn() { return SourceNameIn; } public v_DebtorTransactionSourcesQuery setSourceNameIn(ArrayList value) { this.SourceNameIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class V_G_CategoryQuery extends QueryDb implements IReturn> { public String GLCategoryID = null; public String GLCategoryIDStartsWith = null; public String GLCategoryIDEndsWith = null; public String GLCategoryIDContains = null; public String GLCategoryIDLike = null; public ArrayList GLCategoryIDBetween = null; public ArrayList GLCategoryIDIn = null; public String Description = null; public String DescriptionStartsWith = null; public String DescriptionEndsWith = null; public String DescriptionContains = null; public String DescriptionLike = null; public ArrayList DescriptionBetween = null; public ArrayList DescriptionIn = null; public String Group1 = null; public String Group1StartsWith = null; public String Group1EndsWith = null; public String Group1Contains = null; public String Group1Like = null; public ArrayList Group1Between = null; public ArrayList Group1In = null; public String ExpSign = null; public String ExpSignStartsWith = null; public String ExpSignEndsWith = null; public String ExpSignContains = null; public String ExpSignLike = null; public ArrayList ExpSignBetween = null; public ArrayList ExpSignIn = null; public String AccType = null; public String AccTypeStartsWith = null; public String AccTypeEndsWith = null; public String AccTypeContains = null; public String AccTypeLike = null; public ArrayList AccTypeBetween = null; public ArrayList AccTypeIn = null; public String Group2 = null; public String Group2StartsWith = null; public String Group2EndsWith = null; public String Group2Contains = null; public String Group2Like = null; public ArrayList Group2Between = null; public ArrayList Group2In = null; public String getGlCategoryID() { return GLCategoryID; } public V_G_CategoryQuery setGlCategoryID(String value) { this.GLCategoryID = value; return this; } public String getGlCategoryIDStartsWith() { return GLCategoryIDStartsWith; } public V_G_CategoryQuery setGlCategoryIDStartsWith(String value) { this.GLCategoryIDStartsWith = value; return this; } public String getGlCategoryIDEndsWith() { return GLCategoryIDEndsWith; } public V_G_CategoryQuery setGlCategoryIDEndsWith(String value) { this.GLCategoryIDEndsWith = value; return this; } public String getGlCategoryIDContains() { return GLCategoryIDContains; } public V_G_CategoryQuery setGlCategoryIDContains(String value) { this.GLCategoryIDContains = value; return this; } public String getGlCategoryIDLike() { return GLCategoryIDLike; } public V_G_CategoryQuery setGlCategoryIDLike(String value) { this.GLCategoryIDLike = value; return this; } public ArrayList getGlCategoryIDBetween() { return GLCategoryIDBetween; } public V_G_CategoryQuery setGlCategoryIDBetween(ArrayList value) { this.GLCategoryIDBetween = value; return this; } public ArrayList getGlCategoryIDIn() { return GLCategoryIDIn; } public V_G_CategoryQuery setGlCategoryIDIn(ArrayList value) { this.GLCategoryIDIn = value; return this; } public String getDescription() { return Description; } public V_G_CategoryQuery setDescription(String value) { this.Description = value; return this; } public String getDescriptionStartsWith() { return DescriptionStartsWith; } public V_G_CategoryQuery setDescriptionStartsWith(String value) { this.DescriptionStartsWith = value; return this; } public String getDescriptionEndsWith() { return DescriptionEndsWith; } public V_G_CategoryQuery setDescriptionEndsWith(String value) { this.DescriptionEndsWith = value; return this; } public String getDescriptionContains() { return DescriptionContains; } public V_G_CategoryQuery setDescriptionContains(String value) { this.DescriptionContains = value; return this; } public String getDescriptionLike() { return DescriptionLike; } public V_G_CategoryQuery setDescriptionLike(String value) { this.DescriptionLike = value; return this; } public ArrayList getDescriptionBetween() { return DescriptionBetween; } public V_G_CategoryQuery setDescriptionBetween(ArrayList value) { this.DescriptionBetween = value; return this; } public ArrayList getDescriptionIn() { return DescriptionIn; } public V_G_CategoryQuery setDescriptionIn(ArrayList value) { this.DescriptionIn = value; return this; } public String getGroup1() { return Group1; } public V_G_CategoryQuery setGroup1(String value) { this.Group1 = value; return this; } public String getGroup1StartsWith() { return Group1StartsWith; } public V_G_CategoryQuery setGroup1StartsWith(String value) { this.Group1StartsWith = value; return this; } public String getGroup1EndsWith() { return Group1EndsWith; } public V_G_CategoryQuery setGroup1EndsWith(String value) { this.Group1EndsWith = value; return this; } public String getGroup1Contains() { return Group1Contains; } public V_G_CategoryQuery setGroup1Contains(String value) { this.Group1Contains = value; return this; } public String getGroup1Like() { return Group1Like; } public V_G_CategoryQuery setGroup1Like(String value) { this.Group1Like = value; return this; } public ArrayList getGroup1Between() { return Group1Between; } public V_G_CategoryQuery setGroup1Between(ArrayList value) { this.Group1Between = value; return this; } public ArrayList getGroup1In() { return Group1In; } public V_G_CategoryQuery setGroup1In(ArrayList value) { this.Group1In = value; return this; } public String getExpSign() { return ExpSign; } public V_G_CategoryQuery setExpSign(String value) { this.ExpSign = value; return this; } public String getExpSignStartsWith() { return ExpSignStartsWith; } public V_G_CategoryQuery setExpSignStartsWith(String value) { this.ExpSignStartsWith = value; return this; } public String getExpSignEndsWith() { return ExpSignEndsWith; } public V_G_CategoryQuery setExpSignEndsWith(String value) { this.ExpSignEndsWith = value; return this; } public String getExpSignContains() { return ExpSignContains; } public V_G_CategoryQuery setExpSignContains(String value) { this.ExpSignContains = value; return this; } public String getExpSignLike() { return ExpSignLike; } public V_G_CategoryQuery setExpSignLike(String value) { this.ExpSignLike = value; return this; } public ArrayList getExpSignBetween() { return ExpSignBetween; } public V_G_CategoryQuery setExpSignBetween(ArrayList value) { this.ExpSignBetween = value; return this; } public ArrayList getExpSignIn() { return ExpSignIn; } public V_G_CategoryQuery setExpSignIn(ArrayList value) { this.ExpSignIn = value; return this; } public String getAccType() { return AccType; } public V_G_CategoryQuery setAccType(String value) { this.AccType = value; return this; } public String getAccTypeStartsWith() { return AccTypeStartsWith; } public V_G_CategoryQuery setAccTypeStartsWith(String value) { this.AccTypeStartsWith = value; return this; } public String getAccTypeEndsWith() { return AccTypeEndsWith; } public V_G_CategoryQuery setAccTypeEndsWith(String value) { this.AccTypeEndsWith = value; return this; } public String getAccTypeContains() { return AccTypeContains; } public V_G_CategoryQuery setAccTypeContains(String value) { this.AccTypeContains = value; return this; } public String getAccTypeLike() { return AccTypeLike; } public V_G_CategoryQuery setAccTypeLike(String value) { this.AccTypeLike = value; return this; } public ArrayList getAccTypeBetween() { return AccTypeBetween; } public V_G_CategoryQuery setAccTypeBetween(ArrayList value) { this.AccTypeBetween = value; return this; } public ArrayList getAccTypeIn() { return AccTypeIn; } public V_G_CategoryQuery setAccTypeIn(ArrayList value) { this.AccTypeIn = value; return this; } public String getGroup2() { return Group2; } public V_G_CategoryQuery setGroup2(String value) { this.Group2 = value; return this; } public String getGroup2StartsWith() { return Group2StartsWith; } public V_G_CategoryQuery setGroup2StartsWith(String value) { this.Group2StartsWith = value; return this; } public String getGroup2EndsWith() { return Group2EndsWith; } public V_G_CategoryQuery setGroup2EndsWith(String value) { this.Group2EndsWith = value; return this; } public String getGroup2Contains() { return Group2Contains; } public V_G_CategoryQuery setGroup2Contains(String value) { this.Group2Contains = value; return this; } public String getGroup2Like() { return Group2Like; } public V_G_CategoryQuery setGroup2Like(String value) { this.Group2Like = value; return this; } public ArrayList getGroup2Between() { return Group2Between; } public V_G_CategoryQuery setGroup2Between(ArrayList value) { this.Group2Between = value; return this; } public ArrayList getGroup2In() { return Group2In; } public V_G_CategoryQuery setGroup2In(ArrayList value) { this.Group2In = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class v_GL_LedgerQuery extends QueryDb implements IReturn> { public String GLLedgerID = null; public String GLLedgerIDStartsWith = null; public String GLLedgerIDEndsWith = null; public String GLLedgerIDContains = null; public String GLLedgerIDLike = null; public ArrayList GLLedgerIDBetween = null; public ArrayList GLLedgerIDIn = null; public Date LastSavedDateTime = null; public Date LastSavedDateTimeGreaterThanOrEqualTo = null; public Date LastSavedDateTimeGreaterThan = null; public Date LastSavedDateTimeLessThan = null; public Date LastSavedDateTimeLessThanOrEqualTo = null; public Date LastSavedDateTimeNotEqualTo = null; public ArrayList LastSavedDateTimeBetween = null; public ArrayList LastSavedDateTimeIn = null; public String GLCategoryID = null; public String GLCategoryIDStartsWith = null; public String GLCategoryIDEndsWith = null; public String GLCategoryIDContains = null; public String GLCategoryIDLike = null; public ArrayList GLCategoryIDBetween = null; public ArrayList GLCategoryIDIn = null; public String AccountNo = null; public String AccountNoStartsWith = null; public String AccountNoEndsWith = null; public String AccountNoContains = null; public String AccountNoLike = null; public ArrayList AccountNoBetween = null; public ArrayList AccountNoIn = null; public String Seg1 = null; public String Seg1StartsWith = null; public String Seg1EndsWith = null; public String Seg1Contains = null; public String Seg1Like = null; public ArrayList Seg1Between = null; public ArrayList Seg1In = null; public String Seg2 = null; public String Seg2StartsWith = null; public String Seg2EndsWith = null; public String Seg2Contains = null; public String Seg2Like = null; public ArrayList Seg2Between = null; public ArrayList Seg2In = null; public String Seg3 = null; public String Seg3StartsWith = null; public String Seg3EndsWith = null; public String Seg3Contains = null; public String Seg3Like = null; public ArrayList Seg3Between = null; public ArrayList Seg3In = null; public String Seg4 = null; public String Seg4StartsWith = null; public String Seg4EndsWith = null; public String Seg4Contains = null; public String Seg4Like = null; public ArrayList Seg4Between = null; public ArrayList Seg4In = null; public String Seg5 = null; public String Seg5StartsWith = null; public String Seg5EndsWith = null; public String Seg5Contains = null; public String Seg5Like = null; public ArrayList Seg5Between = null; public ArrayList Seg5In = null; public String Seg6 = null; public String Seg6StartsWith = null; public String Seg6EndsWith = null; public String Seg6Contains = null; public String Seg6Like = null; public ArrayList Seg6Between = null; public ArrayList Seg6In = null; public String Description = null; public String DescriptionStartsWith = null; public String DescriptionEndsWith = null; public String DescriptionContains = null; public String DescriptionLike = null; public ArrayList DescriptionBetween = null; public ArrayList DescriptionIn = null; public BigDecimal LastYearOpen = null; public BigDecimal LastYearOpenGreaterThanOrEqualTo = null; public BigDecimal LastYearOpenGreaterThan = null; public BigDecimal LastYearOpenLessThan = null; public BigDecimal LastYearOpenLessThanOrEqualTo = null; public BigDecimal LastYearOpenNotEqualTo = null; public ArrayList LastYearOpenBetween = null; public ArrayList LastYearOpenIn = null; public BigDecimal CurrYearOpen = null; public BigDecimal CurrYearOpenGreaterThanOrEqualTo = null; public BigDecimal CurrYearOpenGreaterThan = null; public BigDecimal CurrYearOpenLessThan = null; public BigDecimal CurrYearOpenLessThanOrEqualTo = null; public BigDecimal CurrYearOpenNotEqualTo = null; public ArrayList CurrYearOpenBetween = null; public ArrayList CurrYearOpenIn = null; public BigDecimal CurrBal = null; public BigDecimal CurrBalGreaterThanOrEqualTo = null; public BigDecimal CurrBalGreaterThan = null; public BigDecimal CurrBalLessThan = null; public BigDecimal CurrBalLessThanOrEqualTo = null; public BigDecimal CurrBalNotEqualTo = null; public ArrayList CurrBalBetween = null; public ArrayList CurrBalIn = null; public Short ExpSign = null; public Short ExpSignGreaterThanOrEqualTo = null; public Short ExpSignGreaterThan = null; public Short ExpSignLessThan = null; public Short ExpSignLessThanOrEqualTo = null; public Short ExpSignNotEqualTo = null; public ArrayList ExpSignBetween = null; public ArrayList ExpSignIn = null; public Short AccClass = null; public Short AccClassGreaterThanOrEqualTo = null; public Short AccClassGreaterThan = null; public Short AccClassLessThan = null; public Short AccClassLessThanOrEqualTo = null; public Short AccClassNotEqualTo = null; public ArrayList AccClassBetween = null; public ArrayList AccClassIn = null; public Boolean DistributionAcc = null; public String ShortCut = null; public String ShortCutStartsWith = null; public String ShortCutEndsWith = null; public String ShortCutContains = null; public String ShortCutLike = null; public ArrayList ShortCutBetween = null; public ArrayList ShortCutIn = null; public Short PostingAcc = null; public Short PostingAccGreaterThanOrEqualTo = null; public Short PostingAccGreaterThan = null; public Short PostingAccLessThan = null; public Short PostingAccLessThanOrEqualTo = null; public Short PostingAccNotEqualTo = null; public ArrayList PostingAccBetween = null; public ArrayList PostingAccIn = null; public String ParentAccNo = null; public String ParentAccNoStartsWith = null; public String ParentAccNoEndsWith = null; public String ParentAccNoContains = null; public String ParentAccNoLike = null; public ArrayList ParentAccNoBetween = null; public ArrayList ParentAccNoIn = null; public Boolean UseTransCode1 = null; public Boolean UseTransCode2 = null; public Boolean UseTransCode3 = null; public Boolean UseStaffCode = null; public String ClearingAccountID = null; public String ClearingAccountIDStartsWith = null; public String ClearingAccountIDEndsWith = null; public String ClearingAccountIDContains = null; public String ClearingAccountIDLike = null; public ArrayList ClearingAccountIDBetween = null; public ArrayList ClearingAccountIDIn = null; public String Details = null; public String DetailsStartsWith = null; public String DetailsEndsWith = null; public String DetailsContains = null; public String DetailsLike = null; public ArrayList DetailsBetween = null; public ArrayList DetailsIn = null; public Boolean IsEnabled = null; public Short AccType = null; public Short AccTypeGreaterThanOrEqualTo = null; public Short AccTypeGreaterThan = null; public Short AccTypeLessThan = null; public Short AccTypeLessThanOrEqualTo = null; public Short AccTypeNotEqualTo = null; public ArrayList AccTypeBetween = null; public ArrayList AccTypeIn = null; public String getGlLedgerID() { return GLLedgerID; } public v_GL_LedgerQuery setGlLedgerID(String value) { this.GLLedgerID = value; return this; } public String getGlLedgerIDStartsWith() { return GLLedgerIDStartsWith; } public v_GL_LedgerQuery setGlLedgerIDStartsWith(String value) { this.GLLedgerIDStartsWith = value; return this; } public String getGlLedgerIDEndsWith() { return GLLedgerIDEndsWith; } public v_GL_LedgerQuery setGlLedgerIDEndsWith(String value) { this.GLLedgerIDEndsWith = value; return this; } public String getGlLedgerIDContains() { return GLLedgerIDContains; } public v_GL_LedgerQuery setGlLedgerIDContains(String value) { this.GLLedgerIDContains = value; return this; } public String getGlLedgerIDLike() { return GLLedgerIDLike; } public v_GL_LedgerQuery setGlLedgerIDLike(String value) { this.GLLedgerIDLike = value; return this; } public ArrayList getGlLedgerIDBetween() { return GLLedgerIDBetween; } public v_GL_LedgerQuery setGlLedgerIDBetween(ArrayList value) { this.GLLedgerIDBetween = value; return this; } public ArrayList getGlLedgerIDIn() { return GLLedgerIDIn; } public v_GL_LedgerQuery setGlLedgerIDIn(ArrayList value) { this.GLLedgerIDIn = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public v_GL_LedgerQuery setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getLastSavedDateTimeGreaterThanOrEqualTo() { return LastSavedDateTimeGreaterThanOrEqualTo; } public v_GL_LedgerQuery setLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.LastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeGreaterThan() { return LastSavedDateTimeGreaterThan; } public v_GL_LedgerQuery setLastSavedDateTimeGreaterThan(Date value) { this.LastSavedDateTimeGreaterThan = value; return this; } public Date getLastSavedDateTimeLessThan() { return LastSavedDateTimeLessThan; } public v_GL_LedgerQuery setLastSavedDateTimeLessThan(Date value) { this.LastSavedDateTimeLessThan = value; return this; } public Date getLastSavedDateTimeLessThanOrEqualTo() { return LastSavedDateTimeLessThanOrEqualTo; } public v_GL_LedgerQuery setLastSavedDateTimeLessThanOrEqualTo(Date value) { this.LastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeNotEqualTo() { return LastSavedDateTimeNotEqualTo; } public v_GL_LedgerQuery setLastSavedDateTimeNotEqualTo(Date value) { this.LastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getLastSavedDateTimeBetween() { return LastSavedDateTimeBetween; } public v_GL_LedgerQuery setLastSavedDateTimeBetween(ArrayList value) { this.LastSavedDateTimeBetween = value; return this; } public ArrayList getLastSavedDateTimeIn() { return LastSavedDateTimeIn; } public v_GL_LedgerQuery setLastSavedDateTimeIn(ArrayList value) { this.LastSavedDateTimeIn = value; return this; } public String getGlCategoryID() { return GLCategoryID; } public v_GL_LedgerQuery setGlCategoryID(String value) { this.GLCategoryID = value; return this; } public String getGlCategoryIDStartsWith() { return GLCategoryIDStartsWith; } public v_GL_LedgerQuery setGlCategoryIDStartsWith(String value) { this.GLCategoryIDStartsWith = value; return this; } public String getGlCategoryIDEndsWith() { return GLCategoryIDEndsWith; } public v_GL_LedgerQuery setGlCategoryIDEndsWith(String value) { this.GLCategoryIDEndsWith = value; return this; } public String getGlCategoryIDContains() { return GLCategoryIDContains; } public v_GL_LedgerQuery setGlCategoryIDContains(String value) { this.GLCategoryIDContains = value; return this; } public String getGlCategoryIDLike() { return GLCategoryIDLike; } public v_GL_LedgerQuery setGlCategoryIDLike(String value) { this.GLCategoryIDLike = value; return this; } public ArrayList getGlCategoryIDBetween() { return GLCategoryIDBetween; } public v_GL_LedgerQuery setGlCategoryIDBetween(ArrayList value) { this.GLCategoryIDBetween = value; return this; } public ArrayList getGlCategoryIDIn() { return GLCategoryIDIn; } public v_GL_LedgerQuery setGlCategoryIDIn(ArrayList value) { this.GLCategoryIDIn = value; return this; } public String getAccountNo() { return AccountNo; } public v_GL_LedgerQuery setAccountNo(String value) { this.AccountNo = value; return this; } public String getAccountNoStartsWith() { return AccountNoStartsWith; } public v_GL_LedgerQuery setAccountNoStartsWith(String value) { this.AccountNoStartsWith = value; return this; } public String getAccountNoEndsWith() { return AccountNoEndsWith; } public v_GL_LedgerQuery setAccountNoEndsWith(String value) { this.AccountNoEndsWith = value; return this; } public String getAccountNoContains() { return AccountNoContains; } public v_GL_LedgerQuery setAccountNoContains(String value) { this.AccountNoContains = value; return this; } public String getAccountNoLike() { return AccountNoLike; } public v_GL_LedgerQuery setAccountNoLike(String value) { this.AccountNoLike = value; return this; } public ArrayList getAccountNoBetween() { return AccountNoBetween; } public v_GL_LedgerQuery setAccountNoBetween(ArrayList value) { this.AccountNoBetween = value; return this; } public ArrayList getAccountNoIn() { return AccountNoIn; } public v_GL_LedgerQuery setAccountNoIn(ArrayList value) { this.AccountNoIn = value; return this; } public String getSeg1() { return Seg1; } public v_GL_LedgerQuery setSeg1(String value) { this.Seg1 = value; return this; } public String getSeg1StartsWith() { return Seg1StartsWith; } public v_GL_LedgerQuery setSeg1StartsWith(String value) { this.Seg1StartsWith = value; return this; } public String getSeg1EndsWith() { return Seg1EndsWith; } public v_GL_LedgerQuery setSeg1EndsWith(String value) { this.Seg1EndsWith = value; return this; } public String getSeg1Contains() { return Seg1Contains; } public v_GL_LedgerQuery setSeg1Contains(String value) { this.Seg1Contains = value; return this; } public String getSeg1Like() { return Seg1Like; } public v_GL_LedgerQuery setSeg1Like(String value) { this.Seg1Like = value; return this; } public ArrayList getSeg1Between() { return Seg1Between; } public v_GL_LedgerQuery setSeg1Between(ArrayList value) { this.Seg1Between = value; return this; } public ArrayList getSeg1In() { return Seg1In; } public v_GL_LedgerQuery setSeg1In(ArrayList value) { this.Seg1In = value; return this; } public String getSeg2() { return Seg2; } public v_GL_LedgerQuery setSeg2(String value) { this.Seg2 = value; return this; } public String getSeg2StartsWith() { return Seg2StartsWith; } public v_GL_LedgerQuery setSeg2StartsWith(String value) { this.Seg2StartsWith = value; return this; } public String getSeg2EndsWith() { return Seg2EndsWith; } public v_GL_LedgerQuery setSeg2EndsWith(String value) { this.Seg2EndsWith = value; return this; } public String getSeg2Contains() { return Seg2Contains; } public v_GL_LedgerQuery setSeg2Contains(String value) { this.Seg2Contains = value; return this; } public String getSeg2Like() { return Seg2Like; } public v_GL_LedgerQuery setSeg2Like(String value) { this.Seg2Like = value; return this; } public ArrayList getSeg2Between() { return Seg2Between; } public v_GL_LedgerQuery setSeg2Between(ArrayList value) { this.Seg2Between = value; return this; } public ArrayList getSeg2In() { return Seg2In; } public v_GL_LedgerQuery setSeg2In(ArrayList value) { this.Seg2In = value; return this; } public String getSeg3() { return Seg3; } public v_GL_LedgerQuery setSeg3(String value) { this.Seg3 = value; return this; } public String getSeg3StartsWith() { return Seg3StartsWith; } public v_GL_LedgerQuery setSeg3StartsWith(String value) { this.Seg3StartsWith = value; return this; } public String getSeg3EndsWith() { return Seg3EndsWith; } public v_GL_LedgerQuery setSeg3EndsWith(String value) { this.Seg3EndsWith = value; return this; } public String getSeg3Contains() { return Seg3Contains; } public v_GL_LedgerQuery setSeg3Contains(String value) { this.Seg3Contains = value; return this; } public String getSeg3Like() { return Seg3Like; } public v_GL_LedgerQuery setSeg3Like(String value) { this.Seg3Like = value; return this; } public ArrayList getSeg3Between() { return Seg3Between; } public v_GL_LedgerQuery setSeg3Between(ArrayList value) { this.Seg3Between = value; return this; } public ArrayList getSeg3In() { return Seg3In; } public v_GL_LedgerQuery setSeg3In(ArrayList value) { this.Seg3In = value; return this; } public String getSeg4() { return Seg4; } public v_GL_LedgerQuery setSeg4(String value) { this.Seg4 = value; return this; } public String getSeg4StartsWith() { return Seg4StartsWith; } public v_GL_LedgerQuery setSeg4StartsWith(String value) { this.Seg4StartsWith = value; return this; } public String getSeg4EndsWith() { return Seg4EndsWith; } public v_GL_LedgerQuery setSeg4EndsWith(String value) { this.Seg4EndsWith = value; return this; } public String getSeg4Contains() { return Seg4Contains; } public v_GL_LedgerQuery setSeg4Contains(String value) { this.Seg4Contains = value; return this; } public String getSeg4Like() { return Seg4Like; } public v_GL_LedgerQuery setSeg4Like(String value) { this.Seg4Like = value; return this; } public ArrayList getSeg4Between() { return Seg4Between; } public v_GL_LedgerQuery setSeg4Between(ArrayList value) { this.Seg4Between = value; return this; } public ArrayList getSeg4In() { return Seg4In; } public v_GL_LedgerQuery setSeg4In(ArrayList value) { this.Seg4In = value; return this; } public String getSeg5() { return Seg5; } public v_GL_LedgerQuery setSeg5(String value) { this.Seg5 = value; return this; } public String getSeg5StartsWith() { return Seg5StartsWith; } public v_GL_LedgerQuery setSeg5StartsWith(String value) { this.Seg5StartsWith = value; return this; } public String getSeg5EndsWith() { return Seg5EndsWith; } public v_GL_LedgerQuery setSeg5EndsWith(String value) { this.Seg5EndsWith = value; return this; } public String getSeg5Contains() { return Seg5Contains; } public v_GL_LedgerQuery setSeg5Contains(String value) { this.Seg5Contains = value; return this; } public String getSeg5Like() { return Seg5Like; } public v_GL_LedgerQuery setSeg5Like(String value) { this.Seg5Like = value; return this; } public ArrayList getSeg5Between() { return Seg5Between; } public v_GL_LedgerQuery setSeg5Between(ArrayList value) { this.Seg5Between = value; return this; } public ArrayList getSeg5In() { return Seg5In; } public v_GL_LedgerQuery setSeg5In(ArrayList value) { this.Seg5In = value; return this; } public String getSeg6() { return Seg6; } public v_GL_LedgerQuery setSeg6(String value) { this.Seg6 = value; return this; } public String getSeg6StartsWith() { return Seg6StartsWith; } public v_GL_LedgerQuery setSeg6StartsWith(String value) { this.Seg6StartsWith = value; return this; } public String getSeg6EndsWith() { return Seg6EndsWith; } public v_GL_LedgerQuery setSeg6EndsWith(String value) { this.Seg6EndsWith = value; return this; } public String getSeg6Contains() { return Seg6Contains; } public v_GL_LedgerQuery setSeg6Contains(String value) { this.Seg6Contains = value; return this; } public String getSeg6Like() { return Seg6Like; } public v_GL_LedgerQuery setSeg6Like(String value) { this.Seg6Like = value; return this; } public ArrayList getSeg6Between() { return Seg6Between; } public v_GL_LedgerQuery setSeg6Between(ArrayList value) { this.Seg6Between = value; return this; } public ArrayList getSeg6In() { return Seg6In; } public v_GL_LedgerQuery setSeg6In(ArrayList value) { this.Seg6In = value; return this; } public String getDescription() { return Description; } public v_GL_LedgerQuery setDescription(String value) { this.Description = value; return this; } public String getDescriptionStartsWith() { return DescriptionStartsWith; } public v_GL_LedgerQuery setDescriptionStartsWith(String value) { this.DescriptionStartsWith = value; return this; } public String getDescriptionEndsWith() { return DescriptionEndsWith; } public v_GL_LedgerQuery setDescriptionEndsWith(String value) { this.DescriptionEndsWith = value; return this; } public String getDescriptionContains() { return DescriptionContains; } public v_GL_LedgerQuery setDescriptionContains(String value) { this.DescriptionContains = value; return this; } public String getDescriptionLike() { return DescriptionLike; } public v_GL_LedgerQuery setDescriptionLike(String value) { this.DescriptionLike = value; return this; } public ArrayList getDescriptionBetween() { return DescriptionBetween; } public v_GL_LedgerQuery setDescriptionBetween(ArrayList value) { this.DescriptionBetween = value; return this; } public ArrayList getDescriptionIn() { return DescriptionIn; } public v_GL_LedgerQuery setDescriptionIn(ArrayList value) { this.DescriptionIn = value; return this; } public BigDecimal getLastYearOpen() { return LastYearOpen; } public v_GL_LedgerQuery setLastYearOpen(BigDecimal value) { this.LastYearOpen = value; return this; } public BigDecimal getLastYearOpenGreaterThanOrEqualTo() { return LastYearOpenGreaterThanOrEqualTo; } public v_GL_LedgerQuery setLastYearOpenGreaterThanOrEqualTo(BigDecimal value) { this.LastYearOpenGreaterThanOrEqualTo = value; return this; } public BigDecimal getLastYearOpenGreaterThan() { return LastYearOpenGreaterThan; } public v_GL_LedgerQuery setLastYearOpenGreaterThan(BigDecimal value) { this.LastYearOpenGreaterThan = value; return this; } public BigDecimal getLastYearOpenLessThan() { return LastYearOpenLessThan; } public v_GL_LedgerQuery setLastYearOpenLessThan(BigDecimal value) { this.LastYearOpenLessThan = value; return this; } public BigDecimal getLastYearOpenLessThanOrEqualTo() { return LastYearOpenLessThanOrEqualTo; } public v_GL_LedgerQuery setLastYearOpenLessThanOrEqualTo(BigDecimal value) { this.LastYearOpenLessThanOrEqualTo = value; return this; } public BigDecimal getLastYearOpenNotEqualTo() { return LastYearOpenNotEqualTo; } public v_GL_LedgerQuery setLastYearOpenNotEqualTo(BigDecimal value) { this.LastYearOpenNotEqualTo = value; return this; } public ArrayList getLastYearOpenBetween() { return LastYearOpenBetween; } public v_GL_LedgerQuery setLastYearOpenBetween(ArrayList value) { this.LastYearOpenBetween = value; return this; } public ArrayList getLastYearOpenIn() { return LastYearOpenIn; } public v_GL_LedgerQuery setLastYearOpenIn(ArrayList value) { this.LastYearOpenIn = value; return this; } public BigDecimal getCurrYearOpen() { return CurrYearOpen; } public v_GL_LedgerQuery setCurrYearOpen(BigDecimal value) { this.CurrYearOpen = value; return this; } public BigDecimal getCurrYearOpenGreaterThanOrEqualTo() { return CurrYearOpenGreaterThanOrEqualTo; } public v_GL_LedgerQuery setCurrYearOpenGreaterThanOrEqualTo(BigDecimal value) { this.CurrYearOpenGreaterThanOrEqualTo = value; return this; } public BigDecimal getCurrYearOpenGreaterThan() { return CurrYearOpenGreaterThan; } public v_GL_LedgerQuery setCurrYearOpenGreaterThan(BigDecimal value) { this.CurrYearOpenGreaterThan = value; return this; } public BigDecimal getCurrYearOpenLessThan() { return CurrYearOpenLessThan; } public v_GL_LedgerQuery setCurrYearOpenLessThan(BigDecimal value) { this.CurrYearOpenLessThan = value; return this; } public BigDecimal getCurrYearOpenLessThanOrEqualTo() { return CurrYearOpenLessThanOrEqualTo; } public v_GL_LedgerQuery setCurrYearOpenLessThanOrEqualTo(BigDecimal value) { this.CurrYearOpenLessThanOrEqualTo = value; return this; } public BigDecimal getCurrYearOpenNotEqualTo() { return CurrYearOpenNotEqualTo; } public v_GL_LedgerQuery setCurrYearOpenNotEqualTo(BigDecimal value) { this.CurrYearOpenNotEqualTo = value; return this; } public ArrayList getCurrYearOpenBetween() { return CurrYearOpenBetween; } public v_GL_LedgerQuery setCurrYearOpenBetween(ArrayList value) { this.CurrYearOpenBetween = value; return this; } public ArrayList getCurrYearOpenIn() { return CurrYearOpenIn; } public v_GL_LedgerQuery setCurrYearOpenIn(ArrayList value) { this.CurrYearOpenIn = value; return this; } public BigDecimal getCurrBal() { return CurrBal; } public v_GL_LedgerQuery setCurrBal(BigDecimal value) { this.CurrBal = value; return this; } public BigDecimal getCurrBalGreaterThanOrEqualTo() { return CurrBalGreaterThanOrEqualTo; } public v_GL_LedgerQuery setCurrBalGreaterThanOrEqualTo(BigDecimal value) { this.CurrBalGreaterThanOrEqualTo = value; return this; } public BigDecimal getCurrBalGreaterThan() { return CurrBalGreaterThan; } public v_GL_LedgerQuery setCurrBalGreaterThan(BigDecimal value) { this.CurrBalGreaterThan = value; return this; } public BigDecimal getCurrBalLessThan() { return CurrBalLessThan; } public v_GL_LedgerQuery setCurrBalLessThan(BigDecimal value) { this.CurrBalLessThan = value; return this; } public BigDecimal getCurrBalLessThanOrEqualTo() { return CurrBalLessThanOrEqualTo; } public v_GL_LedgerQuery setCurrBalLessThanOrEqualTo(BigDecimal value) { this.CurrBalLessThanOrEqualTo = value; return this; } public BigDecimal getCurrBalNotEqualTo() { return CurrBalNotEqualTo; } public v_GL_LedgerQuery setCurrBalNotEqualTo(BigDecimal value) { this.CurrBalNotEqualTo = value; return this; } public ArrayList getCurrBalBetween() { return CurrBalBetween; } public v_GL_LedgerQuery setCurrBalBetween(ArrayList value) { this.CurrBalBetween = value; return this; } public ArrayList getCurrBalIn() { return CurrBalIn; } public v_GL_LedgerQuery setCurrBalIn(ArrayList value) { this.CurrBalIn = value; return this; } public Short getExpSign() { return ExpSign; } public v_GL_LedgerQuery setExpSign(Short value) { this.ExpSign = value; return this; } public Short getExpSignGreaterThanOrEqualTo() { return ExpSignGreaterThanOrEqualTo; } public v_GL_LedgerQuery setExpSignGreaterThanOrEqualTo(Short value) { this.ExpSignGreaterThanOrEqualTo = value; return this; } public Short getExpSignGreaterThan() { return ExpSignGreaterThan; } public v_GL_LedgerQuery setExpSignGreaterThan(Short value) { this.ExpSignGreaterThan = value; return this; } public Short getExpSignLessThan() { return ExpSignLessThan; } public v_GL_LedgerQuery setExpSignLessThan(Short value) { this.ExpSignLessThan = value; return this; } public Short getExpSignLessThanOrEqualTo() { return ExpSignLessThanOrEqualTo; } public v_GL_LedgerQuery setExpSignLessThanOrEqualTo(Short value) { this.ExpSignLessThanOrEqualTo = value; return this; } public Short getExpSignNotEqualTo() { return ExpSignNotEqualTo; } public v_GL_LedgerQuery setExpSignNotEqualTo(Short value) { this.ExpSignNotEqualTo = value; return this; } public ArrayList getExpSignBetween() { return ExpSignBetween; } public v_GL_LedgerQuery setExpSignBetween(ArrayList value) { this.ExpSignBetween = value; return this; } public ArrayList getExpSignIn() { return ExpSignIn; } public v_GL_LedgerQuery setExpSignIn(ArrayList value) { this.ExpSignIn = value; return this; } public Short getAccClass() { return AccClass; } public v_GL_LedgerQuery setAccClass(Short value) { this.AccClass = value; return this; } public Short getAccClassGreaterThanOrEqualTo() { return AccClassGreaterThanOrEqualTo; } public v_GL_LedgerQuery setAccClassGreaterThanOrEqualTo(Short value) { this.AccClassGreaterThanOrEqualTo = value; return this; } public Short getAccClassGreaterThan() { return AccClassGreaterThan; } public v_GL_LedgerQuery setAccClassGreaterThan(Short value) { this.AccClassGreaterThan = value; return this; } public Short getAccClassLessThan() { return AccClassLessThan; } public v_GL_LedgerQuery setAccClassLessThan(Short value) { this.AccClassLessThan = value; return this; } public Short getAccClassLessThanOrEqualTo() { return AccClassLessThanOrEqualTo; } public v_GL_LedgerQuery setAccClassLessThanOrEqualTo(Short value) { this.AccClassLessThanOrEqualTo = value; return this; } public Short getAccClassNotEqualTo() { return AccClassNotEqualTo; } public v_GL_LedgerQuery setAccClassNotEqualTo(Short value) { this.AccClassNotEqualTo = value; return this; } public ArrayList getAccClassBetween() { return AccClassBetween; } public v_GL_LedgerQuery setAccClassBetween(ArrayList value) { this.AccClassBetween = value; return this; } public ArrayList getAccClassIn() { return AccClassIn; } public v_GL_LedgerQuery setAccClassIn(ArrayList value) { this.AccClassIn = value; return this; } public Boolean isDistributionAcc() { return DistributionAcc; } public v_GL_LedgerQuery setDistributionAcc(Boolean value) { this.DistributionAcc = value; return this; } public String getShortCut() { return ShortCut; } public v_GL_LedgerQuery setShortCut(String value) { this.ShortCut = value; return this; } public String getShortCutStartsWith() { return ShortCutStartsWith; } public v_GL_LedgerQuery setShortCutStartsWith(String value) { this.ShortCutStartsWith = value; return this; } public String getShortCutEndsWith() { return ShortCutEndsWith; } public v_GL_LedgerQuery setShortCutEndsWith(String value) { this.ShortCutEndsWith = value; return this; } public String getShortCutContains() { return ShortCutContains; } public v_GL_LedgerQuery setShortCutContains(String value) { this.ShortCutContains = value; return this; } public String getShortCutLike() { return ShortCutLike; } public v_GL_LedgerQuery setShortCutLike(String value) { this.ShortCutLike = value; return this; } public ArrayList getShortCutBetween() { return ShortCutBetween; } public v_GL_LedgerQuery setShortCutBetween(ArrayList value) { this.ShortCutBetween = value; return this; } public ArrayList getShortCutIn() { return ShortCutIn; } public v_GL_LedgerQuery setShortCutIn(ArrayList value) { this.ShortCutIn = value; return this; } public Short getPostingAcc() { return PostingAcc; } public v_GL_LedgerQuery setPostingAcc(Short value) { this.PostingAcc = value; return this; } public Short getPostingAccGreaterThanOrEqualTo() { return PostingAccGreaterThanOrEqualTo; } public v_GL_LedgerQuery setPostingAccGreaterThanOrEqualTo(Short value) { this.PostingAccGreaterThanOrEqualTo = value; return this; } public Short getPostingAccGreaterThan() { return PostingAccGreaterThan; } public v_GL_LedgerQuery setPostingAccGreaterThan(Short value) { this.PostingAccGreaterThan = value; return this; } public Short getPostingAccLessThan() { return PostingAccLessThan; } public v_GL_LedgerQuery setPostingAccLessThan(Short value) { this.PostingAccLessThan = value; return this; } public Short getPostingAccLessThanOrEqualTo() { return PostingAccLessThanOrEqualTo; } public v_GL_LedgerQuery setPostingAccLessThanOrEqualTo(Short value) { this.PostingAccLessThanOrEqualTo = value; return this; } public Short getPostingAccNotEqualTo() { return PostingAccNotEqualTo; } public v_GL_LedgerQuery setPostingAccNotEqualTo(Short value) { this.PostingAccNotEqualTo = value; return this; } public ArrayList getPostingAccBetween() { return PostingAccBetween; } public v_GL_LedgerQuery setPostingAccBetween(ArrayList value) { this.PostingAccBetween = value; return this; } public ArrayList getPostingAccIn() { return PostingAccIn; } public v_GL_LedgerQuery setPostingAccIn(ArrayList value) { this.PostingAccIn = value; return this; } public String getParentAccNo() { return ParentAccNo; } public v_GL_LedgerQuery setParentAccNo(String value) { this.ParentAccNo = value; return this; } public String getParentAccNoStartsWith() { return ParentAccNoStartsWith; } public v_GL_LedgerQuery setParentAccNoStartsWith(String value) { this.ParentAccNoStartsWith = value; return this; } public String getParentAccNoEndsWith() { return ParentAccNoEndsWith; } public v_GL_LedgerQuery setParentAccNoEndsWith(String value) { this.ParentAccNoEndsWith = value; return this; } public String getParentAccNoContains() { return ParentAccNoContains; } public v_GL_LedgerQuery setParentAccNoContains(String value) { this.ParentAccNoContains = value; return this; } public String getParentAccNoLike() { return ParentAccNoLike; } public v_GL_LedgerQuery setParentAccNoLike(String value) { this.ParentAccNoLike = value; return this; } public ArrayList getParentAccNoBetween() { return ParentAccNoBetween; } public v_GL_LedgerQuery setParentAccNoBetween(ArrayList value) { this.ParentAccNoBetween = value; return this; } public ArrayList getParentAccNoIn() { return ParentAccNoIn; } public v_GL_LedgerQuery setParentAccNoIn(ArrayList value) { this.ParentAccNoIn = value; return this; } public Boolean isUseTransCode1() { return UseTransCode1; } public v_GL_LedgerQuery setUseTransCode1(Boolean value) { this.UseTransCode1 = value; return this; } public Boolean isUseTransCode2() { return UseTransCode2; } public v_GL_LedgerQuery setUseTransCode2(Boolean value) { this.UseTransCode2 = value; return this; } public Boolean isUseTransCode3() { return UseTransCode3; } public v_GL_LedgerQuery setUseTransCode3(Boolean value) { this.UseTransCode3 = value; return this; } public Boolean isUseStaffCode() { return UseStaffCode; } public v_GL_LedgerQuery setUseStaffCode(Boolean value) { this.UseStaffCode = value; return this; } public String getClearingAccountID() { return ClearingAccountID; } public v_GL_LedgerQuery setClearingAccountID(String value) { this.ClearingAccountID = value; return this; } public String getClearingAccountIDStartsWith() { return ClearingAccountIDStartsWith; } public v_GL_LedgerQuery setClearingAccountIDStartsWith(String value) { this.ClearingAccountIDStartsWith = value; return this; } public String getClearingAccountIDEndsWith() { return ClearingAccountIDEndsWith; } public v_GL_LedgerQuery setClearingAccountIDEndsWith(String value) { this.ClearingAccountIDEndsWith = value; return this; } public String getClearingAccountIDContains() { return ClearingAccountIDContains; } public v_GL_LedgerQuery setClearingAccountIDContains(String value) { this.ClearingAccountIDContains = value; return this; } public String getClearingAccountIDLike() { return ClearingAccountIDLike; } public v_GL_LedgerQuery setClearingAccountIDLike(String value) { this.ClearingAccountIDLike = value; return this; } public ArrayList getClearingAccountIDBetween() { return ClearingAccountIDBetween; } public v_GL_LedgerQuery setClearingAccountIDBetween(ArrayList value) { this.ClearingAccountIDBetween = value; return this; } public ArrayList getClearingAccountIDIn() { return ClearingAccountIDIn; } public v_GL_LedgerQuery setClearingAccountIDIn(ArrayList value) { this.ClearingAccountIDIn = value; return this; } public String getDetails() { return Details; } public v_GL_LedgerQuery setDetails(String value) { this.Details = value; return this; } public String getDetailsStartsWith() { return DetailsStartsWith; } public v_GL_LedgerQuery setDetailsStartsWith(String value) { this.DetailsStartsWith = value; return this; } public String getDetailsEndsWith() { return DetailsEndsWith; } public v_GL_LedgerQuery setDetailsEndsWith(String value) { this.DetailsEndsWith = value; return this; } public String getDetailsContains() { return DetailsContains; } public v_GL_LedgerQuery setDetailsContains(String value) { this.DetailsContains = value; return this; } public String getDetailsLike() { return DetailsLike; } public v_GL_LedgerQuery setDetailsLike(String value) { this.DetailsLike = value; return this; } public ArrayList getDetailsBetween() { return DetailsBetween; } public v_GL_LedgerQuery setDetailsBetween(ArrayList value) { this.DetailsBetween = value; return this; } public ArrayList getDetailsIn() { return DetailsIn; } public v_GL_LedgerQuery setDetailsIn(ArrayList value) { this.DetailsIn = value; return this; } public Boolean getIsEnabled() { return IsEnabled; } public v_GL_LedgerQuery setIsEnabled(Boolean value) { this.IsEnabled = value; return this; } public Short getAccType() { return AccType; } public v_GL_LedgerQuery setAccType(Short value) { this.AccType = value; return this; } public Short getAccTypeGreaterThanOrEqualTo() { return AccTypeGreaterThanOrEqualTo; } public v_GL_LedgerQuery setAccTypeGreaterThanOrEqualTo(Short value) { this.AccTypeGreaterThanOrEqualTo = value; return this; } public Short getAccTypeGreaterThan() { return AccTypeGreaterThan; } public v_GL_LedgerQuery setAccTypeGreaterThan(Short value) { this.AccTypeGreaterThan = value; return this; } public Short getAccTypeLessThan() { return AccTypeLessThan; } public v_GL_LedgerQuery setAccTypeLessThan(Short value) { this.AccTypeLessThan = value; return this; } public Short getAccTypeLessThanOrEqualTo() { return AccTypeLessThanOrEqualTo; } public v_GL_LedgerQuery setAccTypeLessThanOrEqualTo(Short value) { this.AccTypeLessThanOrEqualTo = value; return this; } public Short getAccTypeNotEqualTo() { return AccTypeNotEqualTo; } public v_GL_LedgerQuery setAccTypeNotEqualTo(Short value) { this.AccTypeNotEqualTo = value; return this; } public ArrayList getAccTypeBetween() { return AccTypeBetween; } public v_GL_LedgerQuery setAccTypeBetween(ArrayList value) { this.AccTypeBetween = value; return this; } public ArrayList getAccTypeIn() { return AccTypeIn; } public v_GL_LedgerQuery setAccTypeIn(ArrayList value) { this.AccTypeIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class v_GL_Segment1Query extends QueryDb implements IReturn> { public String Seg1 = null; public String Seg1StartsWith = null; public String Seg1EndsWith = null; public String Seg1Contains = null; public String Seg1Like = null; public ArrayList Seg1Between = null; public ArrayList Seg1In = null; public String getSeg1() { return Seg1; } public v_GL_Segment1Query setSeg1(String value) { this.Seg1 = value; return this; } public String getSeg1StartsWith() { return Seg1StartsWith; } public v_GL_Segment1Query setSeg1StartsWith(String value) { this.Seg1StartsWith = value; return this; } public String getSeg1EndsWith() { return Seg1EndsWith; } public v_GL_Segment1Query setSeg1EndsWith(String value) { this.Seg1EndsWith = value; return this; } public String getSeg1Contains() { return Seg1Contains; } public v_GL_Segment1Query setSeg1Contains(String value) { this.Seg1Contains = value; return this; } public String getSeg1Like() { return Seg1Like; } public v_GL_Segment1Query setSeg1Like(String value) { this.Seg1Like = value; return this; } public ArrayList getSeg1Between() { return Seg1Between; } public v_GL_Segment1Query setSeg1Between(ArrayList value) { this.Seg1Between = value; return this; } public ArrayList getSeg1In() { return Seg1In; } public v_GL_Segment1Query setSeg1In(ArrayList value) { this.Seg1In = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class v_GL_Segment2Query extends QueryDb implements IReturn> { public String Seg2 = null; public String Seg2StartsWith = null; public String Seg2EndsWith = null; public String Seg2Contains = null; public String Seg2Like = null; public ArrayList Seg2Between = null; public ArrayList Seg2In = null; public String getSeg2() { return Seg2; } public v_GL_Segment2Query setSeg2(String value) { this.Seg2 = value; return this; } public String getSeg2StartsWith() { return Seg2StartsWith; } public v_GL_Segment2Query setSeg2StartsWith(String value) { this.Seg2StartsWith = value; return this; } public String getSeg2EndsWith() { return Seg2EndsWith; } public v_GL_Segment2Query setSeg2EndsWith(String value) { this.Seg2EndsWith = value; return this; } public String getSeg2Contains() { return Seg2Contains; } public v_GL_Segment2Query setSeg2Contains(String value) { this.Seg2Contains = value; return this; } public String getSeg2Like() { return Seg2Like; } public v_GL_Segment2Query setSeg2Like(String value) { this.Seg2Like = value; return this; } public ArrayList getSeg2Between() { return Seg2Between; } public v_GL_Segment2Query setSeg2Between(ArrayList value) { this.Seg2Between = value; return this; } public ArrayList getSeg2In() { return Seg2In; } public v_GL_Segment2Query setSeg2In(ArrayList value) { this.Seg2In = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class v_GL_Segment3Query extends QueryDb implements IReturn> { public String Seg3 = null; public String Seg3StartsWith = null; public String Seg3EndsWith = null; public String Seg3Contains = null; public String Seg3Like = null; public ArrayList Seg3Between = null; public ArrayList Seg3In = null; public String getSeg3() { return Seg3; } public v_GL_Segment3Query setSeg3(String value) { this.Seg3 = value; return this; } public String getSeg3StartsWith() { return Seg3StartsWith; } public v_GL_Segment3Query setSeg3StartsWith(String value) { this.Seg3StartsWith = value; return this; } public String getSeg3EndsWith() { return Seg3EndsWith; } public v_GL_Segment3Query setSeg3EndsWith(String value) { this.Seg3EndsWith = value; return this; } public String getSeg3Contains() { return Seg3Contains; } public v_GL_Segment3Query setSeg3Contains(String value) { this.Seg3Contains = value; return this; } public String getSeg3Like() { return Seg3Like; } public v_GL_Segment3Query setSeg3Like(String value) { this.Seg3Like = value; return this; } public ArrayList getSeg3Between() { return Seg3Between; } public v_GL_Segment3Query setSeg3Between(ArrayList value) { this.Seg3Between = value; return this; } public ArrayList getSeg3In() { return Seg3In; } public v_GL_Segment3Query setSeg3In(ArrayList value) { this.Seg3In = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class v_GL_Segment4Query extends QueryDb implements IReturn> { public String Seg4 = null; public String Seg4StartsWith = null; public String Seg4EndsWith = null; public String Seg4Contains = null; public String Seg4Like = null; public ArrayList Seg4Between = null; public ArrayList Seg4In = null; public String getSeg4() { return Seg4; } public v_GL_Segment4Query setSeg4(String value) { this.Seg4 = value; return this; } public String getSeg4StartsWith() { return Seg4StartsWith; } public v_GL_Segment4Query setSeg4StartsWith(String value) { this.Seg4StartsWith = value; return this; } public String getSeg4EndsWith() { return Seg4EndsWith; } public v_GL_Segment4Query setSeg4EndsWith(String value) { this.Seg4EndsWith = value; return this; } public String getSeg4Contains() { return Seg4Contains; } public v_GL_Segment4Query setSeg4Contains(String value) { this.Seg4Contains = value; return this; } public String getSeg4Like() { return Seg4Like; } public v_GL_Segment4Query setSeg4Like(String value) { this.Seg4Like = value; return this; } public ArrayList getSeg4Between() { return Seg4Between; } public v_GL_Segment4Query setSeg4Between(ArrayList value) { this.Seg4Between = value; return this; } public ArrayList getSeg4In() { return Seg4In; } public v_GL_Segment4Query setSeg4In(ArrayList value) { this.Seg4In = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class v_GL_Segment5Query extends QueryDb implements IReturn> { public String Seg5 = null; public String Seg5StartsWith = null; public String Seg5EndsWith = null; public String Seg5Contains = null; public String Seg5Like = null; public ArrayList Seg5Between = null; public ArrayList Seg5In = null; public String getSeg5() { return Seg5; } public v_GL_Segment5Query setSeg5(String value) { this.Seg5 = value; return this; } public String getSeg5StartsWith() { return Seg5StartsWith; } public v_GL_Segment5Query setSeg5StartsWith(String value) { this.Seg5StartsWith = value; return this; } public String getSeg5EndsWith() { return Seg5EndsWith; } public v_GL_Segment5Query setSeg5EndsWith(String value) { this.Seg5EndsWith = value; return this; } public String getSeg5Contains() { return Seg5Contains; } public v_GL_Segment5Query setSeg5Contains(String value) { this.Seg5Contains = value; return this; } public String getSeg5Like() { return Seg5Like; } public v_GL_Segment5Query setSeg5Like(String value) { this.Seg5Like = value; return this; } public ArrayList getSeg5Between() { return Seg5Between; } public v_GL_Segment5Query setSeg5Between(ArrayList value) { this.Seg5Between = value; return this; } public ArrayList getSeg5In() { return Seg5In; } public v_GL_Segment5Query setSeg5In(ArrayList value) { this.Seg5In = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class v_GL_Segment6Query extends QueryDb implements IReturn> { public String Seg6 = null; public String Seg6StartsWith = null; public String Seg6EndsWith = null; public String Seg6Contains = null; public String Seg6Like = null; public ArrayList Seg6Between = null; public ArrayList Seg6In = null; public String getSeg6() { return Seg6; } public v_GL_Segment6Query setSeg6(String value) { this.Seg6 = value; return this; } public String getSeg6StartsWith() { return Seg6StartsWith; } public v_GL_Segment6Query setSeg6StartsWith(String value) { this.Seg6StartsWith = value; return this; } public String getSeg6EndsWith() { return Seg6EndsWith; } public v_GL_Segment6Query setSeg6EndsWith(String value) { this.Seg6EndsWith = value; return this; } public String getSeg6Contains() { return Seg6Contains; } public v_GL_Segment6Query setSeg6Contains(String value) { this.Seg6Contains = value; return this; } public String getSeg6Like() { return Seg6Like; } public v_GL_Segment6Query setSeg6Like(String value) { this.Seg6Like = value; return this; } public ArrayList getSeg6Between() { return Seg6Between; } public v_GL_Segment6Query setSeg6Between(ArrayList value) { this.Seg6Between = value; return this; } public ArrayList getSeg6In() { return Seg6In; } public v_GL_Segment6Query setSeg6In(ArrayList value) { this.Seg6In = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class v_GL_TransactionsQuery extends QueryDb implements IReturn> { public String Seg1 = null; public String Seg1StartsWith = null; public String Seg1EndsWith = null; public String Seg1Contains = null; public String Seg1Like = null; public ArrayList Seg1Between = null; public ArrayList Seg1In = null; public String Seg2 = null; public String Seg2StartsWith = null; public String Seg2EndsWith = null; public String Seg2Contains = null; public String Seg2Like = null; public ArrayList Seg2Between = null; public ArrayList Seg2In = null; public String Seg3 = null; public String Seg3StartsWith = null; public String Seg3EndsWith = null; public String Seg3Contains = null; public String Seg3Like = null; public ArrayList Seg3Between = null; public ArrayList Seg3In = null; public String Seg4 = null; public String Seg4StartsWith = null; public String Seg4EndsWith = null; public String Seg4Contains = null; public String Seg4Like = null; public ArrayList Seg4Between = null; public ArrayList Seg4In = null; public String Seg5 = null; public String Seg5StartsWith = null; public String Seg5EndsWith = null; public String Seg5Contains = null; public String Seg5Like = null; public ArrayList Seg5Between = null; public ArrayList Seg5In = null; public String Seg6 = null; public String Seg6StartsWith = null; public String Seg6EndsWith = null; public String Seg6Contains = null; public String Seg6Like = null; public ArrayList Seg6Between = null; public ArrayList Seg6In = null; public BigDecimal Amount = null; public BigDecimal AmountGreaterThanOrEqualTo = null; public BigDecimal AmountGreaterThan = null; public BigDecimal AmountLessThan = null; public BigDecimal AmountLessThanOrEqualTo = null; public BigDecimal AmountNotEqualTo = null; public ArrayList AmountBetween = null; public ArrayList AmountIn = null; public Date TransPostDateTime = null; public Date TransPostDateTimeGreaterThanOrEqualTo = null; public Date TransPostDateTimeGreaterThan = null; public Date TransPostDateTimeLessThan = null; public Date TransPostDateTimeLessThanOrEqualTo = null; public Date TransPostDateTimeNotEqualTo = null; public ArrayList TransPostDateTimeBetween = null; public ArrayList TransPostDateTimeIn = null; public String Category = null; public String CategoryStartsWith = null; public String CategoryEndsWith = null; public String CategoryContains = null; public String CategoryLike = null; public ArrayList CategoryBetween = null; public ArrayList CategoryIn = null; public String AccountDescription = null; public String AccountDescriptionStartsWith = null; public String AccountDescriptionEndsWith = null; public String AccountDescriptionContains = null; public String AccountDescriptionLike = null; public ArrayList AccountDescriptionBetween = null; public ArrayList AccountDescriptionIn = null; public String getSeg1() { return Seg1; } public v_GL_TransactionsQuery setSeg1(String value) { this.Seg1 = value; return this; } public String getSeg1StartsWith() { return Seg1StartsWith; } public v_GL_TransactionsQuery setSeg1StartsWith(String value) { this.Seg1StartsWith = value; return this; } public String getSeg1EndsWith() { return Seg1EndsWith; } public v_GL_TransactionsQuery setSeg1EndsWith(String value) { this.Seg1EndsWith = value; return this; } public String getSeg1Contains() { return Seg1Contains; } public v_GL_TransactionsQuery setSeg1Contains(String value) { this.Seg1Contains = value; return this; } public String getSeg1Like() { return Seg1Like; } public v_GL_TransactionsQuery setSeg1Like(String value) { this.Seg1Like = value; return this; } public ArrayList getSeg1Between() { return Seg1Between; } public v_GL_TransactionsQuery setSeg1Between(ArrayList value) { this.Seg1Between = value; return this; } public ArrayList getSeg1In() { return Seg1In; } public v_GL_TransactionsQuery setSeg1In(ArrayList value) { this.Seg1In = value; return this; } public String getSeg2() { return Seg2; } public v_GL_TransactionsQuery setSeg2(String value) { this.Seg2 = value; return this; } public String getSeg2StartsWith() { return Seg2StartsWith; } public v_GL_TransactionsQuery setSeg2StartsWith(String value) { this.Seg2StartsWith = value; return this; } public String getSeg2EndsWith() { return Seg2EndsWith; } public v_GL_TransactionsQuery setSeg2EndsWith(String value) { this.Seg2EndsWith = value; return this; } public String getSeg2Contains() { return Seg2Contains; } public v_GL_TransactionsQuery setSeg2Contains(String value) { this.Seg2Contains = value; return this; } public String getSeg2Like() { return Seg2Like; } public v_GL_TransactionsQuery setSeg2Like(String value) { this.Seg2Like = value; return this; } public ArrayList getSeg2Between() { return Seg2Between; } public v_GL_TransactionsQuery setSeg2Between(ArrayList value) { this.Seg2Between = value; return this; } public ArrayList getSeg2In() { return Seg2In; } public v_GL_TransactionsQuery setSeg2In(ArrayList value) { this.Seg2In = value; return this; } public String getSeg3() { return Seg3; } public v_GL_TransactionsQuery setSeg3(String value) { this.Seg3 = value; return this; } public String getSeg3StartsWith() { return Seg3StartsWith; } public v_GL_TransactionsQuery setSeg3StartsWith(String value) { this.Seg3StartsWith = value; return this; } public String getSeg3EndsWith() { return Seg3EndsWith; } public v_GL_TransactionsQuery setSeg3EndsWith(String value) { this.Seg3EndsWith = value; return this; } public String getSeg3Contains() { return Seg3Contains; } public v_GL_TransactionsQuery setSeg3Contains(String value) { this.Seg3Contains = value; return this; } public String getSeg3Like() { return Seg3Like; } public v_GL_TransactionsQuery setSeg3Like(String value) { this.Seg3Like = value; return this; } public ArrayList getSeg3Between() { return Seg3Between; } public v_GL_TransactionsQuery setSeg3Between(ArrayList value) { this.Seg3Between = value; return this; } public ArrayList getSeg3In() { return Seg3In; } public v_GL_TransactionsQuery setSeg3In(ArrayList value) { this.Seg3In = value; return this; } public String getSeg4() { return Seg4; } public v_GL_TransactionsQuery setSeg4(String value) { this.Seg4 = value; return this; } public String getSeg4StartsWith() { return Seg4StartsWith; } public v_GL_TransactionsQuery setSeg4StartsWith(String value) { this.Seg4StartsWith = value; return this; } public String getSeg4EndsWith() { return Seg4EndsWith; } public v_GL_TransactionsQuery setSeg4EndsWith(String value) { this.Seg4EndsWith = value; return this; } public String getSeg4Contains() { return Seg4Contains; } public v_GL_TransactionsQuery setSeg4Contains(String value) { this.Seg4Contains = value; return this; } public String getSeg4Like() { return Seg4Like; } public v_GL_TransactionsQuery setSeg4Like(String value) { this.Seg4Like = value; return this; } public ArrayList getSeg4Between() { return Seg4Between; } public v_GL_TransactionsQuery setSeg4Between(ArrayList value) { this.Seg4Between = value; return this; } public ArrayList getSeg4In() { return Seg4In; } public v_GL_TransactionsQuery setSeg4In(ArrayList value) { this.Seg4In = value; return this; } public String getSeg5() { return Seg5; } public v_GL_TransactionsQuery setSeg5(String value) { this.Seg5 = value; return this; } public String getSeg5StartsWith() { return Seg5StartsWith; } public v_GL_TransactionsQuery setSeg5StartsWith(String value) { this.Seg5StartsWith = value; return this; } public String getSeg5EndsWith() { return Seg5EndsWith; } public v_GL_TransactionsQuery setSeg5EndsWith(String value) { this.Seg5EndsWith = value; return this; } public String getSeg5Contains() { return Seg5Contains; } public v_GL_TransactionsQuery setSeg5Contains(String value) { this.Seg5Contains = value; return this; } public String getSeg5Like() { return Seg5Like; } public v_GL_TransactionsQuery setSeg5Like(String value) { this.Seg5Like = value; return this; } public ArrayList getSeg5Between() { return Seg5Between; } public v_GL_TransactionsQuery setSeg5Between(ArrayList value) { this.Seg5Between = value; return this; } public ArrayList getSeg5In() { return Seg5In; } public v_GL_TransactionsQuery setSeg5In(ArrayList value) { this.Seg5In = value; return this; } public String getSeg6() { return Seg6; } public v_GL_TransactionsQuery setSeg6(String value) { this.Seg6 = value; return this; } public String getSeg6StartsWith() { return Seg6StartsWith; } public v_GL_TransactionsQuery setSeg6StartsWith(String value) { this.Seg6StartsWith = value; return this; } public String getSeg6EndsWith() { return Seg6EndsWith; } public v_GL_TransactionsQuery setSeg6EndsWith(String value) { this.Seg6EndsWith = value; return this; } public String getSeg6Contains() { return Seg6Contains; } public v_GL_TransactionsQuery setSeg6Contains(String value) { this.Seg6Contains = value; return this; } public String getSeg6Like() { return Seg6Like; } public v_GL_TransactionsQuery setSeg6Like(String value) { this.Seg6Like = value; return this; } public ArrayList getSeg6Between() { return Seg6Between; } public v_GL_TransactionsQuery setSeg6Between(ArrayList value) { this.Seg6Between = value; return this; } public ArrayList getSeg6In() { return Seg6In; } public v_GL_TransactionsQuery setSeg6In(ArrayList value) { this.Seg6In = value; return this; } public BigDecimal getAmount() { return Amount; } public v_GL_TransactionsQuery setAmount(BigDecimal value) { this.Amount = value; return this; } public BigDecimal getAmountGreaterThanOrEqualTo() { return AmountGreaterThanOrEqualTo; } public v_GL_TransactionsQuery setAmountGreaterThanOrEqualTo(BigDecimal value) { this.AmountGreaterThanOrEqualTo = value; return this; } public BigDecimal getAmountGreaterThan() { return AmountGreaterThan; } public v_GL_TransactionsQuery setAmountGreaterThan(BigDecimal value) { this.AmountGreaterThan = value; return this; } public BigDecimal getAmountLessThan() { return AmountLessThan; } public v_GL_TransactionsQuery setAmountLessThan(BigDecimal value) { this.AmountLessThan = value; return this; } public BigDecimal getAmountLessThanOrEqualTo() { return AmountLessThanOrEqualTo; } public v_GL_TransactionsQuery setAmountLessThanOrEqualTo(BigDecimal value) { this.AmountLessThanOrEqualTo = value; return this; } public BigDecimal getAmountNotEqualTo() { return AmountNotEqualTo; } public v_GL_TransactionsQuery setAmountNotEqualTo(BigDecimal value) { this.AmountNotEqualTo = value; return this; } public ArrayList getAmountBetween() { return AmountBetween; } public v_GL_TransactionsQuery setAmountBetween(ArrayList value) { this.AmountBetween = value; return this; } public ArrayList getAmountIn() { return AmountIn; } public v_GL_TransactionsQuery setAmountIn(ArrayList value) { this.AmountIn = value; return this; } public Date getTransPostDateTime() { return TransPostDateTime; } public v_GL_TransactionsQuery setTransPostDateTime(Date value) { this.TransPostDateTime = value; return this; } public Date getTransPostDateTimeGreaterThanOrEqualTo() { return TransPostDateTimeGreaterThanOrEqualTo; } public v_GL_TransactionsQuery setTransPostDateTimeGreaterThanOrEqualTo(Date value) { this.TransPostDateTimeGreaterThanOrEqualTo = value; return this; } public Date getTransPostDateTimeGreaterThan() { return TransPostDateTimeGreaterThan; } public v_GL_TransactionsQuery setTransPostDateTimeGreaterThan(Date value) { this.TransPostDateTimeGreaterThan = value; return this; } public Date getTransPostDateTimeLessThan() { return TransPostDateTimeLessThan; } public v_GL_TransactionsQuery setTransPostDateTimeLessThan(Date value) { this.TransPostDateTimeLessThan = value; return this; } public Date getTransPostDateTimeLessThanOrEqualTo() { return TransPostDateTimeLessThanOrEqualTo; } public v_GL_TransactionsQuery setTransPostDateTimeLessThanOrEqualTo(Date value) { this.TransPostDateTimeLessThanOrEqualTo = value; return this; } public Date getTransPostDateTimeNotEqualTo() { return TransPostDateTimeNotEqualTo; } public v_GL_TransactionsQuery setTransPostDateTimeNotEqualTo(Date value) { this.TransPostDateTimeNotEqualTo = value; return this; } public ArrayList getTransPostDateTimeBetween() { return TransPostDateTimeBetween; } public v_GL_TransactionsQuery setTransPostDateTimeBetween(ArrayList value) { this.TransPostDateTimeBetween = value; return this; } public ArrayList getTransPostDateTimeIn() { return TransPostDateTimeIn; } public v_GL_TransactionsQuery setTransPostDateTimeIn(ArrayList value) { this.TransPostDateTimeIn = value; return this; } public String getCategory() { return Category; } public v_GL_TransactionsQuery setCategory(String value) { this.Category = value; return this; } public String getCategoryStartsWith() { return CategoryStartsWith; } public v_GL_TransactionsQuery setCategoryStartsWith(String value) { this.CategoryStartsWith = value; return this; } public String getCategoryEndsWith() { return CategoryEndsWith; } public v_GL_TransactionsQuery setCategoryEndsWith(String value) { this.CategoryEndsWith = value; return this; } public String getCategoryContains() { return CategoryContains; } public v_GL_TransactionsQuery setCategoryContains(String value) { this.CategoryContains = value; return this; } public String getCategoryLike() { return CategoryLike; } public v_GL_TransactionsQuery setCategoryLike(String value) { this.CategoryLike = value; return this; } public ArrayList getCategoryBetween() { return CategoryBetween; } public v_GL_TransactionsQuery setCategoryBetween(ArrayList value) { this.CategoryBetween = value; return this; } public ArrayList getCategoryIn() { return CategoryIn; } public v_GL_TransactionsQuery setCategoryIn(ArrayList value) { this.CategoryIn = value; return this; } public String getAccountDescription() { return AccountDescription; } public v_GL_TransactionsQuery setAccountDescription(String value) { this.AccountDescription = value; return this; } public String getAccountDescriptionStartsWith() { return AccountDescriptionStartsWith; } public v_GL_TransactionsQuery setAccountDescriptionStartsWith(String value) { this.AccountDescriptionStartsWith = value; return this; } public String getAccountDescriptionEndsWith() { return AccountDescriptionEndsWith; } public v_GL_TransactionsQuery setAccountDescriptionEndsWith(String value) { this.AccountDescriptionEndsWith = value; return this; } public String getAccountDescriptionContains() { return AccountDescriptionContains; } public v_GL_TransactionsQuery setAccountDescriptionContains(String value) { this.AccountDescriptionContains = value; return this; } public String getAccountDescriptionLike() { return AccountDescriptionLike; } public v_GL_TransactionsQuery setAccountDescriptionLike(String value) { this.AccountDescriptionLike = value; return this; } public ArrayList getAccountDescriptionBetween() { return AccountDescriptionBetween; } public v_GL_TransactionsQuery setAccountDescriptionBetween(ArrayList value) { this.AccountDescriptionBetween = value; return this; } public ArrayList getAccountDescriptionIn() { return AccountDescriptionIn; } public v_GL_TransactionsQuery setAccountDescriptionIn(ArrayList value) { this.AccountDescriptionIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class V_INV_AssemblyQuery extends QueryDb implements IReturn> { public String AssemblyNO = null; public String AssemblyNOStartsWith = null; public String AssemblyNOEndsWith = null; public String AssemblyNOContains = null; public String AssemblyNOLike = null; public ArrayList AssemblyNOBetween = null; public ArrayList AssemblyNOIn = null; public String Date = null; public String DateStartsWith = null; public String DateEndsWith = null; public String DateContains = null; public String DateLike = null; public ArrayList DateBetween = null; public ArrayList DateIn = null; public String AssembleTo = null; public String AssembleToStartsWith = null; public String AssembleToEndsWith = null; public String AssembleToContains = null; public String AssembleToLike = null; public ArrayList AssembleToBetween = null; public ArrayList AssembleToIn = null; public String AssemblyType = null; public String AssemblyTypeStartsWith = null; public String AssemblyTypeEndsWith = null; public String AssemblyTypeContains = null; public String AssemblyTypeLike = null; public ArrayList AssemblyTypeBetween = null; public ArrayList AssemblyTypeIn = null; public String AssembleFrom = null; public String AssembleFromStartsWith = null; public String AssembleFromEndsWith = null; public String AssembleFromContains = null; public String AssembleFromLike = null; public ArrayList AssembleFromBetween = null; public ArrayList AssembleFromIn = null; public String INAssemblyHistoryID = null; public String INAssemblyHistoryIDStartsWith = null; public String INAssemblyHistoryIDEndsWith = null; public String INAssemblyHistoryIDContains = null; public String INAssemblyHistoryIDLike = null; public ArrayList INAssemblyHistoryIDBetween = null; public ArrayList INAssemblyHistoryIDIn = null; public String INAssemblyLineID = null; public String INAssemblyLineIDStartsWith = null; public String INAssemblyLineIDEndsWith = null; public String INAssemblyLineIDContains = null; public String INAssemblyLineIDLike = null; public ArrayList INAssemblyLineIDBetween = null; public ArrayList INAssemblyLineIDIn = null; public String getAssemblyNO() { return AssemblyNO; } public V_INV_AssemblyQuery setAssemblyNO(String value) { this.AssemblyNO = value; return this; } public String getAssemblyNOStartsWith() { return AssemblyNOStartsWith; } public V_INV_AssemblyQuery setAssemblyNOStartsWith(String value) { this.AssemblyNOStartsWith = value; return this; } public String getAssemblyNOEndsWith() { return AssemblyNOEndsWith; } public V_INV_AssemblyQuery setAssemblyNOEndsWith(String value) { this.AssemblyNOEndsWith = value; return this; } public String getAssemblyNOContains() { return AssemblyNOContains; } public V_INV_AssemblyQuery setAssemblyNOContains(String value) { this.AssemblyNOContains = value; return this; } public String getAssemblyNOLike() { return AssemblyNOLike; } public V_INV_AssemblyQuery setAssemblyNOLike(String value) { this.AssemblyNOLike = value; return this; } public ArrayList getAssemblyNOBetween() { return AssemblyNOBetween; } public V_INV_AssemblyQuery setAssemblyNOBetween(ArrayList value) { this.AssemblyNOBetween = value; return this; } public ArrayList getAssemblyNOIn() { return AssemblyNOIn; } public V_INV_AssemblyQuery setAssemblyNOIn(ArrayList value) { this.AssemblyNOIn = value; return this; } public String getDate() { return Date; } public V_INV_AssemblyQuery setDate(String value) { this.Date = value; return this; } public String getDateStartsWith() { return DateStartsWith; } public V_INV_AssemblyQuery setDateStartsWith(String value) { this.DateStartsWith = value; return this; } public String getDateEndsWith() { return DateEndsWith; } public V_INV_AssemblyQuery setDateEndsWith(String value) { this.DateEndsWith = value; return this; } public String getDateContains() { return DateContains; } public V_INV_AssemblyQuery setDateContains(String value) { this.DateContains = value; return this; } public String getDateLike() { return DateLike; } public V_INV_AssemblyQuery setDateLike(String value) { this.DateLike = value; return this; } public ArrayList getDateBetween() { return DateBetween; } public V_INV_AssemblyQuery setDateBetween(ArrayList value) { this.DateBetween = value; return this; } public ArrayList getDateIn() { return DateIn; } public V_INV_AssemblyQuery setDateIn(ArrayList value) { this.DateIn = value; return this; } public String getAssembleTo() { return AssembleTo; } public V_INV_AssemblyQuery setAssembleTo(String value) { this.AssembleTo = value; return this; } public String getAssembleToStartsWith() { return AssembleToStartsWith; } public V_INV_AssemblyQuery setAssembleToStartsWith(String value) { this.AssembleToStartsWith = value; return this; } public String getAssembleToEndsWith() { return AssembleToEndsWith; } public V_INV_AssemblyQuery setAssembleToEndsWith(String value) { this.AssembleToEndsWith = value; return this; } public String getAssembleToContains() { return AssembleToContains; } public V_INV_AssemblyQuery setAssembleToContains(String value) { this.AssembleToContains = value; return this; } public String getAssembleToLike() { return AssembleToLike; } public V_INV_AssemblyQuery setAssembleToLike(String value) { this.AssembleToLike = value; return this; } public ArrayList getAssembleToBetween() { return AssembleToBetween; } public V_INV_AssemblyQuery setAssembleToBetween(ArrayList value) { this.AssembleToBetween = value; return this; } public ArrayList getAssembleToIn() { return AssembleToIn; } public V_INV_AssemblyQuery setAssembleToIn(ArrayList value) { this.AssembleToIn = value; return this; } public String getAssemblyType() { return AssemblyType; } public V_INV_AssemblyQuery setAssemblyType(String value) { this.AssemblyType = value; return this; } public String getAssemblyTypeStartsWith() { return AssemblyTypeStartsWith; } public V_INV_AssemblyQuery setAssemblyTypeStartsWith(String value) { this.AssemblyTypeStartsWith = value; return this; } public String getAssemblyTypeEndsWith() { return AssemblyTypeEndsWith; } public V_INV_AssemblyQuery setAssemblyTypeEndsWith(String value) { this.AssemblyTypeEndsWith = value; return this; } public String getAssemblyTypeContains() { return AssemblyTypeContains; } public V_INV_AssemblyQuery setAssemblyTypeContains(String value) { this.AssemblyTypeContains = value; return this; } public String getAssemblyTypeLike() { return AssemblyTypeLike; } public V_INV_AssemblyQuery setAssemblyTypeLike(String value) { this.AssemblyTypeLike = value; return this; } public ArrayList getAssemblyTypeBetween() { return AssemblyTypeBetween; } public V_INV_AssemblyQuery setAssemblyTypeBetween(ArrayList value) { this.AssemblyTypeBetween = value; return this; } public ArrayList getAssemblyTypeIn() { return AssemblyTypeIn; } public V_INV_AssemblyQuery setAssemblyTypeIn(ArrayList value) { this.AssemblyTypeIn = value; return this; } public String getAssembleFrom() { return AssembleFrom; } public V_INV_AssemblyQuery setAssembleFrom(String value) { this.AssembleFrom = value; return this; } public String getAssembleFromStartsWith() { return AssembleFromStartsWith; } public V_INV_AssemblyQuery setAssembleFromStartsWith(String value) { this.AssembleFromStartsWith = value; return this; } public String getAssembleFromEndsWith() { return AssembleFromEndsWith; } public V_INV_AssemblyQuery setAssembleFromEndsWith(String value) { this.AssembleFromEndsWith = value; return this; } public String getAssembleFromContains() { return AssembleFromContains; } public V_INV_AssemblyQuery setAssembleFromContains(String value) { this.AssembleFromContains = value; return this; } public String getAssembleFromLike() { return AssembleFromLike; } public V_INV_AssemblyQuery setAssembleFromLike(String value) { this.AssembleFromLike = value; return this; } public ArrayList getAssembleFromBetween() { return AssembleFromBetween; } public V_INV_AssemblyQuery setAssembleFromBetween(ArrayList value) { this.AssembleFromBetween = value; return this; } public ArrayList getAssembleFromIn() { return AssembleFromIn; } public V_INV_AssemblyQuery setAssembleFromIn(ArrayList value) { this.AssembleFromIn = value; return this; } public String getInAssemblyHistoryID() { return INAssemblyHistoryID; } public V_INV_AssemblyQuery setInAssemblyHistoryID(String value) { this.INAssemblyHistoryID = value; return this; } public String getInAssemblyHistoryIDStartsWith() { return INAssemblyHistoryIDStartsWith; } public V_INV_AssemblyQuery setInAssemblyHistoryIDStartsWith(String value) { this.INAssemblyHistoryIDStartsWith = value; return this; } public String getInAssemblyHistoryIDEndsWith() { return INAssemblyHistoryIDEndsWith; } public V_INV_AssemblyQuery setInAssemblyHistoryIDEndsWith(String value) { this.INAssemblyHistoryIDEndsWith = value; return this; } public String getInAssemblyHistoryIDContains() { return INAssemblyHistoryIDContains; } public V_INV_AssemblyQuery setInAssemblyHistoryIDContains(String value) { this.INAssemblyHistoryIDContains = value; return this; } public String getInAssemblyHistoryIDLike() { return INAssemblyHistoryIDLike; } public V_INV_AssemblyQuery setInAssemblyHistoryIDLike(String value) { this.INAssemblyHistoryIDLike = value; return this; } public ArrayList getInAssemblyHistoryIDBetween() { return INAssemblyHistoryIDBetween; } public V_INV_AssemblyQuery setInAssemblyHistoryIDBetween(ArrayList value) { this.INAssemblyHistoryIDBetween = value; return this; } public ArrayList getInAssemblyHistoryIDIn() { return INAssemblyHistoryIDIn; } public V_INV_AssemblyQuery setInAssemblyHistoryIDIn(ArrayList value) { this.INAssemblyHistoryIDIn = value; return this; } public String getInAssemblyLineID() { return INAssemblyLineID; } public V_INV_AssemblyQuery setInAssemblyLineID(String value) { this.INAssemblyLineID = value; return this; } public String getInAssemblyLineIDStartsWith() { return INAssemblyLineIDStartsWith; } public V_INV_AssemblyQuery setInAssemblyLineIDStartsWith(String value) { this.INAssemblyLineIDStartsWith = value; return this; } public String getInAssemblyLineIDEndsWith() { return INAssemblyLineIDEndsWith; } public V_INV_AssemblyQuery setInAssemblyLineIDEndsWith(String value) { this.INAssemblyLineIDEndsWith = value; return this; } public String getInAssemblyLineIDContains() { return INAssemblyLineIDContains; } public V_INV_AssemblyQuery setInAssemblyLineIDContains(String value) { this.INAssemblyLineIDContains = value; return this; } public String getInAssemblyLineIDLike() { return INAssemblyLineIDLike; } public V_INV_AssemblyQuery setInAssemblyLineIDLike(String value) { this.INAssemblyLineIDLike = value; return this; } public ArrayList getInAssemblyLineIDBetween() { return INAssemblyLineIDBetween; } public V_INV_AssemblyQuery setInAssemblyLineIDBetween(ArrayList value) { this.INAssemblyLineIDBetween = value; return this; } public ArrayList getInAssemblyLineIDIn() { return INAssemblyLineIDIn; } public V_INV_AssemblyQuery setInAssemblyLineIDIn(ArrayList value) { this.INAssemblyLineIDIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class V_INV_PIQuery extends QueryDb implements IReturn> { public String InvoiceNO = null; public String InvoiceNOStartsWith = null; public String InvoiceNOEndsWith = null; public String InvoiceNOContains = null; public String InvoiceNOLike = null; public ArrayList InvoiceNOBetween = null; public ArrayList InvoiceNOIn = null; public String SuppPart = null; public String SuppPartStartsWith = null; public String SuppPartEndsWith = null; public String SuppPartContains = null; public String SuppPartLike = null; public ArrayList SuppPartBetween = null; public ArrayList SuppPartIn = null; public String Date = null; public String DateStartsWith = null; public String DateEndsWith = null; public String DateContains = null; public String DateLike = null; public ArrayList DateBetween = null; public ArrayList DateIn = null; public String AccountNo = null; public String AccountNoStartsWith = null; public String AccountNoEndsWith = null; public String AccountNoContains = null; public String AccountNoLike = null; public ArrayList AccountNoBetween = null; public ArrayList AccountNoIn = null; public String SerialNo = null; public String SerialNoStartsWith = null; public String SerialNoEndsWith = null; public String SerialNoContains = null; public String SerialNoLike = null; public ArrayList SerialNoBetween = null; public ArrayList SerialNoIn = null; public String BinLoc = null; public String BinLocStartsWith = null; public String BinLocEndsWith = null; public String BinLocContains = null; public String BinLocLike = null; public ArrayList BinLocBetween = null; public ArrayList BinLocIn = null; public String PI_LinesDetailsID = null; public String PI_LinesDetailsIDStartsWith = null; public String PI_LinesDetailsIDEndsWith = null; public String PI_LinesDetailsIDContains = null; public String PI_LinesDetailsIDLike = null; public ArrayList PI_LinesDetailsIDBetween = null; public ArrayList PI_LinesDetailsIDIn = null; public String getInvoiceNO() { return InvoiceNO; } public V_INV_PIQuery setInvoiceNO(String value) { this.InvoiceNO = value; return this; } public String getInvoiceNOStartsWith() { return InvoiceNOStartsWith; } public V_INV_PIQuery setInvoiceNOStartsWith(String value) { this.InvoiceNOStartsWith = value; return this; } public String getInvoiceNOEndsWith() { return InvoiceNOEndsWith; } public V_INV_PIQuery setInvoiceNOEndsWith(String value) { this.InvoiceNOEndsWith = value; return this; } public String getInvoiceNOContains() { return InvoiceNOContains; } public V_INV_PIQuery setInvoiceNOContains(String value) { this.InvoiceNOContains = value; return this; } public String getInvoiceNOLike() { return InvoiceNOLike; } public V_INV_PIQuery setInvoiceNOLike(String value) { this.InvoiceNOLike = value; return this; } public ArrayList getInvoiceNOBetween() { return InvoiceNOBetween; } public V_INV_PIQuery setInvoiceNOBetween(ArrayList value) { this.InvoiceNOBetween = value; return this; } public ArrayList getInvoiceNOIn() { return InvoiceNOIn; } public V_INV_PIQuery setInvoiceNOIn(ArrayList value) { this.InvoiceNOIn = value; return this; } public String getSuppPart() { return SuppPart; } public V_INV_PIQuery setSuppPart(String value) { this.SuppPart = value; return this; } public String getSuppPartStartsWith() { return SuppPartStartsWith; } public V_INV_PIQuery setSuppPartStartsWith(String value) { this.SuppPartStartsWith = value; return this; } public String getSuppPartEndsWith() { return SuppPartEndsWith; } public V_INV_PIQuery setSuppPartEndsWith(String value) { this.SuppPartEndsWith = value; return this; } public String getSuppPartContains() { return SuppPartContains; } public V_INV_PIQuery setSuppPartContains(String value) { this.SuppPartContains = value; return this; } public String getSuppPartLike() { return SuppPartLike; } public V_INV_PIQuery setSuppPartLike(String value) { this.SuppPartLike = value; return this; } public ArrayList getSuppPartBetween() { return SuppPartBetween; } public V_INV_PIQuery setSuppPartBetween(ArrayList value) { this.SuppPartBetween = value; return this; } public ArrayList getSuppPartIn() { return SuppPartIn; } public V_INV_PIQuery setSuppPartIn(ArrayList value) { this.SuppPartIn = value; return this; } public String getDate() { return Date; } public V_INV_PIQuery setDate(String value) { this.Date = value; return this; } public String getDateStartsWith() { return DateStartsWith; } public V_INV_PIQuery setDateStartsWith(String value) { this.DateStartsWith = value; return this; } public String getDateEndsWith() { return DateEndsWith; } public V_INV_PIQuery setDateEndsWith(String value) { this.DateEndsWith = value; return this; } public String getDateContains() { return DateContains; } public V_INV_PIQuery setDateContains(String value) { this.DateContains = value; return this; } public String getDateLike() { return DateLike; } public V_INV_PIQuery setDateLike(String value) { this.DateLike = value; return this; } public ArrayList getDateBetween() { return DateBetween; } public V_INV_PIQuery setDateBetween(ArrayList value) { this.DateBetween = value; return this; } public ArrayList getDateIn() { return DateIn; } public V_INV_PIQuery setDateIn(ArrayList value) { this.DateIn = value; return this; } public String getAccountNo() { return AccountNo; } public V_INV_PIQuery setAccountNo(String value) { this.AccountNo = value; return this; } public String getAccountNoStartsWith() { return AccountNoStartsWith; } public V_INV_PIQuery setAccountNoStartsWith(String value) { this.AccountNoStartsWith = value; return this; } public String getAccountNoEndsWith() { return AccountNoEndsWith; } public V_INV_PIQuery setAccountNoEndsWith(String value) { this.AccountNoEndsWith = value; return this; } public String getAccountNoContains() { return AccountNoContains; } public V_INV_PIQuery setAccountNoContains(String value) { this.AccountNoContains = value; return this; } public String getAccountNoLike() { return AccountNoLike; } public V_INV_PIQuery setAccountNoLike(String value) { this.AccountNoLike = value; return this; } public ArrayList getAccountNoBetween() { return AccountNoBetween; } public V_INV_PIQuery setAccountNoBetween(ArrayList value) { this.AccountNoBetween = value; return this; } public ArrayList getAccountNoIn() { return AccountNoIn; } public V_INV_PIQuery setAccountNoIn(ArrayList value) { this.AccountNoIn = value; return this; } public String getSerialNo() { return SerialNo; } public V_INV_PIQuery setSerialNo(String value) { this.SerialNo = value; return this; } public String getSerialNoStartsWith() { return SerialNoStartsWith; } public V_INV_PIQuery setSerialNoStartsWith(String value) { this.SerialNoStartsWith = value; return this; } public String getSerialNoEndsWith() { return SerialNoEndsWith; } public V_INV_PIQuery setSerialNoEndsWith(String value) { this.SerialNoEndsWith = value; return this; } public String getSerialNoContains() { return SerialNoContains; } public V_INV_PIQuery setSerialNoContains(String value) { this.SerialNoContains = value; return this; } public String getSerialNoLike() { return SerialNoLike; } public V_INV_PIQuery setSerialNoLike(String value) { this.SerialNoLike = value; return this; } public ArrayList getSerialNoBetween() { return SerialNoBetween; } public V_INV_PIQuery setSerialNoBetween(ArrayList value) { this.SerialNoBetween = value; return this; } public ArrayList getSerialNoIn() { return SerialNoIn; } public V_INV_PIQuery setSerialNoIn(ArrayList value) { this.SerialNoIn = value; return this; } public String getBinLoc() { return BinLoc; } public V_INV_PIQuery setBinLoc(String value) { this.BinLoc = value; return this; } public String getBinLocStartsWith() { return BinLocStartsWith; } public V_INV_PIQuery setBinLocStartsWith(String value) { this.BinLocStartsWith = value; return this; } public String getBinLocEndsWith() { return BinLocEndsWith; } public V_INV_PIQuery setBinLocEndsWith(String value) { this.BinLocEndsWith = value; return this; } public String getBinLocContains() { return BinLocContains; } public V_INV_PIQuery setBinLocContains(String value) { this.BinLocContains = value; return this; } public String getBinLocLike() { return BinLocLike; } public V_INV_PIQuery setBinLocLike(String value) { this.BinLocLike = value; return this; } public ArrayList getBinLocBetween() { return BinLocBetween; } public V_INV_PIQuery setBinLocBetween(ArrayList value) { this.BinLocBetween = value; return this; } public ArrayList getBinLocIn() { return BinLocIn; } public V_INV_PIQuery setBinLocIn(ArrayList value) { this.BinLocIn = value; return this; } public String getPiLinesDetailsID() { return PI_LinesDetailsID; } public V_INV_PIQuery setPiLinesDetailsID(String value) { this.PI_LinesDetailsID = value; return this; } public String getPiLinesDetailsIDStartsWith() { return PI_LinesDetailsIDStartsWith; } public V_INV_PIQuery setPiLinesDetailsIDStartsWith(String value) { this.PI_LinesDetailsIDStartsWith = value; return this; } public String getPiLinesDetailsIDEndsWith() { return PI_LinesDetailsIDEndsWith; } public V_INV_PIQuery setPiLinesDetailsIDEndsWith(String value) { this.PI_LinesDetailsIDEndsWith = value; return this; } public String getPiLinesDetailsIDContains() { return PI_LinesDetailsIDContains; } public V_INV_PIQuery setPiLinesDetailsIDContains(String value) { this.PI_LinesDetailsIDContains = value; return this; } public String getPiLinesDetailsIDLike() { return PI_LinesDetailsIDLike; } public V_INV_PIQuery setPiLinesDetailsIDLike(String value) { this.PI_LinesDetailsIDLike = value; return this; } public ArrayList getPiLinesDetailsIDBetween() { return PI_LinesDetailsIDBetween; } public V_INV_PIQuery setPiLinesDetailsIDBetween(ArrayList value) { this.PI_LinesDetailsIDBetween = value; return this; } public ArrayList getPiLinesDetailsIDIn() { return PI_LinesDetailsIDIn; } public V_INV_PIQuery setPiLinesDetailsIDIn(ArrayList value) { this.PI_LinesDetailsIDIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class V_INV_ReceivalQuery extends QueryDb implements IReturn> { public String SlipNo = null; public String SlipNoStartsWith = null; public String SlipNoEndsWith = null; public String SlipNoContains = null; public String SlipNoLike = null; public ArrayList SlipNoBetween = null; public ArrayList SlipNoIn = null; public String Date = null; public String DateStartsWith = null; public String DateEndsWith = null; public String DateContains = null; public String DateLike = null; public ArrayList DateBetween = null; public ArrayList DateIn = null; public String SuppPart = null; public String SuppPartStartsWith = null; public String SuppPartEndsWith = null; public String SuppPartContains = null; public String SuppPartLike = null; public ArrayList SuppPartBetween = null; public ArrayList SuppPartIn = null; public String AccountNO = null; public String AccountNOStartsWith = null; public String AccountNOEndsWith = null; public String AccountNOContains = null; public String AccountNOLike = null; public ArrayList AccountNOBetween = null; public ArrayList AccountNOIn = null; public String SourceID = null; public String SourceIDStartsWith = null; public String SourceIDEndsWith = null; public String SourceIDContains = null; public String SourceIDLike = null; public ArrayList SourceIDBetween = null; public ArrayList SourceIDIn = null; public String getSlipNo() { return SlipNo; } public V_INV_ReceivalQuery setSlipNo(String value) { this.SlipNo = value; return this; } public String getSlipNoStartsWith() { return SlipNoStartsWith; } public V_INV_ReceivalQuery setSlipNoStartsWith(String value) { this.SlipNoStartsWith = value; return this; } public String getSlipNoEndsWith() { return SlipNoEndsWith; } public V_INV_ReceivalQuery setSlipNoEndsWith(String value) { this.SlipNoEndsWith = value; return this; } public String getSlipNoContains() { return SlipNoContains; } public V_INV_ReceivalQuery setSlipNoContains(String value) { this.SlipNoContains = value; return this; } public String getSlipNoLike() { return SlipNoLike; } public V_INV_ReceivalQuery setSlipNoLike(String value) { this.SlipNoLike = value; return this; } public ArrayList getSlipNoBetween() { return SlipNoBetween; } public V_INV_ReceivalQuery setSlipNoBetween(ArrayList value) { this.SlipNoBetween = value; return this; } public ArrayList getSlipNoIn() { return SlipNoIn; } public V_INV_ReceivalQuery setSlipNoIn(ArrayList value) { this.SlipNoIn = value; return this; } public String getDate() { return Date; } public V_INV_ReceivalQuery setDate(String value) { this.Date = value; return this; } public String getDateStartsWith() { return DateStartsWith; } public V_INV_ReceivalQuery setDateStartsWith(String value) { this.DateStartsWith = value; return this; } public String getDateEndsWith() { return DateEndsWith; } public V_INV_ReceivalQuery setDateEndsWith(String value) { this.DateEndsWith = value; return this; } public String getDateContains() { return DateContains; } public V_INV_ReceivalQuery setDateContains(String value) { this.DateContains = value; return this; } public String getDateLike() { return DateLike; } public V_INV_ReceivalQuery setDateLike(String value) { this.DateLike = value; return this; } public ArrayList getDateBetween() { return DateBetween; } public V_INV_ReceivalQuery setDateBetween(ArrayList value) { this.DateBetween = value; return this; } public ArrayList getDateIn() { return DateIn; } public V_INV_ReceivalQuery setDateIn(ArrayList value) { this.DateIn = value; return this; } public String getSuppPart() { return SuppPart; } public V_INV_ReceivalQuery setSuppPart(String value) { this.SuppPart = value; return this; } public String getSuppPartStartsWith() { return SuppPartStartsWith; } public V_INV_ReceivalQuery setSuppPartStartsWith(String value) { this.SuppPartStartsWith = value; return this; } public String getSuppPartEndsWith() { return SuppPartEndsWith; } public V_INV_ReceivalQuery setSuppPartEndsWith(String value) { this.SuppPartEndsWith = value; return this; } public String getSuppPartContains() { return SuppPartContains; } public V_INV_ReceivalQuery setSuppPartContains(String value) { this.SuppPartContains = value; return this; } public String getSuppPartLike() { return SuppPartLike; } public V_INV_ReceivalQuery setSuppPartLike(String value) { this.SuppPartLike = value; return this; } public ArrayList getSuppPartBetween() { return SuppPartBetween; } public V_INV_ReceivalQuery setSuppPartBetween(ArrayList value) { this.SuppPartBetween = value; return this; } public ArrayList getSuppPartIn() { return SuppPartIn; } public V_INV_ReceivalQuery setSuppPartIn(ArrayList value) { this.SuppPartIn = value; return this; } public String getAccountNO() { return AccountNO; } public V_INV_ReceivalQuery setAccountNO(String value) { this.AccountNO = value; return this; } public String getAccountNOStartsWith() { return AccountNOStartsWith; } public V_INV_ReceivalQuery setAccountNOStartsWith(String value) { this.AccountNOStartsWith = value; return this; } public String getAccountNOEndsWith() { return AccountNOEndsWith; } public V_INV_ReceivalQuery setAccountNOEndsWith(String value) { this.AccountNOEndsWith = value; return this; } public String getAccountNOContains() { return AccountNOContains; } public V_INV_ReceivalQuery setAccountNOContains(String value) { this.AccountNOContains = value; return this; } public String getAccountNOLike() { return AccountNOLike; } public V_INV_ReceivalQuery setAccountNOLike(String value) { this.AccountNOLike = value; return this; } public ArrayList getAccountNOBetween() { return AccountNOBetween; } public V_INV_ReceivalQuery setAccountNOBetween(ArrayList value) { this.AccountNOBetween = value; return this; } public ArrayList getAccountNOIn() { return AccountNOIn; } public V_INV_ReceivalQuery setAccountNOIn(ArrayList value) { this.AccountNOIn = value; return this; } public String getSourceID() { return SourceID; } public V_INV_ReceivalQuery setSourceID(String value) { this.SourceID = value; return this; } public String getSourceIDStartsWith() { return SourceIDStartsWith; } public V_INV_ReceivalQuery setSourceIDStartsWith(String value) { this.SourceIDStartsWith = value; return this; } public String getSourceIDEndsWith() { return SourceIDEndsWith; } public V_INV_ReceivalQuery setSourceIDEndsWith(String value) { this.SourceIDEndsWith = value; return this; } public String getSourceIDContains() { return SourceIDContains; } public V_INV_ReceivalQuery setSourceIDContains(String value) { this.SourceIDContains = value; return this; } public String getSourceIDLike() { return SourceIDLike; } public V_INV_ReceivalQuery setSourceIDLike(String value) { this.SourceIDLike = value; return this; } public ArrayList getSourceIDBetween() { return SourceIDBetween; } public V_INV_ReceivalQuery setSourceIDBetween(ArrayList value) { this.SourceIDBetween = value; return this; } public ArrayList getSourceIDIn() { return SourceIDIn; } public V_INV_ReceivalQuery setSourceIDIn(ArrayList value) { this.SourceIDIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class V_Inv_SalesQuery extends QueryDb implements IReturn> { public String FullInvNo = null; public String FullInvNoStartsWith = null; public String FullInvNoEndsWith = null; public String FullInvNoContains = null; public String FullInvNoLike = null; public ArrayList FullInvNoBetween = null; public ArrayList FullInvNoIn = null; public String Date = null; public String DateStartsWith = null; public String DateEndsWith = null; public String DateContains = null; public String DateLike = null; public ArrayList DateBetween = null; public ArrayList DateIn = null; public String orderno = null; public String ordernoStartsWith = null; public String ordernoEndsWith = null; public String ordernoContains = null; public String ordernoLike = null; public ArrayList ordernoBetween = null; public ArrayList ordernoIn = null; public String Accountno = null; public String AccountnoStartsWith = null; public String AccountnoEndsWith = null; public String AccountnoContains = null; public String AccountnoLike = null; public ArrayList AccountnoBetween = null; public ArrayList AccountnoIn = null; public String QtyOrd = null; public String QtyOrdStartsWith = null; public String QtyOrdEndsWith = null; public String QtyOrdContains = null; public String QtyOrdLike = null; public ArrayList QtyOrdBetween = null; public ArrayList QtyOrdIn = null; public String InvoiceLineID = null; public String InvoiceLineIDStartsWith = null; public String InvoiceLineIDEndsWith = null; public String InvoiceLineIDContains = null; public String InvoiceLineIDLike = null; public ArrayList InvoiceLineIDBetween = null; public ArrayList InvoiceLineIDIn = null; public String InventoryID = null; public String InventoryIDStartsWith = null; public String InventoryIDEndsWith = null; public String InventoryIDContains = null; public String InventoryIDLike = null; public ArrayList InventoryIDBetween = null; public ArrayList InventoryIDIn = null; public String InvoiceHistoryID = null; public String InvoiceHistoryIDStartsWith = null; public String InvoiceHistoryIDEndsWith = null; public String InvoiceHistoryIDContains = null; public String InvoiceHistoryIDLike = null; public ArrayList InvoiceHistoryIDBetween = null; public ArrayList InvoiceHistoryIDIn = null; public String getFullInvNo() { return FullInvNo; } public V_Inv_SalesQuery setFullInvNo(String value) { this.FullInvNo = value; return this; } public String getFullInvNoStartsWith() { return FullInvNoStartsWith; } public V_Inv_SalesQuery setFullInvNoStartsWith(String value) { this.FullInvNoStartsWith = value; return this; } public String getFullInvNoEndsWith() { return FullInvNoEndsWith; } public V_Inv_SalesQuery setFullInvNoEndsWith(String value) { this.FullInvNoEndsWith = value; return this; } public String getFullInvNoContains() { return FullInvNoContains; } public V_Inv_SalesQuery setFullInvNoContains(String value) { this.FullInvNoContains = value; return this; } public String getFullInvNoLike() { return FullInvNoLike; } public V_Inv_SalesQuery setFullInvNoLike(String value) { this.FullInvNoLike = value; return this; } public ArrayList getFullInvNoBetween() { return FullInvNoBetween; } public V_Inv_SalesQuery setFullInvNoBetween(ArrayList value) { this.FullInvNoBetween = value; return this; } public ArrayList getFullInvNoIn() { return FullInvNoIn; } public V_Inv_SalesQuery setFullInvNoIn(ArrayList value) { this.FullInvNoIn = value; return this; } public String getDate() { return Date; } public V_Inv_SalesQuery setDate(String value) { this.Date = value; return this; } public String getDateStartsWith() { return DateStartsWith; } public V_Inv_SalesQuery setDateStartsWith(String value) { this.DateStartsWith = value; return this; } public String getDateEndsWith() { return DateEndsWith; } public V_Inv_SalesQuery setDateEndsWith(String value) { this.DateEndsWith = value; return this; } public String getDateContains() { return DateContains; } public V_Inv_SalesQuery setDateContains(String value) { this.DateContains = value; return this; } public String getDateLike() { return DateLike; } public V_Inv_SalesQuery setDateLike(String value) { this.DateLike = value; return this; } public ArrayList getDateBetween() { return DateBetween; } public V_Inv_SalesQuery setDateBetween(ArrayList value) { this.DateBetween = value; return this; } public ArrayList getDateIn() { return DateIn; } public V_Inv_SalesQuery setDateIn(ArrayList value) { this.DateIn = value; return this; } public String getOrderno() { return orderno; } public V_Inv_SalesQuery setOrderno(String value) { this.orderno = value; return this; } public String getOrdernoStartsWith() { return ordernoStartsWith; } public V_Inv_SalesQuery setOrdernoStartsWith(String value) { this.ordernoStartsWith = value; return this; } public String getOrdernoEndsWith() { return ordernoEndsWith; } public V_Inv_SalesQuery setOrdernoEndsWith(String value) { this.ordernoEndsWith = value; return this; } public String getOrdernoContains() { return ordernoContains; } public V_Inv_SalesQuery setOrdernoContains(String value) { this.ordernoContains = value; return this; } public String getOrdernoLike() { return ordernoLike; } public V_Inv_SalesQuery setOrdernoLike(String value) { this.ordernoLike = value; return this; } public ArrayList getOrdernoBetween() { return ordernoBetween; } public V_Inv_SalesQuery setOrdernoBetween(ArrayList value) { this.ordernoBetween = value; return this; } public ArrayList getOrdernoIn() { return ordernoIn; } public V_Inv_SalesQuery setOrdernoIn(ArrayList value) { this.ordernoIn = value; return this; } public String getAccountno() { return Accountno; } public V_Inv_SalesQuery setAccountno(String value) { this.Accountno = value; return this; } public String getAccountnoStartsWith() { return AccountnoStartsWith; } public V_Inv_SalesQuery setAccountnoStartsWith(String value) { this.AccountnoStartsWith = value; return this; } public String getAccountnoEndsWith() { return AccountnoEndsWith; } public V_Inv_SalesQuery setAccountnoEndsWith(String value) { this.AccountnoEndsWith = value; return this; } public String getAccountnoContains() { return AccountnoContains; } public V_Inv_SalesQuery setAccountnoContains(String value) { this.AccountnoContains = value; return this; } public String getAccountnoLike() { return AccountnoLike; } public V_Inv_SalesQuery setAccountnoLike(String value) { this.AccountnoLike = value; return this; } public ArrayList getAccountnoBetween() { return AccountnoBetween; } public V_Inv_SalesQuery setAccountnoBetween(ArrayList value) { this.AccountnoBetween = value; return this; } public ArrayList getAccountnoIn() { return AccountnoIn; } public V_Inv_SalesQuery setAccountnoIn(ArrayList value) { this.AccountnoIn = value; return this; } public String getQtyOrd() { return QtyOrd; } public V_Inv_SalesQuery setQtyOrd(String value) { this.QtyOrd = value; return this; } public String getQtyOrdStartsWith() { return QtyOrdStartsWith; } public V_Inv_SalesQuery setQtyOrdStartsWith(String value) { this.QtyOrdStartsWith = value; return this; } public String getQtyOrdEndsWith() { return QtyOrdEndsWith; } public V_Inv_SalesQuery setQtyOrdEndsWith(String value) { this.QtyOrdEndsWith = value; return this; } public String getQtyOrdContains() { return QtyOrdContains; } public V_Inv_SalesQuery setQtyOrdContains(String value) { this.QtyOrdContains = value; return this; } public String getQtyOrdLike() { return QtyOrdLike; } public V_Inv_SalesQuery setQtyOrdLike(String value) { this.QtyOrdLike = value; return this; } public ArrayList getQtyOrdBetween() { return QtyOrdBetween; } public V_Inv_SalesQuery setQtyOrdBetween(ArrayList value) { this.QtyOrdBetween = value; return this; } public ArrayList getQtyOrdIn() { return QtyOrdIn; } public V_Inv_SalesQuery setQtyOrdIn(ArrayList value) { this.QtyOrdIn = value; return this; } public String getInvoiceLineID() { return InvoiceLineID; } public V_Inv_SalesQuery setInvoiceLineID(String value) { this.InvoiceLineID = value; return this; } public String getInvoiceLineIDStartsWith() { return InvoiceLineIDStartsWith; } public V_Inv_SalesQuery setInvoiceLineIDStartsWith(String value) { this.InvoiceLineIDStartsWith = value; return this; } public String getInvoiceLineIDEndsWith() { return InvoiceLineIDEndsWith; } public V_Inv_SalesQuery setInvoiceLineIDEndsWith(String value) { this.InvoiceLineIDEndsWith = value; return this; } public String getInvoiceLineIDContains() { return InvoiceLineIDContains; } public V_Inv_SalesQuery setInvoiceLineIDContains(String value) { this.InvoiceLineIDContains = value; return this; } public String getInvoiceLineIDLike() { return InvoiceLineIDLike; } public V_Inv_SalesQuery setInvoiceLineIDLike(String value) { this.InvoiceLineIDLike = value; return this; } public ArrayList getInvoiceLineIDBetween() { return InvoiceLineIDBetween; } public V_Inv_SalesQuery setInvoiceLineIDBetween(ArrayList value) { this.InvoiceLineIDBetween = value; return this; } public ArrayList getInvoiceLineIDIn() { return InvoiceLineIDIn; } public V_Inv_SalesQuery setInvoiceLineIDIn(ArrayList value) { this.InvoiceLineIDIn = value; return this; } public String getInventoryID() { return InventoryID; } public V_Inv_SalesQuery setInventoryID(String value) { this.InventoryID = value; return this; } public String getInventoryIDStartsWith() { return InventoryIDStartsWith; } public V_Inv_SalesQuery setInventoryIDStartsWith(String value) { this.InventoryIDStartsWith = value; return this; } public String getInventoryIDEndsWith() { return InventoryIDEndsWith; } public V_Inv_SalesQuery setInventoryIDEndsWith(String value) { this.InventoryIDEndsWith = value; return this; } public String getInventoryIDContains() { return InventoryIDContains; } public V_Inv_SalesQuery setInventoryIDContains(String value) { this.InventoryIDContains = value; return this; } public String getInventoryIDLike() { return InventoryIDLike; } public V_Inv_SalesQuery setInventoryIDLike(String value) { this.InventoryIDLike = value; return this; } public ArrayList getInventoryIDBetween() { return InventoryIDBetween; } public V_Inv_SalesQuery setInventoryIDBetween(ArrayList value) { this.InventoryIDBetween = value; return this; } public ArrayList getInventoryIDIn() { return InventoryIDIn; } public V_Inv_SalesQuery setInventoryIDIn(ArrayList value) { this.InventoryIDIn = value; return this; } public String getInvoiceHistoryID() { return InvoiceHistoryID; } public V_Inv_SalesQuery setInvoiceHistoryID(String value) { this.InvoiceHistoryID = value; return this; } public String getInvoiceHistoryIDStartsWith() { return InvoiceHistoryIDStartsWith; } public V_Inv_SalesQuery setInvoiceHistoryIDStartsWith(String value) { this.InvoiceHistoryIDStartsWith = value; return this; } public String getInvoiceHistoryIDEndsWith() { return InvoiceHistoryIDEndsWith; } public V_Inv_SalesQuery setInvoiceHistoryIDEndsWith(String value) { this.InvoiceHistoryIDEndsWith = value; return this; } public String getInvoiceHistoryIDContains() { return InvoiceHistoryIDContains; } public V_Inv_SalesQuery setInvoiceHistoryIDContains(String value) { this.InvoiceHistoryIDContains = value; return this; } public String getInvoiceHistoryIDLike() { return InvoiceHistoryIDLike; } public V_Inv_SalesQuery setInvoiceHistoryIDLike(String value) { this.InvoiceHistoryIDLike = value; return this; } public ArrayList getInvoiceHistoryIDBetween() { return InvoiceHistoryIDBetween; } public V_Inv_SalesQuery setInvoiceHistoryIDBetween(ArrayList value) { this.InvoiceHistoryIDBetween = value; return this; } public ArrayList getInvoiceHistoryIDIn() { return InvoiceHistoryIDIn; } public V_Inv_SalesQuery setInvoiceHistoryIDIn(ArrayList value) { this.InvoiceHistoryIDIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class V_INV_UnProQtyBinQuery extends QueryDb implements IReturn> { public String InventoryID = null; public String InventoryIDStartsWith = null; public String InventoryIDEndsWith = null; public String InventoryIDContains = null; public String InventoryIDLike = null; public ArrayList InventoryIDBetween = null; public ArrayList InventoryIDIn = null; public BigDecimal QTY = null; public BigDecimal QTYGreaterThanOrEqualTo = null; public BigDecimal QTYGreaterThan = null; public BigDecimal QTYLessThan = null; public BigDecimal QTYLessThanOrEqualTo = null; public BigDecimal QTYNotEqualTo = null; public ArrayList QTYBetween = null; public ArrayList QTYIn = null; public BigDecimal Value = null; public BigDecimal ValueGreaterThanOrEqualTo = null; public BigDecimal ValueGreaterThan = null; public BigDecimal ValueLessThan = null; public BigDecimal ValueLessThanOrEqualTo = null; public BigDecimal ValueNotEqualTo = null; public ArrayList ValueBetween = null; public ArrayList ValueIn = null; public String IN_LogicalID = null; public String IN_LogicalIDStartsWith = null; public String IN_LogicalIDEndsWith = null; public String IN_LogicalIDContains = null; public String IN_LogicalIDLike = null; public ArrayList IN_LogicalIDBetween = null; public ArrayList IN_LogicalIDIn = null; public String BinLocation = null; public String BinLocationStartsWith = null; public String BinLocationEndsWith = null; public String BinLocationContains = null; public String BinLocationLike = null; public ArrayList BinLocationBetween = null; public ArrayList BinLocationIn = null; public String getInventoryID() { return InventoryID; } public V_INV_UnProQtyBinQuery setInventoryID(String value) { this.InventoryID = value; return this; } public String getInventoryIDStartsWith() { return InventoryIDStartsWith; } public V_INV_UnProQtyBinQuery setInventoryIDStartsWith(String value) { this.InventoryIDStartsWith = value; return this; } public String getInventoryIDEndsWith() { return InventoryIDEndsWith; } public V_INV_UnProQtyBinQuery setInventoryIDEndsWith(String value) { this.InventoryIDEndsWith = value; return this; } public String getInventoryIDContains() { return InventoryIDContains; } public V_INV_UnProQtyBinQuery setInventoryIDContains(String value) { this.InventoryIDContains = value; return this; } public String getInventoryIDLike() { return InventoryIDLike; } public V_INV_UnProQtyBinQuery setInventoryIDLike(String value) { this.InventoryIDLike = value; return this; } public ArrayList getInventoryIDBetween() { return InventoryIDBetween; } public V_INV_UnProQtyBinQuery setInventoryIDBetween(ArrayList value) { this.InventoryIDBetween = value; return this; } public ArrayList getInventoryIDIn() { return InventoryIDIn; } public V_INV_UnProQtyBinQuery setInventoryIDIn(ArrayList value) { this.InventoryIDIn = value; return this; } public BigDecimal getQty() { return QTY; } public V_INV_UnProQtyBinQuery setQty(BigDecimal value) { this.QTY = value; return this; } public BigDecimal getQtyGreaterThanOrEqualTo() { return QTYGreaterThanOrEqualTo; } public V_INV_UnProQtyBinQuery setQtyGreaterThanOrEqualTo(BigDecimal value) { this.QTYGreaterThanOrEqualTo = value; return this; } public BigDecimal getQtyGreaterThan() { return QTYGreaterThan; } public V_INV_UnProQtyBinQuery setQtyGreaterThan(BigDecimal value) { this.QTYGreaterThan = value; return this; } public BigDecimal getQtyLessThan() { return QTYLessThan; } public V_INV_UnProQtyBinQuery setQtyLessThan(BigDecimal value) { this.QTYLessThan = value; return this; } public BigDecimal getQtyLessThanOrEqualTo() { return QTYLessThanOrEqualTo; } public V_INV_UnProQtyBinQuery setQtyLessThanOrEqualTo(BigDecimal value) { this.QTYLessThanOrEqualTo = value; return this; } public BigDecimal getQtyNotEqualTo() { return QTYNotEqualTo; } public V_INV_UnProQtyBinQuery setQtyNotEqualTo(BigDecimal value) { this.QTYNotEqualTo = value; return this; } public ArrayList getQtyBetween() { return QTYBetween; } public V_INV_UnProQtyBinQuery setQtyBetween(ArrayList value) { this.QTYBetween = value; return this; } public ArrayList getQtyIn() { return QTYIn; } public V_INV_UnProQtyBinQuery setQtyIn(ArrayList value) { this.QTYIn = value; return this; } public BigDecimal getValue() { return Value; } public V_INV_UnProQtyBinQuery setValue(BigDecimal value) { this.Value = value; return this; } public BigDecimal getValueGreaterThanOrEqualTo() { return ValueGreaterThanOrEqualTo; } public V_INV_UnProQtyBinQuery setValueGreaterThanOrEqualTo(BigDecimal value) { this.ValueGreaterThanOrEqualTo = value; return this; } public BigDecimal getValueGreaterThan() { return ValueGreaterThan; } public V_INV_UnProQtyBinQuery setValueGreaterThan(BigDecimal value) { this.ValueGreaterThan = value; return this; } public BigDecimal getValueLessThan() { return ValueLessThan; } public V_INV_UnProQtyBinQuery setValueLessThan(BigDecimal value) { this.ValueLessThan = value; return this; } public BigDecimal getValueLessThanOrEqualTo() { return ValueLessThanOrEqualTo; } public V_INV_UnProQtyBinQuery setValueLessThanOrEqualTo(BigDecimal value) { this.ValueLessThanOrEqualTo = value; return this; } public BigDecimal getValueNotEqualTo() { return ValueNotEqualTo; } public V_INV_UnProQtyBinQuery setValueNotEqualTo(BigDecimal value) { this.ValueNotEqualTo = value; return this; } public ArrayList getValueBetween() { return ValueBetween; } public V_INV_UnProQtyBinQuery setValueBetween(ArrayList value) { this.ValueBetween = value; return this; } public ArrayList getValueIn() { return ValueIn; } public V_INV_UnProQtyBinQuery setValueIn(ArrayList value) { this.ValueIn = value; return this; } public String getInLogicalID() { return IN_LogicalID; } public V_INV_UnProQtyBinQuery setInLogicalID(String value) { this.IN_LogicalID = value; return this; } public String getInLogicalIDStartsWith() { return IN_LogicalIDStartsWith; } public V_INV_UnProQtyBinQuery setInLogicalIDStartsWith(String value) { this.IN_LogicalIDStartsWith = value; return this; } public String getInLogicalIDEndsWith() { return IN_LogicalIDEndsWith; } public V_INV_UnProQtyBinQuery setInLogicalIDEndsWith(String value) { this.IN_LogicalIDEndsWith = value; return this; } public String getInLogicalIDContains() { return IN_LogicalIDContains; } public V_INV_UnProQtyBinQuery setInLogicalIDContains(String value) { this.IN_LogicalIDContains = value; return this; } public String getInLogicalIDLike() { return IN_LogicalIDLike; } public V_INV_UnProQtyBinQuery setInLogicalIDLike(String value) { this.IN_LogicalIDLike = value; return this; } public ArrayList getInLogicalIDBetween() { return IN_LogicalIDBetween; } public V_INV_UnProQtyBinQuery setInLogicalIDBetween(ArrayList value) { this.IN_LogicalIDBetween = value; return this; } public ArrayList getInLogicalIDIn() { return IN_LogicalIDIn; } public V_INV_UnProQtyBinQuery setInLogicalIDIn(ArrayList value) { this.IN_LogicalIDIn = value; return this; } public String getBinLocation() { return BinLocation; } public V_INV_UnProQtyBinQuery setBinLocation(String value) { this.BinLocation = value; return this; } public String getBinLocationStartsWith() { return BinLocationStartsWith; } public V_INV_UnProQtyBinQuery setBinLocationStartsWith(String value) { this.BinLocationStartsWith = value; return this; } public String getBinLocationEndsWith() { return BinLocationEndsWith; } public V_INV_UnProQtyBinQuery setBinLocationEndsWith(String value) { this.BinLocationEndsWith = value; return this; } public String getBinLocationContains() { return BinLocationContains; } public V_INV_UnProQtyBinQuery setBinLocationContains(String value) { this.BinLocationContains = value; return this; } public String getBinLocationLike() { return BinLocationLike; } public V_INV_UnProQtyBinQuery setBinLocationLike(String value) { this.BinLocationLike = value; return this; } public ArrayList getBinLocationBetween() { return BinLocationBetween; } public V_INV_UnProQtyBinQuery setBinLocationBetween(ArrayList value) { this.BinLocationBetween = value; return this; } public ArrayList getBinLocationIn() { return BinLocationIn; } public V_INV_UnProQtyBinQuery setBinLocationIn(ArrayList value) { this.BinLocationIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class V_INV_WHTransferQuery extends QueryDb implements IReturn> { public String TransferNo = null; public String TransferNoStartsWith = null; public String TransferNoEndsWith = null; public String TransferNoContains = null; public String TransferNoLike = null; public ArrayList TransferNoBetween = null; public ArrayList TransferNoIn = null; public String Date = null; public String DateStartsWith = null; public String DateEndsWith = null; public String DateContains = null; public String DateLike = null; public ArrayList DateBetween = null; public ArrayList DateIn = null; public String Ref = null; public String RefStartsWith = null; public String RefEndsWith = null; public String RefContains = null; public String RefLike = null; public ArrayList RefBetween = null; public ArrayList RefIn = null; public String FromWH = null; public String FromWHStartsWith = null; public String FromWHEndsWith = null; public String FromWHContains = null; public String FromWHLike = null; public ArrayList FromWHBetween = null; public ArrayList FromWHIn = null; public String ToWH = null; public String ToWHStartsWith = null; public String ToWHEndsWith = null; public String ToWHContains = null; public String ToWHLike = null; public ArrayList ToWHBetween = null; public ArrayList ToWHIn = null; public String WH_TransferLineID = null; public String WH_TransferLineIDStartsWith = null; public String WH_TransferLineIDEndsWith = null; public String WH_TransferLineIDContains = null; public String WH_TransferLineIDLike = null; public ArrayList WH_TransferLineIDBetween = null; public ArrayList WH_TransferLineIDIn = null; public String WH_TransferLineDetailsID = null; public String WH_TransferLineDetailsIDStartsWith = null; public String WH_TransferLineDetailsIDEndsWith = null; public String WH_TransferLineDetailsIDContains = null; public String WH_TransferLineDetailsIDLike = null; public ArrayList WH_TransferLineDetailsIDBetween = null; public ArrayList WH_TransferLineDetailsIDIn = null; public String SerialNo = null; public String SerialNoStartsWith = null; public String SerialNoEndsWith = null; public String SerialNoContains = null; public String SerialNoLike = null; public ArrayList SerialNoBetween = null; public ArrayList SerialNoIn = null; public String getTransferNo() { return TransferNo; } public V_INV_WHTransferQuery setTransferNo(String value) { this.TransferNo = value; return this; } public String getTransferNoStartsWith() { return TransferNoStartsWith; } public V_INV_WHTransferQuery setTransferNoStartsWith(String value) { this.TransferNoStartsWith = value; return this; } public String getTransferNoEndsWith() { return TransferNoEndsWith; } public V_INV_WHTransferQuery setTransferNoEndsWith(String value) { this.TransferNoEndsWith = value; return this; } public String getTransferNoContains() { return TransferNoContains; } public V_INV_WHTransferQuery setTransferNoContains(String value) { this.TransferNoContains = value; return this; } public String getTransferNoLike() { return TransferNoLike; } public V_INV_WHTransferQuery setTransferNoLike(String value) { this.TransferNoLike = value; return this; } public ArrayList getTransferNoBetween() { return TransferNoBetween; } public V_INV_WHTransferQuery setTransferNoBetween(ArrayList value) { this.TransferNoBetween = value; return this; } public ArrayList getTransferNoIn() { return TransferNoIn; } public V_INV_WHTransferQuery setTransferNoIn(ArrayList value) { this.TransferNoIn = value; return this; } public String getDate() { return Date; } public V_INV_WHTransferQuery setDate(String value) { this.Date = value; return this; } public String getDateStartsWith() { return DateStartsWith; } public V_INV_WHTransferQuery setDateStartsWith(String value) { this.DateStartsWith = value; return this; } public String getDateEndsWith() { return DateEndsWith; } public V_INV_WHTransferQuery setDateEndsWith(String value) { this.DateEndsWith = value; return this; } public String getDateContains() { return DateContains; } public V_INV_WHTransferQuery setDateContains(String value) { this.DateContains = value; return this; } public String getDateLike() { return DateLike; } public V_INV_WHTransferQuery setDateLike(String value) { this.DateLike = value; return this; } public ArrayList getDateBetween() { return DateBetween; } public V_INV_WHTransferQuery setDateBetween(ArrayList value) { this.DateBetween = value; return this; } public ArrayList getDateIn() { return DateIn; } public V_INV_WHTransferQuery setDateIn(ArrayList value) { this.DateIn = value; return this; } public String getRef() { return Ref; } public V_INV_WHTransferQuery setRef(String value) { this.Ref = value; return this; } public String getRefStartsWith() { return RefStartsWith; } public V_INV_WHTransferQuery setRefStartsWith(String value) { this.RefStartsWith = value; return this; } public String getRefEndsWith() { return RefEndsWith; } public V_INV_WHTransferQuery setRefEndsWith(String value) { this.RefEndsWith = value; return this; } public String getRefContains() { return RefContains; } public V_INV_WHTransferQuery setRefContains(String value) { this.RefContains = value; return this; } public String getRefLike() { return RefLike; } public V_INV_WHTransferQuery setRefLike(String value) { this.RefLike = value; return this; } public ArrayList getRefBetween() { return RefBetween; } public V_INV_WHTransferQuery setRefBetween(ArrayList value) { this.RefBetween = value; return this; } public ArrayList getRefIn() { return RefIn; } public V_INV_WHTransferQuery setRefIn(ArrayList value) { this.RefIn = value; return this; } public String getFromWH() { return FromWH; } public V_INV_WHTransferQuery setFromWH(String value) { this.FromWH = value; return this; } public String getFromWHStartsWith() { return FromWHStartsWith; } public V_INV_WHTransferQuery setFromWHStartsWith(String value) { this.FromWHStartsWith = value; return this; } public String getFromWHEndsWith() { return FromWHEndsWith; } public V_INV_WHTransferQuery setFromWHEndsWith(String value) { this.FromWHEndsWith = value; return this; } public String getFromWHContains() { return FromWHContains; } public V_INV_WHTransferQuery setFromWHContains(String value) { this.FromWHContains = value; return this; } public String getFromWHLike() { return FromWHLike; } public V_INV_WHTransferQuery setFromWHLike(String value) { this.FromWHLike = value; return this; } public ArrayList getFromWHBetween() { return FromWHBetween; } public V_INV_WHTransferQuery setFromWHBetween(ArrayList value) { this.FromWHBetween = value; return this; } public ArrayList getFromWHIn() { return FromWHIn; } public V_INV_WHTransferQuery setFromWHIn(ArrayList value) { this.FromWHIn = value; return this; } public String getToWH() { return ToWH; } public V_INV_WHTransferQuery setToWH(String value) { this.ToWH = value; return this; } public String getToWHStartsWith() { return ToWHStartsWith; } public V_INV_WHTransferQuery setToWHStartsWith(String value) { this.ToWHStartsWith = value; return this; } public String getToWHEndsWith() { return ToWHEndsWith; } public V_INV_WHTransferQuery setToWHEndsWith(String value) { this.ToWHEndsWith = value; return this; } public String getToWHContains() { return ToWHContains; } public V_INV_WHTransferQuery setToWHContains(String value) { this.ToWHContains = value; return this; } public String getToWHLike() { return ToWHLike; } public V_INV_WHTransferQuery setToWHLike(String value) { this.ToWHLike = value; return this; } public ArrayList getToWHBetween() { return ToWHBetween; } public V_INV_WHTransferQuery setToWHBetween(ArrayList value) { this.ToWHBetween = value; return this; } public ArrayList getToWHIn() { return ToWHIn; } public V_INV_WHTransferQuery setToWHIn(ArrayList value) { this.ToWHIn = value; return this; } public String getWhTransferLineID() { return WH_TransferLineID; } public V_INV_WHTransferQuery setWhTransferLineID(String value) { this.WH_TransferLineID = value; return this; } public String getWhTransferLineIDStartsWith() { return WH_TransferLineIDStartsWith; } public V_INV_WHTransferQuery setWhTransferLineIDStartsWith(String value) { this.WH_TransferLineIDStartsWith = value; return this; } public String getWhTransferLineIDEndsWith() { return WH_TransferLineIDEndsWith; } public V_INV_WHTransferQuery setWhTransferLineIDEndsWith(String value) { this.WH_TransferLineIDEndsWith = value; return this; } public String getWhTransferLineIDContains() { return WH_TransferLineIDContains; } public V_INV_WHTransferQuery setWhTransferLineIDContains(String value) { this.WH_TransferLineIDContains = value; return this; } public String getWhTransferLineIDLike() { return WH_TransferLineIDLike; } public V_INV_WHTransferQuery setWhTransferLineIDLike(String value) { this.WH_TransferLineIDLike = value; return this; } public ArrayList getWhTransferLineIDBetween() { return WH_TransferLineIDBetween; } public V_INV_WHTransferQuery setWhTransferLineIDBetween(ArrayList value) { this.WH_TransferLineIDBetween = value; return this; } public ArrayList getWhTransferLineIDIn() { return WH_TransferLineIDIn; } public V_INV_WHTransferQuery setWhTransferLineIDIn(ArrayList value) { this.WH_TransferLineIDIn = value; return this; } public String getWhTransferLineDetailsID() { return WH_TransferLineDetailsID; } public V_INV_WHTransferQuery setWhTransferLineDetailsID(String value) { this.WH_TransferLineDetailsID = value; return this; } public String getWhTransferLineDetailsIDStartsWith() { return WH_TransferLineDetailsIDStartsWith; } public V_INV_WHTransferQuery setWhTransferLineDetailsIDStartsWith(String value) { this.WH_TransferLineDetailsIDStartsWith = value; return this; } public String getWhTransferLineDetailsIDEndsWith() { return WH_TransferLineDetailsIDEndsWith; } public V_INV_WHTransferQuery setWhTransferLineDetailsIDEndsWith(String value) { this.WH_TransferLineDetailsIDEndsWith = value; return this; } public String getWhTransferLineDetailsIDContains() { return WH_TransferLineDetailsIDContains; } public V_INV_WHTransferQuery setWhTransferLineDetailsIDContains(String value) { this.WH_TransferLineDetailsIDContains = value; return this; } public String getWhTransferLineDetailsIDLike() { return WH_TransferLineDetailsIDLike; } public V_INV_WHTransferQuery setWhTransferLineDetailsIDLike(String value) { this.WH_TransferLineDetailsIDLike = value; return this; } public ArrayList getWhTransferLineDetailsIDBetween() { return WH_TransferLineDetailsIDBetween; } public V_INV_WHTransferQuery setWhTransferLineDetailsIDBetween(ArrayList value) { this.WH_TransferLineDetailsIDBetween = value; return this; } public ArrayList getWhTransferLineDetailsIDIn() { return WH_TransferLineDetailsIDIn; } public V_INV_WHTransferQuery setWhTransferLineDetailsIDIn(ArrayList value) { this.WH_TransferLineDetailsIDIn = value; return this; } public String getSerialNo() { return SerialNo; } public V_INV_WHTransferQuery setSerialNo(String value) { this.SerialNo = value; return this; } public String getSerialNoStartsWith() { return SerialNoStartsWith; } public V_INV_WHTransferQuery setSerialNoStartsWith(String value) { this.SerialNoStartsWith = value; return this; } public String getSerialNoEndsWith() { return SerialNoEndsWith; } public V_INV_WHTransferQuery setSerialNoEndsWith(String value) { this.SerialNoEndsWith = value; return this; } public String getSerialNoContains() { return SerialNoContains; } public V_INV_WHTransferQuery setSerialNoContains(String value) { this.SerialNoContains = value; return this; } public String getSerialNoLike() { return SerialNoLike; } public V_INV_WHTransferQuery setSerialNoLike(String value) { this.SerialNoLike = value; return this; } public ArrayList getSerialNoBetween() { return SerialNoBetween; } public V_INV_WHTransferQuery setSerialNoBetween(ArrayList value) { this.SerialNoBetween = value; return this; } public ArrayList getSerialNoIn() { return SerialNoIn; } public V_INV_WHTransferQuery setSerialNoIn(ArrayList value) { this.SerialNoIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class v_InventoryQuery extends QueryDb implements IReturn> { public String InventoryID = null; public String InventoryIDStartsWith = null; public String InventoryIDEndsWith = null; public String InventoryIDContains = null; public String InventoryIDLike = null; public ArrayList InventoryIDBetween = null; public ArrayList InventoryIDIn = null; public String PartNo = null; public String PartNoStartsWith = null; public String PartNoEndsWith = null; public String PartNoContains = null; public String PartNoLike = null; public ArrayList PartNoBetween = null; public ArrayList PartNoIn = null; public String Description = null; public String DescriptionStartsWith = null; public String DescriptionEndsWith = null; public String DescriptionContains = null; public String DescriptionLike = null; public ArrayList DescriptionBetween = null; public ArrayList DescriptionIn = null; public String PartNoAndDescription = null; public String PartNoAndDescriptionStartsWith = null; public String PartNoAndDescriptionEndsWith = null; public String PartNoAndDescriptionContains = null; public String PartNoAndDescriptionLike = null; public ArrayList PartNoAndDescriptionBetween = null; public ArrayList PartNoAndDescriptionIn = null; public String Category1ID = null; public String Category1IDStartsWith = null; public String Category1IDEndsWith = null; public String Category1IDContains = null; public String Category1IDLike = null; public ArrayList Category1IDBetween = null; public ArrayList Category1IDIn = null; public String Category2ID = null; public String Category2IDStartsWith = null; public String Category2IDEndsWith = null; public String Category2IDContains = null; public String Category2IDLike = null; public ArrayList Category2IDBetween = null; public ArrayList Category2IDIn = null; public String Category3ID = null; public String Category3IDStartsWith = null; public String Category3IDEndsWith = null; public String Category3IDContains = null; public String Category3IDLike = null; public ArrayList Category3IDBetween = null; public ArrayList Category3IDIn = null; public String Category4ID = null; public String Category4IDStartsWith = null; public String Category4IDEndsWith = null; public String Category4IDContains = null; public String Category4IDLike = null; public ArrayList Category4IDBetween = null; public ArrayList Category4IDIn = null; public String Category5ID = null; public String Category5IDStartsWith = null; public String Category5IDEndsWith = null; public String Category5IDContains = null; public String Category5IDLike = null; public ArrayList Category5IDBetween = null; public ArrayList Category5IDIn = null; public String ClassificationID = null; public String ClassificationIDStartsWith = null; public String ClassificationIDEndsWith = null; public String ClassificationIDContains = null; public String ClassificationIDLike = null; public ArrayList ClassificationIDBetween = null; public ArrayList ClassificationIDIn = null; public String getInventoryID() { return InventoryID; } public v_InventoryQuery setInventoryID(String value) { this.InventoryID = value; return this; } public String getInventoryIDStartsWith() { return InventoryIDStartsWith; } public v_InventoryQuery setInventoryIDStartsWith(String value) { this.InventoryIDStartsWith = value; return this; } public String getInventoryIDEndsWith() { return InventoryIDEndsWith; } public v_InventoryQuery setInventoryIDEndsWith(String value) { this.InventoryIDEndsWith = value; return this; } public String getInventoryIDContains() { return InventoryIDContains; } public v_InventoryQuery setInventoryIDContains(String value) { this.InventoryIDContains = value; return this; } public String getInventoryIDLike() { return InventoryIDLike; } public v_InventoryQuery setInventoryIDLike(String value) { this.InventoryIDLike = value; return this; } public ArrayList getInventoryIDBetween() { return InventoryIDBetween; } public v_InventoryQuery setInventoryIDBetween(ArrayList value) { this.InventoryIDBetween = value; return this; } public ArrayList getInventoryIDIn() { return InventoryIDIn; } public v_InventoryQuery setInventoryIDIn(ArrayList value) { this.InventoryIDIn = value; return this; } public String getPartNo() { return PartNo; } public v_InventoryQuery setPartNo(String value) { this.PartNo = value; return this; } public String getPartNoStartsWith() { return PartNoStartsWith; } public v_InventoryQuery setPartNoStartsWith(String value) { this.PartNoStartsWith = value; return this; } public String getPartNoEndsWith() { return PartNoEndsWith; } public v_InventoryQuery setPartNoEndsWith(String value) { this.PartNoEndsWith = value; return this; } public String getPartNoContains() { return PartNoContains; } public v_InventoryQuery setPartNoContains(String value) { this.PartNoContains = value; return this; } public String getPartNoLike() { return PartNoLike; } public v_InventoryQuery setPartNoLike(String value) { this.PartNoLike = value; return this; } public ArrayList getPartNoBetween() { return PartNoBetween; } public v_InventoryQuery setPartNoBetween(ArrayList value) { this.PartNoBetween = value; return this; } public ArrayList getPartNoIn() { return PartNoIn; } public v_InventoryQuery setPartNoIn(ArrayList value) { this.PartNoIn = value; return this; } public String getDescription() { return Description; } public v_InventoryQuery setDescription(String value) { this.Description = value; return this; } public String getDescriptionStartsWith() { return DescriptionStartsWith; } public v_InventoryQuery setDescriptionStartsWith(String value) { this.DescriptionStartsWith = value; return this; } public String getDescriptionEndsWith() { return DescriptionEndsWith; } public v_InventoryQuery setDescriptionEndsWith(String value) { this.DescriptionEndsWith = value; return this; } public String getDescriptionContains() { return DescriptionContains; } public v_InventoryQuery setDescriptionContains(String value) { this.DescriptionContains = value; return this; } public String getDescriptionLike() { return DescriptionLike; } public v_InventoryQuery setDescriptionLike(String value) { this.DescriptionLike = value; return this; } public ArrayList getDescriptionBetween() { return DescriptionBetween; } public v_InventoryQuery setDescriptionBetween(ArrayList value) { this.DescriptionBetween = value; return this; } public ArrayList getDescriptionIn() { return DescriptionIn; } public v_InventoryQuery setDescriptionIn(ArrayList value) { this.DescriptionIn = value; return this; } public String getPartNoAndDescription() { return PartNoAndDescription; } public v_InventoryQuery setPartNoAndDescription(String value) { this.PartNoAndDescription = value; return this; } public String getPartNoAndDescriptionStartsWith() { return PartNoAndDescriptionStartsWith; } public v_InventoryQuery setPartNoAndDescriptionStartsWith(String value) { this.PartNoAndDescriptionStartsWith = value; return this; } public String getPartNoAndDescriptionEndsWith() { return PartNoAndDescriptionEndsWith; } public v_InventoryQuery setPartNoAndDescriptionEndsWith(String value) { this.PartNoAndDescriptionEndsWith = value; return this; } public String getPartNoAndDescriptionContains() { return PartNoAndDescriptionContains; } public v_InventoryQuery setPartNoAndDescriptionContains(String value) { this.PartNoAndDescriptionContains = value; return this; } public String getPartNoAndDescriptionLike() { return PartNoAndDescriptionLike; } public v_InventoryQuery setPartNoAndDescriptionLike(String value) { this.PartNoAndDescriptionLike = value; return this; } public ArrayList getPartNoAndDescriptionBetween() { return PartNoAndDescriptionBetween; } public v_InventoryQuery setPartNoAndDescriptionBetween(ArrayList value) { this.PartNoAndDescriptionBetween = value; return this; } public ArrayList getPartNoAndDescriptionIn() { return PartNoAndDescriptionIn; } public v_InventoryQuery setPartNoAndDescriptionIn(ArrayList value) { this.PartNoAndDescriptionIn = value; return this; } public String getCategory1ID() { return Category1ID; } public v_InventoryQuery setCategory1ID(String value) { this.Category1ID = value; return this; } public String getCategory1IDStartsWith() { return Category1IDStartsWith; } public v_InventoryQuery setCategory1IDStartsWith(String value) { this.Category1IDStartsWith = value; return this; } public String getCategory1IDEndsWith() { return Category1IDEndsWith; } public v_InventoryQuery setCategory1IDEndsWith(String value) { this.Category1IDEndsWith = value; return this; } public String getCategory1IDContains() { return Category1IDContains; } public v_InventoryQuery setCategory1IDContains(String value) { this.Category1IDContains = value; return this; } public String getCategory1IDLike() { return Category1IDLike; } public v_InventoryQuery setCategory1IDLike(String value) { this.Category1IDLike = value; return this; } public ArrayList getCategory1IDBetween() { return Category1IDBetween; } public v_InventoryQuery setCategory1IDBetween(ArrayList value) { this.Category1IDBetween = value; return this; } public ArrayList getCategory1IDIn() { return Category1IDIn; } public v_InventoryQuery setCategory1IDIn(ArrayList value) { this.Category1IDIn = value; return this; } public String getCategory2ID() { return Category2ID; } public v_InventoryQuery setCategory2ID(String value) { this.Category2ID = value; return this; } public String getCategory2IDStartsWith() { return Category2IDStartsWith; } public v_InventoryQuery setCategory2IDStartsWith(String value) { this.Category2IDStartsWith = value; return this; } public String getCategory2IDEndsWith() { return Category2IDEndsWith; } public v_InventoryQuery setCategory2IDEndsWith(String value) { this.Category2IDEndsWith = value; return this; } public String getCategory2IDContains() { return Category2IDContains; } public v_InventoryQuery setCategory2IDContains(String value) { this.Category2IDContains = value; return this; } public String getCategory2IDLike() { return Category2IDLike; } public v_InventoryQuery setCategory2IDLike(String value) { this.Category2IDLike = value; return this; } public ArrayList getCategory2IDBetween() { return Category2IDBetween; } public v_InventoryQuery setCategory2IDBetween(ArrayList value) { this.Category2IDBetween = value; return this; } public ArrayList getCategory2IDIn() { return Category2IDIn; } public v_InventoryQuery setCategory2IDIn(ArrayList value) { this.Category2IDIn = value; return this; } public String getCategory3ID() { return Category3ID; } public v_InventoryQuery setCategory3ID(String value) { this.Category3ID = value; return this; } public String getCategory3IDStartsWith() { return Category3IDStartsWith; } public v_InventoryQuery setCategory3IDStartsWith(String value) { this.Category3IDStartsWith = value; return this; } public String getCategory3IDEndsWith() { return Category3IDEndsWith; } public v_InventoryQuery setCategory3IDEndsWith(String value) { this.Category3IDEndsWith = value; return this; } public String getCategory3IDContains() { return Category3IDContains; } public v_InventoryQuery setCategory3IDContains(String value) { this.Category3IDContains = value; return this; } public String getCategory3IDLike() { return Category3IDLike; } public v_InventoryQuery setCategory3IDLike(String value) { this.Category3IDLike = value; return this; } public ArrayList getCategory3IDBetween() { return Category3IDBetween; } public v_InventoryQuery setCategory3IDBetween(ArrayList value) { this.Category3IDBetween = value; return this; } public ArrayList getCategory3IDIn() { return Category3IDIn; } public v_InventoryQuery setCategory3IDIn(ArrayList value) { this.Category3IDIn = value; return this; } public String getCategory4ID() { return Category4ID; } public v_InventoryQuery setCategory4ID(String value) { this.Category4ID = value; return this; } public String getCategory4IDStartsWith() { return Category4IDStartsWith; } public v_InventoryQuery setCategory4IDStartsWith(String value) { this.Category4IDStartsWith = value; return this; } public String getCategory4IDEndsWith() { return Category4IDEndsWith; } public v_InventoryQuery setCategory4IDEndsWith(String value) { this.Category4IDEndsWith = value; return this; } public String getCategory4IDContains() { return Category4IDContains; } public v_InventoryQuery setCategory4IDContains(String value) { this.Category4IDContains = value; return this; } public String getCategory4IDLike() { return Category4IDLike; } public v_InventoryQuery setCategory4IDLike(String value) { this.Category4IDLike = value; return this; } public ArrayList getCategory4IDBetween() { return Category4IDBetween; } public v_InventoryQuery setCategory4IDBetween(ArrayList value) { this.Category4IDBetween = value; return this; } public ArrayList getCategory4IDIn() { return Category4IDIn; } public v_InventoryQuery setCategory4IDIn(ArrayList value) { this.Category4IDIn = value; return this; } public String getCategory5ID() { return Category5ID; } public v_InventoryQuery setCategory5ID(String value) { this.Category5ID = value; return this; } public String getCategory5IDStartsWith() { return Category5IDStartsWith; } public v_InventoryQuery setCategory5IDStartsWith(String value) { this.Category5IDStartsWith = value; return this; } public String getCategory5IDEndsWith() { return Category5IDEndsWith; } public v_InventoryQuery setCategory5IDEndsWith(String value) { this.Category5IDEndsWith = value; return this; } public String getCategory5IDContains() { return Category5IDContains; } public v_InventoryQuery setCategory5IDContains(String value) { this.Category5IDContains = value; return this; } public String getCategory5IDLike() { return Category5IDLike; } public v_InventoryQuery setCategory5IDLike(String value) { this.Category5IDLike = value; return this; } public ArrayList getCategory5IDBetween() { return Category5IDBetween; } public v_InventoryQuery setCategory5IDBetween(ArrayList value) { this.Category5IDBetween = value; return this; } public ArrayList getCategory5IDIn() { return Category5IDIn; } public v_InventoryQuery setCategory5IDIn(ArrayList value) { this.Category5IDIn = value; return this; } public String getClassificationID() { return ClassificationID; } public v_InventoryQuery setClassificationID(String value) { this.ClassificationID = value; return this; } public String getClassificationIDStartsWith() { return ClassificationIDStartsWith; } public v_InventoryQuery setClassificationIDStartsWith(String value) { this.ClassificationIDStartsWith = value; return this; } public String getClassificationIDEndsWith() { return ClassificationIDEndsWith; } public v_InventoryQuery setClassificationIDEndsWith(String value) { this.ClassificationIDEndsWith = value; return this; } public String getClassificationIDContains() { return ClassificationIDContains; } public v_InventoryQuery setClassificationIDContains(String value) { this.ClassificationIDContains = value; return this; } public String getClassificationIDLike() { return ClassificationIDLike; } public v_InventoryQuery setClassificationIDLike(String value) { this.ClassificationIDLike = value; return this; } public ArrayList getClassificationIDBetween() { return ClassificationIDBetween; } public v_InventoryQuery setClassificationIDBetween(ArrayList value) { this.ClassificationIDBetween = value; return this; } public ArrayList getClassificationIDIn() { return ClassificationIDIn; } public v_InventoryQuery setClassificationIDIn(ArrayList value) { this.ClassificationIDIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class v_JB_BackOrdersQuery extends QueryDb implements IReturn> { public String SourceType = null; public String SourceTypeStartsWith = null; public String SourceTypeEndsWith = null; public String SourceTypeContains = null; public String SourceTypeLike = null; public ArrayList SourceTypeBetween = null; public ArrayList SourceTypeIn = null; public String BatchNo = null; public String BatchNoStartsWith = null; public String BatchNoEndsWith = null; public String BatchNoContains = null; public String BatchNoLike = null; public ArrayList BatchNoBetween = null; public ArrayList BatchNoIn = null; public String JobCostStage = null; public String JobCostStageStartsWith = null; public String JobCostStageEndsWith = null; public String JobCostStageContains = null; public String JobCostStageLike = null; public ArrayList JobCostStageBetween = null; public ArrayList JobCostStageIn = null; public String Item = null; public String ItemStartsWith = null; public String ItemEndsWith = null; public String ItemContains = null; public String ItemLike = null; public ArrayList ItemBetween = null; public ArrayList ItemIn = null; public String Description = null; public String DescriptionStartsWith = null; public String DescriptionEndsWith = null; public String DescriptionContains = null; public String DescriptionLike = null; public ArrayList DescriptionBetween = null; public ArrayList DescriptionIn = null; public Date TranDate = null; public Date TranDateGreaterThanOrEqualTo = null; public Date TranDateGreaterThan = null; public Date TranDateLessThan = null; public Date TranDateLessThanOrEqualTo = null; public Date TranDateNotEqualTo = null; public ArrayList TranDateBetween = null; public ArrayList TranDateIn = null; public BigDecimal Qty = null; public BigDecimal QtyGreaterThanOrEqualTo = null; public BigDecimal QtyGreaterThan = null; public BigDecimal QtyLessThan = null; public BigDecimal QtyLessThanOrEqualTo = null; public BigDecimal QtyNotEqualTo = null; public ArrayList QtyBetween = null; public ArrayList QtyIn = null; public BigDecimal TotalCost = null; public BigDecimal TotalCostGreaterThanOrEqualTo = null; public BigDecimal TotalCostGreaterThan = null; public BigDecimal TotalCostLessThan = null; public BigDecimal TotalCostLessThanOrEqualTo = null; public BigDecimal TotalCostNotEqualTo = null; public ArrayList TotalCostBetween = null; public ArrayList TotalCostIn = null; public BigDecimal TotalCharge = null; public BigDecimal TotalChargeGreaterThanOrEqualTo = null; public BigDecimal TotalChargeGreaterThan = null; public BigDecimal TotalChargeLessThan = null; public BigDecimal TotalChargeLessThanOrEqualTo = null; public BigDecimal TotalChargeNotEqualTo = null; public ArrayList TotalChargeBetween = null; public ArrayList TotalChargeIn = null; public String Remark = null; public String RemarkStartsWith = null; public String RemarkEndsWith = null; public String RemarkContains = null; public String RemarkLike = null; public ArrayList RemarkBetween = null; public ArrayList RemarkIn = null; public String JobNo = null; public String JobNoStartsWith = null; public String JobNoEndsWith = null; public String JobNoContains = null; public String JobNoLike = null; public ArrayList JobNoBetween = null; public ArrayList JobNoIn = null; public String getSourceType() { return SourceType; } public v_JB_BackOrdersQuery setSourceType(String value) { this.SourceType = value; return this; } public String getSourceTypeStartsWith() { return SourceTypeStartsWith; } public v_JB_BackOrdersQuery setSourceTypeStartsWith(String value) { this.SourceTypeStartsWith = value; return this; } public String getSourceTypeEndsWith() { return SourceTypeEndsWith; } public v_JB_BackOrdersQuery setSourceTypeEndsWith(String value) { this.SourceTypeEndsWith = value; return this; } public String getSourceTypeContains() { return SourceTypeContains; } public v_JB_BackOrdersQuery setSourceTypeContains(String value) { this.SourceTypeContains = value; return this; } public String getSourceTypeLike() { return SourceTypeLike; } public v_JB_BackOrdersQuery setSourceTypeLike(String value) { this.SourceTypeLike = value; return this; } public ArrayList getSourceTypeBetween() { return SourceTypeBetween; } public v_JB_BackOrdersQuery setSourceTypeBetween(ArrayList value) { this.SourceTypeBetween = value; return this; } public ArrayList getSourceTypeIn() { return SourceTypeIn; } public v_JB_BackOrdersQuery setSourceTypeIn(ArrayList value) { this.SourceTypeIn = value; return this; } public String getBatchNo() { return BatchNo; } public v_JB_BackOrdersQuery setBatchNo(String value) { this.BatchNo = value; return this; } public String getBatchNoStartsWith() { return BatchNoStartsWith; } public v_JB_BackOrdersQuery setBatchNoStartsWith(String value) { this.BatchNoStartsWith = value; return this; } public String getBatchNoEndsWith() { return BatchNoEndsWith; } public v_JB_BackOrdersQuery setBatchNoEndsWith(String value) { this.BatchNoEndsWith = value; return this; } public String getBatchNoContains() { return BatchNoContains; } public v_JB_BackOrdersQuery setBatchNoContains(String value) { this.BatchNoContains = value; return this; } public String getBatchNoLike() { return BatchNoLike; } public v_JB_BackOrdersQuery setBatchNoLike(String value) { this.BatchNoLike = value; return this; } public ArrayList getBatchNoBetween() { return BatchNoBetween; } public v_JB_BackOrdersQuery setBatchNoBetween(ArrayList value) { this.BatchNoBetween = value; return this; } public ArrayList getBatchNoIn() { return BatchNoIn; } public v_JB_BackOrdersQuery setBatchNoIn(ArrayList value) { this.BatchNoIn = value; return this; } public String getJobCostStage() { return JobCostStage; } public v_JB_BackOrdersQuery setJobCostStage(String value) { this.JobCostStage = value; return this; } public String getJobCostStageStartsWith() { return JobCostStageStartsWith; } public v_JB_BackOrdersQuery setJobCostStageStartsWith(String value) { this.JobCostStageStartsWith = value; return this; } public String getJobCostStageEndsWith() { return JobCostStageEndsWith; } public v_JB_BackOrdersQuery setJobCostStageEndsWith(String value) { this.JobCostStageEndsWith = value; return this; } public String getJobCostStageContains() { return JobCostStageContains; } public v_JB_BackOrdersQuery setJobCostStageContains(String value) { this.JobCostStageContains = value; return this; } public String getJobCostStageLike() { return JobCostStageLike; } public v_JB_BackOrdersQuery setJobCostStageLike(String value) { this.JobCostStageLike = value; return this; } public ArrayList getJobCostStageBetween() { return JobCostStageBetween; } public v_JB_BackOrdersQuery setJobCostStageBetween(ArrayList value) { this.JobCostStageBetween = value; return this; } public ArrayList getJobCostStageIn() { return JobCostStageIn; } public v_JB_BackOrdersQuery setJobCostStageIn(ArrayList value) { this.JobCostStageIn = value; return this; } public String getItem() { return Item; } public v_JB_BackOrdersQuery setItem(String value) { this.Item = value; return this; } public String getItemStartsWith() { return ItemStartsWith; } public v_JB_BackOrdersQuery setItemStartsWith(String value) { this.ItemStartsWith = value; return this; } public String getItemEndsWith() { return ItemEndsWith; } public v_JB_BackOrdersQuery setItemEndsWith(String value) { this.ItemEndsWith = value; return this; } public String getItemContains() { return ItemContains; } public v_JB_BackOrdersQuery setItemContains(String value) { this.ItemContains = value; return this; } public String getItemLike() { return ItemLike; } public v_JB_BackOrdersQuery setItemLike(String value) { this.ItemLike = value; return this; } public ArrayList getItemBetween() { return ItemBetween; } public v_JB_BackOrdersQuery setItemBetween(ArrayList value) { this.ItemBetween = value; return this; } public ArrayList getItemIn() { return ItemIn; } public v_JB_BackOrdersQuery setItemIn(ArrayList value) { this.ItemIn = value; return this; } public String getDescription() { return Description; } public v_JB_BackOrdersQuery setDescription(String value) { this.Description = value; return this; } public String getDescriptionStartsWith() { return DescriptionStartsWith; } public v_JB_BackOrdersQuery setDescriptionStartsWith(String value) { this.DescriptionStartsWith = value; return this; } public String getDescriptionEndsWith() { return DescriptionEndsWith; } public v_JB_BackOrdersQuery setDescriptionEndsWith(String value) { this.DescriptionEndsWith = value; return this; } public String getDescriptionContains() { return DescriptionContains; } public v_JB_BackOrdersQuery setDescriptionContains(String value) { this.DescriptionContains = value; return this; } public String getDescriptionLike() { return DescriptionLike; } public v_JB_BackOrdersQuery setDescriptionLike(String value) { this.DescriptionLike = value; return this; } public ArrayList getDescriptionBetween() { return DescriptionBetween; } public v_JB_BackOrdersQuery setDescriptionBetween(ArrayList value) { this.DescriptionBetween = value; return this; } public ArrayList getDescriptionIn() { return DescriptionIn; } public v_JB_BackOrdersQuery setDescriptionIn(ArrayList value) { this.DescriptionIn = value; return this; } public Date getTranDate() { return TranDate; } public v_JB_BackOrdersQuery setTranDate(Date value) { this.TranDate = value; return this; } public Date getTranDateGreaterThanOrEqualTo() { return TranDateGreaterThanOrEqualTo; } public v_JB_BackOrdersQuery setTranDateGreaterThanOrEqualTo(Date value) { this.TranDateGreaterThanOrEqualTo = value; return this; } public Date getTranDateGreaterThan() { return TranDateGreaterThan; } public v_JB_BackOrdersQuery setTranDateGreaterThan(Date value) { this.TranDateGreaterThan = value; return this; } public Date getTranDateLessThan() { return TranDateLessThan; } public v_JB_BackOrdersQuery setTranDateLessThan(Date value) { this.TranDateLessThan = value; return this; } public Date getTranDateLessThanOrEqualTo() { return TranDateLessThanOrEqualTo; } public v_JB_BackOrdersQuery setTranDateLessThanOrEqualTo(Date value) { this.TranDateLessThanOrEqualTo = value; return this; } public Date getTranDateNotEqualTo() { return TranDateNotEqualTo; } public v_JB_BackOrdersQuery setTranDateNotEqualTo(Date value) { this.TranDateNotEqualTo = value; return this; } public ArrayList getTranDateBetween() { return TranDateBetween; } public v_JB_BackOrdersQuery setTranDateBetween(ArrayList value) { this.TranDateBetween = value; return this; } public ArrayList getTranDateIn() { return TranDateIn; } public v_JB_BackOrdersQuery setTranDateIn(ArrayList value) { this.TranDateIn = value; return this; } public BigDecimal getQty() { return Qty; } public v_JB_BackOrdersQuery setQty(BigDecimal value) { this.Qty = value; return this; } public BigDecimal getQtyGreaterThanOrEqualTo() { return QtyGreaterThanOrEqualTo; } public v_JB_BackOrdersQuery setQtyGreaterThanOrEqualTo(BigDecimal value) { this.QtyGreaterThanOrEqualTo = value; return this; } public BigDecimal getQtyGreaterThan() { return QtyGreaterThan; } public v_JB_BackOrdersQuery setQtyGreaterThan(BigDecimal value) { this.QtyGreaterThan = value; return this; } public BigDecimal getQtyLessThan() { return QtyLessThan; } public v_JB_BackOrdersQuery setQtyLessThan(BigDecimal value) { this.QtyLessThan = value; return this; } public BigDecimal getQtyLessThanOrEqualTo() { return QtyLessThanOrEqualTo; } public v_JB_BackOrdersQuery setQtyLessThanOrEqualTo(BigDecimal value) { this.QtyLessThanOrEqualTo = value; return this; } public BigDecimal getQtyNotEqualTo() { return QtyNotEqualTo; } public v_JB_BackOrdersQuery setQtyNotEqualTo(BigDecimal value) { this.QtyNotEqualTo = value; return this; } public ArrayList getQtyBetween() { return QtyBetween; } public v_JB_BackOrdersQuery setQtyBetween(ArrayList value) { this.QtyBetween = value; return this; } public ArrayList getQtyIn() { return QtyIn; } public v_JB_BackOrdersQuery setQtyIn(ArrayList value) { this.QtyIn = value; return this; } public BigDecimal getTotalCost() { return TotalCost; } public v_JB_BackOrdersQuery setTotalCost(BigDecimal value) { this.TotalCost = value; return this; } public BigDecimal getTotalCostGreaterThanOrEqualTo() { return TotalCostGreaterThanOrEqualTo; } public v_JB_BackOrdersQuery setTotalCostGreaterThanOrEqualTo(BigDecimal value) { this.TotalCostGreaterThanOrEqualTo = value; return this; } public BigDecimal getTotalCostGreaterThan() { return TotalCostGreaterThan; } public v_JB_BackOrdersQuery setTotalCostGreaterThan(BigDecimal value) { this.TotalCostGreaterThan = value; return this; } public BigDecimal getTotalCostLessThan() { return TotalCostLessThan; } public v_JB_BackOrdersQuery setTotalCostLessThan(BigDecimal value) { this.TotalCostLessThan = value; return this; } public BigDecimal getTotalCostLessThanOrEqualTo() { return TotalCostLessThanOrEqualTo; } public v_JB_BackOrdersQuery setTotalCostLessThanOrEqualTo(BigDecimal value) { this.TotalCostLessThanOrEqualTo = value; return this; } public BigDecimal getTotalCostNotEqualTo() { return TotalCostNotEqualTo; } public v_JB_BackOrdersQuery setTotalCostNotEqualTo(BigDecimal value) { this.TotalCostNotEqualTo = value; return this; } public ArrayList getTotalCostBetween() { return TotalCostBetween; } public v_JB_BackOrdersQuery setTotalCostBetween(ArrayList value) { this.TotalCostBetween = value; return this; } public ArrayList getTotalCostIn() { return TotalCostIn; } public v_JB_BackOrdersQuery setTotalCostIn(ArrayList value) { this.TotalCostIn = value; return this; } public BigDecimal getTotalCharge() { return TotalCharge; } public v_JB_BackOrdersQuery setTotalCharge(BigDecimal value) { this.TotalCharge = value; return this; } public BigDecimal getTotalChargeGreaterThanOrEqualTo() { return TotalChargeGreaterThanOrEqualTo; } public v_JB_BackOrdersQuery setTotalChargeGreaterThanOrEqualTo(BigDecimal value) { this.TotalChargeGreaterThanOrEqualTo = value; return this; } public BigDecimal getTotalChargeGreaterThan() { return TotalChargeGreaterThan; } public v_JB_BackOrdersQuery setTotalChargeGreaterThan(BigDecimal value) { this.TotalChargeGreaterThan = value; return this; } public BigDecimal getTotalChargeLessThan() { return TotalChargeLessThan; } public v_JB_BackOrdersQuery setTotalChargeLessThan(BigDecimal value) { this.TotalChargeLessThan = value; return this; } public BigDecimal getTotalChargeLessThanOrEqualTo() { return TotalChargeLessThanOrEqualTo; } public v_JB_BackOrdersQuery setTotalChargeLessThanOrEqualTo(BigDecimal value) { this.TotalChargeLessThanOrEqualTo = value; return this; } public BigDecimal getTotalChargeNotEqualTo() { return TotalChargeNotEqualTo; } public v_JB_BackOrdersQuery setTotalChargeNotEqualTo(BigDecimal value) { this.TotalChargeNotEqualTo = value; return this; } public ArrayList getTotalChargeBetween() { return TotalChargeBetween; } public v_JB_BackOrdersQuery setTotalChargeBetween(ArrayList value) { this.TotalChargeBetween = value; return this; } public ArrayList getTotalChargeIn() { return TotalChargeIn; } public v_JB_BackOrdersQuery setTotalChargeIn(ArrayList value) { this.TotalChargeIn = value; return this; } public String getRemark() { return Remark; } public v_JB_BackOrdersQuery setRemark(String value) { this.Remark = value; return this; } public String getRemarkStartsWith() { return RemarkStartsWith; } public v_JB_BackOrdersQuery setRemarkStartsWith(String value) { this.RemarkStartsWith = value; return this; } public String getRemarkEndsWith() { return RemarkEndsWith; } public v_JB_BackOrdersQuery setRemarkEndsWith(String value) { this.RemarkEndsWith = value; return this; } public String getRemarkContains() { return RemarkContains; } public v_JB_BackOrdersQuery setRemarkContains(String value) { this.RemarkContains = value; return this; } public String getRemarkLike() { return RemarkLike; } public v_JB_BackOrdersQuery setRemarkLike(String value) { this.RemarkLike = value; return this; } public ArrayList getRemarkBetween() { return RemarkBetween; } public v_JB_BackOrdersQuery setRemarkBetween(ArrayList value) { this.RemarkBetween = value; return this; } public ArrayList getRemarkIn() { return RemarkIn; } public v_JB_BackOrdersQuery setRemarkIn(ArrayList value) { this.RemarkIn = value; return this; } public String getJobNo() { return JobNo; } public v_JB_BackOrdersQuery setJobNo(String value) { this.JobNo = value; return this; } public String getJobNoStartsWith() { return JobNoStartsWith; } public v_JB_BackOrdersQuery setJobNoStartsWith(String value) { this.JobNoStartsWith = value; return this; } public String getJobNoEndsWith() { return JobNoEndsWith; } public v_JB_BackOrdersQuery setJobNoEndsWith(String value) { this.JobNoEndsWith = value; return this; } public String getJobNoContains() { return JobNoContains; } public v_JB_BackOrdersQuery setJobNoContains(String value) { this.JobNoContains = value; return this; } public String getJobNoLike() { return JobNoLike; } public v_JB_BackOrdersQuery setJobNoLike(String value) { this.JobNoLike = value; return this; } public ArrayList getJobNoBetween() { return JobNoBetween; } public v_JB_BackOrdersQuery setJobNoBetween(ArrayList value) { this.JobNoBetween = value; return this; } public ArrayList getJobNoIn() { return JobNoIn; } public v_JB_BackOrdersQuery setJobNoIn(ArrayList value) { this.JobNoIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class v_JB_CashbookQuery extends QueryDb implements IReturn> { public String SourceType = null; public String SourceTypeStartsWith = null; public String SourceTypeEndsWith = null; public String SourceTypeContains = null; public String SourceTypeLike = null; public ArrayList SourceTypeBetween = null; public ArrayList SourceTypeIn = null; public String BatchNo = null; public String BatchNoStartsWith = null; public String BatchNoEndsWith = null; public String BatchNoContains = null; public String BatchNoLike = null; public ArrayList BatchNoBetween = null; public ArrayList BatchNoIn = null; public String JobCostStage = null; public String JobCostStageStartsWith = null; public String JobCostStageEndsWith = null; public String JobCostStageContains = null; public String JobCostStageLike = null; public ArrayList JobCostStageBetween = null; public ArrayList JobCostStageIn = null; public String Item = null; public String ItemStartsWith = null; public String ItemEndsWith = null; public String ItemContains = null; public String ItemLike = null; public ArrayList ItemBetween = null; public ArrayList ItemIn = null; public String Description = null; public String DescriptionStartsWith = null; public String DescriptionEndsWith = null; public String DescriptionContains = null; public String DescriptionLike = null; public ArrayList DescriptionBetween = null; public ArrayList DescriptionIn = null; public Date TranDate = null; public Date TranDateGreaterThanOrEqualTo = null; public Date TranDateGreaterThan = null; public Date TranDateLessThan = null; public Date TranDateLessThanOrEqualTo = null; public Date TranDateNotEqualTo = null; public ArrayList TranDateBetween = null; public ArrayList TranDateIn = null; public BigDecimal Qty = null; public BigDecimal QtyGreaterThanOrEqualTo = null; public BigDecimal QtyGreaterThan = null; public BigDecimal QtyLessThan = null; public BigDecimal QtyLessThanOrEqualTo = null; public BigDecimal QtyNotEqualTo = null; public ArrayList QtyBetween = null; public ArrayList QtyIn = null; public BigDecimal TotalCost = null; public BigDecimal TotalCostGreaterThanOrEqualTo = null; public BigDecimal TotalCostGreaterThan = null; public BigDecimal TotalCostLessThan = null; public BigDecimal TotalCostLessThanOrEqualTo = null; public BigDecimal TotalCostNotEqualTo = null; public ArrayList TotalCostBetween = null; public ArrayList TotalCostIn = null; public BigDecimal TotalCharge = null; public BigDecimal TotalChargeGreaterThanOrEqualTo = null; public BigDecimal TotalChargeGreaterThan = null; public BigDecimal TotalChargeLessThan = null; public BigDecimal TotalChargeLessThanOrEqualTo = null; public BigDecimal TotalChargeNotEqualTo = null; public ArrayList TotalChargeBetween = null; public ArrayList TotalChargeIn = null; public String Remark = null; public String RemarkStartsWith = null; public String RemarkEndsWith = null; public String RemarkContains = null; public String RemarkLike = null; public ArrayList RemarkBetween = null; public ArrayList RemarkIn = null; public String JobNo = null; public String JobNoStartsWith = null; public String JobNoEndsWith = null; public String JobNoContains = null; public String JobNoLike = null; public ArrayList JobNoBetween = null; public ArrayList JobNoIn = null; public String getSourceType() { return SourceType; } public v_JB_CashbookQuery setSourceType(String value) { this.SourceType = value; return this; } public String getSourceTypeStartsWith() { return SourceTypeStartsWith; } public v_JB_CashbookQuery setSourceTypeStartsWith(String value) { this.SourceTypeStartsWith = value; return this; } public String getSourceTypeEndsWith() { return SourceTypeEndsWith; } public v_JB_CashbookQuery setSourceTypeEndsWith(String value) { this.SourceTypeEndsWith = value; return this; } public String getSourceTypeContains() { return SourceTypeContains; } public v_JB_CashbookQuery setSourceTypeContains(String value) { this.SourceTypeContains = value; return this; } public String getSourceTypeLike() { return SourceTypeLike; } public v_JB_CashbookQuery setSourceTypeLike(String value) { this.SourceTypeLike = value; return this; } public ArrayList getSourceTypeBetween() { return SourceTypeBetween; } public v_JB_CashbookQuery setSourceTypeBetween(ArrayList value) { this.SourceTypeBetween = value; return this; } public ArrayList getSourceTypeIn() { return SourceTypeIn; } public v_JB_CashbookQuery setSourceTypeIn(ArrayList value) { this.SourceTypeIn = value; return this; } public String getBatchNo() { return BatchNo; } public v_JB_CashbookQuery setBatchNo(String value) { this.BatchNo = value; return this; } public String getBatchNoStartsWith() { return BatchNoStartsWith; } public v_JB_CashbookQuery setBatchNoStartsWith(String value) { this.BatchNoStartsWith = value; return this; } public String getBatchNoEndsWith() { return BatchNoEndsWith; } public v_JB_CashbookQuery setBatchNoEndsWith(String value) { this.BatchNoEndsWith = value; return this; } public String getBatchNoContains() { return BatchNoContains; } public v_JB_CashbookQuery setBatchNoContains(String value) { this.BatchNoContains = value; return this; } public String getBatchNoLike() { return BatchNoLike; } public v_JB_CashbookQuery setBatchNoLike(String value) { this.BatchNoLike = value; return this; } public ArrayList getBatchNoBetween() { return BatchNoBetween; } public v_JB_CashbookQuery setBatchNoBetween(ArrayList value) { this.BatchNoBetween = value; return this; } public ArrayList getBatchNoIn() { return BatchNoIn; } public v_JB_CashbookQuery setBatchNoIn(ArrayList value) { this.BatchNoIn = value; return this; } public String getJobCostStage() { return JobCostStage; } public v_JB_CashbookQuery setJobCostStage(String value) { this.JobCostStage = value; return this; } public String getJobCostStageStartsWith() { return JobCostStageStartsWith; } public v_JB_CashbookQuery setJobCostStageStartsWith(String value) { this.JobCostStageStartsWith = value; return this; } public String getJobCostStageEndsWith() { return JobCostStageEndsWith; } public v_JB_CashbookQuery setJobCostStageEndsWith(String value) { this.JobCostStageEndsWith = value; return this; } public String getJobCostStageContains() { return JobCostStageContains; } public v_JB_CashbookQuery setJobCostStageContains(String value) { this.JobCostStageContains = value; return this; } public String getJobCostStageLike() { return JobCostStageLike; } public v_JB_CashbookQuery setJobCostStageLike(String value) { this.JobCostStageLike = value; return this; } public ArrayList getJobCostStageBetween() { return JobCostStageBetween; } public v_JB_CashbookQuery setJobCostStageBetween(ArrayList value) { this.JobCostStageBetween = value; return this; } public ArrayList getJobCostStageIn() { return JobCostStageIn; } public v_JB_CashbookQuery setJobCostStageIn(ArrayList value) { this.JobCostStageIn = value; return this; } public String getItem() { return Item; } public v_JB_CashbookQuery setItem(String value) { this.Item = value; return this; } public String getItemStartsWith() { return ItemStartsWith; } public v_JB_CashbookQuery setItemStartsWith(String value) { this.ItemStartsWith = value; return this; } public String getItemEndsWith() { return ItemEndsWith; } public v_JB_CashbookQuery setItemEndsWith(String value) { this.ItemEndsWith = value; return this; } public String getItemContains() { return ItemContains; } public v_JB_CashbookQuery setItemContains(String value) { this.ItemContains = value; return this; } public String getItemLike() { return ItemLike; } public v_JB_CashbookQuery setItemLike(String value) { this.ItemLike = value; return this; } public ArrayList getItemBetween() { return ItemBetween; } public v_JB_CashbookQuery setItemBetween(ArrayList value) { this.ItemBetween = value; return this; } public ArrayList getItemIn() { return ItemIn; } public v_JB_CashbookQuery setItemIn(ArrayList value) { this.ItemIn = value; return this; } public String getDescription() { return Description; } public v_JB_CashbookQuery setDescription(String value) { this.Description = value; return this; } public String getDescriptionStartsWith() { return DescriptionStartsWith; } public v_JB_CashbookQuery setDescriptionStartsWith(String value) { this.DescriptionStartsWith = value; return this; } public String getDescriptionEndsWith() { return DescriptionEndsWith; } public v_JB_CashbookQuery setDescriptionEndsWith(String value) { this.DescriptionEndsWith = value; return this; } public String getDescriptionContains() { return DescriptionContains; } public v_JB_CashbookQuery setDescriptionContains(String value) { this.DescriptionContains = value; return this; } public String getDescriptionLike() { return DescriptionLike; } public v_JB_CashbookQuery setDescriptionLike(String value) { this.DescriptionLike = value; return this; } public ArrayList getDescriptionBetween() { return DescriptionBetween; } public v_JB_CashbookQuery setDescriptionBetween(ArrayList value) { this.DescriptionBetween = value; return this; } public ArrayList getDescriptionIn() { return DescriptionIn; } public v_JB_CashbookQuery setDescriptionIn(ArrayList value) { this.DescriptionIn = value; return this; } public Date getTranDate() { return TranDate; } public v_JB_CashbookQuery setTranDate(Date value) { this.TranDate = value; return this; } public Date getTranDateGreaterThanOrEqualTo() { return TranDateGreaterThanOrEqualTo; } public v_JB_CashbookQuery setTranDateGreaterThanOrEqualTo(Date value) { this.TranDateGreaterThanOrEqualTo = value; return this; } public Date getTranDateGreaterThan() { return TranDateGreaterThan; } public v_JB_CashbookQuery setTranDateGreaterThan(Date value) { this.TranDateGreaterThan = value; return this; } public Date getTranDateLessThan() { return TranDateLessThan; } public v_JB_CashbookQuery setTranDateLessThan(Date value) { this.TranDateLessThan = value; return this; } public Date getTranDateLessThanOrEqualTo() { return TranDateLessThanOrEqualTo; } public v_JB_CashbookQuery setTranDateLessThanOrEqualTo(Date value) { this.TranDateLessThanOrEqualTo = value; return this; } public Date getTranDateNotEqualTo() { return TranDateNotEqualTo; } public v_JB_CashbookQuery setTranDateNotEqualTo(Date value) { this.TranDateNotEqualTo = value; return this; } public ArrayList getTranDateBetween() { return TranDateBetween; } public v_JB_CashbookQuery setTranDateBetween(ArrayList value) { this.TranDateBetween = value; return this; } public ArrayList getTranDateIn() { return TranDateIn; } public v_JB_CashbookQuery setTranDateIn(ArrayList value) { this.TranDateIn = value; return this; } public BigDecimal getQty() { return Qty; } public v_JB_CashbookQuery setQty(BigDecimal value) { this.Qty = value; return this; } public BigDecimal getQtyGreaterThanOrEqualTo() { return QtyGreaterThanOrEqualTo; } public v_JB_CashbookQuery setQtyGreaterThanOrEqualTo(BigDecimal value) { this.QtyGreaterThanOrEqualTo = value; return this; } public BigDecimal getQtyGreaterThan() { return QtyGreaterThan; } public v_JB_CashbookQuery setQtyGreaterThan(BigDecimal value) { this.QtyGreaterThan = value; return this; } public BigDecimal getQtyLessThan() { return QtyLessThan; } public v_JB_CashbookQuery setQtyLessThan(BigDecimal value) { this.QtyLessThan = value; return this; } public BigDecimal getQtyLessThanOrEqualTo() { return QtyLessThanOrEqualTo; } public v_JB_CashbookQuery setQtyLessThanOrEqualTo(BigDecimal value) { this.QtyLessThanOrEqualTo = value; return this; } public BigDecimal getQtyNotEqualTo() { return QtyNotEqualTo; } public v_JB_CashbookQuery setQtyNotEqualTo(BigDecimal value) { this.QtyNotEqualTo = value; return this; } public ArrayList getQtyBetween() { return QtyBetween; } public v_JB_CashbookQuery setQtyBetween(ArrayList value) { this.QtyBetween = value; return this; } public ArrayList getQtyIn() { return QtyIn; } public v_JB_CashbookQuery setQtyIn(ArrayList value) { this.QtyIn = value; return this; } public BigDecimal getTotalCost() { return TotalCost; } public v_JB_CashbookQuery setTotalCost(BigDecimal value) { this.TotalCost = value; return this; } public BigDecimal getTotalCostGreaterThanOrEqualTo() { return TotalCostGreaterThanOrEqualTo; } public v_JB_CashbookQuery setTotalCostGreaterThanOrEqualTo(BigDecimal value) { this.TotalCostGreaterThanOrEqualTo = value; return this; } public BigDecimal getTotalCostGreaterThan() { return TotalCostGreaterThan; } public v_JB_CashbookQuery setTotalCostGreaterThan(BigDecimal value) { this.TotalCostGreaterThan = value; return this; } public BigDecimal getTotalCostLessThan() { return TotalCostLessThan; } public v_JB_CashbookQuery setTotalCostLessThan(BigDecimal value) { this.TotalCostLessThan = value; return this; } public BigDecimal getTotalCostLessThanOrEqualTo() { return TotalCostLessThanOrEqualTo; } public v_JB_CashbookQuery setTotalCostLessThanOrEqualTo(BigDecimal value) { this.TotalCostLessThanOrEqualTo = value; return this; } public BigDecimal getTotalCostNotEqualTo() { return TotalCostNotEqualTo; } public v_JB_CashbookQuery setTotalCostNotEqualTo(BigDecimal value) { this.TotalCostNotEqualTo = value; return this; } public ArrayList getTotalCostBetween() { return TotalCostBetween; } public v_JB_CashbookQuery setTotalCostBetween(ArrayList value) { this.TotalCostBetween = value; return this; } public ArrayList getTotalCostIn() { return TotalCostIn; } public v_JB_CashbookQuery setTotalCostIn(ArrayList value) { this.TotalCostIn = value; return this; } public BigDecimal getTotalCharge() { return TotalCharge; } public v_JB_CashbookQuery setTotalCharge(BigDecimal value) { this.TotalCharge = value; return this; } public BigDecimal getTotalChargeGreaterThanOrEqualTo() { return TotalChargeGreaterThanOrEqualTo; } public v_JB_CashbookQuery setTotalChargeGreaterThanOrEqualTo(BigDecimal value) { this.TotalChargeGreaterThanOrEqualTo = value; return this; } public BigDecimal getTotalChargeGreaterThan() { return TotalChargeGreaterThan; } public v_JB_CashbookQuery setTotalChargeGreaterThan(BigDecimal value) { this.TotalChargeGreaterThan = value; return this; } public BigDecimal getTotalChargeLessThan() { return TotalChargeLessThan; } public v_JB_CashbookQuery setTotalChargeLessThan(BigDecimal value) { this.TotalChargeLessThan = value; return this; } public BigDecimal getTotalChargeLessThanOrEqualTo() { return TotalChargeLessThanOrEqualTo; } public v_JB_CashbookQuery setTotalChargeLessThanOrEqualTo(BigDecimal value) { this.TotalChargeLessThanOrEqualTo = value; return this; } public BigDecimal getTotalChargeNotEqualTo() { return TotalChargeNotEqualTo; } public v_JB_CashbookQuery setTotalChargeNotEqualTo(BigDecimal value) { this.TotalChargeNotEqualTo = value; return this; } public ArrayList getTotalChargeBetween() { return TotalChargeBetween; } public v_JB_CashbookQuery setTotalChargeBetween(ArrayList value) { this.TotalChargeBetween = value; return this; } public ArrayList getTotalChargeIn() { return TotalChargeIn; } public v_JB_CashbookQuery setTotalChargeIn(ArrayList value) { this.TotalChargeIn = value; return this; } public String getRemark() { return Remark; } public v_JB_CashbookQuery setRemark(String value) { this.Remark = value; return this; } public String getRemarkStartsWith() { return RemarkStartsWith; } public v_JB_CashbookQuery setRemarkStartsWith(String value) { this.RemarkStartsWith = value; return this; } public String getRemarkEndsWith() { return RemarkEndsWith; } public v_JB_CashbookQuery setRemarkEndsWith(String value) { this.RemarkEndsWith = value; return this; } public String getRemarkContains() { return RemarkContains; } public v_JB_CashbookQuery setRemarkContains(String value) { this.RemarkContains = value; return this; } public String getRemarkLike() { return RemarkLike; } public v_JB_CashbookQuery setRemarkLike(String value) { this.RemarkLike = value; return this; } public ArrayList getRemarkBetween() { return RemarkBetween; } public v_JB_CashbookQuery setRemarkBetween(ArrayList value) { this.RemarkBetween = value; return this; } public ArrayList getRemarkIn() { return RemarkIn; } public v_JB_CashbookQuery setRemarkIn(ArrayList value) { this.RemarkIn = value; return this; } public String getJobNo() { return JobNo; } public v_JB_CashbookQuery setJobNo(String value) { this.JobNo = value; return this; } public String getJobNoStartsWith() { return JobNoStartsWith; } public v_JB_CashbookQuery setJobNoStartsWith(String value) { this.JobNoStartsWith = value; return this; } public String getJobNoEndsWith() { return JobNoEndsWith; } public v_JB_CashbookQuery setJobNoEndsWith(String value) { this.JobNoEndsWith = value; return this; } public String getJobNoContains() { return JobNoContains; } public v_JB_CashbookQuery setJobNoContains(String value) { this.JobNoContains = value; return this; } public String getJobNoLike() { return JobNoLike; } public v_JB_CashbookQuery setJobNoLike(String value) { this.JobNoLike = value; return this; } public ArrayList getJobNoBetween() { return JobNoBetween; } public v_JB_CashbookQuery setJobNoBetween(ArrayList value) { this.JobNoBetween = value; return this; } public ArrayList getJobNoIn() { return JobNoIn; } public v_JB_CashbookQuery setJobNoIn(ArrayList value) { this.JobNoIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class v_JB_CashbookEstimateTotalsToDateQuery extends QueryDb implements IReturn> { public BigDecimal Charge = null; public BigDecimal ChargeGreaterThanOrEqualTo = null; public BigDecimal ChargeGreaterThan = null; public BigDecimal ChargeLessThan = null; public BigDecimal ChargeLessThanOrEqualTo = null; public BigDecimal ChargeNotEqualTo = null; public ArrayList ChargeBetween = null; public ArrayList ChargeIn = null; public BigDecimal Cost = null; public BigDecimal CostGreaterThanOrEqualTo = null; public BigDecimal CostGreaterThan = null; public BigDecimal CostLessThan = null; public BigDecimal CostLessThanOrEqualTo = null; public BigDecimal CostNotEqualTo = null; public ArrayList CostBetween = null; public ArrayList CostIn = null; public BigDecimal Qty = null; public BigDecimal QtyGreaterThanOrEqualTo = null; public BigDecimal QtyGreaterThan = null; public BigDecimal QtyLessThan = null; public BigDecimal QtyLessThanOrEqualTo = null; public BigDecimal QtyNotEqualTo = null; public ArrayList QtyBetween = null; public ArrayList QtyIn = null; public String JobID = null; public String JobIDStartsWith = null; public String JobIDEndsWith = null; public String JobIDContains = null; public String JobIDLike = null; public ArrayList JobIDBetween = null; public ArrayList JobIDIn = null; public Short DefaultEstimate = null; public Short DefaultEstimateGreaterThanOrEqualTo = null; public Short DefaultEstimateGreaterThan = null; public Short DefaultEstimateLessThan = null; public Short DefaultEstimateLessThanOrEqualTo = null; public Short DefaultEstimateNotEqualTo = null; public ArrayList DefaultEstimateBetween = null; public ArrayList DefaultEstimateIn = null; public BigDecimal getCharge() { return Charge; } public v_JB_CashbookEstimateTotalsToDateQuery setCharge(BigDecimal value) { this.Charge = value; return this; } public BigDecimal getChargeGreaterThanOrEqualTo() { return ChargeGreaterThanOrEqualTo; } public v_JB_CashbookEstimateTotalsToDateQuery setChargeGreaterThanOrEqualTo(BigDecimal value) { this.ChargeGreaterThanOrEqualTo = value; return this; } public BigDecimal getChargeGreaterThan() { return ChargeGreaterThan; } public v_JB_CashbookEstimateTotalsToDateQuery setChargeGreaterThan(BigDecimal value) { this.ChargeGreaterThan = value; return this; } public BigDecimal getChargeLessThan() { return ChargeLessThan; } public v_JB_CashbookEstimateTotalsToDateQuery setChargeLessThan(BigDecimal value) { this.ChargeLessThan = value; return this; } public BigDecimal getChargeLessThanOrEqualTo() { return ChargeLessThanOrEqualTo; } public v_JB_CashbookEstimateTotalsToDateQuery setChargeLessThanOrEqualTo(BigDecimal value) { this.ChargeLessThanOrEqualTo = value; return this; } public BigDecimal getChargeNotEqualTo() { return ChargeNotEqualTo; } public v_JB_CashbookEstimateTotalsToDateQuery setChargeNotEqualTo(BigDecimal value) { this.ChargeNotEqualTo = value; return this; } public ArrayList getChargeBetween() { return ChargeBetween; } public v_JB_CashbookEstimateTotalsToDateQuery setChargeBetween(ArrayList value) { this.ChargeBetween = value; return this; } public ArrayList getChargeIn() { return ChargeIn; } public v_JB_CashbookEstimateTotalsToDateQuery setChargeIn(ArrayList value) { this.ChargeIn = value; return this; } public BigDecimal getCost() { return Cost; } public v_JB_CashbookEstimateTotalsToDateQuery setCost(BigDecimal value) { this.Cost = value; return this; } public BigDecimal getCostGreaterThanOrEqualTo() { return CostGreaterThanOrEqualTo; } public v_JB_CashbookEstimateTotalsToDateQuery setCostGreaterThanOrEqualTo(BigDecimal value) { this.CostGreaterThanOrEqualTo = value; return this; } public BigDecimal getCostGreaterThan() { return CostGreaterThan; } public v_JB_CashbookEstimateTotalsToDateQuery setCostGreaterThan(BigDecimal value) { this.CostGreaterThan = value; return this; } public BigDecimal getCostLessThan() { return CostLessThan; } public v_JB_CashbookEstimateTotalsToDateQuery setCostLessThan(BigDecimal value) { this.CostLessThan = value; return this; } public BigDecimal getCostLessThanOrEqualTo() { return CostLessThanOrEqualTo; } public v_JB_CashbookEstimateTotalsToDateQuery setCostLessThanOrEqualTo(BigDecimal value) { this.CostLessThanOrEqualTo = value; return this; } public BigDecimal getCostNotEqualTo() { return CostNotEqualTo; } public v_JB_CashbookEstimateTotalsToDateQuery setCostNotEqualTo(BigDecimal value) { this.CostNotEqualTo = value; return this; } public ArrayList getCostBetween() { return CostBetween; } public v_JB_CashbookEstimateTotalsToDateQuery setCostBetween(ArrayList value) { this.CostBetween = value; return this; } public ArrayList getCostIn() { return CostIn; } public v_JB_CashbookEstimateTotalsToDateQuery setCostIn(ArrayList value) { this.CostIn = value; return this; } public BigDecimal getQty() { return Qty; } public v_JB_CashbookEstimateTotalsToDateQuery setQty(BigDecimal value) { this.Qty = value; return this; } public BigDecimal getQtyGreaterThanOrEqualTo() { return QtyGreaterThanOrEqualTo; } public v_JB_CashbookEstimateTotalsToDateQuery setQtyGreaterThanOrEqualTo(BigDecimal value) { this.QtyGreaterThanOrEqualTo = value; return this; } public BigDecimal getQtyGreaterThan() { return QtyGreaterThan; } public v_JB_CashbookEstimateTotalsToDateQuery setQtyGreaterThan(BigDecimal value) { this.QtyGreaterThan = value; return this; } public BigDecimal getQtyLessThan() { return QtyLessThan; } public v_JB_CashbookEstimateTotalsToDateQuery setQtyLessThan(BigDecimal value) { this.QtyLessThan = value; return this; } public BigDecimal getQtyLessThanOrEqualTo() { return QtyLessThanOrEqualTo; } public v_JB_CashbookEstimateTotalsToDateQuery setQtyLessThanOrEqualTo(BigDecimal value) { this.QtyLessThanOrEqualTo = value; return this; } public BigDecimal getQtyNotEqualTo() { return QtyNotEqualTo; } public v_JB_CashbookEstimateTotalsToDateQuery setQtyNotEqualTo(BigDecimal value) { this.QtyNotEqualTo = value; return this; } public ArrayList getQtyBetween() { return QtyBetween; } public v_JB_CashbookEstimateTotalsToDateQuery setQtyBetween(ArrayList value) { this.QtyBetween = value; return this; } public ArrayList getQtyIn() { return QtyIn; } public v_JB_CashbookEstimateTotalsToDateQuery setQtyIn(ArrayList value) { this.QtyIn = value; return this; } public String getJobID() { return JobID; } public v_JB_CashbookEstimateTotalsToDateQuery setJobID(String value) { this.JobID = value; return this; } public String getJobIDStartsWith() { return JobIDStartsWith; } public v_JB_CashbookEstimateTotalsToDateQuery setJobIDStartsWith(String value) { this.JobIDStartsWith = value; return this; } public String getJobIDEndsWith() { return JobIDEndsWith; } public v_JB_CashbookEstimateTotalsToDateQuery setJobIDEndsWith(String value) { this.JobIDEndsWith = value; return this; } public String getJobIDContains() { return JobIDContains; } public v_JB_CashbookEstimateTotalsToDateQuery setJobIDContains(String value) { this.JobIDContains = value; return this; } public String getJobIDLike() { return JobIDLike; } public v_JB_CashbookEstimateTotalsToDateQuery setJobIDLike(String value) { this.JobIDLike = value; return this; } public ArrayList getJobIDBetween() { return JobIDBetween; } public v_JB_CashbookEstimateTotalsToDateQuery setJobIDBetween(ArrayList value) { this.JobIDBetween = value; return this; } public ArrayList getJobIDIn() { return JobIDIn; } public v_JB_CashbookEstimateTotalsToDateQuery setJobIDIn(ArrayList value) { this.JobIDIn = value; return this; } public Short getDefaultEstimate() { return DefaultEstimate; } public v_JB_CashbookEstimateTotalsToDateQuery setDefaultEstimate(Short value) { this.DefaultEstimate = value; return this; } public Short getDefaultEstimateGreaterThanOrEqualTo() { return DefaultEstimateGreaterThanOrEqualTo; } public v_JB_CashbookEstimateTotalsToDateQuery setDefaultEstimateGreaterThanOrEqualTo(Short value) { this.DefaultEstimateGreaterThanOrEqualTo = value; return this; } public Short getDefaultEstimateGreaterThan() { return DefaultEstimateGreaterThan; } public v_JB_CashbookEstimateTotalsToDateQuery setDefaultEstimateGreaterThan(Short value) { this.DefaultEstimateGreaterThan = value; return this; } public Short getDefaultEstimateLessThan() { return DefaultEstimateLessThan; } public v_JB_CashbookEstimateTotalsToDateQuery setDefaultEstimateLessThan(Short value) { this.DefaultEstimateLessThan = value; return this; } public Short getDefaultEstimateLessThanOrEqualTo() { return DefaultEstimateLessThanOrEqualTo; } public v_JB_CashbookEstimateTotalsToDateQuery setDefaultEstimateLessThanOrEqualTo(Short value) { this.DefaultEstimateLessThanOrEqualTo = value; return this; } public Short getDefaultEstimateNotEqualTo() { return DefaultEstimateNotEqualTo; } public v_JB_CashbookEstimateTotalsToDateQuery setDefaultEstimateNotEqualTo(Short value) { this.DefaultEstimateNotEqualTo = value; return this; } public ArrayList getDefaultEstimateBetween() { return DefaultEstimateBetween; } public v_JB_CashbookEstimateTotalsToDateQuery setDefaultEstimateBetween(ArrayList value) { this.DefaultEstimateBetween = value; return this; } public ArrayList getDefaultEstimateIn() { return DefaultEstimateIn; } public v_JB_CashbookEstimateTotalsToDateQuery setDefaultEstimateIn(ArrayList value) { this.DefaultEstimateIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class v_JB_CashbookTotalsToDateQuery extends QueryDb implements IReturn> { public BigDecimal Charge = null; public BigDecimal ChargeGreaterThanOrEqualTo = null; public BigDecimal ChargeGreaterThan = null; public BigDecimal ChargeLessThan = null; public BigDecimal ChargeLessThanOrEqualTo = null; public BigDecimal ChargeNotEqualTo = null; public ArrayList ChargeBetween = null; public ArrayList ChargeIn = null; public BigDecimal Cost = null; public BigDecimal CostGreaterThanOrEqualTo = null; public BigDecimal CostGreaterThan = null; public BigDecimal CostLessThan = null; public BigDecimal CostLessThanOrEqualTo = null; public BigDecimal CostNotEqualTo = null; public ArrayList CostBetween = null; public ArrayList CostIn = null; public String JobID = null; public String JobIDStartsWith = null; public String JobIDEndsWith = null; public String JobIDContains = null; public String JobIDLike = null; public ArrayList JobIDBetween = null; public ArrayList JobIDIn = null; public BigDecimal getCharge() { return Charge; } public v_JB_CashbookTotalsToDateQuery setCharge(BigDecimal value) { this.Charge = value; return this; } public BigDecimal getChargeGreaterThanOrEqualTo() { return ChargeGreaterThanOrEqualTo; } public v_JB_CashbookTotalsToDateQuery setChargeGreaterThanOrEqualTo(BigDecimal value) { this.ChargeGreaterThanOrEqualTo = value; return this; } public BigDecimal getChargeGreaterThan() { return ChargeGreaterThan; } public v_JB_CashbookTotalsToDateQuery setChargeGreaterThan(BigDecimal value) { this.ChargeGreaterThan = value; return this; } public BigDecimal getChargeLessThan() { return ChargeLessThan; } public v_JB_CashbookTotalsToDateQuery setChargeLessThan(BigDecimal value) { this.ChargeLessThan = value; return this; } public BigDecimal getChargeLessThanOrEqualTo() { return ChargeLessThanOrEqualTo; } public v_JB_CashbookTotalsToDateQuery setChargeLessThanOrEqualTo(BigDecimal value) { this.ChargeLessThanOrEqualTo = value; return this; } public BigDecimal getChargeNotEqualTo() { return ChargeNotEqualTo; } public v_JB_CashbookTotalsToDateQuery setChargeNotEqualTo(BigDecimal value) { this.ChargeNotEqualTo = value; return this; } public ArrayList getChargeBetween() { return ChargeBetween; } public v_JB_CashbookTotalsToDateQuery setChargeBetween(ArrayList value) { this.ChargeBetween = value; return this; } public ArrayList getChargeIn() { return ChargeIn; } public v_JB_CashbookTotalsToDateQuery setChargeIn(ArrayList value) { this.ChargeIn = value; return this; } public BigDecimal getCost() { return Cost; } public v_JB_CashbookTotalsToDateQuery setCost(BigDecimal value) { this.Cost = value; return this; } public BigDecimal getCostGreaterThanOrEqualTo() { return CostGreaterThanOrEqualTo; } public v_JB_CashbookTotalsToDateQuery setCostGreaterThanOrEqualTo(BigDecimal value) { this.CostGreaterThanOrEqualTo = value; return this; } public BigDecimal getCostGreaterThan() { return CostGreaterThan; } public v_JB_CashbookTotalsToDateQuery setCostGreaterThan(BigDecimal value) { this.CostGreaterThan = value; return this; } public BigDecimal getCostLessThan() { return CostLessThan; } public v_JB_CashbookTotalsToDateQuery setCostLessThan(BigDecimal value) { this.CostLessThan = value; return this; } public BigDecimal getCostLessThanOrEqualTo() { return CostLessThanOrEqualTo; } public v_JB_CashbookTotalsToDateQuery setCostLessThanOrEqualTo(BigDecimal value) { this.CostLessThanOrEqualTo = value; return this; } public BigDecimal getCostNotEqualTo() { return CostNotEqualTo; } public v_JB_CashbookTotalsToDateQuery setCostNotEqualTo(BigDecimal value) { this.CostNotEqualTo = value; return this; } public ArrayList getCostBetween() { return CostBetween; } public v_JB_CashbookTotalsToDateQuery setCostBetween(ArrayList value) { this.CostBetween = value; return this; } public ArrayList getCostIn() { return CostIn; } public v_JB_CashbookTotalsToDateQuery setCostIn(ArrayList value) { this.CostIn = value; return this; } public String getJobID() { return JobID; } public v_JB_CashbookTotalsToDateQuery setJobID(String value) { this.JobID = value; return this; } public String getJobIDStartsWith() { return JobIDStartsWith; } public v_JB_CashbookTotalsToDateQuery setJobIDStartsWith(String value) { this.JobIDStartsWith = value; return this; } public String getJobIDEndsWith() { return JobIDEndsWith; } public v_JB_CashbookTotalsToDateQuery setJobIDEndsWith(String value) { this.JobIDEndsWith = value; return this; } public String getJobIDContains() { return JobIDContains; } public v_JB_CashbookTotalsToDateQuery setJobIDContains(String value) { this.JobIDContains = value; return this; } public String getJobIDLike() { return JobIDLike; } public v_JB_CashbookTotalsToDateQuery setJobIDLike(String value) { this.JobIDLike = value; return this; } public ArrayList getJobIDBetween() { return JobIDBetween; } public v_JB_CashbookTotalsToDateQuery setJobIDBetween(ArrayList value) { this.JobIDBetween = value; return this; } public ArrayList getJobIDIn() { return JobIDIn; } public v_JB_CashbookTotalsToDateQuery setJobIDIn(ArrayList value) { this.JobIDIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class v_JB_ChargesToDateQuery extends QueryDb implements IReturn> { public BigDecimal TotalCharge = null; public BigDecimal TotalChargeGreaterThanOrEqualTo = null; public BigDecimal TotalChargeGreaterThan = null; public BigDecimal TotalChargeLessThan = null; public BigDecimal TotalChargeLessThanOrEqualTo = null; public BigDecimal TotalChargeNotEqualTo = null; public ArrayList TotalChargeBetween = null; public ArrayList TotalChargeIn = null; public String JobID = null; public String JobIDStartsWith = null; public String JobIDEndsWith = null; public String JobIDContains = null; public String JobIDLike = null; public ArrayList JobIDBetween = null; public ArrayList JobIDIn = null; public BigDecimal getTotalCharge() { return TotalCharge; } public v_JB_ChargesToDateQuery setTotalCharge(BigDecimal value) { this.TotalCharge = value; return this; } public BigDecimal getTotalChargeGreaterThanOrEqualTo() { return TotalChargeGreaterThanOrEqualTo; } public v_JB_ChargesToDateQuery setTotalChargeGreaterThanOrEqualTo(BigDecimal value) { this.TotalChargeGreaterThanOrEqualTo = value; return this; } public BigDecimal getTotalChargeGreaterThan() { return TotalChargeGreaterThan; } public v_JB_ChargesToDateQuery setTotalChargeGreaterThan(BigDecimal value) { this.TotalChargeGreaterThan = value; return this; } public BigDecimal getTotalChargeLessThan() { return TotalChargeLessThan; } public v_JB_ChargesToDateQuery setTotalChargeLessThan(BigDecimal value) { this.TotalChargeLessThan = value; return this; } public BigDecimal getTotalChargeLessThanOrEqualTo() { return TotalChargeLessThanOrEqualTo; } public v_JB_ChargesToDateQuery setTotalChargeLessThanOrEqualTo(BigDecimal value) { this.TotalChargeLessThanOrEqualTo = value; return this; } public BigDecimal getTotalChargeNotEqualTo() { return TotalChargeNotEqualTo; } public v_JB_ChargesToDateQuery setTotalChargeNotEqualTo(BigDecimal value) { this.TotalChargeNotEqualTo = value; return this; } public ArrayList getTotalChargeBetween() { return TotalChargeBetween; } public v_JB_ChargesToDateQuery setTotalChargeBetween(ArrayList value) { this.TotalChargeBetween = value; return this; } public ArrayList getTotalChargeIn() { return TotalChargeIn; } public v_JB_ChargesToDateQuery setTotalChargeIn(ArrayList value) { this.TotalChargeIn = value; return this; } public String getJobID() { return JobID; } public v_JB_ChargesToDateQuery setJobID(String value) { this.JobID = value; return this; } public String getJobIDStartsWith() { return JobIDStartsWith; } public v_JB_ChargesToDateQuery setJobIDStartsWith(String value) { this.JobIDStartsWith = value; return this; } public String getJobIDEndsWith() { return JobIDEndsWith; } public v_JB_ChargesToDateQuery setJobIDEndsWith(String value) { this.JobIDEndsWith = value; return this; } public String getJobIDContains() { return JobIDContains; } public v_JB_ChargesToDateQuery setJobIDContains(String value) { this.JobIDContains = value; return this; } public String getJobIDLike() { return JobIDLike; } public v_JB_ChargesToDateQuery setJobIDLike(String value) { this.JobIDLike = value; return this; } public ArrayList getJobIDBetween() { return JobIDBetween; } public v_JB_ChargesToDateQuery setJobIDBetween(ArrayList value) { this.JobIDBetween = value; return this; } public ArrayList getJobIDIn() { return JobIDIn; } public v_JB_ChargesToDateQuery setJobIDIn(ArrayList value) { this.JobIDIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class v_JB_CostsToDateQuery extends QueryDb implements IReturn> { public BigDecimal TotalCost = null; public BigDecimal TotalCostGreaterThanOrEqualTo = null; public BigDecimal TotalCostGreaterThan = null; public BigDecimal TotalCostLessThan = null; public BigDecimal TotalCostLessThanOrEqualTo = null; public BigDecimal TotalCostNotEqualTo = null; public ArrayList TotalCostBetween = null; public ArrayList TotalCostIn = null; public String JobID = null; public String JobIDStartsWith = null; public String JobIDEndsWith = null; public String JobIDContains = null; public String JobIDLike = null; public ArrayList JobIDBetween = null; public ArrayList JobIDIn = null; public BigDecimal getTotalCost() { return TotalCost; } public v_JB_CostsToDateQuery setTotalCost(BigDecimal value) { this.TotalCost = value; return this; } public BigDecimal getTotalCostGreaterThanOrEqualTo() { return TotalCostGreaterThanOrEqualTo; } public v_JB_CostsToDateQuery setTotalCostGreaterThanOrEqualTo(BigDecimal value) { this.TotalCostGreaterThanOrEqualTo = value; return this; } public BigDecimal getTotalCostGreaterThan() { return TotalCostGreaterThan; } public v_JB_CostsToDateQuery setTotalCostGreaterThan(BigDecimal value) { this.TotalCostGreaterThan = value; return this; } public BigDecimal getTotalCostLessThan() { return TotalCostLessThan; } public v_JB_CostsToDateQuery setTotalCostLessThan(BigDecimal value) { this.TotalCostLessThan = value; return this; } public BigDecimal getTotalCostLessThanOrEqualTo() { return TotalCostLessThanOrEqualTo; } public v_JB_CostsToDateQuery setTotalCostLessThanOrEqualTo(BigDecimal value) { this.TotalCostLessThanOrEqualTo = value; return this; } public BigDecimal getTotalCostNotEqualTo() { return TotalCostNotEqualTo; } public v_JB_CostsToDateQuery setTotalCostNotEqualTo(BigDecimal value) { this.TotalCostNotEqualTo = value; return this; } public ArrayList getTotalCostBetween() { return TotalCostBetween; } public v_JB_CostsToDateQuery setTotalCostBetween(ArrayList value) { this.TotalCostBetween = value; return this; } public ArrayList getTotalCostIn() { return TotalCostIn; } public v_JB_CostsToDateQuery setTotalCostIn(ArrayList value) { this.TotalCostIn = value; return this; } public String getJobID() { return JobID; } public v_JB_CostsToDateQuery setJobID(String value) { this.JobID = value; return this; } public String getJobIDStartsWith() { return JobIDStartsWith; } public v_JB_CostsToDateQuery setJobIDStartsWith(String value) { this.JobIDStartsWith = value; return this; } public String getJobIDEndsWith() { return JobIDEndsWith; } public v_JB_CostsToDateQuery setJobIDEndsWith(String value) { this.JobIDEndsWith = value; return this; } public String getJobIDContains() { return JobIDContains; } public v_JB_CostsToDateQuery setJobIDContains(String value) { this.JobIDContains = value; return this; } public String getJobIDLike() { return JobIDLike; } public v_JB_CostsToDateQuery setJobIDLike(String value) { this.JobIDLike = value; return this; } public ArrayList getJobIDBetween() { return JobIDBetween; } public v_JB_CostsToDateQuery setJobIDBetween(ArrayList value) { this.JobIDBetween = value; return this; } public ArrayList getJobIDIn() { return JobIDIn; } public v_JB_CostsToDateQuery setJobIDIn(ArrayList value) { this.JobIDIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class v_JB_CreditNotesQuery extends QueryDb implements IReturn> { public String SourceType = null; public String SourceTypeStartsWith = null; public String SourceTypeEndsWith = null; public String SourceTypeContains = null; public String SourceTypeLike = null; public ArrayList SourceTypeBetween = null; public ArrayList SourceTypeIn = null; public String BatchNo = null; public String BatchNoStartsWith = null; public String BatchNoEndsWith = null; public String BatchNoContains = null; public String BatchNoLike = null; public ArrayList BatchNoBetween = null; public ArrayList BatchNoIn = null; public String JobCostStage = null; public String JobCostStageStartsWith = null; public String JobCostStageEndsWith = null; public String JobCostStageContains = null; public String JobCostStageLike = null; public ArrayList JobCostStageBetween = null; public ArrayList JobCostStageIn = null; public String Item = null; public String ItemStartsWith = null; public String ItemEndsWith = null; public String ItemContains = null; public String ItemLike = null; public ArrayList ItemBetween = null; public ArrayList ItemIn = null; public String Description = null; public String DescriptionStartsWith = null; public String DescriptionEndsWith = null; public String DescriptionContains = null; public String DescriptionLike = null; public ArrayList DescriptionBetween = null; public ArrayList DescriptionIn = null; public Date TranDate = null; public Date TranDateGreaterThanOrEqualTo = null; public Date TranDateGreaterThan = null; public Date TranDateLessThan = null; public Date TranDateLessThanOrEqualTo = null; public Date TranDateNotEqualTo = null; public ArrayList TranDateBetween = null; public ArrayList TranDateIn = null; public String Qty = null; public String QtyStartsWith = null; public String QtyEndsWith = null; public String QtyContains = null; public String QtyLike = null; public ArrayList QtyBetween = null; public ArrayList QtyIn = null; public BigDecimal TotalCost = null; public BigDecimal TotalCostGreaterThanOrEqualTo = null; public BigDecimal TotalCostGreaterThan = null; public BigDecimal TotalCostLessThan = null; public BigDecimal TotalCostLessThanOrEqualTo = null; public BigDecimal TotalCostNotEqualTo = null; public ArrayList TotalCostBetween = null; public ArrayList TotalCostIn = null; public BigDecimal TotalCharge = null; public BigDecimal TotalChargeGreaterThanOrEqualTo = null; public BigDecimal TotalChargeGreaterThan = null; public BigDecimal TotalChargeLessThan = null; public BigDecimal TotalChargeLessThanOrEqualTo = null; public BigDecimal TotalChargeNotEqualTo = null; public ArrayList TotalChargeBetween = null; public ArrayList TotalChargeIn = null; public String Remark = null; public String RemarkStartsWith = null; public String RemarkEndsWith = null; public String RemarkContains = null; public String RemarkLike = null; public ArrayList RemarkBetween = null; public ArrayList RemarkIn = null; public String JobNo = null; public String JobNoStartsWith = null; public String JobNoEndsWith = null; public String JobNoContains = null; public String JobNoLike = null; public ArrayList JobNoBetween = null; public ArrayList JobNoIn = null; public String getSourceType() { return SourceType; } public v_JB_CreditNotesQuery setSourceType(String value) { this.SourceType = value; return this; } public String getSourceTypeStartsWith() { return SourceTypeStartsWith; } public v_JB_CreditNotesQuery setSourceTypeStartsWith(String value) { this.SourceTypeStartsWith = value; return this; } public String getSourceTypeEndsWith() { return SourceTypeEndsWith; } public v_JB_CreditNotesQuery setSourceTypeEndsWith(String value) { this.SourceTypeEndsWith = value; return this; } public String getSourceTypeContains() { return SourceTypeContains; } public v_JB_CreditNotesQuery setSourceTypeContains(String value) { this.SourceTypeContains = value; return this; } public String getSourceTypeLike() { return SourceTypeLike; } public v_JB_CreditNotesQuery setSourceTypeLike(String value) { this.SourceTypeLike = value; return this; } public ArrayList getSourceTypeBetween() { return SourceTypeBetween; } public v_JB_CreditNotesQuery setSourceTypeBetween(ArrayList value) { this.SourceTypeBetween = value; return this; } public ArrayList getSourceTypeIn() { return SourceTypeIn; } public v_JB_CreditNotesQuery setSourceTypeIn(ArrayList value) { this.SourceTypeIn = value; return this; } public String getBatchNo() { return BatchNo; } public v_JB_CreditNotesQuery setBatchNo(String value) { this.BatchNo = value; return this; } public String getBatchNoStartsWith() { return BatchNoStartsWith; } public v_JB_CreditNotesQuery setBatchNoStartsWith(String value) { this.BatchNoStartsWith = value; return this; } public String getBatchNoEndsWith() { return BatchNoEndsWith; } public v_JB_CreditNotesQuery setBatchNoEndsWith(String value) { this.BatchNoEndsWith = value; return this; } public String getBatchNoContains() { return BatchNoContains; } public v_JB_CreditNotesQuery setBatchNoContains(String value) { this.BatchNoContains = value; return this; } public String getBatchNoLike() { return BatchNoLike; } public v_JB_CreditNotesQuery setBatchNoLike(String value) { this.BatchNoLike = value; return this; } public ArrayList getBatchNoBetween() { return BatchNoBetween; } public v_JB_CreditNotesQuery setBatchNoBetween(ArrayList value) { this.BatchNoBetween = value; return this; } public ArrayList getBatchNoIn() { return BatchNoIn; } public v_JB_CreditNotesQuery setBatchNoIn(ArrayList value) { this.BatchNoIn = value; return this; } public String getJobCostStage() { return JobCostStage; } public v_JB_CreditNotesQuery setJobCostStage(String value) { this.JobCostStage = value; return this; } public String getJobCostStageStartsWith() { return JobCostStageStartsWith; } public v_JB_CreditNotesQuery setJobCostStageStartsWith(String value) { this.JobCostStageStartsWith = value; return this; } public String getJobCostStageEndsWith() { return JobCostStageEndsWith; } public v_JB_CreditNotesQuery setJobCostStageEndsWith(String value) { this.JobCostStageEndsWith = value; return this; } public String getJobCostStageContains() { return JobCostStageContains; } public v_JB_CreditNotesQuery setJobCostStageContains(String value) { this.JobCostStageContains = value; return this; } public String getJobCostStageLike() { return JobCostStageLike; } public v_JB_CreditNotesQuery setJobCostStageLike(String value) { this.JobCostStageLike = value; return this; } public ArrayList getJobCostStageBetween() { return JobCostStageBetween; } public v_JB_CreditNotesQuery setJobCostStageBetween(ArrayList value) { this.JobCostStageBetween = value; return this; } public ArrayList getJobCostStageIn() { return JobCostStageIn; } public v_JB_CreditNotesQuery setJobCostStageIn(ArrayList value) { this.JobCostStageIn = value; return this; } public String getItem() { return Item; } public v_JB_CreditNotesQuery setItem(String value) { this.Item = value; return this; } public String getItemStartsWith() { return ItemStartsWith; } public v_JB_CreditNotesQuery setItemStartsWith(String value) { this.ItemStartsWith = value; return this; } public String getItemEndsWith() { return ItemEndsWith; } public v_JB_CreditNotesQuery setItemEndsWith(String value) { this.ItemEndsWith = value; return this; } public String getItemContains() { return ItemContains; } public v_JB_CreditNotesQuery setItemContains(String value) { this.ItemContains = value; return this; } public String getItemLike() { return ItemLike; } public v_JB_CreditNotesQuery setItemLike(String value) { this.ItemLike = value; return this; } public ArrayList getItemBetween() { return ItemBetween; } public v_JB_CreditNotesQuery setItemBetween(ArrayList value) { this.ItemBetween = value; return this; } public ArrayList getItemIn() { return ItemIn; } public v_JB_CreditNotesQuery setItemIn(ArrayList value) { this.ItemIn = value; return this; } public String getDescription() { return Description; } public v_JB_CreditNotesQuery setDescription(String value) { this.Description = value; return this; } public String getDescriptionStartsWith() { return DescriptionStartsWith; } public v_JB_CreditNotesQuery setDescriptionStartsWith(String value) { this.DescriptionStartsWith = value; return this; } public String getDescriptionEndsWith() { return DescriptionEndsWith; } public v_JB_CreditNotesQuery setDescriptionEndsWith(String value) { this.DescriptionEndsWith = value; return this; } public String getDescriptionContains() { return DescriptionContains; } public v_JB_CreditNotesQuery setDescriptionContains(String value) { this.DescriptionContains = value; return this; } public String getDescriptionLike() { return DescriptionLike; } public v_JB_CreditNotesQuery setDescriptionLike(String value) { this.DescriptionLike = value; return this; } public ArrayList getDescriptionBetween() { return DescriptionBetween; } public v_JB_CreditNotesQuery setDescriptionBetween(ArrayList value) { this.DescriptionBetween = value; return this; } public ArrayList getDescriptionIn() { return DescriptionIn; } public v_JB_CreditNotesQuery setDescriptionIn(ArrayList value) { this.DescriptionIn = value; return this; } public Date getTranDate() { return TranDate; } public v_JB_CreditNotesQuery setTranDate(Date value) { this.TranDate = value; return this; } public Date getTranDateGreaterThanOrEqualTo() { return TranDateGreaterThanOrEqualTo; } public v_JB_CreditNotesQuery setTranDateGreaterThanOrEqualTo(Date value) { this.TranDateGreaterThanOrEqualTo = value; return this; } public Date getTranDateGreaterThan() { return TranDateGreaterThan; } public v_JB_CreditNotesQuery setTranDateGreaterThan(Date value) { this.TranDateGreaterThan = value; return this; } public Date getTranDateLessThan() { return TranDateLessThan; } public v_JB_CreditNotesQuery setTranDateLessThan(Date value) { this.TranDateLessThan = value; return this; } public Date getTranDateLessThanOrEqualTo() { return TranDateLessThanOrEqualTo; } public v_JB_CreditNotesQuery setTranDateLessThanOrEqualTo(Date value) { this.TranDateLessThanOrEqualTo = value; return this; } public Date getTranDateNotEqualTo() { return TranDateNotEqualTo; } public v_JB_CreditNotesQuery setTranDateNotEqualTo(Date value) { this.TranDateNotEqualTo = value; return this; } public ArrayList getTranDateBetween() { return TranDateBetween; } public v_JB_CreditNotesQuery setTranDateBetween(ArrayList value) { this.TranDateBetween = value; return this; } public ArrayList getTranDateIn() { return TranDateIn; } public v_JB_CreditNotesQuery setTranDateIn(ArrayList value) { this.TranDateIn = value; return this; } public String getQty() { return Qty; } public v_JB_CreditNotesQuery setQty(String value) { this.Qty = value; return this; } public String getQtyStartsWith() { return QtyStartsWith; } public v_JB_CreditNotesQuery setQtyStartsWith(String value) { this.QtyStartsWith = value; return this; } public String getQtyEndsWith() { return QtyEndsWith; } public v_JB_CreditNotesQuery setQtyEndsWith(String value) { this.QtyEndsWith = value; return this; } public String getQtyContains() { return QtyContains; } public v_JB_CreditNotesQuery setQtyContains(String value) { this.QtyContains = value; return this; } public String getQtyLike() { return QtyLike; } public v_JB_CreditNotesQuery setQtyLike(String value) { this.QtyLike = value; return this; } public ArrayList getQtyBetween() { return QtyBetween; } public v_JB_CreditNotesQuery setQtyBetween(ArrayList value) { this.QtyBetween = value; return this; } public ArrayList getQtyIn() { return QtyIn; } public v_JB_CreditNotesQuery setQtyIn(ArrayList value) { this.QtyIn = value; return this; } public BigDecimal getTotalCost() { return TotalCost; } public v_JB_CreditNotesQuery setTotalCost(BigDecimal value) { this.TotalCost = value; return this; } public BigDecimal getTotalCostGreaterThanOrEqualTo() { return TotalCostGreaterThanOrEqualTo; } public v_JB_CreditNotesQuery setTotalCostGreaterThanOrEqualTo(BigDecimal value) { this.TotalCostGreaterThanOrEqualTo = value; return this; } public BigDecimal getTotalCostGreaterThan() { return TotalCostGreaterThan; } public v_JB_CreditNotesQuery setTotalCostGreaterThan(BigDecimal value) { this.TotalCostGreaterThan = value; return this; } public BigDecimal getTotalCostLessThan() { return TotalCostLessThan; } public v_JB_CreditNotesQuery setTotalCostLessThan(BigDecimal value) { this.TotalCostLessThan = value; return this; } public BigDecimal getTotalCostLessThanOrEqualTo() { return TotalCostLessThanOrEqualTo; } public v_JB_CreditNotesQuery setTotalCostLessThanOrEqualTo(BigDecimal value) { this.TotalCostLessThanOrEqualTo = value; return this; } public BigDecimal getTotalCostNotEqualTo() { return TotalCostNotEqualTo; } public v_JB_CreditNotesQuery setTotalCostNotEqualTo(BigDecimal value) { this.TotalCostNotEqualTo = value; return this; } public ArrayList getTotalCostBetween() { return TotalCostBetween; } public v_JB_CreditNotesQuery setTotalCostBetween(ArrayList value) { this.TotalCostBetween = value; return this; } public ArrayList getTotalCostIn() { return TotalCostIn; } public v_JB_CreditNotesQuery setTotalCostIn(ArrayList value) { this.TotalCostIn = value; return this; } public BigDecimal getTotalCharge() { return TotalCharge; } public v_JB_CreditNotesQuery setTotalCharge(BigDecimal value) { this.TotalCharge = value; return this; } public BigDecimal getTotalChargeGreaterThanOrEqualTo() { return TotalChargeGreaterThanOrEqualTo; } public v_JB_CreditNotesQuery setTotalChargeGreaterThanOrEqualTo(BigDecimal value) { this.TotalChargeGreaterThanOrEqualTo = value; return this; } public BigDecimal getTotalChargeGreaterThan() { return TotalChargeGreaterThan; } public v_JB_CreditNotesQuery setTotalChargeGreaterThan(BigDecimal value) { this.TotalChargeGreaterThan = value; return this; } public BigDecimal getTotalChargeLessThan() { return TotalChargeLessThan; } public v_JB_CreditNotesQuery setTotalChargeLessThan(BigDecimal value) { this.TotalChargeLessThan = value; return this; } public BigDecimal getTotalChargeLessThanOrEqualTo() { return TotalChargeLessThanOrEqualTo; } public v_JB_CreditNotesQuery setTotalChargeLessThanOrEqualTo(BigDecimal value) { this.TotalChargeLessThanOrEqualTo = value; return this; } public BigDecimal getTotalChargeNotEqualTo() { return TotalChargeNotEqualTo; } public v_JB_CreditNotesQuery setTotalChargeNotEqualTo(BigDecimal value) { this.TotalChargeNotEqualTo = value; return this; } public ArrayList getTotalChargeBetween() { return TotalChargeBetween; } public v_JB_CreditNotesQuery setTotalChargeBetween(ArrayList value) { this.TotalChargeBetween = value; return this; } public ArrayList getTotalChargeIn() { return TotalChargeIn; } public v_JB_CreditNotesQuery setTotalChargeIn(ArrayList value) { this.TotalChargeIn = value; return this; } public String getRemark() { return Remark; } public v_JB_CreditNotesQuery setRemark(String value) { this.Remark = value; return this; } public String getRemarkStartsWith() { return RemarkStartsWith; } public v_JB_CreditNotesQuery setRemarkStartsWith(String value) { this.RemarkStartsWith = value; return this; } public String getRemarkEndsWith() { return RemarkEndsWith; } public v_JB_CreditNotesQuery setRemarkEndsWith(String value) { this.RemarkEndsWith = value; return this; } public String getRemarkContains() { return RemarkContains; } public v_JB_CreditNotesQuery setRemarkContains(String value) { this.RemarkContains = value; return this; } public String getRemarkLike() { return RemarkLike; } public v_JB_CreditNotesQuery setRemarkLike(String value) { this.RemarkLike = value; return this; } public ArrayList getRemarkBetween() { return RemarkBetween; } public v_JB_CreditNotesQuery setRemarkBetween(ArrayList value) { this.RemarkBetween = value; return this; } public ArrayList getRemarkIn() { return RemarkIn; } public v_JB_CreditNotesQuery setRemarkIn(ArrayList value) { this.RemarkIn = value; return this; } public String getJobNo() { return JobNo; } public v_JB_CreditNotesQuery setJobNo(String value) { this.JobNo = value; return this; } public String getJobNoStartsWith() { return JobNoStartsWith; } public v_JB_CreditNotesQuery setJobNoStartsWith(String value) { this.JobNoStartsWith = value; return this; } public String getJobNoEndsWith() { return JobNoEndsWith; } public v_JB_CreditNotesQuery setJobNoEndsWith(String value) { this.JobNoEndsWith = value; return this; } public String getJobNoContains() { return JobNoContains; } public v_JB_CreditNotesQuery setJobNoContains(String value) { this.JobNoContains = value; return this; } public String getJobNoLike() { return JobNoLike; } public v_JB_CreditNotesQuery setJobNoLike(String value) { this.JobNoLike = value; return this; } public ArrayList getJobNoBetween() { return JobNoBetween; } public v_JB_CreditNotesQuery setJobNoBetween(ArrayList value) { this.JobNoBetween = value; return this; } public ArrayList getJobNoIn() { return JobNoIn; } public v_JB_CreditNotesQuery setJobNoIn(ArrayList value) { this.JobNoIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class v_JB_DefaultEstimateQuery extends QueryDb implements IReturn> { public BigDecimal EstimateCharge = null; public BigDecimal EstimateChargeGreaterThanOrEqualTo = null; public BigDecimal EstimateChargeGreaterThan = null; public BigDecimal EstimateChargeLessThan = null; public BigDecimal EstimateChargeLessThanOrEqualTo = null; public BigDecimal EstimateChargeNotEqualTo = null; public ArrayList EstimateChargeBetween = null; public ArrayList EstimateChargeIn = null; public BigDecimal EstimateCost = null; public BigDecimal EstimateCostGreaterThanOrEqualTo = null; public BigDecimal EstimateCostGreaterThan = null; public BigDecimal EstimateCostLessThan = null; public BigDecimal EstimateCostLessThanOrEqualTo = null; public BigDecimal EstimateCostNotEqualTo = null; public ArrayList EstimateCostBetween = null; public ArrayList EstimateCostIn = null; public String JobID = null; public String JobIDStartsWith = null; public String JobIDEndsWith = null; public String JobIDContains = null; public String JobIDLike = null; public ArrayList JobIDBetween = null; public ArrayList JobIDIn = null; public BigDecimal getEstimateCharge() { return EstimateCharge; } public v_JB_DefaultEstimateQuery setEstimateCharge(BigDecimal value) { this.EstimateCharge = value; return this; } public BigDecimal getEstimateChargeGreaterThanOrEqualTo() { return EstimateChargeGreaterThanOrEqualTo; } public v_JB_DefaultEstimateQuery setEstimateChargeGreaterThanOrEqualTo(BigDecimal value) { this.EstimateChargeGreaterThanOrEqualTo = value; return this; } public BigDecimal getEstimateChargeGreaterThan() { return EstimateChargeGreaterThan; } public v_JB_DefaultEstimateQuery setEstimateChargeGreaterThan(BigDecimal value) { this.EstimateChargeGreaterThan = value; return this; } public BigDecimal getEstimateChargeLessThan() { return EstimateChargeLessThan; } public v_JB_DefaultEstimateQuery setEstimateChargeLessThan(BigDecimal value) { this.EstimateChargeLessThan = value; return this; } public BigDecimal getEstimateChargeLessThanOrEqualTo() { return EstimateChargeLessThanOrEqualTo; } public v_JB_DefaultEstimateQuery setEstimateChargeLessThanOrEqualTo(BigDecimal value) { this.EstimateChargeLessThanOrEqualTo = value; return this; } public BigDecimal getEstimateChargeNotEqualTo() { return EstimateChargeNotEqualTo; } public v_JB_DefaultEstimateQuery setEstimateChargeNotEqualTo(BigDecimal value) { this.EstimateChargeNotEqualTo = value; return this; } public ArrayList getEstimateChargeBetween() { return EstimateChargeBetween; } public v_JB_DefaultEstimateQuery setEstimateChargeBetween(ArrayList value) { this.EstimateChargeBetween = value; return this; } public ArrayList getEstimateChargeIn() { return EstimateChargeIn; } public v_JB_DefaultEstimateQuery setEstimateChargeIn(ArrayList value) { this.EstimateChargeIn = value; return this; } public BigDecimal getEstimateCost() { return EstimateCost; } public v_JB_DefaultEstimateQuery setEstimateCost(BigDecimal value) { this.EstimateCost = value; return this; } public BigDecimal getEstimateCostGreaterThanOrEqualTo() { return EstimateCostGreaterThanOrEqualTo; } public v_JB_DefaultEstimateQuery setEstimateCostGreaterThanOrEqualTo(BigDecimal value) { this.EstimateCostGreaterThanOrEqualTo = value; return this; } public BigDecimal getEstimateCostGreaterThan() { return EstimateCostGreaterThan; } public v_JB_DefaultEstimateQuery setEstimateCostGreaterThan(BigDecimal value) { this.EstimateCostGreaterThan = value; return this; } public BigDecimal getEstimateCostLessThan() { return EstimateCostLessThan; } public v_JB_DefaultEstimateQuery setEstimateCostLessThan(BigDecimal value) { this.EstimateCostLessThan = value; return this; } public BigDecimal getEstimateCostLessThanOrEqualTo() { return EstimateCostLessThanOrEqualTo; } public v_JB_DefaultEstimateQuery setEstimateCostLessThanOrEqualTo(BigDecimal value) { this.EstimateCostLessThanOrEqualTo = value; return this; } public BigDecimal getEstimateCostNotEqualTo() { return EstimateCostNotEqualTo; } public v_JB_DefaultEstimateQuery setEstimateCostNotEqualTo(BigDecimal value) { this.EstimateCostNotEqualTo = value; return this; } public ArrayList getEstimateCostBetween() { return EstimateCostBetween; } public v_JB_DefaultEstimateQuery setEstimateCostBetween(ArrayList value) { this.EstimateCostBetween = value; return this; } public ArrayList getEstimateCostIn() { return EstimateCostIn; } public v_JB_DefaultEstimateQuery setEstimateCostIn(ArrayList value) { this.EstimateCostIn = value; return this; } public String getJobID() { return JobID; } public v_JB_DefaultEstimateQuery setJobID(String value) { this.JobID = value; return this; } public String getJobIDStartsWith() { return JobIDStartsWith; } public v_JB_DefaultEstimateQuery setJobIDStartsWith(String value) { this.JobIDStartsWith = value; return this; } public String getJobIDEndsWith() { return JobIDEndsWith; } public v_JB_DefaultEstimateQuery setJobIDEndsWith(String value) { this.JobIDEndsWith = value; return this; } public String getJobIDContains() { return JobIDContains; } public v_JB_DefaultEstimateQuery setJobIDContains(String value) { this.JobIDContains = value; return this; } public String getJobIDLike() { return JobIDLike; } public v_JB_DefaultEstimateQuery setJobIDLike(String value) { this.JobIDLike = value; return this; } public ArrayList getJobIDBetween() { return JobIDBetween; } public v_JB_DefaultEstimateQuery setJobIDBetween(ArrayList value) { this.JobIDBetween = value; return this; } public ArrayList getJobIDIn() { return JobIDIn; } public v_JB_DefaultEstimateQuery setJobIDIn(ArrayList value) { this.JobIDIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class v_JB_FinishedGoodsQuery extends QueryDb implements IReturn> { public String SourceType = null; public String SourceTypeStartsWith = null; public String SourceTypeEndsWith = null; public String SourceTypeContains = null; public String SourceTypeLike = null; public ArrayList SourceTypeBetween = null; public ArrayList SourceTypeIn = null; public String BatchNo = null; public String BatchNoStartsWith = null; public String BatchNoEndsWith = null; public String BatchNoContains = null; public String BatchNoLike = null; public ArrayList BatchNoBetween = null; public ArrayList BatchNoIn = null; public String JobCostStage = null; public String JobCostStageStartsWith = null; public String JobCostStageEndsWith = null; public String JobCostStageContains = null; public String JobCostStageLike = null; public ArrayList JobCostStageBetween = null; public ArrayList JobCostStageIn = null; public String Item = null; public String ItemStartsWith = null; public String ItemEndsWith = null; public String ItemContains = null; public String ItemLike = null; public ArrayList ItemBetween = null; public ArrayList ItemIn = null; public String Description = null; public String DescriptionStartsWith = null; public String DescriptionEndsWith = null; public String DescriptionContains = null; public String DescriptionLike = null; public ArrayList DescriptionBetween = null; public ArrayList DescriptionIn = null; public Date TranDate = null; public Date TranDateGreaterThanOrEqualTo = null; public Date TranDateGreaterThan = null; public Date TranDateLessThan = null; public Date TranDateLessThanOrEqualTo = null; public Date TranDateNotEqualTo = null; public ArrayList TranDateBetween = null; public ArrayList TranDateIn = null; public BigDecimal Qty = null; public BigDecimal QtyGreaterThanOrEqualTo = null; public BigDecimal QtyGreaterThan = null; public BigDecimal QtyLessThan = null; public BigDecimal QtyLessThanOrEqualTo = null; public BigDecimal QtyNotEqualTo = null; public ArrayList QtyBetween = null; public ArrayList QtyIn = null; public BigDecimal TotalCost = null; public BigDecimal TotalCostGreaterThanOrEqualTo = null; public BigDecimal TotalCostGreaterThan = null; public BigDecimal TotalCostLessThan = null; public BigDecimal TotalCostLessThanOrEqualTo = null; public BigDecimal TotalCostNotEqualTo = null; public ArrayList TotalCostBetween = null; public ArrayList TotalCostIn = null; public BigDecimal TotalCharge = null; public BigDecimal TotalChargeGreaterThanOrEqualTo = null; public BigDecimal TotalChargeGreaterThan = null; public BigDecimal TotalChargeLessThan = null; public BigDecimal TotalChargeLessThanOrEqualTo = null; public BigDecimal TotalChargeNotEqualTo = null; public ArrayList TotalChargeBetween = null; public ArrayList TotalChargeIn = null; public String Remark = null; public String RemarkStartsWith = null; public String RemarkEndsWith = null; public String RemarkContains = null; public String RemarkLike = null; public ArrayList RemarkBetween = null; public ArrayList RemarkIn = null; public String JobNo = null; public String JobNoStartsWith = null; public String JobNoEndsWith = null; public String JobNoContains = null; public String JobNoLike = null; public ArrayList JobNoBetween = null; public ArrayList JobNoIn = null; public String getSourceType() { return SourceType; } public v_JB_FinishedGoodsQuery setSourceType(String value) { this.SourceType = value; return this; } public String getSourceTypeStartsWith() { return SourceTypeStartsWith; } public v_JB_FinishedGoodsQuery setSourceTypeStartsWith(String value) { this.SourceTypeStartsWith = value; return this; } public String getSourceTypeEndsWith() { return SourceTypeEndsWith; } public v_JB_FinishedGoodsQuery setSourceTypeEndsWith(String value) { this.SourceTypeEndsWith = value; return this; } public String getSourceTypeContains() { return SourceTypeContains; } public v_JB_FinishedGoodsQuery setSourceTypeContains(String value) { this.SourceTypeContains = value; return this; } public String getSourceTypeLike() { return SourceTypeLike; } public v_JB_FinishedGoodsQuery setSourceTypeLike(String value) { this.SourceTypeLike = value; return this; } public ArrayList getSourceTypeBetween() { return SourceTypeBetween; } public v_JB_FinishedGoodsQuery setSourceTypeBetween(ArrayList value) { this.SourceTypeBetween = value; return this; } public ArrayList getSourceTypeIn() { return SourceTypeIn; } public v_JB_FinishedGoodsQuery setSourceTypeIn(ArrayList value) { this.SourceTypeIn = value; return this; } public String getBatchNo() { return BatchNo; } public v_JB_FinishedGoodsQuery setBatchNo(String value) { this.BatchNo = value; return this; } public String getBatchNoStartsWith() { return BatchNoStartsWith; } public v_JB_FinishedGoodsQuery setBatchNoStartsWith(String value) { this.BatchNoStartsWith = value; return this; } public String getBatchNoEndsWith() { return BatchNoEndsWith; } public v_JB_FinishedGoodsQuery setBatchNoEndsWith(String value) { this.BatchNoEndsWith = value; return this; } public String getBatchNoContains() { return BatchNoContains; } public v_JB_FinishedGoodsQuery setBatchNoContains(String value) { this.BatchNoContains = value; return this; } public String getBatchNoLike() { return BatchNoLike; } public v_JB_FinishedGoodsQuery setBatchNoLike(String value) { this.BatchNoLike = value; return this; } public ArrayList getBatchNoBetween() { return BatchNoBetween; } public v_JB_FinishedGoodsQuery setBatchNoBetween(ArrayList value) { this.BatchNoBetween = value; return this; } public ArrayList getBatchNoIn() { return BatchNoIn; } public v_JB_FinishedGoodsQuery setBatchNoIn(ArrayList value) { this.BatchNoIn = value; return this; } public String getJobCostStage() { return JobCostStage; } public v_JB_FinishedGoodsQuery setJobCostStage(String value) { this.JobCostStage = value; return this; } public String getJobCostStageStartsWith() { return JobCostStageStartsWith; } public v_JB_FinishedGoodsQuery setJobCostStageStartsWith(String value) { this.JobCostStageStartsWith = value; return this; } public String getJobCostStageEndsWith() { return JobCostStageEndsWith; } public v_JB_FinishedGoodsQuery setJobCostStageEndsWith(String value) { this.JobCostStageEndsWith = value; return this; } public String getJobCostStageContains() { return JobCostStageContains; } public v_JB_FinishedGoodsQuery setJobCostStageContains(String value) { this.JobCostStageContains = value; return this; } public String getJobCostStageLike() { return JobCostStageLike; } public v_JB_FinishedGoodsQuery setJobCostStageLike(String value) { this.JobCostStageLike = value; return this; } public ArrayList getJobCostStageBetween() { return JobCostStageBetween; } public v_JB_FinishedGoodsQuery setJobCostStageBetween(ArrayList value) { this.JobCostStageBetween = value; return this; } public ArrayList getJobCostStageIn() { return JobCostStageIn; } public v_JB_FinishedGoodsQuery setJobCostStageIn(ArrayList value) { this.JobCostStageIn = value; return this; } public String getItem() { return Item; } public v_JB_FinishedGoodsQuery setItem(String value) { this.Item = value; return this; } public String getItemStartsWith() { return ItemStartsWith; } public v_JB_FinishedGoodsQuery setItemStartsWith(String value) { this.ItemStartsWith = value; return this; } public String getItemEndsWith() { return ItemEndsWith; } public v_JB_FinishedGoodsQuery setItemEndsWith(String value) { this.ItemEndsWith = value; return this; } public String getItemContains() { return ItemContains; } public v_JB_FinishedGoodsQuery setItemContains(String value) { this.ItemContains = value; return this; } public String getItemLike() { return ItemLike; } public v_JB_FinishedGoodsQuery setItemLike(String value) { this.ItemLike = value; return this; } public ArrayList getItemBetween() { return ItemBetween; } public v_JB_FinishedGoodsQuery setItemBetween(ArrayList value) { this.ItemBetween = value; return this; } public ArrayList getItemIn() { return ItemIn; } public v_JB_FinishedGoodsQuery setItemIn(ArrayList value) { this.ItemIn = value; return this; } public String getDescription() { return Description; } public v_JB_FinishedGoodsQuery setDescription(String value) { this.Description = value; return this; } public String getDescriptionStartsWith() { return DescriptionStartsWith; } public v_JB_FinishedGoodsQuery setDescriptionStartsWith(String value) { this.DescriptionStartsWith = value; return this; } public String getDescriptionEndsWith() { return DescriptionEndsWith; } public v_JB_FinishedGoodsQuery setDescriptionEndsWith(String value) { this.DescriptionEndsWith = value; return this; } public String getDescriptionContains() { return DescriptionContains; } public v_JB_FinishedGoodsQuery setDescriptionContains(String value) { this.DescriptionContains = value; return this; } public String getDescriptionLike() { return DescriptionLike; } public v_JB_FinishedGoodsQuery setDescriptionLike(String value) { this.DescriptionLike = value; return this; } public ArrayList getDescriptionBetween() { return DescriptionBetween; } public v_JB_FinishedGoodsQuery setDescriptionBetween(ArrayList value) { this.DescriptionBetween = value; return this; } public ArrayList getDescriptionIn() { return DescriptionIn; } public v_JB_FinishedGoodsQuery setDescriptionIn(ArrayList value) { this.DescriptionIn = value; return this; } public Date getTranDate() { return TranDate; } public v_JB_FinishedGoodsQuery setTranDate(Date value) { this.TranDate = value; return this; } public Date getTranDateGreaterThanOrEqualTo() { return TranDateGreaterThanOrEqualTo; } public v_JB_FinishedGoodsQuery setTranDateGreaterThanOrEqualTo(Date value) { this.TranDateGreaterThanOrEqualTo = value; return this; } public Date getTranDateGreaterThan() { return TranDateGreaterThan; } public v_JB_FinishedGoodsQuery setTranDateGreaterThan(Date value) { this.TranDateGreaterThan = value; return this; } public Date getTranDateLessThan() { return TranDateLessThan; } public v_JB_FinishedGoodsQuery setTranDateLessThan(Date value) { this.TranDateLessThan = value; return this; } public Date getTranDateLessThanOrEqualTo() { return TranDateLessThanOrEqualTo; } public v_JB_FinishedGoodsQuery setTranDateLessThanOrEqualTo(Date value) { this.TranDateLessThanOrEqualTo = value; return this; } public Date getTranDateNotEqualTo() { return TranDateNotEqualTo; } public v_JB_FinishedGoodsQuery setTranDateNotEqualTo(Date value) { this.TranDateNotEqualTo = value; return this; } public ArrayList getTranDateBetween() { return TranDateBetween; } public v_JB_FinishedGoodsQuery setTranDateBetween(ArrayList value) { this.TranDateBetween = value; return this; } public ArrayList getTranDateIn() { return TranDateIn; } public v_JB_FinishedGoodsQuery setTranDateIn(ArrayList value) { this.TranDateIn = value; return this; } public BigDecimal getQty() { return Qty; } public v_JB_FinishedGoodsQuery setQty(BigDecimal value) { this.Qty = value; return this; } public BigDecimal getQtyGreaterThanOrEqualTo() { return QtyGreaterThanOrEqualTo; } public v_JB_FinishedGoodsQuery setQtyGreaterThanOrEqualTo(BigDecimal value) { this.QtyGreaterThanOrEqualTo = value; return this; } public BigDecimal getQtyGreaterThan() { return QtyGreaterThan; } public v_JB_FinishedGoodsQuery setQtyGreaterThan(BigDecimal value) { this.QtyGreaterThan = value; return this; } public BigDecimal getQtyLessThan() { return QtyLessThan; } public v_JB_FinishedGoodsQuery setQtyLessThan(BigDecimal value) { this.QtyLessThan = value; return this; } public BigDecimal getQtyLessThanOrEqualTo() { return QtyLessThanOrEqualTo; } public v_JB_FinishedGoodsQuery setQtyLessThanOrEqualTo(BigDecimal value) { this.QtyLessThanOrEqualTo = value; return this; } public BigDecimal getQtyNotEqualTo() { return QtyNotEqualTo; } public v_JB_FinishedGoodsQuery setQtyNotEqualTo(BigDecimal value) { this.QtyNotEqualTo = value; return this; } public ArrayList getQtyBetween() { return QtyBetween; } public v_JB_FinishedGoodsQuery setQtyBetween(ArrayList value) { this.QtyBetween = value; return this; } public ArrayList getQtyIn() { return QtyIn; } public v_JB_FinishedGoodsQuery setQtyIn(ArrayList value) { this.QtyIn = value; return this; } public BigDecimal getTotalCost() { return TotalCost; } public v_JB_FinishedGoodsQuery setTotalCost(BigDecimal value) { this.TotalCost = value; return this; } public BigDecimal getTotalCostGreaterThanOrEqualTo() { return TotalCostGreaterThanOrEqualTo; } public v_JB_FinishedGoodsQuery setTotalCostGreaterThanOrEqualTo(BigDecimal value) { this.TotalCostGreaterThanOrEqualTo = value; return this; } public BigDecimal getTotalCostGreaterThan() { return TotalCostGreaterThan; } public v_JB_FinishedGoodsQuery setTotalCostGreaterThan(BigDecimal value) { this.TotalCostGreaterThan = value; return this; } public BigDecimal getTotalCostLessThan() { return TotalCostLessThan; } public v_JB_FinishedGoodsQuery setTotalCostLessThan(BigDecimal value) { this.TotalCostLessThan = value; return this; } public BigDecimal getTotalCostLessThanOrEqualTo() { return TotalCostLessThanOrEqualTo; } public v_JB_FinishedGoodsQuery setTotalCostLessThanOrEqualTo(BigDecimal value) { this.TotalCostLessThanOrEqualTo = value; return this; } public BigDecimal getTotalCostNotEqualTo() { return TotalCostNotEqualTo; } public v_JB_FinishedGoodsQuery setTotalCostNotEqualTo(BigDecimal value) { this.TotalCostNotEqualTo = value; return this; } public ArrayList getTotalCostBetween() { return TotalCostBetween; } public v_JB_FinishedGoodsQuery setTotalCostBetween(ArrayList value) { this.TotalCostBetween = value; return this; } public ArrayList getTotalCostIn() { return TotalCostIn; } public v_JB_FinishedGoodsQuery setTotalCostIn(ArrayList value) { this.TotalCostIn = value; return this; } public BigDecimal getTotalCharge() { return TotalCharge; } public v_JB_FinishedGoodsQuery setTotalCharge(BigDecimal value) { this.TotalCharge = value; return this; } public BigDecimal getTotalChargeGreaterThanOrEqualTo() { return TotalChargeGreaterThanOrEqualTo; } public v_JB_FinishedGoodsQuery setTotalChargeGreaterThanOrEqualTo(BigDecimal value) { this.TotalChargeGreaterThanOrEqualTo = value; return this; } public BigDecimal getTotalChargeGreaterThan() { return TotalChargeGreaterThan; } public v_JB_FinishedGoodsQuery setTotalChargeGreaterThan(BigDecimal value) { this.TotalChargeGreaterThan = value; return this; } public BigDecimal getTotalChargeLessThan() { return TotalChargeLessThan; } public v_JB_FinishedGoodsQuery setTotalChargeLessThan(BigDecimal value) { this.TotalChargeLessThan = value; return this; } public BigDecimal getTotalChargeLessThanOrEqualTo() { return TotalChargeLessThanOrEqualTo; } public v_JB_FinishedGoodsQuery setTotalChargeLessThanOrEqualTo(BigDecimal value) { this.TotalChargeLessThanOrEqualTo = value; return this; } public BigDecimal getTotalChargeNotEqualTo() { return TotalChargeNotEqualTo; } public v_JB_FinishedGoodsQuery setTotalChargeNotEqualTo(BigDecimal value) { this.TotalChargeNotEqualTo = value; return this; } public ArrayList getTotalChargeBetween() { return TotalChargeBetween; } public v_JB_FinishedGoodsQuery setTotalChargeBetween(ArrayList value) { this.TotalChargeBetween = value; return this; } public ArrayList getTotalChargeIn() { return TotalChargeIn; } public v_JB_FinishedGoodsQuery setTotalChargeIn(ArrayList value) { this.TotalChargeIn = value; return this; } public String getRemark() { return Remark; } public v_JB_FinishedGoodsQuery setRemark(String value) { this.Remark = value; return this; } public String getRemarkStartsWith() { return RemarkStartsWith; } public v_JB_FinishedGoodsQuery setRemarkStartsWith(String value) { this.RemarkStartsWith = value; return this; } public String getRemarkEndsWith() { return RemarkEndsWith; } public v_JB_FinishedGoodsQuery setRemarkEndsWith(String value) { this.RemarkEndsWith = value; return this; } public String getRemarkContains() { return RemarkContains; } public v_JB_FinishedGoodsQuery setRemarkContains(String value) { this.RemarkContains = value; return this; } public String getRemarkLike() { return RemarkLike; } public v_JB_FinishedGoodsQuery setRemarkLike(String value) { this.RemarkLike = value; return this; } public ArrayList getRemarkBetween() { return RemarkBetween; } public v_JB_FinishedGoodsQuery setRemarkBetween(ArrayList value) { this.RemarkBetween = value; return this; } public ArrayList getRemarkIn() { return RemarkIn; } public v_JB_FinishedGoodsQuery setRemarkIn(ArrayList value) { this.RemarkIn = value; return this; } public String getJobNo() { return JobNo; } public v_JB_FinishedGoodsQuery setJobNo(String value) { this.JobNo = value; return this; } public String getJobNoStartsWith() { return JobNoStartsWith; } public v_JB_FinishedGoodsQuery setJobNoStartsWith(String value) { this.JobNoStartsWith = value; return this; } public String getJobNoEndsWith() { return JobNoEndsWith; } public v_JB_FinishedGoodsQuery setJobNoEndsWith(String value) { this.JobNoEndsWith = value; return this; } public String getJobNoContains() { return JobNoContains; } public v_JB_FinishedGoodsQuery setJobNoContains(String value) { this.JobNoContains = value; return this; } public String getJobNoLike() { return JobNoLike; } public v_JB_FinishedGoodsQuery setJobNoLike(String value) { this.JobNoLike = value; return this; } public ArrayList getJobNoBetween() { return JobNoBetween; } public v_JB_FinishedGoodsQuery setJobNoBetween(ArrayList value) { this.JobNoBetween = value; return this; } public ArrayList getJobNoIn() { return JobNoIn; } public v_JB_FinishedGoodsQuery setJobNoIn(ArrayList value) { this.JobNoIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class v_JB_GoodProducedTotalsToDateQuery extends QueryDb implements IReturn> { public BigDecimal Charge = null; public BigDecimal ChargeGreaterThanOrEqualTo = null; public BigDecimal ChargeGreaterThan = null; public BigDecimal ChargeLessThan = null; public BigDecimal ChargeLessThanOrEqualTo = null; public BigDecimal ChargeNotEqualTo = null; public ArrayList ChargeBetween = null; public ArrayList ChargeIn = null; public BigDecimal Cost = null; public BigDecimal CostGreaterThanOrEqualTo = null; public BigDecimal CostGreaterThan = null; public BigDecimal CostLessThan = null; public BigDecimal CostLessThanOrEqualTo = null; public BigDecimal CostNotEqualTo = null; public ArrayList CostBetween = null; public ArrayList CostIn = null; public String JobID = null; public String JobIDStartsWith = null; public String JobIDEndsWith = null; public String JobIDContains = null; public String JobIDLike = null; public ArrayList JobIDBetween = null; public ArrayList JobIDIn = null; public BigDecimal getCharge() { return Charge; } public v_JB_GoodProducedTotalsToDateQuery setCharge(BigDecimal value) { this.Charge = value; return this; } public BigDecimal getChargeGreaterThanOrEqualTo() { return ChargeGreaterThanOrEqualTo; } public v_JB_GoodProducedTotalsToDateQuery setChargeGreaterThanOrEqualTo(BigDecimal value) { this.ChargeGreaterThanOrEqualTo = value; return this; } public BigDecimal getChargeGreaterThan() { return ChargeGreaterThan; } public v_JB_GoodProducedTotalsToDateQuery setChargeGreaterThan(BigDecimal value) { this.ChargeGreaterThan = value; return this; } public BigDecimal getChargeLessThan() { return ChargeLessThan; } public v_JB_GoodProducedTotalsToDateQuery setChargeLessThan(BigDecimal value) { this.ChargeLessThan = value; return this; } public BigDecimal getChargeLessThanOrEqualTo() { return ChargeLessThanOrEqualTo; } public v_JB_GoodProducedTotalsToDateQuery setChargeLessThanOrEqualTo(BigDecimal value) { this.ChargeLessThanOrEqualTo = value; return this; } public BigDecimal getChargeNotEqualTo() { return ChargeNotEqualTo; } public v_JB_GoodProducedTotalsToDateQuery setChargeNotEqualTo(BigDecimal value) { this.ChargeNotEqualTo = value; return this; } public ArrayList getChargeBetween() { return ChargeBetween; } public v_JB_GoodProducedTotalsToDateQuery setChargeBetween(ArrayList value) { this.ChargeBetween = value; return this; } public ArrayList getChargeIn() { return ChargeIn; } public v_JB_GoodProducedTotalsToDateQuery setChargeIn(ArrayList value) { this.ChargeIn = value; return this; } public BigDecimal getCost() { return Cost; } public v_JB_GoodProducedTotalsToDateQuery setCost(BigDecimal value) { this.Cost = value; return this; } public BigDecimal getCostGreaterThanOrEqualTo() { return CostGreaterThanOrEqualTo; } public v_JB_GoodProducedTotalsToDateQuery setCostGreaterThanOrEqualTo(BigDecimal value) { this.CostGreaterThanOrEqualTo = value; return this; } public BigDecimal getCostGreaterThan() { return CostGreaterThan; } public v_JB_GoodProducedTotalsToDateQuery setCostGreaterThan(BigDecimal value) { this.CostGreaterThan = value; return this; } public BigDecimal getCostLessThan() { return CostLessThan; } public v_JB_GoodProducedTotalsToDateQuery setCostLessThan(BigDecimal value) { this.CostLessThan = value; return this; } public BigDecimal getCostLessThanOrEqualTo() { return CostLessThanOrEqualTo; } public v_JB_GoodProducedTotalsToDateQuery setCostLessThanOrEqualTo(BigDecimal value) { this.CostLessThanOrEqualTo = value; return this; } public BigDecimal getCostNotEqualTo() { return CostNotEqualTo; } public v_JB_GoodProducedTotalsToDateQuery setCostNotEqualTo(BigDecimal value) { this.CostNotEqualTo = value; return this; } public ArrayList getCostBetween() { return CostBetween; } public v_JB_GoodProducedTotalsToDateQuery setCostBetween(ArrayList value) { this.CostBetween = value; return this; } public ArrayList getCostIn() { return CostIn; } public v_JB_GoodProducedTotalsToDateQuery setCostIn(ArrayList value) { this.CostIn = value; return this; } public String getJobID() { return JobID; } public v_JB_GoodProducedTotalsToDateQuery setJobID(String value) { this.JobID = value; return this; } public String getJobIDStartsWith() { return JobIDStartsWith; } public v_JB_GoodProducedTotalsToDateQuery setJobIDStartsWith(String value) { this.JobIDStartsWith = value; return this; } public String getJobIDEndsWith() { return JobIDEndsWith; } public v_JB_GoodProducedTotalsToDateQuery setJobIDEndsWith(String value) { this.JobIDEndsWith = value; return this; } public String getJobIDContains() { return JobIDContains; } public v_JB_GoodProducedTotalsToDateQuery setJobIDContains(String value) { this.JobIDContains = value; return this; } public String getJobIDLike() { return JobIDLike; } public v_JB_GoodProducedTotalsToDateQuery setJobIDLike(String value) { this.JobIDLike = value; return this; } public ArrayList getJobIDBetween() { return JobIDBetween; } public v_JB_GoodProducedTotalsToDateQuery setJobIDBetween(ArrayList value) { this.JobIDBetween = value; return this; } public ArrayList getJobIDIn() { return JobIDIn; } public v_JB_GoodProducedTotalsToDateQuery setJobIDIn(ArrayList value) { this.JobIDIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class v_JB_GoodsReceivedQuery extends QueryDb implements IReturn> { public String SourceType = null; public String SourceTypeStartsWith = null; public String SourceTypeEndsWith = null; public String SourceTypeContains = null; public String SourceTypeLike = null; public ArrayList SourceTypeBetween = null; public ArrayList SourceTypeIn = null; public String BatchNo = null; public String BatchNoStartsWith = null; public String BatchNoEndsWith = null; public String BatchNoContains = null; public String BatchNoLike = null; public ArrayList BatchNoBetween = null; public ArrayList BatchNoIn = null; public String JobCostStage = null; public String JobCostStageStartsWith = null; public String JobCostStageEndsWith = null; public String JobCostStageContains = null; public String JobCostStageLike = null; public ArrayList JobCostStageBetween = null; public ArrayList JobCostStageIn = null; public String Item = null; public String ItemStartsWith = null; public String ItemEndsWith = null; public String ItemContains = null; public String ItemLike = null; public ArrayList ItemBetween = null; public ArrayList ItemIn = null; public String Description = null; public String DescriptionStartsWith = null; public String DescriptionEndsWith = null; public String DescriptionContains = null; public String DescriptionLike = null; public ArrayList DescriptionBetween = null; public ArrayList DescriptionIn = null; public Date TranDate = null; public Date TranDateGreaterThanOrEqualTo = null; public Date TranDateGreaterThan = null; public Date TranDateLessThan = null; public Date TranDateLessThanOrEqualTo = null; public Date TranDateNotEqualTo = null; public ArrayList TranDateBetween = null; public ArrayList TranDateIn = null; public BigDecimal Qty = null; public BigDecimal QtyGreaterThanOrEqualTo = null; public BigDecimal QtyGreaterThan = null; public BigDecimal QtyLessThan = null; public BigDecimal QtyLessThanOrEqualTo = null; public BigDecimal QtyNotEqualTo = null; public ArrayList QtyBetween = null; public ArrayList QtyIn = null; public BigDecimal TotalCost = null; public BigDecimal TotalCostGreaterThanOrEqualTo = null; public BigDecimal TotalCostGreaterThan = null; public BigDecimal TotalCostLessThan = null; public BigDecimal TotalCostLessThanOrEqualTo = null; public BigDecimal TotalCostNotEqualTo = null; public ArrayList TotalCostBetween = null; public ArrayList TotalCostIn = null; public BigDecimal TotalCharge = null; public BigDecimal TotalChargeGreaterThanOrEqualTo = null; public BigDecimal TotalChargeGreaterThan = null; public BigDecimal TotalChargeLessThan = null; public BigDecimal TotalChargeLessThanOrEqualTo = null; public BigDecimal TotalChargeNotEqualTo = null; public ArrayList TotalChargeBetween = null; public ArrayList TotalChargeIn = null; public String Remark = null; public String RemarkStartsWith = null; public String RemarkEndsWith = null; public String RemarkContains = null; public String RemarkLike = null; public ArrayList RemarkBetween = null; public ArrayList RemarkIn = null; public String JobNo = null; public String JobNoStartsWith = null; public String JobNoEndsWith = null; public String JobNoContains = null; public String JobNoLike = null; public ArrayList JobNoBetween = null; public ArrayList JobNoIn = null; public String getSourceType() { return SourceType; } public v_JB_GoodsReceivedQuery setSourceType(String value) { this.SourceType = value; return this; } public String getSourceTypeStartsWith() { return SourceTypeStartsWith; } public v_JB_GoodsReceivedQuery setSourceTypeStartsWith(String value) { this.SourceTypeStartsWith = value; return this; } public String getSourceTypeEndsWith() { return SourceTypeEndsWith; } public v_JB_GoodsReceivedQuery setSourceTypeEndsWith(String value) { this.SourceTypeEndsWith = value; return this; } public String getSourceTypeContains() { return SourceTypeContains; } public v_JB_GoodsReceivedQuery setSourceTypeContains(String value) { this.SourceTypeContains = value; return this; } public String getSourceTypeLike() { return SourceTypeLike; } public v_JB_GoodsReceivedQuery setSourceTypeLike(String value) { this.SourceTypeLike = value; return this; } public ArrayList getSourceTypeBetween() { return SourceTypeBetween; } public v_JB_GoodsReceivedQuery setSourceTypeBetween(ArrayList value) { this.SourceTypeBetween = value; return this; } public ArrayList getSourceTypeIn() { return SourceTypeIn; } public v_JB_GoodsReceivedQuery setSourceTypeIn(ArrayList value) { this.SourceTypeIn = value; return this; } public String getBatchNo() { return BatchNo; } public v_JB_GoodsReceivedQuery setBatchNo(String value) { this.BatchNo = value; return this; } public String getBatchNoStartsWith() { return BatchNoStartsWith; } public v_JB_GoodsReceivedQuery setBatchNoStartsWith(String value) { this.BatchNoStartsWith = value; return this; } public String getBatchNoEndsWith() { return BatchNoEndsWith; } public v_JB_GoodsReceivedQuery setBatchNoEndsWith(String value) { this.BatchNoEndsWith = value; return this; } public String getBatchNoContains() { return BatchNoContains; } public v_JB_GoodsReceivedQuery setBatchNoContains(String value) { this.BatchNoContains = value; return this; } public String getBatchNoLike() { return BatchNoLike; } public v_JB_GoodsReceivedQuery setBatchNoLike(String value) { this.BatchNoLike = value; return this; } public ArrayList getBatchNoBetween() { return BatchNoBetween; } public v_JB_GoodsReceivedQuery setBatchNoBetween(ArrayList value) { this.BatchNoBetween = value; return this; } public ArrayList getBatchNoIn() { return BatchNoIn; } public v_JB_GoodsReceivedQuery setBatchNoIn(ArrayList value) { this.BatchNoIn = value; return this; } public String getJobCostStage() { return JobCostStage; } public v_JB_GoodsReceivedQuery setJobCostStage(String value) { this.JobCostStage = value; return this; } public String getJobCostStageStartsWith() { return JobCostStageStartsWith; } public v_JB_GoodsReceivedQuery setJobCostStageStartsWith(String value) { this.JobCostStageStartsWith = value; return this; } public String getJobCostStageEndsWith() { return JobCostStageEndsWith; } public v_JB_GoodsReceivedQuery setJobCostStageEndsWith(String value) { this.JobCostStageEndsWith = value; return this; } public String getJobCostStageContains() { return JobCostStageContains; } public v_JB_GoodsReceivedQuery setJobCostStageContains(String value) { this.JobCostStageContains = value; return this; } public String getJobCostStageLike() { return JobCostStageLike; } public v_JB_GoodsReceivedQuery setJobCostStageLike(String value) { this.JobCostStageLike = value; return this; } public ArrayList getJobCostStageBetween() { return JobCostStageBetween; } public v_JB_GoodsReceivedQuery setJobCostStageBetween(ArrayList value) { this.JobCostStageBetween = value; return this; } public ArrayList getJobCostStageIn() { return JobCostStageIn; } public v_JB_GoodsReceivedQuery setJobCostStageIn(ArrayList value) { this.JobCostStageIn = value; return this; } public String getItem() { return Item; } public v_JB_GoodsReceivedQuery setItem(String value) { this.Item = value; return this; } public String getItemStartsWith() { return ItemStartsWith; } public v_JB_GoodsReceivedQuery setItemStartsWith(String value) { this.ItemStartsWith = value; return this; } public String getItemEndsWith() { return ItemEndsWith; } public v_JB_GoodsReceivedQuery setItemEndsWith(String value) { this.ItemEndsWith = value; return this; } public String getItemContains() { return ItemContains; } public v_JB_GoodsReceivedQuery setItemContains(String value) { this.ItemContains = value; return this; } public String getItemLike() { return ItemLike; } public v_JB_GoodsReceivedQuery setItemLike(String value) { this.ItemLike = value; return this; } public ArrayList getItemBetween() { return ItemBetween; } public v_JB_GoodsReceivedQuery setItemBetween(ArrayList value) { this.ItemBetween = value; return this; } public ArrayList getItemIn() { return ItemIn; } public v_JB_GoodsReceivedQuery setItemIn(ArrayList value) { this.ItemIn = value; return this; } public String getDescription() { return Description; } public v_JB_GoodsReceivedQuery setDescription(String value) { this.Description = value; return this; } public String getDescriptionStartsWith() { return DescriptionStartsWith; } public v_JB_GoodsReceivedQuery setDescriptionStartsWith(String value) { this.DescriptionStartsWith = value; return this; } public String getDescriptionEndsWith() { return DescriptionEndsWith; } public v_JB_GoodsReceivedQuery setDescriptionEndsWith(String value) { this.DescriptionEndsWith = value; return this; } public String getDescriptionContains() { return DescriptionContains; } public v_JB_GoodsReceivedQuery setDescriptionContains(String value) { this.DescriptionContains = value; return this; } public String getDescriptionLike() { return DescriptionLike; } public v_JB_GoodsReceivedQuery setDescriptionLike(String value) { this.DescriptionLike = value; return this; } public ArrayList getDescriptionBetween() { return DescriptionBetween; } public v_JB_GoodsReceivedQuery setDescriptionBetween(ArrayList value) { this.DescriptionBetween = value; return this; } public ArrayList getDescriptionIn() { return DescriptionIn; } public v_JB_GoodsReceivedQuery setDescriptionIn(ArrayList value) { this.DescriptionIn = value; return this; } public Date getTranDate() { return TranDate; } public v_JB_GoodsReceivedQuery setTranDate(Date value) { this.TranDate = value; return this; } public Date getTranDateGreaterThanOrEqualTo() { return TranDateGreaterThanOrEqualTo; } public v_JB_GoodsReceivedQuery setTranDateGreaterThanOrEqualTo(Date value) { this.TranDateGreaterThanOrEqualTo = value; return this; } public Date getTranDateGreaterThan() { return TranDateGreaterThan; } public v_JB_GoodsReceivedQuery setTranDateGreaterThan(Date value) { this.TranDateGreaterThan = value; return this; } public Date getTranDateLessThan() { return TranDateLessThan; } public v_JB_GoodsReceivedQuery setTranDateLessThan(Date value) { this.TranDateLessThan = value; return this; } public Date getTranDateLessThanOrEqualTo() { return TranDateLessThanOrEqualTo; } public v_JB_GoodsReceivedQuery setTranDateLessThanOrEqualTo(Date value) { this.TranDateLessThanOrEqualTo = value; return this; } public Date getTranDateNotEqualTo() { return TranDateNotEqualTo; } public v_JB_GoodsReceivedQuery setTranDateNotEqualTo(Date value) { this.TranDateNotEqualTo = value; return this; } public ArrayList getTranDateBetween() { return TranDateBetween; } public v_JB_GoodsReceivedQuery setTranDateBetween(ArrayList value) { this.TranDateBetween = value; return this; } public ArrayList getTranDateIn() { return TranDateIn; } public v_JB_GoodsReceivedQuery setTranDateIn(ArrayList value) { this.TranDateIn = value; return this; } public BigDecimal getQty() { return Qty; } public v_JB_GoodsReceivedQuery setQty(BigDecimal value) { this.Qty = value; return this; } public BigDecimal getQtyGreaterThanOrEqualTo() { return QtyGreaterThanOrEqualTo; } public v_JB_GoodsReceivedQuery setQtyGreaterThanOrEqualTo(BigDecimal value) { this.QtyGreaterThanOrEqualTo = value; return this; } public BigDecimal getQtyGreaterThan() { return QtyGreaterThan; } public v_JB_GoodsReceivedQuery setQtyGreaterThan(BigDecimal value) { this.QtyGreaterThan = value; return this; } public BigDecimal getQtyLessThan() { return QtyLessThan; } public v_JB_GoodsReceivedQuery setQtyLessThan(BigDecimal value) { this.QtyLessThan = value; return this; } public BigDecimal getQtyLessThanOrEqualTo() { return QtyLessThanOrEqualTo; } public v_JB_GoodsReceivedQuery setQtyLessThanOrEqualTo(BigDecimal value) { this.QtyLessThanOrEqualTo = value; return this; } public BigDecimal getQtyNotEqualTo() { return QtyNotEqualTo; } public v_JB_GoodsReceivedQuery setQtyNotEqualTo(BigDecimal value) { this.QtyNotEqualTo = value; return this; } public ArrayList getQtyBetween() { return QtyBetween; } public v_JB_GoodsReceivedQuery setQtyBetween(ArrayList value) { this.QtyBetween = value; return this; } public ArrayList getQtyIn() { return QtyIn; } public v_JB_GoodsReceivedQuery setQtyIn(ArrayList value) { this.QtyIn = value; return this; } public BigDecimal getTotalCost() { return TotalCost; } public v_JB_GoodsReceivedQuery setTotalCost(BigDecimal value) { this.TotalCost = value; return this; } public BigDecimal getTotalCostGreaterThanOrEqualTo() { return TotalCostGreaterThanOrEqualTo; } public v_JB_GoodsReceivedQuery setTotalCostGreaterThanOrEqualTo(BigDecimal value) { this.TotalCostGreaterThanOrEqualTo = value; return this; } public BigDecimal getTotalCostGreaterThan() { return TotalCostGreaterThan; } public v_JB_GoodsReceivedQuery setTotalCostGreaterThan(BigDecimal value) { this.TotalCostGreaterThan = value; return this; } public BigDecimal getTotalCostLessThan() { return TotalCostLessThan; } public v_JB_GoodsReceivedQuery setTotalCostLessThan(BigDecimal value) { this.TotalCostLessThan = value; return this; } public BigDecimal getTotalCostLessThanOrEqualTo() { return TotalCostLessThanOrEqualTo; } public v_JB_GoodsReceivedQuery setTotalCostLessThanOrEqualTo(BigDecimal value) { this.TotalCostLessThanOrEqualTo = value; return this; } public BigDecimal getTotalCostNotEqualTo() { return TotalCostNotEqualTo; } public v_JB_GoodsReceivedQuery setTotalCostNotEqualTo(BigDecimal value) { this.TotalCostNotEqualTo = value; return this; } public ArrayList getTotalCostBetween() { return TotalCostBetween; } public v_JB_GoodsReceivedQuery setTotalCostBetween(ArrayList value) { this.TotalCostBetween = value; return this; } public ArrayList getTotalCostIn() { return TotalCostIn; } public v_JB_GoodsReceivedQuery setTotalCostIn(ArrayList value) { this.TotalCostIn = value; return this; } public BigDecimal getTotalCharge() { return TotalCharge; } public v_JB_GoodsReceivedQuery setTotalCharge(BigDecimal value) { this.TotalCharge = value; return this; } public BigDecimal getTotalChargeGreaterThanOrEqualTo() { return TotalChargeGreaterThanOrEqualTo; } public v_JB_GoodsReceivedQuery setTotalChargeGreaterThanOrEqualTo(BigDecimal value) { this.TotalChargeGreaterThanOrEqualTo = value; return this; } public BigDecimal getTotalChargeGreaterThan() { return TotalChargeGreaterThan; } public v_JB_GoodsReceivedQuery setTotalChargeGreaterThan(BigDecimal value) { this.TotalChargeGreaterThan = value; return this; } public BigDecimal getTotalChargeLessThan() { return TotalChargeLessThan; } public v_JB_GoodsReceivedQuery setTotalChargeLessThan(BigDecimal value) { this.TotalChargeLessThan = value; return this; } public BigDecimal getTotalChargeLessThanOrEqualTo() { return TotalChargeLessThanOrEqualTo; } public v_JB_GoodsReceivedQuery setTotalChargeLessThanOrEqualTo(BigDecimal value) { this.TotalChargeLessThanOrEqualTo = value; return this; } public BigDecimal getTotalChargeNotEqualTo() { return TotalChargeNotEqualTo; } public v_JB_GoodsReceivedQuery setTotalChargeNotEqualTo(BigDecimal value) { this.TotalChargeNotEqualTo = value; return this; } public ArrayList getTotalChargeBetween() { return TotalChargeBetween; } public v_JB_GoodsReceivedQuery setTotalChargeBetween(ArrayList value) { this.TotalChargeBetween = value; return this; } public ArrayList getTotalChargeIn() { return TotalChargeIn; } public v_JB_GoodsReceivedQuery setTotalChargeIn(ArrayList value) { this.TotalChargeIn = value; return this; } public String getRemark() { return Remark; } public v_JB_GoodsReceivedQuery setRemark(String value) { this.Remark = value; return this; } public String getRemarkStartsWith() { return RemarkStartsWith; } public v_JB_GoodsReceivedQuery setRemarkStartsWith(String value) { this.RemarkStartsWith = value; return this; } public String getRemarkEndsWith() { return RemarkEndsWith; } public v_JB_GoodsReceivedQuery setRemarkEndsWith(String value) { this.RemarkEndsWith = value; return this; } public String getRemarkContains() { return RemarkContains; } public v_JB_GoodsReceivedQuery setRemarkContains(String value) { this.RemarkContains = value; return this; } public String getRemarkLike() { return RemarkLike; } public v_JB_GoodsReceivedQuery setRemarkLike(String value) { this.RemarkLike = value; return this; } public ArrayList getRemarkBetween() { return RemarkBetween; } public v_JB_GoodsReceivedQuery setRemarkBetween(ArrayList value) { this.RemarkBetween = value; return this; } public ArrayList getRemarkIn() { return RemarkIn; } public v_JB_GoodsReceivedQuery setRemarkIn(ArrayList value) { this.RemarkIn = value; return this; } public String getJobNo() { return JobNo; } public v_JB_GoodsReceivedQuery setJobNo(String value) { this.JobNo = value; return this; } public String getJobNoStartsWith() { return JobNoStartsWith; } public v_JB_GoodsReceivedQuery setJobNoStartsWith(String value) { this.JobNoStartsWith = value; return this; } public String getJobNoEndsWith() { return JobNoEndsWith; } public v_JB_GoodsReceivedQuery setJobNoEndsWith(String value) { this.JobNoEndsWith = value; return this; } public String getJobNoContains() { return JobNoContains; } public v_JB_GoodsReceivedQuery setJobNoContains(String value) { this.JobNoContains = value; return this; } public String getJobNoLike() { return JobNoLike; } public v_JB_GoodsReceivedQuery setJobNoLike(String value) { this.JobNoLike = value; return this; } public ArrayList getJobNoBetween() { return JobNoBetween; } public v_JB_GoodsReceivedQuery setJobNoBetween(ArrayList value) { this.JobNoBetween = value; return this; } public ArrayList getJobNoIn() { return JobNoIn; } public v_JB_GoodsReceivedQuery setJobNoIn(ArrayList value) { this.JobNoIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class v_JB_GoodsReceivedTotalsToDateQuery extends QueryDb implements IReturn> { public BigDecimal Charge = null; public BigDecimal ChargeGreaterThanOrEqualTo = null; public BigDecimal ChargeGreaterThan = null; public BigDecimal ChargeLessThan = null; public BigDecimal ChargeLessThanOrEqualTo = null; public BigDecimal ChargeNotEqualTo = null; public ArrayList ChargeBetween = null; public ArrayList ChargeIn = null; public BigDecimal Cost = null; public BigDecimal CostGreaterThanOrEqualTo = null; public BigDecimal CostGreaterThan = null; public BigDecimal CostLessThan = null; public BigDecimal CostLessThanOrEqualTo = null; public BigDecimal CostNotEqualTo = null; public ArrayList CostBetween = null; public ArrayList CostIn = null; public String JobID = null; public String JobIDStartsWith = null; public String JobIDEndsWith = null; public String JobIDContains = null; public String JobIDLike = null; public ArrayList JobIDBetween = null; public ArrayList JobIDIn = null; public BigDecimal getCharge() { return Charge; } public v_JB_GoodsReceivedTotalsToDateQuery setCharge(BigDecimal value) { this.Charge = value; return this; } public BigDecimal getChargeGreaterThanOrEqualTo() { return ChargeGreaterThanOrEqualTo; } public v_JB_GoodsReceivedTotalsToDateQuery setChargeGreaterThanOrEqualTo(BigDecimal value) { this.ChargeGreaterThanOrEqualTo = value; return this; } public BigDecimal getChargeGreaterThan() { return ChargeGreaterThan; } public v_JB_GoodsReceivedTotalsToDateQuery setChargeGreaterThan(BigDecimal value) { this.ChargeGreaterThan = value; return this; } public BigDecimal getChargeLessThan() { return ChargeLessThan; } public v_JB_GoodsReceivedTotalsToDateQuery setChargeLessThan(BigDecimal value) { this.ChargeLessThan = value; return this; } public BigDecimal getChargeLessThanOrEqualTo() { return ChargeLessThanOrEqualTo; } public v_JB_GoodsReceivedTotalsToDateQuery setChargeLessThanOrEqualTo(BigDecimal value) { this.ChargeLessThanOrEqualTo = value; return this; } public BigDecimal getChargeNotEqualTo() { return ChargeNotEqualTo; } public v_JB_GoodsReceivedTotalsToDateQuery setChargeNotEqualTo(BigDecimal value) { this.ChargeNotEqualTo = value; return this; } public ArrayList getChargeBetween() { return ChargeBetween; } public v_JB_GoodsReceivedTotalsToDateQuery setChargeBetween(ArrayList value) { this.ChargeBetween = value; return this; } public ArrayList getChargeIn() { return ChargeIn; } public v_JB_GoodsReceivedTotalsToDateQuery setChargeIn(ArrayList value) { this.ChargeIn = value; return this; } public BigDecimal getCost() { return Cost; } public v_JB_GoodsReceivedTotalsToDateQuery setCost(BigDecimal value) { this.Cost = value; return this; } public BigDecimal getCostGreaterThanOrEqualTo() { return CostGreaterThanOrEqualTo; } public v_JB_GoodsReceivedTotalsToDateQuery setCostGreaterThanOrEqualTo(BigDecimal value) { this.CostGreaterThanOrEqualTo = value; return this; } public BigDecimal getCostGreaterThan() { return CostGreaterThan; } public v_JB_GoodsReceivedTotalsToDateQuery setCostGreaterThan(BigDecimal value) { this.CostGreaterThan = value; return this; } public BigDecimal getCostLessThan() { return CostLessThan; } public v_JB_GoodsReceivedTotalsToDateQuery setCostLessThan(BigDecimal value) { this.CostLessThan = value; return this; } public BigDecimal getCostLessThanOrEqualTo() { return CostLessThanOrEqualTo; } public v_JB_GoodsReceivedTotalsToDateQuery setCostLessThanOrEqualTo(BigDecimal value) { this.CostLessThanOrEqualTo = value; return this; } public BigDecimal getCostNotEqualTo() { return CostNotEqualTo; } public v_JB_GoodsReceivedTotalsToDateQuery setCostNotEqualTo(BigDecimal value) { this.CostNotEqualTo = value; return this; } public ArrayList getCostBetween() { return CostBetween; } public v_JB_GoodsReceivedTotalsToDateQuery setCostBetween(ArrayList value) { this.CostBetween = value; return this; } public ArrayList getCostIn() { return CostIn; } public v_JB_GoodsReceivedTotalsToDateQuery setCostIn(ArrayList value) { this.CostIn = value; return this; } public String getJobID() { return JobID; } public v_JB_GoodsReceivedTotalsToDateQuery setJobID(String value) { this.JobID = value; return this; } public String getJobIDStartsWith() { return JobIDStartsWith; } public v_JB_GoodsReceivedTotalsToDateQuery setJobIDStartsWith(String value) { this.JobIDStartsWith = value; return this; } public String getJobIDEndsWith() { return JobIDEndsWith; } public v_JB_GoodsReceivedTotalsToDateQuery setJobIDEndsWith(String value) { this.JobIDEndsWith = value; return this; } public String getJobIDContains() { return JobIDContains; } public v_JB_GoodsReceivedTotalsToDateQuery setJobIDContains(String value) { this.JobIDContains = value; return this; } public String getJobIDLike() { return JobIDLike; } public v_JB_GoodsReceivedTotalsToDateQuery setJobIDLike(String value) { this.JobIDLike = value; return this; } public ArrayList getJobIDBetween() { return JobIDBetween; } public v_JB_GoodsReceivedTotalsToDateQuery setJobIDBetween(ArrayList value) { this.JobIDBetween = value; return this; } public ArrayList getJobIDIn() { return JobIDIn; } public v_JB_GoodsReceivedTotalsToDateQuery setJobIDIn(ArrayList value) { this.JobIDIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class v_JB_GoodsWrittenOnOffTotalsToDateQuery extends QueryDb implements IReturn> { public BigDecimal Charge = null; public BigDecimal ChargeGreaterThanOrEqualTo = null; public BigDecimal ChargeGreaterThan = null; public BigDecimal ChargeLessThan = null; public BigDecimal ChargeLessThanOrEqualTo = null; public BigDecimal ChargeNotEqualTo = null; public ArrayList ChargeBetween = null; public ArrayList ChargeIn = null; public BigDecimal Cost = null; public BigDecimal CostGreaterThanOrEqualTo = null; public BigDecimal CostGreaterThan = null; public BigDecimal CostLessThan = null; public BigDecimal CostLessThanOrEqualTo = null; public BigDecimal CostNotEqualTo = null; public ArrayList CostBetween = null; public ArrayList CostIn = null; public String JobID = null; public String JobIDStartsWith = null; public String JobIDEndsWith = null; public String JobIDContains = null; public String JobIDLike = null; public ArrayList JobIDBetween = null; public ArrayList JobIDIn = null; public BigDecimal getCharge() { return Charge; } public v_JB_GoodsWrittenOnOffTotalsToDateQuery setCharge(BigDecimal value) { this.Charge = value; return this; } public BigDecimal getChargeGreaterThanOrEqualTo() { return ChargeGreaterThanOrEqualTo; } public v_JB_GoodsWrittenOnOffTotalsToDateQuery setChargeGreaterThanOrEqualTo(BigDecimal value) { this.ChargeGreaterThanOrEqualTo = value; return this; } public BigDecimal getChargeGreaterThan() { return ChargeGreaterThan; } public v_JB_GoodsWrittenOnOffTotalsToDateQuery setChargeGreaterThan(BigDecimal value) { this.ChargeGreaterThan = value; return this; } public BigDecimal getChargeLessThan() { return ChargeLessThan; } public v_JB_GoodsWrittenOnOffTotalsToDateQuery setChargeLessThan(BigDecimal value) { this.ChargeLessThan = value; return this; } public BigDecimal getChargeLessThanOrEqualTo() { return ChargeLessThanOrEqualTo; } public v_JB_GoodsWrittenOnOffTotalsToDateQuery setChargeLessThanOrEqualTo(BigDecimal value) { this.ChargeLessThanOrEqualTo = value; return this; } public BigDecimal getChargeNotEqualTo() { return ChargeNotEqualTo; } public v_JB_GoodsWrittenOnOffTotalsToDateQuery setChargeNotEqualTo(BigDecimal value) { this.ChargeNotEqualTo = value; return this; } public ArrayList getChargeBetween() { return ChargeBetween; } public v_JB_GoodsWrittenOnOffTotalsToDateQuery setChargeBetween(ArrayList value) { this.ChargeBetween = value; return this; } public ArrayList getChargeIn() { return ChargeIn; } public v_JB_GoodsWrittenOnOffTotalsToDateQuery setChargeIn(ArrayList value) { this.ChargeIn = value; return this; } public BigDecimal getCost() { return Cost; } public v_JB_GoodsWrittenOnOffTotalsToDateQuery setCost(BigDecimal value) { this.Cost = value; return this; } public BigDecimal getCostGreaterThanOrEqualTo() { return CostGreaterThanOrEqualTo; } public v_JB_GoodsWrittenOnOffTotalsToDateQuery setCostGreaterThanOrEqualTo(BigDecimal value) { this.CostGreaterThanOrEqualTo = value; return this; } public BigDecimal getCostGreaterThan() { return CostGreaterThan; } public v_JB_GoodsWrittenOnOffTotalsToDateQuery setCostGreaterThan(BigDecimal value) { this.CostGreaterThan = value; return this; } public BigDecimal getCostLessThan() { return CostLessThan; } public v_JB_GoodsWrittenOnOffTotalsToDateQuery setCostLessThan(BigDecimal value) { this.CostLessThan = value; return this; } public BigDecimal getCostLessThanOrEqualTo() { return CostLessThanOrEqualTo; } public v_JB_GoodsWrittenOnOffTotalsToDateQuery setCostLessThanOrEqualTo(BigDecimal value) { this.CostLessThanOrEqualTo = value; return this; } public BigDecimal getCostNotEqualTo() { return CostNotEqualTo; } public v_JB_GoodsWrittenOnOffTotalsToDateQuery setCostNotEqualTo(BigDecimal value) { this.CostNotEqualTo = value; return this; } public ArrayList getCostBetween() { return CostBetween; } public v_JB_GoodsWrittenOnOffTotalsToDateQuery setCostBetween(ArrayList value) { this.CostBetween = value; return this; } public ArrayList getCostIn() { return CostIn; } public v_JB_GoodsWrittenOnOffTotalsToDateQuery setCostIn(ArrayList value) { this.CostIn = value; return this; } public String getJobID() { return JobID; } public v_JB_GoodsWrittenOnOffTotalsToDateQuery setJobID(String value) { this.JobID = value; return this; } public String getJobIDStartsWith() { return JobIDStartsWith; } public v_JB_GoodsWrittenOnOffTotalsToDateQuery setJobIDStartsWith(String value) { this.JobIDStartsWith = value; return this; } public String getJobIDEndsWith() { return JobIDEndsWith; } public v_JB_GoodsWrittenOnOffTotalsToDateQuery setJobIDEndsWith(String value) { this.JobIDEndsWith = value; return this; } public String getJobIDContains() { return JobIDContains; } public v_JB_GoodsWrittenOnOffTotalsToDateQuery setJobIDContains(String value) { this.JobIDContains = value; return this; } public String getJobIDLike() { return JobIDLike; } public v_JB_GoodsWrittenOnOffTotalsToDateQuery setJobIDLike(String value) { this.JobIDLike = value; return this; } public ArrayList getJobIDBetween() { return JobIDBetween; } public v_JB_GoodsWrittenOnOffTotalsToDateQuery setJobIDBetween(ArrayList value) { this.JobIDBetween = value; return this; } public ArrayList getJobIDIn() { return JobIDIn; } public v_JB_GoodsWrittenOnOffTotalsToDateQuery setJobIDIn(ArrayList value) { this.JobIDIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class v_JB_InvoicedToDateQuery extends QueryDb implements IReturn> { public BigDecimal InvoicedAmount = null; public BigDecimal InvoicedAmountGreaterThanOrEqualTo = null; public BigDecimal InvoicedAmountGreaterThan = null; public BigDecimal InvoicedAmountLessThan = null; public BigDecimal InvoicedAmountLessThanOrEqualTo = null; public BigDecimal InvoicedAmountNotEqualTo = null; public ArrayList InvoicedAmountBetween = null; public ArrayList InvoicedAmountIn = null; public BigDecimal InvoicedCost = null; public BigDecimal InvoicedCostGreaterThanOrEqualTo = null; public BigDecimal InvoicedCostGreaterThan = null; public BigDecimal InvoicedCostLessThan = null; public BigDecimal InvoicedCostLessThanOrEqualTo = null; public BigDecimal InvoicedCostNotEqualTo = null; public ArrayList InvoicedCostBetween = null; public ArrayList InvoicedCostIn = null; public String JobID = null; public String JobIDStartsWith = null; public String JobIDEndsWith = null; public String JobIDContains = null; public String JobIDLike = null; public ArrayList JobIDBetween = null; public ArrayList JobIDIn = null; public BigDecimal getInvoicedAmount() { return InvoicedAmount; } public v_JB_InvoicedToDateQuery setInvoicedAmount(BigDecimal value) { this.InvoicedAmount = value; return this; } public BigDecimal getInvoicedAmountGreaterThanOrEqualTo() { return InvoicedAmountGreaterThanOrEqualTo; } public v_JB_InvoicedToDateQuery setInvoicedAmountGreaterThanOrEqualTo(BigDecimal value) { this.InvoicedAmountGreaterThanOrEqualTo = value; return this; } public BigDecimal getInvoicedAmountGreaterThan() { return InvoicedAmountGreaterThan; } public v_JB_InvoicedToDateQuery setInvoicedAmountGreaterThan(BigDecimal value) { this.InvoicedAmountGreaterThan = value; return this; } public BigDecimal getInvoicedAmountLessThan() { return InvoicedAmountLessThan; } public v_JB_InvoicedToDateQuery setInvoicedAmountLessThan(BigDecimal value) { this.InvoicedAmountLessThan = value; return this; } public BigDecimal getInvoicedAmountLessThanOrEqualTo() { return InvoicedAmountLessThanOrEqualTo; } public v_JB_InvoicedToDateQuery setInvoicedAmountLessThanOrEqualTo(BigDecimal value) { this.InvoicedAmountLessThanOrEqualTo = value; return this; } public BigDecimal getInvoicedAmountNotEqualTo() { return InvoicedAmountNotEqualTo; } public v_JB_InvoicedToDateQuery setInvoicedAmountNotEqualTo(BigDecimal value) { this.InvoicedAmountNotEqualTo = value; return this; } public ArrayList getInvoicedAmountBetween() { return InvoicedAmountBetween; } public v_JB_InvoicedToDateQuery setInvoicedAmountBetween(ArrayList value) { this.InvoicedAmountBetween = value; return this; } public ArrayList getInvoicedAmountIn() { return InvoicedAmountIn; } public v_JB_InvoicedToDateQuery setInvoicedAmountIn(ArrayList value) { this.InvoicedAmountIn = value; return this; } public BigDecimal getInvoicedCost() { return InvoicedCost; } public v_JB_InvoicedToDateQuery setInvoicedCost(BigDecimal value) { this.InvoicedCost = value; return this; } public BigDecimal getInvoicedCostGreaterThanOrEqualTo() { return InvoicedCostGreaterThanOrEqualTo; } public v_JB_InvoicedToDateQuery setInvoicedCostGreaterThanOrEqualTo(BigDecimal value) { this.InvoicedCostGreaterThanOrEqualTo = value; return this; } public BigDecimal getInvoicedCostGreaterThan() { return InvoicedCostGreaterThan; } public v_JB_InvoicedToDateQuery setInvoicedCostGreaterThan(BigDecimal value) { this.InvoicedCostGreaterThan = value; return this; } public BigDecimal getInvoicedCostLessThan() { return InvoicedCostLessThan; } public v_JB_InvoicedToDateQuery setInvoicedCostLessThan(BigDecimal value) { this.InvoicedCostLessThan = value; return this; } public BigDecimal getInvoicedCostLessThanOrEqualTo() { return InvoicedCostLessThanOrEqualTo; } public v_JB_InvoicedToDateQuery setInvoicedCostLessThanOrEqualTo(BigDecimal value) { this.InvoicedCostLessThanOrEqualTo = value; return this; } public BigDecimal getInvoicedCostNotEqualTo() { return InvoicedCostNotEqualTo; } public v_JB_InvoicedToDateQuery setInvoicedCostNotEqualTo(BigDecimal value) { this.InvoicedCostNotEqualTo = value; return this; } public ArrayList getInvoicedCostBetween() { return InvoicedCostBetween; } public v_JB_InvoicedToDateQuery setInvoicedCostBetween(ArrayList value) { this.InvoicedCostBetween = value; return this; } public ArrayList getInvoicedCostIn() { return InvoicedCostIn; } public v_JB_InvoicedToDateQuery setInvoicedCostIn(ArrayList value) { this.InvoicedCostIn = value; return this; } public String getJobID() { return JobID; } public v_JB_InvoicedToDateQuery setJobID(String value) { this.JobID = value; return this; } public String getJobIDStartsWith() { return JobIDStartsWith; } public v_JB_InvoicedToDateQuery setJobIDStartsWith(String value) { this.JobIDStartsWith = value; return this; } public String getJobIDEndsWith() { return JobIDEndsWith; } public v_JB_InvoicedToDateQuery setJobIDEndsWith(String value) { this.JobIDEndsWith = value; return this; } public String getJobIDContains() { return JobIDContains; } public v_JB_InvoicedToDateQuery setJobIDContains(String value) { this.JobIDContains = value; return this; } public String getJobIDLike() { return JobIDLike; } public v_JB_InvoicedToDateQuery setJobIDLike(String value) { this.JobIDLike = value; return this; } public ArrayList getJobIDBetween() { return JobIDBetween; } public v_JB_InvoicedToDateQuery setJobIDBetween(ArrayList value) { this.JobIDBetween = value; return this; } public ArrayList getJobIDIn() { return JobIDIn; } public v_JB_InvoicedToDateQuery setJobIDIn(ArrayList value) { this.JobIDIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class v_JB_InvoicesQuery extends QueryDb implements IReturn> { public String SourceType = null; public String SourceTypeStartsWith = null; public String SourceTypeEndsWith = null; public String SourceTypeContains = null; public String SourceTypeLike = null; public ArrayList SourceTypeBetween = null; public ArrayList SourceTypeIn = null; public String BatchNo = null; public String BatchNoStartsWith = null; public String BatchNoEndsWith = null; public String BatchNoContains = null; public String BatchNoLike = null; public ArrayList BatchNoBetween = null; public ArrayList BatchNoIn = null; public String JobCostStage = null; public String JobCostStageStartsWith = null; public String JobCostStageEndsWith = null; public String JobCostStageContains = null; public String JobCostStageLike = null; public ArrayList JobCostStageBetween = null; public ArrayList JobCostStageIn = null; public String Item = null; public String ItemStartsWith = null; public String ItemEndsWith = null; public String ItemContains = null; public String ItemLike = null; public ArrayList ItemBetween = null; public ArrayList ItemIn = null; public String Description = null; public String DescriptionStartsWith = null; public String DescriptionEndsWith = null; public String DescriptionContains = null; public String DescriptionLike = null; public ArrayList DescriptionBetween = null; public ArrayList DescriptionIn = null; public Date TranDate = null; public Date TranDateGreaterThanOrEqualTo = null; public Date TranDateGreaterThan = null; public Date TranDateLessThan = null; public Date TranDateLessThanOrEqualTo = null; public Date TranDateNotEqualTo = null; public ArrayList TranDateBetween = null; public ArrayList TranDateIn = null; public String Qty = null; public String QtyStartsWith = null; public String QtyEndsWith = null; public String QtyContains = null; public String QtyLike = null; public ArrayList QtyBetween = null; public ArrayList QtyIn = null; public BigDecimal TotalCost = null; public BigDecimal TotalCostGreaterThanOrEqualTo = null; public BigDecimal TotalCostGreaterThan = null; public BigDecimal TotalCostLessThan = null; public BigDecimal TotalCostLessThanOrEqualTo = null; public BigDecimal TotalCostNotEqualTo = null; public ArrayList TotalCostBetween = null; public ArrayList TotalCostIn = null; public BigDecimal TotalCharge = null; public BigDecimal TotalChargeGreaterThanOrEqualTo = null; public BigDecimal TotalChargeGreaterThan = null; public BigDecimal TotalChargeLessThan = null; public BigDecimal TotalChargeLessThanOrEqualTo = null; public BigDecimal TotalChargeNotEqualTo = null; public ArrayList TotalChargeBetween = null; public ArrayList TotalChargeIn = null; public String Remark = null; public String RemarkStartsWith = null; public String RemarkEndsWith = null; public String RemarkContains = null; public String RemarkLike = null; public ArrayList RemarkBetween = null; public ArrayList RemarkIn = null; public String JobNo = null; public String JobNoStartsWith = null; public String JobNoEndsWith = null; public String JobNoContains = null; public String JobNoLike = null; public ArrayList JobNoBetween = null; public ArrayList JobNoIn = null; public String getSourceType() { return SourceType; } public v_JB_InvoicesQuery setSourceType(String value) { this.SourceType = value; return this; } public String getSourceTypeStartsWith() { return SourceTypeStartsWith; } public v_JB_InvoicesQuery setSourceTypeStartsWith(String value) { this.SourceTypeStartsWith = value; return this; } public String getSourceTypeEndsWith() { return SourceTypeEndsWith; } public v_JB_InvoicesQuery setSourceTypeEndsWith(String value) { this.SourceTypeEndsWith = value; return this; } public String getSourceTypeContains() { return SourceTypeContains; } public v_JB_InvoicesQuery setSourceTypeContains(String value) { this.SourceTypeContains = value; return this; } public String getSourceTypeLike() { return SourceTypeLike; } public v_JB_InvoicesQuery setSourceTypeLike(String value) { this.SourceTypeLike = value; return this; } public ArrayList getSourceTypeBetween() { return SourceTypeBetween; } public v_JB_InvoicesQuery setSourceTypeBetween(ArrayList value) { this.SourceTypeBetween = value; return this; } public ArrayList getSourceTypeIn() { return SourceTypeIn; } public v_JB_InvoicesQuery setSourceTypeIn(ArrayList value) { this.SourceTypeIn = value; return this; } public String getBatchNo() { return BatchNo; } public v_JB_InvoicesQuery setBatchNo(String value) { this.BatchNo = value; return this; } public String getBatchNoStartsWith() { return BatchNoStartsWith; } public v_JB_InvoicesQuery setBatchNoStartsWith(String value) { this.BatchNoStartsWith = value; return this; } public String getBatchNoEndsWith() { return BatchNoEndsWith; } public v_JB_InvoicesQuery setBatchNoEndsWith(String value) { this.BatchNoEndsWith = value; return this; } public String getBatchNoContains() { return BatchNoContains; } public v_JB_InvoicesQuery setBatchNoContains(String value) { this.BatchNoContains = value; return this; } public String getBatchNoLike() { return BatchNoLike; } public v_JB_InvoicesQuery setBatchNoLike(String value) { this.BatchNoLike = value; return this; } public ArrayList getBatchNoBetween() { return BatchNoBetween; } public v_JB_InvoicesQuery setBatchNoBetween(ArrayList value) { this.BatchNoBetween = value; return this; } public ArrayList getBatchNoIn() { return BatchNoIn; } public v_JB_InvoicesQuery setBatchNoIn(ArrayList value) { this.BatchNoIn = value; return this; } public String getJobCostStage() { return JobCostStage; } public v_JB_InvoicesQuery setJobCostStage(String value) { this.JobCostStage = value; return this; } public String getJobCostStageStartsWith() { return JobCostStageStartsWith; } public v_JB_InvoicesQuery setJobCostStageStartsWith(String value) { this.JobCostStageStartsWith = value; return this; } public String getJobCostStageEndsWith() { return JobCostStageEndsWith; } public v_JB_InvoicesQuery setJobCostStageEndsWith(String value) { this.JobCostStageEndsWith = value; return this; } public String getJobCostStageContains() { return JobCostStageContains; } public v_JB_InvoicesQuery setJobCostStageContains(String value) { this.JobCostStageContains = value; return this; } public String getJobCostStageLike() { return JobCostStageLike; } public v_JB_InvoicesQuery setJobCostStageLike(String value) { this.JobCostStageLike = value; return this; } public ArrayList getJobCostStageBetween() { return JobCostStageBetween; } public v_JB_InvoicesQuery setJobCostStageBetween(ArrayList value) { this.JobCostStageBetween = value; return this; } public ArrayList getJobCostStageIn() { return JobCostStageIn; } public v_JB_InvoicesQuery setJobCostStageIn(ArrayList value) { this.JobCostStageIn = value; return this; } public String getItem() { return Item; } public v_JB_InvoicesQuery setItem(String value) { this.Item = value; return this; } public String getItemStartsWith() { return ItemStartsWith; } public v_JB_InvoicesQuery setItemStartsWith(String value) { this.ItemStartsWith = value; return this; } public String getItemEndsWith() { return ItemEndsWith; } public v_JB_InvoicesQuery setItemEndsWith(String value) { this.ItemEndsWith = value; return this; } public String getItemContains() { return ItemContains; } public v_JB_InvoicesQuery setItemContains(String value) { this.ItemContains = value; return this; } public String getItemLike() { return ItemLike; } public v_JB_InvoicesQuery setItemLike(String value) { this.ItemLike = value; return this; } public ArrayList getItemBetween() { return ItemBetween; } public v_JB_InvoicesQuery setItemBetween(ArrayList value) { this.ItemBetween = value; return this; } public ArrayList getItemIn() { return ItemIn; } public v_JB_InvoicesQuery setItemIn(ArrayList value) { this.ItemIn = value; return this; } public String getDescription() { return Description; } public v_JB_InvoicesQuery setDescription(String value) { this.Description = value; return this; } public String getDescriptionStartsWith() { return DescriptionStartsWith; } public v_JB_InvoicesQuery setDescriptionStartsWith(String value) { this.DescriptionStartsWith = value; return this; } public String getDescriptionEndsWith() { return DescriptionEndsWith; } public v_JB_InvoicesQuery setDescriptionEndsWith(String value) { this.DescriptionEndsWith = value; return this; } public String getDescriptionContains() { return DescriptionContains; } public v_JB_InvoicesQuery setDescriptionContains(String value) { this.DescriptionContains = value; return this; } public String getDescriptionLike() { return DescriptionLike; } public v_JB_InvoicesQuery setDescriptionLike(String value) { this.DescriptionLike = value; return this; } public ArrayList getDescriptionBetween() { return DescriptionBetween; } public v_JB_InvoicesQuery setDescriptionBetween(ArrayList value) { this.DescriptionBetween = value; return this; } public ArrayList getDescriptionIn() { return DescriptionIn; } public v_JB_InvoicesQuery setDescriptionIn(ArrayList value) { this.DescriptionIn = value; return this; } public Date getTranDate() { return TranDate; } public v_JB_InvoicesQuery setTranDate(Date value) { this.TranDate = value; return this; } public Date getTranDateGreaterThanOrEqualTo() { return TranDateGreaterThanOrEqualTo; } public v_JB_InvoicesQuery setTranDateGreaterThanOrEqualTo(Date value) { this.TranDateGreaterThanOrEqualTo = value; return this; } public Date getTranDateGreaterThan() { return TranDateGreaterThan; } public v_JB_InvoicesQuery setTranDateGreaterThan(Date value) { this.TranDateGreaterThan = value; return this; } public Date getTranDateLessThan() { return TranDateLessThan; } public v_JB_InvoicesQuery setTranDateLessThan(Date value) { this.TranDateLessThan = value; return this; } public Date getTranDateLessThanOrEqualTo() { return TranDateLessThanOrEqualTo; } public v_JB_InvoicesQuery setTranDateLessThanOrEqualTo(Date value) { this.TranDateLessThanOrEqualTo = value; return this; } public Date getTranDateNotEqualTo() { return TranDateNotEqualTo; } public v_JB_InvoicesQuery setTranDateNotEqualTo(Date value) { this.TranDateNotEqualTo = value; return this; } public ArrayList getTranDateBetween() { return TranDateBetween; } public v_JB_InvoicesQuery setTranDateBetween(ArrayList value) { this.TranDateBetween = value; return this; } public ArrayList getTranDateIn() { return TranDateIn; } public v_JB_InvoicesQuery setTranDateIn(ArrayList value) { this.TranDateIn = value; return this; } public String getQty() { return Qty; } public v_JB_InvoicesQuery setQty(String value) { this.Qty = value; return this; } public String getQtyStartsWith() { return QtyStartsWith; } public v_JB_InvoicesQuery setQtyStartsWith(String value) { this.QtyStartsWith = value; return this; } public String getQtyEndsWith() { return QtyEndsWith; } public v_JB_InvoicesQuery setQtyEndsWith(String value) { this.QtyEndsWith = value; return this; } public String getQtyContains() { return QtyContains; } public v_JB_InvoicesQuery setQtyContains(String value) { this.QtyContains = value; return this; } public String getQtyLike() { return QtyLike; } public v_JB_InvoicesQuery setQtyLike(String value) { this.QtyLike = value; return this; } public ArrayList getQtyBetween() { return QtyBetween; } public v_JB_InvoicesQuery setQtyBetween(ArrayList value) { this.QtyBetween = value; return this; } public ArrayList getQtyIn() { return QtyIn; } public v_JB_InvoicesQuery setQtyIn(ArrayList value) { this.QtyIn = value; return this; } public BigDecimal getTotalCost() { return TotalCost; } public v_JB_InvoicesQuery setTotalCost(BigDecimal value) { this.TotalCost = value; return this; } public BigDecimal getTotalCostGreaterThanOrEqualTo() { return TotalCostGreaterThanOrEqualTo; } public v_JB_InvoicesQuery setTotalCostGreaterThanOrEqualTo(BigDecimal value) { this.TotalCostGreaterThanOrEqualTo = value; return this; } public BigDecimal getTotalCostGreaterThan() { return TotalCostGreaterThan; } public v_JB_InvoicesQuery setTotalCostGreaterThan(BigDecimal value) { this.TotalCostGreaterThan = value; return this; } public BigDecimal getTotalCostLessThan() { return TotalCostLessThan; } public v_JB_InvoicesQuery setTotalCostLessThan(BigDecimal value) { this.TotalCostLessThan = value; return this; } public BigDecimal getTotalCostLessThanOrEqualTo() { return TotalCostLessThanOrEqualTo; } public v_JB_InvoicesQuery setTotalCostLessThanOrEqualTo(BigDecimal value) { this.TotalCostLessThanOrEqualTo = value; return this; } public BigDecimal getTotalCostNotEqualTo() { return TotalCostNotEqualTo; } public v_JB_InvoicesQuery setTotalCostNotEqualTo(BigDecimal value) { this.TotalCostNotEqualTo = value; return this; } public ArrayList getTotalCostBetween() { return TotalCostBetween; } public v_JB_InvoicesQuery setTotalCostBetween(ArrayList value) { this.TotalCostBetween = value; return this; } public ArrayList getTotalCostIn() { return TotalCostIn; } public v_JB_InvoicesQuery setTotalCostIn(ArrayList value) { this.TotalCostIn = value; return this; } public BigDecimal getTotalCharge() { return TotalCharge; } public v_JB_InvoicesQuery setTotalCharge(BigDecimal value) { this.TotalCharge = value; return this; } public BigDecimal getTotalChargeGreaterThanOrEqualTo() { return TotalChargeGreaterThanOrEqualTo; } public v_JB_InvoicesQuery setTotalChargeGreaterThanOrEqualTo(BigDecimal value) { this.TotalChargeGreaterThanOrEqualTo = value; return this; } public BigDecimal getTotalChargeGreaterThan() { return TotalChargeGreaterThan; } public v_JB_InvoicesQuery setTotalChargeGreaterThan(BigDecimal value) { this.TotalChargeGreaterThan = value; return this; } public BigDecimal getTotalChargeLessThan() { return TotalChargeLessThan; } public v_JB_InvoicesQuery setTotalChargeLessThan(BigDecimal value) { this.TotalChargeLessThan = value; return this; } public BigDecimal getTotalChargeLessThanOrEqualTo() { return TotalChargeLessThanOrEqualTo; } public v_JB_InvoicesQuery setTotalChargeLessThanOrEqualTo(BigDecimal value) { this.TotalChargeLessThanOrEqualTo = value; return this; } public BigDecimal getTotalChargeNotEqualTo() { return TotalChargeNotEqualTo; } public v_JB_InvoicesQuery setTotalChargeNotEqualTo(BigDecimal value) { this.TotalChargeNotEqualTo = value; return this; } public ArrayList getTotalChargeBetween() { return TotalChargeBetween; } public v_JB_InvoicesQuery setTotalChargeBetween(ArrayList value) { this.TotalChargeBetween = value; return this; } public ArrayList getTotalChargeIn() { return TotalChargeIn; } public v_JB_InvoicesQuery setTotalChargeIn(ArrayList value) { this.TotalChargeIn = value; return this; } public String getRemark() { return Remark; } public v_JB_InvoicesQuery setRemark(String value) { this.Remark = value; return this; } public String getRemarkStartsWith() { return RemarkStartsWith; } public v_JB_InvoicesQuery setRemarkStartsWith(String value) { this.RemarkStartsWith = value; return this; } public String getRemarkEndsWith() { return RemarkEndsWith; } public v_JB_InvoicesQuery setRemarkEndsWith(String value) { this.RemarkEndsWith = value; return this; } public String getRemarkContains() { return RemarkContains; } public v_JB_InvoicesQuery setRemarkContains(String value) { this.RemarkContains = value; return this; } public String getRemarkLike() { return RemarkLike; } public v_JB_InvoicesQuery setRemarkLike(String value) { this.RemarkLike = value; return this; } public ArrayList getRemarkBetween() { return RemarkBetween; } public v_JB_InvoicesQuery setRemarkBetween(ArrayList value) { this.RemarkBetween = value; return this; } public ArrayList getRemarkIn() { return RemarkIn; } public v_JB_InvoicesQuery setRemarkIn(ArrayList value) { this.RemarkIn = value; return this; } public String getJobNo() { return JobNo; } public v_JB_InvoicesQuery setJobNo(String value) { this.JobNo = value; return this; } public String getJobNoStartsWith() { return JobNoStartsWith; } public v_JB_InvoicesQuery setJobNoStartsWith(String value) { this.JobNoStartsWith = value; return this; } public String getJobNoEndsWith() { return JobNoEndsWith; } public v_JB_InvoicesQuery setJobNoEndsWith(String value) { this.JobNoEndsWith = value; return this; } public String getJobNoContains() { return JobNoContains; } public v_JB_InvoicesQuery setJobNoContains(String value) { this.JobNoContains = value; return this; } public String getJobNoLike() { return JobNoLike; } public v_JB_InvoicesQuery setJobNoLike(String value) { this.JobNoLike = value; return this; } public ArrayList getJobNoBetween() { return JobNoBetween; } public v_JB_InvoicesQuery setJobNoBetween(ArrayList value) { this.JobNoBetween = value; return this; } public ArrayList getJobNoIn() { return JobNoIn; } public v_JB_InvoicesQuery setJobNoIn(ArrayList value) { this.JobNoIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class v_JB_InvoiceWrittenOnOffTotalsToDateQuery extends QueryDb implements IReturn> { public BigDecimal Charge = null; public BigDecimal ChargeGreaterThanOrEqualTo = null; public BigDecimal ChargeGreaterThan = null; public BigDecimal ChargeLessThan = null; public BigDecimal ChargeLessThanOrEqualTo = null; public BigDecimal ChargeNotEqualTo = null; public ArrayList ChargeBetween = null; public ArrayList ChargeIn = null; public BigDecimal Cost = null; public BigDecimal CostGreaterThanOrEqualTo = null; public BigDecimal CostGreaterThan = null; public BigDecimal CostLessThan = null; public BigDecimal CostLessThanOrEqualTo = null; public BigDecimal CostNotEqualTo = null; public ArrayList CostBetween = null; public ArrayList CostIn = null; public String JobID = null; public String JobIDStartsWith = null; public String JobIDEndsWith = null; public String JobIDContains = null; public String JobIDLike = null; public ArrayList JobIDBetween = null; public ArrayList JobIDIn = null; public BigDecimal getCharge() { return Charge; } public v_JB_InvoiceWrittenOnOffTotalsToDateQuery setCharge(BigDecimal value) { this.Charge = value; return this; } public BigDecimal getChargeGreaterThanOrEqualTo() { return ChargeGreaterThanOrEqualTo; } public v_JB_InvoiceWrittenOnOffTotalsToDateQuery setChargeGreaterThanOrEqualTo(BigDecimal value) { this.ChargeGreaterThanOrEqualTo = value; return this; } public BigDecimal getChargeGreaterThan() { return ChargeGreaterThan; } public v_JB_InvoiceWrittenOnOffTotalsToDateQuery setChargeGreaterThan(BigDecimal value) { this.ChargeGreaterThan = value; return this; } public BigDecimal getChargeLessThan() { return ChargeLessThan; } public v_JB_InvoiceWrittenOnOffTotalsToDateQuery setChargeLessThan(BigDecimal value) { this.ChargeLessThan = value; return this; } public BigDecimal getChargeLessThanOrEqualTo() { return ChargeLessThanOrEqualTo; } public v_JB_InvoiceWrittenOnOffTotalsToDateQuery setChargeLessThanOrEqualTo(BigDecimal value) { this.ChargeLessThanOrEqualTo = value; return this; } public BigDecimal getChargeNotEqualTo() { return ChargeNotEqualTo; } public v_JB_InvoiceWrittenOnOffTotalsToDateQuery setChargeNotEqualTo(BigDecimal value) { this.ChargeNotEqualTo = value; return this; } public ArrayList getChargeBetween() { return ChargeBetween; } public v_JB_InvoiceWrittenOnOffTotalsToDateQuery setChargeBetween(ArrayList value) { this.ChargeBetween = value; return this; } public ArrayList getChargeIn() { return ChargeIn; } public v_JB_InvoiceWrittenOnOffTotalsToDateQuery setChargeIn(ArrayList value) { this.ChargeIn = value; return this; } public BigDecimal getCost() { return Cost; } public v_JB_InvoiceWrittenOnOffTotalsToDateQuery setCost(BigDecimal value) { this.Cost = value; return this; } public BigDecimal getCostGreaterThanOrEqualTo() { return CostGreaterThanOrEqualTo; } public v_JB_InvoiceWrittenOnOffTotalsToDateQuery setCostGreaterThanOrEqualTo(BigDecimal value) { this.CostGreaterThanOrEqualTo = value; return this; } public BigDecimal getCostGreaterThan() { return CostGreaterThan; } public v_JB_InvoiceWrittenOnOffTotalsToDateQuery setCostGreaterThan(BigDecimal value) { this.CostGreaterThan = value; return this; } public BigDecimal getCostLessThan() { return CostLessThan; } public v_JB_InvoiceWrittenOnOffTotalsToDateQuery setCostLessThan(BigDecimal value) { this.CostLessThan = value; return this; } public BigDecimal getCostLessThanOrEqualTo() { return CostLessThanOrEqualTo; } public v_JB_InvoiceWrittenOnOffTotalsToDateQuery setCostLessThanOrEqualTo(BigDecimal value) { this.CostLessThanOrEqualTo = value; return this; } public BigDecimal getCostNotEqualTo() { return CostNotEqualTo; } public v_JB_InvoiceWrittenOnOffTotalsToDateQuery setCostNotEqualTo(BigDecimal value) { this.CostNotEqualTo = value; return this; } public ArrayList getCostBetween() { return CostBetween; } public v_JB_InvoiceWrittenOnOffTotalsToDateQuery setCostBetween(ArrayList value) { this.CostBetween = value; return this; } public ArrayList getCostIn() { return CostIn; } public v_JB_InvoiceWrittenOnOffTotalsToDateQuery setCostIn(ArrayList value) { this.CostIn = value; return this; } public String getJobID() { return JobID; } public v_JB_InvoiceWrittenOnOffTotalsToDateQuery setJobID(String value) { this.JobID = value; return this; } public String getJobIDStartsWith() { return JobIDStartsWith; } public v_JB_InvoiceWrittenOnOffTotalsToDateQuery setJobIDStartsWith(String value) { this.JobIDStartsWith = value; return this; } public String getJobIDEndsWith() { return JobIDEndsWith; } public v_JB_InvoiceWrittenOnOffTotalsToDateQuery setJobIDEndsWith(String value) { this.JobIDEndsWith = value; return this; } public String getJobIDContains() { return JobIDContains; } public v_JB_InvoiceWrittenOnOffTotalsToDateQuery setJobIDContains(String value) { this.JobIDContains = value; return this; } public String getJobIDLike() { return JobIDLike; } public v_JB_InvoiceWrittenOnOffTotalsToDateQuery setJobIDLike(String value) { this.JobIDLike = value; return this; } public ArrayList getJobIDBetween() { return JobIDBetween; } public v_JB_InvoiceWrittenOnOffTotalsToDateQuery setJobIDBetween(ArrayList value) { this.JobIDBetween = value; return this; } public ArrayList getJobIDIn() { return JobIDIn; } public v_JB_InvoiceWrittenOnOffTotalsToDateQuery setJobIDIn(ArrayList value) { this.JobIDIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class V_JB_JobCodeSearchQuery extends QueryDb implements IReturn> { public String JobID = null; public String JobIDStartsWith = null; public String JobIDEndsWith = null; public String JobIDContains = null; public String JobIDLike = null; public ArrayList JobIDBetween = null; public ArrayList JobIDIn = null; public String JobNo = null; public String JobNoStartsWith = null; public String JobNoEndsWith = null; public String JobNoContains = null; public String JobNoLike = null; public ArrayList JobNoBetween = null; public ArrayList JobNoIn = null; public String JobDescription = null; public String JobDescriptionStartsWith = null; public String JobDescriptionEndsWith = null; public String JobDescriptionContains = null; public String JobDescriptionLike = null; public ArrayList JobDescriptionBetween = null; public ArrayList JobDescriptionIn = null; public String CostCentreID = null; public String CostCentreIDStartsWith = null; public String CostCentreIDEndsWith = null; public String CostCentreIDContains = null; public String CostCentreIDLike = null; public ArrayList CostCentreIDBetween = null; public ArrayList CostCentreIDIn = null; public String CostCentreNo = null; public String CostCentreNoStartsWith = null; public String CostCentreNoEndsWith = null; public String CostCentreNoContains = null; public String CostCentreNoLike = null; public ArrayList CostCentreNoBetween = null; public ArrayList CostCentreNoIn = null; public String CostCentreDesc = null; public String CostCentreDescStartsWith = null; public String CostCentreDescEndsWith = null; public String CostCentreDescContains = null; public String CostCentreDescLike = null; public ArrayList CostCentreDescBetween = null; public ArrayList CostCentreDescIn = null; public String StageID = null; public String StageIDStartsWith = null; public String StageIDEndsWith = null; public String StageIDContains = null; public String StageIDLike = null; public ArrayList StageIDBetween = null; public ArrayList StageIDIn = null; public String StageNo = null; public String StageNoStartsWith = null; public String StageNoEndsWith = null; public String StageNoContains = null; public String StageNoLike = null; public ArrayList StageNoBetween = null; public ArrayList StageNoIn = null; public String StageDesc = null; public String StageDescStartsWith = null; public String StageDescEndsWith = null; public String StageDescContains = null; public String StageDescLike = null; public ArrayList StageDescBetween = null; public ArrayList StageDescIn = null; public String getJobID() { return JobID; } public V_JB_JobCodeSearchQuery setJobID(String value) { this.JobID = value; return this; } public String getJobIDStartsWith() { return JobIDStartsWith; } public V_JB_JobCodeSearchQuery setJobIDStartsWith(String value) { this.JobIDStartsWith = value; return this; } public String getJobIDEndsWith() { return JobIDEndsWith; } public V_JB_JobCodeSearchQuery setJobIDEndsWith(String value) { this.JobIDEndsWith = value; return this; } public String getJobIDContains() { return JobIDContains; } public V_JB_JobCodeSearchQuery setJobIDContains(String value) { this.JobIDContains = value; return this; } public String getJobIDLike() { return JobIDLike; } public V_JB_JobCodeSearchQuery setJobIDLike(String value) { this.JobIDLike = value; return this; } public ArrayList getJobIDBetween() { return JobIDBetween; } public V_JB_JobCodeSearchQuery setJobIDBetween(ArrayList value) { this.JobIDBetween = value; return this; } public ArrayList getJobIDIn() { return JobIDIn; } public V_JB_JobCodeSearchQuery setJobIDIn(ArrayList value) { this.JobIDIn = value; return this; } public String getJobNo() { return JobNo; } public V_JB_JobCodeSearchQuery setJobNo(String value) { this.JobNo = value; return this; } public String getJobNoStartsWith() { return JobNoStartsWith; } public V_JB_JobCodeSearchQuery setJobNoStartsWith(String value) { this.JobNoStartsWith = value; return this; } public String getJobNoEndsWith() { return JobNoEndsWith; } public V_JB_JobCodeSearchQuery setJobNoEndsWith(String value) { this.JobNoEndsWith = value; return this; } public String getJobNoContains() { return JobNoContains; } public V_JB_JobCodeSearchQuery setJobNoContains(String value) { this.JobNoContains = value; return this; } public String getJobNoLike() { return JobNoLike; } public V_JB_JobCodeSearchQuery setJobNoLike(String value) { this.JobNoLike = value; return this; } public ArrayList getJobNoBetween() { return JobNoBetween; } public V_JB_JobCodeSearchQuery setJobNoBetween(ArrayList value) { this.JobNoBetween = value; return this; } public ArrayList getJobNoIn() { return JobNoIn; } public V_JB_JobCodeSearchQuery setJobNoIn(ArrayList value) { this.JobNoIn = value; return this; } public String getJobDescription() { return JobDescription; } public V_JB_JobCodeSearchQuery setJobDescription(String value) { this.JobDescription = value; return this; } public String getJobDescriptionStartsWith() { return JobDescriptionStartsWith; } public V_JB_JobCodeSearchQuery setJobDescriptionStartsWith(String value) { this.JobDescriptionStartsWith = value; return this; } public String getJobDescriptionEndsWith() { return JobDescriptionEndsWith; } public V_JB_JobCodeSearchQuery setJobDescriptionEndsWith(String value) { this.JobDescriptionEndsWith = value; return this; } public String getJobDescriptionContains() { return JobDescriptionContains; } public V_JB_JobCodeSearchQuery setJobDescriptionContains(String value) { this.JobDescriptionContains = value; return this; } public String getJobDescriptionLike() { return JobDescriptionLike; } public V_JB_JobCodeSearchQuery setJobDescriptionLike(String value) { this.JobDescriptionLike = value; return this; } public ArrayList getJobDescriptionBetween() { return JobDescriptionBetween; } public V_JB_JobCodeSearchQuery setJobDescriptionBetween(ArrayList value) { this.JobDescriptionBetween = value; return this; } public ArrayList getJobDescriptionIn() { return JobDescriptionIn; } public V_JB_JobCodeSearchQuery setJobDescriptionIn(ArrayList value) { this.JobDescriptionIn = value; return this; } public String getCostCentreID() { return CostCentreID; } public V_JB_JobCodeSearchQuery setCostCentreID(String value) { this.CostCentreID = value; return this; } public String getCostCentreIDStartsWith() { return CostCentreIDStartsWith; } public V_JB_JobCodeSearchQuery setCostCentreIDStartsWith(String value) { this.CostCentreIDStartsWith = value; return this; } public String getCostCentreIDEndsWith() { return CostCentreIDEndsWith; } public V_JB_JobCodeSearchQuery setCostCentreIDEndsWith(String value) { this.CostCentreIDEndsWith = value; return this; } public String getCostCentreIDContains() { return CostCentreIDContains; } public V_JB_JobCodeSearchQuery setCostCentreIDContains(String value) { this.CostCentreIDContains = value; return this; } public String getCostCentreIDLike() { return CostCentreIDLike; } public V_JB_JobCodeSearchQuery setCostCentreIDLike(String value) { this.CostCentreIDLike = value; return this; } public ArrayList getCostCentreIDBetween() { return CostCentreIDBetween; } public V_JB_JobCodeSearchQuery setCostCentreIDBetween(ArrayList value) { this.CostCentreIDBetween = value; return this; } public ArrayList getCostCentreIDIn() { return CostCentreIDIn; } public V_JB_JobCodeSearchQuery setCostCentreIDIn(ArrayList value) { this.CostCentreIDIn = value; return this; } public String getCostCentreNo() { return CostCentreNo; } public V_JB_JobCodeSearchQuery setCostCentreNo(String value) { this.CostCentreNo = value; return this; } public String getCostCentreNoStartsWith() { return CostCentreNoStartsWith; } public V_JB_JobCodeSearchQuery setCostCentreNoStartsWith(String value) { this.CostCentreNoStartsWith = value; return this; } public String getCostCentreNoEndsWith() { return CostCentreNoEndsWith; } public V_JB_JobCodeSearchQuery setCostCentreNoEndsWith(String value) { this.CostCentreNoEndsWith = value; return this; } public String getCostCentreNoContains() { return CostCentreNoContains; } public V_JB_JobCodeSearchQuery setCostCentreNoContains(String value) { this.CostCentreNoContains = value; return this; } public String getCostCentreNoLike() { return CostCentreNoLike; } public V_JB_JobCodeSearchQuery setCostCentreNoLike(String value) { this.CostCentreNoLike = value; return this; } public ArrayList getCostCentreNoBetween() { return CostCentreNoBetween; } public V_JB_JobCodeSearchQuery setCostCentreNoBetween(ArrayList value) { this.CostCentreNoBetween = value; return this; } public ArrayList getCostCentreNoIn() { return CostCentreNoIn; } public V_JB_JobCodeSearchQuery setCostCentreNoIn(ArrayList value) { this.CostCentreNoIn = value; return this; } public String getCostCentreDesc() { return CostCentreDesc; } public V_JB_JobCodeSearchQuery setCostCentreDesc(String value) { this.CostCentreDesc = value; return this; } public String getCostCentreDescStartsWith() { return CostCentreDescStartsWith; } public V_JB_JobCodeSearchQuery setCostCentreDescStartsWith(String value) { this.CostCentreDescStartsWith = value; return this; } public String getCostCentreDescEndsWith() { return CostCentreDescEndsWith; } public V_JB_JobCodeSearchQuery setCostCentreDescEndsWith(String value) { this.CostCentreDescEndsWith = value; return this; } public String getCostCentreDescContains() { return CostCentreDescContains; } public V_JB_JobCodeSearchQuery setCostCentreDescContains(String value) { this.CostCentreDescContains = value; return this; } public String getCostCentreDescLike() { return CostCentreDescLike; } public V_JB_JobCodeSearchQuery setCostCentreDescLike(String value) { this.CostCentreDescLike = value; return this; } public ArrayList getCostCentreDescBetween() { return CostCentreDescBetween; } public V_JB_JobCodeSearchQuery setCostCentreDescBetween(ArrayList value) { this.CostCentreDescBetween = value; return this; } public ArrayList getCostCentreDescIn() { return CostCentreDescIn; } public V_JB_JobCodeSearchQuery setCostCentreDescIn(ArrayList value) { this.CostCentreDescIn = value; return this; } public String getStageID() { return StageID; } public V_JB_JobCodeSearchQuery setStageID(String value) { this.StageID = value; return this; } public String getStageIDStartsWith() { return StageIDStartsWith; } public V_JB_JobCodeSearchQuery setStageIDStartsWith(String value) { this.StageIDStartsWith = value; return this; } public String getStageIDEndsWith() { return StageIDEndsWith; } public V_JB_JobCodeSearchQuery setStageIDEndsWith(String value) { this.StageIDEndsWith = value; return this; } public String getStageIDContains() { return StageIDContains; } public V_JB_JobCodeSearchQuery setStageIDContains(String value) { this.StageIDContains = value; return this; } public String getStageIDLike() { return StageIDLike; } public V_JB_JobCodeSearchQuery setStageIDLike(String value) { this.StageIDLike = value; return this; } public ArrayList getStageIDBetween() { return StageIDBetween; } public V_JB_JobCodeSearchQuery setStageIDBetween(ArrayList value) { this.StageIDBetween = value; return this; } public ArrayList getStageIDIn() { return StageIDIn; } public V_JB_JobCodeSearchQuery setStageIDIn(ArrayList value) { this.StageIDIn = value; return this; } public String getStageNo() { return StageNo; } public V_JB_JobCodeSearchQuery setStageNo(String value) { this.StageNo = value; return this; } public String getStageNoStartsWith() { return StageNoStartsWith; } public V_JB_JobCodeSearchQuery setStageNoStartsWith(String value) { this.StageNoStartsWith = value; return this; } public String getStageNoEndsWith() { return StageNoEndsWith; } public V_JB_JobCodeSearchQuery setStageNoEndsWith(String value) { this.StageNoEndsWith = value; return this; } public String getStageNoContains() { return StageNoContains; } public V_JB_JobCodeSearchQuery setStageNoContains(String value) { this.StageNoContains = value; return this; } public String getStageNoLike() { return StageNoLike; } public V_JB_JobCodeSearchQuery setStageNoLike(String value) { this.StageNoLike = value; return this; } public ArrayList getStageNoBetween() { return StageNoBetween; } public V_JB_JobCodeSearchQuery setStageNoBetween(ArrayList value) { this.StageNoBetween = value; return this; } public ArrayList getStageNoIn() { return StageNoIn; } public V_JB_JobCodeSearchQuery setStageNoIn(ArrayList value) { this.StageNoIn = value; return this; } public String getStageDesc() { return StageDesc; } public V_JB_JobCodeSearchQuery setStageDesc(String value) { this.StageDesc = value; return this; } public String getStageDescStartsWith() { return StageDescStartsWith; } public V_JB_JobCodeSearchQuery setStageDescStartsWith(String value) { this.StageDescStartsWith = value; return this; } public String getStageDescEndsWith() { return StageDescEndsWith; } public V_JB_JobCodeSearchQuery setStageDescEndsWith(String value) { this.StageDescEndsWith = value; return this; } public String getStageDescContains() { return StageDescContains; } public V_JB_JobCodeSearchQuery setStageDescContains(String value) { this.StageDescContains = value; return this; } public String getStageDescLike() { return StageDescLike; } public V_JB_JobCodeSearchQuery setStageDescLike(String value) { this.StageDescLike = value; return this; } public ArrayList getStageDescBetween() { return StageDescBetween; } public V_JB_JobCodeSearchQuery setStageDescBetween(ArrayList value) { this.StageDescBetween = value; return this; } public ArrayList getStageDescIn() { return StageDescIn; } public V_JB_JobCodeSearchQuery setStageDescIn(ArrayList value) { this.StageDescIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class v_JB_JobsQuery extends QueryDb implements IReturn> { public String AccountNo = null; public String AccountNoStartsWith = null; public String AccountNoEndsWith = null; public String AccountNoContains = null; public String AccountNoLike = null; public ArrayList AccountNoBetween = null; public ArrayList AccountNoIn = null; public String Name = null; public String NameStartsWith = null; public String NameEndsWith = null; public String NameContains = null; public String NameLike = null; public ArrayList NameBetween = null; public ArrayList NameIn = null; public String JobNo = null; public String JobNoStartsWith = null; public String JobNoEndsWith = null; public String JobNoContains = null; public String JobNoLike = null; public ArrayList JobNoBetween = null; public ArrayList JobNoIn = null; public String Description = null; public String DescriptionStartsWith = null; public String DescriptionEndsWith = null; public String DescriptionContains = null; public String DescriptionLike = null; public ArrayList DescriptionBetween = null; public ArrayList DescriptionIn = null; public String Status = null; public String StatusStartsWith = null; public String StatusEndsWith = null; public String StatusContains = null; public String StatusLike = null; public ArrayList StatusBetween = null; public ArrayList StatusIn = null; public Date EstEndDate = null; public Date EstEndDateGreaterThanOrEqualTo = null; public Date EstEndDateGreaterThan = null; public Date EstEndDateLessThan = null; public Date EstEndDateLessThanOrEqualTo = null; public Date EstEndDateNotEqualTo = null; public ArrayList EstEndDateBetween = null; public ArrayList EstEndDateIn = null; public String JobID = null; public String JobIDStartsWith = null; public String JobIDEndsWith = null; public String JobIDContains = null; public String JobIDLike = null; public ArrayList JobIDBetween = null; public ArrayList JobIDIn = null; public BigDecimal ChargeToDate = null; public BigDecimal ChargeToDateGreaterThanOrEqualTo = null; public BigDecimal ChargeToDateGreaterThan = null; public BigDecimal ChargeToDateLessThan = null; public BigDecimal ChargeToDateLessThanOrEqualTo = null; public BigDecimal ChargeToDateNotEqualTo = null; public ArrayList ChargeToDateBetween = null; public ArrayList ChargeToDateIn = null; public BigDecimal CostToDate = null; public BigDecimal CostToDateGreaterThanOrEqualTo = null; public BigDecimal CostToDateGreaterThan = null; public BigDecimal CostToDateLessThan = null; public BigDecimal CostToDateLessThanOrEqualTo = null; public BigDecimal CostToDateNotEqualTo = null; public ArrayList CostToDateBetween = null; public ArrayList CostToDateIn = null; public Date LastInvoiceDate = null; public Date LastInvoiceDateGreaterThanOrEqualTo = null; public Date LastInvoiceDateGreaterThan = null; public Date LastInvoiceDateLessThan = null; public Date LastInvoiceDateLessThanOrEqualTo = null; public Date LastInvoiceDateNotEqualTo = null; public ArrayList LastInvoiceDateBetween = null; public ArrayList LastInvoiceDateIn = null; public BigDecimal WIPValueCost = null; public BigDecimal WIPValueCostGreaterThanOrEqualTo = null; public BigDecimal WIPValueCostGreaterThan = null; public BigDecimal WIPValueCostLessThan = null; public BigDecimal WIPValueCostLessThanOrEqualTo = null; public BigDecimal WIPValueCostNotEqualTo = null; public ArrayList WIPValueCostBetween = null; public ArrayList WIPValueCostIn = null; public BigDecimal WIPValueCharge = null; public BigDecimal WIPValueChargeGreaterThanOrEqualTo = null; public BigDecimal WIPValueChargeGreaterThan = null; public BigDecimal WIPValueChargeLessThan = null; public BigDecimal WIPValueChargeLessThanOrEqualTo = null; public BigDecimal WIPValueChargeNotEqualTo = null; public ArrayList WIPValueChargeBetween = null; public ArrayList WIPValueChargeIn = null; public BigDecimal EstimateCharge = null; public BigDecimal EstimateChargeGreaterThanOrEqualTo = null; public BigDecimal EstimateChargeGreaterThan = null; public BigDecimal EstimateChargeLessThan = null; public BigDecimal EstimateChargeLessThanOrEqualTo = null; public BigDecimal EstimateChargeNotEqualTo = null; public ArrayList EstimateChargeBetween = null; public ArrayList EstimateChargeIn = null; public BigDecimal InvoicedToDate = null; public BigDecimal InvoicedToDateGreaterThanOrEqualTo = null; public BigDecimal InvoicedToDateGreaterThan = null; public BigDecimal InvoicedToDateLessThan = null; public BigDecimal InvoicedToDateLessThanOrEqualTo = null; public BigDecimal InvoicedToDateNotEqualTo = null; public ArrayList InvoicedToDateBetween = null; public ArrayList InvoicedToDateIn = null; public BigDecimal EstimateCost = null; public BigDecimal EstimateCostGreaterThanOrEqualTo = null; public BigDecimal EstimateCostGreaterThan = null; public BigDecimal EstimateCostLessThan = null; public BigDecimal EstimateCostLessThanOrEqualTo = null; public BigDecimal EstimateCostNotEqualTo = null; public ArrayList EstimateCostBetween = null; public ArrayList EstimateCostIn = null; public BigDecimal InvoicedCostToDate = null; public BigDecimal InvoicedCostToDateGreaterThanOrEqualTo = null; public BigDecimal InvoicedCostToDateGreaterThan = null; public BigDecimal InvoicedCostToDateLessThan = null; public BigDecimal InvoicedCostToDateLessThanOrEqualTo = null; public BigDecimal InvoicedCostToDateNotEqualTo = null; public ArrayList InvoicedCostToDateBetween = null; public ArrayList InvoicedCostToDateIn = null; public BigDecimal MarginPercentage = null; public BigDecimal MarginPercentageGreaterThanOrEqualTo = null; public BigDecimal MarginPercentageGreaterThan = null; public BigDecimal MarginPercentageLessThan = null; public BigDecimal MarginPercentageLessThanOrEqualTo = null; public BigDecimal MarginPercentageNotEqualTo = null; public ArrayList MarginPercentageBetween = null; public ArrayList MarginPercentageIn = null; public BigDecimal PercentageInvoiced = null; public BigDecimal PercentageInvoicedGreaterThanOrEqualTo = null; public BigDecimal PercentageInvoicedGreaterThan = null; public BigDecimal PercentageInvoicedLessThan = null; public BigDecimal PercentageInvoicedLessThanOrEqualTo = null; public BigDecimal PercentageInvoicedNotEqualTo = null; public ArrayList PercentageInvoicedBetween = null; public ArrayList PercentageInvoicedIn = null; public String getAccountNo() { return AccountNo; } public v_JB_JobsQuery setAccountNo(String value) { this.AccountNo = value; return this; } public String getAccountNoStartsWith() { return AccountNoStartsWith; } public v_JB_JobsQuery setAccountNoStartsWith(String value) { this.AccountNoStartsWith = value; return this; } public String getAccountNoEndsWith() { return AccountNoEndsWith; } public v_JB_JobsQuery setAccountNoEndsWith(String value) { this.AccountNoEndsWith = value; return this; } public String getAccountNoContains() { return AccountNoContains; } public v_JB_JobsQuery setAccountNoContains(String value) { this.AccountNoContains = value; return this; } public String getAccountNoLike() { return AccountNoLike; } public v_JB_JobsQuery setAccountNoLike(String value) { this.AccountNoLike = value; return this; } public ArrayList getAccountNoBetween() { return AccountNoBetween; } public v_JB_JobsQuery setAccountNoBetween(ArrayList value) { this.AccountNoBetween = value; return this; } public ArrayList getAccountNoIn() { return AccountNoIn; } public v_JB_JobsQuery setAccountNoIn(ArrayList value) { this.AccountNoIn = value; return this; } public String getName() { return Name; } public v_JB_JobsQuery setName(String value) { this.Name = value; return this; } public String getNameStartsWith() { return NameStartsWith; } public v_JB_JobsQuery setNameStartsWith(String value) { this.NameStartsWith = value; return this; } public String getNameEndsWith() { return NameEndsWith; } public v_JB_JobsQuery setNameEndsWith(String value) { this.NameEndsWith = value; return this; } public String getNameContains() { return NameContains; } public v_JB_JobsQuery setNameContains(String value) { this.NameContains = value; return this; } public String getNameLike() { return NameLike; } public v_JB_JobsQuery setNameLike(String value) { this.NameLike = value; return this; } public ArrayList getNameBetween() { return NameBetween; } public v_JB_JobsQuery setNameBetween(ArrayList value) { this.NameBetween = value; return this; } public ArrayList getNameIn() { return NameIn; } public v_JB_JobsQuery setNameIn(ArrayList value) { this.NameIn = value; return this; } public String getJobNo() { return JobNo; } public v_JB_JobsQuery setJobNo(String value) { this.JobNo = value; return this; } public String getJobNoStartsWith() { return JobNoStartsWith; } public v_JB_JobsQuery setJobNoStartsWith(String value) { this.JobNoStartsWith = value; return this; } public String getJobNoEndsWith() { return JobNoEndsWith; } public v_JB_JobsQuery setJobNoEndsWith(String value) { this.JobNoEndsWith = value; return this; } public String getJobNoContains() { return JobNoContains; } public v_JB_JobsQuery setJobNoContains(String value) { this.JobNoContains = value; return this; } public String getJobNoLike() { return JobNoLike; } public v_JB_JobsQuery setJobNoLike(String value) { this.JobNoLike = value; return this; } public ArrayList getJobNoBetween() { return JobNoBetween; } public v_JB_JobsQuery setJobNoBetween(ArrayList value) { this.JobNoBetween = value; return this; } public ArrayList getJobNoIn() { return JobNoIn; } public v_JB_JobsQuery setJobNoIn(ArrayList value) { this.JobNoIn = value; return this; } public String getDescription() { return Description; } public v_JB_JobsQuery setDescription(String value) { this.Description = value; return this; } public String getDescriptionStartsWith() { return DescriptionStartsWith; } public v_JB_JobsQuery setDescriptionStartsWith(String value) { this.DescriptionStartsWith = value; return this; } public String getDescriptionEndsWith() { return DescriptionEndsWith; } public v_JB_JobsQuery setDescriptionEndsWith(String value) { this.DescriptionEndsWith = value; return this; } public String getDescriptionContains() { return DescriptionContains; } public v_JB_JobsQuery setDescriptionContains(String value) { this.DescriptionContains = value; return this; } public String getDescriptionLike() { return DescriptionLike; } public v_JB_JobsQuery setDescriptionLike(String value) { this.DescriptionLike = value; return this; } public ArrayList getDescriptionBetween() { return DescriptionBetween; } public v_JB_JobsQuery setDescriptionBetween(ArrayList value) { this.DescriptionBetween = value; return this; } public ArrayList getDescriptionIn() { return DescriptionIn; } public v_JB_JobsQuery setDescriptionIn(ArrayList value) { this.DescriptionIn = value; return this; } public String getStatus() { return Status; } public v_JB_JobsQuery setStatus(String value) { this.Status = value; return this; } public String getStatusStartsWith() { return StatusStartsWith; } public v_JB_JobsQuery setStatusStartsWith(String value) { this.StatusStartsWith = value; return this; } public String getStatusEndsWith() { return StatusEndsWith; } public v_JB_JobsQuery setStatusEndsWith(String value) { this.StatusEndsWith = value; return this; } public String getStatusContains() { return StatusContains; } public v_JB_JobsQuery setStatusContains(String value) { this.StatusContains = value; return this; } public String getStatusLike() { return StatusLike; } public v_JB_JobsQuery setStatusLike(String value) { this.StatusLike = value; return this; } public ArrayList getStatusBetween() { return StatusBetween; } public v_JB_JobsQuery setStatusBetween(ArrayList value) { this.StatusBetween = value; return this; } public ArrayList getStatusIn() { return StatusIn; } public v_JB_JobsQuery setStatusIn(ArrayList value) { this.StatusIn = value; return this; } public Date getEstEndDate() { return EstEndDate; } public v_JB_JobsQuery setEstEndDate(Date value) { this.EstEndDate = value; return this; } public Date getEstEndDateGreaterThanOrEqualTo() { return EstEndDateGreaterThanOrEqualTo; } public v_JB_JobsQuery setEstEndDateGreaterThanOrEqualTo(Date value) { this.EstEndDateGreaterThanOrEqualTo = value; return this; } public Date getEstEndDateGreaterThan() { return EstEndDateGreaterThan; } public v_JB_JobsQuery setEstEndDateGreaterThan(Date value) { this.EstEndDateGreaterThan = value; return this; } public Date getEstEndDateLessThan() { return EstEndDateLessThan; } public v_JB_JobsQuery setEstEndDateLessThan(Date value) { this.EstEndDateLessThan = value; return this; } public Date getEstEndDateLessThanOrEqualTo() { return EstEndDateLessThanOrEqualTo; } public v_JB_JobsQuery setEstEndDateLessThanOrEqualTo(Date value) { this.EstEndDateLessThanOrEqualTo = value; return this; } public Date getEstEndDateNotEqualTo() { return EstEndDateNotEqualTo; } public v_JB_JobsQuery setEstEndDateNotEqualTo(Date value) { this.EstEndDateNotEqualTo = value; return this; } public ArrayList getEstEndDateBetween() { return EstEndDateBetween; } public v_JB_JobsQuery setEstEndDateBetween(ArrayList value) { this.EstEndDateBetween = value; return this; } public ArrayList getEstEndDateIn() { return EstEndDateIn; } public v_JB_JobsQuery setEstEndDateIn(ArrayList value) { this.EstEndDateIn = value; return this; } public String getJobID() { return JobID; } public v_JB_JobsQuery setJobID(String value) { this.JobID = value; return this; } public String getJobIDStartsWith() { return JobIDStartsWith; } public v_JB_JobsQuery setJobIDStartsWith(String value) { this.JobIDStartsWith = value; return this; } public String getJobIDEndsWith() { return JobIDEndsWith; } public v_JB_JobsQuery setJobIDEndsWith(String value) { this.JobIDEndsWith = value; return this; } public String getJobIDContains() { return JobIDContains; } public v_JB_JobsQuery setJobIDContains(String value) { this.JobIDContains = value; return this; } public String getJobIDLike() { return JobIDLike; } public v_JB_JobsQuery setJobIDLike(String value) { this.JobIDLike = value; return this; } public ArrayList getJobIDBetween() { return JobIDBetween; } public v_JB_JobsQuery setJobIDBetween(ArrayList value) { this.JobIDBetween = value; return this; } public ArrayList getJobIDIn() { return JobIDIn; } public v_JB_JobsQuery setJobIDIn(ArrayList value) { this.JobIDIn = value; return this; } public BigDecimal getChargeToDate() { return ChargeToDate; } public v_JB_JobsQuery setChargeToDate(BigDecimal value) { this.ChargeToDate = value; return this; } public BigDecimal getChargeToDateGreaterThanOrEqualTo() { return ChargeToDateGreaterThanOrEqualTo; } public v_JB_JobsQuery setChargeToDateGreaterThanOrEqualTo(BigDecimal value) { this.ChargeToDateGreaterThanOrEqualTo = value; return this; } public BigDecimal getChargeToDateGreaterThan() { return ChargeToDateGreaterThan; } public v_JB_JobsQuery setChargeToDateGreaterThan(BigDecimal value) { this.ChargeToDateGreaterThan = value; return this; } public BigDecimal getChargeToDateLessThan() { return ChargeToDateLessThan; } public v_JB_JobsQuery setChargeToDateLessThan(BigDecimal value) { this.ChargeToDateLessThan = value; return this; } public BigDecimal getChargeToDateLessThanOrEqualTo() { return ChargeToDateLessThanOrEqualTo; } public v_JB_JobsQuery setChargeToDateLessThanOrEqualTo(BigDecimal value) { this.ChargeToDateLessThanOrEqualTo = value; return this; } public BigDecimal getChargeToDateNotEqualTo() { return ChargeToDateNotEqualTo; } public v_JB_JobsQuery setChargeToDateNotEqualTo(BigDecimal value) { this.ChargeToDateNotEqualTo = value; return this; } public ArrayList getChargeToDateBetween() { return ChargeToDateBetween; } public v_JB_JobsQuery setChargeToDateBetween(ArrayList value) { this.ChargeToDateBetween = value; return this; } public ArrayList getChargeToDateIn() { return ChargeToDateIn; } public v_JB_JobsQuery setChargeToDateIn(ArrayList value) { this.ChargeToDateIn = value; return this; } public BigDecimal getCostToDate() { return CostToDate; } public v_JB_JobsQuery setCostToDate(BigDecimal value) { this.CostToDate = value; return this; } public BigDecimal getCostToDateGreaterThanOrEqualTo() { return CostToDateGreaterThanOrEqualTo; } public v_JB_JobsQuery setCostToDateGreaterThanOrEqualTo(BigDecimal value) { this.CostToDateGreaterThanOrEqualTo = value; return this; } public BigDecimal getCostToDateGreaterThan() { return CostToDateGreaterThan; } public v_JB_JobsQuery setCostToDateGreaterThan(BigDecimal value) { this.CostToDateGreaterThan = value; return this; } public BigDecimal getCostToDateLessThan() { return CostToDateLessThan; } public v_JB_JobsQuery setCostToDateLessThan(BigDecimal value) { this.CostToDateLessThan = value; return this; } public BigDecimal getCostToDateLessThanOrEqualTo() { return CostToDateLessThanOrEqualTo; } public v_JB_JobsQuery setCostToDateLessThanOrEqualTo(BigDecimal value) { this.CostToDateLessThanOrEqualTo = value; return this; } public BigDecimal getCostToDateNotEqualTo() { return CostToDateNotEqualTo; } public v_JB_JobsQuery setCostToDateNotEqualTo(BigDecimal value) { this.CostToDateNotEqualTo = value; return this; } public ArrayList getCostToDateBetween() { return CostToDateBetween; } public v_JB_JobsQuery setCostToDateBetween(ArrayList value) { this.CostToDateBetween = value; return this; } public ArrayList getCostToDateIn() { return CostToDateIn; } public v_JB_JobsQuery setCostToDateIn(ArrayList value) { this.CostToDateIn = value; return this; } public Date getLastInvoiceDate() { return LastInvoiceDate; } public v_JB_JobsQuery setLastInvoiceDate(Date value) { this.LastInvoiceDate = value; return this; } public Date getLastInvoiceDateGreaterThanOrEqualTo() { return LastInvoiceDateGreaterThanOrEqualTo; } public v_JB_JobsQuery setLastInvoiceDateGreaterThanOrEqualTo(Date value) { this.LastInvoiceDateGreaterThanOrEqualTo = value; return this; } public Date getLastInvoiceDateGreaterThan() { return LastInvoiceDateGreaterThan; } public v_JB_JobsQuery setLastInvoiceDateGreaterThan(Date value) { this.LastInvoiceDateGreaterThan = value; return this; } public Date getLastInvoiceDateLessThan() { return LastInvoiceDateLessThan; } public v_JB_JobsQuery setLastInvoiceDateLessThan(Date value) { this.LastInvoiceDateLessThan = value; return this; } public Date getLastInvoiceDateLessThanOrEqualTo() { return LastInvoiceDateLessThanOrEqualTo; } public v_JB_JobsQuery setLastInvoiceDateLessThanOrEqualTo(Date value) { this.LastInvoiceDateLessThanOrEqualTo = value; return this; } public Date getLastInvoiceDateNotEqualTo() { return LastInvoiceDateNotEqualTo; } public v_JB_JobsQuery setLastInvoiceDateNotEqualTo(Date value) { this.LastInvoiceDateNotEqualTo = value; return this; } public ArrayList getLastInvoiceDateBetween() { return LastInvoiceDateBetween; } public v_JB_JobsQuery setLastInvoiceDateBetween(ArrayList value) { this.LastInvoiceDateBetween = value; return this; } public ArrayList getLastInvoiceDateIn() { return LastInvoiceDateIn; } public v_JB_JobsQuery setLastInvoiceDateIn(ArrayList value) { this.LastInvoiceDateIn = value; return this; } public BigDecimal getWipValueCost() { return WIPValueCost; } public v_JB_JobsQuery setWipValueCost(BigDecimal value) { this.WIPValueCost = value; return this; } public BigDecimal getWipValueCostGreaterThanOrEqualTo() { return WIPValueCostGreaterThanOrEqualTo; } public v_JB_JobsQuery setWipValueCostGreaterThanOrEqualTo(BigDecimal value) { this.WIPValueCostGreaterThanOrEqualTo = value; return this; } public BigDecimal getWipValueCostGreaterThan() { return WIPValueCostGreaterThan; } public v_JB_JobsQuery setWipValueCostGreaterThan(BigDecimal value) { this.WIPValueCostGreaterThan = value; return this; } public BigDecimal getWipValueCostLessThan() { return WIPValueCostLessThan; } public v_JB_JobsQuery setWipValueCostLessThan(BigDecimal value) { this.WIPValueCostLessThan = value; return this; } public BigDecimal getWipValueCostLessThanOrEqualTo() { return WIPValueCostLessThanOrEqualTo; } public v_JB_JobsQuery setWipValueCostLessThanOrEqualTo(BigDecimal value) { this.WIPValueCostLessThanOrEqualTo = value; return this; } public BigDecimal getWipValueCostNotEqualTo() { return WIPValueCostNotEqualTo; } public v_JB_JobsQuery setWipValueCostNotEqualTo(BigDecimal value) { this.WIPValueCostNotEqualTo = value; return this; } public ArrayList getWipValueCostBetween() { return WIPValueCostBetween; } public v_JB_JobsQuery setWipValueCostBetween(ArrayList value) { this.WIPValueCostBetween = value; return this; } public ArrayList getWipValueCostIn() { return WIPValueCostIn; } public v_JB_JobsQuery setWipValueCostIn(ArrayList value) { this.WIPValueCostIn = value; return this; } public BigDecimal getWipValueCharge() { return WIPValueCharge; } public v_JB_JobsQuery setWipValueCharge(BigDecimal value) { this.WIPValueCharge = value; return this; } public BigDecimal getWipValueChargeGreaterThanOrEqualTo() { return WIPValueChargeGreaterThanOrEqualTo; } public v_JB_JobsQuery setWipValueChargeGreaterThanOrEqualTo(BigDecimal value) { this.WIPValueChargeGreaterThanOrEqualTo = value; return this; } public BigDecimal getWipValueChargeGreaterThan() { return WIPValueChargeGreaterThan; } public v_JB_JobsQuery setWipValueChargeGreaterThan(BigDecimal value) { this.WIPValueChargeGreaterThan = value; return this; } public BigDecimal getWipValueChargeLessThan() { return WIPValueChargeLessThan; } public v_JB_JobsQuery setWipValueChargeLessThan(BigDecimal value) { this.WIPValueChargeLessThan = value; return this; } public BigDecimal getWipValueChargeLessThanOrEqualTo() { return WIPValueChargeLessThanOrEqualTo; } public v_JB_JobsQuery setWipValueChargeLessThanOrEqualTo(BigDecimal value) { this.WIPValueChargeLessThanOrEqualTo = value; return this; } public BigDecimal getWipValueChargeNotEqualTo() { return WIPValueChargeNotEqualTo; } public v_JB_JobsQuery setWipValueChargeNotEqualTo(BigDecimal value) { this.WIPValueChargeNotEqualTo = value; return this; } public ArrayList getWipValueChargeBetween() { return WIPValueChargeBetween; } public v_JB_JobsQuery setWipValueChargeBetween(ArrayList value) { this.WIPValueChargeBetween = value; return this; } public ArrayList getWipValueChargeIn() { return WIPValueChargeIn; } public v_JB_JobsQuery setWipValueChargeIn(ArrayList value) { this.WIPValueChargeIn = value; return this; } public BigDecimal getEstimateCharge() { return EstimateCharge; } public v_JB_JobsQuery setEstimateCharge(BigDecimal value) { this.EstimateCharge = value; return this; } public BigDecimal getEstimateChargeGreaterThanOrEqualTo() { return EstimateChargeGreaterThanOrEqualTo; } public v_JB_JobsQuery setEstimateChargeGreaterThanOrEqualTo(BigDecimal value) { this.EstimateChargeGreaterThanOrEqualTo = value; return this; } public BigDecimal getEstimateChargeGreaterThan() { return EstimateChargeGreaterThan; } public v_JB_JobsQuery setEstimateChargeGreaterThan(BigDecimal value) { this.EstimateChargeGreaterThan = value; return this; } public BigDecimal getEstimateChargeLessThan() { return EstimateChargeLessThan; } public v_JB_JobsQuery setEstimateChargeLessThan(BigDecimal value) { this.EstimateChargeLessThan = value; return this; } public BigDecimal getEstimateChargeLessThanOrEqualTo() { return EstimateChargeLessThanOrEqualTo; } public v_JB_JobsQuery setEstimateChargeLessThanOrEqualTo(BigDecimal value) { this.EstimateChargeLessThanOrEqualTo = value; return this; } public BigDecimal getEstimateChargeNotEqualTo() { return EstimateChargeNotEqualTo; } public v_JB_JobsQuery setEstimateChargeNotEqualTo(BigDecimal value) { this.EstimateChargeNotEqualTo = value; return this; } public ArrayList getEstimateChargeBetween() { return EstimateChargeBetween; } public v_JB_JobsQuery setEstimateChargeBetween(ArrayList value) { this.EstimateChargeBetween = value; return this; } public ArrayList getEstimateChargeIn() { return EstimateChargeIn; } public v_JB_JobsQuery setEstimateChargeIn(ArrayList value) { this.EstimateChargeIn = value; return this; } public BigDecimal getInvoicedToDate() { return InvoicedToDate; } public v_JB_JobsQuery setInvoicedToDate(BigDecimal value) { this.InvoicedToDate = value; return this; } public BigDecimal getInvoicedToDateGreaterThanOrEqualTo() { return InvoicedToDateGreaterThanOrEqualTo; } public v_JB_JobsQuery setInvoicedToDateGreaterThanOrEqualTo(BigDecimal value) { this.InvoicedToDateGreaterThanOrEqualTo = value; return this; } public BigDecimal getInvoicedToDateGreaterThan() { return InvoicedToDateGreaterThan; } public v_JB_JobsQuery setInvoicedToDateGreaterThan(BigDecimal value) { this.InvoicedToDateGreaterThan = value; return this; } public BigDecimal getInvoicedToDateLessThan() { return InvoicedToDateLessThan; } public v_JB_JobsQuery setInvoicedToDateLessThan(BigDecimal value) { this.InvoicedToDateLessThan = value; return this; } public BigDecimal getInvoicedToDateLessThanOrEqualTo() { return InvoicedToDateLessThanOrEqualTo; } public v_JB_JobsQuery setInvoicedToDateLessThanOrEqualTo(BigDecimal value) { this.InvoicedToDateLessThanOrEqualTo = value; return this; } public BigDecimal getInvoicedToDateNotEqualTo() { return InvoicedToDateNotEqualTo; } public v_JB_JobsQuery setInvoicedToDateNotEqualTo(BigDecimal value) { this.InvoicedToDateNotEqualTo = value; return this; } public ArrayList getInvoicedToDateBetween() { return InvoicedToDateBetween; } public v_JB_JobsQuery setInvoicedToDateBetween(ArrayList value) { this.InvoicedToDateBetween = value; return this; } public ArrayList getInvoicedToDateIn() { return InvoicedToDateIn; } public v_JB_JobsQuery setInvoicedToDateIn(ArrayList value) { this.InvoicedToDateIn = value; return this; } public BigDecimal getEstimateCost() { return EstimateCost; } public v_JB_JobsQuery setEstimateCost(BigDecimal value) { this.EstimateCost = value; return this; } public BigDecimal getEstimateCostGreaterThanOrEqualTo() { return EstimateCostGreaterThanOrEqualTo; } public v_JB_JobsQuery setEstimateCostGreaterThanOrEqualTo(BigDecimal value) { this.EstimateCostGreaterThanOrEqualTo = value; return this; } public BigDecimal getEstimateCostGreaterThan() { return EstimateCostGreaterThan; } public v_JB_JobsQuery setEstimateCostGreaterThan(BigDecimal value) { this.EstimateCostGreaterThan = value; return this; } public BigDecimal getEstimateCostLessThan() { return EstimateCostLessThan; } public v_JB_JobsQuery setEstimateCostLessThan(BigDecimal value) { this.EstimateCostLessThan = value; return this; } public BigDecimal getEstimateCostLessThanOrEqualTo() { return EstimateCostLessThanOrEqualTo; } public v_JB_JobsQuery setEstimateCostLessThanOrEqualTo(BigDecimal value) { this.EstimateCostLessThanOrEqualTo = value; return this; } public BigDecimal getEstimateCostNotEqualTo() { return EstimateCostNotEqualTo; } public v_JB_JobsQuery setEstimateCostNotEqualTo(BigDecimal value) { this.EstimateCostNotEqualTo = value; return this; } public ArrayList getEstimateCostBetween() { return EstimateCostBetween; } public v_JB_JobsQuery setEstimateCostBetween(ArrayList value) { this.EstimateCostBetween = value; return this; } public ArrayList getEstimateCostIn() { return EstimateCostIn; } public v_JB_JobsQuery setEstimateCostIn(ArrayList value) { this.EstimateCostIn = value; return this; } public BigDecimal getInvoicedCostToDate() { return InvoicedCostToDate; } public v_JB_JobsQuery setInvoicedCostToDate(BigDecimal value) { this.InvoicedCostToDate = value; return this; } public BigDecimal getInvoicedCostToDateGreaterThanOrEqualTo() { return InvoicedCostToDateGreaterThanOrEqualTo; } public v_JB_JobsQuery setInvoicedCostToDateGreaterThanOrEqualTo(BigDecimal value) { this.InvoicedCostToDateGreaterThanOrEqualTo = value; return this; } public BigDecimal getInvoicedCostToDateGreaterThan() { return InvoicedCostToDateGreaterThan; } public v_JB_JobsQuery setInvoicedCostToDateGreaterThan(BigDecimal value) { this.InvoicedCostToDateGreaterThan = value; return this; } public BigDecimal getInvoicedCostToDateLessThan() { return InvoicedCostToDateLessThan; } public v_JB_JobsQuery setInvoicedCostToDateLessThan(BigDecimal value) { this.InvoicedCostToDateLessThan = value; return this; } public BigDecimal getInvoicedCostToDateLessThanOrEqualTo() { return InvoicedCostToDateLessThanOrEqualTo; } public v_JB_JobsQuery setInvoicedCostToDateLessThanOrEqualTo(BigDecimal value) { this.InvoicedCostToDateLessThanOrEqualTo = value; return this; } public BigDecimal getInvoicedCostToDateNotEqualTo() { return InvoicedCostToDateNotEqualTo; } public v_JB_JobsQuery setInvoicedCostToDateNotEqualTo(BigDecimal value) { this.InvoicedCostToDateNotEqualTo = value; return this; } public ArrayList getInvoicedCostToDateBetween() { return InvoicedCostToDateBetween; } public v_JB_JobsQuery setInvoicedCostToDateBetween(ArrayList value) { this.InvoicedCostToDateBetween = value; return this; } public ArrayList getInvoicedCostToDateIn() { return InvoicedCostToDateIn; } public v_JB_JobsQuery setInvoicedCostToDateIn(ArrayList value) { this.InvoicedCostToDateIn = value; return this; } public BigDecimal getMarginPercentage() { return MarginPercentage; } public v_JB_JobsQuery setMarginPercentage(BigDecimal value) { this.MarginPercentage = value; return this; } public BigDecimal getMarginPercentageGreaterThanOrEqualTo() { return MarginPercentageGreaterThanOrEqualTo; } public v_JB_JobsQuery setMarginPercentageGreaterThanOrEqualTo(BigDecimal value) { this.MarginPercentageGreaterThanOrEqualTo = value; return this; } public BigDecimal getMarginPercentageGreaterThan() { return MarginPercentageGreaterThan; } public v_JB_JobsQuery setMarginPercentageGreaterThan(BigDecimal value) { this.MarginPercentageGreaterThan = value; return this; } public BigDecimal getMarginPercentageLessThan() { return MarginPercentageLessThan; } public v_JB_JobsQuery setMarginPercentageLessThan(BigDecimal value) { this.MarginPercentageLessThan = value; return this; } public BigDecimal getMarginPercentageLessThanOrEqualTo() { return MarginPercentageLessThanOrEqualTo; } public v_JB_JobsQuery setMarginPercentageLessThanOrEqualTo(BigDecimal value) { this.MarginPercentageLessThanOrEqualTo = value; return this; } public BigDecimal getMarginPercentageNotEqualTo() { return MarginPercentageNotEqualTo; } public v_JB_JobsQuery setMarginPercentageNotEqualTo(BigDecimal value) { this.MarginPercentageNotEqualTo = value; return this; } public ArrayList getMarginPercentageBetween() { return MarginPercentageBetween; } public v_JB_JobsQuery setMarginPercentageBetween(ArrayList value) { this.MarginPercentageBetween = value; return this; } public ArrayList getMarginPercentageIn() { return MarginPercentageIn; } public v_JB_JobsQuery setMarginPercentageIn(ArrayList value) { this.MarginPercentageIn = value; return this; } public BigDecimal getPercentageInvoiced() { return PercentageInvoiced; } public v_JB_JobsQuery setPercentageInvoiced(BigDecimal value) { this.PercentageInvoiced = value; return this; } public BigDecimal getPercentageInvoicedGreaterThanOrEqualTo() { return PercentageInvoicedGreaterThanOrEqualTo; } public v_JB_JobsQuery setPercentageInvoicedGreaterThanOrEqualTo(BigDecimal value) { this.PercentageInvoicedGreaterThanOrEqualTo = value; return this; } public BigDecimal getPercentageInvoicedGreaterThan() { return PercentageInvoicedGreaterThan; } public v_JB_JobsQuery setPercentageInvoicedGreaterThan(BigDecimal value) { this.PercentageInvoicedGreaterThan = value; return this; } public BigDecimal getPercentageInvoicedLessThan() { return PercentageInvoicedLessThan; } public v_JB_JobsQuery setPercentageInvoicedLessThan(BigDecimal value) { this.PercentageInvoicedLessThan = value; return this; } public BigDecimal getPercentageInvoicedLessThanOrEqualTo() { return PercentageInvoicedLessThanOrEqualTo; } public v_JB_JobsQuery setPercentageInvoicedLessThanOrEqualTo(BigDecimal value) { this.PercentageInvoicedLessThanOrEqualTo = value; return this; } public BigDecimal getPercentageInvoicedNotEqualTo() { return PercentageInvoicedNotEqualTo; } public v_JB_JobsQuery setPercentageInvoicedNotEqualTo(BigDecimal value) { this.PercentageInvoicedNotEqualTo = value; return this; } public ArrayList getPercentageInvoicedBetween() { return PercentageInvoicedBetween; } public v_JB_JobsQuery setPercentageInvoicedBetween(ArrayList value) { this.PercentageInvoicedBetween = value; return this; } public ArrayList getPercentageInvoicedIn() { return PercentageInvoicedIn; } public v_JB_JobsQuery setPercentageInvoicedIn(ArrayList value) { this.PercentageInvoicedIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class v_JB_JournalsQuery extends QueryDb implements IReturn> { public String SourceType = null; public String SourceTypeStartsWith = null; public String SourceTypeEndsWith = null; public String SourceTypeContains = null; public String SourceTypeLike = null; public ArrayList SourceTypeBetween = null; public ArrayList SourceTypeIn = null; public String BatchNo = null; public String BatchNoStartsWith = null; public String BatchNoEndsWith = null; public String BatchNoContains = null; public String BatchNoLike = null; public ArrayList BatchNoBetween = null; public ArrayList BatchNoIn = null; public String JobCostStage = null; public String JobCostStageStartsWith = null; public String JobCostStageEndsWith = null; public String JobCostStageContains = null; public String JobCostStageLike = null; public ArrayList JobCostStageBetween = null; public ArrayList JobCostStageIn = null; public String Item = null; public String ItemStartsWith = null; public String ItemEndsWith = null; public String ItemContains = null; public String ItemLike = null; public ArrayList ItemBetween = null; public ArrayList ItemIn = null; public String Description = null; public String DescriptionStartsWith = null; public String DescriptionEndsWith = null; public String DescriptionContains = null; public String DescriptionLike = null; public ArrayList DescriptionBetween = null; public ArrayList DescriptionIn = null; public Date TranDate = null; public Date TranDateGreaterThanOrEqualTo = null; public Date TranDateGreaterThan = null; public Date TranDateLessThan = null; public Date TranDateLessThanOrEqualTo = null; public Date TranDateNotEqualTo = null; public ArrayList TranDateBetween = null; public ArrayList TranDateIn = null; public BigDecimal Qty = null; public BigDecimal QtyGreaterThanOrEqualTo = null; public BigDecimal QtyGreaterThan = null; public BigDecimal QtyLessThan = null; public BigDecimal QtyLessThanOrEqualTo = null; public BigDecimal QtyNotEqualTo = null; public ArrayList QtyBetween = null; public ArrayList QtyIn = null; public BigDecimal TotalCost = null; public BigDecimal TotalCostGreaterThanOrEqualTo = null; public BigDecimal TotalCostGreaterThan = null; public BigDecimal TotalCostLessThan = null; public BigDecimal TotalCostLessThanOrEqualTo = null; public BigDecimal TotalCostNotEqualTo = null; public ArrayList TotalCostBetween = null; public ArrayList TotalCostIn = null; public BigDecimal TotalCharge = null; public BigDecimal TotalChargeGreaterThanOrEqualTo = null; public BigDecimal TotalChargeGreaterThan = null; public BigDecimal TotalChargeLessThan = null; public BigDecimal TotalChargeLessThanOrEqualTo = null; public BigDecimal TotalChargeNotEqualTo = null; public ArrayList TotalChargeBetween = null; public ArrayList TotalChargeIn = null; public String Remark = null; public String RemarkStartsWith = null; public String RemarkEndsWith = null; public String RemarkContains = null; public String RemarkLike = null; public ArrayList RemarkBetween = null; public ArrayList RemarkIn = null; public String JobNo = null; public String JobNoStartsWith = null; public String JobNoEndsWith = null; public String JobNoContains = null; public String JobNoLike = null; public ArrayList JobNoBetween = null; public ArrayList JobNoIn = null; public String getSourceType() { return SourceType; } public v_JB_JournalsQuery setSourceType(String value) { this.SourceType = value; return this; } public String getSourceTypeStartsWith() { return SourceTypeStartsWith; } public v_JB_JournalsQuery setSourceTypeStartsWith(String value) { this.SourceTypeStartsWith = value; return this; } public String getSourceTypeEndsWith() { return SourceTypeEndsWith; } public v_JB_JournalsQuery setSourceTypeEndsWith(String value) { this.SourceTypeEndsWith = value; return this; } public String getSourceTypeContains() { return SourceTypeContains; } public v_JB_JournalsQuery setSourceTypeContains(String value) { this.SourceTypeContains = value; return this; } public String getSourceTypeLike() { return SourceTypeLike; } public v_JB_JournalsQuery setSourceTypeLike(String value) { this.SourceTypeLike = value; return this; } public ArrayList getSourceTypeBetween() { return SourceTypeBetween; } public v_JB_JournalsQuery setSourceTypeBetween(ArrayList value) { this.SourceTypeBetween = value; return this; } public ArrayList getSourceTypeIn() { return SourceTypeIn; } public v_JB_JournalsQuery setSourceTypeIn(ArrayList value) { this.SourceTypeIn = value; return this; } public String getBatchNo() { return BatchNo; } public v_JB_JournalsQuery setBatchNo(String value) { this.BatchNo = value; return this; } public String getBatchNoStartsWith() { return BatchNoStartsWith; } public v_JB_JournalsQuery setBatchNoStartsWith(String value) { this.BatchNoStartsWith = value; return this; } public String getBatchNoEndsWith() { return BatchNoEndsWith; } public v_JB_JournalsQuery setBatchNoEndsWith(String value) { this.BatchNoEndsWith = value; return this; } public String getBatchNoContains() { return BatchNoContains; } public v_JB_JournalsQuery setBatchNoContains(String value) { this.BatchNoContains = value; return this; } public String getBatchNoLike() { return BatchNoLike; } public v_JB_JournalsQuery setBatchNoLike(String value) { this.BatchNoLike = value; return this; } public ArrayList getBatchNoBetween() { return BatchNoBetween; } public v_JB_JournalsQuery setBatchNoBetween(ArrayList value) { this.BatchNoBetween = value; return this; } public ArrayList getBatchNoIn() { return BatchNoIn; } public v_JB_JournalsQuery setBatchNoIn(ArrayList value) { this.BatchNoIn = value; return this; } public String getJobCostStage() { return JobCostStage; } public v_JB_JournalsQuery setJobCostStage(String value) { this.JobCostStage = value; return this; } public String getJobCostStageStartsWith() { return JobCostStageStartsWith; } public v_JB_JournalsQuery setJobCostStageStartsWith(String value) { this.JobCostStageStartsWith = value; return this; } public String getJobCostStageEndsWith() { return JobCostStageEndsWith; } public v_JB_JournalsQuery setJobCostStageEndsWith(String value) { this.JobCostStageEndsWith = value; return this; } public String getJobCostStageContains() { return JobCostStageContains; } public v_JB_JournalsQuery setJobCostStageContains(String value) { this.JobCostStageContains = value; return this; } public String getJobCostStageLike() { return JobCostStageLike; } public v_JB_JournalsQuery setJobCostStageLike(String value) { this.JobCostStageLike = value; return this; } public ArrayList getJobCostStageBetween() { return JobCostStageBetween; } public v_JB_JournalsQuery setJobCostStageBetween(ArrayList value) { this.JobCostStageBetween = value; return this; } public ArrayList getJobCostStageIn() { return JobCostStageIn; } public v_JB_JournalsQuery setJobCostStageIn(ArrayList value) { this.JobCostStageIn = value; return this; } public String getItem() { return Item; } public v_JB_JournalsQuery setItem(String value) { this.Item = value; return this; } public String getItemStartsWith() { return ItemStartsWith; } public v_JB_JournalsQuery setItemStartsWith(String value) { this.ItemStartsWith = value; return this; } public String getItemEndsWith() { return ItemEndsWith; } public v_JB_JournalsQuery setItemEndsWith(String value) { this.ItemEndsWith = value; return this; } public String getItemContains() { return ItemContains; } public v_JB_JournalsQuery setItemContains(String value) { this.ItemContains = value; return this; } public String getItemLike() { return ItemLike; } public v_JB_JournalsQuery setItemLike(String value) { this.ItemLike = value; return this; } public ArrayList getItemBetween() { return ItemBetween; } public v_JB_JournalsQuery setItemBetween(ArrayList value) { this.ItemBetween = value; return this; } public ArrayList getItemIn() { return ItemIn; } public v_JB_JournalsQuery setItemIn(ArrayList value) { this.ItemIn = value; return this; } public String getDescription() { return Description; } public v_JB_JournalsQuery setDescription(String value) { this.Description = value; return this; } public String getDescriptionStartsWith() { return DescriptionStartsWith; } public v_JB_JournalsQuery setDescriptionStartsWith(String value) { this.DescriptionStartsWith = value; return this; } public String getDescriptionEndsWith() { return DescriptionEndsWith; } public v_JB_JournalsQuery setDescriptionEndsWith(String value) { this.DescriptionEndsWith = value; return this; } public String getDescriptionContains() { return DescriptionContains; } public v_JB_JournalsQuery setDescriptionContains(String value) { this.DescriptionContains = value; return this; } public String getDescriptionLike() { return DescriptionLike; } public v_JB_JournalsQuery setDescriptionLike(String value) { this.DescriptionLike = value; return this; } public ArrayList getDescriptionBetween() { return DescriptionBetween; } public v_JB_JournalsQuery setDescriptionBetween(ArrayList value) { this.DescriptionBetween = value; return this; } public ArrayList getDescriptionIn() { return DescriptionIn; } public v_JB_JournalsQuery setDescriptionIn(ArrayList value) { this.DescriptionIn = value; return this; } public Date getTranDate() { return TranDate; } public v_JB_JournalsQuery setTranDate(Date value) { this.TranDate = value; return this; } public Date getTranDateGreaterThanOrEqualTo() { return TranDateGreaterThanOrEqualTo; } public v_JB_JournalsQuery setTranDateGreaterThanOrEqualTo(Date value) { this.TranDateGreaterThanOrEqualTo = value; return this; } public Date getTranDateGreaterThan() { return TranDateGreaterThan; } public v_JB_JournalsQuery setTranDateGreaterThan(Date value) { this.TranDateGreaterThan = value; return this; } public Date getTranDateLessThan() { return TranDateLessThan; } public v_JB_JournalsQuery setTranDateLessThan(Date value) { this.TranDateLessThan = value; return this; } public Date getTranDateLessThanOrEqualTo() { return TranDateLessThanOrEqualTo; } public v_JB_JournalsQuery setTranDateLessThanOrEqualTo(Date value) { this.TranDateLessThanOrEqualTo = value; return this; } public Date getTranDateNotEqualTo() { return TranDateNotEqualTo; } public v_JB_JournalsQuery setTranDateNotEqualTo(Date value) { this.TranDateNotEqualTo = value; return this; } public ArrayList getTranDateBetween() { return TranDateBetween; } public v_JB_JournalsQuery setTranDateBetween(ArrayList value) { this.TranDateBetween = value; return this; } public ArrayList getTranDateIn() { return TranDateIn; } public v_JB_JournalsQuery setTranDateIn(ArrayList value) { this.TranDateIn = value; return this; } public BigDecimal getQty() { return Qty; } public v_JB_JournalsQuery setQty(BigDecimal value) { this.Qty = value; return this; } public BigDecimal getQtyGreaterThanOrEqualTo() { return QtyGreaterThanOrEqualTo; } public v_JB_JournalsQuery setQtyGreaterThanOrEqualTo(BigDecimal value) { this.QtyGreaterThanOrEqualTo = value; return this; } public BigDecimal getQtyGreaterThan() { return QtyGreaterThan; } public v_JB_JournalsQuery setQtyGreaterThan(BigDecimal value) { this.QtyGreaterThan = value; return this; } public BigDecimal getQtyLessThan() { return QtyLessThan; } public v_JB_JournalsQuery setQtyLessThan(BigDecimal value) { this.QtyLessThan = value; return this; } public BigDecimal getQtyLessThanOrEqualTo() { return QtyLessThanOrEqualTo; } public v_JB_JournalsQuery setQtyLessThanOrEqualTo(BigDecimal value) { this.QtyLessThanOrEqualTo = value; return this; } public BigDecimal getQtyNotEqualTo() { return QtyNotEqualTo; } public v_JB_JournalsQuery setQtyNotEqualTo(BigDecimal value) { this.QtyNotEqualTo = value; return this; } public ArrayList getQtyBetween() { return QtyBetween; } public v_JB_JournalsQuery setQtyBetween(ArrayList value) { this.QtyBetween = value; return this; } public ArrayList getQtyIn() { return QtyIn; } public v_JB_JournalsQuery setQtyIn(ArrayList value) { this.QtyIn = value; return this; } public BigDecimal getTotalCost() { return TotalCost; } public v_JB_JournalsQuery setTotalCost(BigDecimal value) { this.TotalCost = value; return this; } public BigDecimal getTotalCostGreaterThanOrEqualTo() { return TotalCostGreaterThanOrEqualTo; } public v_JB_JournalsQuery setTotalCostGreaterThanOrEqualTo(BigDecimal value) { this.TotalCostGreaterThanOrEqualTo = value; return this; } public BigDecimal getTotalCostGreaterThan() { return TotalCostGreaterThan; } public v_JB_JournalsQuery setTotalCostGreaterThan(BigDecimal value) { this.TotalCostGreaterThan = value; return this; } public BigDecimal getTotalCostLessThan() { return TotalCostLessThan; } public v_JB_JournalsQuery setTotalCostLessThan(BigDecimal value) { this.TotalCostLessThan = value; return this; } public BigDecimal getTotalCostLessThanOrEqualTo() { return TotalCostLessThanOrEqualTo; } public v_JB_JournalsQuery setTotalCostLessThanOrEqualTo(BigDecimal value) { this.TotalCostLessThanOrEqualTo = value; return this; } public BigDecimal getTotalCostNotEqualTo() { return TotalCostNotEqualTo; } public v_JB_JournalsQuery setTotalCostNotEqualTo(BigDecimal value) { this.TotalCostNotEqualTo = value; return this; } public ArrayList getTotalCostBetween() { return TotalCostBetween; } public v_JB_JournalsQuery setTotalCostBetween(ArrayList value) { this.TotalCostBetween = value; return this; } public ArrayList getTotalCostIn() { return TotalCostIn; } public v_JB_JournalsQuery setTotalCostIn(ArrayList value) { this.TotalCostIn = value; return this; } public BigDecimal getTotalCharge() { return TotalCharge; } public v_JB_JournalsQuery setTotalCharge(BigDecimal value) { this.TotalCharge = value; return this; } public BigDecimal getTotalChargeGreaterThanOrEqualTo() { return TotalChargeGreaterThanOrEqualTo; } public v_JB_JournalsQuery setTotalChargeGreaterThanOrEqualTo(BigDecimal value) { this.TotalChargeGreaterThanOrEqualTo = value; return this; } public BigDecimal getTotalChargeGreaterThan() { return TotalChargeGreaterThan; } public v_JB_JournalsQuery setTotalChargeGreaterThan(BigDecimal value) { this.TotalChargeGreaterThan = value; return this; } public BigDecimal getTotalChargeLessThan() { return TotalChargeLessThan; } public v_JB_JournalsQuery setTotalChargeLessThan(BigDecimal value) { this.TotalChargeLessThan = value; return this; } public BigDecimal getTotalChargeLessThanOrEqualTo() { return TotalChargeLessThanOrEqualTo; } public v_JB_JournalsQuery setTotalChargeLessThanOrEqualTo(BigDecimal value) { this.TotalChargeLessThanOrEqualTo = value; return this; } public BigDecimal getTotalChargeNotEqualTo() { return TotalChargeNotEqualTo; } public v_JB_JournalsQuery setTotalChargeNotEqualTo(BigDecimal value) { this.TotalChargeNotEqualTo = value; return this; } public ArrayList getTotalChargeBetween() { return TotalChargeBetween; } public v_JB_JournalsQuery setTotalChargeBetween(ArrayList value) { this.TotalChargeBetween = value; return this; } public ArrayList getTotalChargeIn() { return TotalChargeIn; } public v_JB_JournalsQuery setTotalChargeIn(ArrayList value) { this.TotalChargeIn = value; return this; } public String getRemark() { return Remark; } public v_JB_JournalsQuery setRemark(String value) { this.Remark = value; return this; } public String getRemarkStartsWith() { return RemarkStartsWith; } public v_JB_JournalsQuery setRemarkStartsWith(String value) { this.RemarkStartsWith = value; return this; } public String getRemarkEndsWith() { return RemarkEndsWith; } public v_JB_JournalsQuery setRemarkEndsWith(String value) { this.RemarkEndsWith = value; return this; } public String getRemarkContains() { return RemarkContains; } public v_JB_JournalsQuery setRemarkContains(String value) { this.RemarkContains = value; return this; } public String getRemarkLike() { return RemarkLike; } public v_JB_JournalsQuery setRemarkLike(String value) { this.RemarkLike = value; return this; } public ArrayList getRemarkBetween() { return RemarkBetween; } public v_JB_JournalsQuery setRemarkBetween(ArrayList value) { this.RemarkBetween = value; return this; } public ArrayList getRemarkIn() { return RemarkIn; } public v_JB_JournalsQuery setRemarkIn(ArrayList value) { this.RemarkIn = value; return this; } public String getJobNo() { return JobNo; } public v_JB_JournalsQuery setJobNo(String value) { this.JobNo = value; return this; } public String getJobNoStartsWith() { return JobNoStartsWith; } public v_JB_JournalsQuery setJobNoStartsWith(String value) { this.JobNoStartsWith = value; return this; } public String getJobNoEndsWith() { return JobNoEndsWith; } public v_JB_JournalsQuery setJobNoEndsWith(String value) { this.JobNoEndsWith = value; return this; } public String getJobNoContains() { return JobNoContains; } public v_JB_JournalsQuery setJobNoContains(String value) { this.JobNoContains = value; return this; } public String getJobNoLike() { return JobNoLike; } public v_JB_JournalsQuery setJobNoLike(String value) { this.JobNoLike = value; return this; } public ArrayList getJobNoBetween() { return JobNoBetween; } public v_JB_JournalsQuery setJobNoBetween(ArrayList value) { this.JobNoBetween = value; return this; } public ArrayList getJobNoIn() { return JobNoIn; } public v_JB_JournalsQuery setJobNoIn(ArrayList value) { this.JobNoIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class v_JB_JournalsEstimateTotalsToDateQuery extends QueryDb implements IReturn> { public BigDecimal Charge = null; public BigDecimal ChargeGreaterThanOrEqualTo = null; public BigDecimal ChargeGreaterThan = null; public BigDecimal ChargeLessThan = null; public BigDecimal ChargeLessThanOrEqualTo = null; public BigDecimal ChargeNotEqualTo = null; public ArrayList ChargeBetween = null; public ArrayList ChargeIn = null; public BigDecimal Cost = null; public BigDecimal CostGreaterThanOrEqualTo = null; public BigDecimal CostGreaterThan = null; public BigDecimal CostLessThan = null; public BigDecimal CostLessThanOrEqualTo = null; public BigDecimal CostNotEqualTo = null; public ArrayList CostBetween = null; public ArrayList CostIn = null; public BigDecimal Qty = null; public BigDecimal QtyGreaterThanOrEqualTo = null; public BigDecimal QtyGreaterThan = null; public BigDecimal QtyLessThan = null; public BigDecimal QtyLessThanOrEqualTo = null; public BigDecimal QtyNotEqualTo = null; public ArrayList QtyBetween = null; public ArrayList QtyIn = null; public String JobID = null; public String JobIDStartsWith = null; public String JobIDEndsWith = null; public String JobIDContains = null; public String JobIDLike = null; public ArrayList JobIDBetween = null; public ArrayList JobIDIn = null; public Short DefaultEstimate = null; public Short DefaultEstimateGreaterThanOrEqualTo = null; public Short DefaultEstimateGreaterThan = null; public Short DefaultEstimateLessThan = null; public Short DefaultEstimateLessThanOrEqualTo = null; public Short DefaultEstimateNotEqualTo = null; public ArrayList DefaultEstimateBetween = null; public ArrayList DefaultEstimateIn = null; public BigDecimal getCharge() { return Charge; } public v_JB_JournalsEstimateTotalsToDateQuery setCharge(BigDecimal value) { this.Charge = value; return this; } public BigDecimal getChargeGreaterThanOrEqualTo() { return ChargeGreaterThanOrEqualTo; } public v_JB_JournalsEstimateTotalsToDateQuery setChargeGreaterThanOrEqualTo(BigDecimal value) { this.ChargeGreaterThanOrEqualTo = value; return this; } public BigDecimal getChargeGreaterThan() { return ChargeGreaterThan; } public v_JB_JournalsEstimateTotalsToDateQuery setChargeGreaterThan(BigDecimal value) { this.ChargeGreaterThan = value; return this; } public BigDecimal getChargeLessThan() { return ChargeLessThan; } public v_JB_JournalsEstimateTotalsToDateQuery setChargeLessThan(BigDecimal value) { this.ChargeLessThan = value; return this; } public BigDecimal getChargeLessThanOrEqualTo() { return ChargeLessThanOrEqualTo; } public v_JB_JournalsEstimateTotalsToDateQuery setChargeLessThanOrEqualTo(BigDecimal value) { this.ChargeLessThanOrEqualTo = value; return this; } public BigDecimal getChargeNotEqualTo() { return ChargeNotEqualTo; } public v_JB_JournalsEstimateTotalsToDateQuery setChargeNotEqualTo(BigDecimal value) { this.ChargeNotEqualTo = value; return this; } public ArrayList getChargeBetween() { return ChargeBetween; } public v_JB_JournalsEstimateTotalsToDateQuery setChargeBetween(ArrayList value) { this.ChargeBetween = value; return this; } public ArrayList getChargeIn() { return ChargeIn; } public v_JB_JournalsEstimateTotalsToDateQuery setChargeIn(ArrayList value) { this.ChargeIn = value; return this; } public BigDecimal getCost() { return Cost; } public v_JB_JournalsEstimateTotalsToDateQuery setCost(BigDecimal value) { this.Cost = value; return this; } public BigDecimal getCostGreaterThanOrEqualTo() { return CostGreaterThanOrEqualTo; } public v_JB_JournalsEstimateTotalsToDateQuery setCostGreaterThanOrEqualTo(BigDecimal value) { this.CostGreaterThanOrEqualTo = value; return this; } public BigDecimal getCostGreaterThan() { return CostGreaterThan; } public v_JB_JournalsEstimateTotalsToDateQuery setCostGreaterThan(BigDecimal value) { this.CostGreaterThan = value; return this; } public BigDecimal getCostLessThan() { return CostLessThan; } public v_JB_JournalsEstimateTotalsToDateQuery setCostLessThan(BigDecimal value) { this.CostLessThan = value; return this; } public BigDecimal getCostLessThanOrEqualTo() { return CostLessThanOrEqualTo; } public v_JB_JournalsEstimateTotalsToDateQuery setCostLessThanOrEqualTo(BigDecimal value) { this.CostLessThanOrEqualTo = value; return this; } public BigDecimal getCostNotEqualTo() { return CostNotEqualTo; } public v_JB_JournalsEstimateTotalsToDateQuery setCostNotEqualTo(BigDecimal value) { this.CostNotEqualTo = value; return this; } public ArrayList getCostBetween() { return CostBetween; } public v_JB_JournalsEstimateTotalsToDateQuery setCostBetween(ArrayList value) { this.CostBetween = value; return this; } public ArrayList getCostIn() { return CostIn; } public v_JB_JournalsEstimateTotalsToDateQuery setCostIn(ArrayList value) { this.CostIn = value; return this; } public BigDecimal getQty() { return Qty; } public v_JB_JournalsEstimateTotalsToDateQuery setQty(BigDecimal value) { this.Qty = value; return this; } public BigDecimal getQtyGreaterThanOrEqualTo() { return QtyGreaterThanOrEqualTo; } public v_JB_JournalsEstimateTotalsToDateQuery setQtyGreaterThanOrEqualTo(BigDecimal value) { this.QtyGreaterThanOrEqualTo = value; return this; } public BigDecimal getQtyGreaterThan() { return QtyGreaterThan; } public v_JB_JournalsEstimateTotalsToDateQuery setQtyGreaterThan(BigDecimal value) { this.QtyGreaterThan = value; return this; } public BigDecimal getQtyLessThan() { return QtyLessThan; } public v_JB_JournalsEstimateTotalsToDateQuery setQtyLessThan(BigDecimal value) { this.QtyLessThan = value; return this; } public BigDecimal getQtyLessThanOrEqualTo() { return QtyLessThanOrEqualTo; } public v_JB_JournalsEstimateTotalsToDateQuery setQtyLessThanOrEqualTo(BigDecimal value) { this.QtyLessThanOrEqualTo = value; return this; } public BigDecimal getQtyNotEqualTo() { return QtyNotEqualTo; } public v_JB_JournalsEstimateTotalsToDateQuery setQtyNotEqualTo(BigDecimal value) { this.QtyNotEqualTo = value; return this; } public ArrayList getQtyBetween() { return QtyBetween; } public v_JB_JournalsEstimateTotalsToDateQuery setQtyBetween(ArrayList value) { this.QtyBetween = value; return this; } public ArrayList getQtyIn() { return QtyIn; } public v_JB_JournalsEstimateTotalsToDateQuery setQtyIn(ArrayList value) { this.QtyIn = value; return this; } public String getJobID() { return JobID; } public v_JB_JournalsEstimateTotalsToDateQuery setJobID(String value) { this.JobID = value; return this; } public String getJobIDStartsWith() { return JobIDStartsWith; } public v_JB_JournalsEstimateTotalsToDateQuery setJobIDStartsWith(String value) { this.JobIDStartsWith = value; return this; } public String getJobIDEndsWith() { return JobIDEndsWith; } public v_JB_JournalsEstimateTotalsToDateQuery setJobIDEndsWith(String value) { this.JobIDEndsWith = value; return this; } public String getJobIDContains() { return JobIDContains; } public v_JB_JournalsEstimateTotalsToDateQuery setJobIDContains(String value) { this.JobIDContains = value; return this; } public String getJobIDLike() { return JobIDLike; } public v_JB_JournalsEstimateTotalsToDateQuery setJobIDLike(String value) { this.JobIDLike = value; return this; } public ArrayList getJobIDBetween() { return JobIDBetween; } public v_JB_JournalsEstimateTotalsToDateQuery setJobIDBetween(ArrayList value) { this.JobIDBetween = value; return this; } public ArrayList getJobIDIn() { return JobIDIn; } public v_JB_JournalsEstimateTotalsToDateQuery setJobIDIn(ArrayList value) { this.JobIDIn = value; return this; } public Short getDefaultEstimate() { return DefaultEstimate; } public v_JB_JournalsEstimateTotalsToDateQuery setDefaultEstimate(Short value) { this.DefaultEstimate = value; return this; } public Short getDefaultEstimateGreaterThanOrEqualTo() { return DefaultEstimateGreaterThanOrEqualTo; } public v_JB_JournalsEstimateTotalsToDateQuery setDefaultEstimateGreaterThanOrEqualTo(Short value) { this.DefaultEstimateGreaterThanOrEqualTo = value; return this; } public Short getDefaultEstimateGreaterThan() { return DefaultEstimateGreaterThan; } public v_JB_JournalsEstimateTotalsToDateQuery setDefaultEstimateGreaterThan(Short value) { this.DefaultEstimateGreaterThan = value; return this; } public Short getDefaultEstimateLessThan() { return DefaultEstimateLessThan; } public v_JB_JournalsEstimateTotalsToDateQuery setDefaultEstimateLessThan(Short value) { this.DefaultEstimateLessThan = value; return this; } public Short getDefaultEstimateLessThanOrEqualTo() { return DefaultEstimateLessThanOrEqualTo; } public v_JB_JournalsEstimateTotalsToDateQuery setDefaultEstimateLessThanOrEqualTo(Short value) { this.DefaultEstimateLessThanOrEqualTo = value; return this; } public Short getDefaultEstimateNotEqualTo() { return DefaultEstimateNotEqualTo; } public v_JB_JournalsEstimateTotalsToDateQuery setDefaultEstimateNotEqualTo(Short value) { this.DefaultEstimateNotEqualTo = value; return this; } public ArrayList getDefaultEstimateBetween() { return DefaultEstimateBetween; } public v_JB_JournalsEstimateTotalsToDateQuery setDefaultEstimateBetween(ArrayList value) { this.DefaultEstimateBetween = value; return this; } public ArrayList getDefaultEstimateIn() { return DefaultEstimateIn; } public v_JB_JournalsEstimateTotalsToDateQuery setDefaultEstimateIn(ArrayList value) { this.DefaultEstimateIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class v_JB_JournalsTotalsToDateQuery extends QueryDb implements IReturn> { public BigDecimal Charge = null; public BigDecimal ChargeGreaterThanOrEqualTo = null; public BigDecimal ChargeGreaterThan = null; public BigDecimal ChargeLessThan = null; public BigDecimal ChargeLessThanOrEqualTo = null; public BigDecimal ChargeNotEqualTo = null; public ArrayList ChargeBetween = null; public ArrayList ChargeIn = null; public BigDecimal Cost = null; public BigDecimal CostGreaterThanOrEqualTo = null; public BigDecimal CostGreaterThan = null; public BigDecimal CostLessThan = null; public BigDecimal CostLessThanOrEqualTo = null; public BigDecimal CostNotEqualTo = null; public ArrayList CostBetween = null; public ArrayList CostIn = null; public String JobID = null; public String JobIDStartsWith = null; public String JobIDEndsWith = null; public String JobIDContains = null; public String JobIDLike = null; public ArrayList JobIDBetween = null; public ArrayList JobIDIn = null; public BigDecimal getCharge() { return Charge; } public v_JB_JournalsTotalsToDateQuery setCharge(BigDecimal value) { this.Charge = value; return this; } public BigDecimal getChargeGreaterThanOrEqualTo() { return ChargeGreaterThanOrEqualTo; } public v_JB_JournalsTotalsToDateQuery setChargeGreaterThanOrEqualTo(BigDecimal value) { this.ChargeGreaterThanOrEqualTo = value; return this; } public BigDecimal getChargeGreaterThan() { return ChargeGreaterThan; } public v_JB_JournalsTotalsToDateQuery setChargeGreaterThan(BigDecimal value) { this.ChargeGreaterThan = value; return this; } public BigDecimal getChargeLessThan() { return ChargeLessThan; } public v_JB_JournalsTotalsToDateQuery setChargeLessThan(BigDecimal value) { this.ChargeLessThan = value; return this; } public BigDecimal getChargeLessThanOrEqualTo() { return ChargeLessThanOrEqualTo; } public v_JB_JournalsTotalsToDateQuery setChargeLessThanOrEqualTo(BigDecimal value) { this.ChargeLessThanOrEqualTo = value; return this; } public BigDecimal getChargeNotEqualTo() { return ChargeNotEqualTo; } public v_JB_JournalsTotalsToDateQuery setChargeNotEqualTo(BigDecimal value) { this.ChargeNotEqualTo = value; return this; } public ArrayList getChargeBetween() { return ChargeBetween; } public v_JB_JournalsTotalsToDateQuery setChargeBetween(ArrayList value) { this.ChargeBetween = value; return this; } public ArrayList getChargeIn() { return ChargeIn; } public v_JB_JournalsTotalsToDateQuery setChargeIn(ArrayList value) { this.ChargeIn = value; return this; } public BigDecimal getCost() { return Cost; } public v_JB_JournalsTotalsToDateQuery setCost(BigDecimal value) { this.Cost = value; return this; } public BigDecimal getCostGreaterThanOrEqualTo() { return CostGreaterThanOrEqualTo; } public v_JB_JournalsTotalsToDateQuery setCostGreaterThanOrEqualTo(BigDecimal value) { this.CostGreaterThanOrEqualTo = value; return this; } public BigDecimal getCostGreaterThan() { return CostGreaterThan; } public v_JB_JournalsTotalsToDateQuery setCostGreaterThan(BigDecimal value) { this.CostGreaterThan = value; return this; } public BigDecimal getCostLessThan() { return CostLessThan; } public v_JB_JournalsTotalsToDateQuery setCostLessThan(BigDecimal value) { this.CostLessThan = value; return this; } public BigDecimal getCostLessThanOrEqualTo() { return CostLessThanOrEqualTo; } public v_JB_JournalsTotalsToDateQuery setCostLessThanOrEqualTo(BigDecimal value) { this.CostLessThanOrEqualTo = value; return this; } public BigDecimal getCostNotEqualTo() { return CostNotEqualTo; } public v_JB_JournalsTotalsToDateQuery setCostNotEqualTo(BigDecimal value) { this.CostNotEqualTo = value; return this; } public ArrayList getCostBetween() { return CostBetween; } public v_JB_JournalsTotalsToDateQuery setCostBetween(ArrayList value) { this.CostBetween = value; return this; } public ArrayList getCostIn() { return CostIn; } public v_JB_JournalsTotalsToDateQuery setCostIn(ArrayList value) { this.CostIn = value; return this; } public String getJobID() { return JobID; } public v_JB_JournalsTotalsToDateQuery setJobID(String value) { this.JobID = value; return this; } public String getJobIDStartsWith() { return JobIDStartsWith; } public v_JB_JournalsTotalsToDateQuery setJobIDStartsWith(String value) { this.JobIDStartsWith = value; return this; } public String getJobIDEndsWith() { return JobIDEndsWith; } public v_JB_JournalsTotalsToDateQuery setJobIDEndsWith(String value) { this.JobIDEndsWith = value; return this; } public String getJobIDContains() { return JobIDContains; } public v_JB_JournalsTotalsToDateQuery setJobIDContains(String value) { this.JobIDContains = value; return this; } public String getJobIDLike() { return JobIDLike; } public v_JB_JournalsTotalsToDateQuery setJobIDLike(String value) { this.JobIDLike = value; return this; } public ArrayList getJobIDBetween() { return JobIDBetween; } public v_JB_JournalsTotalsToDateQuery setJobIDBetween(ArrayList value) { this.JobIDBetween = value; return this; } public ArrayList getJobIDIn() { return JobIDIn; } public v_JB_JournalsTotalsToDateQuery setJobIDIn(ArrayList value) { this.JobIDIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class v_JB_LabourQuery extends QueryDb implements IReturn> { public String SourceType = null; public String SourceTypeStartsWith = null; public String SourceTypeEndsWith = null; public String SourceTypeContains = null; public String SourceTypeLike = null; public ArrayList SourceTypeBetween = null; public ArrayList SourceTypeIn = null; public String BatchNo = null; public String BatchNoStartsWith = null; public String BatchNoEndsWith = null; public String BatchNoContains = null; public String BatchNoLike = null; public ArrayList BatchNoBetween = null; public ArrayList BatchNoIn = null; public String JobCostStage = null; public String JobCostStageStartsWith = null; public String JobCostStageEndsWith = null; public String JobCostStageContains = null; public String JobCostStageLike = null; public ArrayList JobCostStageBetween = null; public ArrayList JobCostStageIn = null; public String Item = null; public String ItemStartsWith = null; public String ItemEndsWith = null; public String ItemContains = null; public String ItemLike = null; public ArrayList ItemBetween = null; public ArrayList ItemIn = null; public String Description = null; public String DescriptionStartsWith = null; public String DescriptionEndsWith = null; public String DescriptionContains = null; public String DescriptionLike = null; public ArrayList DescriptionBetween = null; public ArrayList DescriptionIn = null; public Date TranDate = null; public Date TranDateGreaterThanOrEqualTo = null; public Date TranDateGreaterThan = null; public Date TranDateLessThan = null; public Date TranDateLessThanOrEqualTo = null; public Date TranDateNotEqualTo = null; public ArrayList TranDateBetween = null; public ArrayList TranDateIn = null; public BigDecimal Qty = null; public BigDecimal QtyGreaterThanOrEqualTo = null; public BigDecimal QtyGreaterThan = null; public BigDecimal QtyLessThan = null; public BigDecimal QtyLessThanOrEqualTo = null; public BigDecimal QtyNotEqualTo = null; public ArrayList QtyBetween = null; public ArrayList QtyIn = null; public BigDecimal TotalCost = null; public BigDecimal TotalCostGreaterThanOrEqualTo = null; public BigDecimal TotalCostGreaterThan = null; public BigDecimal TotalCostLessThan = null; public BigDecimal TotalCostLessThanOrEqualTo = null; public BigDecimal TotalCostNotEqualTo = null; public ArrayList TotalCostBetween = null; public ArrayList TotalCostIn = null; public BigDecimal TotalCharge = null; public BigDecimal TotalChargeGreaterThanOrEqualTo = null; public BigDecimal TotalChargeGreaterThan = null; public BigDecimal TotalChargeLessThan = null; public BigDecimal TotalChargeLessThanOrEqualTo = null; public BigDecimal TotalChargeNotEqualTo = null; public ArrayList TotalChargeBetween = null; public ArrayList TotalChargeIn = null; public String Remark = null; public String RemarkStartsWith = null; public String RemarkEndsWith = null; public String RemarkContains = null; public String RemarkLike = null; public ArrayList RemarkBetween = null; public ArrayList RemarkIn = null; public String JobNo = null; public String JobNoStartsWith = null; public String JobNoEndsWith = null; public String JobNoContains = null; public String JobNoLike = null; public ArrayList JobNoBetween = null; public ArrayList JobNoIn = null; public String getSourceType() { return SourceType; } public v_JB_LabourQuery setSourceType(String value) { this.SourceType = value; return this; } public String getSourceTypeStartsWith() { return SourceTypeStartsWith; } public v_JB_LabourQuery setSourceTypeStartsWith(String value) { this.SourceTypeStartsWith = value; return this; } public String getSourceTypeEndsWith() { return SourceTypeEndsWith; } public v_JB_LabourQuery setSourceTypeEndsWith(String value) { this.SourceTypeEndsWith = value; return this; } public String getSourceTypeContains() { return SourceTypeContains; } public v_JB_LabourQuery setSourceTypeContains(String value) { this.SourceTypeContains = value; return this; } public String getSourceTypeLike() { return SourceTypeLike; } public v_JB_LabourQuery setSourceTypeLike(String value) { this.SourceTypeLike = value; return this; } public ArrayList getSourceTypeBetween() { return SourceTypeBetween; } public v_JB_LabourQuery setSourceTypeBetween(ArrayList value) { this.SourceTypeBetween = value; return this; } public ArrayList getSourceTypeIn() { return SourceTypeIn; } public v_JB_LabourQuery setSourceTypeIn(ArrayList value) { this.SourceTypeIn = value; return this; } public String getBatchNo() { return BatchNo; } public v_JB_LabourQuery setBatchNo(String value) { this.BatchNo = value; return this; } public String getBatchNoStartsWith() { return BatchNoStartsWith; } public v_JB_LabourQuery setBatchNoStartsWith(String value) { this.BatchNoStartsWith = value; return this; } public String getBatchNoEndsWith() { return BatchNoEndsWith; } public v_JB_LabourQuery setBatchNoEndsWith(String value) { this.BatchNoEndsWith = value; return this; } public String getBatchNoContains() { return BatchNoContains; } public v_JB_LabourQuery setBatchNoContains(String value) { this.BatchNoContains = value; return this; } public String getBatchNoLike() { return BatchNoLike; } public v_JB_LabourQuery setBatchNoLike(String value) { this.BatchNoLike = value; return this; } public ArrayList getBatchNoBetween() { return BatchNoBetween; } public v_JB_LabourQuery setBatchNoBetween(ArrayList value) { this.BatchNoBetween = value; return this; } public ArrayList getBatchNoIn() { return BatchNoIn; } public v_JB_LabourQuery setBatchNoIn(ArrayList value) { this.BatchNoIn = value; return this; } public String getJobCostStage() { return JobCostStage; } public v_JB_LabourQuery setJobCostStage(String value) { this.JobCostStage = value; return this; } public String getJobCostStageStartsWith() { return JobCostStageStartsWith; } public v_JB_LabourQuery setJobCostStageStartsWith(String value) { this.JobCostStageStartsWith = value; return this; } public String getJobCostStageEndsWith() { return JobCostStageEndsWith; } public v_JB_LabourQuery setJobCostStageEndsWith(String value) { this.JobCostStageEndsWith = value; return this; } public String getJobCostStageContains() { return JobCostStageContains; } public v_JB_LabourQuery setJobCostStageContains(String value) { this.JobCostStageContains = value; return this; } public String getJobCostStageLike() { return JobCostStageLike; } public v_JB_LabourQuery setJobCostStageLike(String value) { this.JobCostStageLike = value; return this; } public ArrayList getJobCostStageBetween() { return JobCostStageBetween; } public v_JB_LabourQuery setJobCostStageBetween(ArrayList value) { this.JobCostStageBetween = value; return this; } public ArrayList getJobCostStageIn() { return JobCostStageIn; } public v_JB_LabourQuery setJobCostStageIn(ArrayList value) { this.JobCostStageIn = value; return this; } public String getItem() { return Item; } public v_JB_LabourQuery setItem(String value) { this.Item = value; return this; } public String getItemStartsWith() { return ItemStartsWith; } public v_JB_LabourQuery setItemStartsWith(String value) { this.ItemStartsWith = value; return this; } public String getItemEndsWith() { return ItemEndsWith; } public v_JB_LabourQuery setItemEndsWith(String value) { this.ItemEndsWith = value; return this; } public String getItemContains() { return ItemContains; } public v_JB_LabourQuery setItemContains(String value) { this.ItemContains = value; return this; } public String getItemLike() { return ItemLike; } public v_JB_LabourQuery setItemLike(String value) { this.ItemLike = value; return this; } public ArrayList getItemBetween() { return ItemBetween; } public v_JB_LabourQuery setItemBetween(ArrayList value) { this.ItemBetween = value; return this; } public ArrayList getItemIn() { return ItemIn; } public v_JB_LabourQuery setItemIn(ArrayList value) { this.ItemIn = value; return this; } public String getDescription() { return Description; } public v_JB_LabourQuery setDescription(String value) { this.Description = value; return this; } public String getDescriptionStartsWith() { return DescriptionStartsWith; } public v_JB_LabourQuery setDescriptionStartsWith(String value) { this.DescriptionStartsWith = value; return this; } public String getDescriptionEndsWith() { return DescriptionEndsWith; } public v_JB_LabourQuery setDescriptionEndsWith(String value) { this.DescriptionEndsWith = value; return this; } public String getDescriptionContains() { return DescriptionContains; } public v_JB_LabourQuery setDescriptionContains(String value) { this.DescriptionContains = value; return this; } public String getDescriptionLike() { return DescriptionLike; } public v_JB_LabourQuery setDescriptionLike(String value) { this.DescriptionLike = value; return this; } public ArrayList getDescriptionBetween() { return DescriptionBetween; } public v_JB_LabourQuery setDescriptionBetween(ArrayList value) { this.DescriptionBetween = value; return this; } public ArrayList getDescriptionIn() { return DescriptionIn; } public v_JB_LabourQuery setDescriptionIn(ArrayList value) { this.DescriptionIn = value; return this; } public Date getTranDate() { return TranDate; } public v_JB_LabourQuery setTranDate(Date value) { this.TranDate = value; return this; } public Date getTranDateGreaterThanOrEqualTo() { return TranDateGreaterThanOrEqualTo; } public v_JB_LabourQuery setTranDateGreaterThanOrEqualTo(Date value) { this.TranDateGreaterThanOrEqualTo = value; return this; } public Date getTranDateGreaterThan() { return TranDateGreaterThan; } public v_JB_LabourQuery setTranDateGreaterThan(Date value) { this.TranDateGreaterThan = value; return this; } public Date getTranDateLessThan() { return TranDateLessThan; } public v_JB_LabourQuery setTranDateLessThan(Date value) { this.TranDateLessThan = value; return this; } public Date getTranDateLessThanOrEqualTo() { return TranDateLessThanOrEqualTo; } public v_JB_LabourQuery setTranDateLessThanOrEqualTo(Date value) { this.TranDateLessThanOrEqualTo = value; return this; } public Date getTranDateNotEqualTo() { return TranDateNotEqualTo; } public v_JB_LabourQuery setTranDateNotEqualTo(Date value) { this.TranDateNotEqualTo = value; return this; } public ArrayList getTranDateBetween() { return TranDateBetween; } public v_JB_LabourQuery setTranDateBetween(ArrayList value) { this.TranDateBetween = value; return this; } public ArrayList getTranDateIn() { return TranDateIn; } public v_JB_LabourQuery setTranDateIn(ArrayList value) { this.TranDateIn = value; return this; } public BigDecimal getQty() { return Qty; } public v_JB_LabourQuery setQty(BigDecimal value) { this.Qty = value; return this; } public BigDecimal getQtyGreaterThanOrEqualTo() { return QtyGreaterThanOrEqualTo; } public v_JB_LabourQuery setQtyGreaterThanOrEqualTo(BigDecimal value) { this.QtyGreaterThanOrEqualTo = value; return this; } public BigDecimal getQtyGreaterThan() { return QtyGreaterThan; } public v_JB_LabourQuery setQtyGreaterThan(BigDecimal value) { this.QtyGreaterThan = value; return this; } public BigDecimal getQtyLessThan() { return QtyLessThan; } public v_JB_LabourQuery setQtyLessThan(BigDecimal value) { this.QtyLessThan = value; return this; } public BigDecimal getQtyLessThanOrEqualTo() { return QtyLessThanOrEqualTo; } public v_JB_LabourQuery setQtyLessThanOrEqualTo(BigDecimal value) { this.QtyLessThanOrEqualTo = value; return this; } public BigDecimal getQtyNotEqualTo() { return QtyNotEqualTo; } public v_JB_LabourQuery setQtyNotEqualTo(BigDecimal value) { this.QtyNotEqualTo = value; return this; } public ArrayList getQtyBetween() { return QtyBetween; } public v_JB_LabourQuery setQtyBetween(ArrayList value) { this.QtyBetween = value; return this; } public ArrayList getQtyIn() { return QtyIn; } public v_JB_LabourQuery setQtyIn(ArrayList value) { this.QtyIn = value; return this; } public BigDecimal getTotalCost() { return TotalCost; } public v_JB_LabourQuery setTotalCost(BigDecimal value) { this.TotalCost = value; return this; } public BigDecimal getTotalCostGreaterThanOrEqualTo() { return TotalCostGreaterThanOrEqualTo; } public v_JB_LabourQuery setTotalCostGreaterThanOrEqualTo(BigDecimal value) { this.TotalCostGreaterThanOrEqualTo = value; return this; } public BigDecimal getTotalCostGreaterThan() { return TotalCostGreaterThan; } public v_JB_LabourQuery setTotalCostGreaterThan(BigDecimal value) { this.TotalCostGreaterThan = value; return this; } public BigDecimal getTotalCostLessThan() { return TotalCostLessThan; } public v_JB_LabourQuery setTotalCostLessThan(BigDecimal value) { this.TotalCostLessThan = value; return this; } public BigDecimal getTotalCostLessThanOrEqualTo() { return TotalCostLessThanOrEqualTo; } public v_JB_LabourQuery setTotalCostLessThanOrEqualTo(BigDecimal value) { this.TotalCostLessThanOrEqualTo = value; return this; } public BigDecimal getTotalCostNotEqualTo() { return TotalCostNotEqualTo; } public v_JB_LabourQuery setTotalCostNotEqualTo(BigDecimal value) { this.TotalCostNotEqualTo = value; return this; } public ArrayList getTotalCostBetween() { return TotalCostBetween; } public v_JB_LabourQuery setTotalCostBetween(ArrayList value) { this.TotalCostBetween = value; return this; } public ArrayList getTotalCostIn() { return TotalCostIn; } public v_JB_LabourQuery setTotalCostIn(ArrayList value) { this.TotalCostIn = value; return this; } public BigDecimal getTotalCharge() { return TotalCharge; } public v_JB_LabourQuery setTotalCharge(BigDecimal value) { this.TotalCharge = value; return this; } public BigDecimal getTotalChargeGreaterThanOrEqualTo() { return TotalChargeGreaterThanOrEqualTo; } public v_JB_LabourQuery setTotalChargeGreaterThanOrEqualTo(BigDecimal value) { this.TotalChargeGreaterThanOrEqualTo = value; return this; } public BigDecimal getTotalChargeGreaterThan() { return TotalChargeGreaterThan; } public v_JB_LabourQuery setTotalChargeGreaterThan(BigDecimal value) { this.TotalChargeGreaterThan = value; return this; } public BigDecimal getTotalChargeLessThan() { return TotalChargeLessThan; } public v_JB_LabourQuery setTotalChargeLessThan(BigDecimal value) { this.TotalChargeLessThan = value; return this; } public BigDecimal getTotalChargeLessThanOrEqualTo() { return TotalChargeLessThanOrEqualTo; } public v_JB_LabourQuery setTotalChargeLessThanOrEqualTo(BigDecimal value) { this.TotalChargeLessThanOrEqualTo = value; return this; } public BigDecimal getTotalChargeNotEqualTo() { return TotalChargeNotEqualTo; } public v_JB_LabourQuery setTotalChargeNotEqualTo(BigDecimal value) { this.TotalChargeNotEqualTo = value; return this; } public ArrayList getTotalChargeBetween() { return TotalChargeBetween; } public v_JB_LabourQuery setTotalChargeBetween(ArrayList value) { this.TotalChargeBetween = value; return this; } public ArrayList getTotalChargeIn() { return TotalChargeIn; } public v_JB_LabourQuery setTotalChargeIn(ArrayList value) { this.TotalChargeIn = value; return this; } public String getRemark() { return Remark; } public v_JB_LabourQuery setRemark(String value) { this.Remark = value; return this; } public String getRemarkStartsWith() { return RemarkStartsWith; } public v_JB_LabourQuery setRemarkStartsWith(String value) { this.RemarkStartsWith = value; return this; } public String getRemarkEndsWith() { return RemarkEndsWith; } public v_JB_LabourQuery setRemarkEndsWith(String value) { this.RemarkEndsWith = value; return this; } public String getRemarkContains() { return RemarkContains; } public v_JB_LabourQuery setRemarkContains(String value) { this.RemarkContains = value; return this; } public String getRemarkLike() { return RemarkLike; } public v_JB_LabourQuery setRemarkLike(String value) { this.RemarkLike = value; return this; } public ArrayList getRemarkBetween() { return RemarkBetween; } public v_JB_LabourQuery setRemarkBetween(ArrayList value) { this.RemarkBetween = value; return this; } public ArrayList getRemarkIn() { return RemarkIn; } public v_JB_LabourQuery setRemarkIn(ArrayList value) { this.RemarkIn = value; return this; } public String getJobNo() { return JobNo; } public v_JB_LabourQuery setJobNo(String value) { this.JobNo = value; return this; } public String getJobNoStartsWith() { return JobNoStartsWith; } public v_JB_LabourQuery setJobNoStartsWith(String value) { this.JobNoStartsWith = value; return this; } public String getJobNoEndsWith() { return JobNoEndsWith; } public v_JB_LabourQuery setJobNoEndsWith(String value) { this.JobNoEndsWith = value; return this; } public String getJobNoContains() { return JobNoContains; } public v_JB_LabourQuery setJobNoContains(String value) { this.JobNoContains = value; return this; } public String getJobNoLike() { return JobNoLike; } public v_JB_LabourQuery setJobNoLike(String value) { this.JobNoLike = value; return this; } public ArrayList getJobNoBetween() { return JobNoBetween; } public v_JB_LabourQuery setJobNoBetween(ArrayList value) { this.JobNoBetween = value; return this; } public ArrayList getJobNoIn() { return JobNoIn; } public v_JB_LabourQuery setJobNoIn(ArrayList value) { this.JobNoIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class v_JB_LabourEstimateTotalsToDateQuery extends QueryDb implements IReturn> { public BigDecimal Charge = null; public BigDecimal ChargeGreaterThanOrEqualTo = null; public BigDecimal ChargeGreaterThan = null; public BigDecimal ChargeLessThan = null; public BigDecimal ChargeLessThanOrEqualTo = null; public BigDecimal ChargeNotEqualTo = null; public ArrayList ChargeBetween = null; public ArrayList ChargeIn = null; public BigDecimal Cost = null; public BigDecimal CostGreaterThanOrEqualTo = null; public BigDecimal CostGreaterThan = null; public BigDecimal CostLessThan = null; public BigDecimal CostLessThanOrEqualTo = null; public BigDecimal CostNotEqualTo = null; public ArrayList CostBetween = null; public ArrayList CostIn = null; public BigDecimal Qty = null; public BigDecimal QtyGreaterThanOrEqualTo = null; public BigDecimal QtyGreaterThan = null; public BigDecimal QtyLessThan = null; public BigDecimal QtyLessThanOrEqualTo = null; public BigDecimal QtyNotEqualTo = null; public ArrayList QtyBetween = null; public ArrayList QtyIn = null; public String JobID = null; public String JobIDStartsWith = null; public String JobIDEndsWith = null; public String JobIDContains = null; public String JobIDLike = null; public ArrayList JobIDBetween = null; public ArrayList JobIDIn = null; public Short DefaultEstimate = null; public Short DefaultEstimateGreaterThanOrEqualTo = null; public Short DefaultEstimateGreaterThan = null; public Short DefaultEstimateLessThan = null; public Short DefaultEstimateLessThanOrEqualTo = null; public Short DefaultEstimateNotEqualTo = null; public ArrayList DefaultEstimateBetween = null; public ArrayList DefaultEstimateIn = null; public BigDecimal getCharge() { return Charge; } public v_JB_LabourEstimateTotalsToDateQuery setCharge(BigDecimal value) { this.Charge = value; return this; } public BigDecimal getChargeGreaterThanOrEqualTo() { return ChargeGreaterThanOrEqualTo; } public v_JB_LabourEstimateTotalsToDateQuery setChargeGreaterThanOrEqualTo(BigDecimal value) { this.ChargeGreaterThanOrEqualTo = value; return this; } public BigDecimal getChargeGreaterThan() { return ChargeGreaterThan; } public v_JB_LabourEstimateTotalsToDateQuery setChargeGreaterThan(BigDecimal value) { this.ChargeGreaterThan = value; return this; } public BigDecimal getChargeLessThan() { return ChargeLessThan; } public v_JB_LabourEstimateTotalsToDateQuery setChargeLessThan(BigDecimal value) { this.ChargeLessThan = value; return this; } public BigDecimal getChargeLessThanOrEqualTo() { return ChargeLessThanOrEqualTo; } public v_JB_LabourEstimateTotalsToDateQuery setChargeLessThanOrEqualTo(BigDecimal value) { this.ChargeLessThanOrEqualTo = value; return this; } public BigDecimal getChargeNotEqualTo() { return ChargeNotEqualTo; } public v_JB_LabourEstimateTotalsToDateQuery setChargeNotEqualTo(BigDecimal value) { this.ChargeNotEqualTo = value; return this; } public ArrayList getChargeBetween() { return ChargeBetween; } public v_JB_LabourEstimateTotalsToDateQuery setChargeBetween(ArrayList value) { this.ChargeBetween = value; return this; } public ArrayList getChargeIn() { return ChargeIn; } public v_JB_LabourEstimateTotalsToDateQuery setChargeIn(ArrayList value) { this.ChargeIn = value; return this; } public BigDecimal getCost() { return Cost; } public v_JB_LabourEstimateTotalsToDateQuery setCost(BigDecimal value) { this.Cost = value; return this; } public BigDecimal getCostGreaterThanOrEqualTo() { return CostGreaterThanOrEqualTo; } public v_JB_LabourEstimateTotalsToDateQuery setCostGreaterThanOrEqualTo(BigDecimal value) { this.CostGreaterThanOrEqualTo = value; return this; } public BigDecimal getCostGreaterThan() { return CostGreaterThan; } public v_JB_LabourEstimateTotalsToDateQuery setCostGreaterThan(BigDecimal value) { this.CostGreaterThan = value; return this; } public BigDecimal getCostLessThan() { return CostLessThan; } public v_JB_LabourEstimateTotalsToDateQuery setCostLessThan(BigDecimal value) { this.CostLessThan = value; return this; } public BigDecimal getCostLessThanOrEqualTo() { return CostLessThanOrEqualTo; } public v_JB_LabourEstimateTotalsToDateQuery setCostLessThanOrEqualTo(BigDecimal value) { this.CostLessThanOrEqualTo = value; return this; } public BigDecimal getCostNotEqualTo() { return CostNotEqualTo; } public v_JB_LabourEstimateTotalsToDateQuery setCostNotEqualTo(BigDecimal value) { this.CostNotEqualTo = value; return this; } public ArrayList getCostBetween() { return CostBetween; } public v_JB_LabourEstimateTotalsToDateQuery setCostBetween(ArrayList value) { this.CostBetween = value; return this; } public ArrayList getCostIn() { return CostIn; } public v_JB_LabourEstimateTotalsToDateQuery setCostIn(ArrayList value) { this.CostIn = value; return this; } public BigDecimal getQty() { return Qty; } public v_JB_LabourEstimateTotalsToDateQuery setQty(BigDecimal value) { this.Qty = value; return this; } public BigDecimal getQtyGreaterThanOrEqualTo() { return QtyGreaterThanOrEqualTo; } public v_JB_LabourEstimateTotalsToDateQuery setQtyGreaterThanOrEqualTo(BigDecimal value) { this.QtyGreaterThanOrEqualTo = value; return this; } public BigDecimal getQtyGreaterThan() { return QtyGreaterThan; } public v_JB_LabourEstimateTotalsToDateQuery setQtyGreaterThan(BigDecimal value) { this.QtyGreaterThan = value; return this; } public BigDecimal getQtyLessThan() { return QtyLessThan; } public v_JB_LabourEstimateTotalsToDateQuery setQtyLessThan(BigDecimal value) { this.QtyLessThan = value; return this; } public BigDecimal getQtyLessThanOrEqualTo() { return QtyLessThanOrEqualTo; } public v_JB_LabourEstimateTotalsToDateQuery setQtyLessThanOrEqualTo(BigDecimal value) { this.QtyLessThanOrEqualTo = value; return this; } public BigDecimal getQtyNotEqualTo() { return QtyNotEqualTo; } public v_JB_LabourEstimateTotalsToDateQuery setQtyNotEqualTo(BigDecimal value) { this.QtyNotEqualTo = value; return this; } public ArrayList getQtyBetween() { return QtyBetween; } public v_JB_LabourEstimateTotalsToDateQuery setQtyBetween(ArrayList value) { this.QtyBetween = value; return this; } public ArrayList getQtyIn() { return QtyIn; } public v_JB_LabourEstimateTotalsToDateQuery setQtyIn(ArrayList value) { this.QtyIn = value; return this; } public String getJobID() { return JobID; } public v_JB_LabourEstimateTotalsToDateQuery setJobID(String value) { this.JobID = value; return this; } public String getJobIDStartsWith() { return JobIDStartsWith; } public v_JB_LabourEstimateTotalsToDateQuery setJobIDStartsWith(String value) { this.JobIDStartsWith = value; return this; } public String getJobIDEndsWith() { return JobIDEndsWith; } public v_JB_LabourEstimateTotalsToDateQuery setJobIDEndsWith(String value) { this.JobIDEndsWith = value; return this; } public String getJobIDContains() { return JobIDContains; } public v_JB_LabourEstimateTotalsToDateQuery setJobIDContains(String value) { this.JobIDContains = value; return this; } public String getJobIDLike() { return JobIDLike; } public v_JB_LabourEstimateTotalsToDateQuery setJobIDLike(String value) { this.JobIDLike = value; return this; } public ArrayList getJobIDBetween() { return JobIDBetween; } public v_JB_LabourEstimateTotalsToDateQuery setJobIDBetween(ArrayList value) { this.JobIDBetween = value; return this; } public ArrayList getJobIDIn() { return JobIDIn; } public v_JB_LabourEstimateTotalsToDateQuery setJobIDIn(ArrayList value) { this.JobIDIn = value; return this; } public Short getDefaultEstimate() { return DefaultEstimate; } public v_JB_LabourEstimateTotalsToDateQuery setDefaultEstimate(Short value) { this.DefaultEstimate = value; return this; } public Short getDefaultEstimateGreaterThanOrEqualTo() { return DefaultEstimateGreaterThanOrEqualTo; } public v_JB_LabourEstimateTotalsToDateQuery setDefaultEstimateGreaterThanOrEqualTo(Short value) { this.DefaultEstimateGreaterThanOrEqualTo = value; return this; } public Short getDefaultEstimateGreaterThan() { return DefaultEstimateGreaterThan; } public v_JB_LabourEstimateTotalsToDateQuery setDefaultEstimateGreaterThan(Short value) { this.DefaultEstimateGreaterThan = value; return this; } public Short getDefaultEstimateLessThan() { return DefaultEstimateLessThan; } public v_JB_LabourEstimateTotalsToDateQuery setDefaultEstimateLessThan(Short value) { this.DefaultEstimateLessThan = value; return this; } public Short getDefaultEstimateLessThanOrEqualTo() { return DefaultEstimateLessThanOrEqualTo; } public v_JB_LabourEstimateTotalsToDateQuery setDefaultEstimateLessThanOrEqualTo(Short value) { this.DefaultEstimateLessThanOrEqualTo = value; return this; } public Short getDefaultEstimateNotEqualTo() { return DefaultEstimateNotEqualTo; } public v_JB_LabourEstimateTotalsToDateQuery setDefaultEstimateNotEqualTo(Short value) { this.DefaultEstimateNotEqualTo = value; return this; } public ArrayList getDefaultEstimateBetween() { return DefaultEstimateBetween; } public v_JB_LabourEstimateTotalsToDateQuery setDefaultEstimateBetween(ArrayList value) { this.DefaultEstimateBetween = value; return this; } public ArrayList getDefaultEstimateIn() { return DefaultEstimateIn; } public v_JB_LabourEstimateTotalsToDateQuery setDefaultEstimateIn(ArrayList value) { this.DefaultEstimateIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class v_JB_LabourTotalsToDateQuery extends QueryDb implements IReturn> { public BigDecimal Charge = null; public BigDecimal ChargeGreaterThanOrEqualTo = null; public BigDecimal ChargeGreaterThan = null; public BigDecimal ChargeLessThan = null; public BigDecimal ChargeLessThanOrEqualTo = null; public BigDecimal ChargeNotEqualTo = null; public ArrayList ChargeBetween = null; public ArrayList ChargeIn = null; public BigDecimal Cost = null; public BigDecimal CostGreaterThanOrEqualTo = null; public BigDecimal CostGreaterThan = null; public BigDecimal CostLessThan = null; public BigDecimal CostLessThanOrEqualTo = null; public BigDecimal CostNotEqualTo = null; public ArrayList CostBetween = null; public ArrayList CostIn = null; public BigDecimal Qty = null; public BigDecimal QtyGreaterThanOrEqualTo = null; public BigDecimal QtyGreaterThan = null; public BigDecimal QtyLessThan = null; public BigDecimal QtyLessThanOrEqualTo = null; public BigDecimal QtyNotEqualTo = null; public ArrayList QtyBetween = null; public ArrayList QtyIn = null; public String JobID = null; public String JobIDStartsWith = null; public String JobIDEndsWith = null; public String JobIDContains = null; public String JobIDLike = null; public ArrayList JobIDBetween = null; public ArrayList JobIDIn = null; public BigDecimal getCharge() { return Charge; } public v_JB_LabourTotalsToDateQuery setCharge(BigDecimal value) { this.Charge = value; return this; } public BigDecimal getChargeGreaterThanOrEqualTo() { return ChargeGreaterThanOrEqualTo; } public v_JB_LabourTotalsToDateQuery setChargeGreaterThanOrEqualTo(BigDecimal value) { this.ChargeGreaterThanOrEqualTo = value; return this; } public BigDecimal getChargeGreaterThan() { return ChargeGreaterThan; } public v_JB_LabourTotalsToDateQuery setChargeGreaterThan(BigDecimal value) { this.ChargeGreaterThan = value; return this; } public BigDecimal getChargeLessThan() { return ChargeLessThan; } public v_JB_LabourTotalsToDateQuery setChargeLessThan(BigDecimal value) { this.ChargeLessThan = value; return this; } public BigDecimal getChargeLessThanOrEqualTo() { return ChargeLessThanOrEqualTo; } public v_JB_LabourTotalsToDateQuery setChargeLessThanOrEqualTo(BigDecimal value) { this.ChargeLessThanOrEqualTo = value; return this; } public BigDecimal getChargeNotEqualTo() { return ChargeNotEqualTo; } public v_JB_LabourTotalsToDateQuery setChargeNotEqualTo(BigDecimal value) { this.ChargeNotEqualTo = value; return this; } public ArrayList getChargeBetween() { return ChargeBetween; } public v_JB_LabourTotalsToDateQuery setChargeBetween(ArrayList value) { this.ChargeBetween = value; return this; } public ArrayList getChargeIn() { return ChargeIn; } public v_JB_LabourTotalsToDateQuery setChargeIn(ArrayList value) { this.ChargeIn = value; return this; } public BigDecimal getCost() { return Cost; } public v_JB_LabourTotalsToDateQuery setCost(BigDecimal value) { this.Cost = value; return this; } public BigDecimal getCostGreaterThanOrEqualTo() { return CostGreaterThanOrEqualTo; } public v_JB_LabourTotalsToDateQuery setCostGreaterThanOrEqualTo(BigDecimal value) { this.CostGreaterThanOrEqualTo = value; return this; } public BigDecimal getCostGreaterThan() { return CostGreaterThan; } public v_JB_LabourTotalsToDateQuery setCostGreaterThan(BigDecimal value) { this.CostGreaterThan = value; return this; } public BigDecimal getCostLessThan() { return CostLessThan; } public v_JB_LabourTotalsToDateQuery setCostLessThan(BigDecimal value) { this.CostLessThan = value; return this; } public BigDecimal getCostLessThanOrEqualTo() { return CostLessThanOrEqualTo; } public v_JB_LabourTotalsToDateQuery setCostLessThanOrEqualTo(BigDecimal value) { this.CostLessThanOrEqualTo = value; return this; } public BigDecimal getCostNotEqualTo() { return CostNotEqualTo; } public v_JB_LabourTotalsToDateQuery setCostNotEqualTo(BigDecimal value) { this.CostNotEqualTo = value; return this; } public ArrayList getCostBetween() { return CostBetween; } public v_JB_LabourTotalsToDateQuery setCostBetween(ArrayList value) { this.CostBetween = value; return this; } public ArrayList getCostIn() { return CostIn; } public v_JB_LabourTotalsToDateQuery setCostIn(ArrayList value) { this.CostIn = value; return this; } public BigDecimal getQty() { return Qty; } public v_JB_LabourTotalsToDateQuery setQty(BigDecimal value) { this.Qty = value; return this; } public BigDecimal getQtyGreaterThanOrEqualTo() { return QtyGreaterThanOrEqualTo; } public v_JB_LabourTotalsToDateQuery setQtyGreaterThanOrEqualTo(BigDecimal value) { this.QtyGreaterThanOrEqualTo = value; return this; } public BigDecimal getQtyGreaterThan() { return QtyGreaterThan; } public v_JB_LabourTotalsToDateQuery setQtyGreaterThan(BigDecimal value) { this.QtyGreaterThan = value; return this; } public BigDecimal getQtyLessThan() { return QtyLessThan; } public v_JB_LabourTotalsToDateQuery setQtyLessThan(BigDecimal value) { this.QtyLessThan = value; return this; } public BigDecimal getQtyLessThanOrEqualTo() { return QtyLessThanOrEqualTo; } public v_JB_LabourTotalsToDateQuery setQtyLessThanOrEqualTo(BigDecimal value) { this.QtyLessThanOrEqualTo = value; return this; } public BigDecimal getQtyNotEqualTo() { return QtyNotEqualTo; } public v_JB_LabourTotalsToDateQuery setQtyNotEqualTo(BigDecimal value) { this.QtyNotEqualTo = value; return this; } public ArrayList getQtyBetween() { return QtyBetween; } public v_JB_LabourTotalsToDateQuery setQtyBetween(ArrayList value) { this.QtyBetween = value; return this; } public ArrayList getQtyIn() { return QtyIn; } public v_JB_LabourTotalsToDateQuery setQtyIn(ArrayList value) { this.QtyIn = value; return this; } public String getJobID() { return JobID; } public v_JB_LabourTotalsToDateQuery setJobID(String value) { this.JobID = value; return this; } public String getJobIDStartsWith() { return JobIDStartsWith; } public v_JB_LabourTotalsToDateQuery setJobIDStartsWith(String value) { this.JobIDStartsWith = value; return this; } public String getJobIDEndsWith() { return JobIDEndsWith; } public v_JB_LabourTotalsToDateQuery setJobIDEndsWith(String value) { this.JobIDEndsWith = value; return this; } public String getJobIDContains() { return JobIDContains; } public v_JB_LabourTotalsToDateQuery setJobIDContains(String value) { this.JobIDContains = value; return this; } public String getJobIDLike() { return JobIDLike; } public v_JB_LabourTotalsToDateQuery setJobIDLike(String value) { this.JobIDLike = value; return this; } public ArrayList getJobIDBetween() { return JobIDBetween; } public v_JB_LabourTotalsToDateQuery setJobIDBetween(ArrayList value) { this.JobIDBetween = value; return this; } public ArrayList getJobIDIn() { return JobIDIn; } public v_JB_LabourTotalsToDateQuery setJobIDIn(ArrayList value) { this.JobIDIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class v_JB_LastInvoiceDateQuery extends QueryDb implements IReturn> { public String JobID = null; public String JobIDStartsWith = null; public String JobIDEndsWith = null; public String JobIDContains = null; public String JobIDLike = null; public ArrayList JobIDBetween = null; public ArrayList JobIDIn = null; public Date LastInvoiceDate = null; public Date LastInvoiceDateGreaterThanOrEqualTo = null; public Date LastInvoiceDateGreaterThan = null; public Date LastInvoiceDateLessThan = null; public Date LastInvoiceDateLessThanOrEqualTo = null; public Date LastInvoiceDateNotEqualTo = null; public ArrayList LastInvoiceDateBetween = null; public ArrayList LastInvoiceDateIn = null; public String getJobID() { return JobID; } public v_JB_LastInvoiceDateQuery setJobID(String value) { this.JobID = value; return this; } public String getJobIDStartsWith() { return JobIDStartsWith; } public v_JB_LastInvoiceDateQuery setJobIDStartsWith(String value) { this.JobIDStartsWith = value; return this; } public String getJobIDEndsWith() { return JobIDEndsWith; } public v_JB_LastInvoiceDateQuery setJobIDEndsWith(String value) { this.JobIDEndsWith = value; return this; } public String getJobIDContains() { return JobIDContains; } public v_JB_LastInvoiceDateQuery setJobIDContains(String value) { this.JobIDContains = value; return this; } public String getJobIDLike() { return JobIDLike; } public v_JB_LastInvoiceDateQuery setJobIDLike(String value) { this.JobIDLike = value; return this; } public ArrayList getJobIDBetween() { return JobIDBetween; } public v_JB_LastInvoiceDateQuery setJobIDBetween(ArrayList value) { this.JobIDBetween = value; return this; } public ArrayList getJobIDIn() { return JobIDIn; } public v_JB_LastInvoiceDateQuery setJobIDIn(ArrayList value) { this.JobIDIn = value; return this; } public Date getLastInvoiceDate() { return LastInvoiceDate; } public v_JB_LastInvoiceDateQuery setLastInvoiceDate(Date value) { this.LastInvoiceDate = value; return this; } public Date getLastInvoiceDateGreaterThanOrEqualTo() { return LastInvoiceDateGreaterThanOrEqualTo; } public v_JB_LastInvoiceDateQuery setLastInvoiceDateGreaterThanOrEqualTo(Date value) { this.LastInvoiceDateGreaterThanOrEqualTo = value; return this; } public Date getLastInvoiceDateGreaterThan() { return LastInvoiceDateGreaterThan; } public v_JB_LastInvoiceDateQuery setLastInvoiceDateGreaterThan(Date value) { this.LastInvoiceDateGreaterThan = value; return this; } public Date getLastInvoiceDateLessThan() { return LastInvoiceDateLessThan; } public v_JB_LastInvoiceDateQuery setLastInvoiceDateLessThan(Date value) { this.LastInvoiceDateLessThan = value; return this; } public Date getLastInvoiceDateLessThanOrEqualTo() { return LastInvoiceDateLessThanOrEqualTo; } public v_JB_LastInvoiceDateQuery setLastInvoiceDateLessThanOrEqualTo(Date value) { this.LastInvoiceDateLessThanOrEqualTo = value; return this; } public Date getLastInvoiceDateNotEqualTo() { return LastInvoiceDateNotEqualTo; } public v_JB_LastInvoiceDateQuery setLastInvoiceDateNotEqualTo(Date value) { this.LastInvoiceDateNotEqualTo = value; return this; } public ArrayList getLastInvoiceDateBetween() { return LastInvoiceDateBetween; } public v_JB_LastInvoiceDateQuery setLastInvoiceDateBetween(ArrayList value) { this.LastInvoiceDateBetween = value; return this; } public ArrayList getLastInvoiceDateIn() { return LastInvoiceDateIn; } public v_JB_LastInvoiceDateQuery setLastInvoiceDateIn(ArrayList value) { this.LastInvoiceDateIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class v_JB_MainQuery extends QueryDb implements IReturn> { public String JobID = null; public String JobIDStartsWith = null; public String JobIDEndsWith = null; public String JobIDContains = null; public String JobIDLike = null; public ArrayList JobIDBetween = null; public ArrayList JobIDIn = null; public String JobNo = null; public String JobNoStartsWith = null; public String JobNoEndsWith = null; public String JobNoContains = null; public String JobNoLike = null; public ArrayList JobNoBetween = null; public ArrayList JobNoIn = null; public String Description = null; public String DescriptionStartsWith = null; public String DescriptionEndsWith = null; public String DescriptionContains = null; public String DescriptionLike = null; public ArrayList DescriptionBetween = null; public ArrayList DescriptionIn = null; public String JobGroup = null; public String JobGroupStartsWith = null; public String JobGroupEndsWith = null; public String JobGroupContains = null; public String JobGroupLike = null; public ArrayList JobGroupBetween = null; public ArrayList JobGroupIn = null; public String AccountNo = null; public String AccountNoStartsWith = null; public String AccountNoEndsWith = null; public String AccountNoContains = null; public String AccountNoLike = null; public ArrayList AccountNoBetween = null; public ArrayList AccountNoIn = null; public String Name = null; public String NameStartsWith = null; public String NameEndsWith = null; public String NameContains = null; public String NameLike = null; public ArrayList NameBetween = null; public ArrayList NameIn = null; public String OrderNo = null; public String OrderNoStartsWith = null; public String OrderNoEndsWith = null; public String OrderNoContains = null; public String OrderNoLike = null; public ArrayList OrderNoBetween = null; public ArrayList OrderNoIn = null; public Boolean IsTemplate = null; public String Status = null; public String StatusStartsWith = null; public String StatusEndsWith = null; public String StatusContains = null; public String StatusLike = null; public ArrayList StatusBetween = null; public ArrayList StatusIn = null; public Date StartDate = null; public Date StartDateGreaterThanOrEqualTo = null; public Date StartDateGreaterThan = null; public Date StartDateLessThan = null; public Date StartDateLessThanOrEqualTo = null; public Date StartDateNotEqualTo = null; public ArrayList StartDateBetween = null; public ArrayList StartDateIn = null; public Date EstEndDate = null; public Date EstEndDateGreaterThanOrEqualTo = null; public Date EstEndDateGreaterThan = null; public Date EstEndDateLessThan = null; public Date EstEndDateLessThanOrEqualTo = null; public Date EstEndDateNotEqualTo = null; public ArrayList EstEndDateBetween = null; public ArrayList EstEndDateIn = null; public Date EstStartDate = null; public Date EstStartDateGreaterThanOrEqualTo = null; public Date EstStartDateGreaterThan = null; public Date EstStartDateLessThan = null; public Date EstStartDateLessThanOrEqualTo = null; public Date EstStartDateNotEqualTo = null; public ArrayList EstStartDateBetween = null; public ArrayList EstStartDateIn = null; public Date ClosedDate = null; public Date ClosedDateGreaterThanOrEqualTo = null; public Date ClosedDateGreaterThan = null; public Date ClosedDateLessThan = null; public Date ClosedDateLessThanOrEqualTo = null; public Date ClosedDateNotEqualTo = null; public ArrayList ClosedDateBetween = null; public ArrayList ClosedDateIn = null; public Short InventorySellType = null; public Short InventorySellTypeGreaterThanOrEqualTo = null; public Short InventorySellTypeGreaterThan = null; public Short InventorySellTypeLessThan = null; public Short InventorySellTypeLessThanOrEqualTo = null; public Short InventorySellTypeNotEqualTo = null; public ArrayList InventorySellTypeBetween = null; public ArrayList InventorySellTypeIn = null; public BigDecimal ContractAmount = null; public BigDecimal ContractAmountGreaterThanOrEqualTo = null; public BigDecimal ContractAmountGreaterThan = null; public BigDecimal ContractAmountLessThan = null; public BigDecimal ContractAmountLessThanOrEqualTo = null; public BigDecimal ContractAmountNotEqualTo = null; public ArrayList ContractAmountBetween = null; public ArrayList ContractAmountIn = null; public BigDecimal MarkUpMaterials = null; public BigDecimal MarkUpMaterialsGreaterThanOrEqualTo = null; public BigDecimal MarkUpMaterialsGreaterThan = null; public BigDecimal MarkUpMaterialsLessThan = null; public BigDecimal MarkUpMaterialsLessThanOrEqualTo = null; public BigDecimal MarkUpMaterialsNotEqualTo = null; public ArrayList MarkUpMaterialsBetween = null; public ArrayList MarkUpMaterialsIn = null; public BigDecimal MarkUpLabour = null; public BigDecimal MarkUpLabourGreaterThanOrEqualTo = null; public BigDecimal MarkUpLabourGreaterThan = null; public BigDecimal MarkUpLabourLessThan = null; public BigDecimal MarkUpLabourLessThanOrEqualTo = null; public BigDecimal MarkUpLabourNotEqualTo = null; public ArrayList MarkUpLabourBetween = null; public ArrayList MarkUpLabourIn = null; public BigDecimal MarkUpSubContract = null; public BigDecimal MarkUpSubContractGreaterThanOrEqualTo = null; public BigDecimal MarkUpSubContractGreaterThan = null; public BigDecimal MarkUpSubContractLessThan = null; public BigDecimal MarkUpSubContractLessThanOrEqualTo = null; public BigDecimal MarkUpSubContractNotEqualTo = null; public ArrayList MarkUpSubContractBetween = null; public ArrayList MarkUpSubContractIn = null; public BigDecimal MarkUpResource = null; public BigDecimal MarkUpResourceGreaterThanOrEqualTo = null; public BigDecimal MarkUpResourceGreaterThan = null; public BigDecimal MarkUpResourceLessThan = null; public BigDecimal MarkUpResourceLessThanOrEqualTo = null; public BigDecimal MarkUpResourceNotEqualTo = null; public ArrayList MarkUpResourceBetween = null; public ArrayList MarkUpResourceIn = null; public Short RetentionType = null; public Short RetentionTypeGreaterThanOrEqualTo = null; public Short RetentionTypeGreaterThan = null; public Short RetentionTypeLessThan = null; public Short RetentionTypeLessThanOrEqualTo = null; public Short RetentionTypeNotEqualTo = null; public ArrayList RetentionTypeBetween = null; public ArrayList RetentionTypeIn = null; public BigDecimal RetentionValue = null; public BigDecimal RetentionValueGreaterThanOrEqualTo = null; public BigDecimal RetentionValueGreaterThan = null; public BigDecimal RetentionValueLessThan = null; public BigDecimal RetentionValueLessThanOrEqualTo = null; public BigDecimal RetentionValueNotEqualTo = null; public ArrayList RetentionValueBetween = null; public ArrayList RetentionValueIn = null; public Boolean GstApplicable = null; public String Priority = null; public String PriorityStartsWith = null; public String PriorityEndsWith = null; public String PriorityContains = null; public String PriorityLike = null; public ArrayList PriorityBetween = null; public ArrayList PriorityIn = null; public String CostCentreNo = null; public String CostCentreNoStartsWith = null; public String CostCentreNoEndsWith = null; public String CostCentreNoContains = null; public String CostCentreNoLike = null; public ArrayList CostCentreNoBetween = null; public ArrayList CostCentreNoIn = null; public String CostCentreDesc = null; public String CostCentreDescStartsWith = null; public String CostCentreDescEndsWith = null; public String CostCentreDescContains = null; public String CostCentreDescLike = null; public ArrayList CostCentreDescBetween = null; public ArrayList CostCentreDescIn = null; public Boolean CostCentreIsEnabled = null; public String StageNo = null; public String StageNoStartsWith = null; public String StageNoEndsWith = null; public String StageNoContains = null; public String StageNoLike = null; public ArrayList StageNoBetween = null; public ArrayList StageNoIn = null; public String StageDesc = null; public String StageDescStartsWith = null; public String StageDescEndsWith = null; public String StageDescContains = null; public String StageDescLike = null; public ArrayList StageDescBetween = null; public ArrayList StageDescIn = null; public Boolean StageIsEnabled = null; public String ClassDesc = null; public String ClassDescStartsWith = null; public String ClassDescEndsWith = null; public String ClassDescContains = null; public String ClassDescLike = null; public ArrayList ClassDescBetween = null; public ArrayList ClassDescIn = null; public String JobClass = null; public String JobClassStartsWith = null; public String JobClassEndsWith = null; public String JobClassContains = null; public String JobClassLike = null; public ArrayList JobClassBetween = null; public ArrayList JobClassIn = null; public String getJobID() { return JobID; } public v_JB_MainQuery setJobID(String value) { this.JobID = value; return this; } public String getJobIDStartsWith() { return JobIDStartsWith; } public v_JB_MainQuery setJobIDStartsWith(String value) { this.JobIDStartsWith = value; return this; } public String getJobIDEndsWith() { return JobIDEndsWith; } public v_JB_MainQuery setJobIDEndsWith(String value) { this.JobIDEndsWith = value; return this; } public String getJobIDContains() { return JobIDContains; } public v_JB_MainQuery setJobIDContains(String value) { this.JobIDContains = value; return this; } public String getJobIDLike() { return JobIDLike; } public v_JB_MainQuery setJobIDLike(String value) { this.JobIDLike = value; return this; } public ArrayList getJobIDBetween() { return JobIDBetween; } public v_JB_MainQuery setJobIDBetween(ArrayList value) { this.JobIDBetween = value; return this; } public ArrayList getJobIDIn() { return JobIDIn; } public v_JB_MainQuery setJobIDIn(ArrayList value) { this.JobIDIn = value; return this; } public String getJobNo() { return JobNo; } public v_JB_MainQuery setJobNo(String value) { this.JobNo = value; return this; } public String getJobNoStartsWith() { return JobNoStartsWith; } public v_JB_MainQuery setJobNoStartsWith(String value) { this.JobNoStartsWith = value; return this; } public String getJobNoEndsWith() { return JobNoEndsWith; } public v_JB_MainQuery setJobNoEndsWith(String value) { this.JobNoEndsWith = value; return this; } public String getJobNoContains() { return JobNoContains; } public v_JB_MainQuery setJobNoContains(String value) { this.JobNoContains = value; return this; } public String getJobNoLike() { return JobNoLike; } public v_JB_MainQuery setJobNoLike(String value) { this.JobNoLike = value; return this; } public ArrayList getJobNoBetween() { return JobNoBetween; } public v_JB_MainQuery setJobNoBetween(ArrayList value) { this.JobNoBetween = value; return this; } public ArrayList getJobNoIn() { return JobNoIn; } public v_JB_MainQuery setJobNoIn(ArrayList value) { this.JobNoIn = value; return this; } public String getDescription() { return Description; } public v_JB_MainQuery setDescription(String value) { this.Description = value; return this; } public String getDescriptionStartsWith() { return DescriptionStartsWith; } public v_JB_MainQuery setDescriptionStartsWith(String value) { this.DescriptionStartsWith = value; return this; } public String getDescriptionEndsWith() { return DescriptionEndsWith; } public v_JB_MainQuery setDescriptionEndsWith(String value) { this.DescriptionEndsWith = value; return this; } public String getDescriptionContains() { return DescriptionContains; } public v_JB_MainQuery setDescriptionContains(String value) { this.DescriptionContains = value; return this; } public String getDescriptionLike() { return DescriptionLike; } public v_JB_MainQuery setDescriptionLike(String value) { this.DescriptionLike = value; return this; } public ArrayList getDescriptionBetween() { return DescriptionBetween; } public v_JB_MainQuery setDescriptionBetween(ArrayList value) { this.DescriptionBetween = value; return this; } public ArrayList getDescriptionIn() { return DescriptionIn; } public v_JB_MainQuery setDescriptionIn(ArrayList value) { this.DescriptionIn = value; return this; } public String getJobGroup() { return JobGroup; } public v_JB_MainQuery setJobGroup(String value) { this.JobGroup = value; return this; } public String getJobGroupStartsWith() { return JobGroupStartsWith; } public v_JB_MainQuery setJobGroupStartsWith(String value) { this.JobGroupStartsWith = value; return this; } public String getJobGroupEndsWith() { return JobGroupEndsWith; } public v_JB_MainQuery setJobGroupEndsWith(String value) { this.JobGroupEndsWith = value; return this; } public String getJobGroupContains() { return JobGroupContains; } public v_JB_MainQuery setJobGroupContains(String value) { this.JobGroupContains = value; return this; } public String getJobGroupLike() { return JobGroupLike; } public v_JB_MainQuery setJobGroupLike(String value) { this.JobGroupLike = value; return this; } public ArrayList getJobGroupBetween() { return JobGroupBetween; } public v_JB_MainQuery setJobGroupBetween(ArrayList value) { this.JobGroupBetween = value; return this; } public ArrayList getJobGroupIn() { return JobGroupIn; } public v_JB_MainQuery setJobGroupIn(ArrayList value) { this.JobGroupIn = value; return this; } public String getAccountNo() { return AccountNo; } public v_JB_MainQuery setAccountNo(String value) { this.AccountNo = value; return this; } public String getAccountNoStartsWith() { return AccountNoStartsWith; } public v_JB_MainQuery setAccountNoStartsWith(String value) { this.AccountNoStartsWith = value; return this; } public String getAccountNoEndsWith() { return AccountNoEndsWith; } public v_JB_MainQuery setAccountNoEndsWith(String value) { this.AccountNoEndsWith = value; return this; } public String getAccountNoContains() { return AccountNoContains; } public v_JB_MainQuery setAccountNoContains(String value) { this.AccountNoContains = value; return this; } public String getAccountNoLike() { return AccountNoLike; } public v_JB_MainQuery setAccountNoLike(String value) { this.AccountNoLike = value; return this; } public ArrayList getAccountNoBetween() { return AccountNoBetween; } public v_JB_MainQuery setAccountNoBetween(ArrayList value) { this.AccountNoBetween = value; return this; } public ArrayList getAccountNoIn() { return AccountNoIn; } public v_JB_MainQuery setAccountNoIn(ArrayList value) { this.AccountNoIn = value; return this; } public String getName() { return Name; } public v_JB_MainQuery setName(String value) { this.Name = value; return this; } public String getNameStartsWith() { return NameStartsWith; } public v_JB_MainQuery setNameStartsWith(String value) { this.NameStartsWith = value; return this; } public String getNameEndsWith() { return NameEndsWith; } public v_JB_MainQuery setNameEndsWith(String value) { this.NameEndsWith = value; return this; } public String getNameContains() { return NameContains; } public v_JB_MainQuery setNameContains(String value) { this.NameContains = value; return this; } public String getNameLike() { return NameLike; } public v_JB_MainQuery setNameLike(String value) { this.NameLike = value; return this; } public ArrayList getNameBetween() { return NameBetween; } public v_JB_MainQuery setNameBetween(ArrayList value) { this.NameBetween = value; return this; } public ArrayList getNameIn() { return NameIn; } public v_JB_MainQuery setNameIn(ArrayList value) { this.NameIn = value; return this; } public String getOrderNo() { return OrderNo; } public v_JB_MainQuery setOrderNo(String value) { this.OrderNo = value; return this; } public String getOrderNoStartsWith() { return OrderNoStartsWith; } public v_JB_MainQuery setOrderNoStartsWith(String value) { this.OrderNoStartsWith = value; return this; } public String getOrderNoEndsWith() { return OrderNoEndsWith; } public v_JB_MainQuery setOrderNoEndsWith(String value) { this.OrderNoEndsWith = value; return this; } public String getOrderNoContains() { return OrderNoContains; } public v_JB_MainQuery setOrderNoContains(String value) { this.OrderNoContains = value; return this; } public String getOrderNoLike() { return OrderNoLike; } public v_JB_MainQuery setOrderNoLike(String value) { this.OrderNoLike = value; return this; } public ArrayList getOrderNoBetween() { return OrderNoBetween; } public v_JB_MainQuery setOrderNoBetween(ArrayList value) { this.OrderNoBetween = value; return this; } public ArrayList getOrderNoIn() { return OrderNoIn; } public v_JB_MainQuery setOrderNoIn(ArrayList value) { this.OrderNoIn = value; return this; } public Boolean getIsTemplate() { return IsTemplate; } public v_JB_MainQuery setIsTemplate(Boolean value) { this.IsTemplate = value; return this; } public String getStatus() { return Status; } public v_JB_MainQuery setStatus(String value) { this.Status = value; return this; } public String getStatusStartsWith() { return StatusStartsWith; } public v_JB_MainQuery setStatusStartsWith(String value) { this.StatusStartsWith = value; return this; } public String getStatusEndsWith() { return StatusEndsWith; } public v_JB_MainQuery setStatusEndsWith(String value) { this.StatusEndsWith = value; return this; } public String getStatusContains() { return StatusContains; } public v_JB_MainQuery setStatusContains(String value) { this.StatusContains = value; return this; } public String getStatusLike() { return StatusLike; } public v_JB_MainQuery setStatusLike(String value) { this.StatusLike = value; return this; } public ArrayList getStatusBetween() { return StatusBetween; } public v_JB_MainQuery setStatusBetween(ArrayList value) { this.StatusBetween = value; return this; } public ArrayList getStatusIn() { return StatusIn; } public v_JB_MainQuery setStatusIn(ArrayList value) { this.StatusIn = value; return this; } public Date getStartDate() { return StartDate; } public v_JB_MainQuery setStartDate(Date value) { this.StartDate = value; return this; } public Date getStartDateGreaterThanOrEqualTo() { return StartDateGreaterThanOrEqualTo; } public v_JB_MainQuery setStartDateGreaterThanOrEqualTo(Date value) { this.StartDateGreaterThanOrEqualTo = value; return this; } public Date getStartDateGreaterThan() { return StartDateGreaterThan; } public v_JB_MainQuery setStartDateGreaterThan(Date value) { this.StartDateGreaterThan = value; return this; } public Date getStartDateLessThan() { return StartDateLessThan; } public v_JB_MainQuery setStartDateLessThan(Date value) { this.StartDateLessThan = value; return this; } public Date getStartDateLessThanOrEqualTo() { return StartDateLessThanOrEqualTo; } public v_JB_MainQuery setStartDateLessThanOrEqualTo(Date value) { this.StartDateLessThanOrEqualTo = value; return this; } public Date getStartDateNotEqualTo() { return StartDateNotEqualTo; } public v_JB_MainQuery setStartDateNotEqualTo(Date value) { this.StartDateNotEqualTo = value; return this; } public ArrayList getStartDateBetween() { return StartDateBetween; } public v_JB_MainQuery setStartDateBetween(ArrayList value) { this.StartDateBetween = value; return this; } public ArrayList getStartDateIn() { return StartDateIn; } public v_JB_MainQuery setStartDateIn(ArrayList value) { this.StartDateIn = value; return this; } public Date getEstEndDate() { return EstEndDate; } public v_JB_MainQuery setEstEndDate(Date value) { this.EstEndDate = value; return this; } public Date getEstEndDateGreaterThanOrEqualTo() { return EstEndDateGreaterThanOrEqualTo; } public v_JB_MainQuery setEstEndDateGreaterThanOrEqualTo(Date value) { this.EstEndDateGreaterThanOrEqualTo = value; return this; } public Date getEstEndDateGreaterThan() { return EstEndDateGreaterThan; } public v_JB_MainQuery setEstEndDateGreaterThan(Date value) { this.EstEndDateGreaterThan = value; return this; } public Date getEstEndDateLessThan() { return EstEndDateLessThan; } public v_JB_MainQuery setEstEndDateLessThan(Date value) { this.EstEndDateLessThan = value; return this; } public Date getEstEndDateLessThanOrEqualTo() { return EstEndDateLessThanOrEqualTo; } public v_JB_MainQuery setEstEndDateLessThanOrEqualTo(Date value) { this.EstEndDateLessThanOrEqualTo = value; return this; } public Date getEstEndDateNotEqualTo() { return EstEndDateNotEqualTo; } public v_JB_MainQuery setEstEndDateNotEqualTo(Date value) { this.EstEndDateNotEqualTo = value; return this; } public ArrayList getEstEndDateBetween() { return EstEndDateBetween; } public v_JB_MainQuery setEstEndDateBetween(ArrayList value) { this.EstEndDateBetween = value; return this; } public ArrayList getEstEndDateIn() { return EstEndDateIn; } public v_JB_MainQuery setEstEndDateIn(ArrayList value) { this.EstEndDateIn = value; return this; } public Date getEstStartDate() { return EstStartDate; } public v_JB_MainQuery setEstStartDate(Date value) { this.EstStartDate = value; return this; } public Date getEstStartDateGreaterThanOrEqualTo() { return EstStartDateGreaterThanOrEqualTo; } public v_JB_MainQuery setEstStartDateGreaterThanOrEqualTo(Date value) { this.EstStartDateGreaterThanOrEqualTo = value; return this; } public Date getEstStartDateGreaterThan() { return EstStartDateGreaterThan; } public v_JB_MainQuery setEstStartDateGreaterThan(Date value) { this.EstStartDateGreaterThan = value; return this; } public Date getEstStartDateLessThan() { return EstStartDateLessThan; } public v_JB_MainQuery setEstStartDateLessThan(Date value) { this.EstStartDateLessThan = value; return this; } public Date getEstStartDateLessThanOrEqualTo() { return EstStartDateLessThanOrEqualTo; } public v_JB_MainQuery setEstStartDateLessThanOrEqualTo(Date value) { this.EstStartDateLessThanOrEqualTo = value; return this; } public Date getEstStartDateNotEqualTo() { return EstStartDateNotEqualTo; } public v_JB_MainQuery setEstStartDateNotEqualTo(Date value) { this.EstStartDateNotEqualTo = value; return this; } public ArrayList getEstStartDateBetween() { return EstStartDateBetween; } public v_JB_MainQuery setEstStartDateBetween(ArrayList value) { this.EstStartDateBetween = value; return this; } public ArrayList getEstStartDateIn() { return EstStartDateIn; } public v_JB_MainQuery setEstStartDateIn(ArrayList value) { this.EstStartDateIn = value; return this; } public Date getClosedDate() { return ClosedDate; } public v_JB_MainQuery setClosedDate(Date value) { this.ClosedDate = value; return this; } public Date getClosedDateGreaterThanOrEqualTo() { return ClosedDateGreaterThanOrEqualTo; } public v_JB_MainQuery setClosedDateGreaterThanOrEqualTo(Date value) { this.ClosedDateGreaterThanOrEqualTo = value; return this; } public Date getClosedDateGreaterThan() { return ClosedDateGreaterThan; } public v_JB_MainQuery setClosedDateGreaterThan(Date value) { this.ClosedDateGreaterThan = value; return this; } public Date getClosedDateLessThan() { return ClosedDateLessThan; } public v_JB_MainQuery setClosedDateLessThan(Date value) { this.ClosedDateLessThan = value; return this; } public Date getClosedDateLessThanOrEqualTo() { return ClosedDateLessThanOrEqualTo; } public v_JB_MainQuery setClosedDateLessThanOrEqualTo(Date value) { this.ClosedDateLessThanOrEqualTo = value; return this; } public Date getClosedDateNotEqualTo() { return ClosedDateNotEqualTo; } public v_JB_MainQuery setClosedDateNotEqualTo(Date value) { this.ClosedDateNotEqualTo = value; return this; } public ArrayList getClosedDateBetween() { return ClosedDateBetween; } public v_JB_MainQuery setClosedDateBetween(ArrayList value) { this.ClosedDateBetween = value; return this; } public ArrayList getClosedDateIn() { return ClosedDateIn; } public v_JB_MainQuery setClosedDateIn(ArrayList value) { this.ClosedDateIn = value; return this; } public Short getInventorySellType() { return InventorySellType; } public v_JB_MainQuery setInventorySellType(Short value) { this.InventorySellType = value; return this; } public Short getInventorySellTypeGreaterThanOrEqualTo() { return InventorySellTypeGreaterThanOrEqualTo; } public v_JB_MainQuery setInventorySellTypeGreaterThanOrEqualTo(Short value) { this.InventorySellTypeGreaterThanOrEqualTo = value; return this; } public Short getInventorySellTypeGreaterThan() { return InventorySellTypeGreaterThan; } public v_JB_MainQuery setInventorySellTypeGreaterThan(Short value) { this.InventorySellTypeGreaterThan = value; return this; } public Short getInventorySellTypeLessThan() { return InventorySellTypeLessThan; } public v_JB_MainQuery setInventorySellTypeLessThan(Short value) { this.InventorySellTypeLessThan = value; return this; } public Short getInventorySellTypeLessThanOrEqualTo() { return InventorySellTypeLessThanOrEqualTo; } public v_JB_MainQuery setInventorySellTypeLessThanOrEqualTo(Short value) { this.InventorySellTypeLessThanOrEqualTo = value; return this; } public Short getInventorySellTypeNotEqualTo() { return InventorySellTypeNotEqualTo; } public v_JB_MainQuery setInventorySellTypeNotEqualTo(Short value) { this.InventorySellTypeNotEqualTo = value; return this; } public ArrayList getInventorySellTypeBetween() { return InventorySellTypeBetween; } public v_JB_MainQuery setInventorySellTypeBetween(ArrayList value) { this.InventorySellTypeBetween = value; return this; } public ArrayList getInventorySellTypeIn() { return InventorySellTypeIn; } public v_JB_MainQuery setInventorySellTypeIn(ArrayList value) { this.InventorySellTypeIn = value; return this; } public BigDecimal getContractAmount() { return ContractAmount; } public v_JB_MainQuery setContractAmount(BigDecimal value) { this.ContractAmount = value; return this; } public BigDecimal getContractAmountGreaterThanOrEqualTo() { return ContractAmountGreaterThanOrEqualTo; } public v_JB_MainQuery setContractAmountGreaterThanOrEqualTo(BigDecimal value) { this.ContractAmountGreaterThanOrEqualTo = value; return this; } public BigDecimal getContractAmountGreaterThan() { return ContractAmountGreaterThan; } public v_JB_MainQuery setContractAmountGreaterThan(BigDecimal value) { this.ContractAmountGreaterThan = value; return this; } public BigDecimal getContractAmountLessThan() { return ContractAmountLessThan; } public v_JB_MainQuery setContractAmountLessThan(BigDecimal value) { this.ContractAmountLessThan = value; return this; } public BigDecimal getContractAmountLessThanOrEqualTo() { return ContractAmountLessThanOrEqualTo; } public v_JB_MainQuery setContractAmountLessThanOrEqualTo(BigDecimal value) { this.ContractAmountLessThanOrEqualTo = value; return this; } public BigDecimal getContractAmountNotEqualTo() { return ContractAmountNotEqualTo; } public v_JB_MainQuery setContractAmountNotEqualTo(BigDecimal value) { this.ContractAmountNotEqualTo = value; return this; } public ArrayList getContractAmountBetween() { return ContractAmountBetween; } public v_JB_MainQuery setContractAmountBetween(ArrayList value) { this.ContractAmountBetween = value; return this; } public ArrayList getContractAmountIn() { return ContractAmountIn; } public v_JB_MainQuery setContractAmountIn(ArrayList value) { this.ContractAmountIn = value; return this; } public BigDecimal getMarkUpMaterials() { return MarkUpMaterials; } public v_JB_MainQuery setMarkUpMaterials(BigDecimal value) { this.MarkUpMaterials = value; return this; } public BigDecimal getMarkUpMaterialsGreaterThanOrEqualTo() { return MarkUpMaterialsGreaterThanOrEqualTo; } public v_JB_MainQuery setMarkUpMaterialsGreaterThanOrEqualTo(BigDecimal value) { this.MarkUpMaterialsGreaterThanOrEqualTo = value; return this; } public BigDecimal getMarkUpMaterialsGreaterThan() { return MarkUpMaterialsGreaterThan; } public v_JB_MainQuery setMarkUpMaterialsGreaterThan(BigDecimal value) { this.MarkUpMaterialsGreaterThan = value; return this; } public BigDecimal getMarkUpMaterialsLessThan() { return MarkUpMaterialsLessThan; } public v_JB_MainQuery setMarkUpMaterialsLessThan(BigDecimal value) { this.MarkUpMaterialsLessThan = value; return this; } public BigDecimal getMarkUpMaterialsLessThanOrEqualTo() { return MarkUpMaterialsLessThanOrEqualTo; } public v_JB_MainQuery setMarkUpMaterialsLessThanOrEqualTo(BigDecimal value) { this.MarkUpMaterialsLessThanOrEqualTo = value; return this; } public BigDecimal getMarkUpMaterialsNotEqualTo() { return MarkUpMaterialsNotEqualTo; } public v_JB_MainQuery setMarkUpMaterialsNotEqualTo(BigDecimal value) { this.MarkUpMaterialsNotEqualTo = value; return this; } public ArrayList getMarkUpMaterialsBetween() { return MarkUpMaterialsBetween; } public v_JB_MainQuery setMarkUpMaterialsBetween(ArrayList value) { this.MarkUpMaterialsBetween = value; return this; } public ArrayList getMarkUpMaterialsIn() { return MarkUpMaterialsIn; } public v_JB_MainQuery setMarkUpMaterialsIn(ArrayList value) { this.MarkUpMaterialsIn = value; return this; } public BigDecimal getMarkUpLabour() { return MarkUpLabour; } public v_JB_MainQuery setMarkUpLabour(BigDecimal value) { this.MarkUpLabour = value; return this; } public BigDecimal getMarkUpLabourGreaterThanOrEqualTo() { return MarkUpLabourGreaterThanOrEqualTo; } public v_JB_MainQuery setMarkUpLabourGreaterThanOrEqualTo(BigDecimal value) { this.MarkUpLabourGreaterThanOrEqualTo = value; return this; } public BigDecimal getMarkUpLabourGreaterThan() { return MarkUpLabourGreaterThan; } public v_JB_MainQuery setMarkUpLabourGreaterThan(BigDecimal value) { this.MarkUpLabourGreaterThan = value; return this; } public BigDecimal getMarkUpLabourLessThan() { return MarkUpLabourLessThan; } public v_JB_MainQuery setMarkUpLabourLessThan(BigDecimal value) { this.MarkUpLabourLessThan = value; return this; } public BigDecimal getMarkUpLabourLessThanOrEqualTo() { return MarkUpLabourLessThanOrEqualTo; } public v_JB_MainQuery setMarkUpLabourLessThanOrEqualTo(BigDecimal value) { this.MarkUpLabourLessThanOrEqualTo = value; return this; } public BigDecimal getMarkUpLabourNotEqualTo() { return MarkUpLabourNotEqualTo; } public v_JB_MainQuery setMarkUpLabourNotEqualTo(BigDecimal value) { this.MarkUpLabourNotEqualTo = value; return this; } public ArrayList getMarkUpLabourBetween() { return MarkUpLabourBetween; } public v_JB_MainQuery setMarkUpLabourBetween(ArrayList value) { this.MarkUpLabourBetween = value; return this; } public ArrayList getMarkUpLabourIn() { return MarkUpLabourIn; } public v_JB_MainQuery setMarkUpLabourIn(ArrayList value) { this.MarkUpLabourIn = value; return this; } public BigDecimal getMarkUpSubContract() { return MarkUpSubContract; } public v_JB_MainQuery setMarkUpSubContract(BigDecimal value) { this.MarkUpSubContract = value; return this; } public BigDecimal getMarkUpSubContractGreaterThanOrEqualTo() { return MarkUpSubContractGreaterThanOrEqualTo; } public v_JB_MainQuery setMarkUpSubContractGreaterThanOrEqualTo(BigDecimal value) { this.MarkUpSubContractGreaterThanOrEqualTo = value; return this; } public BigDecimal getMarkUpSubContractGreaterThan() { return MarkUpSubContractGreaterThan; } public v_JB_MainQuery setMarkUpSubContractGreaterThan(BigDecimal value) { this.MarkUpSubContractGreaterThan = value; return this; } public BigDecimal getMarkUpSubContractLessThan() { return MarkUpSubContractLessThan; } public v_JB_MainQuery setMarkUpSubContractLessThan(BigDecimal value) { this.MarkUpSubContractLessThan = value; return this; } public BigDecimal getMarkUpSubContractLessThanOrEqualTo() { return MarkUpSubContractLessThanOrEqualTo; } public v_JB_MainQuery setMarkUpSubContractLessThanOrEqualTo(BigDecimal value) { this.MarkUpSubContractLessThanOrEqualTo = value; return this; } public BigDecimal getMarkUpSubContractNotEqualTo() { return MarkUpSubContractNotEqualTo; } public v_JB_MainQuery setMarkUpSubContractNotEqualTo(BigDecimal value) { this.MarkUpSubContractNotEqualTo = value; return this; } public ArrayList getMarkUpSubContractBetween() { return MarkUpSubContractBetween; } public v_JB_MainQuery setMarkUpSubContractBetween(ArrayList value) { this.MarkUpSubContractBetween = value; return this; } public ArrayList getMarkUpSubContractIn() { return MarkUpSubContractIn; } public v_JB_MainQuery setMarkUpSubContractIn(ArrayList value) { this.MarkUpSubContractIn = value; return this; } public BigDecimal getMarkUpResource() { return MarkUpResource; } public v_JB_MainQuery setMarkUpResource(BigDecimal value) { this.MarkUpResource = value; return this; } public BigDecimal getMarkUpResourceGreaterThanOrEqualTo() { return MarkUpResourceGreaterThanOrEqualTo; } public v_JB_MainQuery setMarkUpResourceGreaterThanOrEqualTo(BigDecimal value) { this.MarkUpResourceGreaterThanOrEqualTo = value; return this; } public BigDecimal getMarkUpResourceGreaterThan() { return MarkUpResourceGreaterThan; } public v_JB_MainQuery setMarkUpResourceGreaterThan(BigDecimal value) { this.MarkUpResourceGreaterThan = value; return this; } public BigDecimal getMarkUpResourceLessThan() { return MarkUpResourceLessThan; } public v_JB_MainQuery setMarkUpResourceLessThan(BigDecimal value) { this.MarkUpResourceLessThan = value; return this; } public BigDecimal getMarkUpResourceLessThanOrEqualTo() { return MarkUpResourceLessThanOrEqualTo; } public v_JB_MainQuery setMarkUpResourceLessThanOrEqualTo(BigDecimal value) { this.MarkUpResourceLessThanOrEqualTo = value; return this; } public BigDecimal getMarkUpResourceNotEqualTo() { return MarkUpResourceNotEqualTo; } public v_JB_MainQuery setMarkUpResourceNotEqualTo(BigDecimal value) { this.MarkUpResourceNotEqualTo = value; return this; } public ArrayList getMarkUpResourceBetween() { return MarkUpResourceBetween; } public v_JB_MainQuery setMarkUpResourceBetween(ArrayList value) { this.MarkUpResourceBetween = value; return this; } public ArrayList getMarkUpResourceIn() { return MarkUpResourceIn; } public v_JB_MainQuery setMarkUpResourceIn(ArrayList value) { this.MarkUpResourceIn = value; return this; } public Short getRetentionType() { return RetentionType; } public v_JB_MainQuery setRetentionType(Short value) { this.RetentionType = value; return this; } public Short getRetentionTypeGreaterThanOrEqualTo() { return RetentionTypeGreaterThanOrEqualTo; } public v_JB_MainQuery setRetentionTypeGreaterThanOrEqualTo(Short value) { this.RetentionTypeGreaterThanOrEqualTo = value; return this; } public Short getRetentionTypeGreaterThan() { return RetentionTypeGreaterThan; } public v_JB_MainQuery setRetentionTypeGreaterThan(Short value) { this.RetentionTypeGreaterThan = value; return this; } public Short getRetentionTypeLessThan() { return RetentionTypeLessThan; } public v_JB_MainQuery setRetentionTypeLessThan(Short value) { this.RetentionTypeLessThan = value; return this; } public Short getRetentionTypeLessThanOrEqualTo() { return RetentionTypeLessThanOrEqualTo; } public v_JB_MainQuery setRetentionTypeLessThanOrEqualTo(Short value) { this.RetentionTypeLessThanOrEqualTo = value; return this; } public Short getRetentionTypeNotEqualTo() { return RetentionTypeNotEqualTo; } public v_JB_MainQuery setRetentionTypeNotEqualTo(Short value) { this.RetentionTypeNotEqualTo = value; return this; } public ArrayList getRetentionTypeBetween() { return RetentionTypeBetween; } public v_JB_MainQuery setRetentionTypeBetween(ArrayList value) { this.RetentionTypeBetween = value; return this; } public ArrayList getRetentionTypeIn() { return RetentionTypeIn; } public v_JB_MainQuery setRetentionTypeIn(ArrayList value) { this.RetentionTypeIn = value; return this; } public BigDecimal getRetentionValue() { return RetentionValue; } public v_JB_MainQuery setRetentionValue(BigDecimal value) { this.RetentionValue = value; return this; } public BigDecimal getRetentionValueGreaterThanOrEqualTo() { return RetentionValueGreaterThanOrEqualTo; } public v_JB_MainQuery setRetentionValueGreaterThanOrEqualTo(BigDecimal value) { this.RetentionValueGreaterThanOrEqualTo = value; return this; } public BigDecimal getRetentionValueGreaterThan() { return RetentionValueGreaterThan; } public v_JB_MainQuery setRetentionValueGreaterThan(BigDecimal value) { this.RetentionValueGreaterThan = value; return this; } public BigDecimal getRetentionValueLessThan() { return RetentionValueLessThan; } public v_JB_MainQuery setRetentionValueLessThan(BigDecimal value) { this.RetentionValueLessThan = value; return this; } public BigDecimal getRetentionValueLessThanOrEqualTo() { return RetentionValueLessThanOrEqualTo; } public v_JB_MainQuery setRetentionValueLessThanOrEqualTo(BigDecimal value) { this.RetentionValueLessThanOrEqualTo = value; return this; } public BigDecimal getRetentionValueNotEqualTo() { return RetentionValueNotEqualTo; } public v_JB_MainQuery setRetentionValueNotEqualTo(BigDecimal value) { this.RetentionValueNotEqualTo = value; return this; } public ArrayList getRetentionValueBetween() { return RetentionValueBetween; } public v_JB_MainQuery setRetentionValueBetween(ArrayList value) { this.RetentionValueBetween = value; return this; } public ArrayList getRetentionValueIn() { return RetentionValueIn; } public v_JB_MainQuery setRetentionValueIn(ArrayList value) { this.RetentionValueIn = value; return this; } public Boolean isGstApplicable() { return GstApplicable; } public v_JB_MainQuery setGstApplicable(Boolean value) { this.GstApplicable = value; return this; } public String getPriority() { return Priority; } public v_JB_MainQuery setPriority(String value) { this.Priority = value; return this; } public String getPriorityStartsWith() { return PriorityStartsWith; } public v_JB_MainQuery setPriorityStartsWith(String value) { this.PriorityStartsWith = value; return this; } public String getPriorityEndsWith() { return PriorityEndsWith; } public v_JB_MainQuery setPriorityEndsWith(String value) { this.PriorityEndsWith = value; return this; } public String getPriorityContains() { return PriorityContains; } public v_JB_MainQuery setPriorityContains(String value) { this.PriorityContains = value; return this; } public String getPriorityLike() { return PriorityLike; } public v_JB_MainQuery setPriorityLike(String value) { this.PriorityLike = value; return this; } public ArrayList getPriorityBetween() { return PriorityBetween; } public v_JB_MainQuery setPriorityBetween(ArrayList value) { this.PriorityBetween = value; return this; } public ArrayList getPriorityIn() { return PriorityIn; } public v_JB_MainQuery setPriorityIn(ArrayList value) { this.PriorityIn = value; return this; } public String getCostCentreNo() { return CostCentreNo; } public v_JB_MainQuery setCostCentreNo(String value) { this.CostCentreNo = value; return this; } public String getCostCentreNoStartsWith() { return CostCentreNoStartsWith; } public v_JB_MainQuery setCostCentreNoStartsWith(String value) { this.CostCentreNoStartsWith = value; return this; } public String getCostCentreNoEndsWith() { return CostCentreNoEndsWith; } public v_JB_MainQuery setCostCentreNoEndsWith(String value) { this.CostCentreNoEndsWith = value; return this; } public String getCostCentreNoContains() { return CostCentreNoContains; } public v_JB_MainQuery setCostCentreNoContains(String value) { this.CostCentreNoContains = value; return this; } public String getCostCentreNoLike() { return CostCentreNoLike; } public v_JB_MainQuery setCostCentreNoLike(String value) { this.CostCentreNoLike = value; return this; } public ArrayList getCostCentreNoBetween() { return CostCentreNoBetween; } public v_JB_MainQuery setCostCentreNoBetween(ArrayList value) { this.CostCentreNoBetween = value; return this; } public ArrayList getCostCentreNoIn() { return CostCentreNoIn; } public v_JB_MainQuery setCostCentreNoIn(ArrayList value) { this.CostCentreNoIn = value; return this; } public String getCostCentreDesc() { return CostCentreDesc; } public v_JB_MainQuery setCostCentreDesc(String value) { this.CostCentreDesc = value; return this; } public String getCostCentreDescStartsWith() { return CostCentreDescStartsWith; } public v_JB_MainQuery setCostCentreDescStartsWith(String value) { this.CostCentreDescStartsWith = value; return this; } public String getCostCentreDescEndsWith() { return CostCentreDescEndsWith; } public v_JB_MainQuery setCostCentreDescEndsWith(String value) { this.CostCentreDescEndsWith = value; return this; } public String getCostCentreDescContains() { return CostCentreDescContains; } public v_JB_MainQuery setCostCentreDescContains(String value) { this.CostCentreDescContains = value; return this; } public String getCostCentreDescLike() { return CostCentreDescLike; } public v_JB_MainQuery setCostCentreDescLike(String value) { this.CostCentreDescLike = value; return this; } public ArrayList getCostCentreDescBetween() { return CostCentreDescBetween; } public v_JB_MainQuery setCostCentreDescBetween(ArrayList value) { this.CostCentreDescBetween = value; return this; } public ArrayList getCostCentreDescIn() { return CostCentreDescIn; } public v_JB_MainQuery setCostCentreDescIn(ArrayList value) { this.CostCentreDescIn = value; return this; } public Boolean isCostCentreIsEnabled() { return CostCentreIsEnabled; } public v_JB_MainQuery setCostCentreIsEnabled(Boolean value) { this.CostCentreIsEnabled = value; return this; } public String getStageNo() { return StageNo; } public v_JB_MainQuery setStageNo(String value) { this.StageNo = value; return this; } public String getStageNoStartsWith() { return StageNoStartsWith; } public v_JB_MainQuery setStageNoStartsWith(String value) { this.StageNoStartsWith = value; return this; } public String getStageNoEndsWith() { return StageNoEndsWith; } public v_JB_MainQuery setStageNoEndsWith(String value) { this.StageNoEndsWith = value; return this; } public String getStageNoContains() { return StageNoContains; } public v_JB_MainQuery setStageNoContains(String value) { this.StageNoContains = value; return this; } public String getStageNoLike() { return StageNoLike; } public v_JB_MainQuery setStageNoLike(String value) { this.StageNoLike = value; return this; } public ArrayList getStageNoBetween() { return StageNoBetween; } public v_JB_MainQuery setStageNoBetween(ArrayList value) { this.StageNoBetween = value; return this; } public ArrayList getStageNoIn() { return StageNoIn; } public v_JB_MainQuery setStageNoIn(ArrayList value) { this.StageNoIn = value; return this; } public String getStageDesc() { return StageDesc; } public v_JB_MainQuery setStageDesc(String value) { this.StageDesc = value; return this; } public String getStageDescStartsWith() { return StageDescStartsWith; } public v_JB_MainQuery setStageDescStartsWith(String value) { this.StageDescStartsWith = value; return this; } public String getStageDescEndsWith() { return StageDescEndsWith; } public v_JB_MainQuery setStageDescEndsWith(String value) { this.StageDescEndsWith = value; return this; } public String getStageDescContains() { return StageDescContains; } public v_JB_MainQuery setStageDescContains(String value) { this.StageDescContains = value; return this; } public String getStageDescLike() { return StageDescLike; } public v_JB_MainQuery setStageDescLike(String value) { this.StageDescLike = value; return this; } public ArrayList getStageDescBetween() { return StageDescBetween; } public v_JB_MainQuery setStageDescBetween(ArrayList value) { this.StageDescBetween = value; return this; } public ArrayList getStageDescIn() { return StageDescIn; } public v_JB_MainQuery setStageDescIn(ArrayList value) { this.StageDescIn = value; return this; } public Boolean isStageIsEnabled() { return StageIsEnabled; } public v_JB_MainQuery setStageIsEnabled(Boolean value) { this.StageIsEnabled = value; return this; } public String getClassDesc() { return ClassDesc; } public v_JB_MainQuery setClassDesc(String value) { this.ClassDesc = value; return this; } public String getClassDescStartsWith() { return ClassDescStartsWith; } public v_JB_MainQuery setClassDescStartsWith(String value) { this.ClassDescStartsWith = value; return this; } public String getClassDescEndsWith() { return ClassDescEndsWith; } public v_JB_MainQuery setClassDescEndsWith(String value) { this.ClassDescEndsWith = value; return this; } public String getClassDescContains() { return ClassDescContains; } public v_JB_MainQuery setClassDescContains(String value) { this.ClassDescContains = value; return this; } public String getClassDescLike() { return ClassDescLike; } public v_JB_MainQuery setClassDescLike(String value) { this.ClassDescLike = value; return this; } public ArrayList getClassDescBetween() { return ClassDescBetween; } public v_JB_MainQuery setClassDescBetween(ArrayList value) { this.ClassDescBetween = value; return this; } public ArrayList getClassDescIn() { return ClassDescIn; } public v_JB_MainQuery setClassDescIn(ArrayList value) { this.ClassDescIn = value; return this; } public String getJobClass() { return JobClass; } public v_JB_MainQuery setJobClass(String value) { this.JobClass = value; return this; } public String getJobClassStartsWith() { return JobClassStartsWith; } public v_JB_MainQuery setJobClassStartsWith(String value) { this.JobClassStartsWith = value; return this; } public String getJobClassEndsWith() { return JobClassEndsWith; } public v_JB_MainQuery setJobClassEndsWith(String value) { this.JobClassEndsWith = value; return this; } public String getJobClassContains() { return JobClassContains; } public v_JB_MainQuery setJobClassContains(String value) { this.JobClassContains = value; return this; } public String getJobClassLike() { return JobClassLike; } public v_JB_MainQuery setJobClassLike(String value) { this.JobClassLike = value; return this; } public ArrayList getJobClassBetween() { return JobClassBetween; } public v_JB_MainQuery setJobClassBetween(ArrayList value) { this.JobClassBetween = value; return this; } public ArrayList getJobClassIn() { return JobClassIn; } public v_JB_MainQuery setJobClassIn(ArrayList value) { this.JobClassIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class v_JB_MarginPercentageToDateQuery extends QueryDb implements IReturn> { public BigDecimal MarginPercentage = null; public BigDecimal MarginPercentageGreaterThanOrEqualTo = null; public BigDecimal MarginPercentageGreaterThan = null; public BigDecimal MarginPercentageLessThan = null; public BigDecimal MarginPercentageLessThanOrEqualTo = null; public BigDecimal MarginPercentageNotEqualTo = null; public ArrayList MarginPercentageBetween = null; public ArrayList MarginPercentageIn = null; public String JobID = null; public String JobIDStartsWith = null; public String JobIDEndsWith = null; public String JobIDContains = null; public String JobIDLike = null; public ArrayList JobIDBetween = null; public ArrayList JobIDIn = null; public BigDecimal getMarginPercentage() { return MarginPercentage; } public v_JB_MarginPercentageToDateQuery setMarginPercentage(BigDecimal value) { this.MarginPercentage = value; return this; } public BigDecimal getMarginPercentageGreaterThanOrEqualTo() { return MarginPercentageGreaterThanOrEqualTo; } public v_JB_MarginPercentageToDateQuery setMarginPercentageGreaterThanOrEqualTo(BigDecimal value) { this.MarginPercentageGreaterThanOrEqualTo = value; return this; } public BigDecimal getMarginPercentageGreaterThan() { return MarginPercentageGreaterThan; } public v_JB_MarginPercentageToDateQuery setMarginPercentageGreaterThan(BigDecimal value) { this.MarginPercentageGreaterThan = value; return this; } public BigDecimal getMarginPercentageLessThan() { return MarginPercentageLessThan; } public v_JB_MarginPercentageToDateQuery setMarginPercentageLessThan(BigDecimal value) { this.MarginPercentageLessThan = value; return this; } public BigDecimal getMarginPercentageLessThanOrEqualTo() { return MarginPercentageLessThanOrEqualTo; } public v_JB_MarginPercentageToDateQuery setMarginPercentageLessThanOrEqualTo(BigDecimal value) { this.MarginPercentageLessThanOrEqualTo = value; return this; } public BigDecimal getMarginPercentageNotEqualTo() { return MarginPercentageNotEqualTo; } public v_JB_MarginPercentageToDateQuery setMarginPercentageNotEqualTo(BigDecimal value) { this.MarginPercentageNotEqualTo = value; return this; } public ArrayList getMarginPercentageBetween() { return MarginPercentageBetween; } public v_JB_MarginPercentageToDateQuery setMarginPercentageBetween(ArrayList value) { this.MarginPercentageBetween = value; return this; } public ArrayList getMarginPercentageIn() { return MarginPercentageIn; } public v_JB_MarginPercentageToDateQuery setMarginPercentageIn(ArrayList value) { this.MarginPercentageIn = value; return this; } public String getJobID() { return JobID; } public v_JB_MarginPercentageToDateQuery setJobID(String value) { this.JobID = value; return this; } public String getJobIDStartsWith() { return JobIDStartsWith; } public v_JB_MarginPercentageToDateQuery setJobIDStartsWith(String value) { this.JobIDStartsWith = value; return this; } public String getJobIDEndsWith() { return JobIDEndsWith; } public v_JB_MarginPercentageToDateQuery setJobIDEndsWith(String value) { this.JobIDEndsWith = value; return this; } public String getJobIDContains() { return JobIDContains; } public v_JB_MarginPercentageToDateQuery setJobIDContains(String value) { this.JobIDContains = value; return this; } public String getJobIDLike() { return JobIDLike; } public v_JB_MarginPercentageToDateQuery setJobIDLike(String value) { this.JobIDLike = value; return this; } public ArrayList getJobIDBetween() { return JobIDBetween; } public v_JB_MarginPercentageToDateQuery setJobIDBetween(ArrayList value) { this.JobIDBetween = value; return this; } public ArrayList getJobIDIn() { return JobIDIn; } public v_JB_MarginPercentageToDateQuery setJobIDIn(ArrayList value) { this.JobIDIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class v_JB_MaterialsQuery extends QueryDb implements IReturn> { public String SourceType = null; public String SourceTypeStartsWith = null; public String SourceTypeEndsWith = null; public String SourceTypeContains = null; public String SourceTypeLike = null; public ArrayList SourceTypeBetween = null; public ArrayList SourceTypeIn = null; public String BatchNo = null; public String BatchNoStartsWith = null; public String BatchNoEndsWith = null; public String BatchNoContains = null; public String BatchNoLike = null; public ArrayList BatchNoBetween = null; public ArrayList BatchNoIn = null; public String JobCostStage = null; public String JobCostStageStartsWith = null; public String JobCostStageEndsWith = null; public String JobCostStageContains = null; public String JobCostStageLike = null; public ArrayList JobCostStageBetween = null; public ArrayList JobCostStageIn = null; public String Item = null; public String ItemStartsWith = null; public String ItemEndsWith = null; public String ItemContains = null; public String ItemLike = null; public ArrayList ItemBetween = null; public ArrayList ItemIn = null; public String Description = null; public String DescriptionStartsWith = null; public String DescriptionEndsWith = null; public String DescriptionContains = null; public String DescriptionLike = null; public ArrayList DescriptionBetween = null; public ArrayList DescriptionIn = null; public Date TranDate = null; public Date TranDateGreaterThanOrEqualTo = null; public Date TranDateGreaterThan = null; public Date TranDateLessThan = null; public Date TranDateLessThanOrEqualTo = null; public Date TranDateNotEqualTo = null; public ArrayList TranDateBetween = null; public ArrayList TranDateIn = null; public BigDecimal Qty = null; public BigDecimal QtyGreaterThanOrEqualTo = null; public BigDecimal QtyGreaterThan = null; public BigDecimal QtyLessThan = null; public BigDecimal QtyLessThanOrEqualTo = null; public BigDecimal QtyNotEqualTo = null; public ArrayList QtyBetween = null; public ArrayList QtyIn = null; public BigDecimal TotalCost = null; public BigDecimal TotalCostGreaterThanOrEqualTo = null; public BigDecimal TotalCostGreaterThan = null; public BigDecimal TotalCostLessThan = null; public BigDecimal TotalCostLessThanOrEqualTo = null; public BigDecimal TotalCostNotEqualTo = null; public ArrayList TotalCostBetween = null; public ArrayList TotalCostIn = null; public BigDecimal TotalCharge = null; public BigDecimal TotalChargeGreaterThanOrEqualTo = null; public BigDecimal TotalChargeGreaterThan = null; public BigDecimal TotalChargeLessThan = null; public BigDecimal TotalChargeLessThanOrEqualTo = null; public BigDecimal TotalChargeNotEqualTo = null; public ArrayList TotalChargeBetween = null; public ArrayList TotalChargeIn = null; public String Remark = null; public String RemarkStartsWith = null; public String RemarkEndsWith = null; public String RemarkContains = null; public String RemarkLike = null; public ArrayList RemarkBetween = null; public ArrayList RemarkIn = null; public String JobNo = null; public String JobNoStartsWith = null; public String JobNoEndsWith = null; public String JobNoContains = null; public String JobNoLike = null; public ArrayList JobNoBetween = null; public ArrayList JobNoIn = null; public String getSourceType() { return SourceType; } public v_JB_MaterialsQuery setSourceType(String value) { this.SourceType = value; return this; } public String getSourceTypeStartsWith() { return SourceTypeStartsWith; } public v_JB_MaterialsQuery setSourceTypeStartsWith(String value) { this.SourceTypeStartsWith = value; return this; } public String getSourceTypeEndsWith() { return SourceTypeEndsWith; } public v_JB_MaterialsQuery setSourceTypeEndsWith(String value) { this.SourceTypeEndsWith = value; return this; } public String getSourceTypeContains() { return SourceTypeContains; } public v_JB_MaterialsQuery setSourceTypeContains(String value) { this.SourceTypeContains = value; return this; } public String getSourceTypeLike() { return SourceTypeLike; } public v_JB_MaterialsQuery setSourceTypeLike(String value) { this.SourceTypeLike = value; return this; } public ArrayList getSourceTypeBetween() { return SourceTypeBetween; } public v_JB_MaterialsQuery setSourceTypeBetween(ArrayList value) { this.SourceTypeBetween = value; return this; } public ArrayList getSourceTypeIn() { return SourceTypeIn; } public v_JB_MaterialsQuery setSourceTypeIn(ArrayList value) { this.SourceTypeIn = value; return this; } public String getBatchNo() { return BatchNo; } public v_JB_MaterialsQuery setBatchNo(String value) { this.BatchNo = value; return this; } public String getBatchNoStartsWith() { return BatchNoStartsWith; } public v_JB_MaterialsQuery setBatchNoStartsWith(String value) { this.BatchNoStartsWith = value; return this; } public String getBatchNoEndsWith() { return BatchNoEndsWith; } public v_JB_MaterialsQuery setBatchNoEndsWith(String value) { this.BatchNoEndsWith = value; return this; } public String getBatchNoContains() { return BatchNoContains; } public v_JB_MaterialsQuery setBatchNoContains(String value) { this.BatchNoContains = value; return this; } public String getBatchNoLike() { return BatchNoLike; } public v_JB_MaterialsQuery setBatchNoLike(String value) { this.BatchNoLike = value; return this; } public ArrayList getBatchNoBetween() { return BatchNoBetween; } public v_JB_MaterialsQuery setBatchNoBetween(ArrayList value) { this.BatchNoBetween = value; return this; } public ArrayList getBatchNoIn() { return BatchNoIn; } public v_JB_MaterialsQuery setBatchNoIn(ArrayList value) { this.BatchNoIn = value; return this; } public String getJobCostStage() { return JobCostStage; } public v_JB_MaterialsQuery setJobCostStage(String value) { this.JobCostStage = value; return this; } public String getJobCostStageStartsWith() { return JobCostStageStartsWith; } public v_JB_MaterialsQuery setJobCostStageStartsWith(String value) { this.JobCostStageStartsWith = value; return this; } public String getJobCostStageEndsWith() { return JobCostStageEndsWith; } public v_JB_MaterialsQuery setJobCostStageEndsWith(String value) { this.JobCostStageEndsWith = value; return this; } public String getJobCostStageContains() { return JobCostStageContains; } public v_JB_MaterialsQuery setJobCostStageContains(String value) { this.JobCostStageContains = value; return this; } public String getJobCostStageLike() { return JobCostStageLike; } public v_JB_MaterialsQuery setJobCostStageLike(String value) { this.JobCostStageLike = value; return this; } public ArrayList getJobCostStageBetween() { return JobCostStageBetween; } public v_JB_MaterialsQuery setJobCostStageBetween(ArrayList value) { this.JobCostStageBetween = value; return this; } public ArrayList getJobCostStageIn() { return JobCostStageIn; } public v_JB_MaterialsQuery setJobCostStageIn(ArrayList value) { this.JobCostStageIn = value; return this; } public String getItem() { return Item; } public v_JB_MaterialsQuery setItem(String value) { this.Item = value; return this; } public String getItemStartsWith() { return ItemStartsWith; } public v_JB_MaterialsQuery setItemStartsWith(String value) { this.ItemStartsWith = value; return this; } public String getItemEndsWith() { return ItemEndsWith; } public v_JB_MaterialsQuery setItemEndsWith(String value) { this.ItemEndsWith = value; return this; } public String getItemContains() { return ItemContains; } public v_JB_MaterialsQuery setItemContains(String value) { this.ItemContains = value; return this; } public String getItemLike() { return ItemLike; } public v_JB_MaterialsQuery setItemLike(String value) { this.ItemLike = value; return this; } public ArrayList getItemBetween() { return ItemBetween; } public v_JB_MaterialsQuery setItemBetween(ArrayList value) { this.ItemBetween = value; return this; } public ArrayList getItemIn() { return ItemIn; } public v_JB_MaterialsQuery setItemIn(ArrayList value) { this.ItemIn = value; return this; } public String getDescription() { return Description; } public v_JB_MaterialsQuery setDescription(String value) { this.Description = value; return this; } public String getDescriptionStartsWith() { return DescriptionStartsWith; } public v_JB_MaterialsQuery setDescriptionStartsWith(String value) { this.DescriptionStartsWith = value; return this; } public String getDescriptionEndsWith() { return DescriptionEndsWith; } public v_JB_MaterialsQuery setDescriptionEndsWith(String value) { this.DescriptionEndsWith = value; return this; } public String getDescriptionContains() { return DescriptionContains; } public v_JB_MaterialsQuery setDescriptionContains(String value) { this.DescriptionContains = value; return this; } public String getDescriptionLike() { return DescriptionLike; } public v_JB_MaterialsQuery setDescriptionLike(String value) { this.DescriptionLike = value; return this; } public ArrayList getDescriptionBetween() { return DescriptionBetween; } public v_JB_MaterialsQuery setDescriptionBetween(ArrayList value) { this.DescriptionBetween = value; return this; } public ArrayList getDescriptionIn() { return DescriptionIn; } public v_JB_MaterialsQuery setDescriptionIn(ArrayList value) { this.DescriptionIn = value; return this; } public Date getTranDate() { return TranDate; } public v_JB_MaterialsQuery setTranDate(Date value) { this.TranDate = value; return this; } public Date getTranDateGreaterThanOrEqualTo() { return TranDateGreaterThanOrEqualTo; } public v_JB_MaterialsQuery setTranDateGreaterThanOrEqualTo(Date value) { this.TranDateGreaterThanOrEqualTo = value; return this; } public Date getTranDateGreaterThan() { return TranDateGreaterThan; } public v_JB_MaterialsQuery setTranDateGreaterThan(Date value) { this.TranDateGreaterThan = value; return this; } public Date getTranDateLessThan() { return TranDateLessThan; } public v_JB_MaterialsQuery setTranDateLessThan(Date value) { this.TranDateLessThan = value; return this; } public Date getTranDateLessThanOrEqualTo() { return TranDateLessThanOrEqualTo; } public v_JB_MaterialsQuery setTranDateLessThanOrEqualTo(Date value) { this.TranDateLessThanOrEqualTo = value; return this; } public Date getTranDateNotEqualTo() { return TranDateNotEqualTo; } public v_JB_MaterialsQuery setTranDateNotEqualTo(Date value) { this.TranDateNotEqualTo = value; return this; } public ArrayList getTranDateBetween() { return TranDateBetween; } public v_JB_MaterialsQuery setTranDateBetween(ArrayList value) { this.TranDateBetween = value; return this; } public ArrayList getTranDateIn() { return TranDateIn; } public v_JB_MaterialsQuery setTranDateIn(ArrayList value) { this.TranDateIn = value; return this; } public BigDecimal getQty() { return Qty; } public v_JB_MaterialsQuery setQty(BigDecimal value) { this.Qty = value; return this; } public BigDecimal getQtyGreaterThanOrEqualTo() { return QtyGreaterThanOrEqualTo; } public v_JB_MaterialsQuery setQtyGreaterThanOrEqualTo(BigDecimal value) { this.QtyGreaterThanOrEqualTo = value; return this; } public BigDecimal getQtyGreaterThan() { return QtyGreaterThan; } public v_JB_MaterialsQuery setQtyGreaterThan(BigDecimal value) { this.QtyGreaterThan = value; return this; } public BigDecimal getQtyLessThan() { return QtyLessThan; } public v_JB_MaterialsQuery setQtyLessThan(BigDecimal value) { this.QtyLessThan = value; return this; } public BigDecimal getQtyLessThanOrEqualTo() { return QtyLessThanOrEqualTo; } public v_JB_MaterialsQuery setQtyLessThanOrEqualTo(BigDecimal value) { this.QtyLessThanOrEqualTo = value; return this; } public BigDecimal getQtyNotEqualTo() { return QtyNotEqualTo; } public v_JB_MaterialsQuery setQtyNotEqualTo(BigDecimal value) { this.QtyNotEqualTo = value; return this; } public ArrayList getQtyBetween() { return QtyBetween; } public v_JB_MaterialsQuery setQtyBetween(ArrayList value) { this.QtyBetween = value; return this; } public ArrayList getQtyIn() { return QtyIn; } public v_JB_MaterialsQuery setQtyIn(ArrayList value) { this.QtyIn = value; return this; } public BigDecimal getTotalCost() { return TotalCost; } public v_JB_MaterialsQuery setTotalCost(BigDecimal value) { this.TotalCost = value; return this; } public BigDecimal getTotalCostGreaterThanOrEqualTo() { return TotalCostGreaterThanOrEqualTo; } public v_JB_MaterialsQuery setTotalCostGreaterThanOrEqualTo(BigDecimal value) { this.TotalCostGreaterThanOrEqualTo = value; return this; } public BigDecimal getTotalCostGreaterThan() { return TotalCostGreaterThan; } public v_JB_MaterialsQuery setTotalCostGreaterThan(BigDecimal value) { this.TotalCostGreaterThan = value; return this; } public BigDecimal getTotalCostLessThan() { return TotalCostLessThan; } public v_JB_MaterialsQuery setTotalCostLessThan(BigDecimal value) { this.TotalCostLessThan = value; return this; } public BigDecimal getTotalCostLessThanOrEqualTo() { return TotalCostLessThanOrEqualTo; } public v_JB_MaterialsQuery setTotalCostLessThanOrEqualTo(BigDecimal value) { this.TotalCostLessThanOrEqualTo = value; return this; } public BigDecimal getTotalCostNotEqualTo() { return TotalCostNotEqualTo; } public v_JB_MaterialsQuery setTotalCostNotEqualTo(BigDecimal value) { this.TotalCostNotEqualTo = value; return this; } public ArrayList getTotalCostBetween() { return TotalCostBetween; } public v_JB_MaterialsQuery setTotalCostBetween(ArrayList value) { this.TotalCostBetween = value; return this; } public ArrayList getTotalCostIn() { return TotalCostIn; } public v_JB_MaterialsQuery setTotalCostIn(ArrayList value) { this.TotalCostIn = value; return this; } public BigDecimal getTotalCharge() { return TotalCharge; } public v_JB_MaterialsQuery setTotalCharge(BigDecimal value) { this.TotalCharge = value; return this; } public BigDecimal getTotalChargeGreaterThanOrEqualTo() { return TotalChargeGreaterThanOrEqualTo; } public v_JB_MaterialsQuery setTotalChargeGreaterThanOrEqualTo(BigDecimal value) { this.TotalChargeGreaterThanOrEqualTo = value; return this; } public BigDecimal getTotalChargeGreaterThan() { return TotalChargeGreaterThan; } public v_JB_MaterialsQuery setTotalChargeGreaterThan(BigDecimal value) { this.TotalChargeGreaterThan = value; return this; } public BigDecimal getTotalChargeLessThan() { return TotalChargeLessThan; } public v_JB_MaterialsQuery setTotalChargeLessThan(BigDecimal value) { this.TotalChargeLessThan = value; return this; } public BigDecimal getTotalChargeLessThanOrEqualTo() { return TotalChargeLessThanOrEqualTo; } public v_JB_MaterialsQuery setTotalChargeLessThanOrEqualTo(BigDecimal value) { this.TotalChargeLessThanOrEqualTo = value; return this; } public BigDecimal getTotalChargeNotEqualTo() { return TotalChargeNotEqualTo; } public v_JB_MaterialsQuery setTotalChargeNotEqualTo(BigDecimal value) { this.TotalChargeNotEqualTo = value; return this; } public ArrayList getTotalChargeBetween() { return TotalChargeBetween; } public v_JB_MaterialsQuery setTotalChargeBetween(ArrayList value) { this.TotalChargeBetween = value; return this; } public ArrayList getTotalChargeIn() { return TotalChargeIn; } public v_JB_MaterialsQuery setTotalChargeIn(ArrayList value) { this.TotalChargeIn = value; return this; } public String getRemark() { return Remark; } public v_JB_MaterialsQuery setRemark(String value) { this.Remark = value; return this; } public String getRemarkStartsWith() { return RemarkStartsWith; } public v_JB_MaterialsQuery setRemarkStartsWith(String value) { this.RemarkStartsWith = value; return this; } public String getRemarkEndsWith() { return RemarkEndsWith; } public v_JB_MaterialsQuery setRemarkEndsWith(String value) { this.RemarkEndsWith = value; return this; } public String getRemarkContains() { return RemarkContains; } public v_JB_MaterialsQuery setRemarkContains(String value) { this.RemarkContains = value; return this; } public String getRemarkLike() { return RemarkLike; } public v_JB_MaterialsQuery setRemarkLike(String value) { this.RemarkLike = value; return this; } public ArrayList getRemarkBetween() { return RemarkBetween; } public v_JB_MaterialsQuery setRemarkBetween(ArrayList value) { this.RemarkBetween = value; return this; } public ArrayList getRemarkIn() { return RemarkIn; } public v_JB_MaterialsQuery setRemarkIn(ArrayList value) { this.RemarkIn = value; return this; } public String getJobNo() { return JobNo; } public v_JB_MaterialsQuery setJobNo(String value) { this.JobNo = value; return this; } public String getJobNoStartsWith() { return JobNoStartsWith; } public v_JB_MaterialsQuery setJobNoStartsWith(String value) { this.JobNoStartsWith = value; return this; } public String getJobNoEndsWith() { return JobNoEndsWith; } public v_JB_MaterialsQuery setJobNoEndsWith(String value) { this.JobNoEndsWith = value; return this; } public String getJobNoContains() { return JobNoContains; } public v_JB_MaterialsQuery setJobNoContains(String value) { this.JobNoContains = value; return this; } public String getJobNoLike() { return JobNoLike; } public v_JB_MaterialsQuery setJobNoLike(String value) { this.JobNoLike = value; return this; } public ArrayList getJobNoBetween() { return JobNoBetween; } public v_JB_MaterialsQuery setJobNoBetween(ArrayList value) { this.JobNoBetween = value; return this; } public ArrayList getJobNoIn() { return JobNoIn; } public v_JB_MaterialsQuery setJobNoIn(ArrayList value) { this.JobNoIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class v_JB_MaterialsEstimateTotalsToDateQuery extends QueryDb implements IReturn> { public BigDecimal Charge = null; public BigDecimal ChargeGreaterThanOrEqualTo = null; public BigDecimal ChargeGreaterThan = null; public BigDecimal ChargeLessThan = null; public BigDecimal ChargeLessThanOrEqualTo = null; public BigDecimal ChargeNotEqualTo = null; public ArrayList ChargeBetween = null; public ArrayList ChargeIn = null; public BigDecimal Cost = null; public BigDecimal CostGreaterThanOrEqualTo = null; public BigDecimal CostGreaterThan = null; public BigDecimal CostLessThan = null; public BigDecimal CostLessThanOrEqualTo = null; public BigDecimal CostNotEqualTo = null; public ArrayList CostBetween = null; public ArrayList CostIn = null; public BigDecimal Qty = null; public BigDecimal QtyGreaterThanOrEqualTo = null; public BigDecimal QtyGreaterThan = null; public BigDecimal QtyLessThan = null; public BigDecimal QtyLessThanOrEqualTo = null; public BigDecimal QtyNotEqualTo = null; public ArrayList QtyBetween = null; public ArrayList QtyIn = null; public String JobID = null; public String JobIDStartsWith = null; public String JobIDEndsWith = null; public String JobIDContains = null; public String JobIDLike = null; public ArrayList JobIDBetween = null; public ArrayList JobIDIn = null; public Short DefaultEstimate = null; public Short DefaultEstimateGreaterThanOrEqualTo = null; public Short DefaultEstimateGreaterThan = null; public Short DefaultEstimateLessThan = null; public Short DefaultEstimateLessThanOrEqualTo = null; public Short DefaultEstimateNotEqualTo = null; public ArrayList DefaultEstimateBetween = null; public ArrayList DefaultEstimateIn = null; public BigDecimal getCharge() { return Charge; } public v_JB_MaterialsEstimateTotalsToDateQuery setCharge(BigDecimal value) { this.Charge = value; return this; } public BigDecimal getChargeGreaterThanOrEqualTo() { return ChargeGreaterThanOrEqualTo; } public v_JB_MaterialsEstimateTotalsToDateQuery setChargeGreaterThanOrEqualTo(BigDecimal value) { this.ChargeGreaterThanOrEqualTo = value; return this; } public BigDecimal getChargeGreaterThan() { return ChargeGreaterThan; } public v_JB_MaterialsEstimateTotalsToDateQuery setChargeGreaterThan(BigDecimal value) { this.ChargeGreaterThan = value; return this; } public BigDecimal getChargeLessThan() { return ChargeLessThan; } public v_JB_MaterialsEstimateTotalsToDateQuery setChargeLessThan(BigDecimal value) { this.ChargeLessThan = value; return this; } public BigDecimal getChargeLessThanOrEqualTo() { return ChargeLessThanOrEqualTo; } public v_JB_MaterialsEstimateTotalsToDateQuery setChargeLessThanOrEqualTo(BigDecimal value) { this.ChargeLessThanOrEqualTo = value; return this; } public BigDecimal getChargeNotEqualTo() { return ChargeNotEqualTo; } public v_JB_MaterialsEstimateTotalsToDateQuery setChargeNotEqualTo(BigDecimal value) { this.ChargeNotEqualTo = value; return this; } public ArrayList getChargeBetween() { return ChargeBetween; } public v_JB_MaterialsEstimateTotalsToDateQuery setChargeBetween(ArrayList value) { this.ChargeBetween = value; return this; } public ArrayList getChargeIn() { return ChargeIn; } public v_JB_MaterialsEstimateTotalsToDateQuery setChargeIn(ArrayList value) { this.ChargeIn = value; return this; } public BigDecimal getCost() { return Cost; } public v_JB_MaterialsEstimateTotalsToDateQuery setCost(BigDecimal value) { this.Cost = value; return this; } public BigDecimal getCostGreaterThanOrEqualTo() { return CostGreaterThanOrEqualTo; } public v_JB_MaterialsEstimateTotalsToDateQuery setCostGreaterThanOrEqualTo(BigDecimal value) { this.CostGreaterThanOrEqualTo = value; return this; } public BigDecimal getCostGreaterThan() { return CostGreaterThan; } public v_JB_MaterialsEstimateTotalsToDateQuery setCostGreaterThan(BigDecimal value) { this.CostGreaterThan = value; return this; } public BigDecimal getCostLessThan() { return CostLessThan; } public v_JB_MaterialsEstimateTotalsToDateQuery setCostLessThan(BigDecimal value) { this.CostLessThan = value; return this; } public BigDecimal getCostLessThanOrEqualTo() { return CostLessThanOrEqualTo; } public v_JB_MaterialsEstimateTotalsToDateQuery setCostLessThanOrEqualTo(BigDecimal value) { this.CostLessThanOrEqualTo = value; return this; } public BigDecimal getCostNotEqualTo() { return CostNotEqualTo; } public v_JB_MaterialsEstimateTotalsToDateQuery setCostNotEqualTo(BigDecimal value) { this.CostNotEqualTo = value; return this; } public ArrayList getCostBetween() { return CostBetween; } public v_JB_MaterialsEstimateTotalsToDateQuery setCostBetween(ArrayList value) { this.CostBetween = value; return this; } public ArrayList getCostIn() { return CostIn; } public v_JB_MaterialsEstimateTotalsToDateQuery setCostIn(ArrayList value) { this.CostIn = value; return this; } public BigDecimal getQty() { return Qty; } public v_JB_MaterialsEstimateTotalsToDateQuery setQty(BigDecimal value) { this.Qty = value; return this; } public BigDecimal getQtyGreaterThanOrEqualTo() { return QtyGreaterThanOrEqualTo; } public v_JB_MaterialsEstimateTotalsToDateQuery setQtyGreaterThanOrEqualTo(BigDecimal value) { this.QtyGreaterThanOrEqualTo = value; return this; } public BigDecimal getQtyGreaterThan() { return QtyGreaterThan; } public v_JB_MaterialsEstimateTotalsToDateQuery setQtyGreaterThan(BigDecimal value) { this.QtyGreaterThan = value; return this; } public BigDecimal getQtyLessThan() { return QtyLessThan; } public v_JB_MaterialsEstimateTotalsToDateQuery setQtyLessThan(BigDecimal value) { this.QtyLessThan = value; return this; } public BigDecimal getQtyLessThanOrEqualTo() { return QtyLessThanOrEqualTo; } public v_JB_MaterialsEstimateTotalsToDateQuery setQtyLessThanOrEqualTo(BigDecimal value) { this.QtyLessThanOrEqualTo = value; return this; } public BigDecimal getQtyNotEqualTo() { return QtyNotEqualTo; } public v_JB_MaterialsEstimateTotalsToDateQuery setQtyNotEqualTo(BigDecimal value) { this.QtyNotEqualTo = value; return this; } public ArrayList getQtyBetween() { return QtyBetween; } public v_JB_MaterialsEstimateTotalsToDateQuery setQtyBetween(ArrayList value) { this.QtyBetween = value; return this; } public ArrayList getQtyIn() { return QtyIn; } public v_JB_MaterialsEstimateTotalsToDateQuery setQtyIn(ArrayList value) { this.QtyIn = value; return this; } public String getJobID() { return JobID; } public v_JB_MaterialsEstimateTotalsToDateQuery setJobID(String value) { this.JobID = value; return this; } public String getJobIDStartsWith() { return JobIDStartsWith; } public v_JB_MaterialsEstimateTotalsToDateQuery setJobIDStartsWith(String value) { this.JobIDStartsWith = value; return this; } public String getJobIDEndsWith() { return JobIDEndsWith; } public v_JB_MaterialsEstimateTotalsToDateQuery setJobIDEndsWith(String value) { this.JobIDEndsWith = value; return this; } public String getJobIDContains() { return JobIDContains; } public v_JB_MaterialsEstimateTotalsToDateQuery setJobIDContains(String value) { this.JobIDContains = value; return this; } public String getJobIDLike() { return JobIDLike; } public v_JB_MaterialsEstimateTotalsToDateQuery setJobIDLike(String value) { this.JobIDLike = value; return this; } public ArrayList getJobIDBetween() { return JobIDBetween; } public v_JB_MaterialsEstimateTotalsToDateQuery setJobIDBetween(ArrayList value) { this.JobIDBetween = value; return this; } public ArrayList getJobIDIn() { return JobIDIn; } public v_JB_MaterialsEstimateTotalsToDateQuery setJobIDIn(ArrayList value) { this.JobIDIn = value; return this; } public Short getDefaultEstimate() { return DefaultEstimate; } public v_JB_MaterialsEstimateTotalsToDateQuery setDefaultEstimate(Short value) { this.DefaultEstimate = value; return this; } public Short getDefaultEstimateGreaterThanOrEqualTo() { return DefaultEstimateGreaterThanOrEqualTo; } public v_JB_MaterialsEstimateTotalsToDateQuery setDefaultEstimateGreaterThanOrEqualTo(Short value) { this.DefaultEstimateGreaterThanOrEqualTo = value; return this; } public Short getDefaultEstimateGreaterThan() { return DefaultEstimateGreaterThan; } public v_JB_MaterialsEstimateTotalsToDateQuery setDefaultEstimateGreaterThan(Short value) { this.DefaultEstimateGreaterThan = value; return this; } public Short getDefaultEstimateLessThan() { return DefaultEstimateLessThan; } public v_JB_MaterialsEstimateTotalsToDateQuery setDefaultEstimateLessThan(Short value) { this.DefaultEstimateLessThan = value; return this; } public Short getDefaultEstimateLessThanOrEqualTo() { return DefaultEstimateLessThanOrEqualTo; } public v_JB_MaterialsEstimateTotalsToDateQuery setDefaultEstimateLessThanOrEqualTo(Short value) { this.DefaultEstimateLessThanOrEqualTo = value; return this; } public Short getDefaultEstimateNotEqualTo() { return DefaultEstimateNotEqualTo; } public v_JB_MaterialsEstimateTotalsToDateQuery setDefaultEstimateNotEqualTo(Short value) { this.DefaultEstimateNotEqualTo = value; return this; } public ArrayList getDefaultEstimateBetween() { return DefaultEstimateBetween; } public v_JB_MaterialsEstimateTotalsToDateQuery setDefaultEstimateBetween(ArrayList value) { this.DefaultEstimateBetween = value; return this; } public ArrayList getDefaultEstimateIn() { return DefaultEstimateIn; } public v_JB_MaterialsEstimateTotalsToDateQuery setDefaultEstimateIn(ArrayList value) { this.DefaultEstimateIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class v_JB_MaterialsTotalsToDateQuery extends QueryDb implements IReturn> { public BigDecimal Charge = null; public BigDecimal ChargeGreaterThanOrEqualTo = null; public BigDecimal ChargeGreaterThan = null; public BigDecimal ChargeLessThan = null; public BigDecimal ChargeLessThanOrEqualTo = null; public BigDecimal ChargeNotEqualTo = null; public ArrayList ChargeBetween = null; public ArrayList ChargeIn = null; public BigDecimal Cost = null; public BigDecimal CostGreaterThanOrEqualTo = null; public BigDecimal CostGreaterThan = null; public BigDecimal CostLessThan = null; public BigDecimal CostLessThanOrEqualTo = null; public BigDecimal CostNotEqualTo = null; public ArrayList CostBetween = null; public ArrayList CostIn = null; public BigDecimal Qty = null; public BigDecimal QtyGreaterThanOrEqualTo = null; public BigDecimal QtyGreaterThan = null; public BigDecimal QtyLessThan = null; public BigDecimal QtyLessThanOrEqualTo = null; public BigDecimal QtyNotEqualTo = null; public ArrayList QtyBetween = null; public ArrayList QtyIn = null; public String JobID = null; public String JobIDStartsWith = null; public String JobIDEndsWith = null; public String JobIDContains = null; public String JobIDLike = null; public ArrayList JobIDBetween = null; public ArrayList JobIDIn = null; public BigDecimal getCharge() { return Charge; } public v_JB_MaterialsTotalsToDateQuery setCharge(BigDecimal value) { this.Charge = value; return this; } public BigDecimal getChargeGreaterThanOrEqualTo() { return ChargeGreaterThanOrEqualTo; } public v_JB_MaterialsTotalsToDateQuery setChargeGreaterThanOrEqualTo(BigDecimal value) { this.ChargeGreaterThanOrEqualTo = value; return this; } public BigDecimal getChargeGreaterThan() { return ChargeGreaterThan; } public v_JB_MaterialsTotalsToDateQuery setChargeGreaterThan(BigDecimal value) { this.ChargeGreaterThan = value; return this; } public BigDecimal getChargeLessThan() { return ChargeLessThan; } public v_JB_MaterialsTotalsToDateQuery setChargeLessThan(BigDecimal value) { this.ChargeLessThan = value; return this; } public BigDecimal getChargeLessThanOrEqualTo() { return ChargeLessThanOrEqualTo; } public v_JB_MaterialsTotalsToDateQuery setChargeLessThanOrEqualTo(BigDecimal value) { this.ChargeLessThanOrEqualTo = value; return this; } public BigDecimal getChargeNotEqualTo() { return ChargeNotEqualTo; } public v_JB_MaterialsTotalsToDateQuery setChargeNotEqualTo(BigDecimal value) { this.ChargeNotEqualTo = value; return this; } public ArrayList getChargeBetween() { return ChargeBetween; } public v_JB_MaterialsTotalsToDateQuery setChargeBetween(ArrayList value) { this.ChargeBetween = value; return this; } public ArrayList getChargeIn() { return ChargeIn; } public v_JB_MaterialsTotalsToDateQuery setChargeIn(ArrayList value) { this.ChargeIn = value; return this; } public BigDecimal getCost() { return Cost; } public v_JB_MaterialsTotalsToDateQuery setCost(BigDecimal value) { this.Cost = value; return this; } public BigDecimal getCostGreaterThanOrEqualTo() { return CostGreaterThanOrEqualTo; } public v_JB_MaterialsTotalsToDateQuery setCostGreaterThanOrEqualTo(BigDecimal value) { this.CostGreaterThanOrEqualTo = value; return this; } public BigDecimal getCostGreaterThan() { return CostGreaterThan; } public v_JB_MaterialsTotalsToDateQuery setCostGreaterThan(BigDecimal value) { this.CostGreaterThan = value; return this; } public BigDecimal getCostLessThan() { return CostLessThan; } public v_JB_MaterialsTotalsToDateQuery setCostLessThan(BigDecimal value) { this.CostLessThan = value; return this; } public BigDecimal getCostLessThanOrEqualTo() { return CostLessThanOrEqualTo; } public v_JB_MaterialsTotalsToDateQuery setCostLessThanOrEqualTo(BigDecimal value) { this.CostLessThanOrEqualTo = value; return this; } public BigDecimal getCostNotEqualTo() { return CostNotEqualTo; } public v_JB_MaterialsTotalsToDateQuery setCostNotEqualTo(BigDecimal value) { this.CostNotEqualTo = value; return this; } public ArrayList getCostBetween() { return CostBetween; } public v_JB_MaterialsTotalsToDateQuery setCostBetween(ArrayList value) { this.CostBetween = value; return this; } public ArrayList getCostIn() { return CostIn; } public v_JB_MaterialsTotalsToDateQuery setCostIn(ArrayList value) { this.CostIn = value; return this; } public BigDecimal getQty() { return Qty; } public v_JB_MaterialsTotalsToDateQuery setQty(BigDecimal value) { this.Qty = value; return this; } public BigDecimal getQtyGreaterThanOrEqualTo() { return QtyGreaterThanOrEqualTo; } public v_JB_MaterialsTotalsToDateQuery setQtyGreaterThanOrEqualTo(BigDecimal value) { this.QtyGreaterThanOrEqualTo = value; return this; } public BigDecimal getQtyGreaterThan() { return QtyGreaterThan; } public v_JB_MaterialsTotalsToDateQuery setQtyGreaterThan(BigDecimal value) { this.QtyGreaterThan = value; return this; } public BigDecimal getQtyLessThan() { return QtyLessThan; } public v_JB_MaterialsTotalsToDateQuery setQtyLessThan(BigDecimal value) { this.QtyLessThan = value; return this; } public BigDecimal getQtyLessThanOrEqualTo() { return QtyLessThanOrEqualTo; } public v_JB_MaterialsTotalsToDateQuery setQtyLessThanOrEqualTo(BigDecimal value) { this.QtyLessThanOrEqualTo = value; return this; } public BigDecimal getQtyNotEqualTo() { return QtyNotEqualTo; } public v_JB_MaterialsTotalsToDateQuery setQtyNotEqualTo(BigDecimal value) { this.QtyNotEqualTo = value; return this; } public ArrayList getQtyBetween() { return QtyBetween; } public v_JB_MaterialsTotalsToDateQuery setQtyBetween(ArrayList value) { this.QtyBetween = value; return this; } public ArrayList getQtyIn() { return QtyIn; } public v_JB_MaterialsTotalsToDateQuery setQtyIn(ArrayList value) { this.QtyIn = value; return this; } public String getJobID() { return JobID; } public v_JB_MaterialsTotalsToDateQuery setJobID(String value) { this.JobID = value; return this; } public String getJobIDStartsWith() { return JobIDStartsWith; } public v_JB_MaterialsTotalsToDateQuery setJobIDStartsWith(String value) { this.JobIDStartsWith = value; return this; } public String getJobIDEndsWith() { return JobIDEndsWith; } public v_JB_MaterialsTotalsToDateQuery setJobIDEndsWith(String value) { this.JobIDEndsWith = value; return this; } public String getJobIDContains() { return JobIDContains; } public v_JB_MaterialsTotalsToDateQuery setJobIDContains(String value) { this.JobIDContains = value; return this; } public String getJobIDLike() { return JobIDLike; } public v_JB_MaterialsTotalsToDateQuery setJobIDLike(String value) { this.JobIDLike = value; return this; } public ArrayList getJobIDBetween() { return JobIDBetween; } public v_JB_MaterialsTotalsToDateQuery setJobIDBetween(ArrayList value) { this.JobIDBetween = value; return this; } public ArrayList getJobIDIn() { return JobIDIn; } public v_JB_MaterialsTotalsToDateQuery setJobIDIn(ArrayList value) { this.JobIDIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class v_JB_PercentInvoicedQuery extends QueryDb implements IReturn> { public BigDecimal PercentageInvoiced = null; public BigDecimal PercentageInvoicedGreaterThanOrEqualTo = null; public BigDecimal PercentageInvoicedGreaterThan = null; public BigDecimal PercentageInvoicedLessThan = null; public BigDecimal PercentageInvoicedLessThanOrEqualTo = null; public BigDecimal PercentageInvoicedNotEqualTo = null; public ArrayList PercentageInvoicedBetween = null; public ArrayList PercentageInvoicedIn = null; public String JobID = null; public String JobIDStartsWith = null; public String JobIDEndsWith = null; public String JobIDContains = null; public String JobIDLike = null; public ArrayList JobIDBetween = null; public ArrayList JobIDIn = null; public BigDecimal getPercentageInvoiced() { return PercentageInvoiced; } public v_JB_PercentInvoicedQuery setPercentageInvoiced(BigDecimal value) { this.PercentageInvoiced = value; return this; } public BigDecimal getPercentageInvoicedGreaterThanOrEqualTo() { return PercentageInvoicedGreaterThanOrEqualTo; } public v_JB_PercentInvoicedQuery setPercentageInvoicedGreaterThanOrEqualTo(BigDecimal value) { this.PercentageInvoicedGreaterThanOrEqualTo = value; return this; } public BigDecimal getPercentageInvoicedGreaterThan() { return PercentageInvoicedGreaterThan; } public v_JB_PercentInvoicedQuery setPercentageInvoicedGreaterThan(BigDecimal value) { this.PercentageInvoicedGreaterThan = value; return this; } public BigDecimal getPercentageInvoicedLessThan() { return PercentageInvoicedLessThan; } public v_JB_PercentInvoicedQuery setPercentageInvoicedLessThan(BigDecimal value) { this.PercentageInvoicedLessThan = value; return this; } public BigDecimal getPercentageInvoicedLessThanOrEqualTo() { return PercentageInvoicedLessThanOrEqualTo; } public v_JB_PercentInvoicedQuery setPercentageInvoicedLessThanOrEqualTo(BigDecimal value) { this.PercentageInvoicedLessThanOrEqualTo = value; return this; } public BigDecimal getPercentageInvoicedNotEqualTo() { return PercentageInvoicedNotEqualTo; } public v_JB_PercentInvoicedQuery setPercentageInvoicedNotEqualTo(BigDecimal value) { this.PercentageInvoicedNotEqualTo = value; return this; } public ArrayList getPercentageInvoicedBetween() { return PercentageInvoicedBetween; } public v_JB_PercentInvoicedQuery setPercentageInvoicedBetween(ArrayList value) { this.PercentageInvoicedBetween = value; return this; } public ArrayList getPercentageInvoicedIn() { return PercentageInvoicedIn; } public v_JB_PercentInvoicedQuery setPercentageInvoicedIn(ArrayList value) { this.PercentageInvoicedIn = value; return this; } public String getJobID() { return JobID; } public v_JB_PercentInvoicedQuery setJobID(String value) { this.JobID = value; return this; } public String getJobIDStartsWith() { return JobIDStartsWith; } public v_JB_PercentInvoicedQuery setJobIDStartsWith(String value) { this.JobIDStartsWith = value; return this; } public String getJobIDEndsWith() { return JobIDEndsWith; } public v_JB_PercentInvoicedQuery setJobIDEndsWith(String value) { this.JobIDEndsWith = value; return this; } public String getJobIDContains() { return JobIDContains; } public v_JB_PercentInvoicedQuery setJobIDContains(String value) { this.JobIDContains = value; return this; } public String getJobIDLike() { return JobIDLike; } public v_JB_PercentInvoicedQuery setJobIDLike(String value) { this.JobIDLike = value; return this; } public ArrayList getJobIDBetween() { return JobIDBetween; } public v_JB_PercentInvoicedQuery setJobIDBetween(ArrayList value) { this.JobIDBetween = value; return this; } public ArrayList getJobIDIn() { return JobIDIn; } public v_JB_PercentInvoicedQuery setJobIDIn(ArrayList value) { this.JobIDIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class v_JB_PurchaseOrdersQuery extends QueryDb implements IReturn> { public String SourceType = null; public String SourceTypeStartsWith = null; public String SourceTypeEndsWith = null; public String SourceTypeContains = null; public String SourceTypeLike = null; public ArrayList SourceTypeBetween = null; public ArrayList SourceTypeIn = null; public String BatchNo = null; public String BatchNoStartsWith = null; public String BatchNoEndsWith = null; public String BatchNoContains = null; public String BatchNoLike = null; public ArrayList BatchNoBetween = null; public ArrayList BatchNoIn = null; public String JobCostStage = null; public String JobCostStageStartsWith = null; public String JobCostStageEndsWith = null; public String JobCostStageContains = null; public String JobCostStageLike = null; public ArrayList JobCostStageBetween = null; public ArrayList JobCostStageIn = null; public String Item = null; public String ItemStartsWith = null; public String ItemEndsWith = null; public String ItemContains = null; public String ItemLike = null; public ArrayList ItemBetween = null; public ArrayList ItemIn = null; public String Description = null; public String DescriptionStartsWith = null; public String DescriptionEndsWith = null; public String DescriptionContains = null; public String DescriptionLike = null; public ArrayList DescriptionBetween = null; public ArrayList DescriptionIn = null; public Date TranDate = null; public Date TranDateGreaterThanOrEqualTo = null; public Date TranDateGreaterThan = null; public Date TranDateLessThan = null; public Date TranDateLessThanOrEqualTo = null; public Date TranDateNotEqualTo = null; public ArrayList TranDateBetween = null; public ArrayList TranDateIn = null; public BigDecimal Qty = null; public BigDecimal QtyGreaterThanOrEqualTo = null; public BigDecimal QtyGreaterThan = null; public BigDecimal QtyLessThan = null; public BigDecimal QtyLessThanOrEqualTo = null; public BigDecimal QtyNotEqualTo = null; public ArrayList QtyBetween = null; public ArrayList QtyIn = null; public BigDecimal TotalCost = null; public BigDecimal TotalCostGreaterThanOrEqualTo = null; public BigDecimal TotalCostGreaterThan = null; public BigDecimal TotalCostLessThan = null; public BigDecimal TotalCostLessThanOrEqualTo = null; public BigDecimal TotalCostNotEqualTo = null; public ArrayList TotalCostBetween = null; public ArrayList TotalCostIn = null; public BigDecimal TotalCharge = null; public BigDecimal TotalChargeGreaterThanOrEqualTo = null; public BigDecimal TotalChargeGreaterThan = null; public BigDecimal TotalChargeLessThan = null; public BigDecimal TotalChargeLessThanOrEqualTo = null; public BigDecimal TotalChargeNotEqualTo = null; public ArrayList TotalChargeBetween = null; public ArrayList TotalChargeIn = null; public String Remark = null; public String RemarkStartsWith = null; public String RemarkEndsWith = null; public String RemarkContains = null; public String RemarkLike = null; public ArrayList RemarkBetween = null; public ArrayList RemarkIn = null; public String JobNo = null; public String JobNoStartsWith = null; public String JobNoEndsWith = null; public String JobNoContains = null; public String JobNoLike = null; public ArrayList JobNoBetween = null; public ArrayList JobNoIn = null; public String getSourceType() { return SourceType; } public v_JB_PurchaseOrdersQuery setSourceType(String value) { this.SourceType = value; return this; } public String getSourceTypeStartsWith() { return SourceTypeStartsWith; } public v_JB_PurchaseOrdersQuery setSourceTypeStartsWith(String value) { this.SourceTypeStartsWith = value; return this; } public String getSourceTypeEndsWith() { return SourceTypeEndsWith; } public v_JB_PurchaseOrdersQuery setSourceTypeEndsWith(String value) { this.SourceTypeEndsWith = value; return this; } public String getSourceTypeContains() { return SourceTypeContains; } public v_JB_PurchaseOrdersQuery setSourceTypeContains(String value) { this.SourceTypeContains = value; return this; } public String getSourceTypeLike() { return SourceTypeLike; } public v_JB_PurchaseOrdersQuery setSourceTypeLike(String value) { this.SourceTypeLike = value; return this; } public ArrayList getSourceTypeBetween() { return SourceTypeBetween; } public v_JB_PurchaseOrdersQuery setSourceTypeBetween(ArrayList value) { this.SourceTypeBetween = value; return this; } public ArrayList getSourceTypeIn() { return SourceTypeIn; } public v_JB_PurchaseOrdersQuery setSourceTypeIn(ArrayList value) { this.SourceTypeIn = value; return this; } public String getBatchNo() { return BatchNo; } public v_JB_PurchaseOrdersQuery setBatchNo(String value) { this.BatchNo = value; return this; } public String getBatchNoStartsWith() { return BatchNoStartsWith; } public v_JB_PurchaseOrdersQuery setBatchNoStartsWith(String value) { this.BatchNoStartsWith = value; return this; } public String getBatchNoEndsWith() { return BatchNoEndsWith; } public v_JB_PurchaseOrdersQuery setBatchNoEndsWith(String value) { this.BatchNoEndsWith = value; return this; } public String getBatchNoContains() { return BatchNoContains; } public v_JB_PurchaseOrdersQuery setBatchNoContains(String value) { this.BatchNoContains = value; return this; } public String getBatchNoLike() { return BatchNoLike; } public v_JB_PurchaseOrdersQuery setBatchNoLike(String value) { this.BatchNoLike = value; return this; } public ArrayList getBatchNoBetween() { return BatchNoBetween; } public v_JB_PurchaseOrdersQuery setBatchNoBetween(ArrayList value) { this.BatchNoBetween = value; return this; } public ArrayList getBatchNoIn() { return BatchNoIn; } public v_JB_PurchaseOrdersQuery setBatchNoIn(ArrayList value) { this.BatchNoIn = value; return this; } public String getJobCostStage() { return JobCostStage; } public v_JB_PurchaseOrdersQuery setJobCostStage(String value) { this.JobCostStage = value; return this; } public String getJobCostStageStartsWith() { return JobCostStageStartsWith; } public v_JB_PurchaseOrdersQuery setJobCostStageStartsWith(String value) { this.JobCostStageStartsWith = value; return this; } public String getJobCostStageEndsWith() { return JobCostStageEndsWith; } public v_JB_PurchaseOrdersQuery setJobCostStageEndsWith(String value) { this.JobCostStageEndsWith = value; return this; } public String getJobCostStageContains() { return JobCostStageContains; } public v_JB_PurchaseOrdersQuery setJobCostStageContains(String value) { this.JobCostStageContains = value; return this; } public String getJobCostStageLike() { return JobCostStageLike; } public v_JB_PurchaseOrdersQuery setJobCostStageLike(String value) { this.JobCostStageLike = value; return this; } public ArrayList getJobCostStageBetween() { return JobCostStageBetween; } public v_JB_PurchaseOrdersQuery setJobCostStageBetween(ArrayList value) { this.JobCostStageBetween = value; return this; } public ArrayList getJobCostStageIn() { return JobCostStageIn; } public v_JB_PurchaseOrdersQuery setJobCostStageIn(ArrayList value) { this.JobCostStageIn = value; return this; } public String getItem() { return Item; } public v_JB_PurchaseOrdersQuery setItem(String value) { this.Item = value; return this; } public String getItemStartsWith() { return ItemStartsWith; } public v_JB_PurchaseOrdersQuery setItemStartsWith(String value) { this.ItemStartsWith = value; return this; } public String getItemEndsWith() { return ItemEndsWith; } public v_JB_PurchaseOrdersQuery setItemEndsWith(String value) { this.ItemEndsWith = value; return this; } public String getItemContains() { return ItemContains; } public v_JB_PurchaseOrdersQuery setItemContains(String value) { this.ItemContains = value; return this; } public String getItemLike() { return ItemLike; } public v_JB_PurchaseOrdersQuery setItemLike(String value) { this.ItemLike = value; return this; } public ArrayList getItemBetween() { return ItemBetween; } public v_JB_PurchaseOrdersQuery setItemBetween(ArrayList value) { this.ItemBetween = value; return this; } public ArrayList getItemIn() { return ItemIn; } public v_JB_PurchaseOrdersQuery setItemIn(ArrayList value) { this.ItemIn = value; return this; } public String getDescription() { return Description; } public v_JB_PurchaseOrdersQuery setDescription(String value) { this.Description = value; return this; } public String getDescriptionStartsWith() { return DescriptionStartsWith; } public v_JB_PurchaseOrdersQuery setDescriptionStartsWith(String value) { this.DescriptionStartsWith = value; return this; } public String getDescriptionEndsWith() { return DescriptionEndsWith; } public v_JB_PurchaseOrdersQuery setDescriptionEndsWith(String value) { this.DescriptionEndsWith = value; return this; } public String getDescriptionContains() { return DescriptionContains; } public v_JB_PurchaseOrdersQuery setDescriptionContains(String value) { this.DescriptionContains = value; return this; } public String getDescriptionLike() { return DescriptionLike; } public v_JB_PurchaseOrdersQuery setDescriptionLike(String value) { this.DescriptionLike = value; return this; } public ArrayList getDescriptionBetween() { return DescriptionBetween; } public v_JB_PurchaseOrdersQuery setDescriptionBetween(ArrayList value) { this.DescriptionBetween = value; return this; } public ArrayList getDescriptionIn() { return DescriptionIn; } public v_JB_PurchaseOrdersQuery setDescriptionIn(ArrayList value) { this.DescriptionIn = value; return this; } public Date getTranDate() { return TranDate; } public v_JB_PurchaseOrdersQuery setTranDate(Date value) { this.TranDate = value; return this; } public Date getTranDateGreaterThanOrEqualTo() { return TranDateGreaterThanOrEqualTo; } public v_JB_PurchaseOrdersQuery setTranDateGreaterThanOrEqualTo(Date value) { this.TranDateGreaterThanOrEqualTo = value; return this; } public Date getTranDateGreaterThan() { return TranDateGreaterThan; } public v_JB_PurchaseOrdersQuery setTranDateGreaterThan(Date value) { this.TranDateGreaterThan = value; return this; } public Date getTranDateLessThan() { return TranDateLessThan; } public v_JB_PurchaseOrdersQuery setTranDateLessThan(Date value) { this.TranDateLessThan = value; return this; } public Date getTranDateLessThanOrEqualTo() { return TranDateLessThanOrEqualTo; } public v_JB_PurchaseOrdersQuery setTranDateLessThanOrEqualTo(Date value) { this.TranDateLessThanOrEqualTo = value; return this; } public Date getTranDateNotEqualTo() { return TranDateNotEqualTo; } public v_JB_PurchaseOrdersQuery setTranDateNotEqualTo(Date value) { this.TranDateNotEqualTo = value; return this; } public ArrayList getTranDateBetween() { return TranDateBetween; } public v_JB_PurchaseOrdersQuery setTranDateBetween(ArrayList value) { this.TranDateBetween = value; return this; } public ArrayList getTranDateIn() { return TranDateIn; } public v_JB_PurchaseOrdersQuery setTranDateIn(ArrayList value) { this.TranDateIn = value; return this; } public BigDecimal getQty() { return Qty; } public v_JB_PurchaseOrdersQuery setQty(BigDecimal value) { this.Qty = value; return this; } public BigDecimal getQtyGreaterThanOrEqualTo() { return QtyGreaterThanOrEqualTo; } public v_JB_PurchaseOrdersQuery setQtyGreaterThanOrEqualTo(BigDecimal value) { this.QtyGreaterThanOrEqualTo = value; return this; } public BigDecimal getQtyGreaterThan() { return QtyGreaterThan; } public v_JB_PurchaseOrdersQuery setQtyGreaterThan(BigDecimal value) { this.QtyGreaterThan = value; return this; } public BigDecimal getQtyLessThan() { return QtyLessThan; } public v_JB_PurchaseOrdersQuery setQtyLessThan(BigDecimal value) { this.QtyLessThan = value; return this; } public BigDecimal getQtyLessThanOrEqualTo() { return QtyLessThanOrEqualTo; } public v_JB_PurchaseOrdersQuery setQtyLessThanOrEqualTo(BigDecimal value) { this.QtyLessThanOrEqualTo = value; return this; } public BigDecimal getQtyNotEqualTo() { return QtyNotEqualTo; } public v_JB_PurchaseOrdersQuery setQtyNotEqualTo(BigDecimal value) { this.QtyNotEqualTo = value; return this; } public ArrayList getQtyBetween() { return QtyBetween; } public v_JB_PurchaseOrdersQuery setQtyBetween(ArrayList value) { this.QtyBetween = value; return this; } public ArrayList getQtyIn() { return QtyIn; } public v_JB_PurchaseOrdersQuery setQtyIn(ArrayList value) { this.QtyIn = value; return this; } public BigDecimal getTotalCost() { return TotalCost; } public v_JB_PurchaseOrdersQuery setTotalCost(BigDecimal value) { this.TotalCost = value; return this; } public BigDecimal getTotalCostGreaterThanOrEqualTo() { return TotalCostGreaterThanOrEqualTo; } public v_JB_PurchaseOrdersQuery setTotalCostGreaterThanOrEqualTo(BigDecimal value) { this.TotalCostGreaterThanOrEqualTo = value; return this; } public BigDecimal getTotalCostGreaterThan() { return TotalCostGreaterThan; } public v_JB_PurchaseOrdersQuery setTotalCostGreaterThan(BigDecimal value) { this.TotalCostGreaterThan = value; return this; } public BigDecimal getTotalCostLessThan() { return TotalCostLessThan; } public v_JB_PurchaseOrdersQuery setTotalCostLessThan(BigDecimal value) { this.TotalCostLessThan = value; return this; } public BigDecimal getTotalCostLessThanOrEqualTo() { return TotalCostLessThanOrEqualTo; } public v_JB_PurchaseOrdersQuery setTotalCostLessThanOrEqualTo(BigDecimal value) { this.TotalCostLessThanOrEqualTo = value; return this; } public BigDecimal getTotalCostNotEqualTo() { return TotalCostNotEqualTo; } public v_JB_PurchaseOrdersQuery setTotalCostNotEqualTo(BigDecimal value) { this.TotalCostNotEqualTo = value; return this; } public ArrayList getTotalCostBetween() { return TotalCostBetween; } public v_JB_PurchaseOrdersQuery setTotalCostBetween(ArrayList value) { this.TotalCostBetween = value; return this; } public ArrayList getTotalCostIn() { return TotalCostIn; } public v_JB_PurchaseOrdersQuery setTotalCostIn(ArrayList value) { this.TotalCostIn = value; return this; } public BigDecimal getTotalCharge() { return TotalCharge; } public v_JB_PurchaseOrdersQuery setTotalCharge(BigDecimal value) { this.TotalCharge = value; return this; } public BigDecimal getTotalChargeGreaterThanOrEqualTo() { return TotalChargeGreaterThanOrEqualTo; } public v_JB_PurchaseOrdersQuery setTotalChargeGreaterThanOrEqualTo(BigDecimal value) { this.TotalChargeGreaterThanOrEqualTo = value; return this; } public BigDecimal getTotalChargeGreaterThan() { return TotalChargeGreaterThan; } public v_JB_PurchaseOrdersQuery setTotalChargeGreaterThan(BigDecimal value) { this.TotalChargeGreaterThan = value; return this; } public BigDecimal getTotalChargeLessThan() { return TotalChargeLessThan; } public v_JB_PurchaseOrdersQuery setTotalChargeLessThan(BigDecimal value) { this.TotalChargeLessThan = value; return this; } public BigDecimal getTotalChargeLessThanOrEqualTo() { return TotalChargeLessThanOrEqualTo; } public v_JB_PurchaseOrdersQuery setTotalChargeLessThanOrEqualTo(BigDecimal value) { this.TotalChargeLessThanOrEqualTo = value; return this; } public BigDecimal getTotalChargeNotEqualTo() { return TotalChargeNotEqualTo; } public v_JB_PurchaseOrdersQuery setTotalChargeNotEqualTo(BigDecimal value) { this.TotalChargeNotEqualTo = value; return this; } public ArrayList getTotalChargeBetween() { return TotalChargeBetween; } public v_JB_PurchaseOrdersQuery setTotalChargeBetween(ArrayList value) { this.TotalChargeBetween = value; return this; } public ArrayList getTotalChargeIn() { return TotalChargeIn; } public v_JB_PurchaseOrdersQuery setTotalChargeIn(ArrayList value) { this.TotalChargeIn = value; return this; } public String getRemark() { return Remark; } public v_JB_PurchaseOrdersQuery setRemark(String value) { this.Remark = value; return this; } public String getRemarkStartsWith() { return RemarkStartsWith; } public v_JB_PurchaseOrdersQuery setRemarkStartsWith(String value) { this.RemarkStartsWith = value; return this; } public String getRemarkEndsWith() { return RemarkEndsWith; } public v_JB_PurchaseOrdersQuery setRemarkEndsWith(String value) { this.RemarkEndsWith = value; return this; } public String getRemarkContains() { return RemarkContains; } public v_JB_PurchaseOrdersQuery setRemarkContains(String value) { this.RemarkContains = value; return this; } public String getRemarkLike() { return RemarkLike; } public v_JB_PurchaseOrdersQuery setRemarkLike(String value) { this.RemarkLike = value; return this; } public ArrayList getRemarkBetween() { return RemarkBetween; } public v_JB_PurchaseOrdersQuery setRemarkBetween(ArrayList value) { this.RemarkBetween = value; return this; } public ArrayList getRemarkIn() { return RemarkIn; } public v_JB_PurchaseOrdersQuery setRemarkIn(ArrayList value) { this.RemarkIn = value; return this; } public String getJobNo() { return JobNo; } public v_JB_PurchaseOrdersQuery setJobNo(String value) { this.JobNo = value; return this; } public String getJobNoStartsWith() { return JobNoStartsWith; } public v_JB_PurchaseOrdersQuery setJobNoStartsWith(String value) { this.JobNoStartsWith = value; return this; } public String getJobNoEndsWith() { return JobNoEndsWith; } public v_JB_PurchaseOrdersQuery setJobNoEndsWith(String value) { this.JobNoEndsWith = value; return this; } public String getJobNoContains() { return JobNoContains; } public v_JB_PurchaseOrdersQuery setJobNoContains(String value) { this.JobNoContains = value; return this; } public String getJobNoLike() { return JobNoLike; } public v_JB_PurchaseOrdersQuery setJobNoLike(String value) { this.JobNoLike = value; return this; } public ArrayList getJobNoBetween() { return JobNoBetween; } public v_JB_PurchaseOrdersQuery setJobNoBetween(ArrayList value) { this.JobNoBetween = value; return this; } public ArrayList getJobNoIn() { return JobNoIn; } public v_JB_PurchaseOrdersQuery setJobNoIn(ArrayList value) { this.JobNoIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class v_JB_PurchasesQuery extends QueryDb implements IReturn> { public String SourceType = null; public String SourceTypeStartsWith = null; public String SourceTypeEndsWith = null; public String SourceTypeContains = null; public String SourceTypeLike = null; public ArrayList SourceTypeBetween = null; public ArrayList SourceTypeIn = null; public String BatchNo = null; public String BatchNoStartsWith = null; public String BatchNoEndsWith = null; public String BatchNoContains = null; public String BatchNoLike = null; public ArrayList BatchNoBetween = null; public ArrayList BatchNoIn = null; public String JobCostStage = null; public String JobCostStageStartsWith = null; public String JobCostStageEndsWith = null; public String JobCostStageContains = null; public String JobCostStageLike = null; public ArrayList JobCostStageBetween = null; public ArrayList JobCostStageIn = null; public String Item = null; public String ItemStartsWith = null; public String ItemEndsWith = null; public String ItemContains = null; public String ItemLike = null; public ArrayList ItemBetween = null; public ArrayList ItemIn = null; public String Description = null; public String DescriptionStartsWith = null; public String DescriptionEndsWith = null; public String DescriptionContains = null; public String DescriptionLike = null; public ArrayList DescriptionBetween = null; public ArrayList DescriptionIn = null; public Date TranDate = null; public Date TranDateGreaterThanOrEqualTo = null; public Date TranDateGreaterThan = null; public Date TranDateLessThan = null; public Date TranDateLessThanOrEqualTo = null; public Date TranDateNotEqualTo = null; public ArrayList TranDateBetween = null; public ArrayList TranDateIn = null; public BigDecimal Qty = null; public BigDecimal QtyGreaterThanOrEqualTo = null; public BigDecimal QtyGreaterThan = null; public BigDecimal QtyLessThan = null; public BigDecimal QtyLessThanOrEqualTo = null; public BigDecimal QtyNotEqualTo = null; public ArrayList QtyBetween = null; public ArrayList QtyIn = null; public BigDecimal TotalCost = null; public BigDecimal TotalCostGreaterThanOrEqualTo = null; public BigDecimal TotalCostGreaterThan = null; public BigDecimal TotalCostLessThan = null; public BigDecimal TotalCostLessThanOrEqualTo = null; public BigDecimal TotalCostNotEqualTo = null; public ArrayList TotalCostBetween = null; public ArrayList TotalCostIn = null; public BigDecimal TotalCharge = null; public BigDecimal TotalChargeGreaterThanOrEqualTo = null; public BigDecimal TotalChargeGreaterThan = null; public BigDecimal TotalChargeLessThan = null; public BigDecimal TotalChargeLessThanOrEqualTo = null; public BigDecimal TotalChargeNotEqualTo = null; public ArrayList TotalChargeBetween = null; public ArrayList TotalChargeIn = null; public String Remark = null; public String RemarkStartsWith = null; public String RemarkEndsWith = null; public String RemarkContains = null; public String RemarkLike = null; public ArrayList RemarkBetween = null; public ArrayList RemarkIn = null; public String JobNo = null; public String JobNoStartsWith = null; public String JobNoEndsWith = null; public String JobNoContains = null; public String JobNoLike = null; public ArrayList JobNoBetween = null; public ArrayList JobNoIn = null; public String getSourceType() { return SourceType; } public v_JB_PurchasesQuery setSourceType(String value) { this.SourceType = value; return this; } public String getSourceTypeStartsWith() { return SourceTypeStartsWith; } public v_JB_PurchasesQuery setSourceTypeStartsWith(String value) { this.SourceTypeStartsWith = value; return this; } public String getSourceTypeEndsWith() { return SourceTypeEndsWith; } public v_JB_PurchasesQuery setSourceTypeEndsWith(String value) { this.SourceTypeEndsWith = value; return this; } public String getSourceTypeContains() { return SourceTypeContains; } public v_JB_PurchasesQuery setSourceTypeContains(String value) { this.SourceTypeContains = value; return this; } public String getSourceTypeLike() { return SourceTypeLike; } public v_JB_PurchasesQuery setSourceTypeLike(String value) { this.SourceTypeLike = value; return this; } public ArrayList getSourceTypeBetween() { return SourceTypeBetween; } public v_JB_PurchasesQuery setSourceTypeBetween(ArrayList value) { this.SourceTypeBetween = value; return this; } public ArrayList getSourceTypeIn() { return SourceTypeIn; } public v_JB_PurchasesQuery setSourceTypeIn(ArrayList value) { this.SourceTypeIn = value; return this; } public String getBatchNo() { return BatchNo; } public v_JB_PurchasesQuery setBatchNo(String value) { this.BatchNo = value; return this; } public String getBatchNoStartsWith() { return BatchNoStartsWith; } public v_JB_PurchasesQuery setBatchNoStartsWith(String value) { this.BatchNoStartsWith = value; return this; } public String getBatchNoEndsWith() { return BatchNoEndsWith; } public v_JB_PurchasesQuery setBatchNoEndsWith(String value) { this.BatchNoEndsWith = value; return this; } public String getBatchNoContains() { return BatchNoContains; } public v_JB_PurchasesQuery setBatchNoContains(String value) { this.BatchNoContains = value; return this; } public String getBatchNoLike() { return BatchNoLike; } public v_JB_PurchasesQuery setBatchNoLike(String value) { this.BatchNoLike = value; return this; } public ArrayList getBatchNoBetween() { return BatchNoBetween; } public v_JB_PurchasesQuery setBatchNoBetween(ArrayList value) { this.BatchNoBetween = value; return this; } public ArrayList getBatchNoIn() { return BatchNoIn; } public v_JB_PurchasesQuery setBatchNoIn(ArrayList value) { this.BatchNoIn = value; return this; } public String getJobCostStage() { return JobCostStage; } public v_JB_PurchasesQuery setJobCostStage(String value) { this.JobCostStage = value; return this; } public String getJobCostStageStartsWith() { return JobCostStageStartsWith; } public v_JB_PurchasesQuery setJobCostStageStartsWith(String value) { this.JobCostStageStartsWith = value; return this; } public String getJobCostStageEndsWith() { return JobCostStageEndsWith; } public v_JB_PurchasesQuery setJobCostStageEndsWith(String value) { this.JobCostStageEndsWith = value; return this; } public String getJobCostStageContains() { return JobCostStageContains; } public v_JB_PurchasesQuery setJobCostStageContains(String value) { this.JobCostStageContains = value; return this; } public String getJobCostStageLike() { return JobCostStageLike; } public v_JB_PurchasesQuery setJobCostStageLike(String value) { this.JobCostStageLike = value; return this; } public ArrayList getJobCostStageBetween() { return JobCostStageBetween; } public v_JB_PurchasesQuery setJobCostStageBetween(ArrayList value) { this.JobCostStageBetween = value; return this; } public ArrayList getJobCostStageIn() { return JobCostStageIn; } public v_JB_PurchasesQuery setJobCostStageIn(ArrayList value) { this.JobCostStageIn = value; return this; } public String getItem() { return Item; } public v_JB_PurchasesQuery setItem(String value) { this.Item = value; return this; } public String getItemStartsWith() { return ItemStartsWith; } public v_JB_PurchasesQuery setItemStartsWith(String value) { this.ItemStartsWith = value; return this; } public String getItemEndsWith() { return ItemEndsWith; } public v_JB_PurchasesQuery setItemEndsWith(String value) { this.ItemEndsWith = value; return this; } public String getItemContains() { return ItemContains; } public v_JB_PurchasesQuery setItemContains(String value) { this.ItemContains = value; return this; } public String getItemLike() { return ItemLike; } public v_JB_PurchasesQuery setItemLike(String value) { this.ItemLike = value; return this; } public ArrayList getItemBetween() { return ItemBetween; } public v_JB_PurchasesQuery setItemBetween(ArrayList value) { this.ItemBetween = value; return this; } public ArrayList getItemIn() { return ItemIn; } public v_JB_PurchasesQuery setItemIn(ArrayList value) { this.ItemIn = value; return this; } public String getDescription() { return Description; } public v_JB_PurchasesQuery setDescription(String value) { this.Description = value; return this; } public String getDescriptionStartsWith() { return DescriptionStartsWith; } public v_JB_PurchasesQuery setDescriptionStartsWith(String value) { this.DescriptionStartsWith = value; return this; } public String getDescriptionEndsWith() { return DescriptionEndsWith; } public v_JB_PurchasesQuery setDescriptionEndsWith(String value) { this.DescriptionEndsWith = value; return this; } public String getDescriptionContains() { return DescriptionContains; } public v_JB_PurchasesQuery setDescriptionContains(String value) { this.DescriptionContains = value; return this; } public String getDescriptionLike() { return DescriptionLike; } public v_JB_PurchasesQuery setDescriptionLike(String value) { this.DescriptionLike = value; return this; } public ArrayList getDescriptionBetween() { return DescriptionBetween; } public v_JB_PurchasesQuery setDescriptionBetween(ArrayList value) { this.DescriptionBetween = value; return this; } public ArrayList getDescriptionIn() { return DescriptionIn; } public v_JB_PurchasesQuery setDescriptionIn(ArrayList value) { this.DescriptionIn = value; return this; } public Date getTranDate() { return TranDate; } public v_JB_PurchasesQuery setTranDate(Date value) { this.TranDate = value; return this; } public Date getTranDateGreaterThanOrEqualTo() { return TranDateGreaterThanOrEqualTo; } public v_JB_PurchasesQuery setTranDateGreaterThanOrEqualTo(Date value) { this.TranDateGreaterThanOrEqualTo = value; return this; } public Date getTranDateGreaterThan() { return TranDateGreaterThan; } public v_JB_PurchasesQuery setTranDateGreaterThan(Date value) { this.TranDateGreaterThan = value; return this; } public Date getTranDateLessThan() { return TranDateLessThan; } public v_JB_PurchasesQuery setTranDateLessThan(Date value) { this.TranDateLessThan = value; return this; } public Date getTranDateLessThanOrEqualTo() { return TranDateLessThanOrEqualTo; } public v_JB_PurchasesQuery setTranDateLessThanOrEqualTo(Date value) { this.TranDateLessThanOrEqualTo = value; return this; } public Date getTranDateNotEqualTo() { return TranDateNotEqualTo; } public v_JB_PurchasesQuery setTranDateNotEqualTo(Date value) { this.TranDateNotEqualTo = value; return this; } public ArrayList getTranDateBetween() { return TranDateBetween; } public v_JB_PurchasesQuery setTranDateBetween(ArrayList value) { this.TranDateBetween = value; return this; } public ArrayList getTranDateIn() { return TranDateIn; } public v_JB_PurchasesQuery setTranDateIn(ArrayList value) { this.TranDateIn = value; return this; } public BigDecimal getQty() { return Qty; } public v_JB_PurchasesQuery setQty(BigDecimal value) { this.Qty = value; return this; } public BigDecimal getQtyGreaterThanOrEqualTo() { return QtyGreaterThanOrEqualTo; } public v_JB_PurchasesQuery setQtyGreaterThanOrEqualTo(BigDecimal value) { this.QtyGreaterThanOrEqualTo = value; return this; } public BigDecimal getQtyGreaterThan() { return QtyGreaterThan; } public v_JB_PurchasesQuery setQtyGreaterThan(BigDecimal value) { this.QtyGreaterThan = value; return this; } public BigDecimal getQtyLessThan() { return QtyLessThan; } public v_JB_PurchasesQuery setQtyLessThan(BigDecimal value) { this.QtyLessThan = value; return this; } public BigDecimal getQtyLessThanOrEqualTo() { return QtyLessThanOrEqualTo; } public v_JB_PurchasesQuery setQtyLessThanOrEqualTo(BigDecimal value) { this.QtyLessThanOrEqualTo = value; return this; } public BigDecimal getQtyNotEqualTo() { return QtyNotEqualTo; } public v_JB_PurchasesQuery setQtyNotEqualTo(BigDecimal value) { this.QtyNotEqualTo = value; return this; } public ArrayList getQtyBetween() { return QtyBetween; } public v_JB_PurchasesQuery setQtyBetween(ArrayList value) { this.QtyBetween = value; return this; } public ArrayList getQtyIn() { return QtyIn; } public v_JB_PurchasesQuery setQtyIn(ArrayList value) { this.QtyIn = value; return this; } public BigDecimal getTotalCost() { return TotalCost; } public v_JB_PurchasesQuery setTotalCost(BigDecimal value) { this.TotalCost = value; return this; } public BigDecimal getTotalCostGreaterThanOrEqualTo() { return TotalCostGreaterThanOrEqualTo; } public v_JB_PurchasesQuery setTotalCostGreaterThanOrEqualTo(BigDecimal value) { this.TotalCostGreaterThanOrEqualTo = value; return this; } public BigDecimal getTotalCostGreaterThan() { return TotalCostGreaterThan; } public v_JB_PurchasesQuery setTotalCostGreaterThan(BigDecimal value) { this.TotalCostGreaterThan = value; return this; } public BigDecimal getTotalCostLessThan() { return TotalCostLessThan; } public v_JB_PurchasesQuery setTotalCostLessThan(BigDecimal value) { this.TotalCostLessThan = value; return this; } public BigDecimal getTotalCostLessThanOrEqualTo() { return TotalCostLessThanOrEqualTo; } public v_JB_PurchasesQuery setTotalCostLessThanOrEqualTo(BigDecimal value) { this.TotalCostLessThanOrEqualTo = value; return this; } public BigDecimal getTotalCostNotEqualTo() { return TotalCostNotEqualTo; } public v_JB_PurchasesQuery setTotalCostNotEqualTo(BigDecimal value) { this.TotalCostNotEqualTo = value; return this; } public ArrayList getTotalCostBetween() { return TotalCostBetween; } public v_JB_PurchasesQuery setTotalCostBetween(ArrayList value) { this.TotalCostBetween = value; return this; } public ArrayList getTotalCostIn() { return TotalCostIn; } public v_JB_PurchasesQuery setTotalCostIn(ArrayList value) { this.TotalCostIn = value; return this; } public BigDecimal getTotalCharge() { return TotalCharge; } public v_JB_PurchasesQuery setTotalCharge(BigDecimal value) { this.TotalCharge = value; return this; } public BigDecimal getTotalChargeGreaterThanOrEqualTo() { return TotalChargeGreaterThanOrEqualTo; } public v_JB_PurchasesQuery setTotalChargeGreaterThanOrEqualTo(BigDecimal value) { this.TotalChargeGreaterThanOrEqualTo = value; return this; } public BigDecimal getTotalChargeGreaterThan() { return TotalChargeGreaterThan; } public v_JB_PurchasesQuery setTotalChargeGreaterThan(BigDecimal value) { this.TotalChargeGreaterThan = value; return this; } public BigDecimal getTotalChargeLessThan() { return TotalChargeLessThan; } public v_JB_PurchasesQuery setTotalChargeLessThan(BigDecimal value) { this.TotalChargeLessThan = value; return this; } public BigDecimal getTotalChargeLessThanOrEqualTo() { return TotalChargeLessThanOrEqualTo; } public v_JB_PurchasesQuery setTotalChargeLessThanOrEqualTo(BigDecimal value) { this.TotalChargeLessThanOrEqualTo = value; return this; } public BigDecimal getTotalChargeNotEqualTo() { return TotalChargeNotEqualTo; } public v_JB_PurchasesQuery setTotalChargeNotEqualTo(BigDecimal value) { this.TotalChargeNotEqualTo = value; return this; } public ArrayList getTotalChargeBetween() { return TotalChargeBetween; } public v_JB_PurchasesQuery setTotalChargeBetween(ArrayList value) { this.TotalChargeBetween = value; return this; } public ArrayList getTotalChargeIn() { return TotalChargeIn; } public v_JB_PurchasesQuery setTotalChargeIn(ArrayList value) { this.TotalChargeIn = value; return this; } public String getRemark() { return Remark; } public v_JB_PurchasesQuery setRemark(String value) { this.Remark = value; return this; } public String getRemarkStartsWith() { return RemarkStartsWith; } public v_JB_PurchasesQuery setRemarkStartsWith(String value) { this.RemarkStartsWith = value; return this; } public String getRemarkEndsWith() { return RemarkEndsWith; } public v_JB_PurchasesQuery setRemarkEndsWith(String value) { this.RemarkEndsWith = value; return this; } public String getRemarkContains() { return RemarkContains; } public v_JB_PurchasesQuery setRemarkContains(String value) { this.RemarkContains = value; return this; } public String getRemarkLike() { return RemarkLike; } public v_JB_PurchasesQuery setRemarkLike(String value) { this.RemarkLike = value; return this; } public ArrayList getRemarkBetween() { return RemarkBetween; } public v_JB_PurchasesQuery setRemarkBetween(ArrayList value) { this.RemarkBetween = value; return this; } public ArrayList getRemarkIn() { return RemarkIn; } public v_JB_PurchasesQuery setRemarkIn(ArrayList value) { this.RemarkIn = value; return this; } public String getJobNo() { return JobNo; } public v_JB_PurchasesQuery setJobNo(String value) { this.JobNo = value; return this; } public String getJobNoStartsWith() { return JobNoStartsWith; } public v_JB_PurchasesQuery setJobNoStartsWith(String value) { this.JobNoStartsWith = value; return this; } public String getJobNoEndsWith() { return JobNoEndsWith; } public v_JB_PurchasesQuery setJobNoEndsWith(String value) { this.JobNoEndsWith = value; return this; } public String getJobNoContains() { return JobNoContains; } public v_JB_PurchasesQuery setJobNoContains(String value) { this.JobNoContains = value; return this; } public String getJobNoLike() { return JobNoLike; } public v_JB_PurchasesQuery setJobNoLike(String value) { this.JobNoLike = value; return this; } public ArrayList getJobNoBetween() { return JobNoBetween; } public v_JB_PurchasesQuery setJobNoBetween(ArrayList value) { this.JobNoBetween = value; return this; } public ArrayList getJobNoIn() { return JobNoIn; } public v_JB_PurchasesQuery setJobNoIn(ArrayList value) { this.JobNoIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class v_JB_PurchasesEstimateTotalsToDateQuery extends QueryDb implements IReturn> { public BigDecimal Charge = null; public BigDecimal ChargeGreaterThanOrEqualTo = null; public BigDecimal ChargeGreaterThan = null; public BigDecimal ChargeLessThan = null; public BigDecimal ChargeLessThanOrEqualTo = null; public BigDecimal ChargeNotEqualTo = null; public ArrayList ChargeBetween = null; public ArrayList ChargeIn = null; public BigDecimal Cost = null; public BigDecimal CostGreaterThanOrEqualTo = null; public BigDecimal CostGreaterThan = null; public BigDecimal CostLessThan = null; public BigDecimal CostLessThanOrEqualTo = null; public BigDecimal CostNotEqualTo = null; public ArrayList CostBetween = null; public ArrayList CostIn = null; public BigDecimal Qty = null; public BigDecimal QtyGreaterThanOrEqualTo = null; public BigDecimal QtyGreaterThan = null; public BigDecimal QtyLessThan = null; public BigDecimal QtyLessThanOrEqualTo = null; public BigDecimal QtyNotEqualTo = null; public ArrayList QtyBetween = null; public ArrayList QtyIn = null; public String JobID = null; public String JobIDStartsWith = null; public String JobIDEndsWith = null; public String JobIDContains = null; public String JobIDLike = null; public ArrayList JobIDBetween = null; public ArrayList JobIDIn = null; public Short DefaultEstimate = null; public Short DefaultEstimateGreaterThanOrEqualTo = null; public Short DefaultEstimateGreaterThan = null; public Short DefaultEstimateLessThan = null; public Short DefaultEstimateLessThanOrEqualTo = null; public Short DefaultEstimateNotEqualTo = null; public ArrayList DefaultEstimateBetween = null; public ArrayList DefaultEstimateIn = null; public BigDecimal getCharge() { return Charge; } public v_JB_PurchasesEstimateTotalsToDateQuery setCharge(BigDecimal value) { this.Charge = value; return this; } public BigDecimal getChargeGreaterThanOrEqualTo() { return ChargeGreaterThanOrEqualTo; } public v_JB_PurchasesEstimateTotalsToDateQuery setChargeGreaterThanOrEqualTo(BigDecimal value) { this.ChargeGreaterThanOrEqualTo = value; return this; } public BigDecimal getChargeGreaterThan() { return ChargeGreaterThan; } public v_JB_PurchasesEstimateTotalsToDateQuery setChargeGreaterThan(BigDecimal value) { this.ChargeGreaterThan = value; return this; } public BigDecimal getChargeLessThan() { return ChargeLessThan; } public v_JB_PurchasesEstimateTotalsToDateQuery setChargeLessThan(BigDecimal value) { this.ChargeLessThan = value; return this; } public BigDecimal getChargeLessThanOrEqualTo() { return ChargeLessThanOrEqualTo; } public v_JB_PurchasesEstimateTotalsToDateQuery setChargeLessThanOrEqualTo(BigDecimal value) { this.ChargeLessThanOrEqualTo = value; return this; } public BigDecimal getChargeNotEqualTo() { return ChargeNotEqualTo; } public v_JB_PurchasesEstimateTotalsToDateQuery setChargeNotEqualTo(BigDecimal value) { this.ChargeNotEqualTo = value; return this; } public ArrayList getChargeBetween() { return ChargeBetween; } public v_JB_PurchasesEstimateTotalsToDateQuery setChargeBetween(ArrayList value) { this.ChargeBetween = value; return this; } public ArrayList getChargeIn() { return ChargeIn; } public v_JB_PurchasesEstimateTotalsToDateQuery setChargeIn(ArrayList value) { this.ChargeIn = value; return this; } public BigDecimal getCost() { return Cost; } public v_JB_PurchasesEstimateTotalsToDateQuery setCost(BigDecimal value) { this.Cost = value; return this; } public BigDecimal getCostGreaterThanOrEqualTo() { return CostGreaterThanOrEqualTo; } public v_JB_PurchasesEstimateTotalsToDateQuery setCostGreaterThanOrEqualTo(BigDecimal value) { this.CostGreaterThanOrEqualTo = value; return this; } public BigDecimal getCostGreaterThan() { return CostGreaterThan; } public v_JB_PurchasesEstimateTotalsToDateQuery setCostGreaterThan(BigDecimal value) { this.CostGreaterThan = value; return this; } public BigDecimal getCostLessThan() { return CostLessThan; } public v_JB_PurchasesEstimateTotalsToDateQuery setCostLessThan(BigDecimal value) { this.CostLessThan = value; return this; } public BigDecimal getCostLessThanOrEqualTo() { return CostLessThanOrEqualTo; } public v_JB_PurchasesEstimateTotalsToDateQuery setCostLessThanOrEqualTo(BigDecimal value) { this.CostLessThanOrEqualTo = value; return this; } public BigDecimal getCostNotEqualTo() { return CostNotEqualTo; } public v_JB_PurchasesEstimateTotalsToDateQuery setCostNotEqualTo(BigDecimal value) { this.CostNotEqualTo = value; return this; } public ArrayList getCostBetween() { return CostBetween; } public v_JB_PurchasesEstimateTotalsToDateQuery setCostBetween(ArrayList value) { this.CostBetween = value; return this; } public ArrayList getCostIn() { return CostIn; } public v_JB_PurchasesEstimateTotalsToDateQuery setCostIn(ArrayList value) { this.CostIn = value; return this; } public BigDecimal getQty() { return Qty; } public v_JB_PurchasesEstimateTotalsToDateQuery setQty(BigDecimal value) { this.Qty = value; return this; } public BigDecimal getQtyGreaterThanOrEqualTo() { return QtyGreaterThanOrEqualTo; } public v_JB_PurchasesEstimateTotalsToDateQuery setQtyGreaterThanOrEqualTo(BigDecimal value) { this.QtyGreaterThanOrEqualTo = value; return this; } public BigDecimal getQtyGreaterThan() { return QtyGreaterThan; } public v_JB_PurchasesEstimateTotalsToDateQuery setQtyGreaterThan(BigDecimal value) { this.QtyGreaterThan = value; return this; } public BigDecimal getQtyLessThan() { return QtyLessThan; } public v_JB_PurchasesEstimateTotalsToDateQuery setQtyLessThan(BigDecimal value) { this.QtyLessThan = value; return this; } public BigDecimal getQtyLessThanOrEqualTo() { return QtyLessThanOrEqualTo; } public v_JB_PurchasesEstimateTotalsToDateQuery setQtyLessThanOrEqualTo(BigDecimal value) { this.QtyLessThanOrEqualTo = value; return this; } public BigDecimal getQtyNotEqualTo() { return QtyNotEqualTo; } public v_JB_PurchasesEstimateTotalsToDateQuery setQtyNotEqualTo(BigDecimal value) { this.QtyNotEqualTo = value; return this; } public ArrayList getQtyBetween() { return QtyBetween; } public v_JB_PurchasesEstimateTotalsToDateQuery setQtyBetween(ArrayList value) { this.QtyBetween = value; return this; } public ArrayList getQtyIn() { return QtyIn; } public v_JB_PurchasesEstimateTotalsToDateQuery setQtyIn(ArrayList value) { this.QtyIn = value; return this; } public String getJobID() { return JobID; } public v_JB_PurchasesEstimateTotalsToDateQuery setJobID(String value) { this.JobID = value; return this; } public String getJobIDStartsWith() { return JobIDStartsWith; } public v_JB_PurchasesEstimateTotalsToDateQuery setJobIDStartsWith(String value) { this.JobIDStartsWith = value; return this; } public String getJobIDEndsWith() { return JobIDEndsWith; } public v_JB_PurchasesEstimateTotalsToDateQuery setJobIDEndsWith(String value) { this.JobIDEndsWith = value; return this; } public String getJobIDContains() { return JobIDContains; } public v_JB_PurchasesEstimateTotalsToDateQuery setJobIDContains(String value) { this.JobIDContains = value; return this; } public String getJobIDLike() { return JobIDLike; } public v_JB_PurchasesEstimateTotalsToDateQuery setJobIDLike(String value) { this.JobIDLike = value; return this; } public ArrayList getJobIDBetween() { return JobIDBetween; } public v_JB_PurchasesEstimateTotalsToDateQuery setJobIDBetween(ArrayList value) { this.JobIDBetween = value; return this; } public ArrayList getJobIDIn() { return JobIDIn; } public v_JB_PurchasesEstimateTotalsToDateQuery setJobIDIn(ArrayList value) { this.JobIDIn = value; return this; } public Short getDefaultEstimate() { return DefaultEstimate; } public v_JB_PurchasesEstimateTotalsToDateQuery setDefaultEstimate(Short value) { this.DefaultEstimate = value; return this; } public Short getDefaultEstimateGreaterThanOrEqualTo() { return DefaultEstimateGreaterThanOrEqualTo; } public v_JB_PurchasesEstimateTotalsToDateQuery setDefaultEstimateGreaterThanOrEqualTo(Short value) { this.DefaultEstimateGreaterThanOrEqualTo = value; return this; } public Short getDefaultEstimateGreaterThan() { return DefaultEstimateGreaterThan; } public v_JB_PurchasesEstimateTotalsToDateQuery setDefaultEstimateGreaterThan(Short value) { this.DefaultEstimateGreaterThan = value; return this; } public Short getDefaultEstimateLessThan() { return DefaultEstimateLessThan; } public v_JB_PurchasesEstimateTotalsToDateQuery setDefaultEstimateLessThan(Short value) { this.DefaultEstimateLessThan = value; return this; } public Short getDefaultEstimateLessThanOrEqualTo() { return DefaultEstimateLessThanOrEqualTo; } public v_JB_PurchasesEstimateTotalsToDateQuery setDefaultEstimateLessThanOrEqualTo(Short value) { this.DefaultEstimateLessThanOrEqualTo = value; return this; } public Short getDefaultEstimateNotEqualTo() { return DefaultEstimateNotEqualTo; } public v_JB_PurchasesEstimateTotalsToDateQuery setDefaultEstimateNotEqualTo(Short value) { this.DefaultEstimateNotEqualTo = value; return this; } public ArrayList getDefaultEstimateBetween() { return DefaultEstimateBetween; } public v_JB_PurchasesEstimateTotalsToDateQuery setDefaultEstimateBetween(ArrayList value) { this.DefaultEstimateBetween = value; return this; } public ArrayList getDefaultEstimateIn() { return DefaultEstimateIn; } public v_JB_PurchasesEstimateTotalsToDateQuery setDefaultEstimateIn(ArrayList value) { this.DefaultEstimateIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class v_JB_PurchasesTotalsToDateQuery extends QueryDb implements IReturn> { public BigDecimal Charge = null; public BigDecimal ChargeGreaterThanOrEqualTo = null; public BigDecimal ChargeGreaterThan = null; public BigDecimal ChargeLessThan = null; public BigDecimal ChargeLessThanOrEqualTo = null; public BigDecimal ChargeNotEqualTo = null; public ArrayList ChargeBetween = null; public ArrayList ChargeIn = null; public BigDecimal Cost = null; public BigDecimal CostGreaterThanOrEqualTo = null; public BigDecimal CostGreaterThan = null; public BigDecimal CostLessThan = null; public BigDecimal CostLessThanOrEqualTo = null; public BigDecimal CostNotEqualTo = null; public ArrayList CostBetween = null; public ArrayList CostIn = null; public BigDecimal Qty = null; public BigDecimal QtyGreaterThanOrEqualTo = null; public BigDecimal QtyGreaterThan = null; public BigDecimal QtyLessThan = null; public BigDecimal QtyLessThanOrEqualTo = null; public BigDecimal QtyNotEqualTo = null; public ArrayList QtyBetween = null; public ArrayList QtyIn = null; public String JobID = null; public String JobIDStartsWith = null; public String JobIDEndsWith = null; public String JobIDContains = null; public String JobIDLike = null; public ArrayList JobIDBetween = null; public ArrayList JobIDIn = null; public BigDecimal getCharge() { return Charge; } public v_JB_PurchasesTotalsToDateQuery setCharge(BigDecimal value) { this.Charge = value; return this; } public BigDecimal getChargeGreaterThanOrEqualTo() { return ChargeGreaterThanOrEqualTo; } public v_JB_PurchasesTotalsToDateQuery setChargeGreaterThanOrEqualTo(BigDecimal value) { this.ChargeGreaterThanOrEqualTo = value; return this; } public BigDecimal getChargeGreaterThan() { return ChargeGreaterThan; } public v_JB_PurchasesTotalsToDateQuery setChargeGreaterThan(BigDecimal value) { this.ChargeGreaterThan = value; return this; } public BigDecimal getChargeLessThan() { return ChargeLessThan; } public v_JB_PurchasesTotalsToDateQuery setChargeLessThan(BigDecimal value) { this.ChargeLessThan = value; return this; } public BigDecimal getChargeLessThanOrEqualTo() { return ChargeLessThanOrEqualTo; } public v_JB_PurchasesTotalsToDateQuery setChargeLessThanOrEqualTo(BigDecimal value) { this.ChargeLessThanOrEqualTo = value; return this; } public BigDecimal getChargeNotEqualTo() { return ChargeNotEqualTo; } public v_JB_PurchasesTotalsToDateQuery setChargeNotEqualTo(BigDecimal value) { this.ChargeNotEqualTo = value; return this; } public ArrayList getChargeBetween() { return ChargeBetween; } public v_JB_PurchasesTotalsToDateQuery setChargeBetween(ArrayList value) { this.ChargeBetween = value; return this; } public ArrayList getChargeIn() { return ChargeIn; } public v_JB_PurchasesTotalsToDateQuery setChargeIn(ArrayList value) { this.ChargeIn = value; return this; } public BigDecimal getCost() { return Cost; } public v_JB_PurchasesTotalsToDateQuery setCost(BigDecimal value) { this.Cost = value; return this; } public BigDecimal getCostGreaterThanOrEqualTo() { return CostGreaterThanOrEqualTo; } public v_JB_PurchasesTotalsToDateQuery setCostGreaterThanOrEqualTo(BigDecimal value) { this.CostGreaterThanOrEqualTo = value; return this; } public BigDecimal getCostGreaterThan() { return CostGreaterThan; } public v_JB_PurchasesTotalsToDateQuery setCostGreaterThan(BigDecimal value) { this.CostGreaterThan = value; return this; } public BigDecimal getCostLessThan() { return CostLessThan; } public v_JB_PurchasesTotalsToDateQuery setCostLessThan(BigDecimal value) { this.CostLessThan = value; return this; } public BigDecimal getCostLessThanOrEqualTo() { return CostLessThanOrEqualTo; } public v_JB_PurchasesTotalsToDateQuery setCostLessThanOrEqualTo(BigDecimal value) { this.CostLessThanOrEqualTo = value; return this; } public BigDecimal getCostNotEqualTo() { return CostNotEqualTo; } public v_JB_PurchasesTotalsToDateQuery setCostNotEqualTo(BigDecimal value) { this.CostNotEqualTo = value; return this; } public ArrayList getCostBetween() { return CostBetween; } public v_JB_PurchasesTotalsToDateQuery setCostBetween(ArrayList value) { this.CostBetween = value; return this; } public ArrayList getCostIn() { return CostIn; } public v_JB_PurchasesTotalsToDateQuery setCostIn(ArrayList value) { this.CostIn = value; return this; } public BigDecimal getQty() { return Qty; } public v_JB_PurchasesTotalsToDateQuery setQty(BigDecimal value) { this.Qty = value; return this; } public BigDecimal getQtyGreaterThanOrEqualTo() { return QtyGreaterThanOrEqualTo; } public v_JB_PurchasesTotalsToDateQuery setQtyGreaterThanOrEqualTo(BigDecimal value) { this.QtyGreaterThanOrEqualTo = value; return this; } public BigDecimal getQtyGreaterThan() { return QtyGreaterThan; } public v_JB_PurchasesTotalsToDateQuery setQtyGreaterThan(BigDecimal value) { this.QtyGreaterThan = value; return this; } public BigDecimal getQtyLessThan() { return QtyLessThan; } public v_JB_PurchasesTotalsToDateQuery setQtyLessThan(BigDecimal value) { this.QtyLessThan = value; return this; } public BigDecimal getQtyLessThanOrEqualTo() { return QtyLessThanOrEqualTo; } public v_JB_PurchasesTotalsToDateQuery setQtyLessThanOrEqualTo(BigDecimal value) { this.QtyLessThanOrEqualTo = value; return this; } public BigDecimal getQtyNotEqualTo() { return QtyNotEqualTo; } public v_JB_PurchasesTotalsToDateQuery setQtyNotEqualTo(BigDecimal value) { this.QtyNotEqualTo = value; return this; } public ArrayList getQtyBetween() { return QtyBetween; } public v_JB_PurchasesTotalsToDateQuery setQtyBetween(ArrayList value) { this.QtyBetween = value; return this; } public ArrayList getQtyIn() { return QtyIn; } public v_JB_PurchasesTotalsToDateQuery setQtyIn(ArrayList value) { this.QtyIn = value; return this; } public String getJobID() { return JobID; } public v_JB_PurchasesTotalsToDateQuery setJobID(String value) { this.JobID = value; return this; } public String getJobIDStartsWith() { return JobIDStartsWith; } public v_JB_PurchasesTotalsToDateQuery setJobIDStartsWith(String value) { this.JobIDStartsWith = value; return this; } public String getJobIDEndsWith() { return JobIDEndsWith; } public v_JB_PurchasesTotalsToDateQuery setJobIDEndsWith(String value) { this.JobIDEndsWith = value; return this; } public String getJobIDContains() { return JobIDContains; } public v_JB_PurchasesTotalsToDateQuery setJobIDContains(String value) { this.JobIDContains = value; return this; } public String getJobIDLike() { return JobIDLike; } public v_JB_PurchasesTotalsToDateQuery setJobIDLike(String value) { this.JobIDLike = value; return this; } public ArrayList getJobIDBetween() { return JobIDBetween; } public v_JB_PurchasesTotalsToDateQuery setJobIDBetween(ArrayList value) { this.JobIDBetween = value; return this; } public ArrayList getJobIDIn() { return JobIDIn; } public v_JB_PurchasesTotalsToDateQuery setJobIDIn(ArrayList value) { this.JobIDIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class v_JB_ResourcesQuery extends QueryDb implements IReturn> { public String SourceType = null; public String SourceTypeStartsWith = null; public String SourceTypeEndsWith = null; public String SourceTypeContains = null; public String SourceTypeLike = null; public ArrayList SourceTypeBetween = null; public ArrayList SourceTypeIn = null; public String BatchNo = null; public String BatchNoStartsWith = null; public String BatchNoEndsWith = null; public String BatchNoContains = null; public String BatchNoLike = null; public ArrayList BatchNoBetween = null; public ArrayList BatchNoIn = null; public String JobCostStage = null; public String JobCostStageStartsWith = null; public String JobCostStageEndsWith = null; public String JobCostStageContains = null; public String JobCostStageLike = null; public ArrayList JobCostStageBetween = null; public ArrayList JobCostStageIn = null; public String Item = null; public String ItemStartsWith = null; public String ItemEndsWith = null; public String ItemContains = null; public String ItemLike = null; public ArrayList ItemBetween = null; public ArrayList ItemIn = null; public String Description = null; public String DescriptionStartsWith = null; public String DescriptionEndsWith = null; public String DescriptionContains = null; public String DescriptionLike = null; public ArrayList DescriptionBetween = null; public ArrayList DescriptionIn = null; public Date TranDate = null; public Date TranDateGreaterThanOrEqualTo = null; public Date TranDateGreaterThan = null; public Date TranDateLessThan = null; public Date TranDateLessThanOrEqualTo = null; public Date TranDateNotEqualTo = null; public ArrayList TranDateBetween = null; public ArrayList TranDateIn = null; public BigDecimal Qty = null; public BigDecimal QtyGreaterThanOrEqualTo = null; public BigDecimal QtyGreaterThan = null; public BigDecimal QtyLessThan = null; public BigDecimal QtyLessThanOrEqualTo = null; public BigDecimal QtyNotEqualTo = null; public ArrayList QtyBetween = null; public ArrayList QtyIn = null; public BigDecimal TotalCost = null; public BigDecimal TotalCostGreaterThanOrEqualTo = null; public BigDecimal TotalCostGreaterThan = null; public BigDecimal TotalCostLessThan = null; public BigDecimal TotalCostLessThanOrEqualTo = null; public BigDecimal TotalCostNotEqualTo = null; public ArrayList TotalCostBetween = null; public ArrayList TotalCostIn = null; public BigDecimal TotalCharge = null; public BigDecimal TotalChargeGreaterThanOrEqualTo = null; public BigDecimal TotalChargeGreaterThan = null; public BigDecimal TotalChargeLessThan = null; public BigDecimal TotalChargeLessThanOrEqualTo = null; public BigDecimal TotalChargeNotEqualTo = null; public ArrayList TotalChargeBetween = null; public ArrayList TotalChargeIn = null; public String Remark = null; public String RemarkStartsWith = null; public String RemarkEndsWith = null; public String RemarkContains = null; public String RemarkLike = null; public ArrayList RemarkBetween = null; public ArrayList RemarkIn = null; public String JobNo = null; public String JobNoStartsWith = null; public String JobNoEndsWith = null; public String JobNoContains = null; public String JobNoLike = null; public ArrayList JobNoBetween = null; public ArrayList JobNoIn = null; public String getSourceType() { return SourceType; } public v_JB_ResourcesQuery setSourceType(String value) { this.SourceType = value; return this; } public String getSourceTypeStartsWith() { return SourceTypeStartsWith; } public v_JB_ResourcesQuery setSourceTypeStartsWith(String value) { this.SourceTypeStartsWith = value; return this; } public String getSourceTypeEndsWith() { return SourceTypeEndsWith; } public v_JB_ResourcesQuery setSourceTypeEndsWith(String value) { this.SourceTypeEndsWith = value; return this; } public String getSourceTypeContains() { return SourceTypeContains; } public v_JB_ResourcesQuery setSourceTypeContains(String value) { this.SourceTypeContains = value; return this; } public String getSourceTypeLike() { return SourceTypeLike; } public v_JB_ResourcesQuery setSourceTypeLike(String value) { this.SourceTypeLike = value; return this; } public ArrayList getSourceTypeBetween() { return SourceTypeBetween; } public v_JB_ResourcesQuery setSourceTypeBetween(ArrayList value) { this.SourceTypeBetween = value; return this; } public ArrayList getSourceTypeIn() { return SourceTypeIn; } public v_JB_ResourcesQuery setSourceTypeIn(ArrayList value) { this.SourceTypeIn = value; return this; } public String getBatchNo() { return BatchNo; } public v_JB_ResourcesQuery setBatchNo(String value) { this.BatchNo = value; return this; } public String getBatchNoStartsWith() { return BatchNoStartsWith; } public v_JB_ResourcesQuery setBatchNoStartsWith(String value) { this.BatchNoStartsWith = value; return this; } public String getBatchNoEndsWith() { return BatchNoEndsWith; } public v_JB_ResourcesQuery setBatchNoEndsWith(String value) { this.BatchNoEndsWith = value; return this; } public String getBatchNoContains() { return BatchNoContains; } public v_JB_ResourcesQuery setBatchNoContains(String value) { this.BatchNoContains = value; return this; } public String getBatchNoLike() { return BatchNoLike; } public v_JB_ResourcesQuery setBatchNoLike(String value) { this.BatchNoLike = value; return this; } public ArrayList getBatchNoBetween() { return BatchNoBetween; } public v_JB_ResourcesQuery setBatchNoBetween(ArrayList value) { this.BatchNoBetween = value; return this; } public ArrayList getBatchNoIn() { return BatchNoIn; } public v_JB_ResourcesQuery setBatchNoIn(ArrayList value) { this.BatchNoIn = value; return this; } public String getJobCostStage() { return JobCostStage; } public v_JB_ResourcesQuery setJobCostStage(String value) { this.JobCostStage = value; return this; } public String getJobCostStageStartsWith() { return JobCostStageStartsWith; } public v_JB_ResourcesQuery setJobCostStageStartsWith(String value) { this.JobCostStageStartsWith = value; return this; } public String getJobCostStageEndsWith() { return JobCostStageEndsWith; } public v_JB_ResourcesQuery setJobCostStageEndsWith(String value) { this.JobCostStageEndsWith = value; return this; } public String getJobCostStageContains() { return JobCostStageContains; } public v_JB_ResourcesQuery setJobCostStageContains(String value) { this.JobCostStageContains = value; return this; } public String getJobCostStageLike() { return JobCostStageLike; } public v_JB_ResourcesQuery setJobCostStageLike(String value) { this.JobCostStageLike = value; return this; } public ArrayList getJobCostStageBetween() { return JobCostStageBetween; } public v_JB_ResourcesQuery setJobCostStageBetween(ArrayList value) { this.JobCostStageBetween = value; return this; } public ArrayList getJobCostStageIn() { return JobCostStageIn; } public v_JB_ResourcesQuery setJobCostStageIn(ArrayList value) { this.JobCostStageIn = value; return this; } public String getItem() { return Item; } public v_JB_ResourcesQuery setItem(String value) { this.Item = value; return this; } public String getItemStartsWith() { return ItemStartsWith; } public v_JB_ResourcesQuery setItemStartsWith(String value) { this.ItemStartsWith = value; return this; } public String getItemEndsWith() { return ItemEndsWith; } public v_JB_ResourcesQuery setItemEndsWith(String value) { this.ItemEndsWith = value; return this; } public String getItemContains() { return ItemContains; } public v_JB_ResourcesQuery setItemContains(String value) { this.ItemContains = value; return this; } public String getItemLike() { return ItemLike; } public v_JB_ResourcesQuery setItemLike(String value) { this.ItemLike = value; return this; } public ArrayList getItemBetween() { return ItemBetween; } public v_JB_ResourcesQuery setItemBetween(ArrayList value) { this.ItemBetween = value; return this; } public ArrayList getItemIn() { return ItemIn; } public v_JB_ResourcesQuery setItemIn(ArrayList value) { this.ItemIn = value; return this; } public String getDescription() { return Description; } public v_JB_ResourcesQuery setDescription(String value) { this.Description = value; return this; } public String getDescriptionStartsWith() { return DescriptionStartsWith; } public v_JB_ResourcesQuery setDescriptionStartsWith(String value) { this.DescriptionStartsWith = value; return this; } public String getDescriptionEndsWith() { return DescriptionEndsWith; } public v_JB_ResourcesQuery setDescriptionEndsWith(String value) { this.DescriptionEndsWith = value; return this; } public String getDescriptionContains() { return DescriptionContains; } public v_JB_ResourcesQuery setDescriptionContains(String value) { this.DescriptionContains = value; return this; } public String getDescriptionLike() { return DescriptionLike; } public v_JB_ResourcesQuery setDescriptionLike(String value) { this.DescriptionLike = value; return this; } public ArrayList getDescriptionBetween() { return DescriptionBetween; } public v_JB_ResourcesQuery setDescriptionBetween(ArrayList value) { this.DescriptionBetween = value; return this; } public ArrayList getDescriptionIn() { return DescriptionIn; } public v_JB_ResourcesQuery setDescriptionIn(ArrayList value) { this.DescriptionIn = value; return this; } public Date getTranDate() { return TranDate; } public v_JB_ResourcesQuery setTranDate(Date value) { this.TranDate = value; return this; } public Date getTranDateGreaterThanOrEqualTo() { return TranDateGreaterThanOrEqualTo; } public v_JB_ResourcesQuery setTranDateGreaterThanOrEqualTo(Date value) { this.TranDateGreaterThanOrEqualTo = value; return this; } public Date getTranDateGreaterThan() { return TranDateGreaterThan; } public v_JB_ResourcesQuery setTranDateGreaterThan(Date value) { this.TranDateGreaterThan = value; return this; } public Date getTranDateLessThan() { return TranDateLessThan; } public v_JB_ResourcesQuery setTranDateLessThan(Date value) { this.TranDateLessThan = value; return this; } public Date getTranDateLessThanOrEqualTo() { return TranDateLessThanOrEqualTo; } public v_JB_ResourcesQuery setTranDateLessThanOrEqualTo(Date value) { this.TranDateLessThanOrEqualTo = value; return this; } public Date getTranDateNotEqualTo() { return TranDateNotEqualTo; } public v_JB_ResourcesQuery setTranDateNotEqualTo(Date value) { this.TranDateNotEqualTo = value; return this; } public ArrayList getTranDateBetween() { return TranDateBetween; } public v_JB_ResourcesQuery setTranDateBetween(ArrayList value) { this.TranDateBetween = value; return this; } public ArrayList getTranDateIn() { return TranDateIn; } public v_JB_ResourcesQuery setTranDateIn(ArrayList value) { this.TranDateIn = value; return this; } public BigDecimal getQty() { return Qty; } public v_JB_ResourcesQuery setQty(BigDecimal value) { this.Qty = value; return this; } public BigDecimal getQtyGreaterThanOrEqualTo() { return QtyGreaterThanOrEqualTo; } public v_JB_ResourcesQuery setQtyGreaterThanOrEqualTo(BigDecimal value) { this.QtyGreaterThanOrEqualTo = value; return this; } public BigDecimal getQtyGreaterThan() { return QtyGreaterThan; } public v_JB_ResourcesQuery setQtyGreaterThan(BigDecimal value) { this.QtyGreaterThan = value; return this; } public BigDecimal getQtyLessThan() { return QtyLessThan; } public v_JB_ResourcesQuery setQtyLessThan(BigDecimal value) { this.QtyLessThan = value; return this; } public BigDecimal getQtyLessThanOrEqualTo() { return QtyLessThanOrEqualTo; } public v_JB_ResourcesQuery setQtyLessThanOrEqualTo(BigDecimal value) { this.QtyLessThanOrEqualTo = value; return this; } public BigDecimal getQtyNotEqualTo() { return QtyNotEqualTo; } public v_JB_ResourcesQuery setQtyNotEqualTo(BigDecimal value) { this.QtyNotEqualTo = value; return this; } public ArrayList getQtyBetween() { return QtyBetween; } public v_JB_ResourcesQuery setQtyBetween(ArrayList value) { this.QtyBetween = value; return this; } public ArrayList getQtyIn() { return QtyIn; } public v_JB_ResourcesQuery setQtyIn(ArrayList value) { this.QtyIn = value; return this; } public BigDecimal getTotalCost() { return TotalCost; } public v_JB_ResourcesQuery setTotalCost(BigDecimal value) { this.TotalCost = value; return this; } public BigDecimal getTotalCostGreaterThanOrEqualTo() { return TotalCostGreaterThanOrEqualTo; } public v_JB_ResourcesQuery setTotalCostGreaterThanOrEqualTo(BigDecimal value) { this.TotalCostGreaterThanOrEqualTo = value; return this; } public BigDecimal getTotalCostGreaterThan() { return TotalCostGreaterThan; } public v_JB_ResourcesQuery setTotalCostGreaterThan(BigDecimal value) { this.TotalCostGreaterThan = value; return this; } public BigDecimal getTotalCostLessThan() { return TotalCostLessThan; } public v_JB_ResourcesQuery setTotalCostLessThan(BigDecimal value) { this.TotalCostLessThan = value; return this; } public BigDecimal getTotalCostLessThanOrEqualTo() { return TotalCostLessThanOrEqualTo; } public v_JB_ResourcesQuery setTotalCostLessThanOrEqualTo(BigDecimal value) { this.TotalCostLessThanOrEqualTo = value; return this; } public BigDecimal getTotalCostNotEqualTo() { return TotalCostNotEqualTo; } public v_JB_ResourcesQuery setTotalCostNotEqualTo(BigDecimal value) { this.TotalCostNotEqualTo = value; return this; } public ArrayList getTotalCostBetween() { return TotalCostBetween; } public v_JB_ResourcesQuery setTotalCostBetween(ArrayList value) { this.TotalCostBetween = value; return this; } public ArrayList getTotalCostIn() { return TotalCostIn; } public v_JB_ResourcesQuery setTotalCostIn(ArrayList value) { this.TotalCostIn = value; return this; } public BigDecimal getTotalCharge() { return TotalCharge; } public v_JB_ResourcesQuery setTotalCharge(BigDecimal value) { this.TotalCharge = value; return this; } public BigDecimal getTotalChargeGreaterThanOrEqualTo() { return TotalChargeGreaterThanOrEqualTo; } public v_JB_ResourcesQuery setTotalChargeGreaterThanOrEqualTo(BigDecimal value) { this.TotalChargeGreaterThanOrEqualTo = value; return this; } public BigDecimal getTotalChargeGreaterThan() { return TotalChargeGreaterThan; } public v_JB_ResourcesQuery setTotalChargeGreaterThan(BigDecimal value) { this.TotalChargeGreaterThan = value; return this; } public BigDecimal getTotalChargeLessThan() { return TotalChargeLessThan; } public v_JB_ResourcesQuery setTotalChargeLessThan(BigDecimal value) { this.TotalChargeLessThan = value; return this; } public BigDecimal getTotalChargeLessThanOrEqualTo() { return TotalChargeLessThanOrEqualTo; } public v_JB_ResourcesQuery setTotalChargeLessThanOrEqualTo(BigDecimal value) { this.TotalChargeLessThanOrEqualTo = value; return this; } public BigDecimal getTotalChargeNotEqualTo() { return TotalChargeNotEqualTo; } public v_JB_ResourcesQuery setTotalChargeNotEqualTo(BigDecimal value) { this.TotalChargeNotEqualTo = value; return this; } public ArrayList getTotalChargeBetween() { return TotalChargeBetween; } public v_JB_ResourcesQuery setTotalChargeBetween(ArrayList value) { this.TotalChargeBetween = value; return this; } public ArrayList getTotalChargeIn() { return TotalChargeIn; } public v_JB_ResourcesQuery setTotalChargeIn(ArrayList value) { this.TotalChargeIn = value; return this; } public String getRemark() { return Remark; } public v_JB_ResourcesQuery setRemark(String value) { this.Remark = value; return this; } public String getRemarkStartsWith() { return RemarkStartsWith; } public v_JB_ResourcesQuery setRemarkStartsWith(String value) { this.RemarkStartsWith = value; return this; } public String getRemarkEndsWith() { return RemarkEndsWith; } public v_JB_ResourcesQuery setRemarkEndsWith(String value) { this.RemarkEndsWith = value; return this; } public String getRemarkContains() { return RemarkContains; } public v_JB_ResourcesQuery setRemarkContains(String value) { this.RemarkContains = value; return this; } public String getRemarkLike() { return RemarkLike; } public v_JB_ResourcesQuery setRemarkLike(String value) { this.RemarkLike = value; return this; } public ArrayList getRemarkBetween() { return RemarkBetween; } public v_JB_ResourcesQuery setRemarkBetween(ArrayList value) { this.RemarkBetween = value; return this; } public ArrayList getRemarkIn() { return RemarkIn; } public v_JB_ResourcesQuery setRemarkIn(ArrayList value) { this.RemarkIn = value; return this; } public String getJobNo() { return JobNo; } public v_JB_ResourcesQuery setJobNo(String value) { this.JobNo = value; return this; } public String getJobNoStartsWith() { return JobNoStartsWith; } public v_JB_ResourcesQuery setJobNoStartsWith(String value) { this.JobNoStartsWith = value; return this; } public String getJobNoEndsWith() { return JobNoEndsWith; } public v_JB_ResourcesQuery setJobNoEndsWith(String value) { this.JobNoEndsWith = value; return this; } public String getJobNoContains() { return JobNoContains; } public v_JB_ResourcesQuery setJobNoContains(String value) { this.JobNoContains = value; return this; } public String getJobNoLike() { return JobNoLike; } public v_JB_ResourcesQuery setJobNoLike(String value) { this.JobNoLike = value; return this; } public ArrayList getJobNoBetween() { return JobNoBetween; } public v_JB_ResourcesQuery setJobNoBetween(ArrayList value) { this.JobNoBetween = value; return this; } public ArrayList getJobNoIn() { return JobNoIn; } public v_JB_ResourcesQuery setJobNoIn(ArrayList value) { this.JobNoIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class v_JB_ResourcesEstimateTotalsToDateQuery extends QueryDb implements IReturn> { public BigDecimal Charge = null; public BigDecimal ChargeGreaterThanOrEqualTo = null; public BigDecimal ChargeGreaterThan = null; public BigDecimal ChargeLessThan = null; public BigDecimal ChargeLessThanOrEqualTo = null; public BigDecimal ChargeNotEqualTo = null; public ArrayList ChargeBetween = null; public ArrayList ChargeIn = null; public BigDecimal Cost = null; public BigDecimal CostGreaterThanOrEqualTo = null; public BigDecimal CostGreaterThan = null; public BigDecimal CostLessThan = null; public BigDecimal CostLessThanOrEqualTo = null; public BigDecimal CostNotEqualTo = null; public ArrayList CostBetween = null; public ArrayList CostIn = null; public BigDecimal Qty = null; public BigDecimal QtyGreaterThanOrEqualTo = null; public BigDecimal QtyGreaterThan = null; public BigDecimal QtyLessThan = null; public BigDecimal QtyLessThanOrEqualTo = null; public BigDecimal QtyNotEqualTo = null; public ArrayList QtyBetween = null; public ArrayList QtyIn = null; public String JobID = null; public String JobIDStartsWith = null; public String JobIDEndsWith = null; public String JobIDContains = null; public String JobIDLike = null; public ArrayList JobIDBetween = null; public ArrayList JobIDIn = null; public Short DefaultEstimate = null; public Short DefaultEstimateGreaterThanOrEqualTo = null; public Short DefaultEstimateGreaterThan = null; public Short DefaultEstimateLessThan = null; public Short DefaultEstimateLessThanOrEqualTo = null; public Short DefaultEstimateNotEqualTo = null; public ArrayList DefaultEstimateBetween = null; public ArrayList DefaultEstimateIn = null; public BigDecimal getCharge() { return Charge; } public v_JB_ResourcesEstimateTotalsToDateQuery setCharge(BigDecimal value) { this.Charge = value; return this; } public BigDecimal getChargeGreaterThanOrEqualTo() { return ChargeGreaterThanOrEqualTo; } public v_JB_ResourcesEstimateTotalsToDateQuery setChargeGreaterThanOrEqualTo(BigDecimal value) { this.ChargeGreaterThanOrEqualTo = value; return this; } public BigDecimal getChargeGreaterThan() { return ChargeGreaterThan; } public v_JB_ResourcesEstimateTotalsToDateQuery setChargeGreaterThan(BigDecimal value) { this.ChargeGreaterThan = value; return this; } public BigDecimal getChargeLessThan() { return ChargeLessThan; } public v_JB_ResourcesEstimateTotalsToDateQuery setChargeLessThan(BigDecimal value) { this.ChargeLessThan = value; return this; } public BigDecimal getChargeLessThanOrEqualTo() { return ChargeLessThanOrEqualTo; } public v_JB_ResourcesEstimateTotalsToDateQuery setChargeLessThanOrEqualTo(BigDecimal value) { this.ChargeLessThanOrEqualTo = value; return this; } public BigDecimal getChargeNotEqualTo() { return ChargeNotEqualTo; } public v_JB_ResourcesEstimateTotalsToDateQuery setChargeNotEqualTo(BigDecimal value) { this.ChargeNotEqualTo = value; return this; } public ArrayList getChargeBetween() { return ChargeBetween; } public v_JB_ResourcesEstimateTotalsToDateQuery setChargeBetween(ArrayList value) { this.ChargeBetween = value; return this; } public ArrayList getChargeIn() { return ChargeIn; } public v_JB_ResourcesEstimateTotalsToDateQuery setChargeIn(ArrayList value) { this.ChargeIn = value; return this; } public BigDecimal getCost() { return Cost; } public v_JB_ResourcesEstimateTotalsToDateQuery setCost(BigDecimal value) { this.Cost = value; return this; } public BigDecimal getCostGreaterThanOrEqualTo() { return CostGreaterThanOrEqualTo; } public v_JB_ResourcesEstimateTotalsToDateQuery setCostGreaterThanOrEqualTo(BigDecimal value) { this.CostGreaterThanOrEqualTo = value; return this; } public BigDecimal getCostGreaterThan() { return CostGreaterThan; } public v_JB_ResourcesEstimateTotalsToDateQuery setCostGreaterThan(BigDecimal value) { this.CostGreaterThan = value; return this; } public BigDecimal getCostLessThan() { return CostLessThan; } public v_JB_ResourcesEstimateTotalsToDateQuery setCostLessThan(BigDecimal value) { this.CostLessThan = value; return this; } public BigDecimal getCostLessThanOrEqualTo() { return CostLessThanOrEqualTo; } public v_JB_ResourcesEstimateTotalsToDateQuery setCostLessThanOrEqualTo(BigDecimal value) { this.CostLessThanOrEqualTo = value; return this; } public BigDecimal getCostNotEqualTo() { return CostNotEqualTo; } public v_JB_ResourcesEstimateTotalsToDateQuery setCostNotEqualTo(BigDecimal value) { this.CostNotEqualTo = value; return this; } public ArrayList getCostBetween() { return CostBetween; } public v_JB_ResourcesEstimateTotalsToDateQuery setCostBetween(ArrayList value) { this.CostBetween = value; return this; } public ArrayList getCostIn() { return CostIn; } public v_JB_ResourcesEstimateTotalsToDateQuery setCostIn(ArrayList value) { this.CostIn = value; return this; } public BigDecimal getQty() { return Qty; } public v_JB_ResourcesEstimateTotalsToDateQuery setQty(BigDecimal value) { this.Qty = value; return this; } public BigDecimal getQtyGreaterThanOrEqualTo() { return QtyGreaterThanOrEqualTo; } public v_JB_ResourcesEstimateTotalsToDateQuery setQtyGreaterThanOrEqualTo(BigDecimal value) { this.QtyGreaterThanOrEqualTo = value; return this; } public BigDecimal getQtyGreaterThan() { return QtyGreaterThan; } public v_JB_ResourcesEstimateTotalsToDateQuery setQtyGreaterThan(BigDecimal value) { this.QtyGreaterThan = value; return this; } public BigDecimal getQtyLessThan() { return QtyLessThan; } public v_JB_ResourcesEstimateTotalsToDateQuery setQtyLessThan(BigDecimal value) { this.QtyLessThan = value; return this; } public BigDecimal getQtyLessThanOrEqualTo() { return QtyLessThanOrEqualTo; } public v_JB_ResourcesEstimateTotalsToDateQuery setQtyLessThanOrEqualTo(BigDecimal value) { this.QtyLessThanOrEqualTo = value; return this; } public BigDecimal getQtyNotEqualTo() { return QtyNotEqualTo; } public v_JB_ResourcesEstimateTotalsToDateQuery setQtyNotEqualTo(BigDecimal value) { this.QtyNotEqualTo = value; return this; } public ArrayList getQtyBetween() { return QtyBetween; } public v_JB_ResourcesEstimateTotalsToDateQuery setQtyBetween(ArrayList value) { this.QtyBetween = value; return this; } public ArrayList getQtyIn() { return QtyIn; } public v_JB_ResourcesEstimateTotalsToDateQuery setQtyIn(ArrayList value) { this.QtyIn = value; return this; } public String getJobID() { return JobID; } public v_JB_ResourcesEstimateTotalsToDateQuery setJobID(String value) { this.JobID = value; return this; } public String getJobIDStartsWith() { return JobIDStartsWith; } public v_JB_ResourcesEstimateTotalsToDateQuery setJobIDStartsWith(String value) { this.JobIDStartsWith = value; return this; } public String getJobIDEndsWith() { return JobIDEndsWith; } public v_JB_ResourcesEstimateTotalsToDateQuery setJobIDEndsWith(String value) { this.JobIDEndsWith = value; return this; } public String getJobIDContains() { return JobIDContains; } public v_JB_ResourcesEstimateTotalsToDateQuery setJobIDContains(String value) { this.JobIDContains = value; return this; } public String getJobIDLike() { return JobIDLike; } public v_JB_ResourcesEstimateTotalsToDateQuery setJobIDLike(String value) { this.JobIDLike = value; return this; } public ArrayList getJobIDBetween() { return JobIDBetween; } public v_JB_ResourcesEstimateTotalsToDateQuery setJobIDBetween(ArrayList value) { this.JobIDBetween = value; return this; } public ArrayList getJobIDIn() { return JobIDIn; } public v_JB_ResourcesEstimateTotalsToDateQuery setJobIDIn(ArrayList value) { this.JobIDIn = value; return this; } public Short getDefaultEstimate() { return DefaultEstimate; } public v_JB_ResourcesEstimateTotalsToDateQuery setDefaultEstimate(Short value) { this.DefaultEstimate = value; return this; } public Short getDefaultEstimateGreaterThanOrEqualTo() { return DefaultEstimateGreaterThanOrEqualTo; } public v_JB_ResourcesEstimateTotalsToDateQuery setDefaultEstimateGreaterThanOrEqualTo(Short value) { this.DefaultEstimateGreaterThanOrEqualTo = value; return this; } public Short getDefaultEstimateGreaterThan() { return DefaultEstimateGreaterThan; } public v_JB_ResourcesEstimateTotalsToDateQuery setDefaultEstimateGreaterThan(Short value) { this.DefaultEstimateGreaterThan = value; return this; } public Short getDefaultEstimateLessThan() { return DefaultEstimateLessThan; } public v_JB_ResourcesEstimateTotalsToDateQuery setDefaultEstimateLessThan(Short value) { this.DefaultEstimateLessThan = value; return this; } public Short getDefaultEstimateLessThanOrEqualTo() { return DefaultEstimateLessThanOrEqualTo; } public v_JB_ResourcesEstimateTotalsToDateQuery setDefaultEstimateLessThanOrEqualTo(Short value) { this.DefaultEstimateLessThanOrEqualTo = value; return this; } public Short getDefaultEstimateNotEqualTo() { return DefaultEstimateNotEqualTo; } public v_JB_ResourcesEstimateTotalsToDateQuery setDefaultEstimateNotEqualTo(Short value) { this.DefaultEstimateNotEqualTo = value; return this; } public ArrayList getDefaultEstimateBetween() { return DefaultEstimateBetween; } public v_JB_ResourcesEstimateTotalsToDateQuery setDefaultEstimateBetween(ArrayList value) { this.DefaultEstimateBetween = value; return this; } public ArrayList getDefaultEstimateIn() { return DefaultEstimateIn; } public v_JB_ResourcesEstimateTotalsToDateQuery setDefaultEstimateIn(ArrayList value) { this.DefaultEstimateIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class v_JB_ResourcesTotalsToDateQuery extends QueryDb implements IReturn> { public BigDecimal Charge = null; public BigDecimal ChargeGreaterThanOrEqualTo = null; public BigDecimal ChargeGreaterThan = null; public BigDecimal ChargeLessThan = null; public BigDecimal ChargeLessThanOrEqualTo = null; public BigDecimal ChargeNotEqualTo = null; public ArrayList ChargeBetween = null; public ArrayList ChargeIn = null; public BigDecimal Cost = null; public BigDecimal CostGreaterThanOrEqualTo = null; public BigDecimal CostGreaterThan = null; public BigDecimal CostLessThan = null; public BigDecimal CostLessThanOrEqualTo = null; public BigDecimal CostNotEqualTo = null; public ArrayList CostBetween = null; public ArrayList CostIn = null; public BigDecimal Qty = null; public BigDecimal QtyGreaterThanOrEqualTo = null; public BigDecimal QtyGreaterThan = null; public BigDecimal QtyLessThan = null; public BigDecimal QtyLessThanOrEqualTo = null; public BigDecimal QtyNotEqualTo = null; public ArrayList QtyBetween = null; public ArrayList QtyIn = null; public String JobID = null; public String JobIDStartsWith = null; public String JobIDEndsWith = null; public String JobIDContains = null; public String JobIDLike = null; public ArrayList JobIDBetween = null; public ArrayList JobIDIn = null; public BigDecimal getCharge() { return Charge; } public v_JB_ResourcesTotalsToDateQuery setCharge(BigDecimal value) { this.Charge = value; return this; } public BigDecimal getChargeGreaterThanOrEqualTo() { return ChargeGreaterThanOrEqualTo; } public v_JB_ResourcesTotalsToDateQuery setChargeGreaterThanOrEqualTo(BigDecimal value) { this.ChargeGreaterThanOrEqualTo = value; return this; } public BigDecimal getChargeGreaterThan() { return ChargeGreaterThan; } public v_JB_ResourcesTotalsToDateQuery setChargeGreaterThan(BigDecimal value) { this.ChargeGreaterThan = value; return this; } public BigDecimal getChargeLessThan() { return ChargeLessThan; } public v_JB_ResourcesTotalsToDateQuery setChargeLessThan(BigDecimal value) { this.ChargeLessThan = value; return this; } public BigDecimal getChargeLessThanOrEqualTo() { return ChargeLessThanOrEqualTo; } public v_JB_ResourcesTotalsToDateQuery setChargeLessThanOrEqualTo(BigDecimal value) { this.ChargeLessThanOrEqualTo = value; return this; } public BigDecimal getChargeNotEqualTo() { return ChargeNotEqualTo; } public v_JB_ResourcesTotalsToDateQuery setChargeNotEqualTo(BigDecimal value) { this.ChargeNotEqualTo = value; return this; } public ArrayList getChargeBetween() { return ChargeBetween; } public v_JB_ResourcesTotalsToDateQuery setChargeBetween(ArrayList value) { this.ChargeBetween = value; return this; } public ArrayList getChargeIn() { return ChargeIn; } public v_JB_ResourcesTotalsToDateQuery setChargeIn(ArrayList value) { this.ChargeIn = value; return this; } public BigDecimal getCost() { return Cost; } public v_JB_ResourcesTotalsToDateQuery setCost(BigDecimal value) { this.Cost = value; return this; } public BigDecimal getCostGreaterThanOrEqualTo() { return CostGreaterThanOrEqualTo; } public v_JB_ResourcesTotalsToDateQuery setCostGreaterThanOrEqualTo(BigDecimal value) { this.CostGreaterThanOrEqualTo = value; return this; } public BigDecimal getCostGreaterThan() { return CostGreaterThan; } public v_JB_ResourcesTotalsToDateQuery setCostGreaterThan(BigDecimal value) { this.CostGreaterThan = value; return this; } public BigDecimal getCostLessThan() { return CostLessThan; } public v_JB_ResourcesTotalsToDateQuery setCostLessThan(BigDecimal value) { this.CostLessThan = value; return this; } public BigDecimal getCostLessThanOrEqualTo() { return CostLessThanOrEqualTo; } public v_JB_ResourcesTotalsToDateQuery setCostLessThanOrEqualTo(BigDecimal value) { this.CostLessThanOrEqualTo = value; return this; } public BigDecimal getCostNotEqualTo() { return CostNotEqualTo; } public v_JB_ResourcesTotalsToDateQuery setCostNotEqualTo(BigDecimal value) { this.CostNotEqualTo = value; return this; } public ArrayList getCostBetween() { return CostBetween; } public v_JB_ResourcesTotalsToDateQuery setCostBetween(ArrayList value) { this.CostBetween = value; return this; } public ArrayList getCostIn() { return CostIn; } public v_JB_ResourcesTotalsToDateQuery setCostIn(ArrayList value) { this.CostIn = value; return this; } public BigDecimal getQty() { return Qty; } public v_JB_ResourcesTotalsToDateQuery setQty(BigDecimal value) { this.Qty = value; return this; } public BigDecimal getQtyGreaterThanOrEqualTo() { return QtyGreaterThanOrEqualTo; } public v_JB_ResourcesTotalsToDateQuery setQtyGreaterThanOrEqualTo(BigDecimal value) { this.QtyGreaterThanOrEqualTo = value; return this; } public BigDecimal getQtyGreaterThan() { return QtyGreaterThan; } public v_JB_ResourcesTotalsToDateQuery setQtyGreaterThan(BigDecimal value) { this.QtyGreaterThan = value; return this; } public BigDecimal getQtyLessThan() { return QtyLessThan; } public v_JB_ResourcesTotalsToDateQuery setQtyLessThan(BigDecimal value) { this.QtyLessThan = value; return this; } public BigDecimal getQtyLessThanOrEqualTo() { return QtyLessThanOrEqualTo; } public v_JB_ResourcesTotalsToDateQuery setQtyLessThanOrEqualTo(BigDecimal value) { this.QtyLessThanOrEqualTo = value; return this; } public BigDecimal getQtyNotEqualTo() { return QtyNotEqualTo; } public v_JB_ResourcesTotalsToDateQuery setQtyNotEqualTo(BigDecimal value) { this.QtyNotEqualTo = value; return this; } public ArrayList getQtyBetween() { return QtyBetween; } public v_JB_ResourcesTotalsToDateQuery setQtyBetween(ArrayList value) { this.QtyBetween = value; return this; } public ArrayList getQtyIn() { return QtyIn; } public v_JB_ResourcesTotalsToDateQuery setQtyIn(ArrayList value) { this.QtyIn = value; return this; } public String getJobID() { return JobID; } public v_JB_ResourcesTotalsToDateQuery setJobID(String value) { this.JobID = value; return this; } public String getJobIDStartsWith() { return JobIDStartsWith; } public v_JB_ResourcesTotalsToDateQuery setJobIDStartsWith(String value) { this.JobIDStartsWith = value; return this; } public String getJobIDEndsWith() { return JobIDEndsWith; } public v_JB_ResourcesTotalsToDateQuery setJobIDEndsWith(String value) { this.JobIDEndsWith = value; return this; } public String getJobIDContains() { return JobIDContains; } public v_JB_ResourcesTotalsToDateQuery setJobIDContains(String value) { this.JobIDContains = value; return this; } public String getJobIDLike() { return JobIDLike; } public v_JB_ResourcesTotalsToDateQuery setJobIDLike(String value) { this.JobIDLike = value; return this; } public ArrayList getJobIDBetween() { return JobIDBetween; } public v_JB_ResourcesTotalsToDateQuery setJobIDBetween(ArrayList value) { this.JobIDBetween = value; return this; } public ArrayList getJobIDIn() { return JobIDIn; } public v_JB_ResourcesTotalsToDateQuery setJobIDIn(ArrayList value) { this.JobIDIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class v_JB_TransactionsQuery extends QueryDb implements IReturn> { public String SourceType = null; public String SourceTypeStartsWith = null; public String SourceTypeEndsWith = null; public String SourceTypeContains = null; public String SourceTypeLike = null; public ArrayList SourceTypeBetween = null; public ArrayList SourceTypeIn = null; public String BatchNo = null; public String BatchNoStartsWith = null; public String BatchNoEndsWith = null; public String BatchNoContains = null; public String BatchNoLike = null; public ArrayList BatchNoBetween = null; public ArrayList BatchNoIn = null; public String JobCostStage = null; public String JobCostStageStartsWith = null; public String JobCostStageEndsWith = null; public String JobCostStageContains = null; public String JobCostStageLike = null; public ArrayList JobCostStageBetween = null; public ArrayList JobCostStageIn = null; public String Item = null; public String ItemStartsWith = null; public String ItemEndsWith = null; public String ItemContains = null; public String ItemLike = null; public ArrayList ItemBetween = null; public ArrayList ItemIn = null; public String Description = null; public String DescriptionStartsWith = null; public String DescriptionEndsWith = null; public String DescriptionContains = null; public String DescriptionLike = null; public ArrayList DescriptionBetween = null; public ArrayList DescriptionIn = null; public Date TranDate = null; public Date TranDateGreaterThanOrEqualTo = null; public Date TranDateGreaterThan = null; public Date TranDateLessThan = null; public Date TranDateLessThanOrEqualTo = null; public Date TranDateNotEqualTo = null; public ArrayList TranDateBetween = null; public ArrayList TranDateIn = null; public BigDecimal Qty = null; public BigDecimal QtyGreaterThanOrEqualTo = null; public BigDecimal QtyGreaterThan = null; public BigDecimal QtyLessThan = null; public BigDecimal QtyLessThanOrEqualTo = null; public BigDecimal QtyNotEqualTo = null; public ArrayList QtyBetween = null; public ArrayList QtyIn = null; public BigDecimal TotalCost = null; public BigDecimal TotalCostGreaterThanOrEqualTo = null; public BigDecimal TotalCostGreaterThan = null; public BigDecimal TotalCostLessThan = null; public BigDecimal TotalCostLessThanOrEqualTo = null; public BigDecimal TotalCostNotEqualTo = null; public ArrayList TotalCostBetween = null; public ArrayList TotalCostIn = null; public BigDecimal TotalCharge = null; public BigDecimal TotalChargeGreaterThanOrEqualTo = null; public BigDecimal TotalChargeGreaterThan = null; public BigDecimal TotalChargeLessThan = null; public BigDecimal TotalChargeLessThanOrEqualTo = null; public BigDecimal TotalChargeNotEqualTo = null; public ArrayList TotalChargeBetween = null; public ArrayList TotalChargeIn = null; public String Remark = null; public String RemarkStartsWith = null; public String RemarkEndsWith = null; public String RemarkContains = null; public String RemarkLike = null; public ArrayList RemarkBetween = null; public ArrayList RemarkIn = null; public String JobNo = null; public String JobNoStartsWith = null; public String JobNoEndsWith = null; public String JobNoContains = null; public String JobNoLike = null; public ArrayList JobNoBetween = null; public ArrayList JobNoIn = null; public String getSourceType() { return SourceType; } public v_JB_TransactionsQuery setSourceType(String value) { this.SourceType = value; return this; } public String getSourceTypeStartsWith() { return SourceTypeStartsWith; } public v_JB_TransactionsQuery setSourceTypeStartsWith(String value) { this.SourceTypeStartsWith = value; return this; } public String getSourceTypeEndsWith() { return SourceTypeEndsWith; } public v_JB_TransactionsQuery setSourceTypeEndsWith(String value) { this.SourceTypeEndsWith = value; return this; } public String getSourceTypeContains() { return SourceTypeContains; } public v_JB_TransactionsQuery setSourceTypeContains(String value) { this.SourceTypeContains = value; return this; } public String getSourceTypeLike() { return SourceTypeLike; } public v_JB_TransactionsQuery setSourceTypeLike(String value) { this.SourceTypeLike = value; return this; } public ArrayList getSourceTypeBetween() { return SourceTypeBetween; } public v_JB_TransactionsQuery setSourceTypeBetween(ArrayList value) { this.SourceTypeBetween = value; return this; } public ArrayList getSourceTypeIn() { return SourceTypeIn; } public v_JB_TransactionsQuery setSourceTypeIn(ArrayList value) { this.SourceTypeIn = value; return this; } public String getBatchNo() { return BatchNo; } public v_JB_TransactionsQuery setBatchNo(String value) { this.BatchNo = value; return this; } public String getBatchNoStartsWith() { return BatchNoStartsWith; } public v_JB_TransactionsQuery setBatchNoStartsWith(String value) { this.BatchNoStartsWith = value; return this; } public String getBatchNoEndsWith() { return BatchNoEndsWith; } public v_JB_TransactionsQuery setBatchNoEndsWith(String value) { this.BatchNoEndsWith = value; return this; } public String getBatchNoContains() { return BatchNoContains; } public v_JB_TransactionsQuery setBatchNoContains(String value) { this.BatchNoContains = value; return this; } public String getBatchNoLike() { return BatchNoLike; } public v_JB_TransactionsQuery setBatchNoLike(String value) { this.BatchNoLike = value; return this; } public ArrayList getBatchNoBetween() { return BatchNoBetween; } public v_JB_TransactionsQuery setBatchNoBetween(ArrayList value) { this.BatchNoBetween = value; return this; } public ArrayList getBatchNoIn() { return BatchNoIn; } public v_JB_TransactionsQuery setBatchNoIn(ArrayList value) { this.BatchNoIn = value; return this; } public String getJobCostStage() { return JobCostStage; } public v_JB_TransactionsQuery setJobCostStage(String value) { this.JobCostStage = value; return this; } public String getJobCostStageStartsWith() { return JobCostStageStartsWith; } public v_JB_TransactionsQuery setJobCostStageStartsWith(String value) { this.JobCostStageStartsWith = value; return this; } public String getJobCostStageEndsWith() { return JobCostStageEndsWith; } public v_JB_TransactionsQuery setJobCostStageEndsWith(String value) { this.JobCostStageEndsWith = value; return this; } public String getJobCostStageContains() { return JobCostStageContains; } public v_JB_TransactionsQuery setJobCostStageContains(String value) { this.JobCostStageContains = value; return this; } public String getJobCostStageLike() { return JobCostStageLike; } public v_JB_TransactionsQuery setJobCostStageLike(String value) { this.JobCostStageLike = value; return this; } public ArrayList getJobCostStageBetween() { return JobCostStageBetween; } public v_JB_TransactionsQuery setJobCostStageBetween(ArrayList value) { this.JobCostStageBetween = value; return this; } public ArrayList getJobCostStageIn() { return JobCostStageIn; } public v_JB_TransactionsQuery setJobCostStageIn(ArrayList value) { this.JobCostStageIn = value; return this; } public String getItem() { return Item; } public v_JB_TransactionsQuery setItem(String value) { this.Item = value; return this; } public String getItemStartsWith() { return ItemStartsWith; } public v_JB_TransactionsQuery setItemStartsWith(String value) { this.ItemStartsWith = value; return this; } public String getItemEndsWith() { return ItemEndsWith; } public v_JB_TransactionsQuery setItemEndsWith(String value) { this.ItemEndsWith = value; return this; } public String getItemContains() { return ItemContains; } public v_JB_TransactionsQuery setItemContains(String value) { this.ItemContains = value; return this; } public String getItemLike() { return ItemLike; } public v_JB_TransactionsQuery setItemLike(String value) { this.ItemLike = value; return this; } public ArrayList getItemBetween() { return ItemBetween; } public v_JB_TransactionsQuery setItemBetween(ArrayList value) { this.ItemBetween = value; return this; } public ArrayList getItemIn() { return ItemIn; } public v_JB_TransactionsQuery setItemIn(ArrayList value) { this.ItemIn = value; return this; } public String getDescription() { return Description; } public v_JB_TransactionsQuery setDescription(String value) { this.Description = value; return this; } public String getDescriptionStartsWith() { return DescriptionStartsWith; } public v_JB_TransactionsQuery setDescriptionStartsWith(String value) { this.DescriptionStartsWith = value; return this; } public String getDescriptionEndsWith() { return DescriptionEndsWith; } public v_JB_TransactionsQuery setDescriptionEndsWith(String value) { this.DescriptionEndsWith = value; return this; } public String getDescriptionContains() { return DescriptionContains; } public v_JB_TransactionsQuery setDescriptionContains(String value) { this.DescriptionContains = value; return this; } public String getDescriptionLike() { return DescriptionLike; } public v_JB_TransactionsQuery setDescriptionLike(String value) { this.DescriptionLike = value; return this; } public ArrayList getDescriptionBetween() { return DescriptionBetween; } public v_JB_TransactionsQuery setDescriptionBetween(ArrayList value) { this.DescriptionBetween = value; return this; } public ArrayList getDescriptionIn() { return DescriptionIn; } public v_JB_TransactionsQuery setDescriptionIn(ArrayList value) { this.DescriptionIn = value; return this; } public Date getTranDate() { return TranDate; } public v_JB_TransactionsQuery setTranDate(Date value) { this.TranDate = value; return this; } public Date getTranDateGreaterThanOrEqualTo() { return TranDateGreaterThanOrEqualTo; } public v_JB_TransactionsQuery setTranDateGreaterThanOrEqualTo(Date value) { this.TranDateGreaterThanOrEqualTo = value; return this; } public Date getTranDateGreaterThan() { return TranDateGreaterThan; } public v_JB_TransactionsQuery setTranDateGreaterThan(Date value) { this.TranDateGreaterThan = value; return this; } public Date getTranDateLessThan() { return TranDateLessThan; } public v_JB_TransactionsQuery setTranDateLessThan(Date value) { this.TranDateLessThan = value; return this; } public Date getTranDateLessThanOrEqualTo() { return TranDateLessThanOrEqualTo; } public v_JB_TransactionsQuery setTranDateLessThanOrEqualTo(Date value) { this.TranDateLessThanOrEqualTo = value; return this; } public Date getTranDateNotEqualTo() { return TranDateNotEqualTo; } public v_JB_TransactionsQuery setTranDateNotEqualTo(Date value) { this.TranDateNotEqualTo = value; return this; } public ArrayList getTranDateBetween() { return TranDateBetween; } public v_JB_TransactionsQuery setTranDateBetween(ArrayList value) { this.TranDateBetween = value; return this; } public ArrayList getTranDateIn() { return TranDateIn; } public v_JB_TransactionsQuery setTranDateIn(ArrayList value) { this.TranDateIn = value; return this; } public BigDecimal getQty() { return Qty; } public v_JB_TransactionsQuery setQty(BigDecimal value) { this.Qty = value; return this; } public BigDecimal getQtyGreaterThanOrEqualTo() { return QtyGreaterThanOrEqualTo; } public v_JB_TransactionsQuery setQtyGreaterThanOrEqualTo(BigDecimal value) { this.QtyGreaterThanOrEqualTo = value; return this; } public BigDecimal getQtyGreaterThan() { return QtyGreaterThan; } public v_JB_TransactionsQuery setQtyGreaterThan(BigDecimal value) { this.QtyGreaterThan = value; return this; } public BigDecimal getQtyLessThan() { return QtyLessThan; } public v_JB_TransactionsQuery setQtyLessThan(BigDecimal value) { this.QtyLessThan = value; return this; } public BigDecimal getQtyLessThanOrEqualTo() { return QtyLessThanOrEqualTo; } public v_JB_TransactionsQuery setQtyLessThanOrEqualTo(BigDecimal value) { this.QtyLessThanOrEqualTo = value; return this; } public BigDecimal getQtyNotEqualTo() { return QtyNotEqualTo; } public v_JB_TransactionsQuery setQtyNotEqualTo(BigDecimal value) { this.QtyNotEqualTo = value; return this; } public ArrayList getQtyBetween() { return QtyBetween; } public v_JB_TransactionsQuery setQtyBetween(ArrayList value) { this.QtyBetween = value; return this; } public ArrayList getQtyIn() { return QtyIn; } public v_JB_TransactionsQuery setQtyIn(ArrayList value) { this.QtyIn = value; return this; } public BigDecimal getTotalCost() { return TotalCost; } public v_JB_TransactionsQuery setTotalCost(BigDecimal value) { this.TotalCost = value; return this; } public BigDecimal getTotalCostGreaterThanOrEqualTo() { return TotalCostGreaterThanOrEqualTo; } public v_JB_TransactionsQuery setTotalCostGreaterThanOrEqualTo(BigDecimal value) { this.TotalCostGreaterThanOrEqualTo = value; return this; } public BigDecimal getTotalCostGreaterThan() { return TotalCostGreaterThan; } public v_JB_TransactionsQuery setTotalCostGreaterThan(BigDecimal value) { this.TotalCostGreaterThan = value; return this; } public BigDecimal getTotalCostLessThan() { return TotalCostLessThan; } public v_JB_TransactionsQuery setTotalCostLessThan(BigDecimal value) { this.TotalCostLessThan = value; return this; } public BigDecimal getTotalCostLessThanOrEqualTo() { return TotalCostLessThanOrEqualTo; } public v_JB_TransactionsQuery setTotalCostLessThanOrEqualTo(BigDecimal value) { this.TotalCostLessThanOrEqualTo = value; return this; } public BigDecimal getTotalCostNotEqualTo() { return TotalCostNotEqualTo; } public v_JB_TransactionsQuery setTotalCostNotEqualTo(BigDecimal value) { this.TotalCostNotEqualTo = value; return this; } public ArrayList getTotalCostBetween() { return TotalCostBetween; } public v_JB_TransactionsQuery setTotalCostBetween(ArrayList value) { this.TotalCostBetween = value; return this; } public ArrayList getTotalCostIn() { return TotalCostIn; } public v_JB_TransactionsQuery setTotalCostIn(ArrayList value) { this.TotalCostIn = value; return this; } public BigDecimal getTotalCharge() { return TotalCharge; } public v_JB_TransactionsQuery setTotalCharge(BigDecimal value) { this.TotalCharge = value; return this; } public BigDecimal getTotalChargeGreaterThanOrEqualTo() { return TotalChargeGreaterThanOrEqualTo; } public v_JB_TransactionsQuery setTotalChargeGreaterThanOrEqualTo(BigDecimal value) { this.TotalChargeGreaterThanOrEqualTo = value; return this; } public BigDecimal getTotalChargeGreaterThan() { return TotalChargeGreaterThan; } public v_JB_TransactionsQuery setTotalChargeGreaterThan(BigDecimal value) { this.TotalChargeGreaterThan = value; return this; } public BigDecimal getTotalChargeLessThan() { return TotalChargeLessThan; } public v_JB_TransactionsQuery setTotalChargeLessThan(BigDecimal value) { this.TotalChargeLessThan = value; return this; } public BigDecimal getTotalChargeLessThanOrEqualTo() { return TotalChargeLessThanOrEqualTo; } public v_JB_TransactionsQuery setTotalChargeLessThanOrEqualTo(BigDecimal value) { this.TotalChargeLessThanOrEqualTo = value; return this; } public BigDecimal getTotalChargeNotEqualTo() { return TotalChargeNotEqualTo; } public v_JB_TransactionsQuery setTotalChargeNotEqualTo(BigDecimal value) { this.TotalChargeNotEqualTo = value; return this; } public ArrayList getTotalChargeBetween() { return TotalChargeBetween; } public v_JB_TransactionsQuery setTotalChargeBetween(ArrayList value) { this.TotalChargeBetween = value; return this; } public ArrayList getTotalChargeIn() { return TotalChargeIn; } public v_JB_TransactionsQuery setTotalChargeIn(ArrayList value) { this.TotalChargeIn = value; return this; } public String getRemark() { return Remark; } public v_JB_TransactionsQuery setRemark(String value) { this.Remark = value; return this; } public String getRemarkStartsWith() { return RemarkStartsWith; } public v_JB_TransactionsQuery setRemarkStartsWith(String value) { this.RemarkStartsWith = value; return this; } public String getRemarkEndsWith() { return RemarkEndsWith; } public v_JB_TransactionsQuery setRemarkEndsWith(String value) { this.RemarkEndsWith = value; return this; } public String getRemarkContains() { return RemarkContains; } public v_JB_TransactionsQuery setRemarkContains(String value) { this.RemarkContains = value; return this; } public String getRemarkLike() { return RemarkLike; } public v_JB_TransactionsQuery setRemarkLike(String value) { this.RemarkLike = value; return this; } public ArrayList getRemarkBetween() { return RemarkBetween; } public v_JB_TransactionsQuery setRemarkBetween(ArrayList value) { this.RemarkBetween = value; return this; } public ArrayList getRemarkIn() { return RemarkIn; } public v_JB_TransactionsQuery setRemarkIn(ArrayList value) { this.RemarkIn = value; return this; } public String getJobNo() { return JobNo; } public v_JB_TransactionsQuery setJobNo(String value) { this.JobNo = value; return this; } public String getJobNoStartsWith() { return JobNoStartsWith; } public v_JB_TransactionsQuery setJobNoStartsWith(String value) { this.JobNoStartsWith = value; return this; } public String getJobNoEndsWith() { return JobNoEndsWith; } public v_JB_TransactionsQuery setJobNoEndsWith(String value) { this.JobNoEndsWith = value; return this; } public String getJobNoContains() { return JobNoContains; } public v_JB_TransactionsQuery setJobNoContains(String value) { this.JobNoContains = value; return this; } public String getJobNoLike() { return JobNoLike; } public v_JB_TransactionsQuery setJobNoLike(String value) { this.JobNoLike = value; return this; } public ArrayList getJobNoBetween() { return JobNoBetween; } public v_JB_TransactionsQuery setJobNoBetween(ArrayList value) { this.JobNoBetween = value; return this; } public ArrayList getJobNoIn() { return JobNoIn; } public v_JB_TransactionsQuery setJobNoIn(ArrayList value) { this.JobNoIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class v_JB_WIPValueQuery extends QueryDb implements IReturn> { public BigDecimal Cost = null; public BigDecimal CostGreaterThanOrEqualTo = null; public BigDecimal CostGreaterThan = null; public BigDecimal CostLessThan = null; public BigDecimal CostLessThanOrEqualTo = null; public BigDecimal CostNotEqualTo = null; public ArrayList CostBetween = null; public ArrayList CostIn = null; public BigDecimal Charge = null; public BigDecimal ChargeGreaterThanOrEqualTo = null; public BigDecimal ChargeGreaterThan = null; public BigDecimal ChargeLessThan = null; public BigDecimal ChargeLessThanOrEqualTo = null; public BigDecimal ChargeNotEqualTo = null; public ArrayList ChargeBetween = null; public ArrayList ChargeIn = null; public String JobID = null; public String JobIDStartsWith = null; public String JobIDEndsWith = null; public String JobIDContains = null; public String JobIDLike = null; public ArrayList JobIDBetween = null; public ArrayList JobIDIn = null; public BigDecimal getCost() { return Cost; } public v_JB_WIPValueQuery setCost(BigDecimal value) { this.Cost = value; return this; } public BigDecimal getCostGreaterThanOrEqualTo() { return CostGreaterThanOrEqualTo; } public v_JB_WIPValueQuery setCostGreaterThanOrEqualTo(BigDecimal value) { this.CostGreaterThanOrEqualTo = value; return this; } public BigDecimal getCostGreaterThan() { return CostGreaterThan; } public v_JB_WIPValueQuery setCostGreaterThan(BigDecimal value) { this.CostGreaterThan = value; return this; } public BigDecimal getCostLessThan() { return CostLessThan; } public v_JB_WIPValueQuery setCostLessThan(BigDecimal value) { this.CostLessThan = value; return this; } public BigDecimal getCostLessThanOrEqualTo() { return CostLessThanOrEqualTo; } public v_JB_WIPValueQuery setCostLessThanOrEqualTo(BigDecimal value) { this.CostLessThanOrEqualTo = value; return this; } public BigDecimal getCostNotEqualTo() { return CostNotEqualTo; } public v_JB_WIPValueQuery setCostNotEqualTo(BigDecimal value) { this.CostNotEqualTo = value; return this; } public ArrayList getCostBetween() { return CostBetween; } public v_JB_WIPValueQuery setCostBetween(ArrayList value) { this.CostBetween = value; return this; } public ArrayList getCostIn() { return CostIn; } public v_JB_WIPValueQuery setCostIn(ArrayList value) { this.CostIn = value; return this; } public BigDecimal getCharge() { return Charge; } public v_JB_WIPValueQuery setCharge(BigDecimal value) { this.Charge = value; return this; } public BigDecimal getChargeGreaterThanOrEqualTo() { return ChargeGreaterThanOrEqualTo; } public v_JB_WIPValueQuery setChargeGreaterThanOrEqualTo(BigDecimal value) { this.ChargeGreaterThanOrEqualTo = value; return this; } public BigDecimal getChargeGreaterThan() { return ChargeGreaterThan; } public v_JB_WIPValueQuery setChargeGreaterThan(BigDecimal value) { this.ChargeGreaterThan = value; return this; } public BigDecimal getChargeLessThan() { return ChargeLessThan; } public v_JB_WIPValueQuery setChargeLessThan(BigDecimal value) { this.ChargeLessThan = value; return this; } public BigDecimal getChargeLessThanOrEqualTo() { return ChargeLessThanOrEqualTo; } public v_JB_WIPValueQuery setChargeLessThanOrEqualTo(BigDecimal value) { this.ChargeLessThanOrEqualTo = value; return this; } public BigDecimal getChargeNotEqualTo() { return ChargeNotEqualTo; } public v_JB_WIPValueQuery setChargeNotEqualTo(BigDecimal value) { this.ChargeNotEqualTo = value; return this; } public ArrayList getChargeBetween() { return ChargeBetween; } public v_JB_WIPValueQuery setChargeBetween(ArrayList value) { this.ChargeBetween = value; return this; } public ArrayList getChargeIn() { return ChargeIn; } public v_JB_WIPValueQuery setChargeIn(ArrayList value) { this.ChargeIn = value; return this; } public String getJobID() { return JobID; } public v_JB_WIPValueQuery setJobID(String value) { this.JobID = value; return this; } public String getJobIDStartsWith() { return JobIDStartsWith; } public v_JB_WIPValueQuery setJobIDStartsWith(String value) { this.JobIDStartsWith = value; return this; } public String getJobIDEndsWith() { return JobIDEndsWith; } public v_JB_WIPValueQuery setJobIDEndsWith(String value) { this.JobIDEndsWith = value; return this; } public String getJobIDContains() { return JobIDContains; } public v_JB_WIPValueQuery setJobIDContains(String value) { this.JobIDContains = value; return this; } public String getJobIDLike() { return JobIDLike; } public v_JB_WIPValueQuery setJobIDLike(String value) { this.JobIDLike = value; return this; } public ArrayList getJobIDBetween() { return JobIDBetween; } public v_JB_WIPValueQuery setJobIDBetween(ArrayList value) { this.JobIDBetween = value; return this; } public ArrayList getJobIDIn() { return JobIDIn; } public v_JB_WIPValueQuery setJobIDIn(ArrayList value) { this.JobIDIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class V_JIWA_Debtor_ALLQuery extends QueryDb implements IReturn> { public String DebtorID = null; public String DebtorIDStartsWith = null; public String DebtorIDEndsWith = null; public String DebtorIDContains = null; public String DebtorIDLike = null; public ArrayList DebtorIDBetween = null; public ArrayList DebtorIDIn = null; public String SearchField = null; public String SearchFieldStartsWith = null; public String SearchFieldEndsWith = null; public String SearchFieldContains = null; public String SearchFieldLike = null; public ArrayList SearchFieldBetween = null; public ArrayList SearchFieldIn = null; public String AccountNo = null; public String AccountNoStartsWith = null; public String AccountNoEndsWith = null; public String AccountNoContains = null; public String AccountNoLike = null; public ArrayList AccountNoBetween = null; public ArrayList AccountNoIn = null; public String Name = null; public String NameStartsWith = null; public String NameEndsWith = null; public String NameContains = null; public String NameLike = null; public ArrayList NameBetween = null; public ArrayList NameIn = null; public String Phone = null; public String PhoneStartsWith = null; public String PhoneEndsWith = null; public String PhoneContains = null; public String PhoneLike = null; public ArrayList PhoneBetween = null; public ArrayList PhoneIn = null; public String PostCode = null; public String PostCodeStartsWith = null; public String PostCodeEndsWith = null; public String PostCodeContains = null; public String PostCodeLike = null; public ArrayList PostCodeBetween = null; public ArrayList PostCodeIn = null; public String Address3 = null; public String Address3StartsWith = null; public String Address3EndsWith = null; public String Address3Contains = null; public String Address3Like = null; public ArrayList Address3Between = null; public ArrayList Address3In = null; public String Address2 = null; public String Address2StartsWith = null; public String Address2EndsWith = null; public String Address2Contains = null; public String Address2Like = null; public ArrayList Address2Between = null; public ArrayList Address2In = null; public String getDebtorID() { return DebtorID; } public V_JIWA_Debtor_ALLQuery setDebtorID(String value) { this.DebtorID = value; return this; } public String getDebtorIDStartsWith() { return DebtorIDStartsWith; } public V_JIWA_Debtor_ALLQuery setDebtorIDStartsWith(String value) { this.DebtorIDStartsWith = value; return this; } public String getDebtorIDEndsWith() { return DebtorIDEndsWith; } public V_JIWA_Debtor_ALLQuery setDebtorIDEndsWith(String value) { this.DebtorIDEndsWith = value; return this; } public String getDebtorIDContains() { return DebtorIDContains; } public V_JIWA_Debtor_ALLQuery setDebtorIDContains(String value) { this.DebtorIDContains = value; return this; } public String getDebtorIDLike() { return DebtorIDLike; } public V_JIWA_Debtor_ALLQuery setDebtorIDLike(String value) { this.DebtorIDLike = value; return this; } public ArrayList getDebtorIDBetween() { return DebtorIDBetween; } public V_JIWA_Debtor_ALLQuery setDebtorIDBetween(ArrayList value) { this.DebtorIDBetween = value; return this; } public ArrayList getDebtorIDIn() { return DebtorIDIn; } public V_JIWA_Debtor_ALLQuery setDebtorIDIn(ArrayList value) { this.DebtorIDIn = value; return this; } public String getSearchField() { return SearchField; } public V_JIWA_Debtor_ALLQuery setSearchField(String value) { this.SearchField = value; return this; } public String getSearchFieldStartsWith() { return SearchFieldStartsWith; } public V_JIWA_Debtor_ALLQuery setSearchFieldStartsWith(String value) { this.SearchFieldStartsWith = value; return this; } public String getSearchFieldEndsWith() { return SearchFieldEndsWith; } public V_JIWA_Debtor_ALLQuery setSearchFieldEndsWith(String value) { this.SearchFieldEndsWith = value; return this; } public String getSearchFieldContains() { return SearchFieldContains; } public V_JIWA_Debtor_ALLQuery setSearchFieldContains(String value) { this.SearchFieldContains = value; return this; } public String getSearchFieldLike() { return SearchFieldLike; } public V_JIWA_Debtor_ALLQuery setSearchFieldLike(String value) { this.SearchFieldLike = value; return this; } public ArrayList getSearchFieldBetween() { return SearchFieldBetween; } public V_JIWA_Debtor_ALLQuery setSearchFieldBetween(ArrayList value) { this.SearchFieldBetween = value; return this; } public ArrayList getSearchFieldIn() { return SearchFieldIn; } public V_JIWA_Debtor_ALLQuery setSearchFieldIn(ArrayList value) { this.SearchFieldIn = value; return this; } public String getAccountNo() { return AccountNo; } public V_JIWA_Debtor_ALLQuery setAccountNo(String value) { this.AccountNo = value; return this; } public String getAccountNoStartsWith() { return AccountNoStartsWith; } public V_JIWA_Debtor_ALLQuery setAccountNoStartsWith(String value) { this.AccountNoStartsWith = value; return this; } public String getAccountNoEndsWith() { return AccountNoEndsWith; } public V_JIWA_Debtor_ALLQuery setAccountNoEndsWith(String value) { this.AccountNoEndsWith = value; return this; } public String getAccountNoContains() { return AccountNoContains; } public V_JIWA_Debtor_ALLQuery setAccountNoContains(String value) { this.AccountNoContains = value; return this; } public String getAccountNoLike() { return AccountNoLike; } public V_JIWA_Debtor_ALLQuery setAccountNoLike(String value) { this.AccountNoLike = value; return this; } public ArrayList getAccountNoBetween() { return AccountNoBetween; } public V_JIWA_Debtor_ALLQuery setAccountNoBetween(ArrayList value) { this.AccountNoBetween = value; return this; } public ArrayList getAccountNoIn() { return AccountNoIn; } public V_JIWA_Debtor_ALLQuery setAccountNoIn(ArrayList value) { this.AccountNoIn = value; return this; } public String getName() { return Name; } public V_JIWA_Debtor_ALLQuery setName(String value) { this.Name = value; return this; } public String getNameStartsWith() { return NameStartsWith; } public V_JIWA_Debtor_ALLQuery setNameStartsWith(String value) { this.NameStartsWith = value; return this; } public String getNameEndsWith() { return NameEndsWith; } public V_JIWA_Debtor_ALLQuery setNameEndsWith(String value) { this.NameEndsWith = value; return this; } public String getNameContains() { return NameContains; } public V_JIWA_Debtor_ALLQuery setNameContains(String value) { this.NameContains = value; return this; } public String getNameLike() { return NameLike; } public V_JIWA_Debtor_ALLQuery setNameLike(String value) { this.NameLike = value; return this; } public ArrayList getNameBetween() { return NameBetween; } public V_JIWA_Debtor_ALLQuery setNameBetween(ArrayList value) { this.NameBetween = value; return this; } public ArrayList getNameIn() { return NameIn; } public V_JIWA_Debtor_ALLQuery setNameIn(ArrayList value) { this.NameIn = value; return this; } public String getPhone() { return Phone; } public V_JIWA_Debtor_ALLQuery setPhone(String value) { this.Phone = value; return this; } public String getPhoneStartsWith() { return PhoneStartsWith; } public V_JIWA_Debtor_ALLQuery setPhoneStartsWith(String value) { this.PhoneStartsWith = value; return this; } public String getPhoneEndsWith() { return PhoneEndsWith; } public V_JIWA_Debtor_ALLQuery setPhoneEndsWith(String value) { this.PhoneEndsWith = value; return this; } public String getPhoneContains() { return PhoneContains; } public V_JIWA_Debtor_ALLQuery setPhoneContains(String value) { this.PhoneContains = value; return this; } public String getPhoneLike() { return PhoneLike; } public V_JIWA_Debtor_ALLQuery setPhoneLike(String value) { this.PhoneLike = value; return this; } public ArrayList getPhoneBetween() { return PhoneBetween; } public V_JIWA_Debtor_ALLQuery setPhoneBetween(ArrayList value) { this.PhoneBetween = value; return this; } public ArrayList getPhoneIn() { return PhoneIn; } public V_JIWA_Debtor_ALLQuery setPhoneIn(ArrayList value) { this.PhoneIn = value; return this; } public String getPostCode() { return PostCode; } public V_JIWA_Debtor_ALLQuery setPostCode(String value) { this.PostCode = value; return this; } public String getPostCodeStartsWith() { return PostCodeStartsWith; } public V_JIWA_Debtor_ALLQuery setPostCodeStartsWith(String value) { this.PostCodeStartsWith = value; return this; } public String getPostCodeEndsWith() { return PostCodeEndsWith; } public V_JIWA_Debtor_ALLQuery setPostCodeEndsWith(String value) { this.PostCodeEndsWith = value; return this; } public String getPostCodeContains() { return PostCodeContains; } public V_JIWA_Debtor_ALLQuery setPostCodeContains(String value) { this.PostCodeContains = value; return this; } public String getPostCodeLike() { return PostCodeLike; } public V_JIWA_Debtor_ALLQuery setPostCodeLike(String value) { this.PostCodeLike = value; return this; } public ArrayList getPostCodeBetween() { return PostCodeBetween; } public V_JIWA_Debtor_ALLQuery setPostCodeBetween(ArrayList value) { this.PostCodeBetween = value; return this; } public ArrayList getPostCodeIn() { return PostCodeIn; } public V_JIWA_Debtor_ALLQuery setPostCodeIn(ArrayList value) { this.PostCodeIn = value; return this; } public String getAddress3() { return Address3; } public V_JIWA_Debtor_ALLQuery setAddress3(String value) { this.Address3 = value; return this; } public String getAddress3StartsWith() { return Address3StartsWith; } public V_JIWA_Debtor_ALLQuery setAddress3StartsWith(String value) { this.Address3StartsWith = value; return this; } public String getAddress3EndsWith() { return Address3EndsWith; } public V_JIWA_Debtor_ALLQuery setAddress3EndsWith(String value) { this.Address3EndsWith = value; return this; } public String getAddress3Contains() { return Address3Contains; } public V_JIWA_Debtor_ALLQuery setAddress3Contains(String value) { this.Address3Contains = value; return this; } public String getAddress3Like() { return Address3Like; } public V_JIWA_Debtor_ALLQuery setAddress3Like(String value) { this.Address3Like = value; return this; } public ArrayList getAddress3Between() { return Address3Between; } public V_JIWA_Debtor_ALLQuery setAddress3Between(ArrayList value) { this.Address3Between = value; return this; } public ArrayList getAddress3In() { return Address3In; } public V_JIWA_Debtor_ALLQuery setAddress3In(ArrayList value) { this.Address3In = value; return this; } public String getAddress2() { return Address2; } public V_JIWA_Debtor_ALLQuery setAddress2(String value) { this.Address2 = value; return this; } public String getAddress2StartsWith() { return Address2StartsWith; } public V_JIWA_Debtor_ALLQuery setAddress2StartsWith(String value) { this.Address2StartsWith = value; return this; } public String getAddress2EndsWith() { return Address2EndsWith; } public V_JIWA_Debtor_ALLQuery setAddress2EndsWith(String value) { this.Address2EndsWith = value; return this; } public String getAddress2Contains() { return Address2Contains; } public V_JIWA_Debtor_ALLQuery setAddress2Contains(String value) { this.Address2Contains = value; return this; } public String getAddress2Like() { return Address2Like; } public V_JIWA_Debtor_ALLQuery setAddress2Like(String value) { this.Address2Like = value; return this; } public ArrayList getAddress2Between() { return Address2Between; } public V_JIWA_Debtor_ALLQuery setAddress2Between(ArrayList value) { this.Address2Between = value; return this; } public ArrayList getAddress2In() { return Address2In; } public V_JIWA_Debtor_ALLQuery setAddress2In(ArrayList value) { this.Address2In = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @Route(Path="/Queries/DebtorList", Verbs="GET") @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class v_Jiwa_Debtor_ListQuery extends QueryDb implements IReturn> { public String DebtorID = null; public String DebtorIDStartsWith = null; public String DebtorIDEndsWith = null; public String DebtorIDContains = null; public String DebtorIDLike = null; public ArrayList DebtorIDBetween = null; public ArrayList DebtorIDIn = null; public String AccountNo = null; public String AccountNoStartsWith = null; public String AccountNoEndsWith = null; public String AccountNoContains = null; public String AccountNoLike = null; public ArrayList AccountNoBetween = null; public ArrayList AccountNoIn = null; public String Name = null; public String NameStartsWith = null; public String NameEndsWith = null; public String NameContains = null; public String NameLike = null; public ArrayList NameBetween = null; public ArrayList NameIn = null; public String AltAccountNo = null; public String AltAccountNoStartsWith = null; public String AltAccountNoEndsWith = null; public String AltAccountNoContains = null; public String AltAccountNoLike = null; public ArrayList AltAccountNoBetween = null; public ArrayList AltAccountNoIn = null; public String Address1 = null; public String Address1StartsWith = null; public String Address1EndsWith = null; public String Address1Contains = null; public String Address1Like = null; public ArrayList Address1Between = null; public ArrayList Address1In = null; public String Address2 = null; public String Address2StartsWith = null; public String Address2EndsWith = null; public String Address2Contains = null; public String Address2Like = null; public ArrayList Address2Between = null; public ArrayList Address2In = null; public String Address3 = null; public String Address3StartsWith = null; public String Address3EndsWith = null; public String Address3Contains = null; public String Address3Like = null; public ArrayList Address3Between = null; public ArrayList Address3In = null; public String Address4 = null; public String Address4StartsWith = null; public String Address4EndsWith = null; public String Address4Contains = null; public String Address4Like = null; public ArrayList Address4Between = null; public ArrayList Address4In = null; public String PostCode = null; public String PostCodeStartsWith = null; public String PostCodeEndsWith = null; public String PostCodeContains = null; public String PostCodeLike = null; public ArrayList PostCodeBetween = null; public ArrayList PostCodeIn = null; public String Country = null; public String CountryStartsWith = null; public String CountryEndsWith = null; public String CountryContains = null; public String CountryLike = null; public ArrayList CountryBetween = null; public ArrayList CountryIn = null; public String Phone = null; public String PhoneStartsWith = null; public String PhoneEndsWith = null; public String PhoneContains = null; public String PhoneLike = null; public ArrayList PhoneBetween = null; public ArrayList PhoneIn = null; public Boolean AccountOnHold = null; public String EmailAddress = null; public String EmailAddressStartsWith = null; public String EmailAddressEndsWith = null; public String EmailAddressContains = null; public String EmailAddressLike = null; public ArrayList EmailAddressBetween = null; public ArrayList EmailAddressIn = null; public BigDecimal CurrentBalance = null; public BigDecimal CurrentBalanceGreaterThanOrEqualTo = null; public BigDecimal CurrentBalanceGreaterThan = null; public BigDecimal CurrentBalanceLessThan = null; public BigDecimal CurrentBalanceLessThanOrEqualTo = null; public BigDecimal CurrentBalanceNotEqualTo = null; public ArrayList CurrentBalanceBetween = null; public ArrayList CurrentBalanceIn = null; public Boolean WebAccess = null; public Date LastSavedDateTime = null; public Date LastSavedDateTimeGreaterThanOrEqualTo = null; public Date LastSavedDateTimeGreaterThan = null; public Date LastSavedDateTimeLessThan = null; public Date LastSavedDateTimeLessThanOrEqualTo = null; public Date LastSavedDateTimeNotEqualTo = null; public ArrayList LastSavedDateTimeBetween = null; public ArrayList LastSavedDateTimeIn = null; public Short TradingStatus = null; public Short TradingStatusGreaterThanOrEqualTo = null; public Short TradingStatusGreaterThan = null; public Short TradingStatusLessThan = null; public Short TradingStatusLessThanOrEqualTo = null; public Short TradingStatusNotEqualTo = null; public ArrayList TradingStatusBetween = null; public ArrayList TradingStatusIn = null; public String DebtorClassificationID = null; public String DebtorClassificationIDStartsWith = null; public String DebtorClassificationIDEndsWith = null; public String DebtorClassificationIDContains = null; public String DebtorClassificationIDLike = null; public ArrayList DebtorClassificationIDBetween = null; public ArrayList DebtorClassificationIDIn = null; public String ClassificationDescription = null; public String ClassificationDescriptionStartsWith = null; public String ClassificationDescriptionEndsWith = null; public String ClassificationDescriptionContains = null; public String ClassificationDescriptionLike = null; public ArrayList ClassificationDescriptionBetween = null; public ArrayList ClassificationDescriptionIn = null; public String Category1ID = null; public String Category1IDStartsWith = null; public String Category1IDEndsWith = null; public String Category1IDContains = null; public String Category1IDLike = null; public ArrayList Category1IDBetween = null; public ArrayList Category1IDIn = null; public String Category1Description = null; public String Category1DescriptionStartsWith = null; public String Category1DescriptionEndsWith = null; public String Category1DescriptionContains = null; public String Category1DescriptionLike = null; public ArrayList Category1DescriptionBetween = null; public ArrayList Category1DescriptionIn = null; public String Category2ID = null; public String Category2IDStartsWith = null; public String Category2IDEndsWith = null; public String Category2IDContains = null; public String Category2IDLike = null; public ArrayList Category2IDBetween = null; public ArrayList Category2IDIn = null; public String Category2Description = null; public String Category2DescriptionStartsWith = null; public String Category2DescriptionEndsWith = null; public String Category2DescriptionContains = null; public String Category2DescriptionLike = null; public ArrayList Category2DescriptionBetween = null; public ArrayList Category2DescriptionIn = null; public String Category3ID = null; public String Category3IDStartsWith = null; public String Category3IDEndsWith = null; public String Category3IDContains = null; public String Category3IDLike = null; public ArrayList Category3IDBetween = null; public ArrayList Category3IDIn = null; public String Category3Description = null; public String Category3DescriptionStartsWith = null; public String Category3DescriptionEndsWith = null; public String Category3DescriptionContains = null; public String Category3DescriptionLike = null; public ArrayList Category3DescriptionBetween = null; public ArrayList Category3DescriptionIn = null; public String Category4ID = null; public String Category4IDStartsWith = null; public String Category4IDEndsWith = null; public String Category4IDContains = null; public String Category4IDLike = null; public ArrayList Category4IDBetween = null; public ArrayList Category4IDIn = null; public String Category4Description = null; public String Category4DescriptionStartsWith = null; public String Category4DescriptionEndsWith = null; public String Category4DescriptionContains = null; public String Category4DescriptionLike = null; public ArrayList Category4DescriptionBetween = null; public ArrayList Category4DescriptionIn = null; public String Category5ID = null; public String Category5IDStartsWith = null; public String Category5IDEndsWith = null; public String Category5IDContains = null; public String Category5IDLike = null; public ArrayList Category5IDBetween = null; public ArrayList Category5IDIn = null; public String Category5Description = null; public String Category5DescriptionStartsWith = null; public String Category5DescriptionEndsWith = null; public String Category5DescriptionContains = null; public String Category5DescriptionLike = null; public ArrayList Category5DescriptionBetween = null; public ArrayList Category5DescriptionIn = null; public String PriceSchemeID = null; public String PriceSchemeIDStartsWith = null; public String PriceSchemeIDEndsWith = null; public String PriceSchemeIDContains = null; public String PriceSchemeIDLike = null; public ArrayList PriceSchemeIDBetween = null; public ArrayList PriceSchemeIDIn = null; public String PriceSchemeDescription = null; public String PriceSchemeDescriptionStartsWith = null; public String PriceSchemeDescriptionEndsWith = null; public String PriceSchemeDescriptionContains = null; public String PriceSchemeDescriptionLike = null; public ArrayList PriceSchemeDescriptionBetween = null; public ArrayList PriceSchemeDescriptionIn = null; public String PricingGroupDescription = null; public String PricingGroupDescriptionStartsWith = null; public String PricingGroupDescriptionEndsWith = null; public String PricingGroupDescriptionContains = null; public String PricingGroupDescriptionLike = null; public ArrayList PricingGroupDescriptionBetween = null; public ArrayList PricingGroupDescriptionIn = null; public String getDebtorID() { return DebtorID; } public v_Jiwa_Debtor_ListQuery setDebtorID(String value) { this.DebtorID = value; return this; } public String getDebtorIDStartsWith() { return DebtorIDStartsWith; } public v_Jiwa_Debtor_ListQuery setDebtorIDStartsWith(String value) { this.DebtorIDStartsWith = value; return this; } public String getDebtorIDEndsWith() { return DebtorIDEndsWith; } public v_Jiwa_Debtor_ListQuery setDebtorIDEndsWith(String value) { this.DebtorIDEndsWith = value; return this; } public String getDebtorIDContains() { return DebtorIDContains; } public v_Jiwa_Debtor_ListQuery setDebtorIDContains(String value) { this.DebtorIDContains = value; return this; } public String getDebtorIDLike() { return DebtorIDLike; } public v_Jiwa_Debtor_ListQuery setDebtorIDLike(String value) { this.DebtorIDLike = value; return this; } public ArrayList getDebtorIDBetween() { return DebtorIDBetween; } public v_Jiwa_Debtor_ListQuery setDebtorIDBetween(ArrayList value) { this.DebtorIDBetween = value; return this; } public ArrayList getDebtorIDIn() { return DebtorIDIn; } public v_Jiwa_Debtor_ListQuery setDebtorIDIn(ArrayList value) { this.DebtorIDIn = value; return this; } public String getAccountNo() { return AccountNo; } public v_Jiwa_Debtor_ListQuery setAccountNo(String value) { this.AccountNo = value; return this; } public String getAccountNoStartsWith() { return AccountNoStartsWith; } public v_Jiwa_Debtor_ListQuery setAccountNoStartsWith(String value) { this.AccountNoStartsWith = value; return this; } public String getAccountNoEndsWith() { return AccountNoEndsWith; } public v_Jiwa_Debtor_ListQuery setAccountNoEndsWith(String value) { this.AccountNoEndsWith = value; return this; } public String getAccountNoContains() { return AccountNoContains; } public v_Jiwa_Debtor_ListQuery setAccountNoContains(String value) { this.AccountNoContains = value; return this; } public String getAccountNoLike() { return AccountNoLike; } public v_Jiwa_Debtor_ListQuery setAccountNoLike(String value) { this.AccountNoLike = value; return this; } public ArrayList getAccountNoBetween() { return AccountNoBetween; } public v_Jiwa_Debtor_ListQuery setAccountNoBetween(ArrayList value) { this.AccountNoBetween = value; return this; } public ArrayList getAccountNoIn() { return AccountNoIn; } public v_Jiwa_Debtor_ListQuery setAccountNoIn(ArrayList value) { this.AccountNoIn = value; return this; } public String getName() { return Name; } public v_Jiwa_Debtor_ListQuery setName(String value) { this.Name = value; return this; } public String getNameStartsWith() { return NameStartsWith; } public v_Jiwa_Debtor_ListQuery setNameStartsWith(String value) { this.NameStartsWith = value; return this; } public String getNameEndsWith() { return NameEndsWith; } public v_Jiwa_Debtor_ListQuery setNameEndsWith(String value) { this.NameEndsWith = value; return this; } public String getNameContains() { return NameContains; } public v_Jiwa_Debtor_ListQuery setNameContains(String value) { this.NameContains = value; return this; } public String getNameLike() { return NameLike; } public v_Jiwa_Debtor_ListQuery setNameLike(String value) { this.NameLike = value; return this; } public ArrayList getNameBetween() { return NameBetween; } public v_Jiwa_Debtor_ListQuery setNameBetween(ArrayList value) { this.NameBetween = value; return this; } public ArrayList getNameIn() { return NameIn; } public v_Jiwa_Debtor_ListQuery setNameIn(ArrayList value) { this.NameIn = value; return this; } public String getAltAccountNo() { return AltAccountNo; } public v_Jiwa_Debtor_ListQuery setAltAccountNo(String value) { this.AltAccountNo = value; return this; } public String getAltAccountNoStartsWith() { return AltAccountNoStartsWith; } public v_Jiwa_Debtor_ListQuery setAltAccountNoStartsWith(String value) { this.AltAccountNoStartsWith = value; return this; } public String getAltAccountNoEndsWith() { return AltAccountNoEndsWith; } public v_Jiwa_Debtor_ListQuery setAltAccountNoEndsWith(String value) { this.AltAccountNoEndsWith = value; return this; } public String getAltAccountNoContains() { return AltAccountNoContains; } public v_Jiwa_Debtor_ListQuery setAltAccountNoContains(String value) { this.AltAccountNoContains = value; return this; } public String getAltAccountNoLike() { return AltAccountNoLike; } public v_Jiwa_Debtor_ListQuery setAltAccountNoLike(String value) { this.AltAccountNoLike = value; return this; } public ArrayList getAltAccountNoBetween() { return AltAccountNoBetween; } public v_Jiwa_Debtor_ListQuery setAltAccountNoBetween(ArrayList value) { this.AltAccountNoBetween = value; return this; } public ArrayList getAltAccountNoIn() { return AltAccountNoIn; } public v_Jiwa_Debtor_ListQuery setAltAccountNoIn(ArrayList value) { this.AltAccountNoIn = value; return this; } public String getAddress1() { return Address1; } public v_Jiwa_Debtor_ListQuery setAddress1(String value) { this.Address1 = value; return this; } public String getAddress1StartsWith() { return Address1StartsWith; } public v_Jiwa_Debtor_ListQuery setAddress1StartsWith(String value) { this.Address1StartsWith = value; return this; } public String getAddress1EndsWith() { return Address1EndsWith; } public v_Jiwa_Debtor_ListQuery setAddress1EndsWith(String value) { this.Address1EndsWith = value; return this; } public String getAddress1Contains() { return Address1Contains; } public v_Jiwa_Debtor_ListQuery setAddress1Contains(String value) { this.Address1Contains = value; return this; } public String getAddress1Like() { return Address1Like; } public v_Jiwa_Debtor_ListQuery setAddress1Like(String value) { this.Address1Like = value; return this; } public ArrayList getAddress1Between() { return Address1Between; } public v_Jiwa_Debtor_ListQuery setAddress1Between(ArrayList value) { this.Address1Between = value; return this; } public ArrayList getAddress1In() { return Address1In; } public v_Jiwa_Debtor_ListQuery setAddress1In(ArrayList value) { this.Address1In = value; return this; } public String getAddress2() { return Address2; } public v_Jiwa_Debtor_ListQuery setAddress2(String value) { this.Address2 = value; return this; } public String getAddress2StartsWith() { return Address2StartsWith; } public v_Jiwa_Debtor_ListQuery setAddress2StartsWith(String value) { this.Address2StartsWith = value; return this; } public String getAddress2EndsWith() { return Address2EndsWith; } public v_Jiwa_Debtor_ListQuery setAddress2EndsWith(String value) { this.Address2EndsWith = value; return this; } public String getAddress2Contains() { return Address2Contains; } public v_Jiwa_Debtor_ListQuery setAddress2Contains(String value) { this.Address2Contains = value; return this; } public String getAddress2Like() { return Address2Like; } public v_Jiwa_Debtor_ListQuery setAddress2Like(String value) { this.Address2Like = value; return this; } public ArrayList getAddress2Between() { return Address2Between; } public v_Jiwa_Debtor_ListQuery setAddress2Between(ArrayList value) { this.Address2Between = value; return this; } public ArrayList getAddress2In() { return Address2In; } public v_Jiwa_Debtor_ListQuery setAddress2In(ArrayList value) { this.Address2In = value; return this; } public String getAddress3() { return Address3; } public v_Jiwa_Debtor_ListQuery setAddress3(String value) { this.Address3 = value; return this; } public String getAddress3StartsWith() { return Address3StartsWith; } public v_Jiwa_Debtor_ListQuery setAddress3StartsWith(String value) { this.Address3StartsWith = value; return this; } public String getAddress3EndsWith() { return Address3EndsWith; } public v_Jiwa_Debtor_ListQuery setAddress3EndsWith(String value) { this.Address3EndsWith = value; return this; } public String getAddress3Contains() { return Address3Contains; } public v_Jiwa_Debtor_ListQuery setAddress3Contains(String value) { this.Address3Contains = value; return this; } public String getAddress3Like() { return Address3Like; } public v_Jiwa_Debtor_ListQuery setAddress3Like(String value) { this.Address3Like = value; return this; } public ArrayList getAddress3Between() { return Address3Between; } public v_Jiwa_Debtor_ListQuery setAddress3Between(ArrayList value) { this.Address3Between = value; return this; } public ArrayList getAddress3In() { return Address3In; } public v_Jiwa_Debtor_ListQuery setAddress3In(ArrayList value) { this.Address3In = value; return this; } public String getAddress4() { return Address4; } public v_Jiwa_Debtor_ListQuery setAddress4(String value) { this.Address4 = value; return this; } public String getAddress4StartsWith() { return Address4StartsWith; } public v_Jiwa_Debtor_ListQuery setAddress4StartsWith(String value) { this.Address4StartsWith = value; return this; } public String getAddress4EndsWith() { return Address4EndsWith; } public v_Jiwa_Debtor_ListQuery setAddress4EndsWith(String value) { this.Address4EndsWith = value; return this; } public String getAddress4Contains() { return Address4Contains; } public v_Jiwa_Debtor_ListQuery setAddress4Contains(String value) { this.Address4Contains = value; return this; } public String getAddress4Like() { return Address4Like; } public v_Jiwa_Debtor_ListQuery setAddress4Like(String value) { this.Address4Like = value; return this; } public ArrayList getAddress4Between() { return Address4Between; } public v_Jiwa_Debtor_ListQuery setAddress4Between(ArrayList value) { this.Address4Between = value; return this; } public ArrayList getAddress4In() { return Address4In; } public v_Jiwa_Debtor_ListQuery setAddress4In(ArrayList value) { this.Address4In = value; return this; } public String getPostCode() { return PostCode; } public v_Jiwa_Debtor_ListQuery setPostCode(String value) { this.PostCode = value; return this; } public String getPostCodeStartsWith() { return PostCodeStartsWith; } public v_Jiwa_Debtor_ListQuery setPostCodeStartsWith(String value) { this.PostCodeStartsWith = value; return this; } public String getPostCodeEndsWith() { return PostCodeEndsWith; } public v_Jiwa_Debtor_ListQuery setPostCodeEndsWith(String value) { this.PostCodeEndsWith = value; return this; } public String getPostCodeContains() { return PostCodeContains; } public v_Jiwa_Debtor_ListQuery setPostCodeContains(String value) { this.PostCodeContains = value; return this; } public String getPostCodeLike() { return PostCodeLike; } public v_Jiwa_Debtor_ListQuery setPostCodeLike(String value) { this.PostCodeLike = value; return this; } public ArrayList getPostCodeBetween() { return PostCodeBetween; } public v_Jiwa_Debtor_ListQuery setPostCodeBetween(ArrayList value) { this.PostCodeBetween = value; return this; } public ArrayList getPostCodeIn() { return PostCodeIn; } public v_Jiwa_Debtor_ListQuery setPostCodeIn(ArrayList value) { this.PostCodeIn = value; return this; } public String getCountry() { return Country; } public v_Jiwa_Debtor_ListQuery setCountry(String value) { this.Country = value; return this; } public String getCountryStartsWith() { return CountryStartsWith; } public v_Jiwa_Debtor_ListQuery setCountryStartsWith(String value) { this.CountryStartsWith = value; return this; } public String getCountryEndsWith() { return CountryEndsWith; } public v_Jiwa_Debtor_ListQuery setCountryEndsWith(String value) { this.CountryEndsWith = value; return this; } public String getCountryContains() { return CountryContains; } public v_Jiwa_Debtor_ListQuery setCountryContains(String value) { this.CountryContains = value; return this; } public String getCountryLike() { return CountryLike; } public v_Jiwa_Debtor_ListQuery setCountryLike(String value) { this.CountryLike = value; return this; } public ArrayList getCountryBetween() { return CountryBetween; } public v_Jiwa_Debtor_ListQuery setCountryBetween(ArrayList value) { this.CountryBetween = value; return this; } public ArrayList getCountryIn() { return CountryIn; } public v_Jiwa_Debtor_ListQuery setCountryIn(ArrayList value) { this.CountryIn = value; return this; } public String getPhone() { return Phone; } public v_Jiwa_Debtor_ListQuery setPhone(String value) { this.Phone = value; return this; } public String getPhoneStartsWith() { return PhoneStartsWith; } public v_Jiwa_Debtor_ListQuery setPhoneStartsWith(String value) { this.PhoneStartsWith = value; return this; } public String getPhoneEndsWith() { return PhoneEndsWith; } public v_Jiwa_Debtor_ListQuery setPhoneEndsWith(String value) { this.PhoneEndsWith = value; return this; } public String getPhoneContains() { return PhoneContains; } public v_Jiwa_Debtor_ListQuery setPhoneContains(String value) { this.PhoneContains = value; return this; } public String getPhoneLike() { return PhoneLike; } public v_Jiwa_Debtor_ListQuery setPhoneLike(String value) { this.PhoneLike = value; return this; } public ArrayList getPhoneBetween() { return PhoneBetween; } public v_Jiwa_Debtor_ListQuery setPhoneBetween(ArrayList value) { this.PhoneBetween = value; return this; } public ArrayList getPhoneIn() { return PhoneIn; } public v_Jiwa_Debtor_ListQuery setPhoneIn(ArrayList value) { this.PhoneIn = value; return this; } public Boolean isAccountOnHold() { return AccountOnHold; } public v_Jiwa_Debtor_ListQuery setAccountOnHold(Boolean value) { this.AccountOnHold = value; return this; } public String getEmailAddress() { return EmailAddress; } public v_Jiwa_Debtor_ListQuery setEmailAddress(String value) { this.EmailAddress = value; return this; } public String getEmailAddressStartsWith() { return EmailAddressStartsWith; } public v_Jiwa_Debtor_ListQuery setEmailAddressStartsWith(String value) { this.EmailAddressStartsWith = value; return this; } public String getEmailAddressEndsWith() { return EmailAddressEndsWith; } public v_Jiwa_Debtor_ListQuery setEmailAddressEndsWith(String value) { this.EmailAddressEndsWith = value; return this; } public String getEmailAddressContains() { return EmailAddressContains; } public v_Jiwa_Debtor_ListQuery setEmailAddressContains(String value) { this.EmailAddressContains = value; return this; } public String getEmailAddressLike() { return EmailAddressLike; } public v_Jiwa_Debtor_ListQuery setEmailAddressLike(String value) { this.EmailAddressLike = value; return this; } public ArrayList getEmailAddressBetween() { return EmailAddressBetween; } public v_Jiwa_Debtor_ListQuery setEmailAddressBetween(ArrayList value) { this.EmailAddressBetween = value; return this; } public ArrayList getEmailAddressIn() { return EmailAddressIn; } public v_Jiwa_Debtor_ListQuery setEmailAddressIn(ArrayList value) { this.EmailAddressIn = value; return this; } public BigDecimal getCurrentBalance() { return CurrentBalance; } public v_Jiwa_Debtor_ListQuery setCurrentBalance(BigDecimal value) { this.CurrentBalance = value; return this; } public BigDecimal getCurrentBalanceGreaterThanOrEqualTo() { return CurrentBalanceGreaterThanOrEqualTo; } public v_Jiwa_Debtor_ListQuery setCurrentBalanceGreaterThanOrEqualTo(BigDecimal value) { this.CurrentBalanceGreaterThanOrEqualTo = value; return this; } public BigDecimal getCurrentBalanceGreaterThan() { return CurrentBalanceGreaterThan; } public v_Jiwa_Debtor_ListQuery setCurrentBalanceGreaterThan(BigDecimal value) { this.CurrentBalanceGreaterThan = value; return this; } public BigDecimal getCurrentBalanceLessThan() { return CurrentBalanceLessThan; } public v_Jiwa_Debtor_ListQuery setCurrentBalanceLessThan(BigDecimal value) { this.CurrentBalanceLessThan = value; return this; } public BigDecimal getCurrentBalanceLessThanOrEqualTo() { return CurrentBalanceLessThanOrEqualTo; } public v_Jiwa_Debtor_ListQuery setCurrentBalanceLessThanOrEqualTo(BigDecimal value) { this.CurrentBalanceLessThanOrEqualTo = value; return this; } public BigDecimal getCurrentBalanceNotEqualTo() { return CurrentBalanceNotEqualTo; } public v_Jiwa_Debtor_ListQuery setCurrentBalanceNotEqualTo(BigDecimal value) { this.CurrentBalanceNotEqualTo = value; return this; } public ArrayList getCurrentBalanceBetween() { return CurrentBalanceBetween; } public v_Jiwa_Debtor_ListQuery setCurrentBalanceBetween(ArrayList value) { this.CurrentBalanceBetween = value; return this; } public ArrayList getCurrentBalanceIn() { return CurrentBalanceIn; } public v_Jiwa_Debtor_ListQuery setCurrentBalanceIn(ArrayList value) { this.CurrentBalanceIn = value; return this; } public Boolean isWebAccess() { return WebAccess; } public v_Jiwa_Debtor_ListQuery setWebAccess(Boolean value) { this.WebAccess = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public v_Jiwa_Debtor_ListQuery setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getLastSavedDateTimeGreaterThanOrEqualTo() { return LastSavedDateTimeGreaterThanOrEqualTo; } public v_Jiwa_Debtor_ListQuery setLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.LastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeGreaterThan() { return LastSavedDateTimeGreaterThan; } public v_Jiwa_Debtor_ListQuery setLastSavedDateTimeGreaterThan(Date value) { this.LastSavedDateTimeGreaterThan = value; return this; } public Date getLastSavedDateTimeLessThan() { return LastSavedDateTimeLessThan; } public v_Jiwa_Debtor_ListQuery setLastSavedDateTimeLessThan(Date value) { this.LastSavedDateTimeLessThan = value; return this; } public Date getLastSavedDateTimeLessThanOrEqualTo() { return LastSavedDateTimeLessThanOrEqualTo; } public v_Jiwa_Debtor_ListQuery setLastSavedDateTimeLessThanOrEqualTo(Date value) { this.LastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeNotEqualTo() { return LastSavedDateTimeNotEqualTo; } public v_Jiwa_Debtor_ListQuery setLastSavedDateTimeNotEqualTo(Date value) { this.LastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getLastSavedDateTimeBetween() { return LastSavedDateTimeBetween; } public v_Jiwa_Debtor_ListQuery setLastSavedDateTimeBetween(ArrayList value) { this.LastSavedDateTimeBetween = value; return this; } public ArrayList getLastSavedDateTimeIn() { return LastSavedDateTimeIn; } public v_Jiwa_Debtor_ListQuery setLastSavedDateTimeIn(ArrayList value) { this.LastSavedDateTimeIn = value; return this; } public Short getTradingStatus() { return TradingStatus; } public v_Jiwa_Debtor_ListQuery setTradingStatus(Short value) { this.TradingStatus = value; return this; } public Short getTradingStatusGreaterThanOrEqualTo() { return TradingStatusGreaterThanOrEqualTo; } public v_Jiwa_Debtor_ListQuery setTradingStatusGreaterThanOrEqualTo(Short value) { this.TradingStatusGreaterThanOrEqualTo = value; return this; } public Short getTradingStatusGreaterThan() { return TradingStatusGreaterThan; } public v_Jiwa_Debtor_ListQuery setTradingStatusGreaterThan(Short value) { this.TradingStatusGreaterThan = value; return this; } public Short getTradingStatusLessThan() { return TradingStatusLessThan; } public v_Jiwa_Debtor_ListQuery setTradingStatusLessThan(Short value) { this.TradingStatusLessThan = value; return this; } public Short getTradingStatusLessThanOrEqualTo() { return TradingStatusLessThanOrEqualTo; } public v_Jiwa_Debtor_ListQuery setTradingStatusLessThanOrEqualTo(Short value) { this.TradingStatusLessThanOrEqualTo = value; return this; } public Short getTradingStatusNotEqualTo() { return TradingStatusNotEqualTo; } public v_Jiwa_Debtor_ListQuery setTradingStatusNotEqualTo(Short value) { this.TradingStatusNotEqualTo = value; return this; } public ArrayList getTradingStatusBetween() { return TradingStatusBetween; } public v_Jiwa_Debtor_ListQuery setTradingStatusBetween(ArrayList value) { this.TradingStatusBetween = value; return this; } public ArrayList getTradingStatusIn() { return TradingStatusIn; } public v_Jiwa_Debtor_ListQuery setTradingStatusIn(ArrayList value) { this.TradingStatusIn = value; return this; } public String getDebtorClassificationID() { return DebtorClassificationID; } public v_Jiwa_Debtor_ListQuery setDebtorClassificationID(String value) { this.DebtorClassificationID = value; return this; } public String getDebtorClassificationIDStartsWith() { return DebtorClassificationIDStartsWith; } public v_Jiwa_Debtor_ListQuery setDebtorClassificationIDStartsWith(String value) { this.DebtorClassificationIDStartsWith = value; return this; } public String getDebtorClassificationIDEndsWith() { return DebtorClassificationIDEndsWith; } public v_Jiwa_Debtor_ListQuery setDebtorClassificationIDEndsWith(String value) { this.DebtorClassificationIDEndsWith = value; return this; } public String getDebtorClassificationIDContains() { return DebtorClassificationIDContains; } public v_Jiwa_Debtor_ListQuery setDebtorClassificationIDContains(String value) { this.DebtorClassificationIDContains = value; return this; } public String getDebtorClassificationIDLike() { return DebtorClassificationIDLike; } public v_Jiwa_Debtor_ListQuery setDebtorClassificationIDLike(String value) { this.DebtorClassificationIDLike = value; return this; } public ArrayList getDebtorClassificationIDBetween() { return DebtorClassificationIDBetween; } public v_Jiwa_Debtor_ListQuery setDebtorClassificationIDBetween(ArrayList value) { this.DebtorClassificationIDBetween = value; return this; } public ArrayList getDebtorClassificationIDIn() { return DebtorClassificationIDIn; } public v_Jiwa_Debtor_ListQuery setDebtorClassificationIDIn(ArrayList value) { this.DebtorClassificationIDIn = value; return this; } public String getClassificationDescription() { return ClassificationDescription; } public v_Jiwa_Debtor_ListQuery setClassificationDescription(String value) { this.ClassificationDescription = value; return this; } public String getClassificationDescriptionStartsWith() { return ClassificationDescriptionStartsWith; } public v_Jiwa_Debtor_ListQuery setClassificationDescriptionStartsWith(String value) { this.ClassificationDescriptionStartsWith = value; return this; } public String getClassificationDescriptionEndsWith() { return ClassificationDescriptionEndsWith; } public v_Jiwa_Debtor_ListQuery setClassificationDescriptionEndsWith(String value) { this.ClassificationDescriptionEndsWith = value; return this; } public String getClassificationDescriptionContains() { return ClassificationDescriptionContains; } public v_Jiwa_Debtor_ListQuery setClassificationDescriptionContains(String value) { this.ClassificationDescriptionContains = value; return this; } public String getClassificationDescriptionLike() { return ClassificationDescriptionLike; } public v_Jiwa_Debtor_ListQuery setClassificationDescriptionLike(String value) { this.ClassificationDescriptionLike = value; return this; } public ArrayList getClassificationDescriptionBetween() { return ClassificationDescriptionBetween; } public v_Jiwa_Debtor_ListQuery setClassificationDescriptionBetween(ArrayList value) { this.ClassificationDescriptionBetween = value; return this; } public ArrayList getClassificationDescriptionIn() { return ClassificationDescriptionIn; } public v_Jiwa_Debtor_ListQuery setClassificationDescriptionIn(ArrayList value) { this.ClassificationDescriptionIn = value; return this; } public String getCategory1ID() { return Category1ID; } public v_Jiwa_Debtor_ListQuery setCategory1ID(String value) { this.Category1ID = value; return this; } public String getCategory1IDStartsWith() { return Category1IDStartsWith; } public v_Jiwa_Debtor_ListQuery setCategory1IDStartsWith(String value) { this.Category1IDStartsWith = value; return this; } public String getCategory1IDEndsWith() { return Category1IDEndsWith; } public v_Jiwa_Debtor_ListQuery setCategory1IDEndsWith(String value) { this.Category1IDEndsWith = value; return this; } public String getCategory1IDContains() { return Category1IDContains; } public v_Jiwa_Debtor_ListQuery setCategory1IDContains(String value) { this.Category1IDContains = value; return this; } public String getCategory1IDLike() { return Category1IDLike; } public v_Jiwa_Debtor_ListQuery setCategory1IDLike(String value) { this.Category1IDLike = value; return this; } public ArrayList getCategory1IDBetween() { return Category1IDBetween; } public v_Jiwa_Debtor_ListQuery setCategory1IDBetween(ArrayList value) { this.Category1IDBetween = value; return this; } public ArrayList getCategory1IDIn() { return Category1IDIn; } public v_Jiwa_Debtor_ListQuery setCategory1IDIn(ArrayList value) { this.Category1IDIn = value; return this; } public String getCategory1Description() { return Category1Description; } public v_Jiwa_Debtor_ListQuery setCategory1Description(String value) { this.Category1Description = value; return this; } public String getCategory1DescriptionStartsWith() { return Category1DescriptionStartsWith; } public v_Jiwa_Debtor_ListQuery setCategory1DescriptionStartsWith(String value) { this.Category1DescriptionStartsWith = value; return this; } public String getCategory1DescriptionEndsWith() { return Category1DescriptionEndsWith; } public v_Jiwa_Debtor_ListQuery setCategory1DescriptionEndsWith(String value) { this.Category1DescriptionEndsWith = value; return this; } public String getCategory1DescriptionContains() { return Category1DescriptionContains; } public v_Jiwa_Debtor_ListQuery setCategory1DescriptionContains(String value) { this.Category1DescriptionContains = value; return this; } public String getCategory1DescriptionLike() { return Category1DescriptionLike; } public v_Jiwa_Debtor_ListQuery setCategory1DescriptionLike(String value) { this.Category1DescriptionLike = value; return this; } public ArrayList getCategory1DescriptionBetween() { return Category1DescriptionBetween; } public v_Jiwa_Debtor_ListQuery setCategory1DescriptionBetween(ArrayList value) { this.Category1DescriptionBetween = value; return this; } public ArrayList getCategory1DescriptionIn() { return Category1DescriptionIn; } public v_Jiwa_Debtor_ListQuery setCategory1DescriptionIn(ArrayList value) { this.Category1DescriptionIn = value; return this; } public String getCategory2ID() { return Category2ID; } public v_Jiwa_Debtor_ListQuery setCategory2ID(String value) { this.Category2ID = value; return this; } public String getCategory2IDStartsWith() { return Category2IDStartsWith; } public v_Jiwa_Debtor_ListQuery setCategory2IDStartsWith(String value) { this.Category2IDStartsWith = value; return this; } public String getCategory2IDEndsWith() { return Category2IDEndsWith; } public v_Jiwa_Debtor_ListQuery setCategory2IDEndsWith(String value) { this.Category2IDEndsWith = value; return this; } public String getCategory2IDContains() { return Category2IDContains; } public v_Jiwa_Debtor_ListQuery setCategory2IDContains(String value) { this.Category2IDContains = value; return this; } public String getCategory2IDLike() { return Category2IDLike; } public v_Jiwa_Debtor_ListQuery setCategory2IDLike(String value) { this.Category2IDLike = value; return this; } public ArrayList getCategory2IDBetween() { return Category2IDBetween; } public v_Jiwa_Debtor_ListQuery setCategory2IDBetween(ArrayList value) { this.Category2IDBetween = value; return this; } public ArrayList getCategory2IDIn() { return Category2IDIn; } public v_Jiwa_Debtor_ListQuery setCategory2IDIn(ArrayList value) { this.Category2IDIn = value; return this; } public String getCategory2Description() { return Category2Description; } public v_Jiwa_Debtor_ListQuery setCategory2Description(String value) { this.Category2Description = value; return this; } public String getCategory2DescriptionStartsWith() { return Category2DescriptionStartsWith; } public v_Jiwa_Debtor_ListQuery setCategory2DescriptionStartsWith(String value) { this.Category2DescriptionStartsWith = value; return this; } public String getCategory2DescriptionEndsWith() { return Category2DescriptionEndsWith; } public v_Jiwa_Debtor_ListQuery setCategory2DescriptionEndsWith(String value) { this.Category2DescriptionEndsWith = value; return this; } public String getCategory2DescriptionContains() { return Category2DescriptionContains; } public v_Jiwa_Debtor_ListQuery setCategory2DescriptionContains(String value) { this.Category2DescriptionContains = value; return this; } public String getCategory2DescriptionLike() { return Category2DescriptionLike; } public v_Jiwa_Debtor_ListQuery setCategory2DescriptionLike(String value) { this.Category2DescriptionLike = value; return this; } public ArrayList getCategory2DescriptionBetween() { return Category2DescriptionBetween; } public v_Jiwa_Debtor_ListQuery setCategory2DescriptionBetween(ArrayList value) { this.Category2DescriptionBetween = value; return this; } public ArrayList getCategory2DescriptionIn() { return Category2DescriptionIn; } public v_Jiwa_Debtor_ListQuery setCategory2DescriptionIn(ArrayList value) { this.Category2DescriptionIn = value; return this; } public String getCategory3ID() { return Category3ID; } public v_Jiwa_Debtor_ListQuery setCategory3ID(String value) { this.Category3ID = value; return this; } public String getCategory3IDStartsWith() { return Category3IDStartsWith; } public v_Jiwa_Debtor_ListQuery setCategory3IDStartsWith(String value) { this.Category3IDStartsWith = value; return this; } public String getCategory3IDEndsWith() { return Category3IDEndsWith; } public v_Jiwa_Debtor_ListQuery setCategory3IDEndsWith(String value) { this.Category3IDEndsWith = value; return this; } public String getCategory3IDContains() { return Category3IDContains; } public v_Jiwa_Debtor_ListQuery setCategory3IDContains(String value) { this.Category3IDContains = value; return this; } public String getCategory3IDLike() { return Category3IDLike; } public v_Jiwa_Debtor_ListQuery setCategory3IDLike(String value) { this.Category3IDLike = value; return this; } public ArrayList getCategory3IDBetween() { return Category3IDBetween; } public v_Jiwa_Debtor_ListQuery setCategory3IDBetween(ArrayList value) { this.Category3IDBetween = value; return this; } public ArrayList getCategory3IDIn() { return Category3IDIn; } public v_Jiwa_Debtor_ListQuery setCategory3IDIn(ArrayList value) { this.Category3IDIn = value; return this; } public String getCategory3Description() { return Category3Description; } public v_Jiwa_Debtor_ListQuery setCategory3Description(String value) { this.Category3Description = value; return this; } public String getCategory3DescriptionStartsWith() { return Category3DescriptionStartsWith; } public v_Jiwa_Debtor_ListQuery setCategory3DescriptionStartsWith(String value) { this.Category3DescriptionStartsWith = value; return this; } public String getCategory3DescriptionEndsWith() { return Category3DescriptionEndsWith; } public v_Jiwa_Debtor_ListQuery setCategory3DescriptionEndsWith(String value) { this.Category3DescriptionEndsWith = value; return this; } public String getCategory3DescriptionContains() { return Category3DescriptionContains; } public v_Jiwa_Debtor_ListQuery setCategory3DescriptionContains(String value) { this.Category3DescriptionContains = value; return this; } public String getCategory3DescriptionLike() { return Category3DescriptionLike; } public v_Jiwa_Debtor_ListQuery setCategory3DescriptionLike(String value) { this.Category3DescriptionLike = value; return this; } public ArrayList getCategory3DescriptionBetween() { return Category3DescriptionBetween; } public v_Jiwa_Debtor_ListQuery setCategory3DescriptionBetween(ArrayList value) { this.Category3DescriptionBetween = value; return this; } public ArrayList getCategory3DescriptionIn() { return Category3DescriptionIn; } public v_Jiwa_Debtor_ListQuery setCategory3DescriptionIn(ArrayList value) { this.Category3DescriptionIn = value; return this; } public String getCategory4ID() { return Category4ID; } public v_Jiwa_Debtor_ListQuery setCategory4ID(String value) { this.Category4ID = value; return this; } public String getCategory4IDStartsWith() { return Category4IDStartsWith; } public v_Jiwa_Debtor_ListQuery setCategory4IDStartsWith(String value) { this.Category4IDStartsWith = value; return this; } public String getCategory4IDEndsWith() { return Category4IDEndsWith; } public v_Jiwa_Debtor_ListQuery setCategory4IDEndsWith(String value) { this.Category4IDEndsWith = value; return this; } public String getCategory4IDContains() { return Category4IDContains; } public v_Jiwa_Debtor_ListQuery setCategory4IDContains(String value) { this.Category4IDContains = value; return this; } public String getCategory4IDLike() { return Category4IDLike; } public v_Jiwa_Debtor_ListQuery setCategory4IDLike(String value) { this.Category4IDLike = value; return this; } public ArrayList getCategory4IDBetween() { return Category4IDBetween; } public v_Jiwa_Debtor_ListQuery setCategory4IDBetween(ArrayList value) { this.Category4IDBetween = value; return this; } public ArrayList getCategory4IDIn() { return Category4IDIn; } public v_Jiwa_Debtor_ListQuery setCategory4IDIn(ArrayList value) { this.Category4IDIn = value; return this; } public String getCategory4Description() { return Category4Description; } public v_Jiwa_Debtor_ListQuery setCategory4Description(String value) { this.Category4Description = value; return this; } public String getCategory4DescriptionStartsWith() { return Category4DescriptionStartsWith; } public v_Jiwa_Debtor_ListQuery setCategory4DescriptionStartsWith(String value) { this.Category4DescriptionStartsWith = value; return this; } public String getCategory4DescriptionEndsWith() { return Category4DescriptionEndsWith; } public v_Jiwa_Debtor_ListQuery setCategory4DescriptionEndsWith(String value) { this.Category4DescriptionEndsWith = value; return this; } public String getCategory4DescriptionContains() { return Category4DescriptionContains; } public v_Jiwa_Debtor_ListQuery setCategory4DescriptionContains(String value) { this.Category4DescriptionContains = value; return this; } public String getCategory4DescriptionLike() { return Category4DescriptionLike; } public v_Jiwa_Debtor_ListQuery setCategory4DescriptionLike(String value) { this.Category4DescriptionLike = value; return this; } public ArrayList getCategory4DescriptionBetween() { return Category4DescriptionBetween; } public v_Jiwa_Debtor_ListQuery setCategory4DescriptionBetween(ArrayList value) { this.Category4DescriptionBetween = value; return this; } public ArrayList getCategory4DescriptionIn() { return Category4DescriptionIn; } public v_Jiwa_Debtor_ListQuery setCategory4DescriptionIn(ArrayList value) { this.Category4DescriptionIn = value; return this; } public String getCategory5ID() { return Category5ID; } public v_Jiwa_Debtor_ListQuery setCategory5ID(String value) { this.Category5ID = value; return this; } public String getCategory5IDStartsWith() { return Category5IDStartsWith; } public v_Jiwa_Debtor_ListQuery setCategory5IDStartsWith(String value) { this.Category5IDStartsWith = value; return this; } public String getCategory5IDEndsWith() { return Category5IDEndsWith; } public v_Jiwa_Debtor_ListQuery setCategory5IDEndsWith(String value) { this.Category5IDEndsWith = value; return this; } public String getCategory5IDContains() { return Category5IDContains; } public v_Jiwa_Debtor_ListQuery setCategory5IDContains(String value) { this.Category5IDContains = value; return this; } public String getCategory5IDLike() { return Category5IDLike; } public v_Jiwa_Debtor_ListQuery setCategory5IDLike(String value) { this.Category5IDLike = value; return this; } public ArrayList getCategory5IDBetween() { return Category5IDBetween; } public v_Jiwa_Debtor_ListQuery setCategory5IDBetween(ArrayList value) { this.Category5IDBetween = value; return this; } public ArrayList getCategory5IDIn() { return Category5IDIn; } public v_Jiwa_Debtor_ListQuery setCategory5IDIn(ArrayList value) { this.Category5IDIn = value; return this; } public String getCategory5Description() { return Category5Description; } public v_Jiwa_Debtor_ListQuery setCategory5Description(String value) { this.Category5Description = value; return this; } public String getCategory5DescriptionStartsWith() { return Category5DescriptionStartsWith; } public v_Jiwa_Debtor_ListQuery setCategory5DescriptionStartsWith(String value) { this.Category5DescriptionStartsWith = value; return this; } public String getCategory5DescriptionEndsWith() { return Category5DescriptionEndsWith; } public v_Jiwa_Debtor_ListQuery setCategory5DescriptionEndsWith(String value) { this.Category5DescriptionEndsWith = value; return this; } public String getCategory5DescriptionContains() { return Category5DescriptionContains; } public v_Jiwa_Debtor_ListQuery setCategory5DescriptionContains(String value) { this.Category5DescriptionContains = value; return this; } public String getCategory5DescriptionLike() { return Category5DescriptionLike; } public v_Jiwa_Debtor_ListQuery setCategory5DescriptionLike(String value) { this.Category5DescriptionLike = value; return this; } public ArrayList getCategory5DescriptionBetween() { return Category5DescriptionBetween; } public v_Jiwa_Debtor_ListQuery setCategory5DescriptionBetween(ArrayList value) { this.Category5DescriptionBetween = value; return this; } public ArrayList getCategory5DescriptionIn() { return Category5DescriptionIn; } public v_Jiwa_Debtor_ListQuery setCategory5DescriptionIn(ArrayList value) { this.Category5DescriptionIn = value; return this; } public String getPriceSchemeID() { return PriceSchemeID; } public v_Jiwa_Debtor_ListQuery setPriceSchemeID(String value) { this.PriceSchemeID = value; return this; } public String getPriceSchemeIDStartsWith() { return PriceSchemeIDStartsWith; } public v_Jiwa_Debtor_ListQuery setPriceSchemeIDStartsWith(String value) { this.PriceSchemeIDStartsWith = value; return this; } public String getPriceSchemeIDEndsWith() { return PriceSchemeIDEndsWith; } public v_Jiwa_Debtor_ListQuery setPriceSchemeIDEndsWith(String value) { this.PriceSchemeIDEndsWith = value; return this; } public String getPriceSchemeIDContains() { return PriceSchemeIDContains; } public v_Jiwa_Debtor_ListQuery setPriceSchemeIDContains(String value) { this.PriceSchemeIDContains = value; return this; } public String getPriceSchemeIDLike() { return PriceSchemeIDLike; } public v_Jiwa_Debtor_ListQuery setPriceSchemeIDLike(String value) { this.PriceSchemeIDLike = value; return this; } public ArrayList getPriceSchemeIDBetween() { return PriceSchemeIDBetween; } public v_Jiwa_Debtor_ListQuery setPriceSchemeIDBetween(ArrayList value) { this.PriceSchemeIDBetween = value; return this; } public ArrayList getPriceSchemeIDIn() { return PriceSchemeIDIn; } public v_Jiwa_Debtor_ListQuery setPriceSchemeIDIn(ArrayList value) { this.PriceSchemeIDIn = value; return this; } public String getPriceSchemeDescription() { return PriceSchemeDescription; } public v_Jiwa_Debtor_ListQuery setPriceSchemeDescription(String value) { this.PriceSchemeDescription = value; return this; } public String getPriceSchemeDescriptionStartsWith() { return PriceSchemeDescriptionStartsWith; } public v_Jiwa_Debtor_ListQuery setPriceSchemeDescriptionStartsWith(String value) { this.PriceSchemeDescriptionStartsWith = value; return this; } public String getPriceSchemeDescriptionEndsWith() { return PriceSchemeDescriptionEndsWith; } public v_Jiwa_Debtor_ListQuery setPriceSchemeDescriptionEndsWith(String value) { this.PriceSchemeDescriptionEndsWith = value; return this; } public String getPriceSchemeDescriptionContains() { return PriceSchemeDescriptionContains; } public v_Jiwa_Debtor_ListQuery setPriceSchemeDescriptionContains(String value) { this.PriceSchemeDescriptionContains = value; return this; } public String getPriceSchemeDescriptionLike() { return PriceSchemeDescriptionLike; } public v_Jiwa_Debtor_ListQuery setPriceSchemeDescriptionLike(String value) { this.PriceSchemeDescriptionLike = value; return this; } public ArrayList getPriceSchemeDescriptionBetween() { return PriceSchemeDescriptionBetween; } public v_Jiwa_Debtor_ListQuery setPriceSchemeDescriptionBetween(ArrayList value) { this.PriceSchemeDescriptionBetween = value; return this; } public ArrayList getPriceSchemeDescriptionIn() { return PriceSchemeDescriptionIn; } public v_Jiwa_Debtor_ListQuery setPriceSchemeDescriptionIn(ArrayList value) { this.PriceSchemeDescriptionIn = value; return this; } public String getPricingGroupDescription() { return PricingGroupDescription; } public v_Jiwa_Debtor_ListQuery setPricingGroupDescription(String value) { this.PricingGroupDescription = value; return this; } public String getPricingGroupDescriptionStartsWith() { return PricingGroupDescriptionStartsWith; } public v_Jiwa_Debtor_ListQuery setPricingGroupDescriptionStartsWith(String value) { this.PricingGroupDescriptionStartsWith = value; return this; } public String getPricingGroupDescriptionEndsWith() { return PricingGroupDescriptionEndsWith; } public v_Jiwa_Debtor_ListQuery setPricingGroupDescriptionEndsWith(String value) { this.PricingGroupDescriptionEndsWith = value; return this; } public String getPricingGroupDescriptionContains() { return PricingGroupDescriptionContains; } public v_Jiwa_Debtor_ListQuery setPricingGroupDescriptionContains(String value) { this.PricingGroupDescriptionContains = value; return this; } public String getPricingGroupDescriptionLike() { return PricingGroupDescriptionLike; } public v_Jiwa_Debtor_ListQuery setPricingGroupDescriptionLike(String value) { this.PricingGroupDescriptionLike = value; return this; } public ArrayList getPricingGroupDescriptionBetween() { return PricingGroupDescriptionBetween; } public v_Jiwa_Debtor_ListQuery setPricingGroupDescriptionBetween(ArrayList value) { this.PricingGroupDescriptionBetween = value; return this; } public ArrayList getPricingGroupDescriptionIn() { return PricingGroupDescriptionIn; } public v_Jiwa_Debtor_ListQuery setPricingGroupDescriptionIn(ArrayList value) { this.PricingGroupDescriptionIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class v_Jiwa_Debtor_Transactions_ListQuery extends QueryDb implements IReturn> { public String TransID = null; public String TransIDStartsWith = null; public String TransIDEndsWith = null; public String TransIDContains = null; public String TransIDLike = null; public ArrayList TransIDBetween = null; public ArrayList TransIDIn = null; public String DebtorID = null; public String DebtorIDStartsWith = null; public String DebtorIDEndsWith = null; public String DebtorIDContains = null; public String DebtorIDLike = null; public ArrayList DebtorIDBetween = null; public ArrayList DebtorIDIn = null; public String AccountNo = null; public String AccountNoStartsWith = null; public String AccountNoEndsWith = null; public String AccountNoContains = null; public String AccountNoLike = null; public ArrayList AccountNoBetween = null; public ArrayList AccountNoIn = null; public String Name = null; public String NameStartsWith = null; public String NameEndsWith = null; public String NameContains = null; public String NameLike = null; public ArrayList NameBetween = null; public ArrayList NameIn = null; public Date TranDate = null; public Date TranDateGreaterThanOrEqualTo = null; public Date TranDateGreaterThan = null; public Date TranDateLessThan = null; public Date TranDateLessThanOrEqualTo = null; public Date TranDateNotEqualTo = null; public ArrayList TranDateBetween = null; public ArrayList TranDateIn = null; public Date DueDate = null; public Date DueDateGreaterThanOrEqualTo = null; public Date DueDateGreaterThan = null; public Date DueDateLessThan = null; public Date DueDateLessThanOrEqualTo = null; public Date DueDateNotEqualTo = null; public ArrayList DueDateBetween = null; public ArrayList DueDateIn = null; public String InvRemitNo = null; public String InvRemitNoStartsWith = null; public String InvRemitNoEndsWith = null; public String InvRemitNoContains = null; public String InvRemitNoLike = null; public ArrayList InvRemitNoBetween = null; public ArrayList InvRemitNoIn = null; public Boolean DebitCredit = null; public BigDecimal Amount = null; public BigDecimal AmountGreaterThanOrEqualTo = null; public BigDecimal AmountGreaterThan = null; public BigDecimal AmountLessThan = null; public BigDecimal AmountLessThanOrEqualTo = null; public BigDecimal AmountNotEqualTo = null; public ArrayList AmountBetween = null; public ArrayList AmountIn = null; public BigDecimal AllocatedAmount = null; public BigDecimal AllocatedAmountGreaterThanOrEqualTo = null; public BigDecimal AllocatedAmountGreaterThan = null; public BigDecimal AllocatedAmountLessThan = null; public BigDecimal AllocatedAmountLessThanOrEqualTo = null; public BigDecimal AllocatedAmountNotEqualTo = null; public ArrayList AllocatedAmountBetween = null; public ArrayList AllocatedAmountIn = null; public BigDecimal GSTAmount = null; public BigDecimal GSTAmountGreaterThanOrEqualTo = null; public BigDecimal GSTAmountGreaterThan = null; public BigDecimal GSTAmountLessThan = null; public BigDecimal GSTAmountLessThanOrEqualTo = null; public BigDecimal GSTAmountNotEqualTo = null; public ArrayList GSTAmountBetween = null; public ArrayList GSTAmountIn = null; public BigDecimal OutstandingAmount = null; public BigDecimal OutstandingAmountGreaterThanOrEqualTo = null; public BigDecimal OutstandingAmountGreaterThan = null; public BigDecimal OutstandingAmountLessThan = null; public BigDecimal OutstandingAmountLessThanOrEqualTo = null; public BigDecimal OutstandingAmountNotEqualTo = null; public ArrayList OutstandingAmountBetween = null; public ArrayList OutstandingAmountIn = null; public String Description = null; public String DescriptionStartsWith = null; public String DescriptionEndsWith = null; public String DescriptionContains = null; public String DescriptionLike = null; public ArrayList DescriptionBetween = null; public ArrayList DescriptionIn = null; public String SourceID = null; public String SourceIDStartsWith = null; public String SourceIDEndsWith = null; public String SourceIDContains = null; public String SourceIDLike = null; public ArrayList SourceIDBetween = null; public ArrayList SourceIDIn = null; public String Ref = null; public String RefStartsWith = null; public String RefEndsWith = null; public String RefContains = null; public String RefLike = null; public ArrayList RefBetween = null; public ArrayList RefIn = null; public String Remark = null; public String RemarkStartsWith = null; public String RemarkEndsWith = null; public String RemarkContains = null; public String RemarkLike = null; public ArrayList RemarkBetween = null; public ArrayList RemarkIn = null; public String Note = null; public String NoteStartsWith = null; public String NoteEndsWith = null; public String NoteContains = null; public String NoteLike = null; public ArrayList NoteBetween = null; public ArrayList NoteIn = null; public Boolean AgedOut = null; public String getTransID() { return TransID; } public v_Jiwa_Debtor_Transactions_ListQuery setTransID(String value) { this.TransID = value; return this; } public String getTransIDStartsWith() { return TransIDStartsWith; } public v_Jiwa_Debtor_Transactions_ListQuery setTransIDStartsWith(String value) { this.TransIDStartsWith = value; return this; } public String getTransIDEndsWith() { return TransIDEndsWith; } public v_Jiwa_Debtor_Transactions_ListQuery setTransIDEndsWith(String value) { this.TransIDEndsWith = value; return this; } public String getTransIDContains() { return TransIDContains; } public v_Jiwa_Debtor_Transactions_ListQuery setTransIDContains(String value) { this.TransIDContains = value; return this; } public String getTransIDLike() { return TransIDLike; } public v_Jiwa_Debtor_Transactions_ListQuery setTransIDLike(String value) { this.TransIDLike = value; return this; } public ArrayList getTransIDBetween() { return TransIDBetween; } public v_Jiwa_Debtor_Transactions_ListQuery setTransIDBetween(ArrayList value) { this.TransIDBetween = value; return this; } public ArrayList getTransIDIn() { return TransIDIn; } public v_Jiwa_Debtor_Transactions_ListQuery setTransIDIn(ArrayList value) { this.TransIDIn = value; return this; } public String getDebtorID() { return DebtorID; } public v_Jiwa_Debtor_Transactions_ListQuery setDebtorID(String value) { this.DebtorID = value; return this; } public String getDebtorIDStartsWith() { return DebtorIDStartsWith; } public v_Jiwa_Debtor_Transactions_ListQuery setDebtorIDStartsWith(String value) { this.DebtorIDStartsWith = value; return this; } public String getDebtorIDEndsWith() { return DebtorIDEndsWith; } public v_Jiwa_Debtor_Transactions_ListQuery setDebtorIDEndsWith(String value) { this.DebtorIDEndsWith = value; return this; } public String getDebtorIDContains() { return DebtorIDContains; } public v_Jiwa_Debtor_Transactions_ListQuery setDebtorIDContains(String value) { this.DebtorIDContains = value; return this; } public String getDebtorIDLike() { return DebtorIDLike; } public v_Jiwa_Debtor_Transactions_ListQuery setDebtorIDLike(String value) { this.DebtorIDLike = value; return this; } public ArrayList getDebtorIDBetween() { return DebtorIDBetween; } public v_Jiwa_Debtor_Transactions_ListQuery setDebtorIDBetween(ArrayList value) { this.DebtorIDBetween = value; return this; } public ArrayList getDebtorIDIn() { return DebtorIDIn; } public v_Jiwa_Debtor_Transactions_ListQuery setDebtorIDIn(ArrayList value) { this.DebtorIDIn = value; return this; } public String getAccountNo() { return AccountNo; } public v_Jiwa_Debtor_Transactions_ListQuery setAccountNo(String value) { this.AccountNo = value; return this; } public String getAccountNoStartsWith() { return AccountNoStartsWith; } public v_Jiwa_Debtor_Transactions_ListQuery setAccountNoStartsWith(String value) { this.AccountNoStartsWith = value; return this; } public String getAccountNoEndsWith() { return AccountNoEndsWith; } public v_Jiwa_Debtor_Transactions_ListQuery setAccountNoEndsWith(String value) { this.AccountNoEndsWith = value; return this; } public String getAccountNoContains() { return AccountNoContains; } public v_Jiwa_Debtor_Transactions_ListQuery setAccountNoContains(String value) { this.AccountNoContains = value; return this; } public String getAccountNoLike() { return AccountNoLike; } public v_Jiwa_Debtor_Transactions_ListQuery setAccountNoLike(String value) { this.AccountNoLike = value; return this; } public ArrayList getAccountNoBetween() { return AccountNoBetween; } public v_Jiwa_Debtor_Transactions_ListQuery setAccountNoBetween(ArrayList value) { this.AccountNoBetween = value; return this; } public ArrayList getAccountNoIn() { return AccountNoIn; } public v_Jiwa_Debtor_Transactions_ListQuery setAccountNoIn(ArrayList value) { this.AccountNoIn = value; return this; } public String getName() { return Name; } public v_Jiwa_Debtor_Transactions_ListQuery setName(String value) { this.Name = value; return this; } public String getNameStartsWith() { return NameStartsWith; } public v_Jiwa_Debtor_Transactions_ListQuery setNameStartsWith(String value) { this.NameStartsWith = value; return this; } public String getNameEndsWith() { return NameEndsWith; } public v_Jiwa_Debtor_Transactions_ListQuery setNameEndsWith(String value) { this.NameEndsWith = value; return this; } public String getNameContains() { return NameContains; } public v_Jiwa_Debtor_Transactions_ListQuery setNameContains(String value) { this.NameContains = value; return this; } public String getNameLike() { return NameLike; } public v_Jiwa_Debtor_Transactions_ListQuery setNameLike(String value) { this.NameLike = value; return this; } public ArrayList getNameBetween() { return NameBetween; } public v_Jiwa_Debtor_Transactions_ListQuery setNameBetween(ArrayList value) { this.NameBetween = value; return this; } public ArrayList getNameIn() { return NameIn; } public v_Jiwa_Debtor_Transactions_ListQuery setNameIn(ArrayList value) { this.NameIn = value; return this; } public Date getTranDate() { return TranDate; } public v_Jiwa_Debtor_Transactions_ListQuery setTranDate(Date value) { this.TranDate = value; return this; } public Date getTranDateGreaterThanOrEqualTo() { return TranDateGreaterThanOrEqualTo; } public v_Jiwa_Debtor_Transactions_ListQuery setTranDateGreaterThanOrEqualTo(Date value) { this.TranDateGreaterThanOrEqualTo = value; return this; } public Date getTranDateGreaterThan() { return TranDateGreaterThan; } public v_Jiwa_Debtor_Transactions_ListQuery setTranDateGreaterThan(Date value) { this.TranDateGreaterThan = value; return this; } public Date getTranDateLessThan() { return TranDateLessThan; } public v_Jiwa_Debtor_Transactions_ListQuery setTranDateLessThan(Date value) { this.TranDateLessThan = value; return this; } public Date getTranDateLessThanOrEqualTo() { return TranDateLessThanOrEqualTo; } public v_Jiwa_Debtor_Transactions_ListQuery setTranDateLessThanOrEqualTo(Date value) { this.TranDateLessThanOrEqualTo = value; return this; } public Date getTranDateNotEqualTo() { return TranDateNotEqualTo; } public v_Jiwa_Debtor_Transactions_ListQuery setTranDateNotEqualTo(Date value) { this.TranDateNotEqualTo = value; return this; } public ArrayList getTranDateBetween() { return TranDateBetween; } public v_Jiwa_Debtor_Transactions_ListQuery setTranDateBetween(ArrayList value) { this.TranDateBetween = value; return this; } public ArrayList getTranDateIn() { return TranDateIn; } public v_Jiwa_Debtor_Transactions_ListQuery setTranDateIn(ArrayList value) { this.TranDateIn = value; return this; } public Date getDueDate() { return DueDate; } public v_Jiwa_Debtor_Transactions_ListQuery setDueDate(Date value) { this.DueDate = value; return this; } public Date getDueDateGreaterThanOrEqualTo() { return DueDateGreaterThanOrEqualTo; } public v_Jiwa_Debtor_Transactions_ListQuery setDueDateGreaterThanOrEqualTo(Date value) { this.DueDateGreaterThanOrEqualTo = value; return this; } public Date getDueDateGreaterThan() { return DueDateGreaterThan; } public v_Jiwa_Debtor_Transactions_ListQuery setDueDateGreaterThan(Date value) { this.DueDateGreaterThan = value; return this; } public Date getDueDateLessThan() { return DueDateLessThan; } public v_Jiwa_Debtor_Transactions_ListQuery setDueDateLessThan(Date value) { this.DueDateLessThan = value; return this; } public Date getDueDateLessThanOrEqualTo() { return DueDateLessThanOrEqualTo; } public v_Jiwa_Debtor_Transactions_ListQuery setDueDateLessThanOrEqualTo(Date value) { this.DueDateLessThanOrEqualTo = value; return this; } public Date getDueDateNotEqualTo() { return DueDateNotEqualTo; } public v_Jiwa_Debtor_Transactions_ListQuery setDueDateNotEqualTo(Date value) { this.DueDateNotEqualTo = value; return this; } public ArrayList getDueDateBetween() { return DueDateBetween; } public v_Jiwa_Debtor_Transactions_ListQuery setDueDateBetween(ArrayList value) { this.DueDateBetween = value; return this; } public ArrayList getDueDateIn() { return DueDateIn; } public v_Jiwa_Debtor_Transactions_ListQuery setDueDateIn(ArrayList value) { this.DueDateIn = value; return this; } public String getInvRemitNo() { return InvRemitNo; } public v_Jiwa_Debtor_Transactions_ListQuery setInvRemitNo(String value) { this.InvRemitNo = value; return this; } public String getInvRemitNoStartsWith() { return InvRemitNoStartsWith; } public v_Jiwa_Debtor_Transactions_ListQuery setInvRemitNoStartsWith(String value) { this.InvRemitNoStartsWith = value; return this; } public String getInvRemitNoEndsWith() { return InvRemitNoEndsWith; } public v_Jiwa_Debtor_Transactions_ListQuery setInvRemitNoEndsWith(String value) { this.InvRemitNoEndsWith = value; return this; } public String getInvRemitNoContains() { return InvRemitNoContains; } public v_Jiwa_Debtor_Transactions_ListQuery setInvRemitNoContains(String value) { this.InvRemitNoContains = value; return this; } public String getInvRemitNoLike() { return InvRemitNoLike; } public v_Jiwa_Debtor_Transactions_ListQuery setInvRemitNoLike(String value) { this.InvRemitNoLike = value; return this; } public ArrayList getInvRemitNoBetween() { return InvRemitNoBetween; } public v_Jiwa_Debtor_Transactions_ListQuery setInvRemitNoBetween(ArrayList value) { this.InvRemitNoBetween = value; return this; } public ArrayList getInvRemitNoIn() { return InvRemitNoIn; } public v_Jiwa_Debtor_Transactions_ListQuery setInvRemitNoIn(ArrayList value) { this.InvRemitNoIn = value; return this; } public Boolean isDebitCredit() { return DebitCredit; } public v_Jiwa_Debtor_Transactions_ListQuery setDebitCredit(Boolean value) { this.DebitCredit = value; return this; } public BigDecimal getAmount() { return Amount; } public v_Jiwa_Debtor_Transactions_ListQuery setAmount(BigDecimal value) { this.Amount = value; return this; } public BigDecimal getAmountGreaterThanOrEqualTo() { return AmountGreaterThanOrEqualTo; } public v_Jiwa_Debtor_Transactions_ListQuery setAmountGreaterThanOrEqualTo(BigDecimal value) { this.AmountGreaterThanOrEqualTo = value; return this; } public BigDecimal getAmountGreaterThan() { return AmountGreaterThan; } public v_Jiwa_Debtor_Transactions_ListQuery setAmountGreaterThan(BigDecimal value) { this.AmountGreaterThan = value; return this; } public BigDecimal getAmountLessThan() { return AmountLessThan; } public v_Jiwa_Debtor_Transactions_ListQuery setAmountLessThan(BigDecimal value) { this.AmountLessThan = value; return this; } public BigDecimal getAmountLessThanOrEqualTo() { return AmountLessThanOrEqualTo; } public v_Jiwa_Debtor_Transactions_ListQuery setAmountLessThanOrEqualTo(BigDecimal value) { this.AmountLessThanOrEqualTo = value; return this; } public BigDecimal getAmountNotEqualTo() { return AmountNotEqualTo; } public v_Jiwa_Debtor_Transactions_ListQuery setAmountNotEqualTo(BigDecimal value) { this.AmountNotEqualTo = value; return this; } public ArrayList getAmountBetween() { return AmountBetween; } public v_Jiwa_Debtor_Transactions_ListQuery setAmountBetween(ArrayList value) { this.AmountBetween = value; return this; } public ArrayList getAmountIn() { return AmountIn; } public v_Jiwa_Debtor_Transactions_ListQuery setAmountIn(ArrayList value) { this.AmountIn = value; return this; } public BigDecimal getAllocatedAmount() { return AllocatedAmount; } public v_Jiwa_Debtor_Transactions_ListQuery setAllocatedAmount(BigDecimal value) { this.AllocatedAmount = value; return this; } public BigDecimal getAllocatedAmountGreaterThanOrEqualTo() { return AllocatedAmountGreaterThanOrEqualTo; } public v_Jiwa_Debtor_Transactions_ListQuery setAllocatedAmountGreaterThanOrEqualTo(BigDecimal value) { this.AllocatedAmountGreaterThanOrEqualTo = value; return this; } public BigDecimal getAllocatedAmountGreaterThan() { return AllocatedAmountGreaterThan; } public v_Jiwa_Debtor_Transactions_ListQuery setAllocatedAmountGreaterThan(BigDecimal value) { this.AllocatedAmountGreaterThan = value; return this; } public BigDecimal getAllocatedAmountLessThan() { return AllocatedAmountLessThan; } public v_Jiwa_Debtor_Transactions_ListQuery setAllocatedAmountLessThan(BigDecimal value) { this.AllocatedAmountLessThan = value; return this; } public BigDecimal getAllocatedAmountLessThanOrEqualTo() { return AllocatedAmountLessThanOrEqualTo; } public v_Jiwa_Debtor_Transactions_ListQuery setAllocatedAmountLessThanOrEqualTo(BigDecimal value) { this.AllocatedAmountLessThanOrEqualTo = value; return this; } public BigDecimal getAllocatedAmountNotEqualTo() { return AllocatedAmountNotEqualTo; } public v_Jiwa_Debtor_Transactions_ListQuery setAllocatedAmountNotEqualTo(BigDecimal value) { this.AllocatedAmountNotEqualTo = value; return this; } public ArrayList getAllocatedAmountBetween() { return AllocatedAmountBetween; } public v_Jiwa_Debtor_Transactions_ListQuery setAllocatedAmountBetween(ArrayList value) { this.AllocatedAmountBetween = value; return this; } public ArrayList getAllocatedAmountIn() { return AllocatedAmountIn; } public v_Jiwa_Debtor_Transactions_ListQuery setAllocatedAmountIn(ArrayList value) { this.AllocatedAmountIn = value; return this; } public BigDecimal getGstAmount() { return GSTAmount; } public v_Jiwa_Debtor_Transactions_ListQuery setGstAmount(BigDecimal value) { this.GSTAmount = value; return this; } public BigDecimal getGstAmountGreaterThanOrEqualTo() { return GSTAmountGreaterThanOrEqualTo; } public v_Jiwa_Debtor_Transactions_ListQuery setGstAmountGreaterThanOrEqualTo(BigDecimal value) { this.GSTAmountGreaterThanOrEqualTo = value; return this; } public BigDecimal getGstAmountGreaterThan() { return GSTAmountGreaterThan; } public v_Jiwa_Debtor_Transactions_ListQuery setGstAmountGreaterThan(BigDecimal value) { this.GSTAmountGreaterThan = value; return this; } public BigDecimal getGstAmountLessThan() { return GSTAmountLessThan; } public v_Jiwa_Debtor_Transactions_ListQuery setGstAmountLessThan(BigDecimal value) { this.GSTAmountLessThan = value; return this; } public BigDecimal getGstAmountLessThanOrEqualTo() { return GSTAmountLessThanOrEqualTo; } public v_Jiwa_Debtor_Transactions_ListQuery setGstAmountLessThanOrEqualTo(BigDecimal value) { this.GSTAmountLessThanOrEqualTo = value; return this; } public BigDecimal getGstAmountNotEqualTo() { return GSTAmountNotEqualTo; } public v_Jiwa_Debtor_Transactions_ListQuery setGstAmountNotEqualTo(BigDecimal value) { this.GSTAmountNotEqualTo = value; return this; } public ArrayList getGstAmountBetween() { return GSTAmountBetween; } public v_Jiwa_Debtor_Transactions_ListQuery setGstAmountBetween(ArrayList value) { this.GSTAmountBetween = value; return this; } public ArrayList getGstAmountIn() { return GSTAmountIn; } public v_Jiwa_Debtor_Transactions_ListQuery setGstAmountIn(ArrayList value) { this.GSTAmountIn = value; return this; } public BigDecimal getOutstandingAmount() { return OutstandingAmount; } public v_Jiwa_Debtor_Transactions_ListQuery setOutstandingAmount(BigDecimal value) { this.OutstandingAmount = value; return this; } public BigDecimal getOutstandingAmountGreaterThanOrEqualTo() { return OutstandingAmountGreaterThanOrEqualTo; } public v_Jiwa_Debtor_Transactions_ListQuery setOutstandingAmountGreaterThanOrEqualTo(BigDecimal value) { this.OutstandingAmountGreaterThanOrEqualTo = value; return this; } public BigDecimal getOutstandingAmountGreaterThan() { return OutstandingAmountGreaterThan; } public v_Jiwa_Debtor_Transactions_ListQuery setOutstandingAmountGreaterThan(BigDecimal value) { this.OutstandingAmountGreaterThan = value; return this; } public BigDecimal getOutstandingAmountLessThan() { return OutstandingAmountLessThan; } public v_Jiwa_Debtor_Transactions_ListQuery setOutstandingAmountLessThan(BigDecimal value) { this.OutstandingAmountLessThan = value; return this; } public BigDecimal getOutstandingAmountLessThanOrEqualTo() { return OutstandingAmountLessThanOrEqualTo; } public v_Jiwa_Debtor_Transactions_ListQuery setOutstandingAmountLessThanOrEqualTo(BigDecimal value) { this.OutstandingAmountLessThanOrEqualTo = value; return this; } public BigDecimal getOutstandingAmountNotEqualTo() { return OutstandingAmountNotEqualTo; } public v_Jiwa_Debtor_Transactions_ListQuery setOutstandingAmountNotEqualTo(BigDecimal value) { this.OutstandingAmountNotEqualTo = value; return this; } public ArrayList getOutstandingAmountBetween() { return OutstandingAmountBetween; } public v_Jiwa_Debtor_Transactions_ListQuery setOutstandingAmountBetween(ArrayList value) { this.OutstandingAmountBetween = value; return this; } public ArrayList getOutstandingAmountIn() { return OutstandingAmountIn; } public v_Jiwa_Debtor_Transactions_ListQuery setOutstandingAmountIn(ArrayList value) { this.OutstandingAmountIn = value; return this; } public String getDescription() { return Description; } public v_Jiwa_Debtor_Transactions_ListQuery setDescription(String value) { this.Description = value; return this; } public String getDescriptionStartsWith() { return DescriptionStartsWith; } public v_Jiwa_Debtor_Transactions_ListQuery setDescriptionStartsWith(String value) { this.DescriptionStartsWith = value; return this; } public String getDescriptionEndsWith() { return DescriptionEndsWith; } public v_Jiwa_Debtor_Transactions_ListQuery setDescriptionEndsWith(String value) { this.DescriptionEndsWith = value; return this; } public String getDescriptionContains() { return DescriptionContains; } public v_Jiwa_Debtor_Transactions_ListQuery setDescriptionContains(String value) { this.DescriptionContains = value; return this; } public String getDescriptionLike() { return DescriptionLike; } public v_Jiwa_Debtor_Transactions_ListQuery setDescriptionLike(String value) { this.DescriptionLike = value; return this; } public ArrayList getDescriptionBetween() { return DescriptionBetween; } public v_Jiwa_Debtor_Transactions_ListQuery setDescriptionBetween(ArrayList value) { this.DescriptionBetween = value; return this; } public ArrayList getDescriptionIn() { return DescriptionIn; } public v_Jiwa_Debtor_Transactions_ListQuery setDescriptionIn(ArrayList value) { this.DescriptionIn = value; return this; } public String getSourceID() { return SourceID; } public v_Jiwa_Debtor_Transactions_ListQuery setSourceID(String value) { this.SourceID = value; return this; } public String getSourceIDStartsWith() { return SourceIDStartsWith; } public v_Jiwa_Debtor_Transactions_ListQuery setSourceIDStartsWith(String value) { this.SourceIDStartsWith = value; return this; } public String getSourceIDEndsWith() { return SourceIDEndsWith; } public v_Jiwa_Debtor_Transactions_ListQuery setSourceIDEndsWith(String value) { this.SourceIDEndsWith = value; return this; } public String getSourceIDContains() { return SourceIDContains; } public v_Jiwa_Debtor_Transactions_ListQuery setSourceIDContains(String value) { this.SourceIDContains = value; return this; } public String getSourceIDLike() { return SourceIDLike; } public v_Jiwa_Debtor_Transactions_ListQuery setSourceIDLike(String value) { this.SourceIDLike = value; return this; } public ArrayList getSourceIDBetween() { return SourceIDBetween; } public v_Jiwa_Debtor_Transactions_ListQuery setSourceIDBetween(ArrayList value) { this.SourceIDBetween = value; return this; } public ArrayList getSourceIDIn() { return SourceIDIn; } public v_Jiwa_Debtor_Transactions_ListQuery setSourceIDIn(ArrayList value) { this.SourceIDIn = value; return this; } public String getRef() { return Ref; } public v_Jiwa_Debtor_Transactions_ListQuery setRef(String value) { this.Ref = value; return this; } public String getRefStartsWith() { return RefStartsWith; } public v_Jiwa_Debtor_Transactions_ListQuery setRefStartsWith(String value) { this.RefStartsWith = value; return this; } public String getRefEndsWith() { return RefEndsWith; } public v_Jiwa_Debtor_Transactions_ListQuery setRefEndsWith(String value) { this.RefEndsWith = value; return this; } public String getRefContains() { return RefContains; } public v_Jiwa_Debtor_Transactions_ListQuery setRefContains(String value) { this.RefContains = value; return this; } public String getRefLike() { return RefLike; } public v_Jiwa_Debtor_Transactions_ListQuery setRefLike(String value) { this.RefLike = value; return this; } public ArrayList getRefBetween() { return RefBetween; } public v_Jiwa_Debtor_Transactions_ListQuery setRefBetween(ArrayList value) { this.RefBetween = value; return this; } public ArrayList getRefIn() { return RefIn; } public v_Jiwa_Debtor_Transactions_ListQuery setRefIn(ArrayList value) { this.RefIn = value; return this; } public String getRemark() { return Remark; } public v_Jiwa_Debtor_Transactions_ListQuery setRemark(String value) { this.Remark = value; return this; } public String getRemarkStartsWith() { return RemarkStartsWith; } public v_Jiwa_Debtor_Transactions_ListQuery setRemarkStartsWith(String value) { this.RemarkStartsWith = value; return this; } public String getRemarkEndsWith() { return RemarkEndsWith; } public v_Jiwa_Debtor_Transactions_ListQuery setRemarkEndsWith(String value) { this.RemarkEndsWith = value; return this; } public String getRemarkContains() { return RemarkContains; } public v_Jiwa_Debtor_Transactions_ListQuery setRemarkContains(String value) { this.RemarkContains = value; return this; } public String getRemarkLike() { return RemarkLike; } public v_Jiwa_Debtor_Transactions_ListQuery setRemarkLike(String value) { this.RemarkLike = value; return this; } public ArrayList getRemarkBetween() { return RemarkBetween; } public v_Jiwa_Debtor_Transactions_ListQuery setRemarkBetween(ArrayList value) { this.RemarkBetween = value; return this; } public ArrayList getRemarkIn() { return RemarkIn; } public v_Jiwa_Debtor_Transactions_ListQuery setRemarkIn(ArrayList value) { this.RemarkIn = value; return this; } public String getNote() { return Note; } public v_Jiwa_Debtor_Transactions_ListQuery setNote(String value) { this.Note = value; return this; } public String getNoteStartsWith() { return NoteStartsWith; } public v_Jiwa_Debtor_Transactions_ListQuery setNoteStartsWith(String value) { this.NoteStartsWith = value; return this; } public String getNoteEndsWith() { return NoteEndsWith; } public v_Jiwa_Debtor_Transactions_ListQuery setNoteEndsWith(String value) { this.NoteEndsWith = value; return this; } public String getNoteContains() { return NoteContains; } public v_Jiwa_Debtor_Transactions_ListQuery setNoteContains(String value) { this.NoteContains = value; return this; } public String getNoteLike() { return NoteLike; } public v_Jiwa_Debtor_Transactions_ListQuery setNoteLike(String value) { this.NoteLike = value; return this; } public ArrayList getNoteBetween() { return NoteBetween; } public v_Jiwa_Debtor_Transactions_ListQuery setNoteBetween(ArrayList value) { this.NoteBetween = value; return this; } public ArrayList getNoteIn() { return NoteIn; } public v_Jiwa_Debtor_Transactions_ListQuery setNoteIn(ArrayList value) { this.NoteIn = value; return this; } public Boolean isAgedOut() { return AgedOut; } public v_Jiwa_Debtor_Transactions_ListQuery setAgedOut(Boolean value) { this.AgedOut = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class v_JIWA_DefaultOrderLocationsQuery extends QueryDb implements IReturn> { public String IN_LogicalID = null; public String IN_LogicalIDStartsWith = null; public String IN_LogicalIDEndsWith = null; public String IN_LogicalIDContains = null; public String IN_LogicalIDLike = null; public ArrayList IN_LogicalIDBetween = null; public ArrayList IN_LogicalIDIn = null; public String IN_PhysicalID = null; public String IN_PhysicalIDStartsWith = null; public String IN_PhysicalIDEndsWith = null; public String IN_PhysicalIDContains = null; public String IN_PhysicalIDLike = null; public ArrayList IN_PhysicalIDBetween = null; public ArrayList IN_PhysicalIDIn = null; public String LogicalWarehouseDesciption = null; public String LogicalWarehouseDesciptionStartsWith = null; public String LogicalWarehouseDesciptionEndsWith = null; public String LogicalWarehouseDesciptionContains = null; public String LogicalWarehouseDesciptionLike = null; public ArrayList LogicalWarehouseDesciptionBetween = null; public ArrayList LogicalWarehouseDesciptionIn = null; public String PhysicalWarehouseDesciption = null; public String PhysicalWarehouseDesciptionStartsWith = null; public String PhysicalWarehouseDesciptionEndsWith = null; public String PhysicalWarehouseDesciptionContains = null; public String PhysicalWarehouseDesciptionLike = null; public ArrayList PhysicalWarehouseDesciptionBetween = null; public ArrayList PhysicalWarehouseDesciptionIn = null; public String getInLogicalID() { return IN_LogicalID; } public v_JIWA_DefaultOrderLocationsQuery setInLogicalID(String value) { this.IN_LogicalID = value; return this; } public String getInLogicalIDStartsWith() { return IN_LogicalIDStartsWith; } public v_JIWA_DefaultOrderLocationsQuery setInLogicalIDStartsWith(String value) { this.IN_LogicalIDStartsWith = value; return this; } public String getInLogicalIDEndsWith() { return IN_LogicalIDEndsWith; } public v_JIWA_DefaultOrderLocationsQuery setInLogicalIDEndsWith(String value) { this.IN_LogicalIDEndsWith = value; return this; } public String getInLogicalIDContains() { return IN_LogicalIDContains; } public v_JIWA_DefaultOrderLocationsQuery setInLogicalIDContains(String value) { this.IN_LogicalIDContains = value; return this; } public String getInLogicalIDLike() { return IN_LogicalIDLike; } public v_JIWA_DefaultOrderLocationsQuery setInLogicalIDLike(String value) { this.IN_LogicalIDLike = value; return this; } public ArrayList getInLogicalIDBetween() { return IN_LogicalIDBetween; } public v_JIWA_DefaultOrderLocationsQuery setInLogicalIDBetween(ArrayList value) { this.IN_LogicalIDBetween = value; return this; } public ArrayList getInLogicalIDIn() { return IN_LogicalIDIn; } public v_JIWA_DefaultOrderLocationsQuery setInLogicalIDIn(ArrayList value) { this.IN_LogicalIDIn = value; return this; } public String getInPhysicalID() { return IN_PhysicalID; } public v_JIWA_DefaultOrderLocationsQuery setInPhysicalID(String value) { this.IN_PhysicalID = value; return this; } public String getInPhysicalIDStartsWith() { return IN_PhysicalIDStartsWith; } public v_JIWA_DefaultOrderLocationsQuery setInPhysicalIDStartsWith(String value) { this.IN_PhysicalIDStartsWith = value; return this; } public String getInPhysicalIDEndsWith() { return IN_PhysicalIDEndsWith; } public v_JIWA_DefaultOrderLocationsQuery setInPhysicalIDEndsWith(String value) { this.IN_PhysicalIDEndsWith = value; return this; } public String getInPhysicalIDContains() { return IN_PhysicalIDContains; } public v_JIWA_DefaultOrderLocationsQuery setInPhysicalIDContains(String value) { this.IN_PhysicalIDContains = value; return this; } public String getInPhysicalIDLike() { return IN_PhysicalIDLike; } public v_JIWA_DefaultOrderLocationsQuery setInPhysicalIDLike(String value) { this.IN_PhysicalIDLike = value; return this; } public ArrayList getInPhysicalIDBetween() { return IN_PhysicalIDBetween; } public v_JIWA_DefaultOrderLocationsQuery setInPhysicalIDBetween(ArrayList value) { this.IN_PhysicalIDBetween = value; return this; } public ArrayList getInPhysicalIDIn() { return IN_PhysicalIDIn; } public v_JIWA_DefaultOrderLocationsQuery setInPhysicalIDIn(ArrayList value) { this.IN_PhysicalIDIn = value; return this; } public String getLogicalWarehouseDesciption() { return LogicalWarehouseDesciption; } public v_JIWA_DefaultOrderLocationsQuery setLogicalWarehouseDesciption(String value) { this.LogicalWarehouseDesciption = value; return this; } public String getLogicalWarehouseDesciptionStartsWith() { return LogicalWarehouseDesciptionStartsWith; } public v_JIWA_DefaultOrderLocationsQuery setLogicalWarehouseDesciptionStartsWith(String value) { this.LogicalWarehouseDesciptionStartsWith = value; return this; } public String getLogicalWarehouseDesciptionEndsWith() { return LogicalWarehouseDesciptionEndsWith; } public v_JIWA_DefaultOrderLocationsQuery setLogicalWarehouseDesciptionEndsWith(String value) { this.LogicalWarehouseDesciptionEndsWith = value; return this; } public String getLogicalWarehouseDesciptionContains() { return LogicalWarehouseDesciptionContains; } public v_JIWA_DefaultOrderLocationsQuery setLogicalWarehouseDesciptionContains(String value) { this.LogicalWarehouseDesciptionContains = value; return this; } public String getLogicalWarehouseDesciptionLike() { return LogicalWarehouseDesciptionLike; } public v_JIWA_DefaultOrderLocationsQuery setLogicalWarehouseDesciptionLike(String value) { this.LogicalWarehouseDesciptionLike = value; return this; } public ArrayList getLogicalWarehouseDesciptionBetween() { return LogicalWarehouseDesciptionBetween; } public v_JIWA_DefaultOrderLocationsQuery setLogicalWarehouseDesciptionBetween(ArrayList value) { this.LogicalWarehouseDesciptionBetween = value; return this; } public ArrayList getLogicalWarehouseDesciptionIn() { return LogicalWarehouseDesciptionIn; } public v_JIWA_DefaultOrderLocationsQuery setLogicalWarehouseDesciptionIn(ArrayList value) { this.LogicalWarehouseDesciptionIn = value; return this; } public String getPhysicalWarehouseDesciption() { return PhysicalWarehouseDesciption; } public v_JIWA_DefaultOrderLocationsQuery setPhysicalWarehouseDesciption(String value) { this.PhysicalWarehouseDesciption = value; return this; } public String getPhysicalWarehouseDesciptionStartsWith() { return PhysicalWarehouseDesciptionStartsWith; } public v_JIWA_DefaultOrderLocationsQuery setPhysicalWarehouseDesciptionStartsWith(String value) { this.PhysicalWarehouseDesciptionStartsWith = value; return this; } public String getPhysicalWarehouseDesciptionEndsWith() { return PhysicalWarehouseDesciptionEndsWith; } public v_JIWA_DefaultOrderLocationsQuery setPhysicalWarehouseDesciptionEndsWith(String value) { this.PhysicalWarehouseDesciptionEndsWith = value; return this; } public String getPhysicalWarehouseDesciptionContains() { return PhysicalWarehouseDesciptionContains; } public v_JIWA_DefaultOrderLocationsQuery setPhysicalWarehouseDesciptionContains(String value) { this.PhysicalWarehouseDesciptionContains = value; return this; } public String getPhysicalWarehouseDesciptionLike() { return PhysicalWarehouseDesciptionLike; } public v_JIWA_DefaultOrderLocationsQuery setPhysicalWarehouseDesciptionLike(String value) { this.PhysicalWarehouseDesciptionLike = value; return this; } public ArrayList getPhysicalWarehouseDesciptionBetween() { return PhysicalWarehouseDesciptionBetween; } public v_JIWA_DefaultOrderLocationsQuery setPhysicalWarehouseDesciptionBetween(ArrayList value) { this.PhysicalWarehouseDesciptionBetween = value; return this; } public ArrayList getPhysicalWarehouseDesciptionIn() { return PhysicalWarehouseDesciptionIn; } public v_JIWA_DefaultOrderLocationsQuery setPhysicalWarehouseDesciptionIn(ArrayList value) { this.PhysicalWarehouseDesciptionIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class v_Jiwa_GL_PeriodsFromGL_ConfigQuery extends QueryDb implements IReturn> { public Short Year_No = null; public Short Year_NoGreaterThanOrEqualTo = null; public Short Year_NoGreaterThan = null; public Short Year_NoLessThan = null; public Short Year_NoLessThanOrEqualTo = null; public Short Year_NoNotEqualTo = null; public ArrayList Year_NoBetween = null; public ArrayList Year_NoIn = null; public String Period_Name = null; public String Period_NameStartsWith = null; public String Period_NameEndsWith = null; public String Period_NameContains = null; public String Period_NameLike = null; public ArrayList Period_NameBetween = null; public ArrayList Period_NameIn = null; public Date Period_Start_Date = null; public Date Period_Start_DateGreaterThanOrEqualTo = null; public Date Period_Start_DateGreaterThan = null; public Date Period_Start_DateLessThan = null; public Date Period_Start_DateLessThanOrEqualTo = null; public Date Period_Start_DateNotEqualTo = null; public ArrayList Period_Start_DateBetween = null; public ArrayList Period_Start_DateIn = null; public Date Period_End_Date = null; public Date Period_End_DateGreaterThanOrEqualTo = null; public Date Period_End_DateGreaterThan = null; public Date Period_End_DateLessThan = null; public Date Period_End_DateLessThanOrEqualTo = null; public Date Period_End_DateNotEqualTo = null; public ArrayList Period_End_DateBetween = null; public ArrayList Period_End_DateIn = null; public Short getYearNo() { return Year_No; } public v_Jiwa_GL_PeriodsFromGL_ConfigQuery setYearNo(Short value) { this.Year_No = value; return this; } public Short getYearNoGreaterThanOrEqualTo() { return Year_NoGreaterThanOrEqualTo; } public v_Jiwa_GL_PeriodsFromGL_ConfigQuery setYearNoGreaterThanOrEqualTo(Short value) { this.Year_NoGreaterThanOrEqualTo = value; return this; } public Short getYearNoGreaterThan() { return Year_NoGreaterThan; } public v_Jiwa_GL_PeriodsFromGL_ConfigQuery setYearNoGreaterThan(Short value) { this.Year_NoGreaterThan = value; return this; } public Short getYearNoLessThan() { return Year_NoLessThan; } public v_Jiwa_GL_PeriodsFromGL_ConfigQuery setYearNoLessThan(Short value) { this.Year_NoLessThan = value; return this; } public Short getYearNoLessThanOrEqualTo() { return Year_NoLessThanOrEqualTo; } public v_Jiwa_GL_PeriodsFromGL_ConfigQuery setYearNoLessThanOrEqualTo(Short value) { this.Year_NoLessThanOrEqualTo = value; return this; } public Short getYearNoNotEqualTo() { return Year_NoNotEqualTo; } public v_Jiwa_GL_PeriodsFromGL_ConfigQuery setYearNoNotEqualTo(Short value) { this.Year_NoNotEqualTo = value; return this; } public ArrayList getYearNoBetween() { return Year_NoBetween; } public v_Jiwa_GL_PeriodsFromGL_ConfigQuery setYearNoBetween(ArrayList value) { this.Year_NoBetween = value; return this; } public ArrayList getYearNoIn() { return Year_NoIn; } public v_Jiwa_GL_PeriodsFromGL_ConfigQuery setYearNoIn(ArrayList value) { this.Year_NoIn = value; return this; } public String getPeriodName() { return Period_Name; } public v_Jiwa_GL_PeriodsFromGL_ConfigQuery setPeriodName(String value) { this.Period_Name = value; return this; } public String getPeriodNameStartsWith() { return Period_NameStartsWith; } public v_Jiwa_GL_PeriodsFromGL_ConfigQuery setPeriodNameStartsWith(String value) { this.Period_NameStartsWith = value; return this; } public String getPeriodNameEndsWith() { return Period_NameEndsWith; } public v_Jiwa_GL_PeriodsFromGL_ConfigQuery setPeriodNameEndsWith(String value) { this.Period_NameEndsWith = value; return this; } public String getPeriodNameContains() { return Period_NameContains; } public v_Jiwa_GL_PeriodsFromGL_ConfigQuery setPeriodNameContains(String value) { this.Period_NameContains = value; return this; } public String getPeriodNameLike() { return Period_NameLike; } public v_Jiwa_GL_PeriodsFromGL_ConfigQuery setPeriodNameLike(String value) { this.Period_NameLike = value; return this; } public ArrayList getPeriodNameBetween() { return Period_NameBetween; } public v_Jiwa_GL_PeriodsFromGL_ConfigQuery setPeriodNameBetween(ArrayList value) { this.Period_NameBetween = value; return this; } public ArrayList getPeriodNameIn() { return Period_NameIn; } public v_Jiwa_GL_PeriodsFromGL_ConfigQuery setPeriodNameIn(ArrayList value) { this.Period_NameIn = value; return this; } public Date getPeriodStartDate() { return Period_Start_Date; } public v_Jiwa_GL_PeriodsFromGL_ConfigQuery setPeriodStartDate(Date value) { this.Period_Start_Date = value; return this; } public Date getPeriodStartDateGreaterThanOrEqualTo() { return Period_Start_DateGreaterThanOrEqualTo; } public v_Jiwa_GL_PeriodsFromGL_ConfigQuery setPeriodStartDateGreaterThanOrEqualTo(Date value) { this.Period_Start_DateGreaterThanOrEqualTo = value; return this; } public Date getPeriodStartDateGreaterThan() { return Period_Start_DateGreaterThan; } public v_Jiwa_GL_PeriodsFromGL_ConfigQuery setPeriodStartDateGreaterThan(Date value) { this.Period_Start_DateGreaterThan = value; return this; } public Date getPeriodStartDateLessThan() { return Period_Start_DateLessThan; } public v_Jiwa_GL_PeriodsFromGL_ConfigQuery setPeriodStartDateLessThan(Date value) { this.Period_Start_DateLessThan = value; return this; } public Date getPeriodStartDateLessThanOrEqualTo() { return Period_Start_DateLessThanOrEqualTo; } public v_Jiwa_GL_PeriodsFromGL_ConfigQuery setPeriodStartDateLessThanOrEqualTo(Date value) { this.Period_Start_DateLessThanOrEqualTo = value; return this; } public Date getPeriodStartDateNotEqualTo() { return Period_Start_DateNotEqualTo; } public v_Jiwa_GL_PeriodsFromGL_ConfigQuery setPeriodStartDateNotEqualTo(Date value) { this.Period_Start_DateNotEqualTo = value; return this; } public ArrayList getPeriodStartDateBetween() { return Period_Start_DateBetween; } public v_Jiwa_GL_PeriodsFromGL_ConfigQuery setPeriodStartDateBetween(ArrayList value) { this.Period_Start_DateBetween = value; return this; } public ArrayList getPeriodStartDateIn() { return Period_Start_DateIn; } public v_Jiwa_GL_PeriodsFromGL_ConfigQuery setPeriodStartDateIn(ArrayList value) { this.Period_Start_DateIn = value; return this; } public Date getPeriodEndDate() { return Period_End_Date; } public v_Jiwa_GL_PeriodsFromGL_ConfigQuery setPeriodEndDate(Date value) { this.Period_End_Date = value; return this; } public Date getPeriodEndDateGreaterThanOrEqualTo() { return Period_End_DateGreaterThanOrEqualTo; } public v_Jiwa_GL_PeriodsFromGL_ConfigQuery setPeriodEndDateGreaterThanOrEqualTo(Date value) { this.Period_End_DateGreaterThanOrEqualTo = value; return this; } public Date getPeriodEndDateGreaterThan() { return Period_End_DateGreaterThan; } public v_Jiwa_GL_PeriodsFromGL_ConfigQuery setPeriodEndDateGreaterThan(Date value) { this.Period_End_DateGreaterThan = value; return this; } public Date getPeriodEndDateLessThan() { return Period_End_DateLessThan; } public v_Jiwa_GL_PeriodsFromGL_ConfigQuery setPeriodEndDateLessThan(Date value) { this.Period_End_DateLessThan = value; return this; } public Date getPeriodEndDateLessThanOrEqualTo() { return Period_End_DateLessThanOrEqualTo; } public v_Jiwa_GL_PeriodsFromGL_ConfigQuery setPeriodEndDateLessThanOrEqualTo(Date value) { this.Period_End_DateLessThanOrEqualTo = value; return this; } public Date getPeriodEndDateNotEqualTo() { return Period_End_DateNotEqualTo; } public v_Jiwa_GL_PeriodsFromGL_ConfigQuery setPeriodEndDateNotEqualTo(Date value) { this.Period_End_DateNotEqualTo = value; return this; } public ArrayList getPeriodEndDateBetween() { return Period_End_DateBetween; } public v_Jiwa_GL_PeriodsFromGL_ConfigQuery setPeriodEndDateBetween(ArrayList value) { this.Period_End_DateBetween = value; return this; } public ArrayList getPeriodEndDateIn() { return Period_End_DateIn; } public v_Jiwa_GL_PeriodsFromGL_ConfigQuery setPeriodEndDateIn(ArrayList value) { this.Period_End_DateIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class v_Jiwa_GL_PeriodsFromGL_ConfigAndSO_SalesHistoryQuery extends QueryDb implements IReturn> { public Short Year_No = null; public Short Year_NoGreaterThanOrEqualTo = null; public Short Year_NoGreaterThan = null; public Short Year_NoLessThan = null; public Short Year_NoLessThanOrEqualTo = null; public Short Year_NoNotEqualTo = null; public ArrayList Year_NoBetween = null; public ArrayList Year_NoIn = null; public String Period_Name = null; public String Period_NameStartsWith = null; public String Period_NameEndsWith = null; public String Period_NameContains = null; public String Period_NameLike = null; public ArrayList Period_NameBetween = null; public ArrayList Period_NameIn = null; public Date Period_Start_Date = null; public Date Period_Start_DateGreaterThanOrEqualTo = null; public Date Period_Start_DateGreaterThan = null; public Date Period_Start_DateLessThan = null; public Date Period_Start_DateLessThanOrEqualTo = null; public Date Period_Start_DateNotEqualTo = null; public ArrayList Period_Start_DateBetween = null; public ArrayList Period_Start_DateIn = null; public Date Period_End_Date = null; public Date Period_End_DateGreaterThanOrEqualTo = null; public Date Period_End_DateGreaterThan = null; public Date Period_End_DateLessThan = null; public Date Period_End_DateLessThanOrEqualTo = null; public Date Period_End_DateNotEqualTo = null; public ArrayList Period_End_DateBetween = null; public ArrayList Period_End_DateIn = null; public Short getYearNo() { return Year_No; } public v_Jiwa_GL_PeriodsFromGL_ConfigAndSO_SalesHistoryQuery setYearNo(Short value) { this.Year_No = value; return this; } public Short getYearNoGreaterThanOrEqualTo() { return Year_NoGreaterThanOrEqualTo; } public v_Jiwa_GL_PeriodsFromGL_ConfigAndSO_SalesHistoryQuery setYearNoGreaterThanOrEqualTo(Short value) { this.Year_NoGreaterThanOrEqualTo = value; return this; } public Short getYearNoGreaterThan() { return Year_NoGreaterThan; } public v_Jiwa_GL_PeriodsFromGL_ConfigAndSO_SalesHistoryQuery setYearNoGreaterThan(Short value) { this.Year_NoGreaterThan = value; return this; } public Short getYearNoLessThan() { return Year_NoLessThan; } public v_Jiwa_GL_PeriodsFromGL_ConfigAndSO_SalesHistoryQuery setYearNoLessThan(Short value) { this.Year_NoLessThan = value; return this; } public Short getYearNoLessThanOrEqualTo() { return Year_NoLessThanOrEqualTo; } public v_Jiwa_GL_PeriodsFromGL_ConfigAndSO_SalesHistoryQuery setYearNoLessThanOrEqualTo(Short value) { this.Year_NoLessThanOrEqualTo = value; return this; } public Short getYearNoNotEqualTo() { return Year_NoNotEqualTo; } public v_Jiwa_GL_PeriodsFromGL_ConfigAndSO_SalesHistoryQuery setYearNoNotEqualTo(Short value) { this.Year_NoNotEqualTo = value; return this; } public ArrayList getYearNoBetween() { return Year_NoBetween; } public v_Jiwa_GL_PeriodsFromGL_ConfigAndSO_SalesHistoryQuery setYearNoBetween(ArrayList value) { this.Year_NoBetween = value; return this; } public ArrayList getYearNoIn() { return Year_NoIn; } public v_Jiwa_GL_PeriodsFromGL_ConfigAndSO_SalesHistoryQuery setYearNoIn(ArrayList value) { this.Year_NoIn = value; return this; } public String getPeriodName() { return Period_Name; } public v_Jiwa_GL_PeriodsFromGL_ConfigAndSO_SalesHistoryQuery setPeriodName(String value) { this.Period_Name = value; return this; } public String getPeriodNameStartsWith() { return Period_NameStartsWith; } public v_Jiwa_GL_PeriodsFromGL_ConfigAndSO_SalesHistoryQuery setPeriodNameStartsWith(String value) { this.Period_NameStartsWith = value; return this; } public String getPeriodNameEndsWith() { return Period_NameEndsWith; } public v_Jiwa_GL_PeriodsFromGL_ConfigAndSO_SalesHistoryQuery setPeriodNameEndsWith(String value) { this.Period_NameEndsWith = value; return this; } public String getPeriodNameContains() { return Period_NameContains; } public v_Jiwa_GL_PeriodsFromGL_ConfigAndSO_SalesHistoryQuery setPeriodNameContains(String value) { this.Period_NameContains = value; return this; } public String getPeriodNameLike() { return Period_NameLike; } public v_Jiwa_GL_PeriodsFromGL_ConfigAndSO_SalesHistoryQuery setPeriodNameLike(String value) { this.Period_NameLike = value; return this; } public ArrayList getPeriodNameBetween() { return Period_NameBetween; } public v_Jiwa_GL_PeriodsFromGL_ConfigAndSO_SalesHistoryQuery setPeriodNameBetween(ArrayList value) { this.Period_NameBetween = value; return this; } public ArrayList getPeriodNameIn() { return Period_NameIn; } public v_Jiwa_GL_PeriodsFromGL_ConfigAndSO_SalesHistoryQuery setPeriodNameIn(ArrayList value) { this.Period_NameIn = value; return this; } public Date getPeriodStartDate() { return Period_Start_Date; } public v_Jiwa_GL_PeriodsFromGL_ConfigAndSO_SalesHistoryQuery setPeriodStartDate(Date value) { this.Period_Start_Date = value; return this; } public Date getPeriodStartDateGreaterThanOrEqualTo() { return Period_Start_DateGreaterThanOrEqualTo; } public v_Jiwa_GL_PeriodsFromGL_ConfigAndSO_SalesHistoryQuery setPeriodStartDateGreaterThanOrEqualTo(Date value) { this.Period_Start_DateGreaterThanOrEqualTo = value; return this; } public Date getPeriodStartDateGreaterThan() { return Period_Start_DateGreaterThan; } public v_Jiwa_GL_PeriodsFromGL_ConfigAndSO_SalesHistoryQuery setPeriodStartDateGreaterThan(Date value) { this.Period_Start_DateGreaterThan = value; return this; } public Date getPeriodStartDateLessThan() { return Period_Start_DateLessThan; } public v_Jiwa_GL_PeriodsFromGL_ConfigAndSO_SalesHistoryQuery setPeriodStartDateLessThan(Date value) { this.Period_Start_DateLessThan = value; return this; } public Date getPeriodStartDateLessThanOrEqualTo() { return Period_Start_DateLessThanOrEqualTo; } public v_Jiwa_GL_PeriodsFromGL_ConfigAndSO_SalesHistoryQuery setPeriodStartDateLessThanOrEqualTo(Date value) { this.Period_Start_DateLessThanOrEqualTo = value; return this; } public Date getPeriodStartDateNotEqualTo() { return Period_Start_DateNotEqualTo; } public v_Jiwa_GL_PeriodsFromGL_ConfigAndSO_SalesHistoryQuery setPeriodStartDateNotEqualTo(Date value) { this.Period_Start_DateNotEqualTo = value; return this; } public ArrayList getPeriodStartDateBetween() { return Period_Start_DateBetween; } public v_Jiwa_GL_PeriodsFromGL_ConfigAndSO_SalesHistoryQuery setPeriodStartDateBetween(ArrayList value) { this.Period_Start_DateBetween = value; return this; } public ArrayList getPeriodStartDateIn() { return Period_Start_DateIn; } public v_Jiwa_GL_PeriodsFromGL_ConfigAndSO_SalesHistoryQuery setPeriodStartDateIn(ArrayList value) { this.Period_Start_DateIn = value; return this; } public Date getPeriodEndDate() { return Period_End_Date; } public v_Jiwa_GL_PeriodsFromGL_ConfigAndSO_SalesHistoryQuery setPeriodEndDate(Date value) { this.Period_End_Date = value; return this; } public Date getPeriodEndDateGreaterThanOrEqualTo() { return Period_End_DateGreaterThanOrEqualTo; } public v_Jiwa_GL_PeriodsFromGL_ConfigAndSO_SalesHistoryQuery setPeriodEndDateGreaterThanOrEqualTo(Date value) { this.Period_End_DateGreaterThanOrEqualTo = value; return this; } public Date getPeriodEndDateGreaterThan() { return Period_End_DateGreaterThan; } public v_Jiwa_GL_PeriodsFromGL_ConfigAndSO_SalesHistoryQuery setPeriodEndDateGreaterThan(Date value) { this.Period_End_DateGreaterThan = value; return this; } public Date getPeriodEndDateLessThan() { return Period_End_DateLessThan; } public v_Jiwa_GL_PeriodsFromGL_ConfigAndSO_SalesHistoryQuery setPeriodEndDateLessThan(Date value) { this.Period_End_DateLessThan = value; return this; } public Date getPeriodEndDateLessThanOrEqualTo() { return Period_End_DateLessThanOrEqualTo; } public v_Jiwa_GL_PeriodsFromGL_ConfigAndSO_SalesHistoryQuery setPeriodEndDateLessThanOrEqualTo(Date value) { this.Period_End_DateLessThanOrEqualTo = value; return this; } public Date getPeriodEndDateNotEqualTo() { return Period_End_DateNotEqualTo; } public v_Jiwa_GL_PeriodsFromGL_ConfigAndSO_SalesHistoryQuery setPeriodEndDateNotEqualTo(Date value) { this.Period_End_DateNotEqualTo = value; return this; } public ArrayList getPeriodEndDateBetween() { return Period_End_DateBetween; } public v_Jiwa_GL_PeriodsFromGL_ConfigAndSO_SalesHistoryQuery setPeriodEndDateBetween(ArrayList value) { this.Period_End_DateBetween = value; return this; } public ArrayList getPeriodEndDateIn() { return Period_End_DateIn; } public v_Jiwa_GL_PeriodsFromGL_ConfigAndSO_SalesHistoryQuery setPeriodEndDateIn(ArrayList value) { this.Period_End_DateIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class v_Jiwa_GL_PeriodsFromSO_SalesHistoryQuery extends QueryDb implements IReturn> { public Short Year_No = null; public Short Year_NoGreaterThanOrEqualTo = null; public Short Year_NoGreaterThan = null; public Short Year_NoLessThan = null; public Short Year_NoLessThanOrEqualTo = null; public Short Year_NoNotEqualTo = null; public ArrayList Year_NoBetween = null; public ArrayList Year_NoIn = null; public String Period_Name = null; public String Period_NameStartsWith = null; public String Period_NameEndsWith = null; public String Period_NameContains = null; public String Period_NameLike = null; public ArrayList Period_NameBetween = null; public ArrayList Period_NameIn = null; public Date Period_Start_Date = null; public Date Period_Start_DateGreaterThanOrEqualTo = null; public Date Period_Start_DateGreaterThan = null; public Date Period_Start_DateLessThan = null; public Date Period_Start_DateLessThanOrEqualTo = null; public Date Period_Start_DateNotEqualTo = null; public ArrayList Period_Start_DateBetween = null; public ArrayList Period_Start_DateIn = null; public Date Period_End_Date = null; public Date Period_End_DateGreaterThanOrEqualTo = null; public Date Period_End_DateGreaterThan = null; public Date Period_End_DateLessThan = null; public Date Period_End_DateLessThanOrEqualTo = null; public Date Period_End_DateNotEqualTo = null; public ArrayList Period_End_DateBetween = null; public ArrayList Period_End_DateIn = null; public Short getYearNo() { return Year_No; } public v_Jiwa_GL_PeriodsFromSO_SalesHistoryQuery setYearNo(Short value) { this.Year_No = value; return this; } public Short getYearNoGreaterThanOrEqualTo() { return Year_NoGreaterThanOrEqualTo; } public v_Jiwa_GL_PeriodsFromSO_SalesHistoryQuery setYearNoGreaterThanOrEqualTo(Short value) { this.Year_NoGreaterThanOrEqualTo = value; return this; } public Short getYearNoGreaterThan() { return Year_NoGreaterThan; } public v_Jiwa_GL_PeriodsFromSO_SalesHistoryQuery setYearNoGreaterThan(Short value) { this.Year_NoGreaterThan = value; return this; } public Short getYearNoLessThan() { return Year_NoLessThan; } public v_Jiwa_GL_PeriodsFromSO_SalesHistoryQuery setYearNoLessThan(Short value) { this.Year_NoLessThan = value; return this; } public Short getYearNoLessThanOrEqualTo() { return Year_NoLessThanOrEqualTo; } public v_Jiwa_GL_PeriodsFromSO_SalesHistoryQuery setYearNoLessThanOrEqualTo(Short value) { this.Year_NoLessThanOrEqualTo = value; return this; } public Short getYearNoNotEqualTo() { return Year_NoNotEqualTo; } public v_Jiwa_GL_PeriodsFromSO_SalesHistoryQuery setYearNoNotEqualTo(Short value) { this.Year_NoNotEqualTo = value; return this; } public ArrayList getYearNoBetween() { return Year_NoBetween; } public v_Jiwa_GL_PeriodsFromSO_SalesHistoryQuery setYearNoBetween(ArrayList value) { this.Year_NoBetween = value; return this; } public ArrayList getYearNoIn() { return Year_NoIn; } public v_Jiwa_GL_PeriodsFromSO_SalesHistoryQuery setYearNoIn(ArrayList value) { this.Year_NoIn = value; return this; } public String getPeriodName() { return Period_Name; } public v_Jiwa_GL_PeriodsFromSO_SalesHistoryQuery setPeriodName(String value) { this.Period_Name = value; return this; } public String getPeriodNameStartsWith() { return Period_NameStartsWith; } public v_Jiwa_GL_PeriodsFromSO_SalesHistoryQuery setPeriodNameStartsWith(String value) { this.Period_NameStartsWith = value; return this; } public String getPeriodNameEndsWith() { return Period_NameEndsWith; } public v_Jiwa_GL_PeriodsFromSO_SalesHistoryQuery setPeriodNameEndsWith(String value) { this.Period_NameEndsWith = value; return this; } public String getPeriodNameContains() { return Period_NameContains; } public v_Jiwa_GL_PeriodsFromSO_SalesHistoryQuery setPeriodNameContains(String value) { this.Period_NameContains = value; return this; } public String getPeriodNameLike() { return Period_NameLike; } public v_Jiwa_GL_PeriodsFromSO_SalesHistoryQuery setPeriodNameLike(String value) { this.Period_NameLike = value; return this; } public ArrayList getPeriodNameBetween() { return Period_NameBetween; } public v_Jiwa_GL_PeriodsFromSO_SalesHistoryQuery setPeriodNameBetween(ArrayList value) { this.Period_NameBetween = value; return this; } public ArrayList getPeriodNameIn() { return Period_NameIn; } public v_Jiwa_GL_PeriodsFromSO_SalesHistoryQuery setPeriodNameIn(ArrayList value) { this.Period_NameIn = value; return this; } public Date getPeriodStartDate() { return Period_Start_Date; } public v_Jiwa_GL_PeriodsFromSO_SalesHistoryQuery setPeriodStartDate(Date value) { this.Period_Start_Date = value; return this; } public Date getPeriodStartDateGreaterThanOrEqualTo() { return Period_Start_DateGreaterThanOrEqualTo; } public v_Jiwa_GL_PeriodsFromSO_SalesHistoryQuery setPeriodStartDateGreaterThanOrEqualTo(Date value) { this.Period_Start_DateGreaterThanOrEqualTo = value; return this; } public Date getPeriodStartDateGreaterThan() { return Period_Start_DateGreaterThan; } public v_Jiwa_GL_PeriodsFromSO_SalesHistoryQuery setPeriodStartDateGreaterThan(Date value) { this.Period_Start_DateGreaterThan = value; return this; } public Date getPeriodStartDateLessThan() { return Period_Start_DateLessThan; } public v_Jiwa_GL_PeriodsFromSO_SalesHistoryQuery setPeriodStartDateLessThan(Date value) { this.Period_Start_DateLessThan = value; return this; } public Date getPeriodStartDateLessThanOrEqualTo() { return Period_Start_DateLessThanOrEqualTo; } public v_Jiwa_GL_PeriodsFromSO_SalesHistoryQuery setPeriodStartDateLessThanOrEqualTo(Date value) { this.Period_Start_DateLessThanOrEqualTo = value; return this; } public Date getPeriodStartDateNotEqualTo() { return Period_Start_DateNotEqualTo; } public v_Jiwa_GL_PeriodsFromSO_SalesHistoryQuery setPeriodStartDateNotEqualTo(Date value) { this.Period_Start_DateNotEqualTo = value; return this; } public ArrayList getPeriodStartDateBetween() { return Period_Start_DateBetween; } public v_Jiwa_GL_PeriodsFromSO_SalesHistoryQuery setPeriodStartDateBetween(ArrayList value) { this.Period_Start_DateBetween = value; return this; } public ArrayList getPeriodStartDateIn() { return Period_Start_DateIn; } public v_Jiwa_GL_PeriodsFromSO_SalesHistoryQuery setPeriodStartDateIn(ArrayList value) { this.Period_Start_DateIn = value; return this; } public Date getPeriodEndDate() { return Period_End_Date; } public v_Jiwa_GL_PeriodsFromSO_SalesHistoryQuery setPeriodEndDate(Date value) { this.Period_End_Date = value; return this; } public Date getPeriodEndDateGreaterThanOrEqualTo() { return Period_End_DateGreaterThanOrEqualTo; } public v_Jiwa_GL_PeriodsFromSO_SalesHistoryQuery setPeriodEndDateGreaterThanOrEqualTo(Date value) { this.Period_End_DateGreaterThanOrEqualTo = value; return this; } public Date getPeriodEndDateGreaterThan() { return Period_End_DateGreaterThan; } public v_Jiwa_GL_PeriodsFromSO_SalesHistoryQuery setPeriodEndDateGreaterThan(Date value) { this.Period_End_DateGreaterThan = value; return this; } public Date getPeriodEndDateLessThan() { return Period_End_DateLessThan; } public v_Jiwa_GL_PeriodsFromSO_SalesHistoryQuery setPeriodEndDateLessThan(Date value) { this.Period_End_DateLessThan = value; return this; } public Date getPeriodEndDateLessThanOrEqualTo() { return Period_End_DateLessThanOrEqualTo; } public v_Jiwa_GL_PeriodsFromSO_SalesHistoryQuery setPeriodEndDateLessThanOrEqualTo(Date value) { this.Period_End_DateLessThanOrEqualTo = value; return this; } public Date getPeriodEndDateNotEqualTo() { return Period_End_DateNotEqualTo; } public v_Jiwa_GL_PeriodsFromSO_SalesHistoryQuery setPeriodEndDateNotEqualTo(Date value) { this.Period_End_DateNotEqualTo = value; return this; } public ArrayList getPeriodEndDateBetween() { return Period_End_DateBetween; } public v_Jiwa_GL_PeriodsFromSO_SalesHistoryQuery setPeriodEndDateBetween(ArrayList value) { this.Period_End_DateBetween = value; return this; } public ArrayList getPeriodEndDateIn() { return Period_End_DateIn; } public v_Jiwa_GL_PeriodsFromSO_SalesHistoryQuery setPeriodEndDateIn(ArrayList value) { this.Period_End_DateIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class v_JIWA_Inventory_AllPartsIncludingOldPartNumbersQuery extends QueryDb implements IReturn> { public String InventoryID = null; public String InventoryIDStartsWith = null; public String InventoryIDEndsWith = null; public String InventoryIDContains = null; public String InventoryIDLike = null; public ArrayList InventoryIDBetween = null; public ArrayList InventoryIDIn = null; public String PartNo = null; public String PartNoStartsWith = null; public String PartNoEndsWith = null; public String PartNoContains = null; public String PartNoLike = null; public ArrayList PartNoBetween = null; public ArrayList PartNoIn = null; public String Description = null; public String DescriptionStartsWith = null; public String DescriptionEndsWith = null; public String DescriptionContains = null; public String DescriptionLike = null; public ArrayList DescriptionBetween = null; public ArrayList DescriptionIn = null; public String getInventoryID() { return InventoryID; } public v_JIWA_Inventory_AllPartsIncludingOldPartNumbersQuery setInventoryID(String value) { this.InventoryID = value; return this; } public String getInventoryIDStartsWith() { return InventoryIDStartsWith; } public v_JIWA_Inventory_AllPartsIncludingOldPartNumbersQuery setInventoryIDStartsWith(String value) { this.InventoryIDStartsWith = value; return this; } public String getInventoryIDEndsWith() { return InventoryIDEndsWith; } public v_JIWA_Inventory_AllPartsIncludingOldPartNumbersQuery setInventoryIDEndsWith(String value) { this.InventoryIDEndsWith = value; return this; } public String getInventoryIDContains() { return InventoryIDContains; } public v_JIWA_Inventory_AllPartsIncludingOldPartNumbersQuery setInventoryIDContains(String value) { this.InventoryIDContains = value; return this; } public String getInventoryIDLike() { return InventoryIDLike; } public v_JIWA_Inventory_AllPartsIncludingOldPartNumbersQuery setInventoryIDLike(String value) { this.InventoryIDLike = value; return this; } public ArrayList getInventoryIDBetween() { return InventoryIDBetween; } public v_JIWA_Inventory_AllPartsIncludingOldPartNumbersQuery setInventoryIDBetween(ArrayList value) { this.InventoryIDBetween = value; return this; } public ArrayList getInventoryIDIn() { return InventoryIDIn; } public v_JIWA_Inventory_AllPartsIncludingOldPartNumbersQuery setInventoryIDIn(ArrayList value) { this.InventoryIDIn = value; return this; } public String getPartNo() { return PartNo; } public v_JIWA_Inventory_AllPartsIncludingOldPartNumbersQuery setPartNo(String value) { this.PartNo = value; return this; } public String getPartNoStartsWith() { return PartNoStartsWith; } public v_JIWA_Inventory_AllPartsIncludingOldPartNumbersQuery setPartNoStartsWith(String value) { this.PartNoStartsWith = value; return this; } public String getPartNoEndsWith() { return PartNoEndsWith; } public v_JIWA_Inventory_AllPartsIncludingOldPartNumbersQuery setPartNoEndsWith(String value) { this.PartNoEndsWith = value; return this; } public String getPartNoContains() { return PartNoContains; } public v_JIWA_Inventory_AllPartsIncludingOldPartNumbersQuery setPartNoContains(String value) { this.PartNoContains = value; return this; } public String getPartNoLike() { return PartNoLike; } public v_JIWA_Inventory_AllPartsIncludingOldPartNumbersQuery setPartNoLike(String value) { this.PartNoLike = value; return this; } public ArrayList getPartNoBetween() { return PartNoBetween; } public v_JIWA_Inventory_AllPartsIncludingOldPartNumbersQuery setPartNoBetween(ArrayList value) { this.PartNoBetween = value; return this; } public ArrayList getPartNoIn() { return PartNoIn; } public v_JIWA_Inventory_AllPartsIncludingOldPartNumbersQuery setPartNoIn(ArrayList value) { this.PartNoIn = value; return this; } public String getDescription() { return Description; } public v_JIWA_Inventory_AllPartsIncludingOldPartNumbersQuery setDescription(String value) { this.Description = value; return this; } public String getDescriptionStartsWith() { return DescriptionStartsWith; } public v_JIWA_Inventory_AllPartsIncludingOldPartNumbersQuery setDescriptionStartsWith(String value) { this.DescriptionStartsWith = value; return this; } public String getDescriptionEndsWith() { return DescriptionEndsWith; } public v_JIWA_Inventory_AllPartsIncludingOldPartNumbersQuery setDescriptionEndsWith(String value) { this.DescriptionEndsWith = value; return this; } public String getDescriptionContains() { return DescriptionContains; } public v_JIWA_Inventory_AllPartsIncludingOldPartNumbersQuery setDescriptionContains(String value) { this.DescriptionContains = value; return this; } public String getDescriptionLike() { return DescriptionLike; } public v_JIWA_Inventory_AllPartsIncludingOldPartNumbersQuery setDescriptionLike(String value) { this.DescriptionLike = value; return this; } public ArrayList getDescriptionBetween() { return DescriptionBetween; } public v_JIWA_Inventory_AllPartsIncludingOldPartNumbersQuery setDescriptionBetween(ArrayList value) { this.DescriptionBetween = value; return this; } public ArrayList getDescriptionIn() { return DescriptionIn; } public v_JIWA_Inventory_AllPartsIncludingOldPartNumbersQuery setDescriptionIn(ArrayList value) { this.DescriptionIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class SH_MainQuery extends QueryDb implements IReturn> { public String ShipmentID = null; public String ShipmentIDStartsWith = null; public String ShipmentIDEndsWith = null; public String ShipmentIDContains = null; public String ShipmentIDLike = null; public ArrayList ShipmentIDBetween = null; public ArrayList ShipmentIDIn = null; public Date LastSavedDateTime = null; public Date LastSavedDateTimeGreaterThanOrEqualTo = null; public Date LastSavedDateTimeGreaterThan = null; public Date LastSavedDateTimeLessThan = null; public Date LastSavedDateTimeLessThanOrEqualTo = null; public Date LastSavedDateTimeNotEqualTo = null; public ArrayList LastSavedDateTimeBetween = null; public ArrayList LastSavedDateTimeIn = null; public String IN_LogicalID = null; public String IN_LogicalIDStartsWith = null; public String IN_LogicalIDEndsWith = null; public String IN_LogicalIDContains = null; public String IN_LogicalIDLike = null; public ArrayList IN_LogicalIDBetween = null; public ArrayList IN_LogicalIDIn = null; public String ShipmentNo = null; public String ShipmentNoStartsWith = null; public String ShipmentNoEndsWith = null; public String ShipmentNoContains = null; public String ShipmentNoLike = null; public ArrayList ShipmentNoBetween = null; public ArrayList ShipmentNoIn = null; public Short Status = null; public Short StatusGreaterThanOrEqualTo = null; public Short StatusGreaterThan = null; public Short StatusLessThan = null; public Short StatusLessThanOrEqualTo = null; public Short StatusNotEqualTo = null; public ArrayList StatusBetween = null; public ArrayList StatusIn = null; public Date ShipInitDate = null; public Date ShipInitDateGreaterThanOrEqualTo = null; public Date ShipInitDateGreaterThan = null; public Date ShipInitDateLessThan = null; public Date ShipInitDateLessThanOrEqualTo = null; public Date ShipInitDateNotEqualTo = null; public ArrayList ShipInitDateBetween = null; public ArrayList ShipInitDateIn = null; public String WayBillNo = null; public String WayBillNoStartsWith = null; public String WayBillNoEndsWith = null; public String WayBillNoContains = null; public String WayBillNoLike = null; public ArrayList WayBillNoBetween = null; public ArrayList WayBillNoIn = null; public String VesselName = null; public String VesselNameStartsWith = null; public String VesselNameEndsWith = null; public String VesselNameContains = null; public String VesselNameLike = null; public ArrayList VesselNameBetween = null; public ArrayList VesselNameIn = null; public String ContainerNo = null; public String ContainerNoStartsWith = null; public String ContainerNoEndsWith = null; public String ContainerNoContains = null; public String ContainerNoLike = null; public ArrayList ContainerNoBetween = null; public ArrayList ContainerNoIn = null; public String ShippingAgent = null; public String ShippingAgentStartsWith = null; public String ShippingAgentEndsWith = null; public String ShippingAgentContains = null; public String ShippingAgentLike = null; public ArrayList ShippingAgentBetween = null; public ArrayList ShippingAgentIn = null; public String DeliveryNotes = null; public String DeliveryNotesStartsWith = null; public String DeliveryNotesEndsWith = null; public String DeliveryNotesContains = null; public String DeliveryNotesLike = null; public ArrayList DeliveryNotesBetween = null; public ArrayList DeliveryNotesIn = null; public Date DepartureDate = null; public Date DepartureDateGreaterThanOrEqualTo = null; public Date DepartureDateGreaterThan = null; public Date DepartureDateLessThan = null; public Date DepartureDateLessThanOrEqualTo = null; public Date DepartureDateNotEqualTo = null; public ArrayList DepartureDateBetween = null; public ArrayList DepartureDateIn = null; public Date ArrivalDate = null; public Date ArrivalDateGreaterThanOrEqualTo = null; public Date ArrivalDateGreaterThan = null; public Date ArrivalDateLessThan = null; public Date ArrivalDateLessThanOrEqualTo = null; public Date ArrivalDateNotEqualTo = null; public ArrayList ArrivalDateBetween = null; public ArrayList ArrivalDateIn = null; public Date ReceiptDate = null; public Date ReceiptDateGreaterThanOrEqualTo = null; public Date ReceiptDateGreaterThan = null; public Date ReceiptDateLessThan = null; public Date ReceiptDateLessThanOrEqualTo = null; public Date ReceiptDateNotEqualTo = null; public ArrayList ReceiptDateBetween = null; public ArrayList ReceiptDateIn = null; public Boolean UseVOTI = null; public String ImportCostClearingAccountID = null; public String ImportCostClearingAccountIDStartsWith = null; public String ImportCostClearingAccountIDEndsWith = null; public String ImportCostClearingAccountIDContains = null; public String ImportCostClearingAccountIDLike = null; public ArrayList ImportCostClearingAccountIDBetween = null; public ArrayList ImportCostClearingAccountIDIn = null; public Date ExpectedArrivalDate = null; public Date ExpectedArrivalDateGreaterThanOrEqualTo = null; public Date ExpectedArrivalDateGreaterThan = null; public Date ExpectedArrivalDateLessThan = null; public Date ExpectedArrivalDateLessThanOrEqualTo = null; public Date ExpectedArrivalDateNotEqualTo = null; public ArrayList ExpectedArrivalDateBetween = null; public ArrayList ExpectedArrivalDateIn = null; public String getShipmentID() { return ShipmentID; } public SH_MainQuery setShipmentID(String value) { this.ShipmentID = value; return this; } public String getShipmentIDStartsWith() { return ShipmentIDStartsWith; } public SH_MainQuery setShipmentIDStartsWith(String value) { this.ShipmentIDStartsWith = value; return this; } public String getShipmentIDEndsWith() { return ShipmentIDEndsWith; } public SH_MainQuery setShipmentIDEndsWith(String value) { this.ShipmentIDEndsWith = value; return this; } public String getShipmentIDContains() { return ShipmentIDContains; } public SH_MainQuery setShipmentIDContains(String value) { this.ShipmentIDContains = value; return this; } public String getShipmentIDLike() { return ShipmentIDLike; } public SH_MainQuery setShipmentIDLike(String value) { this.ShipmentIDLike = value; return this; } public ArrayList getShipmentIDBetween() { return ShipmentIDBetween; } public SH_MainQuery setShipmentIDBetween(ArrayList value) { this.ShipmentIDBetween = value; return this; } public ArrayList getShipmentIDIn() { return ShipmentIDIn; } public SH_MainQuery setShipmentIDIn(ArrayList value) { this.ShipmentIDIn = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public SH_MainQuery setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getLastSavedDateTimeGreaterThanOrEqualTo() { return LastSavedDateTimeGreaterThanOrEqualTo; } public SH_MainQuery setLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.LastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeGreaterThan() { return LastSavedDateTimeGreaterThan; } public SH_MainQuery setLastSavedDateTimeGreaterThan(Date value) { this.LastSavedDateTimeGreaterThan = value; return this; } public Date getLastSavedDateTimeLessThan() { return LastSavedDateTimeLessThan; } public SH_MainQuery setLastSavedDateTimeLessThan(Date value) { this.LastSavedDateTimeLessThan = value; return this; } public Date getLastSavedDateTimeLessThanOrEqualTo() { return LastSavedDateTimeLessThanOrEqualTo; } public SH_MainQuery setLastSavedDateTimeLessThanOrEqualTo(Date value) { this.LastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeNotEqualTo() { return LastSavedDateTimeNotEqualTo; } public SH_MainQuery setLastSavedDateTimeNotEqualTo(Date value) { this.LastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getLastSavedDateTimeBetween() { return LastSavedDateTimeBetween; } public SH_MainQuery setLastSavedDateTimeBetween(ArrayList value) { this.LastSavedDateTimeBetween = value; return this; } public ArrayList getLastSavedDateTimeIn() { return LastSavedDateTimeIn; } public SH_MainQuery setLastSavedDateTimeIn(ArrayList value) { this.LastSavedDateTimeIn = value; return this; } public String getInLogicalID() { return IN_LogicalID; } public SH_MainQuery setInLogicalID(String value) { this.IN_LogicalID = value; return this; } public String getInLogicalIDStartsWith() { return IN_LogicalIDStartsWith; } public SH_MainQuery setInLogicalIDStartsWith(String value) { this.IN_LogicalIDStartsWith = value; return this; } public String getInLogicalIDEndsWith() { return IN_LogicalIDEndsWith; } public SH_MainQuery setInLogicalIDEndsWith(String value) { this.IN_LogicalIDEndsWith = value; return this; } public String getInLogicalIDContains() { return IN_LogicalIDContains; } public SH_MainQuery setInLogicalIDContains(String value) { this.IN_LogicalIDContains = value; return this; } public String getInLogicalIDLike() { return IN_LogicalIDLike; } public SH_MainQuery setInLogicalIDLike(String value) { this.IN_LogicalIDLike = value; return this; } public ArrayList getInLogicalIDBetween() { return IN_LogicalIDBetween; } public SH_MainQuery setInLogicalIDBetween(ArrayList value) { this.IN_LogicalIDBetween = value; return this; } public ArrayList getInLogicalIDIn() { return IN_LogicalIDIn; } public SH_MainQuery setInLogicalIDIn(ArrayList value) { this.IN_LogicalIDIn = value; return this; } public String getShipmentNo() { return ShipmentNo; } public SH_MainQuery setShipmentNo(String value) { this.ShipmentNo = value; return this; } public String getShipmentNoStartsWith() { return ShipmentNoStartsWith; } public SH_MainQuery setShipmentNoStartsWith(String value) { this.ShipmentNoStartsWith = value; return this; } public String getShipmentNoEndsWith() { return ShipmentNoEndsWith; } public SH_MainQuery setShipmentNoEndsWith(String value) { this.ShipmentNoEndsWith = value; return this; } public String getShipmentNoContains() { return ShipmentNoContains; } public SH_MainQuery setShipmentNoContains(String value) { this.ShipmentNoContains = value; return this; } public String getShipmentNoLike() { return ShipmentNoLike; } public SH_MainQuery setShipmentNoLike(String value) { this.ShipmentNoLike = value; return this; } public ArrayList getShipmentNoBetween() { return ShipmentNoBetween; } public SH_MainQuery setShipmentNoBetween(ArrayList value) { this.ShipmentNoBetween = value; return this; } public ArrayList getShipmentNoIn() { return ShipmentNoIn; } public SH_MainQuery setShipmentNoIn(ArrayList value) { this.ShipmentNoIn = value; return this; } public Short getStatus() { return Status; } public SH_MainQuery setStatus(Short value) { this.Status = value; return this; } public Short getStatusGreaterThanOrEqualTo() { return StatusGreaterThanOrEqualTo; } public SH_MainQuery setStatusGreaterThanOrEqualTo(Short value) { this.StatusGreaterThanOrEqualTo = value; return this; } public Short getStatusGreaterThan() { return StatusGreaterThan; } public SH_MainQuery setStatusGreaterThan(Short value) { this.StatusGreaterThan = value; return this; } public Short getStatusLessThan() { return StatusLessThan; } public SH_MainQuery setStatusLessThan(Short value) { this.StatusLessThan = value; return this; } public Short getStatusLessThanOrEqualTo() { return StatusLessThanOrEqualTo; } public SH_MainQuery setStatusLessThanOrEqualTo(Short value) { this.StatusLessThanOrEqualTo = value; return this; } public Short getStatusNotEqualTo() { return StatusNotEqualTo; } public SH_MainQuery setStatusNotEqualTo(Short value) { this.StatusNotEqualTo = value; return this; } public ArrayList getStatusBetween() { return StatusBetween; } public SH_MainQuery setStatusBetween(ArrayList value) { this.StatusBetween = value; return this; } public ArrayList getStatusIn() { return StatusIn; } public SH_MainQuery setStatusIn(ArrayList value) { this.StatusIn = value; return this; } public Date getShipInitDate() { return ShipInitDate; } public SH_MainQuery setShipInitDate(Date value) { this.ShipInitDate = value; return this; } public Date getShipInitDateGreaterThanOrEqualTo() { return ShipInitDateGreaterThanOrEqualTo; } public SH_MainQuery setShipInitDateGreaterThanOrEqualTo(Date value) { this.ShipInitDateGreaterThanOrEqualTo = value; return this; } public Date getShipInitDateGreaterThan() { return ShipInitDateGreaterThan; } public SH_MainQuery setShipInitDateGreaterThan(Date value) { this.ShipInitDateGreaterThan = value; return this; } public Date getShipInitDateLessThan() { return ShipInitDateLessThan; } public SH_MainQuery setShipInitDateLessThan(Date value) { this.ShipInitDateLessThan = value; return this; } public Date getShipInitDateLessThanOrEqualTo() { return ShipInitDateLessThanOrEqualTo; } public SH_MainQuery setShipInitDateLessThanOrEqualTo(Date value) { this.ShipInitDateLessThanOrEqualTo = value; return this; } public Date getShipInitDateNotEqualTo() { return ShipInitDateNotEqualTo; } public SH_MainQuery setShipInitDateNotEqualTo(Date value) { this.ShipInitDateNotEqualTo = value; return this; } public ArrayList getShipInitDateBetween() { return ShipInitDateBetween; } public SH_MainQuery setShipInitDateBetween(ArrayList value) { this.ShipInitDateBetween = value; return this; } public ArrayList getShipInitDateIn() { return ShipInitDateIn; } public SH_MainQuery setShipInitDateIn(ArrayList value) { this.ShipInitDateIn = value; return this; } public String getWayBillNo() { return WayBillNo; } public SH_MainQuery setWayBillNo(String value) { this.WayBillNo = value; return this; } public String getWayBillNoStartsWith() { return WayBillNoStartsWith; } public SH_MainQuery setWayBillNoStartsWith(String value) { this.WayBillNoStartsWith = value; return this; } public String getWayBillNoEndsWith() { return WayBillNoEndsWith; } public SH_MainQuery setWayBillNoEndsWith(String value) { this.WayBillNoEndsWith = value; return this; } public String getWayBillNoContains() { return WayBillNoContains; } public SH_MainQuery setWayBillNoContains(String value) { this.WayBillNoContains = value; return this; } public String getWayBillNoLike() { return WayBillNoLike; } public SH_MainQuery setWayBillNoLike(String value) { this.WayBillNoLike = value; return this; } public ArrayList getWayBillNoBetween() { return WayBillNoBetween; } public SH_MainQuery setWayBillNoBetween(ArrayList value) { this.WayBillNoBetween = value; return this; } public ArrayList getWayBillNoIn() { return WayBillNoIn; } public SH_MainQuery setWayBillNoIn(ArrayList value) { this.WayBillNoIn = value; return this; } public String getVesselName() { return VesselName; } public SH_MainQuery setVesselName(String value) { this.VesselName = value; return this; } public String getVesselNameStartsWith() { return VesselNameStartsWith; } public SH_MainQuery setVesselNameStartsWith(String value) { this.VesselNameStartsWith = value; return this; } public String getVesselNameEndsWith() { return VesselNameEndsWith; } public SH_MainQuery setVesselNameEndsWith(String value) { this.VesselNameEndsWith = value; return this; } public String getVesselNameContains() { return VesselNameContains; } public SH_MainQuery setVesselNameContains(String value) { this.VesselNameContains = value; return this; } public String getVesselNameLike() { return VesselNameLike; } public SH_MainQuery setVesselNameLike(String value) { this.VesselNameLike = value; return this; } public ArrayList getVesselNameBetween() { return VesselNameBetween; } public SH_MainQuery setVesselNameBetween(ArrayList value) { this.VesselNameBetween = value; return this; } public ArrayList getVesselNameIn() { return VesselNameIn; } public SH_MainQuery setVesselNameIn(ArrayList value) { this.VesselNameIn = value; return this; } public String getContainerNo() { return ContainerNo; } public SH_MainQuery setContainerNo(String value) { this.ContainerNo = value; return this; } public String getContainerNoStartsWith() { return ContainerNoStartsWith; } public SH_MainQuery setContainerNoStartsWith(String value) { this.ContainerNoStartsWith = value; return this; } public String getContainerNoEndsWith() { return ContainerNoEndsWith; } public SH_MainQuery setContainerNoEndsWith(String value) { this.ContainerNoEndsWith = value; return this; } public String getContainerNoContains() { return ContainerNoContains; } public SH_MainQuery setContainerNoContains(String value) { this.ContainerNoContains = value; return this; } public String getContainerNoLike() { return ContainerNoLike; } public SH_MainQuery setContainerNoLike(String value) { this.ContainerNoLike = value; return this; } public ArrayList getContainerNoBetween() { return ContainerNoBetween; } public SH_MainQuery setContainerNoBetween(ArrayList value) { this.ContainerNoBetween = value; return this; } public ArrayList getContainerNoIn() { return ContainerNoIn; } public SH_MainQuery setContainerNoIn(ArrayList value) { this.ContainerNoIn = value; return this; } public String getShippingAgent() { return ShippingAgent; } public SH_MainQuery setShippingAgent(String value) { this.ShippingAgent = value; return this; } public String getShippingAgentStartsWith() { return ShippingAgentStartsWith; } public SH_MainQuery setShippingAgentStartsWith(String value) { this.ShippingAgentStartsWith = value; return this; } public String getShippingAgentEndsWith() { return ShippingAgentEndsWith; } public SH_MainQuery setShippingAgentEndsWith(String value) { this.ShippingAgentEndsWith = value; return this; } public String getShippingAgentContains() { return ShippingAgentContains; } public SH_MainQuery setShippingAgentContains(String value) { this.ShippingAgentContains = value; return this; } public String getShippingAgentLike() { return ShippingAgentLike; } public SH_MainQuery setShippingAgentLike(String value) { this.ShippingAgentLike = value; return this; } public ArrayList getShippingAgentBetween() { return ShippingAgentBetween; } public SH_MainQuery setShippingAgentBetween(ArrayList value) { this.ShippingAgentBetween = value; return this; } public ArrayList getShippingAgentIn() { return ShippingAgentIn; } public SH_MainQuery setShippingAgentIn(ArrayList value) { this.ShippingAgentIn = value; return this; } public String getDeliveryNotes() { return DeliveryNotes; } public SH_MainQuery setDeliveryNotes(String value) { this.DeliveryNotes = value; return this; } public String getDeliveryNotesStartsWith() { return DeliveryNotesStartsWith; } public SH_MainQuery setDeliveryNotesStartsWith(String value) { this.DeliveryNotesStartsWith = value; return this; } public String getDeliveryNotesEndsWith() { return DeliveryNotesEndsWith; } public SH_MainQuery setDeliveryNotesEndsWith(String value) { this.DeliveryNotesEndsWith = value; return this; } public String getDeliveryNotesContains() { return DeliveryNotesContains; } public SH_MainQuery setDeliveryNotesContains(String value) { this.DeliveryNotesContains = value; return this; } public String getDeliveryNotesLike() { return DeliveryNotesLike; } public SH_MainQuery setDeliveryNotesLike(String value) { this.DeliveryNotesLike = value; return this; } public ArrayList getDeliveryNotesBetween() { return DeliveryNotesBetween; } public SH_MainQuery setDeliveryNotesBetween(ArrayList value) { this.DeliveryNotesBetween = value; return this; } public ArrayList getDeliveryNotesIn() { return DeliveryNotesIn; } public SH_MainQuery setDeliveryNotesIn(ArrayList value) { this.DeliveryNotesIn = value; return this; } public Date getDepartureDate() { return DepartureDate; } public SH_MainQuery setDepartureDate(Date value) { this.DepartureDate = value; return this; } public Date getDepartureDateGreaterThanOrEqualTo() { return DepartureDateGreaterThanOrEqualTo; } public SH_MainQuery setDepartureDateGreaterThanOrEqualTo(Date value) { this.DepartureDateGreaterThanOrEqualTo = value; return this; } public Date getDepartureDateGreaterThan() { return DepartureDateGreaterThan; } public SH_MainQuery setDepartureDateGreaterThan(Date value) { this.DepartureDateGreaterThan = value; return this; } public Date getDepartureDateLessThan() { return DepartureDateLessThan; } public SH_MainQuery setDepartureDateLessThan(Date value) { this.DepartureDateLessThan = value; return this; } public Date getDepartureDateLessThanOrEqualTo() { return DepartureDateLessThanOrEqualTo; } public SH_MainQuery setDepartureDateLessThanOrEqualTo(Date value) { this.DepartureDateLessThanOrEqualTo = value; return this; } public Date getDepartureDateNotEqualTo() { return DepartureDateNotEqualTo; } public SH_MainQuery setDepartureDateNotEqualTo(Date value) { this.DepartureDateNotEqualTo = value; return this; } public ArrayList getDepartureDateBetween() { return DepartureDateBetween; } public SH_MainQuery setDepartureDateBetween(ArrayList value) { this.DepartureDateBetween = value; return this; } public ArrayList getDepartureDateIn() { return DepartureDateIn; } public SH_MainQuery setDepartureDateIn(ArrayList value) { this.DepartureDateIn = value; return this; } public Date getArrivalDate() { return ArrivalDate; } public SH_MainQuery setArrivalDate(Date value) { this.ArrivalDate = value; return this; } public Date getArrivalDateGreaterThanOrEqualTo() { return ArrivalDateGreaterThanOrEqualTo; } public SH_MainQuery setArrivalDateGreaterThanOrEqualTo(Date value) { this.ArrivalDateGreaterThanOrEqualTo = value; return this; } public Date getArrivalDateGreaterThan() { return ArrivalDateGreaterThan; } public SH_MainQuery setArrivalDateGreaterThan(Date value) { this.ArrivalDateGreaterThan = value; return this; } public Date getArrivalDateLessThan() { return ArrivalDateLessThan; } public SH_MainQuery setArrivalDateLessThan(Date value) { this.ArrivalDateLessThan = value; return this; } public Date getArrivalDateLessThanOrEqualTo() { return ArrivalDateLessThanOrEqualTo; } public SH_MainQuery setArrivalDateLessThanOrEqualTo(Date value) { this.ArrivalDateLessThanOrEqualTo = value; return this; } public Date getArrivalDateNotEqualTo() { return ArrivalDateNotEqualTo; } public SH_MainQuery setArrivalDateNotEqualTo(Date value) { this.ArrivalDateNotEqualTo = value; return this; } public ArrayList getArrivalDateBetween() { return ArrivalDateBetween; } public SH_MainQuery setArrivalDateBetween(ArrayList value) { this.ArrivalDateBetween = value; return this; } public ArrayList getArrivalDateIn() { return ArrivalDateIn; } public SH_MainQuery setArrivalDateIn(ArrayList value) { this.ArrivalDateIn = value; return this; } public Date getReceiptDate() { return ReceiptDate; } public SH_MainQuery setReceiptDate(Date value) { this.ReceiptDate = value; return this; } public Date getReceiptDateGreaterThanOrEqualTo() { return ReceiptDateGreaterThanOrEqualTo; } public SH_MainQuery setReceiptDateGreaterThanOrEqualTo(Date value) { this.ReceiptDateGreaterThanOrEqualTo = value; return this; } public Date getReceiptDateGreaterThan() { return ReceiptDateGreaterThan; } public SH_MainQuery setReceiptDateGreaterThan(Date value) { this.ReceiptDateGreaterThan = value; return this; } public Date getReceiptDateLessThan() { return ReceiptDateLessThan; } public SH_MainQuery setReceiptDateLessThan(Date value) { this.ReceiptDateLessThan = value; return this; } public Date getReceiptDateLessThanOrEqualTo() { return ReceiptDateLessThanOrEqualTo; } public SH_MainQuery setReceiptDateLessThanOrEqualTo(Date value) { this.ReceiptDateLessThanOrEqualTo = value; return this; } public Date getReceiptDateNotEqualTo() { return ReceiptDateNotEqualTo; } public SH_MainQuery setReceiptDateNotEqualTo(Date value) { this.ReceiptDateNotEqualTo = value; return this; } public ArrayList getReceiptDateBetween() { return ReceiptDateBetween; } public SH_MainQuery setReceiptDateBetween(ArrayList value) { this.ReceiptDateBetween = value; return this; } public ArrayList getReceiptDateIn() { return ReceiptDateIn; } public SH_MainQuery setReceiptDateIn(ArrayList value) { this.ReceiptDateIn = value; return this; } public Boolean isUseVOTI() { return UseVOTI; } public SH_MainQuery setUseVOTI(Boolean value) { this.UseVOTI = value; return this; } public String getImportCostClearingAccountID() { return ImportCostClearingAccountID; } public SH_MainQuery setImportCostClearingAccountID(String value) { this.ImportCostClearingAccountID = value; return this; } public String getImportCostClearingAccountIDStartsWith() { return ImportCostClearingAccountIDStartsWith; } public SH_MainQuery setImportCostClearingAccountIDStartsWith(String value) { this.ImportCostClearingAccountIDStartsWith = value; return this; } public String getImportCostClearingAccountIDEndsWith() { return ImportCostClearingAccountIDEndsWith; } public SH_MainQuery setImportCostClearingAccountIDEndsWith(String value) { this.ImportCostClearingAccountIDEndsWith = value; return this; } public String getImportCostClearingAccountIDContains() { return ImportCostClearingAccountIDContains; } public SH_MainQuery setImportCostClearingAccountIDContains(String value) { this.ImportCostClearingAccountIDContains = value; return this; } public String getImportCostClearingAccountIDLike() { return ImportCostClearingAccountIDLike; } public SH_MainQuery setImportCostClearingAccountIDLike(String value) { this.ImportCostClearingAccountIDLike = value; return this; } public ArrayList getImportCostClearingAccountIDBetween() { return ImportCostClearingAccountIDBetween; } public SH_MainQuery setImportCostClearingAccountIDBetween(ArrayList value) { this.ImportCostClearingAccountIDBetween = value; return this; } public ArrayList getImportCostClearingAccountIDIn() { return ImportCostClearingAccountIDIn; } public SH_MainQuery setImportCostClearingAccountIDIn(ArrayList value) { this.ImportCostClearingAccountIDIn = value; return this; } public Date getExpectedArrivalDate() { return ExpectedArrivalDate; } public SH_MainQuery setExpectedArrivalDate(Date value) { this.ExpectedArrivalDate = value; return this; } public Date getExpectedArrivalDateGreaterThanOrEqualTo() { return ExpectedArrivalDateGreaterThanOrEqualTo; } public SH_MainQuery setExpectedArrivalDateGreaterThanOrEqualTo(Date value) { this.ExpectedArrivalDateGreaterThanOrEqualTo = value; return this; } public Date getExpectedArrivalDateGreaterThan() { return ExpectedArrivalDateGreaterThan; } public SH_MainQuery setExpectedArrivalDateGreaterThan(Date value) { this.ExpectedArrivalDateGreaterThan = value; return this; } public Date getExpectedArrivalDateLessThan() { return ExpectedArrivalDateLessThan; } public SH_MainQuery setExpectedArrivalDateLessThan(Date value) { this.ExpectedArrivalDateLessThan = value; return this; } public Date getExpectedArrivalDateLessThanOrEqualTo() { return ExpectedArrivalDateLessThanOrEqualTo; } public SH_MainQuery setExpectedArrivalDateLessThanOrEqualTo(Date value) { this.ExpectedArrivalDateLessThanOrEqualTo = value; return this; } public Date getExpectedArrivalDateNotEqualTo() { return ExpectedArrivalDateNotEqualTo; } public SH_MainQuery setExpectedArrivalDateNotEqualTo(Date value) { this.ExpectedArrivalDateNotEqualTo = value; return this; } public ArrayList getExpectedArrivalDateBetween() { return ExpectedArrivalDateBetween; } public SH_MainQuery setExpectedArrivalDateBetween(ArrayList value) { this.ExpectedArrivalDateBetween = value; return this; } public ArrayList getExpectedArrivalDateIn() { return ExpectedArrivalDateIn; } public SH_MainQuery setExpectedArrivalDateIn(ArrayList value) { this.ExpectedArrivalDateIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class SH_PurchaseOrdersQuery extends QueryDb implements IReturn> { public String RecID = null; public String RecIDStartsWith = null; public String RecIDEndsWith = null; public String RecIDContains = null; public String RecIDLike = null; public ArrayList RecIDBetween = null; public ArrayList RecIDIn = null; public String SH_Main_RecID = null; public String SH_Main_RecIDStartsWith = null; public String SH_Main_RecIDEndsWith = null; public String SH_Main_RecIDContains = null; public String SH_Main_RecIDLike = null; public ArrayList SH_Main_RecIDBetween = null; public ArrayList SH_Main_RecIDIn = null; public String PO_Main_RecID = null; public String PO_Main_RecIDStartsWith = null; public String PO_Main_RecIDEndsWith = null; public String PO_Main_RecIDContains = null; public String PO_Main_RecIDLike = null; public ArrayList PO_Main_RecIDBetween = null; public ArrayList PO_Main_RecIDIn = null; public Boolean DisplayLines = null; public BigDecimal FXRate = null; public BigDecimal FXRateGreaterThanOrEqualTo = null; public BigDecimal FXRateGreaterThan = null; public BigDecimal FXRateLessThan = null; public BigDecimal FXRateLessThanOrEqualTo = null; public BigDecimal FXRateNotEqualTo = null; public ArrayList FXRateBetween = null; public ArrayList FXRateIn = null; public String UserField1 = null; public String UserField1StartsWith = null; public String UserField1EndsWith = null; public String UserField1Contains = null; public String UserField1Like = null; public ArrayList UserField1Between = null; public ArrayList UserField1In = null; public String UserField2 = null; public String UserField2StartsWith = null; public String UserField2EndsWith = null; public String UserField2Contains = null; public String UserField2Like = null; public ArrayList UserField2Between = null; public ArrayList UserField2In = null; public String UserField3 = null; public String UserField3StartsWith = null; public String UserField3EndsWith = null; public String UserField3Contains = null; public String UserField3Like = null; public ArrayList UserField3Between = null; public ArrayList UserField3In = null; public String UserField4 = null; public String UserField4StartsWith = null; public String UserField4EndsWith = null; public String UserField4Contains = null; public String UserField4Like = null; public ArrayList UserField4Between = null; public ArrayList UserField4In = null; public String UserField5 = null; public String UserField5StartsWith = null; public String UserField5EndsWith = null; public String UserField5Contains = null; public String UserField5Like = null; public ArrayList UserField5Between = null; public ArrayList UserField5In = null; public String UserField6 = null; public String UserField6StartsWith = null; public String UserField6EndsWith = null; public String UserField6Contains = null; public String UserField6Like = null; public ArrayList UserField6Between = null; public ArrayList UserField6In = null; public String UserField7 = null; public String UserField7StartsWith = null; public String UserField7EndsWith = null; public String UserField7Contains = null; public String UserField7Like = null; public ArrayList UserField7Between = null; public ArrayList UserField7In = null; public String UserField8 = null; public String UserField8StartsWith = null; public String UserField8EndsWith = null; public String UserField8Contains = null; public String UserField8Like = null; public ArrayList UserField8Between = null; public ArrayList UserField8In = null; public String UserField9 = null; public String UserField9StartsWith = null; public String UserField9EndsWith = null; public String UserField9Contains = null; public String UserField9Like = null; public ArrayList UserField9Between = null; public ArrayList UserField9In = null; public String UserField10 = null; public String UserField10StartsWith = null; public String UserField10EndsWith = null; public String UserField10Contains = null; public String UserField10Like = null; public ArrayList UserField10Between = null; public ArrayList UserField10In = null; public Integer ItemNo = null; public Integer ItemNoGreaterThanOrEqualTo = null; public Integer ItemNoGreaterThan = null; public Integer ItemNoLessThan = null; public Integer ItemNoLessThanOrEqualTo = null; public Integer ItemNoNotEqualTo = null; public ArrayList ItemNoBetween = null; public ArrayList ItemNoIn = null; public ArrayList RowHash = null; public String getRecID() { return RecID; } public SH_PurchaseOrdersQuery setRecID(String value) { this.RecID = value; return this; } public String getRecIDStartsWith() { return RecIDStartsWith; } public SH_PurchaseOrdersQuery setRecIDStartsWith(String value) { this.RecIDStartsWith = value; return this; } public String getRecIDEndsWith() { return RecIDEndsWith; } public SH_PurchaseOrdersQuery setRecIDEndsWith(String value) { this.RecIDEndsWith = value; return this; } public String getRecIDContains() { return RecIDContains; } public SH_PurchaseOrdersQuery setRecIDContains(String value) { this.RecIDContains = value; return this; } public String getRecIDLike() { return RecIDLike; } public SH_PurchaseOrdersQuery setRecIDLike(String value) { this.RecIDLike = value; return this; } public ArrayList getRecIDBetween() { return RecIDBetween; } public SH_PurchaseOrdersQuery setRecIDBetween(ArrayList value) { this.RecIDBetween = value; return this; } public ArrayList getRecIDIn() { return RecIDIn; } public SH_PurchaseOrdersQuery setRecIDIn(ArrayList value) { this.RecIDIn = value; return this; } public String getShMainRecID() { return SH_Main_RecID; } public SH_PurchaseOrdersQuery setShMainRecID(String value) { this.SH_Main_RecID = value; return this; } public String getShMainRecIDStartsWith() { return SH_Main_RecIDStartsWith; } public SH_PurchaseOrdersQuery setShMainRecIDStartsWith(String value) { this.SH_Main_RecIDStartsWith = value; return this; } public String getShMainRecIDEndsWith() { return SH_Main_RecIDEndsWith; } public SH_PurchaseOrdersQuery setShMainRecIDEndsWith(String value) { this.SH_Main_RecIDEndsWith = value; return this; } public String getShMainRecIDContains() { return SH_Main_RecIDContains; } public SH_PurchaseOrdersQuery setShMainRecIDContains(String value) { this.SH_Main_RecIDContains = value; return this; } public String getShMainRecIDLike() { return SH_Main_RecIDLike; } public SH_PurchaseOrdersQuery setShMainRecIDLike(String value) { this.SH_Main_RecIDLike = value; return this; } public ArrayList getShMainRecIDBetween() { return SH_Main_RecIDBetween; } public SH_PurchaseOrdersQuery setShMainRecIDBetween(ArrayList value) { this.SH_Main_RecIDBetween = value; return this; } public ArrayList getShMainRecIDIn() { return SH_Main_RecIDIn; } public SH_PurchaseOrdersQuery setShMainRecIDIn(ArrayList value) { this.SH_Main_RecIDIn = value; return this; } public String getPoMainRecID() { return PO_Main_RecID; } public SH_PurchaseOrdersQuery setPoMainRecID(String value) { this.PO_Main_RecID = value; return this; } public String getPoMainRecIDStartsWith() { return PO_Main_RecIDStartsWith; } public SH_PurchaseOrdersQuery setPoMainRecIDStartsWith(String value) { this.PO_Main_RecIDStartsWith = value; return this; } public String getPoMainRecIDEndsWith() { return PO_Main_RecIDEndsWith; } public SH_PurchaseOrdersQuery setPoMainRecIDEndsWith(String value) { this.PO_Main_RecIDEndsWith = value; return this; } public String getPoMainRecIDContains() { return PO_Main_RecIDContains; } public SH_PurchaseOrdersQuery setPoMainRecIDContains(String value) { this.PO_Main_RecIDContains = value; return this; } public String getPoMainRecIDLike() { return PO_Main_RecIDLike; } public SH_PurchaseOrdersQuery setPoMainRecIDLike(String value) { this.PO_Main_RecIDLike = value; return this; } public ArrayList getPoMainRecIDBetween() { return PO_Main_RecIDBetween; } public SH_PurchaseOrdersQuery setPoMainRecIDBetween(ArrayList value) { this.PO_Main_RecIDBetween = value; return this; } public ArrayList getPoMainRecIDIn() { return PO_Main_RecIDIn; } public SH_PurchaseOrdersQuery setPoMainRecIDIn(ArrayList value) { this.PO_Main_RecIDIn = value; return this; } public Boolean isDisplayLines() { return DisplayLines; } public SH_PurchaseOrdersQuery setDisplayLines(Boolean value) { this.DisplayLines = value; return this; } public BigDecimal getFxRate() { return FXRate; } public SH_PurchaseOrdersQuery setFxRate(BigDecimal value) { this.FXRate = value; return this; } public BigDecimal getFxRateGreaterThanOrEqualTo() { return FXRateGreaterThanOrEqualTo; } public SH_PurchaseOrdersQuery setFxRateGreaterThanOrEqualTo(BigDecimal value) { this.FXRateGreaterThanOrEqualTo = value; return this; } public BigDecimal getFxRateGreaterThan() { return FXRateGreaterThan; } public SH_PurchaseOrdersQuery setFxRateGreaterThan(BigDecimal value) { this.FXRateGreaterThan = value; return this; } public BigDecimal getFxRateLessThan() { return FXRateLessThan; } public SH_PurchaseOrdersQuery setFxRateLessThan(BigDecimal value) { this.FXRateLessThan = value; return this; } public BigDecimal getFxRateLessThanOrEqualTo() { return FXRateLessThanOrEqualTo; } public SH_PurchaseOrdersQuery setFxRateLessThanOrEqualTo(BigDecimal value) { this.FXRateLessThanOrEqualTo = value; return this; } public BigDecimal getFxRateNotEqualTo() { return FXRateNotEqualTo; } public SH_PurchaseOrdersQuery setFxRateNotEqualTo(BigDecimal value) { this.FXRateNotEqualTo = value; return this; } public ArrayList getFxRateBetween() { return FXRateBetween; } public SH_PurchaseOrdersQuery setFxRateBetween(ArrayList value) { this.FXRateBetween = value; return this; } public ArrayList getFxRateIn() { return FXRateIn; } public SH_PurchaseOrdersQuery setFxRateIn(ArrayList value) { this.FXRateIn = value; return this; } public String getUserField1() { return UserField1; } public SH_PurchaseOrdersQuery setUserField1(String value) { this.UserField1 = value; return this; } public String getUserField1StartsWith() { return UserField1StartsWith; } public SH_PurchaseOrdersQuery setUserField1StartsWith(String value) { this.UserField1StartsWith = value; return this; } public String getUserField1EndsWith() { return UserField1EndsWith; } public SH_PurchaseOrdersQuery setUserField1EndsWith(String value) { this.UserField1EndsWith = value; return this; } public String getUserField1Contains() { return UserField1Contains; } public SH_PurchaseOrdersQuery setUserField1Contains(String value) { this.UserField1Contains = value; return this; } public String getUserField1Like() { return UserField1Like; } public SH_PurchaseOrdersQuery setUserField1Like(String value) { this.UserField1Like = value; return this; } public ArrayList getUserField1Between() { return UserField1Between; } public SH_PurchaseOrdersQuery setUserField1Between(ArrayList value) { this.UserField1Between = value; return this; } public ArrayList getUserField1In() { return UserField1In; } public SH_PurchaseOrdersQuery setUserField1In(ArrayList value) { this.UserField1In = value; return this; } public String getUserField2() { return UserField2; } public SH_PurchaseOrdersQuery setUserField2(String value) { this.UserField2 = value; return this; } public String getUserField2StartsWith() { return UserField2StartsWith; } public SH_PurchaseOrdersQuery setUserField2StartsWith(String value) { this.UserField2StartsWith = value; return this; } public String getUserField2EndsWith() { return UserField2EndsWith; } public SH_PurchaseOrdersQuery setUserField2EndsWith(String value) { this.UserField2EndsWith = value; return this; } public String getUserField2Contains() { return UserField2Contains; } public SH_PurchaseOrdersQuery setUserField2Contains(String value) { this.UserField2Contains = value; return this; } public String getUserField2Like() { return UserField2Like; } public SH_PurchaseOrdersQuery setUserField2Like(String value) { this.UserField2Like = value; return this; } public ArrayList getUserField2Between() { return UserField2Between; } public SH_PurchaseOrdersQuery setUserField2Between(ArrayList value) { this.UserField2Between = value; return this; } public ArrayList getUserField2In() { return UserField2In; } public SH_PurchaseOrdersQuery setUserField2In(ArrayList value) { this.UserField2In = value; return this; } public String getUserField3() { return UserField3; } public SH_PurchaseOrdersQuery setUserField3(String value) { this.UserField3 = value; return this; } public String getUserField3StartsWith() { return UserField3StartsWith; } public SH_PurchaseOrdersQuery setUserField3StartsWith(String value) { this.UserField3StartsWith = value; return this; } public String getUserField3EndsWith() { return UserField3EndsWith; } public SH_PurchaseOrdersQuery setUserField3EndsWith(String value) { this.UserField3EndsWith = value; return this; } public String getUserField3Contains() { return UserField3Contains; } public SH_PurchaseOrdersQuery setUserField3Contains(String value) { this.UserField3Contains = value; return this; } public String getUserField3Like() { return UserField3Like; } public SH_PurchaseOrdersQuery setUserField3Like(String value) { this.UserField3Like = value; return this; } public ArrayList getUserField3Between() { return UserField3Between; } public SH_PurchaseOrdersQuery setUserField3Between(ArrayList value) { this.UserField3Between = value; return this; } public ArrayList getUserField3In() { return UserField3In; } public SH_PurchaseOrdersQuery setUserField3In(ArrayList value) { this.UserField3In = value; return this; } public String getUserField4() { return UserField4; } public SH_PurchaseOrdersQuery setUserField4(String value) { this.UserField4 = value; return this; } public String getUserField4StartsWith() { return UserField4StartsWith; } public SH_PurchaseOrdersQuery setUserField4StartsWith(String value) { this.UserField4StartsWith = value; return this; } public String getUserField4EndsWith() { return UserField4EndsWith; } public SH_PurchaseOrdersQuery setUserField4EndsWith(String value) { this.UserField4EndsWith = value; return this; } public String getUserField4Contains() { return UserField4Contains; } public SH_PurchaseOrdersQuery setUserField4Contains(String value) { this.UserField4Contains = value; return this; } public String getUserField4Like() { return UserField4Like; } public SH_PurchaseOrdersQuery setUserField4Like(String value) { this.UserField4Like = value; return this; } public ArrayList getUserField4Between() { return UserField4Between; } public SH_PurchaseOrdersQuery setUserField4Between(ArrayList value) { this.UserField4Between = value; return this; } public ArrayList getUserField4In() { return UserField4In; } public SH_PurchaseOrdersQuery setUserField4In(ArrayList value) { this.UserField4In = value; return this; } public String getUserField5() { return UserField5; } public SH_PurchaseOrdersQuery setUserField5(String value) { this.UserField5 = value; return this; } public String getUserField5StartsWith() { return UserField5StartsWith; } public SH_PurchaseOrdersQuery setUserField5StartsWith(String value) { this.UserField5StartsWith = value; return this; } public String getUserField5EndsWith() { return UserField5EndsWith; } public SH_PurchaseOrdersQuery setUserField5EndsWith(String value) { this.UserField5EndsWith = value; return this; } public String getUserField5Contains() { return UserField5Contains; } public SH_PurchaseOrdersQuery setUserField5Contains(String value) { this.UserField5Contains = value; return this; } public String getUserField5Like() { return UserField5Like; } public SH_PurchaseOrdersQuery setUserField5Like(String value) { this.UserField5Like = value; return this; } public ArrayList getUserField5Between() { return UserField5Between; } public SH_PurchaseOrdersQuery setUserField5Between(ArrayList value) { this.UserField5Between = value; return this; } public ArrayList getUserField5In() { return UserField5In; } public SH_PurchaseOrdersQuery setUserField5In(ArrayList value) { this.UserField5In = value; return this; } public String getUserField6() { return UserField6; } public SH_PurchaseOrdersQuery setUserField6(String value) { this.UserField6 = value; return this; } public String getUserField6StartsWith() { return UserField6StartsWith; } public SH_PurchaseOrdersQuery setUserField6StartsWith(String value) { this.UserField6StartsWith = value; return this; } public String getUserField6EndsWith() { return UserField6EndsWith; } public SH_PurchaseOrdersQuery setUserField6EndsWith(String value) { this.UserField6EndsWith = value; return this; } public String getUserField6Contains() { return UserField6Contains; } public SH_PurchaseOrdersQuery setUserField6Contains(String value) { this.UserField6Contains = value; return this; } public String getUserField6Like() { return UserField6Like; } public SH_PurchaseOrdersQuery setUserField6Like(String value) { this.UserField6Like = value; return this; } public ArrayList getUserField6Between() { return UserField6Between; } public SH_PurchaseOrdersQuery setUserField6Between(ArrayList value) { this.UserField6Between = value; return this; } public ArrayList getUserField6In() { return UserField6In; } public SH_PurchaseOrdersQuery setUserField6In(ArrayList value) { this.UserField6In = value; return this; } public String getUserField7() { return UserField7; } public SH_PurchaseOrdersQuery setUserField7(String value) { this.UserField7 = value; return this; } public String getUserField7StartsWith() { return UserField7StartsWith; } public SH_PurchaseOrdersQuery setUserField7StartsWith(String value) { this.UserField7StartsWith = value; return this; } public String getUserField7EndsWith() { return UserField7EndsWith; } public SH_PurchaseOrdersQuery setUserField7EndsWith(String value) { this.UserField7EndsWith = value; return this; } public String getUserField7Contains() { return UserField7Contains; } public SH_PurchaseOrdersQuery setUserField7Contains(String value) { this.UserField7Contains = value; return this; } public String getUserField7Like() { return UserField7Like; } public SH_PurchaseOrdersQuery setUserField7Like(String value) { this.UserField7Like = value; return this; } public ArrayList getUserField7Between() { return UserField7Between; } public SH_PurchaseOrdersQuery setUserField7Between(ArrayList value) { this.UserField7Between = value; return this; } public ArrayList getUserField7In() { return UserField7In; } public SH_PurchaseOrdersQuery setUserField7In(ArrayList value) { this.UserField7In = value; return this; } public String getUserField8() { return UserField8; } public SH_PurchaseOrdersQuery setUserField8(String value) { this.UserField8 = value; return this; } public String getUserField8StartsWith() { return UserField8StartsWith; } public SH_PurchaseOrdersQuery setUserField8StartsWith(String value) { this.UserField8StartsWith = value; return this; } public String getUserField8EndsWith() { return UserField8EndsWith; } public SH_PurchaseOrdersQuery setUserField8EndsWith(String value) { this.UserField8EndsWith = value; return this; } public String getUserField8Contains() { return UserField8Contains; } public SH_PurchaseOrdersQuery setUserField8Contains(String value) { this.UserField8Contains = value; return this; } public String getUserField8Like() { return UserField8Like; } public SH_PurchaseOrdersQuery setUserField8Like(String value) { this.UserField8Like = value; return this; } public ArrayList getUserField8Between() { return UserField8Between; } public SH_PurchaseOrdersQuery setUserField8Between(ArrayList value) { this.UserField8Between = value; return this; } public ArrayList getUserField8In() { return UserField8In; } public SH_PurchaseOrdersQuery setUserField8In(ArrayList value) { this.UserField8In = value; return this; } public String getUserField9() { return UserField9; } public SH_PurchaseOrdersQuery setUserField9(String value) { this.UserField9 = value; return this; } public String getUserField9StartsWith() { return UserField9StartsWith; } public SH_PurchaseOrdersQuery setUserField9StartsWith(String value) { this.UserField9StartsWith = value; return this; } public String getUserField9EndsWith() { return UserField9EndsWith; } public SH_PurchaseOrdersQuery setUserField9EndsWith(String value) { this.UserField9EndsWith = value; return this; } public String getUserField9Contains() { return UserField9Contains; } public SH_PurchaseOrdersQuery setUserField9Contains(String value) { this.UserField9Contains = value; return this; } public String getUserField9Like() { return UserField9Like; } public SH_PurchaseOrdersQuery setUserField9Like(String value) { this.UserField9Like = value; return this; } public ArrayList getUserField9Between() { return UserField9Between; } public SH_PurchaseOrdersQuery setUserField9Between(ArrayList value) { this.UserField9Between = value; return this; } public ArrayList getUserField9In() { return UserField9In; } public SH_PurchaseOrdersQuery setUserField9In(ArrayList value) { this.UserField9In = value; return this; } public String getUserField10() { return UserField10; } public SH_PurchaseOrdersQuery setUserField10(String value) { this.UserField10 = value; return this; } public String getUserField10StartsWith() { return UserField10StartsWith; } public SH_PurchaseOrdersQuery setUserField10StartsWith(String value) { this.UserField10StartsWith = value; return this; } public String getUserField10EndsWith() { return UserField10EndsWith; } public SH_PurchaseOrdersQuery setUserField10EndsWith(String value) { this.UserField10EndsWith = value; return this; } public String getUserField10Contains() { return UserField10Contains; } public SH_PurchaseOrdersQuery setUserField10Contains(String value) { this.UserField10Contains = value; return this; } public String getUserField10Like() { return UserField10Like; } public SH_PurchaseOrdersQuery setUserField10Like(String value) { this.UserField10Like = value; return this; } public ArrayList getUserField10Between() { return UserField10Between; } public SH_PurchaseOrdersQuery setUserField10Between(ArrayList value) { this.UserField10Between = value; return this; } public ArrayList getUserField10In() { return UserField10In; } public SH_PurchaseOrdersQuery setUserField10In(ArrayList value) { this.UserField10In = value; return this; } public Integer getItemNo() { return ItemNo; } public SH_PurchaseOrdersQuery setItemNo(Integer value) { this.ItemNo = value; return this; } public Integer getItemNoGreaterThanOrEqualTo() { return ItemNoGreaterThanOrEqualTo; } public SH_PurchaseOrdersQuery setItemNoGreaterThanOrEqualTo(Integer value) { this.ItemNoGreaterThanOrEqualTo = value; return this; } public Integer getItemNoGreaterThan() { return ItemNoGreaterThan; } public SH_PurchaseOrdersQuery setItemNoGreaterThan(Integer value) { this.ItemNoGreaterThan = value; return this; } public Integer getItemNoLessThan() { return ItemNoLessThan; } public SH_PurchaseOrdersQuery setItemNoLessThan(Integer value) { this.ItemNoLessThan = value; return this; } public Integer getItemNoLessThanOrEqualTo() { return ItemNoLessThanOrEqualTo; } public SH_PurchaseOrdersQuery setItemNoLessThanOrEqualTo(Integer value) { this.ItemNoLessThanOrEqualTo = value; return this; } public Integer getItemNoNotEqualTo() { return ItemNoNotEqualTo; } public SH_PurchaseOrdersQuery setItemNoNotEqualTo(Integer value) { this.ItemNoNotEqualTo = value; return this; } public ArrayList getItemNoBetween() { return ItemNoBetween; } public SH_PurchaseOrdersQuery setItemNoBetween(ArrayList value) { this.ItemNoBetween = value; return this; } public ArrayList getItemNoIn() { return ItemNoIn; } public SH_PurchaseOrdersQuery setItemNoIn(ArrayList value) { this.ItemNoIn = value; return this; } public ArrayList getRowHash() { return RowHash; } public SH_PurchaseOrdersQuery setRowHash(ArrayList value) { this.RowHash = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class SH_VotiQuery extends QueryDb implements IReturn> { public String VotiID = null; public String VotiIDStartsWith = null; public String VotiIDEndsWith = null; public String VotiIDContains = null; public String VotiIDLike = null; public ArrayList VotiIDBetween = null; public ArrayList VotiIDIn = null; public String ShipmentID = null; public String ShipmentIDStartsWith = null; public String ShipmentIDEndsWith = null; public String ShipmentIDContains = null; public String ShipmentIDLike = null; public ArrayList ShipmentIDBetween = null; public ArrayList ShipmentIDIn = null; public String CreditorID = null; public String CreditorIDStartsWith = null; public String CreditorIDEndsWith = null; public String CreditorIDContains = null; public String CreditorIDLike = null; public ArrayList CreditorIDBetween = null; public ArrayList CreditorIDIn = null; public String CreditorLedgerID = null; public String CreditorLedgerIDStartsWith = null; public String CreditorLedgerIDEndsWith = null; public String CreditorLedgerIDContains = null; public String CreditorLedgerIDLike = null; public ArrayList CreditorLedgerIDBetween = null; public ArrayList CreditorLedgerIDIn = null; public String GSTID = null; public String GSTIDStartsWith = null; public String GSTIDEndsWith = null; public String GSTIDContains = null; public String GSTIDLike = null; public ArrayList GSTIDBetween = null; public ArrayList GSTIDIn = null; public String LedgerID = null; public String LedgerIDStartsWith = null; public String LedgerIDEndsWith = null; public String LedgerIDContains = null; public String LedgerIDLike = null; public ArrayList LedgerIDBetween = null; public ArrayList LedgerIDIn = null; public String Description = null; public String DescriptionStartsWith = null; public String DescriptionEndsWith = null; public String DescriptionContains = null; public String DescriptionLike = null; public ArrayList DescriptionBetween = null; public ArrayList DescriptionIn = null; public String InvoiceNo = null; public String InvoiceNoStartsWith = null; public String InvoiceNoEndsWith = null; public String InvoiceNoContains = null; public String InvoiceNoLike = null; public ArrayList InvoiceNoBetween = null; public ArrayList InvoiceNoIn = null; public String Reference = null; public String ReferenceStartsWith = null; public String ReferenceEndsWith = null; public String ReferenceContains = null; public String ReferenceLike = null; public ArrayList ReferenceBetween = null; public ArrayList ReferenceIn = null; public BigDecimal Amount = null; public BigDecimal AmountGreaterThanOrEqualTo = null; public BigDecimal AmountGreaterThan = null; public BigDecimal AmountLessThan = null; public BigDecimal AmountLessThanOrEqualTo = null; public BigDecimal AmountNotEqualTo = null; public ArrayList AmountBetween = null; public ArrayList AmountIn = null; public BigDecimal GSTAmount = null; public BigDecimal GSTAmountGreaterThanOrEqualTo = null; public BigDecimal GSTAmountGreaterThan = null; public BigDecimal GSTAmountLessThan = null; public BigDecimal GSTAmountLessThanOrEqualTo = null; public BigDecimal GSTAmountNotEqualTo = null; public ArrayList GSTAmountBetween = null; public ArrayList GSTAmountIn = null; public Date DueDate = null; public Date DueDateGreaterThanOrEqualTo = null; public Date DueDateGreaterThan = null; public Date DueDateLessThan = null; public Date DueDateLessThanOrEqualTo = null; public Date DueDateNotEqualTo = null; public ArrayList DueDateBetween = null; public ArrayList DueDateIn = null; public Boolean Invoiced = null; public String CR_TransID = null; public String CR_TransIDStartsWith = null; public String CR_TransIDEndsWith = null; public String CR_TransIDContains = null; public String CR_TransIDLike = null; public ArrayList CR_TransIDBetween = null; public ArrayList CR_TransIDIn = null; public String UserField1 = null; public String UserField1StartsWith = null; public String UserField1EndsWith = null; public String UserField1Contains = null; public String UserField1Like = null; public ArrayList UserField1Between = null; public ArrayList UserField1In = null; public String UserField2 = null; public String UserField2StartsWith = null; public String UserField2EndsWith = null; public String UserField2Contains = null; public String UserField2Like = null; public ArrayList UserField2Between = null; public ArrayList UserField2In = null; public String UserField3 = null; public String UserField3StartsWith = null; public String UserField3EndsWith = null; public String UserField3Contains = null; public String UserField3Like = null; public ArrayList UserField3Between = null; public ArrayList UserField3In = null; public String UserField4 = null; public String UserField4StartsWith = null; public String UserField4EndsWith = null; public String UserField4Contains = null; public String UserField4Like = null; public ArrayList UserField4Between = null; public ArrayList UserField4In = null; public String UserField5 = null; public String UserField5StartsWith = null; public String UserField5EndsWith = null; public String UserField5Contains = null; public String UserField5Like = null; public ArrayList UserField5Between = null; public ArrayList UserField5In = null; public String UserField6 = null; public String UserField6StartsWith = null; public String UserField6EndsWith = null; public String UserField6Contains = null; public String UserField6Like = null; public ArrayList UserField6Between = null; public ArrayList UserField6In = null; public String UserField7 = null; public String UserField7StartsWith = null; public String UserField7EndsWith = null; public String UserField7Contains = null; public String UserField7Like = null; public ArrayList UserField7Between = null; public ArrayList UserField7In = null; public String UserField8 = null; public String UserField8StartsWith = null; public String UserField8EndsWith = null; public String UserField8Contains = null; public String UserField8Like = null; public ArrayList UserField8Between = null; public ArrayList UserField8In = null; public String UserField9 = null; public String UserField9StartsWith = null; public String UserField9EndsWith = null; public String UserField9Contains = null; public String UserField9Like = null; public ArrayList UserField9Between = null; public ArrayList UserField9In = null; public String UserField10 = null; public String UserField10StartsWith = null; public String UserField10EndsWith = null; public String UserField10Contains = null; public String UserField10Like = null; public ArrayList UserField10Between = null; public ArrayList UserField10In = null; public Integer DecimalPlaces = null; public Integer DecimalPlacesGreaterThanOrEqualTo = null; public Integer DecimalPlacesGreaterThan = null; public Integer DecimalPlacesLessThan = null; public Integer DecimalPlacesLessThanOrEqualTo = null; public Integer DecimalPlacesNotEqualTo = null; public ArrayList DecimalPlacesBetween = null; public ArrayList DecimalPlacesIn = null; public Date InvoiceDate = null; public Date InvoiceDateGreaterThanOrEqualTo = null; public Date InvoiceDateGreaterThan = null; public Date InvoiceDateLessThan = null; public Date InvoiceDateLessThanOrEqualTo = null; public Date InvoiceDateNotEqualTo = null; public ArrayList InvoiceDateBetween = null; public ArrayList InvoiceDateIn = null; public ArrayList RowHash = null; public Integer ItemNo = null; public Integer ItemNoGreaterThanOrEqualTo = null; public Integer ItemNoGreaterThan = null; public Integer ItemNoLessThan = null; public Integer ItemNoLessThanOrEqualTo = null; public Integer ItemNoNotEqualTo = null; public ArrayList ItemNoBetween = null; public ArrayList ItemNoIn = null; public String getVotiID() { return VotiID; } public SH_VotiQuery setVotiID(String value) { this.VotiID = value; return this; } public String getVotiIDStartsWith() { return VotiIDStartsWith; } public SH_VotiQuery setVotiIDStartsWith(String value) { this.VotiIDStartsWith = value; return this; } public String getVotiIDEndsWith() { return VotiIDEndsWith; } public SH_VotiQuery setVotiIDEndsWith(String value) { this.VotiIDEndsWith = value; return this; } public String getVotiIDContains() { return VotiIDContains; } public SH_VotiQuery setVotiIDContains(String value) { this.VotiIDContains = value; return this; } public String getVotiIDLike() { return VotiIDLike; } public SH_VotiQuery setVotiIDLike(String value) { this.VotiIDLike = value; return this; } public ArrayList getVotiIDBetween() { return VotiIDBetween; } public SH_VotiQuery setVotiIDBetween(ArrayList value) { this.VotiIDBetween = value; return this; } public ArrayList getVotiIDIn() { return VotiIDIn; } public SH_VotiQuery setVotiIDIn(ArrayList value) { this.VotiIDIn = value; return this; } public String getShipmentID() { return ShipmentID; } public SH_VotiQuery setShipmentID(String value) { this.ShipmentID = value; return this; } public String getShipmentIDStartsWith() { return ShipmentIDStartsWith; } public SH_VotiQuery setShipmentIDStartsWith(String value) { this.ShipmentIDStartsWith = value; return this; } public String getShipmentIDEndsWith() { return ShipmentIDEndsWith; } public SH_VotiQuery setShipmentIDEndsWith(String value) { this.ShipmentIDEndsWith = value; return this; } public String getShipmentIDContains() { return ShipmentIDContains; } public SH_VotiQuery setShipmentIDContains(String value) { this.ShipmentIDContains = value; return this; } public String getShipmentIDLike() { return ShipmentIDLike; } public SH_VotiQuery setShipmentIDLike(String value) { this.ShipmentIDLike = value; return this; } public ArrayList getShipmentIDBetween() { return ShipmentIDBetween; } public SH_VotiQuery setShipmentIDBetween(ArrayList value) { this.ShipmentIDBetween = value; return this; } public ArrayList getShipmentIDIn() { return ShipmentIDIn; } public SH_VotiQuery setShipmentIDIn(ArrayList value) { this.ShipmentIDIn = value; return this; } public String getCreditorID() { return CreditorID; } public SH_VotiQuery setCreditorID(String value) { this.CreditorID = value; return this; } public String getCreditorIDStartsWith() { return CreditorIDStartsWith; } public SH_VotiQuery setCreditorIDStartsWith(String value) { this.CreditorIDStartsWith = value; return this; } public String getCreditorIDEndsWith() { return CreditorIDEndsWith; } public SH_VotiQuery setCreditorIDEndsWith(String value) { this.CreditorIDEndsWith = value; return this; } public String getCreditorIDContains() { return CreditorIDContains; } public SH_VotiQuery setCreditorIDContains(String value) { this.CreditorIDContains = value; return this; } public String getCreditorIDLike() { return CreditorIDLike; } public SH_VotiQuery setCreditorIDLike(String value) { this.CreditorIDLike = value; return this; } public ArrayList getCreditorIDBetween() { return CreditorIDBetween; } public SH_VotiQuery setCreditorIDBetween(ArrayList value) { this.CreditorIDBetween = value; return this; } public ArrayList getCreditorIDIn() { return CreditorIDIn; } public SH_VotiQuery setCreditorIDIn(ArrayList value) { this.CreditorIDIn = value; return this; } public String getCreditorLedgerID() { return CreditorLedgerID; } public SH_VotiQuery setCreditorLedgerID(String value) { this.CreditorLedgerID = value; return this; } public String getCreditorLedgerIDStartsWith() { return CreditorLedgerIDStartsWith; } public SH_VotiQuery setCreditorLedgerIDStartsWith(String value) { this.CreditorLedgerIDStartsWith = value; return this; } public String getCreditorLedgerIDEndsWith() { return CreditorLedgerIDEndsWith; } public SH_VotiQuery setCreditorLedgerIDEndsWith(String value) { this.CreditorLedgerIDEndsWith = value; return this; } public String getCreditorLedgerIDContains() { return CreditorLedgerIDContains; } public SH_VotiQuery setCreditorLedgerIDContains(String value) { this.CreditorLedgerIDContains = value; return this; } public String getCreditorLedgerIDLike() { return CreditorLedgerIDLike; } public SH_VotiQuery setCreditorLedgerIDLike(String value) { this.CreditorLedgerIDLike = value; return this; } public ArrayList getCreditorLedgerIDBetween() { return CreditorLedgerIDBetween; } public SH_VotiQuery setCreditorLedgerIDBetween(ArrayList value) { this.CreditorLedgerIDBetween = value; return this; } public ArrayList getCreditorLedgerIDIn() { return CreditorLedgerIDIn; } public SH_VotiQuery setCreditorLedgerIDIn(ArrayList value) { this.CreditorLedgerIDIn = value; return this; } public String getGstid() { return GSTID; } public SH_VotiQuery setGstid(String value) { this.GSTID = value; return this; } public String getGstidStartsWith() { return GSTIDStartsWith; } public SH_VotiQuery setGstidStartsWith(String value) { this.GSTIDStartsWith = value; return this; } public String getGstidEndsWith() { return GSTIDEndsWith; } public SH_VotiQuery setGstidEndsWith(String value) { this.GSTIDEndsWith = value; return this; } public String getGstidContains() { return GSTIDContains; } public SH_VotiQuery setGstidContains(String value) { this.GSTIDContains = value; return this; } public String getGstidLike() { return GSTIDLike; } public SH_VotiQuery setGstidLike(String value) { this.GSTIDLike = value; return this; } public ArrayList getGstidBetween() { return GSTIDBetween; } public SH_VotiQuery setGstidBetween(ArrayList value) { this.GSTIDBetween = value; return this; } public ArrayList getGstidIn() { return GSTIDIn; } public SH_VotiQuery setGstidIn(ArrayList value) { this.GSTIDIn = value; return this; } public String getLedgerID() { return LedgerID; } public SH_VotiQuery setLedgerID(String value) { this.LedgerID = value; return this; } public String getLedgerIDStartsWith() { return LedgerIDStartsWith; } public SH_VotiQuery setLedgerIDStartsWith(String value) { this.LedgerIDStartsWith = value; return this; } public String getLedgerIDEndsWith() { return LedgerIDEndsWith; } public SH_VotiQuery setLedgerIDEndsWith(String value) { this.LedgerIDEndsWith = value; return this; } public String getLedgerIDContains() { return LedgerIDContains; } public SH_VotiQuery setLedgerIDContains(String value) { this.LedgerIDContains = value; return this; } public String getLedgerIDLike() { return LedgerIDLike; } public SH_VotiQuery setLedgerIDLike(String value) { this.LedgerIDLike = value; return this; } public ArrayList getLedgerIDBetween() { return LedgerIDBetween; } public SH_VotiQuery setLedgerIDBetween(ArrayList value) { this.LedgerIDBetween = value; return this; } public ArrayList getLedgerIDIn() { return LedgerIDIn; } public SH_VotiQuery setLedgerIDIn(ArrayList value) { this.LedgerIDIn = value; return this; } public String getDescription() { return Description; } public SH_VotiQuery setDescription(String value) { this.Description = value; return this; } public String getDescriptionStartsWith() { return DescriptionStartsWith; } public SH_VotiQuery setDescriptionStartsWith(String value) { this.DescriptionStartsWith = value; return this; } public String getDescriptionEndsWith() { return DescriptionEndsWith; } public SH_VotiQuery setDescriptionEndsWith(String value) { this.DescriptionEndsWith = value; return this; } public String getDescriptionContains() { return DescriptionContains; } public SH_VotiQuery setDescriptionContains(String value) { this.DescriptionContains = value; return this; } public String getDescriptionLike() { return DescriptionLike; } public SH_VotiQuery setDescriptionLike(String value) { this.DescriptionLike = value; return this; } public ArrayList getDescriptionBetween() { return DescriptionBetween; } public SH_VotiQuery setDescriptionBetween(ArrayList value) { this.DescriptionBetween = value; return this; } public ArrayList getDescriptionIn() { return DescriptionIn; } public SH_VotiQuery setDescriptionIn(ArrayList value) { this.DescriptionIn = value; return this; } public String getInvoiceNo() { return InvoiceNo; } public SH_VotiQuery setInvoiceNo(String value) { this.InvoiceNo = value; return this; } public String getInvoiceNoStartsWith() { return InvoiceNoStartsWith; } public SH_VotiQuery setInvoiceNoStartsWith(String value) { this.InvoiceNoStartsWith = value; return this; } public String getInvoiceNoEndsWith() { return InvoiceNoEndsWith; } public SH_VotiQuery setInvoiceNoEndsWith(String value) { this.InvoiceNoEndsWith = value; return this; } public String getInvoiceNoContains() { return InvoiceNoContains; } public SH_VotiQuery setInvoiceNoContains(String value) { this.InvoiceNoContains = value; return this; } public String getInvoiceNoLike() { return InvoiceNoLike; } public SH_VotiQuery setInvoiceNoLike(String value) { this.InvoiceNoLike = value; return this; } public ArrayList getInvoiceNoBetween() { return InvoiceNoBetween; } public SH_VotiQuery setInvoiceNoBetween(ArrayList value) { this.InvoiceNoBetween = value; return this; } public ArrayList getInvoiceNoIn() { return InvoiceNoIn; } public SH_VotiQuery setInvoiceNoIn(ArrayList value) { this.InvoiceNoIn = value; return this; } public String getReference() { return Reference; } public SH_VotiQuery setReference(String value) { this.Reference = value; return this; } public String getReferenceStartsWith() { return ReferenceStartsWith; } public SH_VotiQuery setReferenceStartsWith(String value) { this.ReferenceStartsWith = value; return this; } public String getReferenceEndsWith() { return ReferenceEndsWith; } public SH_VotiQuery setReferenceEndsWith(String value) { this.ReferenceEndsWith = value; return this; } public String getReferenceContains() { return ReferenceContains; } public SH_VotiQuery setReferenceContains(String value) { this.ReferenceContains = value; return this; } public String getReferenceLike() { return ReferenceLike; } public SH_VotiQuery setReferenceLike(String value) { this.ReferenceLike = value; return this; } public ArrayList getReferenceBetween() { return ReferenceBetween; } public SH_VotiQuery setReferenceBetween(ArrayList value) { this.ReferenceBetween = value; return this; } public ArrayList getReferenceIn() { return ReferenceIn; } public SH_VotiQuery setReferenceIn(ArrayList value) { this.ReferenceIn = value; return this; } public BigDecimal getAmount() { return Amount; } public SH_VotiQuery setAmount(BigDecimal value) { this.Amount = value; return this; } public BigDecimal getAmountGreaterThanOrEqualTo() { return AmountGreaterThanOrEqualTo; } public SH_VotiQuery setAmountGreaterThanOrEqualTo(BigDecimal value) { this.AmountGreaterThanOrEqualTo = value; return this; } public BigDecimal getAmountGreaterThan() { return AmountGreaterThan; } public SH_VotiQuery setAmountGreaterThan(BigDecimal value) { this.AmountGreaterThan = value; return this; } public BigDecimal getAmountLessThan() { return AmountLessThan; } public SH_VotiQuery setAmountLessThan(BigDecimal value) { this.AmountLessThan = value; return this; } public BigDecimal getAmountLessThanOrEqualTo() { return AmountLessThanOrEqualTo; } public SH_VotiQuery setAmountLessThanOrEqualTo(BigDecimal value) { this.AmountLessThanOrEqualTo = value; return this; } public BigDecimal getAmountNotEqualTo() { return AmountNotEqualTo; } public SH_VotiQuery setAmountNotEqualTo(BigDecimal value) { this.AmountNotEqualTo = value; return this; } public ArrayList getAmountBetween() { return AmountBetween; } public SH_VotiQuery setAmountBetween(ArrayList value) { this.AmountBetween = value; return this; } public ArrayList getAmountIn() { return AmountIn; } public SH_VotiQuery setAmountIn(ArrayList value) { this.AmountIn = value; return this; } public BigDecimal getGstAmount() { return GSTAmount; } public SH_VotiQuery setGstAmount(BigDecimal value) { this.GSTAmount = value; return this; } public BigDecimal getGstAmountGreaterThanOrEqualTo() { return GSTAmountGreaterThanOrEqualTo; } public SH_VotiQuery setGstAmountGreaterThanOrEqualTo(BigDecimal value) { this.GSTAmountGreaterThanOrEqualTo = value; return this; } public BigDecimal getGstAmountGreaterThan() { return GSTAmountGreaterThan; } public SH_VotiQuery setGstAmountGreaterThan(BigDecimal value) { this.GSTAmountGreaterThan = value; return this; } public BigDecimal getGstAmountLessThan() { return GSTAmountLessThan; } public SH_VotiQuery setGstAmountLessThan(BigDecimal value) { this.GSTAmountLessThan = value; return this; } public BigDecimal getGstAmountLessThanOrEqualTo() { return GSTAmountLessThanOrEqualTo; } public SH_VotiQuery setGstAmountLessThanOrEqualTo(BigDecimal value) { this.GSTAmountLessThanOrEqualTo = value; return this; } public BigDecimal getGstAmountNotEqualTo() { return GSTAmountNotEqualTo; } public SH_VotiQuery setGstAmountNotEqualTo(BigDecimal value) { this.GSTAmountNotEqualTo = value; return this; } public ArrayList getGstAmountBetween() { return GSTAmountBetween; } public SH_VotiQuery setGstAmountBetween(ArrayList value) { this.GSTAmountBetween = value; return this; } public ArrayList getGstAmountIn() { return GSTAmountIn; } public SH_VotiQuery setGstAmountIn(ArrayList value) { this.GSTAmountIn = value; return this; } public Date getDueDate() { return DueDate; } public SH_VotiQuery setDueDate(Date value) { this.DueDate = value; return this; } public Date getDueDateGreaterThanOrEqualTo() { return DueDateGreaterThanOrEqualTo; } public SH_VotiQuery setDueDateGreaterThanOrEqualTo(Date value) { this.DueDateGreaterThanOrEqualTo = value; return this; } public Date getDueDateGreaterThan() { return DueDateGreaterThan; } public SH_VotiQuery setDueDateGreaterThan(Date value) { this.DueDateGreaterThan = value; return this; } public Date getDueDateLessThan() { return DueDateLessThan; } public SH_VotiQuery setDueDateLessThan(Date value) { this.DueDateLessThan = value; return this; } public Date getDueDateLessThanOrEqualTo() { return DueDateLessThanOrEqualTo; } public SH_VotiQuery setDueDateLessThanOrEqualTo(Date value) { this.DueDateLessThanOrEqualTo = value; return this; } public Date getDueDateNotEqualTo() { return DueDateNotEqualTo; } public SH_VotiQuery setDueDateNotEqualTo(Date value) { this.DueDateNotEqualTo = value; return this; } public ArrayList getDueDateBetween() { return DueDateBetween; } public SH_VotiQuery setDueDateBetween(ArrayList value) { this.DueDateBetween = value; return this; } public ArrayList getDueDateIn() { return DueDateIn; } public SH_VotiQuery setDueDateIn(ArrayList value) { this.DueDateIn = value; return this; } public Boolean isInvoiced() { return Invoiced; } public SH_VotiQuery setInvoiced(Boolean value) { this.Invoiced = value; return this; } public String getCrTransID() { return CR_TransID; } public SH_VotiQuery setCrTransID(String value) { this.CR_TransID = value; return this; } public String getCrTransIDStartsWith() { return CR_TransIDStartsWith; } public SH_VotiQuery setCrTransIDStartsWith(String value) { this.CR_TransIDStartsWith = value; return this; } public String getCrTransIDEndsWith() { return CR_TransIDEndsWith; } public SH_VotiQuery setCrTransIDEndsWith(String value) { this.CR_TransIDEndsWith = value; return this; } public String getCrTransIDContains() { return CR_TransIDContains; } public SH_VotiQuery setCrTransIDContains(String value) { this.CR_TransIDContains = value; return this; } public String getCrTransIDLike() { return CR_TransIDLike; } public SH_VotiQuery setCrTransIDLike(String value) { this.CR_TransIDLike = value; return this; } public ArrayList getCrTransIDBetween() { return CR_TransIDBetween; } public SH_VotiQuery setCrTransIDBetween(ArrayList value) { this.CR_TransIDBetween = value; return this; } public ArrayList getCrTransIDIn() { return CR_TransIDIn; } public SH_VotiQuery setCrTransIDIn(ArrayList value) { this.CR_TransIDIn = value; return this; } public String getUserField1() { return UserField1; } public SH_VotiQuery setUserField1(String value) { this.UserField1 = value; return this; } public String getUserField1StartsWith() { return UserField1StartsWith; } public SH_VotiQuery setUserField1StartsWith(String value) { this.UserField1StartsWith = value; return this; } public String getUserField1EndsWith() { return UserField1EndsWith; } public SH_VotiQuery setUserField1EndsWith(String value) { this.UserField1EndsWith = value; return this; } public String getUserField1Contains() { return UserField1Contains; } public SH_VotiQuery setUserField1Contains(String value) { this.UserField1Contains = value; return this; } public String getUserField1Like() { return UserField1Like; } public SH_VotiQuery setUserField1Like(String value) { this.UserField1Like = value; return this; } public ArrayList getUserField1Between() { return UserField1Between; } public SH_VotiQuery setUserField1Between(ArrayList value) { this.UserField1Between = value; return this; } public ArrayList getUserField1In() { return UserField1In; } public SH_VotiQuery setUserField1In(ArrayList value) { this.UserField1In = value; return this; } public String getUserField2() { return UserField2; } public SH_VotiQuery setUserField2(String value) { this.UserField2 = value; return this; } public String getUserField2StartsWith() { return UserField2StartsWith; } public SH_VotiQuery setUserField2StartsWith(String value) { this.UserField2StartsWith = value; return this; } public String getUserField2EndsWith() { return UserField2EndsWith; } public SH_VotiQuery setUserField2EndsWith(String value) { this.UserField2EndsWith = value; return this; } public String getUserField2Contains() { return UserField2Contains; } public SH_VotiQuery setUserField2Contains(String value) { this.UserField2Contains = value; return this; } public String getUserField2Like() { return UserField2Like; } public SH_VotiQuery setUserField2Like(String value) { this.UserField2Like = value; return this; } public ArrayList getUserField2Between() { return UserField2Between; } public SH_VotiQuery setUserField2Between(ArrayList value) { this.UserField2Between = value; return this; } public ArrayList getUserField2In() { return UserField2In; } public SH_VotiQuery setUserField2In(ArrayList value) { this.UserField2In = value; return this; } public String getUserField3() { return UserField3; } public SH_VotiQuery setUserField3(String value) { this.UserField3 = value; return this; } public String getUserField3StartsWith() { return UserField3StartsWith; } public SH_VotiQuery setUserField3StartsWith(String value) { this.UserField3StartsWith = value; return this; } public String getUserField3EndsWith() { return UserField3EndsWith; } public SH_VotiQuery setUserField3EndsWith(String value) { this.UserField3EndsWith = value; return this; } public String getUserField3Contains() { return UserField3Contains; } public SH_VotiQuery setUserField3Contains(String value) { this.UserField3Contains = value; return this; } public String getUserField3Like() { return UserField3Like; } public SH_VotiQuery setUserField3Like(String value) { this.UserField3Like = value; return this; } public ArrayList getUserField3Between() { return UserField3Between; } public SH_VotiQuery setUserField3Between(ArrayList value) { this.UserField3Between = value; return this; } public ArrayList getUserField3In() { return UserField3In; } public SH_VotiQuery setUserField3In(ArrayList value) { this.UserField3In = value; return this; } public String getUserField4() { return UserField4; } public SH_VotiQuery setUserField4(String value) { this.UserField4 = value; return this; } public String getUserField4StartsWith() { return UserField4StartsWith; } public SH_VotiQuery setUserField4StartsWith(String value) { this.UserField4StartsWith = value; return this; } public String getUserField4EndsWith() { return UserField4EndsWith; } public SH_VotiQuery setUserField4EndsWith(String value) { this.UserField4EndsWith = value; return this; } public String getUserField4Contains() { return UserField4Contains; } public SH_VotiQuery setUserField4Contains(String value) { this.UserField4Contains = value; return this; } public String getUserField4Like() { return UserField4Like; } public SH_VotiQuery setUserField4Like(String value) { this.UserField4Like = value; return this; } public ArrayList getUserField4Between() { return UserField4Between; } public SH_VotiQuery setUserField4Between(ArrayList value) { this.UserField4Between = value; return this; } public ArrayList getUserField4In() { return UserField4In; } public SH_VotiQuery setUserField4In(ArrayList value) { this.UserField4In = value; return this; } public String getUserField5() { return UserField5; } public SH_VotiQuery setUserField5(String value) { this.UserField5 = value; return this; } public String getUserField5StartsWith() { return UserField5StartsWith; } public SH_VotiQuery setUserField5StartsWith(String value) { this.UserField5StartsWith = value; return this; } public String getUserField5EndsWith() { return UserField5EndsWith; } public SH_VotiQuery setUserField5EndsWith(String value) { this.UserField5EndsWith = value; return this; } public String getUserField5Contains() { return UserField5Contains; } public SH_VotiQuery setUserField5Contains(String value) { this.UserField5Contains = value; return this; } public String getUserField5Like() { return UserField5Like; } public SH_VotiQuery setUserField5Like(String value) { this.UserField5Like = value; return this; } public ArrayList getUserField5Between() { return UserField5Between; } public SH_VotiQuery setUserField5Between(ArrayList value) { this.UserField5Between = value; return this; } public ArrayList getUserField5In() { return UserField5In; } public SH_VotiQuery setUserField5In(ArrayList value) { this.UserField5In = value; return this; } public String getUserField6() { return UserField6; } public SH_VotiQuery setUserField6(String value) { this.UserField6 = value; return this; } public String getUserField6StartsWith() { return UserField6StartsWith; } public SH_VotiQuery setUserField6StartsWith(String value) { this.UserField6StartsWith = value; return this; } public String getUserField6EndsWith() { return UserField6EndsWith; } public SH_VotiQuery setUserField6EndsWith(String value) { this.UserField6EndsWith = value; return this; } public String getUserField6Contains() { return UserField6Contains; } public SH_VotiQuery setUserField6Contains(String value) { this.UserField6Contains = value; return this; } public String getUserField6Like() { return UserField6Like; } public SH_VotiQuery setUserField6Like(String value) { this.UserField6Like = value; return this; } public ArrayList getUserField6Between() { return UserField6Between; } public SH_VotiQuery setUserField6Between(ArrayList value) { this.UserField6Between = value; return this; } public ArrayList getUserField6In() { return UserField6In; } public SH_VotiQuery setUserField6In(ArrayList value) { this.UserField6In = value; return this; } public String getUserField7() { return UserField7; } public SH_VotiQuery setUserField7(String value) { this.UserField7 = value; return this; } public String getUserField7StartsWith() { return UserField7StartsWith; } public SH_VotiQuery setUserField7StartsWith(String value) { this.UserField7StartsWith = value; return this; } public String getUserField7EndsWith() { return UserField7EndsWith; } public SH_VotiQuery setUserField7EndsWith(String value) { this.UserField7EndsWith = value; return this; } public String getUserField7Contains() { return UserField7Contains; } public SH_VotiQuery setUserField7Contains(String value) { this.UserField7Contains = value; return this; } public String getUserField7Like() { return UserField7Like; } public SH_VotiQuery setUserField7Like(String value) { this.UserField7Like = value; return this; } public ArrayList getUserField7Between() { return UserField7Between; } public SH_VotiQuery setUserField7Between(ArrayList value) { this.UserField7Between = value; return this; } public ArrayList getUserField7In() { return UserField7In; } public SH_VotiQuery setUserField7In(ArrayList value) { this.UserField7In = value; return this; } public String getUserField8() { return UserField8; } public SH_VotiQuery setUserField8(String value) { this.UserField8 = value; return this; } public String getUserField8StartsWith() { return UserField8StartsWith; } public SH_VotiQuery setUserField8StartsWith(String value) { this.UserField8StartsWith = value; return this; } public String getUserField8EndsWith() { return UserField8EndsWith; } public SH_VotiQuery setUserField8EndsWith(String value) { this.UserField8EndsWith = value; return this; } public String getUserField8Contains() { return UserField8Contains; } public SH_VotiQuery setUserField8Contains(String value) { this.UserField8Contains = value; return this; } public String getUserField8Like() { return UserField8Like; } public SH_VotiQuery setUserField8Like(String value) { this.UserField8Like = value; return this; } public ArrayList getUserField8Between() { return UserField8Between; } public SH_VotiQuery setUserField8Between(ArrayList value) { this.UserField8Between = value; return this; } public ArrayList getUserField8In() { return UserField8In; } public SH_VotiQuery setUserField8In(ArrayList value) { this.UserField8In = value; return this; } public String getUserField9() { return UserField9; } public SH_VotiQuery setUserField9(String value) { this.UserField9 = value; return this; } public String getUserField9StartsWith() { return UserField9StartsWith; } public SH_VotiQuery setUserField9StartsWith(String value) { this.UserField9StartsWith = value; return this; } public String getUserField9EndsWith() { return UserField9EndsWith; } public SH_VotiQuery setUserField9EndsWith(String value) { this.UserField9EndsWith = value; return this; } public String getUserField9Contains() { return UserField9Contains; } public SH_VotiQuery setUserField9Contains(String value) { this.UserField9Contains = value; return this; } public String getUserField9Like() { return UserField9Like; } public SH_VotiQuery setUserField9Like(String value) { this.UserField9Like = value; return this; } public ArrayList getUserField9Between() { return UserField9Between; } public SH_VotiQuery setUserField9Between(ArrayList value) { this.UserField9Between = value; return this; } public ArrayList getUserField9In() { return UserField9In; } public SH_VotiQuery setUserField9In(ArrayList value) { this.UserField9In = value; return this; } public String getUserField10() { return UserField10; } public SH_VotiQuery setUserField10(String value) { this.UserField10 = value; return this; } public String getUserField10StartsWith() { return UserField10StartsWith; } public SH_VotiQuery setUserField10StartsWith(String value) { this.UserField10StartsWith = value; return this; } public String getUserField10EndsWith() { return UserField10EndsWith; } public SH_VotiQuery setUserField10EndsWith(String value) { this.UserField10EndsWith = value; return this; } public String getUserField10Contains() { return UserField10Contains; } public SH_VotiQuery setUserField10Contains(String value) { this.UserField10Contains = value; return this; } public String getUserField10Like() { return UserField10Like; } public SH_VotiQuery setUserField10Like(String value) { this.UserField10Like = value; return this; } public ArrayList getUserField10Between() { return UserField10Between; } public SH_VotiQuery setUserField10Between(ArrayList value) { this.UserField10Between = value; return this; } public ArrayList getUserField10In() { return UserField10In; } public SH_VotiQuery setUserField10In(ArrayList value) { this.UserField10In = value; return this; } public Integer getDecimalPlaces() { return DecimalPlaces; } public SH_VotiQuery setDecimalPlaces(Integer value) { this.DecimalPlaces = value; return this; } public Integer getDecimalPlacesGreaterThanOrEqualTo() { return DecimalPlacesGreaterThanOrEqualTo; } public SH_VotiQuery setDecimalPlacesGreaterThanOrEqualTo(Integer value) { this.DecimalPlacesGreaterThanOrEqualTo = value; return this; } public Integer getDecimalPlacesGreaterThan() { return DecimalPlacesGreaterThan; } public SH_VotiQuery setDecimalPlacesGreaterThan(Integer value) { this.DecimalPlacesGreaterThan = value; return this; } public Integer getDecimalPlacesLessThan() { return DecimalPlacesLessThan; } public SH_VotiQuery setDecimalPlacesLessThan(Integer value) { this.DecimalPlacesLessThan = value; return this; } public Integer getDecimalPlacesLessThanOrEqualTo() { return DecimalPlacesLessThanOrEqualTo; } public SH_VotiQuery setDecimalPlacesLessThanOrEqualTo(Integer value) { this.DecimalPlacesLessThanOrEqualTo = value; return this; } public Integer getDecimalPlacesNotEqualTo() { return DecimalPlacesNotEqualTo; } public SH_VotiQuery setDecimalPlacesNotEqualTo(Integer value) { this.DecimalPlacesNotEqualTo = value; return this; } public ArrayList getDecimalPlacesBetween() { return DecimalPlacesBetween; } public SH_VotiQuery setDecimalPlacesBetween(ArrayList value) { this.DecimalPlacesBetween = value; return this; } public ArrayList getDecimalPlacesIn() { return DecimalPlacesIn; } public SH_VotiQuery setDecimalPlacesIn(ArrayList value) { this.DecimalPlacesIn = value; return this; } public Date getInvoiceDate() { return InvoiceDate; } public SH_VotiQuery setInvoiceDate(Date value) { this.InvoiceDate = value; return this; } public Date getInvoiceDateGreaterThanOrEqualTo() { return InvoiceDateGreaterThanOrEqualTo; } public SH_VotiQuery setInvoiceDateGreaterThanOrEqualTo(Date value) { this.InvoiceDateGreaterThanOrEqualTo = value; return this; } public Date getInvoiceDateGreaterThan() { return InvoiceDateGreaterThan; } public SH_VotiQuery setInvoiceDateGreaterThan(Date value) { this.InvoiceDateGreaterThan = value; return this; } public Date getInvoiceDateLessThan() { return InvoiceDateLessThan; } public SH_VotiQuery setInvoiceDateLessThan(Date value) { this.InvoiceDateLessThan = value; return this; } public Date getInvoiceDateLessThanOrEqualTo() { return InvoiceDateLessThanOrEqualTo; } public SH_VotiQuery setInvoiceDateLessThanOrEqualTo(Date value) { this.InvoiceDateLessThanOrEqualTo = value; return this; } public Date getInvoiceDateNotEqualTo() { return InvoiceDateNotEqualTo; } public SH_VotiQuery setInvoiceDateNotEqualTo(Date value) { this.InvoiceDateNotEqualTo = value; return this; } public ArrayList getInvoiceDateBetween() { return InvoiceDateBetween; } public SH_VotiQuery setInvoiceDateBetween(ArrayList value) { this.InvoiceDateBetween = value; return this; } public ArrayList getInvoiceDateIn() { return InvoiceDateIn; } public SH_VotiQuery setInvoiceDateIn(ArrayList value) { this.InvoiceDateIn = value; return this; } public ArrayList getRowHash() { return RowHash; } public SH_VotiQuery setRowHash(ArrayList value) { this.RowHash = value; return this; } public Integer getItemNo() { return ItemNo; } public SH_VotiQuery setItemNo(Integer value) { this.ItemNo = value; return this; } public Integer getItemNoGreaterThanOrEqualTo() { return ItemNoGreaterThanOrEqualTo; } public SH_VotiQuery setItemNoGreaterThanOrEqualTo(Integer value) { this.ItemNoGreaterThanOrEqualTo = value; return this; } public Integer getItemNoGreaterThan() { return ItemNoGreaterThan; } public SH_VotiQuery setItemNoGreaterThan(Integer value) { this.ItemNoGreaterThan = value; return this; } public Integer getItemNoLessThan() { return ItemNoLessThan; } public SH_VotiQuery setItemNoLessThan(Integer value) { this.ItemNoLessThan = value; return this; } public Integer getItemNoLessThanOrEqualTo() { return ItemNoLessThanOrEqualTo; } public SH_VotiQuery setItemNoLessThanOrEqualTo(Integer value) { this.ItemNoLessThanOrEqualTo = value; return this; } public Integer getItemNoNotEqualTo() { return ItemNoNotEqualTo; } public SH_VotiQuery setItemNoNotEqualTo(Integer value) { this.ItemNoNotEqualTo = value; return this; } public ArrayList getItemNoBetween() { return ItemNoBetween; } public SH_VotiQuery setItemNoBetween(ArrayList value) { this.ItemNoBetween = value; return this; } public ArrayList getItemNoIn() { return ItemNoIn; } public SH_VotiQuery setItemNoIn(ArrayList value) { this.ItemNoIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class SM_ActivitiesQuery extends QueryDb implements IReturn> { public String RecID = null; public String RecIDStartsWith = null; public String RecIDEndsWith = null; public String RecIDContains = null; public String RecIDLike = null; public ArrayList RecIDBetween = null; public ArrayList RecIDIn = null; public String Name = null; public String NameStartsWith = null; public String NameEndsWith = null; public String NameContains = null; public String NameLike = null; public ArrayList NameBetween = null; public ArrayList NameIn = null; public String Description = null; public String DescriptionStartsWith = null; public String DescriptionEndsWith = null; public String DescriptionContains = null; public String DescriptionLike = null; public ArrayList DescriptionBetween = null; public ArrayList DescriptionIn = null; public Integer ItemNo = null; public Integer ItemNoGreaterThanOrEqualTo = null; public Integer ItemNoGreaterThan = null; public Integer ItemNoLessThan = null; public Integer ItemNoLessThanOrEqualTo = null; public Integer ItemNoNotEqualTo = null; public ArrayList ItemNoBetween = null; public ArrayList ItemNoIn = null; public Boolean IsEnabled = null; public ArrayList RowHash = null; public Boolean IsDefault = null; public String getRecID() { return RecID; } public SM_ActivitiesQuery setRecID(String value) { this.RecID = value; return this; } public String getRecIDStartsWith() { return RecIDStartsWith; } public SM_ActivitiesQuery setRecIDStartsWith(String value) { this.RecIDStartsWith = value; return this; } public String getRecIDEndsWith() { return RecIDEndsWith; } public SM_ActivitiesQuery setRecIDEndsWith(String value) { this.RecIDEndsWith = value; return this; } public String getRecIDContains() { return RecIDContains; } public SM_ActivitiesQuery setRecIDContains(String value) { this.RecIDContains = value; return this; } public String getRecIDLike() { return RecIDLike; } public SM_ActivitiesQuery setRecIDLike(String value) { this.RecIDLike = value; return this; } public ArrayList getRecIDBetween() { return RecIDBetween; } public SM_ActivitiesQuery setRecIDBetween(ArrayList value) { this.RecIDBetween = value; return this; } public ArrayList getRecIDIn() { return RecIDIn; } public SM_ActivitiesQuery setRecIDIn(ArrayList value) { this.RecIDIn = value; return this; } public String getName() { return Name; } public SM_ActivitiesQuery setName(String value) { this.Name = value; return this; } public String getNameStartsWith() { return NameStartsWith; } public SM_ActivitiesQuery setNameStartsWith(String value) { this.NameStartsWith = value; return this; } public String getNameEndsWith() { return NameEndsWith; } public SM_ActivitiesQuery setNameEndsWith(String value) { this.NameEndsWith = value; return this; } public String getNameContains() { return NameContains; } public SM_ActivitiesQuery setNameContains(String value) { this.NameContains = value; return this; } public String getNameLike() { return NameLike; } public SM_ActivitiesQuery setNameLike(String value) { this.NameLike = value; return this; } public ArrayList getNameBetween() { return NameBetween; } public SM_ActivitiesQuery setNameBetween(ArrayList value) { this.NameBetween = value; return this; } public ArrayList getNameIn() { return NameIn; } public SM_ActivitiesQuery setNameIn(ArrayList value) { this.NameIn = value; return this; } public String getDescription() { return Description; } public SM_ActivitiesQuery setDescription(String value) { this.Description = value; return this; } public String getDescriptionStartsWith() { return DescriptionStartsWith; } public SM_ActivitiesQuery setDescriptionStartsWith(String value) { this.DescriptionStartsWith = value; return this; } public String getDescriptionEndsWith() { return DescriptionEndsWith; } public SM_ActivitiesQuery setDescriptionEndsWith(String value) { this.DescriptionEndsWith = value; return this; } public String getDescriptionContains() { return DescriptionContains; } public SM_ActivitiesQuery setDescriptionContains(String value) { this.DescriptionContains = value; return this; } public String getDescriptionLike() { return DescriptionLike; } public SM_ActivitiesQuery setDescriptionLike(String value) { this.DescriptionLike = value; return this; } public ArrayList getDescriptionBetween() { return DescriptionBetween; } public SM_ActivitiesQuery setDescriptionBetween(ArrayList value) { this.DescriptionBetween = value; return this; } public ArrayList getDescriptionIn() { return DescriptionIn; } public SM_ActivitiesQuery setDescriptionIn(ArrayList value) { this.DescriptionIn = value; return this; } public Integer getItemNo() { return ItemNo; } public SM_ActivitiesQuery setItemNo(Integer value) { this.ItemNo = value; return this; } public Integer getItemNoGreaterThanOrEqualTo() { return ItemNoGreaterThanOrEqualTo; } public SM_ActivitiesQuery setItemNoGreaterThanOrEqualTo(Integer value) { this.ItemNoGreaterThanOrEqualTo = value; return this; } public Integer getItemNoGreaterThan() { return ItemNoGreaterThan; } public SM_ActivitiesQuery setItemNoGreaterThan(Integer value) { this.ItemNoGreaterThan = value; return this; } public Integer getItemNoLessThan() { return ItemNoLessThan; } public SM_ActivitiesQuery setItemNoLessThan(Integer value) { this.ItemNoLessThan = value; return this; } public Integer getItemNoLessThanOrEqualTo() { return ItemNoLessThanOrEqualTo; } public SM_ActivitiesQuery setItemNoLessThanOrEqualTo(Integer value) { this.ItemNoLessThanOrEqualTo = value; return this; } public Integer getItemNoNotEqualTo() { return ItemNoNotEqualTo; } public SM_ActivitiesQuery setItemNoNotEqualTo(Integer value) { this.ItemNoNotEqualTo = value; return this; } public ArrayList getItemNoBetween() { return ItemNoBetween; } public SM_ActivitiesQuery setItemNoBetween(ArrayList value) { this.ItemNoBetween = value; return this; } public ArrayList getItemNoIn() { return ItemNoIn; } public SM_ActivitiesQuery setItemNoIn(ArrayList value) { this.ItemNoIn = value; return this; } public Boolean getIsEnabled() { return IsEnabled; } public SM_ActivitiesQuery setIsEnabled(Boolean value) { this.IsEnabled = value; return this; } public ArrayList getRowHash() { return RowHash; } public SM_ActivitiesQuery setRowHash(ArrayList value) { this.RowHash = value; return this; } public Boolean getIsDefault() { return IsDefault; } public SM_ActivitiesQuery setIsDefault(Boolean value) { this.IsDefault = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class SM_ActivityBudgetsQuery extends QueryDb implements IReturn> { public String RecID = null; public String RecIDStartsWith = null; public String RecIDEndsWith = null; public String RecIDContains = null; public String RecIDLike = null; public ArrayList RecIDBetween = null; public ArrayList RecIDIn = null; public String SM_Activities_RecID = null; public String SM_Activities_RecIDStartsWith = null; public String SM_Activities_RecIDEndsWith = null; public String SM_Activities_RecIDContains = null; public String SM_Activities_RecIDLike = null; public ArrayList SM_Activities_RecIDBetween = null; public ArrayList SM_Activities_RecIDIn = null; public String SM_Tasks_RecID = null; public String SM_Tasks_RecIDStartsWith = null; public String SM_Tasks_RecIDEndsWith = null; public String SM_Tasks_RecIDContains = null; public String SM_Tasks_RecIDLike = null; public ArrayList SM_Tasks_RecIDBetween = null; public ArrayList SM_Tasks_RecIDIn = null; public BigDecimal BudgetedBillingTime = null; public BigDecimal BudgetedBillingTimeGreaterThanOrEqualTo = null; public BigDecimal BudgetedBillingTimeGreaterThan = null; public BigDecimal BudgetedBillingTimeLessThan = null; public BigDecimal BudgetedBillingTimeLessThanOrEqualTo = null; public BigDecimal BudgetedBillingTimeNotEqualTo = null; public ArrayList BudgetedBillingTimeBetween = null; public ArrayList BudgetedBillingTimeIn = null; public BigDecimal BudgetedElapsedTime = null; public BigDecimal BudgetedElapsedTimeGreaterThanOrEqualTo = null; public BigDecimal BudgetedElapsedTimeGreaterThan = null; public BigDecimal BudgetedElapsedTimeLessThan = null; public BigDecimal BudgetedElapsedTimeLessThanOrEqualTo = null; public BigDecimal BudgetedElapsedTimeNotEqualTo = null; public ArrayList BudgetedElapsedTimeBetween = null; public ArrayList BudgetedElapsedTimeIn = null; public BigDecimal BudgetedBillingValue = null; public BigDecimal BudgetedBillingValueGreaterThanOrEqualTo = null; public BigDecimal BudgetedBillingValueGreaterThan = null; public BigDecimal BudgetedBillingValueLessThan = null; public BigDecimal BudgetedBillingValueLessThanOrEqualTo = null; public BigDecimal BudgetedBillingValueNotEqualTo = null; public ArrayList BudgetedBillingValueBetween = null; public ArrayList BudgetedBillingValueIn = null; public Date LastSavedDateTime = null; public Date LastSavedDateTimeGreaterThanOrEqualTo = null; public Date LastSavedDateTimeGreaterThan = null; public Date LastSavedDateTimeLessThan = null; public Date LastSavedDateTimeLessThanOrEqualTo = null; public Date LastSavedDateTimeNotEqualTo = null; public ArrayList LastSavedDateTimeBetween = null; public ArrayList LastSavedDateTimeIn = null; public Integer ItemNo = null; public Integer ItemNoGreaterThanOrEqualTo = null; public Integer ItemNoGreaterThan = null; public Integer ItemNoLessThan = null; public Integer ItemNoLessThanOrEqualTo = null; public Integer ItemNoNotEqualTo = null; public ArrayList ItemNoBetween = null; public ArrayList ItemNoIn = null; public ArrayList RowHash = null; public String getRecID() { return RecID; } public SM_ActivityBudgetsQuery setRecID(String value) { this.RecID = value; return this; } public String getRecIDStartsWith() { return RecIDStartsWith; } public SM_ActivityBudgetsQuery setRecIDStartsWith(String value) { this.RecIDStartsWith = value; return this; } public String getRecIDEndsWith() { return RecIDEndsWith; } public SM_ActivityBudgetsQuery setRecIDEndsWith(String value) { this.RecIDEndsWith = value; return this; } public String getRecIDContains() { return RecIDContains; } public SM_ActivityBudgetsQuery setRecIDContains(String value) { this.RecIDContains = value; return this; } public String getRecIDLike() { return RecIDLike; } public SM_ActivityBudgetsQuery setRecIDLike(String value) { this.RecIDLike = value; return this; } public ArrayList getRecIDBetween() { return RecIDBetween; } public SM_ActivityBudgetsQuery setRecIDBetween(ArrayList value) { this.RecIDBetween = value; return this; } public ArrayList getRecIDIn() { return RecIDIn; } public SM_ActivityBudgetsQuery setRecIDIn(ArrayList value) { this.RecIDIn = value; return this; } public String getSmActivitiesRecID() { return SM_Activities_RecID; } public SM_ActivityBudgetsQuery setSmActivitiesRecID(String value) { this.SM_Activities_RecID = value; return this; } public String getSmActivitiesRecIDStartsWith() { return SM_Activities_RecIDStartsWith; } public SM_ActivityBudgetsQuery setSmActivitiesRecIDStartsWith(String value) { this.SM_Activities_RecIDStartsWith = value; return this; } public String getSmActivitiesRecIDEndsWith() { return SM_Activities_RecIDEndsWith; } public SM_ActivityBudgetsQuery setSmActivitiesRecIDEndsWith(String value) { this.SM_Activities_RecIDEndsWith = value; return this; } public String getSmActivitiesRecIDContains() { return SM_Activities_RecIDContains; } public SM_ActivityBudgetsQuery setSmActivitiesRecIDContains(String value) { this.SM_Activities_RecIDContains = value; return this; } public String getSmActivitiesRecIDLike() { return SM_Activities_RecIDLike; } public SM_ActivityBudgetsQuery setSmActivitiesRecIDLike(String value) { this.SM_Activities_RecIDLike = value; return this; } public ArrayList getSmActivitiesRecIDBetween() { return SM_Activities_RecIDBetween; } public SM_ActivityBudgetsQuery setSmActivitiesRecIDBetween(ArrayList value) { this.SM_Activities_RecIDBetween = value; return this; } public ArrayList getSmActivitiesRecIDIn() { return SM_Activities_RecIDIn; } public SM_ActivityBudgetsQuery setSmActivitiesRecIDIn(ArrayList value) { this.SM_Activities_RecIDIn = value; return this; } public String getSmTasksRecID() { return SM_Tasks_RecID; } public SM_ActivityBudgetsQuery setSmTasksRecID(String value) { this.SM_Tasks_RecID = value; return this; } public String getSmTasksRecIDStartsWith() { return SM_Tasks_RecIDStartsWith; } public SM_ActivityBudgetsQuery setSmTasksRecIDStartsWith(String value) { this.SM_Tasks_RecIDStartsWith = value; return this; } public String getSmTasksRecIDEndsWith() { return SM_Tasks_RecIDEndsWith; } public SM_ActivityBudgetsQuery setSmTasksRecIDEndsWith(String value) { this.SM_Tasks_RecIDEndsWith = value; return this; } public String getSmTasksRecIDContains() { return SM_Tasks_RecIDContains; } public SM_ActivityBudgetsQuery setSmTasksRecIDContains(String value) { this.SM_Tasks_RecIDContains = value; return this; } public String getSmTasksRecIDLike() { return SM_Tasks_RecIDLike; } public SM_ActivityBudgetsQuery setSmTasksRecIDLike(String value) { this.SM_Tasks_RecIDLike = value; return this; } public ArrayList getSmTasksRecIDBetween() { return SM_Tasks_RecIDBetween; } public SM_ActivityBudgetsQuery setSmTasksRecIDBetween(ArrayList value) { this.SM_Tasks_RecIDBetween = value; return this; } public ArrayList getSmTasksRecIDIn() { return SM_Tasks_RecIDIn; } public SM_ActivityBudgetsQuery setSmTasksRecIDIn(ArrayList value) { this.SM_Tasks_RecIDIn = value; return this; } public BigDecimal getBudgetedBillingTime() { return BudgetedBillingTime; } public SM_ActivityBudgetsQuery setBudgetedBillingTime(BigDecimal value) { this.BudgetedBillingTime = value; return this; } public BigDecimal getBudgetedBillingTimeGreaterThanOrEqualTo() { return BudgetedBillingTimeGreaterThanOrEqualTo; } public SM_ActivityBudgetsQuery setBudgetedBillingTimeGreaterThanOrEqualTo(BigDecimal value) { this.BudgetedBillingTimeGreaterThanOrEqualTo = value; return this; } public BigDecimal getBudgetedBillingTimeGreaterThan() { return BudgetedBillingTimeGreaterThan; } public SM_ActivityBudgetsQuery setBudgetedBillingTimeGreaterThan(BigDecimal value) { this.BudgetedBillingTimeGreaterThan = value; return this; } public BigDecimal getBudgetedBillingTimeLessThan() { return BudgetedBillingTimeLessThan; } public SM_ActivityBudgetsQuery setBudgetedBillingTimeLessThan(BigDecimal value) { this.BudgetedBillingTimeLessThan = value; return this; } public BigDecimal getBudgetedBillingTimeLessThanOrEqualTo() { return BudgetedBillingTimeLessThanOrEqualTo; } public SM_ActivityBudgetsQuery setBudgetedBillingTimeLessThanOrEqualTo(BigDecimal value) { this.BudgetedBillingTimeLessThanOrEqualTo = value; return this; } public BigDecimal getBudgetedBillingTimeNotEqualTo() { return BudgetedBillingTimeNotEqualTo; } public SM_ActivityBudgetsQuery setBudgetedBillingTimeNotEqualTo(BigDecimal value) { this.BudgetedBillingTimeNotEqualTo = value; return this; } public ArrayList getBudgetedBillingTimeBetween() { return BudgetedBillingTimeBetween; } public SM_ActivityBudgetsQuery setBudgetedBillingTimeBetween(ArrayList value) { this.BudgetedBillingTimeBetween = value; return this; } public ArrayList getBudgetedBillingTimeIn() { return BudgetedBillingTimeIn; } public SM_ActivityBudgetsQuery setBudgetedBillingTimeIn(ArrayList value) { this.BudgetedBillingTimeIn = value; return this; } public BigDecimal getBudgetedElapsedTime() { return BudgetedElapsedTime; } public SM_ActivityBudgetsQuery setBudgetedElapsedTime(BigDecimal value) { this.BudgetedElapsedTime = value; return this; } public BigDecimal getBudgetedElapsedTimeGreaterThanOrEqualTo() { return BudgetedElapsedTimeGreaterThanOrEqualTo; } public SM_ActivityBudgetsQuery setBudgetedElapsedTimeGreaterThanOrEqualTo(BigDecimal value) { this.BudgetedElapsedTimeGreaterThanOrEqualTo = value; return this; } public BigDecimal getBudgetedElapsedTimeGreaterThan() { return BudgetedElapsedTimeGreaterThan; } public SM_ActivityBudgetsQuery setBudgetedElapsedTimeGreaterThan(BigDecimal value) { this.BudgetedElapsedTimeGreaterThan = value; return this; } public BigDecimal getBudgetedElapsedTimeLessThan() { return BudgetedElapsedTimeLessThan; } public SM_ActivityBudgetsQuery setBudgetedElapsedTimeLessThan(BigDecimal value) { this.BudgetedElapsedTimeLessThan = value; return this; } public BigDecimal getBudgetedElapsedTimeLessThanOrEqualTo() { return BudgetedElapsedTimeLessThanOrEqualTo; } public SM_ActivityBudgetsQuery setBudgetedElapsedTimeLessThanOrEqualTo(BigDecimal value) { this.BudgetedElapsedTimeLessThanOrEqualTo = value; return this; } public BigDecimal getBudgetedElapsedTimeNotEqualTo() { return BudgetedElapsedTimeNotEqualTo; } public SM_ActivityBudgetsQuery setBudgetedElapsedTimeNotEqualTo(BigDecimal value) { this.BudgetedElapsedTimeNotEqualTo = value; return this; } public ArrayList getBudgetedElapsedTimeBetween() { return BudgetedElapsedTimeBetween; } public SM_ActivityBudgetsQuery setBudgetedElapsedTimeBetween(ArrayList value) { this.BudgetedElapsedTimeBetween = value; return this; } public ArrayList getBudgetedElapsedTimeIn() { return BudgetedElapsedTimeIn; } public SM_ActivityBudgetsQuery setBudgetedElapsedTimeIn(ArrayList value) { this.BudgetedElapsedTimeIn = value; return this; } public BigDecimal getBudgetedBillingValue() { return BudgetedBillingValue; } public SM_ActivityBudgetsQuery setBudgetedBillingValue(BigDecimal value) { this.BudgetedBillingValue = value; return this; } public BigDecimal getBudgetedBillingValueGreaterThanOrEqualTo() { return BudgetedBillingValueGreaterThanOrEqualTo; } public SM_ActivityBudgetsQuery setBudgetedBillingValueGreaterThanOrEqualTo(BigDecimal value) { this.BudgetedBillingValueGreaterThanOrEqualTo = value; return this; } public BigDecimal getBudgetedBillingValueGreaterThan() { return BudgetedBillingValueGreaterThan; } public SM_ActivityBudgetsQuery setBudgetedBillingValueGreaterThan(BigDecimal value) { this.BudgetedBillingValueGreaterThan = value; return this; } public BigDecimal getBudgetedBillingValueLessThan() { return BudgetedBillingValueLessThan; } public SM_ActivityBudgetsQuery setBudgetedBillingValueLessThan(BigDecimal value) { this.BudgetedBillingValueLessThan = value; return this; } public BigDecimal getBudgetedBillingValueLessThanOrEqualTo() { return BudgetedBillingValueLessThanOrEqualTo; } public SM_ActivityBudgetsQuery setBudgetedBillingValueLessThanOrEqualTo(BigDecimal value) { this.BudgetedBillingValueLessThanOrEqualTo = value; return this; } public BigDecimal getBudgetedBillingValueNotEqualTo() { return BudgetedBillingValueNotEqualTo; } public SM_ActivityBudgetsQuery setBudgetedBillingValueNotEqualTo(BigDecimal value) { this.BudgetedBillingValueNotEqualTo = value; return this; } public ArrayList getBudgetedBillingValueBetween() { return BudgetedBillingValueBetween; } public SM_ActivityBudgetsQuery setBudgetedBillingValueBetween(ArrayList value) { this.BudgetedBillingValueBetween = value; return this; } public ArrayList getBudgetedBillingValueIn() { return BudgetedBillingValueIn; } public SM_ActivityBudgetsQuery setBudgetedBillingValueIn(ArrayList value) { this.BudgetedBillingValueIn = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public SM_ActivityBudgetsQuery setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getLastSavedDateTimeGreaterThanOrEqualTo() { return LastSavedDateTimeGreaterThanOrEqualTo; } public SM_ActivityBudgetsQuery setLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.LastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeGreaterThan() { return LastSavedDateTimeGreaterThan; } public SM_ActivityBudgetsQuery setLastSavedDateTimeGreaterThan(Date value) { this.LastSavedDateTimeGreaterThan = value; return this; } public Date getLastSavedDateTimeLessThan() { return LastSavedDateTimeLessThan; } public SM_ActivityBudgetsQuery setLastSavedDateTimeLessThan(Date value) { this.LastSavedDateTimeLessThan = value; return this; } public Date getLastSavedDateTimeLessThanOrEqualTo() { return LastSavedDateTimeLessThanOrEqualTo; } public SM_ActivityBudgetsQuery setLastSavedDateTimeLessThanOrEqualTo(Date value) { this.LastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeNotEqualTo() { return LastSavedDateTimeNotEqualTo; } public SM_ActivityBudgetsQuery setLastSavedDateTimeNotEqualTo(Date value) { this.LastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getLastSavedDateTimeBetween() { return LastSavedDateTimeBetween; } public SM_ActivityBudgetsQuery setLastSavedDateTimeBetween(ArrayList value) { this.LastSavedDateTimeBetween = value; return this; } public ArrayList getLastSavedDateTimeIn() { return LastSavedDateTimeIn; } public SM_ActivityBudgetsQuery setLastSavedDateTimeIn(ArrayList value) { this.LastSavedDateTimeIn = value; return this; } public Integer getItemNo() { return ItemNo; } public SM_ActivityBudgetsQuery setItemNo(Integer value) { this.ItemNo = value; return this; } public Integer getItemNoGreaterThanOrEqualTo() { return ItemNoGreaterThanOrEqualTo; } public SM_ActivityBudgetsQuery setItemNoGreaterThanOrEqualTo(Integer value) { this.ItemNoGreaterThanOrEqualTo = value; return this; } public Integer getItemNoGreaterThan() { return ItemNoGreaterThan; } public SM_ActivityBudgetsQuery setItemNoGreaterThan(Integer value) { this.ItemNoGreaterThan = value; return this; } public Integer getItemNoLessThan() { return ItemNoLessThan; } public SM_ActivityBudgetsQuery setItemNoLessThan(Integer value) { this.ItemNoLessThan = value; return this; } public Integer getItemNoLessThanOrEqualTo() { return ItemNoLessThanOrEqualTo; } public SM_ActivityBudgetsQuery setItemNoLessThanOrEqualTo(Integer value) { this.ItemNoLessThanOrEqualTo = value; return this; } public Integer getItemNoNotEqualTo() { return ItemNoNotEqualTo; } public SM_ActivityBudgetsQuery setItemNoNotEqualTo(Integer value) { this.ItemNoNotEqualTo = value; return this; } public ArrayList getItemNoBetween() { return ItemNoBetween; } public SM_ActivityBudgetsQuery setItemNoBetween(ArrayList value) { this.ItemNoBetween = value; return this; } public ArrayList getItemNoIn() { return ItemNoIn; } public SM_ActivityBudgetsQuery setItemNoIn(ArrayList value) { this.ItemNoIn = value; return this; } public ArrayList getRowHash() { return RowHash; } public SM_ActivityBudgetsQuery setRowHash(ArrayList value) { this.RowHash = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class SM_ActivityBudgetsCustomFieldsQuery extends QueryDb implements IReturn> { public String RecID = null; public String RecIDStartsWith = null; public String RecIDEndsWith = null; public String RecIDContains = null; public String RecIDLike = null; public ArrayList RecIDBetween = null; public ArrayList RecIDIn = null; public String SettingName = null; public String SettingNameStartsWith = null; public String SettingNameEndsWith = null; public String SettingNameContains = null; public String SettingNameLike = null; public ArrayList SettingNameBetween = null; public ArrayList SettingNameIn = null; public String SettingDescription = null; public String SettingDescriptionStartsWith = null; public String SettingDescriptionEndsWith = null; public String SettingDescriptionContains = null; public String SettingDescriptionLike = null; public ArrayList SettingDescriptionBetween = null; public ArrayList SettingDescriptionIn = null; public Integer CellType = null; public Integer CellTypeGreaterThanOrEqualTo = null; public Integer CellTypeGreaterThan = null; public Integer CellTypeLessThan = null; public Integer CellTypeLessThanOrEqualTo = null; public Integer CellTypeNotEqualTo = null; public ArrayList CellTypeBetween = null; public ArrayList CellTypeIn = null; public String FieldParameter = null; public String FieldParameterStartsWith = null; public String FieldParameterEndsWith = null; public String FieldParameterContains = null; public String FieldParameterLike = null; public ArrayList FieldParameterBetween = null; public ArrayList FieldParameterIn = null; public UUID SY_Plugin_RecID = null; public ArrayList SY_Plugin_RecIDIn = null; public Date LastSavedDateTime = null; public Date LastSavedDateTimeGreaterThanOrEqualTo = null; public Date LastSavedDateTimeGreaterThan = null; public Date LastSavedDateTimeLessThan = null; public Date LastSavedDateTimeLessThanOrEqualTo = null; public Date LastSavedDateTimeNotEqualTo = null; public ArrayList LastSavedDateTimeBetween = null; public ArrayList LastSavedDateTimeIn = null; public Integer DisplayOrder = null; public Integer DisplayOrderGreaterThanOrEqualTo = null; public Integer DisplayOrderGreaterThan = null; public Integer DisplayOrderLessThan = null; public Integer DisplayOrderLessThanOrEqualTo = null; public Integer DisplayOrderNotEqualTo = null; public ArrayList DisplayOrderBetween = null; public ArrayList DisplayOrderIn = null; public String getRecID() { return RecID; } public SM_ActivityBudgetsCustomFieldsQuery setRecID(String value) { this.RecID = value; return this; } public String getRecIDStartsWith() { return RecIDStartsWith; } public SM_ActivityBudgetsCustomFieldsQuery setRecIDStartsWith(String value) { this.RecIDStartsWith = value; return this; } public String getRecIDEndsWith() { return RecIDEndsWith; } public SM_ActivityBudgetsCustomFieldsQuery setRecIDEndsWith(String value) { this.RecIDEndsWith = value; return this; } public String getRecIDContains() { return RecIDContains; } public SM_ActivityBudgetsCustomFieldsQuery setRecIDContains(String value) { this.RecIDContains = value; return this; } public String getRecIDLike() { return RecIDLike; } public SM_ActivityBudgetsCustomFieldsQuery setRecIDLike(String value) { this.RecIDLike = value; return this; } public ArrayList getRecIDBetween() { return RecIDBetween; } public SM_ActivityBudgetsCustomFieldsQuery setRecIDBetween(ArrayList value) { this.RecIDBetween = value; return this; } public ArrayList getRecIDIn() { return RecIDIn; } public SM_ActivityBudgetsCustomFieldsQuery setRecIDIn(ArrayList value) { this.RecIDIn = value; return this; } public String getSettingName() { return SettingName; } public SM_ActivityBudgetsCustomFieldsQuery setSettingName(String value) { this.SettingName = value; return this; } public String getSettingNameStartsWith() { return SettingNameStartsWith; } public SM_ActivityBudgetsCustomFieldsQuery setSettingNameStartsWith(String value) { this.SettingNameStartsWith = value; return this; } public String getSettingNameEndsWith() { return SettingNameEndsWith; } public SM_ActivityBudgetsCustomFieldsQuery setSettingNameEndsWith(String value) { this.SettingNameEndsWith = value; return this; } public String getSettingNameContains() { return SettingNameContains; } public SM_ActivityBudgetsCustomFieldsQuery setSettingNameContains(String value) { this.SettingNameContains = value; return this; } public String getSettingNameLike() { return SettingNameLike; } public SM_ActivityBudgetsCustomFieldsQuery setSettingNameLike(String value) { this.SettingNameLike = value; return this; } public ArrayList getSettingNameBetween() { return SettingNameBetween; } public SM_ActivityBudgetsCustomFieldsQuery setSettingNameBetween(ArrayList value) { this.SettingNameBetween = value; return this; } public ArrayList getSettingNameIn() { return SettingNameIn; } public SM_ActivityBudgetsCustomFieldsQuery setSettingNameIn(ArrayList value) { this.SettingNameIn = value; return this; } public String getSettingDescription() { return SettingDescription; } public SM_ActivityBudgetsCustomFieldsQuery setSettingDescription(String value) { this.SettingDescription = value; return this; } public String getSettingDescriptionStartsWith() { return SettingDescriptionStartsWith; } public SM_ActivityBudgetsCustomFieldsQuery setSettingDescriptionStartsWith(String value) { this.SettingDescriptionStartsWith = value; return this; } public String getSettingDescriptionEndsWith() { return SettingDescriptionEndsWith; } public SM_ActivityBudgetsCustomFieldsQuery setSettingDescriptionEndsWith(String value) { this.SettingDescriptionEndsWith = value; return this; } public String getSettingDescriptionContains() { return SettingDescriptionContains; } public SM_ActivityBudgetsCustomFieldsQuery setSettingDescriptionContains(String value) { this.SettingDescriptionContains = value; return this; } public String getSettingDescriptionLike() { return SettingDescriptionLike; } public SM_ActivityBudgetsCustomFieldsQuery setSettingDescriptionLike(String value) { this.SettingDescriptionLike = value; return this; } public ArrayList getSettingDescriptionBetween() { return SettingDescriptionBetween; } public SM_ActivityBudgetsCustomFieldsQuery setSettingDescriptionBetween(ArrayList value) { this.SettingDescriptionBetween = value; return this; } public ArrayList getSettingDescriptionIn() { return SettingDescriptionIn; } public SM_ActivityBudgetsCustomFieldsQuery setSettingDescriptionIn(ArrayList value) { this.SettingDescriptionIn = value; return this; } public Integer getCellType() { return CellType; } public SM_ActivityBudgetsCustomFieldsQuery setCellType(Integer value) { this.CellType = value; return this; } public Integer getCellTypeGreaterThanOrEqualTo() { return CellTypeGreaterThanOrEqualTo; } public SM_ActivityBudgetsCustomFieldsQuery setCellTypeGreaterThanOrEqualTo(Integer value) { this.CellTypeGreaterThanOrEqualTo = value; return this; } public Integer getCellTypeGreaterThan() { return CellTypeGreaterThan; } public SM_ActivityBudgetsCustomFieldsQuery setCellTypeGreaterThan(Integer value) { this.CellTypeGreaterThan = value; return this; } public Integer getCellTypeLessThan() { return CellTypeLessThan; } public SM_ActivityBudgetsCustomFieldsQuery setCellTypeLessThan(Integer value) { this.CellTypeLessThan = value; return this; } public Integer getCellTypeLessThanOrEqualTo() { return CellTypeLessThanOrEqualTo; } public SM_ActivityBudgetsCustomFieldsQuery setCellTypeLessThanOrEqualTo(Integer value) { this.CellTypeLessThanOrEqualTo = value; return this; } public Integer getCellTypeNotEqualTo() { return CellTypeNotEqualTo; } public SM_ActivityBudgetsCustomFieldsQuery setCellTypeNotEqualTo(Integer value) { this.CellTypeNotEqualTo = value; return this; } public ArrayList getCellTypeBetween() { return CellTypeBetween; } public SM_ActivityBudgetsCustomFieldsQuery setCellTypeBetween(ArrayList value) { this.CellTypeBetween = value; return this; } public ArrayList getCellTypeIn() { return CellTypeIn; } public SM_ActivityBudgetsCustomFieldsQuery setCellTypeIn(ArrayList value) { this.CellTypeIn = value; return this; } public String getFieldParameter() { return FieldParameter; } public SM_ActivityBudgetsCustomFieldsQuery setFieldParameter(String value) { this.FieldParameter = value; return this; } public String getFieldParameterStartsWith() { return FieldParameterStartsWith; } public SM_ActivityBudgetsCustomFieldsQuery setFieldParameterStartsWith(String value) { this.FieldParameterStartsWith = value; return this; } public String getFieldParameterEndsWith() { return FieldParameterEndsWith; } public SM_ActivityBudgetsCustomFieldsQuery setFieldParameterEndsWith(String value) { this.FieldParameterEndsWith = value; return this; } public String getFieldParameterContains() { return FieldParameterContains; } public SM_ActivityBudgetsCustomFieldsQuery setFieldParameterContains(String value) { this.FieldParameterContains = value; return this; } public String getFieldParameterLike() { return FieldParameterLike; } public SM_ActivityBudgetsCustomFieldsQuery setFieldParameterLike(String value) { this.FieldParameterLike = value; return this; } public ArrayList getFieldParameterBetween() { return FieldParameterBetween; } public SM_ActivityBudgetsCustomFieldsQuery setFieldParameterBetween(ArrayList value) { this.FieldParameterBetween = value; return this; } public ArrayList getFieldParameterIn() { return FieldParameterIn; } public SM_ActivityBudgetsCustomFieldsQuery setFieldParameterIn(ArrayList value) { this.FieldParameterIn = value; return this; } public UUID getSyPluginRecID() { return SY_Plugin_RecID; } public SM_ActivityBudgetsCustomFieldsQuery setSyPluginRecID(UUID value) { this.SY_Plugin_RecID = value; return this; } public ArrayList getSyPluginRecIDIn() { return SY_Plugin_RecIDIn; } public SM_ActivityBudgetsCustomFieldsQuery setSyPluginRecIDIn(ArrayList value) { this.SY_Plugin_RecIDIn = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public SM_ActivityBudgetsCustomFieldsQuery setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getLastSavedDateTimeGreaterThanOrEqualTo() { return LastSavedDateTimeGreaterThanOrEqualTo; } public SM_ActivityBudgetsCustomFieldsQuery setLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.LastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeGreaterThan() { return LastSavedDateTimeGreaterThan; } public SM_ActivityBudgetsCustomFieldsQuery setLastSavedDateTimeGreaterThan(Date value) { this.LastSavedDateTimeGreaterThan = value; return this; } public Date getLastSavedDateTimeLessThan() { return LastSavedDateTimeLessThan; } public SM_ActivityBudgetsCustomFieldsQuery setLastSavedDateTimeLessThan(Date value) { this.LastSavedDateTimeLessThan = value; return this; } public Date getLastSavedDateTimeLessThanOrEqualTo() { return LastSavedDateTimeLessThanOrEqualTo; } public SM_ActivityBudgetsCustomFieldsQuery setLastSavedDateTimeLessThanOrEqualTo(Date value) { this.LastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeNotEqualTo() { return LastSavedDateTimeNotEqualTo; } public SM_ActivityBudgetsCustomFieldsQuery setLastSavedDateTimeNotEqualTo(Date value) { this.LastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getLastSavedDateTimeBetween() { return LastSavedDateTimeBetween; } public SM_ActivityBudgetsCustomFieldsQuery setLastSavedDateTimeBetween(ArrayList value) { this.LastSavedDateTimeBetween = value; return this; } public ArrayList getLastSavedDateTimeIn() { return LastSavedDateTimeIn; } public SM_ActivityBudgetsCustomFieldsQuery setLastSavedDateTimeIn(ArrayList value) { this.LastSavedDateTimeIn = value; return this; } public Integer getDisplayOrder() { return DisplayOrder; } public SM_ActivityBudgetsCustomFieldsQuery setDisplayOrder(Integer value) { this.DisplayOrder = value; return this; } public Integer getDisplayOrderGreaterThanOrEqualTo() { return DisplayOrderGreaterThanOrEqualTo; } public SM_ActivityBudgetsCustomFieldsQuery setDisplayOrderGreaterThanOrEqualTo(Integer value) { this.DisplayOrderGreaterThanOrEqualTo = value; return this; } public Integer getDisplayOrderGreaterThan() { return DisplayOrderGreaterThan; } public SM_ActivityBudgetsCustomFieldsQuery setDisplayOrderGreaterThan(Integer value) { this.DisplayOrderGreaterThan = value; return this; } public Integer getDisplayOrderLessThan() { return DisplayOrderLessThan; } public SM_ActivityBudgetsCustomFieldsQuery setDisplayOrderLessThan(Integer value) { this.DisplayOrderLessThan = value; return this; } public Integer getDisplayOrderLessThanOrEqualTo() { return DisplayOrderLessThanOrEqualTo; } public SM_ActivityBudgetsCustomFieldsQuery setDisplayOrderLessThanOrEqualTo(Integer value) { this.DisplayOrderLessThanOrEqualTo = value; return this; } public Integer getDisplayOrderNotEqualTo() { return DisplayOrderNotEqualTo; } public SM_ActivityBudgetsCustomFieldsQuery setDisplayOrderNotEqualTo(Integer value) { this.DisplayOrderNotEqualTo = value; return this; } public ArrayList getDisplayOrderBetween() { return DisplayOrderBetween; } public SM_ActivityBudgetsCustomFieldsQuery setDisplayOrderBetween(ArrayList value) { this.DisplayOrderBetween = value; return this; } public ArrayList getDisplayOrderIn() { return DisplayOrderIn; } public SM_ActivityBudgetsCustomFieldsQuery setDisplayOrderIn(ArrayList value) { this.DisplayOrderIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class SM_ActivityBudgetsCustomValuesQuery extends QueryDb implements IReturn> { public String RecID = null; public String RecIDStartsWith = null; public String RecIDEndsWith = null; public String RecIDContains = null; public String RecIDLike = null; public ArrayList RecIDBetween = null; public ArrayList RecIDIn = null; public String SM_ActivityBudgets_RecID = null; public String SM_ActivityBudgets_RecIDStartsWith = null; public String SM_ActivityBudgets_RecIDEndsWith = null; public String SM_ActivityBudgets_RecIDContains = null; public String SM_ActivityBudgets_RecIDLike = null; public ArrayList SM_ActivityBudgets_RecIDBetween = null; public ArrayList SM_ActivityBudgets_RecIDIn = null; public String SM_ActivityBudgetsCustomFields_RecID = null; public String SM_ActivityBudgetsCustomFields_RecIDStartsWith = null; public String SM_ActivityBudgetsCustomFields_RecIDEndsWith = null; public String SM_ActivityBudgetsCustomFields_RecIDContains = null; public String SM_ActivityBudgetsCustomFields_RecIDLike = null; public ArrayList SM_ActivityBudgetsCustomFields_RecIDBetween = null; public ArrayList SM_ActivityBudgetsCustomFields_RecIDIn = null; public String Contents = null; public String ContentsStartsWith = null; public String ContentsEndsWith = null; public String ContentsContains = null; public String ContentsLike = null; public ArrayList ContentsBetween = null; public ArrayList ContentsIn = null; public Date LastSavedDateTime = null; public Date LastSavedDateTimeGreaterThanOrEqualTo = null; public Date LastSavedDateTimeGreaterThan = null; public Date LastSavedDateTimeLessThan = null; public Date LastSavedDateTimeLessThanOrEqualTo = null; public Date LastSavedDateTimeNotEqualTo = null; public ArrayList LastSavedDateTimeBetween = null; public ArrayList LastSavedDateTimeIn = null; public String getRecID() { return RecID; } public SM_ActivityBudgetsCustomValuesQuery setRecID(String value) { this.RecID = value; return this; } public String getRecIDStartsWith() { return RecIDStartsWith; } public SM_ActivityBudgetsCustomValuesQuery setRecIDStartsWith(String value) { this.RecIDStartsWith = value; return this; } public String getRecIDEndsWith() { return RecIDEndsWith; } public SM_ActivityBudgetsCustomValuesQuery setRecIDEndsWith(String value) { this.RecIDEndsWith = value; return this; } public String getRecIDContains() { return RecIDContains; } public SM_ActivityBudgetsCustomValuesQuery setRecIDContains(String value) { this.RecIDContains = value; return this; } public String getRecIDLike() { return RecIDLike; } public SM_ActivityBudgetsCustomValuesQuery setRecIDLike(String value) { this.RecIDLike = value; return this; } public ArrayList getRecIDBetween() { return RecIDBetween; } public SM_ActivityBudgetsCustomValuesQuery setRecIDBetween(ArrayList value) { this.RecIDBetween = value; return this; } public ArrayList getRecIDIn() { return RecIDIn; } public SM_ActivityBudgetsCustomValuesQuery setRecIDIn(ArrayList value) { this.RecIDIn = value; return this; } public String getSmActivityBudgetsRecID() { return SM_ActivityBudgets_RecID; } public SM_ActivityBudgetsCustomValuesQuery setSmActivityBudgetsRecID(String value) { this.SM_ActivityBudgets_RecID = value; return this; } public String getSmActivityBudgetsRecIDStartsWith() { return SM_ActivityBudgets_RecIDStartsWith; } public SM_ActivityBudgetsCustomValuesQuery setSmActivityBudgetsRecIDStartsWith(String value) { this.SM_ActivityBudgets_RecIDStartsWith = value; return this; } public String getSmActivityBudgetsRecIDEndsWith() { return SM_ActivityBudgets_RecIDEndsWith; } public SM_ActivityBudgetsCustomValuesQuery setSmActivityBudgetsRecIDEndsWith(String value) { this.SM_ActivityBudgets_RecIDEndsWith = value; return this; } public String getSmActivityBudgetsRecIDContains() { return SM_ActivityBudgets_RecIDContains; } public SM_ActivityBudgetsCustomValuesQuery setSmActivityBudgetsRecIDContains(String value) { this.SM_ActivityBudgets_RecIDContains = value; return this; } public String getSmActivityBudgetsRecIDLike() { return SM_ActivityBudgets_RecIDLike; } public SM_ActivityBudgetsCustomValuesQuery setSmActivityBudgetsRecIDLike(String value) { this.SM_ActivityBudgets_RecIDLike = value; return this; } public ArrayList getSmActivityBudgetsRecIDBetween() { return SM_ActivityBudgets_RecIDBetween; } public SM_ActivityBudgetsCustomValuesQuery setSmActivityBudgetsRecIDBetween(ArrayList value) { this.SM_ActivityBudgets_RecIDBetween = value; return this; } public ArrayList getSmActivityBudgetsRecIDIn() { return SM_ActivityBudgets_RecIDIn; } public SM_ActivityBudgetsCustomValuesQuery setSmActivityBudgetsRecIDIn(ArrayList value) { this.SM_ActivityBudgets_RecIDIn = value; return this; } public String getSmActivityBudgetsCustomFieldsRecID() { return SM_ActivityBudgetsCustomFields_RecID; } public SM_ActivityBudgetsCustomValuesQuery setSmActivityBudgetsCustomFieldsRecID(String value) { this.SM_ActivityBudgetsCustomFields_RecID = value; return this; } public String getSmActivityBudgetsCustomFieldsRecIDStartsWith() { return SM_ActivityBudgetsCustomFields_RecIDStartsWith; } public SM_ActivityBudgetsCustomValuesQuery setSmActivityBudgetsCustomFieldsRecIDStartsWith(String value) { this.SM_ActivityBudgetsCustomFields_RecIDStartsWith = value; return this; } public String getSmActivityBudgetsCustomFieldsRecIDEndsWith() { return SM_ActivityBudgetsCustomFields_RecIDEndsWith; } public SM_ActivityBudgetsCustomValuesQuery setSmActivityBudgetsCustomFieldsRecIDEndsWith(String value) { this.SM_ActivityBudgetsCustomFields_RecIDEndsWith = value; return this; } public String getSmActivityBudgetsCustomFieldsRecIDContains() { return SM_ActivityBudgetsCustomFields_RecIDContains; } public SM_ActivityBudgetsCustomValuesQuery setSmActivityBudgetsCustomFieldsRecIDContains(String value) { this.SM_ActivityBudgetsCustomFields_RecIDContains = value; return this; } public String getSmActivityBudgetsCustomFieldsRecIDLike() { return SM_ActivityBudgetsCustomFields_RecIDLike; } public SM_ActivityBudgetsCustomValuesQuery setSmActivityBudgetsCustomFieldsRecIDLike(String value) { this.SM_ActivityBudgetsCustomFields_RecIDLike = value; return this; } public ArrayList getSmActivityBudgetsCustomFieldsRecIDBetween() { return SM_ActivityBudgetsCustomFields_RecIDBetween; } public SM_ActivityBudgetsCustomValuesQuery setSmActivityBudgetsCustomFieldsRecIDBetween(ArrayList value) { this.SM_ActivityBudgetsCustomFields_RecIDBetween = value; return this; } public ArrayList getSmActivityBudgetsCustomFieldsRecIDIn() { return SM_ActivityBudgetsCustomFields_RecIDIn; } public SM_ActivityBudgetsCustomValuesQuery setSmActivityBudgetsCustomFieldsRecIDIn(ArrayList value) { this.SM_ActivityBudgetsCustomFields_RecIDIn = value; return this; } public String getContents() { return Contents; } public SM_ActivityBudgetsCustomValuesQuery setContents(String value) { this.Contents = value; return this; } public String getContentsStartsWith() { return ContentsStartsWith; } public SM_ActivityBudgetsCustomValuesQuery setContentsStartsWith(String value) { this.ContentsStartsWith = value; return this; } public String getContentsEndsWith() { return ContentsEndsWith; } public SM_ActivityBudgetsCustomValuesQuery setContentsEndsWith(String value) { this.ContentsEndsWith = value; return this; } public String getContentsContains() { return ContentsContains; } public SM_ActivityBudgetsCustomValuesQuery setContentsContains(String value) { this.ContentsContains = value; return this; } public String getContentsLike() { return ContentsLike; } public SM_ActivityBudgetsCustomValuesQuery setContentsLike(String value) { this.ContentsLike = value; return this; } public ArrayList getContentsBetween() { return ContentsBetween; } public SM_ActivityBudgetsCustomValuesQuery setContentsBetween(ArrayList value) { this.ContentsBetween = value; return this; } public ArrayList getContentsIn() { return ContentsIn; } public SM_ActivityBudgetsCustomValuesQuery setContentsIn(ArrayList value) { this.ContentsIn = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public SM_ActivityBudgetsCustomValuesQuery setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getLastSavedDateTimeGreaterThanOrEqualTo() { return LastSavedDateTimeGreaterThanOrEqualTo; } public SM_ActivityBudgetsCustomValuesQuery setLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.LastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeGreaterThan() { return LastSavedDateTimeGreaterThan; } public SM_ActivityBudgetsCustomValuesQuery setLastSavedDateTimeGreaterThan(Date value) { this.LastSavedDateTimeGreaterThan = value; return this; } public Date getLastSavedDateTimeLessThan() { return LastSavedDateTimeLessThan; } public SM_ActivityBudgetsCustomValuesQuery setLastSavedDateTimeLessThan(Date value) { this.LastSavedDateTimeLessThan = value; return this; } public Date getLastSavedDateTimeLessThanOrEqualTo() { return LastSavedDateTimeLessThanOrEqualTo; } public SM_ActivityBudgetsCustomValuesQuery setLastSavedDateTimeLessThanOrEqualTo(Date value) { this.LastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeNotEqualTo() { return LastSavedDateTimeNotEqualTo; } public SM_ActivityBudgetsCustomValuesQuery setLastSavedDateTimeNotEqualTo(Date value) { this.LastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getLastSavedDateTimeBetween() { return LastSavedDateTimeBetween; } public SM_ActivityBudgetsCustomValuesQuery setLastSavedDateTimeBetween(ArrayList value) { this.LastSavedDateTimeBetween = value; return this; } public ArrayList getLastSavedDateTimeIn() { return LastSavedDateTimeIn; } public SM_ActivityBudgetsCustomValuesQuery setLastSavedDateTimeIn(ArrayList value) { this.LastSavedDateTimeIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class SM_CashSaleQuery extends QueryDb implements IReturn> { public String RecID = null; public String RecIDStartsWith = null; public String RecIDEndsWith = null; public String RecIDContains = null; public String RecIDLike = null; public ArrayList RecIDBetween = null; public ArrayList RecIDIn = null; public String SM_Tasks_RecID = null; public String SM_Tasks_RecIDStartsWith = null; public String SM_Tasks_RecIDEndsWith = null; public String SM_Tasks_RecIDContains = null; public String SM_Tasks_RecIDLike = null; public ArrayList SM_Tasks_RecIDBetween = null; public ArrayList SM_Tasks_RecIDIn = null; public String Name = null; public String NameStartsWith = null; public String NameEndsWith = null; public String NameContains = null; public String NameLike = null; public ArrayList NameBetween = null; public ArrayList NameIn = null; public String Company = null; public String CompanyStartsWith = null; public String CompanyEndsWith = null; public String CompanyContains = null; public String CompanyLike = null; public ArrayList CompanyBetween = null; public ArrayList CompanyIn = null; public String Address1 = null; public String Address1StartsWith = null; public String Address1EndsWith = null; public String Address1Contains = null; public String Address1Like = null; public ArrayList Address1Between = null; public ArrayList Address1In = null; public String Address2 = null; public String Address2StartsWith = null; public String Address2EndsWith = null; public String Address2Contains = null; public String Address2Like = null; public ArrayList Address2Between = null; public ArrayList Address2In = null; public String Address3 = null; public String Address3StartsWith = null; public String Address3EndsWith = null; public String Address3Contains = null; public String Address3Like = null; public ArrayList Address3Between = null; public ArrayList Address3In = null; public String Address4 = null; public String Address4StartsWith = null; public String Address4EndsWith = null; public String Address4Contains = null; public String Address4Like = null; public ArrayList Address4Between = null; public ArrayList Address4In = null; public String PostCode = null; public String PostCodeStartsWith = null; public String PostCodeEndsWith = null; public String PostCodeContains = null; public String PostCodeLike = null; public ArrayList PostCodeBetween = null; public ArrayList PostCodeIn = null; public String Phone = null; public String PhoneStartsWith = null; public String PhoneEndsWith = null; public String PhoneContains = null; public String PhoneLike = null; public ArrayList PhoneBetween = null; public ArrayList PhoneIn = null; public String Fax = null; public String FaxStartsWith = null; public String FaxEndsWith = null; public String FaxContains = null; public String FaxLike = null; public ArrayList FaxBetween = null; public ArrayList FaxIn = null; public String ContactName = null; public String ContactNameStartsWith = null; public String ContactNameEndsWith = null; public String ContactNameContains = null; public String ContactNameLike = null; public ArrayList ContactNameBetween = null; public ArrayList ContactNameIn = null; public ArrayList RowHash = null; public String Country = null; public String CountryStartsWith = null; public String CountryEndsWith = null; public String CountryContains = null; public String CountryLike = null; public ArrayList CountryBetween = null; public ArrayList CountryIn = null; public String getRecID() { return RecID; } public SM_CashSaleQuery setRecID(String value) { this.RecID = value; return this; } public String getRecIDStartsWith() { return RecIDStartsWith; } public SM_CashSaleQuery setRecIDStartsWith(String value) { this.RecIDStartsWith = value; return this; } public String getRecIDEndsWith() { return RecIDEndsWith; } public SM_CashSaleQuery setRecIDEndsWith(String value) { this.RecIDEndsWith = value; return this; } public String getRecIDContains() { return RecIDContains; } public SM_CashSaleQuery setRecIDContains(String value) { this.RecIDContains = value; return this; } public String getRecIDLike() { return RecIDLike; } public SM_CashSaleQuery setRecIDLike(String value) { this.RecIDLike = value; return this; } public ArrayList getRecIDBetween() { return RecIDBetween; } public SM_CashSaleQuery setRecIDBetween(ArrayList value) { this.RecIDBetween = value; return this; } public ArrayList getRecIDIn() { return RecIDIn; } public SM_CashSaleQuery setRecIDIn(ArrayList value) { this.RecIDIn = value; return this; } public String getSmTasksRecID() { return SM_Tasks_RecID; } public SM_CashSaleQuery setSmTasksRecID(String value) { this.SM_Tasks_RecID = value; return this; } public String getSmTasksRecIDStartsWith() { return SM_Tasks_RecIDStartsWith; } public SM_CashSaleQuery setSmTasksRecIDStartsWith(String value) { this.SM_Tasks_RecIDStartsWith = value; return this; } public String getSmTasksRecIDEndsWith() { return SM_Tasks_RecIDEndsWith; } public SM_CashSaleQuery setSmTasksRecIDEndsWith(String value) { this.SM_Tasks_RecIDEndsWith = value; return this; } public String getSmTasksRecIDContains() { return SM_Tasks_RecIDContains; } public SM_CashSaleQuery setSmTasksRecIDContains(String value) { this.SM_Tasks_RecIDContains = value; return this; } public String getSmTasksRecIDLike() { return SM_Tasks_RecIDLike; } public SM_CashSaleQuery setSmTasksRecIDLike(String value) { this.SM_Tasks_RecIDLike = value; return this; } public ArrayList getSmTasksRecIDBetween() { return SM_Tasks_RecIDBetween; } public SM_CashSaleQuery setSmTasksRecIDBetween(ArrayList value) { this.SM_Tasks_RecIDBetween = value; return this; } public ArrayList getSmTasksRecIDIn() { return SM_Tasks_RecIDIn; } public SM_CashSaleQuery setSmTasksRecIDIn(ArrayList value) { this.SM_Tasks_RecIDIn = value; return this; } public String getName() { return Name; } public SM_CashSaleQuery setName(String value) { this.Name = value; return this; } public String getNameStartsWith() { return NameStartsWith; } public SM_CashSaleQuery setNameStartsWith(String value) { this.NameStartsWith = value; return this; } public String getNameEndsWith() { return NameEndsWith; } public SM_CashSaleQuery setNameEndsWith(String value) { this.NameEndsWith = value; return this; } public String getNameContains() { return NameContains; } public SM_CashSaleQuery setNameContains(String value) { this.NameContains = value; return this; } public String getNameLike() { return NameLike; } public SM_CashSaleQuery setNameLike(String value) { this.NameLike = value; return this; } public ArrayList getNameBetween() { return NameBetween; } public SM_CashSaleQuery setNameBetween(ArrayList value) { this.NameBetween = value; return this; } public ArrayList getNameIn() { return NameIn; } public SM_CashSaleQuery setNameIn(ArrayList value) { this.NameIn = value; return this; } public String getCompany() { return Company; } public SM_CashSaleQuery setCompany(String value) { this.Company = value; return this; } public String getCompanyStartsWith() { return CompanyStartsWith; } public SM_CashSaleQuery setCompanyStartsWith(String value) { this.CompanyStartsWith = value; return this; } public String getCompanyEndsWith() { return CompanyEndsWith; } public SM_CashSaleQuery setCompanyEndsWith(String value) { this.CompanyEndsWith = value; return this; } public String getCompanyContains() { return CompanyContains; } public SM_CashSaleQuery setCompanyContains(String value) { this.CompanyContains = value; return this; } public String getCompanyLike() { return CompanyLike; } public SM_CashSaleQuery setCompanyLike(String value) { this.CompanyLike = value; return this; } public ArrayList getCompanyBetween() { return CompanyBetween; } public SM_CashSaleQuery setCompanyBetween(ArrayList value) { this.CompanyBetween = value; return this; } public ArrayList getCompanyIn() { return CompanyIn; } public SM_CashSaleQuery setCompanyIn(ArrayList value) { this.CompanyIn = value; return this; } public String getAddress1() { return Address1; } public SM_CashSaleQuery setAddress1(String value) { this.Address1 = value; return this; } public String getAddress1StartsWith() { return Address1StartsWith; } public SM_CashSaleQuery setAddress1StartsWith(String value) { this.Address1StartsWith = value; return this; } public String getAddress1EndsWith() { return Address1EndsWith; } public SM_CashSaleQuery setAddress1EndsWith(String value) { this.Address1EndsWith = value; return this; } public String getAddress1Contains() { return Address1Contains; } public SM_CashSaleQuery setAddress1Contains(String value) { this.Address1Contains = value; return this; } public String getAddress1Like() { return Address1Like; } public SM_CashSaleQuery setAddress1Like(String value) { this.Address1Like = value; return this; } public ArrayList getAddress1Between() { return Address1Between; } public SM_CashSaleQuery setAddress1Between(ArrayList value) { this.Address1Between = value; return this; } public ArrayList getAddress1In() { return Address1In; } public SM_CashSaleQuery setAddress1In(ArrayList value) { this.Address1In = value; return this; } public String getAddress2() { return Address2; } public SM_CashSaleQuery setAddress2(String value) { this.Address2 = value; return this; } public String getAddress2StartsWith() { return Address2StartsWith; } public SM_CashSaleQuery setAddress2StartsWith(String value) { this.Address2StartsWith = value; return this; } public String getAddress2EndsWith() { return Address2EndsWith; } public SM_CashSaleQuery setAddress2EndsWith(String value) { this.Address2EndsWith = value; return this; } public String getAddress2Contains() { return Address2Contains; } public SM_CashSaleQuery setAddress2Contains(String value) { this.Address2Contains = value; return this; } public String getAddress2Like() { return Address2Like; } public SM_CashSaleQuery setAddress2Like(String value) { this.Address2Like = value; return this; } public ArrayList getAddress2Between() { return Address2Between; } public SM_CashSaleQuery setAddress2Between(ArrayList value) { this.Address2Between = value; return this; } public ArrayList getAddress2In() { return Address2In; } public SM_CashSaleQuery setAddress2In(ArrayList value) { this.Address2In = value; return this; } public String getAddress3() { return Address3; } public SM_CashSaleQuery setAddress3(String value) { this.Address3 = value; return this; } public String getAddress3StartsWith() { return Address3StartsWith; } public SM_CashSaleQuery setAddress3StartsWith(String value) { this.Address3StartsWith = value; return this; } public String getAddress3EndsWith() { return Address3EndsWith; } public SM_CashSaleQuery setAddress3EndsWith(String value) { this.Address3EndsWith = value; return this; } public String getAddress3Contains() { return Address3Contains; } public SM_CashSaleQuery setAddress3Contains(String value) { this.Address3Contains = value; return this; } public String getAddress3Like() { return Address3Like; } public SM_CashSaleQuery setAddress3Like(String value) { this.Address3Like = value; return this; } public ArrayList getAddress3Between() { return Address3Between; } public SM_CashSaleQuery setAddress3Between(ArrayList value) { this.Address3Between = value; return this; } public ArrayList getAddress3In() { return Address3In; } public SM_CashSaleQuery setAddress3In(ArrayList value) { this.Address3In = value; return this; } public String getAddress4() { return Address4; } public SM_CashSaleQuery setAddress4(String value) { this.Address4 = value; return this; } public String getAddress4StartsWith() { return Address4StartsWith; } public SM_CashSaleQuery setAddress4StartsWith(String value) { this.Address4StartsWith = value; return this; } public String getAddress4EndsWith() { return Address4EndsWith; } public SM_CashSaleQuery setAddress4EndsWith(String value) { this.Address4EndsWith = value; return this; } public String getAddress4Contains() { return Address4Contains; } public SM_CashSaleQuery setAddress4Contains(String value) { this.Address4Contains = value; return this; } public String getAddress4Like() { return Address4Like; } public SM_CashSaleQuery setAddress4Like(String value) { this.Address4Like = value; return this; } public ArrayList getAddress4Between() { return Address4Between; } public SM_CashSaleQuery setAddress4Between(ArrayList value) { this.Address4Between = value; return this; } public ArrayList getAddress4In() { return Address4In; } public SM_CashSaleQuery setAddress4In(ArrayList value) { this.Address4In = value; return this; } public String getPostCode() { return PostCode; } public SM_CashSaleQuery setPostCode(String value) { this.PostCode = value; return this; } public String getPostCodeStartsWith() { return PostCodeStartsWith; } public SM_CashSaleQuery setPostCodeStartsWith(String value) { this.PostCodeStartsWith = value; return this; } public String getPostCodeEndsWith() { return PostCodeEndsWith; } public SM_CashSaleQuery setPostCodeEndsWith(String value) { this.PostCodeEndsWith = value; return this; } public String getPostCodeContains() { return PostCodeContains; } public SM_CashSaleQuery setPostCodeContains(String value) { this.PostCodeContains = value; return this; } public String getPostCodeLike() { return PostCodeLike; } public SM_CashSaleQuery setPostCodeLike(String value) { this.PostCodeLike = value; return this; } public ArrayList getPostCodeBetween() { return PostCodeBetween; } public SM_CashSaleQuery setPostCodeBetween(ArrayList value) { this.PostCodeBetween = value; return this; } public ArrayList getPostCodeIn() { return PostCodeIn; } public SM_CashSaleQuery setPostCodeIn(ArrayList value) { this.PostCodeIn = value; return this; } public String getPhone() { return Phone; } public SM_CashSaleQuery setPhone(String value) { this.Phone = value; return this; } public String getPhoneStartsWith() { return PhoneStartsWith; } public SM_CashSaleQuery setPhoneStartsWith(String value) { this.PhoneStartsWith = value; return this; } public String getPhoneEndsWith() { return PhoneEndsWith; } public SM_CashSaleQuery setPhoneEndsWith(String value) { this.PhoneEndsWith = value; return this; } public String getPhoneContains() { return PhoneContains; } public SM_CashSaleQuery setPhoneContains(String value) { this.PhoneContains = value; return this; } public String getPhoneLike() { return PhoneLike; } public SM_CashSaleQuery setPhoneLike(String value) { this.PhoneLike = value; return this; } public ArrayList getPhoneBetween() { return PhoneBetween; } public SM_CashSaleQuery setPhoneBetween(ArrayList value) { this.PhoneBetween = value; return this; } public ArrayList getPhoneIn() { return PhoneIn; } public SM_CashSaleQuery setPhoneIn(ArrayList value) { this.PhoneIn = value; return this; } public String getFax() { return Fax; } public SM_CashSaleQuery setFax(String value) { this.Fax = value; return this; } public String getFaxStartsWith() { return FaxStartsWith; } public SM_CashSaleQuery setFaxStartsWith(String value) { this.FaxStartsWith = value; return this; } public String getFaxEndsWith() { return FaxEndsWith; } public SM_CashSaleQuery setFaxEndsWith(String value) { this.FaxEndsWith = value; return this; } public String getFaxContains() { return FaxContains; } public SM_CashSaleQuery setFaxContains(String value) { this.FaxContains = value; return this; } public String getFaxLike() { return FaxLike; } public SM_CashSaleQuery setFaxLike(String value) { this.FaxLike = value; return this; } public ArrayList getFaxBetween() { return FaxBetween; } public SM_CashSaleQuery setFaxBetween(ArrayList value) { this.FaxBetween = value; return this; } public ArrayList getFaxIn() { return FaxIn; } public SM_CashSaleQuery setFaxIn(ArrayList value) { this.FaxIn = value; return this; } public String getContactName() { return ContactName; } public SM_CashSaleQuery setContactName(String value) { this.ContactName = value; return this; } public String getContactNameStartsWith() { return ContactNameStartsWith; } public SM_CashSaleQuery setContactNameStartsWith(String value) { this.ContactNameStartsWith = value; return this; } public String getContactNameEndsWith() { return ContactNameEndsWith; } public SM_CashSaleQuery setContactNameEndsWith(String value) { this.ContactNameEndsWith = value; return this; } public String getContactNameContains() { return ContactNameContains; } public SM_CashSaleQuery setContactNameContains(String value) { this.ContactNameContains = value; return this; } public String getContactNameLike() { return ContactNameLike; } public SM_CashSaleQuery setContactNameLike(String value) { this.ContactNameLike = value; return this; } public ArrayList getContactNameBetween() { return ContactNameBetween; } public SM_CashSaleQuery setContactNameBetween(ArrayList value) { this.ContactNameBetween = value; return this; } public ArrayList getContactNameIn() { return ContactNameIn; } public SM_CashSaleQuery setContactNameIn(ArrayList value) { this.ContactNameIn = value; return this; } public ArrayList getRowHash() { return RowHash; } public SM_CashSaleQuery setRowHash(ArrayList value) { this.RowHash = value; return this; } public String getCountry() { return Country; } public SM_CashSaleQuery setCountry(String value) { this.Country = value; return this; } public String getCountryStartsWith() { return CountryStartsWith; } public SM_CashSaleQuery setCountryStartsWith(String value) { this.CountryStartsWith = value; return this; } public String getCountryEndsWith() { return CountryEndsWith; } public SM_CashSaleQuery setCountryEndsWith(String value) { this.CountryEndsWith = value; return this; } public String getCountryContains() { return CountryContains; } public SM_CashSaleQuery setCountryContains(String value) { this.CountryContains = value; return this; } public String getCountryLike() { return CountryLike; } public SM_CashSaleQuery setCountryLike(String value) { this.CountryLike = value; return this; } public ArrayList getCountryBetween() { return CountryBetween; } public SM_CashSaleQuery setCountryBetween(ArrayList value) { this.CountryBetween = value; return this; } public ArrayList getCountryIn() { return CountryIn; } public SM_CashSaleQuery setCountryIn(ArrayList value) { this.CountryIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class SM_CustomerReturnLineDetailsQuery extends QueryDb implements IReturn> { public String CustomerReturnLineDetailsID = null; public String CustomerReturnLineDetailsIDStartsWith = null; public String CustomerReturnLineDetailsIDEndsWith = null; public String CustomerReturnLineDetailsIDContains = null; public String CustomerReturnLineDetailsIDLike = null; public ArrayList CustomerReturnLineDetailsIDBetween = null; public ArrayList CustomerReturnLineDetailsIDIn = null; public Date LastSavedDateTime = null; public Date LastSavedDateTimeGreaterThanOrEqualTo = null; public Date LastSavedDateTimeGreaterThan = null; public Date LastSavedDateTimeLessThan = null; public Date LastSavedDateTimeLessThanOrEqualTo = null; public Date LastSavedDateTimeNotEqualTo = null; public ArrayList LastSavedDateTimeBetween = null; public ArrayList LastSavedDateTimeIn = null; public String CustomerReturnID = null; public String CustomerReturnIDStartsWith = null; public String CustomerReturnIDEndsWith = null; public String CustomerReturnIDContains = null; public String CustomerReturnIDLike = null; public ArrayList CustomerReturnIDBetween = null; public ArrayList CustomerReturnIDIn = null; public BigDecimal Quantity = null; public BigDecimal QuantityGreaterThanOrEqualTo = null; public BigDecimal QuantityGreaterThan = null; public BigDecimal QuantityLessThan = null; public BigDecimal QuantityLessThanOrEqualTo = null; public BigDecimal QuantityNotEqualTo = null; public ArrayList QuantityBetween = null; public ArrayList QuantityIn = null; public BigDecimal Cost = null; public BigDecimal CostGreaterThanOrEqualTo = null; public BigDecimal CostGreaterThan = null; public BigDecimal CostLessThan = null; public BigDecimal CostLessThanOrEqualTo = null; public BigDecimal CostNotEqualTo = null; public ArrayList CostBetween = null; public ArrayList CostIn = null; public String SerialNo = null; public String SerialNoStartsWith = null; public String SerialNoEndsWith = null; public String SerialNoContains = null; public String SerialNoLike = null; public ArrayList SerialNoBetween = null; public ArrayList SerialNoIn = null; public String BinLocationDesc = null; public String BinLocationDescStartsWith = null; public String BinLocationDescEndsWith = null; public String BinLocationDescContains = null; public String BinLocationDescLike = null; public ArrayList BinLocationDescBetween = null; public ArrayList BinLocationDescIn = null; public Date ExpiryDate = null; public Date ExpiryDateGreaterThanOrEqualTo = null; public Date ExpiryDateGreaterThan = null; public Date ExpiryDateLessThan = null; public Date ExpiryDateLessThanOrEqualTo = null; public Date ExpiryDateNotEqualTo = null; public ArrayList ExpiryDateBetween = null; public ArrayList ExpiryDateIn = null; public String SOHID = null; public String SOHIDStartsWith = null; public String SOHIDEndsWith = null; public String SOHIDContains = null; public String SOHIDLike = null; public ArrayList SOHIDBetween = null; public ArrayList SOHIDIn = null; public UUID SY_Plugin_RecID = null; public ArrayList SY_Plugin_RecIDIn = null; public String getCustomerReturnLineDetailsID() { return CustomerReturnLineDetailsID; } public SM_CustomerReturnLineDetailsQuery setCustomerReturnLineDetailsID(String value) { this.CustomerReturnLineDetailsID = value; return this; } public String getCustomerReturnLineDetailsIDStartsWith() { return CustomerReturnLineDetailsIDStartsWith; } public SM_CustomerReturnLineDetailsQuery setCustomerReturnLineDetailsIDStartsWith(String value) { this.CustomerReturnLineDetailsIDStartsWith = value; return this; } public String getCustomerReturnLineDetailsIDEndsWith() { return CustomerReturnLineDetailsIDEndsWith; } public SM_CustomerReturnLineDetailsQuery setCustomerReturnLineDetailsIDEndsWith(String value) { this.CustomerReturnLineDetailsIDEndsWith = value; return this; } public String getCustomerReturnLineDetailsIDContains() { return CustomerReturnLineDetailsIDContains; } public SM_CustomerReturnLineDetailsQuery setCustomerReturnLineDetailsIDContains(String value) { this.CustomerReturnLineDetailsIDContains = value; return this; } public String getCustomerReturnLineDetailsIDLike() { return CustomerReturnLineDetailsIDLike; } public SM_CustomerReturnLineDetailsQuery setCustomerReturnLineDetailsIDLike(String value) { this.CustomerReturnLineDetailsIDLike = value; return this; } public ArrayList getCustomerReturnLineDetailsIDBetween() { return CustomerReturnLineDetailsIDBetween; } public SM_CustomerReturnLineDetailsQuery setCustomerReturnLineDetailsIDBetween(ArrayList value) { this.CustomerReturnLineDetailsIDBetween = value; return this; } public ArrayList getCustomerReturnLineDetailsIDIn() { return CustomerReturnLineDetailsIDIn; } public SM_CustomerReturnLineDetailsQuery setCustomerReturnLineDetailsIDIn(ArrayList value) { this.CustomerReturnLineDetailsIDIn = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public SM_CustomerReturnLineDetailsQuery setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getLastSavedDateTimeGreaterThanOrEqualTo() { return LastSavedDateTimeGreaterThanOrEqualTo; } public SM_CustomerReturnLineDetailsQuery setLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.LastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeGreaterThan() { return LastSavedDateTimeGreaterThan; } public SM_CustomerReturnLineDetailsQuery setLastSavedDateTimeGreaterThan(Date value) { this.LastSavedDateTimeGreaterThan = value; return this; } public Date getLastSavedDateTimeLessThan() { return LastSavedDateTimeLessThan; } public SM_CustomerReturnLineDetailsQuery setLastSavedDateTimeLessThan(Date value) { this.LastSavedDateTimeLessThan = value; return this; } public Date getLastSavedDateTimeLessThanOrEqualTo() { return LastSavedDateTimeLessThanOrEqualTo; } public SM_CustomerReturnLineDetailsQuery setLastSavedDateTimeLessThanOrEqualTo(Date value) { this.LastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeNotEqualTo() { return LastSavedDateTimeNotEqualTo; } public SM_CustomerReturnLineDetailsQuery setLastSavedDateTimeNotEqualTo(Date value) { this.LastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getLastSavedDateTimeBetween() { return LastSavedDateTimeBetween; } public SM_CustomerReturnLineDetailsQuery setLastSavedDateTimeBetween(ArrayList value) { this.LastSavedDateTimeBetween = value; return this; } public ArrayList getLastSavedDateTimeIn() { return LastSavedDateTimeIn; } public SM_CustomerReturnLineDetailsQuery setLastSavedDateTimeIn(ArrayList value) { this.LastSavedDateTimeIn = value; return this; } public String getCustomerReturnID() { return CustomerReturnID; } public SM_CustomerReturnLineDetailsQuery setCustomerReturnID(String value) { this.CustomerReturnID = value; return this; } public String getCustomerReturnIDStartsWith() { return CustomerReturnIDStartsWith; } public SM_CustomerReturnLineDetailsQuery setCustomerReturnIDStartsWith(String value) { this.CustomerReturnIDStartsWith = value; return this; } public String getCustomerReturnIDEndsWith() { return CustomerReturnIDEndsWith; } public SM_CustomerReturnLineDetailsQuery setCustomerReturnIDEndsWith(String value) { this.CustomerReturnIDEndsWith = value; return this; } public String getCustomerReturnIDContains() { return CustomerReturnIDContains; } public SM_CustomerReturnLineDetailsQuery setCustomerReturnIDContains(String value) { this.CustomerReturnIDContains = value; return this; } public String getCustomerReturnIDLike() { return CustomerReturnIDLike; } public SM_CustomerReturnLineDetailsQuery setCustomerReturnIDLike(String value) { this.CustomerReturnIDLike = value; return this; } public ArrayList getCustomerReturnIDBetween() { return CustomerReturnIDBetween; } public SM_CustomerReturnLineDetailsQuery setCustomerReturnIDBetween(ArrayList value) { this.CustomerReturnIDBetween = value; return this; } public ArrayList getCustomerReturnIDIn() { return CustomerReturnIDIn; } public SM_CustomerReturnLineDetailsQuery setCustomerReturnIDIn(ArrayList value) { this.CustomerReturnIDIn = value; return this; } public BigDecimal getQuantity() { return Quantity; } public SM_CustomerReturnLineDetailsQuery setQuantity(BigDecimal value) { this.Quantity = value; return this; } public BigDecimal getQuantityGreaterThanOrEqualTo() { return QuantityGreaterThanOrEqualTo; } public SM_CustomerReturnLineDetailsQuery setQuantityGreaterThanOrEqualTo(BigDecimal value) { this.QuantityGreaterThanOrEqualTo = value; return this; } public BigDecimal getQuantityGreaterThan() { return QuantityGreaterThan; } public SM_CustomerReturnLineDetailsQuery setQuantityGreaterThan(BigDecimal value) { this.QuantityGreaterThan = value; return this; } public BigDecimal getQuantityLessThan() { return QuantityLessThan; } public SM_CustomerReturnLineDetailsQuery setQuantityLessThan(BigDecimal value) { this.QuantityLessThan = value; return this; } public BigDecimal getQuantityLessThanOrEqualTo() { return QuantityLessThanOrEqualTo; } public SM_CustomerReturnLineDetailsQuery setQuantityLessThanOrEqualTo(BigDecimal value) { this.QuantityLessThanOrEqualTo = value; return this; } public BigDecimal getQuantityNotEqualTo() { return QuantityNotEqualTo; } public SM_CustomerReturnLineDetailsQuery setQuantityNotEqualTo(BigDecimal value) { this.QuantityNotEqualTo = value; return this; } public ArrayList getQuantityBetween() { return QuantityBetween; } public SM_CustomerReturnLineDetailsQuery setQuantityBetween(ArrayList value) { this.QuantityBetween = value; return this; } public ArrayList getQuantityIn() { return QuantityIn; } public SM_CustomerReturnLineDetailsQuery setQuantityIn(ArrayList value) { this.QuantityIn = value; return this; } public BigDecimal getCost() { return Cost; } public SM_CustomerReturnLineDetailsQuery setCost(BigDecimal value) { this.Cost = value; return this; } public BigDecimal getCostGreaterThanOrEqualTo() { return CostGreaterThanOrEqualTo; } public SM_CustomerReturnLineDetailsQuery setCostGreaterThanOrEqualTo(BigDecimal value) { this.CostGreaterThanOrEqualTo = value; return this; } public BigDecimal getCostGreaterThan() { return CostGreaterThan; } public SM_CustomerReturnLineDetailsQuery setCostGreaterThan(BigDecimal value) { this.CostGreaterThan = value; return this; } public BigDecimal getCostLessThan() { return CostLessThan; } public SM_CustomerReturnLineDetailsQuery setCostLessThan(BigDecimal value) { this.CostLessThan = value; return this; } public BigDecimal getCostLessThanOrEqualTo() { return CostLessThanOrEqualTo; } public SM_CustomerReturnLineDetailsQuery setCostLessThanOrEqualTo(BigDecimal value) { this.CostLessThanOrEqualTo = value; return this; } public BigDecimal getCostNotEqualTo() { return CostNotEqualTo; } public SM_CustomerReturnLineDetailsQuery setCostNotEqualTo(BigDecimal value) { this.CostNotEqualTo = value; return this; } public ArrayList getCostBetween() { return CostBetween; } public SM_CustomerReturnLineDetailsQuery setCostBetween(ArrayList value) { this.CostBetween = value; return this; } public ArrayList getCostIn() { return CostIn; } public SM_CustomerReturnLineDetailsQuery setCostIn(ArrayList value) { this.CostIn = value; return this; } public String getSerialNo() { return SerialNo; } public SM_CustomerReturnLineDetailsQuery setSerialNo(String value) { this.SerialNo = value; return this; } public String getSerialNoStartsWith() { return SerialNoStartsWith; } public SM_CustomerReturnLineDetailsQuery setSerialNoStartsWith(String value) { this.SerialNoStartsWith = value; return this; } public String getSerialNoEndsWith() { return SerialNoEndsWith; } public SM_CustomerReturnLineDetailsQuery setSerialNoEndsWith(String value) { this.SerialNoEndsWith = value; return this; } public String getSerialNoContains() { return SerialNoContains; } public SM_CustomerReturnLineDetailsQuery setSerialNoContains(String value) { this.SerialNoContains = value; return this; } public String getSerialNoLike() { return SerialNoLike; } public SM_CustomerReturnLineDetailsQuery setSerialNoLike(String value) { this.SerialNoLike = value; return this; } public ArrayList getSerialNoBetween() { return SerialNoBetween; } public SM_CustomerReturnLineDetailsQuery setSerialNoBetween(ArrayList value) { this.SerialNoBetween = value; return this; } public ArrayList getSerialNoIn() { return SerialNoIn; } public SM_CustomerReturnLineDetailsQuery setSerialNoIn(ArrayList value) { this.SerialNoIn = value; return this; } public String getBinLocationDesc() { return BinLocationDesc; } public SM_CustomerReturnLineDetailsQuery setBinLocationDesc(String value) { this.BinLocationDesc = value; return this; } public String getBinLocationDescStartsWith() { return BinLocationDescStartsWith; } public SM_CustomerReturnLineDetailsQuery setBinLocationDescStartsWith(String value) { this.BinLocationDescStartsWith = value; return this; } public String getBinLocationDescEndsWith() { return BinLocationDescEndsWith; } public SM_CustomerReturnLineDetailsQuery setBinLocationDescEndsWith(String value) { this.BinLocationDescEndsWith = value; return this; } public String getBinLocationDescContains() { return BinLocationDescContains; } public SM_CustomerReturnLineDetailsQuery setBinLocationDescContains(String value) { this.BinLocationDescContains = value; return this; } public String getBinLocationDescLike() { return BinLocationDescLike; } public SM_CustomerReturnLineDetailsQuery setBinLocationDescLike(String value) { this.BinLocationDescLike = value; return this; } public ArrayList getBinLocationDescBetween() { return BinLocationDescBetween; } public SM_CustomerReturnLineDetailsQuery setBinLocationDescBetween(ArrayList value) { this.BinLocationDescBetween = value; return this; } public ArrayList getBinLocationDescIn() { return BinLocationDescIn; } public SM_CustomerReturnLineDetailsQuery setBinLocationDescIn(ArrayList value) { this.BinLocationDescIn = value; return this; } public Date getExpiryDate() { return ExpiryDate; } public SM_CustomerReturnLineDetailsQuery setExpiryDate(Date value) { this.ExpiryDate = value; return this; } public Date getExpiryDateGreaterThanOrEqualTo() { return ExpiryDateGreaterThanOrEqualTo; } public SM_CustomerReturnLineDetailsQuery setExpiryDateGreaterThanOrEqualTo(Date value) { this.ExpiryDateGreaterThanOrEqualTo = value; return this; } public Date getExpiryDateGreaterThan() { return ExpiryDateGreaterThan; } public SM_CustomerReturnLineDetailsQuery setExpiryDateGreaterThan(Date value) { this.ExpiryDateGreaterThan = value; return this; } public Date getExpiryDateLessThan() { return ExpiryDateLessThan; } public SM_CustomerReturnLineDetailsQuery setExpiryDateLessThan(Date value) { this.ExpiryDateLessThan = value; return this; } public Date getExpiryDateLessThanOrEqualTo() { return ExpiryDateLessThanOrEqualTo; } public SM_CustomerReturnLineDetailsQuery setExpiryDateLessThanOrEqualTo(Date value) { this.ExpiryDateLessThanOrEqualTo = value; return this; } public Date getExpiryDateNotEqualTo() { return ExpiryDateNotEqualTo; } public SM_CustomerReturnLineDetailsQuery setExpiryDateNotEqualTo(Date value) { this.ExpiryDateNotEqualTo = value; return this; } public ArrayList getExpiryDateBetween() { return ExpiryDateBetween; } public SM_CustomerReturnLineDetailsQuery setExpiryDateBetween(ArrayList value) { this.ExpiryDateBetween = value; return this; } public ArrayList getExpiryDateIn() { return ExpiryDateIn; } public SM_CustomerReturnLineDetailsQuery setExpiryDateIn(ArrayList value) { this.ExpiryDateIn = value; return this; } public String getSohid() { return SOHID; } public SM_CustomerReturnLineDetailsQuery setSohid(String value) { this.SOHID = value; return this; } public String getSohidStartsWith() { return SOHIDStartsWith; } public SM_CustomerReturnLineDetailsQuery setSohidStartsWith(String value) { this.SOHIDStartsWith = value; return this; } public String getSohidEndsWith() { return SOHIDEndsWith; } public SM_CustomerReturnLineDetailsQuery setSohidEndsWith(String value) { this.SOHIDEndsWith = value; return this; } public String getSohidContains() { return SOHIDContains; } public SM_CustomerReturnLineDetailsQuery setSohidContains(String value) { this.SOHIDContains = value; return this; } public String getSohidLike() { return SOHIDLike; } public SM_CustomerReturnLineDetailsQuery setSohidLike(String value) { this.SOHIDLike = value; return this; } public ArrayList getSohidBetween() { return SOHIDBetween; } public SM_CustomerReturnLineDetailsQuery setSohidBetween(ArrayList value) { this.SOHIDBetween = value; return this; } public ArrayList getSohidIn() { return SOHIDIn; } public SM_CustomerReturnLineDetailsQuery setSohidIn(ArrayList value) { this.SOHIDIn = value; return this; } public UUID getSyPluginRecID() { return SY_Plugin_RecID; } public SM_CustomerReturnLineDetailsQuery setSyPluginRecID(UUID value) { this.SY_Plugin_RecID = value; return this; } public ArrayList getSyPluginRecIDIn() { return SY_Plugin_RecIDIn; } public SM_CustomerReturnLineDetailsQuery setSyPluginRecIDIn(ArrayList value) { this.SY_Plugin_RecIDIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class SM_CustomerReturnsQuery extends QueryDb implements IReturn> { public String RecID = null; public String RecIDStartsWith = null; public String RecIDEndsWith = null; public String RecIDContains = null; public String RecIDLike = null; public ArrayList RecIDBetween = null; public ArrayList RecIDIn = null; public Date LastSavedDateTime = null; public Date LastSavedDateTimeGreaterThanOrEqualTo = null; public Date LastSavedDateTimeGreaterThan = null; public Date LastSavedDateTimeLessThan = null; public Date LastSavedDateTimeLessThanOrEqualTo = null; public Date LastSavedDateTimeNotEqualTo = null; public ArrayList LastSavedDateTimeBetween = null; public ArrayList LastSavedDateTimeIn = null; public String TaskID = null; public String TaskIDStartsWith = null; public String TaskIDEndsWith = null; public String TaskIDContains = null; public String TaskIDLike = null; public ArrayList TaskIDBetween = null; public ArrayList TaskIDIn = null; public String InventoryID = null; public String InventoryIDStartsWith = null; public String InventoryIDEndsWith = null; public String InventoryIDContains = null; public String InventoryIDLike = null; public ArrayList InventoryIDBetween = null; public ArrayList InventoryIDIn = null; public String PartNo = null; public String PartNoStartsWith = null; public String PartNoEndsWith = null; public String PartNoContains = null; public String PartNoLike = null; public ArrayList PartNoBetween = null; public ArrayList PartNoIn = null; public String Description = null; public String DescriptionStartsWith = null; public String DescriptionEndsWith = null; public String DescriptionContains = null; public String DescriptionLike = null; public ArrayList DescriptionBetween = null; public ArrayList DescriptionIn = null; public Boolean CommentLine = null; public BigDecimal Quantity = null; public BigDecimal QuantityGreaterThanOrEqualTo = null; public BigDecimal QuantityGreaterThan = null; public BigDecimal QuantityLessThan = null; public BigDecimal QuantityLessThanOrEqualTo = null; public BigDecimal QuantityNotEqualTo = null; public ArrayList QuantityBetween = null; public ArrayList QuantityIn = null; public BigDecimal PriceExGST = null; public BigDecimal PriceExGSTGreaterThanOrEqualTo = null; public BigDecimal PriceExGSTGreaterThan = null; public BigDecimal PriceExGSTLessThan = null; public BigDecimal PriceExGSTLessThanOrEqualTo = null; public BigDecimal PriceExGSTNotEqualTo = null; public ArrayList PriceExGSTBetween = null; public ArrayList PriceExGSTIn = null; public String GSTID = null; public String GSTIDStartsWith = null; public String GSTIDEndsWith = null; public String GSTIDContains = null; public String GSTIDLike = null; public ArrayList GSTIDBetween = null; public ArrayList GSTIDIn = null; public BigDecimal GSTRate = null; public BigDecimal GSTRateGreaterThanOrEqualTo = null; public BigDecimal GSTRateGreaterThan = null; public BigDecimal GSTRateLessThan = null; public BigDecimal GSTRateLessThanOrEqualTo = null; public BigDecimal GSTRateNotEqualTo = null; public ArrayList GSTRateBetween = null; public ArrayList GSTRateIn = null; public BigDecimal GSTAmount = null; public BigDecimal GSTAmountGreaterThanOrEqualTo = null; public BigDecimal GSTAmountGreaterThan = null; public BigDecimal GSTAmountLessThan = null; public BigDecimal GSTAmountLessThanOrEqualTo = null; public BigDecimal GSTAmountNotEqualTo = null; public ArrayList GSTAmountBetween = null; public ArrayList GSTAmountIn = null; public BigDecimal LineTotalIncGST = null; public BigDecimal LineTotalIncGSTGreaterThanOrEqualTo = null; public BigDecimal LineTotalIncGSTGreaterThan = null; public BigDecimal LineTotalIncGSTLessThan = null; public BigDecimal LineTotalIncGSTLessThanOrEqualTo = null; public BigDecimal LineTotalIncGSTNotEqualTo = null; public ArrayList LineTotalIncGSTBetween = null; public ArrayList LineTotalIncGSTIn = null; public Boolean Processed = null; public String InvoiceID = null; public String InvoiceIDStartsWith = null; public String InvoiceIDEndsWith = null; public String InvoiceIDContains = null; public String InvoiceIDLike = null; public ArrayList InvoiceIDBetween = null; public ArrayList InvoiceIDIn = null; public String InvoiceLineID = null; public String InvoiceLineIDStartsWith = null; public String InvoiceLineIDEndsWith = null; public String InvoiceLineIDContains = null; public String InvoiceLineIDLike = null; public ArrayList InvoiceLineIDBetween = null; public ArrayList InvoiceLineIDIn = null; public Integer DisplayOrder = null; public Integer DisplayOrderGreaterThanOrEqualTo = null; public Integer DisplayOrderGreaterThan = null; public Integer DisplayOrderLessThan = null; public Integer DisplayOrderLessThanOrEqualTo = null; public Integer DisplayOrderNotEqualTo = null; public ArrayList DisplayOrderBetween = null; public ArrayList DisplayOrderIn = null; public Boolean PhysicalItem = null; public Boolean UseSerials = null; public Short QuantityDecimalPlaces = null; public Short QuantityDecimalPlacesGreaterThanOrEqualTo = null; public Short QuantityDecimalPlacesGreaterThan = null; public Short QuantityDecimalPlacesLessThan = null; public Short QuantityDecimalPlacesLessThanOrEqualTo = null; public Short QuantityDecimalPlacesNotEqualTo = null; public ArrayList QuantityDecimalPlacesBetween = null; public ArrayList QuantityDecimalPlacesIn = null; public Boolean SellPriceIsIncTax = null; public String CreditReasonID = null; public String CreditReasonIDStartsWith = null; public String CreditReasonIDEndsWith = null; public String CreditReasonIDContains = null; public String CreditReasonIDLike = null; public ArrayList CreditReasonIDBetween = null; public ArrayList CreditReasonIDIn = null; public Boolean CreditIntoStock = null; public String Notes = null; public String NotesStartsWith = null; public String NotesEndsWith = null; public String NotesContains = null; public String NotesLike = null; public ArrayList NotesBetween = null; public ArrayList NotesIn = null; public Boolean UserDefinedBit1 = null; public Boolean UserDefinedBit2 = null; public Boolean UserDefinedBit3 = null; public String UserDefinedString1 = null; public String UserDefinedString1StartsWith = null; public String UserDefinedString1EndsWith = null; public String UserDefinedString1Contains = null; public String UserDefinedString1Like = null; public ArrayList UserDefinedString1Between = null; public ArrayList UserDefinedString1In = null; public String UserDefinedString2 = null; public String UserDefinedString2StartsWith = null; public String UserDefinedString2EndsWith = null; public String UserDefinedString2Contains = null; public String UserDefinedString2Like = null; public ArrayList UserDefinedString2Between = null; public ArrayList UserDefinedString2In = null; public String UserDefinedString3 = null; public String UserDefinedString3StartsWith = null; public String UserDefinedString3EndsWith = null; public String UserDefinedString3Contains = null; public String UserDefinedString3Like = null; public ArrayList UserDefinedString3Between = null; public ArrayList UserDefinedString3In = null; public Date UserDefinedDate1 = null; public Date UserDefinedDate1GreaterThanOrEqualTo = null; public Date UserDefinedDate1GreaterThan = null; public Date UserDefinedDate1LessThan = null; public Date UserDefinedDate1LessThanOrEqualTo = null; public Date UserDefinedDate1NotEqualTo = null; public ArrayList UserDefinedDate1Between = null; public ArrayList UserDefinedDate1In = null; public Date UserDefinedDate2 = null; public Date UserDefinedDate2GreaterThanOrEqualTo = null; public Date UserDefinedDate2GreaterThan = null; public Date UserDefinedDate2LessThan = null; public Date UserDefinedDate2LessThanOrEqualTo = null; public Date UserDefinedDate2NotEqualTo = null; public ArrayList UserDefinedDate2Between = null; public ArrayList UserDefinedDate2In = null; public Date UserDefinedDate3 = null; public Date UserDefinedDate3GreaterThanOrEqualTo = null; public Date UserDefinedDate3GreaterThan = null; public Date UserDefinedDate3LessThan = null; public Date UserDefinedDate3LessThanOrEqualTo = null; public Date UserDefinedDate3NotEqualTo = null; public ArrayList UserDefinedDate3Between = null; public ArrayList UserDefinedDate3In = null; public BigDecimal UserDefinedFloat1 = null; public BigDecimal UserDefinedFloat1GreaterThanOrEqualTo = null; public BigDecimal UserDefinedFloat1GreaterThan = null; public BigDecimal UserDefinedFloat1LessThan = null; public BigDecimal UserDefinedFloat1LessThanOrEqualTo = null; public BigDecimal UserDefinedFloat1NotEqualTo = null; public ArrayList UserDefinedFloat1Between = null; public ArrayList UserDefinedFloat1In = null; public BigDecimal UserDefinedFloat2 = null; public BigDecimal UserDefinedFloat2GreaterThanOrEqualTo = null; public BigDecimal UserDefinedFloat2GreaterThan = null; public BigDecimal UserDefinedFloat2LessThan = null; public BigDecimal UserDefinedFloat2LessThanOrEqualTo = null; public BigDecimal UserDefinedFloat2NotEqualTo = null; public ArrayList UserDefinedFloat2Between = null; public ArrayList UserDefinedFloat2In = null; public BigDecimal UserDefinedFloat3 = null; public BigDecimal UserDefinedFloat3GreaterThanOrEqualTo = null; public BigDecimal UserDefinedFloat3GreaterThan = null; public BigDecimal UserDefinedFloat3LessThan = null; public BigDecimal UserDefinedFloat3LessThanOrEqualTo = null; public BigDecimal UserDefinedFloat3NotEqualTo = null; public ArrayList UserDefinedFloat3Between = null; public ArrayList UserDefinedFloat3In = null; public UUID SY_Plugin_RecID = null; public ArrayList SY_Plugin_RecIDIn = null; public String getRecID() { return RecID; } public SM_CustomerReturnsQuery setRecID(String value) { this.RecID = value; return this; } public String getRecIDStartsWith() { return RecIDStartsWith; } public SM_CustomerReturnsQuery setRecIDStartsWith(String value) { this.RecIDStartsWith = value; return this; } public String getRecIDEndsWith() { return RecIDEndsWith; } public SM_CustomerReturnsQuery setRecIDEndsWith(String value) { this.RecIDEndsWith = value; return this; } public String getRecIDContains() { return RecIDContains; } public SM_CustomerReturnsQuery setRecIDContains(String value) { this.RecIDContains = value; return this; } public String getRecIDLike() { return RecIDLike; } public SM_CustomerReturnsQuery setRecIDLike(String value) { this.RecIDLike = value; return this; } public ArrayList getRecIDBetween() { return RecIDBetween; } public SM_CustomerReturnsQuery setRecIDBetween(ArrayList value) { this.RecIDBetween = value; return this; } public ArrayList getRecIDIn() { return RecIDIn; } public SM_CustomerReturnsQuery setRecIDIn(ArrayList value) { this.RecIDIn = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public SM_CustomerReturnsQuery setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getLastSavedDateTimeGreaterThanOrEqualTo() { return LastSavedDateTimeGreaterThanOrEqualTo; } public SM_CustomerReturnsQuery setLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.LastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeGreaterThan() { return LastSavedDateTimeGreaterThan; } public SM_CustomerReturnsQuery setLastSavedDateTimeGreaterThan(Date value) { this.LastSavedDateTimeGreaterThan = value; return this; } public Date getLastSavedDateTimeLessThan() { return LastSavedDateTimeLessThan; } public SM_CustomerReturnsQuery setLastSavedDateTimeLessThan(Date value) { this.LastSavedDateTimeLessThan = value; return this; } public Date getLastSavedDateTimeLessThanOrEqualTo() { return LastSavedDateTimeLessThanOrEqualTo; } public SM_CustomerReturnsQuery setLastSavedDateTimeLessThanOrEqualTo(Date value) { this.LastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeNotEqualTo() { return LastSavedDateTimeNotEqualTo; } public SM_CustomerReturnsQuery setLastSavedDateTimeNotEqualTo(Date value) { this.LastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getLastSavedDateTimeBetween() { return LastSavedDateTimeBetween; } public SM_CustomerReturnsQuery setLastSavedDateTimeBetween(ArrayList value) { this.LastSavedDateTimeBetween = value; return this; } public ArrayList getLastSavedDateTimeIn() { return LastSavedDateTimeIn; } public SM_CustomerReturnsQuery setLastSavedDateTimeIn(ArrayList value) { this.LastSavedDateTimeIn = value; return this; } public String getTaskID() { return TaskID; } public SM_CustomerReturnsQuery setTaskID(String value) { this.TaskID = value; return this; } public String getTaskIDStartsWith() { return TaskIDStartsWith; } public SM_CustomerReturnsQuery setTaskIDStartsWith(String value) { this.TaskIDStartsWith = value; return this; } public String getTaskIDEndsWith() { return TaskIDEndsWith; } public SM_CustomerReturnsQuery setTaskIDEndsWith(String value) { this.TaskIDEndsWith = value; return this; } public String getTaskIDContains() { return TaskIDContains; } public SM_CustomerReturnsQuery setTaskIDContains(String value) { this.TaskIDContains = value; return this; } public String getTaskIDLike() { return TaskIDLike; } public SM_CustomerReturnsQuery setTaskIDLike(String value) { this.TaskIDLike = value; return this; } public ArrayList getTaskIDBetween() { return TaskIDBetween; } public SM_CustomerReturnsQuery setTaskIDBetween(ArrayList value) { this.TaskIDBetween = value; return this; } public ArrayList getTaskIDIn() { return TaskIDIn; } public SM_CustomerReturnsQuery setTaskIDIn(ArrayList value) { this.TaskIDIn = value; return this; } public String getInventoryID() { return InventoryID; } public SM_CustomerReturnsQuery setInventoryID(String value) { this.InventoryID = value; return this; } public String getInventoryIDStartsWith() { return InventoryIDStartsWith; } public SM_CustomerReturnsQuery setInventoryIDStartsWith(String value) { this.InventoryIDStartsWith = value; return this; } public String getInventoryIDEndsWith() { return InventoryIDEndsWith; } public SM_CustomerReturnsQuery setInventoryIDEndsWith(String value) { this.InventoryIDEndsWith = value; return this; } public String getInventoryIDContains() { return InventoryIDContains; } public SM_CustomerReturnsQuery setInventoryIDContains(String value) { this.InventoryIDContains = value; return this; } public String getInventoryIDLike() { return InventoryIDLike; } public SM_CustomerReturnsQuery setInventoryIDLike(String value) { this.InventoryIDLike = value; return this; } public ArrayList getInventoryIDBetween() { return InventoryIDBetween; } public SM_CustomerReturnsQuery setInventoryIDBetween(ArrayList value) { this.InventoryIDBetween = value; return this; } public ArrayList getInventoryIDIn() { return InventoryIDIn; } public SM_CustomerReturnsQuery setInventoryIDIn(ArrayList value) { this.InventoryIDIn = value; return this; } public String getPartNo() { return PartNo; } public SM_CustomerReturnsQuery setPartNo(String value) { this.PartNo = value; return this; } public String getPartNoStartsWith() { return PartNoStartsWith; } public SM_CustomerReturnsQuery setPartNoStartsWith(String value) { this.PartNoStartsWith = value; return this; } public String getPartNoEndsWith() { return PartNoEndsWith; } public SM_CustomerReturnsQuery setPartNoEndsWith(String value) { this.PartNoEndsWith = value; return this; } public String getPartNoContains() { return PartNoContains; } public SM_CustomerReturnsQuery setPartNoContains(String value) { this.PartNoContains = value; return this; } public String getPartNoLike() { return PartNoLike; } public SM_CustomerReturnsQuery setPartNoLike(String value) { this.PartNoLike = value; return this; } public ArrayList getPartNoBetween() { return PartNoBetween; } public SM_CustomerReturnsQuery setPartNoBetween(ArrayList value) { this.PartNoBetween = value; return this; } public ArrayList getPartNoIn() { return PartNoIn; } public SM_CustomerReturnsQuery setPartNoIn(ArrayList value) { this.PartNoIn = value; return this; } public String getDescription() { return Description; } public SM_CustomerReturnsQuery setDescription(String value) { this.Description = value; return this; } public String getDescriptionStartsWith() { return DescriptionStartsWith; } public SM_CustomerReturnsQuery setDescriptionStartsWith(String value) { this.DescriptionStartsWith = value; return this; } public String getDescriptionEndsWith() { return DescriptionEndsWith; } public SM_CustomerReturnsQuery setDescriptionEndsWith(String value) { this.DescriptionEndsWith = value; return this; } public String getDescriptionContains() { return DescriptionContains; } public SM_CustomerReturnsQuery setDescriptionContains(String value) { this.DescriptionContains = value; return this; } public String getDescriptionLike() { return DescriptionLike; } public SM_CustomerReturnsQuery setDescriptionLike(String value) { this.DescriptionLike = value; return this; } public ArrayList getDescriptionBetween() { return DescriptionBetween; } public SM_CustomerReturnsQuery setDescriptionBetween(ArrayList value) { this.DescriptionBetween = value; return this; } public ArrayList getDescriptionIn() { return DescriptionIn; } public SM_CustomerReturnsQuery setDescriptionIn(ArrayList value) { this.DescriptionIn = value; return this; } public Boolean isCommentLine() { return CommentLine; } public SM_CustomerReturnsQuery setCommentLine(Boolean value) { this.CommentLine = value; return this; } public BigDecimal getQuantity() { return Quantity; } public SM_CustomerReturnsQuery setQuantity(BigDecimal value) { this.Quantity = value; return this; } public BigDecimal getQuantityGreaterThanOrEqualTo() { return QuantityGreaterThanOrEqualTo; } public SM_CustomerReturnsQuery setQuantityGreaterThanOrEqualTo(BigDecimal value) { this.QuantityGreaterThanOrEqualTo = value; return this; } public BigDecimal getQuantityGreaterThan() { return QuantityGreaterThan; } public SM_CustomerReturnsQuery setQuantityGreaterThan(BigDecimal value) { this.QuantityGreaterThan = value; return this; } public BigDecimal getQuantityLessThan() { return QuantityLessThan; } public SM_CustomerReturnsQuery setQuantityLessThan(BigDecimal value) { this.QuantityLessThan = value; return this; } public BigDecimal getQuantityLessThanOrEqualTo() { return QuantityLessThanOrEqualTo; } public SM_CustomerReturnsQuery setQuantityLessThanOrEqualTo(BigDecimal value) { this.QuantityLessThanOrEqualTo = value; return this; } public BigDecimal getQuantityNotEqualTo() { return QuantityNotEqualTo; } public SM_CustomerReturnsQuery setQuantityNotEqualTo(BigDecimal value) { this.QuantityNotEqualTo = value; return this; } public ArrayList getQuantityBetween() { return QuantityBetween; } public SM_CustomerReturnsQuery setQuantityBetween(ArrayList value) { this.QuantityBetween = value; return this; } public ArrayList getQuantityIn() { return QuantityIn; } public SM_CustomerReturnsQuery setQuantityIn(ArrayList value) { this.QuantityIn = value; return this; } public BigDecimal getPriceExGST() { return PriceExGST; } public SM_CustomerReturnsQuery setPriceExGST(BigDecimal value) { this.PriceExGST = value; return this; } public BigDecimal getPriceExGSTGreaterThanOrEqualTo() { return PriceExGSTGreaterThanOrEqualTo; } public SM_CustomerReturnsQuery setPriceExGSTGreaterThanOrEqualTo(BigDecimal value) { this.PriceExGSTGreaterThanOrEqualTo = value; return this; } public BigDecimal getPriceExGSTGreaterThan() { return PriceExGSTGreaterThan; } public SM_CustomerReturnsQuery setPriceExGSTGreaterThan(BigDecimal value) { this.PriceExGSTGreaterThan = value; return this; } public BigDecimal getPriceExGSTLessThan() { return PriceExGSTLessThan; } public SM_CustomerReturnsQuery setPriceExGSTLessThan(BigDecimal value) { this.PriceExGSTLessThan = value; return this; } public BigDecimal getPriceExGSTLessThanOrEqualTo() { return PriceExGSTLessThanOrEqualTo; } public SM_CustomerReturnsQuery setPriceExGSTLessThanOrEqualTo(BigDecimal value) { this.PriceExGSTLessThanOrEqualTo = value; return this; } public BigDecimal getPriceExGSTNotEqualTo() { return PriceExGSTNotEqualTo; } public SM_CustomerReturnsQuery setPriceExGSTNotEqualTo(BigDecimal value) { this.PriceExGSTNotEqualTo = value; return this; } public ArrayList getPriceExGSTBetween() { return PriceExGSTBetween; } public SM_CustomerReturnsQuery setPriceExGSTBetween(ArrayList value) { this.PriceExGSTBetween = value; return this; } public ArrayList getPriceExGSTIn() { return PriceExGSTIn; } public SM_CustomerReturnsQuery setPriceExGSTIn(ArrayList value) { this.PriceExGSTIn = value; return this; } public String getGstid() { return GSTID; } public SM_CustomerReturnsQuery setGstid(String value) { this.GSTID = value; return this; } public String getGstidStartsWith() { return GSTIDStartsWith; } public SM_CustomerReturnsQuery setGstidStartsWith(String value) { this.GSTIDStartsWith = value; return this; } public String getGstidEndsWith() { return GSTIDEndsWith; } public SM_CustomerReturnsQuery setGstidEndsWith(String value) { this.GSTIDEndsWith = value; return this; } public String getGstidContains() { return GSTIDContains; } public SM_CustomerReturnsQuery setGstidContains(String value) { this.GSTIDContains = value; return this; } public String getGstidLike() { return GSTIDLike; } public SM_CustomerReturnsQuery setGstidLike(String value) { this.GSTIDLike = value; return this; } public ArrayList getGstidBetween() { return GSTIDBetween; } public SM_CustomerReturnsQuery setGstidBetween(ArrayList value) { this.GSTIDBetween = value; return this; } public ArrayList getGstidIn() { return GSTIDIn; } public SM_CustomerReturnsQuery setGstidIn(ArrayList value) { this.GSTIDIn = value; return this; } public BigDecimal getGstRate() { return GSTRate; } public SM_CustomerReturnsQuery setGstRate(BigDecimal value) { this.GSTRate = value; return this; } public BigDecimal getGstRateGreaterThanOrEqualTo() { return GSTRateGreaterThanOrEqualTo; } public SM_CustomerReturnsQuery setGstRateGreaterThanOrEqualTo(BigDecimal value) { this.GSTRateGreaterThanOrEqualTo = value; return this; } public BigDecimal getGstRateGreaterThan() { return GSTRateGreaterThan; } public SM_CustomerReturnsQuery setGstRateGreaterThan(BigDecimal value) { this.GSTRateGreaterThan = value; return this; } public BigDecimal getGstRateLessThan() { return GSTRateLessThan; } public SM_CustomerReturnsQuery setGstRateLessThan(BigDecimal value) { this.GSTRateLessThan = value; return this; } public BigDecimal getGstRateLessThanOrEqualTo() { return GSTRateLessThanOrEqualTo; } public SM_CustomerReturnsQuery setGstRateLessThanOrEqualTo(BigDecimal value) { this.GSTRateLessThanOrEqualTo = value; return this; } public BigDecimal getGstRateNotEqualTo() { return GSTRateNotEqualTo; } public SM_CustomerReturnsQuery setGstRateNotEqualTo(BigDecimal value) { this.GSTRateNotEqualTo = value; return this; } public ArrayList getGstRateBetween() { return GSTRateBetween; } public SM_CustomerReturnsQuery setGstRateBetween(ArrayList value) { this.GSTRateBetween = value; return this; } public ArrayList getGstRateIn() { return GSTRateIn; } public SM_CustomerReturnsQuery setGstRateIn(ArrayList value) { this.GSTRateIn = value; return this; } public BigDecimal getGstAmount() { return GSTAmount; } public SM_CustomerReturnsQuery setGstAmount(BigDecimal value) { this.GSTAmount = value; return this; } public BigDecimal getGstAmountGreaterThanOrEqualTo() { return GSTAmountGreaterThanOrEqualTo; } public SM_CustomerReturnsQuery setGstAmountGreaterThanOrEqualTo(BigDecimal value) { this.GSTAmountGreaterThanOrEqualTo = value; return this; } public BigDecimal getGstAmountGreaterThan() { return GSTAmountGreaterThan; } public SM_CustomerReturnsQuery setGstAmountGreaterThan(BigDecimal value) { this.GSTAmountGreaterThan = value; return this; } public BigDecimal getGstAmountLessThan() { return GSTAmountLessThan; } public SM_CustomerReturnsQuery setGstAmountLessThan(BigDecimal value) { this.GSTAmountLessThan = value; return this; } public BigDecimal getGstAmountLessThanOrEqualTo() { return GSTAmountLessThanOrEqualTo; } public SM_CustomerReturnsQuery setGstAmountLessThanOrEqualTo(BigDecimal value) { this.GSTAmountLessThanOrEqualTo = value; return this; } public BigDecimal getGstAmountNotEqualTo() { return GSTAmountNotEqualTo; } public SM_CustomerReturnsQuery setGstAmountNotEqualTo(BigDecimal value) { this.GSTAmountNotEqualTo = value; return this; } public ArrayList getGstAmountBetween() { return GSTAmountBetween; } public SM_CustomerReturnsQuery setGstAmountBetween(ArrayList value) { this.GSTAmountBetween = value; return this; } public ArrayList getGstAmountIn() { return GSTAmountIn; } public SM_CustomerReturnsQuery setGstAmountIn(ArrayList value) { this.GSTAmountIn = value; return this; } public BigDecimal getLineTotalIncGST() { return LineTotalIncGST; } public SM_CustomerReturnsQuery setLineTotalIncGST(BigDecimal value) { this.LineTotalIncGST = value; return this; } public BigDecimal getLineTotalIncGSTGreaterThanOrEqualTo() { return LineTotalIncGSTGreaterThanOrEqualTo; } public SM_CustomerReturnsQuery setLineTotalIncGSTGreaterThanOrEqualTo(BigDecimal value) { this.LineTotalIncGSTGreaterThanOrEqualTo = value; return this; } public BigDecimal getLineTotalIncGSTGreaterThan() { return LineTotalIncGSTGreaterThan; } public SM_CustomerReturnsQuery setLineTotalIncGSTGreaterThan(BigDecimal value) { this.LineTotalIncGSTGreaterThan = value; return this; } public BigDecimal getLineTotalIncGSTLessThan() { return LineTotalIncGSTLessThan; } public SM_CustomerReturnsQuery setLineTotalIncGSTLessThan(BigDecimal value) { this.LineTotalIncGSTLessThan = value; return this; } public BigDecimal getLineTotalIncGSTLessThanOrEqualTo() { return LineTotalIncGSTLessThanOrEqualTo; } public SM_CustomerReturnsQuery setLineTotalIncGSTLessThanOrEqualTo(BigDecimal value) { this.LineTotalIncGSTLessThanOrEqualTo = value; return this; } public BigDecimal getLineTotalIncGSTNotEqualTo() { return LineTotalIncGSTNotEqualTo; } public SM_CustomerReturnsQuery setLineTotalIncGSTNotEqualTo(BigDecimal value) { this.LineTotalIncGSTNotEqualTo = value; return this; } public ArrayList getLineTotalIncGSTBetween() { return LineTotalIncGSTBetween; } public SM_CustomerReturnsQuery setLineTotalIncGSTBetween(ArrayList value) { this.LineTotalIncGSTBetween = value; return this; } public ArrayList getLineTotalIncGSTIn() { return LineTotalIncGSTIn; } public SM_CustomerReturnsQuery setLineTotalIncGSTIn(ArrayList value) { this.LineTotalIncGSTIn = value; return this; } public Boolean isProcessed() { return Processed; } public SM_CustomerReturnsQuery setProcessed(Boolean value) { this.Processed = value; return this; } public String getInvoiceID() { return InvoiceID; } public SM_CustomerReturnsQuery setInvoiceID(String value) { this.InvoiceID = value; return this; } public String getInvoiceIDStartsWith() { return InvoiceIDStartsWith; } public SM_CustomerReturnsQuery setInvoiceIDStartsWith(String value) { this.InvoiceIDStartsWith = value; return this; } public String getInvoiceIDEndsWith() { return InvoiceIDEndsWith; } public SM_CustomerReturnsQuery setInvoiceIDEndsWith(String value) { this.InvoiceIDEndsWith = value; return this; } public String getInvoiceIDContains() { return InvoiceIDContains; } public SM_CustomerReturnsQuery setInvoiceIDContains(String value) { this.InvoiceIDContains = value; return this; } public String getInvoiceIDLike() { return InvoiceIDLike; } public SM_CustomerReturnsQuery setInvoiceIDLike(String value) { this.InvoiceIDLike = value; return this; } public ArrayList getInvoiceIDBetween() { return InvoiceIDBetween; } public SM_CustomerReturnsQuery setInvoiceIDBetween(ArrayList value) { this.InvoiceIDBetween = value; return this; } public ArrayList getInvoiceIDIn() { return InvoiceIDIn; } public SM_CustomerReturnsQuery setInvoiceIDIn(ArrayList value) { this.InvoiceIDIn = value; return this; } public String getInvoiceLineID() { return InvoiceLineID; } public SM_CustomerReturnsQuery setInvoiceLineID(String value) { this.InvoiceLineID = value; return this; } public String getInvoiceLineIDStartsWith() { return InvoiceLineIDStartsWith; } public SM_CustomerReturnsQuery setInvoiceLineIDStartsWith(String value) { this.InvoiceLineIDStartsWith = value; return this; } public String getInvoiceLineIDEndsWith() { return InvoiceLineIDEndsWith; } public SM_CustomerReturnsQuery setInvoiceLineIDEndsWith(String value) { this.InvoiceLineIDEndsWith = value; return this; } public String getInvoiceLineIDContains() { return InvoiceLineIDContains; } public SM_CustomerReturnsQuery setInvoiceLineIDContains(String value) { this.InvoiceLineIDContains = value; return this; } public String getInvoiceLineIDLike() { return InvoiceLineIDLike; } public SM_CustomerReturnsQuery setInvoiceLineIDLike(String value) { this.InvoiceLineIDLike = value; return this; } public ArrayList getInvoiceLineIDBetween() { return InvoiceLineIDBetween; } public SM_CustomerReturnsQuery setInvoiceLineIDBetween(ArrayList value) { this.InvoiceLineIDBetween = value; return this; } public ArrayList getInvoiceLineIDIn() { return InvoiceLineIDIn; } public SM_CustomerReturnsQuery setInvoiceLineIDIn(ArrayList value) { this.InvoiceLineIDIn = value; return this; } public Integer getDisplayOrder() { return DisplayOrder; } public SM_CustomerReturnsQuery setDisplayOrder(Integer value) { this.DisplayOrder = value; return this; } public Integer getDisplayOrderGreaterThanOrEqualTo() { return DisplayOrderGreaterThanOrEqualTo; } public SM_CustomerReturnsQuery setDisplayOrderGreaterThanOrEqualTo(Integer value) { this.DisplayOrderGreaterThanOrEqualTo = value; return this; } public Integer getDisplayOrderGreaterThan() { return DisplayOrderGreaterThan; } public SM_CustomerReturnsQuery setDisplayOrderGreaterThan(Integer value) { this.DisplayOrderGreaterThan = value; return this; } public Integer getDisplayOrderLessThan() { return DisplayOrderLessThan; } public SM_CustomerReturnsQuery setDisplayOrderLessThan(Integer value) { this.DisplayOrderLessThan = value; return this; } public Integer getDisplayOrderLessThanOrEqualTo() { return DisplayOrderLessThanOrEqualTo; } public SM_CustomerReturnsQuery setDisplayOrderLessThanOrEqualTo(Integer value) { this.DisplayOrderLessThanOrEqualTo = value; return this; } public Integer getDisplayOrderNotEqualTo() { return DisplayOrderNotEqualTo; } public SM_CustomerReturnsQuery setDisplayOrderNotEqualTo(Integer value) { this.DisplayOrderNotEqualTo = value; return this; } public ArrayList getDisplayOrderBetween() { return DisplayOrderBetween; } public SM_CustomerReturnsQuery setDisplayOrderBetween(ArrayList value) { this.DisplayOrderBetween = value; return this; } public ArrayList getDisplayOrderIn() { return DisplayOrderIn; } public SM_CustomerReturnsQuery setDisplayOrderIn(ArrayList value) { this.DisplayOrderIn = value; return this; } public Boolean isPhysicalItem() { return PhysicalItem; } public SM_CustomerReturnsQuery setPhysicalItem(Boolean value) { this.PhysicalItem = value; return this; } public Boolean isUseSerials() { return UseSerials; } public SM_CustomerReturnsQuery setUseSerials(Boolean value) { this.UseSerials = value; return this; } public Short getQuantityDecimalPlaces() { return QuantityDecimalPlaces; } public SM_CustomerReturnsQuery setQuantityDecimalPlaces(Short value) { this.QuantityDecimalPlaces = value; return this; } public Short getQuantityDecimalPlacesGreaterThanOrEqualTo() { return QuantityDecimalPlacesGreaterThanOrEqualTo; } public SM_CustomerReturnsQuery setQuantityDecimalPlacesGreaterThanOrEqualTo(Short value) { this.QuantityDecimalPlacesGreaterThanOrEqualTo = value; return this; } public Short getQuantityDecimalPlacesGreaterThan() { return QuantityDecimalPlacesGreaterThan; } public SM_CustomerReturnsQuery setQuantityDecimalPlacesGreaterThan(Short value) { this.QuantityDecimalPlacesGreaterThan = value; return this; } public Short getQuantityDecimalPlacesLessThan() { return QuantityDecimalPlacesLessThan; } public SM_CustomerReturnsQuery setQuantityDecimalPlacesLessThan(Short value) { this.QuantityDecimalPlacesLessThan = value; return this; } public Short getQuantityDecimalPlacesLessThanOrEqualTo() { return QuantityDecimalPlacesLessThanOrEqualTo; } public SM_CustomerReturnsQuery setQuantityDecimalPlacesLessThanOrEqualTo(Short value) { this.QuantityDecimalPlacesLessThanOrEqualTo = value; return this; } public Short getQuantityDecimalPlacesNotEqualTo() { return QuantityDecimalPlacesNotEqualTo; } public SM_CustomerReturnsQuery setQuantityDecimalPlacesNotEqualTo(Short value) { this.QuantityDecimalPlacesNotEqualTo = value; return this; } public ArrayList getQuantityDecimalPlacesBetween() { return QuantityDecimalPlacesBetween; } public SM_CustomerReturnsQuery setQuantityDecimalPlacesBetween(ArrayList value) { this.QuantityDecimalPlacesBetween = value; return this; } public ArrayList getQuantityDecimalPlacesIn() { return QuantityDecimalPlacesIn; } public SM_CustomerReturnsQuery setQuantityDecimalPlacesIn(ArrayList value) { this.QuantityDecimalPlacesIn = value; return this; } public Boolean isSellPriceIsIncTax() { return SellPriceIsIncTax; } public SM_CustomerReturnsQuery setSellPriceIsIncTax(Boolean value) { this.SellPriceIsIncTax = value; return this; } public String getCreditReasonID() { return CreditReasonID; } public SM_CustomerReturnsQuery setCreditReasonID(String value) { this.CreditReasonID = value; return this; } public String getCreditReasonIDStartsWith() { return CreditReasonIDStartsWith; } public SM_CustomerReturnsQuery setCreditReasonIDStartsWith(String value) { this.CreditReasonIDStartsWith = value; return this; } public String getCreditReasonIDEndsWith() { return CreditReasonIDEndsWith; } public SM_CustomerReturnsQuery setCreditReasonIDEndsWith(String value) { this.CreditReasonIDEndsWith = value; return this; } public String getCreditReasonIDContains() { return CreditReasonIDContains; } public SM_CustomerReturnsQuery setCreditReasonIDContains(String value) { this.CreditReasonIDContains = value; return this; } public String getCreditReasonIDLike() { return CreditReasonIDLike; } public SM_CustomerReturnsQuery setCreditReasonIDLike(String value) { this.CreditReasonIDLike = value; return this; } public ArrayList getCreditReasonIDBetween() { return CreditReasonIDBetween; } public SM_CustomerReturnsQuery setCreditReasonIDBetween(ArrayList value) { this.CreditReasonIDBetween = value; return this; } public ArrayList getCreditReasonIDIn() { return CreditReasonIDIn; } public SM_CustomerReturnsQuery setCreditReasonIDIn(ArrayList value) { this.CreditReasonIDIn = value; return this; } public Boolean isCreditIntoStock() { return CreditIntoStock; } public SM_CustomerReturnsQuery setCreditIntoStock(Boolean value) { this.CreditIntoStock = value; return this; } public String getNotes() { return Notes; } public SM_CustomerReturnsQuery setNotes(String value) { this.Notes = value; return this; } public String getNotesStartsWith() { return NotesStartsWith; } public SM_CustomerReturnsQuery setNotesStartsWith(String value) { this.NotesStartsWith = value; return this; } public String getNotesEndsWith() { return NotesEndsWith; } public SM_CustomerReturnsQuery setNotesEndsWith(String value) { this.NotesEndsWith = value; return this; } public String getNotesContains() { return NotesContains; } public SM_CustomerReturnsQuery setNotesContains(String value) { this.NotesContains = value; return this; } public String getNotesLike() { return NotesLike; } public SM_CustomerReturnsQuery setNotesLike(String value) { this.NotesLike = value; return this; } public ArrayList getNotesBetween() { return NotesBetween; } public SM_CustomerReturnsQuery setNotesBetween(ArrayList value) { this.NotesBetween = value; return this; } public ArrayList getNotesIn() { return NotesIn; } public SM_CustomerReturnsQuery setNotesIn(ArrayList value) { this.NotesIn = value; return this; } public Boolean isUserDefinedBit1() { return UserDefinedBit1; } public SM_CustomerReturnsQuery setUserDefinedBit1(Boolean value) { this.UserDefinedBit1 = value; return this; } public Boolean isUserDefinedBit2() { return UserDefinedBit2; } public SM_CustomerReturnsQuery setUserDefinedBit2(Boolean value) { this.UserDefinedBit2 = value; return this; } public Boolean isUserDefinedBit3() { return UserDefinedBit3; } public SM_CustomerReturnsQuery setUserDefinedBit3(Boolean value) { this.UserDefinedBit3 = value; return this; } public String getUserDefinedString1() { return UserDefinedString1; } public SM_CustomerReturnsQuery setUserDefinedString1(String value) { this.UserDefinedString1 = value; return this; } public String getUserDefinedString1StartsWith() { return UserDefinedString1StartsWith; } public SM_CustomerReturnsQuery setUserDefinedString1StartsWith(String value) { this.UserDefinedString1StartsWith = value; return this; } public String getUserDefinedString1EndsWith() { return UserDefinedString1EndsWith; } public SM_CustomerReturnsQuery setUserDefinedString1EndsWith(String value) { this.UserDefinedString1EndsWith = value; return this; } public String getUserDefinedString1Contains() { return UserDefinedString1Contains; } public SM_CustomerReturnsQuery setUserDefinedString1Contains(String value) { this.UserDefinedString1Contains = value; return this; } public String getUserDefinedString1Like() { return UserDefinedString1Like; } public SM_CustomerReturnsQuery setUserDefinedString1Like(String value) { this.UserDefinedString1Like = value; return this; } public ArrayList getUserDefinedString1Between() { return UserDefinedString1Between; } public SM_CustomerReturnsQuery setUserDefinedString1Between(ArrayList value) { this.UserDefinedString1Between = value; return this; } public ArrayList getUserDefinedString1In() { return UserDefinedString1In; } public SM_CustomerReturnsQuery setUserDefinedString1In(ArrayList value) { this.UserDefinedString1In = value; return this; } public String getUserDefinedString2() { return UserDefinedString2; } public SM_CustomerReturnsQuery setUserDefinedString2(String value) { this.UserDefinedString2 = value; return this; } public String getUserDefinedString2StartsWith() { return UserDefinedString2StartsWith; } public SM_CustomerReturnsQuery setUserDefinedString2StartsWith(String value) { this.UserDefinedString2StartsWith = value; return this; } public String getUserDefinedString2EndsWith() { return UserDefinedString2EndsWith; } public SM_CustomerReturnsQuery setUserDefinedString2EndsWith(String value) { this.UserDefinedString2EndsWith = value; return this; } public String getUserDefinedString2Contains() { return UserDefinedString2Contains; } public SM_CustomerReturnsQuery setUserDefinedString2Contains(String value) { this.UserDefinedString2Contains = value; return this; } public String getUserDefinedString2Like() { return UserDefinedString2Like; } public SM_CustomerReturnsQuery setUserDefinedString2Like(String value) { this.UserDefinedString2Like = value; return this; } public ArrayList getUserDefinedString2Between() { return UserDefinedString2Between; } public SM_CustomerReturnsQuery setUserDefinedString2Between(ArrayList value) { this.UserDefinedString2Between = value; return this; } public ArrayList getUserDefinedString2In() { return UserDefinedString2In; } public SM_CustomerReturnsQuery setUserDefinedString2In(ArrayList value) { this.UserDefinedString2In = value; return this; } public String getUserDefinedString3() { return UserDefinedString3; } public SM_CustomerReturnsQuery setUserDefinedString3(String value) { this.UserDefinedString3 = value; return this; } public String getUserDefinedString3StartsWith() { return UserDefinedString3StartsWith; } public SM_CustomerReturnsQuery setUserDefinedString3StartsWith(String value) { this.UserDefinedString3StartsWith = value; return this; } public String getUserDefinedString3EndsWith() { return UserDefinedString3EndsWith; } public SM_CustomerReturnsQuery setUserDefinedString3EndsWith(String value) { this.UserDefinedString3EndsWith = value; return this; } public String getUserDefinedString3Contains() { return UserDefinedString3Contains; } public SM_CustomerReturnsQuery setUserDefinedString3Contains(String value) { this.UserDefinedString3Contains = value; return this; } public String getUserDefinedString3Like() { return UserDefinedString3Like; } public SM_CustomerReturnsQuery setUserDefinedString3Like(String value) { this.UserDefinedString3Like = value; return this; } public ArrayList getUserDefinedString3Between() { return UserDefinedString3Between; } public SM_CustomerReturnsQuery setUserDefinedString3Between(ArrayList value) { this.UserDefinedString3Between = value; return this; } public ArrayList getUserDefinedString3In() { return UserDefinedString3In; } public SM_CustomerReturnsQuery setUserDefinedString3In(ArrayList value) { this.UserDefinedString3In = value; return this; } public Date getUserDefinedDate1() { return UserDefinedDate1; } public SM_CustomerReturnsQuery setUserDefinedDate1(Date value) { this.UserDefinedDate1 = value; return this; } public Date getUserDefinedDate1GreaterThanOrEqualTo() { return UserDefinedDate1GreaterThanOrEqualTo; } public SM_CustomerReturnsQuery setUserDefinedDate1GreaterThanOrEqualTo(Date value) { this.UserDefinedDate1GreaterThanOrEqualTo = value; return this; } public Date getUserDefinedDate1GreaterThan() { return UserDefinedDate1GreaterThan; } public SM_CustomerReturnsQuery setUserDefinedDate1GreaterThan(Date value) { this.UserDefinedDate1GreaterThan = value; return this; } public Date getUserDefinedDate1LessThan() { return UserDefinedDate1LessThan; } public SM_CustomerReturnsQuery setUserDefinedDate1LessThan(Date value) { this.UserDefinedDate1LessThan = value; return this; } public Date getUserDefinedDate1LessThanOrEqualTo() { return UserDefinedDate1LessThanOrEqualTo; } public SM_CustomerReturnsQuery setUserDefinedDate1LessThanOrEqualTo(Date value) { this.UserDefinedDate1LessThanOrEqualTo = value; return this; } public Date getUserDefinedDate1NotEqualTo() { return UserDefinedDate1NotEqualTo; } public SM_CustomerReturnsQuery setUserDefinedDate1NotEqualTo(Date value) { this.UserDefinedDate1NotEqualTo = value; return this; } public ArrayList getUserDefinedDate1Between() { return UserDefinedDate1Between; } public SM_CustomerReturnsQuery setUserDefinedDate1Between(ArrayList value) { this.UserDefinedDate1Between = value; return this; } public ArrayList getUserDefinedDate1In() { return UserDefinedDate1In; } public SM_CustomerReturnsQuery setUserDefinedDate1In(ArrayList value) { this.UserDefinedDate1In = value; return this; } public Date getUserDefinedDate2() { return UserDefinedDate2; } public SM_CustomerReturnsQuery setUserDefinedDate2(Date value) { this.UserDefinedDate2 = value; return this; } public Date getUserDefinedDate2GreaterThanOrEqualTo() { return UserDefinedDate2GreaterThanOrEqualTo; } public SM_CustomerReturnsQuery setUserDefinedDate2GreaterThanOrEqualTo(Date value) { this.UserDefinedDate2GreaterThanOrEqualTo = value; return this; } public Date getUserDefinedDate2GreaterThan() { return UserDefinedDate2GreaterThan; } public SM_CustomerReturnsQuery setUserDefinedDate2GreaterThan(Date value) { this.UserDefinedDate2GreaterThan = value; return this; } public Date getUserDefinedDate2LessThan() { return UserDefinedDate2LessThan; } public SM_CustomerReturnsQuery setUserDefinedDate2LessThan(Date value) { this.UserDefinedDate2LessThan = value; return this; } public Date getUserDefinedDate2LessThanOrEqualTo() { return UserDefinedDate2LessThanOrEqualTo; } public SM_CustomerReturnsQuery setUserDefinedDate2LessThanOrEqualTo(Date value) { this.UserDefinedDate2LessThanOrEqualTo = value; return this; } public Date getUserDefinedDate2NotEqualTo() { return UserDefinedDate2NotEqualTo; } public SM_CustomerReturnsQuery setUserDefinedDate2NotEqualTo(Date value) { this.UserDefinedDate2NotEqualTo = value; return this; } public ArrayList getUserDefinedDate2Between() { return UserDefinedDate2Between; } public SM_CustomerReturnsQuery setUserDefinedDate2Between(ArrayList value) { this.UserDefinedDate2Between = value; return this; } public ArrayList getUserDefinedDate2In() { return UserDefinedDate2In; } public SM_CustomerReturnsQuery setUserDefinedDate2In(ArrayList value) { this.UserDefinedDate2In = value; return this; } public Date getUserDefinedDate3() { return UserDefinedDate3; } public SM_CustomerReturnsQuery setUserDefinedDate3(Date value) { this.UserDefinedDate3 = value; return this; } public Date getUserDefinedDate3GreaterThanOrEqualTo() { return UserDefinedDate3GreaterThanOrEqualTo; } public SM_CustomerReturnsQuery setUserDefinedDate3GreaterThanOrEqualTo(Date value) { this.UserDefinedDate3GreaterThanOrEqualTo = value; return this; } public Date getUserDefinedDate3GreaterThan() { return UserDefinedDate3GreaterThan; } public SM_CustomerReturnsQuery setUserDefinedDate3GreaterThan(Date value) { this.UserDefinedDate3GreaterThan = value; return this; } public Date getUserDefinedDate3LessThan() { return UserDefinedDate3LessThan; } public SM_CustomerReturnsQuery setUserDefinedDate3LessThan(Date value) { this.UserDefinedDate3LessThan = value; return this; } public Date getUserDefinedDate3LessThanOrEqualTo() { return UserDefinedDate3LessThanOrEqualTo; } public SM_CustomerReturnsQuery setUserDefinedDate3LessThanOrEqualTo(Date value) { this.UserDefinedDate3LessThanOrEqualTo = value; return this; } public Date getUserDefinedDate3NotEqualTo() { return UserDefinedDate3NotEqualTo; } public SM_CustomerReturnsQuery setUserDefinedDate3NotEqualTo(Date value) { this.UserDefinedDate3NotEqualTo = value; return this; } public ArrayList getUserDefinedDate3Between() { return UserDefinedDate3Between; } public SM_CustomerReturnsQuery setUserDefinedDate3Between(ArrayList value) { this.UserDefinedDate3Between = value; return this; } public ArrayList getUserDefinedDate3In() { return UserDefinedDate3In; } public SM_CustomerReturnsQuery setUserDefinedDate3In(ArrayList value) { this.UserDefinedDate3In = value; return this; } public BigDecimal getUserDefinedFloat1() { return UserDefinedFloat1; } public SM_CustomerReturnsQuery setUserDefinedFloat1(BigDecimal value) { this.UserDefinedFloat1 = value; return this; } public BigDecimal getUserDefinedFloat1GreaterThanOrEqualTo() { return UserDefinedFloat1GreaterThanOrEqualTo; } public SM_CustomerReturnsQuery setUserDefinedFloat1GreaterThanOrEqualTo(BigDecimal value) { this.UserDefinedFloat1GreaterThanOrEqualTo = value; return this; } public BigDecimal getUserDefinedFloat1GreaterThan() { return UserDefinedFloat1GreaterThan; } public SM_CustomerReturnsQuery setUserDefinedFloat1GreaterThan(BigDecimal value) { this.UserDefinedFloat1GreaterThan = value; return this; } public BigDecimal getUserDefinedFloat1LessThan() { return UserDefinedFloat1LessThan; } public SM_CustomerReturnsQuery setUserDefinedFloat1LessThan(BigDecimal value) { this.UserDefinedFloat1LessThan = value; return this; } public BigDecimal getUserDefinedFloat1LessThanOrEqualTo() { return UserDefinedFloat1LessThanOrEqualTo; } public SM_CustomerReturnsQuery setUserDefinedFloat1LessThanOrEqualTo(BigDecimal value) { this.UserDefinedFloat1LessThanOrEqualTo = value; return this; } public BigDecimal getUserDefinedFloat1NotEqualTo() { return UserDefinedFloat1NotEqualTo; } public SM_CustomerReturnsQuery setUserDefinedFloat1NotEqualTo(BigDecimal value) { this.UserDefinedFloat1NotEqualTo = value; return this; } public ArrayList getUserDefinedFloat1Between() { return UserDefinedFloat1Between; } public SM_CustomerReturnsQuery setUserDefinedFloat1Between(ArrayList value) { this.UserDefinedFloat1Between = value; return this; } public ArrayList getUserDefinedFloat1In() { return UserDefinedFloat1In; } public SM_CustomerReturnsQuery setUserDefinedFloat1In(ArrayList value) { this.UserDefinedFloat1In = value; return this; } public BigDecimal getUserDefinedFloat2() { return UserDefinedFloat2; } public SM_CustomerReturnsQuery setUserDefinedFloat2(BigDecimal value) { this.UserDefinedFloat2 = value; return this; } public BigDecimal getUserDefinedFloat2GreaterThanOrEqualTo() { return UserDefinedFloat2GreaterThanOrEqualTo; } public SM_CustomerReturnsQuery setUserDefinedFloat2GreaterThanOrEqualTo(BigDecimal value) { this.UserDefinedFloat2GreaterThanOrEqualTo = value; return this; } public BigDecimal getUserDefinedFloat2GreaterThan() { return UserDefinedFloat2GreaterThan; } public SM_CustomerReturnsQuery setUserDefinedFloat2GreaterThan(BigDecimal value) { this.UserDefinedFloat2GreaterThan = value; return this; } public BigDecimal getUserDefinedFloat2LessThan() { return UserDefinedFloat2LessThan; } public SM_CustomerReturnsQuery setUserDefinedFloat2LessThan(BigDecimal value) { this.UserDefinedFloat2LessThan = value; return this; } public BigDecimal getUserDefinedFloat2LessThanOrEqualTo() { return UserDefinedFloat2LessThanOrEqualTo; } public SM_CustomerReturnsQuery setUserDefinedFloat2LessThanOrEqualTo(BigDecimal value) { this.UserDefinedFloat2LessThanOrEqualTo = value; return this; } public BigDecimal getUserDefinedFloat2NotEqualTo() { return UserDefinedFloat2NotEqualTo; } public SM_CustomerReturnsQuery setUserDefinedFloat2NotEqualTo(BigDecimal value) { this.UserDefinedFloat2NotEqualTo = value; return this; } public ArrayList getUserDefinedFloat2Between() { return UserDefinedFloat2Between; } public SM_CustomerReturnsQuery setUserDefinedFloat2Between(ArrayList value) { this.UserDefinedFloat2Between = value; return this; } public ArrayList getUserDefinedFloat2In() { return UserDefinedFloat2In; } public SM_CustomerReturnsQuery setUserDefinedFloat2In(ArrayList value) { this.UserDefinedFloat2In = value; return this; } public BigDecimal getUserDefinedFloat3() { return UserDefinedFloat3; } public SM_CustomerReturnsQuery setUserDefinedFloat3(BigDecimal value) { this.UserDefinedFloat3 = value; return this; } public BigDecimal getUserDefinedFloat3GreaterThanOrEqualTo() { return UserDefinedFloat3GreaterThanOrEqualTo; } public SM_CustomerReturnsQuery setUserDefinedFloat3GreaterThanOrEqualTo(BigDecimal value) { this.UserDefinedFloat3GreaterThanOrEqualTo = value; return this; } public BigDecimal getUserDefinedFloat3GreaterThan() { return UserDefinedFloat3GreaterThan; } public SM_CustomerReturnsQuery setUserDefinedFloat3GreaterThan(BigDecimal value) { this.UserDefinedFloat3GreaterThan = value; return this; } public BigDecimal getUserDefinedFloat3LessThan() { return UserDefinedFloat3LessThan; } public SM_CustomerReturnsQuery setUserDefinedFloat3LessThan(BigDecimal value) { this.UserDefinedFloat3LessThan = value; return this; } public BigDecimal getUserDefinedFloat3LessThanOrEqualTo() { return UserDefinedFloat3LessThanOrEqualTo; } public SM_CustomerReturnsQuery setUserDefinedFloat3LessThanOrEqualTo(BigDecimal value) { this.UserDefinedFloat3LessThanOrEqualTo = value; return this; } public BigDecimal getUserDefinedFloat3NotEqualTo() { return UserDefinedFloat3NotEqualTo; } public SM_CustomerReturnsQuery setUserDefinedFloat3NotEqualTo(BigDecimal value) { this.UserDefinedFloat3NotEqualTo = value; return this; } public ArrayList getUserDefinedFloat3Between() { return UserDefinedFloat3Between; } public SM_CustomerReturnsQuery setUserDefinedFloat3Between(ArrayList value) { this.UserDefinedFloat3Between = value; return this; } public ArrayList getUserDefinedFloat3In() { return UserDefinedFloat3In; } public SM_CustomerReturnsQuery setUserDefinedFloat3In(ArrayList value) { this.UserDefinedFloat3In = value; return this; } public UUID getSyPluginRecID() { return SY_Plugin_RecID; } public SM_CustomerReturnsQuery setSyPluginRecID(UUID value) { this.SY_Plugin_RecID = value; return this; } public ArrayList getSyPluginRecIDIn() { return SY_Plugin_RecIDIn; } public SM_CustomerReturnsQuery setSyPluginRecIDIn(ArrayList value) { this.SY_Plugin_RecIDIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class SM_CustomSettingsQuery extends QueryDb implements IReturn> { public String SettingID = null; public String SettingIDStartsWith = null; public String SettingIDEndsWith = null; public String SettingIDContains = null; public String SettingIDLike = null; public ArrayList SettingIDBetween = null; public ArrayList SettingIDIn = null; public Date LastSavedDateTime = null; public Date LastSavedDateTimeGreaterThanOrEqualTo = null; public Date LastSavedDateTimeGreaterThan = null; public Date LastSavedDateTimeLessThan = null; public Date LastSavedDateTimeLessThanOrEqualTo = null; public Date LastSavedDateTimeNotEqualTo = null; public ArrayList LastSavedDateTimeBetween = null; public ArrayList LastSavedDateTimeIn = null; public String SettingDescription = null; public String SettingDescriptionStartsWith = null; public String SettingDescriptionEndsWith = null; public String SettingDescriptionContains = null; public String SettingDescriptionLike = null; public ArrayList SettingDescriptionBetween = null; public ArrayList SettingDescriptionIn = null; public String SettingName = null; public String SettingNameStartsWith = null; public String SettingNameEndsWith = null; public String SettingNameContains = null; public String SettingNameLike = null; public ArrayList SettingNameBetween = null; public ArrayList SettingNameIn = null; public BigDecimal DisplayOrder = null; public BigDecimal DisplayOrderGreaterThanOrEqualTo = null; public BigDecimal DisplayOrderGreaterThan = null; public BigDecimal DisplayOrderLessThan = null; public BigDecimal DisplayOrderLessThanOrEqualTo = null; public BigDecimal DisplayOrderNotEqualTo = null; public ArrayList DisplayOrderBetween = null; public ArrayList DisplayOrderIn = null; public Short CellType = null; public Short CellTypeGreaterThanOrEqualTo = null; public Short CellTypeGreaterThan = null; public Short CellTypeLessThan = null; public Short CellTypeLessThanOrEqualTo = null; public Short CellTypeNotEqualTo = null; public ArrayList CellTypeBetween = null; public ArrayList CellTypeIn = null; public String ScriptFormatCell = null; public String ScriptFormatCellStartsWith = null; public String ScriptFormatCellEndsWith = null; public String ScriptFormatCellContains = null; public String ScriptFormatCellLike = null; public ArrayList ScriptFormatCellBetween = null; public ArrayList ScriptFormatCellIn = null; public String ScriptButtonClicked = null; public String ScriptButtonClickedStartsWith = null; public String ScriptButtonClickedEndsWith = null; public String ScriptButtonClickedContains = null; public String ScriptButtonClickedLike = null; public ArrayList ScriptButtonClickedBetween = null; public ArrayList ScriptButtonClickedIn = null; public String ScriptReadData = null; public String ScriptReadDataStartsWith = null; public String ScriptReadDataEndsWith = null; public String ScriptReadDataContains = null; public String ScriptReadDataLike = null; public ArrayList ScriptReadDataBetween = null; public ArrayList ScriptReadDataIn = null; public UUID SY_Plugin_RecID = null; public ArrayList SY_Plugin_RecIDIn = null; public String getSettingID() { return SettingID; } public SM_CustomSettingsQuery setSettingID(String value) { this.SettingID = value; return this; } public String getSettingIDStartsWith() { return SettingIDStartsWith; } public SM_CustomSettingsQuery setSettingIDStartsWith(String value) { this.SettingIDStartsWith = value; return this; } public String getSettingIDEndsWith() { return SettingIDEndsWith; } public SM_CustomSettingsQuery setSettingIDEndsWith(String value) { this.SettingIDEndsWith = value; return this; } public String getSettingIDContains() { return SettingIDContains; } public SM_CustomSettingsQuery setSettingIDContains(String value) { this.SettingIDContains = value; return this; } public String getSettingIDLike() { return SettingIDLike; } public SM_CustomSettingsQuery setSettingIDLike(String value) { this.SettingIDLike = value; return this; } public ArrayList getSettingIDBetween() { return SettingIDBetween; } public SM_CustomSettingsQuery setSettingIDBetween(ArrayList value) { this.SettingIDBetween = value; return this; } public ArrayList getSettingIDIn() { return SettingIDIn; } public SM_CustomSettingsQuery setSettingIDIn(ArrayList value) { this.SettingIDIn = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public SM_CustomSettingsQuery setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getLastSavedDateTimeGreaterThanOrEqualTo() { return LastSavedDateTimeGreaterThanOrEqualTo; } public SM_CustomSettingsQuery setLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.LastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeGreaterThan() { return LastSavedDateTimeGreaterThan; } public SM_CustomSettingsQuery setLastSavedDateTimeGreaterThan(Date value) { this.LastSavedDateTimeGreaterThan = value; return this; } public Date getLastSavedDateTimeLessThan() { return LastSavedDateTimeLessThan; } public SM_CustomSettingsQuery setLastSavedDateTimeLessThan(Date value) { this.LastSavedDateTimeLessThan = value; return this; } public Date getLastSavedDateTimeLessThanOrEqualTo() { return LastSavedDateTimeLessThanOrEqualTo; } public SM_CustomSettingsQuery setLastSavedDateTimeLessThanOrEqualTo(Date value) { this.LastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeNotEqualTo() { return LastSavedDateTimeNotEqualTo; } public SM_CustomSettingsQuery setLastSavedDateTimeNotEqualTo(Date value) { this.LastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getLastSavedDateTimeBetween() { return LastSavedDateTimeBetween; } public SM_CustomSettingsQuery setLastSavedDateTimeBetween(ArrayList value) { this.LastSavedDateTimeBetween = value; return this; } public ArrayList getLastSavedDateTimeIn() { return LastSavedDateTimeIn; } public SM_CustomSettingsQuery setLastSavedDateTimeIn(ArrayList value) { this.LastSavedDateTimeIn = value; return this; } public String getSettingDescription() { return SettingDescription; } public SM_CustomSettingsQuery setSettingDescription(String value) { this.SettingDescription = value; return this; } public String getSettingDescriptionStartsWith() { return SettingDescriptionStartsWith; } public SM_CustomSettingsQuery setSettingDescriptionStartsWith(String value) { this.SettingDescriptionStartsWith = value; return this; } public String getSettingDescriptionEndsWith() { return SettingDescriptionEndsWith; } public SM_CustomSettingsQuery setSettingDescriptionEndsWith(String value) { this.SettingDescriptionEndsWith = value; return this; } public String getSettingDescriptionContains() { return SettingDescriptionContains; } public SM_CustomSettingsQuery setSettingDescriptionContains(String value) { this.SettingDescriptionContains = value; return this; } public String getSettingDescriptionLike() { return SettingDescriptionLike; } public SM_CustomSettingsQuery setSettingDescriptionLike(String value) { this.SettingDescriptionLike = value; return this; } public ArrayList getSettingDescriptionBetween() { return SettingDescriptionBetween; } public SM_CustomSettingsQuery setSettingDescriptionBetween(ArrayList value) { this.SettingDescriptionBetween = value; return this; } public ArrayList getSettingDescriptionIn() { return SettingDescriptionIn; } public SM_CustomSettingsQuery setSettingDescriptionIn(ArrayList value) { this.SettingDescriptionIn = value; return this; } public String getSettingName() { return SettingName; } public SM_CustomSettingsQuery setSettingName(String value) { this.SettingName = value; return this; } public String getSettingNameStartsWith() { return SettingNameStartsWith; } public SM_CustomSettingsQuery setSettingNameStartsWith(String value) { this.SettingNameStartsWith = value; return this; } public String getSettingNameEndsWith() { return SettingNameEndsWith; } public SM_CustomSettingsQuery setSettingNameEndsWith(String value) { this.SettingNameEndsWith = value; return this; } public String getSettingNameContains() { return SettingNameContains; } public SM_CustomSettingsQuery setSettingNameContains(String value) { this.SettingNameContains = value; return this; } public String getSettingNameLike() { return SettingNameLike; } public SM_CustomSettingsQuery setSettingNameLike(String value) { this.SettingNameLike = value; return this; } public ArrayList getSettingNameBetween() { return SettingNameBetween; } public SM_CustomSettingsQuery setSettingNameBetween(ArrayList value) { this.SettingNameBetween = value; return this; } public ArrayList getSettingNameIn() { return SettingNameIn; } public SM_CustomSettingsQuery setSettingNameIn(ArrayList value) { this.SettingNameIn = value; return this; } public BigDecimal getDisplayOrder() { return DisplayOrder; } public SM_CustomSettingsQuery setDisplayOrder(BigDecimal value) { this.DisplayOrder = value; return this; } public BigDecimal getDisplayOrderGreaterThanOrEqualTo() { return DisplayOrderGreaterThanOrEqualTo; } public SM_CustomSettingsQuery setDisplayOrderGreaterThanOrEqualTo(BigDecimal value) { this.DisplayOrderGreaterThanOrEqualTo = value; return this; } public BigDecimal getDisplayOrderGreaterThan() { return DisplayOrderGreaterThan; } public SM_CustomSettingsQuery setDisplayOrderGreaterThan(BigDecimal value) { this.DisplayOrderGreaterThan = value; return this; } public BigDecimal getDisplayOrderLessThan() { return DisplayOrderLessThan; } public SM_CustomSettingsQuery setDisplayOrderLessThan(BigDecimal value) { this.DisplayOrderLessThan = value; return this; } public BigDecimal getDisplayOrderLessThanOrEqualTo() { return DisplayOrderLessThanOrEqualTo; } public SM_CustomSettingsQuery setDisplayOrderLessThanOrEqualTo(BigDecimal value) { this.DisplayOrderLessThanOrEqualTo = value; return this; } public BigDecimal getDisplayOrderNotEqualTo() { return DisplayOrderNotEqualTo; } public SM_CustomSettingsQuery setDisplayOrderNotEqualTo(BigDecimal value) { this.DisplayOrderNotEqualTo = value; return this; } public ArrayList getDisplayOrderBetween() { return DisplayOrderBetween; } public SM_CustomSettingsQuery setDisplayOrderBetween(ArrayList value) { this.DisplayOrderBetween = value; return this; } public ArrayList getDisplayOrderIn() { return DisplayOrderIn; } public SM_CustomSettingsQuery setDisplayOrderIn(ArrayList value) { this.DisplayOrderIn = value; return this; } public Short getCellType() { return CellType; } public SM_CustomSettingsQuery setCellType(Short value) { this.CellType = value; return this; } public Short getCellTypeGreaterThanOrEqualTo() { return CellTypeGreaterThanOrEqualTo; } public SM_CustomSettingsQuery setCellTypeGreaterThanOrEqualTo(Short value) { this.CellTypeGreaterThanOrEqualTo = value; return this; } public Short getCellTypeGreaterThan() { return CellTypeGreaterThan; } public SM_CustomSettingsQuery setCellTypeGreaterThan(Short value) { this.CellTypeGreaterThan = value; return this; } public Short getCellTypeLessThan() { return CellTypeLessThan; } public SM_CustomSettingsQuery setCellTypeLessThan(Short value) { this.CellTypeLessThan = value; return this; } public Short getCellTypeLessThanOrEqualTo() { return CellTypeLessThanOrEqualTo; } public SM_CustomSettingsQuery setCellTypeLessThanOrEqualTo(Short value) { this.CellTypeLessThanOrEqualTo = value; return this; } public Short getCellTypeNotEqualTo() { return CellTypeNotEqualTo; } public SM_CustomSettingsQuery setCellTypeNotEqualTo(Short value) { this.CellTypeNotEqualTo = value; return this; } public ArrayList getCellTypeBetween() { return CellTypeBetween; } public SM_CustomSettingsQuery setCellTypeBetween(ArrayList value) { this.CellTypeBetween = value; return this; } public ArrayList getCellTypeIn() { return CellTypeIn; } public SM_CustomSettingsQuery setCellTypeIn(ArrayList value) { this.CellTypeIn = value; return this; } public String getScriptFormatCell() { return ScriptFormatCell; } public SM_CustomSettingsQuery setScriptFormatCell(String value) { this.ScriptFormatCell = value; return this; } public String getScriptFormatCellStartsWith() { return ScriptFormatCellStartsWith; } public SM_CustomSettingsQuery setScriptFormatCellStartsWith(String value) { this.ScriptFormatCellStartsWith = value; return this; } public String getScriptFormatCellEndsWith() { return ScriptFormatCellEndsWith; } public SM_CustomSettingsQuery setScriptFormatCellEndsWith(String value) { this.ScriptFormatCellEndsWith = value; return this; } public String getScriptFormatCellContains() { return ScriptFormatCellContains; } public SM_CustomSettingsQuery setScriptFormatCellContains(String value) { this.ScriptFormatCellContains = value; return this; } public String getScriptFormatCellLike() { return ScriptFormatCellLike; } public SM_CustomSettingsQuery setScriptFormatCellLike(String value) { this.ScriptFormatCellLike = value; return this; } public ArrayList getScriptFormatCellBetween() { return ScriptFormatCellBetween; } public SM_CustomSettingsQuery setScriptFormatCellBetween(ArrayList value) { this.ScriptFormatCellBetween = value; return this; } public ArrayList getScriptFormatCellIn() { return ScriptFormatCellIn; } public SM_CustomSettingsQuery setScriptFormatCellIn(ArrayList value) { this.ScriptFormatCellIn = value; return this; } public String getScriptButtonClicked() { return ScriptButtonClicked; } public SM_CustomSettingsQuery setScriptButtonClicked(String value) { this.ScriptButtonClicked = value; return this; } public String getScriptButtonClickedStartsWith() { return ScriptButtonClickedStartsWith; } public SM_CustomSettingsQuery setScriptButtonClickedStartsWith(String value) { this.ScriptButtonClickedStartsWith = value; return this; } public String getScriptButtonClickedEndsWith() { return ScriptButtonClickedEndsWith; } public SM_CustomSettingsQuery setScriptButtonClickedEndsWith(String value) { this.ScriptButtonClickedEndsWith = value; return this; } public String getScriptButtonClickedContains() { return ScriptButtonClickedContains; } public SM_CustomSettingsQuery setScriptButtonClickedContains(String value) { this.ScriptButtonClickedContains = value; return this; } public String getScriptButtonClickedLike() { return ScriptButtonClickedLike; } public SM_CustomSettingsQuery setScriptButtonClickedLike(String value) { this.ScriptButtonClickedLike = value; return this; } public ArrayList getScriptButtonClickedBetween() { return ScriptButtonClickedBetween; } public SM_CustomSettingsQuery setScriptButtonClickedBetween(ArrayList value) { this.ScriptButtonClickedBetween = value; return this; } public ArrayList getScriptButtonClickedIn() { return ScriptButtonClickedIn; } public SM_CustomSettingsQuery setScriptButtonClickedIn(ArrayList value) { this.ScriptButtonClickedIn = value; return this; } public String getScriptReadData() { return ScriptReadData; } public SM_CustomSettingsQuery setScriptReadData(String value) { this.ScriptReadData = value; return this; } public String getScriptReadDataStartsWith() { return ScriptReadDataStartsWith; } public SM_CustomSettingsQuery setScriptReadDataStartsWith(String value) { this.ScriptReadDataStartsWith = value; return this; } public String getScriptReadDataEndsWith() { return ScriptReadDataEndsWith; } public SM_CustomSettingsQuery setScriptReadDataEndsWith(String value) { this.ScriptReadDataEndsWith = value; return this; } public String getScriptReadDataContains() { return ScriptReadDataContains; } public SM_CustomSettingsQuery setScriptReadDataContains(String value) { this.ScriptReadDataContains = value; return this; } public String getScriptReadDataLike() { return ScriptReadDataLike; } public SM_CustomSettingsQuery setScriptReadDataLike(String value) { this.ScriptReadDataLike = value; return this; } public ArrayList getScriptReadDataBetween() { return ScriptReadDataBetween; } public SM_CustomSettingsQuery setScriptReadDataBetween(ArrayList value) { this.ScriptReadDataBetween = value; return this; } public ArrayList getScriptReadDataIn() { return ScriptReadDataIn; } public SM_CustomSettingsQuery setScriptReadDataIn(ArrayList value) { this.ScriptReadDataIn = value; return this; } public UUID getSyPluginRecID() { return SY_Plugin_RecID; } public SM_CustomSettingsQuery setSyPluginRecID(UUID value) { this.SY_Plugin_RecID = value; return this; } public ArrayList getSyPluginRecIDIn() { return SY_Plugin_RecIDIn; } public SM_CustomSettingsQuery setSyPluginRecIDIn(ArrayList value) { this.SY_Plugin_RecIDIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class SM_CustomSettingValuesQuery extends QueryDb implements IReturn> { public String SettingValueID = null; public String SettingValueIDStartsWith = null; public String SettingValueIDEndsWith = null; public String SettingValueIDContains = null; public String SettingValueIDLike = null; public ArrayList SettingValueIDBetween = null; public ArrayList SettingValueIDIn = null; public String SettingID = null; public String SettingIDStartsWith = null; public String SettingIDEndsWith = null; public String SettingIDContains = null; public String SettingIDLike = null; public ArrayList SettingIDBetween = null; public ArrayList SettingIDIn = null; public String TaskID = null; public String TaskIDStartsWith = null; public String TaskIDEndsWith = null; public String TaskIDContains = null; public String TaskIDLike = null; public ArrayList TaskIDBetween = null; public ArrayList TaskIDIn = null; public String Contents = null; public String ContentsStartsWith = null; public String ContentsEndsWith = null; public String ContentsContains = null; public String ContentsLike = null; public ArrayList ContentsBetween = null; public ArrayList ContentsIn = null; public Date LastSavedDateTime = null; public Date LastSavedDateTimeGreaterThanOrEqualTo = null; public Date LastSavedDateTimeGreaterThan = null; public Date LastSavedDateTimeLessThan = null; public Date LastSavedDateTimeLessThanOrEqualTo = null; public Date LastSavedDateTimeNotEqualTo = null; public ArrayList LastSavedDateTimeBetween = null; public ArrayList LastSavedDateTimeIn = null; public String getSettingValueID() { return SettingValueID; } public SM_CustomSettingValuesQuery setSettingValueID(String value) { this.SettingValueID = value; return this; } public String getSettingValueIDStartsWith() { return SettingValueIDStartsWith; } public SM_CustomSettingValuesQuery setSettingValueIDStartsWith(String value) { this.SettingValueIDStartsWith = value; return this; } public String getSettingValueIDEndsWith() { return SettingValueIDEndsWith; } public SM_CustomSettingValuesQuery setSettingValueIDEndsWith(String value) { this.SettingValueIDEndsWith = value; return this; } public String getSettingValueIDContains() { return SettingValueIDContains; } public SM_CustomSettingValuesQuery setSettingValueIDContains(String value) { this.SettingValueIDContains = value; return this; } public String getSettingValueIDLike() { return SettingValueIDLike; } public SM_CustomSettingValuesQuery setSettingValueIDLike(String value) { this.SettingValueIDLike = value; return this; } public ArrayList getSettingValueIDBetween() { return SettingValueIDBetween; } public SM_CustomSettingValuesQuery setSettingValueIDBetween(ArrayList value) { this.SettingValueIDBetween = value; return this; } public ArrayList getSettingValueIDIn() { return SettingValueIDIn; } public SM_CustomSettingValuesQuery setSettingValueIDIn(ArrayList value) { this.SettingValueIDIn = value; return this; } public String getSettingID() { return SettingID; } public SM_CustomSettingValuesQuery setSettingID(String value) { this.SettingID = value; return this; } public String getSettingIDStartsWith() { return SettingIDStartsWith; } public SM_CustomSettingValuesQuery setSettingIDStartsWith(String value) { this.SettingIDStartsWith = value; return this; } public String getSettingIDEndsWith() { return SettingIDEndsWith; } public SM_CustomSettingValuesQuery setSettingIDEndsWith(String value) { this.SettingIDEndsWith = value; return this; } public String getSettingIDContains() { return SettingIDContains; } public SM_CustomSettingValuesQuery setSettingIDContains(String value) { this.SettingIDContains = value; return this; } public String getSettingIDLike() { return SettingIDLike; } public SM_CustomSettingValuesQuery setSettingIDLike(String value) { this.SettingIDLike = value; return this; } public ArrayList getSettingIDBetween() { return SettingIDBetween; } public SM_CustomSettingValuesQuery setSettingIDBetween(ArrayList value) { this.SettingIDBetween = value; return this; } public ArrayList getSettingIDIn() { return SettingIDIn; } public SM_CustomSettingValuesQuery setSettingIDIn(ArrayList value) { this.SettingIDIn = value; return this; } public String getTaskID() { return TaskID; } public SM_CustomSettingValuesQuery setTaskID(String value) { this.TaskID = value; return this; } public String getTaskIDStartsWith() { return TaskIDStartsWith; } public SM_CustomSettingValuesQuery setTaskIDStartsWith(String value) { this.TaskIDStartsWith = value; return this; } public String getTaskIDEndsWith() { return TaskIDEndsWith; } public SM_CustomSettingValuesQuery setTaskIDEndsWith(String value) { this.TaskIDEndsWith = value; return this; } public String getTaskIDContains() { return TaskIDContains; } public SM_CustomSettingValuesQuery setTaskIDContains(String value) { this.TaskIDContains = value; return this; } public String getTaskIDLike() { return TaskIDLike; } public SM_CustomSettingValuesQuery setTaskIDLike(String value) { this.TaskIDLike = value; return this; } public ArrayList getTaskIDBetween() { return TaskIDBetween; } public SM_CustomSettingValuesQuery setTaskIDBetween(ArrayList value) { this.TaskIDBetween = value; return this; } public ArrayList getTaskIDIn() { return TaskIDIn; } public SM_CustomSettingValuesQuery setTaskIDIn(ArrayList value) { this.TaskIDIn = value; return this; } public String getContents() { return Contents; } public SM_CustomSettingValuesQuery setContents(String value) { this.Contents = value; return this; } public String getContentsStartsWith() { return ContentsStartsWith; } public SM_CustomSettingValuesQuery setContentsStartsWith(String value) { this.ContentsStartsWith = value; return this; } public String getContentsEndsWith() { return ContentsEndsWith; } public SM_CustomSettingValuesQuery setContentsEndsWith(String value) { this.ContentsEndsWith = value; return this; } public String getContentsContains() { return ContentsContains; } public SM_CustomSettingValuesQuery setContentsContains(String value) { this.ContentsContains = value; return this; } public String getContentsLike() { return ContentsLike; } public SM_CustomSettingValuesQuery setContentsLike(String value) { this.ContentsLike = value; return this; } public ArrayList getContentsBetween() { return ContentsBetween; } public SM_CustomSettingValuesQuery setContentsBetween(ArrayList value) { this.ContentsBetween = value; return this; } public ArrayList getContentsIn() { return ContentsIn; } public SM_CustomSettingValuesQuery setContentsIn(ArrayList value) { this.ContentsIn = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public SM_CustomSettingValuesQuery setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getLastSavedDateTimeGreaterThanOrEqualTo() { return LastSavedDateTimeGreaterThanOrEqualTo; } public SM_CustomSettingValuesQuery setLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.LastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeGreaterThan() { return LastSavedDateTimeGreaterThan; } public SM_CustomSettingValuesQuery setLastSavedDateTimeGreaterThan(Date value) { this.LastSavedDateTimeGreaterThan = value; return this; } public Date getLastSavedDateTimeLessThan() { return LastSavedDateTimeLessThan; } public SM_CustomSettingValuesQuery setLastSavedDateTimeLessThan(Date value) { this.LastSavedDateTimeLessThan = value; return this; } public Date getLastSavedDateTimeLessThanOrEqualTo() { return LastSavedDateTimeLessThanOrEqualTo; } public SM_CustomSettingValuesQuery setLastSavedDateTimeLessThanOrEqualTo(Date value) { this.LastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeNotEqualTo() { return LastSavedDateTimeNotEqualTo; } public SM_CustomSettingValuesQuery setLastSavedDateTimeNotEqualTo(Date value) { this.LastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getLastSavedDateTimeBetween() { return LastSavedDateTimeBetween; } public SM_CustomSettingValuesQuery setLastSavedDateTimeBetween(ArrayList value) { this.LastSavedDateTimeBetween = value; return this; } public ArrayList getLastSavedDateTimeIn() { return LastSavedDateTimeIn; } public SM_CustomSettingValuesQuery setLastSavedDateTimeIn(ArrayList value) { this.LastSavedDateTimeIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class SM_DebtorManagerQuery extends QueryDb implements IReturn> { public String DebtorID = null; public String DebtorIDStartsWith = null; public String DebtorIDEndsWith = null; public String DebtorIDContains = null; public String DebtorIDLike = null; public ArrayList DebtorIDBetween = null; public ArrayList DebtorIDIn = null; public String Name = null; public String NameStartsWith = null; public String NameEndsWith = null; public String NameContains = null; public String NameLike = null; public ArrayList NameBetween = null; public ArrayList NameIn = null; public String StaffID = null; public String StaffIDStartsWith = null; public String StaffIDEndsWith = null; public String StaffIDContains = null; public String StaffIDLike = null; public ArrayList StaffIDBetween = null; public ArrayList StaffIDIn = null; public String FName = null; public String FNameStartsWith = null; public String FNameEndsWith = null; public String FNameContains = null; public String FNameLike = null; public ArrayList FNameBetween = null; public ArrayList FNameIn = null; public String SName = null; public String SNameStartsWith = null; public String SNameEndsWith = null; public String SNameContains = null; public String SNameLike = null; public ArrayList SNameBetween = null; public ArrayList SNameIn = null; public String getDebtorID() { return DebtorID; } public SM_DebtorManagerQuery setDebtorID(String value) { this.DebtorID = value; return this; } public String getDebtorIDStartsWith() { return DebtorIDStartsWith; } public SM_DebtorManagerQuery setDebtorIDStartsWith(String value) { this.DebtorIDStartsWith = value; return this; } public String getDebtorIDEndsWith() { return DebtorIDEndsWith; } public SM_DebtorManagerQuery setDebtorIDEndsWith(String value) { this.DebtorIDEndsWith = value; return this; } public String getDebtorIDContains() { return DebtorIDContains; } public SM_DebtorManagerQuery setDebtorIDContains(String value) { this.DebtorIDContains = value; return this; } public String getDebtorIDLike() { return DebtorIDLike; } public SM_DebtorManagerQuery setDebtorIDLike(String value) { this.DebtorIDLike = value; return this; } public ArrayList getDebtorIDBetween() { return DebtorIDBetween; } public SM_DebtorManagerQuery setDebtorIDBetween(ArrayList value) { this.DebtorIDBetween = value; return this; } public ArrayList getDebtorIDIn() { return DebtorIDIn; } public SM_DebtorManagerQuery setDebtorIDIn(ArrayList value) { this.DebtorIDIn = value; return this; } public String getName() { return Name; } public SM_DebtorManagerQuery setName(String value) { this.Name = value; return this; } public String getNameStartsWith() { return NameStartsWith; } public SM_DebtorManagerQuery setNameStartsWith(String value) { this.NameStartsWith = value; return this; } public String getNameEndsWith() { return NameEndsWith; } public SM_DebtorManagerQuery setNameEndsWith(String value) { this.NameEndsWith = value; return this; } public String getNameContains() { return NameContains; } public SM_DebtorManagerQuery setNameContains(String value) { this.NameContains = value; return this; } public String getNameLike() { return NameLike; } public SM_DebtorManagerQuery setNameLike(String value) { this.NameLike = value; return this; } public ArrayList getNameBetween() { return NameBetween; } public SM_DebtorManagerQuery setNameBetween(ArrayList value) { this.NameBetween = value; return this; } public ArrayList getNameIn() { return NameIn; } public SM_DebtorManagerQuery setNameIn(ArrayList value) { this.NameIn = value; return this; } public String getStaffID() { return StaffID; } public SM_DebtorManagerQuery setStaffID(String value) { this.StaffID = value; return this; } public String getStaffIDStartsWith() { return StaffIDStartsWith; } public SM_DebtorManagerQuery setStaffIDStartsWith(String value) { this.StaffIDStartsWith = value; return this; } public String getStaffIDEndsWith() { return StaffIDEndsWith; } public SM_DebtorManagerQuery setStaffIDEndsWith(String value) { this.StaffIDEndsWith = value; return this; } public String getStaffIDContains() { return StaffIDContains; } public SM_DebtorManagerQuery setStaffIDContains(String value) { this.StaffIDContains = value; return this; } public String getStaffIDLike() { return StaffIDLike; } public SM_DebtorManagerQuery setStaffIDLike(String value) { this.StaffIDLike = value; return this; } public ArrayList getStaffIDBetween() { return StaffIDBetween; } public SM_DebtorManagerQuery setStaffIDBetween(ArrayList value) { this.StaffIDBetween = value; return this; } public ArrayList getStaffIDIn() { return StaffIDIn; } public SM_DebtorManagerQuery setStaffIDIn(ArrayList value) { this.StaffIDIn = value; return this; } public String getFName() { return FName; } public SM_DebtorManagerQuery setFName(String value) { this.FName = value; return this; } public String getFNameStartsWith() { return FNameStartsWith; } public SM_DebtorManagerQuery setFNameStartsWith(String value) { this.FNameStartsWith = value; return this; } public String getFNameEndsWith() { return FNameEndsWith; } public SM_DebtorManagerQuery setFNameEndsWith(String value) { this.FNameEndsWith = value; return this; } public String getFNameContains() { return FNameContains; } public SM_DebtorManagerQuery setFNameContains(String value) { this.FNameContains = value; return this; } public String getFNameLike() { return FNameLike; } public SM_DebtorManagerQuery setFNameLike(String value) { this.FNameLike = value; return this; } public ArrayList getFNameBetween() { return FNameBetween; } public SM_DebtorManagerQuery setFNameBetween(ArrayList value) { this.FNameBetween = value; return this; } public ArrayList getFNameIn() { return FNameIn; } public SM_DebtorManagerQuery setFNameIn(ArrayList value) { this.FNameIn = value; return this; } public String getSName() { return SName; } public SM_DebtorManagerQuery setSName(String value) { this.SName = value; return this; } public String getSNameStartsWith() { return SNameStartsWith; } public SM_DebtorManagerQuery setSNameStartsWith(String value) { this.SNameStartsWith = value; return this; } public String getSNameEndsWith() { return SNameEndsWith; } public SM_DebtorManagerQuery setSNameEndsWith(String value) { this.SNameEndsWith = value; return this; } public String getSNameContains() { return SNameContains; } public SM_DebtorManagerQuery setSNameContains(String value) { this.SNameContains = value; return this; } public String getSNameLike() { return SNameLike; } public SM_DebtorManagerQuery setSNameLike(String value) { this.SNameLike = value; return this; } public ArrayList getSNameBetween() { return SNameBetween; } public SM_DebtorManagerQuery setSNameBetween(ArrayList value) { this.SNameBetween = value; return this; } public ArrayList getSNameIn() { return SNameIn; } public SM_DebtorManagerQuery setSNameIn(ArrayList value) { this.SNameIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class SM_DocumentsQuery extends QueryDb implements IReturn> { public String RecID = null; public String RecIDStartsWith = null; public String RecIDEndsWith = null; public String RecIDContains = null; public String RecIDLike = null; public ArrayList RecIDBetween = null; public ArrayList RecIDIn = null; public String SM_Tasks_RecID = null; public String SM_Tasks_RecIDStartsWith = null; public String SM_Tasks_RecIDEndsWith = null; public String SM_Tasks_RecIDContains = null; public String SM_Tasks_RecIDLike = null; public ArrayList SM_Tasks_RecIDBetween = null; public ArrayList SM_Tasks_RecIDIn = null; public String DocumentTypeID = null; public String DocumentTypeIDStartsWith = null; public String DocumentTypeIDEndsWith = null; public String DocumentTypeIDContains = null; public String DocumentTypeIDLike = null; public ArrayList DocumentTypeIDBetween = null; public ArrayList DocumentTypeIDIn = null; public Date LastSavedDateTime = null; public Date LastSavedDateTimeGreaterThanOrEqualTo = null; public Date LastSavedDateTimeGreaterThan = null; public Date LastSavedDateTimeLessThan = null; public Date LastSavedDateTimeLessThanOrEqualTo = null; public Date LastSavedDateTimeNotEqualTo = null; public ArrayList LastSavedDateTimeBetween = null; public ArrayList LastSavedDateTimeIn = null; public String LastSavedByStaffID = null; public String LastSavedByStaffIDStartsWith = null; public String LastSavedByStaffIDEndsWith = null; public String LastSavedByStaffIDContains = null; public String LastSavedByStaffIDLike = null; public ArrayList LastSavedByStaffIDBetween = null; public ArrayList LastSavedByStaffIDIn = null; public ArrayList FileBinary = null; public String Description = null; public String DescriptionStartsWith = null; public String DescriptionEndsWith = null; public String DescriptionContains = null; public String DescriptionLike = null; public ArrayList DescriptionBetween = null; public ArrayList DescriptionIn = null; public String PhysicalFileName = null; public String PhysicalFileNameStartsWith = null; public String PhysicalFileNameEndsWith = null; public String PhysicalFileNameContains = null; public String PhysicalFileNameLike = null; public ArrayList PhysicalFileNameBetween = null; public ArrayList PhysicalFileNameIn = null; public Integer ItemNo = null; public Integer ItemNoGreaterThanOrEqualTo = null; public Integer ItemNoGreaterThan = null; public Integer ItemNoLessThan = null; public Integer ItemNoLessThanOrEqualTo = null; public Integer ItemNoNotEqualTo = null; public ArrayList ItemNoBetween = null; public ArrayList ItemNoIn = null; public String getRecID() { return RecID; } public SM_DocumentsQuery setRecID(String value) { this.RecID = value; return this; } public String getRecIDStartsWith() { return RecIDStartsWith; } public SM_DocumentsQuery setRecIDStartsWith(String value) { this.RecIDStartsWith = value; return this; } public String getRecIDEndsWith() { return RecIDEndsWith; } public SM_DocumentsQuery setRecIDEndsWith(String value) { this.RecIDEndsWith = value; return this; } public String getRecIDContains() { return RecIDContains; } public SM_DocumentsQuery setRecIDContains(String value) { this.RecIDContains = value; return this; } public String getRecIDLike() { return RecIDLike; } public SM_DocumentsQuery setRecIDLike(String value) { this.RecIDLike = value; return this; } public ArrayList getRecIDBetween() { return RecIDBetween; } public SM_DocumentsQuery setRecIDBetween(ArrayList value) { this.RecIDBetween = value; return this; } public ArrayList getRecIDIn() { return RecIDIn; } public SM_DocumentsQuery setRecIDIn(ArrayList value) { this.RecIDIn = value; return this; } public String getSmTasksRecID() { return SM_Tasks_RecID; } public SM_DocumentsQuery setSmTasksRecID(String value) { this.SM_Tasks_RecID = value; return this; } public String getSmTasksRecIDStartsWith() { return SM_Tasks_RecIDStartsWith; } public SM_DocumentsQuery setSmTasksRecIDStartsWith(String value) { this.SM_Tasks_RecIDStartsWith = value; return this; } public String getSmTasksRecIDEndsWith() { return SM_Tasks_RecIDEndsWith; } public SM_DocumentsQuery setSmTasksRecIDEndsWith(String value) { this.SM_Tasks_RecIDEndsWith = value; return this; } public String getSmTasksRecIDContains() { return SM_Tasks_RecIDContains; } public SM_DocumentsQuery setSmTasksRecIDContains(String value) { this.SM_Tasks_RecIDContains = value; return this; } public String getSmTasksRecIDLike() { return SM_Tasks_RecIDLike; } public SM_DocumentsQuery setSmTasksRecIDLike(String value) { this.SM_Tasks_RecIDLike = value; return this; } public ArrayList getSmTasksRecIDBetween() { return SM_Tasks_RecIDBetween; } public SM_DocumentsQuery setSmTasksRecIDBetween(ArrayList value) { this.SM_Tasks_RecIDBetween = value; return this; } public ArrayList getSmTasksRecIDIn() { return SM_Tasks_RecIDIn; } public SM_DocumentsQuery setSmTasksRecIDIn(ArrayList value) { this.SM_Tasks_RecIDIn = value; return this; } public String getDocumentTypeID() { return DocumentTypeID; } public SM_DocumentsQuery setDocumentTypeID(String value) { this.DocumentTypeID = value; return this; } public String getDocumentTypeIDStartsWith() { return DocumentTypeIDStartsWith; } public SM_DocumentsQuery setDocumentTypeIDStartsWith(String value) { this.DocumentTypeIDStartsWith = value; return this; } public String getDocumentTypeIDEndsWith() { return DocumentTypeIDEndsWith; } public SM_DocumentsQuery setDocumentTypeIDEndsWith(String value) { this.DocumentTypeIDEndsWith = value; return this; } public String getDocumentTypeIDContains() { return DocumentTypeIDContains; } public SM_DocumentsQuery setDocumentTypeIDContains(String value) { this.DocumentTypeIDContains = value; return this; } public String getDocumentTypeIDLike() { return DocumentTypeIDLike; } public SM_DocumentsQuery setDocumentTypeIDLike(String value) { this.DocumentTypeIDLike = value; return this; } public ArrayList getDocumentTypeIDBetween() { return DocumentTypeIDBetween; } public SM_DocumentsQuery setDocumentTypeIDBetween(ArrayList value) { this.DocumentTypeIDBetween = value; return this; } public ArrayList getDocumentTypeIDIn() { return DocumentTypeIDIn; } public SM_DocumentsQuery setDocumentTypeIDIn(ArrayList value) { this.DocumentTypeIDIn = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public SM_DocumentsQuery setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getLastSavedDateTimeGreaterThanOrEqualTo() { return LastSavedDateTimeGreaterThanOrEqualTo; } public SM_DocumentsQuery setLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.LastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeGreaterThan() { return LastSavedDateTimeGreaterThan; } public SM_DocumentsQuery setLastSavedDateTimeGreaterThan(Date value) { this.LastSavedDateTimeGreaterThan = value; return this; } public Date getLastSavedDateTimeLessThan() { return LastSavedDateTimeLessThan; } public SM_DocumentsQuery setLastSavedDateTimeLessThan(Date value) { this.LastSavedDateTimeLessThan = value; return this; } public Date getLastSavedDateTimeLessThanOrEqualTo() { return LastSavedDateTimeLessThanOrEqualTo; } public SM_DocumentsQuery setLastSavedDateTimeLessThanOrEqualTo(Date value) { this.LastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeNotEqualTo() { return LastSavedDateTimeNotEqualTo; } public SM_DocumentsQuery setLastSavedDateTimeNotEqualTo(Date value) { this.LastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getLastSavedDateTimeBetween() { return LastSavedDateTimeBetween; } public SM_DocumentsQuery setLastSavedDateTimeBetween(ArrayList value) { this.LastSavedDateTimeBetween = value; return this; } public ArrayList getLastSavedDateTimeIn() { return LastSavedDateTimeIn; } public SM_DocumentsQuery setLastSavedDateTimeIn(ArrayList value) { this.LastSavedDateTimeIn = value; return this; } public String getLastSavedByStaffID() { return LastSavedByStaffID; } public SM_DocumentsQuery setLastSavedByStaffID(String value) { this.LastSavedByStaffID = value; return this; } public String getLastSavedByStaffIDStartsWith() { return LastSavedByStaffIDStartsWith; } public SM_DocumentsQuery setLastSavedByStaffIDStartsWith(String value) { this.LastSavedByStaffIDStartsWith = value; return this; } public String getLastSavedByStaffIDEndsWith() { return LastSavedByStaffIDEndsWith; } public SM_DocumentsQuery setLastSavedByStaffIDEndsWith(String value) { this.LastSavedByStaffIDEndsWith = value; return this; } public String getLastSavedByStaffIDContains() { return LastSavedByStaffIDContains; } public SM_DocumentsQuery setLastSavedByStaffIDContains(String value) { this.LastSavedByStaffIDContains = value; return this; } public String getLastSavedByStaffIDLike() { return LastSavedByStaffIDLike; } public SM_DocumentsQuery setLastSavedByStaffIDLike(String value) { this.LastSavedByStaffIDLike = value; return this; } public ArrayList getLastSavedByStaffIDBetween() { return LastSavedByStaffIDBetween; } public SM_DocumentsQuery setLastSavedByStaffIDBetween(ArrayList value) { this.LastSavedByStaffIDBetween = value; return this; } public ArrayList getLastSavedByStaffIDIn() { return LastSavedByStaffIDIn; } public SM_DocumentsQuery setLastSavedByStaffIDIn(ArrayList value) { this.LastSavedByStaffIDIn = value; return this; } public ArrayList getFileBinary() { return FileBinary; } public SM_DocumentsQuery setFileBinary(ArrayList value) { this.FileBinary = value; return this; } public String getDescription() { return Description; } public SM_DocumentsQuery setDescription(String value) { this.Description = value; return this; } public String getDescriptionStartsWith() { return DescriptionStartsWith; } public SM_DocumentsQuery setDescriptionStartsWith(String value) { this.DescriptionStartsWith = value; return this; } public String getDescriptionEndsWith() { return DescriptionEndsWith; } public SM_DocumentsQuery setDescriptionEndsWith(String value) { this.DescriptionEndsWith = value; return this; } public String getDescriptionContains() { return DescriptionContains; } public SM_DocumentsQuery setDescriptionContains(String value) { this.DescriptionContains = value; return this; } public String getDescriptionLike() { return DescriptionLike; } public SM_DocumentsQuery setDescriptionLike(String value) { this.DescriptionLike = value; return this; } public ArrayList getDescriptionBetween() { return DescriptionBetween; } public SM_DocumentsQuery setDescriptionBetween(ArrayList value) { this.DescriptionBetween = value; return this; } public ArrayList getDescriptionIn() { return DescriptionIn; } public SM_DocumentsQuery setDescriptionIn(ArrayList value) { this.DescriptionIn = value; return this; } public String getPhysicalFileName() { return PhysicalFileName; } public SM_DocumentsQuery setPhysicalFileName(String value) { this.PhysicalFileName = value; return this; } public String getPhysicalFileNameStartsWith() { return PhysicalFileNameStartsWith; } public SM_DocumentsQuery setPhysicalFileNameStartsWith(String value) { this.PhysicalFileNameStartsWith = value; return this; } public String getPhysicalFileNameEndsWith() { return PhysicalFileNameEndsWith; } public SM_DocumentsQuery setPhysicalFileNameEndsWith(String value) { this.PhysicalFileNameEndsWith = value; return this; } public String getPhysicalFileNameContains() { return PhysicalFileNameContains; } public SM_DocumentsQuery setPhysicalFileNameContains(String value) { this.PhysicalFileNameContains = value; return this; } public String getPhysicalFileNameLike() { return PhysicalFileNameLike; } public SM_DocumentsQuery setPhysicalFileNameLike(String value) { this.PhysicalFileNameLike = value; return this; } public ArrayList getPhysicalFileNameBetween() { return PhysicalFileNameBetween; } public SM_DocumentsQuery setPhysicalFileNameBetween(ArrayList value) { this.PhysicalFileNameBetween = value; return this; } public ArrayList getPhysicalFileNameIn() { return PhysicalFileNameIn; } public SM_DocumentsQuery setPhysicalFileNameIn(ArrayList value) { this.PhysicalFileNameIn = value; return this; } public Integer getItemNo() { return ItemNo; } public SM_DocumentsQuery setItemNo(Integer value) { this.ItemNo = value; return this; } public Integer getItemNoGreaterThanOrEqualTo() { return ItemNoGreaterThanOrEqualTo; } public SM_DocumentsQuery setItemNoGreaterThanOrEqualTo(Integer value) { this.ItemNoGreaterThanOrEqualTo = value; return this; } public Integer getItemNoGreaterThan() { return ItemNoGreaterThan; } public SM_DocumentsQuery setItemNoGreaterThan(Integer value) { this.ItemNoGreaterThan = value; return this; } public Integer getItemNoLessThan() { return ItemNoLessThan; } public SM_DocumentsQuery setItemNoLessThan(Integer value) { this.ItemNoLessThan = value; return this; } public Integer getItemNoLessThanOrEqualTo() { return ItemNoLessThanOrEqualTo; } public SM_DocumentsQuery setItemNoLessThanOrEqualTo(Integer value) { this.ItemNoLessThanOrEqualTo = value; return this; } public Integer getItemNoNotEqualTo() { return ItemNoNotEqualTo; } public SM_DocumentsQuery setItemNoNotEqualTo(Integer value) { this.ItemNoNotEqualTo = value; return this; } public ArrayList getItemNoBetween() { return ItemNoBetween; } public SM_DocumentsQuery setItemNoBetween(ArrayList value) { this.ItemNoBetween = value; return this; } public ArrayList getItemNoIn() { return ItemNoIn; } public SM_DocumentsQuery setItemNoIn(ArrayList value) { this.ItemNoIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class SM_EmailLogQuery extends QueryDb implements IReturn> { public String RecID = null; public String RecIDStartsWith = null; public String RecIDEndsWith = null; public String RecIDContains = null; public String RecIDLike = null; public ArrayList RecIDBetween = null; public ArrayList RecIDIn = null; public String SM_Tasks_RecID = null; public String SM_Tasks_RecIDStartsWith = null; public String SM_Tasks_RecIDEndsWith = null; public String SM_Tasks_RecIDContains = null; public String SM_Tasks_RecIDLike = null; public ArrayList SM_Tasks_RecIDBetween = null; public ArrayList SM_Tasks_RecIDIn = null; public Date EmailDateTime = null; public Date EmailDateTimeGreaterThanOrEqualTo = null; public Date EmailDateTimeGreaterThan = null; public Date EmailDateTimeLessThan = null; public Date EmailDateTimeLessThanOrEqualTo = null; public Date EmailDateTimeNotEqualTo = null; public ArrayList EmailDateTimeBetween = null; public ArrayList EmailDateTimeIn = null; public String From = null; public String FromStartsWith = null; public String FromEndsWith = null; public String FromContains = null; public String FromLike = null; public ArrayList FromBetween = null; public ArrayList FromIn = null; public String To = null; public String ToStartsWith = null; public String ToEndsWith = null; public String ToContains = null; public String ToLike = null; public ArrayList ToBetween = null; public ArrayList ToIn = null; public String CC = null; public String CCStartsWith = null; public String CCEndsWith = null; public String CCContains = null; public String CCLike = null; public ArrayList CCBetween = null; public ArrayList CCIn = null; public String BCC = null; public String BCCStartsWith = null; public String BCCEndsWith = null; public String BCCContains = null; public String BCCLike = null; public ArrayList BCCBetween = null; public ArrayList BCCIn = null; public String Attachments = null; public String AttachmentsStartsWith = null; public String AttachmentsEndsWith = null; public String AttachmentsContains = null; public String AttachmentsLike = null; public ArrayList AttachmentsBetween = null; public ArrayList AttachmentsIn = null; public String Subject = null; public String SubjectStartsWith = null; public String SubjectEndsWith = null; public String SubjectContains = null; public String SubjectLike = null; public ArrayList SubjectBetween = null; public ArrayList SubjectIn = null; public String Body = null; public String BodyStartsWith = null; public String BodyEndsWith = null; public String BodyContains = null; public String BodyLike = null; public ArrayList BodyBetween = null; public ArrayList BodyIn = null; public String SM_Jobs_RecID = null; public String SM_Jobs_RecIDStartsWith = null; public String SM_Jobs_RecIDEndsWith = null; public String SM_Jobs_RecIDContains = null; public String SM_Jobs_RecIDLike = null; public ArrayList SM_Jobs_RecIDBetween = null; public ArrayList SM_Jobs_RecIDIn = null; public String HR_Staff_RecID = null; public String HR_Staff_RecIDStartsWith = null; public String HR_Staff_RecIDEndsWith = null; public String HR_Staff_RecIDContains = null; public String HR_Staff_RecIDLike = null; public ArrayList HR_Staff_RecIDBetween = null; public ArrayList HR_Staff_RecIDIn = null; public String EM_Main_RecID = null; public String EM_Main_RecIDStartsWith = null; public String EM_Main_RecIDEndsWith = null; public String EM_Main_RecIDContains = null; public String EM_Main_RecIDLike = null; public ArrayList EM_Main_RecIDBetween = null; public ArrayList EM_Main_RecIDIn = null; public Boolean RequestReadReceipt = null; public String getRecID() { return RecID; } public SM_EmailLogQuery setRecID(String value) { this.RecID = value; return this; } public String getRecIDStartsWith() { return RecIDStartsWith; } public SM_EmailLogQuery setRecIDStartsWith(String value) { this.RecIDStartsWith = value; return this; } public String getRecIDEndsWith() { return RecIDEndsWith; } public SM_EmailLogQuery setRecIDEndsWith(String value) { this.RecIDEndsWith = value; return this; } public String getRecIDContains() { return RecIDContains; } public SM_EmailLogQuery setRecIDContains(String value) { this.RecIDContains = value; return this; } public String getRecIDLike() { return RecIDLike; } public SM_EmailLogQuery setRecIDLike(String value) { this.RecIDLike = value; return this; } public ArrayList getRecIDBetween() { return RecIDBetween; } public SM_EmailLogQuery setRecIDBetween(ArrayList value) { this.RecIDBetween = value; return this; } public ArrayList getRecIDIn() { return RecIDIn; } public SM_EmailLogQuery setRecIDIn(ArrayList value) { this.RecIDIn = value; return this; } public String getSmTasksRecID() { return SM_Tasks_RecID; } public SM_EmailLogQuery setSmTasksRecID(String value) { this.SM_Tasks_RecID = value; return this; } public String getSmTasksRecIDStartsWith() { return SM_Tasks_RecIDStartsWith; } public SM_EmailLogQuery setSmTasksRecIDStartsWith(String value) { this.SM_Tasks_RecIDStartsWith = value; return this; } public String getSmTasksRecIDEndsWith() { return SM_Tasks_RecIDEndsWith; } public SM_EmailLogQuery setSmTasksRecIDEndsWith(String value) { this.SM_Tasks_RecIDEndsWith = value; return this; } public String getSmTasksRecIDContains() { return SM_Tasks_RecIDContains; } public SM_EmailLogQuery setSmTasksRecIDContains(String value) { this.SM_Tasks_RecIDContains = value; return this; } public String getSmTasksRecIDLike() { return SM_Tasks_RecIDLike; } public SM_EmailLogQuery setSmTasksRecIDLike(String value) { this.SM_Tasks_RecIDLike = value; return this; } public ArrayList getSmTasksRecIDBetween() { return SM_Tasks_RecIDBetween; } public SM_EmailLogQuery setSmTasksRecIDBetween(ArrayList value) { this.SM_Tasks_RecIDBetween = value; return this; } public ArrayList getSmTasksRecIDIn() { return SM_Tasks_RecIDIn; } public SM_EmailLogQuery setSmTasksRecIDIn(ArrayList value) { this.SM_Tasks_RecIDIn = value; return this; } public Date getEmailDateTime() { return EmailDateTime; } public SM_EmailLogQuery setEmailDateTime(Date value) { this.EmailDateTime = value; return this; } public Date getEmailDateTimeGreaterThanOrEqualTo() { return EmailDateTimeGreaterThanOrEqualTo; } public SM_EmailLogQuery setEmailDateTimeGreaterThanOrEqualTo(Date value) { this.EmailDateTimeGreaterThanOrEqualTo = value; return this; } public Date getEmailDateTimeGreaterThan() { return EmailDateTimeGreaterThan; } public SM_EmailLogQuery setEmailDateTimeGreaterThan(Date value) { this.EmailDateTimeGreaterThan = value; return this; } public Date getEmailDateTimeLessThan() { return EmailDateTimeLessThan; } public SM_EmailLogQuery setEmailDateTimeLessThan(Date value) { this.EmailDateTimeLessThan = value; return this; } public Date getEmailDateTimeLessThanOrEqualTo() { return EmailDateTimeLessThanOrEqualTo; } public SM_EmailLogQuery setEmailDateTimeLessThanOrEqualTo(Date value) { this.EmailDateTimeLessThanOrEqualTo = value; return this; } public Date getEmailDateTimeNotEqualTo() { return EmailDateTimeNotEqualTo; } public SM_EmailLogQuery setEmailDateTimeNotEqualTo(Date value) { this.EmailDateTimeNotEqualTo = value; return this; } public ArrayList getEmailDateTimeBetween() { return EmailDateTimeBetween; } public SM_EmailLogQuery setEmailDateTimeBetween(ArrayList value) { this.EmailDateTimeBetween = value; return this; } public ArrayList getEmailDateTimeIn() { return EmailDateTimeIn; } public SM_EmailLogQuery setEmailDateTimeIn(ArrayList value) { this.EmailDateTimeIn = value; return this; } public String getFrom() { return From; } public SM_EmailLogQuery setFrom(String value) { this.From = value; return this; } public String getFromStartsWith() { return FromStartsWith; } public SM_EmailLogQuery setFromStartsWith(String value) { this.FromStartsWith = value; return this; } public String getFromEndsWith() { return FromEndsWith; } public SM_EmailLogQuery setFromEndsWith(String value) { this.FromEndsWith = value; return this; } public String getFromContains() { return FromContains; } public SM_EmailLogQuery setFromContains(String value) { this.FromContains = value; return this; } public String getFromLike() { return FromLike; } public SM_EmailLogQuery setFromLike(String value) { this.FromLike = value; return this; } public ArrayList getFromBetween() { return FromBetween; } public SM_EmailLogQuery setFromBetween(ArrayList value) { this.FromBetween = value; return this; } public ArrayList getFromIn() { return FromIn; } public SM_EmailLogQuery setFromIn(ArrayList value) { this.FromIn = value; return this; } public String getTo() { return To; } public SM_EmailLogQuery setTo(String value) { this.To = value; return this; } public String getToStartsWith() { return ToStartsWith; } public SM_EmailLogQuery setToStartsWith(String value) { this.ToStartsWith = value; return this; } public String getToEndsWith() { return ToEndsWith; } public SM_EmailLogQuery setToEndsWith(String value) { this.ToEndsWith = value; return this; } public String getToContains() { return ToContains; } public SM_EmailLogQuery setToContains(String value) { this.ToContains = value; return this; } public String getToLike() { return ToLike; } public SM_EmailLogQuery setToLike(String value) { this.ToLike = value; return this; } public ArrayList getToBetween() { return ToBetween; } public SM_EmailLogQuery setToBetween(ArrayList value) { this.ToBetween = value; return this; } public ArrayList getToIn() { return ToIn; } public SM_EmailLogQuery setToIn(ArrayList value) { this.ToIn = value; return this; } public String getCc() { return CC; } public SM_EmailLogQuery setCc(String value) { this.CC = value; return this; } public String getCcStartsWith() { return CCStartsWith; } public SM_EmailLogQuery setCcStartsWith(String value) { this.CCStartsWith = value; return this; } public String getCcEndsWith() { return CCEndsWith; } public SM_EmailLogQuery setCcEndsWith(String value) { this.CCEndsWith = value; return this; } public String getCcContains() { return CCContains; } public SM_EmailLogQuery setCcContains(String value) { this.CCContains = value; return this; } public String getCcLike() { return CCLike; } public SM_EmailLogQuery setCcLike(String value) { this.CCLike = value; return this; } public ArrayList getCcBetween() { return CCBetween; } public SM_EmailLogQuery setCcBetween(ArrayList value) { this.CCBetween = value; return this; } public ArrayList getCcIn() { return CCIn; } public SM_EmailLogQuery setCcIn(ArrayList value) { this.CCIn = value; return this; } public String getBcc() { return BCC; } public SM_EmailLogQuery setBcc(String value) { this.BCC = value; return this; } public String getBccStartsWith() { return BCCStartsWith; } public SM_EmailLogQuery setBccStartsWith(String value) { this.BCCStartsWith = value; return this; } public String getBccEndsWith() { return BCCEndsWith; } public SM_EmailLogQuery setBccEndsWith(String value) { this.BCCEndsWith = value; return this; } public String getBccContains() { return BCCContains; } public SM_EmailLogQuery setBccContains(String value) { this.BCCContains = value; return this; } public String getBccLike() { return BCCLike; } public SM_EmailLogQuery setBccLike(String value) { this.BCCLike = value; return this; } public ArrayList getBccBetween() { return BCCBetween; } public SM_EmailLogQuery setBccBetween(ArrayList value) { this.BCCBetween = value; return this; } public ArrayList getBccIn() { return BCCIn; } public SM_EmailLogQuery setBccIn(ArrayList value) { this.BCCIn = value; return this; } public String getAttachments() { return Attachments; } public SM_EmailLogQuery setAttachments(String value) { this.Attachments = value; return this; } public String getAttachmentsStartsWith() { return AttachmentsStartsWith; } public SM_EmailLogQuery setAttachmentsStartsWith(String value) { this.AttachmentsStartsWith = value; return this; } public String getAttachmentsEndsWith() { return AttachmentsEndsWith; } public SM_EmailLogQuery setAttachmentsEndsWith(String value) { this.AttachmentsEndsWith = value; return this; } public String getAttachmentsContains() { return AttachmentsContains; } public SM_EmailLogQuery setAttachmentsContains(String value) { this.AttachmentsContains = value; return this; } public String getAttachmentsLike() { return AttachmentsLike; } public SM_EmailLogQuery setAttachmentsLike(String value) { this.AttachmentsLike = value; return this; } public ArrayList getAttachmentsBetween() { return AttachmentsBetween; } public SM_EmailLogQuery setAttachmentsBetween(ArrayList value) { this.AttachmentsBetween = value; return this; } public ArrayList getAttachmentsIn() { return AttachmentsIn; } public SM_EmailLogQuery setAttachmentsIn(ArrayList value) { this.AttachmentsIn = value; return this; } public String getSubject() { return Subject; } public SM_EmailLogQuery setSubject(String value) { this.Subject = value; return this; } public String getSubjectStartsWith() { return SubjectStartsWith; } public SM_EmailLogQuery setSubjectStartsWith(String value) { this.SubjectStartsWith = value; return this; } public String getSubjectEndsWith() { return SubjectEndsWith; } public SM_EmailLogQuery setSubjectEndsWith(String value) { this.SubjectEndsWith = value; return this; } public String getSubjectContains() { return SubjectContains; } public SM_EmailLogQuery setSubjectContains(String value) { this.SubjectContains = value; return this; } public String getSubjectLike() { return SubjectLike; } public SM_EmailLogQuery setSubjectLike(String value) { this.SubjectLike = value; return this; } public ArrayList getSubjectBetween() { return SubjectBetween; } public SM_EmailLogQuery setSubjectBetween(ArrayList value) { this.SubjectBetween = value; return this; } public ArrayList getSubjectIn() { return SubjectIn; } public SM_EmailLogQuery setSubjectIn(ArrayList value) { this.SubjectIn = value; return this; } public String getBody() { return Body; } public SM_EmailLogQuery setBody(String value) { this.Body = value; return this; } public String getBodyStartsWith() { return BodyStartsWith; } public SM_EmailLogQuery setBodyStartsWith(String value) { this.BodyStartsWith = value; return this; } public String getBodyEndsWith() { return BodyEndsWith; } public SM_EmailLogQuery setBodyEndsWith(String value) { this.BodyEndsWith = value; return this; } public String getBodyContains() { return BodyContains; } public SM_EmailLogQuery setBodyContains(String value) { this.BodyContains = value; return this; } public String getBodyLike() { return BodyLike; } public SM_EmailLogQuery setBodyLike(String value) { this.BodyLike = value; return this; } public ArrayList getBodyBetween() { return BodyBetween; } public SM_EmailLogQuery setBodyBetween(ArrayList value) { this.BodyBetween = value; return this; } public ArrayList getBodyIn() { return BodyIn; } public SM_EmailLogQuery setBodyIn(ArrayList value) { this.BodyIn = value; return this; } public String getSmJobsRecID() { return SM_Jobs_RecID; } public SM_EmailLogQuery setSmJobsRecID(String value) { this.SM_Jobs_RecID = value; return this; } public String getSmJobsRecIDStartsWith() { return SM_Jobs_RecIDStartsWith; } public SM_EmailLogQuery setSmJobsRecIDStartsWith(String value) { this.SM_Jobs_RecIDStartsWith = value; return this; } public String getSmJobsRecIDEndsWith() { return SM_Jobs_RecIDEndsWith; } public SM_EmailLogQuery setSmJobsRecIDEndsWith(String value) { this.SM_Jobs_RecIDEndsWith = value; return this; } public String getSmJobsRecIDContains() { return SM_Jobs_RecIDContains; } public SM_EmailLogQuery setSmJobsRecIDContains(String value) { this.SM_Jobs_RecIDContains = value; return this; } public String getSmJobsRecIDLike() { return SM_Jobs_RecIDLike; } public SM_EmailLogQuery setSmJobsRecIDLike(String value) { this.SM_Jobs_RecIDLike = value; return this; } public ArrayList getSmJobsRecIDBetween() { return SM_Jobs_RecIDBetween; } public SM_EmailLogQuery setSmJobsRecIDBetween(ArrayList value) { this.SM_Jobs_RecIDBetween = value; return this; } public ArrayList getSmJobsRecIDIn() { return SM_Jobs_RecIDIn; } public SM_EmailLogQuery setSmJobsRecIDIn(ArrayList value) { this.SM_Jobs_RecIDIn = value; return this; } public String getHrStaffRecID() { return HR_Staff_RecID; } public SM_EmailLogQuery setHrStaffRecID(String value) { this.HR_Staff_RecID = value; return this; } public String getHrStaffRecIDStartsWith() { return HR_Staff_RecIDStartsWith; } public SM_EmailLogQuery setHrStaffRecIDStartsWith(String value) { this.HR_Staff_RecIDStartsWith = value; return this; } public String getHrStaffRecIDEndsWith() { return HR_Staff_RecIDEndsWith; } public SM_EmailLogQuery setHrStaffRecIDEndsWith(String value) { this.HR_Staff_RecIDEndsWith = value; return this; } public String getHrStaffRecIDContains() { return HR_Staff_RecIDContains; } public SM_EmailLogQuery setHrStaffRecIDContains(String value) { this.HR_Staff_RecIDContains = value; return this; } public String getHrStaffRecIDLike() { return HR_Staff_RecIDLike; } public SM_EmailLogQuery setHrStaffRecIDLike(String value) { this.HR_Staff_RecIDLike = value; return this; } public ArrayList getHrStaffRecIDBetween() { return HR_Staff_RecIDBetween; } public SM_EmailLogQuery setHrStaffRecIDBetween(ArrayList value) { this.HR_Staff_RecIDBetween = value; return this; } public ArrayList getHrStaffRecIDIn() { return HR_Staff_RecIDIn; } public SM_EmailLogQuery setHrStaffRecIDIn(ArrayList value) { this.HR_Staff_RecIDIn = value; return this; } public String getEmMainRecID() { return EM_Main_RecID; } public SM_EmailLogQuery setEmMainRecID(String value) { this.EM_Main_RecID = value; return this; } public String getEmMainRecIDStartsWith() { return EM_Main_RecIDStartsWith; } public SM_EmailLogQuery setEmMainRecIDStartsWith(String value) { this.EM_Main_RecIDStartsWith = value; return this; } public String getEmMainRecIDEndsWith() { return EM_Main_RecIDEndsWith; } public SM_EmailLogQuery setEmMainRecIDEndsWith(String value) { this.EM_Main_RecIDEndsWith = value; return this; } public String getEmMainRecIDContains() { return EM_Main_RecIDContains; } public SM_EmailLogQuery setEmMainRecIDContains(String value) { this.EM_Main_RecIDContains = value; return this; } public String getEmMainRecIDLike() { return EM_Main_RecIDLike; } public SM_EmailLogQuery setEmMainRecIDLike(String value) { this.EM_Main_RecIDLike = value; return this; } public ArrayList getEmMainRecIDBetween() { return EM_Main_RecIDBetween; } public SM_EmailLogQuery setEmMainRecIDBetween(ArrayList value) { this.EM_Main_RecIDBetween = value; return this; } public ArrayList getEmMainRecIDIn() { return EM_Main_RecIDIn; } public SM_EmailLogQuery setEmMainRecIDIn(ArrayList value) { this.EM_Main_RecIDIn = value; return this; } public Boolean isRequestReadReceipt() { return RequestReadReceipt; } public SM_EmailLogQuery setRequestReadReceipt(Boolean value) { this.RequestReadReceipt = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class SM_JobActivityBudgetsQuery extends QueryDb implements IReturn> { public String RecID = null; public String RecIDStartsWith = null; public String RecIDEndsWith = null; public String RecIDContains = null; public String RecIDLike = null; public ArrayList RecIDBetween = null; public ArrayList RecIDIn = null; public String SM_Activities_RecID = null; public String SM_Activities_RecIDStartsWith = null; public String SM_Activities_RecIDEndsWith = null; public String SM_Activities_RecIDContains = null; public String SM_Activities_RecIDLike = null; public ArrayList SM_Activities_RecIDBetween = null; public ArrayList SM_Activities_RecIDIn = null; public String SM_Jobs_RecID = null; public String SM_Jobs_RecIDStartsWith = null; public String SM_Jobs_RecIDEndsWith = null; public String SM_Jobs_RecIDContains = null; public String SM_Jobs_RecIDLike = null; public ArrayList SM_Jobs_RecIDBetween = null; public ArrayList SM_Jobs_RecIDIn = null; public BigDecimal BudgetedBillingTime = null; public BigDecimal BudgetedBillingTimeGreaterThanOrEqualTo = null; public BigDecimal BudgetedBillingTimeGreaterThan = null; public BigDecimal BudgetedBillingTimeLessThan = null; public BigDecimal BudgetedBillingTimeLessThanOrEqualTo = null; public BigDecimal BudgetedBillingTimeNotEqualTo = null; public ArrayList BudgetedBillingTimeBetween = null; public ArrayList BudgetedBillingTimeIn = null; public BigDecimal BudgetedElapsedTime = null; public BigDecimal BudgetedElapsedTimeGreaterThanOrEqualTo = null; public BigDecimal BudgetedElapsedTimeGreaterThan = null; public BigDecimal BudgetedElapsedTimeLessThan = null; public BigDecimal BudgetedElapsedTimeLessThanOrEqualTo = null; public BigDecimal BudgetedElapsedTimeNotEqualTo = null; public ArrayList BudgetedElapsedTimeBetween = null; public ArrayList BudgetedElapsedTimeIn = null; public BigDecimal BudgetedBillingValue = null; public BigDecimal BudgetedBillingValueGreaterThanOrEqualTo = null; public BigDecimal BudgetedBillingValueGreaterThan = null; public BigDecimal BudgetedBillingValueLessThan = null; public BigDecimal BudgetedBillingValueLessThanOrEqualTo = null; public BigDecimal BudgetedBillingValueNotEqualTo = null; public ArrayList BudgetedBillingValueBetween = null; public ArrayList BudgetedBillingValueIn = null; public Date LastSavedDateTime = null; public Date LastSavedDateTimeGreaterThanOrEqualTo = null; public Date LastSavedDateTimeGreaterThan = null; public Date LastSavedDateTimeLessThan = null; public Date LastSavedDateTimeLessThanOrEqualTo = null; public Date LastSavedDateTimeNotEqualTo = null; public ArrayList LastSavedDateTimeBetween = null; public ArrayList LastSavedDateTimeIn = null; public Integer ItemNo = null; public Integer ItemNoGreaterThanOrEqualTo = null; public Integer ItemNoGreaterThan = null; public Integer ItemNoLessThan = null; public Integer ItemNoLessThanOrEqualTo = null; public Integer ItemNoNotEqualTo = null; public ArrayList ItemNoBetween = null; public ArrayList ItemNoIn = null; public ArrayList RowHash = null; public String getRecID() { return RecID; } public SM_JobActivityBudgetsQuery setRecID(String value) { this.RecID = value; return this; } public String getRecIDStartsWith() { return RecIDStartsWith; } public SM_JobActivityBudgetsQuery setRecIDStartsWith(String value) { this.RecIDStartsWith = value; return this; } public String getRecIDEndsWith() { return RecIDEndsWith; } public SM_JobActivityBudgetsQuery setRecIDEndsWith(String value) { this.RecIDEndsWith = value; return this; } public String getRecIDContains() { return RecIDContains; } public SM_JobActivityBudgetsQuery setRecIDContains(String value) { this.RecIDContains = value; return this; } public String getRecIDLike() { return RecIDLike; } public SM_JobActivityBudgetsQuery setRecIDLike(String value) { this.RecIDLike = value; return this; } public ArrayList getRecIDBetween() { return RecIDBetween; } public SM_JobActivityBudgetsQuery setRecIDBetween(ArrayList value) { this.RecIDBetween = value; return this; } public ArrayList getRecIDIn() { return RecIDIn; } public SM_JobActivityBudgetsQuery setRecIDIn(ArrayList value) { this.RecIDIn = value; return this; } public String getSmActivitiesRecID() { return SM_Activities_RecID; } public SM_JobActivityBudgetsQuery setSmActivitiesRecID(String value) { this.SM_Activities_RecID = value; return this; } public String getSmActivitiesRecIDStartsWith() { return SM_Activities_RecIDStartsWith; } public SM_JobActivityBudgetsQuery setSmActivitiesRecIDStartsWith(String value) { this.SM_Activities_RecIDStartsWith = value; return this; } public String getSmActivitiesRecIDEndsWith() { return SM_Activities_RecIDEndsWith; } public SM_JobActivityBudgetsQuery setSmActivitiesRecIDEndsWith(String value) { this.SM_Activities_RecIDEndsWith = value; return this; } public String getSmActivitiesRecIDContains() { return SM_Activities_RecIDContains; } public SM_JobActivityBudgetsQuery setSmActivitiesRecIDContains(String value) { this.SM_Activities_RecIDContains = value; return this; } public String getSmActivitiesRecIDLike() { return SM_Activities_RecIDLike; } public SM_JobActivityBudgetsQuery setSmActivitiesRecIDLike(String value) { this.SM_Activities_RecIDLike = value; return this; } public ArrayList getSmActivitiesRecIDBetween() { return SM_Activities_RecIDBetween; } public SM_JobActivityBudgetsQuery setSmActivitiesRecIDBetween(ArrayList value) { this.SM_Activities_RecIDBetween = value; return this; } public ArrayList getSmActivitiesRecIDIn() { return SM_Activities_RecIDIn; } public SM_JobActivityBudgetsQuery setSmActivitiesRecIDIn(ArrayList value) { this.SM_Activities_RecIDIn = value; return this; } public String getSmJobsRecID() { return SM_Jobs_RecID; } public SM_JobActivityBudgetsQuery setSmJobsRecID(String value) { this.SM_Jobs_RecID = value; return this; } public String getSmJobsRecIDStartsWith() { return SM_Jobs_RecIDStartsWith; } public SM_JobActivityBudgetsQuery setSmJobsRecIDStartsWith(String value) { this.SM_Jobs_RecIDStartsWith = value; return this; } public String getSmJobsRecIDEndsWith() { return SM_Jobs_RecIDEndsWith; } public SM_JobActivityBudgetsQuery setSmJobsRecIDEndsWith(String value) { this.SM_Jobs_RecIDEndsWith = value; return this; } public String getSmJobsRecIDContains() { return SM_Jobs_RecIDContains; } public SM_JobActivityBudgetsQuery setSmJobsRecIDContains(String value) { this.SM_Jobs_RecIDContains = value; return this; } public String getSmJobsRecIDLike() { return SM_Jobs_RecIDLike; } public SM_JobActivityBudgetsQuery setSmJobsRecIDLike(String value) { this.SM_Jobs_RecIDLike = value; return this; } public ArrayList getSmJobsRecIDBetween() { return SM_Jobs_RecIDBetween; } public SM_JobActivityBudgetsQuery setSmJobsRecIDBetween(ArrayList value) { this.SM_Jobs_RecIDBetween = value; return this; } public ArrayList getSmJobsRecIDIn() { return SM_Jobs_RecIDIn; } public SM_JobActivityBudgetsQuery setSmJobsRecIDIn(ArrayList value) { this.SM_Jobs_RecIDIn = value; return this; } public BigDecimal getBudgetedBillingTime() { return BudgetedBillingTime; } public SM_JobActivityBudgetsQuery setBudgetedBillingTime(BigDecimal value) { this.BudgetedBillingTime = value; return this; } public BigDecimal getBudgetedBillingTimeGreaterThanOrEqualTo() { return BudgetedBillingTimeGreaterThanOrEqualTo; } public SM_JobActivityBudgetsQuery setBudgetedBillingTimeGreaterThanOrEqualTo(BigDecimal value) { this.BudgetedBillingTimeGreaterThanOrEqualTo = value; return this; } public BigDecimal getBudgetedBillingTimeGreaterThan() { return BudgetedBillingTimeGreaterThan; } public SM_JobActivityBudgetsQuery setBudgetedBillingTimeGreaterThan(BigDecimal value) { this.BudgetedBillingTimeGreaterThan = value; return this; } public BigDecimal getBudgetedBillingTimeLessThan() { return BudgetedBillingTimeLessThan; } public SM_JobActivityBudgetsQuery setBudgetedBillingTimeLessThan(BigDecimal value) { this.BudgetedBillingTimeLessThan = value; return this; } public BigDecimal getBudgetedBillingTimeLessThanOrEqualTo() { return BudgetedBillingTimeLessThanOrEqualTo; } public SM_JobActivityBudgetsQuery setBudgetedBillingTimeLessThanOrEqualTo(BigDecimal value) { this.BudgetedBillingTimeLessThanOrEqualTo = value; return this; } public BigDecimal getBudgetedBillingTimeNotEqualTo() { return BudgetedBillingTimeNotEqualTo; } public SM_JobActivityBudgetsQuery setBudgetedBillingTimeNotEqualTo(BigDecimal value) { this.BudgetedBillingTimeNotEqualTo = value; return this; } public ArrayList getBudgetedBillingTimeBetween() { return BudgetedBillingTimeBetween; } public SM_JobActivityBudgetsQuery setBudgetedBillingTimeBetween(ArrayList value) { this.BudgetedBillingTimeBetween = value; return this; } public ArrayList getBudgetedBillingTimeIn() { return BudgetedBillingTimeIn; } public SM_JobActivityBudgetsQuery setBudgetedBillingTimeIn(ArrayList value) { this.BudgetedBillingTimeIn = value; return this; } public BigDecimal getBudgetedElapsedTime() { return BudgetedElapsedTime; } public SM_JobActivityBudgetsQuery setBudgetedElapsedTime(BigDecimal value) { this.BudgetedElapsedTime = value; return this; } public BigDecimal getBudgetedElapsedTimeGreaterThanOrEqualTo() { return BudgetedElapsedTimeGreaterThanOrEqualTo; } public SM_JobActivityBudgetsQuery setBudgetedElapsedTimeGreaterThanOrEqualTo(BigDecimal value) { this.BudgetedElapsedTimeGreaterThanOrEqualTo = value; return this; } public BigDecimal getBudgetedElapsedTimeGreaterThan() { return BudgetedElapsedTimeGreaterThan; } public SM_JobActivityBudgetsQuery setBudgetedElapsedTimeGreaterThan(BigDecimal value) { this.BudgetedElapsedTimeGreaterThan = value; return this; } public BigDecimal getBudgetedElapsedTimeLessThan() { return BudgetedElapsedTimeLessThan; } public SM_JobActivityBudgetsQuery setBudgetedElapsedTimeLessThan(BigDecimal value) { this.BudgetedElapsedTimeLessThan = value; return this; } public BigDecimal getBudgetedElapsedTimeLessThanOrEqualTo() { return BudgetedElapsedTimeLessThanOrEqualTo; } public SM_JobActivityBudgetsQuery setBudgetedElapsedTimeLessThanOrEqualTo(BigDecimal value) { this.BudgetedElapsedTimeLessThanOrEqualTo = value; return this; } public BigDecimal getBudgetedElapsedTimeNotEqualTo() { return BudgetedElapsedTimeNotEqualTo; } public SM_JobActivityBudgetsQuery setBudgetedElapsedTimeNotEqualTo(BigDecimal value) { this.BudgetedElapsedTimeNotEqualTo = value; return this; } public ArrayList getBudgetedElapsedTimeBetween() { return BudgetedElapsedTimeBetween; } public SM_JobActivityBudgetsQuery setBudgetedElapsedTimeBetween(ArrayList value) { this.BudgetedElapsedTimeBetween = value; return this; } public ArrayList getBudgetedElapsedTimeIn() { return BudgetedElapsedTimeIn; } public SM_JobActivityBudgetsQuery setBudgetedElapsedTimeIn(ArrayList value) { this.BudgetedElapsedTimeIn = value; return this; } public BigDecimal getBudgetedBillingValue() { return BudgetedBillingValue; } public SM_JobActivityBudgetsQuery setBudgetedBillingValue(BigDecimal value) { this.BudgetedBillingValue = value; return this; } public BigDecimal getBudgetedBillingValueGreaterThanOrEqualTo() { return BudgetedBillingValueGreaterThanOrEqualTo; } public SM_JobActivityBudgetsQuery setBudgetedBillingValueGreaterThanOrEqualTo(BigDecimal value) { this.BudgetedBillingValueGreaterThanOrEqualTo = value; return this; } public BigDecimal getBudgetedBillingValueGreaterThan() { return BudgetedBillingValueGreaterThan; } public SM_JobActivityBudgetsQuery setBudgetedBillingValueGreaterThan(BigDecimal value) { this.BudgetedBillingValueGreaterThan = value; return this; } public BigDecimal getBudgetedBillingValueLessThan() { return BudgetedBillingValueLessThan; } public SM_JobActivityBudgetsQuery setBudgetedBillingValueLessThan(BigDecimal value) { this.BudgetedBillingValueLessThan = value; return this; } public BigDecimal getBudgetedBillingValueLessThanOrEqualTo() { return BudgetedBillingValueLessThanOrEqualTo; } public SM_JobActivityBudgetsQuery setBudgetedBillingValueLessThanOrEqualTo(BigDecimal value) { this.BudgetedBillingValueLessThanOrEqualTo = value; return this; } public BigDecimal getBudgetedBillingValueNotEqualTo() { return BudgetedBillingValueNotEqualTo; } public SM_JobActivityBudgetsQuery setBudgetedBillingValueNotEqualTo(BigDecimal value) { this.BudgetedBillingValueNotEqualTo = value; return this; } public ArrayList getBudgetedBillingValueBetween() { return BudgetedBillingValueBetween; } public SM_JobActivityBudgetsQuery setBudgetedBillingValueBetween(ArrayList value) { this.BudgetedBillingValueBetween = value; return this; } public ArrayList getBudgetedBillingValueIn() { return BudgetedBillingValueIn; } public SM_JobActivityBudgetsQuery setBudgetedBillingValueIn(ArrayList value) { this.BudgetedBillingValueIn = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public SM_JobActivityBudgetsQuery setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getLastSavedDateTimeGreaterThanOrEqualTo() { return LastSavedDateTimeGreaterThanOrEqualTo; } public SM_JobActivityBudgetsQuery setLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.LastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeGreaterThan() { return LastSavedDateTimeGreaterThan; } public SM_JobActivityBudgetsQuery setLastSavedDateTimeGreaterThan(Date value) { this.LastSavedDateTimeGreaterThan = value; return this; } public Date getLastSavedDateTimeLessThan() { return LastSavedDateTimeLessThan; } public SM_JobActivityBudgetsQuery setLastSavedDateTimeLessThan(Date value) { this.LastSavedDateTimeLessThan = value; return this; } public Date getLastSavedDateTimeLessThanOrEqualTo() { return LastSavedDateTimeLessThanOrEqualTo; } public SM_JobActivityBudgetsQuery setLastSavedDateTimeLessThanOrEqualTo(Date value) { this.LastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeNotEqualTo() { return LastSavedDateTimeNotEqualTo; } public SM_JobActivityBudgetsQuery setLastSavedDateTimeNotEqualTo(Date value) { this.LastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getLastSavedDateTimeBetween() { return LastSavedDateTimeBetween; } public SM_JobActivityBudgetsQuery setLastSavedDateTimeBetween(ArrayList value) { this.LastSavedDateTimeBetween = value; return this; } public ArrayList getLastSavedDateTimeIn() { return LastSavedDateTimeIn; } public SM_JobActivityBudgetsQuery setLastSavedDateTimeIn(ArrayList value) { this.LastSavedDateTimeIn = value; return this; } public Integer getItemNo() { return ItemNo; } public SM_JobActivityBudgetsQuery setItemNo(Integer value) { this.ItemNo = value; return this; } public Integer getItemNoGreaterThanOrEqualTo() { return ItemNoGreaterThanOrEqualTo; } public SM_JobActivityBudgetsQuery setItemNoGreaterThanOrEqualTo(Integer value) { this.ItemNoGreaterThanOrEqualTo = value; return this; } public Integer getItemNoGreaterThan() { return ItemNoGreaterThan; } public SM_JobActivityBudgetsQuery setItemNoGreaterThan(Integer value) { this.ItemNoGreaterThan = value; return this; } public Integer getItemNoLessThan() { return ItemNoLessThan; } public SM_JobActivityBudgetsQuery setItemNoLessThan(Integer value) { this.ItemNoLessThan = value; return this; } public Integer getItemNoLessThanOrEqualTo() { return ItemNoLessThanOrEqualTo; } public SM_JobActivityBudgetsQuery setItemNoLessThanOrEqualTo(Integer value) { this.ItemNoLessThanOrEqualTo = value; return this; } public Integer getItemNoNotEqualTo() { return ItemNoNotEqualTo; } public SM_JobActivityBudgetsQuery setItemNoNotEqualTo(Integer value) { this.ItemNoNotEqualTo = value; return this; } public ArrayList getItemNoBetween() { return ItemNoBetween; } public SM_JobActivityBudgetsQuery setItemNoBetween(ArrayList value) { this.ItemNoBetween = value; return this; } public ArrayList getItemNoIn() { return ItemNoIn; } public SM_JobActivityBudgetsQuery setItemNoIn(ArrayList value) { this.ItemNoIn = value; return this; } public ArrayList getRowHash() { return RowHash; } public SM_JobActivityBudgetsQuery setRowHash(ArrayList value) { this.RowHash = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class SM_JobActivityBudgetsCustomFieldsQuery extends QueryDb implements IReturn> { public String RecID = null; public String RecIDStartsWith = null; public String RecIDEndsWith = null; public String RecIDContains = null; public String RecIDLike = null; public ArrayList RecIDBetween = null; public ArrayList RecIDIn = null; public String SettingName = null; public String SettingNameStartsWith = null; public String SettingNameEndsWith = null; public String SettingNameContains = null; public String SettingNameLike = null; public ArrayList SettingNameBetween = null; public ArrayList SettingNameIn = null; public String SettingDescription = null; public String SettingDescriptionStartsWith = null; public String SettingDescriptionEndsWith = null; public String SettingDescriptionContains = null; public String SettingDescriptionLike = null; public ArrayList SettingDescriptionBetween = null; public ArrayList SettingDescriptionIn = null; public Integer CellType = null; public Integer CellTypeGreaterThanOrEqualTo = null; public Integer CellTypeGreaterThan = null; public Integer CellTypeLessThan = null; public Integer CellTypeLessThanOrEqualTo = null; public Integer CellTypeNotEqualTo = null; public ArrayList CellTypeBetween = null; public ArrayList CellTypeIn = null; public String FieldParameter = null; public String FieldParameterStartsWith = null; public String FieldParameterEndsWith = null; public String FieldParameterContains = null; public String FieldParameterLike = null; public ArrayList FieldParameterBetween = null; public ArrayList FieldParameterIn = null; public UUID SY_Plugin_RecID = null; public ArrayList SY_Plugin_RecIDIn = null; public Date LastSavedDateTime = null; public Date LastSavedDateTimeGreaterThanOrEqualTo = null; public Date LastSavedDateTimeGreaterThan = null; public Date LastSavedDateTimeLessThan = null; public Date LastSavedDateTimeLessThanOrEqualTo = null; public Date LastSavedDateTimeNotEqualTo = null; public ArrayList LastSavedDateTimeBetween = null; public ArrayList LastSavedDateTimeIn = null; public Integer DisplayOrder = null; public Integer DisplayOrderGreaterThanOrEqualTo = null; public Integer DisplayOrderGreaterThan = null; public Integer DisplayOrderLessThan = null; public Integer DisplayOrderLessThanOrEqualTo = null; public Integer DisplayOrderNotEqualTo = null; public ArrayList DisplayOrderBetween = null; public ArrayList DisplayOrderIn = null; public String getRecID() { return RecID; } public SM_JobActivityBudgetsCustomFieldsQuery setRecID(String value) { this.RecID = value; return this; } public String getRecIDStartsWith() { return RecIDStartsWith; } public SM_JobActivityBudgetsCustomFieldsQuery setRecIDStartsWith(String value) { this.RecIDStartsWith = value; return this; } public String getRecIDEndsWith() { return RecIDEndsWith; } public SM_JobActivityBudgetsCustomFieldsQuery setRecIDEndsWith(String value) { this.RecIDEndsWith = value; return this; } public String getRecIDContains() { return RecIDContains; } public SM_JobActivityBudgetsCustomFieldsQuery setRecIDContains(String value) { this.RecIDContains = value; return this; } public String getRecIDLike() { return RecIDLike; } public SM_JobActivityBudgetsCustomFieldsQuery setRecIDLike(String value) { this.RecIDLike = value; return this; } public ArrayList getRecIDBetween() { return RecIDBetween; } public SM_JobActivityBudgetsCustomFieldsQuery setRecIDBetween(ArrayList value) { this.RecIDBetween = value; return this; } public ArrayList getRecIDIn() { return RecIDIn; } public SM_JobActivityBudgetsCustomFieldsQuery setRecIDIn(ArrayList value) { this.RecIDIn = value; return this; } public String getSettingName() { return SettingName; } public SM_JobActivityBudgetsCustomFieldsQuery setSettingName(String value) { this.SettingName = value; return this; } public String getSettingNameStartsWith() { return SettingNameStartsWith; } public SM_JobActivityBudgetsCustomFieldsQuery setSettingNameStartsWith(String value) { this.SettingNameStartsWith = value; return this; } public String getSettingNameEndsWith() { return SettingNameEndsWith; } public SM_JobActivityBudgetsCustomFieldsQuery setSettingNameEndsWith(String value) { this.SettingNameEndsWith = value; return this; } public String getSettingNameContains() { return SettingNameContains; } public SM_JobActivityBudgetsCustomFieldsQuery setSettingNameContains(String value) { this.SettingNameContains = value; return this; } public String getSettingNameLike() { return SettingNameLike; } public SM_JobActivityBudgetsCustomFieldsQuery setSettingNameLike(String value) { this.SettingNameLike = value; return this; } public ArrayList getSettingNameBetween() { return SettingNameBetween; } public SM_JobActivityBudgetsCustomFieldsQuery setSettingNameBetween(ArrayList value) { this.SettingNameBetween = value; return this; } public ArrayList getSettingNameIn() { return SettingNameIn; } public SM_JobActivityBudgetsCustomFieldsQuery setSettingNameIn(ArrayList value) { this.SettingNameIn = value; return this; } public String getSettingDescription() { return SettingDescription; } public SM_JobActivityBudgetsCustomFieldsQuery setSettingDescription(String value) { this.SettingDescription = value; return this; } public String getSettingDescriptionStartsWith() { return SettingDescriptionStartsWith; } public SM_JobActivityBudgetsCustomFieldsQuery setSettingDescriptionStartsWith(String value) { this.SettingDescriptionStartsWith = value; return this; } public String getSettingDescriptionEndsWith() { return SettingDescriptionEndsWith; } public SM_JobActivityBudgetsCustomFieldsQuery setSettingDescriptionEndsWith(String value) { this.SettingDescriptionEndsWith = value; return this; } public String getSettingDescriptionContains() { return SettingDescriptionContains; } public SM_JobActivityBudgetsCustomFieldsQuery setSettingDescriptionContains(String value) { this.SettingDescriptionContains = value; return this; } public String getSettingDescriptionLike() { return SettingDescriptionLike; } public SM_JobActivityBudgetsCustomFieldsQuery setSettingDescriptionLike(String value) { this.SettingDescriptionLike = value; return this; } public ArrayList getSettingDescriptionBetween() { return SettingDescriptionBetween; } public SM_JobActivityBudgetsCustomFieldsQuery setSettingDescriptionBetween(ArrayList value) { this.SettingDescriptionBetween = value; return this; } public ArrayList getSettingDescriptionIn() { return SettingDescriptionIn; } public SM_JobActivityBudgetsCustomFieldsQuery setSettingDescriptionIn(ArrayList value) { this.SettingDescriptionIn = value; return this; } public Integer getCellType() { return CellType; } public SM_JobActivityBudgetsCustomFieldsQuery setCellType(Integer value) { this.CellType = value; return this; } public Integer getCellTypeGreaterThanOrEqualTo() { return CellTypeGreaterThanOrEqualTo; } public SM_JobActivityBudgetsCustomFieldsQuery setCellTypeGreaterThanOrEqualTo(Integer value) { this.CellTypeGreaterThanOrEqualTo = value; return this; } public Integer getCellTypeGreaterThan() { return CellTypeGreaterThan; } public SM_JobActivityBudgetsCustomFieldsQuery setCellTypeGreaterThan(Integer value) { this.CellTypeGreaterThan = value; return this; } public Integer getCellTypeLessThan() { return CellTypeLessThan; } public SM_JobActivityBudgetsCustomFieldsQuery setCellTypeLessThan(Integer value) { this.CellTypeLessThan = value; return this; } public Integer getCellTypeLessThanOrEqualTo() { return CellTypeLessThanOrEqualTo; } public SM_JobActivityBudgetsCustomFieldsQuery setCellTypeLessThanOrEqualTo(Integer value) { this.CellTypeLessThanOrEqualTo = value; return this; } public Integer getCellTypeNotEqualTo() { return CellTypeNotEqualTo; } public SM_JobActivityBudgetsCustomFieldsQuery setCellTypeNotEqualTo(Integer value) { this.CellTypeNotEqualTo = value; return this; } public ArrayList getCellTypeBetween() { return CellTypeBetween; } public SM_JobActivityBudgetsCustomFieldsQuery setCellTypeBetween(ArrayList value) { this.CellTypeBetween = value; return this; } public ArrayList getCellTypeIn() { return CellTypeIn; } public SM_JobActivityBudgetsCustomFieldsQuery setCellTypeIn(ArrayList value) { this.CellTypeIn = value; return this; } public String getFieldParameter() { return FieldParameter; } public SM_JobActivityBudgetsCustomFieldsQuery setFieldParameter(String value) { this.FieldParameter = value; return this; } public String getFieldParameterStartsWith() { return FieldParameterStartsWith; } public SM_JobActivityBudgetsCustomFieldsQuery setFieldParameterStartsWith(String value) { this.FieldParameterStartsWith = value; return this; } public String getFieldParameterEndsWith() { return FieldParameterEndsWith; } public SM_JobActivityBudgetsCustomFieldsQuery setFieldParameterEndsWith(String value) { this.FieldParameterEndsWith = value; return this; } public String getFieldParameterContains() { return FieldParameterContains; } public SM_JobActivityBudgetsCustomFieldsQuery setFieldParameterContains(String value) { this.FieldParameterContains = value; return this; } public String getFieldParameterLike() { return FieldParameterLike; } public SM_JobActivityBudgetsCustomFieldsQuery setFieldParameterLike(String value) { this.FieldParameterLike = value; return this; } public ArrayList getFieldParameterBetween() { return FieldParameterBetween; } public SM_JobActivityBudgetsCustomFieldsQuery setFieldParameterBetween(ArrayList value) { this.FieldParameterBetween = value; return this; } public ArrayList getFieldParameterIn() { return FieldParameterIn; } public SM_JobActivityBudgetsCustomFieldsQuery setFieldParameterIn(ArrayList value) { this.FieldParameterIn = value; return this; } public UUID getSyPluginRecID() { return SY_Plugin_RecID; } public SM_JobActivityBudgetsCustomFieldsQuery setSyPluginRecID(UUID value) { this.SY_Plugin_RecID = value; return this; } public ArrayList getSyPluginRecIDIn() { return SY_Plugin_RecIDIn; } public SM_JobActivityBudgetsCustomFieldsQuery setSyPluginRecIDIn(ArrayList value) { this.SY_Plugin_RecIDIn = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public SM_JobActivityBudgetsCustomFieldsQuery setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getLastSavedDateTimeGreaterThanOrEqualTo() { return LastSavedDateTimeGreaterThanOrEqualTo; } public SM_JobActivityBudgetsCustomFieldsQuery setLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.LastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeGreaterThan() { return LastSavedDateTimeGreaterThan; } public SM_JobActivityBudgetsCustomFieldsQuery setLastSavedDateTimeGreaterThan(Date value) { this.LastSavedDateTimeGreaterThan = value; return this; } public Date getLastSavedDateTimeLessThan() { return LastSavedDateTimeLessThan; } public SM_JobActivityBudgetsCustomFieldsQuery setLastSavedDateTimeLessThan(Date value) { this.LastSavedDateTimeLessThan = value; return this; } public Date getLastSavedDateTimeLessThanOrEqualTo() { return LastSavedDateTimeLessThanOrEqualTo; } public SM_JobActivityBudgetsCustomFieldsQuery setLastSavedDateTimeLessThanOrEqualTo(Date value) { this.LastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeNotEqualTo() { return LastSavedDateTimeNotEqualTo; } public SM_JobActivityBudgetsCustomFieldsQuery setLastSavedDateTimeNotEqualTo(Date value) { this.LastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getLastSavedDateTimeBetween() { return LastSavedDateTimeBetween; } public SM_JobActivityBudgetsCustomFieldsQuery setLastSavedDateTimeBetween(ArrayList value) { this.LastSavedDateTimeBetween = value; return this; } public ArrayList getLastSavedDateTimeIn() { return LastSavedDateTimeIn; } public SM_JobActivityBudgetsCustomFieldsQuery setLastSavedDateTimeIn(ArrayList value) { this.LastSavedDateTimeIn = value; return this; } public Integer getDisplayOrder() { return DisplayOrder; } public SM_JobActivityBudgetsCustomFieldsQuery setDisplayOrder(Integer value) { this.DisplayOrder = value; return this; } public Integer getDisplayOrderGreaterThanOrEqualTo() { return DisplayOrderGreaterThanOrEqualTo; } public SM_JobActivityBudgetsCustomFieldsQuery setDisplayOrderGreaterThanOrEqualTo(Integer value) { this.DisplayOrderGreaterThanOrEqualTo = value; return this; } public Integer getDisplayOrderGreaterThan() { return DisplayOrderGreaterThan; } public SM_JobActivityBudgetsCustomFieldsQuery setDisplayOrderGreaterThan(Integer value) { this.DisplayOrderGreaterThan = value; return this; } public Integer getDisplayOrderLessThan() { return DisplayOrderLessThan; } public SM_JobActivityBudgetsCustomFieldsQuery setDisplayOrderLessThan(Integer value) { this.DisplayOrderLessThan = value; return this; } public Integer getDisplayOrderLessThanOrEqualTo() { return DisplayOrderLessThanOrEqualTo; } public SM_JobActivityBudgetsCustomFieldsQuery setDisplayOrderLessThanOrEqualTo(Integer value) { this.DisplayOrderLessThanOrEqualTo = value; return this; } public Integer getDisplayOrderNotEqualTo() { return DisplayOrderNotEqualTo; } public SM_JobActivityBudgetsCustomFieldsQuery setDisplayOrderNotEqualTo(Integer value) { this.DisplayOrderNotEqualTo = value; return this; } public ArrayList getDisplayOrderBetween() { return DisplayOrderBetween; } public SM_JobActivityBudgetsCustomFieldsQuery setDisplayOrderBetween(ArrayList value) { this.DisplayOrderBetween = value; return this; } public ArrayList getDisplayOrderIn() { return DisplayOrderIn; } public SM_JobActivityBudgetsCustomFieldsQuery setDisplayOrderIn(ArrayList value) { this.DisplayOrderIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class SM_JobActivityBudgetsCustomValuesQuery extends QueryDb implements IReturn> { public String RecID = null; public String RecIDStartsWith = null; public String RecIDEndsWith = null; public String RecIDContains = null; public String RecIDLike = null; public ArrayList RecIDBetween = null; public ArrayList RecIDIn = null; public String SM_JobActivityBudgets_RecID = null; public String SM_JobActivityBudgets_RecIDStartsWith = null; public String SM_JobActivityBudgets_RecIDEndsWith = null; public String SM_JobActivityBudgets_RecIDContains = null; public String SM_JobActivityBudgets_RecIDLike = null; public ArrayList SM_JobActivityBudgets_RecIDBetween = null; public ArrayList SM_JobActivityBudgets_RecIDIn = null; public String SM_JobActivityBudgetsCustomFields_RecID = null; public String SM_JobActivityBudgetsCustomFields_RecIDStartsWith = null; public String SM_JobActivityBudgetsCustomFields_RecIDEndsWith = null; public String SM_JobActivityBudgetsCustomFields_RecIDContains = null; public String SM_JobActivityBudgetsCustomFields_RecIDLike = null; public ArrayList SM_JobActivityBudgetsCustomFields_RecIDBetween = null; public ArrayList SM_JobActivityBudgetsCustomFields_RecIDIn = null; public String Contents = null; public String ContentsStartsWith = null; public String ContentsEndsWith = null; public String ContentsContains = null; public String ContentsLike = null; public ArrayList ContentsBetween = null; public ArrayList ContentsIn = null; public Date LastSavedDateTime = null; public Date LastSavedDateTimeGreaterThanOrEqualTo = null; public Date LastSavedDateTimeGreaterThan = null; public Date LastSavedDateTimeLessThan = null; public Date LastSavedDateTimeLessThanOrEqualTo = null; public Date LastSavedDateTimeNotEqualTo = null; public ArrayList LastSavedDateTimeBetween = null; public ArrayList LastSavedDateTimeIn = null; public String getRecID() { return RecID; } public SM_JobActivityBudgetsCustomValuesQuery setRecID(String value) { this.RecID = value; return this; } public String getRecIDStartsWith() { return RecIDStartsWith; } public SM_JobActivityBudgetsCustomValuesQuery setRecIDStartsWith(String value) { this.RecIDStartsWith = value; return this; } public String getRecIDEndsWith() { return RecIDEndsWith; } public SM_JobActivityBudgetsCustomValuesQuery setRecIDEndsWith(String value) { this.RecIDEndsWith = value; return this; } public String getRecIDContains() { return RecIDContains; } public SM_JobActivityBudgetsCustomValuesQuery setRecIDContains(String value) { this.RecIDContains = value; return this; } public String getRecIDLike() { return RecIDLike; } public SM_JobActivityBudgetsCustomValuesQuery setRecIDLike(String value) { this.RecIDLike = value; return this; } public ArrayList getRecIDBetween() { return RecIDBetween; } public SM_JobActivityBudgetsCustomValuesQuery setRecIDBetween(ArrayList value) { this.RecIDBetween = value; return this; } public ArrayList getRecIDIn() { return RecIDIn; } public SM_JobActivityBudgetsCustomValuesQuery setRecIDIn(ArrayList value) { this.RecIDIn = value; return this; } public String getSmJobActivityBudgetsRecID() { return SM_JobActivityBudgets_RecID; } public SM_JobActivityBudgetsCustomValuesQuery setSmJobActivityBudgetsRecID(String value) { this.SM_JobActivityBudgets_RecID = value; return this; } public String getSmJobActivityBudgetsRecIDStartsWith() { return SM_JobActivityBudgets_RecIDStartsWith; } public SM_JobActivityBudgetsCustomValuesQuery setSmJobActivityBudgetsRecIDStartsWith(String value) { this.SM_JobActivityBudgets_RecIDStartsWith = value; return this; } public String getSmJobActivityBudgetsRecIDEndsWith() { return SM_JobActivityBudgets_RecIDEndsWith; } public SM_JobActivityBudgetsCustomValuesQuery setSmJobActivityBudgetsRecIDEndsWith(String value) { this.SM_JobActivityBudgets_RecIDEndsWith = value; return this; } public String getSmJobActivityBudgetsRecIDContains() { return SM_JobActivityBudgets_RecIDContains; } public SM_JobActivityBudgetsCustomValuesQuery setSmJobActivityBudgetsRecIDContains(String value) { this.SM_JobActivityBudgets_RecIDContains = value; return this; } public String getSmJobActivityBudgetsRecIDLike() { return SM_JobActivityBudgets_RecIDLike; } public SM_JobActivityBudgetsCustomValuesQuery setSmJobActivityBudgetsRecIDLike(String value) { this.SM_JobActivityBudgets_RecIDLike = value; return this; } public ArrayList getSmJobActivityBudgetsRecIDBetween() { return SM_JobActivityBudgets_RecIDBetween; } public SM_JobActivityBudgetsCustomValuesQuery setSmJobActivityBudgetsRecIDBetween(ArrayList value) { this.SM_JobActivityBudgets_RecIDBetween = value; return this; } public ArrayList getSmJobActivityBudgetsRecIDIn() { return SM_JobActivityBudgets_RecIDIn; } public SM_JobActivityBudgetsCustomValuesQuery setSmJobActivityBudgetsRecIDIn(ArrayList value) { this.SM_JobActivityBudgets_RecIDIn = value; return this; } public String getSmJobActivityBudgetsCustomFieldsRecID() { return SM_JobActivityBudgetsCustomFields_RecID; } public SM_JobActivityBudgetsCustomValuesQuery setSmJobActivityBudgetsCustomFieldsRecID(String value) { this.SM_JobActivityBudgetsCustomFields_RecID = value; return this; } public String getSmJobActivityBudgetsCustomFieldsRecIDStartsWith() { return SM_JobActivityBudgetsCustomFields_RecIDStartsWith; } public SM_JobActivityBudgetsCustomValuesQuery setSmJobActivityBudgetsCustomFieldsRecIDStartsWith(String value) { this.SM_JobActivityBudgetsCustomFields_RecIDStartsWith = value; return this; } public String getSmJobActivityBudgetsCustomFieldsRecIDEndsWith() { return SM_JobActivityBudgetsCustomFields_RecIDEndsWith; } public SM_JobActivityBudgetsCustomValuesQuery setSmJobActivityBudgetsCustomFieldsRecIDEndsWith(String value) { this.SM_JobActivityBudgetsCustomFields_RecIDEndsWith = value; return this; } public String getSmJobActivityBudgetsCustomFieldsRecIDContains() { return SM_JobActivityBudgetsCustomFields_RecIDContains; } public SM_JobActivityBudgetsCustomValuesQuery setSmJobActivityBudgetsCustomFieldsRecIDContains(String value) { this.SM_JobActivityBudgetsCustomFields_RecIDContains = value; return this; } public String getSmJobActivityBudgetsCustomFieldsRecIDLike() { return SM_JobActivityBudgetsCustomFields_RecIDLike; } public SM_JobActivityBudgetsCustomValuesQuery setSmJobActivityBudgetsCustomFieldsRecIDLike(String value) { this.SM_JobActivityBudgetsCustomFields_RecIDLike = value; return this; } public ArrayList getSmJobActivityBudgetsCustomFieldsRecIDBetween() { return SM_JobActivityBudgetsCustomFields_RecIDBetween; } public SM_JobActivityBudgetsCustomValuesQuery setSmJobActivityBudgetsCustomFieldsRecIDBetween(ArrayList value) { this.SM_JobActivityBudgetsCustomFields_RecIDBetween = value; return this; } public ArrayList getSmJobActivityBudgetsCustomFieldsRecIDIn() { return SM_JobActivityBudgetsCustomFields_RecIDIn; } public SM_JobActivityBudgetsCustomValuesQuery setSmJobActivityBudgetsCustomFieldsRecIDIn(ArrayList value) { this.SM_JobActivityBudgetsCustomFields_RecIDIn = value; return this; } public String getContents() { return Contents; } public SM_JobActivityBudgetsCustomValuesQuery setContents(String value) { this.Contents = value; return this; } public String getContentsStartsWith() { return ContentsStartsWith; } public SM_JobActivityBudgetsCustomValuesQuery setContentsStartsWith(String value) { this.ContentsStartsWith = value; return this; } public String getContentsEndsWith() { return ContentsEndsWith; } public SM_JobActivityBudgetsCustomValuesQuery setContentsEndsWith(String value) { this.ContentsEndsWith = value; return this; } public String getContentsContains() { return ContentsContains; } public SM_JobActivityBudgetsCustomValuesQuery setContentsContains(String value) { this.ContentsContains = value; return this; } public String getContentsLike() { return ContentsLike; } public SM_JobActivityBudgetsCustomValuesQuery setContentsLike(String value) { this.ContentsLike = value; return this; } public ArrayList getContentsBetween() { return ContentsBetween; } public SM_JobActivityBudgetsCustomValuesQuery setContentsBetween(ArrayList value) { this.ContentsBetween = value; return this; } public ArrayList getContentsIn() { return ContentsIn; } public SM_JobActivityBudgetsCustomValuesQuery setContentsIn(ArrayList value) { this.ContentsIn = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public SM_JobActivityBudgetsCustomValuesQuery setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getLastSavedDateTimeGreaterThanOrEqualTo() { return LastSavedDateTimeGreaterThanOrEqualTo; } public SM_JobActivityBudgetsCustomValuesQuery setLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.LastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeGreaterThan() { return LastSavedDateTimeGreaterThan; } public SM_JobActivityBudgetsCustomValuesQuery setLastSavedDateTimeGreaterThan(Date value) { this.LastSavedDateTimeGreaterThan = value; return this; } public Date getLastSavedDateTimeLessThan() { return LastSavedDateTimeLessThan; } public SM_JobActivityBudgetsCustomValuesQuery setLastSavedDateTimeLessThan(Date value) { this.LastSavedDateTimeLessThan = value; return this; } public Date getLastSavedDateTimeLessThanOrEqualTo() { return LastSavedDateTimeLessThanOrEqualTo; } public SM_JobActivityBudgetsCustomValuesQuery setLastSavedDateTimeLessThanOrEqualTo(Date value) { this.LastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeNotEqualTo() { return LastSavedDateTimeNotEqualTo; } public SM_JobActivityBudgetsCustomValuesQuery setLastSavedDateTimeNotEqualTo(Date value) { this.LastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getLastSavedDateTimeBetween() { return LastSavedDateTimeBetween; } public SM_JobActivityBudgetsCustomValuesQuery setLastSavedDateTimeBetween(ArrayList value) { this.LastSavedDateTimeBetween = value; return this; } public ArrayList getLastSavedDateTimeIn() { return LastSavedDateTimeIn; } public SM_JobActivityBudgetsCustomValuesQuery setLastSavedDateTimeIn(ArrayList value) { this.LastSavedDateTimeIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class SM_JobEquipmentQuery extends QueryDb implements IReturn> { public String EquipmentID = null; public String EquipmentIDStartsWith = null; public String EquipmentIDEndsWith = null; public String EquipmentIDContains = null; public String EquipmentIDLike = null; public ArrayList EquipmentIDBetween = null; public ArrayList EquipmentIDIn = null; public String JobID = null; public String JobIDStartsWith = null; public String JobIDEndsWith = null; public String JobIDContains = null; public String JobIDLike = null; public ArrayList JobIDBetween = null; public ArrayList JobIDIn = null; public String InventoryID = null; public String InventoryIDStartsWith = null; public String InventoryIDEndsWith = null; public String InventoryIDContains = null; public String InventoryIDLike = null; public ArrayList InventoryIDBetween = null; public ArrayList InventoryIDIn = null; public String PartNo = null; public String PartNoStartsWith = null; public String PartNoEndsWith = null; public String PartNoContains = null; public String PartNoLike = null; public ArrayList PartNoBetween = null; public ArrayList PartNoIn = null; public String Description = null; public String DescriptionStartsWith = null; public String DescriptionEndsWith = null; public String DescriptionContains = null; public String DescriptionLike = null; public ArrayList DescriptionBetween = null; public ArrayList DescriptionIn = null; public String Notes = null; public String NotesStartsWith = null; public String NotesEndsWith = null; public String NotesContains = null; public String NotesLike = null; public ArrayList NotesBetween = null; public ArrayList NotesIn = null; public String SerialNumber = null; public String SerialNumberStartsWith = null; public String SerialNumberEndsWith = null; public String SerialNumberContains = null; public String SerialNumberLike = null; public ArrayList SerialNumberBetween = null; public ArrayList SerialNumberIn = null; public Integer Damaged = null; public Integer DamagedGreaterThanOrEqualTo = null; public Integer DamagedGreaterThan = null; public Integer DamagedLessThan = null; public Integer DamagedLessThanOrEqualTo = null; public Integer DamagedNotEqualTo = null; public ArrayList DamagedBetween = null; public ArrayList DamagedIn = null; public String WarrantyItemID = null; public String WarrantyItemIDStartsWith = null; public String WarrantyItemIDEndsWith = null; public String WarrantyItemIDContains = null; public String WarrantyItemIDLike = null; public ArrayList WarrantyItemIDBetween = null; public ArrayList WarrantyItemIDIn = null; public String Reference = null; public String ReferenceStartsWith = null; public String ReferenceEndsWith = null; public String ReferenceContains = null; public String ReferenceLike = null; public ArrayList ReferenceBetween = null; public ArrayList ReferenceIn = null; public Date DateSent = null; public Date DateSentGreaterThanOrEqualTo = null; public Date DateSentGreaterThan = null; public Date DateSentLessThan = null; public Date DateSentLessThanOrEqualTo = null; public Date DateSentNotEqualTo = null; public ArrayList DateSentBetween = null; public ArrayList DateSentIn = null; public Date DateReturn = null; public Date DateReturnGreaterThanOrEqualTo = null; public Date DateReturnGreaterThan = null; public Date DateReturnLessThan = null; public Date DateReturnLessThanOrEqualTo = null; public Date DateReturnNotEqualTo = null; public ArrayList DateReturnBetween = null; public ArrayList DateReturnIn = null; public Short Status = null; public Short StatusGreaterThanOrEqualTo = null; public Short StatusGreaterThan = null; public Short StatusLessThan = null; public Short StatusLessThanOrEqualTo = null; public Short StatusNotEqualTo = null; public ArrayList StatusBetween = null; public ArrayList StatusIn = null; public String getEquipmentID() { return EquipmentID; } public SM_JobEquipmentQuery setEquipmentID(String value) { this.EquipmentID = value; return this; } public String getEquipmentIDStartsWith() { return EquipmentIDStartsWith; } public SM_JobEquipmentQuery setEquipmentIDStartsWith(String value) { this.EquipmentIDStartsWith = value; return this; } public String getEquipmentIDEndsWith() { return EquipmentIDEndsWith; } public SM_JobEquipmentQuery setEquipmentIDEndsWith(String value) { this.EquipmentIDEndsWith = value; return this; } public String getEquipmentIDContains() { return EquipmentIDContains; } public SM_JobEquipmentQuery setEquipmentIDContains(String value) { this.EquipmentIDContains = value; return this; } public String getEquipmentIDLike() { return EquipmentIDLike; } public SM_JobEquipmentQuery setEquipmentIDLike(String value) { this.EquipmentIDLike = value; return this; } public ArrayList getEquipmentIDBetween() { return EquipmentIDBetween; } public SM_JobEquipmentQuery setEquipmentIDBetween(ArrayList value) { this.EquipmentIDBetween = value; return this; } public ArrayList getEquipmentIDIn() { return EquipmentIDIn; } public SM_JobEquipmentQuery setEquipmentIDIn(ArrayList value) { this.EquipmentIDIn = value; return this; } public String getJobID() { return JobID; } public SM_JobEquipmentQuery setJobID(String value) { this.JobID = value; return this; } public String getJobIDStartsWith() { return JobIDStartsWith; } public SM_JobEquipmentQuery setJobIDStartsWith(String value) { this.JobIDStartsWith = value; return this; } public String getJobIDEndsWith() { return JobIDEndsWith; } public SM_JobEquipmentQuery setJobIDEndsWith(String value) { this.JobIDEndsWith = value; return this; } public String getJobIDContains() { return JobIDContains; } public SM_JobEquipmentQuery setJobIDContains(String value) { this.JobIDContains = value; return this; } public String getJobIDLike() { return JobIDLike; } public SM_JobEquipmentQuery setJobIDLike(String value) { this.JobIDLike = value; return this; } public ArrayList getJobIDBetween() { return JobIDBetween; } public SM_JobEquipmentQuery setJobIDBetween(ArrayList value) { this.JobIDBetween = value; return this; } public ArrayList getJobIDIn() { return JobIDIn; } public SM_JobEquipmentQuery setJobIDIn(ArrayList value) { this.JobIDIn = value; return this; } public String getInventoryID() { return InventoryID; } public SM_JobEquipmentQuery setInventoryID(String value) { this.InventoryID = value; return this; } public String getInventoryIDStartsWith() { return InventoryIDStartsWith; } public SM_JobEquipmentQuery setInventoryIDStartsWith(String value) { this.InventoryIDStartsWith = value; return this; } public String getInventoryIDEndsWith() { return InventoryIDEndsWith; } public SM_JobEquipmentQuery setInventoryIDEndsWith(String value) { this.InventoryIDEndsWith = value; return this; } public String getInventoryIDContains() { return InventoryIDContains; } public SM_JobEquipmentQuery setInventoryIDContains(String value) { this.InventoryIDContains = value; return this; } public String getInventoryIDLike() { return InventoryIDLike; } public SM_JobEquipmentQuery setInventoryIDLike(String value) { this.InventoryIDLike = value; return this; } public ArrayList getInventoryIDBetween() { return InventoryIDBetween; } public SM_JobEquipmentQuery setInventoryIDBetween(ArrayList value) { this.InventoryIDBetween = value; return this; } public ArrayList getInventoryIDIn() { return InventoryIDIn; } public SM_JobEquipmentQuery setInventoryIDIn(ArrayList value) { this.InventoryIDIn = value; return this; } public String getPartNo() { return PartNo; } public SM_JobEquipmentQuery setPartNo(String value) { this.PartNo = value; return this; } public String getPartNoStartsWith() { return PartNoStartsWith; } public SM_JobEquipmentQuery setPartNoStartsWith(String value) { this.PartNoStartsWith = value; return this; } public String getPartNoEndsWith() { return PartNoEndsWith; } public SM_JobEquipmentQuery setPartNoEndsWith(String value) { this.PartNoEndsWith = value; return this; } public String getPartNoContains() { return PartNoContains; } public SM_JobEquipmentQuery setPartNoContains(String value) { this.PartNoContains = value; return this; } public String getPartNoLike() { return PartNoLike; } public SM_JobEquipmentQuery setPartNoLike(String value) { this.PartNoLike = value; return this; } public ArrayList getPartNoBetween() { return PartNoBetween; } public SM_JobEquipmentQuery setPartNoBetween(ArrayList value) { this.PartNoBetween = value; return this; } public ArrayList getPartNoIn() { return PartNoIn; } public SM_JobEquipmentQuery setPartNoIn(ArrayList value) { this.PartNoIn = value; return this; } public String getDescription() { return Description; } public SM_JobEquipmentQuery setDescription(String value) { this.Description = value; return this; } public String getDescriptionStartsWith() { return DescriptionStartsWith; } public SM_JobEquipmentQuery setDescriptionStartsWith(String value) { this.DescriptionStartsWith = value; return this; } public String getDescriptionEndsWith() { return DescriptionEndsWith; } public SM_JobEquipmentQuery setDescriptionEndsWith(String value) { this.DescriptionEndsWith = value; return this; } public String getDescriptionContains() { return DescriptionContains; } public SM_JobEquipmentQuery setDescriptionContains(String value) { this.DescriptionContains = value; return this; } public String getDescriptionLike() { return DescriptionLike; } public SM_JobEquipmentQuery setDescriptionLike(String value) { this.DescriptionLike = value; return this; } public ArrayList getDescriptionBetween() { return DescriptionBetween; } public SM_JobEquipmentQuery setDescriptionBetween(ArrayList value) { this.DescriptionBetween = value; return this; } public ArrayList getDescriptionIn() { return DescriptionIn; } public SM_JobEquipmentQuery setDescriptionIn(ArrayList value) { this.DescriptionIn = value; return this; } public String getNotes() { return Notes; } public SM_JobEquipmentQuery setNotes(String value) { this.Notes = value; return this; } public String getNotesStartsWith() { return NotesStartsWith; } public SM_JobEquipmentQuery setNotesStartsWith(String value) { this.NotesStartsWith = value; return this; } public String getNotesEndsWith() { return NotesEndsWith; } public SM_JobEquipmentQuery setNotesEndsWith(String value) { this.NotesEndsWith = value; return this; } public String getNotesContains() { return NotesContains; } public SM_JobEquipmentQuery setNotesContains(String value) { this.NotesContains = value; return this; } public String getNotesLike() { return NotesLike; } public SM_JobEquipmentQuery setNotesLike(String value) { this.NotesLike = value; return this; } public ArrayList getNotesBetween() { return NotesBetween; } public SM_JobEquipmentQuery setNotesBetween(ArrayList value) { this.NotesBetween = value; return this; } public ArrayList getNotesIn() { return NotesIn; } public SM_JobEquipmentQuery setNotesIn(ArrayList value) { this.NotesIn = value; return this; } public String getSerialNumber() { return SerialNumber; } public SM_JobEquipmentQuery setSerialNumber(String value) { this.SerialNumber = value; return this; } public String getSerialNumberStartsWith() { return SerialNumberStartsWith; } public SM_JobEquipmentQuery setSerialNumberStartsWith(String value) { this.SerialNumberStartsWith = value; return this; } public String getSerialNumberEndsWith() { return SerialNumberEndsWith; } public SM_JobEquipmentQuery setSerialNumberEndsWith(String value) { this.SerialNumberEndsWith = value; return this; } public String getSerialNumberContains() { return SerialNumberContains; } public SM_JobEquipmentQuery setSerialNumberContains(String value) { this.SerialNumberContains = value; return this; } public String getSerialNumberLike() { return SerialNumberLike; } public SM_JobEquipmentQuery setSerialNumberLike(String value) { this.SerialNumberLike = value; return this; } public ArrayList getSerialNumberBetween() { return SerialNumberBetween; } public SM_JobEquipmentQuery setSerialNumberBetween(ArrayList value) { this.SerialNumberBetween = value; return this; } public ArrayList getSerialNumberIn() { return SerialNumberIn; } public SM_JobEquipmentQuery setSerialNumberIn(ArrayList value) { this.SerialNumberIn = value; return this; } public Integer getDamaged() { return Damaged; } public SM_JobEquipmentQuery setDamaged(Integer value) { this.Damaged = value; return this; } public Integer getDamagedGreaterThanOrEqualTo() { return DamagedGreaterThanOrEqualTo; } public SM_JobEquipmentQuery setDamagedGreaterThanOrEqualTo(Integer value) { this.DamagedGreaterThanOrEqualTo = value; return this; } public Integer getDamagedGreaterThan() { return DamagedGreaterThan; } public SM_JobEquipmentQuery setDamagedGreaterThan(Integer value) { this.DamagedGreaterThan = value; return this; } public Integer getDamagedLessThan() { return DamagedLessThan; } public SM_JobEquipmentQuery setDamagedLessThan(Integer value) { this.DamagedLessThan = value; return this; } public Integer getDamagedLessThanOrEqualTo() { return DamagedLessThanOrEqualTo; } public SM_JobEquipmentQuery setDamagedLessThanOrEqualTo(Integer value) { this.DamagedLessThanOrEqualTo = value; return this; } public Integer getDamagedNotEqualTo() { return DamagedNotEqualTo; } public SM_JobEquipmentQuery setDamagedNotEqualTo(Integer value) { this.DamagedNotEqualTo = value; return this; } public ArrayList getDamagedBetween() { return DamagedBetween; } public SM_JobEquipmentQuery setDamagedBetween(ArrayList value) { this.DamagedBetween = value; return this; } public ArrayList getDamagedIn() { return DamagedIn; } public SM_JobEquipmentQuery setDamagedIn(ArrayList value) { this.DamagedIn = value; return this; } public String getWarrantyItemID() { return WarrantyItemID; } public SM_JobEquipmentQuery setWarrantyItemID(String value) { this.WarrantyItemID = value; return this; } public String getWarrantyItemIDStartsWith() { return WarrantyItemIDStartsWith; } public SM_JobEquipmentQuery setWarrantyItemIDStartsWith(String value) { this.WarrantyItemIDStartsWith = value; return this; } public String getWarrantyItemIDEndsWith() { return WarrantyItemIDEndsWith; } public SM_JobEquipmentQuery setWarrantyItemIDEndsWith(String value) { this.WarrantyItemIDEndsWith = value; return this; } public String getWarrantyItemIDContains() { return WarrantyItemIDContains; } public SM_JobEquipmentQuery setWarrantyItemIDContains(String value) { this.WarrantyItemIDContains = value; return this; } public String getWarrantyItemIDLike() { return WarrantyItemIDLike; } public SM_JobEquipmentQuery setWarrantyItemIDLike(String value) { this.WarrantyItemIDLike = value; return this; } public ArrayList getWarrantyItemIDBetween() { return WarrantyItemIDBetween; } public SM_JobEquipmentQuery setWarrantyItemIDBetween(ArrayList value) { this.WarrantyItemIDBetween = value; return this; } public ArrayList getWarrantyItemIDIn() { return WarrantyItemIDIn; } public SM_JobEquipmentQuery setWarrantyItemIDIn(ArrayList value) { this.WarrantyItemIDIn = value; return this; } public String getReference() { return Reference; } public SM_JobEquipmentQuery setReference(String value) { this.Reference = value; return this; } public String getReferenceStartsWith() { return ReferenceStartsWith; } public SM_JobEquipmentQuery setReferenceStartsWith(String value) { this.ReferenceStartsWith = value; return this; } public String getReferenceEndsWith() { return ReferenceEndsWith; } public SM_JobEquipmentQuery setReferenceEndsWith(String value) { this.ReferenceEndsWith = value; return this; } public String getReferenceContains() { return ReferenceContains; } public SM_JobEquipmentQuery setReferenceContains(String value) { this.ReferenceContains = value; return this; } public String getReferenceLike() { return ReferenceLike; } public SM_JobEquipmentQuery setReferenceLike(String value) { this.ReferenceLike = value; return this; } public ArrayList getReferenceBetween() { return ReferenceBetween; } public SM_JobEquipmentQuery setReferenceBetween(ArrayList value) { this.ReferenceBetween = value; return this; } public ArrayList getReferenceIn() { return ReferenceIn; } public SM_JobEquipmentQuery setReferenceIn(ArrayList value) { this.ReferenceIn = value; return this; } public Date getDateSent() { return DateSent; } public SM_JobEquipmentQuery setDateSent(Date value) { this.DateSent = value; return this; } public Date getDateSentGreaterThanOrEqualTo() { return DateSentGreaterThanOrEqualTo; } public SM_JobEquipmentQuery setDateSentGreaterThanOrEqualTo(Date value) { this.DateSentGreaterThanOrEqualTo = value; return this; } public Date getDateSentGreaterThan() { return DateSentGreaterThan; } public SM_JobEquipmentQuery setDateSentGreaterThan(Date value) { this.DateSentGreaterThan = value; return this; } public Date getDateSentLessThan() { return DateSentLessThan; } public SM_JobEquipmentQuery setDateSentLessThan(Date value) { this.DateSentLessThan = value; return this; } public Date getDateSentLessThanOrEqualTo() { return DateSentLessThanOrEqualTo; } public SM_JobEquipmentQuery setDateSentLessThanOrEqualTo(Date value) { this.DateSentLessThanOrEqualTo = value; return this; } public Date getDateSentNotEqualTo() { return DateSentNotEqualTo; } public SM_JobEquipmentQuery setDateSentNotEqualTo(Date value) { this.DateSentNotEqualTo = value; return this; } public ArrayList getDateSentBetween() { return DateSentBetween; } public SM_JobEquipmentQuery setDateSentBetween(ArrayList value) { this.DateSentBetween = value; return this; } public ArrayList getDateSentIn() { return DateSentIn; } public SM_JobEquipmentQuery setDateSentIn(ArrayList value) { this.DateSentIn = value; return this; } public Date getDateReturn() { return DateReturn; } public SM_JobEquipmentQuery setDateReturn(Date value) { this.DateReturn = value; return this; } public Date getDateReturnGreaterThanOrEqualTo() { return DateReturnGreaterThanOrEqualTo; } public SM_JobEquipmentQuery setDateReturnGreaterThanOrEqualTo(Date value) { this.DateReturnGreaterThanOrEqualTo = value; return this; } public Date getDateReturnGreaterThan() { return DateReturnGreaterThan; } public SM_JobEquipmentQuery setDateReturnGreaterThan(Date value) { this.DateReturnGreaterThan = value; return this; } public Date getDateReturnLessThan() { return DateReturnLessThan; } public SM_JobEquipmentQuery setDateReturnLessThan(Date value) { this.DateReturnLessThan = value; return this; } public Date getDateReturnLessThanOrEqualTo() { return DateReturnLessThanOrEqualTo; } public SM_JobEquipmentQuery setDateReturnLessThanOrEqualTo(Date value) { this.DateReturnLessThanOrEqualTo = value; return this; } public Date getDateReturnNotEqualTo() { return DateReturnNotEqualTo; } public SM_JobEquipmentQuery setDateReturnNotEqualTo(Date value) { this.DateReturnNotEqualTo = value; return this; } public ArrayList getDateReturnBetween() { return DateReturnBetween; } public SM_JobEquipmentQuery setDateReturnBetween(ArrayList value) { this.DateReturnBetween = value; return this; } public ArrayList getDateReturnIn() { return DateReturnIn; } public SM_JobEquipmentQuery setDateReturnIn(ArrayList value) { this.DateReturnIn = value; return this; } public Short getStatus() { return Status; } public SM_JobEquipmentQuery setStatus(Short value) { this.Status = value; return this; } public Short getStatusGreaterThanOrEqualTo() { return StatusGreaterThanOrEqualTo; } public SM_JobEquipmentQuery setStatusGreaterThanOrEqualTo(Short value) { this.StatusGreaterThanOrEqualTo = value; return this; } public Short getStatusGreaterThan() { return StatusGreaterThan; } public SM_JobEquipmentQuery setStatusGreaterThan(Short value) { this.StatusGreaterThan = value; return this; } public Short getStatusLessThan() { return StatusLessThan; } public SM_JobEquipmentQuery setStatusLessThan(Short value) { this.StatusLessThan = value; return this; } public Short getStatusLessThanOrEqualTo() { return StatusLessThanOrEqualTo; } public SM_JobEquipmentQuery setStatusLessThanOrEqualTo(Short value) { this.StatusLessThanOrEqualTo = value; return this; } public Short getStatusNotEqualTo() { return StatusNotEqualTo; } public SM_JobEquipmentQuery setStatusNotEqualTo(Short value) { this.StatusNotEqualTo = value; return this; } public ArrayList getStatusBetween() { return StatusBetween; } public SM_JobEquipmentQuery setStatusBetween(ArrayList value) { this.StatusBetween = value; return this; } public ArrayList getStatusIn() { return StatusIn; } public SM_JobEquipmentQuery setStatusIn(ArrayList value) { this.StatusIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class SM_JobPLLinkQuery extends QueryDb implements IReturn> { public String SM_Tasks_RecID = null; public String SM_Tasks_RecIDStartsWith = null; public String SM_Tasks_RecIDEndsWith = null; public String SM_Tasks_RecIDContains = null; public String SM_Tasks_RecIDLike = null; public ArrayList SM_Tasks_RecIDBetween = null; public ArrayList SM_Tasks_RecIDIn = null; public String RecID = null; public String RecIDStartsWith = null; public String RecIDEndsWith = null; public String RecIDContains = null; public String RecIDLike = null; public ArrayList RecIDBetween = null; public ArrayList RecIDIn = null; public String PartID = null; public String PartIDStartsWith = null; public String PartIDEndsWith = null; public String PartIDContains = null; public String PartIDLike = null; public ArrayList PartIDBetween = null; public ArrayList PartIDIn = null; public String EquipmentID = null; public String EquipmentIDStartsWith = null; public String EquipmentIDEndsWith = null; public String EquipmentIDContains = null; public String EquipmentIDLike = null; public ArrayList EquipmentIDBetween = null; public ArrayList EquipmentIDIn = null; public String getSmTasksRecID() { return SM_Tasks_RecID; } public SM_JobPLLinkQuery setSmTasksRecID(String value) { this.SM_Tasks_RecID = value; return this; } public String getSmTasksRecIDStartsWith() { return SM_Tasks_RecIDStartsWith; } public SM_JobPLLinkQuery setSmTasksRecIDStartsWith(String value) { this.SM_Tasks_RecIDStartsWith = value; return this; } public String getSmTasksRecIDEndsWith() { return SM_Tasks_RecIDEndsWith; } public SM_JobPLLinkQuery setSmTasksRecIDEndsWith(String value) { this.SM_Tasks_RecIDEndsWith = value; return this; } public String getSmTasksRecIDContains() { return SM_Tasks_RecIDContains; } public SM_JobPLLinkQuery setSmTasksRecIDContains(String value) { this.SM_Tasks_RecIDContains = value; return this; } public String getSmTasksRecIDLike() { return SM_Tasks_RecIDLike; } public SM_JobPLLinkQuery setSmTasksRecIDLike(String value) { this.SM_Tasks_RecIDLike = value; return this; } public ArrayList getSmTasksRecIDBetween() { return SM_Tasks_RecIDBetween; } public SM_JobPLLinkQuery setSmTasksRecIDBetween(ArrayList value) { this.SM_Tasks_RecIDBetween = value; return this; } public ArrayList getSmTasksRecIDIn() { return SM_Tasks_RecIDIn; } public SM_JobPLLinkQuery setSmTasksRecIDIn(ArrayList value) { this.SM_Tasks_RecIDIn = value; return this; } public String getRecID() { return RecID; } public SM_JobPLLinkQuery setRecID(String value) { this.RecID = value; return this; } public String getRecIDStartsWith() { return RecIDStartsWith; } public SM_JobPLLinkQuery setRecIDStartsWith(String value) { this.RecIDStartsWith = value; return this; } public String getRecIDEndsWith() { return RecIDEndsWith; } public SM_JobPLLinkQuery setRecIDEndsWith(String value) { this.RecIDEndsWith = value; return this; } public String getRecIDContains() { return RecIDContains; } public SM_JobPLLinkQuery setRecIDContains(String value) { this.RecIDContains = value; return this; } public String getRecIDLike() { return RecIDLike; } public SM_JobPLLinkQuery setRecIDLike(String value) { this.RecIDLike = value; return this; } public ArrayList getRecIDBetween() { return RecIDBetween; } public SM_JobPLLinkQuery setRecIDBetween(ArrayList value) { this.RecIDBetween = value; return this; } public ArrayList getRecIDIn() { return RecIDIn; } public SM_JobPLLinkQuery setRecIDIn(ArrayList value) { this.RecIDIn = value; return this; } public String getPartID() { return PartID; } public SM_JobPLLinkQuery setPartID(String value) { this.PartID = value; return this; } public String getPartIDStartsWith() { return PartIDStartsWith; } public SM_JobPLLinkQuery setPartIDStartsWith(String value) { this.PartIDStartsWith = value; return this; } public String getPartIDEndsWith() { return PartIDEndsWith; } public SM_JobPLLinkQuery setPartIDEndsWith(String value) { this.PartIDEndsWith = value; return this; } public String getPartIDContains() { return PartIDContains; } public SM_JobPLLinkQuery setPartIDContains(String value) { this.PartIDContains = value; return this; } public String getPartIDLike() { return PartIDLike; } public SM_JobPLLinkQuery setPartIDLike(String value) { this.PartIDLike = value; return this; } public ArrayList getPartIDBetween() { return PartIDBetween; } public SM_JobPLLinkQuery setPartIDBetween(ArrayList value) { this.PartIDBetween = value; return this; } public ArrayList getPartIDIn() { return PartIDIn; } public SM_JobPLLinkQuery setPartIDIn(ArrayList value) { this.PartIDIn = value; return this; } public String getEquipmentID() { return EquipmentID; } public SM_JobPLLinkQuery setEquipmentID(String value) { this.EquipmentID = value; return this; } public String getEquipmentIDStartsWith() { return EquipmentIDStartsWith; } public SM_JobPLLinkQuery setEquipmentIDStartsWith(String value) { this.EquipmentIDStartsWith = value; return this; } public String getEquipmentIDEndsWith() { return EquipmentIDEndsWith; } public SM_JobPLLinkQuery setEquipmentIDEndsWith(String value) { this.EquipmentIDEndsWith = value; return this; } public String getEquipmentIDContains() { return EquipmentIDContains; } public SM_JobPLLinkQuery setEquipmentIDContains(String value) { this.EquipmentIDContains = value; return this; } public String getEquipmentIDLike() { return EquipmentIDLike; } public SM_JobPLLinkQuery setEquipmentIDLike(String value) { this.EquipmentIDLike = value; return this; } public ArrayList getEquipmentIDBetween() { return EquipmentIDBetween; } public SM_JobPLLinkQuery setEquipmentIDBetween(ArrayList value) { this.EquipmentIDBetween = value; return this; } public ArrayList getEquipmentIDIn() { return EquipmentIDIn; } public SM_JobPLLinkQuery setEquipmentIDIn(ArrayList value) { this.EquipmentIDIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class SM_JobsQuery extends QueryDb implements IReturn> { public String RecID = null; public String RecIDStartsWith = null; public String RecIDEndsWith = null; public String RecIDContains = null; public String RecIDLike = null; public ArrayList RecIDBetween = null; public ArrayList RecIDIn = null; public String JobNo = null; public String JobNoStartsWith = null; public String JobNoEndsWith = null; public String JobNoContains = null; public String JobNoLike = null; public ArrayList JobNoBetween = null; public ArrayList JobNoIn = null; public String DB_Main_RecID = null; public String DB_Main_RecIDStartsWith = null; public String DB_Main_RecIDEndsWith = null; public String DB_Main_RecIDContains = null; public String DB_Main_RecIDLike = null; public ArrayList DB_Main_RecIDBetween = null; public ArrayList DB_Main_RecIDIn = null; public String CN_Contact_RecID = null; public String CN_Contact_RecIDStartsWith = null; public String CN_Contact_RecIDEndsWith = null; public String CN_Contact_RecIDContains = null; public String CN_Contact_RecIDLike = null; public ArrayList CN_Contact_RecIDBetween = null; public ArrayList CN_Contact_RecIDIn = null; public String Reference = null; public String ReferenceStartsWith = null; public String ReferenceEndsWith = null; public String ReferenceContains = null; public String ReferenceLike = null; public ArrayList ReferenceBetween = null; public ArrayList ReferenceIn = null; public String Description = null; public String DescriptionStartsWith = null; public String DescriptionEndsWith = null; public String DescriptionContains = null; public String DescriptionLike = null; public ArrayList DescriptionBetween = null; public ArrayList DescriptionIn = null; public String Coordinator_HR_Staff_RecID = null; public String Coordinator_HR_Staff_RecIDStartsWith = null; public String Coordinator_HR_Staff_RecIDEndsWith = null; public String Coordinator_HR_Staff_RecIDContains = null; public String Coordinator_HR_Staff_RecIDLike = null; public ArrayList Coordinator_HR_Staff_RecIDBetween = null; public ArrayList Coordinator_HR_Staff_RecIDIn = null; public Date DateLogged = null; public Date DateLoggedGreaterThanOrEqualTo = null; public Date DateLoggedGreaterThan = null; public Date DateLoggedLessThan = null; public Date DateLoggedLessThanOrEqualTo = null; public Date DateLoggedNotEqualTo = null; public ArrayList DateLoggedBetween = null; public ArrayList DateLoggedIn = null; public Date LastSavedDateTime = null; public Date LastSavedDateTimeGreaterThanOrEqualTo = null; public Date LastSavedDateTimeGreaterThan = null; public Date LastSavedDateTimeLessThan = null; public Date LastSavedDateTimeLessThanOrEqualTo = null; public Date LastSavedDateTimeNotEqualTo = null; public ArrayList LastSavedDateTimeBetween = null; public ArrayList LastSavedDateTimeIn = null; public String LastSaved_HR_Staff_RecID = null; public String LastSaved_HR_Staff_RecIDStartsWith = null; public String LastSaved_HR_Staff_RecIDEndsWith = null; public String LastSaved_HR_Staff_RecIDContains = null; public String LastSaved_HR_Staff_RecIDLike = null; public ArrayList LastSaved_HR_Staff_RecIDBetween = null; public ArrayList LastSaved_HR_Staff_RecIDIn = null; public String IN_PriceSchemes_RecID = null; public String IN_PriceSchemes_RecIDStartsWith = null; public String IN_PriceSchemes_RecIDEndsWith = null; public String IN_PriceSchemes_RecIDContains = null; public String IN_PriceSchemes_RecIDLike = null; public ArrayList IN_PriceSchemes_RecIDBetween = null; public ArrayList IN_PriceSchemes_RecIDIn = null; public String TaxExemptNo = null; public String TaxExemptNoStartsWith = null; public String TaxExemptNoEndsWith = null; public String TaxExemptNoContains = null; public String TaxExemptNoLike = null; public ArrayList TaxExemptNoBetween = null; public ArrayList TaxExemptNoIn = null; public ArrayList RowHash = null; public String IN_LogicalID = null; public String IN_LogicalIDStartsWith = null; public String IN_LogicalIDEndsWith = null; public String IN_LogicalIDContains = null; public String IN_LogicalIDLike = null; public ArrayList IN_LogicalIDBetween = null; public ArrayList IN_LogicalIDIn = null; public String getRecID() { return RecID; } public SM_JobsQuery setRecID(String value) { this.RecID = value; return this; } public String getRecIDStartsWith() { return RecIDStartsWith; } public SM_JobsQuery setRecIDStartsWith(String value) { this.RecIDStartsWith = value; return this; } public String getRecIDEndsWith() { return RecIDEndsWith; } public SM_JobsQuery setRecIDEndsWith(String value) { this.RecIDEndsWith = value; return this; } public String getRecIDContains() { return RecIDContains; } public SM_JobsQuery setRecIDContains(String value) { this.RecIDContains = value; return this; } public String getRecIDLike() { return RecIDLike; } public SM_JobsQuery setRecIDLike(String value) { this.RecIDLike = value; return this; } public ArrayList getRecIDBetween() { return RecIDBetween; } public SM_JobsQuery setRecIDBetween(ArrayList value) { this.RecIDBetween = value; return this; } public ArrayList getRecIDIn() { return RecIDIn; } public SM_JobsQuery setRecIDIn(ArrayList value) { this.RecIDIn = value; return this; } public String getJobNo() { return JobNo; } public SM_JobsQuery setJobNo(String value) { this.JobNo = value; return this; } public String getJobNoStartsWith() { return JobNoStartsWith; } public SM_JobsQuery setJobNoStartsWith(String value) { this.JobNoStartsWith = value; return this; } public String getJobNoEndsWith() { return JobNoEndsWith; } public SM_JobsQuery setJobNoEndsWith(String value) { this.JobNoEndsWith = value; return this; } public String getJobNoContains() { return JobNoContains; } public SM_JobsQuery setJobNoContains(String value) { this.JobNoContains = value; return this; } public String getJobNoLike() { return JobNoLike; } public SM_JobsQuery setJobNoLike(String value) { this.JobNoLike = value; return this; } public ArrayList getJobNoBetween() { return JobNoBetween; } public SM_JobsQuery setJobNoBetween(ArrayList value) { this.JobNoBetween = value; return this; } public ArrayList getJobNoIn() { return JobNoIn; } public SM_JobsQuery setJobNoIn(ArrayList value) { this.JobNoIn = value; return this; } public String getDbMainRecID() { return DB_Main_RecID; } public SM_JobsQuery setDbMainRecID(String value) { this.DB_Main_RecID = value; return this; } public String getDbMainRecIDStartsWith() { return DB_Main_RecIDStartsWith; } public SM_JobsQuery setDbMainRecIDStartsWith(String value) { this.DB_Main_RecIDStartsWith = value; return this; } public String getDbMainRecIDEndsWith() { return DB_Main_RecIDEndsWith; } public SM_JobsQuery setDbMainRecIDEndsWith(String value) { this.DB_Main_RecIDEndsWith = value; return this; } public String getDbMainRecIDContains() { return DB_Main_RecIDContains; } public SM_JobsQuery setDbMainRecIDContains(String value) { this.DB_Main_RecIDContains = value; return this; } public String getDbMainRecIDLike() { return DB_Main_RecIDLike; } public SM_JobsQuery setDbMainRecIDLike(String value) { this.DB_Main_RecIDLike = value; return this; } public ArrayList getDbMainRecIDBetween() { return DB_Main_RecIDBetween; } public SM_JobsQuery setDbMainRecIDBetween(ArrayList value) { this.DB_Main_RecIDBetween = value; return this; } public ArrayList getDbMainRecIDIn() { return DB_Main_RecIDIn; } public SM_JobsQuery setDbMainRecIDIn(ArrayList value) { this.DB_Main_RecIDIn = value; return this; } public String getCnContactRecID() { return CN_Contact_RecID; } public SM_JobsQuery setCnContactRecID(String value) { this.CN_Contact_RecID = value; return this; } public String getCnContactRecIDStartsWith() { return CN_Contact_RecIDStartsWith; } public SM_JobsQuery setCnContactRecIDStartsWith(String value) { this.CN_Contact_RecIDStartsWith = value; return this; } public String getCnContactRecIDEndsWith() { return CN_Contact_RecIDEndsWith; } public SM_JobsQuery setCnContactRecIDEndsWith(String value) { this.CN_Contact_RecIDEndsWith = value; return this; } public String getCnContactRecIDContains() { return CN_Contact_RecIDContains; } public SM_JobsQuery setCnContactRecIDContains(String value) { this.CN_Contact_RecIDContains = value; return this; } public String getCnContactRecIDLike() { return CN_Contact_RecIDLike; } public SM_JobsQuery setCnContactRecIDLike(String value) { this.CN_Contact_RecIDLike = value; return this; } public ArrayList getCnContactRecIDBetween() { return CN_Contact_RecIDBetween; } public SM_JobsQuery setCnContactRecIDBetween(ArrayList value) { this.CN_Contact_RecIDBetween = value; return this; } public ArrayList getCnContactRecIDIn() { return CN_Contact_RecIDIn; } public SM_JobsQuery setCnContactRecIDIn(ArrayList value) { this.CN_Contact_RecIDIn = value; return this; } public String getReference() { return Reference; } public SM_JobsQuery setReference(String value) { this.Reference = value; return this; } public String getReferenceStartsWith() { return ReferenceStartsWith; } public SM_JobsQuery setReferenceStartsWith(String value) { this.ReferenceStartsWith = value; return this; } public String getReferenceEndsWith() { return ReferenceEndsWith; } public SM_JobsQuery setReferenceEndsWith(String value) { this.ReferenceEndsWith = value; return this; } public String getReferenceContains() { return ReferenceContains; } public SM_JobsQuery setReferenceContains(String value) { this.ReferenceContains = value; return this; } public String getReferenceLike() { return ReferenceLike; } public SM_JobsQuery setReferenceLike(String value) { this.ReferenceLike = value; return this; } public ArrayList getReferenceBetween() { return ReferenceBetween; } public SM_JobsQuery setReferenceBetween(ArrayList value) { this.ReferenceBetween = value; return this; } public ArrayList getReferenceIn() { return ReferenceIn; } public SM_JobsQuery setReferenceIn(ArrayList value) { this.ReferenceIn = value; return this; } public String getDescription() { return Description; } public SM_JobsQuery setDescription(String value) { this.Description = value; return this; } public String getDescriptionStartsWith() { return DescriptionStartsWith; } public SM_JobsQuery setDescriptionStartsWith(String value) { this.DescriptionStartsWith = value; return this; } public String getDescriptionEndsWith() { return DescriptionEndsWith; } public SM_JobsQuery setDescriptionEndsWith(String value) { this.DescriptionEndsWith = value; return this; } public String getDescriptionContains() { return DescriptionContains; } public SM_JobsQuery setDescriptionContains(String value) { this.DescriptionContains = value; return this; } public String getDescriptionLike() { return DescriptionLike; } public SM_JobsQuery setDescriptionLike(String value) { this.DescriptionLike = value; return this; } public ArrayList getDescriptionBetween() { return DescriptionBetween; } public SM_JobsQuery setDescriptionBetween(ArrayList value) { this.DescriptionBetween = value; return this; } public ArrayList getDescriptionIn() { return DescriptionIn; } public SM_JobsQuery setDescriptionIn(ArrayList value) { this.DescriptionIn = value; return this; } public String getCoordinatorHrStaffRecID() { return Coordinator_HR_Staff_RecID; } public SM_JobsQuery setCoordinatorHrStaffRecID(String value) { this.Coordinator_HR_Staff_RecID = value; return this; } public String getCoordinatorHrStaffRecIDStartsWith() { return Coordinator_HR_Staff_RecIDStartsWith; } public SM_JobsQuery setCoordinatorHrStaffRecIDStartsWith(String value) { this.Coordinator_HR_Staff_RecIDStartsWith = value; return this; } public String getCoordinatorHrStaffRecIDEndsWith() { return Coordinator_HR_Staff_RecIDEndsWith; } public SM_JobsQuery setCoordinatorHrStaffRecIDEndsWith(String value) { this.Coordinator_HR_Staff_RecIDEndsWith = value; return this; } public String getCoordinatorHrStaffRecIDContains() { return Coordinator_HR_Staff_RecIDContains; } public SM_JobsQuery setCoordinatorHrStaffRecIDContains(String value) { this.Coordinator_HR_Staff_RecIDContains = value; return this; } public String getCoordinatorHrStaffRecIDLike() { return Coordinator_HR_Staff_RecIDLike; } public SM_JobsQuery setCoordinatorHrStaffRecIDLike(String value) { this.Coordinator_HR_Staff_RecIDLike = value; return this; } public ArrayList getCoordinatorHrStaffRecIDBetween() { return Coordinator_HR_Staff_RecIDBetween; } public SM_JobsQuery setCoordinatorHrStaffRecIDBetween(ArrayList value) { this.Coordinator_HR_Staff_RecIDBetween = value; return this; } public ArrayList getCoordinatorHrStaffRecIDIn() { return Coordinator_HR_Staff_RecIDIn; } public SM_JobsQuery setCoordinatorHrStaffRecIDIn(ArrayList value) { this.Coordinator_HR_Staff_RecIDIn = value; return this; } public Date getDateLogged() { return DateLogged; } public SM_JobsQuery setDateLogged(Date value) { this.DateLogged = value; return this; } public Date getDateLoggedGreaterThanOrEqualTo() { return DateLoggedGreaterThanOrEqualTo; } public SM_JobsQuery setDateLoggedGreaterThanOrEqualTo(Date value) { this.DateLoggedGreaterThanOrEqualTo = value; return this; } public Date getDateLoggedGreaterThan() { return DateLoggedGreaterThan; } public SM_JobsQuery setDateLoggedGreaterThan(Date value) { this.DateLoggedGreaterThan = value; return this; } public Date getDateLoggedLessThan() { return DateLoggedLessThan; } public SM_JobsQuery setDateLoggedLessThan(Date value) { this.DateLoggedLessThan = value; return this; } public Date getDateLoggedLessThanOrEqualTo() { return DateLoggedLessThanOrEqualTo; } public SM_JobsQuery setDateLoggedLessThanOrEqualTo(Date value) { this.DateLoggedLessThanOrEqualTo = value; return this; } public Date getDateLoggedNotEqualTo() { return DateLoggedNotEqualTo; } public SM_JobsQuery setDateLoggedNotEqualTo(Date value) { this.DateLoggedNotEqualTo = value; return this; } public ArrayList getDateLoggedBetween() { return DateLoggedBetween; } public SM_JobsQuery setDateLoggedBetween(ArrayList value) { this.DateLoggedBetween = value; return this; } public ArrayList getDateLoggedIn() { return DateLoggedIn; } public SM_JobsQuery setDateLoggedIn(ArrayList value) { this.DateLoggedIn = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public SM_JobsQuery setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getLastSavedDateTimeGreaterThanOrEqualTo() { return LastSavedDateTimeGreaterThanOrEqualTo; } public SM_JobsQuery setLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.LastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeGreaterThan() { return LastSavedDateTimeGreaterThan; } public SM_JobsQuery setLastSavedDateTimeGreaterThan(Date value) { this.LastSavedDateTimeGreaterThan = value; return this; } public Date getLastSavedDateTimeLessThan() { return LastSavedDateTimeLessThan; } public SM_JobsQuery setLastSavedDateTimeLessThan(Date value) { this.LastSavedDateTimeLessThan = value; return this; } public Date getLastSavedDateTimeLessThanOrEqualTo() { return LastSavedDateTimeLessThanOrEqualTo; } public SM_JobsQuery setLastSavedDateTimeLessThanOrEqualTo(Date value) { this.LastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeNotEqualTo() { return LastSavedDateTimeNotEqualTo; } public SM_JobsQuery setLastSavedDateTimeNotEqualTo(Date value) { this.LastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getLastSavedDateTimeBetween() { return LastSavedDateTimeBetween; } public SM_JobsQuery setLastSavedDateTimeBetween(ArrayList value) { this.LastSavedDateTimeBetween = value; return this; } public ArrayList getLastSavedDateTimeIn() { return LastSavedDateTimeIn; } public SM_JobsQuery setLastSavedDateTimeIn(ArrayList value) { this.LastSavedDateTimeIn = value; return this; } public String getLastSavedHrStaffRecID() { return LastSaved_HR_Staff_RecID; } public SM_JobsQuery setLastSavedHrStaffRecID(String value) { this.LastSaved_HR_Staff_RecID = value; return this; } public String getLastSavedHrStaffRecIDStartsWith() { return LastSaved_HR_Staff_RecIDStartsWith; } public SM_JobsQuery setLastSavedHrStaffRecIDStartsWith(String value) { this.LastSaved_HR_Staff_RecIDStartsWith = value; return this; } public String getLastSavedHrStaffRecIDEndsWith() { return LastSaved_HR_Staff_RecIDEndsWith; } public SM_JobsQuery setLastSavedHrStaffRecIDEndsWith(String value) { this.LastSaved_HR_Staff_RecIDEndsWith = value; return this; } public String getLastSavedHrStaffRecIDContains() { return LastSaved_HR_Staff_RecIDContains; } public SM_JobsQuery setLastSavedHrStaffRecIDContains(String value) { this.LastSaved_HR_Staff_RecIDContains = value; return this; } public String getLastSavedHrStaffRecIDLike() { return LastSaved_HR_Staff_RecIDLike; } public SM_JobsQuery setLastSavedHrStaffRecIDLike(String value) { this.LastSaved_HR_Staff_RecIDLike = value; return this; } public ArrayList getLastSavedHrStaffRecIDBetween() { return LastSaved_HR_Staff_RecIDBetween; } public SM_JobsQuery setLastSavedHrStaffRecIDBetween(ArrayList value) { this.LastSaved_HR_Staff_RecIDBetween = value; return this; } public ArrayList getLastSavedHrStaffRecIDIn() { return LastSaved_HR_Staff_RecIDIn; } public SM_JobsQuery setLastSavedHrStaffRecIDIn(ArrayList value) { this.LastSaved_HR_Staff_RecIDIn = value; return this; } public String getInPriceSchemesRecID() { return IN_PriceSchemes_RecID; } public SM_JobsQuery setInPriceSchemesRecID(String value) { this.IN_PriceSchemes_RecID = value; return this; } public String getInPriceSchemesRecIDStartsWith() { return IN_PriceSchemes_RecIDStartsWith; } public SM_JobsQuery setInPriceSchemesRecIDStartsWith(String value) { this.IN_PriceSchemes_RecIDStartsWith = value; return this; } public String getInPriceSchemesRecIDEndsWith() { return IN_PriceSchemes_RecIDEndsWith; } public SM_JobsQuery setInPriceSchemesRecIDEndsWith(String value) { this.IN_PriceSchemes_RecIDEndsWith = value; return this; } public String getInPriceSchemesRecIDContains() { return IN_PriceSchemes_RecIDContains; } public SM_JobsQuery setInPriceSchemesRecIDContains(String value) { this.IN_PriceSchemes_RecIDContains = value; return this; } public String getInPriceSchemesRecIDLike() { return IN_PriceSchemes_RecIDLike; } public SM_JobsQuery setInPriceSchemesRecIDLike(String value) { this.IN_PriceSchemes_RecIDLike = value; return this; } public ArrayList getInPriceSchemesRecIDBetween() { return IN_PriceSchemes_RecIDBetween; } public SM_JobsQuery setInPriceSchemesRecIDBetween(ArrayList value) { this.IN_PriceSchemes_RecIDBetween = value; return this; } public ArrayList getInPriceSchemesRecIDIn() { return IN_PriceSchemes_RecIDIn; } public SM_JobsQuery setInPriceSchemesRecIDIn(ArrayList value) { this.IN_PriceSchemes_RecIDIn = value; return this; } public String getTaxExemptNo() { return TaxExemptNo; } public SM_JobsQuery setTaxExemptNo(String value) { this.TaxExemptNo = value; return this; } public String getTaxExemptNoStartsWith() { return TaxExemptNoStartsWith; } public SM_JobsQuery setTaxExemptNoStartsWith(String value) { this.TaxExemptNoStartsWith = value; return this; } public String getTaxExemptNoEndsWith() { return TaxExemptNoEndsWith; } public SM_JobsQuery setTaxExemptNoEndsWith(String value) { this.TaxExemptNoEndsWith = value; return this; } public String getTaxExemptNoContains() { return TaxExemptNoContains; } public SM_JobsQuery setTaxExemptNoContains(String value) { this.TaxExemptNoContains = value; return this; } public String getTaxExemptNoLike() { return TaxExemptNoLike; } public SM_JobsQuery setTaxExemptNoLike(String value) { this.TaxExemptNoLike = value; return this; } public ArrayList getTaxExemptNoBetween() { return TaxExemptNoBetween; } public SM_JobsQuery setTaxExemptNoBetween(ArrayList value) { this.TaxExemptNoBetween = value; return this; } public ArrayList getTaxExemptNoIn() { return TaxExemptNoIn; } public SM_JobsQuery setTaxExemptNoIn(ArrayList value) { this.TaxExemptNoIn = value; return this; } public ArrayList getRowHash() { return RowHash; } public SM_JobsQuery setRowHash(ArrayList value) { this.RowHash = value; return this; } public String getInLogicalID() { return IN_LogicalID; } public SM_JobsQuery setInLogicalID(String value) { this.IN_LogicalID = value; return this; } public String getInLogicalIDStartsWith() { return IN_LogicalIDStartsWith; } public SM_JobsQuery setInLogicalIDStartsWith(String value) { this.IN_LogicalIDStartsWith = value; return this; } public String getInLogicalIDEndsWith() { return IN_LogicalIDEndsWith; } public SM_JobsQuery setInLogicalIDEndsWith(String value) { this.IN_LogicalIDEndsWith = value; return this; } public String getInLogicalIDContains() { return IN_LogicalIDContains; } public SM_JobsQuery setInLogicalIDContains(String value) { this.IN_LogicalIDContains = value; return this; } public String getInLogicalIDLike() { return IN_LogicalIDLike; } public SM_JobsQuery setInLogicalIDLike(String value) { this.IN_LogicalIDLike = value; return this; } public ArrayList getInLogicalIDBetween() { return IN_LogicalIDBetween; } public SM_JobsQuery setInLogicalIDBetween(ArrayList value) { this.IN_LogicalIDBetween = value; return this; } public ArrayList getInLogicalIDIn() { return IN_LogicalIDIn; } public SM_JobsQuery setInLogicalIDIn(ArrayList value) { this.IN_LogicalIDIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class SM_LabourQuery extends QueryDb implements IReturn> { public String RecID = null; public String RecIDStartsWith = null; public String RecIDEndsWith = null; public String RecIDContains = null; public String RecIDLike = null; public ArrayList RecIDBetween = null; public ArrayList RecIDIn = null; public String IN_Main_RecID = null; public String IN_Main_RecIDStartsWith = null; public String IN_Main_RecIDEndsWith = null; public String IN_Main_RecIDContains = null; public String IN_Main_RecIDLike = null; public ArrayList IN_Main_RecIDBetween = null; public ArrayList IN_Main_RecIDIn = null; public String SM_Tasks_RecID = null; public String SM_Tasks_RecIDStartsWith = null; public String SM_Tasks_RecIDEndsWith = null; public String SM_Tasks_RecIDContains = null; public String SM_Tasks_RecIDLike = null; public ArrayList SM_Tasks_RecIDBetween = null; public ArrayList SM_Tasks_RecIDIn = null; public String StaffID = null; public String StaffIDStartsWith = null; public String StaffIDEndsWith = null; public String StaffIDContains = null; public String StaffIDLike = null; public ArrayList StaffIDBetween = null; public ArrayList StaffIDIn = null; public Date StartTime = null; public Date StartTimeGreaterThanOrEqualTo = null; public Date StartTimeGreaterThan = null; public Date StartTimeLessThan = null; public Date StartTimeLessThanOrEqualTo = null; public Date StartTimeNotEqualTo = null; public ArrayList StartTimeBetween = null; public ArrayList StartTimeIn = null; public Date EndTime = null; public Date EndTimeGreaterThanOrEqualTo = null; public Date EndTimeGreaterThan = null; public Date EndTimeLessThan = null; public Date EndTimeLessThanOrEqualTo = null; public Date EndTimeNotEqualTo = null; public ArrayList EndTimeBetween = null; public ArrayList EndTimeIn = null; public String Description = null; public String DescriptionStartsWith = null; public String DescriptionEndsWith = null; public String DescriptionContains = null; public String DescriptionLike = null; public ArrayList DescriptionBetween = null; public ArrayList DescriptionIn = null; public BigDecimal BillingTime = null; public BigDecimal BillingTimeGreaterThanOrEqualTo = null; public BigDecimal BillingTimeGreaterThan = null; public BigDecimal BillingTimeLessThan = null; public BigDecimal BillingTimeLessThanOrEqualTo = null; public BigDecimal BillingTimeNotEqualTo = null; public ArrayList BillingTimeBetween = null; public ArrayList BillingTimeIn = null; public BigDecimal Rate = null; public BigDecimal RateGreaterThanOrEqualTo = null; public BigDecimal RateGreaterThan = null; public BigDecimal RateLessThan = null; public BigDecimal RateLessThanOrEqualTo = null; public BigDecimal RateNotEqualTo = null; public ArrayList RateBetween = null; public ArrayList RateIn = null; public Date LastSavedDateTime = null; public Date LastSavedDateTimeGreaterThanOrEqualTo = null; public Date LastSavedDateTimeGreaterThan = null; public Date LastSavedDateTimeLessThan = null; public Date LastSavedDateTimeLessThanOrEqualTo = null; public Date LastSavedDateTimeNotEqualTo = null; public ArrayList LastSavedDateTimeBetween = null; public ArrayList LastSavedDateTimeIn = null; public String LastSavedStaffID = null; public String LastSavedStaffIDStartsWith = null; public String LastSavedStaffIDEndsWith = null; public String LastSavedStaffIDContains = null; public String LastSavedStaffIDLike = null; public ArrayList LastSavedStaffIDBetween = null; public ArrayList LastSavedStaffIDIn = null; public Boolean IsPrepaid = null; public Integer ItemNo = null; public Integer ItemNoGreaterThanOrEqualTo = null; public Integer ItemNoGreaterThan = null; public Integer ItemNoLessThan = null; public Integer ItemNoLessThanOrEqualTo = null; public Integer ItemNoNotEqualTo = null; public ArrayList ItemNoBetween = null; public ArrayList ItemNoIn = null; public Boolean SitesheetReceived = null; public String TX_Main_RecID = null; public String TX_Main_RecIDStartsWith = null; public String TX_Main_RecIDEndsWith = null; public String TX_Main_RecIDContains = null; public String TX_Main_RecIDLike = null; public ArrayList TX_Main_RecIDBetween = null; public ArrayList TX_Main_RecIDIn = null; public BigDecimal Tax = null; public BigDecimal TaxGreaterThanOrEqualTo = null; public BigDecimal TaxGreaterThan = null; public BigDecimal TaxLessThan = null; public BigDecimal TaxLessThanOrEqualTo = null; public BigDecimal TaxNotEqualTo = null; public ArrayList TaxBetween = null; public ArrayList TaxIn = null; public BigDecimal TaxRate = null; public BigDecimal TaxRateGreaterThanOrEqualTo = null; public BigDecimal TaxRateGreaterThan = null; public BigDecimal TaxRateLessThan = null; public BigDecimal TaxRateLessThanOrEqualTo = null; public BigDecimal TaxRateNotEqualTo = null; public ArrayList TaxRateBetween = null; public ArrayList TaxRateIn = null; public BigDecimal LCostIn = null; public BigDecimal LCostInGreaterThanOrEqualTo = null; public BigDecimal LCostInGreaterThan = null; public BigDecimal LCostInLessThan = null; public BigDecimal LCostInLessThanOrEqualTo = null; public BigDecimal LCostInNotEqualTo = null; public ArrayList LCostInBetween = null; public ArrayList LCostInIn = null; public String SM_Activities_RecID = null; public String SM_Activities_RecIDStartsWith = null; public String SM_Activities_RecIDEndsWith = null; public String SM_Activities_RecIDContains = null; public String SM_Activities_RecIDLike = null; public ArrayList SM_Activities_RecIDBetween = null; public ArrayList SM_Activities_RecIDIn = null; public String SO_Lines_RecID = null; public String SO_Lines_RecIDStartsWith = null; public String SO_Lines_RecIDEndsWith = null; public String SO_Lines_RecIDContains = null; public String SO_Lines_RecIDLike = null; public ArrayList SO_Lines_RecIDBetween = null; public ArrayList SO_Lines_RecIDIn = null; public String getRecID() { return RecID; } public SM_LabourQuery setRecID(String value) { this.RecID = value; return this; } public String getRecIDStartsWith() { return RecIDStartsWith; } public SM_LabourQuery setRecIDStartsWith(String value) { this.RecIDStartsWith = value; return this; } public String getRecIDEndsWith() { return RecIDEndsWith; } public SM_LabourQuery setRecIDEndsWith(String value) { this.RecIDEndsWith = value; return this; } public String getRecIDContains() { return RecIDContains; } public SM_LabourQuery setRecIDContains(String value) { this.RecIDContains = value; return this; } public String getRecIDLike() { return RecIDLike; } public SM_LabourQuery setRecIDLike(String value) { this.RecIDLike = value; return this; } public ArrayList getRecIDBetween() { return RecIDBetween; } public SM_LabourQuery setRecIDBetween(ArrayList value) { this.RecIDBetween = value; return this; } public ArrayList getRecIDIn() { return RecIDIn; } public SM_LabourQuery setRecIDIn(ArrayList value) { this.RecIDIn = value; return this; } public String getInMainRecID() { return IN_Main_RecID; } public SM_LabourQuery setInMainRecID(String value) { this.IN_Main_RecID = value; return this; } public String getInMainRecIDStartsWith() { return IN_Main_RecIDStartsWith; } public SM_LabourQuery setInMainRecIDStartsWith(String value) { this.IN_Main_RecIDStartsWith = value; return this; } public String getInMainRecIDEndsWith() { return IN_Main_RecIDEndsWith; } public SM_LabourQuery setInMainRecIDEndsWith(String value) { this.IN_Main_RecIDEndsWith = value; return this; } public String getInMainRecIDContains() { return IN_Main_RecIDContains; } public SM_LabourQuery setInMainRecIDContains(String value) { this.IN_Main_RecIDContains = value; return this; } public String getInMainRecIDLike() { return IN_Main_RecIDLike; } public SM_LabourQuery setInMainRecIDLike(String value) { this.IN_Main_RecIDLike = value; return this; } public ArrayList getInMainRecIDBetween() { return IN_Main_RecIDBetween; } public SM_LabourQuery setInMainRecIDBetween(ArrayList value) { this.IN_Main_RecIDBetween = value; return this; } public ArrayList getInMainRecIDIn() { return IN_Main_RecIDIn; } public SM_LabourQuery setInMainRecIDIn(ArrayList value) { this.IN_Main_RecIDIn = value; return this; } public String getSmTasksRecID() { return SM_Tasks_RecID; } public SM_LabourQuery setSmTasksRecID(String value) { this.SM_Tasks_RecID = value; return this; } public String getSmTasksRecIDStartsWith() { return SM_Tasks_RecIDStartsWith; } public SM_LabourQuery setSmTasksRecIDStartsWith(String value) { this.SM_Tasks_RecIDStartsWith = value; return this; } public String getSmTasksRecIDEndsWith() { return SM_Tasks_RecIDEndsWith; } public SM_LabourQuery setSmTasksRecIDEndsWith(String value) { this.SM_Tasks_RecIDEndsWith = value; return this; } public String getSmTasksRecIDContains() { return SM_Tasks_RecIDContains; } public SM_LabourQuery setSmTasksRecIDContains(String value) { this.SM_Tasks_RecIDContains = value; return this; } public String getSmTasksRecIDLike() { return SM_Tasks_RecIDLike; } public SM_LabourQuery setSmTasksRecIDLike(String value) { this.SM_Tasks_RecIDLike = value; return this; } public ArrayList getSmTasksRecIDBetween() { return SM_Tasks_RecIDBetween; } public SM_LabourQuery setSmTasksRecIDBetween(ArrayList value) { this.SM_Tasks_RecIDBetween = value; return this; } public ArrayList getSmTasksRecIDIn() { return SM_Tasks_RecIDIn; } public SM_LabourQuery setSmTasksRecIDIn(ArrayList value) { this.SM_Tasks_RecIDIn = value; return this; } public String getStaffID() { return StaffID; } public SM_LabourQuery setStaffID(String value) { this.StaffID = value; return this; } public String getStaffIDStartsWith() { return StaffIDStartsWith; } public SM_LabourQuery setStaffIDStartsWith(String value) { this.StaffIDStartsWith = value; return this; } public String getStaffIDEndsWith() { return StaffIDEndsWith; } public SM_LabourQuery setStaffIDEndsWith(String value) { this.StaffIDEndsWith = value; return this; } public String getStaffIDContains() { return StaffIDContains; } public SM_LabourQuery setStaffIDContains(String value) { this.StaffIDContains = value; return this; } public String getStaffIDLike() { return StaffIDLike; } public SM_LabourQuery setStaffIDLike(String value) { this.StaffIDLike = value; return this; } public ArrayList getStaffIDBetween() { return StaffIDBetween; } public SM_LabourQuery setStaffIDBetween(ArrayList value) { this.StaffIDBetween = value; return this; } public ArrayList getStaffIDIn() { return StaffIDIn; } public SM_LabourQuery setStaffIDIn(ArrayList value) { this.StaffIDIn = value; return this; } public Date getStartTime() { return StartTime; } public SM_LabourQuery setStartTime(Date value) { this.StartTime = value; return this; } public Date getStartTimeGreaterThanOrEqualTo() { return StartTimeGreaterThanOrEqualTo; } public SM_LabourQuery setStartTimeGreaterThanOrEqualTo(Date value) { this.StartTimeGreaterThanOrEqualTo = value; return this; } public Date getStartTimeGreaterThan() { return StartTimeGreaterThan; } public SM_LabourQuery setStartTimeGreaterThan(Date value) { this.StartTimeGreaterThan = value; return this; } public Date getStartTimeLessThan() { return StartTimeLessThan; } public SM_LabourQuery setStartTimeLessThan(Date value) { this.StartTimeLessThan = value; return this; } public Date getStartTimeLessThanOrEqualTo() { return StartTimeLessThanOrEqualTo; } public SM_LabourQuery setStartTimeLessThanOrEqualTo(Date value) { this.StartTimeLessThanOrEqualTo = value; return this; } public Date getStartTimeNotEqualTo() { return StartTimeNotEqualTo; } public SM_LabourQuery setStartTimeNotEqualTo(Date value) { this.StartTimeNotEqualTo = value; return this; } public ArrayList getStartTimeBetween() { return StartTimeBetween; } public SM_LabourQuery setStartTimeBetween(ArrayList value) { this.StartTimeBetween = value; return this; } public ArrayList getStartTimeIn() { return StartTimeIn; } public SM_LabourQuery setStartTimeIn(ArrayList value) { this.StartTimeIn = value; return this; } public Date getEndTime() { return EndTime; } public SM_LabourQuery setEndTime(Date value) { this.EndTime = value; return this; } public Date getEndTimeGreaterThanOrEqualTo() { return EndTimeGreaterThanOrEqualTo; } public SM_LabourQuery setEndTimeGreaterThanOrEqualTo(Date value) { this.EndTimeGreaterThanOrEqualTo = value; return this; } public Date getEndTimeGreaterThan() { return EndTimeGreaterThan; } public SM_LabourQuery setEndTimeGreaterThan(Date value) { this.EndTimeGreaterThan = value; return this; } public Date getEndTimeLessThan() { return EndTimeLessThan; } public SM_LabourQuery setEndTimeLessThan(Date value) { this.EndTimeLessThan = value; return this; } public Date getEndTimeLessThanOrEqualTo() { return EndTimeLessThanOrEqualTo; } public SM_LabourQuery setEndTimeLessThanOrEqualTo(Date value) { this.EndTimeLessThanOrEqualTo = value; return this; } public Date getEndTimeNotEqualTo() { return EndTimeNotEqualTo; } public SM_LabourQuery setEndTimeNotEqualTo(Date value) { this.EndTimeNotEqualTo = value; return this; } public ArrayList getEndTimeBetween() { return EndTimeBetween; } public SM_LabourQuery setEndTimeBetween(ArrayList value) { this.EndTimeBetween = value; return this; } public ArrayList getEndTimeIn() { return EndTimeIn; } public SM_LabourQuery setEndTimeIn(ArrayList value) { this.EndTimeIn = value; return this; } public String getDescription() { return Description; } public SM_LabourQuery setDescription(String value) { this.Description = value; return this; } public String getDescriptionStartsWith() { return DescriptionStartsWith; } public SM_LabourQuery setDescriptionStartsWith(String value) { this.DescriptionStartsWith = value; return this; } public String getDescriptionEndsWith() { return DescriptionEndsWith; } public SM_LabourQuery setDescriptionEndsWith(String value) { this.DescriptionEndsWith = value; return this; } public String getDescriptionContains() { return DescriptionContains; } public SM_LabourQuery setDescriptionContains(String value) { this.DescriptionContains = value; return this; } public String getDescriptionLike() { return DescriptionLike; } public SM_LabourQuery setDescriptionLike(String value) { this.DescriptionLike = value; return this; } public ArrayList getDescriptionBetween() { return DescriptionBetween; } public SM_LabourQuery setDescriptionBetween(ArrayList value) { this.DescriptionBetween = value; return this; } public ArrayList getDescriptionIn() { return DescriptionIn; } public SM_LabourQuery setDescriptionIn(ArrayList value) { this.DescriptionIn = value; return this; } public BigDecimal getBillingTime() { return BillingTime; } public SM_LabourQuery setBillingTime(BigDecimal value) { this.BillingTime = value; return this; } public BigDecimal getBillingTimeGreaterThanOrEqualTo() { return BillingTimeGreaterThanOrEqualTo; } public SM_LabourQuery setBillingTimeGreaterThanOrEqualTo(BigDecimal value) { this.BillingTimeGreaterThanOrEqualTo = value; return this; } public BigDecimal getBillingTimeGreaterThan() { return BillingTimeGreaterThan; } public SM_LabourQuery setBillingTimeGreaterThan(BigDecimal value) { this.BillingTimeGreaterThan = value; return this; } public BigDecimal getBillingTimeLessThan() { return BillingTimeLessThan; } public SM_LabourQuery setBillingTimeLessThan(BigDecimal value) { this.BillingTimeLessThan = value; return this; } public BigDecimal getBillingTimeLessThanOrEqualTo() { return BillingTimeLessThanOrEqualTo; } public SM_LabourQuery setBillingTimeLessThanOrEqualTo(BigDecimal value) { this.BillingTimeLessThanOrEqualTo = value; return this; } public BigDecimal getBillingTimeNotEqualTo() { return BillingTimeNotEqualTo; } public SM_LabourQuery setBillingTimeNotEqualTo(BigDecimal value) { this.BillingTimeNotEqualTo = value; return this; } public ArrayList getBillingTimeBetween() { return BillingTimeBetween; } public SM_LabourQuery setBillingTimeBetween(ArrayList value) { this.BillingTimeBetween = value; return this; } public ArrayList getBillingTimeIn() { return BillingTimeIn; } public SM_LabourQuery setBillingTimeIn(ArrayList value) { this.BillingTimeIn = value; return this; } public BigDecimal getRate() { return Rate; } public SM_LabourQuery setRate(BigDecimal value) { this.Rate = value; return this; } public BigDecimal getRateGreaterThanOrEqualTo() { return RateGreaterThanOrEqualTo; } public SM_LabourQuery setRateGreaterThanOrEqualTo(BigDecimal value) { this.RateGreaterThanOrEqualTo = value; return this; } public BigDecimal getRateGreaterThan() { return RateGreaterThan; } public SM_LabourQuery setRateGreaterThan(BigDecimal value) { this.RateGreaterThan = value; return this; } public BigDecimal getRateLessThan() { return RateLessThan; } public SM_LabourQuery setRateLessThan(BigDecimal value) { this.RateLessThan = value; return this; } public BigDecimal getRateLessThanOrEqualTo() { return RateLessThanOrEqualTo; } public SM_LabourQuery setRateLessThanOrEqualTo(BigDecimal value) { this.RateLessThanOrEqualTo = value; return this; } public BigDecimal getRateNotEqualTo() { return RateNotEqualTo; } public SM_LabourQuery setRateNotEqualTo(BigDecimal value) { this.RateNotEqualTo = value; return this; } public ArrayList getRateBetween() { return RateBetween; } public SM_LabourQuery setRateBetween(ArrayList value) { this.RateBetween = value; return this; } public ArrayList getRateIn() { return RateIn; } public SM_LabourQuery setRateIn(ArrayList value) { this.RateIn = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public SM_LabourQuery setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getLastSavedDateTimeGreaterThanOrEqualTo() { return LastSavedDateTimeGreaterThanOrEqualTo; } public SM_LabourQuery setLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.LastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeGreaterThan() { return LastSavedDateTimeGreaterThan; } public SM_LabourQuery setLastSavedDateTimeGreaterThan(Date value) { this.LastSavedDateTimeGreaterThan = value; return this; } public Date getLastSavedDateTimeLessThan() { return LastSavedDateTimeLessThan; } public SM_LabourQuery setLastSavedDateTimeLessThan(Date value) { this.LastSavedDateTimeLessThan = value; return this; } public Date getLastSavedDateTimeLessThanOrEqualTo() { return LastSavedDateTimeLessThanOrEqualTo; } public SM_LabourQuery setLastSavedDateTimeLessThanOrEqualTo(Date value) { this.LastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeNotEqualTo() { return LastSavedDateTimeNotEqualTo; } public SM_LabourQuery setLastSavedDateTimeNotEqualTo(Date value) { this.LastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getLastSavedDateTimeBetween() { return LastSavedDateTimeBetween; } public SM_LabourQuery setLastSavedDateTimeBetween(ArrayList value) { this.LastSavedDateTimeBetween = value; return this; } public ArrayList getLastSavedDateTimeIn() { return LastSavedDateTimeIn; } public SM_LabourQuery setLastSavedDateTimeIn(ArrayList value) { this.LastSavedDateTimeIn = value; return this; } public String getLastSavedStaffID() { return LastSavedStaffID; } public SM_LabourQuery setLastSavedStaffID(String value) { this.LastSavedStaffID = value; return this; } public String getLastSavedStaffIDStartsWith() { return LastSavedStaffIDStartsWith; } public SM_LabourQuery setLastSavedStaffIDStartsWith(String value) { this.LastSavedStaffIDStartsWith = value; return this; } public String getLastSavedStaffIDEndsWith() { return LastSavedStaffIDEndsWith; } public SM_LabourQuery setLastSavedStaffIDEndsWith(String value) { this.LastSavedStaffIDEndsWith = value; return this; } public String getLastSavedStaffIDContains() { return LastSavedStaffIDContains; } public SM_LabourQuery setLastSavedStaffIDContains(String value) { this.LastSavedStaffIDContains = value; return this; } public String getLastSavedStaffIDLike() { return LastSavedStaffIDLike; } public SM_LabourQuery setLastSavedStaffIDLike(String value) { this.LastSavedStaffIDLike = value; return this; } public ArrayList getLastSavedStaffIDBetween() { return LastSavedStaffIDBetween; } public SM_LabourQuery setLastSavedStaffIDBetween(ArrayList value) { this.LastSavedStaffIDBetween = value; return this; } public ArrayList getLastSavedStaffIDIn() { return LastSavedStaffIDIn; } public SM_LabourQuery setLastSavedStaffIDIn(ArrayList value) { this.LastSavedStaffIDIn = value; return this; } public Boolean getIsPrepaid() { return IsPrepaid; } public SM_LabourQuery setIsPrepaid(Boolean value) { this.IsPrepaid = value; return this; } public Integer getItemNo() { return ItemNo; } public SM_LabourQuery setItemNo(Integer value) { this.ItemNo = value; return this; } public Integer getItemNoGreaterThanOrEqualTo() { return ItemNoGreaterThanOrEqualTo; } public SM_LabourQuery setItemNoGreaterThanOrEqualTo(Integer value) { this.ItemNoGreaterThanOrEqualTo = value; return this; } public Integer getItemNoGreaterThan() { return ItemNoGreaterThan; } public SM_LabourQuery setItemNoGreaterThan(Integer value) { this.ItemNoGreaterThan = value; return this; } public Integer getItemNoLessThan() { return ItemNoLessThan; } public SM_LabourQuery setItemNoLessThan(Integer value) { this.ItemNoLessThan = value; return this; } public Integer getItemNoLessThanOrEqualTo() { return ItemNoLessThanOrEqualTo; } public SM_LabourQuery setItemNoLessThanOrEqualTo(Integer value) { this.ItemNoLessThanOrEqualTo = value; return this; } public Integer getItemNoNotEqualTo() { return ItemNoNotEqualTo; } public SM_LabourQuery setItemNoNotEqualTo(Integer value) { this.ItemNoNotEqualTo = value; return this; } public ArrayList getItemNoBetween() { return ItemNoBetween; } public SM_LabourQuery setItemNoBetween(ArrayList value) { this.ItemNoBetween = value; return this; } public ArrayList getItemNoIn() { return ItemNoIn; } public SM_LabourQuery setItemNoIn(ArrayList value) { this.ItemNoIn = value; return this; } public Boolean isSitesheetReceived() { return SitesheetReceived; } public SM_LabourQuery setSitesheetReceived(Boolean value) { this.SitesheetReceived = value; return this; } public String getTxMainRecID() { return TX_Main_RecID; } public SM_LabourQuery setTxMainRecID(String value) { this.TX_Main_RecID = value; return this; } public String getTxMainRecIDStartsWith() { return TX_Main_RecIDStartsWith; } public SM_LabourQuery setTxMainRecIDStartsWith(String value) { this.TX_Main_RecIDStartsWith = value; return this; } public String getTxMainRecIDEndsWith() { return TX_Main_RecIDEndsWith; } public SM_LabourQuery setTxMainRecIDEndsWith(String value) { this.TX_Main_RecIDEndsWith = value; return this; } public String getTxMainRecIDContains() { return TX_Main_RecIDContains; } public SM_LabourQuery setTxMainRecIDContains(String value) { this.TX_Main_RecIDContains = value; return this; } public String getTxMainRecIDLike() { return TX_Main_RecIDLike; } public SM_LabourQuery setTxMainRecIDLike(String value) { this.TX_Main_RecIDLike = value; return this; } public ArrayList getTxMainRecIDBetween() { return TX_Main_RecIDBetween; } public SM_LabourQuery setTxMainRecIDBetween(ArrayList value) { this.TX_Main_RecIDBetween = value; return this; } public ArrayList getTxMainRecIDIn() { return TX_Main_RecIDIn; } public SM_LabourQuery setTxMainRecIDIn(ArrayList value) { this.TX_Main_RecIDIn = value; return this; } public BigDecimal getTax() { return Tax; } public SM_LabourQuery setTax(BigDecimal value) { this.Tax = value; return this; } public BigDecimal getTaxGreaterThanOrEqualTo() { return TaxGreaterThanOrEqualTo; } public SM_LabourQuery setTaxGreaterThanOrEqualTo(BigDecimal value) { this.TaxGreaterThanOrEqualTo = value; return this; } public BigDecimal getTaxGreaterThan() { return TaxGreaterThan; } public SM_LabourQuery setTaxGreaterThan(BigDecimal value) { this.TaxGreaterThan = value; return this; } public BigDecimal getTaxLessThan() { return TaxLessThan; } public SM_LabourQuery setTaxLessThan(BigDecimal value) { this.TaxLessThan = value; return this; } public BigDecimal getTaxLessThanOrEqualTo() { return TaxLessThanOrEqualTo; } public SM_LabourQuery setTaxLessThanOrEqualTo(BigDecimal value) { this.TaxLessThanOrEqualTo = value; return this; } public BigDecimal getTaxNotEqualTo() { return TaxNotEqualTo; } public SM_LabourQuery setTaxNotEqualTo(BigDecimal value) { this.TaxNotEqualTo = value; return this; } public ArrayList getTaxBetween() { return TaxBetween; } public SM_LabourQuery setTaxBetween(ArrayList value) { this.TaxBetween = value; return this; } public ArrayList getTaxIn() { return TaxIn; } public SM_LabourQuery setTaxIn(ArrayList value) { this.TaxIn = value; return this; } public BigDecimal getTaxRate() { return TaxRate; } public SM_LabourQuery setTaxRate(BigDecimal value) { this.TaxRate = value; return this; } public BigDecimal getTaxRateGreaterThanOrEqualTo() { return TaxRateGreaterThanOrEqualTo; } public SM_LabourQuery setTaxRateGreaterThanOrEqualTo(BigDecimal value) { this.TaxRateGreaterThanOrEqualTo = value; return this; } public BigDecimal getTaxRateGreaterThan() { return TaxRateGreaterThan; } public SM_LabourQuery setTaxRateGreaterThan(BigDecimal value) { this.TaxRateGreaterThan = value; return this; } public BigDecimal getTaxRateLessThan() { return TaxRateLessThan; } public SM_LabourQuery setTaxRateLessThan(BigDecimal value) { this.TaxRateLessThan = value; return this; } public BigDecimal getTaxRateLessThanOrEqualTo() { return TaxRateLessThanOrEqualTo; } public SM_LabourQuery setTaxRateLessThanOrEqualTo(BigDecimal value) { this.TaxRateLessThanOrEqualTo = value; return this; } public BigDecimal getTaxRateNotEqualTo() { return TaxRateNotEqualTo; } public SM_LabourQuery setTaxRateNotEqualTo(BigDecimal value) { this.TaxRateNotEqualTo = value; return this; } public ArrayList getTaxRateBetween() { return TaxRateBetween; } public SM_LabourQuery setTaxRateBetween(ArrayList value) { this.TaxRateBetween = value; return this; } public ArrayList getTaxRateIn() { return TaxRateIn; } public SM_LabourQuery setTaxRateIn(ArrayList value) { this.TaxRateIn = value; return this; } public BigDecimal getLCostIn() { return LCostIn; } public SM_LabourQuery setLCostIn(BigDecimal value) { this.LCostIn = value; return this; } public BigDecimal getLCostInGreaterThanOrEqualTo() { return LCostInGreaterThanOrEqualTo; } public SM_LabourQuery setLCostInGreaterThanOrEqualTo(BigDecimal value) { this.LCostInGreaterThanOrEqualTo = value; return this; } public BigDecimal getLCostInGreaterThan() { return LCostInGreaterThan; } public SM_LabourQuery setLCostInGreaterThan(BigDecimal value) { this.LCostInGreaterThan = value; return this; } public BigDecimal getLCostInLessThan() { return LCostInLessThan; } public SM_LabourQuery setLCostInLessThan(BigDecimal value) { this.LCostInLessThan = value; return this; } public BigDecimal getLCostInLessThanOrEqualTo() { return LCostInLessThanOrEqualTo; } public SM_LabourQuery setLCostInLessThanOrEqualTo(BigDecimal value) { this.LCostInLessThanOrEqualTo = value; return this; } public BigDecimal getLCostInNotEqualTo() { return LCostInNotEqualTo; } public SM_LabourQuery setLCostInNotEqualTo(BigDecimal value) { this.LCostInNotEqualTo = value; return this; } public ArrayList getLCostInBetween() { return LCostInBetween; } public SM_LabourQuery setLCostInBetween(ArrayList value) { this.LCostInBetween = value; return this; } public ArrayList getLCostInIn() { return LCostInIn; } public SM_LabourQuery setLCostInIn(ArrayList value) { this.LCostInIn = value; return this; } public String getSmActivitiesRecID() { return SM_Activities_RecID; } public SM_LabourQuery setSmActivitiesRecID(String value) { this.SM_Activities_RecID = value; return this; } public String getSmActivitiesRecIDStartsWith() { return SM_Activities_RecIDStartsWith; } public SM_LabourQuery setSmActivitiesRecIDStartsWith(String value) { this.SM_Activities_RecIDStartsWith = value; return this; } public String getSmActivitiesRecIDEndsWith() { return SM_Activities_RecIDEndsWith; } public SM_LabourQuery setSmActivitiesRecIDEndsWith(String value) { this.SM_Activities_RecIDEndsWith = value; return this; } public String getSmActivitiesRecIDContains() { return SM_Activities_RecIDContains; } public SM_LabourQuery setSmActivitiesRecIDContains(String value) { this.SM_Activities_RecIDContains = value; return this; } public String getSmActivitiesRecIDLike() { return SM_Activities_RecIDLike; } public SM_LabourQuery setSmActivitiesRecIDLike(String value) { this.SM_Activities_RecIDLike = value; return this; } public ArrayList getSmActivitiesRecIDBetween() { return SM_Activities_RecIDBetween; } public SM_LabourQuery setSmActivitiesRecIDBetween(ArrayList value) { this.SM_Activities_RecIDBetween = value; return this; } public ArrayList getSmActivitiesRecIDIn() { return SM_Activities_RecIDIn; } public SM_LabourQuery setSmActivitiesRecIDIn(ArrayList value) { this.SM_Activities_RecIDIn = value; return this; } public String getSoLinesRecID() { return SO_Lines_RecID; } public SM_LabourQuery setSoLinesRecID(String value) { this.SO_Lines_RecID = value; return this; } public String getSoLinesRecIDStartsWith() { return SO_Lines_RecIDStartsWith; } public SM_LabourQuery setSoLinesRecIDStartsWith(String value) { this.SO_Lines_RecIDStartsWith = value; return this; } public String getSoLinesRecIDEndsWith() { return SO_Lines_RecIDEndsWith; } public SM_LabourQuery setSoLinesRecIDEndsWith(String value) { this.SO_Lines_RecIDEndsWith = value; return this; } public String getSoLinesRecIDContains() { return SO_Lines_RecIDContains; } public SM_LabourQuery setSoLinesRecIDContains(String value) { this.SO_Lines_RecIDContains = value; return this; } public String getSoLinesRecIDLike() { return SO_Lines_RecIDLike; } public SM_LabourQuery setSoLinesRecIDLike(String value) { this.SO_Lines_RecIDLike = value; return this; } public ArrayList getSoLinesRecIDBetween() { return SO_Lines_RecIDBetween; } public SM_LabourQuery setSoLinesRecIDBetween(ArrayList value) { this.SO_Lines_RecIDBetween = value; return this; } public ArrayList getSoLinesRecIDIn() { return SO_Lines_RecIDIn; } public SM_LabourQuery setSoLinesRecIDIn(ArrayList value) { this.SO_Lines_RecIDIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class SM_LabourLineCustomFieldsQuery extends QueryDb implements IReturn> { public String FieldID = null; public String FieldIDStartsWith = null; public String FieldIDEndsWith = null; public String FieldIDContains = null; public String FieldIDLike = null; public ArrayList FieldIDBetween = null; public ArrayList FieldIDIn = null; public String SettingName = null; public String SettingNameStartsWith = null; public String SettingNameEndsWith = null; public String SettingNameContains = null; public String SettingNameLike = null; public ArrayList SettingNameBetween = null; public ArrayList SettingNameIn = null; public String SettingDescription = null; public String SettingDescriptionStartsWith = null; public String SettingDescriptionEndsWith = null; public String SettingDescriptionContains = null; public String SettingDescriptionLike = null; public ArrayList SettingDescriptionBetween = null; public ArrayList SettingDescriptionIn = null; public Integer CellType = null; public Integer CellTypeGreaterThanOrEqualTo = null; public Integer CellTypeGreaterThan = null; public Integer CellTypeLessThan = null; public Integer CellTypeLessThanOrEqualTo = null; public Integer CellTypeNotEqualTo = null; public ArrayList CellTypeBetween = null; public ArrayList CellTypeIn = null; public String FieldParameter = null; public String FieldParameterStartsWith = null; public String FieldParameterEndsWith = null; public String FieldParameterContains = null; public String FieldParameterLike = null; public ArrayList FieldParameterBetween = null; public ArrayList FieldParameterIn = null; public UUID SY_Plugin_RecID = null; public ArrayList SY_Plugin_RecIDIn = null; public Date LastSavedDateTime = null; public Date LastSavedDateTimeGreaterThanOrEqualTo = null; public Date LastSavedDateTimeGreaterThan = null; public Date LastSavedDateTimeLessThan = null; public Date LastSavedDateTimeLessThanOrEqualTo = null; public Date LastSavedDateTimeNotEqualTo = null; public ArrayList LastSavedDateTimeBetween = null; public ArrayList LastSavedDateTimeIn = null; public Integer DisplayOrder = null; public Integer DisplayOrderGreaterThanOrEqualTo = null; public Integer DisplayOrderGreaterThan = null; public Integer DisplayOrderLessThan = null; public Integer DisplayOrderLessThanOrEqualTo = null; public Integer DisplayOrderNotEqualTo = null; public ArrayList DisplayOrderBetween = null; public ArrayList DisplayOrderIn = null; public String getFieldID() { return FieldID; } public SM_LabourLineCustomFieldsQuery setFieldID(String value) { this.FieldID = value; return this; } public String getFieldIDStartsWith() { return FieldIDStartsWith; } public SM_LabourLineCustomFieldsQuery setFieldIDStartsWith(String value) { this.FieldIDStartsWith = value; return this; } public String getFieldIDEndsWith() { return FieldIDEndsWith; } public SM_LabourLineCustomFieldsQuery setFieldIDEndsWith(String value) { this.FieldIDEndsWith = value; return this; } public String getFieldIDContains() { return FieldIDContains; } public SM_LabourLineCustomFieldsQuery setFieldIDContains(String value) { this.FieldIDContains = value; return this; } public String getFieldIDLike() { return FieldIDLike; } public SM_LabourLineCustomFieldsQuery setFieldIDLike(String value) { this.FieldIDLike = value; return this; } public ArrayList getFieldIDBetween() { return FieldIDBetween; } public SM_LabourLineCustomFieldsQuery setFieldIDBetween(ArrayList value) { this.FieldIDBetween = value; return this; } public ArrayList getFieldIDIn() { return FieldIDIn; } public SM_LabourLineCustomFieldsQuery setFieldIDIn(ArrayList value) { this.FieldIDIn = value; return this; } public String getSettingName() { return SettingName; } public SM_LabourLineCustomFieldsQuery setSettingName(String value) { this.SettingName = value; return this; } public String getSettingNameStartsWith() { return SettingNameStartsWith; } public SM_LabourLineCustomFieldsQuery setSettingNameStartsWith(String value) { this.SettingNameStartsWith = value; return this; } public String getSettingNameEndsWith() { return SettingNameEndsWith; } public SM_LabourLineCustomFieldsQuery setSettingNameEndsWith(String value) { this.SettingNameEndsWith = value; return this; } public String getSettingNameContains() { return SettingNameContains; } public SM_LabourLineCustomFieldsQuery setSettingNameContains(String value) { this.SettingNameContains = value; return this; } public String getSettingNameLike() { return SettingNameLike; } public SM_LabourLineCustomFieldsQuery setSettingNameLike(String value) { this.SettingNameLike = value; return this; } public ArrayList getSettingNameBetween() { return SettingNameBetween; } public SM_LabourLineCustomFieldsQuery setSettingNameBetween(ArrayList value) { this.SettingNameBetween = value; return this; } public ArrayList getSettingNameIn() { return SettingNameIn; } public SM_LabourLineCustomFieldsQuery setSettingNameIn(ArrayList value) { this.SettingNameIn = value; return this; } public String getSettingDescription() { return SettingDescription; } public SM_LabourLineCustomFieldsQuery setSettingDescription(String value) { this.SettingDescription = value; return this; } public String getSettingDescriptionStartsWith() { return SettingDescriptionStartsWith; } public SM_LabourLineCustomFieldsQuery setSettingDescriptionStartsWith(String value) { this.SettingDescriptionStartsWith = value; return this; } public String getSettingDescriptionEndsWith() { return SettingDescriptionEndsWith; } public SM_LabourLineCustomFieldsQuery setSettingDescriptionEndsWith(String value) { this.SettingDescriptionEndsWith = value; return this; } public String getSettingDescriptionContains() { return SettingDescriptionContains; } public SM_LabourLineCustomFieldsQuery setSettingDescriptionContains(String value) { this.SettingDescriptionContains = value; return this; } public String getSettingDescriptionLike() { return SettingDescriptionLike; } public SM_LabourLineCustomFieldsQuery setSettingDescriptionLike(String value) { this.SettingDescriptionLike = value; return this; } public ArrayList getSettingDescriptionBetween() { return SettingDescriptionBetween; } public SM_LabourLineCustomFieldsQuery setSettingDescriptionBetween(ArrayList value) { this.SettingDescriptionBetween = value; return this; } public ArrayList getSettingDescriptionIn() { return SettingDescriptionIn; } public SM_LabourLineCustomFieldsQuery setSettingDescriptionIn(ArrayList value) { this.SettingDescriptionIn = value; return this; } public Integer getCellType() { return CellType; } public SM_LabourLineCustomFieldsQuery setCellType(Integer value) { this.CellType = value; return this; } public Integer getCellTypeGreaterThanOrEqualTo() { return CellTypeGreaterThanOrEqualTo; } public SM_LabourLineCustomFieldsQuery setCellTypeGreaterThanOrEqualTo(Integer value) { this.CellTypeGreaterThanOrEqualTo = value; return this; } public Integer getCellTypeGreaterThan() { return CellTypeGreaterThan; } public SM_LabourLineCustomFieldsQuery setCellTypeGreaterThan(Integer value) { this.CellTypeGreaterThan = value; return this; } public Integer getCellTypeLessThan() { return CellTypeLessThan; } public SM_LabourLineCustomFieldsQuery setCellTypeLessThan(Integer value) { this.CellTypeLessThan = value; return this; } public Integer getCellTypeLessThanOrEqualTo() { return CellTypeLessThanOrEqualTo; } public SM_LabourLineCustomFieldsQuery setCellTypeLessThanOrEqualTo(Integer value) { this.CellTypeLessThanOrEqualTo = value; return this; } public Integer getCellTypeNotEqualTo() { return CellTypeNotEqualTo; } public SM_LabourLineCustomFieldsQuery setCellTypeNotEqualTo(Integer value) { this.CellTypeNotEqualTo = value; return this; } public ArrayList getCellTypeBetween() { return CellTypeBetween; } public SM_LabourLineCustomFieldsQuery setCellTypeBetween(ArrayList value) { this.CellTypeBetween = value; return this; } public ArrayList getCellTypeIn() { return CellTypeIn; } public SM_LabourLineCustomFieldsQuery setCellTypeIn(ArrayList value) { this.CellTypeIn = value; return this; } public String getFieldParameter() { return FieldParameter; } public SM_LabourLineCustomFieldsQuery setFieldParameter(String value) { this.FieldParameter = value; return this; } public String getFieldParameterStartsWith() { return FieldParameterStartsWith; } public SM_LabourLineCustomFieldsQuery setFieldParameterStartsWith(String value) { this.FieldParameterStartsWith = value; return this; } public String getFieldParameterEndsWith() { return FieldParameterEndsWith; } public SM_LabourLineCustomFieldsQuery setFieldParameterEndsWith(String value) { this.FieldParameterEndsWith = value; return this; } public String getFieldParameterContains() { return FieldParameterContains; } public SM_LabourLineCustomFieldsQuery setFieldParameterContains(String value) { this.FieldParameterContains = value; return this; } public String getFieldParameterLike() { return FieldParameterLike; } public SM_LabourLineCustomFieldsQuery setFieldParameterLike(String value) { this.FieldParameterLike = value; return this; } public ArrayList getFieldParameterBetween() { return FieldParameterBetween; } public SM_LabourLineCustomFieldsQuery setFieldParameterBetween(ArrayList value) { this.FieldParameterBetween = value; return this; } public ArrayList getFieldParameterIn() { return FieldParameterIn; } public SM_LabourLineCustomFieldsQuery setFieldParameterIn(ArrayList value) { this.FieldParameterIn = value; return this; } public UUID getSyPluginRecID() { return SY_Plugin_RecID; } public SM_LabourLineCustomFieldsQuery setSyPluginRecID(UUID value) { this.SY_Plugin_RecID = value; return this; } public ArrayList getSyPluginRecIDIn() { return SY_Plugin_RecIDIn; } public SM_LabourLineCustomFieldsQuery setSyPluginRecIDIn(ArrayList value) { this.SY_Plugin_RecIDIn = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public SM_LabourLineCustomFieldsQuery setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getLastSavedDateTimeGreaterThanOrEqualTo() { return LastSavedDateTimeGreaterThanOrEqualTo; } public SM_LabourLineCustomFieldsQuery setLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.LastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeGreaterThan() { return LastSavedDateTimeGreaterThan; } public SM_LabourLineCustomFieldsQuery setLastSavedDateTimeGreaterThan(Date value) { this.LastSavedDateTimeGreaterThan = value; return this; } public Date getLastSavedDateTimeLessThan() { return LastSavedDateTimeLessThan; } public SM_LabourLineCustomFieldsQuery setLastSavedDateTimeLessThan(Date value) { this.LastSavedDateTimeLessThan = value; return this; } public Date getLastSavedDateTimeLessThanOrEqualTo() { return LastSavedDateTimeLessThanOrEqualTo; } public SM_LabourLineCustomFieldsQuery setLastSavedDateTimeLessThanOrEqualTo(Date value) { this.LastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeNotEqualTo() { return LastSavedDateTimeNotEqualTo; } public SM_LabourLineCustomFieldsQuery setLastSavedDateTimeNotEqualTo(Date value) { this.LastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getLastSavedDateTimeBetween() { return LastSavedDateTimeBetween; } public SM_LabourLineCustomFieldsQuery setLastSavedDateTimeBetween(ArrayList value) { this.LastSavedDateTimeBetween = value; return this; } public ArrayList getLastSavedDateTimeIn() { return LastSavedDateTimeIn; } public SM_LabourLineCustomFieldsQuery setLastSavedDateTimeIn(ArrayList value) { this.LastSavedDateTimeIn = value; return this; } public Integer getDisplayOrder() { return DisplayOrder; } public SM_LabourLineCustomFieldsQuery setDisplayOrder(Integer value) { this.DisplayOrder = value; return this; } public Integer getDisplayOrderGreaterThanOrEqualTo() { return DisplayOrderGreaterThanOrEqualTo; } public SM_LabourLineCustomFieldsQuery setDisplayOrderGreaterThanOrEqualTo(Integer value) { this.DisplayOrderGreaterThanOrEqualTo = value; return this; } public Integer getDisplayOrderGreaterThan() { return DisplayOrderGreaterThan; } public SM_LabourLineCustomFieldsQuery setDisplayOrderGreaterThan(Integer value) { this.DisplayOrderGreaterThan = value; return this; } public Integer getDisplayOrderLessThan() { return DisplayOrderLessThan; } public SM_LabourLineCustomFieldsQuery setDisplayOrderLessThan(Integer value) { this.DisplayOrderLessThan = value; return this; } public Integer getDisplayOrderLessThanOrEqualTo() { return DisplayOrderLessThanOrEqualTo; } public SM_LabourLineCustomFieldsQuery setDisplayOrderLessThanOrEqualTo(Integer value) { this.DisplayOrderLessThanOrEqualTo = value; return this; } public Integer getDisplayOrderNotEqualTo() { return DisplayOrderNotEqualTo; } public SM_LabourLineCustomFieldsQuery setDisplayOrderNotEqualTo(Integer value) { this.DisplayOrderNotEqualTo = value; return this; } public ArrayList getDisplayOrderBetween() { return DisplayOrderBetween; } public SM_LabourLineCustomFieldsQuery setDisplayOrderBetween(ArrayList value) { this.DisplayOrderBetween = value; return this; } public ArrayList getDisplayOrderIn() { return DisplayOrderIn; } public SM_LabourLineCustomFieldsQuery setDisplayOrderIn(ArrayList value) { this.DisplayOrderIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class SM_LabourLineCustomValuesQuery extends QueryDb implements IReturn> { public String RecID = null; public String RecIDStartsWith = null; public String RecIDEndsWith = null; public String RecIDContains = null; public String RecIDLike = null; public ArrayList RecIDBetween = null; public ArrayList RecIDIn = null; public String LabourID = null; public String LabourIDStartsWith = null; public String LabourIDEndsWith = null; public String LabourIDContains = null; public String LabourIDLike = null; public ArrayList LabourIDBetween = null; public ArrayList LabourIDIn = null; public String FieldID = null; public String FieldIDStartsWith = null; public String FieldIDEndsWith = null; public String FieldIDContains = null; public String FieldIDLike = null; public ArrayList FieldIDBetween = null; public ArrayList FieldIDIn = null; public String Contents = null; public String ContentsStartsWith = null; public String ContentsEndsWith = null; public String ContentsContains = null; public String ContentsLike = null; public ArrayList ContentsBetween = null; public ArrayList ContentsIn = null; public Date LastSavedDateTime = null; public Date LastSavedDateTimeGreaterThanOrEqualTo = null; public Date LastSavedDateTimeGreaterThan = null; public Date LastSavedDateTimeLessThan = null; public Date LastSavedDateTimeLessThanOrEqualTo = null; public Date LastSavedDateTimeNotEqualTo = null; public ArrayList LastSavedDateTimeBetween = null; public ArrayList LastSavedDateTimeIn = null; public String getRecID() { return RecID; } public SM_LabourLineCustomValuesQuery setRecID(String value) { this.RecID = value; return this; } public String getRecIDStartsWith() { return RecIDStartsWith; } public SM_LabourLineCustomValuesQuery setRecIDStartsWith(String value) { this.RecIDStartsWith = value; return this; } public String getRecIDEndsWith() { return RecIDEndsWith; } public SM_LabourLineCustomValuesQuery setRecIDEndsWith(String value) { this.RecIDEndsWith = value; return this; } public String getRecIDContains() { return RecIDContains; } public SM_LabourLineCustomValuesQuery setRecIDContains(String value) { this.RecIDContains = value; return this; } public String getRecIDLike() { return RecIDLike; } public SM_LabourLineCustomValuesQuery setRecIDLike(String value) { this.RecIDLike = value; return this; } public ArrayList getRecIDBetween() { return RecIDBetween; } public SM_LabourLineCustomValuesQuery setRecIDBetween(ArrayList value) { this.RecIDBetween = value; return this; } public ArrayList getRecIDIn() { return RecIDIn; } public SM_LabourLineCustomValuesQuery setRecIDIn(ArrayList value) { this.RecIDIn = value; return this; } public String getLabourID() { return LabourID; } public SM_LabourLineCustomValuesQuery setLabourID(String value) { this.LabourID = value; return this; } public String getLabourIDStartsWith() { return LabourIDStartsWith; } public SM_LabourLineCustomValuesQuery setLabourIDStartsWith(String value) { this.LabourIDStartsWith = value; return this; } public String getLabourIDEndsWith() { return LabourIDEndsWith; } public SM_LabourLineCustomValuesQuery setLabourIDEndsWith(String value) { this.LabourIDEndsWith = value; return this; } public String getLabourIDContains() { return LabourIDContains; } public SM_LabourLineCustomValuesQuery setLabourIDContains(String value) { this.LabourIDContains = value; return this; } public String getLabourIDLike() { return LabourIDLike; } public SM_LabourLineCustomValuesQuery setLabourIDLike(String value) { this.LabourIDLike = value; return this; } public ArrayList getLabourIDBetween() { return LabourIDBetween; } public SM_LabourLineCustomValuesQuery setLabourIDBetween(ArrayList value) { this.LabourIDBetween = value; return this; } public ArrayList getLabourIDIn() { return LabourIDIn; } public SM_LabourLineCustomValuesQuery setLabourIDIn(ArrayList value) { this.LabourIDIn = value; return this; } public String getFieldID() { return FieldID; } public SM_LabourLineCustomValuesQuery setFieldID(String value) { this.FieldID = value; return this; } public String getFieldIDStartsWith() { return FieldIDStartsWith; } public SM_LabourLineCustomValuesQuery setFieldIDStartsWith(String value) { this.FieldIDStartsWith = value; return this; } public String getFieldIDEndsWith() { return FieldIDEndsWith; } public SM_LabourLineCustomValuesQuery setFieldIDEndsWith(String value) { this.FieldIDEndsWith = value; return this; } public String getFieldIDContains() { return FieldIDContains; } public SM_LabourLineCustomValuesQuery setFieldIDContains(String value) { this.FieldIDContains = value; return this; } public String getFieldIDLike() { return FieldIDLike; } public SM_LabourLineCustomValuesQuery setFieldIDLike(String value) { this.FieldIDLike = value; return this; } public ArrayList getFieldIDBetween() { return FieldIDBetween; } public SM_LabourLineCustomValuesQuery setFieldIDBetween(ArrayList value) { this.FieldIDBetween = value; return this; } public ArrayList getFieldIDIn() { return FieldIDIn; } public SM_LabourLineCustomValuesQuery setFieldIDIn(ArrayList value) { this.FieldIDIn = value; return this; } public String getContents() { return Contents; } public SM_LabourLineCustomValuesQuery setContents(String value) { this.Contents = value; return this; } public String getContentsStartsWith() { return ContentsStartsWith; } public SM_LabourLineCustomValuesQuery setContentsStartsWith(String value) { this.ContentsStartsWith = value; return this; } public String getContentsEndsWith() { return ContentsEndsWith; } public SM_LabourLineCustomValuesQuery setContentsEndsWith(String value) { this.ContentsEndsWith = value; return this; } public String getContentsContains() { return ContentsContains; } public SM_LabourLineCustomValuesQuery setContentsContains(String value) { this.ContentsContains = value; return this; } public String getContentsLike() { return ContentsLike; } public SM_LabourLineCustomValuesQuery setContentsLike(String value) { this.ContentsLike = value; return this; } public ArrayList getContentsBetween() { return ContentsBetween; } public SM_LabourLineCustomValuesQuery setContentsBetween(ArrayList value) { this.ContentsBetween = value; return this; } public ArrayList getContentsIn() { return ContentsIn; } public SM_LabourLineCustomValuesQuery setContentsIn(ArrayList value) { this.ContentsIn = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public SM_LabourLineCustomValuesQuery setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getLastSavedDateTimeGreaterThanOrEqualTo() { return LastSavedDateTimeGreaterThanOrEqualTo; } public SM_LabourLineCustomValuesQuery setLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.LastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeGreaterThan() { return LastSavedDateTimeGreaterThan; } public SM_LabourLineCustomValuesQuery setLastSavedDateTimeGreaterThan(Date value) { this.LastSavedDateTimeGreaterThan = value; return this; } public Date getLastSavedDateTimeLessThan() { return LastSavedDateTimeLessThan; } public SM_LabourLineCustomValuesQuery setLastSavedDateTimeLessThan(Date value) { this.LastSavedDateTimeLessThan = value; return this; } public Date getLastSavedDateTimeLessThanOrEqualTo() { return LastSavedDateTimeLessThanOrEqualTo; } public SM_LabourLineCustomValuesQuery setLastSavedDateTimeLessThanOrEqualTo(Date value) { this.LastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeNotEqualTo() { return LastSavedDateTimeNotEqualTo; } public SM_LabourLineCustomValuesQuery setLastSavedDateTimeNotEqualTo(Date value) { this.LastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getLastSavedDateTimeBetween() { return LastSavedDateTimeBetween; } public SM_LabourLineCustomValuesQuery setLastSavedDateTimeBetween(ArrayList value) { this.LastSavedDateTimeBetween = value; return this; } public ArrayList getLastSavedDateTimeIn() { return LastSavedDateTimeIn; } public SM_LabourLineCustomValuesQuery setLastSavedDateTimeIn(ArrayList value) { this.LastSavedDateTimeIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class SM_LabourLineDetailsQuery extends QueryDb implements IReturn> { public String RecID = null; public String RecIDStartsWith = null; public String RecIDEndsWith = null; public String RecIDContains = null; public String RecIDLike = null; public ArrayList RecIDBetween = null; public ArrayList RecIDIn = null; public BigDecimal Quantity = null; public BigDecimal QuantityGreaterThanOrEqualTo = null; public BigDecimal QuantityGreaterThan = null; public BigDecimal QuantityLessThan = null; public BigDecimal QuantityLessThanOrEqualTo = null; public BigDecimal QuantityNotEqualTo = null; public ArrayList QuantityBetween = null; public ArrayList QuantityIn = null; public String SM_PrepaidLabourPacks_RecID = null; public String SM_PrepaidLabourPacks_RecIDStartsWith = null; public String SM_PrepaidLabourPacks_RecIDEndsWith = null; public String SM_PrepaidLabourPacks_RecIDContains = null; public String SM_PrepaidLabourPacks_RecIDLike = null; public ArrayList SM_PrepaidLabourPacks_RecIDBetween = null; public ArrayList SM_PrepaidLabourPacks_RecIDIn = null; public String SM_Labour_RecID = null; public String SM_Labour_RecIDStartsWith = null; public String SM_Labour_RecIDEndsWith = null; public String SM_Labour_RecIDContains = null; public String SM_Labour_RecIDLike = null; public ArrayList SM_Labour_RecIDBetween = null; public ArrayList SM_Labour_RecIDIn = null; public String getRecID() { return RecID; } public SM_LabourLineDetailsQuery setRecID(String value) { this.RecID = value; return this; } public String getRecIDStartsWith() { return RecIDStartsWith; } public SM_LabourLineDetailsQuery setRecIDStartsWith(String value) { this.RecIDStartsWith = value; return this; } public String getRecIDEndsWith() { return RecIDEndsWith; } public SM_LabourLineDetailsQuery setRecIDEndsWith(String value) { this.RecIDEndsWith = value; return this; } public String getRecIDContains() { return RecIDContains; } public SM_LabourLineDetailsQuery setRecIDContains(String value) { this.RecIDContains = value; return this; } public String getRecIDLike() { return RecIDLike; } public SM_LabourLineDetailsQuery setRecIDLike(String value) { this.RecIDLike = value; return this; } public ArrayList getRecIDBetween() { return RecIDBetween; } public SM_LabourLineDetailsQuery setRecIDBetween(ArrayList value) { this.RecIDBetween = value; return this; } public ArrayList getRecIDIn() { return RecIDIn; } public SM_LabourLineDetailsQuery setRecIDIn(ArrayList value) { this.RecIDIn = value; return this; } public BigDecimal getQuantity() { return Quantity; } public SM_LabourLineDetailsQuery setQuantity(BigDecimal value) { this.Quantity = value; return this; } public BigDecimal getQuantityGreaterThanOrEqualTo() { return QuantityGreaterThanOrEqualTo; } public SM_LabourLineDetailsQuery setQuantityGreaterThanOrEqualTo(BigDecimal value) { this.QuantityGreaterThanOrEqualTo = value; return this; } public BigDecimal getQuantityGreaterThan() { return QuantityGreaterThan; } public SM_LabourLineDetailsQuery setQuantityGreaterThan(BigDecimal value) { this.QuantityGreaterThan = value; return this; } public BigDecimal getQuantityLessThan() { return QuantityLessThan; } public SM_LabourLineDetailsQuery setQuantityLessThan(BigDecimal value) { this.QuantityLessThan = value; return this; } public BigDecimal getQuantityLessThanOrEqualTo() { return QuantityLessThanOrEqualTo; } public SM_LabourLineDetailsQuery setQuantityLessThanOrEqualTo(BigDecimal value) { this.QuantityLessThanOrEqualTo = value; return this; } public BigDecimal getQuantityNotEqualTo() { return QuantityNotEqualTo; } public SM_LabourLineDetailsQuery setQuantityNotEqualTo(BigDecimal value) { this.QuantityNotEqualTo = value; return this; } public ArrayList getQuantityBetween() { return QuantityBetween; } public SM_LabourLineDetailsQuery setQuantityBetween(ArrayList value) { this.QuantityBetween = value; return this; } public ArrayList getQuantityIn() { return QuantityIn; } public SM_LabourLineDetailsQuery setQuantityIn(ArrayList value) { this.QuantityIn = value; return this; } public String getSmPrepaidLabourPacksRecID() { return SM_PrepaidLabourPacks_RecID; } public SM_LabourLineDetailsQuery setSmPrepaidLabourPacksRecID(String value) { this.SM_PrepaidLabourPacks_RecID = value; return this; } public String getSmPrepaidLabourPacksRecIDStartsWith() { return SM_PrepaidLabourPacks_RecIDStartsWith; } public SM_LabourLineDetailsQuery setSmPrepaidLabourPacksRecIDStartsWith(String value) { this.SM_PrepaidLabourPacks_RecIDStartsWith = value; return this; } public String getSmPrepaidLabourPacksRecIDEndsWith() { return SM_PrepaidLabourPacks_RecIDEndsWith; } public SM_LabourLineDetailsQuery setSmPrepaidLabourPacksRecIDEndsWith(String value) { this.SM_PrepaidLabourPacks_RecIDEndsWith = value; return this; } public String getSmPrepaidLabourPacksRecIDContains() { return SM_PrepaidLabourPacks_RecIDContains; } public SM_LabourLineDetailsQuery setSmPrepaidLabourPacksRecIDContains(String value) { this.SM_PrepaidLabourPacks_RecIDContains = value; return this; } public String getSmPrepaidLabourPacksRecIDLike() { return SM_PrepaidLabourPacks_RecIDLike; } public SM_LabourLineDetailsQuery setSmPrepaidLabourPacksRecIDLike(String value) { this.SM_PrepaidLabourPacks_RecIDLike = value; return this; } public ArrayList getSmPrepaidLabourPacksRecIDBetween() { return SM_PrepaidLabourPacks_RecIDBetween; } public SM_LabourLineDetailsQuery setSmPrepaidLabourPacksRecIDBetween(ArrayList value) { this.SM_PrepaidLabourPacks_RecIDBetween = value; return this; } public ArrayList getSmPrepaidLabourPacksRecIDIn() { return SM_PrepaidLabourPacks_RecIDIn; } public SM_LabourLineDetailsQuery setSmPrepaidLabourPacksRecIDIn(ArrayList value) { this.SM_PrepaidLabourPacks_RecIDIn = value; return this; } public String getSmLabourRecID() { return SM_Labour_RecID; } public SM_LabourLineDetailsQuery setSmLabourRecID(String value) { this.SM_Labour_RecID = value; return this; } public String getSmLabourRecIDStartsWith() { return SM_Labour_RecIDStartsWith; } public SM_LabourLineDetailsQuery setSmLabourRecIDStartsWith(String value) { this.SM_Labour_RecIDStartsWith = value; return this; } public String getSmLabourRecIDEndsWith() { return SM_Labour_RecIDEndsWith; } public SM_LabourLineDetailsQuery setSmLabourRecIDEndsWith(String value) { this.SM_Labour_RecIDEndsWith = value; return this; } public String getSmLabourRecIDContains() { return SM_Labour_RecIDContains; } public SM_LabourLineDetailsQuery setSmLabourRecIDContains(String value) { this.SM_Labour_RecIDContains = value; return this; } public String getSmLabourRecIDLike() { return SM_Labour_RecIDLike; } public SM_LabourLineDetailsQuery setSmLabourRecIDLike(String value) { this.SM_Labour_RecIDLike = value; return this; } public ArrayList getSmLabourRecIDBetween() { return SM_Labour_RecIDBetween; } public SM_LabourLineDetailsQuery setSmLabourRecIDBetween(ArrayList value) { this.SM_Labour_RecIDBetween = value; return this; } public ArrayList getSmLabourRecIDIn() { return SM_Labour_RecIDIn; } public SM_LabourLineDetailsQuery setSmLabourRecIDIn(ArrayList value) { this.SM_Labour_RecIDIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class SM_NotesQuery extends QueryDb implements IReturn> { public String RecID = null; public String RecIDStartsWith = null; public String RecIDEndsWith = null; public String RecIDContains = null; public String RecIDLike = null; public ArrayList RecIDBetween = null; public ArrayList RecIDIn = null; public String SM_Tasks_RecID = null; public String SM_Tasks_RecIDStartsWith = null; public String SM_Tasks_RecIDEndsWith = null; public String SM_Tasks_RecIDContains = null; public String SM_Tasks_RecIDLike = null; public ArrayList SM_Tasks_RecIDBetween = null; public ArrayList SM_Tasks_RecIDIn = null; public String NoteTypeID = null; public String NoteTypeIDStartsWith = null; public String NoteTypeIDEndsWith = null; public String NoteTypeIDContains = null; public String NoteTypeIDLike = null; public ArrayList NoteTypeIDBetween = null; public ArrayList NoteTypeIDIn = null; public Date LastSavedDateTime = null; public Date LastSavedDateTimeGreaterThanOrEqualTo = null; public Date LastSavedDateTimeGreaterThan = null; public Date LastSavedDateTimeLessThan = null; public Date LastSavedDateTimeLessThanOrEqualTo = null; public Date LastSavedDateTimeNotEqualTo = null; public ArrayList LastSavedDateTimeBetween = null; public ArrayList LastSavedDateTimeIn = null; public String LastSavedByStaffID = null; public String LastSavedByStaffIDStartsWith = null; public String LastSavedByStaffIDEndsWith = null; public String LastSavedByStaffIDContains = null; public String LastSavedByStaffIDLike = null; public ArrayList LastSavedByStaffIDBetween = null; public ArrayList LastSavedByStaffIDIn = null; public String NoteText = null; public String NoteTextStartsWith = null; public String NoteTextEndsWith = null; public String NoteTextContains = null; public String NoteTextLike = null; public ArrayList NoteTextBetween = null; public ArrayList NoteTextIn = null; public Integer ItemNo = null; public Integer ItemNoGreaterThanOrEqualTo = null; public Integer ItemNoGreaterThan = null; public Integer ItemNoLessThan = null; public Integer ItemNoLessThanOrEqualTo = null; public Integer ItemNoNotEqualTo = null; public ArrayList ItemNoBetween = null; public ArrayList ItemNoIn = null; public String getRecID() { return RecID; } public SM_NotesQuery setRecID(String value) { this.RecID = value; return this; } public String getRecIDStartsWith() { return RecIDStartsWith; } public SM_NotesQuery setRecIDStartsWith(String value) { this.RecIDStartsWith = value; return this; } public String getRecIDEndsWith() { return RecIDEndsWith; } public SM_NotesQuery setRecIDEndsWith(String value) { this.RecIDEndsWith = value; return this; } public String getRecIDContains() { return RecIDContains; } public SM_NotesQuery setRecIDContains(String value) { this.RecIDContains = value; return this; } public String getRecIDLike() { return RecIDLike; } public SM_NotesQuery setRecIDLike(String value) { this.RecIDLike = value; return this; } public ArrayList getRecIDBetween() { return RecIDBetween; } public SM_NotesQuery setRecIDBetween(ArrayList value) { this.RecIDBetween = value; return this; } public ArrayList getRecIDIn() { return RecIDIn; } public SM_NotesQuery setRecIDIn(ArrayList value) { this.RecIDIn = value; return this; } public String getSmTasksRecID() { return SM_Tasks_RecID; } public SM_NotesQuery setSmTasksRecID(String value) { this.SM_Tasks_RecID = value; return this; } public String getSmTasksRecIDStartsWith() { return SM_Tasks_RecIDStartsWith; } public SM_NotesQuery setSmTasksRecIDStartsWith(String value) { this.SM_Tasks_RecIDStartsWith = value; return this; } public String getSmTasksRecIDEndsWith() { return SM_Tasks_RecIDEndsWith; } public SM_NotesQuery setSmTasksRecIDEndsWith(String value) { this.SM_Tasks_RecIDEndsWith = value; return this; } public String getSmTasksRecIDContains() { return SM_Tasks_RecIDContains; } public SM_NotesQuery setSmTasksRecIDContains(String value) { this.SM_Tasks_RecIDContains = value; return this; } public String getSmTasksRecIDLike() { return SM_Tasks_RecIDLike; } public SM_NotesQuery setSmTasksRecIDLike(String value) { this.SM_Tasks_RecIDLike = value; return this; } public ArrayList getSmTasksRecIDBetween() { return SM_Tasks_RecIDBetween; } public SM_NotesQuery setSmTasksRecIDBetween(ArrayList value) { this.SM_Tasks_RecIDBetween = value; return this; } public ArrayList getSmTasksRecIDIn() { return SM_Tasks_RecIDIn; } public SM_NotesQuery setSmTasksRecIDIn(ArrayList value) { this.SM_Tasks_RecIDIn = value; return this; } public String getNoteTypeID() { return NoteTypeID; } public SM_NotesQuery setNoteTypeID(String value) { this.NoteTypeID = value; return this; } public String getNoteTypeIDStartsWith() { return NoteTypeIDStartsWith; } public SM_NotesQuery setNoteTypeIDStartsWith(String value) { this.NoteTypeIDStartsWith = value; return this; } public String getNoteTypeIDEndsWith() { return NoteTypeIDEndsWith; } public SM_NotesQuery setNoteTypeIDEndsWith(String value) { this.NoteTypeIDEndsWith = value; return this; } public String getNoteTypeIDContains() { return NoteTypeIDContains; } public SM_NotesQuery setNoteTypeIDContains(String value) { this.NoteTypeIDContains = value; return this; } public String getNoteTypeIDLike() { return NoteTypeIDLike; } public SM_NotesQuery setNoteTypeIDLike(String value) { this.NoteTypeIDLike = value; return this; } public ArrayList getNoteTypeIDBetween() { return NoteTypeIDBetween; } public SM_NotesQuery setNoteTypeIDBetween(ArrayList value) { this.NoteTypeIDBetween = value; return this; } public ArrayList getNoteTypeIDIn() { return NoteTypeIDIn; } public SM_NotesQuery setNoteTypeIDIn(ArrayList value) { this.NoteTypeIDIn = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public SM_NotesQuery setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getLastSavedDateTimeGreaterThanOrEqualTo() { return LastSavedDateTimeGreaterThanOrEqualTo; } public SM_NotesQuery setLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.LastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeGreaterThan() { return LastSavedDateTimeGreaterThan; } public SM_NotesQuery setLastSavedDateTimeGreaterThan(Date value) { this.LastSavedDateTimeGreaterThan = value; return this; } public Date getLastSavedDateTimeLessThan() { return LastSavedDateTimeLessThan; } public SM_NotesQuery setLastSavedDateTimeLessThan(Date value) { this.LastSavedDateTimeLessThan = value; return this; } public Date getLastSavedDateTimeLessThanOrEqualTo() { return LastSavedDateTimeLessThanOrEqualTo; } public SM_NotesQuery setLastSavedDateTimeLessThanOrEqualTo(Date value) { this.LastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeNotEqualTo() { return LastSavedDateTimeNotEqualTo; } public SM_NotesQuery setLastSavedDateTimeNotEqualTo(Date value) { this.LastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getLastSavedDateTimeBetween() { return LastSavedDateTimeBetween; } public SM_NotesQuery setLastSavedDateTimeBetween(ArrayList value) { this.LastSavedDateTimeBetween = value; return this; } public ArrayList getLastSavedDateTimeIn() { return LastSavedDateTimeIn; } public SM_NotesQuery setLastSavedDateTimeIn(ArrayList value) { this.LastSavedDateTimeIn = value; return this; } public String getLastSavedByStaffID() { return LastSavedByStaffID; } public SM_NotesQuery setLastSavedByStaffID(String value) { this.LastSavedByStaffID = value; return this; } public String getLastSavedByStaffIDStartsWith() { return LastSavedByStaffIDStartsWith; } public SM_NotesQuery setLastSavedByStaffIDStartsWith(String value) { this.LastSavedByStaffIDStartsWith = value; return this; } public String getLastSavedByStaffIDEndsWith() { return LastSavedByStaffIDEndsWith; } public SM_NotesQuery setLastSavedByStaffIDEndsWith(String value) { this.LastSavedByStaffIDEndsWith = value; return this; } public String getLastSavedByStaffIDContains() { return LastSavedByStaffIDContains; } public SM_NotesQuery setLastSavedByStaffIDContains(String value) { this.LastSavedByStaffIDContains = value; return this; } public String getLastSavedByStaffIDLike() { return LastSavedByStaffIDLike; } public SM_NotesQuery setLastSavedByStaffIDLike(String value) { this.LastSavedByStaffIDLike = value; return this; } public ArrayList getLastSavedByStaffIDBetween() { return LastSavedByStaffIDBetween; } public SM_NotesQuery setLastSavedByStaffIDBetween(ArrayList value) { this.LastSavedByStaffIDBetween = value; return this; } public ArrayList getLastSavedByStaffIDIn() { return LastSavedByStaffIDIn; } public SM_NotesQuery setLastSavedByStaffIDIn(ArrayList value) { this.LastSavedByStaffIDIn = value; return this; } public String getNoteText() { return NoteText; } public SM_NotesQuery setNoteText(String value) { this.NoteText = value; return this; } public String getNoteTextStartsWith() { return NoteTextStartsWith; } public SM_NotesQuery setNoteTextStartsWith(String value) { this.NoteTextStartsWith = value; return this; } public String getNoteTextEndsWith() { return NoteTextEndsWith; } public SM_NotesQuery setNoteTextEndsWith(String value) { this.NoteTextEndsWith = value; return this; } public String getNoteTextContains() { return NoteTextContains; } public SM_NotesQuery setNoteTextContains(String value) { this.NoteTextContains = value; return this; } public String getNoteTextLike() { return NoteTextLike; } public SM_NotesQuery setNoteTextLike(String value) { this.NoteTextLike = value; return this; } public ArrayList getNoteTextBetween() { return NoteTextBetween; } public SM_NotesQuery setNoteTextBetween(ArrayList value) { this.NoteTextBetween = value; return this; } public ArrayList getNoteTextIn() { return NoteTextIn; } public SM_NotesQuery setNoteTextIn(ArrayList value) { this.NoteTextIn = value; return this; } public Integer getItemNo() { return ItemNo; } public SM_NotesQuery setItemNo(Integer value) { this.ItemNo = value; return this; } public Integer getItemNoGreaterThanOrEqualTo() { return ItemNoGreaterThanOrEqualTo; } public SM_NotesQuery setItemNoGreaterThanOrEqualTo(Integer value) { this.ItemNoGreaterThanOrEqualTo = value; return this; } public Integer getItemNoGreaterThan() { return ItemNoGreaterThan; } public SM_NotesQuery setItemNoGreaterThan(Integer value) { this.ItemNoGreaterThan = value; return this; } public Integer getItemNoLessThan() { return ItemNoLessThan; } public SM_NotesQuery setItemNoLessThan(Integer value) { this.ItemNoLessThan = value; return this; } public Integer getItemNoLessThanOrEqualTo() { return ItemNoLessThanOrEqualTo; } public SM_NotesQuery setItemNoLessThanOrEqualTo(Integer value) { this.ItemNoLessThanOrEqualTo = value; return this; } public Integer getItemNoNotEqualTo() { return ItemNoNotEqualTo; } public SM_NotesQuery setItemNoNotEqualTo(Integer value) { this.ItemNoNotEqualTo = value; return this; } public ArrayList getItemNoBetween() { return ItemNoBetween; } public SM_NotesQuery setItemNoBetween(ArrayList value) { this.ItemNoBetween = value; return this; } public ArrayList getItemNoIn() { return ItemNoIn; } public SM_NotesQuery setItemNoIn(ArrayList value) { this.ItemNoIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class SM_PartLineCustomFieldsQuery extends QueryDb implements IReturn> { public String FieldID = null; public String FieldIDStartsWith = null; public String FieldIDEndsWith = null; public String FieldIDContains = null; public String FieldIDLike = null; public ArrayList FieldIDBetween = null; public ArrayList FieldIDIn = null; public String SettingName = null; public String SettingNameStartsWith = null; public String SettingNameEndsWith = null; public String SettingNameContains = null; public String SettingNameLike = null; public ArrayList SettingNameBetween = null; public ArrayList SettingNameIn = null; public String SettingDescription = null; public String SettingDescriptionStartsWith = null; public String SettingDescriptionEndsWith = null; public String SettingDescriptionContains = null; public String SettingDescriptionLike = null; public ArrayList SettingDescriptionBetween = null; public ArrayList SettingDescriptionIn = null; public Integer CellType = null; public Integer CellTypeGreaterThanOrEqualTo = null; public Integer CellTypeGreaterThan = null; public Integer CellTypeLessThan = null; public Integer CellTypeLessThanOrEqualTo = null; public Integer CellTypeNotEqualTo = null; public ArrayList CellTypeBetween = null; public ArrayList CellTypeIn = null; public String FieldParameter = null; public String FieldParameterStartsWith = null; public String FieldParameterEndsWith = null; public String FieldParameterContains = null; public String FieldParameterLike = null; public ArrayList FieldParameterBetween = null; public ArrayList FieldParameterIn = null; public UUID SY_Plugin_RecID = null; public ArrayList SY_Plugin_RecIDIn = null; public Date LastSavedDateTime = null; public Date LastSavedDateTimeGreaterThanOrEqualTo = null; public Date LastSavedDateTimeGreaterThan = null; public Date LastSavedDateTimeLessThan = null; public Date LastSavedDateTimeLessThanOrEqualTo = null; public Date LastSavedDateTimeNotEqualTo = null; public ArrayList LastSavedDateTimeBetween = null; public ArrayList LastSavedDateTimeIn = null; public Integer DisplayOrder = null; public Integer DisplayOrderGreaterThanOrEqualTo = null; public Integer DisplayOrderGreaterThan = null; public Integer DisplayOrderLessThan = null; public Integer DisplayOrderLessThanOrEqualTo = null; public Integer DisplayOrderNotEqualTo = null; public ArrayList DisplayOrderBetween = null; public ArrayList DisplayOrderIn = null; public String getFieldID() { return FieldID; } public SM_PartLineCustomFieldsQuery setFieldID(String value) { this.FieldID = value; return this; } public String getFieldIDStartsWith() { return FieldIDStartsWith; } public SM_PartLineCustomFieldsQuery setFieldIDStartsWith(String value) { this.FieldIDStartsWith = value; return this; } public String getFieldIDEndsWith() { return FieldIDEndsWith; } public SM_PartLineCustomFieldsQuery setFieldIDEndsWith(String value) { this.FieldIDEndsWith = value; return this; } public String getFieldIDContains() { return FieldIDContains; } public SM_PartLineCustomFieldsQuery setFieldIDContains(String value) { this.FieldIDContains = value; return this; } public String getFieldIDLike() { return FieldIDLike; } public SM_PartLineCustomFieldsQuery setFieldIDLike(String value) { this.FieldIDLike = value; return this; } public ArrayList getFieldIDBetween() { return FieldIDBetween; } public SM_PartLineCustomFieldsQuery setFieldIDBetween(ArrayList value) { this.FieldIDBetween = value; return this; } public ArrayList getFieldIDIn() { return FieldIDIn; } public SM_PartLineCustomFieldsQuery setFieldIDIn(ArrayList value) { this.FieldIDIn = value; return this; } public String getSettingName() { return SettingName; } public SM_PartLineCustomFieldsQuery setSettingName(String value) { this.SettingName = value; return this; } public String getSettingNameStartsWith() { return SettingNameStartsWith; } public SM_PartLineCustomFieldsQuery setSettingNameStartsWith(String value) { this.SettingNameStartsWith = value; return this; } public String getSettingNameEndsWith() { return SettingNameEndsWith; } public SM_PartLineCustomFieldsQuery setSettingNameEndsWith(String value) { this.SettingNameEndsWith = value; return this; } public String getSettingNameContains() { return SettingNameContains; } public SM_PartLineCustomFieldsQuery setSettingNameContains(String value) { this.SettingNameContains = value; return this; } public String getSettingNameLike() { return SettingNameLike; } public SM_PartLineCustomFieldsQuery setSettingNameLike(String value) { this.SettingNameLike = value; return this; } public ArrayList getSettingNameBetween() { return SettingNameBetween; } public SM_PartLineCustomFieldsQuery setSettingNameBetween(ArrayList value) { this.SettingNameBetween = value; return this; } public ArrayList getSettingNameIn() { return SettingNameIn; } public SM_PartLineCustomFieldsQuery setSettingNameIn(ArrayList value) { this.SettingNameIn = value; return this; } public String getSettingDescription() { return SettingDescription; } public SM_PartLineCustomFieldsQuery setSettingDescription(String value) { this.SettingDescription = value; return this; } public String getSettingDescriptionStartsWith() { return SettingDescriptionStartsWith; } public SM_PartLineCustomFieldsQuery setSettingDescriptionStartsWith(String value) { this.SettingDescriptionStartsWith = value; return this; } public String getSettingDescriptionEndsWith() { return SettingDescriptionEndsWith; } public SM_PartLineCustomFieldsQuery setSettingDescriptionEndsWith(String value) { this.SettingDescriptionEndsWith = value; return this; } public String getSettingDescriptionContains() { return SettingDescriptionContains; } public SM_PartLineCustomFieldsQuery setSettingDescriptionContains(String value) { this.SettingDescriptionContains = value; return this; } public String getSettingDescriptionLike() { return SettingDescriptionLike; } public SM_PartLineCustomFieldsQuery setSettingDescriptionLike(String value) { this.SettingDescriptionLike = value; return this; } public ArrayList getSettingDescriptionBetween() { return SettingDescriptionBetween; } public SM_PartLineCustomFieldsQuery setSettingDescriptionBetween(ArrayList value) { this.SettingDescriptionBetween = value; return this; } public ArrayList getSettingDescriptionIn() { return SettingDescriptionIn; } public SM_PartLineCustomFieldsQuery setSettingDescriptionIn(ArrayList value) { this.SettingDescriptionIn = value; return this; } public Integer getCellType() { return CellType; } public SM_PartLineCustomFieldsQuery setCellType(Integer value) { this.CellType = value; return this; } public Integer getCellTypeGreaterThanOrEqualTo() { return CellTypeGreaterThanOrEqualTo; } public SM_PartLineCustomFieldsQuery setCellTypeGreaterThanOrEqualTo(Integer value) { this.CellTypeGreaterThanOrEqualTo = value; return this; } public Integer getCellTypeGreaterThan() { return CellTypeGreaterThan; } public SM_PartLineCustomFieldsQuery setCellTypeGreaterThan(Integer value) { this.CellTypeGreaterThan = value; return this; } public Integer getCellTypeLessThan() { return CellTypeLessThan; } public SM_PartLineCustomFieldsQuery setCellTypeLessThan(Integer value) { this.CellTypeLessThan = value; return this; } public Integer getCellTypeLessThanOrEqualTo() { return CellTypeLessThanOrEqualTo; } public SM_PartLineCustomFieldsQuery setCellTypeLessThanOrEqualTo(Integer value) { this.CellTypeLessThanOrEqualTo = value; return this; } public Integer getCellTypeNotEqualTo() { return CellTypeNotEqualTo; } public SM_PartLineCustomFieldsQuery setCellTypeNotEqualTo(Integer value) { this.CellTypeNotEqualTo = value; return this; } public ArrayList getCellTypeBetween() { return CellTypeBetween; } public SM_PartLineCustomFieldsQuery setCellTypeBetween(ArrayList value) { this.CellTypeBetween = value; return this; } public ArrayList getCellTypeIn() { return CellTypeIn; } public SM_PartLineCustomFieldsQuery setCellTypeIn(ArrayList value) { this.CellTypeIn = value; return this; } public String getFieldParameter() { return FieldParameter; } public SM_PartLineCustomFieldsQuery setFieldParameter(String value) { this.FieldParameter = value; return this; } public String getFieldParameterStartsWith() { return FieldParameterStartsWith; } public SM_PartLineCustomFieldsQuery setFieldParameterStartsWith(String value) { this.FieldParameterStartsWith = value; return this; } public String getFieldParameterEndsWith() { return FieldParameterEndsWith; } public SM_PartLineCustomFieldsQuery setFieldParameterEndsWith(String value) { this.FieldParameterEndsWith = value; return this; } public String getFieldParameterContains() { return FieldParameterContains; } public SM_PartLineCustomFieldsQuery setFieldParameterContains(String value) { this.FieldParameterContains = value; return this; } public String getFieldParameterLike() { return FieldParameterLike; } public SM_PartLineCustomFieldsQuery setFieldParameterLike(String value) { this.FieldParameterLike = value; return this; } public ArrayList getFieldParameterBetween() { return FieldParameterBetween; } public SM_PartLineCustomFieldsQuery setFieldParameterBetween(ArrayList value) { this.FieldParameterBetween = value; return this; } public ArrayList getFieldParameterIn() { return FieldParameterIn; } public SM_PartLineCustomFieldsQuery setFieldParameterIn(ArrayList value) { this.FieldParameterIn = value; return this; } public UUID getSyPluginRecID() { return SY_Plugin_RecID; } public SM_PartLineCustomFieldsQuery setSyPluginRecID(UUID value) { this.SY_Plugin_RecID = value; return this; } public ArrayList getSyPluginRecIDIn() { return SY_Plugin_RecIDIn; } public SM_PartLineCustomFieldsQuery setSyPluginRecIDIn(ArrayList value) { this.SY_Plugin_RecIDIn = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public SM_PartLineCustomFieldsQuery setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getLastSavedDateTimeGreaterThanOrEqualTo() { return LastSavedDateTimeGreaterThanOrEqualTo; } public SM_PartLineCustomFieldsQuery setLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.LastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeGreaterThan() { return LastSavedDateTimeGreaterThan; } public SM_PartLineCustomFieldsQuery setLastSavedDateTimeGreaterThan(Date value) { this.LastSavedDateTimeGreaterThan = value; return this; } public Date getLastSavedDateTimeLessThan() { return LastSavedDateTimeLessThan; } public SM_PartLineCustomFieldsQuery setLastSavedDateTimeLessThan(Date value) { this.LastSavedDateTimeLessThan = value; return this; } public Date getLastSavedDateTimeLessThanOrEqualTo() { return LastSavedDateTimeLessThanOrEqualTo; } public SM_PartLineCustomFieldsQuery setLastSavedDateTimeLessThanOrEqualTo(Date value) { this.LastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeNotEqualTo() { return LastSavedDateTimeNotEqualTo; } public SM_PartLineCustomFieldsQuery setLastSavedDateTimeNotEqualTo(Date value) { this.LastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getLastSavedDateTimeBetween() { return LastSavedDateTimeBetween; } public SM_PartLineCustomFieldsQuery setLastSavedDateTimeBetween(ArrayList value) { this.LastSavedDateTimeBetween = value; return this; } public ArrayList getLastSavedDateTimeIn() { return LastSavedDateTimeIn; } public SM_PartLineCustomFieldsQuery setLastSavedDateTimeIn(ArrayList value) { this.LastSavedDateTimeIn = value; return this; } public Integer getDisplayOrder() { return DisplayOrder; } public SM_PartLineCustomFieldsQuery setDisplayOrder(Integer value) { this.DisplayOrder = value; return this; } public Integer getDisplayOrderGreaterThanOrEqualTo() { return DisplayOrderGreaterThanOrEqualTo; } public SM_PartLineCustomFieldsQuery setDisplayOrderGreaterThanOrEqualTo(Integer value) { this.DisplayOrderGreaterThanOrEqualTo = value; return this; } public Integer getDisplayOrderGreaterThan() { return DisplayOrderGreaterThan; } public SM_PartLineCustomFieldsQuery setDisplayOrderGreaterThan(Integer value) { this.DisplayOrderGreaterThan = value; return this; } public Integer getDisplayOrderLessThan() { return DisplayOrderLessThan; } public SM_PartLineCustomFieldsQuery setDisplayOrderLessThan(Integer value) { this.DisplayOrderLessThan = value; return this; } public Integer getDisplayOrderLessThanOrEqualTo() { return DisplayOrderLessThanOrEqualTo; } public SM_PartLineCustomFieldsQuery setDisplayOrderLessThanOrEqualTo(Integer value) { this.DisplayOrderLessThanOrEqualTo = value; return this; } public Integer getDisplayOrderNotEqualTo() { return DisplayOrderNotEqualTo; } public SM_PartLineCustomFieldsQuery setDisplayOrderNotEqualTo(Integer value) { this.DisplayOrderNotEqualTo = value; return this; } public ArrayList getDisplayOrderBetween() { return DisplayOrderBetween; } public SM_PartLineCustomFieldsQuery setDisplayOrderBetween(ArrayList value) { this.DisplayOrderBetween = value; return this; } public ArrayList getDisplayOrderIn() { return DisplayOrderIn; } public SM_PartLineCustomFieldsQuery setDisplayOrderIn(ArrayList value) { this.DisplayOrderIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class SM_PartLineCustomValuesQuery extends QueryDb implements IReturn> { public String RecID = null; public String RecIDStartsWith = null; public String RecIDEndsWith = null; public String RecIDContains = null; public String RecIDLike = null; public ArrayList RecIDBetween = null; public ArrayList RecIDIn = null; public String PartID = null; public String PartIDStartsWith = null; public String PartIDEndsWith = null; public String PartIDContains = null; public String PartIDLike = null; public ArrayList PartIDBetween = null; public ArrayList PartIDIn = null; public String FieldID = null; public String FieldIDStartsWith = null; public String FieldIDEndsWith = null; public String FieldIDContains = null; public String FieldIDLike = null; public ArrayList FieldIDBetween = null; public ArrayList FieldIDIn = null; public String Contents = null; public String ContentsStartsWith = null; public String ContentsEndsWith = null; public String ContentsContains = null; public String ContentsLike = null; public ArrayList ContentsBetween = null; public ArrayList ContentsIn = null; public Date LastSavedDateTime = null; public Date LastSavedDateTimeGreaterThanOrEqualTo = null; public Date LastSavedDateTimeGreaterThan = null; public Date LastSavedDateTimeLessThan = null; public Date LastSavedDateTimeLessThanOrEqualTo = null; public Date LastSavedDateTimeNotEqualTo = null; public ArrayList LastSavedDateTimeBetween = null; public ArrayList LastSavedDateTimeIn = null; public String getRecID() { return RecID; } public SM_PartLineCustomValuesQuery setRecID(String value) { this.RecID = value; return this; } public String getRecIDStartsWith() { return RecIDStartsWith; } public SM_PartLineCustomValuesQuery setRecIDStartsWith(String value) { this.RecIDStartsWith = value; return this; } public String getRecIDEndsWith() { return RecIDEndsWith; } public SM_PartLineCustomValuesQuery setRecIDEndsWith(String value) { this.RecIDEndsWith = value; return this; } public String getRecIDContains() { return RecIDContains; } public SM_PartLineCustomValuesQuery setRecIDContains(String value) { this.RecIDContains = value; return this; } public String getRecIDLike() { return RecIDLike; } public SM_PartLineCustomValuesQuery setRecIDLike(String value) { this.RecIDLike = value; return this; } public ArrayList getRecIDBetween() { return RecIDBetween; } public SM_PartLineCustomValuesQuery setRecIDBetween(ArrayList value) { this.RecIDBetween = value; return this; } public ArrayList getRecIDIn() { return RecIDIn; } public SM_PartLineCustomValuesQuery setRecIDIn(ArrayList value) { this.RecIDIn = value; return this; } public String getPartID() { return PartID; } public SM_PartLineCustomValuesQuery setPartID(String value) { this.PartID = value; return this; } public String getPartIDStartsWith() { return PartIDStartsWith; } public SM_PartLineCustomValuesQuery setPartIDStartsWith(String value) { this.PartIDStartsWith = value; return this; } public String getPartIDEndsWith() { return PartIDEndsWith; } public SM_PartLineCustomValuesQuery setPartIDEndsWith(String value) { this.PartIDEndsWith = value; return this; } public String getPartIDContains() { return PartIDContains; } public SM_PartLineCustomValuesQuery setPartIDContains(String value) { this.PartIDContains = value; return this; } public String getPartIDLike() { return PartIDLike; } public SM_PartLineCustomValuesQuery setPartIDLike(String value) { this.PartIDLike = value; return this; } public ArrayList getPartIDBetween() { return PartIDBetween; } public SM_PartLineCustomValuesQuery setPartIDBetween(ArrayList value) { this.PartIDBetween = value; return this; } public ArrayList getPartIDIn() { return PartIDIn; } public SM_PartLineCustomValuesQuery setPartIDIn(ArrayList value) { this.PartIDIn = value; return this; } public String getFieldID() { return FieldID; } public SM_PartLineCustomValuesQuery setFieldID(String value) { this.FieldID = value; return this; } public String getFieldIDStartsWith() { return FieldIDStartsWith; } public SM_PartLineCustomValuesQuery setFieldIDStartsWith(String value) { this.FieldIDStartsWith = value; return this; } public String getFieldIDEndsWith() { return FieldIDEndsWith; } public SM_PartLineCustomValuesQuery setFieldIDEndsWith(String value) { this.FieldIDEndsWith = value; return this; } public String getFieldIDContains() { return FieldIDContains; } public SM_PartLineCustomValuesQuery setFieldIDContains(String value) { this.FieldIDContains = value; return this; } public String getFieldIDLike() { return FieldIDLike; } public SM_PartLineCustomValuesQuery setFieldIDLike(String value) { this.FieldIDLike = value; return this; } public ArrayList getFieldIDBetween() { return FieldIDBetween; } public SM_PartLineCustomValuesQuery setFieldIDBetween(ArrayList value) { this.FieldIDBetween = value; return this; } public ArrayList getFieldIDIn() { return FieldIDIn; } public SM_PartLineCustomValuesQuery setFieldIDIn(ArrayList value) { this.FieldIDIn = value; return this; } public String getContents() { return Contents; } public SM_PartLineCustomValuesQuery setContents(String value) { this.Contents = value; return this; } public String getContentsStartsWith() { return ContentsStartsWith; } public SM_PartLineCustomValuesQuery setContentsStartsWith(String value) { this.ContentsStartsWith = value; return this; } public String getContentsEndsWith() { return ContentsEndsWith; } public SM_PartLineCustomValuesQuery setContentsEndsWith(String value) { this.ContentsEndsWith = value; return this; } public String getContentsContains() { return ContentsContains; } public SM_PartLineCustomValuesQuery setContentsContains(String value) { this.ContentsContains = value; return this; } public String getContentsLike() { return ContentsLike; } public SM_PartLineCustomValuesQuery setContentsLike(String value) { this.ContentsLike = value; return this; } public ArrayList getContentsBetween() { return ContentsBetween; } public SM_PartLineCustomValuesQuery setContentsBetween(ArrayList value) { this.ContentsBetween = value; return this; } public ArrayList getContentsIn() { return ContentsIn; } public SM_PartLineCustomValuesQuery setContentsIn(ArrayList value) { this.ContentsIn = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public SM_PartLineCustomValuesQuery setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getLastSavedDateTimeGreaterThanOrEqualTo() { return LastSavedDateTimeGreaterThanOrEqualTo; } public SM_PartLineCustomValuesQuery setLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.LastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeGreaterThan() { return LastSavedDateTimeGreaterThan; } public SM_PartLineCustomValuesQuery setLastSavedDateTimeGreaterThan(Date value) { this.LastSavedDateTimeGreaterThan = value; return this; } public Date getLastSavedDateTimeLessThan() { return LastSavedDateTimeLessThan; } public SM_PartLineCustomValuesQuery setLastSavedDateTimeLessThan(Date value) { this.LastSavedDateTimeLessThan = value; return this; } public Date getLastSavedDateTimeLessThanOrEqualTo() { return LastSavedDateTimeLessThanOrEqualTo; } public SM_PartLineCustomValuesQuery setLastSavedDateTimeLessThanOrEqualTo(Date value) { this.LastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeNotEqualTo() { return LastSavedDateTimeNotEqualTo; } public SM_PartLineCustomValuesQuery setLastSavedDateTimeNotEqualTo(Date value) { this.LastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getLastSavedDateTimeBetween() { return LastSavedDateTimeBetween; } public SM_PartLineCustomValuesQuery setLastSavedDateTimeBetween(ArrayList value) { this.LastSavedDateTimeBetween = value; return this; } public ArrayList getLastSavedDateTimeIn() { return LastSavedDateTimeIn; } public SM_PartLineCustomValuesQuery setLastSavedDateTimeIn(ArrayList value) { this.LastSavedDateTimeIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class SM_PartLineDetailsQuery extends QueryDb implements IReturn> { public String RecID = null; public String RecIDStartsWith = null; public String RecIDEndsWith = null; public String RecIDContains = null; public String RecIDLike = null; public ArrayList RecIDBetween = null; public ArrayList RecIDIn = null; public String SM_Parts_RecID = null; public String SM_Parts_RecIDStartsWith = null; public String SM_Parts_RecIDEndsWith = null; public String SM_Parts_RecIDContains = null; public String SM_Parts_RecIDLike = null; public ArrayList SM_Parts_RecIDBetween = null; public ArrayList SM_Parts_RecIDIn = null; public String LinkID = null; public String LinkIDStartsWith = null; public String LinkIDEndsWith = null; public String LinkIDContains = null; public String LinkIDLike = null; public ArrayList LinkIDBetween = null; public ArrayList LinkIDIn = null; public BigDecimal Quantity = null; public BigDecimal QuantityGreaterThanOrEqualTo = null; public BigDecimal QuantityGreaterThan = null; public BigDecimal QuantityLessThan = null; public BigDecimal QuantityLessThanOrEqualTo = null; public BigDecimal QuantityNotEqualTo = null; public ArrayList QuantityBetween = null; public ArrayList QuantityIn = null; public Short Mode = null; public Short ModeGreaterThanOrEqualTo = null; public Short ModeGreaterThan = null; public Short ModeLessThan = null; public Short ModeLessThanOrEqualTo = null; public Short ModeNotEqualTo = null; public ArrayList ModeBetween = null; public ArrayList ModeIn = null; public BigDecimal Cost = null; public BigDecimal CostGreaterThanOrEqualTo = null; public BigDecimal CostGreaterThan = null; public BigDecimal CostLessThan = null; public BigDecimal CostLessThanOrEqualTo = null; public BigDecimal CostNotEqualTo = null; public ArrayList CostBetween = null; public ArrayList CostIn = null; public BigDecimal TaxPaid = null; public BigDecimal TaxPaidGreaterThanOrEqualTo = null; public BigDecimal TaxPaidGreaterThan = null; public BigDecimal TaxPaidLessThan = null; public BigDecimal TaxPaidLessThanOrEqualTo = null; public BigDecimal TaxPaidNotEqualTo = null; public ArrayList TaxPaidBetween = null; public ArrayList TaxPaidIn = null; public String SerialNo = null; public String SerialNoStartsWith = null; public String SerialNoEndsWith = null; public String SerialNoContains = null; public String SerialNoLike = null; public ArrayList SerialNoBetween = null; public ArrayList SerialNoIn = null; public Date ExpiryDate = null; public Date ExpiryDateGreaterThanOrEqualTo = null; public Date ExpiryDateGreaterThan = null; public Date ExpiryDateLessThan = null; public Date ExpiryDateLessThanOrEqualTo = null; public Date ExpiryDateNotEqualTo = null; public ArrayList ExpiryDateBetween = null; public ArrayList ExpiryDateIn = null; public Date LastSavedDateTime = null; public Date LastSavedDateTimeGreaterThanOrEqualTo = null; public Date LastSavedDateTimeGreaterThan = null; public Date LastSavedDateTimeLessThan = null; public Date LastSavedDateTimeLessThanOrEqualTo = null; public Date LastSavedDateTimeNotEqualTo = null; public ArrayList LastSavedDateTimeBetween = null; public ArrayList LastSavedDateTimeIn = null; public String getRecID() { return RecID; } public SM_PartLineDetailsQuery setRecID(String value) { this.RecID = value; return this; } public String getRecIDStartsWith() { return RecIDStartsWith; } public SM_PartLineDetailsQuery setRecIDStartsWith(String value) { this.RecIDStartsWith = value; return this; } public String getRecIDEndsWith() { return RecIDEndsWith; } public SM_PartLineDetailsQuery setRecIDEndsWith(String value) { this.RecIDEndsWith = value; return this; } public String getRecIDContains() { return RecIDContains; } public SM_PartLineDetailsQuery setRecIDContains(String value) { this.RecIDContains = value; return this; } public String getRecIDLike() { return RecIDLike; } public SM_PartLineDetailsQuery setRecIDLike(String value) { this.RecIDLike = value; return this; } public ArrayList getRecIDBetween() { return RecIDBetween; } public SM_PartLineDetailsQuery setRecIDBetween(ArrayList value) { this.RecIDBetween = value; return this; } public ArrayList getRecIDIn() { return RecIDIn; } public SM_PartLineDetailsQuery setRecIDIn(ArrayList value) { this.RecIDIn = value; return this; } public String getSmPartsRecID() { return SM_Parts_RecID; } public SM_PartLineDetailsQuery setSmPartsRecID(String value) { this.SM_Parts_RecID = value; return this; } public String getSmPartsRecIDStartsWith() { return SM_Parts_RecIDStartsWith; } public SM_PartLineDetailsQuery setSmPartsRecIDStartsWith(String value) { this.SM_Parts_RecIDStartsWith = value; return this; } public String getSmPartsRecIDEndsWith() { return SM_Parts_RecIDEndsWith; } public SM_PartLineDetailsQuery setSmPartsRecIDEndsWith(String value) { this.SM_Parts_RecIDEndsWith = value; return this; } public String getSmPartsRecIDContains() { return SM_Parts_RecIDContains; } public SM_PartLineDetailsQuery setSmPartsRecIDContains(String value) { this.SM_Parts_RecIDContains = value; return this; } public String getSmPartsRecIDLike() { return SM_Parts_RecIDLike; } public SM_PartLineDetailsQuery setSmPartsRecIDLike(String value) { this.SM_Parts_RecIDLike = value; return this; } public ArrayList getSmPartsRecIDBetween() { return SM_Parts_RecIDBetween; } public SM_PartLineDetailsQuery setSmPartsRecIDBetween(ArrayList value) { this.SM_Parts_RecIDBetween = value; return this; } public ArrayList getSmPartsRecIDIn() { return SM_Parts_RecIDIn; } public SM_PartLineDetailsQuery setSmPartsRecIDIn(ArrayList value) { this.SM_Parts_RecIDIn = value; return this; } public String getLinkID() { return LinkID; } public SM_PartLineDetailsQuery setLinkID(String value) { this.LinkID = value; return this; } public String getLinkIDStartsWith() { return LinkIDStartsWith; } public SM_PartLineDetailsQuery setLinkIDStartsWith(String value) { this.LinkIDStartsWith = value; return this; } public String getLinkIDEndsWith() { return LinkIDEndsWith; } public SM_PartLineDetailsQuery setLinkIDEndsWith(String value) { this.LinkIDEndsWith = value; return this; } public String getLinkIDContains() { return LinkIDContains; } public SM_PartLineDetailsQuery setLinkIDContains(String value) { this.LinkIDContains = value; return this; } public String getLinkIDLike() { return LinkIDLike; } public SM_PartLineDetailsQuery setLinkIDLike(String value) { this.LinkIDLike = value; return this; } public ArrayList getLinkIDBetween() { return LinkIDBetween; } public SM_PartLineDetailsQuery setLinkIDBetween(ArrayList value) { this.LinkIDBetween = value; return this; } public ArrayList getLinkIDIn() { return LinkIDIn; } public SM_PartLineDetailsQuery setLinkIDIn(ArrayList value) { this.LinkIDIn = value; return this; } public BigDecimal getQuantity() { return Quantity; } public SM_PartLineDetailsQuery setQuantity(BigDecimal value) { this.Quantity = value; return this; } public BigDecimal getQuantityGreaterThanOrEqualTo() { return QuantityGreaterThanOrEqualTo; } public SM_PartLineDetailsQuery setQuantityGreaterThanOrEqualTo(BigDecimal value) { this.QuantityGreaterThanOrEqualTo = value; return this; } public BigDecimal getQuantityGreaterThan() { return QuantityGreaterThan; } public SM_PartLineDetailsQuery setQuantityGreaterThan(BigDecimal value) { this.QuantityGreaterThan = value; return this; } public BigDecimal getQuantityLessThan() { return QuantityLessThan; } public SM_PartLineDetailsQuery setQuantityLessThan(BigDecimal value) { this.QuantityLessThan = value; return this; } public BigDecimal getQuantityLessThanOrEqualTo() { return QuantityLessThanOrEqualTo; } public SM_PartLineDetailsQuery setQuantityLessThanOrEqualTo(BigDecimal value) { this.QuantityLessThanOrEqualTo = value; return this; } public BigDecimal getQuantityNotEqualTo() { return QuantityNotEqualTo; } public SM_PartLineDetailsQuery setQuantityNotEqualTo(BigDecimal value) { this.QuantityNotEqualTo = value; return this; } public ArrayList getQuantityBetween() { return QuantityBetween; } public SM_PartLineDetailsQuery setQuantityBetween(ArrayList value) { this.QuantityBetween = value; return this; } public ArrayList getQuantityIn() { return QuantityIn; } public SM_PartLineDetailsQuery setQuantityIn(ArrayList value) { this.QuantityIn = value; return this; } public Short getMode() { return Mode; } public SM_PartLineDetailsQuery setMode(Short value) { this.Mode = value; return this; } public Short getModeGreaterThanOrEqualTo() { return ModeGreaterThanOrEqualTo; } public SM_PartLineDetailsQuery setModeGreaterThanOrEqualTo(Short value) { this.ModeGreaterThanOrEqualTo = value; return this; } public Short getModeGreaterThan() { return ModeGreaterThan; } public SM_PartLineDetailsQuery setModeGreaterThan(Short value) { this.ModeGreaterThan = value; return this; } public Short getModeLessThan() { return ModeLessThan; } public SM_PartLineDetailsQuery setModeLessThan(Short value) { this.ModeLessThan = value; return this; } public Short getModeLessThanOrEqualTo() { return ModeLessThanOrEqualTo; } public SM_PartLineDetailsQuery setModeLessThanOrEqualTo(Short value) { this.ModeLessThanOrEqualTo = value; return this; } public Short getModeNotEqualTo() { return ModeNotEqualTo; } public SM_PartLineDetailsQuery setModeNotEqualTo(Short value) { this.ModeNotEqualTo = value; return this; } public ArrayList getModeBetween() { return ModeBetween; } public SM_PartLineDetailsQuery setModeBetween(ArrayList value) { this.ModeBetween = value; return this; } public ArrayList getModeIn() { return ModeIn; } public SM_PartLineDetailsQuery setModeIn(ArrayList value) { this.ModeIn = value; return this; } public BigDecimal getCost() { return Cost; } public SM_PartLineDetailsQuery setCost(BigDecimal value) { this.Cost = value; return this; } public BigDecimal getCostGreaterThanOrEqualTo() { return CostGreaterThanOrEqualTo; } public SM_PartLineDetailsQuery setCostGreaterThanOrEqualTo(BigDecimal value) { this.CostGreaterThanOrEqualTo = value; return this; } public BigDecimal getCostGreaterThan() { return CostGreaterThan; } public SM_PartLineDetailsQuery setCostGreaterThan(BigDecimal value) { this.CostGreaterThan = value; return this; } public BigDecimal getCostLessThan() { return CostLessThan; } public SM_PartLineDetailsQuery setCostLessThan(BigDecimal value) { this.CostLessThan = value; return this; } public BigDecimal getCostLessThanOrEqualTo() { return CostLessThanOrEqualTo; } public SM_PartLineDetailsQuery setCostLessThanOrEqualTo(BigDecimal value) { this.CostLessThanOrEqualTo = value; return this; } public BigDecimal getCostNotEqualTo() { return CostNotEqualTo; } public SM_PartLineDetailsQuery setCostNotEqualTo(BigDecimal value) { this.CostNotEqualTo = value; return this; } public ArrayList getCostBetween() { return CostBetween; } public SM_PartLineDetailsQuery setCostBetween(ArrayList value) { this.CostBetween = value; return this; } public ArrayList getCostIn() { return CostIn; } public SM_PartLineDetailsQuery setCostIn(ArrayList value) { this.CostIn = value; return this; } public BigDecimal getTaxPaid() { return TaxPaid; } public SM_PartLineDetailsQuery setTaxPaid(BigDecimal value) { this.TaxPaid = value; return this; } public BigDecimal getTaxPaidGreaterThanOrEqualTo() { return TaxPaidGreaterThanOrEqualTo; } public SM_PartLineDetailsQuery setTaxPaidGreaterThanOrEqualTo(BigDecimal value) { this.TaxPaidGreaterThanOrEqualTo = value; return this; } public BigDecimal getTaxPaidGreaterThan() { return TaxPaidGreaterThan; } public SM_PartLineDetailsQuery setTaxPaidGreaterThan(BigDecimal value) { this.TaxPaidGreaterThan = value; return this; } public BigDecimal getTaxPaidLessThan() { return TaxPaidLessThan; } public SM_PartLineDetailsQuery setTaxPaidLessThan(BigDecimal value) { this.TaxPaidLessThan = value; return this; } public BigDecimal getTaxPaidLessThanOrEqualTo() { return TaxPaidLessThanOrEqualTo; } public SM_PartLineDetailsQuery setTaxPaidLessThanOrEqualTo(BigDecimal value) { this.TaxPaidLessThanOrEqualTo = value; return this; } public BigDecimal getTaxPaidNotEqualTo() { return TaxPaidNotEqualTo; } public SM_PartLineDetailsQuery setTaxPaidNotEqualTo(BigDecimal value) { this.TaxPaidNotEqualTo = value; return this; } public ArrayList getTaxPaidBetween() { return TaxPaidBetween; } public SM_PartLineDetailsQuery setTaxPaidBetween(ArrayList value) { this.TaxPaidBetween = value; return this; } public ArrayList getTaxPaidIn() { return TaxPaidIn; } public SM_PartLineDetailsQuery setTaxPaidIn(ArrayList value) { this.TaxPaidIn = value; return this; } public String getSerialNo() { return SerialNo; } public SM_PartLineDetailsQuery setSerialNo(String value) { this.SerialNo = value; return this; } public String getSerialNoStartsWith() { return SerialNoStartsWith; } public SM_PartLineDetailsQuery setSerialNoStartsWith(String value) { this.SerialNoStartsWith = value; return this; } public String getSerialNoEndsWith() { return SerialNoEndsWith; } public SM_PartLineDetailsQuery setSerialNoEndsWith(String value) { this.SerialNoEndsWith = value; return this; } public String getSerialNoContains() { return SerialNoContains; } public SM_PartLineDetailsQuery setSerialNoContains(String value) { this.SerialNoContains = value; return this; } public String getSerialNoLike() { return SerialNoLike; } public SM_PartLineDetailsQuery setSerialNoLike(String value) { this.SerialNoLike = value; return this; } public ArrayList getSerialNoBetween() { return SerialNoBetween; } public SM_PartLineDetailsQuery setSerialNoBetween(ArrayList value) { this.SerialNoBetween = value; return this; } public ArrayList getSerialNoIn() { return SerialNoIn; } public SM_PartLineDetailsQuery setSerialNoIn(ArrayList value) { this.SerialNoIn = value; return this; } public Date getExpiryDate() { return ExpiryDate; } public SM_PartLineDetailsQuery setExpiryDate(Date value) { this.ExpiryDate = value; return this; } public Date getExpiryDateGreaterThanOrEqualTo() { return ExpiryDateGreaterThanOrEqualTo; } public SM_PartLineDetailsQuery setExpiryDateGreaterThanOrEqualTo(Date value) { this.ExpiryDateGreaterThanOrEqualTo = value; return this; } public Date getExpiryDateGreaterThan() { return ExpiryDateGreaterThan; } public SM_PartLineDetailsQuery setExpiryDateGreaterThan(Date value) { this.ExpiryDateGreaterThan = value; return this; } public Date getExpiryDateLessThan() { return ExpiryDateLessThan; } public SM_PartLineDetailsQuery setExpiryDateLessThan(Date value) { this.ExpiryDateLessThan = value; return this; } public Date getExpiryDateLessThanOrEqualTo() { return ExpiryDateLessThanOrEqualTo; } public SM_PartLineDetailsQuery setExpiryDateLessThanOrEqualTo(Date value) { this.ExpiryDateLessThanOrEqualTo = value; return this; } public Date getExpiryDateNotEqualTo() { return ExpiryDateNotEqualTo; } public SM_PartLineDetailsQuery setExpiryDateNotEqualTo(Date value) { this.ExpiryDateNotEqualTo = value; return this; } public ArrayList getExpiryDateBetween() { return ExpiryDateBetween; } public SM_PartLineDetailsQuery setExpiryDateBetween(ArrayList value) { this.ExpiryDateBetween = value; return this; } public ArrayList getExpiryDateIn() { return ExpiryDateIn; } public SM_PartLineDetailsQuery setExpiryDateIn(ArrayList value) { this.ExpiryDateIn = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public SM_PartLineDetailsQuery setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getLastSavedDateTimeGreaterThanOrEqualTo() { return LastSavedDateTimeGreaterThanOrEqualTo; } public SM_PartLineDetailsQuery setLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.LastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeGreaterThan() { return LastSavedDateTimeGreaterThan; } public SM_PartLineDetailsQuery setLastSavedDateTimeGreaterThan(Date value) { this.LastSavedDateTimeGreaterThan = value; return this; } public Date getLastSavedDateTimeLessThan() { return LastSavedDateTimeLessThan; } public SM_PartLineDetailsQuery setLastSavedDateTimeLessThan(Date value) { this.LastSavedDateTimeLessThan = value; return this; } public Date getLastSavedDateTimeLessThanOrEqualTo() { return LastSavedDateTimeLessThanOrEqualTo; } public SM_PartLineDetailsQuery setLastSavedDateTimeLessThanOrEqualTo(Date value) { this.LastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeNotEqualTo() { return LastSavedDateTimeNotEqualTo; } public SM_PartLineDetailsQuery setLastSavedDateTimeNotEqualTo(Date value) { this.LastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getLastSavedDateTimeBetween() { return LastSavedDateTimeBetween; } public SM_PartLineDetailsQuery setLastSavedDateTimeBetween(ArrayList value) { this.LastSavedDateTimeBetween = value; return this; } public ArrayList getLastSavedDateTimeIn() { return LastSavedDateTimeIn; } public SM_PartLineDetailsQuery setLastSavedDateTimeIn(ArrayList value) { this.LastSavedDateTimeIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class SM_PartsQuery extends QueryDb implements IReturn> { public String RecID = null; public String RecIDStartsWith = null; public String RecIDEndsWith = null; public String RecIDContains = null; public String RecIDLike = null; public ArrayList RecIDBetween = null; public ArrayList RecIDIn = null; public String SM_Tasks_RecID = null; public String SM_Tasks_RecIDStartsWith = null; public String SM_Tasks_RecIDEndsWith = null; public String SM_Tasks_RecIDContains = null; public String SM_Tasks_RecIDLike = null; public ArrayList SM_Tasks_RecIDBetween = null; public ArrayList SM_Tasks_RecIDIn = null; public String IN_Main_RecID = null; public String IN_Main_RecIDStartsWith = null; public String IN_Main_RecIDEndsWith = null; public String IN_Main_RecIDContains = null; public String IN_Main_RecIDLike = null; public ArrayList IN_Main_RecIDBetween = null; public ArrayList IN_Main_RecIDIn = null; public String PartNo = null; public String PartNoStartsWith = null; public String PartNoEndsWith = null; public String PartNoContains = null; public String PartNoLike = null; public ArrayList PartNoBetween = null; public ArrayList PartNoIn = null; public String Description = null; public String DescriptionStartsWith = null; public String DescriptionEndsWith = null; public String DescriptionContains = null; public String DescriptionLike = null; public ArrayList DescriptionBetween = null; public ArrayList DescriptionIn = null; public BigDecimal Quantity = null; public BigDecimal QuantityGreaterThanOrEqualTo = null; public BigDecimal QuantityGreaterThan = null; public BigDecimal QuantityLessThan = null; public BigDecimal QuantityLessThanOrEqualTo = null; public BigDecimal QuantityNotEqualTo = null; public ArrayList QuantityBetween = null; public ArrayList QuantityIn = null; public BigDecimal ItemPrice = null; public BigDecimal ItemPriceGreaterThanOrEqualTo = null; public BigDecimal ItemPriceGreaterThan = null; public BigDecimal ItemPriceLessThan = null; public BigDecimal ItemPriceLessThanOrEqualTo = null; public BigDecimal ItemPriceNotEqualTo = null; public ArrayList ItemPriceBetween = null; public ArrayList ItemPriceIn = null; public BigDecimal Tax = null; public BigDecimal TaxGreaterThanOrEqualTo = null; public BigDecimal TaxGreaterThan = null; public BigDecimal TaxLessThan = null; public BigDecimal TaxLessThanOrEqualTo = null; public BigDecimal TaxNotEqualTo = null; public ArrayList TaxBetween = null; public ArrayList TaxIn = null; public Date LastSavedDateTime = null; public Date LastSavedDateTimeGreaterThanOrEqualTo = null; public Date LastSavedDateTimeGreaterThan = null; public Date LastSavedDateTimeLessThan = null; public Date LastSavedDateTimeLessThanOrEqualTo = null; public Date LastSavedDateTimeNotEqualTo = null; public ArrayList LastSavedDateTimeBetween = null; public ArrayList LastSavedDateTimeIn = null; public String LastSavedStaffID = null; public String LastSavedStaffIDStartsWith = null; public String LastSavedStaffIDEndsWith = null; public String LastSavedStaffIDContains = null; public String LastSavedStaffIDLike = null; public ArrayList LastSavedStaffIDBetween = null; public ArrayList LastSavedStaffIDIn = null; public String QOReference = null; public String QOReferenceStartsWith = null; public String QOReferenceEndsWith = null; public String QOReferenceContains = null; public String QOReferenceLike = null; public ArrayList QOReferenceBetween = null; public ArrayList QOReferenceIn = null; public Integer ItemNo = null; public Integer ItemNoGreaterThanOrEqualTo = null; public Integer ItemNoGreaterThan = null; public Integer ItemNoLessThan = null; public Integer ItemNoLessThanOrEqualTo = null; public Integer ItemNoNotEqualTo = null; public ArrayList ItemNoBetween = null; public ArrayList ItemNoIn = null; public BigDecimal Discount = null; public BigDecimal DiscountGreaterThanOrEqualTo = null; public BigDecimal DiscountGreaterThan = null; public BigDecimal DiscountLessThan = null; public BigDecimal DiscountLessThanOrEqualTo = null; public BigDecimal DiscountNotEqualTo = null; public ArrayList DiscountBetween = null; public ArrayList DiscountIn = null; public BigDecimal DiscountPercentage = null; public BigDecimal DiscountPercentageGreaterThanOrEqualTo = null; public BigDecimal DiscountPercentageGreaterThan = null; public BigDecimal DiscountPercentageLessThan = null; public BigDecimal DiscountPercentageLessThanOrEqualTo = null; public BigDecimal DiscountPercentageNotEqualTo = null; public ArrayList DiscountPercentageBetween = null; public ArrayList DiscountPercentageIn = null; public Boolean SellPriceIsIncTax = null; public Short QuantityDecimalPlaces = null; public Short QuantityDecimalPlacesGreaterThanOrEqualTo = null; public Short QuantityDecimalPlacesGreaterThan = null; public Short QuantityDecimalPlacesLessThan = null; public Short QuantityDecimalPlacesLessThanOrEqualTo = null; public Short QuantityDecimalPlacesNotEqualTo = null; public ArrayList QuantityDecimalPlacesBetween = null; public ArrayList QuantityDecimalPlacesIn = null; public Boolean Discountable = null; public BigDecimal DefaultPrice = null; public BigDecimal DefaultPriceGreaterThanOrEqualTo = null; public BigDecimal DefaultPriceGreaterThan = null; public BigDecimal DefaultPriceLessThan = null; public BigDecimal DefaultPriceLessThanOrEqualTo = null; public BigDecimal DefaultPriceNotEqualTo = null; public ArrayList DefaultPriceBetween = null; public ArrayList DefaultPriceIn = null; public BigDecimal MinimumGP = null; public BigDecimal MinimumGPGreaterThanOrEqualTo = null; public BigDecimal MinimumGPGreaterThan = null; public BigDecimal MinimumGPLessThan = null; public BigDecimal MinimumGPLessThanOrEqualTo = null; public BigDecimal MinimumGPNotEqualTo = null; public ArrayList MinimumGPBetween = null; public ArrayList MinimumGPIn = null; public BigDecimal LastCost = null; public BigDecimal LastCostGreaterThanOrEqualTo = null; public BigDecimal LastCostGreaterThan = null; public BigDecimal LastCostLessThan = null; public BigDecimal LastCostLessThanOrEqualTo = null; public BigDecimal LastCostNotEqualTo = null; public ArrayList LastCostBetween = null; public ArrayList LastCostIn = null; public String TaxID = null; public String TaxIDStartsWith = null; public String TaxIDEndsWith = null; public String TaxIDContains = null; public String TaxIDLike = null; public ArrayList TaxIDBetween = null; public ArrayList TaxIDIn = null; public BigDecimal TaxRate = null; public BigDecimal TaxRateGreaterThanOrEqualTo = null; public BigDecimal TaxRateGreaterThan = null; public BigDecimal TaxRateLessThan = null; public BigDecimal TaxRateLessThanOrEqualTo = null; public BigDecimal TaxRateNotEqualTo = null; public ArrayList TaxRateBetween = null; public ArrayList TaxRateIn = null; public Boolean UserDefinedBit1 = null; public Boolean UserDefinedBit2 = null; public Boolean UserDefinedBit3 = null; public String UserDefinedString1 = null; public String UserDefinedString1StartsWith = null; public String UserDefinedString1EndsWith = null; public String UserDefinedString1Contains = null; public String UserDefinedString1Like = null; public ArrayList UserDefinedString1Between = null; public ArrayList UserDefinedString1In = null; public String UserDefinedString2 = null; public String UserDefinedString2StartsWith = null; public String UserDefinedString2EndsWith = null; public String UserDefinedString2Contains = null; public String UserDefinedString2Like = null; public ArrayList UserDefinedString2Between = null; public ArrayList UserDefinedString2In = null; public String UserDefinedString3 = null; public String UserDefinedString3StartsWith = null; public String UserDefinedString3EndsWith = null; public String UserDefinedString3Contains = null; public String UserDefinedString3Like = null; public ArrayList UserDefinedString3Between = null; public ArrayList UserDefinedString3In = null; public Date UserDefinedDate1 = null; public Date UserDefinedDate1GreaterThanOrEqualTo = null; public Date UserDefinedDate1GreaterThan = null; public Date UserDefinedDate1LessThan = null; public Date UserDefinedDate1LessThanOrEqualTo = null; public Date UserDefinedDate1NotEqualTo = null; public ArrayList UserDefinedDate1Between = null; public ArrayList UserDefinedDate1In = null; public Date UserDefinedDate2 = null; public Date UserDefinedDate2GreaterThanOrEqualTo = null; public Date UserDefinedDate2GreaterThan = null; public Date UserDefinedDate2LessThan = null; public Date UserDefinedDate2LessThanOrEqualTo = null; public Date UserDefinedDate2NotEqualTo = null; public ArrayList UserDefinedDate2Between = null; public ArrayList UserDefinedDate2In = null; public Date UserDefinedDate3 = null; public Date UserDefinedDate3GreaterThanOrEqualTo = null; public Date UserDefinedDate3GreaterThan = null; public Date UserDefinedDate3LessThan = null; public Date UserDefinedDate3LessThanOrEqualTo = null; public Date UserDefinedDate3NotEqualTo = null; public ArrayList UserDefinedDate3Between = null; public ArrayList UserDefinedDate3In = null; public BigDecimal UserDefinedFloat1 = null; public BigDecimal UserDefinedFloat1GreaterThanOrEqualTo = null; public BigDecimal UserDefinedFloat1GreaterThan = null; public BigDecimal UserDefinedFloat1LessThan = null; public BigDecimal UserDefinedFloat1LessThanOrEqualTo = null; public BigDecimal UserDefinedFloat1NotEqualTo = null; public ArrayList UserDefinedFloat1Between = null; public ArrayList UserDefinedFloat1In = null; public BigDecimal UserDefinedFloat2 = null; public BigDecimal UserDefinedFloat2GreaterThanOrEqualTo = null; public BigDecimal UserDefinedFloat2GreaterThan = null; public BigDecimal UserDefinedFloat2LessThan = null; public BigDecimal UserDefinedFloat2LessThanOrEqualTo = null; public BigDecimal UserDefinedFloat2NotEqualTo = null; public ArrayList UserDefinedFloat2Between = null; public ArrayList UserDefinedFloat2In = null; public BigDecimal UserDefinedFloat3 = null; public BigDecimal UserDefinedFloat3GreaterThanOrEqualTo = null; public BigDecimal UserDefinedFloat3GreaterThan = null; public BigDecimal UserDefinedFloat3LessThan = null; public BigDecimal UserDefinedFloat3LessThanOrEqualTo = null; public BigDecimal UserDefinedFloat3NotEqualTo = null; public ArrayList UserDefinedFloat3Between = null; public ArrayList UserDefinedFloat3In = null; public String SO_Lines_RecID = null; public String SO_Lines_RecIDStartsWith = null; public String SO_Lines_RecIDEndsWith = null; public String SO_Lines_RecIDContains = null; public String SO_Lines_RecIDLike = null; public ArrayList SO_Lines_RecIDBetween = null; public ArrayList SO_Lines_RecIDIn = null; public String getRecID() { return RecID; } public SM_PartsQuery setRecID(String value) { this.RecID = value; return this; } public String getRecIDStartsWith() { return RecIDStartsWith; } public SM_PartsQuery setRecIDStartsWith(String value) { this.RecIDStartsWith = value; return this; } public String getRecIDEndsWith() { return RecIDEndsWith; } public SM_PartsQuery setRecIDEndsWith(String value) { this.RecIDEndsWith = value; return this; } public String getRecIDContains() { return RecIDContains; } public SM_PartsQuery setRecIDContains(String value) { this.RecIDContains = value; return this; } public String getRecIDLike() { return RecIDLike; } public SM_PartsQuery setRecIDLike(String value) { this.RecIDLike = value; return this; } public ArrayList getRecIDBetween() { return RecIDBetween; } public SM_PartsQuery setRecIDBetween(ArrayList value) { this.RecIDBetween = value; return this; } public ArrayList getRecIDIn() { return RecIDIn; } public SM_PartsQuery setRecIDIn(ArrayList value) { this.RecIDIn = value; return this; } public String getSmTasksRecID() { return SM_Tasks_RecID; } public SM_PartsQuery setSmTasksRecID(String value) { this.SM_Tasks_RecID = value; return this; } public String getSmTasksRecIDStartsWith() { return SM_Tasks_RecIDStartsWith; } public SM_PartsQuery setSmTasksRecIDStartsWith(String value) { this.SM_Tasks_RecIDStartsWith = value; return this; } public String getSmTasksRecIDEndsWith() { return SM_Tasks_RecIDEndsWith; } public SM_PartsQuery setSmTasksRecIDEndsWith(String value) { this.SM_Tasks_RecIDEndsWith = value; return this; } public String getSmTasksRecIDContains() { return SM_Tasks_RecIDContains; } public SM_PartsQuery setSmTasksRecIDContains(String value) { this.SM_Tasks_RecIDContains = value; return this; } public String getSmTasksRecIDLike() { return SM_Tasks_RecIDLike; } public SM_PartsQuery setSmTasksRecIDLike(String value) { this.SM_Tasks_RecIDLike = value; return this; } public ArrayList getSmTasksRecIDBetween() { return SM_Tasks_RecIDBetween; } public SM_PartsQuery setSmTasksRecIDBetween(ArrayList value) { this.SM_Tasks_RecIDBetween = value; return this; } public ArrayList getSmTasksRecIDIn() { return SM_Tasks_RecIDIn; } public SM_PartsQuery setSmTasksRecIDIn(ArrayList value) { this.SM_Tasks_RecIDIn = value; return this; } public String getInMainRecID() { return IN_Main_RecID; } public SM_PartsQuery setInMainRecID(String value) { this.IN_Main_RecID = value; return this; } public String getInMainRecIDStartsWith() { return IN_Main_RecIDStartsWith; } public SM_PartsQuery setInMainRecIDStartsWith(String value) { this.IN_Main_RecIDStartsWith = value; return this; } public String getInMainRecIDEndsWith() { return IN_Main_RecIDEndsWith; } public SM_PartsQuery setInMainRecIDEndsWith(String value) { this.IN_Main_RecIDEndsWith = value; return this; } public String getInMainRecIDContains() { return IN_Main_RecIDContains; } public SM_PartsQuery setInMainRecIDContains(String value) { this.IN_Main_RecIDContains = value; return this; } public String getInMainRecIDLike() { return IN_Main_RecIDLike; } public SM_PartsQuery setInMainRecIDLike(String value) { this.IN_Main_RecIDLike = value; return this; } public ArrayList getInMainRecIDBetween() { return IN_Main_RecIDBetween; } public SM_PartsQuery setInMainRecIDBetween(ArrayList value) { this.IN_Main_RecIDBetween = value; return this; } public ArrayList getInMainRecIDIn() { return IN_Main_RecIDIn; } public SM_PartsQuery setInMainRecIDIn(ArrayList value) { this.IN_Main_RecIDIn = value; return this; } public String getPartNo() { return PartNo; } public SM_PartsQuery setPartNo(String value) { this.PartNo = value; return this; } public String getPartNoStartsWith() { return PartNoStartsWith; } public SM_PartsQuery setPartNoStartsWith(String value) { this.PartNoStartsWith = value; return this; } public String getPartNoEndsWith() { return PartNoEndsWith; } public SM_PartsQuery setPartNoEndsWith(String value) { this.PartNoEndsWith = value; return this; } public String getPartNoContains() { return PartNoContains; } public SM_PartsQuery setPartNoContains(String value) { this.PartNoContains = value; return this; } public String getPartNoLike() { return PartNoLike; } public SM_PartsQuery setPartNoLike(String value) { this.PartNoLike = value; return this; } public ArrayList getPartNoBetween() { return PartNoBetween; } public SM_PartsQuery setPartNoBetween(ArrayList value) { this.PartNoBetween = value; return this; } public ArrayList getPartNoIn() { return PartNoIn; } public SM_PartsQuery setPartNoIn(ArrayList value) { this.PartNoIn = value; return this; } public String getDescription() { return Description; } public SM_PartsQuery setDescription(String value) { this.Description = value; return this; } public String getDescriptionStartsWith() { return DescriptionStartsWith; } public SM_PartsQuery setDescriptionStartsWith(String value) { this.DescriptionStartsWith = value; return this; } public String getDescriptionEndsWith() { return DescriptionEndsWith; } public SM_PartsQuery setDescriptionEndsWith(String value) { this.DescriptionEndsWith = value; return this; } public String getDescriptionContains() { return DescriptionContains; } public SM_PartsQuery setDescriptionContains(String value) { this.DescriptionContains = value; return this; } public String getDescriptionLike() { return DescriptionLike; } public SM_PartsQuery setDescriptionLike(String value) { this.DescriptionLike = value; return this; } public ArrayList getDescriptionBetween() { return DescriptionBetween; } public SM_PartsQuery setDescriptionBetween(ArrayList value) { this.DescriptionBetween = value; return this; } public ArrayList getDescriptionIn() { return DescriptionIn; } public SM_PartsQuery setDescriptionIn(ArrayList value) { this.DescriptionIn = value; return this; } public BigDecimal getQuantity() { return Quantity; } public SM_PartsQuery setQuantity(BigDecimal value) { this.Quantity = value; return this; } public BigDecimal getQuantityGreaterThanOrEqualTo() { return QuantityGreaterThanOrEqualTo; } public SM_PartsQuery setQuantityGreaterThanOrEqualTo(BigDecimal value) { this.QuantityGreaterThanOrEqualTo = value; return this; } public BigDecimal getQuantityGreaterThan() { return QuantityGreaterThan; } public SM_PartsQuery setQuantityGreaterThan(BigDecimal value) { this.QuantityGreaterThan = value; return this; } public BigDecimal getQuantityLessThan() { return QuantityLessThan; } public SM_PartsQuery setQuantityLessThan(BigDecimal value) { this.QuantityLessThan = value; return this; } public BigDecimal getQuantityLessThanOrEqualTo() { return QuantityLessThanOrEqualTo; } public SM_PartsQuery setQuantityLessThanOrEqualTo(BigDecimal value) { this.QuantityLessThanOrEqualTo = value; return this; } public BigDecimal getQuantityNotEqualTo() { return QuantityNotEqualTo; } public SM_PartsQuery setQuantityNotEqualTo(BigDecimal value) { this.QuantityNotEqualTo = value; return this; } public ArrayList getQuantityBetween() { return QuantityBetween; } public SM_PartsQuery setQuantityBetween(ArrayList value) { this.QuantityBetween = value; return this; } public ArrayList getQuantityIn() { return QuantityIn; } public SM_PartsQuery setQuantityIn(ArrayList value) { this.QuantityIn = value; return this; } public BigDecimal getItemPrice() { return ItemPrice; } public SM_PartsQuery setItemPrice(BigDecimal value) { this.ItemPrice = value; return this; } public BigDecimal getItemPriceGreaterThanOrEqualTo() { return ItemPriceGreaterThanOrEqualTo; } public SM_PartsQuery setItemPriceGreaterThanOrEqualTo(BigDecimal value) { this.ItemPriceGreaterThanOrEqualTo = value; return this; } public BigDecimal getItemPriceGreaterThan() { return ItemPriceGreaterThan; } public SM_PartsQuery setItemPriceGreaterThan(BigDecimal value) { this.ItemPriceGreaterThan = value; return this; } public BigDecimal getItemPriceLessThan() { return ItemPriceLessThan; } public SM_PartsQuery setItemPriceLessThan(BigDecimal value) { this.ItemPriceLessThan = value; return this; } public BigDecimal getItemPriceLessThanOrEqualTo() { return ItemPriceLessThanOrEqualTo; } public SM_PartsQuery setItemPriceLessThanOrEqualTo(BigDecimal value) { this.ItemPriceLessThanOrEqualTo = value; return this; } public BigDecimal getItemPriceNotEqualTo() { return ItemPriceNotEqualTo; } public SM_PartsQuery setItemPriceNotEqualTo(BigDecimal value) { this.ItemPriceNotEqualTo = value; return this; } public ArrayList getItemPriceBetween() { return ItemPriceBetween; } public SM_PartsQuery setItemPriceBetween(ArrayList value) { this.ItemPriceBetween = value; return this; } public ArrayList getItemPriceIn() { return ItemPriceIn; } public SM_PartsQuery setItemPriceIn(ArrayList value) { this.ItemPriceIn = value; return this; } public BigDecimal getTax() { return Tax; } public SM_PartsQuery setTax(BigDecimal value) { this.Tax = value; return this; } public BigDecimal getTaxGreaterThanOrEqualTo() { return TaxGreaterThanOrEqualTo; } public SM_PartsQuery setTaxGreaterThanOrEqualTo(BigDecimal value) { this.TaxGreaterThanOrEqualTo = value; return this; } public BigDecimal getTaxGreaterThan() { return TaxGreaterThan; } public SM_PartsQuery setTaxGreaterThan(BigDecimal value) { this.TaxGreaterThan = value; return this; } public BigDecimal getTaxLessThan() { return TaxLessThan; } public SM_PartsQuery setTaxLessThan(BigDecimal value) { this.TaxLessThan = value; return this; } public BigDecimal getTaxLessThanOrEqualTo() { return TaxLessThanOrEqualTo; } public SM_PartsQuery setTaxLessThanOrEqualTo(BigDecimal value) { this.TaxLessThanOrEqualTo = value; return this; } public BigDecimal getTaxNotEqualTo() { return TaxNotEqualTo; } public SM_PartsQuery setTaxNotEqualTo(BigDecimal value) { this.TaxNotEqualTo = value; return this; } public ArrayList getTaxBetween() { return TaxBetween; } public SM_PartsQuery setTaxBetween(ArrayList value) { this.TaxBetween = value; return this; } public ArrayList getTaxIn() { return TaxIn; } public SM_PartsQuery setTaxIn(ArrayList value) { this.TaxIn = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public SM_PartsQuery setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getLastSavedDateTimeGreaterThanOrEqualTo() { return LastSavedDateTimeGreaterThanOrEqualTo; } public SM_PartsQuery setLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.LastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeGreaterThan() { return LastSavedDateTimeGreaterThan; } public SM_PartsQuery setLastSavedDateTimeGreaterThan(Date value) { this.LastSavedDateTimeGreaterThan = value; return this; } public Date getLastSavedDateTimeLessThan() { return LastSavedDateTimeLessThan; } public SM_PartsQuery setLastSavedDateTimeLessThan(Date value) { this.LastSavedDateTimeLessThan = value; return this; } public Date getLastSavedDateTimeLessThanOrEqualTo() { return LastSavedDateTimeLessThanOrEqualTo; } public SM_PartsQuery setLastSavedDateTimeLessThanOrEqualTo(Date value) { this.LastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeNotEqualTo() { return LastSavedDateTimeNotEqualTo; } public SM_PartsQuery setLastSavedDateTimeNotEqualTo(Date value) { this.LastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getLastSavedDateTimeBetween() { return LastSavedDateTimeBetween; } public SM_PartsQuery setLastSavedDateTimeBetween(ArrayList value) { this.LastSavedDateTimeBetween = value; return this; } public ArrayList getLastSavedDateTimeIn() { return LastSavedDateTimeIn; } public SM_PartsQuery setLastSavedDateTimeIn(ArrayList value) { this.LastSavedDateTimeIn = value; return this; } public String getLastSavedStaffID() { return LastSavedStaffID; } public SM_PartsQuery setLastSavedStaffID(String value) { this.LastSavedStaffID = value; return this; } public String getLastSavedStaffIDStartsWith() { return LastSavedStaffIDStartsWith; } public SM_PartsQuery setLastSavedStaffIDStartsWith(String value) { this.LastSavedStaffIDStartsWith = value; return this; } public String getLastSavedStaffIDEndsWith() { return LastSavedStaffIDEndsWith; } public SM_PartsQuery setLastSavedStaffIDEndsWith(String value) { this.LastSavedStaffIDEndsWith = value; return this; } public String getLastSavedStaffIDContains() { return LastSavedStaffIDContains; } public SM_PartsQuery setLastSavedStaffIDContains(String value) { this.LastSavedStaffIDContains = value; return this; } public String getLastSavedStaffIDLike() { return LastSavedStaffIDLike; } public SM_PartsQuery setLastSavedStaffIDLike(String value) { this.LastSavedStaffIDLike = value; return this; } public ArrayList getLastSavedStaffIDBetween() { return LastSavedStaffIDBetween; } public SM_PartsQuery setLastSavedStaffIDBetween(ArrayList value) { this.LastSavedStaffIDBetween = value; return this; } public ArrayList getLastSavedStaffIDIn() { return LastSavedStaffIDIn; } public SM_PartsQuery setLastSavedStaffIDIn(ArrayList value) { this.LastSavedStaffIDIn = value; return this; } public String getQoReference() { return QOReference; } public SM_PartsQuery setQoReference(String value) { this.QOReference = value; return this; } public String getQoReferenceStartsWith() { return QOReferenceStartsWith; } public SM_PartsQuery setQoReferenceStartsWith(String value) { this.QOReferenceStartsWith = value; return this; } public String getQoReferenceEndsWith() { return QOReferenceEndsWith; } public SM_PartsQuery setQoReferenceEndsWith(String value) { this.QOReferenceEndsWith = value; return this; } public String getQoReferenceContains() { return QOReferenceContains; } public SM_PartsQuery setQoReferenceContains(String value) { this.QOReferenceContains = value; return this; } public String getQoReferenceLike() { return QOReferenceLike; } public SM_PartsQuery setQoReferenceLike(String value) { this.QOReferenceLike = value; return this; } public ArrayList getQoReferenceBetween() { return QOReferenceBetween; } public SM_PartsQuery setQoReferenceBetween(ArrayList value) { this.QOReferenceBetween = value; return this; } public ArrayList getQoReferenceIn() { return QOReferenceIn; } public SM_PartsQuery setQoReferenceIn(ArrayList value) { this.QOReferenceIn = value; return this; } public Integer getItemNo() { return ItemNo; } public SM_PartsQuery setItemNo(Integer value) { this.ItemNo = value; return this; } public Integer getItemNoGreaterThanOrEqualTo() { return ItemNoGreaterThanOrEqualTo; } public SM_PartsQuery setItemNoGreaterThanOrEqualTo(Integer value) { this.ItemNoGreaterThanOrEqualTo = value; return this; } public Integer getItemNoGreaterThan() { return ItemNoGreaterThan; } public SM_PartsQuery setItemNoGreaterThan(Integer value) { this.ItemNoGreaterThan = value; return this; } public Integer getItemNoLessThan() { return ItemNoLessThan; } public SM_PartsQuery setItemNoLessThan(Integer value) { this.ItemNoLessThan = value; return this; } public Integer getItemNoLessThanOrEqualTo() { return ItemNoLessThanOrEqualTo; } public SM_PartsQuery setItemNoLessThanOrEqualTo(Integer value) { this.ItemNoLessThanOrEqualTo = value; return this; } public Integer getItemNoNotEqualTo() { return ItemNoNotEqualTo; } public SM_PartsQuery setItemNoNotEqualTo(Integer value) { this.ItemNoNotEqualTo = value; return this; } public ArrayList getItemNoBetween() { return ItemNoBetween; } public SM_PartsQuery setItemNoBetween(ArrayList value) { this.ItemNoBetween = value; return this; } public ArrayList getItemNoIn() { return ItemNoIn; } public SM_PartsQuery setItemNoIn(ArrayList value) { this.ItemNoIn = value; return this; } public BigDecimal getDiscount() { return Discount; } public SM_PartsQuery setDiscount(BigDecimal value) { this.Discount = value; return this; } public BigDecimal getDiscountGreaterThanOrEqualTo() { return DiscountGreaterThanOrEqualTo; } public SM_PartsQuery setDiscountGreaterThanOrEqualTo(BigDecimal value) { this.DiscountGreaterThanOrEqualTo = value; return this; } public BigDecimal getDiscountGreaterThan() { return DiscountGreaterThan; } public SM_PartsQuery setDiscountGreaterThan(BigDecimal value) { this.DiscountGreaterThan = value; return this; } public BigDecimal getDiscountLessThan() { return DiscountLessThan; } public SM_PartsQuery setDiscountLessThan(BigDecimal value) { this.DiscountLessThan = value; return this; } public BigDecimal getDiscountLessThanOrEqualTo() { return DiscountLessThanOrEqualTo; } public SM_PartsQuery setDiscountLessThanOrEqualTo(BigDecimal value) { this.DiscountLessThanOrEqualTo = value; return this; } public BigDecimal getDiscountNotEqualTo() { return DiscountNotEqualTo; } public SM_PartsQuery setDiscountNotEqualTo(BigDecimal value) { this.DiscountNotEqualTo = value; return this; } public ArrayList getDiscountBetween() { return DiscountBetween; } public SM_PartsQuery setDiscountBetween(ArrayList value) { this.DiscountBetween = value; return this; } public ArrayList getDiscountIn() { return DiscountIn; } public SM_PartsQuery setDiscountIn(ArrayList value) { this.DiscountIn = value; return this; } public BigDecimal getDiscountPercentage() { return DiscountPercentage; } public SM_PartsQuery setDiscountPercentage(BigDecimal value) { this.DiscountPercentage = value; return this; } public BigDecimal getDiscountPercentageGreaterThanOrEqualTo() { return DiscountPercentageGreaterThanOrEqualTo; } public SM_PartsQuery setDiscountPercentageGreaterThanOrEqualTo(BigDecimal value) { this.DiscountPercentageGreaterThanOrEqualTo = value; return this; } public BigDecimal getDiscountPercentageGreaterThan() { return DiscountPercentageGreaterThan; } public SM_PartsQuery setDiscountPercentageGreaterThan(BigDecimal value) { this.DiscountPercentageGreaterThan = value; return this; } public BigDecimal getDiscountPercentageLessThan() { return DiscountPercentageLessThan; } public SM_PartsQuery setDiscountPercentageLessThan(BigDecimal value) { this.DiscountPercentageLessThan = value; return this; } public BigDecimal getDiscountPercentageLessThanOrEqualTo() { return DiscountPercentageLessThanOrEqualTo; } public SM_PartsQuery setDiscountPercentageLessThanOrEqualTo(BigDecimal value) { this.DiscountPercentageLessThanOrEqualTo = value; return this; } public BigDecimal getDiscountPercentageNotEqualTo() { return DiscountPercentageNotEqualTo; } public SM_PartsQuery setDiscountPercentageNotEqualTo(BigDecimal value) { this.DiscountPercentageNotEqualTo = value; return this; } public ArrayList getDiscountPercentageBetween() { return DiscountPercentageBetween; } public SM_PartsQuery setDiscountPercentageBetween(ArrayList value) { this.DiscountPercentageBetween = value; return this; } public ArrayList getDiscountPercentageIn() { return DiscountPercentageIn; } public SM_PartsQuery setDiscountPercentageIn(ArrayList value) { this.DiscountPercentageIn = value; return this; } public Boolean isSellPriceIsIncTax() { return SellPriceIsIncTax; } public SM_PartsQuery setSellPriceIsIncTax(Boolean value) { this.SellPriceIsIncTax = value; return this; } public Short getQuantityDecimalPlaces() { return QuantityDecimalPlaces; } public SM_PartsQuery setQuantityDecimalPlaces(Short value) { this.QuantityDecimalPlaces = value; return this; } public Short getQuantityDecimalPlacesGreaterThanOrEqualTo() { return QuantityDecimalPlacesGreaterThanOrEqualTo; } public SM_PartsQuery setQuantityDecimalPlacesGreaterThanOrEqualTo(Short value) { this.QuantityDecimalPlacesGreaterThanOrEqualTo = value; return this; } public Short getQuantityDecimalPlacesGreaterThan() { return QuantityDecimalPlacesGreaterThan; } public SM_PartsQuery setQuantityDecimalPlacesGreaterThan(Short value) { this.QuantityDecimalPlacesGreaterThan = value; return this; } public Short getQuantityDecimalPlacesLessThan() { return QuantityDecimalPlacesLessThan; } public SM_PartsQuery setQuantityDecimalPlacesLessThan(Short value) { this.QuantityDecimalPlacesLessThan = value; return this; } public Short getQuantityDecimalPlacesLessThanOrEqualTo() { return QuantityDecimalPlacesLessThanOrEqualTo; } public SM_PartsQuery setQuantityDecimalPlacesLessThanOrEqualTo(Short value) { this.QuantityDecimalPlacesLessThanOrEqualTo = value; return this; } public Short getQuantityDecimalPlacesNotEqualTo() { return QuantityDecimalPlacesNotEqualTo; } public SM_PartsQuery setQuantityDecimalPlacesNotEqualTo(Short value) { this.QuantityDecimalPlacesNotEqualTo = value; return this; } public ArrayList getQuantityDecimalPlacesBetween() { return QuantityDecimalPlacesBetween; } public SM_PartsQuery setQuantityDecimalPlacesBetween(ArrayList value) { this.QuantityDecimalPlacesBetween = value; return this; } public ArrayList getQuantityDecimalPlacesIn() { return QuantityDecimalPlacesIn; } public SM_PartsQuery setQuantityDecimalPlacesIn(ArrayList value) { this.QuantityDecimalPlacesIn = value; return this; } public Boolean isDiscountable() { return Discountable; } public SM_PartsQuery setDiscountable(Boolean value) { this.Discountable = value; return this; } public BigDecimal getDefaultPrice() { return DefaultPrice; } public SM_PartsQuery setDefaultPrice(BigDecimal value) { this.DefaultPrice = value; return this; } public BigDecimal getDefaultPriceGreaterThanOrEqualTo() { return DefaultPriceGreaterThanOrEqualTo; } public SM_PartsQuery setDefaultPriceGreaterThanOrEqualTo(BigDecimal value) { this.DefaultPriceGreaterThanOrEqualTo = value; return this; } public BigDecimal getDefaultPriceGreaterThan() { return DefaultPriceGreaterThan; } public SM_PartsQuery setDefaultPriceGreaterThan(BigDecimal value) { this.DefaultPriceGreaterThan = value; return this; } public BigDecimal getDefaultPriceLessThan() { return DefaultPriceLessThan; } public SM_PartsQuery setDefaultPriceLessThan(BigDecimal value) { this.DefaultPriceLessThan = value; return this; } public BigDecimal getDefaultPriceLessThanOrEqualTo() { return DefaultPriceLessThanOrEqualTo; } public SM_PartsQuery setDefaultPriceLessThanOrEqualTo(BigDecimal value) { this.DefaultPriceLessThanOrEqualTo = value; return this; } public BigDecimal getDefaultPriceNotEqualTo() { return DefaultPriceNotEqualTo; } public SM_PartsQuery setDefaultPriceNotEqualTo(BigDecimal value) { this.DefaultPriceNotEqualTo = value; return this; } public ArrayList getDefaultPriceBetween() { return DefaultPriceBetween; } public SM_PartsQuery setDefaultPriceBetween(ArrayList value) { this.DefaultPriceBetween = value; return this; } public ArrayList getDefaultPriceIn() { return DefaultPriceIn; } public SM_PartsQuery setDefaultPriceIn(ArrayList value) { this.DefaultPriceIn = value; return this; } public BigDecimal getMinimumGP() { return MinimumGP; } public SM_PartsQuery setMinimumGP(BigDecimal value) { this.MinimumGP = value; return this; } public BigDecimal getMinimumGPGreaterThanOrEqualTo() { return MinimumGPGreaterThanOrEqualTo; } public SM_PartsQuery setMinimumGPGreaterThanOrEqualTo(BigDecimal value) { this.MinimumGPGreaterThanOrEqualTo = value; return this; } public BigDecimal getMinimumGPGreaterThan() { return MinimumGPGreaterThan; } public SM_PartsQuery setMinimumGPGreaterThan(BigDecimal value) { this.MinimumGPGreaterThan = value; return this; } public BigDecimal getMinimumGPLessThan() { return MinimumGPLessThan; } public SM_PartsQuery setMinimumGPLessThan(BigDecimal value) { this.MinimumGPLessThan = value; return this; } public BigDecimal getMinimumGPLessThanOrEqualTo() { return MinimumGPLessThanOrEqualTo; } public SM_PartsQuery setMinimumGPLessThanOrEqualTo(BigDecimal value) { this.MinimumGPLessThanOrEqualTo = value; return this; } public BigDecimal getMinimumGPNotEqualTo() { return MinimumGPNotEqualTo; } public SM_PartsQuery setMinimumGPNotEqualTo(BigDecimal value) { this.MinimumGPNotEqualTo = value; return this; } public ArrayList getMinimumGPBetween() { return MinimumGPBetween; } public SM_PartsQuery setMinimumGPBetween(ArrayList value) { this.MinimumGPBetween = value; return this; } public ArrayList getMinimumGPIn() { return MinimumGPIn; } public SM_PartsQuery setMinimumGPIn(ArrayList value) { this.MinimumGPIn = value; return this; } public BigDecimal getLastCost() { return LastCost; } public SM_PartsQuery setLastCost(BigDecimal value) { this.LastCost = value; return this; } public BigDecimal getLastCostGreaterThanOrEqualTo() { return LastCostGreaterThanOrEqualTo; } public SM_PartsQuery setLastCostGreaterThanOrEqualTo(BigDecimal value) { this.LastCostGreaterThanOrEqualTo = value; return this; } public BigDecimal getLastCostGreaterThan() { return LastCostGreaterThan; } public SM_PartsQuery setLastCostGreaterThan(BigDecimal value) { this.LastCostGreaterThan = value; return this; } public BigDecimal getLastCostLessThan() { return LastCostLessThan; } public SM_PartsQuery setLastCostLessThan(BigDecimal value) { this.LastCostLessThan = value; return this; } public BigDecimal getLastCostLessThanOrEqualTo() { return LastCostLessThanOrEqualTo; } public SM_PartsQuery setLastCostLessThanOrEqualTo(BigDecimal value) { this.LastCostLessThanOrEqualTo = value; return this; } public BigDecimal getLastCostNotEqualTo() { return LastCostNotEqualTo; } public SM_PartsQuery setLastCostNotEqualTo(BigDecimal value) { this.LastCostNotEqualTo = value; return this; } public ArrayList getLastCostBetween() { return LastCostBetween; } public SM_PartsQuery setLastCostBetween(ArrayList value) { this.LastCostBetween = value; return this; } public ArrayList getLastCostIn() { return LastCostIn; } public SM_PartsQuery setLastCostIn(ArrayList value) { this.LastCostIn = value; return this; } public String getTaxID() { return TaxID; } public SM_PartsQuery setTaxID(String value) { this.TaxID = value; return this; } public String getTaxIDStartsWith() { return TaxIDStartsWith; } public SM_PartsQuery setTaxIDStartsWith(String value) { this.TaxIDStartsWith = value; return this; } public String getTaxIDEndsWith() { return TaxIDEndsWith; } public SM_PartsQuery setTaxIDEndsWith(String value) { this.TaxIDEndsWith = value; return this; } public String getTaxIDContains() { return TaxIDContains; } public SM_PartsQuery setTaxIDContains(String value) { this.TaxIDContains = value; return this; } public String getTaxIDLike() { return TaxIDLike; } public SM_PartsQuery setTaxIDLike(String value) { this.TaxIDLike = value; return this; } public ArrayList getTaxIDBetween() { return TaxIDBetween; } public SM_PartsQuery setTaxIDBetween(ArrayList value) { this.TaxIDBetween = value; return this; } public ArrayList getTaxIDIn() { return TaxIDIn; } public SM_PartsQuery setTaxIDIn(ArrayList value) { this.TaxIDIn = value; return this; } public BigDecimal getTaxRate() { return TaxRate; } public SM_PartsQuery setTaxRate(BigDecimal value) { this.TaxRate = value; return this; } public BigDecimal getTaxRateGreaterThanOrEqualTo() { return TaxRateGreaterThanOrEqualTo; } public SM_PartsQuery setTaxRateGreaterThanOrEqualTo(BigDecimal value) { this.TaxRateGreaterThanOrEqualTo = value; return this; } public BigDecimal getTaxRateGreaterThan() { return TaxRateGreaterThan; } public SM_PartsQuery setTaxRateGreaterThan(BigDecimal value) { this.TaxRateGreaterThan = value; return this; } public BigDecimal getTaxRateLessThan() { return TaxRateLessThan; } public SM_PartsQuery setTaxRateLessThan(BigDecimal value) { this.TaxRateLessThan = value; return this; } public BigDecimal getTaxRateLessThanOrEqualTo() { return TaxRateLessThanOrEqualTo; } public SM_PartsQuery setTaxRateLessThanOrEqualTo(BigDecimal value) { this.TaxRateLessThanOrEqualTo = value; return this; } public BigDecimal getTaxRateNotEqualTo() { return TaxRateNotEqualTo; } public SM_PartsQuery setTaxRateNotEqualTo(BigDecimal value) { this.TaxRateNotEqualTo = value; return this; } public ArrayList getTaxRateBetween() { return TaxRateBetween; } public SM_PartsQuery setTaxRateBetween(ArrayList value) { this.TaxRateBetween = value; return this; } public ArrayList getTaxRateIn() { return TaxRateIn; } public SM_PartsQuery setTaxRateIn(ArrayList value) { this.TaxRateIn = value; return this; } public Boolean isUserDefinedBit1() { return UserDefinedBit1; } public SM_PartsQuery setUserDefinedBit1(Boolean value) { this.UserDefinedBit1 = value; return this; } public Boolean isUserDefinedBit2() { return UserDefinedBit2; } public SM_PartsQuery setUserDefinedBit2(Boolean value) { this.UserDefinedBit2 = value; return this; } public Boolean isUserDefinedBit3() { return UserDefinedBit3; } public SM_PartsQuery setUserDefinedBit3(Boolean value) { this.UserDefinedBit3 = value; return this; } public String getUserDefinedString1() { return UserDefinedString1; } public SM_PartsQuery setUserDefinedString1(String value) { this.UserDefinedString1 = value; return this; } public String getUserDefinedString1StartsWith() { return UserDefinedString1StartsWith; } public SM_PartsQuery setUserDefinedString1StartsWith(String value) { this.UserDefinedString1StartsWith = value; return this; } public String getUserDefinedString1EndsWith() { return UserDefinedString1EndsWith; } public SM_PartsQuery setUserDefinedString1EndsWith(String value) { this.UserDefinedString1EndsWith = value; return this; } public String getUserDefinedString1Contains() { return UserDefinedString1Contains; } public SM_PartsQuery setUserDefinedString1Contains(String value) { this.UserDefinedString1Contains = value; return this; } public String getUserDefinedString1Like() { return UserDefinedString1Like; } public SM_PartsQuery setUserDefinedString1Like(String value) { this.UserDefinedString1Like = value; return this; } public ArrayList getUserDefinedString1Between() { return UserDefinedString1Between; } public SM_PartsQuery setUserDefinedString1Between(ArrayList value) { this.UserDefinedString1Between = value; return this; } public ArrayList getUserDefinedString1In() { return UserDefinedString1In; } public SM_PartsQuery setUserDefinedString1In(ArrayList value) { this.UserDefinedString1In = value; return this; } public String getUserDefinedString2() { return UserDefinedString2; } public SM_PartsQuery setUserDefinedString2(String value) { this.UserDefinedString2 = value; return this; } public String getUserDefinedString2StartsWith() { return UserDefinedString2StartsWith; } public SM_PartsQuery setUserDefinedString2StartsWith(String value) { this.UserDefinedString2StartsWith = value; return this; } public String getUserDefinedString2EndsWith() { return UserDefinedString2EndsWith; } public SM_PartsQuery setUserDefinedString2EndsWith(String value) { this.UserDefinedString2EndsWith = value; return this; } public String getUserDefinedString2Contains() { return UserDefinedString2Contains; } public SM_PartsQuery setUserDefinedString2Contains(String value) { this.UserDefinedString2Contains = value; return this; } public String getUserDefinedString2Like() { return UserDefinedString2Like; } public SM_PartsQuery setUserDefinedString2Like(String value) { this.UserDefinedString2Like = value; return this; } public ArrayList getUserDefinedString2Between() { return UserDefinedString2Between; } public SM_PartsQuery setUserDefinedString2Between(ArrayList value) { this.UserDefinedString2Between = value; return this; } public ArrayList getUserDefinedString2In() { return UserDefinedString2In; } public SM_PartsQuery setUserDefinedString2In(ArrayList value) { this.UserDefinedString2In = value; return this; } public String getUserDefinedString3() { return UserDefinedString3; } public SM_PartsQuery setUserDefinedString3(String value) { this.UserDefinedString3 = value; return this; } public String getUserDefinedString3StartsWith() { return UserDefinedString3StartsWith; } public SM_PartsQuery setUserDefinedString3StartsWith(String value) { this.UserDefinedString3StartsWith = value; return this; } public String getUserDefinedString3EndsWith() { return UserDefinedString3EndsWith; } public SM_PartsQuery setUserDefinedString3EndsWith(String value) { this.UserDefinedString3EndsWith = value; return this; } public String getUserDefinedString3Contains() { return UserDefinedString3Contains; } public SM_PartsQuery setUserDefinedString3Contains(String value) { this.UserDefinedString3Contains = value; return this; } public String getUserDefinedString3Like() { return UserDefinedString3Like; } public SM_PartsQuery setUserDefinedString3Like(String value) { this.UserDefinedString3Like = value; return this; } public ArrayList getUserDefinedString3Between() { return UserDefinedString3Between; } public SM_PartsQuery setUserDefinedString3Between(ArrayList value) { this.UserDefinedString3Between = value; return this; } public ArrayList getUserDefinedString3In() { return UserDefinedString3In; } public SM_PartsQuery setUserDefinedString3In(ArrayList value) { this.UserDefinedString3In = value; return this; } public Date getUserDefinedDate1() { return UserDefinedDate1; } public SM_PartsQuery setUserDefinedDate1(Date value) { this.UserDefinedDate1 = value; return this; } public Date getUserDefinedDate1GreaterThanOrEqualTo() { return UserDefinedDate1GreaterThanOrEqualTo; } public SM_PartsQuery setUserDefinedDate1GreaterThanOrEqualTo(Date value) { this.UserDefinedDate1GreaterThanOrEqualTo = value; return this; } public Date getUserDefinedDate1GreaterThan() { return UserDefinedDate1GreaterThan; } public SM_PartsQuery setUserDefinedDate1GreaterThan(Date value) { this.UserDefinedDate1GreaterThan = value; return this; } public Date getUserDefinedDate1LessThan() { return UserDefinedDate1LessThan; } public SM_PartsQuery setUserDefinedDate1LessThan(Date value) { this.UserDefinedDate1LessThan = value; return this; } public Date getUserDefinedDate1LessThanOrEqualTo() { return UserDefinedDate1LessThanOrEqualTo; } public SM_PartsQuery setUserDefinedDate1LessThanOrEqualTo(Date value) { this.UserDefinedDate1LessThanOrEqualTo = value; return this; } public Date getUserDefinedDate1NotEqualTo() { return UserDefinedDate1NotEqualTo; } public SM_PartsQuery setUserDefinedDate1NotEqualTo(Date value) { this.UserDefinedDate1NotEqualTo = value; return this; } public ArrayList getUserDefinedDate1Between() { return UserDefinedDate1Between; } public SM_PartsQuery setUserDefinedDate1Between(ArrayList value) { this.UserDefinedDate1Between = value; return this; } public ArrayList getUserDefinedDate1In() { return UserDefinedDate1In; } public SM_PartsQuery setUserDefinedDate1In(ArrayList value) { this.UserDefinedDate1In = value; return this; } public Date getUserDefinedDate2() { return UserDefinedDate2; } public SM_PartsQuery setUserDefinedDate2(Date value) { this.UserDefinedDate2 = value; return this; } public Date getUserDefinedDate2GreaterThanOrEqualTo() { return UserDefinedDate2GreaterThanOrEqualTo; } public SM_PartsQuery setUserDefinedDate2GreaterThanOrEqualTo(Date value) { this.UserDefinedDate2GreaterThanOrEqualTo = value; return this; } public Date getUserDefinedDate2GreaterThan() { return UserDefinedDate2GreaterThan; } public SM_PartsQuery setUserDefinedDate2GreaterThan(Date value) { this.UserDefinedDate2GreaterThan = value; return this; } public Date getUserDefinedDate2LessThan() { return UserDefinedDate2LessThan; } public SM_PartsQuery setUserDefinedDate2LessThan(Date value) { this.UserDefinedDate2LessThan = value; return this; } public Date getUserDefinedDate2LessThanOrEqualTo() { return UserDefinedDate2LessThanOrEqualTo; } public SM_PartsQuery setUserDefinedDate2LessThanOrEqualTo(Date value) { this.UserDefinedDate2LessThanOrEqualTo = value; return this; } public Date getUserDefinedDate2NotEqualTo() { return UserDefinedDate2NotEqualTo; } public SM_PartsQuery setUserDefinedDate2NotEqualTo(Date value) { this.UserDefinedDate2NotEqualTo = value; return this; } public ArrayList getUserDefinedDate2Between() { return UserDefinedDate2Between; } public SM_PartsQuery setUserDefinedDate2Between(ArrayList value) { this.UserDefinedDate2Between = value; return this; } public ArrayList getUserDefinedDate2In() { return UserDefinedDate2In; } public SM_PartsQuery setUserDefinedDate2In(ArrayList value) { this.UserDefinedDate2In = value; return this; } public Date getUserDefinedDate3() { return UserDefinedDate3; } public SM_PartsQuery setUserDefinedDate3(Date value) { this.UserDefinedDate3 = value; return this; } public Date getUserDefinedDate3GreaterThanOrEqualTo() { return UserDefinedDate3GreaterThanOrEqualTo; } public SM_PartsQuery setUserDefinedDate3GreaterThanOrEqualTo(Date value) { this.UserDefinedDate3GreaterThanOrEqualTo = value; return this; } public Date getUserDefinedDate3GreaterThan() { return UserDefinedDate3GreaterThan; } public SM_PartsQuery setUserDefinedDate3GreaterThan(Date value) { this.UserDefinedDate3GreaterThan = value; return this; } public Date getUserDefinedDate3LessThan() { return UserDefinedDate3LessThan; } public SM_PartsQuery setUserDefinedDate3LessThan(Date value) { this.UserDefinedDate3LessThan = value; return this; } public Date getUserDefinedDate3LessThanOrEqualTo() { return UserDefinedDate3LessThanOrEqualTo; } public SM_PartsQuery setUserDefinedDate3LessThanOrEqualTo(Date value) { this.UserDefinedDate3LessThanOrEqualTo = value; return this; } public Date getUserDefinedDate3NotEqualTo() { return UserDefinedDate3NotEqualTo; } public SM_PartsQuery setUserDefinedDate3NotEqualTo(Date value) { this.UserDefinedDate3NotEqualTo = value; return this; } public ArrayList getUserDefinedDate3Between() { return UserDefinedDate3Between; } public SM_PartsQuery setUserDefinedDate3Between(ArrayList value) { this.UserDefinedDate3Between = value; return this; } public ArrayList getUserDefinedDate3In() { return UserDefinedDate3In; } public SM_PartsQuery setUserDefinedDate3In(ArrayList value) { this.UserDefinedDate3In = value; return this; } public BigDecimal getUserDefinedFloat1() { return UserDefinedFloat1; } public SM_PartsQuery setUserDefinedFloat1(BigDecimal value) { this.UserDefinedFloat1 = value; return this; } public BigDecimal getUserDefinedFloat1GreaterThanOrEqualTo() { return UserDefinedFloat1GreaterThanOrEqualTo; } public SM_PartsQuery setUserDefinedFloat1GreaterThanOrEqualTo(BigDecimal value) { this.UserDefinedFloat1GreaterThanOrEqualTo = value; return this; } public BigDecimal getUserDefinedFloat1GreaterThan() { return UserDefinedFloat1GreaterThan; } public SM_PartsQuery setUserDefinedFloat1GreaterThan(BigDecimal value) { this.UserDefinedFloat1GreaterThan = value; return this; } public BigDecimal getUserDefinedFloat1LessThan() { return UserDefinedFloat1LessThan; } public SM_PartsQuery setUserDefinedFloat1LessThan(BigDecimal value) { this.UserDefinedFloat1LessThan = value; return this; } public BigDecimal getUserDefinedFloat1LessThanOrEqualTo() { return UserDefinedFloat1LessThanOrEqualTo; } public SM_PartsQuery setUserDefinedFloat1LessThanOrEqualTo(BigDecimal value) { this.UserDefinedFloat1LessThanOrEqualTo = value; return this; } public BigDecimal getUserDefinedFloat1NotEqualTo() { return UserDefinedFloat1NotEqualTo; } public SM_PartsQuery setUserDefinedFloat1NotEqualTo(BigDecimal value) { this.UserDefinedFloat1NotEqualTo = value; return this; } public ArrayList getUserDefinedFloat1Between() { return UserDefinedFloat1Between; } public SM_PartsQuery setUserDefinedFloat1Between(ArrayList value) { this.UserDefinedFloat1Between = value; return this; } public ArrayList getUserDefinedFloat1In() { return UserDefinedFloat1In; } public SM_PartsQuery setUserDefinedFloat1In(ArrayList value) { this.UserDefinedFloat1In = value; return this; } public BigDecimal getUserDefinedFloat2() { return UserDefinedFloat2; } public SM_PartsQuery setUserDefinedFloat2(BigDecimal value) { this.UserDefinedFloat2 = value; return this; } public BigDecimal getUserDefinedFloat2GreaterThanOrEqualTo() { return UserDefinedFloat2GreaterThanOrEqualTo; } public SM_PartsQuery setUserDefinedFloat2GreaterThanOrEqualTo(BigDecimal value) { this.UserDefinedFloat2GreaterThanOrEqualTo = value; return this; } public BigDecimal getUserDefinedFloat2GreaterThan() { return UserDefinedFloat2GreaterThan; } public SM_PartsQuery setUserDefinedFloat2GreaterThan(BigDecimal value) { this.UserDefinedFloat2GreaterThan = value; return this; } public BigDecimal getUserDefinedFloat2LessThan() { return UserDefinedFloat2LessThan; } public SM_PartsQuery setUserDefinedFloat2LessThan(BigDecimal value) { this.UserDefinedFloat2LessThan = value; return this; } public BigDecimal getUserDefinedFloat2LessThanOrEqualTo() { return UserDefinedFloat2LessThanOrEqualTo; } public SM_PartsQuery setUserDefinedFloat2LessThanOrEqualTo(BigDecimal value) { this.UserDefinedFloat2LessThanOrEqualTo = value; return this; } public BigDecimal getUserDefinedFloat2NotEqualTo() { return UserDefinedFloat2NotEqualTo; } public SM_PartsQuery setUserDefinedFloat2NotEqualTo(BigDecimal value) { this.UserDefinedFloat2NotEqualTo = value; return this; } public ArrayList getUserDefinedFloat2Between() { return UserDefinedFloat2Between; } public SM_PartsQuery setUserDefinedFloat2Between(ArrayList value) { this.UserDefinedFloat2Between = value; return this; } public ArrayList getUserDefinedFloat2In() { return UserDefinedFloat2In; } public SM_PartsQuery setUserDefinedFloat2In(ArrayList value) { this.UserDefinedFloat2In = value; return this; } public BigDecimal getUserDefinedFloat3() { return UserDefinedFloat3; } public SM_PartsQuery setUserDefinedFloat3(BigDecimal value) { this.UserDefinedFloat3 = value; return this; } public BigDecimal getUserDefinedFloat3GreaterThanOrEqualTo() { return UserDefinedFloat3GreaterThanOrEqualTo; } public SM_PartsQuery setUserDefinedFloat3GreaterThanOrEqualTo(BigDecimal value) { this.UserDefinedFloat3GreaterThanOrEqualTo = value; return this; } public BigDecimal getUserDefinedFloat3GreaterThan() { return UserDefinedFloat3GreaterThan; } public SM_PartsQuery setUserDefinedFloat3GreaterThan(BigDecimal value) { this.UserDefinedFloat3GreaterThan = value; return this; } public BigDecimal getUserDefinedFloat3LessThan() { return UserDefinedFloat3LessThan; } public SM_PartsQuery setUserDefinedFloat3LessThan(BigDecimal value) { this.UserDefinedFloat3LessThan = value; return this; } public BigDecimal getUserDefinedFloat3LessThanOrEqualTo() { return UserDefinedFloat3LessThanOrEqualTo; } public SM_PartsQuery setUserDefinedFloat3LessThanOrEqualTo(BigDecimal value) { this.UserDefinedFloat3LessThanOrEqualTo = value; return this; } public BigDecimal getUserDefinedFloat3NotEqualTo() { return UserDefinedFloat3NotEqualTo; } public SM_PartsQuery setUserDefinedFloat3NotEqualTo(BigDecimal value) { this.UserDefinedFloat3NotEqualTo = value; return this; } public ArrayList getUserDefinedFloat3Between() { return UserDefinedFloat3Between; } public SM_PartsQuery setUserDefinedFloat3Between(ArrayList value) { this.UserDefinedFloat3Between = value; return this; } public ArrayList getUserDefinedFloat3In() { return UserDefinedFloat3In; } public SM_PartsQuery setUserDefinedFloat3In(ArrayList value) { this.UserDefinedFloat3In = value; return this; } public String getSoLinesRecID() { return SO_Lines_RecID; } public SM_PartsQuery setSoLinesRecID(String value) { this.SO_Lines_RecID = value; return this; } public String getSoLinesRecIDStartsWith() { return SO_Lines_RecIDStartsWith; } public SM_PartsQuery setSoLinesRecIDStartsWith(String value) { this.SO_Lines_RecIDStartsWith = value; return this; } public String getSoLinesRecIDEndsWith() { return SO_Lines_RecIDEndsWith; } public SM_PartsQuery setSoLinesRecIDEndsWith(String value) { this.SO_Lines_RecIDEndsWith = value; return this; } public String getSoLinesRecIDContains() { return SO_Lines_RecIDContains; } public SM_PartsQuery setSoLinesRecIDContains(String value) { this.SO_Lines_RecIDContains = value; return this; } public String getSoLinesRecIDLike() { return SO_Lines_RecIDLike; } public SM_PartsQuery setSoLinesRecIDLike(String value) { this.SO_Lines_RecIDLike = value; return this; } public ArrayList getSoLinesRecIDBetween() { return SO_Lines_RecIDBetween; } public SM_PartsQuery setSoLinesRecIDBetween(ArrayList value) { this.SO_Lines_RecIDBetween = value; return this; } public ArrayList getSoLinesRecIDIn() { return SO_Lines_RecIDIn; } public SM_PartsQuery setSoLinesRecIDIn(ArrayList value) { this.SO_Lines_RecIDIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class SM_PrepaidLabourPacksQuery extends QueryDb implements IReturn> { public String RecID = null; public String RecIDStartsWith = null; public String RecIDEndsWith = null; public String RecIDContains = null; public String RecIDLike = null; public ArrayList RecIDBetween = null; public ArrayList RecIDIn = null; public String Name = null; public String NameStartsWith = null; public String NameEndsWith = null; public String NameContains = null; public String NameLike = null; public ArrayList NameBetween = null; public ArrayList NameIn = null; public String Description = null; public String DescriptionStartsWith = null; public String DescriptionEndsWith = null; public String DescriptionContains = null; public String DescriptionLike = null; public ArrayList DescriptionBetween = null; public ArrayList DescriptionIn = null; public Short Status = null; public Short StatusGreaterThanOrEqualTo = null; public Short StatusGreaterThan = null; public Short StatusLessThan = null; public Short StatusLessThanOrEqualTo = null; public Short StatusNotEqualTo = null; public ArrayList StatusBetween = null; public ArrayList StatusIn = null; public String DB_Main_RecID = null; public String DB_Main_RecIDStartsWith = null; public String DB_Main_RecIDEndsWith = null; public String DB_Main_RecIDContains = null; public String DB_Main_RecIDLike = null; public ArrayList DB_Main_RecIDBetween = null; public ArrayList DB_Main_RecIDIn = null; public String Invoice_SO_Main_RecID = null; public String Invoice_SO_Main_RecIDStartsWith = null; public String Invoice_SO_Main_RecIDEndsWith = null; public String Invoice_SO_Main_RecIDContains = null; public String Invoice_SO_Main_RecIDLike = null; public ArrayList Invoice_SO_Main_RecIDBetween = null; public ArrayList Invoice_SO_Main_RecIDIn = null; public String CreditNote_SO_Main_RecID = null; public String CreditNote_SO_Main_RecIDStartsWith = null; public String CreditNote_SO_Main_RecIDEndsWith = null; public String CreditNote_SO_Main_RecIDContains = null; public String CreditNote_SO_Main_RecIDLike = null; public ArrayList CreditNote_SO_Main_RecIDBetween = null; public ArrayList CreditNote_SO_Main_RecIDIn = null; public BigDecimal TotalHours = null; public BigDecimal TotalHoursGreaterThanOrEqualTo = null; public BigDecimal TotalHoursGreaterThan = null; public BigDecimal TotalHoursLessThan = null; public BigDecimal TotalHoursLessThanOrEqualTo = null; public BigDecimal TotalHoursNotEqualTo = null; public ArrayList TotalHoursBetween = null; public ArrayList TotalHoursIn = null; public BigDecimal ReorderLevel = null; public BigDecimal ReorderLevelGreaterThanOrEqualTo = null; public BigDecimal ReorderLevelGreaterThan = null; public BigDecimal ReorderLevelLessThan = null; public BigDecimal ReorderLevelLessThanOrEqualTo = null; public BigDecimal ReorderLevelNotEqualTo = null; public ArrayList ReorderLevelBetween = null; public ArrayList ReorderLevelIn = null; public BigDecimal Rate = null; public BigDecimal RateGreaterThanOrEqualTo = null; public BigDecimal RateGreaterThan = null; public BigDecimal RateLessThan = null; public BigDecimal RateLessThanOrEqualTo = null; public BigDecimal RateNotEqualTo = null; public ArrayList RateBetween = null; public ArrayList RateIn = null; public BigDecimal Ratio = null; public BigDecimal RatioGreaterThanOrEqualTo = null; public BigDecimal RatioGreaterThan = null; public BigDecimal RatioLessThan = null; public BigDecimal RatioLessThanOrEqualTo = null; public BigDecimal RatioNotEqualTo = null; public ArrayList RatioBetween = null; public ArrayList RatioIn = null; public Date CreatedDateTime = null; public Date CreatedDateTimeGreaterThanOrEqualTo = null; public Date CreatedDateTimeGreaterThan = null; public Date CreatedDateTimeLessThan = null; public Date CreatedDateTimeLessThanOrEqualTo = null; public Date CreatedDateTimeNotEqualTo = null; public ArrayList CreatedDateTimeBetween = null; public ArrayList CreatedDateTimeIn = null; public String CreatedBy_HR_Staff_RecID = null; public String CreatedBy_HR_Staff_RecIDStartsWith = null; public String CreatedBy_HR_Staff_RecIDEndsWith = null; public String CreatedBy_HR_Staff_RecIDContains = null; public String CreatedBy_HR_Staff_RecIDLike = null; public ArrayList CreatedBy_HR_Staff_RecIDBetween = null; public ArrayList CreatedBy_HR_Staff_RecIDIn = null; public Date LastSavedDateTime = null; public Date LastSavedDateTimeGreaterThanOrEqualTo = null; public Date LastSavedDateTimeGreaterThan = null; public Date LastSavedDateTimeLessThan = null; public Date LastSavedDateTimeLessThanOrEqualTo = null; public Date LastSavedDateTimeNotEqualTo = null; public ArrayList LastSavedDateTimeBetween = null; public ArrayList LastSavedDateTimeIn = null; public String LastSavedBy_HR_Staff_RecID = null; public String LastSavedBy_HR_Staff_RecIDStartsWith = null; public String LastSavedBy_HR_Staff_RecIDEndsWith = null; public String LastSavedBy_HR_Staff_RecIDContains = null; public String LastSavedBy_HR_Staff_RecIDLike = null; public ArrayList LastSavedBy_HR_Staff_RecIDBetween = null; public ArrayList LastSavedBy_HR_Staff_RecIDIn = null; public String UnearnedIncomeAccount_GL_Ledger_RecID = null; public String UnearnedIncomeAccount_GL_Ledger_RecIDStartsWith = null; public String UnearnedIncomeAccount_GL_Ledger_RecIDEndsWith = null; public String UnearnedIncomeAccount_GL_Ledger_RecIDContains = null; public String UnearnedIncomeAccount_GL_Ledger_RecIDLike = null; public ArrayList UnearnedIncomeAccount_GL_Ledger_RecIDBetween = null; public ArrayList UnearnedIncomeAccount_GL_Ledger_RecIDIn = null; public String IncomeAccount_GL_Ledger_RecID = null; public String IncomeAccount_GL_Ledger_RecIDStartsWith = null; public String IncomeAccount_GL_Ledger_RecIDEndsWith = null; public String IncomeAccount_GL_Ledger_RecIDContains = null; public String IncomeAccount_GL_Ledger_RecIDLike = null; public ArrayList IncomeAccount_GL_Ledger_RecIDBetween = null; public ArrayList IncomeAccount_GL_Ledger_RecIDIn = null; public Boolean SpecialUse = null; public ArrayList RowHash = null; public String PackNo = null; public String PackNoStartsWith = null; public String PackNoEndsWith = null; public String PackNoContains = null; public String PackNoLike = null; public ArrayList PackNoBetween = null; public ArrayList PackNoIn = null; public String getRecID() { return RecID; } public SM_PrepaidLabourPacksQuery setRecID(String value) { this.RecID = value; return this; } public String getRecIDStartsWith() { return RecIDStartsWith; } public SM_PrepaidLabourPacksQuery setRecIDStartsWith(String value) { this.RecIDStartsWith = value; return this; } public String getRecIDEndsWith() { return RecIDEndsWith; } public SM_PrepaidLabourPacksQuery setRecIDEndsWith(String value) { this.RecIDEndsWith = value; return this; } public String getRecIDContains() { return RecIDContains; } public SM_PrepaidLabourPacksQuery setRecIDContains(String value) { this.RecIDContains = value; return this; } public String getRecIDLike() { return RecIDLike; } public SM_PrepaidLabourPacksQuery setRecIDLike(String value) { this.RecIDLike = value; return this; } public ArrayList getRecIDBetween() { return RecIDBetween; } public SM_PrepaidLabourPacksQuery setRecIDBetween(ArrayList value) { this.RecIDBetween = value; return this; } public ArrayList getRecIDIn() { return RecIDIn; } public SM_PrepaidLabourPacksQuery setRecIDIn(ArrayList value) { this.RecIDIn = value; return this; } public String getName() { return Name; } public SM_PrepaidLabourPacksQuery setName(String value) { this.Name = value; return this; } public String getNameStartsWith() { return NameStartsWith; } public SM_PrepaidLabourPacksQuery setNameStartsWith(String value) { this.NameStartsWith = value; return this; } public String getNameEndsWith() { return NameEndsWith; } public SM_PrepaidLabourPacksQuery setNameEndsWith(String value) { this.NameEndsWith = value; return this; } public String getNameContains() { return NameContains; } public SM_PrepaidLabourPacksQuery setNameContains(String value) { this.NameContains = value; return this; } public String getNameLike() { return NameLike; } public SM_PrepaidLabourPacksQuery setNameLike(String value) { this.NameLike = value; return this; } public ArrayList getNameBetween() { return NameBetween; } public SM_PrepaidLabourPacksQuery setNameBetween(ArrayList value) { this.NameBetween = value; return this; } public ArrayList getNameIn() { return NameIn; } public SM_PrepaidLabourPacksQuery setNameIn(ArrayList value) { this.NameIn = value; return this; } public String getDescription() { return Description; } public SM_PrepaidLabourPacksQuery setDescription(String value) { this.Description = value; return this; } public String getDescriptionStartsWith() { return DescriptionStartsWith; } public SM_PrepaidLabourPacksQuery setDescriptionStartsWith(String value) { this.DescriptionStartsWith = value; return this; } public String getDescriptionEndsWith() { return DescriptionEndsWith; } public SM_PrepaidLabourPacksQuery setDescriptionEndsWith(String value) { this.DescriptionEndsWith = value; return this; } public String getDescriptionContains() { return DescriptionContains; } public SM_PrepaidLabourPacksQuery setDescriptionContains(String value) { this.DescriptionContains = value; return this; } public String getDescriptionLike() { return DescriptionLike; } public SM_PrepaidLabourPacksQuery setDescriptionLike(String value) { this.DescriptionLike = value; return this; } public ArrayList getDescriptionBetween() { return DescriptionBetween; } public SM_PrepaidLabourPacksQuery setDescriptionBetween(ArrayList value) { this.DescriptionBetween = value; return this; } public ArrayList getDescriptionIn() { return DescriptionIn; } public SM_PrepaidLabourPacksQuery setDescriptionIn(ArrayList value) { this.DescriptionIn = value; return this; } public Short getStatus() { return Status; } public SM_PrepaidLabourPacksQuery setStatus(Short value) { this.Status = value; return this; } public Short getStatusGreaterThanOrEqualTo() { return StatusGreaterThanOrEqualTo; } public SM_PrepaidLabourPacksQuery setStatusGreaterThanOrEqualTo(Short value) { this.StatusGreaterThanOrEqualTo = value; return this; } public Short getStatusGreaterThan() { return StatusGreaterThan; } public SM_PrepaidLabourPacksQuery setStatusGreaterThan(Short value) { this.StatusGreaterThan = value; return this; } public Short getStatusLessThan() { return StatusLessThan; } public SM_PrepaidLabourPacksQuery setStatusLessThan(Short value) { this.StatusLessThan = value; return this; } public Short getStatusLessThanOrEqualTo() { return StatusLessThanOrEqualTo; } public SM_PrepaidLabourPacksQuery setStatusLessThanOrEqualTo(Short value) { this.StatusLessThanOrEqualTo = value; return this; } public Short getStatusNotEqualTo() { return StatusNotEqualTo; } public SM_PrepaidLabourPacksQuery setStatusNotEqualTo(Short value) { this.StatusNotEqualTo = value; return this; } public ArrayList getStatusBetween() { return StatusBetween; } public SM_PrepaidLabourPacksQuery setStatusBetween(ArrayList value) { this.StatusBetween = value; return this; } public ArrayList getStatusIn() { return StatusIn; } public SM_PrepaidLabourPacksQuery setStatusIn(ArrayList value) { this.StatusIn = value; return this; } public String getDbMainRecID() { return DB_Main_RecID; } public SM_PrepaidLabourPacksQuery setDbMainRecID(String value) { this.DB_Main_RecID = value; return this; } public String getDbMainRecIDStartsWith() { return DB_Main_RecIDStartsWith; } public SM_PrepaidLabourPacksQuery setDbMainRecIDStartsWith(String value) { this.DB_Main_RecIDStartsWith = value; return this; } public String getDbMainRecIDEndsWith() { return DB_Main_RecIDEndsWith; } public SM_PrepaidLabourPacksQuery setDbMainRecIDEndsWith(String value) { this.DB_Main_RecIDEndsWith = value; return this; } public String getDbMainRecIDContains() { return DB_Main_RecIDContains; } public SM_PrepaidLabourPacksQuery setDbMainRecIDContains(String value) { this.DB_Main_RecIDContains = value; return this; } public String getDbMainRecIDLike() { return DB_Main_RecIDLike; } public SM_PrepaidLabourPacksQuery setDbMainRecIDLike(String value) { this.DB_Main_RecIDLike = value; return this; } public ArrayList getDbMainRecIDBetween() { return DB_Main_RecIDBetween; } public SM_PrepaidLabourPacksQuery setDbMainRecIDBetween(ArrayList value) { this.DB_Main_RecIDBetween = value; return this; } public ArrayList getDbMainRecIDIn() { return DB_Main_RecIDIn; } public SM_PrepaidLabourPacksQuery setDbMainRecIDIn(ArrayList value) { this.DB_Main_RecIDIn = value; return this; } public String getInvoiceSoMainRecID() { return Invoice_SO_Main_RecID; } public SM_PrepaidLabourPacksQuery setInvoiceSoMainRecID(String value) { this.Invoice_SO_Main_RecID = value; return this; } public String getInvoiceSoMainRecIDStartsWith() { return Invoice_SO_Main_RecIDStartsWith; } public SM_PrepaidLabourPacksQuery setInvoiceSoMainRecIDStartsWith(String value) { this.Invoice_SO_Main_RecIDStartsWith = value; return this; } public String getInvoiceSoMainRecIDEndsWith() { return Invoice_SO_Main_RecIDEndsWith; } public SM_PrepaidLabourPacksQuery setInvoiceSoMainRecIDEndsWith(String value) { this.Invoice_SO_Main_RecIDEndsWith = value; return this; } public String getInvoiceSoMainRecIDContains() { return Invoice_SO_Main_RecIDContains; } public SM_PrepaidLabourPacksQuery setInvoiceSoMainRecIDContains(String value) { this.Invoice_SO_Main_RecIDContains = value; return this; } public String getInvoiceSoMainRecIDLike() { return Invoice_SO_Main_RecIDLike; } public SM_PrepaidLabourPacksQuery setInvoiceSoMainRecIDLike(String value) { this.Invoice_SO_Main_RecIDLike = value; return this; } public ArrayList getInvoiceSoMainRecIDBetween() { return Invoice_SO_Main_RecIDBetween; } public SM_PrepaidLabourPacksQuery setInvoiceSoMainRecIDBetween(ArrayList value) { this.Invoice_SO_Main_RecIDBetween = value; return this; } public ArrayList getInvoiceSoMainRecIDIn() { return Invoice_SO_Main_RecIDIn; } public SM_PrepaidLabourPacksQuery setInvoiceSoMainRecIDIn(ArrayList value) { this.Invoice_SO_Main_RecIDIn = value; return this; } public String getCreditNoteSoMainRecID() { return CreditNote_SO_Main_RecID; } public SM_PrepaidLabourPacksQuery setCreditNoteSoMainRecID(String value) { this.CreditNote_SO_Main_RecID = value; return this; } public String getCreditNoteSoMainRecIDStartsWith() { return CreditNote_SO_Main_RecIDStartsWith; } public SM_PrepaidLabourPacksQuery setCreditNoteSoMainRecIDStartsWith(String value) { this.CreditNote_SO_Main_RecIDStartsWith = value; return this; } public String getCreditNoteSoMainRecIDEndsWith() { return CreditNote_SO_Main_RecIDEndsWith; } public SM_PrepaidLabourPacksQuery setCreditNoteSoMainRecIDEndsWith(String value) { this.CreditNote_SO_Main_RecIDEndsWith = value; return this; } public String getCreditNoteSoMainRecIDContains() { return CreditNote_SO_Main_RecIDContains; } public SM_PrepaidLabourPacksQuery setCreditNoteSoMainRecIDContains(String value) { this.CreditNote_SO_Main_RecIDContains = value; return this; } public String getCreditNoteSoMainRecIDLike() { return CreditNote_SO_Main_RecIDLike; } public SM_PrepaidLabourPacksQuery setCreditNoteSoMainRecIDLike(String value) { this.CreditNote_SO_Main_RecIDLike = value; return this; } public ArrayList getCreditNoteSoMainRecIDBetween() { return CreditNote_SO_Main_RecIDBetween; } public SM_PrepaidLabourPacksQuery setCreditNoteSoMainRecIDBetween(ArrayList value) { this.CreditNote_SO_Main_RecIDBetween = value; return this; } public ArrayList getCreditNoteSoMainRecIDIn() { return CreditNote_SO_Main_RecIDIn; } public SM_PrepaidLabourPacksQuery setCreditNoteSoMainRecIDIn(ArrayList value) { this.CreditNote_SO_Main_RecIDIn = value; return this; } public BigDecimal getTotalHours() { return TotalHours; } public SM_PrepaidLabourPacksQuery setTotalHours(BigDecimal value) { this.TotalHours = value; return this; } public BigDecimal getTotalHoursGreaterThanOrEqualTo() { return TotalHoursGreaterThanOrEqualTo; } public SM_PrepaidLabourPacksQuery setTotalHoursGreaterThanOrEqualTo(BigDecimal value) { this.TotalHoursGreaterThanOrEqualTo = value; return this; } public BigDecimal getTotalHoursGreaterThan() { return TotalHoursGreaterThan; } public SM_PrepaidLabourPacksQuery setTotalHoursGreaterThan(BigDecimal value) { this.TotalHoursGreaterThan = value; return this; } public BigDecimal getTotalHoursLessThan() { return TotalHoursLessThan; } public SM_PrepaidLabourPacksQuery setTotalHoursLessThan(BigDecimal value) { this.TotalHoursLessThan = value; return this; } public BigDecimal getTotalHoursLessThanOrEqualTo() { return TotalHoursLessThanOrEqualTo; } public SM_PrepaidLabourPacksQuery setTotalHoursLessThanOrEqualTo(BigDecimal value) { this.TotalHoursLessThanOrEqualTo = value; return this; } public BigDecimal getTotalHoursNotEqualTo() { return TotalHoursNotEqualTo; } public SM_PrepaidLabourPacksQuery setTotalHoursNotEqualTo(BigDecimal value) { this.TotalHoursNotEqualTo = value; return this; } public ArrayList getTotalHoursBetween() { return TotalHoursBetween; } public SM_PrepaidLabourPacksQuery setTotalHoursBetween(ArrayList value) { this.TotalHoursBetween = value; return this; } public ArrayList getTotalHoursIn() { return TotalHoursIn; } public SM_PrepaidLabourPacksQuery setTotalHoursIn(ArrayList value) { this.TotalHoursIn = value; return this; } public BigDecimal getReorderLevel() { return ReorderLevel; } public SM_PrepaidLabourPacksQuery setReorderLevel(BigDecimal value) { this.ReorderLevel = value; return this; } public BigDecimal getReorderLevelGreaterThanOrEqualTo() { return ReorderLevelGreaterThanOrEqualTo; } public SM_PrepaidLabourPacksQuery setReorderLevelGreaterThanOrEqualTo(BigDecimal value) { this.ReorderLevelGreaterThanOrEqualTo = value; return this; } public BigDecimal getReorderLevelGreaterThan() { return ReorderLevelGreaterThan; } public SM_PrepaidLabourPacksQuery setReorderLevelGreaterThan(BigDecimal value) { this.ReorderLevelGreaterThan = value; return this; } public BigDecimal getReorderLevelLessThan() { return ReorderLevelLessThan; } public SM_PrepaidLabourPacksQuery setReorderLevelLessThan(BigDecimal value) { this.ReorderLevelLessThan = value; return this; } public BigDecimal getReorderLevelLessThanOrEqualTo() { return ReorderLevelLessThanOrEqualTo; } public SM_PrepaidLabourPacksQuery setReorderLevelLessThanOrEqualTo(BigDecimal value) { this.ReorderLevelLessThanOrEqualTo = value; return this; } public BigDecimal getReorderLevelNotEqualTo() { return ReorderLevelNotEqualTo; } public SM_PrepaidLabourPacksQuery setReorderLevelNotEqualTo(BigDecimal value) { this.ReorderLevelNotEqualTo = value; return this; } public ArrayList getReorderLevelBetween() { return ReorderLevelBetween; } public SM_PrepaidLabourPacksQuery setReorderLevelBetween(ArrayList value) { this.ReorderLevelBetween = value; return this; } public ArrayList getReorderLevelIn() { return ReorderLevelIn; } public SM_PrepaidLabourPacksQuery setReorderLevelIn(ArrayList value) { this.ReorderLevelIn = value; return this; } public BigDecimal getRate() { return Rate; } public SM_PrepaidLabourPacksQuery setRate(BigDecimal value) { this.Rate = value; return this; } public BigDecimal getRateGreaterThanOrEqualTo() { return RateGreaterThanOrEqualTo; } public SM_PrepaidLabourPacksQuery setRateGreaterThanOrEqualTo(BigDecimal value) { this.RateGreaterThanOrEqualTo = value; return this; } public BigDecimal getRateGreaterThan() { return RateGreaterThan; } public SM_PrepaidLabourPacksQuery setRateGreaterThan(BigDecimal value) { this.RateGreaterThan = value; return this; } public BigDecimal getRateLessThan() { return RateLessThan; } public SM_PrepaidLabourPacksQuery setRateLessThan(BigDecimal value) { this.RateLessThan = value; return this; } public BigDecimal getRateLessThanOrEqualTo() { return RateLessThanOrEqualTo; } public SM_PrepaidLabourPacksQuery setRateLessThanOrEqualTo(BigDecimal value) { this.RateLessThanOrEqualTo = value; return this; } public BigDecimal getRateNotEqualTo() { return RateNotEqualTo; } public SM_PrepaidLabourPacksQuery setRateNotEqualTo(BigDecimal value) { this.RateNotEqualTo = value; return this; } public ArrayList getRateBetween() { return RateBetween; } public SM_PrepaidLabourPacksQuery setRateBetween(ArrayList value) { this.RateBetween = value; return this; } public ArrayList getRateIn() { return RateIn; } public SM_PrepaidLabourPacksQuery setRateIn(ArrayList value) { this.RateIn = value; return this; } public BigDecimal getRatio() { return Ratio; } public SM_PrepaidLabourPacksQuery setRatio(BigDecimal value) { this.Ratio = value; return this; } public BigDecimal getRatioGreaterThanOrEqualTo() { return RatioGreaterThanOrEqualTo; } public SM_PrepaidLabourPacksQuery setRatioGreaterThanOrEqualTo(BigDecimal value) { this.RatioGreaterThanOrEqualTo = value; return this; } public BigDecimal getRatioGreaterThan() { return RatioGreaterThan; } public SM_PrepaidLabourPacksQuery setRatioGreaterThan(BigDecimal value) { this.RatioGreaterThan = value; return this; } public BigDecimal getRatioLessThan() { return RatioLessThan; } public SM_PrepaidLabourPacksQuery setRatioLessThan(BigDecimal value) { this.RatioLessThan = value; return this; } public BigDecimal getRatioLessThanOrEqualTo() { return RatioLessThanOrEqualTo; } public SM_PrepaidLabourPacksQuery setRatioLessThanOrEqualTo(BigDecimal value) { this.RatioLessThanOrEqualTo = value; return this; } public BigDecimal getRatioNotEqualTo() { return RatioNotEqualTo; } public SM_PrepaidLabourPacksQuery setRatioNotEqualTo(BigDecimal value) { this.RatioNotEqualTo = value; return this; } public ArrayList getRatioBetween() { return RatioBetween; } public SM_PrepaidLabourPacksQuery setRatioBetween(ArrayList value) { this.RatioBetween = value; return this; } public ArrayList getRatioIn() { return RatioIn; } public SM_PrepaidLabourPacksQuery setRatioIn(ArrayList value) { this.RatioIn = value; return this; } public Date getCreatedDateTime() { return CreatedDateTime; } public SM_PrepaidLabourPacksQuery setCreatedDateTime(Date value) { this.CreatedDateTime = value; return this; } public Date getCreatedDateTimeGreaterThanOrEqualTo() { return CreatedDateTimeGreaterThanOrEqualTo; } public SM_PrepaidLabourPacksQuery setCreatedDateTimeGreaterThanOrEqualTo(Date value) { this.CreatedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getCreatedDateTimeGreaterThan() { return CreatedDateTimeGreaterThan; } public SM_PrepaidLabourPacksQuery setCreatedDateTimeGreaterThan(Date value) { this.CreatedDateTimeGreaterThan = value; return this; } public Date getCreatedDateTimeLessThan() { return CreatedDateTimeLessThan; } public SM_PrepaidLabourPacksQuery setCreatedDateTimeLessThan(Date value) { this.CreatedDateTimeLessThan = value; return this; } public Date getCreatedDateTimeLessThanOrEqualTo() { return CreatedDateTimeLessThanOrEqualTo; } public SM_PrepaidLabourPacksQuery setCreatedDateTimeLessThanOrEqualTo(Date value) { this.CreatedDateTimeLessThanOrEqualTo = value; return this; } public Date getCreatedDateTimeNotEqualTo() { return CreatedDateTimeNotEqualTo; } public SM_PrepaidLabourPacksQuery setCreatedDateTimeNotEqualTo(Date value) { this.CreatedDateTimeNotEqualTo = value; return this; } public ArrayList getCreatedDateTimeBetween() { return CreatedDateTimeBetween; } public SM_PrepaidLabourPacksQuery setCreatedDateTimeBetween(ArrayList value) { this.CreatedDateTimeBetween = value; return this; } public ArrayList getCreatedDateTimeIn() { return CreatedDateTimeIn; } public SM_PrepaidLabourPacksQuery setCreatedDateTimeIn(ArrayList value) { this.CreatedDateTimeIn = value; return this; } public String getCreatedByHrStaffRecID() { return CreatedBy_HR_Staff_RecID; } public SM_PrepaidLabourPacksQuery setCreatedByHrStaffRecID(String value) { this.CreatedBy_HR_Staff_RecID = value; return this; } public String getCreatedByHrStaffRecIDStartsWith() { return CreatedBy_HR_Staff_RecIDStartsWith; } public SM_PrepaidLabourPacksQuery setCreatedByHrStaffRecIDStartsWith(String value) { this.CreatedBy_HR_Staff_RecIDStartsWith = value; return this; } public String getCreatedByHrStaffRecIDEndsWith() { return CreatedBy_HR_Staff_RecIDEndsWith; } public SM_PrepaidLabourPacksQuery setCreatedByHrStaffRecIDEndsWith(String value) { this.CreatedBy_HR_Staff_RecIDEndsWith = value; return this; } public String getCreatedByHrStaffRecIDContains() { return CreatedBy_HR_Staff_RecIDContains; } public SM_PrepaidLabourPacksQuery setCreatedByHrStaffRecIDContains(String value) { this.CreatedBy_HR_Staff_RecIDContains = value; return this; } public String getCreatedByHrStaffRecIDLike() { return CreatedBy_HR_Staff_RecIDLike; } public SM_PrepaidLabourPacksQuery setCreatedByHrStaffRecIDLike(String value) { this.CreatedBy_HR_Staff_RecIDLike = value; return this; } public ArrayList getCreatedByHrStaffRecIDBetween() { return CreatedBy_HR_Staff_RecIDBetween; } public SM_PrepaidLabourPacksQuery setCreatedByHrStaffRecIDBetween(ArrayList value) { this.CreatedBy_HR_Staff_RecIDBetween = value; return this; } public ArrayList getCreatedByHrStaffRecIDIn() { return CreatedBy_HR_Staff_RecIDIn; } public SM_PrepaidLabourPacksQuery setCreatedByHrStaffRecIDIn(ArrayList value) { this.CreatedBy_HR_Staff_RecIDIn = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public SM_PrepaidLabourPacksQuery setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getLastSavedDateTimeGreaterThanOrEqualTo() { return LastSavedDateTimeGreaterThanOrEqualTo; } public SM_PrepaidLabourPacksQuery setLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.LastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeGreaterThan() { return LastSavedDateTimeGreaterThan; } public SM_PrepaidLabourPacksQuery setLastSavedDateTimeGreaterThan(Date value) { this.LastSavedDateTimeGreaterThan = value; return this; } public Date getLastSavedDateTimeLessThan() { return LastSavedDateTimeLessThan; } public SM_PrepaidLabourPacksQuery setLastSavedDateTimeLessThan(Date value) { this.LastSavedDateTimeLessThan = value; return this; } public Date getLastSavedDateTimeLessThanOrEqualTo() { return LastSavedDateTimeLessThanOrEqualTo; } public SM_PrepaidLabourPacksQuery setLastSavedDateTimeLessThanOrEqualTo(Date value) { this.LastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeNotEqualTo() { return LastSavedDateTimeNotEqualTo; } public SM_PrepaidLabourPacksQuery setLastSavedDateTimeNotEqualTo(Date value) { this.LastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getLastSavedDateTimeBetween() { return LastSavedDateTimeBetween; } public SM_PrepaidLabourPacksQuery setLastSavedDateTimeBetween(ArrayList value) { this.LastSavedDateTimeBetween = value; return this; } public ArrayList getLastSavedDateTimeIn() { return LastSavedDateTimeIn; } public SM_PrepaidLabourPacksQuery setLastSavedDateTimeIn(ArrayList value) { this.LastSavedDateTimeIn = value; return this; } public String getLastSavedByHrStaffRecID() { return LastSavedBy_HR_Staff_RecID; } public SM_PrepaidLabourPacksQuery setLastSavedByHrStaffRecID(String value) { this.LastSavedBy_HR_Staff_RecID = value; return this; } public String getLastSavedByHrStaffRecIDStartsWith() { return LastSavedBy_HR_Staff_RecIDStartsWith; } public SM_PrepaidLabourPacksQuery setLastSavedByHrStaffRecIDStartsWith(String value) { this.LastSavedBy_HR_Staff_RecIDStartsWith = value; return this; } public String getLastSavedByHrStaffRecIDEndsWith() { return LastSavedBy_HR_Staff_RecIDEndsWith; } public SM_PrepaidLabourPacksQuery setLastSavedByHrStaffRecIDEndsWith(String value) { this.LastSavedBy_HR_Staff_RecIDEndsWith = value; return this; } public String getLastSavedByHrStaffRecIDContains() { return LastSavedBy_HR_Staff_RecIDContains; } public SM_PrepaidLabourPacksQuery setLastSavedByHrStaffRecIDContains(String value) { this.LastSavedBy_HR_Staff_RecIDContains = value; return this; } public String getLastSavedByHrStaffRecIDLike() { return LastSavedBy_HR_Staff_RecIDLike; } public SM_PrepaidLabourPacksQuery setLastSavedByHrStaffRecIDLike(String value) { this.LastSavedBy_HR_Staff_RecIDLike = value; return this; } public ArrayList getLastSavedByHrStaffRecIDBetween() { return LastSavedBy_HR_Staff_RecIDBetween; } public SM_PrepaidLabourPacksQuery setLastSavedByHrStaffRecIDBetween(ArrayList value) { this.LastSavedBy_HR_Staff_RecIDBetween = value; return this; } public ArrayList getLastSavedByHrStaffRecIDIn() { return LastSavedBy_HR_Staff_RecIDIn; } public SM_PrepaidLabourPacksQuery setLastSavedByHrStaffRecIDIn(ArrayList value) { this.LastSavedBy_HR_Staff_RecIDIn = value; return this; } public String getUnearnedIncomeAccountGlLedgerRecID() { return UnearnedIncomeAccount_GL_Ledger_RecID; } public SM_PrepaidLabourPacksQuery setUnearnedIncomeAccountGlLedgerRecID(String value) { this.UnearnedIncomeAccount_GL_Ledger_RecID = value; return this; } public String getUnearnedIncomeAccountGlLedgerRecIDStartsWith() { return UnearnedIncomeAccount_GL_Ledger_RecIDStartsWith; } public SM_PrepaidLabourPacksQuery setUnearnedIncomeAccountGlLedgerRecIDStartsWith(String value) { this.UnearnedIncomeAccount_GL_Ledger_RecIDStartsWith = value; return this; } public String getUnearnedIncomeAccountGlLedgerRecIDEndsWith() { return UnearnedIncomeAccount_GL_Ledger_RecIDEndsWith; } public SM_PrepaidLabourPacksQuery setUnearnedIncomeAccountGlLedgerRecIDEndsWith(String value) { this.UnearnedIncomeAccount_GL_Ledger_RecIDEndsWith = value; return this; } public String getUnearnedIncomeAccountGlLedgerRecIDContains() { return UnearnedIncomeAccount_GL_Ledger_RecIDContains; } public SM_PrepaidLabourPacksQuery setUnearnedIncomeAccountGlLedgerRecIDContains(String value) { this.UnearnedIncomeAccount_GL_Ledger_RecIDContains = value; return this; } public String getUnearnedIncomeAccountGlLedgerRecIDLike() { return UnearnedIncomeAccount_GL_Ledger_RecIDLike; } public SM_PrepaidLabourPacksQuery setUnearnedIncomeAccountGlLedgerRecIDLike(String value) { this.UnearnedIncomeAccount_GL_Ledger_RecIDLike = value; return this; } public ArrayList getUnearnedIncomeAccountGlLedgerRecIDBetween() { return UnearnedIncomeAccount_GL_Ledger_RecIDBetween; } public SM_PrepaidLabourPacksQuery setUnearnedIncomeAccountGlLedgerRecIDBetween(ArrayList value) { this.UnearnedIncomeAccount_GL_Ledger_RecIDBetween = value; return this; } public ArrayList getUnearnedIncomeAccountGlLedgerRecIDIn() { return UnearnedIncomeAccount_GL_Ledger_RecIDIn; } public SM_PrepaidLabourPacksQuery setUnearnedIncomeAccountGlLedgerRecIDIn(ArrayList value) { this.UnearnedIncomeAccount_GL_Ledger_RecIDIn = value; return this; } public String getIncomeAccountGlLedgerRecID() { return IncomeAccount_GL_Ledger_RecID; } public SM_PrepaidLabourPacksQuery setIncomeAccountGlLedgerRecID(String value) { this.IncomeAccount_GL_Ledger_RecID = value; return this; } public String getIncomeAccountGlLedgerRecIDStartsWith() { return IncomeAccount_GL_Ledger_RecIDStartsWith; } public SM_PrepaidLabourPacksQuery setIncomeAccountGlLedgerRecIDStartsWith(String value) { this.IncomeAccount_GL_Ledger_RecIDStartsWith = value; return this; } public String getIncomeAccountGlLedgerRecIDEndsWith() { return IncomeAccount_GL_Ledger_RecIDEndsWith; } public SM_PrepaidLabourPacksQuery setIncomeAccountGlLedgerRecIDEndsWith(String value) { this.IncomeAccount_GL_Ledger_RecIDEndsWith = value; return this; } public String getIncomeAccountGlLedgerRecIDContains() { return IncomeAccount_GL_Ledger_RecIDContains; } public SM_PrepaidLabourPacksQuery setIncomeAccountGlLedgerRecIDContains(String value) { this.IncomeAccount_GL_Ledger_RecIDContains = value; return this; } public String getIncomeAccountGlLedgerRecIDLike() { return IncomeAccount_GL_Ledger_RecIDLike; } public SM_PrepaidLabourPacksQuery setIncomeAccountGlLedgerRecIDLike(String value) { this.IncomeAccount_GL_Ledger_RecIDLike = value; return this; } public ArrayList getIncomeAccountGlLedgerRecIDBetween() { return IncomeAccount_GL_Ledger_RecIDBetween; } public SM_PrepaidLabourPacksQuery setIncomeAccountGlLedgerRecIDBetween(ArrayList value) { this.IncomeAccount_GL_Ledger_RecIDBetween = value; return this; } public ArrayList getIncomeAccountGlLedgerRecIDIn() { return IncomeAccount_GL_Ledger_RecIDIn; } public SM_PrepaidLabourPacksQuery setIncomeAccountGlLedgerRecIDIn(ArrayList value) { this.IncomeAccount_GL_Ledger_RecIDIn = value; return this; } public Boolean isSpecialUse() { return SpecialUse; } public SM_PrepaidLabourPacksQuery setSpecialUse(Boolean value) { this.SpecialUse = value; return this; } public ArrayList getRowHash() { return RowHash; } public SM_PrepaidLabourPacksQuery setRowHash(ArrayList value) { this.RowHash = value; return this; } public String getPackNo() { return PackNo; } public SM_PrepaidLabourPacksQuery setPackNo(String value) { this.PackNo = value; return this; } public String getPackNoStartsWith() { return PackNoStartsWith; } public SM_PrepaidLabourPacksQuery setPackNoStartsWith(String value) { this.PackNoStartsWith = value; return this; } public String getPackNoEndsWith() { return PackNoEndsWith; } public SM_PrepaidLabourPacksQuery setPackNoEndsWith(String value) { this.PackNoEndsWith = value; return this; } public String getPackNoContains() { return PackNoContains; } public SM_PrepaidLabourPacksQuery setPackNoContains(String value) { this.PackNoContains = value; return this; } public String getPackNoLike() { return PackNoLike; } public SM_PrepaidLabourPacksQuery setPackNoLike(String value) { this.PackNoLike = value; return this; } public ArrayList getPackNoBetween() { return PackNoBetween; } public SM_PrepaidLabourPacksQuery setPackNoBetween(ArrayList value) { this.PackNoBetween = value; return this; } public ArrayList getPackNoIn() { return PackNoIn; } public SM_PrepaidLabourPacksQuery setPackNoIn(ArrayList value) { this.PackNoIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class SM_PrioritiesQuery extends QueryDb implements IReturn> { public String RecID = null; public String RecIDStartsWith = null; public String RecIDEndsWith = null; public String RecIDContains = null; public String RecIDLike = null; public ArrayList RecIDBetween = null; public ArrayList RecIDIn = null; public String Name = null; public String NameStartsWith = null; public String NameEndsWith = null; public String NameContains = null; public String NameLike = null; public ArrayList NameBetween = null; public ArrayList NameIn = null; public String Description = null; public String DescriptionStartsWith = null; public String DescriptionEndsWith = null; public String DescriptionContains = null; public String DescriptionLike = null; public ArrayList DescriptionBetween = null; public ArrayList DescriptionIn = null; public Integer ItemNo = null; public Integer ItemNoGreaterThanOrEqualTo = null; public Integer ItemNoGreaterThan = null; public Integer ItemNoLessThan = null; public Integer ItemNoLessThanOrEqualTo = null; public Integer ItemNoNotEqualTo = null; public ArrayList ItemNoBetween = null; public ArrayList ItemNoIn = null; public Boolean IsEnabled = null; public ArrayList RowHash = null; public Boolean IsDefault = null; public BigDecimal ResponseTime = null; public BigDecimal ResponseTimeGreaterThanOrEqualTo = null; public BigDecimal ResponseTimeGreaterThan = null; public BigDecimal ResponseTimeLessThan = null; public BigDecimal ResponseTimeLessThanOrEqualTo = null; public BigDecimal ResponseTimeNotEqualTo = null; public ArrayList ResponseTimeBetween = null; public ArrayList ResponseTimeIn = null; public Boolean Deadline = null; public String getRecID() { return RecID; } public SM_PrioritiesQuery setRecID(String value) { this.RecID = value; return this; } public String getRecIDStartsWith() { return RecIDStartsWith; } public SM_PrioritiesQuery setRecIDStartsWith(String value) { this.RecIDStartsWith = value; return this; } public String getRecIDEndsWith() { return RecIDEndsWith; } public SM_PrioritiesQuery setRecIDEndsWith(String value) { this.RecIDEndsWith = value; return this; } public String getRecIDContains() { return RecIDContains; } public SM_PrioritiesQuery setRecIDContains(String value) { this.RecIDContains = value; return this; } public String getRecIDLike() { return RecIDLike; } public SM_PrioritiesQuery setRecIDLike(String value) { this.RecIDLike = value; return this; } public ArrayList getRecIDBetween() { return RecIDBetween; } public SM_PrioritiesQuery setRecIDBetween(ArrayList value) { this.RecIDBetween = value; return this; } public ArrayList getRecIDIn() { return RecIDIn; } public SM_PrioritiesQuery setRecIDIn(ArrayList value) { this.RecIDIn = value; return this; } public String getName() { return Name; } public SM_PrioritiesQuery setName(String value) { this.Name = value; return this; } public String getNameStartsWith() { return NameStartsWith; } public SM_PrioritiesQuery setNameStartsWith(String value) { this.NameStartsWith = value; return this; } public String getNameEndsWith() { return NameEndsWith; } public SM_PrioritiesQuery setNameEndsWith(String value) { this.NameEndsWith = value; return this; } public String getNameContains() { return NameContains; } public SM_PrioritiesQuery setNameContains(String value) { this.NameContains = value; return this; } public String getNameLike() { return NameLike; } public SM_PrioritiesQuery setNameLike(String value) { this.NameLike = value; return this; } public ArrayList getNameBetween() { return NameBetween; } public SM_PrioritiesQuery setNameBetween(ArrayList value) { this.NameBetween = value; return this; } public ArrayList getNameIn() { return NameIn; } public SM_PrioritiesQuery setNameIn(ArrayList value) { this.NameIn = value; return this; } public String getDescription() { return Description; } public SM_PrioritiesQuery setDescription(String value) { this.Description = value; return this; } public String getDescriptionStartsWith() { return DescriptionStartsWith; } public SM_PrioritiesQuery setDescriptionStartsWith(String value) { this.DescriptionStartsWith = value; return this; } public String getDescriptionEndsWith() { return DescriptionEndsWith; } public SM_PrioritiesQuery setDescriptionEndsWith(String value) { this.DescriptionEndsWith = value; return this; } public String getDescriptionContains() { return DescriptionContains; } public SM_PrioritiesQuery setDescriptionContains(String value) { this.DescriptionContains = value; return this; } public String getDescriptionLike() { return DescriptionLike; } public SM_PrioritiesQuery setDescriptionLike(String value) { this.DescriptionLike = value; return this; } public ArrayList getDescriptionBetween() { return DescriptionBetween; } public SM_PrioritiesQuery setDescriptionBetween(ArrayList value) { this.DescriptionBetween = value; return this; } public ArrayList getDescriptionIn() { return DescriptionIn; } public SM_PrioritiesQuery setDescriptionIn(ArrayList value) { this.DescriptionIn = value; return this; } public Integer getItemNo() { return ItemNo; } public SM_PrioritiesQuery setItemNo(Integer value) { this.ItemNo = value; return this; } public Integer getItemNoGreaterThanOrEqualTo() { return ItemNoGreaterThanOrEqualTo; } public SM_PrioritiesQuery setItemNoGreaterThanOrEqualTo(Integer value) { this.ItemNoGreaterThanOrEqualTo = value; return this; } public Integer getItemNoGreaterThan() { return ItemNoGreaterThan; } public SM_PrioritiesQuery setItemNoGreaterThan(Integer value) { this.ItemNoGreaterThan = value; return this; } public Integer getItemNoLessThan() { return ItemNoLessThan; } public SM_PrioritiesQuery setItemNoLessThan(Integer value) { this.ItemNoLessThan = value; return this; } public Integer getItemNoLessThanOrEqualTo() { return ItemNoLessThanOrEqualTo; } public SM_PrioritiesQuery setItemNoLessThanOrEqualTo(Integer value) { this.ItemNoLessThanOrEqualTo = value; return this; } public Integer getItemNoNotEqualTo() { return ItemNoNotEqualTo; } public SM_PrioritiesQuery setItemNoNotEqualTo(Integer value) { this.ItemNoNotEqualTo = value; return this; } public ArrayList getItemNoBetween() { return ItemNoBetween; } public SM_PrioritiesQuery setItemNoBetween(ArrayList value) { this.ItemNoBetween = value; return this; } public ArrayList getItemNoIn() { return ItemNoIn; } public SM_PrioritiesQuery setItemNoIn(ArrayList value) { this.ItemNoIn = value; return this; } public Boolean getIsEnabled() { return IsEnabled; } public SM_PrioritiesQuery setIsEnabled(Boolean value) { this.IsEnabled = value; return this; } public ArrayList getRowHash() { return RowHash; } public SM_PrioritiesQuery setRowHash(ArrayList value) { this.RowHash = value; return this; } public Boolean getIsDefault() { return IsDefault; } public SM_PrioritiesQuery setIsDefault(Boolean value) { this.IsDefault = value; return this; } public BigDecimal getResponseTime() { return ResponseTime; } public SM_PrioritiesQuery setResponseTime(BigDecimal value) { this.ResponseTime = value; return this; } public BigDecimal getResponseTimeGreaterThanOrEqualTo() { return ResponseTimeGreaterThanOrEqualTo; } public SM_PrioritiesQuery setResponseTimeGreaterThanOrEqualTo(BigDecimal value) { this.ResponseTimeGreaterThanOrEqualTo = value; return this; } public BigDecimal getResponseTimeGreaterThan() { return ResponseTimeGreaterThan; } public SM_PrioritiesQuery setResponseTimeGreaterThan(BigDecimal value) { this.ResponseTimeGreaterThan = value; return this; } public BigDecimal getResponseTimeLessThan() { return ResponseTimeLessThan; } public SM_PrioritiesQuery setResponseTimeLessThan(BigDecimal value) { this.ResponseTimeLessThan = value; return this; } public BigDecimal getResponseTimeLessThanOrEqualTo() { return ResponseTimeLessThanOrEqualTo; } public SM_PrioritiesQuery setResponseTimeLessThanOrEqualTo(BigDecimal value) { this.ResponseTimeLessThanOrEqualTo = value; return this; } public BigDecimal getResponseTimeNotEqualTo() { return ResponseTimeNotEqualTo; } public SM_PrioritiesQuery setResponseTimeNotEqualTo(BigDecimal value) { this.ResponseTimeNotEqualTo = value; return this; } public ArrayList getResponseTimeBetween() { return ResponseTimeBetween; } public SM_PrioritiesQuery setResponseTimeBetween(ArrayList value) { this.ResponseTimeBetween = value; return this; } public ArrayList getResponseTimeIn() { return ResponseTimeIn; } public SM_PrioritiesQuery setResponseTimeIn(ArrayList value) { this.ResponseTimeIn = value; return this; } public Boolean isDeadline() { return Deadline; } public SM_PrioritiesQuery setDeadline(Boolean value) { this.Deadline = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class SM_SalesInvoiceNoSearchQuery extends QueryDb implements IReturn> { public String InvoiceNo = null; public String InvoiceNoStartsWith = null; public String InvoiceNoEndsWith = null; public String InvoiceNoContains = null; public String InvoiceNoLike = null; public ArrayList InvoiceNoBetween = null; public ArrayList InvoiceNoIn = null; public Date InvoiceInitDate = null; public Date InvoiceInitDateGreaterThanOrEqualTo = null; public Date InvoiceInitDateGreaterThan = null; public Date InvoiceInitDateLessThan = null; public Date InvoiceInitDateLessThanOrEqualTo = null; public Date InvoiceInitDateNotEqualTo = null; public ArrayList InvoiceInitDateBetween = null; public ArrayList InvoiceInitDateIn = null; public String AccountNo = null; public String AccountNoStartsWith = null; public String AccountNoEndsWith = null; public String AccountNoContains = null; public String AccountNoLike = null; public ArrayList AccountNoBetween = null; public ArrayList AccountNoIn = null; public String Name = null; public String NameStartsWith = null; public String NameEndsWith = null; public String NameContains = null; public String NameLike = null; public ArrayList NameBetween = null; public ArrayList NameIn = null; public String getInvoiceNo() { return InvoiceNo; } public SM_SalesInvoiceNoSearchQuery setInvoiceNo(String value) { this.InvoiceNo = value; return this; } public String getInvoiceNoStartsWith() { return InvoiceNoStartsWith; } public SM_SalesInvoiceNoSearchQuery setInvoiceNoStartsWith(String value) { this.InvoiceNoStartsWith = value; return this; } public String getInvoiceNoEndsWith() { return InvoiceNoEndsWith; } public SM_SalesInvoiceNoSearchQuery setInvoiceNoEndsWith(String value) { this.InvoiceNoEndsWith = value; return this; } public String getInvoiceNoContains() { return InvoiceNoContains; } public SM_SalesInvoiceNoSearchQuery setInvoiceNoContains(String value) { this.InvoiceNoContains = value; return this; } public String getInvoiceNoLike() { return InvoiceNoLike; } public SM_SalesInvoiceNoSearchQuery setInvoiceNoLike(String value) { this.InvoiceNoLike = value; return this; } public ArrayList getInvoiceNoBetween() { return InvoiceNoBetween; } public SM_SalesInvoiceNoSearchQuery setInvoiceNoBetween(ArrayList value) { this.InvoiceNoBetween = value; return this; } public ArrayList getInvoiceNoIn() { return InvoiceNoIn; } public SM_SalesInvoiceNoSearchQuery setInvoiceNoIn(ArrayList value) { this.InvoiceNoIn = value; return this; } public Date getInvoiceInitDate() { return InvoiceInitDate; } public SM_SalesInvoiceNoSearchQuery setInvoiceInitDate(Date value) { this.InvoiceInitDate = value; return this; } public Date getInvoiceInitDateGreaterThanOrEqualTo() { return InvoiceInitDateGreaterThanOrEqualTo; } public SM_SalesInvoiceNoSearchQuery setInvoiceInitDateGreaterThanOrEqualTo(Date value) { this.InvoiceInitDateGreaterThanOrEqualTo = value; return this; } public Date getInvoiceInitDateGreaterThan() { return InvoiceInitDateGreaterThan; } public SM_SalesInvoiceNoSearchQuery setInvoiceInitDateGreaterThan(Date value) { this.InvoiceInitDateGreaterThan = value; return this; } public Date getInvoiceInitDateLessThan() { return InvoiceInitDateLessThan; } public SM_SalesInvoiceNoSearchQuery setInvoiceInitDateLessThan(Date value) { this.InvoiceInitDateLessThan = value; return this; } public Date getInvoiceInitDateLessThanOrEqualTo() { return InvoiceInitDateLessThanOrEqualTo; } public SM_SalesInvoiceNoSearchQuery setInvoiceInitDateLessThanOrEqualTo(Date value) { this.InvoiceInitDateLessThanOrEqualTo = value; return this; } public Date getInvoiceInitDateNotEqualTo() { return InvoiceInitDateNotEqualTo; } public SM_SalesInvoiceNoSearchQuery setInvoiceInitDateNotEqualTo(Date value) { this.InvoiceInitDateNotEqualTo = value; return this; } public ArrayList getInvoiceInitDateBetween() { return InvoiceInitDateBetween; } public SM_SalesInvoiceNoSearchQuery setInvoiceInitDateBetween(ArrayList value) { this.InvoiceInitDateBetween = value; return this; } public ArrayList getInvoiceInitDateIn() { return InvoiceInitDateIn; } public SM_SalesInvoiceNoSearchQuery setInvoiceInitDateIn(ArrayList value) { this.InvoiceInitDateIn = value; return this; } public String getAccountNo() { return AccountNo; } public SM_SalesInvoiceNoSearchQuery setAccountNo(String value) { this.AccountNo = value; return this; } public String getAccountNoStartsWith() { return AccountNoStartsWith; } public SM_SalesInvoiceNoSearchQuery setAccountNoStartsWith(String value) { this.AccountNoStartsWith = value; return this; } public String getAccountNoEndsWith() { return AccountNoEndsWith; } public SM_SalesInvoiceNoSearchQuery setAccountNoEndsWith(String value) { this.AccountNoEndsWith = value; return this; } public String getAccountNoContains() { return AccountNoContains; } public SM_SalesInvoiceNoSearchQuery setAccountNoContains(String value) { this.AccountNoContains = value; return this; } public String getAccountNoLike() { return AccountNoLike; } public SM_SalesInvoiceNoSearchQuery setAccountNoLike(String value) { this.AccountNoLike = value; return this; } public ArrayList getAccountNoBetween() { return AccountNoBetween; } public SM_SalesInvoiceNoSearchQuery setAccountNoBetween(ArrayList value) { this.AccountNoBetween = value; return this; } public ArrayList getAccountNoIn() { return AccountNoIn; } public SM_SalesInvoiceNoSearchQuery setAccountNoIn(ArrayList value) { this.AccountNoIn = value; return this; } public String getName() { return Name; } public SM_SalesInvoiceNoSearchQuery setName(String value) { this.Name = value; return this; } public String getNameStartsWith() { return NameStartsWith; } public SM_SalesInvoiceNoSearchQuery setNameStartsWith(String value) { this.NameStartsWith = value; return this; } public String getNameEndsWith() { return NameEndsWith; } public SM_SalesInvoiceNoSearchQuery setNameEndsWith(String value) { this.NameEndsWith = value; return this; } public String getNameContains() { return NameContains; } public SM_SalesInvoiceNoSearchQuery setNameContains(String value) { this.NameContains = value; return this; } public String getNameLike() { return NameLike; } public SM_SalesInvoiceNoSearchQuery setNameLike(String value) { this.NameLike = value; return this; } public ArrayList getNameBetween() { return NameBetween; } public SM_SalesInvoiceNoSearchQuery setNameBetween(ArrayList value) { this.NameBetween = value; return this; } public ArrayList getNameIn() { return NameIn; } public SM_SalesInvoiceNoSearchQuery setNameIn(ArrayList value) { this.NameIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class SM_StatusesQuery extends QueryDb implements IReturn> { public String RecID = null; public String RecIDStartsWith = null; public String RecIDEndsWith = null; public String RecIDContains = null; public String RecIDLike = null; public ArrayList RecIDBetween = null; public ArrayList RecIDIn = null; public String Name = null; public String NameStartsWith = null; public String NameEndsWith = null; public String NameContains = null; public String NameLike = null; public ArrayList NameBetween = null; public ArrayList NameIn = null; public String Description = null; public String DescriptionStartsWith = null; public String DescriptionEndsWith = null; public String DescriptionContains = null; public String DescriptionLike = null; public ArrayList DescriptionBetween = null; public ArrayList DescriptionIn = null; public Integer ItemNo = null; public Integer ItemNoGreaterThanOrEqualTo = null; public Integer ItemNoGreaterThan = null; public Integer ItemNoLessThan = null; public Integer ItemNoLessThanOrEqualTo = null; public Integer ItemNoNotEqualTo = null; public ArrayList ItemNoBetween = null; public ArrayList ItemNoIn = null; public Boolean IsEnabled = null; public ArrayList RowHash = null; public Boolean IsDefault = null; public String getRecID() { return RecID; } public SM_StatusesQuery setRecID(String value) { this.RecID = value; return this; } public String getRecIDStartsWith() { return RecIDStartsWith; } public SM_StatusesQuery setRecIDStartsWith(String value) { this.RecIDStartsWith = value; return this; } public String getRecIDEndsWith() { return RecIDEndsWith; } public SM_StatusesQuery setRecIDEndsWith(String value) { this.RecIDEndsWith = value; return this; } public String getRecIDContains() { return RecIDContains; } public SM_StatusesQuery setRecIDContains(String value) { this.RecIDContains = value; return this; } public String getRecIDLike() { return RecIDLike; } public SM_StatusesQuery setRecIDLike(String value) { this.RecIDLike = value; return this; } public ArrayList getRecIDBetween() { return RecIDBetween; } public SM_StatusesQuery setRecIDBetween(ArrayList value) { this.RecIDBetween = value; return this; } public ArrayList getRecIDIn() { return RecIDIn; } public SM_StatusesQuery setRecIDIn(ArrayList value) { this.RecIDIn = value; return this; } public String getName() { return Name; } public SM_StatusesQuery setName(String value) { this.Name = value; return this; } public String getNameStartsWith() { return NameStartsWith; } public SM_StatusesQuery setNameStartsWith(String value) { this.NameStartsWith = value; return this; } public String getNameEndsWith() { return NameEndsWith; } public SM_StatusesQuery setNameEndsWith(String value) { this.NameEndsWith = value; return this; } public String getNameContains() { return NameContains; } public SM_StatusesQuery setNameContains(String value) { this.NameContains = value; return this; } public String getNameLike() { return NameLike; } public SM_StatusesQuery setNameLike(String value) { this.NameLike = value; return this; } public ArrayList getNameBetween() { return NameBetween; } public SM_StatusesQuery setNameBetween(ArrayList value) { this.NameBetween = value; return this; } public ArrayList getNameIn() { return NameIn; } public SM_StatusesQuery setNameIn(ArrayList value) { this.NameIn = value; return this; } public String getDescription() { return Description; } public SM_StatusesQuery setDescription(String value) { this.Description = value; return this; } public String getDescriptionStartsWith() { return DescriptionStartsWith; } public SM_StatusesQuery setDescriptionStartsWith(String value) { this.DescriptionStartsWith = value; return this; } public String getDescriptionEndsWith() { return DescriptionEndsWith; } public SM_StatusesQuery setDescriptionEndsWith(String value) { this.DescriptionEndsWith = value; return this; } public String getDescriptionContains() { return DescriptionContains; } public SM_StatusesQuery setDescriptionContains(String value) { this.DescriptionContains = value; return this; } public String getDescriptionLike() { return DescriptionLike; } public SM_StatusesQuery setDescriptionLike(String value) { this.DescriptionLike = value; return this; } public ArrayList getDescriptionBetween() { return DescriptionBetween; } public SM_StatusesQuery setDescriptionBetween(ArrayList value) { this.DescriptionBetween = value; return this; } public ArrayList getDescriptionIn() { return DescriptionIn; } public SM_StatusesQuery setDescriptionIn(ArrayList value) { this.DescriptionIn = value; return this; } public Integer getItemNo() { return ItemNo; } public SM_StatusesQuery setItemNo(Integer value) { this.ItemNo = value; return this; } public Integer getItemNoGreaterThanOrEqualTo() { return ItemNoGreaterThanOrEqualTo; } public SM_StatusesQuery setItemNoGreaterThanOrEqualTo(Integer value) { this.ItemNoGreaterThanOrEqualTo = value; return this; } public Integer getItemNoGreaterThan() { return ItemNoGreaterThan; } public SM_StatusesQuery setItemNoGreaterThan(Integer value) { this.ItemNoGreaterThan = value; return this; } public Integer getItemNoLessThan() { return ItemNoLessThan; } public SM_StatusesQuery setItemNoLessThan(Integer value) { this.ItemNoLessThan = value; return this; } public Integer getItemNoLessThanOrEqualTo() { return ItemNoLessThanOrEqualTo; } public SM_StatusesQuery setItemNoLessThanOrEqualTo(Integer value) { this.ItemNoLessThanOrEqualTo = value; return this; } public Integer getItemNoNotEqualTo() { return ItemNoNotEqualTo; } public SM_StatusesQuery setItemNoNotEqualTo(Integer value) { this.ItemNoNotEqualTo = value; return this; } public ArrayList getItemNoBetween() { return ItemNoBetween; } public SM_StatusesQuery setItemNoBetween(ArrayList value) { this.ItemNoBetween = value; return this; } public ArrayList getItemNoIn() { return ItemNoIn; } public SM_StatusesQuery setItemNoIn(ArrayList value) { this.ItemNoIn = value; return this; } public Boolean getIsEnabled() { return IsEnabled; } public SM_StatusesQuery setIsEnabled(Boolean value) { this.IsEnabled = value; return this; } public ArrayList getRowHash() { return RowHash; } public SM_StatusesQuery setRowHash(ArrayList value) { this.RowHash = value; return this; } public Boolean getIsDefault() { return IsDefault; } public SM_StatusesQuery setIsDefault(Boolean value) { this.IsDefault = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class SM_TasksQuery extends QueryDb implements IReturn> { public String RecID = null; public String RecIDStartsWith = null; public String RecIDEndsWith = null; public String RecIDContains = null; public String RecIDLike = null; public ArrayList RecIDBetween = null; public ArrayList RecIDIn = null; public Integer TaskNo = null; public Integer TaskNoGreaterThanOrEqualTo = null; public Integer TaskNoGreaterThan = null; public Integer TaskNoLessThan = null; public Integer TaskNoLessThanOrEqualTo = null; public Integer TaskNoNotEqualTo = null; public ArrayList TaskNoBetween = null; public ArrayList TaskNoIn = null; public String SM_Jobs_RecID = null; public String SM_Jobs_RecIDStartsWith = null; public String SM_Jobs_RecIDEndsWith = null; public String SM_Jobs_RecIDContains = null; public String SM_Jobs_RecIDLike = null; public ArrayList SM_Jobs_RecIDBetween = null; public ArrayList SM_Jobs_RecIDIn = null; public String HR_Departments_RecID = null; public String HR_Departments_RecIDStartsWith = null; public String HR_Departments_RecIDEndsWith = null; public String HR_Departments_RecIDContains = null; public String HR_Departments_RecIDLike = null; public ArrayList HR_Departments_RecIDBetween = null; public ArrayList HR_Departments_RecIDIn = null; public String HR_DepartmentCategories_RecID = null; public String HR_DepartmentCategories_RecIDStartsWith = null; public String HR_DepartmentCategories_RecIDEndsWith = null; public String HR_DepartmentCategories_RecIDContains = null; public String HR_DepartmentCategories_RecIDLike = null; public ArrayList HR_DepartmentCategories_RecIDBetween = null; public ArrayList HR_DepartmentCategories_RecIDIn = null; public String SM_Priorities_RecID = null; public String SM_Priorities_RecIDStartsWith = null; public String SM_Priorities_RecIDEndsWith = null; public String SM_Priorities_RecIDContains = null; public String SM_Priorities_RecIDLike = null; public ArrayList SM_Priorities_RecIDBetween = null; public ArrayList SM_Priorities_RecIDIn = null; public String SM_Statuses_RecID = null; public String SM_Statuses_RecIDStartsWith = null; public String SM_Statuses_RecIDEndsWith = null; public String SM_Statuses_RecIDContains = null; public String SM_Statuses_RecIDLike = null; public ArrayList SM_Statuses_RecIDBetween = null; public ArrayList SM_Statuses_RecIDIn = null; public String AssignedTo_HR_Staff_RecID = null; public String AssignedTo_HR_Staff_RecIDStartsWith = null; public String AssignedTo_HR_Staff_RecIDEndsWith = null; public String AssignedTo_HR_Staff_RecIDContains = null; public String AssignedTo_HR_Staff_RecIDLike = null; public ArrayList AssignedTo_HR_Staff_RecIDBetween = null; public ArrayList AssignedTo_HR_Staff_RecIDIn = null; public String Description = null; public String DescriptionStartsWith = null; public String DescriptionEndsWith = null; public String DescriptionContains = null; public String DescriptionLike = null; public ArrayList DescriptionBetween = null; public ArrayList DescriptionIn = null; public String Note = null; public String NoteStartsWith = null; public String NoteEndsWith = null; public String NoteContains = null; public String NoteLike = null; public ArrayList NoteBetween = null; public ArrayList NoteIn = null; public Date DateLogged = null; public Date DateLoggedGreaterThanOrEqualTo = null; public Date DateLoggedGreaterThan = null; public Date DateLoggedLessThan = null; public Date DateLoggedLessThanOrEqualTo = null; public Date DateLoggedNotEqualTo = null; public ArrayList DateLoggedBetween = null; public ArrayList DateLoggedIn = null; public String LoggedBy_HR_Staff_RecID = null; public String LoggedBy_HR_Staff_RecIDStartsWith = null; public String LoggedBy_HR_Staff_RecIDEndsWith = null; public String LoggedBy_HR_Staff_RecIDContains = null; public String LoggedBy_HR_Staff_RecIDLike = null; public ArrayList LoggedBy_HR_Staff_RecIDBetween = null; public ArrayList LoggedBy_HR_Staff_RecIDIn = null; public Boolean HasDeadline = null; public Date Deadline = null; public Date DeadlineGreaterThanOrEqualTo = null; public Date DeadlineGreaterThan = null; public Date DeadlineLessThan = null; public Date DeadlineLessThanOrEqualTo = null; public Date DeadlineNotEqualTo = null; public ArrayList DeadlineBetween = null; public ArrayList DeadlineIn = null; public Date CompletionDate = null; public Date CompletionDateGreaterThanOrEqualTo = null; public Date CompletionDateGreaterThan = null; public Date CompletionDateLessThan = null; public Date CompletionDateLessThanOrEqualTo = null; public Date CompletionDateNotEqualTo = null; public ArrayList CompletionDateBetween = null; public ArrayList CompletionDateIn = null; public Date LastSavedDateTime = null; public Date LastSavedDateTimeGreaterThanOrEqualTo = null; public Date LastSavedDateTimeGreaterThan = null; public Date LastSavedDateTimeLessThan = null; public Date LastSavedDateTimeLessThanOrEqualTo = null; public Date LastSavedDateTimeNotEqualTo = null; public ArrayList LastSavedDateTimeBetween = null; public ArrayList LastSavedDateTimeIn = null; public String LastSaved_HR_Staff_RecID = null; public String LastSaved_HR_Staff_RecIDStartsWith = null; public String LastSaved_HR_Staff_RecIDEndsWith = null; public String LastSaved_HR_Staff_RecIDContains = null; public String LastSaved_HR_Staff_RecIDLike = null; public ArrayList LastSaved_HR_Staff_RecIDBetween = null; public ArrayList LastSaved_HR_Staff_RecIDIn = null; public String SM_PrepaidLabourPacks_RecID = null; public String SM_PrepaidLabourPacks_RecIDStartsWith = null; public String SM_PrepaidLabourPacks_RecIDEndsWith = null; public String SM_PrepaidLabourPacks_RecIDContains = null; public String SM_PrepaidLabourPacks_RecIDLike = null; public ArrayList SM_PrepaidLabourPacks_RecIDBetween = null; public ArrayList SM_PrepaidLabourPacks_RecIDIn = null; public String DB_DeliveryAddress_RecID = null; public String DB_DeliveryAddress_RecIDStartsWith = null; public String DB_DeliveryAddress_RecIDEndsWith = null; public String DB_DeliveryAddress_RecIDContains = null; public String DB_DeliveryAddress_RecIDLike = null; public ArrayList DB_DeliveryAddress_RecIDBetween = null; public ArrayList DB_DeliveryAddress_RecIDIn = null; public String DB_DebtorSystems_RecID = null; public String DB_DebtorSystems_RecIDStartsWith = null; public String DB_DebtorSystems_RecIDEndsWith = null; public String DB_DebtorSystems_RecIDContains = null; public String DB_DebtorSystems_RecIDLike = null; public ArrayList DB_DebtorSystems_RecIDBetween = null; public ArrayList DB_DebtorSystems_RecIDIn = null; public Boolean IsRetired = null; public ArrayList RowHash = null; public String BillingDebtor_DB_Main_RecID = null; public String BillingDebtor_DB_Main_RecIDStartsWith = null; public String BillingDebtor_DB_Main_RecIDEndsWith = null; public String BillingDebtor_DB_Main_RecIDContains = null; public String BillingDebtor_DB_Main_RecIDLike = null; public ArrayList BillingDebtor_DB_Main_RecIDBetween = null; public ArrayList BillingDebtor_DB_Main_RecIDIn = null; public String BillingDebtor_DB_DeliveryAddress_RecID = null; public String BillingDebtor_DB_DeliveryAddress_RecIDStartsWith = null; public String BillingDebtor_DB_DeliveryAddress_RecIDEndsWith = null; public String BillingDebtor_DB_DeliveryAddress_RecIDContains = null; public String BillingDebtor_DB_DeliveryAddress_RecIDLike = null; public ArrayList BillingDebtor_DB_DeliveryAddress_RecIDBetween = null; public ArrayList BillingDebtor_DB_DeliveryAddress_RecIDIn = null; public String getRecID() { return RecID; } public SM_TasksQuery setRecID(String value) { this.RecID = value; return this; } public String getRecIDStartsWith() { return RecIDStartsWith; } public SM_TasksQuery setRecIDStartsWith(String value) { this.RecIDStartsWith = value; return this; } public String getRecIDEndsWith() { return RecIDEndsWith; } public SM_TasksQuery setRecIDEndsWith(String value) { this.RecIDEndsWith = value; return this; } public String getRecIDContains() { return RecIDContains; } public SM_TasksQuery setRecIDContains(String value) { this.RecIDContains = value; return this; } public String getRecIDLike() { return RecIDLike; } public SM_TasksQuery setRecIDLike(String value) { this.RecIDLike = value; return this; } public ArrayList getRecIDBetween() { return RecIDBetween; } public SM_TasksQuery setRecIDBetween(ArrayList value) { this.RecIDBetween = value; return this; } public ArrayList getRecIDIn() { return RecIDIn; } public SM_TasksQuery setRecIDIn(ArrayList value) { this.RecIDIn = value; return this; } public Integer getTaskNo() { return TaskNo; } public SM_TasksQuery setTaskNo(Integer value) { this.TaskNo = value; return this; } public Integer getTaskNoGreaterThanOrEqualTo() { return TaskNoGreaterThanOrEqualTo; } public SM_TasksQuery setTaskNoGreaterThanOrEqualTo(Integer value) { this.TaskNoGreaterThanOrEqualTo = value; return this; } public Integer getTaskNoGreaterThan() { return TaskNoGreaterThan; } public SM_TasksQuery setTaskNoGreaterThan(Integer value) { this.TaskNoGreaterThan = value; return this; } public Integer getTaskNoLessThan() { return TaskNoLessThan; } public SM_TasksQuery setTaskNoLessThan(Integer value) { this.TaskNoLessThan = value; return this; } public Integer getTaskNoLessThanOrEqualTo() { return TaskNoLessThanOrEqualTo; } public SM_TasksQuery setTaskNoLessThanOrEqualTo(Integer value) { this.TaskNoLessThanOrEqualTo = value; return this; } public Integer getTaskNoNotEqualTo() { return TaskNoNotEqualTo; } public SM_TasksQuery setTaskNoNotEqualTo(Integer value) { this.TaskNoNotEqualTo = value; return this; } public ArrayList getTaskNoBetween() { return TaskNoBetween; } public SM_TasksQuery setTaskNoBetween(ArrayList value) { this.TaskNoBetween = value; return this; } public ArrayList getTaskNoIn() { return TaskNoIn; } public SM_TasksQuery setTaskNoIn(ArrayList value) { this.TaskNoIn = value; return this; } public String getSmJobsRecID() { return SM_Jobs_RecID; } public SM_TasksQuery setSmJobsRecID(String value) { this.SM_Jobs_RecID = value; return this; } public String getSmJobsRecIDStartsWith() { return SM_Jobs_RecIDStartsWith; } public SM_TasksQuery setSmJobsRecIDStartsWith(String value) { this.SM_Jobs_RecIDStartsWith = value; return this; } public String getSmJobsRecIDEndsWith() { return SM_Jobs_RecIDEndsWith; } public SM_TasksQuery setSmJobsRecIDEndsWith(String value) { this.SM_Jobs_RecIDEndsWith = value; return this; } public String getSmJobsRecIDContains() { return SM_Jobs_RecIDContains; } public SM_TasksQuery setSmJobsRecIDContains(String value) { this.SM_Jobs_RecIDContains = value; return this; } public String getSmJobsRecIDLike() { return SM_Jobs_RecIDLike; } public SM_TasksQuery setSmJobsRecIDLike(String value) { this.SM_Jobs_RecIDLike = value; return this; } public ArrayList getSmJobsRecIDBetween() { return SM_Jobs_RecIDBetween; } public SM_TasksQuery setSmJobsRecIDBetween(ArrayList value) { this.SM_Jobs_RecIDBetween = value; return this; } public ArrayList getSmJobsRecIDIn() { return SM_Jobs_RecIDIn; } public SM_TasksQuery setSmJobsRecIDIn(ArrayList value) { this.SM_Jobs_RecIDIn = value; return this; } public String getHrDepartmentsRecID() { return HR_Departments_RecID; } public SM_TasksQuery setHrDepartmentsRecID(String value) { this.HR_Departments_RecID = value; return this; } public String getHrDepartmentsRecIDStartsWith() { return HR_Departments_RecIDStartsWith; } public SM_TasksQuery setHrDepartmentsRecIDStartsWith(String value) { this.HR_Departments_RecIDStartsWith = value; return this; } public String getHrDepartmentsRecIDEndsWith() { return HR_Departments_RecIDEndsWith; } public SM_TasksQuery setHrDepartmentsRecIDEndsWith(String value) { this.HR_Departments_RecIDEndsWith = value; return this; } public String getHrDepartmentsRecIDContains() { return HR_Departments_RecIDContains; } public SM_TasksQuery setHrDepartmentsRecIDContains(String value) { this.HR_Departments_RecIDContains = value; return this; } public String getHrDepartmentsRecIDLike() { return HR_Departments_RecIDLike; } public SM_TasksQuery setHrDepartmentsRecIDLike(String value) { this.HR_Departments_RecIDLike = value; return this; } public ArrayList getHrDepartmentsRecIDBetween() { return HR_Departments_RecIDBetween; } public SM_TasksQuery setHrDepartmentsRecIDBetween(ArrayList value) { this.HR_Departments_RecIDBetween = value; return this; } public ArrayList getHrDepartmentsRecIDIn() { return HR_Departments_RecIDIn; } public SM_TasksQuery setHrDepartmentsRecIDIn(ArrayList value) { this.HR_Departments_RecIDIn = value; return this; } public String getHrDepartmentCategoriesRecID() { return HR_DepartmentCategories_RecID; } public SM_TasksQuery setHrDepartmentCategoriesRecID(String value) { this.HR_DepartmentCategories_RecID = value; return this; } public String getHrDepartmentCategoriesRecIDStartsWith() { return HR_DepartmentCategories_RecIDStartsWith; } public SM_TasksQuery setHrDepartmentCategoriesRecIDStartsWith(String value) { this.HR_DepartmentCategories_RecIDStartsWith = value; return this; } public String getHrDepartmentCategoriesRecIDEndsWith() { return HR_DepartmentCategories_RecIDEndsWith; } public SM_TasksQuery setHrDepartmentCategoriesRecIDEndsWith(String value) { this.HR_DepartmentCategories_RecIDEndsWith = value; return this; } public String getHrDepartmentCategoriesRecIDContains() { return HR_DepartmentCategories_RecIDContains; } public SM_TasksQuery setHrDepartmentCategoriesRecIDContains(String value) { this.HR_DepartmentCategories_RecIDContains = value; return this; } public String getHrDepartmentCategoriesRecIDLike() { return HR_DepartmentCategories_RecIDLike; } public SM_TasksQuery setHrDepartmentCategoriesRecIDLike(String value) { this.HR_DepartmentCategories_RecIDLike = value; return this; } public ArrayList getHrDepartmentCategoriesRecIDBetween() { return HR_DepartmentCategories_RecIDBetween; } public SM_TasksQuery setHrDepartmentCategoriesRecIDBetween(ArrayList value) { this.HR_DepartmentCategories_RecIDBetween = value; return this; } public ArrayList getHrDepartmentCategoriesRecIDIn() { return HR_DepartmentCategories_RecIDIn; } public SM_TasksQuery setHrDepartmentCategoriesRecIDIn(ArrayList value) { this.HR_DepartmentCategories_RecIDIn = value; return this; } public String getSmPrioritiesRecID() { return SM_Priorities_RecID; } public SM_TasksQuery setSmPrioritiesRecID(String value) { this.SM_Priorities_RecID = value; return this; } public String getSmPrioritiesRecIDStartsWith() { return SM_Priorities_RecIDStartsWith; } public SM_TasksQuery setSmPrioritiesRecIDStartsWith(String value) { this.SM_Priorities_RecIDStartsWith = value; return this; } public String getSmPrioritiesRecIDEndsWith() { return SM_Priorities_RecIDEndsWith; } public SM_TasksQuery setSmPrioritiesRecIDEndsWith(String value) { this.SM_Priorities_RecIDEndsWith = value; return this; } public String getSmPrioritiesRecIDContains() { return SM_Priorities_RecIDContains; } public SM_TasksQuery setSmPrioritiesRecIDContains(String value) { this.SM_Priorities_RecIDContains = value; return this; } public String getSmPrioritiesRecIDLike() { return SM_Priorities_RecIDLike; } public SM_TasksQuery setSmPrioritiesRecIDLike(String value) { this.SM_Priorities_RecIDLike = value; return this; } public ArrayList getSmPrioritiesRecIDBetween() { return SM_Priorities_RecIDBetween; } public SM_TasksQuery setSmPrioritiesRecIDBetween(ArrayList value) { this.SM_Priorities_RecIDBetween = value; return this; } public ArrayList getSmPrioritiesRecIDIn() { return SM_Priorities_RecIDIn; } public SM_TasksQuery setSmPrioritiesRecIDIn(ArrayList value) { this.SM_Priorities_RecIDIn = value; return this; } public String getSmStatusesRecID() { return SM_Statuses_RecID; } public SM_TasksQuery setSmStatusesRecID(String value) { this.SM_Statuses_RecID = value; return this; } public String getSmStatusesRecIDStartsWith() { return SM_Statuses_RecIDStartsWith; } public SM_TasksQuery setSmStatusesRecIDStartsWith(String value) { this.SM_Statuses_RecIDStartsWith = value; return this; } public String getSmStatusesRecIDEndsWith() { return SM_Statuses_RecIDEndsWith; } public SM_TasksQuery setSmStatusesRecIDEndsWith(String value) { this.SM_Statuses_RecIDEndsWith = value; return this; } public String getSmStatusesRecIDContains() { return SM_Statuses_RecIDContains; } public SM_TasksQuery setSmStatusesRecIDContains(String value) { this.SM_Statuses_RecIDContains = value; return this; } public String getSmStatusesRecIDLike() { return SM_Statuses_RecIDLike; } public SM_TasksQuery setSmStatusesRecIDLike(String value) { this.SM_Statuses_RecIDLike = value; return this; } public ArrayList getSmStatusesRecIDBetween() { return SM_Statuses_RecIDBetween; } public SM_TasksQuery setSmStatusesRecIDBetween(ArrayList value) { this.SM_Statuses_RecIDBetween = value; return this; } public ArrayList getSmStatusesRecIDIn() { return SM_Statuses_RecIDIn; } public SM_TasksQuery setSmStatusesRecIDIn(ArrayList value) { this.SM_Statuses_RecIDIn = value; return this; } public String getAssignedToHrStaffRecID() { return AssignedTo_HR_Staff_RecID; } public SM_TasksQuery setAssignedToHrStaffRecID(String value) { this.AssignedTo_HR_Staff_RecID = value; return this; } public String getAssignedToHrStaffRecIDStartsWith() { return AssignedTo_HR_Staff_RecIDStartsWith; } public SM_TasksQuery setAssignedToHrStaffRecIDStartsWith(String value) { this.AssignedTo_HR_Staff_RecIDStartsWith = value; return this; } public String getAssignedToHrStaffRecIDEndsWith() { return AssignedTo_HR_Staff_RecIDEndsWith; } public SM_TasksQuery setAssignedToHrStaffRecIDEndsWith(String value) { this.AssignedTo_HR_Staff_RecIDEndsWith = value; return this; } public String getAssignedToHrStaffRecIDContains() { return AssignedTo_HR_Staff_RecIDContains; } public SM_TasksQuery setAssignedToHrStaffRecIDContains(String value) { this.AssignedTo_HR_Staff_RecIDContains = value; return this; } public String getAssignedToHrStaffRecIDLike() { return AssignedTo_HR_Staff_RecIDLike; } public SM_TasksQuery setAssignedToHrStaffRecIDLike(String value) { this.AssignedTo_HR_Staff_RecIDLike = value; return this; } public ArrayList getAssignedToHrStaffRecIDBetween() { return AssignedTo_HR_Staff_RecIDBetween; } public SM_TasksQuery setAssignedToHrStaffRecIDBetween(ArrayList value) { this.AssignedTo_HR_Staff_RecIDBetween = value; return this; } public ArrayList getAssignedToHrStaffRecIDIn() { return AssignedTo_HR_Staff_RecIDIn; } public SM_TasksQuery setAssignedToHrStaffRecIDIn(ArrayList value) { this.AssignedTo_HR_Staff_RecIDIn = value; return this; } public String getDescription() { return Description; } public SM_TasksQuery setDescription(String value) { this.Description = value; return this; } public String getDescriptionStartsWith() { return DescriptionStartsWith; } public SM_TasksQuery setDescriptionStartsWith(String value) { this.DescriptionStartsWith = value; return this; } public String getDescriptionEndsWith() { return DescriptionEndsWith; } public SM_TasksQuery setDescriptionEndsWith(String value) { this.DescriptionEndsWith = value; return this; } public String getDescriptionContains() { return DescriptionContains; } public SM_TasksQuery setDescriptionContains(String value) { this.DescriptionContains = value; return this; } public String getDescriptionLike() { return DescriptionLike; } public SM_TasksQuery setDescriptionLike(String value) { this.DescriptionLike = value; return this; } public ArrayList getDescriptionBetween() { return DescriptionBetween; } public SM_TasksQuery setDescriptionBetween(ArrayList value) { this.DescriptionBetween = value; return this; } public ArrayList getDescriptionIn() { return DescriptionIn; } public SM_TasksQuery setDescriptionIn(ArrayList value) { this.DescriptionIn = value; return this; } public String getNote() { return Note; } public SM_TasksQuery setNote(String value) { this.Note = value; return this; } public String getNoteStartsWith() { return NoteStartsWith; } public SM_TasksQuery setNoteStartsWith(String value) { this.NoteStartsWith = value; return this; } public String getNoteEndsWith() { return NoteEndsWith; } public SM_TasksQuery setNoteEndsWith(String value) { this.NoteEndsWith = value; return this; } public String getNoteContains() { return NoteContains; } public SM_TasksQuery setNoteContains(String value) { this.NoteContains = value; return this; } public String getNoteLike() { return NoteLike; } public SM_TasksQuery setNoteLike(String value) { this.NoteLike = value; return this; } public ArrayList getNoteBetween() { return NoteBetween; } public SM_TasksQuery setNoteBetween(ArrayList value) { this.NoteBetween = value; return this; } public ArrayList getNoteIn() { return NoteIn; } public SM_TasksQuery setNoteIn(ArrayList value) { this.NoteIn = value; return this; } public Date getDateLogged() { return DateLogged; } public SM_TasksQuery setDateLogged(Date value) { this.DateLogged = value; return this; } public Date getDateLoggedGreaterThanOrEqualTo() { return DateLoggedGreaterThanOrEqualTo; } public SM_TasksQuery setDateLoggedGreaterThanOrEqualTo(Date value) { this.DateLoggedGreaterThanOrEqualTo = value; return this; } public Date getDateLoggedGreaterThan() { return DateLoggedGreaterThan; } public SM_TasksQuery setDateLoggedGreaterThan(Date value) { this.DateLoggedGreaterThan = value; return this; } public Date getDateLoggedLessThan() { return DateLoggedLessThan; } public SM_TasksQuery setDateLoggedLessThan(Date value) { this.DateLoggedLessThan = value; return this; } public Date getDateLoggedLessThanOrEqualTo() { return DateLoggedLessThanOrEqualTo; } public SM_TasksQuery setDateLoggedLessThanOrEqualTo(Date value) { this.DateLoggedLessThanOrEqualTo = value; return this; } public Date getDateLoggedNotEqualTo() { return DateLoggedNotEqualTo; } public SM_TasksQuery setDateLoggedNotEqualTo(Date value) { this.DateLoggedNotEqualTo = value; return this; } public ArrayList getDateLoggedBetween() { return DateLoggedBetween; } public SM_TasksQuery setDateLoggedBetween(ArrayList value) { this.DateLoggedBetween = value; return this; } public ArrayList getDateLoggedIn() { return DateLoggedIn; } public SM_TasksQuery setDateLoggedIn(ArrayList value) { this.DateLoggedIn = value; return this; } public String getLoggedByHrStaffRecID() { return LoggedBy_HR_Staff_RecID; } public SM_TasksQuery setLoggedByHrStaffRecID(String value) { this.LoggedBy_HR_Staff_RecID = value; return this; } public String getLoggedByHrStaffRecIDStartsWith() { return LoggedBy_HR_Staff_RecIDStartsWith; } public SM_TasksQuery setLoggedByHrStaffRecIDStartsWith(String value) { this.LoggedBy_HR_Staff_RecIDStartsWith = value; return this; } public String getLoggedByHrStaffRecIDEndsWith() { return LoggedBy_HR_Staff_RecIDEndsWith; } public SM_TasksQuery setLoggedByHrStaffRecIDEndsWith(String value) { this.LoggedBy_HR_Staff_RecIDEndsWith = value; return this; } public String getLoggedByHrStaffRecIDContains() { return LoggedBy_HR_Staff_RecIDContains; } public SM_TasksQuery setLoggedByHrStaffRecIDContains(String value) { this.LoggedBy_HR_Staff_RecIDContains = value; return this; } public String getLoggedByHrStaffRecIDLike() { return LoggedBy_HR_Staff_RecIDLike; } public SM_TasksQuery setLoggedByHrStaffRecIDLike(String value) { this.LoggedBy_HR_Staff_RecIDLike = value; return this; } public ArrayList getLoggedByHrStaffRecIDBetween() { return LoggedBy_HR_Staff_RecIDBetween; } public SM_TasksQuery setLoggedByHrStaffRecIDBetween(ArrayList value) { this.LoggedBy_HR_Staff_RecIDBetween = value; return this; } public ArrayList getLoggedByHrStaffRecIDIn() { return LoggedBy_HR_Staff_RecIDIn; } public SM_TasksQuery setLoggedByHrStaffRecIDIn(ArrayList value) { this.LoggedBy_HR_Staff_RecIDIn = value; return this; } public Boolean isHasDeadline() { return HasDeadline; } public SM_TasksQuery setHasDeadline(Boolean value) { this.HasDeadline = value; return this; } public Date getDeadline() { return Deadline; } public SM_TasksQuery setDeadline(Date value) { this.Deadline = value; return this; } public Date getDeadlineGreaterThanOrEqualTo() { return DeadlineGreaterThanOrEqualTo; } public SM_TasksQuery setDeadlineGreaterThanOrEqualTo(Date value) { this.DeadlineGreaterThanOrEqualTo = value; return this; } public Date getDeadlineGreaterThan() { return DeadlineGreaterThan; } public SM_TasksQuery setDeadlineGreaterThan(Date value) { this.DeadlineGreaterThan = value; return this; } public Date getDeadlineLessThan() { return DeadlineLessThan; } public SM_TasksQuery setDeadlineLessThan(Date value) { this.DeadlineLessThan = value; return this; } public Date getDeadlineLessThanOrEqualTo() { return DeadlineLessThanOrEqualTo; } public SM_TasksQuery setDeadlineLessThanOrEqualTo(Date value) { this.DeadlineLessThanOrEqualTo = value; return this; } public Date getDeadlineNotEqualTo() { return DeadlineNotEqualTo; } public SM_TasksQuery setDeadlineNotEqualTo(Date value) { this.DeadlineNotEqualTo = value; return this; } public ArrayList getDeadlineBetween() { return DeadlineBetween; } public SM_TasksQuery setDeadlineBetween(ArrayList value) { this.DeadlineBetween = value; return this; } public ArrayList getDeadlineIn() { return DeadlineIn; } public SM_TasksQuery setDeadlineIn(ArrayList value) { this.DeadlineIn = value; return this; } public Date getCompletionDate() { return CompletionDate; } public SM_TasksQuery setCompletionDate(Date value) { this.CompletionDate = value; return this; } public Date getCompletionDateGreaterThanOrEqualTo() { return CompletionDateGreaterThanOrEqualTo; } public SM_TasksQuery setCompletionDateGreaterThanOrEqualTo(Date value) { this.CompletionDateGreaterThanOrEqualTo = value; return this; } public Date getCompletionDateGreaterThan() { return CompletionDateGreaterThan; } public SM_TasksQuery setCompletionDateGreaterThan(Date value) { this.CompletionDateGreaterThan = value; return this; } public Date getCompletionDateLessThan() { return CompletionDateLessThan; } public SM_TasksQuery setCompletionDateLessThan(Date value) { this.CompletionDateLessThan = value; return this; } public Date getCompletionDateLessThanOrEqualTo() { return CompletionDateLessThanOrEqualTo; } public SM_TasksQuery setCompletionDateLessThanOrEqualTo(Date value) { this.CompletionDateLessThanOrEqualTo = value; return this; } public Date getCompletionDateNotEqualTo() { return CompletionDateNotEqualTo; } public SM_TasksQuery setCompletionDateNotEqualTo(Date value) { this.CompletionDateNotEqualTo = value; return this; } public ArrayList getCompletionDateBetween() { return CompletionDateBetween; } public SM_TasksQuery setCompletionDateBetween(ArrayList value) { this.CompletionDateBetween = value; return this; } public ArrayList getCompletionDateIn() { return CompletionDateIn; } public SM_TasksQuery setCompletionDateIn(ArrayList value) { this.CompletionDateIn = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public SM_TasksQuery setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getLastSavedDateTimeGreaterThanOrEqualTo() { return LastSavedDateTimeGreaterThanOrEqualTo; } public SM_TasksQuery setLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.LastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeGreaterThan() { return LastSavedDateTimeGreaterThan; } public SM_TasksQuery setLastSavedDateTimeGreaterThan(Date value) { this.LastSavedDateTimeGreaterThan = value; return this; } public Date getLastSavedDateTimeLessThan() { return LastSavedDateTimeLessThan; } public SM_TasksQuery setLastSavedDateTimeLessThan(Date value) { this.LastSavedDateTimeLessThan = value; return this; } public Date getLastSavedDateTimeLessThanOrEqualTo() { return LastSavedDateTimeLessThanOrEqualTo; } public SM_TasksQuery setLastSavedDateTimeLessThanOrEqualTo(Date value) { this.LastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeNotEqualTo() { return LastSavedDateTimeNotEqualTo; } public SM_TasksQuery setLastSavedDateTimeNotEqualTo(Date value) { this.LastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getLastSavedDateTimeBetween() { return LastSavedDateTimeBetween; } public SM_TasksQuery setLastSavedDateTimeBetween(ArrayList value) { this.LastSavedDateTimeBetween = value; return this; } public ArrayList getLastSavedDateTimeIn() { return LastSavedDateTimeIn; } public SM_TasksQuery setLastSavedDateTimeIn(ArrayList value) { this.LastSavedDateTimeIn = value; return this; } public String getLastSavedHrStaffRecID() { return LastSaved_HR_Staff_RecID; } public SM_TasksQuery setLastSavedHrStaffRecID(String value) { this.LastSaved_HR_Staff_RecID = value; return this; } public String getLastSavedHrStaffRecIDStartsWith() { return LastSaved_HR_Staff_RecIDStartsWith; } public SM_TasksQuery setLastSavedHrStaffRecIDStartsWith(String value) { this.LastSaved_HR_Staff_RecIDStartsWith = value; return this; } public String getLastSavedHrStaffRecIDEndsWith() { return LastSaved_HR_Staff_RecIDEndsWith; } public SM_TasksQuery setLastSavedHrStaffRecIDEndsWith(String value) { this.LastSaved_HR_Staff_RecIDEndsWith = value; return this; } public String getLastSavedHrStaffRecIDContains() { return LastSaved_HR_Staff_RecIDContains; } public SM_TasksQuery setLastSavedHrStaffRecIDContains(String value) { this.LastSaved_HR_Staff_RecIDContains = value; return this; } public String getLastSavedHrStaffRecIDLike() { return LastSaved_HR_Staff_RecIDLike; } public SM_TasksQuery setLastSavedHrStaffRecIDLike(String value) { this.LastSaved_HR_Staff_RecIDLike = value; return this; } public ArrayList getLastSavedHrStaffRecIDBetween() { return LastSaved_HR_Staff_RecIDBetween; } public SM_TasksQuery setLastSavedHrStaffRecIDBetween(ArrayList value) { this.LastSaved_HR_Staff_RecIDBetween = value; return this; } public ArrayList getLastSavedHrStaffRecIDIn() { return LastSaved_HR_Staff_RecIDIn; } public SM_TasksQuery setLastSavedHrStaffRecIDIn(ArrayList value) { this.LastSaved_HR_Staff_RecIDIn = value; return this; } public String getSmPrepaidLabourPacksRecID() { return SM_PrepaidLabourPacks_RecID; } public SM_TasksQuery setSmPrepaidLabourPacksRecID(String value) { this.SM_PrepaidLabourPacks_RecID = value; return this; } public String getSmPrepaidLabourPacksRecIDStartsWith() { return SM_PrepaidLabourPacks_RecIDStartsWith; } public SM_TasksQuery setSmPrepaidLabourPacksRecIDStartsWith(String value) { this.SM_PrepaidLabourPacks_RecIDStartsWith = value; return this; } public String getSmPrepaidLabourPacksRecIDEndsWith() { return SM_PrepaidLabourPacks_RecIDEndsWith; } public SM_TasksQuery setSmPrepaidLabourPacksRecIDEndsWith(String value) { this.SM_PrepaidLabourPacks_RecIDEndsWith = value; return this; } public String getSmPrepaidLabourPacksRecIDContains() { return SM_PrepaidLabourPacks_RecIDContains; } public SM_TasksQuery setSmPrepaidLabourPacksRecIDContains(String value) { this.SM_PrepaidLabourPacks_RecIDContains = value; return this; } public String getSmPrepaidLabourPacksRecIDLike() { return SM_PrepaidLabourPacks_RecIDLike; } public SM_TasksQuery setSmPrepaidLabourPacksRecIDLike(String value) { this.SM_PrepaidLabourPacks_RecIDLike = value; return this; } public ArrayList getSmPrepaidLabourPacksRecIDBetween() { return SM_PrepaidLabourPacks_RecIDBetween; } public SM_TasksQuery setSmPrepaidLabourPacksRecIDBetween(ArrayList value) { this.SM_PrepaidLabourPacks_RecIDBetween = value; return this; } public ArrayList getSmPrepaidLabourPacksRecIDIn() { return SM_PrepaidLabourPacks_RecIDIn; } public SM_TasksQuery setSmPrepaidLabourPacksRecIDIn(ArrayList value) { this.SM_PrepaidLabourPacks_RecIDIn = value; return this; } public String getDbDeliveryAddressRecID() { return DB_DeliveryAddress_RecID; } public SM_TasksQuery setDbDeliveryAddressRecID(String value) { this.DB_DeliveryAddress_RecID = value; return this; } public String getDbDeliveryAddressRecIDStartsWith() { return DB_DeliveryAddress_RecIDStartsWith; } public SM_TasksQuery setDbDeliveryAddressRecIDStartsWith(String value) { this.DB_DeliveryAddress_RecIDStartsWith = value; return this; } public String getDbDeliveryAddressRecIDEndsWith() { return DB_DeliveryAddress_RecIDEndsWith; } public SM_TasksQuery setDbDeliveryAddressRecIDEndsWith(String value) { this.DB_DeliveryAddress_RecIDEndsWith = value; return this; } public String getDbDeliveryAddressRecIDContains() { return DB_DeliveryAddress_RecIDContains; } public SM_TasksQuery setDbDeliveryAddressRecIDContains(String value) { this.DB_DeliveryAddress_RecIDContains = value; return this; } public String getDbDeliveryAddressRecIDLike() { return DB_DeliveryAddress_RecIDLike; } public SM_TasksQuery setDbDeliveryAddressRecIDLike(String value) { this.DB_DeliveryAddress_RecIDLike = value; return this; } public ArrayList getDbDeliveryAddressRecIDBetween() { return DB_DeliveryAddress_RecIDBetween; } public SM_TasksQuery setDbDeliveryAddressRecIDBetween(ArrayList value) { this.DB_DeliveryAddress_RecIDBetween = value; return this; } public ArrayList getDbDeliveryAddressRecIDIn() { return DB_DeliveryAddress_RecIDIn; } public SM_TasksQuery setDbDeliveryAddressRecIDIn(ArrayList value) { this.DB_DeliveryAddress_RecIDIn = value; return this; } public String getDbDebtorSystemsRecID() { return DB_DebtorSystems_RecID; } public SM_TasksQuery setDbDebtorSystemsRecID(String value) { this.DB_DebtorSystems_RecID = value; return this; } public String getDbDebtorSystemsRecIDStartsWith() { return DB_DebtorSystems_RecIDStartsWith; } public SM_TasksQuery setDbDebtorSystemsRecIDStartsWith(String value) { this.DB_DebtorSystems_RecIDStartsWith = value; return this; } public String getDbDebtorSystemsRecIDEndsWith() { return DB_DebtorSystems_RecIDEndsWith; } public SM_TasksQuery setDbDebtorSystemsRecIDEndsWith(String value) { this.DB_DebtorSystems_RecIDEndsWith = value; return this; } public String getDbDebtorSystemsRecIDContains() { return DB_DebtorSystems_RecIDContains; } public SM_TasksQuery setDbDebtorSystemsRecIDContains(String value) { this.DB_DebtorSystems_RecIDContains = value; return this; } public String getDbDebtorSystemsRecIDLike() { return DB_DebtorSystems_RecIDLike; } public SM_TasksQuery setDbDebtorSystemsRecIDLike(String value) { this.DB_DebtorSystems_RecIDLike = value; return this; } public ArrayList getDbDebtorSystemsRecIDBetween() { return DB_DebtorSystems_RecIDBetween; } public SM_TasksQuery setDbDebtorSystemsRecIDBetween(ArrayList value) { this.DB_DebtorSystems_RecIDBetween = value; return this; } public ArrayList getDbDebtorSystemsRecIDIn() { return DB_DebtorSystems_RecIDIn; } public SM_TasksQuery setDbDebtorSystemsRecIDIn(ArrayList value) { this.DB_DebtorSystems_RecIDIn = value; return this; } public Boolean getIsRetired() { return IsRetired; } public SM_TasksQuery setIsRetired(Boolean value) { this.IsRetired = value; return this; } public ArrayList getRowHash() { return RowHash; } public SM_TasksQuery setRowHash(ArrayList value) { this.RowHash = value; return this; } public String getBillingDebtorDbMainRecID() { return BillingDebtor_DB_Main_RecID; } public SM_TasksQuery setBillingDebtorDbMainRecID(String value) { this.BillingDebtor_DB_Main_RecID = value; return this; } public String getBillingDebtorDbMainRecIDStartsWith() { return BillingDebtor_DB_Main_RecIDStartsWith; } public SM_TasksQuery setBillingDebtorDbMainRecIDStartsWith(String value) { this.BillingDebtor_DB_Main_RecIDStartsWith = value; return this; } public String getBillingDebtorDbMainRecIDEndsWith() { return BillingDebtor_DB_Main_RecIDEndsWith; } public SM_TasksQuery setBillingDebtorDbMainRecIDEndsWith(String value) { this.BillingDebtor_DB_Main_RecIDEndsWith = value; return this; } public String getBillingDebtorDbMainRecIDContains() { return BillingDebtor_DB_Main_RecIDContains; } public SM_TasksQuery setBillingDebtorDbMainRecIDContains(String value) { this.BillingDebtor_DB_Main_RecIDContains = value; return this; } public String getBillingDebtorDbMainRecIDLike() { return BillingDebtor_DB_Main_RecIDLike; } public SM_TasksQuery setBillingDebtorDbMainRecIDLike(String value) { this.BillingDebtor_DB_Main_RecIDLike = value; return this; } public ArrayList getBillingDebtorDbMainRecIDBetween() { return BillingDebtor_DB_Main_RecIDBetween; } public SM_TasksQuery setBillingDebtorDbMainRecIDBetween(ArrayList value) { this.BillingDebtor_DB_Main_RecIDBetween = value; return this; } public ArrayList getBillingDebtorDbMainRecIDIn() { return BillingDebtor_DB_Main_RecIDIn; } public SM_TasksQuery setBillingDebtorDbMainRecIDIn(ArrayList value) { this.BillingDebtor_DB_Main_RecIDIn = value; return this; } public String getBillingDebtorDbDeliveryAddressRecID() { return BillingDebtor_DB_DeliveryAddress_RecID; } public SM_TasksQuery setBillingDebtorDbDeliveryAddressRecID(String value) { this.BillingDebtor_DB_DeliveryAddress_RecID = value; return this; } public String getBillingDebtorDbDeliveryAddressRecIDStartsWith() { return BillingDebtor_DB_DeliveryAddress_RecIDStartsWith; } public SM_TasksQuery setBillingDebtorDbDeliveryAddressRecIDStartsWith(String value) { this.BillingDebtor_DB_DeliveryAddress_RecIDStartsWith = value; return this; } public String getBillingDebtorDbDeliveryAddressRecIDEndsWith() { return BillingDebtor_DB_DeliveryAddress_RecIDEndsWith; } public SM_TasksQuery setBillingDebtorDbDeliveryAddressRecIDEndsWith(String value) { this.BillingDebtor_DB_DeliveryAddress_RecIDEndsWith = value; return this; } public String getBillingDebtorDbDeliveryAddressRecIDContains() { return BillingDebtor_DB_DeliveryAddress_RecIDContains; } public SM_TasksQuery setBillingDebtorDbDeliveryAddressRecIDContains(String value) { this.BillingDebtor_DB_DeliveryAddress_RecIDContains = value; return this; } public String getBillingDebtorDbDeliveryAddressRecIDLike() { return BillingDebtor_DB_DeliveryAddress_RecIDLike; } public SM_TasksQuery setBillingDebtorDbDeliveryAddressRecIDLike(String value) { this.BillingDebtor_DB_DeliveryAddress_RecIDLike = value; return this; } public ArrayList getBillingDebtorDbDeliveryAddressRecIDBetween() { return BillingDebtor_DB_DeliveryAddress_RecIDBetween; } public SM_TasksQuery setBillingDebtorDbDeliveryAddressRecIDBetween(ArrayList value) { this.BillingDebtor_DB_DeliveryAddress_RecIDBetween = value; return this; } public ArrayList getBillingDebtorDbDeliveryAddressRecIDIn() { return BillingDebtor_DB_DeliveryAddress_RecIDIn; } public SM_TasksQuery setBillingDebtorDbDeliveryAddressRecIDIn(ArrayList value) { this.BillingDebtor_DB_DeliveryAddress_RecIDIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class SM_TimesheetLinesQuery extends QueryDb implements IReturn> { public UUID RecID = null; public ArrayList RecIDIn = null; public UUID SM_Timesheets_RecID = null; public ArrayList SM_Timesheets_RecIDIn = null; public String SM_Tasks_RecID = null; public String SM_Tasks_RecIDStartsWith = null; public String SM_Tasks_RecIDEndsWith = null; public String SM_Tasks_RecIDContains = null; public String SM_Tasks_RecIDLike = null; public ArrayList SM_Tasks_RecIDBetween = null; public ArrayList SM_Tasks_RecIDIn = null; public Date StartTime = null; public Date StartTimeGreaterThanOrEqualTo = null; public Date StartTimeGreaterThan = null; public Date StartTimeLessThan = null; public Date StartTimeLessThanOrEqualTo = null; public Date StartTimeNotEqualTo = null; public ArrayList StartTimeBetween = null; public ArrayList StartTimeIn = null; public Date EndTime = null; public Date EndTimeGreaterThanOrEqualTo = null; public Date EndTimeGreaterThan = null; public Date EndTimeLessThan = null; public Date EndTimeLessThanOrEqualTo = null; public Date EndTimeNotEqualTo = null; public ArrayList EndTimeBetween = null; public ArrayList EndTimeIn = null; public String Description = null; public String DescriptionStartsWith = null; public String DescriptionEndsWith = null; public String DescriptionContains = null; public String DescriptionLike = null; public ArrayList DescriptionBetween = null; public ArrayList DescriptionIn = null; public Integer ItemNo = null; public Integer ItemNoGreaterThanOrEqualTo = null; public Integer ItemNoGreaterThan = null; public Integer ItemNoLessThan = null; public Integer ItemNoLessThanOrEqualTo = null; public Integer ItemNoNotEqualTo = null; public ArrayList ItemNoBetween = null; public ArrayList ItemNoIn = null; public String SM_Activities_RecID = null; public String SM_Activities_RecIDStartsWith = null; public String SM_Activities_RecIDEndsWith = null; public String SM_Activities_RecIDContains = null; public String SM_Activities_RecIDLike = null; public ArrayList SM_Activities_RecIDBetween = null; public ArrayList SM_Activities_RecIDIn = null; public ArrayList RowHash = null; public UUID getRecID() { return RecID; } public SM_TimesheetLinesQuery setRecID(UUID value) { this.RecID = value; return this; } public ArrayList getRecIDIn() { return RecIDIn; } public SM_TimesheetLinesQuery setRecIDIn(ArrayList value) { this.RecIDIn = value; return this; } public UUID getSmTimesheetsRecID() { return SM_Timesheets_RecID; } public SM_TimesheetLinesQuery setSmTimesheetsRecID(UUID value) { this.SM_Timesheets_RecID = value; return this; } public ArrayList getSmTimesheetsRecIDIn() { return SM_Timesheets_RecIDIn; } public SM_TimesheetLinesQuery setSmTimesheetsRecIDIn(ArrayList value) { this.SM_Timesheets_RecIDIn = value; return this; } public String getSmTasksRecID() { return SM_Tasks_RecID; } public SM_TimesheetLinesQuery setSmTasksRecID(String value) { this.SM_Tasks_RecID = value; return this; } public String getSmTasksRecIDStartsWith() { return SM_Tasks_RecIDStartsWith; } public SM_TimesheetLinesQuery setSmTasksRecIDStartsWith(String value) { this.SM_Tasks_RecIDStartsWith = value; return this; } public String getSmTasksRecIDEndsWith() { return SM_Tasks_RecIDEndsWith; } public SM_TimesheetLinesQuery setSmTasksRecIDEndsWith(String value) { this.SM_Tasks_RecIDEndsWith = value; return this; } public String getSmTasksRecIDContains() { return SM_Tasks_RecIDContains; } public SM_TimesheetLinesQuery setSmTasksRecIDContains(String value) { this.SM_Tasks_RecIDContains = value; return this; } public String getSmTasksRecIDLike() { return SM_Tasks_RecIDLike; } public SM_TimesheetLinesQuery setSmTasksRecIDLike(String value) { this.SM_Tasks_RecIDLike = value; return this; } public ArrayList getSmTasksRecIDBetween() { return SM_Tasks_RecIDBetween; } public SM_TimesheetLinesQuery setSmTasksRecIDBetween(ArrayList value) { this.SM_Tasks_RecIDBetween = value; return this; } public ArrayList getSmTasksRecIDIn() { return SM_Tasks_RecIDIn; } public SM_TimesheetLinesQuery setSmTasksRecIDIn(ArrayList value) { this.SM_Tasks_RecIDIn = value; return this; } public Date getStartTime() { return StartTime; } public SM_TimesheetLinesQuery setStartTime(Date value) { this.StartTime = value; return this; } public Date getStartTimeGreaterThanOrEqualTo() { return StartTimeGreaterThanOrEqualTo; } public SM_TimesheetLinesQuery setStartTimeGreaterThanOrEqualTo(Date value) { this.StartTimeGreaterThanOrEqualTo = value; return this; } public Date getStartTimeGreaterThan() { return StartTimeGreaterThan; } public SM_TimesheetLinesQuery setStartTimeGreaterThan(Date value) { this.StartTimeGreaterThan = value; return this; } public Date getStartTimeLessThan() { return StartTimeLessThan; } public SM_TimesheetLinesQuery setStartTimeLessThan(Date value) { this.StartTimeLessThan = value; return this; } public Date getStartTimeLessThanOrEqualTo() { return StartTimeLessThanOrEqualTo; } public SM_TimesheetLinesQuery setStartTimeLessThanOrEqualTo(Date value) { this.StartTimeLessThanOrEqualTo = value; return this; } public Date getStartTimeNotEqualTo() { return StartTimeNotEqualTo; } public SM_TimesheetLinesQuery setStartTimeNotEqualTo(Date value) { this.StartTimeNotEqualTo = value; return this; } public ArrayList getStartTimeBetween() { return StartTimeBetween; } public SM_TimesheetLinesQuery setStartTimeBetween(ArrayList value) { this.StartTimeBetween = value; return this; } public ArrayList getStartTimeIn() { return StartTimeIn; } public SM_TimesheetLinesQuery setStartTimeIn(ArrayList value) { this.StartTimeIn = value; return this; } public Date getEndTime() { return EndTime; } public SM_TimesheetLinesQuery setEndTime(Date value) { this.EndTime = value; return this; } public Date getEndTimeGreaterThanOrEqualTo() { return EndTimeGreaterThanOrEqualTo; } public SM_TimesheetLinesQuery setEndTimeGreaterThanOrEqualTo(Date value) { this.EndTimeGreaterThanOrEqualTo = value; return this; } public Date getEndTimeGreaterThan() { return EndTimeGreaterThan; } public SM_TimesheetLinesQuery setEndTimeGreaterThan(Date value) { this.EndTimeGreaterThan = value; return this; } public Date getEndTimeLessThan() { return EndTimeLessThan; } public SM_TimesheetLinesQuery setEndTimeLessThan(Date value) { this.EndTimeLessThan = value; return this; } public Date getEndTimeLessThanOrEqualTo() { return EndTimeLessThanOrEqualTo; } public SM_TimesheetLinesQuery setEndTimeLessThanOrEqualTo(Date value) { this.EndTimeLessThanOrEqualTo = value; return this; } public Date getEndTimeNotEqualTo() { return EndTimeNotEqualTo; } public SM_TimesheetLinesQuery setEndTimeNotEqualTo(Date value) { this.EndTimeNotEqualTo = value; return this; } public ArrayList getEndTimeBetween() { return EndTimeBetween; } public SM_TimesheetLinesQuery setEndTimeBetween(ArrayList value) { this.EndTimeBetween = value; return this; } public ArrayList getEndTimeIn() { return EndTimeIn; } public SM_TimesheetLinesQuery setEndTimeIn(ArrayList value) { this.EndTimeIn = value; return this; } public String getDescription() { return Description; } public SM_TimesheetLinesQuery setDescription(String value) { this.Description = value; return this; } public String getDescriptionStartsWith() { return DescriptionStartsWith; } public SM_TimesheetLinesQuery setDescriptionStartsWith(String value) { this.DescriptionStartsWith = value; return this; } public String getDescriptionEndsWith() { return DescriptionEndsWith; } public SM_TimesheetLinesQuery setDescriptionEndsWith(String value) { this.DescriptionEndsWith = value; return this; } public String getDescriptionContains() { return DescriptionContains; } public SM_TimesheetLinesQuery setDescriptionContains(String value) { this.DescriptionContains = value; return this; } public String getDescriptionLike() { return DescriptionLike; } public SM_TimesheetLinesQuery setDescriptionLike(String value) { this.DescriptionLike = value; return this; } public ArrayList getDescriptionBetween() { return DescriptionBetween; } public SM_TimesheetLinesQuery setDescriptionBetween(ArrayList value) { this.DescriptionBetween = value; return this; } public ArrayList getDescriptionIn() { return DescriptionIn; } public SM_TimesheetLinesQuery setDescriptionIn(ArrayList value) { this.DescriptionIn = value; return this; } public Integer getItemNo() { return ItemNo; } public SM_TimesheetLinesQuery setItemNo(Integer value) { this.ItemNo = value; return this; } public Integer getItemNoGreaterThanOrEqualTo() { return ItemNoGreaterThanOrEqualTo; } public SM_TimesheetLinesQuery setItemNoGreaterThanOrEqualTo(Integer value) { this.ItemNoGreaterThanOrEqualTo = value; return this; } public Integer getItemNoGreaterThan() { return ItemNoGreaterThan; } public SM_TimesheetLinesQuery setItemNoGreaterThan(Integer value) { this.ItemNoGreaterThan = value; return this; } public Integer getItemNoLessThan() { return ItemNoLessThan; } public SM_TimesheetLinesQuery setItemNoLessThan(Integer value) { this.ItemNoLessThan = value; return this; } public Integer getItemNoLessThanOrEqualTo() { return ItemNoLessThanOrEqualTo; } public SM_TimesheetLinesQuery setItemNoLessThanOrEqualTo(Integer value) { this.ItemNoLessThanOrEqualTo = value; return this; } public Integer getItemNoNotEqualTo() { return ItemNoNotEqualTo; } public SM_TimesheetLinesQuery setItemNoNotEqualTo(Integer value) { this.ItemNoNotEqualTo = value; return this; } public ArrayList getItemNoBetween() { return ItemNoBetween; } public SM_TimesheetLinesQuery setItemNoBetween(ArrayList value) { this.ItemNoBetween = value; return this; } public ArrayList getItemNoIn() { return ItemNoIn; } public SM_TimesheetLinesQuery setItemNoIn(ArrayList value) { this.ItemNoIn = value; return this; } public String getSmActivitiesRecID() { return SM_Activities_RecID; } public SM_TimesheetLinesQuery setSmActivitiesRecID(String value) { this.SM_Activities_RecID = value; return this; } public String getSmActivitiesRecIDStartsWith() { return SM_Activities_RecIDStartsWith; } public SM_TimesheetLinesQuery setSmActivitiesRecIDStartsWith(String value) { this.SM_Activities_RecIDStartsWith = value; return this; } public String getSmActivitiesRecIDEndsWith() { return SM_Activities_RecIDEndsWith; } public SM_TimesheetLinesQuery setSmActivitiesRecIDEndsWith(String value) { this.SM_Activities_RecIDEndsWith = value; return this; } public String getSmActivitiesRecIDContains() { return SM_Activities_RecIDContains; } public SM_TimesheetLinesQuery setSmActivitiesRecIDContains(String value) { this.SM_Activities_RecIDContains = value; return this; } public String getSmActivitiesRecIDLike() { return SM_Activities_RecIDLike; } public SM_TimesheetLinesQuery setSmActivitiesRecIDLike(String value) { this.SM_Activities_RecIDLike = value; return this; } public ArrayList getSmActivitiesRecIDBetween() { return SM_Activities_RecIDBetween; } public SM_TimesheetLinesQuery setSmActivitiesRecIDBetween(ArrayList value) { this.SM_Activities_RecIDBetween = value; return this; } public ArrayList getSmActivitiesRecIDIn() { return SM_Activities_RecIDIn; } public SM_TimesheetLinesQuery setSmActivitiesRecIDIn(ArrayList value) { this.SM_Activities_RecIDIn = value; return this; } public ArrayList getRowHash() { return RowHash; } public SM_TimesheetLinesQuery setRowHash(ArrayList value) { this.RowHash = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class SM_TimesheetsQuery extends QueryDb implements IReturn> { public UUID RecID = null; public ArrayList RecIDIn = null; public String TimesheetNo = null; public String TimesheetNoStartsWith = null; public String TimesheetNoEndsWith = null; public String TimesheetNoContains = null; public String TimesheetNoLike = null; public ArrayList TimesheetNoBetween = null; public ArrayList TimesheetNoIn = null; public String HR_Staff_RecID = null; public String HR_Staff_RecIDStartsWith = null; public String HR_Staff_RecIDEndsWith = null; public String HR_Staff_RecIDContains = null; public String HR_Staff_RecIDLike = null; public ArrayList HR_Staff_RecIDBetween = null; public ArrayList HR_Staff_RecIDIn = null; public Date TimeSheetDate = null; public Date TimeSheetDateGreaterThanOrEqualTo = null; public Date TimeSheetDateGreaterThan = null; public Date TimeSheetDateLessThan = null; public Date TimeSheetDateLessThanOrEqualTo = null; public Date TimeSheetDateNotEqualTo = null; public ArrayList TimeSheetDateBetween = null; public ArrayList TimeSheetDateIn = null; public Date LastSavedDateTime = null; public Date LastSavedDateTimeGreaterThanOrEqualTo = null; public Date LastSavedDateTimeGreaterThan = null; public Date LastSavedDateTimeLessThan = null; public Date LastSavedDateTimeLessThanOrEqualTo = null; public Date LastSavedDateTimeNotEqualTo = null; public ArrayList LastSavedDateTimeBetween = null; public ArrayList LastSavedDateTimeIn = null; public Boolean IsActivated = null; public ArrayList RowHash = null; public UUID getRecID() { return RecID; } public SM_TimesheetsQuery setRecID(UUID value) { this.RecID = value; return this; } public ArrayList getRecIDIn() { return RecIDIn; } public SM_TimesheetsQuery setRecIDIn(ArrayList value) { this.RecIDIn = value; return this; } public String getTimesheetNo() { return TimesheetNo; } public SM_TimesheetsQuery setTimesheetNo(String value) { this.TimesheetNo = value; return this; } public String getTimesheetNoStartsWith() { return TimesheetNoStartsWith; } public SM_TimesheetsQuery setTimesheetNoStartsWith(String value) { this.TimesheetNoStartsWith = value; return this; } public String getTimesheetNoEndsWith() { return TimesheetNoEndsWith; } public SM_TimesheetsQuery setTimesheetNoEndsWith(String value) { this.TimesheetNoEndsWith = value; return this; } public String getTimesheetNoContains() { return TimesheetNoContains; } public SM_TimesheetsQuery setTimesheetNoContains(String value) { this.TimesheetNoContains = value; return this; } public String getTimesheetNoLike() { return TimesheetNoLike; } public SM_TimesheetsQuery setTimesheetNoLike(String value) { this.TimesheetNoLike = value; return this; } public ArrayList getTimesheetNoBetween() { return TimesheetNoBetween; } public SM_TimesheetsQuery setTimesheetNoBetween(ArrayList value) { this.TimesheetNoBetween = value; return this; } public ArrayList getTimesheetNoIn() { return TimesheetNoIn; } public SM_TimesheetsQuery setTimesheetNoIn(ArrayList value) { this.TimesheetNoIn = value; return this; } public String getHrStaffRecID() { return HR_Staff_RecID; } public SM_TimesheetsQuery setHrStaffRecID(String value) { this.HR_Staff_RecID = value; return this; } public String getHrStaffRecIDStartsWith() { return HR_Staff_RecIDStartsWith; } public SM_TimesheetsQuery setHrStaffRecIDStartsWith(String value) { this.HR_Staff_RecIDStartsWith = value; return this; } public String getHrStaffRecIDEndsWith() { return HR_Staff_RecIDEndsWith; } public SM_TimesheetsQuery setHrStaffRecIDEndsWith(String value) { this.HR_Staff_RecIDEndsWith = value; return this; } public String getHrStaffRecIDContains() { return HR_Staff_RecIDContains; } public SM_TimesheetsQuery setHrStaffRecIDContains(String value) { this.HR_Staff_RecIDContains = value; return this; } public String getHrStaffRecIDLike() { return HR_Staff_RecIDLike; } public SM_TimesheetsQuery setHrStaffRecIDLike(String value) { this.HR_Staff_RecIDLike = value; return this; } public ArrayList getHrStaffRecIDBetween() { return HR_Staff_RecIDBetween; } public SM_TimesheetsQuery setHrStaffRecIDBetween(ArrayList value) { this.HR_Staff_RecIDBetween = value; return this; } public ArrayList getHrStaffRecIDIn() { return HR_Staff_RecIDIn; } public SM_TimesheetsQuery setHrStaffRecIDIn(ArrayList value) { this.HR_Staff_RecIDIn = value; return this; } public Date getTimeSheetDate() { return TimeSheetDate; } public SM_TimesheetsQuery setTimeSheetDate(Date value) { this.TimeSheetDate = value; return this; } public Date getTimeSheetDateGreaterThanOrEqualTo() { return TimeSheetDateGreaterThanOrEqualTo; } public SM_TimesheetsQuery setTimeSheetDateGreaterThanOrEqualTo(Date value) { this.TimeSheetDateGreaterThanOrEqualTo = value; return this; } public Date getTimeSheetDateGreaterThan() { return TimeSheetDateGreaterThan; } public SM_TimesheetsQuery setTimeSheetDateGreaterThan(Date value) { this.TimeSheetDateGreaterThan = value; return this; } public Date getTimeSheetDateLessThan() { return TimeSheetDateLessThan; } public SM_TimesheetsQuery setTimeSheetDateLessThan(Date value) { this.TimeSheetDateLessThan = value; return this; } public Date getTimeSheetDateLessThanOrEqualTo() { return TimeSheetDateLessThanOrEqualTo; } public SM_TimesheetsQuery setTimeSheetDateLessThanOrEqualTo(Date value) { this.TimeSheetDateLessThanOrEqualTo = value; return this; } public Date getTimeSheetDateNotEqualTo() { return TimeSheetDateNotEqualTo; } public SM_TimesheetsQuery setTimeSheetDateNotEqualTo(Date value) { this.TimeSheetDateNotEqualTo = value; return this; } public ArrayList getTimeSheetDateBetween() { return TimeSheetDateBetween; } public SM_TimesheetsQuery setTimeSheetDateBetween(ArrayList value) { this.TimeSheetDateBetween = value; return this; } public ArrayList getTimeSheetDateIn() { return TimeSheetDateIn; } public SM_TimesheetsQuery setTimeSheetDateIn(ArrayList value) { this.TimeSheetDateIn = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public SM_TimesheetsQuery setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getLastSavedDateTimeGreaterThanOrEqualTo() { return LastSavedDateTimeGreaterThanOrEqualTo; } public SM_TimesheetsQuery setLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.LastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeGreaterThan() { return LastSavedDateTimeGreaterThan; } public SM_TimesheetsQuery setLastSavedDateTimeGreaterThan(Date value) { this.LastSavedDateTimeGreaterThan = value; return this; } public Date getLastSavedDateTimeLessThan() { return LastSavedDateTimeLessThan; } public SM_TimesheetsQuery setLastSavedDateTimeLessThan(Date value) { this.LastSavedDateTimeLessThan = value; return this; } public Date getLastSavedDateTimeLessThanOrEqualTo() { return LastSavedDateTimeLessThanOrEqualTo; } public SM_TimesheetsQuery setLastSavedDateTimeLessThanOrEqualTo(Date value) { this.LastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeNotEqualTo() { return LastSavedDateTimeNotEqualTo; } public SM_TimesheetsQuery setLastSavedDateTimeNotEqualTo(Date value) { this.LastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getLastSavedDateTimeBetween() { return LastSavedDateTimeBetween; } public SM_TimesheetsQuery setLastSavedDateTimeBetween(ArrayList value) { this.LastSavedDateTimeBetween = value; return this; } public ArrayList getLastSavedDateTimeIn() { return LastSavedDateTimeIn; } public SM_TimesheetsQuery setLastSavedDateTimeIn(ArrayList value) { this.LastSavedDateTimeIn = value; return this; } public Boolean getIsActivated() { return IsActivated; } public SM_TimesheetsQuery setIsActivated(Boolean value) { this.IsActivated = value; return this; } public ArrayList getRowHash() { return RowHash; } public SM_TimesheetsQuery setRowHash(ArrayList value) { this.RowHash = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class SO_BatchPrintFiltersQuery extends QueryDb implements IReturn> { public String RecID = null; public String RecIDStartsWith = null; public String RecIDEndsWith = null; public String RecIDContains = null; public String RecIDLike = null; public ArrayList RecIDBetween = null; public ArrayList RecIDIn = null; public String Name = null; public String NameStartsWith = null; public String NameEndsWith = null; public String NameContains = null; public String NameLike = null; public ArrayList NameBetween = null; public ArrayList NameIn = null; public String StoredProcedureName = null; public String StoredProcedureNameStartsWith = null; public String StoredProcedureNameEndsWith = null; public String StoredProcedureNameContains = null; public String StoredProcedureNameLike = null; public ArrayList StoredProcedureNameBetween = null; public ArrayList StoredProcedureNameIn = null; public Boolean IsDefault = null; public Integer ItemNo = null; public Integer ItemNoGreaterThanOrEqualTo = null; public Integer ItemNoGreaterThan = null; public Integer ItemNoLessThan = null; public Integer ItemNoLessThanOrEqualTo = null; public Integer ItemNoNotEqualTo = null; public ArrayList ItemNoBetween = null; public ArrayList ItemNoIn = null; public Boolean IsReadOnly = null; public String getRecID() { return RecID; } public SO_BatchPrintFiltersQuery setRecID(String value) { this.RecID = value; return this; } public String getRecIDStartsWith() { return RecIDStartsWith; } public SO_BatchPrintFiltersQuery setRecIDStartsWith(String value) { this.RecIDStartsWith = value; return this; } public String getRecIDEndsWith() { return RecIDEndsWith; } public SO_BatchPrintFiltersQuery setRecIDEndsWith(String value) { this.RecIDEndsWith = value; return this; } public String getRecIDContains() { return RecIDContains; } public SO_BatchPrintFiltersQuery setRecIDContains(String value) { this.RecIDContains = value; return this; } public String getRecIDLike() { return RecIDLike; } public SO_BatchPrintFiltersQuery setRecIDLike(String value) { this.RecIDLike = value; return this; } public ArrayList getRecIDBetween() { return RecIDBetween; } public SO_BatchPrintFiltersQuery setRecIDBetween(ArrayList value) { this.RecIDBetween = value; return this; } public ArrayList getRecIDIn() { return RecIDIn; } public SO_BatchPrintFiltersQuery setRecIDIn(ArrayList value) { this.RecIDIn = value; return this; } public String getName() { return Name; } public SO_BatchPrintFiltersQuery setName(String value) { this.Name = value; return this; } public String getNameStartsWith() { return NameStartsWith; } public SO_BatchPrintFiltersQuery setNameStartsWith(String value) { this.NameStartsWith = value; return this; } public String getNameEndsWith() { return NameEndsWith; } public SO_BatchPrintFiltersQuery setNameEndsWith(String value) { this.NameEndsWith = value; return this; } public String getNameContains() { return NameContains; } public SO_BatchPrintFiltersQuery setNameContains(String value) { this.NameContains = value; return this; } public String getNameLike() { return NameLike; } public SO_BatchPrintFiltersQuery setNameLike(String value) { this.NameLike = value; return this; } public ArrayList getNameBetween() { return NameBetween; } public SO_BatchPrintFiltersQuery setNameBetween(ArrayList value) { this.NameBetween = value; return this; } public ArrayList getNameIn() { return NameIn; } public SO_BatchPrintFiltersQuery setNameIn(ArrayList value) { this.NameIn = value; return this; } public String getStoredProcedureName() { return StoredProcedureName; } public SO_BatchPrintFiltersQuery setStoredProcedureName(String value) { this.StoredProcedureName = value; return this; } public String getStoredProcedureNameStartsWith() { return StoredProcedureNameStartsWith; } public SO_BatchPrintFiltersQuery setStoredProcedureNameStartsWith(String value) { this.StoredProcedureNameStartsWith = value; return this; } public String getStoredProcedureNameEndsWith() { return StoredProcedureNameEndsWith; } public SO_BatchPrintFiltersQuery setStoredProcedureNameEndsWith(String value) { this.StoredProcedureNameEndsWith = value; return this; } public String getStoredProcedureNameContains() { return StoredProcedureNameContains; } public SO_BatchPrintFiltersQuery setStoredProcedureNameContains(String value) { this.StoredProcedureNameContains = value; return this; } public String getStoredProcedureNameLike() { return StoredProcedureNameLike; } public SO_BatchPrintFiltersQuery setStoredProcedureNameLike(String value) { this.StoredProcedureNameLike = value; return this; } public ArrayList getStoredProcedureNameBetween() { return StoredProcedureNameBetween; } public SO_BatchPrintFiltersQuery setStoredProcedureNameBetween(ArrayList value) { this.StoredProcedureNameBetween = value; return this; } public ArrayList getStoredProcedureNameIn() { return StoredProcedureNameIn; } public SO_BatchPrintFiltersQuery setStoredProcedureNameIn(ArrayList value) { this.StoredProcedureNameIn = value; return this; } public Boolean getIsDefault() { return IsDefault; } public SO_BatchPrintFiltersQuery setIsDefault(Boolean value) { this.IsDefault = value; return this; } public Integer getItemNo() { return ItemNo; } public SO_BatchPrintFiltersQuery setItemNo(Integer value) { this.ItemNo = value; return this; } public Integer getItemNoGreaterThanOrEqualTo() { return ItemNoGreaterThanOrEqualTo; } public SO_BatchPrintFiltersQuery setItemNoGreaterThanOrEqualTo(Integer value) { this.ItemNoGreaterThanOrEqualTo = value; return this; } public Integer getItemNoGreaterThan() { return ItemNoGreaterThan; } public SO_BatchPrintFiltersQuery setItemNoGreaterThan(Integer value) { this.ItemNoGreaterThan = value; return this; } public Integer getItemNoLessThan() { return ItemNoLessThan; } public SO_BatchPrintFiltersQuery setItemNoLessThan(Integer value) { this.ItemNoLessThan = value; return this; } public Integer getItemNoLessThanOrEqualTo() { return ItemNoLessThanOrEqualTo; } public SO_BatchPrintFiltersQuery setItemNoLessThanOrEqualTo(Integer value) { this.ItemNoLessThanOrEqualTo = value; return this; } public Integer getItemNoNotEqualTo() { return ItemNoNotEqualTo; } public SO_BatchPrintFiltersQuery setItemNoNotEqualTo(Integer value) { this.ItemNoNotEqualTo = value; return this; } public ArrayList getItemNoBetween() { return ItemNoBetween; } public SO_BatchPrintFiltersQuery setItemNoBetween(ArrayList value) { this.ItemNoBetween = value; return this; } public ArrayList getItemNoIn() { return ItemNoIn; } public SO_BatchPrintFiltersQuery setItemNoIn(ArrayList value) { this.ItemNoIn = value; return this; } public Boolean getIsReadOnly() { return IsReadOnly; } public SO_BatchPrintFiltersQuery setIsReadOnly(Boolean value) { this.IsReadOnly = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class SO_BatchPrintSettingsQuery extends QueryDb implements IReturn> { public String Name = null; public String NameStartsWith = null; public String NameEndsWith = null; public String NameContains = null; public String NameLike = null; public ArrayList NameBetween = null; public ArrayList NameIn = null; public String Description = null; public String DescriptionStartsWith = null; public String DescriptionEndsWith = null; public String DescriptionContains = null; public String DescriptionLike = null; public ArrayList DescriptionBetween = null; public ArrayList DescriptionIn = null; public Date LastSavedDateTime = null; public Date LastSavedDateTimeGreaterThanOrEqualTo = null; public Date LastSavedDateTimeGreaterThan = null; public Date LastSavedDateTimeLessThan = null; public Date LastSavedDateTimeLessThanOrEqualTo = null; public Date LastSavedDateTimeNotEqualTo = null; public ArrayList LastSavedDateTimeBetween = null; public ArrayList LastSavedDateTimeIn = null; public Short DeliveryDocketPrintedStatus = null; public Short DeliveryDocketPrintedStatusGreaterThanOrEqualTo = null; public Short DeliveryDocketPrintedStatusGreaterThan = null; public Short DeliveryDocketPrintedStatusLessThan = null; public Short DeliveryDocketPrintedStatusLessThanOrEqualTo = null; public Short DeliveryDocketPrintedStatusNotEqualTo = null; public ArrayList DeliveryDocketPrintedStatusBetween = null; public ArrayList DeliveryDocketPrintedStatusIn = null; public Short SalesOrderPrintedStatus = null; public Short SalesOrderPrintedStatusGreaterThanOrEqualTo = null; public Short SalesOrderPrintedStatusGreaterThan = null; public Short SalesOrderPrintedStatusLessThan = null; public Short SalesOrderPrintedStatusLessThanOrEqualTo = null; public Short SalesOrderPrintedStatusNotEqualTo = null; public ArrayList SalesOrderPrintedStatusBetween = null; public ArrayList SalesOrderPrintedStatusIn = null; public Short PackSlipPrintedStatus = null; public Short PackSlipPrintedStatusGreaterThanOrEqualTo = null; public Short PackSlipPrintedStatusGreaterThan = null; public Short PackSlipPrintedStatusLessThan = null; public Short PackSlipPrintedStatusLessThanOrEqualTo = null; public Short PackSlipPrintedStatusNotEqualTo = null; public ArrayList PackSlipPrintedStatusBetween = null; public ArrayList PackSlipPrintedStatusIn = null; public Short PickSheetPrintedStatus = null; public Short PickSheetPrintedStatusGreaterThanOrEqualTo = null; public Short PickSheetPrintedStatusGreaterThan = null; public Short PickSheetPrintedStatusLessThan = null; public Short PickSheetPrintedStatusLessThanOrEqualTo = null; public Short PickSheetPrintedStatusNotEqualTo = null; public ArrayList PickSheetPrintedStatusBetween = null; public ArrayList PickSheetPrintedStatusIn = null; public Short OtherPrintedStatus = null; public Short OtherPrintedStatusGreaterThanOrEqualTo = null; public Short OtherPrintedStatusGreaterThan = null; public Short OtherPrintedStatusLessThan = null; public Short OtherPrintedStatusLessThanOrEqualTo = null; public Short OtherPrintedStatusNotEqualTo = null; public ArrayList OtherPrintedStatusBetween = null; public ArrayList OtherPrintedStatusIn = null; public Short SalesOrderType = null; public Short SalesOrderTypeGreaterThanOrEqualTo = null; public Short SalesOrderTypeGreaterThan = null; public Short SalesOrderTypeLessThan = null; public Short SalesOrderTypeLessThanOrEqualTo = null; public Short SalesOrderTypeNotEqualTo = null; public ArrayList SalesOrderTypeBetween = null; public ArrayList SalesOrderTypeIn = null; public Short DocumentType = null; public Short DocumentTypeGreaterThanOrEqualTo = null; public Short DocumentTypeGreaterThan = null; public Short DocumentTypeLessThan = null; public Short DocumentTypeLessThanOrEqualTo = null; public Short DocumentTypeNotEqualTo = null; public ArrayList DocumentTypeBetween = null; public ArrayList DocumentTypeIn = null; public Short BillingType = null; public Short BillingTypeGreaterThanOrEqualTo = null; public Short BillingTypeGreaterThan = null; public Short BillingTypeLessThan = null; public Short BillingTypeLessThanOrEqualTo = null; public Short BillingTypeNotEqualTo = null; public ArrayList BillingTypeBetween = null; public ArrayList BillingTypeIn = null; public Short BackOrderMode = null; public Short BackOrderModeGreaterThanOrEqualTo = null; public Short BackOrderModeGreaterThan = null; public Short BackOrderModeLessThan = null; public Short BackOrderModeLessThanOrEqualTo = null; public Short BackOrderModeNotEqualTo = null; public ArrayList BackOrderModeBetween = null; public ArrayList BackOrderModeIn = null; public Short SalesOrderStatus = null; public Short SalesOrderStatusGreaterThanOrEqualTo = null; public Short SalesOrderStatusGreaterThan = null; public Short SalesOrderStatusLessThan = null; public Short SalesOrderStatusLessThanOrEqualTo = null; public Short SalesOrderStatusNotEqualTo = null; public ArrayList SalesOrderStatusBetween = null; public ArrayList SalesOrderStatusIn = null; public Boolean CurrentSnapOnly = null; public String BatchPrintFilterRecID = null; public String BatchPrintFilterRecIDStartsWith = null; public String BatchPrintFilterRecIDEndsWith = null; public String BatchPrintFilterRecIDContains = null; public String BatchPrintFilterRecIDLike = null; public ArrayList BatchPrintFilterRecIDBetween = null; public ArrayList BatchPrintFilterRecIDIn = null; public Boolean PrintDeliveryDocket = null; public Boolean PrintInvoice = null; public Boolean PrintPackSlip = null; public Boolean PrintPickSheet = null; public Boolean PrintOther = null; public String RecID = null; public String RecIDStartsWith = null; public String RecIDEndsWith = null; public String RecIDContains = null; public String RecIDLike = null; public ArrayList RecIDBetween = null; public ArrayList RecIDIn = null; public Boolean EmailDeliveryDocket = null; public Boolean EmailInvoice = null; public Boolean EmailPackSlip = null; public Boolean EmailPickSheet = null; public Boolean EmailOther = null; public Short DeliveryDocketEmailedStatus = null; public Short DeliveryDocketEmailedStatusGreaterThanOrEqualTo = null; public Short DeliveryDocketEmailedStatusGreaterThan = null; public Short DeliveryDocketEmailedStatusLessThan = null; public Short DeliveryDocketEmailedStatusLessThanOrEqualTo = null; public Short DeliveryDocketEmailedStatusNotEqualTo = null; public ArrayList DeliveryDocketEmailedStatusBetween = null; public ArrayList DeliveryDocketEmailedStatusIn = null; public Short SalesOrderEmailedStatus = null; public Short SalesOrderEmailedStatusGreaterThanOrEqualTo = null; public Short SalesOrderEmailedStatusGreaterThan = null; public Short SalesOrderEmailedStatusLessThan = null; public Short SalesOrderEmailedStatusLessThanOrEqualTo = null; public Short SalesOrderEmailedStatusNotEqualTo = null; public ArrayList SalesOrderEmailedStatusBetween = null; public ArrayList SalesOrderEmailedStatusIn = null; public Short PackSlipEmailedStatus = null; public Short PackSlipEmailedStatusGreaterThanOrEqualTo = null; public Short PackSlipEmailedStatusGreaterThan = null; public Short PackSlipEmailedStatusLessThan = null; public Short PackSlipEmailedStatusLessThanOrEqualTo = null; public Short PackSlipEmailedStatusNotEqualTo = null; public ArrayList PackSlipEmailedStatusBetween = null; public ArrayList PackSlipEmailedStatusIn = null; public Short PickSheetEmailedStatus = null; public Short PickSheetEmailedStatusGreaterThanOrEqualTo = null; public Short PickSheetEmailedStatusGreaterThan = null; public Short PickSheetEmailedStatusLessThan = null; public Short PickSheetEmailedStatusLessThanOrEqualTo = null; public Short PickSheetEmailedStatusNotEqualTo = null; public ArrayList PickSheetEmailedStatusBetween = null; public ArrayList PickSheetEmailedStatusIn = null; public Short OtherEmailedStatus = null; public Short OtherEmailedStatusGreaterThanOrEqualTo = null; public Short OtherEmailedStatusGreaterThan = null; public Short OtherEmailedStatusLessThan = null; public Short OtherEmailedStatusLessThanOrEqualTo = null; public Short OtherEmailedStatusNotEqualTo = null; public ArrayList OtherEmailedStatusBetween = null; public ArrayList OtherEmailedStatusIn = null; public String BatchPrintEmailTemplateRecID = null; public String BatchPrintEmailTemplateRecIDStartsWith = null; public String BatchPrintEmailTemplateRecIDEndsWith = null; public String BatchPrintEmailTemplateRecIDContains = null; public String BatchPrintEmailTemplateRecIDLike = null; public ArrayList BatchPrintEmailTemplateRecIDBetween = null; public ArrayList BatchPrintEmailTemplateRecIDIn = null; public String AppliesTo_IN_PhysicalID = null; public String AppliesTo_IN_PhysicalIDStartsWith = null; public String AppliesTo_IN_PhysicalIDEndsWith = null; public String AppliesTo_IN_PhysicalIDContains = null; public String AppliesTo_IN_PhysicalIDLike = null; public ArrayList AppliesTo_IN_PhysicalIDBetween = null; public ArrayList AppliesTo_IN_PhysicalIDIn = null; public String AppliesTo_IN_LogicalID = null; public String AppliesTo_IN_LogicalIDStartsWith = null; public String AppliesTo_IN_LogicalIDEndsWith = null; public String AppliesTo_IN_LogicalIDContains = null; public String AppliesTo_IN_LogicalIDLike = null; public ArrayList AppliesTo_IN_LogicalIDBetween = null; public ArrayList AppliesTo_IN_LogicalIDIn = null; public String VisibleTo_IN_PhysicalID = null; public String VisibleTo_IN_PhysicalIDStartsWith = null; public String VisibleTo_IN_PhysicalIDEndsWith = null; public String VisibleTo_IN_PhysicalIDContains = null; public String VisibleTo_IN_PhysicalIDLike = null; public ArrayList VisibleTo_IN_PhysicalIDBetween = null; public ArrayList VisibleTo_IN_PhysicalIDIn = null; public String VisibleTo_IN_LogicalID = null; public String VisibleTo_IN_LogicalIDStartsWith = null; public String VisibleTo_IN_LogicalIDEndsWith = null; public String VisibleTo_IN_LogicalIDContains = null; public String VisibleTo_IN_LogicalIDLike = null; public ArrayList VisibleTo_IN_LogicalIDBetween = null; public ArrayList VisibleTo_IN_LogicalIDIn = null; public String getName() { return Name; } public SO_BatchPrintSettingsQuery setName(String value) { this.Name = value; return this; } public String getNameStartsWith() { return NameStartsWith; } public SO_BatchPrintSettingsQuery setNameStartsWith(String value) { this.NameStartsWith = value; return this; } public String getNameEndsWith() { return NameEndsWith; } public SO_BatchPrintSettingsQuery setNameEndsWith(String value) { this.NameEndsWith = value; return this; } public String getNameContains() { return NameContains; } public SO_BatchPrintSettingsQuery setNameContains(String value) { this.NameContains = value; return this; } public String getNameLike() { return NameLike; } public SO_BatchPrintSettingsQuery setNameLike(String value) { this.NameLike = value; return this; } public ArrayList getNameBetween() { return NameBetween; } public SO_BatchPrintSettingsQuery setNameBetween(ArrayList value) { this.NameBetween = value; return this; } public ArrayList getNameIn() { return NameIn; } public SO_BatchPrintSettingsQuery setNameIn(ArrayList value) { this.NameIn = value; return this; } public String getDescription() { return Description; } public SO_BatchPrintSettingsQuery setDescription(String value) { this.Description = value; return this; } public String getDescriptionStartsWith() { return DescriptionStartsWith; } public SO_BatchPrintSettingsQuery setDescriptionStartsWith(String value) { this.DescriptionStartsWith = value; return this; } public String getDescriptionEndsWith() { return DescriptionEndsWith; } public SO_BatchPrintSettingsQuery setDescriptionEndsWith(String value) { this.DescriptionEndsWith = value; return this; } public String getDescriptionContains() { return DescriptionContains; } public SO_BatchPrintSettingsQuery setDescriptionContains(String value) { this.DescriptionContains = value; return this; } public String getDescriptionLike() { return DescriptionLike; } public SO_BatchPrintSettingsQuery setDescriptionLike(String value) { this.DescriptionLike = value; return this; } public ArrayList getDescriptionBetween() { return DescriptionBetween; } public SO_BatchPrintSettingsQuery setDescriptionBetween(ArrayList value) { this.DescriptionBetween = value; return this; } public ArrayList getDescriptionIn() { return DescriptionIn; } public SO_BatchPrintSettingsQuery setDescriptionIn(ArrayList value) { this.DescriptionIn = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public SO_BatchPrintSettingsQuery setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getLastSavedDateTimeGreaterThanOrEqualTo() { return LastSavedDateTimeGreaterThanOrEqualTo; } public SO_BatchPrintSettingsQuery setLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.LastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeGreaterThan() { return LastSavedDateTimeGreaterThan; } public SO_BatchPrintSettingsQuery setLastSavedDateTimeGreaterThan(Date value) { this.LastSavedDateTimeGreaterThan = value; return this; } public Date getLastSavedDateTimeLessThan() { return LastSavedDateTimeLessThan; } public SO_BatchPrintSettingsQuery setLastSavedDateTimeLessThan(Date value) { this.LastSavedDateTimeLessThan = value; return this; } public Date getLastSavedDateTimeLessThanOrEqualTo() { return LastSavedDateTimeLessThanOrEqualTo; } public SO_BatchPrintSettingsQuery setLastSavedDateTimeLessThanOrEqualTo(Date value) { this.LastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeNotEqualTo() { return LastSavedDateTimeNotEqualTo; } public SO_BatchPrintSettingsQuery setLastSavedDateTimeNotEqualTo(Date value) { this.LastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getLastSavedDateTimeBetween() { return LastSavedDateTimeBetween; } public SO_BatchPrintSettingsQuery setLastSavedDateTimeBetween(ArrayList value) { this.LastSavedDateTimeBetween = value; return this; } public ArrayList getLastSavedDateTimeIn() { return LastSavedDateTimeIn; } public SO_BatchPrintSettingsQuery setLastSavedDateTimeIn(ArrayList value) { this.LastSavedDateTimeIn = value; return this; } public Short getDeliveryDocketPrintedStatus() { return DeliveryDocketPrintedStatus; } public SO_BatchPrintSettingsQuery setDeliveryDocketPrintedStatus(Short value) { this.DeliveryDocketPrintedStatus = value; return this; } public Short getDeliveryDocketPrintedStatusGreaterThanOrEqualTo() { return DeliveryDocketPrintedStatusGreaterThanOrEqualTo; } public SO_BatchPrintSettingsQuery setDeliveryDocketPrintedStatusGreaterThanOrEqualTo(Short value) { this.DeliveryDocketPrintedStatusGreaterThanOrEqualTo = value; return this; } public Short getDeliveryDocketPrintedStatusGreaterThan() { return DeliveryDocketPrintedStatusGreaterThan; } public SO_BatchPrintSettingsQuery setDeliveryDocketPrintedStatusGreaterThan(Short value) { this.DeliveryDocketPrintedStatusGreaterThan = value; return this; } public Short getDeliveryDocketPrintedStatusLessThan() { return DeliveryDocketPrintedStatusLessThan; } public SO_BatchPrintSettingsQuery setDeliveryDocketPrintedStatusLessThan(Short value) { this.DeliveryDocketPrintedStatusLessThan = value; return this; } public Short getDeliveryDocketPrintedStatusLessThanOrEqualTo() { return DeliveryDocketPrintedStatusLessThanOrEqualTo; } public SO_BatchPrintSettingsQuery setDeliveryDocketPrintedStatusLessThanOrEqualTo(Short value) { this.DeliveryDocketPrintedStatusLessThanOrEqualTo = value; return this; } public Short getDeliveryDocketPrintedStatusNotEqualTo() { return DeliveryDocketPrintedStatusNotEqualTo; } public SO_BatchPrintSettingsQuery setDeliveryDocketPrintedStatusNotEqualTo(Short value) { this.DeliveryDocketPrintedStatusNotEqualTo = value; return this; } public ArrayList getDeliveryDocketPrintedStatusBetween() { return DeliveryDocketPrintedStatusBetween; } public SO_BatchPrintSettingsQuery setDeliveryDocketPrintedStatusBetween(ArrayList value) { this.DeliveryDocketPrintedStatusBetween = value; return this; } public ArrayList getDeliveryDocketPrintedStatusIn() { return DeliveryDocketPrintedStatusIn; } public SO_BatchPrintSettingsQuery setDeliveryDocketPrintedStatusIn(ArrayList value) { this.DeliveryDocketPrintedStatusIn = value; return this; } public Short getSalesOrderPrintedStatus() { return SalesOrderPrintedStatus; } public SO_BatchPrintSettingsQuery setSalesOrderPrintedStatus(Short value) { this.SalesOrderPrintedStatus = value; return this; } public Short getSalesOrderPrintedStatusGreaterThanOrEqualTo() { return SalesOrderPrintedStatusGreaterThanOrEqualTo; } public SO_BatchPrintSettingsQuery setSalesOrderPrintedStatusGreaterThanOrEqualTo(Short value) { this.SalesOrderPrintedStatusGreaterThanOrEqualTo = value; return this; } public Short getSalesOrderPrintedStatusGreaterThan() { return SalesOrderPrintedStatusGreaterThan; } public SO_BatchPrintSettingsQuery setSalesOrderPrintedStatusGreaterThan(Short value) { this.SalesOrderPrintedStatusGreaterThan = value; return this; } public Short getSalesOrderPrintedStatusLessThan() { return SalesOrderPrintedStatusLessThan; } public SO_BatchPrintSettingsQuery setSalesOrderPrintedStatusLessThan(Short value) { this.SalesOrderPrintedStatusLessThan = value; return this; } public Short getSalesOrderPrintedStatusLessThanOrEqualTo() { return SalesOrderPrintedStatusLessThanOrEqualTo; } public SO_BatchPrintSettingsQuery setSalesOrderPrintedStatusLessThanOrEqualTo(Short value) { this.SalesOrderPrintedStatusLessThanOrEqualTo = value; return this; } public Short getSalesOrderPrintedStatusNotEqualTo() { return SalesOrderPrintedStatusNotEqualTo; } public SO_BatchPrintSettingsQuery setSalesOrderPrintedStatusNotEqualTo(Short value) { this.SalesOrderPrintedStatusNotEqualTo = value; return this; } public ArrayList getSalesOrderPrintedStatusBetween() { return SalesOrderPrintedStatusBetween; } public SO_BatchPrintSettingsQuery setSalesOrderPrintedStatusBetween(ArrayList value) { this.SalesOrderPrintedStatusBetween = value; return this; } public ArrayList getSalesOrderPrintedStatusIn() { return SalesOrderPrintedStatusIn; } public SO_BatchPrintSettingsQuery setSalesOrderPrintedStatusIn(ArrayList value) { this.SalesOrderPrintedStatusIn = value; return this; } public Short getPackSlipPrintedStatus() { return PackSlipPrintedStatus; } public SO_BatchPrintSettingsQuery setPackSlipPrintedStatus(Short value) { this.PackSlipPrintedStatus = value; return this; } public Short getPackSlipPrintedStatusGreaterThanOrEqualTo() { return PackSlipPrintedStatusGreaterThanOrEqualTo; } public SO_BatchPrintSettingsQuery setPackSlipPrintedStatusGreaterThanOrEqualTo(Short value) { this.PackSlipPrintedStatusGreaterThanOrEqualTo = value; return this; } public Short getPackSlipPrintedStatusGreaterThan() { return PackSlipPrintedStatusGreaterThan; } public SO_BatchPrintSettingsQuery setPackSlipPrintedStatusGreaterThan(Short value) { this.PackSlipPrintedStatusGreaterThan = value; return this; } public Short getPackSlipPrintedStatusLessThan() { return PackSlipPrintedStatusLessThan; } public SO_BatchPrintSettingsQuery setPackSlipPrintedStatusLessThan(Short value) { this.PackSlipPrintedStatusLessThan = value; return this; } public Short getPackSlipPrintedStatusLessThanOrEqualTo() { return PackSlipPrintedStatusLessThanOrEqualTo; } public SO_BatchPrintSettingsQuery setPackSlipPrintedStatusLessThanOrEqualTo(Short value) { this.PackSlipPrintedStatusLessThanOrEqualTo = value; return this; } public Short getPackSlipPrintedStatusNotEqualTo() { return PackSlipPrintedStatusNotEqualTo; } public SO_BatchPrintSettingsQuery setPackSlipPrintedStatusNotEqualTo(Short value) { this.PackSlipPrintedStatusNotEqualTo = value; return this; } public ArrayList getPackSlipPrintedStatusBetween() { return PackSlipPrintedStatusBetween; } public SO_BatchPrintSettingsQuery setPackSlipPrintedStatusBetween(ArrayList value) { this.PackSlipPrintedStatusBetween = value; return this; } public ArrayList getPackSlipPrintedStatusIn() { return PackSlipPrintedStatusIn; } public SO_BatchPrintSettingsQuery setPackSlipPrintedStatusIn(ArrayList value) { this.PackSlipPrintedStatusIn = value; return this; } public Short getPickSheetPrintedStatus() { return PickSheetPrintedStatus; } public SO_BatchPrintSettingsQuery setPickSheetPrintedStatus(Short value) { this.PickSheetPrintedStatus = value; return this; } public Short getPickSheetPrintedStatusGreaterThanOrEqualTo() { return PickSheetPrintedStatusGreaterThanOrEqualTo; } public SO_BatchPrintSettingsQuery setPickSheetPrintedStatusGreaterThanOrEqualTo(Short value) { this.PickSheetPrintedStatusGreaterThanOrEqualTo = value; return this; } public Short getPickSheetPrintedStatusGreaterThan() { return PickSheetPrintedStatusGreaterThan; } public SO_BatchPrintSettingsQuery setPickSheetPrintedStatusGreaterThan(Short value) { this.PickSheetPrintedStatusGreaterThan = value; return this; } public Short getPickSheetPrintedStatusLessThan() { return PickSheetPrintedStatusLessThan; } public SO_BatchPrintSettingsQuery setPickSheetPrintedStatusLessThan(Short value) { this.PickSheetPrintedStatusLessThan = value; return this; } public Short getPickSheetPrintedStatusLessThanOrEqualTo() { return PickSheetPrintedStatusLessThanOrEqualTo; } public SO_BatchPrintSettingsQuery setPickSheetPrintedStatusLessThanOrEqualTo(Short value) { this.PickSheetPrintedStatusLessThanOrEqualTo = value; return this; } public Short getPickSheetPrintedStatusNotEqualTo() { return PickSheetPrintedStatusNotEqualTo; } public SO_BatchPrintSettingsQuery setPickSheetPrintedStatusNotEqualTo(Short value) { this.PickSheetPrintedStatusNotEqualTo = value; return this; } public ArrayList getPickSheetPrintedStatusBetween() { return PickSheetPrintedStatusBetween; } public SO_BatchPrintSettingsQuery setPickSheetPrintedStatusBetween(ArrayList value) { this.PickSheetPrintedStatusBetween = value; return this; } public ArrayList getPickSheetPrintedStatusIn() { return PickSheetPrintedStatusIn; } public SO_BatchPrintSettingsQuery setPickSheetPrintedStatusIn(ArrayList value) { this.PickSheetPrintedStatusIn = value; return this; } public Short getOtherPrintedStatus() { return OtherPrintedStatus; } public SO_BatchPrintSettingsQuery setOtherPrintedStatus(Short value) { this.OtherPrintedStatus = value; return this; } public Short getOtherPrintedStatusGreaterThanOrEqualTo() { return OtherPrintedStatusGreaterThanOrEqualTo; } public SO_BatchPrintSettingsQuery setOtherPrintedStatusGreaterThanOrEqualTo(Short value) { this.OtherPrintedStatusGreaterThanOrEqualTo = value; return this; } public Short getOtherPrintedStatusGreaterThan() { return OtherPrintedStatusGreaterThan; } public SO_BatchPrintSettingsQuery setOtherPrintedStatusGreaterThan(Short value) { this.OtherPrintedStatusGreaterThan = value; return this; } public Short getOtherPrintedStatusLessThan() { return OtherPrintedStatusLessThan; } public SO_BatchPrintSettingsQuery setOtherPrintedStatusLessThan(Short value) { this.OtherPrintedStatusLessThan = value; return this; } public Short getOtherPrintedStatusLessThanOrEqualTo() { return OtherPrintedStatusLessThanOrEqualTo; } public SO_BatchPrintSettingsQuery setOtherPrintedStatusLessThanOrEqualTo(Short value) { this.OtherPrintedStatusLessThanOrEqualTo = value; return this; } public Short getOtherPrintedStatusNotEqualTo() { return OtherPrintedStatusNotEqualTo; } public SO_BatchPrintSettingsQuery setOtherPrintedStatusNotEqualTo(Short value) { this.OtherPrintedStatusNotEqualTo = value; return this; } public ArrayList getOtherPrintedStatusBetween() { return OtherPrintedStatusBetween; } public SO_BatchPrintSettingsQuery setOtherPrintedStatusBetween(ArrayList value) { this.OtherPrintedStatusBetween = value; return this; } public ArrayList getOtherPrintedStatusIn() { return OtherPrintedStatusIn; } public SO_BatchPrintSettingsQuery setOtherPrintedStatusIn(ArrayList value) { this.OtherPrintedStatusIn = value; return this; } public Short getSalesOrderType() { return SalesOrderType; } public SO_BatchPrintSettingsQuery setSalesOrderType(Short value) { this.SalesOrderType = value; return this; } public Short getSalesOrderTypeGreaterThanOrEqualTo() { return SalesOrderTypeGreaterThanOrEqualTo; } public SO_BatchPrintSettingsQuery setSalesOrderTypeGreaterThanOrEqualTo(Short value) { this.SalesOrderTypeGreaterThanOrEqualTo = value; return this; } public Short getSalesOrderTypeGreaterThan() { return SalesOrderTypeGreaterThan; } public SO_BatchPrintSettingsQuery setSalesOrderTypeGreaterThan(Short value) { this.SalesOrderTypeGreaterThan = value; return this; } public Short getSalesOrderTypeLessThan() { return SalesOrderTypeLessThan; } public SO_BatchPrintSettingsQuery setSalesOrderTypeLessThan(Short value) { this.SalesOrderTypeLessThan = value; return this; } public Short getSalesOrderTypeLessThanOrEqualTo() { return SalesOrderTypeLessThanOrEqualTo; } public SO_BatchPrintSettingsQuery setSalesOrderTypeLessThanOrEqualTo(Short value) { this.SalesOrderTypeLessThanOrEqualTo = value; return this; } public Short getSalesOrderTypeNotEqualTo() { return SalesOrderTypeNotEqualTo; } public SO_BatchPrintSettingsQuery setSalesOrderTypeNotEqualTo(Short value) { this.SalesOrderTypeNotEqualTo = value; return this; } public ArrayList getSalesOrderTypeBetween() { return SalesOrderTypeBetween; } public SO_BatchPrintSettingsQuery setSalesOrderTypeBetween(ArrayList value) { this.SalesOrderTypeBetween = value; return this; } public ArrayList getSalesOrderTypeIn() { return SalesOrderTypeIn; } public SO_BatchPrintSettingsQuery setSalesOrderTypeIn(ArrayList value) { this.SalesOrderTypeIn = value; return this; } public Short getDocumentType() { return DocumentType; } public SO_BatchPrintSettingsQuery setDocumentType(Short value) { this.DocumentType = value; return this; } public Short getDocumentTypeGreaterThanOrEqualTo() { return DocumentTypeGreaterThanOrEqualTo; } public SO_BatchPrintSettingsQuery setDocumentTypeGreaterThanOrEqualTo(Short value) { this.DocumentTypeGreaterThanOrEqualTo = value; return this; } public Short getDocumentTypeGreaterThan() { return DocumentTypeGreaterThan; } public SO_BatchPrintSettingsQuery setDocumentTypeGreaterThan(Short value) { this.DocumentTypeGreaterThan = value; return this; } public Short getDocumentTypeLessThan() { return DocumentTypeLessThan; } public SO_BatchPrintSettingsQuery setDocumentTypeLessThan(Short value) { this.DocumentTypeLessThan = value; return this; } public Short getDocumentTypeLessThanOrEqualTo() { return DocumentTypeLessThanOrEqualTo; } public SO_BatchPrintSettingsQuery setDocumentTypeLessThanOrEqualTo(Short value) { this.DocumentTypeLessThanOrEqualTo = value; return this; } public Short getDocumentTypeNotEqualTo() { return DocumentTypeNotEqualTo; } public SO_BatchPrintSettingsQuery setDocumentTypeNotEqualTo(Short value) { this.DocumentTypeNotEqualTo = value; return this; } public ArrayList getDocumentTypeBetween() { return DocumentTypeBetween; } public SO_BatchPrintSettingsQuery setDocumentTypeBetween(ArrayList value) { this.DocumentTypeBetween = value; return this; } public ArrayList getDocumentTypeIn() { return DocumentTypeIn; } public SO_BatchPrintSettingsQuery setDocumentTypeIn(ArrayList value) { this.DocumentTypeIn = value; return this; } public Short getBillingType() { return BillingType; } public SO_BatchPrintSettingsQuery setBillingType(Short value) { this.BillingType = value; return this; } public Short getBillingTypeGreaterThanOrEqualTo() { return BillingTypeGreaterThanOrEqualTo; } public SO_BatchPrintSettingsQuery setBillingTypeGreaterThanOrEqualTo(Short value) { this.BillingTypeGreaterThanOrEqualTo = value; return this; } public Short getBillingTypeGreaterThan() { return BillingTypeGreaterThan; } public SO_BatchPrintSettingsQuery setBillingTypeGreaterThan(Short value) { this.BillingTypeGreaterThan = value; return this; } public Short getBillingTypeLessThan() { return BillingTypeLessThan; } public SO_BatchPrintSettingsQuery setBillingTypeLessThan(Short value) { this.BillingTypeLessThan = value; return this; } public Short getBillingTypeLessThanOrEqualTo() { return BillingTypeLessThanOrEqualTo; } public SO_BatchPrintSettingsQuery setBillingTypeLessThanOrEqualTo(Short value) { this.BillingTypeLessThanOrEqualTo = value; return this; } public Short getBillingTypeNotEqualTo() { return BillingTypeNotEqualTo; } public SO_BatchPrintSettingsQuery setBillingTypeNotEqualTo(Short value) { this.BillingTypeNotEqualTo = value; return this; } public ArrayList getBillingTypeBetween() { return BillingTypeBetween; } public SO_BatchPrintSettingsQuery setBillingTypeBetween(ArrayList value) { this.BillingTypeBetween = value; return this; } public ArrayList getBillingTypeIn() { return BillingTypeIn; } public SO_BatchPrintSettingsQuery setBillingTypeIn(ArrayList value) { this.BillingTypeIn = value; return this; } public Short getBackOrderMode() { return BackOrderMode; } public SO_BatchPrintSettingsQuery setBackOrderMode(Short value) { this.BackOrderMode = value; return this; } public Short getBackOrderModeGreaterThanOrEqualTo() { return BackOrderModeGreaterThanOrEqualTo; } public SO_BatchPrintSettingsQuery setBackOrderModeGreaterThanOrEqualTo(Short value) { this.BackOrderModeGreaterThanOrEqualTo = value; return this; } public Short getBackOrderModeGreaterThan() { return BackOrderModeGreaterThan; } public SO_BatchPrintSettingsQuery setBackOrderModeGreaterThan(Short value) { this.BackOrderModeGreaterThan = value; return this; } public Short getBackOrderModeLessThan() { return BackOrderModeLessThan; } public SO_BatchPrintSettingsQuery setBackOrderModeLessThan(Short value) { this.BackOrderModeLessThan = value; return this; } public Short getBackOrderModeLessThanOrEqualTo() { return BackOrderModeLessThanOrEqualTo; } public SO_BatchPrintSettingsQuery setBackOrderModeLessThanOrEqualTo(Short value) { this.BackOrderModeLessThanOrEqualTo = value; return this; } public Short getBackOrderModeNotEqualTo() { return BackOrderModeNotEqualTo; } public SO_BatchPrintSettingsQuery setBackOrderModeNotEqualTo(Short value) { this.BackOrderModeNotEqualTo = value; return this; } public ArrayList getBackOrderModeBetween() { return BackOrderModeBetween; } public SO_BatchPrintSettingsQuery setBackOrderModeBetween(ArrayList value) { this.BackOrderModeBetween = value; return this; } public ArrayList getBackOrderModeIn() { return BackOrderModeIn; } public SO_BatchPrintSettingsQuery setBackOrderModeIn(ArrayList value) { this.BackOrderModeIn = value; return this; } public Short getSalesOrderStatus() { return SalesOrderStatus; } public SO_BatchPrintSettingsQuery setSalesOrderStatus(Short value) { this.SalesOrderStatus = value; return this; } public Short getSalesOrderStatusGreaterThanOrEqualTo() { return SalesOrderStatusGreaterThanOrEqualTo; } public SO_BatchPrintSettingsQuery setSalesOrderStatusGreaterThanOrEqualTo(Short value) { this.SalesOrderStatusGreaterThanOrEqualTo = value; return this; } public Short getSalesOrderStatusGreaterThan() { return SalesOrderStatusGreaterThan; } public SO_BatchPrintSettingsQuery setSalesOrderStatusGreaterThan(Short value) { this.SalesOrderStatusGreaterThan = value; return this; } public Short getSalesOrderStatusLessThan() { return SalesOrderStatusLessThan; } public SO_BatchPrintSettingsQuery setSalesOrderStatusLessThan(Short value) { this.SalesOrderStatusLessThan = value; return this; } public Short getSalesOrderStatusLessThanOrEqualTo() { return SalesOrderStatusLessThanOrEqualTo; } public SO_BatchPrintSettingsQuery setSalesOrderStatusLessThanOrEqualTo(Short value) { this.SalesOrderStatusLessThanOrEqualTo = value; return this; } public Short getSalesOrderStatusNotEqualTo() { return SalesOrderStatusNotEqualTo; } public SO_BatchPrintSettingsQuery setSalesOrderStatusNotEqualTo(Short value) { this.SalesOrderStatusNotEqualTo = value; return this; } public ArrayList getSalesOrderStatusBetween() { return SalesOrderStatusBetween; } public SO_BatchPrintSettingsQuery setSalesOrderStatusBetween(ArrayList value) { this.SalesOrderStatusBetween = value; return this; } public ArrayList getSalesOrderStatusIn() { return SalesOrderStatusIn; } public SO_BatchPrintSettingsQuery setSalesOrderStatusIn(ArrayList value) { this.SalesOrderStatusIn = value; return this; } public Boolean isCurrentSnapOnly() { return CurrentSnapOnly; } public SO_BatchPrintSettingsQuery setCurrentSnapOnly(Boolean value) { this.CurrentSnapOnly = value; return this; } public String getBatchPrintFilterRecID() { return BatchPrintFilterRecID; } public SO_BatchPrintSettingsQuery setBatchPrintFilterRecID(String value) { this.BatchPrintFilterRecID = value; return this; } public String getBatchPrintFilterRecIDStartsWith() { return BatchPrintFilterRecIDStartsWith; } public SO_BatchPrintSettingsQuery setBatchPrintFilterRecIDStartsWith(String value) { this.BatchPrintFilterRecIDStartsWith = value; return this; } public String getBatchPrintFilterRecIDEndsWith() { return BatchPrintFilterRecIDEndsWith; } public SO_BatchPrintSettingsQuery setBatchPrintFilterRecIDEndsWith(String value) { this.BatchPrintFilterRecIDEndsWith = value; return this; } public String getBatchPrintFilterRecIDContains() { return BatchPrintFilterRecIDContains; } public SO_BatchPrintSettingsQuery setBatchPrintFilterRecIDContains(String value) { this.BatchPrintFilterRecIDContains = value; return this; } public String getBatchPrintFilterRecIDLike() { return BatchPrintFilterRecIDLike; } public SO_BatchPrintSettingsQuery setBatchPrintFilterRecIDLike(String value) { this.BatchPrintFilterRecIDLike = value; return this; } public ArrayList getBatchPrintFilterRecIDBetween() { return BatchPrintFilterRecIDBetween; } public SO_BatchPrintSettingsQuery setBatchPrintFilterRecIDBetween(ArrayList value) { this.BatchPrintFilterRecIDBetween = value; return this; } public ArrayList getBatchPrintFilterRecIDIn() { return BatchPrintFilterRecIDIn; } public SO_BatchPrintSettingsQuery setBatchPrintFilterRecIDIn(ArrayList value) { this.BatchPrintFilterRecIDIn = value; return this; } public Boolean isPrintDeliveryDocket() { return PrintDeliveryDocket; } public SO_BatchPrintSettingsQuery setPrintDeliveryDocket(Boolean value) { this.PrintDeliveryDocket = value; return this; } public Boolean isPrintInvoice() { return PrintInvoice; } public SO_BatchPrintSettingsQuery setPrintInvoice(Boolean value) { this.PrintInvoice = value; return this; } public Boolean isPrintPackSlip() { return PrintPackSlip; } public SO_BatchPrintSettingsQuery setPrintPackSlip(Boolean value) { this.PrintPackSlip = value; return this; } public Boolean isPrintPickSheet() { return PrintPickSheet; } public SO_BatchPrintSettingsQuery setPrintPickSheet(Boolean value) { this.PrintPickSheet = value; return this; } public Boolean isPrintOther() { return PrintOther; } public SO_BatchPrintSettingsQuery setPrintOther(Boolean value) { this.PrintOther = value; return this; } public String getRecID() { return RecID; } public SO_BatchPrintSettingsQuery setRecID(String value) { this.RecID = value; return this; } public String getRecIDStartsWith() { return RecIDStartsWith; } public SO_BatchPrintSettingsQuery setRecIDStartsWith(String value) { this.RecIDStartsWith = value; return this; } public String getRecIDEndsWith() { return RecIDEndsWith; } public SO_BatchPrintSettingsQuery setRecIDEndsWith(String value) { this.RecIDEndsWith = value; return this; } public String getRecIDContains() { return RecIDContains; } public SO_BatchPrintSettingsQuery setRecIDContains(String value) { this.RecIDContains = value; return this; } public String getRecIDLike() { return RecIDLike; } public SO_BatchPrintSettingsQuery setRecIDLike(String value) { this.RecIDLike = value; return this; } public ArrayList getRecIDBetween() { return RecIDBetween; } public SO_BatchPrintSettingsQuery setRecIDBetween(ArrayList value) { this.RecIDBetween = value; return this; } public ArrayList getRecIDIn() { return RecIDIn; } public SO_BatchPrintSettingsQuery setRecIDIn(ArrayList value) { this.RecIDIn = value; return this; } public Boolean isEmailDeliveryDocket() { return EmailDeliveryDocket; } public SO_BatchPrintSettingsQuery setEmailDeliveryDocket(Boolean value) { this.EmailDeliveryDocket = value; return this; } public Boolean isEmailInvoice() { return EmailInvoice; } public SO_BatchPrintSettingsQuery setEmailInvoice(Boolean value) { this.EmailInvoice = value; return this; } public Boolean isEmailPackSlip() { return EmailPackSlip; } public SO_BatchPrintSettingsQuery setEmailPackSlip(Boolean value) { this.EmailPackSlip = value; return this; } public Boolean isEmailPickSheet() { return EmailPickSheet; } public SO_BatchPrintSettingsQuery setEmailPickSheet(Boolean value) { this.EmailPickSheet = value; return this; } public Boolean isEmailOther() { return EmailOther; } public SO_BatchPrintSettingsQuery setEmailOther(Boolean value) { this.EmailOther = value; return this; } public Short getDeliveryDocketEmailedStatus() { return DeliveryDocketEmailedStatus; } public SO_BatchPrintSettingsQuery setDeliveryDocketEmailedStatus(Short value) { this.DeliveryDocketEmailedStatus = value; return this; } public Short getDeliveryDocketEmailedStatusGreaterThanOrEqualTo() { return DeliveryDocketEmailedStatusGreaterThanOrEqualTo; } public SO_BatchPrintSettingsQuery setDeliveryDocketEmailedStatusGreaterThanOrEqualTo(Short value) { this.DeliveryDocketEmailedStatusGreaterThanOrEqualTo = value; return this; } public Short getDeliveryDocketEmailedStatusGreaterThan() { return DeliveryDocketEmailedStatusGreaterThan; } public SO_BatchPrintSettingsQuery setDeliveryDocketEmailedStatusGreaterThan(Short value) { this.DeliveryDocketEmailedStatusGreaterThan = value; return this; } public Short getDeliveryDocketEmailedStatusLessThan() { return DeliveryDocketEmailedStatusLessThan; } public SO_BatchPrintSettingsQuery setDeliveryDocketEmailedStatusLessThan(Short value) { this.DeliveryDocketEmailedStatusLessThan = value; return this; } public Short getDeliveryDocketEmailedStatusLessThanOrEqualTo() { return DeliveryDocketEmailedStatusLessThanOrEqualTo; } public SO_BatchPrintSettingsQuery setDeliveryDocketEmailedStatusLessThanOrEqualTo(Short value) { this.DeliveryDocketEmailedStatusLessThanOrEqualTo = value; return this; } public Short getDeliveryDocketEmailedStatusNotEqualTo() { return DeliveryDocketEmailedStatusNotEqualTo; } public SO_BatchPrintSettingsQuery setDeliveryDocketEmailedStatusNotEqualTo(Short value) { this.DeliveryDocketEmailedStatusNotEqualTo = value; return this; } public ArrayList getDeliveryDocketEmailedStatusBetween() { return DeliveryDocketEmailedStatusBetween; } public SO_BatchPrintSettingsQuery setDeliveryDocketEmailedStatusBetween(ArrayList value) { this.DeliveryDocketEmailedStatusBetween = value; return this; } public ArrayList getDeliveryDocketEmailedStatusIn() { return DeliveryDocketEmailedStatusIn; } public SO_BatchPrintSettingsQuery setDeliveryDocketEmailedStatusIn(ArrayList value) { this.DeliveryDocketEmailedStatusIn = value; return this; } public Short getSalesOrderEmailedStatus() { return SalesOrderEmailedStatus; } public SO_BatchPrintSettingsQuery setSalesOrderEmailedStatus(Short value) { this.SalesOrderEmailedStatus = value; return this; } public Short getSalesOrderEmailedStatusGreaterThanOrEqualTo() { return SalesOrderEmailedStatusGreaterThanOrEqualTo; } public SO_BatchPrintSettingsQuery setSalesOrderEmailedStatusGreaterThanOrEqualTo(Short value) { this.SalesOrderEmailedStatusGreaterThanOrEqualTo = value; return this; } public Short getSalesOrderEmailedStatusGreaterThan() { return SalesOrderEmailedStatusGreaterThan; } public SO_BatchPrintSettingsQuery setSalesOrderEmailedStatusGreaterThan(Short value) { this.SalesOrderEmailedStatusGreaterThan = value; return this; } public Short getSalesOrderEmailedStatusLessThan() { return SalesOrderEmailedStatusLessThan; } public SO_BatchPrintSettingsQuery setSalesOrderEmailedStatusLessThan(Short value) { this.SalesOrderEmailedStatusLessThan = value; return this; } public Short getSalesOrderEmailedStatusLessThanOrEqualTo() { return SalesOrderEmailedStatusLessThanOrEqualTo; } public SO_BatchPrintSettingsQuery setSalesOrderEmailedStatusLessThanOrEqualTo(Short value) { this.SalesOrderEmailedStatusLessThanOrEqualTo = value; return this; } public Short getSalesOrderEmailedStatusNotEqualTo() { return SalesOrderEmailedStatusNotEqualTo; } public SO_BatchPrintSettingsQuery setSalesOrderEmailedStatusNotEqualTo(Short value) { this.SalesOrderEmailedStatusNotEqualTo = value; return this; } public ArrayList getSalesOrderEmailedStatusBetween() { return SalesOrderEmailedStatusBetween; } public SO_BatchPrintSettingsQuery setSalesOrderEmailedStatusBetween(ArrayList value) { this.SalesOrderEmailedStatusBetween = value; return this; } public ArrayList getSalesOrderEmailedStatusIn() { return SalesOrderEmailedStatusIn; } public SO_BatchPrintSettingsQuery setSalesOrderEmailedStatusIn(ArrayList value) { this.SalesOrderEmailedStatusIn = value; return this; } public Short getPackSlipEmailedStatus() { return PackSlipEmailedStatus; } public SO_BatchPrintSettingsQuery setPackSlipEmailedStatus(Short value) { this.PackSlipEmailedStatus = value; return this; } public Short getPackSlipEmailedStatusGreaterThanOrEqualTo() { return PackSlipEmailedStatusGreaterThanOrEqualTo; } public SO_BatchPrintSettingsQuery setPackSlipEmailedStatusGreaterThanOrEqualTo(Short value) { this.PackSlipEmailedStatusGreaterThanOrEqualTo = value; return this; } public Short getPackSlipEmailedStatusGreaterThan() { return PackSlipEmailedStatusGreaterThan; } public SO_BatchPrintSettingsQuery setPackSlipEmailedStatusGreaterThan(Short value) { this.PackSlipEmailedStatusGreaterThan = value; return this; } public Short getPackSlipEmailedStatusLessThan() { return PackSlipEmailedStatusLessThan; } public SO_BatchPrintSettingsQuery setPackSlipEmailedStatusLessThan(Short value) { this.PackSlipEmailedStatusLessThan = value; return this; } public Short getPackSlipEmailedStatusLessThanOrEqualTo() { return PackSlipEmailedStatusLessThanOrEqualTo; } public SO_BatchPrintSettingsQuery setPackSlipEmailedStatusLessThanOrEqualTo(Short value) { this.PackSlipEmailedStatusLessThanOrEqualTo = value; return this; } public Short getPackSlipEmailedStatusNotEqualTo() { return PackSlipEmailedStatusNotEqualTo; } public SO_BatchPrintSettingsQuery setPackSlipEmailedStatusNotEqualTo(Short value) { this.PackSlipEmailedStatusNotEqualTo = value; return this; } public ArrayList getPackSlipEmailedStatusBetween() { return PackSlipEmailedStatusBetween; } public SO_BatchPrintSettingsQuery setPackSlipEmailedStatusBetween(ArrayList value) { this.PackSlipEmailedStatusBetween = value; return this; } public ArrayList getPackSlipEmailedStatusIn() { return PackSlipEmailedStatusIn; } public SO_BatchPrintSettingsQuery setPackSlipEmailedStatusIn(ArrayList value) { this.PackSlipEmailedStatusIn = value; return this; } public Short getPickSheetEmailedStatus() { return PickSheetEmailedStatus; } public SO_BatchPrintSettingsQuery setPickSheetEmailedStatus(Short value) { this.PickSheetEmailedStatus = value; return this; } public Short getPickSheetEmailedStatusGreaterThanOrEqualTo() { return PickSheetEmailedStatusGreaterThanOrEqualTo; } public SO_BatchPrintSettingsQuery setPickSheetEmailedStatusGreaterThanOrEqualTo(Short value) { this.PickSheetEmailedStatusGreaterThanOrEqualTo = value; return this; } public Short getPickSheetEmailedStatusGreaterThan() { return PickSheetEmailedStatusGreaterThan; } public SO_BatchPrintSettingsQuery setPickSheetEmailedStatusGreaterThan(Short value) { this.PickSheetEmailedStatusGreaterThan = value; return this; } public Short getPickSheetEmailedStatusLessThan() { return PickSheetEmailedStatusLessThan; } public SO_BatchPrintSettingsQuery setPickSheetEmailedStatusLessThan(Short value) { this.PickSheetEmailedStatusLessThan = value; return this; } public Short getPickSheetEmailedStatusLessThanOrEqualTo() { return PickSheetEmailedStatusLessThanOrEqualTo; } public SO_BatchPrintSettingsQuery setPickSheetEmailedStatusLessThanOrEqualTo(Short value) { this.PickSheetEmailedStatusLessThanOrEqualTo = value; return this; } public Short getPickSheetEmailedStatusNotEqualTo() { return PickSheetEmailedStatusNotEqualTo; } public SO_BatchPrintSettingsQuery setPickSheetEmailedStatusNotEqualTo(Short value) { this.PickSheetEmailedStatusNotEqualTo = value; return this; } public ArrayList getPickSheetEmailedStatusBetween() { return PickSheetEmailedStatusBetween; } public SO_BatchPrintSettingsQuery setPickSheetEmailedStatusBetween(ArrayList value) { this.PickSheetEmailedStatusBetween = value; return this; } public ArrayList getPickSheetEmailedStatusIn() { return PickSheetEmailedStatusIn; } public SO_BatchPrintSettingsQuery setPickSheetEmailedStatusIn(ArrayList value) { this.PickSheetEmailedStatusIn = value; return this; } public Short getOtherEmailedStatus() { return OtherEmailedStatus; } public SO_BatchPrintSettingsQuery setOtherEmailedStatus(Short value) { this.OtherEmailedStatus = value; return this; } public Short getOtherEmailedStatusGreaterThanOrEqualTo() { return OtherEmailedStatusGreaterThanOrEqualTo; } public SO_BatchPrintSettingsQuery setOtherEmailedStatusGreaterThanOrEqualTo(Short value) { this.OtherEmailedStatusGreaterThanOrEqualTo = value; return this; } public Short getOtherEmailedStatusGreaterThan() { return OtherEmailedStatusGreaterThan; } public SO_BatchPrintSettingsQuery setOtherEmailedStatusGreaterThan(Short value) { this.OtherEmailedStatusGreaterThan = value; return this; } public Short getOtherEmailedStatusLessThan() { return OtherEmailedStatusLessThan; } public SO_BatchPrintSettingsQuery setOtherEmailedStatusLessThan(Short value) { this.OtherEmailedStatusLessThan = value; return this; } public Short getOtherEmailedStatusLessThanOrEqualTo() { return OtherEmailedStatusLessThanOrEqualTo; } public SO_BatchPrintSettingsQuery setOtherEmailedStatusLessThanOrEqualTo(Short value) { this.OtherEmailedStatusLessThanOrEqualTo = value; return this; } public Short getOtherEmailedStatusNotEqualTo() { return OtherEmailedStatusNotEqualTo; } public SO_BatchPrintSettingsQuery setOtherEmailedStatusNotEqualTo(Short value) { this.OtherEmailedStatusNotEqualTo = value; return this; } public ArrayList getOtherEmailedStatusBetween() { return OtherEmailedStatusBetween; } public SO_BatchPrintSettingsQuery setOtherEmailedStatusBetween(ArrayList value) { this.OtherEmailedStatusBetween = value; return this; } public ArrayList getOtherEmailedStatusIn() { return OtherEmailedStatusIn; } public SO_BatchPrintSettingsQuery setOtherEmailedStatusIn(ArrayList value) { this.OtherEmailedStatusIn = value; return this; } public String getBatchPrintEmailTemplateRecID() { return BatchPrintEmailTemplateRecID; } public SO_BatchPrintSettingsQuery setBatchPrintEmailTemplateRecID(String value) { this.BatchPrintEmailTemplateRecID = value; return this; } public String getBatchPrintEmailTemplateRecIDStartsWith() { return BatchPrintEmailTemplateRecIDStartsWith; } public SO_BatchPrintSettingsQuery setBatchPrintEmailTemplateRecIDStartsWith(String value) { this.BatchPrintEmailTemplateRecIDStartsWith = value; return this; } public String getBatchPrintEmailTemplateRecIDEndsWith() { return BatchPrintEmailTemplateRecIDEndsWith; } public SO_BatchPrintSettingsQuery setBatchPrintEmailTemplateRecIDEndsWith(String value) { this.BatchPrintEmailTemplateRecIDEndsWith = value; return this; } public String getBatchPrintEmailTemplateRecIDContains() { return BatchPrintEmailTemplateRecIDContains; } public SO_BatchPrintSettingsQuery setBatchPrintEmailTemplateRecIDContains(String value) { this.BatchPrintEmailTemplateRecIDContains = value; return this; } public String getBatchPrintEmailTemplateRecIDLike() { return BatchPrintEmailTemplateRecIDLike; } public SO_BatchPrintSettingsQuery setBatchPrintEmailTemplateRecIDLike(String value) { this.BatchPrintEmailTemplateRecIDLike = value; return this; } public ArrayList getBatchPrintEmailTemplateRecIDBetween() { return BatchPrintEmailTemplateRecIDBetween; } public SO_BatchPrintSettingsQuery setBatchPrintEmailTemplateRecIDBetween(ArrayList value) { this.BatchPrintEmailTemplateRecIDBetween = value; return this; } public ArrayList getBatchPrintEmailTemplateRecIDIn() { return BatchPrintEmailTemplateRecIDIn; } public SO_BatchPrintSettingsQuery setBatchPrintEmailTemplateRecIDIn(ArrayList value) { this.BatchPrintEmailTemplateRecIDIn = value; return this; } public String getAppliesToInPhysicalID() { return AppliesTo_IN_PhysicalID; } public SO_BatchPrintSettingsQuery setAppliesToInPhysicalID(String value) { this.AppliesTo_IN_PhysicalID = value; return this; } public String getAppliesToInPhysicalIDStartsWith() { return AppliesTo_IN_PhysicalIDStartsWith; } public SO_BatchPrintSettingsQuery setAppliesToInPhysicalIDStartsWith(String value) { this.AppliesTo_IN_PhysicalIDStartsWith = value; return this; } public String getAppliesToInPhysicalIDEndsWith() { return AppliesTo_IN_PhysicalIDEndsWith; } public SO_BatchPrintSettingsQuery setAppliesToInPhysicalIDEndsWith(String value) { this.AppliesTo_IN_PhysicalIDEndsWith = value; return this; } public String getAppliesToInPhysicalIDContains() { return AppliesTo_IN_PhysicalIDContains; } public SO_BatchPrintSettingsQuery setAppliesToInPhysicalIDContains(String value) { this.AppliesTo_IN_PhysicalIDContains = value; return this; } public String getAppliesToInPhysicalIDLike() { return AppliesTo_IN_PhysicalIDLike; } public SO_BatchPrintSettingsQuery setAppliesToInPhysicalIDLike(String value) { this.AppliesTo_IN_PhysicalIDLike = value; return this; } public ArrayList getAppliesToInPhysicalIDBetween() { return AppliesTo_IN_PhysicalIDBetween; } public SO_BatchPrintSettingsQuery setAppliesToInPhysicalIDBetween(ArrayList value) { this.AppliesTo_IN_PhysicalIDBetween = value; return this; } public ArrayList getAppliesToInPhysicalIDIn() { return AppliesTo_IN_PhysicalIDIn; } public SO_BatchPrintSettingsQuery setAppliesToInPhysicalIDIn(ArrayList value) { this.AppliesTo_IN_PhysicalIDIn = value; return this; } public String getAppliesToInLogicalID() { return AppliesTo_IN_LogicalID; } public SO_BatchPrintSettingsQuery setAppliesToInLogicalID(String value) { this.AppliesTo_IN_LogicalID = value; return this; } public String getAppliesToInLogicalIDStartsWith() { return AppliesTo_IN_LogicalIDStartsWith; } public SO_BatchPrintSettingsQuery setAppliesToInLogicalIDStartsWith(String value) { this.AppliesTo_IN_LogicalIDStartsWith = value; return this; } public String getAppliesToInLogicalIDEndsWith() { return AppliesTo_IN_LogicalIDEndsWith; } public SO_BatchPrintSettingsQuery setAppliesToInLogicalIDEndsWith(String value) { this.AppliesTo_IN_LogicalIDEndsWith = value; return this; } public String getAppliesToInLogicalIDContains() { return AppliesTo_IN_LogicalIDContains; } public SO_BatchPrintSettingsQuery setAppliesToInLogicalIDContains(String value) { this.AppliesTo_IN_LogicalIDContains = value; return this; } public String getAppliesToInLogicalIDLike() { return AppliesTo_IN_LogicalIDLike; } public SO_BatchPrintSettingsQuery setAppliesToInLogicalIDLike(String value) { this.AppliesTo_IN_LogicalIDLike = value; return this; } public ArrayList getAppliesToInLogicalIDBetween() { return AppliesTo_IN_LogicalIDBetween; } public SO_BatchPrintSettingsQuery setAppliesToInLogicalIDBetween(ArrayList value) { this.AppliesTo_IN_LogicalIDBetween = value; return this; } public ArrayList getAppliesToInLogicalIDIn() { return AppliesTo_IN_LogicalIDIn; } public SO_BatchPrintSettingsQuery setAppliesToInLogicalIDIn(ArrayList value) { this.AppliesTo_IN_LogicalIDIn = value; return this; } public String getVisibleToInPhysicalID() { return VisibleTo_IN_PhysicalID; } public SO_BatchPrintSettingsQuery setVisibleToInPhysicalID(String value) { this.VisibleTo_IN_PhysicalID = value; return this; } public String getVisibleToInPhysicalIDStartsWith() { return VisibleTo_IN_PhysicalIDStartsWith; } public SO_BatchPrintSettingsQuery setVisibleToInPhysicalIDStartsWith(String value) { this.VisibleTo_IN_PhysicalIDStartsWith = value; return this; } public String getVisibleToInPhysicalIDEndsWith() { return VisibleTo_IN_PhysicalIDEndsWith; } public SO_BatchPrintSettingsQuery setVisibleToInPhysicalIDEndsWith(String value) { this.VisibleTo_IN_PhysicalIDEndsWith = value; return this; } public String getVisibleToInPhysicalIDContains() { return VisibleTo_IN_PhysicalIDContains; } public SO_BatchPrintSettingsQuery setVisibleToInPhysicalIDContains(String value) { this.VisibleTo_IN_PhysicalIDContains = value; return this; } public String getVisibleToInPhysicalIDLike() { return VisibleTo_IN_PhysicalIDLike; } public SO_BatchPrintSettingsQuery setVisibleToInPhysicalIDLike(String value) { this.VisibleTo_IN_PhysicalIDLike = value; return this; } public ArrayList getVisibleToInPhysicalIDBetween() { return VisibleTo_IN_PhysicalIDBetween; } public SO_BatchPrintSettingsQuery setVisibleToInPhysicalIDBetween(ArrayList value) { this.VisibleTo_IN_PhysicalIDBetween = value; return this; } public ArrayList getVisibleToInPhysicalIDIn() { return VisibleTo_IN_PhysicalIDIn; } public SO_BatchPrintSettingsQuery setVisibleToInPhysicalIDIn(ArrayList value) { this.VisibleTo_IN_PhysicalIDIn = value; return this; } public String getVisibleToInLogicalID() { return VisibleTo_IN_LogicalID; } public SO_BatchPrintSettingsQuery setVisibleToInLogicalID(String value) { this.VisibleTo_IN_LogicalID = value; return this; } public String getVisibleToInLogicalIDStartsWith() { return VisibleTo_IN_LogicalIDStartsWith; } public SO_BatchPrintSettingsQuery setVisibleToInLogicalIDStartsWith(String value) { this.VisibleTo_IN_LogicalIDStartsWith = value; return this; } public String getVisibleToInLogicalIDEndsWith() { return VisibleTo_IN_LogicalIDEndsWith; } public SO_BatchPrintSettingsQuery setVisibleToInLogicalIDEndsWith(String value) { this.VisibleTo_IN_LogicalIDEndsWith = value; return this; } public String getVisibleToInLogicalIDContains() { return VisibleTo_IN_LogicalIDContains; } public SO_BatchPrintSettingsQuery setVisibleToInLogicalIDContains(String value) { this.VisibleTo_IN_LogicalIDContains = value; return this; } public String getVisibleToInLogicalIDLike() { return VisibleTo_IN_LogicalIDLike; } public SO_BatchPrintSettingsQuery setVisibleToInLogicalIDLike(String value) { this.VisibleTo_IN_LogicalIDLike = value; return this; } public ArrayList getVisibleToInLogicalIDBetween() { return VisibleTo_IN_LogicalIDBetween; } public SO_BatchPrintSettingsQuery setVisibleToInLogicalIDBetween(ArrayList value) { this.VisibleTo_IN_LogicalIDBetween = value; return this; } public ArrayList getVisibleToInLogicalIDIn() { return VisibleTo_IN_LogicalIDIn; } public SO_BatchPrintSettingsQuery setVisibleToInLogicalIDIn(ArrayList value) { this.VisibleTo_IN_LogicalIDIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class SO_BatchProcessTypesQuery extends QueryDb implements IReturn> { public String RecID = null; public String RecIDStartsWith = null; public String RecIDEndsWith = null; public String RecIDContains = null; public String RecIDLike = null; public ArrayList RecIDBetween = null; public ArrayList RecIDIn = null; public String Description = null; public String DescriptionStartsWith = null; public String DescriptionEndsWith = null; public String DescriptionContains = null; public String DescriptionLike = null; public ArrayList DescriptionBetween = null; public ArrayList DescriptionIn = null; public String ListOfSalesOrdersToProcessStoredProcedure = null; public String ListOfSalesOrdersToProcessStoredProcedureStartsWith = null; public String ListOfSalesOrdersToProcessStoredProcedureEndsWith = null; public String ListOfSalesOrdersToProcessStoredProcedureContains = null; public String ListOfSalesOrdersToProcessStoredProcedureLike = null; public ArrayList ListOfSalesOrdersToProcessStoredProcedureBetween = null; public ArrayList ListOfSalesOrdersToProcessStoredProcedureIn = null; public String PostProcessingStoredProcedure = null; public String PostProcessingStoredProcedureStartsWith = null; public String PostProcessingStoredProcedureEndsWith = null; public String PostProcessingStoredProcedureContains = null; public String PostProcessingStoredProcedureLike = null; public ArrayList PostProcessingStoredProcedureBetween = null; public ArrayList PostProcessingStoredProcedureIn = null; public String getRecID() { return RecID; } public SO_BatchProcessTypesQuery setRecID(String value) { this.RecID = value; return this; } public String getRecIDStartsWith() { return RecIDStartsWith; } public SO_BatchProcessTypesQuery setRecIDStartsWith(String value) { this.RecIDStartsWith = value; return this; } public String getRecIDEndsWith() { return RecIDEndsWith; } public SO_BatchProcessTypesQuery setRecIDEndsWith(String value) { this.RecIDEndsWith = value; return this; } public String getRecIDContains() { return RecIDContains; } public SO_BatchProcessTypesQuery setRecIDContains(String value) { this.RecIDContains = value; return this; } public String getRecIDLike() { return RecIDLike; } public SO_BatchProcessTypesQuery setRecIDLike(String value) { this.RecIDLike = value; return this; } public ArrayList getRecIDBetween() { return RecIDBetween; } public SO_BatchProcessTypesQuery setRecIDBetween(ArrayList value) { this.RecIDBetween = value; return this; } public ArrayList getRecIDIn() { return RecIDIn; } public SO_BatchProcessTypesQuery setRecIDIn(ArrayList value) { this.RecIDIn = value; return this; } public String getDescription() { return Description; } public SO_BatchProcessTypesQuery setDescription(String value) { this.Description = value; return this; } public String getDescriptionStartsWith() { return DescriptionStartsWith; } public SO_BatchProcessTypesQuery setDescriptionStartsWith(String value) { this.DescriptionStartsWith = value; return this; } public String getDescriptionEndsWith() { return DescriptionEndsWith; } public SO_BatchProcessTypesQuery setDescriptionEndsWith(String value) { this.DescriptionEndsWith = value; return this; } public String getDescriptionContains() { return DescriptionContains; } public SO_BatchProcessTypesQuery setDescriptionContains(String value) { this.DescriptionContains = value; return this; } public String getDescriptionLike() { return DescriptionLike; } public SO_BatchProcessTypesQuery setDescriptionLike(String value) { this.DescriptionLike = value; return this; } public ArrayList getDescriptionBetween() { return DescriptionBetween; } public SO_BatchProcessTypesQuery setDescriptionBetween(ArrayList value) { this.DescriptionBetween = value; return this; } public ArrayList getDescriptionIn() { return DescriptionIn; } public SO_BatchProcessTypesQuery setDescriptionIn(ArrayList value) { this.DescriptionIn = value; return this; } public String getListOfSalesOrdersToProcessStoredProcedure() { return ListOfSalesOrdersToProcessStoredProcedure; } public SO_BatchProcessTypesQuery setListOfSalesOrdersToProcessStoredProcedure(String value) { this.ListOfSalesOrdersToProcessStoredProcedure = value; return this; } public String getListOfSalesOrdersToProcessStoredProcedureStartsWith() { return ListOfSalesOrdersToProcessStoredProcedureStartsWith; } public SO_BatchProcessTypesQuery setListOfSalesOrdersToProcessStoredProcedureStartsWith(String value) { this.ListOfSalesOrdersToProcessStoredProcedureStartsWith = value; return this; } public String getListOfSalesOrdersToProcessStoredProcedureEndsWith() { return ListOfSalesOrdersToProcessStoredProcedureEndsWith; } public SO_BatchProcessTypesQuery setListOfSalesOrdersToProcessStoredProcedureEndsWith(String value) { this.ListOfSalesOrdersToProcessStoredProcedureEndsWith = value; return this; } public String getListOfSalesOrdersToProcessStoredProcedureContains() { return ListOfSalesOrdersToProcessStoredProcedureContains; } public SO_BatchProcessTypesQuery setListOfSalesOrdersToProcessStoredProcedureContains(String value) { this.ListOfSalesOrdersToProcessStoredProcedureContains = value; return this; } public String getListOfSalesOrdersToProcessStoredProcedureLike() { return ListOfSalesOrdersToProcessStoredProcedureLike; } public SO_BatchProcessTypesQuery setListOfSalesOrdersToProcessStoredProcedureLike(String value) { this.ListOfSalesOrdersToProcessStoredProcedureLike = value; return this; } public ArrayList getListOfSalesOrdersToProcessStoredProcedureBetween() { return ListOfSalesOrdersToProcessStoredProcedureBetween; } public SO_BatchProcessTypesQuery setListOfSalesOrdersToProcessStoredProcedureBetween(ArrayList value) { this.ListOfSalesOrdersToProcessStoredProcedureBetween = value; return this; } public ArrayList getListOfSalesOrdersToProcessStoredProcedureIn() { return ListOfSalesOrdersToProcessStoredProcedureIn; } public SO_BatchProcessTypesQuery setListOfSalesOrdersToProcessStoredProcedureIn(ArrayList value) { this.ListOfSalesOrdersToProcessStoredProcedureIn = value; return this; } public String getPostProcessingStoredProcedure() { return PostProcessingStoredProcedure; } public SO_BatchProcessTypesQuery setPostProcessingStoredProcedure(String value) { this.PostProcessingStoredProcedure = value; return this; } public String getPostProcessingStoredProcedureStartsWith() { return PostProcessingStoredProcedureStartsWith; } public SO_BatchProcessTypesQuery setPostProcessingStoredProcedureStartsWith(String value) { this.PostProcessingStoredProcedureStartsWith = value; return this; } public String getPostProcessingStoredProcedureEndsWith() { return PostProcessingStoredProcedureEndsWith; } public SO_BatchProcessTypesQuery setPostProcessingStoredProcedureEndsWith(String value) { this.PostProcessingStoredProcedureEndsWith = value; return this; } public String getPostProcessingStoredProcedureContains() { return PostProcessingStoredProcedureContains; } public SO_BatchProcessTypesQuery setPostProcessingStoredProcedureContains(String value) { this.PostProcessingStoredProcedureContains = value; return this; } public String getPostProcessingStoredProcedureLike() { return PostProcessingStoredProcedureLike; } public SO_BatchProcessTypesQuery setPostProcessingStoredProcedureLike(String value) { this.PostProcessingStoredProcedureLike = value; return this; } public ArrayList getPostProcessingStoredProcedureBetween() { return PostProcessingStoredProcedureBetween; } public SO_BatchProcessTypesQuery setPostProcessingStoredProcedureBetween(ArrayList value) { this.PostProcessingStoredProcedureBetween = value; return this; } public ArrayList getPostProcessingStoredProcedureIn() { return PostProcessingStoredProcedureIn; } public SO_BatchProcessTypesQuery setPostProcessingStoredProcedureIn(ArrayList value) { this.PostProcessingStoredProcedureIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class SO_BORunQuery extends QueryDb implements IReturn> { public String RunID = null; public String RunIDStartsWith = null; public String RunIDEndsWith = null; public String RunIDContains = null; public String RunIDLike = null; public ArrayList RunIDBetween = null; public ArrayList RunIDIn = null; public Date LastSavedDateTime = null; public Date LastSavedDateTimeGreaterThanOrEqualTo = null; public Date LastSavedDateTimeGreaterThan = null; public Date LastSavedDateTimeLessThan = null; public Date LastSavedDateTimeLessThanOrEqualTo = null; public Date LastSavedDateTimeNotEqualTo = null; public ArrayList LastSavedDateTimeBetween = null; public ArrayList LastSavedDateTimeIn = null; public String RunBy = null; public String RunByStartsWith = null; public String RunByEndsWith = null; public String RunByContains = null; public String RunByLike = null; public ArrayList RunByBetween = null; public ArrayList RunByIn = null; public String RunNo = null; public String RunNoStartsWith = null; public String RunNoEndsWith = null; public String RunNoContains = null; public String RunNoLike = null; public ArrayList RunNoBetween = null; public ArrayList RunNoIn = null; public String getRunID() { return RunID; } public SO_BORunQuery setRunID(String value) { this.RunID = value; return this; } public String getRunIDStartsWith() { return RunIDStartsWith; } public SO_BORunQuery setRunIDStartsWith(String value) { this.RunIDStartsWith = value; return this; } public String getRunIDEndsWith() { return RunIDEndsWith; } public SO_BORunQuery setRunIDEndsWith(String value) { this.RunIDEndsWith = value; return this; } public String getRunIDContains() { return RunIDContains; } public SO_BORunQuery setRunIDContains(String value) { this.RunIDContains = value; return this; } public String getRunIDLike() { return RunIDLike; } public SO_BORunQuery setRunIDLike(String value) { this.RunIDLike = value; return this; } public ArrayList getRunIDBetween() { return RunIDBetween; } public SO_BORunQuery setRunIDBetween(ArrayList value) { this.RunIDBetween = value; return this; } public ArrayList getRunIDIn() { return RunIDIn; } public SO_BORunQuery setRunIDIn(ArrayList value) { this.RunIDIn = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public SO_BORunQuery setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getLastSavedDateTimeGreaterThanOrEqualTo() { return LastSavedDateTimeGreaterThanOrEqualTo; } public SO_BORunQuery setLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.LastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeGreaterThan() { return LastSavedDateTimeGreaterThan; } public SO_BORunQuery setLastSavedDateTimeGreaterThan(Date value) { this.LastSavedDateTimeGreaterThan = value; return this; } public Date getLastSavedDateTimeLessThan() { return LastSavedDateTimeLessThan; } public SO_BORunQuery setLastSavedDateTimeLessThan(Date value) { this.LastSavedDateTimeLessThan = value; return this; } public Date getLastSavedDateTimeLessThanOrEqualTo() { return LastSavedDateTimeLessThanOrEqualTo; } public SO_BORunQuery setLastSavedDateTimeLessThanOrEqualTo(Date value) { this.LastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeNotEqualTo() { return LastSavedDateTimeNotEqualTo; } public SO_BORunQuery setLastSavedDateTimeNotEqualTo(Date value) { this.LastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getLastSavedDateTimeBetween() { return LastSavedDateTimeBetween; } public SO_BORunQuery setLastSavedDateTimeBetween(ArrayList value) { this.LastSavedDateTimeBetween = value; return this; } public ArrayList getLastSavedDateTimeIn() { return LastSavedDateTimeIn; } public SO_BORunQuery setLastSavedDateTimeIn(ArrayList value) { this.LastSavedDateTimeIn = value; return this; } public String getRunBy() { return RunBy; } public SO_BORunQuery setRunBy(String value) { this.RunBy = value; return this; } public String getRunByStartsWith() { return RunByStartsWith; } public SO_BORunQuery setRunByStartsWith(String value) { this.RunByStartsWith = value; return this; } public String getRunByEndsWith() { return RunByEndsWith; } public SO_BORunQuery setRunByEndsWith(String value) { this.RunByEndsWith = value; return this; } public String getRunByContains() { return RunByContains; } public SO_BORunQuery setRunByContains(String value) { this.RunByContains = value; return this; } public String getRunByLike() { return RunByLike; } public SO_BORunQuery setRunByLike(String value) { this.RunByLike = value; return this; } public ArrayList getRunByBetween() { return RunByBetween; } public SO_BORunQuery setRunByBetween(ArrayList value) { this.RunByBetween = value; return this; } public ArrayList getRunByIn() { return RunByIn; } public SO_BORunQuery setRunByIn(ArrayList value) { this.RunByIn = value; return this; } public String getRunNo() { return RunNo; } public SO_BORunQuery setRunNo(String value) { this.RunNo = value; return this; } public String getRunNoStartsWith() { return RunNoStartsWith; } public SO_BORunQuery setRunNoStartsWith(String value) { this.RunNoStartsWith = value; return this; } public String getRunNoEndsWith() { return RunNoEndsWith; } public SO_BORunQuery setRunNoEndsWith(String value) { this.RunNoEndsWith = value; return this; } public String getRunNoContains() { return RunNoContains; } public SO_BORunQuery setRunNoContains(String value) { this.RunNoContains = value; return this; } public String getRunNoLike() { return RunNoLike; } public SO_BORunQuery setRunNoLike(String value) { this.RunNoLike = value; return this; } public ArrayList getRunNoBetween() { return RunNoBetween; } public SO_BORunQuery setRunNoBetween(ArrayList value) { this.RunNoBetween = value; return this; } public ArrayList getRunNoIn() { return RunNoIn; } public SO_BORunQuery setRunNoIn(ArrayList value) { this.RunNoIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class SO_BORunLinesQuery extends QueryDb implements IReturn> { public String RecID = null; public String RecIDStartsWith = null; public String RecIDEndsWith = null; public String RecIDContains = null; public String RecIDLike = null; public ArrayList RecIDBetween = null; public ArrayList RecIDIn = null; public String RunID = null; public String RunIDStartsWith = null; public String RunIDEndsWith = null; public String RunIDContains = null; public String RunIDLike = null; public ArrayList RunIDBetween = null; public ArrayList RunIDIn = null; public Short SourceType = null; public Short SourceTypeGreaterThanOrEqualTo = null; public Short SourceTypeGreaterThan = null; public Short SourceTypeLessThan = null; public Short SourceTypeLessThanOrEqualTo = null; public Short SourceTypeNotEqualTo = null; public ArrayList SourceTypeBetween = null; public ArrayList SourceTypeIn = null; public String SourceLineID = null; public String SourceLineIDStartsWith = null; public String SourceLineIDEndsWith = null; public String SourceLineIDContains = null; public String SourceLineIDLike = null; public ArrayList SourceLineIDBetween = null; public ArrayList SourceLineIDIn = null; public String getRecID() { return RecID; } public SO_BORunLinesQuery setRecID(String value) { this.RecID = value; return this; } public String getRecIDStartsWith() { return RecIDStartsWith; } public SO_BORunLinesQuery setRecIDStartsWith(String value) { this.RecIDStartsWith = value; return this; } public String getRecIDEndsWith() { return RecIDEndsWith; } public SO_BORunLinesQuery setRecIDEndsWith(String value) { this.RecIDEndsWith = value; return this; } public String getRecIDContains() { return RecIDContains; } public SO_BORunLinesQuery setRecIDContains(String value) { this.RecIDContains = value; return this; } public String getRecIDLike() { return RecIDLike; } public SO_BORunLinesQuery setRecIDLike(String value) { this.RecIDLike = value; return this; } public ArrayList getRecIDBetween() { return RecIDBetween; } public SO_BORunLinesQuery setRecIDBetween(ArrayList value) { this.RecIDBetween = value; return this; } public ArrayList getRecIDIn() { return RecIDIn; } public SO_BORunLinesQuery setRecIDIn(ArrayList value) { this.RecIDIn = value; return this; } public String getRunID() { return RunID; } public SO_BORunLinesQuery setRunID(String value) { this.RunID = value; return this; } public String getRunIDStartsWith() { return RunIDStartsWith; } public SO_BORunLinesQuery setRunIDStartsWith(String value) { this.RunIDStartsWith = value; return this; } public String getRunIDEndsWith() { return RunIDEndsWith; } public SO_BORunLinesQuery setRunIDEndsWith(String value) { this.RunIDEndsWith = value; return this; } public String getRunIDContains() { return RunIDContains; } public SO_BORunLinesQuery setRunIDContains(String value) { this.RunIDContains = value; return this; } public String getRunIDLike() { return RunIDLike; } public SO_BORunLinesQuery setRunIDLike(String value) { this.RunIDLike = value; return this; } public ArrayList getRunIDBetween() { return RunIDBetween; } public SO_BORunLinesQuery setRunIDBetween(ArrayList value) { this.RunIDBetween = value; return this; } public ArrayList getRunIDIn() { return RunIDIn; } public SO_BORunLinesQuery setRunIDIn(ArrayList value) { this.RunIDIn = value; return this; } public Short getSourceType() { return SourceType; } public SO_BORunLinesQuery setSourceType(Short value) { this.SourceType = value; return this; } public Short getSourceTypeGreaterThanOrEqualTo() { return SourceTypeGreaterThanOrEqualTo; } public SO_BORunLinesQuery setSourceTypeGreaterThanOrEqualTo(Short value) { this.SourceTypeGreaterThanOrEqualTo = value; return this; } public Short getSourceTypeGreaterThan() { return SourceTypeGreaterThan; } public SO_BORunLinesQuery setSourceTypeGreaterThan(Short value) { this.SourceTypeGreaterThan = value; return this; } public Short getSourceTypeLessThan() { return SourceTypeLessThan; } public SO_BORunLinesQuery setSourceTypeLessThan(Short value) { this.SourceTypeLessThan = value; return this; } public Short getSourceTypeLessThanOrEqualTo() { return SourceTypeLessThanOrEqualTo; } public SO_BORunLinesQuery setSourceTypeLessThanOrEqualTo(Short value) { this.SourceTypeLessThanOrEqualTo = value; return this; } public Short getSourceTypeNotEqualTo() { return SourceTypeNotEqualTo; } public SO_BORunLinesQuery setSourceTypeNotEqualTo(Short value) { this.SourceTypeNotEqualTo = value; return this; } public ArrayList getSourceTypeBetween() { return SourceTypeBetween; } public SO_BORunLinesQuery setSourceTypeBetween(ArrayList value) { this.SourceTypeBetween = value; return this; } public ArrayList getSourceTypeIn() { return SourceTypeIn; } public SO_BORunLinesQuery setSourceTypeIn(ArrayList value) { this.SourceTypeIn = value; return this; } public String getSourceLineID() { return SourceLineID; } public SO_BORunLinesQuery setSourceLineID(String value) { this.SourceLineID = value; return this; } public String getSourceLineIDStartsWith() { return SourceLineIDStartsWith; } public SO_BORunLinesQuery setSourceLineIDStartsWith(String value) { this.SourceLineIDStartsWith = value; return this; } public String getSourceLineIDEndsWith() { return SourceLineIDEndsWith; } public SO_BORunLinesQuery setSourceLineIDEndsWith(String value) { this.SourceLineIDEndsWith = value; return this; } public String getSourceLineIDContains() { return SourceLineIDContains; } public SO_BORunLinesQuery setSourceLineIDContains(String value) { this.SourceLineIDContains = value; return this; } public String getSourceLineIDLike() { return SourceLineIDLike; } public SO_BORunLinesQuery setSourceLineIDLike(String value) { this.SourceLineIDLike = value; return this; } public ArrayList getSourceLineIDBetween() { return SourceLineIDBetween; } public SO_BORunLinesQuery setSourceLineIDBetween(ArrayList value) { this.SourceLineIDBetween = value; return this; } public ArrayList getSourceLineIDIn() { return SourceLineIDIn; } public SO_BORunLinesQuery setSourceLineIDIn(ArrayList value) { this.SourceLineIDIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class SO_BulkCreditNoteBatchQuery extends QueryDb implements IReturn> { public String RecID = null; public String RecIDStartsWith = null; public String RecIDEndsWith = null; public String RecIDContains = null; public String RecIDLike = null; public ArrayList RecIDBetween = null; public ArrayList RecIDIn = null; public String BatchNo = null; public String BatchNoStartsWith = null; public String BatchNoEndsWith = null; public String BatchNoContains = null; public String BatchNoLike = null; public ArrayList BatchNoBetween = null; public ArrayList BatchNoIn = null; public String StaffID = null; public String StaffIDStartsWith = null; public String StaffIDEndsWith = null; public String StaffIDContains = null; public String StaffIDLike = null; public ArrayList StaffIDBetween = null; public ArrayList StaffIDIn = null; public Date DateActivated = null; public Date DateActivatedGreaterThanOrEqualTo = null; public Date DateActivatedGreaterThan = null; public Date DateActivatedLessThan = null; public Date DateActivatedLessThanOrEqualTo = null; public Date DateActivatedNotEqualTo = null; public ArrayList DateActivatedBetween = null; public ArrayList DateActivatedIn = null; public Boolean BatchActivated = null; public Date LastSavedDateTime = null; public Date LastSavedDateTimeGreaterThanOrEqualTo = null; public Date LastSavedDateTimeGreaterThan = null; public Date LastSavedDateTimeLessThan = null; public Date LastSavedDateTimeLessThanOrEqualTo = null; public Date LastSavedDateTimeNotEqualTo = null; public ArrayList LastSavedDateTimeBetween = null; public ArrayList LastSavedDateTimeIn = null; public String getRecID() { return RecID; } public SO_BulkCreditNoteBatchQuery setRecID(String value) { this.RecID = value; return this; } public String getRecIDStartsWith() { return RecIDStartsWith; } public SO_BulkCreditNoteBatchQuery setRecIDStartsWith(String value) { this.RecIDStartsWith = value; return this; } public String getRecIDEndsWith() { return RecIDEndsWith; } public SO_BulkCreditNoteBatchQuery setRecIDEndsWith(String value) { this.RecIDEndsWith = value; return this; } public String getRecIDContains() { return RecIDContains; } public SO_BulkCreditNoteBatchQuery setRecIDContains(String value) { this.RecIDContains = value; return this; } public String getRecIDLike() { return RecIDLike; } public SO_BulkCreditNoteBatchQuery setRecIDLike(String value) { this.RecIDLike = value; return this; } public ArrayList getRecIDBetween() { return RecIDBetween; } public SO_BulkCreditNoteBatchQuery setRecIDBetween(ArrayList value) { this.RecIDBetween = value; return this; } public ArrayList getRecIDIn() { return RecIDIn; } public SO_BulkCreditNoteBatchQuery setRecIDIn(ArrayList value) { this.RecIDIn = value; return this; } public String getBatchNo() { return BatchNo; } public SO_BulkCreditNoteBatchQuery setBatchNo(String value) { this.BatchNo = value; return this; } public String getBatchNoStartsWith() { return BatchNoStartsWith; } public SO_BulkCreditNoteBatchQuery setBatchNoStartsWith(String value) { this.BatchNoStartsWith = value; return this; } public String getBatchNoEndsWith() { return BatchNoEndsWith; } public SO_BulkCreditNoteBatchQuery setBatchNoEndsWith(String value) { this.BatchNoEndsWith = value; return this; } public String getBatchNoContains() { return BatchNoContains; } public SO_BulkCreditNoteBatchQuery setBatchNoContains(String value) { this.BatchNoContains = value; return this; } public String getBatchNoLike() { return BatchNoLike; } public SO_BulkCreditNoteBatchQuery setBatchNoLike(String value) { this.BatchNoLike = value; return this; } public ArrayList getBatchNoBetween() { return BatchNoBetween; } public SO_BulkCreditNoteBatchQuery setBatchNoBetween(ArrayList value) { this.BatchNoBetween = value; return this; } public ArrayList getBatchNoIn() { return BatchNoIn; } public SO_BulkCreditNoteBatchQuery setBatchNoIn(ArrayList value) { this.BatchNoIn = value; return this; } public String getStaffID() { return StaffID; } public SO_BulkCreditNoteBatchQuery setStaffID(String value) { this.StaffID = value; return this; } public String getStaffIDStartsWith() { return StaffIDStartsWith; } public SO_BulkCreditNoteBatchQuery setStaffIDStartsWith(String value) { this.StaffIDStartsWith = value; return this; } public String getStaffIDEndsWith() { return StaffIDEndsWith; } public SO_BulkCreditNoteBatchQuery setStaffIDEndsWith(String value) { this.StaffIDEndsWith = value; return this; } public String getStaffIDContains() { return StaffIDContains; } public SO_BulkCreditNoteBatchQuery setStaffIDContains(String value) { this.StaffIDContains = value; return this; } public String getStaffIDLike() { return StaffIDLike; } public SO_BulkCreditNoteBatchQuery setStaffIDLike(String value) { this.StaffIDLike = value; return this; } public ArrayList getStaffIDBetween() { return StaffIDBetween; } public SO_BulkCreditNoteBatchQuery setStaffIDBetween(ArrayList value) { this.StaffIDBetween = value; return this; } public ArrayList getStaffIDIn() { return StaffIDIn; } public SO_BulkCreditNoteBatchQuery setStaffIDIn(ArrayList value) { this.StaffIDIn = value; return this; } public Date getDateActivated() { return DateActivated; } public SO_BulkCreditNoteBatchQuery setDateActivated(Date value) { this.DateActivated = value; return this; } public Date getDateActivatedGreaterThanOrEqualTo() { return DateActivatedGreaterThanOrEqualTo; } public SO_BulkCreditNoteBatchQuery setDateActivatedGreaterThanOrEqualTo(Date value) { this.DateActivatedGreaterThanOrEqualTo = value; return this; } public Date getDateActivatedGreaterThan() { return DateActivatedGreaterThan; } public SO_BulkCreditNoteBatchQuery setDateActivatedGreaterThan(Date value) { this.DateActivatedGreaterThan = value; return this; } public Date getDateActivatedLessThan() { return DateActivatedLessThan; } public SO_BulkCreditNoteBatchQuery setDateActivatedLessThan(Date value) { this.DateActivatedLessThan = value; return this; } public Date getDateActivatedLessThanOrEqualTo() { return DateActivatedLessThanOrEqualTo; } public SO_BulkCreditNoteBatchQuery setDateActivatedLessThanOrEqualTo(Date value) { this.DateActivatedLessThanOrEqualTo = value; return this; } public Date getDateActivatedNotEqualTo() { return DateActivatedNotEqualTo; } public SO_BulkCreditNoteBatchQuery setDateActivatedNotEqualTo(Date value) { this.DateActivatedNotEqualTo = value; return this; } public ArrayList getDateActivatedBetween() { return DateActivatedBetween; } public SO_BulkCreditNoteBatchQuery setDateActivatedBetween(ArrayList value) { this.DateActivatedBetween = value; return this; } public ArrayList getDateActivatedIn() { return DateActivatedIn; } public SO_BulkCreditNoteBatchQuery setDateActivatedIn(ArrayList value) { this.DateActivatedIn = value; return this; } public Boolean isBatchActivated() { return BatchActivated; } public SO_BulkCreditNoteBatchQuery setBatchActivated(Boolean value) { this.BatchActivated = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public SO_BulkCreditNoteBatchQuery setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getLastSavedDateTimeGreaterThanOrEqualTo() { return LastSavedDateTimeGreaterThanOrEqualTo; } public SO_BulkCreditNoteBatchQuery setLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.LastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeGreaterThan() { return LastSavedDateTimeGreaterThan; } public SO_BulkCreditNoteBatchQuery setLastSavedDateTimeGreaterThan(Date value) { this.LastSavedDateTimeGreaterThan = value; return this; } public Date getLastSavedDateTimeLessThan() { return LastSavedDateTimeLessThan; } public SO_BulkCreditNoteBatchQuery setLastSavedDateTimeLessThan(Date value) { this.LastSavedDateTimeLessThan = value; return this; } public Date getLastSavedDateTimeLessThanOrEqualTo() { return LastSavedDateTimeLessThanOrEqualTo; } public SO_BulkCreditNoteBatchQuery setLastSavedDateTimeLessThanOrEqualTo(Date value) { this.LastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeNotEqualTo() { return LastSavedDateTimeNotEqualTo; } public SO_BulkCreditNoteBatchQuery setLastSavedDateTimeNotEqualTo(Date value) { this.LastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getLastSavedDateTimeBetween() { return LastSavedDateTimeBetween; } public SO_BulkCreditNoteBatchQuery setLastSavedDateTimeBetween(ArrayList value) { this.LastSavedDateTimeBetween = value; return this; } public ArrayList getLastSavedDateTimeIn() { return LastSavedDateTimeIn; } public SO_BulkCreditNoteBatchQuery setLastSavedDateTimeIn(ArrayList value) { this.LastSavedDateTimeIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class SO_BulkCreditNoteBatchLinesQuery extends QueryDb implements IReturn> { public String RecID = null; public String RecIDStartsWith = null; public String RecIDEndsWith = null; public String RecIDContains = null; public String RecIDLike = null; public ArrayList RecIDBetween = null; public ArrayList RecIDIn = null; public String BulkCreditNoteBatchID = null; public String BulkCreditNoteBatchIDStartsWith = null; public String BulkCreditNoteBatchIDEndsWith = null; public String BulkCreditNoteBatchIDContains = null; public String BulkCreditNoteBatchIDLike = null; public ArrayList BulkCreditNoteBatchIDBetween = null; public ArrayList BulkCreditNoteBatchIDIn = null; public Integer LineNumber = null; public Integer LineNumberGreaterThanOrEqualTo = null; public Integer LineNumberGreaterThan = null; public Integer LineNumberLessThan = null; public Integer LineNumberLessThanOrEqualTo = null; public Integer LineNumberNotEqualTo = null; public ArrayList LineNumberBetween = null; public ArrayList LineNumberIn = null; public String InvoiceHistoryID = null; public String InvoiceHistoryIDStartsWith = null; public String InvoiceHistoryIDEndsWith = null; public String InvoiceHistoryIDContains = null; public String InvoiceHistoryIDLike = null; public ArrayList InvoiceHistoryIDBetween = null; public ArrayList InvoiceHistoryIDIn = null; public String InvoiceID = null; public String InvoiceIDStartsWith = null; public String InvoiceIDEndsWith = null; public String InvoiceIDContains = null; public String InvoiceIDLike = null; public ArrayList InvoiceIDBetween = null; public ArrayList InvoiceIDIn = null; public String InvoiceNo = null; public String InvoiceNoStartsWith = null; public String InvoiceNoEndsWith = null; public String InvoiceNoContains = null; public String InvoiceNoLike = null; public ArrayList InvoiceNoBetween = null; public ArrayList InvoiceNoIn = null; public String DebtorID = null; public String DebtorIDStartsWith = null; public String DebtorIDEndsWith = null; public String DebtorIDContains = null; public String DebtorIDLike = null; public ArrayList DebtorIDBetween = null; public ArrayList DebtorIDIn = null; public String DebtorAccountNo = null; public String DebtorAccountNoStartsWith = null; public String DebtorAccountNoEndsWith = null; public String DebtorAccountNoContains = null; public String DebtorAccountNoLike = null; public ArrayList DebtorAccountNoBetween = null; public ArrayList DebtorAccountNoIn = null; public String DebtorName = null; public String DebtorNameStartsWith = null; public String DebtorNameEndsWith = null; public String DebtorNameContains = null; public String DebtorNameLike = null; public ArrayList DebtorNameBetween = null; public ArrayList DebtorNameIn = null; public String CreditNoteInvoiceID = null; public String CreditNoteInvoiceIDStartsWith = null; public String CreditNoteInvoiceIDEndsWith = null; public String CreditNoteInvoiceIDContains = null; public String CreditNoteInvoiceIDLike = null; public ArrayList CreditNoteInvoiceIDBetween = null; public ArrayList CreditNoteInvoiceIDIn = null; public String CreditNoteInvoiceNo = null; public String CreditNoteInvoiceNoStartsWith = null; public String CreditNoteInvoiceNoEndsWith = null; public String CreditNoteInvoiceNoContains = null; public String CreditNoteInvoiceNoLike = null; public ArrayList CreditNoteInvoiceNoBetween = null; public ArrayList CreditNoteInvoiceNoIn = null; public Boolean CreditFlag = null; public Boolean CreditFailed = null; public String FailReason = null; public String FailReasonStartsWith = null; public String FailReasonEndsWith = null; public String FailReasonContains = null; public String FailReasonLike = null; public ArrayList FailReasonBetween = null; public ArrayList FailReasonIn = null; public String getRecID() { return RecID; } public SO_BulkCreditNoteBatchLinesQuery setRecID(String value) { this.RecID = value; return this; } public String getRecIDStartsWith() { return RecIDStartsWith; } public SO_BulkCreditNoteBatchLinesQuery setRecIDStartsWith(String value) { this.RecIDStartsWith = value; return this; } public String getRecIDEndsWith() { return RecIDEndsWith; } public SO_BulkCreditNoteBatchLinesQuery setRecIDEndsWith(String value) { this.RecIDEndsWith = value; return this; } public String getRecIDContains() { return RecIDContains; } public SO_BulkCreditNoteBatchLinesQuery setRecIDContains(String value) { this.RecIDContains = value; return this; } public String getRecIDLike() { return RecIDLike; } public SO_BulkCreditNoteBatchLinesQuery setRecIDLike(String value) { this.RecIDLike = value; return this; } public ArrayList getRecIDBetween() { return RecIDBetween; } public SO_BulkCreditNoteBatchLinesQuery setRecIDBetween(ArrayList value) { this.RecIDBetween = value; return this; } public ArrayList getRecIDIn() { return RecIDIn; } public SO_BulkCreditNoteBatchLinesQuery setRecIDIn(ArrayList value) { this.RecIDIn = value; return this; } public String getBulkCreditNoteBatchID() { return BulkCreditNoteBatchID; } public SO_BulkCreditNoteBatchLinesQuery setBulkCreditNoteBatchID(String value) { this.BulkCreditNoteBatchID = value; return this; } public String getBulkCreditNoteBatchIDStartsWith() { return BulkCreditNoteBatchIDStartsWith; } public SO_BulkCreditNoteBatchLinesQuery setBulkCreditNoteBatchIDStartsWith(String value) { this.BulkCreditNoteBatchIDStartsWith = value; return this; } public String getBulkCreditNoteBatchIDEndsWith() { return BulkCreditNoteBatchIDEndsWith; } public SO_BulkCreditNoteBatchLinesQuery setBulkCreditNoteBatchIDEndsWith(String value) { this.BulkCreditNoteBatchIDEndsWith = value; return this; } public String getBulkCreditNoteBatchIDContains() { return BulkCreditNoteBatchIDContains; } public SO_BulkCreditNoteBatchLinesQuery setBulkCreditNoteBatchIDContains(String value) { this.BulkCreditNoteBatchIDContains = value; return this; } public String getBulkCreditNoteBatchIDLike() { return BulkCreditNoteBatchIDLike; } public SO_BulkCreditNoteBatchLinesQuery setBulkCreditNoteBatchIDLike(String value) { this.BulkCreditNoteBatchIDLike = value; return this; } public ArrayList getBulkCreditNoteBatchIDBetween() { return BulkCreditNoteBatchIDBetween; } public SO_BulkCreditNoteBatchLinesQuery setBulkCreditNoteBatchIDBetween(ArrayList value) { this.BulkCreditNoteBatchIDBetween = value; return this; } public ArrayList getBulkCreditNoteBatchIDIn() { return BulkCreditNoteBatchIDIn; } public SO_BulkCreditNoteBatchLinesQuery setBulkCreditNoteBatchIDIn(ArrayList value) { this.BulkCreditNoteBatchIDIn = value; return this; } public Integer getLineNumber() { return LineNumber; } public SO_BulkCreditNoteBatchLinesQuery setLineNumber(Integer value) { this.LineNumber = value; return this; } public Integer getLineNumberGreaterThanOrEqualTo() { return LineNumberGreaterThanOrEqualTo; } public SO_BulkCreditNoteBatchLinesQuery setLineNumberGreaterThanOrEqualTo(Integer value) { this.LineNumberGreaterThanOrEqualTo = value; return this; } public Integer getLineNumberGreaterThan() { return LineNumberGreaterThan; } public SO_BulkCreditNoteBatchLinesQuery setLineNumberGreaterThan(Integer value) { this.LineNumberGreaterThan = value; return this; } public Integer getLineNumberLessThan() { return LineNumberLessThan; } public SO_BulkCreditNoteBatchLinesQuery setLineNumberLessThan(Integer value) { this.LineNumberLessThan = value; return this; } public Integer getLineNumberLessThanOrEqualTo() { return LineNumberLessThanOrEqualTo; } public SO_BulkCreditNoteBatchLinesQuery setLineNumberLessThanOrEqualTo(Integer value) { this.LineNumberLessThanOrEqualTo = value; return this; } public Integer getLineNumberNotEqualTo() { return LineNumberNotEqualTo; } public SO_BulkCreditNoteBatchLinesQuery setLineNumberNotEqualTo(Integer value) { this.LineNumberNotEqualTo = value; return this; } public ArrayList getLineNumberBetween() { return LineNumberBetween; } public SO_BulkCreditNoteBatchLinesQuery setLineNumberBetween(ArrayList value) { this.LineNumberBetween = value; return this; } public ArrayList getLineNumberIn() { return LineNumberIn; } public SO_BulkCreditNoteBatchLinesQuery setLineNumberIn(ArrayList value) { this.LineNumberIn = value; return this; } public String getInvoiceHistoryID() { return InvoiceHistoryID; } public SO_BulkCreditNoteBatchLinesQuery setInvoiceHistoryID(String value) { this.InvoiceHistoryID = value; return this; } public String getInvoiceHistoryIDStartsWith() { return InvoiceHistoryIDStartsWith; } public SO_BulkCreditNoteBatchLinesQuery setInvoiceHistoryIDStartsWith(String value) { this.InvoiceHistoryIDStartsWith = value; return this; } public String getInvoiceHistoryIDEndsWith() { return InvoiceHistoryIDEndsWith; } public SO_BulkCreditNoteBatchLinesQuery setInvoiceHistoryIDEndsWith(String value) { this.InvoiceHistoryIDEndsWith = value; return this; } public String getInvoiceHistoryIDContains() { return InvoiceHistoryIDContains; } public SO_BulkCreditNoteBatchLinesQuery setInvoiceHistoryIDContains(String value) { this.InvoiceHistoryIDContains = value; return this; } public String getInvoiceHistoryIDLike() { return InvoiceHistoryIDLike; } public SO_BulkCreditNoteBatchLinesQuery setInvoiceHistoryIDLike(String value) { this.InvoiceHistoryIDLike = value; return this; } public ArrayList getInvoiceHistoryIDBetween() { return InvoiceHistoryIDBetween; } public SO_BulkCreditNoteBatchLinesQuery setInvoiceHistoryIDBetween(ArrayList value) { this.InvoiceHistoryIDBetween = value; return this; } public ArrayList getInvoiceHistoryIDIn() { return InvoiceHistoryIDIn; } public SO_BulkCreditNoteBatchLinesQuery setInvoiceHistoryIDIn(ArrayList value) { this.InvoiceHistoryIDIn = value; return this; } public String getInvoiceID() { return InvoiceID; } public SO_BulkCreditNoteBatchLinesQuery setInvoiceID(String value) { this.InvoiceID = value; return this; } public String getInvoiceIDStartsWith() { return InvoiceIDStartsWith; } public SO_BulkCreditNoteBatchLinesQuery setInvoiceIDStartsWith(String value) { this.InvoiceIDStartsWith = value; return this; } public String getInvoiceIDEndsWith() { return InvoiceIDEndsWith; } public SO_BulkCreditNoteBatchLinesQuery setInvoiceIDEndsWith(String value) { this.InvoiceIDEndsWith = value; return this; } public String getInvoiceIDContains() { return InvoiceIDContains; } public SO_BulkCreditNoteBatchLinesQuery setInvoiceIDContains(String value) { this.InvoiceIDContains = value; return this; } public String getInvoiceIDLike() { return InvoiceIDLike; } public SO_BulkCreditNoteBatchLinesQuery setInvoiceIDLike(String value) { this.InvoiceIDLike = value; return this; } public ArrayList getInvoiceIDBetween() { return InvoiceIDBetween; } public SO_BulkCreditNoteBatchLinesQuery setInvoiceIDBetween(ArrayList value) { this.InvoiceIDBetween = value; return this; } public ArrayList getInvoiceIDIn() { return InvoiceIDIn; } public SO_BulkCreditNoteBatchLinesQuery setInvoiceIDIn(ArrayList value) { this.InvoiceIDIn = value; return this; } public String getInvoiceNo() { return InvoiceNo; } public SO_BulkCreditNoteBatchLinesQuery setInvoiceNo(String value) { this.InvoiceNo = value; return this; } public String getInvoiceNoStartsWith() { return InvoiceNoStartsWith; } public SO_BulkCreditNoteBatchLinesQuery setInvoiceNoStartsWith(String value) { this.InvoiceNoStartsWith = value; return this; } public String getInvoiceNoEndsWith() { return InvoiceNoEndsWith; } public SO_BulkCreditNoteBatchLinesQuery setInvoiceNoEndsWith(String value) { this.InvoiceNoEndsWith = value; return this; } public String getInvoiceNoContains() { return InvoiceNoContains; } public SO_BulkCreditNoteBatchLinesQuery setInvoiceNoContains(String value) { this.InvoiceNoContains = value; return this; } public String getInvoiceNoLike() { return InvoiceNoLike; } public SO_BulkCreditNoteBatchLinesQuery setInvoiceNoLike(String value) { this.InvoiceNoLike = value; return this; } public ArrayList getInvoiceNoBetween() { return InvoiceNoBetween; } public SO_BulkCreditNoteBatchLinesQuery setInvoiceNoBetween(ArrayList value) { this.InvoiceNoBetween = value; return this; } public ArrayList getInvoiceNoIn() { return InvoiceNoIn; } public SO_BulkCreditNoteBatchLinesQuery setInvoiceNoIn(ArrayList value) { this.InvoiceNoIn = value; return this; } public String getDebtorID() { return DebtorID; } public SO_BulkCreditNoteBatchLinesQuery setDebtorID(String value) { this.DebtorID = value; return this; } public String getDebtorIDStartsWith() { return DebtorIDStartsWith; } public SO_BulkCreditNoteBatchLinesQuery setDebtorIDStartsWith(String value) { this.DebtorIDStartsWith = value; return this; } public String getDebtorIDEndsWith() { return DebtorIDEndsWith; } public SO_BulkCreditNoteBatchLinesQuery setDebtorIDEndsWith(String value) { this.DebtorIDEndsWith = value; return this; } public String getDebtorIDContains() { return DebtorIDContains; } public SO_BulkCreditNoteBatchLinesQuery setDebtorIDContains(String value) { this.DebtorIDContains = value; return this; } public String getDebtorIDLike() { return DebtorIDLike; } public SO_BulkCreditNoteBatchLinesQuery setDebtorIDLike(String value) { this.DebtorIDLike = value; return this; } public ArrayList getDebtorIDBetween() { return DebtorIDBetween; } public SO_BulkCreditNoteBatchLinesQuery setDebtorIDBetween(ArrayList value) { this.DebtorIDBetween = value; return this; } public ArrayList getDebtorIDIn() { return DebtorIDIn; } public SO_BulkCreditNoteBatchLinesQuery setDebtorIDIn(ArrayList value) { this.DebtorIDIn = value; return this; } public String getDebtorAccountNo() { return DebtorAccountNo; } public SO_BulkCreditNoteBatchLinesQuery setDebtorAccountNo(String value) { this.DebtorAccountNo = value; return this; } public String getDebtorAccountNoStartsWith() { return DebtorAccountNoStartsWith; } public SO_BulkCreditNoteBatchLinesQuery setDebtorAccountNoStartsWith(String value) { this.DebtorAccountNoStartsWith = value; return this; } public String getDebtorAccountNoEndsWith() { return DebtorAccountNoEndsWith; } public SO_BulkCreditNoteBatchLinesQuery setDebtorAccountNoEndsWith(String value) { this.DebtorAccountNoEndsWith = value; return this; } public String getDebtorAccountNoContains() { return DebtorAccountNoContains; } public SO_BulkCreditNoteBatchLinesQuery setDebtorAccountNoContains(String value) { this.DebtorAccountNoContains = value; return this; } public String getDebtorAccountNoLike() { return DebtorAccountNoLike; } public SO_BulkCreditNoteBatchLinesQuery setDebtorAccountNoLike(String value) { this.DebtorAccountNoLike = value; return this; } public ArrayList getDebtorAccountNoBetween() { return DebtorAccountNoBetween; } public SO_BulkCreditNoteBatchLinesQuery setDebtorAccountNoBetween(ArrayList value) { this.DebtorAccountNoBetween = value; return this; } public ArrayList getDebtorAccountNoIn() { return DebtorAccountNoIn; } public SO_BulkCreditNoteBatchLinesQuery setDebtorAccountNoIn(ArrayList value) { this.DebtorAccountNoIn = value; return this; } public String getDebtorName() { return DebtorName; } public SO_BulkCreditNoteBatchLinesQuery setDebtorName(String value) { this.DebtorName = value; return this; } public String getDebtorNameStartsWith() { return DebtorNameStartsWith; } public SO_BulkCreditNoteBatchLinesQuery setDebtorNameStartsWith(String value) { this.DebtorNameStartsWith = value; return this; } public String getDebtorNameEndsWith() { return DebtorNameEndsWith; } public SO_BulkCreditNoteBatchLinesQuery setDebtorNameEndsWith(String value) { this.DebtorNameEndsWith = value; return this; } public String getDebtorNameContains() { return DebtorNameContains; } public SO_BulkCreditNoteBatchLinesQuery setDebtorNameContains(String value) { this.DebtorNameContains = value; return this; } public String getDebtorNameLike() { return DebtorNameLike; } public SO_BulkCreditNoteBatchLinesQuery setDebtorNameLike(String value) { this.DebtorNameLike = value; return this; } public ArrayList getDebtorNameBetween() { return DebtorNameBetween; } public SO_BulkCreditNoteBatchLinesQuery setDebtorNameBetween(ArrayList value) { this.DebtorNameBetween = value; return this; } public ArrayList getDebtorNameIn() { return DebtorNameIn; } public SO_BulkCreditNoteBatchLinesQuery setDebtorNameIn(ArrayList value) { this.DebtorNameIn = value; return this; } public String getCreditNoteInvoiceID() { return CreditNoteInvoiceID; } public SO_BulkCreditNoteBatchLinesQuery setCreditNoteInvoiceID(String value) { this.CreditNoteInvoiceID = value; return this; } public String getCreditNoteInvoiceIDStartsWith() { return CreditNoteInvoiceIDStartsWith; } public SO_BulkCreditNoteBatchLinesQuery setCreditNoteInvoiceIDStartsWith(String value) { this.CreditNoteInvoiceIDStartsWith = value; return this; } public String getCreditNoteInvoiceIDEndsWith() { return CreditNoteInvoiceIDEndsWith; } public SO_BulkCreditNoteBatchLinesQuery setCreditNoteInvoiceIDEndsWith(String value) { this.CreditNoteInvoiceIDEndsWith = value; return this; } public String getCreditNoteInvoiceIDContains() { return CreditNoteInvoiceIDContains; } public SO_BulkCreditNoteBatchLinesQuery setCreditNoteInvoiceIDContains(String value) { this.CreditNoteInvoiceIDContains = value; return this; } public String getCreditNoteInvoiceIDLike() { return CreditNoteInvoiceIDLike; } public SO_BulkCreditNoteBatchLinesQuery setCreditNoteInvoiceIDLike(String value) { this.CreditNoteInvoiceIDLike = value; return this; } public ArrayList getCreditNoteInvoiceIDBetween() { return CreditNoteInvoiceIDBetween; } public SO_BulkCreditNoteBatchLinesQuery setCreditNoteInvoiceIDBetween(ArrayList value) { this.CreditNoteInvoiceIDBetween = value; return this; } public ArrayList getCreditNoteInvoiceIDIn() { return CreditNoteInvoiceIDIn; } public SO_BulkCreditNoteBatchLinesQuery setCreditNoteInvoiceIDIn(ArrayList value) { this.CreditNoteInvoiceIDIn = value; return this; } public String getCreditNoteInvoiceNo() { return CreditNoteInvoiceNo; } public SO_BulkCreditNoteBatchLinesQuery setCreditNoteInvoiceNo(String value) { this.CreditNoteInvoiceNo = value; return this; } public String getCreditNoteInvoiceNoStartsWith() { return CreditNoteInvoiceNoStartsWith; } public SO_BulkCreditNoteBatchLinesQuery setCreditNoteInvoiceNoStartsWith(String value) { this.CreditNoteInvoiceNoStartsWith = value; return this; } public String getCreditNoteInvoiceNoEndsWith() { return CreditNoteInvoiceNoEndsWith; } public SO_BulkCreditNoteBatchLinesQuery setCreditNoteInvoiceNoEndsWith(String value) { this.CreditNoteInvoiceNoEndsWith = value; return this; } public String getCreditNoteInvoiceNoContains() { return CreditNoteInvoiceNoContains; } public SO_BulkCreditNoteBatchLinesQuery setCreditNoteInvoiceNoContains(String value) { this.CreditNoteInvoiceNoContains = value; return this; } public String getCreditNoteInvoiceNoLike() { return CreditNoteInvoiceNoLike; } public SO_BulkCreditNoteBatchLinesQuery setCreditNoteInvoiceNoLike(String value) { this.CreditNoteInvoiceNoLike = value; return this; } public ArrayList getCreditNoteInvoiceNoBetween() { return CreditNoteInvoiceNoBetween; } public SO_BulkCreditNoteBatchLinesQuery setCreditNoteInvoiceNoBetween(ArrayList value) { this.CreditNoteInvoiceNoBetween = value; return this; } public ArrayList getCreditNoteInvoiceNoIn() { return CreditNoteInvoiceNoIn; } public SO_BulkCreditNoteBatchLinesQuery setCreditNoteInvoiceNoIn(ArrayList value) { this.CreditNoteInvoiceNoIn = value; return this; } public Boolean isCreditFlag() { return CreditFlag; } public SO_BulkCreditNoteBatchLinesQuery setCreditFlag(Boolean value) { this.CreditFlag = value; return this; } public Boolean isCreditFailed() { return CreditFailed; } public SO_BulkCreditNoteBatchLinesQuery setCreditFailed(Boolean value) { this.CreditFailed = value; return this; } public String getFailReason() { return FailReason; } public SO_BulkCreditNoteBatchLinesQuery setFailReason(String value) { this.FailReason = value; return this; } public String getFailReasonStartsWith() { return FailReasonStartsWith; } public SO_BulkCreditNoteBatchLinesQuery setFailReasonStartsWith(String value) { this.FailReasonStartsWith = value; return this; } public String getFailReasonEndsWith() { return FailReasonEndsWith; } public SO_BulkCreditNoteBatchLinesQuery setFailReasonEndsWith(String value) { this.FailReasonEndsWith = value; return this; } public String getFailReasonContains() { return FailReasonContains; } public SO_BulkCreditNoteBatchLinesQuery setFailReasonContains(String value) { this.FailReasonContains = value; return this; } public String getFailReasonLike() { return FailReasonLike; } public SO_BulkCreditNoteBatchLinesQuery setFailReasonLike(String value) { this.FailReasonLike = value; return this; } public ArrayList getFailReasonBetween() { return FailReasonBetween; } public SO_BulkCreditNoteBatchLinesQuery setFailReasonBetween(ArrayList value) { this.FailReasonBetween = value; return this; } public ArrayList getFailReasonIn() { return FailReasonIn; } public SO_BulkCreditNoteBatchLinesQuery setFailReasonIn(ArrayList value) { this.FailReasonIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class SO_CashSaleQuery extends QueryDb implements IReturn> { public String InvoiceID = null; public String InvoiceIDStartsWith = null; public String InvoiceIDEndsWith = null; public String InvoiceIDContains = null; public String InvoiceIDLike = null; public ArrayList InvoiceIDBetween = null; public ArrayList InvoiceIDIn = null; public String Name = null; public String NameStartsWith = null; public String NameEndsWith = null; public String NameContains = null; public String NameLike = null; public ArrayList NameBetween = null; public ArrayList NameIn = null; public String Company = null; public String CompanyStartsWith = null; public String CompanyEndsWith = null; public String CompanyContains = null; public String CompanyLike = null; public ArrayList CompanyBetween = null; public ArrayList CompanyIn = null; public String Address1 = null; public String Address1StartsWith = null; public String Address1EndsWith = null; public String Address1Contains = null; public String Address1Like = null; public ArrayList Address1Between = null; public ArrayList Address1In = null; public String Address2 = null; public String Address2StartsWith = null; public String Address2EndsWith = null; public String Address2Contains = null; public String Address2Like = null; public ArrayList Address2Between = null; public ArrayList Address2In = null; public String Address3 = null; public String Address3StartsWith = null; public String Address3EndsWith = null; public String Address3Contains = null; public String Address3Like = null; public ArrayList Address3Between = null; public ArrayList Address3In = null; public String Address4 = null; public String Address4StartsWith = null; public String Address4EndsWith = null; public String Address4Contains = null; public String Address4Like = null; public ArrayList Address4Between = null; public ArrayList Address4In = null; public String PostCode = null; public String PostCodeStartsWith = null; public String PostCodeEndsWith = null; public String PostCodeContains = null; public String PostCodeLike = null; public ArrayList PostCodeBetween = null; public ArrayList PostCodeIn = null; public String Phone = null; public String PhoneStartsWith = null; public String PhoneEndsWith = null; public String PhoneContains = null; public String PhoneLike = null; public ArrayList PhoneBetween = null; public ArrayList PhoneIn = null; public String Fax = null; public String FaxStartsWith = null; public String FaxEndsWith = null; public String FaxContains = null; public String FaxLike = null; public ArrayList FaxBetween = null; public ArrayList FaxIn = null; public String ContactName = null; public String ContactNameStartsWith = null; public String ContactNameEndsWith = null; public String ContactNameContains = null; public String ContactNameLike = null; public ArrayList ContactNameBetween = null; public ArrayList ContactNameIn = null; public String getInvoiceID() { return InvoiceID; } public SO_CashSaleQuery setInvoiceID(String value) { this.InvoiceID = value; return this; } public String getInvoiceIDStartsWith() { return InvoiceIDStartsWith; } public SO_CashSaleQuery setInvoiceIDStartsWith(String value) { this.InvoiceIDStartsWith = value; return this; } public String getInvoiceIDEndsWith() { return InvoiceIDEndsWith; } public SO_CashSaleQuery setInvoiceIDEndsWith(String value) { this.InvoiceIDEndsWith = value; return this; } public String getInvoiceIDContains() { return InvoiceIDContains; } public SO_CashSaleQuery setInvoiceIDContains(String value) { this.InvoiceIDContains = value; return this; } public String getInvoiceIDLike() { return InvoiceIDLike; } public SO_CashSaleQuery setInvoiceIDLike(String value) { this.InvoiceIDLike = value; return this; } public ArrayList getInvoiceIDBetween() { return InvoiceIDBetween; } public SO_CashSaleQuery setInvoiceIDBetween(ArrayList value) { this.InvoiceIDBetween = value; return this; } public ArrayList getInvoiceIDIn() { return InvoiceIDIn; } public SO_CashSaleQuery setInvoiceIDIn(ArrayList value) { this.InvoiceIDIn = value; return this; } public String getName() { return Name; } public SO_CashSaleQuery setName(String value) { this.Name = value; return this; } public String getNameStartsWith() { return NameStartsWith; } public SO_CashSaleQuery setNameStartsWith(String value) { this.NameStartsWith = value; return this; } public String getNameEndsWith() { return NameEndsWith; } public SO_CashSaleQuery setNameEndsWith(String value) { this.NameEndsWith = value; return this; } public String getNameContains() { return NameContains; } public SO_CashSaleQuery setNameContains(String value) { this.NameContains = value; return this; } public String getNameLike() { return NameLike; } public SO_CashSaleQuery setNameLike(String value) { this.NameLike = value; return this; } public ArrayList getNameBetween() { return NameBetween; } public SO_CashSaleQuery setNameBetween(ArrayList value) { this.NameBetween = value; return this; } public ArrayList getNameIn() { return NameIn; } public SO_CashSaleQuery setNameIn(ArrayList value) { this.NameIn = value; return this; } public String getCompany() { return Company; } public SO_CashSaleQuery setCompany(String value) { this.Company = value; return this; } public String getCompanyStartsWith() { return CompanyStartsWith; } public SO_CashSaleQuery setCompanyStartsWith(String value) { this.CompanyStartsWith = value; return this; } public String getCompanyEndsWith() { return CompanyEndsWith; } public SO_CashSaleQuery setCompanyEndsWith(String value) { this.CompanyEndsWith = value; return this; } public String getCompanyContains() { return CompanyContains; } public SO_CashSaleQuery setCompanyContains(String value) { this.CompanyContains = value; return this; } public String getCompanyLike() { return CompanyLike; } public SO_CashSaleQuery setCompanyLike(String value) { this.CompanyLike = value; return this; } public ArrayList getCompanyBetween() { return CompanyBetween; } public SO_CashSaleQuery setCompanyBetween(ArrayList value) { this.CompanyBetween = value; return this; } public ArrayList getCompanyIn() { return CompanyIn; } public SO_CashSaleQuery setCompanyIn(ArrayList value) { this.CompanyIn = value; return this; } public String getAddress1() { return Address1; } public SO_CashSaleQuery setAddress1(String value) { this.Address1 = value; return this; } public String getAddress1StartsWith() { return Address1StartsWith; } public SO_CashSaleQuery setAddress1StartsWith(String value) { this.Address1StartsWith = value; return this; } public String getAddress1EndsWith() { return Address1EndsWith; } public SO_CashSaleQuery setAddress1EndsWith(String value) { this.Address1EndsWith = value; return this; } public String getAddress1Contains() { return Address1Contains; } public SO_CashSaleQuery setAddress1Contains(String value) { this.Address1Contains = value; return this; } public String getAddress1Like() { return Address1Like; } public SO_CashSaleQuery setAddress1Like(String value) { this.Address1Like = value; return this; } public ArrayList getAddress1Between() { return Address1Between; } public SO_CashSaleQuery setAddress1Between(ArrayList value) { this.Address1Between = value; return this; } public ArrayList getAddress1In() { return Address1In; } public SO_CashSaleQuery setAddress1In(ArrayList value) { this.Address1In = value; return this; } public String getAddress2() { return Address2; } public SO_CashSaleQuery setAddress2(String value) { this.Address2 = value; return this; } public String getAddress2StartsWith() { return Address2StartsWith; } public SO_CashSaleQuery setAddress2StartsWith(String value) { this.Address2StartsWith = value; return this; } public String getAddress2EndsWith() { return Address2EndsWith; } public SO_CashSaleQuery setAddress2EndsWith(String value) { this.Address2EndsWith = value; return this; } public String getAddress2Contains() { return Address2Contains; } public SO_CashSaleQuery setAddress2Contains(String value) { this.Address2Contains = value; return this; } public String getAddress2Like() { return Address2Like; } public SO_CashSaleQuery setAddress2Like(String value) { this.Address2Like = value; return this; } public ArrayList getAddress2Between() { return Address2Between; } public SO_CashSaleQuery setAddress2Between(ArrayList value) { this.Address2Between = value; return this; } public ArrayList getAddress2In() { return Address2In; } public SO_CashSaleQuery setAddress2In(ArrayList value) { this.Address2In = value; return this; } public String getAddress3() { return Address3; } public SO_CashSaleQuery setAddress3(String value) { this.Address3 = value; return this; } public String getAddress3StartsWith() { return Address3StartsWith; } public SO_CashSaleQuery setAddress3StartsWith(String value) { this.Address3StartsWith = value; return this; } public String getAddress3EndsWith() { return Address3EndsWith; } public SO_CashSaleQuery setAddress3EndsWith(String value) { this.Address3EndsWith = value; return this; } public String getAddress3Contains() { return Address3Contains; } public SO_CashSaleQuery setAddress3Contains(String value) { this.Address3Contains = value; return this; } public String getAddress3Like() { return Address3Like; } public SO_CashSaleQuery setAddress3Like(String value) { this.Address3Like = value; return this; } public ArrayList getAddress3Between() { return Address3Between; } public SO_CashSaleQuery setAddress3Between(ArrayList value) { this.Address3Between = value; return this; } public ArrayList getAddress3In() { return Address3In; } public SO_CashSaleQuery setAddress3In(ArrayList value) { this.Address3In = value; return this; } public String getAddress4() { return Address4; } public SO_CashSaleQuery setAddress4(String value) { this.Address4 = value; return this; } public String getAddress4StartsWith() { return Address4StartsWith; } public SO_CashSaleQuery setAddress4StartsWith(String value) { this.Address4StartsWith = value; return this; } public String getAddress4EndsWith() { return Address4EndsWith; } public SO_CashSaleQuery setAddress4EndsWith(String value) { this.Address4EndsWith = value; return this; } public String getAddress4Contains() { return Address4Contains; } public SO_CashSaleQuery setAddress4Contains(String value) { this.Address4Contains = value; return this; } public String getAddress4Like() { return Address4Like; } public SO_CashSaleQuery setAddress4Like(String value) { this.Address4Like = value; return this; } public ArrayList getAddress4Between() { return Address4Between; } public SO_CashSaleQuery setAddress4Between(ArrayList value) { this.Address4Between = value; return this; } public ArrayList getAddress4In() { return Address4In; } public SO_CashSaleQuery setAddress4In(ArrayList value) { this.Address4In = value; return this; } public String getPostCode() { return PostCode; } public SO_CashSaleQuery setPostCode(String value) { this.PostCode = value; return this; } public String getPostCodeStartsWith() { return PostCodeStartsWith; } public SO_CashSaleQuery setPostCodeStartsWith(String value) { this.PostCodeStartsWith = value; return this; } public String getPostCodeEndsWith() { return PostCodeEndsWith; } public SO_CashSaleQuery setPostCodeEndsWith(String value) { this.PostCodeEndsWith = value; return this; } public String getPostCodeContains() { return PostCodeContains; } public SO_CashSaleQuery setPostCodeContains(String value) { this.PostCodeContains = value; return this; } public String getPostCodeLike() { return PostCodeLike; } public SO_CashSaleQuery setPostCodeLike(String value) { this.PostCodeLike = value; return this; } public ArrayList getPostCodeBetween() { return PostCodeBetween; } public SO_CashSaleQuery setPostCodeBetween(ArrayList value) { this.PostCodeBetween = value; return this; } public ArrayList getPostCodeIn() { return PostCodeIn; } public SO_CashSaleQuery setPostCodeIn(ArrayList value) { this.PostCodeIn = value; return this; } public String getPhone() { return Phone; } public SO_CashSaleQuery setPhone(String value) { this.Phone = value; return this; } public String getPhoneStartsWith() { return PhoneStartsWith; } public SO_CashSaleQuery setPhoneStartsWith(String value) { this.PhoneStartsWith = value; return this; } public String getPhoneEndsWith() { return PhoneEndsWith; } public SO_CashSaleQuery setPhoneEndsWith(String value) { this.PhoneEndsWith = value; return this; } public String getPhoneContains() { return PhoneContains; } public SO_CashSaleQuery setPhoneContains(String value) { this.PhoneContains = value; return this; } public String getPhoneLike() { return PhoneLike; } public SO_CashSaleQuery setPhoneLike(String value) { this.PhoneLike = value; return this; } public ArrayList getPhoneBetween() { return PhoneBetween; } public SO_CashSaleQuery setPhoneBetween(ArrayList value) { this.PhoneBetween = value; return this; } public ArrayList getPhoneIn() { return PhoneIn; } public SO_CashSaleQuery setPhoneIn(ArrayList value) { this.PhoneIn = value; return this; } public String getFax() { return Fax; } public SO_CashSaleQuery setFax(String value) { this.Fax = value; return this; } public String getFaxStartsWith() { return FaxStartsWith; } public SO_CashSaleQuery setFaxStartsWith(String value) { this.FaxStartsWith = value; return this; } public String getFaxEndsWith() { return FaxEndsWith; } public SO_CashSaleQuery setFaxEndsWith(String value) { this.FaxEndsWith = value; return this; } public String getFaxContains() { return FaxContains; } public SO_CashSaleQuery setFaxContains(String value) { this.FaxContains = value; return this; } public String getFaxLike() { return FaxLike; } public SO_CashSaleQuery setFaxLike(String value) { this.FaxLike = value; return this; } public ArrayList getFaxBetween() { return FaxBetween; } public SO_CashSaleQuery setFaxBetween(ArrayList value) { this.FaxBetween = value; return this; } public ArrayList getFaxIn() { return FaxIn; } public SO_CashSaleQuery setFaxIn(ArrayList value) { this.FaxIn = value; return this; } public String getContactName() { return ContactName; } public SO_CashSaleQuery setContactName(String value) { this.ContactName = value; return this; } public String getContactNameStartsWith() { return ContactNameStartsWith; } public SO_CashSaleQuery setContactNameStartsWith(String value) { this.ContactNameStartsWith = value; return this; } public String getContactNameEndsWith() { return ContactNameEndsWith; } public SO_CashSaleQuery setContactNameEndsWith(String value) { this.ContactNameEndsWith = value; return this; } public String getContactNameContains() { return ContactNameContains; } public SO_CashSaleQuery setContactNameContains(String value) { this.ContactNameContains = value; return this; } public String getContactNameLike() { return ContactNameLike; } public SO_CashSaleQuery setContactNameLike(String value) { this.ContactNameLike = value; return this; } public ArrayList getContactNameBetween() { return ContactNameBetween; } public SO_CashSaleQuery setContactNameBetween(ArrayList value) { this.ContactNameBetween = value; return this; } public ArrayList getContactNameIn() { return ContactNameIn; } public SO_CashSaleQuery setContactNameIn(ArrayList value) { this.ContactNameIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class SO_CreditNoteInvoiceLinkQuery extends QueryDb implements IReturn> { public String RecID = null; public String RecIDStartsWith = null; public String RecIDEndsWith = null; public String RecIDContains = null; public String RecIDLike = null; public ArrayList RecIDBetween = null; public ArrayList RecIDIn = null; public String CreditNoteInvoiceID = null; public String CreditNoteInvoiceIDStartsWith = null; public String CreditNoteInvoiceIDEndsWith = null; public String CreditNoteInvoiceIDContains = null; public String CreditNoteInvoiceIDLike = null; public ArrayList CreditNoteInvoiceIDBetween = null; public ArrayList CreditNoteInvoiceIDIn = null; public String SourceInvoiceHistoryID = null; public String SourceInvoiceHistoryIDStartsWith = null; public String SourceInvoiceHistoryIDEndsWith = null; public String SourceInvoiceHistoryIDContains = null; public String SourceInvoiceHistoryIDLike = null; public ArrayList SourceInvoiceHistoryIDBetween = null; public ArrayList SourceInvoiceHistoryIDIn = null; public String getRecID() { return RecID; } public SO_CreditNoteInvoiceLinkQuery setRecID(String value) { this.RecID = value; return this; } public String getRecIDStartsWith() { return RecIDStartsWith; } public SO_CreditNoteInvoiceLinkQuery setRecIDStartsWith(String value) { this.RecIDStartsWith = value; return this; } public String getRecIDEndsWith() { return RecIDEndsWith; } public SO_CreditNoteInvoiceLinkQuery setRecIDEndsWith(String value) { this.RecIDEndsWith = value; return this; } public String getRecIDContains() { return RecIDContains; } public SO_CreditNoteInvoiceLinkQuery setRecIDContains(String value) { this.RecIDContains = value; return this; } public String getRecIDLike() { return RecIDLike; } public SO_CreditNoteInvoiceLinkQuery setRecIDLike(String value) { this.RecIDLike = value; return this; } public ArrayList getRecIDBetween() { return RecIDBetween; } public SO_CreditNoteInvoiceLinkQuery setRecIDBetween(ArrayList value) { this.RecIDBetween = value; return this; } public ArrayList getRecIDIn() { return RecIDIn; } public SO_CreditNoteInvoiceLinkQuery setRecIDIn(ArrayList value) { this.RecIDIn = value; return this; } public String getCreditNoteInvoiceID() { return CreditNoteInvoiceID; } public SO_CreditNoteInvoiceLinkQuery setCreditNoteInvoiceID(String value) { this.CreditNoteInvoiceID = value; return this; } public String getCreditNoteInvoiceIDStartsWith() { return CreditNoteInvoiceIDStartsWith; } public SO_CreditNoteInvoiceLinkQuery setCreditNoteInvoiceIDStartsWith(String value) { this.CreditNoteInvoiceIDStartsWith = value; return this; } public String getCreditNoteInvoiceIDEndsWith() { return CreditNoteInvoiceIDEndsWith; } public SO_CreditNoteInvoiceLinkQuery setCreditNoteInvoiceIDEndsWith(String value) { this.CreditNoteInvoiceIDEndsWith = value; return this; } public String getCreditNoteInvoiceIDContains() { return CreditNoteInvoiceIDContains; } public SO_CreditNoteInvoiceLinkQuery setCreditNoteInvoiceIDContains(String value) { this.CreditNoteInvoiceIDContains = value; return this; } public String getCreditNoteInvoiceIDLike() { return CreditNoteInvoiceIDLike; } public SO_CreditNoteInvoiceLinkQuery setCreditNoteInvoiceIDLike(String value) { this.CreditNoteInvoiceIDLike = value; return this; } public ArrayList getCreditNoteInvoiceIDBetween() { return CreditNoteInvoiceIDBetween; } public SO_CreditNoteInvoiceLinkQuery setCreditNoteInvoiceIDBetween(ArrayList value) { this.CreditNoteInvoiceIDBetween = value; return this; } public ArrayList getCreditNoteInvoiceIDIn() { return CreditNoteInvoiceIDIn; } public SO_CreditNoteInvoiceLinkQuery setCreditNoteInvoiceIDIn(ArrayList value) { this.CreditNoteInvoiceIDIn = value; return this; } public String getSourceInvoiceHistoryID() { return SourceInvoiceHistoryID; } public SO_CreditNoteInvoiceLinkQuery setSourceInvoiceHistoryID(String value) { this.SourceInvoiceHistoryID = value; return this; } public String getSourceInvoiceHistoryIDStartsWith() { return SourceInvoiceHistoryIDStartsWith; } public SO_CreditNoteInvoiceLinkQuery setSourceInvoiceHistoryIDStartsWith(String value) { this.SourceInvoiceHistoryIDStartsWith = value; return this; } public String getSourceInvoiceHistoryIDEndsWith() { return SourceInvoiceHistoryIDEndsWith; } public SO_CreditNoteInvoiceLinkQuery setSourceInvoiceHistoryIDEndsWith(String value) { this.SourceInvoiceHistoryIDEndsWith = value; return this; } public String getSourceInvoiceHistoryIDContains() { return SourceInvoiceHistoryIDContains; } public SO_CreditNoteInvoiceLinkQuery setSourceInvoiceHistoryIDContains(String value) { this.SourceInvoiceHistoryIDContains = value; return this; } public String getSourceInvoiceHistoryIDLike() { return SourceInvoiceHistoryIDLike; } public SO_CreditNoteInvoiceLinkQuery setSourceInvoiceHistoryIDLike(String value) { this.SourceInvoiceHistoryIDLike = value; return this; } public ArrayList getSourceInvoiceHistoryIDBetween() { return SourceInvoiceHistoryIDBetween; } public SO_CreditNoteInvoiceLinkQuery setSourceInvoiceHistoryIDBetween(ArrayList value) { this.SourceInvoiceHistoryIDBetween = value; return this; } public ArrayList getSourceInvoiceHistoryIDIn() { return SourceInvoiceHistoryIDIn; } public SO_CreditNoteInvoiceLinkQuery setSourceInvoiceHistoryIDIn(ArrayList value) { this.SourceInvoiceHistoryIDIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class SO_CreditReasonsQuery extends QueryDb implements IReturn> { public String CreditReasonID = null; public String CreditReasonIDStartsWith = null; public String CreditReasonIDEndsWith = null; public String CreditReasonIDContains = null; public String CreditReasonIDLike = null; public ArrayList CreditReasonIDBetween = null; public ArrayList CreditReasonIDIn = null; public String CreditReasonDescription = null; public String CreditReasonDescriptionStartsWith = null; public String CreditReasonDescriptionEndsWith = null; public String CreditReasonDescriptionContains = null; public String CreditReasonDescriptionLike = null; public ArrayList CreditReasonDescriptionBetween = null; public ArrayList CreditReasonDescriptionIn = null; public Boolean DefaultCreditReason = null; public Boolean CreditIntoStock = null; public String getCreditReasonID() { return CreditReasonID; } public SO_CreditReasonsQuery setCreditReasonID(String value) { this.CreditReasonID = value; return this; } public String getCreditReasonIDStartsWith() { return CreditReasonIDStartsWith; } public SO_CreditReasonsQuery setCreditReasonIDStartsWith(String value) { this.CreditReasonIDStartsWith = value; return this; } public String getCreditReasonIDEndsWith() { return CreditReasonIDEndsWith; } public SO_CreditReasonsQuery setCreditReasonIDEndsWith(String value) { this.CreditReasonIDEndsWith = value; return this; } public String getCreditReasonIDContains() { return CreditReasonIDContains; } public SO_CreditReasonsQuery setCreditReasonIDContains(String value) { this.CreditReasonIDContains = value; return this; } public String getCreditReasonIDLike() { return CreditReasonIDLike; } public SO_CreditReasonsQuery setCreditReasonIDLike(String value) { this.CreditReasonIDLike = value; return this; } public ArrayList getCreditReasonIDBetween() { return CreditReasonIDBetween; } public SO_CreditReasonsQuery setCreditReasonIDBetween(ArrayList value) { this.CreditReasonIDBetween = value; return this; } public ArrayList getCreditReasonIDIn() { return CreditReasonIDIn; } public SO_CreditReasonsQuery setCreditReasonIDIn(ArrayList value) { this.CreditReasonIDIn = value; return this; } public String getCreditReasonDescription() { return CreditReasonDescription; } public SO_CreditReasonsQuery setCreditReasonDescription(String value) { this.CreditReasonDescription = value; return this; } public String getCreditReasonDescriptionStartsWith() { return CreditReasonDescriptionStartsWith; } public SO_CreditReasonsQuery setCreditReasonDescriptionStartsWith(String value) { this.CreditReasonDescriptionStartsWith = value; return this; } public String getCreditReasonDescriptionEndsWith() { return CreditReasonDescriptionEndsWith; } public SO_CreditReasonsQuery setCreditReasonDescriptionEndsWith(String value) { this.CreditReasonDescriptionEndsWith = value; return this; } public String getCreditReasonDescriptionContains() { return CreditReasonDescriptionContains; } public SO_CreditReasonsQuery setCreditReasonDescriptionContains(String value) { this.CreditReasonDescriptionContains = value; return this; } public String getCreditReasonDescriptionLike() { return CreditReasonDescriptionLike; } public SO_CreditReasonsQuery setCreditReasonDescriptionLike(String value) { this.CreditReasonDescriptionLike = value; return this; } public ArrayList getCreditReasonDescriptionBetween() { return CreditReasonDescriptionBetween; } public SO_CreditReasonsQuery setCreditReasonDescriptionBetween(ArrayList value) { this.CreditReasonDescriptionBetween = value; return this; } public ArrayList getCreditReasonDescriptionIn() { return CreditReasonDescriptionIn; } public SO_CreditReasonsQuery setCreditReasonDescriptionIn(ArrayList value) { this.CreditReasonDescriptionIn = value; return this; } public Boolean isDefaultCreditReason() { return DefaultCreditReason; } public SO_CreditReasonsQuery setDefaultCreditReason(Boolean value) { this.DefaultCreditReason = value; return this; } public Boolean isCreditIntoStock() { return CreditIntoStock; } public SO_CreditReasonsQuery setCreditIntoStock(Boolean value) { this.CreditIntoStock = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class SO_CustomSettingQuery extends QueryDb implements IReturn> { public String SettingID = null; public String SettingIDStartsWith = null; public String SettingIDEndsWith = null; public String SettingIDContains = null; public String SettingIDLike = null; public ArrayList SettingIDBetween = null; public ArrayList SettingIDIn = null; public Date LastSavedDateTime = null; public Date LastSavedDateTimeGreaterThanOrEqualTo = null; public Date LastSavedDateTimeGreaterThan = null; public Date LastSavedDateTimeLessThan = null; public Date LastSavedDateTimeLessThanOrEqualTo = null; public Date LastSavedDateTimeNotEqualTo = null; public ArrayList LastSavedDateTimeBetween = null; public ArrayList LastSavedDateTimeIn = null; public String SettingDescription = null; public String SettingDescriptionStartsWith = null; public String SettingDescriptionEndsWith = null; public String SettingDescriptionContains = null; public String SettingDescriptionLike = null; public ArrayList SettingDescriptionBetween = null; public ArrayList SettingDescriptionIn = null; public String SettingName = null; public String SettingNameStartsWith = null; public String SettingNameEndsWith = null; public String SettingNameContains = null; public String SettingNameLike = null; public ArrayList SettingNameBetween = null; public ArrayList SettingNameIn = null; public BigDecimal DisplayOrder = null; public BigDecimal DisplayOrderGreaterThanOrEqualTo = null; public BigDecimal DisplayOrderGreaterThan = null; public BigDecimal DisplayOrderLessThan = null; public BigDecimal DisplayOrderLessThanOrEqualTo = null; public BigDecimal DisplayOrderNotEqualTo = null; public ArrayList DisplayOrderBetween = null; public ArrayList DisplayOrderIn = null; public Short CellType = null; public Short CellTypeGreaterThanOrEqualTo = null; public Short CellTypeGreaterThan = null; public Short CellTypeLessThan = null; public Short CellTypeLessThanOrEqualTo = null; public Short CellTypeNotEqualTo = null; public ArrayList CellTypeBetween = null; public ArrayList CellTypeIn = null; public String ScriptFormatCell = null; public String ScriptFormatCellStartsWith = null; public String ScriptFormatCellEndsWith = null; public String ScriptFormatCellContains = null; public String ScriptFormatCellLike = null; public ArrayList ScriptFormatCellBetween = null; public ArrayList ScriptFormatCellIn = null; public String ScriptButtonClicked = null; public String ScriptButtonClickedStartsWith = null; public String ScriptButtonClickedEndsWith = null; public String ScriptButtonClickedContains = null; public String ScriptButtonClickedLike = null; public ArrayList ScriptButtonClickedBetween = null; public ArrayList ScriptButtonClickedIn = null; public String ScriptReadData = null; public String ScriptReadDataStartsWith = null; public String ScriptReadDataEndsWith = null; public String ScriptReadDataContains = null; public String ScriptReadDataLike = null; public ArrayList ScriptReadDataBetween = null; public ArrayList ScriptReadDataIn = null; public String GridHandlerCode = null; public String GridHandlerCodeStartsWith = null; public String GridHandlerCodeEndsWith = null; public String GridHandlerCodeContains = null; public String GridHandlerCodeLike = null; public ArrayList GridHandlerCodeBetween = null; public ArrayList GridHandlerCodeIn = null; public UUID SY_Plugin_RecID = null; public ArrayList SY_Plugin_RecIDIn = null; public String getSettingID() { return SettingID; } public SO_CustomSettingQuery setSettingID(String value) { this.SettingID = value; return this; } public String getSettingIDStartsWith() { return SettingIDStartsWith; } public SO_CustomSettingQuery setSettingIDStartsWith(String value) { this.SettingIDStartsWith = value; return this; } public String getSettingIDEndsWith() { return SettingIDEndsWith; } public SO_CustomSettingQuery setSettingIDEndsWith(String value) { this.SettingIDEndsWith = value; return this; } public String getSettingIDContains() { return SettingIDContains; } public SO_CustomSettingQuery setSettingIDContains(String value) { this.SettingIDContains = value; return this; } public String getSettingIDLike() { return SettingIDLike; } public SO_CustomSettingQuery setSettingIDLike(String value) { this.SettingIDLike = value; return this; } public ArrayList getSettingIDBetween() { return SettingIDBetween; } public SO_CustomSettingQuery setSettingIDBetween(ArrayList value) { this.SettingIDBetween = value; return this; } public ArrayList getSettingIDIn() { return SettingIDIn; } public SO_CustomSettingQuery setSettingIDIn(ArrayList value) { this.SettingIDIn = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public SO_CustomSettingQuery setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getLastSavedDateTimeGreaterThanOrEqualTo() { return LastSavedDateTimeGreaterThanOrEqualTo; } public SO_CustomSettingQuery setLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.LastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeGreaterThan() { return LastSavedDateTimeGreaterThan; } public SO_CustomSettingQuery setLastSavedDateTimeGreaterThan(Date value) { this.LastSavedDateTimeGreaterThan = value; return this; } public Date getLastSavedDateTimeLessThan() { return LastSavedDateTimeLessThan; } public SO_CustomSettingQuery setLastSavedDateTimeLessThan(Date value) { this.LastSavedDateTimeLessThan = value; return this; } public Date getLastSavedDateTimeLessThanOrEqualTo() { return LastSavedDateTimeLessThanOrEqualTo; } public SO_CustomSettingQuery setLastSavedDateTimeLessThanOrEqualTo(Date value) { this.LastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeNotEqualTo() { return LastSavedDateTimeNotEqualTo; } public SO_CustomSettingQuery setLastSavedDateTimeNotEqualTo(Date value) { this.LastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getLastSavedDateTimeBetween() { return LastSavedDateTimeBetween; } public SO_CustomSettingQuery setLastSavedDateTimeBetween(ArrayList value) { this.LastSavedDateTimeBetween = value; return this; } public ArrayList getLastSavedDateTimeIn() { return LastSavedDateTimeIn; } public SO_CustomSettingQuery setLastSavedDateTimeIn(ArrayList value) { this.LastSavedDateTimeIn = value; return this; } public String getSettingDescription() { return SettingDescription; } public SO_CustomSettingQuery setSettingDescription(String value) { this.SettingDescription = value; return this; } public String getSettingDescriptionStartsWith() { return SettingDescriptionStartsWith; } public SO_CustomSettingQuery setSettingDescriptionStartsWith(String value) { this.SettingDescriptionStartsWith = value; return this; } public String getSettingDescriptionEndsWith() { return SettingDescriptionEndsWith; } public SO_CustomSettingQuery setSettingDescriptionEndsWith(String value) { this.SettingDescriptionEndsWith = value; return this; } public String getSettingDescriptionContains() { return SettingDescriptionContains; } public SO_CustomSettingQuery setSettingDescriptionContains(String value) { this.SettingDescriptionContains = value; return this; } public String getSettingDescriptionLike() { return SettingDescriptionLike; } public SO_CustomSettingQuery setSettingDescriptionLike(String value) { this.SettingDescriptionLike = value; return this; } public ArrayList getSettingDescriptionBetween() { return SettingDescriptionBetween; } public SO_CustomSettingQuery setSettingDescriptionBetween(ArrayList value) { this.SettingDescriptionBetween = value; return this; } public ArrayList getSettingDescriptionIn() { return SettingDescriptionIn; } public SO_CustomSettingQuery setSettingDescriptionIn(ArrayList value) { this.SettingDescriptionIn = value; return this; } public String getSettingName() { return SettingName; } public SO_CustomSettingQuery setSettingName(String value) { this.SettingName = value; return this; } public String getSettingNameStartsWith() { return SettingNameStartsWith; } public SO_CustomSettingQuery setSettingNameStartsWith(String value) { this.SettingNameStartsWith = value; return this; } public String getSettingNameEndsWith() { return SettingNameEndsWith; } public SO_CustomSettingQuery setSettingNameEndsWith(String value) { this.SettingNameEndsWith = value; return this; } public String getSettingNameContains() { return SettingNameContains; } public SO_CustomSettingQuery setSettingNameContains(String value) { this.SettingNameContains = value; return this; } public String getSettingNameLike() { return SettingNameLike; } public SO_CustomSettingQuery setSettingNameLike(String value) { this.SettingNameLike = value; return this; } public ArrayList getSettingNameBetween() { return SettingNameBetween; } public SO_CustomSettingQuery setSettingNameBetween(ArrayList value) { this.SettingNameBetween = value; return this; } public ArrayList getSettingNameIn() { return SettingNameIn; } public SO_CustomSettingQuery setSettingNameIn(ArrayList value) { this.SettingNameIn = value; return this; } public BigDecimal getDisplayOrder() { return DisplayOrder; } public SO_CustomSettingQuery setDisplayOrder(BigDecimal value) { this.DisplayOrder = value; return this; } public BigDecimal getDisplayOrderGreaterThanOrEqualTo() { return DisplayOrderGreaterThanOrEqualTo; } public SO_CustomSettingQuery setDisplayOrderGreaterThanOrEqualTo(BigDecimal value) { this.DisplayOrderGreaterThanOrEqualTo = value; return this; } public BigDecimal getDisplayOrderGreaterThan() { return DisplayOrderGreaterThan; } public SO_CustomSettingQuery setDisplayOrderGreaterThan(BigDecimal value) { this.DisplayOrderGreaterThan = value; return this; } public BigDecimal getDisplayOrderLessThan() { return DisplayOrderLessThan; } public SO_CustomSettingQuery setDisplayOrderLessThan(BigDecimal value) { this.DisplayOrderLessThan = value; return this; } public BigDecimal getDisplayOrderLessThanOrEqualTo() { return DisplayOrderLessThanOrEqualTo; } public SO_CustomSettingQuery setDisplayOrderLessThanOrEqualTo(BigDecimal value) { this.DisplayOrderLessThanOrEqualTo = value; return this; } public BigDecimal getDisplayOrderNotEqualTo() { return DisplayOrderNotEqualTo; } public SO_CustomSettingQuery setDisplayOrderNotEqualTo(BigDecimal value) { this.DisplayOrderNotEqualTo = value; return this; } public ArrayList getDisplayOrderBetween() { return DisplayOrderBetween; } public SO_CustomSettingQuery setDisplayOrderBetween(ArrayList value) { this.DisplayOrderBetween = value; return this; } public ArrayList getDisplayOrderIn() { return DisplayOrderIn; } public SO_CustomSettingQuery setDisplayOrderIn(ArrayList value) { this.DisplayOrderIn = value; return this; } public Short getCellType() { return CellType; } public SO_CustomSettingQuery setCellType(Short value) { this.CellType = value; return this; } public Short getCellTypeGreaterThanOrEqualTo() { return CellTypeGreaterThanOrEqualTo; } public SO_CustomSettingQuery setCellTypeGreaterThanOrEqualTo(Short value) { this.CellTypeGreaterThanOrEqualTo = value; return this; } public Short getCellTypeGreaterThan() { return CellTypeGreaterThan; } public SO_CustomSettingQuery setCellTypeGreaterThan(Short value) { this.CellTypeGreaterThan = value; return this; } public Short getCellTypeLessThan() { return CellTypeLessThan; } public SO_CustomSettingQuery setCellTypeLessThan(Short value) { this.CellTypeLessThan = value; return this; } public Short getCellTypeLessThanOrEqualTo() { return CellTypeLessThanOrEqualTo; } public SO_CustomSettingQuery setCellTypeLessThanOrEqualTo(Short value) { this.CellTypeLessThanOrEqualTo = value; return this; } public Short getCellTypeNotEqualTo() { return CellTypeNotEqualTo; } public SO_CustomSettingQuery setCellTypeNotEqualTo(Short value) { this.CellTypeNotEqualTo = value; return this; } public ArrayList getCellTypeBetween() { return CellTypeBetween; } public SO_CustomSettingQuery setCellTypeBetween(ArrayList value) { this.CellTypeBetween = value; return this; } public ArrayList getCellTypeIn() { return CellTypeIn; } public SO_CustomSettingQuery setCellTypeIn(ArrayList value) { this.CellTypeIn = value; return this; } public String getScriptFormatCell() { return ScriptFormatCell; } public SO_CustomSettingQuery setScriptFormatCell(String value) { this.ScriptFormatCell = value; return this; } public String getScriptFormatCellStartsWith() { return ScriptFormatCellStartsWith; } public SO_CustomSettingQuery setScriptFormatCellStartsWith(String value) { this.ScriptFormatCellStartsWith = value; return this; } public String getScriptFormatCellEndsWith() { return ScriptFormatCellEndsWith; } public SO_CustomSettingQuery setScriptFormatCellEndsWith(String value) { this.ScriptFormatCellEndsWith = value; return this; } public String getScriptFormatCellContains() { return ScriptFormatCellContains; } public SO_CustomSettingQuery setScriptFormatCellContains(String value) { this.ScriptFormatCellContains = value; return this; } public String getScriptFormatCellLike() { return ScriptFormatCellLike; } public SO_CustomSettingQuery setScriptFormatCellLike(String value) { this.ScriptFormatCellLike = value; return this; } public ArrayList getScriptFormatCellBetween() { return ScriptFormatCellBetween; } public SO_CustomSettingQuery setScriptFormatCellBetween(ArrayList value) { this.ScriptFormatCellBetween = value; return this; } public ArrayList getScriptFormatCellIn() { return ScriptFormatCellIn; } public SO_CustomSettingQuery setScriptFormatCellIn(ArrayList value) { this.ScriptFormatCellIn = value; return this; } public String getScriptButtonClicked() { return ScriptButtonClicked; } public SO_CustomSettingQuery setScriptButtonClicked(String value) { this.ScriptButtonClicked = value; return this; } public String getScriptButtonClickedStartsWith() { return ScriptButtonClickedStartsWith; } public SO_CustomSettingQuery setScriptButtonClickedStartsWith(String value) { this.ScriptButtonClickedStartsWith = value; return this; } public String getScriptButtonClickedEndsWith() { return ScriptButtonClickedEndsWith; } public SO_CustomSettingQuery setScriptButtonClickedEndsWith(String value) { this.ScriptButtonClickedEndsWith = value; return this; } public String getScriptButtonClickedContains() { return ScriptButtonClickedContains; } public SO_CustomSettingQuery setScriptButtonClickedContains(String value) { this.ScriptButtonClickedContains = value; return this; } public String getScriptButtonClickedLike() { return ScriptButtonClickedLike; } public SO_CustomSettingQuery setScriptButtonClickedLike(String value) { this.ScriptButtonClickedLike = value; return this; } public ArrayList getScriptButtonClickedBetween() { return ScriptButtonClickedBetween; } public SO_CustomSettingQuery setScriptButtonClickedBetween(ArrayList value) { this.ScriptButtonClickedBetween = value; return this; } public ArrayList getScriptButtonClickedIn() { return ScriptButtonClickedIn; } public SO_CustomSettingQuery setScriptButtonClickedIn(ArrayList value) { this.ScriptButtonClickedIn = value; return this; } public String getScriptReadData() { return ScriptReadData; } public SO_CustomSettingQuery setScriptReadData(String value) { this.ScriptReadData = value; return this; } public String getScriptReadDataStartsWith() { return ScriptReadDataStartsWith; } public SO_CustomSettingQuery setScriptReadDataStartsWith(String value) { this.ScriptReadDataStartsWith = value; return this; } public String getScriptReadDataEndsWith() { return ScriptReadDataEndsWith; } public SO_CustomSettingQuery setScriptReadDataEndsWith(String value) { this.ScriptReadDataEndsWith = value; return this; } public String getScriptReadDataContains() { return ScriptReadDataContains; } public SO_CustomSettingQuery setScriptReadDataContains(String value) { this.ScriptReadDataContains = value; return this; } public String getScriptReadDataLike() { return ScriptReadDataLike; } public SO_CustomSettingQuery setScriptReadDataLike(String value) { this.ScriptReadDataLike = value; return this; } public ArrayList getScriptReadDataBetween() { return ScriptReadDataBetween; } public SO_CustomSettingQuery setScriptReadDataBetween(ArrayList value) { this.ScriptReadDataBetween = value; return this; } public ArrayList getScriptReadDataIn() { return ScriptReadDataIn; } public SO_CustomSettingQuery setScriptReadDataIn(ArrayList value) { this.ScriptReadDataIn = value; return this; } public String getGridHandlerCode() { return GridHandlerCode; } public SO_CustomSettingQuery setGridHandlerCode(String value) { this.GridHandlerCode = value; return this; } public String getGridHandlerCodeStartsWith() { return GridHandlerCodeStartsWith; } public SO_CustomSettingQuery setGridHandlerCodeStartsWith(String value) { this.GridHandlerCodeStartsWith = value; return this; } public String getGridHandlerCodeEndsWith() { return GridHandlerCodeEndsWith; } public SO_CustomSettingQuery setGridHandlerCodeEndsWith(String value) { this.GridHandlerCodeEndsWith = value; return this; } public String getGridHandlerCodeContains() { return GridHandlerCodeContains; } public SO_CustomSettingQuery setGridHandlerCodeContains(String value) { this.GridHandlerCodeContains = value; return this; } public String getGridHandlerCodeLike() { return GridHandlerCodeLike; } public SO_CustomSettingQuery setGridHandlerCodeLike(String value) { this.GridHandlerCodeLike = value; return this; } public ArrayList getGridHandlerCodeBetween() { return GridHandlerCodeBetween; } public SO_CustomSettingQuery setGridHandlerCodeBetween(ArrayList value) { this.GridHandlerCodeBetween = value; return this; } public ArrayList getGridHandlerCodeIn() { return GridHandlerCodeIn; } public SO_CustomSettingQuery setGridHandlerCodeIn(ArrayList value) { this.GridHandlerCodeIn = value; return this; } public UUID getSyPluginRecID() { return SY_Plugin_RecID; } public SO_CustomSettingQuery setSyPluginRecID(UUID value) { this.SY_Plugin_RecID = value; return this; } public ArrayList getSyPluginRecIDIn() { return SY_Plugin_RecIDIn; } public SO_CustomSettingQuery setSyPluginRecIDIn(ArrayList value) { this.SY_Plugin_RecIDIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class SO_CustomSettingValuesQuery extends QueryDb implements IReturn> { public String SettingValueID = null; public String SettingValueIDStartsWith = null; public String SettingValueIDEndsWith = null; public String SettingValueIDContains = null; public String SettingValueIDLike = null; public ArrayList SettingValueIDBetween = null; public ArrayList SettingValueIDIn = null; public String SettingID = null; public String SettingIDStartsWith = null; public String SettingIDEndsWith = null; public String SettingIDContains = null; public String SettingIDLike = null; public ArrayList SettingIDBetween = null; public ArrayList SettingIDIn = null; public String InvoiceID = null; public String InvoiceIDStartsWith = null; public String InvoiceIDEndsWith = null; public String InvoiceIDContains = null; public String InvoiceIDLike = null; public ArrayList InvoiceIDBetween = null; public ArrayList InvoiceIDIn = null; public String Contents = null; public String ContentsStartsWith = null; public String ContentsEndsWith = null; public String ContentsContains = null; public String ContentsLike = null; public ArrayList ContentsBetween = null; public ArrayList ContentsIn = null; public Date LastSavedDateTime = null; public Date LastSavedDateTimeGreaterThanOrEqualTo = null; public Date LastSavedDateTimeGreaterThan = null; public Date LastSavedDateTimeLessThan = null; public Date LastSavedDateTimeLessThanOrEqualTo = null; public Date LastSavedDateTimeNotEqualTo = null; public ArrayList LastSavedDateTimeBetween = null; public ArrayList LastSavedDateTimeIn = null; public String getSettingValueID() { return SettingValueID; } public SO_CustomSettingValuesQuery setSettingValueID(String value) { this.SettingValueID = value; return this; } public String getSettingValueIDStartsWith() { return SettingValueIDStartsWith; } public SO_CustomSettingValuesQuery setSettingValueIDStartsWith(String value) { this.SettingValueIDStartsWith = value; return this; } public String getSettingValueIDEndsWith() { return SettingValueIDEndsWith; } public SO_CustomSettingValuesQuery setSettingValueIDEndsWith(String value) { this.SettingValueIDEndsWith = value; return this; } public String getSettingValueIDContains() { return SettingValueIDContains; } public SO_CustomSettingValuesQuery setSettingValueIDContains(String value) { this.SettingValueIDContains = value; return this; } public String getSettingValueIDLike() { return SettingValueIDLike; } public SO_CustomSettingValuesQuery setSettingValueIDLike(String value) { this.SettingValueIDLike = value; return this; } public ArrayList getSettingValueIDBetween() { return SettingValueIDBetween; } public SO_CustomSettingValuesQuery setSettingValueIDBetween(ArrayList value) { this.SettingValueIDBetween = value; return this; } public ArrayList getSettingValueIDIn() { return SettingValueIDIn; } public SO_CustomSettingValuesQuery setSettingValueIDIn(ArrayList value) { this.SettingValueIDIn = value; return this; } public String getSettingID() { return SettingID; } public SO_CustomSettingValuesQuery setSettingID(String value) { this.SettingID = value; return this; } public String getSettingIDStartsWith() { return SettingIDStartsWith; } public SO_CustomSettingValuesQuery setSettingIDStartsWith(String value) { this.SettingIDStartsWith = value; return this; } public String getSettingIDEndsWith() { return SettingIDEndsWith; } public SO_CustomSettingValuesQuery setSettingIDEndsWith(String value) { this.SettingIDEndsWith = value; return this; } public String getSettingIDContains() { return SettingIDContains; } public SO_CustomSettingValuesQuery setSettingIDContains(String value) { this.SettingIDContains = value; return this; } public String getSettingIDLike() { return SettingIDLike; } public SO_CustomSettingValuesQuery setSettingIDLike(String value) { this.SettingIDLike = value; return this; } public ArrayList getSettingIDBetween() { return SettingIDBetween; } public SO_CustomSettingValuesQuery setSettingIDBetween(ArrayList value) { this.SettingIDBetween = value; return this; } public ArrayList getSettingIDIn() { return SettingIDIn; } public SO_CustomSettingValuesQuery setSettingIDIn(ArrayList value) { this.SettingIDIn = value; return this; } public String getInvoiceID() { return InvoiceID; } public SO_CustomSettingValuesQuery setInvoiceID(String value) { this.InvoiceID = value; return this; } public String getInvoiceIDStartsWith() { return InvoiceIDStartsWith; } public SO_CustomSettingValuesQuery setInvoiceIDStartsWith(String value) { this.InvoiceIDStartsWith = value; return this; } public String getInvoiceIDEndsWith() { return InvoiceIDEndsWith; } public SO_CustomSettingValuesQuery setInvoiceIDEndsWith(String value) { this.InvoiceIDEndsWith = value; return this; } public String getInvoiceIDContains() { return InvoiceIDContains; } public SO_CustomSettingValuesQuery setInvoiceIDContains(String value) { this.InvoiceIDContains = value; return this; } public String getInvoiceIDLike() { return InvoiceIDLike; } public SO_CustomSettingValuesQuery setInvoiceIDLike(String value) { this.InvoiceIDLike = value; return this; } public ArrayList getInvoiceIDBetween() { return InvoiceIDBetween; } public SO_CustomSettingValuesQuery setInvoiceIDBetween(ArrayList value) { this.InvoiceIDBetween = value; return this; } public ArrayList getInvoiceIDIn() { return InvoiceIDIn; } public SO_CustomSettingValuesQuery setInvoiceIDIn(ArrayList value) { this.InvoiceIDIn = value; return this; } public String getContents() { return Contents; } public SO_CustomSettingValuesQuery setContents(String value) { this.Contents = value; return this; } public String getContentsStartsWith() { return ContentsStartsWith; } public SO_CustomSettingValuesQuery setContentsStartsWith(String value) { this.ContentsStartsWith = value; return this; } public String getContentsEndsWith() { return ContentsEndsWith; } public SO_CustomSettingValuesQuery setContentsEndsWith(String value) { this.ContentsEndsWith = value; return this; } public String getContentsContains() { return ContentsContains; } public SO_CustomSettingValuesQuery setContentsContains(String value) { this.ContentsContains = value; return this; } public String getContentsLike() { return ContentsLike; } public SO_CustomSettingValuesQuery setContentsLike(String value) { this.ContentsLike = value; return this; } public ArrayList getContentsBetween() { return ContentsBetween; } public SO_CustomSettingValuesQuery setContentsBetween(ArrayList value) { this.ContentsBetween = value; return this; } public ArrayList getContentsIn() { return ContentsIn; } public SO_CustomSettingValuesQuery setContentsIn(ArrayList value) { this.ContentsIn = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public SO_CustomSettingValuesQuery setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getLastSavedDateTimeGreaterThanOrEqualTo() { return LastSavedDateTimeGreaterThanOrEqualTo; } public SO_CustomSettingValuesQuery setLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.LastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeGreaterThan() { return LastSavedDateTimeGreaterThan; } public SO_CustomSettingValuesQuery setLastSavedDateTimeGreaterThan(Date value) { this.LastSavedDateTimeGreaterThan = value; return this; } public Date getLastSavedDateTimeLessThan() { return LastSavedDateTimeLessThan; } public SO_CustomSettingValuesQuery setLastSavedDateTimeLessThan(Date value) { this.LastSavedDateTimeLessThan = value; return this; } public Date getLastSavedDateTimeLessThanOrEqualTo() { return LastSavedDateTimeLessThanOrEqualTo; } public SO_CustomSettingValuesQuery setLastSavedDateTimeLessThanOrEqualTo(Date value) { this.LastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeNotEqualTo() { return LastSavedDateTimeNotEqualTo; } public SO_CustomSettingValuesQuery setLastSavedDateTimeNotEqualTo(Date value) { this.LastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getLastSavedDateTimeBetween() { return LastSavedDateTimeBetween; } public SO_CustomSettingValuesQuery setLastSavedDateTimeBetween(ArrayList value) { this.LastSavedDateTimeBetween = value; return this; } public ArrayList getLastSavedDateTimeIn() { return LastSavedDateTimeIn; } public SO_CustomSettingValuesQuery setLastSavedDateTimeIn(ArrayList value) { this.LastSavedDateTimeIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class SO_DocumentsQuery extends QueryDb implements IReturn> { public String RecID = null; public String RecIDStartsWith = null; public String RecIDEndsWith = null; public String RecIDContains = null; public String RecIDLike = null; public ArrayList RecIDBetween = null; public ArrayList RecIDIn = null; public String InvoiceID = null; public String InvoiceIDStartsWith = null; public String InvoiceIDEndsWith = null; public String InvoiceIDContains = null; public String InvoiceIDLike = null; public ArrayList InvoiceIDBetween = null; public ArrayList InvoiceIDIn = null; public String DocumentTypeID = null; public String DocumentTypeIDStartsWith = null; public String DocumentTypeIDEndsWith = null; public String DocumentTypeIDContains = null; public String DocumentTypeIDLike = null; public ArrayList DocumentTypeIDBetween = null; public ArrayList DocumentTypeIDIn = null; public Date LastSavedDateTime = null; public Date LastSavedDateTimeGreaterThanOrEqualTo = null; public Date LastSavedDateTimeGreaterThan = null; public Date LastSavedDateTimeLessThan = null; public Date LastSavedDateTimeLessThanOrEqualTo = null; public Date LastSavedDateTimeNotEqualTo = null; public ArrayList LastSavedDateTimeBetween = null; public ArrayList LastSavedDateTimeIn = null; public String LastSavedByStaffID = null; public String LastSavedByStaffIDStartsWith = null; public String LastSavedByStaffIDEndsWith = null; public String LastSavedByStaffIDContains = null; public String LastSavedByStaffIDLike = null; public ArrayList LastSavedByStaffIDBetween = null; public ArrayList LastSavedByStaffIDIn = null; public ArrayList FileBinary = null; public String Description = null; public String DescriptionStartsWith = null; public String DescriptionEndsWith = null; public String DescriptionContains = null; public String DescriptionLike = null; public ArrayList DescriptionBetween = null; public ArrayList DescriptionIn = null; public String PhysicalFileName = null; public String PhysicalFileNameStartsWith = null; public String PhysicalFileNameEndsWith = null; public String PhysicalFileNameContains = null; public String PhysicalFileNameLike = null; public ArrayList PhysicalFileNameBetween = null; public ArrayList PhysicalFileNameIn = null; public Integer ItemNo = null; public Integer ItemNoGreaterThanOrEqualTo = null; public Integer ItemNoGreaterThan = null; public Integer ItemNoLessThan = null; public Integer ItemNoLessThanOrEqualTo = null; public Integer ItemNoNotEqualTo = null; public ArrayList ItemNoBetween = null; public ArrayList ItemNoIn = null; public String getRecID() { return RecID; } public SO_DocumentsQuery setRecID(String value) { this.RecID = value; return this; } public String getRecIDStartsWith() { return RecIDStartsWith; } public SO_DocumentsQuery setRecIDStartsWith(String value) { this.RecIDStartsWith = value; return this; } public String getRecIDEndsWith() { return RecIDEndsWith; } public SO_DocumentsQuery setRecIDEndsWith(String value) { this.RecIDEndsWith = value; return this; } public String getRecIDContains() { return RecIDContains; } public SO_DocumentsQuery setRecIDContains(String value) { this.RecIDContains = value; return this; } public String getRecIDLike() { return RecIDLike; } public SO_DocumentsQuery setRecIDLike(String value) { this.RecIDLike = value; return this; } public ArrayList getRecIDBetween() { return RecIDBetween; } public SO_DocumentsQuery setRecIDBetween(ArrayList value) { this.RecIDBetween = value; return this; } public ArrayList getRecIDIn() { return RecIDIn; } public SO_DocumentsQuery setRecIDIn(ArrayList value) { this.RecIDIn = value; return this; } public String getInvoiceID() { return InvoiceID; } public SO_DocumentsQuery setInvoiceID(String value) { this.InvoiceID = value; return this; } public String getInvoiceIDStartsWith() { return InvoiceIDStartsWith; } public SO_DocumentsQuery setInvoiceIDStartsWith(String value) { this.InvoiceIDStartsWith = value; return this; } public String getInvoiceIDEndsWith() { return InvoiceIDEndsWith; } public SO_DocumentsQuery setInvoiceIDEndsWith(String value) { this.InvoiceIDEndsWith = value; return this; } public String getInvoiceIDContains() { return InvoiceIDContains; } public SO_DocumentsQuery setInvoiceIDContains(String value) { this.InvoiceIDContains = value; return this; } public String getInvoiceIDLike() { return InvoiceIDLike; } public SO_DocumentsQuery setInvoiceIDLike(String value) { this.InvoiceIDLike = value; return this; } public ArrayList getInvoiceIDBetween() { return InvoiceIDBetween; } public SO_DocumentsQuery setInvoiceIDBetween(ArrayList value) { this.InvoiceIDBetween = value; return this; } public ArrayList getInvoiceIDIn() { return InvoiceIDIn; } public SO_DocumentsQuery setInvoiceIDIn(ArrayList value) { this.InvoiceIDIn = value; return this; } public String getDocumentTypeID() { return DocumentTypeID; } public SO_DocumentsQuery setDocumentTypeID(String value) { this.DocumentTypeID = value; return this; } public String getDocumentTypeIDStartsWith() { return DocumentTypeIDStartsWith; } public SO_DocumentsQuery setDocumentTypeIDStartsWith(String value) { this.DocumentTypeIDStartsWith = value; return this; } public String getDocumentTypeIDEndsWith() { return DocumentTypeIDEndsWith; } public SO_DocumentsQuery setDocumentTypeIDEndsWith(String value) { this.DocumentTypeIDEndsWith = value; return this; } public String getDocumentTypeIDContains() { return DocumentTypeIDContains; } public SO_DocumentsQuery setDocumentTypeIDContains(String value) { this.DocumentTypeIDContains = value; return this; } public String getDocumentTypeIDLike() { return DocumentTypeIDLike; } public SO_DocumentsQuery setDocumentTypeIDLike(String value) { this.DocumentTypeIDLike = value; return this; } public ArrayList getDocumentTypeIDBetween() { return DocumentTypeIDBetween; } public SO_DocumentsQuery setDocumentTypeIDBetween(ArrayList value) { this.DocumentTypeIDBetween = value; return this; } public ArrayList getDocumentTypeIDIn() { return DocumentTypeIDIn; } public SO_DocumentsQuery setDocumentTypeIDIn(ArrayList value) { this.DocumentTypeIDIn = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public SO_DocumentsQuery setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getLastSavedDateTimeGreaterThanOrEqualTo() { return LastSavedDateTimeGreaterThanOrEqualTo; } public SO_DocumentsQuery setLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.LastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeGreaterThan() { return LastSavedDateTimeGreaterThan; } public SO_DocumentsQuery setLastSavedDateTimeGreaterThan(Date value) { this.LastSavedDateTimeGreaterThan = value; return this; } public Date getLastSavedDateTimeLessThan() { return LastSavedDateTimeLessThan; } public SO_DocumentsQuery setLastSavedDateTimeLessThan(Date value) { this.LastSavedDateTimeLessThan = value; return this; } public Date getLastSavedDateTimeLessThanOrEqualTo() { return LastSavedDateTimeLessThanOrEqualTo; } public SO_DocumentsQuery setLastSavedDateTimeLessThanOrEqualTo(Date value) { this.LastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeNotEqualTo() { return LastSavedDateTimeNotEqualTo; } public SO_DocumentsQuery setLastSavedDateTimeNotEqualTo(Date value) { this.LastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getLastSavedDateTimeBetween() { return LastSavedDateTimeBetween; } public SO_DocumentsQuery setLastSavedDateTimeBetween(ArrayList value) { this.LastSavedDateTimeBetween = value; return this; } public ArrayList getLastSavedDateTimeIn() { return LastSavedDateTimeIn; } public SO_DocumentsQuery setLastSavedDateTimeIn(ArrayList value) { this.LastSavedDateTimeIn = value; return this; } public String getLastSavedByStaffID() { return LastSavedByStaffID; } public SO_DocumentsQuery setLastSavedByStaffID(String value) { this.LastSavedByStaffID = value; return this; } public String getLastSavedByStaffIDStartsWith() { return LastSavedByStaffIDStartsWith; } public SO_DocumentsQuery setLastSavedByStaffIDStartsWith(String value) { this.LastSavedByStaffIDStartsWith = value; return this; } public String getLastSavedByStaffIDEndsWith() { return LastSavedByStaffIDEndsWith; } public SO_DocumentsQuery setLastSavedByStaffIDEndsWith(String value) { this.LastSavedByStaffIDEndsWith = value; return this; } public String getLastSavedByStaffIDContains() { return LastSavedByStaffIDContains; } public SO_DocumentsQuery setLastSavedByStaffIDContains(String value) { this.LastSavedByStaffIDContains = value; return this; } public String getLastSavedByStaffIDLike() { return LastSavedByStaffIDLike; } public SO_DocumentsQuery setLastSavedByStaffIDLike(String value) { this.LastSavedByStaffIDLike = value; return this; } public ArrayList getLastSavedByStaffIDBetween() { return LastSavedByStaffIDBetween; } public SO_DocumentsQuery setLastSavedByStaffIDBetween(ArrayList value) { this.LastSavedByStaffIDBetween = value; return this; } public ArrayList getLastSavedByStaffIDIn() { return LastSavedByStaffIDIn; } public SO_DocumentsQuery setLastSavedByStaffIDIn(ArrayList value) { this.LastSavedByStaffIDIn = value; return this; } public ArrayList getFileBinary() { return FileBinary; } public SO_DocumentsQuery setFileBinary(ArrayList value) { this.FileBinary = value; return this; } public String getDescription() { return Description; } public SO_DocumentsQuery setDescription(String value) { this.Description = value; return this; } public String getDescriptionStartsWith() { return DescriptionStartsWith; } public SO_DocumentsQuery setDescriptionStartsWith(String value) { this.DescriptionStartsWith = value; return this; } public String getDescriptionEndsWith() { return DescriptionEndsWith; } public SO_DocumentsQuery setDescriptionEndsWith(String value) { this.DescriptionEndsWith = value; return this; } public String getDescriptionContains() { return DescriptionContains; } public SO_DocumentsQuery setDescriptionContains(String value) { this.DescriptionContains = value; return this; } public String getDescriptionLike() { return DescriptionLike; } public SO_DocumentsQuery setDescriptionLike(String value) { this.DescriptionLike = value; return this; } public ArrayList getDescriptionBetween() { return DescriptionBetween; } public SO_DocumentsQuery setDescriptionBetween(ArrayList value) { this.DescriptionBetween = value; return this; } public ArrayList getDescriptionIn() { return DescriptionIn; } public SO_DocumentsQuery setDescriptionIn(ArrayList value) { this.DescriptionIn = value; return this; } public String getPhysicalFileName() { return PhysicalFileName; } public SO_DocumentsQuery setPhysicalFileName(String value) { this.PhysicalFileName = value; return this; } public String getPhysicalFileNameStartsWith() { return PhysicalFileNameStartsWith; } public SO_DocumentsQuery setPhysicalFileNameStartsWith(String value) { this.PhysicalFileNameStartsWith = value; return this; } public String getPhysicalFileNameEndsWith() { return PhysicalFileNameEndsWith; } public SO_DocumentsQuery setPhysicalFileNameEndsWith(String value) { this.PhysicalFileNameEndsWith = value; return this; } public String getPhysicalFileNameContains() { return PhysicalFileNameContains; } public SO_DocumentsQuery setPhysicalFileNameContains(String value) { this.PhysicalFileNameContains = value; return this; } public String getPhysicalFileNameLike() { return PhysicalFileNameLike; } public SO_DocumentsQuery setPhysicalFileNameLike(String value) { this.PhysicalFileNameLike = value; return this; } public ArrayList getPhysicalFileNameBetween() { return PhysicalFileNameBetween; } public SO_DocumentsQuery setPhysicalFileNameBetween(ArrayList value) { this.PhysicalFileNameBetween = value; return this; } public ArrayList getPhysicalFileNameIn() { return PhysicalFileNameIn; } public SO_DocumentsQuery setPhysicalFileNameIn(ArrayList value) { this.PhysicalFileNameIn = value; return this; } public Integer getItemNo() { return ItemNo; } public SO_DocumentsQuery setItemNo(Integer value) { this.ItemNo = value; return this; } public Integer getItemNoGreaterThanOrEqualTo() { return ItemNoGreaterThanOrEqualTo; } public SO_DocumentsQuery setItemNoGreaterThanOrEqualTo(Integer value) { this.ItemNoGreaterThanOrEqualTo = value; return this; } public Integer getItemNoGreaterThan() { return ItemNoGreaterThan; } public SO_DocumentsQuery setItemNoGreaterThan(Integer value) { this.ItemNoGreaterThan = value; return this; } public Integer getItemNoLessThan() { return ItemNoLessThan; } public SO_DocumentsQuery setItemNoLessThan(Integer value) { this.ItemNoLessThan = value; return this; } public Integer getItemNoLessThanOrEqualTo() { return ItemNoLessThanOrEqualTo; } public SO_DocumentsQuery setItemNoLessThanOrEqualTo(Integer value) { this.ItemNoLessThanOrEqualTo = value; return this; } public Integer getItemNoNotEqualTo() { return ItemNoNotEqualTo; } public SO_DocumentsQuery setItemNoNotEqualTo(Integer value) { this.ItemNoNotEqualTo = value; return this; } public ArrayList getItemNoBetween() { return ItemNoBetween; } public SO_DocumentsQuery setItemNoBetween(ArrayList value) { this.ItemNoBetween = value; return this; } public ArrayList getItemNoIn() { return ItemNoIn; } public SO_DocumentsQuery setItemNoIn(ArrayList value) { this.ItemNoIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class SO_EDIMainQuery extends QueryDb implements IReturn> { public String InvoiceID = null; public String InvoiceIDStartsWith = null; public String InvoiceIDEndsWith = null; public String InvoiceIDContains = null; public String InvoiceIDLike = null; public ArrayList InvoiceIDBetween = null; public ArrayList InvoiceIDIn = null; public Short EDIOrderType = null; public Short EDIOrderTypeGreaterThanOrEqualTo = null; public Short EDIOrderTypeGreaterThan = null; public Short EDIOrderTypeLessThan = null; public Short EDIOrderTypeLessThanOrEqualTo = null; public Short EDIOrderTypeNotEqualTo = null; public ArrayList EDIOrderTypeBetween = null; public ArrayList EDIOrderTypeIn = null; public String EDIAddress = null; public String EDIAddressStartsWith = null; public String EDIAddressEndsWith = null; public String EDIAddressContains = null; public String EDIAddressLike = null; public ArrayList EDIAddressBetween = null; public ArrayList EDIAddressIn = null; public Date EDIDeliverNotBeforeDate = null; public Date EDIDeliverNotBeforeDateGreaterThanOrEqualTo = null; public Date EDIDeliverNotBeforeDateGreaterThan = null; public Date EDIDeliverNotBeforeDateLessThan = null; public Date EDIDeliverNotBeforeDateLessThanOrEqualTo = null; public Date EDIDeliverNotBeforeDateNotEqualTo = null; public ArrayList EDIDeliverNotBeforeDateBetween = null; public ArrayList EDIDeliverNotBeforeDateIn = null; public Date EDIDeliverNotAfterDate = null; public Date EDIDeliverNotAfterDateGreaterThanOrEqualTo = null; public Date EDIDeliverNotAfterDateGreaterThan = null; public Date EDIDeliverNotAfterDateLessThan = null; public Date EDIDeliverNotAfterDateLessThanOrEqualTo = null; public Date EDIDeliverNotAfterDateNotEqualTo = null; public ArrayList EDIDeliverNotAfterDateBetween = null; public ArrayList EDIDeliverNotAfterDateIn = null; public String ReceiverEDIAddress = null; public String ReceiverEDIAddressStartsWith = null; public String ReceiverEDIAddressEndsWith = null; public String ReceiverEDIAddressContains = null; public String ReceiverEDIAddressLike = null; public ArrayList ReceiverEDIAddressBetween = null; public ArrayList ReceiverEDIAddressIn = null; public String VendorNumber = null; public String VendorNumberStartsWith = null; public String VendorNumberEndsWith = null; public String VendorNumberContains = null; public String VendorNumberLike = null; public ArrayList VendorNumberBetween = null; public ArrayList VendorNumberIn = null; public String BuyerNumber = null; public String BuyerNumberStartsWith = null; public String BuyerNumberEndsWith = null; public String BuyerNumberContains = null; public String BuyerNumberLike = null; public ArrayList BuyerNumberBetween = null; public ArrayList BuyerNumberIn = null; public String getInvoiceID() { return InvoiceID; } public SO_EDIMainQuery setInvoiceID(String value) { this.InvoiceID = value; return this; } public String getInvoiceIDStartsWith() { return InvoiceIDStartsWith; } public SO_EDIMainQuery setInvoiceIDStartsWith(String value) { this.InvoiceIDStartsWith = value; return this; } public String getInvoiceIDEndsWith() { return InvoiceIDEndsWith; } public SO_EDIMainQuery setInvoiceIDEndsWith(String value) { this.InvoiceIDEndsWith = value; return this; } public String getInvoiceIDContains() { return InvoiceIDContains; } public SO_EDIMainQuery setInvoiceIDContains(String value) { this.InvoiceIDContains = value; return this; } public String getInvoiceIDLike() { return InvoiceIDLike; } public SO_EDIMainQuery setInvoiceIDLike(String value) { this.InvoiceIDLike = value; return this; } public ArrayList getInvoiceIDBetween() { return InvoiceIDBetween; } public SO_EDIMainQuery setInvoiceIDBetween(ArrayList value) { this.InvoiceIDBetween = value; return this; } public ArrayList getInvoiceIDIn() { return InvoiceIDIn; } public SO_EDIMainQuery setInvoiceIDIn(ArrayList value) { this.InvoiceIDIn = value; return this; } public Short getEdiOrderType() { return EDIOrderType; } public SO_EDIMainQuery setEdiOrderType(Short value) { this.EDIOrderType = value; return this; } public Short getEdiOrderTypeGreaterThanOrEqualTo() { return EDIOrderTypeGreaterThanOrEqualTo; } public SO_EDIMainQuery setEdiOrderTypeGreaterThanOrEqualTo(Short value) { this.EDIOrderTypeGreaterThanOrEqualTo = value; return this; } public Short getEdiOrderTypeGreaterThan() { return EDIOrderTypeGreaterThan; } public SO_EDIMainQuery setEdiOrderTypeGreaterThan(Short value) { this.EDIOrderTypeGreaterThan = value; return this; } public Short getEdiOrderTypeLessThan() { return EDIOrderTypeLessThan; } public SO_EDIMainQuery setEdiOrderTypeLessThan(Short value) { this.EDIOrderTypeLessThan = value; return this; } public Short getEdiOrderTypeLessThanOrEqualTo() { return EDIOrderTypeLessThanOrEqualTo; } public SO_EDIMainQuery setEdiOrderTypeLessThanOrEqualTo(Short value) { this.EDIOrderTypeLessThanOrEqualTo = value; return this; } public Short getEdiOrderTypeNotEqualTo() { return EDIOrderTypeNotEqualTo; } public SO_EDIMainQuery setEdiOrderTypeNotEqualTo(Short value) { this.EDIOrderTypeNotEqualTo = value; return this; } public ArrayList getEdiOrderTypeBetween() { return EDIOrderTypeBetween; } public SO_EDIMainQuery setEdiOrderTypeBetween(ArrayList value) { this.EDIOrderTypeBetween = value; return this; } public ArrayList getEdiOrderTypeIn() { return EDIOrderTypeIn; } public SO_EDIMainQuery setEdiOrderTypeIn(ArrayList value) { this.EDIOrderTypeIn = value; return this; } public String getEdiAddress() { return EDIAddress; } public SO_EDIMainQuery setEdiAddress(String value) { this.EDIAddress = value; return this; } public String getEdiAddressStartsWith() { return EDIAddressStartsWith; } public SO_EDIMainQuery setEdiAddressStartsWith(String value) { this.EDIAddressStartsWith = value; return this; } public String getEdiAddressEndsWith() { return EDIAddressEndsWith; } public SO_EDIMainQuery setEdiAddressEndsWith(String value) { this.EDIAddressEndsWith = value; return this; } public String getEdiAddressContains() { return EDIAddressContains; } public SO_EDIMainQuery setEdiAddressContains(String value) { this.EDIAddressContains = value; return this; } public String getEdiAddressLike() { return EDIAddressLike; } public SO_EDIMainQuery setEdiAddressLike(String value) { this.EDIAddressLike = value; return this; } public ArrayList getEdiAddressBetween() { return EDIAddressBetween; } public SO_EDIMainQuery setEdiAddressBetween(ArrayList value) { this.EDIAddressBetween = value; return this; } public ArrayList getEdiAddressIn() { return EDIAddressIn; } public SO_EDIMainQuery setEdiAddressIn(ArrayList value) { this.EDIAddressIn = value; return this; } public Date getEdiDeliverNotBeforeDate() { return EDIDeliverNotBeforeDate; } public SO_EDIMainQuery setEdiDeliverNotBeforeDate(Date value) { this.EDIDeliverNotBeforeDate = value; return this; } public Date getEdiDeliverNotBeforeDateGreaterThanOrEqualTo() { return EDIDeliverNotBeforeDateGreaterThanOrEqualTo; } public SO_EDIMainQuery setEdiDeliverNotBeforeDateGreaterThanOrEqualTo(Date value) { this.EDIDeliverNotBeforeDateGreaterThanOrEqualTo = value; return this; } public Date getEdiDeliverNotBeforeDateGreaterThan() { return EDIDeliverNotBeforeDateGreaterThan; } public SO_EDIMainQuery setEdiDeliverNotBeforeDateGreaterThan(Date value) { this.EDIDeliverNotBeforeDateGreaterThan = value; return this; } public Date getEdiDeliverNotBeforeDateLessThan() { return EDIDeliverNotBeforeDateLessThan; } public SO_EDIMainQuery setEdiDeliverNotBeforeDateLessThan(Date value) { this.EDIDeliverNotBeforeDateLessThan = value; return this; } public Date getEdiDeliverNotBeforeDateLessThanOrEqualTo() { return EDIDeliverNotBeforeDateLessThanOrEqualTo; } public SO_EDIMainQuery setEdiDeliverNotBeforeDateLessThanOrEqualTo(Date value) { this.EDIDeliverNotBeforeDateLessThanOrEqualTo = value; return this; } public Date getEdiDeliverNotBeforeDateNotEqualTo() { return EDIDeliverNotBeforeDateNotEqualTo; } public SO_EDIMainQuery setEdiDeliverNotBeforeDateNotEqualTo(Date value) { this.EDIDeliverNotBeforeDateNotEqualTo = value; return this; } public ArrayList getEdiDeliverNotBeforeDateBetween() { return EDIDeliverNotBeforeDateBetween; } public SO_EDIMainQuery setEdiDeliverNotBeforeDateBetween(ArrayList value) { this.EDIDeliverNotBeforeDateBetween = value; return this; } public ArrayList getEdiDeliverNotBeforeDateIn() { return EDIDeliverNotBeforeDateIn; } public SO_EDIMainQuery setEdiDeliverNotBeforeDateIn(ArrayList value) { this.EDIDeliverNotBeforeDateIn = value; return this; } public Date getEdiDeliverNotAfterDate() { return EDIDeliverNotAfterDate; } public SO_EDIMainQuery setEdiDeliverNotAfterDate(Date value) { this.EDIDeliverNotAfterDate = value; return this; } public Date getEdiDeliverNotAfterDateGreaterThanOrEqualTo() { return EDIDeliverNotAfterDateGreaterThanOrEqualTo; } public SO_EDIMainQuery setEdiDeliverNotAfterDateGreaterThanOrEqualTo(Date value) { this.EDIDeliverNotAfterDateGreaterThanOrEqualTo = value; return this; } public Date getEdiDeliverNotAfterDateGreaterThan() { return EDIDeliverNotAfterDateGreaterThan; } public SO_EDIMainQuery setEdiDeliverNotAfterDateGreaterThan(Date value) { this.EDIDeliverNotAfterDateGreaterThan = value; return this; } public Date getEdiDeliverNotAfterDateLessThan() { return EDIDeliverNotAfterDateLessThan; } public SO_EDIMainQuery setEdiDeliverNotAfterDateLessThan(Date value) { this.EDIDeliverNotAfterDateLessThan = value; return this; } public Date getEdiDeliverNotAfterDateLessThanOrEqualTo() { return EDIDeliverNotAfterDateLessThanOrEqualTo; } public SO_EDIMainQuery setEdiDeliverNotAfterDateLessThanOrEqualTo(Date value) { this.EDIDeliverNotAfterDateLessThanOrEqualTo = value; return this; } public Date getEdiDeliverNotAfterDateNotEqualTo() { return EDIDeliverNotAfterDateNotEqualTo; } public SO_EDIMainQuery setEdiDeliverNotAfterDateNotEqualTo(Date value) { this.EDIDeliverNotAfterDateNotEqualTo = value; return this; } public ArrayList getEdiDeliverNotAfterDateBetween() { return EDIDeliverNotAfterDateBetween; } public SO_EDIMainQuery setEdiDeliverNotAfterDateBetween(ArrayList value) { this.EDIDeliverNotAfterDateBetween = value; return this; } public ArrayList getEdiDeliverNotAfterDateIn() { return EDIDeliverNotAfterDateIn; } public SO_EDIMainQuery setEdiDeliverNotAfterDateIn(ArrayList value) { this.EDIDeliverNotAfterDateIn = value; return this; } public String getReceiverEDIAddress() { return ReceiverEDIAddress; } public SO_EDIMainQuery setReceiverEDIAddress(String value) { this.ReceiverEDIAddress = value; return this; } public String getReceiverEDIAddressStartsWith() { return ReceiverEDIAddressStartsWith; } public SO_EDIMainQuery setReceiverEDIAddressStartsWith(String value) { this.ReceiverEDIAddressStartsWith = value; return this; } public String getReceiverEDIAddressEndsWith() { return ReceiverEDIAddressEndsWith; } public SO_EDIMainQuery setReceiverEDIAddressEndsWith(String value) { this.ReceiverEDIAddressEndsWith = value; return this; } public String getReceiverEDIAddressContains() { return ReceiverEDIAddressContains; } public SO_EDIMainQuery setReceiverEDIAddressContains(String value) { this.ReceiverEDIAddressContains = value; return this; } public String getReceiverEDIAddressLike() { return ReceiverEDIAddressLike; } public SO_EDIMainQuery setReceiverEDIAddressLike(String value) { this.ReceiverEDIAddressLike = value; return this; } public ArrayList getReceiverEDIAddressBetween() { return ReceiverEDIAddressBetween; } public SO_EDIMainQuery setReceiverEDIAddressBetween(ArrayList value) { this.ReceiverEDIAddressBetween = value; return this; } public ArrayList getReceiverEDIAddressIn() { return ReceiverEDIAddressIn; } public SO_EDIMainQuery setReceiverEDIAddressIn(ArrayList value) { this.ReceiverEDIAddressIn = value; return this; } public String getVendorNumber() { return VendorNumber; } public SO_EDIMainQuery setVendorNumber(String value) { this.VendorNumber = value; return this; } public String getVendorNumberStartsWith() { return VendorNumberStartsWith; } public SO_EDIMainQuery setVendorNumberStartsWith(String value) { this.VendorNumberStartsWith = value; return this; } public String getVendorNumberEndsWith() { return VendorNumberEndsWith; } public SO_EDIMainQuery setVendorNumberEndsWith(String value) { this.VendorNumberEndsWith = value; return this; } public String getVendorNumberContains() { return VendorNumberContains; } public SO_EDIMainQuery setVendorNumberContains(String value) { this.VendorNumberContains = value; return this; } public String getVendorNumberLike() { return VendorNumberLike; } public SO_EDIMainQuery setVendorNumberLike(String value) { this.VendorNumberLike = value; return this; } public ArrayList getVendorNumberBetween() { return VendorNumberBetween; } public SO_EDIMainQuery setVendorNumberBetween(ArrayList value) { this.VendorNumberBetween = value; return this; } public ArrayList getVendorNumberIn() { return VendorNumberIn; } public SO_EDIMainQuery setVendorNumberIn(ArrayList value) { this.VendorNumberIn = value; return this; } public String getBuyerNumber() { return BuyerNumber; } public SO_EDIMainQuery setBuyerNumber(String value) { this.BuyerNumber = value; return this; } public String getBuyerNumberStartsWith() { return BuyerNumberStartsWith; } public SO_EDIMainQuery setBuyerNumberStartsWith(String value) { this.BuyerNumberStartsWith = value; return this; } public String getBuyerNumberEndsWith() { return BuyerNumberEndsWith; } public SO_EDIMainQuery setBuyerNumberEndsWith(String value) { this.BuyerNumberEndsWith = value; return this; } public String getBuyerNumberContains() { return BuyerNumberContains; } public SO_EDIMainQuery setBuyerNumberContains(String value) { this.BuyerNumberContains = value; return this; } public String getBuyerNumberLike() { return BuyerNumberLike; } public SO_EDIMainQuery setBuyerNumberLike(String value) { this.BuyerNumberLike = value; return this; } public ArrayList getBuyerNumberBetween() { return BuyerNumberBetween; } public SO_EDIMainQuery setBuyerNumberBetween(ArrayList value) { this.BuyerNumberBetween = value; return this; } public ArrayList getBuyerNumberIn() { return BuyerNumberIn; } public SO_EDIMainQuery setBuyerNumberIn(ArrayList value) { this.BuyerNumberIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class SO_EmailLogQuery extends QueryDb implements IReturn> { public String EmailLogID = null; public String EmailLogIDStartsWith = null; public String EmailLogIDEndsWith = null; public String EmailLogIDContains = null; public String EmailLogIDLike = null; public ArrayList EmailLogIDBetween = null; public ArrayList EmailLogIDIn = null; public String InvoiceHistoryID = null; public String InvoiceHistoryIDStartsWith = null; public String InvoiceHistoryIDEndsWith = null; public String InvoiceHistoryIDContains = null; public String InvoiceHistoryIDLike = null; public ArrayList InvoiceHistoryIDBetween = null; public ArrayList InvoiceHistoryIDIn = null; public Date EmailDateTime = null; public Date EmailDateTimeGreaterThanOrEqualTo = null; public Date EmailDateTimeGreaterThan = null; public Date EmailDateTimeLessThan = null; public Date EmailDateTimeLessThanOrEqualTo = null; public Date EmailDateTimeNotEqualTo = null; public ArrayList EmailDateTimeBetween = null; public ArrayList EmailDateTimeIn = null; public String From = null; public String FromStartsWith = null; public String FromEndsWith = null; public String FromContains = null; public String FromLike = null; public ArrayList FromBetween = null; public ArrayList FromIn = null; public String To = null; public String ToStartsWith = null; public String ToEndsWith = null; public String ToContains = null; public String ToLike = null; public ArrayList ToBetween = null; public ArrayList ToIn = null; public String CC = null; public String CCStartsWith = null; public String CCEndsWith = null; public String CCContains = null; public String CCLike = null; public ArrayList CCBetween = null; public ArrayList CCIn = null; public String BCC = null; public String BCCStartsWith = null; public String BCCEndsWith = null; public String BCCContains = null; public String BCCLike = null; public ArrayList BCCBetween = null; public ArrayList BCCIn = null; public String Attachments = null; public String AttachmentsStartsWith = null; public String AttachmentsEndsWith = null; public String AttachmentsContains = null; public String AttachmentsLike = null; public ArrayList AttachmentsBetween = null; public ArrayList AttachmentsIn = null; public String Subject = null; public String SubjectStartsWith = null; public String SubjectEndsWith = null; public String SubjectContains = null; public String SubjectLike = null; public ArrayList SubjectBetween = null; public ArrayList SubjectIn = null; public String Body = null; public String BodyStartsWith = null; public String BodyEndsWith = null; public String BodyContains = null; public String BodyLike = null; public ArrayList BodyBetween = null; public ArrayList BodyIn = null; public String InvoiceID = null; public String InvoiceIDStartsWith = null; public String InvoiceIDEndsWith = null; public String InvoiceIDContains = null; public String InvoiceIDLike = null; public ArrayList InvoiceIDBetween = null; public ArrayList InvoiceIDIn = null; public String StaffID = null; public String StaffIDStartsWith = null; public String StaffIDEndsWith = null; public String StaffIDContains = null; public String StaffIDLike = null; public ArrayList StaffIDBetween = null; public ArrayList StaffIDIn = null; public String EM_Main_RecID = null; public String EM_Main_RecIDStartsWith = null; public String EM_Main_RecIDEndsWith = null; public String EM_Main_RecIDContains = null; public String EM_Main_RecIDLike = null; public ArrayList EM_Main_RecIDBetween = null; public ArrayList EM_Main_RecIDIn = null; public Boolean RequestReadReceipt = null; public Short ReportType = null; public Short ReportTypeGreaterThanOrEqualTo = null; public Short ReportTypeGreaterThan = null; public Short ReportTypeLessThan = null; public Short ReportTypeLessThanOrEqualTo = null; public Short ReportTypeNotEqualTo = null; public ArrayList ReportTypeBetween = null; public ArrayList ReportTypeIn = null; public String getEmailLogID() { return EmailLogID; } public SO_EmailLogQuery setEmailLogID(String value) { this.EmailLogID = value; return this; } public String getEmailLogIDStartsWith() { return EmailLogIDStartsWith; } public SO_EmailLogQuery setEmailLogIDStartsWith(String value) { this.EmailLogIDStartsWith = value; return this; } public String getEmailLogIDEndsWith() { return EmailLogIDEndsWith; } public SO_EmailLogQuery setEmailLogIDEndsWith(String value) { this.EmailLogIDEndsWith = value; return this; } public String getEmailLogIDContains() { return EmailLogIDContains; } public SO_EmailLogQuery setEmailLogIDContains(String value) { this.EmailLogIDContains = value; return this; } public String getEmailLogIDLike() { return EmailLogIDLike; } public SO_EmailLogQuery setEmailLogIDLike(String value) { this.EmailLogIDLike = value; return this; } public ArrayList getEmailLogIDBetween() { return EmailLogIDBetween; } public SO_EmailLogQuery setEmailLogIDBetween(ArrayList value) { this.EmailLogIDBetween = value; return this; } public ArrayList getEmailLogIDIn() { return EmailLogIDIn; } public SO_EmailLogQuery setEmailLogIDIn(ArrayList value) { this.EmailLogIDIn = value; return this; } public String getInvoiceHistoryID() { return InvoiceHistoryID; } public SO_EmailLogQuery setInvoiceHistoryID(String value) { this.InvoiceHistoryID = value; return this; } public String getInvoiceHistoryIDStartsWith() { return InvoiceHistoryIDStartsWith; } public SO_EmailLogQuery setInvoiceHistoryIDStartsWith(String value) { this.InvoiceHistoryIDStartsWith = value; return this; } public String getInvoiceHistoryIDEndsWith() { return InvoiceHistoryIDEndsWith; } public SO_EmailLogQuery setInvoiceHistoryIDEndsWith(String value) { this.InvoiceHistoryIDEndsWith = value; return this; } public String getInvoiceHistoryIDContains() { return InvoiceHistoryIDContains; } public SO_EmailLogQuery setInvoiceHistoryIDContains(String value) { this.InvoiceHistoryIDContains = value; return this; } public String getInvoiceHistoryIDLike() { return InvoiceHistoryIDLike; } public SO_EmailLogQuery setInvoiceHistoryIDLike(String value) { this.InvoiceHistoryIDLike = value; return this; } public ArrayList getInvoiceHistoryIDBetween() { return InvoiceHistoryIDBetween; } public SO_EmailLogQuery setInvoiceHistoryIDBetween(ArrayList value) { this.InvoiceHistoryIDBetween = value; return this; } public ArrayList getInvoiceHistoryIDIn() { return InvoiceHistoryIDIn; } public SO_EmailLogQuery setInvoiceHistoryIDIn(ArrayList value) { this.InvoiceHistoryIDIn = value; return this; } public Date getEmailDateTime() { return EmailDateTime; } public SO_EmailLogQuery setEmailDateTime(Date value) { this.EmailDateTime = value; return this; } public Date getEmailDateTimeGreaterThanOrEqualTo() { return EmailDateTimeGreaterThanOrEqualTo; } public SO_EmailLogQuery setEmailDateTimeGreaterThanOrEqualTo(Date value) { this.EmailDateTimeGreaterThanOrEqualTo = value; return this; } public Date getEmailDateTimeGreaterThan() { return EmailDateTimeGreaterThan; } public SO_EmailLogQuery setEmailDateTimeGreaterThan(Date value) { this.EmailDateTimeGreaterThan = value; return this; } public Date getEmailDateTimeLessThan() { return EmailDateTimeLessThan; } public SO_EmailLogQuery setEmailDateTimeLessThan(Date value) { this.EmailDateTimeLessThan = value; return this; } public Date getEmailDateTimeLessThanOrEqualTo() { return EmailDateTimeLessThanOrEqualTo; } public SO_EmailLogQuery setEmailDateTimeLessThanOrEqualTo(Date value) { this.EmailDateTimeLessThanOrEqualTo = value; return this; } public Date getEmailDateTimeNotEqualTo() { return EmailDateTimeNotEqualTo; } public SO_EmailLogQuery setEmailDateTimeNotEqualTo(Date value) { this.EmailDateTimeNotEqualTo = value; return this; } public ArrayList getEmailDateTimeBetween() { return EmailDateTimeBetween; } public SO_EmailLogQuery setEmailDateTimeBetween(ArrayList value) { this.EmailDateTimeBetween = value; return this; } public ArrayList getEmailDateTimeIn() { return EmailDateTimeIn; } public SO_EmailLogQuery setEmailDateTimeIn(ArrayList value) { this.EmailDateTimeIn = value; return this; } public String getFrom() { return From; } public SO_EmailLogQuery setFrom(String value) { this.From = value; return this; } public String getFromStartsWith() { return FromStartsWith; } public SO_EmailLogQuery setFromStartsWith(String value) { this.FromStartsWith = value; return this; } public String getFromEndsWith() { return FromEndsWith; } public SO_EmailLogQuery setFromEndsWith(String value) { this.FromEndsWith = value; return this; } public String getFromContains() { return FromContains; } public SO_EmailLogQuery setFromContains(String value) { this.FromContains = value; return this; } public String getFromLike() { return FromLike; } public SO_EmailLogQuery setFromLike(String value) { this.FromLike = value; return this; } public ArrayList getFromBetween() { return FromBetween; } public SO_EmailLogQuery setFromBetween(ArrayList value) { this.FromBetween = value; return this; } public ArrayList getFromIn() { return FromIn; } public SO_EmailLogQuery setFromIn(ArrayList value) { this.FromIn = value; return this; } public String getTo() { return To; } public SO_EmailLogQuery setTo(String value) { this.To = value; return this; } public String getToStartsWith() { return ToStartsWith; } public SO_EmailLogQuery setToStartsWith(String value) { this.ToStartsWith = value; return this; } public String getToEndsWith() { return ToEndsWith; } public SO_EmailLogQuery setToEndsWith(String value) { this.ToEndsWith = value; return this; } public String getToContains() { return ToContains; } public SO_EmailLogQuery setToContains(String value) { this.ToContains = value; return this; } public String getToLike() { return ToLike; } public SO_EmailLogQuery setToLike(String value) { this.ToLike = value; return this; } public ArrayList getToBetween() { return ToBetween; } public SO_EmailLogQuery setToBetween(ArrayList value) { this.ToBetween = value; return this; } public ArrayList getToIn() { return ToIn; } public SO_EmailLogQuery setToIn(ArrayList value) { this.ToIn = value; return this; } public String getCc() { return CC; } public SO_EmailLogQuery setCc(String value) { this.CC = value; return this; } public String getCcStartsWith() { return CCStartsWith; } public SO_EmailLogQuery setCcStartsWith(String value) { this.CCStartsWith = value; return this; } public String getCcEndsWith() { return CCEndsWith; } public SO_EmailLogQuery setCcEndsWith(String value) { this.CCEndsWith = value; return this; } public String getCcContains() { return CCContains; } public SO_EmailLogQuery setCcContains(String value) { this.CCContains = value; return this; } public String getCcLike() { return CCLike; } public SO_EmailLogQuery setCcLike(String value) { this.CCLike = value; return this; } public ArrayList getCcBetween() { return CCBetween; } public SO_EmailLogQuery setCcBetween(ArrayList value) { this.CCBetween = value; return this; } public ArrayList getCcIn() { return CCIn; } public SO_EmailLogQuery setCcIn(ArrayList value) { this.CCIn = value; return this; } public String getBcc() { return BCC; } public SO_EmailLogQuery setBcc(String value) { this.BCC = value; return this; } public String getBccStartsWith() { return BCCStartsWith; } public SO_EmailLogQuery setBccStartsWith(String value) { this.BCCStartsWith = value; return this; } public String getBccEndsWith() { return BCCEndsWith; } public SO_EmailLogQuery setBccEndsWith(String value) { this.BCCEndsWith = value; return this; } public String getBccContains() { return BCCContains; } public SO_EmailLogQuery setBccContains(String value) { this.BCCContains = value; return this; } public String getBccLike() { return BCCLike; } public SO_EmailLogQuery setBccLike(String value) { this.BCCLike = value; return this; } public ArrayList getBccBetween() { return BCCBetween; } public SO_EmailLogQuery setBccBetween(ArrayList value) { this.BCCBetween = value; return this; } public ArrayList getBccIn() { return BCCIn; } public SO_EmailLogQuery setBccIn(ArrayList value) { this.BCCIn = value; return this; } public String getAttachments() { return Attachments; } public SO_EmailLogQuery setAttachments(String value) { this.Attachments = value; return this; } public String getAttachmentsStartsWith() { return AttachmentsStartsWith; } public SO_EmailLogQuery setAttachmentsStartsWith(String value) { this.AttachmentsStartsWith = value; return this; } public String getAttachmentsEndsWith() { return AttachmentsEndsWith; } public SO_EmailLogQuery setAttachmentsEndsWith(String value) { this.AttachmentsEndsWith = value; return this; } public String getAttachmentsContains() { return AttachmentsContains; } public SO_EmailLogQuery setAttachmentsContains(String value) { this.AttachmentsContains = value; return this; } public String getAttachmentsLike() { return AttachmentsLike; } public SO_EmailLogQuery setAttachmentsLike(String value) { this.AttachmentsLike = value; return this; } public ArrayList getAttachmentsBetween() { return AttachmentsBetween; } public SO_EmailLogQuery setAttachmentsBetween(ArrayList value) { this.AttachmentsBetween = value; return this; } public ArrayList getAttachmentsIn() { return AttachmentsIn; } public SO_EmailLogQuery setAttachmentsIn(ArrayList value) { this.AttachmentsIn = value; return this; } public String getSubject() { return Subject; } public SO_EmailLogQuery setSubject(String value) { this.Subject = value; return this; } public String getSubjectStartsWith() { return SubjectStartsWith; } public SO_EmailLogQuery setSubjectStartsWith(String value) { this.SubjectStartsWith = value; return this; } public String getSubjectEndsWith() { return SubjectEndsWith; } public SO_EmailLogQuery setSubjectEndsWith(String value) { this.SubjectEndsWith = value; return this; } public String getSubjectContains() { return SubjectContains; } public SO_EmailLogQuery setSubjectContains(String value) { this.SubjectContains = value; return this; } public String getSubjectLike() { return SubjectLike; } public SO_EmailLogQuery setSubjectLike(String value) { this.SubjectLike = value; return this; } public ArrayList getSubjectBetween() { return SubjectBetween; } public SO_EmailLogQuery setSubjectBetween(ArrayList value) { this.SubjectBetween = value; return this; } public ArrayList getSubjectIn() { return SubjectIn; } public SO_EmailLogQuery setSubjectIn(ArrayList value) { this.SubjectIn = value; return this; } public String getBody() { return Body; } public SO_EmailLogQuery setBody(String value) { this.Body = value; return this; } public String getBodyStartsWith() { return BodyStartsWith; } public SO_EmailLogQuery setBodyStartsWith(String value) { this.BodyStartsWith = value; return this; } public String getBodyEndsWith() { return BodyEndsWith; } public SO_EmailLogQuery setBodyEndsWith(String value) { this.BodyEndsWith = value; return this; } public String getBodyContains() { return BodyContains; } public SO_EmailLogQuery setBodyContains(String value) { this.BodyContains = value; return this; } public String getBodyLike() { return BodyLike; } public SO_EmailLogQuery setBodyLike(String value) { this.BodyLike = value; return this; } public ArrayList getBodyBetween() { return BodyBetween; } public SO_EmailLogQuery setBodyBetween(ArrayList value) { this.BodyBetween = value; return this; } public ArrayList getBodyIn() { return BodyIn; } public SO_EmailLogQuery setBodyIn(ArrayList value) { this.BodyIn = value; return this; } public String getInvoiceID() { return InvoiceID; } public SO_EmailLogQuery setInvoiceID(String value) { this.InvoiceID = value; return this; } public String getInvoiceIDStartsWith() { return InvoiceIDStartsWith; } public SO_EmailLogQuery setInvoiceIDStartsWith(String value) { this.InvoiceIDStartsWith = value; return this; } public String getInvoiceIDEndsWith() { return InvoiceIDEndsWith; } public SO_EmailLogQuery setInvoiceIDEndsWith(String value) { this.InvoiceIDEndsWith = value; return this; } public String getInvoiceIDContains() { return InvoiceIDContains; } public SO_EmailLogQuery setInvoiceIDContains(String value) { this.InvoiceIDContains = value; return this; } public String getInvoiceIDLike() { return InvoiceIDLike; } public SO_EmailLogQuery setInvoiceIDLike(String value) { this.InvoiceIDLike = value; return this; } public ArrayList getInvoiceIDBetween() { return InvoiceIDBetween; } public SO_EmailLogQuery setInvoiceIDBetween(ArrayList value) { this.InvoiceIDBetween = value; return this; } public ArrayList getInvoiceIDIn() { return InvoiceIDIn; } public SO_EmailLogQuery setInvoiceIDIn(ArrayList value) { this.InvoiceIDIn = value; return this; } public String getStaffID() { return StaffID; } public SO_EmailLogQuery setStaffID(String value) { this.StaffID = value; return this; } public String getStaffIDStartsWith() { return StaffIDStartsWith; } public SO_EmailLogQuery setStaffIDStartsWith(String value) { this.StaffIDStartsWith = value; return this; } public String getStaffIDEndsWith() { return StaffIDEndsWith; } public SO_EmailLogQuery setStaffIDEndsWith(String value) { this.StaffIDEndsWith = value; return this; } public String getStaffIDContains() { return StaffIDContains; } public SO_EmailLogQuery setStaffIDContains(String value) { this.StaffIDContains = value; return this; } public String getStaffIDLike() { return StaffIDLike; } public SO_EmailLogQuery setStaffIDLike(String value) { this.StaffIDLike = value; return this; } public ArrayList getStaffIDBetween() { return StaffIDBetween; } public SO_EmailLogQuery setStaffIDBetween(ArrayList value) { this.StaffIDBetween = value; return this; } public ArrayList getStaffIDIn() { return StaffIDIn; } public SO_EmailLogQuery setStaffIDIn(ArrayList value) { this.StaffIDIn = value; return this; } public String getEmMainRecID() { return EM_Main_RecID; } public SO_EmailLogQuery setEmMainRecID(String value) { this.EM_Main_RecID = value; return this; } public String getEmMainRecIDStartsWith() { return EM_Main_RecIDStartsWith; } public SO_EmailLogQuery setEmMainRecIDStartsWith(String value) { this.EM_Main_RecIDStartsWith = value; return this; } public String getEmMainRecIDEndsWith() { return EM_Main_RecIDEndsWith; } public SO_EmailLogQuery setEmMainRecIDEndsWith(String value) { this.EM_Main_RecIDEndsWith = value; return this; } public String getEmMainRecIDContains() { return EM_Main_RecIDContains; } public SO_EmailLogQuery setEmMainRecIDContains(String value) { this.EM_Main_RecIDContains = value; return this; } public String getEmMainRecIDLike() { return EM_Main_RecIDLike; } public SO_EmailLogQuery setEmMainRecIDLike(String value) { this.EM_Main_RecIDLike = value; return this; } public ArrayList getEmMainRecIDBetween() { return EM_Main_RecIDBetween; } public SO_EmailLogQuery setEmMainRecIDBetween(ArrayList value) { this.EM_Main_RecIDBetween = value; return this; } public ArrayList getEmMainRecIDIn() { return EM_Main_RecIDIn; } public SO_EmailLogQuery setEmMainRecIDIn(ArrayList value) { this.EM_Main_RecIDIn = value; return this; } public Boolean isRequestReadReceipt() { return RequestReadReceipt; } public SO_EmailLogQuery setRequestReadReceipt(Boolean value) { this.RequestReadReceipt = value; return this; } public Short getReportType() { return ReportType; } public SO_EmailLogQuery setReportType(Short value) { this.ReportType = value; return this; } public Short getReportTypeGreaterThanOrEqualTo() { return ReportTypeGreaterThanOrEqualTo; } public SO_EmailLogQuery setReportTypeGreaterThanOrEqualTo(Short value) { this.ReportTypeGreaterThanOrEqualTo = value; return this; } public Short getReportTypeGreaterThan() { return ReportTypeGreaterThan; } public SO_EmailLogQuery setReportTypeGreaterThan(Short value) { this.ReportTypeGreaterThan = value; return this; } public Short getReportTypeLessThan() { return ReportTypeLessThan; } public SO_EmailLogQuery setReportTypeLessThan(Short value) { this.ReportTypeLessThan = value; return this; } public Short getReportTypeLessThanOrEqualTo() { return ReportTypeLessThanOrEqualTo; } public SO_EmailLogQuery setReportTypeLessThanOrEqualTo(Short value) { this.ReportTypeLessThanOrEqualTo = value; return this; } public Short getReportTypeNotEqualTo() { return ReportTypeNotEqualTo; } public SO_EmailLogQuery setReportTypeNotEqualTo(Short value) { this.ReportTypeNotEqualTo = value; return this; } public ArrayList getReportTypeBetween() { return ReportTypeBetween; } public SO_EmailLogQuery setReportTypeBetween(ArrayList value) { this.ReportTypeBetween = value; return this; } public ArrayList getReportTypeIn() { return ReportTypeIn; } public SO_EmailLogQuery setReportTypeIn(ArrayList value) { this.ReportTypeIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class SO_ExportLinesQuery extends QueryDb implements IReturn> { public String RecID = null; public String RecIDStartsWith = null; public String RecIDEndsWith = null; public String RecIDContains = null; public String RecIDLike = null; public ArrayList RecIDBetween = null; public ArrayList RecIDIn = null; public String SO_ExportMain_RecID = null; public String SO_ExportMain_RecIDStartsWith = null; public String SO_ExportMain_RecIDEndsWith = null; public String SO_ExportMain_RecIDContains = null; public String SO_ExportMain_RecIDLike = null; public ArrayList SO_ExportMain_RecIDBetween = null; public ArrayList SO_ExportMain_RecIDIn = null; public Date LastSavedDateTime = null; public Date LastSavedDateTimeGreaterThanOrEqualTo = null; public Date LastSavedDateTimeGreaterThan = null; public Date LastSavedDateTimeLessThan = null; public Date LastSavedDateTimeLessThanOrEqualTo = null; public Date LastSavedDateTimeNotEqualTo = null; public ArrayList LastSavedDateTimeBetween = null; public ArrayList LastSavedDateTimeIn = null; public Integer ItemNo = null; public Integer ItemNoGreaterThanOrEqualTo = null; public Integer ItemNoGreaterThan = null; public Integer ItemNoLessThan = null; public Integer ItemNoLessThanOrEqualTo = null; public Integer ItemNoNotEqualTo = null; public ArrayList ItemNoBetween = null; public ArrayList ItemNoIn = null; public String SO_Main_InvoiceID = null; public String SO_Main_InvoiceIDStartsWith = null; public String SO_Main_InvoiceIDEndsWith = null; public String SO_Main_InvoiceIDContains = null; public String SO_Main_InvoiceIDLike = null; public ArrayList SO_Main_InvoiceIDBetween = null; public ArrayList SO_Main_InvoiceIDIn = null; public Boolean FlaggedForExport = null; public String SO_History_InvoiceHistoryID = null; public String SO_History_InvoiceHistoryIDStartsWith = null; public String SO_History_InvoiceHistoryIDEndsWith = null; public String SO_History_InvoiceHistoryIDContains = null; public String SO_History_InvoiceHistoryIDLike = null; public ArrayList SO_History_InvoiceHistoryIDBetween = null; public ArrayList SO_History_InvoiceHistoryIDIn = null; public ArrayList RowHash = null; public String getRecID() { return RecID; } public SO_ExportLinesQuery setRecID(String value) { this.RecID = value; return this; } public String getRecIDStartsWith() { return RecIDStartsWith; } public SO_ExportLinesQuery setRecIDStartsWith(String value) { this.RecIDStartsWith = value; return this; } public String getRecIDEndsWith() { return RecIDEndsWith; } public SO_ExportLinesQuery setRecIDEndsWith(String value) { this.RecIDEndsWith = value; return this; } public String getRecIDContains() { return RecIDContains; } public SO_ExportLinesQuery setRecIDContains(String value) { this.RecIDContains = value; return this; } public String getRecIDLike() { return RecIDLike; } public SO_ExportLinesQuery setRecIDLike(String value) { this.RecIDLike = value; return this; } public ArrayList getRecIDBetween() { return RecIDBetween; } public SO_ExportLinesQuery setRecIDBetween(ArrayList value) { this.RecIDBetween = value; return this; } public ArrayList getRecIDIn() { return RecIDIn; } public SO_ExportLinesQuery setRecIDIn(ArrayList value) { this.RecIDIn = value; return this; } public String getSoExportMainRecID() { return SO_ExportMain_RecID; } public SO_ExportLinesQuery setSoExportMainRecID(String value) { this.SO_ExportMain_RecID = value; return this; } public String getSoExportMainRecIDStartsWith() { return SO_ExportMain_RecIDStartsWith; } public SO_ExportLinesQuery setSoExportMainRecIDStartsWith(String value) { this.SO_ExportMain_RecIDStartsWith = value; return this; } public String getSoExportMainRecIDEndsWith() { return SO_ExportMain_RecIDEndsWith; } public SO_ExportLinesQuery setSoExportMainRecIDEndsWith(String value) { this.SO_ExportMain_RecIDEndsWith = value; return this; } public String getSoExportMainRecIDContains() { return SO_ExportMain_RecIDContains; } public SO_ExportLinesQuery setSoExportMainRecIDContains(String value) { this.SO_ExportMain_RecIDContains = value; return this; } public String getSoExportMainRecIDLike() { return SO_ExportMain_RecIDLike; } public SO_ExportLinesQuery setSoExportMainRecIDLike(String value) { this.SO_ExportMain_RecIDLike = value; return this; } public ArrayList getSoExportMainRecIDBetween() { return SO_ExportMain_RecIDBetween; } public SO_ExportLinesQuery setSoExportMainRecIDBetween(ArrayList value) { this.SO_ExportMain_RecIDBetween = value; return this; } public ArrayList getSoExportMainRecIDIn() { return SO_ExportMain_RecIDIn; } public SO_ExportLinesQuery setSoExportMainRecIDIn(ArrayList value) { this.SO_ExportMain_RecIDIn = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public SO_ExportLinesQuery setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getLastSavedDateTimeGreaterThanOrEqualTo() { return LastSavedDateTimeGreaterThanOrEqualTo; } public SO_ExportLinesQuery setLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.LastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeGreaterThan() { return LastSavedDateTimeGreaterThan; } public SO_ExportLinesQuery setLastSavedDateTimeGreaterThan(Date value) { this.LastSavedDateTimeGreaterThan = value; return this; } public Date getLastSavedDateTimeLessThan() { return LastSavedDateTimeLessThan; } public SO_ExportLinesQuery setLastSavedDateTimeLessThan(Date value) { this.LastSavedDateTimeLessThan = value; return this; } public Date getLastSavedDateTimeLessThanOrEqualTo() { return LastSavedDateTimeLessThanOrEqualTo; } public SO_ExportLinesQuery setLastSavedDateTimeLessThanOrEqualTo(Date value) { this.LastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeNotEqualTo() { return LastSavedDateTimeNotEqualTo; } public SO_ExportLinesQuery setLastSavedDateTimeNotEqualTo(Date value) { this.LastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getLastSavedDateTimeBetween() { return LastSavedDateTimeBetween; } public SO_ExportLinesQuery setLastSavedDateTimeBetween(ArrayList value) { this.LastSavedDateTimeBetween = value; return this; } public ArrayList getLastSavedDateTimeIn() { return LastSavedDateTimeIn; } public SO_ExportLinesQuery setLastSavedDateTimeIn(ArrayList value) { this.LastSavedDateTimeIn = value; return this; } public Integer getItemNo() { return ItemNo; } public SO_ExportLinesQuery setItemNo(Integer value) { this.ItemNo = value; return this; } public Integer getItemNoGreaterThanOrEqualTo() { return ItemNoGreaterThanOrEqualTo; } public SO_ExportLinesQuery setItemNoGreaterThanOrEqualTo(Integer value) { this.ItemNoGreaterThanOrEqualTo = value; return this; } public Integer getItemNoGreaterThan() { return ItemNoGreaterThan; } public SO_ExportLinesQuery setItemNoGreaterThan(Integer value) { this.ItemNoGreaterThan = value; return this; } public Integer getItemNoLessThan() { return ItemNoLessThan; } public SO_ExportLinesQuery setItemNoLessThan(Integer value) { this.ItemNoLessThan = value; return this; } public Integer getItemNoLessThanOrEqualTo() { return ItemNoLessThanOrEqualTo; } public SO_ExportLinesQuery setItemNoLessThanOrEqualTo(Integer value) { this.ItemNoLessThanOrEqualTo = value; return this; } public Integer getItemNoNotEqualTo() { return ItemNoNotEqualTo; } public SO_ExportLinesQuery setItemNoNotEqualTo(Integer value) { this.ItemNoNotEqualTo = value; return this; } public ArrayList getItemNoBetween() { return ItemNoBetween; } public SO_ExportLinesQuery setItemNoBetween(ArrayList value) { this.ItemNoBetween = value; return this; } public ArrayList getItemNoIn() { return ItemNoIn; } public SO_ExportLinesQuery setItemNoIn(ArrayList value) { this.ItemNoIn = value; return this; } public String getSoMainInvoiceID() { return SO_Main_InvoiceID; } public SO_ExportLinesQuery setSoMainInvoiceID(String value) { this.SO_Main_InvoiceID = value; return this; } public String getSoMainInvoiceIDStartsWith() { return SO_Main_InvoiceIDStartsWith; } public SO_ExportLinesQuery setSoMainInvoiceIDStartsWith(String value) { this.SO_Main_InvoiceIDStartsWith = value; return this; } public String getSoMainInvoiceIDEndsWith() { return SO_Main_InvoiceIDEndsWith; } public SO_ExportLinesQuery setSoMainInvoiceIDEndsWith(String value) { this.SO_Main_InvoiceIDEndsWith = value; return this; } public String getSoMainInvoiceIDContains() { return SO_Main_InvoiceIDContains; } public SO_ExportLinesQuery setSoMainInvoiceIDContains(String value) { this.SO_Main_InvoiceIDContains = value; return this; } public String getSoMainInvoiceIDLike() { return SO_Main_InvoiceIDLike; } public SO_ExportLinesQuery setSoMainInvoiceIDLike(String value) { this.SO_Main_InvoiceIDLike = value; return this; } public ArrayList getSoMainInvoiceIDBetween() { return SO_Main_InvoiceIDBetween; } public SO_ExportLinesQuery setSoMainInvoiceIDBetween(ArrayList value) { this.SO_Main_InvoiceIDBetween = value; return this; } public ArrayList getSoMainInvoiceIDIn() { return SO_Main_InvoiceIDIn; } public SO_ExportLinesQuery setSoMainInvoiceIDIn(ArrayList value) { this.SO_Main_InvoiceIDIn = value; return this; } public Boolean isFlaggedForExport() { return FlaggedForExport; } public SO_ExportLinesQuery setFlaggedForExport(Boolean value) { this.FlaggedForExport = value; return this; } public String getSoHistoryInvoiceHistoryID() { return SO_History_InvoiceHistoryID; } public SO_ExportLinesQuery setSoHistoryInvoiceHistoryID(String value) { this.SO_History_InvoiceHistoryID = value; return this; } public String getSoHistoryInvoiceHistoryIDStartsWith() { return SO_History_InvoiceHistoryIDStartsWith; } public SO_ExportLinesQuery setSoHistoryInvoiceHistoryIDStartsWith(String value) { this.SO_History_InvoiceHistoryIDStartsWith = value; return this; } public String getSoHistoryInvoiceHistoryIDEndsWith() { return SO_History_InvoiceHistoryIDEndsWith; } public SO_ExportLinesQuery setSoHistoryInvoiceHistoryIDEndsWith(String value) { this.SO_History_InvoiceHistoryIDEndsWith = value; return this; } public String getSoHistoryInvoiceHistoryIDContains() { return SO_History_InvoiceHistoryIDContains; } public SO_ExportLinesQuery setSoHistoryInvoiceHistoryIDContains(String value) { this.SO_History_InvoiceHistoryIDContains = value; return this; } public String getSoHistoryInvoiceHistoryIDLike() { return SO_History_InvoiceHistoryIDLike; } public SO_ExportLinesQuery setSoHistoryInvoiceHistoryIDLike(String value) { this.SO_History_InvoiceHistoryIDLike = value; return this; } public ArrayList getSoHistoryInvoiceHistoryIDBetween() { return SO_History_InvoiceHistoryIDBetween; } public SO_ExportLinesQuery setSoHistoryInvoiceHistoryIDBetween(ArrayList value) { this.SO_History_InvoiceHistoryIDBetween = value; return this; } public ArrayList getSoHistoryInvoiceHistoryIDIn() { return SO_History_InvoiceHistoryIDIn; } public SO_ExportLinesQuery setSoHistoryInvoiceHistoryIDIn(ArrayList value) { this.SO_History_InvoiceHistoryIDIn = value; return this; } public ArrayList getRowHash() { return RowHash; } public SO_ExportLinesQuery setRowHash(ArrayList value) { this.RowHash = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class SO_ExportMainQuery extends QueryDb implements IReturn> { public String RecID = null; public String RecIDStartsWith = null; public String RecIDEndsWith = null; public String RecIDContains = null; public String RecIDLike = null; public ArrayList RecIDBetween = null; public ArrayList RecIDIn = null; public Date LastSavedDateTime = null; public Date LastSavedDateTimeGreaterThanOrEqualTo = null; public Date LastSavedDateTimeGreaterThan = null; public Date LastSavedDateTimeLessThan = null; public Date LastSavedDateTimeLessThanOrEqualTo = null; public Date LastSavedDateTimeNotEqualTo = null; public ArrayList LastSavedDateTimeBetween = null; public ArrayList LastSavedDateTimeIn = null; public String BatchNo = null; public String BatchNoStartsWith = null; public String BatchNoEndsWith = null; public String BatchNoContains = null; public String BatchNoLike = null; public ArrayList BatchNoBetween = null; public ArrayList BatchNoIn = null; public Date DateCreated = null; public Date DateCreatedGreaterThanOrEqualTo = null; public Date DateCreatedGreaterThan = null; public Date DateCreatedLessThan = null; public Date DateCreatedLessThanOrEqualTo = null; public Date DateCreatedNotEqualTo = null; public ArrayList DateCreatedBetween = null; public ArrayList DateCreatedIn = null; public Date DateActivated = null; public Date DateActivatedGreaterThanOrEqualTo = null; public Date DateActivatedGreaterThan = null; public Date DateActivatedLessThan = null; public Date DateActivatedLessThanOrEqualTo = null; public Date DateActivatedNotEqualTo = null; public ArrayList DateActivatedBetween = null; public ArrayList DateActivatedIn = null; public String HR_Staff_StaffID = null; public String HR_Staff_StaffIDStartsWith = null; public String HR_Staff_StaffIDEndsWith = null; public String HR_Staff_StaffIDContains = null; public String HR_Staff_StaffIDLike = null; public ArrayList HR_Staff_StaffIDBetween = null; public ArrayList HR_Staff_StaffIDIn = null; public Short Status = null; public Short StatusGreaterThanOrEqualTo = null; public Short StatusGreaterThan = null; public Short StatusLessThan = null; public Short StatusLessThanOrEqualTo = null; public Short StatusNotEqualTo = null; public ArrayList StatusBetween = null; public ArrayList StatusIn = null; public String ExportFileNameAndPath = null; public String ExportFileNameAndPathStartsWith = null; public String ExportFileNameAndPathEndsWith = null; public String ExportFileNameAndPathContains = null; public String ExportFileNameAndPathLike = null; public ArrayList ExportFileNameAndPathBetween = null; public ArrayList ExportFileNameAndPathIn = null; public String getRecID() { return RecID; } public SO_ExportMainQuery setRecID(String value) { this.RecID = value; return this; } public String getRecIDStartsWith() { return RecIDStartsWith; } public SO_ExportMainQuery setRecIDStartsWith(String value) { this.RecIDStartsWith = value; return this; } public String getRecIDEndsWith() { return RecIDEndsWith; } public SO_ExportMainQuery setRecIDEndsWith(String value) { this.RecIDEndsWith = value; return this; } public String getRecIDContains() { return RecIDContains; } public SO_ExportMainQuery setRecIDContains(String value) { this.RecIDContains = value; return this; } public String getRecIDLike() { return RecIDLike; } public SO_ExportMainQuery setRecIDLike(String value) { this.RecIDLike = value; return this; } public ArrayList getRecIDBetween() { return RecIDBetween; } public SO_ExportMainQuery setRecIDBetween(ArrayList value) { this.RecIDBetween = value; return this; } public ArrayList getRecIDIn() { return RecIDIn; } public SO_ExportMainQuery setRecIDIn(ArrayList value) { this.RecIDIn = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public SO_ExportMainQuery setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getLastSavedDateTimeGreaterThanOrEqualTo() { return LastSavedDateTimeGreaterThanOrEqualTo; } public SO_ExportMainQuery setLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.LastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeGreaterThan() { return LastSavedDateTimeGreaterThan; } public SO_ExportMainQuery setLastSavedDateTimeGreaterThan(Date value) { this.LastSavedDateTimeGreaterThan = value; return this; } public Date getLastSavedDateTimeLessThan() { return LastSavedDateTimeLessThan; } public SO_ExportMainQuery setLastSavedDateTimeLessThan(Date value) { this.LastSavedDateTimeLessThan = value; return this; } public Date getLastSavedDateTimeLessThanOrEqualTo() { return LastSavedDateTimeLessThanOrEqualTo; } public SO_ExportMainQuery setLastSavedDateTimeLessThanOrEqualTo(Date value) { this.LastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeNotEqualTo() { return LastSavedDateTimeNotEqualTo; } public SO_ExportMainQuery setLastSavedDateTimeNotEqualTo(Date value) { this.LastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getLastSavedDateTimeBetween() { return LastSavedDateTimeBetween; } public SO_ExportMainQuery setLastSavedDateTimeBetween(ArrayList value) { this.LastSavedDateTimeBetween = value; return this; } public ArrayList getLastSavedDateTimeIn() { return LastSavedDateTimeIn; } public SO_ExportMainQuery setLastSavedDateTimeIn(ArrayList value) { this.LastSavedDateTimeIn = value; return this; } public String getBatchNo() { return BatchNo; } public SO_ExportMainQuery setBatchNo(String value) { this.BatchNo = value; return this; } public String getBatchNoStartsWith() { return BatchNoStartsWith; } public SO_ExportMainQuery setBatchNoStartsWith(String value) { this.BatchNoStartsWith = value; return this; } public String getBatchNoEndsWith() { return BatchNoEndsWith; } public SO_ExportMainQuery setBatchNoEndsWith(String value) { this.BatchNoEndsWith = value; return this; } public String getBatchNoContains() { return BatchNoContains; } public SO_ExportMainQuery setBatchNoContains(String value) { this.BatchNoContains = value; return this; } public String getBatchNoLike() { return BatchNoLike; } public SO_ExportMainQuery setBatchNoLike(String value) { this.BatchNoLike = value; return this; } public ArrayList getBatchNoBetween() { return BatchNoBetween; } public SO_ExportMainQuery setBatchNoBetween(ArrayList value) { this.BatchNoBetween = value; return this; } public ArrayList getBatchNoIn() { return BatchNoIn; } public SO_ExportMainQuery setBatchNoIn(ArrayList value) { this.BatchNoIn = value; return this; } public Date getDateCreated() { return DateCreated; } public SO_ExportMainQuery setDateCreated(Date value) { this.DateCreated = value; return this; } public Date getDateCreatedGreaterThanOrEqualTo() { return DateCreatedGreaterThanOrEqualTo; } public SO_ExportMainQuery setDateCreatedGreaterThanOrEqualTo(Date value) { this.DateCreatedGreaterThanOrEqualTo = value; return this; } public Date getDateCreatedGreaterThan() { return DateCreatedGreaterThan; } public SO_ExportMainQuery setDateCreatedGreaterThan(Date value) { this.DateCreatedGreaterThan = value; return this; } public Date getDateCreatedLessThan() { return DateCreatedLessThan; } public SO_ExportMainQuery setDateCreatedLessThan(Date value) { this.DateCreatedLessThan = value; return this; } public Date getDateCreatedLessThanOrEqualTo() { return DateCreatedLessThanOrEqualTo; } public SO_ExportMainQuery setDateCreatedLessThanOrEqualTo(Date value) { this.DateCreatedLessThanOrEqualTo = value; return this; } public Date getDateCreatedNotEqualTo() { return DateCreatedNotEqualTo; } public SO_ExportMainQuery setDateCreatedNotEqualTo(Date value) { this.DateCreatedNotEqualTo = value; return this; } public ArrayList getDateCreatedBetween() { return DateCreatedBetween; } public SO_ExportMainQuery setDateCreatedBetween(ArrayList value) { this.DateCreatedBetween = value; return this; } public ArrayList getDateCreatedIn() { return DateCreatedIn; } public SO_ExportMainQuery setDateCreatedIn(ArrayList value) { this.DateCreatedIn = value; return this; } public Date getDateActivated() { return DateActivated; } public SO_ExportMainQuery setDateActivated(Date value) { this.DateActivated = value; return this; } public Date getDateActivatedGreaterThanOrEqualTo() { return DateActivatedGreaterThanOrEqualTo; } public SO_ExportMainQuery setDateActivatedGreaterThanOrEqualTo(Date value) { this.DateActivatedGreaterThanOrEqualTo = value; return this; } public Date getDateActivatedGreaterThan() { return DateActivatedGreaterThan; } public SO_ExportMainQuery setDateActivatedGreaterThan(Date value) { this.DateActivatedGreaterThan = value; return this; } public Date getDateActivatedLessThan() { return DateActivatedLessThan; } public SO_ExportMainQuery setDateActivatedLessThan(Date value) { this.DateActivatedLessThan = value; return this; } public Date getDateActivatedLessThanOrEqualTo() { return DateActivatedLessThanOrEqualTo; } public SO_ExportMainQuery setDateActivatedLessThanOrEqualTo(Date value) { this.DateActivatedLessThanOrEqualTo = value; return this; } public Date getDateActivatedNotEqualTo() { return DateActivatedNotEqualTo; } public SO_ExportMainQuery setDateActivatedNotEqualTo(Date value) { this.DateActivatedNotEqualTo = value; return this; } public ArrayList getDateActivatedBetween() { return DateActivatedBetween; } public SO_ExportMainQuery setDateActivatedBetween(ArrayList value) { this.DateActivatedBetween = value; return this; } public ArrayList getDateActivatedIn() { return DateActivatedIn; } public SO_ExportMainQuery setDateActivatedIn(ArrayList value) { this.DateActivatedIn = value; return this; } public String getHrStaffStaffID() { return HR_Staff_StaffID; } public SO_ExportMainQuery setHrStaffStaffID(String value) { this.HR_Staff_StaffID = value; return this; } public String getHrStaffStaffIDStartsWith() { return HR_Staff_StaffIDStartsWith; } public SO_ExportMainQuery setHrStaffStaffIDStartsWith(String value) { this.HR_Staff_StaffIDStartsWith = value; return this; } public String getHrStaffStaffIDEndsWith() { return HR_Staff_StaffIDEndsWith; } public SO_ExportMainQuery setHrStaffStaffIDEndsWith(String value) { this.HR_Staff_StaffIDEndsWith = value; return this; } public String getHrStaffStaffIDContains() { return HR_Staff_StaffIDContains; } public SO_ExportMainQuery setHrStaffStaffIDContains(String value) { this.HR_Staff_StaffIDContains = value; return this; } public String getHrStaffStaffIDLike() { return HR_Staff_StaffIDLike; } public SO_ExportMainQuery setHrStaffStaffIDLike(String value) { this.HR_Staff_StaffIDLike = value; return this; } public ArrayList getHrStaffStaffIDBetween() { return HR_Staff_StaffIDBetween; } public SO_ExportMainQuery setHrStaffStaffIDBetween(ArrayList value) { this.HR_Staff_StaffIDBetween = value; return this; } public ArrayList getHrStaffStaffIDIn() { return HR_Staff_StaffIDIn; } public SO_ExportMainQuery setHrStaffStaffIDIn(ArrayList value) { this.HR_Staff_StaffIDIn = value; return this; } public Short getStatus() { return Status; } public SO_ExportMainQuery setStatus(Short value) { this.Status = value; return this; } public Short getStatusGreaterThanOrEqualTo() { return StatusGreaterThanOrEqualTo; } public SO_ExportMainQuery setStatusGreaterThanOrEqualTo(Short value) { this.StatusGreaterThanOrEqualTo = value; return this; } public Short getStatusGreaterThan() { return StatusGreaterThan; } public SO_ExportMainQuery setStatusGreaterThan(Short value) { this.StatusGreaterThan = value; return this; } public Short getStatusLessThan() { return StatusLessThan; } public SO_ExportMainQuery setStatusLessThan(Short value) { this.StatusLessThan = value; return this; } public Short getStatusLessThanOrEqualTo() { return StatusLessThanOrEqualTo; } public SO_ExportMainQuery setStatusLessThanOrEqualTo(Short value) { this.StatusLessThanOrEqualTo = value; return this; } public Short getStatusNotEqualTo() { return StatusNotEqualTo; } public SO_ExportMainQuery setStatusNotEqualTo(Short value) { this.StatusNotEqualTo = value; return this; } public ArrayList getStatusBetween() { return StatusBetween; } public SO_ExportMainQuery setStatusBetween(ArrayList value) { this.StatusBetween = value; return this; } public ArrayList getStatusIn() { return StatusIn; } public SO_ExportMainQuery setStatusIn(ArrayList value) { this.StatusIn = value; return this; } public String getExportFileNameAndPath() { return ExportFileNameAndPath; } public SO_ExportMainQuery setExportFileNameAndPath(String value) { this.ExportFileNameAndPath = value; return this; } public String getExportFileNameAndPathStartsWith() { return ExportFileNameAndPathStartsWith; } public SO_ExportMainQuery setExportFileNameAndPathStartsWith(String value) { this.ExportFileNameAndPathStartsWith = value; return this; } public String getExportFileNameAndPathEndsWith() { return ExportFileNameAndPathEndsWith; } public SO_ExportMainQuery setExportFileNameAndPathEndsWith(String value) { this.ExportFileNameAndPathEndsWith = value; return this; } public String getExportFileNameAndPathContains() { return ExportFileNameAndPathContains; } public SO_ExportMainQuery setExportFileNameAndPathContains(String value) { this.ExportFileNameAndPathContains = value; return this; } public String getExportFileNameAndPathLike() { return ExportFileNameAndPathLike; } public SO_ExportMainQuery setExportFileNameAndPathLike(String value) { this.ExportFileNameAndPathLike = value; return this; } public ArrayList getExportFileNameAndPathBetween() { return ExportFileNameAndPathBetween; } public SO_ExportMainQuery setExportFileNameAndPathBetween(ArrayList value) { this.ExportFileNameAndPathBetween = value; return this; } public ArrayList getExportFileNameAndPathIn() { return ExportFileNameAndPathIn; } public SO_ExportMainQuery setExportFileNameAndPathIn(ArrayList value) { this.ExportFileNameAndPathIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class SO_ForwardOrderProcessBatchQuery extends QueryDb implements IReturn> { public String RecID = null; public String RecIDStartsWith = null; public String RecIDEndsWith = null; public String RecIDContains = null; public String RecIDLike = null; public ArrayList RecIDBetween = null; public ArrayList RecIDIn = null; public String BatchNo = null; public String BatchNoStartsWith = null; public String BatchNoEndsWith = null; public String BatchNoContains = null; public String BatchNoLike = null; public ArrayList BatchNoBetween = null; public ArrayList BatchNoIn = null; public String StaffID = null; public String StaffIDStartsWith = null; public String StaffIDEndsWith = null; public String StaffIDContains = null; public String StaffIDLike = null; public ArrayList StaffIDBetween = null; public ArrayList StaffIDIn = null; public Date DateActivated = null; public Date DateActivatedGreaterThanOrEqualTo = null; public Date DateActivatedGreaterThan = null; public Date DateActivatedLessThan = null; public Date DateActivatedLessThanOrEqualTo = null; public Date DateActivatedNotEqualTo = null; public ArrayList DateActivatedBetween = null; public ArrayList DateActivatedIn = null; public Boolean BatchActivated = null; public Date LastSavedDateTime = null; public Date LastSavedDateTimeGreaterThanOrEqualTo = null; public Date LastSavedDateTimeGreaterThan = null; public Date LastSavedDateTimeLessThan = null; public Date LastSavedDateTimeLessThanOrEqualTo = null; public Date LastSavedDateTimeNotEqualTo = null; public ArrayList LastSavedDateTimeBetween = null; public ArrayList LastSavedDateTimeIn = null; public String IN_Logical_RecID = null; public String IN_Logical_RecIDStartsWith = null; public String IN_Logical_RecIDEndsWith = null; public String IN_Logical_RecIDContains = null; public String IN_Logical_RecIDLike = null; public ArrayList IN_Logical_RecIDBetween = null; public ArrayList IN_Logical_RecIDIn = null; public Boolean UseSpecificWarehouse = null; public String getRecID() { return RecID; } public SO_ForwardOrderProcessBatchQuery setRecID(String value) { this.RecID = value; return this; } public String getRecIDStartsWith() { return RecIDStartsWith; } public SO_ForwardOrderProcessBatchQuery setRecIDStartsWith(String value) { this.RecIDStartsWith = value; return this; } public String getRecIDEndsWith() { return RecIDEndsWith; } public SO_ForwardOrderProcessBatchQuery setRecIDEndsWith(String value) { this.RecIDEndsWith = value; return this; } public String getRecIDContains() { return RecIDContains; } public SO_ForwardOrderProcessBatchQuery setRecIDContains(String value) { this.RecIDContains = value; return this; } public String getRecIDLike() { return RecIDLike; } public SO_ForwardOrderProcessBatchQuery setRecIDLike(String value) { this.RecIDLike = value; return this; } public ArrayList getRecIDBetween() { return RecIDBetween; } public SO_ForwardOrderProcessBatchQuery setRecIDBetween(ArrayList value) { this.RecIDBetween = value; return this; } public ArrayList getRecIDIn() { return RecIDIn; } public SO_ForwardOrderProcessBatchQuery setRecIDIn(ArrayList value) { this.RecIDIn = value; return this; } public String getBatchNo() { return BatchNo; } public SO_ForwardOrderProcessBatchQuery setBatchNo(String value) { this.BatchNo = value; return this; } public String getBatchNoStartsWith() { return BatchNoStartsWith; } public SO_ForwardOrderProcessBatchQuery setBatchNoStartsWith(String value) { this.BatchNoStartsWith = value; return this; } public String getBatchNoEndsWith() { return BatchNoEndsWith; } public SO_ForwardOrderProcessBatchQuery setBatchNoEndsWith(String value) { this.BatchNoEndsWith = value; return this; } public String getBatchNoContains() { return BatchNoContains; } public SO_ForwardOrderProcessBatchQuery setBatchNoContains(String value) { this.BatchNoContains = value; return this; } public String getBatchNoLike() { return BatchNoLike; } public SO_ForwardOrderProcessBatchQuery setBatchNoLike(String value) { this.BatchNoLike = value; return this; } public ArrayList getBatchNoBetween() { return BatchNoBetween; } public SO_ForwardOrderProcessBatchQuery setBatchNoBetween(ArrayList value) { this.BatchNoBetween = value; return this; } public ArrayList getBatchNoIn() { return BatchNoIn; } public SO_ForwardOrderProcessBatchQuery setBatchNoIn(ArrayList value) { this.BatchNoIn = value; return this; } public String getStaffID() { return StaffID; } public SO_ForwardOrderProcessBatchQuery setStaffID(String value) { this.StaffID = value; return this; } public String getStaffIDStartsWith() { return StaffIDStartsWith; } public SO_ForwardOrderProcessBatchQuery setStaffIDStartsWith(String value) { this.StaffIDStartsWith = value; return this; } public String getStaffIDEndsWith() { return StaffIDEndsWith; } public SO_ForwardOrderProcessBatchQuery setStaffIDEndsWith(String value) { this.StaffIDEndsWith = value; return this; } public String getStaffIDContains() { return StaffIDContains; } public SO_ForwardOrderProcessBatchQuery setStaffIDContains(String value) { this.StaffIDContains = value; return this; } public String getStaffIDLike() { return StaffIDLike; } public SO_ForwardOrderProcessBatchQuery setStaffIDLike(String value) { this.StaffIDLike = value; return this; } public ArrayList getStaffIDBetween() { return StaffIDBetween; } public SO_ForwardOrderProcessBatchQuery setStaffIDBetween(ArrayList value) { this.StaffIDBetween = value; return this; } public ArrayList getStaffIDIn() { return StaffIDIn; } public SO_ForwardOrderProcessBatchQuery setStaffIDIn(ArrayList value) { this.StaffIDIn = value; return this; } public Date getDateActivated() { return DateActivated; } public SO_ForwardOrderProcessBatchQuery setDateActivated(Date value) { this.DateActivated = value; return this; } public Date getDateActivatedGreaterThanOrEqualTo() { return DateActivatedGreaterThanOrEqualTo; } public SO_ForwardOrderProcessBatchQuery setDateActivatedGreaterThanOrEqualTo(Date value) { this.DateActivatedGreaterThanOrEqualTo = value; return this; } public Date getDateActivatedGreaterThan() { return DateActivatedGreaterThan; } public SO_ForwardOrderProcessBatchQuery setDateActivatedGreaterThan(Date value) { this.DateActivatedGreaterThan = value; return this; } public Date getDateActivatedLessThan() { return DateActivatedLessThan; } public SO_ForwardOrderProcessBatchQuery setDateActivatedLessThan(Date value) { this.DateActivatedLessThan = value; return this; } public Date getDateActivatedLessThanOrEqualTo() { return DateActivatedLessThanOrEqualTo; } public SO_ForwardOrderProcessBatchQuery setDateActivatedLessThanOrEqualTo(Date value) { this.DateActivatedLessThanOrEqualTo = value; return this; } public Date getDateActivatedNotEqualTo() { return DateActivatedNotEqualTo; } public SO_ForwardOrderProcessBatchQuery setDateActivatedNotEqualTo(Date value) { this.DateActivatedNotEqualTo = value; return this; } public ArrayList getDateActivatedBetween() { return DateActivatedBetween; } public SO_ForwardOrderProcessBatchQuery setDateActivatedBetween(ArrayList value) { this.DateActivatedBetween = value; return this; } public ArrayList getDateActivatedIn() { return DateActivatedIn; } public SO_ForwardOrderProcessBatchQuery setDateActivatedIn(ArrayList value) { this.DateActivatedIn = value; return this; } public Boolean isBatchActivated() { return BatchActivated; } public SO_ForwardOrderProcessBatchQuery setBatchActivated(Boolean value) { this.BatchActivated = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public SO_ForwardOrderProcessBatchQuery setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getLastSavedDateTimeGreaterThanOrEqualTo() { return LastSavedDateTimeGreaterThanOrEqualTo; } public SO_ForwardOrderProcessBatchQuery setLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.LastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeGreaterThan() { return LastSavedDateTimeGreaterThan; } public SO_ForwardOrderProcessBatchQuery setLastSavedDateTimeGreaterThan(Date value) { this.LastSavedDateTimeGreaterThan = value; return this; } public Date getLastSavedDateTimeLessThan() { return LastSavedDateTimeLessThan; } public SO_ForwardOrderProcessBatchQuery setLastSavedDateTimeLessThan(Date value) { this.LastSavedDateTimeLessThan = value; return this; } public Date getLastSavedDateTimeLessThanOrEqualTo() { return LastSavedDateTimeLessThanOrEqualTo; } public SO_ForwardOrderProcessBatchQuery setLastSavedDateTimeLessThanOrEqualTo(Date value) { this.LastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeNotEqualTo() { return LastSavedDateTimeNotEqualTo; } public SO_ForwardOrderProcessBatchQuery setLastSavedDateTimeNotEqualTo(Date value) { this.LastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getLastSavedDateTimeBetween() { return LastSavedDateTimeBetween; } public SO_ForwardOrderProcessBatchQuery setLastSavedDateTimeBetween(ArrayList value) { this.LastSavedDateTimeBetween = value; return this; } public ArrayList getLastSavedDateTimeIn() { return LastSavedDateTimeIn; } public SO_ForwardOrderProcessBatchQuery setLastSavedDateTimeIn(ArrayList value) { this.LastSavedDateTimeIn = value; return this; } public String getInLogicalRecID() { return IN_Logical_RecID; } public SO_ForwardOrderProcessBatchQuery setInLogicalRecID(String value) { this.IN_Logical_RecID = value; return this; } public String getInLogicalRecIDStartsWith() { return IN_Logical_RecIDStartsWith; } public SO_ForwardOrderProcessBatchQuery setInLogicalRecIDStartsWith(String value) { this.IN_Logical_RecIDStartsWith = value; return this; } public String getInLogicalRecIDEndsWith() { return IN_Logical_RecIDEndsWith; } public SO_ForwardOrderProcessBatchQuery setInLogicalRecIDEndsWith(String value) { this.IN_Logical_RecIDEndsWith = value; return this; } public String getInLogicalRecIDContains() { return IN_Logical_RecIDContains; } public SO_ForwardOrderProcessBatchQuery setInLogicalRecIDContains(String value) { this.IN_Logical_RecIDContains = value; return this; } public String getInLogicalRecIDLike() { return IN_Logical_RecIDLike; } public SO_ForwardOrderProcessBatchQuery setInLogicalRecIDLike(String value) { this.IN_Logical_RecIDLike = value; return this; } public ArrayList getInLogicalRecIDBetween() { return IN_Logical_RecIDBetween; } public SO_ForwardOrderProcessBatchQuery setInLogicalRecIDBetween(ArrayList value) { this.IN_Logical_RecIDBetween = value; return this; } public ArrayList getInLogicalRecIDIn() { return IN_Logical_RecIDIn; } public SO_ForwardOrderProcessBatchQuery setInLogicalRecIDIn(ArrayList value) { this.IN_Logical_RecIDIn = value; return this; } public Boolean isUseSpecificWarehouse() { return UseSpecificWarehouse; } public SO_ForwardOrderProcessBatchQuery setUseSpecificWarehouse(Boolean value) { this.UseSpecificWarehouse = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class SO_ForwardOrderProcessBatchLinesQuery extends QueryDb implements IReturn> { public String RecID = null; public String RecIDStartsWith = null; public String RecIDEndsWith = null; public String RecIDContains = null; public String RecIDLike = null; public ArrayList RecIDBetween = null; public ArrayList RecIDIn = null; public String ForwardOrderProcessBatchID = null; public String ForwardOrderProcessBatchIDStartsWith = null; public String ForwardOrderProcessBatchIDEndsWith = null; public String ForwardOrderProcessBatchIDContains = null; public String ForwardOrderProcessBatchIDLike = null; public ArrayList ForwardOrderProcessBatchIDBetween = null; public ArrayList ForwardOrderProcessBatchIDIn = null; public Integer LineNumber = null; public Integer LineNumberGreaterThanOrEqualTo = null; public Integer LineNumberGreaterThan = null; public Integer LineNumberLessThan = null; public Integer LineNumberLessThanOrEqualTo = null; public Integer LineNumberNotEqualTo = null; public ArrayList LineNumberBetween = null; public ArrayList LineNumberIn = null; public String InvoiceID = null; public String InvoiceIDStartsWith = null; public String InvoiceIDEndsWith = null; public String InvoiceIDContains = null; public String InvoiceIDLike = null; public ArrayList InvoiceIDBetween = null; public ArrayList InvoiceIDIn = null; public String InvoiceNo = null; public String InvoiceNoStartsWith = null; public String InvoiceNoEndsWith = null; public String InvoiceNoContains = null; public String InvoiceNoLike = null; public ArrayList InvoiceNoBetween = null; public ArrayList InvoiceNoIn = null; public String DebtorID = null; public String DebtorIDStartsWith = null; public String DebtorIDEndsWith = null; public String DebtorIDContains = null; public String DebtorIDLike = null; public ArrayList DebtorIDBetween = null; public ArrayList DebtorIDIn = null; public String DebtorAccountNo = null; public String DebtorAccountNoStartsWith = null; public String DebtorAccountNoEndsWith = null; public String DebtorAccountNoContains = null; public String DebtorAccountNoLike = null; public ArrayList DebtorAccountNoBetween = null; public ArrayList DebtorAccountNoIn = null; public String DebtorName = null; public String DebtorNameStartsWith = null; public String DebtorNameEndsWith = null; public String DebtorNameContains = null; public String DebtorNameLike = null; public ArrayList DebtorNameBetween = null; public ArrayList DebtorNameIn = null; public Boolean ConvertFlag = null; public Boolean ConvertFailed = null; public String FailReason = null; public String FailReasonStartsWith = null; public String FailReasonEndsWith = null; public String FailReasonContains = null; public String FailReasonLike = null; public ArrayList FailReasonBetween = null; public ArrayList FailReasonIn = null; public String getRecID() { return RecID; } public SO_ForwardOrderProcessBatchLinesQuery setRecID(String value) { this.RecID = value; return this; } public String getRecIDStartsWith() { return RecIDStartsWith; } public SO_ForwardOrderProcessBatchLinesQuery setRecIDStartsWith(String value) { this.RecIDStartsWith = value; return this; } public String getRecIDEndsWith() { return RecIDEndsWith; } public SO_ForwardOrderProcessBatchLinesQuery setRecIDEndsWith(String value) { this.RecIDEndsWith = value; return this; } public String getRecIDContains() { return RecIDContains; } public SO_ForwardOrderProcessBatchLinesQuery setRecIDContains(String value) { this.RecIDContains = value; return this; } public String getRecIDLike() { return RecIDLike; } public SO_ForwardOrderProcessBatchLinesQuery setRecIDLike(String value) { this.RecIDLike = value; return this; } public ArrayList getRecIDBetween() { return RecIDBetween; } public SO_ForwardOrderProcessBatchLinesQuery setRecIDBetween(ArrayList value) { this.RecIDBetween = value; return this; } public ArrayList getRecIDIn() { return RecIDIn; } public SO_ForwardOrderProcessBatchLinesQuery setRecIDIn(ArrayList value) { this.RecIDIn = value; return this; } public String getForwardOrderProcessBatchID() { return ForwardOrderProcessBatchID; } public SO_ForwardOrderProcessBatchLinesQuery setForwardOrderProcessBatchID(String value) { this.ForwardOrderProcessBatchID = value; return this; } public String getForwardOrderProcessBatchIDStartsWith() { return ForwardOrderProcessBatchIDStartsWith; } public SO_ForwardOrderProcessBatchLinesQuery setForwardOrderProcessBatchIDStartsWith(String value) { this.ForwardOrderProcessBatchIDStartsWith = value; return this; } public String getForwardOrderProcessBatchIDEndsWith() { return ForwardOrderProcessBatchIDEndsWith; } public SO_ForwardOrderProcessBatchLinesQuery setForwardOrderProcessBatchIDEndsWith(String value) { this.ForwardOrderProcessBatchIDEndsWith = value; return this; } public String getForwardOrderProcessBatchIDContains() { return ForwardOrderProcessBatchIDContains; } public SO_ForwardOrderProcessBatchLinesQuery setForwardOrderProcessBatchIDContains(String value) { this.ForwardOrderProcessBatchIDContains = value; return this; } public String getForwardOrderProcessBatchIDLike() { return ForwardOrderProcessBatchIDLike; } public SO_ForwardOrderProcessBatchLinesQuery setForwardOrderProcessBatchIDLike(String value) { this.ForwardOrderProcessBatchIDLike = value; return this; } public ArrayList getForwardOrderProcessBatchIDBetween() { return ForwardOrderProcessBatchIDBetween; } public SO_ForwardOrderProcessBatchLinesQuery setForwardOrderProcessBatchIDBetween(ArrayList value) { this.ForwardOrderProcessBatchIDBetween = value; return this; } public ArrayList getForwardOrderProcessBatchIDIn() { return ForwardOrderProcessBatchIDIn; } public SO_ForwardOrderProcessBatchLinesQuery setForwardOrderProcessBatchIDIn(ArrayList value) { this.ForwardOrderProcessBatchIDIn = value; return this; } public Integer getLineNumber() { return LineNumber; } public SO_ForwardOrderProcessBatchLinesQuery setLineNumber(Integer value) { this.LineNumber = value; return this; } public Integer getLineNumberGreaterThanOrEqualTo() { return LineNumberGreaterThanOrEqualTo; } public SO_ForwardOrderProcessBatchLinesQuery setLineNumberGreaterThanOrEqualTo(Integer value) { this.LineNumberGreaterThanOrEqualTo = value; return this; } public Integer getLineNumberGreaterThan() { return LineNumberGreaterThan; } public SO_ForwardOrderProcessBatchLinesQuery setLineNumberGreaterThan(Integer value) { this.LineNumberGreaterThan = value; return this; } public Integer getLineNumberLessThan() { return LineNumberLessThan; } public SO_ForwardOrderProcessBatchLinesQuery setLineNumberLessThan(Integer value) { this.LineNumberLessThan = value; return this; } public Integer getLineNumberLessThanOrEqualTo() { return LineNumberLessThanOrEqualTo; } public SO_ForwardOrderProcessBatchLinesQuery setLineNumberLessThanOrEqualTo(Integer value) { this.LineNumberLessThanOrEqualTo = value; return this; } public Integer getLineNumberNotEqualTo() { return LineNumberNotEqualTo; } public SO_ForwardOrderProcessBatchLinesQuery setLineNumberNotEqualTo(Integer value) { this.LineNumberNotEqualTo = value; return this; } public ArrayList getLineNumberBetween() { return LineNumberBetween; } public SO_ForwardOrderProcessBatchLinesQuery setLineNumberBetween(ArrayList value) { this.LineNumberBetween = value; return this; } public ArrayList getLineNumberIn() { return LineNumberIn; } public SO_ForwardOrderProcessBatchLinesQuery setLineNumberIn(ArrayList value) { this.LineNumberIn = value; return this; } public String getInvoiceID() { return InvoiceID; } public SO_ForwardOrderProcessBatchLinesQuery setInvoiceID(String value) { this.InvoiceID = value; return this; } public String getInvoiceIDStartsWith() { return InvoiceIDStartsWith; } public SO_ForwardOrderProcessBatchLinesQuery setInvoiceIDStartsWith(String value) { this.InvoiceIDStartsWith = value; return this; } public String getInvoiceIDEndsWith() { return InvoiceIDEndsWith; } public SO_ForwardOrderProcessBatchLinesQuery setInvoiceIDEndsWith(String value) { this.InvoiceIDEndsWith = value; return this; } public String getInvoiceIDContains() { return InvoiceIDContains; } public SO_ForwardOrderProcessBatchLinesQuery setInvoiceIDContains(String value) { this.InvoiceIDContains = value; return this; } public String getInvoiceIDLike() { return InvoiceIDLike; } public SO_ForwardOrderProcessBatchLinesQuery setInvoiceIDLike(String value) { this.InvoiceIDLike = value; return this; } public ArrayList getInvoiceIDBetween() { return InvoiceIDBetween; } public SO_ForwardOrderProcessBatchLinesQuery setInvoiceIDBetween(ArrayList value) { this.InvoiceIDBetween = value; return this; } public ArrayList getInvoiceIDIn() { return InvoiceIDIn; } public SO_ForwardOrderProcessBatchLinesQuery setInvoiceIDIn(ArrayList value) { this.InvoiceIDIn = value; return this; } public String getInvoiceNo() { return InvoiceNo; } public SO_ForwardOrderProcessBatchLinesQuery setInvoiceNo(String value) { this.InvoiceNo = value; return this; } public String getInvoiceNoStartsWith() { return InvoiceNoStartsWith; } public SO_ForwardOrderProcessBatchLinesQuery setInvoiceNoStartsWith(String value) { this.InvoiceNoStartsWith = value; return this; } public String getInvoiceNoEndsWith() { return InvoiceNoEndsWith; } public SO_ForwardOrderProcessBatchLinesQuery setInvoiceNoEndsWith(String value) { this.InvoiceNoEndsWith = value; return this; } public String getInvoiceNoContains() { return InvoiceNoContains; } public SO_ForwardOrderProcessBatchLinesQuery setInvoiceNoContains(String value) { this.InvoiceNoContains = value; return this; } public String getInvoiceNoLike() { return InvoiceNoLike; } public SO_ForwardOrderProcessBatchLinesQuery setInvoiceNoLike(String value) { this.InvoiceNoLike = value; return this; } public ArrayList getInvoiceNoBetween() { return InvoiceNoBetween; } public SO_ForwardOrderProcessBatchLinesQuery setInvoiceNoBetween(ArrayList value) { this.InvoiceNoBetween = value; return this; } public ArrayList getInvoiceNoIn() { return InvoiceNoIn; } public SO_ForwardOrderProcessBatchLinesQuery setInvoiceNoIn(ArrayList value) { this.InvoiceNoIn = value; return this; } public String getDebtorID() { return DebtorID; } public SO_ForwardOrderProcessBatchLinesQuery setDebtorID(String value) { this.DebtorID = value; return this; } public String getDebtorIDStartsWith() { return DebtorIDStartsWith; } public SO_ForwardOrderProcessBatchLinesQuery setDebtorIDStartsWith(String value) { this.DebtorIDStartsWith = value; return this; } public String getDebtorIDEndsWith() { return DebtorIDEndsWith; } public SO_ForwardOrderProcessBatchLinesQuery setDebtorIDEndsWith(String value) { this.DebtorIDEndsWith = value; return this; } public String getDebtorIDContains() { return DebtorIDContains; } public SO_ForwardOrderProcessBatchLinesQuery setDebtorIDContains(String value) { this.DebtorIDContains = value; return this; } public String getDebtorIDLike() { return DebtorIDLike; } public SO_ForwardOrderProcessBatchLinesQuery setDebtorIDLike(String value) { this.DebtorIDLike = value; return this; } public ArrayList getDebtorIDBetween() { return DebtorIDBetween; } public SO_ForwardOrderProcessBatchLinesQuery setDebtorIDBetween(ArrayList value) { this.DebtorIDBetween = value; return this; } public ArrayList getDebtorIDIn() { return DebtorIDIn; } public SO_ForwardOrderProcessBatchLinesQuery setDebtorIDIn(ArrayList value) { this.DebtorIDIn = value; return this; } public String getDebtorAccountNo() { return DebtorAccountNo; } public SO_ForwardOrderProcessBatchLinesQuery setDebtorAccountNo(String value) { this.DebtorAccountNo = value; return this; } public String getDebtorAccountNoStartsWith() { return DebtorAccountNoStartsWith; } public SO_ForwardOrderProcessBatchLinesQuery setDebtorAccountNoStartsWith(String value) { this.DebtorAccountNoStartsWith = value; return this; } public String getDebtorAccountNoEndsWith() { return DebtorAccountNoEndsWith; } public SO_ForwardOrderProcessBatchLinesQuery setDebtorAccountNoEndsWith(String value) { this.DebtorAccountNoEndsWith = value; return this; } public String getDebtorAccountNoContains() { return DebtorAccountNoContains; } public SO_ForwardOrderProcessBatchLinesQuery setDebtorAccountNoContains(String value) { this.DebtorAccountNoContains = value; return this; } public String getDebtorAccountNoLike() { return DebtorAccountNoLike; } public SO_ForwardOrderProcessBatchLinesQuery setDebtorAccountNoLike(String value) { this.DebtorAccountNoLike = value; return this; } public ArrayList getDebtorAccountNoBetween() { return DebtorAccountNoBetween; } public SO_ForwardOrderProcessBatchLinesQuery setDebtorAccountNoBetween(ArrayList value) { this.DebtorAccountNoBetween = value; return this; } public ArrayList getDebtorAccountNoIn() { return DebtorAccountNoIn; } public SO_ForwardOrderProcessBatchLinesQuery setDebtorAccountNoIn(ArrayList value) { this.DebtorAccountNoIn = value; return this; } public String getDebtorName() { return DebtorName; } public SO_ForwardOrderProcessBatchLinesQuery setDebtorName(String value) { this.DebtorName = value; return this; } public String getDebtorNameStartsWith() { return DebtorNameStartsWith; } public SO_ForwardOrderProcessBatchLinesQuery setDebtorNameStartsWith(String value) { this.DebtorNameStartsWith = value; return this; } public String getDebtorNameEndsWith() { return DebtorNameEndsWith; } public SO_ForwardOrderProcessBatchLinesQuery setDebtorNameEndsWith(String value) { this.DebtorNameEndsWith = value; return this; } public String getDebtorNameContains() { return DebtorNameContains; } public SO_ForwardOrderProcessBatchLinesQuery setDebtorNameContains(String value) { this.DebtorNameContains = value; return this; } public String getDebtorNameLike() { return DebtorNameLike; } public SO_ForwardOrderProcessBatchLinesQuery setDebtorNameLike(String value) { this.DebtorNameLike = value; return this; } public ArrayList getDebtorNameBetween() { return DebtorNameBetween; } public SO_ForwardOrderProcessBatchLinesQuery setDebtorNameBetween(ArrayList value) { this.DebtorNameBetween = value; return this; } public ArrayList getDebtorNameIn() { return DebtorNameIn; } public SO_ForwardOrderProcessBatchLinesQuery setDebtorNameIn(ArrayList value) { this.DebtorNameIn = value; return this; } public Boolean isConvertFlag() { return ConvertFlag; } public SO_ForwardOrderProcessBatchLinesQuery setConvertFlag(Boolean value) { this.ConvertFlag = value; return this; } public Boolean isConvertFailed() { return ConvertFailed; } public SO_ForwardOrderProcessBatchLinesQuery setConvertFailed(Boolean value) { this.ConvertFailed = value; return this; } public String getFailReason() { return FailReason; } public SO_ForwardOrderProcessBatchLinesQuery setFailReason(String value) { this.FailReason = value; return this; } public String getFailReasonStartsWith() { return FailReasonStartsWith; } public SO_ForwardOrderProcessBatchLinesQuery setFailReasonStartsWith(String value) { this.FailReasonStartsWith = value; return this; } public String getFailReasonEndsWith() { return FailReasonEndsWith; } public SO_ForwardOrderProcessBatchLinesQuery setFailReasonEndsWith(String value) { this.FailReasonEndsWith = value; return this; } public String getFailReasonContains() { return FailReasonContains; } public SO_ForwardOrderProcessBatchLinesQuery setFailReasonContains(String value) { this.FailReasonContains = value; return this; } public String getFailReasonLike() { return FailReasonLike; } public SO_ForwardOrderProcessBatchLinesQuery setFailReasonLike(String value) { this.FailReasonLike = value; return this; } public ArrayList getFailReasonBetween() { return FailReasonBetween; } public SO_ForwardOrderProcessBatchLinesQuery setFailReasonBetween(ArrayList value) { this.FailReasonBetween = value; return this; } public ArrayList getFailReasonIn() { return FailReasonIn; } public SO_ForwardOrderProcessBatchLinesQuery setFailReasonIn(ArrayList value) { this.FailReasonIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class SO_ForwardOrderScheduleBatchQuery extends QueryDb implements IReturn> { public String RecID = null; public String RecIDStartsWith = null; public String RecIDEndsWith = null; public String RecIDContains = null; public String RecIDLike = null; public ArrayList RecIDBetween = null; public ArrayList RecIDIn = null; public String BatchNo = null; public String BatchNoStartsWith = null; public String BatchNoEndsWith = null; public String BatchNoContains = null; public String BatchNoLike = null; public ArrayList BatchNoBetween = null; public ArrayList BatchNoIn = null; public String StaffID = null; public String StaffIDStartsWith = null; public String StaffIDEndsWith = null; public String StaffIDContains = null; public String StaffIDLike = null; public ArrayList StaffIDBetween = null; public ArrayList StaffIDIn = null; public Date DateActivated = null; public Date DateActivatedGreaterThanOrEqualTo = null; public Date DateActivatedGreaterThan = null; public Date DateActivatedLessThan = null; public Date DateActivatedLessThanOrEqualTo = null; public Date DateActivatedNotEqualTo = null; public ArrayList DateActivatedBetween = null; public ArrayList DateActivatedIn = null; public Boolean BatchActivated = null; public Date LastSavedDateTime = null; public Date LastSavedDateTimeGreaterThanOrEqualTo = null; public Date LastSavedDateTimeGreaterThan = null; public Date LastSavedDateTimeLessThan = null; public Date LastSavedDateTimeLessThanOrEqualTo = null; public Date LastSavedDateTimeNotEqualTo = null; public ArrayList LastSavedDateTimeBetween = null; public ArrayList LastSavedDateTimeIn = null; public String IN_Logical_RecID = null; public String IN_Logical_RecIDStartsWith = null; public String IN_Logical_RecIDEndsWith = null; public String IN_Logical_RecIDContains = null; public String IN_Logical_RecIDLike = null; public ArrayList IN_Logical_RecIDBetween = null; public ArrayList IN_Logical_RecIDIn = null; public Boolean UseSpecificWarehouse = null; public Boolean IncludeForwardOrders = null; public Boolean IncludeOrders = null; public Boolean IncludeInvoices = null; public Boolean IncludeActiveOrders = null; public String getRecID() { return RecID; } public SO_ForwardOrderScheduleBatchQuery setRecID(String value) { this.RecID = value; return this; } public String getRecIDStartsWith() { return RecIDStartsWith; } public SO_ForwardOrderScheduleBatchQuery setRecIDStartsWith(String value) { this.RecIDStartsWith = value; return this; } public String getRecIDEndsWith() { return RecIDEndsWith; } public SO_ForwardOrderScheduleBatchQuery setRecIDEndsWith(String value) { this.RecIDEndsWith = value; return this; } public String getRecIDContains() { return RecIDContains; } public SO_ForwardOrderScheduleBatchQuery setRecIDContains(String value) { this.RecIDContains = value; return this; } public String getRecIDLike() { return RecIDLike; } public SO_ForwardOrderScheduleBatchQuery setRecIDLike(String value) { this.RecIDLike = value; return this; } public ArrayList getRecIDBetween() { return RecIDBetween; } public SO_ForwardOrderScheduleBatchQuery setRecIDBetween(ArrayList value) { this.RecIDBetween = value; return this; } public ArrayList getRecIDIn() { return RecIDIn; } public SO_ForwardOrderScheduleBatchQuery setRecIDIn(ArrayList value) { this.RecIDIn = value; return this; } public String getBatchNo() { return BatchNo; } public SO_ForwardOrderScheduleBatchQuery setBatchNo(String value) { this.BatchNo = value; return this; } public String getBatchNoStartsWith() { return BatchNoStartsWith; } public SO_ForwardOrderScheduleBatchQuery setBatchNoStartsWith(String value) { this.BatchNoStartsWith = value; return this; } public String getBatchNoEndsWith() { return BatchNoEndsWith; } public SO_ForwardOrderScheduleBatchQuery setBatchNoEndsWith(String value) { this.BatchNoEndsWith = value; return this; } public String getBatchNoContains() { return BatchNoContains; } public SO_ForwardOrderScheduleBatchQuery setBatchNoContains(String value) { this.BatchNoContains = value; return this; } public String getBatchNoLike() { return BatchNoLike; } public SO_ForwardOrderScheduleBatchQuery setBatchNoLike(String value) { this.BatchNoLike = value; return this; } public ArrayList getBatchNoBetween() { return BatchNoBetween; } public SO_ForwardOrderScheduleBatchQuery setBatchNoBetween(ArrayList value) { this.BatchNoBetween = value; return this; } public ArrayList getBatchNoIn() { return BatchNoIn; } public SO_ForwardOrderScheduleBatchQuery setBatchNoIn(ArrayList value) { this.BatchNoIn = value; return this; } public String getStaffID() { return StaffID; } public SO_ForwardOrderScheduleBatchQuery setStaffID(String value) { this.StaffID = value; return this; } public String getStaffIDStartsWith() { return StaffIDStartsWith; } public SO_ForwardOrderScheduleBatchQuery setStaffIDStartsWith(String value) { this.StaffIDStartsWith = value; return this; } public String getStaffIDEndsWith() { return StaffIDEndsWith; } public SO_ForwardOrderScheduleBatchQuery setStaffIDEndsWith(String value) { this.StaffIDEndsWith = value; return this; } public String getStaffIDContains() { return StaffIDContains; } public SO_ForwardOrderScheduleBatchQuery setStaffIDContains(String value) { this.StaffIDContains = value; return this; } public String getStaffIDLike() { return StaffIDLike; } public SO_ForwardOrderScheduleBatchQuery setStaffIDLike(String value) { this.StaffIDLike = value; return this; } public ArrayList getStaffIDBetween() { return StaffIDBetween; } public SO_ForwardOrderScheduleBatchQuery setStaffIDBetween(ArrayList value) { this.StaffIDBetween = value; return this; } public ArrayList getStaffIDIn() { return StaffIDIn; } public SO_ForwardOrderScheduleBatchQuery setStaffIDIn(ArrayList value) { this.StaffIDIn = value; return this; } public Date getDateActivated() { return DateActivated; } public SO_ForwardOrderScheduleBatchQuery setDateActivated(Date value) { this.DateActivated = value; return this; } public Date getDateActivatedGreaterThanOrEqualTo() { return DateActivatedGreaterThanOrEqualTo; } public SO_ForwardOrderScheduleBatchQuery setDateActivatedGreaterThanOrEqualTo(Date value) { this.DateActivatedGreaterThanOrEqualTo = value; return this; } public Date getDateActivatedGreaterThan() { return DateActivatedGreaterThan; } public SO_ForwardOrderScheduleBatchQuery setDateActivatedGreaterThan(Date value) { this.DateActivatedGreaterThan = value; return this; } public Date getDateActivatedLessThan() { return DateActivatedLessThan; } public SO_ForwardOrderScheduleBatchQuery setDateActivatedLessThan(Date value) { this.DateActivatedLessThan = value; return this; } public Date getDateActivatedLessThanOrEqualTo() { return DateActivatedLessThanOrEqualTo; } public SO_ForwardOrderScheduleBatchQuery setDateActivatedLessThanOrEqualTo(Date value) { this.DateActivatedLessThanOrEqualTo = value; return this; } public Date getDateActivatedNotEqualTo() { return DateActivatedNotEqualTo; } public SO_ForwardOrderScheduleBatchQuery setDateActivatedNotEqualTo(Date value) { this.DateActivatedNotEqualTo = value; return this; } public ArrayList getDateActivatedBetween() { return DateActivatedBetween; } public SO_ForwardOrderScheduleBatchQuery setDateActivatedBetween(ArrayList value) { this.DateActivatedBetween = value; return this; } public ArrayList getDateActivatedIn() { return DateActivatedIn; } public SO_ForwardOrderScheduleBatchQuery setDateActivatedIn(ArrayList value) { this.DateActivatedIn = value; return this; } public Boolean isBatchActivated() { return BatchActivated; } public SO_ForwardOrderScheduleBatchQuery setBatchActivated(Boolean value) { this.BatchActivated = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public SO_ForwardOrderScheduleBatchQuery setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getLastSavedDateTimeGreaterThanOrEqualTo() { return LastSavedDateTimeGreaterThanOrEqualTo; } public SO_ForwardOrderScheduleBatchQuery setLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.LastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeGreaterThan() { return LastSavedDateTimeGreaterThan; } public SO_ForwardOrderScheduleBatchQuery setLastSavedDateTimeGreaterThan(Date value) { this.LastSavedDateTimeGreaterThan = value; return this; } public Date getLastSavedDateTimeLessThan() { return LastSavedDateTimeLessThan; } public SO_ForwardOrderScheduleBatchQuery setLastSavedDateTimeLessThan(Date value) { this.LastSavedDateTimeLessThan = value; return this; } public Date getLastSavedDateTimeLessThanOrEqualTo() { return LastSavedDateTimeLessThanOrEqualTo; } public SO_ForwardOrderScheduleBatchQuery setLastSavedDateTimeLessThanOrEqualTo(Date value) { this.LastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeNotEqualTo() { return LastSavedDateTimeNotEqualTo; } public SO_ForwardOrderScheduleBatchQuery setLastSavedDateTimeNotEqualTo(Date value) { this.LastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getLastSavedDateTimeBetween() { return LastSavedDateTimeBetween; } public SO_ForwardOrderScheduleBatchQuery setLastSavedDateTimeBetween(ArrayList value) { this.LastSavedDateTimeBetween = value; return this; } public ArrayList getLastSavedDateTimeIn() { return LastSavedDateTimeIn; } public SO_ForwardOrderScheduleBatchQuery setLastSavedDateTimeIn(ArrayList value) { this.LastSavedDateTimeIn = value; return this; } public String getInLogicalRecID() { return IN_Logical_RecID; } public SO_ForwardOrderScheduleBatchQuery setInLogicalRecID(String value) { this.IN_Logical_RecID = value; return this; } public String getInLogicalRecIDStartsWith() { return IN_Logical_RecIDStartsWith; } public SO_ForwardOrderScheduleBatchQuery setInLogicalRecIDStartsWith(String value) { this.IN_Logical_RecIDStartsWith = value; return this; } public String getInLogicalRecIDEndsWith() { return IN_Logical_RecIDEndsWith; } public SO_ForwardOrderScheduleBatchQuery setInLogicalRecIDEndsWith(String value) { this.IN_Logical_RecIDEndsWith = value; return this; } public String getInLogicalRecIDContains() { return IN_Logical_RecIDContains; } public SO_ForwardOrderScheduleBatchQuery setInLogicalRecIDContains(String value) { this.IN_Logical_RecIDContains = value; return this; } public String getInLogicalRecIDLike() { return IN_Logical_RecIDLike; } public SO_ForwardOrderScheduleBatchQuery setInLogicalRecIDLike(String value) { this.IN_Logical_RecIDLike = value; return this; } public ArrayList getInLogicalRecIDBetween() { return IN_Logical_RecIDBetween; } public SO_ForwardOrderScheduleBatchQuery setInLogicalRecIDBetween(ArrayList value) { this.IN_Logical_RecIDBetween = value; return this; } public ArrayList getInLogicalRecIDIn() { return IN_Logical_RecIDIn; } public SO_ForwardOrderScheduleBatchQuery setInLogicalRecIDIn(ArrayList value) { this.IN_Logical_RecIDIn = value; return this; } public Boolean isUseSpecificWarehouse() { return UseSpecificWarehouse; } public SO_ForwardOrderScheduleBatchQuery setUseSpecificWarehouse(Boolean value) { this.UseSpecificWarehouse = value; return this; } public Boolean isIncludeForwardOrders() { return IncludeForwardOrders; } public SO_ForwardOrderScheduleBatchQuery setIncludeForwardOrders(Boolean value) { this.IncludeForwardOrders = value; return this; } public Boolean isIncludeOrders() { return IncludeOrders; } public SO_ForwardOrderScheduleBatchQuery setIncludeOrders(Boolean value) { this.IncludeOrders = value; return this; } public Boolean isIncludeInvoices() { return IncludeInvoices; } public SO_ForwardOrderScheduleBatchQuery setIncludeInvoices(Boolean value) { this.IncludeInvoices = value; return this; } public Boolean isIncludeActiveOrders() { return IncludeActiveOrders; } public SO_ForwardOrderScheduleBatchQuery setIncludeActiveOrders(Boolean value) { this.IncludeActiveOrders = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class SO_ForwardOrderScheduleBatchLinesQuery extends QueryDb implements IReturn> { public String RecID = null; public String RecIDStartsWith = null; public String RecIDEndsWith = null; public String RecIDContains = null; public String RecIDLike = null; public ArrayList RecIDBetween = null; public ArrayList RecIDIn = null; public String ForwardOrderScheduleBatchID = null; public String ForwardOrderScheduleBatchIDStartsWith = null; public String ForwardOrderScheduleBatchIDEndsWith = null; public String ForwardOrderScheduleBatchIDContains = null; public String ForwardOrderScheduleBatchIDLike = null; public ArrayList ForwardOrderScheduleBatchIDBetween = null; public ArrayList ForwardOrderScheduleBatchIDIn = null; public Integer LineNumber = null; public Integer LineNumberGreaterThanOrEqualTo = null; public Integer LineNumberGreaterThan = null; public Integer LineNumberLessThan = null; public Integer LineNumberLessThanOrEqualTo = null; public Integer LineNumberNotEqualTo = null; public ArrayList LineNumberBetween = null; public ArrayList LineNumberIn = null; public String InvoiceID = null; public String InvoiceIDStartsWith = null; public String InvoiceIDEndsWith = null; public String InvoiceIDContains = null; public String InvoiceIDLike = null; public ArrayList InvoiceIDBetween = null; public ArrayList InvoiceIDIn = null; public String InvoiceNo = null; public String InvoiceNoStartsWith = null; public String InvoiceNoEndsWith = null; public String InvoiceNoContains = null; public String InvoiceNoLike = null; public ArrayList InvoiceNoBetween = null; public ArrayList InvoiceNoIn = null; public String DebtorID = null; public String DebtorIDStartsWith = null; public String DebtorIDEndsWith = null; public String DebtorIDContains = null; public String DebtorIDLike = null; public ArrayList DebtorIDBetween = null; public ArrayList DebtorIDIn = null; public String DebtorAccountNo = null; public String DebtorAccountNoStartsWith = null; public String DebtorAccountNoEndsWith = null; public String DebtorAccountNoContains = null; public String DebtorAccountNoLike = null; public ArrayList DebtorAccountNoBetween = null; public ArrayList DebtorAccountNoIn = null; public String DebtorName = null; public String DebtorNameStartsWith = null; public String DebtorNameEndsWith = null; public String DebtorNameContains = null; public String DebtorNameLike = null; public ArrayList DebtorNameBetween = null; public ArrayList DebtorNameIn = null; public String InvoiceLineID = null; public String InvoiceLineIDStartsWith = null; public String InvoiceLineIDEndsWith = null; public String InvoiceLineIDContains = null; public String InvoiceLineIDLike = null; public ArrayList InvoiceLineIDBetween = null; public ArrayList InvoiceLineIDIn = null; public String InventoryID = null; public String InventoryIDStartsWith = null; public String InventoryIDEndsWith = null; public String InventoryIDContains = null; public String InventoryIDLike = null; public ArrayList InventoryIDBetween = null; public ArrayList InventoryIDIn = null; public String PartNo = null; public String PartNoStartsWith = null; public String PartNoEndsWith = null; public String PartNoContains = null; public String PartNoLike = null; public ArrayList PartNoBetween = null; public ArrayList PartNoIn = null; public String Description = null; public String DescriptionStartsWith = null; public String DescriptionEndsWith = null; public String DescriptionContains = null; public String DescriptionLike = null; public ArrayList DescriptionBetween = null; public ArrayList DescriptionIn = null; public BigDecimal Quantity = null; public BigDecimal QuantityGreaterThanOrEqualTo = null; public BigDecimal QuantityGreaterThan = null; public BigDecimal QuantityLessThan = null; public BigDecimal QuantityLessThanOrEqualTo = null; public BigDecimal QuantityNotEqualTo = null; public ArrayList QuantityBetween = null; public ArrayList QuantityIn = null; public Date ForwardOrderDate = null; public Date ForwardOrderDateGreaterThanOrEqualTo = null; public Date ForwardOrderDateGreaterThan = null; public Date ForwardOrderDateLessThan = null; public Date ForwardOrderDateLessThanOrEqualTo = null; public Date ForwardOrderDateNotEqualTo = null; public ArrayList ForwardOrderDateBetween = null; public ArrayList ForwardOrderDateIn = null; public Date CurrentScheduledDate = null; public Date CurrentScheduledDateGreaterThanOrEqualTo = null; public Date CurrentScheduledDateGreaterThan = null; public Date CurrentScheduledDateLessThan = null; public Date CurrentScheduledDateLessThanOrEqualTo = null; public Date CurrentScheduledDateNotEqualTo = null; public ArrayList CurrentScheduledDateBetween = null; public ArrayList CurrentScheduledDateIn = null; public Date NewScheduledDate = null; public Date NewScheduledDateGreaterThanOrEqualTo = null; public Date NewScheduledDateGreaterThan = null; public Date NewScheduledDateLessThan = null; public Date NewScheduledDateLessThanOrEqualTo = null; public Date NewScheduledDateNotEqualTo = null; public ArrayList NewScheduledDateBetween = null; public ArrayList NewScheduledDateIn = null; public Boolean UpdateFailed = null; public String FailReason = null; public String FailReasonStartsWith = null; public String FailReasonEndsWith = null; public String FailReasonContains = null; public String FailReasonLike = null; public ArrayList FailReasonBetween = null; public ArrayList FailReasonIn = null; public String getRecID() { return RecID; } public SO_ForwardOrderScheduleBatchLinesQuery setRecID(String value) { this.RecID = value; return this; } public String getRecIDStartsWith() { return RecIDStartsWith; } public SO_ForwardOrderScheduleBatchLinesQuery setRecIDStartsWith(String value) { this.RecIDStartsWith = value; return this; } public String getRecIDEndsWith() { return RecIDEndsWith; } public SO_ForwardOrderScheduleBatchLinesQuery setRecIDEndsWith(String value) { this.RecIDEndsWith = value; return this; } public String getRecIDContains() { return RecIDContains; } public SO_ForwardOrderScheduleBatchLinesQuery setRecIDContains(String value) { this.RecIDContains = value; return this; } public String getRecIDLike() { return RecIDLike; } public SO_ForwardOrderScheduleBatchLinesQuery setRecIDLike(String value) { this.RecIDLike = value; return this; } public ArrayList getRecIDBetween() { return RecIDBetween; } public SO_ForwardOrderScheduleBatchLinesQuery setRecIDBetween(ArrayList value) { this.RecIDBetween = value; return this; } public ArrayList getRecIDIn() { return RecIDIn; } public SO_ForwardOrderScheduleBatchLinesQuery setRecIDIn(ArrayList value) { this.RecIDIn = value; return this; } public String getForwardOrderScheduleBatchID() { return ForwardOrderScheduleBatchID; } public SO_ForwardOrderScheduleBatchLinesQuery setForwardOrderScheduleBatchID(String value) { this.ForwardOrderScheduleBatchID = value; return this; } public String getForwardOrderScheduleBatchIDStartsWith() { return ForwardOrderScheduleBatchIDStartsWith; } public SO_ForwardOrderScheduleBatchLinesQuery setForwardOrderScheduleBatchIDStartsWith(String value) { this.ForwardOrderScheduleBatchIDStartsWith = value; return this; } public String getForwardOrderScheduleBatchIDEndsWith() { return ForwardOrderScheduleBatchIDEndsWith; } public SO_ForwardOrderScheduleBatchLinesQuery setForwardOrderScheduleBatchIDEndsWith(String value) { this.ForwardOrderScheduleBatchIDEndsWith = value; return this; } public String getForwardOrderScheduleBatchIDContains() { return ForwardOrderScheduleBatchIDContains; } public SO_ForwardOrderScheduleBatchLinesQuery setForwardOrderScheduleBatchIDContains(String value) { this.ForwardOrderScheduleBatchIDContains = value; return this; } public String getForwardOrderScheduleBatchIDLike() { return ForwardOrderScheduleBatchIDLike; } public SO_ForwardOrderScheduleBatchLinesQuery setForwardOrderScheduleBatchIDLike(String value) { this.ForwardOrderScheduleBatchIDLike = value; return this; } public ArrayList getForwardOrderScheduleBatchIDBetween() { return ForwardOrderScheduleBatchIDBetween; } public SO_ForwardOrderScheduleBatchLinesQuery setForwardOrderScheduleBatchIDBetween(ArrayList value) { this.ForwardOrderScheduleBatchIDBetween = value; return this; } public ArrayList getForwardOrderScheduleBatchIDIn() { return ForwardOrderScheduleBatchIDIn; } public SO_ForwardOrderScheduleBatchLinesQuery setForwardOrderScheduleBatchIDIn(ArrayList value) { this.ForwardOrderScheduleBatchIDIn = value; return this; } public Integer getLineNumber() { return LineNumber; } public SO_ForwardOrderScheduleBatchLinesQuery setLineNumber(Integer value) { this.LineNumber = value; return this; } public Integer getLineNumberGreaterThanOrEqualTo() { return LineNumberGreaterThanOrEqualTo; } public SO_ForwardOrderScheduleBatchLinesQuery setLineNumberGreaterThanOrEqualTo(Integer value) { this.LineNumberGreaterThanOrEqualTo = value; return this; } public Integer getLineNumberGreaterThan() { return LineNumberGreaterThan; } public SO_ForwardOrderScheduleBatchLinesQuery setLineNumberGreaterThan(Integer value) { this.LineNumberGreaterThan = value; return this; } public Integer getLineNumberLessThan() { return LineNumberLessThan; } public SO_ForwardOrderScheduleBatchLinesQuery setLineNumberLessThan(Integer value) { this.LineNumberLessThan = value; return this; } public Integer getLineNumberLessThanOrEqualTo() { return LineNumberLessThanOrEqualTo; } public SO_ForwardOrderScheduleBatchLinesQuery setLineNumberLessThanOrEqualTo(Integer value) { this.LineNumberLessThanOrEqualTo = value; return this; } public Integer getLineNumberNotEqualTo() { return LineNumberNotEqualTo; } public SO_ForwardOrderScheduleBatchLinesQuery setLineNumberNotEqualTo(Integer value) { this.LineNumberNotEqualTo = value; return this; } public ArrayList getLineNumberBetween() { return LineNumberBetween; } public SO_ForwardOrderScheduleBatchLinesQuery setLineNumberBetween(ArrayList value) { this.LineNumberBetween = value; return this; } public ArrayList getLineNumberIn() { return LineNumberIn; } public SO_ForwardOrderScheduleBatchLinesQuery setLineNumberIn(ArrayList value) { this.LineNumberIn = value; return this; } public String getInvoiceID() { return InvoiceID; } public SO_ForwardOrderScheduleBatchLinesQuery setInvoiceID(String value) { this.InvoiceID = value; return this; } public String getInvoiceIDStartsWith() { return InvoiceIDStartsWith; } public SO_ForwardOrderScheduleBatchLinesQuery setInvoiceIDStartsWith(String value) { this.InvoiceIDStartsWith = value; return this; } public String getInvoiceIDEndsWith() { return InvoiceIDEndsWith; } public SO_ForwardOrderScheduleBatchLinesQuery setInvoiceIDEndsWith(String value) { this.InvoiceIDEndsWith = value; return this; } public String getInvoiceIDContains() { return InvoiceIDContains; } public SO_ForwardOrderScheduleBatchLinesQuery setInvoiceIDContains(String value) { this.InvoiceIDContains = value; return this; } public String getInvoiceIDLike() { return InvoiceIDLike; } public SO_ForwardOrderScheduleBatchLinesQuery setInvoiceIDLike(String value) { this.InvoiceIDLike = value; return this; } public ArrayList getInvoiceIDBetween() { return InvoiceIDBetween; } public SO_ForwardOrderScheduleBatchLinesQuery setInvoiceIDBetween(ArrayList value) { this.InvoiceIDBetween = value; return this; } public ArrayList getInvoiceIDIn() { return InvoiceIDIn; } public SO_ForwardOrderScheduleBatchLinesQuery setInvoiceIDIn(ArrayList value) { this.InvoiceIDIn = value; return this; } public String getInvoiceNo() { return InvoiceNo; } public SO_ForwardOrderScheduleBatchLinesQuery setInvoiceNo(String value) { this.InvoiceNo = value; return this; } public String getInvoiceNoStartsWith() { return InvoiceNoStartsWith; } public SO_ForwardOrderScheduleBatchLinesQuery setInvoiceNoStartsWith(String value) { this.InvoiceNoStartsWith = value; return this; } public String getInvoiceNoEndsWith() { return InvoiceNoEndsWith; } public SO_ForwardOrderScheduleBatchLinesQuery setInvoiceNoEndsWith(String value) { this.InvoiceNoEndsWith = value; return this; } public String getInvoiceNoContains() { return InvoiceNoContains; } public SO_ForwardOrderScheduleBatchLinesQuery setInvoiceNoContains(String value) { this.InvoiceNoContains = value; return this; } public String getInvoiceNoLike() { return InvoiceNoLike; } public SO_ForwardOrderScheduleBatchLinesQuery setInvoiceNoLike(String value) { this.InvoiceNoLike = value; return this; } public ArrayList getInvoiceNoBetween() { return InvoiceNoBetween; } public SO_ForwardOrderScheduleBatchLinesQuery setInvoiceNoBetween(ArrayList value) { this.InvoiceNoBetween = value; return this; } public ArrayList getInvoiceNoIn() { return InvoiceNoIn; } public SO_ForwardOrderScheduleBatchLinesQuery setInvoiceNoIn(ArrayList value) { this.InvoiceNoIn = value; return this; } public String getDebtorID() { return DebtorID; } public SO_ForwardOrderScheduleBatchLinesQuery setDebtorID(String value) { this.DebtorID = value; return this; } public String getDebtorIDStartsWith() { return DebtorIDStartsWith; } public SO_ForwardOrderScheduleBatchLinesQuery setDebtorIDStartsWith(String value) { this.DebtorIDStartsWith = value; return this; } public String getDebtorIDEndsWith() { return DebtorIDEndsWith; } public SO_ForwardOrderScheduleBatchLinesQuery setDebtorIDEndsWith(String value) { this.DebtorIDEndsWith = value; return this; } public String getDebtorIDContains() { return DebtorIDContains; } public SO_ForwardOrderScheduleBatchLinesQuery setDebtorIDContains(String value) { this.DebtorIDContains = value; return this; } public String getDebtorIDLike() { return DebtorIDLike; } public SO_ForwardOrderScheduleBatchLinesQuery setDebtorIDLike(String value) { this.DebtorIDLike = value; return this; } public ArrayList getDebtorIDBetween() { return DebtorIDBetween; } public SO_ForwardOrderScheduleBatchLinesQuery setDebtorIDBetween(ArrayList value) { this.DebtorIDBetween = value; return this; } public ArrayList getDebtorIDIn() { return DebtorIDIn; } public SO_ForwardOrderScheduleBatchLinesQuery setDebtorIDIn(ArrayList value) { this.DebtorIDIn = value; return this; } public String getDebtorAccountNo() { return DebtorAccountNo; } public SO_ForwardOrderScheduleBatchLinesQuery setDebtorAccountNo(String value) { this.DebtorAccountNo = value; return this; } public String getDebtorAccountNoStartsWith() { return DebtorAccountNoStartsWith; } public SO_ForwardOrderScheduleBatchLinesQuery setDebtorAccountNoStartsWith(String value) { this.DebtorAccountNoStartsWith = value; return this; } public String getDebtorAccountNoEndsWith() { return DebtorAccountNoEndsWith; } public SO_ForwardOrderScheduleBatchLinesQuery setDebtorAccountNoEndsWith(String value) { this.DebtorAccountNoEndsWith = value; return this; } public String getDebtorAccountNoContains() { return DebtorAccountNoContains; } public SO_ForwardOrderScheduleBatchLinesQuery setDebtorAccountNoContains(String value) { this.DebtorAccountNoContains = value; return this; } public String getDebtorAccountNoLike() { return DebtorAccountNoLike; } public SO_ForwardOrderScheduleBatchLinesQuery setDebtorAccountNoLike(String value) { this.DebtorAccountNoLike = value; return this; } public ArrayList getDebtorAccountNoBetween() { return DebtorAccountNoBetween; } public SO_ForwardOrderScheduleBatchLinesQuery setDebtorAccountNoBetween(ArrayList value) { this.DebtorAccountNoBetween = value; return this; } public ArrayList getDebtorAccountNoIn() { return DebtorAccountNoIn; } public SO_ForwardOrderScheduleBatchLinesQuery setDebtorAccountNoIn(ArrayList value) { this.DebtorAccountNoIn = value; return this; } public String getDebtorName() { return DebtorName; } public SO_ForwardOrderScheduleBatchLinesQuery setDebtorName(String value) { this.DebtorName = value; return this; } public String getDebtorNameStartsWith() { return DebtorNameStartsWith; } public SO_ForwardOrderScheduleBatchLinesQuery setDebtorNameStartsWith(String value) { this.DebtorNameStartsWith = value; return this; } public String getDebtorNameEndsWith() { return DebtorNameEndsWith; } public SO_ForwardOrderScheduleBatchLinesQuery setDebtorNameEndsWith(String value) { this.DebtorNameEndsWith = value; return this; } public String getDebtorNameContains() { return DebtorNameContains; } public SO_ForwardOrderScheduleBatchLinesQuery setDebtorNameContains(String value) { this.DebtorNameContains = value; return this; } public String getDebtorNameLike() { return DebtorNameLike; } public SO_ForwardOrderScheduleBatchLinesQuery setDebtorNameLike(String value) { this.DebtorNameLike = value; return this; } public ArrayList getDebtorNameBetween() { return DebtorNameBetween; } public SO_ForwardOrderScheduleBatchLinesQuery setDebtorNameBetween(ArrayList value) { this.DebtorNameBetween = value; return this; } public ArrayList getDebtorNameIn() { return DebtorNameIn; } public SO_ForwardOrderScheduleBatchLinesQuery setDebtorNameIn(ArrayList value) { this.DebtorNameIn = value; return this; } public String getInvoiceLineID() { return InvoiceLineID; } public SO_ForwardOrderScheduleBatchLinesQuery setInvoiceLineID(String value) { this.InvoiceLineID = value; return this; } public String getInvoiceLineIDStartsWith() { return InvoiceLineIDStartsWith; } public SO_ForwardOrderScheduleBatchLinesQuery setInvoiceLineIDStartsWith(String value) { this.InvoiceLineIDStartsWith = value; return this; } public String getInvoiceLineIDEndsWith() { return InvoiceLineIDEndsWith; } public SO_ForwardOrderScheduleBatchLinesQuery setInvoiceLineIDEndsWith(String value) { this.InvoiceLineIDEndsWith = value; return this; } public String getInvoiceLineIDContains() { return InvoiceLineIDContains; } public SO_ForwardOrderScheduleBatchLinesQuery setInvoiceLineIDContains(String value) { this.InvoiceLineIDContains = value; return this; } public String getInvoiceLineIDLike() { return InvoiceLineIDLike; } public SO_ForwardOrderScheduleBatchLinesQuery setInvoiceLineIDLike(String value) { this.InvoiceLineIDLike = value; return this; } public ArrayList getInvoiceLineIDBetween() { return InvoiceLineIDBetween; } public SO_ForwardOrderScheduleBatchLinesQuery setInvoiceLineIDBetween(ArrayList value) { this.InvoiceLineIDBetween = value; return this; } public ArrayList getInvoiceLineIDIn() { return InvoiceLineIDIn; } public SO_ForwardOrderScheduleBatchLinesQuery setInvoiceLineIDIn(ArrayList value) { this.InvoiceLineIDIn = value; return this; } public String getInventoryID() { return InventoryID; } public SO_ForwardOrderScheduleBatchLinesQuery setInventoryID(String value) { this.InventoryID = value; return this; } public String getInventoryIDStartsWith() { return InventoryIDStartsWith; } public SO_ForwardOrderScheduleBatchLinesQuery setInventoryIDStartsWith(String value) { this.InventoryIDStartsWith = value; return this; } public String getInventoryIDEndsWith() { return InventoryIDEndsWith; } public SO_ForwardOrderScheduleBatchLinesQuery setInventoryIDEndsWith(String value) { this.InventoryIDEndsWith = value; return this; } public String getInventoryIDContains() { return InventoryIDContains; } public SO_ForwardOrderScheduleBatchLinesQuery setInventoryIDContains(String value) { this.InventoryIDContains = value; return this; } public String getInventoryIDLike() { return InventoryIDLike; } public SO_ForwardOrderScheduleBatchLinesQuery setInventoryIDLike(String value) { this.InventoryIDLike = value; return this; } public ArrayList getInventoryIDBetween() { return InventoryIDBetween; } public SO_ForwardOrderScheduleBatchLinesQuery setInventoryIDBetween(ArrayList value) { this.InventoryIDBetween = value; return this; } public ArrayList getInventoryIDIn() { return InventoryIDIn; } public SO_ForwardOrderScheduleBatchLinesQuery setInventoryIDIn(ArrayList value) { this.InventoryIDIn = value; return this; } public String getPartNo() { return PartNo; } public SO_ForwardOrderScheduleBatchLinesQuery setPartNo(String value) { this.PartNo = value; return this; } public String getPartNoStartsWith() { return PartNoStartsWith; } public SO_ForwardOrderScheduleBatchLinesQuery setPartNoStartsWith(String value) { this.PartNoStartsWith = value; return this; } public String getPartNoEndsWith() { return PartNoEndsWith; } public SO_ForwardOrderScheduleBatchLinesQuery setPartNoEndsWith(String value) { this.PartNoEndsWith = value; return this; } public String getPartNoContains() { return PartNoContains; } public SO_ForwardOrderScheduleBatchLinesQuery setPartNoContains(String value) { this.PartNoContains = value; return this; } public String getPartNoLike() { return PartNoLike; } public SO_ForwardOrderScheduleBatchLinesQuery setPartNoLike(String value) { this.PartNoLike = value; return this; } public ArrayList getPartNoBetween() { return PartNoBetween; } public SO_ForwardOrderScheduleBatchLinesQuery setPartNoBetween(ArrayList value) { this.PartNoBetween = value; return this; } public ArrayList getPartNoIn() { return PartNoIn; } public SO_ForwardOrderScheduleBatchLinesQuery setPartNoIn(ArrayList value) { this.PartNoIn = value; return this; } public String getDescription() { return Description; } public SO_ForwardOrderScheduleBatchLinesQuery setDescription(String value) { this.Description = value; return this; } public String getDescriptionStartsWith() { return DescriptionStartsWith; } public SO_ForwardOrderScheduleBatchLinesQuery setDescriptionStartsWith(String value) { this.DescriptionStartsWith = value; return this; } public String getDescriptionEndsWith() { return DescriptionEndsWith; } public SO_ForwardOrderScheduleBatchLinesQuery setDescriptionEndsWith(String value) { this.DescriptionEndsWith = value; return this; } public String getDescriptionContains() { return DescriptionContains; } public SO_ForwardOrderScheduleBatchLinesQuery setDescriptionContains(String value) { this.DescriptionContains = value; return this; } public String getDescriptionLike() { return DescriptionLike; } public SO_ForwardOrderScheduleBatchLinesQuery setDescriptionLike(String value) { this.DescriptionLike = value; return this; } public ArrayList getDescriptionBetween() { return DescriptionBetween; } public SO_ForwardOrderScheduleBatchLinesQuery setDescriptionBetween(ArrayList value) { this.DescriptionBetween = value; return this; } public ArrayList getDescriptionIn() { return DescriptionIn; } public SO_ForwardOrderScheduleBatchLinesQuery setDescriptionIn(ArrayList value) { this.DescriptionIn = value; return this; } public BigDecimal getQuantity() { return Quantity; } public SO_ForwardOrderScheduleBatchLinesQuery setQuantity(BigDecimal value) { this.Quantity = value; return this; } public BigDecimal getQuantityGreaterThanOrEqualTo() { return QuantityGreaterThanOrEqualTo; } public SO_ForwardOrderScheduleBatchLinesQuery setQuantityGreaterThanOrEqualTo(BigDecimal value) { this.QuantityGreaterThanOrEqualTo = value; return this; } public BigDecimal getQuantityGreaterThan() { return QuantityGreaterThan; } public SO_ForwardOrderScheduleBatchLinesQuery setQuantityGreaterThan(BigDecimal value) { this.QuantityGreaterThan = value; return this; } public BigDecimal getQuantityLessThan() { return QuantityLessThan; } public SO_ForwardOrderScheduleBatchLinesQuery setQuantityLessThan(BigDecimal value) { this.QuantityLessThan = value; return this; } public BigDecimal getQuantityLessThanOrEqualTo() { return QuantityLessThanOrEqualTo; } public SO_ForwardOrderScheduleBatchLinesQuery setQuantityLessThanOrEqualTo(BigDecimal value) { this.QuantityLessThanOrEqualTo = value; return this; } public BigDecimal getQuantityNotEqualTo() { return QuantityNotEqualTo; } public SO_ForwardOrderScheduleBatchLinesQuery setQuantityNotEqualTo(BigDecimal value) { this.QuantityNotEqualTo = value; return this; } public ArrayList getQuantityBetween() { return QuantityBetween; } public SO_ForwardOrderScheduleBatchLinesQuery setQuantityBetween(ArrayList value) { this.QuantityBetween = value; return this; } public ArrayList getQuantityIn() { return QuantityIn; } public SO_ForwardOrderScheduleBatchLinesQuery setQuantityIn(ArrayList value) { this.QuantityIn = value; return this; } public Date getForwardOrderDate() { return ForwardOrderDate; } public SO_ForwardOrderScheduleBatchLinesQuery setForwardOrderDate(Date value) { this.ForwardOrderDate = value; return this; } public Date getForwardOrderDateGreaterThanOrEqualTo() { return ForwardOrderDateGreaterThanOrEqualTo; } public SO_ForwardOrderScheduleBatchLinesQuery setForwardOrderDateGreaterThanOrEqualTo(Date value) { this.ForwardOrderDateGreaterThanOrEqualTo = value; return this; } public Date getForwardOrderDateGreaterThan() { return ForwardOrderDateGreaterThan; } public SO_ForwardOrderScheduleBatchLinesQuery setForwardOrderDateGreaterThan(Date value) { this.ForwardOrderDateGreaterThan = value; return this; } public Date getForwardOrderDateLessThan() { return ForwardOrderDateLessThan; } public SO_ForwardOrderScheduleBatchLinesQuery setForwardOrderDateLessThan(Date value) { this.ForwardOrderDateLessThan = value; return this; } public Date getForwardOrderDateLessThanOrEqualTo() { return ForwardOrderDateLessThanOrEqualTo; } public SO_ForwardOrderScheduleBatchLinesQuery setForwardOrderDateLessThanOrEqualTo(Date value) { this.ForwardOrderDateLessThanOrEqualTo = value; return this; } public Date getForwardOrderDateNotEqualTo() { return ForwardOrderDateNotEqualTo; } public SO_ForwardOrderScheduleBatchLinesQuery setForwardOrderDateNotEqualTo(Date value) { this.ForwardOrderDateNotEqualTo = value; return this; } public ArrayList getForwardOrderDateBetween() { return ForwardOrderDateBetween; } public SO_ForwardOrderScheduleBatchLinesQuery setForwardOrderDateBetween(ArrayList value) { this.ForwardOrderDateBetween = value; return this; } public ArrayList getForwardOrderDateIn() { return ForwardOrderDateIn; } public SO_ForwardOrderScheduleBatchLinesQuery setForwardOrderDateIn(ArrayList value) { this.ForwardOrderDateIn = value; return this; } public Date getCurrentScheduledDate() { return CurrentScheduledDate; } public SO_ForwardOrderScheduleBatchLinesQuery setCurrentScheduledDate(Date value) { this.CurrentScheduledDate = value; return this; } public Date getCurrentScheduledDateGreaterThanOrEqualTo() { return CurrentScheduledDateGreaterThanOrEqualTo; } public SO_ForwardOrderScheduleBatchLinesQuery setCurrentScheduledDateGreaterThanOrEqualTo(Date value) { this.CurrentScheduledDateGreaterThanOrEqualTo = value; return this; } public Date getCurrentScheduledDateGreaterThan() { return CurrentScheduledDateGreaterThan; } public SO_ForwardOrderScheduleBatchLinesQuery setCurrentScheduledDateGreaterThan(Date value) { this.CurrentScheduledDateGreaterThan = value; return this; } public Date getCurrentScheduledDateLessThan() { return CurrentScheduledDateLessThan; } public SO_ForwardOrderScheduleBatchLinesQuery setCurrentScheduledDateLessThan(Date value) { this.CurrentScheduledDateLessThan = value; return this; } public Date getCurrentScheduledDateLessThanOrEqualTo() { return CurrentScheduledDateLessThanOrEqualTo; } public SO_ForwardOrderScheduleBatchLinesQuery setCurrentScheduledDateLessThanOrEqualTo(Date value) { this.CurrentScheduledDateLessThanOrEqualTo = value; return this; } public Date getCurrentScheduledDateNotEqualTo() { return CurrentScheduledDateNotEqualTo; } public SO_ForwardOrderScheduleBatchLinesQuery setCurrentScheduledDateNotEqualTo(Date value) { this.CurrentScheduledDateNotEqualTo = value; return this; } public ArrayList getCurrentScheduledDateBetween() { return CurrentScheduledDateBetween; } public SO_ForwardOrderScheduleBatchLinesQuery setCurrentScheduledDateBetween(ArrayList value) { this.CurrentScheduledDateBetween = value; return this; } public ArrayList getCurrentScheduledDateIn() { return CurrentScheduledDateIn; } public SO_ForwardOrderScheduleBatchLinesQuery setCurrentScheduledDateIn(ArrayList value) { this.CurrentScheduledDateIn = value; return this; } public Date getNewScheduledDate() { return NewScheduledDate; } public SO_ForwardOrderScheduleBatchLinesQuery setNewScheduledDate(Date value) { this.NewScheduledDate = value; return this; } public Date getNewScheduledDateGreaterThanOrEqualTo() { return NewScheduledDateGreaterThanOrEqualTo; } public SO_ForwardOrderScheduleBatchLinesQuery setNewScheduledDateGreaterThanOrEqualTo(Date value) { this.NewScheduledDateGreaterThanOrEqualTo = value; return this; } public Date getNewScheduledDateGreaterThan() { return NewScheduledDateGreaterThan; } public SO_ForwardOrderScheduleBatchLinesQuery setNewScheduledDateGreaterThan(Date value) { this.NewScheduledDateGreaterThan = value; return this; } public Date getNewScheduledDateLessThan() { return NewScheduledDateLessThan; } public SO_ForwardOrderScheduleBatchLinesQuery setNewScheduledDateLessThan(Date value) { this.NewScheduledDateLessThan = value; return this; } public Date getNewScheduledDateLessThanOrEqualTo() { return NewScheduledDateLessThanOrEqualTo; } public SO_ForwardOrderScheduleBatchLinesQuery setNewScheduledDateLessThanOrEqualTo(Date value) { this.NewScheduledDateLessThanOrEqualTo = value; return this; } public Date getNewScheduledDateNotEqualTo() { return NewScheduledDateNotEqualTo; } public SO_ForwardOrderScheduleBatchLinesQuery setNewScheduledDateNotEqualTo(Date value) { this.NewScheduledDateNotEqualTo = value; return this; } public ArrayList getNewScheduledDateBetween() { return NewScheduledDateBetween; } public SO_ForwardOrderScheduleBatchLinesQuery setNewScheduledDateBetween(ArrayList value) { this.NewScheduledDateBetween = value; return this; } public ArrayList getNewScheduledDateIn() { return NewScheduledDateIn; } public SO_ForwardOrderScheduleBatchLinesQuery setNewScheduledDateIn(ArrayList value) { this.NewScheduledDateIn = value; return this; } public Boolean isUpdateFailed() { return UpdateFailed; } public SO_ForwardOrderScheduleBatchLinesQuery setUpdateFailed(Boolean value) { this.UpdateFailed = value; return this; } public String getFailReason() { return FailReason; } public SO_ForwardOrderScheduleBatchLinesQuery setFailReason(String value) { this.FailReason = value; return this; } public String getFailReasonStartsWith() { return FailReasonStartsWith; } public SO_ForwardOrderScheduleBatchLinesQuery setFailReasonStartsWith(String value) { this.FailReasonStartsWith = value; return this; } public String getFailReasonEndsWith() { return FailReasonEndsWith; } public SO_ForwardOrderScheduleBatchLinesQuery setFailReasonEndsWith(String value) { this.FailReasonEndsWith = value; return this; } public String getFailReasonContains() { return FailReasonContains; } public SO_ForwardOrderScheduleBatchLinesQuery setFailReasonContains(String value) { this.FailReasonContains = value; return this; } public String getFailReasonLike() { return FailReasonLike; } public SO_ForwardOrderScheduleBatchLinesQuery setFailReasonLike(String value) { this.FailReasonLike = value; return this; } public ArrayList getFailReasonBetween() { return FailReasonBetween; } public SO_ForwardOrderScheduleBatchLinesQuery setFailReasonBetween(ArrayList value) { this.FailReasonBetween = value; return this; } public ArrayList getFailReasonIn() { return FailReasonIn; } public SO_ForwardOrderScheduleBatchLinesQuery setFailReasonIn(ArrayList value) { this.FailReasonIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class SO_FoundStockAuditQuery extends QueryDb implements IReturn> { public String RecID = null; public String RecIDStartsWith = null; public String RecIDEndsWith = null; public String RecIDContains = null; public String RecIDLike = null; public ArrayList RecIDBetween = null; public ArrayList RecIDIn = null; public String DestInvoiceID = null; public String DestInvoiceIDStartsWith = null; public String DestInvoiceIDEndsWith = null; public String DestInvoiceIDContains = null; public String DestInvoiceIDLike = null; public ArrayList DestInvoiceIDBetween = null; public ArrayList DestInvoiceIDIn = null; public String DestHistoryID = null; public String DestHistoryIDStartsWith = null; public String DestHistoryIDEndsWith = null; public String DestHistoryIDContains = null; public String DestHistoryIDLike = null; public ArrayList DestHistoryIDBetween = null; public ArrayList DestHistoryIDIn = null; public String DestInvoiceLineID = null; public String DestInvoiceLineIDStartsWith = null; public String DestInvoiceLineIDEndsWith = null; public String DestInvoiceLineIDContains = null; public String DestInvoiceLineIDLike = null; public ArrayList DestInvoiceLineIDBetween = null; public ArrayList DestInvoiceLineIDIn = null; public BigDecimal DestQuantityRequired = null; public BigDecimal DestQuantityRequiredGreaterThanOrEqualTo = null; public BigDecimal DestQuantityRequiredGreaterThan = null; public BigDecimal DestQuantityRequiredLessThan = null; public BigDecimal DestQuantityRequiredLessThanOrEqualTo = null; public BigDecimal DestQuantityRequiredNotEqualTo = null; public ArrayList DestQuantityRequiredBetween = null; public ArrayList DestQuantityRequiredIn = null; public String getRecID() { return RecID; } public SO_FoundStockAuditQuery setRecID(String value) { this.RecID = value; return this; } public String getRecIDStartsWith() { return RecIDStartsWith; } public SO_FoundStockAuditQuery setRecIDStartsWith(String value) { this.RecIDStartsWith = value; return this; } public String getRecIDEndsWith() { return RecIDEndsWith; } public SO_FoundStockAuditQuery setRecIDEndsWith(String value) { this.RecIDEndsWith = value; return this; } public String getRecIDContains() { return RecIDContains; } public SO_FoundStockAuditQuery setRecIDContains(String value) { this.RecIDContains = value; return this; } public String getRecIDLike() { return RecIDLike; } public SO_FoundStockAuditQuery setRecIDLike(String value) { this.RecIDLike = value; return this; } public ArrayList getRecIDBetween() { return RecIDBetween; } public SO_FoundStockAuditQuery setRecIDBetween(ArrayList value) { this.RecIDBetween = value; return this; } public ArrayList getRecIDIn() { return RecIDIn; } public SO_FoundStockAuditQuery setRecIDIn(ArrayList value) { this.RecIDIn = value; return this; } public String getDestInvoiceID() { return DestInvoiceID; } public SO_FoundStockAuditQuery setDestInvoiceID(String value) { this.DestInvoiceID = value; return this; } public String getDestInvoiceIDStartsWith() { return DestInvoiceIDStartsWith; } public SO_FoundStockAuditQuery setDestInvoiceIDStartsWith(String value) { this.DestInvoiceIDStartsWith = value; return this; } public String getDestInvoiceIDEndsWith() { return DestInvoiceIDEndsWith; } public SO_FoundStockAuditQuery setDestInvoiceIDEndsWith(String value) { this.DestInvoiceIDEndsWith = value; return this; } public String getDestInvoiceIDContains() { return DestInvoiceIDContains; } public SO_FoundStockAuditQuery setDestInvoiceIDContains(String value) { this.DestInvoiceIDContains = value; return this; } public String getDestInvoiceIDLike() { return DestInvoiceIDLike; } public SO_FoundStockAuditQuery setDestInvoiceIDLike(String value) { this.DestInvoiceIDLike = value; return this; } public ArrayList getDestInvoiceIDBetween() { return DestInvoiceIDBetween; } public SO_FoundStockAuditQuery setDestInvoiceIDBetween(ArrayList value) { this.DestInvoiceIDBetween = value; return this; } public ArrayList getDestInvoiceIDIn() { return DestInvoiceIDIn; } public SO_FoundStockAuditQuery setDestInvoiceIDIn(ArrayList value) { this.DestInvoiceIDIn = value; return this; } public String getDestHistoryID() { return DestHistoryID; } public SO_FoundStockAuditQuery setDestHistoryID(String value) { this.DestHistoryID = value; return this; } public String getDestHistoryIDStartsWith() { return DestHistoryIDStartsWith; } public SO_FoundStockAuditQuery setDestHistoryIDStartsWith(String value) { this.DestHistoryIDStartsWith = value; return this; } public String getDestHistoryIDEndsWith() { return DestHistoryIDEndsWith; } public SO_FoundStockAuditQuery setDestHistoryIDEndsWith(String value) { this.DestHistoryIDEndsWith = value; return this; } public String getDestHistoryIDContains() { return DestHistoryIDContains; } public SO_FoundStockAuditQuery setDestHistoryIDContains(String value) { this.DestHistoryIDContains = value; return this; } public String getDestHistoryIDLike() { return DestHistoryIDLike; } public SO_FoundStockAuditQuery setDestHistoryIDLike(String value) { this.DestHistoryIDLike = value; return this; } public ArrayList getDestHistoryIDBetween() { return DestHistoryIDBetween; } public SO_FoundStockAuditQuery setDestHistoryIDBetween(ArrayList value) { this.DestHistoryIDBetween = value; return this; } public ArrayList getDestHistoryIDIn() { return DestHistoryIDIn; } public SO_FoundStockAuditQuery setDestHistoryIDIn(ArrayList value) { this.DestHistoryIDIn = value; return this; } public String getDestInvoiceLineID() { return DestInvoiceLineID; } public SO_FoundStockAuditQuery setDestInvoiceLineID(String value) { this.DestInvoiceLineID = value; return this; } public String getDestInvoiceLineIDStartsWith() { return DestInvoiceLineIDStartsWith; } public SO_FoundStockAuditQuery setDestInvoiceLineIDStartsWith(String value) { this.DestInvoiceLineIDStartsWith = value; return this; } public String getDestInvoiceLineIDEndsWith() { return DestInvoiceLineIDEndsWith; } public SO_FoundStockAuditQuery setDestInvoiceLineIDEndsWith(String value) { this.DestInvoiceLineIDEndsWith = value; return this; } public String getDestInvoiceLineIDContains() { return DestInvoiceLineIDContains; } public SO_FoundStockAuditQuery setDestInvoiceLineIDContains(String value) { this.DestInvoiceLineIDContains = value; return this; } public String getDestInvoiceLineIDLike() { return DestInvoiceLineIDLike; } public SO_FoundStockAuditQuery setDestInvoiceLineIDLike(String value) { this.DestInvoiceLineIDLike = value; return this; } public ArrayList getDestInvoiceLineIDBetween() { return DestInvoiceLineIDBetween; } public SO_FoundStockAuditQuery setDestInvoiceLineIDBetween(ArrayList value) { this.DestInvoiceLineIDBetween = value; return this; } public ArrayList getDestInvoiceLineIDIn() { return DestInvoiceLineIDIn; } public SO_FoundStockAuditQuery setDestInvoiceLineIDIn(ArrayList value) { this.DestInvoiceLineIDIn = value; return this; } public BigDecimal getDestQuantityRequired() { return DestQuantityRequired; } public SO_FoundStockAuditQuery setDestQuantityRequired(BigDecimal value) { this.DestQuantityRequired = value; return this; } public BigDecimal getDestQuantityRequiredGreaterThanOrEqualTo() { return DestQuantityRequiredGreaterThanOrEqualTo; } public SO_FoundStockAuditQuery setDestQuantityRequiredGreaterThanOrEqualTo(BigDecimal value) { this.DestQuantityRequiredGreaterThanOrEqualTo = value; return this; } public BigDecimal getDestQuantityRequiredGreaterThan() { return DestQuantityRequiredGreaterThan; } public SO_FoundStockAuditQuery setDestQuantityRequiredGreaterThan(BigDecimal value) { this.DestQuantityRequiredGreaterThan = value; return this; } public BigDecimal getDestQuantityRequiredLessThan() { return DestQuantityRequiredLessThan; } public SO_FoundStockAuditQuery setDestQuantityRequiredLessThan(BigDecimal value) { this.DestQuantityRequiredLessThan = value; return this; } public BigDecimal getDestQuantityRequiredLessThanOrEqualTo() { return DestQuantityRequiredLessThanOrEqualTo; } public SO_FoundStockAuditQuery setDestQuantityRequiredLessThanOrEqualTo(BigDecimal value) { this.DestQuantityRequiredLessThanOrEqualTo = value; return this; } public BigDecimal getDestQuantityRequiredNotEqualTo() { return DestQuantityRequiredNotEqualTo; } public SO_FoundStockAuditQuery setDestQuantityRequiredNotEqualTo(BigDecimal value) { this.DestQuantityRequiredNotEqualTo = value; return this; } public ArrayList getDestQuantityRequiredBetween() { return DestQuantityRequiredBetween; } public SO_FoundStockAuditQuery setDestQuantityRequiredBetween(ArrayList value) { this.DestQuantityRequiredBetween = value; return this; } public ArrayList getDestQuantityRequiredIn() { return DestQuantityRequiredIn; } public SO_FoundStockAuditQuery setDestQuantityRequiredIn(ArrayList value) { this.DestQuantityRequiredIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class SO_FoundStockAuditLinesQuery extends QueryDb implements IReturn> { public String RecID = null; public String RecIDStartsWith = null; public String RecIDEndsWith = null; public String RecIDContains = null; public String RecIDLike = null; public ArrayList RecIDBetween = null; public ArrayList RecIDIn = null; public String FoundStockAuditID = null; public String FoundStockAuditIDStartsWith = null; public String FoundStockAuditIDEndsWith = null; public String FoundStockAuditIDContains = null; public String FoundStockAuditIDLike = null; public ArrayList FoundStockAuditIDBetween = null; public ArrayList FoundStockAuditIDIn = null; public String SourceInvoiceID = null; public String SourceInvoiceIDStartsWith = null; public String SourceInvoiceIDEndsWith = null; public String SourceInvoiceIDContains = null; public String SourceInvoiceIDLike = null; public ArrayList SourceInvoiceIDBetween = null; public ArrayList SourceInvoiceIDIn = null; public String SourceHistoryID = null; public String SourceHistoryIDStartsWith = null; public String SourceHistoryIDEndsWith = null; public String SourceHistoryIDContains = null; public String SourceHistoryIDLike = null; public ArrayList SourceHistoryIDBetween = null; public ArrayList SourceHistoryIDIn = null; public String SourceInvoiceLineID = null; public String SourceInvoiceLineIDStartsWith = null; public String SourceInvoiceLineIDEndsWith = null; public String SourceInvoiceLineIDContains = null; public String SourceInvoiceLineIDLike = null; public ArrayList SourceInvoiceLineIDBetween = null; public ArrayList SourceInvoiceLineIDIn = null; public BigDecimal QuantityTaken = null; public BigDecimal QuantityTakenGreaterThanOrEqualTo = null; public BigDecimal QuantityTakenGreaterThan = null; public BigDecimal QuantityTakenLessThan = null; public BigDecimal QuantityTakenLessThanOrEqualTo = null; public BigDecimal QuantityTakenNotEqualTo = null; public ArrayList QuantityTakenBetween = null; public ArrayList QuantityTakenIn = null; public String getRecID() { return RecID; } public SO_FoundStockAuditLinesQuery setRecID(String value) { this.RecID = value; return this; } public String getRecIDStartsWith() { return RecIDStartsWith; } public SO_FoundStockAuditLinesQuery setRecIDStartsWith(String value) { this.RecIDStartsWith = value; return this; } public String getRecIDEndsWith() { return RecIDEndsWith; } public SO_FoundStockAuditLinesQuery setRecIDEndsWith(String value) { this.RecIDEndsWith = value; return this; } public String getRecIDContains() { return RecIDContains; } public SO_FoundStockAuditLinesQuery setRecIDContains(String value) { this.RecIDContains = value; return this; } public String getRecIDLike() { return RecIDLike; } public SO_FoundStockAuditLinesQuery setRecIDLike(String value) { this.RecIDLike = value; return this; } public ArrayList getRecIDBetween() { return RecIDBetween; } public SO_FoundStockAuditLinesQuery setRecIDBetween(ArrayList value) { this.RecIDBetween = value; return this; } public ArrayList getRecIDIn() { return RecIDIn; } public SO_FoundStockAuditLinesQuery setRecIDIn(ArrayList value) { this.RecIDIn = value; return this; } public String getFoundStockAuditID() { return FoundStockAuditID; } public SO_FoundStockAuditLinesQuery setFoundStockAuditID(String value) { this.FoundStockAuditID = value; return this; } public String getFoundStockAuditIDStartsWith() { return FoundStockAuditIDStartsWith; } public SO_FoundStockAuditLinesQuery setFoundStockAuditIDStartsWith(String value) { this.FoundStockAuditIDStartsWith = value; return this; } public String getFoundStockAuditIDEndsWith() { return FoundStockAuditIDEndsWith; } public SO_FoundStockAuditLinesQuery setFoundStockAuditIDEndsWith(String value) { this.FoundStockAuditIDEndsWith = value; return this; } public String getFoundStockAuditIDContains() { return FoundStockAuditIDContains; } public SO_FoundStockAuditLinesQuery setFoundStockAuditIDContains(String value) { this.FoundStockAuditIDContains = value; return this; } public String getFoundStockAuditIDLike() { return FoundStockAuditIDLike; } public SO_FoundStockAuditLinesQuery setFoundStockAuditIDLike(String value) { this.FoundStockAuditIDLike = value; return this; } public ArrayList getFoundStockAuditIDBetween() { return FoundStockAuditIDBetween; } public SO_FoundStockAuditLinesQuery setFoundStockAuditIDBetween(ArrayList value) { this.FoundStockAuditIDBetween = value; return this; } public ArrayList getFoundStockAuditIDIn() { return FoundStockAuditIDIn; } public SO_FoundStockAuditLinesQuery setFoundStockAuditIDIn(ArrayList value) { this.FoundStockAuditIDIn = value; return this; } public String getSourceInvoiceID() { return SourceInvoiceID; } public SO_FoundStockAuditLinesQuery setSourceInvoiceID(String value) { this.SourceInvoiceID = value; return this; } public String getSourceInvoiceIDStartsWith() { return SourceInvoiceIDStartsWith; } public SO_FoundStockAuditLinesQuery setSourceInvoiceIDStartsWith(String value) { this.SourceInvoiceIDStartsWith = value; return this; } public String getSourceInvoiceIDEndsWith() { return SourceInvoiceIDEndsWith; } public SO_FoundStockAuditLinesQuery setSourceInvoiceIDEndsWith(String value) { this.SourceInvoiceIDEndsWith = value; return this; } public String getSourceInvoiceIDContains() { return SourceInvoiceIDContains; } public SO_FoundStockAuditLinesQuery setSourceInvoiceIDContains(String value) { this.SourceInvoiceIDContains = value; return this; } public String getSourceInvoiceIDLike() { return SourceInvoiceIDLike; } public SO_FoundStockAuditLinesQuery setSourceInvoiceIDLike(String value) { this.SourceInvoiceIDLike = value; return this; } public ArrayList getSourceInvoiceIDBetween() { return SourceInvoiceIDBetween; } public SO_FoundStockAuditLinesQuery setSourceInvoiceIDBetween(ArrayList value) { this.SourceInvoiceIDBetween = value; return this; } public ArrayList getSourceInvoiceIDIn() { return SourceInvoiceIDIn; } public SO_FoundStockAuditLinesQuery setSourceInvoiceIDIn(ArrayList value) { this.SourceInvoiceIDIn = value; return this; } public String getSourceHistoryID() { return SourceHistoryID; } public SO_FoundStockAuditLinesQuery setSourceHistoryID(String value) { this.SourceHistoryID = value; return this; } public String getSourceHistoryIDStartsWith() { return SourceHistoryIDStartsWith; } public SO_FoundStockAuditLinesQuery setSourceHistoryIDStartsWith(String value) { this.SourceHistoryIDStartsWith = value; return this; } public String getSourceHistoryIDEndsWith() { return SourceHistoryIDEndsWith; } public SO_FoundStockAuditLinesQuery setSourceHistoryIDEndsWith(String value) { this.SourceHistoryIDEndsWith = value; return this; } public String getSourceHistoryIDContains() { return SourceHistoryIDContains; } public SO_FoundStockAuditLinesQuery setSourceHistoryIDContains(String value) { this.SourceHistoryIDContains = value; return this; } public String getSourceHistoryIDLike() { return SourceHistoryIDLike; } public SO_FoundStockAuditLinesQuery setSourceHistoryIDLike(String value) { this.SourceHistoryIDLike = value; return this; } public ArrayList getSourceHistoryIDBetween() { return SourceHistoryIDBetween; } public SO_FoundStockAuditLinesQuery setSourceHistoryIDBetween(ArrayList value) { this.SourceHistoryIDBetween = value; return this; } public ArrayList getSourceHistoryIDIn() { return SourceHistoryIDIn; } public SO_FoundStockAuditLinesQuery setSourceHistoryIDIn(ArrayList value) { this.SourceHistoryIDIn = value; return this; } public String getSourceInvoiceLineID() { return SourceInvoiceLineID; } public SO_FoundStockAuditLinesQuery setSourceInvoiceLineID(String value) { this.SourceInvoiceLineID = value; return this; } public String getSourceInvoiceLineIDStartsWith() { return SourceInvoiceLineIDStartsWith; } public SO_FoundStockAuditLinesQuery setSourceInvoiceLineIDStartsWith(String value) { this.SourceInvoiceLineIDStartsWith = value; return this; } public String getSourceInvoiceLineIDEndsWith() { return SourceInvoiceLineIDEndsWith; } public SO_FoundStockAuditLinesQuery setSourceInvoiceLineIDEndsWith(String value) { this.SourceInvoiceLineIDEndsWith = value; return this; } public String getSourceInvoiceLineIDContains() { return SourceInvoiceLineIDContains; } public SO_FoundStockAuditLinesQuery setSourceInvoiceLineIDContains(String value) { this.SourceInvoiceLineIDContains = value; return this; } public String getSourceInvoiceLineIDLike() { return SourceInvoiceLineIDLike; } public SO_FoundStockAuditLinesQuery setSourceInvoiceLineIDLike(String value) { this.SourceInvoiceLineIDLike = value; return this; } public ArrayList getSourceInvoiceLineIDBetween() { return SourceInvoiceLineIDBetween; } public SO_FoundStockAuditLinesQuery setSourceInvoiceLineIDBetween(ArrayList value) { this.SourceInvoiceLineIDBetween = value; return this; } public ArrayList getSourceInvoiceLineIDIn() { return SourceInvoiceLineIDIn; } public SO_FoundStockAuditLinesQuery setSourceInvoiceLineIDIn(ArrayList value) { this.SourceInvoiceLineIDIn = value; return this; } public BigDecimal getQuantityTaken() { return QuantityTaken; } public SO_FoundStockAuditLinesQuery setQuantityTaken(BigDecimal value) { this.QuantityTaken = value; return this; } public BigDecimal getQuantityTakenGreaterThanOrEqualTo() { return QuantityTakenGreaterThanOrEqualTo; } public SO_FoundStockAuditLinesQuery setQuantityTakenGreaterThanOrEqualTo(BigDecimal value) { this.QuantityTakenGreaterThanOrEqualTo = value; return this; } public BigDecimal getQuantityTakenGreaterThan() { return QuantityTakenGreaterThan; } public SO_FoundStockAuditLinesQuery setQuantityTakenGreaterThan(BigDecimal value) { this.QuantityTakenGreaterThan = value; return this; } public BigDecimal getQuantityTakenLessThan() { return QuantityTakenLessThan; } public SO_FoundStockAuditLinesQuery setQuantityTakenLessThan(BigDecimal value) { this.QuantityTakenLessThan = value; return this; } public BigDecimal getQuantityTakenLessThanOrEqualTo() { return QuantityTakenLessThanOrEqualTo; } public SO_FoundStockAuditLinesQuery setQuantityTakenLessThanOrEqualTo(BigDecimal value) { this.QuantityTakenLessThanOrEqualTo = value; return this; } public BigDecimal getQuantityTakenNotEqualTo() { return QuantityTakenNotEqualTo; } public SO_FoundStockAuditLinesQuery setQuantityTakenNotEqualTo(BigDecimal value) { this.QuantityTakenNotEqualTo = value; return this; } public ArrayList getQuantityTakenBetween() { return QuantityTakenBetween; } public SO_FoundStockAuditLinesQuery setQuantityTakenBetween(ArrayList value) { this.QuantityTakenBetween = value; return this; } public ArrayList getQuantityTakenIn() { return QuantityTakenIn; } public SO_FoundStockAuditLinesQuery setQuantityTakenIn(ArrayList value) { this.QuantityTakenIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @Route(Path="/Queries/SO_History", Verbs="GET") @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class SO_HistoryQuery extends QueryDb implements IReturn> { public String InvoiceHistoryID = null; public String InvoiceHistoryIDStartsWith = null; public String InvoiceHistoryIDEndsWith = null; public String InvoiceHistoryIDContains = null; public String InvoiceHistoryIDLike = null; public ArrayList InvoiceHistoryIDBetween = null; public ArrayList InvoiceHistoryIDIn = null; public String InvoiceID = null; public String InvoiceIDStartsWith = null; public String InvoiceIDEndsWith = null; public String InvoiceIDContains = null; public String InvoiceIDLike = null; public ArrayList InvoiceIDBetween = null; public ArrayList InvoiceIDIn = null; public String LastModifiedBy = null; public String LastModifiedByStartsWith = null; public String LastModifiedByEndsWith = null; public String LastModifiedByContains = null; public String LastModifiedByLike = null; public ArrayList LastModifiedByBetween = null; public ArrayList LastModifiedByIn = null; public Date RecordDate = null; public Date RecordDateGreaterThanOrEqualTo = null; public Date RecordDateGreaterThan = null; public Date RecordDateLessThan = null; public Date RecordDateLessThanOrEqualTo = null; public Date RecordDateNotEqualTo = null; public ArrayList RecordDateBetween = null; public ArrayList RecordDateIn = null; public String Ref = null; public String RefStartsWith = null; public String RefEndsWith = null; public String RefContains = null; public String RefLike = null; public ArrayList RefBetween = null; public ArrayList RefIn = null; public Short HistoryNo = null; public Short HistoryNoGreaterThanOrEqualTo = null; public Short HistoryNoGreaterThan = null; public Short HistoryNoLessThan = null; public Short HistoryNoLessThanOrEqualTo = null; public Short HistoryNoNotEqualTo = null; public ArrayList HistoryNoBetween = null; public ArrayList HistoryNoIn = null; public BigDecimal HistoryTotal = null; public BigDecimal HistoryTotalGreaterThanOrEqualTo = null; public BigDecimal HistoryTotalGreaterThan = null; public BigDecimal HistoryTotalLessThan = null; public BigDecimal HistoryTotalLessThanOrEqualTo = null; public BigDecimal HistoryTotalNotEqualTo = null; public ArrayList HistoryTotalBetween = null; public ArrayList HistoryTotalIn = null; public String DelAddress1 = null; public String DelAddress1StartsWith = null; public String DelAddress1EndsWith = null; public String DelAddress1Contains = null; public String DelAddress1Like = null; public ArrayList DelAddress1Between = null; public ArrayList DelAddress1In = null; public String DelAddress2 = null; public String DelAddress2StartsWith = null; public String DelAddress2EndsWith = null; public String DelAddress2Contains = null; public String DelAddress2Like = null; public ArrayList DelAddress2Between = null; public ArrayList DelAddress2In = null; public String DelAddress3 = null; public String DelAddress3StartsWith = null; public String DelAddress3EndsWith = null; public String DelAddress3Contains = null; public String DelAddress3Like = null; public ArrayList DelAddress3Between = null; public ArrayList DelAddress3In = null; public String DelAddress4 = null; public String DelAddress4StartsWith = null; public String DelAddress4EndsWith = null; public String DelAddress4Contains = null; public String DelAddress4Like = null; public ArrayList DelAddress4Between = null; public ArrayList DelAddress4In = null; public String PostCode = null; public String PostCodeStartsWith = null; public String PostCodeEndsWith = null; public String PostCodeContains = null; public String PostCodeLike = null; public ArrayList PostCodeBetween = null; public ArrayList PostCodeIn = null; public String Notes = null; public String NotesStartsWith = null; public String NotesEndsWith = null; public String NotesContains = null; public String NotesLike = null; public ArrayList NotesBetween = null; public ArrayList NotesIn = null; public String CourierDetails = null; public String CourierDetailsStartsWith = null; public String CourierDetailsEndsWith = null; public String CourierDetailsContains = null; public String CourierDetailsLike = null; public ArrayList CourierDetailsBetween = null; public ArrayList CourierDetailsIn = null; public String PaymentTypeID = null; public String PaymentTypeIDStartsWith = null; public String PaymentTypeIDEndsWith = null; public String PaymentTypeIDContains = null; public String PaymentTypeIDLike = null; public ArrayList PaymentTypeIDBetween = null; public ArrayList PaymentTypeIDIn = null; public String PaymentRef = null; public String PaymentRefStartsWith = null; public String PaymentRefEndsWith = null; public String PaymentRefContains = null; public String PaymentRefLike = null; public ArrayList PaymentRefBetween = null; public ArrayList PaymentRefIn = null; public BigDecimal AmountPaid = null; public BigDecimal AmountPaidGreaterThanOrEqualTo = null; public BigDecimal AmountPaidGreaterThan = null; public BigDecimal AmountPaidLessThan = null; public BigDecimal AmountPaidLessThanOrEqualTo = null; public BigDecimal AmountPaidNotEqualTo = null; public ArrayList AmountPaidBetween = null; public ArrayList AmountPaidIn = null; public String RunNo = null; public String RunNoStartsWith = null; public String RunNoEndsWith = null; public String RunNoContains = null; public String RunNoLike = null; public ArrayList RunNoBetween = null; public ArrayList RunNoIn = null; public BigDecimal CartageCharge1 = null; public BigDecimal CartageCharge1GreaterThanOrEqualTo = null; public BigDecimal CartageCharge1GreaterThan = null; public BigDecimal CartageCharge1LessThan = null; public BigDecimal CartageCharge1LessThanOrEqualTo = null; public BigDecimal CartageCharge1NotEqualTo = null; public ArrayList CartageCharge1Between = null; public ArrayList CartageCharge1In = null; public BigDecimal CartageCharge2 = null; public BigDecimal CartageCharge2GreaterThanOrEqualTo = null; public BigDecimal CartageCharge2GreaterThan = null; public BigDecimal CartageCharge2LessThan = null; public BigDecimal CartageCharge2LessThanOrEqualTo = null; public BigDecimal CartageCharge2NotEqualTo = null; public ArrayList CartageCharge2Between = null; public ArrayList CartageCharge2In = null; public BigDecimal CartageCharge3 = null; public BigDecimal CartageCharge3GreaterThanOrEqualTo = null; public BigDecimal CartageCharge3GreaterThan = null; public BigDecimal CartageCharge3LessThan = null; public BigDecimal CartageCharge3LessThanOrEqualTo = null; public BigDecimal CartageCharge3NotEqualTo = null; public ArrayList CartageCharge3Between = null; public ArrayList CartageCharge3In = null; public String DelContactName = null; public String DelContactNameStartsWith = null; public String DelContactNameEndsWith = null; public String DelContactNameContains = null; public String DelContactNameLike = null; public ArrayList DelContactNameBetween = null; public ArrayList DelContactNameIn = null; public Boolean Delivered = null; public Date DeliveredDate = null; public Date DeliveredDateGreaterThanOrEqualTo = null; public Date DeliveredDateGreaterThan = null; public Date DeliveredDateLessThan = null; public Date DeliveredDateLessThanOrEqualTo = null; public Date DeliveredDateNotEqualTo = null; public ArrayList DeliveredDateBetween = null; public ArrayList DeliveredDateIn = null; public String Cartage1TaxRateID = null; public String Cartage1TaxRateIDStartsWith = null; public String Cartage1TaxRateIDEndsWith = null; public String Cartage1TaxRateIDContains = null; public String Cartage1TaxRateIDLike = null; public ArrayList Cartage1TaxRateIDBetween = null; public ArrayList Cartage1TaxRateIDIn = null; public BigDecimal Cartage1TaxRate = null; public BigDecimal Cartage1TaxRateGreaterThanOrEqualTo = null; public BigDecimal Cartage1TaxRateGreaterThan = null; public BigDecimal Cartage1TaxRateLessThan = null; public BigDecimal Cartage1TaxRateLessThanOrEqualTo = null; public BigDecimal Cartage1TaxRateNotEqualTo = null; public ArrayList Cartage1TaxRateBetween = null; public ArrayList Cartage1TaxRateIn = null; public BigDecimal Cartage1TaxAmount = null; public BigDecimal Cartage1TaxAmountGreaterThanOrEqualTo = null; public BigDecimal Cartage1TaxAmountGreaterThan = null; public BigDecimal Cartage1TaxAmountLessThan = null; public BigDecimal Cartage1TaxAmountLessThanOrEqualTo = null; public BigDecimal Cartage1TaxAmountNotEqualTo = null; public ArrayList Cartage1TaxAmountBetween = null; public ArrayList Cartage1TaxAmountIn = null; public String Cartage2TaxRateID = null; public String Cartage2TaxRateIDStartsWith = null; public String Cartage2TaxRateIDEndsWith = null; public String Cartage2TaxRateIDContains = null; public String Cartage2TaxRateIDLike = null; public ArrayList Cartage2TaxRateIDBetween = null; public ArrayList Cartage2TaxRateIDIn = null; public BigDecimal Cartage2TaxRate = null; public BigDecimal Cartage2TaxRateGreaterThanOrEqualTo = null; public BigDecimal Cartage2TaxRateGreaterThan = null; public BigDecimal Cartage2TaxRateLessThan = null; public BigDecimal Cartage2TaxRateLessThanOrEqualTo = null; public BigDecimal Cartage2TaxRateNotEqualTo = null; public ArrayList Cartage2TaxRateBetween = null; public ArrayList Cartage2TaxRateIn = null; public BigDecimal Cartage2TaxAmount = null; public BigDecimal Cartage2TaxAmountGreaterThanOrEqualTo = null; public BigDecimal Cartage2TaxAmountGreaterThan = null; public BigDecimal Cartage2TaxAmountLessThan = null; public BigDecimal Cartage2TaxAmountLessThanOrEqualTo = null; public BigDecimal Cartage2TaxAmountNotEqualTo = null; public ArrayList Cartage2TaxAmountBetween = null; public ArrayList Cartage2TaxAmountIn = null; public String Cartage3TaxRateID = null; public String Cartage3TaxRateIDStartsWith = null; public String Cartage3TaxRateIDEndsWith = null; public String Cartage3TaxRateIDContains = null; public String Cartage3TaxRateIDLike = null; public ArrayList Cartage3TaxRateIDBetween = null; public ArrayList Cartage3TaxRateIDIn = null; public BigDecimal Cartage3TaxRate = null; public BigDecimal Cartage3TaxRateGreaterThanOrEqualTo = null; public BigDecimal Cartage3TaxRateGreaterThan = null; public BigDecimal Cartage3TaxRateLessThan = null; public BigDecimal Cartage3TaxRateLessThanOrEqualTo = null; public BigDecimal Cartage3TaxRateNotEqualTo = null; public ArrayList Cartage3TaxRateBetween = null; public ArrayList Cartage3TaxRateIn = null; public BigDecimal Cartage3TaxAmount = null; public BigDecimal Cartage3TaxAmountGreaterThanOrEqualTo = null; public BigDecimal Cartage3TaxAmountGreaterThan = null; public BigDecimal Cartage3TaxAmountLessThan = null; public BigDecimal Cartage3TaxAmountLessThanOrEqualTo = null; public BigDecimal Cartage3TaxAmountNotEqualTo = null; public ArrayList Cartage3TaxAmountBetween = null; public ArrayList Cartage3TaxAmountIn = null; public String FreightForwardAddress1 = null; public String FreightForwardAddress1StartsWith = null; public String FreightForwardAddress1EndsWith = null; public String FreightForwardAddress1Contains = null; public String FreightForwardAddress1Like = null; public ArrayList FreightForwardAddress1Between = null; public ArrayList FreightForwardAddress1In = null; public String FreightForwardAddress2 = null; public String FreightForwardAddress2StartsWith = null; public String FreightForwardAddress2EndsWith = null; public String FreightForwardAddress2Contains = null; public String FreightForwardAddress2Like = null; public ArrayList FreightForwardAddress2Between = null; public ArrayList FreightForwardAddress2In = null; public String FreightForwardAddress3 = null; public String FreightForwardAddress3StartsWith = null; public String FreightForwardAddress3EndsWith = null; public String FreightForwardAddress3Contains = null; public String FreightForwardAddress3Like = null; public ArrayList FreightForwardAddress3Between = null; public ArrayList FreightForwardAddress3In = null; public String FreightForwardAddress4 = null; public String FreightForwardAddress4StartsWith = null; public String FreightForwardAddress4EndsWith = null; public String FreightForwardAddress4Contains = null; public String FreightForwardAddress4Like = null; public ArrayList FreightForwardAddress4Between = null; public ArrayList FreightForwardAddress4In = null; public String FreightForwardNotes = null; public String FreightForwardNotesStartsWith = null; public String FreightForwardNotesEndsWith = null; public String FreightForwardNotesContains = null; public String FreightForwardNotesLike = null; public ArrayList FreightForwardNotesBetween = null; public ArrayList FreightForwardNotesIn = null; public String DBTransID = null; public String DBTransIDStartsWith = null; public String DBTransIDEndsWith = null; public String DBTransIDContains = null; public String DBTransIDLike = null; public ArrayList DBTransIDBetween = null; public ArrayList DBTransIDIn = null; public Short Status = null; public Short StatusGreaterThanOrEqualTo = null; public Short StatusGreaterThan = null; public Short StatusLessThan = null; public Short StatusLessThanOrEqualTo = null; public Short StatusNotEqualTo = null; public ArrayList StatusBetween = null; public ArrayList StatusIn = null; public String EmailAddress = null; public String EmailAddressStartsWith = null; public String EmailAddressEndsWith = null; public String EmailAddressContains = null; public String EmailAddressLike = null; public ArrayList EmailAddressBetween = null; public ArrayList EmailAddressIn = null; public String ConsignmentNote = null; public String ConsignmentNoteStartsWith = null; public String ConsignmentNoteEndsWith = null; public String ConsignmentNoteContains = null; public String ConsignmentNoteLike = null; public ArrayList ConsignmentNoteBetween = null; public ArrayList ConsignmentNoteIn = null; public String EDIASNNumber = null; public String EDIASNNumberStartsWith = null; public String EDIASNNumberEndsWith = null; public String EDIASNNumberContains = null; public String EDIASNNumberLike = null; public ArrayList EDIASNNumberBetween = null; public ArrayList EDIASNNumberIn = null; public Short EDIPickStatus = null; public Short EDIPickStatusGreaterThanOrEqualTo = null; public Short EDIPickStatusGreaterThan = null; public Short EDIPickStatusLessThan = null; public Short EDIPickStatusLessThanOrEqualTo = null; public Short EDIPickStatusNotEqualTo = null; public ArrayList EDIPickStatusBetween = null; public ArrayList EDIPickStatusIn = null; public Date DateCreated = null; public Date DateCreatedGreaterThanOrEqualTo = null; public Date DateCreatedGreaterThan = null; public Date DateCreatedLessThan = null; public Date DateCreatedLessThanOrEqualTo = null; public Date DateCreatedNotEqualTo = null; public ArrayList DateCreatedBetween = null; public ArrayList DateCreatedIn = null; public Date DateLastSaved = null; public Date DateLastSavedGreaterThanOrEqualTo = null; public Date DateLastSavedGreaterThan = null; public Date DateLastSavedLessThan = null; public Date DateLastSavedLessThanOrEqualTo = null; public Date DateLastSavedNotEqualTo = null; public ArrayList DateLastSavedBetween = null; public ArrayList DateLastSavedIn = null; public Date DatePosted = null; public Date DatePostedGreaterThanOrEqualTo = null; public Date DatePostedGreaterThan = null; public Date DatePostedLessThan = null; public Date DatePostedLessThanOrEqualTo = null; public Date DatePostedNotEqualTo = null; public ArrayList DatePostedBetween = null; public ArrayList DatePostedIn = null; public Date DateProcessed = null; public Date DateProcessedGreaterThanOrEqualTo = null; public Date DateProcessedGreaterThan = null; public Date DateProcessedLessThan = null; public Date DateProcessedLessThanOrEqualTo = null; public Date DateProcessedNotEqualTo = null; public ArrayList DateProcessedBetween = null; public ArrayList DateProcessedIn = null; public Boolean DropShipment = null; public String DeliveryAddressee = null; public String DeliveryAddresseeStartsWith = null; public String DeliveryAddresseeEndsWith = null; public String DeliveryAddresseeContains = null; public String DeliveryAddresseeLike = null; public ArrayList DeliveryAddresseeBetween = null; public ArrayList DeliveryAddresseeIn = null; public String DeliveryAddressCountry = null; public String DeliveryAddressCountryStartsWith = null; public String DeliveryAddressCountryEndsWith = null; public String DeliveryAddressCountryContains = null; public String DeliveryAddressCountryLike = null; public ArrayList DeliveryAddressCountryBetween = null; public ArrayList DeliveryAddressCountryIn = null; public String FreightForwardAddressCountry = null; public String FreightForwardAddressCountryStartsWith = null; public String FreightForwardAddressCountryEndsWith = null; public String FreightForwardAddressCountryContains = null; public String FreightForwardAddressCountryLike = null; public ArrayList FreightForwardAddressCountryBetween = null; public ArrayList FreightForwardAddressCountryIn = null; public String getInvoiceHistoryID() { return InvoiceHistoryID; } public SO_HistoryQuery setInvoiceHistoryID(String value) { this.InvoiceHistoryID = value; return this; } public String getInvoiceHistoryIDStartsWith() { return InvoiceHistoryIDStartsWith; } public SO_HistoryQuery setInvoiceHistoryIDStartsWith(String value) { this.InvoiceHistoryIDStartsWith = value; return this; } public String getInvoiceHistoryIDEndsWith() { return InvoiceHistoryIDEndsWith; } public SO_HistoryQuery setInvoiceHistoryIDEndsWith(String value) { this.InvoiceHistoryIDEndsWith = value; return this; } public String getInvoiceHistoryIDContains() { return InvoiceHistoryIDContains; } public SO_HistoryQuery setInvoiceHistoryIDContains(String value) { this.InvoiceHistoryIDContains = value; return this; } public String getInvoiceHistoryIDLike() { return InvoiceHistoryIDLike; } public SO_HistoryQuery setInvoiceHistoryIDLike(String value) { this.InvoiceHistoryIDLike = value; return this; } public ArrayList getInvoiceHistoryIDBetween() { return InvoiceHistoryIDBetween; } public SO_HistoryQuery setInvoiceHistoryIDBetween(ArrayList value) { this.InvoiceHistoryIDBetween = value; return this; } public ArrayList getInvoiceHistoryIDIn() { return InvoiceHistoryIDIn; } public SO_HistoryQuery setInvoiceHistoryIDIn(ArrayList value) { this.InvoiceHistoryIDIn = value; return this; } public String getInvoiceID() { return InvoiceID; } public SO_HistoryQuery setInvoiceID(String value) { this.InvoiceID = value; return this; } public String getInvoiceIDStartsWith() { return InvoiceIDStartsWith; } public SO_HistoryQuery setInvoiceIDStartsWith(String value) { this.InvoiceIDStartsWith = value; return this; } public String getInvoiceIDEndsWith() { return InvoiceIDEndsWith; } public SO_HistoryQuery setInvoiceIDEndsWith(String value) { this.InvoiceIDEndsWith = value; return this; } public String getInvoiceIDContains() { return InvoiceIDContains; } public SO_HistoryQuery setInvoiceIDContains(String value) { this.InvoiceIDContains = value; return this; } public String getInvoiceIDLike() { return InvoiceIDLike; } public SO_HistoryQuery setInvoiceIDLike(String value) { this.InvoiceIDLike = value; return this; } public ArrayList getInvoiceIDBetween() { return InvoiceIDBetween; } public SO_HistoryQuery setInvoiceIDBetween(ArrayList value) { this.InvoiceIDBetween = value; return this; } public ArrayList getInvoiceIDIn() { return InvoiceIDIn; } public SO_HistoryQuery setInvoiceIDIn(ArrayList value) { this.InvoiceIDIn = value; return this; } public String getLastModifiedBy() { return LastModifiedBy; } public SO_HistoryQuery setLastModifiedBy(String value) { this.LastModifiedBy = value; return this; } public String getLastModifiedByStartsWith() { return LastModifiedByStartsWith; } public SO_HistoryQuery setLastModifiedByStartsWith(String value) { this.LastModifiedByStartsWith = value; return this; } public String getLastModifiedByEndsWith() { return LastModifiedByEndsWith; } public SO_HistoryQuery setLastModifiedByEndsWith(String value) { this.LastModifiedByEndsWith = value; return this; } public String getLastModifiedByContains() { return LastModifiedByContains; } public SO_HistoryQuery setLastModifiedByContains(String value) { this.LastModifiedByContains = value; return this; } public String getLastModifiedByLike() { return LastModifiedByLike; } public SO_HistoryQuery setLastModifiedByLike(String value) { this.LastModifiedByLike = value; return this; } public ArrayList getLastModifiedByBetween() { return LastModifiedByBetween; } public SO_HistoryQuery setLastModifiedByBetween(ArrayList value) { this.LastModifiedByBetween = value; return this; } public ArrayList getLastModifiedByIn() { return LastModifiedByIn; } public SO_HistoryQuery setLastModifiedByIn(ArrayList value) { this.LastModifiedByIn = value; return this; } public Date getRecordDate() { return RecordDate; } public SO_HistoryQuery setRecordDate(Date value) { this.RecordDate = value; return this; } public Date getRecordDateGreaterThanOrEqualTo() { return RecordDateGreaterThanOrEqualTo; } public SO_HistoryQuery setRecordDateGreaterThanOrEqualTo(Date value) { this.RecordDateGreaterThanOrEqualTo = value; return this; } public Date getRecordDateGreaterThan() { return RecordDateGreaterThan; } public SO_HistoryQuery setRecordDateGreaterThan(Date value) { this.RecordDateGreaterThan = value; return this; } public Date getRecordDateLessThan() { return RecordDateLessThan; } public SO_HistoryQuery setRecordDateLessThan(Date value) { this.RecordDateLessThan = value; return this; } public Date getRecordDateLessThanOrEqualTo() { return RecordDateLessThanOrEqualTo; } public SO_HistoryQuery setRecordDateLessThanOrEqualTo(Date value) { this.RecordDateLessThanOrEqualTo = value; return this; } public Date getRecordDateNotEqualTo() { return RecordDateNotEqualTo; } public SO_HistoryQuery setRecordDateNotEqualTo(Date value) { this.RecordDateNotEqualTo = value; return this; } public ArrayList getRecordDateBetween() { return RecordDateBetween; } public SO_HistoryQuery setRecordDateBetween(ArrayList value) { this.RecordDateBetween = value; return this; } public ArrayList getRecordDateIn() { return RecordDateIn; } public SO_HistoryQuery setRecordDateIn(ArrayList value) { this.RecordDateIn = value; return this; } public String getRef() { return Ref; } public SO_HistoryQuery setRef(String value) { this.Ref = value; return this; } public String getRefStartsWith() { return RefStartsWith; } public SO_HistoryQuery setRefStartsWith(String value) { this.RefStartsWith = value; return this; } public String getRefEndsWith() { return RefEndsWith; } public SO_HistoryQuery setRefEndsWith(String value) { this.RefEndsWith = value; return this; } public String getRefContains() { return RefContains; } public SO_HistoryQuery setRefContains(String value) { this.RefContains = value; return this; } public String getRefLike() { return RefLike; } public SO_HistoryQuery setRefLike(String value) { this.RefLike = value; return this; } public ArrayList getRefBetween() { return RefBetween; } public SO_HistoryQuery setRefBetween(ArrayList value) { this.RefBetween = value; return this; } public ArrayList getRefIn() { return RefIn; } public SO_HistoryQuery setRefIn(ArrayList value) { this.RefIn = value; return this; } public Short getHistoryNo() { return HistoryNo; } public SO_HistoryQuery setHistoryNo(Short value) { this.HistoryNo = value; return this; } public Short getHistoryNoGreaterThanOrEqualTo() { return HistoryNoGreaterThanOrEqualTo; } public SO_HistoryQuery setHistoryNoGreaterThanOrEqualTo(Short value) { this.HistoryNoGreaterThanOrEqualTo = value; return this; } public Short getHistoryNoGreaterThan() { return HistoryNoGreaterThan; } public SO_HistoryQuery setHistoryNoGreaterThan(Short value) { this.HistoryNoGreaterThan = value; return this; } public Short getHistoryNoLessThan() { return HistoryNoLessThan; } public SO_HistoryQuery setHistoryNoLessThan(Short value) { this.HistoryNoLessThan = value; return this; } public Short getHistoryNoLessThanOrEqualTo() { return HistoryNoLessThanOrEqualTo; } public SO_HistoryQuery setHistoryNoLessThanOrEqualTo(Short value) { this.HistoryNoLessThanOrEqualTo = value; return this; } public Short getHistoryNoNotEqualTo() { return HistoryNoNotEqualTo; } public SO_HistoryQuery setHistoryNoNotEqualTo(Short value) { this.HistoryNoNotEqualTo = value; return this; } public ArrayList getHistoryNoBetween() { return HistoryNoBetween; } public SO_HistoryQuery setHistoryNoBetween(ArrayList value) { this.HistoryNoBetween = value; return this; } public ArrayList getHistoryNoIn() { return HistoryNoIn; } public SO_HistoryQuery setHistoryNoIn(ArrayList value) { this.HistoryNoIn = value; return this; } public BigDecimal getHistoryTotal() { return HistoryTotal; } public SO_HistoryQuery setHistoryTotal(BigDecimal value) { this.HistoryTotal = value; return this; } public BigDecimal getHistoryTotalGreaterThanOrEqualTo() { return HistoryTotalGreaterThanOrEqualTo; } public SO_HistoryQuery setHistoryTotalGreaterThanOrEqualTo(BigDecimal value) { this.HistoryTotalGreaterThanOrEqualTo = value; return this; } public BigDecimal getHistoryTotalGreaterThan() { return HistoryTotalGreaterThan; } public SO_HistoryQuery setHistoryTotalGreaterThan(BigDecimal value) { this.HistoryTotalGreaterThan = value; return this; } public BigDecimal getHistoryTotalLessThan() { return HistoryTotalLessThan; } public SO_HistoryQuery setHistoryTotalLessThan(BigDecimal value) { this.HistoryTotalLessThan = value; return this; } public BigDecimal getHistoryTotalLessThanOrEqualTo() { return HistoryTotalLessThanOrEqualTo; } public SO_HistoryQuery setHistoryTotalLessThanOrEqualTo(BigDecimal value) { this.HistoryTotalLessThanOrEqualTo = value; return this; } public BigDecimal getHistoryTotalNotEqualTo() { return HistoryTotalNotEqualTo; } public SO_HistoryQuery setHistoryTotalNotEqualTo(BigDecimal value) { this.HistoryTotalNotEqualTo = value; return this; } public ArrayList getHistoryTotalBetween() { return HistoryTotalBetween; } public SO_HistoryQuery setHistoryTotalBetween(ArrayList value) { this.HistoryTotalBetween = value; return this; } public ArrayList getHistoryTotalIn() { return HistoryTotalIn; } public SO_HistoryQuery setHistoryTotalIn(ArrayList value) { this.HistoryTotalIn = value; return this; } public String getDelAddress1() { return DelAddress1; } public SO_HistoryQuery setDelAddress1(String value) { this.DelAddress1 = value; return this; } public String getDelAddress1StartsWith() { return DelAddress1StartsWith; } public SO_HistoryQuery setDelAddress1StartsWith(String value) { this.DelAddress1StartsWith = value; return this; } public String getDelAddress1EndsWith() { return DelAddress1EndsWith; } public SO_HistoryQuery setDelAddress1EndsWith(String value) { this.DelAddress1EndsWith = value; return this; } public String getDelAddress1Contains() { return DelAddress1Contains; } public SO_HistoryQuery setDelAddress1Contains(String value) { this.DelAddress1Contains = value; return this; } public String getDelAddress1Like() { return DelAddress1Like; } public SO_HistoryQuery setDelAddress1Like(String value) { this.DelAddress1Like = value; return this; } public ArrayList getDelAddress1Between() { return DelAddress1Between; } public SO_HistoryQuery setDelAddress1Between(ArrayList value) { this.DelAddress1Between = value; return this; } public ArrayList getDelAddress1In() { return DelAddress1In; } public SO_HistoryQuery setDelAddress1In(ArrayList value) { this.DelAddress1In = value; return this; } public String getDelAddress2() { return DelAddress2; } public SO_HistoryQuery setDelAddress2(String value) { this.DelAddress2 = value; return this; } public String getDelAddress2StartsWith() { return DelAddress2StartsWith; } public SO_HistoryQuery setDelAddress2StartsWith(String value) { this.DelAddress2StartsWith = value; return this; } public String getDelAddress2EndsWith() { return DelAddress2EndsWith; } public SO_HistoryQuery setDelAddress2EndsWith(String value) { this.DelAddress2EndsWith = value; return this; } public String getDelAddress2Contains() { return DelAddress2Contains; } public SO_HistoryQuery setDelAddress2Contains(String value) { this.DelAddress2Contains = value; return this; } public String getDelAddress2Like() { return DelAddress2Like; } public SO_HistoryQuery setDelAddress2Like(String value) { this.DelAddress2Like = value; return this; } public ArrayList getDelAddress2Between() { return DelAddress2Between; } public SO_HistoryQuery setDelAddress2Between(ArrayList value) { this.DelAddress2Between = value; return this; } public ArrayList getDelAddress2In() { return DelAddress2In; } public SO_HistoryQuery setDelAddress2In(ArrayList value) { this.DelAddress2In = value; return this; } public String getDelAddress3() { return DelAddress3; } public SO_HistoryQuery setDelAddress3(String value) { this.DelAddress3 = value; return this; } public String getDelAddress3StartsWith() { return DelAddress3StartsWith; } public SO_HistoryQuery setDelAddress3StartsWith(String value) { this.DelAddress3StartsWith = value; return this; } public String getDelAddress3EndsWith() { return DelAddress3EndsWith; } public SO_HistoryQuery setDelAddress3EndsWith(String value) { this.DelAddress3EndsWith = value; return this; } public String getDelAddress3Contains() { return DelAddress3Contains; } public SO_HistoryQuery setDelAddress3Contains(String value) { this.DelAddress3Contains = value; return this; } public String getDelAddress3Like() { return DelAddress3Like; } public SO_HistoryQuery setDelAddress3Like(String value) { this.DelAddress3Like = value; return this; } public ArrayList getDelAddress3Between() { return DelAddress3Between; } public SO_HistoryQuery setDelAddress3Between(ArrayList value) { this.DelAddress3Between = value; return this; } public ArrayList getDelAddress3In() { return DelAddress3In; } public SO_HistoryQuery setDelAddress3In(ArrayList value) { this.DelAddress3In = value; return this; } public String getDelAddress4() { return DelAddress4; } public SO_HistoryQuery setDelAddress4(String value) { this.DelAddress4 = value; return this; } public String getDelAddress4StartsWith() { return DelAddress4StartsWith; } public SO_HistoryQuery setDelAddress4StartsWith(String value) { this.DelAddress4StartsWith = value; return this; } public String getDelAddress4EndsWith() { return DelAddress4EndsWith; } public SO_HistoryQuery setDelAddress4EndsWith(String value) { this.DelAddress4EndsWith = value; return this; } public String getDelAddress4Contains() { return DelAddress4Contains; } public SO_HistoryQuery setDelAddress4Contains(String value) { this.DelAddress4Contains = value; return this; } public String getDelAddress4Like() { return DelAddress4Like; } public SO_HistoryQuery setDelAddress4Like(String value) { this.DelAddress4Like = value; return this; } public ArrayList getDelAddress4Between() { return DelAddress4Between; } public SO_HistoryQuery setDelAddress4Between(ArrayList value) { this.DelAddress4Between = value; return this; } public ArrayList getDelAddress4In() { return DelAddress4In; } public SO_HistoryQuery setDelAddress4In(ArrayList value) { this.DelAddress4In = value; return this; } public String getPostCode() { return PostCode; } public SO_HistoryQuery setPostCode(String value) { this.PostCode = value; return this; } public String getPostCodeStartsWith() { return PostCodeStartsWith; } public SO_HistoryQuery setPostCodeStartsWith(String value) { this.PostCodeStartsWith = value; return this; } public String getPostCodeEndsWith() { return PostCodeEndsWith; } public SO_HistoryQuery setPostCodeEndsWith(String value) { this.PostCodeEndsWith = value; return this; } public String getPostCodeContains() { return PostCodeContains; } public SO_HistoryQuery setPostCodeContains(String value) { this.PostCodeContains = value; return this; } public String getPostCodeLike() { return PostCodeLike; } public SO_HistoryQuery setPostCodeLike(String value) { this.PostCodeLike = value; return this; } public ArrayList getPostCodeBetween() { return PostCodeBetween; } public SO_HistoryQuery setPostCodeBetween(ArrayList value) { this.PostCodeBetween = value; return this; } public ArrayList getPostCodeIn() { return PostCodeIn; } public SO_HistoryQuery setPostCodeIn(ArrayList value) { this.PostCodeIn = value; return this; } public String getNotes() { return Notes; } public SO_HistoryQuery setNotes(String value) { this.Notes = value; return this; } public String getNotesStartsWith() { return NotesStartsWith; } public SO_HistoryQuery setNotesStartsWith(String value) { this.NotesStartsWith = value; return this; } public String getNotesEndsWith() { return NotesEndsWith; } public SO_HistoryQuery setNotesEndsWith(String value) { this.NotesEndsWith = value; return this; } public String getNotesContains() { return NotesContains; } public SO_HistoryQuery setNotesContains(String value) { this.NotesContains = value; return this; } public String getNotesLike() { return NotesLike; } public SO_HistoryQuery setNotesLike(String value) { this.NotesLike = value; return this; } public ArrayList getNotesBetween() { return NotesBetween; } public SO_HistoryQuery setNotesBetween(ArrayList value) { this.NotesBetween = value; return this; } public ArrayList getNotesIn() { return NotesIn; } public SO_HistoryQuery setNotesIn(ArrayList value) { this.NotesIn = value; return this; } public String getCourierDetails() { return CourierDetails; } public SO_HistoryQuery setCourierDetails(String value) { this.CourierDetails = value; return this; } public String getCourierDetailsStartsWith() { return CourierDetailsStartsWith; } public SO_HistoryQuery setCourierDetailsStartsWith(String value) { this.CourierDetailsStartsWith = value; return this; } public String getCourierDetailsEndsWith() { return CourierDetailsEndsWith; } public SO_HistoryQuery setCourierDetailsEndsWith(String value) { this.CourierDetailsEndsWith = value; return this; } public String getCourierDetailsContains() { return CourierDetailsContains; } public SO_HistoryQuery setCourierDetailsContains(String value) { this.CourierDetailsContains = value; return this; } public String getCourierDetailsLike() { return CourierDetailsLike; } public SO_HistoryQuery setCourierDetailsLike(String value) { this.CourierDetailsLike = value; return this; } public ArrayList getCourierDetailsBetween() { return CourierDetailsBetween; } public SO_HistoryQuery setCourierDetailsBetween(ArrayList value) { this.CourierDetailsBetween = value; return this; } public ArrayList getCourierDetailsIn() { return CourierDetailsIn; } public SO_HistoryQuery setCourierDetailsIn(ArrayList value) { this.CourierDetailsIn = value; return this; } public String getPaymentTypeID() { return PaymentTypeID; } public SO_HistoryQuery setPaymentTypeID(String value) { this.PaymentTypeID = value; return this; } public String getPaymentTypeIDStartsWith() { return PaymentTypeIDStartsWith; } public SO_HistoryQuery setPaymentTypeIDStartsWith(String value) { this.PaymentTypeIDStartsWith = value; return this; } public String getPaymentTypeIDEndsWith() { return PaymentTypeIDEndsWith; } public SO_HistoryQuery setPaymentTypeIDEndsWith(String value) { this.PaymentTypeIDEndsWith = value; return this; } public String getPaymentTypeIDContains() { return PaymentTypeIDContains; } public SO_HistoryQuery setPaymentTypeIDContains(String value) { this.PaymentTypeIDContains = value; return this; } public String getPaymentTypeIDLike() { return PaymentTypeIDLike; } public SO_HistoryQuery setPaymentTypeIDLike(String value) { this.PaymentTypeIDLike = value; return this; } public ArrayList getPaymentTypeIDBetween() { return PaymentTypeIDBetween; } public SO_HistoryQuery setPaymentTypeIDBetween(ArrayList value) { this.PaymentTypeIDBetween = value; return this; } public ArrayList getPaymentTypeIDIn() { return PaymentTypeIDIn; } public SO_HistoryQuery setPaymentTypeIDIn(ArrayList value) { this.PaymentTypeIDIn = value; return this; } public String getPaymentRef() { return PaymentRef; } public SO_HistoryQuery setPaymentRef(String value) { this.PaymentRef = value; return this; } public String getPaymentRefStartsWith() { return PaymentRefStartsWith; } public SO_HistoryQuery setPaymentRefStartsWith(String value) { this.PaymentRefStartsWith = value; return this; } public String getPaymentRefEndsWith() { return PaymentRefEndsWith; } public SO_HistoryQuery setPaymentRefEndsWith(String value) { this.PaymentRefEndsWith = value; return this; } public String getPaymentRefContains() { return PaymentRefContains; } public SO_HistoryQuery setPaymentRefContains(String value) { this.PaymentRefContains = value; return this; } public String getPaymentRefLike() { return PaymentRefLike; } public SO_HistoryQuery setPaymentRefLike(String value) { this.PaymentRefLike = value; return this; } public ArrayList getPaymentRefBetween() { return PaymentRefBetween; } public SO_HistoryQuery setPaymentRefBetween(ArrayList value) { this.PaymentRefBetween = value; return this; } public ArrayList getPaymentRefIn() { return PaymentRefIn; } public SO_HistoryQuery setPaymentRefIn(ArrayList value) { this.PaymentRefIn = value; return this; } public BigDecimal getAmountPaid() { return AmountPaid; } public SO_HistoryQuery setAmountPaid(BigDecimal value) { this.AmountPaid = value; return this; } public BigDecimal getAmountPaidGreaterThanOrEqualTo() { return AmountPaidGreaterThanOrEqualTo; } public SO_HistoryQuery setAmountPaidGreaterThanOrEqualTo(BigDecimal value) { this.AmountPaidGreaterThanOrEqualTo = value; return this; } public BigDecimal getAmountPaidGreaterThan() { return AmountPaidGreaterThan; } public SO_HistoryQuery setAmountPaidGreaterThan(BigDecimal value) { this.AmountPaidGreaterThan = value; return this; } public BigDecimal getAmountPaidLessThan() { return AmountPaidLessThan; } public SO_HistoryQuery setAmountPaidLessThan(BigDecimal value) { this.AmountPaidLessThan = value; return this; } public BigDecimal getAmountPaidLessThanOrEqualTo() { return AmountPaidLessThanOrEqualTo; } public SO_HistoryQuery setAmountPaidLessThanOrEqualTo(BigDecimal value) { this.AmountPaidLessThanOrEqualTo = value; return this; } public BigDecimal getAmountPaidNotEqualTo() { return AmountPaidNotEqualTo; } public SO_HistoryQuery setAmountPaidNotEqualTo(BigDecimal value) { this.AmountPaidNotEqualTo = value; return this; } public ArrayList getAmountPaidBetween() { return AmountPaidBetween; } public SO_HistoryQuery setAmountPaidBetween(ArrayList value) { this.AmountPaidBetween = value; return this; } public ArrayList getAmountPaidIn() { return AmountPaidIn; } public SO_HistoryQuery setAmountPaidIn(ArrayList value) { this.AmountPaidIn = value; return this; } public String getRunNo() { return RunNo; } public SO_HistoryQuery setRunNo(String value) { this.RunNo = value; return this; } public String getRunNoStartsWith() { return RunNoStartsWith; } public SO_HistoryQuery setRunNoStartsWith(String value) { this.RunNoStartsWith = value; return this; } public String getRunNoEndsWith() { return RunNoEndsWith; } public SO_HistoryQuery setRunNoEndsWith(String value) { this.RunNoEndsWith = value; return this; } public String getRunNoContains() { return RunNoContains; } public SO_HistoryQuery setRunNoContains(String value) { this.RunNoContains = value; return this; } public String getRunNoLike() { return RunNoLike; } public SO_HistoryQuery setRunNoLike(String value) { this.RunNoLike = value; return this; } public ArrayList getRunNoBetween() { return RunNoBetween; } public SO_HistoryQuery setRunNoBetween(ArrayList value) { this.RunNoBetween = value; return this; } public ArrayList getRunNoIn() { return RunNoIn; } public SO_HistoryQuery setRunNoIn(ArrayList value) { this.RunNoIn = value; return this; } public BigDecimal getCartageCharge1() { return CartageCharge1; } public SO_HistoryQuery setCartageCharge1(BigDecimal value) { this.CartageCharge1 = value; return this; } public BigDecimal getCartageCharge1GreaterThanOrEqualTo() { return CartageCharge1GreaterThanOrEqualTo; } public SO_HistoryQuery setCartageCharge1GreaterThanOrEqualTo(BigDecimal value) { this.CartageCharge1GreaterThanOrEqualTo = value; return this; } public BigDecimal getCartageCharge1GreaterThan() { return CartageCharge1GreaterThan; } public SO_HistoryQuery setCartageCharge1GreaterThan(BigDecimal value) { this.CartageCharge1GreaterThan = value; return this; } public BigDecimal getCartageCharge1LessThan() { return CartageCharge1LessThan; } public SO_HistoryQuery setCartageCharge1LessThan(BigDecimal value) { this.CartageCharge1LessThan = value; return this; } public BigDecimal getCartageCharge1LessThanOrEqualTo() { return CartageCharge1LessThanOrEqualTo; } public SO_HistoryQuery setCartageCharge1LessThanOrEqualTo(BigDecimal value) { this.CartageCharge1LessThanOrEqualTo = value; return this; } public BigDecimal getCartageCharge1NotEqualTo() { return CartageCharge1NotEqualTo; } public SO_HistoryQuery setCartageCharge1NotEqualTo(BigDecimal value) { this.CartageCharge1NotEqualTo = value; return this; } public ArrayList getCartageCharge1Between() { return CartageCharge1Between; } public SO_HistoryQuery setCartageCharge1Between(ArrayList value) { this.CartageCharge1Between = value; return this; } public ArrayList getCartageCharge1In() { return CartageCharge1In; } public SO_HistoryQuery setCartageCharge1In(ArrayList value) { this.CartageCharge1In = value; return this; } public BigDecimal getCartageCharge2() { return CartageCharge2; } public SO_HistoryQuery setCartageCharge2(BigDecimal value) { this.CartageCharge2 = value; return this; } public BigDecimal getCartageCharge2GreaterThanOrEqualTo() { return CartageCharge2GreaterThanOrEqualTo; } public SO_HistoryQuery setCartageCharge2GreaterThanOrEqualTo(BigDecimal value) { this.CartageCharge2GreaterThanOrEqualTo = value; return this; } public BigDecimal getCartageCharge2GreaterThan() { return CartageCharge2GreaterThan; } public SO_HistoryQuery setCartageCharge2GreaterThan(BigDecimal value) { this.CartageCharge2GreaterThan = value; return this; } public BigDecimal getCartageCharge2LessThan() { return CartageCharge2LessThan; } public SO_HistoryQuery setCartageCharge2LessThan(BigDecimal value) { this.CartageCharge2LessThan = value; return this; } public BigDecimal getCartageCharge2LessThanOrEqualTo() { return CartageCharge2LessThanOrEqualTo; } public SO_HistoryQuery setCartageCharge2LessThanOrEqualTo(BigDecimal value) { this.CartageCharge2LessThanOrEqualTo = value; return this; } public BigDecimal getCartageCharge2NotEqualTo() { return CartageCharge2NotEqualTo; } public SO_HistoryQuery setCartageCharge2NotEqualTo(BigDecimal value) { this.CartageCharge2NotEqualTo = value; return this; } public ArrayList getCartageCharge2Between() { return CartageCharge2Between; } public SO_HistoryQuery setCartageCharge2Between(ArrayList value) { this.CartageCharge2Between = value; return this; } public ArrayList getCartageCharge2In() { return CartageCharge2In; } public SO_HistoryQuery setCartageCharge2In(ArrayList value) { this.CartageCharge2In = value; return this; } public BigDecimal getCartageCharge3() { return CartageCharge3; } public SO_HistoryQuery setCartageCharge3(BigDecimal value) { this.CartageCharge3 = value; return this; } public BigDecimal getCartageCharge3GreaterThanOrEqualTo() { return CartageCharge3GreaterThanOrEqualTo; } public SO_HistoryQuery setCartageCharge3GreaterThanOrEqualTo(BigDecimal value) { this.CartageCharge3GreaterThanOrEqualTo = value; return this; } public BigDecimal getCartageCharge3GreaterThan() { return CartageCharge3GreaterThan; } public SO_HistoryQuery setCartageCharge3GreaterThan(BigDecimal value) { this.CartageCharge3GreaterThan = value; return this; } public BigDecimal getCartageCharge3LessThan() { return CartageCharge3LessThan; } public SO_HistoryQuery setCartageCharge3LessThan(BigDecimal value) { this.CartageCharge3LessThan = value; return this; } public BigDecimal getCartageCharge3LessThanOrEqualTo() { return CartageCharge3LessThanOrEqualTo; } public SO_HistoryQuery setCartageCharge3LessThanOrEqualTo(BigDecimal value) { this.CartageCharge3LessThanOrEqualTo = value; return this; } public BigDecimal getCartageCharge3NotEqualTo() { return CartageCharge3NotEqualTo; } public SO_HistoryQuery setCartageCharge3NotEqualTo(BigDecimal value) { this.CartageCharge3NotEqualTo = value; return this; } public ArrayList getCartageCharge3Between() { return CartageCharge3Between; } public SO_HistoryQuery setCartageCharge3Between(ArrayList value) { this.CartageCharge3Between = value; return this; } public ArrayList getCartageCharge3In() { return CartageCharge3In; } public SO_HistoryQuery setCartageCharge3In(ArrayList value) { this.CartageCharge3In = value; return this; } public String getDelContactName() { return DelContactName; } public SO_HistoryQuery setDelContactName(String value) { this.DelContactName = value; return this; } public String getDelContactNameStartsWith() { return DelContactNameStartsWith; } public SO_HistoryQuery setDelContactNameStartsWith(String value) { this.DelContactNameStartsWith = value; return this; } public String getDelContactNameEndsWith() { return DelContactNameEndsWith; } public SO_HistoryQuery setDelContactNameEndsWith(String value) { this.DelContactNameEndsWith = value; return this; } public String getDelContactNameContains() { return DelContactNameContains; } public SO_HistoryQuery setDelContactNameContains(String value) { this.DelContactNameContains = value; return this; } public String getDelContactNameLike() { return DelContactNameLike; } public SO_HistoryQuery setDelContactNameLike(String value) { this.DelContactNameLike = value; return this; } public ArrayList getDelContactNameBetween() { return DelContactNameBetween; } public SO_HistoryQuery setDelContactNameBetween(ArrayList value) { this.DelContactNameBetween = value; return this; } public ArrayList getDelContactNameIn() { return DelContactNameIn; } public SO_HistoryQuery setDelContactNameIn(ArrayList value) { this.DelContactNameIn = value; return this; } public Boolean isDelivered() { return Delivered; } public SO_HistoryQuery setDelivered(Boolean value) { this.Delivered = value; return this; } public Date getDeliveredDate() { return DeliveredDate; } public SO_HistoryQuery setDeliveredDate(Date value) { this.DeliveredDate = value; return this; } public Date getDeliveredDateGreaterThanOrEqualTo() { return DeliveredDateGreaterThanOrEqualTo; } public SO_HistoryQuery setDeliveredDateGreaterThanOrEqualTo(Date value) { this.DeliveredDateGreaterThanOrEqualTo = value; return this; } public Date getDeliveredDateGreaterThan() { return DeliveredDateGreaterThan; } public SO_HistoryQuery setDeliveredDateGreaterThan(Date value) { this.DeliveredDateGreaterThan = value; return this; } public Date getDeliveredDateLessThan() { return DeliveredDateLessThan; } public SO_HistoryQuery setDeliveredDateLessThan(Date value) { this.DeliveredDateLessThan = value; return this; } public Date getDeliveredDateLessThanOrEqualTo() { return DeliveredDateLessThanOrEqualTo; } public SO_HistoryQuery setDeliveredDateLessThanOrEqualTo(Date value) { this.DeliveredDateLessThanOrEqualTo = value; return this; } public Date getDeliveredDateNotEqualTo() { return DeliveredDateNotEqualTo; } public SO_HistoryQuery setDeliveredDateNotEqualTo(Date value) { this.DeliveredDateNotEqualTo = value; return this; } public ArrayList getDeliveredDateBetween() { return DeliveredDateBetween; } public SO_HistoryQuery setDeliveredDateBetween(ArrayList value) { this.DeliveredDateBetween = value; return this; } public ArrayList getDeliveredDateIn() { return DeliveredDateIn; } public SO_HistoryQuery setDeliveredDateIn(ArrayList value) { this.DeliveredDateIn = value; return this; } public String getCartage1TaxRateID() { return Cartage1TaxRateID; } public SO_HistoryQuery setCartage1TaxRateID(String value) { this.Cartage1TaxRateID = value; return this; } public String getCartage1TaxRateIDStartsWith() { return Cartage1TaxRateIDStartsWith; } public SO_HistoryQuery setCartage1TaxRateIDStartsWith(String value) { this.Cartage1TaxRateIDStartsWith = value; return this; } public String getCartage1TaxRateIDEndsWith() { return Cartage1TaxRateIDEndsWith; } public SO_HistoryQuery setCartage1TaxRateIDEndsWith(String value) { this.Cartage1TaxRateIDEndsWith = value; return this; } public String getCartage1TaxRateIDContains() { return Cartage1TaxRateIDContains; } public SO_HistoryQuery setCartage1TaxRateIDContains(String value) { this.Cartage1TaxRateIDContains = value; return this; } public String getCartage1TaxRateIDLike() { return Cartage1TaxRateIDLike; } public SO_HistoryQuery setCartage1TaxRateIDLike(String value) { this.Cartage1TaxRateIDLike = value; return this; } public ArrayList getCartage1TaxRateIDBetween() { return Cartage1TaxRateIDBetween; } public SO_HistoryQuery setCartage1TaxRateIDBetween(ArrayList value) { this.Cartage1TaxRateIDBetween = value; return this; } public ArrayList getCartage1TaxRateIDIn() { return Cartage1TaxRateIDIn; } public SO_HistoryQuery setCartage1TaxRateIDIn(ArrayList value) { this.Cartage1TaxRateIDIn = value; return this; } public BigDecimal getCartage1TaxRate() { return Cartage1TaxRate; } public SO_HistoryQuery setCartage1TaxRate(BigDecimal value) { this.Cartage1TaxRate = value; return this; } public BigDecimal getCartage1TaxRateGreaterThanOrEqualTo() { return Cartage1TaxRateGreaterThanOrEqualTo; } public SO_HistoryQuery setCartage1TaxRateGreaterThanOrEqualTo(BigDecimal value) { this.Cartage1TaxRateGreaterThanOrEqualTo = value; return this; } public BigDecimal getCartage1TaxRateGreaterThan() { return Cartage1TaxRateGreaterThan; } public SO_HistoryQuery setCartage1TaxRateGreaterThan(BigDecimal value) { this.Cartage1TaxRateGreaterThan = value; return this; } public BigDecimal getCartage1TaxRateLessThan() { return Cartage1TaxRateLessThan; } public SO_HistoryQuery setCartage1TaxRateLessThan(BigDecimal value) { this.Cartage1TaxRateLessThan = value; return this; } public BigDecimal getCartage1TaxRateLessThanOrEqualTo() { return Cartage1TaxRateLessThanOrEqualTo; } public SO_HistoryQuery setCartage1TaxRateLessThanOrEqualTo(BigDecimal value) { this.Cartage1TaxRateLessThanOrEqualTo = value; return this; } public BigDecimal getCartage1TaxRateNotEqualTo() { return Cartage1TaxRateNotEqualTo; } public SO_HistoryQuery setCartage1TaxRateNotEqualTo(BigDecimal value) { this.Cartage1TaxRateNotEqualTo = value; return this; } public ArrayList getCartage1TaxRateBetween() { return Cartage1TaxRateBetween; } public SO_HistoryQuery setCartage1TaxRateBetween(ArrayList value) { this.Cartage1TaxRateBetween = value; return this; } public ArrayList getCartage1TaxRateIn() { return Cartage1TaxRateIn; } public SO_HistoryQuery setCartage1TaxRateIn(ArrayList value) { this.Cartage1TaxRateIn = value; return this; } public BigDecimal getCartage1TaxAmount() { return Cartage1TaxAmount; } public SO_HistoryQuery setCartage1TaxAmount(BigDecimal value) { this.Cartage1TaxAmount = value; return this; } public BigDecimal getCartage1TaxAmountGreaterThanOrEqualTo() { return Cartage1TaxAmountGreaterThanOrEqualTo; } public SO_HistoryQuery setCartage1TaxAmountGreaterThanOrEqualTo(BigDecimal value) { this.Cartage1TaxAmountGreaterThanOrEqualTo = value; return this; } public BigDecimal getCartage1TaxAmountGreaterThan() { return Cartage1TaxAmountGreaterThan; } public SO_HistoryQuery setCartage1TaxAmountGreaterThan(BigDecimal value) { this.Cartage1TaxAmountGreaterThan = value; return this; } public BigDecimal getCartage1TaxAmountLessThan() { return Cartage1TaxAmountLessThan; } public SO_HistoryQuery setCartage1TaxAmountLessThan(BigDecimal value) { this.Cartage1TaxAmountLessThan = value; return this; } public BigDecimal getCartage1TaxAmountLessThanOrEqualTo() { return Cartage1TaxAmountLessThanOrEqualTo; } public SO_HistoryQuery setCartage1TaxAmountLessThanOrEqualTo(BigDecimal value) { this.Cartage1TaxAmountLessThanOrEqualTo = value; return this; } public BigDecimal getCartage1TaxAmountNotEqualTo() { return Cartage1TaxAmountNotEqualTo; } public SO_HistoryQuery setCartage1TaxAmountNotEqualTo(BigDecimal value) { this.Cartage1TaxAmountNotEqualTo = value; return this; } public ArrayList getCartage1TaxAmountBetween() { return Cartage1TaxAmountBetween; } public SO_HistoryQuery setCartage1TaxAmountBetween(ArrayList value) { this.Cartage1TaxAmountBetween = value; return this; } public ArrayList getCartage1TaxAmountIn() { return Cartage1TaxAmountIn; } public SO_HistoryQuery setCartage1TaxAmountIn(ArrayList value) { this.Cartage1TaxAmountIn = value; return this; } public String getCartage2TaxRateID() { return Cartage2TaxRateID; } public SO_HistoryQuery setCartage2TaxRateID(String value) { this.Cartage2TaxRateID = value; return this; } public String getCartage2TaxRateIDStartsWith() { return Cartage2TaxRateIDStartsWith; } public SO_HistoryQuery setCartage2TaxRateIDStartsWith(String value) { this.Cartage2TaxRateIDStartsWith = value; return this; } public String getCartage2TaxRateIDEndsWith() { return Cartage2TaxRateIDEndsWith; } public SO_HistoryQuery setCartage2TaxRateIDEndsWith(String value) { this.Cartage2TaxRateIDEndsWith = value; return this; } public String getCartage2TaxRateIDContains() { return Cartage2TaxRateIDContains; } public SO_HistoryQuery setCartage2TaxRateIDContains(String value) { this.Cartage2TaxRateIDContains = value; return this; } public String getCartage2TaxRateIDLike() { return Cartage2TaxRateIDLike; } public SO_HistoryQuery setCartage2TaxRateIDLike(String value) { this.Cartage2TaxRateIDLike = value; return this; } public ArrayList getCartage2TaxRateIDBetween() { return Cartage2TaxRateIDBetween; } public SO_HistoryQuery setCartage2TaxRateIDBetween(ArrayList value) { this.Cartage2TaxRateIDBetween = value; return this; } public ArrayList getCartage2TaxRateIDIn() { return Cartage2TaxRateIDIn; } public SO_HistoryQuery setCartage2TaxRateIDIn(ArrayList value) { this.Cartage2TaxRateIDIn = value; return this; } public BigDecimal getCartage2TaxRate() { return Cartage2TaxRate; } public SO_HistoryQuery setCartage2TaxRate(BigDecimal value) { this.Cartage2TaxRate = value; return this; } public BigDecimal getCartage2TaxRateGreaterThanOrEqualTo() { return Cartage2TaxRateGreaterThanOrEqualTo; } public SO_HistoryQuery setCartage2TaxRateGreaterThanOrEqualTo(BigDecimal value) { this.Cartage2TaxRateGreaterThanOrEqualTo = value; return this; } public BigDecimal getCartage2TaxRateGreaterThan() { return Cartage2TaxRateGreaterThan; } public SO_HistoryQuery setCartage2TaxRateGreaterThan(BigDecimal value) { this.Cartage2TaxRateGreaterThan = value; return this; } public BigDecimal getCartage2TaxRateLessThan() { return Cartage2TaxRateLessThan; } public SO_HistoryQuery setCartage2TaxRateLessThan(BigDecimal value) { this.Cartage2TaxRateLessThan = value; return this; } public BigDecimal getCartage2TaxRateLessThanOrEqualTo() { return Cartage2TaxRateLessThanOrEqualTo; } public SO_HistoryQuery setCartage2TaxRateLessThanOrEqualTo(BigDecimal value) { this.Cartage2TaxRateLessThanOrEqualTo = value; return this; } public BigDecimal getCartage2TaxRateNotEqualTo() { return Cartage2TaxRateNotEqualTo; } public SO_HistoryQuery setCartage2TaxRateNotEqualTo(BigDecimal value) { this.Cartage2TaxRateNotEqualTo = value; return this; } public ArrayList getCartage2TaxRateBetween() { return Cartage2TaxRateBetween; } public SO_HistoryQuery setCartage2TaxRateBetween(ArrayList value) { this.Cartage2TaxRateBetween = value; return this; } public ArrayList getCartage2TaxRateIn() { return Cartage2TaxRateIn; } public SO_HistoryQuery setCartage2TaxRateIn(ArrayList value) { this.Cartage2TaxRateIn = value; return this; } public BigDecimal getCartage2TaxAmount() { return Cartage2TaxAmount; } public SO_HistoryQuery setCartage2TaxAmount(BigDecimal value) { this.Cartage2TaxAmount = value; return this; } public BigDecimal getCartage2TaxAmountGreaterThanOrEqualTo() { return Cartage2TaxAmountGreaterThanOrEqualTo; } public SO_HistoryQuery setCartage2TaxAmountGreaterThanOrEqualTo(BigDecimal value) { this.Cartage2TaxAmountGreaterThanOrEqualTo = value; return this; } public BigDecimal getCartage2TaxAmountGreaterThan() { return Cartage2TaxAmountGreaterThan; } public SO_HistoryQuery setCartage2TaxAmountGreaterThan(BigDecimal value) { this.Cartage2TaxAmountGreaterThan = value; return this; } public BigDecimal getCartage2TaxAmountLessThan() { return Cartage2TaxAmountLessThan; } public SO_HistoryQuery setCartage2TaxAmountLessThan(BigDecimal value) { this.Cartage2TaxAmountLessThan = value; return this; } public BigDecimal getCartage2TaxAmountLessThanOrEqualTo() { return Cartage2TaxAmountLessThanOrEqualTo; } public SO_HistoryQuery setCartage2TaxAmountLessThanOrEqualTo(BigDecimal value) { this.Cartage2TaxAmountLessThanOrEqualTo = value; return this; } public BigDecimal getCartage2TaxAmountNotEqualTo() { return Cartage2TaxAmountNotEqualTo; } public SO_HistoryQuery setCartage2TaxAmountNotEqualTo(BigDecimal value) { this.Cartage2TaxAmountNotEqualTo = value; return this; } public ArrayList getCartage2TaxAmountBetween() { return Cartage2TaxAmountBetween; } public SO_HistoryQuery setCartage2TaxAmountBetween(ArrayList value) { this.Cartage2TaxAmountBetween = value; return this; } public ArrayList getCartage2TaxAmountIn() { return Cartage2TaxAmountIn; } public SO_HistoryQuery setCartage2TaxAmountIn(ArrayList value) { this.Cartage2TaxAmountIn = value; return this; } public String getCartage3TaxRateID() { return Cartage3TaxRateID; } public SO_HistoryQuery setCartage3TaxRateID(String value) { this.Cartage3TaxRateID = value; return this; } public String getCartage3TaxRateIDStartsWith() { return Cartage3TaxRateIDStartsWith; } public SO_HistoryQuery setCartage3TaxRateIDStartsWith(String value) { this.Cartage3TaxRateIDStartsWith = value; return this; } public String getCartage3TaxRateIDEndsWith() { return Cartage3TaxRateIDEndsWith; } public SO_HistoryQuery setCartage3TaxRateIDEndsWith(String value) { this.Cartage3TaxRateIDEndsWith = value; return this; } public String getCartage3TaxRateIDContains() { return Cartage3TaxRateIDContains; } public SO_HistoryQuery setCartage3TaxRateIDContains(String value) { this.Cartage3TaxRateIDContains = value; return this; } public String getCartage3TaxRateIDLike() { return Cartage3TaxRateIDLike; } public SO_HistoryQuery setCartage3TaxRateIDLike(String value) { this.Cartage3TaxRateIDLike = value; return this; } public ArrayList getCartage3TaxRateIDBetween() { return Cartage3TaxRateIDBetween; } public SO_HistoryQuery setCartage3TaxRateIDBetween(ArrayList value) { this.Cartage3TaxRateIDBetween = value; return this; } public ArrayList getCartage3TaxRateIDIn() { return Cartage3TaxRateIDIn; } public SO_HistoryQuery setCartage3TaxRateIDIn(ArrayList value) { this.Cartage3TaxRateIDIn = value; return this; } public BigDecimal getCartage3TaxRate() { return Cartage3TaxRate; } public SO_HistoryQuery setCartage3TaxRate(BigDecimal value) { this.Cartage3TaxRate = value; return this; } public BigDecimal getCartage3TaxRateGreaterThanOrEqualTo() { return Cartage3TaxRateGreaterThanOrEqualTo; } public SO_HistoryQuery setCartage3TaxRateGreaterThanOrEqualTo(BigDecimal value) { this.Cartage3TaxRateGreaterThanOrEqualTo = value; return this; } public BigDecimal getCartage3TaxRateGreaterThan() { return Cartage3TaxRateGreaterThan; } public SO_HistoryQuery setCartage3TaxRateGreaterThan(BigDecimal value) { this.Cartage3TaxRateGreaterThan = value; return this; } public BigDecimal getCartage3TaxRateLessThan() { return Cartage3TaxRateLessThan; } public SO_HistoryQuery setCartage3TaxRateLessThan(BigDecimal value) { this.Cartage3TaxRateLessThan = value; return this; } public BigDecimal getCartage3TaxRateLessThanOrEqualTo() { return Cartage3TaxRateLessThanOrEqualTo; } public SO_HistoryQuery setCartage3TaxRateLessThanOrEqualTo(BigDecimal value) { this.Cartage3TaxRateLessThanOrEqualTo = value; return this; } public BigDecimal getCartage3TaxRateNotEqualTo() { return Cartage3TaxRateNotEqualTo; } public SO_HistoryQuery setCartage3TaxRateNotEqualTo(BigDecimal value) { this.Cartage3TaxRateNotEqualTo = value; return this; } public ArrayList getCartage3TaxRateBetween() { return Cartage3TaxRateBetween; } public SO_HistoryQuery setCartage3TaxRateBetween(ArrayList value) { this.Cartage3TaxRateBetween = value; return this; } public ArrayList getCartage3TaxRateIn() { return Cartage3TaxRateIn; } public SO_HistoryQuery setCartage3TaxRateIn(ArrayList value) { this.Cartage3TaxRateIn = value; return this; } public BigDecimal getCartage3TaxAmount() { return Cartage3TaxAmount; } public SO_HistoryQuery setCartage3TaxAmount(BigDecimal value) { this.Cartage3TaxAmount = value; return this; } public BigDecimal getCartage3TaxAmountGreaterThanOrEqualTo() { return Cartage3TaxAmountGreaterThanOrEqualTo; } public SO_HistoryQuery setCartage3TaxAmountGreaterThanOrEqualTo(BigDecimal value) { this.Cartage3TaxAmountGreaterThanOrEqualTo = value; return this; } public BigDecimal getCartage3TaxAmountGreaterThan() { return Cartage3TaxAmountGreaterThan; } public SO_HistoryQuery setCartage3TaxAmountGreaterThan(BigDecimal value) { this.Cartage3TaxAmountGreaterThan = value; return this; } public BigDecimal getCartage3TaxAmountLessThan() { return Cartage3TaxAmountLessThan; } public SO_HistoryQuery setCartage3TaxAmountLessThan(BigDecimal value) { this.Cartage3TaxAmountLessThan = value; return this; } public BigDecimal getCartage3TaxAmountLessThanOrEqualTo() { return Cartage3TaxAmountLessThanOrEqualTo; } public SO_HistoryQuery setCartage3TaxAmountLessThanOrEqualTo(BigDecimal value) { this.Cartage3TaxAmountLessThanOrEqualTo = value; return this; } public BigDecimal getCartage3TaxAmountNotEqualTo() { return Cartage3TaxAmountNotEqualTo; } public SO_HistoryQuery setCartage3TaxAmountNotEqualTo(BigDecimal value) { this.Cartage3TaxAmountNotEqualTo = value; return this; } public ArrayList getCartage3TaxAmountBetween() { return Cartage3TaxAmountBetween; } public SO_HistoryQuery setCartage3TaxAmountBetween(ArrayList value) { this.Cartage3TaxAmountBetween = value; return this; } public ArrayList getCartage3TaxAmountIn() { return Cartage3TaxAmountIn; } public SO_HistoryQuery setCartage3TaxAmountIn(ArrayList value) { this.Cartage3TaxAmountIn = value; return this; } public String getFreightForwardAddress1() { return FreightForwardAddress1; } public SO_HistoryQuery setFreightForwardAddress1(String value) { this.FreightForwardAddress1 = value; return this; } public String getFreightForwardAddress1StartsWith() { return FreightForwardAddress1StartsWith; } public SO_HistoryQuery setFreightForwardAddress1StartsWith(String value) { this.FreightForwardAddress1StartsWith = value; return this; } public String getFreightForwardAddress1EndsWith() { return FreightForwardAddress1EndsWith; } public SO_HistoryQuery setFreightForwardAddress1EndsWith(String value) { this.FreightForwardAddress1EndsWith = value; return this; } public String getFreightForwardAddress1Contains() { return FreightForwardAddress1Contains; } public SO_HistoryQuery setFreightForwardAddress1Contains(String value) { this.FreightForwardAddress1Contains = value; return this; } public String getFreightForwardAddress1Like() { return FreightForwardAddress1Like; } public SO_HistoryQuery setFreightForwardAddress1Like(String value) { this.FreightForwardAddress1Like = value; return this; } public ArrayList getFreightForwardAddress1Between() { return FreightForwardAddress1Between; } public SO_HistoryQuery setFreightForwardAddress1Between(ArrayList value) { this.FreightForwardAddress1Between = value; return this; } public ArrayList getFreightForwardAddress1In() { return FreightForwardAddress1In; } public SO_HistoryQuery setFreightForwardAddress1In(ArrayList value) { this.FreightForwardAddress1In = value; return this; } public String getFreightForwardAddress2() { return FreightForwardAddress2; } public SO_HistoryQuery setFreightForwardAddress2(String value) { this.FreightForwardAddress2 = value; return this; } public String getFreightForwardAddress2StartsWith() { return FreightForwardAddress2StartsWith; } public SO_HistoryQuery setFreightForwardAddress2StartsWith(String value) { this.FreightForwardAddress2StartsWith = value; return this; } public String getFreightForwardAddress2EndsWith() { return FreightForwardAddress2EndsWith; } public SO_HistoryQuery setFreightForwardAddress2EndsWith(String value) { this.FreightForwardAddress2EndsWith = value; return this; } public String getFreightForwardAddress2Contains() { return FreightForwardAddress2Contains; } public SO_HistoryQuery setFreightForwardAddress2Contains(String value) { this.FreightForwardAddress2Contains = value; return this; } public String getFreightForwardAddress2Like() { return FreightForwardAddress2Like; } public SO_HistoryQuery setFreightForwardAddress2Like(String value) { this.FreightForwardAddress2Like = value; return this; } public ArrayList getFreightForwardAddress2Between() { return FreightForwardAddress2Between; } public SO_HistoryQuery setFreightForwardAddress2Between(ArrayList value) { this.FreightForwardAddress2Between = value; return this; } public ArrayList getFreightForwardAddress2In() { return FreightForwardAddress2In; } public SO_HistoryQuery setFreightForwardAddress2In(ArrayList value) { this.FreightForwardAddress2In = value; return this; } public String getFreightForwardAddress3() { return FreightForwardAddress3; } public SO_HistoryQuery setFreightForwardAddress3(String value) { this.FreightForwardAddress3 = value; return this; } public String getFreightForwardAddress3StartsWith() { return FreightForwardAddress3StartsWith; } public SO_HistoryQuery setFreightForwardAddress3StartsWith(String value) { this.FreightForwardAddress3StartsWith = value; return this; } public String getFreightForwardAddress3EndsWith() { return FreightForwardAddress3EndsWith; } public SO_HistoryQuery setFreightForwardAddress3EndsWith(String value) { this.FreightForwardAddress3EndsWith = value; return this; } public String getFreightForwardAddress3Contains() { return FreightForwardAddress3Contains; } public SO_HistoryQuery setFreightForwardAddress3Contains(String value) { this.FreightForwardAddress3Contains = value; return this; } public String getFreightForwardAddress3Like() { return FreightForwardAddress3Like; } public SO_HistoryQuery setFreightForwardAddress3Like(String value) { this.FreightForwardAddress3Like = value; return this; } public ArrayList getFreightForwardAddress3Between() { return FreightForwardAddress3Between; } public SO_HistoryQuery setFreightForwardAddress3Between(ArrayList value) { this.FreightForwardAddress3Between = value; return this; } public ArrayList getFreightForwardAddress3In() { return FreightForwardAddress3In; } public SO_HistoryQuery setFreightForwardAddress3In(ArrayList value) { this.FreightForwardAddress3In = value; return this; } public String getFreightForwardAddress4() { return FreightForwardAddress4; } public SO_HistoryQuery setFreightForwardAddress4(String value) { this.FreightForwardAddress4 = value; return this; } public String getFreightForwardAddress4StartsWith() { return FreightForwardAddress4StartsWith; } public SO_HistoryQuery setFreightForwardAddress4StartsWith(String value) { this.FreightForwardAddress4StartsWith = value; return this; } public String getFreightForwardAddress4EndsWith() { return FreightForwardAddress4EndsWith; } public SO_HistoryQuery setFreightForwardAddress4EndsWith(String value) { this.FreightForwardAddress4EndsWith = value; return this; } public String getFreightForwardAddress4Contains() { return FreightForwardAddress4Contains; } public SO_HistoryQuery setFreightForwardAddress4Contains(String value) { this.FreightForwardAddress4Contains = value; return this; } public String getFreightForwardAddress4Like() { return FreightForwardAddress4Like; } public SO_HistoryQuery setFreightForwardAddress4Like(String value) { this.FreightForwardAddress4Like = value; return this; } public ArrayList getFreightForwardAddress4Between() { return FreightForwardAddress4Between; } public SO_HistoryQuery setFreightForwardAddress4Between(ArrayList value) { this.FreightForwardAddress4Between = value; return this; } public ArrayList getFreightForwardAddress4In() { return FreightForwardAddress4In; } public SO_HistoryQuery setFreightForwardAddress4In(ArrayList value) { this.FreightForwardAddress4In = value; return this; } public String getFreightForwardNotes() { return FreightForwardNotes; } public SO_HistoryQuery setFreightForwardNotes(String value) { this.FreightForwardNotes = value; return this; } public String getFreightForwardNotesStartsWith() { return FreightForwardNotesStartsWith; } public SO_HistoryQuery setFreightForwardNotesStartsWith(String value) { this.FreightForwardNotesStartsWith = value; return this; } public String getFreightForwardNotesEndsWith() { return FreightForwardNotesEndsWith; } public SO_HistoryQuery setFreightForwardNotesEndsWith(String value) { this.FreightForwardNotesEndsWith = value; return this; } public String getFreightForwardNotesContains() { return FreightForwardNotesContains; } public SO_HistoryQuery setFreightForwardNotesContains(String value) { this.FreightForwardNotesContains = value; return this; } public String getFreightForwardNotesLike() { return FreightForwardNotesLike; } public SO_HistoryQuery setFreightForwardNotesLike(String value) { this.FreightForwardNotesLike = value; return this; } public ArrayList getFreightForwardNotesBetween() { return FreightForwardNotesBetween; } public SO_HistoryQuery setFreightForwardNotesBetween(ArrayList value) { this.FreightForwardNotesBetween = value; return this; } public ArrayList getFreightForwardNotesIn() { return FreightForwardNotesIn; } public SO_HistoryQuery setFreightForwardNotesIn(ArrayList value) { this.FreightForwardNotesIn = value; return this; } public String getDbTransID() { return DBTransID; } public SO_HistoryQuery setDbTransID(String value) { this.DBTransID = value; return this; } public String getDbTransIDStartsWith() { return DBTransIDStartsWith; } public SO_HistoryQuery setDbTransIDStartsWith(String value) { this.DBTransIDStartsWith = value; return this; } public String getDbTransIDEndsWith() { return DBTransIDEndsWith; } public SO_HistoryQuery setDbTransIDEndsWith(String value) { this.DBTransIDEndsWith = value; return this; } public String getDbTransIDContains() { return DBTransIDContains; } public SO_HistoryQuery setDbTransIDContains(String value) { this.DBTransIDContains = value; return this; } public String getDbTransIDLike() { return DBTransIDLike; } public SO_HistoryQuery setDbTransIDLike(String value) { this.DBTransIDLike = value; return this; } public ArrayList getDbTransIDBetween() { return DBTransIDBetween; } public SO_HistoryQuery setDbTransIDBetween(ArrayList value) { this.DBTransIDBetween = value; return this; } public ArrayList getDbTransIDIn() { return DBTransIDIn; } public SO_HistoryQuery setDbTransIDIn(ArrayList value) { this.DBTransIDIn = value; return this; } public Short getStatus() { return Status; } public SO_HistoryQuery setStatus(Short value) { this.Status = value; return this; } public Short getStatusGreaterThanOrEqualTo() { return StatusGreaterThanOrEqualTo; } public SO_HistoryQuery setStatusGreaterThanOrEqualTo(Short value) { this.StatusGreaterThanOrEqualTo = value; return this; } public Short getStatusGreaterThan() { return StatusGreaterThan; } public SO_HistoryQuery setStatusGreaterThan(Short value) { this.StatusGreaterThan = value; return this; } public Short getStatusLessThan() { return StatusLessThan; } public SO_HistoryQuery setStatusLessThan(Short value) { this.StatusLessThan = value; return this; } public Short getStatusLessThanOrEqualTo() { return StatusLessThanOrEqualTo; } public SO_HistoryQuery setStatusLessThanOrEqualTo(Short value) { this.StatusLessThanOrEqualTo = value; return this; } public Short getStatusNotEqualTo() { return StatusNotEqualTo; } public SO_HistoryQuery setStatusNotEqualTo(Short value) { this.StatusNotEqualTo = value; return this; } public ArrayList getStatusBetween() { return StatusBetween; } public SO_HistoryQuery setStatusBetween(ArrayList value) { this.StatusBetween = value; return this; } public ArrayList getStatusIn() { return StatusIn; } public SO_HistoryQuery setStatusIn(ArrayList value) { this.StatusIn = value; return this; } public String getEmailAddress() { return EmailAddress; } public SO_HistoryQuery setEmailAddress(String value) { this.EmailAddress = value; return this; } public String getEmailAddressStartsWith() { return EmailAddressStartsWith; } public SO_HistoryQuery setEmailAddressStartsWith(String value) { this.EmailAddressStartsWith = value; return this; } public String getEmailAddressEndsWith() { return EmailAddressEndsWith; } public SO_HistoryQuery setEmailAddressEndsWith(String value) { this.EmailAddressEndsWith = value; return this; } public String getEmailAddressContains() { return EmailAddressContains; } public SO_HistoryQuery setEmailAddressContains(String value) { this.EmailAddressContains = value; return this; } public String getEmailAddressLike() { return EmailAddressLike; } public SO_HistoryQuery setEmailAddressLike(String value) { this.EmailAddressLike = value; return this; } public ArrayList getEmailAddressBetween() { return EmailAddressBetween; } public SO_HistoryQuery setEmailAddressBetween(ArrayList value) { this.EmailAddressBetween = value; return this; } public ArrayList getEmailAddressIn() { return EmailAddressIn; } public SO_HistoryQuery setEmailAddressIn(ArrayList value) { this.EmailAddressIn = value; return this; } public String getConsignmentNote() { return ConsignmentNote; } public SO_HistoryQuery setConsignmentNote(String value) { this.ConsignmentNote = value; return this; } public String getConsignmentNoteStartsWith() { return ConsignmentNoteStartsWith; } public SO_HistoryQuery setConsignmentNoteStartsWith(String value) { this.ConsignmentNoteStartsWith = value; return this; } public String getConsignmentNoteEndsWith() { return ConsignmentNoteEndsWith; } public SO_HistoryQuery setConsignmentNoteEndsWith(String value) { this.ConsignmentNoteEndsWith = value; return this; } public String getConsignmentNoteContains() { return ConsignmentNoteContains; } public SO_HistoryQuery setConsignmentNoteContains(String value) { this.ConsignmentNoteContains = value; return this; } public String getConsignmentNoteLike() { return ConsignmentNoteLike; } public SO_HistoryQuery setConsignmentNoteLike(String value) { this.ConsignmentNoteLike = value; return this; } public ArrayList getConsignmentNoteBetween() { return ConsignmentNoteBetween; } public SO_HistoryQuery setConsignmentNoteBetween(ArrayList value) { this.ConsignmentNoteBetween = value; return this; } public ArrayList getConsignmentNoteIn() { return ConsignmentNoteIn; } public SO_HistoryQuery setConsignmentNoteIn(ArrayList value) { this.ConsignmentNoteIn = value; return this; } public String getEdiasnNumber() { return EDIASNNumber; } public SO_HistoryQuery setEdiasnNumber(String value) { this.EDIASNNumber = value; return this; } public String getEdiasnNumberStartsWith() { return EDIASNNumberStartsWith; } public SO_HistoryQuery setEdiasnNumberStartsWith(String value) { this.EDIASNNumberStartsWith = value; return this; } public String getEdiasnNumberEndsWith() { return EDIASNNumberEndsWith; } public SO_HistoryQuery setEdiasnNumberEndsWith(String value) { this.EDIASNNumberEndsWith = value; return this; } public String getEdiasnNumberContains() { return EDIASNNumberContains; } public SO_HistoryQuery setEdiasnNumberContains(String value) { this.EDIASNNumberContains = value; return this; } public String getEdiasnNumberLike() { return EDIASNNumberLike; } public SO_HistoryQuery setEdiasnNumberLike(String value) { this.EDIASNNumberLike = value; return this; } public ArrayList getEdiasnNumberBetween() { return EDIASNNumberBetween; } public SO_HistoryQuery setEdiasnNumberBetween(ArrayList value) { this.EDIASNNumberBetween = value; return this; } public ArrayList getEdiasnNumberIn() { return EDIASNNumberIn; } public SO_HistoryQuery setEdiasnNumberIn(ArrayList value) { this.EDIASNNumberIn = value; return this; } public Short getEdiPickStatus() { return EDIPickStatus; } public SO_HistoryQuery setEdiPickStatus(Short value) { this.EDIPickStatus = value; return this; } public Short getEdiPickStatusGreaterThanOrEqualTo() { return EDIPickStatusGreaterThanOrEqualTo; } public SO_HistoryQuery setEdiPickStatusGreaterThanOrEqualTo(Short value) { this.EDIPickStatusGreaterThanOrEqualTo = value; return this; } public Short getEdiPickStatusGreaterThan() { return EDIPickStatusGreaterThan; } public SO_HistoryQuery setEdiPickStatusGreaterThan(Short value) { this.EDIPickStatusGreaterThan = value; return this; } public Short getEdiPickStatusLessThan() { return EDIPickStatusLessThan; } public SO_HistoryQuery setEdiPickStatusLessThan(Short value) { this.EDIPickStatusLessThan = value; return this; } public Short getEdiPickStatusLessThanOrEqualTo() { return EDIPickStatusLessThanOrEqualTo; } public SO_HistoryQuery setEdiPickStatusLessThanOrEqualTo(Short value) { this.EDIPickStatusLessThanOrEqualTo = value; return this; } public Short getEdiPickStatusNotEqualTo() { return EDIPickStatusNotEqualTo; } public SO_HistoryQuery setEdiPickStatusNotEqualTo(Short value) { this.EDIPickStatusNotEqualTo = value; return this; } public ArrayList getEdiPickStatusBetween() { return EDIPickStatusBetween; } public SO_HistoryQuery setEdiPickStatusBetween(ArrayList value) { this.EDIPickStatusBetween = value; return this; } public ArrayList getEdiPickStatusIn() { return EDIPickStatusIn; } public SO_HistoryQuery setEdiPickStatusIn(ArrayList value) { this.EDIPickStatusIn = value; return this; } public Date getDateCreated() { return DateCreated; } public SO_HistoryQuery setDateCreated(Date value) { this.DateCreated = value; return this; } public Date getDateCreatedGreaterThanOrEqualTo() { return DateCreatedGreaterThanOrEqualTo; } public SO_HistoryQuery setDateCreatedGreaterThanOrEqualTo(Date value) { this.DateCreatedGreaterThanOrEqualTo = value; return this; } public Date getDateCreatedGreaterThan() { return DateCreatedGreaterThan; } public SO_HistoryQuery setDateCreatedGreaterThan(Date value) { this.DateCreatedGreaterThan = value; return this; } public Date getDateCreatedLessThan() { return DateCreatedLessThan; } public SO_HistoryQuery setDateCreatedLessThan(Date value) { this.DateCreatedLessThan = value; return this; } public Date getDateCreatedLessThanOrEqualTo() { return DateCreatedLessThanOrEqualTo; } public SO_HistoryQuery setDateCreatedLessThanOrEqualTo(Date value) { this.DateCreatedLessThanOrEqualTo = value; return this; } public Date getDateCreatedNotEqualTo() { return DateCreatedNotEqualTo; } public SO_HistoryQuery setDateCreatedNotEqualTo(Date value) { this.DateCreatedNotEqualTo = value; return this; } public ArrayList getDateCreatedBetween() { return DateCreatedBetween; } public SO_HistoryQuery setDateCreatedBetween(ArrayList value) { this.DateCreatedBetween = value; return this; } public ArrayList getDateCreatedIn() { return DateCreatedIn; } public SO_HistoryQuery setDateCreatedIn(ArrayList value) { this.DateCreatedIn = value; return this; } public Date getDateLastSaved() { return DateLastSaved; } public SO_HistoryQuery setDateLastSaved(Date value) { this.DateLastSaved = value; return this; } public Date getDateLastSavedGreaterThanOrEqualTo() { return DateLastSavedGreaterThanOrEqualTo; } public SO_HistoryQuery setDateLastSavedGreaterThanOrEqualTo(Date value) { this.DateLastSavedGreaterThanOrEqualTo = value; return this; } public Date getDateLastSavedGreaterThan() { return DateLastSavedGreaterThan; } public SO_HistoryQuery setDateLastSavedGreaterThan(Date value) { this.DateLastSavedGreaterThan = value; return this; } public Date getDateLastSavedLessThan() { return DateLastSavedLessThan; } public SO_HistoryQuery setDateLastSavedLessThan(Date value) { this.DateLastSavedLessThan = value; return this; } public Date getDateLastSavedLessThanOrEqualTo() { return DateLastSavedLessThanOrEqualTo; } public SO_HistoryQuery setDateLastSavedLessThanOrEqualTo(Date value) { this.DateLastSavedLessThanOrEqualTo = value; return this; } public Date getDateLastSavedNotEqualTo() { return DateLastSavedNotEqualTo; } public SO_HistoryQuery setDateLastSavedNotEqualTo(Date value) { this.DateLastSavedNotEqualTo = value; return this; } public ArrayList getDateLastSavedBetween() { return DateLastSavedBetween; } public SO_HistoryQuery setDateLastSavedBetween(ArrayList value) { this.DateLastSavedBetween = value; return this; } public ArrayList getDateLastSavedIn() { return DateLastSavedIn; } public SO_HistoryQuery setDateLastSavedIn(ArrayList value) { this.DateLastSavedIn = value; return this; } public Date getDatePosted() { return DatePosted; } public SO_HistoryQuery setDatePosted(Date value) { this.DatePosted = value; return this; } public Date getDatePostedGreaterThanOrEqualTo() { return DatePostedGreaterThanOrEqualTo; } public SO_HistoryQuery setDatePostedGreaterThanOrEqualTo(Date value) { this.DatePostedGreaterThanOrEqualTo = value; return this; } public Date getDatePostedGreaterThan() { return DatePostedGreaterThan; } public SO_HistoryQuery setDatePostedGreaterThan(Date value) { this.DatePostedGreaterThan = value; return this; } public Date getDatePostedLessThan() { return DatePostedLessThan; } public SO_HistoryQuery setDatePostedLessThan(Date value) { this.DatePostedLessThan = value; return this; } public Date getDatePostedLessThanOrEqualTo() { return DatePostedLessThanOrEqualTo; } public SO_HistoryQuery setDatePostedLessThanOrEqualTo(Date value) { this.DatePostedLessThanOrEqualTo = value; return this; } public Date getDatePostedNotEqualTo() { return DatePostedNotEqualTo; } public SO_HistoryQuery setDatePostedNotEqualTo(Date value) { this.DatePostedNotEqualTo = value; return this; } public ArrayList getDatePostedBetween() { return DatePostedBetween; } public SO_HistoryQuery setDatePostedBetween(ArrayList value) { this.DatePostedBetween = value; return this; } public ArrayList getDatePostedIn() { return DatePostedIn; } public SO_HistoryQuery setDatePostedIn(ArrayList value) { this.DatePostedIn = value; return this; } public Date getDateProcessed() { return DateProcessed; } public SO_HistoryQuery setDateProcessed(Date value) { this.DateProcessed = value; return this; } public Date getDateProcessedGreaterThanOrEqualTo() { return DateProcessedGreaterThanOrEqualTo; } public SO_HistoryQuery setDateProcessedGreaterThanOrEqualTo(Date value) { this.DateProcessedGreaterThanOrEqualTo = value; return this; } public Date getDateProcessedGreaterThan() { return DateProcessedGreaterThan; } public SO_HistoryQuery setDateProcessedGreaterThan(Date value) { this.DateProcessedGreaterThan = value; return this; } public Date getDateProcessedLessThan() { return DateProcessedLessThan; } public SO_HistoryQuery setDateProcessedLessThan(Date value) { this.DateProcessedLessThan = value; return this; } public Date getDateProcessedLessThanOrEqualTo() { return DateProcessedLessThanOrEqualTo; } public SO_HistoryQuery setDateProcessedLessThanOrEqualTo(Date value) { this.DateProcessedLessThanOrEqualTo = value; return this; } public Date getDateProcessedNotEqualTo() { return DateProcessedNotEqualTo; } public SO_HistoryQuery setDateProcessedNotEqualTo(Date value) { this.DateProcessedNotEqualTo = value; return this; } public ArrayList getDateProcessedBetween() { return DateProcessedBetween; } public SO_HistoryQuery setDateProcessedBetween(ArrayList value) { this.DateProcessedBetween = value; return this; } public ArrayList getDateProcessedIn() { return DateProcessedIn; } public SO_HistoryQuery setDateProcessedIn(ArrayList value) { this.DateProcessedIn = value; return this; } public Boolean isDropShipment() { return DropShipment; } public SO_HistoryQuery setDropShipment(Boolean value) { this.DropShipment = value; return this; } public String getDeliveryAddressee() { return DeliveryAddressee; } public SO_HistoryQuery setDeliveryAddressee(String value) { this.DeliveryAddressee = value; return this; } public String getDeliveryAddresseeStartsWith() { return DeliveryAddresseeStartsWith; } public SO_HistoryQuery setDeliveryAddresseeStartsWith(String value) { this.DeliveryAddresseeStartsWith = value; return this; } public String getDeliveryAddresseeEndsWith() { return DeliveryAddresseeEndsWith; } public SO_HistoryQuery setDeliveryAddresseeEndsWith(String value) { this.DeliveryAddresseeEndsWith = value; return this; } public String getDeliveryAddresseeContains() { return DeliveryAddresseeContains; } public SO_HistoryQuery setDeliveryAddresseeContains(String value) { this.DeliveryAddresseeContains = value; return this; } public String getDeliveryAddresseeLike() { return DeliveryAddresseeLike; } public SO_HistoryQuery setDeliveryAddresseeLike(String value) { this.DeliveryAddresseeLike = value; return this; } public ArrayList getDeliveryAddresseeBetween() { return DeliveryAddresseeBetween; } public SO_HistoryQuery setDeliveryAddresseeBetween(ArrayList value) { this.DeliveryAddresseeBetween = value; return this; } public ArrayList getDeliveryAddresseeIn() { return DeliveryAddresseeIn; } public SO_HistoryQuery setDeliveryAddresseeIn(ArrayList value) { this.DeliveryAddresseeIn = value; return this; } public String getDeliveryAddressCountry() { return DeliveryAddressCountry; } public SO_HistoryQuery setDeliveryAddressCountry(String value) { this.DeliveryAddressCountry = value; return this; } public String getDeliveryAddressCountryStartsWith() { return DeliveryAddressCountryStartsWith; } public SO_HistoryQuery setDeliveryAddressCountryStartsWith(String value) { this.DeliveryAddressCountryStartsWith = value; return this; } public String getDeliveryAddressCountryEndsWith() { return DeliveryAddressCountryEndsWith; } public SO_HistoryQuery setDeliveryAddressCountryEndsWith(String value) { this.DeliveryAddressCountryEndsWith = value; return this; } public String getDeliveryAddressCountryContains() { return DeliveryAddressCountryContains; } public SO_HistoryQuery setDeliveryAddressCountryContains(String value) { this.DeliveryAddressCountryContains = value; return this; } public String getDeliveryAddressCountryLike() { return DeliveryAddressCountryLike; } public SO_HistoryQuery setDeliveryAddressCountryLike(String value) { this.DeliveryAddressCountryLike = value; return this; } public ArrayList getDeliveryAddressCountryBetween() { return DeliveryAddressCountryBetween; } public SO_HistoryQuery setDeliveryAddressCountryBetween(ArrayList value) { this.DeliveryAddressCountryBetween = value; return this; } public ArrayList getDeliveryAddressCountryIn() { return DeliveryAddressCountryIn; } public SO_HistoryQuery setDeliveryAddressCountryIn(ArrayList value) { this.DeliveryAddressCountryIn = value; return this; } public String getFreightForwardAddressCountry() { return FreightForwardAddressCountry; } public SO_HistoryQuery setFreightForwardAddressCountry(String value) { this.FreightForwardAddressCountry = value; return this; } public String getFreightForwardAddressCountryStartsWith() { return FreightForwardAddressCountryStartsWith; } public SO_HistoryQuery setFreightForwardAddressCountryStartsWith(String value) { this.FreightForwardAddressCountryStartsWith = value; return this; } public String getFreightForwardAddressCountryEndsWith() { return FreightForwardAddressCountryEndsWith; } public SO_HistoryQuery setFreightForwardAddressCountryEndsWith(String value) { this.FreightForwardAddressCountryEndsWith = value; return this; } public String getFreightForwardAddressCountryContains() { return FreightForwardAddressCountryContains; } public SO_HistoryQuery setFreightForwardAddressCountryContains(String value) { this.FreightForwardAddressCountryContains = value; return this; } public String getFreightForwardAddressCountryLike() { return FreightForwardAddressCountryLike; } public SO_HistoryQuery setFreightForwardAddressCountryLike(String value) { this.FreightForwardAddressCountryLike = value; return this; } public ArrayList getFreightForwardAddressCountryBetween() { return FreightForwardAddressCountryBetween; } public SO_HistoryQuery setFreightForwardAddressCountryBetween(ArrayList value) { this.FreightForwardAddressCountryBetween = value; return this; } public ArrayList getFreightForwardAddressCountryIn() { return FreightForwardAddressCountryIn; } public SO_HistoryQuery setFreightForwardAddressCountryIn(ArrayList value) { this.FreightForwardAddressCountryIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class SO_HistoryCarrierQuery extends QueryDb implements IReturn> { public String SO_History_InvoiceHistoryID = null; public String SO_History_InvoiceHistoryIDStartsWith = null; public String SO_History_InvoiceHistoryIDEndsWith = null; public String SO_History_InvoiceHistoryIDContains = null; public String SO_History_InvoiceHistoryIDLike = null; public ArrayList SO_History_InvoiceHistoryIDBetween = null; public ArrayList SO_History_InvoiceHistoryIDIn = null; public Boolean UseLeastCost = null; public String FR_Carriers_RecID = null; public String FR_Carriers_RecIDStartsWith = null; public String FR_Carriers_RecIDEndsWith = null; public String FR_Carriers_RecIDContains = null; public String FR_Carriers_RecIDLike = null; public ArrayList FR_Carriers_RecIDBetween = null; public ArrayList FR_Carriers_RecIDIn = null; public String FR_CarrierServices_RecID = null; public String FR_CarrierServices_RecIDStartsWith = null; public String FR_CarrierServices_RecIDEndsWith = null; public String FR_CarrierServices_RecIDContains = null; public String FR_CarrierServices_RecIDLike = null; public ArrayList FR_CarrierServices_RecIDBetween = null; public ArrayList FR_CarrierServices_RecIDIn = null; public Short FreightSystemStatus = null; public Short FreightSystemStatusGreaterThanOrEqualTo = null; public Short FreightSystemStatusGreaterThan = null; public Short FreightSystemStatusLessThan = null; public Short FreightSystemStatusLessThanOrEqualTo = null; public Short FreightSystemStatusNotEqualTo = null; public ArrayList FreightSystemStatusBetween = null; public ArrayList FreightSystemStatusIn = null; public Short ChargeTo = null; public Short ChargeToGreaterThanOrEqualTo = null; public Short ChargeToGreaterThan = null; public Short ChargeToLessThan = null; public Short ChargeToLessThanOrEqualTo = null; public Short ChargeToNotEqualTo = null; public ArrayList ChargeToBetween = null; public ArrayList ChargeToIn = null; public String CarrierAccountNo = null; public String CarrierAccountNoStartsWith = null; public String CarrierAccountNoEndsWith = null; public String CarrierAccountNoContains = null; public String CarrierAccountNoLike = null; public ArrayList CarrierAccountNoBetween = null; public ArrayList CarrierAccountNoIn = null; public String getSoHistoryInvoiceHistoryID() { return SO_History_InvoiceHistoryID; } public SO_HistoryCarrierQuery setSoHistoryInvoiceHistoryID(String value) { this.SO_History_InvoiceHistoryID = value; return this; } public String getSoHistoryInvoiceHistoryIDStartsWith() { return SO_History_InvoiceHistoryIDStartsWith; } public SO_HistoryCarrierQuery setSoHistoryInvoiceHistoryIDStartsWith(String value) { this.SO_History_InvoiceHistoryIDStartsWith = value; return this; } public String getSoHistoryInvoiceHistoryIDEndsWith() { return SO_History_InvoiceHistoryIDEndsWith; } public SO_HistoryCarrierQuery setSoHistoryInvoiceHistoryIDEndsWith(String value) { this.SO_History_InvoiceHistoryIDEndsWith = value; return this; } public String getSoHistoryInvoiceHistoryIDContains() { return SO_History_InvoiceHistoryIDContains; } public SO_HistoryCarrierQuery setSoHistoryInvoiceHistoryIDContains(String value) { this.SO_History_InvoiceHistoryIDContains = value; return this; } public String getSoHistoryInvoiceHistoryIDLike() { return SO_History_InvoiceHistoryIDLike; } public SO_HistoryCarrierQuery setSoHistoryInvoiceHistoryIDLike(String value) { this.SO_History_InvoiceHistoryIDLike = value; return this; } public ArrayList getSoHistoryInvoiceHistoryIDBetween() { return SO_History_InvoiceHistoryIDBetween; } public SO_HistoryCarrierQuery setSoHistoryInvoiceHistoryIDBetween(ArrayList value) { this.SO_History_InvoiceHistoryIDBetween = value; return this; } public ArrayList getSoHistoryInvoiceHistoryIDIn() { return SO_History_InvoiceHistoryIDIn; } public SO_HistoryCarrierQuery setSoHistoryInvoiceHistoryIDIn(ArrayList value) { this.SO_History_InvoiceHistoryIDIn = value; return this; } public Boolean isUseLeastCost() { return UseLeastCost; } public SO_HistoryCarrierQuery setUseLeastCost(Boolean value) { this.UseLeastCost = value; return this; } public String getFrCarriersRecID() { return FR_Carriers_RecID; } public SO_HistoryCarrierQuery setFrCarriersRecID(String value) { this.FR_Carriers_RecID = value; return this; } public String getFrCarriersRecIDStartsWith() { return FR_Carriers_RecIDStartsWith; } public SO_HistoryCarrierQuery setFrCarriersRecIDStartsWith(String value) { this.FR_Carriers_RecIDStartsWith = value; return this; } public String getFrCarriersRecIDEndsWith() { return FR_Carriers_RecIDEndsWith; } public SO_HistoryCarrierQuery setFrCarriersRecIDEndsWith(String value) { this.FR_Carriers_RecIDEndsWith = value; return this; } public String getFrCarriersRecIDContains() { return FR_Carriers_RecIDContains; } public SO_HistoryCarrierQuery setFrCarriersRecIDContains(String value) { this.FR_Carriers_RecIDContains = value; return this; } public String getFrCarriersRecIDLike() { return FR_Carriers_RecIDLike; } public SO_HistoryCarrierQuery setFrCarriersRecIDLike(String value) { this.FR_Carriers_RecIDLike = value; return this; } public ArrayList getFrCarriersRecIDBetween() { return FR_Carriers_RecIDBetween; } public SO_HistoryCarrierQuery setFrCarriersRecIDBetween(ArrayList value) { this.FR_Carriers_RecIDBetween = value; return this; } public ArrayList getFrCarriersRecIDIn() { return FR_Carriers_RecIDIn; } public SO_HistoryCarrierQuery setFrCarriersRecIDIn(ArrayList value) { this.FR_Carriers_RecIDIn = value; return this; } public String getFrCarrierServicesRecID() { return FR_CarrierServices_RecID; } public SO_HistoryCarrierQuery setFrCarrierServicesRecID(String value) { this.FR_CarrierServices_RecID = value; return this; } public String getFrCarrierServicesRecIDStartsWith() { return FR_CarrierServices_RecIDStartsWith; } public SO_HistoryCarrierQuery setFrCarrierServicesRecIDStartsWith(String value) { this.FR_CarrierServices_RecIDStartsWith = value; return this; } public String getFrCarrierServicesRecIDEndsWith() { return FR_CarrierServices_RecIDEndsWith; } public SO_HistoryCarrierQuery setFrCarrierServicesRecIDEndsWith(String value) { this.FR_CarrierServices_RecIDEndsWith = value; return this; } public String getFrCarrierServicesRecIDContains() { return FR_CarrierServices_RecIDContains; } public SO_HistoryCarrierQuery setFrCarrierServicesRecIDContains(String value) { this.FR_CarrierServices_RecIDContains = value; return this; } public String getFrCarrierServicesRecIDLike() { return FR_CarrierServices_RecIDLike; } public SO_HistoryCarrierQuery setFrCarrierServicesRecIDLike(String value) { this.FR_CarrierServices_RecIDLike = value; return this; } public ArrayList getFrCarrierServicesRecIDBetween() { return FR_CarrierServices_RecIDBetween; } public SO_HistoryCarrierQuery setFrCarrierServicesRecIDBetween(ArrayList value) { this.FR_CarrierServices_RecIDBetween = value; return this; } public ArrayList getFrCarrierServicesRecIDIn() { return FR_CarrierServices_RecIDIn; } public SO_HistoryCarrierQuery setFrCarrierServicesRecIDIn(ArrayList value) { this.FR_CarrierServices_RecIDIn = value; return this; } public Short getFreightSystemStatus() { return FreightSystemStatus; } public SO_HistoryCarrierQuery setFreightSystemStatus(Short value) { this.FreightSystemStatus = value; return this; } public Short getFreightSystemStatusGreaterThanOrEqualTo() { return FreightSystemStatusGreaterThanOrEqualTo; } public SO_HistoryCarrierQuery setFreightSystemStatusGreaterThanOrEqualTo(Short value) { this.FreightSystemStatusGreaterThanOrEqualTo = value; return this; } public Short getFreightSystemStatusGreaterThan() { return FreightSystemStatusGreaterThan; } public SO_HistoryCarrierQuery setFreightSystemStatusGreaterThan(Short value) { this.FreightSystemStatusGreaterThan = value; return this; } public Short getFreightSystemStatusLessThan() { return FreightSystemStatusLessThan; } public SO_HistoryCarrierQuery setFreightSystemStatusLessThan(Short value) { this.FreightSystemStatusLessThan = value; return this; } public Short getFreightSystemStatusLessThanOrEqualTo() { return FreightSystemStatusLessThanOrEqualTo; } public SO_HistoryCarrierQuery setFreightSystemStatusLessThanOrEqualTo(Short value) { this.FreightSystemStatusLessThanOrEqualTo = value; return this; } public Short getFreightSystemStatusNotEqualTo() { return FreightSystemStatusNotEqualTo; } public SO_HistoryCarrierQuery setFreightSystemStatusNotEqualTo(Short value) { this.FreightSystemStatusNotEqualTo = value; return this; } public ArrayList getFreightSystemStatusBetween() { return FreightSystemStatusBetween; } public SO_HistoryCarrierQuery setFreightSystemStatusBetween(ArrayList value) { this.FreightSystemStatusBetween = value; return this; } public ArrayList getFreightSystemStatusIn() { return FreightSystemStatusIn; } public SO_HistoryCarrierQuery setFreightSystemStatusIn(ArrayList value) { this.FreightSystemStatusIn = value; return this; } public Short getChargeTo() { return ChargeTo; } public SO_HistoryCarrierQuery setChargeTo(Short value) { this.ChargeTo = value; return this; } public Short getChargeToGreaterThanOrEqualTo() { return ChargeToGreaterThanOrEqualTo; } public SO_HistoryCarrierQuery setChargeToGreaterThanOrEqualTo(Short value) { this.ChargeToGreaterThanOrEqualTo = value; return this; } public Short getChargeToGreaterThan() { return ChargeToGreaterThan; } public SO_HistoryCarrierQuery setChargeToGreaterThan(Short value) { this.ChargeToGreaterThan = value; return this; } public Short getChargeToLessThan() { return ChargeToLessThan; } public SO_HistoryCarrierQuery setChargeToLessThan(Short value) { this.ChargeToLessThan = value; return this; } public Short getChargeToLessThanOrEqualTo() { return ChargeToLessThanOrEqualTo; } public SO_HistoryCarrierQuery setChargeToLessThanOrEqualTo(Short value) { this.ChargeToLessThanOrEqualTo = value; return this; } public Short getChargeToNotEqualTo() { return ChargeToNotEqualTo; } public SO_HistoryCarrierQuery setChargeToNotEqualTo(Short value) { this.ChargeToNotEqualTo = value; return this; } public ArrayList getChargeToBetween() { return ChargeToBetween; } public SO_HistoryCarrierQuery setChargeToBetween(ArrayList value) { this.ChargeToBetween = value; return this; } public ArrayList getChargeToIn() { return ChargeToIn; } public SO_HistoryCarrierQuery setChargeToIn(ArrayList value) { this.ChargeToIn = value; return this; } public String getCarrierAccountNo() { return CarrierAccountNo; } public SO_HistoryCarrierQuery setCarrierAccountNo(String value) { this.CarrierAccountNo = value; return this; } public String getCarrierAccountNoStartsWith() { return CarrierAccountNoStartsWith; } public SO_HistoryCarrierQuery setCarrierAccountNoStartsWith(String value) { this.CarrierAccountNoStartsWith = value; return this; } public String getCarrierAccountNoEndsWith() { return CarrierAccountNoEndsWith; } public SO_HistoryCarrierQuery setCarrierAccountNoEndsWith(String value) { this.CarrierAccountNoEndsWith = value; return this; } public String getCarrierAccountNoContains() { return CarrierAccountNoContains; } public SO_HistoryCarrierQuery setCarrierAccountNoContains(String value) { this.CarrierAccountNoContains = value; return this; } public String getCarrierAccountNoLike() { return CarrierAccountNoLike; } public SO_HistoryCarrierQuery setCarrierAccountNoLike(String value) { this.CarrierAccountNoLike = value; return this; } public ArrayList getCarrierAccountNoBetween() { return CarrierAccountNoBetween; } public SO_HistoryCarrierQuery setCarrierAccountNoBetween(ArrayList value) { this.CarrierAccountNoBetween = value; return this; } public ArrayList getCarrierAccountNoIn() { return CarrierAccountNoIn; } public SO_HistoryCarrierQuery setCarrierAccountNoIn(ArrayList value) { this.CarrierAccountNoIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class SO_HistoryConsignmentNotesQuery extends QueryDb implements IReturn> { public String RecID = null; public String RecIDStartsWith = null; public String RecIDEndsWith = null; public String RecIDContains = null; public String RecIDLike = null; public ArrayList RecIDBetween = null; public ArrayList RecIDIn = null; public String SO_History_InvoiceHistoryID = null; public String SO_History_InvoiceHistoryIDStartsWith = null; public String SO_History_InvoiceHistoryIDEndsWith = null; public String SO_History_InvoiceHistoryIDContains = null; public String SO_History_InvoiceHistoryIDLike = null; public ArrayList SO_History_InvoiceHistoryIDBetween = null; public ArrayList SO_History_InvoiceHistoryIDIn = null; public String ConsignmentNoteNo = null; public String ConsignmentNoteNoStartsWith = null; public String ConsignmentNoteNoEndsWith = null; public String ConsignmentNoteNoContains = null; public String ConsignmentNoteNoLike = null; public ArrayList ConsignmentNoteNoBetween = null; public ArrayList ConsignmentNoteNoIn = null; public Date LastSavedDateTime = null; public Date LastSavedDateTimeGreaterThanOrEqualTo = null; public Date LastSavedDateTimeGreaterThan = null; public Date LastSavedDateTimeLessThan = null; public Date LastSavedDateTimeLessThanOrEqualTo = null; public Date LastSavedDateTimeNotEqualTo = null; public ArrayList LastSavedDateTimeBetween = null; public ArrayList LastSavedDateTimeIn = null; public Date ConsignmentNoteDate = null; public Date ConsignmentNoteDateGreaterThanOrEqualTo = null; public Date ConsignmentNoteDateGreaterThan = null; public Date ConsignmentNoteDateLessThan = null; public Date ConsignmentNoteDateLessThanOrEqualTo = null; public Date ConsignmentNoteDateNotEqualTo = null; public ArrayList ConsignmentNoteDateBetween = null; public ArrayList ConsignmentNoteDateIn = null; public BigDecimal ExGSTAmount = null; public BigDecimal ExGSTAmountGreaterThanOrEqualTo = null; public BigDecimal ExGSTAmountGreaterThan = null; public BigDecimal ExGSTAmountLessThan = null; public BigDecimal ExGSTAmountLessThanOrEqualTo = null; public BigDecimal ExGSTAmountNotEqualTo = null; public ArrayList ExGSTAmountBetween = null; public ArrayList ExGSTAmountIn = null; public BigDecimal GSTAmount = null; public BigDecimal GSTAmountGreaterThanOrEqualTo = null; public BigDecimal GSTAmountGreaterThan = null; public BigDecimal GSTAmountLessThan = null; public BigDecimal GSTAmountLessThanOrEqualTo = null; public BigDecimal GSTAmountNotEqualTo = null; public ArrayList GSTAmountBetween = null; public ArrayList GSTAmountIn = null; public String getRecID() { return RecID; } public SO_HistoryConsignmentNotesQuery setRecID(String value) { this.RecID = value; return this; } public String getRecIDStartsWith() { return RecIDStartsWith; } public SO_HistoryConsignmentNotesQuery setRecIDStartsWith(String value) { this.RecIDStartsWith = value; return this; } public String getRecIDEndsWith() { return RecIDEndsWith; } public SO_HistoryConsignmentNotesQuery setRecIDEndsWith(String value) { this.RecIDEndsWith = value; return this; } public String getRecIDContains() { return RecIDContains; } public SO_HistoryConsignmentNotesQuery setRecIDContains(String value) { this.RecIDContains = value; return this; } public String getRecIDLike() { return RecIDLike; } public SO_HistoryConsignmentNotesQuery setRecIDLike(String value) { this.RecIDLike = value; return this; } public ArrayList getRecIDBetween() { return RecIDBetween; } public SO_HistoryConsignmentNotesQuery setRecIDBetween(ArrayList value) { this.RecIDBetween = value; return this; } public ArrayList getRecIDIn() { return RecIDIn; } public SO_HistoryConsignmentNotesQuery setRecIDIn(ArrayList value) { this.RecIDIn = value; return this; } public String getSoHistoryInvoiceHistoryID() { return SO_History_InvoiceHistoryID; } public SO_HistoryConsignmentNotesQuery setSoHistoryInvoiceHistoryID(String value) { this.SO_History_InvoiceHistoryID = value; return this; } public String getSoHistoryInvoiceHistoryIDStartsWith() { return SO_History_InvoiceHistoryIDStartsWith; } public SO_HistoryConsignmentNotesQuery setSoHistoryInvoiceHistoryIDStartsWith(String value) { this.SO_History_InvoiceHistoryIDStartsWith = value; return this; } public String getSoHistoryInvoiceHistoryIDEndsWith() { return SO_History_InvoiceHistoryIDEndsWith; } public SO_HistoryConsignmentNotesQuery setSoHistoryInvoiceHistoryIDEndsWith(String value) { this.SO_History_InvoiceHistoryIDEndsWith = value; return this; } public String getSoHistoryInvoiceHistoryIDContains() { return SO_History_InvoiceHistoryIDContains; } public SO_HistoryConsignmentNotesQuery setSoHistoryInvoiceHistoryIDContains(String value) { this.SO_History_InvoiceHistoryIDContains = value; return this; } public String getSoHistoryInvoiceHistoryIDLike() { return SO_History_InvoiceHistoryIDLike; } public SO_HistoryConsignmentNotesQuery setSoHistoryInvoiceHistoryIDLike(String value) { this.SO_History_InvoiceHistoryIDLike = value; return this; } public ArrayList getSoHistoryInvoiceHistoryIDBetween() { return SO_History_InvoiceHistoryIDBetween; } public SO_HistoryConsignmentNotesQuery setSoHistoryInvoiceHistoryIDBetween(ArrayList value) { this.SO_History_InvoiceHistoryIDBetween = value; return this; } public ArrayList getSoHistoryInvoiceHistoryIDIn() { return SO_History_InvoiceHistoryIDIn; } public SO_HistoryConsignmentNotesQuery setSoHistoryInvoiceHistoryIDIn(ArrayList value) { this.SO_History_InvoiceHistoryIDIn = value; return this; } public String getConsignmentNoteNo() { return ConsignmentNoteNo; } public SO_HistoryConsignmentNotesQuery setConsignmentNoteNo(String value) { this.ConsignmentNoteNo = value; return this; } public String getConsignmentNoteNoStartsWith() { return ConsignmentNoteNoStartsWith; } public SO_HistoryConsignmentNotesQuery setConsignmentNoteNoStartsWith(String value) { this.ConsignmentNoteNoStartsWith = value; return this; } public String getConsignmentNoteNoEndsWith() { return ConsignmentNoteNoEndsWith; } public SO_HistoryConsignmentNotesQuery setConsignmentNoteNoEndsWith(String value) { this.ConsignmentNoteNoEndsWith = value; return this; } public String getConsignmentNoteNoContains() { return ConsignmentNoteNoContains; } public SO_HistoryConsignmentNotesQuery setConsignmentNoteNoContains(String value) { this.ConsignmentNoteNoContains = value; return this; } public String getConsignmentNoteNoLike() { return ConsignmentNoteNoLike; } public SO_HistoryConsignmentNotesQuery setConsignmentNoteNoLike(String value) { this.ConsignmentNoteNoLike = value; return this; } public ArrayList getConsignmentNoteNoBetween() { return ConsignmentNoteNoBetween; } public SO_HistoryConsignmentNotesQuery setConsignmentNoteNoBetween(ArrayList value) { this.ConsignmentNoteNoBetween = value; return this; } public ArrayList getConsignmentNoteNoIn() { return ConsignmentNoteNoIn; } public SO_HistoryConsignmentNotesQuery setConsignmentNoteNoIn(ArrayList value) { this.ConsignmentNoteNoIn = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public SO_HistoryConsignmentNotesQuery setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getLastSavedDateTimeGreaterThanOrEqualTo() { return LastSavedDateTimeGreaterThanOrEqualTo; } public SO_HistoryConsignmentNotesQuery setLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.LastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeGreaterThan() { return LastSavedDateTimeGreaterThan; } public SO_HistoryConsignmentNotesQuery setLastSavedDateTimeGreaterThan(Date value) { this.LastSavedDateTimeGreaterThan = value; return this; } public Date getLastSavedDateTimeLessThan() { return LastSavedDateTimeLessThan; } public SO_HistoryConsignmentNotesQuery setLastSavedDateTimeLessThan(Date value) { this.LastSavedDateTimeLessThan = value; return this; } public Date getLastSavedDateTimeLessThanOrEqualTo() { return LastSavedDateTimeLessThanOrEqualTo; } public SO_HistoryConsignmentNotesQuery setLastSavedDateTimeLessThanOrEqualTo(Date value) { this.LastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeNotEqualTo() { return LastSavedDateTimeNotEqualTo; } public SO_HistoryConsignmentNotesQuery setLastSavedDateTimeNotEqualTo(Date value) { this.LastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getLastSavedDateTimeBetween() { return LastSavedDateTimeBetween; } public SO_HistoryConsignmentNotesQuery setLastSavedDateTimeBetween(ArrayList value) { this.LastSavedDateTimeBetween = value; return this; } public ArrayList getLastSavedDateTimeIn() { return LastSavedDateTimeIn; } public SO_HistoryConsignmentNotesQuery setLastSavedDateTimeIn(ArrayList value) { this.LastSavedDateTimeIn = value; return this; } public Date getConsignmentNoteDate() { return ConsignmentNoteDate; } public SO_HistoryConsignmentNotesQuery setConsignmentNoteDate(Date value) { this.ConsignmentNoteDate = value; return this; } public Date getConsignmentNoteDateGreaterThanOrEqualTo() { return ConsignmentNoteDateGreaterThanOrEqualTo; } public SO_HistoryConsignmentNotesQuery setConsignmentNoteDateGreaterThanOrEqualTo(Date value) { this.ConsignmentNoteDateGreaterThanOrEqualTo = value; return this; } public Date getConsignmentNoteDateGreaterThan() { return ConsignmentNoteDateGreaterThan; } public SO_HistoryConsignmentNotesQuery setConsignmentNoteDateGreaterThan(Date value) { this.ConsignmentNoteDateGreaterThan = value; return this; } public Date getConsignmentNoteDateLessThan() { return ConsignmentNoteDateLessThan; } public SO_HistoryConsignmentNotesQuery setConsignmentNoteDateLessThan(Date value) { this.ConsignmentNoteDateLessThan = value; return this; } public Date getConsignmentNoteDateLessThanOrEqualTo() { return ConsignmentNoteDateLessThanOrEqualTo; } public SO_HistoryConsignmentNotesQuery setConsignmentNoteDateLessThanOrEqualTo(Date value) { this.ConsignmentNoteDateLessThanOrEqualTo = value; return this; } public Date getConsignmentNoteDateNotEqualTo() { return ConsignmentNoteDateNotEqualTo; } public SO_HistoryConsignmentNotesQuery setConsignmentNoteDateNotEqualTo(Date value) { this.ConsignmentNoteDateNotEqualTo = value; return this; } public ArrayList getConsignmentNoteDateBetween() { return ConsignmentNoteDateBetween; } public SO_HistoryConsignmentNotesQuery setConsignmentNoteDateBetween(ArrayList value) { this.ConsignmentNoteDateBetween = value; return this; } public ArrayList getConsignmentNoteDateIn() { return ConsignmentNoteDateIn; } public SO_HistoryConsignmentNotesQuery setConsignmentNoteDateIn(ArrayList value) { this.ConsignmentNoteDateIn = value; return this; } public BigDecimal getExGSTAmount() { return ExGSTAmount; } public SO_HistoryConsignmentNotesQuery setExGSTAmount(BigDecimal value) { this.ExGSTAmount = value; return this; } public BigDecimal getExGSTAmountGreaterThanOrEqualTo() { return ExGSTAmountGreaterThanOrEqualTo; } public SO_HistoryConsignmentNotesQuery setExGSTAmountGreaterThanOrEqualTo(BigDecimal value) { this.ExGSTAmountGreaterThanOrEqualTo = value; return this; } public BigDecimal getExGSTAmountGreaterThan() { return ExGSTAmountGreaterThan; } public SO_HistoryConsignmentNotesQuery setExGSTAmountGreaterThan(BigDecimal value) { this.ExGSTAmountGreaterThan = value; return this; } public BigDecimal getExGSTAmountLessThan() { return ExGSTAmountLessThan; } public SO_HistoryConsignmentNotesQuery setExGSTAmountLessThan(BigDecimal value) { this.ExGSTAmountLessThan = value; return this; } public BigDecimal getExGSTAmountLessThanOrEqualTo() { return ExGSTAmountLessThanOrEqualTo; } public SO_HistoryConsignmentNotesQuery setExGSTAmountLessThanOrEqualTo(BigDecimal value) { this.ExGSTAmountLessThanOrEqualTo = value; return this; } public BigDecimal getExGSTAmountNotEqualTo() { return ExGSTAmountNotEqualTo; } public SO_HistoryConsignmentNotesQuery setExGSTAmountNotEqualTo(BigDecimal value) { this.ExGSTAmountNotEqualTo = value; return this; } public ArrayList getExGSTAmountBetween() { return ExGSTAmountBetween; } public SO_HistoryConsignmentNotesQuery setExGSTAmountBetween(ArrayList value) { this.ExGSTAmountBetween = value; return this; } public ArrayList getExGSTAmountIn() { return ExGSTAmountIn; } public SO_HistoryConsignmentNotesQuery setExGSTAmountIn(ArrayList value) { this.ExGSTAmountIn = value; return this; } public BigDecimal getGstAmount() { return GSTAmount; } public SO_HistoryConsignmentNotesQuery setGstAmount(BigDecimal value) { this.GSTAmount = value; return this; } public BigDecimal getGstAmountGreaterThanOrEqualTo() { return GSTAmountGreaterThanOrEqualTo; } public SO_HistoryConsignmentNotesQuery setGstAmountGreaterThanOrEqualTo(BigDecimal value) { this.GSTAmountGreaterThanOrEqualTo = value; return this; } public BigDecimal getGstAmountGreaterThan() { return GSTAmountGreaterThan; } public SO_HistoryConsignmentNotesQuery setGstAmountGreaterThan(BigDecimal value) { this.GSTAmountGreaterThan = value; return this; } public BigDecimal getGstAmountLessThan() { return GSTAmountLessThan; } public SO_HistoryConsignmentNotesQuery setGstAmountLessThan(BigDecimal value) { this.GSTAmountLessThan = value; return this; } public BigDecimal getGstAmountLessThanOrEqualTo() { return GSTAmountLessThanOrEqualTo; } public SO_HistoryConsignmentNotesQuery setGstAmountLessThanOrEqualTo(BigDecimal value) { this.GSTAmountLessThanOrEqualTo = value; return this; } public BigDecimal getGstAmountNotEqualTo() { return GSTAmountNotEqualTo; } public SO_HistoryConsignmentNotesQuery setGstAmountNotEqualTo(BigDecimal value) { this.GSTAmountNotEqualTo = value; return this; } public ArrayList getGstAmountBetween() { return GSTAmountBetween; } public SO_HistoryConsignmentNotesQuery setGstAmountBetween(ArrayList value) { this.GSTAmountBetween = value; return this; } public ArrayList getGstAmountIn() { return GSTAmountIn; } public SO_HistoryConsignmentNotesQuery setGstAmountIn(ArrayList value) { this.GSTAmountIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class SO_HistoryCustomSettingQuery extends QueryDb implements IReturn> { public String SettingID = null; public String SettingIDStartsWith = null; public String SettingIDEndsWith = null; public String SettingIDContains = null; public String SettingIDLike = null; public ArrayList SettingIDBetween = null; public ArrayList SettingIDIn = null; public Date LastSavedDateTime = null; public Date LastSavedDateTimeGreaterThanOrEqualTo = null; public Date LastSavedDateTimeGreaterThan = null; public Date LastSavedDateTimeLessThan = null; public Date LastSavedDateTimeLessThanOrEqualTo = null; public Date LastSavedDateTimeNotEqualTo = null; public ArrayList LastSavedDateTimeBetween = null; public ArrayList LastSavedDateTimeIn = null; public String SettingDescription = null; public String SettingDescriptionStartsWith = null; public String SettingDescriptionEndsWith = null; public String SettingDescriptionContains = null; public String SettingDescriptionLike = null; public ArrayList SettingDescriptionBetween = null; public ArrayList SettingDescriptionIn = null; public String SettingName = null; public String SettingNameStartsWith = null; public String SettingNameEndsWith = null; public String SettingNameContains = null; public String SettingNameLike = null; public ArrayList SettingNameBetween = null; public ArrayList SettingNameIn = null; public BigDecimal DisplayOrder = null; public BigDecimal DisplayOrderGreaterThanOrEqualTo = null; public BigDecimal DisplayOrderGreaterThan = null; public BigDecimal DisplayOrderLessThan = null; public BigDecimal DisplayOrderLessThanOrEqualTo = null; public BigDecimal DisplayOrderNotEqualTo = null; public ArrayList DisplayOrderBetween = null; public ArrayList DisplayOrderIn = null; public Short CellType = null; public Short CellTypeGreaterThanOrEqualTo = null; public Short CellTypeGreaterThan = null; public Short CellTypeLessThan = null; public Short CellTypeLessThanOrEqualTo = null; public Short CellTypeNotEqualTo = null; public ArrayList CellTypeBetween = null; public ArrayList CellTypeIn = null; public String ScriptFormatCell = null; public String ScriptFormatCellStartsWith = null; public String ScriptFormatCellEndsWith = null; public String ScriptFormatCellContains = null; public String ScriptFormatCellLike = null; public ArrayList ScriptFormatCellBetween = null; public ArrayList ScriptFormatCellIn = null; public String ScriptButtonClicked = null; public String ScriptButtonClickedStartsWith = null; public String ScriptButtonClickedEndsWith = null; public String ScriptButtonClickedContains = null; public String ScriptButtonClickedLike = null; public ArrayList ScriptButtonClickedBetween = null; public ArrayList ScriptButtonClickedIn = null; public String ScriptReadData = null; public String ScriptReadDataStartsWith = null; public String ScriptReadDataEndsWith = null; public String ScriptReadDataContains = null; public String ScriptReadDataLike = null; public ArrayList ScriptReadDataBetween = null; public ArrayList ScriptReadDataIn = null; public String GridHandlerCode = null; public String GridHandlerCodeStartsWith = null; public String GridHandlerCodeEndsWith = null; public String GridHandlerCodeContains = null; public String GridHandlerCodeLike = null; public ArrayList GridHandlerCodeBetween = null; public ArrayList GridHandlerCodeIn = null; public UUID SY_Plugin_RecID = null; public ArrayList SY_Plugin_RecIDIn = null; public String getSettingID() { return SettingID; } public SO_HistoryCustomSettingQuery setSettingID(String value) { this.SettingID = value; return this; } public String getSettingIDStartsWith() { return SettingIDStartsWith; } public SO_HistoryCustomSettingQuery setSettingIDStartsWith(String value) { this.SettingIDStartsWith = value; return this; } public String getSettingIDEndsWith() { return SettingIDEndsWith; } public SO_HistoryCustomSettingQuery setSettingIDEndsWith(String value) { this.SettingIDEndsWith = value; return this; } public String getSettingIDContains() { return SettingIDContains; } public SO_HistoryCustomSettingQuery setSettingIDContains(String value) { this.SettingIDContains = value; return this; } public String getSettingIDLike() { return SettingIDLike; } public SO_HistoryCustomSettingQuery setSettingIDLike(String value) { this.SettingIDLike = value; return this; } public ArrayList getSettingIDBetween() { return SettingIDBetween; } public SO_HistoryCustomSettingQuery setSettingIDBetween(ArrayList value) { this.SettingIDBetween = value; return this; } public ArrayList getSettingIDIn() { return SettingIDIn; } public SO_HistoryCustomSettingQuery setSettingIDIn(ArrayList value) { this.SettingIDIn = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public SO_HistoryCustomSettingQuery setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getLastSavedDateTimeGreaterThanOrEqualTo() { return LastSavedDateTimeGreaterThanOrEqualTo; } public SO_HistoryCustomSettingQuery setLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.LastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeGreaterThan() { return LastSavedDateTimeGreaterThan; } public SO_HistoryCustomSettingQuery setLastSavedDateTimeGreaterThan(Date value) { this.LastSavedDateTimeGreaterThan = value; return this; } public Date getLastSavedDateTimeLessThan() { return LastSavedDateTimeLessThan; } public SO_HistoryCustomSettingQuery setLastSavedDateTimeLessThan(Date value) { this.LastSavedDateTimeLessThan = value; return this; } public Date getLastSavedDateTimeLessThanOrEqualTo() { return LastSavedDateTimeLessThanOrEqualTo; } public SO_HistoryCustomSettingQuery setLastSavedDateTimeLessThanOrEqualTo(Date value) { this.LastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeNotEqualTo() { return LastSavedDateTimeNotEqualTo; } public SO_HistoryCustomSettingQuery setLastSavedDateTimeNotEqualTo(Date value) { this.LastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getLastSavedDateTimeBetween() { return LastSavedDateTimeBetween; } public SO_HistoryCustomSettingQuery setLastSavedDateTimeBetween(ArrayList value) { this.LastSavedDateTimeBetween = value; return this; } public ArrayList getLastSavedDateTimeIn() { return LastSavedDateTimeIn; } public SO_HistoryCustomSettingQuery setLastSavedDateTimeIn(ArrayList value) { this.LastSavedDateTimeIn = value; return this; } public String getSettingDescription() { return SettingDescription; } public SO_HistoryCustomSettingQuery setSettingDescription(String value) { this.SettingDescription = value; return this; } public String getSettingDescriptionStartsWith() { return SettingDescriptionStartsWith; } public SO_HistoryCustomSettingQuery setSettingDescriptionStartsWith(String value) { this.SettingDescriptionStartsWith = value; return this; } public String getSettingDescriptionEndsWith() { return SettingDescriptionEndsWith; } public SO_HistoryCustomSettingQuery setSettingDescriptionEndsWith(String value) { this.SettingDescriptionEndsWith = value; return this; } public String getSettingDescriptionContains() { return SettingDescriptionContains; } public SO_HistoryCustomSettingQuery setSettingDescriptionContains(String value) { this.SettingDescriptionContains = value; return this; } public String getSettingDescriptionLike() { return SettingDescriptionLike; } public SO_HistoryCustomSettingQuery setSettingDescriptionLike(String value) { this.SettingDescriptionLike = value; return this; } public ArrayList getSettingDescriptionBetween() { return SettingDescriptionBetween; } public SO_HistoryCustomSettingQuery setSettingDescriptionBetween(ArrayList value) { this.SettingDescriptionBetween = value; return this; } public ArrayList getSettingDescriptionIn() { return SettingDescriptionIn; } public SO_HistoryCustomSettingQuery setSettingDescriptionIn(ArrayList value) { this.SettingDescriptionIn = value; return this; } public String getSettingName() { return SettingName; } public SO_HistoryCustomSettingQuery setSettingName(String value) { this.SettingName = value; return this; } public String getSettingNameStartsWith() { return SettingNameStartsWith; } public SO_HistoryCustomSettingQuery setSettingNameStartsWith(String value) { this.SettingNameStartsWith = value; return this; } public String getSettingNameEndsWith() { return SettingNameEndsWith; } public SO_HistoryCustomSettingQuery setSettingNameEndsWith(String value) { this.SettingNameEndsWith = value; return this; } public String getSettingNameContains() { return SettingNameContains; } public SO_HistoryCustomSettingQuery setSettingNameContains(String value) { this.SettingNameContains = value; return this; } public String getSettingNameLike() { return SettingNameLike; } public SO_HistoryCustomSettingQuery setSettingNameLike(String value) { this.SettingNameLike = value; return this; } public ArrayList getSettingNameBetween() { return SettingNameBetween; } public SO_HistoryCustomSettingQuery setSettingNameBetween(ArrayList value) { this.SettingNameBetween = value; return this; } public ArrayList getSettingNameIn() { return SettingNameIn; } public SO_HistoryCustomSettingQuery setSettingNameIn(ArrayList value) { this.SettingNameIn = value; return this; } public BigDecimal getDisplayOrder() { return DisplayOrder; } public SO_HistoryCustomSettingQuery setDisplayOrder(BigDecimal value) { this.DisplayOrder = value; return this; } public BigDecimal getDisplayOrderGreaterThanOrEqualTo() { return DisplayOrderGreaterThanOrEqualTo; } public SO_HistoryCustomSettingQuery setDisplayOrderGreaterThanOrEqualTo(BigDecimal value) { this.DisplayOrderGreaterThanOrEqualTo = value; return this; } public BigDecimal getDisplayOrderGreaterThan() { return DisplayOrderGreaterThan; } public SO_HistoryCustomSettingQuery setDisplayOrderGreaterThan(BigDecimal value) { this.DisplayOrderGreaterThan = value; return this; } public BigDecimal getDisplayOrderLessThan() { return DisplayOrderLessThan; } public SO_HistoryCustomSettingQuery setDisplayOrderLessThan(BigDecimal value) { this.DisplayOrderLessThan = value; return this; } public BigDecimal getDisplayOrderLessThanOrEqualTo() { return DisplayOrderLessThanOrEqualTo; } public SO_HistoryCustomSettingQuery setDisplayOrderLessThanOrEqualTo(BigDecimal value) { this.DisplayOrderLessThanOrEqualTo = value; return this; } public BigDecimal getDisplayOrderNotEqualTo() { return DisplayOrderNotEqualTo; } public SO_HistoryCustomSettingQuery setDisplayOrderNotEqualTo(BigDecimal value) { this.DisplayOrderNotEqualTo = value; return this; } public ArrayList getDisplayOrderBetween() { return DisplayOrderBetween; } public SO_HistoryCustomSettingQuery setDisplayOrderBetween(ArrayList value) { this.DisplayOrderBetween = value; return this; } public ArrayList getDisplayOrderIn() { return DisplayOrderIn; } public SO_HistoryCustomSettingQuery setDisplayOrderIn(ArrayList value) { this.DisplayOrderIn = value; return this; } public Short getCellType() { return CellType; } public SO_HistoryCustomSettingQuery setCellType(Short value) { this.CellType = value; return this; } public Short getCellTypeGreaterThanOrEqualTo() { return CellTypeGreaterThanOrEqualTo; } public SO_HistoryCustomSettingQuery setCellTypeGreaterThanOrEqualTo(Short value) { this.CellTypeGreaterThanOrEqualTo = value; return this; } public Short getCellTypeGreaterThan() { return CellTypeGreaterThan; } public SO_HistoryCustomSettingQuery setCellTypeGreaterThan(Short value) { this.CellTypeGreaterThan = value; return this; } public Short getCellTypeLessThan() { return CellTypeLessThan; } public SO_HistoryCustomSettingQuery setCellTypeLessThan(Short value) { this.CellTypeLessThan = value; return this; } public Short getCellTypeLessThanOrEqualTo() { return CellTypeLessThanOrEqualTo; } public SO_HistoryCustomSettingQuery setCellTypeLessThanOrEqualTo(Short value) { this.CellTypeLessThanOrEqualTo = value; return this; } public Short getCellTypeNotEqualTo() { return CellTypeNotEqualTo; } public SO_HistoryCustomSettingQuery setCellTypeNotEqualTo(Short value) { this.CellTypeNotEqualTo = value; return this; } public ArrayList getCellTypeBetween() { return CellTypeBetween; } public SO_HistoryCustomSettingQuery setCellTypeBetween(ArrayList value) { this.CellTypeBetween = value; return this; } public ArrayList getCellTypeIn() { return CellTypeIn; } public SO_HistoryCustomSettingQuery setCellTypeIn(ArrayList value) { this.CellTypeIn = value; return this; } public String getScriptFormatCell() { return ScriptFormatCell; } public SO_HistoryCustomSettingQuery setScriptFormatCell(String value) { this.ScriptFormatCell = value; return this; } public String getScriptFormatCellStartsWith() { return ScriptFormatCellStartsWith; } public SO_HistoryCustomSettingQuery setScriptFormatCellStartsWith(String value) { this.ScriptFormatCellStartsWith = value; return this; } public String getScriptFormatCellEndsWith() { return ScriptFormatCellEndsWith; } public SO_HistoryCustomSettingQuery setScriptFormatCellEndsWith(String value) { this.ScriptFormatCellEndsWith = value; return this; } public String getScriptFormatCellContains() { return ScriptFormatCellContains; } public SO_HistoryCustomSettingQuery setScriptFormatCellContains(String value) { this.ScriptFormatCellContains = value; return this; } public String getScriptFormatCellLike() { return ScriptFormatCellLike; } public SO_HistoryCustomSettingQuery setScriptFormatCellLike(String value) { this.ScriptFormatCellLike = value; return this; } public ArrayList getScriptFormatCellBetween() { return ScriptFormatCellBetween; } public SO_HistoryCustomSettingQuery setScriptFormatCellBetween(ArrayList value) { this.ScriptFormatCellBetween = value; return this; } public ArrayList getScriptFormatCellIn() { return ScriptFormatCellIn; } public SO_HistoryCustomSettingQuery setScriptFormatCellIn(ArrayList value) { this.ScriptFormatCellIn = value; return this; } public String getScriptButtonClicked() { return ScriptButtonClicked; } public SO_HistoryCustomSettingQuery setScriptButtonClicked(String value) { this.ScriptButtonClicked = value; return this; } public String getScriptButtonClickedStartsWith() { return ScriptButtonClickedStartsWith; } public SO_HistoryCustomSettingQuery setScriptButtonClickedStartsWith(String value) { this.ScriptButtonClickedStartsWith = value; return this; } public String getScriptButtonClickedEndsWith() { return ScriptButtonClickedEndsWith; } public SO_HistoryCustomSettingQuery setScriptButtonClickedEndsWith(String value) { this.ScriptButtonClickedEndsWith = value; return this; } public String getScriptButtonClickedContains() { return ScriptButtonClickedContains; } public SO_HistoryCustomSettingQuery setScriptButtonClickedContains(String value) { this.ScriptButtonClickedContains = value; return this; } public String getScriptButtonClickedLike() { return ScriptButtonClickedLike; } public SO_HistoryCustomSettingQuery setScriptButtonClickedLike(String value) { this.ScriptButtonClickedLike = value; return this; } public ArrayList getScriptButtonClickedBetween() { return ScriptButtonClickedBetween; } public SO_HistoryCustomSettingQuery setScriptButtonClickedBetween(ArrayList value) { this.ScriptButtonClickedBetween = value; return this; } public ArrayList getScriptButtonClickedIn() { return ScriptButtonClickedIn; } public SO_HistoryCustomSettingQuery setScriptButtonClickedIn(ArrayList value) { this.ScriptButtonClickedIn = value; return this; } public String getScriptReadData() { return ScriptReadData; } public SO_HistoryCustomSettingQuery setScriptReadData(String value) { this.ScriptReadData = value; return this; } public String getScriptReadDataStartsWith() { return ScriptReadDataStartsWith; } public SO_HistoryCustomSettingQuery setScriptReadDataStartsWith(String value) { this.ScriptReadDataStartsWith = value; return this; } public String getScriptReadDataEndsWith() { return ScriptReadDataEndsWith; } public SO_HistoryCustomSettingQuery setScriptReadDataEndsWith(String value) { this.ScriptReadDataEndsWith = value; return this; } public String getScriptReadDataContains() { return ScriptReadDataContains; } public SO_HistoryCustomSettingQuery setScriptReadDataContains(String value) { this.ScriptReadDataContains = value; return this; } public String getScriptReadDataLike() { return ScriptReadDataLike; } public SO_HistoryCustomSettingQuery setScriptReadDataLike(String value) { this.ScriptReadDataLike = value; return this; } public ArrayList getScriptReadDataBetween() { return ScriptReadDataBetween; } public SO_HistoryCustomSettingQuery setScriptReadDataBetween(ArrayList value) { this.ScriptReadDataBetween = value; return this; } public ArrayList getScriptReadDataIn() { return ScriptReadDataIn; } public SO_HistoryCustomSettingQuery setScriptReadDataIn(ArrayList value) { this.ScriptReadDataIn = value; return this; } public String getGridHandlerCode() { return GridHandlerCode; } public SO_HistoryCustomSettingQuery setGridHandlerCode(String value) { this.GridHandlerCode = value; return this; } public String getGridHandlerCodeStartsWith() { return GridHandlerCodeStartsWith; } public SO_HistoryCustomSettingQuery setGridHandlerCodeStartsWith(String value) { this.GridHandlerCodeStartsWith = value; return this; } public String getGridHandlerCodeEndsWith() { return GridHandlerCodeEndsWith; } public SO_HistoryCustomSettingQuery setGridHandlerCodeEndsWith(String value) { this.GridHandlerCodeEndsWith = value; return this; } public String getGridHandlerCodeContains() { return GridHandlerCodeContains; } public SO_HistoryCustomSettingQuery setGridHandlerCodeContains(String value) { this.GridHandlerCodeContains = value; return this; } public String getGridHandlerCodeLike() { return GridHandlerCodeLike; } public SO_HistoryCustomSettingQuery setGridHandlerCodeLike(String value) { this.GridHandlerCodeLike = value; return this; } public ArrayList getGridHandlerCodeBetween() { return GridHandlerCodeBetween; } public SO_HistoryCustomSettingQuery setGridHandlerCodeBetween(ArrayList value) { this.GridHandlerCodeBetween = value; return this; } public ArrayList getGridHandlerCodeIn() { return GridHandlerCodeIn; } public SO_HistoryCustomSettingQuery setGridHandlerCodeIn(ArrayList value) { this.GridHandlerCodeIn = value; return this; } public UUID getSyPluginRecID() { return SY_Plugin_RecID; } public SO_HistoryCustomSettingQuery setSyPluginRecID(UUID value) { this.SY_Plugin_RecID = value; return this; } public ArrayList getSyPluginRecIDIn() { return SY_Plugin_RecIDIn; } public SO_HistoryCustomSettingQuery setSyPluginRecIDIn(ArrayList value) { this.SY_Plugin_RecIDIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class SO_HistoryCustomSettingValuesQuery extends QueryDb implements IReturn> { public String SettingValueID = null; public String SettingValueIDStartsWith = null; public String SettingValueIDEndsWith = null; public String SettingValueIDContains = null; public String SettingValueIDLike = null; public ArrayList SettingValueIDBetween = null; public ArrayList SettingValueIDIn = null; public String SettingID = null; public String SettingIDStartsWith = null; public String SettingIDEndsWith = null; public String SettingIDContains = null; public String SettingIDLike = null; public ArrayList SettingIDBetween = null; public ArrayList SettingIDIn = null; public String HistoryID = null; public String HistoryIDStartsWith = null; public String HistoryIDEndsWith = null; public String HistoryIDContains = null; public String HistoryIDLike = null; public ArrayList HistoryIDBetween = null; public ArrayList HistoryIDIn = null; public String Contents = null; public String ContentsStartsWith = null; public String ContentsEndsWith = null; public String ContentsContains = null; public String ContentsLike = null; public ArrayList ContentsBetween = null; public ArrayList ContentsIn = null; public Date LastSavedDateTime = null; public Date LastSavedDateTimeGreaterThanOrEqualTo = null; public Date LastSavedDateTimeGreaterThan = null; public Date LastSavedDateTimeLessThan = null; public Date LastSavedDateTimeLessThanOrEqualTo = null; public Date LastSavedDateTimeNotEqualTo = null; public ArrayList LastSavedDateTimeBetween = null; public ArrayList LastSavedDateTimeIn = null; public String getSettingValueID() { return SettingValueID; } public SO_HistoryCustomSettingValuesQuery setSettingValueID(String value) { this.SettingValueID = value; return this; } public String getSettingValueIDStartsWith() { return SettingValueIDStartsWith; } public SO_HistoryCustomSettingValuesQuery setSettingValueIDStartsWith(String value) { this.SettingValueIDStartsWith = value; return this; } public String getSettingValueIDEndsWith() { return SettingValueIDEndsWith; } public SO_HistoryCustomSettingValuesQuery setSettingValueIDEndsWith(String value) { this.SettingValueIDEndsWith = value; return this; } public String getSettingValueIDContains() { return SettingValueIDContains; } public SO_HistoryCustomSettingValuesQuery setSettingValueIDContains(String value) { this.SettingValueIDContains = value; return this; } public String getSettingValueIDLike() { return SettingValueIDLike; } public SO_HistoryCustomSettingValuesQuery setSettingValueIDLike(String value) { this.SettingValueIDLike = value; return this; } public ArrayList getSettingValueIDBetween() { return SettingValueIDBetween; } public SO_HistoryCustomSettingValuesQuery setSettingValueIDBetween(ArrayList value) { this.SettingValueIDBetween = value; return this; } public ArrayList getSettingValueIDIn() { return SettingValueIDIn; } public SO_HistoryCustomSettingValuesQuery setSettingValueIDIn(ArrayList value) { this.SettingValueIDIn = value; return this; } public String getSettingID() { return SettingID; } public SO_HistoryCustomSettingValuesQuery setSettingID(String value) { this.SettingID = value; return this; } public String getSettingIDStartsWith() { return SettingIDStartsWith; } public SO_HistoryCustomSettingValuesQuery setSettingIDStartsWith(String value) { this.SettingIDStartsWith = value; return this; } public String getSettingIDEndsWith() { return SettingIDEndsWith; } public SO_HistoryCustomSettingValuesQuery setSettingIDEndsWith(String value) { this.SettingIDEndsWith = value; return this; } public String getSettingIDContains() { return SettingIDContains; } public SO_HistoryCustomSettingValuesQuery setSettingIDContains(String value) { this.SettingIDContains = value; return this; } public String getSettingIDLike() { return SettingIDLike; } public SO_HistoryCustomSettingValuesQuery setSettingIDLike(String value) { this.SettingIDLike = value; return this; } public ArrayList getSettingIDBetween() { return SettingIDBetween; } public SO_HistoryCustomSettingValuesQuery setSettingIDBetween(ArrayList value) { this.SettingIDBetween = value; return this; } public ArrayList getSettingIDIn() { return SettingIDIn; } public SO_HistoryCustomSettingValuesQuery setSettingIDIn(ArrayList value) { this.SettingIDIn = value; return this; } public String getHistoryID() { return HistoryID; } public SO_HistoryCustomSettingValuesQuery setHistoryID(String value) { this.HistoryID = value; return this; } public String getHistoryIDStartsWith() { return HistoryIDStartsWith; } public SO_HistoryCustomSettingValuesQuery setHistoryIDStartsWith(String value) { this.HistoryIDStartsWith = value; return this; } public String getHistoryIDEndsWith() { return HistoryIDEndsWith; } public SO_HistoryCustomSettingValuesQuery setHistoryIDEndsWith(String value) { this.HistoryIDEndsWith = value; return this; } public String getHistoryIDContains() { return HistoryIDContains; } public SO_HistoryCustomSettingValuesQuery setHistoryIDContains(String value) { this.HistoryIDContains = value; return this; } public String getHistoryIDLike() { return HistoryIDLike; } public SO_HistoryCustomSettingValuesQuery setHistoryIDLike(String value) { this.HistoryIDLike = value; return this; } public ArrayList getHistoryIDBetween() { return HistoryIDBetween; } public SO_HistoryCustomSettingValuesQuery setHistoryIDBetween(ArrayList value) { this.HistoryIDBetween = value; return this; } public ArrayList getHistoryIDIn() { return HistoryIDIn; } public SO_HistoryCustomSettingValuesQuery setHistoryIDIn(ArrayList value) { this.HistoryIDIn = value; return this; } public String getContents() { return Contents; } public SO_HistoryCustomSettingValuesQuery setContents(String value) { this.Contents = value; return this; } public String getContentsStartsWith() { return ContentsStartsWith; } public SO_HistoryCustomSettingValuesQuery setContentsStartsWith(String value) { this.ContentsStartsWith = value; return this; } public String getContentsEndsWith() { return ContentsEndsWith; } public SO_HistoryCustomSettingValuesQuery setContentsEndsWith(String value) { this.ContentsEndsWith = value; return this; } public String getContentsContains() { return ContentsContains; } public SO_HistoryCustomSettingValuesQuery setContentsContains(String value) { this.ContentsContains = value; return this; } public String getContentsLike() { return ContentsLike; } public SO_HistoryCustomSettingValuesQuery setContentsLike(String value) { this.ContentsLike = value; return this; } public ArrayList getContentsBetween() { return ContentsBetween; } public SO_HistoryCustomSettingValuesQuery setContentsBetween(ArrayList value) { this.ContentsBetween = value; return this; } public ArrayList getContentsIn() { return ContentsIn; } public SO_HistoryCustomSettingValuesQuery setContentsIn(ArrayList value) { this.ContentsIn = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public SO_HistoryCustomSettingValuesQuery setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getLastSavedDateTimeGreaterThanOrEqualTo() { return LastSavedDateTimeGreaterThanOrEqualTo; } public SO_HistoryCustomSettingValuesQuery setLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.LastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeGreaterThan() { return LastSavedDateTimeGreaterThan; } public SO_HistoryCustomSettingValuesQuery setLastSavedDateTimeGreaterThan(Date value) { this.LastSavedDateTimeGreaterThan = value; return this; } public Date getLastSavedDateTimeLessThan() { return LastSavedDateTimeLessThan; } public SO_HistoryCustomSettingValuesQuery setLastSavedDateTimeLessThan(Date value) { this.LastSavedDateTimeLessThan = value; return this; } public Date getLastSavedDateTimeLessThanOrEqualTo() { return LastSavedDateTimeLessThanOrEqualTo; } public SO_HistoryCustomSettingValuesQuery setLastSavedDateTimeLessThanOrEqualTo(Date value) { this.LastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeNotEqualTo() { return LastSavedDateTimeNotEqualTo; } public SO_HistoryCustomSettingValuesQuery setLastSavedDateTimeNotEqualTo(Date value) { this.LastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getLastSavedDateTimeBetween() { return LastSavedDateTimeBetween; } public SO_HistoryCustomSettingValuesQuery setLastSavedDateTimeBetween(ArrayList value) { this.LastSavedDateTimeBetween = value; return this; } public ArrayList getLastSavedDateTimeIn() { return LastSavedDateTimeIn; } public SO_HistoryCustomSettingValuesQuery setLastSavedDateTimeIn(ArrayList value) { this.LastSavedDateTimeIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class SO_HistoryFreightItemsQuery extends QueryDb implements IReturn> { public String RecID = null; public String RecIDStartsWith = null; public String RecIDEndsWith = null; public String RecIDContains = null; public String RecIDLike = null; public ArrayList RecIDBetween = null; public ArrayList RecIDIn = null; public String Reference = null; public String ReferenceStartsWith = null; public String ReferenceEndsWith = null; public String ReferenceContains = null; public String ReferenceLike = null; public ArrayList ReferenceBetween = null; public ArrayList ReferenceIn = null; public String SO_History_InvoiceHistoryID = null; public String SO_History_InvoiceHistoryIDStartsWith = null; public String SO_History_InvoiceHistoryIDEndsWith = null; public String SO_History_InvoiceHistoryIDContains = null; public String SO_History_InvoiceHistoryIDLike = null; public ArrayList SO_History_InvoiceHistoryIDBetween = null; public ArrayList SO_History_InvoiceHistoryIDIn = null; public String FR_CarrierFreightDescriptions_RecID = null; public String FR_CarrierFreightDescriptions_RecIDStartsWith = null; public String FR_CarrierFreightDescriptions_RecIDEndsWith = null; public String FR_CarrierFreightDescriptions_RecIDContains = null; public String FR_CarrierFreightDescriptions_RecIDLike = null; public ArrayList FR_CarrierFreightDescriptions_RecIDBetween = null; public ArrayList FR_CarrierFreightDescriptions_RecIDIn = null; public Date LastSavedDateTime = null; public Date LastSavedDateTimeGreaterThanOrEqualTo = null; public Date LastSavedDateTimeGreaterThan = null; public Date LastSavedDateTimeLessThan = null; public Date LastSavedDateTimeLessThanOrEqualTo = null; public Date LastSavedDateTimeNotEqualTo = null; public ArrayList LastSavedDateTimeBetween = null; public ArrayList LastSavedDateTimeIn = null; public BigDecimal NumberItems = null; public BigDecimal NumberItemsGreaterThanOrEqualTo = null; public BigDecimal NumberItemsGreaterThan = null; public BigDecimal NumberItemsLessThan = null; public BigDecimal NumberItemsLessThanOrEqualTo = null; public BigDecimal NumberItemsNotEqualTo = null; public ArrayList NumberItemsBetween = null; public ArrayList NumberItemsIn = null; public BigDecimal ItemWeight = null; public BigDecimal ItemWeightGreaterThanOrEqualTo = null; public BigDecimal ItemWeightGreaterThan = null; public BigDecimal ItemWeightLessThan = null; public BigDecimal ItemWeightLessThanOrEqualTo = null; public BigDecimal ItemWeightNotEqualTo = null; public ArrayList ItemWeightBetween = null; public ArrayList ItemWeightIn = null; public BigDecimal ItemCubic = null; public BigDecimal ItemCubicGreaterThanOrEqualTo = null; public BigDecimal ItemCubicGreaterThan = null; public BigDecimal ItemCubicLessThan = null; public BigDecimal ItemCubicLessThanOrEqualTo = null; public BigDecimal ItemCubicNotEqualTo = null; public ArrayList ItemCubicBetween = null; public ArrayList ItemCubicIn = null; public BigDecimal ItemLength = null; public BigDecimal ItemLengthGreaterThanOrEqualTo = null; public BigDecimal ItemLengthGreaterThan = null; public BigDecimal ItemLengthLessThan = null; public BigDecimal ItemLengthLessThanOrEqualTo = null; public BigDecimal ItemLengthNotEqualTo = null; public ArrayList ItemLengthBetween = null; public ArrayList ItemLengthIn = null; public BigDecimal ItemWidth = null; public BigDecimal ItemWidthGreaterThanOrEqualTo = null; public BigDecimal ItemWidthGreaterThan = null; public BigDecimal ItemWidthLessThan = null; public BigDecimal ItemWidthLessThanOrEqualTo = null; public BigDecimal ItemWidthNotEqualTo = null; public ArrayList ItemWidthBetween = null; public ArrayList ItemWidthIn = null; public BigDecimal ItemHeight = null; public BigDecimal ItemHeightGreaterThanOrEqualTo = null; public BigDecimal ItemHeightGreaterThan = null; public BigDecimal ItemHeightLessThan = null; public BigDecimal ItemHeightLessThanOrEqualTo = null; public BigDecimal ItemHeightNotEqualTo = null; public ArrayList ItemHeightBetween = null; public ArrayList ItemHeightIn = null; public String SO_HistoryConsignmentNotes_RecID = null; public String SO_HistoryConsignmentNotes_RecIDStartsWith = null; public String SO_HistoryConsignmentNotes_RecIDEndsWith = null; public String SO_HistoryConsignmentNotes_RecIDContains = null; public String SO_HistoryConsignmentNotes_RecIDLike = null; public ArrayList SO_HistoryConsignmentNotes_RecIDBetween = null; public ArrayList SO_HistoryConsignmentNotes_RecIDIn = null; public String getRecID() { return RecID; } public SO_HistoryFreightItemsQuery setRecID(String value) { this.RecID = value; return this; } public String getRecIDStartsWith() { return RecIDStartsWith; } public SO_HistoryFreightItemsQuery setRecIDStartsWith(String value) { this.RecIDStartsWith = value; return this; } public String getRecIDEndsWith() { return RecIDEndsWith; } public SO_HistoryFreightItemsQuery setRecIDEndsWith(String value) { this.RecIDEndsWith = value; return this; } public String getRecIDContains() { return RecIDContains; } public SO_HistoryFreightItemsQuery setRecIDContains(String value) { this.RecIDContains = value; return this; } public String getRecIDLike() { return RecIDLike; } public SO_HistoryFreightItemsQuery setRecIDLike(String value) { this.RecIDLike = value; return this; } public ArrayList getRecIDBetween() { return RecIDBetween; } public SO_HistoryFreightItemsQuery setRecIDBetween(ArrayList value) { this.RecIDBetween = value; return this; } public ArrayList getRecIDIn() { return RecIDIn; } public SO_HistoryFreightItemsQuery setRecIDIn(ArrayList value) { this.RecIDIn = value; return this; } public String getReference() { return Reference; } public SO_HistoryFreightItemsQuery setReference(String value) { this.Reference = value; return this; } public String getReferenceStartsWith() { return ReferenceStartsWith; } public SO_HistoryFreightItemsQuery setReferenceStartsWith(String value) { this.ReferenceStartsWith = value; return this; } public String getReferenceEndsWith() { return ReferenceEndsWith; } public SO_HistoryFreightItemsQuery setReferenceEndsWith(String value) { this.ReferenceEndsWith = value; return this; } public String getReferenceContains() { return ReferenceContains; } public SO_HistoryFreightItemsQuery setReferenceContains(String value) { this.ReferenceContains = value; return this; } public String getReferenceLike() { return ReferenceLike; } public SO_HistoryFreightItemsQuery setReferenceLike(String value) { this.ReferenceLike = value; return this; } public ArrayList getReferenceBetween() { return ReferenceBetween; } public SO_HistoryFreightItemsQuery setReferenceBetween(ArrayList value) { this.ReferenceBetween = value; return this; } public ArrayList getReferenceIn() { return ReferenceIn; } public SO_HistoryFreightItemsQuery setReferenceIn(ArrayList value) { this.ReferenceIn = value; return this; } public String getSoHistoryInvoiceHistoryID() { return SO_History_InvoiceHistoryID; } public SO_HistoryFreightItemsQuery setSoHistoryInvoiceHistoryID(String value) { this.SO_History_InvoiceHistoryID = value; return this; } public String getSoHistoryInvoiceHistoryIDStartsWith() { return SO_History_InvoiceHistoryIDStartsWith; } public SO_HistoryFreightItemsQuery setSoHistoryInvoiceHistoryIDStartsWith(String value) { this.SO_History_InvoiceHistoryIDStartsWith = value; return this; } public String getSoHistoryInvoiceHistoryIDEndsWith() { return SO_History_InvoiceHistoryIDEndsWith; } public SO_HistoryFreightItemsQuery setSoHistoryInvoiceHistoryIDEndsWith(String value) { this.SO_History_InvoiceHistoryIDEndsWith = value; return this; } public String getSoHistoryInvoiceHistoryIDContains() { return SO_History_InvoiceHistoryIDContains; } public SO_HistoryFreightItemsQuery setSoHistoryInvoiceHistoryIDContains(String value) { this.SO_History_InvoiceHistoryIDContains = value; return this; } public String getSoHistoryInvoiceHistoryIDLike() { return SO_History_InvoiceHistoryIDLike; } public SO_HistoryFreightItemsQuery setSoHistoryInvoiceHistoryIDLike(String value) { this.SO_History_InvoiceHistoryIDLike = value; return this; } public ArrayList getSoHistoryInvoiceHistoryIDBetween() { return SO_History_InvoiceHistoryIDBetween; } public SO_HistoryFreightItemsQuery setSoHistoryInvoiceHistoryIDBetween(ArrayList value) { this.SO_History_InvoiceHistoryIDBetween = value; return this; } public ArrayList getSoHistoryInvoiceHistoryIDIn() { return SO_History_InvoiceHistoryIDIn; } public SO_HistoryFreightItemsQuery setSoHistoryInvoiceHistoryIDIn(ArrayList value) { this.SO_History_InvoiceHistoryIDIn = value; return this; } public String getFrCarrierFreightDescriptionsRecID() { return FR_CarrierFreightDescriptions_RecID; } public SO_HistoryFreightItemsQuery setFrCarrierFreightDescriptionsRecID(String value) { this.FR_CarrierFreightDescriptions_RecID = value; return this; } public String getFrCarrierFreightDescriptionsRecIDStartsWith() { return FR_CarrierFreightDescriptions_RecIDStartsWith; } public SO_HistoryFreightItemsQuery setFrCarrierFreightDescriptionsRecIDStartsWith(String value) { this.FR_CarrierFreightDescriptions_RecIDStartsWith = value; return this; } public String getFrCarrierFreightDescriptionsRecIDEndsWith() { return FR_CarrierFreightDescriptions_RecIDEndsWith; } public SO_HistoryFreightItemsQuery setFrCarrierFreightDescriptionsRecIDEndsWith(String value) { this.FR_CarrierFreightDescriptions_RecIDEndsWith = value; return this; } public String getFrCarrierFreightDescriptionsRecIDContains() { return FR_CarrierFreightDescriptions_RecIDContains; } public SO_HistoryFreightItemsQuery setFrCarrierFreightDescriptionsRecIDContains(String value) { this.FR_CarrierFreightDescriptions_RecIDContains = value; return this; } public String getFrCarrierFreightDescriptionsRecIDLike() { return FR_CarrierFreightDescriptions_RecIDLike; } public SO_HistoryFreightItemsQuery setFrCarrierFreightDescriptionsRecIDLike(String value) { this.FR_CarrierFreightDescriptions_RecIDLike = value; return this; } public ArrayList getFrCarrierFreightDescriptionsRecIDBetween() { return FR_CarrierFreightDescriptions_RecIDBetween; } public SO_HistoryFreightItemsQuery setFrCarrierFreightDescriptionsRecIDBetween(ArrayList value) { this.FR_CarrierFreightDescriptions_RecIDBetween = value; return this; } public ArrayList getFrCarrierFreightDescriptionsRecIDIn() { return FR_CarrierFreightDescriptions_RecIDIn; } public SO_HistoryFreightItemsQuery setFrCarrierFreightDescriptionsRecIDIn(ArrayList value) { this.FR_CarrierFreightDescriptions_RecIDIn = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public SO_HistoryFreightItemsQuery setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getLastSavedDateTimeGreaterThanOrEqualTo() { return LastSavedDateTimeGreaterThanOrEqualTo; } public SO_HistoryFreightItemsQuery setLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.LastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeGreaterThan() { return LastSavedDateTimeGreaterThan; } public SO_HistoryFreightItemsQuery setLastSavedDateTimeGreaterThan(Date value) { this.LastSavedDateTimeGreaterThan = value; return this; } public Date getLastSavedDateTimeLessThan() { return LastSavedDateTimeLessThan; } public SO_HistoryFreightItemsQuery setLastSavedDateTimeLessThan(Date value) { this.LastSavedDateTimeLessThan = value; return this; } public Date getLastSavedDateTimeLessThanOrEqualTo() { return LastSavedDateTimeLessThanOrEqualTo; } public SO_HistoryFreightItemsQuery setLastSavedDateTimeLessThanOrEqualTo(Date value) { this.LastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeNotEqualTo() { return LastSavedDateTimeNotEqualTo; } public SO_HistoryFreightItemsQuery setLastSavedDateTimeNotEqualTo(Date value) { this.LastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getLastSavedDateTimeBetween() { return LastSavedDateTimeBetween; } public SO_HistoryFreightItemsQuery setLastSavedDateTimeBetween(ArrayList value) { this.LastSavedDateTimeBetween = value; return this; } public ArrayList getLastSavedDateTimeIn() { return LastSavedDateTimeIn; } public SO_HistoryFreightItemsQuery setLastSavedDateTimeIn(ArrayList value) { this.LastSavedDateTimeIn = value; return this; } public BigDecimal getNumberItems() { return NumberItems; } public SO_HistoryFreightItemsQuery setNumberItems(BigDecimal value) { this.NumberItems = value; return this; } public BigDecimal getNumberItemsGreaterThanOrEqualTo() { return NumberItemsGreaterThanOrEqualTo; } public SO_HistoryFreightItemsQuery setNumberItemsGreaterThanOrEqualTo(BigDecimal value) { this.NumberItemsGreaterThanOrEqualTo = value; return this; } public BigDecimal getNumberItemsGreaterThan() { return NumberItemsGreaterThan; } public SO_HistoryFreightItemsQuery setNumberItemsGreaterThan(BigDecimal value) { this.NumberItemsGreaterThan = value; return this; } public BigDecimal getNumberItemsLessThan() { return NumberItemsLessThan; } public SO_HistoryFreightItemsQuery setNumberItemsLessThan(BigDecimal value) { this.NumberItemsLessThan = value; return this; } public BigDecimal getNumberItemsLessThanOrEqualTo() { return NumberItemsLessThanOrEqualTo; } public SO_HistoryFreightItemsQuery setNumberItemsLessThanOrEqualTo(BigDecimal value) { this.NumberItemsLessThanOrEqualTo = value; return this; } public BigDecimal getNumberItemsNotEqualTo() { return NumberItemsNotEqualTo; } public SO_HistoryFreightItemsQuery setNumberItemsNotEqualTo(BigDecimal value) { this.NumberItemsNotEqualTo = value; return this; } public ArrayList getNumberItemsBetween() { return NumberItemsBetween; } public SO_HistoryFreightItemsQuery setNumberItemsBetween(ArrayList value) { this.NumberItemsBetween = value; return this; } public ArrayList getNumberItemsIn() { return NumberItemsIn; } public SO_HistoryFreightItemsQuery setNumberItemsIn(ArrayList value) { this.NumberItemsIn = value; return this; } public BigDecimal getItemWeight() { return ItemWeight; } public SO_HistoryFreightItemsQuery setItemWeight(BigDecimal value) { this.ItemWeight = value; return this; } public BigDecimal getItemWeightGreaterThanOrEqualTo() { return ItemWeightGreaterThanOrEqualTo; } public SO_HistoryFreightItemsQuery setItemWeightGreaterThanOrEqualTo(BigDecimal value) { this.ItemWeightGreaterThanOrEqualTo = value; return this; } public BigDecimal getItemWeightGreaterThan() { return ItemWeightGreaterThan; } public SO_HistoryFreightItemsQuery setItemWeightGreaterThan(BigDecimal value) { this.ItemWeightGreaterThan = value; return this; } public BigDecimal getItemWeightLessThan() { return ItemWeightLessThan; } public SO_HistoryFreightItemsQuery setItemWeightLessThan(BigDecimal value) { this.ItemWeightLessThan = value; return this; } public BigDecimal getItemWeightLessThanOrEqualTo() { return ItemWeightLessThanOrEqualTo; } public SO_HistoryFreightItemsQuery setItemWeightLessThanOrEqualTo(BigDecimal value) { this.ItemWeightLessThanOrEqualTo = value; return this; } public BigDecimal getItemWeightNotEqualTo() { return ItemWeightNotEqualTo; } public SO_HistoryFreightItemsQuery setItemWeightNotEqualTo(BigDecimal value) { this.ItemWeightNotEqualTo = value; return this; } public ArrayList getItemWeightBetween() { return ItemWeightBetween; } public SO_HistoryFreightItemsQuery setItemWeightBetween(ArrayList value) { this.ItemWeightBetween = value; return this; } public ArrayList getItemWeightIn() { return ItemWeightIn; } public SO_HistoryFreightItemsQuery setItemWeightIn(ArrayList value) { this.ItemWeightIn = value; return this; } public BigDecimal getItemCubic() { return ItemCubic; } public SO_HistoryFreightItemsQuery setItemCubic(BigDecimal value) { this.ItemCubic = value; return this; } public BigDecimal getItemCubicGreaterThanOrEqualTo() { return ItemCubicGreaterThanOrEqualTo; } public SO_HistoryFreightItemsQuery setItemCubicGreaterThanOrEqualTo(BigDecimal value) { this.ItemCubicGreaterThanOrEqualTo = value; return this; } public BigDecimal getItemCubicGreaterThan() { return ItemCubicGreaterThan; } public SO_HistoryFreightItemsQuery setItemCubicGreaterThan(BigDecimal value) { this.ItemCubicGreaterThan = value; return this; } public BigDecimal getItemCubicLessThan() { return ItemCubicLessThan; } public SO_HistoryFreightItemsQuery setItemCubicLessThan(BigDecimal value) { this.ItemCubicLessThan = value; return this; } public BigDecimal getItemCubicLessThanOrEqualTo() { return ItemCubicLessThanOrEqualTo; } public SO_HistoryFreightItemsQuery setItemCubicLessThanOrEqualTo(BigDecimal value) { this.ItemCubicLessThanOrEqualTo = value; return this; } public BigDecimal getItemCubicNotEqualTo() { return ItemCubicNotEqualTo; } public SO_HistoryFreightItemsQuery setItemCubicNotEqualTo(BigDecimal value) { this.ItemCubicNotEqualTo = value; return this; } public ArrayList getItemCubicBetween() { return ItemCubicBetween; } public SO_HistoryFreightItemsQuery setItemCubicBetween(ArrayList value) { this.ItemCubicBetween = value; return this; } public ArrayList getItemCubicIn() { return ItemCubicIn; } public SO_HistoryFreightItemsQuery setItemCubicIn(ArrayList value) { this.ItemCubicIn = value; return this; } public BigDecimal getItemLength() { return ItemLength; } public SO_HistoryFreightItemsQuery setItemLength(BigDecimal value) { this.ItemLength = value; return this; } public BigDecimal getItemLengthGreaterThanOrEqualTo() { return ItemLengthGreaterThanOrEqualTo; } public SO_HistoryFreightItemsQuery setItemLengthGreaterThanOrEqualTo(BigDecimal value) { this.ItemLengthGreaterThanOrEqualTo = value; return this; } public BigDecimal getItemLengthGreaterThan() { return ItemLengthGreaterThan; } public SO_HistoryFreightItemsQuery setItemLengthGreaterThan(BigDecimal value) { this.ItemLengthGreaterThan = value; return this; } public BigDecimal getItemLengthLessThan() { return ItemLengthLessThan; } public SO_HistoryFreightItemsQuery setItemLengthLessThan(BigDecimal value) { this.ItemLengthLessThan = value; return this; } public BigDecimal getItemLengthLessThanOrEqualTo() { return ItemLengthLessThanOrEqualTo; } public SO_HistoryFreightItemsQuery setItemLengthLessThanOrEqualTo(BigDecimal value) { this.ItemLengthLessThanOrEqualTo = value; return this; } public BigDecimal getItemLengthNotEqualTo() { return ItemLengthNotEqualTo; } public SO_HistoryFreightItemsQuery setItemLengthNotEqualTo(BigDecimal value) { this.ItemLengthNotEqualTo = value; return this; } public ArrayList getItemLengthBetween() { return ItemLengthBetween; } public SO_HistoryFreightItemsQuery setItemLengthBetween(ArrayList value) { this.ItemLengthBetween = value; return this; } public ArrayList getItemLengthIn() { return ItemLengthIn; } public SO_HistoryFreightItemsQuery setItemLengthIn(ArrayList value) { this.ItemLengthIn = value; return this; } public BigDecimal getItemWidth() { return ItemWidth; } public SO_HistoryFreightItemsQuery setItemWidth(BigDecimal value) { this.ItemWidth = value; return this; } public BigDecimal getItemWidthGreaterThanOrEqualTo() { return ItemWidthGreaterThanOrEqualTo; } public SO_HistoryFreightItemsQuery setItemWidthGreaterThanOrEqualTo(BigDecimal value) { this.ItemWidthGreaterThanOrEqualTo = value; return this; } public BigDecimal getItemWidthGreaterThan() { return ItemWidthGreaterThan; } public SO_HistoryFreightItemsQuery setItemWidthGreaterThan(BigDecimal value) { this.ItemWidthGreaterThan = value; return this; } public BigDecimal getItemWidthLessThan() { return ItemWidthLessThan; } public SO_HistoryFreightItemsQuery setItemWidthLessThan(BigDecimal value) { this.ItemWidthLessThan = value; return this; } public BigDecimal getItemWidthLessThanOrEqualTo() { return ItemWidthLessThanOrEqualTo; } public SO_HistoryFreightItemsQuery setItemWidthLessThanOrEqualTo(BigDecimal value) { this.ItemWidthLessThanOrEqualTo = value; return this; } public BigDecimal getItemWidthNotEqualTo() { return ItemWidthNotEqualTo; } public SO_HistoryFreightItemsQuery setItemWidthNotEqualTo(BigDecimal value) { this.ItemWidthNotEqualTo = value; return this; } public ArrayList getItemWidthBetween() { return ItemWidthBetween; } public SO_HistoryFreightItemsQuery setItemWidthBetween(ArrayList value) { this.ItemWidthBetween = value; return this; } public ArrayList getItemWidthIn() { return ItemWidthIn; } public SO_HistoryFreightItemsQuery setItemWidthIn(ArrayList value) { this.ItemWidthIn = value; return this; } public BigDecimal getItemHeight() { return ItemHeight; } public SO_HistoryFreightItemsQuery setItemHeight(BigDecimal value) { this.ItemHeight = value; return this; } public BigDecimal getItemHeightGreaterThanOrEqualTo() { return ItemHeightGreaterThanOrEqualTo; } public SO_HistoryFreightItemsQuery setItemHeightGreaterThanOrEqualTo(BigDecimal value) { this.ItemHeightGreaterThanOrEqualTo = value; return this; } public BigDecimal getItemHeightGreaterThan() { return ItemHeightGreaterThan; } public SO_HistoryFreightItemsQuery setItemHeightGreaterThan(BigDecimal value) { this.ItemHeightGreaterThan = value; return this; } public BigDecimal getItemHeightLessThan() { return ItemHeightLessThan; } public SO_HistoryFreightItemsQuery setItemHeightLessThan(BigDecimal value) { this.ItemHeightLessThan = value; return this; } public BigDecimal getItemHeightLessThanOrEqualTo() { return ItemHeightLessThanOrEqualTo; } public SO_HistoryFreightItemsQuery setItemHeightLessThanOrEqualTo(BigDecimal value) { this.ItemHeightLessThanOrEqualTo = value; return this; } public BigDecimal getItemHeightNotEqualTo() { return ItemHeightNotEqualTo; } public SO_HistoryFreightItemsQuery setItemHeightNotEqualTo(BigDecimal value) { this.ItemHeightNotEqualTo = value; return this; } public ArrayList getItemHeightBetween() { return ItemHeightBetween; } public SO_HistoryFreightItemsQuery setItemHeightBetween(ArrayList value) { this.ItemHeightBetween = value; return this; } public ArrayList getItemHeightIn() { return ItemHeightIn; } public SO_HistoryFreightItemsQuery setItemHeightIn(ArrayList value) { this.ItemHeightIn = value; return this; } public String getSoHistoryConsignmentNotesRecID() { return SO_HistoryConsignmentNotes_RecID; } public SO_HistoryFreightItemsQuery setSoHistoryConsignmentNotesRecID(String value) { this.SO_HistoryConsignmentNotes_RecID = value; return this; } public String getSoHistoryConsignmentNotesRecIDStartsWith() { return SO_HistoryConsignmentNotes_RecIDStartsWith; } public SO_HistoryFreightItemsQuery setSoHistoryConsignmentNotesRecIDStartsWith(String value) { this.SO_HistoryConsignmentNotes_RecIDStartsWith = value; return this; } public String getSoHistoryConsignmentNotesRecIDEndsWith() { return SO_HistoryConsignmentNotes_RecIDEndsWith; } public SO_HistoryFreightItemsQuery setSoHistoryConsignmentNotesRecIDEndsWith(String value) { this.SO_HistoryConsignmentNotes_RecIDEndsWith = value; return this; } public String getSoHistoryConsignmentNotesRecIDContains() { return SO_HistoryConsignmentNotes_RecIDContains; } public SO_HistoryFreightItemsQuery setSoHistoryConsignmentNotesRecIDContains(String value) { this.SO_HistoryConsignmentNotes_RecIDContains = value; return this; } public String getSoHistoryConsignmentNotesRecIDLike() { return SO_HistoryConsignmentNotes_RecIDLike; } public SO_HistoryFreightItemsQuery setSoHistoryConsignmentNotesRecIDLike(String value) { this.SO_HistoryConsignmentNotes_RecIDLike = value; return this; } public ArrayList getSoHistoryConsignmentNotesRecIDBetween() { return SO_HistoryConsignmentNotes_RecIDBetween; } public SO_HistoryFreightItemsQuery setSoHistoryConsignmentNotesRecIDBetween(ArrayList value) { this.SO_HistoryConsignmentNotes_RecIDBetween = value; return this; } public ArrayList getSoHistoryConsignmentNotesRecIDIn() { return SO_HistoryConsignmentNotes_RecIDIn; } public SO_HistoryFreightItemsQuery setSoHistoryConsignmentNotesRecIDIn(ArrayList value) { this.SO_HistoryConsignmentNotes_RecIDIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class SO_IncidentsQuery extends QueryDb implements IReturn> { public String RecID = null; public String RecIDStartsWith = null; public String RecIDEndsWith = null; public String RecIDContains = null; public String RecIDLike = null; public ArrayList RecIDBetween = null; public ArrayList RecIDIn = null; public String IncidentNo = null; public String IncidentNoStartsWith = null; public String IncidentNoEndsWith = null; public String IncidentNoContains = null; public String IncidentNoLike = null; public ArrayList IncidentNoBetween = null; public ArrayList IncidentNoIn = null; public String DebtorID = null; public String DebtorIDStartsWith = null; public String DebtorIDEndsWith = null; public String DebtorIDContains = null; public String DebtorIDLike = null; public ArrayList DebtorIDBetween = null; public ArrayList DebtorIDIn = null; public String ContactName = null; public String ContactNameStartsWith = null; public String ContactNameEndsWith = null; public String ContactNameContains = null; public String ContactNameLike = null; public ArrayList ContactNameBetween = null; public ArrayList ContactNameIn = null; public String InvoiceID = null; public String InvoiceIDStartsWith = null; public String InvoiceIDEndsWith = null; public String InvoiceIDContains = null; public String InvoiceIDLike = null; public ArrayList InvoiceIDBetween = null; public ArrayList InvoiceIDIn = null; public String InvoiceHistoryID = null; public String InvoiceHistoryIDStartsWith = null; public String InvoiceHistoryIDEndsWith = null; public String InvoiceHistoryIDContains = null; public String InvoiceHistoryIDLike = null; public ArrayList InvoiceHistoryIDBetween = null; public ArrayList InvoiceHistoryIDIn = null; public String InvoiceLineID = null; public String InvoiceLineIDStartsWith = null; public String InvoiceLineIDEndsWith = null; public String InvoiceLineIDContains = null; public String InvoiceLineIDLike = null; public ArrayList InvoiceLineIDBetween = null; public ArrayList InvoiceLineIDIn = null; public String SO_IncidentTypes_RecID = null; public String SO_IncidentTypes_RecIDStartsWith = null; public String SO_IncidentTypes_RecIDEndsWith = null; public String SO_IncidentTypes_RecIDContains = null; public String SO_IncidentTypes_RecIDLike = null; public ArrayList SO_IncidentTypes_RecIDBetween = null; public ArrayList SO_IncidentTypes_RecIDIn = null; public String Details = null; public String DetailsStartsWith = null; public String DetailsEndsWith = null; public String DetailsContains = null; public String DetailsLike = null; public ArrayList DetailsBetween = null; public ArrayList DetailsIn = null; public Date CreatedDateTime = null; public Date CreatedDateTimeGreaterThanOrEqualTo = null; public Date CreatedDateTimeGreaterThan = null; public Date CreatedDateTimeLessThan = null; public Date CreatedDateTimeLessThanOrEqualTo = null; public Date CreatedDateTimeNotEqualTo = null; public ArrayList CreatedDateTimeBetween = null; public ArrayList CreatedDateTimeIn = null; public String CreatedByStaffID = null; public String CreatedByStaffIDStartsWith = null; public String CreatedByStaffIDEndsWith = null; public String CreatedByStaffIDContains = null; public String CreatedByStaffIDLike = null; public ArrayList CreatedByStaffIDBetween = null; public ArrayList CreatedByStaffIDIn = null; public Date LastSavedDateTime = null; public Date LastSavedDateTimeGreaterThanOrEqualTo = null; public Date LastSavedDateTimeGreaterThan = null; public Date LastSavedDateTimeLessThan = null; public Date LastSavedDateTimeLessThanOrEqualTo = null; public Date LastSavedDateTimeNotEqualTo = null; public ArrayList LastSavedDateTimeBetween = null; public ArrayList LastSavedDateTimeIn = null; public String LastSavedByStaffID = null; public String LastSavedByStaffIDStartsWith = null; public String LastSavedByStaffIDEndsWith = null; public String LastSavedByStaffIDContains = null; public String LastSavedByStaffIDLike = null; public ArrayList LastSavedByStaffIDBetween = null; public ArrayList LastSavedByStaffIDIn = null; public Date IncidentDate = null; public Date IncidentDateGreaterThanOrEqualTo = null; public Date IncidentDateGreaterThan = null; public Date IncidentDateLessThan = null; public Date IncidentDateLessThanOrEqualTo = null; public Date IncidentDateNotEqualTo = null; public ArrayList IncidentDateBetween = null; public ArrayList IncidentDateIn = null; public String getRecID() { return RecID; } public SO_IncidentsQuery setRecID(String value) { this.RecID = value; return this; } public String getRecIDStartsWith() { return RecIDStartsWith; } public SO_IncidentsQuery setRecIDStartsWith(String value) { this.RecIDStartsWith = value; return this; } public String getRecIDEndsWith() { return RecIDEndsWith; } public SO_IncidentsQuery setRecIDEndsWith(String value) { this.RecIDEndsWith = value; return this; } public String getRecIDContains() { return RecIDContains; } public SO_IncidentsQuery setRecIDContains(String value) { this.RecIDContains = value; return this; } public String getRecIDLike() { return RecIDLike; } public SO_IncidentsQuery setRecIDLike(String value) { this.RecIDLike = value; return this; } public ArrayList getRecIDBetween() { return RecIDBetween; } public SO_IncidentsQuery setRecIDBetween(ArrayList value) { this.RecIDBetween = value; return this; } public ArrayList getRecIDIn() { return RecIDIn; } public SO_IncidentsQuery setRecIDIn(ArrayList value) { this.RecIDIn = value; return this; } public String getIncidentNo() { return IncidentNo; } public SO_IncidentsQuery setIncidentNo(String value) { this.IncidentNo = value; return this; } public String getIncidentNoStartsWith() { return IncidentNoStartsWith; } public SO_IncidentsQuery setIncidentNoStartsWith(String value) { this.IncidentNoStartsWith = value; return this; } public String getIncidentNoEndsWith() { return IncidentNoEndsWith; } public SO_IncidentsQuery setIncidentNoEndsWith(String value) { this.IncidentNoEndsWith = value; return this; } public String getIncidentNoContains() { return IncidentNoContains; } public SO_IncidentsQuery setIncidentNoContains(String value) { this.IncidentNoContains = value; return this; } public String getIncidentNoLike() { return IncidentNoLike; } public SO_IncidentsQuery setIncidentNoLike(String value) { this.IncidentNoLike = value; return this; } public ArrayList getIncidentNoBetween() { return IncidentNoBetween; } public SO_IncidentsQuery setIncidentNoBetween(ArrayList value) { this.IncidentNoBetween = value; return this; } public ArrayList getIncidentNoIn() { return IncidentNoIn; } public SO_IncidentsQuery setIncidentNoIn(ArrayList value) { this.IncidentNoIn = value; return this; } public String getDebtorID() { return DebtorID; } public SO_IncidentsQuery setDebtorID(String value) { this.DebtorID = value; return this; } public String getDebtorIDStartsWith() { return DebtorIDStartsWith; } public SO_IncidentsQuery setDebtorIDStartsWith(String value) { this.DebtorIDStartsWith = value; return this; } public String getDebtorIDEndsWith() { return DebtorIDEndsWith; } public SO_IncidentsQuery setDebtorIDEndsWith(String value) { this.DebtorIDEndsWith = value; return this; } public String getDebtorIDContains() { return DebtorIDContains; } public SO_IncidentsQuery setDebtorIDContains(String value) { this.DebtorIDContains = value; return this; } public String getDebtorIDLike() { return DebtorIDLike; } public SO_IncidentsQuery setDebtorIDLike(String value) { this.DebtorIDLike = value; return this; } public ArrayList getDebtorIDBetween() { return DebtorIDBetween; } public SO_IncidentsQuery setDebtorIDBetween(ArrayList value) { this.DebtorIDBetween = value; return this; } public ArrayList getDebtorIDIn() { return DebtorIDIn; } public SO_IncidentsQuery setDebtorIDIn(ArrayList value) { this.DebtorIDIn = value; return this; } public String getContactName() { return ContactName; } public SO_IncidentsQuery setContactName(String value) { this.ContactName = value; return this; } public String getContactNameStartsWith() { return ContactNameStartsWith; } public SO_IncidentsQuery setContactNameStartsWith(String value) { this.ContactNameStartsWith = value; return this; } public String getContactNameEndsWith() { return ContactNameEndsWith; } public SO_IncidentsQuery setContactNameEndsWith(String value) { this.ContactNameEndsWith = value; return this; } public String getContactNameContains() { return ContactNameContains; } public SO_IncidentsQuery setContactNameContains(String value) { this.ContactNameContains = value; return this; } public String getContactNameLike() { return ContactNameLike; } public SO_IncidentsQuery setContactNameLike(String value) { this.ContactNameLike = value; return this; } public ArrayList getContactNameBetween() { return ContactNameBetween; } public SO_IncidentsQuery setContactNameBetween(ArrayList value) { this.ContactNameBetween = value; return this; } public ArrayList getContactNameIn() { return ContactNameIn; } public SO_IncidentsQuery setContactNameIn(ArrayList value) { this.ContactNameIn = value; return this; } public String getInvoiceID() { return InvoiceID; } public SO_IncidentsQuery setInvoiceID(String value) { this.InvoiceID = value; return this; } public String getInvoiceIDStartsWith() { return InvoiceIDStartsWith; } public SO_IncidentsQuery setInvoiceIDStartsWith(String value) { this.InvoiceIDStartsWith = value; return this; } public String getInvoiceIDEndsWith() { return InvoiceIDEndsWith; } public SO_IncidentsQuery setInvoiceIDEndsWith(String value) { this.InvoiceIDEndsWith = value; return this; } public String getInvoiceIDContains() { return InvoiceIDContains; } public SO_IncidentsQuery setInvoiceIDContains(String value) { this.InvoiceIDContains = value; return this; } public String getInvoiceIDLike() { return InvoiceIDLike; } public SO_IncidentsQuery setInvoiceIDLike(String value) { this.InvoiceIDLike = value; return this; } public ArrayList getInvoiceIDBetween() { return InvoiceIDBetween; } public SO_IncidentsQuery setInvoiceIDBetween(ArrayList value) { this.InvoiceIDBetween = value; return this; } public ArrayList getInvoiceIDIn() { return InvoiceIDIn; } public SO_IncidentsQuery setInvoiceIDIn(ArrayList value) { this.InvoiceIDIn = value; return this; } public String getInvoiceHistoryID() { return InvoiceHistoryID; } public SO_IncidentsQuery setInvoiceHistoryID(String value) { this.InvoiceHistoryID = value; return this; } public String getInvoiceHistoryIDStartsWith() { return InvoiceHistoryIDStartsWith; } public SO_IncidentsQuery setInvoiceHistoryIDStartsWith(String value) { this.InvoiceHistoryIDStartsWith = value; return this; } public String getInvoiceHistoryIDEndsWith() { return InvoiceHistoryIDEndsWith; } public SO_IncidentsQuery setInvoiceHistoryIDEndsWith(String value) { this.InvoiceHistoryIDEndsWith = value; return this; } public String getInvoiceHistoryIDContains() { return InvoiceHistoryIDContains; } public SO_IncidentsQuery setInvoiceHistoryIDContains(String value) { this.InvoiceHistoryIDContains = value; return this; } public String getInvoiceHistoryIDLike() { return InvoiceHistoryIDLike; } public SO_IncidentsQuery setInvoiceHistoryIDLike(String value) { this.InvoiceHistoryIDLike = value; return this; } public ArrayList getInvoiceHistoryIDBetween() { return InvoiceHistoryIDBetween; } public SO_IncidentsQuery setInvoiceHistoryIDBetween(ArrayList value) { this.InvoiceHistoryIDBetween = value; return this; } public ArrayList getInvoiceHistoryIDIn() { return InvoiceHistoryIDIn; } public SO_IncidentsQuery setInvoiceHistoryIDIn(ArrayList value) { this.InvoiceHistoryIDIn = value; return this; } public String getInvoiceLineID() { return InvoiceLineID; } public SO_IncidentsQuery setInvoiceLineID(String value) { this.InvoiceLineID = value; return this; } public String getInvoiceLineIDStartsWith() { return InvoiceLineIDStartsWith; } public SO_IncidentsQuery setInvoiceLineIDStartsWith(String value) { this.InvoiceLineIDStartsWith = value; return this; } public String getInvoiceLineIDEndsWith() { return InvoiceLineIDEndsWith; } public SO_IncidentsQuery setInvoiceLineIDEndsWith(String value) { this.InvoiceLineIDEndsWith = value; return this; } public String getInvoiceLineIDContains() { return InvoiceLineIDContains; } public SO_IncidentsQuery setInvoiceLineIDContains(String value) { this.InvoiceLineIDContains = value; return this; } public String getInvoiceLineIDLike() { return InvoiceLineIDLike; } public SO_IncidentsQuery setInvoiceLineIDLike(String value) { this.InvoiceLineIDLike = value; return this; } public ArrayList getInvoiceLineIDBetween() { return InvoiceLineIDBetween; } public SO_IncidentsQuery setInvoiceLineIDBetween(ArrayList value) { this.InvoiceLineIDBetween = value; return this; } public ArrayList getInvoiceLineIDIn() { return InvoiceLineIDIn; } public SO_IncidentsQuery setInvoiceLineIDIn(ArrayList value) { this.InvoiceLineIDIn = value; return this; } public String getSoIncidentTypesRecID() { return SO_IncidentTypes_RecID; } public SO_IncidentsQuery setSoIncidentTypesRecID(String value) { this.SO_IncidentTypes_RecID = value; return this; } public String getSoIncidentTypesRecIDStartsWith() { return SO_IncidentTypes_RecIDStartsWith; } public SO_IncidentsQuery setSoIncidentTypesRecIDStartsWith(String value) { this.SO_IncidentTypes_RecIDStartsWith = value; return this; } public String getSoIncidentTypesRecIDEndsWith() { return SO_IncidentTypes_RecIDEndsWith; } public SO_IncidentsQuery setSoIncidentTypesRecIDEndsWith(String value) { this.SO_IncidentTypes_RecIDEndsWith = value; return this; } public String getSoIncidentTypesRecIDContains() { return SO_IncidentTypes_RecIDContains; } public SO_IncidentsQuery setSoIncidentTypesRecIDContains(String value) { this.SO_IncidentTypes_RecIDContains = value; return this; } public String getSoIncidentTypesRecIDLike() { return SO_IncidentTypes_RecIDLike; } public SO_IncidentsQuery setSoIncidentTypesRecIDLike(String value) { this.SO_IncidentTypes_RecIDLike = value; return this; } public ArrayList getSoIncidentTypesRecIDBetween() { return SO_IncidentTypes_RecIDBetween; } public SO_IncidentsQuery setSoIncidentTypesRecIDBetween(ArrayList value) { this.SO_IncidentTypes_RecIDBetween = value; return this; } public ArrayList getSoIncidentTypesRecIDIn() { return SO_IncidentTypes_RecIDIn; } public SO_IncidentsQuery setSoIncidentTypesRecIDIn(ArrayList value) { this.SO_IncidentTypes_RecIDIn = value; return this; } public String getDetails() { return Details; } public SO_IncidentsQuery setDetails(String value) { this.Details = value; return this; } public String getDetailsStartsWith() { return DetailsStartsWith; } public SO_IncidentsQuery setDetailsStartsWith(String value) { this.DetailsStartsWith = value; return this; } public String getDetailsEndsWith() { return DetailsEndsWith; } public SO_IncidentsQuery setDetailsEndsWith(String value) { this.DetailsEndsWith = value; return this; } public String getDetailsContains() { return DetailsContains; } public SO_IncidentsQuery setDetailsContains(String value) { this.DetailsContains = value; return this; } public String getDetailsLike() { return DetailsLike; } public SO_IncidentsQuery setDetailsLike(String value) { this.DetailsLike = value; return this; } public ArrayList getDetailsBetween() { return DetailsBetween; } public SO_IncidentsQuery setDetailsBetween(ArrayList value) { this.DetailsBetween = value; return this; } public ArrayList getDetailsIn() { return DetailsIn; } public SO_IncidentsQuery setDetailsIn(ArrayList value) { this.DetailsIn = value; return this; } public Date getCreatedDateTime() { return CreatedDateTime; } public SO_IncidentsQuery setCreatedDateTime(Date value) { this.CreatedDateTime = value; return this; } public Date getCreatedDateTimeGreaterThanOrEqualTo() { return CreatedDateTimeGreaterThanOrEqualTo; } public SO_IncidentsQuery setCreatedDateTimeGreaterThanOrEqualTo(Date value) { this.CreatedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getCreatedDateTimeGreaterThan() { return CreatedDateTimeGreaterThan; } public SO_IncidentsQuery setCreatedDateTimeGreaterThan(Date value) { this.CreatedDateTimeGreaterThan = value; return this; } public Date getCreatedDateTimeLessThan() { return CreatedDateTimeLessThan; } public SO_IncidentsQuery setCreatedDateTimeLessThan(Date value) { this.CreatedDateTimeLessThan = value; return this; } public Date getCreatedDateTimeLessThanOrEqualTo() { return CreatedDateTimeLessThanOrEqualTo; } public SO_IncidentsQuery setCreatedDateTimeLessThanOrEqualTo(Date value) { this.CreatedDateTimeLessThanOrEqualTo = value; return this; } public Date getCreatedDateTimeNotEqualTo() { return CreatedDateTimeNotEqualTo; } public SO_IncidentsQuery setCreatedDateTimeNotEqualTo(Date value) { this.CreatedDateTimeNotEqualTo = value; return this; } public ArrayList getCreatedDateTimeBetween() { return CreatedDateTimeBetween; } public SO_IncidentsQuery setCreatedDateTimeBetween(ArrayList value) { this.CreatedDateTimeBetween = value; return this; } public ArrayList getCreatedDateTimeIn() { return CreatedDateTimeIn; } public SO_IncidentsQuery setCreatedDateTimeIn(ArrayList value) { this.CreatedDateTimeIn = value; return this; } public String getCreatedByStaffID() { return CreatedByStaffID; } public SO_IncidentsQuery setCreatedByStaffID(String value) { this.CreatedByStaffID = value; return this; } public String getCreatedByStaffIDStartsWith() { return CreatedByStaffIDStartsWith; } public SO_IncidentsQuery setCreatedByStaffIDStartsWith(String value) { this.CreatedByStaffIDStartsWith = value; return this; } public String getCreatedByStaffIDEndsWith() { return CreatedByStaffIDEndsWith; } public SO_IncidentsQuery setCreatedByStaffIDEndsWith(String value) { this.CreatedByStaffIDEndsWith = value; return this; } public String getCreatedByStaffIDContains() { return CreatedByStaffIDContains; } public SO_IncidentsQuery setCreatedByStaffIDContains(String value) { this.CreatedByStaffIDContains = value; return this; } public String getCreatedByStaffIDLike() { return CreatedByStaffIDLike; } public SO_IncidentsQuery setCreatedByStaffIDLike(String value) { this.CreatedByStaffIDLike = value; return this; } public ArrayList getCreatedByStaffIDBetween() { return CreatedByStaffIDBetween; } public SO_IncidentsQuery setCreatedByStaffIDBetween(ArrayList value) { this.CreatedByStaffIDBetween = value; return this; } public ArrayList getCreatedByStaffIDIn() { return CreatedByStaffIDIn; } public SO_IncidentsQuery setCreatedByStaffIDIn(ArrayList value) { this.CreatedByStaffIDIn = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public SO_IncidentsQuery setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getLastSavedDateTimeGreaterThanOrEqualTo() { return LastSavedDateTimeGreaterThanOrEqualTo; } public SO_IncidentsQuery setLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.LastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeGreaterThan() { return LastSavedDateTimeGreaterThan; } public SO_IncidentsQuery setLastSavedDateTimeGreaterThan(Date value) { this.LastSavedDateTimeGreaterThan = value; return this; } public Date getLastSavedDateTimeLessThan() { return LastSavedDateTimeLessThan; } public SO_IncidentsQuery setLastSavedDateTimeLessThan(Date value) { this.LastSavedDateTimeLessThan = value; return this; } public Date getLastSavedDateTimeLessThanOrEqualTo() { return LastSavedDateTimeLessThanOrEqualTo; } public SO_IncidentsQuery setLastSavedDateTimeLessThanOrEqualTo(Date value) { this.LastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeNotEqualTo() { return LastSavedDateTimeNotEqualTo; } public SO_IncidentsQuery setLastSavedDateTimeNotEqualTo(Date value) { this.LastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getLastSavedDateTimeBetween() { return LastSavedDateTimeBetween; } public SO_IncidentsQuery setLastSavedDateTimeBetween(ArrayList value) { this.LastSavedDateTimeBetween = value; return this; } public ArrayList getLastSavedDateTimeIn() { return LastSavedDateTimeIn; } public SO_IncidentsQuery setLastSavedDateTimeIn(ArrayList value) { this.LastSavedDateTimeIn = value; return this; } public String getLastSavedByStaffID() { return LastSavedByStaffID; } public SO_IncidentsQuery setLastSavedByStaffID(String value) { this.LastSavedByStaffID = value; return this; } public String getLastSavedByStaffIDStartsWith() { return LastSavedByStaffIDStartsWith; } public SO_IncidentsQuery setLastSavedByStaffIDStartsWith(String value) { this.LastSavedByStaffIDStartsWith = value; return this; } public String getLastSavedByStaffIDEndsWith() { return LastSavedByStaffIDEndsWith; } public SO_IncidentsQuery setLastSavedByStaffIDEndsWith(String value) { this.LastSavedByStaffIDEndsWith = value; return this; } public String getLastSavedByStaffIDContains() { return LastSavedByStaffIDContains; } public SO_IncidentsQuery setLastSavedByStaffIDContains(String value) { this.LastSavedByStaffIDContains = value; return this; } public String getLastSavedByStaffIDLike() { return LastSavedByStaffIDLike; } public SO_IncidentsQuery setLastSavedByStaffIDLike(String value) { this.LastSavedByStaffIDLike = value; return this; } public ArrayList getLastSavedByStaffIDBetween() { return LastSavedByStaffIDBetween; } public SO_IncidentsQuery setLastSavedByStaffIDBetween(ArrayList value) { this.LastSavedByStaffIDBetween = value; return this; } public ArrayList getLastSavedByStaffIDIn() { return LastSavedByStaffIDIn; } public SO_IncidentsQuery setLastSavedByStaffIDIn(ArrayList value) { this.LastSavedByStaffIDIn = value; return this; } public Date getIncidentDate() { return IncidentDate; } public SO_IncidentsQuery setIncidentDate(Date value) { this.IncidentDate = value; return this; } public Date getIncidentDateGreaterThanOrEqualTo() { return IncidentDateGreaterThanOrEqualTo; } public SO_IncidentsQuery setIncidentDateGreaterThanOrEqualTo(Date value) { this.IncidentDateGreaterThanOrEqualTo = value; return this; } public Date getIncidentDateGreaterThan() { return IncidentDateGreaterThan; } public SO_IncidentsQuery setIncidentDateGreaterThan(Date value) { this.IncidentDateGreaterThan = value; return this; } public Date getIncidentDateLessThan() { return IncidentDateLessThan; } public SO_IncidentsQuery setIncidentDateLessThan(Date value) { this.IncidentDateLessThan = value; return this; } public Date getIncidentDateLessThanOrEqualTo() { return IncidentDateLessThanOrEqualTo; } public SO_IncidentsQuery setIncidentDateLessThanOrEqualTo(Date value) { this.IncidentDateLessThanOrEqualTo = value; return this; } public Date getIncidentDateNotEqualTo() { return IncidentDateNotEqualTo; } public SO_IncidentsQuery setIncidentDateNotEqualTo(Date value) { this.IncidentDateNotEqualTo = value; return this; } public ArrayList getIncidentDateBetween() { return IncidentDateBetween; } public SO_IncidentsQuery setIncidentDateBetween(ArrayList value) { this.IncidentDateBetween = value; return this; } public ArrayList getIncidentDateIn() { return IncidentDateIn; } public SO_IncidentsQuery setIncidentDateIn(ArrayList value) { this.IncidentDateIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class SO_IncidentTypesQuery extends QueryDb implements IReturn> { public String RecID = null; public String RecIDStartsWith = null; public String RecIDEndsWith = null; public String RecIDContains = null; public String RecIDLike = null; public ArrayList RecIDBetween = null; public ArrayList RecIDIn = null; public Integer DisplayOrder = null; public Integer DisplayOrderGreaterThanOrEqualTo = null; public Integer DisplayOrderGreaterThan = null; public Integer DisplayOrderLessThan = null; public Integer DisplayOrderLessThanOrEqualTo = null; public Integer DisplayOrderNotEqualTo = null; public ArrayList DisplayOrderBetween = null; public ArrayList DisplayOrderIn = null; public String Description = null; public String DescriptionStartsWith = null; public String DescriptionEndsWith = null; public String DescriptionContains = null; public String DescriptionLike = null; public ArrayList DescriptionBetween = null; public ArrayList DescriptionIn = null; public Boolean DefaultType = null; public Date CreatedDateTime = null; public Date CreatedDateTimeGreaterThanOrEqualTo = null; public Date CreatedDateTimeGreaterThan = null; public Date CreatedDateTimeLessThan = null; public Date CreatedDateTimeLessThanOrEqualTo = null; public Date CreatedDateTimeNotEqualTo = null; public ArrayList CreatedDateTimeBetween = null; public ArrayList CreatedDateTimeIn = null; public String CreatedByStaffID = null; public String CreatedByStaffIDStartsWith = null; public String CreatedByStaffIDEndsWith = null; public String CreatedByStaffIDContains = null; public String CreatedByStaffIDLike = null; public ArrayList CreatedByStaffIDBetween = null; public ArrayList CreatedByStaffIDIn = null; public Date LastSavedDateTime = null; public Date LastSavedDateTimeGreaterThanOrEqualTo = null; public Date LastSavedDateTimeGreaterThan = null; public Date LastSavedDateTimeLessThan = null; public Date LastSavedDateTimeLessThanOrEqualTo = null; public Date LastSavedDateTimeNotEqualTo = null; public ArrayList LastSavedDateTimeBetween = null; public ArrayList LastSavedDateTimeIn = null; public String LastSavedByStaffID = null; public String LastSavedByStaffIDStartsWith = null; public String LastSavedByStaffIDEndsWith = null; public String LastSavedByStaffIDContains = null; public String LastSavedByStaffIDLike = null; public ArrayList LastSavedByStaffIDBetween = null; public ArrayList LastSavedByStaffIDIn = null; public String getRecID() { return RecID; } public SO_IncidentTypesQuery setRecID(String value) { this.RecID = value; return this; } public String getRecIDStartsWith() { return RecIDStartsWith; } public SO_IncidentTypesQuery setRecIDStartsWith(String value) { this.RecIDStartsWith = value; return this; } public String getRecIDEndsWith() { return RecIDEndsWith; } public SO_IncidentTypesQuery setRecIDEndsWith(String value) { this.RecIDEndsWith = value; return this; } public String getRecIDContains() { return RecIDContains; } public SO_IncidentTypesQuery setRecIDContains(String value) { this.RecIDContains = value; return this; } public String getRecIDLike() { return RecIDLike; } public SO_IncidentTypesQuery setRecIDLike(String value) { this.RecIDLike = value; return this; } public ArrayList getRecIDBetween() { return RecIDBetween; } public SO_IncidentTypesQuery setRecIDBetween(ArrayList value) { this.RecIDBetween = value; return this; } public ArrayList getRecIDIn() { return RecIDIn; } public SO_IncidentTypesQuery setRecIDIn(ArrayList value) { this.RecIDIn = value; return this; } public Integer getDisplayOrder() { return DisplayOrder; } public SO_IncidentTypesQuery setDisplayOrder(Integer value) { this.DisplayOrder = value; return this; } public Integer getDisplayOrderGreaterThanOrEqualTo() { return DisplayOrderGreaterThanOrEqualTo; } public SO_IncidentTypesQuery setDisplayOrderGreaterThanOrEqualTo(Integer value) { this.DisplayOrderGreaterThanOrEqualTo = value; return this; } public Integer getDisplayOrderGreaterThan() { return DisplayOrderGreaterThan; } public SO_IncidentTypesQuery setDisplayOrderGreaterThan(Integer value) { this.DisplayOrderGreaterThan = value; return this; } public Integer getDisplayOrderLessThan() { return DisplayOrderLessThan; } public SO_IncidentTypesQuery setDisplayOrderLessThan(Integer value) { this.DisplayOrderLessThan = value; return this; } public Integer getDisplayOrderLessThanOrEqualTo() { return DisplayOrderLessThanOrEqualTo; } public SO_IncidentTypesQuery setDisplayOrderLessThanOrEqualTo(Integer value) { this.DisplayOrderLessThanOrEqualTo = value; return this; } public Integer getDisplayOrderNotEqualTo() { return DisplayOrderNotEqualTo; } public SO_IncidentTypesQuery setDisplayOrderNotEqualTo(Integer value) { this.DisplayOrderNotEqualTo = value; return this; } public ArrayList getDisplayOrderBetween() { return DisplayOrderBetween; } public SO_IncidentTypesQuery setDisplayOrderBetween(ArrayList value) { this.DisplayOrderBetween = value; return this; } public ArrayList getDisplayOrderIn() { return DisplayOrderIn; } public SO_IncidentTypesQuery setDisplayOrderIn(ArrayList value) { this.DisplayOrderIn = value; return this; } public String getDescription() { return Description; } public SO_IncidentTypesQuery setDescription(String value) { this.Description = value; return this; } public String getDescriptionStartsWith() { return DescriptionStartsWith; } public SO_IncidentTypesQuery setDescriptionStartsWith(String value) { this.DescriptionStartsWith = value; return this; } public String getDescriptionEndsWith() { return DescriptionEndsWith; } public SO_IncidentTypesQuery setDescriptionEndsWith(String value) { this.DescriptionEndsWith = value; return this; } public String getDescriptionContains() { return DescriptionContains; } public SO_IncidentTypesQuery setDescriptionContains(String value) { this.DescriptionContains = value; return this; } public String getDescriptionLike() { return DescriptionLike; } public SO_IncidentTypesQuery setDescriptionLike(String value) { this.DescriptionLike = value; return this; } public ArrayList getDescriptionBetween() { return DescriptionBetween; } public SO_IncidentTypesQuery setDescriptionBetween(ArrayList value) { this.DescriptionBetween = value; return this; } public ArrayList getDescriptionIn() { return DescriptionIn; } public SO_IncidentTypesQuery setDescriptionIn(ArrayList value) { this.DescriptionIn = value; return this; } public Boolean isDefaultType() { return DefaultType; } public SO_IncidentTypesQuery setDefaultType(Boolean value) { this.DefaultType = value; return this; } public Date getCreatedDateTime() { return CreatedDateTime; } public SO_IncidentTypesQuery setCreatedDateTime(Date value) { this.CreatedDateTime = value; return this; } public Date getCreatedDateTimeGreaterThanOrEqualTo() { return CreatedDateTimeGreaterThanOrEqualTo; } public SO_IncidentTypesQuery setCreatedDateTimeGreaterThanOrEqualTo(Date value) { this.CreatedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getCreatedDateTimeGreaterThan() { return CreatedDateTimeGreaterThan; } public SO_IncidentTypesQuery setCreatedDateTimeGreaterThan(Date value) { this.CreatedDateTimeGreaterThan = value; return this; } public Date getCreatedDateTimeLessThan() { return CreatedDateTimeLessThan; } public SO_IncidentTypesQuery setCreatedDateTimeLessThan(Date value) { this.CreatedDateTimeLessThan = value; return this; } public Date getCreatedDateTimeLessThanOrEqualTo() { return CreatedDateTimeLessThanOrEqualTo; } public SO_IncidentTypesQuery setCreatedDateTimeLessThanOrEqualTo(Date value) { this.CreatedDateTimeLessThanOrEqualTo = value; return this; } public Date getCreatedDateTimeNotEqualTo() { return CreatedDateTimeNotEqualTo; } public SO_IncidentTypesQuery setCreatedDateTimeNotEqualTo(Date value) { this.CreatedDateTimeNotEqualTo = value; return this; } public ArrayList getCreatedDateTimeBetween() { return CreatedDateTimeBetween; } public SO_IncidentTypesQuery setCreatedDateTimeBetween(ArrayList value) { this.CreatedDateTimeBetween = value; return this; } public ArrayList getCreatedDateTimeIn() { return CreatedDateTimeIn; } public SO_IncidentTypesQuery setCreatedDateTimeIn(ArrayList value) { this.CreatedDateTimeIn = value; return this; } public String getCreatedByStaffID() { return CreatedByStaffID; } public SO_IncidentTypesQuery setCreatedByStaffID(String value) { this.CreatedByStaffID = value; return this; } public String getCreatedByStaffIDStartsWith() { return CreatedByStaffIDStartsWith; } public SO_IncidentTypesQuery setCreatedByStaffIDStartsWith(String value) { this.CreatedByStaffIDStartsWith = value; return this; } public String getCreatedByStaffIDEndsWith() { return CreatedByStaffIDEndsWith; } public SO_IncidentTypesQuery setCreatedByStaffIDEndsWith(String value) { this.CreatedByStaffIDEndsWith = value; return this; } public String getCreatedByStaffIDContains() { return CreatedByStaffIDContains; } public SO_IncidentTypesQuery setCreatedByStaffIDContains(String value) { this.CreatedByStaffIDContains = value; return this; } public String getCreatedByStaffIDLike() { return CreatedByStaffIDLike; } public SO_IncidentTypesQuery setCreatedByStaffIDLike(String value) { this.CreatedByStaffIDLike = value; return this; } public ArrayList getCreatedByStaffIDBetween() { return CreatedByStaffIDBetween; } public SO_IncidentTypesQuery setCreatedByStaffIDBetween(ArrayList value) { this.CreatedByStaffIDBetween = value; return this; } public ArrayList getCreatedByStaffIDIn() { return CreatedByStaffIDIn; } public SO_IncidentTypesQuery setCreatedByStaffIDIn(ArrayList value) { this.CreatedByStaffIDIn = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public SO_IncidentTypesQuery setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getLastSavedDateTimeGreaterThanOrEqualTo() { return LastSavedDateTimeGreaterThanOrEqualTo; } public SO_IncidentTypesQuery setLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.LastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeGreaterThan() { return LastSavedDateTimeGreaterThan; } public SO_IncidentTypesQuery setLastSavedDateTimeGreaterThan(Date value) { this.LastSavedDateTimeGreaterThan = value; return this; } public Date getLastSavedDateTimeLessThan() { return LastSavedDateTimeLessThan; } public SO_IncidentTypesQuery setLastSavedDateTimeLessThan(Date value) { this.LastSavedDateTimeLessThan = value; return this; } public Date getLastSavedDateTimeLessThanOrEqualTo() { return LastSavedDateTimeLessThanOrEqualTo; } public SO_IncidentTypesQuery setLastSavedDateTimeLessThanOrEqualTo(Date value) { this.LastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeNotEqualTo() { return LastSavedDateTimeNotEqualTo; } public SO_IncidentTypesQuery setLastSavedDateTimeNotEqualTo(Date value) { this.LastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getLastSavedDateTimeBetween() { return LastSavedDateTimeBetween; } public SO_IncidentTypesQuery setLastSavedDateTimeBetween(ArrayList value) { this.LastSavedDateTimeBetween = value; return this; } public ArrayList getLastSavedDateTimeIn() { return LastSavedDateTimeIn; } public SO_IncidentTypesQuery setLastSavedDateTimeIn(ArrayList value) { this.LastSavedDateTimeIn = value; return this; } public String getLastSavedByStaffID() { return LastSavedByStaffID; } public SO_IncidentTypesQuery setLastSavedByStaffID(String value) { this.LastSavedByStaffID = value; return this; } public String getLastSavedByStaffIDStartsWith() { return LastSavedByStaffIDStartsWith; } public SO_IncidentTypesQuery setLastSavedByStaffIDStartsWith(String value) { this.LastSavedByStaffIDStartsWith = value; return this; } public String getLastSavedByStaffIDEndsWith() { return LastSavedByStaffIDEndsWith; } public SO_IncidentTypesQuery setLastSavedByStaffIDEndsWith(String value) { this.LastSavedByStaffIDEndsWith = value; return this; } public String getLastSavedByStaffIDContains() { return LastSavedByStaffIDContains; } public SO_IncidentTypesQuery setLastSavedByStaffIDContains(String value) { this.LastSavedByStaffIDContains = value; return this; } public String getLastSavedByStaffIDLike() { return LastSavedByStaffIDLike; } public SO_IncidentTypesQuery setLastSavedByStaffIDLike(String value) { this.LastSavedByStaffIDLike = value; return this; } public ArrayList getLastSavedByStaffIDBetween() { return LastSavedByStaffIDBetween; } public SO_IncidentTypesQuery setLastSavedByStaffIDBetween(ArrayList value) { this.LastSavedByStaffIDBetween = value; return this; } public ArrayList getLastSavedByStaffIDIn() { return LastSavedByStaffIDIn; } public SO_IncidentTypesQuery setLastSavedByStaffIDIn(ArrayList value) { this.LastSavedByStaffIDIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class SO_LineCustomFieldsQuery extends QueryDb implements IReturn> { public String FieldID = null; public String FieldIDStartsWith = null; public String FieldIDEndsWith = null; public String FieldIDContains = null; public String FieldIDLike = null; public ArrayList FieldIDBetween = null; public ArrayList FieldIDIn = null; public String SettingName = null; public String SettingNameStartsWith = null; public String SettingNameEndsWith = null; public String SettingNameContains = null; public String SettingNameLike = null; public ArrayList SettingNameBetween = null; public ArrayList SettingNameIn = null; public String SettingDescription = null; public String SettingDescriptionStartsWith = null; public String SettingDescriptionEndsWith = null; public String SettingDescriptionContains = null; public String SettingDescriptionLike = null; public ArrayList SettingDescriptionBetween = null; public ArrayList SettingDescriptionIn = null; public Integer CellType = null; public Integer CellTypeGreaterThanOrEqualTo = null; public Integer CellTypeGreaterThan = null; public Integer CellTypeLessThan = null; public Integer CellTypeLessThanOrEqualTo = null; public Integer CellTypeNotEqualTo = null; public ArrayList CellTypeBetween = null; public ArrayList CellTypeIn = null; public String FieldParameter = null; public String FieldParameterStartsWith = null; public String FieldParameterEndsWith = null; public String FieldParameterContains = null; public String FieldParameterLike = null; public ArrayList FieldParameterBetween = null; public ArrayList FieldParameterIn = null; public UUID SY_Plugin_RecID = null; public ArrayList SY_Plugin_RecIDIn = null; public Date LastSavedDateTime = null; public Date LastSavedDateTimeGreaterThanOrEqualTo = null; public Date LastSavedDateTimeGreaterThan = null; public Date LastSavedDateTimeLessThan = null; public Date LastSavedDateTimeLessThanOrEqualTo = null; public Date LastSavedDateTimeNotEqualTo = null; public ArrayList LastSavedDateTimeBetween = null; public ArrayList LastSavedDateTimeIn = null; public Integer DisplayOrder = null; public Integer DisplayOrderGreaterThanOrEqualTo = null; public Integer DisplayOrderGreaterThan = null; public Integer DisplayOrderLessThan = null; public Integer DisplayOrderLessThanOrEqualTo = null; public Integer DisplayOrderNotEqualTo = null; public ArrayList DisplayOrderBetween = null; public ArrayList DisplayOrderIn = null; public String getFieldID() { return FieldID; } public SO_LineCustomFieldsQuery setFieldID(String value) { this.FieldID = value; return this; } public String getFieldIDStartsWith() { return FieldIDStartsWith; } public SO_LineCustomFieldsQuery setFieldIDStartsWith(String value) { this.FieldIDStartsWith = value; return this; } public String getFieldIDEndsWith() { return FieldIDEndsWith; } public SO_LineCustomFieldsQuery setFieldIDEndsWith(String value) { this.FieldIDEndsWith = value; return this; } public String getFieldIDContains() { return FieldIDContains; } public SO_LineCustomFieldsQuery setFieldIDContains(String value) { this.FieldIDContains = value; return this; } public String getFieldIDLike() { return FieldIDLike; } public SO_LineCustomFieldsQuery setFieldIDLike(String value) { this.FieldIDLike = value; return this; } public ArrayList getFieldIDBetween() { return FieldIDBetween; } public SO_LineCustomFieldsQuery setFieldIDBetween(ArrayList value) { this.FieldIDBetween = value; return this; } public ArrayList getFieldIDIn() { return FieldIDIn; } public SO_LineCustomFieldsQuery setFieldIDIn(ArrayList value) { this.FieldIDIn = value; return this; } public String getSettingName() { return SettingName; } public SO_LineCustomFieldsQuery setSettingName(String value) { this.SettingName = value; return this; } public String getSettingNameStartsWith() { return SettingNameStartsWith; } public SO_LineCustomFieldsQuery setSettingNameStartsWith(String value) { this.SettingNameStartsWith = value; return this; } public String getSettingNameEndsWith() { return SettingNameEndsWith; } public SO_LineCustomFieldsQuery setSettingNameEndsWith(String value) { this.SettingNameEndsWith = value; return this; } public String getSettingNameContains() { return SettingNameContains; } public SO_LineCustomFieldsQuery setSettingNameContains(String value) { this.SettingNameContains = value; return this; } public String getSettingNameLike() { return SettingNameLike; } public SO_LineCustomFieldsQuery setSettingNameLike(String value) { this.SettingNameLike = value; return this; } public ArrayList getSettingNameBetween() { return SettingNameBetween; } public SO_LineCustomFieldsQuery setSettingNameBetween(ArrayList value) { this.SettingNameBetween = value; return this; } public ArrayList getSettingNameIn() { return SettingNameIn; } public SO_LineCustomFieldsQuery setSettingNameIn(ArrayList value) { this.SettingNameIn = value; return this; } public String getSettingDescription() { return SettingDescription; } public SO_LineCustomFieldsQuery setSettingDescription(String value) { this.SettingDescription = value; return this; } public String getSettingDescriptionStartsWith() { return SettingDescriptionStartsWith; } public SO_LineCustomFieldsQuery setSettingDescriptionStartsWith(String value) { this.SettingDescriptionStartsWith = value; return this; } public String getSettingDescriptionEndsWith() { return SettingDescriptionEndsWith; } public SO_LineCustomFieldsQuery setSettingDescriptionEndsWith(String value) { this.SettingDescriptionEndsWith = value; return this; } public String getSettingDescriptionContains() { return SettingDescriptionContains; } public SO_LineCustomFieldsQuery setSettingDescriptionContains(String value) { this.SettingDescriptionContains = value; return this; } public String getSettingDescriptionLike() { return SettingDescriptionLike; } public SO_LineCustomFieldsQuery setSettingDescriptionLike(String value) { this.SettingDescriptionLike = value; return this; } public ArrayList getSettingDescriptionBetween() { return SettingDescriptionBetween; } public SO_LineCustomFieldsQuery setSettingDescriptionBetween(ArrayList value) { this.SettingDescriptionBetween = value; return this; } public ArrayList getSettingDescriptionIn() { return SettingDescriptionIn; } public SO_LineCustomFieldsQuery setSettingDescriptionIn(ArrayList value) { this.SettingDescriptionIn = value; return this; } public Integer getCellType() { return CellType; } public SO_LineCustomFieldsQuery setCellType(Integer value) { this.CellType = value; return this; } public Integer getCellTypeGreaterThanOrEqualTo() { return CellTypeGreaterThanOrEqualTo; } public SO_LineCustomFieldsQuery setCellTypeGreaterThanOrEqualTo(Integer value) { this.CellTypeGreaterThanOrEqualTo = value; return this; } public Integer getCellTypeGreaterThan() { return CellTypeGreaterThan; } public SO_LineCustomFieldsQuery setCellTypeGreaterThan(Integer value) { this.CellTypeGreaterThan = value; return this; } public Integer getCellTypeLessThan() { return CellTypeLessThan; } public SO_LineCustomFieldsQuery setCellTypeLessThan(Integer value) { this.CellTypeLessThan = value; return this; } public Integer getCellTypeLessThanOrEqualTo() { return CellTypeLessThanOrEqualTo; } public SO_LineCustomFieldsQuery setCellTypeLessThanOrEqualTo(Integer value) { this.CellTypeLessThanOrEqualTo = value; return this; } public Integer getCellTypeNotEqualTo() { return CellTypeNotEqualTo; } public SO_LineCustomFieldsQuery setCellTypeNotEqualTo(Integer value) { this.CellTypeNotEqualTo = value; return this; } public ArrayList getCellTypeBetween() { return CellTypeBetween; } public SO_LineCustomFieldsQuery setCellTypeBetween(ArrayList value) { this.CellTypeBetween = value; return this; } public ArrayList getCellTypeIn() { return CellTypeIn; } public SO_LineCustomFieldsQuery setCellTypeIn(ArrayList value) { this.CellTypeIn = value; return this; } public String getFieldParameter() { return FieldParameter; } public SO_LineCustomFieldsQuery setFieldParameter(String value) { this.FieldParameter = value; return this; } public String getFieldParameterStartsWith() { return FieldParameterStartsWith; } public SO_LineCustomFieldsQuery setFieldParameterStartsWith(String value) { this.FieldParameterStartsWith = value; return this; } public String getFieldParameterEndsWith() { return FieldParameterEndsWith; } public SO_LineCustomFieldsQuery setFieldParameterEndsWith(String value) { this.FieldParameterEndsWith = value; return this; } public String getFieldParameterContains() { return FieldParameterContains; } public SO_LineCustomFieldsQuery setFieldParameterContains(String value) { this.FieldParameterContains = value; return this; } public String getFieldParameterLike() { return FieldParameterLike; } public SO_LineCustomFieldsQuery setFieldParameterLike(String value) { this.FieldParameterLike = value; return this; } public ArrayList getFieldParameterBetween() { return FieldParameterBetween; } public SO_LineCustomFieldsQuery setFieldParameterBetween(ArrayList value) { this.FieldParameterBetween = value; return this; } public ArrayList getFieldParameterIn() { return FieldParameterIn; } public SO_LineCustomFieldsQuery setFieldParameterIn(ArrayList value) { this.FieldParameterIn = value; return this; } public UUID getSyPluginRecID() { return SY_Plugin_RecID; } public SO_LineCustomFieldsQuery setSyPluginRecID(UUID value) { this.SY_Plugin_RecID = value; return this; } public ArrayList getSyPluginRecIDIn() { return SY_Plugin_RecIDIn; } public SO_LineCustomFieldsQuery setSyPluginRecIDIn(ArrayList value) { this.SY_Plugin_RecIDIn = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public SO_LineCustomFieldsQuery setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getLastSavedDateTimeGreaterThanOrEqualTo() { return LastSavedDateTimeGreaterThanOrEqualTo; } public SO_LineCustomFieldsQuery setLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.LastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeGreaterThan() { return LastSavedDateTimeGreaterThan; } public SO_LineCustomFieldsQuery setLastSavedDateTimeGreaterThan(Date value) { this.LastSavedDateTimeGreaterThan = value; return this; } public Date getLastSavedDateTimeLessThan() { return LastSavedDateTimeLessThan; } public SO_LineCustomFieldsQuery setLastSavedDateTimeLessThan(Date value) { this.LastSavedDateTimeLessThan = value; return this; } public Date getLastSavedDateTimeLessThanOrEqualTo() { return LastSavedDateTimeLessThanOrEqualTo; } public SO_LineCustomFieldsQuery setLastSavedDateTimeLessThanOrEqualTo(Date value) { this.LastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeNotEqualTo() { return LastSavedDateTimeNotEqualTo; } public SO_LineCustomFieldsQuery setLastSavedDateTimeNotEqualTo(Date value) { this.LastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getLastSavedDateTimeBetween() { return LastSavedDateTimeBetween; } public SO_LineCustomFieldsQuery setLastSavedDateTimeBetween(ArrayList value) { this.LastSavedDateTimeBetween = value; return this; } public ArrayList getLastSavedDateTimeIn() { return LastSavedDateTimeIn; } public SO_LineCustomFieldsQuery setLastSavedDateTimeIn(ArrayList value) { this.LastSavedDateTimeIn = value; return this; } public Integer getDisplayOrder() { return DisplayOrder; } public SO_LineCustomFieldsQuery setDisplayOrder(Integer value) { this.DisplayOrder = value; return this; } public Integer getDisplayOrderGreaterThanOrEqualTo() { return DisplayOrderGreaterThanOrEqualTo; } public SO_LineCustomFieldsQuery setDisplayOrderGreaterThanOrEqualTo(Integer value) { this.DisplayOrderGreaterThanOrEqualTo = value; return this; } public Integer getDisplayOrderGreaterThan() { return DisplayOrderGreaterThan; } public SO_LineCustomFieldsQuery setDisplayOrderGreaterThan(Integer value) { this.DisplayOrderGreaterThan = value; return this; } public Integer getDisplayOrderLessThan() { return DisplayOrderLessThan; } public SO_LineCustomFieldsQuery setDisplayOrderLessThan(Integer value) { this.DisplayOrderLessThan = value; return this; } public Integer getDisplayOrderLessThanOrEqualTo() { return DisplayOrderLessThanOrEqualTo; } public SO_LineCustomFieldsQuery setDisplayOrderLessThanOrEqualTo(Integer value) { this.DisplayOrderLessThanOrEqualTo = value; return this; } public Integer getDisplayOrderNotEqualTo() { return DisplayOrderNotEqualTo; } public SO_LineCustomFieldsQuery setDisplayOrderNotEqualTo(Integer value) { this.DisplayOrderNotEqualTo = value; return this; } public ArrayList getDisplayOrderBetween() { return DisplayOrderBetween; } public SO_LineCustomFieldsQuery setDisplayOrderBetween(ArrayList value) { this.DisplayOrderBetween = value; return this; } public ArrayList getDisplayOrderIn() { return DisplayOrderIn; } public SO_LineCustomFieldsQuery setDisplayOrderIn(ArrayList value) { this.DisplayOrderIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class SO_LineCustomValuesQuery extends QueryDb implements IReturn> { public String RecID = null; public String RecIDStartsWith = null; public String RecIDEndsWith = null; public String RecIDContains = null; public String RecIDLike = null; public ArrayList RecIDBetween = null; public ArrayList RecIDIn = null; public String InvoiceLineID = null; public String InvoiceLineIDStartsWith = null; public String InvoiceLineIDEndsWith = null; public String InvoiceLineIDContains = null; public String InvoiceLineIDLike = null; public ArrayList InvoiceLineIDBetween = null; public ArrayList InvoiceLineIDIn = null; public String FieldID = null; public String FieldIDStartsWith = null; public String FieldIDEndsWith = null; public String FieldIDContains = null; public String FieldIDLike = null; public ArrayList FieldIDBetween = null; public ArrayList FieldIDIn = null; public String Contents = null; public String ContentsStartsWith = null; public String ContentsEndsWith = null; public String ContentsContains = null; public String ContentsLike = null; public ArrayList ContentsBetween = null; public ArrayList ContentsIn = null; public Date LastSavedDateTime = null; public Date LastSavedDateTimeGreaterThanOrEqualTo = null; public Date LastSavedDateTimeGreaterThan = null; public Date LastSavedDateTimeLessThan = null; public Date LastSavedDateTimeLessThanOrEqualTo = null; public Date LastSavedDateTimeNotEqualTo = null; public ArrayList LastSavedDateTimeBetween = null; public ArrayList LastSavedDateTimeIn = null; public String getRecID() { return RecID; } public SO_LineCustomValuesQuery setRecID(String value) { this.RecID = value; return this; } public String getRecIDStartsWith() { return RecIDStartsWith; } public SO_LineCustomValuesQuery setRecIDStartsWith(String value) { this.RecIDStartsWith = value; return this; } public String getRecIDEndsWith() { return RecIDEndsWith; } public SO_LineCustomValuesQuery setRecIDEndsWith(String value) { this.RecIDEndsWith = value; return this; } public String getRecIDContains() { return RecIDContains; } public SO_LineCustomValuesQuery setRecIDContains(String value) { this.RecIDContains = value; return this; } public String getRecIDLike() { return RecIDLike; } public SO_LineCustomValuesQuery setRecIDLike(String value) { this.RecIDLike = value; return this; } public ArrayList getRecIDBetween() { return RecIDBetween; } public SO_LineCustomValuesQuery setRecIDBetween(ArrayList value) { this.RecIDBetween = value; return this; } public ArrayList getRecIDIn() { return RecIDIn; } public SO_LineCustomValuesQuery setRecIDIn(ArrayList value) { this.RecIDIn = value; return this; } public String getInvoiceLineID() { return InvoiceLineID; } public SO_LineCustomValuesQuery setInvoiceLineID(String value) { this.InvoiceLineID = value; return this; } public String getInvoiceLineIDStartsWith() { return InvoiceLineIDStartsWith; } public SO_LineCustomValuesQuery setInvoiceLineIDStartsWith(String value) { this.InvoiceLineIDStartsWith = value; return this; } public String getInvoiceLineIDEndsWith() { return InvoiceLineIDEndsWith; } public SO_LineCustomValuesQuery setInvoiceLineIDEndsWith(String value) { this.InvoiceLineIDEndsWith = value; return this; } public String getInvoiceLineIDContains() { return InvoiceLineIDContains; } public SO_LineCustomValuesQuery setInvoiceLineIDContains(String value) { this.InvoiceLineIDContains = value; return this; } public String getInvoiceLineIDLike() { return InvoiceLineIDLike; } public SO_LineCustomValuesQuery setInvoiceLineIDLike(String value) { this.InvoiceLineIDLike = value; return this; } public ArrayList getInvoiceLineIDBetween() { return InvoiceLineIDBetween; } public SO_LineCustomValuesQuery setInvoiceLineIDBetween(ArrayList value) { this.InvoiceLineIDBetween = value; return this; } public ArrayList getInvoiceLineIDIn() { return InvoiceLineIDIn; } public SO_LineCustomValuesQuery setInvoiceLineIDIn(ArrayList value) { this.InvoiceLineIDIn = value; return this; } public String getFieldID() { return FieldID; } public SO_LineCustomValuesQuery setFieldID(String value) { this.FieldID = value; return this; } public String getFieldIDStartsWith() { return FieldIDStartsWith; } public SO_LineCustomValuesQuery setFieldIDStartsWith(String value) { this.FieldIDStartsWith = value; return this; } public String getFieldIDEndsWith() { return FieldIDEndsWith; } public SO_LineCustomValuesQuery setFieldIDEndsWith(String value) { this.FieldIDEndsWith = value; return this; } public String getFieldIDContains() { return FieldIDContains; } public SO_LineCustomValuesQuery setFieldIDContains(String value) { this.FieldIDContains = value; return this; } public String getFieldIDLike() { return FieldIDLike; } public SO_LineCustomValuesQuery setFieldIDLike(String value) { this.FieldIDLike = value; return this; } public ArrayList getFieldIDBetween() { return FieldIDBetween; } public SO_LineCustomValuesQuery setFieldIDBetween(ArrayList value) { this.FieldIDBetween = value; return this; } public ArrayList getFieldIDIn() { return FieldIDIn; } public SO_LineCustomValuesQuery setFieldIDIn(ArrayList value) { this.FieldIDIn = value; return this; } public String getContents() { return Contents; } public SO_LineCustomValuesQuery setContents(String value) { this.Contents = value; return this; } public String getContentsStartsWith() { return ContentsStartsWith; } public SO_LineCustomValuesQuery setContentsStartsWith(String value) { this.ContentsStartsWith = value; return this; } public String getContentsEndsWith() { return ContentsEndsWith; } public SO_LineCustomValuesQuery setContentsEndsWith(String value) { this.ContentsEndsWith = value; return this; } public String getContentsContains() { return ContentsContains; } public SO_LineCustomValuesQuery setContentsContains(String value) { this.ContentsContains = value; return this; } public String getContentsLike() { return ContentsLike; } public SO_LineCustomValuesQuery setContentsLike(String value) { this.ContentsLike = value; return this; } public ArrayList getContentsBetween() { return ContentsBetween; } public SO_LineCustomValuesQuery setContentsBetween(ArrayList value) { this.ContentsBetween = value; return this; } public ArrayList getContentsIn() { return ContentsIn; } public SO_LineCustomValuesQuery setContentsIn(ArrayList value) { this.ContentsIn = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public SO_LineCustomValuesQuery setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getLastSavedDateTimeGreaterThanOrEqualTo() { return LastSavedDateTimeGreaterThanOrEqualTo; } public SO_LineCustomValuesQuery setLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.LastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeGreaterThan() { return LastSavedDateTimeGreaterThan; } public SO_LineCustomValuesQuery setLastSavedDateTimeGreaterThan(Date value) { this.LastSavedDateTimeGreaterThan = value; return this; } public Date getLastSavedDateTimeLessThan() { return LastSavedDateTimeLessThan; } public SO_LineCustomValuesQuery setLastSavedDateTimeLessThan(Date value) { this.LastSavedDateTimeLessThan = value; return this; } public Date getLastSavedDateTimeLessThanOrEqualTo() { return LastSavedDateTimeLessThanOrEqualTo; } public SO_LineCustomValuesQuery setLastSavedDateTimeLessThanOrEqualTo(Date value) { this.LastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeNotEqualTo() { return LastSavedDateTimeNotEqualTo; } public SO_LineCustomValuesQuery setLastSavedDateTimeNotEqualTo(Date value) { this.LastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getLastSavedDateTimeBetween() { return LastSavedDateTimeBetween; } public SO_LineCustomValuesQuery setLastSavedDateTimeBetween(ArrayList value) { this.LastSavedDateTimeBetween = value; return this; } public ArrayList getLastSavedDateTimeIn() { return LastSavedDateTimeIn; } public SO_LineCustomValuesQuery setLastSavedDateTimeIn(ArrayList value) { this.LastSavedDateTimeIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @Route(Path="/Queries/SO_LineDetails", Verbs="GET") @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class SO_LineDetailsQuery extends QueryDb implements IReturn> { public String DetailsLineID = null; public String DetailsLineIDStartsWith = null; public String DetailsLineIDEndsWith = null; public String DetailsLineIDContains = null; public String DetailsLineIDLike = null; public ArrayList DetailsLineIDBetween = null; public ArrayList DetailsLineIDIn = null; public String InvoiceHistoryID = null; public String InvoiceHistoryIDStartsWith = null; public String InvoiceHistoryIDEndsWith = null; public String InvoiceHistoryIDContains = null; public String InvoiceHistoryIDLike = null; public ArrayList InvoiceHistoryIDBetween = null; public ArrayList InvoiceHistoryIDIn = null; public String InvoiceLineID = null; public String InvoiceLineIDStartsWith = null; public String InvoiceLineIDEndsWith = null; public String InvoiceLineIDContains = null; public String InvoiceLineIDLike = null; public ArrayList InvoiceLineIDBetween = null; public ArrayList InvoiceLineIDIn = null; public String SOHID = null; public String SOHIDStartsWith = null; public String SOHIDEndsWith = null; public String SOHIDContains = null; public String SOHIDLike = null; public ArrayList SOHIDBetween = null; public ArrayList SOHIDIn = null; public BigDecimal Cost = null; public BigDecimal CostGreaterThanOrEqualTo = null; public BigDecimal CostGreaterThan = null; public BigDecimal CostLessThan = null; public BigDecimal CostLessThanOrEqualTo = null; public BigDecimal CostNotEqualTo = null; public ArrayList CostBetween = null; public ArrayList CostIn = null; public BigDecimal SpecialPrice = null; public BigDecimal SpecialPriceGreaterThanOrEqualTo = null; public BigDecimal SpecialPriceGreaterThan = null; public BigDecimal SpecialPriceLessThan = null; public BigDecimal SpecialPriceLessThanOrEqualTo = null; public BigDecimal SpecialPriceNotEqualTo = null; public ArrayList SpecialPriceBetween = null; public ArrayList SpecialPriceIn = null; public BigDecimal Quantity = null; public BigDecimal QuantityGreaterThanOrEqualTo = null; public BigDecimal QuantityGreaterThan = null; public BigDecimal QuantityLessThan = null; public BigDecimal QuantityLessThanOrEqualTo = null; public BigDecimal QuantityNotEqualTo = null; public ArrayList QuantityBetween = null; public ArrayList QuantityIn = null; public BigDecimal TaxPaid = null; public BigDecimal TaxPaidGreaterThanOrEqualTo = null; public BigDecimal TaxPaidGreaterThan = null; public BigDecimal TaxPaidLessThan = null; public BigDecimal TaxPaidLessThanOrEqualTo = null; public BigDecimal TaxPaidNotEqualTo = null; public ArrayList TaxPaidBetween = null; public ArrayList TaxPaidIn = null; public String SerialNo = null; public String SerialNoStartsWith = null; public String SerialNoEndsWith = null; public String SerialNoContains = null; public String SerialNoLike = null; public ArrayList SerialNoBetween = null; public ArrayList SerialNoIn = null; public Date ExpiryDate = null; public Date ExpiryDateGreaterThanOrEqualTo = null; public Date ExpiryDateGreaterThan = null; public Date ExpiryDateLessThan = null; public Date ExpiryDateLessThanOrEqualTo = null; public Date ExpiryDateNotEqualTo = null; public ArrayList ExpiryDateBetween = null; public ArrayList ExpiryDateIn = null; public String BinLocation = null; public String BinLocationStartsWith = null; public String BinLocationEndsWith = null; public String BinLocationContains = null; public String BinLocationLike = null; public ArrayList BinLocationBetween = null; public ArrayList BinLocationIn = null; public String getDetailsLineID() { return DetailsLineID; } public SO_LineDetailsQuery setDetailsLineID(String value) { this.DetailsLineID = value; return this; } public String getDetailsLineIDStartsWith() { return DetailsLineIDStartsWith; } public SO_LineDetailsQuery setDetailsLineIDStartsWith(String value) { this.DetailsLineIDStartsWith = value; return this; } public String getDetailsLineIDEndsWith() { return DetailsLineIDEndsWith; } public SO_LineDetailsQuery setDetailsLineIDEndsWith(String value) { this.DetailsLineIDEndsWith = value; return this; } public String getDetailsLineIDContains() { return DetailsLineIDContains; } public SO_LineDetailsQuery setDetailsLineIDContains(String value) { this.DetailsLineIDContains = value; return this; } public String getDetailsLineIDLike() { return DetailsLineIDLike; } public SO_LineDetailsQuery setDetailsLineIDLike(String value) { this.DetailsLineIDLike = value; return this; } public ArrayList getDetailsLineIDBetween() { return DetailsLineIDBetween; } public SO_LineDetailsQuery setDetailsLineIDBetween(ArrayList value) { this.DetailsLineIDBetween = value; return this; } public ArrayList getDetailsLineIDIn() { return DetailsLineIDIn; } public SO_LineDetailsQuery setDetailsLineIDIn(ArrayList value) { this.DetailsLineIDIn = value; return this; } public String getInvoiceHistoryID() { return InvoiceHistoryID; } public SO_LineDetailsQuery setInvoiceHistoryID(String value) { this.InvoiceHistoryID = value; return this; } public String getInvoiceHistoryIDStartsWith() { return InvoiceHistoryIDStartsWith; } public SO_LineDetailsQuery setInvoiceHistoryIDStartsWith(String value) { this.InvoiceHistoryIDStartsWith = value; return this; } public String getInvoiceHistoryIDEndsWith() { return InvoiceHistoryIDEndsWith; } public SO_LineDetailsQuery setInvoiceHistoryIDEndsWith(String value) { this.InvoiceHistoryIDEndsWith = value; return this; } public String getInvoiceHistoryIDContains() { return InvoiceHistoryIDContains; } public SO_LineDetailsQuery setInvoiceHistoryIDContains(String value) { this.InvoiceHistoryIDContains = value; return this; } public String getInvoiceHistoryIDLike() { return InvoiceHistoryIDLike; } public SO_LineDetailsQuery setInvoiceHistoryIDLike(String value) { this.InvoiceHistoryIDLike = value; return this; } public ArrayList getInvoiceHistoryIDBetween() { return InvoiceHistoryIDBetween; } public SO_LineDetailsQuery setInvoiceHistoryIDBetween(ArrayList value) { this.InvoiceHistoryIDBetween = value; return this; } public ArrayList getInvoiceHistoryIDIn() { return InvoiceHistoryIDIn; } public SO_LineDetailsQuery setInvoiceHistoryIDIn(ArrayList value) { this.InvoiceHistoryIDIn = value; return this; } public String getInvoiceLineID() { return InvoiceLineID; } public SO_LineDetailsQuery setInvoiceLineID(String value) { this.InvoiceLineID = value; return this; } public String getInvoiceLineIDStartsWith() { return InvoiceLineIDStartsWith; } public SO_LineDetailsQuery setInvoiceLineIDStartsWith(String value) { this.InvoiceLineIDStartsWith = value; return this; } public String getInvoiceLineIDEndsWith() { return InvoiceLineIDEndsWith; } public SO_LineDetailsQuery setInvoiceLineIDEndsWith(String value) { this.InvoiceLineIDEndsWith = value; return this; } public String getInvoiceLineIDContains() { return InvoiceLineIDContains; } public SO_LineDetailsQuery setInvoiceLineIDContains(String value) { this.InvoiceLineIDContains = value; return this; } public String getInvoiceLineIDLike() { return InvoiceLineIDLike; } public SO_LineDetailsQuery setInvoiceLineIDLike(String value) { this.InvoiceLineIDLike = value; return this; } public ArrayList getInvoiceLineIDBetween() { return InvoiceLineIDBetween; } public SO_LineDetailsQuery setInvoiceLineIDBetween(ArrayList value) { this.InvoiceLineIDBetween = value; return this; } public ArrayList getInvoiceLineIDIn() { return InvoiceLineIDIn; } public SO_LineDetailsQuery setInvoiceLineIDIn(ArrayList value) { this.InvoiceLineIDIn = value; return this; } public String getSohid() { return SOHID; } public SO_LineDetailsQuery setSohid(String value) { this.SOHID = value; return this; } public String getSohidStartsWith() { return SOHIDStartsWith; } public SO_LineDetailsQuery setSohidStartsWith(String value) { this.SOHIDStartsWith = value; return this; } public String getSohidEndsWith() { return SOHIDEndsWith; } public SO_LineDetailsQuery setSohidEndsWith(String value) { this.SOHIDEndsWith = value; return this; } public String getSohidContains() { return SOHIDContains; } public SO_LineDetailsQuery setSohidContains(String value) { this.SOHIDContains = value; return this; } public String getSohidLike() { return SOHIDLike; } public SO_LineDetailsQuery setSohidLike(String value) { this.SOHIDLike = value; return this; } public ArrayList getSohidBetween() { return SOHIDBetween; } public SO_LineDetailsQuery setSohidBetween(ArrayList value) { this.SOHIDBetween = value; return this; } public ArrayList getSohidIn() { return SOHIDIn; } public SO_LineDetailsQuery setSohidIn(ArrayList value) { this.SOHIDIn = value; return this; } public BigDecimal getCost() { return Cost; } public SO_LineDetailsQuery setCost(BigDecimal value) { this.Cost = value; return this; } public BigDecimal getCostGreaterThanOrEqualTo() { return CostGreaterThanOrEqualTo; } public SO_LineDetailsQuery setCostGreaterThanOrEqualTo(BigDecimal value) { this.CostGreaterThanOrEqualTo = value; return this; } public BigDecimal getCostGreaterThan() { return CostGreaterThan; } public SO_LineDetailsQuery setCostGreaterThan(BigDecimal value) { this.CostGreaterThan = value; return this; } public BigDecimal getCostLessThan() { return CostLessThan; } public SO_LineDetailsQuery setCostLessThan(BigDecimal value) { this.CostLessThan = value; return this; } public BigDecimal getCostLessThanOrEqualTo() { return CostLessThanOrEqualTo; } public SO_LineDetailsQuery setCostLessThanOrEqualTo(BigDecimal value) { this.CostLessThanOrEqualTo = value; return this; } public BigDecimal getCostNotEqualTo() { return CostNotEqualTo; } public SO_LineDetailsQuery setCostNotEqualTo(BigDecimal value) { this.CostNotEqualTo = value; return this; } public ArrayList getCostBetween() { return CostBetween; } public SO_LineDetailsQuery setCostBetween(ArrayList value) { this.CostBetween = value; return this; } public ArrayList getCostIn() { return CostIn; } public SO_LineDetailsQuery setCostIn(ArrayList value) { this.CostIn = value; return this; } public BigDecimal getSpecialPrice() { return SpecialPrice; } public SO_LineDetailsQuery setSpecialPrice(BigDecimal value) { this.SpecialPrice = value; return this; } public BigDecimal getSpecialPriceGreaterThanOrEqualTo() { return SpecialPriceGreaterThanOrEqualTo; } public SO_LineDetailsQuery setSpecialPriceGreaterThanOrEqualTo(BigDecimal value) { this.SpecialPriceGreaterThanOrEqualTo = value; return this; } public BigDecimal getSpecialPriceGreaterThan() { return SpecialPriceGreaterThan; } public SO_LineDetailsQuery setSpecialPriceGreaterThan(BigDecimal value) { this.SpecialPriceGreaterThan = value; return this; } public BigDecimal getSpecialPriceLessThan() { return SpecialPriceLessThan; } public SO_LineDetailsQuery setSpecialPriceLessThan(BigDecimal value) { this.SpecialPriceLessThan = value; return this; } public BigDecimal getSpecialPriceLessThanOrEqualTo() { return SpecialPriceLessThanOrEqualTo; } public SO_LineDetailsQuery setSpecialPriceLessThanOrEqualTo(BigDecimal value) { this.SpecialPriceLessThanOrEqualTo = value; return this; } public BigDecimal getSpecialPriceNotEqualTo() { return SpecialPriceNotEqualTo; } public SO_LineDetailsQuery setSpecialPriceNotEqualTo(BigDecimal value) { this.SpecialPriceNotEqualTo = value; return this; } public ArrayList getSpecialPriceBetween() { return SpecialPriceBetween; } public SO_LineDetailsQuery setSpecialPriceBetween(ArrayList value) { this.SpecialPriceBetween = value; return this; } public ArrayList getSpecialPriceIn() { return SpecialPriceIn; } public SO_LineDetailsQuery setSpecialPriceIn(ArrayList value) { this.SpecialPriceIn = value; return this; } public BigDecimal getQuantity() { return Quantity; } public SO_LineDetailsQuery setQuantity(BigDecimal value) { this.Quantity = value; return this; } public BigDecimal getQuantityGreaterThanOrEqualTo() { return QuantityGreaterThanOrEqualTo; } public SO_LineDetailsQuery setQuantityGreaterThanOrEqualTo(BigDecimal value) { this.QuantityGreaterThanOrEqualTo = value; return this; } public BigDecimal getQuantityGreaterThan() { return QuantityGreaterThan; } public SO_LineDetailsQuery setQuantityGreaterThan(BigDecimal value) { this.QuantityGreaterThan = value; return this; } public BigDecimal getQuantityLessThan() { return QuantityLessThan; } public SO_LineDetailsQuery setQuantityLessThan(BigDecimal value) { this.QuantityLessThan = value; return this; } public BigDecimal getQuantityLessThanOrEqualTo() { return QuantityLessThanOrEqualTo; } public SO_LineDetailsQuery setQuantityLessThanOrEqualTo(BigDecimal value) { this.QuantityLessThanOrEqualTo = value; return this; } public BigDecimal getQuantityNotEqualTo() { return QuantityNotEqualTo; } public SO_LineDetailsQuery setQuantityNotEqualTo(BigDecimal value) { this.QuantityNotEqualTo = value; return this; } public ArrayList getQuantityBetween() { return QuantityBetween; } public SO_LineDetailsQuery setQuantityBetween(ArrayList value) { this.QuantityBetween = value; return this; } public ArrayList getQuantityIn() { return QuantityIn; } public SO_LineDetailsQuery setQuantityIn(ArrayList value) { this.QuantityIn = value; return this; } public BigDecimal getTaxPaid() { return TaxPaid; } public SO_LineDetailsQuery setTaxPaid(BigDecimal value) { this.TaxPaid = value; return this; } public BigDecimal getTaxPaidGreaterThanOrEqualTo() { return TaxPaidGreaterThanOrEqualTo; } public SO_LineDetailsQuery setTaxPaidGreaterThanOrEqualTo(BigDecimal value) { this.TaxPaidGreaterThanOrEqualTo = value; return this; } public BigDecimal getTaxPaidGreaterThan() { return TaxPaidGreaterThan; } public SO_LineDetailsQuery setTaxPaidGreaterThan(BigDecimal value) { this.TaxPaidGreaterThan = value; return this; } public BigDecimal getTaxPaidLessThan() { return TaxPaidLessThan; } public SO_LineDetailsQuery setTaxPaidLessThan(BigDecimal value) { this.TaxPaidLessThan = value; return this; } public BigDecimal getTaxPaidLessThanOrEqualTo() { return TaxPaidLessThanOrEqualTo; } public SO_LineDetailsQuery setTaxPaidLessThanOrEqualTo(BigDecimal value) { this.TaxPaidLessThanOrEqualTo = value; return this; } public BigDecimal getTaxPaidNotEqualTo() { return TaxPaidNotEqualTo; } public SO_LineDetailsQuery setTaxPaidNotEqualTo(BigDecimal value) { this.TaxPaidNotEqualTo = value; return this; } public ArrayList getTaxPaidBetween() { return TaxPaidBetween; } public SO_LineDetailsQuery setTaxPaidBetween(ArrayList value) { this.TaxPaidBetween = value; return this; } public ArrayList getTaxPaidIn() { return TaxPaidIn; } public SO_LineDetailsQuery setTaxPaidIn(ArrayList value) { this.TaxPaidIn = value; return this; } public String getSerialNo() { return SerialNo; } public SO_LineDetailsQuery setSerialNo(String value) { this.SerialNo = value; return this; } public String getSerialNoStartsWith() { return SerialNoStartsWith; } public SO_LineDetailsQuery setSerialNoStartsWith(String value) { this.SerialNoStartsWith = value; return this; } public String getSerialNoEndsWith() { return SerialNoEndsWith; } public SO_LineDetailsQuery setSerialNoEndsWith(String value) { this.SerialNoEndsWith = value; return this; } public String getSerialNoContains() { return SerialNoContains; } public SO_LineDetailsQuery setSerialNoContains(String value) { this.SerialNoContains = value; return this; } public String getSerialNoLike() { return SerialNoLike; } public SO_LineDetailsQuery setSerialNoLike(String value) { this.SerialNoLike = value; return this; } public ArrayList getSerialNoBetween() { return SerialNoBetween; } public SO_LineDetailsQuery setSerialNoBetween(ArrayList value) { this.SerialNoBetween = value; return this; } public ArrayList getSerialNoIn() { return SerialNoIn; } public SO_LineDetailsQuery setSerialNoIn(ArrayList value) { this.SerialNoIn = value; return this; } public Date getExpiryDate() { return ExpiryDate; } public SO_LineDetailsQuery setExpiryDate(Date value) { this.ExpiryDate = value; return this; } public Date getExpiryDateGreaterThanOrEqualTo() { return ExpiryDateGreaterThanOrEqualTo; } public SO_LineDetailsQuery setExpiryDateGreaterThanOrEqualTo(Date value) { this.ExpiryDateGreaterThanOrEqualTo = value; return this; } public Date getExpiryDateGreaterThan() { return ExpiryDateGreaterThan; } public SO_LineDetailsQuery setExpiryDateGreaterThan(Date value) { this.ExpiryDateGreaterThan = value; return this; } public Date getExpiryDateLessThan() { return ExpiryDateLessThan; } public SO_LineDetailsQuery setExpiryDateLessThan(Date value) { this.ExpiryDateLessThan = value; return this; } public Date getExpiryDateLessThanOrEqualTo() { return ExpiryDateLessThanOrEqualTo; } public SO_LineDetailsQuery setExpiryDateLessThanOrEqualTo(Date value) { this.ExpiryDateLessThanOrEqualTo = value; return this; } public Date getExpiryDateNotEqualTo() { return ExpiryDateNotEqualTo; } public SO_LineDetailsQuery setExpiryDateNotEqualTo(Date value) { this.ExpiryDateNotEqualTo = value; return this; } public ArrayList getExpiryDateBetween() { return ExpiryDateBetween; } public SO_LineDetailsQuery setExpiryDateBetween(ArrayList value) { this.ExpiryDateBetween = value; return this; } public ArrayList getExpiryDateIn() { return ExpiryDateIn; } public SO_LineDetailsQuery setExpiryDateIn(ArrayList value) { this.ExpiryDateIn = value; return this; } public String getBinLocation() { return BinLocation; } public SO_LineDetailsQuery setBinLocation(String value) { this.BinLocation = value; return this; } public String getBinLocationStartsWith() { return BinLocationStartsWith; } public SO_LineDetailsQuery setBinLocationStartsWith(String value) { this.BinLocationStartsWith = value; return this; } public String getBinLocationEndsWith() { return BinLocationEndsWith; } public SO_LineDetailsQuery setBinLocationEndsWith(String value) { this.BinLocationEndsWith = value; return this; } public String getBinLocationContains() { return BinLocationContains; } public SO_LineDetailsQuery setBinLocationContains(String value) { this.BinLocationContains = value; return this; } public String getBinLocationLike() { return BinLocationLike; } public SO_LineDetailsQuery setBinLocationLike(String value) { this.BinLocationLike = value; return this; } public ArrayList getBinLocationBetween() { return BinLocationBetween; } public SO_LineDetailsQuery setBinLocationBetween(ArrayList value) { this.BinLocationBetween = value; return this; } public ArrayList getBinLocationIn() { return BinLocationIn; } public SO_LineDetailsQuery setBinLocationIn(ArrayList value) { this.BinLocationIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class SO_LinesQuery extends QueryDb implements IReturn> { public String InvoiceLineID = null; public String InvoiceLineIDStartsWith = null; public String InvoiceLineIDEndsWith = null; public String InvoiceLineIDContains = null; public String InvoiceLineIDLike = null; public ArrayList InvoiceLineIDBetween = null; public ArrayList InvoiceLineIDIn = null; public String InvoiceHistoryID = null; public String InvoiceHistoryIDStartsWith = null; public String InvoiceHistoryIDEndsWith = null; public String InvoiceHistoryIDContains = null; public String InvoiceHistoryIDLike = null; public ArrayList InvoiceHistoryIDBetween = null; public ArrayList InvoiceHistoryIDIn = null; public Short GroupNo = null; public Short GroupNoGreaterThanOrEqualTo = null; public Short GroupNoGreaterThan = null; public Short GroupNoLessThan = null; public Short GroupNoLessThanOrEqualTo = null; public Short GroupNoNotEqualTo = null; public ArrayList GroupNoBetween = null; public ArrayList GroupNoIn = null; public Short LineNum = null; public Short LineNumGreaterThanOrEqualTo = null; public Short LineNumGreaterThan = null; public Short LineNumLessThan = null; public Short LineNumLessThanOrEqualTo = null; public Short LineNumNotEqualTo = null; public ArrayList LineNumBetween = null; public ArrayList LineNumIn = null; public Boolean CommentLine = null; public String PartNo = null; public String PartNoStartsWith = null; public String PartNoEndsWith = null; public String PartNoContains = null; public String PartNoLike = null; public ArrayList PartNoBetween = null; public ArrayList PartNoIn = null; public String Description = null; public String DescriptionStartsWith = null; public String DescriptionEndsWith = null; public String DescriptionContains = null; public String DescriptionLike = null; public ArrayList DescriptionBetween = null; public ArrayList DescriptionIn = null; public Short PhysicalItem = null; public Short PhysicalItemGreaterThanOrEqualTo = null; public Short PhysicalItemGreaterThan = null; public Short PhysicalItemLessThan = null; public Short PhysicalItemLessThanOrEqualTo = null; public Short PhysicalItemNotEqualTo = null; public ArrayList PhysicalItemBetween = null; public ArrayList PhysicalItemIn = null; public BigDecimal ItemWeight = null; public BigDecimal ItemWeightGreaterThanOrEqualTo = null; public BigDecimal ItemWeightGreaterThan = null; public BigDecimal ItemWeightLessThan = null; public BigDecimal ItemWeightLessThanOrEqualTo = null; public BigDecimal ItemWeightNotEqualTo = null; public ArrayList ItemWeightBetween = null; public ArrayList ItemWeightIn = null; public BigDecimal ItemCubic = null; public BigDecimal ItemCubicGreaterThanOrEqualTo = null; public BigDecimal ItemCubicGreaterThan = null; public BigDecimal ItemCubicLessThan = null; public BigDecimal ItemCubicLessThanOrEqualTo = null; public BigDecimal ItemCubicNotEqualTo = null; public ArrayList ItemCubicBetween = null; public ArrayList ItemCubicIn = null; public String TaxID = null; public String TaxIDStartsWith = null; public String TaxIDEndsWith = null; public String TaxIDContains = null; public String TaxIDLike = null; public ArrayList TaxIDBetween = null; public ArrayList TaxIDIn = null; public String ClassDescription = null; public String ClassDescriptionStartsWith = null; public String ClassDescriptionEndsWith = null; public String ClassDescriptionContains = null; public String ClassDescriptionLike = null; public ArrayList ClassDescriptionBetween = null; public ArrayList ClassDescriptionIn = null; public String Cat1Description = null; public String Cat1DescriptionStartsWith = null; public String Cat1DescriptionEndsWith = null; public String Cat1DescriptionContains = null; public String Cat1DescriptionLike = null; public ArrayList Cat1DescriptionBetween = null; public ArrayList Cat1DescriptionIn = null; public String Cat2Description = null; public String Cat2DescriptionStartsWith = null; public String Cat2DescriptionEndsWith = null; public String Cat2DescriptionContains = null; public String Cat2DescriptionLike = null; public ArrayList Cat2DescriptionBetween = null; public ArrayList Cat2DescriptionIn = null; public String Cat3Description = null; public String Cat3DescriptionStartsWith = null; public String Cat3DescriptionEndsWith = null; public String Cat3DescriptionContains = null; public String Cat3DescriptionLike = null; public ArrayList Cat3DescriptionBetween = null; public ArrayList Cat3DescriptionIn = null; public String Units = null; public String UnitsStartsWith = null; public String UnitsEndsWith = null; public String UnitsContains = null; public String UnitsLike = null; public ArrayList UnitsBetween = null; public ArrayList UnitsIn = null; public BigDecimal CostIn = null; public BigDecimal CostInGreaterThanOrEqualTo = null; public BigDecimal CostInGreaterThan = null; public BigDecimal CostInLessThan = null; public BigDecimal CostInLessThanOrEqualTo = null; public BigDecimal CostInNotEqualTo = null; public ArrayList CostInBetween = null; public ArrayList CostInIn = null; public BigDecimal DefaultPrice = null; public BigDecimal DefaultPriceGreaterThanOrEqualTo = null; public BigDecimal DefaultPriceGreaterThan = null; public BigDecimal DefaultPriceLessThan = null; public BigDecimal DefaultPriceLessThanOrEqualTo = null; public BigDecimal DefaultPriceNotEqualTo = null; public ArrayList DefaultPriceBetween = null; public ArrayList DefaultPriceIn = null; public BigDecimal ItemPrice = null; public BigDecimal ItemPriceGreaterThanOrEqualTo = null; public BigDecimal ItemPriceGreaterThan = null; public BigDecimal ItemPriceLessThan = null; public BigDecimal ItemPriceLessThanOrEqualTo = null; public BigDecimal ItemPriceNotEqualTo = null; public ArrayList ItemPriceBetween = null; public ArrayList ItemPriceIn = null; public BigDecimal Discount = null; public BigDecimal DiscountGreaterThanOrEqualTo = null; public BigDecimal DiscountGreaterThan = null; public BigDecimal DiscountLessThan = null; public BigDecimal DiscountLessThanOrEqualTo = null; public BigDecimal DiscountNotEqualTo = null; public ArrayList DiscountBetween = null; public ArrayList DiscountIn = null; public BigDecimal InvoicePrice = null; public BigDecimal InvoicePriceGreaterThanOrEqualTo = null; public BigDecimal InvoicePriceGreaterThan = null; public BigDecimal InvoicePriceLessThan = null; public BigDecimal InvoicePriceLessThanOrEqualTo = null; public BigDecimal InvoicePriceNotEqualTo = null; public ArrayList InvoicePriceBetween = null; public ArrayList InvoicePriceIn = null; public BigDecimal RRPPrice = null; public BigDecimal RRPPriceGreaterThanOrEqualTo = null; public BigDecimal RRPPriceGreaterThan = null; public BigDecimal RRPPriceLessThan = null; public BigDecimal RRPPriceLessThanOrEqualTo = null; public BigDecimal RRPPriceNotEqualTo = null; public ArrayList RRPPriceBetween = null; public ArrayList RRPPriceIn = null; public BigDecimal TaxToCharge = null; public BigDecimal TaxToChargeGreaterThanOrEqualTo = null; public BigDecimal TaxToChargeGreaterThan = null; public BigDecimal TaxToChargeLessThan = null; public BigDecimal TaxToChargeLessThanOrEqualTo = null; public BigDecimal TaxToChargeNotEqualTo = null; public ArrayList TaxToChargeBetween = null; public ArrayList TaxToChargeIn = null; public BigDecimal TaxToPay = null; public BigDecimal TaxToPayGreaterThanOrEqualTo = null; public BigDecimal TaxToPayGreaterThan = null; public BigDecimal TaxToPayLessThan = null; public BigDecimal TaxToPayLessThanOrEqualTo = null; public BigDecimal TaxToPayNotEqualTo = null; public ArrayList TaxToPayBetween = null; public ArrayList TaxToPayIn = null; public BigDecimal CurrentLineTotal = null; public BigDecimal CurrentLineTotalGreaterThanOrEqualTo = null; public BigDecimal CurrentLineTotalGreaterThan = null; public BigDecimal CurrentLineTotalLessThan = null; public BigDecimal CurrentLineTotalLessThanOrEqualTo = null; public BigDecimal CurrentLineTotalNotEqualTo = null; public ArrayList CurrentLineTotalBetween = null; public ArrayList CurrentLineTotalIn = null; public BigDecimal QuantityOrdered = null; public BigDecimal QuantityOrderedGreaterThanOrEqualTo = null; public BigDecimal QuantityOrderedGreaterThan = null; public BigDecimal QuantityOrderedLessThan = null; public BigDecimal QuantityOrderedLessThanOrEqualTo = null; public BigDecimal QuantityOrderedNotEqualTo = null; public ArrayList QuantityOrderedBetween = null; public ArrayList QuantityOrderedIn = null; public BigDecimal QuantityPrevDel = null; public BigDecimal QuantityPrevDelGreaterThanOrEqualTo = null; public BigDecimal QuantityPrevDelGreaterThan = null; public BigDecimal QuantityPrevDelLessThan = null; public BigDecimal QuantityPrevDelLessThanOrEqualTo = null; public BigDecimal QuantityPrevDelNotEqualTo = null; public ArrayList QuantityPrevDelBetween = null; public ArrayList QuantityPrevDelIn = null; public BigDecimal QuantityThisDel = null; public BigDecimal QuantityThisDelGreaterThanOrEqualTo = null; public BigDecimal QuantityThisDelGreaterThan = null; public BigDecimal QuantityThisDelLessThan = null; public BigDecimal QuantityThisDelLessThanOrEqualTo = null; public BigDecimal QuantityThisDelNotEqualTo = null; public ArrayList QuantityThisDelBetween = null; public ArrayList QuantityThisDelIn = null; public BigDecimal QuantityBackOrd = null; public BigDecimal QuantityBackOrdGreaterThanOrEqualTo = null; public BigDecimal QuantityBackOrdGreaterThan = null; public BigDecimal QuantityBackOrdLessThan = null; public BigDecimal QuantityBackOrdLessThanOrEqualTo = null; public BigDecimal QuantityBackOrdNotEqualTo = null; public ArrayList QuantityBackOrdBetween = null; public ArrayList QuantityBackOrdIn = null; public String HistoryText_Comment = null; public String HistoryText_CommentStartsWith = null; public String HistoryText_CommentEndsWith = null; public String HistoryText_CommentContains = null; public String HistoryText_CommentLike = null; public ArrayList HistoryText_CommentBetween = null; public ArrayList HistoryText_CommentIn = null; public Boolean Discountable = null; public Boolean TaxInc = null; public BigDecimal DirectTax = null; public BigDecimal DirectTaxGreaterThanOrEqualTo = null; public BigDecimal DirectTaxGreaterThan = null; public BigDecimal DirectTaxLessThan = null; public BigDecimal DirectTaxLessThanOrEqualTo = null; public BigDecimal DirectTaxNotEqualTo = null; public ArrayList DirectTaxBetween = null; public ArrayList DirectTaxIn = null; public Short DecimalPlaces = null; public Short DecimalPlacesGreaterThanOrEqualTo = null; public Short DecimalPlacesGreaterThan = null; public Short DecimalPlacesLessThan = null; public Short DecimalPlacesLessThanOrEqualTo = null; public Short DecimalPlacesNotEqualTo = null; public ArrayList DecimalPlacesBetween = null; public ArrayList DecimalPlacesIn = null; public BigDecimal MinimumGP = null; public BigDecimal MinimumGPGreaterThanOrEqualTo = null; public BigDecimal MinimumGPGreaterThan = null; public BigDecimal MinimumGPLessThan = null; public BigDecimal MinimumGPLessThanOrEqualTo = null; public BigDecimal MinimumGPNotEqualTo = null; public ArrayList MinimumGPBetween = null; public ArrayList MinimumGPIn = null; public String DebitLedger = null; public String DebitLedgerStartsWith = null; public String DebitLedgerEndsWith = null; public String DebitLedgerContains = null; public String DebitLedgerLike = null; public ArrayList DebitLedgerBetween = null; public ArrayList DebitLedgerIn = null; public String CreditLedger = null; public String CreditLedgerStartsWith = null; public String CreditLedgerEndsWith = null; public String CreditLedgerContains = null; public String CreditLedgerLike = null; public ArrayList CreditLedgerBetween = null; public ArrayList CreditLedgerIn = null; public Boolean NonStock = null; public String InventoryID = null; public String InventoryIDStartsWith = null; public String InventoryIDEndsWith = null; public String InventoryIDContains = null; public String InventoryIDLike = null; public ArrayList InventoryIDBetween = null; public ArrayList InventoryIDIn = null; public Boolean UseSerialNo = null; public Boolean Backorderable = null; public Boolean Picked = null; public BigDecimal TaxPaid = null; public BigDecimal TaxPaidGreaterThanOrEqualTo = null; public BigDecimal TaxPaidGreaterThan = null; public BigDecimal TaxPaidLessThan = null; public BigDecimal TaxPaidLessThanOrEqualTo = null; public BigDecimal TaxPaidNotEqualTo = null; public ArrayList TaxPaidBetween = null; public ArrayList TaxPaidIn = null; public BigDecimal TaxRate = null; public BigDecimal TaxRateGreaterThanOrEqualTo = null; public BigDecimal TaxRateGreaterThan = null; public BigDecimal TaxRateLessThan = null; public BigDecimal TaxRateLessThanOrEqualTo = null; public BigDecimal TaxRateNotEqualTo = null; public ArrayList TaxRateBetween = null; public ArrayList TaxRateIn = null; public Boolean UsingSpecialPrice = null; public BigDecimal EstBOValue = null; public BigDecimal EstBOValueGreaterThanOrEqualTo = null; public BigDecimal EstBOValueGreaterThan = null; public BigDecimal EstBOValueLessThan = null; public BigDecimal EstBOValueLessThanOrEqualTo = null; public BigDecimal EstBOValueNotEqualTo = null; public ArrayList EstBOValueBetween = null; public ArrayList EstBOValueIn = null; public BigDecimal ItemTaxToCharge = null; public BigDecimal ItemTaxToChargeGreaterThanOrEqualTo = null; public BigDecimal ItemTaxToChargeGreaterThan = null; public BigDecimal ItemTaxToChargeLessThan = null; public BigDecimal ItemTaxToChargeLessThanOrEqualTo = null; public BigDecimal ItemTaxToChargeNotEqualTo = null; public ArrayList ItemTaxToChargeBetween = null; public ArrayList ItemTaxToChargeIn = null; public BigDecimal ItemTaxToPay = null; public BigDecimal ItemTaxToPayGreaterThanOrEqualTo = null; public BigDecimal ItemTaxToPayGreaterThan = null; public BigDecimal ItemTaxToPayLessThan = null; public BigDecimal ItemTaxToPayLessThanOrEqualTo = null; public BigDecimal ItemTaxToPayNotEqualTo = null; public ArrayList ItemTaxToPayBetween = null; public ArrayList ItemTaxToPayIn = null; public String LineLinkID = null; public String LineLinkIDStartsWith = null; public String LineLinkIDEndsWith = null; public String LineLinkIDContains = null; public String LineLinkIDLike = null; public ArrayList LineLinkIDBetween = null; public ArrayList LineLinkIDIn = null; public Short KittingStatus = null; public Short KittingStatusGreaterThanOrEqualTo = null; public Short KittingStatusGreaterThan = null; public Short KittingStatusLessThan = null; public Short KittingStatusLessThanOrEqualTo = null; public Short KittingStatusNotEqualTo = null; public ArrayList KittingStatusBetween = null; public ArrayList KittingStatusIn = null; public BigDecimal KittingUnits = null; public BigDecimal KittingUnitsGreaterThanOrEqualTo = null; public BigDecimal KittingUnitsGreaterThan = null; public BigDecimal KittingUnitsLessThan = null; public BigDecimal KittingUnitsLessThanOrEqualTo = null; public BigDecimal KittingUnitsNotEqualTo = null; public ArrayList KittingUnitsBetween = null; public ArrayList KittingUnitsIn = null; public String JobConnectorID = null; public String JobConnectorIDStartsWith = null; public String JobConnectorIDEndsWith = null; public String JobConnectorIDContains = null; public String JobConnectorIDLike = null; public ArrayList JobConnectorIDBetween = null; public ArrayList JobConnectorIDIn = null; public Short KitStyle = null; public Short KitStyleGreaterThanOrEqualTo = null; public Short KitStyleGreaterThan = null; public Short KitStyleLessThan = null; public Short KitStyleLessThanOrEqualTo = null; public Short KitStyleNotEqualTo = null; public ArrayList KitStyleBetween = null; public ArrayList KitStyleIn = null; public BigDecimal DiscountPercentage = null; public BigDecimal DiscountPercentageGreaterThanOrEqualTo = null; public BigDecimal DiscountPercentageGreaterThan = null; public BigDecimal DiscountPercentageLessThan = null; public BigDecimal DiscountPercentageLessThanOrEqualTo = null; public BigDecimal DiscountPercentageNotEqualTo = null; public ArrayList DiscountPercentageBetween = null; public ArrayList DiscountPercentageIn = null; public BigDecimal SalesmanCost = null; public BigDecimal SalesmanCostGreaterThanOrEqualTo = null; public BigDecimal SalesmanCostGreaterThan = null; public BigDecimal SalesmanCostLessThan = null; public BigDecimal SalesmanCostLessThanOrEqualTo = null; public BigDecimal SalesmanCostNotEqualTo = null; public ArrayList SalesmanCostBetween = null; public ArrayList SalesmanCostIn = null; public BigDecimal LineCost = null; public BigDecimal LineCostGreaterThanOrEqualTo = null; public BigDecimal LineCostGreaterThan = null; public BigDecimal LineCostLessThan = null; public BigDecimal LineCostLessThanOrEqualTo = null; public BigDecimal LineCostNotEqualTo = null; public ArrayList LineCostBetween = null; public ArrayList LineCostIn = null; public String OrigInvoiceNo = null; public String OrigInvoiceNoStartsWith = null; public String OrigInvoiceNoEndsWith = null; public String OrigInvoiceNoContains = null; public String OrigInvoiceNoLike = null; public ArrayList OrigInvoiceNoBetween = null; public ArrayList OrigInvoiceNoIn = null; public BigDecimal ItemPriceIncGST = null; public BigDecimal ItemPriceIncGSTGreaterThanOrEqualTo = null; public BigDecimal ItemPriceIncGSTGreaterThan = null; public BigDecimal ItemPriceIncGSTLessThan = null; public BigDecimal ItemPriceIncGSTLessThanOrEqualTo = null; public BigDecimal ItemPriceIncGSTNotEqualTo = null; public ArrayList ItemPriceIncGSTBetween = null; public ArrayList ItemPriceIncGSTIn = null; public BigDecimal ItemPriceUnDiscounted = null; public BigDecimal ItemPriceUnDiscountedGreaterThanOrEqualTo = null; public BigDecimal ItemPriceUnDiscountedGreaterThan = null; public BigDecimal ItemPriceUnDiscountedLessThan = null; public BigDecimal ItemPriceUnDiscountedLessThanOrEqualTo = null; public BigDecimal ItemPriceUnDiscountedNotEqualTo = null; public ArrayList ItemPriceUnDiscountedBetween = null; public ArrayList ItemPriceUnDiscountedIn = null; public BigDecimal DemandQuantity = null; public BigDecimal DemandQuantityGreaterThanOrEqualTo = null; public BigDecimal DemandQuantityGreaterThan = null; public BigDecimal DemandQuantityLessThan = null; public BigDecimal DemandQuantityLessThanOrEqualTo = null; public BigDecimal DemandQuantityNotEqualTo = null; public ArrayList DemandQuantityBetween = null; public ArrayList DemandQuantityIn = null; public String NonStockLedgerSalesAccID = null; public String NonStockLedgerSalesAccIDStartsWith = null; public String NonStockLedgerSalesAccIDEndsWith = null; public String NonStockLedgerSalesAccIDContains = null; public String NonStockLedgerSalesAccIDLike = null; public ArrayList NonStockLedgerSalesAccIDBetween = null; public ArrayList NonStockLedgerSalesAccIDIn = null; public String KitLineID = null; public String KitLineIDStartsWith = null; public String KitLineIDEndsWith = null; public String KitLineIDContains = null; public String KitLineIDLike = null; public ArrayList KitLineIDBetween = null; public ArrayList KitLineIDIn = null; public String JobCostNo = null; public String JobCostNoStartsWith = null; public String JobCostNoEndsWith = null; public String JobCostNoContains = null; public String JobCostNoLike = null; public ArrayList JobCostNoBetween = null; public ArrayList JobCostNoIn = null; public Boolean SellPriceIncTax = null; public Short JobInvoiceItem = null; public Short JobInvoiceItemGreaterThanOrEqualTo = null; public Short JobInvoiceItemGreaterThan = null; public Short JobInvoiceItemLessThan = null; public Short JobInvoiceItemLessThanOrEqualTo = null; public Short JobInvoiceItemNotEqualTo = null; public ArrayList JobInvoiceItemBetween = null; public ArrayList JobInvoiceItemIn = null; public BigDecimal QuantityPrevDemand = null; public BigDecimal QuantityPrevDemandGreaterThanOrEqualTo = null; public BigDecimal QuantityPrevDemandGreaterThan = null; public BigDecimal QuantityPrevDemandLessThan = null; public BigDecimal QuantityPrevDemandLessThanOrEqualTo = null; public BigDecimal QuantityPrevDemandNotEqualTo = null; public ArrayList QuantityPrevDemandBetween = null; public ArrayList QuantityPrevDemandIn = null; public String JobID = null; public String JobIDStartsWith = null; public String JobIDEndsWith = null; public String JobIDContains = null; public String JobIDLike = null; public ArrayList JobIDBetween = null; public ArrayList JobIDIn = null; public String CostCentreID = null; public String CostCentreIDStartsWith = null; public String CostCentreIDEndsWith = null; public String CostCentreIDContains = null; public String CostCentreIDLike = null; public ArrayList CostCentreIDBetween = null; public ArrayList CostCentreIDIn = null; public String StageID = null; public String StageIDStartsWith = null; public String StageIDEndsWith = null; public String StageIDContains = null; public String StageIDLike = null; public ArrayList StageIDBetween = null; public ArrayList StageIDIn = null; public BigDecimal UserDefinedFloat1 = null; public BigDecimal UserDefinedFloat1GreaterThanOrEqualTo = null; public BigDecimal UserDefinedFloat1GreaterThan = null; public BigDecimal UserDefinedFloat1LessThan = null; public BigDecimal UserDefinedFloat1LessThanOrEqualTo = null; public BigDecimal UserDefinedFloat1NotEqualTo = null; public ArrayList UserDefinedFloat1Between = null; public ArrayList UserDefinedFloat1In = null; public BigDecimal UserDefinedFloat2 = null; public BigDecimal UserDefinedFloat2GreaterThanOrEqualTo = null; public BigDecimal UserDefinedFloat2GreaterThan = null; public BigDecimal UserDefinedFloat2LessThan = null; public BigDecimal UserDefinedFloat2LessThanOrEqualTo = null; public BigDecimal UserDefinedFloat2NotEqualTo = null; public ArrayList UserDefinedFloat2Between = null; public ArrayList UserDefinedFloat2In = null; public BigDecimal UserDefinedFloat3 = null; public BigDecimal UserDefinedFloat3GreaterThanOrEqualTo = null; public BigDecimal UserDefinedFloat3GreaterThan = null; public BigDecimal UserDefinedFloat3LessThan = null; public BigDecimal UserDefinedFloat3LessThanOrEqualTo = null; public BigDecimal UserDefinedFloat3NotEqualTo = null; public ArrayList UserDefinedFloat3Between = null; public ArrayList UserDefinedFloat3In = null; public Date ForwardOrderDate = null; public Date ForwardOrderDateGreaterThanOrEqualTo = null; public Date ForwardOrderDateGreaterThan = null; public Date ForwardOrderDateLessThan = null; public Date ForwardOrderDateLessThanOrEqualTo = null; public Date ForwardOrderDateNotEqualTo = null; public ArrayList ForwardOrderDateBetween = null; public ArrayList ForwardOrderDateIn = null; public Date ScheduledDate = null; public Date ScheduledDateGreaterThanOrEqualTo = null; public Date ScheduledDateGreaterThan = null; public Date ScheduledDateLessThan = null; public Date ScheduledDateLessThanOrEqualTo = null; public Date ScheduledDateNotEqualTo = null; public ArrayList ScheduledDateBetween = null; public ArrayList ScheduledDateIn = null; public Boolean DeliverStock = null; public Boolean FixSellPrice = null; public Boolean TypeKitRounding = null; public String EDIStoreLocationCode = null; public String EDIStoreLocationCodeStartsWith = null; public String EDIStoreLocationCodeEndsWith = null; public String EDIStoreLocationCodeContains = null; public String EDIStoreLocationCodeLike = null; public ArrayList EDIStoreLocationCodeBetween = null; public ArrayList EDIStoreLocationCodeIn = null; public String EDIDCLocationCode = null; public String EDIDCLocationCodeStartsWith = null; public String EDIDCLocationCodeEndsWith = null; public String EDIDCLocationCodeContains = null; public String EDIDCLocationCodeLike = null; public ArrayList EDIDCLocationCodeBetween = null; public ArrayList EDIDCLocationCodeIn = null; public String SM_Parts_RecID = null; public String SM_Parts_RecIDStartsWith = null; public String SM_Parts_RecIDEndsWith = null; public String SM_Parts_RecIDContains = null; public String SM_Parts_RecIDLike = null; public ArrayList SM_Parts_RecIDBetween = null; public ArrayList SM_Parts_RecIDIn = null; public String SM_Labour_RecID = null; public String SM_Labour_RecIDStartsWith = null; public String SM_Labour_RecIDEndsWith = null; public String SM_Labour_RecIDContains = null; public String SM_Labour_RecIDLike = null; public ArrayList SM_Labour_RecIDBetween = null; public ArrayList SM_Labour_RecIDIn = null; public UUID IN_UnitOfMeasure_RecID = null; public ArrayList IN_UnitOfMeasure_RecIDIn = null; public String getInvoiceLineID() { return InvoiceLineID; } public SO_LinesQuery setInvoiceLineID(String value) { this.InvoiceLineID = value; return this; } public String getInvoiceLineIDStartsWith() { return InvoiceLineIDStartsWith; } public SO_LinesQuery setInvoiceLineIDStartsWith(String value) { this.InvoiceLineIDStartsWith = value; return this; } public String getInvoiceLineIDEndsWith() { return InvoiceLineIDEndsWith; } public SO_LinesQuery setInvoiceLineIDEndsWith(String value) { this.InvoiceLineIDEndsWith = value; return this; } public String getInvoiceLineIDContains() { return InvoiceLineIDContains; } public SO_LinesQuery setInvoiceLineIDContains(String value) { this.InvoiceLineIDContains = value; return this; } public String getInvoiceLineIDLike() { return InvoiceLineIDLike; } public SO_LinesQuery setInvoiceLineIDLike(String value) { this.InvoiceLineIDLike = value; return this; } public ArrayList getInvoiceLineIDBetween() { return InvoiceLineIDBetween; } public SO_LinesQuery setInvoiceLineIDBetween(ArrayList value) { this.InvoiceLineIDBetween = value; return this; } public ArrayList getInvoiceLineIDIn() { return InvoiceLineIDIn; } public SO_LinesQuery setInvoiceLineIDIn(ArrayList value) { this.InvoiceLineIDIn = value; return this; } public String getInvoiceHistoryID() { return InvoiceHistoryID; } public SO_LinesQuery setInvoiceHistoryID(String value) { this.InvoiceHistoryID = value; return this; } public String getInvoiceHistoryIDStartsWith() { return InvoiceHistoryIDStartsWith; } public SO_LinesQuery setInvoiceHistoryIDStartsWith(String value) { this.InvoiceHistoryIDStartsWith = value; return this; } public String getInvoiceHistoryIDEndsWith() { return InvoiceHistoryIDEndsWith; } public SO_LinesQuery setInvoiceHistoryIDEndsWith(String value) { this.InvoiceHistoryIDEndsWith = value; return this; } public String getInvoiceHistoryIDContains() { return InvoiceHistoryIDContains; } public SO_LinesQuery setInvoiceHistoryIDContains(String value) { this.InvoiceHistoryIDContains = value; return this; } public String getInvoiceHistoryIDLike() { return InvoiceHistoryIDLike; } public SO_LinesQuery setInvoiceHistoryIDLike(String value) { this.InvoiceHistoryIDLike = value; return this; } public ArrayList getInvoiceHistoryIDBetween() { return InvoiceHistoryIDBetween; } public SO_LinesQuery setInvoiceHistoryIDBetween(ArrayList value) { this.InvoiceHistoryIDBetween = value; return this; } public ArrayList getInvoiceHistoryIDIn() { return InvoiceHistoryIDIn; } public SO_LinesQuery setInvoiceHistoryIDIn(ArrayList value) { this.InvoiceHistoryIDIn = value; return this; } public Short getGroupNo() { return GroupNo; } public SO_LinesQuery setGroupNo(Short value) { this.GroupNo = value; return this; } public Short getGroupNoGreaterThanOrEqualTo() { return GroupNoGreaterThanOrEqualTo; } public SO_LinesQuery setGroupNoGreaterThanOrEqualTo(Short value) { this.GroupNoGreaterThanOrEqualTo = value; return this; } public Short getGroupNoGreaterThan() { return GroupNoGreaterThan; } public SO_LinesQuery setGroupNoGreaterThan(Short value) { this.GroupNoGreaterThan = value; return this; } public Short getGroupNoLessThan() { return GroupNoLessThan; } public SO_LinesQuery setGroupNoLessThan(Short value) { this.GroupNoLessThan = value; return this; } public Short getGroupNoLessThanOrEqualTo() { return GroupNoLessThanOrEqualTo; } public SO_LinesQuery setGroupNoLessThanOrEqualTo(Short value) { this.GroupNoLessThanOrEqualTo = value; return this; } public Short getGroupNoNotEqualTo() { return GroupNoNotEqualTo; } public SO_LinesQuery setGroupNoNotEqualTo(Short value) { this.GroupNoNotEqualTo = value; return this; } public ArrayList getGroupNoBetween() { return GroupNoBetween; } public SO_LinesQuery setGroupNoBetween(ArrayList value) { this.GroupNoBetween = value; return this; } public ArrayList getGroupNoIn() { return GroupNoIn; } public SO_LinesQuery setGroupNoIn(ArrayList value) { this.GroupNoIn = value; return this; } public Short getLineNum() { return LineNum; } public SO_LinesQuery setLineNum(Short value) { this.LineNum = value; return this; } public Short getLineNumGreaterThanOrEqualTo() { return LineNumGreaterThanOrEqualTo; } public SO_LinesQuery setLineNumGreaterThanOrEqualTo(Short value) { this.LineNumGreaterThanOrEqualTo = value; return this; } public Short getLineNumGreaterThan() { return LineNumGreaterThan; } public SO_LinesQuery setLineNumGreaterThan(Short value) { this.LineNumGreaterThan = value; return this; } public Short getLineNumLessThan() { return LineNumLessThan; } public SO_LinesQuery setLineNumLessThan(Short value) { this.LineNumLessThan = value; return this; } public Short getLineNumLessThanOrEqualTo() { return LineNumLessThanOrEqualTo; } public SO_LinesQuery setLineNumLessThanOrEqualTo(Short value) { this.LineNumLessThanOrEqualTo = value; return this; } public Short getLineNumNotEqualTo() { return LineNumNotEqualTo; } public SO_LinesQuery setLineNumNotEqualTo(Short value) { this.LineNumNotEqualTo = value; return this; } public ArrayList getLineNumBetween() { return LineNumBetween; } public SO_LinesQuery setLineNumBetween(ArrayList value) { this.LineNumBetween = value; return this; } public ArrayList getLineNumIn() { return LineNumIn; } public SO_LinesQuery setLineNumIn(ArrayList value) { this.LineNumIn = value; return this; } public Boolean isCommentLine() { return CommentLine; } public SO_LinesQuery setCommentLine(Boolean value) { this.CommentLine = value; return this; } public String getPartNo() { return PartNo; } public SO_LinesQuery setPartNo(String value) { this.PartNo = value; return this; } public String getPartNoStartsWith() { return PartNoStartsWith; } public SO_LinesQuery setPartNoStartsWith(String value) { this.PartNoStartsWith = value; return this; } public String getPartNoEndsWith() { return PartNoEndsWith; } public SO_LinesQuery setPartNoEndsWith(String value) { this.PartNoEndsWith = value; return this; } public String getPartNoContains() { return PartNoContains; } public SO_LinesQuery setPartNoContains(String value) { this.PartNoContains = value; return this; } public String getPartNoLike() { return PartNoLike; } public SO_LinesQuery setPartNoLike(String value) { this.PartNoLike = value; return this; } public ArrayList getPartNoBetween() { return PartNoBetween; } public SO_LinesQuery setPartNoBetween(ArrayList value) { this.PartNoBetween = value; return this; } public ArrayList getPartNoIn() { return PartNoIn; } public SO_LinesQuery setPartNoIn(ArrayList value) { this.PartNoIn = value; return this; } public String getDescription() { return Description; } public SO_LinesQuery setDescription(String value) { this.Description = value; return this; } public String getDescriptionStartsWith() { return DescriptionStartsWith; } public SO_LinesQuery setDescriptionStartsWith(String value) { this.DescriptionStartsWith = value; return this; } public String getDescriptionEndsWith() { return DescriptionEndsWith; } public SO_LinesQuery setDescriptionEndsWith(String value) { this.DescriptionEndsWith = value; return this; } public String getDescriptionContains() { return DescriptionContains; } public SO_LinesQuery setDescriptionContains(String value) { this.DescriptionContains = value; return this; } public String getDescriptionLike() { return DescriptionLike; } public SO_LinesQuery setDescriptionLike(String value) { this.DescriptionLike = value; return this; } public ArrayList getDescriptionBetween() { return DescriptionBetween; } public SO_LinesQuery setDescriptionBetween(ArrayList value) { this.DescriptionBetween = value; return this; } public ArrayList getDescriptionIn() { return DescriptionIn; } public SO_LinesQuery setDescriptionIn(ArrayList value) { this.DescriptionIn = value; return this; } public Short getPhysicalItem() { return PhysicalItem; } public SO_LinesQuery setPhysicalItem(Short value) { this.PhysicalItem = value; return this; } public Short getPhysicalItemGreaterThanOrEqualTo() { return PhysicalItemGreaterThanOrEqualTo; } public SO_LinesQuery setPhysicalItemGreaterThanOrEqualTo(Short value) { this.PhysicalItemGreaterThanOrEqualTo = value; return this; } public Short getPhysicalItemGreaterThan() { return PhysicalItemGreaterThan; } public SO_LinesQuery setPhysicalItemGreaterThan(Short value) { this.PhysicalItemGreaterThan = value; return this; } public Short getPhysicalItemLessThan() { return PhysicalItemLessThan; } public SO_LinesQuery setPhysicalItemLessThan(Short value) { this.PhysicalItemLessThan = value; return this; } public Short getPhysicalItemLessThanOrEqualTo() { return PhysicalItemLessThanOrEqualTo; } public SO_LinesQuery setPhysicalItemLessThanOrEqualTo(Short value) { this.PhysicalItemLessThanOrEqualTo = value; return this; } public Short getPhysicalItemNotEqualTo() { return PhysicalItemNotEqualTo; } public SO_LinesQuery setPhysicalItemNotEqualTo(Short value) { this.PhysicalItemNotEqualTo = value; return this; } public ArrayList getPhysicalItemBetween() { return PhysicalItemBetween; } public SO_LinesQuery setPhysicalItemBetween(ArrayList value) { this.PhysicalItemBetween = value; return this; } public ArrayList getPhysicalItemIn() { return PhysicalItemIn; } public SO_LinesQuery setPhysicalItemIn(ArrayList value) { this.PhysicalItemIn = value; return this; } public BigDecimal getItemWeight() { return ItemWeight; } public SO_LinesQuery setItemWeight(BigDecimal value) { this.ItemWeight = value; return this; } public BigDecimal getItemWeightGreaterThanOrEqualTo() { return ItemWeightGreaterThanOrEqualTo; } public SO_LinesQuery setItemWeightGreaterThanOrEqualTo(BigDecimal value) { this.ItemWeightGreaterThanOrEqualTo = value; return this; } public BigDecimal getItemWeightGreaterThan() { return ItemWeightGreaterThan; } public SO_LinesQuery setItemWeightGreaterThan(BigDecimal value) { this.ItemWeightGreaterThan = value; return this; } public BigDecimal getItemWeightLessThan() { return ItemWeightLessThan; } public SO_LinesQuery setItemWeightLessThan(BigDecimal value) { this.ItemWeightLessThan = value; return this; } public BigDecimal getItemWeightLessThanOrEqualTo() { return ItemWeightLessThanOrEqualTo; } public SO_LinesQuery setItemWeightLessThanOrEqualTo(BigDecimal value) { this.ItemWeightLessThanOrEqualTo = value; return this; } public BigDecimal getItemWeightNotEqualTo() { return ItemWeightNotEqualTo; } public SO_LinesQuery setItemWeightNotEqualTo(BigDecimal value) { this.ItemWeightNotEqualTo = value; return this; } public ArrayList getItemWeightBetween() { return ItemWeightBetween; } public SO_LinesQuery setItemWeightBetween(ArrayList value) { this.ItemWeightBetween = value; return this; } public ArrayList getItemWeightIn() { return ItemWeightIn; } public SO_LinesQuery setItemWeightIn(ArrayList value) { this.ItemWeightIn = value; return this; } public BigDecimal getItemCubic() { return ItemCubic; } public SO_LinesQuery setItemCubic(BigDecimal value) { this.ItemCubic = value; return this; } public BigDecimal getItemCubicGreaterThanOrEqualTo() { return ItemCubicGreaterThanOrEqualTo; } public SO_LinesQuery setItemCubicGreaterThanOrEqualTo(BigDecimal value) { this.ItemCubicGreaterThanOrEqualTo = value; return this; } public BigDecimal getItemCubicGreaterThan() { return ItemCubicGreaterThan; } public SO_LinesQuery setItemCubicGreaterThan(BigDecimal value) { this.ItemCubicGreaterThan = value; return this; } public BigDecimal getItemCubicLessThan() { return ItemCubicLessThan; } public SO_LinesQuery setItemCubicLessThan(BigDecimal value) { this.ItemCubicLessThan = value; return this; } public BigDecimal getItemCubicLessThanOrEqualTo() { return ItemCubicLessThanOrEqualTo; } public SO_LinesQuery setItemCubicLessThanOrEqualTo(BigDecimal value) { this.ItemCubicLessThanOrEqualTo = value; return this; } public BigDecimal getItemCubicNotEqualTo() { return ItemCubicNotEqualTo; } public SO_LinesQuery setItemCubicNotEqualTo(BigDecimal value) { this.ItemCubicNotEqualTo = value; return this; } public ArrayList getItemCubicBetween() { return ItemCubicBetween; } public SO_LinesQuery setItemCubicBetween(ArrayList value) { this.ItemCubicBetween = value; return this; } public ArrayList getItemCubicIn() { return ItemCubicIn; } public SO_LinesQuery setItemCubicIn(ArrayList value) { this.ItemCubicIn = value; return this; } public String getTaxID() { return TaxID; } public SO_LinesQuery setTaxID(String value) { this.TaxID = value; return this; } public String getTaxIDStartsWith() { return TaxIDStartsWith; } public SO_LinesQuery setTaxIDStartsWith(String value) { this.TaxIDStartsWith = value; return this; } public String getTaxIDEndsWith() { return TaxIDEndsWith; } public SO_LinesQuery setTaxIDEndsWith(String value) { this.TaxIDEndsWith = value; return this; } public String getTaxIDContains() { return TaxIDContains; } public SO_LinesQuery setTaxIDContains(String value) { this.TaxIDContains = value; return this; } public String getTaxIDLike() { return TaxIDLike; } public SO_LinesQuery setTaxIDLike(String value) { this.TaxIDLike = value; return this; } public ArrayList getTaxIDBetween() { return TaxIDBetween; } public SO_LinesQuery setTaxIDBetween(ArrayList value) { this.TaxIDBetween = value; return this; } public ArrayList getTaxIDIn() { return TaxIDIn; } public SO_LinesQuery setTaxIDIn(ArrayList value) { this.TaxIDIn = value; return this; } public String getClassDescription() { return ClassDescription; } public SO_LinesQuery setClassDescription(String value) { this.ClassDescription = value; return this; } public String getClassDescriptionStartsWith() { return ClassDescriptionStartsWith; } public SO_LinesQuery setClassDescriptionStartsWith(String value) { this.ClassDescriptionStartsWith = value; return this; } public String getClassDescriptionEndsWith() { return ClassDescriptionEndsWith; } public SO_LinesQuery setClassDescriptionEndsWith(String value) { this.ClassDescriptionEndsWith = value; return this; } public String getClassDescriptionContains() { return ClassDescriptionContains; } public SO_LinesQuery setClassDescriptionContains(String value) { this.ClassDescriptionContains = value; return this; } public String getClassDescriptionLike() { return ClassDescriptionLike; } public SO_LinesQuery setClassDescriptionLike(String value) { this.ClassDescriptionLike = value; return this; } public ArrayList getClassDescriptionBetween() { return ClassDescriptionBetween; } public SO_LinesQuery setClassDescriptionBetween(ArrayList value) { this.ClassDescriptionBetween = value; return this; } public ArrayList getClassDescriptionIn() { return ClassDescriptionIn; } public SO_LinesQuery setClassDescriptionIn(ArrayList value) { this.ClassDescriptionIn = value; return this; } public String getCat1Description() { return Cat1Description; } public SO_LinesQuery setCat1Description(String value) { this.Cat1Description = value; return this; } public String getCat1DescriptionStartsWith() { return Cat1DescriptionStartsWith; } public SO_LinesQuery setCat1DescriptionStartsWith(String value) { this.Cat1DescriptionStartsWith = value; return this; } public String getCat1DescriptionEndsWith() { return Cat1DescriptionEndsWith; } public SO_LinesQuery setCat1DescriptionEndsWith(String value) { this.Cat1DescriptionEndsWith = value; return this; } public String getCat1DescriptionContains() { return Cat1DescriptionContains; } public SO_LinesQuery setCat1DescriptionContains(String value) { this.Cat1DescriptionContains = value; return this; } public String getCat1DescriptionLike() { return Cat1DescriptionLike; } public SO_LinesQuery setCat1DescriptionLike(String value) { this.Cat1DescriptionLike = value; return this; } public ArrayList getCat1DescriptionBetween() { return Cat1DescriptionBetween; } public SO_LinesQuery setCat1DescriptionBetween(ArrayList value) { this.Cat1DescriptionBetween = value; return this; } public ArrayList getCat1DescriptionIn() { return Cat1DescriptionIn; } public SO_LinesQuery setCat1DescriptionIn(ArrayList value) { this.Cat1DescriptionIn = value; return this; } public String getCat2Description() { return Cat2Description; } public SO_LinesQuery setCat2Description(String value) { this.Cat2Description = value; return this; } public String getCat2DescriptionStartsWith() { return Cat2DescriptionStartsWith; } public SO_LinesQuery setCat2DescriptionStartsWith(String value) { this.Cat2DescriptionStartsWith = value; return this; } public String getCat2DescriptionEndsWith() { return Cat2DescriptionEndsWith; } public SO_LinesQuery setCat2DescriptionEndsWith(String value) { this.Cat2DescriptionEndsWith = value; return this; } public String getCat2DescriptionContains() { return Cat2DescriptionContains; } public SO_LinesQuery setCat2DescriptionContains(String value) { this.Cat2DescriptionContains = value; return this; } public String getCat2DescriptionLike() { return Cat2DescriptionLike; } public SO_LinesQuery setCat2DescriptionLike(String value) { this.Cat2DescriptionLike = value; return this; } public ArrayList getCat2DescriptionBetween() { return Cat2DescriptionBetween; } public SO_LinesQuery setCat2DescriptionBetween(ArrayList value) { this.Cat2DescriptionBetween = value; return this; } public ArrayList getCat2DescriptionIn() { return Cat2DescriptionIn; } public SO_LinesQuery setCat2DescriptionIn(ArrayList value) { this.Cat2DescriptionIn = value; return this; } public String getCat3Description() { return Cat3Description; } public SO_LinesQuery setCat3Description(String value) { this.Cat3Description = value; return this; } public String getCat3DescriptionStartsWith() { return Cat3DescriptionStartsWith; } public SO_LinesQuery setCat3DescriptionStartsWith(String value) { this.Cat3DescriptionStartsWith = value; return this; } public String getCat3DescriptionEndsWith() { return Cat3DescriptionEndsWith; } public SO_LinesQuery setCat3DescriptionEndsWith(String value) { this.Cat3DescriptionEndsWith = value; return this; } public String getCat3DescriptionContains() { return Cat3DescriptionContains; } public SO_LinesQuery setCat3DescriptionContains(String value) { this.Cat3DescriptionContains = value; return this; } public String getCat3DescriptionLike() { return Cat3DescriptionLike; } public SO_LinesQuery setCat3DescriptionLike(String value) { this.Cat3DescriptionLike = value; return this; } public ArrayList getCat3DescriptionBetween() { return Cat3DescriptionBetween; } public SO_LinesQuery setCat3DescriptionBetween(ArrayList value) { this.Cat3DescriptionBetween = value; return this; } public ArrayList getCat3DescriptionIn() { return Cat3DescriptionIn; } public SO_LinesQuery setCat3DescriptionIn(ArrayList value) { this.Cat3DescriptionIn = value; return this; } public String getUnits() { return Units; } public SO_LinesQuery setUnits(String value) { this.Units = value; return this; } public String getUnitsStartsWith() { return UnitsStartsWith; } public SO_LinesQuery setUnitsStartsWith(String value) { this.UnitsStartsWith = value; return this; } public String getUnitsEndsWith() { return UnitsEndsWith; } public SO_LinesQuery setUnitsEndsWith(String value) { this.UnitsEndsWith = value; return this; } public String getUnitsContains() { return UnitsContains; } public SO_LinesQuery setUnitsContains(String value) { this.UnitsContains = value; return this; } public String getUnitsLike() { return UnitsLike; } public SO_LinesQuery setUnitsLike(String value) { this.UnitsLike = value; return this; } public ArrayList getUnitsBetween() { return UnitsBetween; } public SO_LinesQuery setUnitsBetween(ArrayList value) { this.UnitsBetween = value; return this; } public ArrayList getUnitsIn() { return UnitsIn; } public SO_LinesQuery setUnitsIn(ArrayList value) { this.UnitsIn = value; return this; } public BigDecimal getCostIn() { return CostIn; } public SO_LinesQuery setCostIn(BigDecimal value) { this.CostIn = value; return this; } public BigDecimal getCostInGreaterThanOrEqualTo() { return CostInGreaterThanOrEqualTo; } public SO_LinesQuery setCostInGreaterThanOrEqualTo(BigDecimal value) { this.CostInGreaterThanOrEqualTo = value; return this; } public BigDecimal getCostInGreaterThan() { return CostInGreaterThan; } public SO_LinesQuery setCostInGreaterThan(BigDecimal value) { this.CostInGreaterThan = value; return this; } public BigDecimal getCostInLessThan() { return CostInLessThan; } public SO_LinesQuery setCostInLessThan(BigDecimal value) { this.CostInLessThan = value; return this; } public BigDecimal getCostInLessThanOrEqualTo() { return CostInLessThanOrEqualTo; } public SO_LinesQuery setCostInLessThanOrEqualTo(BigDecimal value) { this.CostInLessThanOrEqualTo = value; return this; } public BigDecimal getCostInNotEqualTo() { return CostInNotEqualTo; } public SO_LinesQuery setCostInNotEqualTo(BigDecimal value) { this.CostInNotEqualTo = value; return this; } public ArrayList getCostInBetween() { return CostInBetween; } public SO_LinesQuery setCostInBetween(ArrayList value) { this.CostInBetween = value; return this; } public ArrayList getCostInIn() { return CostInIn; } public SO_LinesQuery setCostInIn(ArrayList value) { this.CostInIn = value; return this; } public BigDecimal getDefaultPrice() { return DefaultPrice; } public SO_LinesQuery setDefaultPrice(BigDecimal value) { this.DefaultPrice = value; return this; } public BigDecimal getDefaultPriceGreaterThanOrEqualTo() { return DefaultPriceGreaterThanOrEqualTo; } public SO_LinesQuery setDefaultPriceGreaterThanOrEqualTo(BigDecimal value) { this.DefaultPriceGreaterThanOrEqualTo = value; return this; } public BigDecimal getDefaultPriceGreaterThan() { return DefaultPriceGreaterThan; } public SO_LinesQuery setDefaultPriceGreaterThan(BigDecimal value) { this.DefaultPriceGreaterThan = value; return this; } public BigDecimal getDefaultPriceLessThan() { return DefaultPriceLessThan; } public SO_LinesQuery setDefaultPriceLessThan(BigDecimal value) { this.DefaultPriceLessThan = value; return this; } public BigDecimal getDefaultPriceLessThanOrEqualTo() { return DefaultPriceLessThanOrEqualTo; } public SO_LinesQuery setDefaultPriceLessThanOrEqualTo(BigDecimal value) { this.DefaultPriceLessThanOrEqualTo = value; return this; } public BigDecimal getDefaultPriceNotEqualTo() { return DefaultPriceNotEqualTo; } public SO_LinesQuery setDefaultPriceNotEqualTo(BigDecimal value) { this.DefaultPriceNotEqualTo = value; return this; } public ArrayList getDefaultPriceBetween() { return DefaultPriceBetween; } public SO_LinesQuery setDefaultPriceBetween(ArrayList value) { this.DefaultPriceBetween = value; return this; } public ArrayList getDefaultPriceIn() { return DefaultPriceIn; } public SO_LinesQuery setDefaultPriceIn(ArrayList value) { this.DefaultPriceIn = value; return this; } public BigDecimal getItemPrice() { return ItemPrice; } public SO_LinesQuery setItemPrice(BigDecimal value) { this.ItemPrice = value; return this; } public BigDecimal getItemPriceGreaterThanOrEqualTo() { return ItemPriceGreaterThanOrEqualTo; } public SO_LinesQuery setItemPriceGreaterThanOrEqualTo(BigDecimal value) { this.ItemPriceGreaterThanOrEqualTo = value; return this; } public BigDecimal getItemPriceGreaterThan() { return ItemPriceGreaterThan; } public SO_LinesQuery setItemPriceGreaterThan(BigDecimal value) { this.ItemPriceGreaterThan = value; return this; } public BigDecimal getItemPriceLessThan() { return ItemPriceLessThan; } public SO_LinesQuery setItemPriceLessThan(BigDecimal value) { this.ItemPriceLessThan = value; return this; } public BigDecimal getItemPriceLessThanOrEqualTo() { return ItemPriceLessThanOrEqualTo; } public SO_LinesQuery setItemPriceLessThanOrEqualTo(BigDecimal value) { this.ItemPriceLessThanOrEqualTo = value; return this; } public BigDecimal getItemPriceNotEqualTo() { return ItemPriceNotEqualTo; } public SO_LinesQuery setItemPriceNotEqualTo(BigDecimal value) { this.ItemPriceNotEqualTo = value; return this; } public ArrayList getItemPriceBetween() { return ItemPriceBetween; } public SO_LinesQuery setItemPriceBetween(ArrayList value) { this.ItemPriceBetween = value; return this; } public ArrayList getItemPriceIn() { return ItemPriceIn; } public SO_LinesQuery setItemPriceIn(ArrayList value) { this.ItemPriceIn = value; return this; } public BigDecimal getDiscount() { return Discount; } public SO_LinesQuery setDiscount(BigDecimal value) { this.Discount = value; return this; } public BigDecimal getDiscountGreaterThanOrEqualTo() { return DiscountGreaterThanOrEqualTo; } public SO_LinesQuery setDiscountGreaterThanOrEqualTo(BigDecimal value) { this.DiscountGreaterThanOrEqualTo = value; return this; } public BigDecimal getDiscountGreaterThan() { return DiscountGreaterThan; } public SO_LinesQuery setDiscountGreaterThan(BigDecimal value) { this.DiscountGreaterThan = value; return this; } public BigDecimal getDiscountLessThan() { return DiscountLessThan; } public SO_LinesQuery setDiscountLessThan(BigDecimal value) { this.DiscountLessThan = value; return this; } public BigDecimal getDiscountLessThanOrEqualTo() { return DiscountLessThanOrEqualTo; } public SO_LinesQuery setDiscountLessThanOrEqualTo(BigDecimal value) { this.DiscountLessThanOrEqualTo = value; return this; } public BigDecimal getDiscountNotEqualTo() { return DiscountNotEqualTo; } public SO_LinesQuery setDiscountNotEqualTo(BigDecimal value) { this.DiscountNotEqualTo = value; return this; } public ArrayList getDiscountBetween() { return DiscountBetween; } public SO_LinesQuery setDiscountBetween(ArrayList value) { this.DiscountBetween = value; return this; } public ArrayList getDiscountIn() { return DiscountIn; } public SO_LinesQuery setDiscountIn(ArrayList value) { this.DiscountIn = value; return this; } public BigDecimal getInvoicePrice() { return InvoicePrice; } public SO_LinesQuery setInvoicePrice(BigDecimal value) { this.InvoicePrice = value; return this; } public BigDecimal getInvoicePriceGreaterThanOrEqualTo() { return InvoicePriceGreaterThanOrEqualTo; } public SO_LinesQuery setInvoicePriceGreaterThanOrEqualTo(BigDecimal value) { this.InvoicePriceGreaterThanOrEqualTo = value; return this; } public BigDecimal getInvoicePriceGreaterThan() { return InvoicePriceGreaterThan; } public SO_LinesQuery setInvoicePriceGreaterThan(BigDecimal value) { this.InvoicePriceGreaterThan = value; return this; } public BigDecimal getInvoicePriceLessThan() { return InvoicePriceLessThan; } public SO_LinesQuery setInvoicePriceLessThan(BigDecimal value) { this.InvoicePriceLessThan = value; return this; } public BigDecimal getInvoicePriceLessThanOrEqualTo() { return InvoicePriceLessThanOrEqualTo; } public SO_LinesQuery setInvoicePriceLessThanOrEqualTo(BigDecimal value) { this.InvoicePriceLessThanOrEqualTo = value; return this; } public BigDecimal getInvoicePriceNotEqualTo() { return InvoicePriceNotEqualTo; } public SO_LinesQuery setInvoicePriceNotEqualTo(BigDecimal value) { this.InvoicePriceNotEqualTo = value; return this; } public ArrayList getInvoicePriceBetween() { return InvoicePriceBetween; } public SO_LinesQuery setInvoicePriceBetween(ArrayList value) { this.InvoicePriceBetween = value; return this; } public ArrayList getInvoicePriceIn() { return InvoicePriceIn; } public SO_LinesQuery setInvoicePriceIn(ArrayList value) { this.InvoicePriceIn = value; return this; } public BigDecimal getRrpPrice() { return RRPPrice; } public SO_LinesQuery setRrpPrice(BigDecimal value) { this.RRPPrice = value; return this; } public BigDecimal getRrpPriceGreaterThanOrEqualTo() { return RRPPriceGreaterThanOrEqualTo; } public SO_LinesQuery setRrpPriceGreaterThanOrEqualTo(BigDecimal value) { this.RRPPriceGreaterThanOrEqualTo = value; return this; } public BigDecimal getRrpPriceGreaterThan() { return RRPPriceGreaterThan; } public SO_LinesQuery setRrpPriceGreaterThan(BigDecimal value) { this.RRPPriceGreaterThan = value; return this; } public BigDecimal getRrpPriceLessThan() { return RRPPriceLessThan; } public SO_LinesQuery setRrpPriceLessThan(BigDecimal value) { this.RRPPriceLessThan = value; return this; } public BigDecimal getRrpPriceLessThanOrEqualTo() { return RRPPriceLessThanOrEqualTo; } public SO_LinesQuery setRrpPriceLessThanOrEqualTo(BigDecimal value) { this.RRPPriceLessThanOrEqualTo = value; return this; } public BigDecimal getRrpPriceNotEqualTo() { return RRPPriceNotEqualTo; } public SO_LinesQuery setRrpPriceNotEqualTo(BigDecimal value) { this.RRPPriceNotEqualTo = value; return this; } public ArrayList getRrpPriceBetween() { return RRPPriceBetween; } public SO_LinesQuery setRrpPriceBetween(ArrayList value) { this.RRPPriceBetween = value; return this; } public ArrayList getRrpPriceIn() { return RRPPriceIn; } public SO_LinesQuery setRrpPriceIn(ArrayList value) { this.RRPPriceIn = value; return this; } public BigDecimal getTaxToCharge() { return TaxToCharge; } public SO_LinesQuery setTaxToCharge(BigDecimal value) { this.TaxToCharge = value; return this; } public BigDecimal getTaxToChargeGreaterThanOrEqualTo() { return TaxToChargeGreaterThanOrEqualTo; } public SO_LinesQuery setTaxToChargeGreaterThanOrEqualTo(BigDecimal value) { this.TaxToChargeGreaterThanOrEqualTo = value; return this; } public BigDecimal getTaxToChargeGreaterThan() { return TaxToChargeGreaterThan; } public SO_LinesQuery setTaxToChargeGreaterThan(BigDecimal value) { this.TaxToChargeGreaterThan = value; return this; } public BigDecimal getTaxToChargeLessThan() { return TaxToChargeLessThan; } public SO_LinesQuery setTaxToChargeLessThan(BigDecimal value) { this.TaxToChargeLessThan = value; return this; } public BigDecimal getTaxToChargeLessThanOrEqualTo() { return TaxToChargeLessThanOrEqualTo; } public SO_LinesQuery setTaxToChargeLessThanOrEqualTo(BigDecimal value) { this.TaxToChargeLessThanOrEqualTo = value; return this; } public BigDecimal getTaxToChargeNotEqualTo() { return TaxToChargeNotEqualTo; } public SO_LinesQuery setTaxToChargeNotEqualTo(BigDecimal value) { this.TaxToChargeNotEqualTo = value; return this; } public ArrayList getTaxToChargeBetween() { return TaxToChargeBetween; } public SO_LinesQuery setTaxToChargeBetween(ArrayList value) { this.TaxToChargeBetween = value; return this; } public ArrayList getTaxToChargeIn() { return TaxToChargeIn; } public SO_LinesQuery setTaxToChargeIn(ArrayList value) { this.TaxToChargeIn = value; return this; } public BigDecimal getTaxToPay() { return TaxToPay; } public SO_LinesQuery setTaxToPay(BigDecimal value) { this.TaxToPay = value; return this; } public BigDecimal getTaxToPayGreaterThanOrEqualTo() { return TaxToPayGreaterThanOrEqualTo; } public SO_LinesQuery setTaxToPayGreaterThanOrEqualTo(BigDecimal value) { this.TaxToPayGreaterThanOrEqualTo = value; return this; } public BigDecimal getTaxToPayGreaterThan() { return TaxToPayGreaterThan; } public SO_LinesQuery setTaxToPayGreaterThan(BigDecimal value) { this.TaxToPayGreaterThan = value; return this; } public BigDecimal getTaxToPayLessThan() { return TaxToPayLessThan; } public SO_LinesQuery setTaxToPayLessThan(BigDecimal value) { this.TaxToPayLessThan = value; return this; } public BigDecimal getTaxToPayLessThanOrEqualTo() { return TaxToPayLessThanOrEqualTo; } public SO_LinesQuery setTaxToPayLessThanOrEqualTo(BigDecimal value) { this.TaxToPayLessThanOrEqualTo = value; return this; } public BigDecimal getTaxToPayNotEqualTo() { return TaxToPayNotEqualTo; } public SO_LinesQuery setTaxToPayNotEqualTo(BigDecimal value) { this.TaxToPayNotEqualTo = value; return this; } public ArrayList getTaxToPayBetween() { return TaxToPayBetween; } public SO_LinesQuery setTaxToPayBetween(ArrayList value) { this.TaxToPayBetween = value; return this; } public ArrayList getTaxToPayIn() { return TaxToPayIn; } public SO_LinesQuery setTaxToPayIn(ArrayList value) { this.TaxToPayIn = value; return this; } public BigDecimal getCurrentLineTotal() { return CurrentLineTotal; } public SO_LinesQuery setCurrentLineTotal(BigDecimal value) { this.CurrentLineTotal = value; return this; } public BigDecimal getCurrentLineTotalGreaterThanOrEqualTo() { return CurrentLineTotalGreaterThanOrEqualTo; } public SO_LinesQuery setCurrentLineTotalGreaterThanOrEqualTo(BigDecimal value) { this.CurrentLineTotalGreaterThanOrEqualTo = value; return this; } public BigDecimal getCurrentLineTotalGreaterThan() { return CurrentLineTotalGreaterThan; } public SO_LinesQuery setCurrentLineTotalGreaterThan(BigDecimal value) { this.CurrentLineTotalGreaterThan = value; return this; } public BigDecimal getCurrentLineTotalLessThan() { return CurrentLineTotalLessThan; } public SO_LinesQuery setCurrentLineTotalLessThan(BigDecimal value) { this.CurrentLineTotalLessThan = value; return this; } public BigDecimal getCurrentLineTotalLessThanOrEqualTo() { return CurrentLineTotalLessThanOrEqualTo; } public SO_LinesQuery setCurrentLineTotalLessThanOrEqualTo(BigDecimal value) { this.CurrentLineTotalLessThanOrEqualTo = value; return this; } public BigDecimal getCurrentLineTotalNotEqualTo() { return CurrentLineTotalNotEqualTo; } public SO_LinesQuery setCurrentLineTotalNotEqualTo(BigDecimal value) { this.CurrentLineTotalNotEqualTo = value; return this; } public ArrayList getCurrentLineTotalBetween() { return CurrentLineTotalBetween; } public SO_LinesQuery setCurrentLineTotalBetween(ArrayList value) { this.CurrentLineTotalBetween = value; return this; } public ArrayList getCurrentLineTotalIn() { return CurrentLineTotalIn; } public SO_LinesQuery setCurrentLineTotalIn(ArrayList value) { this.CurrentLineTotalIn = value; return this; } public BigDecimal getQuantityOrdered() { return QuantityOrdered; } public SO_LinesQuery setQuantityOrdered(BigDecimal value) { this.QuantityOrdered = value; return this; } public BigDecimal getQuantityOrderedGreaterThanOrEqualTo() { return QuantityOrderedGreaterThanOrEqualTo; } public SO_LinesQuery setQuantityOrderedGreaterThanOrEqualTo(BigDecimal value) { this.QuantityOrderedGreaterThanOrEqualTo = value; return this; } public BigDecimal getQuantityOrderedGreaterThan() { return QuantityOrderedGreaterThan; } public SO_LinesQuery setQuantityOrderedGreaterThan(BigDecimal value) { this.QuantityOrderedGreaterThan = value; return this; } public BigDecimal getQuantityOrderedLessThan() { return QuantityOrderedLessThan; } public SO_LinesQuery setQuantityOrderedLessThan(BigDecimal value) { this.QuantityOrderedLessThan = value; return this; } public BigDecimal getQuantityOrderedLessThanOrEqualTo() { return QuantityOrderedLessThanOrEqualTo; } public SO_LinesQuery setQuantityOrderedLessThanOrEqualTo(BigDecimal value) { this.QuantityOrderedLessThanOrEqualTo = value; return this; } public BigDecimal getQuantityOrderedNotEqualTo() { return QuantityOrderedNotEqualTo; } public SO_LinesQuery setQuantityOrderedNotEqualTo(BigDecimal value) { this.QuantityOrderedNotEqualTo = value; return this; } public ArrayList getQuantityOrderedBetween() { return QuantityOrderedBetween; } public SO_LinesQuery setQuantityOrderedBetween(ArrayList value) { this.QuantityOrderedBetween = value; return this; } public ArrayList getQuantityOrderedIn() { return QuantityOrderedIn; } public SO_LinesQuery setQuantityOrderedIn(ArrayList value) { this.QuantityOrderedIn = value; return this; } public BigDecimal getQuantityPrevDel() { return QuantityPrevDel; } public SO_LinesQuery setQuantityPrevDel(BigDecimal value) { this.QuantityPrevDel = value; return this; } public BigDecimal getQuantityPrevDelGreaterThanOrEqualTo() { return QuantityPrevDelGreaterThanOrEqualTo; } public SO_LinesQuery setQuantityPrevDelGreaterThanOrEqualTo(BigDecimal value) { this.QuantityPrevDelGreaterThanOrEqualTo = value; return this; } public BigDecimal getQuantityPrevDelGreaterThan() { return QuantityPrevDelGreaterThan; } public SO_LinesQuery setQuantityPrevDelGreaterThan(BigDecimal value) { this.QuantityPrevDelGreaterThan = value; return this; } public BigDecimal getQuantityPrevDelLessThan() { return QuantityPrevDelLessThan; } public SO_LinesQuery setQuantityPrevDelLessThan(BigDecimal value) { this.QuantityPrevDelLessThan = value; return this; } public BigDecimal getQuantityPrevDelLessThanOrEqualTo() { return QuantityPrevDelLessThanOrEqualTo; } public SO_LinesQuery setQuantityPrevDelLessThanOrEqualTo(BigDecimal value) { this.QuantityPrevDelLessThanOrEqualTo = value; return this; } public BigDecimal getQuantityPrevDelNotEqualTo() { return QuantityPrevDelNotEqualTo; } public SO_LinesQuery setQuantityPrevDelNotEqualTo(BigDecimal value) { this.QuantityPrevDelNotEqualTo = value; return this; } public ArrayList getQuantityPrevDelBetween() { return QuantityPrevDelBetween; } public SO_LinesQuery setQuantityPrevDelBetween(ArrayList value) { this.QuantityPrevDelBetween = value; return this; } public ArrayList getQuantityPrevDelIn() { return QuantityPrevDelIn; } public SO_LinesQuery setQuantityPrevDelIn(ArrayList value) { this.QuantityPrevDelIn = value; return this; } public BigDecimal getQuantityThisDel() { return QuantityThisDel; } public SO_LinesQuery setQuantityThisDel(BigDecimal value) { this.QuantityThisDel = value; return this; } public BigDecimal getQuantityThisDelGreaterThanOrEqualTo() { return QuantityThisDelGreaterThanOrEqualTo; } public SO_LinesQuery setQuantityThisDelGreaterThanOrEqualTo(BigDecimal value) { this.QuantityThisDelGreaterThanOrEqualTo = value; return this; } public BigDecimal getQuantityThisDelGreaterThan() { return QuantityThisDelGreaterThan; } public SO_LinesQuery setQuantityThisDelGreaterThan(BigDecimal value) { this.QuantityThisDelGreaterThan = value; return this; } public BigDecimal getQuantityThisDelLessThan() { return QuantityThisDelLessThan; } public SO_LinesQuery setQuantityThisDelLessThan(BigDecimal value) { this.QuantityThisDelLessThan = value; return this; } public BigDecimal getQuantityThisDelLessThanOrEqualTo() { return QuantityThisDelLessThanOrEqualTo; } public SO_LinesQuery setQuantityThisDelLessThanOrEqualTo(BigDecimal value) { this.QuantityThisDelLessThanOrEqualTo = value; return this; } public BigDecimal getQuantityThisDelNotEqualTo() { return QuantityThisDelNotEqualTo; } public SO_LinesQuery setQuantityThisDelNotEqualTo(BigDecimal value) { this.QuantityThisDelNotEqualTo = value; return this; } public ArrayList getQuantityThisDelBetween() { return QuantityThisDelBetween; } public SO_LinesQuery setQuantityThisDelBetween(ArrayList value) { this.QuantityThisDelBetween = value; return this; } public ArrayList getQuantityThisDelIn() { return QuantityThisDelIn; } public SO_LinesQuery setQuantityThisDelIn(ArrayList value) { this.QuantityThisDelIn = value; return this; } public BigDecimal getQuantityBackOrd() { return QuantityBackOrd; } public SO_LinesQuery setQuantityBackOrd(BigDecimal value) { this.QuantityBackOrd = value; return this; } public BigDecimal getQuantityBackOrdGreaterThanOrEqualTo() { return QuantityBackOrdGreaterThanOrEqualTo; } public SO_LinesQuery setQuantityBackOrdGreaterThanOrEqualTo(BigDecimal value) { this.QuantityBackOrdGreaterThanOrEqualTo = value; return this; } public BigDecimal getQuantityBackOrdGreaterThan() { return QuantityBackOrdGreaterThan; } public SO_LinesQuery setQuantityBackOrdGreaterThan(BigDecimal value) { this.QuantityBackOrdGreaterThan = value; return this; } public BigDecimal getQuantityBackOrdLessThan() { return QuantityBackOrdLessThan; } public SO_LinesQuery setQuantityBackOrdLessThan(BigDecimal value) { this.QuantityBackOrdLessThan = value; return this; } public BigDecimal getQuantityBackOrdLessThanOrEqualTo() { return QuantityBackOrdLessThanOrEqualTo; } public SO_LinesQuery setQuantityBackOrdLessThanOrEqualTo(BigDecimal value) { this.QuantityBackOrdLessThanOrEqualTo = value; return this; } public BigDecimal getQuantityBackOrdNotEqualTo() { return QuantityBackOrdNotEqualTo; } public SO_LinesQuery setQuantityBackOrdNotEqualTo(BigDecimal value) { this.QuantityBackOrdNotEqualTo = value; return this; } public ArrayList getQuantityBackOrdBetween() { return QuantityBackOrdBetween; } public SO_LinesQuery setQuantityBackOrdBetween(ArrayList value) { this.QuantityBackOrdBetween = value; return this; } public ArrayList getQuantityBackOrdIn() { return QuantityBackOrdIn; } public SO_LinesQuery setQuantityBackOrdIn(ArrayList value) { this.QuantityBackOrdIn = value; return this; } public String getHistoryTextComment() { return HistoryText_Comment; } public SO_LinesQuery setHistoryTextComment(String value) { this.HistoryText_Comment = value; return this; } public String getHistoryTextCommentStartsWith() { return HistoryText_CommentStartsWith; } public SO_LinesQuery setHistoryTextCommentStartsWith(String value) { this.HistoryText_CommentStartsWith = value; return this; } public String getHistoryTextCommentEndsWith() { return HistoryText_CommentEndsWith; } public SO_LinesQuery setHistoryTextCommentEndsWith(String value) { this.HistoryText_CommentEndsWith = value; return this; } public String getHistoryTextCommentContains() { return HistoryText_CommentContains; } public SO_LinesQuery setHistoryTextCommentContains(String value) { this.HistoryText_CommentContains = value; return this; } public String getHistoryTextCommentLike() { return HistoryText_CommentLike; } public SO_LinesQuery setHistoryTextCommentLike(String value) { this.HistoryText_CommentLike = value; return this; } public ArrayList getHistoryTextCommentBetween() { return HistoryText_CommentBetween; } public SO_LinesQuery setHistoryTextCommentBetween(ArrayList value) { this.HistoryText_CommentBetween = value; return this; } public ArrayList getHistoryTextCommentIn() { return HistoryText_CommentIn; } public SO_LinesQuery setHistoryTextCommentIn(ArrayList value) { this.HistoryText_CommentIn = value; return this; } public Boolean isDiscountable() { return Discountable; } public SO_LinesQuery setDiscountable(Boolean value) { this.Discountable = value; return this; } public Boolean isTaxInc() { return TaxInc; } public SO_LinesQuery setTaxInc(Boolean value) { this.TaxInc = value; return this; } public BigDecimal getDirectTax() { return DirectTax; } public SO_LinesQuery setDirectTax(BigDecimal value) { this.DirectTax = value; return this; } public BigDecimal getDirectTaxGreaterThanOrEqualTo() { return DirectTaxGreaterThanOrEqualTo; } public SO_LinesQuery setDirectTaxGreaterThanOrEqualTo(BigDecimal value) { this.DirectTaxGreaterThanOrEqualTo = value; return this; } public BigDecimal getDirectTaxGreaterThan() { return DirectTaxGreaterThan; } public SO_LinesQuery setDirectTaxGreaterThan(BigDecimal value) { this.DirectTaxGreaterThan = value; return this; } public BigDecimal getDirectTaxLessThan() { return DirectTaxLessThan; } public SO_LinesQuery setDirectTaxLessThan(BigDecimal value) { this.DirectTaxLessThan = value; return this; } public BigDecimal getDirectTaxLessThanOrEqualTo() { return DirectTaxLessThanOrEqualTo; } public SO_LinesQuery setDirectTaxLessThanOrEqualTo(BigDecimal value) { this.DirectTaxLessThanOrEqualTo = value; return this; } public BigDecimal getDirectTaxNotEqualTo() { return DirectTaxNotEqualTo; } public SO_LinesQuery setDirectTaxNotEqualTo(BigDecimal value) { this.DirectTaxNotEqualTo = value; return this; } public ArrayList getDirectTaxBetween() { return DirectTaxBetween; } public SO_LinesQuery setDirectTaxBetween(ArrayList value) { this.DirectTaxBetween = value; return this; } public ArrayList getDirectTaxIn() { return DirectTaxIn; } public SO_LinesQuery setDirectTaxIn(ArrayList value) { this.DirectTaxIn = value; return this; } public Short getDecimalPlaces() { return DecimalPlaces; } public SO_LinesQuery setDecimalPlaces(Short value) { this.DecimalPlaces = value; return this; } public Short getDecimalPlacesGreaterThanOrEqualTo() { return DecimalPlacesGreaterThanOrEqualTo; } public SO_LinesQuery setDecimalPlacesGreaterThanOrEqualTo(Short value) { this.DecimalPlacesGreaterThanOrEqualTo = value; return this; } public Short getDecimalPlacesGreaterThan() { return DecimalPlacesGreaterThan; } public SO_LinesQuery setDecimalPlacesGreaterThan(Short value) { this.DecimalPlacesGreaterThan = value; return this; } public Short getDecimalPlacesLessThan() { return DecimalPlacesLessThan; } public SO_LinesQuery setDecimalPlacesLessThan(Short value) { this.DecimalPlacesLessThan = value; return this; } public Short getDecimalPlacesLessThanOrEqualTo() { return DecimalPlacesLessThanOrEqualTo; } public SO_LinesQuery setDecimalPlacesLessThanOrEqualTo(Short value) { this.DecimalPlacesLessThanOrEqualTo = value; return this; } public Short getDecimalPlacesNotEqualTo() { return DecimalPlacesNotEqualTo; } public SO_LinesQuery setDecimalPlacesNotEqualTo(Short value) { this.DecimalPlacesNotEqualTo = value; return this; } public ArrayList getDecimalPlacesBetween() { return DecimalPlacesBetween; } public SO_LinesQuery setDecimalPlacesBetween(ArrayList value) { this.DecimalPlacesBetween = value; return this; } public ArrayList getDecimalPlacesIn() { return DecimalPlacesIn; } public SO_LinesQuery setDecimalPlacesIn(ArrayList value) { this.DecimalPlacesIn = value; return this; } public BigDecimal getMinimumGP() { return MinimumGP; } public SO_LinesQuery setMinimumGP(BigDecimal value) { this.MinimumGP = value; return this; } public BigDecimal getMinimumGPGreaterThanOrEqualTo() { return MinimumGPGreaterThanOrEqualTo; } public SO_LinesQuery setMinimumGPGreaterThanOrEqualTo(BigDecimal value) { this.MinimumGPGreaterThanOrEqualTo = value; return this; } public BigDecimal getMinimumGPGreaterThan() { return MinimumGPGreaterThan; } public SO_LinesQuery setMinimumGPGreaterThan(BigDecimal value) { this.MinimumGPGreaterThan = value; return this; } public BigDecimal getMinimumGPLessThan() { return MinimumGPLessThan; } public SO_LinesQuery setMinimumGPLessThan(BigDecimal value) { this.MinimumGPLessThan = value; return this; } public BigDecimal getMinimumGPLessThanOrEqualTo() { return MinimumGPLessThanOrEqualTo; } public SO_LinesQuery setMinimumGPLessThanOrEqualTo(BigDecimal value) { this.MinimumGPLessThanOrEqualTo = value; return this; } public BigDecimal getMinimumGPNotEqualTo() { return MinimumGPNotEqualTo; } public SO_LinesQuery setMinimumGPNotEqualTo(BigDecimal value) { this.MinimumGPNotEqualTo = value; return this; } public ArrayList getMinimumGPBetween() { return MinimumGPBetween; } public SO_LinesQuery setMinimumGPBetween(ArrayList value) { this.MinimumGPBetween = value; return this; } public ArrayList getMinimumGPIn() { return MinimumGPIn; } public SO_LinesQuery setMinimumGPIn(ArrayList value) { this.MinimumGPIn = value; return this; } public String getDebitLedger() { return DebitLedger; } public SO_LinesQuery setDebitLedger(String value) { this.DebitLedger = value; return this; } public String getDebitLedgerStartsWith() { return DebitLedgerStartsWith; } public SO_LinesQuery setDebitLedgerStartsWith(String value) { this.DebitLedgerStartsWith = value; return this; } public String getDebitLedgerEndsWith() { return DebitLedgerEndsWith; } public SO_LinesQuery setDebitLedgerEndsWith(String value) { this.DebitLedgerEndsWith = value; return this; } public String getDebitLedgerContains() { return DebitLedgerContains; } public SO_LinesQuery setDebitLedgerContains(String value) { this.DebitLedgerContains = value; return this; } public String getDebitLedgerLike() { return DebitLedgerLike; } public SO_LinesQuery setDebitLedgerLike(String value) { this.DebitLedgerLike = value; return this; } public ArrayList getDebitLedgerBetween() { return DebitLedgerBetween; } public SO_LinesQuery setDebitLedgerBetween(ArrayList value) { this.DebitLedgerBetween = value; return this; } public ArrayList getDebitLedgerIn() { return DebitLedgerIn; } public SO_LinesQuery setDebitLedgerIn(ArrayList value) { this.DebitLedgerIn = value; return this; } public String getCreditLedger() { return CreditLedger; } public SO_LinesQuery setCreditLedger(String value) { this.CreditLedger = value; return this; } public String getCreditLedgerStartsWith() { return CreditLedgerStartsWith; } public SO_LinesQuery setCreditLedgerStartsWith(String value) { this.CreditLedgerStartsWith = value; return this; } public String getCreditLedgerEndsWith() { return CreditLedgerEndsWith; } public SO_LinesQuery setCreditLedgerEndsWith(String value) { this.CreditLedgerEndsWith = value; return this; } public String getCreditLedgerContains() { return CreditLedgerContains; } public SO_LinesQuery setCreditLedgerContains(String value) { this.CreditLedgerContains = value; return this; } public String getCreditLedgerLike() { return CreditLedgerLike; } public SO_LinesQuery setCreditLedgerLike(String value) { this.CreditLedgerLike = value; return this; } public ArrayList getCreditLedgerBetween() { return CreditLedgerBetween; } public SO_LinesQuery setCreditLedgerBetween(ArrayList value) { this.CreditLedgerBetween = value; return this; } public ArrayList getCreditLedgerIn() { return CreditLedgerIn; } public SO_LinesQuery setCreditLedgerIn(ArrayList value) { this.CreditLedgerIn = value; return this; } public Boolean isNonStock() { return NonStock; } public SO_LinesQuery setNonStock(Boolean value) { this.NonStock = value; return this; } public String getInventoryID() { return InventoryID; } public SO_LinesQuery setInventoryID(String value) { this.InventoryID = value; return this; } public String getInventoryIDStartsWith() { return InventoryIDStartsWith; } public SO_LinesQuery setInventoryIDStartsWith(String value) { this.InventoryIDStartsWith = value; return this; } public String getInventoryIDEndsWith() { return InventoryIDEndsWith; } public SO_LinesQuery setInventoryIDEndsWith(String value) { this.InventoryIDEndsWith = value; return this; } public String getInventoryIDContains() { return InventoryIDContains; } public SO_LinesQuery setInventoryIDContains(String value) { this.InventoryIDContains = value; return this; } public String getInventoryIDLike() { return InventoryIDLike; } public SO_LinesQuery setInventoryIDLike(String value) { this.InventoryIDLike = value; return this; } public ArrayList getInventoryIDBetween() { return InventoryIDBetween; } public SO_LinesQuery setInventoryIDBetween(ArrayList value) { this.InventoryIDBetween = value; return this; } public ArrayList getInventoryIDIn() { return InventoryIDIn; } public SO_LinesQuery setInventoryIDIn(ArrayList value) { this.InventoryIDIn = value; return this; } public Boolean isUseSerialNo() { return UseSerialNo; } public SO_LinesQuery setUseSerialNo(Boolean value) { this.UseSerialNo = value; return this; } public Boolean isBackorderable() { return Backorderable; } public SO_LinesQuery setBackorderable(Boolean value) { this.Backorderable = value; return this; } public Boolean isPicked() { return Picked; } public SO_LinesQuery setPicked(Boolean value) { this.Picked = value; return this; } public BigDecimal getTaxPaid() { return TaxPaid; } public SO_LinesQuery setTaxPaid(BigDecimal value) { this.TaxPaid = value; return this; } public BigDecimal getTaxPaidGreaterThanOrEqualTo() { return TaxPaidGreaterThanOrEqualTo; } public SO_LinesQuery setTaxPaidGreaterThanOrEqualTo(BigDecimal value) { this.TaxPaidGreaterThanOrEqualTo = value; return this; } public BigDecimal getTaxPaidGreaterThan() { return TaxPaidGreaterThan; } public SO_LinesQuery setTaxPaidGreaterThan(BigDecimal value) { this.TaxPaidGreaterThan = value; return this; } public BigDecimal getTaxPaidLessThan() { return TaxPaidLessThan; } public SO_LinesQuery setTaxPaidLessThan(BigDecimal value) { this.TaxPaidLessThan = value; return this; } public BigDecimal getTaxPaidLessThanOrEqualTo() { return TaxPaidLessThanOrEqualTo; } public SO_LinesQuery setTaxPaidLessThanOrEqualTo(BigDecimal value) { this.TaxPaidLessThanOrEqualTo = value; return this; } public BigDecimal getTaxPaidNotEqualTo() { return TaxPaidNotEqualTo; } public SO_LinesQuery setTaxPaidNotEqualTo(BigDecimal value) { this.TaxPaidNotEqualTo = value; return this; } public ArrayList getTaxPaidBetween() { return TaxPaidBetween; } public SO_LinesQuery setTaxPaidBetween(ArrayList value) { this.TaxPaidBetween = value; return this; } public ArrayList getTaxPaidIn() { return TaxPaidIn; } public SO_LinesQuery setTaxPaidIn(ArrayList value) { this.TaxPaidIn = value; return this; } public BigDecimal getTaxRate() { return TaxRate; } public SO_LinesQuery setTaxRate(BigDecimal value) { this.TaxRate = value; return this; } public BigDecimal getTaxRateGreaterThanOrEqualTo() { return TaxRateGreaterThanOrEqualTo; } public SO_LinesQuery setTaxRateGreaterThanOrEqualTo(BigDecimal value) { this.TaxRateGreaterThanOrEqualTo = value; return this; } public BigDecimal getTaxRateGreaterThan() { return TaxRateGreaterThan; } public SO_LinesQuery setTaxRateGreaterThan(BigDecimal value) { this.TaxRateGreaterThan = value; return this; } public BigDecimal getTaxRateLessThan() { return TaxRateLessThan; } public SO_LinesQuery setTaxRateLessThan(BigDecimal value) { this.TaxRateLessThan = value; return this; } public BigDecimal getTaxRateLessThanOrEqualTo() { return TaxRateLessThanOrEqualTo; } public SO_LinesQuery setTaxRateLessThanOrEqualTo(BigDecimal value) { this.TaxRateLessThanOrEqualTo = value; return this; } public BigDecimal getTaxRateNotEqualTo() { return TaxRateNotEqualTo; } public SO_LinesQuery setTaxRateNotEqualTo(BigDecimal value) { this.TaxRateNotEqualTo = value; return this; } public ArrayList getTaxRateBetween() { return TaxRateBetween; } public SO_LinesQuery setTaxRateBetween(ArrayList value) { this.TaxRateBetween = value; return this; } public ArrayList getTaxRateIn() { return TaxRateIn; } public SO_LinesQuery setTaxRateIn(ArrayList value) { this.TaxRateIn = value; return this; } public Boolean isUsingSpecialPrice() { return UsingSpecialPrice; } public SO_LinesQuery setUsingSpecialPrice(Boolean value) { this.UsingSpecialPrice = value; return this; } public BigDecimal getEstBOValue() { return EstBOValue; } public SO_LinesQuery setEstBOValue(BigDecimal value) { this.EstBOValue = value; return this; } public BigDecimal getEstBOValueGreaterThanOrEqualTo() { return EstBOValueGreaterThanOrEqualTo; } public SO_LinesQuery setEstBOValueGreaterThanOrEqualTo(BigDecimal value) { this.EstBOValueGreaterThanOrEqualTo = value; return this; } public BigDecimal getEstBOValueGreaterThan() { return EstBOValueGreaterThan; } public SO_LinesQuery setEstBOValueGreaterThan(BigDecimal value) { this.EstBOValueGreaterThan = value; return this; } public BigDecimal getEstBOValueLessThan() { return EstBOValueLessThan; } public SO_LinesQuery setEstBOValueLessThan(BigDecimal value) { this.EstBOValueLessThan = value; return this; } public BigDecimal getEstBOValueLessThanOrEqualTo() { return EstBOValueLessThanOrEqualTo; } public SO_LinesQuery setEstBOValueLessThanOrEqualTo(BigDecimal value) { this.EstBOValueLessThanOrEqualTo = value; return this; } public BigDecimal getEstBOValueNotEqualTo() { return EstBOValueNotEqualTo; } public SO_LinesQuery setEstBOValueNotEqualTo(BigDecimal value) { this.EstBOValueNotEqualTo = value; return this; } public ArrayList getEstBOValueBetween() { return EstBOValueBetween; } public SO_LinesQuery setEstBOValueBetween(ArrayList value) { this.EstBOValueBetween = value; return this; } public ArrayList getEstBOValueIn() { return EstBOValueIn; } public SO_LinesQuery setEstBOValueIn(ArrayList value) { this.EstBOValueIn = value; return this; } public BigDecimal getItemTaxToCharge() { return ItemTaxToCharge; } public SO_LinesQuery setItemTaxToCharge(BigDecimal value) { this.ItemTaxToCharge = value; return this; } public BigDecimal getItemTaxToChargeGreaterThanOrEqualTo() { return ItemTaxToChargeGreaterThanOrEqualTo; } public SO_LinesQuery setItemTaxToChargeGreaterThanOrEqualTo(BigDecimal value) { this.ItemTaxToChargeGreaterThanOrEqualTo = value; return this; } public BigDecimal getItemTaxToChargeGreaterThan() { return ItemTaxToChargeGreaterThan; } public SO_LinesQuery setItemTaxToChargeGreaterThan(BigDecimal value) { this.ItemTaxToChargeGreaterThan = value; return this; } public BigDecimal getItemTaxToChargeLessThan() { return ItemTaxToChargeLessThan; } public SO_LinesQuery setItemTaxToChargeLessThan(BigDecimal value) { this.ItemTaxToChargeLessThan = value; return this; } public BigDecimal getItemTaxToChargeLessThanOrEqualTo() { return ItemTaxToChargeLessThanOrEqualTo; } public SO_LinesQuery setItemTaxToChargeLessThanOrEqualTo(BigDecimal value) { this.ItemTaxToChargeLessThanOrEqualTo = value; return this; } public BigDecimal getItemTaxToChargeNotEqualTo() { return ItemTaxToChargeNotEqualTo; } public SO_LinesQuery setItemTaxToChargeNotEqualTo(BigDecimal value) { this.ItemTaxToChargeNotEqualTo = value; return this; } public ArrayList getItemTaxToChargeBetween() { return ItemTaxToChargeBetween; } public SO_LinesQuery setItemTaxToChargeBetween(ArrayList value) { this.ItemTaxToChargeBetween = value; return this; } public ArrayList getItemTaxToChargeIn() { return ItemTaxToChargeIn; } public SO_LinesQuery setItemTaxToChargeIn(ArrayList value) { this.ItemTaxToChargeIn = value; return this; } public BigDecimal getItemTaxToPay() { return ItemTaxToPay; } public SO_LinesQuery setItemTaxToPay(BigDecimal value) { this.ItemTaxToPay = value; return this; } public BigDecimal getItemTaxToPayGreaterThanOrEqualTo() { return ItemTaxToPayGreaterThanOrEqualTo; } public SO_LinesQuery setItemTaxToPayGreaterThanOrEqualTo(BigDecimal value) { this.ItemTaxToPayGreaterThanOrEqualTo = value; return this; } public BigDecimal getItemTaxToPayGreaterThan() { return ItemTaxToPayGreaterThan; } public SO_LinesQuery setItemTaxToPayGreaterThan(BigDecimal value) { this.ItemTaxToPayGreaterThan = value; return this; } public BigDecimal getItemTaxToPayLessThan() { return ItemTaxToPayLessThan; } public SO_LinesQuery setItemTaxToPayLessThan(BigDecimal value) { this.ItemTaxToPayLessThan = value; return this; } public BigDecimal getItemTaxToPayLessThanOrEqualTo() { return ItemTaxToPayLessThanOrEqualTo; } public SO_LinesQuery setItemTaxToPayLessThanOrEqualTo(BigDecimal value) { this.ItemTaxToPayLessThanOrEqualTo = value; return this; } public BigDecimal getItemTaxToPayNotEqualTo() { return ItemTaxToPayNotEqualTo; } public SO_LinesQuery setItemTaxToPayNotEqualTo(BigDecimal value) { this.ItemTaxToPayNotEqualTo = value; return this; } public ArrayList getItemTaxToPayBetween() { return ItemTaxToPayBetween; } public SO_LinesQuery setItemTaxToPayBetween(ArrayList value) { this.ItemTaxToPayBetween = value; return this; } public ArrayList getItemTaxToPayIn() { return ItemTaxToPayIn; } public SO_LinesQuery setItemTaxToPayIn(ArrayList value) { this.ItemTaxToPayIn = value; return this; } public String getLineLinkID() { return LineLinkID; } public SO_LinesQuery setLineLinkID(String value) { this.LineLinkID = value; return this; } public String getLineLinkIDStartsWith() { return LineLinkIDStartsWith; } public SO_LinesQuery setLineLinkIDStartsWith(String value) { this.LineLinkIDStartsWith = value; return this; } public String getLineLinkIDEndsWith() { return LineLinkIDEndsWith; } public SO_LinesQuery setLineLinkIDEndsWith(String value) { this.LineLinkIDEndsWith = value; return this; } public String getLineLinkIDContains() { return LineLinkIDContains; } public SO_LinesQuery setLineLinkIDContains(String value) { this.LineLinkIDContains = value; return this; } public String getLineLinkIDLike() { return LineLinkIDLike; } public SO_LinesQuery setLineLinkIDLike(String value) { this.LineLinkIDLike = value; return this; } public ArrayList getLineLinkIDBetween() { return LineLinkIDBetween; } public SO_LinesQuery setLineLinkIDBetween(ArrayList value) { this.LineLinkIDBetween = value; return this; } public ArrayList getLineLinkIDIn() { return LineLinkIDIn; } public SO_LinesQuery setLineLinkIDIn(ArrayList value) { this.LineLinkIDIn = value; return this; } public Short getKittingStatus() { return KittingStatus; } public SO_LinesQuery setKittingStatus(Short value) { this.KittingStatus = value; return this; } public Short getKittingStatusGreaterThanOrEqualTo() { return KittingStatusGreaterThanOrEqualTo; } public SO_LinesQuery setKittingStatusGreaterThanOrEqualTo(Short value) { this.KittingStatusGreaterThanOrEqualTo = value; return this; } public Short getKittingStatusGreaterThan() { return KittingStatusGreaterThan; } public SO_LinesQuery setKittingStatusGreaterThan(Short value) { this.KittingStatusGreaterThan = value; return this; } public Short getKittingStatusLessThan() { return KittingStatusLessThan; } public SO_LinesQuery setKittingStatusLessThan(Short value) { this.KittingStatusLessThan = value; return this; } public Short getKittingStatusLessThanOrEqualTo() { return KittingStatusLessThanOrEqualTo; } public SO_LinesQuery setKittingStatusLessThanOrEqualTo(Short value) { this.KittingStatusLessThanOrEqualTo = value; return this; } public Short getKittingStatusNotEqualTo() { return KittingStatusNotEqualTo; } public SO_LinesQuery setKittingStatusNotEqualTo(Short value) { this.KittingStatusNotEqualTo = value; return this; } public ArrayList getKittingStatusBetween() { return KittingStatusBetween; } public SO_LinesQuery setKittingStatusBetween(ArrayList value) { this.KittingStatusBetween = value; return this; } public ArrayList getKittingStatusIn() { return KittingStatusIn; } public SO_LinesQuery setKittingStatusIn(ArrayList value) { this.KittingStatusIn = value; return this; } public BigDecimal getKittingUnits() { return KittingUnits; } public SO_LinesQuery setKittingUnits(BigDecimal value) { this.KittingUnits = value; return this; } public BigDecimal getKittingUnitsGreaterThanOrEqualTo() { return KittingUnitsGreaterThanOrEqualTo; } public SO_LinesQuery setKittingUnitsGreaterThanOrEqualTo(BigDecimal value) { this.KittingUnitsGreaterThanOrEqualTo = value; return this; } public BigDecimal getKittingUnitsGreaterThan() { return KittingUnitsGreaterThan; } public SO_LinesQuery setKittingUnitsGreaterThan(BigDecimal value) { this.KittingUnitsGreaterThan = value; return this; } public BigDecimal getKittingUnitsLessThan() { return KittingUnitsLessThan; } public SO_LinesQuery setKittingUnitsLessThan(BigDecimal value) { this.KittingUnitsLessThan = value; return this; } public BigDecimal getKittingUnitsLessThanOrEqualTo() { return KittingUnitsLessThanOrEqualTo; } public SO_LinesQuery setKittingUnitsLessThanOrEqualTo(BigDecimal value) { this.KittingUnitsLessThanOrEqualTo = value; return this; } public BigDecimal getKittingUnitsNotEqualTo() { return KittingUnitsNotEqualTo; } public SO_LinesQuery setKittingUnitsNotEqualTo(BigDecimal value) { this.KittingUnitsNotEqualTo = value; return this; } public ArrayList getKittingUnitsBetween() { return KittingUnitsBetween; } public SO_LinesQuery setKittingUnitsBetween(ArrayList value) { this.KittingUnitsBetween = value; return this; } public ArrayList getKittingUnitsIn() { return KittingUnitsIn; } public SO_LinesQuery setKittingUnitsIn(ArrayList value) { this.KittingUnitsIn = value; return this; } public String getJobConnectorID() { return JobConnectorID; } public SO_LinesQuery setJobConnectorID(String value) { this.JobConnectorID = value; return this; } public String getJobConnectorIDStartsWith() { return JobConnectorIDStartsWith; } public SO_LinesQuery setJobConnectorIDStartsWith(String value) { this.JobConnectorIDStartsWith = value; return this; } public String getJobConnectorIDEndsWith() { return JobConnectorIDEndsWith; } public SO_LinesQuery setJobConnectorIDEndsWith(String value) { this.JobConnectorIDEndsWith = value; return this; } public String getJobConnectorIDContains() { return JobConnectorIDContains; } public SO_LinesQuery setJobConnectorIDContains(String value) { this.JobConnectorIDContains = value; return this; } public String getJobConnectorIDLike() { return JobConnectorIDLike; } public SO_LinesQuery setJobConnectorIDLike(String value) { this.JobConnectorIDLike = value; return this; } public ArrayList getJobConnectorIDBetween() { return JobConnectorIDBetween; } public SO_LinesQuery setJobConnectorIDBetween(ArrayList value) { this.JobConnectorIDBetween = value; return this; } public ArrayList getJobConnectorIDIn() { return JobConnectorIDIn; } public SO_LinesQuery setJobConnectorIDIn(ArrayList value) { this.JobConnectorIDIn = value; return this; } public Short getKitStyle() { return KitStyle; } public SO_LinesQuery setKitStyle(Short value) { this.KitStyle = value; return this; } public Short getKitStyleGreaterThanOrEqualTo() { return KitStyleGreaterThanOrEqualTo; } public SO_LinesQuery setKitStyleGreaterThanOrEqualTo(Short value) { this.KitStyleGreaterThanOrEqualTo = value; return this; } public Short getKitStyleGreaterThan() { return KitStyleGreaterThan; } public SO_LinesQuery setKitStyleGreaterThan(Short value) { this.KitStyleGreaterThan = value; return this; } public Short getKitStyleLessThan() { return KitStyleLessThan; } public SO_LinesQuery setKitStyleLessThan(Short value) { this.KitStyleLessThan = value; return this; } public Short getKitStyleLessThanOrEqualTo() { return KitStyleLessThanOrEqualTo; } public SO_LinesQuery setKitStyleLessThanOrEqualTo(Short value) { this.KitStyleLessThanOrEqualTo = value; return this; } public Short getKitStyleNotEqualTo() { return KitStyleNotEqualTo; } public SO_LinesQuery setKitStyleNotEqualTo(Short value) { this.KitStyleNotEqualTo = value; return this; } public ArrayList getKitStyleBetween() { return KitStyleBetween; } public SO_LinesQuery setKitStyleBetween(ArrayList value) { this.KitStyleBetween = value; return this; } public ArrayList getKitStyleIn() { return KitStyleIn; } public SO_LinesQuery setKitStyleIn(ArrayList value) { this.KitStyleIn = value; return this; } public BigDecimal getDiscountPercentage() { return DiscountPercentage; } public SO_LinesQuery setDiscountPercentage(BigDecimal value) { this.DiscountPercentage = value; return this; } public BigDecimal getDiscountPercentageGreaterThanOrEqualTo() { return DiscountPercentageGreaterThanOrEqualTo; } public SO_LinesQuery setDiscountPercentageGreaterThanOrEqualTo(BigDecimal value) { this.DiscountPercentageGreaterThanOrEqualTo = value; return this; } public BigDecimal getDiscountPercentageGreaterThan() { return DiscountPercentageGreaterThan; } public SO_LinesQuery setDiscountPercentageGreaterThan(BigDecimal value) { this.DiscountPercentageGreaterThan = value; return this; } public BigDecimal getDiscountPercentageLessThan() { return DiscountPercentageLessThan; } public SO_LinesQuery setDiscountPercentageLessThan(BigDecimal value) { this.DiscountPercentageLessThan = value; return this; } public BigDecimal getDiscountPercentageLessThanOrEqualTo() { return DiscountPercentageLessThanOrEqualTo; } public SO_LinesQuery setDiscountPercentageLessThanOrEqualTo(BigDecimal value) { this.DiscountPercentageLessThanOrEqualTo = value; return this; } public BigDecimal getDiscountPercentageNotEqualTo() { return DiscountPercentageNotEqualTo; } public SO_LinesQuery setDiscountPercentageNotEqualTo(BigDecimal value) { this.DiscountPercentageNotEqualTo = value; return this; } public ArrayList getDiscountPercentageBetween() { return DiscountPercentageBetween; } public SO_LinesQuery setDiscountPercentageBetween(ArrayList value) { this.DiscountPercentageBetween = value; return this; } public ArrayList getDiscountPercentageIn() { return DiscountPercentageIn; } public SO_LinesQuery setDiscountPercentageIn(ArrayList value) { this.DiscountPercentageIn = value; return this; } public BigDecimal getSalesmanCost() { return SalesmanCost; } public SO_LinesQuery setSalesmanCost(BigDecimal value) { this.SalesmanCost = value; return this; } public BigDecimal getSalesmanCostGreaterThanOrEqualTo() { return SalesmanCostGreaterThanOrEqualTo; } public SO_LinesQuery setSalesmanCostGreaterThanOrEqualTo(BigDecimal value) { this.SalesmanCostGreaterThanOrEqualTo = value; return this; } public BigDecimal getSalesmanCostGreaterThan() { return SalesmanCostGreaterThan; } public SO_LinesQuery setSalesmanCostGreaterThan(BigDecimal value) { this.SalesmanCostGreaterThan = value; return this; } public BigDecimal getSalesmanCostLessThan() { return SalesmanCostLessThan; } public SO_LinesQuery setSalesmanCostLessThan(BigDecimal value) { this.SalesmanCostLessThan = value; return this; } public BigDecimal getSalesmanCostLessThanOrEqualTo() { return SalesmanCostLessThanOrEqualTo; } public SO_LinesQuery setSalesmanCostLessThanOrEqualTo(BigDecimal value) { this.SalesmanCostLessThanOrEqualTo = value; return this; } public BigDecimal getSalesmanCostNotEqualTo() { return SalesmanCostNotEqualTo; } public SO_LinesQuery setSalesmanCostNotEqualTo(BigDecimal value) { this.SalesmanCostNotEqualTo = value; return this; } public ArrayList getSalesmanCostBetween() { return SalesmanCostBetween; } public SO_LinesQuery setSalesmanCostBetween(ArrayList value) { this.SalesmanCostBetween = value; return this; } public ArrayList getSalesmanCostIn() { return SalesmanCostIn; } public SO_LinesQuery setSalesmanCostIn(ArrayList value) { this.SalesmanCostIn = value; return this; } public BigDecimal getLineCost() { return LineCost; } public SO_LinesQuery setLineCost(BigDecimal value) { this.LineCost = value; return this; } public BigDecimal getLineCostGreaterThanOrEqualTo() { return LineCostGreaterThanOrEqualTo; } public SO_LinesQuery setLineCostGreaterThanOrEqualTo(BigDecimal value) { this.LineCostGreaterThanOrEqualTo = value; return this; } public BigDecimal getLineCostGreaterThan() { return LineCostGreaterThan; } public SO_LinesQuery setLineCostGreaterThan(BigDecimal value) { this.LineCostGreaterThan = value; return this; } public BigDecimal getLineCostLessThan() { return LineCostLessThan; } public SO_LinesQuery setLineCostLessThan(BigDecimal value) { this.LineCostLessThan = value; return this; } public BigDecimal getLineCostLessThanOrEqualTo() { return LineCostLessThanOrEqualTo; } public SO_LinesQuery setLineCostLessThanOrEqualTo(BigDecimal value) { this.LineCostLessThanOrEqualTo = value; return this; } public BigDecimal getLineCostNotEqualTo() { return LineCostNotEqualTo; } public SO_LinesQuery setLineCostNotEqualTo(BigDecimal value) { this.LineCostNotEqualTo = value; return this; } public ArrayList getLineCostBetween() { return LineCostBetween; } public SO_LinesQuery setLineCostBetween(ArrayList value) { this.LineCostBetween = value; return this; } public ArrayList getLineCostIn() { return LineCostIn; } public SO_LinesQuery setLineCostIn(ArrayList value) { this.LineCostIn = value; return this; } public String getOrigInvoiceNo() { return OrigInvoiceNo; } public SO_LinesQuery setOrigInvoiceNo(String value) { this.OrigInvoiceNo = value; return this; } public String getOrigInvoiceNoStartsWith() { return OrigInvoiceNoStartsWith; } public SO_LinesQuery setOrigInvoiceNoStartsWith(String value) { this.OrigInvoiceNoStartsWith = value; return this; } public String getOrigInvoiceNoEndsWith() { return OrigInvoiceNoEndsWith; } public SO_LinesQuery setOrigInvoiceNoEndsWith(String value) { this.OrigInvoiceNoEndsWith = value; return this; } public String getOrigInvoiceNoContains() { return OrigInvoiceNoContains; } public SO_LinesQuery setOrigInvoiceNoContains(String value) { this.OrigInvoiceNoContains = value; return this; } public String getOrigInvoiceNoLike() { return OrigInvoiceNoLike; } public SO_LinesQuery setOrigInvoiceNoLike(String value) { this.OrigInvoiceNoLike = value; return this; } public ArrayList getOrigInvoiceNoBetween() { return OrigInvoiceNoBetween; } public SO_LinesQuery setOrigInvoiceNoBetween(ArrayList value) { this.OrigInvoiceNoBetween = value; return this; } public ArrayList getOrigInvoiceNoIn() { return OrigInvoiceNoIn; } public SO_LinesQuery setOrigInvoiceNoIn(ArrayList value) { this.OrigInvoiceNoIn = value; return this; } public BigDecimal getItemPriceIncGST() { return ItemPriceIncGST; } public SO_LinesQuery setItemPriceIncGST(BigDecimal value) { this.ItemPriceIncGST = value; return this; } public BigDecimal getItemPriceIncGSTGreaterThanOrEqualTo() { return ItemPriceIncGSTGreaterThanOrEqualTo; } public SO_LinesQuery setItemPriceIncGSTGreaterThanOrEqualTo(BigDecimal value) { this.ItemPriceIncGSTGreaterThanOrEqualTo = value; return this; } public BigDecimal getItemPriceIncGSTGreaterThan() { return ItemPriceIncGSTGreaterThan; } public SO_LinesQuery setItemPriceIncGSTGreaterThan(BigDecimal value) { this.ItemPriceIncGSTGreaterThan = value; return this; } public BigDecimal getItemPriceIncGSTLessThan() { return ItemPriceIncGSTLessThan; } public SO_LinesQuery setItemPriceIncGSTLessThan(BigDecimal value) { this.ItemPriceIncGSTLessThan = value; return this; } public BigDecimal getItemPriceIncGSTLessThanOrEqualTo() { return ItemPriceIncGSTLessThanOrEqualTo; } public SO_LinesQuery setItemPriceIncGSTLessThanOrEqualTo(BigDecimal value) { this.ItemPriceIncGSTLessThanOrEqualTo = value; return this; } public BigDecimal getItemPriceIncGSTNotEqualTo() { return ItemPriceIncGSTNotEqualTo; } public SO_LinesQuery setItemPriceIncGSTNotEqualTo(BigDecimal value) { this.ItemPriceIncGSTNotEqualTo = value; return this; } public ArrayList getItemPriceIncGSTBetween() { return ItemPriceIncGSTBetween; } public SO_LinesQuery setItemPriceIncGSTBetween(ArrayList value) { this.ItemPriceIncGSTBetween = value; return this; } public ArrayList getItemPriceIncGSTIn() { return ItemPriceIncGSTIn; } public SO_LinesQuery setItemPriceIncGSTIn(ArrayList value) { this.ItemPriceIncGSTIn = value; return this; } public BigDecimal getItemPriceUnDiscounted() { return ItemPriceUnDiscounted; } public SO_LinesQuery setItemPriceUnDiscounted(BigDecimal value) { this.ItemPriceUnDiscounted = value; return this; } public BigDecimal getItemPriceUnDiscountedGreaterThanOrEqualTo() { return ItemPriceUnDiscountedGreaterThanOrEqualTo; } public SO_LinesQuery setItemPriceUnDiscountedGreaterThanOrEqualTo(BigDecimal value) { this.ItemPriceUnDiscountedGreaterThanOrEqualTo = value; return this; } public BigDecimal getItemPriceUnDiscountedGreaterThan() { return ItemPriceUnDiscountedGreaterThan; } public SO_LinesQuery setItemPriceUnDiscountedGreaterThan(BigDecimal value) { this.ItemPriceUnDiscountedGreaterThan = value; return this; } public BigDecimal getItemPriceUnDiscountedLessThan() { return ItemPriceUnDiscountedLessThan; } public SO_LinesQuery setItemPriceUnDiscountedLessThan(BigDecimal value) { this.ItemPriceUnDiscountedLessThan = value; return this; } public BigDecimal getItemPriceUnDiscountedLessThanOrEqualTo() { return ItemPriceUnDiscountedLessThanOrEqualTo; } public SO_LinesQuery setItemPriceUnDiscountedLessThanOrEqualTo(BigDecimal value) { this.ItemPriceUnDiscountedLessThanOrEqualTo = value; return this; } public BigDecimal getItemPriceUnDiscountedNotEqualTo() { return ItemPriceUnDiscountedNotEqualTo; } public SO_LinesQuery setItemPriceUnDiscountedNotEqualTo(BigDecimal value) { this.ItemPriceUnDiscountedNotEqualTo = value; return this; } public ArrayList getItemPriceUnDiscountedBetween() { return ItemPriceUnDiscountedBetween; } public SO_LinesQuery setItemPriceUnDiscountedBetween(ArrayList value) { this.ItemPriceUnDiscountedBetween = value; return this; } public ArrayList getItemPriceUnDiscountedIn() { return ItemPriceUnDiscountedIn; } public SO_LinesQuery setItemPriceUnDiscountedIn(ArrayList value) { this.ItemPriceUnDiscountedIn = value; return this; } public BigDecimal getDemandQuantity() { return DemandQuantity; } public SO_LinesQuery setDemandQuantity(BigDecimal value) { this.DemandQuantity = value; return this; } public BigDecimal getDemandQuantityGreaterThanOrEqualTo() { return DemandQuantityGreaterThanOrEqualTo; } public SO_LinesQuery setDemandQuantityGreaterThanOrEqualTo(BigDecimal value) { this.DemandQuantityGreaterThanOrEqualTo = value; return this; } public BigDecimal getDemandQuantityGreaterThan() { return DemandQuantityGreaterThan; } public SO_LinesQuery setDemandQuantityGreaterThan(BigDecimal value) { this.DemandQuantityGreaterThan = value; return this; } public BigDecimal getDemandQuantityLessThan() { return DemandQuantityLessThan; } public SO_LinesQuery setDemandQuantityLessThan(BigDecimal value) { this.DemandQuantityLessThan = value; return this; } public BigDecimal getDemandQuantityLessThanOrEqualTo() { return DemandQuantityLessThanOrEqualTo; } public SO_LinesQuery setDemandQuantityLessThanOrEqualTo(BigDecimal value) { this.DemandQuantityLessThanOrEqualTo = value; return this; } public BigDecimal getDemandQuantityNotEqualTo() { return DemandQuantityNotEqualTo; } public SO_LinesQuery setDemandQuantityNotEqualTo(BigDecimal value) { this.DemandQuantityNotEqualTo = value; return this; } public ArrayList getDemandQuantityBetween() { return DemandQuantityBetween; } public SO_LinesQuery setDemandQuantityBetween(ArrayList value) { this.DemandQuantityBetween = value; return this; } public ArrayList getDemandQuantityIn() { return DemandQuantityIn; } public SO_LinesQuery setDemandQuantityIn(ArrayList value) { this.DemandQuantityIn = value; return this; } public String getNonStockLedgerSalesAccID() { return NonStockLedgerSalesAccID; } public SO_LinesQuery setNonStockLedgerSalesAccID(String value) { this.NonStockLedgerSalesAccID = value; return this; } public String getNonStockLedgerSalesAccIDStartsWith() { return NonStockLedgerSalesAccIDStartsWith; } public SO_LinesQuery setNonStockLedgerSalesAccIDStartsWith(String value) { this.NonStockLedgerSalesAccIDStartsWith = value; return this; } public String getNonStockLedgerSalesAccIDEndsWith() { return NonStockLedgerSalesAccIDEndsWith; } public SO_LinesQuery setNonStockLedgerSalesAccIDEndsWith(String value) { this.NonStockLedgerSalesAccIDEndsWith = value; return this; } public String getNonStockLedgerSalesAccIDContains() { return NonStockLedgerSalesAccIDContains; } public SO_LinesQuery setNonStockLedgerSalesAccIDContains(String value) { this.NonStockLedgerSalesAccIDContains = value; return this; } public String getNonStockLedgerSalesAccIDLike() { return NonStockLedgerSalesAccIDLike; } public SO_LinesQuery setNonStockLedgerSalesAccIDLike(String value) { this.NonStockLedgerSalesAccIDLike = value; return this; } public ArrayList getNonStockLedgerSalesAccIDBetween() { return NonStockLedgerSalesAccIDBetween; } public SO_LinesQuery setNonStockLedgerSalesAccIDBetween(ArrayList value) { this.NonStockLedgerSalesAccIDBetween = value; return this; } public ArrayList getNonStockLedgerSalesAccIDIn() { return NonStockLedgerSalesAccIDIn; } public SO_LinesQuery setNonStockLedgerSalesAccIDIn(ArrayList value) { this.NonStockLedgerSalesAccIDIn = value; return this; } public String getKitLineID() { return KitLineID; } public SO_LinesQuery setKitLineID(String value) { this.KitLineID = value; return this; } public String getKitLineIDStartsWith() { return KitLineIDStartsWith; } public SO_LinesQuery setKitLineIDStartsWith(String value) { this.KitLineIDStartsWith = value; return this; } public String getKitLineIDEndsWith() { return KitLineIDEndsWith; } public SO_LinesQuery setKitLineIDEndsWith(String value) { this.KitLineIDEndsWith = value; return this; } public String getKitLineIDContains() { return KitLineIDContains; } public SO_LinesQuery setKitLineIDContains(String value) { this.KitLineIDContains = value; return this; } public String getKitLineIDLike() { return KitLineIDLike; } public SO_LinesQuery setKitLineIDLike(String value) { this.KitLineIDLike = value; return this; } public ArrayList getKitLineIDBetween() { return KitLineIDBetween; } public SO_LinesQuery setKitLineIDBetween(ArrayList value) { this.KitLineIDBetween = value; return this; } public ArrayList getKitLineIDIn() { return KitLineIDIn; } public SO_LinesQuery setKitLineIDIn(ArrayList value) { this.KitLineIDIn = value; return this; } public String getJobCostNo() { return JobCostNo; } public SO_LinesQuery setJobCostNo(String value) { this.JobCostNo = value; return this; } public String getJobCostNoStartsWith() { return JobCostNoStartsWith; } public SO_LinesQuery setJobCostNoStartsWith(String value) { this.JobCostNoStartsWith = value; return this; } public String getJobCostNoEndsWith() { return JobCostNoEndsWith; } public SO_LinesQuery setJobCostNoEndsWith(String value) { this.JobCostNoEndsWith = value; return this; } public String getJobCostNoContains() { return JobCostNoContains; } public SO_LinesQuery setJobCostNoContains(String value) { this.JobCostNoContains = value; return this; } public String getJobCostNoLike() { return JobCostNoLike; } public SO_LinesQuery setJobCostNoLike(String value) { this.JobCostNoLike = value; return this; } public ArrayList getJobCostNoBetween() { return JobCostNoBetween; } public SO_LinesQuery setJobCostNoBetween(ArrayList value) { this.JobCostNoBetween = value; return this; } public ArrayList getJobCostNoIn() { return JobCostNoIn; } public SO_LinesQuery setJobCostNoIn(ArrayList value) { this.JobCostNoIn = value; return this; } public Boolean isSellPriceIncTax() { return SellPriceIncTax; } public SO_LinesQuery setSellPriceIncTax(Boolean value) { this.SellPriceIncTax = value; return this; } public Short getJobInvoiceItem() { return JobInvoiceItem; } public SO_LinesQuery setJobInvoiceItem(Short value) { this.JobInvoiceItem = value; return this; } public Short getJobInvoiceItemGreaterThanOrEqualTo() { return JobInvoiceItemGreaterThanOrEqualTo; } public SO_LinesQuery setJobInvoiceItemGreaterThanOrEqualTo(Short value) { this.JobInvoiceItemGreaterThanOrEqualTo = value; return this; } public Short getJobInvoiceItemGreaterThan() { return JobInvoiceItemGreaterThan; } public SO_LinesQuery setJobInvoiceItemGreaterThan(Short value) { this.JobInvoiceItemGreaterThan = value; return this; } public Short getJobInvoiceItemLessThan() { return JobInvoiceItemLessThan; } public SO_LinesQuery setJobInvoiceItemLessThan(Short value) { this.JobInvoiceItemLessThan = value; return this; } public Short getJobInvoiceItemLessThanOrEqualTo() { return JobInvoiceItemLessThanOrEqualTo; } public SO_LinesQuery setJobInvoiceItemLessThanOrEqualTo(Short value) { this.JobInvoiceItemLessThanOrEqualTo = value; return this; } public Short getJobInvoiceItemNotEqualTo() { return JobInvoiceItemNotEqualTo; } public SO_LinesQuery setJobInvoiceItemNotEqualTo(Short value) { this.JobInvoiceItemNotEqualTo = value; return this; } public ArrayList getJobInvoiceItemBetween() { return JobInvoiceItemBetween; } public SO_LinesQuery setJobInvoiceItemBetween(ArrayList value) { this.JobInvoiceItemBetween = value; return this; } public ArrayList getJobInvoiceItemIn() { return JobInvoiceItemIn; } public SO_LinesQuery setJobInvoiceItemIn(ArrayList value) { this.JobInvoiceItemIn = value; return this; } public BigDecimal getQuantityPrevDemand() { return QuantityPrevDemand; } public SO_LinesQuery setQuantityPrevDemand(BigDecimal value) { this.QuantityPrevDemand = value; return this; } public BigDecimal getQuantityPrevDemandGreaterThanOrEqualTo() { return QuantityPrevDemandGreaterThanOrEqualTo; } public SO_LinesQuery setQuantityPrevDemandGreaterThanOrEqualTo(BigDecimal value) { this.QuantityPrevDemandGreaterThanOrEqualTo = value; return this; } public BigDecimal getQuantityPrevDemandGreaterThan() { return QuantityPrevDemandGreaterThan; } public SO_LinesQuery setQuantityPrevDemandGreaterThan(BigDecimal value) { this.QuantityPrevDemandGreaterThan = value; return this; } public BigDecimal getQuantityPrevDemandLessThan() { return QuantityPrevDemandLessThan; } public SO_LinesQuery setQuantityPrevDemandLessThan(BigDecimal value) { this.QuantityPrevDemandLessThan = value; return this; } public BigDecimal getQuantityPrevDemandLessThanOrEqualTo() { return QuantityPrevDemandLessThanOrEqualTo; } public SO_LinesQuery setQuantityPrevDemandLessThanOrEqualTo(BigDecimal value) { this.QuantityPrevDemandLessThanOrEqualTo = value; return this; } public BigDecimal getQuantityPrevDemandNotEqualTo() { return QuantityPrevDemandNotEqualTo; } public SO_LinesQuery setQuantityPrevDemandNotEqualTo(BigDecimal value) { this.QuantityPrevDemandNotEqualTo = value; return this; } public ArrayList getQuantityPrevDemandBetween() { return QuantityPrevDemandBetween; } public SO_LinesQuery setQuantityPrevDemandBetween(ArrayList value) { this.QuantityPrevDemandBetween = value; return this; } public ArrayList getQuantityPrevDemandIn() { return QuantityPrevDemandIn; } public SO_LinesQuery setQuantityPrevDemandIn(ArrayList value) { this.QuantityPrevDemandIn = value; return this; } public String getJobID() { return JobID; } public SO_LinesQuery setJobID(String value) { this.JobID = value; return this; } public String getJobIDStartsWith() { return JobIDStartsWith; } public SO_LinesQuery setJobIDStartsWith(String value) { this.JobIDStartsWith = value; return this; } public String getJobIDEndsWith() { return JobIDEndsWith; } public SO_LinesQuery setJobIDEndsWith(String value) { this.JobIDEndsWith = value; return this; } public String getJobIDContains() { return JobIDContains; } public SO_LinesQuery setJobIDContains(String value) { this.JobIDContains = value; return this; } public String getJobIDLike() { return JobIDLike; } public SO_LinesQuery setJobIDLike(String value) { this.JobIDLike = value; return this; } public ArrayList getJobIDBetween() { return JobIDBetween; } public SO_LinesQuery setJobIDBetween(ArrayList value) { this.JobIDBetween = value; return this; } public ArrayList getJobIDIn() { return JobIDIn; } public SO_LinesQuery setJobIDIn(ArrayList value) { this.JobIDIn = value; return this; } public String getCostCentreID() { return CostCentreID; } public SO_LinesQuery setCostCentreID(String value) { this.CostCentreID = value; return this; } public String getCostCentreIDStartsWith() { return CostCentreIDStartsWith; } public SO_LinesQuery setCostCentreIDStartsWith(String value) { this.CostCentreIDStartsWith = value; return this; } public String getCostCentreIDEndsWith() { return CostCentreIDEndsWith; } public SO_LinesQuery setCostCentreIDEndsWith(String value) { this.CostCentreIDEndsWith = value; return this; } public String getCostCentreIDContains() { return CostCentreIDContains; } public SO_LinesQuery setCostCentreIDContains(String value) { this.CostCentreIDContains = value; return this; } public String getCostCentreIDLike() { return CostCentreIDLike; } public SO_LinesQuery setCostCentreIDLike(String value) { this.CostCentreIDLike = value; return this; } public ArrayList getCostCentreIDBetween() { return CostCentreIDBetween; } public SO_LinesQuery setCostCentreIDBetween(ArrayList value) { this.CostCentreIDBetween = value; return this; } public ArrayList getCostCentreIDIn() { return CostCentreIDIn; } public SO_LinesQuery setCostCentreIDIn(ArrayList value) { this.CostCentreIDIn = value; return this; } public String getStageID() { return StageID; } public SO_LinesQuery setStageID(String value) { this.StageID = value; return this; } public String getStageIDStartsWith() { return StageIDStartsWith; } public SO_LinesQuery setStageIDStartsWith(String value) { this.StageIDStartsWith = value; return this; } public String getStageIDEndsWith() { return StageIDEndsWith; } public SO_LinesQuery setStageIDEndsWith(String value) { this.StageIDEndsWith = value; return this; } public String getStageIDContains() { return StageIDContains; } public SO_LinesQuery setStageIDContains(String value) { this.StageIDContains = value; return this; } public String getStageIDLike() { return StageIDLike; } public SO_LinesQuery setStageIDLike(String value) { this.StageIDLike = value; return this; } public ArrayList getStageIDBetween() { return StageIDBetween; } public SO_LinesQuery setStageIDBetween(ArrayList value) { this.StageIDBetween = value; return this; } public ArrayList getStageIDIn() { return StageIDIn; } public SO_LinesQuery setStageIDIn(ArrayList value) { this.StageIDIn = value; return this; } public BigDecimal getUserDefinedFloat1() { return UserDefinedFloat1; } public SO_LinesQuery setUserDefinedFloat1(BigDecimal value) { this.UserDefinedFloat1 = value; return this; } public BigDecimal getUserDefinedFloat1GreaterThanOrEqualTo() { return UserDefinedFloat1GreaterThanOrEqualTo; } public SO_LinesQuery setUserDefinedFloat1GreaterThanOrEqualTo(BigDecimal value) { this.UserDefinedFloat1GreaterThanOrEqualTo = value; return this; } public BigDecimal getUserDefinedFloat1GreaterThan() { return UserDefinedFloat1GreaterThan; } public SO_LinesQuery setUserDefinedFloat1GreaterThan(BigDecimal value) { this.UserDefinedFloat1GreaterThan = value; return this; } public BigDecimal getUserDefinedFloat1LessThan() { return UserDefinedFloat1LessThan; } public SO_LinesQuery setUserDefinedFloat1LessThan(BigDecimal value) { this.UserDefinedFloat1LessThan = value; return this; } public BigDecimal getUserDefinedFloat1LessThanOrEqualTo() { return UserDefinedFloat1LessThanOrEqualTo; } public SO_LinesQuery setUserDefinedFloat1LessThanOrEqualTo(BigDecimal value) { this.UserDefinedFloat1LessThanOrEqualTo = value; return this; } public BigDecimal getUserDefinedFloat1NotEqualTo() { return UserDefinedFloat1NotEqualTo; } public SO_LinesQuery setUserDefinedFloat1NotEqualTo(BigDecimal value) { this.UserDefinedFloat1NotEqualTo = value; return this; } public ArrayList getUserDefinedFloat1Between() { return UserDefinedFloat1Between; } public SO_LinesQuery setUserDefinedFloat1Between(ArrayList value) { this.UserDefinedFloat1Between = value; return this; } public ArrayList getUserDefinedFloat1In() { return UserDefinedFloat1In; } public SO_LinesQuery setUserDefinedFloat1In(ArrayList value) { this.UserDefinedFloat1In = value; return this; } public BigDecimal getUserDefinedFloat2() { return UserDefinedFloat2; } public SO_LinesQuery setUserDefinedFloat2(BigDecimal value) { this.UserDefinedFloat2 = value; return this; } public BigDecimal getUserDefinedFloat2GreaterThanOrEqualTo() { return UserDefinedFloat2GreaterThanOrEqualTo; } public SO_LinesQuery setUserDefinedFloat2GreaterThanOrEqualTo(BigDecimal value) { this.UserDefinedFloat2GreaterThanOrEqualTo = value; return this; } public BigDecimal getUserDefinedFloat2GreaterThan() { return UserDefinedFloat2GreaterThan; } public SO_LinesQuery setUserDefinedFloat2GreaterThan(BigDecimal value) { this.UserDefinedFloat2GreaterThan = value; return this; } public BigDecimal getUserDefinedFloat2LessThan() { return UserDefinedFloat2LessThan; } public SO_LinesQuery setUserDefinedFloat2LessThan(BigDecimal value) { this.UserDefinedFloat2LessThan = value; return this; } public BigDecimal getUserDefinedFloat2LessThanOrEqualTo() { return UserDefinedFloat2LessThanOrEqualTo; } public SO_LinesQuery setUserDefinedFloat2LessThanOrEqualTo(BigDecimal value) { this.UserDefinedFloat2LessThanOrEqualTo = value; return this; } public BigDecimal getUserDefinedFloat2NotEqualTo() { return UserDefinedFloat2NotEqualTo; } public SO_LinesQuery setUserDefinedFloat2NotEqualTo(BigDecimal value) { this.UserDefinedFloat2NotEqualTo = value; return this; } public ArrayList getUserDefinedFloat2Between() { return UserDefinedFloat2Between; } public SO_LinesQuery setUserDefinedFloat2Between(ArrayList value) { this.UserDefinedFloat2Between = value; return this; } public ArrayList getUserDefinedFloat2In() { return UserDefinedFloat2In; } public SO_LinesQuery setUserDefinedFloat2In(ArrayList value) { this.UserDefinedFloat2In = value; return this; } public BigDecimal getUserDefinedFloat3() { return UserDefinedFloat3; } public SO_LinesQuery setUserDefinedFloat3(BigDecimal value) { this.UserDefinedFloat3 = value; return this; } public BigDecimal getUserDefinedFloat3GreaterThanOrEqualTo() { return UserDefinedFloat3GreaterThanOrEqualTo; } public SO_LinesQuery setUserDefinedFloat3GreaterThanOrEqualTo(BigDecimal value) { this.UserDefinedFloat3GreaterThanOrEqualTo = value; return this; } public BigDecimal getUserDefinedFloat3GreaterThan() { return UserDefinedFloat3GreaterThan; } public SO_LinesQuery setUserDefinedFloat3GreaterThan(BigDecimal value) { this.UserDefinedFloat3GreaterThan = value; return this; } public BigDecimal getUserDefinedFloat3LessThan() { return UserDefinedFloat3LessThan; } public SO_LinesQuery setUserDefinedFloat3LessThan(BigDecimal value) { this.UserDefinedFloat3LessThan = value; return this; } public BigDecimal getUserDefinedFloat3LessThanOrEqualTo() { return UserDefinedFloat3LessThanOrEqualTo; } public SO_LinesQuery setUserDefinedFloat3LessThanOrEqualTo(BigDecimal value) { this.UserDefinedFloat3LessThanOrEqualTo = value; return this; } public BigDecimal getUserDefinedFloat3NotEqualTo() { return UserDefinedFloat3NotEqualTo; } public SO_LinesQuery setUserDefinedFloat3NotEqualTo(BigDecimal value) { this.UserDefinedFloat3NotEqualTo = value; return this; } public ArrayList getUserDefinedFloat3Between() { return UserDefinedFloat3Between; } public SO_LinesQuery setUserDefinedFloat3Between(ArrayList value) { this.UserDefinedFloat3Between = value; return this; } public ArrayList getUserDefinedFloat3In() { return UserDefinedFloat3In; } public SO_LinesQuery setUserDefinedFloat3In(ArrayList value) { this.UserDefinedFloat3In = value; return this; } public Date getForwardOrderDate() { return ForwardOrderDate; } public SO_LinesQuery setForwardOrderDate(Date value) { this.ForwardOrderDate = value; return this; } public Date getForwardOrderDateGreaterThanOrEqualTo() { return ForwardOrderDateGreaterThanOrEqualTo; } public SO_LinesQuery setForwardOrderDateGreaterThanOrEqualTo(Date value) { this.ForwardOrderDateGreaterThanOrEqualTo = value; return this; } public Date getForwardOrderDateGreaterThan() { return ForwardOrderDateGreaterThan; } public SO_LinesQuery setForwardOrderDateGreaterThan(Date value) { this.ForwardOrderDateGreaterThan = value; return this; } public Date getForwardOrderDateLessThan() { return ForwardOrderDateLessThan; } public SO_LinesQuery setForwardOrderDateLessThan(Date value) { this.ForwardOrderDateLessThan = value; return this; } public Date getForwardOrderDateLessThanOrEqualTo() { return ForwardOrderDateLessThanOrEqualTo; } public SO_LinesQuery setForwardOrderDateLessThanOrEqualTo(Date value) { this.ForwardOrderDateLessThanOrEqualTo = value; return this; } public Date getForwardOrderDateNotEqualTo() { return ForwardOrderDateNotEqualTo; } public SO_LinesQuery setForwardOrderDateNotEqualTo(Date value) { this.ForwardOrderDateNotEqualTo = value; return this; } public ArrayList getForwardOrderDateBetween() { return ForwardOrderDateBetween; } public SO_LinesQuery setForwardOrderDateBetween(ArrayList value) { this.ForwardOrderDateBetween = value; return this; } public ArrayList getForwardOrderDateIn() { return ForwardOrderDateIn; } public SO_LinesQuery setForwardOrderDateIn(ArrayList value) { this.ForwardOrderDateIn = value; return this; } public Date getScheduledDate() { return ScheduledDate; } public SO_LinesQuery setScheduledDate(Date value) { this.ScheduledDate = value; return this; } public Date getScheduledDateGreaterThanOrEqualTo() { return ScheduledDateGreaterThanOrEqualTo; } public SO_LinesQuery setScheduledDateGreaterThanOrEqualTo(Date value) { this.ScheduledDateGreaterThanOrEqualTo = value; return this; } public Date getScheduledDateGreaterThan() { return ScheduledDateGreaterThan; } public SO_LinesQuery setScheduledDateGreaterThan(Date value) { this.ScheduledDateGreaterThan = value; return this; } public Date getScheduledDateLessThan() { return ScheduledDateLessThan; } public SO_LinesQuery setScheduledDateLessThan(Date value) { this.ScheduledDateLessThan = value; return this; } public Date getScheduledDateLessThanOrEqualTo() { return ScheduledDateLessThanOrEqualTo; } public SO_LinesQuery setScheduledDateLessThanOrEqualTo(Date value) { this.ScheduledDateLessThanOrEqualTo = value; return this; } public Date getScheduledDateNotEqualTo() { return ScheduledDateNotEqualTo; } public SO_LinesQuery setScheduledDateNotEqualTo(Date value) { this.ScheduledDateNotEqualTo = value; return this; } public ArrayList getScheduledDateBetween() { return ScheduledDateBetween; } public SO_LinesQuery setScheduledDateBetween(ArrayList value) { this.ScheduledDateBetween = value; return this; } public ArrayList getScheduledDateIn() { return ScheduledDateIn; } public SO_LinesQuery setScheduledDateIn(ArrayList value) { this.ScheduledDateIn = value; return this; } public Boolean isDeliverStock() { return DeliverStock; } public SO_LinesQuery setDeliverStock(Boolean value) { this.DeliverStock = value; return this; } public Boolean isFixSellPrice() { return FixSellPrice; } public SO_LinesQuery setFixSellPrice(Boolean value) { this.FixSellPrice = value; return this; } public Boolean isTypeKitRounding() { return TypeKitRounding; } public SO_LinesQuery setTypeKitRounding(Boolean value) { this.TypeKitRounding = value; return this; } public String getEdiStoreLocationCode() { return EDIStoreLocationCode; } public SO_LinesQuery setEdiStoreLocationCode(String value) { this.EDIStoreLocationCode = value; return this; } public String getEdiStoreLocationCodeStartsWith() { return EDIStoreLocationCodeStartsWith; } public SO_LinesQuery setEdiStoreLocationCodeStartsWith(String value) { this.EDIStoreLocationCodeStartsWith = value; return this; } public String getEdiStoreLocationCodeEndsWith() { return EDIStoreLocationCodeEndsWith; } public SO_LinesQuery setEdiStoreLocationCodeEndsWith(String value) { this.EDIStoreLocationCodeEndsWith = value; return this; } public String getEdiStoreLocationCodeContains() { return EDIStoreLocationCodeContains; } public SO_LinesQuery setEdiStoreLocationCodeContains(String value) { this.EDIStoreLocationCodeContains = value; return this; } public String getEdiStoreLocationCodeLike() { return EDIStoreLocationCodeLike; } public SO_LinesQuery setEdiStoreLocationCodeLike(String value) { this.EDIStoreLocationCodeLike = value; return this; } public ArrayList getEdiStoreLocationCodeBetween() { return EDIStoreLocationCodeBetween; } public SO_LinesQuery setEdiStoreLocationCodeBetween(ArrayList value) { this.EDIStoreLocationCodeBetween = value; return this; } public ArrayList getEdiStoreLocationCodeIn() { return EDIStoreLocationCodeIn; } public SO_LinesQuery setEdiStoreLocationCodeIn(ArrayList value) { this.EDIStoreLocationCodeIn = value; return this; } public String getEdidcLocationCode() { return EDIDCLocationCode; } public SO_LinesQuery setEdidcLocationCode(String value) { this.EDIDCLocationCode = value; return this; } public String getEdidcLocationCodeStartsWith() { return EDIDCLocationCodeStartsWith; } public SO_LinesQuery setEdidcLocationCodeStartsWith(String value) { this.EDIDCLocationCodeStartsWith = value; return this; } public String getEdidcLocationCodeEndsWith() { return EDIDCLocationCodeEndsWith; } public SO_LinesQuery setEdidcLocationCodeEndsWith(String value) { this.EDIDCLocationCodeEndsWith = value; return this; } public String getEdidcLocationCodeContains() { return EDIDCLocationCodeContains; } public SO_LinesQuery setEdidcLocationCodeContains(String value) { this.EDIDCLocationCodeContains = value; return this; } public String getEdidcLocationCodeLike() { return EDIDCLocationCodeLike; } public SO_LinesQuery setEdidcLocationCodeLike(String value) { this.EDIDCLocationCodeLike = value; return this; } public ArrayList getEdidcLocationCodeBetween() { return EDIDCLocationCodeBetween; } public SO_LinesQuery setEdidcLocationCodeBetween(ArrayList value) { this.EDIDCLocationCodeBetween = value; return this; } public ArrayList getEdidcLocationCodeIn() { return EDIDCLocationCodeIn; } public SO_LinesQuery setEdidcLocationCodeIn(ArrayList value) { this.EDIDCLocationCodeIn = value; return this; } public String getSmPartsRecID() { return SM_Parts_RecID; } public SO_LinesQuery setSmPartsRecID(String value) { this.SM_Parts_RecID = value; return this; } public String getSmPartsRecIDStartsWith() { return SM_Parts_RecIDStartsWith; } public SO_LinesQuery setSmPartsRecIDStartsWith(String value) { this.SM_Parts_RecIDStartsWith = value; return this; } public String getSmPartsRecIDEndsWith() { return SM_Parts_RecIDEndsWith; } public SO_LinesQuery setSmPartsRecIDEndsWith(String value) { this.SM_Parts_RecIDEndsWith = value; return this; } public String getSmPartsRecIDContains() { return SM_Parts_RecIDContains; } public SO_LinesQuery setSmPartsRecIDContains(String value) { this.SM_Parts_RecIDContains = value; return this; } public String getSmPartsRecIDLike() { return SM_Parts_RecIDLike; } public SO_LinesQuery setSmPartsRecIDLike(String value) { this.SM_Parts_RecIDLike = value; return this; } public ArrayList getSmPartsRecIDBetween() { return SM_Parts_RecIDBetween; } public SO_LinesQuery setSmPartsRecIDBetween(ArrayList value) { this.SM_Parts_RecIDBetween = value; return this; } public ArrayList getSmPartsRecIDIn() { return SM_Parts_RecIDIn; } public SO_LinesQuery setSmPartsRecIDIn(ArrayList value) { this.SM_Parts_RecIDIn = value; return this; } public String getSmLabourRecID() { return SM_Labour_RecID; } public SO_LinesQuery setSmLabourRecID(String value) { this.SM_Labour_RecID = value; return this; } public String getSmLabourRecIDStartsWith() { return SM_Labour_RecIDStartsWith; } public SO_LinesQuery setSmLabourRecIDStartsWith(String value) { this.SM_Labour_RecIDStartsWith = value; return this; } public String getSmLabourRecIDEndsWith() { return SM_Labour_RecIDEndsWith; } public SO_LinesQuery setSmLabourRecIDEndsWith(String value) { this.SM_Labour_RecIDEndsWith = value; return this; } public String getSmLabourRecIDContains() { return SM_Labour_RecIDContains; } public SO_LinesQuery setSmLabourRecIDContains(String value) { this.SM_Labour_RecIDContains = value; return this; } public String getSmLabourRecIDLike() { return SM_Labour_RecIDLike; } public SO_LinesQuery setSmLabourRecIDLike(String value) { this.SM_Labour_RecIDLike = value; return this; } public ArrayList getSmLabourRecIDBetween() { return SM_Labour_RecIDBetween; } public SO_LinesQuery setSmLabourRecIDBetween(ArrayList value) { this.SM_Labour_RecIDBetween = value; return this; } public ArrayList getSmLabourRecIDIn() { return SM_Labour_RecIDIn; } public SO_LinesQuery setSmLabourRecIDIn(ArrayList value) { this.SM_Labour_RecIDIn = value; return this; } public UUID getInUnitOfMeasureRecID() { return IN_UnitOfMeasure_RecID; } public SO_LinesQuery setInUnitOfMeasureRecID(UUID value) { this.IN_UnitOfMeasure_RecID = value; return this; } public ArrayList getInUnitOfMeasureRecIDIn() { return IN_UnitOfMeasure_RecIDIn; } public SO_LinesQuery setInUnitOfMeasureRecIDIn(ArrayList value) { this.IN_UnitOfMeasure_RecIDIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class SO_LineSerialsQuery extends QueryDb implements IReturn> { public String RecID = null; public String RecIDStartsWith = null; public String RecIDEndsWith = null; public String RecIDContains = null; public String RecIDLike = null; public ArrayList RecIDBetween = null; public ArrayList RecIDIn = null; public String SOLineID = null; public String SOLineIDStartsWith = null; public String SOLineIDEndsWith = null; public String SOLineIDContains = null; public String SOLineIDLike = null; public ArrayList SOLineIDBetween = null; public ArrayList SOLineIDIn = null; public String InvoiceID = null; public String InvoiceIDStartsWith = null; public String InvoiceIDEndsWith = null; public String InvoiceIDContains = null; public String InvoiceIDLike = null; public ArrayList InvoiceIDBetween = null; public ArrayList InvoiceIDIn = null; public String HistoryID = null; public String HistoryIDStartsWith = null; public String HistoryIDEndsWith = null; public String HistoryIDContains = null; public String HistoryIDLike = null; public ArrayList HistoryIDBetween = null; public ArrayList HistoryIDIn = null; public Short LineNum = null; public Short LineNumGreaterThanOrEqualTo = null; public Short LineNumGreaterThan = null; public Short LineNumLessThan = null; public Short LineNumLessThanOrEqualTo = null; public Short LineNumNotEqualTo = null; public ArrayList LineNumBetween = null; public ArrayList LineNumIn = null; public String SerialNo = null; public String SerialNoStartsWith = null; public String SerialNoEndsWith = null; public String SerialNoContains = null; public String SerialNoLike = null; public ArrayList SerialNoBetween = null; public ArrayList SerialNoIn = null; public BigDecimal Quantity = null; public BigDecimal QuantityGreaterThanOrEqualTo = null; public BigDecimal QuantityGreaterThan = null; public BigDecimal QuantityLessThan = null; public BigDecimal QuantityLessThanOrEqualTo = null; public BigDecimal QuantityNotEqualTo = null; public ArrayList QuantityBetween = null; public ArrayList QuantityIn = null; public String getRecID() { return RecID; } public SO_LineSerialsQuery setRecID(String value) { this.RecID = value; return this; } public String getRecIDStartsWith() { return RecIDStartsWith; } public SO_LineSerialsQuery setRecIDStartsWith(String value) { this.RecIDStartsWith = value; return this; } public String getRecIDEndsWith() { return RecIDEndsWith; } public SO_LineSerialsQuery setRecIDEndsWith(String value) { this.RecIDEndsWith = value; return this; } public String getRecIDContains() { return RecIDContains; } public SO_LineSerialsQuery setRecIDContains(String value) { this.RecIDContains = value; return this; } public String getRecIDLike() { return RecIDLike; } public SO_LineSerialsQuery setRecIDLike(String value) { this.RecIDLike = value; return this; } public ArrayList getRecIDBetween() { return RecIDBetween; } public SO_LineSerialsQuery setRecIDBetween(ArrayList value) { this.RecIDBetween = value; return this; } public ArrayList getRecIDIn() { return RecIDIn; } public SO_LineSerialsQuery setRecIDIn(ArrayList value) { this.RecIDIn = value; return this; } public String getSoLineID() { return SOLineID; } public SO_LineSerialsQuery setSoLineID(String value) { this.SOLineID = value; return this; } public String getSoLineIDStartsWith() { return SOLineIDStartsWith; } public SO_LineSerialsQuery setSoLineIDStartsWith(String value) { this.SOLineIDStartsWith = value; return this; } public String getSoLineIDEndsWith() { return SOLineIDEndsWith; } public SO_LineSerialsQuery setSoLineIDEndsWith(String value) { this.SOLineIDEndsWith = value; return this; } public String getSoLineIDContains() { return SOLineIDContains; } public SO_LineSerialsQuery setSoLineIDContains(String value) { this.SOLineIDContains = value; return this; } public String getSoLineIDLike() { return SOLineIDLike; } public SO_LineSerialsQuery setSoLineIDLike(String value) { this.SOLineIDLike = value; return this; } public ArrayList getSoLineIDBetween() { return SOLineIDBetween; } public SO_LineSerialsQuery setSoLineIDBetween(ArrayList value) { this.SOLineIDBetween = value; return this; } public ArrayList getSoLineIDIn() { return SOLineIDIn; } public SO_LineSerialsQuery setSoLineIDIn(ArrayList value) { this.SOLineIDIn = value; return this; } public String getInvoiceID() { return InvoiceID; } public SO_LineSerialsQuery setInvoiceID(String value) { this.InvoiceID = value; return this; } public String getInvoiceIDStartsWith() { return InvoiceIDStartsWith; } public SO_LineSerialsQuery setInvoiceIDStartsWith(String value) { this.InvoiceIDStartsWith = value; return this; } public String getInvoiceIDEndsWith() { return InvoiceIDEndsWith; } public SO_LineSerialsQuery setInvoiceIDEndsWith(String value) { this.InvoiceIDEndsWith = value; return this; } public String getInvoiceIDContains() { return InvoiceIDContains; } public SO_LineSerialsQuery setInvoiceIDContains(String value) { this.InvoiceIDContains = value; return this; } public String getInvoiceIDLike() { return InvoiceIDLike; } public SO_LineSerialsQuery setInvoiceIDLike(String value) { this.InvoiceIDLike = value; return this; } public ArrayList getInvoiceIDBetween() { return InvoiceIDBetween; } public SO_LineSerialsQuery setInvoiceIDBetween(ArrayList value) { this.InvoiceIDBetween = value; return this; } public ArrayList getInvoiceIDIn() { return InvoiceIDIn; } public SO_LineSerialsQuery setInvoiceIDIn(ArrayList value) { this.InvoiceIDIn = value; return this; } public String getHistoryID() { return HistoryID; } public SO_LineSerialsQuery setHistoryID(String value) { this.HistoryID = value; return this; } public String getHistoryIDStartsWith() { return HistoryIDStartsWith; } public SO_LineSerialsQuery setHistoryIDStartsWith(String value) { this.HistoryIDStartsWith = value; return this; } public String getHistoryIDEndsWith() { return HistoryIDEndsWith; } public SO_LineSerialsQuery setHistoryIDEndsWith(String value) { this.HistoryIDEndsWith = value; return this; } public String getHistoryIDContains() { return HistoryIDContains; } public SO_LineSerialsQuery setHistoryIDContains(String value) { this.HistoryIDContains = value; return this; } public String getHistoryIDLike() { return HistoryIDLike; } public SO_LineSerialsQuery setHistoryIDLike(String value) { this.HistoryIDLike = value; return this; } public ArrayList getHistoryIDBetween() { return HistoryIDBetween; } public SO_LineSerialsQuery setHistoryIDBetween(ArrayList value) { this.HistoryIDBetween = value; return this; } public ArrayList getHistoryIDIn() { return HistoryIDIn; } public SO_LineSerialsQuery setHistoryIDIn(ArrayList value) { this.HistoryIDIn = value; return this; } public Short getLineNum() { return LineNum; } public SO_LineSerialsQuery setLineNum(Short value) { this.LineNum = value; return this; } public Short getLineNumGreaterThanOrEqualTo() { return LineNumGreaterThanOrEqualTo; } public SO_LineSerialsQuery setLineNumGreaterThanOrEqualTo(Short value) { this.LineNumGreaterThanOrEqualTo = value; return this; } public Short getLineNumGreaterThan() { return LineNumGreaterThan; } public SO_LineSerialsQuery setLineNumGreaterThan(Short value) { this.LineNumGreaterThan = value; return this; } public Short getLineNumLessThan() { return LineNumLessThan; } public SO_LineSerialsQuery setLineNumLessThan(Short value) { this.LineNumLessThan = value; return this; } public Short getLineNumLessThanOrEqualTo() { return LineNumLessThanOrEqualTo; } public SO_LineSerialsQuery setLineNumLessThanOrEqualTo(Short value) { this.LineNumLessThanOrEqualTo = value; return this; } public Short getLineNumNotEqualTo() { return LineNumNotEqualTo; } public SO_LineSerialsQuery setLineNumNotEqualTo(Short value) { this.LineNumNotEqualTo = value; return this; } public ArrayList getLineNumBetween() { return LineNumBetween; } public SO_LineSerialsQuery setLineNumBetween(ArrayList value) { this.LineNumBetween = value; return this; } public ArrayList getLineNumIn() { return LineNumIn; } public SO_LineSerialsQuery setLineNumIn(ArrayList value) { this.LineNumIn = value; return this; } public String getSerialNo() { return SerialNo; } public SO_LineSerialsQuery setSerialNo(String value) { this.SerialNo = value; return this; } public String getSerialNoStartsWith() { return SerialNoStartsWith; } public SO_LineSerialsQuery setSerialNoStartsWith(String value) { this.SerialNoStartsWith = value; return this; } public String getSerialNoEndsWith() { return SerialNoEndsWith; } public SO_LineSerialsQuery setSerialNoEndsWith(String value) { this.SerialNoEndsWith = value; return this; } public String getSerialNoContains() { return SerialNoContains; } public SO_LineSerialsQuery setSerialNoContains(String value) { this.SerialNoContains = value; return this; } public String getSerialNoLike() { return SerialNoLike; } public SO_LineSerialsQuery setSerialNoLike(String value) { this.SerialNoLike = value; return this; } public ArrayList getSerialNoBetween() { return SerialNoBetween; } public SO_LineSerialsQuery setSerialNoBetween(ArrayList value) { this.SerialNoBetween = value; return this; } public ArrayList getSerialNoIn() { return SerialNoIn; } public SO_LineSerialsQuery setSerialNoIn(ArrayList value) { this.SerialNoIn = value; return this; } public BigDecimal getQuantity() { return Quantity; } public SO_LineSerialsQuery setQuantity(BigDecimal value) { this.Quantity = value; return this; } public BigDecimal getQuantityGreaterThanOrEqualTo() { return QuantityGreaterThanOrEqualTo; } public SO_LineSerialsQuery setQuantityGreaterThanOrEqualTo(BigDecimal value) { this.QuantityGreaterThanOrEqualTo = value; return this; } public BigDecimal getQuantityGreaterThan() { return QuantityGreaterThan; } public SO_LineSerialsQuery setQuantityGreaterThan(BigDecimal value) { this.QuantityGreaterThan = value; return this; } public BigDecimal getQuantityLessThan() { return QuantityLessThan; } public SO_LineSerialsQuery setQuantityLessThan(BigDecimal value) { this.QuantityLessThan = value; return this; } public BigDecimal getQuantityLessThanOrEqualTo() { return QuantityLessThanOrEqualTo; } public SO_LineSerialsQuery setQuantityLessThanOrEqualTo(BigDecimal value) { this.QuantityLessThanOrEqualTo = value; return this; } public BigDecimal getQuantityNotEqualTo() { return QuantityNotEqualTo; } public SO_LineSerialsQuery setQuantityNotEqualTo(BigDecimal value) { this.QuantityNotEqualTo = value; return this; } public ArrayList getQuantityBetween() { return QuantityBetween; } public SO_LineSerialsQuery setQuantityBetween(ArrayList value) { this.QuantityBetween = value; return this; } public ArrayList getQuantityIn() { return QuantityIn; } public SO_LineSerialsQuery setQuantityIn(ArrayList value) { this.QuantityIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class SO_LineShippingLabelsQuery extends QueryDb implements IReturn> { public String RecID = null; public String RecIDStartsWith = null; public String RecIDEndsWith = null; public String RecIDContains = null; public String RecIDLike = null; public ArrayList RecIDBetween = null; public ArrayList RecIDIn = null; public String SO_Lines_InvoiceLineID = null; public String SO_Lines_InvoiceLineIDStartsWith = null; public String SO_Lines_InvoiceLineIDEndsWith = null; public String SO_Lines_InvoiceLineIDContains = null; public String SO_Lines_InvoiceLineIDLike = null; public ArrayList SO_Lines_InvoiceLineIDBetween = null; public ArrayList SO_Lines_InvoiceLineIDIn = null; public BigDecimal Quantity = null; public BigDecimal QuantityGreaterThanOrEqualTo = null; public BigDecimal QuantityGreaterThan = null; public BigDecimal QuantityLessThan = null; public BigDecimal QuantityLessThanOrEqualTo = null; public BigDecimal QuantityNotEqualTo = null; public ArrayList QuantityBetween = null; public ArrayList QuantityIn = null; public String SSCC_Number = null; public String SSCC_NumberStartsWith = null; public String SSCC_NumberEndsWith = null; public String SSCC_NumberContains = null; public String SSCC_NumberLike = null; public ArrayList SSCC_NumberBetween = null; public ArrayList SSCC_NumberIn = null; public String BatchNo = null; public String BatchNoStartsWith = null; public String BatchNoEndsWith = null; public String BatchNoContains = null; public String BatchNoLike = null; public ArrayList BatchNoBetween = null; public ArrayList BatchNoIn = null; public Date UseByDate = null; public Date UseByDateGreaterThanOrEqualTo = null; public Date UseByDateGreaterThan = null; public Date UseByDateLessThan = null; public Date UseByDateLessThanOrEqualTo = null; public Date UseByDateNotEqualTo = null; public ArrayList UseByDateBetween = null; public ArrayList UseByDateIn = null; public String Reference = null; public String ReferenceStartsWith = null; public String ReferenceEndsWith = null; public String ReferenceContains = null; public String ReferenceLike = null; public ArrayList ReferenceBetween = null; public ArrayList ReferenceIn = null; public Integer LabelNumber = null; public Integer LabelNumberGreaterThanOrEqualTo = null; public Integer LabelNumberGreaterThan = null; public Integer LabelNumberLessThan = null; public Integer LabelNumberLessThanOrEqualTo = null; public Integer LabelNumberNotEqualTo = null; public ArrayList LabelNumberBetween = null; public ArrayList LabelNumberIn = null; public String SpareString1 = null; public String SpareString1StartsWith = null; public String SpareString1EndsWith = null; public String SpareString1Contains = null; public String SpareString1Like = null; public ArrayList SpareString1Between = null; public ArrayList SpareString1In = null; public String SpareString2 = null; public String SpareString2StartsWith = null; public String SpareString2EndsWith = null; public String SpareString2Contains = null; public String SpareString2Like = null; public ArrayList SpareString2Between = null; public ArrayList SpareString2In = null; public String SpareString3 = null; public String SpareString3StartsWith = null; public String SpareString3EndsWith = null; public String SpareString3Contains = null; public String SpareString3Like = null; public ArrayList SpareString3Between = null; public ArrayList SpareString3In = null; public BigDecimal SpareNumeric1 = null; public BigDecimal SpareNumeric1GreaterThanOrEqualTo = null; public BigDecimal SpareNumeric1GreaterThan = null; public BigDecimal SpareNumeric1LessThan = null; public BigDecimal SpareNumeric1LessThanOrEqualTo = null; public BigDecimal SpareNumeric1NotEqualTo = null; public ArrayList SpareNumeric1Between = null; public ArrayList SpareNumeric1In = null; public BigDecimal SpareNumeric2 = null; public BigDecimal SpareNumeric2GreaterThanOrEqualTo = null; public BigDecimal SpareNumeric2GreaterThan = null; public BigDecimal SpareNumeric2LessThan = null; public BigDecimal SpareNumeric2LessThanOrEqualTo = null; public BigDecimal SpareNumeric2NotEqualTo = null; public ArrayList SpareNumeric2Between = null; public ArrayList SpareNumeric2In = null; public BigDecimal SpareNumeric3 = null; public BigDecimal SpareNumeric3GreaterThanOrEqualTo = null; public BigDecimal SpareNumeric3GreaterThan = null; public BigDecimal SpareNumeric3LessThan = null; public BigDecimal SpareNumeric3LessThanOrEqualTo = null; public BigDecimal SpareNumeric3NotEqualTo = null; public ArrayList SpareNumeric3Between = null; public ArrayList SpareNumeric3In = null; public Date SpareDate1 = null; public Date SpareDate1GreaterThanOrEqualTo = null; public Date SpareDate1GreaterThan = null; public Date SpareDate1LessThan = null; public Date SpareDate1LessThanOrEqualTo = null; public Date SpareDate1NotEqualTo = null; public ArrayList SpareDate1Between = null; public ArrayList SpareDate1In = null; public Date SpareDate2 = null; public Date SpareDate2GreaterThanOrEqualTo = null; public Date SpareDate2GreaterThan = null; public Date SpareDate2LessThan = null; public Date SpareDate2LessThanOrEqualTo = null; public Date SpareDate2NotEqualTo = null; public ArrayList SpareDate2Between = null; public ArrayList SpareDate2In = null; public Date SpareDate3 = null; public Date SpareDate3GreaterThanOrEqualTo = null; public Date SpareDate3GreaterThan = null; public Date SpareDate3LessThan = null; public Date SpareDate3LessThanOrEqualTo = null; public Date SpareDate3NotEqualTo = null; public ArrayList SpareDate3Between = null; public ArrayList SpareDate3In = null; public Date LastSavedDateTime = null; public Date LastSavedDateTimeGreaterThanOrEqualTo = null; public Date LastSavedDateTimeGreaterThan = null; public Date LastSavedDateTimeLessThan = null; public Date LastSavedDateTimeLessThanOrEqualTo = null; public Date LastSavedDateTimeNotEqualTo = null; public ArrayList LastSavedDateTimeBetween = null; public ArrayList LastSavedDateTimeIn = null; public String getRecID() { return RecID; } public SO_LineShippingLabelsQuery setRecID(String value) { this.RecID = value; return this; } public String getRecIDStartsWith() { return RecIDStartsWith; } public SO_LineShippingLabelsQuery setRecIDStartsWith(String value) { this.RecIDStartsWith = value; return this; } public String getRecIDEndsWith() { return RecIDEndsWith; } public SO_LineShippingLabelsQuery setRecIDEndsWith(String value) { this.RecIDEndsWith = value; return this; } public String getRecIDContains() { return RecIDContains; } public SO_LineShippingLabelsQuery setRecIDContains(String value) { this.RecIDContains = value; return this; } public String getRecIDLike() { return RecIDLike; } public SO_LineShippingLabelsQuery setRecIDLike(String value) { this.RecIDLike = value; return this; } public ArrayList getRecIDBetween() { return RecIDBetween; } public SO_LineShippingLabelsQuery setRecIDBetween(ArrayList value) { this.RecIDBetween = value; return this; } public ArrayList getRecIDIn() { return RecIDIn; } public SO_LineShippingLabelsQuery setRecIDIn(ArrayList value) { this.RecIDIn = value; return this; } public String getSoLinesInvoiceLineID() { return SO_Lines_InvoiceLineID; } public SO_LineShippingLabelsQuery setSoLinesInvoiceLineID(String value) { this.SO_Lines_InvoiceLineID = value; return this; } public String getSoLinesInvoiceLineIDStartsWith() { return SO_Lines_InvoiceLineIDStartsWith; } public SO_LineShippingLabelsQuery setSoLinesInvoiceLineIDStartsWith(String value) { this.SO_Lines_InvoiceLineIDStartsWith = value; return this; } public String getSoLinesInvoiceLineIDEndsWith() { return SO_Lines_InvoiceLineIDEndsWith; } public SO_LineShippingLabelsQuery setSoLinesInvoiceLineIDEndsWith(String value) { this.SO_Lines_InvoiceLineIDEndsWith = value; return this; } public String getSoLinesInvoiceLineIDContains() { return SO_Lines_InvoiceLineIDContains; } public SO_LineShippingLabelsQuery setSoLinesInvoiceLineIDContains(String value) { this.SO_Lines_InvoiceLineIDContains = value; return this; } public String getSoLinesInvoiceLineIDLike() { return SO_Lines_InvoiceLineIDLike; } public SO_LineShippingLabelsQuery setSoLinesInvoiceLineIDLike(String value) { this.SO_Lines_InvoiceLineIDLike = value; return this; } public ArrayList getSoLinesInvoiceLineIDBetween() { return SO_Lines_InvoiceLineIDBetween; } public SO_LineShippingLabelsQuery setSoLinesInvoiceLineIDBetween(ArrayList value) { this.SO_Lines_InvoiceLineIDBetween = value; return this; } public ArrayList getSoLinesInvoiceLineIDIn() { return SO_Lines_InvoiceLineIDIn; } public SO_LineShippingLabelsQuery setSoLinesInvoiceLineIDIn(ArrayList value) { this.SO_Lines_InvoiceLineIDIn = value; return this; } public BigDecimal getQuantity() { return Quantity; } public SO_LineShippingLabelsQuery setQuantity(BigDecimal value) { this.Quantity = value; return this; } public BigDecimal getQuantityGreaterThanOrEqualTo() { return QuantityGreaterThanOrEqualTo; } public SO_LineShippingLabelsQuery setQuantityGreaterThanOrEqualTo(BigDecimal value) { this.QuantityGreaterThanOrEqualTo = value; return this; } public BigDecimal getQuantityGreaterThan() { return QuantityGreaterThan; } public SO_LineShippingLabelsQuery setQuantityGreaterThan(BigDecimal value) { this.QuantityGreaterThan = value; return this; } public BigDecimal getQuantityLessThan() { return QuantityLessThan; } public SO_LineShippingLabelsQuery setQuantityLessThan(BigDecimal value) { this.QuantityLessThan = value; return this; } public BigDecimal getQuantityLessThanOrEqualTo() { return QuantityLessThanOrEqualTo; } public SO_LineShippingLabelsQuery setQuantityLessThanOrEqualTo(BigDecimal value) { this.QuantityLessThanOrEqualTo = value; return this; } public BigDecimal getQuantityNotEqualTo() { return QuantityNotEqualTo; } public SO_LineShippingLabelsQuery setQuantityNotEqualTo(BigDecimal value) { this.QuantityNotEqualTo = value; return this; } public ArrayList getQuantityBetween() { return QuantityBetween; } public SO_LineShippingLabelsQuery setQuantityBetween(ArrayList value) { this.QuantityBetween = value; return this; } public ArrayList getQuantityIn() { return QuantityIn; } public SO_LineShippingLabelsQuery setQuantityIn(ArrayList value) { this.QuantityIn = value; return this; } public String getSsccNumber() { return SSCC_Number; } public SO_LineShippingLabelsQuery setSsccNumber(String value) { this.SSCC_Number = value; return this; } public String getSsccNumberStartsWith() { return SSCC_NumberStartsWith; } public SO_LineShippingLabelsQuery setSsccNumberStartsWith(String value) { this.SSCC_NumberStartsWith = value; return this; } public String getSsccNumberEndsWith() { return SSCC_NumberEndsWith; } public SO_LineShippingLabelsQuery setSsccNumberEndsWith(String value) { this.SSCC_NumberEndsWith = value; return this; } public String getSsccNumberContains() { return SSCC_NumberContains; } public SO_LineShippingLabelsQuery setSsccNumberContains(String value) { this.SSCC_NumberContains = value; return this; } public String getSsccNumberLike() { return SSCC_NumberLike; } public SO_LineShippingLabelsQuery setSsccNumberLike(String value) { this.SSCC_NumberLike = value; return this; } public ArrayList getSsccNumberBetween() { return SSCC_NumberBetween; } public SO_LineShippingLabelsQuery setSsccNumberBetween(ArrayList value) { this.SSCC_NumberBetween = value; return this; } public ArrayList getSsccNumberIn() { return SSCC_NumberIn; } public SO_LineShippingLabelsQuery setSsccNumberIn(ArrayList value) { this.SSCC_NumberIn = value; return this; } public String getBatchNo() { return BatchNo; } public SO_LineShippingLabelsQuery setBatchNo(String value) { this.BatchNo = value; return this; } public String getBatchNoStartsWith() { return BatchNoStartsWith; } public SO_LineShippingLabelsQuery setBatchNoStartsWith(String value) { this.BatchNoStartsWith = value; return this; } public String getBatchNoEndsWith() { return BatchNoEndsWith; } public SO_LineShippingLabelsQuery setBatchNoEndsWith(String value) { this.BatchNoEndsWith = value; return this; } public String getBatchNoContains() { return BatchNoContains; } public SO_LineShippingLabelsQuery setBatchNoContains(String value) { this.BatchNoContains = value; return this; } public String getBatchNoLike() { return BatchNoLike; } public SO_LineShippingLabelsQuery setBatchNoLike(String value) { this.BatchNoLike = value; return this; } public ArrayList getBatchNoBetween() { return BatchNoBetween; } public SO_LineShippingLabelsQuery setBatchNoBetween(ArrayList value) { this.BatchNoBetween = value; return this; } public ArrayList getBatchNoIn() { return BatchNoIn; } public SO_LineShippingLabelsQuery setBatchNoIn(ArrayList value) { this.BatchNoIn = value; return this; } public Date getUseByDate() { return UseByDate; } public SO_LineShippingLabelsQuery setUseByDate(Date value) { this.UseByDate = value; return this; } public Date getUseByDateGreaterThanOrEqualTo() { return UseByDateGreaterThanOrEqualTo; } public SO_LineShippingLabelsQuery setUseByDateGreaterThanOrEqualTo(Date value) { this.UseByDateGreaterThanOrEqualTo = value; return this; } public Date getUseByDateGreaterThan() { return UseByDateGreaterThan; } public SO_LineShippingLabelsQuery setUseByDateGreaterThan(Date value) { this.UseByDateGreaterThan = value; return this; } public Date getUseByDateLessThan() { return UseByDateLessThan; } public SO_LineShippingLabelsQuery setUseByDateLessThan(Date value) { this.UseByDateLessThan = value; return this; } public Date getUseByDateLessThanOrEqualTo() { return UseByDateLessThanOrEqualTo; } public SO_LineShippingLabelsQuery setUseByDateLessThanOrEqualTo(Date value) { this.UseByDateLessThanOrEqualTo = value; return this; } public Date getUseByDateNotEqualTo() { return UseByDateNotEqualTo; } public SO_LineShippingLabelsQuery setUseByDateNotEqualTo(Date value) { this.UseByDateNotEqualTo = value; return this; } public ArrayList getUseByDateBetween() { return UseByDateBetween; } public SO_LineShippingLabelsQuery setUseByDateBetween(ArrayList value) { this.UseByDateBetween = value; return this; } public ArrayList getUseByDateIn() { return UseByDateIn; } public SO_LineShippingLabelsQuery setUseByDateIn(ArrayList value) { this.UseByDateIn = value; return this; } public String getReference() { return Reference; } public SO_LineShippingLabelsQuery setReference(String value) { this.Reference = value; return this; } public String getReferenceStartsWith() { return ReferenceStartsWith; } public SO_LineShippingLabelsQuery setReferenceStartsWith(String value) { this.ReferenceStartsWith = value; return this; } public String getReferenceEndsWith() { return ReferenceEndsWith; } public SO_LineShippingLabelsQuery setReferenceEndsWith(String value) { this.ReferenceEndsWith = value; return this; } public String getReferenceContains() { return ReferenceContains; } public SO_LineShippingLabelsQuery setReferenceContains(String value) { this.ReferenceContains = value; return this; } public String getReferenceLike() { return ReferenceLike; } public SO_LineShippingLabelsQuery setReferenceLike(String value) { this.ReferenceLike = value; return this; } public ArrayList getReferenceBetween() { return ReferenceBetween; } public SO_LineShippingLabelsQuery setReferenceBetween(ArrayList value) { this.ReferenceBetween = value; return this; } public ArrayList getReferenceIn() { return ReferenceIn; } public SO_LineShippingLabelsQuery setReferenceIn(ArrayList value) { this.ReferenceIn = value; return this; } public Integer getLabelNumber() { return LabelNumber; } public SO_LineShippingLabelsQuery setLabelNumber(Integer value) { this.LabelNumber = value; return this; } public Integer getLabelNumberGreaterThanOrEqualTo() { return LabelNumberGreaterThanOrEqualTo; } public SO_LineShippingLabelsQuery setLabelNumberGreaterThanOrEqualTo(Integer value) { this.LabelNumberGreaterThanOrEqualTo = value; return this; } public Integer getLabelNumberGreaterThan() { return LabelNumberGreaterThan; } public SO_LineShippingLabelsQuery setLabelNumberGreaterThan(Integer value) { this.LabelNumberGreaterThan = value; return this; } public Integer getLabelNumberLessThan() { return LabelNumberLessThan; } public SO_LineShippingLabelsQuery setLabelNumberLessThan(Integer value) { this.LabelNumberLessThan = value; return this; } public Integer getLabelNumberLessThanOrEqualTo() { return LabelNumberLessThanOrEqualTo; } public SO_LineShippingLabelsQuery setLabelNumberLessThanOrEqualTo(Integer value) { this.LabelNumberLessThanOrEqualTo = value; return this; } public Integer getLabelNumberNotEqualTo() { return LabelNumberNotEqualTo; } public SO_LineShippingLabelsQuery setLabelNumberNotEqualTo(Integer value) { this.LabelNumberNotEqualTo = value; return this; } public ArrayList getLabelNumberBetween() { return LabelNumberBetween; } public SO_LineShippingLabelsQuery setLabelNumberBetween(ArrayList value) { this.LabelNumberBetween = value; return this; } public ArrayList getLabelNumberIn() { return LabelNumberIn; } public SO_LineShippingLabelsQuery setLabelNumberIn(ArrayList value) { this.LabelNumberIn = value; return this; } public String getSpareString1() { return SpareString1; } public SO_LineShippingLabelsQuery setSpareString1(String value) { this.SpareString1 = value; return this; } public String getSpareString1StartsWith() { return SpareString1StartsWith; } public SO_LineShippingLabelsQuery setSpareString1StartsWith(String value) { this.SpareString1StartsWith = value; return this; } public String getSpareString1EndsWith() { return SpareString1EndsWith; } public SO_LineShippingLabelsQuery setSpareString1EndsWith(String value) { this.SpareString1EndsWith = value; return this; } public String getSpareString1Contains() { return SpareString1Contains; } public SO_LineShippingLabelsQuery setSpareString1Contains(String value) { this.SpareString1Contains = value; return this; } public String getSpareString1Like() { return SpareString1Like; } public SO_LineShippingLabelsQuery setSpareString1Like(String value) { this.SpareString1Like = value; return this; } public ArrayList getSpareString1Between() { return SpareString1Between; } public SO_LineShippingLabelsQuery setSpareString1Between(ArrayList value) { this.SpareString1Between = value; return this; } public ArrayList getSpareString1In() { return SpareString1In; } public SO_LineShippingLabelsQuery setSpareString1In(ArrayList value) { this.SpareString1In = value; return this; } public String getSpareString2() { return SpareString2; } public SO_LineShippingLabelsQuery setSpareString2(String value) { this.SpareString2 = value; return this; } public String getSpareString2StartsWith() { return SpareString2StartsWith; } public SO_LineShippingLabelsQuery setSpareString2StartsWith(String value) { this.SpareString2StartsWith = value; return this; } public String getSpareString2EndsWith() { return SpareString2EndsWith; } public SO_LineShippingLabelsQuery setSpareString2EndsWith(String value) { this.SpareString2EndsWith = value; return this; } public String getSpareString2Contains() { return SpareString2Contains; } public SO_LineShippingLabelsQuery setSpareString2Contains(String value) { this.SpareString2Contains = value; return this; } public String getSpareString2Like() { return SpareString2Like; } public SO_LineShippingLabelsQuery setSpareString2Like(String value) { this.SpareString2Like = value; return this; } public ArrayList getSpareString2Between() { return SpareString2Between; } public SO_LineShippingLabelsQuery setSpareString2Between(ArrayList value) { this.SpareString2Between = value; return this; } public ArrayList getSpareString2In() { return SpareString2In; } public SO_LineShippingLabelsQuery setSpareString2In(ArrayList value) { this.SpareString2In = value; return this; } public String getSpareString3() { return SpareString3; } public SO_LineShippingLabelsQuery setSpareString3(String value) { this.SpareString3 = value; return this; } public String getSpareString3StartsWith() { return SpareString3StartsWith; } public SO_LineShippingLabelsQuery setSpareString3StartsWith(String value) { this.SpareString3StartsWith = value; return this; } public String getSpareString3EndsWith() { return SpareString3EndsWith; } public SO_LineShippingLabelsQuery setSpareString3EndsWith(String value) { this.SpareString3EndsWith = value; return this; } public String getSpareString3Contains() { return SpareString3Contains; } public SO_LineShippingLabelsQuery setSpareString3Contains(String value) { this.SpareString3Contains = value; return this; } public String getSpareString3Like() { return SpareString3Like; } public SO_LineShippingLabelsQuery setSpareString3Like(String value) { this.SpareString3Like = value; return this; } public ArrayList getSpareString3Between() { return SpareString3Between; } public SO_LineShippingLabelsQuery setSpareString3Between(ArrayList value) { this.SpareString3Between = value; return this; } public ArrayList getSpareString3In() { return SpareString3In; } public SO_LineShippingLabelsQuery setSpareString3In(ArrayList value) { this.SpareString3In = value; return this; } public BigDecimal getSpareNumeric1() { return SpareNumeric1; } public SO_LineShippingLabelsQuery setSpareNumeric1(BigDecimal value) { this.SpareNumeric1 = value; return this; } public BigDecimal getSpareNumeric1GreaterThanOrEqualTo() { return SpareNumeric1GreaterThanOrEqualTo; } public SO_LineShippingLabelsQuery setSpareNumeric1GreaterThanOrEqualTo(BigDecimal value) { this.SpareNumeric1GreaterThanOrEqualTo = value; return this; } public BigDecimal getSpareNumeric1GreaterThan() { return SpareNumeric1GreaterThan; } public SO_LineShippingLabelsQuery setSpareNumeric1GreaterThan(BigDecimal value) { this.SpareNumeric1GreaterThan = value; return this; } public BigDecimal getSpareNumeric1LessThan() { return SpareNumeric1LessThan; } public SO_LineShippingLabelsQuery setSpareNumeric1LessThan(BigDecimal value) { this.SpareNumeric1LessThan = value; return this; } public BigDecimal getSpareNumeric1LessThanOrEqualTo() { return SpareNumeric1LessThanOrEqualTo; } public SO_LineShippingLabelsQuery setSpareNumeric1LessThanOrEqualTo(BigDecimal value) { this.SpareNumeric1LessThanOrEqualTo = value; return this; } public BigDecimal getSpareNumeric1NotEqualTo() { return SpareNumeric1NotEqualTo; } public SO_LineShippingLabelsQuery setSpareNumeric1NotEqualTo(BigDecimal value) { this.SpareNumeric1NotEqualTo = value; return this; } public ArrayList getSpareNumeric1Between() { return SpareNumeric1Between; } public SO_LineShippingLabelsQuery setSpareNumeric1Between(ArrayList value) { this.SpareNumeric1Between = value; return this; } public ArrayList getSpareNumeric1In() { return SpareNumeric1In; } public SO_LineShippingLabelsQuery setSpareNumeric1In(ArrayList value) { this.SpareNumeric1In = value; return this; } public BigDecimal getSpareNumeric2() { return SpareNumeric2; } public SO_LineShippingLabelsQuery setSpareNumeric2(BigDecimal value) { this.SpareNumeric2 = value; return this; } public BigDecimal getSpareNumeric2GreaterThanOrEqualTo() { return SpareNumeric2GreaterThanOrEqualTo; } public SO_LineShippingLabelsQuery setSpareNumeric2GreaterThanOrEqualTo(BigDecimal value) { this.SpareNumeric2GreaterThanOrEqualTo = value; return this; } public BigDecimal getSpareNumeric2GreaterThan() { return SpareNumeric2GreaterThan; } public SO_LineShippingLabelsQuery setSpareNumeric2GreaterThan(BigDecimal value) { this.SpareNumeric2GreaterThan = value; return this; } public BigDecimal getSpareNumeric2LessThan() { return SpareNumeric2LessThan; } public SO_LineShippingLabelsQuery setSpareNumeric2LessThan(BigDecimal value) { this.SpareNumeric2LessThan = value; return this; } public BigDecimal getSpareNumeric2LessThanOrEqualTo() { return SpareNumeric2LessThanOrEqualTo; } public SO_LineShippingLabelsQuery setSpareNumeric2LessThanOrEqualTo(BigDecimal value) { this.SpareNumeric2LessThanOrEqualTo = value; return this; } public BigDecimal getSpareNumeric2NotEqualTo() { return SpareNumeric2NotEqualTo; } public SO_LineShippingLabelsQuery setSpareNumeric2NotEqualTo(BigDecimal value) { this.SpareNumeric2NotEqualTo = value; return this; } public ArrayList getSpareNumeric2Between() { return SpareNumeric2Between; } public SO_LineShippingLabelsQuery setSpareNumeric2Between(ArrayList value) { this.SpareNumeric2Between = value; return this; } public ArrayList getSpareNumeric2In() { return SpareNumeric2In; } public SO_LineShippingLabelsQuery setSpareNumeric2In(ArrayList value) { this.SpareNumeric2In = value; return this; } public BigDecimal getSpareNumeric3() { return SpareNumeric3; } public SO_LineShippingLabelsQuery setSpareNumeric3(BigDecimal value) { this.SpareNumeric3 = value; return this; } public BigDecimal getSpareNumeric3GreaterThanOrEqualTo() { return SpareNumeric3GreaterThanOrEqualTo; } public SO_LineShippingLabelsQuery setSpareNumeric3GreaterThanOrEqualTo(BigDecimal value) { this.SpareNumeric3GreaterThanOrEqualTo = value; return this; } public BigDecimal getSpareNumeric3GreaterThan() { return SpareNumeric3GreaterThan; } public SO_LineShippingLabelsQuery setSpareNumeric3GreaterThan(BigDecimal value) { this.SpareNumeric3GreaterThan = value; return this; } public BigDecimal getSpareNumeric3LessThan() { return SpareNumeric3LessThan; } public SO_LineShippingLabelsQuery setSpareNumeric3LessThan(BigDecimal value) { this.SpareNumeric3LessThan = value; return this; } public BigDecimal getSpareNumeric3LessThanOrEqualTo() { return SpareNumeric3LessThanOrEqualTo; } public SO_LineShippingLabelsQuery setSpareNumeric3LessThanOrEqualTo(BigDecimal value) { this.SpareNumeric3LessThanOrEqualTo = value; return this; } public BigDecimal getSpareNumeric3NotEqualTo() { return SpareNumeric3NotEqualTo; } public SO_LineShippingLabelsQuery setSpareNumeric3NotEqualTo(BigDecimal value) { this.SpareNumeric3NotEqualTo = value; return this; } public ArrayList getSpareNumeric3Between() { return SpareNumeric3Between; } public SO_LineShippingLabelsQuery setSpareNumeric3Between(ArrayList value) { this.SpareNumeric3Between = value; return this; } public ArrayList getSpareNumeric3In() { return SpareNumeric3In; } public SO_LineShippingLabelsQuery setSpareNumeric3In(ArrayList value) { this.SpareNumeric3In = value; return this; } public Date getSpareDate1() { return SpareDate1; } public SO_LineShippingLabelsQuery setSpareDate1(Date value) { this.SpareDate1 = value; return this; } public Date getSpareDate1GreaterThanOrEqualTo() { return SpareDate1GreaterThanOrEqualTo; } public SO_LineShippingLabelsQuery setSpareDate1GreaterThanOrEqualTo(Date value) { this.SpareDate1GreaterThanOrEqualTo = value; return this; } public Date getSpareDate1GreaterThan() { return SpareDate1GreaterThan; } public SO_LineShippingLabelsQuery setSpareDate1GreaterThan(Date value) { this.SpareDate1GreaterThan = value; return this; } public Date getSpareDate1LessThan() { return SpareDate1LessThan; } public SO_LineShippingLabelsQuery setSpareDate1LessThan(Date value) { this.SpareDate1LessThan = value; return this; } public Date getSpareDate1LessThanOrEqualTo() { return SpareDate1LessThanOrEqualTo; } public SO_LineShippingLabelsQuery setSpareDate1LessThanOrEqualTo(Date value) { this.SpareDate1LessThanOrEqualTo = value; return this; } public Date getSpareDate1NotEqualTo() { return SpareDate1NotEqualTo; } public SO_LineShippingLabelsQuery setSpareDate1NotEqualTo(Date value) { this.SpareDate1NotEqualTo = value; return this; } public ArrayList getSpareDate1Between() { return SpareDate1Between; } public SO_LineShippingLabelsQuery setSpareDate1Between(ArrayList value) { this.SpareDate1Between = value; return this; } public ArrayList getSpareDate1In() { return SpareDate1In; } public SO_LineShippingLabelsQuery setSpareDate1In(ArrayList value) { this.SpareDate1In = value; return this; } public Date getSpareDate2() { return SpareDate2; } public SO_LineShippingLabelsQuery setSpareDate2(Date value) { this.SpareDate2 = value; return this; } public Date getSpareDate2GreaterThanOrEqualTo() { return SpareDate2GreaterThanOrEqualTo; } public SO_LineShippingLabelsQuery setSpareDate2GreaterThanOrEqualTo(Date value) { this.SpareDate2GreaterThanOrEqualTo = value; return this; } public Date getSpareDate2GreaterThan() { return SpareDate2GreaterThan; } public SO_LineShippingLabelsQuery setSpareDate2GreaterThan(Date value) { this.SpareDate2GreaterThan = value; return this; } public Date getSpareDate2LessThan() { return SpareDate2LessThan; } public SO_LineShippingLabelsQuery setSpareDate2LessThan(Date value) { this.SpareDate2LessThan = value; return this; } public Date getSpareDate2LessThanOrEqualTo() { return SpareDate2LessThanOrEqualTo; } public SO_LineShippingLabelsQuery setSpareDate2LessThanOrEqualTo(Date value) { this.SpareDate2LessThanOrEqualTo = value; return this; } public Date getSpareDate2NotEqualTo() { return SpareDate2NotEqualTo; } public SO_LineShippingLabelsQuery setSpareDate2NotEqualTo(Date value) { this.SpareDate2NotEqualTo = value; return this; } public ArrayList getSpareDate2Between() { return SpareDate2Between; } public SO_LineShippingLabelsQuery setSpareDate2Between(ArrayList value) { this.SpareDate2Between = value; return this; } public ArrayList getSpareDate2In() { return SpareDate2In; } public SO_LineShippingLabelsQuery setSpareDate2In(ArrayList value) { this.SpareDate2In = value; return this; } public Date getSpareDate3() { return SpareDate3; } public SO_LineShippingLabelsQuery setSpareDate3(Date value) { this.SpareDate3 = value; return this; } public Date getSpareDate3GreaterThanOrEqualTo() { return SpareDate3GreaterThanOrEqualTo; } public SO_LineShippingLabelsQuery setSpareDate3GreaterThanOrEqualTo(Date value) { this.SpareDate3GreaterThanOrEqualTo = value; return this; } public Date getSpareDate3GreaterThan() { return SpareDate3GreaterThan; } public SO_LineShippingLabelsQuery setSpareDate3GreaterThan(Date value) { this.SpareDate3GreaterThan = value; return this; } public Date getSpareDate3LessThan() { return SpareDate3LessThan; } public SO_LineShippingLabelsQuery setSpareDate3LessThan(Date value) { this.SpareDate3LessThan = value; return this; } public Date getSpareDate3LessThanOrEqualTo() { return SpareDate3LessThanOrEqualTo; } public SO_LineShippingLabelsQuery setSpareDate3LessThanOrEqualTo(Date value) { this.SpareDate3LessThanOrEqualTo = value; return this; } public Date getSpareDate3NotEqualTo() { return SpareDate3NotEqualTo; } public SO_LineShippingLabelsQuery setSpareDate3NotEqualTo(Date value) { this.SpareDate3NotEqualTo = value; return this; } public ArrayList getSpareDate3Between() { return SpareDate3Between; } public SO_LineShippingLabelsQuery setSpareDate3Between(ArrayList value) { this.SpareDate3Between = value; return this; } public ArrayList getSpareDate3In() { return SpareDate3In; } public SO_LineShippingLabelsQuery setSpareDate3In(ArrayList value) { this.SpareDate3In = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public SO_LineShippingLabelsQuery setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getLastSavedDateTimeGreaterThanOrEqualTo() { return LastSavedDateTimeGreaterThanOrEqualTo; } public SO_LineShippingLabelsQuery setLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.LastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeGreaterThan() { return LastSavedDateTimeGreaterThan; } public SO_LineShippingLabelsQuery setLastSavedDateTimeGreaterThan(Date value) { this.LastSavedDateTimeGreaterThan = value; return this; } public Date getLastSavedDateTimeLessThan() { return LastSavedDateTimeLessThan; } public SO_LineShippingLabelsQuery setLastSavedDateTimeLessThan(Date value) { this.LastSavedDateTimeLessThan = value; return this; } public Date getLastSavedDateTimeLessThanOrEqualTo() { return LastSavedDateTimeLessThanOrEqualTo; } public SO_LineShippingLabelsQuery setLastSavedDateTimeLessThanOrEqualTo(Date value) { this.LastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeNotEqualTo() { return LastSavedDateTimeNotEqualTo; } public SO_LineShippingLabelsQuery setLastSavedDateTimeNotEqualTo(Date value) { this.LastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getLastSavedDateTimeBetween() { return LastSavedDateTimeBetween; } public SO_LineShippingLabelsQuery setLastSavedDateTimeBetween(ArrayList value) { this.LastSavedDateTimeBetween = value; return this; } public ArrayList getLastSavedDateTimeIn() { return LastSavedDateTimeIn; } public SO_LineShippingLabelsQuery setLastSavedDateTimeIn(ArrayList value) { this.LastSavedDateTimeIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @Route(Path="/Queries/SO_Main", Verbs="GET") @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class SO_MainQuery extends QueryDb implements IReturn> { public String InvoiceID = null; public String InvoiceIDStartsWith = null; public String InvoiceIDEndsWith = null; public String InvoiceIDContains = null; public String InvoiceIDLike = null; public ArrayList InvoiceIDBetween = null; public ArrayList InvoiceIDIn = null; public Date LastSavedDateTime = null; public Date LastSavedDateTimeGreaterThanOrEqualTo = null; public Date LastSavedDateTimeGreaterThan = null; public Date LastSavedDateTimeLessThan = null; public Date LastSavedDateTimeLessThanOrEqualTo = null; public Date LastSavedDateTimeNotEqualTo = null; public ArrayList LastSavedDateTimeBetween = null; public ArrayList LastSavedDateTimeIn = null; public String DebtorID = null; public String DebtorIDStartsWith = null; public String DebtorIDEndsWith = null; public String DebtorIDContains = null; public String DebtorIDLike = null; public ArrayList DebtorIDBetween = null; public ArrayList DebtorIDIn = null; public String StaffID = null; public String StaffIDStartsWith = null; public String StaffIDEndsWith = null; public String StaffIDContains = null; public String StaffIDLike = null; public ArrayList StaffIDBetween = null; public ArrayList StaffIDIn = null; public String InvoiceNo = null; public String InvoiceNoStartsWith = null; public String InvoiceNoEndsWith = null; public String InvoiceNoContains = null; public String InvoiceNoLike = null; public ArrayList InvoiceNoBetween = null; public ArrayList InvoiceNoIn = null; public Date InvoiceInitDate = null; public Date InvoiceInitDateGreaterThanOrEqualTo = null; public Date InvoiceInitDateGreaterThan = null; public Date InvoiceInitDateLessThan = null; public Date InvoiceInitDateLessThanOrEqualTo = null; public Date InvoiceInitDateNotEqualTo = null; public ArrayList InvoiceInitDateBetween = null; public ArrayList InvoiceInitDateIn = null; public Date InvoiceLastDate = null; public Date InvoiceLastDateGreaterThanOrEqualTo = null; public Date InvoiceLastDateGreaterThan = null; public Date InvoiceLastDateLessThan = null; public Date InvoiceLastDateLessThanOrEqualTo = null; public Date InvoiceLastDateNotEqualTo = null; public ArrayList InvoiceLastDateBetween = null; public ArrayList InvoiceLastDateIn = null; public String OrderNo = null; public String OrderNoStartsWith = null; public String OrderNoEndsWith = null; public String OrderNoContains = null; public String OrderNoLike = null; public ArrayList OrderNoBetween = null; public ArrayList OrderNoIn = null; public String TaxExemptNo = null; public String TaxExemptNoStartsWith = null; public String TaxExemptNoEndsWith = null; public String TaxExemptNoContains = null; public String TaxExemptNoLike = null; public ArrayList TaxExemptNoBetween = null; public ArrayList TaxExemptNoIn = null; public Boolean WholeSaleInvoice = null; public BigDecimal InvoiceTotal = null; public BigDecimal InvoiceTotalGreaterThanOrEqualTo = null; public BigDecimal InvoiceTotalGreaterThan = null; public BigDecimal InvoiceTotalLessThan = null; public BigDecimal InvoiceTotalLessThanOrEqualTo = null; public BigDecimal InvoiceTotalNotEqualTo = null; public ArrayList InvoiceTotalBetween = null; public ArrayList InvoiceTotalIn = null; public Short CurrentHistoryNo = null; public Short CurrentHistoryNoGreaterThanOrEqualTo = null; public Short CurrentHistoryNoGreaterThan = null; public Short CurrentHistoryNoLessThan = null; public Short CurrentHistoryNoLessThanOrEqualTo = null; public Short CurrentHistoryNoNotEqualTo = null; public ArrayList CurrentHistoryNoBetween = null; public ArrayList CurrentHistoryNoIn = null; public Short Status = null; public Short StatusGreaterThanOrEqualTo = null; public Short StatusGreaterThan = null; public Short StatusLessThan = null; public Short StatusLessThanOrEqualTo = null; public Short StatusNotEqualTo = null; public ArrayList StatusBetween = null; public ArrayList StatusIn = null; public Short BillWhenComplete = null; public Short BillWhenCompleteGreaterThanOrEqualTo = null; public Short BillWhenCompleteGreaterThan = null; public Short BillWhenCompleteLessThan = null; public Short BillWhenCompleteLessThanOrEqualTo = null; public Short BillWhenCompleteNotEqualTo = null; public ArrayList BillWhenCompleteBetween = null; public ArrayList BillWhenCompleteIn = null; public Boolean CreditNote = null; public Short InvoiceType = null; public Short InvoiceTypeGreaterThanOrEqualTo = null; public Short InvoiceTypeGreaterThan = null; public Short InvoiceTypeLessThan = null; public Short InvoiceTypeLessThanOrEqualTo = null; public Short InvoiceTypeNotEqualTo = null; public ArrayList InvoiceTypeBetween = null; public ArrayList InvoiceTypeIn = null; public String GroupSupplierID = null; public String GroupSupplierIDStartsWith = null; public String GroupSupplierIDEndsWith = null; public String GroupSupplierIDContains = null; public String GroupSupplierIDLike = null; public ArrayList GroupSupplierIDBetween = null; public ArrayList GroupSupplierIDIn = null; public Boolean GroupOrdered = null; public String IN_LogicalID = null; public String IN_LogicalIDStartsWith = null; public String IN_LogicalIDEndsWith = null; public String IN_LogicalIDContains = null; public String IN_LogicalIDLike = null; public ArrayList IN_LogicalIDBetween = null; public ArrayList IN_LogicalIDIn = null; public String BranchID = null; public String BranchIDStartsWith = null; public String BranchIDEndsWith = null; public String BranchIDContains = null; public String BranchIDLike = null; public ArrayList BranchIDBetween = null; public ArrayList BranchIDIn = null; public String SOReference = null; public String SOReferenceStartsWith = null; public String SOReferenceEndsWith = null; public String SOReferenceContains = null; public String SOReferenceLike = null; public ArrayList SOReferenceBetween = null; public ArrayList SOReferenceIn = null; public String JobCostID = null; public String JobCostIDStartsWith = null; public String JobCostIDEndsWith = null; public String JobCostIDContains = null; public String JobCostIDLike = null; public ArrayList JobCostIDBetween = null; public ArrayList JobCostIDIn = null; public String ParentDebtorID = null; public String ParentDebtorIDStartsWith = null; public String ParentDebtorIDEndsWith = null; public String ParentDebtorIDContains = null; public String ParentDebtorIDLike = null; public ArrayList ParentDebtorIDBetween = null; public ArrayList ParentDebtorIDIn = null; public Short BackOrderMode = null; public Short BackOrderModeGreaterThanOrEqualTo = null; public Short BackOrderModeGreaterThan = null; public Short BackOrderModeLessThan = null; public Short BackOrderModeLessThanOrEqualTo = null; public Short BackOrderModeNotEqualTo = null; public ArrayList BackOrderModeBetween = null; public ArrayList BackOrderModeIn = null; public String DebtorContactName = null; public String DebtorContactNameStartsWith = null; public String DebtorContactNameEndsWith = null; public String DebtorContactNameContains = null; public String DebtorContactNameLike = null; public ArrayList DebtorContactNameBetween = null; public ArrayList DebtorContactNameIn = null; public Integer DocType = null; public Integer DocTypeGreaterThanOrEqualTo = null; public Integer DocTypeGreaterThan = null; public Integer DocTypeLessThan = null; public Integer DocTypeLessThanOrEqualTo = null; public Integer DocTypeNotEqualTo = null; public ArrayList DocTypeBetween = null; public ArrayList DocTypeIn = null; public Boolean GSTInvoice = null; public Date ExpectedDeliveryDate = null; public Date ExpectedDeliveryDateGreaterThanOrEqualTo = null; public Date ExpectedDeliveryDateGreaterThan = null; public Date ExpectedDeliveryDateLessThan = null; public Date ExpectedDeliveryDateLessThanOrEqualTo = null; public Date ExpectedDeliveryDateNotEqualTo = null; public ArrayList ExpectedDeliveryDateBetween = null; public ArrayList ExpectedDeliveryDateIn = null; public String SourceQuoteHistoryID = null; public String SourceQuoteHistoryIDStartsWith = null; public String SourceQuoteHistoryIDEndsWith = null; public String SourceQuoteHistoryIDContains = null; public String SourceQuoteHistoryIDLike = null; public ArrayList SourceQuoteHistoryIDBetween = null; public ArrayList SourceQuoteHistoryIDIn = null; public String PriceSchemeID = null; public String PriceSchemeIDStartsWith = null; public String PriceSchemeIDEndsWith = null; public String PriceSchemeIDContains = null; public String PriceSchemeIDLike = null; public ArrayList PriceSchemeIDBetween = null; public ArrayList PriceSchemeIDIn = null; public String CreditReasonID = null; public String CreditReasonIDStartsWith = null; public String CreditReasonIDEndsWith = null; public String CreditReasonIDContains = null; public String CreditReasonIDLike = null; public ArrayList CreditReasonIDBetween = null; public ArrayList CreditReasonIDIn = null; public Boolean CreditIntoStock = null; public String getInvoiceID() { return InvoiceID; } public SO_MainQuery setInvoiceID(String value) { this.InvoiceID = value; return this; } public String getInvoiceIDStartsWith() { return InvoiceIDStartsWith; } public SO_MainQuery setInvoiceIDStartsWith(String value) { this.InvoiceIDStartsWith = value; return this; } public String getInvoiceIDEndsWith() { return InvoiceIDEndsWith; } public SO_MainQuery setInvoiceIDEndsWith(String value) { this.InvoiceIDEndsWith = value; return this; } public String getInvoiceIDContains() { return InvoiceIDContains; } public SO_MainQuery setInvoiceIDContains(String value) { this.InvoiceIDContains = value; return this; } public String getInvoiceIDLike() { return InvoiceIDLike; } public SO_MainQuery setInvoiceIDLike(String value) { this.InvoiceIDLike = value; return this; } public ArrayList getInvoiceIDBetween() { return InvoiceIDBetween; } public SO_MainQuery setInvoiceIDBetween(ArrayList value) { this.InvoiceIDBetween = value; return this; } public ArrayList getInvoiceIDIn() { return InvoiceIDIn; } public SO_MainQuery setInvoiceIDIn(ArrayList value) { this.InvoiceIDIn = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public SO_MainQuery setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getLastSavedDateTimeGreaterThanOrEqualTo() { return LastSavedDateTimeGreaterThanOrEqualTo; } public SO_MainQuery setLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.LastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeGreaterThan() { return LastSavedDateTimeGreaterThan; } public SO_MainQuery setLastSavedDateTimeGreaterThan(Date value) { this.LastSavedDateTimeGreaterThan = value; return this; } public Date getLastSavedDateTimeLessThan() { return LastSavedDateTimeLessThan; } public SO_MainQuery setLastSavedDateTimeLessThan(Date value) { this.LastSavedDateTimeLessThan = value; return this; } public Date getLastSavedDateTimeLessThanOrEqualTo() { return LastSavedDateTimeLessThanOrEqualTo; } public SO_MainQuery setLastSavedDateTimeLessThanOrEqualTo(Date value) { this.LastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeNotEqualTo() { return LastSavedDateTimeNotEqualTo; } public SO_MainQuery setLastSavedDateTimeNotEqualTo(Date value) { this.LastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getLastSavedDateTimeBetween() { return LastSavedDateTimeBetween; } public SO_MainQuery setLastSavedDateTimeBetween(ArrayList value) { this.LastSavedDateTimeBetween = value; return this; } public ArrayList getLastSavedDateTimeIn() { return LastSavedDateTimeIn; } public SO_MainQuery setLastSavedDateTimeIn(ArrayList value) { this.LastSavedDateTimeIn = value; return this; } public String getDebtorID() { return DebtorID; } public SO_MainQuery setDebtorID(String value) { this.DebtorID = value; return this; } public String getDebtorIDStartsWith() { return DebtorIDStartsWith; } public SO_MainQuery setDebtorIDStartsWith(String value) { this.DebtorIDStartsWith = value; return this; } public String getDebtorIDEndsWith() { return DebtorIDEndsWith; } public SO_MainQuery setDebtorIDEndsWith(String value) { this.DebtorIDEndsWith = value; return this; } public String getDebtorIDContains() { return DebtorIDContains; } public SO_MainQuery setDebtorIDContains(String value) { this.DebtorIDContains = value; return this; } public String getDebtorIDLike() { return DebtorIDLike; } public SO_MainQuery setDebtorIDLike(String value) { this.DebtorIDLike = value; return this; } public ArrayList getDebtorIDBetween() { return DebtorIDBetween; } public SO_MainQuery setDebtorIDBetween(ArrayList value) { this.DebtorIDBetween = value; return this; } public ArrayList getDebtorIDIn() { return DebtorIDIn; } public SO_MainQuery setDebtorIDIn(ArrayList value) { this.DebtorIDIn = value; return this; } public String getStaffID() { return StaffID; } public SO_MainQuery setStaffID(String value) { this.StaffID = value; return this; } public String getStaffIDStartsWith() { return StaffIDStartsWith; } public SO_MainQuery setStaffIDStartsWith(String value) { this.StaffIDStartsWith = value; return this; } public String getStaffIDEndsWith() { return StaffIDEndsWith; } public SO_MainQuery setStaffIDEndsWith(String value) { this.StaffIDEndsWith = value; return this; } public String getStaffIDContains() { return StaffIDContains; } public SO_MainQuery setStaffIDContains(String value) { this.StaffIDContains = value; return this; } public String getStaffIDLike() { return StaffIDLike; } public SO_MainQuery setStaffIDLike(String value) { this.StaffIDLike = value; return this; } public ArrayList getStaffIDBetween() { return StaffIDBetween; } public SO_MainQuery setStaffIDBetween(ArrayList value) { this.StaffIDBetween = value; return this; } public ArrayList getStaffIDIn() { return StaffIDIn; } public SO_MainQuery setStaffIDIn(ArrayList value) { this.StaffIDIn = value; return this; } public String getInvoiceNo() { return InvoiceNo; } public SO_MainQuery setInvoiceNo(String value) { this.InvoiceNo = value; return this; } public String getInvoiceNoStartsWith() { return InvoiceNoStartsWith; } public SO_MainQuery setInvoiceNoStartsWith(String value) { this.InvoiceNoStartsWith = value; return this; } public String getInvoiceNoEndsWith() { return InvoiceNoEndsWith; } public SO_MainQuery setInvoiceNoEndsWith(String value) { this.InvoiceNoEndsWith = value; return this; } public String getInvoiceNoContains() { return InvoiceNoContains; } public SO_MainQuery setInvoiceNoContains(String value) { this.InvoiceNoContains = value; return this; } public String getInvoiceNoLike() { return InvoiceNoLike; } public SO_MainQuery setInvoiceNoLike(String value) { this.InvoiceNoLike = value; return this; } public ArrayList getInvoiceNoBetween() { return InvoiceNoBetween; } public SO_MainQuery setInvoiceNoBetween(ArrayList value) { this.InvoiceNoBetween = value; return this; } public ArrayList getInvoiceNoIn() { return InvoiceNoIn; } public SO_MainQuery setInvoiceNoIn(ArrayList value) { this.InvoiceNoIn = value; return this; } public Date getInvoiceInitDate() { return InvoiceInitDate; } public SO_MainQuery setInvoiceInitDate(Date value) { this.InvoiceInitDate = value; return this; } public Date getInvoiceInitDateGreaterThanOrEqualTo() { return InvoiceInitDateGreaterThanOrEqualTo; } public SO_MainQuery setInvoiceInitDateGreaterThanOrEqualTo(Date value) { this.InvoiceInitDateGreaterThanOrEqualTo = value; return this; } public Date getInvoiceInitDateGreaterThan() { return InvoiceInitDateGreaterThan; } public SO_MainQuery setInvoiceInitDateGreaterThan(Date value) { this.InvoiceInitDateGreaterThan = value; return this; } public Date getInvoiceInitDateLessThan() { return InvoiceInitDateLessThan; } public SO_MainQuery setInvoiceInitDateLessThan(Date value) { this.InvoiceInitDateLessThan = value; return this; } public Date getInvoiceInitDateLessThanOrEqualTo() { return InvoiceInitDateLessThanOrEqualTo; } public SO_MainQuery setInvoiceInitDateLessThanOrEqualTo(Date value) { this.InvoiceInitDateLessThanOrEqualTo = value; return this; } public Date getInvoiceInitDateNotEqualTo() { return InvoiceInitDateNotEqualTo; } public SO_MainQuery setInvoiceInitDateNotEqualTo(Date value) { this.InvoiceInitDateNotEqualTo = value; return this; } public ArrayList getInvoiceInitDateBetween() { return InvoiceInitDateBetween; } public SO_MainQuery setInvoiceInitDateBetween(ArrayList value) { this.InvoiceInitDateBetween = value; return this; } public ArrayList getInvoiceInitDateIn() { return InvoiceInitDateIn; } public SO_MainQuery setInvoiceInitDateIn(ArrayList value) { this.InvoiceInitDateIn = value; return this; } public Date getInvoiceLastDate() { return InvoiceLastDate; } public SO_MainQuery setInvoiceLastDate(Date value) { this.InvoiceLastDate = value; return this; } public Date getInvoiceLastDateGreaterThanOrEqualTo() { return InvoiceLastDateGreaterThanOrEqualTo; } public SO_MainQuery setInvoiceLastDateGreaterThanOrEqualTo(Date value) { this.InvoiceLastDateGreaterThanOrEqualTo = value; return this; } public Date getInvoiceLastDateGreaterThan() { return InvoiceLastDateGreaterThan; } public SO_MainQuery setInvoiceLastDateGreaterThan(Date value) { this.InvoiceLastDateGreaterThan = value; return this; } public Date getInvoiceLastDateLessThan() { return InvoiceLastDateLessThan; } public SO_MainQuery setInvoiceLastDateLessThan(Date value) { this.InvoiceLastDateLessThan = value; return this; } public Date getInvoiceLastDateLessThanOrEqualTo() { return InvoiceLastDateLessThanOrEqualTo; } public SO_MainQuery setInvoiceLastDateLessThanOrEqualTo(Date value) { this.InvoiceLastDateLessThanOrEqualTo = value; return this; } public Date getInvoiceLastDateNotEqualTo() { return InvoiceLastDateNotEqualTo; } public SO_MainQuery setInvoiceLastDateNotEqualTo(Date value) { this.InvoiceLastDateNotEqualTo = value; return this; } public ArrayList getInvoiceLastDateBetween() { return InvoiceLastDateBetween; } public SO_MainQuery setInvoiceLastDateBetween(ArrayList value) { this.InvoiceLastDateBetween = value; return this; } public ArrayList getInvoiceLastDateIn() { return InvoiceLastDateIn; } public SO_MainQuery setInvoiceLastDateIn(ArrayList value) { this.InvoiceLastDateIn = value; return this; } public String getOrderNo() { return OrderNo; } public SO_MainQuery setOrderNo(String value) { this.OrderNo = value; return this; } public String getOrderNoStartsWith() { return OrderNoStartsWith; } public SO_MainQuery setOrderNoStartsWith(String value) { this.OrderNoStartsWith = value; return this; } public String getOrderNoEndsWith() { return OrderNoEndsWith; } public SO_MainQuery setOrderNoEndsWith(String value) { this.OrderNoEndsWith = value; return this; } public String getOrderNoContains() { return OrderNoContains; } public SO_MainQuery setOrderNoContains(String value) { this.OrderNoContains = value; return this; } public String getOrderNoLike() { return OrderNoLike; } public SO_MainQuery setOrderNoLike(String value) { this.OrderNoLike = value; return this; } public ArrayList getOrderNoBetween() { return OrderNoBetween; } public SO_MainQuery setOrderNoBetween(ArrayList value) { this.OrderNoBetween = value; return this; } public ArrayList getOrderNoIn() { return OrderNoIn; } public SO_MainQuery setOrderNoIn(ArrayList value) { this.OrderNoIn = value; return this; } public String getTaxExemptNo() { return TaxExemptNo; } public SO_MainQuery setTaxExemptNo(String value) { this.TaxExemptNo = value; return this; } public String getTaxExemptNoStartsWith() { return TaxExemptNoStartsWith; } public SO_MainQuery setTaxExemptNoStartsWith(String value) { this.TaxExemptNoStartsWith = value; return this; } public String getTaxExemptNoEndsWith() { return TaxExemptNoEndsWith; } public SO_MainQuery setTaxExemptNoEndsWith(String value) { this.TaxExemptNoEndsWith = value; return this; } public String getTaxExemptNoContains() { return TaxExemptNoContains; } public SO_MainQuery setTaxExemptNoContains(String value) { this.TaxExemptNoContains = value; return this; } public String getTaxExemptNoLike() { return TaxExemptNoLike; } public SO_MainQuery setTaxExemptNoLike(String value) { this.TaxExemptNoLike = value; return this; } public ArrayList getTaxExemptNoBetween() { return TaxExemptNoBetween; } public SO_MainQuery setTaxExemptNoBetween(ArrayList value) { this.TaxExemptNoBetween = value; return this; } public ArrayList getTaxExemptNoIn() { return TaxExemptNoIn; } public SO_MainQuery setTaxExemptNoIn(ArrayList value) { this.TaxExemptNoIn = value; return this; } public Boolean isWholeSaleInvoice() { return WholeSaleInvoice; } public SO_MainQuery setWholeSaleInvoice(Boolean value) { this.WholeSaleInvoice = value; return this; } public BigDecimal getInvoiceTotal() { return InvoiceTotal; } public SO_MainQuery setInvoiceTotal(BigDecimal value) { this.InvoiceTotal = value; return this; } public BigDecimal getInvoiceTotalGreaterThanOrEqualTo() { return InvoiceTotalGreaterThanOrEqualTo; } public SO_MainQuery setInvoiceTotalGreaterThanOrEqualTo(BigDecimal value) { this.InvoiceTotalGreaterThanOrEqualTo = value; return this; } public BigDecimal getInvoiceTotalGreaterThan() { return InvoiceTotalGreaterThan; } public SO_MainQuery setInvoiceTotalGreaterThan(BigDecimal value) { this.InvoiceTotalGreaterThan = value; return this; } public BigDecimal getInvoiceTotalLessThan() { return InvoiceTotalLessThan; } public SO_MainQuery setInvoiceTotalLessThan(BigDecimal value) { this.InvoiceTotalLessThan = value; return this; } public BigDecimal getInvoiceTotalLessThanOrEqualTo() { return InvoiceTotalLessThanOrEqualTo; } public SO_MainQuery setInvoiceTotalLessThanOrEqualTo(BigDecimal value) { this.InvoiceTotalLessThanOrEqualTo = value; return this; } public BigDecimal getInvoiceTotalNotEqualTo() { return InvoiceTotalNotEqualTo; } public SO_MainQuery setInvoiceTotalNotEqualTo(BigDecimal value) { this.InvoiceTotalNotEqualTo = value; return this; } public ArrayList getInvoiceTotalBetween() { return InvoiceTotalBetween; } public SO_MainQuery setInvoiceTotalBetween(ArrayList value) { this.InvoiceTotalBetween = value; return this; } public ArrayList getInvoiceTotalIn() { return InvoiceTotalIn; } public SO_MainQuery setInvoiceTotalIn(ArrayList value) { this.InvoiceTotalIn = value; return this; } public Short getCurrentHistoryNo() { return CurrentHistoryNo; } public SO_MainQuery setCurrentHistoryNo(Short value) { this.CurrentHistoryNo = value; return this; } public Short getCurrentHistoryNoGreaterThanOrEqualTo() { return CurrentHistoryNoGreaterThanOrEqualTo; } public SO_MainQuery setCurrentHistoryNoGreaterThanOrEqualTo(Short value) { this.CurrentHistoryNoGreaterThanOrEqualTo = value; return this; } public Short getCurrentHistoryNoGreaterThan() { return CurrentHistoryNoGreaterThan; } public SO_MainQuery setCurrentHistoryNoGreaterThan(Short value) { this.CurrentHistoryNoGreaterThan = value; return this; } public Short getCurrentHistoryNoLessThan() { return CurrentHistoryNoLessThan; } public SO_MainQuery setCurrentHistoryNoLessThan(Short value) { this.CurrentHistoryNoLessThan = value; return this; } public Short getCurrentHistoryNoLessThanOrEqualTo() { return CurrentHistoryNoLessThanOrEqualTo; } public SO_MainQuery setCurrentHistoryNoLessThanOrEqualTo(Short value) { this.CurrentHistoryNoLessThanOrEqualTo = value; return this; } public Short getCurrentHistoryNoNotEqualTo() { return CurrentHistoryNoNotEqualTo; } public SO_MainQuery setCurrentHistoryNoNotEqualTo(Short value) { this.CurrentHistoryNoNotEqualTo = value; return this; } public ArrayList getCurrentHistoryNoBetween() { return CurrentHistoryNoBetween; } public SO_MainQuery setCurrentHistoryNoBetween(ArrayList value) { this.CurrentHistoryNoBetween = value; return this; } public ArrayList getCurrentHistoryNoIn() { return CurrentHistoryNoIn; } public SO_MainQuery setCurrentHistoryNoIn(ArrayList value) { this.CurrentHistoryNoIn = value; return this; } public Short getStatus() { return Status; } public SO_MainQuery setStatus(Short value) { this.Status = value; return this; } public Short getStatusGreaterThanOrEqualTo() { return StatusGreaterThanOrEqualTo; } public SO_MainQuery setStatusGreaterThanOrEqualTo(Short value) { this.StatusGreaterThanOrEqualTo = value; return this; } public Short getStatusGreaterThan() { return StatusGreaterThan; } public SO_MainQuery setStatusGreaterThan(Short value) { this.StatusGreaterThan = value; return this; } public Short getStatusLessThan() { return StatusLessThan; } public SO_MainQuery setStatusLessThan(Short value) { this.StatusLessThan = value; return this; } public Short getStatusLessThanOrEqualTo() { return StatusLessThanOrEqualTo; } public SO_MainQuery setStatusLessThanOrEqualTo(Short value) { this.StatusLessThanOrEqualTo = value; return this; } public Short getStatusNotEqualTo() { return StatusNotEqualTo; } public SO_MainQuery setStatusNotEqualTo(Short value) { this.StatusNotEqualTo = value; return this; } public ArrayList getStatusBetween() { return StatusBetween; } public SO_MainQuery setStatusBetween(ArrayList value) { this.StatusBetween = value; return this; } public ArrayList getStatusIn() { return StatusIn; } public SO_MainQuery setStatusIn(ArrayList value) { this.StatusIn = value; return this; } public Short getBillWhenComplete() { return BillWhenComplete; } public SO_MainQuery setBillWhenComplete(Short value) { this.BillWhenComplete = value; return this; } public Short getBillWhenCompleteGreaterThanOrEqualTo() { return BillWhenCompleteGreaterThanOrEqualTo; } public SO_MainQuery setBillWhenCompleteGreaterThanOrEqualTo(Short value) { this.BillWhenCompleteGreaterThanOrEqualTo = value; return this; } public Short getBillWhenCompleteGreaterThan() { return BillWhenCompleteGreaterThan; } public SO_MainQuery setBillWhenCompleteGreaterThan(Short value) { this.BillWhenCompleteGreaterThan = value; return this; } public Short getBillWhenCompleteLessThan() { return BillWhenCompleteLessThan; } public SO_MainQuery setBillWhenCompleteLessThan(Short value) { this.BillWhenCompleteLessThan = value; return this; } public Short getBillWhenCompleteLessThanOrEqualTo() { return BillWhenCompleteLessThanOrEqualTo; } public SO_MainQuery setBillWhenCompleteLessThanOrEqualTo(Short value) { this.BillWhenCompleteLessThanOrEqualTo = value; return this; } public Short getBillWhenCompleteNotEqualTo() { return BillWhenCompleteNotEqualTo; } public SO_MainQuery setBillWhenCompleteNotEqualTo(Short value) { this.BillWhenCompleteNotEqualTo = value; return this; } public ArrayList getBillWhenCompleteBetween() { return BillWhenCompleteBetween; } public SO_MainQuery setBillWhenCompleteBetween(ArrayList value) { this.BillWhenCompleteBetween = value; return this; } public ArrayList getBillWhenCompleteIn() { return BillWhenCompleteIn; } public SO_MainQuery setBillWhenCompleteIn(ArrayList value) { this.BillWhenCompleteIn = value; return this; } public Boolean isCreditNote() { return CreditNote; } public SO_MainQuery setCreditNote(Boolean value) { this.CreditNote = value; return this; } public Short getInvoiceType() { return InvoiceType; } public SO_MainQuery setInvoiceType(Short value) { this.InvoiceType = value; return this; } public Short getInvoiceTypeGreaterThanOrEqualTo() { return InvoiceTypeGreaterThanOrEqualTo; } public SO_MainQuery setInvoiceTypeGreaterThanOrEqualTo(Short value) { this.InvoiceTypeGreaterThanOrEqualTo = value; return this; } public Short getInvoiceTypeGreaterThan() { return InvoiceTypeGreaterThan; } public SO_MainQuery setInvoiceTypeGreaterThan(Short value) { this.InvoiceTypeGreaterThan = value; return this; } public Short getInvoiceTypeLessThan() { return InvoiceTypeLessThan; } public SO_MainQuery setInvoiceTypeLessThan(Short value) { this.InvoiceTypeLessThan = value; return this; } public Short getInvoiceTypeLessThanOrEqualTo() { return InvoiceTypeLessThanOrEqualTo; } public SO_MainQuery setInvoiceTypeLessThanOrEqualTo(Short value) { this.InvoiceTypeLessThanOrEqualTo = value; return this; } public Short getInvoiceTypeNotEqualTo() { return InvoiceTypeNotEqualTo; } public SO_MainQuery setInvoiceTypeNotEqualTo(Short value) { this.InvoiceTypeNotEqualTo = value; return this; } public ArrayList getInvoiceTypeBetween() { return InvoiceTypeBetween; } public SO_MainQuery setInvoiceTypeBetween(ArrayList value) { this.InvoiceTypeBetween = value; return this; } public ArrayList getInvoiceTypeIn() { return InvoiceTypeIn; } public SO_MainQuery setInvoiceTypeIn(ArrayList value) { this.InvoiceTypeIn = value; return this; } public String getGroupSupplierID() { return GroupSupplierID; } public SO_MainQuery setGroupSupplierID(String value) { this.GroupSupplierID = value; return this; } public String getGroupSupplierIDStartsWith() { return GroupSupplierIDStartsWith; } public SO_MainQuery setGroupSupplierIDStartsWith(String value) { this.GroupSupplierIDStartsWith = value; return this; } public String getGroupSupplierIDEndsWith() { return GroupSupplierIDEndsWith; } public SO_MainQuery setGroupSupplierIDEndsWith(String value) { this.GroupSupplierIDEndsWith = value; return this; } public String getGroupSupplierIDContains() { return GroupSupplierIDContains; } public SO_MainQuery setGroupSupplierIDContains(String value) { this.GroupSupplierIDContains = value; return this; } public String getGroupSupplierIDLike() { return GroupSupplierIDLike; } public SO_MainQuery setGroupSupplierIDLike(String value) { this.GroupSupplierIDLike = value; return this; } public ArrayList getGroupSupplierIDBetween() { return GroupSupplierIDBetween; } public SO_MainQuery setGroupSupplierIDBetween(ArrayList value) { this.GroupSupplierIDBetween = value; return this; } public ArrayList getGroupSupplierIDIn() { return GroupSupplierIDIn; } public SO_MainQuery setGroupSupplierIDIn(ArrayList value) { this.GroupSupplierIDIn = value; return this; } public Boolean isGroupOrdered() { return GroupOrdered; } public SO_MainQuery setGroupOrdered(Boolean value) { this.GroupOrdered = value; return this; } public String getInLogicalID() { return IN_LogicalID; } public SO_MainQuery setInLogicalID(String value) { this.IN_LogicalID = value; return this; } public String getInLogicalIDStartsWith() { return IN_LogicalIDStartsWith; } public SO_MainQuery setInLogicalIDStartsWith(String value) { this.IN_LogicalIDStartsWith = value; return this; } public String getInLogicalIDEndsWith() { return IN_LogicalIDEndsWith; } public SO_MainQuery setInLogicalIDEndsWith(String value) { this.IN_LogicalIDEndsWith = value; return this; } public String getInLogicalIDContains() { return IN_LogicalIDContains; } public SO_MainQuery setInLogicalIDContains(String value) { this.IN_LogicalIDContains = value; return this; } public String getInLogicalIDLike() { return IN_LogicalIDLike; } public SO_MainQuery setInLogicalIDLike(String value) { this.IN_LogicalIDLike = value; return this; } public ArrayList getInLogicalIDBetween() { return IN_LogicalIDBetween; } public SO_MainQuery setInLogicalIDBetween(ArrayList value) { this.IN_LogicalIDBetween = value; return this; } public ArrayList getInLogicalIDIn() { return IN_LogicalIDIn; } public SO_MainQuery setInLogicalIDIn(ArrayList value) { this.IN_LogicalIDIn = value; return this; } public String getBranchID() { return BranchID; } public SO_MainQuery setBranchID(String value) { this.BranchID = value; return this; } public String getBranchIDStartsWith() { return BranchIDStartsWith; } public SO_MainQuery setBranchIDStartsWith(String value) { this.BranchIDStartsWith = value; return this; } public String getBranchIDEndsWith() { return BranchIDEndsWith; } public SO_MainQuery setBranchIDEndsWith(String value) { this.BranchIDEndsWith = value; return this; } public String getBranchIDContains() { return BranchIDContains; } public SO_MainQuery setBranchIDContains(String value) { this.BranchIDContains = value; return this; } public String getBranchIDLike() { return BranchIDLike; } public SO_MainQuery setBranchIDLike(String value) { this.BranchIDLike = value; return this; } public ArrayList getBranchIDBetween() { return BranchIDBetween; } public SO_MainQuery setBranchIDBetween(ArrayList value) { this.BranchIDBetween = value; return this; } public ArrayList getBranchIDIn() { return BranchIDIn; } public SO_MainQuery setBranchIDIn(ArrayList value) { this.BranchIDIn = value; return this; } public String getSoReference() { return SOReference; } public SO_MainQuery setSoReference(String value) { this.SOReference = value; return this; } public String getSoReferenceStartsWith() { return SOReferenceStartsWith; } public SO_MainQuery setSoReferenceStartsWith(String value) { this.SOReferenceStartsWith = value; return this; } public String getSoReferenceEndsWith() { return SOReferenceEndsWith; } public SO_MainQuery setSoReferenceEndsWith(String value) { this.SOReferenceEndsWith = value; return this; } public String getSoReferenceContains() { return SOReferenceContains; } public SO_MainQuery setSoReferenceContains(String value) { this.SOReferenceContains = value; return this; } public String getSoReferenceLike() { return SOReferenceLike; } public SO_MainQuery setSoReferenceLike(String value) { this.SOReferenceLike = value; return this; } public ArrayList getSoReferenceBetween() { return SOReferenceBetween; } public SO_MainQuery setSoReferenceBetween(ArrayList value) { this.SOReferenceBetween = value; return this; } public ArrayList getSoReferenceIn() { return SOReferenceIn; } public SO_MainQuery setSoReferenceIn(ArrayList value) { this.SOReferenceIn = value; return this; } public String getJobCostID() { return JobCostID; } public SO_MainQuery setJobCostID(String value) { this.JobCostID = value; return this; } public String getJobCostIDStartsWith() { return JobCostIDStartsWith; } public SO_MainQuery setJobCostIDStartsWith(String value) { this.JobCostIDStartsWith = value; return this; } public String getJobCostIDEndsWith() { return JobCostIDEndsWith; } public SO_MainQuery setJobCostIDEndsWith(String value) { this.JobCostIDEndsWith = value; return this; } public String getJobCostIDContains() { return JobCostIDContains; } public SO_MainQuery setJobCostIDContains(String value) { this.JobCostIDContains = value; return this; } public String getJobCostIDLike() { return JobCostIDLike; } public SO_MainQuery setJobCostIDLike(String value) { this.JobCostIDLike = value; return this; } public ArrayList getJobCostIDBetween() { return JobCostIDBetween; } public SO_MainQuery setJobCostIDBetween(ArrayList value) { this.JobCostIDBetween = value; return this; } public ArrayList getJobCostIDIn() { return JobCostIDIn; } public SO_MainQuery setJobCostIDIn(ArrayList value) { this.JobCostIDIn = value; return this; } public String getParentDebtorID() { return ParentDebtorID; } public SO_MainQuery setParentDebtorID(String value) { this.ParentDebtorID = value; return this; } public String getParentDebtorIDStartsWith() { return ParentDebtorIDStartsWith; } public SO_MainQuery setParentDebtorIDStartsWith(String value) { this.ParentDebtorIDStartsWith = value; return this; } public String getParentDebtorIDEndsWith() { return ParentDebtorIDEndsWith; } public SO_MainQuery setParentDebtorIDEndsWith(String value) { this.ParentDebtorIDEndsWith = value; return this; } public String getParentDebtorIDContains() { return ParentDebtorIDContains; } public SO_MainQuery setParentDebtorIDContains(String value) { this.ParentDebtorIDContains = value; return this; } public String getParentDebtorIDLike() { return ParentDebtorIDLike; } public SO_MainQuery setParentDebtorIDLike(String value) { this.ParentDebtorIDLike = value; return this; } public ArrayList getParentDebtorIDBetween() { return ParentDebtorIDBetween; } public SO_MainQuery setParentDebtorIDBetween(ArrayList value) { this.ParentDebtorIDBetween = value; return this; } public ArrayList getParentDebtorIDIn() { return ParentDebtorIDIn; } public SO_MainQuery setParentDebtorIDIn(ArrayList value) { this.ParentDebtorIDIn = value; return this; } public Short getBackOrderMode() { return BackOrderMode; } public SO_MainQuery setBackOrderMode(Short value) { this.BackOrderMode = value; return this; } public Short getBackOrderModeGreaterThanOrEqualTo() { return BackOrderModeGreaterThanOrEqualTo; } public SO_MainQuery setBackOrderModeGreaterThanOrEqualTo(Short value) { this.BackOrderModeGreaterThanOrEqualTo = value; return this; } public Short getBackOrderModeGreaterThan() { return BackOrderModeGreaterThan; } public SO_MainQuery setBackOrderModeGreaterThan(Short value) { this.BackOrderModeGreaterThan = value; return this; } public Short getBackOrderModeLessThan() { return BackOrderModeLessThan; } public SO_MainQuery setBackOrderModeLessThan(Short value) { this.BackOrderModeLessThan = value; return this; } public Short getBackOrderModeLessThanOrEqualTo() { return BackOrderModeLessThanOrEqualTo; } public SO_MainQuery setBackOrderModeLessThanOrEqualTo(Short value) { this.BackOrderModeLessThanOrEqualTo = value; return this; } public Short getBackOrderModeNotEqualTo() { return BackOrderModeNotEqualTo; } public SO_MainQuery setBackOrderModeNotEqualTo(Short value) { this.BackOrderModeNotEqualTo = value; return this; } public ArrayList getBackOrderModeBetween() { return BackOrderModeBetween; } public SO_MainQuery setBackOrderModeBetween(ArrayList value) { this.BackOrderModeBetween = value; return this; } public ArrayList getBackOrderModeIn() { return BackOrderModeIn; } public SO_MainQuery setBackOrderModeIn(ArrayList value) { this.BackOrderModeIn = value; return this; } public String getDebtorContactName() { return DebtorContactName; } public SO_MainQuery setDebtorContactName(String value) { this.DebtorContactName = value; return this; } public String getDebtorContactNameStartsWith() { return DebtorContactNameStartsWith; } public SO_MainQuery setDebtorContactNameStartsWith(String value) { this.DebtorContactNameStartsWith = value; return this; } public String getDebtorContactNameEndsWith() { return DebtorContactNameEndsWith; } public SO_MainQuery setDebtorContactNameEndsWith(String value) { this.DebtorContactNameEndsWith = value; return this; } public String getDebtorContactNameContains() { return DebtorContactNameContains; } public SO_MainQuery setDebtorContactNameContains(String value) { this.DebtorContactNameContains = value; return this; } public String getDebtorContactNameLike() { return DebtorContactNameLike; } public SO_MainQuery setDebtorContactNameLike(String value) { this.DebtorContactNameLike = value; return this; } public ArrayList getDebtorContactNameBetween() { return DebtorContactNameBetween; } public SO_MainQuery setDebtorContactNameBetween(ArrayList value) { this.DebtorContactNameBetween = value; return this; } public ArrayList getDebtorContactNameIn() { return DebtorContactNameIn; } public SO_MainQuery setDebtorContactNameIn(ArrayList value) { this.DebtorContactNameIn = value; return this; } public Integer getDocType() { return DocType; } public SO_MainQuery setDocType(Integer value) { this.DocType = value; return this; } public Integer getDocTypeGreaterThanOrEqualTo() { return DocTypeGreaterThanOrEqualTo; } public SO_MainQuery setDocTypeGreaterThanOrEqualTo(Integer value) { this.DocTypeGreaterThanOrEqualTo = value; return this; } public Integer getDocTypeGreaterThan() { return DocTypeGreaterThan; } public SO_MainQuery setDocTypeGreaterThan(Integer value) { this.DocTypeGreaterThan = value; return this; } public Integer getDocTypeLessThan() { return DocTypeLessThan; } public SO_MainQuery setDocTypeLessThan(Integer value) { this.DocTypeLessThan = value; return this; } public Integer getDocTypeLessThanOrEqualTo() { return DocTypeLessThanOrEqualTo; } public SO_MainQuery setDocTypeLessThanOrEqualTo(Integer value) { this.DocTypeLessThanOrEqualTo = value; return this; } public Integer getDocTypeNotEqualTo() { return DocTypeNotEqualTo; } public SO_MainQuery setDocTypeNotEqualTo(Integer value) { this.DocTypeNotEqualTo = value; return this; } public ArrayList getDocTypeBetween() { return DocTypeBetween; } public SO_MainQuery setDocTypeBetween(ArrayList value) { this.DocTypeBetween = value; return this; } public ArrayList getDocTypeIn() { return DocTypeIn; } public SO_MainQuery setDocTypeIn(ArrayList value) { this.DocTypeIn = value; return this; } public Boolean isGstInvoice() { return GSTInvoice; } public SO_MainQuery setGstInvoice(Boolean value) { this.GSTInvoice = value; return this; } public Date getExpectedDeliveryDate() { return ExpectedDeliveryDate; } public SO_MainQuery setExpectedDeliveryDate(Date value) { this.ExpectedDeliveryDate = value; return this; } public Date getExpectedDeliveryDateGreaterThanOrEqualTo() { return ExpectedDeliveryDateGreaterThanOrEqualTo; } public SO_MainQuery setExpectedDeliveryDateGreaterThanOrEqualTo(Date value) { this.ExpectedDeliveryDateGreaterThanOrEqualTo = value; return this; } public Date getExpectedDeliveryDateGreaterThan() { return ExpectedDeliveryDateGreaterThan; } public SO_MainQuery setExpectedDeliveryDateGreaterThan(Date value) { this.ExpectedDeliveryDateGreaterThan = value; return this; } public Date getExpectedDeliveryDateLessThan() { return ExpectedDeliveryDateLessThan; } public SO_MainQuery setExpectedDeliveryDateLessThan(Date value) { this.ExpectedDeliveryDateLessThan = value; return this; } public Date getExpectedDeliveryDateLessThanOrEqualTo() { return ExpectedDeliveryDateLessThanOrEqualTo; } public SO_MainQuery setExpectedDeliveryDateLessThanOrEqualTo(Date value) { this.ExpectedDeliveryDateLessThanOrEqualTo = value; return this; } public Date getExpectedDeliveryDateNotEqualTo() { return ExpectedDeliveryDateNotEqualTo; } public SO_MainQuery setExpectedDeliveryDateNotEqualTo(Date value) { this.ExpectedDeliveryDateNotEqualTo = value; return this; } public ArrayList getExpectedDeliveryDateBetween() { return ExpectedDeliveryDateBetween; } public SO_MainQuery setExpectedDeliveryDateBetween(ArrayList value) { this.ExpectedDeliveryDateBetween = value; return this; } public ArrayList getExpectedDeliveryDateIn() { return ExpectedDeliveryDateIn; } public SO_MainQuery setExpectedDeliveryDateIn(ArrayList value) { this.ExpectedDeliveryDateIn = value; return this; } public String getSourceQuoteHistoryID() { return SourceQuoteHistoryID; } public SO_MainQuery setSourceQuoteHistoryID(String value) { this.SourceQuoteHistoryID = value; return this; } public String getSourceQuoteHistoryIDStartsWith() { return SourceQuoteHistoryIDStartsWith; } public SO_MainQuery setSourceQuoteHistoryIDStartsWith(String value) { this.SourceQuoteHistoryIDStartsWith = value; return this; } public String getSourceQuoteHistoryIDEndsWith() { return SourceQuoteHistoryIDEndsWith; } public SO_MainQuery setSourceQuoteHistoryIDEndsWith(String value) { this.SourceQuoteHistoryIDEndsWith = value; return this; } public String getSourceQuoteHistoryIDContains() { return SourceQuoteHistoryIDContains; } public SO_MainQuery setSourceQuoteHistoryIDContains(String value) { this.SourceQuoteHistoryIDContains = value; return this; } public String getSourceQuoteHistoryIDLike() { return SourceQuoteHistoryIDLike; } public SO_MainQuery setSourceQuoteHistoryIDLike(String value) { this.SourceQuoteHistoryIDLike = value; return this; } public ArrayList getSourceQuoteHistoryIDBetween() { return SourceQuoteHistoryIDBetween; } public SO_MainQuery setSourceQuoteHistoryIDBetween(ArrayList value) { this.SourceQuoteHistoryIDBetween = value; return this; } public ArrayList getSourceQuoteHistoryIDIn() { return SourceQuoteHistoryIDIn; } public SO_MainQuery setSourceQuoteHistoryIDIn(ArrayList value) { this.SourceQuoteHistoryIDIn = value; return this; } public String getPriceSchemeID() { return PriceSchemeID; } public SO_MainQuery setPriceSchemeID(String value) { this.PriceSchemeID = value; return this; } public String getPriceSchemeIDStartsWith() { return PriceSchemeIDStartsWith; } public SO_MainQuery setPriceSchemeIDStartsWith(String value) { this.PriceSchemeIDStartsWith = value; return this; } public String getPriceSchemeIDEndsWith() { return PriceSchemeIDEndsWith; } public SO_MainQuery setPriceSchemeIDEndsWith(String value) { this.PriceSchemeIDEndsWith = value; return this; } public String getPriceSchemeIDContains() { return PriceSchemeIDContains; } public SO_MainQuery setPriceSchemeIDContains(String value) { this.PriceSchemeIDContains = value; return this; } public String getPriceSchemeIDLike() { return PriceSchemeIDLike; } public SO_MainQuery setPriceSchemeIDLike(String value) { this.PriceSchemeIDLike = value; return this; } public ArrayList getPriceSchemeIDBetween() { return PriceSchemeIDBetween; } public SO_MainQuery setPriceSchemeIDBetween(ArrayList value) { this.PriceSchemeIDBetween = value; return this; } public ArrayList getPriceSchemeIDIn() { return PriceSchemeIDIn; } public SO_MainQuery setPriceSchemeIDIn(ArrayList value) { this.PriceSchemeIDIn = value; return this; } public String getCreditReasonID() { return CreditReasonID; } public SO_MainQuery setCreditReasonID(String value) { this.CreditReasonID = value; return this; } public String getCreditReasonIDStartsWith() { return CreditReasonIDStartsWith; } public SO_MainQuery setCreditReasonIDStartsWith(String value) { this.CreditReasonIDStartsWith = value; return this; } public String getCreditReasonIDEndsWith() { return CreditReasonIDEndsWith; } public SO_MainQuery setCreditReasonIDEndsWith(String value) { this.CreditReasonIDEndsWith = value; return this; } public String getCreditReasonIDContains() { return CreditReasonIDContains; } public SO_MainQuery setCreditReasonIDContains(String value) { this.CreditReasonIDContains = value; return this; } public String getCreditReasonIDLike() { return CreditReasonIDLike; } public SO_MainQuery setCreditReasonIDLike(String value) { this.CreditReasonIDLike = value; return this; } public ArrayList getCreditReasonIDBetween() { return CreditReasonIDBetween; } public SO_MainQuery setCreditReasonIDBetween(ArrayList value) { this.CreditReasonIDBetween = value; return this; } public ArrayList getCreditReasonIDIn() { return CreditReasonIDIn; } public SO_MainQuery setCreditReasonIDIn(ArrayList value) { this.CreditReasonIDIn = value; return this; } public Boolean isCreditIntoStock() { return CreditIntoStock; } public SO_MainQuery setCreditIntoStock(Boolean value) { this.CreditIntoStock = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class SO_NotesQuery extends QueryDb implements IReturn> { public String RecID = null; public String RecIDStartsWith = null; public String RecIDEndsWith = null; public String RecIDContains = null; public String RecIDLike = null; public ArrayList RecIDBetween = null; public ArrayList RecIDIn = null; public String InvoiceID = null; public String InvoiceIDStartsWith = null; public String InvoiceIDEndsWith = null; public String InvoiceIDContains = null; public String InvoiceIDLike = null; public ArrayList InvoiceIDBetween = null; public ArrayList InvoiceIDIn = null; public String NoteTypeID = null; public String NoteTypeIDStartsWith = null; public String NoteTypeIDEndsWith = null; public String NoteTypeIDContains = null; public String NoteTypeIDLike = null; public ArrayList NoteTypeIDBetween = null; public ArrayList NoteTypeIDIn = null; public Date LastSavedDateTime = null; public Date LastSavedDateTimeGreaterThanOrEqualTo = null; public Date LastSavedDateTimeGreaterThan = null; public Date LastSavedDateTimeLessThan = null; public Date LastSavedDateTimeLessThanOrEqualTo = null; public Date LastSavedDateTimeNotEqualTo = null; public ArrayList LastSavedDateTimeBetween = null; public ArrayList LastSavedDateTimeIn = null; public String LastSavedByStaffID = null; public String LastSavedByStaffIDStartsWith = null; public String LastSavedByStaffIDEndsWith = null; public String LastSavedByStaffIDContains = null; public String LastSavedByStaffIDLike = null; public ArrayList LastSavedByStaffIDBetween = null; public ArrayList LastSavedByStaffIDIn = null; public String NoteText = null; public String NoteTextStartsWith = null; public String NoteTextEndsWith = null; public String NoteTextContains = null; public String NoteTextLike = null; public ArrayList NoteTextBetween = null; public ArrayList NoteTextIn = null; public Integer ItemNo = null; public Integer ItemNoGreaterThanOrEqualTo = null; public Integer ItemNoGreaterThan = null; public Integer ItemNoLessThan = null; public Integer ItemNoLessThanOrEqualTo = null; public Integer ItemNoNotEqualTo = null; public ArrayList ItemNoBetween = null; public ArrayList ItemNoIn = null; public String getRecID() { return RecID; } public SO_NotesQuery setRecID(String value) { this.RecID = value; return this; } public String getRecIDStartsWith() { return RecIDStartsWith; } public SO_NotesQuery setRecIDStartsWith(String value) { this.RecIDStartsWith = value; return this; } public String getRecIDEndsWith() { return RecIDEndsWith; } public SO_NotesQuery setRecIDEndsWith(String value) { this.RecIDEndsWith = value; return this; } public String getRecIDContains() { return RecIDContains; } public SO_NotesQuery setRecIDContains(String value) { this.RecIDContains = value; return this; } public String getRecIDLike() { return RecIDLike; } public SO_NotesQuery setRecIDLike(String value) { this.RecIDLike = value; return this; } public ArrayList getRecIDBetween() { return RecIDBetween; } public SO_NotesQuery setRecIDBetween(ArrayList value) { this.RecIDBetween = value; return this; } public ArrayList getRecIDIn() { return RecIDIn; } public SO_NotesQuery setRecIDIn(ArrayList value) { this.RecIDIn = value; return this; } public String getInvoiceID() { return InvoiceID; } public SO_NotesQuery setInvoiceID(String value) { this.InvoiceID = value; return this; } public String getInvoiceIDStartsWith() { return InvoiceIDStartsWith; } public SO_NotesQuery setInvoiceIDStartsWith(String value) { this.InvoiceIDStartsWith = value; return this; } public String getInvoiceIDEndsWith() { return InvoiceIDEndsWith; } public SO_NotesQuery setInvoiceIDEndsWith(String value) { this.InvoiceIDEndsWith = value; return this; } public String getInvoiceIDContains() { return InvoiceIDContains; } public SO_NotesQuery setInvoiceIDContains(String value) { this.InvoiceIDContains = value; return this; } public String getInvoiceIDLike() { return InvoiceIDLike; } public SO_NotesQuery setInvoiceIDLike(String value) { this.InvoiceIDLike = value; return this; } public ArrayList getInvoiceIDBetween() { return InvoiceIDBetween; } public SO_NotesQuery setInvoiceIDBetween(ArrayList value) { this.InvoiceIDBetween = value; return this; } public ArrayList getInvoiceIDIn() { return InvoiceIDIn; } public SO_NotesQuery setInvoiceIDIn(ArrayList value) { this.InvoiceIDIn = value; return this; } public String getNoteTypeID() { return NoteTypeID; } public SO_NotesQuery setNoteTypeID(String value) { this.NoteTypeID = value; return this; } public String getNoteTypeIDStartsWith() { return NoteTypeIDStartsWith; } public SO_NotesQuery setNoteTypeIDStartsWith(String value) { this.NoteTypeIDStartsWith = value; return this; } public String getNoteTypeIDEndsWith() { return NoteTypeIDEndsWith; } public SO_NotesQuery setNoteTypeIDEndsWith(String value) { this.NoteTypeIDEndsWith = value; return this; } public String getNoteTypeIDContains() { return NoteTypeIDContains; } public SO_NotesQuery setNoteTypeIDContains(String value) { this.NoteTypeIDContains = value; return this; } public String getNoteTypeIDLike() { return NoteTypeIDLike; } public SO_NotesQuery setNoteTypeIDLike(String value) { this.NoteTypeIDLike = value; return this; } public ArrayList getNoteTypeIDBetween() { return NoteTypeIDBetween; } public SO_NotesQuery setNoteTypeIDBetween(ArrayList value) { this.NoteTypeIDBetween = value; return this; } public ArrayList getNoteTypeIDIn() { return NoteTypeIDIn; } public SO_NotesQuery setNoteTypeIDIn(ArrayList value) { this.NoteTypeIDIn = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public SO_NotesQuery setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getLastSavedDateTimeGreaterThanOrEqualTo() { return LastSavedDateTimeGreaterThanOrEqualTo; } public SO_NotesQuery setLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.LastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeGreaterThan() { return LastSavedDateTimeGreaterThan; } public SO_NotesQuery setLastSavedDateTimeGreaterThan(Date value) { this.LastSavedDateTimeGreaterThan = value; return this; } public Date getLastSavedDateTimeLessThan() { return LastSavedDateTimeLessThan; } public SO_NotesQuery setLastSavedDateTimeLessThan(Date value) { this.LastSavedDateTimeLessThan = value; return this; } public Date getLastSavedDateTimeLessThanOrEqualTo() { return LastSavedDateTimeLessThanOrEqualTo; } public SO_NotesQuery setLastSavedDateTimeLessThanOrEqualTo(Date value) { this.LastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeNotEqualTo() { return LastSavedDateTimeNotEqualTo; } public SO_NotesQuery setLastSavedDateTimeNotEqualTo(Date value) { this.LastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getLastSavedDateTimeBetween() { return LastSavedDateTimeBetween; } public SO_NotesQuery setLastSavedDateTimeBetween(ArrayList value) { this.LastSavedDateTimeBetween = value; return this; } public ArrayList getLastSavedDateTimeIn() { return LastSavedDateTimeIn; } public SO_NotesQuery setLastSavedDateTimeIn(ArrayList value) { this.LastSavedDateTimeIn = value; return this; } public String getLastSavedByStaffID() { return LastSavedByStaffID; } public SO_NotesQuery setLastSavedByStaffID(String value) { this.LastSavedByStaffID = value; return this; } public String getLastSavedByStaffIDStartsWith() { return LastSavedByStaffIDStartsWith; } public SO_NotesQuery setLastSavedByStaffIDStartsWith(String value) { this.LastSavedByStaffIDStartsWith = value; return this; } public String getLastSavedByStaffIDEndsWith() { return LastSavedByStaffIDEndsWith; } public SO_NotesQuery setLastSavedByStaffIDEndsWith(String value) { this.LastSavedByStaffIDEndsWith = value; return this; } public String getLastSavedByStaffIDContains() { return LastSavedByStaffIDContains; } public SO_NotesQuery setLastSavedByStaffIDContains(String value) { this.LastSavedByStaffIDContains = value; return this; } public String getLastSavedByStaffIDLike() { return LastSavedByStaffIDLike; } public SO_NotesQuery setLastSavedByStaffIDLike(String value) { this.LastSavedByStaffIDLike = value; return this; } public ArrayList getLastSavedByStaffIDBetween() { return LastSavedByStaffIDBetween; } public SO_NotesQuery setLastSavedByStaffIDBetween(ArrayList value) { this.LastSavedByStaffIDBetween = value; return this; } public ArrayList getLastSavedByStaffIDIn() { return LastSavedByStaffIDIn; } public SO_NotesQuery setLastSavedByStaffIDIn(ArrayList value) { this.LastSavedByStaffIDIn = value; return this; } public String getNoteText() { return NoteText; } public SO_NotesQuery setNoteText(String value) { this.NoteText = value; return this; } public String getNoteTextStartsWith() { return NoteTextStartsWith; } public SO_NotesQuery setNoteTextStartsWith(String value) { this.NoteTextStartsWith = value; return this; } public String getNoteTextEndsWith() { return NoteTextEndsWith; } public SO_NotesQuery setNoteTextEndsWith(String value) { this.NoteTextEndsWith = value; return this; } public String getNoteTextContains() { return NoteTextContains; } public SO_NotesQuery setNoteTextContains(String value) { this.NoteTextContains = value; return this; } public String getNoteTextLike() { return NoteTextLike; } public SO_NotesQuery setNoteTextLike(String value) { this.NoteTextLike = value; return this; } public ArrayList getNoteTextBetween() { return NoteTextBetween; } public SO_NotesQuery setNoteTextBetween(ArrayList value) { this.NoteTextBetween = value; return this; } public ArrayList getNoteTextIn() { return NoteTextIn; } public SO_NotesQuery setNoteTextIn(ArrayList value) { this.NoteTextIn = value; return this; } public Integer getItemNo() { return ItemNo; } public SO_NotesQuery setItemNo(Integer value) { this.ItemNo = value; return this; } public Integer getItemNoGreaterThanOrEqualTo() { return ItemNoGreaterThanOrEqualTo; } public SO_NotesQuery setItemNoGreaterThanOrEqualTo(Integer value) { this.ItemNoGreaterThanOrEqualTo = value; return this; } public Integer getItemNoGreaterThan() { return ItemNoGreaterThan; } public SO_NotesQuery setItemNoGreaterThan(Integer value) { this.ItemNoGreaterThan = value; return this; } public Integer getItemNoLessThan() { return ItemNoLessThan; } public SO_NotesQuery setItemNoLessThan(Integer value) { this.ItemNoLessThan = value; return this; } public Integer getItemNoLessThanOrEqualTo() { return ItemNoLessThanOrEqualTo; } public SO_NotesQuery setItemNoLessThanOrEqualTo(Integer value) { this.ItemNoLessThanOrEqualTo = value; return this; } public Integer getItemNoNotEqualTo() { return ItemNoNotEqualTo; } public SO_NotesQuery setItemNoNotEqualTo(Integer value) { this.ItemNoNotEqualTo = value; return this; } public ArrayList getItemNoBetween() { return ItemNoBetween; } public SO_NotesQuery setItemNoBetween(ArrayList value) { this.ItemNoBetween = value; return this; } public ArrayList getItemNoIn() { return ItemNoIn; } public SO_NotesQuery setItemNoIn(ArrayList value) { this.ItemNoIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class SO_PaymentDetailsQuery extends QueryDb implements IReturn> { public String PaymentID = null; public String PaymentIDStartsWith = null; public String PaymentIDEndsWith = null; public String PaymentIDContains = null; public String PaymentIDLike = null; public ArrayList PaymentIDBetween = null; public ArrayList PaymentIDIn = null; public String CardNumber = null; public String CardNumberStartsWith = null; public String CardNumberEndsWith = null; public String CardNumberContains = null; public String CardNumberLike = null; public ArrayList CardNumberBetween = null; public ArrayList CardNumberIn = null; public Date CardExpiry = null; public Date CardExpiryGreaterThanOrEqualTo = null; public Date CardExpiryGreaterThan = null; public Date CardExpiryLessThan = null; public Date CardExpiryLessThanOrEqualTo = null; public Date CardExpiryNotEqualTo = null; public ArrayList CardExpiryBetween = null; public ArrayList CardExpiryIn = null; public String CardHolder = null; public String CardHolderStartsWith = null; public String CardHolderEndsWith = null; public String CardHolderContains = null; public String CardHolderLike = null; public ArrayList CardHolderBetween = null; public ArrayList CardHolderIn = null; public String BankName = null; public String BankNameStartsWith = null; public String BankNameEndsWith = null; public String BankNameContains = null; public String BankNameLike = null; public ArrayList BankNameBetween = null; public ArrayList BankNameIn = null; public String BSBN = null; public String BSBNStartsWith = null; public String BSBNEndsWith = null; public String BSBNContains = null; public String BSBNLike = null; public ArrayList BSBNBetween = null; public ArrayList BSBNIn = null; public String BankAcc = null; public String BankAccStartsWith = null; public String BankAccEndsWith = null; public String BankAccContains = null; public String BankAccLike = null; public ArrayList BankAccBetween = null; public ArrayList BankAccIn = null; public String AccountName = null; public String AccountNameStartsWith = null; public String AccountNameEndsWith = null; public String AccountNameContains = null; public String AccountNameLike = null; public ArrayList AccountNameBetween = null; public ArrayList AccountNameIn = null; public String getPaymentID() { return PaymentID; } public SO_PaymentDetailsQuery setPaymentID(String value) { this.PaymentID = value; return this; } public String getPaymentIDStartsWith() { return PaymentIDStartsWith; } public SO_PaymentDetailsQuery setPaymentIDStartsWith(String value) { this.PaymentIDStartsWith = value; return this; } public String getPaymentIDEndsWith() { return PaymentIDEndsWith; } public SO_PaymentDetailsQuery setPaymentIDEndsWith(String value) { this.PaymentIDEndsWith = value; return this; } public String getPaymentIDContains() { return PaymentIDContains; } public SO_PaymentDetailsQuery setPaymentIDContains(String value) { this.PaymentIDContains = value; return this; } public String getPaymentIDLike() { return PaymentIDLike; } public SO_PaymentDetailsQuery setPaymentIDLike(String value) { this.PaymentIDLike = value; return this; } public ArrayList getPaymentIDBetween() { return PaymentIDBetween; } public SO_PaymentDetailsQuery setPaymentIDBetween(ArrayList value) { this.PaymentIDBetween = value; return this; } public ArrayList getPaymentIDIn() { return PaymentIDIn; } public SO_PaymentDetailsQuery setPaymentIDIn(ArrayList value) { this.PaymentIDIn = value; return this; } public String getCardNumber() { return CardNumber; } public SO_PaymentDetailsQuery setCardNumber(String value) { this.CardNumber = value; return this; } public String getCardNumberStartsWith() { return CardNumberStartsWith; } public SO_PaymentDetailsQuery setCardNumberStartsWith(String value) { this.CardNumberStartsWith = value; return this; } public String getCardNumberEndsWith() { return CardNumberEndsWith; } public SO_PaymentDetailsQuery setCardNumberEndsWith(String value) { this.CardNumberEndsWith = value; return this; } public String getCardNumberContains() { return CardNumberContains; } public SO_PaymentDetailsQuery setCardNumberContains(String value) { this.CardNumberContains = value; return this; } public String getCardNumberLike() { return CardNumberLike; } public SO_PaymentDetailsQuery setCardNumberLike(String value) { this.CardNumberLike = value; return this; } public ArrayList getCardNumberBetween() { return CardNumberBetween; } public SO_PaymentDetailsQuery setCardNumberBetween(ArrayList value) { this.CardNumberBetween = value; return this; } public ArrayList getCardNumberIn() { return CardNumberIn; } public SO_PaymentDetailsQuery setCardNumberIn(ArrayList value) { this.CardNumberIn = value; return this; } public Date getCardExpiry() { return CardExpiry; } public SO_PaymentDetailsQuery setCardExpiry(Date value) { this.CardExpiry = value; return this; } public Date getCardExpiryGreaterThanOrEqualTo() { return CardExpiryGreaterThanOrEqualTo; } public SO_PaymentDetailsQuery setCardExpiryGreaterThanOrEqualTo(Date value) { this.CardExpiryGreaterThanOrEqualTo = value; return this; } public Date getCardExpiryGreaterThan() { return CardExpiryGreaterThan; } public SO_PaymentDetailsQuery setCardExpiryGreaterThan(Date value) { this.CardExpiryGreaterThan = value; return this; } public Date getCardExpiryLessThan() { return CardExpiryLessThan; } public SO_PaymentDetailsQuery setCardExpiryLessThan(Date value) { this.CardExpiryLessThan = value; return this; } public Date getCardExpiryLessThanOrEqualTo() { return CardExpiryLessThanOrEqualTo; } public SO_PaymentDetailsQuery setCardExpiryLessThanOrEqualTo(Date value) { this.CardExpiryLessThanOrEqualTo = value; return this; } public Date getCardExpiryNotEqualTo() { return CardExpiryNotEqualTo; } public SO_PaymentDetailsQuery setCardExpiryNotEqualTo(Date value) { this.CardExpiryNotEqualTo = value; return this; } public ArrayList getCardExpiryBetween() { return CardExpiryBetween; } public SO_PaymentDetailsQuery setCardExpiryBetween(ArrayList value) { this.CardExpiryBetween = value; return this; } public ArrayList getCardExpiryIn() { return CardExpiryIn; } public SO_PaymentDetailsQuery setCardExpiryIn(ArrayList value) { this.CardExpiryIn = value; return this; } public String getCardHolder() { return CardHolder; } public SO_PaymentDetailsQuery setCardHolder(String value) { this.CardHolder = value; return this; } public String getCardHolderStartsWith() { return CardHolderStartsWith; } public SO_PaymentDetailsQuery setCardHolderStartsWith(String value) { this.CardHolderStartsWith = value; return this; } public String getCardHolderEndsWith() { return CardHolderEndsWith; } public SO_PaymentDetailsQuery setCardHolderEndsWith(String value) { this.CardHolderEndsWith = value; return this; } public String getCardHolderContains() { return CardHolderContains; } public SO_PaymentDetailsQuery setCardHolderContains(String value) { this.CardHolderContains = value; return this; } public String getCardHolderLike() { return CardHolderLike; } public SO_PaymentDetailsQuery setCardHolderLike(String value) { this.CardHolderLike = value; return this; } public ArrayList getCardHolderBetween() { return CardHolderBetween; } public SO_PaymentDetailsQuery setCardHolderBetween(ArrayList value) { this.CardHolderBetween = value; return this; } public ArrayList getCardHolderIn() { return CardHolderIn; } public SO_PaymentDetailsQuery setCardHolderIn(ArrayList value) { this.CardHolderIn = value; return this; } public String getBankName() { return BankName; } public SO_PaymentDetailsQuery setBankName(String value) { this.BankName = value; return this; } public String getBankNameStartsWith() { return BankNameStartsWith; } public SO_PaymentDetailsQuery setBankNameStartsWith(String value) { this.BankNameStartsWith = value; return this; } public String getBankNameEndsWith() { return BankNameEndsWith; } public SO_PaymentDetailsQuery setBankNameEndsWith(String value) { this.BankNameEndsWith = value; return this; } public String getBankNameContains() { return BankNameContains; } public SO_PaymentDetailsQuery setBankNameContains(String value) { this.BankNameContains = value; return this; } public String getBankNameLike() { return BankNameLike; } public SO_PaymentDetailsQuery setBankNameLike(String value) { this.BankNameLike = value; return this; } public ArrayList getBankNameBetween() { return BankNameBetween; } public SO_PaymentDetailsQuery setBankNameBetween(ArrayList value) { this.BankNameBetween = value; return this; } public ArrayList getBankNameIn() { return BankNameIn; } public SO_PaymentDetailsQuery setBankNameIn(ArrayList value) { this.BankNameIn = value; return this; } public String getBsbn() { return BSBN; } public SO_PaymentDetailsQuery setBsbn(String value) { this.BSBN = value; return this; } public String getBsbnStartsWith() { return BSBNStartsWith; } public SO_PaymentDetailsQuery setBsbnStartsWith(String value) { this.BSBNStartsWith = value; return this; } public String getBsbnEndsWith() { return BSBNEndsWith; } public SO_PaymentDetailsQuery setBsbnEndsWith(String value) { this.BSBNEndsWith = value; return this; } public String getBsbnContains() { return BSBNContains; } public SO_PaymentDetailsQuery setBsbnContains(String value) { this.BSBNContains = value; return this; } public String getBsbnLike() { return BSBNLike; } public SO_PaymentDetailsQuery setBsbnLike(String value) { this.BSBNLike = value; return this; } public ArrayList getBsbnBetween() { return BSBNBetween; } public SO_PaymentDetailsQuery setBsbnBetween(ArrayList value) { this.BSBNBetween = value; return this; } public ArrayList getBsbnIn() { return BSBNIn; } public SO_PaymentDetailsQuery setBsbnIn(ArrayList value) { this.BSBNIn = value; return this; } public String getBankAcc() { return BankAcc; } public SO_PaymentDetailsQuery setBankAcc(String value) { this.BankAcc = value; return this; } public String getBankAccStartsWith() { return BankAccStartsWith; } public SO_PaymentDetailsQuery setBankAccStartsWith(String value) { this.BankAccStartsWith = value; return this; } public String getBankAccEndsWith() { return BankAccEndsWith; } public SO_PaymentDetailsQuery setBankAccEndsWith(String value) { this.BankAccEndsWith = value; return this; } public String getBankAccContains() { return BankAccContains; } public SO_PaymentDetailsQuery setBankAccContains(String value) { this.BankAccContains = value; return this; } public String getBankAccLike() { return BankAccLike; } public SO_PaymentDetailsQuery setBankAccLike(String value) { this.BankAccLike = value; return this; } public ArrayList getBankAccBetween() { return BankAccBetween; } public SO_PaymentDetailsQuery setBankAccBetween(ArrayList value) { this.BankAccBetween = value; return this; } public ArrayList getBankAccIn() { return BankAccIn; } public SO_PaymentDetailsQuery setBankAccIn(ArrayList value) { this.BankAccIn = value; return this; } public String getAccountName() { return AccountName; } public SO_PaymentDetailsQuery setAccountName(String value) { this.AccountName = value; return this; } public String getAccountNameStartsWith() { return AccountNameStartsWith; } public SO_PaymentDetailsQuery setAccountNameStartsWith(String value) { this.AccountNameStartsWith = value; return this; } public String getAccountNameEndsWith() { return AccountNameEndsWith; } public SO_PaymentDetailsQuery setAccountNameEndsWith(String value) { this.AccountNameEndsWith = value; return this; } public String getAccountNameContains() { return AccountNameContains; } public SO_PaymentDetailsQuery setAccountNameContains(String value) { this.AccountNameContains = value; return this; } public String getAccountNameLike() { return AccountNameLike; } public SO_PaymentDetailsQuery setAccountNameLike(String value) { this.AccountNameLike = value; return this; } public ArrayList getAccountNameBetween() { return AccountNameBetween; } public SO_PaymentDetailsQuery setAccountNameBetween(ArrayList value) { this.AccountNameBetween = value; return this; } public ArrayList getAccountNameIn() { return AccountNameIn; } public SO_PaymentDetailsQuery setAccountNameIn(ArrayList value) { this.AccountNameIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class SO_PaymentsQuery extends QueryDb implements IReturn> { public String PaymentID = null; public String PaymentIDStartsWith = null; public String PaymentIDEndsWith = null; public String PaymentIDContains = null; public String PaymentIDLike = null; public ArrayList PaymentIDBetween = null; public ArrayList PaymentIDIn = null; public String InvoiceHistoryID = null; public String InvoiceHistoryIDStartsWith = null; public String InvoiceHistoryIDEndsWith = null; public String InvoiceHistoryIDContains = null; public String InvoiceHistoryIDLike = null; public ArrayList InvoiceHistoryIDBetween = null; public ArrayList InvoiceHistoryIDIn = null; public String InvoiceID = null; public String InvoiceIDStartsWith = null; public String InvoiceIDEndsWith = null; public String InvoiceIDContains = null; public String InvoiceIDLike = null; public ArrayList InvoiceIDBetween = null; public ArrayList InvoiceIDIn = null; public String PaymentTypeID = null; public String PaymentTypeIDStartsWith = null; public String PaymentTypeIDEndsWith = null; public String PaymentTypeIDContains = null; public String PaymentTypeIDLike = null; public ArrayList PaymentTypeIDBetween = null; public ArrayList PaymentTypeIDIn = null; public String PaymentRef = null; public String PaymentRefStartsWith = null; public String PaymentRefEndsWith = null; public String PaymentRefContains = null; public String PaymentRefLike = null; public ArrayList PaymentRefBetween = null; public ArrayList PaymentRefIn = null; public BigDecimal AmountPaid = null; public BigDecimal AmountPaidGreaterThanOrEqualTo = null; public BigDecimal AmountPaidGreaterThan = null; public BigDecimal AmountPaidLessThan = null; public BigDecimal AmountPaidLessThanOrEqualTo = null; public BigDecimal AmountPaidNotEqualTo = null; public ArrayList AmountPaidBetween = null; public ArrayList AmountPaidIn = null; public Date PaymentDate = null; public Date PaymentDateGreaterThanOrEqualTo = null; public Date PaymentDateGreaterThan = null; public Date PaymentDateLessThan = null; public Date PaymentDateLessThanOrEqualTo = null; public Date PaymentDateNotEqualTo = null; public ArrayList PaymentDateBetween = null; public ArrayList PaymentDateIn = null; public Short AuthorisationStatus = null; public Short AuthorisationStatusGreaterThanOrEqualTo = null; public Short AuthorisationStatusGreaterThan = null; public Short AuthorisationStatusLessThan = null; public Short AuthorisationStatusLessThanOrEqualTo = null; public Short AuthorisationStatusNotEqualTo = null; public ArrayList AuthorisationStatusBetween = null; public ArrayList AuthorisationStatusIn = null; public String AuthorisationNumber = null; public String AuthorisationNumberStartsWith = null; public String AuthorisationNumberEndsWith = null; public String AuthorisationNumberContains = null; public String AuthorisationNumberLike = null; public ArrayList AuthorisationNumberBetween = null; public ArrayList AuthorisationNumberIn = null; public Boolean ProcessPayment = null; public Boolean Processed = null; public String DBTransID = null; public String DBTransIDStartsWith = null; public String DBTransIDEndsWith = null; public String DBTransIDContains = null; public String DBTransIDLike = null; public ArrayList DBTransIDBetween = null; public ArrayList DBTransIDIn = null; public Integer PaymentGatewayReturnCode = null; public Integer PaymentGatewayReturnCodeGreaterThanOrEqualTo = null; public Integer PaymentGatewayReturnCodeGreaterThan = null; public Integer PaymentGatewayReturnCodeLessThan = null; public Integer PaymentGatewayReturnCodeLessThanOrEqualTo = null; public Integer PaymentGatewayReturnCodeNotEqualTo = null; public ArrayList PaymentGatewayReturnCodeBetween = null; public ArrayList PaymentGatewayReturnCodeIn = null; public String PaymentGatewayReturnMessage = null; public String PaymentGatewayReturnMessageStartsWith = null; public String PaymentGatewayReturnMessageEndsWith = null; public String PaymentGatewayReturnMessageContains = null; public String PaymentGatewayReturnMessageLike = null; public ArrayList PaymentGatewayReturnMessageBetween = null; public ArrayList PaymentGatewayReturnMessageIn = null; public BigDecimal AmountTendered = null; public BigDecimal AmountTenderedGreaterThanOrEqualTo = null; public BigDecimal AmountTenderedGreaterThan = null; public BigDecimal AmountTenderedLessThan = null; public BigDecimal AmountTenderedLessThanOrEqualTo = null; public BigDecimal AmountTenderedNotEqualTo = null; public ArrayList AmountTenderedBetween = null; public ArrayList AmountTenderedIn = null; public String getPaymentID() { return PaymentID; } public SO_PaymentsQuery setPaymentID(String value) { this.PaymentID = value; return this; } public String getPaymentIDStartsWith() { return PaymentIDStartsWith; } public SO_PaymentsQuery setPaymentIDStartsWith(String value) { this.PaymentIDStartsWith = value; return this; } public String getPaymentIDEndsWith() { return PaymentIDEndsWith; } public SO_PaymentsQuery setPaymentIDEndsWith(String value) { this.PaymentIDEndsWith = value; return this; } public String getPaymentIDContains() { return PaymentIDContains; } public SO_PaymentsQuery setPaymentIDContains(String value) { this.PaymentIDContains = value; return this; } public String getPaymentIDLike() { return PaymentIDLike; } public SO_PaymentsQuery setPaymentIDLike(String value) { this.PaymentIDLike = value; return this; } public ArrayList getPaymentIDBetween() { return PaymentIDBetween; } public SO_PaymentsQuery setPaymentIDBetween(ArrayList value) { this.PaymentIDBetween = value; return this; } public ArrayList getPaymentIDIn() { return PaymentIDIn; } public SO_PaymentsQuery setPaymentIDIn(ArrayList value) { this.PaymentIDIn = value; return this; } public String getInvoiceHistoryID() { return InvoiceHistoryID; } public SO_PaymentsQuery setInvoiceHistoryID(String value) { this.InvoiceHistoryID = value; return this; } public String getInvoiceHistoryIDStartsWith() { return InvoiceHistoryIDStartsWith; } public SO_PaymentsQuery setInvoiceHistoryIDStartsWith(String value) { this.InvoiceHistoryIDStartsWith = value; return this; } public String getInvoiceHistoryIDEndsWith() { return InvoiceHistoryIDEndsWith; } public SO_PaymentsQuery setInvoiceHistoryIDEndsWith(String value) { this.InvoiceHistoryIDEndsWith = value; return this; } public String getInvoiceHistoryIDContains() { return InvoiceHistoryIDContains; } public SO_PaymentsQuery setInvoiceHistoryIDContains(String value) { this.InvoiceHistoryIDContains = value; return this; } public String getInvoiceHistoryIDLike() { return InvoiceHistoryIDLike; } public SO_PaymentsQuery setInvoiceHistoryIDLike(String value) { this.InvoiceHistoryIDLike = value; return this; } public ArrayList getInvoiceHistoryIDBetween() { return InvoiceHistoryIDBetween; } public SO_PaymentsQuery setInvoiceHistoryIDBetween(ArrayList value) { this.InvoiceHistoryIDBetween = value; return this; } public ArrayList getInvoiceHistoryIDIn() { return InvoiceHistoryIDIn; } public SO_PaymentsQuery setInvoiceHistoryIDIn(ArrayList value) { this.InvoiceHistoryIDIn = value; return this; } public String getInvoiceID() { return InvoiceID; } public SO_PaymentsQuery setInvoiceID(String value) { this.InvoiceID = value; return this; } public String getInvoiceIDStartsWith() { return InvoiceIDStartsWith; } public SO_PaymentsQuery setInvoiceIDStartsWith(String value) { this.InvoiceIDStartsWith = value; return this; } public String getInvoiceIDEndsWith() { return InvoiceIDEndsWith; } public SO_PaymentsQuery setInvoiceIDEndsWith(String value) { this.InvoiceIDEndsWith = value; return this; } public String getInvoiceIDContains() { return InvoiceIDContains; } public SO_PaymentsQuery setInvoiceIDContains(String value) { this.InvoiceIDContains = value; return this; } public String getInvoiceIDLike() { return InvoiceIDLike; } public SO_PaymentsQuery setInvoiceIDLike(String value) { this.InvoiceIDLike = value; return this; } public ArrayList getInvoiceIDBetween() { return InvoiceIDBetween; } public SO_PaymentsQuery setInvoiceIDBetween(ArrayList value) { this.InvoiceIDBetween = value; return this; } public ArrayList getInvoiceIDIn() { return InvoiceIDIn; } public SO_PaymentsQuery setInvoiceIDIn(ArrayList value) { this.InvoiceIDIn = value; return this; } public String getPaymentTypeID() { return PaymentTypeID; } public SO_PaymentsQuery setPaymentTypeID(String value) { this.PaymentTypeID = value; return this; } public String getPaymentTypeIDStartsWith() { return PaymentTypeIDStartsWith; } public SO_PaymentsQuery setPaymentTypeIDStartsWith(String value) { this.PaymentTypeIDStartsWith = value; return this; } public String getPaymentTypeIDEndsWith() { return PaymentTypeIDEndsWith; } public SO_PaymentsQuery setPaymentTypeIDEndsWith(String value) { this.PaymentTypeIDEndsWith = value; return this; } public String getPaymentTypeIDContains() { return PaymentTypeIDContains; } public SO_PaymentsQuery setPaymentTypeIDContains(String value) { this.PaymentTypeIDContains = value; return this; } public String getPaymentTypeIDLike() { return PaymentTypeIDLike; } public SO_PaymentsQuery setPaymentTypeIDLike(String value) { this.PaymentTypeIDLike = value; return this; } public ArrayList getPaymentTypeIDBetween() { return PaymentTypeIDBetween; } public SO_PaymentsQuery setPaymentTypeIDBetween(ArrayList value) { this.PaymentTypeIDBetween = value; return this; } public ArrayList getPaymentTypeIDIn() { return PaymentTypeIDIn; } public SO_PaymentsQuery setPaymentTypeIDIn(ArrayList value) { this.PaymentTypeIDIn = value; return this; } public String getPaymentRef() { return PaymentRef; } public SO_PaymentsQuery setPaymentRef(String value) { this.PaymentRef = value; return this; } public String getPaymentRefStartsWith() { return PaymentRefStartsWith; } public SO_PaymentsQuery setPaymentRefStartsWith(String value) { this.PaymentRefStartsWith = value; return this; } public String getPaymentRefEndsWith() { return PaymentRefEndsWith; } public SO_PaymentsQuery setPaymentRefEndsWith(String value) { this.PaymentRefEndsWith = value; return this; } public String getPaymentRefContains() { return PaymentRefContains; } public SO_PaymentsQuery setPaymentRefContains(String value) { this.PaymentRefContains = value; return this; } public String getPaymentRefLike() { return PaymentRefLike; } public SO_PaymentsQuery setPaymentRefLike(String value) { this.PaymentRefLike = value; return this; } public ArrayList getPaymentRefBetween() { return PaymentRefBetween; } public SO_PaymentsQuery setPaymentRefBetween(ArrayList value) { this.PaymentRefBetween = value; return this; } public ArrayList getPaymentRefIn() { return PaymentRefIn; } public SO_PaymentsQuery setPaymentRefIn(ArrayList value) { this.PaymentRefIn = value; return this; } public BigDecimal getAmountPaid() { return AmountPaid; } public SO_PaymentsQuery setAmountPaid(BigDecimal value) { this.AmountPaid = value; return this; } public BigDecimal getAmountPaidGreaterThanOrEqualTo() { return AmountPaidGreaterThanOrEqualTo; } public SO_PaymentsQuery setAmountPaidGreaterThanOrEqualTo(BigDecimal value) { this.AmountPaidGreaterThanOrEqualTo = value; return this; } public BigDecimal getAmountPaidGreaterThan() { return AmountPaidGreaterThan; } public SO_PaymentsQuery setAmountPaidGreaterThan(BigDecimal value) { this.AmountPaidGreaterThan = value; return this; } public BigDecimal getAmountPaidLessThan() { return AmountPaidLessThan; } public SO_PaymentsQuery setAmountPaidLessThan(BigDecimal value) { this.AmountPaidLessThan = value; return this; } public BigDecimal getAmountPaidLessThanOrEqualTo() { return AmountPaidLessThanOrEqualTo; } public SO_PaymentsQuery setAmountPaidLessThanOrEqualTo(BigDecimal value) { this.AmountPaidLessThanOrEqualTo = value; return this; } public BigDecimal getAmountPaidNotEqualTo() { return AmountPaidNotEqualTo; } public SO_PaymentsQuery setAmountPaidNotEqualTo(BigDecimal value) { this.AmountPaidNotEqualTo = value; return this; } public ArrayList getAmountPaidBetween() { return AmountPaidBetween; } public SO_PaymentsQuery setAmountPaidBetween(ArrayList value) { this.AmountPaidBetween = value; return this; } public ArrayList getAmountPaidIn() { return AmountPaidIn; } public SO_PaymentsQuery setAmountPaidIn(ArrayList value) { this.AmountPaidIn = value; return this; } public Date getPaymentDate() { return PaymentDate; } public SO_PaymentsQuery setPaymentDate(Date value) { this.PaymentDate = value; return this; } public Date getPaymentDateGreaterThanOrEqualTo() { return PaymentDateGreaterThanOrEqualTo; } public SO_PaymentsQuery setPaymentDateGreaterThanOrEqualTo(Date value) { this.PaymentDateGreaterThanOrEqualTo = value; return this; } public Date getPaymentDateGreaterThan() { return PaymentDateGreaterThan; } public SO_PaymentsQuery setPaymentDateGreaterThan(Date value) { this.PaymentDateGreaterThan = value; return this; } public Date getPaymentDateLessThan() { return PaymentDateLessThan; } public SO_PaymentsQuery setPaymentDateLessThan(Date value) { this.PaymentDateLessThan = value; return this; } public Date getPaymentDateLessThanOrEqualTo() { return PaymentDateLessThanOrEqualTo; } public SO_PaymentsQuery setPaymentDateLessThanOrEqualTo(Date value) { this.PaymentDateLessThanOrEqualTo = value; return this; } public Date getPaymentDateNotEqualTo() { return PaymentDateNotEqualTo; } public SO_PaymentsQuery setPaymentDateNotEqualTo(Date value) { this.PaymentDateNotEqualTo = value; return this; } public ArrayList getPaymentDateBetween() { return PaymentDateBetween; } public SO_PaymentsQuery setPaymentDateBetween(ArrayList value) { this.PaymentDateBetween = value; return this; } public ArrayList getPaymentDateIn() { return PaymentDateIn; } public SO_PaymentsQuery setPaymentDateIn(ArrayList value) { this.PaymentDateIn = value; return this; } public Short getAuthorisationStatus() { return AuthorisationStatus; } public SO_PaymentsQuery setAuthorisationStatus(Short value) { this.AuthorisationStatus = value; return this; } public Short getAuthorisationStatusGreaterThanOrEqualTo() { return AuthorisationStatusGreaterThanOrEqualTo; } public SO_PaymentsQuery setAuthorisationStatusGreaterThanOrEqualTo(Short value) { this.AuthorisationStatusGreaterThanOrEqualTo = value; return this; } public Short getAuthorisationStatusGreaterThan() { return AuthorisationStatusGreaterThan; } public SO_PaymentsQuery setAuthorisationStatusGreaterThan(Short value) { this.AuthorisationStatusGreaterThan = value; return this; } public Short getAuthorisationStatusLessThan() { return AuthorisationStatusLessThan; } public SO_PaymentsQuery setAuthorisationStatusLessThan(Short value) { this.AuthorisationStatusLessThan = value; return this; } public Short getAuthorisationStatusLessThanOrEqualTo() { return AuthorisationStatusLessThanOrEqualTo; } public SO_PaymentsQuery setAuthorisationStatusLessThanOrEqualTo(Short value) { this.AuthorisationStatusLessThanOrEqualTo = value; return this; } public Short getAuthorisationStatusNotEqualTo() { return AuthorisationStatusNotEqualTo; } public SO_PaymentsQuery setAuthorisationStatusNotEqualTo(Short value) { this.AuthorisationStatusNotEqualTo = value; return this; } public ArrayList getAuthorisationStatusBetween() { return AuthorisationStatusBetween; } public SO_PaymentsQuery setAuthorisationStatusBetween(ArrayList value) { this.AuthorisationStatusBetween = value; return this; } public ArrayList getAuthorisationStatusIn() { return AuthorisationStatusIn; } public SO_PaymentsQuery setAuthorisationStatusIn(ArrayList value) { this.AuthorisationStatusIn = value; return this; } public String getAuthorisationNumber() { return AuthorisationNumber; } public SO_PaymentsQuery setAuthorisationNumber(String value) { this.AuthorisationNumber = value; return this; } public String getAuthorisationNumberStartsWith() { return AuthorisationNumberStartsWith; } public SO_PaymentsQuery setAuthorisationNumberStartsWith(String value) { this.AuthorisationNumberStartsWith = value; return this; } public String getAuthorisationNumberEndsWith() { return AuthorisationNumberEndsWith; } public SO_PaymentsQuery setAuthorisationNumberEndsWith(String value) { this.AuthorisationNumberEndsWith = value; return this; } public String getAuthorisationNumberContains() { return AuthorisationNumberContains; } public SO_PaymentsQuery setAuthorisationNumberContains(String value) { this.AuthorisationNumberContains = value; return this; } public String getAuthorisationNumberLike() { return AuthorisationNumberLike; } public SO_PaymentsQuery setAuthorisationNumberLike(String value) { this.AuthorisationNumberLike = value; return this; } public ArrayList getAuthorisationNumberBetween() { return AuthorisationNumberBetween; } public SO_PaymentsQuery setAuthorisationNumberBetween(ArrayList value) { this.AuthorisationNumberBetween = value; return this; } public ArrayList getAuthorisationNumberIn() { return AuthorisationNumberIn; } public SO_PaymentsQuery setAuthorisationNumberIn(ArrayList value) { this.AuthorisationNumberIn = value; return this; } public Boolean isProcessPayment() { return ProcessPayment; } public SO_PaymentsQuery setProcessPayment(Boolean value) { this.ProcessPayment = value; return this; } public Boolean isProcessed() { return Processed; } public SO_PaymentsQuery setProcessed(Boolean value) { this.Processed = value; return this; } public String getDbTransID() { return DBTransID; } public SO_PaymentsQuery setDbTransID(String value) { this.DBTransID = value; return this; } public String getDbTransIDStartsWith() { return DBTransIDStartsWith; } public SO_PaymentsQuery setDbTransIDStartsWith(String value) { this.DBTransIDStartsWith = value; return this; } public String getDbTransIDEndsWith() { return DBTransIDEndsWith; } public SO_PaymentsQuery setDbTransIDEndsWith(String value) { this.DBTransIDEndsWith = value; return this; } public String getDbTransIDContains() { return DBTransIDContains; } public SO_PaymentsQuery setDbTransIDContains(String value) { this.DBTransIDContains = value; return this; } public String getDbTransIDLike() { return DBTransIDLike; } public SO_PaymentsQuery setDbTransIDLike(String value) { this.DBTransIDLike = value; return this; } public ArrayList getDbTransIDBetween() { return DBTransIDBetween; } public SO_PaymentsQuery setDbTransIDBetween(ArrayList value) { this.DBTransIDBetween = value; return this; } public ArrayList getDbTransIDIn() { return DBTransIDIn; } public SO_PaymentsQuery setDbTransIDIn(ArrayList value) { this.DBTransIDIn = value; return this; } public Integer getPaymentGatewayReturnCode() { return PaymentGatewayReturnCode; } public SO_PaymentsQuery setPaymentGatewayReturnCode(Integer value) { this.PaymentGatewayReturnCode = value; return this; } public Integer getPaymentGatewayReturnCodeGreaterThanOrEqualTo() { return PaymentGatewayReturnCodeGreaterThanOrEqualTo; } public SO_PaymentsQuery setPaymentGatewayReturnCodeGreaterThanOrEqualTo(Integer value) { this.PaymentGatewayReturnCodeGreaterThanOrEqualTo = value; return this; } public Integer getPaymentGatewayReturnCodeGreaterThan() { return PaymentGatewayReturnCodeGreaterThan; } public SO_PaymentsQuery setPaymentGatewayReturnCodeGreaterThan(Integer value) { this.PaymentGatewayReturnCodeGreaterThan = value; return this; } public Integer getPaymentGatewayReturnCodeLessThan() { return PaymentGatewayReturnCodeLessThan; } public SO_PaymentsQuery setPaymentGatewayReturnCodeLessThan(Integer value) { this.PaymentGatewayReturnCodeLessThan = value; return this; } public Integer getPaymentGatewayReturnCodeLessThanOrEqualTo() { return PaymentGatewayReturnCodeLessThanOrEqualTo; } public SO_PaymentsQuery setPaymentGatewayReturnCodeLessThanOrEqualTo(Integer value) { this.PaymentGatewayReturnCodeLessThanOrEqualTo = value; return this; } public Integer getPaymentGatewayReturnCodeNotEqualTo() { return PaymentGatewayReturnCodeNotEqualTo; } public SO_PaymentsQuery setPaymentGatewayReturnCodeNotEqualTo(Integer value) { this.PaymentGatewayReturnCodeNotEqualTo = value; return this; } public ArrayList getPaymentGatewayReturnCodeBetween() { return PaymentGatewayReturnCodeBetween; } public SO_PaymentsQuery setPaymentGatewayReturnCodeBetween(ArrayList value) { this.PaymentGatewayReturnCodeBetween = value; return this; } public ArrayList getPaymentGatewayReturnCodeIn() { return PaymentGatewayReturnCodeIn; } public SO_PaymentsQuery setPaymentGatewayReturnCodeIn(ArrayList value) { this.PaymentGatewayReturnCodeIn = value; return this; } public String getPaymentGatewayReturnMessage() { return PaymentGatewayReturnMessage; } public SO_PaymentsQuery setPaymentGatewayReturnMessage(String value) { this.PaymentGatewayReturnMessage = value; return this; } public String getPaymentGatewayReturnMessageStartsWith() { return PaymentGatewayReturnMessageStartsWith; } public SO_PaymentsQuery setPaymentGatewayReturnMessageStartsWith(String value) { this.PaymentGatewayReturnMessageStartsWith = value; return this; } public String getPaymentGatewayReturnMessageEndsWith() { return PaymentGatewayReturnMessageEndsWith; } public SO_PaymentsQuery setPaymentGatewayReturnMessageEndsWith(String value) { this.PaymentGatewayReturnMessageEndsWith = value; return this; } public String getPaymentGatewayReturnMessageContains() { return PaymentGatewayReturnMessageContains; } public SO_PaymentsQuery setPaymentGatewayReturnMessageContains(String value) { this.PaymentGatewayReturnMessageContains = value; return this; } public String getPaymentGatewayReturnMessageLike() { return PaymentGatewayReturnMessageLike; } public SO_PaymentsQuery setPaymentGatewayReturnMessageLike(String value) { this.PaymentGatewayReturnMessageLike = value; return this; } public ArrayList getPaymentGatewayReturnMessageBetween() { return PaymentGatewayReturnMessageBetween; } public SO_PaymentsQuery setPaymentGatewayReturnMessageBetween(ArrayList value) { this.PaymentGatewayReturnMessageBetween = value; return this; } public ArrayList getPaymentGatewayReturnMessageIn() { return PaymentGatewayReturnMessageIn; } public SO_PaymentsQuery setPaymentGatewayReturnMessageIn(ArrayList value) { this.PaymentGatewayReturnMessageIn = value; return this; } public BigDecimal getAmountTendered() { return AmountTendered; } public SO_PaymentsQuery setAmountTendered(BigDecimal value) { this.AmountTendered = value; return this; } public BigDecimal getAmountTenderedGreaterThanOrEqualTo() { return AmountTenderedGreaterThanOrEqualTo; } public SO_PaymentsQuery setAmountTenderedGreaterThanOrEqualTo(BigDecimal value) { this.AmountTenderedGreaterThanOrEqualTo = value; return this; } public BigDecimal getAmountTenderedGreaterThan() { return AmountTenderedGreaterThan; } public SO_PaymentsQuery setAmountTenderedGreaterThan(BigDecimal value) { this.AmountTenderedGreaterThan = value; return this; } public BigDecimal getAmountTenderedLessThan() { return AmountTenderedLessThan; } public SO_PaymentsQuery setAmountTenderedLessThan(BigDecimal value) { this.AmountTenderedLessThan = value; return this; } public BigDecimal getAmountTenderedLessThanOrEqualTo() { return AmountTenderedLessThanOrEqualTo; } public SO_PaymentsQuery setAmountTenderedLessThanOrEqualTo(BigDecimal value) { this.AmountTenderedLessThanOrEqualTo = value; return this; } public BigDecimal getAmountTenderedNotEqualTo() { return AmountTenderedNotEqualTo; } public SO_PaymentsQuery setAmountTenderedNotEqualTo(BigDecimal value) { this.AmountTenderedNotEqualTo = value; return this; } public ArrayList getAmountTenderedBetween() { return AmountTenderedBetween; } public SO_PaymentsQuery setAmountTenderedBetween(ArrayList value) { this.AmountTenderedBetween = value; return this; } public ArrayList getAmountTenderedIn() { return AmountTenderedIn; } public SO_PaymentsQuery setAmountTenderedIn(ArrayList value) { this.AmountTenderedIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class SO_PaymentTypesQuery extends QueryDb implements IReturn> { public String RecID = null; public String RecIDStartsWith = null; public String RecIDEndsWith = null; public String RecIDContains = null; public String RecIDLike = null; public ArrayList RecIDBetween = null; public ArrayList RecIDIn = null; public String Name = null; public String NameStartsWith = null; public String NameEndsWith = null; public String NameContains = null; public String NameLike = null; public ArrayList NameBetween = null; public ArrayList NameIn = null; public Boolean IsEnabled = null; public Boolean IsDefault = null; public Boolean IsCreditCard = null; public String GL_Main_RecID = null; public String GL_Main_RecIDStartsWith = null; public String GL_Main_RecIDEndsWith = null; public String GL_Main_RecIDContains = null; public String GL_Main_RecIDLike = null; public ArrayList GL_Main_RecIDBetween = null; public ArrayList GL_Main_RecIDIn = null; public Integer ItemNo = null; public Integer ItemNoGreaterThanOrEqualTo = null; public Integer ItemNoGreaterThan = null; public Integer ItemNoLessThan = null; public Integer ItemNoLessThanOrEqualTo = null; public Integer ItemNoNotEqualTo = null; public ArrayList ItemNoBetween = null; public ArrayList ItemNoIn = null; public ArrayList RowHash = null; public Boolean IsPOS = null; public String Code = null; public String CodeStartsWith = null; public String CodeEndsWith = null; public String CodeContains = null; public String CodeLike = null; public ArrayList CodeBetween = null; public ArrayList CodeIn = null; public String getRecID() { return RecID; } public SO_PaymentTypesQuery setRecID(String value) { this.RecID = value; return this; } public String getRecIDStartsWith() { return RecIDStartsWith; } public SO_PaymentTypesQuery setRecIDStartsWith(String value) { this.RecIDStartsWith = value; return this; } public String getRecIDEndsWith() { return RecIDEndsWith; } public SO_PaymentTypesQuery setRecIDEndsWith(String value) { this.RecIDEndsWith = value; return this; } public String getRecIDContains() { return RecIDContains; } public SO_PaymentTypesQuery setRecIDContains(String value) { this.RecIDContains = value; return this; } public String getRecIDLike() { return RecIDLike; } public SO_PaymentTypesQuery setRecIDLike(String value) { this.RecIDLike = value; return this; } public ArrayList getRecIDBetween() { return RecIDBetween; } public SO_PaymentTypesQuery setRecIDBetween(ArrayList value) { this.RecIDBetween = value; return this; } public ArrayList getRecIDIn() { return RecIDIn; } public SO_PaymentTypesQuery setRecIDIn(ArrayList value) { this.RecIDIn = value; return this; } public String getName() { return Name; } public SO_PaymentTypesQuery setName(String value) { this.Name = value; return this; } public String getNameStartsWith() { return NameStartsWith; } public SO_PaymentTypesQuery setNameStartsWith(String value) { this.NameStartsWith = value; return this; } public String getNameEndsWith() { return NameEndsWith; } public SO_PaymentTypesQuery setNameEndsWith(String value) { this.NameEndsWith = value; return this; } public String getNameContains() { return NameContains; } public SO_PaymentTypesQuery setNameContains(String value) { this.NameContains = value; return this; } public String getNameLike() { return NameLike; } public SO_PaymentTypesQuery setNameLike(String value) { this.NameLike = value; return this; } public ArrayList getNameBetween() { return NameBetween; } public SO_PaymentTypesQuery setNameBetween(ArrayList value) { this.NameBetween = value; return this; } public ArrayList getNameIn() { return NameIn; } public SO_PaymentTypesQuery setNameIn(ArrayList value) { this.NameIn = value; return this; } public Boolean getIsEnabled() { return IsEnabled; } public SO_PaymentTypesQuery setIsEnabled(Boolean value) { this.IsEnabled = value; return this; } public Boolean getIsDefault() { return IsDefault; } public SO_PaymentTypesQuery setIsDefault(Boolean value) { this.IsDefault = value; return this; } public Boolean getIsCreditCard() { return IsCreditCard; } public SO_PaymentTypesQuery setIsCreditCard(Boolean value) { this.IsCreditCard = value; return this; } public String getGlMainRecID() { return GL_Main_RecID; } public SO_PaymentTypesQuery setGlMainRecID(String value) { this.GL_Main_RecID = value; return this; } public String getGlMainRecIDStartsWith() { return GL_Main_RecIDStartsWith; } public SO_PaymentTypesQuery setGlMainRecIDStartsWith(String value) { this.GL_Main_RecIDStartsWith = value; return this; } public String getGlMainRecIDEndsWith() { return GL_Main_RecIDEndsWith; } public SO_PaymentTypesQuery setGlMainRecIDEndsWith(String value) { this.GL_Main_RecIDEndsWith = value; return this; } public String getGlMainRecIDContains() { return GL_Main_RecIDContains; } public SO_PaymentTypesQuery setGlMainRecIDContains(String value) { this.GL_Main_RecIDContains = value; return this; } public String getGlMainRecIDLike() { return GL_Main_RecIDLike; } public SO_PaymentTypesQuery setGlMainRecIDLike(String value) { this.GL_Main_RecIDLike = value; return this; } public ArrayList getGlMainRecIDBetween() { return GL_Main_RecIDBetween; } public SO_PaymentTypesQuery setGlMainRecIDBetween(ArrayList value) { this.GL_Main_RecIDBetween = value; return this; } public ArrayList getGlMainRecIDIn() { return GL_Main_RecIDIn; } public SO_PaymentTypesQuery setGlMainRecIDIn(ArrayList value) { this.GL_Main_RecIDIn = value; return this; } public Integer getItemNo() { return ItemNo; } public SO_PaymentTypesQuery setItemNo(Integer value) { this.ItemNo = value; return this; } public Integer getItemNoGreaterThanOrEqualTo() { return ItemNoGreaterThanOrEqualTo; } public SO_PaymentTypesQuery setItemNoGreaterThanOrEqualTo(Integer value) { this.ItemNoGreaterThanOrEqualTo = value; return this; } public Integer getItemNoGreaterThan() { return ItemNoGreaterThan; } public SO_PaymentTypesQuery setItemNoGreaterThan(Integer value) { this.ItemNoGreaterThan = value; return this; } public Integer getItemNoLessThan() { return ItemNoLessThan; } public SO_PaymentTypesQuery setItemNoLessThan(Integer value) { this.ItemNoLessThan = value; return this; } public Integer getItemNoLessThanOrEqualTo() { return ItemNoLessThanOrEqualTo; } public SO_PaymentTypesQuery setItemNoLessThanOrEqualTo(Integer value) { this.ItemNoLessThanOrEqualTo = value; return this; } public Integer getItemNoNotEqualTo() { return ItemNoNotEqualTo; } public SO_PaymentTypesQuery setItemNoNotEqualTo(Integer value) { this.ItemNoNotEqualTo = value; return this; } public ArrayList getItemNoBetween() { return ItemNoBetween; } public SO_PaymentTypesQuery setItemNoBetween(ArrayList value) { this.ItemNoBetween = value; return this; } public ArrayList getItemNoIn() { return ItemNoIn; } public SO_PaymentTypesQuery setItemNoIn(ArrayList value) { this.ItemNoIn = value; return this; } public ArrayList getRowHash() { return RowHash; } public SO_PaymentTypesQuery setRowHash(ArrayList value) { this.RowHash = value; return this; } public Boolean getIsPOS() { return IsPOS; } public SO_PaymentTypesQuery setIsPOS(Boolean value) { this.IsPOS = value; return this; } public String getCode() { return Code; } public SO_PaymentTypesQuery setCode(String value) { this.Code = value; return this; } public String getCodeStartsWith() { return CodeStartsWith; } public SO_PaymentTypesQuery setCodeStartsWith(String value) { this.CodeStartsWith = value; return this; } public String getCodeEndsWith() { return CodeEndsWith; } public SO_PaymentTypesQuery setCodeEndsWith(String value) { this.CodeEndsWith = value; return this; } public String getCodeContains() { return CodeContains; } public SO_PaymentTypesQuery setCodeContains(String value) { this.CodeContains = value; return this; } public String getCodeLike() { return CodeLike; } public SO_PaymentTypesQuery setCodeLike(String value) { this.CodeLike = value; return this; } public ArrayList getCodeBetween() { return CodeBetween; } public SO_PaymentTypesQuery setCodeBetween(ArrayList value) { this.CodeBetween = value; return this; } public ArrayList getCodeIn() { return CodeIn; } public SO_PaymentTypesQuery setCodeIn(ArrayList value) { this.CodeIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class SO_PrintLogQuery extends QueryDb implements IReturn> { public String PrintLogID = null; public String PrintLogIDStartsWith = null; public String PrintLogIDEndsWith = null; public String PrintLogIDContains = null; public String PrintLogIDLike = null; public ArrayList PrintLogIDBetween = null; public ArrayList PrintLogIDIn = null; public String InvoiceID = null; public String InvoiceIDStartsWith = null; public String InvoiceIDEndsWith = null; public String InvoiceIDContains = null; public String InvoiceIDLike = null; public ArrayList InvoiceIDBetween = null; public ArrayList InvoiceIDIn = null; public Date SysDateTime = null; public Date SysDateTimeGreaterThanOrEqualTo = null; public Date SysDateTimeGreaterThan = null; public Date SysDateTimeLessThan = null; public Date SysDateTimeLessThanOrEqualTo = null; public Date SysDateTimeNotEqualTo = null; public ArrayList SysDateTimeBetween = null; public ArrayList SysDateTimeIn = null; public String Description = null; public String DescriptionStartsWith = null; public String DescriptionEndsWith = null; public String DescriptionContains = null; public String DescriptionLike = null; public ArrayList DescriptionBetween = null; public ArrayList DescriptionIn = null; public String InvoiceHistoryID = null; public String InvoiceHistoryIDStartsWith = null; public String InvoiceHistoryIDEndsWith = null; public String InvoiceHistoryIDContains = null; public String InvoiceHistoryIDLike = null; public ArrayList InvoiceHistoryIDBetween = null; public ArrayList InvoiceHistoryIDIn = null; public Short ReportType = null; public Short ReportTypeGreaterThanOrEqualTo = null; public Short ReportTypeGreaterThan = null; public Short ReportTypeLessThan = null; public Short ReportTypeLessThanOrEqualTo = null; public Short ReportTypeNotEqualTo = null; public ArrayList ReportTypeBetween = null; public ArrayList ReportTypeIn = null; public String StaffID = null; public String StaffIDStartsWith = null; public String StaffIDEndsWith = null; public String StaffIDContains = null; public String StaffIDLike = null; public ArrayList StaffIDBetween = null; public ArrayList StaffIDIn = null; public String getPrintLogID() { return PrintLogID; } public SO_PrintLogQuery setPrintLogID(String value) { this.PrintLogID = value; return this; } public String getPrintLogIDStartsWith() { return PrintLogIDStartsWith; } public SO_PrintLogQuery setPrintLogIDStartsWith(String value) { this.PrintLogIDStartsWith = value; return this; } public String getPrintLogIDEndsWith() { return PrintLogIDEndsWith; } public SO_PrintLogQuery setPrintLogIDEndsWith(String value) { this.PrintLogIDEndsWith = value; return this; } public String getPrintLogIDContains() { return PrintLogIDContains; } public SO_PrintLogQuery setPrintLogIDContains(String value) { this.PrintLogIDContains = value; return this; } public String getPrintLogIDLike() { return PrintLogIDLike; } public SO_PrintLogQuery setPrintLogIDLike(String value) { this.PrintLogIDLike = value; return this; } public ArrayList getPrintLogIDBetween() { return PrintLogIDBetween; } public SO_PrintLogQuery setPrintLogIDBetween(ArrayList value) { this.PrintLogIDBetween = value; return this; } public ArrayList getPrintLogIDIn() { return PrintLogIDIn; } public SO_PrintLogQuery setPrintLogIDIn(ArrayList value) { this.PrintLogIDIn = value; return this; } public String getInvoiceID() { return InvoiceID; } public SO_PrintLogQuery setInvoiceID(String value) { this.InvoiceID = value; return this; } public String getInvoiceIDStartsWith() { return InvoiceIDStartsWith; } public SO_PrintLogQuery setInvoiceIDStartsWith(String value) { this.InvoiceIDStartsWith = value; return this; } public String getInvoiceIDEndsWith() { return InvoiceIDEndsWith; } public SO_PrintLogQuery setInvoiceIDEndsWith(String value) { this.InvoiceIDEndsWith = value; return this; } public String getInvoiceIDContains() { return InvoiceIDContains; } public SO_PrintLogQuery setInvoiceIDContains(String value) { this.InvoiceIDContains = value; return this; } public String getInvoiceIDLike() { return InvoiceIDLike; } public SO_PrintLogQuery setInvoiceIDLike(String value) { this.InvoiceIDLike = value; return this; } public ArrayList getInvoiceIDBetween() { return InvoiceIDBetween; } public SO_PrintLogQuery setInvoiceIDBetween(ArrayList value) { this.InvoiceIDBetween = value; return this; } public ArrayList getInvoiceIDIn() { return InvoiceIDIn; } public SO_PrintLogQuery setInvoiceIDIn(ArrayList value) { this.InvoiceIDIn = value; return this; } public Date getSysDateTime() { return SysDateTime; } public SO_PrintLogQuery setSysDateTime(Date value) { this.SysDateTime = value; return this; } public Date getSysDateTimeGreaterThanOrEqualTo() { return SysDateTimeGreaterThanOrEqualTo; } public SO_PrintLogQuery setSysDateTimeGreaterThanOrEqualTo(Date value) { this.SysDateTimeGreaterThanOrEqualTo = value; return this; } public Date getSysDateTimeGreaterThan() { return SysDateTimeGreaterThan; } public SO_PrintLogQuery setSysDateTimeGreaterThan(Date value) { this.SysDateTimeGreaterThan = value; return this; } public Date getSysDateTimeLessThan() { return SysDateTimeLessThan; } public SO_PrintLogQuery setSysDateTimeLessThan(Date value) { this.SysDateTimeLessThan = value; return this; } public Date getSysDateTimeLessThanOrEqualTo() { return SysDateTimeLessThanOrEqualTo; } public SO_PrintLogQuery setSysDateTimeLessThanOrEqualTo(Date value) { this.SysDateTimeLessThanOrEqualTo = value; return this; } public Date getSysDateTimeNotEqualTo() { return SysDateTimeNotEqualTo; } public SO_PrintLogQuery setSysDateTimeNotEqualTo(Date value) { this.SysDateTimeNotEqualTo = value; return this; } public ArrayList getSysDateTimeBetween() { return SysDateTimeBetween; } public SO_PrintLogQuery setSysDateTimeBetween(ArrayList value) { this.SysDateTimeBetween = value; return this; } public ArrayList getSysDateTimeIn() { return SysDateTimeIn; } public SO_PrintLogQuery setSysDateTimeIn(ArrayList value) { this.SysDateTimeIn = value; return this; } public String getDescription() { return Description; } public SO_PrintLogQuery setDescription(String value) { this.Description = value; return this; } public String getDescriptionStartsWith() { return DescriptionStartsWith; } public SO_PrintLogQuery setDescriptionStartsWith(String value) { this.DescriptionStartsWith = value; return this; } public String getDescriptionEndsWith() { return DescriptionEndsWith; } public SO_PrintLogQuery setDescriptionEndsWith(String value) { this.DescriptionEndsWith = value; return this; } public String getDescriptionContains() { return DescriptionContains; } public SO_PrintLogQuery setDescriptionContains(String value) { this.DescriptionContains = value; return this; } public String getDescriptionLike() { return DescriptionLike; } public SO_PrintLogQuery setDescriptionLike(String value) { this.DescriptionLike = value; return this; } public ArrayList getDescriptionBetween() { return DescriptionBetween; } public SO_PrintLogQuery setDescriptionBetween(ArrayList value) { this.DescriptionBetween = value; return this; } public ArrayList getDescriptionIn() { return DescriptionIn; } public SO_PrintLogQuery setDescriptionIn(ArrayList value) { this.DescriptionIn = value; return this; } public String getInvoiceHistoryID() { return InvoiceHistoryID; } public SO_PrintLogQuery setInvoiceHistoryID(String value) { this.InvoiceHistoryID = value; return this; } public String getInvoiceHistoryIDStartsWith() { return InvoiceHistoryIDStartsWith; } public SO_PrintLogQuery setInvoiceHistoryIDStartsWith(String value) { this.InvoiceHistoryIDStartsWith = value; return this; } public String getInvoiceHistoryIDEndsWith() { return InvoiceHistoryIDEndsWith; } public SO_PrintLogQuery setInvoiceHistoryIDEndsWith(String value) { this.InvoiceHistoryIDEndsWith = value; return this; } public String getInvoiceHistoryIDContains() { return InvoiceHistoryIDContains; } public SO_PrintLogQuery setInvoiceHistoryIDContains(String value) { this.InvoiceHistoryIDContains = value; return this; } public String getInvoiceHistoryIDLike() { return InvoiceHistoryIDLike; } public SO_PrintLogQuery setInvoiceHistoryIDLike(String value) { this.InvoiceHistoryIDLike = value; return this; } public ArrayList getInvoiceHistoryIDBetween() { return InvoiceHistoryIDBetween; } public SO_PrintLogQuery setInvoiceHistoryIDBetween(ArrayList value) { this.InvoiceHistoryIDBetween = value; return this; } public ArrayList getInvoiceHistoryIDIn() { return InvoiceHistoryIDIn; } public SO_PrintLogQuery setInvoiceHistoryIDIn(ArrayList value) { this.InvoiceHistoryIDIn = value; return this; } public Short getReportType() { return ReportType; } public SO_PrintLogQuery setReportType(Short value) { this.ReportType = value; return this; } public Short getReportTypeGreaterThanOrEqualTo() { return ReportTypeGreaterThanOrEqualTo; } public SO_PrintLogQuery setReportTypeGreaterThanOrEqualTo(Short value) { this.ReportTypeGreaterThanOrEqualTo = value; return this; } public Short getReportTypeGreaterThan() { return ReportTypeGreaterThan; } public SO_PrintLogQuery setReportTypeGreaterThan(Short value) { this.ReportTypeGreaterThan = value; return this; } public Short getReportTypeLessThan() { return ReportTypeLessThan; } public SO_PrintLogQuery setReportTypeLessThan(Short value) { this.ReportTypeLessThan = value; return this; } public Short getReportTypeLessThanOrEqualTo() { return ReportTypeLessThanOrEqualTo; } public SO_PrintLogQuery setReportTypeLessThanOrEqualTo(Short value) { this.ReportTypeLessThanOrEqualTo = value; return this; } public Short getReportTypeNotEqualTo() { return ReportTypeNotEqualTo; } public SO_PrintLogQuery setReportTypeNotEqualTo(Short value) { this.ReportTypeNotEqualTo = value; return this; } public ArrayList getReportTypeBetween() { return ReportTypeBetween; } public SO_PrintLogQuery setReportTypeBetween(ArrayList value) { this.ReportTypeBetween = value; return this; } public ArrayList getReportTypeIn() { return ReportTypeIn; } public SO_PrintLogQuery setReportTypeIn(ArrayList value) { this.ReportTypeIn = value; return this; } public String getStaffID() { return StaffID; } public SO_PrintLogQuery setStaffID(String value) { this.StaffID = value; return this; } public String getStaffIDStartsWith() { return StaffIDStartsWith; } public SO_PrintLogQuery setStaffIDStartsWith(String value) { this.StaffIDStartsWith = value; return this; } public String getStaffIDEndsWith() { return StaffIDEndsWith; } public SO_PrintLogQuery setStaffIDEndsWith(String value) { this.StaffIDEndsWith = value; return this; } public String getStaffIDContains() { return StaffIDContains; } public SO_PrintLogQuery setStaffIDContains(String value) { this.StaffIDContains = value; return this; } public String getStaffIDLike() { return StaffIDLike; } public SO_PrintLogQuery setStaffIDLike(String value) { this.StaffIDLike = value; return this; } public ArrayList getStaffIDBetween() { return StaffIDBetween; } public SO_PrintLogQuery setStaffIDBetween(ArrayList value) { this.StaffIDBetween = value; return this; } public ArrayList getStaffIDIn() { return StaffIDIn; } public SO_PrintLogQuery setStaffIDIn(ArrayList value) { this.StaffIDIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class SO_ProfitQuery extends QueryDb implements IReturn> { public String InvoiceID = null; public String InvoiceIDStartsWith = null; public String InvoiceIDEndsWith = null; public String InvoiceIDContains = null; public String InvoiceIDLike = null; public ArrayList InvoiceIDBetween = null; public ArrayList InvoiceIDIn = null; public String InvoiceNo = null; public String InvoiceNoStartsWith = null; public String InvoiceNoEndsWith = null; public String InvoiceNoContains = null; public String InvoiceNoLike = null; public ArrayList InvoiceNoBetween = null; public ArrayList InvoiceNoIn = null; public Short BillWhenComplete = null; public Short BillWhenCompleteGreaterThanOrEqualTo = null; public Short BillWhenCompleteGreaterThan = null; public Short BillWhenCompleteLessThan = null; public Short BillWhenCompleteLessThanOrEqualTo = null; public Short BillWhenCompleteNotEqualTo = null; public ArrayList BillWhenCompleteBetween = null; public ArrayList BillWhenCompleteIn = null; public String OrderNo = null; public String OrderNoStartsWith = null; public String OrderNoEndsWith = null; public String OrderNoContains = null; public String OrderNoLike = null; public ArrayList OrderNoBetween = null; public ArrayList OrderNoIn = null; public Boolean CreditNote = null; public Boolean WholeSaleInvoice = null; public String TaxExemptNo = null; public String TaxExemptNoStartsWith = null; public String TaxExemptNoEndsWith = null; public String TaxExemptNoContains = null; public String TaxExemptNoLike = null; public ArrayList TaxExemptNoBetween = null; public ArrayList TaxExemptNoIn = null; public String InvoiceHistoryID = null; public String InvoiceHistoryIDStartsWith = null; public String InvoiceHistoryIDEndsWith = null; public String InvoiceHistoryIDContains = null; public String InvoiceHistoryIDLike = null; public ArrayList InvoiceHistoryIDBetween = null; public ArrayList InvoiceHistoryIDIn = null; public Short HistoryNo = null; public Short HistoryNoGreaterThanOrEqualTo = null; public Short HistoryNoGreaterThan = null; public Short HistoryNoLessThan = null; public Short HistoryNoLessThanOrEqualTo = null; public Short HistoryNoNotEqualTo = null; public ArrayList HistoryNoBetween = null; public ArrayList HistoryNoIn = null; public String RunNo = null; public String RunNoStartsWith = null; public String RunNoEndsWith = null; public String RunNoContains = null; public String RunNoLike = null; public ArrayList RunNoBetween = null; public ArrayList RunNoIn = null; public Date RecordDate = null; public Date RecordDateGreaterThanOrEqualTo = null; public Date RecordDateGreaterThan = null; public Date RecordDateLessThan = null; public Date RecordDateLessThanOrEqualTo = null; public Date RecordDateNotEqualTo = null; public ArrayList RecordDateBetween = null; public ArrayList RecordDateIn = null; public String InvoiceLineID = null; public String InvoiceLineIDStartsWith = null; public String InvoiceLineIDEndsWith = null; public String InvoiceLineIDContains = null; public String InvoiceLineIDLike = null; public ArrayList InvoiceLineIDBetween = null; public ArrayList InvoiceLineIDIn = null; public String PartNo = null; public String PartNoStartsWith = null; public String PartNoEndsWith = null; public String PartNoContains = null; public String PartNoLike = null; public ArrayList PartNoBetween = null; public ArrayList PartNoIn = null; public String Description = null; public String DescriptionStartsWith = null; public String DescriptionEndsWith = null; public String DescriptionContains = null; public String DescriptionLike = null; public ArrayList DescriptionBetween = null; public ArrayList DescriptionIn = null; public BigDecimal CostIn = null; public BigDecimal CostInGreaterThanOrEqualTo = null; public BigDecimal CostInGreaterThan = null; public BigDecimal CostInLessThan = null; public BigDecimal CostInLessThanOrEqualTo = null; public BigDecimal CostInNotEqualTo = null; public ArrayList CostInBetween = null; public ArrayList CostInIn = null; public BigDecimal QuantityThisDel = null; public BigDecimal QuantityThisDelGreaterThanOrEqualTo = null; public BigDecimal QuantityThisDelGreaterThan = null; public BigDecimal QuantityThisDelLessThan = null; public BigDecimal QuantityThisDelLessThanOrEqualTo = null; public BigDecimal QuantityThisDelNotEqualTo = null; public ArrayList QuantityThisDelBetween = null; public ArrayList QuantityThisDelIn = null; public BigDecimal CurrentLineTotal = null; public BigDecimal CurrentLineTotalGreaterThanOrEqualTo = null; public BigDecimal CurrentLineTotalGreaterThan = null; public BigDecimal CurrentLineTotalLessThan = null; public BigDecimal CurrentLineTotalLessThanOrEqualTo = null; public BigDecimal CurrentLineTotalNotEqualTo = null; public ArrayList CurrentLineTotalBetween = null; public ArrayList CurrentLineTotalIn = null; public BigDecimal TaxToCharge = null; public BigDecimal TaxToChargeGreaterThanOrEqualTo = null; public BigDecimal TaxToChargeGreaterThan = null; public BigDecimal TaxToChargeLessThan = null; public BigDecimal TaxToChargeLessThanOrEqualTo = null; public BigDecimal TaxToChargeNotEqualTo = null; public ArrayList TaxToChargeBetween = null; public ArrayList TaxToChargeIn = null; public BigDecimal TaxPaid = null; public BigDecimal TaxPaidGreaterThanOrEqualTo = null; public BigDecimal TaxPaidGreaterThan = null; public BigDecimal TaxPaidLessThan = null; public BigDecimal TaxPaidLessThanOrEqualTo = null; public BigDecimal TaxPaidNotEqualTo = null; public ArrayList TaxPaidBetween = null; public ArrayList TaxPaidIn = null; public Short DecimalPlaces = null; public Short DecimalPlacesGreaterThanOrEqualTo = null; public Short DecimalPlacesGreaterThan = null; public Short DecimalPlacesLessThan = null; public Short DecimalPlacesLessThanOrEqualTo = null; public Short DecimalPlacesNotEqualTo = null; public ArrayList DecimalPlacesBetween = null; public ArrayList DecimalPlacesIn = null; public String TaxID = null; public String TaxIDStartsWith = null; public String TaxIDEndsWith = null; public String TaxIDContains = null; public String TaxIDLike = null; public ArrayList TaxIDBetween = null; public ArrayList TaxIDIn = null; public Short PhysicalItem = null; public Short PhysicalItemGreaterThanOrEqualTo = null; public Short PhysicalItemGreaterThan = null; public Short PhysicalItemLessThan = null; public Short PhysicalItemLessThanOrEqualTo = null; public Short PhysicalItemNotEqualTo = null; public ArrayList PhysicalItemBetween = null; public ArrayList PhysicalItemIn = null; public Boolean NonStock = null; public String DebtorID = null; public String DebtorIDStartsWith = null; public String DebtorIDEndsWith = null; public String DebtorIDContains = null; public String DebtorIDLike = null; public ArrayList DebtorIDBetween = null; public ArrayList DebtorIDIn = null; public String AccountNo = null; public String AccountNoStartsWith = null; public String AccountNoEndsWith = null; public String AccountNoContains = null; public String AccountNoLike = null; public ArrayList AccountNoBetween = null; public ArrayList AccountNoIn = null; public String Name = null; public String NameStartsWith = null; public String NameEndsWith = null; public String NameContains = null; public String NameLike = null; public ArrayList NameBetween = null; public ArrayList NameIn = null; public String InventoryClassificationID = null; public String InventoryClassificationIDStartsWith = null; public String InventoryClassificationIDEndsWith = null; public String InventoryClassificationIDContains = null; public String InventoryClassificationIDLike = null; public ArrayList InventoryClassificationIDBetween = null; public ArrayList InventoryClassificationIDIn = null; public String ClassDescription = null; public String ClassDescriptionStartsWith = null; public String ClassDescriptionEndsWith = null; public String ClassDescriptionContains = null; public String ClassDescriptionLike = null; public ArrayList ClassDescriptionBetween = null; public ArrayList ClassDescriptionIn = null; public String getInvoiceID() { return InvoiceID; } public SO_ProfitQuery setInvoiceID(String value) { this.InvoiceID = value; return this; } public String getInvoiceIDStartsWith() { return InvoiceIDStartsWith; } public SO_ProfitQuery setInvoiceIDStartsWith(String value) { this.InvoiceIDStartsWith = value; return this; } public String getInvoiceIDEndsWith() { return InvoiceIDEndsWith; } public SO_ProfitQuery setInvoiceIDEndsWith(String value) { this.InvoiceIDEndsWith = value; return this; } public String getInvoiceIDContains() { return InvoiceIDContains; } public SO_ProfitQuery setInvoiceIDContains(String value) { this.InvoiceIDContains = value; return this; } public String getInvoiceIDLike() { return InvoiceIDLike; } public SO_ProfitQuery setInvoiceIDLike(String value) { this.InvoiceIDLike = value; return this; } public ArrayList getInvoiceIDBetween() { return InvoiceIDBetween; } public SO_ProfitQuery setInvoiceIDBetween(ArrayList value) { this.InvoiceIDBetween = value; return this; } public ArrayList getInvoiceIDIn() { return InvoiceIDIn; } public SO_ProfitQuery setInvoiceIDIn(ArrayList value) { this.InvoiceIDIn = value; return this; } public String getInvoiceNo() { return InvoiceNo; } public SO_ProfitQuery setInvoiceNo(String value) { this.InvoiceNo = value; return this; } public String getInvoiceNoStartsWith() { return InvoiceNoStartsWith; } public SO_ProfitQuery setInvoiceNoStartsWith(String value) { this.InvoiceNoStartsWith = value; return this; } public String getInvoiceNoEndsWith() { return InvoiceNoEndsWith; } public SO_ProfitQuery setInvoiceNoEndsWith(String value) { this.InvoiceNoEndsWith = value; return this; } public String getInvoiceNoContains() { return InvoiceNoContains; } public SO_ProfitQuery setInvoiceNoContains(String value) { this.InvoiceNoContains = value; return this; } public String getInvoiceNoLike() { return InvoiceNoLike; } public SO_ProfitQuery setInvoiceNoLike(String value) { this.InvoiceNoLike = value; return this; } public ArrayList getInvoiceNoBetween() { return InvoiceNoBetween; } public SO_ProfitQuery setInvoiceNoBetween(ArrayList value) { this.InvoiceNoBetween = value; return this; } public ArrayList getInvoiceNoIn() { return InvoiceNoIn; } public SO_ProfitQuery setInvoiceNoIn(ArrayList value) { this.InvoiceNoIn = value; return this; } public Short getBillWhenComplete() { return BillWhenComplete; } public SO_ProfitQuery setBillWhenComplete(Short value) { this.BillWhenComplete = value; return this; } public Short getBillWhenCompleteGreaterThanOrEqualTo() { return BillWhenCompleteGreaterThanOrEqualTo; } public SO_ProfitQuery setBillWhenCompleteGreaterThanOrEqualTo(Short value) { this.BillWhenCompleteGreaterThanOrEqualTo = value; return this; } public Short getBillWhenCompleteGreaterThan() { return BillWhenCompleteGreaterThan; } public SO_ProfitQuery setBillWhenCompleteGreaterThan(Short value) { this.BillWhenCompleteGreaterThan = value; return this; } public Short getBillWhenCompleteLessThan() { return BillWhenCompleteLessThan; } public SO_ProfitQuery setBillWhenCompleteLessThan(Short value) { this.BillWhenCompleteLessThan = value; return this; } public Short getBillWhenCompleteLessThanOrEqualTo() { return BillWhenCompleteLessThanOrEqualTo; } public SO_ProfitQuery setBillWhenCompleteLessThanOrEqualTo(Short value) { this.BillWhenCompleteLessThanOrEqualTo = value; return this; } public Short getBillWhenCompleteNotEqualTo() { return BillWhenCompleteNotEqualTo; } public SO_ProfitQuery setBillWhenCompleteNotEqualTo(Short value) { this.BillWhenCompleteNotEqualTo = value; return this; } public ArrayList getBillWhenCompleteBetween() { return BillWhenCompleteBetween; } public SO_ProfitQuery setBillWhenCompleteBetween(ArrayList value) { this.BillWhenCompleteBetween = value; return this; } public ArrayList getBillWhenCompleteIn() { return BillWhenCompleteIn; } public SO_ProfitQuery setBillWhenCompleteIn(ArrayList value) { this.BillWhenCompleteIn = value; return this; } public String getOrderNo() { return OrderNo; } public SO_ProfitQuery setOrderNo(String value) { this.OrderNo = value; return this; } public String getOrderNoStartsWith() { return OrderNoStartsWith; } public SO_ProfitQuery setOrderNoStartsWith(String value) { this.OrderNoStartsWith = value; return this; } public String getOrderNoEndsWith() { return OrderNoEndsWith; } public SO_ProfitQuery setOrderNoEndsWith(String value) { this.OrderNoEndsWith = value; return this; } public String getOrderNoContains() { return OrderNoContains; } public SO_ProfitQuery setOrderNoContains(String value) { this.OrderNoContains = value; return this; } public String getOrderNoLike() { return OrderNoLike; } public SO_ProfitQuery setOrderNoLike(String value) { this.OrderNoLike = value; return this; } public ArrayList getOrderNoBetween() { return OrderNoBetween; } public SO_ProfitQuery setOrderNoBetween(ArrayList value) { this.OrderNoBetween = value; return this; } public ArrayList getOrderNoIn() { return OrderNoIn; } public SO_ProfitQuery setOrderNoIn(ArrayList value) { this.OrderNoIn = value; return this; } public Boolean isCreditNote() { return CreditNote; } public SO_ProfitQuery setCreditNote(Boolean value) { this.CreditNote = value; return this; } public Boolean isWholeSaleInvoice() { return WholeSaleInvoice; } public SO_ProfitQuery setWholeSaleInvoice(Boolean value) { this.WholeSaleInvoice = value; return this; } public String getTaxExemptNo() { return TaxExemptNo; } public SO_ProfitQuery setTaxExemptNo(String value) { this.TaxExemptNo = value; return this; } public String getTaxExemptNoStartsWith() { return TaxExemptNoStartsWith; } public SO_ProfitQuery setTaxExemptNoStartsWith(String value) { this.TaxExemptNoStartsWith = value; return this; } public String getTaxExemptNoEndsWith() { return TaxExemptNoEndsWith; } public SO_ProfitQuery setTaxExemptNoEndsWith(String value) { this.TaxExemptNoEndsWith = value; return this; } public String getTaxExemptNoContains() { return TaxExemptNoContains; } public SO_ProfitQuery setTaxExemptNoContains(String value) { this.TaxExemptNoContains = value; return this; } public String getTaxExemptNoLike() { return TaxExemptNoLike; } public SO_ProfitQuery setTaxExemptNoLike(String value) { this.TaxExemptNoLike = value; return this; } public ArrayList getTaxExemptNoBetween() { return TaxExemptNoBetween; } public SO_ProfitQuery setTaxExemptNoBetween(ArrayList value) { this.TaxExemptNoBetween = value; return this; } public ArrayList getTaxExemptNoIn() { return TaxExemptNoIn; } public SO_ProfitQuery setTaxExemptNoIn(ArrayList value) { this.TaxExemptNoIn = value; return this; } public String getInvoiceHistoryID() { return InvoiceHistoryID; } public SO_ProfitQuery setInvoiceHistoryID(String value) { this.InvoiceHistoryID = value; return this; } public String getInvoiceHistoryIDStartsWith() { return InvoiceHistoryIDStartsWith; } public SO_ProfitQuery setInvoiceHistoryIDStartsWith(String value) { this.InvoiceHistoryIDStartsWith = value; return this; } public String getInvoiceHistoryIDEndsWith() { return InvoiceHistoryIDEndsWith; } public SO_ProfitQuery setInvoiceHistoryIDEndsWith(String value) { this.InvoiceHistoryIDEndsWith = value; return this; } public String getInvoiceHistoryIDContains() { return InvoiceHistoryIDContains; } public SO_ProfitQuery setInvoiceHistoryIDContains(String value) { this.InvoiceHistoryIDContains = value; return this; } public String getInvoiceHistoryIDLike() { return InvoiceHistoryIDLike; } public SO_ProfitQuery setInvoiceHistoryIDLike(String value) { this.InvoiceHistoryIDLike = value; return this; } public ArrayList getInvoiceHistoryIDBetween() { return InvoiceHistoryIDBetween; } public SO_ProfitQuery setInvoiceHistoryIDBetween(ArrayList value) { this.InvoiceHistoryIDBetween = value; return this; } public ArrayList getInvoiceHistoryIDIn() { return InvoiceHistoryIDIn; } public SO_ProfitQuery setInvoiceHistoryIDIn(ArrayList value) { this.InvoiceHistoryIDIn = value; return this; } public Short getHistoryNo() { return HistoryNo; } public SO_ProfitQuery setHistoryNo(Short value) { this.HistoryNo = value; return this; } public Short getHistoryNoGreaterThanOrEqualTo() { return HistoryNoGreaterThanOrEqualTo; } public SO_ProfitQuery setHistoryNoGreaterThanOrEqualTo(Short value) { this.HistoryNoGreaterThanOrEqualTo = value; return this; } public Short getHistoryNoGreaterThan() { return HistoryNoGreaterThan; } public SO_ProfitQuery setHistoryNoGreaterThan(Short value) { this.HistoryNoGreaterThan = value; return this; } public Short getHistoryNoLessThan() { return HistoryNoLessThan; } public SO_ProfitQuery setHistoryNoLessThan(Short value) { this.HistoryNoLessThan = value; return this; } public Short getHistoryNoLessThanOrEqualTo() { return HistoryNoLessThanOrEqualTo; } public SO_ProfitQuery setHistoryNoLessThanOrEqualTo(Short value) { this.HistoryNoLessThanOrEqualTo = value; return this; } public Short getHistoryNoNotEqualTo() { return HistoryNoNotEqualTo; } public SO_ProfitQuery setHistoryNoNotEqualTo(Short value) { this.HistoryNoNotEqualTo = value; return this; } public ArrayList getHistoryNoBetween() { return HistoryNoBetween; } public SO_ProfitQuery setHistoryNoBetween(ArrayList value) { this.HistoryNoBetween = value; return this; } public ArrayList getHistoryNoIn() { return HistoryNoIn; } public SO_ProfitQuery setHistoryNoIn(ArrayList value) { this.HistoryNoIn = value; return this; } public String getRunNo() { return RunNo; } public SO_ProfitQuery setRunNo(String value) { this.RunNo = value; return this; } public String getRunNoStartsWith() { return RunNoStartsWith; } public SO_ProfitQuery setRunNoStartsWith(String value) { this.RunNoStartsWith = value; return this; } public String getRunNoEndsWith() { return RunNoEndsWith; } public SO_ProfitQuery setRunNoEndsWith(String value) { this.RunNoEndsWith = value; return this; } public String getRunNoContains() { return RunNoContains; } public SO_ProfitQuery setRunNoContains(String value) { this.RunNoContains = value; return this; } public String getRunNoLike() { return RunNoLike; } public SO_ProfitQuery setRunNoLike(String value) { this.RunNoLike = value; return this; } public ArrayList getRunNoBetween() { return RunNoBetween; } public SO_ProfitQuery setRunNoBetween(ArrayList value) { this.RunNoBetween = value; return this; } public ArrayList getRunNoIn() { return RunNoIn; } public SO_ProfitQuery setRunNoIn(ArrayList value) { this.RunNoIn = value; return this; } public Date getRecordDate() { return RecordDate; } public SO_ProfitQuery setRecordDate(Date value) { this.RecordDate = value; return this; } public Date getRecordDateGreaterThanOrEqualTo() { return RecordDateGreaterThanOrEqualTo; } public SO_ProfitQuery setRecordDateGreaterThanOrEqualTo(Date value) { this.RecordDateGreaterThanOrEqualTo = value; return this; } public Date getRecordDateGreaterThan() { return RecordDateGreaterThan; } public SO_ProfitQuery setRecordDateGreaterThan(Date value) { this.RecordDateGreaterThan = value; return this; } public Date getRecordDateLessThan() { return RecordDateLessThan; } public SO_ProfitQuery setRecordDateLessThan(Date value) { this.RecordDateLessThan = value; return this; } public Date getRecordDateLessThanOrEqualTo() { return RecordDateLessThanOrEqualTo; } public SO_ProfitQuery setRecordDateLessThanOrEqualTo(Date value) { this.RecordDateLessThanOrEqualTo = value; return this; } public Date getRecordDateNotEqualTo() { return RecordDateNotEqualTo; } public SO_ProfitQuery setRecordDateNotEqualTo(Date value) { this.RecordDateNotEqualTo = value; return this; } public ArrayList getRecordDateBetween() { return RecordDateBetween; } public SO_ProfitQuery setRecordDateBetween(ArrayList value) { this.RecordDateBetween = value; return this; } public ArrayList getRecordDateIn() { return RecordDateIn; } public SO_ProfitQuery setRecordDateIn(ArrayList value) { this.RecordDateIn = value; return this; } public String getInvoiceLineID() { return InvoiceLineID; } public SO_ProfitQuery setInvoiceLineID(String value) { this.InvoiceLineID = value; return this; } public String getInvoiceLineIDStartsWith() { return InvoiceLineIDStartsWith; } public SO_ProfitQuery setInvoiceLineIDStartsWith(String value) { this.InvoiceLineIDStartsWith = value; return this; } public String getInvoiceLineIDEndsWith() { return InvoiceLineIDEndsWith; } public SO_ProfitQuery setInvoiceLineIDEndsWith(String value) { this.InvoiceLineIDEndsWith = value; return this; } public String getInvoiceLineIDContains() { return InvoiceLineIDContains; } public SO_ProfitQuery setInvoiceLineIDContains(String value) { this.InvoiceLineIDContains = value; return this; } public String getInvoiceLineIDLike() { return InvoiceLineIDLike; } public SO_ProfitQuery setInvoiceLineIDLike(String value) { this.InvoiceLineIDLike = value; return this; } public ArrayList getInvoiceLineIDBetween() { return InvoiceLineIDBetween; } public SO_ProfitQuery setInvoiceLineIDBetween(ArrayList value) { this.InvoiceLineIDBetween = value; return this; } public ArrayList getInvoiceLineIDIn() { return InvoiceLineIDIn; } public SO_ProfitQuery setInvoiceLineIDIn(ArrayList value) { this.InvoiceLineIDIn = value; return this; } public String getPartNo() { return PartNo; } public SO_ProfitQuery setPartNo(String value) { this.PartNo = value; return this; } public String getPartNoStartsWith() { return PartNoStartsWith; } public SO_ProfitQuery setPartNoStartsWith(String value) { this.PartNoStartsWith = value; return this; } public String getPartNoEndsWith() { return PartNoEndsWith; } public SO_ProfitQuery setPartNoEndsWith(String value) { this.PartNoEndsWith = value; return this; } public String getPartNoContains() { return PartNoContains; } public SO_ProfitQuery setPartNoContains(String value) { this.PartNoContains = value; return this; } public String getPartNoLike() { return PartNoLike; } public SO_ProfitQuery setPartNoLike(String value) { this.PartNoLike = value; return this; } public ArrayList getPartNoBetween() { return PartNoBetween; } public SO_ProfitQuery setPartNoBetween(ArrayList value) { this.PartNoBetween = value; return this; } public ArrayList getPartNoIn() { return PartNoIn; } public SO_ProfitQuery setPartNoIn(ArrayList value) { this.PartNoIn = value; return this; } public String getDescription() { return Description; } public SO_ProfitQuery setDescription(String value) { this.Description = value; return this; } public String getDescriptionStartsWith() { return DescriptionStartsWith; } public SO_ProfitQuery setDescriptionStartsWith(String value) { this.DescriptionStartsWith = value; return this; } public String getDescriptionEndsWith() { return DescriptionEndsWith; } public SO_ProfitQuery setDescriptionEndsWith(String value) { this.DescriptionEndsWith = value; return this; } public String getDescriptionContains() { return DescriptionContains; } public SO_ProfitQuery setDescriptionContains(String value) { this.DescriptionContains = value; return this; } public String getDescriptionLike() { return DescriptionLike; } public SO_ProfitQuery setDescriptionLike(String value) { this.DescriptionLike = value; return this; } public ArrayList getDescriptionBetween() { return DescriptionBetween; } public SO_ProfitQuery setDescriptionBetween(ArrayList value) { this.DescriptionBetween = value; return this; } public ArrayList getDescriptionIn() { return DescriptionIn; } public SO_ProfitQuery setDescriptionIn(ArrayList value) { this.DescriptionIn = value; return this; } public BigDecimal getCostIn() { return CostIn; } public SO_ProfitQuery setCostIn(BigDecimal value) { this.CostIn = value; return this; } public BigDecimal getCostInGreaterThanOrEqualTo() { return CostInGreaterThanOrEqualTo; } public SO_ProfitQuery setCostInGreaterThanOrEqualTo(BigDecimal value) { this.CostInGreaterThanOrEqualTo = value; return this; } public BigDecimal getCostInGreaterThan() { return CostInGreaterThan; } public SO_ProfitQuery setCostInGreaterThan(BigDecimal value) { this.CostInGreaterThan = value; return this; } public BigDecimal getCostInLessThan() { return CostInLessThan; } public SO_ProfitQuery setCostInLessThan(BigDecimal value) { this.CostInLessThan = value; return this; } public BigDecimal getCostInLessThanOrEqualTo() { return CostInLessThanOrEqualTo; } public SO_ProfitQuery setCostInLessThanOrEqualTo(BigDecimal value) { this.CostInLessThanOrEqualTo = value; return this; } public BigDecimal getCostInNotEqualTo() { return CostInNotEqualTo; } public SO_ProfitQuery setCostInNotEqualTo(BigDecimal value) { this.CostInNotEqualTo = value; return this; } public ArrayList getCostInBetween() { return CostInBetween; } public SO_ProfitQuery setCostInBetween(ArrayList value) { this.CostInBetween = value; return this; } public ArrayList getCostInIn() { return CostInIn; } public SO_ProfitQuery setCostInIn(ArrayList value) { this.CostInIn = value; return this; } public BigDecimal getQuantityThisDel() { return QuantityThisDel; } public SO_ProfitQuery setQuantityThisDel(BigDecimal value) { this.QuantityThisDel = value; return this; } public BigDecimal getQuantityThisDelGreaterThanOrEqualTo() { return QuantityThisDelGreaterThanOrEqualTo; } public SO_ProfitQuery setQuantityThisDelGreaterThanOrEqualTo(BigDecimal value) { this.QuantityThisDelGreaterThanOrEqualTo = value; return this; } public BigDecimal getQuantityThisDelGreaterThan() { return QuantityThisDelGreaterThan; } public SO_ProfitQuery setQuantityThisDelGreaterThan(BigDecimal value) { this.QuantityThisDelGreaterThan = value; return this; } public BigDecimal getQuantityThisDelLessThan() { return QuantityThisDelLessThan; } public SO_ProfitQuery setQuantityThisDelLessThan(BigDecimal value) { this.QuantityThisDelLessThan = value; return this; } public BigDecimal getQuantityThisDelLessThanOrEqualTo() { return QuantityThisDelLessThanOrEqualTo; } public SO_ProfitQuery setQuantityThisDelLessThanOrEqualTo(BigDecimal value) { this.QuantityThisDelLessThanOrEqualTo = value; return this; } public BigDecimal getQuantityThisDelNotEqualTo() { return QuantityThisDelNotEqualTo; } public SO_ProfitQuery setQuantityThisDelNotEqualTo(BigDecimal value) { this.QuantityThisDelNotEqualTo = value; return this; } public ArrayList getQuantityThisDelBetween() { return QuantityThisDelBetween; } public SO_ProfitQuery setQuantityThisDelBetween(ArrayList value) { this.QuantityThisDelBetween = value; return this; } public ArrayList getQuantityThisDelIn() { return QuantityThisDelIn; } public SO_ProfitQuery setQuantityThisDelIn(ArrayList value) { this.QuantityThisDelIn = value; return this; } public BigDecimal getCurrentLineTotal() { return CurrentLineTotal; } public SO_ProfitQuery setCurrentLineTotal(BigDecimal value) { this.CurrentLineTotal = value; return this; } public BigDecimal getCurrentLineTotalGreaterThanOrEqualTo() { return CurrentLineTotalGreaterThanOrEqualTo; } public SO_ProfitQuery setCurrentLineTotalGreaterThanOrEqualTo(BigDecimal value) { this.CurrentLineTotalGreaterThanOrEqualTo = value; return this; } public BigDecimal getCurrentLineTotalGreaterThan() { return CurrentLineTotalGreaterThan; } public SO_ProfitQuery setCurrentLineTotalGreaterThan(BigDecimal value) { this.CurrentLineTotalGreaterThan = value; return this; } public BigDecimal getCurrentLineTotalLessThan() { return CurrentLineTotalLessThan; } public SO_ProfitQuery setCurrentLineTotalLessThan(BigDecimal value) { this.CurrentLineTotalLessThan = value; return this; } public BigDecimal getCurrentLineTotalLessThanOrEqualTo() { return CurrentLineTotalLessThanOrEqualTo; } public SO_ProfitQuery setCurrentLineTotalLessThanOrEqualTo(BigDecimal value) { this.CurrentLineTotalLessThanOrEqualTo = value; return this; } public BigDecimal getCurrentLineTotalNotEqualTo() { return CurrentLineTotalNotEqualTo; } public SO_ProfitQuery setCurrentLineTotalNotEqualTo(BigDecimal value) { this.CurrentLineTotalNotEqualTo = value; return this; } public ArrayList getCurrentLineTotalBetween() { return CurrentLineTotalBetween; } public SO_ProfitQuery setCurrentLineTotalBetween(ArrayList value) { this.CurrentLineTotalBetween = value; return this; } public ArrayList getCurrentLineTotalIn() { return CurrentLineTotalIn; } public SO_ProfitQuery setCurrentLineTotalIn(ArrayList value) { this.CurrentLineTotalIn = value; return this; } public BigDecimal getTaxToCharge() { return TaxToCharge; } public SO_ProfitQuery setTaxToCharge(BigDecimal value) { this.TaxToCharge = value; return this; } public BigDecimal getTaxToChargeGreaterThanOrEqualTo() { return TaxToChargeGreaterThanOrEqualTo; } public SO_ProfitQuery setTaxToChargeGreaterThanOrEqualTo(BigDecimal value) { this.TaxToChargeGreaterThanOrEqualTo = value; return this; } public BigDecimal getTaxToChargeGreaterThan() { return TaxToChargeGreaterThan; } public SO_ProfitQuery setTaxToChargeGreaterThan(BigDecimal value) { this.TaxToChargeGreaterThan = value; return this; } public BigDecimal getTaxToChargeLessThan() { return TaxToChargeLessThan; } public SO_ProfitQuery setTaxToChargeLessThan(BigDecimal value) { this.TaxToChargeLessThan = value; return this; } public BigDecimal getTaxToChargeLessThanOrEqualTo() { return TaxToChargeLessThanOrEqualTo; } public SO_ProfitQuery setTaxToChargeLessThanOrEqualTo(BigDecimal value) { this.TaxToChargeLessThanOrEqualTo = value; return this; } public BigDecimal getTaxToChargeNotEqualTo() { return TaxToChargeNotEqualTo; } public SO_ProfitQuery setTaxToChargeNotEqualTo(BigDecimal value) { this.TaxToChargeNotEqualTo = value; return this; } public ArrayList getTaxToChargeBetween() { return TaxToChargeBetween; } public SO_ProfitQuery setTaxToChargeBetween(ArrayList value) { this.TaxToChargeBetween = value; return this; } public ArrayList getTaxToChargeIn() { return TaxToChargeIn; } public SO_ProfitQuery setTaxToChargeIn(ArrayList value) { this.TaxToChargeIn = value; return this; } public BigDecimal getTaxPaid() { return TaxPaid; } public SO_ProfitQuery setTaxPaid(BigDecimal value) { this.TaxPaid = value; return this; } public BigDecimal getTaxPaidGreaterThanOrEqualTo() { return TaxPaidGreaterThanOrEqualTo; } public SO_ProfitQuery setTaxPaidGreaterThanOrEqualTo(BigDecimal value) { this.TaxPaidGreaterThanOrEqualTo = value; return this; } public BigDecimal getTaxPaidGreaterThan() { return TaxPaidGreaterThan; } public SO_ProfitQuery setTaxPaidGreaterThan(BigDecimal value) { this.TaxPaidGreaterThan = value; return this; } public BigDecimal getTaxPaidLessThan() { return TaxPaidLessThan; } public SO_ProfitQuery setTaxPaidLessThan(BigDecimal value) { this.TaxPaidLessThan = value; return this; } public BigDecimal getTaxPaidLessThanOrEqualTo() { return TaxPaidLessThanOrEqualTo; } public SO_ProfitQuery setTaxPaidLessThanOrEqualTo(BigDecimal value) { this.TaxPaidLessThanOrEqualTo = value; return this; } public BigDecimal getTaxPaidNotEqualTo() { return TaxPaidNotEqualTo; } public SO_ProfitQuery setTaxPaidNotEqualTo(BigDecimal value) { this.TaxPaidNotEqualTo = value; return this; } public ArrayList getTaxPaidBetween() { return TaxPaidBetween; } public SO_ProfitQuery setTaxPaidBetween(ArrayList value) { this.TaxPaidBetween = value; return this; } public ArrayList getTaxPaidIn() { return TaxPaidIn; } public SO_ProfitQuery setTaxPaidIn(ArrayList value) { this.TaxPaidIn = value; return this; } public Short getDecimalPlaces() { return DecimalPlaces; } public SO_ProfitQuery setDecimalPlaces(Short value) { this.DecimalPlaces = value; return this; } public Short getDecimalPlacesGreaterThanOrEqualTo() { return DecimalPlacesGreaterThanOrEqualTo; } public SO_ProfitQuery setDecimalPlacesGreaterThanOrEqualTo(Short value) { this.DecimalPlacesGreaterThanOrEqualTo = value; return this; } public Short getDecimalPlacesGreaterThan() { return DecimalPlacesGreaterThan; } public SO_ProfitQuery setDecimalPlacesGreaterThan(Short value) { this.DecimalPlacesGreaterThan = value; return this; } public Short getDecimalPlacesLessThan() { return DecimalPlacesLessThan; } public SO_ProfitQuery setDecimalPlacesLessThan(Short value) { this.DecimalPlacesLessThan = value; return this; } public Short getDecimalPlacesLessThanOrEqualTo() { return DecimalPlacesLessThanOrEqualTo; } public SO_ProfitQuery setDecimalPlacesLessThanOrEqualTo(Short value) { this.DecimalPlacesLessThanOrEqualTo = value; return this; } public Short getDecimalPlacesNotEqualTo() { return DecimalPlacesNotEqualTo; } public SO_ProfitQuery setDecimalPlacesNotEqualTo(Short value) { this.DecimalPlacesNotEqualTo = value; return this; } public ArrayList getDecimalPlacesBetween() { return DecimalPlacesBetween; } public SO_ProfitQuery setDecimalPlacesBetween(ArrayList value) { this.DecimalPlacesBetween = value; return this; } public ArrayList getDecimalPlacesIn() { return DecimalPlacesIn; } public SO_ProfitQuery setDecimalPlacesIn(ArrayList value) { this.DecimalPlacesIn = value; return this; } public String getTaxID() { return TaxID; } public SO_ProfitQuery setTaxID(String value) { this.TaxID = value; return this; } public String getTaxIDStartsWith() { return TaxIDStartsWith; } public SO_ProfitQuery setTaxIDStartsWith(String value) { this.TaxIDStartsWith = value; return this; } public String getTaxIDEndsWith() { return TaxIDEndsWith; } public SO_ProfitQuery setTaxIDEndsWith(String value) { this.TaxIDEndsWith = value; return this; } public String getTaxIDContains() { return TaxIDContains; } public SO_ProfitQuery setTaxIDContains(String value) { this.TaxIDContains = value; return this; } public String getTaxIDLike() { return TaxIDLike; } public SO_ProfitQuery setTaxIDLike(String value) { this.TaxIDLike = value; return this; } public ArrayList getTaxIDBetween() { return TaxIDBetween; } public SO_ProfitQuery setTaxIDBetween(ArrayList value) { this.TaxIDBetween = value; return this; } public ArrayList getTaxIDIn() { return TaxIDIn; } public SO_ProfitQuery setTaxIDIn(ArrayList value) { this.TaxIDIn = value; return this; } public Short getPhysicalItem() { return PhysicalItem; } public SO_ProfitQuery setPhysicalItem(Short value) { this.PhysicalItem = value; return this; } public Short getPhysicalItemGreaterThanOrEqualTo() { return PhysicalItemGreaterThanOrEqualTo; } public SO_ProfitQuery setPhysicalItemGreaterThanOrEqualTo(Short value) { this.PhysicalItemGreaterThanOrEqualTo = value; return this; } public Short getPhysicalItemGreaterThan() { return PhysicalItemGreaterThan; } public SO_ProfitQuery setPhysicalItemGreaterThan(Short value) { this.PhysicalItemGreaterThan = value; return this; } public Short getPhysicalItemLessThan() { return PhysicalItemLessThan; } public SO_ProfitQuery setPhysicalItemLessThan(Short value) { this.PhysicalItemLessThan = value; return this; } public Short getPhysicalItemLessThanOrEqualTo() { return PhysicalItemLessThanOrEqualTo; } public SO_ProfitQuery setPhysicalItemLessThanOrEqualTo(Short value) { this.PhysicalItemLessThanOrEqualTo = value; return this; } public Short getPhysicalItemNotEqualTo() { return PhysicalItemNotEqualTo; } public SO_ProfitQuery setPhysicalItemNotEqualTo(Short value) { this.PhysicalItemNotEqualTo = value; return this; } public ArrayList getPhysicalItemBetween() { return PhysicalItemBetween; } public SO_ProfitQuery setPhysicalItemBetween(ArrayList value) { this.PhysicalItemBetween = value; return this; } public ArrayList getPhysicalItemIn() { return PhysicalItemIn; } public SO_ProfitQuery setPhysicalItemIn(ArrayList value) { this.PhysicalItemIn = value; return this; } public Boolean isNonStock() { return NonStock; } public SO_ProfitQuery setNonStock(Boolean value) { this.NonStock = value; return this; } public String getDebtorID() { return DebtorID; } public SO_ProfitQuery setDebtorID(String value) { this.DebtorID = value; return this; } public String getDebtorIDStartsWith() { return DebtorIDStartsWith; } public SO_ProfitQuery setDebtorIDStartsWith(String value) { this.DebtorIDStartsWith = value; return this; } public String getDebtorIDEndsWith() { return DebtorIDEndsWith; } public SO_ProfitQuery setDebtorIDEndsWith(String value) { this.DebtorIDEndsWith = value; return this; } public String getDebtorIDContains() { return DebtorIDContains; } public SO_ProfitQuery setDebtorIDContains(String value) { this.DebtorIDContains = value; return this; } public String getDebtorIDLike() { return DebtorIDLike; } public SO_ProfitQuery setDebtorIDLike(String value) { this.DebtorIDLike = value; return this; } public ArrayList getDebtorIDBetween() { return DebtorIDBetween; } public SO_ProfitQuery setDebtorIDBetween(ArrayList value) { this.DebtorIDBetween = value; return this; } public ArrayList getDebtorIDIn() { return DebtorIDIn; } public SO_ProfitQuery setDebtorIDIn(ArrayList value) { this.DebtorIDIn = value; return this; } public String getAccountNo() { return AccountNo; } public SO_ProfitQuery setAccountNo(String value) { this.AccountNo = value; return this; } public String getAccountNoStartsWith() { return AccountNoStartsWith; } public SO_ProfitQuery setAccountNoStartsWith(String value) { this.AccountNoStartsWith = value; return this; } public String getAccountNoEndsWith() { return AccountNoEndsWith; } public SO_ProfitQuery setAccountNoEndsWith(String value) { this.AccountNoEndsWith = value; return this; } public String getAccountNoContains() { return AccountNoContains; } public SO_ProfitQuery setAccountNoContains(String value) { this.AccountNoContains = value; return this; } public String getAccountNoLike() { return AccountNoLike; } public SO_ProfitQuery setAccountNoLike(String value) { this.AccountNoLike = value; return this; } public ArrayList getAccountNoBetween() { return AccountNoBetween; } public SO_ProfitQuery setAccountNoBetween(ArrayList value) { this.AccountNoBetween = value; return this; } public ArrayList getAccountNoIn() { return AccountNoIn; } public SO_ProfitQuery setAccountNoIn(ArrayList value) { this.AccountNoIn = value; return this; } public String getName() { return Name; } public SO_ProfitQuery setName(String value) { this.Name = value; return this; } public String getNameStartsWith() { return NameStartsWith; } public SO_ProfitQuery setNameStartsWith(String value) { this.NameStartsWith = value; return this; } public String getNameEndsWith() { return NameEndsWith; } public SO_ProfitQuery setNameEndsWith(String value) { this.NameEndsWith = value; return this; } public String getNameContains() { return NameContains; } public SO_ProfitQuery setNameContains(String value) { this.NameContains = value; return this; } public String getNameLike() { return NameLike; } public SO_ProfitQuery setNameLike(String value) { this.NameLike = value; return this; } public ArrayList getNameBetween() { return NameBetween; } public SO_ProfitQuery setNameBetween(ArrayList value) { this.NameBetween = value; return this; } public ArrayList getNameIn() { return NameIn; } public SO_ProfitQuery setNameIn(ArrayList value) { this.NameIn = value; return this; } public String getInventoryClassificationID() { return InventoryClassificationID; } public SO_ProfitQuery setInventoryClassificationID(String value) { this.InventoryClassificationID = value; return this; } public String getInventoryClassificationIDStartsWith() { return InventoryClassificationIDStartsWith; } public SO_ProfitQuery setInventoryClassificationIDStartsWith(String value) { this.InventoryClassificationIDStartsWith = value; return this; } public String getInventoryClassificationIDEndsWith() { return InventoryClassificationIDEndsWith; } public SO_ProfitQuery setInventoryClassificationIDEndsWith(String value) { this.InventoryClassificationIDEndsWith = value; return this; } public String getInventoryClassificationIDContains() { return InventoryClassificationIDContains; } public SO_ProfitQuery setInventoryClassificationIDContains(String value) { this.InventoryClassificationIDContains = value; return this; } public String getInventoryClassificationIDLike() { return InventoryClassificationIDLike; } public SO_ProfitQuery setInventoryClassificationIDLike(String value) { this.InventoryClassificationIDLike = value; return this; } public ArrayList getInventoryClassificationIDBetween() { return InventoryClassificationIDBetween; } public SO_ProfitQuery setInventoryClassificationIDBetween(ArrayList value) { this.InventoryClassificationIDBetween = value; return this; } public ArrayList getInventoryClassificationIDIn() { return InventoryClassificationIDIn; } public SO_ProfitQuery setInventoryClassificationIDIn(ArrayList value) { this.InventoryClassificationIDIn = value; return this; } public String getClassDescription() { return ClassDescription; } public SO_ProfitQuery setClassDescription(String value) { this.ClassDescription = value; return this; } public String getClassDescriptionStartsWith() { return ClassDescriptionStartsWith; } public SO_ProfitQuery setClassDescriptionStartsWith(String value) { this.ClassDescriptionStartsWith = value; return this; } public String getClassDescriptionEndsWith() { return ClassDescriptionEndsWith; } public SO_ProfitQuery setClassDescriptionEndsWith(String value) { this.ClassDescriptionEndsWith = value; return this; } public String getClassDescriptionContains() { return ClassDescriptionContains; } public SO_ProfitQuery setClassDescriptionContains(String value) { this.ClassDescriptionContains = value; return this; } public String getClassDescriptionLike() { return ClassDescriptionLike; } public SO_ProfitQuery setClassDescriptionLike(String value) { this.ClassDescriptionLike = value; return this; } public ArrayList getClassDescriptionBetween() { return ClassDescriptionBetween; } public SO_ProfitQuery setClassDescriptionBetween(ArrayList value) { this.ClassDescriptionBetween = value; return this; } public ArrayList getClassDescriptionIn() { return ClassDescriptionIn; } public SO_ProfitQuery setClassDescriptionIn(ArrayList value) { this.ClassDescriptionIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class SO_ReportDefinitionQuery extends QueryDb implements IReturn> { public String RecID = null; public String RecIDStartsWith = null; public String RecIDEndsWith = null; public String RecIDContains = null; public String RecIDLike = null; public ArrayList RecIDBetween = null; public ArrayList RecIDIn = null; public String Name = null; public String NameStartsWith = null; public String NameEndsWith = null; public String NameContains = null; public String NameLike = null; public ArrayList NameBetween = null; public ArrayList NameIn = null; public Short BillingType = null; public Short BillingTypeGreaterThanOrEqualTo = null; public Short BillingTypeGreaterThan = null; public Short BillingTypeLessThan = null; public Short BillingTypeLessThanOrEqualTo = null; public Short BillingTypeNotEqualTo = null; public ArrayList BillingTypeBetween = null; public ArrayList BillingTypeIn = null; public Integer TradingCategory = null; public Integer TradingCategoryGreaterThanOrEqualTo = null; public Integer TradingCategoryGreaterThan = null; public Integer TradingCategoryLessThan = null; public Integer TradingCategoryLessThanOrEqualTo = null; public Integer TradingCategoryNotEqualTo = null; public ArrayList TradingCategoryBetween = null; public ArrayList TradingCategoryIn = null; public Short DocumentType = null; public Short DocumentTypeGreaterThanOrEqualTo = null; public Short DocumentTypeGreaterThan = null; public Short DocumentTypeLessThan = null; public Short DocumentTypeLessThanOrEqualTo = null; public Short DocumentTypeNotEqualTo = null; public ArrayList DocumentTypeBetween = null; public ArrayList DocumentTypeIn = null; public Short NumberOfCopies = null; public Short NumberOfCopiesGreaterThanOrEqualTo = null; public Short NumberOfCopiesGreaterThan = null; public Short NumberOfCopiesLessThan = null; public Short NumberOfCopiesLessThanOrEqualTo = null; public Short NumberOfCopiesNotEqualTo = null; public ArrayList NumberOfCopiesBetween = null; public ArrayList NumberOfCopiesIn = null; public Boolean UseRange = null; public Short RangeType = null; public Short RangeTypeGreaterThanOrEqualTo = null; public Short RangeTypeGreaterThan = null; public Short RangeTypeLessThan = null; public Short RangeTypeLessThanOrEqualTo = null; public Short RangeTypeNotEqualTo = null; public ArrayList RangeTypeBetween = null; public ArrayList RangeTypeIn = null; public BigDecimal MinRange = null; public BigDecimal MinRangeGreaterThanOrEqualTo = null; public BigDecimal MinRangeGreaterThan = null; public BigDecimal MinRangeLessThan = null; public BigDecimal MinRangeLessThanOrEqualTo = null; public BigDecimal MinRangeNotEqualTo = null; public ArrayList MinRangeBetween = null; public ArrayList MinRangeIn = null; public BigDecimal MaxRange = null; public BigDecimal MaxRangeGreaterThanOrEqualTo = null; public BigDecimal MaxRangeGreaterThan = null; public BigDecimal MaxRangeLessThan = null; public BigDecimal MaxRangeLessThanOrEqualTo = null; public BigDecimal MaxRangeNotEqualTo = null; public ArrayList MaxRangeBetween = null; public ArrayList MaxRangeIn = null; public Short BackOrderStatus = null; public Short BackOrderStatusGreaterThanOrEqualTo = null; public Short BackOrderStatusGreaterThan = null; public Short BackOrderStatusLessThan = null; public Short BackOrderStatusLessThanOrEqualTo = null; public Short BackOrderStatusNotEqualTo = null; public ArrayList BackOrderStatusBetween = null; public ArrayList BackOrderStatusIn = null; public String SY_Report_RecID = null; public String SY_Report_RecIDStartsWith = null; public String SY_Report_RecIDEndsWith = null; public String SY_Report_RecIDContains = null; public String SY_Report_RecIDLike = null; public ArrayList SY_Report_RecIDBetween = null; public ArrayList SY_Report_RecIDIn = null; public String SY_PrintGroupLogicalPrinter_RecID = null; public String SY_PrintGroupLogicalPrinter_RecIDStartsWith = null; public String SY_PrintGroupLogicalPrinter_RecIDEndsWith = null; public String SY_PrintGroupLogicalPrinter_RecIDContains = null; public String SY_PrintGroupLogicalPrinter_RecIDLike = null; public ArrayList SY_PrintGroupLogicalPrinter_RecIDBetween = null; public ArrayList SY_PrintGroupLogicalPrinter_RecIDIn = null; public Integer ItemNo = null; public Integer ItemNoGreaterThanOrEqualTo = null; public Integer ItemNoGreaterThan = null; public Integer ItemNoLessThan = null; public Integer ItemNoLessThanOrEqualTo = null; public Integer ItemNoNotEqualTo = null; public ArrayList ItemNoBetween = null; public ArrayList ItemNoIn = null; public ArrayList RowHash = null; public String SY_PrintGroup_RecID = null; public String SY_PrintGroup_RecIDStartsWith = null; public String SY_PrintGroup_RecIDEndsWith = null; public String SY_PrintGroup_RecIDContains = null; public String SY_PrintGroup_RecIDLike = null; public ArrayList SY_PrintGroup_RecIDBetween = null; public ArrayList SY_PrintGroup_RecIDIn = null; public String getRecID() { return RecID; } public SO_ReportDefinitionQuery setRecID(String value) { this.RecID = value; return this; } public String getRecIDStartsWith() { return RecIDStartsWith; } public SO_ReportDefinitionQuery setRecIDStartsWith(String value) { this.RecIDStartsWith = value; return this; } public String getRecIDEndsWith() { return RecIDEndsWith; } public SO_ReportDefinitionQuery setRecIDEndsWith(String value) { this.RecIDEndsWith = value; return this; } public String getRecIDContains() { return RecIDContains; } public SO_ReportDefinitionQuery setRecIDContains(String value) { this.RecIDContains = value; return this; } public String getRecIDLike() { return RecIDLike; } public SO_ReportDefinitionQuery setRecIDLike(String value) { this.RecIDLike = value; return this; } public ArrayList getRecIDBetween() { return RecIDBetween; } public SO_ReportDefinitionQuery setRecIDBetween(ArrayList value) { this.RecIDBetween = value; return this; } public ArrayList getRecIDIn() { return RecIDIn; } public SO_ReportDefinitionQuery setRecIDIn(ArrayList value) { this.RecIDIn = value; return this; } public String getName() { return Name; } public SO_ReportDefinitionQuery setName(String value) { this.Name = value; return this; } public String getNameStartsWith() { return NameStartsWith; } public SO_ReportDefinitionQuery setNameStartsWith(String value) { this.NameStartsWith = value; return this; } public String getNameEndsWith() { return NameEndsWith; } public SO_ReportDefinitionQuery setNameEndsWith(String value) { this.NameEndsWith = value; return this; } public String getNameContains() { return NameContains; } public SO_ReportDefinitionQuery setNameContains(String value) { this.NameContains = value; return this; } public String getNameLike() { return NameLike; } public SO_ReportDefinitionQuery setNameLike(String value) { this.NameLike = value; return this; } public ArrayList getNameBetween() { return NameBetween; } public SO_ReportDefinitionQuery setNameBetween(ArrayList value) { this.NameBetween = value; return this; } public ArrayList getNameIn() { return NameIn; } public SO_ReportDefinitionQuery setNameIn(ArrayList value) { this.NameIn = value; return this; } public Short getBillingType() { return BillingType; } public SO_ReportDefinitionQuery setBillingType(Short value) { this.BillingType = value; return this; } public Short getBillingTypeGreaterThanOrEqualTo() { return BillingTypeGreaterThanOrEqualTo; } public SO_ReportDefinitionQuery setBillingTypeGreaterThanOrEqualTo(Short value) { this.BillingTypeGreaterThanOrEqualTo = value; return this; } public Short getBillingTypeGreaterThan() { return BillingTypeGreaterThan; } public SO_ReportDefinitionQuery setBillingTypeGreaterThan(Short value) { this.BillingTypeGreaterThan = value; return this; } public Short getBillingTypeLessThan() { return BillingTypeLessThan; } public SO_ReportDefinitionQuery setBillingTypeLessThan(Short value) { this.BillingTypeLessThan = value; return this; } public Short getBillingTypeLessThanOrEqualTo() { return BillingTypeLessThanOrEqualTo; } public SO_ReportDefinitionQuery setBillingTypeLessThanOrEqualTo(Short value) { this.BillingTypeLessThanOrEqualTo = value; return this; } public Short getBillingTypeNotEqualTo() { return BillingTypeNotEqualTo; } public SO_ReportDefinitionQuery setBillingTypeNotEqualTo(Short value) { this.BillingTypeNotEqualTo = value; return this; } public ArrayList getBillingTypeBetween() { return BillingTypeBetween; } public SO_ReportDefinitionQuery setBillingTypeBetween(ArrayList value) { this.BillingTypeBetween = value; return this; } public ArrayList getBillingTypeIn() { return BillingTypeIn; } public SO_ReportDefinitionQuery setBillingTypeIn(ArrayList value) { this.BillingTypeIn = value; return this; } public Integer getTradingCategory() { return TradingCategory; } public SO_ReportDefinitionQuery setTradingCategory(Integer value) { this.TradingCategory = value; return this; } public Integer getTradingCategoryGreaterThanOrEqualTo() { return TradingCategoryGreaterThanOrEqualTo; } public SO_ReportDefinitionQuery setTradingCategoryGreaterThanOrEqualTo(Integer value) { this.TradingCategoryGreaterThanOrEqualTo = value; return this; } public Integer getTradingCategoryGreaterThan() { return TradingCategoryGreaterThan; } public SO_ReportDefinitionQuery setTradingCategoryGreaterThan(Integer value) { this.TradingCategoryGreaterThan = value; return this; } public Integer getTradingCategoryLessThan() { return TradingCategoryLessThan; } public SO_ReportDefinitionQuery setTradingCategoryLessThan(Integer value) { this.TradingCategoryLessThan = value; return this; } public Integer getTradingCategoryLessThanOrEqualTo() { return TradingCategoryLessThanOrEqualTo; } public SO_ReportDefinitionQuery setTradingCategoryLessThanOrEqualTo(Integer value) { this.TradingCategoryLessThanOrEqualTo = value; return this; } public Integer getTradingCategoryNotEqualTo() { return TradingCategoryNotEqualTo; } public SO_ReportDefinitionQuery setTradingCategoryNotEqualTo(Integer value) { this.TradingCategoryNotEqualTo = value; return this; } public ArrayList getTradingCategoryBetween() { return TradingCategoryBetween; } public SO_ReportDefinitionQuery setTradingCategoryBetween(ArrayList value) { this.TradingCategoryBetween = value; return this; } public ArrayList getTradingCategoryIn() { return TradingCategoryIn; } public SO_ReportDefinitionQuery setTradingCategoryIn(ArrayList value) { this.TradingCategoryIn = value; return this; } public Short getDocumentType() { return DocumentType; } public SO_ReportDefinitionQuery setDocumentType(Short value) { this.DocumentType = value; return this; } public Short getDocumentTypeGreaterThanOrEqualTo() { return DocumentTypeGreaterThanOrEqualTo; } public SO_ReportDefinitionQuery setDocumentTypeGreaterThanOrEqualTo(Short value) { this.DocumentTypeGreaterThanOrEqualTo = value; return this; } public Short getDocumentTypeGreaterThan() { return DocumentTypeGreaterThan; } public SO_ReportDefinitionQuery setDocumentTypeGreaterThan(Short value) { this.DocumentTypeGreaterThan = value; return this; } public Short getDocumentTypeLessThan() { return DocumentTypeLessThan; } public SO_ReportDefinitionQuery setDocumentTypeLessThan(Short value) { this.DocumentTypeLessThan = value; return this; } public Short getDocumentTypeLessThanOrEqualTo() { return DocumentTypeLessThanOrEqualTo; } public SO_ReportDefinitionQuery setDocumentTypeLessThanOrEqualTo(Short value) { this.DocumentTypeLessThanOrEqualTo = value; return this; } public Short getDocumentTypeNotEqualTo() { return DocumentTypeNotEqualTo; } public SO_ReportDefinitionQuery setDocumentTypeNotEqualTo(Short value) { this.DocumentTypeNotEqualTo = value; return this; } public ArrayList getDocumentTypeBetween() { return DocumentTypeBetween; } public SO_ReportDefinitionQuery setDocumentTypeBetween(ArrayList value) { this.DocumentTypeBetween = value; return this; } public ArrayList getDocumentTypeIn() { return DocumentTypeIn; } public SO_ReportDefinitionQuery setDocumentTypeIn(ArrayList value) { this.DocumentTypeIn = value; return this; } public Short getNumberOfCopies() { return NumberOfCopies; } public SO_ReportDefinitionQuery setNumberOfCopies(Short value) { this.NumberOfCopies = value; return this; } public Short getNumberOfCopiesGreaterThanOrEqualTo() { return NumberOfCopiesGreaterThanOrEqualTo; } public SO_ReportDefinitionQuery setNumberOfCopiesGreaterThanOrEqualTo(Short value) { this.NumberOfCopiesGreaterThanOrEqualTo = value; return this; } public Short getNumberOfCopiesGreaterThan() { return NumberOfCopiesGreaterThan; } public SO_ReportDefinitionQuery setNumberOfCopiesGreaterThan(Short value) { this.NumberOfCopiesGreaterThan = value; return this; } public Short getNumberOfCopiesLessThan() { return NumberOfCopiesLessThan; } public SO_ReportDefinitionQuery setNumberOfCopiesLessThan(Short value) { this.NumberOfCopiesLessThan = value; return this; } public Short getNumberOfCopiesLessThanOrEqualTo() { return NumberOfCopiesLessThanOrEqualTo; } public SO_ReportDefinitionQuery setNumberOfCopiesLessThanOrEqualTo(Short value) { this.NumberOfCopiesLessThanOrEqualTo = value; return this; } public Short getNumberOfCopiesNotEqualTo() { return NumberOfCopiesNotEqualTo; } public SO_ReportDefinitionQuery setNumberOfCopiesNotEqualTo(Short value) { this.NumberOfCopiesNotEqualTo = value; return this; } public ArrayList getNumberOfCopiesBetween() { return NumberOfCopiesBetween; } public SO_ReportDefinitionQuery setNumberOfCopiesBetween(ArrayList value) { this.NumberOfCopiesBetween = value; return this; } public ArrayList getNumberOfCopiesIn() { return NumberOfCopiesIn; } public SO_ReportDefinitionQuery setNumberOfCopiesIn(ArrayList value) { this.NumberOfCopiesIn = value; return this; } public Boolean isUseRange() { return UseRange; } public SO_ReportDefinitionQuery setUseRange(Boolean value) { this.UseRange = value; return this; } public Short getRangeType() { return RangeType; } public SO_ReportDefinitionQuery setRangeType(Short value) { this.RangeType = value; return this; } public Short getRangeTypeGreaterThanOrEqualTo() { return RangeTypeGreaterThanOrEqualTo; } public SO_ReportDefinitionQuery setRangeTypeGreaterThanOrEqualTo(Short value) { this.RangeTypeGreaterThanOrEqualTo = value; return this; } public Short getRangeTypeGreaterThan() { return RangeTypeGreaterThan; } public SO_ReportDefinitionQuery setRangeTypeGreaterThan(Short value) { this.RangeTypeGreaterThan = value; return this; } public Short getRangeTypeLessThan() { return RangeTypeLessThan; } public SO_ReportDefinitionQuery setRangeTypeLessThan(Short value) { this.RangeTypeLessThan = value; return this; } public Short getRangeTypeLessThanOrEqualTo() { return RangeTypeLessThanOrEqualTo; } public SO_ReportDefinitionQuery setRangeTypeLessThanOrEqualTo(Short value) { this.RangeTypeLessThanOrEqualTo = value; return this; } public Short getRangeTypeNotEqualTo() { return RangeTypeNotEqualTo; } public SO_ReportDefinitionQuery setRangeTypeNotEqualTo(Short value) { this.RangeTypeNotEqualTo = value; return this; } public ArrayList getRangeTypeBetween() { return RangeTypeBetween; } public SO_ReportDefinitionQuery setRangeTypeBetween(ArrayList value) { this.RangeTypeBetween = value; return this; } public ArrayList getRangeTypeIn() { return RangeTypeIn; } public SO_ReportDefinitionQuery setRangeTypeIn(ArrayList value) { this.RangeTypeIn = value; return this; } public BigDecimal getMinRange() { return MinRange; } public SO_ReportDefinitionQuery setMinRange(BigDecimal value) { this.MinRange = value; return this; } public BigDecimal getMinRangeGreaterThanOrEqualTo() { return MinRangeGreaterThanOrEqualTo; } public SO_ReportDefinitionQuery setMinRangeGreaterThanOrEqualTo(BigDecimal value) { this.MinRangeGreaterThanOrEqualTo = value; return this; } public BigDecimal getMinRangeGreaterThan() { return MinRangeGreaterThan; } public SO_ReportDefinitionQuery setMinRangeGreaterThan(BigDecimal value) { this.MinRangeGreaterThan = value; return this; } public BigDecimal getMinRangeLessThan() { return MinRangeLessThan; } public SO_ReportDefinitionQuery setMinRangeLessThan(BigDecimal value) { this.MinRangeLessThan = value; return this; } public BigDecimal getMinRangeLessThanOrEqualTo() { return MinRangeLessThanOrEqualTo; } public SO_ReportDefinitionQuery setMinRangeLessThanOrEqualTo(BigDecimal value) { this.MinRangeLessThanOrEqualTo = value; return this; } public BigDecimal getMinRangeNotEqualTo() { return MinRangeNotEqualTo; } public SO_ReportDefinitionQuery setMinRangeNotEqualTo(BigDecimal value) { this.MinRangeNotEqualTo = value; return this; } public ArrayList getMinRangeBetween() { return MinRangeBetween; } public SO_ReportDefinitionQuery setMinRangeBetween(ArrayList value) { this.MinRangeBetween = value; return this; } public ArrayList getMinRangeIn() { return MinRangeIn; } public SO_ReportDefinitionQuery setMinRangeIn(ArrayList value) { this.MinRangeIn = value; return this; } public BigDecimal getMaxRange() { return MaxRange; } public SO_ReportDefinitionQuery setMaxRange(BigDecimal value) { this.MaxRange = value; return this; } public BigDecimal getMaxRangeGreaterThanOrEqualTo() { return MaxRangeGreaterThanOrEqualTo; } public SO_ReportDefinitionQuery setMaxRangeGreaterThanOrEqualTo(BigDecimal value) { this.MaxRangeGreaterThanOrEqualTo = value; return this; } public BigDecimal getMaxRangeGreaterThan() { return MaxRangeGreaterThan; } public SO_ReportDefinitionQuery setMaxRangeGreaterThan(BigDecimal value) { this.MaxRangeGreaterThan = value; return this; } public BigDecimal getMaxRangeLessThan() { return MaxRangeLessThan; } public SO_ReportDefinitionQuery setMaxRangeLessThan(BigDecimal value) { this.MaxRangeLessThan = value; return this; } public BigDecimal getMaxRangeLessThanOrEqualTo() { return MaxRangeLessThanOrEqualTo; } public SO_ReportDefinitionQuery setMaxRangeLessThanOrEqualTo(BigDecimal value) { this.MaxRangeLessThanOrEqualTo = value; return this; } public BigDecimal getMaxRangeNotEqualTo() { return MaxRangeNotEqualTo; } public SO_ReportDefinitionQuery setMaxRangeNotEqualTo(BigDecimal value) { this.MaxRangeNotEqualTo = value; return this; } public ArrayList getMaxRangeBetween() { return MaxRangeBetween; } public SO_ReportDefinitionQuery setMaxRangeBetween(ArrayList value) { this.MaxRangeBetween = value; return this; } public ArrayList getMaxRangeIn() { return MaxRangeIn; } public SO_ReportDefinitionQuery setMaxRangeIn(ArrayList value) { this.MaxRangeIn = value; return this; } public Short getBackOrderStatus() { return BackOrderStatus; } public SO_ReportDefinitionQuery setBackOrderStatus(Short value) { this.BackOrderStatus = value; return this; } public Short getBackOrderStatusGreaterThanOrEqualTo() { return BackOrderStatusGreaterThanOrEqualTo; } public SO_ReportDefinitionQuery setBackOrderStatusGreaterThanOrEqualTo(Short value) { this.BackOrderStatusGreaterThanOrEqualTo = value; return this; } public Short getBackOrderStatusGreaterThan() { return BackOrderStatusGreaterThan; } public SO_ReportDefinitionQuery setBackOrderStatusGreaterThan(Short value) { this.BackOrderStatusGreaterThan = value; return this; } public Short getBackOrderStatusLessThan() { return BackOrderStatusLessThan; } public SO_ReportDefinitionQuery setBackOrderStatusLessThan(Short value) { this.BackOrderStatusLessThan = value; return this; } public Short getBackOrderStatusLessThanOrEqualTo() { return BackOrderStatusLessThanOrEqualTo; } public SO_ReportDefinitionQuery setBackOrderStatusLessThanOrEqualTo(Short value) { this.BackOrderStatusLessThanOrEqualTo = value; return this; } public Short getBackOrderStatusNotEqualTo() { return BackOrderStatusNotEqualTo; } public SO_ReportDefinitionQuery setBackOrderStatusNotEqualTo(Short value) { this.BackOrderStatusNotEqualTo = value; return this; } public ArrayList getBackOrderStatusBetween() { return BackOrderStatusBetween; } public SO_ReportDefinitionQuery setBackOrderStatusBetween(ArrayList value) { this.BackOrderStatusBetween = value; return this; } public ArrayList getBackOrderStatusIn() { return BackOrderStatusIn; } public SO_ReportDefinitionQuery setBackOrderStatusIn(ArrayList value) { this.BackOrderStatusIn = value; return this; } public String getSyReportRecID() { return SY_Report_RecID; } public SO_ReportDefinitionQuery setSyReportRecID(String value) { this.SY_Report_RecID = value; return this; } public String getSyReportRecIDStartsWith() { return SY_Report_RecIDStartsWith; } public SO_ReportDefinitionQuery setSyReportRecIDStartsWith(String value) { this.SY_Report_RecIDStartsWith = value; return this; } public String getSyReportRecIDEndsWith() { return SY_Report_RecIDEndsWith; } public SO_ReportDefinitionQuery setSyReportRecIDEndsWith(String value) { this.SY_Report_RecIDEndsWith = value; return this; } public String getSyReportRecIDContains() { return SY_Report_RecIDContains; } public SO_ReportDefinitionQuery setSyReportRecIDContains(String value) { this.SY_Report_RecIDContains = value; return this; } public String getSyReportRecIDLike() { return SY_Report_RecIDLike; } public SO_ReportDefinitionQuery setSyReportRecIDLike(String value) { this.SY_Report_RecIDLike = value; return this; } public ArrayList getSyReportRecIDBetween() { return SY_Report_RecIDBetween; } public SO_ReportDefinitionQuery setSyReportRecIDBetween(ArrayList value) { this.SY_Report_RecIDBetween = value; return this; } public ArrayList getSyReportRecIDIn() { return SY_Report_RecIDIn; } public SO_ReportDefinitionQuery setSyReportRecIDIn(ArrayList value) { this.SY_Report_RecIDIn = value; return this; } public String getSyPrintGroupLogicalPrinterRecID() { return SY_PrintGroupLogicalPrinter_RecID; } public SO_ReportDefinitionQuery setSyPrintGroupLogicalPrinterRecID(String value) { this.SY_PrintGroupLogicalPrinter_RecID = value; return this; } public String getSyPrintGroupLogicalPrinterRecIDStartsWith() { return SY_PrintGroupLogicalPrinter_RecIDStartsWith; } public SO_ReportDefinitionQuery setSyPrintGroupLogicalPrinterRecIDStartsWith(String value) { this.SY_PrintGroupLogicalPrinter_RecIDStartsWith = value; return this; } public String getSyPrintGroupLogicalPrinterRecIDEndsWith() { return SY_PrintGroupLogicalPrinter_RecIDEndsWith; } public SO_ReportDefinitionQuery setSyPrintGroupLogicalPrinterRecIDEndsWith(String value) { this.SY_PrintGroupLogicalPrinter_RecIDEndsWith = value; return this; } public String getSyPrintGroupLogicalPrinterRecIDContains() { return SY_PrintGroupLogicalPrinter_RecIDContains; } public SO_ReportDefinitionQuery setSyPrintGroupLogicalPrinterRecIDContains(String value) { this.SY_PrintGroupLogicalPrinter_RecIDContains = value; return this; } public String getSyPrintGroupLogicalPrinterRecIDLike() { return SY_PrintGroupLogicalPrinter_RecIDLike; } public SO_ReportDefinitionQuery setSyPrintGroupLogicalPrinterRecIDLike(String value) { this.SY_PrintGroupLogicalPrinter_RecIDLike = value; return this; } public ArrayList getSyPrintGroupLogicalPrinterRecIDBetween() { return SY_PrintGroupLogicalPrinter_RecIDBetween; } public SO_ReportDefinitionQuery setSyPrintGroupLogicalPrinterRecIDBetween(ArrayList value) { this.SY_PrintGroupLogicalPrinter_RecIDBetween = value; return this; } public ArrayList getSyPrintGroupLogicalPrinterRecIDIn() { return SY_PrintGroupLogicalPrinter_RecIDIn; } public SO_ReportDefinitionQuery setSyPrintGroupLogicalPrinterRecIDIn(ArrayList value) { this.SY_PrintGroupLogicalPrinter_RecIDIn = value; return this; } public Integer getItemNo() { return ItemNo; } public SO_ReportDefinitionQuery setItemNo(Integer value) { this.ItemNo = value; return this; } public Integer getItemNoGreaterThanOrEqualTo() { return ItemNoGreaterThanOrEqualTo; } public SO_ReportDefinitionQuery setItemNoGreaterThanOrEqualTo(Integer value) { this.ItemNoGreaterThanOrEqualTo = value; return this; } public Integer getItemNoGreaterThan() { return ItemNoGreaterThan; } public SO_ReportDefinitionQuery setItemNoGreaterThan(Integer value) { this.ItemNoGreaterThan = value; return this; } public Integer getItemNoLessThan() { return ItemNoLessThan; } public SO_ReportDefinitionQuery setItemNoLessThan(Integer value) { this.ItemNoLessThan = value; return this; } public Integer getItemNoLessThanOrEqualTo() { return ItemNoLessThanOrEqualTo; } public SO_ReportDefinitionQuery setItemNoLessThanOrEqualTo(Integer value) { this.ItemNoLessThanOrEqualTo = value; return this; } public Integer getItemNoNotEqualTo() { return ItemNoNotEqualTo; } public SO_ReportDefinitionQuery setItemNoNotEqualTo(Integer value) { this.ItemNoNotEqualTo = value; return this; } public ArrayList getItemNoBetween() { return ItemNoBetween; } public SO_ReportDefinitionQuery setItemNoBetween(ArrayList value) { this.ItemNoBetween = value; return this; } public ArrayList getItemNoIn() { return ItemNoIn; } public SO_ReportDefinitionQuery setItemNoIn(ArrayList value) { this.ItemNoIn = value; return this; } public ArrayList getRowHash() { return RowHash; } public SO_ReportDefinitionQuery setRowHash(ArrayList value) { this.RowHash = value; return this; } public String getSyPrintGroupRecID() { return SY_PrintGroup_RecID; } public SO_ReportDefinitionQuery setSyPrintGroupRecID(String value) { this.SY_PrintGroup_RecID = value; return this; } public String getSyPrintGroupRecIDStartsWith() { return SY_PrintGroup_RecIDStartsWith; } public SO_ReportDefinitionQuery setSyPrintGroupRecIDStartsWith(String value) { this.SY_PrintGroup_RecIDStartsWith = value; return this; } public String getSyPrintGroupRecIDEndsWith() { return SY_PrintGroup_RecIDEndsWith; } public SO_ReportDefinitionQuery setSyPrintGroupRecIDEndsWith(String value) { this.SY_PrintGroup_RecIDEndsWith = value; return this; } public String getSyPrintGroupRecIDContains() { return SY_PrintGroup_RecIDContains; } public SO_ReportDefinitionQuery setSyPrintGroupRecIDContains(String value) { this.SY_PrintGroup_RecIDContains = value; return this; } public String getSyPrintGroupRecIDLike() { return SY_PrintGroup_RecIDLike; } public SO_ReportDefinitionQuery setSyPrintGroupRecIDLike(String value) { this.SY_PrintGroup_RecIDLike = value; return this; } public ArrayList getSyPrintGroupRecIDBetween() { return SY_PrintGroup_RecIDBetween; } public SO_ReportDefinitionQuery setSyPrintGroupRecIDBetween(ArrayList value) { this.SY_PrintGroup_RecIDBetween = value; return this; } public ArrayList getSyPrintGroupRecIDIn() { return SY_PrintGroup_RecIDIn; } public SO_ReportDefinitionQuery setSyPrintGroupRecIDIn(ArrayList value) { this.SY_PrintGroup_RecIDIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class SO_RunQuery extends QueryDb implements IReturn> { public String RunID = null; public String RunIDStartsWith = null; public String RunIDEndsWith = null; public String RunIDContains = null; public String RunIDLike = null; public ArrayList RunIDBetween = null; public ArrayList RunIDIn = null; public Date LastSavedDateTime = null; public Date LastSavedDateTimeGreaterThanOrEqualTo = null; public Date LastSavedDateTimeGreaterThan = null; public Date LastSavedDateTimeLessThan = null; public Date LastSavedDateTimeLessThanOrEqualTo = null; public Date LastSavedDateTimeNotEqualTo = null; public ArrayList LastSavedDateTimeBetween = null; public ArrayList LastSavedDateTimeIn = null; public String RunBy = null; public String RunByStartsWith = null; public String RunByEndsWith = null; public String RunByContains = null; public String RunByLike = null; public ArrayList RunByBetween = null; public ArrayList RunByIn = null; public String RunNo = null; public String RunNoStartsWith = null; public String RunNoEndsWith = null; public String RunNoContains = null; public String RunNoLike = null; public ArrayList RunNoBetween = null; public ArrayList RunNoIn = null; public String getRunID() { return RunID; } public SO_RunQuery setRunID(String value) { this.RunID = value; return this; } public String getRunIDStartsWith() { return RunIDStartsWith; } public SO_RunQuery setRunIDStartsWith(String value) { this.RunIDStartsWith = value; return this; } public String getRunIDEndsWith() { return RunIDEndsWith; } public SO_RunQuery setRunIDEndsWith(String value) { this.RunIDEndsWith = value; return this; } public String getRunIDContains() { return RunIDContains; } public SO_RunQuery setRunIDContains(String value) { this.RunIDContains = value; return this; } public String getRunIDLike() { return RunIDLike; } public SO_RunQuery setRunIDLike(String value) { this.RunIDLike = value; return this; } public ArrayList getRunIDBetween() { return RunIDBetween; } public SO_RunQuery setRunIDBetween(ArrayList value) { this.RunIDBetween = value; return this; } public ArrayList getRunIDIn() { return RunIDIn; } public SO_RunQuery setRunIDIn(ArrayList value) { this.RunIDIn = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public SO_RunQuery setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getLastSavedDateTimeGreaterThanOrEqualTo() { return LastSavedDateTimeGreaterThanOrEqualTo; } public SO_RunQuery setLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.LastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeGreaterThan() { return LastSavedDateTimeGreaterThan; } public SO_RunQuery setLastSavedDateTimeGreaterThan(Date value) { this.LastSavedDateTimeGreaterThan = value; return this; } public Date getLastSavedDateTimeLessThan() { return LastSavedDateTimeLessThan; } public SO_RunQuery setLastSavedDateTimeLessThan(Date value) { this.LastSavedDateTimeLessThan = value; return this; } public Date getLastSavedDateTimeLessThanOrEqualTo() { return LastSavedDateTimeLessThanOrEqualTo; } public SO_RunQuery setLastSavedDateTimeLessThanOrEqualTo(Date value) { this.LastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeNotEqualTo() { return LastSavedDateTimeNotEqualTo; } public SO_RunQuery setLastSavedDateTimeNotEqualTo(Date value) { this.LastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getLastSavedDateTimeBetween() { return LastSavedDateTimeBetween; } public SO_RunQuery setLastSavedDateTimeBetween(ArrayList value) { this.LastSavedDateTimeBetween = value; return this; } public ArrayList getLastSavedDateTimeIn() { return LastSavedDateTimeIn; } public SO_RunQuery setLastSavedDateTimeIn(ArrayList value) { this.LastSavedDateTimeIn = value; return this; } public String getRunBy() { return RunBy; } public SO_RunQuery setRunBy(String value) { this.RunBy = value; return this; } public String getRunByStartsWith() { return RunByStartsWith; } public SO_RunQuery setRunByStartsWith(String value) { this.RunByStartsWith = value; return this; } public String getRunByEndsWith() { return RunByEndsWith; } public SO_RunQuery setRunByEndsWith(String value) { this.RunByEndsWith = value; return this; } public String getRunByContains() { return RunByContains; } public SO_RunQuery setRunByContains(String value) { this.RunByContains = value; return this; } public String getRunByLike() { return RunByLike; } public SO_RunQuery setRunByLike(String value) { this.RunByLike = value; return this; } public ArrayList getRunByBetween() { return RunByBetween; } public SO_RunQuery setRunByBetween(ArrayList value) { this.RunByBetween = value; return this; } public ArrayList getRunByIn() { return RunByIn; } public SO_RunQuery setRunByIn(ArrayList value) { this.RunByIn = value; return this; } public String getRunNo() { return RunNo; } public SO_RunQuery setRunNo(String value) { this.RunNo = value; return this; } public String getRunNoStartsWith() { return RunNoStartsWith; } public SO_RunQuery setRunNoStartsWith(String value) { this.RunNoStartsWith = value; return this; } public String getRunNoEndsWith() { return RunNoEndsWith; } public SO_RunQuery setRunNoEndsWith(String value) { this.RunNoEndsWith = value; return this; } public String getRunNoContains() { return RunNoContains; } public SO_RunQuery setRunNoContains(String value) { this.RunNoContains = value; return this; } public String getRunNoLike() { return RunNoLike; } public SO_RunQuery setRunNoLike(String value) { this.RunNoLike = value; return this; } public ArrayList getRunNoBetween() { return RunNoBetween; } public SO_RunQuery setRunNoBetween(ArrayList value) { this.RunNoBetween = value; return this; } public ArrayList getRunNoIn() { return RunNoIn; } public SO_RunQuery setRunNoIn(ArrayList value) { this.RunNoIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class SO_SalesQuery extends QueryDb implements IReturn> { public String SalesID = null; public String SalesIDStartsWith = null; public String SalesIDEndsWith = null; public String SalesIDContains = null; public String SalesIDLike = null; public ArrayList SalesIDBetween = null; public ArrayList SalesIDIn = null; public Date DateRun = null; public Date DateRunGreaterThanOrEqualTo = null; public Date DateRunGreaterThan = null; public Date DateRunLessThan = null; public Date DateRunLessThanOrEqualTo = null; public Date DateRunNotEqualTo = null; public ArrayList DateRunBetween = null; public ArrayList DateRunIn = null; public Date InvoiceDate = null; public Date InvoiceDateGreaterThanOrEqualTo = null; public Date InvoiceDateGreaterThan = null; public Date InvoiceDateLessThan = null; public Date InvoiceDateLessThanOrEqualTo = null; public Date InvoiceDateNotEqualTo = null; public ArrayList InvoiceDateBetween = null; public ArrayList InvoiceDateIn = null; public String DebtorID = null; public String DebtorIDStartsWith = null; public String DebtorIDEndsWith = null; public String DebtorIDContains = null; public String DebtorIDLike = null; public ArrayList DebtorIDBetween = null; public ArrayList DebtorIDIn = null; public String InvoiceNo = null; public String InvoiceNoStartsWith = null; public String InvoiceNoEndsWith = null; public String InvoiceNoContains = null; public String InvoiceNoLike = null; public ArrayList InvoiceNoBetween = null; public ArrayList InvoiceNoIn = null; public String PartNo = null; public String PartNoStartsWith = null; public String PartNoEndsWith = null; public String PartNoContains = null; public String PartNoLike = null; public ArrayList PartNoBetween = null; public ArrayList PartNoIn = null; public String Description = null; public String DescriptionStartsWith = null; public String DescriptionEndsWith = null; public String DescriptionContains = null; public String DescriptionLike = null; public ArrayList DescriptionBetween = null; public ArrayList DescriptionIn = null; public String ClassDescription = null; public String ClassDescriptionStartsWith = null; public String ClassDescriptionEndsWith = null; public String ClassDescriptionContains = null; public String ClassDescriptionLike = null; public ArrayList ClassDescriptionBetween = null; public ArrayList ClassDescriptionIn = null; public String Cat1Description = null; public String Cat1DescriptionStartsWith = null; public String Cat1DescriptionEndsWith = null; public String Cat1DescriptionContains = null; public String Cat1DescriptionLike = null; public ArrayList Cat1DescriptionBetween = null; public ArrayList Cat1DescriptionIn = null; public String Cat2Description = null; public String Cat2DescriptionStartsWith = null; public String Cat2DescriptionEndsWith = null; public String Cat2DescriptionContains = null; public String Cat2DescriptionLike = null; public ArrayList Cat2DescriptionBetween = null; public ArrayList Cat2DescriptionIn = null; public String Cat3Description = null; public String Cat3DescriptionStartsWith = null; public String Cat3DescriptionEndsWith = null; public String Cat3DescriptionContains = null; public String Cat3DescriptionLike = null; public ArrayList Cat3DescriptionBetween = null; public ArrayList Cat3DescriptionIn = null; public BigDecimal Quantity = null; public BigDecimal QuantityGreaterThanOrEqualTo = null; public BigDecimal QuantityGreaterThan = null; public BigDecimal QuantityLessThan = null; public BigDecimal QuantityLessThanOrEqualTo = null; public BigDecimal QuantityNotEqualTo = null; public ArrayList QuantityBetween = null; public ArrayList QuantityIn = null; public BigDecimal UnitCost = null; public BigDecimal UnitCostGreaterThanOrEqualTo = null; public BigDecimal UnitCostGreaterThan = null; public BigDecimal UnitCostLessThan = null; public BigDecimal UnitCostLessThanOrEqualTo = null; public BigDecimal UnitCostNotEqualTo = null; public ArrayList UnitCostBetween = null; public ArrayList UnitCostIn = null; public BigDecimal UnitSellPrice = null; public BigDecimal UnitSellPriceGreaterThanOrEqualTo = null; public BigDecimal UnitSellPriceGreaterThan = null; public BigDecimal UnitSellPriceLessThan = null; public BigDecimal UnitSellPriceLessThanOrEqualTo = null; public BigDecimal UnitSellPriceNotEqualTo = null; public ArrayList UnitSellPriceBetween = null; public ArrayList UnitSellPriceIn = null; public BigDecimal LineTax = null; public BigDecimal LineTaxGreaterThanOrEqualTo = null; public BigDecimal LineTaxGreaterThan = null; public BigDecimal LineTaxLessThan = null; public BigDecimal LineTaxLessThanOrEqualTo = null; public BigDecimal LineTaxNotEqualTo = null; public ArrayList LineTaxBetween = null; public ArrayList LineTaxIn = null; public BigDecimal LineTotal = null; public BigDecimal LineTotalGreaterThanOrEqualTo = null; public BigDecimal LineTotalGreaterThan = null; public BigDecimal LineTotalLessThan = null; public BigDecimal LineTotalLessThanOrEqualTo = null; public BigDecimal LineTotalNotEqualTo = null; public ArrayList LineTotalBetween = null; public ArrayList LineTotalIn = null; public String RunNo = null; public String RunNoStartsWith = null; public String RunNoEndsWith = null; public String RunNoContains = null; public String RunNoLike = null; public ArrayList RunNoBetween = null; public ArrayList RunNoIn = null; public Short HistoryNo = null; public Short HistoryNoGreaterThanOrEqualTo = null; public Short HistoryNoGreaterThan = null; public Short HistoryNoLessThan = null; public Short HistoryNoLessThanOrEqualTo = null; public Short HistoryNoNotEqualTo = null; public ArrayList HistoryNoBetween = null; public ArrayList HistoryNoIn = null; public String InvoiceID = null; public String InvoiceIDStartsWith = null; public String InvoiceIDEndsWith = null; public String InvoiceIDContains = null; public String InvoiceIDLike = null; public ArrayList InvoiceIDBetween = null; public ArrayList InvoiceIDIn = null; public String InventoryID = null; public String InventoryIDStartsWith = null; public String InventoryIDEndsWith = null; public String InventoryIDContains = null; public String InventoryIDLike = null; public ArrayList InventoryIDBetween = null; public ArrayList InventoryIDIn = null; public Integer YearNo = null; public Integer YearNoGreaterThanOrEqualTo = null; public Integer YearNoGreaterThan = null; public Integer YearNoLessThan = null; public Integer YearNoLessThanOrEqualTo = null; public Integer YearNoNotEqualTo = null; public ArrayList YearNoBetween = null; public ArrayList YearNoIn = null; public Integer MonthNo = null; public Integer MonthNoGreaterThanOrEqualTo = null; public Integer MonthNoGreaterThan = null; public Integer MonthNoLessThan = null; public Integer MonthNoLessThanOrEqualTo = null; public Integer MonthNoNotEqualTo = null; public ArrayList MonthNoBetween = null; public ArrayList MonthNoIn = null; public String IN_LogicalID = null; public String IN_LogicalIDStartsWith = null; public String IN_LogicalIDEndsWith = null; public String IN_LogicalIDContains = null; public String IN_LogicalIDLike = null; public ArrayList IN_LogicalIDBetween = null; public ArrayList IN_LogicalIDIn = null; public String Cat4Description = null; public String Cat4DescriptionStartsWith = null; public String Cat4DescriptionEndsWith = null; public String Cat4DescriptionContains = null; public String Cat4DescriptionLike = null; public ArrayList Cat4DescriptionBetween = null; public ArrayList Cat4DescriptionIn = null; public String Cat5Description = null; public String Cat5DescriptionStartsWith = null; public String Cat5DescriptionEndsWith = null; public String Cat5DescriptionContains = null; public String Cat5DescriptionLike = null; public ArrayList Cat5DescriptionBetween = null; public ArrayList Cat5DescriptionIn = null; public Short KitStyle = null; public Short KitStyleGreaterThanOrEqualTo = null; public Short KitStyleGreaterThan = null; public Short KitStyleLessThan = null; public Short KitStyleLessThanOrEqualTo = null; public Short KitStyleNotEqualTo = null; public ArrayList KitStyleBetween = null; public ArrayList KitStyleIn = null; public Short KitStatus = null; public Short KitStatusGreaterThanOrEqualTo = null; public Short KitStatusGreaterThan = null; public Short KitStatusLessThan = null; public Short KitStatusLessThanOrEqualTo = null; public Short KitStatusNotEqualTo = null; public ArrayList KitStatusBetween = null; public ArrayList KitStatusIn = null; public String SO_LinesID = null; public String SO_LinesIDStartsWith = null; public String SO_LinesIDEndsWith = null; public String SO_LinesIDContains = null; public String SO_LinesIDLike = null; public ArrayList SO_LinesIDBetween = null; public ArrayList SO_LinesIDIn = null; public BigDecimal LineCost = null; public BigDecimal LineCostGreaterThanOrEqualTo = null; public BigDecimal LineCostGreaterThan = null; public BigDecimal LineCostLessThan = null; public BigDecimal LineCostLessThanOrEqualTo = null; public BigDecimal LineCostNotEqualTo = null; public ArrayList LineCostBetween = null; public ArrayList LineCostIn = null; public String DebtorAccountNo = null; public String DebtorAccountNoStartsWith = null; public String DebtorAccountNoEndsWith = null; public String DebtorAccountNoContains = null; public String DebtorAccountNoLike = null; public ArrayList DebtorAccountNoBetween = null; public ArrayList DebtorAccountNoIn = null; public String DebtorName = null; public String DebtorNameStartsWith = null; public String DebtorNameEndsWith = null; public String DebtorNameContains = null; public String DebtorNameLike = null; public ArrayList DebtorNameBetween = null; public ArrayList DebtorNameIn = null; public String DebtorClassification = null; public String DebtorClassificationStartsWith = null; public String DebtorClassificationEndsWith = null; public String DebtorClassificationContains = null; public String DebtorClassificationLike = null; public ArrayList DebtorClassificationBetween = null; public ArrayList DebtorClassificationIn = null; public String PhysicalWarehouse = null; public String PhysicalWarehouseStartsWith = null; public String PhysicalWarehouseEndsWith = null; public String PhysicalWarehouseContains = null; public String PhysicalWarehouseLike = null; public ArrayList PhysicalWarehouseBetween = null; public ArrayList PhysicalWarehouseIn = null; public String LogicalWarehouse = null; public String LogicalWarehouseStartsWith = null; public String LogicalWarehouseEndsWith = null; public String LogicalWarehouseContains = null; public String LogicalWarehouseLike = null; public ArrayList LogicalWarehouseBetween = null; public ArrayList LogicalWarehouseIn = null; public BigDecimal GPDollars = null; public BigDecimal GPDollarsGreaterThanOrEqualTo = null; public BigDecimal GPDollarsGreaterThan = null; public BigDecimal GPDollarsLessThan = null; public BigDecimal GPDollarsLessThanOrEqualTo = null; public BigDecimal GPDollarsNotEqualTo = null; public ArrayList GPDollarsBetween = null; public ArrayList GPDollarsIn = null; public BigDecimal GPPercent = null; public BigDecimal GPPercentGreaterThanOrEqualTo = null; public BigDecimal GPPercentGreaterThan = null; public BigDecimal GPPercentLessThan = null; public BigDecimal GPPercentLessThanOrEqualTo = null; public BigDecimal GPPercentNotEqualTo = null; public ArrayList GPPercentBetween = null; public ArrayList GPPercentIn = null; public String getSalesID() { return SalesID; } public SO_SalesQuery setSalesID(String value) { this.SalesID = value; return this; } public String getSalesIDStartsWith() { return SalesIDStartsWith; } public SO_SalesQuery setSalesIDStartsWith(String value) { this.SalesIDStartsWith = value; return this; } public String getSalesIDEndsWith() { return SalesIDEndsWith; } public SO_SalesQuery setSalesIDEndsWith(String value) { this.SalesIDEndsWith = value; return this; } public String getSalesIDContains() { return SalesIDContains; } public SO_SalesQuery setSalesIDContains(String value) { this.SalesIDContains = value; return this; } public String getSalesIDLike() { return SalesIDLike; } public SO_SalesQuery setSalesIDLike(String value) { this.SalesIDLike = value; return this; } public ArrayList getSalesIDBetween() { return SalesIDBetween; } public SO_SalesQuery setSalesIDBetween(ArrayList value) { this.SalesIDBetween = value; return this; } public ArrayList getSalesIDIn() { return SalesIDIn; } public SO_SalesQuery setSalesIDIn(ArrayList value) { this.SalesIDIn = value; return this; } public Date getDateRun() { return DateRun; } public SO_SalesQuery setDateRun(Date value) { this.DateRun = value; return this; } public Date getDateRunGreaterThanOrEqualTo() { return DateRunGreaterThanOrEqualTo; } public SO_SalesQuery setDateRunGreaterThanOrEqualTo(Date value) { this.DateRunGreaterThanOrEqualTo = value; return this; } public Date getDateRunGreaterThan() { return DateRunGreaterThan; } public SO_SalesQuery setDateRunGreaterThan(Date value) { this.DateRunGreaterThan = value; return this; } public Date getDateRunLessThan() { return DateRunLessThan; } public SO_SalesQuery setDateRunLessThan(Date value) { this.DateRunLessThan = value; return this; } public Date getDateRunLessThanOrEqualTo() { return DateRunLessThanOrEqualTo; } public SO_SalesQuery setDateRunLessThanOrEqualTo(Date value) { this.DateRunLessThanOrEqualTo = value; return this; } public Date getDateRunNotEqualTo() { return DateRunNotEqualTo; } public SO_SalesQuery setDateRunNotEqualTo(Date value) { this.DateRunNotEqualTo = value; return this; } public ArrayList getDateRunBetween() { return DateRunBetween; } public SO_SalesQuery setDateRunBetween(ArrayList value) { this.DateRunBetween = value; return this; } public ArrayList getDateRunIn() { return DateRunIn; } public SO_SalesQuery setDateRunIn(ArrayList value) { this.DateRunIn = value; return this; } public Date getInvoiceDate() { return InvoiceDate; } public SO_SalesQuery setInvoiceDate(Date value) { this.InvoiceDate = value; return this; } public Date getInvoiceDateGreaterThanOrEqualTo() { return InvoiceDateGreaterThanOrEqualTo; } public SO_SalesQuery setInvoiceDateGreaterThanOrEqualTo(Date value) { this.InvoiceDateGreaterThanOrEqualTo = value; return this; } public Date getInvoiceDateGreaterThan() { return InvoiceDateGreaterThan; } public SO_SalesQuery setInvoiceDateGreaterThan(Date value) { this.InvoiceDateGreaterThan = value; return this; } public Date getInvoiceDateLessThan() { return InvoiceDateLessThan; } public SO_SalesQuery setInvoiceDateLessThan(Date value) { this.InvoiceDateLessThan = value; return this; } public Date getInvoiceDateLessThanOrEqualTo() { return InvoiceDateLessThanOrEqualTo; } public SO_SalesQuery setInvoiceDateLessThanOrEqualTo(Date value) { this.InvoiceDateLessThanOrEqualTo = value; return this; } public Date getInvoiceDateNotEqualTo() { return InvoiceDateNotEqualTo; } public SO_SalesQuery setInvoiceDateNotEqualTo(Date value) { this.InvoiceDateNotEqualTo = value; return this; } public ArrayList getInvoiceDateBetween() { return InvoiceDateBetween; } public SO_SalesQuery setInvoiceDateBetween(ArrayList value) { this.InvoiceDateBetween = value; return this; } public ArrayList getInvoiceDateIn() { return InvoiceDateIn; } public SO_SalesQuery setInvoiceDateIn(ArrayList value) { this.InvoiceDateIn = value; return this; } public String getDebtorID() { return DebtorID; } public SO_SalesQuery setDebtorID(String value) { this.DebtorID = value; return this; } public String getDebtorIDStartsWith() { return DebtorIDStartsWith; } public SO_SalesQuery setDebtorIDStartsWith(String value) { this.DebtorIDStartsWith = value; return this; } public String getDebtorIDEndsWith() { return DebtorIDEndsWith; } public SO_SalesQuery setDebtorIDEndsWith(String value) { this.DebtorIDEndsWith = value; return this; } public String getDebtorIDContains() { return DebtorIDContains; } public SO_SalesQuery setDebtorIDContains(String value) { this.DebtorIDContains = value; return this; } public String getDebtorIDLike() { return DebtorIDLike; } public SO_SalesQuery setDebtorIDLike(String value) { this.DebtorIDLike = value; return this; } public ArrayList getDebtorIDBetween() { return DebtorIDBetween; } public SO_SalesQuery setDebtorIDBetween(ArrayList value) { this.DebtorIDBetween = value; return this; } public ArrayList getDebtorIDIn() { return DebtorIDIn; } public SO_SalesQuery setDebtorIDIn(ArrayList value) { this.DebtorIDIn = value; return this; } public String getInvoiceNo() { return InvoiceNo; } public SO_SalesQuery setInvoiceNo(String value) { this.InvoiceNo = value; return this; } public String getInvoiceNoStartsWith() { return InvoiceNoStartsWith; } public SO_SalesQuery setInvoiceNoStartsWith(String value) { this.InvoiceNoStartsWith = value; return this; } public String getInvoiceNoEndsWith() { return InvoiceNoEndsWith; } public SO_SalesQuery setInvoiceNoEndsWith(String value) { this.InvoiceNoEndsWith = value; return this; } public String getInvoiceNoContains() { return InvoiceNoContains; } public SO_SalesQuery setInvoiceNoContains(String value) { this.InvoiceNoContains = value; return this; } public String getInvoiceNoLike() { return InvoiceNoLike; } public SO_SalesQuery setInvoiceNoLike(String value) { this.InvoiceNoLike = value; return this; } public ArrayList getInvoiceNoBetween() { return InvoiceNoBetween; } public SO_SalesQuery setInvoiceNoBetween(ArrayList value) { this.InvoiceNoBetween = value; return this; } public ArrayList getInvoiceNoIn() { return InvoiceNoIn; } public SO_SalesQuery setInvoiceNoIn(ArrayList value) { this.InvoiceNoIn = value; return this; } public String getPartNo() { return PartNo; } public SO_SalesQuery setPartNo(String value) { this.PartNo = value; return this; } public String getPartNoStartsWith() { return PartNoStartsWith; } public SO_SalesQuery setPartNoStartsWith(String value) { this.PartNoStartsWith = value; return this; } public String getPartNoEndsWith() { return PartNoEndsWith; } public SO_SalesQuery setPartNoEndsWith(String value) { this.PartNoEndsWith = value; return this; } public String getPartNoContains() { return PartNoContains; } public SO_SalesQuery setPartNoContains(String value) { this.PartNoContains = value; return this; } public String getPartNoLike() { return PartNoLike; } public SO_SalesQuery setPartNoLike(String value) { this.PartNoLike = value; return this; } public ArrayList getPartNoBetween() { return PartNoBetween; } public SO_SalesQuery setPartNoBetween(ArrayList value) { this.PartNoBetween = value; return this; } public ArrayList getPartNoIn() { return PartNoIn; } public SO_SalesQuery setPartNoIn(ArrayList value) { this.PartNoIn = value; return this; } public String getDescription() { return Description; } public SO_SalesQuery setDescription(String value) { this.Description = value; return this; } public String getDescriptionStartsWith() { return DescriptionStartsWith; } public SO_SalesQuery setDescriptionStartsWith(String value) { this.DescriptionStartsWith = value; return this; } public String getDescriptionEndsWith() { return DescriptionEndsWith; } public SO_SalesQuery setDescriptionEndsWith(String value) { this.DescriptionEndsWith = value; return this; } public String getDescriptionContains() { return DescriptionContains; } public SO_SalesQuery setDescriptionContains(String value) { this.DescriptionContains = value; return this; } public String getDescriptionLike() { return DescriptionLike; } public SO_SalesQuery setDescriptionLike(String value) { this.DescriptionLike = value; return this; } public ArrayList getDescriptionBetween() { return DescriptionBetween; } public SO_SalesQuery setDescriptionBetween(ArrayList value) { this.DescriptionBetween = value; return this; } public ArrayList getDescriptionIn() { return DescriptionIn; } public SO_SalesQuery setDescriptionIn(ArrayList value) { this.DescriptionIn = value; return this; } public String getClassDescription() { return ClassDescription; } public SO_SalesQuery setClassDescription(String value) { this.ClassDescription = value; return this; } public String getClassDescriptionStartsWith() { return ClassDescriptionStartsWith; } public SO_SalesQuery setClassDescriptionStartsWith(String value) { this.ClassDescriptionStartsWith = value; return this; } public String getClassDescriptionEndsWith() { return ClassDescriptionEndsWith; } public SO_SalesQuery setClassDescriptionEndsWith(String value) { this.ClassDescriptionEndsWith = value; return this; } public String getClassDescriptionContains() { return ClassDescriptionContains; } public SO_SalesQuery setClassDescriptionContains(String value) { this.ClassDescriptionContains = value; return this; } public String getClassDescriptionLike() { return ClassDescriptionLike; } public SO_SalesQuery setClassDescriptionLike(String value) { this.ClassDescriptionLike = value; return this; } public ArrayList getClassDescriptionBetween() { return ClassDescriptionBetween; } public SO_SalesQuery setClassDescriptionBetween(ArrayList value) { this.ClassDescriptionBetween = value; return this; } public ArrayList getClassDescriptionIn() { return ClassDescriptionIn; } public SO_SalesQuery setClassDescriptionIn(ArrayList value) { this.ClassDescriptionIn = value; return this; } public String getCat1Description() { return Cat1Description; } public SO_SalesQuery setCat1Description(String value) { this.Cat1Description = value; return this; } public String getCat1DescriptionStartsWith() { return Cat1DescriptionStartsWith; } public SO_SalesQuery setCat1DescriptionStartsWith(String value) { this.Cat1DescriptionStartsWith = value; return this; } public String getCat1DescriptionEndsWith() { return Cat1DescriptionEndsWith; } public SO_SalesQuery setCat1DescriptionEndsWith(String value) { this.Cat1DescriptionEndsWith = value; return this; } public String getCat1DescriptionContains() { return Cat1DescriptionContains; } public SO_SalesQuery setCat1DescriptionContains(String value) { this.Cat1DescriptionContains = value; return this; } public String getCat1DescriptionLike() { return Cat1DescriptionLike; } public SO_SalesQuery setCat1DescriptionLike(String value) { this.Cat1DescriptionLike = value; return this; } public ArrayList getCat1DescriptionBetween() { return Cat1DescriptionBetween; } public SO_SalesQuery setCat1DescriptionBetween(ArrayList value) { this.Cat1DescriptionBetween = value; return this; } public ArrayList getCat1DescriptionIn() { return Cat1DescriptionIn; } public SO_SalesQuery setCat1DescriptionIn(ArrayList value) { this.Cat1DescriptionIn = value; return this; } public String getCat2Description() { return Cat2Description; } public SO_SalesQuery setCat2Description(String value) { this.Cat2Description = value; return this; } public String getCat2DescriptionStartsWith() { return Cat2DescriptionStartsWith; } public SO_SalesQuery setCat2DescriptionStartsWith(String value) { this.Cat2DescriptionStartsWith = value; return this; } public String getCat2DescriptionEndsWith() { return Cat2DescriptionEndsWith; } public SO_SalesQuery setCat2DescriptionEndsWith(String value) { this.Cat2DescriptionEndsWith = value; return this; } public String getCat2DescriptionContains() { return Cat2DescriptionContains; } public SO_SalesQuery setCat2DescriptionContains(String value) { this.Cat2DescriptionContains = value; return this; } public String getCat2DescriptionLike() { return Cat2DescriptionLike; } public SO_SalesQuery setCat2DescriptionLike(String value) { this.Cat2DescriptionLike = value; return this; } public ArrayList getCat2DescriptionBetween() { return Cat2DescriptionBetween; } public SO_SalesQuery setCat2DescriptionBetween(ArrayList value) { this.Cat2DescriptionBetween = value; return this; } public ArrayList getCat2DescriptionIn() { return Cat2DescriptionIn; } public SO_SalesQuery setCat2DescriptionIn(ArrayList value) { this.Cat2DescriptionIn = value; return this; } public String getCat3Description() { return Cat3Description; } public SO_SalesQuery setCat3Description(String value) { this.Cat3Description = value; return this; } public String getCat3DescriptionStartsWith() { return Cat3DescriptionStartsWith; } public SO_SalesQuery setCat3DescriptionStartsWith(String value) { this.Cat3DescriptionStartsWith = value; return this; } public String getCat3DescriptionEndsWith() { return Cat3DescriptionEndsWith; } public SO_SalesQuery setCat3DescriptionEndsWith(String value) { this.Cat3DescriptionEndsWith = value; return this; } public String getCat3DescriptionContains() { return Cat3DescriptionContains; } public SO_SalesQuery setCat3DescriptionContains(String value) { this.Cat3DescriptionContains = value; return this; } public String getCat3DescriptionLike() { return Cat3DescriptionLike; } public SO_SalesQuery setCat3DescriptionLike(String value) { this.Cat3DescriptionLike = value; return this; } public ArrayList getCat3DescriptionBetween() { return Cat3DescriptionBetween; } public SO_SalesQuery setCat3DescriptionBetween(ArrayList value) { this.Cat3DescriptionBetween = value; return this; } public ArrayList getCat3DescriptionIn() { return Cat3DescriptionIn; } public SO_SalesQuery setCat3DescriptionIn(ArrayList value) { this.Cat3DescriptionIn = value; return this; } public BigDecimal getQuantity() { return Quantity; } public SO_SalesQuery setQuantity(BigDecimal value) { this.Quantity = value; return this; } public BigDecimal getQuantityGreaterThanOrEqualTo() { return QuantityGreaterThanOrEqualTo; } public SO_SalesQuery setQuantityGreaterThanOrEqualTo(BigDecimal value) { this.QuantityGreaterThanOrEqualTo = value; return this; } public BigDecimal getQuantityGreaterThan() { return QuantityGreaterThan; } public SO_SalesQuery setQuantityGreaterThan(BigDecimal value) { this.QuantityGreaterThan = value; return this; } public BigDecimal getQuantityLessThan() { return QuantityLessThan; } public SO_SalesQuery setQuantityLessThan(BigDecimal value) { this.QuantityLessThan = value; return this; } public BigDecimal getQuantityLessThanOrEqualTo() { return QuantityLessThanOrEqualTo; } public SO_SalesQuery setQuantityLessThanOrEqualTo(BigDecimal value) { this.QuantityLessThanOrEqualTo = value; return this; } public BigDecimal getQuantityNotEqualTo() { return QuantityNotEqualTo; } public SO_SalesQuery setQuantityNotEqualTo(BigDecimal value) { this.QuantityNotEqualTo = value; return this; } public ArrayList getQuantityBetween() { return QuantityBetween; } public SO_SalesQuery setQuantityBetween(ArrayList value) { this.QuantityBetween = value; return this; } public ArrayList getQuantityIn() { return QuantityIn; } public SO_SalesQuery setQuantityIn(ArrayList value) { this.QuantityIn = value; return this; } public BigDecimal getUnitCost() { return UnitCost; } public SO_SalesQuery setUnitCost(BigDecimal value) { this.UnitCost = value; return this; } public BigDecimal getUnitCostGreaterThanOrEqualTo() { return UnitCostGreaterThanOrEqualTo; } public SO_SalesQuery setUnitCostGreaterThanOrEqualTo(BigDecimal value) { this.UnitCostGreaterThanOrEqualTo = value; return this; } public BigDecimal getUnitCostGreaterThan() { return UnitCostGreaterThan; } public SO_SalesQuery setUnitCostGreaterThan(BigDecimal value) { this.UnitCostGreaterThan = value; return this; } public BigDecimal getUnitCostLessThan() { return UnitCostLessThan; } public SO_SalesQuery setUnitCostLessThan(BigDecimal value) { this.UnitCostLessThan = value; return this; } public BigDecimal getUnitCostLessThanOrEqualTo() { return UnitCostLessThanOrEqualTo; } public SO_SalesQuery setUnitCostLessThanOrEqualTo(BigDecimal value) { this.UnitCostLessThanOrEqualTo = value; return this; } public BigDecimal getUnitCostNotEqualTo() { return UnitCostNotEqualTo; } public SO_SalesQuery setUnitCostNotEqualTo(BigDecimal value) { this.UnitCostNotEqualTo = value; return this; } public ArrayList getUnitCostBetween() { return UnitCostBetween; } public SO_SalesQuery setUnitCostBetween(ArrayList value) { this.UnitCostBetween = value; return this; } public ArrayList getUnitCostIn() { return UnitCostIn; } public SO_SalesQuery setUnitCostIn(ArrayList value) { this.UnitCostIn = value; return this; } public BigDecimal getUnitSellPrice() { return UnitSellPrice; } public SO_SalesQuery setUnitSellPrice(BigDecimal value) { this.UnitSellPrice = value; return this; } public BigDecimal getUnitSellPriceGreaterThanOrEqualTo() { return UnitSellPriceGreaterThanOrEqualTo; } public SO_SalesQuery setUnitSellPriceGreaterThanOrEqualTo(BigDecimal value) { this.UnitSellPriceGreaterThanOrEqualTo = value; return this; } public BigDecimal getUnitSellPriceGreaterThan() { return UnitSellPriceGreaterThan; } public SO_SalesQuery setUnitSellPriceGreaterThan(BigDecimal value) { this.UnitSellPriceGreaterThan = value; return this; } public BigDecimal getUnitSellPriceLessThan() { return UnitSellPriceLessThan; } public SO_SalesQuery setUnitSellPriceLessThan(BigDecimal value) { this.UnitSellPriceLessThan = value; return this; } public BigDecimal getUnitSellPriceLessThanOrEqualTo() { return UnitSellPriceLessThanOrEqualTo; } public SO_SalesQuery setUnitSellPriceLessThanOrEqualTo(BigDecimal value) { this.UnitSellPriceLessThanOrEqualTo = value; return this; } public BigDecimal getUnitSellPriceNotEqualTo() { return UnitSellPriceNotEqualTo; } public SO_SalesQuery setUnitSellPriceNotEqualTo(BigDecimal value) { this.UnitSellPriceNotEqualTo = value; return this; } public ArrayList getUnitSellPriceBetween() { return UnitSellPriceBetween; } public SO_SalesQuery setUnitSellPriceBetween(ArrayList value) { this.UnitSellPriceBetween = value; return this; } public ArrayList getUnitSellPriceIn() { return UnitSellPriceIn; } public SO_SalesQuery setUnitSellPriceIn(ArrayList value) { this.UnitSellPriceIn = value; return this; } public BigDecimal getLineTax() { return LineTax; } public SO_SalesQuery setLineTax(BigDecimal value) { this.LineTax = value; return this; } public BigDecimal getLineTaxGreaterThanOrEqualTo() { return LineTaxGreaterThanOrEqualTo; } public SO_SalesQuery setLineTaxGreaterThanOrEqualTo(BigDecimal value) { this.LineTaxGreaterThanOrEqualTo = value; return this; } public BigDecimal getLineTaxGreaterThan() { return LineTaxGreaterThan; } public SO_SalesQuery setLineTaxGreaterThan(BigDecimal value) { this.LineTaxGreaterThan = value; return this; } public BigDecimal getLineTaxLessThan() { return LineTaxLessThan; } public SO_SalesQuery setLineTaxLessThan(BigDecimal value) { this.LineTaxLessThan = value; return this; } public BigDecimal getLineTaxLessThanOrEqualTo() { return LineTaxLessThanOrEqualTo; } public SO_SalesQuery setLineTaxLessThanOrEqualTo(BigDecimal value) { this.LineTaxLessThanOrEqualTo = value; return this; } public BigDecimal getLineTaxNotEqualTo() { return LineTaxNotEqualTo; } public SO_SalesQuery setLineTaxNotEqualTo(BigDecimal value) { this.LineTaxNotEqualTo = value; return this; } public ArrayList getLineTaxBetween() { return LineTaxBetween; } public SO_SalesQuery setLineTaxBetween(ArrayList value) { this.LineTaxBetween = value; return this; } public ArrayList getLineTaxIn() { return LineTaxIn; } public SO_SalesQuery setLineTaxIn(ArrayList value) { this.LineTaxIn = value; return this; } public BigDecimal getLineTotal() { return LineTotal; } public SO_SalesQuery setLineTotal(BigDecimal value) { this.LineTotal = value; return this; } public BigDecimal getLineTotalGreaterThanOrEqualTo() { return LineTotalGreaterThanOrEqualTo; } public SO_SalesQuery setLineTotalGreaterThanOrEqualTo(BigDecimal value) { this.LineTotalGreaterThanOrEqualTo = value; return this; } public BigDecimal getLineTotalGreaterThan() { return LineTotalGreaterThan; } public SO_SalesQuery setLineTotalGreaterThan(BigDecimal value) { this.LineTotalGreaterThan = value; return this; } public BigDecimal getLineTotalLessThan() { return LineTotalLessThan; } public SO_SalesQuery setLineTotalLessThan(BigDecimal value) { this.LineTotalLessThan = value; return this; } public BigDecimal getLineTotalLessThanOrEqualTo() { return LineTotalLessThanOrEqualTo; } public SO_SalesQuery setLineTotalLessThanOrEqualTo(BigDecimal value) { this.LineTotalLessThanOrEqualTo = value; return this; } public BigDecimal getLineTotalNotEqualTo() { return LineTotalNotEqualTo; } public SO_SalesQuery setLineTotalNotEqualTo(BigDecimal value) { this.LineTotalNotEqualTo = value; return this; } public ArrayList getLineTotalBetween() { return LineTotalBetween; } public SO_SalesQuery setLineTotalBetween(ArrayList value) { this.LineTotalBetween = value; return this; } public ArrayList getLineTotalIn() { return LineTotalIn; } public SO_SalesQuery setLineTotalIn(ArrayList value) { this.LineTotalIn = value; return this; } public String getRunNo() { return RunNo; } public SO_SalesQuery setRunNo(String value) { this.RunNo = value; return this; } public String getRunNoStartsWith() { return RunNoStartsWith; } public SO_SalesQuery setRunNoStartsWith(String value) { this.RunNoStartsWith = value; return this; } public String getRunNoEndsWith() { return RunNoEndsWith; } public SO_SalesQuery setRunNoEndsWith(String value) { this.RunNoEndsWith = value; return this; } public String getRunNoContains() { return RunNoContains; } public SO_SalesQuery setRunNoContains(String value) { this.RunNoContains = value; return this; } public String getRunNoLike() { return RunNoLike; } public SO_SalesQuery setRunNoLike(String value) { this.RunNoLike = value; return this; } public ArrayList getRunNoBetween() { return RunNoBetween; } public SO_SalesQuery setRunNoBetween(ArrayList value) { this.RunNoBetween = value; return this; } public ArrayList getRunNoIn() { return RunNoIn; } public SO_SalesQuery setRunNoIn(ArrayList value) { this.RunNoIn = value; return this; } public Short getHistoryNo() { return HistoryNo; } public SO_SalesQuery setHistoryNo(Short value) { this.HistoryNo = value; return this; } public Short getHistoryNoGreaterThanOrEqualTo() { return HistoryNoGreaterThanOrEqualTo; } public SO_SalesQuery setHistoryNoGreaterThanOrEqualTo(Short value) { this.HistoryNoGreaterThanOrEqualTo = value; return this; } public Short getHistoryNoGreaterThan() { return HistoryNoGreaterThan; } public SO_SalesQuery setHistoryNoGreaterThan(Short value) { this.HistoryNoGreaterThan = value; return this; } public Short getHistoryNoLessThan() { return HistoryNoLessThan; } public SO_SalesQuery setHistoryNoLessThan(Short value) { this.HistoryNoLessThan = value; return this; } public Short getHistoryNoLessThanOrEqualTo() { return HistoryNoLessThanOrEqualTo; } public SO_SalesQuery setHistoryNoLessThanOrEqualTo(Short value) { this.HistoryNoLessThanOrEqualTo = value; return this; } public Short getHistoryNoNotEqualTo() { return HistoryNoNotEqualTo; } public SO_SalesQuery setHistoryNoNotEqualTo(Short value) { this.HistoryNoNotEqualTo = value; return this; } public ArrayList getHistoryNoBetween() { return HistoryNoBetween; } public SO_SalesQuery setHistoryNoBetween(ArrayList value) { this.HistoryNoBetween = value; return this; } public ArrayList getHistoryNoIn() { return HistoryNoIn; } public SO_SalesQuery setHistoryNoIn(ArrayList value) { this.HistoryNoIn = value; return this; } public String getInvoiceID() { return InvoiceID; } public SO_SalesQuery setInvoiceID(String value) { this.InvoiceID = value; return this; } public String getInvoiceIDStartsWith() { return InvoiceIDStartsWith; } public SO_SalesQuery setInvoiceIDStartsWith(String value) { this.InvoiceIDStartsWith = value; return this; } public String getInvoiceIDEndsWith() { return InvoiceIDEndsWith; } public SO_SalesQuery setInvoiceIDEndsWith(String value) { this.InvoiceIDEndsWith = value; return this; } public String getInvoiceIDContains() { return InvoiceIDContains; } public SO_SalesQuery setInvoiceIDContains(String value) { this.InvoiceIDContains = value; return this; } public String getInvoiceIDLike() { return InvoiceIDLike; } public SO_SalesQuery setInvoiceIDLike(String value) { this.InvoiceIDLike = value; return this; } public ArrayList getInvoiceIDBetween() { return InvoiceIDBetween; } public SO_SalesQuery setInvoiceIDBetween(ArrayList value) { this.InvoiceIDBetween = value; return this; } public ArrayList getInvoiceIDIn() { return InvoiceIDIn; } public SO_SalesQuery setInvoiceIDIn(ArrayList value) { this.InvoiceIDIn = value; return this; } public String getInventoryID() { return InventoryID; } public SO_SalesQuery setInventoryID(String value) { this.InventoryID = value; return this; } public String getInventoryIDStartsWith() { return InventoryIDStartsWith; } public SO_SalesQuery setInventoryIDStartsWith(String value) { this.InventoryIDStartsWith = value; return this; } public String getInventoryIDEndsWith() { return InventoryIDEndsWith; } public SO_SalesQuery setInventoryIDEndsWith(String value) { this.InventoryIDEndsWith = value; return this; } public String getInventoryIDContains() { return InventoryIDContains; } public SO_SalesQuery setInventoryIDContains(String value) { this.InventoryIDContains = value; return this; } public String getInventoryIDLike() { return InventoryIDLike; } public SO_SalesQuery setInventoryIDLike(String value) { this.InventoryIDLike = value; return this; } public ArrayList getInventoryIDBetween() { return InventoryIDBetween; } public SO_SalesQuery setInventoryIDBetween(ArrayList value) { this.InventoryIDBetween = value; return this; } public ArrayList getInventoryIDIn() { return InventoryIDIn; } public SO_SalesQuery setInventoryIDIn(ArrayList value) { this.InventoryIDIn = value; return this; } public Integer getYearNo() { return YearNo; } public SO_SalesQuery setYearNo(Integer value) { this.YearNo = value; return this; } public Integer getYearNoGreaterThanOrEqualTo() { return YearNoGreaterThanOrEqualTo; } public SO_SalesQuery setYearNoGreaterThanOrEqualTo(Integer value) { this.YearNoGreaterThanOrEqualTo = value; return this; } public Integer getYearNoGreaterThan() { return YearNoGreaterThan; } public SO_SalesQuery setYearNoGreaterThan(Integer value) { this.YearNoGreaterThan = value; return this; } public Integer getYearNoLessThan() { return YearNoLessThan; } public SO_SalesQuery setYearNoLessThan(Integer value) { this.YearNoLessThan = value; return this; } public Integer getYearNoLessThanOrEqualTo() { return YearNoLessThanOrEqualTo; } public SO_SalesQuery setYearNoLessThanOrEqualTo(Integer value) { this.YearNoLessThanOrEqualTo = value; return this; } public Integer getYearNoNotEqualTo() { return YearNoNotEqualTo; } public SO_SalesQuery setYearNoNotEqualTo(Integer value) { this.YearNoNotEqualTo = value; return this; } public ArrayList getYearNoBetween() { return YearNoBetween; } public SO_SalesQuery setYearNoBetween(ArrayList value) { this.YearNoBetween = value; return this; } public ArrayList getYearNoIn() { return YearNoIn; } public SO_SalesQuery setYearNoIn(ArrayList value) { this.YearNoIn = value; return this; } public Integer getMonthNo() { return MonthNo; } public SO_SalesQuery setMonthNo(Integer value) { this.MonthNo = value; return this; } public Integer getMonthNoGreaterThanOrEqualTo() { return MonthNoGreaterThanOrEqualTo; } public SO_SalesQuery setMonthNoGreaterThanOrEqualTo(Integer value) { this.MonthNoGreaterThanOrEqualTo = value; return this; } public Integer getMonthNoGreaterThan() { return MonthNoGreaterThan; } public SO_SalesQuery setMonthNoGreaterThan(Integer value) { this.MonthNoGreaterThan = value; return this; } public Integer getMonthNoLessThan() { return MonthNoLessThan; } public SO_SalesQuery setMonthNoLessThan(Integer value) { this.MonthNoLessThan = value; return this; } public Integer getMonthNoLessThanOrEqualTo() { return MonthNoLessThanOrEqualTo; } public SO_SalesQuery setMonthNoLessThanOrEqualTo(Integer value) { this.MonthNoLessThanOrEqualTo = value; return this; } public Integer getMonthNoNotEqualTo() { return MonthNoNotEqualTo; } public SO_SalesQuery setMonthNoNotEqualTo(Integer value) { this.MonthNoNotEqualTo = value; return this; } public ArrayList getMonthNoBetween() { return MonthNoBetween; } public SO_SalesQuery setMonthNoBetween(ArrayList value) { this.MonthNoBetween = value; return this; } public ArrayList getMonthNoIn() { return MonthNoIn; } public SO_SalesQuery setMonthNoIn(ArrayList value) { this.MonthNoIn = value; return this; } public String getInLogicalID() { return IN_LogicalID; } public SO_SalesQuery setInLogicalID(String value) { this.IN_LogicalID = value; return this; } public String getInLogicalIDStartsWith() { return IN_LogicalIDStartsWith; } public SO_SalesQuery setInLogicalIDStartsWith(String value) { this.IN_LogicalIDStartsWith = value; return this; } public String getInLogicalIDEndsWith() { return IN_LogicalIDEndsWith; } public SO_SalesQuery setInLogicalIDEndsWith(String value) { this.IN_LogicalIDEndsWith = value; return this; } public String getInLogicalIDContains() { return IN_LogicalIDContains; } public SO_SalesQuery setInLogicalIDContains(String value) { this.IN_LogicalIDContains = value; return this; } public String getInLogicalIDLike() { return IN_LogicalIDLike; } public SO_SalesQuery setInLogicalIDLike(String value) { this.IN_LogicalIDLike = value; return this; } public ArrayList getInLogicalIDBetween() { return IN_LogicalIDBetween; } public SO_SalesQuery setInLogicalIDBetween(ArrayList value) { this.IN_LogicalIDBetween = value; return this; } public ArrayList getInLogicalIDIn() { return IN_LogicalIDIn; } public SO_SalesQuery setInLogicalIDIn(ArrayList value) { this.IN_LogicalIDIn = value; return this; } public String getCat4Description() { return Cat4Description; } public SO_SalesQuery setCat4Description(String value) { this.Cat4Description = value; return this; } public String getCat4DescriptionStartsWith() { return Cat4DescriptionStartsWith; } public SO_SalesQuery setCat4DescriptionStartsWith(String value) { this.Cat4DescriptionStartsWith = value; return this; } public String getCat4DescriptionEndsWith() { return Cat4DescriptionEndsWith; } public SO_SalesQuery setCat4DescriptionEndsWith(String value) { this.Cat4DescriptionEndsWith = value; return this; } public String getCat4DescriptionContains() { return Cat4DescriptionContains; } public SO_SalesQuery setCat4DescriptionContains(String value) { this.Cat4DescriptionContains = value; return this; } public String getCat4DescriptionLike() { return Cat4DescriptionLike; } public SO_SalesQuery setCat4DescriptionLike(String value) { this.Cat4DescriptionLike = value; return this; } public ArrayList getCat4DescriptionBetween() { return Cat4DescriptionBetween; } public SO_SalesQuery setCat4DescriptionBetween(ArrayList value) { this.Cat4DescriptionBetween = value; return this; } public ArrayList getCat4DescriptionIn() { return Cat4DescriptionIn; } public SO_SalesQuery setCat4DescriptionIn(ArrayList value) { this.Cat4DescriptionIn = value; return this; } public String getCat5Description() { return Cat5Description; } public SO_SalesQuery setCat5Description(String value) { this.Cat5Description = value; return this; } public String getCat5DescriptionStartsWith() { return Cat5DescriptionStartsWith; } public SO_SalesQuery setCat5DescriptionStartsWith(String value) { this.Cat5DescriptionStartsWith = value; return this; } public String getCat5DescriptionEndsWith() { return Cat5DescriptionEndsWith; } public SO_SalesQuery setCat5DescriptionEndsWith(String value) { this.Cat5DescriptionEndsWith = value; return this; } public String getCat5DescriptionContains() { return Cat5DescriptionContains; } public SO_SalesQuery setCat5DescriptionContains(String value) { this.Cat5DescriptionContains = value; return this; } public String getCat5DescriptionLike() { return Cat5DescriptionLike; } public SO_SalesQuery setCat5DescriptionLike(String value) { this.Cat5DescriptionLike = value; return this; } public ArrayList getCat5DescriptionBetween() { return Cat5DescriptionBetween; } public SO_SalesQuery setCat5DescriptionBetween(ArrayList value) { this.Cat5DescriptionBetween = value; return this; } public ArrayList getCat5DescriptionIn() { return Cat5DescriptionIn; } public SO_SalesQuery setCat5DescriptionIn(ArrayList value) { this.Cat5DescriptionIn = value; return this; } public Short getKitStyle() { return KitStyle; } public SO_SalesQuery setKitStyle(Short value) { this.KitStyle = value; return this; } public Short getKitStyleGreaterThanOrEqualTo() { return KitStyleGreaterThanOrEqualTo; } public SO_SalesQuery setKitStyleGreaterThanOrEqualTo(Short value) { this.KitStyleGreaterThanOrEqualTo = value; return this; } public Short getKitStyleGreaterThan() { return KitStyleGreaterThan; } public SO_SalesQuery setKitStyleGreaterThan(Short value) { this.KitStyleGreaterThan = value; return this; } public Short getKitStyleLessThan() { return KitStyleLessThan; } public SO_SalesQuery setKitStyleLessThan(Short value) { this.KitStyleLessThan = value; return this; } public Short getKitStyleLessThanOrEqualTo() { return KitStyleLessThanOrEqualTo; } public SO_SalesQuery setKitStyleLessThanOrEqualTo(Short value) { this.KitStyleLessThanOrEqualTo = value; return this; } public Short getKitStyleNotEqualTo() { return KitStyleNotEqualTo; } public SO_SalesQuery setKitStyleNotEqualTo(Short value) { this.KitStyleNotEqualTo = value; return this; } public ArrayList getKitStyleBetween() { return KitStyleBetween; } public SO_SalesQuery setKitStyleBetween(ArrayList value) { this.KitStyleBetween = value; return this; } public ArrayList getKitStyleIn() { return KitStyleIn; } public SO_SalesQuery setKitStyleIn(ArrayList value) { this.KitStyleIn = value; return this; } public Short getKitStatus() { return KitStatus; } public SO_SalesQuery setKitStatus(Short value) { this.KitStatus = value; return this; } public Short getKitStatusGreaterThanOrEqualTo() { return KitStatusGreaterThanOrEqualTo; } public SO_SalesQuery setKitStatusGreaterThanOrEqualTo(Short value) { this.KitStatusGreaterThanOrEqualTo = value; return this; } public Short getKitStatusGreaterThan() { return KitStatusGreaterThan; } public SO_SalesQuery setKitStatusGreaterThan(Short value) { this.KitStatusGreaterThan = value; return this; } public Short getKitStatusLessThan() { return KitStatusLessThan; } public SO_SalesQuery setKitStatusLessThan(Short value) { this.KitStatusLessThan = value; return this; } public Short getKitStatusLessThanOrEqualTo() { return KitStatusLessThanOrEqualTo; } public SO_SalesQuery setKitStatusLessThanOrEqualTo(Short value) { this.KitStatusLessThanOrEqualTo = value; return this; } public Short getKitStatusNotEqualTo() { return KitStatusNotEqualTo; } public SO_SalesQuery setKitStatusNotEqualTo(Short value) { this.KitStatusNotEqualTo = value; return this; } public ArrayList getKitStatusBetween() { return KitStatusBetween; } public SO_SalesQuery setKitStatusBetween(ArrayList value) { this.KitStatusBetween = value; return this; } public ArrayList getKitStatusIn() { return KitStatusIn; } public SO_SalesQuery setKitStatusIn(ArrayList value) { this.KitStatusIn = value; return this; } public String getSoLinesID() { return SO_LinesID; } public SO_SalesQuery setSoLinesID(String value) { this.SO_LinesID = value; return this; } public String getSoLinesIDStartsWith() { return SO_LinesIDStartsWith; } public SO_SalesQuery setSoLinesIDStartsWith(String value) { this.SO_LinesIDStartsWith = value; return this; } public String getSoLinesIDEndsWith() { return SO_LinesIDEndsWith; } public SO_SalesQuery setSoLinesIDEndsWith(String value) { this.SO_LinesIDEndsWith = value; return this; } public String getSoLinesIDContains() { return SO_LinesIDContains; } public SO_SalesQuery setSoLinesIDContains(String value) { this.SO_LinesIDContains = value; return this; } public String getSoLinesIDLike() { return SO_LinesIDLike; } public SO_SalesQuery setSoLinesIDLike(String value) { this.SO_LinesIDLike = value; return this; } public ArrayList getSoLinesIDBetween() { return SO_LinesIDBetween; } public SO_SalesQuery setSoLinesIDBetween(ArrayList value) { this.SO_LinesIDBetween = value; return this; } public ArrayList getSoLinesIDIn() { return SO_LinesIDIn; } public SO_SalesQuery setSoLinesIDIn(ArrayList value) { this.SO_LinesIDIn = value; return this; } public BigDecimal getLineCost() { return LineCost; } public SO_SalesQuery setLineCost(BigDecimal value) { this.LineCost = value; return this; } public BigDecimal getLineCostGreaterThanOrEqualTo() { return LineCostGreaterThanOrEqualTo; } public SO_SalesQuery setLineCostGreaterThanOrEqualTo(BigDecimal value) { this.LineCostGreaterThanOrEqualTo = value; return this; } public BigDecimal getLineCostGreaterThan() { return LineCostGreaterThan; } public SO_SalesQuery setLineCostGreaterThan(BigDecimal value) { this.LineCostGreaterThan = value; return this; } public BigDecimal getLineCostLessThan() { return LineCostLessThan; } public SO_SalesQuery setLineCostLessThan(BigDecimal value) { this.LineCostLessThan = value; return this; } public BigDecimal getLineCostLessThanOrEqualTo() { return LineCostLessThanOrEqualTo; } public SO_SalesQuery setLineCostLessThanOrEqualTo(BigDecimal value) { this.LineCostLessThanOrEqualTo = value; return this; } public BigDecimal getLineCostNotEqualTo() { return LineCostNotEqualTo; } public SO_SalesQuery setLineCostNotEqualTo(BigDecimal value) { this.LineCostNotEqualTo = value; return this; } public ArrayList getLineCostBetween() { return LineCostBetween; } public SO_SalesQuery setLineCostBetween(ArrayList value) { this.LineCostBetween = value; return this; } public ArrayList getLineCostIn() { return LineCostIn; } public SO_SalesQuery setLineCostIn(ArrayList value) { this.LineCostIn = value; return this; } public String getDebtorAccountNo() { return DebtorAccountNo; } public SO_SalesQuery setDebtorAccountNo(String value) { this.DebtorAccountNo = value; return this; } public String getDebtorAccountNoStartsWith() { return DebtorAccountNoStartsWith; } public SO_SalesQuery setDebtorAccountNoStartsWith(String value) { this.DebtorAccountNoStartsWith = value; return this; } public String getDebtorAccountNoEndsWith() { return DebtorAccountNoEndsWith; } public SO_SalesQuery setDebtorAccountNoEndsWith(String value) { this.DebtorAccountNoEndsWith = value; return this; } public String getDebtorAccountNoContains() { return DebtorAccountNoContains; } public SO_SalesQuery setDebtorAccountNoContains(String value) { this.DebtorAccountNoContains = value; return this; } public String getDebtorAccountNoLike() { return DebtorAccountNoLike; } public SO_SalesQuery setDebtorAccountNoLike(String value) { this.DebtorAccountNoLike = value; return this; } public ArrayList getDebtorAccountNoBetween() { return DebtorAccountNoBetween; } public SO_SalesQuery setDebtorAccountNoBetween(ArrayList value) { this.DebtorAccountNoBetween = value; return this; } public ArrayList getDebtorAccountNoIn() { return DebtorAccountNoIn; } public SO_SalesQuery setDebtorAccountNoIn(ArrayList value) { this.DebtorAccountNoIn = value; return this; } public String getDebtorName() { return DebtorName; } public SO_SalesQuery setDebtorName(String value) { this.DebtorName = value; return this; } public String getDebtorNameStartsWith() { return DebtorNameStartsWith; } public SO_SalesQuery setDebtorNameStartsWith(String value) { this.DebtorNameStartsWith = value; return this; } public String getDebtorNameEndsWith() { return DebtorNameEndsWith; } public SO_SalesQuery setDebtorNameEndsWith(String value) { this.DebtorNameEndsWith = value; return this; } public String getDebtorNameContains() { return DebtorNameContains; } public SO_SalesQuery setDebtorNameContains(String value) { this.DebtorNameContains = value; return this; } public String getDebtorNameLike() { return DebtorNameLike; } public SO_SalesQuery setDebtorNameLike(String value) { this.DebtorNameLike = value; return this; } public ArrayList getDebtorNameBetween() { return DebtorNameBetween; } public SO_SalesQuery setDebtorNameBetween(ArrayList value) { this.DebtorNameBetween = value; return this; } public ArrayList getDebtorNameIn() { return DebtorNameIn; } public SO_SalesQuery setDebtorNameIn(ArrayList value) { this.DebtorNameIn = value; return this; } public String getDebtorClassification() { return DebtorClassification; } public SO_SalesQuery setDebtorClassification(String value) { this.DebtorClassification = value; return this; } public String getDebtorClassificationStartsWith() { return DebtorClassificationStartsWith; } public SO_SalesQuery setDebtorClassificationStartsWith(String value) { this.DebtorClassificationStartsWith = value; return this; } public String getDebtorClassificationEndsWith() { return DebtorClassificationEndsWith; } public SO_SalesQuery setDebtorClassificationEndsWith(String value) { this.DebtorClassificationEndsWith = value; return this; } public String getDebtorClassificationContains() { return DebtorClassificationContains; } public SO_SalesQuery setDebtorClassificationContains(String value) { this.DebtorClassificationContains = value; return this; } public String getDebtorClassificationLike() { return DebtorClassificationLike; } public SO_SalesQuery setDebtorClassificationLike(String value) { this.DebtorClassificationLike = value; return this; } public ArrayList getDebtorClassificationBetween() { return DebtorClassificationBetween; } public SO_SalesQuery setDebtorClassificationBetween(ArrayList value) { this.DebtorClassificationBetween = value; return this; } public ArrayList getDebtorClassificationIn() { return DebtorClassificationIn; } public SO_SalesQuery setDebtorClassificationIn(ArrayList value) { this.DebtorClassificationIn = value; return this; } public String getPhysicalWarehouse() { return PhysicalWarehouse; } public SO_SalesQuery setPhysicalWarehouse(String value) { this.PhysicalWarehouse = value; return this; } public String getPhysicalWarehouseStartsWith() { return PhysicalWarehouseStartsWith; } public SO_SalesQuery setPhysicalWarehouseStartsWith(String value) { this.PhysicalWarehouseStartsWith = value; return this; } public String getPhysicalWarehouseEndsWith() { return PhysicalWarehouseEndsWith; } public SO_SalesQuery setPhysicalWarehouseEndsWith(String value) { this.PhysicalWarehouseEndsWith = value; return this; } public String getPhysicalWarehouseContains() { return PhysicalWarehouseContains; } public SO_SalesQuery setPhysicalWarehouseContains(String value) { this.PhysicalWarehouseContains = value; return this; } public String getPhysicalWarehouseLike() { return PhysicalWarehouseLike; } public SO_SalesQuery setPhysicalWarehouseLike(String value) { this.PhysicalWarehouseLike = value; return this; } public ArrayList getPhysicalWarehouseBetween() { return PhysicalWarehouseBetween; } public SO_SalesQuery setPhysicalWarehouseBetween(ArrayList value) { this.PhysicalWarehouseBetween = value; return this; } public ArrayList getPhysicalWarehouseIn() { return PhysicalWarehouseIn; } public SO_SalesQuery setPhysicalWarehouseIn(ArrayList value) { this.PhysicalWarehouseIn = value; return this; } public String getLogicalWarehouse() { return LogicalWarehouse; } public SO_SalesQuery setLogicalWarehouse(String value) { this.LogicalWarehouse = value; return this; } public String getLogicalWarehouseStartsWith() { return LogicalWarehouseStartsWith; } public SO_SalesQuery setLogicalWarehouseStartsWith(String value) { this.LogicalWarehouseStartsWith = value; return this; } public String getLogicalWarehouseEndsWith() { return LogicalWarehouseEndsWith; } public SO_SalesQuery setLogicalWarehouseEndsWith(String value) { this.LogicalWarehouseEndsWith = value; return this; } public String getLogicalWarehouseContains() { return LogicalWarehouseContains; } public SO_SalesQuery setLogicalWarehouseContains(String value) { this.LogicalWarehouseContains = value; return this; } public String getLogicalWarehouseLike() { return LogicalWarehouseLike; } public SO_SalesQuery setLogicalWarehouseLike(String value) { this.LogicalWarehouseLike = value; return this; } public ArrayList getLogicalWarehouseBetween() { return LogicalWarehouseBetween; } public SO_SalesQuery setLogicalWarehouseBetween(ArrayList value) { this.LogicalWarehouseBetween = value; return this; } public ArrayList getLogicalWarehouseIn() { return LogicalWarehouseIn; } public SO_SalesQuery setLogicalWarehouseIn(ArrayList value) { this.LogicalWarehouseIn = value; return this; } public BigDecimal getGpDollars() { return GPDollars; } public SO_SalesQuery setGpDollars(BigDecimal value) { this.GPDollars = value; return this; } public BigDecimal getGpDollarsGreaterThanOrEqualTo() { return GPDollarsGreaterThanOrEqualTo; } public SO_SalesQuery setGpDollarsGreaterThanOrEqualTo(BigDecimal value) { this.GPDollarsGreaterThanOrEqualTo = value; return this; } public BigDecimal getGpDollarsGreaterThan() { return GPDollarsGreaterThan; } public SO_SalesQuery setGpDollarsGreaterThan(BigDecimal value) { this.GPDollarsGreaterThan = value; return this; } public BigDecimal getGpDollarsLessThan() { return GPDollarsLessThan; } public SO_SalesQuery setGpDollarsLessThan(BigDecimal value) { this.GPDollarsLessThan = value; return this; } public BigDecimal getGpDollarsLessThanOrEqualTo() { return GPDollarsLessThanOrEqualTo; } public SO_SalesQuery setGpDollarsLessThanOrEqualTo(BigDecimal value) { this.GPDollarsLessThanOrEqualTo = value; return this; } public BigDecimal getGpDollarsNotEqualTo() { return GPDollarsNotEqualTo; } public SO_SalesQuery setGpDollarsNotEqualTo(BigDecimal value) { this.GPDollarsNotEqualTo = value; return this; } public ArrayList getGpDollarsBetween() { return GPDollarsBetween; } public SO_SalesQuery setGpDollarsBetween(ArrayList value) { this.GPDollarsBetween = value; return this; } public ArrayList getGpDollarsIn() { return GPDollarsIn; } public SO_SalesQuery setGpDollarsIn(ArrayList value) { this.GPDollarsIn = value; return this; } public BigDecimal getGpPercent() { return GPPercent; } public SO_SalesQuery setGpPercent(BigDecimal value) { this.GPPercent = value; return this; } public BigDecimal getGpPercentGreaterThanOrEqualTo() { return GPPercentGreaterThanOrEqualTo; } public SO_SalesQuery setGpPercentGreaterThanOrEqualTo(BigDecimal value) { this.GPPercentGreaterThanOrEqualTo = value; return this; } public BigDecimal getGpPercentGreaterThan() { return GPPercentGreaterThan; } public SO_SalesQuery setGpPercentGreaterThan(BigDecimal value) { this.GPPercentGreaterThan = value; return this; } public BigDecimal getGpPercentLessThan() { return GPPercentLessThan; } public SO_SalesQuery setGpPercentLessThan(BigDecimal value) { this.GPPercentLessThan = value; return this; } public BigDecimal getGpPercentLessThanOrEqualTo() { return GPPercentLessThanOrEqualTo; } public SO_SalesQuery setGpPercentLessThanOrEqualTo(BigDecimal value) { this.GPPercentLessThanOrEqualTo = value; return this; } public BigDecimal getGpPercentNotEqualTo() { return GPPercentNotEqualTo; } public SO_SalesQuery setGpPercentNotEqualTo(BigDecimal value) { this.GPPercentNotEqualTo = value; return this; } public ArrayList getGpPercentBetween() { return GPPercentBetween; } public SO_SalesQuery setGpPercentBetween(ArrayList value) { this.GPPercentBetween = value; return this; } public ArrayList getGpPercentIn() { return GPPercentIn; } public SO_SalesQuery setGpPercentIn(ArrayList value) { this.GPPercentIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class SO_Sales_InvoiceNoQuery extends QueryDb implements IReturn> { public String InvoiceNo = null; public String InvoiceNoStartsWith = null; public String InvoiceNoEndsWith = null; public String InvoiceNoContains = null; public String InvoiceNoLike = null; public ArrayList InvoiceNoBetween = null; public ArrayList InvoiceNoIn = null; public String getInvoiceNo() { return InvoiceNo; } public SO_Sales_InvoiceNoQuery setInvoiceNo(String value) { this.InvoiceNo = value; return this; } public String getInvoiceNoStartsWith() { return InvoiceNoStartsWith; } public SO_Sales_InvoiceNoQuery setInvoiceNoStartsWith(String value) { this.InvoiceNoStartsWith = value; return this; } public String getInvoiceNoEndsWith() { return InvoiceNoEndsWith; } public SO_Sales_InvoiceNoQuery setInvoiceNoEndsWith(String value) { this.InvoiceNoEndsWith = value; return this; } public String getInvoiceNoContains() { return InvoiceNoContains; } public SO_Sales_InvoiceNoQuery setInvoiceNoContains(String value) { this.InvoiceNoContains = value; return this; } public String getInvoiceNoLike() { return InvoiceNoLike; } public SO_Sales_InvoiceNoQuery setInvoiceNoLike(String value) { this.InvoiceNoLike = value; return this; } public ArrayList getInvoiceNoBetween() { return InvoiceNoBetween; } public SO_Sales_InvoiceNoQuery setInvoiceNoBetween(ArrayList value) { this.InvoiceNoBetween = value; return this; } public ArrayList getInvoiceNoIn() { return InvoiceNoIn; } public SO_Sales_InvoiceNoQuery setInvoiceNoIn(ArrayList value) { this.InvoiceNoIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class SO_SalesDelBatchQuery extends QueryDb implements IReturn> { public String RecID = null; public String RecIDStartsWith = null; public String RecIDEndsWith = null; public String RecIDContains = null; public String RecIDLike = null; public ArrayList RecIDBetween = null; public ArrayList RecIDIn = null; public String BatchNo = null; public String BatchNoStartsWith = null; public String BatchNoEndsWith = null; public String BatchNoContains = null; public String BatchNoLike = null; public ArrayList BatchNoBetween = null; public ArrayList BatchNoIn = null; public String StaffID = null; public String StaffIDStartsWith = null; public String StaffIDEndsWith = null; public String StaffIDContains = null; public String StaffIDLike = null; public ArrayList StaffIDBetween = null; public ArrayList StaffIDIn = null; public Date DateActivated = null; public Date DateActivatedGreaterThanOrEqualTo = null; public Date DateActivatedGreaterThan = null; public Date DateActivatedLessThan = null; public Date DateActivatedLessThanOrEqualTo = null; public Date DateActivatedNotEqualTo = null; public ArrayList DateActivatedBetween = null; public ArrayList DateActivatedIn = null; public Boolean BatchActivated = null; public Date LastSavedDateTime = null; public Date LastSavedDateTimeGreaterThanOrEqualTo = null; public Date LastSavedDateTimeGreaterThan = null; public Date LastSavedDateTimeLessThan = null; public Date LastSavedDateTimeLessThanOrEqualTo = null; public Date LastSavedDateTimeNotEqualTo = null; public ArrayList LastSavedDateTimeBetween = null; public ArrayList LastSavedDateTimeIn = null; public Boolean SplitOrder = null; public Boolean SplitBackOrders = null; public String IN_Logical_RecID = null; public String IN_Logical_RecIDStartsWith = null; public String IN_Logical_RecIDEndsWith = null; public String IN_Logical_RecIDContains = null; public String IN_Logical_RecIDLike = null; public ArrayList IN_Logical_RecIDBetween = null; public ArrayList IN_Logical_RecIDIn = null; public Boolean UseSpecificWarehouse = null; public String getRecID() { return RecID; } public SO_SalesDelBatchQuery setRecID(String value) { this.RecID = value; return this; } public String getRecIDStartsWith() { return RecIDStartsWith; } public SO_SalesDelBatchQuery setRecIDStartsWith(String value) { this.RecIDStartsWith = value; return this; } public String getRecIDEndsWith() { return RecIDEndsWith; } public SO_SalesDelBatchQuery setRecIDEndsWith(String value) { this.RecIDEndsWith = value; return this; } public String getRecIDContains() { return RecIDContains; } public SO_SalesDelBatchQuery setRecIDContains(String value) { this.RecIDContains = value; return this; } public String getRecIDLike() { return RecIDLike; } public SO_SalesDelBatchQuery setRecIDLike(String value) { this.RecIDLike = value; return this; } public ArrayList getRecIDBetween() { return RecIDBetween; } public SO_SalesDelBatchQuery setRecIDBetween(ArrayList value) { this.RecIDBetween = value; return this; } public ArrayList getRecIDIn() { return RecIDIn; } public SO_SalesDelBatchQuery setRecIDIn(ArrayList value) { this.RecIDIn = value; return this; } public String getBatchNo() { return BatchNo; } public SO_SalesDelBatchQuery setBatchNo(String value) { this.BatchNo = value; return this; } public String getBatchNoStartsWith() { return BatchNoStartsWith; } public SO_SalesDelBatchQuery setBatchNoStartsWith(String value) { this.BatchNoStartsWith = value; return this; } public String getBatchNoEndsWith() { return BatchNoEndsWith; } public SO_SalesDelBatchQuery setBatchNoEndsWith(String value) { this.BatchNoEndsWith = value; return this; } public String getBatchNoContains() { return BatchNoContains; } public SO_SalesDelBatchQuery setBatchNoContains(String value) { this.BatchNoContains = value; return this; } public String getBatchNoLike() { return BatchNoLike; } public SO_SalesDelBatchQuery setBatchNoLike(String value) { this.BatchNoLike = value; return this; } public ArrayList getBatchNoBetween() { return BatchNoBetween; } public SO_SalesDelBatchQuery setBatchNoBetween(ArrayList value) { this.BatchNoBetween = value; return this; } public ArrayList getBatchNoIn() { return BatchNoIn; } public SO_SalesDelBatchQuery setBatchNoIn(ArrayList value) { this.BatchNoIn = value; return this; } public String getStaffID() { return StaffID; } public SO_SalesDelBatchQuery setStaffID(String value) { this.StaffID = value; return this; } public String getStaffIDStartsWith() { return StaffIDStartsWith; } public SO_SalesDelBatchQuery setStaffIDStartsWith(String value) { this.StaffIDStartsWith = value; return this; } public String getStaffIDEndsWith() { return StaffIDEndsWith; } public SO_SalesDelBatchQuery setStaffIDEndsWith(String value) { this.StaffIDEndsWith = value; return this; } public String getStaffIDContains() { return StaffIDContains; } public SO_SalesDelBatchQuery setStaffIDContains(String value) { this.StaffIDContains = value; return this; } public String getStaffIDLike() { return StaffIDLike; } public SO_SalesDelBatchQuery setStaffIDLike(String value) { this.StaffIDLike = value; return this; } public ArrayList getStaffIDBetween() { return StaffIDBetween; } public SO_SalesDelBatchQuery setStaffIDBetween(ArrayList value) { this.StaffIDBetween = value; return this; } public ArrayList getStaffIDIn() { return StaffIDIn; } public SO_SalesDelBatchQuery setStaffIDIn(ArrayList value) { this.StaffIDIn = value; return this; } public Date getDateActivated() { return DateActivated; } public SO_SalesDelBatchQuery setDateActivated(Date value) { this.DateActivated = value; return this; } public Date getDateActivatedGreaterThanOrEqualTo() { return DateActivatedGreaterThanOrEqualTo; } public SO_SalesDelBatchQuery setDateActivatedGreaterThanOrEqualTo(Date value) { this.DateActivatedGreaterThanOrEqualTo = value; return this; } public Date getDateActivatedGreaterThan() { return DateActivatedGreaterThan; } public SO_SalesDelBatchQuery setDateActivatedGreaterThan(Date value) { this.DateActivatedGreaterThan = value; return this; } public Date getDateActivatedLessThan() { return DateActivatedLessThan; } public SO_SalesDelBatchQuery setDateActivatedLessThan(Date value) { this.DateActivatedLessThan = value; return this; } public Date getDateActivatedLessThanOrEqualTo() { return DateActivatedLessThanOrEqualTo; } public SO_SalesDelBatchQuery setDateActivatedLessThanOrEqualTo(Date value) { this.DateActivatedLessThanOrEqualTo = value; return this; } public Date getDateActivatedNotEqualTo() { return DateActivatedNotEqualTo; } public SO_SalesDelBatchQuery setDateActivatedNotEqualTo(Date value) { this.DateActivatedNotEqualTo = value; return this; } public ArrayList getDateActivatedBetween() { return DateActivatedBetween; } public SO_SalesDelBatchQuery setDateActivatedBetween(ArrayList value) { this.DateActivatedBetween = value; return this; } public ArrayList getDateActivatedIn() { return DateActivatedIn; } public SO_SalesDelBatchQuery setDateActivatedIn(ArrayList value) { this.DateActivatedIn = value; return this; } public Boolean isBatchActivated() { return BatchActivated; } public SO_SalesDelBatchQuery setBatchActivated(Boolean value) { this.BatchActivated = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public SO_SalesDelBatchQuery setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getLastSavedDateTimeGreaterThanOrEqualTo() { return LastSavedDateTimeGreaterThanOrEqualTo; } public SO_SalesDelBatchQuery setLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.LastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeGreaterThan() { return LastSavedDateTimeGreaterThan; } public SO_SalesDelBatchQuery setLastSavedDateTimeGreaterThan(Date value) { this.LastSavedDateTimeGreaterThan = value; return this; } public Date getLastSavedDateTimeLessThan() { return LastSavedDateTimeLessThan; } public SO_SalesDelBatchQuery setLastSavedDateTimeLessThan(Date value) { this.LastSavedDateTimeLessThan = value; return this; } public Date getLastSavedDateTimeLessThanOrEqualTo() { return LastSavedDateTimeLessThanOrEqualTo; } public SO_SalesDelBatchQuery setLastSavedDateTimeLessThanOrEqualTo(Date value) { this.LastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeNotEqualTo() { return LastSavedDateTimeNotEqualTo; } public SO_SalesDelBatchQuery setLastSavedDateTimeNotEqualTo(Date value) { this.LastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getLastSavedDateTimeBetween() { return LastSavedDateTimeBetween; } public SO_SalesDelBatchQuery setLastSavedDateTimeBetween(ArrayList value) { this.LastSavedDateTimeBetween = value; return this; } public ArrayList getLastSavedDateTimeIn() { return LastSavedDateTimeIn; } public SO_SalesDelBatchQuery setLastSavedDateTimeIn(ArrayList value) { this.LastSavedDateTimeIn = value; return this; } public Boolean isSplitOrder() { return SplitOrder; } public SO_SalesDelBatchQuery setSplitOrder(Boolean value) { this.SplitOrder = value; return this; } public Boolean isSplitBackOrders() { return SplitBackOrders; } public SO_SalesDelBatchQuery setSplitBackOrders(Boolean value) { this.SplitBackOrders = value; return this; } public String getInLogicalRecID() { return IN_Logical_RecID; } public SO_SalesDelBatchQuery setInLogicalRecID(String value) { this.IN_Logical_RecID = value; return this; } public String getInLogicalRecIDStartsWith() { return IN_Logical_RecIDStartsWith; } public SO_SalesDelBatchQuery setInLogicalRecIDStartsWith(String value) { this.IN_Logical_RecIDStartsWith = value; return this; } public String getInLogicalRecIDEndsWith() { return IN_Logical_RecIDEndsWith; } public SO_SalesDelBatchQuery setInLogicalRecIDEndsWith(String value) { this.IN_Logical_RecIDEndsWith = value; return this; } public String getInLogicalRecIDContains() { return IN_Logical_RecIDContains; } public SO_SalesDelBatchQuery setInLogicalRecIDContains(String value) { this.IN_Logical_RecIDContains = value; return this; } public String getInLogicalRecIDLike() { return IN_Logical_RecIDLike; } public SO_SalesDelBatchQuery setInLogicalRecIDLike(String value) { this.IN_Logical_RecIDLike = value; return this; } public ArrayList getInLogicalRecIDBetween() { return IN_Logical_RecIDBetween; } public SO_SalesDelBatchQuery setInLogicalRecIDBetween(ArrayList value) { this.IN_Logical_RecIDBetween = value; return this; } public ArrayList getInLogicalRecIDIn() { return IN_Logical_RecIDIn; } public SO_SalesDelBatchQuery setInLogicalRecIDIn(ArrayList value) { this.IN_Logical_RecIDIn = value; return this; } public Boolean isUseSpecificWarehouse() { return UseSpecificWarehouse; } public SO_SalesDelBatchQuery setUseSpecificWarehouse(Boolean value) { this.UseSpecificWarehouse = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class SO_SalesDelBatchLinesQuery extends QueryDb implements IReturn> { public String RecID = null; public String RecIDStartsWith = null; public String RecIDEndsWith = null; public String RecIDContains = null; public String RecIDLike = null; public ArrayList RecIDBetween = null; public ArrayList RecIDIn = null; public String SalesDelBatchID = null; public String SalesDelBatchIDStartsWith = null; public String SalesDelBatchIDEndsWith = null; public String SalesDelBatchIDContains = null; public String SalesDelBatchIDLike = null; public ArrayList SalesDelBatchIDBetween = null; public ArrayList SalesDelBatchIDIn = null; public Integer LineNumber = null; public Integer LineNumberGreaterThanOrEqualTo = null; public Integer LineNumberGreaterThan = null; public Integer LineNumberLessThan = null; public Integer LineNumberLessThanOrEqualTo = null; public Integer LineNumberNotEqualTo = null; public ArrayList LineNumberBetween = null; public ArrayList LineNumberIn = null; public String InvoiceID = null; public String InvoiceIDStartsWith = null; public String InvoiceIDEndsWith = null; public String InvoiceIDContains = null; public String InvoiceIDLike = null; public ArrayList InvoiceIDBetween = null; public ArrayList InvoiceIDIn = null; public String InvoiceNo = null; public String InvoiceNoStartsWith = null; public String InvoiceNoEndsWith = null; public String InvoiceNoContains = null; public String InvoiceNoLike = null; public ArrayList InvoiceNoBetween = null; public ArrayList InvoiceNoIn = null; public String DebtorID = null; public String DebtorIDStartsWith = null; public String DebtorIDEndsWith = null; public String DebtorIDContains = null; public String DebtorIDLike = null; public ArrayList DebtorIDBetween = null; public ArrayList DebtorIDIn = null; public String DebtorAccountNo = null; public String DebtorAccountNoStartsWith = null; public String DebtorAccountNoEndsWith = null; public String DebtorAccountNoContains = null; public String DebtorAccountNoLike = null; public ArrayList DebtorAccountNoBetween = null; public ArrayList DebtorAccountNoIn = null; public String DebtorName = null; public String DebtorNameStartsWith = null; public String DebtorNameEndsWith = null; public String DebtorNameContains = null; public String DebtorNameLike = null; public ArrayList DebtorNameBetween = null; public ArrayList DebtorNameIn = null; public String InvoiceLineID = null; public String InvoiceLineIDStartsWith = null; public String InvoiceLineIDEndsWith = null; public String InvoiceLineIDContains = null; public String InvoiceLineIDLike = null; public ArrayList InvoiceLineIDBetween = null; public ArrayList InvoiceLineIDIn = null; public String InventoryID = null; public String InventoryIDStartsWith = null; public String InventoryIDEndsWith = null; public String InventoryIDContains = null; public String InventoryIDLike = null; public ArrayList InventoryIDBetween = null; public ArrayList InventoryIDIn = null; public String PartNo = null; public String PartNoStartsWith = null; public String PartNoEndsWith = null; public String PartNoContains = null; public String PartNoLike = null; public ArrayList PartNoBetween = null; public ArrayList PartNoIn = null; public String Description = null; public String DescriptionStartsWith = null; public String DescriptionEndsWith = null; public String DescriptionContains = null; public String DescriptionLike = null; public ArrayList DescriptionBetween = null; public ArrayList DescriptionIn = null; public BigDecimal Quantity = null; public BigDecimal QuantityGreaterThanOrEqualTo = null; public BigDecimal QuantityGreaterThan = null; public BigDecimal QuantityLessThan = null; public BigDecimal QuantityLessThanOrEqualTo = null; public BigDecimal QuantityNotEqualTo = null; public ArrayList QuantityBetween = null; public ArrayList QuantityIn = null; public BigDecimal QuantityBackOrdered = null; public BigDecimal QuantityBackOrderedGreaterThanOrEqualTo = null; public BigDecimal QuantityBackOrderedGreaterThan = null; public BigDecimal QuantityBackOrderedLessThan = null; public BigDecimal QuantityBackOrderedLessThanOrEqualTo = null; public BigDecimal QuantityBackOrderedNotEqualTo = null; public ArrayList QuantityBackOrderedBetween = null; public ArrayList QuantityBackOrderedIn = null; public Date ForwardOrderDate = null; public Date ForwardOrderDateGreaterThanOrEqualTo = null; public Date ForwardOrderDateGreaterThan = null; public Date ForwardOrderDateLessThan = null; public Date ForwardOrderDateLessThanOrEqualTo = null; public Date ForwardOrderDateNotEqualTo = null; public ArrayList ForwardOrderDateBetween = null; public ArrayList ForwardOrderDateIn = null; public Date ScheduledDate = null; public Date ScheduledDateGreaterThanOrEqualTo = null; public Date ScheduledDateGreaterThan = null; public Date ScheduledDateLessThan = null; public Date ScheduledDateLessThanOrEqualTo = null; public Date ScheduledDateNotEqualTo = null; public ArrayList ScheduledDateBetween = null; public ArrayList ScheduledDateIn = null; public Boolean NewDeliverStockFlag = null; public BigDecimal NewQuantityDelivered = null; public BigDecimal NewQuantityDeliveredGreaterThanOrEqualTo = null; public BigDecimal NewQuantityDeliveredGreaterThan = null; public BigDecimal NewQuantityDeliveredLessThan = null; public BigDecimal NewQuantityDeliveredLessThanOrEqualTo = null; public BigDecimal NewQuantityDeliveredNotEqualTo = null; public ArrayList NewQuantityDeliveredBetween = null; public ArrayList NewQuantityDeliveredIn = null; public Boolean UpdateFailed = null; public String FailReason = null; public String FailReasonStartsWith = null; public String FailReasonEndsWith = null; public String FailReasonContains = null; public String FailReasonLike = null; public ArrayList FailReasonBetween = null; public ArrayList FailReasonIn = null; public Short QuantityDecimalPlaces = null; public Short QuantityDecimalPlacesGreaterThanOrEqualTo = null; public Short QuantityDecimalPlacesGreaterThan = null; public Short QuantityDecimalPlacesLessThan = null; public Short QuantityDecimalPlacesLessThanOrEqualTo = null; public Short QuantityDecimalPlacesNotEqualTo = null; public ArrayList QuantityDecimalPlacesBetween = null; public ArrayList QuantityDecimalPlacesIn = null; public String getRecID() { return RecID; } public SO_SalesDelBatchLinesQuery setRecID(String value) { this.RecID = value; return this; } public String getRecIDStartsWith() { return RecIDStartsWith; } public SO_SalesDelBatchLinesQuery setRecIDStartsWith(String value) { this.RecIDStartsWith = value; return this; } public String getRecIDEndsWith() { return RecIDEndsWith; } public SO_SalesDelBatchLinesQuery setRecIDEndsWith(String value) { this.RecIDEndsWith = value; return this; } public String getRecIDContains() { return RecIDContains; } public SO_SalesDelBatchLinesQuery setRecIDContains(String value) { this.RecIDContains = value; return this; } public String getRecIDLike() { return RecIDLike; } public SO_SalesDelBatchLinesQuery setRecIDLike(String value) { this.RecIDLike = value; return this; } public ArrayList getRecIDBetween() { return RecIDBetween; } public SO_SalesDelBatchLinesQuery setRecIDBetween(ArrayList value) { this.RecIDBetween = value; return this; } public ArrayList getRecIDIn() { return RecIDIn; } public SO_SalesDelBatchLinesQuery setRecIDIn(ArrayList value) { this.RecIDIn = value; return this; } public String getSalesDelBatchID() { return SalesDelBatchID; } public SO_SalesDelBatchLinesQuery setSalesDelBatchID(String value) { this.SalesDelBatchID = value; return this; } public String getSalesDelBatchIDStartsWith() { return SalesDelBatchIDStartsWith; } public SO_SalesDelBatchLinesQuery setSalesDelBatchIDStartsWith(String value) { this.SalesDelBatchIDStartsWith = value; return this; } public String getSalesDelBatchIDEndsWith() { return SalesDelBatchIDEndsWith; } public SO_SalesDelBatchLinesQuery setSalesDelBatchIDEndsWith(String value) { this.SalesDelBatchIDEndsWith = value; return this; } public String getSalesDelBatchIDContains() { return SalesDelBatchIDContains; } public SO_SalesDelBatchLinesQuery setSalesDelBatchIDContains(String value) { this.SalesDelBatchIDContains = value; return this; } public String getSalesDelBatchIDLike() { return SalesDelBatchIDLike; } public SO_SalesDelBatchLinesQuery setSalesDelBatchIDLike(String value) { this.SalesDelBatchIDLike = value; return this; } public ArrayList getSalesDelBatchIDBetween() { return SalesDelBatchIDBetween; } public SO_SalesDelBatchLinesQuery setSalesDelBatchIDBetween(ArrayList value) { this.SalesDelBatchIDBetween = value; return this; } public ArrayList getSalesDelBatchIDIn() { return SalesDelBatchIDIn; } public SO_SalesDelBatchLinesQuery setSalesDelBatchIDIn(ArrayList value) { this.SalesDelBatchIDIn = value; return this; } public Integer getLineNumber() { return LineNumber; } public SO_SalesDelBatchLinesQuery setLineNumber(Integer value) { this.LineNumber = value; return this; } public Integer getLineNumberGreaterThanOrEqualTo() { return LineNumberGreaterThanOrEqualTo; } public SO_SalesDelBatchLinesQuery setLineNumberGreaterThanOrEqualTo(Integer value) { this.LineNumberGreaterThanOrEqualTo = value; return this; } public Integer getLineNumberGreaterThan() { return LineNumberGreaterThan; } public SO_SalesDelBatchLinesQuery setLineNumberGreaterThan(Integer value) { this.LineNumberGreaterThan = value; return this; } public Integer getLineNumberLessThan() { return LineNumberLessThan; } public SO_SalesDelBatchLinesQuery setLineNumberLessThan(Integer value) { this.LineNumberLessThan = value; return this; } public Integer getLineNumberLessThanOrEqualTo() { return LineNumberLessThanOrEqualTo; } public SO_SalesDelBatchLinesQuery setLineNumberLessThanOrEqualTo(Integer value) { this.LineNumberLessThanOrEqualTo = value; return this; } public Integer getLineNumberNotEqualTo() { return LineNumberNotEqualTo; } public SO_SalesDelBatchLinesQuery setLineNumberNotEqualTo(Integer value) { this.LineNumberNotEqualTo = value; return this; } public ArrayList getLineNumberBetween() { return LineNumberBetween; } public SO_SalesDelBatchLinesQuery setLineNumberBetween(ArrayList value) { this.LineNumberBetween = value; return this; } public ArrayList getLineNumberIn() { return LineNumberIn; } public SO_SalesDelBatchLinesQuery setLineNumberIn(ArrayList value) { this.LineNumberIn = value; return this; } public String getInvoiceID() { return InvoiceID; } public SO_SalesDelBatchLinesQuery setInvoiceID(String value) { this.InvoiceID = value; return this; } public String getInvoiceIDStartsWith() { return InvoiceIDStartsWith; } public SO_SalesDelBatchLinesQuery setInvoiceIDStartsWith(String value) { this.InvoiceIDStartsWith = value; return this; } public String getInvoiceIDEndsWith() { return InvoiceIDEndsWith; } public SO_SalesDelBatchLinesQuery setInvoiceIDEndsWith(String value) { this.InvoiceIDEndsWith = value; return this; } public String getInvoiceIDContains() { return InvoiceIDContains; } public SO_SalesDelBatchLinesQuery setInvoiceIDContains(String value) { this.InvoiceIDContains = value; return this; } public String getInvoiceIDLike() { return InvoiceIDLike; } public SO_SalesDelBatchLinesQuery setInvoiceIDLike(String value) { this.InvoiceIDLike = value; return this; } public ArrayList getInvoiceIDBetween() { return InvoiceIDBetween; } public SO_SalesDelBatchLinesQuery setInvoiceIDBetween(ArrayList value) { this.InvoiceIDBetween = value; return this; } public ArrayList getInvoiceIDIn() { return InvoiceIDIn; } public SO_SalesDelBatchLinesQuery setInvoiceIDIn(ArrayList value) { this.InvoiceIDIn = value; return this; } public String getInvoiceNo() { return InvoiceNo; } public SO_SalesDelBatchLinesQuery setInvoiceNo(String value) { this.InvoiceNo = value; return this; } public String getInvoiceNoStartsWith() { return InvoiceNoStartsWith; } public SO_SalesDelBatchLinesQuery setInvoiceNoStartsWith(String value) { this.InvoiceNoStartsWith = value; return this; } public String getInvoiceNoEndsWith() { return InvoiceNoEndsWith; } public SO_SalesDelBatchLinesQuery setInvoiceNoEndsWith(String value) { this.InvoiceNoEndsWith = value; return this; } public String getInvoiceNoContains() { return InvoiceNoContains; } public SO_SalesDelBatchLinesQuery setInvoiceNoContains(String value) { this.InvoiceNoContains = value; return this; } public String getInvoiceNoLike() { return InvoiceNoLike; } public SO_SalesDelBatchLinesQuery setInvoiceNoLike(String value) { this.InvoiceNoLike = value; return this; } public ArrayList getInvoiceNoBetween() { return InvoiceNoBetween; } public SO_SalesDelBatchLinesQuery setInvoiceNoBetween(ArrayList value) { this.InvoiceNoBetween = value; return this; } public ArrayList getInvoiceNoIn() { return InvoiceNoIn; } public SO_SalesDelBatchLinesQuery setInvoiceNoIn(ArrayList value) { this.InvoiceNoIn = value; return this; } public String getDebtorID() { return DebtorID; } public SO_SalesDelBatchLinesQuery setDebtorID(String value) { this.DebtorID = value; return this; } public String getDebtorIDStartsWith() { return DebtorIDStartsWith; } public SO_SalesDelBatchLinesQuery setDebtorIDStartsWith(String value) { this.DebtorIDStartsWith = value; return this; } public String getDebtorIDEndsWith() { return DebtorIDEndsWith; } public SO_SalesDelBatchLinesQuery setDebtorIDEndsWith(String value) { this.DebtorIDEndsWith = value; return this; } public String getDebtorIDContains() { return DebtorIDContains; } public SO_SalesDelBatchLinesQuery setDebtorIDContains(String value) { this.DebtorIDContains = value; return this; } public String getDebtorIDLike() { return DebtorIDLike; } public SO_SalesDelBatchLinesQuery setDebtorIDLike(String value) { this.DebtorIDLike = value; return this; } public ArrayList getDebtorIDBetween() { return DebtorIDBetween; } public SO_SalesDelBatchLinesQuery setDebtorIDBetween(ArrayList value) { this.DebtorIDBetween = value; return this; } public ArrayList getDebtorIDIn() { return DebtorIDIn; } public SO_SalesDelBatchLinesQuery setDebtorIDIn(ArrayList value) { this.DebtorIDIn = value; return this; } public String getDebtorAccountNo() { return DebtorAccountNo; } public SO_SalesDelBatchLinesQuery setDebtorAccountNo(String value) { this.DebtorAccountNo = value; return this; } public String getDebtorAccountNoStartsWith() { return DebtorAccountNoStartsWith; } public SO_SalesDelBatchLinesQuery setDebtorAccountNoStartsWith(String value) { this.DebtorAccountNoStartsWith = value; return this; } public String getDebtorAccountNoEndsWith() { return DebtorAccountNoEndsWith; } public SO_SalesDelBatchLinesQuery setDebtorAccountNoEndsWith(String value) { this.DebtorAccountNoEndsWith = value; return this; } public String getDebtorAccountNoContains() { return DebtorAccountNoContains; } public SO_SalesDelBatchLinesQuery setDebtorAccountNoContains(String value) { this.DebtorAccountNoContains = value; return this; } public String getDebtorAccountNoLike() { return DebtorAccountNoLike; } public SO_SalesDelBatchLinesQuery setDebtorAccountNoLike(String value) { this.DebtorAccountNoLike = value; return this; } public ArrayList getDebtorAccountNoBetween() { return DebtorAccountNoBetween; } public SO_SalesDelBatchLinesQuery setDebtorAccountNoBetween(ArrayList value) { this.DebtorAccountNoBetween = value; return this; } public ArrayList getDebtorAccountNoIn() { return DebtorAccountNoIn; } public SO_SalesDelBatchLinesQuery setDebtorAccountNoIn(ArrayList value) { this.DebtorAccountNoIn = value; return this; } public String getDebtorName() { return DebtorName; } public SO_SalesDelBatchLinesQuery setDebtorName(String value) { this.DebtorName = value; return this; } public String getDebtorNameStartsWith() { return DebtorNameStartsWith; } public SO_SalesDelBatchLinesQuery setDebtorNameStartsWith(String value) { this.DebtorNameStartsWith = value; return this; } public String getDebtorNameEndsWith() { return DebtorNameEndsWith; } public SO_SalesDelBatchLinesQuery setDebtorNameEndsWith(String value) { this.DebtorNameEndsWith = value; return this; } public String getDebtorNameContains() { return DebtorNameContains; } public SO_SalesDelBatchLinesQuery setDebtorNameContains(String value) { this.DebtorNameContains = value; return this; } public String getDebtorNameLike() { return DebtorNameLike; } public SO_SalesDelBatchLinesQuery setDebtorNameLike(String value) { this.DebtorNameLike = value; return this; } public ArrayList getDebtorNameBetween() { return DebtorNameBetween; } public SO_SalesDelBatchLinesQuery setDebtorNameBetween(ArrayList value) { this.DebtorNameBetween = value; return this; } public ArrayList getDebtorNameIn() { return DebtorNameIn; } public SO_SalesDelBatchLinesQuery setDebtorNameIn(ArrayList value) { this.DebtorNameIn = value; return this; } public String getInvoiceLineID() { return InvoiceLineID; } public SO_SalesDelBatchLinesQuery setInvoiceLineID(String value) { this.InvoiceLineID = value; return this; } public String getInvoiceLineIDStartsWith() { return InvoiceLineIDStartsWith; } public SO_SalesDelBatchLinesQuery setInvoiceLineIDStartsWith(String value) { this.InvoiceLineIDStartsWith = value; return this; } public String getInvoiceLineIDEndsWith() { return InvoiceLineIDEndsWith; } public SO_SalesDelBatchLinesQuery setInvoiceLineIDEndsWith(String value) { this.InvoiceLineIDEndsWith = value; return this; } public String getInvoiceLineIDContains() { return InvoiceLineIDContains; } public SO_SalesDelBatchLinesQuery setInvoiceLineIDContains(String value) { this.InvoiceLineIDContains = value; return this; } public String getInvoiceLineIDLike() { return InvoiceLineIDLike; } public SO_SalesDelBatchLinesQuery setInvoiceLineIDLike(String value) { this.InvoiceLineIDLike = value; return this; } public ArrayList getInvoiceLineIDBetween() { return InvoiceLineIDBetween; } public SO_SalesDelBatchLinesQuery setInvoiceLineIDBetween(ArrayList value) { this.InvoiceLineIDBetween = value; return this; } public ArrayList getInvoiceLineIDIn() { return InvoiceLineIDIn; } public SO_SalesDelBatchLinesQuery setInvoiceLineIDIn(ArrayList value) { this.InvoiceLineIDIn = value; return this; } public String getInventoryID() { return InventoryID; } public SO_SalesDelBatchLinesQuery setInventoryID(String value) { this.InventoryID = value; return this; } public String getInventoryIDStartsWith() { return InventoryIDStartsWith; } public SO_SalesDelBatchLinesQuery setInventoryIDStartsWith(String value) { this.InventoryIDStartsWith = value; return this; } public String getInventoryIDEndsWith() { return InventoryIDEndsWith; } public SO_SalesDelBatchLinesQuery setInventoryIDEndsWith(String value) { this.InventoryIDEndsWith = value; return this; } public String getInventoryIDContains() { return InventoryIDContains; } public SO_SalesDelBatchLinesQuery setInventoryIDContains(String value) { this.InventoryIDContains = value; return this; } public String getInventoryIDLike() { return InventoryIDLike; } public SO_SalesDelBatchLinesQuery setInventoryIDLike(String value) { this.InventoryIDLike = value; return this; } public ArrayList getInventoryIDBetween() { return InventoryIDBetween; } public SO_SalesDelBatchLinesQuery setInventoryIDBetween(ArrayList value) { this.InventoryIDBetween = value; return this; } public ArrayList getInventoryIDIn() { return InventoryIDIn; } public SO_SalesDelBatchLinesQuery setInventoryIDIn(ArrayList value) { this.InventoryIDIn = value; return this; } public String getPartNo() { return PartNo; } public SO_SalesDelBatchLinesQuery setPartNo(String value) { this.PartNo = value; return this; } public String getPartNoStartsWith() { return PartNoStartsWith; } public SO_SalesDelBatchLinesQuery setPartNoStartsWith(String value) { this.PartNoStartsWith = value; return this; } public String getPartNoEndsWith() { return PartNoEndsWith; } public SO_SalesDelBatchLinesQuery setPartNoEndsWith(String value) { this.PartNoEndsWith = value; return this; } public String getPartNoContains() { return PartNoContains; } public SO_SalesDelBatchLinesQuery setPartNoContains(String value) { this.PartNoContains = value; return this; } public String getPartNoLike() { return PartNoLike; } public SO_SalesDelBatchLinesQuery setPartNoLike(String value) { this.PartNoLike = value; return this; } public ArrayList getPartNoBetween() { return PartNoBetween; } public SO_SalesDelBatchLinesQuery setPartNoBetween(ArrayList value) { this.PartNoBetween = value; return this; } public ArrayList getPartNoIn() { return PartNoIn; } public SO_SalesDelBatchLinesQuery setPartNoIn(ArrayList value) { this.PartNoIn = value; return this; } public String getDescription() { return Description; } public SO_SalesDelBatchLinesQuery setDescription(String value) { this.Description = value; return this; } public String getDescriptionStartsWith() { return DescriptionStartsWith; } public SO_SalesDelBatchLinesQuery setDescriptionStartsWith(String value) { this.DescriptionStartsWith = value; return this; } public String getDescriptionEndsWith() { return DescriptionEndsWith; } public SO_SalesDelBatchLinesQuery setDescriptionEndsWith(String value) { this.DescriptionEndsWith = value; return this; } public String getDescriptionContains() { return DescriptionContains; } public SO_SalesDelBatchLinesQuery setDescriptionContains(String value) { this.DescriptionContains = value; return this; } public String getDescriptionLike() { return DescriptionLike; } public SO_SalesDelBatchLinesQuery setDescriptionLike(String value) { this.DescriptionLike = value; return this; } public ArrayList getDescriptionBetween() { return DescriptionBetween; } public SO_SalesDelBatchLinesQuery setDescriptionBetween(ArrayList value) { this.DescriptionBetween = value; return this; } public ArrayList getDescriptionIn() { return DescriptionIn; } public SO_SalesDelBatchLinesQuery setDescriptionIn(ArrayList value) { this.DescriptionIn = value; return this; } public BigDecimal getQuantity() { return Quantity; } public SO_SalesDelBatchLinesQuery setQuantity(BigDecimal value) { this.Quantity = value; return this; } public BigDecimal getQuantityGreaterThanOrEqualTo() { return QuantityGreaterThanOrEqualTo; } public SO_SalesDelBatchLinesQuery setQuantityGreaterThanOrEqualTo(BigDecimal value) { this.QuantityGreaterThanOrEqualTo = value; return this; } public BigDecimal getQuantityGreaterThan() { return QuantityGreaterThan; } public SO_SalesDelBatchLinesQuery setQuantityGreaterThan(BigDecimal value) { this.QuantityGreaterThan = value; return this; } public BigDecimal getQuantityLessThan() { return QuantityLessThan; } public SO_SalesDelBatchLinesQuery setQuantityLessThan(BigDecimal value) { this.QuantityLessThan = value; return this; } public BigDecimal getQuantityLessThanOrEqualTo() { return QuantityLessThanOrEqualTo; } public SO_SalesDelBatchLinesQuery setQuantityLessThanOrEqualTo(BigDecimal value) { this.QuantityLessThanOrEqualTo = value; return this; } public BigDecimal getQuantityNotEqualTo() { return QuantityNotEqualTo; } public SO_SalesDelBatchLinesQuery setQuantityNotEqualTo(BigDecimal value) { this.QuantityNotEqualTo = value; return this; } public ArrayList getQuantityBetween() { return QuantityBetween; } public SO_SalesDelBatchLinesQuery setQuantityBetween(ArrayList value) { this.QuantityBetween = value; return this; } public ArrayList getQuantityIn() { return QuantityIn; } public SO_SalesDelBatchLinesQuery setQuantityIn(ArrayList value) { this.QuantityIn = value; return this; } public BigDecimal getQuantityBackOrdered() { return QuantityBackOrdered; } public SO_SalesDelBatchLinesQuery setQuantityBackOrdered(BigDecimal value) { this.QuantityBackOrdered = value; return this; } public BigDecimal getQuantityBackOrderedGreaterThanOrEqualTo() { return QuantityBackOrderedGreaterThanOrEqualTo; } public SO_SalesDelBatchLinesQuery setQuantityBackOrderedGreaterThanOrEqualTo(BigDecimal value) { this.QuantityBackOrderedGreaterThanOrEqualTo = value; return this; } public BigDecimal getQuantityBackOrderedGreaterThan() { return QuantityBackOrderedGreaterThan; } public SO_SalesDelBatchLinesQuery setQuantityBackOrderedGreaterThan(BigDecimal value) { this.QuantityBackOrderedGreaterThan = value; return this; } public BigDecimal getQuantityBackOrderedLessThan() { return QuantityBackOrderedLessThan; } public SO_SalesDelBatchLinesQuery setQuantityBackOrderedLessThan(BigDecimal value) { this.QuantityBackOrderedLessThan = value; return this; } public BigDecimal getQuantityBackOrderedLessThanOrEqualTo() { return QuantityBackOrderedLessThanOrEqualTo; } public SO_SalesDelBatchLinesQuery setQuantityBackOrderedLessThanOrEqualTo(BigDecimal value) { this.QuantityBackOrderedLessThanOrEqualTo = value; return this; } public BigDecimal getQuantityBackOrderedNotEqualTo() { return QuantityBackOrderedNotEqualTo; } public SO_SalesDelBatchLinesQuery setQuantityBackOrderedNotEqualTo(BigDecimal value) { this.QuantityBackOrderedNotEqualTo = value; return this; } public ArrayList getQuantityBackOrderedBetween() { return QuantityBackOrderedBetween; } public SO_SalesDelBatchLinesQuery setQuantityBackOrderedBetween(ArrayList value) { this.QuantityBackOrderedBetween = value; return this; } public ArrayList getQuantityBackOrderedIn() { return QuantityBackOrderedIn; } public SO_SalesDelBatchLinesQuery setQuantityBackOrderedIn(ArrayList value) { this.QuantityBackOrderedIn = value; return this; } public Date getForwardOrderDate() { return ForwardOrderDate; } public SO_SalesDelBatchLinesQuery setForwardOrderDate(Date value) { this.ForwardOrderDate = value; return this; } public Date getForwardOrderDateGreaterThanOrEqualTo() { return ForwardOrderDateGreaterThanOrEqualTo; } public SO_SalesDelBatchLinesQuery setForwardOrderDateGreaterThanOrEqualTo(Date value) { this.ForwardOrderDateGreaterThanOrEqualTo = value; return this; } public Date getForwardOrderDateGreaterThan() { return ForwardOrderDateGreaterThan; } public SO_SalesDelBatchLinesQuery setForwardOrderDateGreaterThan(Date value) { this.ForwardOrderDateGreaterThan = value; return this; } public Date getForwardOrderDateLessThan() { return ForwardOrderDateLessThan; } public SO_SalesDelBatchLinesQuery setForwardOrderDateLessThan(Date value) { this.ForwardOrderDateLessThan = value; return this; } public Date getForwardOrderDateLessThanOrEqualTo() { return ForwardOrderDateLessThanOrEqualTo; } public SO_SalesDelBatchLinesQuery setForwardOrderDateLessThanOrEqualTo(Date value) { this.ForwardOrderDateLessThanOrEqualTo = value; return this; } public Date getForwardOrderDateNotEqualTo() { return ForwardOrderDateNotEqualTo; } public SO_SalesDelBatchLinesQuery setForwardOrderDateNotEqualTo(Date value) { this.ForwardOrderDateNotEqualTo = value; return this; } public ArrayList getForwardOrderDateBetween() { return ForwardOrderDateBetween; } public SO_SalesDelBatchLinesQuery setForwardOrderDateBetween(ArrayList value) { this.ForwardOrderDateBetween = value; return this; } public ArrayList getForwardOrderDateIn() { return ForwardOrderDateIn; } public SO_SalesDelBatchLinesQuery setForwardOrderDateIn(ArrayList value) { this.ForwardOrderDateIn = value; return this; } public Date getScheduledDate() { return ScheduledDate; } public SO_SalesDelBatchLinesQuery setScheduledDate(Date value) { this.ScheduledDate = value; return this; } public Date getScheduledDateGreaterThanOrEqualTo() { return ScheduledDateGreaterThanOrEqualTo; } public SO_SalesDelBatchLinesQuery setScheduledDateGreaterThanOrEqualTo(Date value) { this.ScheduledDateGreaterThanOrEqualTo = value; return this; } public Date getScheduledDateGreaterThan() { return ScheduledDateGreaterThan; } public SO_SalesDelBatchLinesQuery setScheduledDateGreaterThan(Date value) { this.ScheduledDateGreaterThan = value; return this; } public Date getScheduledDateLessThan() { return ScheduledDateLessThan; } public SO_SalesDelBatchLinesQuery setScheduledDateLessThan(Date value) { this.ScheduledDateLessThan = value; return this; } public Date getScheduledDateLessThanOrEqualTo() { return ScheduledDateLessThanOrEqualTo; } public SO_SalesDelBatchLinesQuery setScheduledDateLessThanOrEqualTo(Date value) { this.ScheduledDateLessThanOrEqualTo = value; return this; } public Date getScheduledDateNotEqualTo() { return ScheduledDateNotEqualTo; } public SO_SalesDelBatchLinesQuery setScheduledDateNotEqualTo(Date value) { this.ScheduledDateNotEqualTo = value; return this; } public ArrayList getScheduledDateBetween() { return ScheduledDateBetween; } public SO_SalesDelBatchLinesQuery setScheduledDateBetween(ArrayList value) { this.ScheduledDateBetween = value; return this; } public ArrayList getScheduledDateIn() { return ScheduledDateIn; } public SO_SalesDelBatchLinesQuery setScheduledDateIn(ArrayList value) { this.ScheduledDateIn = value; return this; } public Boolean isNewDeliverStockFlag() { return NewDeliverStockFlag; } public SO_SalesDelBatchLinesQuery setNewDeliverStockFlag(Boolean value) { this.NewDeliverStockFlag = value; return this; } public BigDecimal getNewQuantityDelivered() { return NewQuantityDelivered; } public SO_SalesDelBatchLinesQuery setNewQuantityDelivered(BigDecimal value) { this.NewQuantityDelivered = value; return this; } public BigDecimal getNewQuantityDeliveredGreaterThanOrEqualTo() { return NewQuantityDeliveredGreaterThanOrEqualTo; } public SO_SalesDelBatchLinesQuery setNewQuantityDeliveredGreaterThanOrEqualTo(BigDecimal value) { this.NewQuantityDeliveredGreaterThanOrEqualTo = value; return this; } public BigDecimal getNewQuantityDeliveredGreaterThan() { return NewQuantityDeliveredGreaterThan; } public SO_SalesDelBatchLinesQuery setNewQuantityDeliveredGreaterThan(BigDecimal value) { this.NewQuantityDeliveredGreaterThan = value; return this; } public BigDecimal getNewQuantityDeliveredLessThan() { return NewQuantityDeliveredLessThan; } public SO_SalesDelBatchLinesQuery setNewQuantityDeliveredLessThan(BigDecimal value) { this.NewQuantityDeliveredLessThan = value; return this; } public BigDecimal getNewQuantityDeliveredLessThanOrEqualTo() { return NewQuantityDeliveredLessThanOrEqualTo; } public SO_SalesDelBatchLinesQuery setNewQuantityDeliveredLessThanOrEqualTo(BigDecimal value) { this.NewQuantityDeliveredLessThanOrEqualTo = value; return this; } public BigDecimal getNewQuantityDeliveredNotEqualTo() { return NewQuantityDeliveredNotEqualTo; } public SO_SalesDelBatchLinesQuery setNewQuantityDeliveredNotEqualTo(BigDecimal value) { this.NewQuantityDeliveredNotEqualTo = value; return this; } public ArrayList getNewQuantityDeliveredBetween() { return NewQuantityDeliveredBetween; } public SO_SalesDelBatchLinesQuery setNewQuantityDeliveredBetween(ArrayList value) { this.NewQuantityDeliveredBetween = value; return this; } public ArrayList getNewQuantityDeliveredIn() { return NewQuantityDeliveredIn; } public SO_SalesDelBatchLinesQuery setNewQuantityDeliveredIn(ArrayList value) { this.NewQuantityDeliveredIn = value; return this; } public Boolean isUpdateFailed() { return UpdateFailed; } public SO_SalesDelBatchLinesQuery setUpdateFailed(Boolean value) { this.UpdateFailed = value; return this; } public String getFailReason() { return FailReason; } public SO_SalesDelBatchLinesQuery setFailReason(String value) { this.FailReason = value; return this; } public String getFailReasonStartsWith() { return FailReasonStartsWith; } public SO_SalesDelBatchLinesQuery setFailReasonStartsWith(String value) { this.FailReasonStartsWith = value; return this; } public String getFailReasonEndsWith() { return FailReasonEndsWith; } public SO_SalesDelBatchLinesQuery setFailReasonEndsWith(String value) { this.FailReasonEndsWith = value; return this; } public String getFailReasonContains() { return FailReasonContains; } public SO_SalesDelBatchLinesQuery setFailReasonContains(String value) { this.FailReasonContains = value; return this; } public String getFailReasonLike() { return FailReasonLike; } public SO_SalesDelBatchLinesQuery setFailReasonLike(String value) { this.FailReasonLike = value; return this; } public ArrayList getFailReasonBetween() { return FailReasonBetween; } public SO_SalesDelBatchLinesQuery setFailReasonBetween(ArrayList value) { this.FailReasonBetween = value; return this; } public ArrayList getFailReasonIn() { return FailReasonIn; } public SO_SalesDelBatchLinesQuery setFailReasonIn(ArrayList value) { this.FailReasonIn = value; return this; } public Short getQuantityDecimalPlaces() { return QuantityDecimalPlaces; } public SO_SalesDelBatchLinesQuery setQuantityDecimalPlaces(Short value) { this.QuantityDecimalPlaces = value; return this; } public Short getQuantityDecimalPlacesGreaterThanOrEqualTo() { return QuantityDecimalPlacesGreaterThanOrEqualTo; } public SO_SalesDelBatchLinesQuery setQuantityDecimalPlacesGreaterThanOrEqualTo(Short value) { this.QuantityDecimalPlacesGreaterThanOrEqualTo = value; return this; } public Short getQuantityDecimalPlacesGreaterThan() { return QuantityDecimalPlacesGreaterThan; } public SO_SalesDelBatchLinesQuery setQuantityDecimalPlacesGreaterThan(Short value) { this.QuantityDecimalPlacesGreaterThan = value; return this; } public Short getQuantityDecimalPlacesLessThan() { return QuantityDecimalPlacesLessThan; } public SO_SalesDelBatchLinesQuery setQuantityDecimalPlacesLessThan(Short value) { this.QuantityDecimalPlacesLessThan = value; return this; } public Short getQuantityDecimalPlacesLessThanOrEqualTo() { return QuantityDecimalPlacesLessThanOrEqualTo; } public SO_SalesDelBatchLinesQuery setQuantityDecimalPlacesLessThanOrEqualTo(Short value) { this.QuantityDecimalPlacesLessThanOrEqualTo = value; return this; } public Short getQuantityDecimalPlacesNotEqualTo() { return QuantityDecimalPlacesNotEqualTo; } public SO_SalesDelBatchLinesQuery setQuantityDecimalPlacesNotEqualTo(Short value) { this.QuantityDecimalPlacesNotEqualTo = value; return this; } public ArrayList getQuantityDecimalPlacesBetween() { return QuantityDecimalPlacesBetween; } public SO_SalesDelBatchLinesQuery setQuantityDecimalPlacesBetween(ArrayList value) { this.QuantityDecimalPlacesBetween = value; return this; } public ArrayList getQuantityDecimalPlacesIn() { return QuantityDecimalPlacesIn; } public SO_SalesDelBatchLinesQuery setQuantityDecimalPlacesIn(ArrayList value) { this.QuantityDecimalPlacesIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class SO_SalesHistoryQuery extends QueryDb implements IReturn> { public String SalesID = null; public String SalesIDStartsWith = null; public String SalesIDEndsWith = null; public String SalesIDContains = null; public String SalesIDLike = null; public ArrayList SalesIDBetween = null; public ArrayList SalesIDIn = null; public Date DateRun = null; public Date DateRunGreaterThanOrEqualTo = null; public Date DateRunGreaterThan = null; public Date DateRunLessThan = null; public Date DateRunLessThanOrEqualTo = null; public Date DateRunNotEqualTo = null; public ArrayList DateRunBetween = null; public ArrayList DateRunIn = null; public Date InvoiceDate = null; public Date InvoiceDateGreaterThanOrEqualTo = null; public Date InvoiceDateGreaterThan = null; public Date InvoiceDateLessThan = null; public Date InvoiceDateLessThanOrEqualTo = null; public Date InvoiceDateNotEqualTo = null; public ArrayList InvoiceDateBetween = null; public ArrayList InvoiceDateIn = null; public String DebtorID = null; public String DebtorIDStartsWith = null; public String DebtorIDEndsWith = null; public String DebtorIDContains = null; public String DebtorIDLike = null; public ArrayList DebtorIDBetween = null; public ArrayList DebtorIDIn = null; public String InvoiceNo = null; public String InvoiceNoStartsWith = null; public String InvoiceNoEndsWith = null; public String InvoiceNoContains = null; public String InvoiceNoLike = null; public ArrayList InvoiceNoBetween = null; public ArrayList InvoiceNoIn = null; public String PartNo = null; public String PartNoStartsWith = null; public String PartNoEndsWith = null; public String PartNoContains = null; public String PartNoLike = null; public ArrayList PartNoBetween = null; public ArrayList PartNoIn = null; public String Description = null; public String DescriptionStartsWith = null; public String DescriptionEndsWith = null; public String DescriptionContains = null; public String DescriptionLike = null; public ArrayList DescriptionBetween = null; public ArrayList DescriptionIn = null; public String ClassDescription = null; public String ClassDescriptionStartsWith = null; public String ClassDescriptionEndsWith = null; public String ClassDescriptionContains = null; public String ClassDescriptionLike = null; public ArrayList ClassDescriptionBetween = null; public ArrayList ClassDescriptionIn = null; public String Cat1Description = null; public String Cat1DescriptionStartsWith = null; public String Cat1DescriptionEndsWith = null; public String Cat1DescriptionContains = null; public String Cat1DescriptionLike = null; public ArrayList Cat1DescriptionBetween = null; public ArrayList Cat1DescriptionIn = null; public String Cat2Description = null; public String Cat2DescriptionStartsWith = null; public String Cat2DescriptionEndsWith = null; public String Cat2DescriptionContains = null; public String Cat2DescriptionLike = null; public ArrayList Cat2DescriptionBetween = null; public ArrayList Cat2DescriptionIn = null; public String Cat3Description = null; public String Cat3DescriptionStartsWith = null; public String Cat3DescriptionEndsWith = null; public String Cat3DescriptionContains = null; public String Cat3DescriptionLike = null; public ArrayList Cat3DescriptionBetween = null; public ArrayList Cat3DescriptionIn = null; public BigDecimal Quantity = null; public BigDecimal QuantityGreaterThanOrEqualTo = null; public BigDecimal QuantityGreaterThan = null; public BigDecimal QuantityLessThan = null; public BigDecimal QuantityLessThanOrEqualTo = null; public BigDecimal QuantityNotEqualTo = null; public ArrayList QuantityBetween = null; public ArrayList QuantityIn = null; public BigDecimal UnitCost = null; public BigDecimal UnitCostGreaterThanOrEqualTo = null; public BigDecimal UnitCostGreaterThan = null; public BigDecimal UnitCostLessThan = null; public BigDecimal UnitCostLessThanOrEqualTo = null; public BigDecimal UnitCostNotEqualTo = null; public ArrayList UnitCostBetween = null; public ArrayList UnitCostIn = null; public BigDecimal UnitSellPrice = null; public BigDecimal UnitSellPriceGreaterThanOrEqualTo = null; public BigDecimal UnitSellPriceGreaterThan = null; public BigDecimal UnitSellPriceLessThan = null; public BigDecimal UnitSellPriceLessThanOrEqualTo = null; public BigDecimal UnitSellPriceNotEqualTo = null; public ArrayList UnitSellPriceBetween = null; public ArrayList UnitSellPriceIn = null; public BigDecimal LineTax = null; public BigDecimal LineTaxGreaterThanOrEqualTo = null; public BigDecimal LineTaxGreaterThan = null; public BigDecimal LineTaxLessThan = null; public BigDecimal LineTaxLessThanOrEqualTo = null; public BigDecimal LineTaxNotEqualTo = null; public ArrayList LineTaxBetween = null; public ArrayList LineTaxIn = null; public BigDecimal LineTotal = null; public BigDecimal LineTotalGreaterThanOrEqualTo = null; public BigDecimal LineTotalGreaterThan = null; public BigDecimal LineTotalLessThan = null; public BigDecimal LineTotalLessThanOrEqualTo = null; public BigDecimal LineTotalNotEqualTo = null; public ArrayList LineTotalBetween = null; public ArrayList LineTotalIn = null; public String RunNo = null; public String RunNoStartsWith = null; public String RunNoEndsWith = null; public String RunNoContains = null; public String RunNoLike = null; public ArrayList RunNoBetween = null; public ArrayList RunNoIn = null; public Short HistoryNo = null; public Short HistoryNoGreaterThanOrEqualTo = null; public Short HistoryNoGreaterThan = null; public Short HistoryNoLessThan = null; public Short HistoryNoLessThanOrEqualTo = null; public Short HistoryNoNotEqualTo = null; public ArrayList HistoryNoBetween = null; public ArrayList HistoryNoIn = null; public String InvoiceID = null; public String InvoiceIDStartsWith = null; public String InvoiceIDEndsWith = null; public String InvoiceIDContains = null; public String InvoiceIDLike = null; public ArrayList InvoiceIDBetween = null; public ArrayList InvoiceIDIn = null; public String InventoryID = null; public String InventoryIDStartsWith = null; public String InventoryIDEndsWith = null; public String InventoryIDContains = null; public String InventoryIDLike = null; public ArrayList InventoryIDBetween = null; public ArrayList InventoryIDIn = null; public Short YearNo = null; public Short YearNoGreaterThanOrEqualTo = null; public Short YearNoGreaterThan = null; public Short YearNoLessThan = null; public Short YearNoLessThanOrEqualTo = null; public Short YearNoNotEqualTo = null; public ArrayList YearNoBetween = null; public ArrayList YearNoIn = null; public Short MonthNo = null; public Short MonthNoGreaterThanOrEqualTo = null; public Short MonthNoGreaterThan = null; public Short MonthNoLessThan = null; public Short MonthNoLessThanOrEqualTo = null; public Short MonthNoNotEqualTo = null; public ArrayList MonthNoBetween = null; public ArrayList MonthNoIn = null; public String IN_LogicalID = null; public String IN_LogicalIDStartsWith = null; public String IN_LogicalIDEndsWith = null; public String IN_LogicalIDContains = null; public String IN_LogicalIDLike = null; public ArrayList IN_LogicalIDBetween = null; public ArrayList IN_LogicalIDIn = null; public String Cat4Description = null; public String Cat4DescriptionStartsWith = null; public String Cat4DescriptionEndsWith = null; public String Cat4DescriptionContains = null; public String Cat4DescriptionLike = null; public ArrayList Cat4DescriptionBetween = null; public ArrayList Cat4DescriptionIn = null; public String Cat5Description = null; public String Cat5DescriptionStartsWith = null; public String Cat5DescriptionEndsWith = null; public String Cat5DescriptionContains = null; public String Cat5DescriptionLike = null; public ArrayList Cat5DescriptionBetween = null; public ArrayList Cat5DescriptionIn = null; public Short KitStyle = null; public Short KitStyleGreaterThanOrEqualTo = null; public Short KitStyleGreaterThan = null; public Short KitStyleLessThan = null; public Short KitStyleLessThanOrEqualTo = null; public Short KitStyleNotEqualTo = null; public ArrayList KitStyleBetween = null; public ArrayList KitStyleIn = null; public Short KitStatus = null; public Short KitStatusGreaterThanOrEqualTo = null; public Short KitStatusGreaterThan = null; public Short KitStatusLessThan = null; public Short KitStatusLessThanOrEqualTo = null; public Short KitStatusNotEqualTo = null; public ArrayList KitStatusBetween = null; public ArrayList KitStatusIn = null; public String SO_LinesID = null; public String SO_LinesIDStartsWith = null; public String SO_LinesIDEndsWith = null; public String SO_LinesIDContains = null; public String SO_LinesIDLike = null; public ArrayList SO_LinesIDBetween = null; public ArrayList SO_LinesIDIn = null; public BigDecimal LineCost = null; public BigDecimal LineCostGreaterThanOrEqualTo = null; public BigDecimal LineCostGreaterThan = null; public BigDecimal LineCostLessThan = null; public BigDecimal LineCostLessThanOrEqualTo = null; public BigDecimal LineCostNotEqualTo = null; public ArrayList LineCostBetween = null; public ArrayList LineCostIn = null; public String InvoiceHistoryID = null; public String InvoiceHistoryIDStartsWith = null; public String InvoiceHistoryIDEndsWith = null; public String InvoiceHistoryIDContains = null; public String InvoiceHistoryIDLike = null; public ArrayList InvoiceHistoryIDBetween = null; public ArrayList InvoiceHistoryIDIn = null; public String getSalesID() { return SalesID; } public SO_SalesHistoryQuery setSalesID(String value) { this.SalesID = value; return this; } public String getSalesIDStartsWith() { return SalesIDStartsWith; } public SO_SalesHistoryQuery setSalesIDStartsWith(String value) { this.SalesIDStartsWith = value; return this; } public String getSalesIDEndsWith() { return SalesIDEndsWith; } public SO_SalesHistoryQuery setSalesIDEndsWith(String value) { this.SalesIDEndsWith = value; return this; } public String getSalesIDContains() { return SalesIDContains; } public SO_SalesHistoryQuery setSalesIDContains(String value) { this.SalesIDContains = value; return this; } public String getSalesIDLike() { return SalesIDLike; } public SO_SalesHistoryQuery setSalesIDLike(String value) { this.SalesIDLike = value; return this; } public ArrayList getSalesIDBetween() { return SalesIDBetween; } public SO_SalesHistoryQuery setSalesIDBetween(ArrayList value) { this.SalesIDBetween = value; return this; } public ArrayList getSalesIDIn() { return SalesIDIn; } public SO_SalesHistoryQuery setSalesIDIn(ArrayList value) { this.SalesIDIn = value; return this; } public Date getDateRun() { return DateRun; } public SO_SalesHistoryQuery setDateRun(Date value) { this.DateRun = value; return this; } public Date getDateRunGreaterThanOrEqualTo() { return DateRunGreaterThanOrEqualTo; } public SO_SalesHistoryQuery setDateRunGreaterThanOrEqualTo(Date value) { this.DateRunGreaterThanOrEqualTo = value; return this; } public Date getDateRunGreaterThan() { return DateRunGreaterThan; } public SO_SalesHistoryQuery setDateRunGreaterThan(Date value) { this.DateRunGreaterThan = value; return this; } public Date getDateRunLessThan() { return DateRunLessThan; } public SO_SalesHistoryQuery setDateRunLessThan(Date value) { this.DateRunLessThan = value; return this; } public Date getDateRunLessThanOrEqualTo() { return DateRunLessThanOrEqualTo; } public SO_SalesHistoryQuery setDateRunLessThanOrEqualTo(Date value) { this.DateRunLessThanOrEqualTo = value; return this; } public Date getDateRunNotEqualTo() { return DateRunNotEqualTo; } public SO_SalesHistoryQuery setDateRunNotEqualTo(Date value) { this.DateRunNotEqualTo = value; return this; } public ArrayList getDateRunBetween() { return DateRunBetween; } public SO_SalesHistoryQuery setDateRunBetween(ArrayList value) { this.DateRunBetween = value; return this; } public ArrayList getDateRunIn() { return DateRunIn; } public SO_SalesHistoryQuery setDateRunIn(ArrayList value) { this.DateRunIn = value; return this; } public Date getInvoiceDate() { return InvoiceDate; } public SO_SalesHistoryQuery setInvoiceDate(Date value) { this.InvoiceDate = value; return this; } public Date getInvoiceDateGreaterThanOrEqualTo() { return InvoiceDateGreaterThanOrEqualTo; } public SO_SalesHistoryQuery setInvoiceDateGreaterThanOrEqualTo(Date value) { this.InvoiceDateGreaterThanOrEqualTo = value; return this; } public Date getInvoiceDateGreaterThan() { return InvoiceDateGreaterThan; } public SO_SalesHistoryQuery setInvoiceDateGreaterThan(Date value) { this.InvoiceDateGreaterThan = value; return this; } public Date getInvoiceDateLessThan() { return InvoiceDateLessThan; } public SO_SalesHistoryQuery setInvoiceDateLessThan(Date value) { this.InvoiceDateLessThan = value; return this; } public Date getInvoiceDateLessThanOrEqualTo() { return InvoiceDateLessThanOrEqualTo; } public SO_SalesHistoryQuery setInvoiceDateLessThanOrEqualTo(Date value) { this.InvoiceDateLessThanOrEqualTo = value; return this; } public Date getInvoiceDateNotEqualTo() { return InvoiceDateNotEqualTo; } public SO_SalesHistoryQuery setInvoiceDateNotEqualTo(Date value) { this.InvoiceDateNotEqualTo = value; return this; } public ArrayList getInvoiceDateBetween() { return InvoiceDateBetween; } public SO_SalesHistoryQuery setInvoiceDateBetween(ArrayList value) { this.InvoiceDateBetween = value; return this; } public ArrayList getInvoiceDateIn() { return InvoiceDateIn; } public SO_SalesHistoryQuery setInvoiceDateIn(ArrayList value) { this.InvoiceDateIn = value; return this; } public String getDebtorID() { return DebtorID; } public SO_SalesHistoryQuery setDebtorID(String value) { this.DebtorID = value; return this; } public String getDebtorIDStartsWith() { return DebtorIDStartsWith; } public SO_SalesHistoryQuery setDebtorIDStartsWith(String value) { this.DebtorIDStartsWith = value; return this; } public String getDebtorIDEndsWith() { return DebtorIDEndsWith; } public SO_SalesHistoryQuery setDebtorIDEndsWith(String value) { this.DebtorIDEndsWith = value; return this; } public String getDebtorIDContains() { return DebtorIDContains; } public SO_SalesHistoryQuery setDebtorIDContains(String value) { this.DebtorIDContains = value; return this; } public String getDebtorIDLike() { return DebtorIDLike; } public SO_SalesHistoryQuery setDebtorIDLike(String value) { this.DebtorIDLike = value; return this; } public ArrayList getDebtorIDBetween() { return DebtorIDBetween; } public SO_SalesHistoryQuery setDebtorIDBetween(ArrayList value) { this.DebtorIDBetween = value; return this; } public ArrayList getDebtorIDIn() { return DebtorIDIn; } public SO_SalesHistoryQuery setDebtorIDIn(ArrayList value) { this.DebtorIDIn = value; return this; } public String getInvoiceNo() { return InvoiceNo; } public SO_SalesHistoryQuery setInvoiceNo(String value) { this.InvoiceNo = value; return this; } public String getInvoiceNoStartsWith() { return InvoiceNoStartsWith; } public SO_SalesHistoryQuery setInvoiceNoStartsWith(String value) { this.InvoiceNoStartsWith = value; return this; } public String getInvoiceNoEndsWith() { return InvoiceNoEndsWith; } public SO_SalesHistoryQuery setInvoiceNoEndsWith(String value) { this.InvoiceNoEndsWith = value; return this; } public String getInvoiceNoContains() { return InvoiceNoContains; } public SO_SalesHistoryQuery setInvoiceNoContains(String value) { this.InvoiceNoContains = value; return this; } public String getInvoiceNoLike() { return InvoiceNoLike; } public SO_SalesHistoryQuery setInvoiceNoLike(String value) { this.InvoiceNoLike = value; return this; } public ArrayList getInvoiceNoBetween() { return InvoiceNoBetween; } public SO_SalesHistoryQuery setInvoiceNoBetween(ArrayList value) { this.InvoiceNoBetween = value; return this; } public ArrayList getInvoiceNoIn() { return InvoiceNoIn; } public SO_SalesHistoryQuery setInvoiceNoIn(ArrayList value) { this.InvoiceNoIn = value; return this; } public String getPartNo() { return PartNo; } public SO_SalesHistoryQuery setPartNo(String value) { this.PartNo = value; return this; } public String getPartNoStartsWith() { return PartNoStartsWith; } public SO_SalesHistoryQuery setPartNoStartsWith(String value) { this.PartNoStartsWith = value; return this; } public String getPartNoEndsWith() { return PartNoEndsWith; } public SO_SalesHistoryQuery setPartNoEndsWith(String value) { this.PartNoEndsWith = value; return this; } public String getPartNoContains() { return PartNoContains; } public SO_SalesHistoryQuery setPartNoContains(String value) { this.PartNoContains = value; return this; } public String getPartNoLike() { return PartNoLike; } public SO_SalesHistoryQuery setPartNoLike(String value) { this.PartNoLike = value; return this; } public ArrayList getPartNoBetween() { return PartNoBetween; } public SO_SalesHistoryQuery setPartNoBetween(ArrayList value) { this.PartNoBetween = value; return this; } public ArrayList getPartNoIn() { return PartNoIn; } public SO_SalesHistoryQuery setPartNoIn(ArrayList value) { this.PartNoIn = value; return this; } public String getDescription() { return Description; } public SO_SalesHistoryQuery setDescription(String value) { this.Description = value; return this; } public String getDescriptionStartsWith() { return DescriptionStartsWith; } public SO_SalesHistoryQuery setDescriptionStartsWith(String value) { this.DescriptionStartsWith = value; return this; } public String getDescriptionEndsWith() { return DescriptionEndsWith; } public SO_SalesHistoryQuery setDescriptionEndsWith(String value) { this.DescriptionEndsWith = value; return this; } public String getDescriptionContains() { return DescriptionContains; } public SO_SalesHistoryQuery setDescriptionContains(String value) { this.DescriptionContains = value; return this; } public String getDescriptionLike() { return DescriptionLike; } public SO_SalesHistoryQuery setDescriptionLike(String value) { this.DescriptionLike = value; return this; } public ArrayList getDescriptionBetween() { return DescriptionBetween; } public SO_SalesHistoryQuery setDescriptionBetween(ArrayList value) { this.DescriptionBetween = value; return this; } public ArrayList getDescriptionIn() { return DescriptionIn; } public SO_SalesHistoryQuery setDescriptionIn(ArrayList value) { this.DescriptionIn = value; return this; } public String getClassDescription() { return ClassDescription; } public SO_SalesHistoryQuery setClassDescription(String value) { this.ClassDescription = value; return this; } public String getClassDescriptionStartsWith() { return ClassDescriptionStartsWith; } public SO_SalesHistoryQuery setClassDescriptionStartsWith(String value) { this.ClassDescriptionStartsWith = value; return this; } public String getClassDescriptionEndsWith() { return ClassDescriptionEndsWith; } public SO_SalesHistoryQuery setClassDescriptionEndsWith(String value) { this.ClassDescriptionEndsWith = value; return this; } public String getClassDescriptionContains() { return ClassDescriptionContains; } public SO_SalesHistoryQuery setClassDescriptionContains(String value) { this.ClassDescriptionContains = value; return this; } public String getClassDescriptionLike() { return ClassDescriptionLike; } public SO_SalesHistoryQuery setClassDescriptionLike(String value) { this.ClassDescriptionLike = value; return this; } public ArrayList getClassDescriptionBetween() { return ClassDescriptionBetween; } public SO_SalesHistoryQuery setClassDescriptionBetween(ArrayList value) { this.ClassDescriptionBetween = value; return this; } public ArrayList getClassDescriptionIn() { return ClassDescriptionIn; } public SO_SalesHistoryQuery setClassDescriptionIn(ArrayList value) { this.ClassDescriptionIn = value; return this; } public String getCat1Description() { return Cat1Description; } public SO_SalesHistoryQuery setCat1Description(String value) { this.Cat1Description = value; return this; } public String getCat1DescriptionStartsWith() { return Cat1DescriptionStartsWith; } public SO_SalesHistoryQuery setCat1DescriptionStartsWith(String value) { this.Cat1DescriptionStartsWith = value; return this; } public String getCat1DescriptionEndsWith() { return Cat1DescriptionEndsWith; } public SO_SalesHistoryQuery setCat1DescriptionEndsWith(String value) { this.Cat1DescriptionEndsWith = value; return this; } public String getCat1DescriptionContains() { return Cat1DescriptionContains; } public SO_SalesHistoryQuery setCat1DescriptionContains(String value) { this.Cat1DescriptionContains = value; return this; } public String getCat1DescriptionLike() { return Cat1DescriptionLike; } public SO_SalesHistoryQuery setCat1DescriptionLike(String value) { this.Cat1DescriptionLike = value; return this; } public ArrayList getCat1DescriptionBetween() { return Cat1DescriptionBetween; } public SO_SalesHistoryQuery setCat1DescriptionBetween(ArrayList value) { this.Cat1DescriptionBetween = value; return this; } public ArrayList getCat1DescriptionIn() { return Cat1DescriptionIn; } public SO_SalesHistoryQuery setCat1DescriptionIn(ArrayList value) { this.Cat1DescriptionIn = value; return this; } public String getCat2Description() { return Cat2Description; } public SO_SalesHistoryQuery setCat2Description(String value) { this.Cat2Description = value; return this; } public String getCat2DescriptionStartsWith() { return Cat2DescriptionStartsWith; } public SO_SalesHistoryQuery setCat2DescriptionStartsWith(String value) { this.Cat2DescriptionStartsWith = value; return this; } public String getCat2DescriptionEndsWith() { return Cat2DescriptionEndsWith; } public SO_SalesHistoryQuery setCat2DescriptionEndsWith(String value) { this.Cat2DescriptionEndsWith = value; return this; } public String getCat2DescriptionContains() { return Cat2DescriptionContains; } public SO_SalesHistoryQuery setCat2DescriptionContains(String value) { this.Cat2DescriptionContains = value; return this; } public String getCat2DescriptionLike() { return Cat2DescriptionLike; } public SO_SalesHistoryQuery setCat2DescriptionLike(String value) { this.Cat2DescriptionLike = value; return this; } public ArrayList getCat2DescriptionBetween() { return Cat2DescriptionBetween; } public SO_SalesHistoryQuery setCat2DescriptionBetween(ArrayList value) { this.Cat2DescriptionBetween = value; return this; } public ArrayList getCat2DescriptionIn() { return Cat2DescriptionIn; } public SO_SalesHistoryQuery setCat2DescriptionIn(ArrayList value) { this.Cat2DescriptionIn = value; return this; } public String getCat3Description() { return Cat3Description; } public SO_SalesHistoryQuery setCat3Description(String value) { this.Cat3Description = value; return this; } public String getCat3DescriptionStartsWith() { return Cat3DescriptionStartsWith; } public SO_SalesHistoryQuery setCat3DescriptionStartsWith(String value) { this.Cat3DescriptionStartsWith = value; return this; } public String getCat3DescriptionEndsWith() { return Cat3DescriptionEndsWith; } public SO_SalesHistoryQuery setCat3DescriptionEndsWith(String value) { this.Cat3DescriptionEndsWith = value; return this; } public String getCat3DescriptionContains() { return Cat3DescriptionContains; } public SO_SalesHistoryQuery setCat3DescriptionContains(String value) { this.Cat3DescriptionContains = value; return this; } public String getCat3DescriptionLike() { return Cat3DescriptionLike; } public SO_SalesHistoryQuery setCat3DescriptionLike(String value) { this.Cat3DescriptionLike = value; return this; } public ArrayList getCat3DescriptionBetween() { return Cat3DescriptionBetween; } public SO_SalesHistoryQuery setCat3DescriptionBetween(ArrayList value) { this.Cat3DescriptionBetween = value; return this; } public ArrayList getCat3DescriptionIn() { return Cat3DescriptionIn; } public SO_SalesHistoryQuery setCat3DescriptionIn(ArrayList value) { this.Cat3DescriptionIn = value; return this; } public BigDecimal getQuantity() { return Quantity; } public SO_SalesHistoryQuery setQuantity(BigDecimal value) { this.Quantity = value; return this; } public BigDecimal getQuantityGreaterThanOrEqualTo() { return QuantityGreaterThanOrEqualTo; } public SO_SalesHistoryQuery setQuantityGreaterThanOrEqualTo(BigDecimal value) { this.QuantityGreaterThanOrEqualTo = value; return this; } public BigDecimal getQuantityGreaterThan() { return QuantityGreaterThan; } public SO_SalesHistoryQuery setQuantityGreaterThan(BigDecimal value) { this.QuantityGreaterThan = value; return this; } public BigDecimal getQuantityLessThan() { return QuantityLessThan; } public SO_SalesHistoryQuery setQuantityLessThan(BigDecimal value) { this.QuantityLessThan = value; return this; } public BigDecimal getQuantityLessThanOrEqualTo() { return QuantityLessThanOrEqualTo; } public SO_SalesHistoryQuery setQuantityLessThanOrEqualTo(BigDecimal value) { this.QuantityLessThanOrEqualTo = value; return this; } public BigDecimal getQuantityNotEqualTo() { return QuantityNotEqualTo; } public SO_SalesHistoryQuery setQuantityNotEqualTo(BigDecimal value) { this.QuantityNotEqualTo = value; return this; } public ArrayList getQuantityBetween() { return QuantityBetween; } public SO_SalesHistoryQuery setQuantityBetween(ArrayList value) { this.QuantityBetween = value; return this; } public ArrayList getQuantityIn() { return QuantityIn; } public SO_SalesHistoryQuery setQuantityIn(ArrayList value) { this.QuantityIn = value; return this; } public BigDecimal getUnitCost() { return UnitCost; } public SO_SalesHistoryQuery setUnitCost(BigDecimal value) { this.UnitCost = value; return this; } public BigDecimal getUnitCostGreaterThanOrEqualTo() { return UnitCostGreaterThanOrEqualTo; } public SO_SalesHistoryQuery setUnitCostGreaterThanOrEqualTo(BigDecimal value) { this.UnitCostGreaterThanOrEqualTo = value; return this; } public BigDecimal getUnitCostGreaterThan() { return UnitCostGreaterThan; } public SO_SalesHistoryQuery setUnitCostGreaterThan(BigDecimal value) { this.UnitCostGreaterThan = value; return this; } public BigDecimal getUnitCostLessThan() { return UnitCostLessThan; } public SO_SalesHistoryQuery setUnitCostLessThan(BigDecimal value) { this.UnitCostLessThan = value; return this; } public BigDecimal getUnitCostLessThanOrEqualTo() { return UnitCostLessThanOrEqualTo; } public SO_SalesHistoryQuery setUnitCostLessThanOrEqualTo(BigDecimal value) { this.UnitCostLessThanOrEqualTo = value; return this; } public BigDecimal getUnitCostNotEqualTo() { return UnitCostNotEqualTo; } public SO_SalesHistoryQuery setUnitCostNotEqualTo(BigDecimal value) { this.UnitCostNotEqualTo = value; return this; } public ArrayList getUnitCostBetween() { return UnitCostBetween; } public SO_SalesHistoryQuery setUnitCostBetween(ArrayList value) { this.UnitCostBetween = value; return this; } public ArrayList getUnitCostIn() { return UnitCostIn; } public SO_SalesHistoryQuery setUnitCostIn(ArrayList value) { this.UnitCostIn = value; return this; } public BigDecimal getUnitSellPrice() { return UnitSellPrice; } public SO_SalesHistoryQuery setUnitSellPrice(BigDecimal value) { this.UnitSellPrice = value; return this; } public BigDecimal getUnitSellPriceGreaterThanOrEqualTo() { return UnitSellPriceGreaterThanOrEqualTo; } public SO_SalesHistoryQuery setUnitSellPriceGreaterThanOrEqualTo(BigDecimal value) { this.UnitSellPriceGreaterThanOrEqualTo = value; return this; } public BigDecimal getUnitSellPriceGreaterThan() { return UnitSellPriceGreaterThan; } public SO_SalesHistoryQuery setUnitSellPriceGreaterThan(BigDecimal value) { this.UnitSellPriceGreaterThan = value; return this; } public BigDecimal getUnitSellPriceLessThan() { return UnitSellPriceLessThan; } public SO_SalesHistoryQuery setUnitSellPriceLessThan(BigDecimal value) { this.UnitSellPriceLessThan = value; return this; } public BigDecimal getUnitSellPriceLessThanOrEqualTo() { return UnitSellPriceLessThanOrEqualTo; } public SO_SalesHistoryQuery setUnitSellPriceLessThanOrEqualTo(BigDecimal value) { this.UnitSellPriceLessThanOrEqualTo = value; return this; } public BigDecimal getUnitSellPriceNotEqualTo() { return UnitSellPriceNotEqualTo; } public SO_SalesHistoryQuery setUnitSellPriceNotEqualTo(BigDecimal value) { this.UnitSellPriceNotEqualTo = value; return this; } public ArrayList getUnitSellPriceBetween() { return UnitSellPriceBetween; } public SO_SalesHistoryQuery setUnitSellPriceBetween(ArrayList value) { this.UnitSellPriceBetween = value; return this; } public ArrayList getUnitSellPriceIn() { return UnitSellPriceIn; } public SO_SalesHistoryQuery setUnitSellPriceIn(ArrayList value) { this.UnitSellPriceIn = value; return this; } public BigDecimal getLineTax() { return LineTax; } public SO_SalesHistoryQuery setLineTax(BigDecimal value) { this.LineTax = value; return this; } public BigDecimal getLineTaxGreaterThanOrEqualTo() { return LineTaxGreaterThanOrEqualTo; } public SO_SalesHistoryQuery setLineTaxGreaterThanOrEqualTo(BigDecimal value) { this.LineTaxGreaterThanOrEqualTo = value; return this; } public BigDecimal getLineTaxGreaterThan() { return LineTaxGreaterThan; } public SO_SalesHistoryQuery setLineTaxGreaterThan(BigDecimal value) { this.LineTaxGreaterThan = value; return this; } public BigDecimal getLineTaxLessThan() { return LineTaxLessThan; } public SO_SalesHistoryQuery setLineTaxLessThan(BigDecimal value) { this.LineTaxLessThan = value; return this; } public BigDecimal getLineTaxLessThanOrEqualTo() { return LineTaxLessThanOrEqualTo; } public SO_SalesHistoryQuery setLineTaxLessThanOrEqualTo(BigDecimal value) { this.LineTaxLessThanOrEqualTo = value; return this; } public BigDecimal getLineTaxNotEqualTo() { return LineTaxNotEqualTo; } public SO_SalesHistoryQuery setLineTaxNotEqualTo(BigDecimal value) { this.LineTaxNotEqualTo = value; return this; } public ArrayList getLineTaxBetween() { return LineTaxBetween; } public SO_SalesHistoryQuery setLineTaxBetween(ArrayList value) { this.LineTaxBetween = value; return this; } public ArrayList getLineTaxIn() { return LineTaxIn; } public SO_SalesHistoryQuery setLineTaxIn(ArrayList value) { this.LineTaxIn = value; return this; } public BigDecimal getLineTotal() { return LineTotal; } public SO_SalesHistoryQuery setLineTotal(BigDecimal value) { this.LineTotal = value; return this; } public BigDecimal getLineTotalGreaterThanOrEqualTo() { return LineTotalGreaterThanOrEqualTo; } public SO_SalesHistoryQuery setLineTotalGreaterThanOrEqualTo(BigDecimal value) { this.LineTotalGreaterThanOrEqualTo = value; return this; } public BigDecimal getLineTotalGreaterThan() { return LineTotalGreaterThan; } public SO_SalesHistoryQuery setLineTotalGreaterThan(BigDecimal value) { this.LineTotalGreaterThan = value; return this; } public BigDecimal getLineTotalLessThan() { return LineTotalLessThan; } public SO_SalesHistoryQuery setLineTotalLessThan(BigDecimal value) { this.LineTotalLessThan = value; return this; } public BigDecimal getLineTotalLessThanOrEqualTo() { return LineTotalLessThanOrEqualTo; } public SO_SalesHistoryQuery setLineTotalLessThanOrEqualTo(BigDecimal value) { this.LineTotalLessThanOrEqualTo = value; return this; } public BigDecimal getLineTotalNotEqualTo() { return LineTotalNotEqualTo; } public SO_SalesHistoryQuery setLineTotalNotEqualTo(BigDecimal value) { this.LineTotalNotEqualTo = value; return this; } public ArrayList getLineTotalBetween() { return LineTotalBetween; } public SO_SalesHistoryQuery setLineTotalBetween(ArrayList value) { this.LineTotalBetween = value; return this; } public ArrayList getLineTotalIn() { return LineTotalIn; } public SO_SalesHistoryQuery setLineTotalIn(ArrayList value) { this.LineTotalIn = value; return this; } public String getRunNo() { return RunNo; } public SO_SalesHistoryQuery setRunNo(String value) { this.RunNo = value; return this; } public String getRunNoStartsWith() { return RunNoStartsWith; } public SO_SalesHistoryQuery setRunNoStartsWith(String value) { this.RunNoStartsWith = value; return this; } public String getRunNoEndsWith() { return RunNoEndsWith; } public SO_SalesHistoryQuery setRunNoEndsWith(String value) { this.RunNoEndsWith = value; return this; } public String getRunNoContains() { return RunNoContains; } public SO_SalesHistoryQuery setRunNoContains(String value) { this.RunNoContains = value; return this; } public String getRunNoLike() { return RunNoLike; } public SO_SalesHistoryQuery setRunNoLike(String value) { this.RunNoLike = value; return this; } public ArrayList getRunNoBetween() { return RunNoBetween; } public SO_SalesHistoryQuery setRunNoBetween(ArrayList value) { this.RunNoBetween = value; return this; } public ArrayList getRunNoIn() { return RunNoIn; } public SO_SalesHistoryQuery setRunNoIn(ArrayList value) { this.RunNoIn = value; return this; } public Short getHistoryNo() { return HistoryNo; } public SO_SalesHistoryQuery setHistoryNo(Short value) { this.HistoryNo = value; return this; } public Short getHistoryNoGreaterThanOrEqualTo() { return HistoryNoGreaterThanOrEqualTo; } public SO_SalesHistoryQuery setHistoryNoGreaterThanOrEqualTo(Short value) { this.HistoryNoGreaterThanOrEqualTo = value; return this; } public Short getHistoryNoGreaterThan() { return HistoryNoGreaterThan; } public SO_SalesHistoryQuery setHistoryNoGreaterThan(Short value) { this.HistoryNoGreaterThan = value; return this; } public Short getHistoryNoLessThan() { return HistoryNoLessThan; } public SO_SalesHistoryQuery setHistoryNoLessThan(Short value) { this.HistoryNoLessThan = value; return this; } public Short getHistoryNoLessThanOrEqualTo() { return HistoryNoLessThanOrEqualTo; } public SO_SalesHistoryQuery setHistoryNoLessThanOrEqualTo(Short value) { this.HistoryNoLessThanOrEqualTo = value; return this; } public Short getHistoryNoNotEqualTo() { return HistoryNoNotEqualTo; } public SO_SalesHistoryQuery setHistoryNoNotEqualTo(Short value) { this.HistoryNoNotEqualTo = value; return this; } public ArrayList getHistoryNoBetween() { return HistoryNoBetween; } public SO_SalesHistoryQuery setHistoryNoBetween(ArrayList value) { this.HistoryNoBetween = value; return this; } public ArrayList getHistoryNoIn() { return HistoryNoIn; } public SO_SalesHistoryQuery setHistoryNoIn(ArrayList value) { this.HistoryNoIn = value; return this; } public String getInvoiceID() { return InvoiceID; } public SO_SalesHistoryQuery setInvoiceID(String value) { this.InvoiceID = value; return this; } public String getInvoiceIDStartsWith() { return InvoiceIDStartsWith; } public SO_SalesHistoryQuery setInvoiceIDStartsWith(String value) { this.InvoiceIDStartsWith = value; return this; } public String getInvoiceIDEndsWith() { return InvoiceIDEndsWith; } public SO_SalesHistoryQuery setInvoiceIDEndsWith(String value) { this.InvoiceIDEndsWith = value; return this; } public String getInvoiceIDContains() { return InvoiceIDContains; } public SO_SalesHistoryQuery setInvoiceIDContains(String value) { this.InvoiceIDContains = value; return this; } public String getInvoiceIDLike() { return InvoiceIDLike; } public SO_SalesHistoryQuery setInvoiceIDLike(String value) { this.InvoiceIDLike = value; return this; } public ArrayList getInvoiceIDBetween() { return InvoiceIDBetween; } public SO_SalesHistoryQuery setInvoiceIDBetween(ArrayList value) { this.InvoiceIDBetween = value; return this; } public ArrayList getInvoiceIDIn() { return InvoiceIDIn; } public SO_SalesHistoryQuery setInvoiceIDIn(ArrayList value) { this.InvoiceIDIn = value; return this; } public String getInventoryID() { return InventoryID; } public SO_SalesHistoryQuery setInventoryID(String value) { this.InventoryID = value; return this; } public String getInventoryIDStartsWith() { return InventoryIDStartsWith; } public SO_SalesHistoryQuery setInventoryIDStartsWith(String value) { this.InventoryIDStartsWith = value; return this; } public String getInventoryIDEndsWith() { return InventoryIDEndsWith; } public SO_SalesHistoryQuery setInventoryIDEndsWith(String value) { this.InventoryIDEndsWith = value; return this; } public String getInventoryIDContains() { return InventoryIDContains; } public SO_SalesHistoryQuery setInventoryIDContains(String value) { this.InventoryIDContains = value; return this; } public String getInventoryIDLike() { return InventoryIDLike; } public SO_SalesHistoryQuery setInventoryIDLike(String value) { this.InventoryIDLike = value; return this; } public ArrayList getInventoryIDBetween() { return InventoryIDBetween; } public SO_SalesHistoryQuery setInventoryIDBetween(ArrayList value) { this.InventoryIDBetween = value; return this; } public ArrayList getInventoryIDIn() { return InventoryIDIn; } public SO_SalesHistoryQuery setInventoryIDIn(ArrayList value) { this.InventoryIDIn = value; return this; } public Short getYearNo() { return YearNo; } public SO_SalesHistoryQuery setYearNo(Short value) { this.YearNo = value; return this; } public Short getYearNoGreaterThanOrEqualTo() { return YearNoGreaterThanOrEqualTo; } public SO_SalesHistoryQuery setYearNoGreaterThanOrEqualTo(Short value) { this.YearNoGreaterThanOrEqualTo = value; return this; } public Short getYearNoGreaterThan() { return YearNoGreaterThan; } public SO_SalesHistoryQuery setYearNoGreaterThan(Short value) { this.YearNoGreaterThan = value; return this; } public Short getYearNoLessThan() { return YearNoLessThan; } public SO_SalesHistoryQuery setYearNoLessThan(Short value) { this.YearNoLessThan = value; return this; } public Short getYearNoLessThanOrEqualTo() { return YearNoLessThanOrEqualTo; } public SO_SalesHistoryQuery setYearNoLessThanOrEqualTo(Short value) { this.YearNoLessThanOrEqualTo = value; return this; } public Short getYearNoNotEqualTo() { return YearNoNotEqualTo; } public SO_SalesHistoryQuery setYearNoNotEqualTo(Short value) { this.YearNoNotEqualTo = value; return this; } public ArrayList getYearNoBetween() { return YearNoBetween; } public SO_SalesHistoryQuery setYearNoBetween(ArrayList value) { this.YearNoBetween = value; return this; } public ArrayList getYearNoIn() { return YearNoIn; } public SO_SalesHistoryQuery setYearNoIn(ArrayList value) { this.YearNoIn = value; return this; } public Short getMonthNo() { return MonthNo; } public SO_SalesHistoryQuery setMonthNo(Short value) { this.MonthNo = value; return this; } public Short getMonthNoGreaterThanOrEqualTo() { return MonthNoGreaterThanOrEqualTo; } public SO_SalesHistoryQuery setMonthNoGreaterThanOrEqualTo(Short value) { this.MonthNoGreaterThanOrEqualTo = value; return this; } public Short getMonthNoGreaterThan() { return MonthNoGreaterThan; } public SO_SalesHistoryQuery setMonthNoGreaterThan(Short value) { this.MonthNoGreaterThan = value; return this; } public Short getMonthNoLessThan() { return MonthNoLessThan; } public SO_SalesHistoryQuery setMonthNoLessThan(Short value) { this.MonthNoLessThan = value; return this; } public Short getMonthNoLessThanOrEqualTo() { return MonthNoLessThanOrEqualTo; } public SO_SalesHistoryQuery setMonthNoLessThanOrEqualTo(Short value) { this.MonthNoLessThanOrEqualTo = value; return this; } public Short getMonthNoNotEqualTo() { return MonthNoNotEqualTo; } public SO_SalesHistoryQuery setMonthNoNotEqualTo(Short value) { this.MonthNoNotEqualTo = value; return this; } public ArrayList getMonthNoBetween() { return MonthNoBetween; } public SO_SalesHistoryQuery setMonthNoBetween(ArrayList value) { this.MonthNoBetween = value; return this; } public ArrayList getMonthNoIn() { return MonthNoIn; } public SO_SalesHistoryQuery setMonthNoIn(ArrayList value) { this.MonthNoIn = value; return this; } public String getInLogicalID() { return IN_LogicalID; } public SO_SalesHistoryQuery setInLogicalID(String value) { this.IN_LogicalID = value; return this; } public String getInLogicalIDStartsWith() { return IN_LogicalIDStartsWith; } public SO_SalesHistoryQuery setInLogicalIDStartsWith(String value) { this.IN_LogicalIDStartsWith = value; return this; } public String getInLogicalIDEndsWith() { return IN_LogicalIDEndsWith; } public SO_SalesHistoryQuery setInLogicalIDEndsWith(String value) { this.IN_LogicalIDEndsWith = value; return this; } public String getInLogicalIDContains() { return IN_LogicalIDContains; } public SO_SalesHistoryQuery setInLogicalIDContains(String value) { this.IN_LogicalIDContains = value; return this; } public String getInLogicalIDLike() { return IN_LogicalIDLike; } public SO_SalesHistoryQuery setInLogicalIDLike(String value) { this.IN_LogicalIDLike = value; return this; } public ArrayList getInLogicalIDBetween() { return IN_LogicalIDBetween; } public SO_SalesHistoryQuery setInLogicalIDBetween(ArrayList value) { this.IN_LogicalIDBetween = value; return this; } public ArrayList getInLogicalIDIn() { return IN_LogicalIDIn; } public SO_SalesHistoryQuery setInLogicalIDIn(ArrayList value) { this.IN_LogicalIDIn = value; return this; } public String getCat4Description() { return Cat4Description; } public SO_SalesHistoryQuery setCat4Description(String value) { this.Cat4Description = value; return this; } public String getCat4DescriptionStartsWith() { return Cat4DescriptionStartsWith; } public SO_SalesHistoryQuery setCat4DescriptionStartsWith(String value) { this.Cat4DescriptionStartsWith = value; return this; } public String getCat4DescriptionEndsWith() { return Cat4DescriptionEndsWith; } public SO_SalesHistoryQuery setCat4DescriptionEndsWith(String value) { this.Cat4DescriptionEndsWith = value; return this; } public String getCat4DescriptionContains() { return Cat4DescriptionContains; } public SO_SalesHistoryQuery setCat4DescriptionContains(String value) { this.Cat4DescriptionContains = value; return this; } public String getCat4DescriptionLike() { return Cat4DescriptionLike; } public SO_SalesHistoryQuery setCat4DescriptionLike(String value) { this.Cat4DescriptionLike = value; return this; } public ArrayList getCat4DescriptionBetween() { return Cat4DescriptionBetween; } public SO_SalesHistoryQuery setCat4DescriptionBetween(ArrayList value) { this.Cat4DescriptionBetween = value; return this; } public ArrayList getCat4DescriptionIn() { return Cat4DescriptionIn; } public SO_SalesHistoryQuery setCat4DescriptionIn(ArrayList value) { this.Cat4DescriptionIn = value; return this; } public String getCat5Description() { return Cat5Description; } public SO_SalesHistoryQuery setCat5Description(String value) { this.Cat5Description = value; return this; } public String getCat5DescriptionStartsWith() { return Cat5DescriptionStartsWith; } public SO_SalesHistoryQuery setCat5DescriptionStartsWith(String value) { this.Cat5DescriptionStartsWith = value; return this; } public String getCat5DescriptionEndsWith() { return Cat5DescriptionEndsWith; } public SO_SalesHistoryQuery setCat5DescriptionEndsWith(String value) { this.Cat5DescriptionEndsWith = value; return this; } public String getCat5DescriptionContains() { return Cat5DescriptionContains; } public SO_SalesHistoryQuery setCat5DescriptionContains(String value) { this.Cat5DescriptionContains = value; return this; } public String getCat5DescriptionLike() { return Cat5DescriptionLike; } public SO_SalesHistoryQuery setCat5DescriptionLike(String value) { this.Cat5DescriptionLike = value; return this; } public ArrayList getCat5DescriptionBetween() { return Cat5DescriptionBetween; } public SO_SalesHistoryQuery setCat5DescriptionBetween(ArrayList value) { this.Cat5DescriptionBetween = value; return this; } public ArrayList getCat5DescriptionIn() { return Cat5DescriptionIn; } public SO_SalesHistoryQuery setCat5DescriptionIn(ArrayList value) { this.Cat5DescriptionIn = value; return this; } public Short getKitStyle() { return KitStyle; } public SO_SalesHistoryQuery setKitStyle(Short value) { this.KitStyle = value; return this; } public Short getKitStyleGreaterThanOrEqualTo() { return KitStyleGreaterThanOrEqualTo; } public SO_SalesHistoryQuery setKitStyleGreaterThanOrEqualTo(Short value) { this.KitStyleGreaterThanOrEqualTo = value; return this; } public Short getKitStyleGreaterThan() { return KitStyleGreaterThan; } public SO_SalesHistoryQuery setKitStyleGreaterThan(Short value) { this.KitStyleGreaterThan = value; return this; } public Short getKitStyleLessThan() { return KitStyleLessThan; } public SO_SalesHistoryQuery setKitStyleLessThan(Short value) { this.KitStyleLessThan = value; return this; } public Short getKitStyleLessThanOrEqualTo() { return KitStyleLessThanOrEqualTo; } public SO_SalesHistoryQuery setKitStyleLessThanOrEqualTo(Short value) { this.KitStyleLessThanOrEqualTo = value; return this; } public Short getKitStyleNotEqualTo() { return KitStyleNotEqualTo; } public SO_SalesHistoryQuery setKitStyleNotEqualTo(Short value) { this.KitStyleNotEqualTo = value; return this; } public ArrayList getKitStyleBetween() { return KitStyleBetween; } public SO_SalesHistoryQuery setKitStyleBetween(ArrayList value) { this.KitStyleBetween = value; return this; } public ArrayList getKitStyleIn() { return KitStyleIn; } public SO_SalesHistoryQuery setKitStyleIn(ArrayList value) { this.KitStyleIn = value; return this; } public Short getKitStatus() { return KitStatus; } public SO_SalesHistoryQuery setKitStatus(Short value) { this.KitStatus = value; return this; } public Short getKitStatusGreaterThanOrEqualTo() { return KitStatusGreaterThanOrEqualTo; } public SO_SalesHistoryQuery setKitStatusGreaterThanOrEqualTo(Short value) { this.KitStatusGreaterThanOrEqualTo = value; return this; } public Short getKitStatusGreaterThan() { return KitStatusGreaterThan; } public SO_SalesHistoryQuery setKitStatusGreaterThan(Short value) { this.KitStatusGreaterThan = value; return this; } public Short getKitStatusLessThan() { return KitStatusLessThan; } public SO_SalesHistoryQuery setKitStatusLessThan(Short value) { this.KitStatusLessThan = value; return this; } public Short getKitStatusLessThanOrEqualTo() { return KitStatusLessThanOrEqualTo; } public SO_SalesHistoryQuery setKitStatusLessThanOrEqualTo(Short value) { this.KitStatusLessThanOrEqualTo = value; return this; } public Short getKitStatusNotEqualTo() { return KitStatusNotEqualTo; } public SO_SalesHistoryQuery setKitStatusNotEqualTo(Short value) { this.KitStatusNotEqualTo = value; return this; } public ArrayList getKitStatusBetween() { return KitStatusBetween; } public SO_SalesHistoryQuery setKitStatusBetween(ArrayList value) { this.KitStatusBetween = value; return this; } public ArrayList getKitStatusIn() { return KitStatusIn; } public SO_SalesHistoryQuery setKitStatusIn(ArrayList value) { this.KitStatusIn = value; return this; } public String getSoLinesID() { return SO_LinesID; } public SO_SalesHistoryQuery setSoLinesID(String value) { this.SO_LinesID = value; return this; } public String getSoLinesIDStartsWith() { return SO_LinesIDStartsWith; } public SO_SalesHistoryQuery setSoLinesIDStartsWith(String value) { this.SO_LinesIDStartsWith = value; return this; } public String getSoLinesIDEndsWith() { return SO_LinesIDEndsWith; } public SO_SalesHistoryQuery setSoLinesIDEndsWith(String value) { this.SO_LinesIDEndsWith = value; return this; } public String getSoLinesIDContains() { return SO_LinesIDContains; } public SO_SalesHistoryQuery setSoLinesIDContains(String value) { this.SO_LinesIDContains = value; return this; } public String getSoLinesIDLike() { return SO_LinesIDLike; } public SO_SalesHistoryQuery setSoLinesIDLike(String value) { this.SO_LinesIDLike = value; return this; } public ArrayList getSoLinesIDBetween() { return SO_LinesIDBetween; } public SO_SalesHistoryQuery setSoLinesIDBetween(ArrayList value) { this.SO_LinesIDBetween = value; return this; } public ArrayList getSoLinesIDIn() { return SO_LinesIDIn; } public SO_SalesHistoryQuery setSoLinesIDIn(ArrayList value) { this.SO_LinesIDIn = value; return this; } public BigDecimal getLineCost() { return LineCost; } public SO_SalesHistoryQuery setLineCost(BigDecimal value) { this.LineCost = value; return this; } public BigDecimal getLineCostGreaterThanOrEqualTo() { return LineCostGreaterThanOrEqualTo; } public SO_SalesHistoryQuery setLineCostGreaterThanOrEqualTo(BigDecimal value) { this.LineCostGreaterThanOrEqualTo = value; return this; } public BigDecimal getLineCostGreaterThan() { return LineCostGreaterThan; } public SO_SalesHistoryQuery setLineCostGreaterThan(BigDecimal value) { this.LineCostGreaterThan = value; return this; } public BigDecimal getLineCostLessThan() { return LineCostLessThan; } public SO_SalesHistoryQuery setLineCostLessThan(BigDecimal value) { this.LineCostLessThan = value; return this; } public BigDecimal getLineCostLessThanOrEqualTo() { return LineCostLessThanOrEqualTo; } public SO_SalesHistoryQuery setLineCostLessThanOrEqualTo(BigDecimal value) { this.LineCostLessThanOrEqualTo = value; return this; } public BigDecimal getLineCostNotEqualTo() { return LineCostNotEqualTo; } public SO_SalesHistoryQuery setLineCostNotEqualTo(BigDecimal value) { this.LineCostNotEqualTo = value; return this; } public ArrayList getLineCostBetween() { return LineCostBetween; } public SO_SalesHistoryQuery setLineCostBetween(ArrayList value) { this.LineCostBetween = value; return this; } public ArrayList getLineCostIn() { return LineCostIn; } public SO_SalesHistoryQuery setLineCostIn(ArrayList value) { this.LineCostIn = value; return this; } public String getInvoiceHistoryID() { return InvoiceHistoryID; } public SO_SalesHistoryQuery setInvoiceHistoryID(String value) { this.InvoiceHistoryID = value; return this; } public String getInvoiceHistoryIDStartsWith() { return InvoiceHistoryIDStartsWith; } public SO_SalesHistoryQuery setInvoiceHistoryIDStartsWith(String value) { this.InvoiceHistoryIDStartsWith = value; return this; } public String getInvoiceHistoryIDEndsWith() { return InvoiceHistoryIDEndsWith; } public SO_SalesHistoryQuery setInvoiceHistoryIDEndsWith(String value) { this.InvoiceHistoryIDEndsWith = value; return this; } public String getInvoiceHistoryIDContains() { return InvoiceHistoryIDContains; } public SO_SalesHistoryQuery setInvoiceHistoryIDContains(String value) { this.InvoiceHistoryIDContains = value; return this; } public String getInvoiceHistoryIDLike() { return InvoiceHistoryIDLike; } public SO_SalesHistoryQuery setInvoiceHistoryIDLike(String value) { this.InvoiceHistoryIDLike = value; return this; } public ArrayList getInvoiceHistoryIDBetween() { return InvoiceHistoryIDBetween; } public SO_SalesHistoryQuery setInvoiceHistoryIDBetween(ArrayList value) { this.InvoiceHistoryIDBetween = value; return this; } public ArrayList getInvoiceHistoryIDIn() { return InvoiceHistoryIDIn; } public SO_SalesHistoryQuery setInvoiceHistoryIDIn(ArrayList value) { this.InvoiceHistoryIDIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class SO_SalesQtyQuery extends QueryDb implements IReturn> { public String InventoryID = null; public String InventoryIDStartsWith = null; public String InventoryIDEndsWith = null; public String InventoryIDContains = null; public String InventoryIDLike = null; public ArrayList InventoryIDBetween = null; public ArrayList InventoryIDIn = null; public Integer YearNo = null; public Integer YearNoGreaterThanOrEqualTo = null; public Integer YearNoGreaterThan = null; public Integer YearNoLessThan = null; public Integer YearNoLessThanOrEqualTo = null; public Integer YearNoNotEqualTo = null; public ArrayList YearNoBetween = null; public ArrayList YearNoIn = null; public Integer MonthNo = null; public Integer MonthNoGreaterThanOrEqualTo = null; public Integer MonthNoGreaterThan = null; public Integer MonthNoLessThan = null; public Integer MonthNoLessThanOrEqualTo = null; public Integer MonthNoNotEqualTo = null; public ArrayList MonthNoBetween = null; public ArrayList MonthNoIn = null; public BigDecimal TotalQty = null; public BigDecimal TotalQtyGreaterThanOrEqualTo = null; public BigDecimal TotalQtyGreaterThan = null; public BigDecimal TotalQtyLessThan = null; public BigDecimal TotalQtyLessThanOrEqualTo = null; public BigDecimal TotalQtyNotEqualTo = null; public ArrayList TotalQtyBetween = null; public ArrayList TotalQtyIn = null; public String getInventoryID() { return InventoryID; } public SO_SalesQtyQuery setInventoryID(String value) { this.InventoryID = value; return this; } public String getInventoryIDStartsWith() { return InventoryIDStartsWith; } public SO_SalesQtyQuery setInventoryIDStartsWith(String value) { this.InventoryIDStartsWith = value; return this; } public String getInventoryIDEndsWith() { return InventoryIDEndsWith; } public SO_SalesQtyQuery setInventoryIDEndsWith(String value) { this.InventoryIDEndsWith = value; return this; } public String getInventoryIDContains() { return InventoryIDContains; } public SO_SalesQtyQuery setInventoryIDContains(String value) { this.InventoryIDContains = value; return this; } public String getInventoryIDLike() { return InventoryIDLike; } public SO_SalesQtyQuery setInventoryIDLike(String value) { this.InventoryIDLike = value; return this; } public ArrayList getInventoryIDBetween() { return InventoryIDBetween; } public SO_SalesQtyQuery setInventoryIDBetween(ArrayList value) { this.InventoryIDBetween = value; return this; } public ArrayList getInventoryIDIn() { return InventoryIDIn; } public SO_SalesQtyQuery setInventoryIDIn(ArrayList value) { this.InventoryIDIn = value; return this; } public Integer getYearNo() { return YearNo; } public SO_SalesQtyQuery setYearNo(Integer value) { this.YearNo = value; return this; } public Integer getYearNoGreaterThanOrEqualTo() { return YearNoGreaterThanOrEqualTo; } public SO_SalesQtyQuery setYearNoGreaterThanOrEqualTo(Integer value) { this.YearNoGreaterThanOrEqualTo = value; return this; } public Integer getYearNoGreaterThan() { return YearNoGreaterThan; } public SO_SalesQtyQuery setYearNoGreaterThan(Integer value) { this.YearNoGreaterThan = value; return this; } public Integer getYearNoLessThan() { return YearNoLessThan; } public SO_SalesQtyQuery setYearNoLessThan(Integer value) { this.YearNoLessThan = value; return this; } public Integer getYearNoLessThanOrEqualTo() { return YearNoLessThanOrEqualTo; } public SO_SalesQtyQuery setYearNoLessThanOrEqualTo(Integer value) { this.YearNoLessThanOrEqualTo = value; return this; } public Integer getYearNoNotEqualTo() { return YearNoNotEqualTo; } public SO_SalesQtyQuery setYearNoNotEqualTo(Integer value) { this.YearNoNotEqualTo = value; return this; } public ArrayList getYearNoBetween() { return YearNoBetween; } public SO_SalesQtyQuery setYearNoBetween(ArrayList value) { this.YearNoBetween = value; return this; } public ArrayList getYearNoIn() { return YearNoIn; } public SO_SalesQtyQuery setYearNoIn(ArrayList value) { this.YearNoIn = value; return this; } public Integer getMonthNo() { return MonthNo; } public SO_SalesQtyQuery setMonthNo(Integer value) { this.MonthNo = value; return this; } public Integer getMonthNoGreaterThanOrEqualTo() { return MonthNoGreaterThanOrEqualTo; } public SO_SalesQtyQuery setMonthNoGreaterThanOrEqualTo(Integer value) { this.MonthNoGreaterThanOrEqualTo = value; return this; } public Integer getMonthNoGreaterThan() { return MonthNoGreaterThan; } public SO_SalesQtyQuery setMonthNoGreaterThan(Integer value) { this.MonthNoGreaterThan = value; return this; } public Integer getMonthNoLessThan() { return MonthNoLessThan; } public SO_SalesQtyQuery setMonthNoLessThan(Integer value) { this.MonthNoLessThan = value; return this; } public Integer getMonthNoLessThanOrEqualTo() { return MonthNoLessThanOrEqualTo; } public SO_SalesQtyQuery setMonthNoLessThanOrEqualTo(Integer value) { this.MonthNoLessThanOrEqualTo = value; return this; } public Integer getMonthNoNotEqualTo() { return MonthNoNotEqualTo; } public SO_SalesQtyQuery setMonthNoNotEqualTo(Integer value) { this.MonthNoNotEqualTo = value; return this; } public ArrayList getMonthNoBetween() { return MonthNoBetween; } public SO_SalesQtyQuery setMonthNoBetween(ArrayList value) { this.MonthNoBetween = value; return this; } public ArrayList getMonthNoIn() { return MonthNoIn; } public SO_SalesQtyQuery setMonthNoIn(ArrayList value) { this.MonthNoIn = value; return this; } public BigDecimal getTotalQty() { return TotalQty; } public SO_SalesQtyQuery setTotalQty(BigDecimal value) { this.TotalQty = value; return this; } public BigDecimal getTotalQtyGreaterThanOrEqualTo() { return TotalQtyGreaterThanOrEqualTo; } public SO_SalesQtyQuery setTotalQtyGreaterThanOrEqualTo(BigDecimal value) { this.TotalQtyGreaterThanOrEqualTo = value; return this; } public BigDecimal getTotalQtyGreaterThan() { return TotalQtyGreaterThan; } public SO_SalesQtyQuery setTotalQtyGreaterThan(BigDecimal value) { this.TotalQtyGreaterThan = value; return this; } public BigDecimal getTotalQtyLessThan() { return TotalQtyLessThan; } public SO_SalesQtyQuery setTotalQtyLessThan(BigDecimal value) { this.TotalQtyLessThan = value; return this; } public BigDecimal getTotalQtyLessThanOrEqualTo() { return TotalQtyLessThanOrEqualTo; } public SO_SalesQtyQuery setTotalQtyLessThanOrEqualTo(BigDecimal value) { this.TotalQtyLessThanOrEqualTo = value; return this; } public BigDecimal getTotalQtyNotEqualTo() { return TotalQtyNotEqualTo; } public SO_SalesQtyQuery setTotalQtyNotEqualTo(BigDecimal value) { this.TotalQtyNotEqualTo = value; return this; } public ArrayList getTotalQtyBetween() { return TotalQtyBetween; } public SO_SalesQtyQuery setTotalQtyBetween(ArrayList value) { this.TotalQtyBetween = value; return this; } public ArrayList getTotalQtyIn() { return TotalQtyIn; } public SO_SalesQtyQuery setTotalQtyIn(ArrayList value) { this.TotalQtyIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class SO_SplitOrdersQuery extends QueryDb implements IReturn> { public String RecID = null; public String RecIDStartsWith = null; public String RecIDEndsWith = null; public String RecIDContains = null; public String RecIDLike = null; public ArrayList RecIDBetween = null; public ArrayList RecIDIn = null; public String SourceInvoiceID = null; public String SourceInvoiceIDStartsWith = null; public String SourceInvoiceIDEndsWith = null; public String SourceInvoiceIDContains = null; public String SourceInvoiceIDLike = null; public ArrayList SourceInvoiceIDBetween = null; public ArrayList SourceInvoiceIDIn = null; public String SourceInvoiceNo = null; public String SourceInvoiceNoStartsWith = null; public String SourceInvoiceNoEndsWith = null; public String SourceInvoiceNoContains = null; public String SourceInvoiceNoLike = null; public ArrayList SourceInvoiceNoBetween = null; public ArrayList SourceInvoiceNoIn = null; public String DestInvoiceID = null; public String DestInvoiceIDStartsWith = null; public String DestInvoiceIDEndsWith = null; public String DestInvoiceIDContains = null; public String DestInvoiceIDLike = null; public ArrayList DestInvoiceIDBetween = null; public ArrayList DestInvoiceIDIn = null; public String DestInvoiceNo = null; public String DestInvoiceNoStartsWith = null; public String DestInvoiceNoEndsWith = null; public String DestInvoiceNoContains = null; public String DestInvoiceNoLike = null; public ArrayList DestInvoiceNoBetween = null; public ArrayList DestInvoiceNoIn = null; public String HRStaffID = null; public String HRStaffIDStartsWith = null; public String HRStaffIDEndsWith = null; public String HRStaffIDContains = null; public String HRStaffIDLike = null; public ArrayList HRStaffIDBetween = null; public ArrayList HRStaffIDIn = null; public Date LastSavedDateTime = null; public Date LastSavedDateTimeGreaterThanOrEqualTo = null; public Date LastSavedDateTimeGreaterThan = null; public Date LastSavedDateTimeLessThan = null; public Date LastSavedDateTimeLessThanOrEqualTo = null; public Date LastSavedDateTimeNotEqualTo = null; public ArrayList LastSavedDateTimeBetween = null; public ArrayList LastSavedDateTimeIn = null; public String getRecID() { return RecID; } public SO_SplitOrdersQuery setRecID(String value) { this.RecID = value; return this; } public String getRecIDStartsWith() { return RecIDStartsWith; } public SO_SplitOrdersQuery setRecIDStartsWith(String value) { this.RecIDStartsWith = value; return this; } public String getRecIDEndsWith() { return RecIDEndsWith; } public SO_SplitOrdersQuery setRecIDEndsWith(String value) { this.RecIDEndsWith = value; return this; } public String getRecIDContains() { return RecIDContains; } public SO_SplitOrdersQuery setRecIDContains(String value) { this.RecIDContains = value; return this; } public String getRecIDLike() { return RecIDLike; } public SO_SplitOrdersQuery setRecIDLike(String value) { this.RecIDLike = value; return this; } public ArrayList getRecIDBetween() { return RecIDBetween; } public SO_SplitOrdersQuery setRecIDBetween(ArrayList value) { this.RecIDBetween = value; return this; } public ArrayList getRecIDIn() { return RecIDIn; } public SO_SplitOrdersQuery setRecIDIn(ArrayList value) { this.RecIDIn = value; return this; } public String getSourceInvoiceID() { return SourceInvoiceID; } public SO_SplitOrdersQuery setSourceInvoiceID(String value) { this.SourceInvoiceID = value; return this; } public String getSourceInvoiceIDStartsWith() { return SourceInvoiceIDStartsWith; } public SO_SplitOrdersQuery setSourceInvoiceIDStartsWith(String value) { this.SourceInvoiceIDStartsWith = value; return this; } public String getSourceInvoiceIDEndsWith() { return SourceInvoiceIDEndsWith; } public SO_SplitOrdersQuery setSourceInvoiceIDEndsWith(String value) { this.SourceInvoiceIDEndsWith = value; return this; } public String getSourceInvoiceIDContains() { return SourceInvoiceIDContains; } public SO_SplitOrdersQuery setSourceInvoiceIDContains(String value) { this.SourceInvoiceIDContains = value; return this; } public String getSourceInvoiceIDLike() { return SourceInvoiceIDLike; } public SO_SplitOrdersQuery setSourceInvoiceIDLike(String value) { this.SourceInvoiceIDLike = value; return this; } public ArrayList getSourceInvoiceIDBetween() { return SourceInvoiceIDBetween; } public SO_SplitOrdersQuery setSourceInvoiceIDBetween(ArrayList value) { this.SourceInvoiceIDBetween = value; return this; } public ArrayList getSourceInvoiceIDIn() { return SourceInvoiceIDIn; } public SO_SplitOrdersQuery setSourceInvoiceIDIn(ArrayList value) { this.SourceInvoiceIDIn = value; return this; } public String getSourceInvoiceNo() { return SourceInvoiceNo; } public SO_SplitOrdersQuery setSourceInvoiceNo(String value) { this.SourceInvoiceNo = value; return this; } public String getSourceInvoiceNoStartsWith() { return SourceInvoiceNoStartsWith; } public SO_SplitOrdersQuery setSourceInvoiceNoStartsWith(String value) { this.SourceInvoiceNoStartsWith = value; return this; } public String getSourceInvoiceNoEndsWith() { return SourceInvoiceNoEndsWith; } public SO_SplitOrdersQuery setSourceInvoiceNoEndsWith(String value) { this.SourceInvoiceNoEndsWith = value; return this; } public String getSourceInvoiceNoContains() { return SourceInvoiceNoContains; } public SO_SplitOrdersQuery setSourceInvoiceNoContains(String value) { this.SourceInvoiceNoContains = value; return this; } public String getSourceInvoiceNoLike() { return SourceInvoiceNoLike; } public SO_SplitOrdersQuery setSourceInvoiceNoLike(String value) { this.SourceInvoiceNoLike = value; return this; } public ArrayList getSourceInvoiceNoBetween() { return SourceInvoiceNoBetween; } public SO_SplitOrdersQuery setSourceInvoiceNoBetween(ArrayList value) { this.SourceInvoiceNoBetween = value; return this; } public ArrayList getSourceInvoiceNoIn() { return SourceInvoiceNoIn; } public SO_SplitOrdersQuery setSourceInvoiceNoIn(ArrayList value) { this.SourceInvoiceNoIn = value; return this; } public String getDestInvoiceID() { return DestInvoiceID; } public SO_SplitOrdersQuery setDestInvoiceID(String value) { this.DestInvoiceID = value; return this; } public String getDestInvoiceIDStartsWith() { return DestInvoiceIDStartsWith; } public SO_SplitOrdersQuery setDestInvoiceIDStartsWith(String value) { this.DestInvoiceIDStartsWith = value; return this; } public String getDestInvoiceIDEndsWith() { return DestInvoiceIDEndsWith; } public SO_SplitOrdersQuery setDestInvoiceIDEndsWith(String value) { this.DestInvoiceIDEndsWith = value; return this; } public String getDestInvoiceIDContains() { return DestInvoiceIDContains; } public SO_SplitOrdersQuery setDestInvoiceIDContains(String value) { this.DestInvoiceIDContains = value; return this; } public String getDestInvoiceIDLike() { return DestInvoiceIDLike; } public SO_SplitOrdersQuery setDestInvoiceIDLike(String value) { this.DestInvoiceIDLike = value; return this; } public ArrayList getDestInvoiceIDBetween() { return DestInvoiceIDBetween; } public SO_SplitOrdersQuery setDestInvoiceIDBetween(ArrayList value) { this.DestInvoiceIDBetween = value; return this; } public ArrayList getDestInvoiceIDIn() { return DestInvoiceIDIn; } public SO_SplitOrdersQuery setDestInvoiceIDIn(ArrayList value) { this.DestInvoiceIDIn = value; return this; } public String getDestInvoiceNo() { return DestInvoiceNo; } public SO_SplitOrdersQuery setDestInvoiceNo(String value) { this.DestInvoiceNo = value; return this; } public String getDestInvoiceNoStartsWith() { return DestInvoiceNoStartsWith; } public SO_SplitOrdersQuery setDestInvoiceNoStartsWith(String value) { this.DestInvoiceNoStartsWith = value; return this; } public String getDestInvoiceNoEndsWith() { return DestInvoiceNoEndsWith; } public SO_SplitOrdersQuery setDestInvoiceNoEndsWith(String value) { this.DestInvoiceNoEndsWith = value; return this; } public String getDestInvoiceNoContains() { return DestInvoiceNoContains; } public SO_SplitOrdersQuery setDestInvoiceNoContains(String value) { this.DestInvoiceNoContains = value; return this; } public String getDestInvoiceNoLike() { return DestInvoiceNoLike; } public SO_SplitOrdersQuery setDestInvoiceNoLike(String value) { this.DestInvoiceNoLike = value; return this; } public ArrayList getDestInvoiceNoBetween() { return DestInvoiceNoBetween; } public SO_SplitOrdersQuery setDestInvoiceNoBetween(ArrayList value) { this.DestInvoiceNoBetween = value; return this; } public ArrayList getDestInvoiceNoIn() { return DestInvoiceNoIn; } public SO_SplitOrdersQuery setDestInvoiceNoIn(ArrayList value) { this.DestInvoiceNoIn = value; return this; } public String getHrStaffID() { return HRStaffID; } public SO_SplitOrdersQuery setHrStaffID(String value) { this.HRStaffID = value; return this; } public String getHrStaffIDStartsWith() { return HRStaffIDStartsWith; } public SO_SplitOrdersQuery setHrStaffIDStartsWith(String value) { this.HRStaffIDStartsWith = value; return this; } public String getHrStaffIDEndsWith() { return HRStaffIDEndsWith; } public SO_SplitOrdersQuery setHrStaffIDEndsWith(String value) { this.HRStaffIDEndsWith = value; return this; } public String getHrStaffIDContains() { return HRStaffIDContains; } public SO_SplitOrdersQuery setHrStaffIDContains(String value) { this.HRStaffIDContains = value; return this; } public String getHrStaffIDLike() { return HRStaffIDLike; } public SO_SplitOrdersQuery setHrStaffIDLike(String value) { this.HRStaffIDLike = value; return this; } public ArrayList getHrStaffIDBetween() { return HRStaffIDBetween; } public SO_SplitOrdersQuery setHrStaffIDBetween(ArrayList value) { this.HRStaffIDBetween = value; return this; } public ArrayList getHrStaffIDIn() { return HRStaffIDIn; } public SO_SplitOrdersQuery setHrStaffIDIn(ArrayList value) { this.HRStaffIDIn = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public SO_SplitOrdersQuery setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getLastSavedDateTimeGreaterThanOrEqualTo() { return LastSavedDateTimeGreaterThanOrEqualTo; } public SO_SplitOrdersQuery setLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.LastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeGreaterThan() { return LastSavedDateTimeGreaterThan; } public SO_SplitOrdersQuery setLastSavedDateTimeGreaterThan(Date value) { this.LastSavedDateTimeGreaterThan = value; return this; } public Date getLastSavedDateTimeLessThan() { return LastSavedDateTimeLessThan; } public SO_SplitOrdersQuery setLastSavedDateTimeLessThan(Date value) { this.LastSavedDateTimeLessThan = value; return this; } public Date getLastSavedDateTimeLessThanOrEqualTo() { return LastSavedDateTimeLessThanOrEqualTo; } public SO_SplitOrdersQuery setLastSavedDateTimeLessThanOrEqualTo(Date value) { this.LastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeNotEqualTo() { return LastSavedDateTimeNotEqualTo; } public SO_SplitOrdersQuery setLastSavedDateTimeNotEqualTo(Date value) { this.LastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getLastSavedDateTimeBetween() { return LastSavedDateTimeBetween; } public SO_SplitOrdersQuery setLastSavedDateTimeBetween(ArrayList value) { this.LastSavedDateTimeBetween = value; return this; } public ArrayList getLastSavedDateTimeIn() { return LastSavedDateTimeIn; } public SO_SplitOrdersQuery setLastSavedDateTimeIn(ArrayList value) { this.LastSavedDateTimeIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class SO_TotalsQuery extends QueryDb implements IReturn> { public String InvoiceID = null; public String InvoiceIDStartsWith = null; public String InvoiceIDEndsWith = null; public String InvoiceIDContains = null; public String InvoiceIDLike = null; public ArrayList InvoiceIDBetween = null; public ArrayList InvoiceIDIn = null; public BigDecimal InvoiceTotal = null; public BigDecimal InvoiceTotalGreaterThanOrEqualTo = null; public BigDecimal InvoiceTotalGreaterThan = null; public BigDecimal InvoiceTotalLessThan = null; public BigDecimal InvoiceTotalLessThanOrEqualTo = null; public BigDecimal InvoiceTotalNotEqualTo = null; public ArrayList InvoiceTotalBetween = null; public ArrayList InvoiceTotalIn = null; public BigDecimal Cartage1Total = null; public BigDecimal Cartage1TotalGreaterThanOrEqualTo = null; public BigDecimal Cartage1TotalGreaterThan = null; public BigDecimal Cartage1TotalLessThan = null; public BigDecimal Cartage1TotalLessThanOrEqualTo = null; public BigDecimal Cartage1TotalNotEqualTo = null; public ArrayList Cartage1TotalBetween = null; public ArrayList Cartage1TotalIn = null; public BigDecimal Cartage1TaxTotal = null; public BigDecimal Cartage1TaxTotalGreaterThanOrEqualTo = null; public BigDecimal Cartage1TaxTotalGreaterThan = null; public BigDecimal Cartage1TaxTotalLessThan = null; public BigDecimal Cartage1TaxTotalLessThanOrEqualTo = null; public BigDecimal Cartage1TaxTotalNotEqualTo = null; public ArrayList Cartage1TaxTotalBetween = null; public ArrayList Cartage1TaxTotalIn = null; public BigDecimal Cartage2Total = null; public BigDecimal Cartage2TotalGreaterThanOrEqualTo = null; public BigDecimal Cartage2TotalGreaterThan = null; public BigDecimal Cartage2TotalLessThan = null; public BigDecimal Cartage2TotalLessThanOrEqualTo = null; public BigDecimal Cartage2TotalNotEqualTo = null; public ArrayList Cartage2TotalBetween = null; public ArrayList Cartage2TotalIn = null; public BigDecimal Cartage2TaxTotal = null; public BigDecimal Cartage2TaxTotalGreaterThanOrEqualTo = null; public BigDecimal Cartage2TaxTotalGreaterThan = null; public BigDecimal Cartage2TaxTotalLessThan = null; public BigDecimal Cartage2TaxTotalLessThanOrEqualTo = null; public BigDecimal Cartage2TaxTotalNotEqualTo = null; public ArrayList Cartage2TaxTotalBetween = null; public ArrayList Cartage2TaxTotalIn = null; public BigDecimal Cartage3Total = null; public BigDecimal Cartage3TotalGreaterThanOrEqualTo = null; public BigDecimal Cartage3TotalGreaterThan = null; public BigDecimal Cartage3TotalLessThan = null; public BigDecimal Cartage3TotalLessThanOrEqualTo = null; public BigDecimal Cartage3TotalNotEqualTo = null; public ArrayList Cartage3TotalBetween = null; public ArrayList Cartage3TotalIn = null; public BigDecimal Cartage3TaxTotal = null; public BigDecimal Cartage3TaxTotalGreaterThanOrEqualTo = null; public BigDecimal Cartage3TaxTotalGreaterThan = null; public BigDecimal Cartage3TaxTotalLessThan = null; public BigDecimal Cartage3TaxTotalLessThanOrEqualTo = null; public BigDecimal Cartage3TaxTotalNotEqualTo = null; public ArrayList Cartage3TaxTotalBetween = null; public ArrayList Cartage3TaxTotalIn = null; public String getInvoiceID() { return InvoiceID; } public SO_TotalsQuery setInvoiceID(String value) { this.InvoiceID = value; return this; } public String getInvoiceIDStartsWith() { return InvoiceIDStartsWith; } public SO_TotalsQuery setInvoiceIDStartsWith(String value) { this.InvoiceIDStartsWith = value; return this; } public String getInvoiceIDEndsWith() { return InvoiceIDEndsWith; } public SO_TotalsQuery setInvoiceIDEndsWith(String value) { this.InvoiceIDEndsWith = value; return this; } public String getInvoiceIDContains() { return InvoiceIDContains; } public SO_TotalsQuery setInvoiceIDContains(String value) { this.InvoiceIDContains = value; return this; } public String getInvoiceIDLike() { return InvoiceIDLike; } public SO_TotalsQuery setInvoiceIDLike(String value) { this.InvoiceIDLike = value; return this; } public ArrayList getInvoiceIDBetween() { return InvoiceIDBetween; } public SO_TotalsQuery setInvoiceIDBetween(ArrayList value) { this.InvoiceIDBetween = value; return this; } public ArrayList getInvoiceIDIn() { return InvoiceIDIn; } public SO_TotalsQuery setInvoiceIDIn(ArrayList value) { this.InvoiceIDIn = value; return this; } public BigDecimal getInvoiceTotal() { return InvoiceTotal; } public SO_TotalsQuery setInvoiceTotal(BigDecimal value) { this.InvoiceTotal = value; return this; } public BigDecimal getInvoiceTotalGreaterThanOrEqualTo() { return InvoiceTotalGreaterThanOrEqualTo; } public SO_TotalsQuery setInvoiceTotalGreaterThanOrEqualTo(BigDecimal value) { this.InvoiceTotalGreaterThanOrEqualTo = value; return this; } public BigDecimal getInvoiceTotalGreaterThan() { return InvoiceTotalGreaterThan; } public SO_TotalsQuery setInvoiceTotalGreaterThan(BigDecimal value) { this.InvoiceTotalGreaterThan = value; return this; } public BigDecimal getInvoiceTotalLessThan() { return InvoiceTotalLessThan; } public SO_TotalsQuery setInvoiceTotalLessThan(BigDecimal value) { this.InvoiceTotalLessThan = value; return this; } public BigDecimal getInvoiceTotalLessThanOrEqualTo() { return InvoiceTotalLessThanOrEqualTo; } public SO_TotalsQuery setInvoiceTotalLessThanOrEqualTo(BigDecimal value) { this.InvoiceTotalLessThanOrEqualTo = value; return this; } public BigDecimal getInvoiceTotalNotEqualTo() { return InvoiceTotalNotEqualTo; } public SO_TotalsQuery setInvoiceTotalNotEqualTo(BigDecimal value) { this.InvoiceTotalNotEqualTo = value; return this; } public ArrayList getInvoiceTotalBetween() { return InvoiceTotalBetween; } public SO_TotalsQuery setInvoiceTotalBetween(ArrayList value) { this.InvoiceTotalBetween = value; return this; } public ArrayList getInvoiceTotalIn() { return InvoiceTotalIn; } public SO_TotalsQuery setInvoiceTotalIn(ArrayList value) { this.InvoiceTotalIn = value; return this; } public BigDecimal getCartage1Total() { return Cartage1Total; } public SO_TotalsQuery setCartage1Total(BigDecimal value) { this.Cartage1Total = value; return this; } public BigDecimal getCartage1TotalGreaterThanOrEqualTo() { return Cartage1TotalGreaterThanOrEqualTo; } public SO_TotalsQuery setCartage1TotalGreaterThanOrEqualTo(BigDecimal value) { this.Cartage1TotalGreaterThanOrEqualTo = value; return this; } public BigDecimal getCartage1TotalGreaterThan() { return Cartage1TotalGreaterThan; } public SO_TotalsQuery setCartage1TotalGreaterThan(BigDecimal value) { this.Cartage1TotalGreaterThan = value; return this; } public BigDecimal getCartage1TotalLessThan() { return Cartage1TotalLessThan; } public SO_TotalsQuery setCartage1TotalLessThan(BigDecimal value) { this.Cartage1TotalLessThan = value; return this; } public BigDecimal getCartage1TotalLessThanOrEqualTo() { return Cartage1TotalLessThanOrEqualTo; } public SO_TotalsQuery setCartage1TotalLessThanOrEqualTo(BigDecimal value) { this.Cartage1TotalLessThanOrEqualTo = value; return this; } public BigDecimal getCartage1TotalNotEqualTo() { return Cartage1TotalNotEqualTo; } public SO_TotalsQuery setCartage1TotalNotEqualTo(BigDecimal value) { this.Cartage1TotalNotEqualTo = value; return this; } public ArrayList getCartage1TotalBetween() { return Cartage1TotalBetween; } public SO_TotalsQuery setCartage1TotalBetween(ArrayList value) { this.Cartage1TotalBetween = value; return this; } public ArrayList getCartage1TotalIn() { return Cartage1TotalIn; } public SO_TotalsQuery setCartage1TotalIn(ArrayList value) { this.Cartage1TotalIn = value; return this; } public BigDecimal getCartage1TaxTotal() { return Cartage1TaxTotal; } public SO_TotalsQuery setCartage1TaxTotal(BigDecimal value) { this.Cartage1TaxTotal = value; return this; } public BigDecimal getCartage1TaxTotalGreaterThanOrEqualTo() { return Cartage1TaxTotalGreaterThanOrEqualTo; } public SO_TotalsQuery setCartage1TaxTotalGreaterThanOrEqualTo(BigDecimal value) { this.Cartage1TaxTotalGreaterThanOrEqualTo = value; return this; } public BigDecimal getCartage1TaxTotalGreaterThan() { return Cartage1TaxTotalGreaterThan; } public SO_TotalsQuery setCartage1TaxTotalGreaterThan(BigDecimal value) { this.Cartage1TaxTotalGreaterThan = value; return this; } public BigDecimal getCartage1TaxTotalLessThan() { return Cartage1TaxTotalLessThan; } public SO_TotalsQuery setCartage1TaxTotalLessThan(BigDecimal value) { this.Cartage1TaxTotalLessThan = value; return this; } public BigDecimal getCartage1TaxTotalLessThanOrEqualTo() { return Cartage1TaxTotalLessThanOrEqualTo; } public SO_TotalsQuery setCartage1TaxTotalLessThanOrEqualTo(BigDecimal value) { this.Cartage1TaxTotalLessThanOrEqualTo = value; return this; } public BigDecimal getCartage1TaxTotalNotEqualTo() { return Cartage1TaxTotalNotEqualTo; } public SO_TotalsQuery setCartage1TaxTotalNotEqualTo(BigDecimal value) { this.Cartage1TaxTotalNotEqualTo = value; return this; } public ArrayList getCartage1TaxTotalBetween() { return Cartage1TaxTotalBetween; } public SO_TotalsQuery setCartage1TaxTotalBetween(ArrayList value) { this.Cartage1TaxTotalBetween = value; return this; } public ArrayList getCartage1TaxTotalIn() { return Cartage1TaxTotalIn; } public SO_TotalsQuery setCartage1TaxTotalIn(ArrayList value) { this.Cartage1TaxTotalIn = value; return this; } public BigDecimal getCartage2Total() { return Cartage2Total; } public SO_TotalsQuery setCartage2Total(BigDecimal value) { this.Cartage2Total = value; return this; } public BigDecimal getCartage2TotalGreaterThanOrEqualTo() { return Cartage2TotalGreaterThanOrEqualTo; } public SO_TotalsQuery setCartage2TotalGreaterThanOrEqualTo(BigDecimal value) { this.Cartage2TotalGreaterThanOrEqualTo = value; return this; } public BigDecimal getCartage2TotalGreaterThan() { return Cartage2TotalGreaterThan; } public SO_TotalsQuery setCartage2TotalGreaterThan(BigDecimal value) { this.Cartage2TotalGreaterThan = value; return this; } public BigDecimal getCartage2TotalLessThan() { return Cartage2TotalLessThan; } public SO_TotalsQuery setCartage2TotalLessThan(BigDecimal value) { this.Cartage2TotalLessThan = value; return this; } public BigDecimal getCartage2TotalLessThanOrEqualTo() { return Cartage2TotalLessThanOrEqualTo; } public SO_TotalsQuery setCartage2TotalLessThanOrEqualTo(BigDecimal value) { this.Cartage2TotalLessThanOrEqualTo = value; return this; } public BigDecimal getCartage2TotalNotEqualTo() { return Cartage2TotalNotEqualTo; } public SO_TotalsQuery setCartage2TotalNotEqualTo(BigDecimal value) { this.Cartage2TotalNotEqualTo = value; return this; } public ArrayList getCartage2TotalBetween() { return Cartage2TotalBetween; } public SO_TotalsQuery setCartage2TotalBetween(ArrayList value) { this.Cartage2TotalBetween = value; return this; } public ArrayList getCartage2TotalIn() { return Cartage2TotalIn; } public SO_TotalsQuery setCartage2TotalIn(ArrayList value) { this.Cartage2TotalIn = value; return this; } public BigDecimal getCartage2TaxTotal() { return Cartage2TaxTotal; } public SO_TotalsQuery setCartage2TaxTotal(BigDecimal value) { this.Cartage2TaxTotal = value; return this; } public BigDecimal getCartage2TaxTotalGreaterThanOrEqualTo() { return Cartage2TaxTotalGreaterThanOrEqualTo; } public SO_TotalsQuery setCartage2TaxTotalGreaterThanOrEqualTo(BigDecimal value) { this.Cartage2TaxTotalGreaterThanOrEqualTo = value; return this; } public BigDecimal getCartage2TaxTotalGreaterThan() { return Cartage2TaxTotalGreaterThan; } public SO_TotalsQuery setCartage2TaxTotalGreaterThan(BigDecimal value) { this.Cartage2TaxTotalGreaterThan = value; return this; } public BigDecimal getCartage2TaxTotalLessThan() { return Cartage2TaxTotalLessThan; } public SO_TotalsQuery setCartage2TaxTotalLessThan(BigDecimal value) { this.Cartage2TaxTotalLessThan = value; return this; } public BigDecimal getCartage2TaxTotalLessThanOrEqualTo() { return Cartage2TaxTotalLessThanOrEqualTo; } public SO_TotalsQuery setCartage2TaxTotalLessThanOrEqualTo(BigDecimal value) { this.Cartage2TaxTotalLessThanOrEqualTo = value; return this; } public BigDecimal getCartage2TaxTotalNotEqualTo() { return Cartage2TaxTotalNotEqualTo; } public SO_TotalsQuery setCartage2TaxTotalNotEqualTo(BigDecimal value) { this.Cartage2TaxTotalNotEqualTo = value; return this; } public ArrayList getCartage2TaxTotalBetween() { return Cartage2TaxTotalBetween; } public SO_TotalsQuery setCartage2TaxTotalBetween(ArrayList value) { this.Cartage2TaxTotalBetween = value; return this; } public ArrayList getCartage2TaxTotalIn() { return Cartage2TaxTotalIn; } public SO_TotalsQuery setCartage2TaxTotalIn(ArrayList value) { this.Cartage2TaxTotalIn = value; return this; } public BigDecimal getCartage3Total() { return Cartage3Total; } public SO_TotalsQuery setCartage3Total(BigDecimal value) { this.Cartage3Total = value; return this; } public BigDecimal getCartage3TotalGreaterThanOrEqualTo() { return Cartage3TotalGreaterThanOrEqualTo; } public SO_TotalsQuery setCartage3TotalGreaterThanOrEqualTo(BigDecimal value) { this.Cartage3TotalGreaterThanOrEqualTo = value; return this; } public BigDecimal getCartage3TotalGreaterThan() { return Cartage3TotalGreaterThan; } public SO_TotalsQuery setCartage3TotalGreaterThan(BigDecimal value) { this.Cartage3TotalGreaterThan = value; return this; } public BigDecimal getCartage3TotalLessThan() { return Cartage3TotalLessThan; } public SO_TotalsQuery setCartage3TotalLessThan(BigDecimal value) { this.Cartage3TotalLessThan = value; return this; } public BigDecimal getCartage3TotalLessThanOrEqualTo() { return Cartage3TotalLessThanOrEqualTo; } public SO_TotalsQuery setCartage3TotalLessThanOrEqualTo(BigDecimal value) { this.Cartage3TotalLessThanOrEqualTo = value; return this; } public BigDecimal getCartage3TotalNotEqualTo() { return Cartage3TotalNotEqualTo; } public SO_TotalsQuery setCartage3TotalNotEqualTo(BigDecimal value) { this.Cartage3TotalNotEqualTo = value; return this; } public ArrayList getCartage3TotalBetween() { return Cartage3TotalBetween; } public SO_TotalsQuery setCartage3TotalBetween(ArrayList value) { this.Cartage3TotalBetween = value; return this; } public ArrayList getCartage3TotalIn() { return Cartage3TotalIn; } public SO_TotalsQuery setCartage3TotalIn(ArrayList value) { this.Cartage3TotalIn = value; return this; } public BigDecimal getCartage3TaxTotal() { return Cartage3TaxTotal; } public SO_TotalsQuery setCartage3TaxTotal(BigDecimal value) { this.Cartage3TaxTotal = value; return this; } public BigDecimal getCartage3TaxTotalGreaterThanOrEqualTo() { return Cartage3TaxTotalGreaterThanOrEqualTo; } public SO_TotalsQuery setCartage3TaxTotalGreaterThanOrEqualTo(BigDecimal value) { this.Cartage3TaxTotalGreaterThanOrEqualTo = value; return this; } public BigDecimal getCartage3TaxTotalGreaterThan() { return Cartage3TaxTotalGreaterThan; } public SO_TotalsQuery setCartage3TaxTotalGreaterThan(BigDecimal value) { this.Cartage3TaxTotalGreaterThan = value; return this; } public BigDecimal getCartage3TaxTotalLessThan() { return Cartage3TaxTotalLessThan; } public SO_TotalsQuery setCartage3TaxTotalLessThan(BigDecimal value) { this.Cartage3TaxTotalLessThan = value; return this; } public BigDecimal getCartage3TaxTotalLessThanOrEqualTo() { return Cartage3TaxTotalLessThanOrEqualTo; } public SO_TotalsQuery setCartage3TaxTotalLessThanOrEqualTo(BigDecimal value) { this.Cartage3TaxTotalLessThanOrEqualTo = value; return this; } public BigDecimal getCartage3TaxTotalNotEqualTo() { return Cartage3TaxTotalNotEqualTo; } public SO_TotalsQuery setCartage3TaxTotalNotEqualTo(BigDecimal value) { this.Cartage3TaxTotalNotEqualTo = value; return this; } public ArrayList getCartage3TaxTotalBetween() { return Cartage3TaxTotalBetween; } public SO_TotalsQuery setCartage3TaxTotalBetween(ArrayList value) { this.Cartage3TaxTotalBetween = value; return this; } public ArrayList getCartage3TaxTotalIn() { return Cartage3TaxTotalIn; } public SO_TotalsQuery setCartage3TaxTotalIn(ArrayList value) { this.Cartage3TaxTotalIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class SO_ViewInvoicedQuery extends QueryDb implements IReturn> { public String InvoiceID = null; public String InvoiceIDStartsWith = null; public String InvoiceIDEndsWith = null; public String InvoiceIDContains = null; public String InvoiceIDLike = null; public ArrayList InvoiceIDBetween = null; public ArrayList InvoiceIDIn = null; public String InvoiceNo = null; public String InvoiceNoStartsWith = null; public String InvoiceNoEndsWith = null; public String InvoiceNoContains = null; public String InvoiceNoLike = null; public ArrayList InvoiceNoBetween = null; public ArrayList InvoiceNoIn = null; public Short BillWhenComplete = null; public Short BillWhenCompleteGreaterThanOrEqualTo = null; public Short BillWhenCompleteGreaterThan = null; public Short BillWhenCompleteLessThan = null; public Short BillWhenCompleteLessThanOrEqualTo = null; public Short BillWhenCompleteNotEqualTo = null; public ArrayList BillWhenCompleteBetween = null; public ArrayList BillWhenCompleteIn = null; public String OrderNo = null; public String OrderNoStartsWith = null; public String OrderNoEndsWith = null; public String OrderNoContains = null; public String OrderNoLike = null; public ArrayList OrderNoBetween = null; public ArrayList OrderNoIn = null; public Boolean CreditNote = null; public Boolean WholeSaleInvoice = null; public String TaxExemptNo = null; public String TaxExemptNoStartsWith = null; public String TaxExemptNoEndsWith = null; public String TaxExemptNoContains = null; public String TaxExemptNoLike = null; public ArrayList TaxExemptNoBetween = null; public ArrayList TaxExemptNoIn = null; public Short Status = null; public Short StatusGreaterThanOrEqualTo = null; public Short StatusGreaterThan = null; public Short StatusLessThan = null; public Short StatusLessThanOrEqualTo = null; public Short StatusNotEqualTo = null; public ArrayList StatusBetween = null; public ArrayList StatusIn = null; public String StaffID = null; public String StaffIDStartsWith = null; public String StaffIDEndsWith = null; public String StaffIDContains = null; public String StaffIDLike = null; public ArrayList StaffIDBetween = null; public ArrayList StaffIDIn = null; public String InvoiceHistoryID = null; public String InvoiceHistoryIDStartsWith = null; public String InvoiceHistoryIDEndsWith = null; public String InvoiceHistoryIDContains = null; public String InvoiceHistoryIDLike = null; public ArrayList InvoiceHistoryIDBetween = null; public ArrayList InvoiceHistoryIDIn = null; public BigDecimal Frieght = null; public BigDecimal FrieghtGreaterThanOrEqualTo = null; public BigDecimal FrieghtGreaterThan = null; public BigDecimal FrieghtLessThan = null; public BigDecimal FrieghtLessThanOrEqualTo = null; public BigDecimal FrieghtNotEqualTo = null; public ArrayList FrieghtBetween = null; public ArrayList FrieghtIn = null; public Short ProcessedHistoryNo = null; public Short ProcessedHistoryNoGreaterThanOrEqualTo = null; public Short ProcessedHistoryNoGreaterThan = null; public Short ProcessedHistoryNoLessThan = null; public Short ProcessedHistoryNoLessThanOrEqualTo = null; public Short ProcessedHistoryNoNotEqualTo = null; public ArrayList ProcessedHistoryNoBetween = null; public ArrayList ProcessedHistoryNoIn = null; public Short InvoicedHistoryNo = null; public Short InvoicedHistoryNoGreaterThanOrEqualTo = null; public Short InvoicedHistoryNoGreaterThan = null; public Short InvoicedHistoryNoLessThan = null; public Short InvoicedHistoryNoLessThanOrEqualTo = null; public Short InvoicedHistoryNoNotEqualTo = null; public ArrayList InvoicedHistoryNoBetween = null; public ArrayList InvoicedHistoryNoIn = null; public String ProcessedOnRunNo = null; public String ProcessedOnRunNoStartsWith = null; public String ProcessedOnRunNoEndsWith = null; public String ProcessedOnRunNoContains = null; public String ProcessedOnRunNoLike = null; public ArrayList ProcessedOnRunNoBetween = null; public ArrayList ProcessedOnRunNoIn = null; public String InvoicedOnRunNo = null; public String InvoicedOnRunNoStartsWith = null; public String InvoicedOnRunNoEndsWith = null; public String InvoicedOnRunNoContains = null; public String InvoicedOnRunNoLike = null; public ArrayList InvoicedOnRunNoBetween = null; public ArrayList InvoicedOnRunNoIn = null; public Date ProcessedDate = null; public Date ProcessedDateGreaterThanOrEqualTo = null; public Date ProcessedDateGreaterThan = null; public Date ProcessedDateLessThan = null; public Date ProcessedDateLessThanOrEqualTo = null; public Date ProcessedDateNotEqualTo = null; public ArrayList ProcessedDateBetween = null; public ArrayList ProcessedDateIn = null; public Date InvoicedDate = null; public Date InvoicedDateGreaterThanOrEqualTo = null; public Date InvoicedDateGreaterThan = null; public Date InvoicedDateLessThan = null; public Date InvoicedDateLessThanOrEqualTo = null; public Date InvoicedDateNotEqualTo = null; public ArrayList InvoicedDateBetween = null; public ArrayList InvoicedDateIn = null; public String InvoiceLineID = null; public String InvoiceLineIDStartsWith = null; public String InvoiceLineIDEndsWith = null; public String InvoiceLineIDContains = null; public String InvoiceLineIDLike = null; public ArrayList InvoiceLineIDBetween = null; public ArrayList InvoiceLineIDIn = null; public String PartNo = null; public String PartNoStartsWith = null; public String PartNoEndsWith = null; public String PartNoContains = null; public String PartNoLike = null; public ArrayList PartNoBetween = null; public ArrayList PartNoIn = null; public String Description = null; public String DescriptionStartsWith = null; public String DescriptionEndsWith = null; public String DescriptionContains = null; public String DescriptionLike = null; public ArrayList DescriptionBetween = null; public ArrayList DescriptionIn = null; public BigDecimal CostIn = null; public BigDecimal CostInGreaterThanOrEqualTo = null; public BigDecimal CostInGreaterThan = null; public BigDecimal CostInLessThan = null; public BigDecimal CostInLessThanOrEqualTo = null; public BigDecimal CostInNotEqualTo = null; public ArrayList CostInBetween = null; public ArrayList CostInIn = null; public BigDecimal QuantityThisDel = null; public BigDecimal QuantityThisDelGreaterThanOrEqualTo = null; public BigDecimal QuantityThisDelGreaterThan = null; public BigDecimal QuantityThisDelLessThan = null; public BigDecimal QuantityThisDelLessThanOrEqualTo = null; public BigDecimal QuantityThisDelNotEqualTo = null; public ArrayList QuantityThisDelBetween = null; public ArrayList QuantityThisDelIn = null; public BigDecimal CurrentLineTotal = null; public BigDecimal CurrentLineTotalGreaterThanOrEqualTo = null; public BigDecimal CurrentLineTotalGreaterThan = null; public BigDecimal CurrentLineTotalLessThan = null; public BigDecimal CurrentLineTotalLessThanOrEqualTo = null; public BigDecimal CurrentLineTotalNotEqualTo = null; public ArrayList CurrentLineTotalBetween = null; public ArrayList CurrentLineTotalIn = null; public BigDecimal TaxToCharge = null; public BigDecimal TaxToChargeGreaterThanOrEqualTo = null; public BigDecimal TaxToChargeGreaterThan = null; public BigDecimal TaxToChargeLessThan = null; public BigDecimal TaxToChargeLessThanOrEqualTo = null; public BigDecimal TaxToChargeNotEqualTo = null; public ArrayList TaxToChargeBetween = null; public ArrayList TaxToChargeIn = null; public BigDecimal TaxPaid = null; public BigDecimal TaxPaidGreaterThanOrEqualTo = null; public BigDecimal TaxPaidGreaterThan = null; public BigDecimal TaxPaidLessThan = null; public BigDecimal TaxPaidLessThanOrEqualTo = null; public BigDecimal TaxPaidNotEqualTo = null; public ArrayList TaxPaidBetween = null; public ArrayList TaxPaidIn = null; public Short DecimalPlaces = null; public Short DecimalPlacesGreaterThanOrEqualTo = null; public Short DecimalPlacesGreaterThan = null; public Short DecimalPlacesLessThan = null; public Short DecimalPlacesLessThanOrEqualTo = null; public Short DecimalPlacesNotEqualTo = null; public ArrayList DecimalPlacesBetween = null; public ArrayList DecimalPlacesIn = null; public String TaxID = null; public String TaxIDStartsWith = null; public String TaxIDEndsWith = null; public String TaxIDContains = null; public String TaxIDLike = null; public ArrayList TaxIDBetween = null; public ArrayList TaxIDIn = null; public Short PhysicalItem = null; public Short PhysicalItemGreaterThanOrEqualTo = null; public Short PhysicalItemGreaterThan = null; public Short PhysicalItemLessThan = null; public Short PhysicalItemLessThanOrEqualTo = null; public Short PhysicalItemNotEqualTo = null; public ArrayList PhysicalItemBetween = null; public ArrayList PhysicalItemIn = null; public Boolean NonStock = null; public String DebtorID = null; public String DebtorIDStartsWith = null; public String DebtorIDEndsWith = null; public String DebtorIDContains = null; public String DebtorIDLike = null; public ArrayList DebtorIDBetween = null; public ArrayList DebtorIDIn = null; public String AccountNo = null; public String AccountNoStartsWith = null; public String AccountNoEndsWith = null; public String AccountNoContains = null; public String AccountNoLike = null; public ArrayList AccountNoBetween = null; public ArrayList AccountNoIn = null; public String Name = null; public String NameStartsWith = null; public String NameEndsWith = null; public String NameContains = null; public String NameLike = null; public ArrayList NameBetween = null; public ArrayList NameIn = null; public String InventoryClassificationID = null; public String InventoryClassificationIDStartsWith = null; public String InventoryClassificationIDEndsWith = null; public String InventoryClassificationIDContains = null; public String InventoryClassificationIDLike = null; public ArrayList InventoryClassificationIDBetween = null; public ArrayList InventoryClassificationIDIn = null; public String ClassDescription = null; public String ClassDescriptionStartsWith = null; public String ClassDescriptionEndsWith = null; public String ClassDescriptionContains = null; public String ClassDescriptionLike = null; public ArrayList ClassDescriptionBetween = null; public ArrayList ClassDescriptionIn = null; public String getInvoiceID() { return InvoiceID; } public SO_ViewInvoicedQuery setInvoiceID(String value) { this.InvoiceID = value; return this; } public String getInvoiceIDStartsWith() { return InvoiceIDStartsWith; } public SO_ViewInvoicedQuery setInvoiceIDStartsWith(String value) { this.InvoiceIDStartsWith = value; return this; } public String getInvoiceIDEndsWith() { return InvoiceIDEndsWith; } public SO_ViewInvoicedQuery setInvoiceIDEndsWith(String value) { this.InvoiceIDEndsWith = value; return this; } public String getInvoiceIDContains() { return InvoiceIDContains; } public SO_ViewInvoicedQuery setInvoiceIDContains(String value) { this.InvoiceIDContains = value; return this; } public String getInvoiceIDLike() { return InvoiceIDLike; } public SO_ViewInvoicedQuery setInvoiceIDLike(String value) { this.InvoiceIDLike = value; return this; } public ArrayList getInvoiceIDBetween() { return InvoiceIDBetween; } public SO_ViewInvoicedQuery setInvoiceIDBetween(ArrayList value) { this.InvoiceIDBetween = value; return this; } public ArrayList getInvoiceIDIn() { return InvoiceIDIn; } public SO_ViewInvoicedQuery setInvoiceIDIn(ArrayList value) { this.InvoiceIDIn = value; return this; } public String getInvoiceNo() { return InvoiceNo; } public SO_ViewInvoicedQuery setInvoiceNo(String value) { this.InvoiceNo = value; return this; } public String getInvoiceNoStartsWith() { return InvoiceNoStartsWith; } public SO_ViewInvoicedQuery setInvoiceNoStartsWith(String value) { this.InvoiceNoStartsWith = value; return this; } public String getInvoiceNoEndsWith() { return InvoiceNoEndsWith; } public SO_ViewInvoicedQuery setInvoiceNoEndsWith(String value) { this.InvoiceNoEndsWith = value; return this; } public String getInvoiceNoContains() { return InvoiceNoContains; } public SO_ViewInvoicedQuery setInvoiceNoContains(String value) { this.InvoiceNoContains = value; return this; } public String getInvoiceNoLike() { return InvoiceNoLike; } public SO_ViewInvoicedQuery setInvoiceNoLike(String value) { this.InvoiceNoLike = value; return this; } public ArrayList getInvoiceNoBetween() { return InvoiceNoBetween; } public SO_ViewInvoicedQuery setInvoiceNoBetween(ArrayList value) { this.InvoiceNoBetween = value; return this; } public ArrayList getInvoiceNoIn() { return InvoiceNoIn; } public SO_ViewInvoicedQuery setInvoiceNoIn(ArrayList value) { this.InvoiceNoIn = value; return this; } public Short getBillWhenComplete() { return BillWhenComplete; } public SO_ViewInvoicedQuery setBillWhenComplete(Short value) { this.BillWhenComplete = value; return this; } public Short getBillWhenCompleteGreaterThanOrEqualTo() { return BillWhenCompleteGreaterThanOrEqualTo; } public SO_ViewInvoicedQuery setBillWhenCompleteGreaterThanOrEqualTo(Short value) { this.BillWhenCompleteGreaterThanOrEqualTo = value; return this; } public Short getBillWhenCompleteGreaterThan() { return BillWhenCompleteGreaterThan; } public SO_ViewInvoicedQuery setBillWhenCompleteGreaterThan(Short value) { this.BillWhenCompleteGreaterThan = value; return this; } public Short getBillWhenCompleteLessThan() { return BillWhenCompleteLessThan; } public SO_ViewInvoicedQuery setBillWhenCompleteLessThan(Short value) { this.BillWhenCompleteLessThan = value; return this; } public Short getBillWhenCompleteLessThanOrEqualTo() { return BillWhenCompleteLessThanOrEqualTo; } public SO_ViewInvoicedQuery setBillWhenCompleteLessThanOrEqualTo(Short value) { this.BillWhenCompleteLessThanOrEqualTo = value; return this; } public Short getBillWhenCompleteNotEqualTo() { return BillWhenCompleteNotEqualTo; } public SO_ViewInvoicedQuery setBillWhenCompleteNotEqualTo(Short value) { this.BillWhenCompleteNotEqualTo = value; return this; } public ArrayList getBillWhenCompleteBetween() { return BillWhenCompleteBetween; } public SO_ViewInvoicedQuery setBillWhenCompleteBetween(ArrayList value) { this.BillWhenCompleteBetween = value; return this; } public ArrayList getBillWhenCompleteIn() { return BillWhenCompleteIn; } public SO_ViewInvoicedQuery setBillWhenCompleteIn(ArrayList value) { this.BillWhenCompleteIn = value; return this; } public String getOrderNo() { return OrderNo; } public SO_ViewInvoicedQuery setOrderNo(String value) { this.OrderNo = value; return this; } public String getOrderNoStartsWith() { return OrderNoStartsWith; } public SO_ViewInvoicedQuery setOrderNoStartsWith(String value) { this.OrderNoStartsWith = value; return this; } public String getOrderNoEndsWith() { return OrderNoEndsWith; } public SO_ViewInvoicedQuery setOrderNoEndsWith(String value) { this.OrderNoEndsWith = value; return this; } public String getOrderNoContains() { return OrderNoContains; } public SO_ViewInvoicedQuery setOrderNoContains(String value) { this.OrderNoContains = value; return this; } public String getOrderNoLike() { return OrderNoLike; } public SO_ViewInvoicedQuery setOrderNoLike(String value) { this.OrderNoLike = value; return this; } public ArrayList getOrderNoBetween() { return OrderNoBetween; } public SO_ViewInvoicedQuery setOrderNoBetween(ArrayList value) { this.OrderNoBetween = value; return this; } public ArrayList getOrderNoIn() { return OrderNoIn; } public SO_ViewInvoicedQuery setOrderNoIn(ArrayList value) { this.OrderNoIn = value; return this; } public Boolean isCreditNote() { return CreditNote; } public SO_ViewInvoicedQuery setCreditNote(Boolean value) { this.CreditNote = value; return this; } public Boolean isWholeSaleInvoice() { return WholeSaleInvoice; } public SO_ViewInvoicedQuery setWholeSaleInvoice(Boolean value) { this.WholeSaleInvoice = value; return this; } public String getTaxExemptNo() { return TaxExemptNo; } public SO_ViewInvoicedQuery setTaxExemptNo(String value) { this.TaxExemptNo = value; return this; } public String getTaxExemptNoStartsWith() { return TaxExemptNoStartsWith; } public SO_ViewInvoicedQuery setTaxExemptNoStartsWith(String value) { this.TaxExemptNoStartsWith = value; return this; } public String getTaxExemptNoEndsWith() { return TaxExemptNoEndsWith; } public SO_ViewInvoicedQuery setTaxExemptNoEndsWith(String value) { this.TaxExemptNoEndsWith = value; return this; } public String getTaxExemptNoContains() { return TaxExemptNoContains; } public SO_ViewInvoicedQuery setTaxExemptNoContains(String value) { this.TaxExemptNoContains = value; return this; } public String getTaxExemptNoLike() { return TaxExemptNoLike; } public SO_ViewInvoicedQuery setTaxExemptNoLike(String value) { this.TaxExemptNoLike = value; return this; } public ArrayList getTaxExemptNoBetween() { return TaxExemptNoBetween; } public SO_ViewInvoicedQuery setTaxExemptNoBetween(ArrayList value) { this.TaxExemptNoBetween = value; return this; } public ArrayList getTaxExemptNoIn() { return TaxExemptNoIn; } public SO_ViewInvoicedQuery setTaxExemptNoIn(ArrayList value) { this.TaxExemptNoIn = value; return this; } public Short getStatus() { return Status; } public SO_ViewInvoicedQuery setStatus(Short value) { this.Status = value; return this; } public Short getStatusGreaterThanOrEqualTo() { return StatusGreaterThanOrEqualTo; } public SO_ViewInvoicedQuery setStatusGreaterThanOrEqualTo(Short value) { this.StatusGreaterThanOrEqualTo = value; return this; } public Short getStatusGreaterThan() { return StatusGreaterThan; } public SO_ViewInvoicedQuery setStatusGreaterThan(Short value) { this.StatusGreaterThan = value; return this; } public Short getStatusLessThan() { return StatusLessThan; } public SO_ViewInvoicedQuery setStatusLessThan(Short value) { this.StatusLessThan = value; return this; } public Short getStatusLessThanOrEqualTo() { return StatusLessThanOrEqualTo; } public SO_ViewInvoicedQuery setStatusLessThanOrEqualTo(Short value) { this.StatusLessThanOrEqualTo = value; return this; } public Short getStatusNotEqualTo() { return StatusNotEqualTo; } public SO_ViewInvoicedQuery setStatusNotEqualTo(Short value) { this.StatusNotEqualTo = value; return this; } public ArrayList getStatusBetween() { return StatusBetween; } public SO_ViewInvoicedQuery setStatusBetween(ArrayList value) { this.StatusBetween = value; return this; } public ArrayList getStatusIn() { return StatusIn; } public SO_ViewInvoicedQuery setStatusIn(ArrayList value) { this.StatusIn = value; return this; } public String getStaffID() { return StaffID; } public SO_ViewInvoicedQuery setStaffID(String value) { this.StaffID = value; return this; } public String getStaffIDStartsWith() { return StaffIDStartsWith; } public SO_ViewInvoicedQuery setStaffIDStartsWith(String value) { this.StaffIDStartsWith = value; return this; } public String getStaffIDEndsWith() { return StaffIDEndsWith; } public SO_ViewInvoicedQuery setStaffIDEndsWith(String value) { this.StaffIDEndsWith = value; return this; } public String getStaffIDContains() { return StaffIDContains; } public SO_ViewInvoicedQuery setStaffIDContains(String value) { this.StaffIDContains = value; return this; } public String getStaffIDLike() { return StaffIDLike; } public SO_ViewInvoicedQuery setStaffIDLike(String value) { this.StaffIDLike = value; return this; } public ArrayList getStaffIDBetween() { return StaffIDBetween; } public SO_ViewInvoicedQuery setStaffIDBetween(ArrayList value) { this.StaffIDBetween = value; return this; } public ArrayList getStaffIDIn() { return StaffIDIn; } public SO_ViewInvoicedQuery setStaffIDIn(ArrayList value) { this.StaffIDIn = value; return this; } public String getInvoiceHistoryID() { return InvoiceHistoryID; } public SO_ViewInvoicedQuery setInvoiceHistoryID(String value) { this.InvoiceHistoryID = value; return this; } public String getInvoiceHistoryIDStartsWith() { return InvoiceHistoryIDStartsWith; } public SO_ViewInvoicedQuery setInvoiceHistoryIDStartsWith(String value) { this.InvoiceHistoryIDStartsWith = value; return this; } public String getInvoiceHistoryIDEndsWith() { return InvoiceHistoryIDEndsWith; } public SO_ViewInvoicedQuery setInvoiceHistoryIDEndsWith(String value) { this.InvoiceHistoryIDEndsWith = value; return this; } public String getInvoiceHistoryIDContains() { return InvoiceHistoryIDContains; } public SO_ViewInvoicedQuery setInvoiceHistoryIDContains(String value) { this.InvoiceHistoryIDContains = value; return this; } public String getInvoiceHistoryIDLike() { return InvoiceHistoryIDLike; } public SO_ViewInvoicedQuery setInvoiceHistoryIDLike(String value) { this.InvoiceHistoryIDLike = value; return this; } public ArrayList getInvoiceHistoryIDBetween() { return InvoiceHistoryIDBetween; } public SO_ViewInvoicedQuery setInvoiceHistoryIDBetween(ArrayList value) { this.InvoiceHistoryIDBetween = value; return this; } public ArrayList getInvoiceHistoryIDIn() { return InvoiceHistoryIDIn; } public SO_ViewInvoicedQuery setInvoiceHistoryIDIn(ArrayList value) { this.InvoiceHistoryIDIn = value; return this; } public BigDecimal getFrieght() { return Frieght; } public SO_ViewInvoicedQuery setFrieght(BigDecimal value) { this.Frieght = value; return this; } public BigDecimal getFrieghtGreaterThanOrEqualTo() { return FrieghtGreaterThanOrEqualTo; } public SO_ViewInvoicedQuery setFrieghtGreaterThanOrEqualTo(BigDecimal value) { this.FrieghtGreaterThanOrEqualTo = value; return this; } public BigDecimal getFrieghtGreaterThan() { return FrieghtGreaterThan; } public SO_ViewInvoicedQuery setFrieghtGreaterThan(BigDecimal value) { this.FrieghtGreaterThan = value; return this; } public BigDecimal getFrieghtLessThan() { return FrieghtLessThan; } public SO_ViewInvoicedQuery setFrieghtLessThan(BigDecimal value) { this.FrieghtLessThan = value; return this; } public BigDecimal getFrieghtLessThanOrEqualTo() { return FrieghtLessThanOrEqualTo; } public SO_ViewInvoicedQuery setFrieghtLessThanOrEqualTo(BigDecimal value) { this.FrieghtLessThanOrEqualTo = value; return this; } public BigDecimal getFrieghtNotEqualTo() { return FrieghtNotEqualTo; } public SO_ViewInvoicedQuery setFrieghtNotEqualTo(BigDecimal value) { this.FrieghtNotEqualTo = value; return this; } public ArrayList getFrieghtBetween() { return FrieghtBetween; } public SO_ViewInvoicedQuery setFrieghtBetween(ArrayList value) { this.FrieghtBetween = value; return this; } public ArrayList getFrieghtIn() { return FrieghtIn; } public SO_ViewInvoicedQuery setFrieghtIn(ArrayList value) { this.FrieghtIn = value; return this; } public Short getProcessedHistoryNo() { return ProcessedHistoryNo; } public SO_ViewInvoicedQuery setProcessedHistoryNo(Short value) { this.ProcessedHistoryNo = value; return this; } public Short getProcessedHistoryNoGreaterThanOrEqualTo() { return ProcessedHistoryNoGreaterThanOrEqualTo; } public SO_ViewInvoicedQuery setProcessedHistoryNoGreaterThanOrEqualTo(Short value) { this.ProcessedHistoryNoGreaterThanOrEqualTo = value; return this; } public Short getProcessedHistoryNoGreaterThan() { return ProcessedHistoryNoGreaterThan; } public SO_ViewInvoicedQuery setProcessedHistoryNoGreaterThan(Short value) { this.ProcessedHistoryNoGreaterThan = value; return this; } public Short getProcessedHistoryNoLessThan() { return ProcessedHistoryNoLessThan; } public SO_ViewInvoicedQuery setProcessedHistoryNoLessThan(Short value) { this.ProcessedHistoryNoLessThan = value; return this; } public Short getProcessedHistoryNoLessThanOrEqualTo() { return ProcessedHistoryNoLessThanOrEqualTo; } public SO_ViewInvoicedQuery setProcessedHistoryNoLessThanOrEqualTo(Short value) { this.ProcessedHistoryNoLessThanOrEqualTo = value; return this; } public Short getProcessedHistoryNoNotEqualTo() { return ProcessedHistoryNoNotEqualTo; } public SO_ViewInvoicedQuery setProcessedHistoryNoNotEqualTo(Short value) { this.ProcessedHistoryNoNotEqualTo = value; return this; } public ArrayList getProcessedHistoryNoBetween() { return ProcessedHistoryNoBetween; } public SO_ViewInvoicedQuery setProcessedHistoryNoBetween(ArrayList value) { this.ProcessedHistoryNoBetween = value; return this; } public ArrayList getProcessedHistoryNoIn() { return ProcessedHistoryNoIn; } public SO_ViewInvoicedQuery setProcessedHistoryNoIn(ArrayList value) { this.ProcessedHistoryNoIn = value; return this; } public Short getInvoicedHistoryNo() { return InvoicedHistoryNo; } public SO_ViewInvoicedQuery setInvoicedHistoryNo(Short value) { this.InvoicedHistoryNo = value; return this; } public Short getInvoicedHistoryNoGreaterThanOrEqualTo() { return InvoicedHistoryNoGreaterThanOrEqualTo; } public SO_ViewInvoicedQuery setInvoicedHistoryNoGreaterThanOrEqualTo(Short value) { this.InvoicedHistoryNoGreaterThanOrEqualTo = value; return this; } public Short getInvoicedHistoryNoGreaterThan() { return InvoicedHistoryNoGreaterThan; } public SO_ViewInvoicedQuery setInvoicedHistoryNoGreaterThan(Short value) { this.InvoicedHistoryNoGreaterThan = value; return this; } public Short getInvoicedHistoryNoLessThan() { return InvoicedHistoryNoLessThan; } public SO_ViewInvoicedQuery setInvoicedHistoryNoLessThan(Short value) { this.InvoicedHistoryNoLessThan = value; return this; } public Short getInvoicedHistoryNoLessThanOrEqualTo() { return InvoicedHistoryNoLessThanOrEqualTo; } public SO_ViewInvoicedQuery setInvoicedHistoryNoLessThanOrEqualTo(Short value) { this.InvoicedHistoryNoLessThanOrEqualTo = value; return this; } public Short getInvoicedHistoryNoNotEqualTo() { return InvoicedHistoryNoNotEqualTo; } public SO_ViewInvoicedQuery setInvoicedHistoryNoNotEqualTo(Short value) { this.InvoicedHistoryNoNotEqualTo = value; return this; } public ArrayList getInvoicedHistoryNoBetween() { return InvoicedHistoryNoBetween; } public SO_ViewInvoicedQuery setInvoicedHistoryNoBetween(ArrayList value) { this.InvoicedHistoryNoBetween = value; return this; } public ArrayList getInvoicedHistoryNoIn() { return InvoicedHistoryNoIn; } public SO_ViewInvoicedQuery setInvoicedHistoryNoIn(ArrayList value) { this.InvoicedHistoryNoIn = value; return this; } public String getProcessedOnRunNo() { return ProcessedOnRunNo; } public SO_ViewInvoicedQuery setProcessedOnRunNo(String value) { this.ProcessedOnRunNo = value; return this; } public String getProcessedOnRunNoStartsWith() { return ProcessedOnRunNoStartsWith; } public SO_ViewInvoicedQuery setProcessedOnRunNoStartsWith(String value) { this.ProcessedOnRunNoStartsWith = value; return this; } public String getProcessedOnRunNoEndsWith() { return ProcessedOnRunNoEndsWith; } public SO_ViewInvoicedQuery setProcessedOnRunNoEndsWith(String value) { this.ProcessedOnRunNoEndsWith = value; return this; } public String getProcessedOnRunNoContains() { return ProcessedOnRunNoContains; } public SO_ViewInvoicedQuery setProcessedOnRunNoContains(String value) { this.ProcessedOnRunNoContains = value; return this; } public String getProcessedOnRunNoLike() { return ProcessedOnRunNoLike; } public SO_ViewInvoicedQuery setProcessedOnRunNoLike(String value) { this.ProcessedOnRunNoLike = value; return this; } public ArrayList getProcessedOnRunNoBetween() { return ProcessedOnRunNoBetween; } public SO_ViewInvoicedQuery setProcessedOnRunNoBetween(ArrayList value) { this.ProcessedOnRunNoBetween = value; return this; } public ArrayList getProcessedOnRunNoIn() { return ProcessedOnRunNoIn; } public SO_ViewInvoicedQuery setProcessedOnRunNoIn(ArrayList value) { this.ProcessedOnRunNoIn = value; return this; } public String getInvoicedOnRunNo() { return InvoicedOnRunNo; } public SO_ViewInvoicedQuery setInvoicedOnRunNo(String value) { this.InvoicedOnRunNo = value; return this; } public String getInvoicedOnRunNoStartsWith() { return InvoicedOnRunNoStartsWith; } public SO_ViewInvoicedQuery setInvoicedOnRunNoStartsWith(String value) { this.InvoicedOnRunNoStartsWith = value; return this; } public String getInvoicedOnRunNoEndsWith() { return InvoicedOnRunNoEndsWith; } public SO_ViewInvoicedQuery setInvoicedOnRunNoEndsWith(String value) { this.InvoicedOnRunNoEndsWith = value; return this; } public String getInvoicedOnRunNoContains() { return InvoicedOnRunNoContains; } public SO_ViewInvoicedQuery setInvoicedOnRunNoContains(String value) { this.InvoicedOnRunNoContains = value; return this; } public String getInvoicedOnRunNoLike() { return InvoicedOnRunNoLike; } public SO_ViewInvoicedQuery setInvoicedOnRunNoLike(String value) { this.InvoicedOnRunNoLike = value; return this; } public ArrayList getInvoicedOnRunNoBetween() { return InvoicedOnRunNoBetween; } public SO_ViewInvoicedQuery setInvoicedOnRunNoBetween(ArrayList value) { this.InvoicedOnRunNoBetween = value; return this; } public ArrayList getInvoicedOnRunNoIn() { return InvoicedOnRunNoIn; } public SO_ViewInvoicedQuery setInvoicedOnRunNoIn(ArrayList value) { this.InvoicedOnRunNoIn = value; return this; } public Date getProcessedDate() { return ProcessedDate; } public SO_ViewInvoicedQuery setProcessedDate(Date value) { this.ProcessedDate = value; return this; } public Date getProcessedDateGreaterThanOrEqualTo() { return ProcessedDateGreaterThanOrEqualTo; } public SO_ViewInvoicedQuery setProcessedDateGreaterThanOrEqualTo(Date value) { this.ProcessedDateGreaterThanOrEqualTo = value; return this; } public Date getProcessedDateGreaterThan() { return ProcessedDateGreaterThan; } public SO_ViewInvoicedQuery setProcessedDateGreaterThan(Date value) { this.ProcessedDateGreaterThan = value; return this; } public Date getProcessedDateLessThan() { return ProcessedDateLessThan; } public SO_ViewInvoicedQuery setProcessedDateLessThan(Date value) { this.ProcessedDateLessThan = value; return this; } public Date getProcessedDateLessThanOrEqualTo() { return ProcessedDateLessThanOrEqualTo; } public SO_ViewInvoicedQuery setProcessedDateLessThanOrEqualTo(Date value) { this.ProcessedDateLessThanOrEqualTo = value; return this; } public Date getProcessedDateNotEqualTo() { return ProcessedDateNotEqualTo; } public SO_ViewInvoicedQuery setProcessedDateNotEqualTo(Date value) { this.ProcessedDateNotEqualTo = value; return this; } public ArrayList getProcessedDateBetween() { return ProcessedDateBetween; } public SO_ViewInvoicedQuery setProcessedDateBetween(ArrayList value) { this.ProcessedDateBetween = value; return this; } public ArrayList getProcessedDateIn() { return ProcessedDateIn; } public SO_ViewInvoicedQuery setProcessedDateIn(ArrayList value) { this.ProcessedDateIn = value; return this; } public Date getInvoicedDate() { return InvoicedDate; } public SO_ViewInvoicedQuery setInvoicedDate(Date value) { this.InvoicedDate = value; return this; } public Date getInvoicedDateGreaterThanOrEqualTo() { return InvoicedDateGreaterThanOrEqualTo; } public SO_ViewInvoicedQuery setInvoicedDateGreaterThanOrEqualTo(Date value) { this.InvoicedDateGreaterThanOrEqualTo = value; return this; } public Date getInvoicedDateGreaterThan() { return InvoicedDateGreaterThan; } public SO_ViewInvoicedQuery setInvoicedDateGreaterThan(Date value) { this.InvoicedDateGreaterThan = value; return this; } public Date getInvoicedDateLessThan() { return InvoicedDateLessThan; } public SO_ViewInvoicedQuery setInvoicedDateLessThan(Date value) { this.InvoicedDateLessThan = value; return this; } public Date getInvoicedDateLessThanOrEqualTo() { return InvoicedDateLessThanOrEqualTo; } public SO_ViewInvoicedQuery setInvoicedDateLessThanOrEqualTo(Date value) { this.InvoicedDateLessThanOrEqualTo = value; return this; } public Date getInvoicedDateNotEqualTo() { return InvoicedDateNotEqualTo; } public SO_ViewInvoicedQuery setInvoicedDateNotEqualTo(Date value) { this.InvoicedDateNotEqualTo = value; return this; } public ArrayList getInvoicedDateBetween() { return InvoicedDateBetween; } public SO_ViewInvoicedQuery setInvoicedDateBetween(ArrayList value) { this.InvoicedDateBetween = value; return this; } public ArrayList getInvoicedDateIn() { return InvoicedDateIn; } public SO_ViewInvoicedQuery setInvoicedDateIn(ArrayList value) { this.InvoicedDateIn = value; return this; } public String getInvoiceLineID() { return InvoiceLineID; } public SO_ViewInvoicedQuery setInvoiceLineID(String value) { this.InvoiceLineID = value; return this; } public String getInvoiceLineIDStartsWith() { return InvoiceLineIDStartsWith; } public SO_ViewInvoicedQuery setInvoiceLineIDStartsWith(String value) { this.InvoiceLineIDStartsWith = value; return this; } public String getInvoiceLineIDEndsWith() { return InvoiceLineIDEndsWith; } public SO_ViewInvoicedQuery setInvoiceLineIDEndsWith(String value) { this.InvoiceLineIDEndsWith = value; return this; } public String getInvoiceLineIDContains() { return InvoiceLineIDContains; } public SO_ViewInvoicedQuery setInvoiceLineIDContains(String value) { this.InvoiceLineIDContains = value; return this; } public String getInvoiceLineIDLike() { return InvoiceLineIDLike; } public SO_ViewInvoicedQuery setInvoiceLineIDLike(String value) { this.InvoiceLineIDLike = value; return this; } public ArrayList getInvoiceLineIDBetween() { return InvoiceLineIDBetween; } public SO_ViewInvoicedQuery setInvoiceLineIDBetween(ArrayList value) { this.InvoiceLineIDBetween = value; return this; } public ArrayList getInvoiceLineIDIn() { return InvoiceLineIDIn; } public SO_ViewInvoicedQuery setInvoiceLineIDIn(ArrayList value) { this.InvoiceLineIDIn = value; return this; } public String getPartNo() { return PartNo; } public SO_ViewInvoicedQuery setPartNo(String value) { this.PartNo = value; return this; } public String getPartNoStartsWith() { return PartNoStartsWith; } public SO_ViewInvoicedQuery setPartNoStartsWith(String value) { this.PartNoStartsWith = value; return this; } public String getPartNoEndsWith() { return PartNoEndsWith; } public SO_ViewInvoicedQuery setPartNoEndsWith(String value) { this.PartNoEndsWith = value; return this; } public String getPartNoContains() { return PartNoContains; } public SO_ViewInvoicedQuery setPartNoContains(String value) { this.PartNoContains = value; return this; } public String getPartNoLike() { return PartNoLike; } public SO_ViewInvoicedQuery setPartNoLike(String value) { this.PartNoLike = value; return this; } public ArrayList getPartNoBetween() { return PartNoBetween; } public SO_ViewInvoicedQuery setPartNoBetween(ArrayList value) { this.PartNoBetween = value; return this; } public ArrayList getPartNoIn() { return PartNoIn; } public SO_ViewInvoicedQuery setPartNoIn(ArrayList value) { this.PartNoIn = value; return this; } public String getDescription() { return Description; } public SO_ViewInvoicedQuery setDescription(String value) { this.Description = value; return this; } public String getDescriptionStartsWith() { return DescriptionStartsWith; } public SO_ViewInvoicedQuery setDescriptionStartsWith(String value) { this.DescriptionStartsWith = value; return this; } public String getDescriptionEndsWith() { return DescriptionEndsWith; } public SO_ViewInvoicedQuery setDescriptionEndsWith(String value) { this.DescriptionEndsWith = value; return this; } public String getDescriptionContains() { return DescriptionContains; } public SO_ViewInvoicedQuery setDescriptionContains(String value) { this.DescriptionContains = value; return this; } public String getDescriptionLike() { return DescriptionLike; } public SO_ViewInvoicedQuery setDescriptionLike(String value) { this.DescriptionLike = value; return this; } public ArrayList getDescriptionBetween() { return DescriptionBetween; } public SO_ViewInvoicedQuery setDescriptionBetween(ArrayList value) { this.DescriptionBetween = value; return this; } public ArrayList getDescriptionIn() { return DescriptionIn; } public SO_ViewInvoicedQuery setDescriptionIn(ArrayList value) { this.DescriptionIn = value; return this; } public BigDecimal getCostIn() { return CostIn; } public SO_ViewInvoicedQuery setCostIn(BigDecimal value) { this.CostIn = value; return this; } public BigDecimal getCostInGreaterThanOrEqualTo() { return CostInGreaterThanOrEqualTo; } public SO_ViewInvoicedQuery setCostInGreaterThanOrEqualTo(BigDecimal value) { this.CostInGreaterThanOrEqualTo = value; return this; } public BigDecimal getCostInGreaterThan() { return CostInGreaterThan; } public SO_ViewInvoicedQuery setCostInGreaterThan(BigDecimal value) { this.CostInGreaterThan = value; return this; } public BigDecimal getCostInLessThan() { return CostInLessThan; } public SO_ViewInvoicedQuery setCostInLessThan(BigDecimal value) { this.CostInLessThan = value; return this; } public BigDecimal getCostInLessThanOrEqualTo() { return CostInLessThanOrEqualTo; } public SO_ViewInvoicedQuery setCostInLessThanOrEqualTo(BigDecimal value) { this.CostInLessThanOrEqualTo = value; return this; } public BigDecimal getCostInNotEqualTo() { return CostInNotEqualTo; } public SO_ViewInvoicedQuery setCostInNotEqualTo(BigDecimal value) { this.CostInNotEqualTo = value; return this; } public ArrayList getCostInBetween() { return CostInBetween; } public SO_ViewInvoicedQuery setCostInBetween(ArrayList value) { this.CostInBetween = value; return this; } public ArrayList getCostInIn() { return CostInIn; } public SO_ViewInvoicedQuery setCostInIn(ArrayList value) { this.CostInIn = value; return this; } public BigDecimal getQuantityThisDel() { return QuantityThisDel; } public SO_ViewInvoicedQuery setQuantityThisDel(BigDecimal value) { this.QuantityThisDel = value; return this; } public BigDecimal getQuantityThisDelGreaterThanOrEqualTo() { return QuantityThisDelGreaterThanOrEqualTo; } public SO_ViewInvoicedQuery setQuantityThisDelGreaterThanOrEqualTo(BigDecimal value) { this.QuantityThisDelGreaterThanOrEqualTo = value; return this; } public BigDecimal getQuantityThisDelGreaterThan() { return QuantityThisDelGreaterThan; } public SO_ViewInvoicedQuery setQuantityThisDelGreaterThan(BigDecimal value) { this.QuantityThisDelGreaterThan = value; return this; } public BigDecimal getQuantityThisDelLessThan() { return QuantityThisDelLessThan; } public SO_ViewInvoicedQuery setQuantityThisDelLessThan(BigDecimal value) { this.QuantityThisDelLessThan = value; return this; } public BigDecimal getQuantityThisDelLessThanOrEqualTo() { return QuantityThisDelLessThanOrEqualTo; } public SO_ViewInvoicedQuery setQuantityThisDelLessThanOrEqualTo(BigDecimal value) { this.QuantityThisDelLessThanOrEqualTo = value; return this; } public BigDecimal getQuantityThisDelNotEqualTo() { return QuantityThisDelNotEqualTo; } public SO_ViewInvoicedQuery setQuantityThisDelNotEqualTo(BigDecimal value) { this.QuantityThisDelNotEqualTo = value; return this; } public ArrayList getQuantityThisDelBetween() { return QuantityThisDelBetween; } public SO_ViewInvoicedQuery setQuantityThisDelBetween(ArrayList value) { this.QuantityThisDelBetween = value; return this; } public ArrayList getQuantityThisDelIn() { return QuantityThisDelIn; } public SO_ViewInvoicedQuery setQuantityThisDelIn(ArrayList value) { this.QuantityThisDelIn = value; return this; } public BigDecimal getCurrentLineTotal() { return CurrentLineTotal; } public SO_ViewInvoicedQuery setCurrentLineTotal(BigDecimal value) { this.CurrentLineTotal = value; return this; } public BigDecimal getCurrentLineTotalGreaterThanOrEqualTo() { return CurrentLineTotalGreaterThanOrEqualTo; } public SO_ViewInvoicedQuery setCurrentLineTotalGreaterThanOrEqualTo(BigDecimal value) { this.CurrentLineTotalGreaterThanOrEqualTo = value; return this; } public BigDecimal getCurrentLineTotalGreaterThan() { return CurrentLineTotalGreaterThan; } public SO_ViewInvoicedQuery setCurrentLineTotalGreaterThan(BigDecimal value) { this.CurrentLineTotalGreaterThan = value; return this; } public BigDecimal getCurrentLineTotalLessThan() { return CurrentLineTotalLessThan; } public SO_ViewInvoicedQuery setCurrentLineTotalLessThan(BigDecimal value) { this.CurrentLineTotalLessThan = value; return this; } public BigDecimal getCurrentLineTotalLessThanOrEqualTo() { return CurrentLineTotalLessThanOrEqualTo; } public SO_ViewInvoicedQuery setCurrentLineTotalLessThanOrEqualTo(BigDecimal value) { this.CurrentLineTotalLessThanOrEqualTo = value; return this; } public BigDecimal getCurrentLineTotalNotEqualTo() { return CurrentLineTotalNotEqualTo; } public SO_ViewInvoicedQuery setCurrentLineTotalNotEqualTo(BigDecimal value) { this.CurrentLineTotalNotEqualTo = value; return this; } public ArrayList getCurrentLineTotalBetween() { return CurrentLineTotalBetween; } public SO_ViewInvoicedQuery setCurrentLineTotalBetween(ArrayList value) { this.CurrentLineTotalBetween = value; return this; } public ArrayList getCurrentLineTotalIn() { return CurrentLineTotalIn; } public SO_ViewInvoicedQuery setCurrentLineTotalIn(ArrayList value) { this.CurrentLineTotalIn = value; return this; } public BigDecimal getTaxToCharge() { return TaxToCharge; } public SO_ViewInvoicedQuery setTaxToCharge(BigDecimal value) { this.TaxToCharge = value; return this; } public BigDecimal getTaxToChargeGreaterThanOrEqualTo() { return TaxToChargeGreaterThanOrEqualTo; } public SO_ViewInvoicedQuery setTaxToChargeGreaterThanOrEqualTo(BigDecimal value) { this.TaxToChargeGreaterThanOrEqualTo = value; return this; } public BigDecimal getTaxToChargeGreaterThan() { return TaxToChargeGreaterThan; } public SO_ViewInvoicedQuery setTaxToChargeGreaterThan(BigDecimal value) { this.TaxToChargeGreaterThan = value; return this; } public BigDecimal getTaxToChargeLessThan() { return TaxToChargeLessThan; } public SO_ViewInvoicedQuery setTaxToChargeLessThan(BigDecimal value) { this.TaxToChargeLessThan = value; return this; } public BigDecimal getTaxToChargeLessThanOrEqualTo() { return TaxToChargeLessThanOrEqualTo; } public SO_ViewInvoicedQuery setTaxToChargeLessThanOrEqualTo(BigDecimal value) { this.TaxToChargeLessThanOrEqualTo = value; return this; } public BigDecimal getTaxToChargeNotEqualTo() { return TaxToChargeNotEqualTo; } public SO_ViewInvoicedQuery setTaxToChargeNotEqualTo(BigDecimal value) { this.TaxToChargeNotEqualTo = value; return this; } public ArrayList getTaxToChargeBetween() { return TaxToChargeBetween; } public SO_ViewInvoicedQuery setTaxToChargeBetween(ArrayList value) { this.TaxToChargeBetween = value; return this; } public ArrayList getTaxToChargeIn() { return TaxToChargeIn; } public SO_ViewInvoicedQuery setTaxToChargeIn(ArrayList value) { this.TaxToChargeIn = value; return this; } public BigDecimal getTaxPaid() { return TaxPaid; } public SO_ViewInvoicedQuery setTaxPaid(BigDecimal value) { this.TaxPaid = value; return this; } public BigDecimal getTaxPaidGreaterThanOrEqualTo() { return TaxPaidGreaterThanOrEqualTo; } public SO_ViewInvoicedQuery setTaxPaidGreaterThanOrEqualTo(BigDecimal value) { this.TaxPaidGreaterThanOrEqualTo = value; return this; } public BigDecimal getTaxPaidGreaterThan() { return TaxPaidGreaterThan; } public SO_ViewInvoicedQuery setTaxPaidGreaterThan(BigDecimal value) { this.TaxPaidGreaterThan = value; return this; } public BigDecimal getTaxPaidLessThan() { return TaxPaidLessThan; } public SO_ViewInvoicedQuery setTaxPaidLessThan(BigDecimal value) { this.TaxPaidLessThan = value; return this; } public BigDecimal getTaxPaidLessThanOrEqualTo() { return TaxPaidLessThanOrEqualTo; } public SO_ViewInvoicedQuery setTaxPaidLessThanOrEqualTo(BigDecimal value) { this.TaxPaidLessThanOrEqualTo = value; return this; } public BigDecimal getTaxPaidNotEqualTo() { return TaxPaidNotEqualTo; } public SO_ViewInvoicedQuery setTaxPaidNotEqualTo(BigDecimal value) { this.TaxPaidNotEqualTo = value; return this; } public ArrayList getTaxPaidBetween() { return TaxPaidBetween; } public SO_ViewInvoicedQuery setTaxPaidBetween(ArrayList value) { this.TaxPaidBetween = value; return this; } public ArrayList getTaxPaidIn() { return TaxPaidIn; } public SO_ViewInvoicedQuery setTaxPaidIn(ArrayList value) { this.TaxPaidIn = value; return this; } public Short getDecimalPlaces() { return DecimalPlaces; } public SO_ViewInvoicedQuery setDecimalPlaces(Short value) { this.DecimalPlaces = value; return this; } public Short getDecimalPlacesGreaterThanOrEqualTo() { return DecimalPlacesGreaterThanOrEqualTo; } public SO_ViewInvoicedQuery setDecimalPlacesGreaterThanOrEqualTo(Short value) { this.DecimalPlacesGreaterThanOrEqualTo = value; return this; } public Short getDecimalPlacesGreaterThan() { return DecimalPlacesGreaterThan; } public SO_ViewInvoicedQuery setDecimalPlacesGreaterThan(Short value) { this.DecimalPlacesGreaterThan = value; return this; } public Short getDecimalPlacesLessThan() { return DecimalPlacesLessThan; } public SO_ViewInvoicedQuery setDecimalPlacesLessThan(Short value) { this.DecimalPlacesLessThan = value; return this; } public Short getDecimalPlacesLessThanOrEqualTo() { return DecimalPlacesLessThanOrEqualTo; } public SO_ViewInvoicedQuery setDecimalPlacesLessThanOrEqualTo(Short value) { this.DecimalPlacesLessThanOrEqualTo = value; return this; } public Short getDecimalPlacesNotEqualTo() { return DecimalPlacesNotEqualTo; } public SO_ViewInvoicedQuery setDecimalPlacesNotEqualTo(Short value) { this.DecimalPlacesNotEqualTo = value; return this; } public ArrayList getDecimalPlacesBetween() { return DecimalPlacesBetween; } public SO_ViewInvoicedQuery setDecimalPlacesBetween(ArrayList value) { this.DecimalPlacesBetween = value; return this; } public ArrayList getDecimalPlacesIn() { return DecimalPlacesIn; } public SO_ViewInvoicedQuery setDecimalPlacesIn(ArrayList value) { this.DecimalPlacesIn = value; return this; } public String getTaxID() { return TaxID; } public SO_ViewInvoicedQuery setTaxID(String value) { this.TaxID = value; return this; } public String getTaxIDStartsWith() { return TaxIDStartsWith; } public SO_ViewInvoicedQuery setTaxIDStartsWith(String value) { this.TaxIDStartsWith = value; return this; } public String getTaxIDEndsWith() { return TaxIDEndsWith; } public SO_ViewInvoicedQuery setTaxIDEndsWith(String value) { this.TaxIDEndsWith = value; return this; } public String getTaxIDContains() { return TaxIDContains; } public SO_ViewInvoicedQuery setTaxIDContains(String value) { this.TaxIDContains = value; return this; } public String getTaxIDLike() { return TaxIDLike; } public SO_ViewInvoicedQuery setTaxIDLike(String value) { this.TaxIDLike = value; return this; } public ArrayList getTaxIDBetween() { return TaxIDBetween; } public SO_ViewInvoicedQuery setTaxIDBetween(ArrayList value) { this.TaxIDBetween = value; return this; } public ArrayList getTaxIDIn() { return TaxIDIn; } public SO_ViewInvoicedQuery setTaxIDIn(ArrayList value) { this.TaxIDIn = value; return this; } public Short getPhysicalItem() { return PhysicalItem; } public SO_ViewInvoicedQuery setPhysicalItem(Short value) { this.PhysicalItem = value; return this; } public Short getPhysicalItemGreaterThanOrEqualTo() { return PhysicalItemGreaterThanOrEqualTo; } public SO_ViewInvoicedQuery setPhysicalItemGreaterThanOrEqualTo(Short value) { this.PhysicalItemGreaterThanOrEqualTo = value; return this; } public Short getPhysicalItemGreaterThan() { return PhysicalItemGreaterThan; } public SO_ViewInvoicedQuery setPhysicalItemGreaterThan(Short value) { this.PhysicalItemGreaterThan = value; return this; } public Short getPhysicalItemLessThan() { return PhysicalItemLessThan; } public SO_ViewInvoicedQuery setPhysicalItemLessThan(Short value) { this.PhysicalItemLessThan = value; return this; } public Short getPhysicalItemLessThanOrEqualTo() { return PhysicalItemLessThanOrEqualTo; } public SO_ViewInvoicedQuery setPhysicalItemLessThanOrEqualTo(Short value) { this.PhysicalItemLessThanOrEqualTo = value; return this; } public Short getPhysicalItemNotEqualTo() { return PhysicalItemNotEqualTo; } public SO_ViewInvoicedQuery setPhysicalItemNotEqualTo(Short value) { this.PhysicalItemNotEqualTo = value; return this; } public ArrayList getPhysicalItemBetween() { return PhysicalItemBetween; } public SO_ViewInvoicedQuery setPhysicalItemBetween(ArrayList value) { this.PhysicalItemBetween = value; return this; } public ArrayList getPhysicalItemIn() { return PhysicalItemIn; } public SO_ViewInvoicedQuery setPhysicalItemIn(ArrayList value) { this.PhysicalItemIn = value; return this; } public Boolean isNonStock() { return NonStock; } public SO_ViewInvoicedQuery setNonStock(Boolean value) { this.NonStock = value; return this; } public String getDebtorID() { return DebtorID; } public SO_ViewInvoicedQuery setDebtorID(String value) { this.DebtorID = value; return this; } public String getDebtorIDStartsWith() { return DebtorIDStartsWith; } public SO_ViewInvoicedQuery setDebtorIDStartsWith(String value) { this.DebtorIDStartsWith = value; return this; } public String getDebtorIDEndsWith() { return DebtorIDEndsWith; } public SO_ViewInvoicedQuery setDebtorIDEndsWith(String value) { this.DebtorIDEndsWith = value; return this; } public String getDebtorIDContains() { return DebtorIDContains; } public SO_ViewInvoicedQuery setDebtorIDContains(String value) { this.DebtorIDContains = value; return this; } public String getDebtorIDLike() { return DebtorIDLike; } public SO_ViewInvoicedQuery setDebtorIDLike(String value) { this.DebtorIDLike = value; return this; } public ArrayList getDebtorIDBetween() { return DebtorIDBetween; } public SO_ViewInvoicedQuery setDebtorIDBetween(ArrayList value) { this.DebtorIDBetween = value; return this; } public ArrayList getDebtorIDIn() { return DebtorIDIn; } public SO_ViewInvoicedQuery setDebtorIDIn(ArrayList value) { this.DebtorIDIn = value; return this; } public String getAccountNo() { return AccountNo; } public SO_ViewInvoicedQuery setAccountNo(String value) { this.AccountNo = value; return this; } public String getAccountNoStartsWith() { return AccountNoStartsWith; } public SO_ViewInvoicedQuery setAccountNoStartsWith(String value) { this.AccountNoStartsWith = value; return this; } public String getAccountNoEndsWith() { return AccountNoEndsWith; } public SO_ViewInvoicedQuery setAccountNoEndsWith(String value) { this.AccountNoEndsWith = value; return this; } public String getAccountNoContains() { return AccountNoContains; } public SO_ViewInvoicedQuery setAccountNoContains(String value) { this.AccountNoContains = value; return this; } public String getAccountNoLike() { return AccountNoLike; } public SO_ViewInvoicedQuery setAccountNoLike(String value) { this.AccountNoLike = value; return this; } public ArrayList getAccountNoBetween() { return AccountNoBetween; } public SO_ViewInvoicedQuery setAccountNoBetween(ArrayList value) { this.AccountNoBetween = value; return this; } public ArrayList getAccountNoIn() { return AccountNoIn; } public SO_ViewInvoicedQuery setAccountNoIn(ArrayList value) { this.AccountNoIn = value; return this; } public String getName() { return Name; } public SO_ViewInvoicedQuery setName(String value) { this.Name = value; return this; } public String getNameStartsWith() { return NameStartsWith; } public SO_ViewInvoicedQuery setNameStartsWith(String value) { this.NameStartsWith = value; return this; } public String getNameEndsWith() { return NameEndsWith; } public SO_ViewInvoicedQuery setNameEndsWith(String value) { this.NameEndsWith = value; return this; } public String getNameContains() { return NameContains; } public SO_ViewInvoicedQuery setNameContains(String value) { this.NameContains = value; return this; } public String getNameLike() { return NameLike; } public SO_ViewInvoicedQuery setNameLike(String value) { this.NameLike = value; return this; } public ArrayList getNameBetween() { return NameBetween; } public SO_ViewInvoicedQuery setNameBetween(ArrayList value) { this.NameBetween = value; return this; } public ArrayList getNameIn() { return NameIn; } public SO_ViewInvoicedQuery setNameIn(ArrayList value) { this.NameIn = value; return this; } public String getInventoryClassificationID() { return InventoryClassificationID; } public SO_ViewInvoicedQuery setInventoryClassificationID(String value) { this.InventoryClassificationID = value; return this; } public String getInventoryClassificationIDStartsWith() { return InventoryClassificationIDStartsWith; } public SO_ViewInvoicedQuery setInventoryClassificationIDStartsWith(String value) { this.InventoryClassificationIDStartsWith = value; return this; } public String getInventoryClassificationIDEndsWith() { return InventoryClassificationIDEndsWith; } public SO_ViewInvoicedQuery setInventoryClassificationIDEndsWith(String value) { this.InventoryClassificationIDEndsWith = value; return this; } public String getInventoryClassificationIDContains() { return InventoryClassificationIDContains; } public SO_ViewInvoicedQuery setInventoryClassificationIDContains(String value) { this.InventoryClassificationIDContains = value; return this; } public String getInventoryClassificationIDLike() { return InventoryClassificationIDLike; } public SO_ViewInvoicedQuery setInventoryClassificationIDLike(String value) { this.InventoryClassificationIDLike = value; return this; } public ArrayList getInventoryClassificationIDBetween() { return InventoryClassificationIDBetween; } public SO_ViewInvoicedQuery setInventoryClassificationIDBetween(ArrayList value) { this.InventoryClassificationIDBetween = value; return this; } public ArrayList getInventoryClassificationIDIn() { return InventoryClassificationIDIn; } public SO_ViewInvoicedQuery setInventoryClassificationIDIn(ArrayList value) { this.InventoryClassificationIDIn = value; return this; } public String getClassDescription() { return ClassDescription; } public SO_ViewInvoicedQuery setClassDescription(String value) { this.ClassDescription = value; return this; } public String getClassDescriptionStartsWith() { return ClassDescriptionStartsWith; } public SO_ViewInvoicedQuery setClassDescriptionStartsWith(String value) { this.ClassDescriptionStartsWith = value; return this; } public String getClassDescriptionEndsWith() { return ClassDescriptionEndsWith; } public SO_ViewInvoicedQuery setClassDescriptionEndsWith(String value) { this.ClassDescriptionEndsWith = value; return this; } public String getClassDescriptionContains() { return ClassDescriptionContains; } public SO_ViewInvoicedQuery setClassDescriptionContains(String value) { this.ClassDescriptionContains = value; return this; } public String getClassDescriptionLike() { return ClassDescriptionLike; } public SO_ViewInvoicedQuery setClassDescriptionLike(String value) { this.ClassDescriptionLike = value; return this; } public ArrayList getClassDescriptionBetween() { return ClassDescriptionBetween; } public SO_ViewInvoicedQuery setClassDescriptionBetween(ArrayList value) { this.ClassDescriptionBetween = value; return this; } public ArrayList getClassDescriptionIn() { return ClassDescriptionIn; } public SO_ViewInvoicedQuery setClassDescriptionIn(ArrayList value) { this.ClassDescriptionIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class SO_ViewShippedQuery extends QueryDb implements IReturn> { public String InvoiceID = null; public String InvoiceIDStartsWith = null; public String InvoiceIDEndsWith = null; public String InvoiceIDContains = null; public String InvoiceIDLike = null; public ArrayList InvoiceIDBetween = null; public ArrayList InvoiceIDIn = null; public String InvoiceNo = null; public String InvoiceNoStartsWith = null; public String InvoiceNoEndsWith = null; public String InvoiceNoContains = null; public String InvoiceNoLike = null; public ArrayList InvoiceNoBetween = null; public ArrayList InvoiceNoIn = null; public Short BillWhenComplete = null; public Short BillWhenCompleteGreaterThanOrEqualTo = null; public Short BillWhenCompleteGreaterThan = null; public Short BillWhenCompleteLessThan = null; public Short BillWhenCompleteLessThanOrEqualTo = null; public Short BillWhenCompleteNotEqualTo = null; public ArrayList BillWhenCompleteBetween = null; public ArrayList BillWhenCompleteIn = null; public String OrderNo = null; public String OrderNoStartsWith = null; public String OrderNoEndsWith = null; public String OrderNoContains = null; public String OrderNoLike = null; public ArrayList OrderNoBetween = null; public ArrayList OrderNoIn = null; public Boolean CreditNote = null; public Boolean WholeSaleInvoice = null; public String TaxExemptNo = null; public String TaxExemptNoStartsWith = null; public String TaxExemptNoEndsWith = null; public String TaxExemptNoContains = null; public String TaxExemptNoLike = null; public ArrayList TaxExemptNoBetween = null; public ArrayList TaxExemptNoIn = null; public Short Status = null; public Short StatusGreaterThanOrEqualTo = null; public Short StatusGreaterThan = null; public Short StatusLessThan = null; public Short StatusLessThanOrEqualTo = null; public Short StatusNotEqualTo = null; public ArrayList StatusBetween = null; public ArrayList StatusIn = null; public String StaffID = null; public String StaffIDStartsWith = null; public String StaffIDEndsWith = null; public String StaffIDContains = null; public String StaffIDLike = null; public ArrayList StaffIDBetween = null; public ArrayList StaffIDIn = null; public String InvoiceHistoryID = null; public String InvoiceHistoryIDStartsWith = null; public String InvoiceHistoryIDEndsWith = null; public String InvoiceHistoryIDContains = null; public String InvoiceHistoryIDLike = null; public ArrayList InvoiceHistoryIDBetween = null; public ArrayList InvoiceHistoryIDIn = null; public BigDecimal Frieght = null; public BigDecimal FrieghtGreaterThanOrEqualTo = null; public BigDecimal FrieghtGreaterThan = null; public BigDecimal FrieghtLessThan = null; public BigDecimal FrieghtLessThanOrEqualTo = null; public BigDecimal FrieghtNotEqualTo = null; public ArrayList FrieghtBetween = null; public ArrayList FrieghtIn = null; public Short ProcessedHistoryNo = null; public Short ProcessedHistoryNoGreaterThanOrEqualTo = null; public Short ProcessedHistoryNoGreaterThan = null; public Short ProcessedHistoryNoLessThan = null; public Short ProcessedHistoryNoLessThanOrEqualTo = null; public Short ProcessedHistoryNoNotEqualTo = null; public ArrayList ProcessedHistoryNoBetween = null; public ArrayList ProcessedHistoryNoIn = null; public Short ShippedHistoryNo = null; public Short ShippedHistoryNoGreaterThanOrEqualTo = null; public Short ShippedHistoryNoGreaterThan = null; public Short ShippedHistoryNoLessThan = null; public Short ShippedHistoryNoLessThanOrEqualTo = null; public Short ShippedHistoryNoNotEqualTo = null; public ArrayList ShippedHistoryNoBetween = null; public ArrayList ShippedHistoryNoIn = null; public String ProcessedOnRunNo = null; public String ProcessedOnRunNoStartsWith = null; public String ProcessedOnRunNoEndsWith = null; public String ProcessedOnRunNoContains = null; public String ProcessedOnRunNoLike = null; public ArrayList ProcessedOnRunNoBetween = null; public ArrayList ProcessedOnRunNoIn = null; public String ShippedOnRunNo = null; public String ShippedOnRunNoStartsWith = null; public String ShippedOnRunNoEndsWith = null; public String ShippedOnRunNoContains = null; public String ShippedOnRunNoLike = null; public ArrayList ShippedOnRunNoBetween = null; public ArrayList ShippedOnRunNoIn = null; public Date ProcessedDate = null; public Date ProcessedDateGreaterThanOrEqualTo = null; public Date ProcessedDateGreaterThan = null; public Date ProcessedDateLessThan = null; public Date ProcessedDateLessThanOrEqualTo = null; public Date ProcessedDateNotEqualTo = null; public ArrayList ProcessedDateBetween = null; public ArrayList ProcessedDateIn = null; public Date ShippedDate = null; public Date ShippedDateGreaterThanOrEqualTo = null; public Date ShippedDateGreaterThan = null; public Date ShippedDateLessThan = null; public Date ShippedDateLessThanOrEqualTo = null; public Date ShippedDateNotEqualTo = null; public ArrayList ShippedDateBetween = null; public ArrayList ShippedDateIn = null; public String InvoiceLineID = null; public String InvoiceLineIDStartsWith = null; public String InvoiceLineIDEndsWith = null; public String InvoiceLineIDContains = null; public String InvoiceLineIDLike = null; public ArrayList InvoiceLineIDBetween = null; public ArrayList InvoiceLineIDIn = null; public String PartNo = null; public String PartNoStartsWith = null; public String PartNoEndsWith = null; public String PartNoContains = null; public String PartNoLike = null; public ArrayList PartNoBetween = null; public ArrayList PartNoIn = null; public String Description = null; public String DescriptionStartsWith = null; public String DescriptionEndsWith = null; public String DescriptionContains = null; public String DescriptionLike = null; public ArrayList DescriptionBetween = null; public ArrayList DescriptionIn = null; public BigDecimal CostIn = null; public BigDecimal CostInGreaterThanOrEqualTo = null; public BigDecimal CostInGreaterThan = null; public BigDecimal CostInLessThan = null; public BigDecimal CostInLessThanOrEqualTo = null; public BigDecimal CostInNotEqualTo = null; public ArrayList CostInBetween = null; public ArrayList CostInIn = null; public BigDecimal QuantityThisDel = null; public BigDecimal QuantityThisDelGreaterThanOrEqualTo = null; public BigDecimal QuantityThisDelGreaterThan = null; public BigDecimal QuantityThisDelLessThan = null; public BigDecimal QuantityThisDelLessThanOrEqualTo = null; public BigDecimal QuantityThisDelNotEqualTo = null; public ArrayList QuantityThisDelBetween = null; public ArrayList QuantityThisDelIn = null; public BigDecimal CurrentLineTotal = null; public BigDecimal CurrentLineTotalGreaterThanOrEqualTo = null; public BigDecimal CurrentLineTotalGreaterThan = null; public BigDecimal CurrentLineTotalLessThan = null; public BigDecimal CurrentLineTotalLessThanOrEqualTo = null; public BigDecimal CurrentLineTotalNotEqualTo = null; public ArrayList CurrentLineTotalBetween = null; public ArrayList CurrentLineTotalIn = null; public BigDecimal TaxToCharge = null; public BigDecimal TaxToChargeGreaterThanOrEqualTo = null; public BigDecimal TaxToChargeGreaterThan = null; public BigDecimal TaxToChargeLessThan = null; public BigDecimal TaxToChargeLessThanOrEqualTo = null; public BigDecimal TaxToChargeNotEqualTo = null; public ArrayList TaxToChargeBetween = null; public ArrayList TaxToChargeIn = null; public BigDecimal TaxPaid = null; public BigDecimal TaxPaidGreaterThanOrEqualTo = null; public BigDecimal TaxPaidGreaterThan = null; public BigDecimal TaxPaidLessThan = null; public BigDecimal TaxPaidLessThanOrEqualTo = null; public BigDecimal TaxPaidNotEqualTo = null; public ArrayList TaxPaidBetween = null; public ArrayList TaxPaidIn = null; public Short DecimalPlaces = null; public Short DecimalPlacesGreaterThanOrEqualTo = null; public Short DecimalPlacesGreaterThan = null; public Short DecimalPlacesLessThan = null; public Short DecimalPlacesLessThanOrEqualTo = null; public Short DecimalPlacesNotEqualTo = null; public ArrayList DecimalPlacesBetween = null; public ArrayList DecimalPlacesIn = null; public String TaxID = null; public String TaxIDStartsWith = null; public String TaxIDEndsWith = null; public String TaxIDContains = null; public String TaxIDLike = null; public ArrayList TaxIDBetween = null; public ArrayList TaxIDIn = null; public Short PhysicalItem = null; public Short PhysicalItemGreaterThanOrEqualTo = null; public Short PhysicalItemGreaterThan = null; public Short PhysicalItemLessThan = null; public Short PhysicalItemLessThanOrEqualTo = null; public Short PhysicalItemNotEqualTo = null; public ArrayList PhysicalItemBetween = null; public ArrayList PhysicalItemIn = null; public Boolean NonStock = null; public String DebtorID = null; public String DebtorIDStartsWith = null; public String DebtorIDEndsWith = null; public String DebtorIDContains = null; public String DebtorIDLike = null; public ArrayList DebtorIDBetween = null; public ArrayList DebtorIDIn = null; public String AccountNo = null; public String AccountNoStartsWith = null; public String AccountNoEndsWith = null; public String AccountNoContains = null; public String AccountNoLike = null; public ArrayList AccountNoBetween = null; public ArrayList AccountNoIn = null; public String Name = null; public String NameStartsWith = null; public String NameEndsWith = null; public String NameContains = null; public String NameLike = null; public ArrayList NameBetween = null; public ArrayList NameIn = null; public String InventoryClassificationID = null; public String InventoryClassificationIDStartsWith = null; public String InventoryClassificationIDEndsWith = null; public String InventoryClassificationIDContains = null; public String InventoryClassificationIDLike = null; public ArrayList InventoryClassificationIDBetween = null; public ArrayList InventoryClassificationIDIn = null; public String ClassDescription = null; public String ClassDescriptionStartsWith = null; public String ClassDescriptionEndsWith = null; public String ClassDescriptionContains = null; public String ClassDescriptionLike = null; public ArrayList ClassDescriptionBetween = null; public ArrayList ClassDescriptionIn = null; public String getInvoiceID() { return InvoiceID; } public SO_ViewShippedQuery setInvoiceID(String value) { this.InvoiceID = value; return this; } public String getInvoiceIDStartsWith() { return InvoiceIDStartsWith; } public SO_ViewShippedQuery setInvoiceIDStartsWith(String value) { this.InvoiceIDStartsWith = value; return this; } public String getInvoiceIDEndsWith() { return InvoiceIDEndsWith; } public SO_ViewShippedQuery setInvoiceIDEndsWith(String value) { this.InvoiceIDEndsWith = value; return this; } public String getInvoiceIDContains() { return InvoiceIDContains; } public SO_ViewShippedQuery setInvoiceIDContains(String value) { this.InvoiceIDContains = value; return this; } public String getInvoiceIDLike() { return InvoiceIDLike; } public SO_ViewShippedQuery setInvoiceIDLike(String value) { this.InvoiceIDLike = value; return this; } public ArrayList getInvoiceIDBetween() { return InvoiceIDBetween; } public SO_ViewShippedQuery setInvoiceIDBetween(ArrayList value) { this.InvoiceIDBetween = value; return this; } public ArrayList getInvoiceIDIn() { return InvoiceIDIn; } public SO_ViewShippedQuery setInvoiceIDIn(ArrayList value) { this.InvoiceIDIn = value; return this; } public String getInvoiceNo() { return InvoiceNo; } public SO_ViewShippedQuery setInvoiceNo(String value) { this.InvoiceNo = value; return this; } public String getInvoiceNoStartsWith() { return InvoiceNoStartsWith; } public SO_ViewShippedQuery setInvoiceNoStartsWith(String value) { this.InvoiceNoStartsWith = value; return this; } public String getInvoiceNoEndsWith() { return InvoiceNoEndsWith; } public SO_ViewShippedQuery setInvoiceNoEndsWith(String value) { this.InvoiceNoEndsWith = value; return this; } public String getInvoiceNoContains() { return InvoiceNoContains; } public SO_ViewShippedQuery setInvoiceNoContains(String value) { this.InvoiceNoContains = value; return this; } public String getInvoiceNoLike() { return InvoiceNoLike; } public SO_ViewShippedQuery setInvoiceNoLike(String value) { this.InvoiceNoLike = value; return this; } public ArrayList getInvoiceNoBetween() { return InvoiceNoBetween; } public SO_ViewShippedQuery setInvoiceNoBetween(ArrayList value) { this.InvoiceNoBetween = value; return this; } public ArrayList getInvoiceNoIn() { return InvoiceNoIn; } public SO_ViewShippedQuery setInvoiceNoIn(ArrayList value) { this.InvoiceNoIn = value; return this; } public Short getBillWhenComplete() { return BillWhenComplete; } public SO_ViewShippedQuery setBillWhenComplete(Short value) { this.BillWhenComplete = value; return this; } public Short getBillWhenCompleteGreaterThanOrEqualTo() { return BillWhenCompleteGreaterThanOrEqualTo; } public SO_ViewShippedQuery setBillWhenCompleteGreaterThanOrEqualTo(Short value) { this.BillWhenCompleteGreaterThanOrEqualTo = value; return this; } public Short getBillWhenCompleteGreaterThan() { return BillWhenCompleteGreaterThan; } public SO_ViewShippedQuery setBillWhenCompleteGreaterThan(Short value) { this.BillWhenCompleteGreaterThan = value; return this; } public Short getBillWhenCompleteLessThan() { return BillWhenCompleteLessThan; } public SO_ViewShippedQuery setBillWhenCompleteLessThan(Short value) { this.BillWhenCompleteLessThan = value; return this; } public Short getBillWhenCompleteLessThanOrEqualTo() { return BillWhenCompleteLessThanOrEqualTo; } public SO_ViewShippedQuery setBillWhenCompleteLessThanOrEqualTo(Short value) { this.BillWhenCompleteLessThanOrEqualTo = value; return this; } public Short getBillWhenCompleteNotEqualTo() { return BillWhenCompleteNotEqualTo; } public SO_ViewShippedQuery setBillWhenCompleteNotEqualTo(Short value) { this.BillWhenCompleteNotEqualTo = value; return this; } public ArrayList getBillWhenCompleteBetween() { return BillWhenCompleteBetween; } public SO_ViewShippedQuery setBillWhenCompleteBetween(ArrayList value) { this.BillWhenCompleteBetween = value; return this; } public ArrayList getBillWhenCompleteIn() { return BillWhenCompleteIn; } public SO_ViewShippedQuery setBillWhenCompleteIn(ArrayList value) { this.BillWhenCompleteIn = value; return this; } public String getOrderNo() { return OrderNo; } public SO_ViewShippedQuery setOrderNo(String value) { this.OrderNo = value; return this; } public String getOrderNoStartsWith() { return OrderNoStartsWith; } public SO_ViewShippedQuery setOrderNoStartsWith(String value) { this.OrderNoStartsWith = value; return this; } public String getOrderNoEndsWith() { return OrderNoEndsWith; } public SO_ViewShippedQuery setOrderNoEndsWith(String value) { this.OrderNoEndsWith = value; return this; } public String getOrderNoContains() { return OrderNoContains; } public SO_ViewShippedQuery setOrderNoContains(String value) { this.OrderNoContains = value; return this; } public String getOrderNoLike() { return OrderNoLike; } public SO_ViewShippedQuery setOrderNoLike(String value) { this.OrderNoLike = value; return this; } public ArrayList getOrderNoBetween() { return OrderNoBetween; } public SO_ViewShippedQuery setOrderNoBetween(ArrayList value) { this.OrderNoBetween = value; return this; } public ArrayList getOrderNoIn() { return OrderNoIn; } public SO_ViewShippedQuery setOrderNoIn(ArrayList value) { this.OrderNoIn = value; return this; } public Boolean isCreditNote() { return CreditNote; } public SO_ViewShippedQuery setCreditNote(Boolean value) { this.CreditNote = value; return this; } public Boolean isWholeSaleInvoice() { return WholeSaleInvoice; } public SO_ViewShippedQuery setWholeSaleInvoice(Boolean value) { this.WholeSaleInvoice = value; return this; } public String getTaxExemptNo() { return TaxExemptNo; } public SO_ViewShippedQuery setTaxExemptNo(String value) { this.TaxExemptNo = value; return this; } public String getTaxExemptNoStartsWith() { return TaxExemptNoStartsWith; } public SO_ViewShippedQuery setTaxExemptNoStartsWith(String value) { this.TaxExemptNoStartsWith = value; return this; } public String getTaxExemptNoEndsWith() { return TaxExemptNoEndsWith; } public SO_ViewShippedQuery setTaxExemptNoEndsWith(String value) { this.TaxExemptNoEndsWith = value; return this; } public String getTaxExemptNoContains() { return TaxExemptNoContains; } public SO_ViewShippedQuery setTaxExemptNoContains(String value) { this.TaxExemptNoContains = value; return this; } public String getTaxExemptNoLike() { return TaxExemptNoLike; } public SO_ViewShippedQuery setTaxExemptNoLike(String value) { this.TaxExemptNoLike = value; return this; } public ArrayList getTaxExemptNoBetween() { return TaxExemptNoBetween; } public SO_ViewShippedQuery setTaxExemptNoBetween(ArrayList value) { this.TaxExemptNoBetween = value; return this; } public ArrayList getTaxExemptNoIn() { return TaxExemptNoIn; } public SO_ViewShippedQuery setTaxExemptNoIn(ArrayList value) { this.TaxExemptNoIn = value; return this; } public Short getStatus() { return Status; } public SO_ViewShippedQuery setStatus(Short value) { this.Status = value; return this; } public Short getStatusGreaterThanOrEqualTo() { return StatusGreaterThanOrEqualTo; } public SO_ViewShippedQuery setStatusGreaterThanOrEqualTo(Short value) { this.StatusGreaterThanOrEqualTo = value; return this; } public Short getStatusGreaterThan() { return StatusGreaterThan; } public SO_ViewShippedQuery setStatusGreaterThan(Short value) { this.StatusGreaterThan = value; return this; } public Short getStatusLessThan() { return StatusLessThan; } public SO_ViewShippedQuery setStatusLessThan(Short value) { this.StatusLessThan = value; return this; } public Short getStatusLessThanOrEqualTo() { return StatusLessThanOrEqualTo; } public SO_ViewShippedQuery setStatusLessThanOrEqualTo(Short value) { this.StatusLessThanOrEqualTo = value; return this; } public Short getStatusNotEqualTo() { return StatusNotEqualTo; } public SO_ViewShippedQuery setStatusNotEqualTo(Short value) { this.StatusNotEqualTo = value; return this; } public ArrayList getStatusBetween() { return StatusBetween; } public SO_ViewShippedQuery setStatusBetween(ArrayList value) { this.StatusBetween = value; return this; } public ArrayList getStatusIn() { return StatusIn; } public SO_ViewShippedQuery setStatusIn(ArrayList value) { this.StatusIn = value; return this; } public String getStaffID() { return StaffID; } public SO_ViewShippedQuery setStaffID(String value) { this.StaffID = value; return this; } public String getStaffIDStartsWith() { return StaffIDStartsWith; } public SO_ViewShippedQuery setStaffIDStartsWith(String value) { this.StaffIDStartsWith = value; return this; } public String getStaffIDEndsWith() { return StaffIDEndsWith; } public SO_ViewShippedQuery setStaffIDEndsWith(String value) { this.StaffIDEndsWith = value; return this; } public String getStaffIDContains() { return StaffIDContains; } public SO_ViewShippedQuery setStaffIDContains(String value) { this.StaffIDContains = value; return this; } public String getStaffIDLike() { return StaffIDLike; } public SO_ViewShippedQuery setStaffIDLike(String value) { this.StaffIDLike = value; return this; } public ArrayList getStaffIDBetween() { return StaffIDBetween; } public SO_ViewShippedQuery setStaffIDBetween(ArrayList value) { this.StaffIDBetween = value; return this; } public ArrayList getStaffIDIn() { return StaffIDIn; } public SO_ViewShippedQuery setStaffIDIn(ArrayList value) { this.StaffIDIn = value; return this; } public String getInvoiceHistoryID() { return InvoiceHistoryID; } public SO_ViewShippedQuery setInvoiceHistoryID(String value) { this.InvoiceHistoryID = value; return this; } public String getInvoiceHistoryIDStartsWith() { return InvoiceHistoryIDStartsWith; } public SO_ViewShippedQuery setInvoiceHistoryIDStartsWith(String value) { this.InvoiceHistoryIDStartsWith = value; return this; } public String getInvoiceHistoryIDEndsWith() { return InvoiceHistoryIDEndsWith; } public SO_ViewShippedQuery setInvoiceHistoryIDEndsWith(String value) { this.InvoiceHistoryIDEndsWith = value; return this; } public String getInvoiceHistoryIDContains() { return InvoiceHistoryIDContains; } public SO_ViewShippedQuery setInvoiceHistoryIDContains(String value) { this.InvoiceHistoryIDContains = value; return this; } public String getInvoiceHistoryIDLike() { return InvoiceHistoryIDLike; } public SO_ViewShippedQuery setInvoiceHistoryIDLike(String value) { this.InvoiceHistoryIDLike = value; return this; } public ArrayList getInvoiceHistoryIDBetween() { return InvoiceHistoryIDBetween; } public SO_ViewShippedQuery setInvoiceHistoryIDBetween(ArrayList value) { this.InvoiceHistoryIDBetween = value; return this; } public ArrayList getInvoiceHistoryIDIn() { return InvoiceHistoryIDIn; } public SO_ViewShippedQuery setInvoiceHistoryIDIn(ArrayList value) { this.InvoiceHistoryIDIn = value; return this; } public BigDecimal getFrieght() { return Frieght; } public SO_ViewShippedQuery setFrieght(BigDecimal value) { this.Frieght = value; return this; } public BigDecimal getFrieghtGreaterThanOrEqualTo() { return FrieghtGreaterThanOrEqualTo; } public SO_ViewShippedQuery setFrieghtGreaterThanOrEqualTo(BigDecimal value) { this.FrieghtGreaterThanOrEqualTo = value; return this; } public BigDecimal getFrieghtGreaterThan() { return FrieghtGreaterThan; } public SO_ViewShippedQuery setFrieghtGreaterThan(BigDecimal value) { this.FrieghtGreaterThan = value; return this; } public BigDecimal getFrieghtLessThan() { return FrieghtLessThan; } public SO_ViewShippedQuery setFrieghtLessThan(BigDecimal value) { this.FrieghtLessThan = value; return this; } public BigDecimal getFrieghtLessThanOrEqualTo() { return FrieghtLessThanOrEqualTo; } public SO_ViewShippedQuery setFrieghtLessThanOrEqualTo(BigDecimal value) { this.FrieghtLessThanOrEqualTo = value; return this; } public BigDecimal getFrieghtNotEqualTo() { return FrieghtNotEqualTo; } public SO_ViewShippedQuery setFrieghtNotEqualTo(BigDecimal value) { this.FrieghtNotEqualTo = value; return this; } public ArrayList getFrieghtBetween() { return FrieghtBetween; } public SO_ViewShippedQuery setFrieghtBetween(ArrayList value) { this.FrieghtBetween = value; return this; } public ArrayList getFrieghtIn() { return FrieghtIn; } public SO_ViewShippedQuery setFrieghtIn(ArrayList value) { this.FrieghtIn = value; return this; } public Short getProcessedHistoryNo() { return ProcessedHistoryNo; } public SO_ViewShippedQuery setProcessedHistoryNo(Short value) { this.ProcessedHistoryNo = value; return this; } public Short getProcessedHistoryNoGreaterThanOrEqualTo() { return ProcessedHistoryNoGreaterThanOrEqualTo; } public SO_ViewShippedQuery setProcessedHistoryNoGreaterThanOrEqualTo(Short value) { this.ProcessedHistoryNoGreaterThanOrEqualTo = value; return this; } public Short getProcessedHistoryNoGreaterThan() { return ProcessedHistoryNoGreaterThan; } public SO_ViewShippedQuery setProcessedHistoryNoGreaterThan(Short value) { this.ProcessedHistoryNoGreaterThan = value; return this; } public Short getProcessedHistoryNoLessThan() { return ProcessedHistoryNoLessThan; } public SO_ViewShippedQuery setProcessedHistoryNoLessThan(Short value) { this.ProcessedHistoryNoLessThan = value; return this; } public Short getProcessedHistoryNoLessThanOrEqualTo() { return ProcessedHistoryNoLessThanOrEqualTo; } public SO_ViewShippedQuery setProcessedHistoryNoLessThanOrEqualTo(Short value) { this.ProcessedHistoryNoLessThanOrEqualTo = value; return this; } public Short getProcessedHistoryNoNotEqualTo() { return ProcessedHistoryNoNotEqualTo; } public SO_ViewShippedQuery setProcessedHistoryNoNotEqualTo(Short value) { this.ProcessedHistoryNoNotEqualTo = value; return this; } public ArrayList getProcessedHistoryNoBetween() { return ProcessedHistoryNoBetween; } public SO_ViewShippedQuery setProcessedHistoryNoBetween(ArrayList value) { this.ProcessedHistoryNoBetween = value; return this; } public ArrayList getProcessedHistoryNoIn() { return ProcessedHistoryNoIn; } public SO_ViewShippedQuery setProcessedHistoryNoIn(ArrayList value) { this.ProcessedHistoryNoIn = value; return this; } public Short getShippedHistoryNo() { return ShippedHistoryNo; } public SO_ViewShippedQuery setShippedHistoryNo(Short value) { this.ShippedHistoryNo = value; return this; } public Short getShippedHistoryNoGreaterThanOrEqualTo() { return ShippedHistoryNoGreaterThanOrEqualTo; } public SO_ViewShippedQuery setShippedHistoryNoGreaterThanOrEqualTo(Short value) { this.ShippedHistoryNoGreaterThanOrEqualTo = value; return this; } public Short getShippedHistoryNoGreaterThan() { return ShippedHistoryNoGreaterThan; } public SO_ViewShippedQuery setShippedHistoryNoGreaterThan(Short value) { this.ShippedHistoryNoGreaterThan = value; return this; } public Short getShippedHistoryNoLessThan() { return ShippedHistoryNoLessThan; } public SO_ViewShippedQuery setShippedHistoryNoLessThan(Short value) { this.ShippedHistoryNoLessThan = value; return this; } public Short getShippedHistoryNoLessThanOrEqualTo() { return ShippedHistoryNoLessThanOrEqualTo; } public SO_ViewShippedQuery setShippedHistoryNoLessThanOrEqualTo(Short value) { this.ShippedHistoryNoLessThanOrEqualTo = value; return this; } public Short getShippedHistoryNoNotEqualTo() { return ShippedHistoryNoNotEqualTo; } public SO_ViewShippedQuery setShippedHistoryNoNotEqualTo(Short value) { this.ShippedHistoryNoNotEqualTo = value; return this; } public ArrayList getShippedHistoryNoBetween() { return ShippedHistoryNoBetween; } public SO_ViewShippedQuery setShippedHistoryNoBetween(ArrayList value) { this.ShippedHistoryNoBetween = value; return this; } public ArrayList getShippedHistoryNoIn() { return ShippedHistoryNoIn; } public SO_ViewShippedQuery setShippedHistoryNoIn(ArrayList value) { this.ShippedHistoryNoIn = value; return this; } public String getProcessedOnRunNo() { return ProcessedOnRunNo; } public SO_ViewShippedQuery setProcessedOnRunNo(String value) { this.ProcessedOnRunNo = value; return this; } public String getProcessedOnRunNoStartsWith() { return ProcessedOnRunNoStartsWith; } public SO_ViewShippedQuery setProcessedOnRunNoStartsWith(String value) { this.ProcessedOnRunNoStartsWith = value; return this; } public String getProcessedOnRunNoEndsWith() { return ProcessedOnRunNoEndsWith; } public SO_ViewShippedQuery setProcessedOnRunNoEndsWith(String value) { this.ProcessedOnRunNoEndsWith = value; return this; } public String getProcessedOnRunNoContains() { return ProcessedOnRunNoContains; } public SO_ViewShippedQuery setProcessedOnRunNoContains(String value) { this.ProcessedOnRunNoContains = value; return this; } public String getProcessedOnRunNoLike() { return ProcessedOnRunNoLike; } public SO_ViewShippedQuery setProcessedOnRunNoLike(String value) { this.ProcessedOnRunNoLike = value; return this; } public ArrayList getProcessedOnRunNoBetween() { return ProcessedOnRunNoBetween; } public SO_ViewShippedQuery setProcessedOnRunNoBetween(ArrayList value) { this.ProcessedOnRunNoBetween = value; return this; } public ArrayList getProcessedOnRunNoIn() { return ProcessedOnRunNoIn; } public SO_ViewShippedQuery setProcessedOnRunNoIn(ArrayList value) { this.ProcessedOnRunNoIn = value; return this; } public String getShippedOnRunNo() { return ShippedOnRunNo; } public SO_ViewShippedQuery setShippedOnRunNo(String value) { this.ShippedOnRunNo = value; return this; } public String getShippedOnRunNoStartsWith() { return ShippedOnRunNoStartsWith; } public SO_ViewShippedQuery setShippedOnRunNoStartsWith(String value) { this.ShippedOnRunNoStartsWith = value; return this; } public String getShippedOnRunNoEndsWith() { return ShippedOnRunNoEndsWith; } public SO_ViewShippedQuery setShippedOnRunNoEndsWith(String value) { this.ShippedOnRunNoEndsWith = value; return this; } public String getShippedOnRunNoContains() { return ShippedOnRunNoContains; } public SO_ViewShippedQuery setShippedOnRunNoContains(String value) { this.ShippedOnRunNoContains = value; return this; } public String getShippedOnRunNoLike() { return ShippedOnRunNoLike; } public SO_ViewShippedQuery setShippedOnRunNoLike(String value) { this.ShippedOnRunNoLike = value; return this; } public ArrayList getShippedOnRunNoBetween() { return ShippedOnRunNoBetween; } public SO_ViewShippedQuery setShippedOnRunNoBetween(ArrayList value) { this.ShippedOnRunNoBetween = value; return this; } public ArrayList getShippedOnRunNoIn() { return ShippedOnRunNoIn; } public SO_ViewShippedQuery setShippedOnRunNoIn(ArrayList value) { this.ShippedOnRunNoIn = value; return this; } public Date getProcessedDate() { return ProcessedDate; } public SO_ViewShippedQuery setProcessedDate(Date value) { this.ProcessedDate = value; return this; } public Date getProcessedDateGreaterThanOrEqualTo() { return ProcessedDateGreaterThanOrEqualTo; } public SO_ViewShippedQuery setProcessedDateGreaterThanOrEqualTo(Date value) { this.ProcessedDateGreaterThanOrEqualTo = value; return this; } public Date getProcessedDateGreaterThan() { return ProcessedDateGreaterThan; } public SO_ViewShippedQuery setProcessedDateGreaterThan(Date value) { this.ProcessedDateGreaterThan = value; return this; } public Date getProcessedDateLessThan() { return ProcessedDateLessThan; } public SO_ViewShippedQuery setProcessedDateLessThan(Date value) { this.ProcessedDateLessThan = value; return this; } public Date getProcessedDateLessThanOrEqualTo() { return ProcessedDateLessThanOrEqualTo; } public SO_ViewShippedQuery setProcessedDateLessThanOrEqualTo(Date value) { this.ProcessedDateLessThanOrEqualTo = value; return this; } public Date getProcessedDateNotEqualTo() { return ProcessedDateNotEqualTo; } public SO_ViewShippedQuery setProcessedDateNotEqualTo(Date value) { this.ProcessedDateNotEqualTo = value; return this; } public ArrayList getProcessedDateBetween() { return ProcessedDateBetween; } public SO_ViewShippedQuery setProcessedDateBetween(ArrayList value) { this.ProcessedDateBetween = value; return this; } public ArrayList getProcessedDateIn() { return ProcessedDateIn; } public SO_ViewShippedQuery setProcessedDateIn(ArrayList value) { this.ProcessedDateIn = value; return this; } public Date getShippedDate() { return ShippedDate; } public SO_ViewShippedQuery setShippedDate(Date value) { this.ShippedDate = value; return this; } public Date getShippedDateGreaterThanOrEqualTo() { return ShippedDateGreaterThanOrEqualTo; } public SO_ViewShippedQuery setShippedDateGreaterThanOrEqualTo(Date value) { this.ShippedDateGreaterThanOrEqualTo = value; return this; } public Date getShippedDateGreaterThan() { return ShippedDateGreaterThan; } public SO_ViewShippedQuery setShippedDateGreaterThan(Date value) { this.ShippedDateGreaterThan = value; return this; } public Date getShippedDateLessThan() { return ShippedDateLessThan; } public SO_ViewShippedQuery setShippedDateLessThan(Date value) { this.ShippedDateLessThan = value; return this; } public Date getShippedDateLessThanOrEqualTo() { return ShippedDateLessThanOrEqualTo; } public SO_ViewShippedQuery setShippedDateLessThanOrEqualTo(Date value) { this.ShippedDateLessThanOrEqualTo = value; return this; } public Date getShippedDateNotEqualTo() { return ShippedDateNotEqualTo; } public SO_ViewShippedQuery setShippedDateNotEqualTo(Date value) { this.ShippedDateNotEqualTo = value; return this; } public ArrayList getShippedDateBetween() { return ShippedDateBetween; } public SO_ViewShippedQuery setShippedDateBetween(ArrayList value) { this.ShippedDateBetween = value; return this; } public ArrayList getShippedDateIn() { return ShippedDateIn; } public SO_ViewShippedQuery setShippedDateIn(ArrayList value) { this.ShippedDateIn = value; return this; } public String getInvoiceLineID() { return InvoiceLineID; } public SO_ViewShippedQuery setInvoiceLineID(String value) { this.InvoiceLineID = value; return this; } public String getInvoiceLineIDStartsWith() { return InvoiceLineIDStartsWith; } public SO_ViewShippedQuery setInvoiceLineIDStartsWith(String value) { this.InvoiceLineIDStartsWith = value; return this; } public String getInvoiceLineIDEndsWith() { return InvoiceLineIDEndsWith; } public SO_ViewShippedQuery setInvoiceLineIDEndsWith(String value) { this.InvoiceLineIDEndsWith = value; return this; } public String getInvoiceLineIDContains() { return InvoiceLineIDContains; } public SO_ViewShippedQuery setInvoiceLineIDContains(String value) { this.InvoiceLineIDContains = value; return this; } public String getInvoiceLineIDLike() { return InvoiceLineIDLike; } public SO_ViewShippedQuery setInvoiceLineIDLike(String value) { this.InvoiceLineIDLike = value; return this; } public ArrayList getInvoiceLineIDBetween() { return InvoiceLineIDBetween; } public SO_ViewShippedQuery setInvoiceLineIDBetween(ArrayList value) { this.InvoiceLineIDBetween = value; return this; } public ArrayList getInvoiceLineIDIn() { return InvoiceLineIDIn; } public SO_ViewShippedQuery setInvoiceLineIDIn(ArrayList value) { this.InvoiceLineIDIn = value; return this; } public String getPartNo() { return PartNo; } public SO_ViewShippedQuery setPartNo(String value) { this.PartNo = value; return this; } public String getPartNoStartsWith() { return PartNoStartsWith; } public SO_ViewShippedQuery setPartNoStartsWith(String value) { this.PartNoStartsWith = value; return this; } public String getPartNoEndsWith() { return PartNoEndsWith; } public SO_ViewShippedQuery setPartNoEndsWith(String value) { this.PartNoEndsWith = value; return this; } public String getPartNoContains() { return PartNoContains; } public SO_ViewShippedQuery setPartNoContains(String value) { this.PartNoContains = value; return this; } public String getPartNoLike() { return PartNoLike; } public SO_ViewShippedQuery setPartNoLike(String value) { this.PartNoLike = value; return this; } public ArrayList getPartNoBetween() { return PartNoBetween; } public SO_ViewShippedQuery setPartNoBetween(ArrayList value) { this.PartNoBetween = value; return this; } public ArrayList getPartNoIn() { return PartNoIn; } public SO_ViewShippedQuery setPartNoIn(ArrayList value) { this.PartNoIn = value; return this; } public String getDescription() { return Description; } public SO_ViewShippedQuery setDescription(String value) { this.Description = value; return this; } public String getDescriptionStartsWith() { return DescriptionStartsWith; } public SO_ViewShippedQuery setDescriptionStartsWith(String value) { this.DescriptionStartsWith = value; return this; } public String getDescriptionEndsWith() { return DescriptionEndsWith; } public SO_ViewShippedQuery setDescriptionEndsWith(String value) { this.DescriptionEndsWith = value; return this; } public String getDescriptionContains() { return DescriptionContains; } public SO_ViewShippedQuery setDescriptionContains(String value) { this.DescriptionContains = value; return this; } public String getDescriptionLike() { return DescriptionLike; } public SO_ViewShippedQuery setDescriptionLike(String value) { this.DescriptionLike = value; return this; } public ArrayList getDescriptionBetween() { return DescriptionBetween; } public SO_ViewShippedQuery setDescriptionBetween(ArrayList value) { this.DescriptionBetween = value; return this; } public ArrayList getDescriptionIn() { return DescriptionIn; } public SO_ViewShippedQuery setDescriptionIn(ArrayList value) { this.DescriptionIn = value; return this; } public BigDecimal getCostIn() { return CostIn; } public SO_ViewShippedQuery setCostIn(BigDecimal value) { this.CostIn = value; return this; } public BigDecimal getCostInGreaterThanOrEqualTo() { return CostInGreaterThanOrEqualTo; } public SO_ViewShippedQuery setCostInGreaterThanOrEqualTo(BigDecimal value) { this.CostInGreaterThanOrEqualTo = value; return this; } public BigDecimal getCostInGreaterThan() { return CostInGreaterThan; } public SO_ViewShippedQuery setCostInGreaterThan(BigDecimal value) { this.CostInGreaterThan = value; return this; } public BigDecimal getCostInLessThan() { return CostInLessThan; } public SO_ViewShippedQuery setCostInLessThan(BigDecimal value) { this.CostInLessThan = value; return this; } public BigDecimal getCostInLessThanOrEqualTo() { return CostInLessThanOrEqualTo; } public SO_ViewShippedQuery setCostInLessThanOrEqualTo(BigDecimal value) { this.CostInLessThanOrEqualTo = value; return this; } public BigDecimal getCostInNotEqualTo() { return CostInNotEqualTo; } public SO_ViewShippedQuery setCostInNotEqualTo(BigDecimal value) { this.CostInNotEqualTo = value; return this; } public ArrayList getCostInBetween() { return CostInBetween; } public SO_ViewShippedQuery setCostInBetween(ArrayList value) { this.CostInBetween = value; return this; } public ArrayList getCostInIn() { return CostInIn; } public SO_ViewShippedQuery setCostInIn(ArrayList value) { this.CostInIn = value; return this; } public BigDecimal getQuantityThisDel() { return QuantityThisDel; } public SO_ViewShippedQuery setQuantityThisDel(BigDecimal value) { this.QuantityThisDel = value; return this; } public BigDecimal getQuantityThisDelGreaterThanOrEqualTo() { return QuantityThisDelGreaterThanOrEqualTo; } public SO_ViewShippedQuery setQuantityThisDelGreaterThanOrEqualTo(BigDecimal value) { this.QuantityThisDelGreaterThanOrEqualTo = value; return this; } public BigDecimal getQuantityThisDelGreaterThan() { return QuantityThisDelGreaterThan; } public SO_ViewShippedQuery setQuantityThisDelGreaterThan(BigDecimal value) { this.QuantityThisDelGreaterThan = value; return this; } public BigDecimal getQuantityThisDelLessThan() { return QuantityThisDelLessThan; } public SO_ViewShippedQuery setQuantityThisDelLessThan(BigDecimal value) { this.QuantityThisDelLessThan = value; return this; } public BigDecimal getQuantityThisDelLessThanOrEqualTo() { return QuantityThisDelLessThanOrEqualTo; } public SO_ViewShippedQuery setQuantityThisDelLessThanOrEqualTo(BigDecimal value) { this.QuantityThisDelLessThanOrEqualTo = value; return this; } public BigDecimal getQuantityThisDelNotEqualTo() { return QuantityThisDelNotEqualTo; } public SO_ViewShippedQuery setQuantityThisDelNotEqualTo(BigDecimal value) { this.QuantityThisDelNotEqualTo = value; return this; } public ArrayList getQuantityThisDelBetween() { return QuantityThisDelBetween; } public SO_ViewShippedQuery setQuantityThisDelBetween(ArrayList value) { this.QuantityThisDelBetween = value; return this; } public ArrayList getQuantityThisDelIn() { return QuantityThisDelIn; } public SO_ViewShippedQuery setQuantityThisDelIn(ArrayList value) { this.QuantityThisDelIn = value; return this; } public BigDecimal getCurrentLineTotal() { return CurrentLineTotal; } public SO_ViewShippedQuery setCurrentLineTotal(BigDecimal value) { this.CurrentLineTotal = value; return this; } public BigDecimal getCurrentLineTotalGreaterThanOrEqualTo() { return CurrentLineTotalGreaterThanOrEqualTo; } public SO_ViewShippedQuery setCurrentLineTotalGreaterThanOrEqualTo(BigDecimal value) { this.CurrentLineTotalGreaterThanOrEqualTo = value; return this; } public BigDecimal getCurrentLineTotalGreaterThan() { return CurrentLineTotalGreaterThan; } public SO_ViewShippedQuery setCurrentLineTotalGreaterThan(BigDecimal value) { this.CurrentLineTotalGreaterThan = value; return this; } public BigDecimal getCurrentLineTotalLessThan() { return CurrentLineTotalLessThan; } public SO_ViewShippedQuery setCurrentLineTotalLessThan(BigDecimal value) { this.CurrentLineTotalLessThan = value; return this; } public BigDecimal getCurrentLineTotalLessThanOrEqualTo() { return CurrentLineTotalLessThanOrEqualTo; } public SO_ViewShippedQuery setCurrentLineTotalLessThanOrEqualTo(BigDecimal value) { this.CurrentLineTotalLessThanOrEqualTo = value; return this; } public BigDecimal getCurrentLineTotalNotEqualTo() { return CurrentLineTotalNotEqualTo; } public SO_ViewShippedQuery setCurrentLineTotalNotEqualTo(BigDecimal value) { this.CurrentLineTotalNotEqualTo = value; return this; } public ArrayList getCurrentLineTotalBetween() { return CurrentLineTotalBetween; } public SO_ViewShippedQuery setCurrentLineTotalBetween(ArrayList value) { this.CurrentLineTotalBetween = value; return this; } public ArrayList getCurrentLineTotalIn() { return CurrentLineTotalIn; } public SO_ViewShippedQuery setCurrentLineTotalIn(ArrayList value) { this.CurrentLineTotalIn = value; return this; } public BigDecimal getTaxToCharge() { return TaxToCharge; } public SO_ViewShippedQuery setTaxToCharge(BigDecimal value) { this.TaxToCharge = value; return this; } public BigDecimal getTaxToChargeGreaterThanOrEqualTo() { return TaxToChargeGreaterThanOrEqualTo; } public SO_ViewShippedQuery setTaxToChargeGreaterThanOrEqualTo(BigDecimal value) { this.TaxToChargeGreaterThanOrEqualTo = value; return this; } public BigDecimal getTaxToChargeGreaterThan() { return TaxToChargeGreaterThan; } public SO_ViewShippedQuery setTaxToChargeGreaterThan(BigDecimal value) { this.TaxToChargeGreaterThan = value; return this; } public BigDecimal getTaxToChargeLessThan() { return TaxToChargeLessThan; } public SO_ViewShippedQuery setTaxToChargeLessThan(BigDecimal value) { this.TaxToChargeLessThan = value; return this; } public BigDecimal getTaxToChargeLessThanOrEqualTo() { return TaxToChargeLessThanOrEqualTo; } public SO_ViewShippedQuery setTaxToChargeLessThanOrEqualTo(BigDecimal value) { this.TaxToChargeLessThanOrEqualTo = value; return this; } public BigDecimal getTaxToChargeNotEqualTo() { return TaxToChargeNotEqualTo; } public SO_ViewShippedQuery setTaxToChargeNotEqualTo(BigDecimal value) { this.TaxToChargeNotEqualTo = value; return this; } public ArrayList getTaxToChargeBetween() { return TaxToChargeBetween; } public SO_ViewShippedQuery setTaxToChargeBetween(ArrayList value) { this.TaxToChargeBetween = value; return this; } public ArrayList getTaxToChargeIn() { return TaxToChargeIn; } public SO_ViewShippedQuery setTaxToChargeIn(ArrayList value) { this.TaxToChargeIn = value; return this; } public BigDecimal getTaxPaid() { return TaxPaid; } public SO_ViewShippedQuery setTaxPaid(BigDecimal value) { this.TaxPaid = value; return this; } public BigDecimal getTaxPaidGreaterThanOrEqualTo() { return TaxPaidGreaterThanOrEqualTo; } public SO_ViewShippedQuery setTaxPaidGreaterThanOrEqualTo(BigDecimal value) { this.TaxPaidGreaterThanOrEqualTo = value; return this; } public BigDecimal getTaxPaidGreaterThan() { return TaxPaidGreaterThan; } public SO_ViewShippedQuery setTaxPaidGreaterThan(BigDecimal value) { this.TaxPaidGreaterThan = value; return this; } public BigDecimal getTaxPaidLessThan() { return TaxPaidLessThan; } public SO_ViewShippedQuery setTaxPaidLessThan(BigDecimal value) { this.TaxPaidLessThan = value; return this; } public BigDecimal getTaxPaidLessThanOrEqualTo() { return TaxPaidLessThanOrEqualTo; } public SO_ViewShippedQuery setTaxPaidLessThanOrEqualTo(BigDecimal value) { this.TaxPaidLessThanOrEqualTo = value; return this; } public BigDecimal getTaxPaidNotEqualTo() { return TaxPaidNotEqualTo; } public SO_ViewShippedQuery setTaxPaidNotEqualTo(BigDecimal value) { this.TaxPaidNotEqualTo = value; return this; } public ArrayList getTaxPaidBetween() { return TaxPaidBetween; } public SO_ViewShippedQuery setTaxPaidBetween(ArrayList value) { this.TaxPaidBetween = value; return this; } public ArrayList getTaxPaidIn() { return TaxPaidIn; } public SO_ViewShippedQuery setTaxPaidIn(ArrayList value) { this.TaxPaidIn = value; return this; } public Short getDecimalPlaces() { return DecimalPlaces; } public SO_ViewShippedQuery setDecimalPlaces(Short value) { this.DecimalPlaces = value; return this; } public Short getDecimalPlacesGreaterThanOrEqualTo() { return DecimalPlacesGreaterThanOrEqualTo; } public SO_ViewShippedQuery setDecimalPlacesGreaterThanOrEqualTo(Short value) { this.DecimalPlacesGreaterThanOrEqualTo = value; return this; } public Short getDecimalPlacesGreaterThan() { return DecimalPlacesGreaterThan; } public SO_ViewShippedQuery setDecimalPlacesGreaterThan(Short value) { this.DecimalPlacesGreaterThan = value; return this; } public Short getDecimalPlacesLessThan() { return DecimalPlacesLessThan; } public SO_ViewShippedQuery setDecimalPlacesLessThan(Short value) { this.DecimalPlacesLessThan = value; return this; } public Short getDecimalPlacesLessThanOrEqualTo() { return DecimalPlacesLessThanOrEqualTo; } public SO_ViewShippedQuery setDecimalPlacesLessThanOrEqualTo(Short value) { this.DecimalPlacesLessThanOrEqualTo = value; return this; } public Short getDecimalPlacesNotEqualTo() { return DecimalPlacesNotEqualTo; } public SO_ViewShippedQuery setDecimalPlacesNotEqualTo(Short value) { this.DecimalPlacesNotEqualTo = value; return this; } public ArrayList getDecimalPlacesBetween() { return DecimalPlacesBetween; } public SO_ViewShippedQuery setDecimalPlacesBetween(ArrayList value) { this.DecimalPlacesBetween = value; return this; } public ArrayList getDecimalPlacesIn() { return DecimalPlacesIn; } public SO_ViewShippedQuery setDecimalPlacesIn(ArrayList value) { this.DecimalPlacesIn = value; return this; } public String getTaxID() { return TaxID; } public SO_ViewShippedQuery setTaxID(String value) { this.TaxID = value; return this; } public String getTaxIDStartsWith() { return TaxIDStartsWith; } public SO_ViewShippedQuery setTaxIDStartsWith(String value) { this.TaxIDStartsWith = value; return this; } public String getTaxIDEndsWith() { return TaxIDEndsWith; } public SO_ViewShippedQuery setTaxIDEndsWith(String value) { this.TaxIDEndsWith = value; return this; } public String getTaxIDContains() { return TaxIDContains; } public SO_ViewShippedQuery setTaxIDContains(String value) { this.TaxIDContains = value; return this; } public String getTaxIDLike() { return TaxIDLike; } public SO_ViewShippedQuery setTaxIDLike(String value) { this.TaxIDLike = value; return this; } public ArrayList getTaxIDBetween() { return TaxIDBetween; } public SO_ViewShippedQuery setTaxIDBetween(ArrayList value) { this.TaxIDBetween = value; return this; } public ArrayList getTaxIDIn() { return TaxIDIn; } public SO_ViewShippedQuery setTaxIDIn(ArrayList value) { this.TaxIDIn = value; return this; } public Short getPhysicalItem() { return PhysicalItem; } public SO_ViewShippedQuery setPhysicalItem(Short value) { this.PhysicalItem = value; return this; } public Short getPhysicalItemGreaterThanOrEqualTo() { return PhysicalItemGreaterThanOrEqualTo; } public SO_ViewShippedQuery setPhysicalItemGreaterThanOrEqualTo(Short value) { this.PhysicalItemGreaterThanOrEqualTo = value; return this; } public Short getPhysicalItemGreaterThan() { return PhysicalItemGreaterThan; } public SO_ViewShippedQuery setPhysicalItemGreaterThan(Short value) { this.PhysicalItemGreaterThan = value; return this; } public Short getPhysicalItemLessThan() { return PhysicalItemLessThan; } public SO_ViewShippedQuery setPhysicalItemLessThan(Short value) { this.PhysicalItemLessThan = value; return this; } public Short getPhysicalItemLessThanOrEqualTo() { return PhysicalItemLessThanOrEqualTo; } public SO_ViewShippedQuery setPhysicalItemLessThanOrEqualTo(Short value) { this.PhysicalItemLessThanOrEqualTo = value; return this; } public Short getPhysicalItemNotEqualTo() { return PhysicalItemNotEqualTo; } public SO_ViewShippedQuery setPhysicalItemNotEqualTo(Short value) { this.PhysicalItemNotEqualTo = value; return this; } public ArrayList getPhysicalItemBetween() { return PhysicalItemBetween; } public SO_ViewShippedQuery setPhysicalItemBetween(ArrayList value) { this.PhysicalItemBetween = value; return this; } public ArrayList getPhysicalItemIn() { return PhysicalItemIn; } public SO_ViewShippedQuery setPhysicalItemIn(ArrayList value) { this.PhysicalItemIn = value; return this; } public Boolean isNonStock() { return NonStock; } public SO_ViewShippedQuery setNonStock(Boolean value) { this.NonStock = value; return this; } public String getDebtorID() { return DebtorID; } public SO_ViewShippedQuery setDebtorID(String value) { this.DebtorID = value; return this; } public String getDebtorIDStartsWith() { return DebtorIDStartsWith; } public SO_ViewShippedQuery setDebtorIDStartsWith(String value) { this.DebtorIDStartsWith = value; return this; } public String getDebtorIDEndsWith() { return DebtorIDEndsWith; } public SO_ViewShippedQuery setDebtorIDEndsWith(String value) { this.DebtorIDEndsWith = value; return this; } public String getDebtorIDContains() { return DebtorIDContains; } public SO_ViewShippedQuery setDebtorIDContains(String value) { this.DebtorIDContains = value; return this; } public String getDebtorIDLike() { return DebtorIDLike; } public SO_ViewShippedQuery setDebtorIDLike(String value) { this.DebtorIDLike = value; return this; } public ArrayList getDebtorIDBetween() { return DebtorIDBetween; } public SO_ViewShippedQuery setDebtorIDBetween(ArrayList value) { this.DebtorIDBetween = value; return this; } public ArrayList getDebtorIDIn() { return DebtorIDIn; } public SO_ViewShippedQuery setDebtorIDIn(ArrayList value) { this.DebtorIDIn = value; return this; } public String getAccountNo() { return AccountNo; } public SO_ViewShippedQuery setAccountNo(String value) { this.AccountNo = value; return this; } public String getAccountNoStartsWith() { return AccountNoStartsWith; } public SO_ViewShippedQuery setAccountNoStartsWith(String value) { this.AccountNoStartsWith = value; return this; } public String getAccountNoEndsWith() { return AccountNoEndsWith; } public SO_ViewShippedQuery setAccountNoEndsWith(String value) { this.AccountNoEndsWith = value; return this; } public String getAccountNoContains() { return AccountNoContains; } public SO_ViewShippedQuery setAccountNoContains(String value) { this.AccountNoContains = value; return this; } public String getAccountNoLike() { return AccountNoLike; } public SO_ViewShippedQuery setAccountNoLike(String value) { this.AccountNoLike = value; return this; } public ArrayList getAccountNoBetween() { return AccountNoBetween; } public SO_ViewShippedQuery setAccountNoBetween(ArrayList value) { this.AccountNoBetween = value; return this; } public ArrayList getAccountNoIn() { return AccountNoIn; } public SO_ViewShippedQuery setAccountNoIn(ArrayList value) { this.AccountNoIn = value; return this; } public String getName() { return Name; } public SO_ViewShippedQuery setName(String value) { this.Name = value; return this; } public String getNameStartsWith() { return NameStartsWith; } public SO_ViewShippedQuery setNameStartsWith(String value) { this.NameStartsWith = value; return this; } public String getNameEndsWith() { return NameEndsWith; } public SO_ViewShippedQuery setNameEndsWith(String value) { this.NameEndsWith = value; return this; } public String getNameContains() { return NameContains; } public SO_ViewShippedQuery setNameContains(String value) { this.NameContains = value; return this; } public String getNameLike() { return NameLike; } public SO_ViewShippedQuery setNameLike(String value) { this.NameLike = value; return this; } public ArrayList getNameBetween() { return NameBetween; } public SO_ViewShippedQuery setNameBetween(ArrayList value) { this.NameBetween = value; return this; } public ArrayList getNameIn() { return NameIn; } public SO_ViewShippedQuery setNameIn(ArrayList value) { this.NameIn = value; return this; } public String getInventoryClassificationID() { return InventoryClassificationID; } public SO_ViewShippedQuery setInventoryClassificationID(String value) { this.InventoryClassificationID = value; return this; } public String getInventoryClassificationIDStartsWith() { return InventoryClassificationIDStartsWith; } public SO_ViewShippedQuery setInventoryClassificationIDStartsWith(String value) { this.InventoryClassificationIDStartsWith = value; return this; } public String getInventoryClassificationIDEndsWith() { return InventoryClassificationIDEndsWith; } public SO_ViewShippedQuery setInventoryClassificationIDEndsWith(String value) { this.InventoryClassificationIDEndsWith = value; return this; } public String getInventoryClassificationIDContains() { return InventoryClassificationIDContains; } public SO_ViewShippedQuery setInventoryClassificationIDContains(String value) { this.InventoryClassificationIDContains = value; return this; } public String getInventoryClassificationIDLike() { return InventoryClassificationIDLike; } public SO_ViewShippedQuery setInventoryClassificationIDLike(String value) { this.InventoryClassificationIDLike = value; return this; } public ArrayList getInventoryClassificationIDBetween() { return InventoryClassificationIDBetween; } public SO_ViewShippedQuery setInventoryClassificationIDBetween(ArrayList value) { this.InventoryClassificationIDBetween = value; return this; } public ArrayList getInventoryClassificationIDIn() { return InventoryClassificationIDIn; } public SO_ViewShippedQuery setInventoryClassificationIDIn(ArrayList value) { this.InventoryClassificationIDIn = value; return this; } public String getClassDescription() { return ClassDescription; } public SO_ViewShippedQuery setClassDescription(String value) { this.ClassDescription = value; return this; } public String getClassDescriptionStartsWith() { return ClassDescriptionStartsWith; } public SO_ViewShippedQuery setClassDescriptionStartsWith(String value) { this.ClassDescriptionStartsWith = value; return this; } public String getClassDescriptionEndsWith() { return ClassDescriptionEndsWith; } public SO_ViewShippedQuery setClassDescriptionEndsWith(String value) { this.ClassDescriptionEndsWith = value; return this; } public String getClassDescriptionContains() { return ClassDescriptionContains; } public SO_ViewShippedQuery setClassDescriptionContains(String value) { this.ClassDescriptionContains = value; return this; } public String getClassDescriptionLike() { return ClassDescriptionLike; } public SO_ViewShippedQuery setClassDescriptionLike(String value) { this.ClassDescriptionLike = value; return this; } public ArrayList getClassDescriptionBetween() { return ClassDescriptionBetween; } public SO_ViewShippedQuery setClassDescriptionBetween(ArrayList value) { this.ClassDescriptionBetween = value; return this; } public ArrayList getClassDescriptionIn() { return ClassDescriptionIn; } public SO_ViewShippedQuery setClassDescriptionIn(ArrayList value) { this.ClassDescriptionIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class SO_VInvQuery extends QueryDb implements IReturn> { public String InvoiceID = null; public String InvoiceIDStartsWith = null; public String InvoiceIDEndsWith = null; public String InvoiceIDContains = null; public String InvoiceIDLike = null; public ArrayList InvoiceIDBetween = null; public ArrayList InvoiceIDIn = null; public String InvID = null; public String InvIDStartsWith = null; public String InvIDEndsWith = null; public String InvIDContains = null; public String InvIDLike = null; public ArrayList InvIDBetween = null; public ArrayList InvIDIn = null; public String InvoiceNo = null; public String InvoiceNoStartsWith = null; public String InvoiceNoEndsWith = null; public String InvoiceNoContains = null; public String InvoiceNoLike = null; public ArrayList InvoiceNoBetween = null; public ArrayList InvoiceNoIn = null; public String IN_LogicalID = null; public String IN_LogicalIDStartsWith = null; public String IN_LogicalIDEndsWith = null; public String IN_LogicalIDContains = null; public String IN_LogicalIDLike = null; public ArrayList IN_LogicalIDBetween = null; public ArrayList IN_LogicalIDIn = null; public Short BillWhenComplete = null; public Short BillWhenCompleteGreaterThanOrEqualTo = null; public Short BillWhenCompleteGreaterThan = null; public Short BillWhenCompleteLessThan = null; public Short BillWhenCompleteLessThanOrEqualTo = null; public Short BillWhenCompleteNotEqualTo = null; public ArrayList BillWhenCompleteBetween = null; public ArrayList BillWhenCompleteIn = null; public String OrderNo = null; public String OrderNoStartsWith = null; public String OrderNoEndsWith = null; public String OrderNoContains = null; public String OrderNoLike = null; public ArrayList OrderNoBetween = null; public ArrayList OrderNoIn = null; public Boolean CreditNote = null; public Boolean WholeSaleInvoice = null; public String TaxExemptNo = null; public String TaxExemptNoStartsWith = null; public String TaxExemptNoEndsWith = null; public String TaxExemptNoContains = null; public String TaxExemptNoLike = null; public ArrayList TaxExemptNoBetween = null; public ArrayList TaxExemptNoIn = null; public Short Status = null; public Short StatusGreaterThanOrEqualTo = null; public Short StatusGreaterThan = null; public Short StatusLessThan = null; public Short StatusLessThanOrEqualTo = null; public Short StatusNotEqualTo = null; public ArrayList StatusBetween = null; public ArrayList StatusIn = null; public String StaffID = null; public String StaffIDStartsWith = null; public String StaffIDEndsWith = null; public String StaffIDContains = null; public String StaffIDLike = null; public ArrayList StaffIDBetween = null; public ArrayList StaffIDIn = null; public String BranchID = null; public String BranchIDStartsWith = null; public String BranchIDEndsWith = null; public String BranchIDContains = null; public String BranchIDLike = null; public ArrayList BranchIDBetween = null; public ArrayList BranchIDIn = null; public Boolean CreditIntoStock = null; public String InvoiceHistoryID = null; public String InvoiceHistoryIDStartsWith = null; public String InvoiceHistoryIDEndsWith = null; public String InvoiceHistoryIDContains = null; public String InvoiceHistoryIDLike = null; public ArrayList InvoiceHistoryIDBetween = null; public ArrayList InvoiceHistoryIDIn = null; public BigDecimal HistoryTotal = null; public BigDecimal HistoryTotalGreaterThanOrEqualTo = null; public BigDecimal HistoryTotalGreaterThan = null; public BigDecimal HistoryTotalLessThan = null; public BigDecimal HistoryTotalLessThanOrEqualTo = null; public BigDecimal HistoryTotalNotEqualTo = null; public ArrayList HistoryTotalBetween = null; public ArrayList HistoryTotalIn = null; public BigDecimal CartageCharge1 = null; public BigDecimal CartageCharge1GreaterThanOrEqualTo = null; public BigDecimal CartageCharge1GreaterThan = null; public BigDecimal CartageCharge1LessThan = null; public BigDecimal CartageCharge1LessThanOrEqualTo = null; public BigDecimal CartageCharge1NotEqualTo = null; public ArrayList CartageCharge1Between = null; public ArrayList CartageCharge1In = null; public BigDecimal CartageCharge2 = null; public BigDecimal CartageCharge2GreaterThanOrEqualTo = null; public BigDecimal CartageCharge2GreaterThan = null; public BigDecimal CartageCharge2LessThan = null; public BigDecimal CartageCharge2LessThanOrEqualTo = null; public BigDecimal CartageCharge2NotEqualTo = null; public ArrayList CartageCharge2Between = null; public ArrayList CartageCharge2In = null; public BigDecimal CartageCharge3 = null; public BigDecimal CartageCharge3GreaterThanOrEqualTo = null; public BigDecimal CartageCharge3GreaterThan = null; public BigDecimal CartageCharge3LessThan = null; public BigDecimal CartageCharge3LessThanOrEqualTo = null; public BigDecimal CartageCharge3NotEqualTo = null; public ArrayList CartageCharge3Between = null; public ArrayList CartageCharge3In = null; public BigDecimal Frieght = null; public BigDecimal FrieghtGreaterThanOrEqualTo = null; public BigDecimal FrieghtGreaterThan = null; public BigDecimal FrieghtLessThan = null; public BigDecimal FrieghtLessThanOrEqualTo = null; public BigDecimal FrieghtNotEqualTo = null; public ArrayList FrieghtBetween = null; public ArrayList FrieghtIn = null; public BigDecimal Frt = null; public BigDecimal FrtGreaterThanOrEqualTo = null; public BigDecimal FrtGreaterThan = null; public BigDecimal FrtLessThan = null; public BigDecimal FrtLessThanOrEqualTo = null; public BigDecimal FrtNotEqualTo = null; public ArrayList FrtBetween = null; public ArrayList FrtIn = null; public BigDecimal FrtTax = null; public BigDecimal FrtTaxGreaterThanOrEqualTo = null; public BigDecimal FrtTaxGreaterThan = null; public BigDecimal FrtTaxLessThan = null; public BigDecimal FrtTaxLessThanOrEqualTo = null; public BigDecimal FrtTaxNotEqualTo = null; public ArrayList FrtTaxBetween = null; public ArrayList FrtTaxIn = null; public Short ProHistoryNo = null; public Short ProHistoryNoGreaterThanOrEqualTo = null; public Short ProHistoryNoGreaterThan = null; public Short ProHistoryNoLessThan = null; public Short ProHistoryNoLessThanOrEqualTo = null; public Short ProHistoryNoNotEqualTo = null; public ArrayList ProHistoryNoBetween = null; public ArrayList ProHistoryNoIn = null; public Short InvHistoryNo = null; public Short InvHistoryNoGreaterThanOrEqualTo = null; public Short InvHistoryNoGreaterThan = null; public Short InvHistoryNoLessThan = null; public Short InvHistoryNoLessThanOrEqualTo = null; public Short InvHistoryNoNotEqualTo = null; public ArrayList InvHistoryNoBetween = null; public ArrayList InvHistoryNoIn = null; public String ProRunNo = null; public String ProRunNoStartsWith = null; public String ProRunNoEndsWith = null; public String ProRunNoContains = null; public String ProRunNoLike = null; public ArrayList ProRunNoBetween = null; public ArrayList ProRunNoIn = null; public String InvRunNo = null; public String InvRunNoStartsWith = null; public String InvRunNoEndsWith = null; public String InvRunNoContains = null; public String InvRunNoLike = null; public ArrayList InvRunNoBetween = null; public ArrayList InvRunNoIn = null; public Date ProDate = null; public Date ProDateGreaterThanOrEqualTo = null; public Date ProDateGreaterThan = null; public Date ProDateLessThan = null; public Date ProDateLessThanOrEqualTo = null; public Date ProDateNotEqualTo = null; public ArrayList ProDateBetween = null; public ArrayList ProDateIn = null; public Date InvDate = null; public Date InvDateGreaterThanOrEqualTo = null; public Date InvDateGreaterThan = null; public Date InvDateLessThan = null; public Date InvDateLessThanOrEqualTo = null; public Date InvDateNotEqualTo = null; public ArrayList InvDateBetween = null; public ArrayList InvDateIn = null; public String InvoiceLineID = null; public String InvoiceLineIDStartsWith = null; public String InvoiceLineIDEndsWith = null; public String InvoiceLineIDContains = null; public String InvoiceLineIDLike = null; public ArrayList InvoiceLineIDBetween = null; public ArrayList InvoiceLineIDIn = null; public String InventoryID = null; public String InventoryIDStartsWith = null; public String InventoryIDEndsWith = null; public String InventoryIDContains = null; public String InventoryIDLike = null; public ArrayList InventoryIDBetween = null; public ArrayList InventoryIDIn = null; public String PartNo = null; public String PartNoStartsWith = null; public String PartNoEndsWith = null; public String PartNoContains = null; public String PartNoLike = null; public ArrayList PartNoBetween = null; public ArrayList PartNoIn = null; public String Description = null; public String DescriptionStartsWith = null; public String DescriptionEndsWith = null; public String DescriptionContains = null; public String DescriptionLike = null; public ArrayList DescriptionBetween = null; public ArrayList DescriptionIn = null; public String JobID = null; public String JobIDStartsWith = null; public String JobIDEndsWith = null; public String JobIDContains = null; public String JobIDLike = null; public ArrayList JobIDBetween = null; public ArrayList JobIDIn = null; public BigDecimal CostIn = null; public BigDecimal CostInGreaterThanOrEqualTo = null; public BigDecimal CostInGreaterThan = null; public BigDecimal CostInLessThan = null; public BigDecimal CostInLessThanOrEqualTo = null; public BigDecimal CostInNotEqualTo = null; public ArrayList CostInBetween = null; public ArrayList CostInIn = null; public BigDecimal QuantityThisDel = null; public BigDecimal QuantityThisDelGreaterThanOrEqualTo = null; public BigDecimal QuantityThisDelGreaterThan = null; public BigDecimal QuantityThisDelLessThan = null; public BigDecimal QuantityThisDelLessThanOrEqualTo = null; public BigDecimal QuantityThisDelNotEqualTo = null; public ArrayList QuantityThisDelBetween = null; public ArrayList QuantityThisDelIn = null; public BigDecimal CurrentLineTotal = null; public BigDecimal CurrentLineTotalGreaterThanOrEqualTo = null; public BigDecimal CurrentLineTotalGreaterThan = null; public BigDecimal CurrentLineTotalLessThan = null; public BigDecimal CurrentLineTotalLessThanOrEqualTo = null; public BigDecimal CurrentLineTotalNotEqualTo = null; public ArrayList CurrentLineTotalBetween = null; public ArrayList CurrentLineTotalIn = null; public BigDecimal TaxToCharge = null; public BigDecimal TaxToChargeGreaterThanOrEqualTo = null; public BigDecimal TaxToChargeGreaterThan = null; public BigDecimal TaxToChargeLessThan = null; public BigDecimal TaxToChargeLessThanOrEqualTo = null; public BigDecimal TaxToChargeNotEqualTo = null; public ArrayList TaxToChargeBetween = null; public ArrayList TaxToChargeIn = null; public BigDecimal TaxPaid = null; public BigDecimal TaxPaidGreaterThanOrEqualTo = null; public BigDecimal TaxPaidGreaterThan = null; public BigDecimal TaxPaidLessThan = null; public BigDecimal TaxPaidLessThanOrEqualTo = null; public BigDecimal TaxPaidNotEqualTo = null; public ArrayList TaxPaidBetween = null; public ArrayList TaxPaidIn = null; public Short DecimalPlaces = null; public Short DecimalPlacesGreaterThanOrEqualTo = null; public Short DecimalPlacesGreaterThan = null; public Short DecimalPlacesLessThan = null; public Short DecimalPlacesLessThanOrEqualTo = null; public Short DecimalPlacesNotEqualTo = null; public ArrayList DecimalPlacesBetween = null; public ArrayList DecimalPlacesIn = null; public String TaxID = null; public String TaxIDStartsWith = null; public String TaxIDEndsWith = null; public String TaxIDContains = null; public String TaxIDLike = null; public ArrayList TaxIDBetween = null; public ArrayList TaxIDIn = null; public Short PhysicalItem = null; public Short PhysicalItemGreaterThanOrEqualTo = null; public Short PhysicalItemGreaterThan = null; public Short PhysicalItemLessThan = null; public Short PhysicalItemLessThanOrEqualTo = null; public Short PhysicalItemNotEqualTo = null; public ArrayList PhysicalItemBetween = null; public ArrayList PhysicalItemIn = null; public Boolean NonStock = null; public String ClassDescription = null; public String ClassDescriptionStartsWith = null; public String ClassDescriptionEndsWith = null; public String ClassDescriptionContains = null; public String ClassDescriptionLike = null; public ArrayList ClassDescriptionBetween = null; public ArrayList ClassDescriptionIn = null; public String DebtorID = null; public String DebtorIDStartsWith = null; public String DebtorIDEndsWith = null; public String DebtorIDContains = null; public String DebtorIDLike = null; public ArrayList DebtorIDBetween = null; public ArrayList DebtorIDIn = null; public String AccountNo = null; public String AccountNoStartsWith = null; public String AccountNoEndsWith = null; public String AccountNoContains = null; public String AccountNoLike = null; public ArrayList AccountNoBetween = null; public ArrayList AccountNoIn = null; public String Name = null; public String NameStartsWith = null; public String NameEndsWith = null; public String NameContains = null; public String NameLike = null; public ArrayList NameBetween = null; public ArrayList NameIn = null; public BigDecimal LineCost = null; public BigDecimal LineCostGreaterThanOrEqualTo = null; public BigDecimal LineCostGreaterThan = null; public BigDecimal LineCostLessThan = null; public BigDecimal LineCostLessThanOrEqualTo = null; public BigDecimal LineCostNotEqualTo = null; public ArrayList LineCostBetween = null; public ArrayList LineCostIn = null; public String Cat1Description = null; public String Cat1DescriptionStartsWith = null; public String Cat1DescriptionEndsWith = null; public String Cat1DescriptionContains = null; public String Cat1DescriptionLike = null; public ArrayList Cat1DescriptionBetween = null; public ArrayList Cat1DescriptionIn = null; public String Cat2Description = null; public String Cat2DescriptionStartsWith = null; public String Cat2DescriptionEndsWith = null; public String Cat2DescriptionContains = null; public String Cat2DescriptionLike = null; public ArrayList Cat2DescriptionBetween = null; public ArrayList Cat2DescriptionIn = null; public String Cat3Description = null; public String Cat3DescriptionStartsWith = null; public String Cat3DescriptionEndsWith = null; public String Cat3DescriptionContains = null; public String Cat3DescriptionLike = null; public ArrayList Cat3DescriptionBetween = null; public ArrayList Cat3DescriptionIn = null; public String getInvoiceID() { return InvoiceID; } public SO_VInvQuery setInvoiceID(String value) { this.InvoiceID = value; return this; } public String getInvoiceIDStartsWith() { return InvoiceIDStartsWith; } public SO_VInvQuery setInvoiceIDStartsWith(String value) { this.InvoiceIDStartsWith = value; return this; } public String getInvoiceIDEndsWith() { return InvoiceIDEndsWith; } public SO_VInvQuery setInvoiceIDEndsWith(String value) { this.InvoiceIDEndsWith = value; return this; } public String getInvoiceIDContains() { return InvoiceIDContains; } public SO_VInvQuery setInvoiceIDContains(String value) { this.InvoiceIDContains = value; return this; } public String getInvoiceIDLike() { return InvoiceIDLike; } public SO_VInvQuery setInvoiceIDLike(String value) { this.InvoiceIDLike = value; return this; } public ArrayList getInvoiceIDBetween() { return InvoiceIDBetween; } public SO_VInvQuery setInvoiceIDBetween(ArrayList value) { this.InvoiceIDBetween = value; return this; } public ArrayList getInvoiceIDIn() { return InvoiceIDIn; } public SO_VInvQuery setInvoiceIDIn(ArrayList value) { this.InvoiceIDIn = value; return this; } public String getInvID() { return InvID; } public SO_VInvQuery setInvID(String value) { this.InvID = value; return this; } public String getInvIDStartsWith() { return InvIDStartsWith; } public SO_VInvQuery setInvIDStartsWith(String value) { this.InvIDStartsWith = value; return this; } public String getInvIDEndsWith() { return InvIDEndsWith; } public SO_VInvQuery setInvIDEndsWith(String value) { this.InvIDEndsWith = value; return this; } public String getInvIDContains() { return InvIDContains; } public SO_VInvQuery setInvIDContains(String value) { this.InvIDContains = value; return this; } public String getInvIDLike() { return InvIDLike; } public SO_VInvQuery setInvIDLike(String value) { this.InvIDLike = value; return this; } public ArrayList getInvIDBetween() { return InvIDBetween; } public SO_VInvQuery setInvIDBetween(ArrayList value) { this.InvIDBetween = value; return this; } public ArrayList getInvIDIn() { return InvIDIn; } public SO_VInvQuery setInvIDIn(ArrayList value) { this.InvIDIn = value; return this; } public String getInvoiceNo() { return InvoiceNo; } public SO_VInvQuery setInvoiceNo(String value) { this.InvoiceNo = value; return this; } public String getInvoiceNoStartsWith() { return InvoiceNoStartsWith; } public SO_VInvQuery setInvoiceNoStartsWith(String value) { this.InvoiceNoStartsWith = value; return this; } public String getInvoiceNoEndsWith() { return InvoiceNoEndsWith; } public SO_VInvQuery setInvoiceNoEndsWith(String value) { this.InvoiceNoEndsWith = value; return this; } public String getInvoiceNoContains() { return InvoiceNoContains; } public SO_VInvQuery setInvoiceNoContains(String value) { this.InvoiceNoContains = value; return this; } public String getInvoiceNoLike() { return InvoiceNoLike; } public SO_VInvQuery setInvoiceNoLike(String value) { this.InvoiceNoLike = value; return this; } public ArrayList getInvoiceNoBetween() { return InvoiceNoBetween; } public SO_VInvQuery setInvoiceNoBetween(ArrayList value) { this.InvoiceNoBetween = value; return this; } public ArrayList getInvoiceNoIn() { return InvoiceNoIn; } public SO_VInvQuery setInvoiceNoIn(ArrayList value) { this.InvoiceNoIn = value; return this; } public String getInLogicalID() { return IN_LogicalID; } public SO_VInvQuery setInLogicalID(String value) { this.IN_LogicalID = value; return this; } public String getInLogicalIDStartsWith() { return IN_LogicalIDStartsWith; } public SO_VInvQuery setInLogicalIDStartsWith(String value) { this.IN_LogicalIDStartsWith = value; return this; } public String getInLogicalIDEndsWith() { return IN_LogicalIDEndsWith; } public SO_VInvQuery setInLogicalIDEndsWith(String value) { this.IN_LogicalIDEndsWith = value; return this; } public String getInLogicalIDContains() { return IN_LogicalIDContains; } public SO_VInvQuery setInLogicalIDContains(String value) { this.IN_LogicalIDContains = value; return this; } public String getInLogicalIDLike() { return IN_LogicalIDLike; } public SO_VInvQuery setInLogicalIDLike(String value) { this.IN_LogicalIDLike = value; return this; } public ArrayList getInLogicalIDBetween() { return IN_LogicalIDBetween; } public SO_VInvQuery setInLogicalIDBetween(ArrayList value) { this.IN_LogicalIDBetween = value; return this; } public ArrayList getInLogicalIDIn() { return IN_LogicalIDIn; } public SO_VInvQuery setInLogicalIDIn(ArrayList value) { this.IN_LogicalIDIn = value; return this; } public Short getBillWhenComplete() { return BillWhenComplete; } public SO_VInvQuery setBillWhenComplete(Short value) { this.BillWhenComplete = value; return this; } public Short getBillWhenCompleteGreaterThanOrEqualTo() { return BillWhenCompleteGreaterThanOrEqualTo; } public SO_VInvQuery setBillWhenCompleteGreaterThanOrEqualTo(Short value) { this.BillWhenCompleteGreaterThanOrEqualTo = value; return this; } public Short getBillWhenCompleteGreaterThan() { return BillWhenCompleteGreaterThan; } public SO_VInvQuery setBillWhenCompleteGreaterThan(Short value) { this.BillWhenCompleteGreaterThan = value; return this; } public Short getBillWhenCompleteLessThan() { return BillWhenCompleteLessThan; } public SO_VInvQuery setBillWhenCompleteLessThan(Short value) { this.BillWhenCompleteLessThan = value; return this; } public Short getBillWhenCompleteLessThanOrEqualTo() { return BillWhenCompleteLessThanOrEqualTo; } public SO_VInvQuery setBillWhenCompleteLessThanOrEqualTo(Short value) { this.BillWhenCompleteLessThanOrEqualTo = value; return this; } public Short getBillWhenCompleteNotEqualTo() { return BillWhenCompleteNotEqualTo; } public SO_VInvQuery setBillWhenCompleteNotEqualTo(Short value) { this.BillWhenCompleteNotEqualTo = value; return this; } public ArrayList getBillWhenCompleteBetween() { return BillWhenCompleteBetween; } public SO_VInvQuery setBillWhenCompleteBetween(ArrayList value) { this.BillWhenCompleteBetween = value; return this; } public ArrayList getBillWhenCompleteIn() { return BillWhenCompleteIn; } public SO_VInvQuery setBillWhenCompleteIn(ArrayList value) { this.BillWhenCompleteIn = value; return this; } public String getOrderNo() { return OrderNo; } public SO_VInvQuery setOrderNo(String value) { this.OrderNo = value; return this; } public String getOrderNoStartsWith() { return OrderNoStartsWith; } public SO_VInvQuery setOrderNoStartsWith(String value) { this.OrderNoStartsWith = value; return this; } public String getOrderNoEndsWith() { return OrderNoEndsWith; } public SO_VInvQuery setOrderNoEndsWith(String value) { this.OrderNoEndsWith = value; return this; } public String getOrderNoContains() { return OrderNoContains; } public SO_VInvQuery setOrderNoContains(String value) { this.OrderNoContains = value; return this; } public String getOrderNoLike() { return OrderNoLike; } public SO_VInvQuery setOrderNoLike(String value) { this.OrderNoLike = value; return this; } public ArrayList getOrderNoBetween() { return OrderNoBetween; } public SO_VInvQuery setOrderNoBetween(ArrayList value) { this.OrderNoBetween = value; return this; } public ArrayList getOrderNoIn() { return OrderNoIn; } public SO_VInvQuery setOrderNoIn(ArrayList value) { this.OrderNoIn = value; return this; } public Boolean isCreditNote() { return CreditNote; } public SO_VInvQuery setCreditNote(Boolean value) { this.CreditNote = value; return this; } public Boolean isWholeSaleInvoice() { return WholeSaleInvoice; } public SO_VInvQuery setWholeSaleInvoice(Boolean value) { this.WholeSaleInvoice = value; return this; } public String getTaxExemptNo() { return TaxExemptNo; } public SO_VInvQuery setTaxExemptNo(String value) { this.TaxExemptNo = value; return this; } public String getTaxExemptNoStartsWith() { return TaxExemptNoStartsWith; } public SO_VInvQuery setTaxExemptNoStartsWith(String value) { this.TaxExemptNoStartsWith = value; return this; } public String getTaxExemptNoEndsWith() { return TaxExemptNoEndsWith; } public SO_VInvQuery setTaxExemptNoEndsWith(String value) { this.TaxExemptNoEndsWith = value; return this; } public String getTaxExemptNoContains() { return TaxExemptNoContains; } public SO_VInvQuery setTaxExemptNoContains(String value) { this.TaxExemptNoContains = value; return this; } public String getTaxExemptNoLike() { return TaxExemptNoLike; } public SO_VInvQuery setTaxExemptNoLike(String value) { this.TaxExemptNoLike = value; return this; } public ArrayList getTaxExemptNoBetween() { return TaxExemptNoBetween; } public SO_VInvQuery setTaxExemptNoBetween(ArrayList value) { this.TaxExemptNoBetween = value; return this; } public ArrayList getTaxExemptNoIn() { return TaxExemptNoIn; } public SO_VInvQuery setTaxExemptNoIn(ArrayList value) { this.TaxExemptNoIn = value; return this; } public Short getStatus() { return Status; } public SO_VInvQuery setStatus(Short value) { this.Status = value; return this; } public Short getStatusGreaterThanOrEqualTo() { return StatusGreaterThanOrEqualTo; } public SO_VInvQuery setStatusGreaterThanOrEqualTo(Short value) { this.StatusGreaterThanOrEqualTo = value; return this; } public Short getStatusGreaterThan() { return StatusGreaterThan; } public SO_VInvQuery setStatusGreaterThan(Short value) { this.StatusGreaterThan = value; return this; } public Short getStatusLessThan() { return StatusLessThan; } public SO_VInvQuery setStatusLessThan(Short value) { this.StatusLessThan = value; return this; } public Short getStatusLessThanOrEqualTo() { return StatusLessThanOrEqualTo; } public SO_VInvQuery setStatusLessThanOrEqualTo(Short value) { this.StatusLessThanOrEqualTo = value; return this; } public Short getStatusNotEqualTo() { return StatusNotEqualTo; } public SO_VInvQuery setStatusNotEqualTo(Short value) { this.StatusNotEqualTo = value; return this; } public ArrayList getStatusBetween() { return StatusBetween; } public SO_VInvQuery setStatusBetween(ArrayList value) { this.StatusBetween = value; return this; } public ArrayList getStatusIn() { return StatusIn; } public SO_VInvQuery setStatusIn(ArrayList value) { this.StatusIn = value; return this; } public String getStaffID() { return StaffID; } public SO_VInvQuery setStaffID(String value) { this.StaffID = value; return this; } public String getStaffIDStartsWith() { return StaffIDStartsWith; } public SO_VInvQuery setStaffIDStartsWith(String value) { this.StaffIDStartsWith = value; return this; } public String getStaffIDEndsWith() { return StaffIDEndsWith; } public SO_VInvQuery setStaffIDEndsWith(String value) { this.StaffIDEndsWith = value; return this; } public String getStaffIDContains() { return StaffIDContains; } public SO_VInvQuery setStaffIDContains(String value) { this.StaffIDContains = value; return this; } public String getStaffIDLike() { return StaffIDLike; } public SO_VInvQuery setStaffIDLike(String value) { this.StaffIDLike = value; return this; } public ArrayList getStaffIDBetween() { return StaffIDBetween; } public SO_VInvQuery setStaffIDBetween(ArrayList value) { this.StaffIDBetween = value; return this; } public ArrayList getStaffIDIn() { return StaffIDIn; } public SO_VInvQuery setStaffIDIn(ArrayList value) { this.StaffIDIn = value; return this; } public String getBranchID() { return BranchID; } public SO_VInvQuery setBranchID(String value) { this.BranchID = value; return this; } public String getBranchIDStartsWith() { return BranchIDStartsWith; } public SO_VInvQuery setBranchIDStartsWith(String value) { this.BranchIDStartsWith = value; return this; } public String getBranchIDEndsWith() { return BranchIDEndsWith; } public SO_VInvQuery setBranchIDEndsWith(String value) { this.BranchIDEndsWith = value; return this; } public String getBranchIDContains() { return BranchIDContains; } public SO_VInvQuery setBranchIDContains(String value) { this.BranchIDContains = value; return this; } public String getBranchIDLike() { return BranchIDLike; } public SO_VInvQuery setBranchIDLike(String value) { this.BranchIDLike = value; return this; } public ArrayList getBranchIDBetween() { return BranchIDBetween; } public SO_VInvQuery setBranchIDBetween(ArrayList value) { this.BranchIDBetween = value; return this; } public ArrayList getBranchIDIn() { return BranchIDIn; } public SO_VInvQuery setBranchIDIn(ArrayList value) { this.BranchIDIn = value; return this; } public Boolean isCreditIntoStock() { return CreditIntoStock; } public SO_VInvQuery setCreditIntoStock(Boolean value) { this.CreditIntoStock = value; return this; } public String getInvoiceHistoryID() { return InvoiceHistoryID; } public SO_VInvQuery setInvoiceHistoryID(String value) { this.InvoiceHistoryID = value; return this; } public String getInvoiceHistoryIDStartsWith() { return InvoiceHistoryIDStartsWith; } public SO_VInvQuery setInvoiceHistoryIDStartsWith(String value) { this.InvoiceHistoryIDStartsWith = value; return this; } public String getInvoiceHistoryIDEndsWith() { return InvoiceHistoryIDEndsWith; } public SO_VInvQuery setInvoiceHistoryIDEndsWith(String value) { this.InvoiceHistoryIDEndsWith = value; return this; } public String getInvoiceHistoryIDContains() { return InvoiceHistoryIDContains; } public SO_VInvQuery setInvoiceHistoryIDContains(String value) { this.InvoiceHistoryIDContains = value; return this; } public String getInvoiceHistoryIDLike() { return InvoiceHistoryIDLike; } public SO_VInvQuery setInvoiceHistoryIDLike(String value) { this.InvoiceHistoryIDLike = value; return this; } public ArrayList getInvoiceHistoryIDBetween() { return InvoiceHistoryIDBetween; } public SO_VInvQuery setInvoiceHistoryIDBetween(ArrayList value) { this.InvoiceHistoryIDBetween = value; return this; } public ArrayList getInvoiceHistoryIDIn() { return InvoiceHistoryIDIn; } public SO_VInvQuery setInvoiceHistoryIDIn(ArrayList value) { this.InvoiceHistoryIDIn = value; return this; } public BigDecimal getHistoryTotal() { return HistoryTotal; } public SO_VInvQuery setHistoryTotal(BigDecimal value) { this.HistoryTotal = value; return this; } public BigDecimal getHistoryTotalGreaterThanOrEqualTo() { return HistoryTotalGreaterThanOrEqualTo; } public SO_VInvQuery setHistoryTotalGreaterThanOrEqualTo(BigDecimal value) { this.HistoryTotalGreaterThanOrEqualTo = value; return this; } public BigDecimal getHistoryTotalGreaterThan() { return HistoryTotalGreaterThan; } public SO_VInvQuery setHistoryTotalGreaterThan(BigDecimal value) { this.HistoryTotalGreaterThan = value; return this; } public BigDecimal getHistoryTotalLessThan() { return HistoryTotalLessThan; } public SO_VInvQuery setHistoryTotalLessThan(BigDecimal value) { this.HistoryTotalLessThan = value; return this; } public BigDecimal getHistoryTotalLessThanOrEqualTo() { return HistoryTotalLessThanOrEqualTo; } public SO_VInvQuery setHistoryTotalLessThanOrEqualTo(BigDecimal value) { this.HistoryTotalLessThanOrEqualTo = value; return this; } public BigDecimal getHistoryTotalNotEqualTo() { return HistoryTotalNotEqualTo; } public SO_VInvQuery setHistoryTotalNotEqualTo(BigDecimal value) { this.HistoryTotalNotEqualTo = value; return this; } public ArrayList getHistoryTotalBetween() { return HistoryTotalBetween; } public SO_VInvQuery setHistoryTotalBetween(ArrayList value) { this.HistoryTotalBetween = value; return this; } public ArrayList getHistoryTotalIn() { return HistoryTotalIn; } public SO_VInvQuery setHistoryTotalIn(ArrayList value) { this.HistoryTotalIn = value; return this; } public BigDecimal getCartageCharge1() { return CartageCharge1; } public SO_VInvQuery setCartageCharge1(BigDecimal value) { this.CartageCharge1 = value; return this; } public BigDecimal getCartageCharge1GreaterThanOrEqualTo() { return CartageCharge1GreaterThanOrEqualTo; } public SO_VInvQuery setCartageCharge1GreaterThanOrEqualTo(BigDecimal value) { this.CartageCharge1GreaterThanOrEqualTo = value; return this; } public BigDecimal getCartageCharge1GreaterThan() { return CartageCharge1GreaterThan; } public SO_VInvQuery setCartageCharge1GreaterThan(BigDecimal value) { this.CartageCharge1GreaterThan = value; return this; } public BigDecimal getCartageCharge1LessThan() { return CartageCharge1LessThan; } public SO_VInvQuery setCartageCharge1LessThan(BigDecimal value) { this.CartageCharge1LessThan = value; return this; } public BigDecimal getCartageCharge1LessThanOrEqualTo() { return CartageCharge1LessThanOrEqualTo; } public SO_VInvQuery setCartageCharge1LessThanOrEqualTo(BigDecimal value) { this.CartageCharge1LessThanOrEqualTo = value; return this; } public BigDecimal getCartageCharge1NotEqualTo() { return CartageCharge1NotEqualTo; } public SO_VInvQuery setCartageCharge1NotEqualTo(BigDecimal value) { this.CartageCharge1NotEqualTo = value; return this; } public ArrayList getCartageCharge1Between() { return CartageCharge1Between; } public SO_VInvQuery setCartageCharge1Between(ArrayList value) { this.CartageCharge1Between = value; return this; } public ArrayList getCartageCharge1In() { return CartageCharge1In; } public SO_VInvQuery setCartageCharge1In(ArrayList value) { this.CartageCharge1In = value; return this; } public BigDecimal getCartageCharge2() { return CartageCharge2; } public SO_VInvQuery setCartageCharge2(BigDecimal value) { this.CartageCharge2 = value; return this; } public BigDecimal getCartageCharge2GreaterThanOrEqualTo() { return CartageCharge2GreaterThanOrEqualTo; } public SO_VInvQuery setCartageCharge2GreaterThanOrEqualTo(BigDecimal value) { this.CartageCharge2GreaterThanOrEqualTo = value; return this; } public BigDecimal getCartageCharge2GreaterThan() { return CartageCharge2GreaterThan; } public SO_VInvQuery setCartageCharge2GreaterThan(BigDecimal value) { this.CartageCharge2GreaterThan = value; return this; } public BigDecimal getCartageCharge2LessThan() { return CartageCharge2LessThan; } public SO_VInvQuery setCartageCharge2LessThan(BigDecimal value) { this.CartageCharge2LessThan = value; return this; } public BigDecimal getCartageCharge2LessThanOrEqualTo() { return CartageCharge2LessThanOrEqualTo; } public SO_VInvQuery setCartageCharge2LessThanOrEqualTo(BigDecimal value) { this.CartageCharge2LessThanOrEqualTo = value; return this; } public BigDecimal getCartageCharge2NotEqualTo() { return CartageCharge2NotEqualTo; } public SO_VInvQuery setCartageCharge2NotEqualTo(BigDecimal value) { this.CartageCharge2NotEqualTo = value; return this; } public ArrayList getCartageCharge2Between() { return CartageCharge2Between; } public SO_VInvQuery setCartageCharge2Between(ArrayList value) { this.CartageCharge2Between = value; return this; } public ArrayList getCartageCharge2In() { return CartageCharge2In; } public SO_VInvQuery setCartageCharge2In(ArrayList value) { this.CartageCharge2In = value; return this; } public BigDecimal getCartageCharge3() { return CartageCharge3; } public SO_VInvQuery setCartageCharge3(BigDecimal value) { this.CartageCharge3 = value; return this; } public BigDecimal getCartageCharge3GreaterThanOrEqualTo() { return CartageCharge3GreaterThanOrEqualTo; } public SO_VInvQuery setCartageCharge3GreaterThanOrEqualTo(BigDecimal value) { this.CartageCharge3GreaterThanOrEqualTo = value; return this; } public BigDecimal getCartageCharge3GreaterThan() { return CartageCharge3GreaterThan; } public SO_VInvQuery setCartageCharge3GreaterThan(BigDecimal value) { this.CartageCharge3GreaterThan = value; return this; } public BigDecimal getCartageCharge3LessThan() { return CartageCharge3LessThan; } public SO_VInvQuery setCartageCharge3LessThan(BigDecimal value) { this.CartageCharge3LessThan = value; return this; } public BigDecimal getCartageCharge3LessThanOrEqualTo() { return CartageCharge3LessThanOrEqualTo; } public SO_VInvQuery setCartageCharge3LessThanOrEqualTo(BigDecimal value) { this.CartageCharge3LessThanOrEqualTo = value; return this; } public BigDecimal getCartageCharge3NotEqualTo() { return CartageCharge3NotEqualTo; } public SO_VInvQuery setCartageCharge3NotEqualTo(BigDecimal value) { this.CartageCharge3NotEqualTo = value; return this; } public ArrayList getCartageCharge3Between() { return CartageCharge3Between; } public SO_VInvQuery setCartageCharge3Between(ArrayList value) { this.CartageCharge3Between = value; return this; } public ArrayList getCartageCharge3In() { return CartageCharge3In; } public SO_VInvQuery setCartageCharge3In(ArrayList value) { this.CartageCharge3In = value; return this; } public BigDecimal getFrieght() { return Frieght; } public SO_VInvQuery setFrieght(BigDecimal value) { this.Frieght = value; return this; } public BigDecimal getFrieghtGreaterThanOrEqualTo() { return FrieghtGreaterThanOrEqualTo; } public SO_VInvQuery setFrieghtGreaterThanOrEqualTo(BigDecimal value) { this.FrieghtGreaterThanOrEqualTo = value; return this; } public BigDecimal getFrieghtGreaterThan() { return FrieghtGreaterThan; } public SO_VInvQuery setFrieghtGreaterThan(BigDecimal value) { this.FrieghtGreaterThan = value; return this; } public BigDecimal getFrieghtLessThan() { return FrieghtLessThan; } public SO_VInvQuery setFrieghtLessThan(BigDecimal value) { this.FrieghtLessThan = value; return this; } public BigDecimal getFrieghtLessThanOrEqualTo() { return FrieghtLessThanOrEqualTo; } public SO_VInvQuery setFrieghtLessThanOrEqualTo(BigDecimal value) { this.FrieghtLessThanOrEqualTo = value; return this; } public BigDecimal getFrieghtNotEqualTo() { return FrieghtNotEqualTo; } public SO_VInvQuery setFrieghtNotEqualTo(BigDecimal value) { this.FrieghtNotEqualTo = value; return this; } public ArrayList getFrieghtBetween() { return FrieghtBetween; } public SO_VInvQuery setFrieghtBetween(ArrayList value) { this.FrieghtBetween = value; return this; } public ArrayList getFrieghtIn() { return FrieghtIn; } public SO_VInvQuery setFrieghtIn(ArrayList value) { this.FrieghtIn = value; return this; } public BigDecimal getFrt() { return Frt; } public SO_VInvQuery setFrt(BigDecimal value) { this.Frt = value; return this; } public BigDecimal getFrtGreaterThanOrEqualTo() { return FrtGreaterThanOrEqualTo; } public SO_VInvQuery setFrtGreaterThanOrEqualTo(BigDecimal value) { this.FrtGreaterThanOrEqualTo = value; return this; } public BigDecimal getFrtGreaterThan() { return FrtGreaterThan; } public SO_VInvQuery setFrtGreaterThan(BigDecimal value) { this.FrtGreaterThan = value; return this; } public BigDecimal getFrtLessThan() { return FrtLessThan; } public SO_VInvQuery setFrtLessThan(BigDecimal value) { this.FrtLessThan = value; return this; } public BigDecimal getFrtLessThanOrEqualTo() { return FrtLessThanOrEqualTo; } public SO_VInvQuery setFrtLessThanOrEqualTo(BigDecimal value) { this.FrtLessThanOrEqualTo = value; return this; } public BigDecimal getFrtNotEqualTo() { return FrtNotEqualTo; } public SO_VInvQuery setFrtNotEqualTo(BigDecimal value) { this.FrtNotEqualTo = value; return this; } public ArrayList getFrtBetween() { return FrtBetween; } public SO_VInvQuery setFrtBetween(ArrayList value) { this.FrtBetween = value; return this; } public ArrayList getFrtIn() { return FrtIn; } public SO_VInvQuery setFrtIn(ArrayList value) { this.FrtIn = value; return this; } public BigDecimal getFrtTax() { return FrtTax; } public SO_VInvQuery setFrtTax(BigDecimal value) { this.FrtTax = value; return this; } public BigDecimal getFrtTaxGreaterThanOrEqualTo() { return FrtTaxGreaterThanOrEqualTo; } public SO_VInvQuery setFrtTaxGreaterThanOrEqualTo(BigDecimal value) { this.FrtTaxGreaterThanOrEqualTo = value; return this; } public BigDecimal getFrtTaxGreaterThan() { return FrtTaxGreaterThan; } public SO_VInvQuery setFrtTaxGreaterThan(BigDecimal value) { this.FrtTaxGreaterThan = value; return this; } public BigDecimal getFrtTaxLessThan() { return FrtTaxLessThan; } public SO_VInvQuery setFrtTaxLessThan(BigDecimal value) { this.FrtTaxLessThan = value; return this; } public BigDecimal getFrtTaxLessThanOrEqualTo() { return FrtTaxLessThanOrEqualTo; } public SO_VInvQuery setFrtTaxLessThanOrEqualTo(BigDecimal value) { this.FrtTaxLessThanOrEqualTo = value; return this; } public BigDecimal getFrtTaxNotEqualTo() { return FrtTaxNotEqualTo; } public SO_VInvQuery setFrtTaxNotEqualTo(BigDecimal value) { this.FrtTaxNotEqualTo = value; return this; } public ArrayList getFrtTaxBetween() { return FrtTaxBetween; } public SO_VInvQuery setFrtTaxBetween(ArrayList value) { this.FrtTaxBetween = value; return this; } public ArrayList getFrtTaxIn() { return FrtTaxIn; } public SO_VInvQuery setFrtTaxIn(ArrayList value) { this.FrtTaxIn = value; return this; } public Short getProHistoryNo() { return ProHistoryNo; } public SO_VInvQuery setProHistoryNo(Short value) { this.ProHistoryNo = value; return this; } public Short getProHistoryNoGreaterThanOrEqualTo() { return ProHistoryNoGreaterThanOrEqualTo; } public SO_VInvQuery setProHistoryNoGreaterThanOrEqualTo(Short value) { this.ProHistoryNoGreaterThanOrEqualTo = value; return this; } public Short getProHistoryNoGreaterThan() { return ProHistoryNoGreaterThan; } public SO_VInvQuery setProHistoryNoGreaterThan(Short value) { this.ProHistoryNoGreaterThan = value; return this; } public Short getProHistoryNoLessThan() { return ProHistoryNoLessThan; } public SO_VInvQuery setProHistoryNoLessThan(Short value) { this.ProHistoryNoLessThan = value; return this; } public Short getProHistoryNoLessThanOrEqualTo() { return ProHistoryNoLessThanOrEqualTo; } public SO_VInvQuery setProHistoryNoLessThanOrEqualTo(Short value) { this.ProHistoryNoLessThanOrEqualTo = value; return this; } public Short getProHistoryNoNotEqualTo() { return ProHistoryNoNotEqualTo; } public SO_VInvQuery setProHistoryNoNotEqualTo(Short value) { this.ProHistoryNoNotEqualTo = value; return this; } public ArrayList getProHistoryNoBetween() { return ProHistoryNoBetween; } public SO_VInvQuery setProHistoryNoBetween(ArrayList value) { this.ProHistoryNoBetween = value; return this; } public ArrayList getProHistoryNoIn() { return ProHistoryNoIn; } public SO_VInvQuery setProHistoryNoIn(ArrayList value) { this.ProHistoryNoIn = value; return this; } public Short getInvHistoryNo() { return InvHistoryNo; } public SO_VInvQuery setInvHistoryNo(Short value) { this.InvHistoryNo = value; return this; } public Short getInvHistoryNoGreaterThanOrEqualTo() { return InvHistoryNoGreaterThanOrEqualTo; } public SO_VInvQuery setInvHistoryNoGreaterThanOrEqualTo(Short value) { this.InvHistoryNoGreaterThanOrEqualTo = value; return this; } public Short getInvHistoryNoGreaterThan() { return InvHistoryNoGreaterThan; } public SO_VInvQuery setInvHistoryNoGreaterThan(Short value) { this.InvHistoryNoGreaterThan = value; return this; } public Short getInvHistoryNoLessThan() { return InvHistoryNoLessThan; } public SO_VInvQuery setInvHistoryNoLessThan(Short value) { this.InvHistoryNoLessThan = value; return this; } public Short getInvHistoryNoLessThanOrEqualTo() { return InvHistoryNoLessThanOrEqualTo; } public SO_VInvQuery setInvHistoryNoLessThanOrEqualTo(Short value) { this.InvHistoryNoLessThanOrEqualTo = value; return this; } public Short getInvHistoryNoNotEqualTo() { return InvHistoryNoNotEqualTo; } public SO_VInvQuery setInvHistoryNoNotEqualTo(Short value) { this.InvHistoryNoNotEqualTo = value; return this; } public ArrayList getInvHistoryNoBetween() { return InvHistoryNoBetween; } public SO_VInvQuery setInvHistoryNoBetween(ArrayList value) { this.InvHistoryNoBetween = value; return this; } public ArrayList getInvHistoryNoIn() { return InvHistoryNoIn; } public SO_VInvQuery setInvHistoryNoIn(ArrayList value) { this.InvHistoryNoIn = value; return this; } public String getProRunNo() { return ProRunNo; } public SO_VInvQuery setProRunNo(String value) { this.ProRunNo = value; return this; } public String getProRunNoStartsWith() { return ProRunNoStartsWith; } public SO_VInvQuery setProRunNoStartsWith(String value) { this.ProRunNoStartsWith = value; return this; } public String getProRunNoEndsWith() { return ProRunNoEndsWith; } public SO_VInvQuery setProRunNoEndsWith(String value) { this.ProRunNoEndsWith = value; return this; } public String getProRunNoContains() { return ProRunNoContains; } public SO_VInvQuery setProRunNoContains(String value) { this.ProRunNoContains = value; return this; } public String getProRunNoLike() { return ProRunNoLike; } public SO_VInvQuery setProRunNoLike(String value) { this.ProRunNoLike = value; return this; } public ArrayList getProRunNoBetween() { return ProRunNoBetween; } public SO_VInvQuery setProRunNoBetween(ArrayList value) { this.ProRunNoBetween = value; return this; } public ArrayList getProRunNoIn() { return ProRunNoIn; } public SO_VInvQuery setProRunNoIn(ArrayList value) { this.ProRunNoIn = value; return this; } public String getInvRunNo() { return InvRunNo; } public SO_VInvQuery setInvRunNo(String value) { this.InvRunNo = value; return this; } public String getInvRunNoStartsWith() { return InvRunNoStartsWith; } public SO_VInvQuery setInvRunNoStartsWith(String value) { this.InvRunNoStartsWith = value; return this; } public String getInvRunNoEndsWith() { return InvRunNoEndsWith; } public SO_VInvQuery setInvRunNoEndsWith(String value) { this.InvRunNoEndsWith = value; return this; } public String getInvRunNoContains() { return InvRunNoContains; } public SO_VInvQuery setInvRunNoContains(String value) { this.InvRunNoContains = value; return this; } public String getInvRunNoLike() { return InvRunNoLike; } public SO_VInvQuery setInvRunNoLike(String value) { this.InvRunNoLike = value; return this; } public ArrayList getInvRunNoBetween() { return InvRunNoBetween; } public SO_VInvQuery setInvRunNoBetween(ArrayList value) { this.InvRunNoBetween = value; return this; } public ArrayList getInvRunNoIn() { return InvRunNoIn; } public SO_VInvQuery setInvRunNoIn(ArrayList value) { this.InvRunNoIn = value; return this; } public Date getProDate() { return ProDate; } public SO_VInvQuery setProDate(Date value) { this.ProDate = value; return this; } public Date getProDateGreaterThanOrEqualTo() { return ProDateGreaterThanOrEqualTo; } public SO_VInvQuery setProDateGreaterThanOrEqualTo(Date value) { this.ProDateGreaterThanOrEqualTo = value; return this; } public Date getProDateGreaterThan() { return ProDateGreaterThan; } public SO_VInvQuery setProDateGreaterThan(Date value) { this.ProDateGreaterThan = value; return this; } public Date getProDateLessThan() { return ProDateLessThan; } public SO_VInvQuery setProDateLessThan(Date value) { this.ProDateLessThan = value; return this; } public Date getProDateLessThanOrEqualTo() { return ProDateLessThanOrEqualTo; } public SO_VInvQuery setProDateLessThanOrEqualTo(Date value) { this.ProDateLessThanOrEqualTo = value; return this; } public Date getProDateNotEqualTo() { return ProDateNotEqualTo; } public SO_VInvQuery setProDateNotEqualTo(Date value) { this.ProDateNotEqualTo = value; return this; } public ArrayList getProDateBetween() { return ProDateBetween; } public SO_VInvQuery setProDateBetween(ArrayList value) { this.ProDateBetween = value; return this; } public ArrayList getProDateIn() { return ProDateIn; } public SO_VInvQuery setProDateIn(ArrayList value) { this.ProDateIn = value; return this; } public Date getInvDate() { return InvDate; } public SO_VInvQuery setInvDate(Date value) { this.InvDate = value; return this; } public Date getInvDateGreaterThanOrEqualTo() { return InvDateGreaterThanOrEqualTo; } public SO_VInvQuery setInvDateGreaterThanOrEqualTo(Date value) { this.InvDateGreaterThanOrEqualTo = value; return this; } public Date getInvDateGreaterThan() { return InvDateGreaterThan; } public SO_VInvQuery setInvDateGreaterThan(Date value) { this.InvDateGreaterThan = value; return this; } public Date getInvDateLessThan() { return InvDateLessThan; } public SO_VInvQuery setInvDateLessThan(Date value) { this.InvDateLessThan = value; return this; } public Date getInvDateLessThanOrEqualTo() { return InvDateLessThanOrEqualTo; } public SO_VInvQuery setInvDateLessThanOrEqualTo(Date value) { this.InvDateLessThanOrEqualTo = value; return this; } public Date getInvDateNotEqualTo() { return InvDateNotEqualTo; } public SO_VInvQuery setInvDateNotEqualTo(Date value) { this.InvDateNotEqualTo = value; return this; } public ArrayList getInvDateBetween() { return InvDateBetween; } public SO_VInvQuery setInvDateBetween(ArrayList value) { this.InvDateBetween = value; return this; } public ArrayList getInvDateIn() { return InvDateIn; } public SO_VInvQuery setInvDateIn(ArrayList value) { this.InvDateIn = value; return this; } public String getInvoiceLineID() { return InvoiceLineID; } public SO_VInvQuery setInvoiceLineID(String value) { this.InvoiceLineID = value; return this; } public String getInvoiceLineIDStartsWith() { return InvoiceLineIDStartsWith; } public SO_VInvQuery setInvoiceLineIDStartsWith(String value) { this.InvoiceLineIDStartsWith = value; return this; } public String getInvoiceLineIDEndsWith() { return InvoiceLineIDEndsWith; } public SO_VInvQuery setInvoiceLineIDEndsWith(String value) { this.InvoiceLineIDEndsWith = value; return this; } public String getInvoiceLineIDContains() { return InvoiceLineIDContains; } public SO_VInvQuery setInvoiceLineIDContains(String value) { this.InvoiceLineIDContains = value; return this; } public String getInvoiceLineIDLike() { return InvoiceLineIDLike; } public SO_VInvQuery setInvoiceLineIDLike(String value) { this.InvoiceLineIDLike = value; return this; } public ArrayList getInvoiceLineIDBetween() { return InvoiceLineIDBetween; } public SO_VInvQuery setInvoiceLineIDBetween(ArrayList value) { this.InvoiceLineIDBetween = value; return this; } public ArrayList getInvoiceLineIDIn() { return InvoiceLineIDIn; } public SO_VInvQuery setInvoiceLineIDIn(ArrayList value) { this.InvoiceLineIDIn = value; return this; } public String getInventoryID() { return InventoryID; } public SO_VInvQuery setInventoryID(String value) { this.InventoryID = value; return this; } public String getInventoryIDStartsWith() { return InventoryIDStartsWith; } public SO_VInvQuery setInventoryIDStartsWith(String value) { this.InventoryIDStartsWith = value; return this; } public String getInventoryIDEndsWith() { return InventoryIDEndsWith; } public SO_VInvQuery setInventoryIDEndsWith(String value) { this.InventoryIDEndsWith = value; return this; } public String getInventoryIDContains() { return InventoryIDContains; } public SO_VInvQuery setInventoryIDContains(String value) { this.InventoryIDContains = value; return this; } public String getInventoryIDLike() { return InventoryIDLike; } public SO_VInvQuery setInventoryIDLike(String value) { this.InventoryIDLike = value; return this; } public ArrayList getInventoryIDBetween() { return InventoryIDBetween; } public SO_VInvQuery setInventoryIDBetween(ArrayList value) { this.InventoryIDBetween = value; return this; } public ArrayList getInventoryIDIn() { return InventoryIDIn; } public SO_VInvQuery setInventoryIDIn(ArrayList value) { this.InventoryIDIn = value; return this; } public String getPartNo() { return PartNo; } public SO_VInvQuery setPartNo(String value) { this.PartNo = value; return this; } public String getPartNoStartsWith() { return PartNoStartsWith; } public SO_VInvQuery setPartNoStartsWith(String value) { this.PartNoStartsWith = value; return this; } public String getPartNoEndsWith() { return PartNoEndsWith; } public SO_VInvQuery setPartNoEndsWith(String value) { this.PartNoEndsWith = value; return this; } public String getPartNoContains() { return PartNoContains; } public SO_VInvQuery setPartNoContains(String value) { this.PartNoContains = value; return this; } public String getPartNoLike() { return PartNoLike; } public SO_VInvQuery setPartNoLike(String value) { this.PartNoLike = value; return this; } public ArrayList getPartNoBetween() { return PartNoBetween; } public SO_VInvQuery setPartNoBetween(ArrayList value) { this.PartNoBetween = value; return this; } public ArrayList getPartNoIn() { return PartNoIn; } public SO_VInvQuery setPartNoIn(ArrayList value) { this.PartNoIn = value; return this; } public String getDescription() { return Description; } public SO_VInvQuery setDescription(String value) { this.Description = value; return this; } public String getDescriptionStartsWith() { return DescriptionStartsWith; } public SO_VInvQuery setDescriptionStartsWith(String value) { this.DescriptionStartsWith = value; return this; } public String getDescriptionEndsWith() { return DescriptionEndsWith; } public SO_VInvQuery setDescriptionEndsWith(String value) { this.DescriptionEndsWith = value; return this; } public String getDescriptionContains() { return DescriptionContains; } public SO_VInvQuery setDescriptionContains(String value) { this.DescriptionContains = value; return this; } public String getDescriptionLike() { return DescriptionLike; } public SO_VInvQuery setDescriptionLike(String value) { this.DescriptionLike = value; return this; } public ArrayList getDescriptionBetween() { return DescriptionBetween; } public SO_VInvQuery setDescriptionBetween(ArrayList value) { this.DescriptionBetween = value; return this; } public ArrayList getDescriptionIn() { return DescriptionIn; } public SO_VInvQuery setDescriptionIn(ArrayList value) { this.DescriptionIn = value; return this; } public String getJobID() { return JobID; } public SO_VInvQuery setJobID(String value) { this.JobID = value; return this; } public String getJobIDStartsWith() { return JobIDStartsWith; } public SO_VInvQuery setJobIDStartsWith(String value) { this.JobIDStartsWith = value; return this; } public String getJobIDEndsWith() { return JobIDEndsWith; } public SO_VInvQuery setJobIDEndsWith(String value) { this.JobIDEndsWith = value; return this; } public String getJobIDContains() { return JobIDContains; } public SO_VInvQuery setJobIDContains(String value) { this.JobIDContains = value; return this; } public String getJobIDLike() { return JobIDLike; } public SO_VInvQuery setJobIDLike(String value) { this.JobIDLike = value; return this; } public ArrayList getJobIDBetween() { return JobIDBetween; } public SO_VInvQuery setJobIDBetween(ArrayList value) { this.JobIDBetween = value; return this; } public ArrayList getJobIDIn() { return JobIDIn; } public SO_VInvQuery setJobIDIn(ArrayList value) { this.JobIDIn = value; return this; } public BigDecimal getCostIn() { return CostIn; } public SO_VInvQuery setCostIn(BigDecimal value) { this.CostIn = value; return this; } public BigDecimal getCostInGreaterThanOrEqualTo() { return CostInGreaterThanOrEqualTo; } public SO_VInvQuery setCostInGreaterThanOrEqualTo(BigDecimal value) { this.CostInGreaterThanOrEqualTo = value; return this; } public BigDecimal getCostInGreaterThan() { return CostInGreaterThan; } public SO_VInvQuery setCostInGreaterThan(BigDecimal value) { this.CostInGreaterThan = value; return this; } public BigDecimal getCostInLessThan() { return CostInLessThan; } public SO_VInvQuery setCostInLessThan(BigDecimal value) { this.CostInLessThan = value; return this; } public BigDecimal getCostInLessThanOrEqualTo() { return CostInLessThanOrEqualTo; } public SO_VInvQuery setCostInLessThanOrEqualTo(BigDecimal value) { this.CostInLessThanOrEqualTo = value; return this; } public BigDecimal getCostInNotEqualTo() { return CostInNotEqualTo; } public SO_VInvQuery setCostInNotEqualTo(BigDecimal value) { this.CostInNotEqualTo = value; return this; } public ArrayList getCostInBetween() { return CostInBetween; } public SO_VInvQuery setCostInBetween(ArrayList value) { this.CostInBetween = value; return this; } public ArrayList getCostInIn() { return CostInIn; } public SO_VInvQuery setCostInIn(ArrayList value) { this.CostInIn = value; return this; } public BigDecimal getQuantityThisDel() { return QuantityThisDel; } public SO_VInvQuery setQuantityThisDel(BigDecimal value) { this.QuantityThisDel = value; return this; } public BigDecimal getQuantityThisDelGreaterThanOrEqualTo() { return QuantityThisDelGreaterThanOrEqualTo; } public SO_VInvQuery setQuantityThisDelGreaterThanOrEqualTo(BigDecimal value) { this.QuantityThisDelGreaterThanOrEqualTo = value; return this; } public BigDecimal getQuantityThisDelGreaterThan() { return QuantityThisDelGreaterThan; } public SO_VInvQuery setQuantityThisDelGreaterThan(BigDecimal value) { this.QuantityThisDelGreaterThan = value; return this; } public BigDecimal getQuantityThisDelLessThan() { return QuantityThisDelLessThan; } public SO_VInvQuery setQuantityThisDelLessThan(BigDecimal value) { this.QuantityThisDelLessThan = value; return this; } public BigDecimal getQuantityThisDelLessThanOrEqualTo() { return QuantityThisDelLessThanOrEqualTo; } public SO_VInvQuery setQuantityThisDelLessThanOrEqualTo(BigDecimal value) { this.QuantityThisDelLessThanOrEqualTo = value; return this; } public BigDecimal getQuantityThisDelNotEqualTo() { return QuantityThisDelNotEqualTo; } public SO_VInvQuery setQuantityThisDelNotEqualTo(BigDecimal value) { this.QuantityThisDelNotEqualTo = value; return this; } public ArrayList getQuantityThisDelBetween() { return QuantityThisDelBetween; } public SO_VInvQuery setQuantityThisDelBetween(ArrayList value) { this.QuantityThisDelBetween = value; return this; } public ArrayList getQuantityThisDelIn() { return QuantityThisDelIn; } public SO_VInvQuery setQuantityThisDelIn(ArrayList value) { this.QuantityThisDelIn = value; return this; } public BigDecimal getCurrentLineTotal() { return CurrentLineTotal; } public SO_VInvQuery setCurrentLineTotal(BigDecimal value) { this.CurrentLineTotal = value; return this; } public BigDecimal getCurrentLineTotalGreaterThanOrEqualTo() { return CurrentLineTotalGreaterThanOrEqualTo; } public SO_VInvQuery setCurrentLineTotalGreaterThanOrEqualTo(BigDecimal value) { this.CurrentLineTotalGreaterThanOrEqualTo = value; return this; } public BigDecimal getCurrentLineTotalGreaterThan() { return CurrentLineTotalGreaterThan; } public SO_VInvQuery setCurrentLineTotalGreaterThan(BigDecimal value) { this.CurrentLineTotalGreaterThan = value; return this; } public BigDecimal getCurrentLineTotalLessThan() { return CurrentLineTotalLessThan; } public SO_VInvQuery setCurrentLineTotalLessThan(BigDecimal value) { this.CurrentLineTotalLessThan = value; return this; } public BigDecimal getCurrentLineTotalLessThanOrEqualTo() { return CurrentLineTotalLessThanOrEqualTo; } public SO_VInvQuery setCurrentLineTotalLessThanOrEqualTo(BigDecimal value) { this.CurrentLineTotalLessThanOrEqualTo = value; return this; } public BigDecimal getCurrentLineTotalNotEqualTo() { return CurrentLineTotalNotEqualTo; } public SO_VInvQuery setCurrentLineTotalNotEqualTo(BigDecimal value) { this.CurrentLineTotalNotEqualTo = value; return this; } public ArrayList getCurrentLineTotalBetween() { return CurrentLineTotalBetween; } public SO_VInvQuery setCurrentLineTotalBetween(ArrayList value) { this.CurrentLineTotalBetween = value; return this; } public ArrayList getCurrentLineTotalIn() { return CurrentLineTotalIn; } public SO_VInvQuery setCurrentLineTotalIn(ArrayList value) { this.CurrentLineTotalIn = value; return this; } public BigDecimal getTaxToCharge() { return TaxToCharge; } public SO_VInvQuery setTaxToCharge(BigDecimal value) { this.TaxToCharge = value; return this; } public BigDecimal getTaxToChargeGreaterThanOrEqualTo() { return TaxToChargeGreaterThanOrEqualTo; } public SO_VInvQuery setTaxToChargeGreaterThanOrEqualTo(BigDecimal value) { this.TaxToChargeGreaterThanOrEqualTo = value; return this; } public BigDecimal getTaxToChargeGreaterThan() { return TaxToChargeGreaterThan; } public SO_VInvQuery setTaxToChargeGreaterThan(BigDecimal value) { this.TaxToChargeGreaterThan = value; return this; } public BigDecimal getTaxToChargeLessThan() { return TaxToChargeLessThan; } public SO_VInvQuery setTaxToChargeLessThan(BigDecimal value) { this.TaxToChargeLessThan = value; return this; } public BigDecimal getTaxToChargeLessThanOrEqualTo() { return TaxToChargeLessThanOrEqualTo; } public SO_VInvQuery setTaxToChargeLessThanOrEqualTo(BigDecimal value) { this.TaxToChargeLessThanOrEqualTo = value; return this; } public BigDecimal getTaxToChargeNotEqualTo() { return TaxToChargeNotEqualTo; } public SO_VInvQuery setTaxToChargeNotEqualTo(BigDecimal value) { this.TaxToChargeNotEqualTo = value; return this; } public ArrayList getTaxToChargeBetween() { return TaxToChargeBetween; } public SO_VInvQuery setTaxToChargeBetween(ArrayList value) { this.TaxToChargeBetween = value; return this; } public ArrayList getTaxToChargeIn() { return TaxToChargeIn; } public SO_VInvQuery setTaxToChargeIn(ArrayList value) { this.TaxToChargeIn = value; return this; } public BigDecimal getTaxPaid() { return TaxPaid; } public SO_VInvQuery setTaxPaid(BigDecimal value) { this.TaxPaid = value; return this; } public BigDecimal getTaxPaidGreaterThanOrEqualTo() { return TaxPaidGreaterThanOrEqualTo; } public SO_VInvQuery setTaxPaidGreaterThanOrEqualTo(BigDecimal value) { this.TaxPaidGreaterThanOrEqualTo = value; return this; } public BigDecimal getTaxPaidGreaterThan() { return TaxPaidGreaterThan; } public SO_VInvQuery setTaxPaidGreaterThan(BigDecimal value) { this.TaxPaidGreaterThan = value; return this; } public BigDecimal getTaxPaidLessThan() { return TaxPaidLessThan; } public SO_VInvQuery setTaxPaidLessThan(BigDecimal value) { this.TaxPaidLessThan = value; return this; } public BigDecimal getTaxPaidLessThanOrEqualTo() { return TaxPaidLessThanOrEqualTo; } public SO_VInvQuery setTaxPaidLessThanOrEqualTo(BigDecimal value) { this.TaxPaidLessThanOrEqualTo = value; return this; } public BigDecimal getTaxPaidNotEqualTo() { return TaxPaidNotEqualTo; } public SO_VInvQuery setTaxPaidNotEqualTo(BigDecimal value) { this.TaxPaidNotEqualTo = value; return this; } public ArrayList getTaxPaidBetween() { return TaxPaidBetween; } public SO_VInvQuery setTaxPaidBetween(ArrayList value) { this.TaxPaidBetween = value; return this; } public ArrayList getTaxPaidIn() { return TaxPaidIn; } public SO_VInvQuery setTaxPaidIn(ArrayList value) { this.TaxPaidIn = value; return this; } public Short getDecimalPlaces() { return DecimalPlaces; } public SO_VInvQuery setDecimalPlaces(Short value) { this.DecimalPlaces = value; return this; } public Short getDecimalPlacesGreaterThanOrEqualTo() { return DecimalPlacesGreaterThanOrEqualTo; } public SO_VInvQuery setDecimalPlacesGreaterThanOrEqualTo(Short value) { this.DecimalPlacesGreaterThanOrEqualTo = value; return this; } public Short getDecimalPlacesGreaterThan() { return DecimalPlacesGreaterThan; } public SO_VInvQuery setDecimalPlacesGreaterThan(Short value) { this.DecimalPlacesGreaterThan = value; return this; } public Short getDecimalPlacesLessThan() { return DecimalPlacesLessThan; } public SO_VInvQuery setDecimalPlacesLessThan(Short value) { this.DecimalPlacesLessThan = value; return this; } public Short getDecimalPlacesLessThanOrEqualTo() { return DecimalPlacesLessThanOrEqualTo; } public SO_VInvQuery setDecimalPlacesLessThanOrEqualTo(Short value) { this.DecimalPlacesLessThanOrEqualTo = value; return this; } public Short getDecimalPlacesNotEqualTo() { return DecimalPlacesNotEqualTo; } public SO_VInvQuery setDecimalPlacesNotEqualTo(Short value) { this.DecimalPlacesNotEqualTo = value; return this; } public ArrayList getDecimalPlacesBetween() { return DecimalPlacesBetween; } public SO_VInvQuery setDecimalPlacesBetween(ArrayList value) { this.DecimalPlacesBetween = value; return this; } public ArrayList getDecimalPlacesIn() { return DecimalPlacesIn; } public SO_VInvQuery setDecimalPlacesIn(ArrayList value) { this.DecimalPlacesIn = value; return this; } public String getTaxID() { return TaxID; } public SO_VInvQuery setTaxID(String value) { this.TaxID = value; return this; } public String getTaxIDStartsWith() { return TaxIDStartsWith; } public SO_VInvQuery setTaxIDStartsWith(String value) { this.TaxIDStartsWith = value; return this; } public String getTaxIDEndsWith() { return TaxIDEndsWith; } public SO_VInvQuery setTaxIDEndsWith(String value) { this.TaxIDEndsWith = value; return this; } public String getTaxIDContains() { return TaxIDContains; } public SO_VInvQuery setTaxIDContains(String value) { this.TaxIDContains = value; return this; } public String getTaxIDLike() { return TaxIDLike; } public SO_VInvQuery setTaxIDLike(String value) { this.TaxIDLike = value; return this; } public ArrayList getTaxIDBetween() { return TaxIDBetween; } public SO_VInvQuery setTaxIDBetween(ArrayList value) { this.TaxIDBetween = value; return this; } public ArrayList getTaxIDIn() { return TaxIDIn; } public SO_VInvQuery setTaxIDIn(ArrayList value) { this.TaxIDIn = value; return this; } public Short getPhysicalItem() { return PhysicalItem; } public SO_VInvQuery setPhysicalItem(Short value) { this.PhysicalItem = value; return this; } public Short getPhysicalItemGreaterThanOrEqualTo() { return PhysicalItemGreaterThanOrEqualTo; } public SO_VInvQuery setPhysicalItemGreaterThanOrEqualTo(Short value) { this.PhysicalItemGreaterThanOrEqualTo = value; return this; } public Short getPhysicalItemGreaterThan() { return PhysicalItemGreaterThan; } public SO_VInvQuery setPhysicalItemGreaterThan(Short value) { this.PhysicalItemGreaterThan = value; return this; } public Short getPhysicalItemLessThan() { return PhysicalItemLessThan; } public SO_VInvQuery setPhysicalItemLessThan(Short value) { this.PhysicalItemLessThan = value; return this; } public Short getPhysicalItemLessThanOrEqualTo() { return PhysicalItemLessThanOrEqualTo; } public SO_VInvQuery setPhysicalItemLessThanOrEqualTo(Short value) { this.PhysicalItemLessThanOrEqualTo = value; return this; } public Short getPhysicalItemNotEqualTo() { return PhysicalItemNotEqualTo; } public SO_VInvQuery setPhysicalItemNotEqualTo(Short value) { this.PhysicalItemNotEqualTo = value; return this; } public ArrayList getPhysicalItemBetween() { return PhysicalItemBetween; } public SO_VInvQuery setPhysicalItemBetween(ArrayList value) { this.PhysicalItemBetween = value; return this; } public ArrayList getPhysicalItemIn() { return PhysicalItemIn; } public SO_VInvQuery setPhysicalItemIn(ArrayList value) { this.PhysicalItemIn = value; return this; } public Boolean isNonStock() { return NonStock; } public SO_VInvQuery setNonStock(Boolean value) { this.NonStock = value; return this; } public String getClassDescription() { return ClassDescription; } public SO_VInvQuery setClassDescription(String value) { this.ClassDescription = value; return this; } public String getClassDescriptionStartsWith() { return ClassDescriptionStartsWith; } public SO_VInvQuery setClassDescriptionStartsWith(String value) { this.ClassDescriptionStartsWith = value; return this; } public String getClassDescriptionEndsWith() { return ClassDescriptionEndsWith; } public SO_VInvQuery setClassDescriptionEndsWith(String value) { this.ClassDescriptionEndsWith = value; return this; } public String getClassDescriptionContains() { return ClassDescriptionContains; } public SO_VInvQuery setClassDescriptionContains(String value) { this.ClassDescriptionContains = value; return this; } public String getClassDescriptionLike() { return ClassDescriptionLike; } public SO_VInvQuery setClassDescriptionLike(String value) { this.ClassDescriptionLike = value; return this; } public ArrayList getClassDescriptionBetween() { return ClassDescriptionBetween; } public SO_VInvQuery setClassDescriptionBetween(ArrayList value) { this.ClassDescriptionBetween = value; return this; } public ArrayList getClassDescriptionIn() { return ClassDescriptionIn; } public SO_VInvQuery setClassDescriptionIn(ArrayList value) { this.ClassDescriptionIn = value; return this; } public String getDebtorID() { return DebtorID; } public SO_VInvQuery setDebtorID(String value) { this.DebtorID = value; return this; } public String getDebtorIDStartsWith() { return DebtorIDStartsWith; } public SO_VInvQuery setDebtorIDStartsWith(String value) { this.DebtorIDStartsWith = value; return this; } public String getDebtorIDEndsWith() { return DebtorIDEndsWith; } public SO_VInvQuery setDebtorIDEndsWith(String value) { this.DebtorIDEndsWith = value; return this; } public String getDebtorIDContains() { return DebtorIDContains; } public SO_VInvQuery setDebtorIDContains(String value) { this.DebtorIDContains = value; return this; } public String getDebtorIDLike() { return DebtorIDLike; } public SO_VInvQuery setDebtorIDLike(String value) { this.DebtorIDLike = value; return this; } public ArrayList getDebtorIDBetween() { return DebtorIDBetween; } public SO_VInvQuery setDebtorIDBetween(ArrayList value) { this.DebtorIDBetween = value; return this; } public ArrayList getDebtorIDIn() { return DebtorIDIn; } public SO_VInvQuery setDebtorIDIn(ArrayList value) { this.DebtorIDIn = value; return this; } public String getAccountNo() { return AccountNo; } public SO_VInvQuery setAccountNo(String value) { this.AccountNo = value; return this; } public String getAccountNoStartsWith() { return AccountNoStartsWith; } public SO_VInvQuery setAccountNoStartsWith(String value) { this.AccountNoStartsWith = value; return this; } public String getAccountNoEndsWith() { return AccountNoEndsWith; } public SO_VInvQuery setAccountNoEndsWith(String value) { this.AccountNoEndsWith = value; return this; } public String getAccountNoContains() { return AccountNoContains; } public SO_VInvQuery setAccountNoContains(String value) { this.AccountNoContains = value; return this; } public String getAccountNoLike() { return AccountNoLike; } public SO_VInvQuery setAccountNoLike(String value) { this.AccountNoLike = value; return this; } public ArrayList getAccountNoBetween() { return AccountNoBetween; } public SO_VInvQuery setAccountNoBetween(ArrayList value) { this.AccountNoBetween = value; return this; } public ArrayList getAccountNoIn() { return AccountNoIn; } public SO_VInvQuery setAccountNoIn(ArrayList value) { this.AccountNoIn = value; return this; } public String getName() { return Name; } public SO_VInvQuery setName(String value) { this.Name = value; return this; } public String getNameStartsWith() { return NameStartsWith; } public SO_VInvQuery setNameStartsWith(String value) { this.NameStartsWith = value; return this; } public String getNameEndsWith() { return NameEndsWith; } public SO_VInvQuery setNameEndsWith(String value) { this.NameEndsWith = value; return this; } public String getNameContains() { return NameContains; } public SO_VInvQuery setNameContains(String value) { this.NameContains = value; return this; } public String getNameLike() { return NameLike; } public SO_VInvQuery setNameLike(String value) { this.NameLike = value; return this; } public ArrayList getNameBetween() { return NameBetween; } public SO_VInvQuery setNameBetween(ArrayList value) { this.NameBetween = value; return this; } public ArrayList getNameIn() { return NameIn; } public SO_VInvQuery setNameIn(ArrayList value) { this.NameIn = value; return this; } public BigDecimal getLineCost() { return LineCost; } public SO_VInvQuery setLineCost(BigDecimal value) { this.LineCost = value; return this; } public BigDecimal getLineCostGreaterThanOrEqualTo() { return LineCostGreaterThanOrEqualTo; } public SO_VInvQuery setLineCostGreaterThanOrEqualTo(BigDecimal value) { this.LineCostGreaterThanOrEqualTo = value; return this; } public BigDecimal getLineCostGreaterThan() { return LineCostGreaterThan; } public SO_VInvQuery setLineCostGreaterThan(BigDecimal value) { this.LineCostGreaterThan = value; return this; } public BigDecimal getLineCostLessThan() { return LineCostLessThan; } public SO_VInvQuery setLineCostLessThan(BigDecimal value) { this.LineCostLessThan = value; return this; } public BigDecimal getLineCostLessThanOrEqualTo() { return LineCostLessThanOrEqualTo; } public SO_VInvQuery setLineCostLessThanOrEqualTo(BigDecimal value) { this.LineCostLessThanOrEqualTo = value; return this; } public BigDecimal getLineCostNotEqualTo() { return LineCostNotEqualTo; } public SO_VInvQuery setLineCostNotEqualTo(BigDecimal value) { this.LineCostNotEqualTo = value; return this; } public ArrayList getLineCostBetween() { return LineCostBetween; } public SO_VInvQuery setLineCostBetween(ArrayList value) { this.LineCostBetween = value; return this; } public ArrayList getLineCostIn() { return LineCostIn; } public SO_VInvQuery setLineCostIn(ArrayList value) { this.LineCostIn = value; return this; } public String getCat1Description() { return Cat1Description; } public SO_VInvQuery setCat1Description(String value) { this.Cat1Description = value; return this; } public String getCat1DescriptionStartsWith() { return Cat1DescriptionStartsWith; } public SO_VInvQuery setCat1DescriptionStartsWith(String value) { this.Cat1DescriptionStartsWith = value; return this; } public String getCat1DescriptionEndsWith() { return Cat1DescriptionEndsWith; } public SO_VInvQuery setCat1DescriptionEndsWith(String value) { this.Cat1DescriptionEndsWith = value; return this; } public String getCat1DescriptionContains() { return Cat1DescriptionContains; } public SO_VInvQuery setCat1DescriptionContains(String value) { this.Cat1DescriptionContains = value; return this; } public String getCat1DescriptionLike() { return Cat1DescriptionLike; } public SO_VInvQuery setCat1DescriptionLike(String value) { this.Cat1DescriptionLike = value; return this; } public ArrayList getCat1DescriptionBetween() { return Cat1DescriptionBetween; } public SO_VInvQuery setCat1DescriptionBetween(ArrayList value) { this.Cat1DescriptionBetween = value; return this; } public ArrayList getCat1DescriptionIn() { return Cat1DescriptionIn; } public SO_VInvQuery setCat1DescriptionIn(ArrayList value) { this.Cat1DescriptionIn = value; return this; } public String getCat2Description() { return Cat2Description; } public SO_VInvQuery setCat2Description(String value) { this.Cat2Description = value; return this; } public String getCat2DescriptionStartsWith() { return Cat2DescriptionStartsWith; } public SO_VInvQuery setCat2DescriptionStartsWith(String value) { this.Cat2DescriptionStartsWith = value; return this; } public String getCat2DescriptionEndsWith() { return Cat2DescriptionEndsWith; } public SO_VInvQuery setCat2DescriptionEndsWith(String value) { this.Cat2DescriptionEndsWith = value; return this; } public String getCat2DescriptionContains() { return Cat2DescriptionContains; } public SO_VInvQuery setCat2DescriptionContains(String value) { this.Cat2DescriptionContains = value; return this; } public String getCat2DescriptionLike() { return Cat2DescriptionLike; } public SO_VInvQuery setCat2DescriptionLike(String value) { this.Cat2DescriptionLike = value; return this; } public ArrayList getCat2DescriptionBetween() { return Cat2DescriptionBetween; } public SO_VInvQuery setCat2DescriptionBetween(ArrayList value) { this.Cat2DescriptionBetween = value; return this; } public ArrayList getCat2DescriptionIn() { return Cat2DescriptionIn; } public SO_VInvQuery setCat2DescriptionIn(ArrayList value) { this.Cat2DescriptionIn = value; return this; } public String getCat3Description() { return Cat3Description; } public SO_VInvQuery setCat3Description(String value) { this.Cat3Description = value; return this; } public String getCat3DescriptionStartsWith() { return Cat3DescriptionStartsWith; } public SO_VInvQuery setCat3DescriptionStartsWith(String value) { this.Cat3DescriptionStartsWith = value; return this; } public String getCat3DescriptionEndsWith() { return Cat3DescriptionEndsWith; } public SO_VInvQuery setCat3DescriptionEndsWith(String value) { this.Cat3DescriptionEndsWith = value; return this; } public String getCat3DescriptionContains() { return Cat3DescriptionContains; } public SO_VInvQuery setCat3DescriptionContains(String value) { this.Cat3DescriptionContains = value; return this; } public String getCat3DescriptionLike() { return Cat3DescriptionLike; } public SO_VInvQuery setCat3DescriptionLike(String value) { this.Cat3DescriptionLike = value; return this; } public ArrayList getCat3DescriptionBetween() { return Cat3DescriptionBetween; } public SO_VInvQuery setCat3DescriptionBetween(ArrayList value) { this.Cat3DescriptionBetween = value; return this; } public ArrayList getCat3DescriptionIn() { return Cat3DescriptionIn; } public SO_VInvQuery setCat3DescriptionIn(ArrayList value) { this.Cat3DescriptionIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @Route(Path="/Queries/SY_Branch", Verbs="GET") @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class SY_BranchQuery extends QueryDb implements IReturn> { public String BranchID = null; public String BranchIDStartsWith = null; public String BranchIDEndsWith = null; public String BranchIDContains = null; public String BranchIDLike = null; public ArrayList BranchIDBetween = null; public ArrayList BranchIDIn = null; public String Description = null; public String DescriptionStartsWith = null; public String DescriptionEndsWith = null; public String DescriptionContains = null; public String DescriptionLike = null; public ArrayList DescriptionBetween = null; public ArrayList DescriptionIn = null; public String LedgerMask = null; public String LedgerMaskStartsWith = null; public String LedgerMaskEndsWith = null; public String LedgerMaskContains = null; public String LedgerMaskLike = null; public ArrayList LedgerMaskBetween = null; public ArrayList LedgerMaskIn = null; public Short DefaultBranch = null; public Short DefaultBranchGreaterThanOrEqualTo = null; public Short DefaultBranchGreaterThan = null; public Short DefaultBranchLessThan = null; public Short DefaultBranchLessThanOrEqualTo = null; public Short DefaultBranchNotEqualTo = null; public ArrayList DefaultBranchBetween = null; public ArrayList DefaultBranchIn = null; public String getBranchID() { return BranchID; } public SY_BranchQuery setBranchID(String value) { this.BranchID = value; return this; } public String getBranchIDStartsWith() { return BranchIDStartsWith; } public SY_BranchQuery setBranchIDStartsWith(String value) { this.BranchIDStartsWith = value; return this; } public String getBranchIDEndsWith() { return BranchIDEndsWith; } public SY_BranchQuery setBranchIDEndsWith(String value) { this.BranchIDEndsWith = value; return this; } public String getBranchIDContains() { return BranchIDContains; } public SY_BranchQuery setBranchIDContains(String value) { this.BranchIDContains = value; return this; } public String getBranchIDLike() { return BranchIDLike; } public SY_BranchQuery setBranchIDLike(String value) { this.BranchIDLike = value; return this; } public ArrayList getBranchIDBetween() { return BranchIDBetween; } public SY_BranchQuery setBranchIDBetween(ArrayList value) { this.BranchIDBetween = value; return this; } public ArrayList getBranchIDIn() { return BranchIDIn; } public SY_BranchQuery setBranchIDIn(ArrayList value) { this.BranchIDIn = value; return this; } public String getDescription() { return Description; } public SY_BranchQuery setDescription(String value) { this.Description = value; return this; } public String getDescriptionStartsWith() { return DescriptionStartsWith; } public SY_BranchQuery setDescriptionStartsWith(String value) { this.DescriptionStartsWith = value; return this; } public String getDescriptionEndsWith() { return DescriptionEndsWith; } public SY_BranchQuery setDescriptionEndsWith(String value) { this.DescriptionEndsWith = value; return this; } public String getDescriptionContains() { return DescriptionContains; } public SY_BranchQuery setDescriptionContains(String value) { this.DescriptionContains = value; return this; } public String getDescriptionLike() { return DescriptionLike; } public SY_BranchQuery setDescriptionLike(String value) { this.DescriptionLike = value; return this; } public ArrayList getDescriptionBetween() { return DescriptionBetween; } public SY_BranchQuery setDescriptionBetween(ArrayList value) { this.DescriptionBetween = value; return this; } public ArrayList getDescriptionIn() { return DescriptionIn; } public SY_BranchQuery setDescriptionIn(ArrayList value) { this.DescriptionIn = value; return this; } public String getLedgerMask() { return LedgerMask; } public SY_BranchQuery setLedgerMask(String value) { this.LedgerMask = value; return this; } public String getLedgerMaskStartsWith() { return LedgerMaskStartsWith; } public SY_BranchQuery setLedgerMaskStartsWith(String value) { this.LedgerMaskStartsWith = value; return this; } public String getLedgerMaskEndsWith() { return LedgerMaskEndsWith; } public SY_BranchQuery setLedgerMaskEndsWith(String value) { this.LedgerMaskEndsWith = value; return this; } public String getLedgerMaskContains() { return LedgerMaskContains; } public SY_BranchQuery setLedgerMaskContains(String value) { this.LedgerMaskContains = value; return this; } public String getLedgerMaskLike() { return LedgerMaskLike; } public SY_BranchQuery setLedgerMaskLike(String value) { this.LedgerMaskLike = value; return this; } public ArrayList getLedgerMaskBetween() { return LedgerMaskBetween; } public SY_BranchQuery setLedgerMaskBetween(ArrayList value) { this.LedgerMaskBetween = value; return this; } public ArrayList getLedgerMaskIn() { return LedgerMaskIn; } public SY_BranchQuery setLedgerMaskIn(ArrayList value) { this.LedgerMaskIn = value; return this; } public Short getDefaultBranch() { return DefaultBranch; } public SY_BranchQuery setDefaultBranch(Short value) { this.DefaultBranch = value; return this; } public Short getDefaultBranchGreaterThanOrEqualTo() { return DefaultBranchGreaterThanOrEqualTo; } public SY_BranchQuery setDefaultBranchGreaterThanOrEqualTo(Short value) { this.DefaultBranchGreaterThanOrEqualTo = value; return this; } public Short getDefaultBranchGreaterThan() { return DefaultBranchGreaterThan; } public SY_BranchQuery setDefaultBranchGreaterThan(Short value) { this.DefaultBranchGreaterThan = value; return this; } public Short getDefaultBranchLessThan() { return DefaultBranchLessThan; } public SY_BranchQuery setDefaultBranchLessThan(Short value) { this.DefaultBranchLessThan = value; return this; } public Short getDefaultBranchLessThanOrEqualTo() { return DefaultBranchLessThanOrEqualTo; } public SY_BranchQuery setDefaultBranchLessThanOrEqualTo(Short value) { this.DefaultBranchLessThanOrEqualTo = value; return this; } public Short getDefaultBranchNotEqualTo() { return DefaultBranchNotEqualTo; } public SY_BranchQuery setDefaultBranchNotEqualTo(Short value) { this.DefaultBranchNotEqualTo = value; return this; } public ArrayList getDefaultBranchBetween() { return DefaultBranchBetween; } public SY_BranchQuery setDefaultBranchBetween(ArrayList value) { this.DefaultBranchBetween = value; return this; } public ArrayList getDefaultBranchIn() { return DefaultBranchIn; } public SY_BranchQuery setDefaultBranchIn(ArrayList value) { this.DefaultBranchIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class SY_BusinessLogicQuery extends QueryDb implements IReturn> { public UUID RecID = null; public ArrayList RecIDIn = null; public String Description = null; public String DescriptionStartsWith = null; public String DescriptionEndsWith = null; public String DescriptionContains = null; public String DescriptionLike = null; public ArrayList DescriptionBetween = null; public ArrayList DescriptionIn = null; public String AssemblyFullName = null; public String AssemblyFullNameStartsWith = null; public String AssemblyFullNameEndsWith = null; public String AssemblyFullNameContains = null; public String AssemblyFullNameLike = null; public ArrayList AssemblyFullNameBetween = null; public ArrayList AssemblyFullNameIn = null; public String ClassName = null; public String ClassNameStartsWith = null; public String ClassNameEndsWith = null; public String ClassNameContains = null; public String ClassNameLike = null; public ArrayList ClassNameBetween = null; public ArrayList ClassNameIn = null; public Integer ItemNo = null; public Integer ItemNoGreaterThanOrEqualTo = null; public Integer ItemNoGreaterThan = null; public Integer ItemNoLessThan = null; public Integer ItemNoLessThanOrEqualTo = null; public Integer ItemNoNotEqualTo = null; public ArrayList ItemNoBetween = null; public ArrayList ItemNoIn = null; public ArrayList RowHash = null; public UUID getRecID() { return RecID; } public SY_BusinessLogicQuery setRecID(UUID value) { this.RecID = value; return this; } public ArrayList getRecIDIn() { return RecIDIn; } public SY_BusinessLogicQuery setRecIDIn(ArrayList value) { this.RecIDIn = value; return this; } public String getDescription() { return Description; } public SY_BusinessLogicQuery setDescription(String value) { this.Description = value; return this; } public String getDescriptionStartsWith() { return DescriptionStartsWith; } public SY_BusinessLogicQuery setDescriptionStartsWith(String value) { this.DescriptionStartsWith = value; return this; } public String getDescriptionEndsWith() { return DescriptionEndsWith; } public SY_BusinessLogicQuery setDescriptionEndsWith(String value) { this.DescriptionEndsWith = value; return this; } public String getDescriptionContains() { return DescriptionContains; } public SY_BusinessLogicQuery setDescriptionContains(String value) { this.DescriptionContains = value; return this; } public String getDescriptionLike() { return DescriptionLike; } public SY_BusinessLogicQuery setDescriptionLike(String value) { this.DescriptionLike = value; return this; } public ArrayList getDescriptionBetween() { return DescriptionBetween; } public SY_BusinessLogicQuery setDescriptionBetween(ArrayList value) { this.DescriptionBetween = value; return this; } public ArrayList getDescriptionIn() { return DescriptionIn; } public SY_BusinessLogicQuery setDescriptionIn(ArrayList value) { this.DescriptionIn = value; return this; } public String getAssemblyFullName() { return AssemblyFullName; } public SY_BusinessLogicQuery setAssemblyFullName(String value) { this.AssemblyFullName = value; return this; } public String getAssemblyFullNameStartsWith() { return AssemblyFullNameStartsWith; } public SY_BusinessLogicQuery setAssemblyFullNameStartsWith(String value) { this.AssemblyFullNameStartsWith = value; return this; } public String getAssemblyFullNameEndsWith() { return AssemblyFullNameEndsWith; } public SY_BusinessLogicQuery setAssemblyFullNameEndsWith(String value) { this.AssemblyFullNameEndsWith = value; return this; } public String getAssemblyFullNameContains() { return AssemblyFullNameContains; } public SY_BusinessLogicQuery setAssemblyFullNameContains(String value) { this.AssemblyFullNameContains = value; return this; } public String getAssemblyFullNameLike() { return AssemblyFullNameLike; } public SY_BusinessLogicQuery setAssemblyFullNameLike(String value) { this.AssemblyFullNameLike = value; return this; } public ArrayList getAssemblyFullNameBetween() { return AssemblyFullNameBetween; } public SY_BusinessLogicQuery setAssemblyFullNameBetween(ArrayList value) { this.AssemblyFullNameBetween = value; return this; } public ArrayList getAssemblyFullNameIn() { return AssemblyFullNameIn; } public SY_BusinessLogicQuery setAssemblyFullNameIn(ArrayList value) { this.AssemblyFullNameIn = value; return this; } public String getClassName() { return ClassName; } public SY_BusinessLogicQuery setClassName(String value) { this.ClassName = value; return this; } public String getClassNameStartsWith() { return ClassNameStartsWith; } public SY_BusinessLogicQuery setClassNameStartsWith(String value) { this.ClassNameStartsWith = value; return this; } public String getClassNameEndsWith() { return ClassNameEndsWith; } public SY_BusinessLogicQuery setClassNameEndsWith(String value) { this.ClassNameEndsWith = value; return this; } public String getClassNameContains() { return ClassNameContains; } public SY_BusinessLogicQuery setClassNameContains(String value) { this.ClassNameContains = value; return this; } public String getClassNameLike() { return ClassNameLike; } public SY_BusinessLogicQuery setClassNameLike(String value) { this.ClassNameLike = value; return this; } public ArrayList getClassNameBetween() { return ClassNameBetween; } public SY_BusinessLogicQuery setClassNameBetween(ArrayList value) { this.ClassNameBetween = value; return this; } public ArrayList getClassNameIn() { return ClassNameIn; } public SY_BusinessLogicQuery setClassNameIn(ArrayList value) { this.ClassNameIn = value; return this; } public Integer getItemNo() { return ItemNo; } public SY_BusinessLogicQuery setItemNo(Integer value) { this.ItemNo = value; return this; } public Integer getItemNoGreaterThanOrEqualTo() { return ItemNoGreaterThanOrEqualTo; } public SY_BusinessLogicQuery setItemNoGreaterThanOrEqualTo(Integer value) { this.ItemNoGreaterThanOrEqualTo = value; return this; } public Integer getItemNoGreaterThan() { return ItemNoGreaterThan; } public SY_BusinessLogicQuery setItemNoGreaterThan(Integer value) { this.ItemNoGreaterThan = value; return this; } public Integer getItemNoLessThan() { return ItemNoLessThan; } public SY_BusinessLogicQuery setItemNoLessThan(Integer value) { this.ItemNoLessThan = value; return this; } public Integer getItemNoLessThanOrEqualTo() { return ItemNoLessThanOrEqualTo; } public SY_BusinessLogicQuery setItemNoLessThanOrEqualTo(Integer value) { this.ItemNoLessThanOrEqualTo = value; return this; } public Integer getItemNoNotEqualTo() { return ItemNoNotEqualTo; } public SY_BusinessLogicQuery setItemNoNotEqualTo(Integer value) { this.ItemNoNotEqualTo = value; return this; } public ArrayList getItemNoBetween() { return ItemNoBetween; } public SY_BusinessLogicQuery setItemNoBetween(ArrayList value) { this.ItemNoBetween = value; return this; } public ArrayList getItemNoIn() { return ItemNoIn; } public SY_BusinessLogicQuery setItemNoIn(ArrayList value) { this.ItemNoIn = value; return this; } public ArrayList getRowHash() { return RowHash; } public SY_BusinessLogicQuery setRowHash(ArrayList value) { this.RowHash = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class SY_Custom_MaintenanceForm_TabsQuery extends QueryDb implements IReturn> { public UUID RecID = null; public ArrayList RecIDIn = null; public String Description = null; public String DescriptionStartsWith = null; public String DescriptionEndsWith = null; public String DescriptionContains = null; public String DescriptionLike = null; public ArrayList DescriptionBetween = null; public ArrayList DescriptionIn = null; public String SY_Forms_ClassName = null; public String SY_Forms_ClassNameStartsWith = null; public String SY_Forms_ClassNameEndsWith = null; public String SY_Forms_ClassNameContains = null; public String SY_Forms_ClassNameLike = null; public ArrayList SY_Forms_ClassNameBetween = null; public ArrayList SY_Forms_ClassNameIn = null; public String HostTabControlName = null; public String HostTabControlNameStartsWith = null; public String HostTabControlNameEndsWith = null; public String HostTabControlNameContains = null; public String HostTabControlNameLike = null; public ArrayList HostTabControlNameBetween = null; public ArrayList HostTabControlNameIn = null; public String TabKey = null; public String TabKeyStartsWith = null; public String TabKeyEndsWith = null; public String TabKeyContains = null; public String TabKeyLike = null; public ArrayList TabKeyBetween = null; public ArrayList TabKeyIn = null; public String TabCaption = null; public String TabCaptionStartsWith = null; public String TabCaptionEndsWith = null; public String TabCaptionContains = null; public String TabCaptionLike = null; public ArrayList TabCaptionBetween = null; public ArrayList TabCaptionIn = null; public String StoredProcedureName = null; public String StoredProcedureNameStartsWith = null; public String StoredProcedureNameEndsWith = null; public String StoredProcedureNameContains = null; public String StoredProcedureNameLike = null; public ArrayList StoredProcedureNameBetween = null; public ArrayList StoredProcedureNameIn = null; public Boolean IsEnabled = null; public ArrayList RowHash = null; public UUID getRecID() { return RecID; } public SY_Custom_MaintenanceForm_TabsQuery setRecID(UUID value) { this.RecID = value; return this; } public ArrayList getRecIDIn() { return RecIDIn; } public SY_Custom_MaintenanceForm_TabsQuery setRecIDIn(ArrayList value) { this.RecIDIn = value; return this; } public String getDescription() { return Description; } public SY_Custom_MaintenanceForm_TabsQuery setDescription(String value) { this.Description = value; return this; } public String getDescriptionStartsWith() { return DescriptionStartsWith; } public SY_Custom_MaintenanceForm_TabsQuery setDescriptionStartsWith(String value) { this.DescriptionStartsWith = value; return this; } public String getDescriptionEndsWith() { return DescriptionEndsWith; } public SY_Custom_MaintenanceForm_TabsQuery setDescriptionEndsWith(String value) { this.DescriptionEndsWith = value; return this; } public String getDescriptionContains() { return DescriptionContains; } public SY_Custom_MaintenanceForm_TabsQuery setDescriptionContains(String value) { this.DescriptionContains = value; return this; } public String getDescriptionLike() { return DescriptionLike; } public SY_Custom_MaintenanceForm_TabsQuery setDescriptionLike(String value) { this.DescriptionLike = value; return this; } public ArrayList getDescriptionBetween() { return DescriptionBetween; } public SY_Custom_MaintenanceForm_TabsQuery setDescriptionBetween(ArrayList value) { this.DescriptionBetween = value; return this; } public ArrayList getDescriptionIn() { return DescriptionIn; } public SY_Custom_MaintenanceForm_TabsQuery setDescriptionIn(ArrayList value) { this.DescriptionIn = value; return this; } public String getSyFormsClassName() { return SY_Forms_ClassName; } public SY_Custom_MaintenanceForm_TabsQuery setSyFormsClassName(String value) { this.SY_Forms_ClassName = value; return this; } public String getSyFormsClassNameStartsWith() { return SY_Forms_ClassNameStartsWith; } public SY_Custom_MaintenanceForm_TabsQuery setSyFormsClassNameStartsWith(String value) { this.SY_Forms_ClassNameStartsWith = value; return this; } public String getSyFormsClassNameEndsWith() { return SY_Forms_ClassNameEndsWith; } public SY_Custom_MaintenanceForm_TabsQuery setSyFormsClassNameEndsWith(String value) { this.SY_Forms_ClassNameEndsWith = value; return this; } public String getSyFormsClassNameContains() { return SY_Forms_ClassNameContains; } public SY_Custom_MaintenanceForm_TabsQuery setSyFormsClassNameContains(String value) { this.SY_Forms_ClassNameContains = value; return this; } public String getSyFormsClassNameLike() { return SY_Forms_ClassNameLike; } public SY_Custom_MaintenanceForm_TabsQuery setSyFormsClassNameLike(String value) { this.SY_Forms_ClassNameLike = value; return this; } public ArrayList getSyFormsClassNameBetween() { return SY_Forms_ClassNameBetween; } public SY_Custom_MaintenanceForm_TabsQuery setSyFormsClassNameBetween(ArrayList value) { this.SY_Forms_ClassNameBetween = value; return this; } public ArrayList getSyFormsClassNameIn() { return SY_Forms_ClassNameIn; } public SY_Custom_MaintenanceForm_TabsQuery setSyFormsClassNameIn(ArrayList value) { this.SY_Forms_ClassNameIn = value; return this; } public String getHostTabControlName() { return HostTabControlName; } public SY_Custom_MaintenanceForm_TabsQuery setHostTabControlName(String value) { this.HostTabControlName = value; return this; } public String getHostTabControlNameStartsWith() { return HostTabControlNameStartsWith; } public SY_Custom_MaintenanceForm_TabsQuery setHostTabControlNameStartsWith(String value) { this.HostTabControlNameStartsWith = value; return this; } public String getHostTabControlNameEndsWith() { return HostTabControlNameEndsWith; } public SY_Custom_MaintenanceForm_TabsQuery setHostTabControlNameEndsWith(String value) { this.HostTabControlNameEndsWith = value; return this; } public String getHostTabControlNameContains() { return HostTabControlNameContains; } public SY_Custom_MaintenanceForm_TabsQuery setHostTabControlNameContains(String value) { this.HostTabControlNameContains = value; return this; } public String getHostTabControlNameLike() { return HostTabControlNameLike; } public SY_Custom_MaintenanceForm_TabsQuery setHostTabControlNameLike(String value) { this.HostTabControlNameLike = value; return this; } public ArrayList getHostTabControlNameBetween() { return HostTabControlNameBetween; } public SY_Custom_MaintenanceForm_TabsQuery setHostTabControlNameBetween(ArrayList value) { this.HostTabControlNameBetween = value; return this; } public ArrayList getHostTabControlNameIn() { return HostTabControlNameIn; } public SY_Custom_MaintenanceForm_TabsQuery setHostTabControlNameIn(ArrayList value) { this.HostTabControlNameIn = value; return this; } public String getTabKey() { return TabKey; } public SY_Custom_MaintenanceForm_TabsQuery setTabKey(String value) { this.TabKey = value; return this; } public String getTabKeyStartsWith() { return TabKeyStartsWith; } public SY_Custom_MaintenanceForm_TabsQuery setTabKeyStartsWith(String value) { this.TabKeyStartsWith = value; return this; } public String getTabKeyEndsWith() { return TabKeyEndsWith; } public SY_Custom_MaintenanceForm_TabsQuery setTabKeyEndsWith(String value) { this.TabKeyEndsWith = value; return this; } public String getTabKeyContains() { return TabKeyContains; } public SY_Custom_MaintenanceForm_TabsQuery setTabKeyContains(String value) { this.TabKeyContains = value; return this; } public String getTabKeyLike() { return TabKeyLike; } public SY_Custom_MaintenanceForm_TabsQuery setTabKeyLike(String value) { this.TabKeyLike = value; return this; } public ArrayList getTabKeyBetween() { return TabKeyBetween; } public SY_Custom_MaintenanceForm_TabsQuery setTabKeyBetween(ArrayList value) { this.TabKeyBetween = value; return this; } public ArrayList getTabKeyIn() { return TabKeyIn; } public SY_Custom_MaintenanceForm_TabsQuery setTabKeyIn(ArrayList value) { this.TabKeyIn = value; return this; } public String getTabCaption() { return TabCaption; } public SY_Custom_MaintenanceForm_TabsQuery setTabCaption(String value) { this.TabCaption = value; return this; } public String getTabCaptionStartsWith() { return TabCaptionStartsWith; } public SY_Custom_MaintenanceForm_TabsQuery setTabCaptionStartsWith(String value) { this.TabCaptionStartsWith = value; return this; } public String getTabCaptionEndsWith() { return TabCaptionEndsWith; } public SY_Custom_MaintenanceForm_TabsQuery setTabCaptionEndsWith(String value) { this.TabCaptionEndsWith = value; return this; } public String getTabCaptionContains() { return TabCaptionContains; } public SY_Custom_MaintenanceForm_TabsQuery setTabCaptionContains(String value) { this.TabCaptionContains = value; return this; } public String getTabCaptionLike() { return TabCaptionLike; } public SY_Custom_MaintenanceForm_TabsQuery setTabCaptionLike(String value) { this.TabCaptionLike = value; return this; } public ArrayList getTabCaptionBetween() { return TabCaptionBetween; } public SY_Custom_MaintenanceForm_TabsQuery setTabCaptionBetween(ArrayList value) { this.TabCaptionBetween = value; return this; } public ArrayList getTabCaptionIn() { return TabCaptionIn; } public SY_Custom_MaintenanceForm_TabsQuery setTabCaptionIn(ArrayList value) { this.TabCaptionIn = value; return this; } public String getStoredProcedureName() { return StoredProcedureName; } public SY_Custom_MaintenanceForm_TabsQuery setStoredProcedureName(String value) { this.StoredProcedureName = value; return this; } public String getStoredProcedureNameStartsWith() { return StoredProcedureNameStartsWith; } public SY_Custom_MaintenanceForm_TabsQuery setStoredProcedureNameStartsWith(String value) { this.StoredProcedureNameStartsWith = value; return this; } public String getStoredProcedureNameEndsWith() { return StoredProcedureNameEndsWith; } public SY_Custom_MaintenanceForm_TabsQuery setStoredProcedureNameEndsWith(String value) { this.StoredProcedureNameEndsWith = value; return this; } public String getStoredProcedureNameContains() { return StoredProcedureNameContains; } public SY_Custom_MaintenanceForm_TabsQuery setStoredProcedureNameContains(String value) { this.StoredProcedureNameContains = value; return this; } public String getStoredProcedureNameLike() { return StoredProcedureNameLike; } public SY_Custom_MaintenanceForm_TabsQuery setStoredProcedureNameLike(String value) { this.StoredProcedureNameLike = value; return this; } public ArrayList getStoredProcedureNameBetween() { return StoredProcedureNameBetween; } public SY_Custom_MaintenanceForm_TabsQuery setStoredProcedureNameBetween(ArrayList value) { this.StoredProcedureNameBetween = value; return this; } public ArrayList getStoredProcedureNameIn() { return StoredProcedureNameIn; } public SY_Custom_MaintenanceForm_TabsQuery setStoredProcedureNameIn(ArrayList value) { this.StoredProcedureNameIn = value; return this; } public Boolean getIsEnabled() { return IsEnabled; } public SY_Custom_MaintenanceForm_TabsQuery setIsEnabled(Boolean value) { this.IsEnabled = value; return this; } public ArrayList getRowHash() { return RowHash; } public SY_Custom_MaintenanceForm_TabsQuery setRowHash(ArrayList value) { this.RowHash = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class SY_DebtorImportSavedMappingsQuery extends QueryDb implements IReturn> { public String RecID = null; public String RecIDStartsWith = null; public String RecIDEndsWith = null; public String RecIDContains = null; public String RecIDLike = null; public ArrayList RecIDBetween = null; public ArrayList RecIDIn = null; public String SY_DebtorImportSavedMappingSets_RecID = null; public String SY_DebtorImportSavedMappingSets_RecIDStartsWith = null; public String SY_DebtorImportSavedMappingSets_RecIDEndsWith = null; public String SY_DebtorImportSavedMappingSets_RecIDContains = null; public String SY_DebtorImportSavedMappingSets_RecIDLike = null; public ArrayList SY_DebtorImportSavedMappingSets_RecIDBetween = null; public ArrayList SY_DebtorImportSavedMappingSets_RecIDIn = null; public String SourceColumnName = null; public String SourceColumnNameStartsWith = null; public String SourceColumnNameEndsWith = null; public String SourceColumnNameContains = null; public String SourceColumnNameLike = null; public ArrayList SourceColumnNameBetween = null; public ArrayList SourceColumnNameIn = null; public String DestinationProperty = null; public String DestinationPropertyStartsWith = null; public String DestinationPropertyEndsWith = null; public String DestinationPropertyContains = null; public String DestinationPropertyLike = null; public ArrayList DestinationPropertyBetween = null; public ArrayList DestinationPropertyIn = null; public ArrayList RowHash = null; public String getRecID() { return RecID; } public SY_DebtorImportSavedMappingsQuery setRecID(String value) { this.RecID = value; return this; } public String getRecIDStartsWith() { return RecIDStartsWith; } public SY_DebtorImportSavedMappingsQuery setRecIDStartsWith(String value) { this.RecIDStartsWith = value; return this; } public String getRecIDEndsWith() { return RecIDEndsWith; } public SY_DebtorImportSavedMappingsQuery setRecIDEndsWith(String value) { this.RecIDEndsWith = value; return this; } public String getRecIDContains() { return RecIDContains; } public SY_DebtorImportSavedMappingsQuery setRecIDContains(String value) { this.RecIDContains = value; return this; } public String getRecIDLike() { return RecIDLike; } public SY_DebtorImportSavedMappingsQuery setRecIDLike(String value) { this.RecIDLike = value; return this; } public ArrayList getRecIDBetween() { return RecIDBetween; } public SY_DebtorImportSavedMappingsQuery setRecIDBetween(ArrayList value) { this.RecIDBetween = value; return this; } public ArrayList getRecIDIn() { return RecIDIn; } public SY_DebtorImportSavedMappingsQuery setRecIDIn(ArrayList value) { this.RecIDIn = value; return this; } public String getSyDebtorImportSavedMappingSetsRecID() { return SY_DebtorImportSavedMappingSets_RecID; } public SY_DebtorImportSavedMappingsQuery setSyDebtorImportSavedMappingSetsRecID(String value) { this.SY_DebtorImportSavedMappingSets_RecID = value; return this; } public String getSyDebtorImportSavedMappingSetsRecIDStartsWith() { return SY_DebtorImportSavedMappingSets_RecIDStartsWith; } public SY_DebtorImportSavedMappingsQuery setSyDebtorImportSavedMappingSetsRecIDStartsWith(String value) { this.SY_DebtorImportSavedMappingSets_RecIDStartsWith = value; return this; } public String getSyDebtorImportSavedMappingSetsRecIDEndsWith() { return SY_DebtorImportSavedMappingSets_RecIDEndsWith; } public SY_DebtorImportSavedMappingsQuery setSyDebtorImportSavedMappingSetsRecIDEndsWith(String value) { this.SY_DebtorImportSavedMappingSets_RecIDEndsWith = value; return this; } public String getSyDebtorImportSavedMappingSetsRecIDContains() { return SY_DebtorImportSavedMappingSets_RecIDContains; } public SY_DebtorImportSavedMappingsQuery setSyDebtorImportSavedMappingSetsRecIDContains(String value) { this.SY_DebtorImportSavedMappingSets_RecIDContains = value; return this; } public String getSyDebtorImportSavedMappingSetsRecIDLike() { return SY_DebtorImportSavedMappingSets_RecIDLike; } public SY_DebtorImportSavedMappingsQuery setSyDebtorImportSavedMappingSetsRecIDLike(String value) { this.SY_DebtorImportSavedMappingSets_RecIDLike = value; return this; } public ArrayList getSyDebtorImportSavedMappingSetsRecIDBetween() { return SY_DebtorImportSavedMappingSets_RecIDBetween; } public SY_DebtorImportSavedMappingsQuery setSyDebtorImportSavedMappingSetsRecIDBetween(ArrayList value) { this.SY_DebtorImportSavedMappingSets_RecIDBetween = value; return this; } public ArrayList getSyDebtorImportSavedMappingSetsRecIDIn() { return SY_DebtorImportSavedMappingSets_RecIDIn; } public SY_DebtorImportSavedMappingsQuery setSyDebtorImportSavedMappingSetsRecIDIn(ArrayList value) { this.SY_DebtorImportSavedMappingSets_RecIDIn = value; return this; } public String getSourceColumnName() { return SourceColumnName; } public SY_DebtorImportSavedMappingsQuery setSourceColumnName(String value) { this.SourceColumnName = value; return this; } public String getSourceColumnNameStartsWith() { return SourceColumnNameStartsWith; } public SY_DebtorImportSavedMappingsQuery setSourceColumnNameStartsWith(String value) { this.SourceColumnNameStartsWith = value; return this; } public String getSourceColumnNameEndsWith() { return SourceColumnNameEndsWith; } public SY_DebtorImportSavedMappingsQuery setSourceColumnNameEndsWith(String value) { this.SourceColumnNameEndsWith = value; return this; } public String getSourceColumnNameContains() { return SourceColumnNameContains; } public SY_DebtorImportSavedMappingsQuery setSourceColumnNameContains(String value) { this.SourceColumnNameContains = value; return this; } public String getSourceColumnNameLike() { return SourceColumnNameLike; } public SY_DebtorImportSavedMappingsQuery setSourceColumnNameLike(String value) { this.SourceColumnNameLike = value; return this; } public ArrayList getSourceColumnNameBetween() { return SourceColumnNameBetween; } public SY_DebtorImportSavedMappingsQuery setSourceColumnNameBetween(ArrayList value) { this.SourceColumnNameBetween = value; return this; } public ArrayList getSourceColumnNameIn() { return SourceColumnNameIn; } public SY_DebtorImportSavedMappingsQuery setSourceColumnNameIn(ArrayList value) { this.SourceColumnNameIn = value; return this; } public String getDestinationProperty() { return DestinationProperty; } public SY_DebtorImportSavedMappingsQuery setDestinationProperty(String value) { this.DestinationProperty = value; return this; } public String getDestinationPropertyStartsWith() { return DestinationPropertyStartsWith; } public SY_DebtorImportSavedMappingsQuery setDestinationPropertyStartsWith(String value) { this.DestinationPropertyStartsWith = value; return this; } public String getDestinationPropertyEndsWith() { return DestinationPropertyEndsWith; } public SY_DebtorImportSavedMappingsQuery setDestinationPropertyEndsWith(String value) { this.DestinationPropertyEndsWith = value; return this; } public String getDestinationPropertyContains() { return DestinationPropertyContains; } public SY_DebtorImportSavedMappingsQuery setDestinationPropertyContains(String value) { this.DestinationPropertyContains = value; return this; } public String getDestinationPropertyLike() { return DestinationPropertyLike; } public SY_DebtorImportSavedMappingsQuery setDestinationPropertyLike(String value) { this.DestinationPropertyLike = value; return this; } public ArrayList getDestinationPropertyBetween() { return DestinationPropertyBetween; } public SY_DebtorImportSavedMappingsQuery setDestinationPropertyBetween(ArrayList value) { this.DestinationPropertyBetween = value; return this; } public ArrayList getDestinationPropertyIn() { return DestinationPropertyIn; } public SY_DebtorImportSavedMappingsQuery setDestinationPropertyIn(ArrayList value) { this.DestinationPropertyIn = value; return this; } public ArrayList getRowHash() { return RowHash; } public SY_DebtorImportSavedMappingsQuery setRowHash(ArrayList value) { this.RowHash = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class SY_DebtorImportSavedMappingSetsQuery extends QueryDb implements IReturn> { public String RecID = null; public String RecIDStartsWith = null; public String RecIDEndsWith = null; public String RecIDContains = null; public String RecIDLike = null; public ArrayList RecIDBetween = null; public ArrayList RecIDIn = null; public Date LastSavedDateTime = null; public Date LastSavedDateTimeGreaterThanOrEqualTo = null; public Date LastSavedDateTimeGreaterThan = null; public Date LastSavedDateTimeLessThan = null; public Date LastSavedDateTimeLessThanOrEqualTo = null; public Date LastSavedDateTimeNotEqualTo = null; public ArrayList LastSavedDateTimeBetween = null; public ArrayList LastSavedDateTimeIn = null; public String HR_Staff_RecID = null; public String HR_Staff_RecIDStartsWith = null; public String HR_Staff_RecIDEndsWith = null; public String HR_Staff_RecIDContains = null; public String HR_Staff_RecIDLike = null; public ArrayList HR_Staff_RecIDBetween = null; public ArrayList HR_Staff_RecIDIn = null; public String Name = null; public String NameStartsWith = null; public String NameEndsWith = null; public String NameContains = null; public String NameLike = null; public ArrayList NameBetween = null; public ArrayList NameIn = null; public String getRecID() { return RecID; } public SY_DebtorImportSavedMappingSetsQuery setRecID(String value) { this.RecID = value; return this; } public String getRecIDStartsWith() { return RecIDStartsWith; } public SY_DebtorImportSavedMappingSetsQuery setRecIDStartsWith(String value) { this.RecIDStartsWith = value; return this; } public String getRecIDEndsWith() { return RecIDEndsWith; } public SY_DebtorImportSavedMappingSetsQuery setRecIDEndsWith(String value) { this.RecIDEndsWith = value; return this; } public String getRecIDContains() { return RecIDContains; } public SY_DebtorImportSavedMappingSetsQuery setRecIDContains(String value) { this.RecIDContains = value; return this; } public String getRecIDLike() { return RecIDLike; } public SY_DebtorImportSavedMappingSetsQuery setRecIDLike(String value) { this.RecIDLike = value; return this; } public ArrayList getRecIDBetween() { return RecIDBetween; } public SY_DebtorImportSavedMappingSetsQuery setRecIDBetween(ArrayList value) { this.RecIDBetween = value; return this; } public ArrayList getRecIDIn() { return RecIDIn; } public SY_DebtorImportSavedMappingSetsQuery setRecIDIn(ArrayList value) { this.RecIDIn = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public SY_DebtorImportSavedMappingSetsQuery setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getLastSavedDateTimeGreaterThanOrEqualTo() { return LastSavedDateTimeGreaterThanOrEqualTo; } public SY_DebtorImportSavedMappingSetsQuery setLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.LastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeGreaterThan() { return LastSavedDateTimeGreaterThan; } public SY_DebtorImportSavedMappingSetsQuery setLastSavedDateTimeGreaterThan(Date value) { this.LastSavedDateTimeGreaterThan = value; return this; } public Date getLastSavedDateTimeLessThan() { return LastSavedDateTimeLessThan; } public SY_DebtorImportSavedMappingSetsQuery setLastSavedDateTimeLessThan(Date value) { this.LastSavedDateTimeLessThan = value; return this; } public Date getLastSavedDateTimeLessThanOrEqualTo() { return LastSavedDateTimeLessThanOrEqualTo; } public SY_DebtorImportSavedMappingSetsQuery setLastSavedDateTimeLessThanOrEqualTo(Date value) { this.LastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeNotEqualTo() { return LastSavedDateTimeNotEqualTo; } public SY_DebtorImportSavedMappingSetsQuery setLastSavedDateTimeNotEqualTo(Date value) { this.LastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getLastSavedDateTimeBetween() { return LastSavedDateTimeBetween; } public SY_DebtorImportSavedMappingSetsQuery setLastSavedDateTimeBetween(ArrayList value) { this.LastSavedDateTimeBetween = value; return this; } public ArrayList getLastSavedDateTimeIn() { return LastSavedDateTimeIn; } public SY_DebtorImportSavedMappingSetsQuery setLastSavedDateTimeIn(ArrayList value) { this.LastSavedDateTimeIn = value; return this; } public String getHrStaffRecID() { return HR_Staff_RecID; } public SY_DebtorImportSavedMappingSetsQuery setHrStaffRecID(String value) { this.HR_Staff_RecID = value; return this; } public String getHrStaffRecIDStartsWith() { return HR_Staff_RecIDStartsWith; } public SY_DebtorImportSavedMappingSetsQuery setHrStaffRecIDStartsWith(String value) { this.HR_Staff_RecIDStartsWith = value; return this; } public String getHrStaffRecIDEndsWith() { return HR_Staff_RecIDEndsWith; } public SY_DebtorImportSavedMappingSetsQuery setHrStaffRecIDEndsWith(String value) { this.HR_Staff_RecIDEndsWith = value; return this; } public String getHrStaffRecIDContains() { return HR_Staff_RecIDContains; } public SY_DebtorImportSavedMappingSetsQuery setHrStaffRecIDContains(String value) { this.HR_Staff_RecIDContains = value; return this; } public String getHrStaffRecIDLike() { return HR_Staff_RecIDLike; } public SY_DebtorImportSavedMappingSetsQuery setHrStaffRecIDLike(String value) { this.HR_Staff_RecIDLike = value; return this; } public ArrayList getHrStaffRecIDBetween() { return HR_Staff_RecIDBetween; } public SY_DebtorImportSavedMappingSetsQuery setHrStaffRecIDBetween(ArrayList value) { this.HR_Staff_RecIDBetween = value; return this; } public ArrayList getHrStaffRecIDIn() { return HR_Staff_RecIDIn; } public SY_DebtorImportSavedMappingSetsQuery setHrStaffRecIDIn(ArrayList value) { this.HR_Staff_RecIDIn = value; return this; } public String getName() { return Name; } public SY_DebtorImportSavedMappingSetsQuery setName(String value) { this.Name = value; return this; } public String getNameStartsWith() { return NameStartsWith; } public SY_DebtorImportSavedMappingSetsQuery setNameStartsWith(String value) { this.NameStartsWith = value; return this; } public String getNameEndsWith() { return NameEndsWith; } public SY_DebtorImportSavedMappingSetsQuery setNameEndsWith(String value) { this.NameEndsWith = value; return this; } public String getNameContains() { return NameContains; } public SY_DebtorImportSavedMappingSetsQuery setNameContains(String value) { this.NameContains = value; return this; } public String getNameLike() { return NameLike; } public SY_DebtorImportSavedMappingSetsQuery setNameLike(String value) { this.NameLike = value; return this; } public ArrayList getNameBetween() { return NameBetween; } public SY_DebtorImportSavedMappingSetsQuery setNameBetween(ArrayList value) { this.NameBetween = value; return this; } public ArrayList getNameIn() { return NameIn; } public SY_DebtorImportSavedMappingSetsQuery setNameIn(ArrayList value) { this.NameIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class SY_DialogsQuery extends QueryDb implements IReturn> { public String RecID = null; public String RecIDStartsWith = null; public String RecIDEndsWith = null; public String RecIDContains = null; public String RecIDLike = null; public ArrayList RecIDBetween = null; public ArrayList RecIDIn = null; public Integer DialogNo = null; public Integer DialogNoGreaterThanOrEqualTo = null; public Integer DialogNoGreaterThan = null; public Integer DialogNoLessThan = null; public Integer DialogNoLessThanOrEqualTo = null; public Integer DialogNoNotEqualTo = null; public ArrayList DialogNoBetween = null; public ArrayList DialogNoIn = null; public String AssemblyName = null; public String AssemblyNameStartsWith = null; public String AssemblyNameEndsWith = null; public String AssemblyNameContains = null; public String AssemblyNameLike = null; public ArrayList AssemblyNameBetween = null; public ArrayList AssemblyNameIn = null; public String ClassName = null; public String ClassNameStartsWith = null; public String ClassNameEndsWith = null; public String ClassNameContains = null; public String ClassNameLike = null; public ArrayList ClassNameBetween = null; public ArrayList ClassNameIn = null; public String getRecID() { return RecID; } public SY_DialogsQuery setRecID(String value) { this.RecID = value; return this; } public String getRecIDStartsWith() { return RecIDStartsWith; } public SY_DialogsQuery setRecIDStartsWith(String value) { this.RecIDStartsWith = value; return this; } public String getRecIDEndsWith() { return RecIDEndsWith; } public SY_DialogsQuery setRecIDEndsWith(String value) { this.RecIDEndsWith = value; return this; } public String getRecIDContains() { return RecIDContains; } public SY_DialogsQuery setRecIDContains(String value) { this.RecIDContains = value; return this; } public String getRecIDLike() { return RecIDLike; } public SY_DialogsQuery setRecIDLike(String value) { this.RecIDLike = value; return this; } public ArrayList getRecIDBetween() { return RecIDBetween; } public SY_DialogsQuery setRecIDBetween(ArrayList value) { this.RecIDBetween = value; return this; } public ArrayList getRecIDIn() { return RecIDIn; } public SY_DialogsQuery setRecIDIn(ArrayList value) { this.RecIDIn = value; return this; } public Integer getDialogNo() { return DialogNo; } public SY_DialogsQuery setDialogNo(Integer value) { this.DialogNo = value; return this; } public Integer getDialogNoGreaterThanOrEqualTo() { return DialogNoGreaterThanOrEqualTo; } public SY_DialogsQuery setDialogNoGreaterThanOrEqualTo(Integer value) { this.DialogNoGreaterThanOrEqualTo = value; return this; } public Integer getDialogNoGreaterThan() { return DialogNoGreaterThan; } public SY_DialogsQuery setDialogNoGreaterThan(Integer value) { this.DialogNoGreaterThan = value; return this; } public Integer getDialogNoLessThan() { return DialogNoLessThan; } public SY_DialogsQuery setDialogNoLessThan(Integer value) { this.DialogNoLessThan = value; return this; } public Integer getDialogNoLessThanOrEqualTo() { return DialogNoLessThanOrEqualTo; } public SY_DialogsQuery setDialogNoLessThanOrEqualTo(Integer value) { this.DialogNoLessThanOrEqualTo = value; return this; } public Integer getDialogNoNotEqualTo() { return DialogNoNotEqualTo; } public SY_DialogsQuery setDialogNoNotEqualTo(Integer value) { this.DialogNoNotEqualTo = value; return this; } public ArrayList getDialogNoBetween() { return DialogNoBetween; } public SY_DialogsQuery setDialogNoBetween(ArrayList value) { this.DialogNoBetween = value; return this; } public ArrayList getDialogNoIn() { return DialogNoIn; } public SY_DialogsQuery setDialogNoIn(ArrayList value) { this.DialogNoIn = value; return this; } public String getAssemblyName() { return AssemblyName; } public SY_DialogsQuery setAssemblyName(String value) { this.AssemblyName = value; return this; } public String getAssemblyNameStartsWith() { return AssemblyNameStartsWith; } public SY_DialogsQuery setAssemblyNameStartsWith(String value) { this.AssemblyNameStartsWith = value; return this; } public String getAssemblyNameEndsWith() { return AssemblyNameEndsWith; } public SY_DialogsQuery setAssemblyNameEndsWith(String value) { this.AssemblyNameEndsWith = value; return this; } public String getAssemblyNameContains() { return AssemblyNameContains; } public SY_DialogsQuery setAssemblyNameContains(String value) { this.AssemblyNameContains = value; return this; } public String getAssemblyNameLike() { return AssemblyNameLike; } public SY_DialogsQuery setAssemblyNameLike(String value) { this.AssemblyNameLike = value; return this; } public ArrayList getAssemblyNameBetween() { return AssemblyNameBetween; } public SY_DialogsQuery setAssemblyNameBetween(ArrayList value) { this.AssemblyNameBetween = value; return this; } public ArrayList getAssemblyNameIn() { return AssemblyNameIn; } public SY_DialogsQuery setAssemblyNameIn(ArrayList value) { this.AssemblyNameIn = value; return this; } public String getClassName() { return ClassName; } public SY_DialogsQuery setClassName(String value) { this.ClassName = value; return this; } public String getClassNameStartsWith() { return ClassNameStartsWith; } public SY_DialogsQuery setClassNameStartsWith(String value) { this.ClassNameStartsWith = value; return this; } public String getClassNameEndsWith() { return ClassNameEndsWith; } public SY_DialogsQuery setClassNameEndsWith(String value) { this.ClassNameEndsWith = value; return this; } public String getClassNameContains() { return ClassNameContains; } public SY_DialogsQuery setClassNameContains(String value) { this.ClassNameContains = value; return this; } public String getClassNameLike() { return ClassNameLike; } public SY_DialogsQuery setClassNameLike(String value) { this.ClassNameLike = value; return this; } public ArrayList getClassNameBetween() { return ClassNameBetween; } public SY_DialogsQuery setClassNameBetween(ArrayList value) { this.ClassNameBetween = value; return this; } public ArrayList getClassNameIn() { return ClassNameIn; } public SY_DialogsQuery setClassNameIn(ArrayList value) { this.ClassNameIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class SY_DialogSettingsQuery extends QueryDb implements IReturn> { public String RecID = null; public String RecIDStartsWith = null; public String RecIDEndsWith = null; public String RecIDContains = null; public String RecIDLike = null; public ArrayList RecIDBetween = null; public ArrayList RecIDIn = null; public String SY_Dialogs_RecID = null; public String SY_Dialogs_RecIDStartsWith = null; public String SY_Dialogs_RecIDEndsWith = null; public String SY_Dialogs_RecIDContains = null; public String SY_Dialogs_RecIDLike = null; public ArrayList SY_Dialogs_RecIDBetween = null; public ArrayList SY_Dialogs_RecIDIn = null; public String HR_Staff_RecID = null; public String HR_Staff_RecIDStartsWith = null; public String HR_Staff_RecIDEndsWith = null; public String HR_Staff_RecIDContains = null; public String HR_Staff_RecIDLike = null; public ArrayList HR_Staff_RecIDBetween = null; public ArrayList HR_Staff_RecIDIn = null; public Short WindowState = null; public Short WindowStateGreaterThanOrEqualTo = null; public Short WindowStateGreaterThan = null; public Short WindowStateLessThan = null; public Short WindowStateLessThanOrEqualTo = null; public Short WindowStateNotEqualTo = null; public ArrayList WindowStateBetween = null; public ArrayList WindowStateIn = null; public Integer Top = null; public Integer TopGreaterThanOrEqualTo = null; public Integer TopGreaterThan = null; public Integer TopLessThan = null; public Integer TopLessThanOrEqualTo = null; public Integer TopNotEqualTo = null; public ArrayList TopBetween = null; public ArrayList TopIn = null; public Integer Left = null; public Integer LeftGreaterThanOrEqualTo = null; public Integer LeftGreaterThan = null; public Integer LeftLessThan = null; public Integer LeftLessThanOrEqualTo = null; public Integer LeftNotEqualTo = null; public ArrayList LeftBetween = null; public ArrayList LeftIn = null; public Integer Width = null; public Integer WidthGreaterThanOrEqualTo = null; public Integer WidthGreaterThan = null; public Integer WidthLessThan = null; public Integer WidthLessThanOrEqualTo = null; public Integer WidthNotEqualTo = null; public ArrayList WidthBetween = null; public ArrayList WidthIn = null; public Integer Height = null; public Integer HeightGreaterThanOrEqualTo = null; public Integer HeightGreaterThan = null; public Integer HeightLessThan = null; public Integer HeightLessThanOrEqualTo = null; public Integer HeightNotEqualTo = null; public ArrayList HeightBetween = null; public ArrayList HeightIn = null; public String Context = null; public String ContextStartsWith = null; public String ContextEndsWith = null; public String ContextContains = null; public String ContextLike = null; public ArrayList ContextBetween = null; public ArrayList ContextIn = null; public String getRecID() { return RecID; } public SY_DialogSettingsQuery setRecID(String value) { this.RecID = value; return this; } public String getRecIDStartsWith() { return RecIDStartsWith; } public SY_DialogSettingsQuery setRecIDStartsWith(String value) { this.RecIDStartsWith = value; return this; } public String getRecIDEndsWith() { return RecIDEndsWith; } public SY_DialogSettingsQuery setRecIDEndsWith(String value) { this.RecIDEndsWith = value; return this; } public String getRecIDContains() { return RecIDContains; } public SY_DialogSettingsQuery setRecIDContains(String value) { this.RecIDContains = value; return this; } public String getRecIDLike() { return RecIDLike; } public SY_DialogSettingsQuery setRecIDLike(String value) { this.RecIDLike = value; return this; } public ArrayList getRecIDBetween() { return RecIDBetween; } public SY_DialogSettingsQuery setRecIDBetween(ArrayList value) { this.RecIDBetween = value; return this; } public ArrayList getRecIDIn() { return RecIDIn; } public SY_DialogSettingsQuery setRecIDIn(ArrayList value) { this.RecIDIn = value; return this; } public String getSyDialogsRecID() { return SY_Dialogs_RecID; } public SY_DialogSettingsQuery setSyDialogsRecID(String value) { this.SY_Dialogs_RecID = value; return this; } public String getSyDialogsRecIDStartsWith() { return SY_Dialogs_RecIDStartsWith; } public SY_DialogSettingsQuery setSyDialogsRecIDStartsWith(String value) { this.SY_Dialogs_RecIDStartsWith = value; return this; } public String getSyDialogsRecIDEndsWith() { return SY_Dialogs_RecIDEndsWith; } public SY_DialogSettingsQuery setSyDialogsRecIDEndsWith(String value) { this.SY_Dialogs_RecIDEndsWith = value; return this; } public String getSyDialogsRecIDContains() { return SY_Dialogs_RecIDContains; } public SY_DialogSettingsQuery setSyDialogsRecIDContains(String value) { this.SY_Dialogs_RecIDContains = value; return this; } public String getSyDialogsRecIDLike() { return SY_Dialogs_RecIDLike; } public SY_DialogSettingsQuery setSyDialogsRecIDLike(String value) { this.SY_Dialogs_RecIDLike = value; return this; } public ArrayList getSyDialogsRecIDBetween() { return SY_Dialogs_RecIDBetween; } public SY_DialogSettingsQuery setSyDialogsRecIDBetween(ArrayList value) { this.SY_Dialogs_RecIDBetween = value; return this; } public ArrayList getSyDialogsRecIDIn() { return SY_Dialogs_RecIDIn; } public SY_DialogSettingsQuery setSyDialogsRecIDIn(ArrayList value) { this.SY_Dialogs_RecIDIn = value; return this; } public String getHrStaffRecID() { return HR_Staff_RecID; } public SY_DialogSettingsQuery setHrStaffRecID(String value) { this.HR_Staff_RecID = value; return this; } public String getHrStaffRecIDStartsWith() { return HR_Staff_RecIDStartsWith; } public SY_DialogSettingsQuery setHrStaffRecIDStartsWith(String value) { this.HR_Staff_RecIDStartsWith = value; return this; } public String getHrStaffRecIDEndsWith() { return HR_Staff_RecIDEndsWith; } public SY_DialogSettingsQuery setHrStaffRecIDEndsWith(String value) { this.HR_Staff_RecIDEndsWith = value; return this; } public String getHrStaffRecIDContains() { return HR_Staff_RecIDContains; } public SY_DialogSettingsQuery setHrStaffRecIDContains(String value) { this.HR_Staff_RecIDContains = value; return this; } public String getHrStaffRecIDLike() { return HR_Staff_RecIDLike; } public SY_DialogSettingsQuery setHrStaffRecIDLike(String value) { this.HR_Staff_RecIDLike = value; return this; } public ArrayList getHrStaffRecIDBetween() { return HR_Staff_RecIDBetween; } public SY_DialogSettingsQuery setHrStaffRecIDBetween(ArrayList value) { this.HR_Staff_RecIDBetween = value; return this; } public ArrayList getHrStaffRecIDIn() { return HR_Staff_RecIDIn; } public SY_DialogSettingsQuery setHrStaffRecIDIn(ArrayList value) { this.HR_Staff_RecIDIn = value; return this; } public Short getWindowState() { return WindowState; } public SY_DialogSettingsQuery setWindowState(Short value) { this.WindowState = value; return this; } public Short getWindowStateGreaterThanOrEqualTo() { return WindowStateGreaterThanOrEqualTo; } public SY_DialogSettingsQuery setWindowStateGreaterThanOrEqualTo(Short value) { this.WindowStateGreaterThanOrEqualTo = value; return this; } public Short getWindowStateGreaterThan() { return WindowStateGreaterThan; } public SY_DialogSettingsQuery setWindowStateGreaterThan(Short value) { this.WindowStateGreaterThan = value; return this; } public Short getWindowStateLessThan() { return WindowStateLessThan; } public SY_DialogSettingsQuery setWindowStateLessThan(Short value) { this.WindowStateLessThan = value; return this; } public Short getWindowStateLessThanOrEqualTo() { return WindowStateLessThanOrEqualTo; } public SY_DialogSettingsQuery setWindowStateLessThanOrEqualTo(Short value) { this.WindowStateLessThanOrEqualTo = value; return this; } public Short getWindowStateNotEqualTo() { return WindowStateNotEqualTo; } public SY_DialogSettingsQuery setWindowStateNotEqualTo(Short value) { this.WindowStateNotEqualTo = value; return this; } public ArrayList getWindowStateBetween() { return WindowStateBetween; } public SY_DialogSettingsQuery setWindowStateBetween(ArrayList value) { this.WindowStateBetween = value; return this; } public ArrayList getWindowStateIn() { return WindowStateIn; } public SY_DialogSettingsQuery setWindowStateIn(ArrayList value) { this.WindowStateIn = value; return this; } public Integer getTop() { return Top; } public SY_DialogSettingsQuery setTop(Integer value) { this.Top = value; return this; } public Integer getTopGreaterThanOrEqualTo() { return TopGreaterThanOrEqualTo; } public SY_DialogSettingsQuery setTopGreaterThanOrEqualTo(Integer value) { this.TopGreaterThanOrEqualTo = value; return this; } public Integer getTopGreaterThan() { return TopGreaterThan; } public SY_DialogSettingsQuery setTopGreaterThan(Integer value) { this.TopGreaterThan = value; return this; } public Integer getTopLessThan() { return TopLessThan; } public SY_DialogSettingsQuery setTopLessThan(Integer value) { this.TopLessThan = value; return this; } public Integer getTopLessThanOrEqualTo() { return TopLessThanOrEqualTo; } public SY_DialogSettingsQuery setTopLessThanOrEqualTo(Integer value) { this.TopLessThanOrEqualTo = value; return this; } public Integer getTopNotEqualTo() { return TopNotEqualTo; } public SY_DialogSettingsQuery setTopNotEqualTo(Integer value) { this.TopNotEqualTo = value; return this; } public ArrayList getTopBetween() { return TopBetween; } public SY_DialogSettingsQuery setTopBetween(ArrayList value) { this.TopBetween = value; return this; } public ArrayList getTopIn() { return TopIn; } public SY_DialogSettingsQuery setTopIn(ArrayList value) { this.TopIn = value; return this; } public Integer getLeft() { return Left; } public SY_DialogSettingsQuery setLeft(Integer value) { this.Left = value; return this; } public Integer getLeftGreaterThanOrEqualTo() { return LeftGreaterThanOrEqualTo; } public SY_DialogSettingsQuery setLeftGreaterThanOrEqualTo(Integer value) { this.LeftGreaterThanOrEqualTo = value; return this; } public Integer getLeftGreaterThan() { return LeftGreaterThan; } public SY_DialogSettingsQuery setLeftGreaterThan(Integer value) { this.LeftGreaterThan = value; return this; } public Integer getLeftLessThan() { return LeftLessThan; } public SY_DialogSettingsQuery setLeftLessThan(Integer value) { this.LeftLessThan = value; return this; } public Integer getLeftLessThanOrEqualTo() { return LeftLessThanOrEqualTo; } public SY_DialogSettingsQuery setLeftLessThanOrEqualTo(Integer value) { this.LeftLessThanOrEqualTo = value; return this; } public Integer getLeftNotEqualTo() { return LeftNotEqualTo; } public SY_DialogSettingsQuery setLeftNotEqualTo(Integer value) { this.LeftNotEqualTo = value; return this; } public ArrayList getLeftBetween() { return LeftBetween; } public SY_DialogSettingsQuery setLeftBetween(ArrayList value) { this.LeftBetween = value; return this; } public ArrayList getLeftIn() { return LeftIn; } public SY_DialogSettingsQuery setLeftIn(ArrayList value) { this.LeftIn = value; return this; } public Integer getWidth() { return Width; } public SY_DialogSettingsQuery setWidth(Integer value) { this.Width = value; return this; } public Integer getWidthGreaterThanOrEqualTo() { return WidthGreaterThanOrEqualTo; } public SY_DialogSettingsQuery setWidthGreaterThanOrEqualTo(Integer value) { this.WidthGreaterThanOrEqualTo = value; return this; } public Integer getWidthGreaterThan() { return WidthGreaterThan; } public SY_DialogSettingsQuery setWidthGreaterThan(Integer value) { this.WidthGreaterThan = value; return this; } public Integer getWidthLessThan() { return WidthLessThan; } public SY_DialogSettingsQuery setWidthLessThan(Integer value) { this.WidthLessThan = value; return this; } public Integer getWidthLessThanOrEqualTo() { return WidthLessThanOrEqualTo; } public SY_DialogSettingsQuery setWidthLessThanOrEqualTo(Integer value) { this.WidthLessThanOrEqualTo = value; return this; } public Integer getWidthNotEqualTo() { return WidthNotEqualTo; } public SY_DialogSettingsQuery setWidthNotEqualTo(Integer value) { this.WidthNotEqualTo = value; return this; } public ArrayList getWidthBetween() { return WidthBetween; } public SY_DialogSettingsQuery setWidthBetween(ArrayList value) { this.WidthBetween = value; return this; } public ArrayList getWidthIn() { return WidthIn; } public SY_DialogSettingsQuery setWidthIn(ArrayList value) { this.WidthIn = value; return this; } public Integer getHeight() { return Height; } public SY_DialogSettingsQuery setHeight(Integer value) { this.Height = value; return this; } public Integer getHeightGreaterThanOrEqualTo() { return HeightGreaterThanOrEqualTo; } public SY_DialogSettingsQuery setHeightGreaterThanOrEqualTo(Integer value) { this.HeightGreaterThanOrEqualTo = value; return this; } public Integer getHeightGreaterThan() { return HeightGreaterThan; } public SY_DialogSettingsQuery setHeightGreaterThan(Integer value) { this.HeightGreaterThan = value; return this; } public Integer getHeightLessThan() { return HeightLessThan; } public SY_DialogSettingsQuery setHeightLessThan(Integer value) { this.HeightLessThan = value; return this; } public Integer getHeightLessThanOrEqualTo() { return HeightLessThanOrEqualTo; } public SY_DialogSettingsQuery setHeightLessThanOrEqualTo(Integer value) { this.HeightLessThanOrEqualTo = value; return this; } public Integer getHeightNotEqualTo() { return HeightNotEqualTo; } public SY_DialogSettingsQuery setHeightNotEqualTo(Integer value) { this.HeightNotEqualTo = value; return this; } public ArrayList getHeightBetween() { return HeightBetween; } public SY_DialogSettingsQuery setHeightBetween(ArrayList value) { this.HeightBetween = value; return this; } public ArrayList getHeightIn() { return HeightIn; } public SY_DialogSettingsQuery setHeightIn(ArrayList value) { this.HeightIn = value; return this; } public String getContext() { return Context; } public SY_DialogSettingsQuery setContext(String value) { this.Context = value; return this; } public String getContextStartsWith() { return ContextStartsWith; } public SY_DialogSettingsQuery setContextStartsWith(String value) { this.ContextStartsWith = value; return this; } public String getContextEndsWith() { return ContextEndsWith; } public SY_DialogSettingsQuery setContextEndsWith(String value) { this.ContextEndsWith = value; return this; } public String getContextContains() { return ContextContains; } public SY_DialogSettingsQuery setContextContains(String value) { this.ContextContains = value; return this; } public String getContextLike() { return ContextLike; } public SY_DialogSettingsQuery setContextLike(String value) { this.ContextLike = value; return this; } public ArrayList getContextBetween() { return ContextBetween; } public SY_DialogSettingsQuery setContextBetween(ArrayList value) { this.ContextBetween = value; return this; } public ArrayList getContextIn() { return ContextIn; } public SY_DialogSettingsQuery setContextIn(ArrayList value) { this.ContextIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class SY_DocumentLinksQuery extends QueryDb implements IReturn> { public String PKID = null; public String PKIDStartsWith = null; public String PKIDEndsWith = null; public String PKIDContains = null; public String PKIDLike = null; public ArrayList PKIDBetween = null; public ArrayList PKIDIn = null; public String SourceDocDesc = null; public String SourceDocDescStartsWith = null; public String SourceDocDescEndsWith = null; public String SourceDocDescContains = null; public String SourceDocDescLike = null; public ArrayList SourceDocDescBetween = null; public ArrayList SourceDocDescIn = null; public String SourceDocID = null; public String SourceDocIDStartsWith = null; public String SourceDocIDEndsWith = null; public String SourceDocIDContains = null; public String SourceDocIDLike = null; public ArrayList SourceDocIDBetween = null; public ArrayList SourceDocIDIn = null; public String DestDocDesc = null; public String DestDocDescStartsWith = null; public String DestDocDescEndsWith = null; public String DestDocDescContains = null; public String DestDocDescLike = null; public ArrayList DestDocDescBetween = null; public ArrayList DestDocDescIn = null; public String DestDocID = null; public String DestDocIDStartsWith = null; public String DestDocIDEndsWith = null; public String DestDocIDContains = null; public String DestDocIDLike = null; public ArrayList DestDocIDBetween = null; public ArrayList DestDocIDIn = null; public String LinkDescriptor = null; public String LinkDescriptorStartsWith = null; public String LinkDescriptorEndsWith = null; public String LinkDescriptorContains = null; public String LinkDescriptorLike = null; public ArrayList LinkDescriptorBetween = null; public ArrayList LinkDescriptorIn = null; public Date LastSavedDateTime = null; public Date LastSavedDateTimeGreaterThanOrEqualTo = null; public Date LastSavedDateTimeGreaterThan = null; public Date LastSavedDateTimeLessThan = null; public Date LastSavedDateTimeLessThanOrEqualTo = null; public Date LastSavedDateTimeNotEqualTo = null; public ArrayList LastSavedDateTimeBetween = null; public ArrayList LastSavedDateTimeIn = null; public Date DateCreated = null; public Date DateCreatedGreaterThanOrEqualTo = null; public Date DateCreatedGreaterThan = null; public Date DateCreatedLessThan = null; public Date DateCreatedLessThanOrEqualTo = null; public Date DateCreatedNotEqualTo = null; public ArrayList DateCreatedBetween = null; public ArrayList DateCreatedIn = null; public String StaffID = null; public String StaffIDStartsWith = null; public String StaffIDEndsWith = null; public String StaffIDContains = null; public String StaffIDLike = null; public ArrayList StaffIDBetween = null; public ArrayList StaffIDIn = null; public String StaffName = null; public String StaffNameStartsWith = null; public String StaffNameEndsWith = null; public String StaffNameContains = null; public String StaffNameLike = null; public ArrayList StaffNameBetween = null; public ArrayList StaffNameIn = null; public String getPkid() { return PKID; } public SY_DocumentLinksQuery setPkid(String value) { this.PKID = value; return this; } public String getPkidStartsWith() { return PKIDStartsWith; } public SY_DocumentLinksQuery setPkidStartsWith(String value) { this.PKIDStartsWith = value; return this; } public String getPkidEndsWith() { return PKIDEndsWith; } public SY_DocumentLinksQuery setPkidEndsWith(String value) { this.PKIDEndsWith = value; return this; } public String getPkidContains() { return PKIDContains; } public SY_DocumentLinksQuery setPkidContains(String value) { this.PKIDContains = value; return this; } public String getPkidLike() { return PKIDLike; } public SY_DocumentLinksQuery setPkidLike(String value) { this.PKIDLike = value; return this; } public ArrayList getPkidBetween() { return PKIDBetween; } public SY_DocumentLinksQuery setPkidBetween(ArrayList value) { this.PKIDBetween = value; return this; } public ArrayList getPkidIn() { return PKIDIn; } public SY_DocumentLinksQuery setPkidIn(ArrayList value) { this.PKIDIn = value; return this; } public String getSourceDocDesc() { return SourceDocDesc; } public SY_DocumentLinksQuery setSourceDocDesc(String value) { this.SourceDocDesc = value; return this; } public String getSourceDocDescStartsWith() { return SourceDocDescStartsWith; } public SY_DocumentLinksQuery setSourceDocDescStartsWith(String value) { this.SourceDocDescStartsWith = value; return this; } public String getSourceDocDescEndsWith() { return SourceDocDescEndsWith; } public SY_DocumentLinksQuery setSourceDocDescEndsWith(String value) { this.SourceDocDescEndsWith = value; return this; } public String getSourceDocDescContains() { return SourceDocDescContains; } public SY_DocumentLinksQuery setSourceDocDescContains(String value) { this.SourceDocDescContains = value; return this; } public String getSourceDocDescLike() { return SourceDocDescLike; } public SY_DocumentLinksQuery setSourceDocDescLike(String value) { this.SourceDocDescLike = value; return this; } public ArrayList getSourceDocDescBetween() { return SourceDocDescBetween; } public SY_DocumentLinksQuery setSourceDocDescBetween(ArrayList value) { this.SourceDocDescBetween = value; return this; } public ArrayList getSourceDocDescIn() { return SourceDocDescIn; } public SY_DocumentLinksQuery setSourceDocDescIn(ArrayList value) { this.SourceDocDescIn = value; return this; } public String getSourceDocID() { return SourceDocID; } public SY_DocumentLinksQuery setSourceDocID(String value) { this.SourceDocID = value; return this; } public String getSourceDocIDStartsWith() { return SourceDocIDStartsWith; } public SY_DocumentLinksQuery setSourceDocIDStartsWith(String value) { this.SourceDocIDStartsWith = value; return this; } public String getSourceDocIDEndsWith() { return SourceDocIDEndsWith; } public SY_DocumentLinksQuery setSourceDocIDEndsWith(String value) { this.SourceDocIDEndsWith = value; return this; } public String getSourceDocIDContains() { return SourceDocIDContains; } public SY_DocumentLinksQuery setSourceDocIDContains(String value) { this.SourceDocIDContains = value; return this; } public String getSourceDocIDLike() { return SourceDocIDLike; } public SY_DocumentLinksQuery setSourceDocIDLike(String value) { this.SourceDocIDLike = value; return this; } public ArrayList getSourceDocIDBetween() { return SourceDocIDBetween; } public SY_DocumentLinksQuery setSourceDocIDBetween(ArrayList value) { this.SourceDocIDBetween = value; return this; } public ArrayList getSourceDocIDIn() { return SourceDocIDIn; } public SY_DocumentLinksQuery setSourceDocIDIn(ArrayList value) { this.SourceDocIDIn = value; return this; } public String getDestDocDesc() { return DestDocDesc; } public SY_DocumentLinksQuery setDestDocDesc(String value) { this.DestDocDesc = value; return this; } public String getDestDocDescStartsWith() { return DestDocDescStartsWith; } public SY_DocumentLinksQuery setDestDocDescStartsWith(String value) { this.DestDocDescStartsWith = value; return this; } public String getDestDocDescEndsWith() { return DestDocDescEndsWith; } public SY_DocumentLinksQuery setDestDocDescEndsWith(String value) { this.DestDocDescEndsWith = value; return this; } public String getDestDocDescContains() { return DestDocDescContains; } public SY_DocumentLinksQuery setDestDocDescContains(String value) { this.DestDocDescContains = value; return this; } public String getDestDocDescLike() { return DestDocDescLike; } public SY_DocumentLinksQuery setDestDocDescLike(String value) { this.DestDocDescLike = value; return this; } public ArrayList getDestDocDescBetween() { return DestDocDescBetween; } public SY_DocumentLinksQuery setDestDocDescBetween(ArrayList value) { this.DestDocDescBetween = value; return this; } public ArrayList getDestDocDescIn() { return DestDocDescIn; } public SY_DocumentLinksQuery setDestDocDescIn(ArrayList value) { this.DestDocDescIn = value; return this; } public String getDestDocID() { return DestDocID; } public SY_DocumentLinksQuery setDestDocID(String value) { this.DestDocID = value; return this; } public String getDestDocIDStartsWith() { return DestDocIDStartsWith; } public SY_DocumentLinksQuery setDestDocIDStartsWith(String value) { this.DestDocIDStartsWith = value; return this; } public String getDestDocIDEndsWith() { return DestDocIDEndsWith; } public SY_DocumentLinksQuery setDestDocIDEndsWith(String value) { this.DestDocIDEndsWith = value; return this; } public String getDestDocIDContains() { return DestDocIDContains; } public SY_DocumentLinksQuery setDestDocIDContains(String value) { this.DestDocIDContains = value; return this; } public String getDestDocIDLike() { return DestDocIDLike; } public SY_DocumentLinksQuery setDestDocIDLike(String value) { this.DestDocIDLike = value; return this; } public ArrayList getDestDocIDBetween() { return DestDocIDBetween; } public SY_DocumentLinksQuery setDestDocIDBetween(ArrayList value) { this.DestDocIDBetween = value; return this; } public ArrayList getDestDocIDIn() { return DestDocIDIn; } public SY_DocumentLinksQuery setDestDocIDIn(ArrayList value) { this.DestDocIDIn = value; return this; } public String getLinkDescriptor() { return LinkDescriptor; } public SY_DocumentLinksQuery setLinkDescriptor(String value) { this.LinkDescriptor = value; return this; } public String getLinkDescriptorStartsWith() { return LinkDescriptorStartsWith; } public SY_DocumentLinksQuery setLinkDescriptorStartsWith(String value) { this.LinkDescriptorStartsWith = value; return this; } public String getLinkDescriptorEndsWith() { return LinkDescriptorEndsWith; } public SY_DocumentLinksQuery setLinkDescriptorEndsWith(String value) { this.LinkDescriptorEndsWith = value; return this; } public String getLinkDescriptorContains() { return LinkDescriptorContains; } public SY_DocumentLinksQuery setLinkDescriptorContains(String value) { this.LinkDescriptorContains = value; return this; } public String getLinkDescriptorLike() { return LinkDescriptorLike; } public SY_DocumentLinksQuery setLinkDescriptorLike(String value) { this.LinkDescriptorLike = value; return this; } public ArrayList getLinkDescriptorBetween() { return LinkDescriptorBetween; } public SY_DocumentLinksQuery setLinkDescriptorBetween(ArrayList value) { this.LinkDescriptorBetween = value; return this; } public ArrayList getLinkDescriptorIn() { return LinkDescriptorIn; } public SY_DocumentLinksQuery setLinkDescriptorIn(ArrayList value) { this.LinkDescriptorIn = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public SY_DocumentLinksQuery setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getLastSavedDateTimeGreaterThanOrEqualTo() { return LastSavedDateTimeGreaterThanOrEqualTo; } public SY_DocumentLinksQuery setLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.LastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeGreaterThan() { return LastSavedDateTimeGreaterThan; } public SY_DocumentLinksQuery setLastSavedDateTimeGreaterThan(Date value) { this.LastSavedDateTimeGreaterThan = value; return this; } public Date getLastSavedDateTimeLessThan() { return LastSavedDateTimeLessThan; } public SY_DocumentLinksQuery setLastSavedDateTimeLessThan(Date value) { this.LastSavedDateTimeLessThan = value; return this; } public Date getLastSavedDateTimeLessThanOrEqualTo() { return LastSavedDateTimeLessThanOrEqualTo; } public SY_DocumentLinksQuery setLastSavedDateTimeLessThanOrEqualTo(Date value) { this.LastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeNotEqualTo() { return LastSavedDateTimeNotEqualTo; } public SY_DocumentLinksQuery setLastSavedDateTimeNotEqualTo(Date value) { this.LastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getLastSavedDateTimeBetween() { return LastSavedDateTimeBetween; } public SY_DocumentLinksQuery setLastSavedDateTimeBetween(ArrayList value) { this.LastSavedDateTimeBetween = value; return this; } public ArrayList getLastSavedDateTimeIn() { return LastSavedDateTimeIn; } public SY_DocumentLinksQuery setLastSavedDateTimeIn(ArrayList value) { this.LastSavedDateTimeIn = value; return this; } public Date getDateCreated() { return DateCreated; } public SY_DocumentLinksQuery setDateCreated(Date value) { this.DateCreated = value; return this; } public Date getDateCreatedGreaterThanOrEqualTo() { return DateCreatedGreaterThanOrEqualTo; } public SY_DocumentLinksQuery setDateCreatedGreaterThanOrEqualTo(Date value) { this.DateCreatedGreaterThanOrEqualTo = value; return this; } public Date getDateCreatedGreaterThan() { return DateCreatedGreaterThan; } public SY_DocumentLinksQuery setDateCreatedGreaterThan(Date value) { this.DateCreatedGreaterThan = value; return this; } public Date getDateCreatedLessThan() { return DateCreatedLessThan; } public SY_DocumentLinksQuery setDateCreatedLessThan(Date value) { this.DateCreatedLessThan = value; return this; } public Date getDateCreatedLessThanOrEqualTo() { return DateCreatedLessThanOrEqualTo; } public SY_DocumentLinksQuery setDateCreatedLessThanOrEqualTo(Date value) { this.DateCreatedLessThanOrEqualTo = value; return this; } public Date getDateCreatedNotEqualTo() { return DateCreatedNotEqualTo; } public SY_DocumentLinksQuery setDateCreatedNotEqualTo(Date value) { this.DateCreatedNotEqualTo = value; return this; } public ArrayList getDateCreatedBetween() { return DateCreatedBetween; } public SY_DocumentLinksQuery setDateCreatedBetween(ArrayList value) { this.DateCreatedBetween = value; return this; } public ArrayList getDateCreatedIn() { return DateCreatedIn; } public SY_DocumentLinksQuery setDateCreatedIn(ArrayList value) { this.DateCreatedIn = value; return this; } public String getStaffID() { return StaffID; } public SY_DocumentLinksQuery setStaffID(String value) { this.StaffID = value; return this; } public String getStaffIDStartsWith() { return StaffIDStartsWith; } public SY_DocumentLinksQuery setStaffIDStartsWith(String value) { this.StaffIDStartsWith = value; return this; } public String getStaffIDEndsWith() { return StaffIDEndsWith; } public SY_DocumentLinksQuery setStaffIDEndsWith(String value) { this.StaffIDEndsWith = value; return this; } public String getStaffIDContains() { return StaffIDContains; } public SY_DocumentLinksQuery setStaffIDContains(String value) { this.StaffIDContains = value; return this; } public String getStaffIDLike() { return StaffIDLike; } public SY_DocumentLinksQuery setStaffIDLike(String value) { this.StaffIDLike = value; return this; } public ArrayList getStaffIDBetween() { return StaffIDBetween; } public SY_DocumentLinksQuery setStaffIDBetween(ArrayList value) { this.StaffIDBetween = value; return this; } public ArrayList getStaffIDIn() { return StaffIDIn; } public SY_DocumentLinksQuery setStaffIDIn(ArrayList value) { this.StaffIDIn = value; return this; } public String getStaffName() { return StaffName; } public SY_DocumentLinksQuery setStaffName(String value) { this.StaffName = value; return this; } public String getStaffNameStartsWith() { return StaffNameStartsWith; } public SY_DocumentLinksQuery setStaffNameStartsWith(String value) { this.StaffNameStartsWith = value; return this; } public String getStaffNameEndsWith() { return StaffNameEndsWith; } public SY_DocumentLinksQuery setStaffNameEndsWith(String value) { this.StaffNameEndsWith = value; return this; } public String getStaffNameContains() { return StaffNameContains; } public SY_DocumentLinksQuery setStaffNameContains(String value) { this.StaffNameContains = value; return this; } public String getStaffNameLike() { return StaffNameLike; } public SY_DocumentLinksQuery setStaffNameLike(String value) { this.StaffNameLike = value; return this; } public ArrayList getStaffNameBetween() { return StaffNameBetween; } public SY_DocumentLinksQuery setStaffNameBetween(ArrayList value) { this.StaffNameBetween = value; return this; } public ArrayList getStaffNameIn() { return StaffNameIn; } public SY_DocumentLinksQuery setStaffNameIn(ArrayList value) { this.StaffNameIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class SY_DocumentTypesQuery extends QueryDb implements IReturn> { public String RecID = null; public String RecIDStartsWith = null; public String RecIDEndsWith = null; public String RecIDContains = null; public String RecIDLike = null; public ArrayList RecIDBetween = null; public ArrayList RecIDIn = null; public String DocumentType = null; public String DocumentTypeStartsWith = null; public String DocumentTypeEndsWith = null; public String DocumentTypeContains = null; public String DocumentTypeLike = null; public ArrayList DocumentTypeBetween = null; public ArrayList DocumentTypeIn = null; public Boolean DefaultType = null; public String DocumentDescription = null; public String DocumentDescriptionStartsWith = null; public String DocumentDescriptionEndsWith = null; public String DocumentDescriptionContains = null; public String DocumentDescriptionLike = null; public ArrayList DocumentDescriptionBetween = null; public ArrayList DocumentDescriptionIn = null; public Date LastSavedDateTime = null; public Date LastSavedDateTimeGreaterThanOrEqualTo = null; public Date LastSavedDateTimeGreaterThan = null; public Date LastSavedDateTimeLessThan = null; public Date LastSavedDateTimeLessThanOrEqualTo = null; public Date LastSavedDateTimeNotEqualTo = null; public ArrayList LastSavedDateTimeBetween = null; public ArrayList LastSavedDateTimeIn = null; public Integer ItemNo = null; public Integer ItemNoGreaterThanOrEqualTo = null; public Integer ItemNoGreaterThan = null; public Integer ItemNoLessThan = null; public Integer ItemNoLessThanOrEqualTo = null; public Integer ItemNoNotEqualTo = null; public ArrayList ItemNoBetween = null; public ArrayList ItemNoIn = null; public ArrayList RowHash = null; public String getRecID() { return RecID; } public SY_DocumentTypesQuery setRecID(String value) { this.RecID = value; return this; } public String getRecIDStartsWith() { return RecIDStartsWith; } public SY_DocumentTypesQuery setRecIDStartsWith(String value) { this.RecIDStartsWith = value; return this; } public String getRecIDEndsWith() { return RecIDEndsWith; } public SY_DocumentTypesQuery setRecIDEndsWith(String value) { this.RecIDEndsWith = value; return this; } public String getRecIDContains() { return RecIDContains; } public SY_DocumentTypesQuery setRecIDContains(String value) { this.RecIDContains = value; return this; } public String getRecIDLike() { return RecIDLike; } public SY_DocumentTypesQuery setRecIDLike(String value) { this.RecIDLike = value; return this; } public ArrayList getRecIDBetween() { return RecIDBetween; } public SY_DocumentTypesQuery setRecIDBetween(ArrayList value) { this.RecIDBetween = value; return this; } public ArrayList getRecIDIn() { return RecIDIn; } public SY_DocumentTypesQuery setRecIDIn(ArrayList value) { this.RecIDIn = value; return this; } public String getDocumentType() { return DocumentType; } public SY_DocumentTypesQuery setDocumentType(String value) { this.DocumentType = value; return this; } public String getDocumentTypeStartsWith() { return DocumentTypeStartsWith; } public SY_DocumentTypesQuery setDocumentTypeStartsWith(String value) { this.DocumentTypeStartsWith = value; return this; } public String getDocumentTypeEndsWith() { return DocumentTypeEndsWith; } public SY_DocumentTypesQuery setDocumentTypeEndsWith(String value) { this.DocumentTypeEndsWith = value; return this; } public String getDocumentTypeContains() { return DocumentTypeContains; } public SY_DocumentTypesQuery setDocumentTypeContains(String value) { this.DocumentTypeContains = value; return this; } public String getDocumentTypeLike() { return DocumentTypeLike; } public SY_DocumentTypesQuery setDocumentTypeLike(String value) { this.DocumentTypeLike = value; return this; } public ArrayList getDocumentTypeBetween() { return DocumentTypeBetween; } public SY_DocumentTypesQuery setDocumentTypeBetween(ArrayList value) { this.DocumentTypeBetween = value; return this; } public ArrayList getDocumentTypeIn() { return DocumentTypeIn; } public SY_DocumentTypesQuery setDocumentTypeIn(ArrayList value) { this.DocumentTypeIn = value; return this; } public Boolean isDefaultType() { return DefaultType; } public SY_DocumentTypesQuery setDefaultType(Boolean value) { this.DefaultType = value; return this; } public String getDocumentDescription() { return DocumentDescription; } public SY_DocumentTypesQuery setDocumentDescription(String value) { this.DocumentDescription = value; return this; } public String getDocumentDescriptionStartsWith() { return DocumentDescriptionStartsWith; } public SY_DocumentTypesQuery setDocumentDescriptionStartsWith(String value) { this.DocumentDescriptionStartsWith = value; return this; } public String getDocumentDescriptionEndsWith() { return DocumentDescriptionEndsWith; } public SY_DocumentTypesQuery setDocumentDescriptionEndsWith(String value) { this.DocumentDescriptionEndsWith = value; return this; } public String getDocumentDescriptionContains() { return DocumentDescriptionContains; } public SY_DocumentTypesQuery setDocumentDescriptionContains(String value) { this.DocumentDescriptionContains = value; return this; } public String getDocumentDescriptionLike() { return DocumentDescriptionLike; } public SY_DocumentTypesQuery setDocumentDescriptionLike(String value) { this.DocumentDescriptionLike = value; return this; } public ArrayList getDocumentDescriptionBetween() { return DocumentDescriptionBetween; } public SY_DocumentTypesQuery setDocumentDescriptionBetween(ArrayList value) { this.DocumentDescriptionBetween = value; return this; } public ArrayList getDocumentDescriptionIn() { return DocumentDescriptionIn; } public SY_DocumentTypesQuery setDocumentDescriptionIn(ArrayList value) { this.DocumentDescriptionIn = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public SY_DocumentTypesQuery setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getLastSavedDateTimeGreaterThanOrEqualTo() { return LastSavedDateTimeGreaterThanOrEqualTo; } public SY_DocumentTypesQuery setLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.LastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeGreaterThan() { return LastSavedDateTimeGreaterThan; } public SY_DocumentTypesQuery setLastSavedDateTimeGreaterThan(Date value) { this.LastSavedDateTimeGreaterThan = value; return this; } public Date getLastSavedDateTimeLessThan() { return LastSavedDateTimeLessThan; } public SY_DocumentTypesQuery setLastSavedDateTimeLessThan(Date value) { this.LastSavedDateTimeLessThan = value; return this; } public Date getLastSavedDateTimeLessThanOrEqualTo() { return LastSavedDateTimeLessThanOrEqualTo; } public SY_DocumentTypesQuery setLastSavedDateTimeLessThanOrEqualTo(Date value) { this.LastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeNotEqualTo() { return LastSavedDateTimeNotEqualTo; } public SY_DocumentTypesQuery setLastSavedDateTimeNotEqualTo(Date value) { this.LastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getLastSavedDateTimeBetween() { return LastSavedDateTimeBetween; } public SY_DocumentTypesQuery setLastSavedDateTimeBetween(ArrayList value) { this.LastSavedDateTimeBetween = value; return this; } public ArrayList getLastSavedDateTimeIn() { return LastSavedDateTimeIn; } public SY_DocumentTypesQuery setLastSavedDateTimeIn(ArrayList value) { this.LastSavedDateTimeIn = value; return this; } public Integer getItemNo() { return ItemNo; } public SY_DocumentTypesQuery setItemNo(Integer value) { this.ItemNo = value; return this; } public Integer getItemNoGreaterThanOrEqualTo() { return ItemNoGreaterThanOrEqualTo; } public SY_DocumentTypesQuery setItemNoGreaterThanOrEqualTo(Integer value) { this.ItemNoGreaterThanOrEqualTo = value; return this; } public Integer getItemNoGreaterThan() { return ItemNoGreaterThan; } public SY_DocumentTypesQuery setItemNoGreaterThan(Integer value) { this.ItemNoGreaterThan = value; return this; } public Integer getItemNoLessThan() { return ItemNoLessThan; } public SY_DocumentTypesQuery setItemNoLessThan(Integer value) { this.ItemNoLessThan = value; return this; } public Integer getItemNoLessThanOrEqualTo() { return ItemNoLessThanOrEqualTo; } public SY_DocumentTypesQuery setItemNoLessThanOrEqualTo(Integer value) { this.ItemNoLessThanOrEqualTo = value; return this; } public Integer getItemNoNotEqualTo() { return ItemNoNotEqualTo; } public SY_DocumentTypesQuery setItemNoNotEqualTo(Integer value) { this.ItemNoNotEqualTo = value; return this; } public ArrayList getItemNoBetween() { return ItemNoBetween; } public SY_DocumentTypesQuery setItemNoBetween(ArrayList value) { this.ItemNoBetween = value; return this; } public ArrayList getItemNoIn() { return ItemNoIn; } public SY_DocumentTypesQuery setItemNoIn(ArrayList value) { this.ItemNoIn = value; return this; } public ArrayList getRowHash() { return RowHash; } public SY_DocumentTypesQuery setRowHash(ArrayList value) { this.RowHash = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class SY_FileQuery extends QueryDb implements IReturn> { public String FileID = null; public String FileIDStartsWith = null; public String FileIDEndsWith = null; public String FileIDContains = null; public String FileIDLike = null; public ArrayList FileIDBetween = null; public ArrayList FileIDIn = null; public Date LastSavedDateTime = null; public Date LastSavedDateTimeGreaterThanOrEqualTo = null; public Date LastSavedDateTimeGreaterThan = null; public Date LastSavedDateTimeLessThan = null; public Date LastSavedDateTimeLessThanOrEqualTo = null; public Date LastSavedDateTimeNotEqualTo = null; public ArrayList LastSavedDateTimeBetween = null; public ArrayList LastSavedDateTimeIn = null; public String PhysicalFileName = null; public String PhysicalFileNameStartsWith = null; public String PhysicalFileNameEndsWith = null; public String PhysicalFileNameContains = null; public String PhysicalFileNameLike = null; public ArrayList PhysicalFileNameBetween = null; public ArrayList PhysicalFileNameIn = null; public String FullPhysicalFileName = null; public String FullPhysicalFileNameStartsWith = null; public String FullPhysicalFileNameEndsWith = null; public String FullPhysicalFileNameContains = null; public String FullPhysicalFileNameLike = null; public ArrayList FullPhysicalFileNameBetween = null; public ArrayList FullPhysicalFileNameIn = null; public String FileDescription = null; public String FileDescriptionStartsWith = null; public String FileDescriptionEndsWith = null; public String FileDescriptionContains = null; public String FileDescriptionLike = null; public ArrayList FileDescriptionBetween = null; public ArrayList FileDescriptionIn = null; public Boolean FileInDB = null; public ArrayList FileBinary = null; public ArrayList RowHash = null; public String getFileID() { return FileID; } public SY_FileQuery setFileID(String value) { this.FileID = value; return this; } public String getFileIDStartsWith() { return FileIDStartsWith; } public SY_FileQuery setFileIDStartsWith(String value) { this.FileIDStartsWith = value; return this; } public String getFileIDEndsWith() { return FileIDEndsWith; } public SY_FileQuery setFileIDEndsWith(String value) { this.FileIDEndsWith = value; return this; } public String getFileIDContains() { return FileIDContains; } public SY_FileQuery setFileIDContains(String value) { this.FileIDContains = value; return this; } public String getFileIDLike() { return FileIDLike; } public SY_FileQuery setFileIDLike(String value) { this.FileIDLike = value; return this; } public ArrayList getFileIDBetween() { return FileIDBetween; } public SY_FileQuery setFileIDBetween(ArrayList value) { this.FileIDBetween = value; return this; } public ArrayList getFileIDIn() { return FileIDIn; } public SY_FileQuery setFileIDIn(ArrayList value) { this.FileIDIn = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public SY_FileQuery setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getLastSavedDateTimeGreaterThanOrEqualTo() { return LastSavedDateTimeGreaterThanOrEqualTo; } public SY_FileQuery setLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.LastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeGreaterThan() { return LastSavedDateTimeGreaterThan; } public SY_FileQuery setLastSavedDateTimeGreaterThan(Date value) { this.LastSavedDateTimeGreaterThan = value; return this; } public Date getLastSavedDateTimeLessThan() { return LastSavedDateTimeLessThan; } public SY_FileQuery setLastSavedDateTimeLessThan(Date value) { this.LastSavedDateTimeLessThan = value; return this; } public Date getLastSavedDateTimeLessThanOrEqualTo() { return LastSavedDateTimeLessThanOrEqualTo; } public SY_FileQuery setLastSavedDateTimeLessThanOrEqualTo(Date value) { this.LastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeNotEqualTo() { return LastSavedDateTimeNotEqualTo; } public SY_FileQuery setLastSavedDateTimeNotEqualTo(Date value) { this.LastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getLastSavedDateTimeBetween() { return LastSavedDateTimeBetween; } public SY_FileQuery setLastSavedDateTimeBetween(ArrayList value) { this.LastSavedDateTimeBetween = value; return this; } public ArrayList getLastSavedDateTimeIn() { return LastSavedDateTimeIn; } public SY_FileQuery setLastSavedDateTimeIn(ArrayList value) { this.LastSavedDateTimeIn = value; return this; } public String getPhysicalFileName() { return PhysicalFileName; } public SY_FileQuery setPhysicalFileName(String value) { this.PhysicalFileName = value; return this; } public String getPhysicalFileNameStartsWith() { return PhysicalFileNameStartsWith; } public SY_FileQuery setPhysicalFileNameStartsWith(String value) { this.PhysicalFileNameStartsWith = value; return this; } public String getPhysicalFileNameEndsWith() { return PhysicalFileNameEndsWith; } public SY_FileQuery setPhysicalFileNameEndsWith(String value) { this.PhysicalFileNameEndsWith = value; return this; } public String getPhysicalFileNameContains() { return PhysicalFileNameContains; } public SY_FileQuery setPhysicalFileNameContains(String value) { this.PhysicalFileNameContains = value; return this; } public String getPhysicalFileNameLike() { return PhysicalFileNameLike; } public SY_FileQuery setPhysicalFileNameLike(String value) { this.PhysicalFileNameLike = value; return this; } public ArrayList getPhysicalFileNameBetween() { return PhysicalFileNameBetween; } public SY_FileQuery setPhysicalFileNameBetween(ArrayList value) { this.PhysicalFileNameBetween = value; return this; } public ArrayList getPhysicalFileNameIn() { return PhysicalFileNameIn; } public SY_FileQuery setPhysicalFileNameIn(ArrayList value) { this.PhysicalFileNameIn = value; return this; } public String getFullPhysicalFileName() { return FullPhysicalFileName; } public SY_FileQuery setFullPhysicalFileName(String value) { this.FullPhysicalFileName = value; return this; } public String getFullPhysicalFileNameStartsWith() { return FullPhysicalFileNameStartsWith; } public SY_FileQuery setFullPhysicalFileNameStartsWith(String value) { this.FullPhysicalFileNameStartsWith = value; return this; } public String getFullPhysicalFileNameEndsWith() { return FullPhysicalFileNameEndsWith; } public SY_FileQuery setFullPhysicalFileNameEndsWith(String value) { this.FullPhysicalFileNameEndsWith = value; return this; } public String getFullPhysicalFileNameContains() { return FullPhysicalFileNameContains; } public SY_FileQuery setFullPhysicalFileNameContains(String value) { this.FullPhysicalFileNameContains = value; return this; } public String getFullPhysicalFileNameLike() { return FullPhysicalFileNameLike; } public SY_FileQuery setFullPhysicalFileNameLike(String value) { this.FullPhysicalFileNameLike = value; return this; } public ArrayList getFullPhysicalFileNameBetween() { return FullPhysicalFileNameBetween; } public SY_FileQuery setFullPhysicalFileNameBetween(ArrayList value) { this.FullPhysicalFileNameBetween = value; return this; } public ArrayList getFullPhysicalFileNameIn() { return FullPhysicalFileNameIn; } public SY_FileQuery setFullPhysicalFileNameIn(ArrayList value) { this.FullPhysicalFileNameIn = value; return this; } public String getFileDescription() { return FileDescription; } public SY_FileQuery setFileDescription(String value) { this.FileDescription = value; return this; } public String getFileDescriptionStartsWith() { return FileDescriptionStartsWith; } public SY_FileQuery setFileDescriptionStartsWith(String value) { this.FileDescriptionStartsWith = value; return this; } public String getFileDescriptionEndsWith() { return FileDescriptionEndsWith; } public SY_FileQuery setFileDescriptionEndsWith(String value) { this.FileDescriptionEndsWith = value; return this; } public String getFileDescriptionContains() { return FileDescriptionContains; } public SY_FileQuery setFileDescriptionContains(String value) { this.FileDescriptionContains = value; return this; } public String getFileDescriptionLike() { return FileDescriptionLike; } public SY_FileQuery setFileDescriptionLike(String value) { this.FileDescriptionLike = value; return this; } public ArrayList getFileDescriptionBetween() { return FileDescriptionBetween; } public SY_FileQuery setFileDescriptionBetween(ArrayList value) { this.FileDescriptionBetween = value; return this; } public ArrayList getFileDescriptionIn() { return FileDescriptionIn; } public SY_FileQuery setFileDescriptionIn(ArrayList value) { this.FileDescriptionIn = value; return this; } public Boolean isFileInDB() { return FileInDB; } public SY_FileQuery setFileInDB(Boolean value) { this.FileInDB = value; return this; } public ArrayList getFileBinary() { return FileBinary; } public SY_FileQuery setFileBinary(ArrayList value) { this.FileBinary = value; return this; } public ArrayList getRowHash() { return RowHash; } public SY_FileQuery setRowHash(ArrayList value) { this.RowHash = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class SY_FilterDefaultsQuery extends QueryDb implements IReturn> { public String FilterDefID = null; public String FilterDefIDStartsWith = null; public String FilterDefIDEndsWith = null; public String FilterDefIDContains = null; public String FilterDefIDLike = null; public ArrayList FilterDefIDBetween = null; public ArrayList FilterDefIDIn = null; public String StaffID = null; public String StaffIDStartsWith = null; public String StaffIDEndsWith = null; public String StaffIDContains = null; public String StaffIDLike = null; public ArrayList StaffIDBetween = null; public ArrayList StaffIDIn = null; public Integer FilterNo = null; public Integer FilterNoGreaterThanOrEqualTo = null; public Integer FilterNoGreaterThan = null; public Integer FilterNoLessThan = null; public Integer FilterNoLessThanOrEqualTo = null; public Integer FilterNoNotEqualTo = null; public ArrayList FilterNoBetween = null; public ArrayList FilterNoIn = null; public Short SortOrderIndex = null; public Short SortOrderIndexGreaterThanOrEqualTo = null; public Short SortOrderIndexGreaterThan = null; public Short SortOrderIndexLessThan = null; public Short SortOrderIndexLessThanOrEqualTo = null; public Short SortOrderIndexNotEqualTo = null; public ArrayList SortOrderIndexBetween = null; public ArrayList SortOrderIndexIn = null; public Boolean GetDataOnLoad = null; public Short SortOrderType = null; public Short SortOrderTypeGreaterThanOrEqualTo = null; public Short SortOrderTypeGreaterThan = null; public Short SortOrderTypeLessThan = null; public Short SortOrderTypeLessThanOrEqualTo = null; public Short SortOrderTypeNotEqualTo = null; public ArrayList SortOrderTypeBetween = null; public ArrayList SortOrderTypeIn = null; public Short StartType = null; public Short StartTypeGreaterThanOrEqualTo = null; public Short StartTypeGreaterThan = null; public Short StartTypeLessThan = null; public Short StartTypeLessThanOrEqualTo = null; public Short StartTypeNotEqualTo = null; public ArrayList StartTypeBetween = null; public ArrayList StartTypeIn = null; public String SY_Filters_RecID = null; public String SY_Filters_RecIDStartsWith = null; public String SY_Filters_RecIDEndsWith = null; public String SY_Filters_RecIDContains = null; public String SY_Filters_RecIDLike = null; public ArrayList SY_Filters_RecIDBetween = null; public ArrayList SY_Filters_RecIDIn = null; public String getFilterDefID() { return FilterDefID; } public SY_FilterDefaultsQuery setFilterDefID(String value) { this.FilterDefID = value; return this; } public String getFilterDefIDStartsWith() { return FilterDefIDStartsWith; } public SY_FilterDefaultsQuery setFilterDefIDStartsWith(String value) { this.FilterDefIDStartsWith = value; return this; } public String getFilterDefIDEndsWith() { return FilterDefIDEndsWith; } public SY_FilterDefaultsQuery setFilterDefIDEndsWith(String value) { this.FilterDefIDEndsWith = value; return this; } public String getFilterDefIDContains() { return FilterDefIDContains; } public SY_FilterDefaultsQuery setFilterDefIDContains(String value) { this.FilterDefIDContains = value; return this; } public String getFilterDefIDLike() { return FilterDefIDLike; } public SY_FilterDefaultsQuery setFilterDefIDLike(String value) { this.FilterDefIDLike = value; return this; } public ArrayList getFilterDefIDBetween() { return FilterDefIDBetween; } public SY_FilterDefaultsQuery setFilterDefIDBetween(ArrayList value) { this.FilterDefIDBetween = value; return this; } public ArrayList getFilterDefIDIn() { return FilterDefIDIn; } public SY_FilterDefaultsQuery setFilterDefIDIn(ArrayList value) { this.FilterDefIDIn = value; return this; } public String getStaffID() { return StaffID; } public SY_FilterDefaultsQuery setStaffID(String value) { this.StaffID = value; return this; } public String getStaffIDStartsWith() { return StaffIDStartsWith; } public SY_FilterDefaultsQuery setStaffIDStartsWith(String value) { this.StaffIDStartsWith = value; return this; } public String getStaffIDEndsWith() { return StaffIDEndsWith; } public SY_FilterDefaultsQuery setStaffIDEndsWith(String value) { this.StaffIDEndsWith = value; return this; } public String getStaffIDContains() { return StaffIDContains; } public SY_FilterDefaultsQuery setStaffIDContains(String value) { this.StaffIDContains = value; return this; } public String getStaffIDLike() { return StaffIDLike; } public SY_FilterDefaultsQuery setStaffIDLike(String value) { this.StaffIDLike = value; return this; } public ArrayList getStaffIDBetween() { return StaffIDBetween; } public SY_FilterDefaultsQuery setStaffIDBetween(ArrayList value) { this.StaffIDBetween = value; return this; } public ArrayList getStaffIDIn() { return StaffIDIn; } public SY_FilterDefaultsQuery setStaffIDIn(ArrayList value) { this.StaffIDIn = value; return this; } public Integer getFilterNo() { return FilterNo; } public SY_FilterDefaultsQuery setFilterNo(Integer value) { this.FilterNo = value; return this; } public Integer getFilterNoGreaterThanOrEqualTo() { return FilterNoGreaterThanOrEqualTo; } public SY_FilterDefaultsQuery setFilterNoGreaterThanOrEqualTo(Integer value) { this.FilterNoGreaterThanOrEqualTo = value; return this; } public Integer getFilterNoGreaterThan() { return FilterNoGreaterThan; } public SY_FilterDefaultsQuery setFilterNoGreaterThan(Integer value) { this.FilterNoGreaterThan = value; return this; } public Integer getFilterNoLessThan() { return FilterNoLessThan; } public SY_FilterDefaultsQuery setFilterNoLessThan(Integer value) { this.FilterNoLessThan = value; return this; } public Integer getFilterNoLessThanOrEqualTo() { return FilterNoLessThanOrEqualTo; } public SY_FilterDefaultsQuery setFilterNoLessThanOrEqualTo(Integer value) { this.FilterNoLessThanOrEqualTo = value; return this; } public Integer getFilterNoNotEqualTo() { return FilterNoNotEqualTo; } public SY_FilterDefaultsQuery setFilterNoNotEqualTo(Integer value) { this.FilterNoNotEqualTo = value; return this; } public ArrayList getFilterNoBetween() { return FilterNoBetween; } public SY_FilterDefaultsQuery setFilterNoBetween(ArrayList value) { this.FilterNoBetween = value; return this; } public ArrayList getFilterNoIn() { return FilterNoIn; } public SY_FilterDefaultsQuery setFilterNoIn(ArrayList value) { this.FilterNoIn = value; return this; } public Short getSortOrderIndex() { return SortOrderIndex; } public SY_FilterDefaultsQuery setSortOrderIndex(Short value) { this.SortOrderIndex = value; return this; } public Short getSortOrderIndexGreaterThanOrEqualTo() { return SortOrderIndexGreaterThanOrEqualTo; } public SY_FilterDefaultsQuery setSortOrderIndexGreaterThanOrEqualTo(Short value) { this.SortOrderIndexGreaterThanOrEqualTo = value; return this; } public Short getSortOrderIndexGreaterThan() { return SortOrderIndexGreaterThan; } public SY_FilterDefaultsQuery setSortOrderIndexGreaterThan(Short value) { this.SortOrderIndexGreaterThan = value; return this; } public Short getSortOrderIndexLessThan() { return SortOrderIndexLessThan; } public SY_FilterDefaultsQuery setSortOrderIndexLessThan(Short value) { this.SortOrderIndexLessThan = value; return this; } public Short getSortOrderIndexLessThanOrEqualTo() { return SortOrderIndexLessThanOrEqualTo; } public SY_FilterDefaultsQuery setSortOrderIndexLessThanOrEqualTo(Short value) { this.SortOrderIndexLessThanOrEqualTo = value; return this; } public Short getSortOrderIndexNotEqualTo() { return SortOrderIndexNotEqualTo; } public SY_FilterDefaultsQuery setSortOrderIndexNotEqualTo(Short value) { this.SortOrderIndexNotEqualTo = value; return this; } public ArrayList getSortOrderIndexBetween() { return SortOrderIndexBetween; } public SY_FilterDefaultsQuery setSortOrderIndexBetween(ArrayList value) { this.SortOrderIndexBetween = value; return this; } public ArrayList getSortOrderIndexIn() { return SortOrderIndexIn; } public SY_FilterDefaultsQuery setSortOrderIndexIn(ArrayList value) { this.SortOrderIndexIn = value; return this; } public Boolean isGetDataOnLoad() { return GetDataOnLoad; } public SY_FilterDefaultsQuery setGetDataOnLoad(Boolean value) { this.GetDataOnLoad = value; return this; } public Short getSortOrderType() { return SortOrderType; } public SY_FilterDefaultsQuery setSortOrderType(Short value) { this.SortOrderType = value; return this; } public Short getSortOrderTypeGreaterThanOrEqualTo() { return SortOrderTypeGreaterThanOrEqualTo; } public SY_FilterDefaultsQuery setSortOrderTypeGreaterThanOrEqualTo(Short value) { this.SortOrderTypeGreaterThanOrEqualTo = value; return this; } public Short getSortOrderTypeGreaterThan() { return SortOrderTypeGreaterThan; } public SY_FilterDefaultsQuery setSortOrderTypeGreaterThan(Short value) { this.SortOrderTypeGreaterThan = value; return this; } public Short getSortOrderTypeLessThan() { return SortOrderTypeLessThan; } public SY_FilterDefaultsQuery setSortOrderTypeLessThan(Short value) { this.SortOrderTypeLessThan = value; return this; } public Short getSortOrderTypeLessThanOrEqualTo() { return SortOrderTypeLessThanOrEqualTo; } public SY_FilterDefaultsQuery setSortOrderTypeLessThanOrEqualTo(Short value) { this.SortOrderTypeLessThanOrEqualTo = value; return this; } public Short getSortOrderTypeNotEqualTo() { return SortOrderTypeNotEqualTo; } public SY_FilterDefaultsQuery setSortOrderTypeNotEqualTo(Short value) { this.SortOrderTypeNotEqualTo = value; return this; } public ArrayList getSortOrderTypeBetween() { return SortOrderTypeBetween; } public SY_FilterDefaultsQuery setSortOrderTypeBetween(ArrayList value) { this.SortOrderTypeBetween = value; return this; } public ArrayList getSortOrderTypeIn() { return SortOrderTypeIn; } public SY_FilterDefaultsQuery setSortOrderTypeIn(ArrayList value) { this.SortOrderTypeIn = value; return this; } public Short getStartType() { return StartType; } public SY_FilterDefaultsQuery setStartType(Short value) { this.StartType = value; return this; } public Short getStartTypeGreaterThanOrEqualTo() { return StartTypeGreaterThanOrEqualTo; } public SY_FilterDefaultsQuery setStartTypeGreaterThanOrEqualTo(Short value) { this.StartTypeGreaterThanOrEqualTo = value; return this; } public Short getStartTypeGreaterThan() { return StartTypeGreaterThan; } public SY_FilterDefaultsQuery setStartTypeGreaterThan(Short value) { this.StartTypeGreaterThan = value; return this; } public Short getStartTypeLessThan() { return StartTypeLessThan; } public SY_FilterDefaultsQuery setStartTypeLessThan(Short value) { this.StartTypeLessThan = value; return this; } public Short getStartTypeLessThanOrEqualTo() { return StartTypeLessThanOrEqualTo; } public SY_FilterDefaultsQuery setStartTypeLessThanOrEqualTo(Short value) { this.StartTypeLessThanOrEqualTo = value; return this; } public Short getStartTypeNotEqualTo() { return StartTypeNotEqualTo; } public SY_FilterDefaultsQuery setStartTypeNotEqualTo(Short value) { this.StartTypeNotEqualTo = value; return this; } public ArrayList getStartTypeBetween() { return StartTypeBetween; } public SY_FilterDefaultsQuery setStartTypeBetween(ArrayList value) { this.StartTypeBetween = value; return this; } public ArrayList getStartTypeIn() { return StartTypeIn; } public SY_FilterDefaultsQuery setStartTypeIn(ArrayList value) { this.StartTypeIn = value; return this; } public String getSyFiltersRecID() { return SY_Filters_RecID; } public SY_FilterDefaultsQuery setSyFiltersRecID(String value) { this.SY_Filters_RecID = value; return this; } public String getSyFiltersRecIDStartsWith() { return SY_Filters_RecIDStartsWith; } public SY_FilterDefaultsQuery setSyFiltersRecIDStartsWith(String value) { this.SY_Filters_RecIDStartsWith = value; return this; } public String getSyFiltersRecIDEndsWith() { return SY_Filters_RecIDEndsWith; } public SY_FilterDefaultsQuery setSyFiltersRecIDEndsWith(String value) { this.SY_Filters_RecIDEndsWith = value; return this; } public String getSyFiltersRecIDContains() { return SY_Filters_RecIDContains; } public SY_FilterDefaultsQuery setSyFiltersRecIDContains(String value) { this.SY_Filters_RecIDContains = value; return this; } public String getSyFiltersRecIDLike() { return SY_Filters_RecIDLike; } public SY_FilterDefaultsQuery setSyFiltersRecIDLike(String value) { this.SY_Filters_RecIDLike = value; return this; } public ArrayList getSyFiltersRecIDBetween() { return SY_Filters_RecIDBetween; } public SY_FilterDefaultsQuery setSyFiltersRecIDBetween(ArrayList value) { this.SY_Filters_RecIDBetween = value; return this; } public ArrayList getSyFiltersRecIDIn() { return SY_Filters_RecIDIn; } public SY_FilterDefaultsQuery setSyFiltersRecIDIn(ArrayList value) { this.SY_Filters_RecIDIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class SY_FiltersQuery extends QueryDb implements IReturn> { public String RecID = null; public String RecIDStartsWith = null; public String RecIDEndsWith = null; public String RecIDContains = null; public String RecIDLike = null; public ArrayList RecIDBetween = null; public ArrayList RecIDIn = null; public Integer FilterNo = null; public Integer FilterNoGreaterThanOrEqualTo = null; public Integer FilterNoGreaterThan = null; public Integer FilterNoLessThan = null; public Integer FilterNoLessThanOrEqualTo = null; public Integer FilterNoNotEqualTo = null; public ArrayList FilterNoBetween = null; public ArrayList FilterNoIn = null; public String FilterString = null; public String FilterStringStartsWith = null; public String FilterStringEndsWith = null; public String FilterStringContains = null; public String FilterStringLike = null; public ArrayList FilterStringBetween = null; public ArrayList FilterStringIn = null; public String Description = null; public String DescriptionStartsWith = null; public String DescriptionEndsWith = null; public String DescriptionContains = null; public String DescriptionLike = null; public ArrayList DescriptionBetween = null; public ArrayList DescriptionIn = null; public Integer ItemNo = null; public Integer ItemNoGreaterThanOrEqualTo = null; public Integer ItemNoGreaterThan = null; public Integer ItemNoLessThan = null; public Integer ItemNoLessThanOrEqualTo = null; public Integer ItemNoNotEqualTo = null; public ArrayList ItemNoBetween = null; public ArrayList ItemNoIn = null; public String Name = null; public String NameStartsWith = null; public String NameEndsWith = null; public String NameContains = null; public String NameLike = null; public ArrayList NameBetween = null; public ArrayList NameIn = null; public String getRecID() { return RecID; } public SY_FiltersQuery setRecID(String value) { this.RecID = value; return this; } public String getRecIDStartsWith() { return RecIDStartsWith; } public SY_FiltersQuery setRecIDStartsWith(String value) { this.RecIDStartsWith = value; return this; } public String getRecIDEndsWith() { return RecIDEndsWith; } public SY_FiltersQuery setRecIDEndsWith(String value) { this.RecIDEndsWith = value; return this; } public String getRecIDContains() { return RecIDContains; } public SY_FiltersQuery setRecIDContains(String value) { this.RecIDContains = value; return this; } public String getRecIDLike() { return RecIDLike; } public SY_FiltersQuery setRecIDLike(String value) { this.RecIDLike = value; return this; } public ArrayList getRecIDBetween() { return RecIDBetween; } public SY_FiltersQuery setRecIDBetween(ArrayList value) { this.RecIDBetween = value; return this; } public ArrayList getRecIDIn() { return RecIDIn; } public SY_FiltersQuery setRecIDIn(ArrayList value) { this.RecIDIn = value; return this; } public Integer getFilterNo() { return FilterNo; } public SY_FiltersQuery setFilterNo(Integer value) { this.FilterNo = value; return this; } public Integer getFilterNoGreaterThanOrEqualTo() { return FilterNoGreaterThanOrEqualTo; } public SY_FiltersQuery setFilterNoGreaterThanOrEqualTo(Integer value) { this.FilterNoGreaterThanOrEqualTo = value; return this; } public Integer getFilterNoGreaterThan() { return FilterNoGreaterThan; } public SY_FiltersQuery setFilterNoGreaterThan(Integer value) { this.FilterNoGreaterThan = value; return this; } public Integer getFilterNoLessThan() { return FilterNoLessThan; } public SY_FiltersQuery setFilterNoLessThan(Integer value) { this.FilterNoLessThan = value; return this; } public Integer getFilterNoLessThanOrEqualTo() { return FilterNoLessThanOrEqualTo; } public SY_FiltersQuery setFilterNoLessThanOrEqualTo(Integer value) { this.FilterNoLessThanOrEqualTo = value; return this; } public Integer getFilterNoNotEqualTo() { return FilterNoNotEqualTo; } public SY_FiltersQuery setFilterNoNotEqualTo(Integer value) { this.FilterNoNotEqualTo = value; return this; } public ArrayList getFilterNoBetween() { return FilterNoBetween; } public SY_FiltersQuery setFilterNoBetween(ArrayList value) { this.FilterNoBetween = value; return this; } public ArrayList getFilterNoIn() { return FilterNoIn; } public SY_FiltersQuery setFilterNoIn(ArrayList value) { this.FilterNoIn = value; return this; } public String getFilterString() { return FilterString; } public SY_FiltersQuery setFilterString(String value) { this.FilterString = value; return this; } public String getFilterStringStartsWith() { return FilterStringStartsWith; } public SY_FiltersQuery setFilterStringStartsWith(String value) { this.FilterStringStartsWith = value; return this; } public String getFilterStringEndsWith() { return FilterStringEndsWith; } public SY_FiltersQuery setFilterStringEndsWith(String value) { this.FilterStringEndsWith = value; return this; } public String getFilterStringContains() { return FilterStringContains; } public SY_FiltersQuery setFilterStringContains(String value) { this.FilterStringContains = value; return this; } public String getFilterStringLike() { return FilterStringLike; } public SY_FiltersQuery setFilterStringLike(String value) { this.FilterStringLike = value; return this; } public ArrayList getFilterStringBetween() { return FilterStringBetween; } public SY_FiltersQuery setFilterStringBetween(ArrayList value) { this.FilterStringBetween = value; return this; } public ArrayList getFilterStringIn() { return FilterStringIn; } public SY_FiltersQuery setFilterStringIn(ArrayList value) { this.FilterStringIn = value; return this; } public String getDescription() { return Description; } public SY_FiltersQuery setDescription(String value) { this.Description = value; return this; } public String getDescriptionStartsWith() { return DescriptionStartsWith; } public SY_FiltersQuery setDescriptionStartsWith(String value) { this.DescriptionStartsWith = value; return this; } public String getDescriptionEndsWith() { return DescriptionEndsWith; } public SY_FiltersQuery setDescriptionEndsWith(String value) { this.DescriptionEndsWith = value; return this; } public String getDescriptionContains() { return DescriptionContains; } public SY_FiltersQuery setDescriptionContains(String value) { this.DescriptionContains = value; return this; } public String getDescriptionLike() { return DescriptionLike; } public SY_FiltersQuery setDescriptionLike(String value) { this.DescriptionLike = value; return this; } public ArrayList getDescriptionBetween() { return DescriptionBetween; } public SY_FiltersQuery setDescriptionBetween(ArrayList value) { this.DescriptionBetween = value; return this; } public ArrayList getDescriptionIn() { return DescriptionIn; } public SY_FiltersQuery setDescriptionIn(ArrayList value) { this.DescriptionIn = value; return this; } public Integer getItemNo() { return ItemNo; } public SY_FiltersQuery setItemNo(Integer value) { this.ItemNo = value; return this; } public Integer getItemNoGreaterThanOrEqualTo() { return ItemNoGreaterThanOrEqualTo; } public SY_FiltersQuery setItemNoGreaterThanOrEqualTo(Integer value) { this.ItemNoGreaterThanOrEqualTo = value; return this; } public Integer getItemNoGreaterThan() { return ItemNoGreaterThan; } public SY_FiltersQuery setItemNoGreaterThan(Integer value) { this.ItemNoGreaterThan = value; return this; } public Integer getItemNoLessThan() { return ItemNoLessThan; } public SY_FiltersQuery setItemNoLessThan(Integer value) { this.ItemNoLessThan = value; return this; } public Integer getItemNoLessThanOrEqualTo() { return ItemNoLessThanOrEqualTo; } public SY_FiltersQuery setItemNoLessThanOrEqualTo(Integer value) { this.ItemNoLessThanOrEqualTo = value; return this; } public Integer getItemNoNotEqualTo() { return ItemNoNotEqualTo; } public SY_FiltersQuery setItemNoNotEqualTo(Integer value) { this.ItemNoNotEqualTo = value; return this; } public ArrayList getItemNoBetween() { return ItemNoBetween; } public SY_FiltersQuery setItemNoBetween(ArrayList value) { this.ItemNoBetween = value; return this; } public ArrayList getItemNoIn() { return ItemNoIn; } public SY_FiltersQuery setItemNoIn(ArrayList value) { this.ItemNoIn = value; return this; } public String getName() { return Name; } public SY_FiltersQuery setName(String value) { this.Name = value; return this; } public String getNameStartsWith() { return NameStartsWith; } public SY_FiltersQuery setNameStartsWith(String value) { this.NameStartsWith = value; return this; } public String getNameEndsWith() { return NameEndsWith; } public SY_FiltersQuery setNameEndsWith(String value) { this.NameEndsWith = value; return this; } public String getNameContains() { return NameContains; } public SY_FiltersQuery setNameContains(String value) { this.NameContains = value; return this; } public String getNameLike() { return NameLike; } public SY_FiltersQuery setNameLike(String value) { this.NameLike = value; return this; } public ArrayList getNameBetween() { return NameBetween; } public SY_FiltersQuery setNameBetween(ArrayList value) { this.NameBetween = value; return this; } public ArrayList getNameIn() { return NameIn; } public SY_FiltersQuery setNameIn(ArrayList value) { this.NameIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class SY_FiltersTempQuery extends QueryDb implements IReturn> { public String FilterID = null; public String FilterIDStartsWith = null; public String FilterIDEndsWith = null; public String FilterIDContains = null; public String FilterIDLike = null; public ArrayList FilterIDBetween = null; public ArrayList FilterIDIn = null; public Short Section = null; public Short SectionGreaterThanOrEqualTo = null; public Short SectionGreaterThan = null; public Short SectionLessThan = null; public Short SectionLessThanOrEqualTo = null; public Short SectionNotEqualTo = null; public ArrayList SectionBetween = null; public ArrayList SectionIn = null; public String Filter = null; public String FilterStartsWith = null; public String FilterEndsWith = null; public String FilterContains = null; public String FilterLike = null; public ArrayList FilterBetween = null; public ArrayList FilterIn = null; public String Description = null; public String DescriptionStartsWith = null; public String DescriptionEndsWith = null; public String DescriptionContains = null; public String DescriptionLike = null; public ArrayList DescriptionBetween = null; public ArrayList DescriptionIn = null; public String getFilterID() { return FilterID; } public SY_FiltersTempQuery setFilterID(String value) { this.FilterID = value; return this; } public String getFilterIDStartsWith() { return FilterIDStartsWith; } public SY_FiltersTempQuery setFilterIDStartsWith(String value) { this.FilterIDStartsWith = value; return this; } public String getFilterIDEndsWith() { return FilterIDEndsWith; } public SY_FiltersTempQuery setFilterIDEndsWith(String value) { this.FilterIDEndsWith = value; return this; } public String getFilterIDContains() { return FilterIDContains; } public SY_FiltersTempQuery setFilterIDContains(String value) { this.FilterIDContains = value; return this; } public String getFilterIDLike() { return FilterIDLike; } public SY_FiltersTempQuery setFilterIDLike(String value) { this.FilterIDLike = value; return this; } public ArrayList getFilterIDBetween() { return FilterIDBetween; } public SY_FiltersTempQuery setFilterIDBetween(ArrayList value) { this.FilterIDBetween = value; return this; } public ArrayList getFilterIDIn() { return FilterIDIn; } public SY_FiltersTempQuery setFilterIDIn(ArrayList value) { this.FilterIDIn = value; return this; } public Short getSection() { return Section; } public SY_FiltersTempQuery setSection(Short value) { this.Section = value; return this; } public Short getSectionGreaterThanOrEqualTo() { return SectionGreaterThanOrEqualTo; } public SY_FiltersTempQuery setSectionGreaterThanOrEqualTo(Short value) { this.SectionGreaterThanOrEqualTo = value; return this; } public Short getSectionGreaterThan() { return SectionGreaterThan; } public SY_FiltersTempQuery setSectionGreaterThan(Short value) { this.SectionGreaterThan = value; return this; } public Short getSectionLessThan() { return SectionLessThan; } public SY_FiltersTempQuery setSectionLessThan(Short value) { this.SectionLessThan = value; return this; } public Short getSectionLessThanOrEqualTo() { return SectionLessThanOrEqualTo; } public SY_FiltersTempQuery setSectionLessThanOrEqualTo(Short value) { this.SectionLessThanOrEqualTo = value; return this; } public Short getSectionNotEqualTo() { return SectionNotEqualTo; } public SY_FiltersTempQuery setSectionNotEqualTo(Short value) { this.SectionNotEqualTo = value; return this; } public ArrayList getSectionBetween() { return SectionBetween; } public SY_FiltersTempQuery setSectionBetween(ArrayList value) { this.SectionBetween = value; return this; } public ArrayList getSectionIn() { return SectionIn; } public SY_FiltersTempQuery setSectionIn(ArrayList value) { this.SectionIn = value; return this; } public String getFilter() { return Filter; } public SY_FiltersTempQuery setFilter(String value) { this.Filter = value; return this; } public String getFilterStartsWith() { return FilterStartsWith; } public SY_FiltersTempQuery setFilterStartsWith(String value) { this.FilterStartsWith = value; return this; } public String getFilterEndsWith() { return FilterEndsWith; } public SY_FiltersTempQuery setFilterEndsWith(String value) { this.FilterEndsWith = value; return this; } public String getFilterContains() { return FilterContains; } public SY_FiltersTempQuery setFilterContains(String value) { this.FilterContains = value; return this; } public String getFilterLike() { return FilterLike; } public SY_FiltersTempQuery setFilterLike(String value) { this.FilterLike = value; return this; } public ArrayList getFilterBetween() { return FilterBetween; } public SY_FiltersTempQuery setFilterBetween(ArrayList value) { this.FilterBetween = value; return this; } public ArrayList getFilterIn() { return FilterIn; } public SY_FiltersTempQuery setFilterIn(ArrayList value) { this.FilterIn = value; return this; } public String getDescription() { return Description; } public SY_FiltersTempQuery setDescription(String value) { this.Description = value; return this; } public String getDescriptionStartsWith() { return DescriptionStartsWith; } public SY_FiltersTempQuery setDescriptionStartsWith(String value) { this.DescriptionStartsWith = value; return this; } public String getDescriptionEndsWith() { return DescriptionEndsWith; } public SY_FiltersTempQuery setDescriptionEndsWith(String value) { this.DescriptionEndsWith = value; return this; } public String getDescriptionContains() { return DescriptionContains; } public SY_FiltersTempQuery setDescriptionContains(String value) { this.DescriptionContains = value; return this; } public String getDescriptionLike() { return DescriptionLike; } public SY_FiltersTempQuery setDescriptionLike(String value) { this.DescriptionLike = value; return this; } public ArrayList getDescriptionBetween() { return DescriptionBetween; } public SY_FiltersTempQuery setDescriptionBetween(ArrayList value) { this.DescriptionBetween = value; return this; } public ArrayList getDescriptionIn() { return DescriptionIn; } public SY_FiltersTempQuery setDescriptionIn(ArrayList value) { this.DescriptionIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class SY_FormReportDefinitionQuery extends QueryDb implements IReturn> { public String RecID = null; public String RecIDStartsWith = null; public String RecIDEndsWith = null; public String RecIDContains = null; public String RecIDLike = null; public ArrayList RecIDBetween = null; public ArrayList RecIDIn = null; public String Description = null; public String DescriptionStartsWith = null; public String DescriptionEndsWith = null; public String DescriptionContains = null; public String DescriptionLike = null; public ArrayList DescriptionBetween = null; public ArrayList DescriptionIn = null; public String SY_Report_RecID = null; public String SY_Report_RecIDStartsWith = null; public String SY_Report_RecIDEndsWith = null; public String SY_Report_RecIDContains = null; public String SY_Report_RecIDLike = null; public ArrayList SY_Report_RecIDBetween = null; public ArrayList SY_Report_RecIDIn = null; public String SY_PrintGroupLogicalPrinter_RecID = null; public String SY_PrintGroupLogicalPrinter_RecIDStartsWith = null; public String SY_PrintGroupLogicalPrinter_RecIDEndsWith = null; public String SY_PrintGroupLogicalPrinter_RecIDContains = null; public String SY_PrintGroupLogicalPrinter_RecIDLike = null; public ArrayList SY_PrintGroupLogicalPrinter_RecIDBetween = null; public ArrayList SY_PrintGroupLogicalPrinter_RecIDIn = null; public String SY_Forms_ClassName = null; public String SY_Forms_ClassNameStartsWith = null; public String SY_Forms_ClassNameEndsWith = null; public String SY_Forms_ClassNameContains = null; public String SY_Forms_ClassNameLike = null; public ArrayList SY_Forms_ClassNameBetween = null; public ArrayList SY_Forms_ClassNameIn = null; public String SY_PrintGroup_RecID = null; public String SY_PrintGroup_RecIDStartsWith = null; public String SY_PrintGroup_RecIDEndsWith = null; public String SY_PrintGroup_RecIDContains = null; public String SY_PrintGroup_RecIDLike = null; public ArrayList SY_PrintGroup_RecIDBetween = null; public ArrayList SY_PrintGroup_RecIDIn = null; public Integer ItemNo = null; public Integer ItemNoGreaterThanOrEqualTo = null; public Integer ItemNoGreaterThan = null; public Integer ItemNoLessThan = null; public Integer ItemNoLessThanOrEqualTo = null; public Integer ItemNoNotEqualTo = null; public ArrayList ItemNoBetween = null; public ArrayList ItemNoIn = null; public ArrayList RowHash = null; public Date LastSavedDateTime = null; public Date LastSavedDateTimeGreaterThanOrEqualTo = null; public Date LastSavedDateTimeGreaterThan = null; public Date LastSavedDateTimeLessThan = null; public Date LastSavedDateTimeLessThanOrEqualTo = null; public Date LastSavedDateTimeNotEqualTo = null; public ArrayList LastSavedDateTimeBetween = null; public ArrayList LastSavedDateTimeIn = null; public Boolean IsDefault = null; public String getRecID() { return RecID; } public SY_FormReportDefinitionQuery setRecID(String value) { this.RecID = value; return this; } public String getRecIDStartsWith() { return RecIDStartsWith; } public SY_FormReportDefinitionQuery setRecIDStartsWith(String value) { this.RecIDStartsWith = value; return this; } public String getRecIDEndsWith() { return RecIDEndsWith; } public SY_FormReportDefinitionQuery setRecIDEndsWith(String value) { this.RecIDEndsWith = value; return this; } public String getRecIDContains() { return RecIDContains; } public SY_FormReportDefinitionQuery setRecIDContains(String value) { this.RecIDContains = value; return this; } public String getRecIDLike() { return RecIDLike; } public SY_FormReportDefinitionQuery setRecIDLike(String value) { this.RecIDLike = value; return this; } public ArrayList getRecIDBetween() { return RecIDBetween; } public SY_FormReportDefinitionQuery setRecIDBetween(ArrayList value) { this.RecIDBetween = value; return this; } public ArrayList getRecIDIn() { return RecIDIn; } public SY_FormReportDefinitionQuery setRecIDIn(ArrayList value) { this.RecIDIn = value; return this; } public String getDescription() { return Description; } public SY_FormReportDefinitionQuery setDescription(String value) { this.Description = value; return this; } public String getDescriptionStartsWith() { return DescriptionStartsWith; } public SY_FormReportDefinitionQuery setDescriptionStartsWith(String value) { this.DescriptionStartsWith = value; return this; } public String getDescriptionEndsWith() { return DescriptionEndsWith; } public SY_FormReportDefinitionQuery setDescriptionEndsWith(String value) { this.DescriptionEndsWith = value; return this; } public String getDescriptionContains() { return DescriptionContains; } public SY_FormReportDefinitionQuery setDescriptionContains(String value) { this.DescriptionContains = value; return this; } public String getDescriptionLike() { return DescriptionLike; } public SY_FormReportDefinitionQuery setDescriptionLike(String value) { this.DescriptionLike = value; return this; } public ArrayList getDescriptionBetween() { return DescriptionBetween; } public SY_FormReportDefinitionQuery setDescriptionBetween(ArrayList value) { this.DescriptionBetween = value; return this; } public ArrayList getDescriptionIn() { return DescriptionIn; } public SY_FormReportDefinitionQuery setDescriptionIn(ArrayList value) { this.DescriptionIn = value; return this; } public String getSyReportRecID() { return SY_Report_RecID; } public SY_FormReportDefinitionQuery setSyReportRecID(String value) { this.SY_Report_RecID = value; return this; } public String getSyReportRecIDStartsWith() { return SY_Report_RecIDStartsWith; } public SY_FormReportDefinitionQuery setSyReportRecIDStartsWith(String value) { this.SY_Report_RecIDStartsWith = value; return this; } public String getSyReportRecIDEndsWith() { return SY_Report_RecIDEndsWith; } public SY_FormReportDefinitionQuery setSyReportRecIDEndsWith(String value) { this.SY_Report_RecIDEndsWith = value; return this; } public String getSyReportRecIDContains() { return SY_Report_RecIDContains; } public SY_FormReportDefinitionQuery setSyReportRecIDContains(String value) { this.SY_Report_RecIDContains = value; return this; } public String getSyReportRecIDLike() { return SY_Report_RecIDLike; } public SY_FormReportDefinitionQuery setSyReportRecIDLike(String value) { this.SY_Report_RecIDLike = value; return this; } public ArrayList getSyReportRecIDBetween() { return SY_Report_RecIDBetween; } public SY_FormReportDefinitionQuery setSyReportRecIDBetween(ArrayList value) { this.SY_Report_RecIDBetween = value; return this; } public ArrayList getSyReportRecIDIn() { return SY_Report_RecIDIn; } public SY_FormReportDefinitionQuery setSyReportRecIDIn(ArrayList value) { this.SY_Report_RecIDIn = value; return this; } public String getSyPrintGroupLogicalPrinterRecID() { return SY_PrintGroupLogicalPrinter_RecID; } public SY_FormReportDefinitionQuery setSyPrintGroupLogicalPrinterRecID(String value) { this.SY_PrintGroupLogicalPrinter_RecID = value; return this; } public String getSyPrintGroupLogicalPrinterRecIDStartsWith() { return SY_PrintGroupLogicalPrinter_RecIDStartsWith; } public SY_FormReportDefinitionQuery setSyPrintGroupLogicalPrinterRecIDStartsWith(String value) { this.SY_PrintGroupLogicalPrinter_RecIDStartsWith = value; return this; } public String getSyPrintGroupLogicalPrinterRecIDEndsWith() { return SY_PrintGroupLogicalPrinter_RecIDEndsWith; } public SY_FormReportDefinitionQuery setSyPrintGroupLogicalPrinterRecIDEndsWith(String value) { this.SY_PrintGroupLogicalPrinter_RecIDEndsWith = value; return this; } public String getSyPrintGroupLogicalPrinterRecIDContains() { return SY_PrintGroupLogicalPrinter_RecIDContains; } public SY_FormReportDefinitionQuery setSyPrintGroupLogicalPrinterRecIDContains(String value) { this.SY_PrintGroupLogicalPrinter_RecIDContains = value; return this; } public String getSyPrintGroupLogicalPrinterRecIDLike() { return SY_PrintGroupLogicalPrinter_RecIDLike; } public SY_FormReportDefinitionQuery setSyPrintGroupLogicalPrinterRecIDLike(String value) { this.SY_PrintGroupLogicalPrinter_RecIDLike = value; return this; } public ArrayList getSyPrintGroupLogicalPrinterRecIDBetween() { return SY_PrintGroupLogicalPrinter_RecIDBetween; } public SY_FormReportDefinitionQuery setSyPrintGroupLogicalPrinterRecIDBetween(ArrayList value) { this.SY_PrintGroupLogicalPrinter_RecIDBetween = value; return this; } public ArrayList getSyPrintGroupLogicalPrinterRecIDIn() { return SY_PrintGroupLogicalPrinter_RecIDIn; } public SY_FormReportDefinitionQuery setSyPrintGroupLogicalPrinterRecIDIn(ArrayList value) { this.SY_PrintGroupLogicalPrinter_RecIDIn = value; return this; } public String getSyFormsClassName() { return SY_Forms_ClassName; } public SY_FormReportDefinitionQuery setSyFormsClassName(String value) { this.SY_Forms_ClassName = value; return this; } public String getSyFormsClassNameStartsWith() { return SY_Forms_ClassNameStartsWith; } public SY_FormReportDefinitionQuery setSyFormsClassNameStartsWith(String value) { this.SY_Forms_ClassNameStartsWith = value; return this; } public String getSyFormsClassNameEndsWith() { return SY_Forms_ClassNameEndsWith; } public SY_FormReportDefinitionQuery setSyFormsClassNameEndsWith(String value) { this.SY_Forms_ClassNameEndsWith = value; return this; } public String getSyFormsClassNameContains() { return SY_Forms_ClassNameContains; } public SY_FormReportDefinitionQuery setSyFormsClassNameContains(String value) { this.SY_Forms_ClassNameContains = value; return this; } public String getSyFormsClassNameLike() { return SY_Forms_ClassNameLike; } public SY_FormReportDefinitionQuery setSyFormsClassNameLike(String value) { this.SY_Forms_ClassNameLike = value; return this; } public ArrayList getSyFormsClassNameBetween() { return SY_Forms_ClassNameBetween; } public SY_FormReportDefinitionQuery setSyFormsClassNameBetween(ArrayList value) { this.SY_Forms_ClassNameBetween = value; return this; } public ArrayList getSyFormsClassNameIn() { return SY_Forms_ClassNameIn; } public SY_FormReportDefinitionQuery setSyFormsClassNameIn(ArrayList value) { this.SY_Forms_ClassNameIn = value; return this; } public String getSyPrintGroupRecID() { return SY_PrintGroup_RecID; } public SY_FormReportDefinitionQuery setSyPrintGroupRecID(String value) { this.SY_PrintGroup_RecID = value; return this; } public String getSyPrintGroupRecIDStartsWith() { return SY_PrintGroup_RecIDStartsWith; } public SY_FormReportDefinitionQuery setSyPrintGroupRecIDStartsWith(String value) { this.SY_PrintGroup_RecIDStartsWith = value; return this; } public String getSyPrintGroupRecIDEndsWith() { return SY_PrintGroup_RecIDEndsWith; } public SY_FormReportDefinitionQuery setSyPrintGroupRecIDEndsWith(String value) { this.SY_PrintGroup_RecIDEndsWith = value; return this; } public String getSyPrintGroupRecIDContains() { return SY_PrintGroup_RecIDContains; } public SY_FormReportDefinitionQuery setSyPrintGroupRecIDContains(String value) { this.SY_PrintGroup_RecIDContains = value; return this; } public String getSyPrintGroupRecIDLike() { return SY_PrintGroup_RecIDLike; } public SY_FormReportDefinitionQuery setSyPrintGroupRecIDLike(String value) { this.SY_PrintGroup_RecIDLike = value; return this; } public ArrayList getSyPrintGroupRecIDBetween() { return SY_PrintGroup_RecIDBetween; } public SY_FormReportDefinitionQuery setSyPrintGroupRecIDBetween(ArrayList value) { this.SY_PrintGroup_RecIDBetween = value; return this; } public ArrayList getSyPrintGroupRecIDIn() { return SY_PrintGroup_RecIDIn; } public SY_FormReportDefinitionQuery setSyPrintGroupRecIDIn(ArrayList value) { this.SY_PrintGroup_RecIDIn = value; return this; } public Integer getItemNo() { return ItemNo; } public SY_FormReportDefinitionQuery setItemNo(Integer value) { this.ItemNo = value; return this; } public Integer getItemNoGreaterThanOrEqualTo() { return ItemNoGreaterThanOrEqualTo; } public SY_FormReportDefinitionQuery setItemNoGreaterThanOrEqualTo(Integer value) { this.ItemNoGreaterThanOrEqualTo = value; return this; } public Integer getItemNoGreaterThan() { return ItemNoGreaterThan; } public SY_FormReportDefinitionQuery setItemNoGreaterThan(Integer value) { this.ItemNoGreaterThan = value; return this; } public Integer getItemNoLessThan() { return ItemNoLessThan; } public SY_FormReportDefinitionQuery setItemNoLessThan(Integer value) { this.ItemNoLessThan = value; return this; } public Integer getItemNoLessThanOrEqualTo() { return ItemNoLessThanOrEqualTo; } public SY_FormReportDefinitionQuery setItemNoLessThanOrEqualTo(Integer value) { this.ItemNoLessThanOrEqualTo = value; return this; } public Integer getItemNoNotEqualTo() { return ItemNoNotEqualTo; } public SY_FormReportDefinitionQuery setItemNoNotEqualTo(Integer value) { this.ItemNoNotEqualTo = value; return this; } public ArrayList getItemNoBetween() { return ItemNoBetween; } public SY_FormReportDefinitionQuery setItemNoBetween(ArrayList value) { this.ItemNoBetween = value; return this; } public ArrayList getItemNoIn() { return ItemNoIn; } public SY_FormReportDefinitionQuery setItemNoIn(ArrayList value) { this.ItemNoIn = value; return this; } public ArrayList getRowHash() { return RowHash; } public SY_FormReportDefinitionQuery setRowHash(ArrayList value) { this.RowHash = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public SY_FormReportDefinitionQuery setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getLastSavedDateTimeGreaterThanOrEqualTo() { return LastSavedDateTimeGreaterThanOrEqualTo; } public SY_FormReportDefinitionQuery setLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.LastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeGreaterThan() { return LastSavedDateTimeGreaterThan; } public SY_FormReportDefinitionQuery setLastSavedDateTimeGreaterThan(Date value) { this.LastSavedDateTimeGreaterThan = value; return this; } public Date getLastSavedDateTimeLessThan() { return LastSavedDateTimeLessThan; } public SY_FormReportDefinitionQuery setLastSavedDateTimeLessThan(Date value) { this.LastSavedDateTimeLessThan = value; return this; } public Date getLastSavedDateTimeLessThanOrEqualTo() { return LastSavedDateTimeLessThanOrEqualTo; } public SY_FormReportDefinitionQuery setLastSavedDateTimeLessThanOrEqualTo(Date value) { this.LastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeNotEqualTo() { return LastSavedDateTimeNotEqualTo; } public SY_FormReportDefinitionQuery setLastSavedDateTimeNotEqualTo(Date value) { this.LastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getLastSavedDateTimeBetween() { return LastSavedDateTimeBetween; } public SY_FormReportDefinitionQuery setLastSavedDateTimeBetween(ArrayList value) { this.LastSavedDateTimeBetween = value; return this; } public ArrayList getLastSavedDateTimeIn() { return LastSavedDateTimeIn; } public SY_FormReportDefinitionQuery setLastSavedDateTimeIn(ArrayList value) { this.LastSavedDateTimeIn = value; return this; } public Boolean getIsDefault() { return IsDefault; } public SY_FormReportDefinitionQuery setIsDefault(Boolean value) { this.IsDefault = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class SY_FormsQuery extends QueryDb implements IReturn> { public String ClassName = null; public String ClassNameStartsWith = null; public String ClassNameEndsWith = null; public String ClassNameContains = null; public String ClassNameLike = null; public ArrayList ClassNameBetween = null; public ArrayList ClassNameIn = null; public String Description = null; public String DescriptionStartsWith = null; public String DescriptionEndsWith = null; public String DescriptionContains = null; public String DescriptionLike = null; public ArrayList DescriptionBetween = null; public ArrayList DescriptionIn = null; public Integer FormType = null; public Integer FormTypeGreaterThanOrEqualTo = null; public Integer FormTypeGreaterThan = null; public Integer FormTypeLessThan = null; public Integer FormTypeLessThanOrEqualTo = null; public Integer FormTypeNotEqualTo = null; public ArrayList FormTypeBetween = null; public ArrayList FormTypeIn = null; public String HelpFileName = null; public String HelpFileNameStartsWith = null; public String HelpFileNameEndsWith = null; public String HelpFileNameContains = null; public String HelpFileNameLike = null; public ArrayList HelpFileNameBetween = null; public ArrayList HelpFileNameIn = null; public String HelpPageName = null; public String HelpPageNameStartsWith = null; public String HelpPageNameEndsWith = null; public String HelpPageNameContains = null; public String HelpPageNameLike = null; public ArrayList HelpPageNameBetween = null; public ArrayList HelpPageNameIn = null; public String AssemblyFullName = null; public String AssemblyFullNameStartsWith = null; public String AssemblyFullNameEndsWith = null; public String AssemblyFullNameContains = null; public String AssemblyFullNameLike = null; public ArrayList AssemblyFullNameBetween = null; public ArrayList AssemblyFullNameIn = null; public String getClassName() { return ClassName; } public SY_FormsQuery setClassName(String value) { this.ClassName = value; return this; } public String getClassNameStartsWith() { return ClassNameStartsWith; } public SY_FormsQuery setClassNameStartsWith(String value) { this.ClassNameStartsWith = value; return this; } public String getClassNameEndsWith() { return ClassNameEndsWith; } public SY_FormsQuery setClassNameEndsWith(String value) { this.ClassNameEndsWith = value; return this; } public String getClassNameContains() { return ClassNameContains; } public SY_FormsQuery setClassNameContains(String value) { this.ClassNameContains = value; return this; } public String getClassNameLike() { return ClassNameLike; } public SY_FormsQuery setClassNameLike(String value) { this.ClassNameLike = value; return this; } public ArrayList getClassNameBetween() { return ClassNameBetween; } public SY_FormsQuery setClassNameBetween(ArrayList value) { this.ClassNameBetween = value; return this; } public ArrayList getClassNameIn() { return ClassNameIn; } public SY_FormsQuery setClassNameIn(ArrayList value) { this.ClassNameIn = value; return this; } public String getDescription() { return Description; } public SY_FormsQuery setDescription(String value) { this.Description = value; return this; } public String getDescriptionStartsWith() { return DescriptionStartsWith; } public SY_FormsQuery setDescriptionStartsWith(String value) { this.DescriptionStartsWith = value; return this; } public String getDescriptionEndsWith() { return DescriptionEndsWith; } public SY_FormsQuery setDescriptionEndsWith(String value) { this.DescriptionEndsWith = value; return this; } public String getDescriptionContains() { return DescriptionContains; } public SY_FormsQuery setDescriptionContains(String value) { this.DescriptionContains = value; return this; } public String getDescriptionLike() { return DescriptionLike; } public SY_FormsQuery setDescriptionLike(String value) { this.DescriptionLike = value; return this; } public ArrayList getDescriptionBetween() { return DescriptionBetween; } public SY_FormsQuery setDescriptionBetween(ArrayList value) { this.DescriptionBetween = value; return this; } public ArrayList getDescriptionIn() { return DescriptionIn; } public SY_FormsQuery setDescriptionIn(ArrayList value) { this.DescriptionIn = value; return this; } public Integer getFormType() { return FormType; } public SY_FormsQuery setFormType(Integer value) { this.FormType = value; return this; } public Integer getFormTypeGreaterThanOrEqualTo() { return FormTypeGreaterThanOrEqualTo; } public SY_FormsQuery setFormTypeGreaterThanOrEqualTo(Integer value) { this.FormTypeGreaterThanOrEqualTo = value; return this; } public Integer getFormTypeGreaterThan() { return FormTypeGreaterThan; } public SY_FormsQuery setFormTypeGreaterThan(Integer value) { this.FormTypeGreaterThan = value; return this; } public Integer getFormTypeLessThan() { return FormTypeLessThan; } public SY_FormsQuery setFormTypeLessThan(Integer value) { this.FormTypeLessThan = value; return this; } public Integer getFormTypeLessThanOrEqualTo() { return FormTypeLessThanOrEqualTo; } public SY_FormsQuery setFormTypeLessThanOrEqualTo(Integer value) { this.FormTypeLessThanOrEqualTo = value; return this; } public Integer getFormTypeNotEqualTo() { return FormTypeNotEqualTo; } public SY_FormsQuery setFormTypeNotEqualTo(Integer value) { this.FormTypeNotEqualTo = value; return this; } public ArrayList getFormTypeBetween() { return FormTypeBetween; } public SY_FormsQuery setFormTypeBetween(ArrayList value) { this.FormTypeBetween = value; return this; } public ArrayList getFormTypeIn() { return FormTypeIn; } public SY_FormsQuery setFormTypeIn(ArrayList value) { this.FormTypeIn = value; return this; } public String getHelpFileName() { return HelpFileName; } public SY_FormsQuery setHelpFileName(String value) { this.HelpFileName = value; return this; } public String getHelpFileNameStartsWith() { return HelpFileNameStartsWith; } public SY_FormsQuery setHelpFileNameStartsWith(String value) { this.HelpFileNameStartsWith = value; return this; } public String getHelpFileNameEndsWith() { return HelpFileNameEndsWith; } public SY_FormsQuery setHelpFileNameEndsWith(String value) { this.HelpFileNameEndsWith = value; return this; } public String getHelpFileNameContains() { return HelpFileNameContains; } public SY_FormsQuery setHelpFileNameContains(String value) { this.HelpFileNameContains = value; return this; } public String getHelpFileNameLike() { return HelpFileNameLike; } public SY_FormsQuery setHelpFileNameLike(String value) { this.HelpFileNameLike = value; return this; } public ArrayList getHelpFileNameBetween() { return HelpFileNameBetween; } public SY_FormsQuery setHelpFileNameBetween(ArrayList value) { this.HelpFileNameBetween = value; return this; } public ArrayList getHelpFileNameIn() { return HelpFileNameIn; } public SY_FormsQuery setHelpFileNameIn(ArrayList value) { this.HelpFileNameIn = value; return this; } public String getHelpPageName() { return HelpPageName; } public SY_FormsQuery setHelpPageName(String value) { this.HelpPageName = value; return this; } public String getHelpPageNameStartsWith() { return HelpPageNameStartsWith; } public SY_FormsQuery setHelpPageNameStartsWith(String value) { this.HelpPageNameStartsWith = value; return this; } public String getHelpPageNameEndsWith() { return HelpPageNameEndsWith; } public SY_FormsQuery setHelpPageNameEndsWith(String value) { this.HelpPageNameEndsWith = value; return this; } public String getHelpPageNameContains() { return HelpPageNameContains; } public SY_FormsQuery setHelpPageNameContains(String value) { this.HelpPageNameContains = value; return this; } public String getHelpPageNameLike() { return HelpPageNameLike; } public SY_FormsQuery setHelpPageNameLike(String value) { this.HelpPageNameLike = value; return this; } public ArrayList getHelpPageNameBetween() { return HelpPageNameBetween; } public SY_FormsQuery setHelpPageNameBetween(ArrayList value) { this.HelpPageNameBetween = value; return this; } public ArrayList getHelpPageNameIn() { return HelpPageNameIn; } public SY_FormsQuery setHelpPageNameIn(ArrayList value) { this.HelpPageNameIn = value; return this; } public String getAssemblyFullName() { return AssemblyFullName; } public SY_FormsQuery setAssemblyFullName(String value) { this.AssemblyFullName = value; return this; } public String getAssemblyFullNameStartsWith() { return AssemblyFullNameStartsWith; } public SY_FormsQuery setAssemblyFullNameStartsWith(String value) { this.AssemblyFullNameStartsWith = value; return this; } public String getAssemblyFullNameEndsWith() { return AssemblyFullNameEndsWith; } public SY_FormsQuery setAssemblyFullNameEndsWith(String value) { this.AssemblyFullNameEndsWith = value; return this; } public String getAssemblyFullNameContains() { return AssemblyFullNameContains; } public SY_FormsQuery setAssemblyFullNameContains(String value) { this.AssemblyFullNameContains = value; return this; } public String getAssemblyFullNameLike() { return AssemblyFullNameLike; } public SY_FormsQuery setAssemblyFullNameLike(String value) { this.AssemblyFullNameLike = value; return this; } public ArrayList getAssemblyFullNameBetween() { return AssemblyFullNameBetween; } public SY_FormsQuery setAssemblyFullNameBetween(ArrayList value) { this.AssemblyFullNameBetween = value; return this; } public ArrayList getAssemblyFullNameIn() { return AssemblyFullNameIn; } public SY_FormsQuery setAssemblyFullNameIn(ArrayList value) { this.AssemblyFullNameIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class SY_FormsAbstractPermissionsQuery extends QueryDb implements IReturn> { public UUID RecID = null; public ArrayList RecIDIn = null; public String SY_Forms_ClassName = null; public String SY_Forms_ClassNameStartsWith = null; public String SY_Forms_ClassNameEndsWith = null; public String SY_Forms_ClassNameContains = null; public String SY_Forms_ClassNameLike = null; public ArrayList SY_Forms_ClassNameBetween = null; public ArrayList SY_Forms_ClassNameIn = null; public String Name = null; public String NameStartsWith = null; public String NameEndsWith = null; public String NameContains = null; public String NameLike = null; public ArrayList NameBetween = null; public ArrayList NameIn = null; public String Description = null; public String DescriptionStartsWith = null; public String DescriptionEndsWith = null; public String DescriptionContains = null; public String DescriptionLike = null; public ArrayList DescriptionBetween = null; public ArrayList DescriptionIn = null; public Integer ItemNo = null; public Integer ItemNoGreaterThanOrEqualTo = null; public Integer ItemNoGreaterThan = null; public Integer ItemNoLessThan = null; public Integer ItemNoLessThanOrEqualTo = null; public Integer ItemNoNotEqualTo = null; public ArrayList ItemNoBetween = null; public ArrayList ItemNoIn = null; public ArrayList RowHash = null; public UUID getRecID() { return RecID; } public SY_FormsAbstractPermissionsQuery setRecID(UUID value) { this.RecID = value; return this; } public ArrayList getRecIDIn() { return RecIDIn; } public SY_FormsAbstractPermissionsQuery setRecIDIn(ArrayList value) { this.RecIDIn = value; return this; } public String getSyFormsClassName() { return SY_Forms_ClassName; } public SY_FormsAbstractPermissionsQuery setSyFormsClassName(String value) { this.SY_Forms_ClassName = value; return this; } public String getSyFormsClassNameStartsWith() { return SY_Forms_ClassNameStartsWith; } public SY_FormsAbstractPermissionsQuery setSyFormsClassNameStartsWith(String value) { this.SY_Forms_ClassNameStartsWith = value; return this; } public String getSyFormsClassNameEndsWith() { return SY_Forms_ClassNameEndsWith; } public SY_FormsAbstractPermissionsQuery setSyFormsClassNameEndsWith(String value) { this.SY_Forms_ClassNameEndsWith = value; return this; } public String getSyFormsClassNameContains() { return SY_Forms_ClassNameContains; } public SY_FormsAbstractPermissionsQuery setSyFormsClassNameContains(String value) { this.SY_Forms_ClassNameContains = value; return this; } public String getSyFormsClassNameLike() { return SY_Forms_ClassNameLike; } public SY_FormsAbstractPermissionsQuery setSyFormsClassNameLike(String value) { this.SY_Forms_ClassNameLike = value; return this; } public ArrayList getSyFormsClassNameBetween() { return SY_Forms_ClassNameBetween; } public SY_FormsAbstractPermissionsQuery setSyFormsClassNameBetween(ArrayList value) { this.SY_Forms_ClassNameBetween = value; return this; } public ArrayList getSyFormsClassNameIn() { return SY_Forms_ClassNameIn; } public SY_FormsAbstractPermissionsQuery setSyFormsClassNameIn(ArrayList value) { this.SY_Forms_ClassNameIn = value; return this; } public String getName() { return Name; } public SY_FormsAbstractPermissionsQuery setName(String value) { this.Name = value; return this; } public String getNameStartsWith() { return NameStartsWith; } public SY_FormsAbstractPermissionsQuery setNameStartsWith(String value) { this.NameStartsWith = value; return this; } public String getNameEndsWith() { return NameEndsWith; } public SY_FormsAbstractPermissionsQuery setNameEndsWith(String value) { this.NameEndsWith = value; return this; } public String getNameContains() { return NameContains; } public SY_FormsAbstractPermissionsQuery setNameContains(String value) { this.NameContains = value; return this; } public String getNameLike() { return NameLike; } public SY_FormsAbstractPermissionsQuery setNameLike(String value) { this.NameLike = value; return this; } public ArrayList getNameBetween() { return NameBetween; } public SY_FormsAbstractPermissionsQuery setNameBetween(ArrayList value) { this.NameBetween = value; return this; } public ArrayList getNameIn() { return NameIn; } public SY_FormsAbstractPermissionsQuery setNameIn(ArrayList value) { this.NameIn = value; return this; } public String getDescription() { return Description; } public SY_FormsAbstractPermissionsQuery setDescription(String value) { this.Description = value; return this; } public String getDescriptionStartsWith() { return DescriptionStartsWith; } public SY_FormsAbstractPermissionsQuery setDescriptionStartsWith(String value) { this.DescriptionStartsWith = value; return this; } public String getDescriptionEndsWith() { return DescriptionEndsWith; } public SY_FormsAbstractPermissionsQuery setDescriptionEndsWith(String value) { this.DescriptionEndsWith = value; return this; } public String getDescriptionContains() { return DescriptionContains; } public SY_FormsAbstractPermissionsQuery setDescriptionContains(String value) { this.DescriptionContains = value; return this; } public String getDescriptionLike() { return DescriptionLike; } public SY_FormsAbstractPermissionsQuery setDescriptionLike(String value) { this.DescriptionLike = value; return this; } public ArrayList getDescriptionBetween() { return DescriptionBetween; } public SY_FormsAbstractPermissionsQuery setDescriptionBetween(ArrayList value) { this.DescriptionBetween = value; return this; } public ArrayList getDescriptionIn() { return DescriptionIn; } public SY_FormsAbstractPermissionsQuery setDescriptionIn(ArrayList value) { this.DescriptionIn = value; return this; } public Integer getItemNo() { return ItemNo; } public SY_FormsAbstractPermissionsQuery setItemNo(Integer value) { this.ItemNo = value; return this; } public Integer getItemNoGreaterThanOrEqualTo() { return ItemNoGreaterThanOrEqualTo; } public SY_FormsAbstractPermissionsQuery setItemNoGreaterThanOrEqualTo(Integer value) { this.ItemNoGreaterThanOrEqualTo = value; return this; } public Integer getItemNoGreaterThan() { return ItemNoGreaterThan; } public SY_FormsAbstractPermissionsQuery setItemNoGreaterThan(Integer value) { this.ItemNoGreaterThan = value; return this; } public Integer getItemNoLessThan() { return ItemNoLessThan; } public SY_FormsAbstractPermissionsQuery setItemNoLessThan(Integer value) { this.ItemNoLessThan = value; return this; } public Integer getItemNoLessThanOrEqualTo() { return ItemNoLessThanOrEqualTo; } public SY_FormsAbstractPermissionsQuery setItemNoLessThanOrEqualTo(Integer value) { this.ItemNoLessThanOrEqualTo = value; return this; } public Integer getItemNoNotEqualTo() { return ItemNoNotEqualTo; } public SY_FormsAbstractPermissionsQuery setItemNoNotEqualTo(Integer value) { this.ItemNoNotEqualTo = value; return this; } public ArrayList getItemNoBetween() { return ItemNoBetween; } public SY_FormsAbstractPermissionsQuery setItemNoBetween(ArrayList value) { this.ItemNoBetween = value; return this; } public ArrayList getItemNoIn() { return ItemNoIn; } public SY_FormsAbstractPermissionsQuery setItemNoIn(ArrayList value) { this.ItemNoIn = value; return this; } public ArrayList getRowHash() { return RowHash; } public SY_FormsAbstractPermissionsQuery setRowHash(ArrayList value) { this.RowHash = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class SY_FormSettingsQuery extends QueryDb implements IReturn> { public String RecID = null; public String RecIDStartsWith = null; public String RecIDEndsWith = null; public String RecIDContains = null; public String RecIDLike = null; public ArrayList RecIDBetween = null; public ArrayList RecIDIn = null; public String SY_Forms_ClassName = null; public String SY_Forms_ClassNameStartsWith = null; public String SY_Forms_ClassNameEndsWith = null; public String SY_Forms_ClassNameContains = null; public String SY_Forms_ClassNameLike = null; public ArrayList SY_Forms_ClassNameBetween = null; public ArrayList SY_Forms_ClassNameIn = null; public String HR_Staff_RecID = null; public String HR_Staff_RecIDStartsWith = null; public String HR_Staff_RecIDEndsWith = null; public String HR_Staff_RecIDContains = null; public String HR_Staff_RecIDLike = null; public ArrayList HR_Staff_RecIDBetween = null; public ArrayList HR_Staff_RecIDIn = null; public Short WindowState = null; public Short WindowStateGreaterThanOrEqualTo = null; public Short WindowStateGreaterThan = null; public Short WindowStateLessThan = null; public Short WindowStateLessThanOrEqualTo = null; public Short WindowStateNotEqualTo = null; public ArrayList WindowStateBetween = null; public ArrayList WindowStateIn = null; public Integer Top = null; public Integer TopGreaterThanOrEqualTo = null; public Integer TopGreaterThan = null; public Integer TopLessThan = null; public Integer TopLessThanOrEqualTo = null; public Integer TopNotEqualTo = null; public ArrayList TopBetween = null; public ArrayList TopIn = null; public Integer Left = null; public Integer LeftGreaterThanOrEqualTo = null; public Integer LeftGreaterThan = null; public Integer LeftLessThan = null; public Integer LeftLessThanOrEqualTo = null; public Integer LeftNotEqualTo = null; public ArrayList LeftBetween = null; public ArrayList LeftIn = null; public Integer Width = null; public Integer WidthGreaterThanOrEqualTo = null; public Integer WidthGreaterThan = null; public Integer WidthLessThan = null; public Integer WidthLessThanOrEqualTo = null; public Integer WidthNotEqualTo = null; public ArrayList WidthBetween = null; public ArrayList WidthIn = null; public Integer Height = null; public Integer HeightGreaterThanOrEqualTo = null; public Integer HeightGreaterThan = null; public Integer HeightLessThan = null; public Integer HeightLessThanOrEqualTo = null; public Integer HeightNotEqualTo = null; public ArrayList HeightBetween = null; public ArrayList HeightIn = null; public String Context = null; public String ContextStartsWith = null; public String ContextEndsWith = null; public String ContextContains = null; public String ContextLike = null; public ArrayList ContextBetween = null; public ArrayList ContextIn = null; public Boolean Floating = null; public String getRecID() { return RecID; } public SY_FormSettingsQuery setRecID(String value) { this.RecID = value; return this; } public String getRecIDStartsWith() { return RecIDStartsWith; } public SY_FormSettingsQuery setRecIDStartsWith(String value) { this.RecIDStartsWith = value; return this; } public String getRecIDEndsWith() { return RecIDEndsWith; } public SY_FormSettingsQuery setRecIDEndsWith(String value) { this.RecIDEndsWith = value; return this; } public String getRecIDContains() { return RecIDContains; } public SY_FormSettingsQuery setRecIDContains(String value) { this.RecIDContains = value; return this; } public String getRecIDLike() { return RecIDLike; } public SY_FormSettingsQuery setRecIDLike(String value) { this.RecIDLike = value; return this; } public ArrayList getRecIDBetween() { return RecIDBetween; } public SY_FormSettingsQuery setRecIDBetween(ArrayList value) { this.RecIDBetween = value; return this; } public ArrayList getRecIDIn() { return RecIDIn; } public SY_FormSettingsQuery setRecIDIn(ArrayList value) { this.RecIDIn = value; return this; } public String getSyFormsClassName() { return SY_Forms_ClassName; } public SY_FormSettingsQuery setSyFormsClassName(String value) { this.SY_Forms_ClassName = value; return this; } public String getSyFormsClassNameStartsWith() { return SY_Forms_ClassNameStartsWith; } public SY_FormSettingsQuery setSyFormsClassNameStartsWith(String value) { this.SY_Forms_ClassNameStartsWith = value; return this; } public String getSyFormsClassNameEndsWith() { return SY_Forms_ClassNameEndsWith; } public SY_FormSettingsQuery setSyFormsClassNameEndsWith(String value) { this.SY_Forms_ClassNameEndsWith = value; return this; } public String getSyFormsClassNameContains() { return SY_Forms_ClassNameContains; } public SY_FormSettingsQuery setSyFormsClassNameContains(String value) { this.SY_Forms_ClassNameContains = value; return this; } public String getSyFormsClassNameLike() { return SY_Forms_ClassNameLike; } public SY_FormSettingsQuery setSyFormsClassNameLike(String value) { this.SY_Forms_ClassNameLike = value; return this; } public ArrayList getSyFormsClassNameBetween() { return SY_Forms_ClassNameBetween; } public SY_FormSettingsQuery setSyFormsClassNameBetween(ArrayList value) { this.SY_Forms_ClassNameBetween = value; return this; } public ArrayList getSyFormsClassNameIn() { return SY_Forms_ClassNameIn; } public SY_FormSettingsQuery setSyFormsClassNameIn(ArrayList value) { this.SY_Forms_ClassNameIn = value; return this; } public String getHrStaffRecID() { return HR_Staff_RecID; } public SY_FormSettingsQuery setHrStaffRecID(String value) { this.HR_Staff_RecID = value; return this; } public String getHrStaffRecIDStartsWith() { return HR_Staff_RecIDStartsWith; } public SY_FormSettingsQuery setHrStaffRecIDStartsWith(String value) { this.HR_Staff_RecIDStartsWith = value; return this; } public String getHrStaffRecIDEndsWith() { return HR_Staff_RecIDEndsWith; } public SY_FormSettingsQuery setHrStaffRecIDEndsWith(String value) { this.HR_Staff_RecIDEndsWith = value; return this; } public String getHrStaffRecIDContains() { return HR_Staff_RecIDContains; } public SY_FormSettingsQuery setHrStaffRecIDContains(String value) { this.HR_Staff_RecIDContains = value; return this; } public String getHrStaffRecIDLike() { return HR_Staff_RecIDLike; } public SY_FormSettingsQuery setHrStaffRecIDLike(String value) { this.HR_Staff_RecIDLike = value; return this; } public ArrayList getHrStaffRecIDBetween() { return HR_Staff_RecIDBetween; } public SY_FormSettingsQuery setHrStaffRecIDBetween(ArrayList value) { this.HR_Staff_RecIDBetween = value; return this; } public ArrayList getHrStaffRecIDIn() { return HR_Staff_RecIDIn; } public SY_FormSettingsQuery setHrStaffRecIDIn(ArrayList value) { this.HR_Staff_RecIDIn = value; return this; } public Short getWindowState() { return WindowState; } public SY_FormSettingsQuery setWindowState(Short value) { this.WindowState = value; return this; } public Short getWindowStateGreaterThanOrEqualTo() { return WindowStateGreaterThanOrEqualTo; } public SY_FormSettingsQuery setWindowStateGreaterThanOrEqualTo(Short value) { this.WindowStateGreaterThanOrEqualTo = value; return this; } public Short getWindowStateGreaterThan() { return WindowStateGreaterThan; } public SY_FormSettingsQuery setWindowStateGreaterThan(Short value) { this.WindowStateGreaterThan = value; return this; } public Short getWindowStateLessThan() { return WindowStateLessThan; } public SY_FormSettingsQuery setWindowStateLessThan(Short value) { this.WindowStateLessThan = value; return this; } public Short getWindowStateLessThanOrEqualTo() { return WindowStateLessThanOrEqualTo; } public SY_FormSettingsQuery setWindowStateLessThanOrEqualTo(Short value) { this.WindowStateLessThanOrEqualTo = value; return this; } public Short getWindowStateNotEqualTo() { return WindowStateNotEqualTo; } public SY_FormSettingsQuery setWindowStateNotEqualTo(Short value) { this.WindowStateNotEqualTo = value; return this; } public ArrayList getWindowStateBetween() { return WindowStateBetween; } public SY_FormSettingsQuery setWindowStateBetween(ArrayList value) { this.WindowStateBetween = value; return this; } public ArrayList getWindowStateIn() { return WindowStateIn; } public SY_FormSettingsQuery setWindowStateIn(ArrayList value) { this.WindowStateIn = value; return this; } public Integer getTop() { return Top; } public SY_FormSettingsQuery setTop(Integer value) { this.Top = value; return this; } public Integer getTopGreaterThanOrEqualTo() { return TopGreaterThanOrEqualTo; } public SY_FormSettingsQuery setTopGreaterThanOrEqualTo(Integer value) { this.TopGreaterThanOrEqualTo = value; return this; } public Integer getTopGreaterThan() { return TopGreaterThan; } public SY_FormSettingsQuery setTopGreaterThan(Integer value) { this.TopGreaterThan = value; return this; } public Integer getTopLessThan() { return TopLessThan; } public SY_FormSettingsQuery setTopLessThan(Integer value) { this.TopLessThan = value; return this; } public Integer getTopLessThanOrEqualTo() { return TopLessThanOrEqualTo; } public SY_FormSettingsQuery setTopLessThanOrEqualTo(Integer value) { this.TopLessThanOrEqualTo = value; return this; } public Integer getTopNotEqualTo() { return TopNotEqualTo; } public SY_FormSettingsQuery setTopNotEqualTo(Integer value) { this.TopNotEqualTo = value; return this; } public ArrayList getTopBetween() { return TopBetween; } public SY_FormSettingsQuery setTopBetween(ArrayList value) { this.TopBetween = value; return this; } public ArrayList getTopIn() { return TopIn; } public SY_FormSettingsQuery setTopIn(ArrayList value) { this.TopIn = value; return this; } public Integer getLeft() { return Left; } public SY_FormSettingsQuery setLeft(Integer value) { this.Left = value; return this; } public Integer getLeftGreaterThanOrEqualTo() { return LeftGreaterThanOrEqualTo; } public SY_FormSettingsQuery setLeftGreaterThanOrEqualTo(Integer value) { this.LeftGreaterThanOrEqualTo = value; return this; } public Integer getLeftGreaterThan() { return LeftGreaterThan; } public SY_FormSettingsQuery setLeftGreaterThan(Integer value) { this.LeftGreaterThan = value; return this; } public Integer getLeftLessThan() { return LeftLessThan; } public SY_FormSettingsQuery setLeftLessThan(Integer value) { this.LeftLessThan = value; return this; } public Integer getLeftLessThanOrEqualTo() { return LeftLessThanOrEqualTo; } public SY_FormSettingsQuery setLeftLessThanOrEqualTo(Integer value) { this.LeftLessThanOrEqualTo = value; return this; } public Integer getLeftNotEqualTo() { return LeftNotEqualTo; } public SY_FormSettingsQuery setLeftNotEqualTo(Integer value) { this.LeftNotEqualTo = value; return this; } public ArrayList getLeftBetween() { return LeftBetween; } public SY_FormSettingsQuery setLeftBetween(ArrayList value) { this.LeftBetween = value; return this; } public ArrayList getLeftIn() { return LeftIn; } public SY_FormSettingsQuery setLeftIn(ArrayList value) { this.LeftIn = value; return this; } public Integer getWidth() { return Width; } public SY_FormSettingsQuery setWidth(Integer value) { this.Width = value; return this; } public Integer getWidthGreaterThanOrEqualTo() { return WidthGreaterThanOrEqualTo; } public SY_FormSettingsQuery setWidthGreaterThanOrEqualTo(Integer value) { this.WidthGreaterThanOrEqualTo = value; return this; } public Integer getWidthGreaterThan() { return WidthGreaterThan; } public SY_FormSettingsQuery setWidthGreaterThan(Integer value) { this.WidthGreaterThan = value; return this; } public Integer getWidthLessThan() { return WidthLessThan; } public SY_FormSettingsQuery setWidthLessThan(Integer value) { this.WidthLessThan = value; return this; } public Integer getWidthLessThanOrEqualTo() { return WidthLessThanOrEqualTo; } public SY_FormSettingsQuery setWidthLessThanOrEqualTo(Integer value) { this.WidthLessThanOrEqualTo = value; return this; } public Integer getWidthNotEqualTo() { return WidthNotEqualTo; } public SY_FormSettingsQuery setWidthNotEqualTo(Integer value) { this.WidthNotEqualTo = value; return this; } public ArrayList getWidthBetween() { return WidthBetween; } public SY_FormSettingsQuery setWidthBetween(ArrayList value) { this.WidthBetween = value; return this; } public ArrayList getWidthIn() { return WidthIn; } public SY_FormSettingsQuery setWidthIn(ArrayList value) { this.WidthIn = value; return this; } public Integer getHeight() { return Height; } public SY_FormSettingsQuery setHeight(Integer value) { this.Height = value; return this; } public Integer getHeightGreaterThanOrEqualTo() { return HeightGreaterThanOrEqualTo; } public SY_FormSettingsQuery setHeightGreaterThanOrEqualTo(Integer value) { this.HeightGreaterThanOrEqualTo = value; return this; } public Integer getHeightGreaterThan() { return HeightGreaterThan; } public SY_FormSettingsQuery setHeightGreaterThan(Integer value) { this.HeightGreaterThan = value; return this; } public Integer getHeightLessThan() { return HeightLessThan; } public SY_FormSettingsQuery setHeightLessThan(Integer value) { this.HeightLessThan = value; return this; } public Integer getHeightLessThanOrEqualTo() { return HeightLessThanOrEqualTo; } public SY_FormSettingsQuery setHeightLessThanOrEqualTo(Integer value) { this.HeightLessThanOrEqualTo = value; return this; } public Integer getHeightNotEqualTo() { return HeightNotEqualTo; } public SY_FormSettingsQuery setHeightNotEqualTo(Integer value) { this.HeightNotEqualTo = value; return this; } public ArrayList getHeightBetween() { return HeightBetween; } public SY_FormSettingsQuery setHeightBetween(ArrayList value) { this.HeightBetween = value; return this; } public ArrayList getHeightIn() { return HeightIn; } public SY_FormSettingsQuery setHeightIn(ArrayList value) { this.HeightIn = value; return this; } public String getContext() { return Context; } public SY_FormSettingsQuery setContext(String value) { this.Context = value; return this; } public String getContextStartsWith() { return ContextStartsWith; } public SY_FormSettingsQuery setContextStartsWith(String value) { this.ContextStartsWith = value; return this; } public String getContextEndsWith() { return ContextEndsWith; } public SY_FormSettingsQuery setContextEndsWith(String value) { this.ContextEndsWith = value; return this; } public String getContextContains() { return ContextContains; } public SY_FormSettingsQuery setContextContains(String value) { this.ContextContains = value; return this; } public String getContextLike() { return ContextLike; } public SY_FormSettingsQuery setContextLike(String value) { this.ContextLike = value; return this; } public ArrayList getContextBetween() { return ContextBetween; } public SY_FormSettingsQuery setContextBetween(ArrayList value) { this.ContextBetween = value; return this; } public ArrayList getContextIn() { return ContextIn; } public SY_FormSettingsQuery setContextIn(ArrayList value) { this.ContextIn = value; return this; } public Boolean isFloating() { return Floating; } public SY_FormSettingsQuery setFloating(Boolean value) { this.Floating = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class SY_IconQuery extends QueryDb implements IReturn> { public String RecID = null; public String RecIDStartsWith = null; public String RecIDEndsWith = null; public String RecIDContains = null; public String RecIDLike = null; public ArrayList RecIDBetween = null; public ArrayList RecIDIn = null; public String Name = null; public String NameStartsWith = null; public String NameEndsWith = null; public String NameContains = null; public String NameLike = null; public ArrayList NameBetween = null; public ArrayList NameIn = null; public String Description = null; public String DescriptionStartsWith = null; public String DescriptionEndsWith = null; public String DescriptionContains = null; public String DescriptionLike = null; public ArrayList DescriptionBetween = null; public ArrayList DescriptionIn = null; public ArrayList IconBinary = null; public String IconFileHash = null; public String IconFileHashStartsWith = null; public String IconFileHashEndsWith = null; public String IconFileHashContains = null; public String IconFileHashLike = null; public ArrayList IconFileHashBetween = null; public ArrayList IconFileHashIn = null; public Boolean IsReadOnly = null; public ArrayList RowHash = null; public String getRecID() { return RecID; } public SY_IconQuery setRecID(String value) { this.RecID = value; return this; } public String getRecIDStartsWith() { return RecIDStartsWith; } public SY_IconQuery setRecIDStartsWith(String value) { this.RecIDStartsWith = value; return this; } public String getRecIDEndsWith() { return RecIDEndsWith; } public SY_IconQuery setRecIDEndsWith(String value) { this.RecIDEndsWith = value; return this; } public String getRecIDContains() { return RecIDContains; } public SY_IconQuery setRecIDContains(String value) { this.RecIDContains = value; return this; } public String getRecIDLike() { return RecIDLike; } public SY_IconQuery setRecIDLike(String value) { this.RecIDLike = value; return this; } public ArrayList getRecIDBetween() { return RecIDBetween; } public SY_IconQuery setRecIDBetween(ArrayList value) { this.RecIDBetween = value; return this; } public ArrayList getRecIDIn() { return RecIDIn; } public SY_IconQuery setRecIDIn(ArrayList value) { this.RecIDIn = value; return this; } public String getName() { return Name; } public SY_IconQuery setName(String value) { this.Name = value; return this; } public String getNameStartsWith() { return NameStartsWith; } public SY_IconQuery setNameStartsWith(String value) { this.NameStartsWith = value; return this; } public String getNameEndsWith() { return NameEndsWith; } public SY_IconQuery setNameEndsWith(String value) { this.NameEndsWith = value; return this; } public String getNameContains() { return NameContains; } public SY_IconQuery setNameContains(String value) { this.NameContains = value; return this; } public String getNameLike() { return NameLike; } public SY_IconQuery setNameLike(String value) { this.NameLike = value; return this; } public ArrayList getNameBetween() { return NameBetween; } public SY_IconQuery setNameBetween(ArrayList value) { this.NameBetween = value; return this; } public ArrayList getNameIn() { return NameIn; } public SY_IconQuery setNameIn(ArrayList value) { this.NameIn = value; return this; } public String getDescription() { return Description; } public SY_IconQuery setDescription(String value) { this.Description = value; return this; } public String getDescriptionStartsWith() { return DescriptionStartsWith; } public SY_IconQuery setDescriptionStartsWith(String value) { this.DescriptionStartsWith = value; return this; } public String getDescriptionEndsWith() { return DescriptionEndsWith; } public SY_IconQuery setDescriptionEndsWith(String value) { this.DescriptionEndsWith = value; return this; } public String getDescriptionContains() { return DescriptionContains; } public SY_IconQuery setDescriptionContains(String value) { this.DescriptionContains = value; return this; } public String getDescriptionLike() { return DescriptionLike; } public SY_IconQuery setDescriptionLike(String value) { this.DescriptionLike = value; return this; } public ArrayList getDescriptionBetween() { return DescriptionBetween; } public SY_IconQuery setDescriptionBetween(ArrayList value) { this.DescriptionBetween = value; return this; } public ArrayList getDescriptionIn() { return DescriptionIn; } public SY_IconQuery setDescriptionIn(ArrayList value) { this.DescriptionIn = value; return this; } public ArrayList getIconBinary() { return IconBinary; } public SY_IconQuery setIconBinary(ArrayList value) { this.IconBinary = value; return this; } public String getIconFileHash() { return IconFileHash; } public SY_IconQuery setIconFileHash(String value) { this.IconFileHash = value; return this; } public String getIconFileHashStartsWith() { return IconFileHashStartsWith; } public SY_IconQuery setIconFileHashStartsWith(String value) { this.IconFileHashStartsWith = value; return this; } public String getIconFileHashEndsWith() { return IconFileHashEndsWith; } public SY_IconQuery setIconFileHashEndsWith(String value) { this.IconFileHashEndsWith = value; return this; } public String getIconFileHashContains() { return IconFileHashContains; } public SY_IconQuery setIconFileHashContains(String value) { this.IconFileHashContains = value; return this; } public String getIconFileHashLike() { return IconFileHashLike; } public SY_IconQuery setIconFileHashLike(String value) { this.IconFileHashLike = value; return this; } public ArrayList getIconFileHashBetween() { return IconFileHashBetween; } public SY_IconQuery setIconFileHashBetween(ArrayList value) { this.IconFileHashBetween = value; return this; } public ArrayList getIconFileHashIn() { return IconFileHashIn; } public SY_IconQuery setIconFileHashIn(ArrayList value) { this.IconFileHashIn = value; return this; } public Boolean getIsReadOnly() { return IsReadOnly; } public SY_IconQuery setIsReadOnly(Boolean value) { this.IsReadOnly = value; return this; } public ArrayList getRowHash() { return RowHash; } public SY_IconQuery setRowHash(ArrayList value) { this.RowHash = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class SY_ImageQuery extends QueryDb implements IReturn> { public UUID RecID = null; public ArrayList RecIDIn = null; public String Name = null; public String NameStartsWith = null; public String NameEndsWith = null; public String NameContains = null; public String NameLike = null; public ArrayList NameBetween = null; public ArrayList NameIn = null; public ArrayList ImageBinary = null; public Boolean IsReadOnly = null; public Integer ItemNo = null; public Integer ItemNoGreaterThanOrEqualTo = null; public Integer ItemNoGreaterThan = null; public Integer ItemNoLessThan = null; public Integer ItemNoLessThanOrEqualTo = null; public Integer ItemNoNotEqualTo = null; public ArrayList ItemNoBetween = null; public ArrayList ItemNoIn = null; public Date LastSavedDateTime = null; public Date LastSavedDateTimeGreaterThanOrEqualTo = null; public Date LastSavedDateTimeGreaterThan = null; public Date LastSavedDateTimeLessThan = null; public Date LastSavedDateTimeLessThanOrEqualTo = null; public Date LastSavedDateTimeNotEqualTo = null; public ArrayList LastSavedDateTimeBetween = null; public ArrayList LastSavedDateTimeIn = null; public ArrayList RowHash = null; public UUID getRecID() { return RecID; } public SY_ImageQuery setRecID(UUID value) { this.RecID = value; return this; } public ArrayList getRecIDIn() { return RecIDIn; } public SY_ImageQuery setRecIDIn(ArrayList value) { this.RecIDIn = value; return this; } public String getName() { return Name; } public SY_ImageQuery setName(String value) { this.Name = value; return this; } public String getNameStartsWith() { return NameStartsWith; } public SY_ImageQuery setNameStartsWith(String value) { this.NameStartsWith = value; return this; } public String getNameEndsWith() { return NameEndsWith; } public SY_ImageQuery setNameEndsWith(String value) { this.NameEndsWith = value; return this; } public String getNameContains() { return NameContains; } public SY_ImageQuery setNameContains(String value) { this.NameContains = value; return this; } public String getNameLike() { return NameLike; } public SY_ImageQuery setNameLike(String value) { this.NameLike = value; return this; } public ArrayList getNameBetween() { return NameBetween; } public SY_ImageQuery setNameBetween(ArrayList value) { this.NameBetween = value; return this; } public ArrayList getNameIn() { return NameIn; } public SY_ImageQuery setNameIn(ArrayList value) { this.NameIn = value; return this; } public ArrayList getImageBinary() { return ImageBinary; } public SY_ImageQuery setImageBinary(ArrayList value) { this.ImageBinary = value; return this; } public Boolean getIsReadOnly() { return IsReadOnly; } public SY_ImageQuery setIsReadOnly(Boolean value) { this.IsReadOnly = value; return this; } public Integer getItemNo() { return ItemNo; } public SY_ImageQuery setItemNo(Integer value) { this.ItemNo = value; return this; } public Integer getItemNoGreaterThanOrEqualTo() { return ItemNoGreaterThanOrEqualTo; } public SY_ImageQuery setItemNoGreaterThanOrEqualTo(Integer value) { this.ItemNoGreaterThanOrEqualTo = value; return this; } public Integer getItemNoGreaterThan() { return ItemNoGreaterThan; } public SY_ImageQuery setItemNoGreaterThan(Integer value) { this.ItemNoGreaterThan = value; return this; } public Integer getItemNoLessThan() { return ItemNoLessThan; } public SY_ImageQuery setItemNoLessThan(Integer value) { this.ItemNoLessThan = value; return this; } public Integer getItemNoLessThanOrEqualTo() { return ItemNoLessThanOrEqualTo; } public SY_ImageQuery setItemNoLessThanOrEqualTo(Integer value) { this.ItemNoLessThanOrEqualTo = value; return this; } public Integer getItemNoNotEqualTo() { return ItemNoNotEqualTo; } public SY_ImageQuery setItemNoNotEqualTo(Integer value) { this.ItemNoNotEqualTo = value; return this; } public ArrayList getItemNoBetween() { return ItemNoBetween; } public SY_ImageQuery setItemNoBetween(ArrayList value) { this.ItemNoBetween = value; return this; } public ArrayList getItemNoIn() { return ItemNoIn; } public SY_ImageQuery setItemNoIn(ArrayList value) { this.ItemNoIn = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public SY_ImageQuery setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getLastSavedDateTimeGreaterThanOrEqualTo() { return LastSavedDateTimeGreaterThanOrEqualTo; } public SY_ImageQuery setLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.LastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeGreaterThan() { return LastSavedDateTimeGreaterThan; } public SY_ImageQuery setLastSavedDateTimeGreaterThan(Date value) { this.LastSavedDateTimeGreaterThan = value; return this; } public Date getLastSavedDateTimeLessThan() { return LastSavedDateTimeLessThan; } public SY_ImageQuery setLastSavedDateTimeLessThan(Date value) { this.LastSavedDateTimeLessThan = value; return this; } public Date getLastSavedDateTimeLessThanOrEqualTo() { return LastSavedDateTimeLessThanOrEqualTo; } public SY_ImageQuery setLastSavedDateTimeLessThanOrEqualTo(Date value) { this.LastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeNotEqualTo() { return LastSavedDateTimeNotEqualTo; } public SY_ImageQuery setLastSavedDateTimeNotEqualTo(Date value) { this.LastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getLastSavedDateTimeBetween() { return LastSavedDateTimeBetween; } public SY_ImageQuery setLastSavedDateTimeBetween(ArrayList value) { this.LastSavedDateTimeBetween = value; return this; } public ArrayList getLastSavedDateTimeIn() { return LastSavedDateTimeIn; } public SY_ImageQuery setLastSavedDateTimeIn(ArrayList value) { this.LastSavedDateTimeIn = value; return this; } public ArrayList getRowHash() { return RowHash; } public SY_ImageQuery setRowHash(ArrayList value) { this.RowHash = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class SY_IntegrityCheckProviderQuery extends QueryDb implements IReturn> { public UUID RecID = null; public ArrayList RecIDIn = null; public String Name = null; public String NameStartsWith = null; public String NameEndsWith = null; public String NameContains = null; public String NameLike = null; public ArrayList NameBetween = null; public ArrayList NameIn = null; public String Description = null; public String DescriptionStartsWith = null; public String DescriptionEndsWith = null; public String DescriptionContains = null; public String DescriptionLike = null; public ArrayList DescriptionBetween = null; public ArrayList DescriptionIn = null; public Integer ItemNo = null; public Integer ItemNoGreaterThanOrEqualTo = null; public Integer ItemNoGreaterThan = null; public Integer ItemNoLessThan = null; public Integer ItemNoLessThanOrEqualTo = null; public Integer ItemNoNotEqualTo = null; public ArrayList ItemNoBetween = null; public ArrayList ItemNoIn = null; public String StoredProcedureName = null; public String StoredProcedureNameStartsWith = null; public String StoredProcedureNameEndsWith = null; public String StoredProcedureNameContains = null; public String StoredProcedureNameLike = null; public ArrayList StoredProcedureNameBetween = null; public ArrayList StoredProcedureNameIn = null; public ArrayList RowHash = null; public Boolean IsEnabled = null; public UUID getRecID() { return RecID; } public SY_IntegrityCheckProviderQuery setRecID(UUID value) { this.RecID = value; return this; } public ArrayList getRecIDIn() { return RecIDIn; } public SY_IntegrityCheckProviderQuery setRecIDIn(ArrayList value) { this.RecIDIn = value; return this; } public String getName() { return Name; } public SY_IntegrityCheckProviderQuery setName(String value) { this.Name = value; return this; } public String getNameStartsWith() { return NameStartsWith; } public SY_IntegrityCheckProviderQuery setNameStartsWith(String value) { this.NameStartsWith = value; return this; } public String getNameEndsWith() { return NameEndsWith; } public SY_IntegrityCheckProviderQuery setNameEndsWith(String value) { this.NameEndsWith = value; return this; } public String getNameContains() { return NameContains; } public SY_IntegrityCheckProviderQuery setNameContains(String value) { this.NameContains = value; return this; } public String getNameLike() { return NameLike; } public SY_IntegrityCheckProviderQuery setNameLike(String value) { this.NameLike = value; return this; } public ArrayList getNameBetween() { return NameBetween; } public SY_IntegrityCheckProviderQuery setNameBetween(ArrayList value) { this.NameBetween = value; return this; } public ArrayList getNameIn() { return NameIn; } public SY_IntegrityCheckProviderQuery setNameIn(ArrayList value) { this.NameIn = value; return this; } public String getDescription() { return Description; } public SY_IntegrityCheckProviderQuery setDescription(String value) { this.Description = value; return this; } public String getDescriptionStartsWith() { return DescriptionStartsWith; } public SY_IntegrityCheckProviderQuery setDescriptionStartsWith(String value) { this.DescriptionStartsWith = value; return this; } public String getDescriptionEndsWith() { return DescriptionEndsWith; } public SY_IntegrityCheckProviderQuery setDescriptionEndsWith(String value) { this.DescriptionEndsWith = value; return this; } public String getDescriptionContains() { return DescriptionContains; } public SY_IntegrityCheckProviderQuery setDescriptionContains(String value) { this.DescriptionContains = value; return this; } public String getDescriptionLike() { return DescriptionLike; } public SY_IntegrityCheckProviderQuery setDescriptionLike(String value) { this.DescriptionLike = value; return this; } public ArrayList getDescriptionBetween() { return DescriptionBetween; } public SY_IntegrityCheckProviderQuery setDescriptionBetween(ArrayList value) { this.DescriptionBetween = value; return this; } public ArrayList getDescriptionIn() { return DescriptionIn; } public SY_IntegrityCheckProviderQuery setDescriptionIn(ArrayList value) { this.DescriptionIn = value; return this; } public Integer getItemNo() { return ItemNo; } public SY_IntegrityCheckProviderQuery setItemNo(Integer value) { this.ItemNo = value; return this; } public Integer getItemNoGreaterThanOrEqualTo() { return ItemNoGreaterThanOrEqualTo; } public SY_IntegrityCheckProviderQuery setItemNoGreaterThanOrEqualTo(Integer value) { this.ItemNoGreaterThanOrEqualTo = value; return this; } public Integer getItemNoGreaterThan() { return ItemNoGreaterThan; } public SY_IntegrityCheckProviderQuery setItemNoGreaterThan(Integer value) { this.ItemNoGreaterThan = value; return this; } public Integer getItemNoLessThan() { return ItemNoLessThan; } public SY_IntegrityCheckProviderQuery setItemNoLessThan(Integer value) { this.ItemNoLessThan = value; return this; } public Integer getItemNoLessThanOrEqualTo() { return ItemNoLessThanOrEqualTo; } public SY_IntegrityCheckProviderQuery setItemNoLessThanOrEqualTo(Integer value) { this.ItemNoLessThanOrEqualTo = value; return this; } public Integer getItemNoNotEqualTo() { return ItemNoNotEqualTo; } public SY_IntegrityCheckProviderQuery setItemNoNotEqualTo(Integer value) { this.ItemNoNotEqualTo = value; return this; } public ArrayList getItemNoBetween() { return ItemNoBetween; } public SY_IntegrityCheckProviderQuery setItemNoBetween(ArrayList value) { this.ItemNoBetween = value; return this; } public ArrayList getItemNoIn() { return ItemNoIn; } public SY_IntegrityCheckProviderQuery setItemNoIn(ArrayList value) { this.ItemNoIn = value; return this; } public String getStoredProcedureName() { return StoredProcedureName; } public SY_IntegrityCheckProviderQuery setStoredProcedureName(String value) { this.StoredProcedureName = value; return this; } public String getStoredProcedureNameStartsWith() { return StoredProcedureNameStartsWith; } public SY_IntegrityCheckProviderQuery setStoredProcedureNameStartsWith(String value) { this.StoredProcedureNameStartsWith = value; return this; } public String getStoredProcedureNameEndsWith() { return StoredProcedureNameEndsWith; } public SY_IntegrityCheckProviderQuery setStoredProcedureNameEndsWith(String value) { this.StoredProcedureNameEndsWith = value; return this; } public String getStoredProcedureNameContains() { return StoredProcedureNameContains; } public SY_IntegrityCheckProviderQuery setStoredProcedureNameContains(String value) { this.StoredProcedureNameContains = value; return this; } public String getStoredProcedureNameLike() { return StoredProcedureNameLike; } public SY_IntegrityCheckProviderQuery setStoredProcedureNameLike(String value) { this.StoredProcedureNameLike = value; return this; } public ArrayList getStoredProcedureNameBetween() { return StoredProcedureNameBetween; } public SY_IntegrityCheckProviderQuery setStoredProcedureNameBetween(ArrayList value) { this.StoredProcedureNameBetween = value; return this; } public ArrayList getStoredProcedureNameIn() { return StoredProcedureNameIn; } public SY_IntegrityCheckProviderQuery setStoredProcedureNameIn(ArrayList value) { this.StoredProcedureNameIn = value; return this; } public ArrayList getRowHash() { return RowHash; } public SY_IntegrityCheckProviderQuery setRowHash(ArrayList value) { this.RowHash = value; return this; } public Boolean getIsEnabled() { return IsEnabled; } public SY_IntegrityCheckProviderQuery setIsEnabled(Boolean value) { this.IsEnabled = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class SY_InventoryImportSavedMappingsQuery extends QueryDb implements IReturn> { public String RecID = null; public String RecIDStartsWith = null; public String RecIDEndsWith = null; public String RecIDContains = null; public String RecIDLike = null; public ArrayList RecIDBetween = null; public ArrayList RecIDIn = null; public String SY_InventoryImportSavedMappingSets_RecID = null; public String SY_InventoryImportSavedMappingSets_RecIDStartsWith = null; public String SY_InventoryImportSavedMappingSets_RecIDEndsWith = null; public String SY_InventoryImportSavedMappingSets_RecIDContains = null; public String SY_InventoryImportSavedMappingSets_RecIDLike = null; public ArrayList SY_InventoryImportSavedMappingSets_RecIDBetween = null; public ArrayList SY_InventoryImportSavedMappingSets_RecIDIn = null; public String SourceColumnName = null; public String SourceColumnNameStartsWith = null; public String SourceColumnNameEndsWith = null; public String SourceColumnNameContains = null; public String SourceColumnNameLike = null; public ArrayList SourceColumnNameBetween = null; public ArrayList SourceColumnNameIn = null; public String DestinationProperty = null; public String DestinationPropertyStartsWith = null; public String DestinationPropertyEndsWith = null; public String DestinationPropertyContains = null; public String DestinationPropertyLike = null; public ArrayList DestinationPropertyBetween = null; public ArrayList DestinationPropertyIn = null; public ArrayList RowHash = null; public String getRecID() { return RecID; } public SY_InventoryImportSavedMappingsQuery setRecID(String value) { this.RecID = value; return this; } public String getRecIDStartsWith() { return RecIDStartsWith; } public SY_InventoryImportSavedMappingsQuery setRecIDStartsWith(String value) { this.RecIDStartsWith = value; return this; } public String getRecIDEndsWith() { return RecIDEndsWith; } public SY_InventoryImportSavedMappingsQuery setRecIDEndsWith(String value) { this.RecIDEndsWith = value; return this; } public String getRecIDContains() { return RecIDContains; } public SY_InventoryImportSavedMappingsQuery setRecIDContains(String value) { this.RecIDContains = value; return this; } public String getRecIDLike() { return RecIDLike; } public SY_InventoryImportSavedMappingsQuery setRecIDLike(String value) { this.RecIDLike = value; return this; } public ArrayList getRecIDBetween() { return RecIDBetween; } public SY_InventoryImportSavedMappingsQuery setRecIDBetween(ArrayList value) { this.RecIDBetween = value; return this; } public ArrayList getRecIDIn() { return RecIDIn; } public SY_InventoryImportSavedMappingsQuery setRecIDIn(ArrayList value) { this.RecIDIn = value; return this; } public String getSyInventoryImportSavedMappingSetsRecID() { return SY_InventoryImportSavedMappingSets_RecID; } public SY_InventoryImportSavedMappingsQuery setSyInventoryImportSavedMappingSetsRecID(String value) { this.SY_InventoryImportSavedMappingSets_RecID = value; return this; } public String getSyInventoryImportSavedMappingSetsRecIDStartsWith() { return SY_InventoryImportSavedMappingSets_RecIDStartsWith; } public SY_InventoryImportSavedMappingsQuery setSyInventoryImportSavedMappingSetsRecIDStartsWith(String value) { this.SY_InventoryImportSavedMappingSets_RecIDStartsWith = value; return this; } public String getSyInventoryImportSavedMappingSetsRecIDEndsWith() { return SY_InventoryImportSavedMappingSets_RecIDEndsWith; } public SY_InventoryImportSavedMappingsQuery setSyInventoryImportSavedMappingSetsRecIDEndsWith(String value) { this.SY_InventoryImportSavedMappingSets_RecIDEndsWith = value; return this; } public String getSyInventoryImportSavedMappingSetsRecIDContains() { return SY_InventoryImportSavedMappingSets_RecIDContains; } public SY_InventoryImportSavedMappingsQuery setSyInventoryImportSavedMappingSetsRecIDContains(String value) { this.SY_InventoryImportSavedMappingSets_RecIDContains = value; return this; } public String getSyInventoryImportSavedMappingSetsRecIDLike() { return SY_InventoryImportSavedMappingSets_RecIDLike; } public SY_InventoryImportSavedMappingsQuery setSyInventoryImportSavedMappingSetsRecIDLike(String value) { this.SY_InventoryImportSavedMappingSets_RecIDLike = value; return this; } public ArrayList getSyInventoryImportSavedMappingSetsRecIDBetween() { return SY_InventoryImportSavedMappingSets_RecIDBetween; } public SY_InventoryImportSavedMappingsQuery setSyInventoryImportSavedMappingSetsRecIDBetween(ArrayList value) { this.SY_InventoryImportSavedMappingSets_RecIDBetween = value; return this; } public ArrayList getSyInventoryImportSavedMappingSetsRecIDIn() { return SY_InventoryImportSavedMappingSets_RecIDIn; } public SY_InventoryImportSavedMappingsQuery setSyInventoryImportSavedMappingSetsRecIDIn(ArrayList value) { this.SY_InventoryImportSavedMappingSets_RecIDIn = value; return this; } public String getSourceColumnName() { return SourceColumnName; } public SY_InventoryImportSavedMappingsQuery setSourceColumnName(String value) { this.SourceColumnName = value; return this; } public String getSourceColumnNameStartsWith() { return SourceColumnNameStartsWith; } public SY_InventoryImportSavedMappingsQuery setSourceColumnNameStartsWith(String value) { this.SourceColumnNameStartsWith = value; return this; } public String getSourceColumnNameEndsWith() { return SourceColumnNameEndsWith; } public SY_InventoryImportSavedMappingsQuery setSourceColumnNameEndsWith(String value) { this.SourceColumnNameEndsWith = value; return this; } public String getSourceColumnNameContains() { return SourceColumnNameContains; } public SY_InventoryImportSavedMappingsQuery setSourceColumnNameContains(String value) { this.SourceColumnNameContains = value; return this; } public String getSourceColumnNameLike() { return SourceColumnNameLike; } public SY_InventoryImportSavedMappingsQuery setSourceColumnNameLike(String value) { this.SourceColumnNameLike = value; return this; } public ArrayList getSourceColumnNameBetween() { return SourceColumnNameBetween; } public SY_InventoryImportSavedMappingsQuery setSourceColumnNameBetween(ArrayList value) { this.SourceColumnNameBetween = value; return this; } public ArrayList getSourceColumnNameIn() { return SourceColumnNameIn; } public SY_InventoryImportSavedMappingsQuery setSourceColumnNameIn(ArrayList value) { this.SourceColumnNameIn = value; return this; } public String getDestinationProperty() { return DestinationProperty; } public SY_InventoryImportSavedMappingsQuery setDestinationProperty(String value) { this.DestinationProperty = value; return this; } public String getDestinationPropertyStartsWith() { return DestinationPropertyStartsWith; } public SY_InventoryImportSavedMappingsQuery setDestinationPropertyStartsWith(String value) { this.DestinationPropertyStartsWith = value; return this; } public String getDestinationPropertyEndsWith() { return DestinationPropertyEndsWith; } public SY_InventoryImportSavedMappingsQuery setDestinationPropertyEndsWith(String value) { this.DestinationPropertyEndsWith = value; return this; } public String getDestinationPropertyContains() { return DestinationPropertyContains; } public SY_InventoryImportSavedMappingsQuery setDestinationPropertyContains(String value) { this.DestinationPropertyContains = value; return this; } public String getDestinationPropertyLike() { return DestinationPropertyLike; } public SY_InventoryImportSavedMappingsQuery setDestinationPropertyLike(String value) { this.DestinationPropertyLike = value; return this; } public ArrayList getDestinationPropertyBetween() { return DestinationPropertyBetween; } public SY_InventoryImportSavedMappingsQuery setDestinationPropertyBetween(ArrayList value) { this.DestinationPropertyBetween = value; return this; } public ArrayList getDestinationPropertyIn() { return DestinationPropertyIn; } public SY_InventoryImportSavedMappingsQuery setDestinationPropertyIn(ArrayList value) { this.DestinationPropertyIn = value; return this; } public ArrayList getRowHash() { return RowHash; } public SY_InventoryImportSavedMappingsQuery setRowHash(ArrayList value) { this.RowHash = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class SY_InventoryImportSavedMappingSetsQuery extends QueryDb implements IReturn> { public String RecID = null; public String RecIDStartsWith = null; public String RecIDEndsWith = null; public String RecIDContains = null; public String RecIDLike = null; public ArrayList RecIDBetween = null; public ArrayList RecIDIn = null; public Date LastSavedDateTime = null; public Date LastSavedDateTimeGreaterThanOrEqualTo = null; public Date LastSavedDateTimeGreaterThan = null; public Date LastSavedDateTimeLessThan = null; public Date LastSavedDateTimeLessThanOrEqualTo = null; public Date LastSavedDateTimeNotEqualTo = null; public ArrayList LastSavedDateTimeBetween = null; public ArrayList LastSavedDateTimeIn = null; public String HR_Staff_RecID = null; public String HR_Staff_RecIDStartsWith = null; public String HR_Staff_RecIDEndsWith = null; public String HR_Staff_RecIDContains = null; public String HR_Staff_RecIDLike = null; public ArrayList HR_Staff_RecIDBetween = null; public ArrayList HR_Staff_RecIDIn = null; public String Name = null; public String NameStartsWith = null; public String NameEndsWith = null; public String NameContains = null; public String NameLike = null; public ArrayList NameBetween = null; public ArrayList NameIn = null; public String getRecID() { return RecID; } public SY_InventoryImportSavedMappingSetsQuery setRecID(String value) { this.RecID = value; return this; } public String getRecIDStartsWith() { return RecIDStartsWith; } public SY_InventoryImportSavedMappingSetsQuery setRecIDStartsWith(String value) { this.RecIDStartsWith = value; return this; } public String getRecIDEndsWith() { return RecIDEndsWith; } public SY_InventoryImportSavedMappingSetsQuery setRecIDEndsWith(String value) { this.RecIDEndsWith = value; return this; } public String getRecIDContains() { return RecIDContains; } public SY_InventoryImportSavedMappingSetsQuery setRecIDContains(String value) { this.RecIDContains = value; return this; } public String getRecIDLike() { return RecIDLike; } public SY_InventoryImportSavedMappingSetsQuery setRecIDLike(String value) { this.RecIDLike = value; return this; } public ArrayList getRecIDBetween() { return RecIDBetween; } public SY_InventoryImportSavedMappingSetsQuery setRecIDBetween(ArrayList value) { this.RecIDBetween = value; return this; } public ArrayList getRecIDIn() { return RecIDIn; } public SY_InventoryImportSavedMappingSetsQuery setRecIDIn(ArrayList value) { this.RecIDIn = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public SY_InventoryImportSavedMappingSetsQuery setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getLastSavedDateTimeGreaterThanOrEqualTo() { return LastSavedDateTimeGreaterThanOrEqualTo; } public SY_InventoryImportSavedMappingSetsQuery setLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.LastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeGreaterThan() { return LastSavedDateTimeGreaterThan; } public SY_InventoryImportSavedMappingSetsQuery setLastSavedDateTimeGreaterThan(Date value) { this.LastSavedDateTimeGreaterThan = value; return this; } public Date getLastSavedDateTimeLessThan() { return LastSavedDateTimeLessThan; } public SY_InventoryImportSavedMappingSetsQuery setLastSavedDateTimeLessThan(Date value) { this.LastSavedDateTimeLessThan = value; return this; } public Date getLastSavedDateTimeLessThanOrEqualTo() { return LastSavedDateTimeLessThanOrEqualTo; } public SY_InventoryImportSavedMappingSetsQuery setLastSavedDateTimeLessThanOrEqualTo(Date value) { this.LastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeNotEqualTo() { return LastSavedDateTimeNotEqualTo; } public SY_InventoryImportSavedMappingSetsQuery setLastSavedDateTimeNotEqualTo(Date value) { this.LastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getLastSavedDateTimeBetween() { return LastSavedDateTimeBetween; } public SY_InventoryImportSavedMappingSetsQuery setLastSavedDateTimeBetween(ArrayList value) { this.LastSavedDateTimeBetween = value; return this; } public ArrayList getLastSavedDateTimeIn() { return LastSavedDateTimeIn; } public SY_InventoryImportSavedMappingSetsQuery setLastSavedDateTimeIn(ArrayList value) { this.LastSavedDateTimeIn = value; return this; } public String getHrStaffRecID() { return HR_Staff_RecID; } public SY_InventoryImportSavedMappingSetsQuery setHrStaffRecID(String value) { this.HR_Staff_RecID = value; return this; } public String getHrStaffRecIDStartsWith() { return HR_Staff_RecIDStartsWith; } public SY_InventoryImportSavedMappingSetsQuery setHrStaffRecIDStartsWith(String value) { this.HR_Staff_RecIDStartsWith = value; return this; } public String getHrStaffRecIDEndsWith() { return HR_Staff_RecIDEndsWith; } public SY_InventoryImportSavedMappingSetsQuery setHrStaffRecIDEndsWith(String value) { this.HR_Staff_RecIDEndsWith = value; return this; } public String getHrStaffRecIDContains() { return HR_Staff_RecIDContains; } public SY_InventoryImportSavedMappingSetsQuery setHrStaffRecIDContains(String value) { this.HR_Staff_RecIDContains = value; return this; } public String getHrStaffRecIDLike() { return HR_Staff_RecIDLike; } public SY_InventoryImportSavedMappingSetsQuery setHrStaffRecIDLike(String value) { this.HR_Staff_RecIDLike = value; return this; } public ArrayList getHrStaffRecIDBetween() { return HR_Staff_RecIDBetween; } public SY_InventoryImportSavedMappingSetsQuery setHrStaffRecIDBetween(ArrayList value) { this.HR_Staff_RecIDBetween = value; return this; } public ArrayList getHrStaffRecIDIn() { return HR_Staff_RecIDIn; } public SY_InventoryImportSavedMappingSetsQuery setHrStaffRecIDIn(ArrayList value) { this.HR_Staff_RecIDIn = value; return this; } public String getName() { return Name; } public SY_InventoryImportSavedMappingSetsQuery setName(String value) { this.Name = value; return this; } public String getNameStartsWith() { return NameStartsWith; } public SY_InventoryImportSavedMappingSetsQuery setNameStartsWith(String value) { this.NameStartsWith = value; return this; } public String getNameEndsWith() { return NameEndsWith; } public SY_InventoryImportSavedMappingSetsQuery setNameEndsWith(String value) { this.NameEndsWith = value; return this; } public String getNameContains() { return NameContains; } public SY_InventoryImportSavedMappingSetsQuery setNameContains(String value) { this.NameContains = value; return this; } public String getNameLike() { return NameLike; } public SY_InventoryImportSavedMappingSetsQuery setNameLike(String value) { this.NameLike = value; return this; } public ArrayList getNameBetween() { return NameBetween; } public SY_InventoryImportSavedMappingSetsQuery setNameBetween(ArrayList value) { this.NameBetween = value; return this; } public ArrayList getNameIn() { return NameIn; } public SY_InventoryImportSavedMappingSetsQuery setNameIn(ArrayList value) { this.NameIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class SY_LanguageQuery extends QueryDb implements IReturn> { public String RecID = null; public String RecIDStartsWith = null; public String RecIDEndsWith = null; public String RecIDContains = null; public String RecIDLike = null; public ArrayList RecIDBetween = null; public ArrayList RecIDIn = null; public String Description = null; public String DescriptionStartsWith = null; public String DescriptionEndsWith = null; public String DescriptionContains = null; public String DescriptionLike = null; public ArrayList DescriptionBetween = null; public ArrayList DescriptionIn = null; public String LanguageCode = null; public String LanguageCodeStartsWith = null; public String LanguageCodeEndsWith = null; public String LanguageCodeContains = null; public String LanguageCodeLike = null; public ArrayList LanguageCodeBetween = null; public ArrayList LanguageCodeIn = null; public Boolean IsDefault = null; public String getRecID() { return RecID; } public SY_LanguageQuery setRecID(String value) { this.RecID = value; return this; } public String getRecIDStartsWith() { return RecIDStartsWith; } public SY_LanguageQuery setRecIDStartsWith(String value) { this.RecIDStartsWith = value; return this; } public String getRecIDEndsWith() { return RecIDEndsWith; } public SY_LanguageQuery setRecIDEndsWith(String value) { this.RecIDEndsWith = value; return this; } public String getRecIDContains() { return RecIDContains; } public SY_LanguageQuery setRecIDContains(String value) { this.RecIDContains = value; return this; } public String getRecIDLike() { return RecIDLike; } public SY_LanguageQuery setRecIDLike(String value) { this.RecIDLike = value; return this; } public ArrayList getRecIDBetween() { return RecIDBetween; } public SY_LanguageQuery setRecIDBetween(ArrayList value) { this.RecIDBetween = value; return this; } public ArrayList getRecIDIn() { return RecIDIn; } public SY_LanguageQuery setRecIDIn(ArrayList value) { this.RecIDIn = value; return this; } public String getDescription() { return Description; } public SY_LanguageQuery setDescription(String value) { this.Description = value; return this; } public String getDescriptionStartsWith() { return DescriptionStartsWith; } public SY_LanguageQuery setDescriptionStartsWith(String value) { this.DescriptionStartsWith = value; return this; } public String getDescriptionEndsWith() { return DescriptionEndsWith; } public SY_LanguageQuery setDescriptionEndsWith(String value) { this.DescriptionEndsWith = value; return this; } public String getDescriptionContains() { return DescriptionContains; } public SY_LanguageQuery setDescriptionContains(String value) { this.DescriptionContains = value; return this; } public String getDescriptionLike() { return DescriptionLike; } public SY_LanguageQuery setDescriptionLike(String value) { this.DescriptionLike = value; return this; } public ArrayList getDescriptionBetween() { return DescriptionBetween; } public SY_LanguageQuery setDescriptionBetween(ArrayList value) { this.DescriptionBetween = value; return this; } public ArrayList getDescriptionIn() { return DescriptionIn; } public SY_LanguageQuery setDescriptionIn(ArrayList value) { this.DescriptionIn = value; return this; } public String getLanguageCode() { return LanguageCode; } public SY_LanguageQuery setLanguageCode(String value) { this.LanguageCode = value; return this; } public String getLanguageCodeStartsWith() { return LanguageCodeStartsWith; } public SY_LanguageQuery setLanguageCodeStartsWith(String value) { this.LanguageCodeStartsWith = value; return this; } public String getLanguageCodeEndsWith() { return LanguageCodeEndsWith; } public SY_LanguageQuery setLanguageCodeEndsWith(String value) { this.LanguageCodeEndsWith = value; return this; } public String getLanguageCodeContains() { return LanguageCodeContains; } public SY_LanguageQuery setLanguageCodeContains(String value) { this.LanguageCodeContains = value; return this; } public String getLanguageCodeLike() { return LanguageCodeLike; } public SY_LanguageQuery setLanguageCodeLike(String value) { this.LanguageCodeLike = value; return this; } public ArrayList getLanguageCodeBetween() { return LanguageCodeBetween; } public SY_LanguageQuery setLanguageCodeBetween(ArrayList value) { this.LanguageCodeBetween = value; return this; } public ArrayList getLanguageCodeIn() { return LanguageCodeIn; } public SY_LanguageQuery setLanguageCodeIn(ArrayList value) { this.LanguageCodeIn = value; return this; } public Boolean getIsDefault() { return IsDefault; } public SY_LanguageQuery setIsDefault(Boolean value) { this.IsDefault = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class SY_LicenceQuery extends QueryDb implements IReturn> { public String RecID = null; public String RecIDStartsWith = null; public String RecIDEndsWith = null; public String RecIDContains = null; public String RecIDLike = null; public ArrayList RecIDBetween = null; public ArrayList RecIDIn = null; public String ResourceID = null; public String ResourceIDStartsWith = null; public String ResourceIDEndsWith = null; public String ResourceIDContains = null; public String ResourceIDLike = null; public ArrayList ResourceIDBetween = null; public ArrayList ResourceIDIn = null; public String ResourceName = null; public String ResourceNameStartsWith = null; public String ResourceNameEndsWith = null; public String ResourceNameContains = null; public String ResourceNameLike = null; public ArrayList ResourceNameBetween = null; public ArrayList ResourceNameIn = null; public Date IssueDate = null; public Date IssueDateGreaterThanOrEqualTo = null; public Date IssueDateGreaterThan = null; public Date IssueDateLessThan = null; public Date IssueDateLessThanOrEqualTo = null; public Date IssueDateNotEqualTo = null; public ArrayList IssueDateBetween = null; public ArrayList IssueDateIn = null; public String Scope = null; public String ScopeStartsWith = null; public String ScopeEndsWith = null; public String ScopeContains = null; public String ScopeLike = null; public ArrayList ScopeBetween = null; public ArrayList ScopeIn = null; public String Note = null; public String NoteStartsWith = null; public String NoteEndsWith = null; public String NoteContains = null; public String NoteLike = null; public ArrayList NoteBetween = null; public ArrayList NoteIn = null; public Date CommenceDate = null; public Date CommenceDateGreaterThanOrEqualTo = null; public Date CommenceDateGreaterThan = null; public Date CommenceDateLessThan = null; public Date CommenceDateLessThanOrEqualTo = null; public Date CommenceDateNotEqualTo = null; public ArrayList CommenceDateBetween = null; public ArrayList CommenceDateIn = null; public Date ExpiryDate = null; public Date ExpiryDateGreaterThanOrEqualTo = null; public Date ExpiryDateGreaterThan = null; public Date ExpiryDateLessThan = null; public Date ExpiryDateLessThanOrEqualTo = null; public Date ExpiryDateNotEqualTo = null; public ArrayList ExpiryDateBetween = null; public ArrayList ExpiryDateIn = null; public Integer CALs = null; public Integer CALsGreaterThanOrEqualTo = null; public Integer CALsGreaterThan = null; public Integer CALsLessThan = null; public Integer CALsLessThanOrEqualTo = null; public Integer CALsNotEqualTo = null; public ArrayList CALsBetween = null; public ArrayList CALsIn = null; public String Version = null; public String VersionStartsWith = null; public String VersionEndsWith = null; public String VersionContains = null; public String VersionLike = null; public ArrayList VersionBetween = null; public ArrayList VersionIn = null; public String CompanyName = null; public String CompanyNameStartsWith = null; public String CompanyNameEndsWith = null; public String CompanyNameContains = null; public String CompanyNameLike = null; public ArrayList CompanyNameBetween = null; public ArrayList CompanyNameIn = null; public String Signature = null; public String SignatureStartsWith = null; public String SignatureEndsWith = null; public String SignatureContains = null; public String SignatureLike = null; public ArrayList SignatureBetween = null; public ArrayList SignatureIn = null; public String getRecID() { return RecID; } public SY_LicenceQuery setRecID(String value) { this.RecID = value; return this; } public String getRecIDStartsWith() { return RecIDStartsWith; } public SY_LicenceQuery setRecIDStartsWith(String value) { this.RecIDStartsWith = value; return this; } public String getRecIDEndsWith() { return RecIDEndsWith; } public SY_LicenceQuery setRecIDEndsWith(String value) { this.RecIDEndsWith = value; return this; } public String getRecIDContains() { return RecIDContains; } public SY_LicenceQuery setRecIDContains(String value) { this.RecIDContains = value; return this; } public String getRecIDLike() { return RecIDLike; } public SY_LicenceQuery setRecIDLike(String value) { this.RecIDLike = value; return this; } public ArrayList getRecIDBetween() { return RecIDBetween; } public SY_LicenceQuery setRecIDBetween(ArrayList value) { this.RecIDBetween = value; return this; } public ArrayList getRecIDIn() { return RecIDIn; } public SY_LicenceQuery setRecIDIn(ArrayList value) { this.RecIDIn = value; return this; } public String getResourceID() { return ResourceID; } public SY_LicenceQuery setResourceID(String value) { this.ResourceID = value; return this; } public String getResourceIDStartsWith() { return ResourceIDStartsWith; } public SY_LicenceQuery setResourceIDStartsWith(String value) { this.ResourceIDStartsWith = value; return this; } public String getResourceIDEndsWith() { return ResourceIDEndsWith; } public SY_LicenceQuery setResourceIDEndsWith(String value) { this.ResourceIDEndsWith = value; return this; } public String getResourceIDContains() { return ResourceIDContains; } public SY_LicenceQuery setResourceIDContains(String value) { this.ResourceIDContains = value; return this; } public String getResourceIDLike() { return ResourceIDLike; } public SY_LicenceQuery setResourceIDLike(String value) { this.ResourceIDLike = value; return this; } public ArrayList getResourceIDBetween() { return ResourceIDBetween; } public SY_LicenceQuery setResourceIDBetween(ArrayList value) { this.ResourceIDBetween = value; return this; } public ArrayList getResourceIDIn() { return ResourceIDIn; } public SY_LicenceQuery setResourceIDIn(ArrayList value) { this.ResourceIDIn = value; return this; } public String getResourceName() { return ResourceName; } public SY_LicenceQuery setResourceName(String value) { this.ResourceName = value; return this; } public String getResourceNameStartsWith() { return ResourceNameStartsWith; } public SY_LicenceQuery setResourceNameStartsWith(String value) { this.ResourceNameStartsWith = value; return this; } public String getResourceNameEndsWith() { return ResourceNameEndsWith; } public SY_LicenceQuery setResourceNameEndsWith(String value) { this.ResourceNameEndsWith = value; return this; } public String getResourceNameContains() { return ResourceNameContains; } public SY_LicenceQuery setResourceNameContains(String value) { this.ResourceNameContains = value; return this; } public String getResourceNameLike() { return ResourceNameLike; } public SY_LicenceQuery setResourceNameLike(String value) { this.ResourceNameLike = value; return this; } public ArrayList getResourceNameBetween() { return ResourceNameBetween; } public SY_LicenceQuery setResourceNameBetween(ArrayList value) { this.ResourceNameBetween = value; return this; } public ArrayList getResourceNameIn() { return ResourceNameIn; } public SY_LicenceQuery setResourceNameIn(ArrayList value) { this.ResourceNameIn = value; return this; } public Date getIssueDate() { return IssueDate; } public SY_LicenceQuery setIssueDate(Date value) { this.IssueDate = value; return this; } public Date getIssueDateGreaterThanOrEqualTo() { return IssueDateGreaterThanOrEqualTo; } public SY_LicenceQuery setIssueDateGreaterThanOrEqualTo(Date value) { this.IssueDateGreaterThanOrEqualTo = value; return this; } public Date getIssueDateGreaterThan() { return IssueDateGreaterThan; } public SY_LicenceQuery setIssueDateGreaterThan(Date value) { this.IssueDateGreaterThan = value; return this; } public Date getIssueDateLessThan() { return IssueDateLessThan; } public SY_LicenceQuery setIssueDateLessThan(Date value) { this.IssueDateLessThan = value; return this; } public Date getIssueDateLessThanOrEqualTo() { return IssueDateLessThanOrEqualTo; } public SY_LicenceQuery setIssueDateLessThanOrEqualTo(Date value) { this.IssueDateLessThanOrEqualTo = value; return this; } public Date getIssueDateNotEqualTo() { return IssueDateNotEqualTo; } public SY_LicenceQuery setIssueDateNotEqualTo(Date value) { this.IssueDateNotEqualTo = value; return this; } public ArrayList getIssueDateBetween() { return IssueDateBetween; } public SY_LicenceQuery setIssueDateBetween(ArrayList value) { this.IssueDateBetween = value; return this; } public ArrayList getIssueDateIn() { return IssueDateIn; } public SY_LicenceQuery setIssueDateIn(ArrayList value) { this.IssueDateIn = value; return this; } public String getScope() { return Scope; } public SY_LicenceQuery setScope(String value) { this.Scope = value; return this; } public String getScopeStartsWith() { return ScopeStartsWith; } public SY_LicenceQuery setScopeStartsWith(String value) { this.ScopeStartsWith = value; return this; } public String getScopeEndsWith() { return ScopeEndsWith; } public SY_LicenceQuery setScopeEndsWith(String value) { this.ScopeEndsWith = value; return this; } public String getScopeContains() { return ScopeContains; } public SY_LicenceQuery setScopeContains(String value) { this.ScopeContains = value; return this; } public String getScopeLike() { return ScopeLike; } public SY_LicenceQuery setScopeLike(String value) { this.ScopeLike = value; return this; } public ArrayList getScopeBetween() { return ScopeBetween; } public SY_LicenceQuery setScopeBetween(ArrayList value) { this.ScopeBetween = value; return this; } public ArrayList getScopeIn() { return ScopeIn; } public SY_LicenceQuery setScopeIn(ArrayList value) { this.ScopeIn = value; return this; } public String getNote() { return Note; } public SY_LicenceQuery setNote(String value) { this.Note = value; return this; } public String getNoteStartsWith() { return NoteStartsWith; } public SY_LicenceQuery setNoteStartsWith(String value) { this.NoteStartsWith = value; return this; } public String getNoteEndsWith() { return NoteEndsWith; } public SY_LicenceQuery setNoteEndsWith(String value) { this.NoteEndsWith = value; return this; } public String getNoteContains() { return NoteContains; } public SY_LicenceQuery setNoteContains(String value) { this.NoteContains = value; return this; } public String getNoteLike() { return NoteLike; } public SY_LicenceQuery setNoteLike(String value) { this.NoteLike = value; return this; } public ArrayList getNoteBetween() { return NoteBetween; } public SY_LicenceQuery setNoteBetween(ArrayList value) { this.NoteBetween = value; return this; } public ArrayList getNoteIn() { return NoteIn; } public SY_LicenceQuery setNoteIn(ArrayList value) { this.NoteIn = value; return this; } public Date getCommenceDate() { return CommenceDate; } public SY_LicenceQuery setCommenceDate(Date value) { this.CommenceDate = value; return this; } public Date getCommenceDateGreaterThanOrEqualTo() { return CommenceDateGreaterThanOrEqualTo; } public SY_LicenceQuery setCommenceDateGreaterThanOrEqualTo(Date value) { this.CommenceDateGreaterThanOrEqualTo = value; return this; } public Date getCommenceDateGreaterThan() { return CommenceDateGreaterThan; } public SY_LicenceQuery setCommenceDateGreaterThan(Date value) { this.CommenceDateGreaterThan = value; return this; } public Date getCommenceDateLessThan() { return CommenceDateLessThan; } public SY_LicenceQuery setCommenceDateLessThan(Date value) { this.CommenceDateLessThan = value; return this; } public Date getCommenceDateLessThanOrEqualTo() { return CommenceDateLessThanOrEqualTo; } public SY_LicenceQuery setCommenceDateLessThanOrEqualTo(Date value) { this.CommenceDateLessThanOrEqualTo = value; return this; } public Date getCommenceDateNotEqualTo() { return CommenceDateNotEqualTo; } public SY_LicenceQuery setCommenceDateNotEqualTo(Date value) { this.CommenceDateNotEqualTo = value; return this; } public ArrayList getCommenceDateBetween() { return CommenceDateBetween; } public SY_LicenceQuery setCommenceDateBetween(ArrayList value) { this.CommenceDateBetween = value; return this; } public ArrayList getCommenceDateIn() { return CommenceDateIn; } public SY_LicenceQuery setCommenceDateIn(ArrayList value) { this.CommenceDateIn = value; return this; } public Date getExpiryDate() { return ExpiryDate; } public SY_LicenceQuery setExpiryDate(Date value) { this.ExpiryDate = value; return this; } public Date getExpiryDateGreaterThanOrEqualTo() { return ExpiryDateGreaterThanOrEqualTo; } public SY_LicenceQuery setExpiryDateGreaterThanOrEqualTo(Date value) { this.ExpiryDateGreaterThanOrEqualTo = value; return this; } public Date getExpiryDateGreaterThan() { return ExpiryDateGreaterThan; } public SY_LicenceQuery setExpiryDateGreaterThan(Date value) { this.ExpiryDateGreaterThan = value; return this; } public Date getExpiryDateLessThan() { return ExpiryDateLessThan; } public SY_LicenceQuery setExpiryDateLessThan(Date value) { this.ExpiryDateLessThan = value; return this; } public Date getExpiryDateLessThanOrEqualTo() { return ExpiryDateLessThanOrEqualTo; } public SY_LicenceQuery setExpiryDateLessThanOrEqualTo(Date value) { this.ExpiryDateLessThanOrEqualTo = value; return this; } public Date getExpiryDateNotEqualTo() { return ExpiryDateNotEqualTo; } public SY_LicenceQuery setExpiryDateNotEqualTo(Date value) { this.ExpiryDateNotEqualTo = value; return this; } public ArrayList getExpiryDateBetween() { return ExpiryDateBetween; } public SY_LicenceQuery setExpiryDateBetween(ArrayList value) { this.ExpiryDateBetween = value; return this; } public ArrayList getExpiryDateIn() { return ExpiryDateIn; } public SY_LicenceQuery setExpiryDateIn(ArrayList value) { this.ExpiryDateIn = value; return this; } public Integer getCaLs() { return CALs; } public SY_LicenceQuery setCaLs(Integer value) { this.CALs = value; return this; } public Integer getCaLsGreaterThanOrEqualTo() { return CALsGreaterThanOrEqualTo; } public SY_LicenceQuery setCaLsGreaterThanOrEqualTo(Integer value) { this.CALsGreaterThanOrEqualTo = value; return this; } public Integer getCaLsGreaterThan() { return CALsGreaterThan; } public SY_LicenceQuery setCaLsGreaterThan(Integer value) { this.CALsGreaterThan = value; return this; } public Integer getCaLsLessThan() { return CALsLessThan; } public SY_LicenceQuery setCaLsLessThan(Integer value) { this.CALsLessThan = value; return this; } public Integer getCaLsLessThanOrEqualTo() { return CALsLessThanOrEqualTo; } public SY_LicenceQuery setCaLsLessThanOrEqualTo(Integer value) { this.CALsLessThanOrEqualTo = value; return this; } public Integer getCaLsNotEqualTo() { return CALsNotEqualTo; } public SY_LicenceQuery setCaLsNotEqualTo(Integer value) { this.CALsNotEqualTo = value; return this; } public ArrayList getCaLsBetween() { return CALsBetween; } public SY_LicenceQuery setCaLsBetween(ArrayList value) { this.CALsBetween = value; return this; } public ArrayList getCaLsIn() { return CALsIn; } public SY_LicenceQuery setCaLsIn(ArrayList value) { this.CALsIn = value; return this; } public String getVersion() { return Version; } public SY_LicenceQuery setVersion(String value) { this.Version = value; return this; } public String getVersionStartsWith() { return VersionStartsWith; } public SY_LicenceQuery setVersionStartsWith(String value) { this.VersionStartsWith = value; return this; } public String getVersionEndsWith() { return VersionEndsWith; } public SY_LicenceQuery setVersionEndsWith(String value) { this.VersionEndsWith = value; return this; } public String getVersionContains() { return VersionContains; } public SY_LicenceQuery setVersionContains(String value) { this.VersionContains = value; return this; } public String getVersionLike() { return VersionLike; } public SY_LicenceQuery setVersionLike(String value) { this.VersionLike = value; return this; } public ArrayList getVersionBetween() { return VersionBetween; } public SY_LicenceQuery setVersionBetween(ArrayList value) { this.VersionBetween = value; return this; } public ArrayList getVersionIn() { return VersionIn; } public SY_LicenceQuery setVersionIn(ArrayList value) { this.VersionIn = value; return this; } public String getCompanyName() { return CompanyName; } public SY_LicenceQuery setCompanyName(String value) { this.CompanyName = value; return this; } public String getCompanyNameStartsWith() { return CompanyNameStartsWith; } public SY_LicenceQuery setCompanyNameStartsWith(String value) { this.CompanyNameStartsWith = value; return this; } public String getCompanyNameEndsWith() { return CompanyNameEndsWith; } public SY_LicenceQuery setCompanyNameEndsWith(String value) { this.CompanyNameEndsWith = value; return this; } public String getCompanyNameContains() { return CompanyNameContains; } public SY_LicenceQuery setCompanyNameContains(String value) { this.CompanyNameContains = value; return this; } public String getCompanyNameLike() { return CompanyNameLike; } public SY_LicenceQuery setCompanyNameLike(String value) { this.CompanyNameLike = value; return this; } public ArrayList getCompanyNameBetween() { return CompanyNameBetween; } public SY_LicenceQuery setCompanyNameBetween(ArrayList value) { this.CompanyNameBetween = value; return this; } public ArrayList getCompanyNameIn() { return CompanyNameIn; } public SY_LicenceQuery setCompanyNameIn(ArrayList value) { this.CompanyNameIn = value; return this; } public String getSignature() { return Signature; } public SY_LicenceQuery setSignature(String value) { this.Signature = value; return this; } public String getSignatureStartsWith() { return SignatureStartsWith; } public SY_LicenceQuery setSignatureStartsWith(String value) { this.SignatureStartsWith = value; return this; } public String getSignatureEndsWith() { return SignatureEndsWith; } public SY_LicenceQuery setSignatureEndsWith(String value) { this.SignatureEndsWith = value; return this; } public String getSignatureContains() { return SignatureContains; } public SY_LicenceQuery setSignatureContains(String value) { this.SignatureContains = value; return this; } public String getSignatureLike() { return SignatureLike; } public SY_LicenceQuery setSignatureLike(String value) { this.SignatureLike = value; return this; } public ArrayList getSignatureBetween() { return SignatureBetween; } public SY_LicenceQuery setSignatureBetween(ArrayList value) { this.SignatureBetween = value; return this; } public ArrayList getSignatureIn() { return SignatureIn; } public SY_LicenceQuery setSignatureIn(ArrayList value) { this.SignatureIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class SY_LicenceUsageQuery extends QueryDb implements IReturn> { public String SY_Licence_RecID = null; public String SY_Licence_RecIDStartsWith = null; public String SY_Licence_RecIDEndsWith = null; public String SY_Licence_RecIDContains = null; public String SY_Licence_RecIDLike = null; public ArrayList SY_Licence_RecIDBetween = null; public ArrayList SY_Licence_RecIDIn = null; public String HR_Staff_StaffID = null; public String HR_Staff_StaffIDStartsWith = null; public String HR_Staff_StaffIDEndsWith = null; public String HR_Staff_StaffIDContains = null; public String HR_Staff_StaffIDLike = null; public ArrayList HR_Staff_StaffIDBetween = null; public ArrayList HR_Staff_StaffIDIn = null; public Date LastSavedDateTime = null; public Date LastSavedDateTimeGreaterThanOrEqualTo = null; public Date LastSavedDateTimeGreaterThan = null; public Date LastSavedDateTimeLessThan = null; public Date LastSavedDateTimeLessThanOrEqualTo = null; public Date LastSavedDateTimeNotEqualTo = null; public ArrayList LastSavedDateTimeBetween = null; public ArrayList LastSavedDateTimeIn = null; public ArrayList RowHash = null; public String getSyLicenceRecID() { return SY_Licence_RecID; } public SY_LicenceUsageQuery setSyLicenceRecID(String value) { this.SY_Licence_RecID = value; return this; } public String getSyLicenceRecIDStartsWith() { return SY_Licence_RecIDStartsWith; } public SY_LicenceUsageQuery setSyLicenceRecIDStartsWith(String value) { this.SY_Licence_RecIDStartsWith = value; return this; } public String getSyLicenceRecIDEndsWith() { return SY_Licence_RecIDEndsWith; } public SY_LicenceUsageQuery setSyLicenceRecIDEndsWith(String value) { this.SY_Licence_RecIDEndsWith = value; return this; } public String getSyLicenceRecIDContains() { return SY_Licence_RecIDContains; } public SY_LicenceUsageQuery setSyLicenceRecIDContains(String value) { this.SY_Licence_RecIDContains = value; return this; } public String getSyLicenceRecIDLike() { return SY_Licence_RecIDLike; } public SY_LicenceUsageQuery setSyLicenceRecIDLike(String value) { this.SY_Licence_RecIDLike = value; return this; } public ArrayList getSyLicenceRecIDBetween() { return SY_Licence_RecIDBetween; } public SY_LicenceUsageQuery setSyLicenceRecIDBetween(ArrayList value) { this.SY_Licence_RecIDBetween = value; return this; } public ArrayList getSyLicenceRecIDIn() { return SY_Licence_RecIDIn; } public SY_LicenceUsageQuery setSyLicenceRecIDIn(ArrayList value) { this.SY_Licence_RecIDIn = value; return this; } public String getHrStaffStaffID() { return HR_Staff_StaffID; } public SY_LicenceUsageQuery setHrStaffStaffID(String value) { this.HR_Staff_StaffID = value; return this; } public String getHrStaffStaffIDStartsWith() { return HR_Staff_StaffIDStartsWith; } public SY_LicenceUsageQuery setHrStaffStaffIDStartsWith(String value) { this.HR_Staff_StaffIDStartsWith = value; return this; } public String getHrStaffStaffIDEndsWith() { return HR_Staff_StaffIDEndsWith; } public SY_LicenceUsageQuery setHrStaffStaffIDEndsWith(String value) { this.HR_Staff_StaffIDEndsWith = value; return this; } public String getHrStaffStaffIDContains() { return HR_Staff_StaffIDContains; } public SY_LicenceUsageQuery setHrStaffStaffIDContains(String value) { this.HR_Staff_StaffIDContains = value; return this; } public String getHrStaffStaffIDLike() { return HR_Staff_StaffIDLike; } public SY_LicenceUsageQuery setHrStaffStaffIDLike(String value) { this.HR_Staff_StaffIDLike = value; return this; } public ArrayList getHrStaffStaffIDBetween() { return HR_Staff_StaffIDBetween; } public SY_LicenceUsageQuery setHrStaffStaffIDBetween(ArrayList value) { this.HR_Staff_StaffIDBetween = value; return this; } public ArrayList getHrStaffStaffIDIn() { return HR_Staff_StaffIDIn; } public SY_LicenceUsageQuery setHrStaffStaffIDIn(ArrayList value) { this.HR_Staff_StaffIDIn = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public SY_LicenceUsageQuery setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getLastSavedDateTimeGreaterThanOrEqualTo() { return LastSavedDateTimeGreaterThanOrEqualTo; } public SY_LicenceUsageQuery setLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.LastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeGreaterThan() { return LastSavedDateTimeGreaterThan; } public SY_LicenceUsageQuery setLastSavedDateTimeGreaterThan(Date value) { this.LastSavedDateTimeGreaterThan = value; return this; } public Date getLastSavedDateTimeLessThan() { return LastSavedDateTimeLessThan; } public SY_LicenceUsageQuery setLastSavedDateTimeLessThan(Date value) { this.LastSavedDateTimeLessThan = value; return this; } public Date getLastSavedDateTimeLessThanOrEqualTo() { return LastSavedDateTimeLessThanOrEqualTo; } public SY_LicenceUsageQuery setLastSavedDateTimeLessThanOrEqualTo(Date value) { this.LastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeNotEqualTo() { return LastSavedDateTimeNotEqualTo; } public SY_LicenceUsageQuery setLastSavedDateTimeNotEqualTo(Date value) { this.LastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getLastSavedDateTimeBetween() { return LastSavedDateTimeBetween; } public SY_LicenceUsageQuery setLastSavedDateTimeBetween(ArrayList value) { this.LastSavedDateTimeBetween = value; return this; } public ArrayList getLastSavedDateTimeIn() { return LastSavedDateTimeIn; } public SY_LicenceUsageQuery setLastSavedDateTimeIn(ArrayList value) { this.LastSavedDateTimeIn = value; return this; } public ArrayList getRowHash() { return RowHash; } public SY_LicenceUsageQuery setRowHash(ArrayList value) { this.RowHash = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class SY_LoginAuditQuery extends QueryDb implements IReturn> { public String RecID = null; public String RecIDStartsWith = null; public String RecIDEndsWith = null; public String RecIDContains = null; public String RecIDLike = null; public ArrayList RecIDBetween = null; public ArrayList RecIDIn = null; public String UserName = null; public String UserNameStartsWith = null; public String UserNameEndsWith = null; public String UserNameContains = null; public String UserNameLike = null; public ArrayList UserNameBetween = null; public ArrayList UserNameIn = null; public String IPAddress = null; public String IPAddressStartsWith = null; public String IPAddressEndsWith = null; public String IPAddressContains = null; public String IPAddressLike = null; public ArrayList IPAddressBetween = null; public ArrayList IPAddressIn = null; public String HostName = null; public String HostNameStartsWith = null; public String HostNameEndsWith = null; public String HostNameContains = null; public String HostNameLike = null; public ArrayList HostNameBetween = null; public ArrayList HostNameIn = null; public Date AuditDateTime = null; public Date AuditDateTimeGreaterThanOrEqualTo = null; public Date AuditDateTimeGreaterThan = null; public Date AuditDateTimeLessThan = null; public Date AuditDateTimeLessThanOrEqualTo = null; public Date AuditDateTimeNotEqualTo = null; public ArrayList AuditDateTimeBetween = null; public ArrayList AuditDateTimeIn = null; public Short AuditResult = null; public Short AuditResultGreaterThanOrEqualTo = null; public Short AuditResultGreaterThan = null; public Short AuditResultLessThan = null; public Short AuditResultLessThanOrEqualTo = null; public Short AuditResultNotEqualTo = null; public ArrayList AuditResultBetween = null; public ArrayList AuditResultIn = null; public String getRecID() { return RecID; } public SY_LoginAuditQuery setRecID(String value) { this.RecID = value; return this; } public String getRecIDStartsWith() { return RecIDStartsWith; } public SY_LoginAuditQuery setRecIDStartsWith(String value) { this.RecIDStartsWith = value; return this; } public String getRecIDEndsWith() { return RecIDEndsWith; } public SY_LoginAuditQuery setRecIDEndsWith(String value) { this.RecIDEndsWith = value; return this; } public String getRecIDContains() { return RecIDContains; } public SY_LoginAuditQuery setRecIDContains(String value) { this.RecIDContains = value; return this; } public String getRecIDLike() { return RecIDLike; } public SY_LoginAuditQuery setRecIDLike(String value) { this.RecIDLike = value; return this; } public ArrayList getRecIDBetween() { return RecIDBetween; } public SY_LoginAuditQuery setRecIDBetween(ArrayList value) { this.RecIDBetween = value; return this; } public ArrayList getRecIDIn() { return RecIDIn; } public SY_LoginAuditQuery setRecIDIn(ArrayList value) { this.RecIDIn = value; return this; } public String getUserName() { return UserName; } public SY_LoginAuditQuery setUserName(String value) { this.UserName = value; return this; } public String getUserNameStartsWith() { return UserNameStartsWith; } public SY_LoginAuditQuery setUserNameStartsWith(String value) { this.UserNameStartsWith = value; return this; } public String getUserNameEndsWith() { return UserNameEndsWith; } public SY_LoginAuditQuery setUserNameEndsWith(String value) { this.UserNameEndsWith = value; return this; } public String getUserNameContains() { return UserNameContains; } public SY_LoginAuditQuery setUserNameContains(String value) { this.UserNameContains = value; return this; } public String getUserNameLike() { return UserNameLike; } public SY_LoginAuditQuery setUserNameLike(String value) { this.UserNameLike = value; return this; } public ArrayList getUserNameBetween() { return UserNameBetween; } public SY_LoginAuditQuery setUserNameBetween(ArrayList value) { this.UserNameBetween = value; return this; } public ArrayList getUserNameIn() { return UserNameIn; } public SY_LoginAuditQuery setUserNameIn(ArrayList value) { this.UserNameIn = value; return this; } public String getIpAddress() { return IPAddress; } public SY_LoginAuditQuery setIpAddress(String value) { this.IPAddress = value; return this; } public String getIpAddressStartsWith() { return IPAddressStartsWith; } public SY_LoginAuditQuery setIpAddressStartsWith(String value) { this.IPAddressStartsWith = value; return this; } public String getIpAddressEndsWith() { return IPAddressEndsWith; } public SY_LoginAuditQuery setIpAddressEndsWith(String value) { this.IPAddressEndsWith = value; return this; } public String getIpAddressContains() { return IPAddressContains; } public SY_LoginAuditQuery setIpAddressContains(String value) { this.IPAddressContains = value; return this; } public String getIpAddressLike() { return IPAddressLike; } public SY_LoginAuditQuery setIpAddressLike(String value) { this.IPAddressLike = value; return this; } public ArrayList getIpAddressBetween() { return IPAddressBetween; } public SY_LoginAuditQuery setIpAddressBetween(ArrayList value) { this.IPAddressBetween = value; return this; } public ArrayList getIpAddressIn() { return IPAddressIn; } public SY_LoginAuditQuery setIpAddressIn(ArrayList value) { this.IPAddressIn = value; return this; } public String getHostName() { return HostName; } public SY_LoginAuditQuery setHostName(String value) { this.HostName = value; return this; } public String getHostNameStartsWith() { return HostNameStartsWith; } public SY_LoginAuditQuery setHostNameStartsWith(String value) { this.HostNameStartsWith = value; return this; } public String getHostNameEndsWith() { return HostNameEndsWith; } public SY_LoginAuditQuery setHostNameEndsWith(String value) { this.HostNameEndsWith = value; return this; } public String getHostNameContains() { return HostNameContains; } public SY_LoginAuditQuery setHostNameContains(String value) { this.HostNameContains = value; return this; } public String getHostNameLike() { return HostNameLike; } public SY_LoginAuditQuery setHostNameLike(String value) { this.HostNameLike = value; return this; } public ArrayList getHostNameBetween() { return HostNameBetween; } public SY_LoginAuditQuery setHostNameBetween(ArrayList value) { this.HostNameBetween = value; return this; } public ArrayList getHostNameIn() { return HostNameIn; } public SY_LoginAuditQuery setHostNameIn(ArrayList value) { this.HostNameIn = value; return this; } public Date getAuditDateTime() { return AuditDateTime; } public SY_LoginAuditQuery setAuditDateTime(Date value) { this.AuditDateTime = value; return this; } public Date getAuditDateTimeGreaterThanOrEqualTo() { return AuditDateTimeGreaterThanOrEqualTo; } public SY_LoginAuditQuery setAuditDateTimeGreaterThanOrEqualTo(Date value) { this.AuditDateTimeGreaterThanOrEqualTo = value; return this; } public Date getAuditDateTimeGreaterThan() { return AuditDateTimeGreaterThan; } public SY_LoginAuditQuery setAuditDateTimeGreaterThan(Date value) { this.AuditDateTimeGreaterThan = value; return this; } public Date getAuditDateTimeLessThan() { return AuditDateTimeLessThan; } public SY_LoginAuditQuery setAuditDateTimeLessThan(Date value) { this.AuditDateTimeLessThan = value; return this; } public Date getAuditDateTimeLessThanOrEqualTo() { return AuditDateTimeLessThanOrEqualTo; } public SY_LoginAuditQuery setAuditDateTimeLessThanOrEqualTo(Date value) { this.AuditDateTimeLessThanOrEqualTo = value; return this; } public Date getAuditDateTimeNotEqualTo() { return AuditDateTimeNotEqualTo; } public SY_LoginAuditQuery setAuditDateTimeNotEqualTo(Date value) { this.AuditDateTimeNotEqualTo = value; return this; } public ArrayList getAuditDateTimeBetween() { return AuditDateTimeBetween; } public SY_LoginAuditQuery setAuditDateTimeBetween(ArrayList value) { this.AuditDateTimeBetween = value; return this; } public ArrayList getAuditDateTimeIn() { return AuditDateTimeIn; } public SY_LoginAuditQuery setAuditDateTimeIn(ArrayList value) { this.AuditDateTimeIn = value; return this; } public Short getAuditResult() { return AuditResult; } public SY_LoginAuditQuery setAuditResult(Short value) { this.AuditResult = value; return this; } public Short getAuditResultGreaterThanOrEqualTo() { return AuditResultGreaterThanOrEqualTo; } public SY_LoginAuditQuery setAuditResultGreaterThanOrEqualTo(Short value) { this.AuditResultGreaterThanOrEqualTo = value; return this; } public Short getAuditResultGreaterThan() { return AuditResultGreaterThan; } public SY_LoginAuditQuery setAuditResultGreaterThan(Short value) { this.AuditResultGreaterThan = value; return this; } public Short getAuditResultLessThan() { return AuditResultLessThan; } public SY_LoginAuditQuery setAuditResultLessThan(Short value) { this.AuditResultLessThan = value; return this; } public Short getAuditResultLessThanOrEqualTo() { return AuditResultLessThanOrEqualTo; } public SY_LoginAuditQuery setAuditResultLessThanOrEqualTo(Short value) { this.AuditResultLessThanOrEqualTo = value; return this; } public Short getAuditResultNotEqualTo() { return AuditResultNotEqualTo; } public SY_LoginAuditQuery setAuditResultNotEqualTo(Short value) { this.AuditResultNotEqualTo = value; return this; } public ArrayList getAuditResultBetween() { return AuditResultBetween; } public SY_LoginAuditQuery setAuditResultBetween(ArrayList value) { this.AuditResultBetween = value; return this; } public ArrayList getAuditResultIn() { return AuditResultIn; } public SY_LoginAuditQuery setAuditResultIn(ArrayList value) { this.AuditResultIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class SY_MenuQuery extends QueryDb implements IReturn> { public String RecID = null; public String RecIDStartsWith = null; public String RecIDEndsWith = null; public String RecIDContains = null; public String RecIDLike = null; public ArrayList RecIDBetween = null; public ArrayList RecIDIn = null; public String Name = null; public String NameStartsWith = null; public String NameEndsWith = null; public String NameContains = null; public String NameLike = null; public ArrayList NameBetween = null; public ArrayList NameIn = null; public String Description = null; public String DescriptionStartsWith = null; public String DescriptionEndsWith = null; public String DescriptionContains = null; public String DescriptionLike = null; public ArrayList DescriptionBetween = null; public ArrayList DescriptionIn = null; public Boolean IsEnabled = null; public Date LastSavedDateTime = null; public Date LastSavedDateTimeGreaterThanOrEqualTo = null; public Date LastSavedDateTimeGreaterThan = null; public Date LastSavedDateTimeLessThan = null; public Date LastSavedDateTimeLessThanOrEqualTo = null; public Date LastSavedDateTimeNotEqualTo = null; public ArrayList LastSavedDateTimeBetween = null; public ArrayList LastSavedDateTimeIn = null; public ArrayList RowHash = null; public Boolean IsReadOnly = null; public String getRecID() { return RecID; } public SY_MenuQuery setRecID(String value) { this.RecID = value; return this; } public String getRecIDStartsWith() { return RecIDStartsWith; } public SY_MenuQuery setRecIDStartsWith(String value) { this.RecIDStartsWith = value; return this; } public String getRecIDEndsWith() { return RecIDEndsWith; } public SY_MenuQuery setRecIDEndsWith(String value) { this.RecIDEndsWith = value; return this; } public String getRecIDContains() { return RecIDContains; } public SY_MenuQuery setRecIDContains(String value) { this.RecIDContains = value; return this; } public String getRecIDLike() { return RecIDLike; } public SY_MenuQuery setRecIDLike(String value) { this.RecIDLike = value; return this; } public ArrayList getRecIDBetween() { return RecIDBetween; } public SY_MenuQuery setRecIDBetween(ArrayList value) { this.RecIDBetween = value; return this; } public ArrayList getRecIDIn() { return RecIDIn; } public SY_MenuQuery setRecIDIn(ArrayList value) { this.RecIDIn = value; return this; } public String getName() { return Name; } public SY_MenuQuery setName(String value) { this.Name = value; return this; } public String getNameStartsWith() { return NameStartsWith; } public SY_MenuQuery setNameStartsWith(String value) { this.NameStartsWith = value; return this; } public String getNameEndsWith() { return NameEndsWith; } public SY_MenuQuery setNameEndsWith(String value) { this.NameEndsWith = value; return this; } public String getNameContains() { return NameContains; } public SY_MenuQuery setNameContains(String value) { this.NameContains = value; return this; } public String getNameLike() { return NameLike; } public SY_MenuQuery setNameLike(String value) { this.NameLike = value; return this; } public ArrayList getNameBetween() { return NameBetween; } public SY_MenuQuery setNameBetween(ArrayList value) { this.NameBetween = value; return this; } public ArrayList getNameIn() { return NameIn; } public SY_MenuQuery setNameIn(ArrayList value) { this.NameIn = value; return this; } public String getDescription() { return Description; } public SY_MenuQuery setDescription(String value) { this.Description = value; return this; } public String getDescriptionStartsWith() { return DescriptionStartsWith; } public SY_MenuQuery setDescriptionStartsWith(String value) { this.DescriptionStartsWith = value; return this; } public String getDescriptionEndsWith() { return DescriptionEndsWith; } public SY_MenuQuery setDescriptionEndsWith(String value) { this.DescriptionEndsWith = value; return this; } public String getDescriptionContains() { return DescriptionContains; } public SY_MenuQuery setDescriptionContains(String value) { this.DescriptionContains = value; return this; } public String getDescriptionLike() { return DescriptionLike; } public SY_MenuQuery setDescriptionLike(String value) { this.DescriptionLike = value; return this; } public ArrayList getDescriptionBetween() { return DescriptionBetween; } public SY_MenuQuery setDescriptionBetween(ArrayList value) { this.DescriptionBetween = value; return this; } public ArrayList getDescriptionIn() { return DescriptionIn; } public SY_MenuQuery setDescriptionIn(ArrayList value) { this.DescriptionIn = value; return this; } public Boolean getIsEnabled() { return IsEnabled; } public SY_MenuQuery setIsEnabled(Boolean value) { this.IsEnabled = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public SY_MenuQuery setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getLastSavedDateTimeGreaterThanOrEqualTo() { return LastSavedDateTimeGreaterThanOrEqualTo; } public SY_MenuQuery setLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.LastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeGreaterThan() { return LastSavedDateTimeGreaterThan; } public SY_MenuQuery setLastSavedDateTimeGreaterThan(Date value) { this.LastSavedDateTimeGreaterThan = value; return this; } public Date getLastSavedDateTimeLessThan() { return LastSavedDateTimeLessThan; } public SY_MenuQuery setLastSavedDateTimeLessThan(Date value) { this.LastSavedDateTimeLessThan = value; return this; } public Date getLastSavedDateTimeLessThanOrEqualTo() { return LastSavedDateTimeLessThanOrEqualTo; } public SY_MenuQuery setLastSavedDateTimeLessThanOrEqualTo(Date value) { this.LastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeNotEqualTo() { return LastSavedDateTimeNotEqualTo; } public SY_MenuQuery setLastSavedDateTimeNotEqualTo(Date value) { this.LastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getLastSavedDateTimeBetween() { return LastSavedDateTimeBetween; } public SY_MenuQuery setLastSavedDateTimeBetween(ArrayList value) { this.LastSavedDateTimeBetween = value; return this; } public ArrayList getLastSavedDateTimeIn() { return LastSavedDateTimeIn; } public SY_MenuQuery setLastSavedDateTimeIn(ArrayList value) { this.LastSavedDateTimeIn = value; return this; } public ArrayList getRowHash() { return RowHash; } public SY_MenuQuery setRowHash(ArrayList value) { this.RowHash = value; return this; } public Boolean getIsReadOnly() { return IsReadOnly; } public SY_MenuQuery setIsReadOnly(Boolean value) { this.IsReadOnly = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class SY_MenuItemQuery extends QueryDb implements IReturn> { public String RecID = null; public String RecIDStartsWith = null; public String RecIDEndsWith = null; public String RecIDContains = null; public String RecIDLike = null; public ArrayList RecIDBetween = null; public ArrayList RecIDIn = null; public String SY_Menu_RecID = null; public String SY_Menu_RecIDStartsWith = null; public String SY_Menu_RecIDEndsWith = null; public String SY_Menu_RecIDContains = null; public String SY_Menu_RecIDLike = null; public ArrayList SY_Menu_RecIDBetween = null; public ArrayList SY_Menu_RecIDIn = null; public Short Type = null; public Short TypeGreaterThanOrEqualTo = null; public Short TypeGreaterThan = null; public Short TypeLessThan = null; public Short TypeLessThanOrEqualTo = null; public Short TypeNotEqualTo = null; public ArrayList TypeBetween = null; public ArrayList TypeIn = null; public String Caption = null; public String CaptionStartsWith = null; public String CaptionEndsWith = null; public String CaptionContains = null; public String CaptionLike = null; public ArrayList CaptionBetween = null; public ArrayList CaptionIn = null; public String SY_MenuItem_RecID = null; public String SY_MenuItem_RecIDStartsWith = null; public String SY_MenuItem_RecIDEndsWith = null; public String SY_MenuItem_RecIDContains = null; public String SY_MenuItem_RecIDLike = null; public ArrayList SY_MenuItem_RecIDBetween = null; public ArrayList SY_MenuItem_RecIDIn = null; public Integer ItemNo = null; public Integer ItemNoGreaterThanOrEqualTo = null; public Integer ItemNoGreaterThan = null; public Integer ItemNoLessThan = null; public Integer ItemNoLessThanOrEqualTo = null; public Integer ItemNoNotEqualTo = null; public ArrayList ItemNoBetween = null; public ArrayList ItemNoIn = null; public Date LastSavedDateTime = null; public Date LastSavedDateTimeGreaterThanOrEqualTo = null; public Date LastSavedDateTimeGreaterThan = null; public Date LastSavedDateTimeLessThan = null; public Date LastSavedDateTimeLessThanOrEqualTo = null; public Date LastSavedDateTimeNotEqualTo = null; public ArrayList LastSavedDateTimeBetween = null; public ArrayList LastSavedDateTimeIn = null; public ArrayList RowHash = null; public UUID SY_Image_RecID = null; public ArrayList SY_Image_RecIDIn = null; public UUID SY_Image_RecID_Selected = null; public ArrayList SY_Image_RecID_SelectedIn = null; public UUID SY_Image_RecID_HotTracked = null; public ArrayList SY_Image_RecID_HotTrackedIn = null; public String getRecID() { return RecID; } public SY_MenuItemQuery setRecID(String value) { this.RecID = value; return this; } public String getRecIDStartsWith() { return RecIDStartsWith; } public SY_MenuItemQuery setRecIDStartsWith(String value) { this.RecIDStartsWith = value; return this; } public String getRecIDEndsWith() { return RecIDEndsWith; } public SY_MenuItemQuery setRecIDEndsWith(String value) { this.RecIDEndsWith = value; return this; } public String getRecIDContains() { return RecIDContains; } public SY_MenuItemQuery setRecIDContains(String value) { this.RecIDContains = value; return this; } public String getRecIDLike() { return RecIDLike; } public SY_MenuItemQuery setRecIDLike(String value) { this.RecIDLike = value; return this; } public ArrayList getRecIDBetween() { return RecIDBetween; } public SY_MenuItemQuery setRecIDBetween(ArrayList value) { this.RecIDBetween = value; return this; } public ArrayList getRecIDIn() { return RecIDIn; } public SY_MenuItemQuery setRecIDIn(ArrayList value) { this.RecIDIn = value; return this; } public String getSyMenuRecID() { return SY_Menu_RecID; } public SY_MenuItemQuery setSyMenuRecID(String value) { this.SY_Menu_RecID = value; return this; } public String getSyMenuRecIDStartsWith() { return SY_Menu_RecIDStartsWith; } public SY_MenuItemQuery setSyMenuRecIDStartsWith(String value) { this.SY_Menu_RecIDStartsWith = value; return this; } public String getSyMenuRecIDEndsWith() { return SY_Menu_RecIDEndsWith; } public SY_MenuItemQuery setSyMenuRecIDEndsWith(String value) { this.SY_Menu_RecIDEndsWith = value; return this; } public String getSyMenuRecIDContains() { return SY_Menu_RecIDContains; } public SY_MenuItemQuery setSyMenuRecIDContains(String value) { this.SY_Menu_RecIDContains = value; return this; } public String getSyMenuRecIDLike() { return SY_Menu_RecIDLike; } public SY_MenuItemQuery setSyMenuRecIDLike(String value) { this.SY_Menu_RecIDLike = value; return this; } public ArrayList getSyMenuRecIDBetween() { return SY_Menu_RecIDBetween; } public SY_MenuItemQuery setSyMenuRecIDBetween(ArrayList value) { this.SY_Menu_RecIDBetween = value; return this; } public ArrayList getSyMenuRecIDIn() { return SY_Menu_RecIDIn; } public SY_MenuItemQuery setSyMenuRecIDIn(ArrayList value) { this.SY_Menu_RecIDIn = value; return this; } public Short getType() { return Type; } public SY_MenuItemQuery setType(Short value) { this.Type = value; return this; } public Short getTypeGreaterThanOrEqualTo() { return TypeGreaterThanOrEqualTo; } public SY_MenuItemQuery setTypeGreaterThanOrEqualTo(Short value) { this.TypeGreaterThanOrEqualTo = value; return this; } public Short getTypeGreaterThan() { return TypeGreaterThan; } public SY_MenuItemQuery setTypeGreaterThan(Short value) { this.TypeGreaterThan = value; return this; } public Short getTypeLessThan() { return TypeLessThan; } public SY_MenuItemQuery setTypeLessThan(Short value) { this.TypeLessThan = value; return this; } public Short getTypeLessThanOrEqualTo() { return TypeLessThanOrEqualTo; } public SY_MenuItemQuery setTypeLessThanOrEqualTo(Short value) { this.TypeLessThanOrEqualTo = value; return this; } public Short getTypeNotEqualTo() { return TypeNotEqualTo; } public SY_MenuItemQuery setTypeNotEqualTo(Short value) { this.TypeNotEqualTo = value; return this; } public ArrayList getTypeBetween() { return TypeBetween; } public SY_MenuItemQuery setTypeBetween(ArrayList value) { this.TypeBetween = value; return this; } public ArrayList getTypeIn() { return TypeIn; } public SY_MenuItemQuery setTypeIn(ArrayList value) { this.TypeIn = value; return this; } public String getCaption() { return Caption; } public SY_MenuItemQuery setCaption(String value) { this.Caption = value; return this; } public String getCaptionStartsWith() { return CaptionStartsWith; } public SY_MenuItemQuery setCaptionStartsWith(String value) { this.CaptionStartsWith = value; return this; } public String getCaptionEndsWith() { return CaptionEndsWith; } public SY_MenuItemQuery setCaptionEndsWith(String value) { this.CaptionEndsWith = value; return this; } public String getCaptionContains() { return CaptionContains; } public SY_MenuItemQuery setCaptionContains(String value) { this.CaptionContains = value; return this; } public String getCaptionLike() { return CaptionLike; } public SY_MenuItemQuery setCaptionLike(String value) { this.CaptionLike = value; return this; } public ArrayList getCaptionBetween() { return CaptionBetween; } public SY_MenuItemQuery setCaptionBetween(ArrayList value) { this.CaptionBetween = value; return this; } public ArrayList getCaptionIn() { return CaptionIn; } public SY_MenuItemQuery setCaptionIn(ArrayList value) { this.CaptionIn = value; return this; } public String getSyMenuItemRecID() { return SY_MenuItem_RecID; } public SY_MenuItemQuery setSyMenuItemRecID(String value) { this.SY_MenuItem_RecID = value; return this; } public String getSyMenuItemRecIDStartsWith() { return SY_MenuItem_RecIDStartsWith; } public SY_MenuItemQuery setSyMenuItemRecIDStartsWith(String value) { this.SY_MenuItem_RecIDStartsWith = value; return this; } public String getSyMenuItemRecIDEndsWith() { return SY_MenuItem_RecIDEndsWith; } public SY_MenuItemQuery setSyMenuItemRecIDEndsWith(String value) { this.SY_MenuItem_RecIDEndsWith = value; return this; } public String getSyMenuItemRecIDContains() { return SY_MenuItem_RecIDContains; } public SY_MenuItemQuery setSyMenuItemRecIDContains(String value) { this.SY_MenuItem_RecIDContains = value; return this; } public String getSyMenuItemRecIDLike() { return SY_MenuItem_RecIDLike; } public SY_MenuItemQuery setSyMenuItemRecIDLike(String value) { this.SY_MenuItem_RecIDLike = value; return this; } public ArrayList getSyMenuItemRecIDBetween() { return SY_MenuItem_RecIDBetween; } public SY_MenuItemQuery setSyMenuItemRecIDBetween(ArrayList value) { this.SY_MenuItem_RecIDBetween = value; return this; } public ArrayList getSyMenuItemRecIDIn() { return SY_MenuItem_RecIDIn; } public SY_MenuItemQuery setSyMenuItemRecIDIn(ArrayList value) { this.SY_MenuItem_RecIDIn = value; return this; } public Integer getItemNo() { return ItemNo; } public SY_MenuItemQuery setItemNo(Integer value) { this.ItemNo = value; return this; } public Integer getItemNoGreaterThanOrEqualTo() { return ItemNoGreaterThanOrEqualTo; } public SY_MenuItemQuery setItemNoGreaterThanOrEqualTo(Integer value) { this.ItemNoGreaterThanOrEqualTo = value; return this; } public Integer getItemNoGreaterThan() { return ItemNoGreaterThan; } public SY_MenuItemQuery setItemNoGreaterThan(Integer value) { this.ItemNoGreaterThan = value; return this; } public Integer getItemNoLessThan() { return ItemNoLessThan; } public SY_MenuItemQuery setItemNoLessThan(Integer value) { this.ItemNoLessThan = value; return this; } public Integer getItemNoLessThanOrEqualTo() { return ItemNoLessThanOrEqualTo; } public SY_MenuItemQuery setItemNoLessThanOrEqualTo(Integer value) { this.ItemNoLessThanOrEqualTo = value; return this; } public Integer getItemNoNotEqualTo() { return ItemNoNotEqualTo; } public SY_MenuItemQuery setItemNoNotEqualTo(Integer value) { this.ItemNoNotEqualTo = value; return this; } public ArrayList getItemNoBetween() { return ItemNoBetween; } public SY_MenuItemQuery setItemNoBetween(ArrayList value) { this.ItemNoBetween = value; return this; } public ArrayList getItemNoIn() { return ItemNoIn; } public SY_MenuItemQuery setItemNoIn(ArrayList value) { this.ItemNoIn = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public SY_MenuItemQuery setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getLastSavedDateTimeGreaterThanOrEqualTo() { return LastSavedDateTimeGreaterThanOrEqualTo; } public SY_MenuItemQuery setLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.LastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeGreaterThan() { return LastSavedDateTimeGreaterThan; } public SY_MenuItemQuery setLastSavedDateTimeGreaterThan(Date value) { this.LastSavedDateTimeGreaterThan = value; return this; } public Date getLastSavedDateTimeLessThan() { return LastSavedDateTimeLessThan; } public SY_MenuItemQuery setLastSavedDateTimeLessThan(Date value) { this.LastSavedDateTimeLessThan = value; return this; } public Date getLastSavedDateTimeLessThanOrEqualTo() { return LastSavedDateTimeLessThanOrEqualTo; } public SY_MenuItemQuery setLastSavedDateTimeLessThanOrEqualTo(Date value) { this.LastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeNotEqualTo() { return LastSavedDateTimeNotEqualTo; } public SY_MenuItemQuery setLastSavedDateTimeNotEqualTo(Date value) { this.LastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getLastSavedDateTimeBetween() { return LastSavedDateTimeBetween; } public SY_MenuItemQuery setLastSavedDateTimeBetween(ArrayList value) { this.LastSavedDateTimeBetween = value; return this; } public ArrayList getLastSavedDateTimeIn() { return LastSavedDateTimeIn; } public SY_MenuItemQuery setLastSavedDateTimeIn(ArrayList value) { this.LastSavedDateTimeIn = value; return this; } public ArrayList getRowHash() { return RowHash; } public SY_MenuItemQuery setRowHash(ArrayList value) { this.RowHash = value; return this; } public UUID getSyImageRecID() { return SY_Image_RecID; } public SY_MenuItemQuery setSyImageRecID(UUID value) { this.SY_Image_RecID = value; return this; } public ArrayList getSyImageRecIDIn() { return SY_Image_RecIDIn; } public SY_MenuItemQuery setSyImageRecIDIn(ArrayList value) { this.SY_Image_RecIDIn = value; return this; } public UUID getSyImageRecIDSelected() { return SY_Image_RecID_Selected; } public SY_MenuItemQuery setSyImageRecIDSelected(UUID value) { this.SY_Image_RecID_Selected = value; return this; } public ArrayList getSyImageRecIDSelectedIn() { return SY_Image_RecID_SelectedIn; } public SY_MenuItemQuery setSyImageRecIDSelectedIn(ArrayList value) { this.SY_Image_RecID_SelectedIn = value; return this; } public UUID getSyImageRecIDHotTracked() { return SY_Image_RecID_HotTracked; } public SY_MenuItemQuery setSyImageRecIDHotTracked(UUID value) { this.SY_Image_RecID_HotTracked = value; return this; } public ArrayList getSyImageRecIDHotTrackedIn() { return SY_Image_RecID_HotTrackedIn; } public SY_MenuItemQuery setSyImageRecIDHotTrackedIn(ArrayList value) { this.SY_Image_RecID_HotTrackedIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class SY_MenuItemFormQuery extends QueryDb implements IReturn> { public String RecID = null; public String RecIDStartsWith = null; public String RecIDEndsWith = null; public String RecIDContains = null; public String RecIDLike = null; public ArrayList RecIDBetween = null; public ArrayList RecIDIn = null; public String SY_MenuItem_RecID = null; public String SY_MenuItem_RecIDStartsWith = null; public String SY_MenuItem_RecIDEndsWith = null; public String SY_MenuItem_RecIDContains = null; public String SY_MenuItem_RecIDLike = null; public ArrayList SY_MenuItem_RecIDBetween = null; public ArrayList SY_MenuItem_RecIDIn = null; public String SY_Forms_ClassName = null; public String SY_Forms_ClassNameStartsWith = null; public String SY_Forms_ClassNameEndsWith = null; public String SY_Forms_ClassNameContains = null; public String SY_Forms_ClassNameLike = null; public ArrayList SY_Forms_ClassNameBetween = null; public ArrayList SY_Forms_ClassNameIn = null; public Date LastSavedDateTime = null; public Date LastSavedDateTimeGreaterThanOrEqualTo = null; public Date LastSavedDateTimeGreaterThan = null; public Date LastSavedDateTimeLessThan = null; public Date LastSavedDateTimeLessThanOrEqualTo = null; public Date LastSavedDateTimeNotEqualTo = null; public ArrayList LastSavedDateTimeBetween = null; public ArrayList LastSavedDateTimeIn = null; public ArrayList RowHash = null; public String getRecID() { return RecID; } public SY_MenuItemFormQuery setRecID(String value) { this.RecID = value; return this; } public String getRecIDStartsWith() { return RecIDStartsWith; } public SY_MenuItemFormQuery setRecIDStartsWith(String value) { this.RecIDStartsWith = value; return this; } public String getRecIDEndsWith() { return RecIDEndsWith; } public SY_MenuItemFormQuery setRecIDEndsWith(String value) { this.RecIDEndsWith = value; return this; } public String getRecIDContains() { return RecIDContains; } public SY_MenuItemFormQuery setRecIDContains(String value) { this.RecIDContains = value; return this; } public String getRecIDLike() { return RecIDLike; } public SY_MenuItemFormQuery setRecIDLike(String value) { this.RecIDLike = value; return this; } public ArrayList getRecIDBetween() { return RecIDBetween; } public SY_MenuItemFormQuery setRecIDBetween(ArrayList value) { this.RecIDBetween = value; return this; } public ArrayList getRecIDIn() { return RecIDIn; } public SY_MenuItemFormQuery setRecIDIn(ArrayList value) { this.RecIDIn = value; return this; } public String getSyMenuItemRecID() { return SY_MenuItem_RecID; } public SY_MenuItemFormQuery setSyMenuItemRecID(String value) { this.SY_MenuItem_RecID = value; return this; } public String getSyMenuItemRecIDStartsWith() { return SY_MenuItem_RecIDStartsWith; } public SY_MenuItemFormQuery setSyMenuItemRecIDStartsWith(String value) { this.SY_MenuItem_RecIDStartsWith = value; return this; } public String getSyMenuItemRecIDEndsWith() { return SY_MenuItem_RecIDEndsWith; } public SY_MenuItemFormQuery setSyMenuItemRecIDEndsWith(String value) { this.SY_MenuItem_RecIDEndsWith = value; return this; } public String getSyMenuItemRecIDContains() { return SY_MenuItem_RecIDContains; } public SY_MenuItemFormQuery setSyMenuItemRecIDContains(String value) { this.SY_MenuItem_RecIDContains = value; return this; } public String getSyMenuItemRecIDLike() { return SY_MenuItem_RecIDLike; } public SY_MenuItemFormQuery setSyMenuItemRecIDLike(String value) { this.SY_MenuItem_RecIDLike = value; return this; } public ArrayList getSyMenuItemRecIDBetween() { return SY_MenuItem_RecIDBetween; } public SY_MenuItemFormQuery setSyMenuItemRecIDBetween(ArrayList value) { this.SY_MenuItem_RecIDBetween = value; return this; } public ArrayList getSyMenuItemRecIDIn() { return SY_MenuItem_RecIDIn; } public SY_MenuItemFormQuery setSyMenuItemRecIDIn(ArrayList value) { this.SY_MenuItem_RecIDIn = value; return this; } public String getSyFormsClassName() { return SY_Forms_ClassName; } public SY_MenuItemFormQuery setSyFormsClassName(String value) { this.SY_Forms_ClassName = value; return this; } public String getSyFormsClassNameStartsWith() { return SY_Forms_ClassNameStartsWith; } public SY_MenuItemFormQuery setSyFormsClassNameStartsWith(String value) { this.SY_Forms_ClassNameStartsWith = value; return this; } public String getSyFormsClassNameEndsWith() { return SY_Forms_ClassNameEndsWith; } public SY_MenuItemFormQuery setSyFormsClassNameEndsWith(String value) { this.SY_Forms_ClassNameEndsWith = value; return this; } public String getSyFormsClassNameContains() { return SY_Forms_ClassNameContains; } public SY_MenuItemFormQuery setSyFormsClassNameContains(String value) { this.SY_Forms_ClassNameContains = value; return this; } public String getSyFormsClassNameLike() { return SY_Forms_ClassNameLike; } public SY_MenuItemFormQuery setSyFormsClassNameLike(String value) { this.SY_Forms_ClassNameLike = value; return this; } public ArrayList getSyFormsClassNameBetween() { return SY_Forms_ClassNameBetween; } public SY_MenuItemFormQuery setSyFormsClassNameBetween(ArrayList value) { this.SY_Forms_ClassNameBetween = value; return this; } public ArrayList getSyFormsClassNameIn() { return SY_Forms_ClassNameIn; } public SY_MenuItemFormQuery setSyFormsClassNameIn(ArrayList value) { this.SY_Forms_ClassNameIn = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public SY_MenuItemFormQuery setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getLastSavedDateTimeGreaterThanOrEqualTo() { return LastSavedDateTimeGreaterThanOrEqualTo; } public SY_MenuItemFormQuery setLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.LastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeGreaterThan() { return LastSavedDateTimeGreaterThan; } public SY_MenuItemFormQuery setLastSavedDateTimeGreaterThan(Date value) { this.LastSavedDateTimeGreaterThan = value; return this; } public Date getLastSavedDateTimeLessThan() { return LastSavedDateTimeLessThan; } public SY_MenuItemFormQuery setLastSavedDateTimeLessThan(Date value) { this.LastSavedDateTimeLessThan = value; return this; } public Date getLastSavedDateTimeLessThanOrEqualTo() { return LastSavedDateTimeLessThanOrEqualTo; } public SY_MenuItemFormQuery setLastSavedDateTimeLessThanOrEqualTo(Date value) { this.LastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeNotEqualTo() { return LastSavedDateTimeNotEqualTo; } public SY_MenuItemFormQuery setLastSavedDateTimeNotEqualTo(Date value) { this.LastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getLastSavedDateTimeBetween() { return LastSavedDateTimeBetween; } public SY_MenuItemFormQuery setLastSavedDateTimeBetween(ArrayList value) { this.LastSavedDateTimeBetween = value; return this; } public ArrayList getLastSavedDateTimeIn() { return LastSavedDateTimeIn; } public SY_MenuItemFormQuery setLastSavedDateTimeIn(ArrayList value) { this.LastSavedDateTimeIn = value; return this; } public ArrayList getRowHash() { return RowHash; } public SY_MenuItemFormQuery setRowHash(ArrayList value) { this.RowHash = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class SY_MenuItemReportQuery extends QueryDb implements IReturn> { public String RecID = null; public String RecIDStartsWith = null; public String RecIDEndsWith = null; public String RecIDContains = null; public String RecIDLike = null; public ArrayList RecIDBetween = null; public ArrayList RecIDIn = null; public String SY_MenuItem_RecID = null; public String SY_MenuItem_RecIDStartsWith = null; public String SY_MenuItem_RecIDEndsWith = null; public String SY_MenuItem_RecIDContains = null; public String SY_MenuItem_RecIDLike = null; public ArrayList SY_MenuItem_RecIDBetween = null; public ArrayList SY_MenuItem_RecIDIn = null; public String SY_Report_RecID = null; public String SY_Report_RecIDStartsWith = null; public String SY_Report_RecIDEndsWith = null; public String SY_Report_RecIDContains = null; public String SY_Report_RecIDLike = null; public ArrayList SY_Report_RecIDBetween = null; public ArrayList SY_Report_RecIDIn = null; public Date LastSavedDateTime = null; public Date LastSavedDateTimeGreaterThanOrEqualTo = null; public Date LastSavedDateTimeGreaterThan = null; public Date LastSavedDateTimeLessThan = null; public Date LastSavedDateTimeLessThanOrEqualTo = null; public Date LastSavedDateTimeNotEqualTo = null; public ArrayList LastSavedDateTimeBetween = null; public ArrayList LastSavedDateTimeIn = null; public ArrayList RowHash = null; public String getRecID() { return RecID; } public SY_MenuItemReportQuery setRecID(String value) { this.RecID = value; return this; } public String getRecIDStartsWith() { return RecIDStartsWith; } public SY_MenuItemReportQuery setRecIDStartsWith(String value) { this.RecIDStartsWith = value; return this; } public String getRecIDEndsWith() { return RecIDEndsWith; } public SY_MenuItemReportQuery setRecIDEndsWith(String value) { this.RecIDEndsWith = value; return this; } public String getRecIDContains() { return RecIDContains; } public SY_MenuItemReportQuery setRecIDContains(String value) { this.RecIDContains = value; return this; } public String getRecIDLike() { return RecIDLike; } public SY_MenuItemReportQuery setRecIDLike(String value) { this.RecIDLike = value; return this; } public ArrayList getRecIDBetween() { return RecIDBetween; } public SY_MenuItemReportQuery setRecIDBetween(ArrayList value) { this.RecIDBetween = value; return this; } public ArrayList getRecIDIn() { return RecIDIn; } public SY_MenuItemReportQuery setRecIDIn(ArrayList value) { this.RecIDIn = value; return this; } public String getSyMenuItemRecID() { return SY_MenuItem_RecID; } public SY_MenuItemReportQuery setSyMenuItemRecID(String value) { this.SY_MenuItem_RecID = value; return this; } public String getSyMenuItemRecIDStartsWith() { return SY_MenuItem_RecIDStartsWith; } public SY_MenuItemReportQuery setSyMenuItemRecIDStartsWith(String value) { this.SY_MenuItem_RecIDStartsWith = value; return this; } public String getSyMenuItemRecIDEndsWith() { return SY_MenuItem_RecIDEndsWith; } public SY_MenuItemReportQuery setSyMenuItemRecIDEndsWith(String value) { this.SY_MenuItem_RecIDEndsWith = value; return this; } public String getSyMenuItemRecIDContains() { return SY_MenuItem_RecIDContains; } public SY_MenuItemReportQuery setSyMenuItemRecIDContains(String value) { this.SY_MenuItem_RecIDContains = value; return this; } public String getSyMenuItemRecIDLike() { return SY_MenuItem_RecIDLike; } public SY_MenuItemReportQuery setSyMenuItemRecIDLike(String value) { this.SY_MenuItem_RecIDLike = value; return this; } public ArrayList getSyMenuItemRecIDBetween() { return SY_MenuItem_RecIDBetween; } public SY_MenuItemReportQuery setSyMenuItemRecIDBetween(ArrayList value) { this.SY_MenuItem_RecIDBetween = value; return this; } public ArrayList getSyMenuItemRecIDIn() { return SY_MenuItem_RecIDIn; } public SY_MenuItemReportQuery setSyMenuItemRecIDIn(ArrayList value) { this.SY_MenuItem_RecIDIn = value; return this; } public String getSyReportRecID() { return SY_Report_RecID; } public SY_MenuItemReportQuery setSyReportRecID(String value) { this.SY_Report_RecID = value; return this; } public String getSyReportRecIDStartsWith() { return SY_Report_RecIDStartsWith; } public SY_MenuItemReportQuery setSyReportRecIDStartsWith(String value) { this.SY_Report_RecIDStartsWith = value; return this; } public String getSyReportRecIDEndsWith() { return SY_Report_RecIDEndsWith; } public SY_MenuItemReportQuery setSyReportRecIDEndsWith(String value) { this.SY_Report_RecIDEndsWith = value; return this; } public String getSyReportRecIDContains() { return SY_Report_RecIDContains; } public SY_MenuItemReportQuery setSyReportRecIDContains(String value) { this.SY_Report_RecIDContains = value; return this; } public String getSyReportRecIDLike() { return SY_Report_RecIDLike; } public SY_MenuItemReportQuery setSyReportRecIDLike(String value) { this.SY_Report_RecIDLike = value; return this; } public ArrayList getSyReportRecIDBetween() { return SY_Report_RecIDBetween; } public SY_MenuItemReportQuery setSyReportRecIDBetween(ArrayList value) { this.SY_Report_RecIDBetween = value; return this; } public ArrayList getSyReportRecIDIn() { return SY_Report_RecIDIn; } public SY_MenuItemReportQuery setSyReportRecIDIn(ArrayList value) { this.SY_Report_RecIDIn = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public SY_MenuItemReportQuery setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getLastSavedDateTimeGreaterThanOrEqualTo() { return LastSavedDateTimeGreaterThanOrEqualTo; } public SY_MenuItemReportQuery setLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.LastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeGreaterThan() { return LastSavedDateTimeGreaterThan; } public SY_MenuItemReportQuery setLastSavedDateTimeGreaterThan(Date value) { this.LastSavedDateTimeGreaterThan = value; return this; } public Date getLastSavedDateTimeLessThan() { return LastSavedDateTimeLessThan; } public SY_MenuItemReportQuery setLastSavedDateTimeLessThan(Date value) { this.LastSavedDateTimeLessThan = value; return this; } public Date getLastSavedDateTimeLessThanOrEqualTo() { return LastSavedDateTimeLessThanOrEqualTo; } public SY_MenuItemReportQuery setLastSavedDateTimeLessThanOrEqualTo(Date value) { this.LastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeNotEqualTo() { return LastSavedDateTimeNotEqualTo; } public SY_MenuItemReportQuery setLastSavedDateTimeNotEqualTo(Date value) { this.LastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getLastSavedDateTimeBetween() { return LastSavedDateTimeBetween; } public SY_MenuItemReportQuery setLastSavedDateTimeBetween(ArrayList value) { this.LastSavedDateTimeBetween = value; return this; } public ArrayList getLastSavedDateTimeIn() { return LastSavedDateTimeIn; } public SY_MenuItemReportQuery setLastSavedDateTimeIn(ArrayList value) { this.LastSavedDateTimeIn = value; return this; } public ArrayList getRowHash() { return RowHash; } public SY_MenuItemReportQuery setRowHash(ArrayList value) { this.RowHash = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class SY_MessageLinksQuery extends QueryDb implements IReturn> { public String RecID = null; public String RecIDStartsWith = null; public String RecIDEndsWith = null; public String RecIDContains = null; public String RecIDLike = null; public ArrayList RecIDBetween = null; public ArrayList RecIDIn = null; public String Source = null; public String SourceStartsWith = null; public String SourceEndsWith = null; public String SourceContains = null; public String SourceLike = null; public ArrayList SourceBetween = null; public ArrayList SourceIn = null; public String LinkName = null; public String LinkNameStartsWith = null; public String LinkNameEndsWith = null; public String LinkNameContains = null; public String LinkNameLike = null; public ArrayList LinkNameBetween = null; public ArrayList LinkNameIn = null; public String Caption = null; public String CaptionStartsWith = null; public String CaptionEndsWith = null; public String CaptionContains = null; public String CaptionLike = null; public ArrayList CaptionBetween = null; public ArrayList CaptionIn = null; public String Description = null; public String DescriptionStartsWith = null; public String DescriptionEndsWith = null; public String DescriptionContains = null; public String DescriptionLike = null; public ArrayList DescriptionBetween = null; public ArrayList DescriptionIn = null; public String ScriptText = null; public String ScriptTextStartsWith = null; public String ScriptTextEndsWith = null; public String ScriptTextContains = null; public String ScriptTextLike = null; public ArrayList ScriptTextBetween = null; public ArrayList ScriptTextIn = null; public Date LastSavedDateTime = null; public Date LastSavedDateTimeGreaterThanOrEqualTo = null; public Date LastSavedDateTimeGreaterThan = null; public Date LastSavedDateTimeLessThan = null; public Date LastSavedDateTimeLessThanOrEqualTo = null; public Date LastSavedDateTimeNotEqualTo = null; public ArrayList LastSavedDateTimeBetween = null; public ArrayList LastSavedDateTimeIn = null; public String getRecID() { return RecID; } public SY_MessageLinksQuery setRecID(String value) { this.RecID = value; return this; } public String getRecIDStartsWith() { return RecIDStartsWith; } public SY_MessageLinksQuery setRecIDStartsWith(String value) { this.RecIDStartsWith = value; return this; } public String getRecIDEndsWith() { return RecIDEndsWith; } public SY_MessageLinksQuery setRecIDEndsWith(String value) { this.RecIDEndsWith = value; return this; } public String getRecIDContains() { return RecIDContains; } public SY_MessageLinksQuery setRecIDContains(String value) { this.RecIDContains = value; return this; } public String getRecIDLike() { return RecIDLike; } public SY_MessageLinksQuery setRecIDLike(String value) { this.RecIDLike = value; return this; } public ArrayList getRecIDBetween() { return RecIDBetween; } public SY_MessageLinksQuery setRecIDBetween(ArrayList value) { this.RecIDBetween = value; return this; } public ArrayList getRecIDIn() { return RecIDIn; } public SY_MessageLinksQuery setRecIDIn(ArrayList value) { this.RecIDIn = value; return this; } public String getSource() { return Source; } public SY_MessageLinksQuery setSource(String value) { this.Source = value; return this; } public String getSourceStartsWith() { return SourceStartsWith; } public SY_MessageLinksQuery setSourceStartsWith(String value) { this.SourceStartsWith = value; return this; } public String getSourceEndsWith() { return SourceEndsWith; } public SY_MessageLinksQuery setSourceEndsWith(String value) { this.SourceEndsWith = value; return this; } public String getSourceContains() { return SourceContains; } public SY_MessageLinksQuery setSourceContains(String value) { this.SourceContains = value; return this; } public String getSourceLike() { return SourceLike; } public SY_MessageLinksQuery setSourceLike(String value) { this.SourceLike = value; return this; } public ArrayList getSourceBetween() { return SourceBetween; } public SY_MessageLinksQuery setSourceBetween(ArrayList value) { this.SourceBetween = value; return this; } public ArrayList getSourceIn() { return SourceIn; } public SY_MessageLinksQuery setSourceIn(ArrayList value) { this.SourceIn = value; return this; } public String getLinkName() { return LinkName; } public SY_MessageLinksQuery setLinkName(String value) { this.LinkName = value; return this; } public String getLinkNameStartsWith() { return LinkNameStartsWith; } public SY_MessageLinksQuery setLinkNameStartsWith(String value) { this.LinkNameStartsWith = value; return this; } public String getLinkNameEndsWith() { return LinkNameEndsWith; } public SY_MessageLinksQuery setLinkNameEndsWith(String value) { this.LinkNameEndsWith = value; return this; } public String getLinkNameContains() { return LinkNameContains; } public SY_MessageLinksQuery setLinkNameContains(String value) { this.LinkNameContains = value; return this; } public String getLinkNameLike() { return LinkNameLike; } public SY_MessageLinksQuery setLinkNameLike(String value) { this.LinkNameLike = value; return this; } public ArrayList getLinkNameBetween() { return LinkNameBetween; } public SY_MessageLinksQuery setLinkNameBetween(ArrayList value) { this.LinkNameBetween = value; return this; } public ArrayList getLinkNameIn() { return LinkNameIn; } public SY_MessageLinksQuery setLinkNameIn(ArrayList value) { this.LinkNameIn = value; return this; } public String getCaption() { return Caption; } public SY_MessageLinksQuery setCaption(String value) { this.Caption = value; return this; } public String getCaptionStartsWith() { return CaptionStartsWith; } public SY_MessageLinksQuery setCaptionStartsWith(String value) { this.CaptionStartsWith = value; return this; } public String getCaptionEndsWith() { return CaptionEndsWith; } public SY_MessageLinksQuery setCaptionEndsWith(String value) { this.CaptionEndsWith = value; return this; } public String getCaptionContains() { return CaptionContains; } public SY_MessageLinksQuery setCaptionContains(String value) { this.CaptionContains = value; return this; } public String getCaptionLike() { return CaptionLike; } public SY_MessageLinksQuery setCaptionLike(String value) { this.CaptionLike = value; return this; } public ArrayList getCaptionBetween() { return CaptionBetween; } public SY_MessageLinksQuery setCaptionBetween(ArrayList value) { this.CaptionBetween = value; return this; } public ArrayList getCaptionIn() { return CaptionIn; } public SY_MessageLinksQuery setCaptionIn(ArrayList value) { this.CaptionIn = value; return this; } public String getDescription() { return Description; } public SY_MessageLinksQuery setDescription(String value) { this.Description = value; return this; } public String getDescriptionStartsWith() { return DescriptionStartsWith; } public SY_MessageLinksQuery setDescriptionStartsWith(String value) { this.DescriptionStartsWith = value; return this; } public String getDescriptionEndsWith() { return DescriptionEndsWith; } public SY_MessageLinksQuery setDescriptionEndsWith(String value) { this.DescriptionEndsWith = value; return this; } public String getDescriptionContains() { return DescriptionContains; } public SY_MessageLinksQuery setDescriptionContains(String value) { this.DescriptionContains = value; return this; } public String getDescriptionLike() { return DescriptionLike; } public SY_MessageLinksQuery setDescriptionLike(String value) { this.DescriptionLike = value; return this; } public ArrayList getDescriptionBetween() { return DescriptionBetween; } public SY_MessageLinksQuery setDescriptionBetween(ArrayList value) { this.DescriptionBetween = value; return this; } public ArrayList getDescriptionIn() { return DescriptionIn; } public SY_MessageLinksQuery setDescriptionIn(ArrayList value) { this.DescriptionIn = value; return this; } public String getScriptText() { return ScriptText; } public SY_MessageLinksQuery setScriptText(String value) { this.ScriptText = value; return this; } public String getScriptTextStartsWith() { return ScriptTextStartsWith; } public SY_MessageLinksQuery setScriptTextStartsWith(String value) { this.ScriptTextStartsWith = value; return this; } public String getScriptTextEndsWith() { return ScriptTextEndsWith; } public SY_MessageLinksQuery setScriptTextEndsWith(String value) { this.ScriptTextEndsWith = value; return this; } public String getScriptTextContains() { return ScriptTextContains; } public SY_MessageLinksQuery setScriptTextContains(String value) { this.ScriptTextContains = value; return this; } public String getScriptTextLike() { return ScriptTextLike; } public SY_MessageLinksQuery setScriptTextLike(String value) { this.ScriptTextLike = value; return this; } public ArrayList getScriptTextBetween() { return ScriptTextBetween; } public SY_MessageLinksQuery setScriptTextBetween(ArrayList value) { this.ScriptTextBetween = value; return this; } public ArrayList getScriptTextIn() { return ScriptTextIn; } public SY_MessageLinksQuery setScriptTextIn(ArrayList value) { this.ScriptTextIn = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public SY_MessageLinksQuery setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getLastSavedDateTimeGreaterThanOrEqualTo() { return LastSavedDateTimeGreaterThanOrEqualTo; } public SY_MessageLinksQuery setLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.LastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeGreaterThan() { return LastSavedDateTimeGreaterThan; } public SY_MessageLinksQuery setLastSavedDateTimeGreaterThan(Date value) { this.LastSavedDateTimeGreaterThan = value; return this; } public Date getLastSavedDateTimeLessThan() { return LastSavedDateTimeLessThan; } public SY_MessageLinksQuery setLastSavedDateTimeLessThan(Date value) { this.LastSavedDateTimeLessThan = value; return this; } public Date getLastSavedDateTimeLessThanOrEqualTo() { return LastSavedDateTimeLessThanOrEqualTo; } public SY_MessageLinksQuery setLastSavedDateTimeLessThanOrEqualTo(Date value) { this.LastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeNotEqualTo() { return LastSavedDateTimeNotEqualTo; } public SY_MessageLinksQuery setLastSavedDateTimeNotEqualTo(Date value) { this.LastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getLastSavedDateTimeBetween() { return LastSavedDateTimeBetween; } public SY_MessageLinksQuery setLastSavedDateTimeBetween(ArrayList value) { this.LastSavedDateTimeBetween = value; return this; } public ArrayList getLastSavedDateTimeIn() { return LastSavedDateTimeIn; } public SY_MessageLinksQuery setLastSavedDateTimeIn(ArrayList value) { this.LastSavedDateTimeIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class SY_NoteTypesQuery extends QueryDb implements IReturn> { public String RecID = null; public String RecIDStartsWith = null; public String RecIDEndsWith = null; public String RecIDContains = null; public String RecIDLike = null; public ArrayList RecIDBetween = null; public ArrayList RecIDIn = null; public String NoteType = null; public String NoteTypeStartsWith = null; public String NoteTypeEndsWith = null; public String NoteTypeContains = null; public String NoteTypeLike = null; public ArrayList NoteTypeBetween = null; public ArrayList NoteTypeIn = null; public Boolean DefaultType = null; public String NoteTypeDescription = null; public String NoteTypeDescriptionStartsWith = null; public String NoteTypeDescriptionEndsWith = null; public String NoteTypeDescriptionContains = null; public String NoteTypeDescriptionLike = null; public ArrayList NoteTypeDescriptionBetween = null; public ArrayList NoteTypeDescriptionIn = null; public Date LastSavedDateTime = null; public Date LastSavedDateTimeGreaterThanOrEqualTo = null; public Date LastSavedDateTimeGreaterThan = null; public Date LastSavedDateTimeLessThan = null; public Date LastSavedDateTimeLessThanOrEqualTo = null; public Date LastSavedDateTimeNotEqualTo = null; public ArrayList LastSavedDateTimeBetween = null; public ArrayList LastSavedDateTimeIn = null; public Integer ItemNo = null; public Integer ItemNoGreaterThanOrEqualTo = null; public Integer ItemNoGreaterThan = null; public Integer ItemNoLessThan = null; public Integer ItemNoLessThanOrEqualTo = null; public Integer ItemNoNotEqualTo = null; public ArrayList ItemNoBetween = null; public ArrayList ItemNoIn = null; public ArrayList RowHash = null; public String getRecID() { return RecID; } public SY_NoteTypesQuery setRecID(String value) { this.RecID = value; return this; } public String getRecIDStartsWith() { return RecIDStartsWith; } public SY_NoteTypesQuery setRecIDStartsWith(String value) { this.RecIDStartsWith = value; return this; } public String getRecIDEndsWith() { return RecIDEndsWith; } public SY_NoteTypesQuery setRecIDEndsWith(String value) { this.RecIDEndsWith = value; return this; } public String getRecIDContains() { return RecIDContains; } public SY_NoteTypesQuery setRecIDContains(String value) { this.RecIDContains = value; return this; } public String getRecIDLike() { return RecIDLike; } public SY_NoteTypesQuery setRecIDLike(String value) { this.RecIDLike = value; return this; } public ArrayList getRecIDBetween() { return RecIDBetween; } public SY_NoteTypesQuery setRecIDBetween(ArrayList value) { this.RecIDBetween = value; return this; } public ArrayList getRecIDIn() { return RecIDIn; } public SY_NoteTypesQuery setRecIDIn(ArrayList value) { this.RecIDIn = value; return this; } public String getNoteType() { return NoteType; } public SY_NoteTypesQuery setNoteType(String value) { this.NoteType = value; return this; } public String getNoteTypeStartsWith() { return NoteTypeStartsWith; } public SY_NoteTypesQuery setNoteTypeStartsWith(String value) { this.NoteTypeStartsWith = value; return this; } public String getNoteTypeEndsWith() { return NoteTypeEndsWith; } public SY_NoteTypesQuery setNoteTypeEndsWith(String value) { this.NoteTypeEndsWith = value; return this; } public String getNoteTypeContains() { return NoteTypeContains; } public SY_NoteTypesQuery setNoteTypeContains(String value) { this.NoteTypeContains = value; return this; } public String getNoteTypeLike() { return NoteTypeLike; } public SY_NoteTypesQuery setNoteTypeLike(String value) { this.NoteTypeLike = value; return this; } public ArrayList getNoteTypeBetween() { return NoteTypeBetween; } public SY_NoteTypesQuery setNoteTypeBetween(ArrayList value) { this.NoteTypeBetween = value; return this; } public ArrayList getNoteTypeIn() { return NoteTypeIn; } public SY_NoteTypesQuery setNoteTypeIn(ArrayList value) { this.NoteTypeIn = value; return this; } public Boolean isDefaultType() { return DefaultType; } public SY_NoteTypesQuery setDefaultType(Boolean value) { this.DefaultType = value; return this; } public String getNoteTypeDescription() { return NoteTypeDescription; } public SY_NoteTypesQuery setNoteTypeDescription(String value) { this.NoteTypeDescription = value; return this; } public String getNoteTypeDescriptionStartsWith() { return NoteTypeDescriptionStartsWith; } public SY_NoteTypesQuery setNoteTypeDescriptionStartsWith(String value) { this.NoteTypeDescriptionStartsWith = value; return this; } public String getNoteTypeDescriptionEndsWith() { return NoteTypeDescriptionEndsWith; } public SY_NoteTypesQuery setNoteTypeDescriptionEndsWith(String value) { this.NoteTypeDescriptionEndsWith = value; return this; } public String getNoteTypeDescriptionContains() { return NoteTypeDescriptionContains; } public SY_NoteTypesQuery setNoteTypeDescriptionContains(String value) { this.NoteTypeDescriptionContains = value; return this; } public String getNoteTypeDescriptionLike() { return NoteTypeDescriptionLike; } public SY_NoteTypesQuery setNoteTypeDescriptionLike(String value) { this.NoteTypeDescriptionLike = value; return this; } public ArrayList getNoteTypeDescriptionBetween() { return NoteTypeDescriptionBetween; } public SY_NoteTypesQuery setNoteTypeDescriptionBetween(ArrayList value) { this.NoteTypeDescriptionBetween = value; return this; } public ArrayList getNoteTypeDescriptionIn() { return NoteTypeDescriptionIn; } public SY_NoteTypesQuery setNoteTypeDescriptionIn(ArrayList value) { this.NoteTypeDescriptionIn = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public SY_NoteTypesQuery setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getLastSavedDateTimeGreaterThanOrEqualTo() { return LastSavedDateTimeGreaterThanOrEqualTo; } public SY_NoteTypesQuery setLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.LastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeGreaterThan() { return LastSavedDateTimeGreaterThan; } public SY_NoteTypesQuery setLastSavedDateTimeGreaterThan(Date value) { this.LastSavedDateTimeGreaterThan = value; return this; } public Date getLastSavedDateTimeLessThan() { return LastSavedDateTimeLessThan; } public SY_NoteTypesQuery setLastSavedDateTimeLessThan(Date value) { this.LastSavedDateTimeLessThan = value; return this; } public Date getLastSavedDateTimeLessThanOrEqualTo() { return LastSavedDateTimeLessThanOrEqualTo; } public SY_NoteTypesQuery setLastSavedDateTimeLessThanOrEqualTo(Date value) { this.LastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeNotEqualTo() { return LastSavedDateTimeNotEqualTo; } public SY_NoteTypesQuery setLastSavedDateTimeNotEqualTo(Date value) { this.LastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getLastSavedDateTimeBetween() { return LastSavedDateTimeBetween; } public SY_NoteTypesQuery setLastSavedDateTimeBetween(ArrayList value) { this.LastSavedDateTimeBetween = value; return this; } public ArrayList getLastSavedDateTimeIn() { return LastSavedDateTimeIn; } public SY_NoteTypesQuery setLastSavedDateTimeIn(ArrayList value) { this.LastSavedDateTimeIn = value; return this; } public Integer getItemNo() { return ItemNo; } public SY_NoteTypesQuery setItemNo(Integer value) { this.ItemNo = value; return this; } public Integer getItemNoGreaterThanOrEqualTo() { return ItemNoGreaterThanOrEqualTo; } public SY_NoteTypesQuery setItemNoGreaterThanOrEqualTo(Integer value) { this.ItemNoGreaterThanOrEqualTo = value; return this; } public Integer getItemNoGreaterThan() { return ItemNoGreaterThan; } public SY_NoteTypesQuery setItemNoGreaterThan(Integer value) { this.ItemNoGreaterThan = value; return this; } public Integer getItemNoLessThan() { return ItemNoLessThan; } public SY_NoteTypesQuery setItemNoLessThan(Integer value) { this.ItemNoLessThan = value; return this; } public Integer getItemNoLessThanOrEqualTo() { return ItemNoLessThanOrEqualTo; } public SY_NoteTypesQuery setItemNoLessThanOrEqualTo(Integer value) { this.ItemNoLessThanOrEqualTo = value; return this; } public Integer getItemNoNotEqualTo() { return ItemNoNotEqualTo; } public SY_NoteTypesQuery setItemNoNotEqualTo(Integer value) { this.ItemNoNotEqualTo = value; return this; } public ArrayList getItemNoBetween() { return ItemNoBetween; } public SY_NoteTypesQuery setItemNoBetween(ArrayList value) { this.ItemNoBetween = value; return this; } public ArrayList getItemNoIn() { return ItemNoIn; } public SY_NoteTypesQuery setItemNoIn(ArrayList value) { this.ItemNoIn = value; return this; } public ArrayList getRowHash() { return RowHash; } public SY_NoteTypesQuery setRowHash(ArrayList value) { this.RowHash = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class SY_NumbersQuery extends QueryDb implements IReturn> { public String InvoiceNumberID = null; public String InvoiceNumberIDStartsWith = null; public String InvoiceNumberIDEndsWith = null; public String InvoiceNumberIDContains = null; public String InvoiceNumberIDLike = null; public ArrayList InvoiceNumberIDBetween = null; public ArrayList InvoiceNumberIDIn = null; public String Description = null; public String DescriptionStartsWith = null; public String DescriptionEndsWith = null; public String DescriptionContains = null; public String DescriptionLike = null; public ArrayList DescriptionBetween = null; public ArrayList DescriptionIn = null; public String LastInvoiceNo = null; public String LastInvoiceNoStartsWith = null; public String LastInvoiceNoEndsWith = null; public String LastInvoiceNoContains = null; public String LastInvoiceNoLike = null; public ArrayList LastInvoiceNoBetween = null; public ArrayList LastInvoiceNoIn = null; public Date LastSavedDateTime = null; public Date LastSavedDateTimeGreaterThanOrEqualTo = null; public Date LastSavedDateTimeGreaterThan = null; public Date LastSavedDateTimeLessThan = null; public Date LastSavedDateTimeLessThanOrEqualTo = null; public Date LastSavedDateTimeNotEqualTo = null; public ArrayList LastSavedDateTimeBetween = null; public ArrayList LastSavedDateTimeIn = null; public String getInvoiceNumberID() { return InvoiceNumberID; } public SY_NumbersQuery setInvoiceNumberID(String value) { this.InvoiceNumberID = value; return this; } public String getInvoiceNumberIDStartsWith() { return InvoiceNumberIDStartsWith; } public SY_NumbersQuery setInvoiceNumberIDStartsWith(String value) { this.InvoiceNumberIDStartsWith = value; return this; } public String getInvoiceNumberIDEndsWith() { return InvoiceNumberIDEndsWith; } public SY_NumbersQuery setInvoiceNumberIDEndsWith(String value) { this.InvoiceNumberIDEndsWith = value; return this; } public String getInvoiceNumberIDContains() { return InvoiceNumberIDContains; } public SY_NumbersQuery setInvoiceNumberIDContains(String value) { this.InvoiceNumberIDContains = value; return this; } public String getInvoiceNumberIDLike() { return InvoiceNumberIDLike; } public SY_NumbersQuery setInvoiceNumberIDLike(String value) { this.InvoiceNumberIDLike = value; return this; } public ArrayList getInvoiceNumberIDBetween() { return InvoiceNumberIDBetween; } public SY_NumbersQuery setInvoiceNumberIDBetween(ArrayList value) { this.InvoiceNumberIDBetween = value; return this; } public ArrayList getInvoiceNumberIDIn() { return InvoiceNumberIDIn; } public SY_NumbersQuery setInvoiceNumberIDIn(ArrayList value) { this.InvoiceNumberIDIn = value; return this; } public String getDescription() { return Description; } public SY_NumbersQuery setDescription(String value) { this.Description = value; return this; } public String getDescriptionStartsWith() { return DescriptionStartsWith; } public SY_NumbersQuery setDescriptionStartsWith(String value) { this.DescriptionStartsWith = value; return this; } public String getDescriptionEndsWith() { return DescriptionEndsWith; } public SY_NumbersQuery setDescriptionEndsWith(String value) { this.DescriptionEndsWith = value; return this; } public String getDescriptionContains() { return DescriptionContains; } public SY_NumbersQuery setDescriptionContains(String value) { this.DescriptionContains = value; return this; } public String getDescriptionLike() { return DescriptionLike; } public SY_NumbersQuery setDescriptionLike(String value) { this.DescriptionLike = value; return this; } public ArrayList getDescriptionBetween() { return DescriptionBetween; } public SY_NumbersQuery setDescriptionBetween(ArrayList value) { this.DescriptionBetween = value; return this; } public ArrayList getDescriptionIn() { return DescriptionIn; } public SY_NumbersQuery setDescriptionIn(ArrayList value) { this.DescriptionIn = value; return this; } public String getLastInvoiceNo() { return LastInvoiceNo; } public SY_NumbersQuery setLastInvoiceNo(String value) { this.LastInvoiceNo = value; return this; } public String getLastInvoiceNoStartsWith() { return LastInvoiceNoStartsWith; } public SY_NumbersQuery setLastInvoiceNoStartsWith(String value) { this.LastInvoiceNoStartsWith = value; return this; } public String getLastInvoiceNoEndsWith() { return LastInvoiceNoEndsWith; } public SY_NumbersQuery setLastInvoiceNoEndsWith(String value) { this.LastInvoiceNoEndsWith = value; return this; } public String getLastInvoiceNoContains() { return LastInvoiceNoContains; } public SY_NumbersQuery setLastInvoiceNoContains(String value) { this.LastInvoiceNoContains = value; return this; } public String getLastInvoiceNoLike() { return LastInvoiceNoLike; } public SY_NumbersQuery setLastInvoiceNoLike(String value) { this.LastInvoiceNoLike = value; return this; } public ArrayList getLastInvoiceNoBetween() { return LastInvoiceNoBetween; } public SY_NumbersQuery setLastInvoiceNoBetween(ArrayList value) { this.LastInvoiceNoBetween = value; return this; } public ArrayList getLastInvoiceNoIn() { return LastInvoiceNoIn; } public SY_NumbersQuery setLastInvoiceNoIn(ArrayList value) { this.LastInvoiceNoIn = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public SY_NumbersQuery setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getLastSavedDateTimeGreaterThanOrEqualTo() { return LastSavedDateTimeGreaterThanOrEqualTo; } public SY_NumbersQuery setLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.LastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeGreaterThan() { return LastSavedDateTimeGreaterThan; } public SY_NumbersQuery setLastSavedDateTimeGreaterThan(Date value) { this.LastSavedDateTimeGreaterThan = value; return this; } public Date getLastSavedDateTimeLessThan() { return LastSavedDateTimeLessThan; } public SY_NumbersQuery setLastSavedDateTimeLessThan(Date value) { this.LastSavedDateTimeLessThan = value; return this; } public Date getLastSavedDateTimeLessThanOrEqualTo() { return LastSavedDateTimeLessThanOrEqualTo; } public SY_NumbersQuery setLastSavedDateTimeLessThanOrEqualTo(Date value) { this.LastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeNotEqualTo() { return LastSavedDateTimeNotEqualTo; } public SY_NumbersQuery setLastSavedDateTimeNotEqualTo(Date value) { this.LastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getLastSavedDateTimeBetween() { return LastSavedDateTimeBetween; } public SY_NumbersQuery setLastSavedDateTimeBetween(ArrayList value) { this.LastSavedDateTimeBetween = value; return this; } public ArrayList getLastSavedDateTimeIn() { return LastSavedDateTimeIn; } public SY_NumbersQuery setLastSavedDateTimeIn(ArrayList value) { this.LastSavedDateTimeIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @Route(Path="/Queries/SY_Plugin", Verbs="GET") @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class SY_PluginQuery extends QueryDb implements IReturn> { public UUID RecID = null; public ArrayList RecIDIn = null; public String Name = null; public String NameStartsWith = null; public String NameEndsWith = null; public String NameContains = null; public String NameLike = null; public ArrayList NameBetween = null; public ArrayList NameIn = null; public String Description = null; public String DescriptionStartsWith = null; public String DescriptionEndsWith = null; public String DescriptionContains = null; public String DescriptionLike = null; public ArrayList DescriptionBetween = null; public ArrayList DescriptionIn = null; public Boolean IsEnabled = null; public Integer ExecutionOrder = null; public Integer ExecutionOrderGreaterThanOrEqualTo = null; public Integer ExecutionOrderGreaterThan = null; public Integer ExecutionOrderLessThan = null; public Integer ExecutionOrderLessThanOrEqualTo = null; public Integer ExecutionOrderNotEqualTo = null; public ArrayList ExecutionOrderBetween = null; public ArrayList ExecutionOrderIn = null; public String Author = null; public String AuthorStartsWith = null; public String AuthorEndsWith = null; public String AuthorContains = null; public String AuthorLike = null; public ArrayList AuthorBetween = null; public ArrayList AuthorIn = null; public String Version = null; public String VersionStartsWith = null; public String VersionEndsWith = null; public String VersionContains = null; public String VersionLike = null; public ArrayList VersionBetween = null; public ArrayList VersionIn = null; public String LicenceKey = null; public String LicenceKeyStartsWith = null; public String LicenceKeyEndsWith = null; public String LicenceKeyContains = null; public String LicenceKeyLike = null; public ArrayList LicenceKeyBetween = null; public ArrayList LicenceKeyIn = null; public String ViewPassword = null; public String ViewPasswordStartsWith = null; public String ViewPasswordEndsWith = null; public String ViewPasswordContains = null; public String ViewPasswordLike = null; public ArrayList ViewPasswordBetween = null; public ArrayList ViewPasswordIn = null; public String EditPassword = null; public String EditPasswordStartsWith = null; public String EditPasswordEndsWith = null; public String EditPasswordContains = null; public String EditPasswordLike = null; public ArrayList EditPasswordBetween = null; public ArrayList EditPasswordIn = null; public Boolean IsEncrypted = null; public ArrayList RowHash = null; public String Code = null; public String CodeStartsWith = null; public String CodeEndsWith = null; public String CodeContains = null; public String CodeLike = null; public ArrayList CodeBetween = null; public ArrayList CodeIn = null; public Short ExceptionPolicy = null; public Short ExceptionPolicyGreaterThanOrEqualTo = null; public Short ExceptionPolicyGreaterThan = null; public Short ExceptionPolicyLessThan = null; public Short ExceptionPolicyLessThanOrEqualTo = null; public Short ExceptionPolicyNotEqualTo = null; public ArrayList ExceptionPolicyBetween = null; public ArrayList ExceptionPolicyIn = null; public Boolean IsIsolatedToOwnAppDomain = null; public String FileHash = null; public String FileHashStartsWith = null; public String FileHashEndsWith = null; public String FileHashContains = null; public String FileHashLike = null; public ArrayList FileHashBetween = null; public ArrayList FileHashIn = null; public Date CreateDateTime = null; public Date CreateDateTimeGreaterThanOrEqualTo = null; public Date CreateDateTimeGreaterThan = null; public Date CreateDateTimeLessThan = null; public Date CreateDateTimeLessThanOrEqualTo = null; public Date CreateDateTimeNotEqualTo = null; public ArrayList CreateDateTimeBetween = null; public ArrayList CreateDateTimeIn = null; public Date LastWriteDateTime = null; public Date LastWriteDateTimeGreaterThanOrEqualTo = null; public Date LastWriteDateTimeGreaterThan = null; public Date LastWriteDateTimeLessThan = null; public Date LastWriteDateTimeLessThanOrEqualTo = null; public Date LastWriteDateTimeNotEqualTo = null; public ArrayList LastWriteDateTimeBetween = null; public ArrayList LastWriteDateTimeIn = null; public Short Language = null; public Short LanguageGreaterThanOrEqualTo = null; public Short LanguageGreaterThan = null; public Short LanguageLessThan = null; public Short LanguageLessThanOrEqualTo = null; public Short LanguageNotEqualTo = null; public ArrayList LanguageBetween = null; public ArrayList LanguageIn = null; public UUID getRecID() { return RecID; } public SY_PluginQuery setRecID(UUID value) { this.RecID = value; return this; } public ArrayList getRecIDIn() { return RecIDIn; } public SY_PluginQuery setRecIDIn(ArrayList value) { this.RecIDIn = value; return this; } public String getName() { return Name; } public SY_PluginQuery setName(String value) { this.Name = value; return this; } public String getNameStartsWith() { return NameStartsWith; } public SY_PluginQuery setNameStartsWith(String value) { this.NameStartsWith = value; return this; } public String getNameEndsWith() { return NameEndsWith; } public SY_PluginQuery setNameEndsWith(String value) { this.NameEndsWith = value; return this; } public String getNameContains() { return NameContains; } public SY_PluginQuery setNameContains(String value) { this.NameContains = value; return this; } public String getNameLike() { return NameLike; } public SY_PluginQuery setNameLike(String value) { this.NameLike = value; return this; } public ArrayList getNameBetween() { return NameBetween; } public SY_PluginQuery setNameBetween(ArrayList value) { this.NameBetween = value; return this; } public ArrayList getNameIn() { return NameIn; } public SY_PluginQuery setNameIn(ArrayList value) { this.NameIn = value; return this; } public String getDescription() { return Description; } public SY_PluginQuery setDescription(String value) { this.Description = value; return this; } public String getDescriptionStartsWith() { return DescriptionStartsWith; } public SY_PluginQuery setDescriptionStartsWith(String value) { this.DescriptionStartsWith = value; return this; } public String getDescriptionEndsWith() { return DescriptionEndsWith; } public SY_PluginQuery setDescriptionEndsWith(String value) { this.DescriptionEndsWith = value; return this; } public String getDescriptionContains() { return DescriptionContains; } public SY_PluginQuery setDescriptionContains(String value) { this.DescriptionContains = value; return this; } public String getDescriptionLike() { return DescriptionLike; } public SY_PluginQuery setDescriptionLike(String value) { this.DescriptionLike = value; return this; } public ArrayList getDescriptionBetween() { return DescriptionBetween; } public SY_PluginQuery setDescriptionBetween(ArrayList value) { this.DescriptionBetween = value; return this; } public ArrayList getDescriptionIn() { return DescriptionIn; } public SY_PluginQuery setDescriptionIn(ArrayList value) { this.DescriptionIn = value; return this; } public Boolean getIsEnabled() { return IsEnabled; } public SY_PluginQuery setIsEnabled(Boolean value) { this.IsEnabled = value; return this; } public Integer getExecutionOrder() { return ExecutionOrder; } public SY_PluginQuery setExecutionOrder(Integer value) { this.ExecutionOrder = value; return this; } public Integer getExecutionOrderGreaterThanOrEqualTo() { return ExecutionOrderGreaterThanOrEqualTo; } public SY_PluginQuery setExecutionOrderGreaterThanOrEqualTo(Integer value) { this.ExecutionOrderGreaterThanOrEqualTo = value; return this; } public Integer getExecutionOrderGreaterThan() { return ExecutionOrderGreaterThan; } public SY_PluginQuery setExecutionOrderGreaterThan(Integer value) { this.ExecutionOrderGreaterThan = value; return this; } public Integer getExecutionOrderLessThan() { return ExecutionOrderLessThan; } public SY_PluginQuery setExecutionOrderLessThan(Integer value) { this.ExecutionOrderLessThan = value; return this; } public Integer getExecutionOrderLessThanOrEqualTo() { return ExecutionOrderLessThanOrEqualTo; } public SY_PluginQuery setExecutionOrderLessThanOrEqualTo(Integer value) { this.ExecutionOrderLessThanOrEqualTo = value; return this; } public Integer getExecutionOrderNotEqualTo() { return ExecutionOrderNotEqualTo; } public SY_PluginQuery setExecutionOrderNotEqualTo(Integer value) { this.ExecutionOrderNotEqualTo = value; return this; } public ArrayList getExecutionOrderBetween() { return ExecutionOrderBetween; } public SY_PluginQuery setExecutionOrderBetween(ArrayList value) { this.ExecutionOrderBetween = value; return this; } public ArrayList getExecutionOrderIn() { return ExecutionOrderIn; } public SY_PluginQuery setExecutionOrderIn(ArrayList value) { this.ExecutionOrderIn = value; return this; } public String getAuthor() { return Author; } public SY_PluginQuery setAuthor(String value) { this.Author = value; return this; } public String getAuthorStartsWith() { return AuthorStartsWith; } public SY_PluginQuery setAuthorStartsWith(String value) { this.AuthorStartsWith = value; return this; } public String getAuthorEndsWith() { return AuthorEndsWith; } public SY_PluginQuery setAuthorEndsWith(String value) { this.AuthorEndsWith = value; return this; } public String getAuthorContains() { return AuthorContains; } public SY_PluginQuery setAuthorContains(String value) { this.AuthorContains = value; return this; } public String getAuthorLike() { return AuthorLike; } public SY_PluginQuery setAuthorLike(String value) { this.AuthorLike = value; return this; } public ArrayList getAuthorBetween() { return AuthorBetween; } public SY_PluginQuery setAuthorBetween(ArrayList value) { this.AuthorBetween = value; return this; } public ArrayList getAuthorIn() { return AuthorIn; } public SY_PluginQuery setAuthorIn(ArrayList value) { this.AuthorIn = value; return this; } public String getVersion() { return Version; } public SY_PluginQuery setVersion(String value) { this.Version = value; return this; } public String getVersionStartsWith() { return VersionStartsWith; } public SY_PluginQuery setVersionStartsWith(String value) { this.VersionStartsWith = value; return this; } public String getVersionEndsWith() { return VersionEndsWith; } public SY_PluginQuery setVersionEndsWith(String value) { this.VersionEndsWith = value; return this; } public String getVersionContains() { return VersionContains; } public SY_PluginQuery setVersionContains(String value) { this.VersionContains = value; return this; } public String getVersionLike() { return VersionLike; } public SY_PluginQuery setVersionLike(String value) { this.VersionLike = value; return this; } public ArrayList getVersionBetween() { return VersionBetween; } public SY_PluginQuery setVersionBetween(ArrayList value) { this.VersionBetween = value; return this; } public ArrayList getVersionIn() { return VersionIn; } public SY_PluginQuery setVersionIn(ArrayList value) { this.VersionIn = value; return this; } public String getLicenceKey() { return LicenceKey; } public SY_PluginQuery setLicenceKey(String value) { this.LicenceKey = value; return this; } public String getLicenceKeyStartsWith() { return LicenceKeyStartsWith; } public SY_PluginQuery setLicenceKeyStartsWith(String value) { this.LicenceKeyStartsWith = value; return this; } public String getLicenceKeyEndsWith() { return LicenceKeyEndsWith; } public SY_PluginQuery setLicenceKeyEndsWith(String value) { this.LicenceKeyEndsWith = value; return this; } public String getLicenceKeyContains() { return LicenceKeyContains; } public SY_PluginQuery setLicenceKeyContains(String value) { this.LicenceKeyContains = value; return this; } public String getLicenceKeyLike() { return LicenceKeyLike; } public SY_PluginQuery setLicenceKeyLike(String value) { this.LicenceKeyLike = value; return this; } public ArrayList getLicenceKeyBetween() { return LicenceKeyBetween; } public SY_PluginQuery setLicenceKeyBetween(ArrayList value) { this.LicenceKeyBetween = value; return this; } public ArrayList getLicenceKeyIn() { return LicenceKeyIn; } public SY_PluginQuery setLicenceKeyIn(ArrayList value) { this.LicenceKeyIn = value; return this; } public String getViewPassword() { return ViewPassword; } public SY_PluginQuery setViewPassword(String value) { this.ViewPassword = value; return this; } public String getViewPasswordStartsWith() { return ViewPasswordStartsWith; } public SY_PluginQuery setViewPasswordStartsWith(String value) { this.ViewPasswordStartsWith = value; return this; } public String getViewPasswordEndsWith() { return ViewPasswordEndsWith; } public SY_PluginQuery setViewPasswordEndsWith(String value) { this.ViewPasswordEndsWith = value; return this; } public String getViewPasswordContains() { return ViewPasswordContains; } public SY_PluginQuery setViewPasswordContains(String value) { this.ViewPasswordContains = value; return this; } public String getViewPasswordLike() { return ViewPasswordLike; } public SY_PluginQuery setViewPasswordLike(String value) { this.ViewPasswordLike = value; return this; } public ArrayList getViewPasswordBetween() { return ViewPasswordBetween; } public SY_PluginQuery setViewPasswordBetween(ArrayList value) { this.ViewPasswordBetween = value; return this; } public ArrayList getViewPasswordIn() { return ViewPasswordIn; } public SY_PluginQuery setViewPasswordIn(ArrayList value) { this.ViewPasswordIn = value; return this; } public String getEditPassword() { return EditPassword; } public SY_PluginQuery setEditPassword(String value) { this.EditPassword = value; return this; } public String getEditPasswordStartsWith() { return EditPasswordStartsWith; } public SY_PluginQuery setEditPasswordStartsWith(String value) { this.EditPasswordStartsWith = value; return this; } public String getEditPasswordEndsWith() { return EditPasswordEndsWith; } public SY_PluginQuery setEditPasswordEndsWith(String value) { this.EditPasswordEndsWith = value; return this; } public String getEditPasswordContains() { return EditPasswordContains; } public SY_PluginQuery setEditPasswordContains(String value) { this.EditPasswordContains = value; return this; } public String getEditPasswordLike() { return EditPasswordLike; } public SY_PluginQuery setEditPasswordLike(String value) { this.EditPasswordLike = value; return this; } public ArrayList getEditPasswordBetween() { return EditPasswordBetween; } public SY_PluginQuery setEditPasswordBetween(ArrayList value) { this.EditPasswordBetween = value; return this; } public ArrayList getEditPasswordIn() { return EditPasswordIn; } public SY_PluginQuery setEditPasswordIn(ArrayList value) { this.EditPasswordIn = value; return this; } public Boolean getIsEncrypted() { return IsEncrypted; } public SY_PluginQuery setIsEncrypted(Boolean value) { this.IsEncrypted = value; return this; } public ArrayList getRowHash() { return RowHash; } public SY_PluginQuery setRowHash(ArrayList value) { this.RowHash = value; return this; } public String getCode() { return Code; } public SY_PluginQuery setCode(String value) { this.Code = value; return this; } public String getCodeStartsWith() { return CodeStartsWith; } public SY_PluginQuery setCodeStartsWith(String value) { this.CodeStartsWith = value; return this; } public String getCodeEndsWith() { return CodeEndsWith; } public SY_PluginQuery setCodeEndsWith(String value) { this.CodeEndsWith = value; return this; } public String getCodeContains() { return CodeContains; } public SY_PluginQuery setCodeContains(String value) { this.CodeContains = value; return this; } public String getCodeLike() { return CodeLike; } public SY_PluginQuery setCodeLike(String value) { this.CodeLike = value; return this; } public ArrayList getCodeBetween() { return CodeBetween; } public SY_PluginQuery setCodeBetween(ArrayList value) { this.CodeBetween = value; return this; } public ArrayList getCodeIn() { return CodeIn; } public SY_PluginQuery setCodeIn(ArrayList value) { this.CodeIn = value; return this; } public Short getExceptionPolicy() { return ExceptionPolicy; } public SY_PluginQuery setExceptionPolicy(Short value) { this.ExceptionPolicy = value; return this; } public Short getExceptionPolicyGreaterThanOrEqualTo() { return ExceptionPolicyGreaterThanOrEqualTo; } public SY_PluginQuery setExceptionPolicyGreaterThanOrEqualTo(Short value) { this.ExceptionPolicyGreaterThanOrEqualTo = value; return this; } public Short getExceptionPolicyGreaterThan() { return ExceptionPolicyGreaterThan; } public SY_PluginQuery setExceptionPolicyGreaterThan(Short value) { this.ExceptionPolicyGreaterThan = value; return this; } public Short getExceptionPolicyLessThan() { return ExceptionPolicyLessThan; } public SY_PluginQuery setExceptionPolicyLessThan(Short value) { this.ExceptionPolicyLessThan = value; return this; } public Short getExceptionPolicyLessThanOrEqualTo() { return ExceptionPolicyLessThanOrEqualTo; } public SY_PluginQuery setExceptionPolicyLessThanOrEqualTo(Short value) { this.ExceptionPolicyLessThanOrEqualTo = value; return this; } public Short getExceptionPolicyNotEqualTo() { return ExceptionPolicyNotEqualTo; } public SY_PluginQuery setExceptionPolicyNotEqualTo(Short value) { this.ExceptionPolicyNotEqualTo = value; return this; } public ArrayList getExceptionPolicyBetween() { return ExceptionPolicyBetween; } public SY_PluginQuery setExceptionPolicyBetween(ArrayList value) { this.ExceptionPolicyBetween = value; return this; } public ArrayList getExceptionPolicyIn() { return ExceptionPolicyIn; } public SY_PluginQuery setExceptionPolicyIn(ArrayList value) { this.ExceptionPolicyIn = value; return this; } public Boolean getIsIsolatedToOwnAppDomain() { return IsIsolatedToOwnAppDomain; } public SY_PluginQuery setIsIsolatedToOwnAppDomain(Boolean value) { this.IsIsolatedToOwnAppDomain = value; return this; } public String getFileHash() { return FileHash; } public SY_PluginQuery setFileHash(String value) { this.FileHash = value; return this; } public String getFileHashStartsWith() { return FileHashStartsWith; } public SY_PluginQuery setFileHashStartsWith(String value) { this.FileHashStartsWith = value; return this; } public String getFileHashEndsWith() { return FileHashEndsWith; } public SY_PluginQuery setFileHashEndsWith(String value) { this.FileHashEndsWith = value; return this; } public String getFileHashContains() { return FileHashContains; } public SY_PluginQuery setFileHashContains(String value) { this.FileHashContains = value; return this; } public String getFileHashLike() { return FileHashLike; } public SY_PluginQuery setFileHashLike(String value) { this.FileHashLike = value; return this; } public ArrayList getFileHashBetween() { return FileHashBetween; } public SY_PluginQuery setFileHashBetween(ArrayList value) { this.FileHashBetween = value; return this; } public ArrayList getFileHashIn() { return FileHashIn; } public SY_PluginQuery setFileHashIn(ArrayList value) { this.FileHashIn = value; return this; } public Date getCreateDateTime() { return CreateDateTime; } public SY_PluginQuery setCreateDateTime(Date value) { this.CreateDateTime = value; return this; } public Date getCreateDateTimeGreaterThanOrEqualTo() { return CreateDateTimeGreaterThanOrEqualTo; } public SY_PluginQuery setCreateDateTimeGreaterThanOrEqualTo(Date value) { this.CreateDateTimeGreaterThanOrEqualTo = value; return this; } public Date getCreateDateTimeGreaterThan() { return CreateDateTimeGreaterThan; } public SY_PluginQuery setCreateDateTimeGreaterThan(Date value) { this.CreateDateTimeGreaterThan = value; return this; } public Date getCreateDateTimeLessThan() { return CreateDateTimeLessThan; } public SY_PluginQuery setCreateDateTimeLessThan(Date value) { this.CreateDateTimeLessThan = value; return this; } public Date getCreateDateTimeLessThanOrEqualTo() { return CreateDateTimeLessThanOrEqualTo; } public SY_PluginQuery setCreateDateTimeLessThanOrEqualTo(Date value) { this.CreateDateTimeLessThanOrEqualTo = value; return this; } public Date getCreateDateTimeNotEqualTo() { return CreateDateTimeNotEqualTo; } public SY_PluginQuery setCreateDateTimeNotEqualTo(Date value) { this.CreateDateTimeNotEqualTo = value; return this; } public ArrayList getCreateDateTimeBetween() { return CreateDateTimeBetween; } public SY_PluginQuery setCreateDateTimeBetween(ArrayList value) { this.CreateDateTimeBetween = value; return this; } public ArrayList getCreateDateTimeIn() { return CreateDateTimeIn; } public SY_PluginQuery setCreateDateTimeIn(ArrayList value) { this.CreateDateTimeIn = value; return this; } public Date getLastWriteDateTime() { return LastWriteDateTime; } public SY_PluginQuery setLastWriteDateTime(Date value) { this.LastWriteDateTime = value; return this; } public Date getLastWriteDateTimeGreaterThanOrEqualTo() { return LastWriteDateTimeGreaterThanOrEqualTo; } public SY_PluginQuery setLastWriteDateTimeGreaterThanOrEqualTo(Date value) { this.LastWriteDateTimeGreaterThanOrEqualTo = value; return this; } public Date getLastWriteDateTimeGreaterThan() { return LastWriteDateTimeGreaterThan; } public SY_PluginQuery setLastWriteDateTimeGreaterThan(Date value) { this.LastWriteDateTimeGreaterThan = value; return this; } public Date getLastWriteDateTimeLessThan() { return LastWriteDateTimeLessThan; } public SY_PluginQuery setLastWriteDateTimeLessThan(Date value) { this.LastWriteDateTimeLessThan = value; return this; } public Date getLastWriteDateTimeLessThanOrEqualTo() { return LastWriteDateTimeLessThanOrEqualTo; } public SY_PluginQuery setLastWriteDateTimeLessThanOrEqualTo(Date value) { this.LastWriteDateTimeLessThanOrEqualTo = value; return this; } public Date getLastWriteDateTimeNotEqualTo() { return LastWriteDateTimeNotEqualTo; } public SY_PluginQuery setLastWriteDateTimeNotEqualTo(Date value) { this.LastWriteDateTimeNotEqualTo = value; return this; } public ArrayList getLastWriteDateTimeBetween() { return LastWriteDateTimeBetween; } public SY_PluginQuery setLastWriteDateTimeBetween(ArrayList value) { this.LastWriteDateTimeBetween = value; return this; } public ArrayList getLastWriteDateTimeIn() { return LastWriteDateTimeIn; } public SY_PluginQuery setLastWriteDateTimeIn(ArrayList value) { this.LastWriteDateTimeIn = value; return this; } public Short getLanguage() { return Language; } public SY_PluginQuery setLanguage(Short value) { this.Language = value; return this; } public Short getLanguageGreaterThanOrEqualTo() { return LanguageGreaterThanOrEqualTo; } public SY_PluginQuery setLanguageGreaterThanOrEqualTo(Short value) { this.LanguageGreaterThanOrEqualTo = value; return this; } public Short getLanguageGreaterThan() { return LanguageGreaterThan; } public SY_PluginQuery setLanguageGreaterThan(Short value) { this.LanguageGreaterThan = value; return this; } public Short getLanguageLessThan() { return LanguageLessThan; } public SY_PluginQuery setLanguageLessThan(Short value) { this.LanguageLessThan = value; return this; } public Short getLanguageLessThanOrEqualTo() { return LanguageLessThanOrEqualTo; } public SY_PluginQuery setLanguageLessThanOrEqualTo(Short value) { this.LanguageLessThanOrEqualTo = value; return this; } public Short getLanguageNotEqualTo() { return LanguageNotEqualTo; } public SY_PluginQuery setLanguageNotEqualTo(Short value) { this.LanguageNotEqualTo = value; return this; } public ArrayList getLanguageBetween() { return LanguageBetween; } public SY_PluginQuery setLanguageBetween(ArrayList value) { this.LanguageBetween = value; return this; } public ArrayList getLanguageIn() { return LanguageIn; } public SY_PluginQuery setLanguageIn(ArrayList value) { this.LanguageIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class JB_EstimateNotesQuery extends QueryDb implements IReturn> { public String RecID = null; public String RecIDStartsWith = null; public String RecIDEndsWith = null; public String RecIDContains = null; public String RecIDLike = null; public ArrayList RecIDBetween = null; public ArrayList RecIDIn = null; public String JB_Estimate_RecID = null; public String JB_Estimate_RecIDStartsWith = null; public String JB_Estimate_RecIDEndsWith = null; public String JB_Estimate_RecIDContains = null; public String JB_Estimate_RecIDLike = null; public ArrayList JB_Estimate_RecIDBetween = null; public ArrayList JB_Estimate_RecIDIn = null; public String NoteTypeID = null; public String NoteTypeIDStartsWith = null; public String NoteTypeIDEndsWith = null; public String NoteTypeIDContains = null; public String NoteTypeIDLike = null; public ArrayList NoteTypeIDBetween = null; public ArrayList NoteTypeIDIn = null; public Date LastSavedDateTime = null; public Date LastSavedDateTimeGreaterThanOrEqualTo = null; public Date LastSavedDateTimeGreaterThan = null; public Date LastSavedDateTimeLessThan = null; public Date LastSavedDateTimeLessThanOrEqualTo = null; public Date LastSavedDateTimeNotEqualTo = null; public ArrayList LastSavedDateTimeBetween = null; public ArrayList LastSavedDateTimeIn = null; public String LastSavedByStaffID = null; public String LastSavedByStaffIDStartsWith = null; public String LastSavedByStaffIDEndsWith = null; public String LastSavedByStaffIDContains = null; public String LastSavedByStaffIDLike = null; public ArrayList LastSavedByStaffIDBetween = null; public ArrayList LastSavedByStaffIDIn = null; public String NoteText = null; public String NoteTextStartsWith = null; public String NoteTextEndsWith = null; public String NoteTextContains = null; public String NoteTextLike = null; public ArrayList NoteTextBetween = null; public ArrayList NoteTextIn = null; public Integer ItemNo = null; public Integer ItemNoGreaterThanOrEqualTo = null; public Integer ItemNoGreaterThan = null; public Integer ItemNoLessThan = null; public Integer ItemNoLessThanOrEqualTo = null; public Integer ItemNoNotEqualTo = null; public ArrayList ItemNoBetween = null; public ArrayList ItemNoIn = null; public String getRecID() { return RecID; } public JB_EstimateNotesQuery setRecID(String value) { this.RecID = value; return this; } public String getRecIDStartsWith() { return RecIDStartsWith; } public JB_EstimateNotesQuery setRecIDStartsWith(String value) { this.RecIDStartsWith = value; return this; } public String getRecIDEndsWith() { return RecIDEndsWith; } public JB_EstimateNotesQuery setRecIDEndsWith(String value) { this.RecIDEndsWith = value; return this; } public String getRecIDContains() { return RecIDContains; } public JB_EstimateNotesQuery setRecIDContains(String value) { this.RecIDContains = value; return this; } public String getRecIDLike() { return RecIDLike; } public JB_EstimateNotesQuery setRecIDLike(String value) { this.RecIDLike = value; return this; } public ArrayList getRecIDBetween() { return RecIDBetween; } public JB_EstimateNotesQuery setRecIDBetween(ArrayList value) { this.RecIDBetween = value; return this; } public ArrayList getRecIDIn() { return RecIDIn; } public JB_EstimateNotesQuery setRecIDIn(ArrayList value) { this.RecIDIn = value; return this; } public String getJbEstimateRecID() { return JB_Estimate_RecID; } public JB_EstimateNotesQuery setJbEstimateRecID(String value) { this.JB_Estimate_RecID = value; return this; } public String getJbEstimateRecIDStartsWith() { return JB_Estimate_RecIDStartsWith; } public JB_EstimateNotesQuery setJbEstimateRecIDStartsWith(String value) { this.JB_Estimate_RecIDStartsWith = value; return this; } public String getJbEstimateRecIDEndsWith() { return JB_Estimate_RecIDEndsWith; } public JB_EstimateNotesQuery setJbEstimateRecIDEndsWith(String value) { this.JB_Estimate_RecIDEndsWith = value; return this; } public String getJbEstimateRecIDContains() { return JB_Estimate_RecIDContains; } public JB_EstimateNotesQuery setJbEstimateRecIDContains(String value) { this.JB_Estimate_RecIDContains = value; return this; } public String getJbEstimateRecIDLike() { return JB_Estimate_RecIDLike; } public JB_EstimateNotesQuery setJbEstimateRecIDLike(String value) { this.JB_Estimate_RecIDLike = value; return this; } public ArrayList getJbEstimateRecIDBetween() { return JB_Estimate_RecIDBetween; } public JB_EstimateNotesQuery setJbEstimateRecIDBetween(ArrayList value) { this.JB_Estimate_RecIDBetween = value; return this; } public ArrayList getJbEstimateRecIDIn() { return JB_Estimate_RecIDIn; } public JB_EstimateNotesQuery setJbEstimateRecIDIn(ArrayList value) { this.JB_Estimate_RecIDIn = value; return this; } public String getNoteTypeID() { return NoteTypeID; } public JB_EstimateNotesQuery setNoteTypeID(String value) { this.NoteTypeID = value; return this; } public String getNoteTypeIDStartsWith() { return NoteTypeIDStartsWith; } public JB_EstimateNotesQuery setNoteTypeIDStartsWith(String value) { this.NoteTypeIDStartsWith = value; return this; } public String getNoteTypeIDEndsWith() { return NoteTypeIDEndsWith; } public JB_EstimateNotesQuery setNoteTypeIDEndsWith(String value) { this.NoteTypeIDEndsWith = value; return this; } public String getNoteTypeIDContains() { return NoteTypeIDContains; } public JB_EstimateNotesQuery setNoteTypeIDContains(String value) { this.NoteTypeIDContains = value; return this; } public String getNoteTypeIDLike() { return NoteTypeIDLike; } public JB_EstimateNotesQuery setNoteTypeIDLike(String value) { this.NoteTypeIDLike = value; return this; } public ArrayList getNoteTypeIDBetween() { return NoteTypeIDBetween; } public JB_EstimateNotesQuery setNoteTypeIDBetween(ArrayList value) { this.NoteTypeIDBetween = value; return this; } public ArrayList getNoteTypeIDIn() { return NoteTypeIDIn; } public JB_EstimateNotesQuery setNoteTypeIDIn(ArrayList value) { this.NoteTypeIDIn = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public JB_EstimateNotesQuery setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getLastSavedDateTimeGreaterThanOrEqualTo() { return LastSavedDateTimeGreaterThanOrEqualTo; } public JB_EstimateNotesQuery setLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.LastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeGreaterThan() { return LastSavedDateTimeGreaterThan; } public JB_EstimateNotesQuery setLastSavedDateTimeGreaterThan(Date value) { this.LastSavedDateTimeGreaterThan = value; return this; } public Date getLastSavedDateTimeLessThan() { return LastSavedDateTimeLessThan; } public JB_EstimateNotesQuery setLastSavedDateTimeLessThan(Date value) { this.LastSavedDateTimeLessThan = value; return this; } public Date getLastSavedDateTimeLessThanOrEqualTo() { return LastSavedDateTimeLessThanOrEqualTo; } public JB_EstimateNotesQuery setLastSavedDateTimeLessThanOrEqualTo(Date value) { this.LastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeNotEqualTo() { return LastSavedDateTimeNotEqualTo; } public JB_EstimateNotesQuery setLastSavedDateTimeNotEqualTo(Date value) { this.LastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getLastSavedDateTimeBetween() { return LastSavedDateTimeBetween; } public JB_EstimateNotesQuery setLastSavedDateTimeBetween(ArrayList value) { this.LastSavedDateTimeBetween = value; return this; } public ArrayList getLastSavedDateTimeIn() { return LastSavedDateTimeIn; } public JB_EstimateNotesQuery setLastSavedDateTimeIn(ArrayList value) { this.LastSavedDateTimeIn = value; return this; } public String getLastSavedByStaffID() { return LastSavedByStaffID; } public JB_EstimateNotesQuery setLastSavedByStaffID(String value) { this.LastSavedByStaffID = value; return this; } public String getLastSavedByStaffIDStartsWith() { return LastSavedByStaffIDStartsWith; } public JB_EstimateNotesQuery setLastSavedByStaffIDStartsWith(String value) { this.LastSavedByStaffIDStartsWith = value; return this; } public String getLastSavedByStaffIDEndsWith() { return LastSavedByStaffIDEndsWith; } public JB_EstimateNotesQuery setLastSavedByStaffIDEndsWith(String value) { this.LastSavedByStaffIDEndsWith = value; return this; } public String getLastSavedByStaffIDContains() { return LastSavedByStaffIDContains; } public JB_EstimateNotesQuery setLastSavedByStaffIDContains(String value) { this.LastSavedByStaffIDContains = value; return this; } public String getLastSavedByStaffIDLike() { return LastSavedByStaffIDLike; } public JB_EstimateNotesQuery setLastSavedByStaffIDLike(String value) { this.LastSavedByStaffIDLike = value; return this; } public ArrayList getLastSavedByStaffIDBetween() { return LastSavedByStaffIDBetween; } public JB_EstimateNotesQuery setLastSavedByStaffIDBetween(ArrayList value) { this.LastSavedByStaffIDBetween = value; return this; } public ArrayList getLastSavedByStaffIDIn() { return LastSavedByStaffIDIn; } public JB_EstimateNotesQuery setLastSavedByStaffIDIn(ArrayList value) { this.LastSavedByStaffIDIn = value; return this; } public String getNoteText() { return NoteText; } public JB_EstimateNotesQuery setNoteText(String value) { this.NoteText = value; return this; } public String getNoteTextStartsWith() { return NoteTextStartsWith; } public JB_EstimateNotesQuery setNoteTextStartsWith(String value) { this.NoteTextStartsWith = value; return this; } public String getNoteTextEndsWith() { return NoteTextEndsWith; } public JB_EstimateNotesQuery setNoteTextEndsWith(String value) { this.NoteTextEndsWith = value; return this; } public String getNoteTextContains() { return NoteTextContains; } public JB_EstimateNotesQuery setNoteTextContains(String value) { this.NoteTextContains = value; return this; } public String getNoteTextLike() { return NoteTextLike; } public JB_EstimateNotesQuery setNoteTextLike(String value) { this.NoteTextLike = value; return this; } public ArrayList getNoteTextBetween() { return NoteTextBetween; } public JB_EstimateNotesQuery setNoteTextBetween(ArrayList value) { this.NoteTextBetween = value; return this; } public ArrayList getNoteTextIn() { return NoteTextIn; } public JB_EstimateNotesQuery setNoteTextIn(ArrayList value) { this.NoteTextIn = value; return this; } public Integer getItemNo() { return ItemNo; } public JB_EstimateNotesQuery setItemNo(Integer value) { this.ItemNo = value; return this; } public Integer getItemNoGreaterThanOrEqualTo() { return ItemNoGreaterThanOrEqualTo; } public JB_EstimateNotesQuery setItemNoGreaterThanOrEqualTo(Integer value) { this.ItemNoGreaterThanOrEqualTo = value; return this; } public Integer getItemNoGreaterThan() { return ItemNoGreaterThan; } public JB_EstimateNotesQuery setItemNoGreaterThan(Integer value) { this.ItemNoGreaterThan = value; return this; } public Integer getItemNoLessThan() { return ItemNoLessThan; } public JB_EstimateNotesQuery setItemNoLessThan(Integer value) { this.ItemNoLessThan = value; return this; } public Integer getItemNoLessThanOrEqualTo() { return ItemNoLessThanOrEqualTo; } public JB_EstimateNotesQuery setItemNoLessThanOrEqualTo(Integer value) { this.ItemNoLessThanOrEqualTo = value; return this; } public Integer getItemNoNotEqualTo() { return ItemNoNotEqualTo; } public JB_EstimateNotesQuery setItemNoNotEqualTo(Integer value) { this.ItemNoNotEqualTo = value; return this; } public ArrayList getItemNoBetween() { return ItemNoBetween; } public JB_EstimateNotesQuery setItemNoBetween(ArrayList value) { this.ItemNoBetween = value; return this; } public ArrayList getItemNoIn() { return ItemNoIn; } public JB_EstimateNotesQuery setItemNoIn(ArrayList value) { this.ItemNoIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class JB_EstimatePurchaseLinesQuery extends QueryDb implements IReturn> { public String RecID = null; public String RecIDStartsWith = null; public String RecIDEndsWith = null; public String RecIDContains = null; public String RecIDLike = null; public ArrayList RecIDBetween = null; public ArrayList RecIDIn = null; public String JB_JobStages_RecID = null; public String JB_JobStages_RecIDStartsWith = null; public String JB_JobStages_RecIDEndsWith = null; public String JB_JobStages_RecIDContains = null; public String JB_JobStages_RecIDLike = null; public ArrayList JB_JobStages_RecIDBetween = null; public ArrayList JB_JobStages_RecIDIn = null; public String CR_Main_RecID = null; public String CR_Main_RecIDStartsWith = null; public String CR_Main_RecIDEndsWith = null; public String CR_Main_RecIDContains = null; public String CR_Main_RecIDLike = null; public ArrayList CR_Main_RecIDBetween = null; public ArrayList CR_Main_RecIDIn = null; public Date TransactionDate = null; public Date TransactionDateGreaterThanOrEqualTo = null; public Date TransactionDateGreaterThan = null; public Date TransactionDateLessThan = null; public Date TransactionDateLessThanOrEqualTo = null; public Date TransactionDateNotEqualTo = null; public ArrayList TransactionDateBetween = null; public ArrayList TransactionDateIn = null; public BigDecimal Quantity = null; public BigDecimal QuantityGreaterThanOrEqualTo = null; public BigDecimal QuantityGreaterThan = null; public BigDecimal QuantityLessThan = null; public BigDecimal QuantityLessThanOrEqualTo = null; public BigDecimal QuantityNotEqualTo = null; public ArrayList QuantityBetween = null; public ArrayList QuantityIn = null; public BigDecimal UnitCost = null; public BigDecimal UnitCostGreaterThanOrEqualTo = null; public BigDecimal UnitCostGreaterThan = null; public BigDecimal UnitCostLessThan = null; public BigDecimal UnitCostLessThanOrEqualTo = null; public BigDecimal UnitCostNotEqualTo = null; public ArrayList UnitCostBetween = null; public ArrayList UnitCostIn = null; public BigDecimal UnitCharge = null; public BigDecimal UnitChargeGreaterThanOrEqualTo = null; public BigDecimal UnitChargeGreaterThan = null; public BigDecimal UnitChargeLessThan = null; public BigDecimal UnitChargeLessThanOrEqualTo = null; public BigDecimal UnitChargeNotEqualTo = null; public ArrayList UnitChargeBetween = null; public ArrayList UnitChargeIn = null; public String Remark = null; public String RemarkStartsWith = null; public String RemarkEndsWith = null; public String RemarkContains = null; public String RemarkLike = null; public ArrayList RemarkBetween = null; public ArrayList RemarkIn = null; public Date LastSavedDateTime = null; public Date LastSavedDateTimeGreaterThanOrEqualTo = null; public Date LastSavedDateTimeGreaterThan = null; public Date LastSavedDateTimeLessThan = null; public Date LastSavedDateTimeLessThanOrEqualTo = null; public Date LastSavedDateTimeNotEqualTo = null; public ArrayList LastSavedDateTimeBetween = null; public ArrayList LastSavedDateTimeIn = null; public String HR_Staff_RecID = null; public String HR_Staff_RecIDStartsWith = null; public String HR_Staff_RecIDEndsWith = null; public String HR_Staff_RecIDContains = null; public String HR_Staff_RecIDLike = null; public ArrayList HR_Staff_RecIDBetween = null; public ArrayList HR_Staff_RecIDIn = null; public ArrayList RowHash = null; public String Units = null; public String UnitsStartsWith = null; public String UnitsEndsWith = null; public String UnitsContains = null; public String UnitsLike = null; public ArrayList UnitsBetween = null; public ArrayList UnitsIn = null; public String JB_EstimateLines_RecID = null; public String JB_EstimateLines_RecIDStartsWith = null; public String JB_EstimateLines_RecIDEndsWith = null; public String JB_EstimateLines_RecIDContains = null; public String JB_EstimateLines_RecIDLike = null; public ArrayList JB_EstimateLines_RecIDBetween = null; public ArrayList JB_EstimateLines_RecIDIn = null; public String getRecID() { return RecID; } public JB_EstimatePurchaseLinesQuery setRecID(String value) { this.RecID = value; return this; } public String getRecIDStartsWith() { return RecIDStartsWith; } public JB_EstimatePurchaseLinesQuery setRecIDStartsWith(String value) { this.RecIDStartsWith = value; return this; } public String getRecIDEndsWith() { return RecIDEndsWith; } public JB_EstimatePurchaseLinesQuery setRecIDEndsWith(String value) { this.RecIDEndsWith = value; return this; } public String getRecIDContains() { return RecIDContains; } public JB_EstimatePurchaseLinesQuery setRecIDContains(String value) { this.RecIDContains = value; return this; } public String getRecIDLike() { return RecIDLike; } public JB_EstimatePurchaseLinesQuery setRecIDLike(String value) { this.RecIDLike = value; return this; } public ArrayList getRecIDBetween() { return RecIDBetween; } public JB_EstimatePurchaseLinesQuery setRecIDBetween(ArrayList value) { this.RecIDBetween = value; return this; } public ArrayList getRecIDIn() { return RecIDIn; } public JB_EstimatePurchaseLinesQuery setRecIDIn(ArrayList value) { this.RecIDIn = value; return this; } public String getJbJobStagesRecID() { return JB_JobStages_RecID; } public JB_EstimatePurchaseLinesQuery setJbJobStagesRecID(String value) { this.JB_JobStages_RecID = value; return this; } public String getJbJobStagesRecIDStartsWith() { return JB_JobStages_RecIDStartsWith; } public JB_EstimatePurchaseLinesQuery setJbJobStagesRecIDStartsWith(String value) { this.JB_JobStages_RecIDStartsWith = value; return this; } public String getJbJobStagesRecIDEndsWith() { return JB_JobStages_RecIDEndsWith; } public JB_EstimatePurchaseLinesQuery setJbJobStagesRecIDEndsWith(String value) { this.JB_JobStages_RecIDEndsWith = value; return this; } public String getJbJobStagesRecIDContains() { return JB_JobStages_RecIDContains; } public JB_EstimatePurchaseLinesQuery setJbJobStagesRecIDContains(String value) { this.JB_JobStages_RecIDContains = value; return this; } public String getJbJobStagesRecIDLike() { return JB_JobStages_RecIDLike; } public JB_EstimatePurchaseLinesQuery setJbJobStagesRecIDLike(String value) { this.JB_JobStages_RecIDLike = value; return this; } public ArrayList getJbJobStagesRecIDBetween() { return JB_JobStages_RecIDBetween; } public JB_EstimatePurchaseLinesQuery setJbJobStagesRecIDBetween(ArrayList value) { this.JB_JobStages_RecIDBetween = value; return this; } public ArrayList getJbJobStagesRecIDIn() { return JB_JobStages_RecIDIn; } public JB_EstimatePurchaseLinesQuery setJbJobStagesRecIDIn(ArrayList value) { this.JB_JobStages_RecIDIn = value; return this; } public String getCrMainRecID() { return CR_Main_RecID; } public JB_EstimatePurchaseLinesQuery setCrMainRecID(String value) { this.CR_Main_RecID = value; return this; } public String getCrMainRecIDStartsWith() { return CR_Main_RecIDStartsWith; } public JB_EstimatePurchaseLinesQuery setCrMainRecIDStartsWith(String value) { this.CR_Main_RecIDStartsWith = value; return this; } public String getCrMainRecIDEndsWith() { return CR_Main_RecIDEndsWith; } public JB_EstimatePurchaseLinesQuery setCrMainRecIDEndsWith(String value) { this.CR_Main_RecIDEndsWith = value; return this; } public String getCrMainRecIDContains() { return CR_Main_RecIDContains; } public JB_EstimatePurchaseLinesQuery setCrMainRecIDContains(String value) { this.CR_Main_RecIDContains = value; return this; } public String getCrMainRecIDLike() { return CR_Main_RecIDLike; } public JB_EstimatePurchaseLinesQuery setCrMainRecIDLike(String value) { this.CR_Main_RecIDLike = value; return this; } public ArrayList getCrMainRecIDBetween() { return CR_Main_RecIDBetween; } public JB_EstimatePurchaseLinesQuery setCrMainRecIDBetween(ArrayList value) { this.CR_Main_RecIDBetween = value; return this; } public ArrayList getCrMainRecIDIn() { return CR_Main_RecIDIn; } public JB_EstimatePurchaseLinesQuery setCrMainRecIDIn(ArrayList value) { this.CR_Main_RecIDIn = value; return this; } public Date getTransactionDate() { return TransactionDate; } public JB_EstimatePurchaseLinesQuery setTransactionDate(Date value) { this.TransactionDate = value; return this; } public Date getTransactionDateGreaterThanOrEqualTo() { return TransactionDateGreaterThanOrEqualTo; } public JB_EstimatePurchaseLinesQuery setTransactionDateGreaterThanOrEqualTo(Date value) { this.TransactionDateGreaterThanOrEqualTo = value; return this; } public Date getTransactionDateGreaterThan() { return TransactionDateGreaterThan; } public JB_EstimatePurchaseLinesQuery setTransactionDateGreaterThan(Date value) { this.TransactionDateGreaterThan = value; return this; } public Date getTransactionDateLessThan() { return TransactionDateLessThan; } public JB_EstimatePurchaseLinesQuery setTransactionDateLessThan(Date value) { this.TransactionDateLessThan = value; return this; } public Date getTransactionDateLessThanOrEqualTo() { return TransactionDateLessThanOrEqualTo; } public JB_EstimatePurchaseLinesQuery setTransactionDateLessThanOrEqualTo(Date value) { this.TransactionDateLessThanOrEqualTo = value; return this; } public Date getTransactionDateNotEqualTo() { return TransactionDateNotEqualTo; } public JB_EstimatePurchaseLinesQuery setTransactionDateNotEqualTo(Date value) { this.TransactionDateNotEqualTo = value; return this; } public ArrayList getTransactionDateBetween() { return TransactionDateBetween; } public JB_EstimatePurchaseLinesQuery setTransactionDateBetween(ArrayList value) { this.TransactionDateBetween = value; return this; } public ArrayList getTransactionDateIn() { return TransactionDateIn; } public JB_EstimatePurchaseLinesQuery setTransactionDateIn(ArrayList value) { this.TransactionDateIn = value; return this; } public BigDecimal getQuantity() { return Quantity; } public JB_EstimatePurchaseLinesQuery setQuantity(BigDecimal value) { this.Quantity = value; return this; } public BigDecimal getQuantityGreaterThanOrEqualTo() { return QuantityGreaterThanOrEqualTo; } public JB_EstimatePurchaseLinesQuery setQuantityGreaterThanOrEqualTo(BigDecimal value) { this.QuantityGreaterThanOrEqualTo = value; return this; } public BigDecimal getQuantityGreaterThan() { return QuantityGreaterThan; } public JB_EstimatePurchaseLinesQuery setQuantityGreaterThan(BigDecimal value) { this.QuantityGreaterThan = value; return this; } public BigDecimal getQuantityLessThan() { return QuantityLessThan; } public JB_EstimatePurchaseLinesQuery setQuantityLessThan(BigDecimal value) { this.QuantityLessThan = value; return this; } public BigDecimal getQuantityLessThanOrEqualTo() { return QuantityLessThanOrEqualTo; } public JB_EstimatePurchaseLinesQuery setQuantityLessThanOrEqualTo(BigDecimal value) { this.QuantityLessThanOrEqualTo = value; return this; } public BigDecimal getQuantityNotEqualTo() { return QuantityNotEqualTo; } public JB_EstimatePurchaseLinesQuery setQuantityNotEqualTo(BigDecimal value) { this.QuantityNotEqualTo = value; return this; } public ArrayList getQuantityBetween() { return QuantityBetween; } public JB_EstimatePurchaseLinesQuery setQuantityBetween(ArrayList value) { this.QuantityBetween = value; return this; } public ArrayList getQuantityIn() { return QuantityIn; } public JB_EstimatePurchaseLinesQuery setQuantityIn(ArrayList value) { this.QuantityIn = value; return this; } public BigDecimal getUnitCost() { return UnitCost; } public JB_EstimatePurchaseLinesQuery setUnitCost(BigDecimal value) { this.UnitCost = value; return this; } public BigDecimal getUnitCostGreaterThanOrEqualTo() { return UnitCostGreaterThanOrEqualTo; } public JB_EstimatePurchaseLinesQuery setUnitCostGreaterThanOrEqualTo(BigDecimal value) { this.UnitCostGreaterThanOrEqualTo = value; return this; } public BigDecimal getUnitCostGreaterThan() { return UnitCostGreaterThan; } public JB_EstimatePurchaseLinesQuery setUnitCostGreaterThan(BigDecimal value) { this.UnitCostGreaterThan = value; return this; } public BigDecimal getUnitCostLessThan() { return UnitCostLessThan; } public JB_EstimatePurchaseLinesQuery setUnitCostLessThan(BigDecimal value) { this.UnitCostLessThan = value; return this; } public BigDecimal getUnitCostLessThanOrEqualTo() { return UnitCostLessThanOrEqualTo; } public JB_EstimatePurchaseLinesQuery setUnitCostLessThanOrEqualTo(BigDecimal value) { this.UnitCostLessThanOrEqualTo = value; return this; } public BigDecimal getUnitCostNotEqualTo() { return UnitCostNotEqualTo; } public JB_EstimatePurchaseLinesQuery setUnitCostNotEqualTo(BigDecimal value) { this.UnitCostNotEqualTo = value; return this; } public ArrayList getUnitCostBetween() { return UnitCostBetween; } public JB_EstimatePurchaseLinesQuery setUnitCostBetween(ArrayList value) { this.UnitCostBetween = value; return this; } public ArrayList getUnitCostIn() { return UnitCostIn; } public JB_EstimatePurchaseLinesQuery setUnitCostIn(ArrayList value) { this.UnitCostIn = value; return this; } public BigDecimal getUnitCharge() { return UnitCharge; } public JB_EstimatePurchaseLinesQuery setUnitCharge(BigDecimal value) { this.UnitCharge = value; return this; } public BigDecimal getUnitChargeGreaterThanOrEqualTo() { return UnitChargeGreaterThanOrEqualTo; } public JB_EstimatePurchaseLinesQuery setUnitChargeGreaterThanOrEqualTo(BigDecimal value) { this.UnitChargeGreaterThanOrEqualTo = value; return this; } public BigDecimal getUnitChargeGreaterThan() { return UnitChargeGreaterThan; } public JB_EstimatePurchaseLinesQuery setUnitChargeGreaterThan(BigDecimal value) { this.UnitChargeGreaterThan = value; return this; } public BigDecimal getUnitChargeLessThan() { return UnitChargeLessThan; } public JB_EstimatePurchaseLinesQuery setUnitChargeLessThan(BigDecimal value) { this.UnitChargeLessThan = value; return this; } public BigDecimal getUnitChargeLessThanOrEqualTo() { return UnitChargeLessThanOrEqualTo; } public JB_EstimatePurchaseLinesQuery setUnitChargeLessThanOrEqualTo(BigDecimal value) { this.UnitChargeLessThanOrEqualTo = value; return this; } public BigDecimal getUnitChargeNotEqualTo() { return UnitChargeNotEqualTo; } public JB_EstimatePurchaseLinesQuery setUnitChargeNotEqualTo(BigDecimal value) { this.UnitChargeNotEqualTo = value; return this; } public ArrayList getUnitChargeBetween() { return UnitChargeBetween; } public JB_EstimatePurchaseLinesQuery setUnitChargeBetween(ArrayList value) { this.UnitChargeBetween = value; return this; } public ArrayList getUnitChargeIn() { return UnitChargeIn; } public JB_EstimatePurchaseLinesQuery setUnitChargeIn(ArrayList value) { this.UnitChargeIn = value; return this; } public String getRemark() { return Remark; } public JB_EstimatePurchaseLinesQuery setRemark(String value) { this.Remark = value; return this; } public String getRemarkStartsWith() { return RemarkStartsWith; } public JB_EstimatePurchaseLinesQuery setRemarkStartsWith(String value) { this.RemarkStartsWith = value; return this; } public String getRemarkEndsWith() { return RemarkEndsWith; } public JB_EstimatePurchaseLinesQuery setRemarkEndsWith(String value) { this.RemarkEndsWith = value; return this; } public String getRemarkContains() { return RemarkContains; } public JB_EstimatePurchaseLinesQuery setRemarkContains(String value) { this.RemarkContains = value; return this; } public String getRemarkLike() { return RemarkLike; } public JB_EstimatePurchaseLinesQuery setRemarkLike(String value) { this.RemarkLike = value; return this; } public ArrayList getRemarkBetween() { return RemarkBetween; } public JB_EstimatePurchaseLinesQuery setRemarkBetween(ArrayList value) { this.RemarkBetween = value; return this; } public ArrayList getRemarkIn() { return RemarkIn; } public JB_EstimatePurchaseLinesQuery setRemarkIn(ArrayList value) { this.RemarkIn = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public JB_EstimatePurchaseLinesQuery setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getLastSavedDateTimeGreaterThanOrEqualTo() { return LastSavedDateTimeGreaterThanOrEqualTo; } public JB_EstimatePurchaseLinesQuery setLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.LastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeGreaterThan() { return LastSavedDateTimeGreaterThan; } public JB_EstimatePurchaseLinesQuery setLastSavedDateTimeGreaterThan(Date value) { this.LastSavedDateTimeGreaterThan = value; return this; } public Date getLastSavedDateTimeLessThan() { return LastSavedDateTimeLessThan; } public JB_EstimatePurchaseLinesQuery setLastSavedDateTimeLessThan(Date value) { this.LastSavedDateTimeLessThan = value; return this; } public Date getLastSavedDateTimeLessThanOrEqualTo() { return LastSavedDateTimeLessThanOrEqualTo; } public JB_EstimatePurchaseLinesQuery setLastSavedDateTimeLessThanOrEqualTo(Date value) { this.LastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeNotEqualTo() { return LastSavedDateTimeNotEqualTo; } public JB_EstimatePurchaseLinesQuery setLastSavedDateTimeNotEqualTo(Date value) { this.LastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getLastSavedDateTimeBetween() { return LastSavedDateTimeBetween; } public JB_EstimatePurchaseLinesQuery setLastSavedDateTimeBetween(ArrayList value) { this.LastSavedDateTimeBetween = value; return this; } public ArrayList getLastSavedDateTimeIn() { return LastSavedDateTimeIn; } public JB_EstimatePurchaseLinesQuery setLastSavedDateTimeIn(ArrayList value) { this.LastSavedDateTimeIn = value; return this; } public String getHrStaffRecID() { return HR_Staff_RecID; } public JB_EstimatePurchaseLinesQuery setHrStaffRecID(String value) { this.HR_Staff_RecID = value; return this; } public String getHrStaffRecIDStartsWith() { return HR_Staff_RecIDStartsWith; } public JB_EstimatePurchaseLinesQuery setHrStaffRecIDStartsWith(String value) { this.HR_Staff_RecIDStartsWith = value; return this; } public String getHrStaffRecIDEndsWith() { return HR_Staff_RecIDEndsWith; } public JB_EstimatePurchaseLinesQuery setHrStaffRecIDEndsWith(String value) { this.HR_Staff_RecIDEndsWith = value; return this; } public String getHrStaffRecIDContains() { return HR_Staff_RecIDContains; } public JB_EstimatePurchaseLinesQuery setHrStaffRecIDContains(String value) { this.HR_Staff_RecIDContains = value; return this; } public String getHrStaffRecIDLike() { return HR_Staff_RecIDLike; } public JB_EstimatePurchaseLinesQuery setHrStaffRecIDLike(String value) { this.HR_Staff_RecIDLike = value; return this; } public ArrayList getHrStaffRecIDBetween() { return HR_Staff_RecIDBetween; } public JB_EstimatePurchaseLinesQuery setHrStaffRecIDBetween(ArrayList value) { this.HR_Staff_RecIDBetween = value; return this; } public ArrayList getHrStaffRecIDIn() { return HR_Staff_RecIDIn; } public JB_EstimatePurchaseLinesQuery setHrStaffRecIDIn(ArrayList value) { this.HR_Staff_RecIDIn = value; return this; } public ArrayList getRowHash() { return RowHash; } public JB_EstimatePurchaseLinesQuery setRowHash(ArrayList value) { this.RowHash = value; return this; } public String getUnits() { return Units; } public JB_EstimatePurchaseLinesQuery setUnits(String value) { this.Units = value; return this; } public String getUnitsStartsWith() { return UnitsStartsWith; } public JB_EstimatePurchaseLinesQuery setUnitsStartsWith(String value) { this.UnitsStartsWith = value; return this; } public String getUnitsEndsWith() { return UnitsEndsWith; } public JB_EstimatePurchaseLinesQuery setUnitsEndsWith(String value) { this.UnitsEndsWith = value; return this; } public String getUnitsContains() { return UnitsContains; } public JB_EstimatePurchaseLinesQuery setUnitsContains(String value) { this.UnitsContains = value; return this; } public String getUnitsLike() { return UnitsLike; } public JB_EstimatePurchaseLinesQuery setUnitsLike(String value) { this.UnitsLike = value; return this; } public ArrayList getUnitsBetween() { return UnitsBetween; } public JB_EstimatePurchaseLinesQuery setUnitsBetween(ArrayList value) { this.UnitsBetween = value; return this; } public ArrayList getUnitsIn() { return UnitsIn; } public JB_EstimatePurchaseLinesQuery setUnitsIn(ArrayList value) { this.UnitsIn = value; return this; } public String getJbEstimateLinesRecID() { return JB_EstimateLines_RecID; } public JB_EstimatePurchaseLinesQuery setJbEstimateLinesRecID(String value) { this.JB_EstimateLines_RecID = value; return this; } public String getJbEstimateLinesRecIDStartsWith() { return JB_EstimateLines_RecIDStartsWith; } public JB_EstimatePurchaseLinesQuery setJbEstimateLinesRecIDStartsWith(String value) { this.JB_EstimateLines_RecIDStartsWith = value; return this; } public String getJbEstimateLinesRecIDEndsWith() { return JB_EstimateLines_RecIDEndsWith; } public JB_EstimatePurchaseLinesQuery setJbEstimateLinesRecIDEndsWith(String value) { this.JB_EstimateLines_RecIDEndsWith = value; return this; } public String getJbEstimateLinesRecIDContains() { return JB_EstimateLines_RecIDContains; } public JB_EstimatePurchaseLinesQuery setJbEstimateLinesRecIDContains(String value) { this.JB_EstimateLines_RecIDContains = value; return this; } public String getJbEstimateLinesRecIDLike() { return JB_EstimateLines_RecIDLike; } public JB_EstimatePurchaseLinesQuery setJbEstimateLinesRecIDLike(String value) { this.JB_EstimateLines_RecIDLike = value; return this; } public ArrayList getJbEstimateLinesRecIDBetween() { return JB_EstimateLines_RecIDBetween; } public JB_EstimatePurchaseLinesQuery setJbEstimateLinesRecIDBetween(ArrayList value) { this.JB_EstimateLines_RecIDBetween = value; return this; } public ArrayList getJbEstimateLinesRecIDIn() { return JB_EstimateLines_RecIDIn; } public JB_EstimatePurchaseLinesQuery setJbEstimateLinesRecIDIn(ArrayList value) { this.JB_EstimateLines_RecIDIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class JB_EstimateResourceLinesQuery extends QueryDb implements IReturn> { public String RecID = null; public String RecIDStartsWith = null; public String RecIDEndsWith = null; public String RecIDContains = null; public String RecIDLike = null; public ArrayList RecIDBetween = null; public ArrayList RecIDIn = null; public String JB_JobStages_RecID = null; public String JB_JobStages_RecIDStartsWith = null; public String JB_JobStages_RecIDEndsWith = null; public String JB_JobStages_RecIDContains = null; public String JB_JobStages_RecIDLike = null; public ArrayList JB_JobStages_RecIDBetween = null; public ArrayList JB_JobStages_RecIDIn = null; public String JB_Resources_RecID = null; public String JB_Resources_RecIDStartsWith = null; public String JB_Resources_RecIDEndsWith = null; public String JB_Resources_RecIDContains = null; public String JB_Resources_RecIDLike = null; public ArrayList JB_Resources_RecIDBetween = null; public ArrayList JB_Resources_RecIDIn = null; public Date TransactionDate = null; public Date TransactionDateGreaterThanOrEqualTo = null; public Date TransactionDateGreaterThan = null; public Date TransactionDateLessThan = null; public Date TransactionDateLessThanOrEqualTo = null; public Date TransactionDateNotEqualTo = null; public ArrayList TransactionDateBetween = null; public ArrayList TransactionDateIn = null; public BigDecimal Quantity = null; public BigDecimal QuantityGreaterThanOrEqualTo = null; public BigDecimal QuantityGreaterThan = null; public BigDecimal QuantityLessThan = null; public BigDecimal QuantityLessThanOrEqualTo = null; public BigDecimal QuantityNotEqualTo = null; public ArrayList QuantityBetween = null; public ArrayList QuantityIn = null; public BigDecimal UnitCost = null; public BigDecimal UnitCostGreaterThanOrEqualTo = null; public BigDecimal UnitCostGreaterThan = null; public BigDecimal UnitCostLessThan = null; public BigDecimal UnitCostLessThanOrEqualTo = null; public BigDecimal UnitCostNotEqualTo = null; public ArrayList UnitCostBetween = null; public ArrayList UnitCostIn = null; public BigDecimal UnitCharge = null; public BigDecimal UnitChargeGreaterThanOrEqualTo = null; public BigDecimal UnitChargeGreaterThan = null; public BigDecimal UnitChargeLessThan = null; public BigDecimal UnitChargeLessThanOrEqualTo = null; public BigDecimal UnitChargeNotEqualTo = null; public ArrayList UnitChargeBetween = null; public ArrayList UnitChargeIn = null; public String Remark = null; public String RemarkStartsWith = null; public String RemarkEndsWith = null; public String RemarkContains = null; public String RemarkLike = null; public ArrayList RemarkBetween = null; public ArrayList RemarkIn = null; public Date LastSavedDateTime = null; public Date LastSavedDateTimeGreaterThanOrEqualTo = null; public Date LastSavedDateTimeGreaterThan = null; public Date LastSavedDateTimeLessThan = null; public Date LastSavedDateTimeLessThanOrEqualTo = null; public Date LastSavedDateTimeNotEqualTo = null; public ArrayList LastSavedDateTimeBetween = null; public ArrayList LastSavedDateTimeIn = null; public String HR_Staff_RecID = null; public String HR_Staff_RecIDStartsWith = null; public String HR_Staff_RecIDEndsWith = null; public String HR_Staff_RecIDContains = null; public String HR_Staff_RecIDLike = null; public ArrayList HR_Staff_RecIDBetween = null; public ArrayList HR_Staff_RecIDIn = null; public ArrayList RowHash = null; public String Units = null; public String UnitsStartsWith = null; public String UnitsEndsWith = null; public String UnitsContains = null; public String UnitsLike = null; public ArrayList UnitsBetween = null; public ArrayList UnitsIn = null; public String JB_EstimateLines_RecID = null; public String JB_EstimateLines_RecIDStartsWith = null; public String JB_EstimateLines_RecIDEndsWith = null; public String JB_EstimateLines_RecIDContains = null; public String JB_EstimateLines_RecIDLike = null; public ArrayList JB_EstimateLines_RecIDBetween = null; public ArrayList JB_EstimateLines_RecIDIn = null; public String getRecID() { return RecID; } public JB_EstimateResourceLinesQuery setRecID(String value) { this.RecID = value; return this; } public String getRecIDStartsWith() { return RecIDStartsWith; } public JB_EstimateResourceLinesQuery setRecIDStartsWith(String value) { this.RecIDStartsWith = value; return this; } public String getRecIDEndsWith() { return RecIDEndsWith; } public JB_EstimateResourceLinesQuery setRecIDEndsWith(String value) { this.RecIDEndsWith = value; return this; } public String getRecIDContains() { return RecIDContains; } public JB_EstimateResourceLinesQuery setRecIDContains(String value) { this.RecIDContains = value; return this; } public String getRecIDLike() { return RecIDLike; } public JB_EstimateResourceLinesQuery setRecIDLike(String value) { this.RecIDLike = value; return this; } public ArrayList getRecIDBetween() { return RecIDBetween; } public JB_EstimateResourceLinesQuery setRecIDBetween(ArrayList value) { this.RecIDBetween = value; return this; } public ArrayList getRecIDIn() { return RecIDIn; } public JB_EstimateResourceLinesQuery setRecIDIn(ArrayList value) { this.RecIDIn = value; return this; } public String getJbJobStagesRecID() { return JB_JobStages_RecID; } public JB_EstimateResourceLinesQuery setJbJobStagesRecID(String value) { this.JB_JobStages_RecID = value; return this; } public String getJbJobStagesRecIDStartsWith() { return JB_JobStages_RecIDStartsWith; } public JB_EstimateResourceLinesQuery setJbJobStagesRecIDStartsWith(String value) { this.JB_JobStages_RecIDStartsWith = value; return this; } public String getJbJobStagesRecIDEndsWith() { return JB_JobStages_RecIDEndsWith; } public JB_EstimateResourceLinesQuery setJbJobStagesRecIDEndsWith(String value) { this.JB_JobStages_RecIDEndsWith = value; return this; } public String getJbJobStagesRecIDContains() { return JB_JobStages_RecIDContains; } public JB_EstimateResourceLinesQuery setJbJobStagesRecIDContains(String value) { this.JB_JobStages_RecIDContains = value; return this; } public String getJbJobStagesRecIDLike() { return JB_JobStages_RecIDLike; } public JB_EstimateResourceLinesQuery setJbJobStagesRecIDLike(String value) { this.JB_JobStages_RecIDLike = value; return this; } public ArrayList getJbJobStagesRecIDBetween() { return JB_JobStages_RecIDBetween; } public JB_EstimateResourceLinesQuery setJbJobStagesRecIDBetween(ArrayList value) { this.JB_JobStages_RecIDBetween = value; return this; } public ArrayList getJbJobStagesRecIDIn() { return JB_JobStages_RecIDIn; } public JB_EstimateResourceLinesQuery setJbJobStagesRecIDIn(ArrayList value) { this.JB_JobStages_RecIDIn = value; return this; } public String getJbResourcesRecID() { return JB_Resources_RecID; } public JB_EstimateResourceLinesQuery setJbResourcesRecID(String value) { this.JB_Resources_RecID = value; return this; } public String getJbResourcesRecIDStartsWith() { return JB_Resources_RecIDStartsWith; } public JB_EstimateResourceLinesQuery setJbResourcesRecIDStartsWith(String value) { this.JB_Resources_RecIDStartsWith = value; return this; } public String getJbResourcesRecIDEndsWith() { return JB_Resources_RecIDEndsWith; } public JB_EstimateResourceLinesQuery setJbResourcesRecIDEndsWith(String value) { this.JB_Resources_RecIDEndsWith = value; return this; } public String getJbResourcesRecIDContains() { return JB_Resources_RecIDContains; } public JB_EstimateResourceLinesQuery setJbResourcesRecIDContains(String value) { this.JB_Resources_RecIDContains = value; return this; } public String getJbResourcesRecIDLike() { return JB_Resources_RecIDLike; } public JB_EstimateResourceLinesQuery setJbResourcesRecIDLike(String value) { this.JB_Resources_RecIDLike = value; return this; } public ArrayList getJbResourcesRecIDBetween() { return JB_Resources_RecIDBetween; } public JB_EstimateResourceLinesQuery setJbResourcesRecIDBetween(ArrayList value) { this.JB_Resources_RecIDBetween = value; return this; } public ArrayList getJbResourcesRecIDIn() { return JB_Resources_RecIDIn; } public JB_EstimateResourceLinesQuery setJbResourcesRecIDIn(ArrayList value) { this.JB_Resources_RecIDIn = value; return this; } public Date getTransactionDate() { return TransactionDate; } public JB_EstimateResourceLinesQuery setTransactionDate(Date value) { this.TransactionDate = value; return this; } public Date getTransactionDateGreaterThanOrEqualTo() { return TransactionDateGreaterThanOrEqualTo; } public JB_EstimateResourceLinesQuery setTransactionDateGreaterThanOrEqualTo(Date value) { this.TransactionDateGreaterThanOrEqualTo = value; return this; } public Date getTransactionDateGreaterThan() { return TransactionDateGreaterThan; } public JB_EstimateResourceLinesQuery setTransactionDateGreaterThan(Date value) { this.TransactionDateGreaterThan = value; return this; } public Date getTransactionDateLessThan() { return TransactionDateLessThan; } public JB_EstimateResourceLinesQuery setTransactionDateLessThan(Date value) { this.TransactionDateLessThan = value; return this; } public Date getTransactionDateLessThanOrEqualTo() { return TransactionDateLessThanOrEqualTo; } public JB_EstimateResourceLinesQuery setTransactionDateLessThanOrEqualTo(Date value) { this.TransactionDateLessThanOrEqualTo = value; return this; } public Date getTransactionDateNotEqualTo() { return TransactionDateNotEqualTo; } public JB_EstimateResourceLinesQuery setTransactionDateNotEqualTo(Date value) { this.TransactionDateNotEqualTo = value; return this; } public ArrayList getTransactionDateBetween() { return TransactionDateBetween; } public JB_EstimateResourceLinesQuery setTransactionDateBetween(ArrayList value) { this.TransactionDateBetween = value; return this; } public ArrayList getTransactionDateIn() { return TransactionDateIn; } public JB_EstimateResourceLinesQuery setTransactionDateIn(ArrayList value) { this.TransactionDateIn = value; return this; } public BigDecimal getQuantity() { return Quantity; } public JB_EstimateResourceLinesQuery setQuantity(BigDecimal value) { this.Quantity = value; return this; } public BigDecimal getQuantityGreaterThanOrEqualTo() { return QuantityGreaterThanOrEqualTo; } public JB_EstimateResourceLinesQuery setQuantityGreaterThanOrEqualTo(BigDecimal value) { this.QuantityGreaterThanOrEqualTo = value; return this; } public BigDecimal getQuantityGreaterThan() { return QuantityGreaterThan; } public JB_EstimateResourceLinesQuery setQuantityGreaterThan(BigDecimal value) { this.QuantityGreaterThan = value; return this; } public BigDecimal getQuantityLessThan() { return QuantityLessThan; } public JB_EstimateResourceLinesQuery setQuantityLessThan(BigDecimal value) { this.QuantityLessThan = value; return this; } public BigDecimal getQuantityLessThanOrEqualTo() { return QuantityLessThanOrEqualTo; } public JB_EstimateResourceLinesQuery setQuantityLessThanOrEqualTo(BigDecimal value) { this.QuantityLessThanOrEqualTo = value; return this; } public BigDecimal getQuantityNotEqualTo() { return QuantityNotEqualTo; } public JB_EstimateResourceLinesQuery setQuantityNotEqualTo(BigDecimal value) { this.QuantityNotEqualTo = value; return this; } public ArrayList getQuantityBetween() { return QuantityBetween; } public JB_EstimateResourceLinesQuery setQuantityBetween(ArrayList value) { this.QuantityBetween = value; return this; } public ArrayList getQuantityIn() { return QuantityIn; } public JB_EstimateResourceLinesQuery setQuantityIn(ArrayList value) { this.QuantityIn = value; return this; } public BigDecimal getUnitCost() { return UnitCost; } public JB_EstimateResourceLinesQuery setUnitCost(BigDecimal value) { this.UnitCost = value; return this; } public BigDecimal getUnitCostGreaterThanOrEqualTo() { return UnitCostGreaterThanOrEqualTo; } public JB_EstimateResourceLinesQuery setUnitCostGreaterThanOrEqualTo(BigDecimal value) { this.UnitCostGreaterThanOrEqualTo = value; return this; } public BigDecimal getUnitCostGreaterThan() { return UnitCostGreaterThan; } public JB_EstimateResourceLinesQuery setUnitCostGreaterThan(BigDecimal value) { this.UnitCostGreaterThan = value; return this; } public BigDecimal getUnitCostLessThan() { return UnitCostLessThan; } public JB_EstimateResourceLinesQuery setUnitCostLessThan(BigDecimal value) { this.UnitCostLessThan = value; return this; } public BigDecimal getUnitCostLessThanOrEqualTo() { return UnitCostLessThanOrEqualTo; } public JB_EstimateResourceLinesQuery setUnitCostLessThanOrEqualTo(BigDecimal value) { this.UnitCostLessThanOrEqualTo = value; return this; } public BigDecimal getUnitCostNotEqualTo() { return UnitCostNotEqualTo; } public JB_EstimateResourceLinesQuery setUnitCostNotEqualTo(BigDecimal value) { this.UnitCostNotEqualTo = value; return this; } public ArrayList getUnitCostBetween() { return UnitCostBetween; } public JB_EstimateResourceLinesQuery setUnitCostBetween(ArrayList value) { this.UnitCostBetween = value; return this; } public ArrayList getUnitCostIn() { return UnitCostIn; } public JB_EstimateResourceLinesQuery setUnitCostIn(ArrayList value) { this.UnitCostIn = value; return this; } public BigDecimal getUnitCharge() { return UnitCharge; } public JB_EstimateResourceLinesQuery setUnitCharge(BigDecimal value) { this.UnitCharge = value; return this; } public BigDecimal getUnitChargeGreaterThanOrEqualTo() { return UnitChargeGreaterThanOrEqualTo; } public JB_EstimateResourceLinesQuery setUnitChargeGreaterThanOrEqualTo(BigDecimal value) { this.UnitChargeGreaterThanOrEqualTo = value; return this; } public BigDecimal getUnitChargeGreaterThan() { return UnitChargeGreaterThan; } public JB_EstimateResourceLinesQuery setUnitChargeGreaterThan(BigDecimal value) { this.UnitChargeGreaterThan = value; return this; } public BigDecimal getUnitChargeLessThan() { return UnitChargeLessThan; } public JB_EstimateResourceLinesQuery setUnitChargeLessThan(BigDecimal value) { this.UnitChargeLessThan = value; return this; } public BigDecimal getUnitChargeLessThanOrEqualTo() { return UnitChargeLessThanOrEqualTo; } public JB_EstimateResourceLinesQuery setUnitChargeLessThanOrEqualTo(BigDecimal value) { this.UnitChargeLessThanOrEqualTo = value; return this; } public BigDecimal getUnitChargeNotEqualTo() { return UnitChargeNotEqualTo; } public JB_EstimateResourceLinesQuery setUnitChargeNotEqualTo(BigDecimal value) { this.UnitChargeNotEqualTo = value; return this; } public ArrayList getUnitChargeBetween() { return UnitChargeBetween; } public JB_EstimateResourceLinesQuery setUnitChargeBetween(ArrayList value) { this.UnitChargeBetween = value; return this; } public ArrayList getUnitChargeIn() { return UnitChargeIn; } public JB_EstimateResourceLinesQuery setUnitChargeIn(ArrayList value) { this.UnitChargeIn = value; return this; } public String getRemark() { return Remark; } public JB_EstimateResourceLinesQuery setRemark(String value) { this.Remark = value; return this; } public String getRemarkStartsWith() { return RemarkStartsWith; } public JB_EstimateResourceLinesQuery setRemarkStartsWith(String value) { this.RemarkStartsWith = value; return this; } public String getRemarkEndsWith() { return RemarkEndsWith; } public JB_EstimateResourceLinesQuery setRemarkEndsWith(String value) { this.RemarkEndsWith = value; return this; } public String getRemarkContains() { return RemarkContains; } public JB_EstimateResourceLinesQuery setRemarkContains(String value) { this.RemarkContains = value; return this; } public String getRemarkLike() { return RemarkLike; } public JB_EstimateResourceLinesQuery setRemarkLike(String value) { this.RemarkLike = value; return this; } public ArrayList getRemarkBetween() { return RemarkBetween; } public JB_EstimateResourceLinesQuery setRemarkBetween(ArrayList value) { this.RemarkBetween = value; return this; } public ArrayList getRemarkIn() { return RemarkIn; } public JB_EstimateResourceLinesQuery setRemarkIn(ArrayList value) { this.RemarkIn = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public JB_EstimateResourceLinesQuery setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getLastSavedDateTimeGreaterThanOrEqualTo() { return LastSavedDateTimeGreaterThanOrEqualTo; } public JB_EstimateResourceLinesQuery setLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.LastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeGreaterThan() { return LastSavedDateTimeGreaterThan; } public JB_EstimateResourceLinesQuery setLastSavedDateTimeGreaterThan(Date value) { this.LastSavedDateTimeGreaterThan = value; return this; } public Date getLastSavedDateTimeLessThan() { return LastSavedDateTimeLessThan; } public JB_EstimateResourceLinesQuery setLastSavedDateTimeLessThan(Date value) { this.LastSavedDateTimeLessThan = value; return this; } public Date getLastSavedDateTimeLessThanOrEqualTo() { return LastSavedDateTimeLessThanOrEqualTo; } public JB_EstimateResourceLinesQuery setLastSavedDateTimeLessThanOrEqualTo(Date value) { this.LastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeNotEqualTo() { return LastSavedDateTimeNotEqualTo; } public JB_EstimateResourceLinesQuery setLastSavedDateTimeNotEqualTo(Date value) { this.LastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getLastSavedDateTimeBetween() { return LastSavedDateTimeBetween; } public JB_EstimateResourceLinesQuery setLastSavedDateTimeBetween(ArrayList value) { this.LastSavedDateTimeBetween = value; return this; } public ArrayList getLastSavedDateTimeIn() { return LastSavedDateTimeIn; } public JB_EstimateResourceLinesQuery setLastSavedDateTimeIn(ArrayList value) { this.LastSavedDateTimeIn = value; return this; } public String getHrStaffRecID() { return HR_Staff_RecID; } public JB_EstimateResourceLinesQuery setHrStaffRecID(String value) { this.HR_Staff_RecID = value; return this; } public String getHrStaffRecIDStartsWith() { return HR_Staff_RecIDStartsWith; } public JB_EstimateResourceLinesQuery setHrStaffRecIDStartsWith(String value) { this.HR_Staff_RecIDStartsWith = value; return this; } public String getHrStaffRecIDEndsWith() { return HR_Staff_RecIDEndsWith; } public JB_EstimateResourceLinesQuery setHrStaffRecIDEndsWith(String value) { this.HR_Staff_RecIDEndsWith = value; return this; } public String getHrStaffRecIDContains() { return HR_Staff_RecIDContains; } public JB_EstimateResourceLinesQuery setHrStaffRecIDContains(String value) { this.HR_Staff_RecIDContains = value; return this; } public String getHrStaffRecIDLike() { return HR_Staff_RecIDLike; } public JB_EstimateResourceLinesQuery setHrStaffRecIDLike(String value) { this.HR_Staff_RecIDLike = value; return this; } public ArrayList getHrStaffRecIDBetween() { return HR_Staff_RecIDBetween; } public JB_EstimateResourceLinesQuery setHrStaffRecIDBetween(ArrayList value) { this.HR_Staff_RecIDBetween = value; return this; } public ArrayList getHrStaffRecIDIn() { return HR_Staff_RecIDIn; } public JB_EstimateResourceLinesQuery setHrStaffRecIDIn(ArrayList value) { this.HR_Staff_RecIDIn = value; return this; } public ArrayList getRowHash() { return RowHash; } public JB_EstimateResourceLinesQuery setRowHash(ArrayList value) { this.RowHash = value; return this; } public String getUnits() { return Units; } public JB_EstimateResourceLinesQuery setUnits(String value) { this.Units = value; return this; } public String getUnitsStartsWith() { return UnitsStartsWith; } public JB_EstimateResourceLinesQuery setUnitsStartsWith(String value) { this.UnitsStartsWith = value; return this; } public String getUnitsEndsWith() { return UnitsEndsWith; } public JB_EstimateResourceLinesQuery setUnitsEndsWith(String value) { this.UnitsEndsWith = value; return this; } public String getUnitsContains() { return UnitsContains; } public JB_EstimateResourceLinesQuery setUnitsContains(String value) { this.UnitsContains = value; return this; } public String getUnitsLike() { return UnitsLike; } public JB_EstimateResourceLinesQuery setUnitsLike(String value) { this.UnitsLike = value; return this; } public ArrayList getUnitsBetween() { return UnitsBetween; } public JB_EstimateResourceLinesQuery setUnitsBetween(ArrayList value) { this.UnitsBetween = value; return this; } public ArrayList getUnitsIn() { return UnitsIn; } public JB_EstimateResourceLinesQuery setUnitsIn(ArrayList value) { this.UnitsIn = value; return this; } public String getJbEstimateLinesRecID() { return JB_EstimateLines_RecID; } public JB_EstimateResourceLinesQuery setJbEstimateLinesRecID(String value) { this.JB_EstimateLines_RecID = value; return this; } public String getJbEstimateLinesRecIDStartsWith() { return JB_EstimateLines_RecIDStartsWith; } public JB_EstimateResourceLinesQuery setJbEstimateLinesRecIDStartsWith(String value) { this.JB_EstimateLines_RecIDStartsWith = value; return this; } public String getJbEstimateLinesRecIDEndsWith() { return JB_EstimateLines_RecIDEndsWith; } public JB_EstimateResourceLinesQuery setJbEstimateLinesRecIDEndsWith(String value) { this.JB_EstimateLines_RecIDEndsWith = value; return this; } public String getJbEstimateLinesRecIDContains() { return JB_EstimateLines_RecIDContains; } public JB_EstimateResourceLinesQuery setJbEstimateLinesRecIDContains(String value) { this.JB_EstimateLines_RecIDContains = value; return this; } public String getJbEstimateLinesRecIDLike() { return JB_EstimateLines_RecIDLike; } public JB_EstimateResourceLinesQuery setJbEstimateLinesRecIDLike(String value) { this.JB_EstimateLines_RecIDLike = value; return this; } public ArrayList getJbEstimateLinesRecIDBetween() { return JB_EstimateLines_RecIDBetween; } public JB_EstimateResourceLinesQuery setJbEstimateLinesRecIDBetween(ArrayList value) { this.JB_EstimateLines_RecIDBetween = value; return this; } public ArrayList getJbEstimateLinesRecIDIn() { return JB_EstimateLines_RecIDIn; } public JB_EstimateResourceLinesQuery setJbEstimateLinesRecIDIn(ArrayList value) { this.JB_EstimateLines_RecIDIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class JB_EstimatesQuery extends QueryDb implements IReturn> { public String RecID = null; public String RecIDStartsWith = null; public String RecIDEndsWith = null; public String RecIDContains = null; public String RecIDLike = null; public ArrayList RecIDBetween = null; public ArrayList RecIDIn = null; public String EstimateNo = null; public String EstimateNoStartsWith = null; public String EstimateNoEndsWith = null; public String EstimateNoContains = null; public String EstimateNoLike = null; public ArrayList EstimateNoBetween = null; public ArrayList EstimateNoIn = null; public String Description = null; public String DescriptionStartsWith = null; public String DescriptionEndsWith = null; public String DescriptionContains = null; public String DescriptionLike = null; public ArrayList DescriptionBetween = null; public ArrayList DescriptionIn = null; public String JB_Main_RecID = null; public String JB_Main_RecIDStartsWith = null; public String JB_Main_RecIDEndsWith = null; public String JB_Main_RecIDContains = null; public String JB_Main_RecIDLike = null; public ArrayList JB_Main_RecIDBetween = null; public ArrayList JB_Main_RecIDIn = null; public Date LastSavedDateTime = null; public Date LastSavedDateTimeGreaterThanOrEqualTo = null; public Date LastSavedDateTimeGreaterThan = null; public Date LastSavedDateTimeLessThan = null; public Date LastSavedDateTimeLessThanOrEqualTo = null; public Date LastSavedDateTimeNotEqualTo = null; public ArrayList LastSavedDateTimeBetween = null; public ArrayList LastSavedDateTimeIn = null; public String HR_Staff_RecID = null; public String HR_Staff_RecIDStartsWith = null; public String HR_Staff_RecIDEndsWith = null; public String HR_Staff_RecIDContains = null; public String HR_Staff_RecIDLike = null; public ArrayList HR_Staff_RecIDBetween = null; public ArrayList HR_Staff_RecIDIn = null; public String IN_Logical_RecID = null; public String IN_Logical_RecIDStartsWith = null; public String IN_Logical_RecIDEndsWith = null; public String IN_Logical_RecIDContains = null; public String IN_Logical_RecIDLike = null; public ArrayList IN_Logical_RecIDBetween = null; public ArrayList IN_Logical_RecIDIn = null; public Boolean IsDefault = null; public ArrayList RowHash = null; public String getRecID() { return RecID; } public JB_EstimatesQuery setRecID(String value) { this.RecID = value; return this; } public String getRecIDStartsWith() { return RecIDStartsWith; } public JB_EstimatesQuery setRecIDStartsWith(String value) { this.RecIDStartsWith = value; return this; } public String getRecIDEndsWith() { return RecIDEndsWith; } public JB_EstimatesQuery setRecIDEndsWith(String value) { this.RecIDEndsWith = value; return this; } public String getRecIDContains() { return RecIDContains; } public JB_EstimatesQuery setRecIDContains(String value) { this.RecIDContains = value; return this; } public String getRecIDLike() { return RecIDLike; } public JB_EstimatesQuery setRecIDLike(String value) { this.RecIDLike = value; return this; } public ArrayList getRecIDBetween() { return RecIDBetween; } public JB_EstimatesQuery setRecIDBetween(ArrayList value) { this.RecIDBetween = value; return this; } public ArrayList getRecIDIn() { return RecIDIn; } public JB_EstimatesQuery setRecIDIn(ArrayList value) { this.RecIDIn = value; return this; } public String getEstimateNo() { return EstimateNo; } public JB_EstimatesQuery setEstimateNo(String value) { this.EstimateNo = value; return this; } public String getEstimateNoStartsWith() { return EstimateNoStartsWith; } public JB_EstimatesQuery setEstimateNoStartsWith(String value) { this.EstimateNoStartsWith = value; return this; } public String getEstimateNoEndsWith() { return EstimateNoEndsWith; } public JB_EstimatesQuery setEstimateNoEndsWith(String value) { this.EstimateNoEndsWith = value; return this; } public String getEstimateNoContains() { return EstimateNoContains; } public JB_EstimatesQuery setEstimateNoContains(String value) { this.EstimateNoContains = value; return this; } public String getEstimateNoLike() { return EstimateNoLike; } public JB_EstimatesQuery setEstimateNoLike(String value) { this.EstimateNoLike = value; return this; } public ArrayList getEstimateNoBetween() { return EstimateNoBetween; } public JB_EstimatesQuery setEstimateNoBetween(ArrayList value) { this.EstimateNoBetween = value; return this; } public ArrayList getEstimateNoIn() { return EstimateNoIn; } public JB_EstimatesQuery setEstimateNoIn(ArrayList value) { this.EstimateNoIn = value; return this; } public String getDescription() { return Description; } public JB_EstimatesQuery setDescription(String value) { this.Description = value; return this; } public String getDescriptionStartsWith() { return DescriptionStartsWith; } public JB_EstimatesQuery setDescriptionStartsWith(String value) { this.DescriptionStartsWith = value; return this; } public String getDescriptionEndsWith() { return DescriptionEndsWith; } public JB_EstimatesQuery setDescriptionEndsWith(String value) { this.DescriptionEndsWith = value; return this; } public String getDescriptionContains() { return DescriptionContains; } public JB_EstimatesQuery setDescriptionContains(String value) { this.DescriptionContains = value; return this; } public String getDescriptionLike() { return DescriptionLike; } public JB_EstimatesQuery setDescriptionLike(String value) { this.DescriptionLike = value; return this; } public ArrayList getDescriptionBetween() { return DescriptionBetween; } public JB_EstimatesQuery setDescriptionBetween(ArrayList value) { this.DescriptionBetween = value; return this; } public ArrayList getDescriptionIn() { return DescriptionIn; } public JB_EstimatesQuery setDescriptionIn(ArrayList value) { this.DescriptionIn = value; return this; } public String getJbMainRecID() { return JB_Main_RecID; } public JB_EstimatesQuery setJbMainRecID(String value) { this.JB_Main_RecID = value; return this; } public String getJbMainRecIDStartsWith() { return JB_Main_RecIDStartsWith; } public JB_EstimatesQuery setJbMainRecIDStartsWith(String value) { this.JB_Main_RecIDStartsWith = value; return this; } public String getJbMainRecIDEndsWith() { return JB_Main_RecIDEndsWith; } public JB_EstimatesQuery setJbMainRecIDEndsWith(String value) { this.JB_Main_RecIDEndsWith = value; return this; } public String getJbMainRecIDContains() { return JB_Main_RecIDContains; } public JB_EstimatesQuery setJbMainRecIDContains(String value) { this.JB_Main_RecIDContains = value; return this; } public String getJbMainRecIDLike() { return JB_Main_RecIDLike; } public JB_EstimatesQuery setJbMainRecIDLike(String value) { this.JB_Main_RecIDLike = value; return this; } public ArrayList getJbMainRecIDBetween() { return JB_Main_RecIDBetween; } public JB_EstimatesQuery setJbMainRecIDBetween(ArrayList value) { this.JB_Main_RecIDBetween = value; return this; } public ArrayList getJbMainRecIDIn() { return JB_Main_RecIDIn; } public JB_EstimatesQuery setJbMainRecIDIn(ArrayList value) { this.JB_Main_RecIDIn = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public JB_EstimatesQuery setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getLastSavedDateTimeGreaterThanOrEqualTo() { return LastSavedDateTimeGreaterThanOrEqualTo; } public JB_EstimatesQuery setLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.LastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeGreaterThan() { return LastSavedDateTimeGreaterThan; } public JB_EstimatesQuery setLastSavedDateTimeGreaterThan(Date value) { this.LastSavedDateTimeGreaterThan = value; return this; } public Date getLastSavedDateTimeLessThan() { return LastSavedDateTimeLessThan; } public JB_EstimatesQuery setLastSavedDateTimeLessThan(Date value) { this.LastSavedDateTimeLessThan = value; return this; } public Date getLastSavedDateTimeLessThanOrEqualTo() { return LastSavedDateTimeLessThanOrEqualTo; } public JB_EstimatesQuery setLastSavedDateTimeLessThanOrEqualTo(Date value) { this.LastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeNotEqualTo() { return LastSavedDateTimeNotEqualTo; } public JB_EstimatesQuery setLastSavedDateTimeNotEqualTo(Date value) { this.LastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getLastSavedDateTimeBetween() { return LastSavedDateTimeBetween; } public JB_EstimatesQuery setLastSavedDateTimeBetween(ArrayList value) { this.LastSavedDateTimeBetween = value; return this; } public ArrayList getLastSavedDateTimeIn() { return LastSavedDateTimeIn; } public JB_EstimatesQuery setLastSavedDateTimeIn(ArrayList value) { this.LastSavedDateTimeIn = value; return this; } public String getHrStaffRecID() { return HR_Staff_RecID; } public JB_EstimatesQuery setHrStaffRecID(String value) { this.HR_Staff_RecID = value; return this; } public String getHrStaffRecIDStartsWith() { return HR_Staff_RecIDStartsWith; } public JB_EstimatesQuery setHrStaffRecIDStartsWith(String value) { this.HR_Staff_RecIDStartsWith = value; return this; } public String getHrStaffRecIDEndsWith() { return HR_Staff_RecIDEndsWith; } public JB_EstimatesQuery setHrStaffRecIDEndsWith(String value) { this.HR_Staff_RecIDEndsWith = value; return this; } public String getHrStaffRecIDContains() { return HR_Staff_RecIDContains; } public JB_EstimatesQuery setHrStaffRecIDContains(String value) { this.HR_Staff_RecIDContains = value; return this; } public String getHrStaffRecIDLike() { return HR_Staff_RecIDLike; } public JB_EstimatesQuery setHrStaffRecIDLike(String value) { this.HR_Staff_RecIDLike = value; return this; } public ArrayList getHrStaffRecIDBetween() { return HR_Staff_RecIDBetween; } public JB_EstimatesQuery setHrStaffRecIDBetween(ArrayList value) { this.HR_Staff_RecIDBetween = value; return this; } public ArrayList getHrStaffRecIDIn() { return HR_Staff_RecIDIn; } public JB_EstimatesQuery setHrStaffRecIDIn(ArrayList value) { this.HR_Staff_RecIDIn = value; return this; } public String getInLogicalRecID() { return IN_Logical_RecID; } public JB_EstimatesQuery setInLogicalRecID(String value) { this.IN_Logical_RecID = value; return this; } public String getInLogicalRecIDStartsWith() { return IN_Logical_RecIDStartsWith; } public JB_EstimatesQuery setInLogicalRecIDStartsWith(String value) { this.IN_Logical_RecIDStartsWith = value; return this; } public String getInLogicalRecIDEndsWith() { return IN_Logical_RecIDEndsWith; } public JB_EstimatesQuery setInLogicalRecIDEndsWith(String value) { this.IN_Logical_RecIDEndsWith = value; return this; } public String getInLogicalRecIDContains() { return IN_Logical_RecIDContains; } public JB_EstimatesQuery setInLogicalRecIDContains(String value) { this.IN_Logical_RecIDContains = value; return this; } public String getInLogicalRecIDLike() { return IN_Logical_RecIDLike; } public JB_EstimatesQuery setInLogicalRecIDLike(String value) { this.IN_Logical_RecIDLike = value; return this; } public ArrayList getInLogicalRecIDBetween() { return IN_Logical_RecIDBetween; } public JB_EstimatesQuery setInLogicalRecIDBetween(ArrayList value) { this.IN_Logical_RecIDBetween = value; return this; } public ArrayList getInLogicalRecIDIn() { return IN_Logical_RecIDIn; } public JB_EstimatesQuery setInLogicalRecIDIn(ArrayList value) { this.IN_Logical_RecIDIn = value; return this; } public Boolean getIsDefault() { return IsDefault; } public JB_EstimatesQuery setIsDefault(Boolean value) { this.IsDefault = value; return this; } public ArrayList getRowHash() { return RowHash; } public JB_EstimatesQuery setRowHash(ArrayList value) { this.RowHash = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class JB_GroupsQuery extends QueryDb implements IReturn> { public String RecID = null; public String RecIDStartsWith = null; public String RecIDEndsWith = null; public String RecIDContains = null; public String RecIDLike = null; public ArrayList RecIDBetween = null; public ArrayList RecIDIn = null; public String Name = null; public String NameStartsWith = null; public String NameEndsWith = null; public String NameContains = null; public String NameLike = null; public ArrayList NameBetween = null; public ArrayList NameIn = null; public String Description = null; public String DescriptionStartsWith = null; public String DescriptionEndsWith = null; public String DescriptionContains = null; public String DescriptionLike = null; public ArrayList DescriptionBetween = null; public ArrayList DescriptionIn = null; public Integer ItemNo = null; public Integer ItemNoGreaterThanOrEqualTo = null; public Integer ItemNoGreaterThan = null; public Integer ItemNoLessThan = null; public Integer ItemNoLessThanOrEqualTo = null; public Integer ItemNoNotEqualTo = null; public ArrayList ItemNoBetween = null; public ArrayList ItemNoIn = null; public Boolean IsEnabled = null; public ArrayList RowHash = null; public Boolean IsDefault = null; public String getRecID() { return RecID; } public JB_GroupsQuery setRecID(String value) { this.RecID = value; return this; } public String getRecIDStartsWith() { return RecIDStartsWith; } public JB_GroupsQuery setRecIDStartsWith(String value) { this.RecIDStartsWith = value; return this; } public String getRecIDEndsWith() { return RecIDEndsWith; } public JB_GroupsQuery setRecIDEndsWith(String value) { this.RecIDEndsWith = value; return this; } public String getRecIDContains() { return RecIDContains; } public JB_GroupsQuery setRecIDContains(String value) { this.RecIDContains = value; return this; } public String getRecIDLike() { return RecIDLike; } public JB_GroupsQuery setRecIDLike(String value) { this.RecIDLike = value; return this; } public ArrayList getRecIDBetween() { return RecIDBetween; } public JB_GroupsQuery setRecIDBetween(ArrayList value) { this.RecIDBetween = value; return this; } public ArrayList getRecIDIn() { return RecIDIn; } public JB_GroupsQuery setRecIDIn(ArrayList value) { this.RecIDIn = value; return this; } public String getName() { return Name; } public JB_GroupsQuery setName(String value) { this.Name = value; return this; } public String getNameStartsWith() { return NameStartsWith; } public JB_GroupsQuery setNameStartsWith(String value) { this.NameStartsWith = value; return this; } public String getNameEndsWith() { return NameEndsWith; } public JB_GroupsQuery setNameEndsWith(String value) { this.NameEndsWith = value; return this; } public String getNameContains() { return NameContains; } public JB_GroupsQuery setNameContains(String value) { this.NameContains = value; return this; } public String getNameLike() { return NameLike; } public JB_GroupsQuery setNameLike(String value) { this.NameLike = value; return this; } public ArrayList getNameBetween() { return NameBetween; } public JB_GroupsQuery setNameBetween(ArrayList value) { this.NameBetween = value; return this; } public ArrayList getNameIn() { return NameIn; } public JB_GroupsQuery setNameIn(ArrayList value) { this.NameIn = value; return this; } public String getDescription() { return Description; } public JB_GroupsQuery setDescription(String value) { this.Description = value; return this; } public String getDescriptionStartsWith() { return DescriptionStartsWith; } public JB_GroupsQuery setDescriptionStartsWith(String value) { this.DescriptionStartsWith = value; return this; } public String getDescriptionEndsWith() { return DescriptionEndsWith; } public JB_GroupsQuery setDescriptionEndsWith(String value) { this.DescriptionEndsWith = value; return this; } public String getDescriptionContains() { return DescriptionContains; } public JB_GroupsQuery setDescriptionContains(String value) { this.DescriptionContains = value; return this; } public String getDescriptionLike() { return DescriptionLike; } public JB_GroupsQuery setDescriptionLike(String value) { this.DescriptionLike = value; return this; } public ArrayList getDescriptionBetween() { return DescriptionBetween; } public JB_GroupsQuery setDescriptionBetween(ArrayList value) { this.DescriptionBetween = value; return this; } public ArrayList getDescriptionIn() { return DescriptionIn; } public JB_GroupsQuery setDescriptionIn(ArrayList value) { this.DescriptionIn = value; return this; } public Integer getItemNo() { return ItemNo; } public JB_GroupsQuery setItemNo(Integer value) { this.ItemNo = value; return this; } public Integer getItemNoGreaterThanOrEqualTo() { return ItemNoGreaterThanOrEqualTo; } public JB_GroupsQuery setItemNoGreaterThanOrEqualTo(Integer value) { this.ItemNoGreaterThanOrEqualTo = value; return this; } public Integer getItemNoGreaterThan() { return ItemNoGreaterThan; } public JB_GroupsQuery setItemNoGreaterThan(Integer value) { this.ItemNoGreaterThan = value; return this; } public Integer getItemNoLessThan() { return ItemNoLessThan; } public JB_GroupsQuery setItemNoLessThan(Integer value) { this.ItemNoLessThan = value; return this; } public Integer getItemNoLessThanOrEqualTo() { return ItemNoLessThanOrEqualTo; } public JB_GroupsQuery setItemNoLessThanOrEqualTo(Integer value) { this.ItemNoLessThanOrEqualTo = value; return this; } public Integer getItemNoNotEqualTo() { return ItemNoNotEqualTo; } public JB_GroupsQuery setItemNoNotEqualTo(Integer value) { this.ItemNoNotEqualTo = value; return this; } public ArrayList getItemNoBetween() { return ItemNoBetween; } public JB_GroupsQuery setItemNoBetween(ArrayList value) { this.ItemNoBetween = value; return this; } public ArrayList getItemNoIn() { return ItemNoIn; } public JB_GroupsQuery setItemNoIn(ArrayList value) { this.ItemNoIn = value; return this; } public Boolean getIsEnabled() { return IsEnabled; } public JB_GroupsQuery setIsEnabled(Boolean value) { this.IsEnabled = value; return this; } public ArrayList getRowHash() { return RowHash; } public JB_GroupsQuery setRowHash(ArrayList value) { this.RowHash = value; return this; } public Boolean getIsDefault() { return IsDefault; } public JB_GroupsQuery setIsDefault(Boolean value) { this.IsDefault = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class JB_JobCostCentresQuery extends QueryDb implements IReturn> { public String RecID = null; public String RecIDStartsWith = null; public String RecIDEndsWith = null; public String RecIDContains = null; public String RecIDLike = null; public ArrayList RecIDBetween = null; public ArrayList RecIDIn = null; public String JobID = null; public String JobIDStartsWith = null; public String JobIDEndsWith = null; public String JobIDContains = null; public String JobIDLike = null; public ArrayList JobIDBetween = null; public ArrayList JobIDIn = null; public String JB_CostCentres_RecID = null; public String JB_CostCentres_RecIDStartsWith = null; public String JB_CostCentres_RecIDEndsWith = null; public String JB_CostCentres_RecIDContains = null; public String JB_CostCentres_RecIDLike = null; public ArrayList JB_CostCentres_RecIDBetween = null; public ArrayList JB_CostCentres_RecIDIn = null; public ArrayList RowHash = null; public String getRecID() { return RecID; } public JB_JobCostCentresQuery setRecID(String value) { this.RecID = value; return this; } public String getRecIDStartsWith() { return RecIDStartsWith; } public JB_JobCostCentresQuery setRecIDStartsWith(String value) { this.RecIDStartsWith = value; return this; } public String getRecIDEndsWith() { return RecIDEndsWith; } public JB_JobCostCentresQuery setRecIDEndsWith(String value) { this.RecIDEndsWith = value; return this; } public String getRecIDContains() { return RecIDContains; } public JB_JobCostCentresQuery setRecIDContains(String value) { this.RecIDContains = value; return this; } public String getRecIDLike() { return RecIDLike; } public JB_JobCostCentresQuery setRecIDLike(String value) { this.RecIDLike = value; return this; } public ArrayList getRecIDBetween() { return RecIDBetween; } public JB_JobCostCentresQuery setRecIDBetween(ArrayList value) { this.RecIDBetween = value; return this; } public ArrayList getRecIDIn() { return RecIDIn; } public JB_JobCostCentresQuery setRecIDIn(ArrayList value) { this.RecIDIn = value; return this; } public String getJobID() { return JobID; } public JB_JobCostCentresQuery setJobID(String value) { this.JobID = value; return this; } public String getJobIDStartsWith() { return JobIDStartsWith; } public JB_JobCostCentresQuery setJobIDStartsWith(String value) { this.JobIDStartsWith = value; return this; } public String getJobIDEndsWith() { return JobIDEndsWith; } public JB_JobCostCentresQuery setJobIDEndsWith(String value) { this.JobIDEndsWith = value; return this; } public String getJobIDContains() { return JobIDContains; } public JB_JobCostCentresQuery setJobIDContains(String value) { this.JobIDContains = value; return this; } public String getJobIDLike() { return JobIDLike; } public JB_JobCostCentresQuery setJobIDLike(String value) { this.JobIDLike = value; return this; } public ArrayList getJobIDBetween() { return JobIDBetween; } public JB_JobCostCentresQuery setJobIDBetween(ArrayList value) { this.JobIDBetween = value; return this; } public ArrayList getJobIDIn() { return JobIDIn; } public JB_JobCostCentresQuery setJobIDIn(ArrayList value) { this.JobIDIn = value; return this; } public String getJbCostCentresRecID() { return JB_CostCentres_RecID; } public JB_JobCostCentresQuery setJbCostCentresRecID(String value) { this.JB_CostCentres_RecID = value; return this; } public String getJbCostCentresRecIDStartsWith() { return JB_CostCentres_RecIDStartsWith; } public JB_JobCostCentresQuery setJbCostCentresRecIDStartsWith(String value) { this.JB_CostCentres_RecIDStartsWith = value; return this; } public String getJbCostCentresRecIDEndsWith() { return JB_CostCentres_RecIDEndsWith; } public JB_JobCostCentresQuery setJbCostCentresRecIDEndsWith(String value) { this.JB_CostCentres_RecIDEndsWith = value; return this; } public String getJbCostCentresRecIDContains() { return JB_CostCentres_RecIDContains; } public JB_JobCostCentresQuery setJbCostCentresRecIDContains(String value) { this.JB_CostCentres_RecIDContains = value; return this; } public String getJbCostCentresRecIDLike() { return JB_CostCentres_RecIDLike; } public JB_JobCostCentresQuery setJbCostCentresRecIDLike(String value) { this.JB_CostCentres_RecIDLike = value; return this; } public ArrayList getJbCostCentresRecIDBetween() { return JB_CostCentres_RecIDBetween; } public JB_JobCostCentresQuery setJbCostCentresRecIDBetween(ArrayList value) { this.JB_CostCentres_RecIDBetween = value; return this; } public ArrayList getJbCostCentresRecIDIn() { return JB_CostCentres_RecIDIn; } public JB_JobCostCentresQuery setJbCostCentresRecIDIn(ArrayList value) { this.JB_CostCentres_RecIDIn = value; return this; } public ArrayList getRowHash() { return RowHash; } public JB_JobCostCentresQuery setRowHash(ArrayList value) { this.RowHash = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class JB_JobStagesQuery extends QueryDb implements IReturn> { public String RecID = null; public String RecIDStartsWith = null; public String RecIDEndsWith = null; public String RecIDContains = null; public String RecIDLike = null; public ArrayList RecIDBetween = null; public ArrayList RecIDIn = null; public String JB_Classifications_RecID = null; public String JB_Classifications_RecIDStartsWith = null; public String JB_Classifications_RecIDEndsWith = null; public String JB_Classifications_RecIDContains = null; public String JB_Classifications_RecIDLike = null; public ArrayList JB_Classifications_RecIDBetween = null; public ArrayList JB_Classifications_RecIDIn = null; public String JB_JobCostCentres_RecID = null; public String JB_JobCostCentres_RecIDStartsWith = null; public String JB_JobCostCentres_RecIDEndsWith = null; public String JB_JobCostCentres_RecIDContains = null; public String JB_JobCostCentres_RecIDLike = null; public ArrayList JB_JobCostCentres_RecIDBetween = null; public ArrayList JB_JobCostCentres_RecIDIn = null; public String JB_Stages_RecID = null; public String JB_Stages_RecIDStartsWith = null; public String JB_Stages_RecIDEndsWith = null; public String JB_Stages_RecIDContains = null; public String JB_Stages_RecIDLike = null; public ArrayList JB_Stages_RecIDBetween = null; public ArrayList JB_Stages_RecIDIn = null; public ArrayList RowHash = null; public String getRecID() { return RecID; } public JB_JobStagesQuery setRecID(String value) { this.RecID = value; return this; } public String getRecIDStartsWith() { return RecIDStartsWith; } public JB_JobStagesQuery setRecIDStartsWith(String value) { this.RecIDStartsWith = value; return this; } public String getRecIDEndsWith() { return RecIDEndsWith; } public JB_JobStagesQuery setRecIDEndsWith(String value) { this.RecIDEndsWith = value; return this; } public String getRecIDContains() { return RecIDContains; } public JB_JobStagesQuery setRecIDContains(String value) { this.RecIDContains = value; return this; } public String getRecIDLike() { return RecIDLike; } public JB_JobStagesQuery setRecIDLike(String value) { this.RecIDLike = value; return this; } public ArrayList getRecIDBetween() { return RecIDBetween; } public JB_JobStagesQuery setRecIDBetween(ArrayList value) { this.RecIDBetween = value; return this; } public ArrayList getRecIDIn() { return RecIDIn; } public JB_JobStagesQuery setRecIDIn(ArrayList value) { this.RecIDIn = value; return this; } public String getJbClassificationsRecID() { return JB_Classifications_RecID; } public JB_JobStagesQuery setJbClassificationsRecID(String value) { this.JB_Classifications_RecID = value; return this; } public String getJbClassificationsRecIDStartsWith() { return JB_Classifications_RecIDStartsWith; } public JB_JobStagesQuery setJbClassificationsRecIDStartsWith(String value) { this.JB_Classifications_RecIDStartsWith = value; return this; } public String getJbClassificationsRecIDEndsWith() { return JB_Classifications_RecIDEndsWith; } public JB_JobStagesQuery setJbClassificationsRecIDEndsWith(String value) { this.JB_Classifications_RecIDEndsWith = value; return this; } public String getJbClassificationsRecIDContains() { return JB_Classifications_RecIDContains; } public JB_JobStagesQuery setJbClassificationsRecIDContains(String value) { this.JB_Classifications_RecIDContains = value; return this; } public String getJbClassificationsRecIDLike() { return JB_Classifications_RecIDLike; } public JB_JobStagesQuery setJbClassificationsRecIDLike(String value) { this.JB_Classifications_RecIDLike = value; return this; } public ArrayList getJbClassificationsRecIDBetween() { return JB_Classifications_RecIDBetween; } public JB_JobStagesQuery setJbClassificationsRecIDBetween(ArrayList value) { this.JB_Classifications_RecIDBetween = value; return this; } public ArrayList getJbClassificationsRecIDIn() { return JB_Classifications_RecIDIn; } public JB_JobStagesQuery setJbClassificationsRecIDIn(ArrayList value) { this.JB_Classifications_RecIDIn = value; return this; } public String getJbJobCostCentresRecID() { return JB_JobCostCentres_RecID; } public JB_JobStagesQuery setJbJobCostCentresRecID(String value) { this.JB_JobCostCentres_RecID = value; return this; } public String getJbJobCostCentresRecIDStartsWith() { return JB_JobCostCentres_RecIDStartsWith; } public JB_JobStagesQuery setJbJobCostCentresRecIDStartsWith(String value) { this.JB_JobCostCentres_RecIDStartsWith = value; return this; } public String getJbJobCostCentresRecIDEndsWith() { return JB_JobCostCentres_RecIDEndsWith; } public JB_JobStagesQuery setJbJobCostCentresRecIDEndsWith(String value) { this.JB_JobCostCentres_RecIDEndsWith = value; return this; } public String getJbJobCostCentresRecIDContains() { return JB_JobCostCentres_RecIDContains; } public JB_JobStagesQuery setJbJobCostCentresRecIDContains(String value) { this.JB_JobCostCentres_RecIDContains = value; return this; } public String getJbJobCostCentresRecIDLike() { return JB_JobCostCentres_RecIDLike; } public JB_JobStagesQuery setJbJobCostCentresRecIDLike(String value) { this.JB_JobCostCentres_RecIDLike = value; return this; } public ArrayList getJbJobCostCentresRecIDBetween() { return JB_JobCostCentres_RecIDBetween; } public JB_JobStagesQuery setJbJobCostCentresRecIDBetween(ArrayList value) { this.JB_JobCostCentres_RecIDBetween = value; return this; } public ArrayList getJbJobCostCentresRecIDIn() { return JB_JobCostCentres_RecIDIn; } public JB_JobStagesQuery setJbJobCostCentresRecIDIn(ArrayList value) { this.JB_JobCostCentres_RecIDIn = value; return this; } public String getJbStagesRecID() { return JB_Stages_RecID; } public JB_JobStagesQuery setJbStagesRecID(String value) { this.JB_Stages_RecID = value; return this; } public String getJbStagesRecIDStartsWith() { return JB_Stages_RecIDStartsWith; } public JB_JobStagesQuery setJbStagesRecIDStartsWith(String value) { this.JB_Stages_RecIDStartsWith = value; return this; } public String getJbStagesRecIDEndsWith() { return JB_Stages_RecIDEndsWith; } public JB_JobStagesQuery setJbStagesRecIDEndsWith(String value) { this.JB_Stages_RecIDEndsWith = value; return this; } public String getJbStagesRecIDContains() { return JB_Stages_RecIDContains; } public JB_JobStagesQuery setJbStagesRecIDContains(String value) { this.JB_Stages_RecIDContains = value; return this; } public String getJbStagesRecIDLike() { return JB_Stages_RecIDLike; } public JB_JobStagesQuery setJbStagesRecIDLike(String value) { this.JB_Stages_RecIDLike = value; return this; } public ArrayList getJbStagesRecIDBetween() { return JB_Stages_RecIDBetween; } public JB_JobStagesQuery setJbStagesRecIDBetween(ArrayList value) { this.JB_Stages_RecIDBetween = value; return this; } public ArrayList getJbStagesRecIDIn() { return JB_Stages_RecIDIn; } public JB_JobStagesQuery setJbStagesRecIDIn(ArrayList value) { this.JB_Stages_RecIDIn = value; return this; } public ArrayList getRowHash() { return RowHash; } public JB_JobStagesQuery setRowHash(ArrayList value) { this.RowHash = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class JB_MainQuery extends QueryDb implements IReturn> { public String JobID = null; public String JobIDStartsWith = null; public String JobIDEndsWith = null; public String JobIDContains = null; public String JobIDLike = null; public ArrayList JobIDBetween = null; public ArrayList JobIDIn = null; public String JobNo = null; public String JobNoStartsWith = null; public String JobNoEndsWith = null; public String JobNoContains = null; public String JobNoLike = null; public ArrayList JobNoBetween = null; public ArrayList JobNoIn = null; public String Description = null; public String DescriptionStartsWith = null; public String DescriptionEndsWith = null; public String DescriptionContains = null; public String DescriptionLike = null; public ArrayList DescriptionBetween = null; public ArrayList DescriptionIn = null; public String DebtorID = null; public String DebtorIDStartsWith = null; public String DebtorIDEndsWith = null; public String DebtorIDContains = null; public String DebtorIDLike = null; public ArrayList DebtorIDBetween = null; public ArrayList DebtorIDIn = null; public String OrderNo = null; public String OrderNoStartsWith = null; public String OrderNoEndsWith = null; public String OrderNoContains = null; public String OrderNoLike = null; public ArrayList OrderNoBetween = null; public ArrayList OrderNoIn = null; public Date StartDate = null; public Date StartDateGreaterThanOrEqualTo = null; public Date StartDateGreaterThan = null; public Date StartDateLessThan = null; public Date StartDateLessThanOrEqualTo = null; public Date StartDateNotEqualTo = null; public ArrayList StartDateBetween = null; public ArrayList StartDateIn = null; public Date EstEndDate = null; public Date EstEndDateGreaterThanOrEqualTo = null; public Date EstEndDateGreaterThan = null; public Date EstEndDateLessThan = null; public Date EstEndDateLessThanOrEqualTo = null; public Date EstEndDateNotEqualTo = null; public ArrayList EstEndDateBetween = null; public ArrayList EstEndDateIn = null; public Date ClosedDate = null; public Date ClosedDateGreaterThanOrEqualTo = null; public Date ClosedDateGreaterThan = null; public Date ClosedDateLessThan = null; public Date ClosedDateLessThanOrEqualTo = null; public Date ClosedDateNotEqualTo = null; public ArrayList ClosedDateBetween = null; public ArrayList ClosedDateIn = null; public Short InventorySellType = null; public Short InventorySellTypeGreaterThanOrEqualTo = null; public Short InventorySellTypeGreaterThan = null; public Short InventorySellTypeLessThan = null; public Short InventorySellTypeLessThanOrEqualTo = null; public Short InventorySellTypeNotEqualTo = null; public ArrayList InventorySellTypeBetween = null; public ArrayList InventorySellTypeIn = null; public Date LastSavedDateTime = null; public Date LastSavedDateTimeGreaterThanOrEqualTo = null; public Date LastSavedDateTimeGreaterThan = null; public Date LastSavedDateTimeLessThan = null; public Date LastSavedDateTimeLessThanOrEqualTo = null; public Date LastSavedDateTimeNotEqualTo = null; public ArrayList LastSavedDateTimeBetween = null; public ArrayList LastSavedDateTimeIn = null; public Boolean IsTemplate = null; public BigDecimal ContractAmount = null; public BigDecimal ContractAmountGreaterThanOrEqualTo = null; public BigDecimal ContractAmountGreaterThan = null; public BigDecimal ContractAmountLessThan = null; public BigDecimal ContractAmountLessThanOrEqualTo = null; public BigDecimal ContractAmountNotEqualTo = null; public ArrayList ContractAmountBetween = null; public ArrayList ContractAmountIn = null; public BigDecimal MarkUpMaterials = null; public BigDecimal MarkUpMaterialsGreaterThanOrEqualTo = null; public BigDecimal MarkUpMaterialsGreaterThan = null; public BigDecimal MarkUpMaterialsLessThan = null; public BigDecimal MarkUpMaterialsLessThanOrEqualTo = null; public BigDecimal MarkUpMaterialsNotEqualTo = null; public ArrayList MarkUpMaterialsBetween = null; public ArrayList MarkUpMaterialsIn = null; public BigDecimal MarkUpLabour = null; public BigDecimal MarkUpLabourGreaterThanOrEqualTo = null; public BigDecimal MarkUpLabourGreaterThan = null; public BigDecimal MarkUpLabourLessThan = null; public BigDecimal MarkUpLabourLessThanOrEqualTo = null; public BigDecimal MarkUpLabourNotEqualTo = null; public ArrayList MarkUpLabourBetween = null; public ArrayList MarkUpLabourIn = null; public BigDecimal MarkUpSubContract = null; public BigDecimal MarkUpSubContractGreaterThanOrEqualTo = null; public BigDecimal MarkUpSubContractGreaterThan = null; public BigDecimal MarkUpSubContractLessThan = null; public BigDecimal MarkUpSubContractLessThanOrEqualTo = null; public BigDecimal MarkUpSubContractNotEqualTo = null; public ArrayList MarkUpSubContractBetween = null; public ArrayList MarkUpSubContractIn = null; public BigDecimal MarkUpResource = null; public BigDecimal MarkUpResourceGreaterThanOrEqualTo = null; public BigDecimal MarkUpResourceGreaterThan = null; public BigDecimal MarkUpResourceLessThan = null; public BigDecimal MarkUpResourceLessThanOrEqualTo = null; public BigDecimal MarkUpResourceNotEqualTo = null; public ArrayList MarkUpResourceBetween = null; public ArrayList MarkUpResourceIn = null; public Short RetentionType = null; public Short RetentionTypeGreaterThanOrEqualTo = null; public Short RetentionTypeGreaterThan = null; public Short RetentionTypeLessThan = null; public Short RetentionTypeLessThanOrEqualTo = null; public Short RetentionTypeNotEqualTo = null; public ArrayList RetentionTypeBetween = null; public ArrayList RetentionTypeIn = null; public BigDecimal RetentionValue = null; public BigDecimal RetentionValueGreaterThanOrEqualTo = null; public BigDecimal RetentionValueGreaterThan = null; public BigDecimal RetentionValueLessThan = null; public BigDecimal RetentionValueLessThanOrEqualTo = null; public BigDecimal RetentionValueNotEqualTo = null; public ArrayList RetentionValueBetween = null; public ArrayList RetentionValueIn = null; public Boolean GstApplicable = null; public Short EstimateType = null; public Short EstimateTypeGreaterThanOrEqualTo = null; public Short EstimateTypeGreaterThan = null; public Short EstimateTypeLessThan = null; public Short EstimateTypeLessThanOrEqualTo = null; public Short EstimateTypeNotEqualTo = null; public ArrayList EstimateTypeBetween = null; public ArrayList EstimateTypeIn = null; public String WarehouseID = null; public String WarehouseIDStartsWith = null; public String WarehouseIDEndsWith = null; public String WarehouseIDContains = null; public String WarehouseIDLike = null; public ArrayList WarehouseIDBetween = null; public ArrayList WarehouseIDIn = null; public String ProductID = null; public String ProductIDStartsWith = null; public String ProductIDEndsWith = null; public String ProductIDContains = null; public String ProductIDLike = null; public ArrayList ProductIDBetween = null; public ArrayList ProductIDIn = null; public String ProductDesc = null; public String ProductDescStartsWith = null; public String ProductDescEndsWith = null; public String ProductDescContains = null; public String ProductDescLike = null; public ArrayList ProductDescBetween = null; public ArrayList ProductDescIn = null; public BigDecimal ProductQty = null; public BigDecimal ProductQtyGreaterThanOrEqualTo = null; public BigDecimal ProductQtyGreaterThan = null; public BigDecimal ProductQtyLessThan = null; public BigDecimal ProductQtyLessThanOrEqualTo = null; public BigDecimal ProductQtyNotEqualTo = null; public ArrayList ProductQtyBetween = null; public ArrayList ProductQtyIn = null; public Date EstStartDate = null; public Date EstStartDateGreaterThanOrEqualTo = null; public Date EstStartDateGreaterThan = null; public Date EstStartDateLessThan = null; public Date EstStartDateLessThanOrEqualTo = null; public Date EstStartDateNotEqualTo = null; public ArrayList EstStartDateBetween = null; public ArrayList EstStartDateIn = null; public String ClassificationID = null; public String ClassificationIDStartsWith = null; public String ClassificationIDEndsWith = null; public String ClassificationIDContains = null; public String ClassificationIDLike = null; public ArrayList ClassificationIDBetween = null; public ArrayList ClassificationIDIn = null; public String CN_Contact_RecID = null; public String CN_Contact_RecIDStartsWith = null; public String CN_Contact_RecIDEndsWith = null; public String CN_Contact_RecIDContains = null; public String CN_Contact_RecIDLike = null; public ArrayList CN_Contact_RecIDBetween = null; public ArrayList CN_Contact_RecIDIn = null; public Short JobStatus = null; public Short JobStatusGreaterThanOrEqualTo = null; public Short JobStatusGreaterThan = null; public Short JobStatusLessThan = null; public Short JobStatusLessThanOrEqualTo = null; public Short JobStatusNotEqualTo = null; public ArrayList JobStatusBetween = null; public ArrayList JobStatusIn = null; public String JB_Groups_RecID = null; public String JB_Groups_RecIDStartsWith = null; public String JB_Groups_RecIDEndsWith = null; public String JB_Groups_RecIDContains = null; public String JB_Groups_RecIDLike = null; public ArrayList JB_Groups_RecIDBetween = null; public ArrayList JB_Groups_RecIDIn = null; public String JB_Statuses_RecID = null; public String JB_Statuses_RecIDStartsWith = null; public String JB_Statuses_RecIDEndsWith = null; public String JB_Statuses_RecIDContains = null; public String JB_Statuses_RecIDLike = null; public ArrayList JB_Statuses_RecIDBetween = null; public ArrayList JB_Statuses_RecIDIn = null; public String JB_Priorities_RecID = null; public String JB_Priorities_RecIDStartsWith = null; public String JB_Priorities_RecIDEndsWith = null; public String JB_Priorities_RecIDContains = null; public String JB_Priorities_RecIDLike = null; public ArrayList JB_Priorities_RecIDBetween = null; public ArrayList JB_Priorities_RecIDIn = null; public String getJobID() { return JobID; } public JB_MainQuery setJobID(String value) { this.JobID = value; return this; } public String getJobIDStartsWith() { return JobIDStartsWith; } public JB_MainQuery setJobIDStartsWith(String value) { this.JobIDStartsWith = value; return this; } public String getJobIDEndsWith() { return JobIDEndsWith; } public JB_MainQuery setJobIDEndsWith(String value) { this.JobIDEndsWith = value; return this; } public String getJobIDContains() { return JobIDContains; } public JB_MainQuery setJobIDContains(String value) { this.JobIDContains = value; return this; } public String getJobIDLike() { return JobIDLike; } public JB_MainQuery setJobIDLike(String value) { this.JobIDLike = value; return this; } public ArrayList getJobIDBetween() { return JobIDBetween; } public JB_MainQuery setJobIDBetween(ArrayList value) { this.JobIDBetween = value; return this; } public ArrayList getJobIDIn() { return JobIDIn; } public JB_MainQuery setJobIDIn(ArrayList value) { this.JobIDIn = value; return this; } public String getJobNo() { return JobNo; } public JB_MainQuery setJobNo(String value) { this.JobNo = value; return this; } public String getJobNoStartsWith() { return JobNoStartsWith; } public JB_MainQuery setJobNoStartsWith(String value) { this.JobNoStartsWith = value; return this; } public String getJobNoEndsWith() { return JobNoEndsWith; } public JB_MainQuery setJobNoEndsWith(String value) { this.JobNoEndsWith = value; return this; } public String getJobNoContains() { return JobNoContains; } public JB_MainQuery setJobNoContains(String value) { this.JobNoContains = value; return this; } public String getJobNoLike() { return JobNoLike; } public JB_MainQuery setJobNoLike(String value) { this.JobNoLike = value; return this; } public ArrayList getJobNoBetween() { return JobNoBetween; } public JB_MainQuery setJobNoBetween(ArrayList value) { this.JobNoBetween = value; return this; } public ArrayList getJobNoIn() { return JobNoIn; } public JB_MainQuery setJobNoIn(ArrayList value) { this.JobNoIn = value; return this; } public String getDescription() { return Description; } public JB_MainQuery setDescription(String value) { this.Description = value; return this; } public String getDescriptionStartsWith() { return DescriptionStartsWith; } public JB_MainQuery setDescriptionStartsWith(String value) { this.DescriptionStartsWith = value; return this; } public String getDescriptionEndsWith() { return DescriptionEndsWith; } public JB_MainQuery setDescriptionEndsWith(String value) { this.DescriptionEndsWith = value; return this; } public String getDescriptionContains() { return DescriptionContains; } public JB_MainQuery setDescriptionContains(String value) { this.DescriptionContains = value; return this; } public String getDescriptionLike() { return DescriptionLike; } public JB_MainQuery setDescriptionLike(String value) { this.DescriptionLike = value; return this; } public ArrayList getDescriptionBetween() { return DescriptionBetween; } public JB_MainQuery setDescriptionBetween(ArrayList value) { this.DescriptionBetween = value; return this; } public ArrayList getDescriptionIn() { return DescriptionIn; } public JB_MainQuery setDescriptionIn(ArrayList value) { this.DescriptionIn = value; return this; } public String getDebtorID() { return DebtorID; } public JB_MainQuery setDebtorID(String value) { this.DebtorID = value; return this; } public String getDebtorIDStartsWith() { return DebtorIDStartsWith; } public JB_MainQuery setDebtorIDStartsWith(String value) { this.DebtorIDStartsWith = value; return this; } public String getDebtorIDEndsWith() { return DebtorIDEndsWith; } public JB_MainQuery setDebtorIDEndsWith(String value) { this.DebtorIDEndsWith = value; return this; } public String getDebtorIDContains() { return DebtorIDContains; } public JB_MainQuery setDebtorIDContains(String value) { this.DebtorIDContains = value; return this; } public String getDebtorIDLike() { return DebtorIDLike; } public JB_MainQuery setDebtorIDLike(String value) { this.DebtorIDLike = value; return this; } public ArrayList getDebtorIDBetween() { return DebtorIDBetween; } public JB_MainQuery setDebtorIDBetween(ArrayList value) { this.DebtorIDBetween = value; return this; } public ArrayList getDebtorIDIn() { return DebtorIDIn; } public JB_MainQuery setDebtorIDIn(ArrayList value) { this.DebtorIDIn = value; return this; } public String getOrderNo() { return OrderNo; } public JB_MainQuery setOrderNo(String value) { this.OrderNo = value; return this; } public String getOrderNoStartsWith() { return OrderNoStartsWith; } public JB_MainQuery setOrderNoStartsWith(String value) { this.OrderNoStartsWith = value; return this; } public String getOrderNoEndsWith() { return OrderNoEndsWith; } public JB_MainQuery setOrderNoEndsWith(String value) { this.OrderNoEndsWith = value; return this; } public String getOrderNoContains() { return OrderNoContains; } public JB_MainQuery setOrderNoContains(String value) { this.OrderNoContains = value; return this; } public String getOrderNoLike() { return OrderNoLike; } public JB_MainQuery setOrderNoLike(String value) { this.OrderNoLike = value; return this; } public ArrayList getOrderNoBetween() { return OrderNoBetween; } public JB_MainQuery setOrderNoBetween(ArrayList value) { this.OrderNoBetween = value; return this; } public ArrayList getOrderNoIn() { return OrderNoIn; } public JB_MainQuery setOrderNoIn(ArrayList value) { this.OrderNoIn = value; return this; } public Date getStartDate() { return StartDate; } public JB_MainQuery setStartDate(Date value) { this.StartDate = value; return this; } public Date getStartDateGreaterThanOrEqualTo() { return StartDateGreaterThanOrEqualTo; } public JB_MainQuery setStartDateGreaterThanOrEqualTo(Date value) { this.StartDateGreaterThanOrEqualTo = value; return this; } public Date getStartDateGreaterThan() { return StartDateGreaterThan; } public JB_MainQuery setStartDateGreaterThan(Date value) { this.StartDateGreaterThan = value; return this; } public Date getStartDateLessThan() { return StartDateLessThan; } public JB_MainQuery setStartDateLessThan(Date value) { this.StartDateLessThan = value; return this; } public Date getStartDateLessThanOrEqualTo() { return StartDateLessThanOrEqualTo; } public JB_MainQuery setStartDateLessThanOrEqualTo(Date value) { this.StartDateLessThanOrEqualTo = value; return this; } public Date getStartDateNotEqualTo() { return StartDateNotEqualTo; } public JB_MainQuery setStartDateNotEqualTo(Date value) { this.StartDateNotEqualTo = value; return this; } public ArrayList getStartDateBetween() { return StartDateBetween; } public JB_MainQuery setStartDateBetween(ArrayList value) { this.StartDateBetween = value; return this; } public ArrayList getStartDateIn() { return StartDateIn; } public JB_MainQuery setStartDateIn(ArrayList value) { this.StartDateIn = value; return this; } public Date getEstEndDate() { return EstEndDate; } public JB_MainQuery setEstEndDate(Date value) { this.EstEndDate = value; return this; } public Date getEstEndDateGreaterThanOrEqualTo() { return EstEndDateGreaterThanOrEqualTo; } public JB_MainQuery setEstEndDateGreaterThanOrEqualTo(Date value) { this.EstEndDateGreaterThanOrEqualTo = value; return this; } public Date getEstEndDateGreaterThan() { return EstEndDateGreaterThan; } public JB_MainQuery setEstEndDateGreaterThan(Date value) { this.EstEndDateGreaterThan = value; return this; } public Date getEstEndDateLessThan() { return EstEndDateLessThan; } public JB_MainQuery setEstEndDateLessThan(Date value) { this.EstEndDateLessThan = value; return this; } public Date getEstEndDateLessThanOrEqualTo() { return EstEndDateLessThanOrEqualTo; } public JB_MainQuery setEstEndDateLessThanOrEqualTo(Date value) { this.EstEndDateLessThanOrEqualTo = value; return this; } public Date getEstEndDateNotEqualTo() { return EstEndDateNotEqualTo; } public JB_MainQuery setEstEndDateNotEqualTo(Date value) { this.EstEndDateNotEqualTo = value; return this; } public ArrayList getEstEndDateBetween() { return EstEndDateBetween; } public JB_MainQuery setEstEndDateBetween(ArrayList value) { this.EstEndDateBetween = value; return this; } public ArrayList getEstEndDateIn() { return EstEndDateIn; } public JB_MainQuery setEstEndDateIn(ArrayList value) { this.EstEndDateIn = value; return this; } public Date getClosedDate() { return ClosedDate; } public JB_MainQuery setClosedDate(Date value) { this.ClosedDate = value; return this; } public Date getClosedDateGreaterThanOrEqualTo() { return ClosedDateGreaterThanOrEqualTo; } public JB_MainQuery setClosedDateGreaterThanOrEqualTo(Date value) { this.ClosedDateGreaterThanOrEqualTo = value; return this; } public Date getClosedDateGreaterThan() { return ClosedDateGreaterThan; } public JB_MainQuery setClosedDateGreaterThan(Date value) { this.ClosedDateGreaterThan = value; return this; } public Date getClosedDateLessThan() { return ClosedDateLessThan; } public JB_MainQuery setClosedDateLessThan(Date value) { this.ClosedDateLessThan = value; return this; } public Date getClosedDateLessThanOrEqualTo() { return ClosedDateLessThanOrEqualTo; } public JB_MainQuery setClosedDateLessThanOrEqualTo(Date value) { this.ClosedDateLessThanOrEqualTo = value; return this; } public Date getClosedDateNotEqualTo() { return ClosedDateNotEqualTo; } public JB_MainQuery setClosedDateNotEqualTo(Date value) { this.ClosedDateNotEqualTo = value; return this; } public ArrayList getClosedDateBetween() { return ClosedDateBetween; } public JB_MainQuery setClosedDateBetween(ArrayList value) { this.ClosedDateBetween = value; return this; } public ArrayList getClosedDateIn() { return ClosedDateIn; } public JB_MainQuery setClosedDateIn(ArrayList value) { this.ClosedDateIn = value; return this; } public Short getInventorySellType() { return InventorySellType; } public JB_MainQuery setInventorySellType(Short value) { this.InventorySellType = value; return this; } public Short getInventorySellTypeGreaterThanOrEqualTo() { return InventorySellTypeGreaterThanOrEqualTo; } public JB_MainQuery setInventorySellTypeGreaterThanOrEqualTo(Short value) { this.InventorySellTypeGreaterThanOrEqualTo = value; return this; } public Short getInventorySellTypeGreaterThan() { return InventorySellTypeGreaterThan; } public JB_MainQuery setInventorySellTypeGreaterThan(Short value) { this.InventorySellTypeGreaterThan = value; return this; } public Short getInventorySellTypeLessThan() { return InventorySellTypeLessThan; } public JB_MainQuery setInventorySellTypeLessThan(Short value) { this.InventorySellTypeLessThan = value; return this; } public Short getInventorySellTypeLessThanOrEqualTo() { return InventorySellTypeLessThanOrEqualTo; } public JB_MainQuery setInventorySellTypeLessThanOrEqualTo(Short value) { this.InventorySellTypeLessThanOrEqualTo = value; return this; } public Short getInventorySellTypeNotEqualTo() { return InventorySellTypeNotEqualTo; } public JB_MainQuery setInventorySellTypeNotEqualTo(Short value) { this.InventorySellTypeNotEqualTo = value; return this; } public ArrayList getInventorySellTypeBetween() { return InventorySellTypeBetween; } public JB_MainQuery setInventorySellTypeBetween(ArrayList value) { this.InventorySellTypeBetween = value; return this; } public ArrayList getInventorySellTypeIn() { return InventorySellTypeIn; } public JB_MainQuery setInventorySellTypeIn(ArrayList value) { this.InventorySellTypeIn = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public JB_MainQuery setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getLastSavedDateTimeGreaterThanOrEqualTo() { return LastSavedDateTimeGreaterThanOrEqualTo; } public JB_MainQuery setLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.LastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeGreaterThan() { return LastSavedDateTimeGreaterThan; } public JB_MainQuery setLastSavedDateTimeGreaterThan(Date value) { this.LastSavedDateTimeGreaterThan = value; return this; } public Date getLastSavedDateTimeLessThan() { return LastSavedDateTimeLessThan; } public JB_MainQuery setLastSavedDateTimeLessThan(Date value) { this.LastSavedDateTimeLessThan = value; return this; } public Date getLastSavedDateTimeLessThanOrEqualTo() { return LastSavedDateTimeLessThanOrEqualTo; } public JB_MainQuery setLastSavedDateTimeLessThanOrEqualTo(Date value) { this.LastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeNotEqualTo() { return LastSavedDateTimeNotEqualTo; } public JB_MainQuery setLastSavedDateTimeNotEqualTo(Date value) { this.LastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getLastSavedDateTimeBetween() { return LastSavedDateTimeBetween; } public JB_MainQuery setLastSavedDateTimeBetween(ArrayList value) { this.LastSavedDateTimeBetween = value; return this; } public ArrayList getLastSavedDateTimeIn() { return LastSavedDateTimeIn; } public JB_MainQuery setLastSavedDateTimeIn(ArrayList value) { this.LastSavedDateTimeIn = value; return this; } public Boolean getIsTemplate() { return IsTemplate; } public JB_MainQuery setIsTemplate(Boolean value) { this.IsTemplate = value; return this; } public BigDecimal getContractAmount() { return ContractAmount; } public JB_MainQuery setContractAmount(BigDecimal value) { this.ContractAmount = value; return this; } public BigDecimal getContractAmountGreaterThanOrEqualTo() { return ContractAmountGreaterThanOrEqualTo; } public JB_MainQuery setContractAmountGreaterThanOrEqualTo(BigDecimal value) { this.ContractAmountGreaterThanOrEqualTo = value; return this; } public BigDecimal getContractAmountGreaterThan() { return ContractAmountGreaterThan; } public JB_MainQuery setContractAmountGreaterThan(BigDecimal value) { this.ContractAmountGreaterThan = value; return this; } public BigDecimal getContractAmountLessThan() { return ContractAmountLessThan; } public JB_MainQuery setContractAmountLessThan(BigDecimal value) { this.ContractAmountLessThan = value; return this; } public BigDecimal getContractAmountLessThanOrEqualTo() { return ContractAmountLessThanOrEqualTo; } public JB_MainQuery setContractAmountLessThanOrEqualTo(BigDecimal value) { this.ContractAmountLessThanOrEqualTo = value; return this; } public BigDecimal getContractAmountNotEqualTo() { return ContractAmountNotEqualTo; } public JB_MainQuery setContractAmountNotEqualTo(BigDecimal value) { this.ContractAmountNotEqualTo = value; return this; } public ArrayList getContractAmountBetween() { return ContractAmountBetween; } public JB_MainQuery setContractAmountBetween(ArrayList value) { this.ContractAmountBetween = value; return this; } public ArrayList getContractAmountIn() { return ContractAmountIn; } public JB_MainQuery setContractAmountIn(ArrayList value) { this.ContractAmountIn = value; return this; } public BigDecimal getMarkUpMaterials() { return MarkUpMaterials; } public JB_MainQuery setMarkUpMaterials(BigDecimal value) { this.MarkUpMaterials = value; return this; } public BigDecimal getMarkUpMaterialsGreaterThanOrEqualTo() { return MarkUpMaterialsGreaterThanOrEqualTo; } public JB_MainQuery setMarkUpMaterialsGreaterThanOrEqualTo(BigDecimal value) { this.MarkUpMaterialsGreaterThanOrEqualTo = value; return this; } public BigDecimal getMarkUpMaterialsGreaterThan() { return MarkUpMaterialsGreaterThan; } public JB_MainQuery setMarkUpMaterialsGreaterThan(BigDecimal value) { this.MarkUpMaterialsGreaterThan = value; return this; } public BigDecimal getMarkUpMaterialsLessThan() { return MarkUpMaterialsLessThan; } public JB_MainQuery setMarkUpMaterialsLessThan(BigDecimal value) { this.MarkUpMaterialsLessThan = value; return this; } public BigDecimal getMarkUpMaterialsLessThanOrEqualTo() { return MarkUpMaterialsLessThanOrEqualTo; } public JB_MainQuery setMarkUpMaterialsLessThanOrEqualTo(BigDecimal value) { this.MarkUpMaterialsLessThanOrEqualTo = value; return this; } public BigDecimal getMarkUpMaterialsNotEqualTo() { return MarkUpMaterialsNotEqualTo; } public JB_MainQuery setMarkUpMaterialsNotEqualTo(BigDecimal value) { this.MarkUpMaterialsNotEqualTo = value; return this; } public ArrayList getMarkUpMaterialsBetween() { return MarkUpMaterialsBetween; } public JB_MainQuery setMarkUpMaterialsBetween(ArrayList value) { this.MarkUpMaterialsBetween = value; return this; } public ArrayList getMarkUpMaterialsIn() { return MarkUpMaterialsIn; } public JB_MainQuery setMarkUpMaterialsIn(ArrayList value) { this.MarkUpMaterialsIn = value; return this; } public BigDecimal getMarkUpLabour() { return MarkUpLabour; } public JB_MainQuery setMarkUpLabour(BigDecimal value) { this.MarkUpLabour = value; return this; } public BigDecimal getMarkUpLabourGreaterThanOrEqualTo() { return MarkUpLabourGreaterThanOrEqualTo; } public JB_MainQuery setMarkUpLabourGreaterThanOrEqualTo(BigDecimal value) { this.MarkUpLabourGreaterThanOrEqualTo = value; return this; } public BigDecimal getMarkUpLabourGreaterThan() { return MarkUpLabourGreaterThan; } public JB_MainQuery setMarkUpLabourGreaterThan(BigDecimal value) { this.MarkUpLabourGreaterThan = value; return this; } public BigDecimal getMarkUpLabourLessThan() { return MarkUpLabourLessThan; } public JB_MainQuery setMarkUpLabourLessThan(BigDecimal value) { this.MarkUpLabourLessThan = value; return this; } public BigDecimal getMarkUpLabourLessThanOrEqualTo() { return MarkUpLabourLessThanOrEqualTo; } public JB_MainQuery setMarkUpLabourLessThanOrEqualTo(BigDecimal value) { this.MarkUpLabourLessThanOrEqualTo = value; return this; } public BigDecimal getMarkUpLabourNotEqualTo() { return MarkUpLabourNotEqualTo; } public JB_MainQuery setMarkUpLabourNotEqualTo(BigDecimal value) { this.MarkUpLabourNotEqualTo = value; return this; } public ArrayList getMarkUpLabourBetween() { return MarkUpLabourBetween; } public JB_MainQuery setMarkUpLabourBetween(ArrayList value) { this.MarkUpLabourBetween = value; return this; } public ArrayList getMarkUpLabourIn() { return MarkUpLabourIn; } public JB_MainQuery setMarkUpLabourIn(ArrayList value) { this.MarkUpLabourIn = value; return this; } public BigDecimal getMarkUpSubContract() { return MarkUpSubContract; } public JB_MainQuery setMarkUpSubContract(BigDecimal value) { this.MarkUpSubContract = value; return this; } public BigDecimal getMarkUpSubContractGreaterThanOrEqualTo() { return MarkUpSubContractGreaterThanOrEqualTo; } public JB_MainQuery setMarkUpSubContractGreaterThanOrEqualTo(BigDecimal value) { this.MarkUpSubContractGreaterThanOrEqualTo = value; return this; } public BigDecimal getMarkUpSubContractGreaterThan() { return MarkUpSubContractGreaterThan; } public JB_MainQuery setMarkUpSubContractGreaterThan(BigDecimal value) { this.MarkUpSubContractGreaterThan = value; return this; } public BigDecimal getMarkUpSubContractLessThan() { return MarkUpSubContractLessThan; } public JB_MainQuery setMarkUpSubContractLessThan(BigDecimal value) { this.MarkUpSubContractLessThan = value; return this; } public BigDecimal getMarkUpSubContractLessThanOrEqualTo() { return MarkUpSubContractLessThanOrEqualTo; } public JB_MainQuery setMarkUpSubContractLessThanOrEqualTo(BigDecimal value) { this.MarkUpSubContractLessThanOrEqualTo = value; return this; } public BigDecimal getMarkUpSubContractNotEqualTo() { return MarkUpSubContractNotEqualTo; } public JB_MainQuery setMarkUpSubContractNotEqualTo(BigDecimal value) { this.MarkUpSubContractNotEqualTo = value; return this; } public ArrayList getMarkUpSubContractBetween() { return MarkUpSubContractBetween; } public JB_MainQuery setMarkUpSubContractBetween(ArrayList value) { this.MarkUpSubContractBetween = value; return this; } public ArrayList getMarkUpSubContractIn() { return MarkUpSubContractIn; } public JB_MainQuery setMarkUpSubContractIn(ArrayList value) { this.MarkUpSubContractIn = value; return this; } public BigDecimal getMarkUpResource() { return MarkUpResource; } public JB_MainQuery setMarkUpResource(BigDecimal value) { this.MarkUpResource = value; return this; } public BigDecimal getMarkUpResourceGreaterThanOrEqualTo() { return MarkUpResourceGreaterThanOrEqualTo; } public JB_MainQuery setMarkUpResourceGreaterThanOrEqualTo(BigDecimal value) { this.MarkUpResourceGreaterThanOrEqualTo = value; return this; } public BigDecimal getMarkUpResourceGreaterThan() { return MarkUpResourceGreaterThan; } public JB_MainQuery setMarkUpResourceGreaterThan(BigDecimal value) { this.MarkUpResourceGreaterThan = value; return this; } public BigDecimal getMarkUpResourceLessThan() { return MarkUpResourceLessThan; } public JB_MainQuery setMarkUpResourceLessThan(BigDecimal value) { this.MarkUpResourceLessThan = value; return this; } public BigDecimal getMarkUpResourceLessThanOrEqualTo() { return MarkUpResourceLessThanOrEqualTo; } public JB_MainQuery setMarkUpResourceLessThanOrEqualTo(BigDecimal value) { this.MarkUpResourceLessThanOrEqualTo = value; return this; } public BigDecimal getMarkUpResourceNotEqualTo() { return MarkUpResourceNotEqualTo; } public JB_MainQuery setMarkUpResourceNotEqualTo(BigDecimal value) { this.MarkUpResourceNotEqualTo = value; return this; } public ArrayList getMarkUpResourceBetween() { return MarkUpResourceBetween; } public JB_MainQuery setMarkUpResourceBetween(ArrayList value) { this.MarkUpResourceBetween = value; return this; } public ArrayList getMarkUpResourceIn() { return MarkUpResourceIn; } public JB_MainQuery setMarkUpResourceIn(ArrayList value) { this.MarkUpResourceIn = value; return this; } public Short getRetentionType() { return RetentionType; } public JB_MainQuery setRetentionType(Short value) { this.RetentionType = value; return this; } public Short getRetentionTypeGreaterThanOrEqualTo() { return RetentionTypeGreaterThanOrEqualTo; } public JB_MainQuery setRetentionTypeGreaterThanOrEqualTo(Short value) { this.RetentionTypeGreaterThanOrEqualTo = value; return this; } public Short getRetentionTypeGreaterThan() { return RetentionTypeGreaterThan; } public JB_MainQuery setRetentionTypeGreaterThan(Short value) { this.RetentionTypeGreaterThan = value; return this; } public Short getRetentionTypeLessThan() { return RetentionTypeLessThan; } public JB_MainQuery setRetentionTypeLessThan(Short value) { this.RetentionTypeLessThan = value; return this; } public Short getRetentionTypeLessThanOrEqualTo() { return RetentionTypeLessThanOrEqualTo; } public JB_MainQuery setRetentionTypeLessThanOrEqualTo(Short value) { this.RetentionTypeLessThanOrEqualTo = value; return this; } public Short getRetentionTypeNotEqualTo() { return RetentionTypeNotEqualTo; } public JB_MainQuery setRetentionTypeNotEqualTo(Short value) { this.RetentionTypeNotEqualTo = value; return this; } public ArrayList getRetentionTypeBetween() { return RetentionTypeBetween; } public JB_MainQuery setRetentionTypeBetween(ArrayList value) { this.RetentionTypeBetween = value; return this; } public ArrayList getRetentionTypeIn() { return RetentionTypeIn; } public JB_MainQuery setRetentionTypeIn(ArrayList value) { this.RetentionTypeIn = value; return this; } public BigDecimal getRetentionValue() { return RetentionValue; } public JB_MainQuery setRetentionValue(BigDecimal value) { this.RetentionValue = value; return this; } public BigDecimal getRetentionValueGreaterThanOrEqualTo() { return RetentionValueGreaterThanOrEqualTo; } public JB_MainQuery setRetentionValueGreaterThanOrEqualTo(BigDecimal value) { this.RetentionValueGreaterThanOrEqualTo = value; return this; } public BigDecimal getRetentionValueGreaterThan() { return RetentionValueGreaterThan; } public JB_MainQuery setRetentionValueGreaterThan(BigDecimal value) { this.RetentionValueGreaterThan = value; return this; } public BigDecimal getRetentionValueLessThan() { return RetentionValueLessThan; } public JB_MainQuery setRetentionValueLessThan(BigDecimal value) { this.RetentionValueLessThan = value; return this; } public BigDecimal getRetentionValueLessThanOrEqualTo() { return RetentionValueLessThanOrEqualTo; } public JB_MainQuery setRetentionValueLessThanOrEqualTo(BigDecimal value) { this.RetentionValueLessThanOrEqualTo = value; return this; } public BigDecimal getRetentionValueNotEqualTo() { return RetentionValueNotEqualTo; } public JB_MainQuery setRetentionValueNotEqualTo(BigDecimal value) { this.RetentionValueNotEqualTo = value; return this; } public ArrayList getRetentionValueBetween() { return RetentionValueBetween; } public JB_MainQuery setRetentionValueBetween(ArrayList value) { this.RetentionValueBetween = value; return this; } public ArrayList getRetentionValueIn() { return RetentionValueIn; } public JB_MainQuery setRetentionValueIn(ArrayList value) { this.RetentionValueIn = value; return this; } public Boolean isGstApplicable() { return GstApplicable; } public JB_MainQuery setGstApplicable(Boolean value) { this.GstApplicable = value; return this; } public Short getEstimateType() { return EstimateType; } public JB_MainQuery setEstimateType(Short value) { this.EstimateType = value; return this; } public Short getEstimateTypeGreaterThanOrEqualTo() { return EstimateTypeGreaterThanOrEqualTo; } public JB_MainQuery setEstimateTypeGreaterThanOrEqualTo(Short value) { this.EstimateTypeGreaterThanOrEqualTo = value; return this; } public Short getEstimateTypeGreaterThan() { return EstimateTypeGreaterThan; } public JB_MainQuery setEstimateTypeGreaterThan(Short value) { this.EstimateTypeGreaterThan = value; return this; } public Short getEstimateTypeLessThan() { return EstimateTypeLessThan; } public JB_MainQuery setEstimateTypeLessThan(Short value) { this.EstimateTypeLessThan = value; return this; } public Short getEstimateTypeLessThanOrEqualTo() { return EstimateTypeLessThanOrEqualTo; } public JB_MainQuery setEstimateTypeLessThanOrEqualTo(Short value) { this.EstimateTypeLessThanOrEqualTo = value; return this; } public Short getEstimateTypeNotEqualTo() { return EstimateTypeNotEqualTo; } public JB_MainQuery setEstimateTypeNotEqualTo(Short value) { this.EstimateTypeNotEqualTo = value; return this; } public ArrayList getEstimateTypeBetween() { return EstimateTypeBetween; } public JB_MainQuery setEstimateTypeBetween(ArrayList value) { this.EstimateTypeBetween = value; return this; } public ArrayList getEstimateTypeIn() { return EstimateTypeIn; } public JB_MainQuery setEstimateTypeIn(ArrayList value) { this.EstimateTypeIn = value; return this; } public String getWarehouseID() { return WarehouseID; } public JB_MainQuery setWarehouseID(String value) { this.WarehouseID = value; return this; } public String getWarehouseIDStartsWith() { return WarehouseIDStartsWith; } public JB_MainQuery setWarehouseIDStartsWith(String value) { this.WarehouseIDStartsWith = value; return this; } public String getWarehouseIDEndsWith() { return WarehouseIDEndsWith; } public JB_MainQuery setWarehouseIDEndsWith(String value) { this.WarehouseIDEndsWith = value; return this; } public String getWarehouseIDContains() { return WarehouseIDContains; } public JB_MainQuery setWarehouseIDContains(String value) { this.WarehouseIDContains = value; return this; } public String getWarehouseIDLike() { return WarehouseIDLike; } public JB_MainQuery setWarehouseIDLike(String value) { this.WarehouseIDLike = value; return this; } public ArrayList getWarehouseIDBetween() { return WarehouseIDBetween; } public JB_MainQuery setWarehouseIDBetween(ArrayList value) { this.WarehouseIDBetween = value; return this; } public ArrayList getWarehouseIDIn() { return WarehouseIDIn; } public JB_MainQuery setWarehouseIDIn(ArrayList value) { this.WarehouseIDIn = value; return this; } public String getProductID() { return ProductID; } public JB_MainQuery setProductID(String value) { this.ProductID = value; return this; } public String getProductIDStartsWith() { return ProductIDStartsWith; } public JB_MainQuery setProductIDStartsWith(String value) { this.ProductIDStartsWith = value; return this; } public String getProductIDEndsWith() { return ProductIDEndsWith; } public JB_MainQuery setProductIDEndsWith(String value) { this.ProductIDEndsWith = value; return this; } public String getProductIDContains() { return ProductIDContains; } public JB_MainQuery setProductIDContains(String value) { this.ProductIDContains = value; return this; } public String getProductIDLike() { return ProductIDLike; } public JB_MainQuery setProductIDLike(String value) { this.ProductIDLike = value; return this; } public ArrayList getProductIDBetween() { return ProductIDBetween; } public JB_MainQuery setProductIDBetween(ArrayList value) { this.ProductIDBetween = value; return this; } public ArrayList getProductIDIn() { return ProductIDIn; } public JB_MainQuery setProductIDIn(ArrayList value) { this.ProductIDIn = value; return this; } public String getProductDesc() { return ProductDesc; } public JB_MainQuery setProductDesc(String value) { this.ProductDesc = value; return this; } public String getProductDescStartsWith() { return ProductDescStartsWith; } public JB_MainQuery setProductDescStartsWith(String value) { this.ProductDescStartsWith = value; return this; } public String getProductDescEndsWith() { return ProductDescEndsWith; } public JB_MainQuery setProductDescEndsWith(String value) { this.ProductDescEndsWith = value; return this; } public String getProductDescContains() { return ProductDescContains; } public JB_MainQuery setProductDescContains(String value) { this.ProductDescContains = value; return this; } public String getProductDescLike() { return ProductDescLike; } public JB_MainQuery setProductDescLike(String value) { this.ProductDescLike = value; return this; } public ArrayList getProductDescBetween() { return ProductDescBetween; } public JB_MainQuery setProductDescBetween(ArrayList value) { this.ProductDescBetween = value; return this; } public ArrayList getProductDescIn() { return ProductDescIn; } public JB_MainQuery setProductDescIn(ArrayList value) { this.ProductDescIn = value; return this; } public BigDecimal getProductQty() { return ProductQty; } public JB_MainQuery setProductQty(BigDecimal value) { this.ProductQty = value; return this; } public BigDecimal getProductQtyGreaterThanOrEqualTo() { return ProductQtyGreaterThanOrEqualTo; } public JB_MainQuery setProductQtyGreaterThanOrEqualTo(BigDecimal value) { this.ProductQtyGreaterThanOrEqualTo = value; return this; } public BigDecimal getProductQtyGreaterThan() { return ProductQtyGreaterThan; } public JB_MainQuery setProductQtyGreaterThan(BigDecimal value) { this.ProductQtyGreaterThan = value; return this; } public BigDecimal getProductQtyLessThan() { return ProductQtyLessThan; } public JB_MainQuery setProductQtyLessThan(BigDecimal value) { this.ProductQtyLessThan = value; return this; } public BigDecimal getProductQtyLessThanOrEqualTo() { return ProductQtyLessThanOrEqualTo; } public JB_MainQuery setProductQtyLessThanOrEqualTo(BigDecimal value) { this.ProductQtyLessThanOrEqualTo = value; return this; } public BigDecimal getProductQtyNotEqualTo() { return ProductQtyNotEqualTo; } public JB_MainQuery setProductQtyNotEqualTo(BigDecimal value) { this.ProductQtyNotEqualTo = value; return this; } public ArrayList getProductQtyBetween() { return ProductQtyBetween; } public JB_MainQuery setProductQtyBetween(ArrayList value) { this.ProductQtyBetween = value; return this; } public ArrayList getProductQtyIn() { return ProductQtyIn; } public JB_MainQuery setProductQtyIn(ArrayList value) { this.ProductQtyIn = value; return this; } public Date getEstStartDate() { return EstStartDate; } public JB_MainQuery setEstStartDate(Date value) { this.EstStartDate = value; return this; } public Date getEstStartDateGreaterThanOrEqualTo() { return EstStartDateGreaterThanOrEqualTo; } public JB_MainQuery setEstStartDateGreaterThanOrEqualTo(Date value) { this.EstStartDateGreaterThanOrEqualTo = value; return this; } public Date getEstStartDateGreaterThan() { return EstStartDateGreaterThan; } public JB_MainQuery setEstStartDateGreaterThan(Date value) { this.EstStartDateGreaterThan = value; return this; } public Date getEstStartDateLessThan() { return EstStartDateLessThan; } public JB_MainQuery setEstStartDateLessThan(Date value) { this.EstStartDateLessThan = value; return this; } public Date getEstStartDateLessThanOrEqualTo() { return EstStartDateLessThanOrEqualTo; } public JB_MainQuery setEstStartDateLessThanOrEqualTo(Date value) { this.EstStartDateLessThanOrEqualTo = value; return this; } public Date getEstStartDateNotEqualTo() { return EstStartDateNotEqualTo; } public JB_MainQuery setEstStartDateNotEqualTo(Date value) { this.EstStartDateNotEqualTo = value; return this; } public ArrayList getEstStartDateBetween() { return EstStartDateBetween; } public JB_MainQuery setEstStartDateBetween(ArrayList value) { this.EstStartDateBetween = value; return this; } public ArrayList getEstStartDateIn() { return EstStartDateIn; } public JB_MainQuery setEstStartDateIn(ArrayList value) { this.EstStartDateIn = value; return this; } public String getClassificationID() { return ClassificationID; } public JB_MainQuery setClassificationID(String value) { this.ClassificationID = value; return this; } public String getClassificationIDStartsWith() { return ClassificationIDStartsWith; } public JB_MainQuery setClassificationIDStartsWith(String value) { this.ClassificationIDStartsWith = value; return this; } public String getClassificationIDEndsWith() { return ClassificationIDEndsWith; } public JB_MainQuery setClassificationIDEndsWith(String value) { this.ClassificationIDEndsWith = value; return this; } public String getClassificationIDContains() { return ClassificationIDContains; } public JB_MainQuery setClassificationIDContains(String value) { this.ClassificationIDContains = value; return this; } public String getClassificationIDLike() { return ClassificationIDLike; } public JB_MainQuery setClassificationIDLike(String value) { this.ClassificationIDLike = value; return this; } public ArrayList getClassificationIDBetween() { return ClassificationIDBetween; } public JB_MainQuery setClassificationIDBetween(ArrayList value) { this.ClassificationIDBetween = value; return this; } public ArrayList getClassificationIDIn() { return ClassificationIDIn; } public JB_MainQuery setClassificationIDIn(ArrayList value) { this.ClassificationIDIn = value; return this; } public String getCnContactRecID() { return CN_Contact_RecID; } public JB_MainQuery setCnContactRecID(String value) { this.CN_Contact_RecID = value; return this; } public String getCnContactRecIDStartsWith() { return CN_Contact_RecIDStartsWith; } public JB_MainQuery setCnContactRecIDStartsWith(String value) { this.CN_Contact_RecIDStartsWith = value; return this; } public String getCnContactRecIDEndsWith() { return CN_Contact_RecIDEndsWith; } public JB_MainQuery setCnContactRecIDEndsWith(String value) { this.CN_Contact_RecIDEndsWith = value; return this; } public String getCnContactRecIDContains() { return CN_Contact_RecIDContains; } public JB_MainQuery setCnContactRecIDContains(String value) { this.CN_Contact_RecIDContains = value; return this; } public String getCnContactRecIDLike() { return CN_Contact_RecIDLike; } public JB_MainQuery setCnContactRecIDLike(String value) { this.CN_Contact_RecIDLike = value; return this; } public ArrayList getCnContactRecIDBetween() { return CN_Contact_RecIDBetween; } public JB_MainQuery setCnContactRecIDBetween(ArrayList value) { this.CN_Contact_RecIDBetween = value; return this; } public ArrayList getCnContactRecIDIn() { return CN_Contact_RecIDIn; } public JB_MainQuery setCnContactRecIDIn(ArrayList value) { this.CN_Contact_RecIDIn = value; return this; } public Short getJobStatus() { return JobStatus; } public JB_MainQuery setJobStatus(Short value) { this.JobStatus = value; return this; } public Short getJobStatusGreaterThanOrEqualTo() { return JobStatusGreaterThanOrEqualTo; } public JB_MainQuery setJobStatusGreaterThanOrEqualTo(Short value) { this.JobStatusGreaterThanOrEqualTo = value; return this; } public Short getJobStatusGreaterThan() { return JobStatusGreaterThan; } public JB_MainQuery setJobStatusGreaterThan(Short value) { this.JobStatusGreaterThan = value; return this; } public Short getJobStatusLessThan() { return JobStatusLessThan; } public JB_MainQuery setJobStatusLessThan(Short value) { this.JobStatusLessThan = value; return this; } public Short getJobStatusLessThanOrEqualTo() { return JobStatusLessThanOrEqualTo; } public JB_MainQuery setJobStatusLessThanOrEqualTo(Short value) { this.JobStatusLessThanOrEqualTo = value; return this; } public Short getJobStatusNotEqualTo() { return JobStatusNotEqualTo; } public JB_MainQuery setJobStatusNotEqualTo(Short value) { this.JobStatusNotEqualTo = value; return this; } public ArrayList getJobStatusBetween() { return JobStatusBetween; } public JB_MainQuery setJobStatusBetween(ArrayList value) { this.JobStatusBetween = value; return this; } public ArrayList getJobStatusIn() { return JobStatusIn; } public JB_MainQuery setJobStatusIn(ArrayList value) { this.JobStatusIn = value; return this; } public String getJbGroupsRecID() { return JB_Groups_RecID; } public JB_MainQuery setJbGroupsRecID(String value) { this.JB_Groups_RecID = value; return this; } public String getJbGroupsRecIDStartsWith() { return JB_Groups_RecIDStartsWith; } public JB_MainQuery setJbGroupsRecIDStartsWith(String value) { this.JB_Groups_RecIDStartsWith = value; return this; } public String getJbGroupsRecIDEndsWith() { return JB_Groups_RecIDEndsWith; } public JB_MainQuery setJbGroupsRecIDEndsWith(String value) { this.JB_Groups_RecIDEndsWith = value; return this; } public String getJbGroupsRecIDContains() { return JB_Groups_RecIDContains; } public JB_MainQuery setJbGroupsRecIDContains(String value) { this.JB_Groups_RecIDContains = value; return this; } public String getJbGroupsRecIDLike() { return JB_Groups_RecIDLike; } public JB_MainQuery setJbGroupsRecIDLike(String value) { this.JB_Groups_RecIDLike = value; return this; } public ArrayList getJbGroupsRecIDBetween() { return JB_Groups_RecIDBetween; } public JB_MainQuery setJbGroupsRecIDBetween(ArrayList value) { this.JB_Groups_RecIDBetween = value; return this; } public ArrayList getJbGroupsRecIDIn() { return JB_Groups_RecIDIn; } public JB_MainQuery setJbGroupsRecIDIn(ArrayList value) { this.JB_Groups_RecIDIn = value; return this; } public String getJbStatusesRecID() { return JB_Statuses_RecID; } public JB_MainQuery setJbStatusesRecID(String value) { this.JB_Statuses_RecID = value; return this; } public String getJbStatusesRecIDStartsWith() { return JB_Statuses_RecIDStartsWith; } public JB_MainQuery setJbStatusesRecIDStartsWith(String value) { this.JB_Statuses_RecIDStartsWith = value; return this; } public String getJbStatusesRecIDEndsWith() { return JB_Statuses_RecIDEndsWith; } public JB_MainQuery setJbStatusesRecIDEndsWith(String value) { this.JB_Statuses_RecIDEndsWith = value; return this; } public String getJbStatusesRecIDContains() { return JB_Statuses_RecIDContains; } public JB_MainQuery setJbStatusesRecIDContains(String value) { this.JB_Statuses_RecIDContains = value; return this; } public String getJbStatusesRecIDLike() { return JB_Statuses_RecIDLike; } public JB_MainQuery setJbStatusesRecIDLike(String value) { this.JB_Statuses_RecIDLike = value; return this; } public ArrayList getJbStatusesRecIDBetween() { return JB_Statuses_RecIDBetween; } public JB_MainQuery setJbStatusesRecIDBetween(ArrayList value) { this.JB_Statuses_RecIDBetween = value; return this; } public ArrayList getJbStatusesRecIDIn() { return JB_Statuses_RecIDIn; } public JB_MainQuery setJbStatusesRecIDIn(ArrayList value) { this.JB_Statuses_RecIDIn = value; return this; } public String getJbPrioritiesRecID() { return JB_Priorities_RecID; } public JB_MainQuery setJbPrioritiesRecID(String value) { this.JB_Priorities_RecID = value; return this; } public String getJbPrioritiesRecIDStartsWith() { return JB_Priorities_RecIDStartsWith; } public JB_MainQuery setJbPrioritiesRecIDStartsWith(String value) { this.JB_Priorities_RecIDStartsWith = value; return this; } public String getJbPrioritiesRecIDEndsWith() { return JB_Priorities_RecIDEndsWith; } public JB_MainQuery setJbPrioritiesRecIDEndsWith(String value) { this.JB_Priorities_RecIDEndsWith = value; return this; } public String getJbPrioritiesRecIDContains() { return JB_Priorities_RecIDContains; } public JB_MainQuery setJbPrioritiesRecIDContains(String value) { this.JB_Priorities_RecIDContains = value; return this; } public String getJbPrioritiesRecIDLike() { return JB_Priorities_RecIDLike; } public JB_MainQuery setJbPrioritiesRecIDLike(String value) { this.JB_Priorities_RecIDLike = value; return this; } public ArrayList getJbPrioritiesRecIDBetween() { return JB_Priorities_RecIDBetween; } public JB_MainQuery setJbPrioritiesRecIDBetween(ArrayList value) { this.JB_Priorities_RecIDBetween = value; return this; } public ArrayList getJbPrioritiesRecIDIn() { return JB_Priorities_RecIDIn; } public JB_MainQuery setJbPrioritiesRecIDIn(ArrayList value) { this.JB_Priorities_RecIDIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class JB_NotesQuery extends QueryDb implements IReturn> { public String RecID = null; public String RecIDStartsWith = null; public String RecIDEndsWith = null; public String RecIDContains = null; public String RecIDLike = null; public ArrayList RecIDBetween = null; public ArrayList RecIDIn = null; public String JB_Main_RecID = null; public String JB_Main_RecIDStartsWith = null; public String JB_Main_RecIDEndsWith = null; public String JB_Main_RecIDContains = null; public String JB_Main_RecIDLike = null; public ArrayList JB_Main_RecIDBetween = null; public ArrayList JB_Main_RecIDIn = null; public String NoteTypeID = null; public String NoteTypeIDStartsWith = null; public String NoteTypeIDEndsWith = null; public String NoteTypeIDContains = null; public String NoteTypeIDLike = null; public ArrayList NoteTypeIDBetween = null; public ArrayList NoteTypeIDIn = null; public Date LastSavedDateTime = null; public Date LastSavedDateTimeGreaterThanOrEqualTo = null; public Date LastSavedDateTimeGreaterThan = null; public Date LastSavedDateTimeLessThan = null; public Date LastSavedDateTimeLessThanOrEqualTo = null; public Date LastSavedDateTimeNotEqualTo = null; public ArrayList LastSavedDateTimeBetween = null; public ArrayList LastSavedDateTimeIn = null; public String LastSavedByStaffID = null; public String LastSavedByStaffIDStartsWith = null; public String LastSavedByStaffIDEndsWith = null; public String LastSavedByStaffIDContains = null; public String LastSavedByStaffIDLike = null; public ArrayList LastSavedByStaffIDBetween = null; public ArrayList LastSavedByStaffIDIn = null; public String NoteText = null; public String NoteTextStartsWith = null; public String NoteTextEndsWith = null; public String NoteTextContains = null; public String NoteTextLike = null; public ArrayList NoteTextBetween = null; public ArrayList NoteTextIn = null; public Integer ItemNo = null; public Integer ItemNoGreaterThanOrEqualTo = null; public Integer ItemNoGreaterThan = null; public Integer ItemNoLessThan = null; public Integer ItemNoLessThanOrEqualTo = null; public Integer ItemNoNotEqualTo = null; public ArrayList ItemNoBetween = null; public ArrayList ItemNoIn = null; public String getRecID() { return RecID; } public JB_NotesQuery setRecID(String value) { this.RecID = value; return this; } public String getRecIDStartsWith() { return RecIDStartsWith; } public JB_NotesQuery setRecIDStartsWith(String value) { this.RecIDStartsWith = value; return this; } public String getRecIDEndsWith() { return RecIDEndsWith; } public JB_NotesQuery setRecIDEndsWith(String value) { this.RecIDEndsWith = value; return this; } public String getRecIDContains() { return RecIDContains; } public JB_NotesQuery setRecIDContains(String value) { this.RecIDContains = value; return this; } public String getRecIDLike() { return RecIDLike; } public JB_NotesQuery setRecIDLike(String value) { this.RecIDLike = value; return this; } public ArrayList getRecIDBetween() { return RecIDBetween; } public JB_NotesQuery setRecIDBetween(ArrayList value) { this.RecIDBetween = value; return this; } public ArrayList getRecIDIn() { return RecIDIn; } public JB_NotesQuery setRecIDIn(ArrayList value) { this.RecIDIn = value; return this; } public String getJbMainRecID() { return JB_Main_RecID; } public JB_NotesQuery setJbMainRecID(String value) { this.JB_Main_RecID = value; return this; } public String getJbMainRecIDStartsWith() { return JB_Main_RecIDStartsWith; } public JB_NotesQuery setJbMainRecIDStartsWith(String value) { this.JB_Main_RecIDStartsWith = value; return this; } public String getJbMainRecIDEndsWith() { return JB_Main_RecIDEndsWith; } public JB_NotesQuery setJbMainRecIDEndsWith(String value) { this.JB_Main_RecIDEndsWith = value; return this; } public String getJbMainRecIDContains() { return JB_Main_RecIDContains; } public JB_NotesQuery setJbMainRecIDContains(String value) { this.JB_Main_RecIDContains = value; return this; } public String getJbMainRecIDLike() { return JB_Main_RecIDLike; } public JB_NotesQuery setJbMainRecIDLike(String value) { this.JB_Main_RecIDLike = value; return this; } public ArrayList getJbMainRecIDBetween() { return JB_Main_RecIDBetween; } public JB_NotesQuery setJbMainRecIDBetween(ArrayList value) { this.JB_Main_RecIDBetween = value; return this; } public ArrayList getJbMainRecIDIn() { return JB_Main_RecIDIn; } public JB_NotesQuery setJbMainRecIDIn(ArrayList value) { this.JB_Main_RecIDIn = value; return this; } public String getNoteTypeID() { return NoteTypeID; } public JB_NotesQuery setNoteTypeID(String value) { this.NoteTypeID = value; return this; } public String getNoteTypeIDStartsWith() { return NoteTypeIDStartsWith; } public JB_NotesQuery setNoteTypeIDStartsWith(String value) { this.NoteTypeIDStartsWith = value; return this; } public String getNoteTypeIDEndsWith() { return NoteTypeIDEndsWith; } public JB_NotesQuery setNoteTypeIDEndsWith(String value) { this.NoteTypeIDEndsWith = value; return this; } public String getNoteTypeIDContains() { return NoteTypeIDContains; } public JB_NotesQuery setNoteTypeIDContains(String value) { this.NoteTypeIDContains = value; return this; } public String getNoteTypeIDLike() { return NoteTypeIDLike; } public JB_NotesQuery setNoteTypeIDLike(String value) { this.NoteTypeIDLike = value; return this; } public ArrayList getNoteTypeIDBetween() { return NoteTypeIDBetween; } public JB_NotesQuery setNoteTypeIDBetween(ArrayList value) { this.NoteTypeIDBetween = value; return this; } public ArrayList getNoteTypeIDIn() { return NoteTypeIDIn; } public JB_NotesQuery setNoteTypeIDIn(ArrayList value) { this.NoteTypeIDIn = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public JB_NotesQuery setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getLastSavedDateTimeGreaterThanOrEqualTo() { return LastSavedDateTimeGreaterThanOrEqualTo; } public JB_NotesQuery setLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.LastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeGreaterThan() { return LastSavedDateTimeGreaterThan; } public JB_NotesQuery setLastSavedDateTimeGreaterThan(Date value) { this.LastSavedDateTimeGreaterThan = value; return this; } public Date getLastSavedDateTimeLessThan() { return LastSavedDateTimeLessThan; } public JB_NotesQuery setLastSavedDateTimeLessThan(Date value) { this.LastSavedDateTimeLessThan = value; return this; } public Date getLastSavedDateTimeLessThanOrEqualTo() { return LastSavedDateTimeLessThanOrEqualTo; } public JB_NotesQuery setLastSavedDateTimeLessThanOrEqualTo(Date value) { this.LastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeNotEqualTo() { return LastSavedDateTimeNotEqualTo; } public JB_NotesQuery setLastSavedDateTimeNotEqualTo(Date value) { this.LastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getLastSavedDateTimeBetween() { return LastSavedDateTimeBetween; } public JB_NotesQuery setLastSavedDateTimeBetween(ArrayList value) { this.LastSavedDateTimeBetween = value; return this; } public ArrayList getLastSavedDateTimeIn() { return LastSavedDateTimeIn; } public JB_NotesQuery setLastSavedDateTimeIn(ArrayList value) { this.LastSavedDateTimeIn = value; return this; } public String getLastSavedByStaffID() { return LastSavedByStaffID; } public JB_NotesQuery setLastSavedByStaffID(String value) { this.LastSavedByStaffID = value; return this; } public String getLastSavedByStaffIDStartsWith() { return LastSavedByStaffIDStartsWith; } public JB_NotesQuery setLastSavedByStaffIDStartsWith(String value) { this.LastSavedByStaffIDStartsWith = value; return this; } public String getLastSavedByStaffIDEndsWith() { return LastSavedByStaffIDEndsWith; } public JB_NotesQuery setLastSavedByStaffIDEndsWith(String value) { this.LastSavedByStaffIDEndsWith = value; return this; } public String getLastSavedByStaffIDContains() { return LastSavedByStaffIDContains; } public JB_NotesQuery setLastSavedByStaffIDContains(String value) { this.LastSavedByStaffIDContains = value; return this; } public String getLastSavedByStaffIDLike() { return LastSavedByStaffIDLike; } public JB_NotesQuery setLastSavedByStaffIDLike(String value) { this.LastSavedByStaffIDLike = value; return this; } public ArrayList getLastSavedByStaffIDBetween() { return LastSavedByStaffIDBetween; } public JB_NotesQuery setLastSavedByStaffIDBetween(ArrayList value) { this.LastSavedByStaffIDBetween = value; return this; } public ArrayList getLastSavedByStaffIDIn() { return LastSavedByStaffIDIn; } public JB_NotesQuery setLastSavedByStaffIDIn(ArrayList value) { this.LastSavedByStaffIDIn = value; return this; } public String getNoteText() { return NoteText; } public JB_NotesQuery setNoteText(String value) { this.NoteText = value; return this; } public String getNoteTextStartsWith() { return NoteTextStartsWith; } public JB_NotesQuery setNoteTextStartsWith(String value) { this.NoteTextStartsWith = value; return this; } public String getNoteTextEndsWith() { return NoteTextEndsWith; } public JB_NotesQuery setNoteTextEndsWith(String value) { this.NoteTextEndsWith = value; return this; } public String getNoteTextContains() { return NoteTextContains; } public JB_NotesQuery setNoteTextContains(String value) { this.NoteTextContains = value; return this; } public String getNoteTextLike() { return NoteTextLike; } public JB_NotesQuery setNoteTextLike(String value) { this.NoteTextLike = value; return this; } public ArrayList getNoteTextBetween() { return NoteTextBetween; } public JB_NotesQuery setNoteTextBetween(ArrayList value) { this.NoteTextBetween = value; return this; } public ArrayList getNoteTextIn() { return NoteTextIn; } public JB_NotesQuery setNoteTextIn(ArrayList value) { this.NoteTextIn = value; return this; } public Integer getItemNo() { return ItemNo; } public JB_NotesQuery setItemNo(Integer value) { this.ItemNo = value; return this; } public Integer getItemNoGreaterThanOrEqualTo() { return ItemNoGreaterThanOrEqualTo; } public JB_NotesQuery setItemNoGreaterThanOrEqualTo(Integer value) { this.ItemNoGreaterThanOrEqualTo = value; return this; } public Integer getItemNoGreaterThan() { return ItemNoGreaterThan; } public JB_NotesQuery setItemNoGreaterThan(Integer value) { this.ItemNoGreaterThan = value; return this; } public Integer getItemNoLessThan() { return ItemNoLessThan; } public JB_NotesQuery setItemNoLessThan(Integer value) { this.ItemNoLessThan = value; return this; } public Integer getItemNoLessThanOrEqualTo() { return ItemNoLessThanOrEqualTo; } public JB_NotesQuery setItemNoLessThanOrEqualTo(Integer value) { this.ItemNoLessThanOrEqualTo = value; return this; } public Integer getItemNoNotEqualTo() { return ItemNoNotEqualTo; } public JB_NotesQuery setItemNoNotEqualTo(Integer value) { this.ItemNoNotEqualTo = value; return this; } public ArrayList getItemNoBetween() { return ItemNoBetween; } public JB_NotesQuery setItemNoBetween(ArrayList value) { this.ItemNoBetween = value; return this; } public ArrayList getItemNoIn() { return ItemNoIn; } public JB_NotesQuery setItemNoIn(ArrayList value) { this.ItemNoIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class JB_PaymentDetailsQuery extends QueryDb implements IReturn> { public String RecID = null; public String RecIDStartsWith = null; public String RecIDEndsWith = null; public String RecIDContains = null; public String RecIDLike = null; public ArrayList RecIDBetween = null; public ArrayList RecIDIn = null; public String JobNo = null; public String JobNoStartsWith = null; public String JobNoEndsWith = null; public String JobNoContains = null; public String JobNoLike = null; public ArrayList JobNoBetween = null; public ArrayList JobNoIn = null; public String InvoiceID = null; public String InvoiceIDStartsWith = null; public String InvoiceIDEndsWith = null; public String InvoiceIDContains = null; public String InvoiceIDLike = null; public ArrayList InvoiceIDBetween = null; public ArrayList InvoiceIDIn = null; public String CostEntryLineID = null; public String CostEntryLineIDStartsWith = null; public String CostEntryLineIDEndsWith = null; public String CostEntryLineIDContains = null; public String CostEntryLineIDLike = null; public ArrayList CostEntryLineIDBetween = null; public ArrayList CostEntryLineIDIn = null; public Short InvoiceType = null; public Short InvoiceTypeGreaterThanOrEqualTo = null; public Short InvoiceTypeGreaterThan = null; public Short InvoiceTypeLessThan = null; public Short InvoiceTypeLessThanOrEqualTo = null; public Short InvoiceTypeNotEqualTo = null; public ArrayList InvoiceTypeBetween = null; public ArrayList InvoiceTypeIn = null; public BigDecimal BillAmount = null; public BigDecimal BillAmountGreaterThanOrEqualTo = null; public BigDecimal BillAmountGreaterThan = null; public BigDecimal BillAmountLessThan = null; public BigDecimal BillAmountLessThanOrEqualTo = null; public BigDecimal BillAmountNotEqualTo = null; public ArrayList BillAmountBetween = null; public ArrayList BillAmountIn = null; public BigDecimal CostAmount = null; public BigDecimal CostAmountGreaterThanOrEqualTo = null; public BigDecimal CostAmountGreaterThan = null; public BigDecimal CostAmountLessThan = null; public BigDecimal CostAmountLessThanOrEqualTo = null; public BigDecimal CostAmountNotEqualTo = null; public ArrayList CostAmountBetween = null; public ArrayList CostAmountIn = null; public Short Status = null; public Short StatusGreaterThanOrEqualTo = null; public Short StatusGreaterThan = null; public Short StatusLessThan = null; public Short StatusLessThanOrEqualTo = null; public Short StatusNotEqualTo = null; public ArrayList StatusBetween = null; public ArrayList StatusIn = null; public BigDecimal WriteBill = null; public BigDecimal WriteBillGreaterThanOrEqualTo = null; public BigDecimal WriteBillGreaterThan = null; public BigDecimal WriteBillLessThan = null; public BigDecimal WriteBillLessThanOrEqualTo = null; public BigDecimal WriteBillNotEqualTo = null; public ArrayList WriteBillBetween = null; public ArrayList WriteBillIn = null; public BigDecimal WriteCost = null; public BigDecimal WriteCostGreaterThanOrEqualTo = null; public BigDecimal WriteCostGreaterThan = null; public BigDecimal WriteCostLessThan = null; public BigDecimal WriteCostLessThanOrEqualTo = null; public BigDecimal WriteCostNotEqualTo = null; public ArrayList WriteCostBetween = null; public ArrayList WriteCostIn = null; public String LinkLineID = null; public String LinkLineIDStartsWith = null; public String LinkLineIDEndsWith = null; public String LinkLineIDContains = null; public String LinkLineIDLike = null; public ArrayList LinkLineIDBetween = null; public ArrayList LinkLineIDIn = null; public String getRecID() { return RecID; } public JB_PaymentDetailsQuery setRecID(String value) { this.RecID = value; return this; } public String getRecIDStartsWith() { return RecIDStartsWith; } public JB_PaymentDetailsQuery setRecIDStartsWith(String value) { this.RecIDStartsWith = value; return this; } public String getRecIDEndsWith() { return RecIDEndsWith; } public JB_PaymentDetailsQuery setRecIDEndsWith(String value) { this.RecIDEndsWith = value; return this; } public String getRecIDContains() { return RecIDContains; } public JB_PaymentDetailsQuery setRecIDContains(String value) { this.RecIDContains = value; return this; } public String getRecIDLike() { return RecIDLike; } public JB_PaymentDetailsQuery setRecIDLike(String value) { this.RecIDLike = value; return this; } public ArrayList getRecIDBetween() { return RecIDBetween; } public JB_PaymentDetailsQuery setRecIDBetween(ArrayList value) { this.RecIDBetween = value; return this; } public ArrayList getRecIDIn() { return RecIDIn; } public JB_PaymentDetailsQuery setRecIDIn(ArrayList value) { this.RecIDIn = value; return this; } public String getJobNo() { return JobNo; } public JB_PaymentDetailsQuery setJobNo(String value) { this.JobNo = value; return this; } public String getJobNoStartsWith() { return JobNoStartsWith; } public JB_PaymentDetailsQuery setJobNoStartsWith(String value) { this.JobNoStartsWith = value; return this; } public String getJobNoEndsWith() { return JobNoEndsWith; } public JB_PaymentDetailsQuery setJobNoEndsWith(String value) { this.JobNoEndsWith = value; return this; } public String getJobNoContains() { return JobNoContains; } public JB_PaymentDetailsQuery setJobNoContains(String value) { this.JobNoContains = value; return this; } public String getJobNoLike() { return JobNoLike; } public JB_PaymentDetailsQuery setJobNoLike(String value) { this.JobNoLike = value; return this; } public ArrayList getJobNoBetween() { return JobNoBetween; } public JB_PaymentDetailsQuery setJobNoBetween(ArrayList value) { this.JobNoBetween = value; return this; } public ArrayList getJobNoIn() { return JobNoIn; } public JB_PaymentDetailsQuery setJobNoIn(ArrayList value) { this.JobNoIn = value; return this; } public String getInvoiceID() { return InvoiceID; } public JB_PaymentDetailsQuery setInvoiceID(String value) { this.InvoiceID = value; return this; } public String getInvoiceIDStartsWith() { return InvoiceIDStartsWith; } public JB_PaymentDetailsQuery setInvoiceIDStartsWith(String value) { this.InvoiceIDStartsWith = value; return this; } public String getInvoiceIDEndsWith() { return InvoiceIDEndsWith; } public JB_PaymentDetailsQuery setInvoiceIDEndsWith(String value) { this.InvoiceIDEndsWith = value; return this; } public String getInvoiceIDContains() { return InvoiceIDContains; } public JB_PaymentDetailsQuery setInvoiceIDContains(String value) { this.InvoiceIDContains = value; return this; } public String getInvoiceIDLike() { return InvoiceIDLike; } public JB_PaymentDetailsQuery setInvoiceIDLike(String value) { this.InvoiceIDLike = value; return this; } public ArrayList getInvoiceIDBetween() { return InvoiceIDBetween; } public JB_PaymentDetailsQuery setInvoiceIDBetween(ArrayList value) { this.InvoiceIDBetween = value; return this; } public ArrayList getInvoiceIDIn() { return InvoiceIDIn; } public JB_PaymentDetailsQuery setInvoiceIDIn(ArrayList value) { this.InvoiceIDIn = value; return this; } public String getCostEntryLineID() { return CostEntryLineID; } public JB_PaymentDetailsQuery setCostEntryLineID(String value) { this.CostEntryLineID = value; return this; } public String getCostEntryLineIDStartsWith() { return CostEntryLineIDStartsWith; } public JB_PaymentDetailsQuery setCostEntryLineIDStartsWith(String value) { this.CostEntryLineIDStartsWith = value; return this; } public String getCostEntryLineIDEndsWith() { return CostEntryLineIDEndsWith; } public JB_PaymentDetailsQuery setCostEntryLineIDEndsWith(String value) { this.CostEntryLineIDEndsWith = value; return this; } public String getCostEntryLineIDContains() { return CostEntryLineIDContains; } public JB_PaymentDetailsQuery setCostEntryLineIDContains(String value) { this.CostEntryLineIDContains = value; return this; } public String getCostEntryLineIDLike() { return CostEntryLineIDLike; } public JB_PaymentDetailsQuery setCostEntryLineIDLike(String value) { this.CostEntryLineIDLike = value; return this; } public ArrayList getCostEntryLineIDBetween() { return CostEntryLineIDBetween; } public JB_PaymentDetailsQuery setCostEntryLineIDBetween(ArrayList value) { this.CostEntryLineIDBetween = value; return this; } public ArrayList getCostEntryLineIDIn() { return CostEntryLineIDIn; } public JB_PaymentDetailsQuery setCostEntryLineIDIn(ArrayList value) { this.CostEntryLineIDIn = value; return this; } public Short getInvoiceType() { return InvoiceType; } public JB_PaymentDetailsQuery setInvoiceType(Short value) { this.InvoiceType = value; return this; } public Short getInvoiceTypeGreaterThanOrEqualTo() { return InvoiceTypeGreaterThanOrEqualTo; } public JB_PaymentDetailsQuery setInvoiceTypeGreaterThanOrEqualTo(Short value) { this.InvoiceTypeGreaterThanOrEqualTo = value; return this; } public Short getInvoiceTypeGreaterThan() { return InvoiceTypeGreaterThan; } public JB_PaymentDetailsQuery setInvoiceTypeGreaterThan(Short value) { this.InvoiceTypeGreaterThan = value; return this; } public Short getInvoiceTypeLessThan() { return InvoiceTypeLessThan; } public JB_PaymentDetailsQuery setInvoiceTypeLessThan(Short value) { this.InvoiceTypeLessThan = value; return this; } public Short getInvoiceTypeLessThanOrEqualTo() { return InvoiceTypeLessThanOrEqualTo; } public JB_PaymentDetailsQuery setInvoiceTypeLessThanOrEqualTo(Short value) { this.InvoiceTypeLessThanOrEqualTo = value; return this; } public Short getInvoiceTypeNotEqualTo() { return InvoiceTypeNotEqualTo; } public JB_PaymentDetailsQuery setInvoiceTypeNotEqualTo(Short value) { this.InvoiceTypeNotEqualTo = value; return this; } public ArrayList getInvoiceTypeBetween() { return InvoiceTypeBetween; } public JB_PaymentDetailsQuery setInvoiceTypeBetween(ArrayList value) { this.InvoiceTypeBetween = value; return this; } public ArrayList getInvoiceTypeIn() { return InvoiceTypeIn; } public JB_PaymentDetailsQuery setInvoiceTypeIn(ArrayList value) { this.InvoiceTypeIn = value; return this; } public BigDecimal getBillAmount() { return BillAmount; } public JB_PaymentDetailsQuery setBillAmount(BigDecimal value) { this.BillAmount = value; return this; } public BigDecimal getBillAmountGreaterThanOrEqualTo() { return BillAmountGreaterThanOrEqualTo; } public JB_PaymentDetailsQuery setBillAmountGreaterThanOrEqualTo(BigDecimal value) { this.BillAmountGreaterThanOrEqualTo = value; return this; } public BigDecimal getBillAmountGreaterThan() { return BillAmountGreaterThan; } public JB_PaymentDetailsQuery setBillAmountGreaterThan(BigDecimal value) { this.BillAmountGreaterThan = value; return this; } public BigDecimal getBillAmountLessThan() { return BillAmountLessThan; } public JB_PaymentDetailsQuery setBillAmountLessThan(BigDecimal value) { this.BillAmountLessThan = value; return this; } public BigDecimal getBillAmountLessThanOrEqualTo() { return BillAmountLessThanOrEqualTo; } public JB_PaymentDetailsQuery setBillAmountLessThanOrEqualTo(BigDecimal value) { this.BillAmountLessThanOrEqualTo = value; return this; } public BigDecimal getBillAmountNotEqualTo() { return BillAmountNotEqualTo; } public JB_PaymentDetailsQuery setBillAmountNotEqualTo(BigDecimal value) { this.BillAmountNotEqualTo = value; return this; } public ArrayList getBillAmountBetween() { return BillAmountBetween; } public JB_PaymentDetailsQuery setBillAmountBetween(ArrayList value) { this.BillAmountBetween = value; return this; } public ArrayList getBillAmountIn() { return BillAmountIn; } public JB_PaymentDetailsQuery setBillAmountIn(ArrayList value) { this.BillAmountIn = value; return this; } public BigDecimal getCostAmount() { return CostAmount; } public JB_PaymentDetailsQuery setCostAmount(BigDecimal value) { this.CostAmount = value; return this; } public BigDecimal getCostAmountGreaterThanOrEqualTo() { return CostAmountGreaterThanOrEqualTo; } public JB_PaymentDetailsQuery setCostAmountGreaterThanOrEqualTo(BigDecimal value) { this.CostAmountGreaterThanOrEqualTo = value; return this; } public BigDecimal getCostAmountGreaterThan() { return CostAmountGreaterThan; } public JB_PaymentDetailsQuery setCostAmountGreaterThan(BigDecimal value) { this.CostAmountGreaterThan = value; return this; } public BigDecimal getCostAmountLessThan() { return CostAmountLessThan; } public JB_PaymentDetailsQuery setCostAmountLessThan(BigDecimal value) { this.CostAmountLessThan = value; return this; } public BigDecimal getCostAmountLessThanOrEqualTo() { return CostAmountLessThanOrEqualTo; } public JB_PaymentDetailsQuery setCostAmountLessThanOrEqualTo(BigDecimal value) { this.CostAmountLessThanOrEqualTo = value; return this; } public BigDecimal getCostAmountNotEqualTo() { return CostAmountNotEqualTo; } public JB_PaymentDetailsQuery setCostAmountNotEqualTo(BigDecimal value) { this.CostAmountNotEqualTo = value; return this; } public ArrayList getCostAmountBetween() { return CostAmountBetween; } public JB_PaymentDetailsQuery setCostAmountBetween(ArrayList value) { this.CostAmountBetween = value; return this; } public ArrayList getCostAmountIn() { return CostAmountIn; } public JB_PaymentDetailsQuery setCostAmountIn(ArrayList value) { this.CostAmountIn = value; return this; } public Short getStatus() { return Status; } public JB_PaymentDetailsQuery setStatus(Short value) { this.Status = value; return this; } public Short getStatusGreaterThanOrEqualTo() { return StatusGreaterThanOrEqualTo; } public JB_PaymentDetailsQuery setStatusGreaterThanOrEqualTo(Short value) { this.StatusGreaterThanOrEqualTo = value; return this; } public Short getStatusGreaterThan() { return StatusGreaterThan; } public JB_PaymentDetailsQuery setStatusGreaterThan(Short value) { this.StatusGreaterThan = value; return this; } public Short getStatusLessThan() { return StatusLessThan; } public JB_PaymentDetailsQuery setStatusLessThan(Short value) { this.StatusLessThan = value; return this; } public Short getStatusLessThanOrEqualTo() { return StatusLessThanOrEqualTo; } public JB_PaymentDetailsQuery setStatusLessThanOrEqualTo(Short value) { this.StatusLessThanOrEqualTo = value; return this; } public Short getStatusNotEqualTo() { return StatusNotEqualTo; } public JB_PaymentDetailsQuery setStatusNotEqualTo(Short value) { this.StatusNotEqualTo = value; return this; } public ArrayList getStatusBetween() { return StatusBetween; } public JB_PaymentDetailsQuery setStatusBetween(ArrayList value) { this.StatusBetween = value; return this; } public ArrayList getStatusIn() { return StatusIn; } public JB_PaymentDetailsQuery setStatusIn(ArrayList value) { this.StatusIn = value; return this; } public BigDecimal getWriteBill() { return WriteBill; } public JB_PaymentDetailsQuery setWriteBill(BigDecimal value) { this.WriteBill = value; return this; } public BigDecimal getWriteBillGreaterThanOrEqualTo() { return WriteBillGreaterThanOrEqualTo; } public JB_PaymentDetailsQuery setWriteBillGreaterThanOrEqualTo(BigDecimal value) { this.WriteBillGreaterThanOrEqualTo = value; return this; } public BigDecimal getWriteBillGreaterThan() { return WriteBillGreaterThan; } public JB_PaymentDetailsQuery setWriteBillGreaterThan(BigDecimal value) { this.WriteBillGreaterThan = value; return this; } public BigDecimal getWriteBillLessThan() { return WriteBillLessThan; } public JB_PaymentDetailsQuery setWriteBillLessThan(BigDecimal value) { this.WriteBillLessThan = value; return this; } public BigDecimal getWriteBillLessThanOrEqualTo() { return WriteBillLessThanOrEqualTo; } public JB_PaymentDetailsQuery setWriteBillLessThanOrEqualTo(BigDecimal value) { this.WriteBillLessThanOrEqualTo = value; return this; } public BigDecimal getWriteBillNotEqualTo() { return WriteBillNotEqualTo; } public JB_PaymentDetailsQuery setWriteBillNotEqualTo(BigDecimal value) { this.WriteBillNotEqualTo = value; return this; } public ArrayList getWriteBillBetween() { return WriteBillBetween; } public JB_PaymentDetailsQuery setWriteBillBetween(ArrayList value) { this.WriteBillBetween = value; return this; } public ArrayList getWriteBillIn() { return WriteBillIn; } public JB_PaymentDetailsQuery setWriteBillIn(ArrayList value) { this.WriteBillIn = value; return this; } public BigDecimal getWriteCost() { return WriteCost; } public JB_PaymentDetailsQuery setWriteCost(BigDecimal value) { this.WriteCost = value; return this; } public BigDecimal getWriteCostGreaterThanOrEqualTo() { return WriteCostGreaterThanOrEqualTo; } public JB_PaymentDetailsQuery setWriteCostGreaterThanOrEqualTo(BigDecimal value) { this.WriteCostGreaterThanOrEqualTo = value; return this; } public BigDecimal getWriteCostGreaterThan() { return WriteCostGreaterThan; } public JB_PaymentDetailsQuery setWriteCostGreaterThan(BigDecimal value) { this.WriteCostGreaterThan = value; return this; } public BigDecimal getWriteCostLessThan() { return WriteCostLessThan; } public JB_PaymentDetailsQuery setWriteCostLessThan(BigDecimal value) { this.WriteCostLessThan = value; return this; } public BigDecimal getWriteCostLessThanOrEqualTo() { return WriteCostLessThanOrEqualTo; } public JB_PaymentDetailsQuery setWriteCostLessThanOrEqualTo(BigDecimal value) { this.WriteCostLessThanOrEqualTo = value; return this; } public BigDecimal getWriteCostNotEqualTo() { return WriteCostNotEqualTo; } public JB_PaymentDetailsQuery setWriteCostNotEqualTo(BigDecimal value) { this.WriteCostNotEqualTo = value; return this; } public ArrayList getWriteCostBetween() { return WriteCostBetween; } public JB_PaymentDetailsQuery setWriteCostBetween(ArrayList value) { this.WriteCostBetween = value; return this; } public ArrayList getWriteCostIn() { return WriteCostIn; } public JB_PaymentDetailsQuery setWriteCostIn(ArrayList value) { this.WriteCostIn = value; return this; } public String getLinkLineID() { return LinkLineID; } public JB_PaymentDetailsQuery setLinkLineID(String value) { this.LinkLineID = value; return this; } public String getLinkLineIDStartsWith() { return LinkLineIDStartsWith; } public JB_PaymentDetailsQuery setLinkLineIDStartsWith(String value) { this.LinkLineIDStartsWith = value; return this; } public String getLinkLineIDEndsWith() { return LinkLineIDEndsWith; } public JB_PaymentDetailsQuery setLinkLineIDEndsWith(String value) { this.LinkLineIDEndsWith = value; return this; } public String getLinkLineIDContains() { return LinkLineIDContains; } public JB_PaymentDetailsQuery setLinkLineIDContains(String value) { this.LinkLineIDContains = value; return this; } public String getLinkLineIDLike() { return LinkLineIDLike; } public JB_PaymentDetailsQuery setLinkLineIDLike(String value) { this.LinkLineIDLike = value; return this; } public ArrayList getLinkLineIDBetween() { return LinkLineIDBetween; } public JB_PaymentDetailsQuery setLinkLineIDBetween(ArrayList value) { this.LinkLineIDBetween = value; return this; } public ArrayList getLinkLineIDIn() { return LinkLineIDIn; } public JB_PaymentDetailsQuery setLinkLineIDIn(ArrayList value) { this.LinkLineIDIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class JB_PrioritiesQuery extends QueryDb implements IReturn> { public String RecID = null; public String RecIDStartsWith = null; public String RecIDEndsWith = null; public String RecIDContains = null; public String RecIDLike = null; public ArrayList RecIDBetween = null; public ArrayList RecIDIn = null; public String Name = null; public String NameStartsWith = null; public String NameEndsWith = null; public String NameContains = null; public String NameLike = null; public ArrayList NameBetween = null; public ArrayList NameIn = null; public String Description = null; public String DescriptionStartsWith = null; public String DescriptionEndsWith = null; public String DescriptionContains = null; public String DescriptionLike = null; public ArrayList DescriptionBetween = null; public ArrayList DescriptionIn = null; public Integer ItemNo = null; public Integer ItemNoGreaterThanOrEqualTo = null; public Integer ItemNoGreaterThan = null; public Integer ItemNoLessThan = null; public Integer ItemNoLessThanOrEqualTo = null; public Integer ItemNoNotEqualTo = null; public ArrayList ItemNoBetween = null; public ArrayList ItemNoIn = null; public Boolean IsEnabled = null; public ArrayList RowHash = null; public Boolean IsDefault = null; public String getRecID() { return RecID; } public JB_PrioritiesQuery setRecID(String value) { this.RecID = value; return this; } public String getRecIDStartsWith() { return RecIDStartsWith; } public JB_PrioritiesQuery setRecIDStartsWith(String value) { this.RecIDStartsWith = value; return this; } public String getRecIDEndsWith() { return RecIDEndsWith; } public JB_PrioritiesQuery setRecIDEndsWith(String value) { this.RecIDEndsWith = value; return this; } public String getRecIDContains() { return RecIDContains; } public JB_PrioritiesQuery setRecIDContains(String value) { this.RecIDContains = value; return this; } public String getRecIDLike() { return RecIDLike; } public JB_PrioritiesQuery setRecIDLike(String value) { this.RecIDLike = value; return this; } public ArrayList getRecIDBetween() { return RecIDBetween; } public JB_PrioritiesQuery setRecIDBetween(ArrayList value) { this.RecIDBetween = value; return this; } public ArrayList getRecIDIn() { return RecIDIn; } public JB_PrioritiesQuery setRecIDIn(ArrayList value) { this.RecIDIn = value; return this; } public String getName() { return Name; } public JB_PrioritiesQuery setName(String value) { this.Name = value; return this; } public String getNameStartsWith() { return NameStartsWith; } public JB_PrioritiesQuery setNameStartsWith(String value) { this.NameStartsWith = value; return this; } public String getNameEndsWith() { return NameEndsWith; } public JB_PrioritiesQuery setNameEndsWith(String value) { this.NameEndsWith = value; return this; } public String getNameContains() { return NameContains; } public JB_PrioritiesQuery setNameContains(String value) { this.NameContains = value; return this; } public String getNameLike() { return NameLike; } public JB_PrioritiesQuery setNameLike(String value) { this.NameLike = value; return this; } public ArrayList getNameBetween() { return NameBetween; } public JB_PrioritiesQuery setNameBetween(ArrayList value) { this.NameBetween = value; return this; } public ArrayList getNameIn() { return NameIn; } public JB_PrioritiesQuery setNameIn(ArrayList value) { this.NameIn = value; return this; } public String getDescription() { return Description; } public JB_PrioritiesQuery setDescription(String value) { this.Description = value; return this; } public String getDescriptionStartsWith() { return DescriptionStartsWith; } public JB_PrioritiesQuery setDescriptionStartsWith(String value) { this.DescriptionStartsWith = value; return this; } public String getDescriptionEndsWith() { return DescriptionEndsWith; } public JB_PrioritiesQuery setDescriptionEndsWith(String value) { this.DescriptionEndsWith = value; return this; } public String getDescriptionContains() { return DescriptionContains; } public JB_PrioritiesQuery setDescriptionContains(String value) { this.DescriptionContains = value; return this; } public String getDescriptionLike() { return DescriptionLike; } public JB_PrioritiesQuery setDescriptionLike(String value) { this.DescriptionLike = value; return this; } public ArrayList getDescriptionBetween() { return DescriptionBetween; } public JB_PrioritiesQuery setDescriptionBetween(ArrayList value) { this.DescriptionBetween = value; return this; } public ArrayList getDescriptionIn() { return DescriptionIn; } public JB_PrioritiesQuery setDescriptionIn(ArrayList value) { this.DescriptionIn = value; return this; } public Integer getItemNo() { return ItemNo; } public JB_PrioritiesQuery setItemNo(Integer value) { this.ItemNo = value; return this; } public Integer getItemNoGreaterThanOrEqualTo() { return ItemNoGreaterThanOrEqualTo; } public JB_PrioritiesQuery setItemNoGreaterThanOrEqualTo(Integer value) { this.ItemNoGreaterThanOrEqualTo = value; return this; } public Integer getItemNoGreaterThan() { return ItemNoGreaterThan; } public JB_PrioritiesQuery setItemNoGreaterThan(Integer value) { this.ItemNoGreaterThan = value; return this; } public Integer getItemNoLessThan() { return ItemNoLessThan; } public JB_PrioritiesQuery setItemNoLessThan(Integer value) { this.ItemNoLessThan = value; return this; } public Integer getItemNoLessThanOrEqualTo() { return ItemNoLessThanOrEqualTo; } public JB_PrioritiesQuery setItemNoLessThanOrEqualTo(Integer value) { this.ItemNoLessThanOrEqualTo = value; return this; } public Integer getItemNoNotEqualTo() { return ItemNoNotEqualTo; } public JB_PrioritiesQuery setItemNoNotEqualTo(Integer value) { this.ItemNoNotEqualTo = value; return this; } public ArrayList getItemNoBetween() { return ItemNoBetween; } public JB_PrioritiesQuery setItemNoBetween(ArrayList value) { this.ItemNoBetween = value; return this; } public ArrayList getItemNoIn() { return ItemNoIn; } public JB_PrioritiesQuery setItemNoIn(ArrayList value) { this.ItemNoIn = value; return this; } public Boolean getIsEnabled() { return IsEnabled; } public JB_PrioritiesQuery setIsEnabled(Boolean value) { this.IsEnabled = value; return this; } public ArrayList getRowHash() { return RowHash; } public JB_PrioritiesQuery setRowHash(ArrayList value) { this.RowHash = value; return this; } public Boolean getIsDefault() { return IsDefault; } public JB_PrioritiesQuery setIsDefault(Boolean value) { this.IsDefault = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class JB_ResourcesQuery extends QueryDb implements IReturn> { public String RecID = null; public String RecIDStartsWith = null; public String RecIDEndsWith = null; public String RecIDContains = null; public String RecIDLike = null; public ArrayList RecIDBetween = null; public ArrayList RecIDIn = null; public String RecNum = null; public String RecNumStartsWith = null; public String RecNumEndsWith = null; public String RecNumContains = null; public String RecNumLike = null; public ArrayList RecNumBetween = null; public ArrayList RecNumIn = null; public String RecDescription = null; public String RecDescriptionStartsWith = null; public String RecDescriptionEndsWith = null; public String RecDescriptionContains = null; public String RecDescriptionLike = null; public ArrayList RecDescriptionBetween = null; public ArrayList RecDescriptionIn = null; public Short RecType = null; public Short RecTypeGreaterThanOrEqualTo = null; public Short RecTypeGreaterThan = null; public Short RecTypeLessThan = null; public Short RecTypeLessThanOrEqualTo = null; public Short RecTypeNotEqualTo = null; public ArrayList RecTypeBetween = null; public ArrayList RecTypeIn = null; public String RecGroup = null; public String RecGroupStartsWith = null; public String RecGroupEndsWith = null; public String RecGroupContains = null; public String RecGroupLike = null; public ArrayList RecGroupBetween = null; public ArrayList RecGroupIn = null; public BigDecimal Cost = null; public BigDecimal CostGreaterThanOrEqualTo = null; public BigDecimal CostGreaterThan = null; public BigDecimal CostLessThan = null; public BigDecimal CostLessThanOrEqualTo = null; public BigDecimal CostNotEqualTo = null; public ArrayList CostBetween = null; public ArrayList CostIn = null; public BigDecimal Charge = null; public BigDecimal ChargeGreaterThanOrEqualTo = null; public BigDecimal ChargeGreaterThan = null; public BigDecimal ChargeLessThan = null; public BigDecimal ChargeLessThanOrEqualTo = null; public BigDecimal ChargeNotEqualTo = null; public ArrayList ChargeBetween = null; public ArrayList ChargeIn = null; public String Unit = null; public String UnitStartsWith = null; public String UnitEndsWith = null; public String UnitContains = null; public String UnitLike = null; public ArrayList UnitBetween = null; public ArrayList UnitIn = null; public Boolean Status = null; public String Note = null; public String NoteStartsWith = null; public String NoteEndsWith = null; public String NoteContains = null; public String NoteLike = null; public ArrayList NoteBetween = null; public ArrayList NoteIn = null; public Date LastSavedDateTime = null; public Date LastSavedDateTimeGreaterThanOrEqualTo = null; public Date LastSavedDateTimeGreaterThan = null; public Date LastSavedDateTimeLessThan = null; public Date LastSavedDateTimeLessThanOrEqualTo = null; public Date LastSavedDateTimeNotEqualTo = null; public ArrayList LastSavedDateTimeBetween = null; public ArrayList LastSavedDateTimeIn = null; public String GLCode = null; public String GLCodeStartsWith = null; public String GLCodeEndsWith = null; public String GLCodeContains = null; public String GLCodeLike = null; public ArrayList GLCodeBetween = null; public ArrayList GLCodeIn = null; public String getRecID() { return RecID; } public JB_ResourcesQuery setRecID(String value) { this.RecID = value; return this; } public String getRecIDStartsWith() { return RecIDStartsWith; } public JB_ResourcesQuery setRecIDStartsWith(String value) { this.RecIDStartsWith = value; return this; } public String getRecIDEndsWith() { return RecIDEndsWith; } public JB_ResourcesQuery setRecIDEndsWith(String value) { this.RecIDEndsWith = value; return this; } public String getRecIDContains() { return RecIDContains; } public JB_ResourcesQuery setRecIDContains(String value) { this.RecIDContains = value; return this; } public String getRecIDLike() { return RecIDLike; } public JB_ResourcesQuery setRecIDLike(String value) { this.RecIDLike = value; return this; } public ArrayList getRecIDBetween() { return RecIDBetween; } public JB_ResourcesQuery setRecIDBetween(ArrayList value) { this.RecIDBetween = value; return this; } public ArrayList getRecIDIn() { return RecIDIn; } public JB_ResourcesQuery setRecIDIn(ArrayList value) { this.RecIDIn = value; return this; } public String getRecNum() { return RecNum; } public JB_ResourcesQuery setRecNum(String value) { this.RecNum = value; return this; } public String getRecNumStartsWith() { return RecNumStartsWith; } public JB_ResourcesQuery setRecNumStartsWith(String value) { this.RecNumStartsWith = value; return this; } public String getRecNumEndsWith() { return RecNumEndsWith; } public JB_ResourcesQuery setRecNumEndsWith(String value) { this.RecNumEndsWith = value; return this; } public String getRecNumContains() { return RecNumContains; } public JB_ResourcesQuery setRecNumContains(String value) { this.RecNumContains = value; return this; } public String getRecNumLike() { return RecNumLike; } public JB_ResourcesQuery setRecNumLike(String value) { this.RecNumLike = value; return this; } public ArrayList getRecNumBetween() { return RecNumBetween; } public JB_ResourcesQuery setRecNumBetween(ArrayList value) { this.RecNumBetween = value; return this; } public ArrayList getRecNumIn() { return RecNumIn; } public JB_ResourcesQuery setRecNumIn(ArrayList value) { this.RecNumIn = value; return this; } public String getRecDescription() { return RecDescription; } public JB_ResourcesQuery setRecDescription(String value) { this.RecDescription = value; return this; } public String getRecDescriptionStartsWith() { return RecDescriptionStartsWith; } public JB_ResourcesQuery setRecDescriptionStartsWith(String value) { this.RecDescriptionStartsWith = value; return this; } public String getRecDescriptionEndsWith() { return RecDescriptionEndsWith; } public JB_ResourcesQuery setRecDescriptionEndsWith(String value) { this.RecDescriptionEndsWith = value; return this; } public String getRecDescriptionContains() { return RecDescriptionContains; } public JB_ResourcesQuery setRecDescriptionContains(String value) { this.RecDescriptionContains = value; return this; } public String getRecDescriptionLike() { return RecDescriptionLike; } public JB_ResourcesQuery setRecDescriptionLike(String value) { this.RecDescriptionLike = value; return this; } public ArrayList getRecDescriptionBetween() { return RecDescriptionBetween; } public JB_ResourcesQuery setRecDescriptionBetween(ArrayList value) { this.RecDescriptionBetween = value; return this; } public ArrayList getRecDescriptionIn() { return RecDescriptionIn; } public JB_ResourcesQuery setRecDescriptionIn(ArrayList value) { this.RecDescriptionIn = value; return this; } public Short getRecType() { return RecType; } public JB_ResourcesQuery setRecType(Short value) { this.RecType = value; return this; } public Short getRecTypeGreaterThanOrEqualTo() { return RecTypeGreaterThanOrEqualTo; } public JB_ResourcesQuery setRecTypeGreaterThanOrEqualTo(Short value) { this.RecTypeGreaterThanOrEqualTo = value; return this; } public Short getRecTypeGreaterThan() { return RecTypeGreaterThan; } public JB_ResourcesQuery setRecTypeGreaterThan(Short value) { this.RecTypeGreaterThan = value; return this; } public Short getRecTypeLessThan() { return RecTypeLessThan; } public JB_ResourcesQuery setRecTypeLessThan(Short value) { this.RecTypeLessThan = value; return this; } public Short getRecTypeLessThanOrEqualTo() { return RecTypeLessThanOrEqualTo; } public JB_ResourcesQuery setRecTypeLessThanOrEqualTo(Short value) { this.RecTypeLessThanOrEqualTo = value; return this; } public Short getRecTypeNotEqualTo() { return RecTypeNotEqualTo; } public JB_ResourcesQuery setRecTypeNotEqualTo(Short value) { this.RecTypeNotEqualTo = value; return this; } public ArrayList getRecTypeBetween() { return RecTypeBetween; } public JB_ResourcesQuery setRecTypeBetween(ArrayList value) { this.RecTypeBetween = value; return this; } public ArrayList getRecTypeIn() { return RecTypeIn; } public JB_ResourcesQuery setRecTypeIn(ArrayList value) { this.RecTypeIn = value; return this; } public String getRecGroup() { return RecGroup; } public JB_ResourcesQuery setRecGroup(String value) { this.RecGroup = value; return this; } public String getRecGroupStartsWith() { return RecGroupStartsWith; } public JB_ResourcesQuery setRecGroupStartsWith(String value) { this.RecGroupStartsWith = value; return this; } public String getRecGroupEndsWith() { return RecGroupEndsWith; } public JB_ResourcesQuery setRecGroupEndsWith(String value) { this.RecGroupEndsWith = value; return this; } public String getRecGroupContains() { return RecGroupContains; } public JB_ResourcesQuery setRecGroupContains(String value) { this.RecGroupContains = value; return this; } public String getRecGroupLike() { return RecGroupLike; } public JB_ResourcesQuery setRecGroupLike(String value) { this.RecGroupLike = value; return this; } public ArrayList getRecGroupBetween() { return RecGroupBetween; } public JB_ResourcesQuery setRecGroupBetween(ArrayList value) { this.RecGroupBetween = value; return this; } public ArrayList getRecGroupIn() { return RecGroupIn; } public JB_ResourcesQuery setRecGroupIn(ArrayList value) { this.RecGroupIn = value; return this; } public BigDecimal getCost() { return Cost; } public JB_ResourcesQuery setCost(BigDecimal value) { this.Cost = value; return this; } public BigDecimal getCostGreaterThanOrEqualTo() { return CostGreaterThanOrEqualTo; } public JB_ResourcesQuery setCostGreaterThanOrEqualTo(BigDecimal value) { this.CostGreaterThanOrEqualTo = value; return this; } public BigDecimal getCostGreaterThan() { return CostGreaterThan; } public JB_ResourcesQuery setCostGreaterThan(BigDecimal value) { this.CostGreaterThan = value; return this; } public BigDecimal getCostLessThan() { return CostLessThan; } public JB_ResourcesQuery setCostLessThan(BigDecimal value) { this.CostLessThan = value; return this; } public BigDecimal getCostLessThanOrEqualTo() { return CostLessThanOrEqualTo; } public JB_ResourcesQuery setCostLessThanOrEqualTo(BigDecimal value) { this.CostLessThanOrEqualTo = value; return this; } public BigDecimal getCostNotEqualTo() { return CostNotEqualTo; } public JB_ResourcesQuery setCostNotEqualTo(BigDecimal value) { this.CostNotEqualTo = value; return this; } public ArrayList getCostBetween() { return CostBetween; } public JB_ResourcesQuery setCostBetween(ArrayList value) { this.CostBetween = value; return this; } public ArrayList getCostIn() { return CostIn; } public JB_ResourcesQuery setCostIn(ArrayList value) { this.CostIn = value; return this; } public BigDecimal getCharge() { return Charge; } public JB_ResourcesQuery setCharge(BigDecimal value) { this.Charge = value; return this; } public BigDecimal getChargeGreaterThanOrEqualTo() { return ChargeGreaterThanOrEqualTo; } public JB_ResourcesQuery setChargeGreaterThanOrEqualTo(BigDecimal value) { this.ChargeGreaterThanOrEqualTo = value; return this; } public BigDecimal getChargeGreaterThan() { return ChargeGreaterThan; } public JB_ResourcesQuery setChargeGreaterThan(BigDecimal value) { this.ChargeGreaterThan = value; return this; } public BigDecimal getChargeLessThan() { return ChargeLessThan; } public JB_ResourcesQuery setChargeLessThan(BigDecimal value) { this.ChargeLessThan = value; return this; } public BigDecimal getChargeLessThanOrEqualTo() { return ChargeLessThanOrEqualTo; } public JB_ResourcesQuery setChargeLessThanOrEqualTo(BigDecimal value) { this.ChargeLessThanOrEqualTo = value; return this; } public BigDecimal getChargeNotEqualTo() { return ChargeNotEqualTo; } public JB_ResourcesQuery setChargeNotEqualTo(BigDecimal value) { this.ChargeNotEqualTo = value; return this; } public ArrayList getChargeBetween() { return ChargeBetween; } public JB_ResourcesQuery setChargeBetween(ArrayList value) { this.ChargeBetween = value; return this; } public ArrayList getChargeIn() { return ChargeIn; } public JB_ResourcesQuery setChargeIn(ArrayList value) { this.ChargeIn = value; return this; } public String getUnit() { return Unit; } public JB_ResourcesQuery setUnit(String value) { this.Unit = value; return this; } public String getUnitStartsWith() { return UnitStartsWith; } public JB_ResourcesQuery setUnitStartsWith(String value) { this.UnitStartsWith = value; return this; } public String getUnitEndsWith() { return UnitEndsWith; } public JB_ResourcesQuery setUnitEndsWith(String value) { this.UnitEndsWith = value; return this; } public String getUnitContains() { return UnitContains; } public JB_ResourcesQuery setUnitContains(String value) { this.UnitContains = value; return this; } public String getUnitLike() { return UnitLike; } public JB_ResourcesQuery setUnitLike(String value) { this.UnitLike = value; return this; } public ArrayList getUnitBetween() { return UnitBetween; } public JB_ResourcesQuery setUnitBetween(ArrayList value) { this.UnitBetween = value; return this; } public ArrayList getUnitIn() { return UnitIn; } public JB_ResourcesQuery setUnitIn(ArrayList value) { this.UnitIn = value; return this; } public Boolean isStatus() { return Status; } public JB_ResourcesQuery setStatus(Boolean value) { this.Status = value; return this; } public String getNote() { return Note; } public JB_ResourcesQuery setNote(String value) { this.Note = value; return this; } public String getNoteStartsWith() { return NoteStartsWith; } public JB_ResourcesQuery setNoteStartsWith(String value) { this.NoteStartsWith = value; return this; } public String getNoteEndsWith() { return NoteEndsWith; } public JB_ResourcesQuery setNoteEndsWith(String value) { this.NoteEndsWith = value; return this; } public String getNoteContains() { return NoteContains; } public JB_ResourcesQuery setNoteContains(String value) { this.NoteContains = value; return this; } public String getNoteLike() { return NoteLike; } public JB_ResourcesQuery setNoteLike(String value) { this.NoteLike = value; return this; } public ArrayList getNoteBetween() { return NoteBetween; } public JB_ResourcesQuery setNoteBetween(ArrayList value) { this.NoteBetween = value; return this; } public ArrayList getNoteIn() { return NoteIn; } public JB_ResourcesQuery setNoteIn(ArrayList value) { this.NoteIn = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public JB_ResourcesQuery setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getLastSavedDateTimeGreaterThanOrEqualTo() { return LastSavedDateTimeGreaterThanOrEqualTo; } public JB_ResourcesQuery setLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.LastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeGreaterThan() { return LastSavedDateTimeGreaterThan; } public JB_ResourcesQuery setLastSavedDateTimeGreaterThan(Date value) { this.LastSavedDateTimeGreaterThan = value; return this; } public Date getLastSavedDateTimeLessThan() { return LastSavedDateTimeLessThan; } public JB_ResourcesQuery setLastSavedDateTimeLessThan(Date value) { this.LastSavedDateTimeLessThan = value; return this; } public Date getLastSavedDateTimeLessThanOrEqualTo() { return LastSavedDateTimeLessThanOrEqualTo; } public JB_ResourcesQuery setLastSavedDateTimeLessThanOrEqualTo(Date value) { this.LastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeNotEqualTo() { return LastSavedDateTimeNotEqualTo; } public JB_ResourcesQuery setLastSavedDateTimeNotEqualTo(Date value) { this.LastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getLastSavedDateTimeBetween() { return LastSavedDateTimeBetween; } public JB_ResourcesQuery setLastSavedDateTimeBetween(ArrayList value) { this.LastSavedDateTimeBetween = value; return this; } public ArrayList getLastSavedDateTimeIn() { return LastSavedDateTimeIn; } public JB_ResourcesQuery setLastSavedDateTimeIn(ArrayList value) { this.LastSavedDateTimeIn = value; return this; } public String getGlCode() { return GLCode; } public JB_ResourcesQuery setGlCode(String value) { this.GLCode = value; return this; } public String getGlCodeStartsWith() { return GLCodeStartsWith; } public JB_ResourcesQuery setGlCodeStartsWith(String value) { this.GLCodeStartsWith = value; return this; } public String getGlCodeEndsWith() { return GLCodeEndsWith; } public JB_ResourcesQuery setGlCodeEndsWith(String value) { this.GLCodeEndsWith = value; return this; } public String getGlCodeContains() { return GLCodeContains; } public JB_ResourcesQuery setGlCodeContains(String value) { this.GLCodeContains = value; return this; } public String getGlCodeLike() { return GLCodeLike; } public JB_ResourcesQuery setGlCodeLike(String value) { this.GLCodeLike = value; return this; } public ArrayList getGlCodeBetween() { return GLCodeBetween; } public JB_ResourcesQuery setGlCodeBetween(ArrayList value) { this.GLCodeBetween = value; return this; } public ArrayList getGlCodeIn() { return GLCodeIn; } public JB_ResourcesQuery setGlCodeIn(ArrayList value) { this.GLCodeIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class JB_StaffsQuery extends QueryDb implements IReturn> { public String RecID = null; public String RecIDStartsWith = null; public String RecIDEndsWith = null; public String RecIDContains = null; public String RecIDLike = null; public ArrayList RecIDBetween = null; public ArrayList RecIDIn = null; public String RecNum = null; public String RecNumStartsWith = null; public String RecNumEndsWith = null; public String RecNumContains = null; public String RecNumLike = null; public ArrayList RecNumBetween = null; public ArrayList RecNumIn = null; public String RecDescription = null; public String RecDescriptionStartsWith = null; public String RecDescriptionEndsWith = null; public String RecDescriptionContains = null; public String RecDescriptionLike = null; public ArrayList RecDescriptionBetween = null; public ArrayList RecDescriptionIn = null; public BigDecimal Cost = null; public BigDecimal CostGreaterThanOrEqualTo = null; public BigDecimal CostGreaterThan = null; public BigDecimal CostLessThan = null; public BigDecimal CostLessThanOrEqualTo = null; public BigDecimal CostNotEqualTo = null; public ArrayList CostBetween = null; public ArrayList CostIn = null; public BigDecimal Charge = null; public BigDecimal ChargeGreaterThanOrEqualTo = null; public BigDecimal ChargeGreaterThan = null; public BigDecimal ChargeLessThan = null; public BigDecimal ChargeLessThanOrEqualTo = null; public BigDecimal ChargeNotEqualTo = null; public ArrayList ChargeBetween = null; public ArrayList ChargeIn = null; public String Unit = null; public String UnitStartsWith = null; public String UnitEndsWith = null; public String UnitContains = null; public String UnitLike = null; public ArrayList UnitBetween = null; public ArrayList UnitIn = null; public Boolean IsEnabled = null; public String Note = null; public String NoteStartsWith = null; public String NoteEndsWith = null; public String NoteContains = null; public String NoteLike = null; public ArrayList NoteBetween = null; public ArrayList NoteIn = null; public Date LastSavedDateTime = null; public Date LastSavedDateTimeGreaterThanOrEqualTo = null; public Date LastSavedDateTimeGreaterThan = null; public Date LastSavedDateTimeLessThan = null; public Date LastSavedDateTimeLessThanOrEqualTo = null; public Date LastSavedDateTimeNotEqualTo = null; public ArrayList LastSavedDateTimeBetween = null; public ArrayList LastSavedDateTimeIn = null; public String GLCode = null; public String GLCodeStartsWith = null; public String GLCodeEndsWith = null; public String GLCodeContains = null; public String GLCodeLike = null; public ArrayList GLCodeBetween = null; public ArrayList GLCodeIn = null; public String JB_Groups_RecID = null; public String JB_Groups_RecIDStartsWith = null; public String JB_Groups_RecIDEndsWith = null; public String JB_Groups_RecIDContains = null; public String JB_Groups_RecIDLike = null; public ArrayList JB_Groups_RecIDBetween = null; public ArrayList JB_Groups_RecIDIn = null; public String getRecID() { return RecID; } public JB_StaffsQuery setRecID(String value) { this.RecID = value; return this; } public String getRecIDStartsWith() { return RecIDStartsWith; } public JB_StaffsQuery setRecIDStartsWith(String value) { this.RecIDStartsWith = value; return this; } public String getRecIDEndsWith() { return RecIDEndsWith; } public JB_StaffsQuery setRecIDEndsWith(String value) { this.RecIDEndsWith = value; return this; } public String getRecIDContains() { return RecIDContains; } public JB_StaffsQuery setRecIDContains(String value) { this.RecIDContains = value; return this; } public String getRecIDLike() { return RecIDLike; } public JB_StaffsQuery setRecIDLike(String value) { this.RecIDLike = value; return this; } public ArrayList getRecIDBetween() { return RecIDBetween; } public JB_StaffsQuery setRecIDBetween(ArrayList value) { this.RecIDBetween = value; return this; } public ArrayList getRecIDIn() { return RecIDIn; } public JB_StaffsQuery setRecIDIn(ArrayList value) { this.RecIDIn = value; return this; } public String getRecNum() { return RecNum; } public JB_StaffsQuery setRecNum(String value) { this.RecNum = value; return this; } public String getRecNumStartsWith() { return RecNumStartsWith; } public JB_StaffsQuery setRecNumStartsWith(String value) { this.RecNumStartsWith = value; return this; } public String getRecNumEndsWith() { return RecNumEndsWith; } public JB_StaffsQuery setRecNumEndsWith(String value) { this.RecNumEndsWith = value; return this; } public String getRecNumContains() { return RecNumContains; } public JB_StaffsQuery setRecNumContains(String value) { this.RecNumContains = value; return this; } public String getRecNumLike() { return RecNumLike; } public JB_StaffsQuery setRecNumLike(String value) { this.RecNumLike = value; return this; } public ArrayList getRecNumBetween() { return RecNumBetween; } public JB_StaffsQuery setRecNumBetween(ArrayList value) { this.RecNumBetween = value; return this; } public ArrayList getRecNumIn() { return RecNumIn; } public JB_StaffsQuery setRecNumIn(ArrayList value) { this.RecNumIn = value; return this; } public String getRecDescription() { return RecDescription; } public JB_StaffsQuery setRecDescription(String value) { this.RecDescription = value; return this; } public String getRecDescriptionStartsWith() { return RecDescriptionStartsWith; } public JB_StaffsQuery setRecDescriptionStartsWith(String value) { this.RecDescriptionStartsWith = value; return this; } public String getRecDescriptionEndsWith() { return RecDescriptionEndsWith; } public JB_StaffsQuery setRecDescriptionEndsWith(String value) { this.RecDescriptionEndsWith = value; return this; } public String getRecDescriptionContains() { return RecDescriptionContains; } public JB_StaffsQuery setRecDescriptionContains(String value) { this.RecDescriptionContains = value; return this; } public String getRecDescriptionLike() { return RecDescriptionLike; } public JB_StaffsQuery setRecDescriptionLike(String value) { this.RecDescriptionLike = value; return this; } public ArrayList getRecDescriptionBetween() { return RecDescriptionBetween; } public JB_StaffsQuery setRecDescriptionBetween(ArrayList value) { this.RecDescriptionBetween = value; return this; } public ArrayList getRecDescriptionIn() { return RecDescriptionIn; } public JB_StaffsQuery setRecDescriptionIn(ArrayList value) { this.RecDescriptionIn = value; return this; } public BigDecimal getCost() { return Cost; } public JB_StaffsQuery setCost(BigDecimal value) { this.Cost = value; return this; } public BigDecimal getCostGreaterThanOrEqualTo() { return CostGreaterThanOrEqualTo; } public JB_StaffsQuery setCostGreaterThanOrEqualTo(BigDecimal value) { this.CostGreaterThanOrEqualTo = value; return this; } public BigDecimal getCostGreaterThan() { return CostGreaterThan; } public JB_StaffsQuery setCostGreaterThan(BigDecimal value) { this.CostGreaterThan = value; return this; } public BigDecimal getCostLessThan() { return CostLessThan; } public JB_StaffsQuery setCostLessThan(BigDecimal value) { this.CostLessThan = value; return this; } public BigDecimal getCostLessThanOrEqualTo() { return CostLessThanOrEqualTo; } public JB_StaffsQuery setCostLessThanOrEqualTo(BigDecimal value) { this.CostLessThanOrEqualTo = value; return this; } public BigDecimal getCostNotEqualTo() { return CostNotEqualTo; } public JB_StaffsQuery setCostNotEqualTo(BigDecimal value) { this.CostNotEqualTo = value; return this; } public ArrayList getCostBetween() { return CostBetween; } public JB_StaffsQuery setCostBetween(ArrayList value) { this.CostBetween = value; return this; } public ArrayList getCostIn() { return CostIn; } public JB_StaffsQuery setCostIn(ArrayList value) { this.CostIn = value; return this; } public BigDecimal getCharge() { return Charge; } public JB_StaffsQuery setCharge(BigDecimal value) { this.Charge = value; return this; } public BigDecimal getChargeGreaterThanOrEqualTo() { return ChargeGreaterThanOrEqualTo; } public JB_StaffsQuery setChargeGreaterThanOrEqualTo(BigDecimal value) { this.ChargeGreaterThanOrEqualTo = value; return this; } public BigDecimal getChargeGreaterThan() { return ChargeGreaterThan; } public JB_StaffsQuery setChargeGreaterThan(BigDecimal value) { this.ChargeGreaterThan = value; return this; } public BigDecimal getChargeLessThan() { return ChargeLessThan; } public JB_StaffsQuery setChargeLessThan(BigDecimal value) { this.ChargeLessThan = value; return this; } public BigDecimal getChargeLessThanOrEqualTo() { return ChargeLessThanOrEqualTo; } public JB_StaffsQuery setChargeLessThanOrEqualTo(BigDecimal value) { this.ChargeLessThanOrEqualTo = value; return this; } public BigDecimal getChargeNotEqualTo() { return ChargeNotEqualTo; } public JB_StaffsQuery setChargeNotEqualTo(BigDecimal value) { this.ChargeNotEqualTo = value; return this; } public ArrayList getChargeBetween() { return ChargeBetween; } public JB_StaffsQuery setChargeBetween(ArrayList value) { this.ChargeBetween = value; return this; } public ArrayList getChargeIn() { return ChargeIn; } public JB_StaffsQuery setChargeIn(ArrayList value) { this.ChargeIn = value; return this; } public String getUnit() { return Unit; } public JB_StaffsQuery setUnit(String value) { this.Unit = value; return this; } public String getUnitStartsWith() { return UnitStartsWith; } public JB_StaffsQuery setUnitStartsWith(String value) { this.UnitStartsWith = value; return this; } public String getUnitEndsWith() { return UnitEndsWith; } public JB_StaffsQuery setUnitEndsWith(String value) { this.UnitEndsWith = value; return this; } public String getUnitContains() { return UnitContains; } public JB_StaffsQuery setUnitContains(String value) { this.UnitContains = value; return this; } public String getUnitLike() { return UnitLike; } public JB_StaffsQuery setUnitLike(String value) { this.UnitLike = value; return this; } public ArrayList getUnitBetween() { return UnitBetween; } public JB_StaffsQuery setUnitBetween(ArrayList value) { this.UnitBetween = value; return this; } public ArrayList getUnitIn() { return UnitIn; } public JB_StaffsQuery setUnitIn(ArrayList value) { this.UnitIn = value; return this; } public Boolean getIsEnabled() { return IsEnabled; } public JB_StaffsQuery setIsEnabled(Boolean value) { this.IsEnabled = value; return this; } public String getNote() { return Note; } public JB_StaffsQuery setNote(String value) { this.Note = value; return this; } public String getNoteStartsWith() { return NoteStartsWith; } public JB_StaffsQuery setNoteStartsWith(String value) { this.NoteStartsWith = value; return this; } public String getNoteEndsWith() { return NoteEndsWith; } public JB_StaffsQuery setNoteEndsWith(String value) { this.NoteEndsWith = value; return this; } public String getNoteContains() { return NoteContains; } public JB_StaffsQuery setNoteContains(String value) { this.NoteContains = value; return this; } public String getNoteLike() { return NoteLike; } public JB_StaffsQuery setNoteLike(String value) { this.NoteLike = value; return this; } public ArrayList getNoteBetween() { return NoteBetween; } public JB_StaffsQuery setNoteBetween(ArrayList value) { this.NoteBetween = value; return this; } public ArrayList getNoteIn() { return NoteIn; } public JB_StaffsQuery setNoteIn(ArrayList value) { this.NoteIn = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public JB_StaffsQuery setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getLastSavedDateTimeGreaterThanOrEqualTo() { return LastSavedDateTimeGreaterThanOrEqualTo; } public JB_StaffsQuery setLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.LastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeGreaterThan() { return LastSavedDateTimeGreaterThan; } public JB_StaffsQuery setLastSavedDateTimeGreaterThan(Date value) { this.LastSavedDateTimeGreaterThan = value; return this; } public Date getLastSavedDateTimeLessThan() { return LastSavedDateTimeLessThan; } public JB_StaffsQuery setLastSavedDateTimeLessThan(Date value) { this.LastSavedDateTimeLessThan = value; return this; } public Date getLastSavedDateTimeLessThanOrEqualTo() { return LastSavedDateTimeLessThanOrEqualTo; } public JB_StaffsQuery setLastSavedDateTimeLessThanOrEqualTo(Date value) { this.LastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeNotEqualTo() { return LastSavedDateTimeNotEqualTo; } public JB_StaffsQuery setLastSavedDateTimeNotEqualTo(Date value) { this.LastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getLastSavedDateTimeBetween() { return LastSavedDateTimeBetween; } public JB_StaffsQuery setLastSavedDateTimeBetween(ArrayList value) { this.LastSavedDateTimeBetween = value; return this; } public ArrayList getLastSavedDateTimeIn() { return LastSavedDateTimeIn; } public JB_StaffsQuery setLastSavedDateTimeIn(ArrayList value) { this.LastSavedDateTimeIn = value; return this; } public String getGlCode() { return GLCode; } public JB_StaffsQuery setGlCode(String value) { this.GLCode = value; return this; } public String getGlCodeStartsWith() { return GLCodeStartsWith; } public JB_StaffsQuery setGlCodeStartsWith(String value) { this.GLCodeStartsWith = value; return this; } public String getGlCodeEndsWith() { return GLCodeEndsWith; } public JB_StaffsQuery setGlCodeEndsWith(String value) { this.GLCodeEndsWith = value; return this; } public String getGlCodeContains() { return GLCodeContains; } public JB_StaffsQuery setGlCodeContains(String value) { this.GLCodeContains = value; return this; } public String getGlCodeLike() { return GLCodeLike; } public JB_StaffsQuery setGlCodeLike(String value) { this.GLCodeLike = value; return this; } public ArrayList getGlCodeBetween() { return GLCodeBetween; } public JB_StaffsQuery setGlCodeBetween(ArrayList value) { this.GLCodeBetween = value; return this; } public ArrayList getGlCodeIn() { return GLCodeIn; } public JB_StaffsQuery setGlCodeIn(ArrayList value) { this.GLCodeIn = value; return this; } public String getJbGroupsRecID() { return JB_Groups_RecID; } public JB_StaffsQuery setJbGroupsRecID(String value) { this.JB_Groups_RecID = value; return this; } public String getJbGroupsRecIDStartsWith() { return JB_Groups_RecIDStartsWith; } public JB_StaffsQuery setJbGroupsRecIDStartsWith(String value) { this.JB_Groups_RecIDStartsWith = value; return this; } public String getJbGroupsRecIDEndsWith() { return JB_Groups_RecIDEndsWith; } public JB_StaffsQuery setJbGroupsRecIDEndsWith(String value) { this.JB_Groups_RecIDEndsWith = value; return this; } public String getJbGroupsRecIDContains() { return JB_Groups_RecIDContains; } public JB_StaffsQuery setJbGroupsRecIDContains(String value) { this.JB_Groups_RecIDContains = value; return this; } public String getJbGroupsRecIDLike() { return JB_Groups_RecIDLike; } public JB_StaffsQuery setJbGroupsRecIDLike(String value) { this.JB_Groups_RecIDLike = value; return this; } public ArrayList getJbGroupsRecIDBetween() { return JB_Groups_RecIDBetween; } public JB_StaffsQuery setJbGroupsRecIDBetween(ArrayList value) { this.JB_Groups_RecIDBetween = value; return this; } public ArrayList getJbGroupsRecIDIn() { return JB_Groups_RecIDIn; } public JB_StaffsQuery setJbGroupsRecIDIn(ArrayList value) { this.JB_Groups_RecIDIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class JB_StagesQuery extends QueryDb implements IReturn> { public String RecID = null; public String RecIDStartsWith = null; public String RecIDEndsWith = null; public String RecIDContains = null; public String RecIDLike = null; public ArrayList RecIDBetween = null; public ArrayList RecIDIn = null; public String StageNo = null; public String StageNoStartsWith = null; public String StageNoEndsWith = null; public String StageNoContains = null; public String StageNoLike = null; public ArrayList StageNoBetween = null; public ArrayList StageNoIn = null; public String Name = null; public String NameStartsWith = null; public String NameEndsWith = null; public String NameContains = null; public String NameLike = null; public ArrayList NameBetween = null; public ArrayList NameIn = null; public String Description = null; public String DescriptionStartsWith = null; public String DescriptionEndsWith = null; public String DescriptionContains = null; public String DescriptionLike = null; public ArrayList DescriptionBetween = null; public ArrayList DescriptionIn = null; public Boolean IsEnabled = null; public ArrayList RowHash = null; public String getRecID() { return RecID; } public JB_StagesQuery setRecID(String value) { this.RecID = value; return this; } public String getRecIDStartsWith() { return RecIDStartsWith; } public JB_StagesQuery setRecIDStartsWith(String value) { this.RecIDStartsWith = value; return this; } public String getRecIDEndsWith() { return RecIDEndsWith; } public JB_StagesQuery setRecIDEndsWith(String value) { this.RecIDEndsWith = value; return this; } public String getRecIDContains() { return RecIDContains; } public JB_StagesQuery setRecIDContains(String value) { this.RecIDContains = value; return this; } public String getRecIDLike() { return RecIDLike; } public JB_StagesQuery setRecIDLike(String value) { this.RecIDLike = value; return this; } public ArrayList getRecIDBetween() { return RecIDBetween; } public JB_StagesQuery setRecIDBetween(ArrayList value) { this.RecIDBetween = value; return this; } public ArrayList getRecIDIn() { return RecIDIn; } public JB_StagesQuery setRecIDIn(ArrayList value) { this.RecIDIn = value; return this; } public String getStageNo() { return StageNo; } public JB_StagesQuery setStageNo(String value) { this.StageNo = value; return this; } public String getStageNoStartsWith() { return StageNoStartsWith; } public JB_StagesQuery setStageNoStartsWith(String value) { this.StageNoStartsWith = value; return this; } public String getStageNoEndsWith() { return StageNoEndsWith; } public JB_StagesQuery setStageNoEndsWith(String value) { this.StageNoEndsWith = value; return this; } public String getStageNoContains() { return StageNoContains; } public JB_StagesQuery setStageNoContains(String value) { this.StageNoContains = value; return this; } public String getStageNoLike() { return StageNoLike; } public JB_StagesQuery setStageNoLike(String value) { this.StageNoLike = value; return this; } public ArrayList getStageNoBetween() { return StageNoBetween; } public JB_StagesQuery setStageNoBetween(ArrayList value) { this.StageNoBetween = value; return this; } public ArrayList getStageNoIn() { return StageNoIn; } public JB_StagesQuery setStageNoIn(ArrayList value) { this.StageNoIn = value; return this; } public String getName() { return Name; } public JB_StagesQuery setName(String value) { this.Name = value; return this; } public String getNameStartsWith() { return NameStartsWith; } public JB_StagesQuery setNameStartsWith(String value) { this.NameStartsWith = value; return this; } public String getNameEndsWith() { return NameEndsWith; } public JB_StagesQuery setNameEndsWith(String value) { this.NameEndsWith = value; return this; } public String getNameContains() { return NameContains; } public JB_StagesQuery setNameContains(String value) { this.NameContains = value; return this; } public String getNameLike() { return NameLike; } public JB_StagesQuery setNameLike(String value) { this.NameLike = value; return this; } public ArrayList getNameBetween() { return NameBetween; } public JB_StagesQuery setNameBetween(ArrayList value) { this.NameBetween = value; return this; } public ArrayList getNameIn() { return NameIn; } public JB_StagesQuery setNameIn(ArrayList value) { this.NameIn = value; return this; } public String getDescription() { return Description; } public JB_StagesQuery setDescription(String value) { this.Description = value; return this; } public String getDescriptionStartsWith() { return DescriptionStartsWith; } public JB_StagesQuery setDescriptionStartsWith(String value) { this.DescriptionStartsWith = value; return this; } public String getDescriptionEndsWith() { return DescriptionEndsWith; } public JB_StagesQuery setDescriptionEndsWith(String value) { this.DescriptionEndsWith = value; return this; } public String getDescriptionContains() { return DescriptionContains; } public JB_StagesQuery setDescriptionContains(String value) { this.DescriptionContains = value; return this; } public String getDescriptionLike() { return DescriptionLike; } public JB_StagesQuery setDescriptionLike(String value) { this.DescriptionLike = value; return this; } public ArrayList getDescriptionBetween() { return DescriptionBetween; } public JB_StagesQuery setDescriptionBetween(ArrayList value) { this.DescriptionBetween = value; return this; } public ArrayList getDescriptionIn() { return DescriptionIn; } public JB_StagesQuery setDescriptionIn(ArrayList value) { this.DescriptionIn = value; return this; } public Boolean getIsEnabled() { return IsEnabled; } public JB_StagesQuery setIsEnabled(Boolean value) { this.IsEnabled = value; return this; } public ArrayList getRowHash() { return RowHash; } public JB_StagesQuery setRowHash(ArrayList value) { this.RowHash = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class JB_StatusesQuery extends QueryDb implements IReturn> { public String RecID = null; public String RecIDStartsWith = null; public String RecIDEndsWith = null; public String RecIDContains = null; public String RecIDLike = null; public ArrayList RecIDBetween = null; public ArrayList RecIDIn = null; public String Name = null; public String NameStartsWith = null; public String NameEndsWith = null; public String NameContains = null; public String NameLike = null; public ArrayList NameBetween = null; public ArrayList NameIn = null; public String Description = null; public String DescriptionStartsWith = null; public String DescriptionEndsWith = null; public String DescriptionContains = null; public String DescriptionLike = null; public ArrayList DescriptionBetween = null; public ArrayList DescriptionIn = null; public Integer ItemNo = null; public Integer ItemNoGreaterThanOrEqualTo = null; public Integer ItemNoGreaterThan = null; public Integer ItemNoLessThan = null; public Integer ItemNoLessThanOrEqualTo = null; public Integer ItemNoNotEqualTo = null; public ArrayList ItemNoBetween = null; public ArrayList ItemNoIn = null; public Boolean IsEnabled = null; public ArrayList RowHash = null; public Boolean IsDefault = null; public String getRecID() { return RecID; } public JB_StatusesQuery setRecID(String value) { this.RecID = value; return this; } public String getRecIDStartsWith() { return RecIDStartsWith; } public JB_StatusesQuery setRecIDStartsWith(String value) { this.RecIDStartsWith = value; return this; } public String getRecIDEndsWith() { return RecIDEndsWith; } public JB_StatusesQuery setRecIDEndsWith(String value) { this.RecIDEndsWith = value; return this; } public String getRecIDContains() { return RecIDContains; } public JB_StatusesQuery setRecIDContains(String value) { this.RecIDContains = value; return this; } public String getRecIDLike() { return RecIDLike; } public JB_StatusesQuery setRecIDLike(String value) { this.RecIDLike = value; return this; } public ArrayList getRecIDBetween() { return RecIDBetween; } public JB_StatusesQuery setRecIDBetween(ArrayList value) { this.RecIDBetween = value; return this; } public ArrayList getRecIDIn() { return RecIDIn; } public JB_StatusesQuery setRecIDIn(ArrayList value) { this.RecIDIn = value; return this; } public String getName() { return Name; } public JB_StatusesQuery setName(String value) { this.Name = value; return this; } public String getNameStartsWith() { return NameStartsWith; } public JB_StatusesQuery setNameStartsWith(String value) { this.NameStartsWith = value; return this; } public String getNameEndsWith() { return NameEndsWith; } public JB_StatusesQuery setNameEndsWith(String value) { this.NameEndsWith = value; return this; } public String getNameContains() { return NameContains; } public JB_StatusesQuery setNameContains(String value) { this.NameContains = value; return this; } public String getNameLike() { return NameLike; } public JB_StatusesQuery setNameLike(String value) { this.NameLike = value; return this; } public ArrayList getNameBetween() { return NameBetween; } public JB_StatusesQuery setNameBetween(ArrayList value) { this.NameBetween = value; return this; } public ArrayList getNameIn() { return NameIn; } public JB_StatusesQuery setNameIn(ArrayList value) { this.NameIn = value; return this; } public String getDescription() { return Description; } public JB_StatusesQuery setDescription(String value) { this.Description = value; return this; } public String getDescriptionStartsWith() { return DescriptionStartsWith; } public JB_StatusesQuery setDescriptionStartsWith(String value) { this.DescriptionStartsWith = value; return this; } public String getDescriptionEndsWith() { return DescriptionEndsWith; } public JB_StatusesQuery setDescriptionEndsWith(String value) { this.DescriptionEndsWith = value; return this; } public String getDescriptionContains() { return DescriptionContains; } public JB_StatusesQuery setDescriptionContains(String value) { this.DescriptionContains = value; return this; } public String getDescriptionLike() { return DescriptionLike; } public JB_StatusesQuery setDescriptionLike(String value) { this.DescriptionLike = value; return this; } public ArrayList getDescriptionBetween() { return DescriptionBetween; } public JB_StatusesQuery setDescriptionBetween(ArrayList value) { this.DescriptionBetween = value; return this; } public ArrayList getDescriptionIn() { return DescriptionIn; } public JB_StatusesQuery setDescriptionIn(ArrayList value) { this.DescriptionIn = value; return this; } public Integer getItemNo() { return ItemNo; } public JB_StatusesQuery setItemNo(Integer value) { this.ItemNo = value; return this; } public Integer getItemNoGreaterThanOrEqualTo() { return ItemNoGreaterThanOrEqualTo; } public JB_StatusesQuery setItemNoGreaterThanOrEqualTo(Integer value) { this.ItemNoGreaterThanOrEqualTo = value; return this; } public Integer getItemNoGreaterThan() { return ItemNoGreaterThan; } public JB_StatusesQuery setItemNoGreaterThan(Integer value) { this.ItemNoGreaterThan = value; return this; } public Integer getItemNoLessThan() { return ItemNoLessThan; } public JB_StatusesQuery setItemNoLessThan(Integer value) { this.ItemNoLessThan = value; return this; } public Integer getItemNoLessThanOrEqualTo() { return ItemNoLessThanOrEqualTo; } public JB_StatusesQuery setItemNoLessThanOrEqualTo(Integer value) { this.ItemNoLessThanOrEqualTo = value; return this; } public Integer getItemNoNotEqualTo() { return ItemNoNotEqualTo; } public JB_StatusesQuery setItemNoNotEqualTo(Integer value) { this.ItemNoNotEqualTo = value; return this; } public ArrayList getItemNoBetween() { return ItemNoBetween; } public JB_StatusesQuery setItemNoBetween(ArrayList value) { this.ItemNoBetween = value; return this; } public ArrayList getItemNoIn() { return ItemNoIn; } public JB_StatusesQuery setItemNoIn(ArrayList value) { this.ItemNoIn = value; return this; } public Boolean getIsEnabled() { return IsEnabled; } public JB_StatusesQuery setIsEnabled(Boolean value) { this.IsEnabled = value; return this; } public ArrayList getRowHash() { return RowHash; } public JB_StatusesQuery setRowHash(ArrayList value) { this.RowHash = value; return this; } public Boolean getIsDefault() { return IsDefault; } public JB_StatusesQuery setIsDefault(Boolean value) { this.IsDefault = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class JB_TimesheetLinesQuery extends QueryDb implements IReturn> { public String RecID = null; public String RecIDStartsWith = null; public String RecIDEndsWith = null; public String RecIDContains = null; public String RecIDLike = null; public ArrayList RecIDBetween = null; public ArrayList RecIDIn = null; public String JB_Timesheets_RecID = null; public String JB_Timesheets_RecIDStartsWith = null; public String JB_Timesheets_RecIDEndsWith = null; public String JB_Timesheets_RecIDContains = null; public String JB_Timesheets_RecIDLike = null; public ArrayList JB_Timesheets_RecIDBetween = null; public ArrayList JB_Timesheets_RecIDIn = null; public String JB_JobStages_RecID = null; public String JB_JobStages_RecIDStartsWith = null; public String JB_JobStages_RecIDEndsWith = null; public String JB_JobStages_RecIDContains = null; public String JB_JobStages_RecIDLike = null; public ArrayList JB_JobStages_RecIDBetween = null; public ArrayList JB_JobStages_RecIDIn = null; public Date TransactionDate = null; public Date TransactionDateGreaterThanOrEqualTo = null; public Date TransactionDateGreaterThan = null; public Date TransactionDateLessThan = null; public Date TransactionDateLessThanOrEqualTo = null; public Date TransactionDateNotEqualTo = null; public ArrayList TransactionDateBetween = null; public ArrayList TransactionDateIn = null; public BigDecimal Quantity = null; public BigDecimal QuantityGreaterThanOrEqualTo = null; public BigDecimal QuantityGreaterThan = null; public BigDecimal QuantityLessThan = null; public BigDecimal QuantityLessThanOrEqualTo = null; public BigDecimal QuantityNotEqualTo = null; public ArrayList QuantityBetween = null; public ArrayList QuantityIn = null; public BigDecimal UnitCost = null; public BigDecimal UnitCostGreaterThanOrEqualTo = null; public BigDecimal UnitCostGreaterThan = null; public BigDecimal UnitCostLessThan = null; public BigDecimal UnitCostLessThanOrEqualTo = null; public BigDecimal UnitCostNotEqualTo = null; public ArrayList UnitCostBetween = null; public ArrayList UnitCostIn = null; public BigDecimal UnitCharge = null; public BigDecimal UnitChargeGreaterThanOrEqualTo = null; public BigDecimal UnitChargeGreaterThan = null; public BigDecimal UnitChargeLessThan = null; public BigDecimal UnitChargeLessThanOrEqualTo = null; public BigDecimal UnitChargeNotEqualTo = null; public ArrayList UnitChargeBetween = null; public ArrayList UnitChargeIn = null; public String Remark = null; public String RemarkStartsWith = null; public String RemarkEndsWith = null; public String RemarkContains = null; public String RemarkLike = null; public ArrayList RemarkBetween = null; public ArrayList RemarkIn = null; public Integer ItemNo = null; public Integer ItemNoGreaterThanOrEqualTo = null; public Integer ItemNoGreaterThan = null; public Integer ItemNoLessThan = null; public Integer ItemNoLessThanOrEqualTo = null; public Integer ItemNoNotEqualTo = null; public ArrayList ItemNoBetween = null; public ArrayList ItemNoIn = null; public Date LastSavedDateTime = null; public Date LastSavedDateTimeGreaterThanOrEqualTo = null; public Date LastSavedDateTimeGreaterThan = null; public Date LastSavedDateTimeLessThan = null; public Date LastSavedDateTimeLessThanOrEqualTo = null; public Date LastSavedDateTimeNotEqualTo = null; public ArrayList LastSavedDateTimeBetween = null; public ArrayList LastSavedDateTimeIn = null; public String HR_Staff_RecID = null; public String HR_Staff_RecIDStartsWith = null; public String HR_Staff_RecIDEndsWith = null; public String HR_Staff_RecIDContains = null; public String HR_Staff_RecIDLike = null; public ArrayList HR_Staff_RecIDBetween = null; public ArrayList HR_Staff_RecIDIn = null; public ArrayList RowHash = null; public String getRecID() { return RecID; } public JB_TimesheetLinesQuery setRecID(String value) { this.RecID = value; return this; } public String getRecIDStartsWith() { return RecIDStartsWith; } public JB_TimesheetLinesQuery setRecIDStartsWith(String value) { this.RecIDStartsWith = value; return this; } public String getRecIDEndsWith() { return RecIDEndsWith; } public JB_TimesheetLinesQuery setRecIDEndsWith(String value) { this.RecIDEndsWith = value; return this; } public String getRecIDContains() { return RecIDContains; } public JB_TimesheetLinesQuery setRecIDContains(String value) { this.RecIDContains = value; return this; } public String getRecIDLike() { return RecIDLike; } public JB_TimesheetLinesQuery setRecIDLike(String value) { this.RecIDLike = value; return this; } public ArrayList getRecIDBetween() { return RecIDBetween; } public JB_TimesheetLinesQuery setRecIDBetween(ArrayList value) { this.RecIDBetween = value; return this; } public ArrayList getRecIDIn() { return RecIDIn; } public JB_TimesheetLinesQuery setRecIDIn(ArrayList value) { this.RecIDIn = value; return this; } public String getJbTimesheetsRecID() { return JB_Timesheets_RecID; } public JB_TimesheetLinesQuery setJbTimesheetsRecID(String value) { this.JB_Timesheets_RecID = value; return this; } public String getJbTimesheetsRecIDStartsWith() { return JB_Timesheets_RecIDStartsWith; } public JB_TimesheetLinesQuery setJbTimesheetsRecIDStartsWith(String value) { this.JB_Timesheets_RecIDStartsWith = value; return this; } public String getJbTimesheetsRecIDEndsWith() { return JB_Timesheets_RecIDEndsWith; } public JB_TimesheetLinesQuery setJbTimesheetsRecIDEndsWith(String value) { this.JB_Timesheets_RecIDEndsWith = value; return this; } public String getJbTimesheetsRecIDContains() { return JB_Timesheets_RecIDContains; } public JB_TimesheetLinesQuery setJbTimesheetsRecIDContains(String value) { this.JB_Timesheets_RecIDContains = value; return this; } public String getJbTimesheetsRecIDLike() { return JB_Timesheets_RecIDLike; } public JB_TimesheetLinesQuery setJbTimesheetsRecIDLike(String value) { this.JB_Timesheets_RecIDLike = value; return this; } public ArrayList getJbTimesheetsRecIDBetween() { return JB_Timesheets_RecIDBetween; } public JB_TimesheetLinesQuery setJbTimesheetsRecIDBetween(ArrayList value) { this.JB_Timesheets_RecIDBetween = value; return this; } public ArrayList getJbTimesheetsRecIDIn() { return JB_Timesheets_RecIDIn; } public JB_TimesheetLinesQuery setJbTimesheetsRecIDIn(ArrayList value) { this.JB_Timesheets_RecIDIn = value; return this; } public String getJbJobStagesRecID() { return JB_JobStages_RecID; } public JB_TimesheetLinesQuery setJbJobStagesRecID(String value) { this.JB_JobStages_RecID = value; return this; } public String getJbJobStagesRecIDStartsWith() { return JB_JobStages_RecIDStartsWith; } public JB_TimesheetLinesQuery setJbJobStagesRecIDStartsWith(String value) { this.JB_JobStages_RecIDStartsWith = value; return this; } public String getJbJobStagesRecIDEndsWith() { return JB_JobStages_RecIDEndsWith; } public JB_TimesheetLinesQuery setJbJobStagesRecIDEndsWith(String value) { this.JB_JobStages_RecIDEndsWith = value; return this; } public String getJbJobStagesRecIDContains() { return JB_JobStages_RecIDContains; } public JB_TimesheetLinesQuery setJbJobStagesRecIDContains(String value) { this.JB_JobStages_RecIDContains = value; return this; } public String getJbJobStagesRecIDLike() { return JB_JobStages_RecIDLike; } public JB_TimesheetLinesQuery setJbJobStagesRecIDLike(String value) { this.JB_JobStages_RecIDLike = value; return this; } public ArrayList getJbJobStagesRecIDBetween() { return JB_JobStages_RecIDBetween; } public JB_TimesheetLinesQuery setJbJobStagesRecIDBetween(ArrayList value) { this.JB_JobStages_RecIDBetween = value; return this; } public ArrayList getJbJobStagesRecIDIn() { return JB_JobStages_RecIDIn; } public JB_TimesheetLinesQuery setJbJobStagesRecIDIn(ArrayList value) { this.JB_JobStages_RecIDIn = value; return this; } public Date getTransactionDate() { return TransactionDate; } public JB_TimesheetLinesQuery setTransactionDate(Date value) { this.TransactionDate = value; return this; } public Date getTransactionDateGreaterThanOrEqualTo() { return TransactionDateGreaterThanOrEqualTo; } public JB_TimesheetLinesQuery setTransactionDateGreaterThanOrEqualTo(Date value) { this.TransactionDateGreaterThanOrEqualTo = value; return this; } public Date getTransactionDateGreaterThan() { return TransactionDateGreaterThan; } public JB_TimesheetLinesQuery setTransactionDateGreaterThan(Date value) { this.TransactionDateGreaterThan = value; return this; } public Date getTransactionDateLessThan() { return TransactionDateLessThan; } public JB_TimesheetLinesQuery setTransactionDateLessThan(Date value) { this.TransactionDateLessThan = value; return this; } public Date getTransactionDateLessThanOrEqualTo() { return TransactionDateLessThanOrEqualTo; } public JB_TimesheetLinesQuery setTransactionDateLessThanOrEqualTo(Date value) { this.TransactionDateLessThanOrEqualTo = value; return this; } public Date getTransactionDateNotEqualTo() { return TransactionDateNotEqualTo; } public JB_TimesheetLinesQuery setTransactionDateNotEqualTo(Date value) { this.TransactionDateNotEqualTo = value; return this; } public ArrayList getTransactionDateBetween() { return TransactionDateBetween; } public JB_TimesheetLinesQuery setTransactionDateBetween(ArrayList value) { this.TransactionDateBetween = value; return this; } public ArrayList getTransactionDateIn() { return TransactionDateIn; } public JB_TimesheetLinesQuery setTransactionDateIn(ArrayList value) { this.TransactionDateIn = value; return this; } public BigDecimal getQuantity() { return Quantity; } public JB_TimesheetLinesQuery setQuantity(BigDecimal value) { this.Quantity = value; return this; } public BigDecimal getQuantityGreaterThanOrEqualTo() { return QuantityGreaterThanOrEqualTo; } public JB_TimesheetLinesQuery setQuantityGreaterThanOrEqualTo(BigDecimal value) { this.QuantityGreaterThanOrEqualTo = value; return this; } public BigDecimal getQuantityGreaterThan() { return QuantityGreaterThan; } public JB_TimesheetLinesQuery setQuantityGreaterThan(BigDecimal value) { this.QuantityGreaterThan = value; return this; } public BigDecimal getQuantityLessThan() { return QuantityLessThan; } public JB_TimesheetLinesQuery setQuantityLessThan(BigDecimal value) { this.QuantityLessThan = value; return this; } public BigDecimal getQuantityLessThanOrEqualTo() { return QuantityLessThanOrEqualTo; } public JB_TimesheetLinesQuery setQuantityLessThanOrEqualTo(BigDecimal value) { this.QuantityLessThanOrEqualTo = value; return this; } public BigDecimal getQuantityNotEqualTo() { return QuantityNotEqualTo; } public JB_TimesheetLinesQuery setQuantityNotEqualTo(BigDecimal value) { this.QuantityNotEqualTo = value; return this; } public ArrayList getQuantityBetween() { return QuantityBetween; } public JB_TimesheetLinesQuery setQuantityBetween(ArrayList value) { this.QuantityBetween = value; return this; } public ArrayList getQuantityIn() { return QuantityIn; } public JB_TimesheetLinesQuery setQuantityIn(ArrayList value) { this.QuantityIn = value; return this; } public BigDecimal getUnitCost() { return UnitCost; } public JB_TimesheetLinesQuery setUnitCost(BigDecimal value) { this.UnitCost = value; return this; } public BigDecimal getUnitCostGreaterThanOrEqualTo() { return UnitCostGreaterThanOrEqualTo; } public JB_TimesheetLinesQuery setUnitCostGreaterThanOrEqualTo(BigDecimal value) { this.UnitCostGreaterThanOrEqualTo = value; return this; } public BigDecimal getUnitCostGreaterThan() { return UnitCostGreaterThan; } public JB_TimesheetLinesQuery setUnitCostGreaterThan(BigDecimal value) { this.UnitCostGreaterThan = value; return this; } public BigDecimal getUnitCostLessThan() { return UnitCostLessThan; } public JB_TimesheetLinesQuery setUnitCostLessThan(BigDecimal value) { this.UnitCostLessThan = value; return this; } public BigDecimal getUnitCostLessThanOrEqualTo() { return UnitCostLessThanOrEqualTo; } public JB_TimesheetLinesQuery setUnitCostLessThanOrEqualTo(BigDecimal value) { this.UnitCostLessThanOrEqualTo = value; return this; } public BigDecimal getUnitCostNotEqualTo() { return UnitCostNotEqualTo; } public JB_TimesheetLinesQuery setUnitCostNotEqualTo(BigDecimal value) { this.UnitCostNotEqualTo = value; return this; } public ArrayList getUnitCostBetween() { return UnitCostBetween; } public JB_TimesheetLinesQuery setUnitCostBetween(ArrayList value) { this.UnitCostBetween = value; return this; } public ArrayList getUnitCostIn() { return UnitCostIn; } public JB_TimesheetLinesQuery setUnitCostIn(ArrayList value) { this.UnitCostIn = value; return this; } public BigDecimal getUnitCharge() { return UnitCharge; } public JB_TimesheetLinesQuery setUnitCharge(BigDecimal value) { this.UnitCharge = value; return this; } public BigDecimal getUnitChargeGreaterThanOrEqualTo() { return UnitChargeGreaterThanOrEqualTo; } public JB_TimesheetLinesQuery setUnitChargeGreaterThanOrEqualTo(BigDecimal value) { this.UnitChargeGreaterThanOrEqualTo = value; return this; } public BigDecimal getUnitChargeGreaterThan() { return UnitChargeGreaterThan; } public JB_TimesheetLinesQuery setUnitChargeGreaterThan(BigDecimal value) { this.UnitChargeGreaterThan = value; return this; } public BigDecimal getUnitChargeLessThan() { return UnitChargeLessThan; } public JB_TimesheetLinesQuery setUnitChargeLessThan(BigDecimal value) { this.UnitChargeLessThan = value; return this; } public BigDecimal getUnitChargeLessThanOrEqualTo() { return UnitChargeLessThanOrEqualTo; } public JB_TimesheetLinesQuery setUnitChargeLessThanOrEqualTo(BigDecimal value) { this.UnitChargeLessThanOrEqualTo = value; return this; } public BigDecimal getUnitChargeNotEqualTo() { return UnitChargeNotEqualTo; } public JB_TimesheetLinesQuery setUnitChargeNotEqualTo(BigDecimal value) { this.UnitChargeNotEqualTo = value; return this; } public ArrayList getUnitChargeBetween() { return UnitChargeBetween; } public JB_TimesheetLinesQuery setUnitChargeBetween(ArrayList value) { this.UnitChargeBetween = value; return this; } public ArrayList getUnitChargeIn() { return UnitChargeIn; } public JB_TimesheetLinesQuery setUnitChargeIn(ArrayList value) { this.UnitChargeIn = value; return this; } public String getRemark() { return Remark; } public JB_TimesheetLinesQuery setRemark(String value) { this.Remark = value; return this; } public String getRemarkStartsWith() { return RemarkStartsWith; } public JB_TimesheetLinesQuery setRemarkStartsWith(String value) { this.RemarkStartsWith = value; return this; } public String getRemarkEndsWith() { return RemarkEndsWith; } public JB_TimesheetLinesQuery setRemarkEndsWith(String value) { this.RemarkEndsWith = value; return this; } public String getRemarkContains() { return RemarkContains; } public JB_TimesheetLinesQuery setRemarkContains(String value) { this.RemarkContains = value; return this; } public String getRemarkLike() { return RemarkLike; } public JB_TimesheetLinesQuery setRemarkLike(String value) { this.RemarkLike = value; return this; } public ArrayList getRemarkBetween() { return RemarkBetween; } public JB_TimesheetLinesQuery setRemarkBetween(ArrayList value) { this.RemarkBetween = value; return this; } public ArrayList getRemarkIn() { return RemarkIn; } public JB_TimesheetLinesQuery setRemarkIn(ArrayList value) { this.RemarkIn = value; return this; } public Integer getItemNo() { return ItemNo; } public JB_TimesheetLinesQuery setItemNo(Integer value) { this.ItemNo = value; return this; } public Integer getItemNoGreaterThanOrEqualTo() { return ItemNoGreaterThanOrEqualTo; } public JB_TimesheetLinesQuery setItemNoGreaterThanOrEqualTo(Integer value) { this.ItemNoGreaterThanOrEqualTo = value; return this; } public Integer getItemNoGreaterThan() { return ItemNoGreaterThan; } public JB_TimesheetLinesQuery setItemNoGreaterThan(Integer value) { this.ItemNoGreaterThan = value; return this; } public Integer getItemNoLessThan() { return ItemNoLessThan; } public JB_TimesheetLinesQuery setItemNoLessThan(Integer value) { this.ItemNoLessThan = value; return this; } public Integer getItemNoLessThanOrEqualTo() { return ItemNoLessThanOrEqualTo; } public JB_TimesheetLinesQuery setItemNoLessThanOrEqualTo(Integer value) { this.ItemNoLessThanOrEqualTo = value; return this; } public Integer getItemNoNotEqualTo() { return ItemNoNotEqualTo; } public JB_TimesheetLinesQuery setItemNoNotEqualTo(Integer value) { this.ItemNoNotEqualTo = value; return this; } public ArrayList getItemNoBetween() { return ItemNoBetween; } public JB_TimesheetLinesQuery setItemNoBetween(ArrayList value) { this.ItemNoBetween = value; return this; } public ArrayList getItemNoIn() { return ItemNoIn; } public JB_TimesheetLinesQuery setItemNoIn(ArrayList value) { this.ItemNoIn = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public JB_TimesheetLinesQuery setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getLastSavedDateTimeGreaterThanOrEqualTo() { return LastSavedDateTimeGreaterThanOrEqualTo; } public JB_TimesheetLinesQuery setLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.LastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeGreaterThan() { return LastSavedDateTimeGreaterThan; } public JB_TimesheetLinesQuery setLastSavedDateTimeGreaterThan(Date value) { this.LastSavedDateTimeGreaterThan = value; return this; } public Date getLastSavedDateTimeLessThan() { return LastSavedDateTimeLessThan; } public JB_TimesheetLinesQuery setLastSavedDateTimeLessThan(Date value) { this.LastSavedDateTimeLessThan = value; return this; } public Date getLastSavedDateTimeLessThanOrEqualTo() { return LastSavedDateTimeLessThanOrEqualTo; } public JB_TimesheetLinesQuery setLastSavedDateTimeLessThanOrEqualTo(Date value) { this.LastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeNotEqualTo() { return LastSavedDateTimeNotEqualTo; } public JB_TimesheetLinesQuery setLastSavedDateTimeNotEqualTo(Date value) { this.LastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getLastSavedDateTimeBetween() { return LastSavedDateTimeBetween; } public JB_TimesheetLinesQuery setLastSavedDateTimeBetween(ArrayList value) { this.LastSavedDateTimeBetween = value; return this; } public ArrayList getLastSavedDateTimeIn() { return LastSavedDateTimeIn; } public JB_TimesheetLinesQuery setLastSavedDateTimeIn(ArrayList value) { this.LastSavedDateTimeIn = value; return this; } public String getHrStaffRecID() { return HR_Staff_RecID; } public JB_TimesheetLinesQuery setHrStaffRecID(String value) { this.HR_Staff_RecID = value; return this; } public String getHrStaffRecIDStartsWith() { return HR_Staff_RecIDStartsWith; } public JB_TimesheetLinesQuery setHrStaffRecIDStartsWith(String value) { this.HR_Staff_RecIDStartsWith = value; return this; } public String getHrStaffRecIDEndsWith() { return HR_Staff_RecIDEndsWith; } public JB_TimesheetLinesQuery setHrStaffRecIDEndsWith(String value) { this.HR_Staff_RecIDEndsWith = value; return this; } public String getHrStaffRecIDContains() { return HR_Staff_RecIDContains; } public JB_TimesheetLinesQuery setHrStaffRecIDContains(String value) { this.HR_Staff_RecIDContains = value; return this; } public String getHrStaffRecIDLike() { return HR_Staff_RecIDLike; } public JB_TimesheetLinesQuery setHrStaffRecIDLike(String value) { this.HR_Staff_RecIDLike = value; return this; } public ArrayList getHrStaffRecIDBetween() { return HR_Staff_RecIDBetween; } public JB_TimesheetLinesQuery setHrStaffRecIDBetween(ArrayList value) { this.HR_Staff_RecIDBetween = value; return this; } public ArrayList getHrStaffRecIDIn() { return HR_Staff_RecIDIn; } public JB_TimesheetLinesQuery setHrStaffRecIDIn(ArrayList value) { this.HR_Staff_RecIDIn = value; return this; } public ArrayList getRowHash() { return RowHash; } public JB_TimesheetLinesQuery setRowHash(ArrayList value) { this.RowHash = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class JB_TimesheetNotesQuery extends QueryDb implements IReturn> { public String RecID = null; public String RecIDStartsWith = null; public String RecIDEndsWith = null; public String RecIDContains = null; public String RecIDLike = null; public ArrayList RecIDBetween = null; public ArrayList RecIDIn = null; public String JB_Timesheets_RecID = null; public String JB_Timesheets_RecIDStartsWith = null; public String JB_Timesheets_RecIDEndsWith = null; public String JB_Timesheets_RecIDContains = null; public String JB_Timesheets_RecIDLike = null; public ArrayList JB_Timesheets_RecIDBetween = null; public ArrayList JB_Timesheets_RecIDIn = null; public String NoteTypeID = null; public String NoteTypeIDStartsWith = null; public String NoteTypeIDEndsWith = null; public String NoteTypeIDContains = null; public String NoteTypeIDLike = null; public ArrayList NoteTypeIDBetween = null; public ArrayList NoteTypeIDIn = null; public Date LastSavedDateTime = null; public Date LastSavedDateTimeGreaterThanOrEqualTo = null; public Date LastSavedDateTimeGreaterThan = null; public Date LastSavedDateTimeLessThan = null; public Date LastSavedDateTimeLessThanOrEqualTo = null; public Date LastSavedDateTimeNotEqualTo = null; public ArrayList LastSavedDateTimeBetween = null; public ArrayList LastSavedDateTimeIn = null; public String LastSavedByStaffID = null; public String LastSavedByStaffIDStartsWith = null; public String LastSavedByStaffIDEndsWith = null; public String LastSavedByStaffIDContains = null; public String LastSavedByStaffIDLike = null; public ArrayList LastSavedByStaffIDBetween = null; public ArrayList LastSavedByStaffIDIn = null; public String NoteText = null; public String NoteTextStartsWith = null; public String NoteTextEndsWith = null; public String NoteTextContains = null; public String NoteTextLike = null; public ArrayList NoteTextBetween = null; public ArrayList NoteTextIn = null; public Integer ItemNo = null; public Integer ItemNoGreaterThanOrEqualTo = null; public Integer ItemNoGreaterThan = null; public Integer ItemNoLessThan = null; public Integer ItemNoLessThanOrEqualTo = null; public Integer ItemNoNotEqualTo = null; public ArrayList ItemNoBetween = null; public ArrayList ItemNoIn = null; public String getRecID() { return RecID; } public JB_TimesheetNotesQuery setRecID(String value) { this.RecID = value; return this; } public String getRecIDStartsWith() { return RecIDStartsWith; } public JB_TimesheetNotesQuery setRecIDStartsWith(String value) { this.RecIDStartsWith = value; return this; } public String getRecIDEndsWith() { return RecIDEndsWith; } public JB_TimesheetNotesQuery setRecIDEndsWith(String value) { this.RecIDEndsWith = value; return this; } public String getRecIDContains() { return RecIDContains; } public JB_TimesheetNotesQuery setRecIDContains(String value) { this.RecIDContains = value; return this; } public String getRecIDLike() { return RecIDLike; } public JB_TimesheetNotesQuery setRecIDLike(String value) { this.RecIDLike = value; return this; } public ArrayList getRecIDBetween() { return RecIDBetween; } public JB_TimesheetNotesQuery setRecIDBetween(ArrayList value) { this.RecIDBetween = value; return this; } public ArrayList getRecIDIn() { return RecIDIn; } public JB_TimesheetNotesQuery setRecIDIn(ArrayList value) { this.RecIDIn = value; return this; } public String getJbTimesheetsRecID() { return JB_Timesheets_RecID; } public JB_TimesheetNotesQuery setJbTimesheetsRecID(String value) { this.JB_Timesheets_RecID = value; return this; } public String getJbTimesheetsRecIDStartsWith() { return JB_Timesheets_RecIDStartsWith; } public JB_TimesheetNotesQuery setJbTimesheetsRecIDStartsWith(String value) { this.JB_Timesheets_RecIDStartsWith = value; return this; } public String getJbTimesheetsRecIDEndsWith() { return JB_Timesheets_RecIDEndsWith; } public JB_TimesheetNotesQuery setJbTimesheetsRecIDEndsWith(String value) { this.JB_Timesheets_RecIDEndsWith = value; return this; } public String getJbTimesheetsRecIDContains() { return JB_Timesheets_RecIDContains; } public JB_TimesheetNotesQuery setJbTimesheetsRecIDContains(String value) { this.JB_Timesheets_RecIDContains = value; return this; } public String getJbTimesheetsRecIDLike() { return JB_Timesheets_RecIDLike; } public JB_TimesheetNotesQuery setJbTimesheetsRecIDLike(String value) { this.JB_Timesheets_RecIDLike = value; return this; } public ArrayList getJbTimesheetsRecIDBetween() { return JB_Timesheets_RecIDBetween; } public JB_TimesheetNotesQuery setJbTimesheetsRecIDBetween(ArrayList value) { this.JB_Timesheets_RecIDBetween = value; return this; } public ArrayList getJbTimesheetsRecIDIn() { return JB_Timesheets_RecIDIn; } public JB_TimesheetNotesQuery setJbTimesheetsRecIDIn(ArrayList value) { this.JB_Timesheets_RecIDIn = value; return this; } public String getNoteTypeID() { return NoteTypeID; } public JB_TimesheetNotesQuery setNoteTypeID(String value) { this.NoteTypeID = value; return this; } public String getNoteTypeIDStartsWith() { return NoteTypeIDStartsWith; } public JB_TimesheetNotesQuery setNoteTypeIDStartsWith(String value) { this.NoteTypeIDStartsWith = value; return this; } public String getNoteTypeIDEndsWith() { return NoteTypeIDEndsWith; } public JB_TimesheetNotesQuery setNoteTypeIDEndsWith(String value) { this.NoteTypeIDEndsWith = value; return this; } public String getNoteTypeIDContains() { return NoteTypeIDContains; } public JB_TimesheetNotesQuery setNoteTypeIDContains(String value) { this.NoteTypeIDContains = value; return this; } public String getNoteTypeIDLike() { return NoteTypeIDLike; } public JB_TimesheetNotesQuery setNoteTypeIDLike(String value) { this.NoteTypeIDLike = value; return this; } public ArrayList getNoteTypeIDBetween() { return NoteTypeIDBetween; } public JB_TimesheetNotesQuery setNoteTypeIDBetween(ArrayList value) { this.NoteTypeIDBetween = value; return this; } public ArrayList getNoteTypeIDIn() { return NoteTypeIDIn; } public JB_TimesheetNotesQuery setNoteTypeIDIn(ArrayList value) { this.NoteTypeIDIn = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public JB_TimesheetNotesQuery setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getLastSavedDateTimeGreaterThanOrEqualTo() { return LastSavedDateTimeGreaterThanOrEqualTo; } public JB_TimesheetNotesQuery setLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.LastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeGreaterThan() { return LastSavedDateTimeGreaterThan; } public JB_TimesheetNotesQuery setLastSavedDateTimeGreaterThan(Date value) { this.LastSavedDateTimeGreaterThan = value; return this; } public Date getLastSavedDateTimeLessThan() { return LastSavedDateTimeLessThan; } public JB_TimesheetNotesQuery setLastSavedDateTimeLessThan(Date value) { this.LastSavedDateTimeLessThan = value; return this; } public Date getLastSavedDateTimeLessThanOrEqualTo() { return LastSavedDateTimeLessThanOrEqualTo; } public JB_TimesheetNotesQuery setLastSavedDateTimeLessThanOrEqualTo(Date value) { this.LastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeNotEqualTo() { return LastSavedDateTimeNotEqualTo; } public JB_TimesheetNotesQuery setLastSavedDateTimeNotEqualTo(Date value) { this.LastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getLastSavedDateTimeBetween() { return LastSavedDateTimeBetween; } public JB_TimesheetNotesQuery setLastSavedDateTimeBetween(ArrayList value) { this.LastSavedDateTimeBetween = value; return this; } public ArrayList getLastSavedDateTimeIn() { return LastSavedDateTimeIn; } public JB_TimesheetNotesQuery setLastSavedDateTimeIn(ArrayList value) { this.LastSavedDateTimeIn = value; return this; } public String getLastSavedByStaffID() { return LastSavedByStaffID; } public JB_TimesheetNotesQuery setLastSavedByStaffID(String value) { this.LastSavedByStaffID = value; return this; } public String getLastSavedByStaffIDStartsWith() { return LastSavedByStaffIDStartsWith; } public JB_TimesheetNotesQuery setLastSavedByStaffIDStartsWith(String value) { this.LastSavedByStaffIDStartsWith = value; return this; } public String getLastSavedByStaffIDEndsWith() { return LastSavedByStaffIDEndsWith; } public JB_TimesheetNotesQuery setLastSavedByStaffIDEndsWith(String value) { this.LastSavedByStaffIDEndsWith = value; return this; } public String getLastSavedByStaffIDContains() { return LastSavedByStaffIDContains; } public JB_TimesheetNotesQuery setLastSavedByStaffIDContains(String value) { this.LastSavedByStaffIDContains = value; return this; } public String getLastSavedByStaffIDLike() { return LastSavedByStaffIDLike; } public JB_TimesheetNotesQuery setLastSavedByStaffIDLike(String value) { this.LastSavedByStaffIDLike = value; return this; } public ArrayList getLastSavedByStaffIDBetween() { return LastSavedByStaffIDBetween; } public JB_TimesheetNotesQuery setLastSavedByStaffIDBetween(ArrayList value) { this.LastSavedByStaffIDBetween = value; return this; } public ArrayList getLastSavedByStaffIDIn() { return LastSavedByStaffIDIn; } public JB_TimesheetNotesQuery setLastSavedByStaffIDIn(ArrayList value) { this.LastSavedByStaffIDIn = value; return this; } public String getNoteText() { return NoteText; } public JB_TimesheetNotesQuery setNoteText(String value) { this.NoteText = value; return this; } public String getNoteTextStartsWith() { return NoteTextStartsWith; } public JB_TimesheetNotesQuery setNoteTextStartsWith(String value) { this.NoteTextStartsWith = value; return this; } public String getNoteTextEndsWith() { return NoteTextEndsWith; } public JB_TimesheetNotesQuery setNoteTextEndsWith(String value) { this.NoteTextEndsWith = value; return this; } public String getNoteTextContains() { return NoteTextContains; } public JB_TimesheetNotesQuery setNoteTextContains(String value) { this.NoteTextContains = value; return this; } public String getNoteTextLike() { return NoteTextLike; } public JB_TimesheetNotesQuery setNoteTextLike(String value) { this.NoteTextLike = value; return this; } public ArrayList getNoteTextBetween() { return NoteTextBetween; } public JB_TimesheetNotesQuery setNoteTextBetween(ArrayList value) { this.NoteTextBetween = value; return this; } public ArrayList getNoteTextIn() { return NoteTextIn; } public JB_TimesheetNotesQuery setNoteTextIn(ArrayList value) { this.NoteTextIn = value; return this; } public Integer getItemNo() { return ItemNo; } public JB_TimesheetNotesQuery setItemNo(Integer value) { this.ItemNo = value; return this; } public Integer getItemNoGreaterThanOrEqualTo() { return ItemNoGreaterThanOrEqualTo; } public JB_TimesheetNotesQuery setItemNoGreaterThanOrEqualTo(Integer value) { this.ItemNoGreaterThanOrEqualTo = value; return this; } public Integer getItemNoGreaterThan() { return ItemNoGreaterThan; } public JB_TimesheetNotesQuery setItemNoGreaterThan(Integer value) { this.ItemNoGreaterThan = value; return this; } public Integer getItemNoLessThan() { return ItemNoLessThan; } public JB_TimesheetNotesQuery setItemNoLessThan(Integer value) { this.ItemNoLessThan = value; return this; } public Integer getItemNoLessThanOrEqualTo() { return ItemNoLessThanOrEqualTo; } public JB_TimesheetNotesQuery setItemNoLessThanOrEqualTo(Integer value) { this.ItemNoLessThanOrEqualTo = value; return this; } public Integer getItemNoNotEqualTo() { return ItemNoNotEqualTo; } public JB_TimesheetNotesQuery setItemNoNotEqualTo(Integer value) { this.ItemNoNotEqualTo = value; return this; } public ArrayList getItemNoBetween() { return ItemNoBetween; } public JB_TimesheetNotesQuery setItemNoBetween(ArrayList value) { this.ItemNoBetween = value; return this; } public ArrayList getItemNoIn() { return ItemNoIn; } public JB_TimesheetNotesQuery setItemNoIn(ArrayList value) { this.ItemNoIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class JB_TimesheetsQuery extends QueryDb implements IReturn> { public String RecID = null; public String RecIDStartsWith = null; public String RecIDEndsWith = null; public String RecIDContains = null; public String RecIDLike = null; public ArrayList RecIDBetween = null; public ArrayList RecIDIn = null; public String BatchNo = null; public String BatchNoStartsWith = null; public String BatchNoEndsWith = null; public String BatchNoContains = null; public String BatchNoLike = null; public ArrayList BatchNoBetween = null; public ArrayList BatchNoIn = null; public String JB_Staff_RecID = null; public String JB_Staff_RecIDStartsWith = null; public String JB_Staff_RecIDEndsWith = null; public String JB_Staff_RecIDContains = null; public String JB_Staff_RecIDLike = null; public ArrayList JB_Staff_RecIDBetween = null; public ArrayList JB_Staff_RecIDIn = null; public String Description = null; public String DescriptionStartsWith = null; public String DescriptionEndsWith = null; public String DescriptionContains = null; public String DescriptionLike = null; public ArrayList DescriptionBetween = null; public ArrayList DescriptionIn = null; public Boolean IsActivated = null; public String GL_Sets_RecID = null; public String GL_Sets_RecIDStartsWith = null; public String GL_Sets_RecIDEndsWith = null; public String GL_Sets_RecIDContains = null; public String GL_Sets_RecIDLike = null; public ArrayList GL_Sets_RecIDBetween = null; public ArrayList GL_Sets_RecIDIn = null; public String IN_LogicalID = null; public String IN_LogicalIDStartsWith = null; public String IN_LogicalIDEndsWith = null; public String IN_LogicalIDContains = null; public String IN_LogicalIDLike = null; public ArrayList IN_LogicalIDBetween = null; public ArrayList IN_LogicalIDIn = null; public Date LastSavedDateTime = null; public Date LastSavedDateTimeGreaterThanOrEqualTo = null; public Date LastSavedDateTimeGreaterThan = null; public Date LastSavedDateTimeLessThan = null; public Date LastSavedDateTimeLessThanOrEqualTo = null; public Date LastSavedDateTimeNotEqualTo = null; public ArrayList LastSavedDateTimeBetween = null; public ArrayList LastSavedDateTimeIn = null; public String LastSavedBy_HR_Staff_RecID = null; public String LastSavedBy_HR_Staff_RecIDStartsWith = null; public String LastSavedBy_HR_Staff_RecIDEndsWith = null; public String LastSavedBy_HR_Staff_RecIDContains = null; public String LastSavedBy_HR_Staff_RecIDLike = null; public ArrayList LastSavedBy_HR_Staff_RecIDBetween = null; public ArrayList LastSavedBy_HR_Staff_RecIDIn = null; public ArrayList RowHash = null; public String getRecID() { return RecID; } public JB_TimesheetsQuery setRecID(String value) { this.RecID = value; return this; } public String getRecIDStartsWith() { return RecIDStartsWith; } public JB_TimesheetsQuery setRecIDStartsWith(String value) { this.RecIDStartsWith = value; return this; } public String getRecIDEndsWith() { return RecIDEndsWith; } public JB_TimesheetsQuery setRecIDEndsWith(String value) { this.RecIDEndsWith = value; return this; } public String getRecIDContains() { return RecIDContains; } public JB_TimesheetsQuery setRecIDContains(String value) { this.RecIDContains = value; return this; } public String getRecIDLike() { return RecIDLike; } public JB_TimesheetsQuery setRecIDLike(String value) { this.RecIDLike = value; return this; } public ArrayList getRecIDBetween() { return RecIDBetween; } public JB_TimesheetsQuery setRecIDBetween(ArrayList value) { this.RecIDBetween = value; return this; } public ArrayList getRecIDIn() { return RecIDIn; } public JB_TimesheetsQuery setRecIDIn(ArrayList value) { this.RecIDIn = value; return this; } public String getBatchNo() { return BatchNo; } public JB_TimesheetsQuery setBatchNo(String value) { this.BatchNo = value; return this; } public String getBatchNoStartsWith() { return BatchNoStartsWith; } public JB_TimesheetsQuery setBatchNoStartsWith(String value) { this.BatchNoStartsWith = value; return this; } public String getBatchNoEndsWith() { return BatchNoEndsWith; } public JB_TimesheetsQuery setBatchNoEndsWith(String value) { this.BatchNoEndsWith = value; return this; } public String getBatchNoContains() { return BatchNoContains; } public JB_TimesheetsQuery setBatchNoContains(String value) { this.BatchNoContains = value; return this; } public String getBatchNoLike() { return BatchNoLike; } public JB_TimesheetsQuery setBatchNoLike(String value) { this.BatchNoLike = value; return this; } public ArrayList getBatchNoBetween() { return BatchNoBetween; } public JB_TimesheetsQuery setBatchNoBetween(ArrayList value) { this.BatchNoBetween = value; return this; } public ArrayList getBatchNoIn() { return BatchNoIn; } public JB_TimesheetsQuery setBatchNoIn(ArrayList value) { this.BatchNoIn = value; return this; } public String getJbStaffRecID() { return JB_Staff_RecID; } public JB_TimesheetsQuery setJbStaffRecID(String value) { this.JB_Staff_RecID = value; return this; } public String getJbStaffRecIDStartsWith() { return JB_Staff_RecIDStartsWith; } public JB_TimesheetsQuery setJbStaffRecIDStartsWith(String value) { this.JB_Staff_RecIDStartsWith = value; return this; } public String getJbStaffRecIDEndsWith() { return JB_Staff_RecIDEndsWith; } public JB_TimesheetsQuery setJbStaffRecIDEndsWith(String value) { this.JB_Staff_RecIDEndsWith = value; return this; } public String getJbStaffRecIDContains() { return JB_Staff_RecIDContains; } public JB_TimesheetsQuery setJbStaffRecIDContains(String value) { this.JB_Staff_RecIDContains = value; return this; } public String getJbStaffRecIDLike() { return JB_Staff_RecIDLike; } public JB_TimesheetsQuery setJbStaffRecIDLike(String value) { this.JB_Staff_RecIDLike = value; return this; } public ArrayList getJbStaffRecIDBetween() { return JB_Staff_RecIDBetween; } public JB_TimesheetsQuery setJbStaffRecIDBetween(ArrayList value) { this.JB_Staff_RecIDBetween = value; return this; } public ArrayList getJbStaffRecIDIn() { return JB_Staff_RecIDIn; } public JB_TimesheetsQuery setJbStaffRecIDIn(ArrayList value) { this.JB_Staff_RecIDIn = value; return this; } public String getDescription() { return Description; } public JB_TimesheetsQuery setDescription(String value) { this.Description = value; return this; } public String getDescriptionStartsWith() { return DescriptionStartsWith; } public JB_TimesheetsQuery setDescriptionStartsWith(String value) { this.DescriptionStartsWith = value; return this; } public String getDescriptionEndsWith() { return DescriptionEndsWith; } public JB_TimesheetsQuery setDescriptionEndsWith(String value) { this.DescriptionEndsWith = value; return this; } public String getDescriptionContains() { return DescriptionContains; } public JB_TimesheetsQuery setDescriptionContains(String value) { this.DescriptionContains = value; return this; } public String getDescriptionLike() { return DescriptionLike; } public JB_TimesheetsQuery setDescriptionLike(String value) { this.DescriptionLike = value; return this; } public ArrayList getDescriptionBetween() { return DescriptionBetween; } public JB_TimesheetsQuery setDescriptionBetween(ArrayList value) { this.DescriptionBetween = value; return this; } public ArrayList getDescriptionIn() { return DescriptionIn; } public JB_TimesheetsQuery setDescriptionIn(ArrayList value) { this.DescriptionIn = value; return this; } public Boolean getIsActivated() { return IsActivated; } public JB_TimesheetsQuery setIsActivated(Boolean value) { this.IsActivated = value; return this; } public String getGlSetsRecID() { return GL_Sets_RecID; } public JB_TimesheetsQuery setGlSetsRecID(String value) { this.GL_Sets_RecID = value; return this; } public String getGlSetsRecIDStartsWith() { return GL_Sets_RecIDStartsWith; } public JB_TimesheetsQuery setGlSetsRecIDStartsWith(String value) { this.GL_Sets_RecIDStartsWith = value; return this; } public String getGlSetsRecIDEndsWith() { return GL_Sets_RecIDEndsWith; } public JB_TimesheetsQuery setGlSetsRecIDEndsWith(String value) { this.GL_Sets_RecIDEndsWith = value; return this; } public String getGlSetsRecIDContains() { return GL_Sets_RecIDContains; } public JB_TimesheetsQuery setGlSetsRecIDContains(String value) { this.GL_Sets_RecIDContains = value; return this; } public String getGlSetsRecIDLike() { return GL_Sets_RecIDLike; } public JB_TimesheetsQuery setGlSetsRecIDLike(String value) { this.GL_Sets_RecIDLike = value; return this; } public ArrayList getGlSetsRecIDBetween() { return GL_Sets_RecIDBetween; } public JB_TimesheetsQuery setGlSetsRecIDBetween(ArrayList value) { this.GL_Sets_RecIDBetween = value; return this; } public ArrayList getGlSetsRecIDIn() { return GL_Sets_RecIDIn; } public JB_TimesheetsQuery setGlSetsRecIDIn(ArrayList value) { this.GL_Sets_RecIDIn = value; return this; } public String getInLogicalID() { return IN_LogicalID; } public JB_TimesheetsQuery setInLogicalID(String value) { this.IN_LogicalID = value; return this; } public String getInLogicalIDStartsWith() { return IN_LogicalIDStartsWith; } public JB_TimesheetsQuery setInLogicalIDStartsWith(String value) { this.IN_LogicalIDStartsWith = value; return this; } public String getInLogicalIDEndsWith() { return IN_LogicalIDEndsWith; } public JB_TimesheetsQuery setInLogicalIDEndsWith(String value) { this.IN_LogicalIDEndsWith = value; return this; } public String getInLogicalIDContains() { return IN_LogicalIDContains; } public JB_TimesheetsQuery setInLogicalIDContains(String value) { this.IN_LogicalIDContains = value; return this; } public String getInLogicalIDLike() { return IN_LogicalIDLike; } public JB_TimesheetsQuery setInLogicalIDLike(String value) { this.IN_LogicalIDLike = value; return this; } public ArrayList getInLogicalIDBetween() { return IN_LogicalIDBetween; } public JB_TimesheetsQuery setInLogicalIDBetween(ArrayList value) { this.IN_LogicalIDBetween = value; return this; } public ArrayList getInLogicalIDIn() { return IN_LogicalIDIn; } public JB_TimesheetsQuery setInLogicalIDIn(ArrayList value) { this.IN_LogicalIDIn = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public JB_TimesheetsQuery setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getLastSavedDateTimeGreaterThanOrEqualTo() { return LastSavedDateTimeGreaterThanOrEqualTo; } public JB_TimesheetsQuery setLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.LastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeGreaterThan() { return LastSavedDateTimeGreaterThan; } public JB_TimesheetsQuery setLastSavedDateTimeGreaterThan(Date value) { this.LastSavedDateTimeGreaterThan = value; return this; } public Date getLastSavedDateTimeLessThan() { return LastSavedDateTimeLessThan; } public JB_TimesheetsQuery setLastSavedDateTimeLessThan(Date value) { this.LastSavedDateTimeLessThan = value; return this; } public Date getLastSavedDateTimeLessThanOrEqualTo() { return LastSavedDateTimeLessThanOrEqualTo; } public JB_TimesheetsQuery setLastSavedDateTimeLessThanOrEqualTo(Date value) { this.LastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeNotEqualTo() { return LastSavedDateTimeNotEqualTo; } public JB_TimesheetsQuery setLastSavedDateTimeNotEqualTo(Date value) { this.LastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getLastSavedDateTimeBetween() { return LastSavedDateTimeBetween; } public JB_TimesheetsQuery setLastSavedDateTimeBetween(ArrayList value) { this.LastSavedDateTimeBetween = value; return this; } public ArrayList getLastSavedDateTimeIn() { return LastSavedDateTimeIn; } public JB_TimesheetsQuery setLastSavedDateTimeIn(ArrayList value) { this.LastSavedDateTimeIn = value; return this; } public String getLastSavedByHrStaffRecID() { return LastSavedBy_HR_Staff_RecID; } public JB_TimesheetsQuery setLastSavedByHrStaffRecID(String value) { this.LastSavedBy_HR_Staff_RecID = value; return this; } public String getLastSavedByHrStaffRecIDStartsWith() { return LastSavedBy_HR_Staff_RecIDStartsWith; } public JB_TimesheetsQuery setLastSavedByHrStaffRecIDStartsWith(String value) { this.LastSavedBy_HR_Staff_RecIDStartsWith = value; return this; } public String getLastSavedByHrStaffRecIDEndsWith() { return LastSavedBy_HR_Staff_RecIDEndsWith; } public JB_TimesheetsQuery setLastSavedByHrStaffRecIDEndsWith(String value) { this.LastSavedBy_HR_Staff_RecIDEndsWith = value; return this; } public String getLastSavedByHrStaffRecIDContains() { return LastSavedBy_HR_Staff_RecIDContains; } public JB_TimesheetsQuery setLastSavedByHrStaffRecIDContains(String value) { this.LastSavedBy_HR_Staff_RecIDContains = value; return this; } public String getLastSavedByHrStaffRecIDLike() { return LastSavedBy_HR_Staff_RecIDLike; } public JB_TimesheetsQuery setLastSavedByHrStaffRecIDLike(String value) { this.LastSavedBy_HR_Staff_RecIDLike = value; return this; } public ArrayList getLastSavedByHrStaffRecIDBetween() { return LastSavedBy_HR_Staff_RecIDBetween; } public JB_TimesheetsQuery setLastSavedByHrStaffRecIDBetween(ArrayList value) { this.LastSavedBy_HR_Staff_RecIDBetween = value; return this; } public ArrayList getLastSavedByHrStaffRecIDIn() { return LastSavedBy_HR_Staff_RecIDIn; } public JB_TimesheetsQuery setLastSavedByHrStaffRecIDIn(ArrayList value) { this.LastSavedBy_HR_Staff_RecIDIn = value; return this; } public ArrayList getRowHash() { return RowHash; } public JB_TimesheetsQuery setRowHash(ArrayList value) { this.RowHash = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class KitTaxQuery extends QueryDb implements IReturn> { public BigDecimal Tax = null; public BigDecimal TaxGreaterThanOrEqualTo = null; public BigDecimal TaxGreaterThan = null; public BigDecimal TaxLessThan = null; public BigDecimal TaxLessThanOrEqualTo = null; public BigDecimal TaxNotEqualTo = null; public ArrayList TaxBetween = null; public ArrayList TaxIn = null; public Short LN = null; public Short LNGreaterThanOrEqualTo = null; public Short LNGreaterThan = null; public Short LNLessThan = null; public Short LNLessThanOrEqualTo = null; public Short LNNotEqualTo = null; public ArrayList LNBetween = null; public ArrayList LNIn = null; public String InvID = null; public String InvIDStartsWith = null; public String InvIDEndsWith = null; public String InvIDContains = null; public String InvIDLike = null; public ArrayList InvIDBetween = null; public ArrayList InvIDIn = null; public BigDecimal getTax() { return Tax; } public KitTaxQuery setTax(BigDecimal value) { this.Tax = value; return this; } public BigDecimal getTaxGreaterThanOrEqualTo() { return TaxGreaterThanOrEqualTo; } public KitTaxQuery setTaxGreaterThanOrEqualTo(BigDecimal value) { this.TaxGreaterThanOrEqualTo = value; return this; } public BigDecimal getTaxGreaterThan() { return TaxGreaterThan; } public KitTaxQuery setTaxGreaterThan(BigDecimal value) { this.TaxGreaterThan = value; return this; } public BigDecimal getTaxLessThan() { return TaxLessThan; } public KitTaxQuery setTaxLessThan(BigDecimal value) { this.TaxLessThan = value; return this; } public BigDecimal getTaxLessThanOrEqualTo() { return TaxLessThanOrEqualTo; } public KitTaxQuery setTaxLessThanOrEqualTo(BigDecimal value) { this.TaxLessThanOrEqualTo = value; return this; } public BigDecimal getTaxNotEqualTo() { return TaxNotEqualTo; } public KitTaxQuery setTaxNotEqualTo(BigDecimal value) { this.TaxNotEqualTo = value; return this; } public ArrayList getTaxBetween() { return TaxBetween; } public KitTaxQuery setTaxBetween(ArrayList value) { this.TaxBetween = value; return this; } public ArrayList getTaxIn() { return TaxIn; } public KitTaxQuery setTaxIn(ArrayList value) { this.TaxIn = value; return this; } public Short getLn() { return LN; } public KitTaxQuery setLn(Short value) { this.LN = value; return this; } public Short getLnGreaterThanOrEqualTo() { return LNGreaterThanOrEqualTo; } public KitTaxQuery setLnGreaterThanOrEqualTo(Short value) { this.LNGreaterThanOrEqualTo = value; return this; } public Short getLnGreaterThan() { return LNGreaterThan; } public KitTaxQuery setLnGreaterThan(Short value) { this.LNGreaterThan = value; return this; } public Short getLnLessThan() { return LNLessThan; } public KitTaxQuery setLnLessThan(Short value) { this.LNLessThan = value; return this; } public Short getLnLessThanOrEqualTo() { return LNLessThanOrEqualTo; } public KitTaxQuery setLnLessThanOrEqualTo(Short value) { this.LNLessThanOrEqualTo = value; return this; } public Short getLnNotEqualTo() { return LNNotEqualTo; } public KitTaxQuery setLnNotEqualTo(Short value) { this.LNNotEqualTo = value; return this; } public ArrayList getLnBetween() { return LNBetween; } public KitTaxQuery setLnBetween(ArrayList value) { this.LNBetween = value; return this; } public ArrayList getLnIn() { return LNIn; } public KitTaxQuery setLnIn(ArrayList value) { this.LNIn = value; return this; } public String getInvID() { return InvID; } public KitTaxQuery setInvID(String value) { this.InvID = value; return this; } public String getInvIDStartsWith() { return InvIDStartsWith; } public KitTaxQuery setInvIDStartsWith(String value) { this.InvIDStartsWith = value; return this; } public String getInvIDEndsWith() { return InvIDEndsWith; } public KitTaxQuery setInvIDEndsWith(String value) { this.InvIDEndsWith = value; return this; } public String getInvIDContains() { return InvIDContains; } public KitTaxQuery setInvIDContains(String value) { this.InvIDContains = value; return this; } public String getInvIDLike() { return InvIDLike; } public KitTaxQuery setInvIDLike(String value) { this.InvIDLike = value; return this; } public ArrayList getInvIDBetween() { return InvIDBetween; } public KitTaxQuery setInvIDBetween(ArrayList value) { this.InvIDBetween = value; return this; } public ArrayList getInvIDIn() { return InvIDIn; } public KitTaxQuery setInvIDIn(ArrayList value) { this.InvIDIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class LastYearProfitQuery extends QueryDb implements IReturn> { public BigDecimal Profit = null; public BigDecimal ProfitGreaterThanOrEqualTo = null; public BigDecimal ProfitGreaterThan = null; public BigDecimal ProfitLessThan = null; public BigDecimal ProfitLessThanOrEqualTo = null; public BigDecimal ProfitNotEqualTo = null; public ArrayList ProfitBetween = null; public ArrayList ProfitIn = null; public BigDecimal getProfit() { return Profit; } public LastYearProfitQuery setProfit(BigDecimal value) { this.Profit = value; return this; } public BigDecimal getProfitGreaterThanOrEqualTo() { return ProfitGreaterThanOrEqualTo; } public LastYearProfitQuery setProfitGreaterThanOrEqualTo(BigDecimal value) { this.ProfitGreaterThanOrEqualTo = value; return this; } public BigDecimal getProfitGreaterThan() { return ProfitGreaterThan; } public LastYearProfitQuery setProfitGreaterThan(BigDecimal value) { this.ProfitGreaterThan = value; return this; } public BigDecimal getProfitLessThan() { return ProfitLessThan; } public LastYearProfitQuery setProfitLessThan(BigDecimal value) { this.ProfitLessThan = value; return this; } public BigDecimal getProfitLessThanOrEqualTo() { return ProfitLessThanOrEqualTo; } public LastYearProfitQuery setProfitLessThanOrEqualTo(BigDecimal value) { this.ProfitLessThanOrEqualTo = value; return this; } public BigDecimal getProfitNotEqualTo() { return ProfitNotEqualTo; } public LastYearProfitQuery setProfitNotEqualTo(BigDecimal value) { this.ProfitNotEqualTo = value; return this; } public ArrayList getProfitBetween() { return ProfitBetween; } public LastYearProfitQuery setProfitBetween(ArrayList value) { this.ProfitBetween = value; return this; } public ArrayList getProfitIn() { return ProfitIn; } public LastYearProfitQuery setProfitIn(ArrayList value) { this.ProfitIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class Magento_IntegrationQuery extends QueryDb implements IReturn> { public UUID RecID = null; public ArrayList RecIDIn = null; public String Name = null; public String NameStartsWith = null; public String NameEndsWith = null; public String NameContains = null; public String NameLike = null; public ArrayList NameBetween = null; public ArrayList NameIn = null; public String Description = null; public String DescriptionStartsWith = null; public String DescriptionEndsWith = null; public String DescriptionContains = null; public String DescriptionLike = null; public ArrayList DescriptionBetween = null; public ArrayList DescriptionIn = null; public Integer LogRetentionDays = null; public Integer LogRetentionDaysGreaterThanOrEqualTo = null; public Integer LogRetentionDaysGreaterThan = null; public Integer LogRetentionDaysLessThan = null; public Integer LogRetentionDaysLessThanOrEqualTo = null; public Integer LogRetentionDaysNotEqualTo = null; public ArrayList LogRetentionDaysBetween = null; public ArrayList LogRetentionDaysIn = null; public Integer CompletedQueueRetentionDays = null; public Integer CompletedQueueRetentionDaysGreaterThanOrEqualTo = null; public Integer CompletedQueueRetentionDaysGreaterThan = null; public Integer CompletedQueueRetentionDaysLessThan = null; public Integer CompletedQueueRetentionDaysLessThanOrEqualTo = null; public Integer CompletedQueueRetentionDaysNotEqualTo = null; public ArrayList CompletedQueueRetentionDaysBetween = null; public ArrayList CompletedQueueRetentionDaysIn = null; public Date LastSavedDateTime = null; public Date LastSavedDateTimeGreaterThanOrEqualTo = null; public Date LastSavedDateTimeGreaterThan = null; public Date LastSavedDateTimeLessThan = null; public Date LastSavedDateTimeLessThanOrEqualTo = null; public Date LastSavedDateTimeNotEqualTo = null; public ArrayList LastSavedDateTimeBetween = null; public ArrayList LastSavedDateTimeIn = null; public ArrayList RowHash = null; public UUID getRecID() { return RecID; } public Magento_IntegrationQuery setRecID(UUID value) { this.RecID = value; return this; } public ArrayList getRecIDIn() { return RecIDIn; } public Magento_IntegrationQuery setRecIDIn(ArrayList value) { this.RecIDIn = value; return this; } public String getName() { return Name; } public Magento_IntegrationQuery setName(String value) { this.Name = value; return this; } public String getNameStartsWith() { return NameStartsWith; } public Magento_IntegrationQuery setNameStartsWith(String value) { this.NameStartsWith = value; return this; } public String getNameEndsWith() { return NameEndsWith; } public Magento_IntegrationQuery setNameEndsWith(String value) { this.NameEndsWith = value; return this; } public String getNameContains() { return NameContains; } public Magento_IntegrationQuery setNameContains(String value) { this.NameContains = value; return this; } public String getNameLike() { return NameLike; } public Magento_IntegrationQuery setNameLike(String value) { this.NameLike = value; return this; } public ArrayList getNameBetween() { return NameBetween; } public Magento_IntegrationQuery setNameBetween(ArrayList value) { this.NameBetween = value; return this; } public ArrayList getNameIn() { return NameIn; } public Magento_IntegrationQuery setNameIn(ArrayList value) { this.NameIn = value; return this; } public String getDescription() { return Description; } public Magento_IntegrationQuery setDescription(String value) { this.Description = value; return this; } public String getDescriptionStartsWith() { return DescriptionStartsWith; } public Magento_IntegrationQuery setDescriptionStartsWith(String value) { this.DescriptionStartsWith = value; return this; } public String getDescriptionEndsWith() { return DescriptionEndsWith; } public Magento_IntegrationQuery setDescriptionEndsWith(String value) { this.DescriptionEndsWith = value; return this; } public String getDescriptionContains() { return DescriptionContains; } public Magento_IntegrationQuery setDescriptionContains(String value) { this.DescriptionContains = value; return this; } public String getDescriptionLike() { return DescriptionLike; } public Magento_IntegrationQuery setDescriptionLike(String value) { this.DescriptionLike = value; return this; } public ArrayList getDescriptionBetween() { return DescriptionBetween; } public Magento_IntegrationQuery setDescriptionBetween(ArrayList value) { this.DescriptionBetween = value; return this; } public ArrayList getDescriptionIn() { return DescriptionIn; } public Magento_IntegrationQuery setDescriptionIn(ArrayList value) { this.DescriptionIn = value; return this; } public Integer getLogRetentionDays() { return LogRetentionDays; } public Magento_IntegrationQuery setLogRetentionDays(Integer value) { this.LogRetentionDays = value; return this; } public Integer getLogRetentionDaysGreaterThanOrEqualTo() { return LogRetentionDaysGreaterThanOrEqualTo; } public Magento_IntegrationQuery setLogRetentionDaysGreaterThanOrEqualTo(Integer value) { this.LogRetentionDaysGreaterThanOrEqualTo = value; return this; } public Integer getLogRetentionDaysGreaterThan() { return LogRetentionDaysGreaterThan; } public Magento_IntegrationQuery setLogRetentionDaysGreaterThan(Integer value) { this.LogRetentionDaysGreaterThan = value; return this; } public Integer getLogRetentionDaysLessThan() { return LogRetentionDaysLessThan; } public Magento_IntegrationQuery setLogRetentionDaysLessThan(Integer value) { this.LogRetentionDaysLessThan = value; return this; } public Integer getLogRetentionDaysLessThanOrEqualTo() { return LogRetentionDaysLessThanOrEqualTo; } public Magento_IntegrationQuery setLogRetentionDaysLessThanOrEqualTo(Integer value) { this.LogRetentionDaysLessThanOrEqualTo = value; return this; } public Integer getLogRetentionDaysNotEqualTo() { return LogRetentionDaysNotEqualTo; } public Magento_IntegrationQuery setLogRetentionDaysNotEqualTo(Integer value) { this.LogRetentionDaysNotEqualTo = value; return this; } public ArrayList getLogRetentionDaysBetween() { return LogRetentionDaysBetween; } public Magento_IntegrationQuery setLogRetentionDaysBetween(ArrayList value) { this.LogRetentionDaysBetween = value; return this; } public ArrayList getLogRetentionDaysIn() { return LogRetentionDaysIn; } public Magento_IntegrationQuery setLogRetentionDaysIn(ArrayList value) { this.LogRetentionDaysIn = value; return this; } public Integer getCompletedQueueRetentionDays() { return CompletedQueueRetentionDays; } public Magento_IntegrationQuery setCompletedQueueRetentionDays(Integer value) { this.CompletedQueueRetentionDays = value; return this; } public Integer getCompletedQueueRetentionDaysGreaterThanOrEqualTo() { return CompletedQueueRetentionDaysGreaterThanOrEqualTo; } public Magento_IntegrationQuery setCompletedQueueRetentionDaysGreaterThanOrEqualTo(Integer value) { this.CompletedQueueRetentionDaysGreaterThanOrEqualTo = value; return this; } public Integer getCompletedQueueRetentionDaysGreaterThan() { return CompletedQueueRetentionDaysGreaterThan; } public Magento_IntegrationQuery setCompletedQueueRetentionDaysGreaterThan(Integer value) { this.CompletedQueueRetentionDaysGreaterThan = value; return this; } public Integer getCompletedQueueRetentionDaysLessThan() { return CompletedQueueRetentionDaysLessThan; } public Magento_IntegrationQuery setCompletedQueueRetentionDaysLessThan(Integer value) { this.CompletedQueueRetentionDaysLessThan = value; return this; } public Integer getCompletedQueueRetentionDaysLessThanOrEqualTo() { return CompletedQueueRetentionDaysLessThanOrEqualTo; } public Magento_IntegrationQuery setCompletedQueueRetentionDaysLessThanOrEqualTo(Integer value) { this.CompletedQueueRetentionDaysLessThanOrEqualTo = value; return this; } public Integer getCompletedQueueRetentionDaysNotEqualTo() { return CompletedQueueRetentionDaysNotEqualTo; } public Magento_IntegrationQuery setCompletedQueueRetentionDaysNotEqualTo(Integer value) { this.CompletedQueueRetentionDaysNotEqualTo = value; return this; } public ArrayList getCompletedQueueRetentionDaysBetween() { return CompletedQueueRetentionDaysBetween; } public Magento_IntegrationQuery setCompletedQueueRetentionDaysBetween(ArrayList value) { this.CompletedQueueRetentionDaysBetween = value; return this; } public ArrayList getCompletedQueueRetentionDaysIn() { return CompletedQueueRetentionDaysIn; } public Magento_IntegrationQuery setCompletedQueueRetentionDaysIn(ArrayList value) { this.CompletedQueueRetentionDaysIn = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public Magento_IntegrationQuery setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getLastSavedDateTimeGreaterThanOrEqualTo() { return LastSavedDateTimeGreaterThanOrEqualTo; } public Magento_IntegrationQuery setLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.LastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeGreaterThan() { return LastSavedDateTimeGreaterThan; } public Magento_IntegrationQuery setLastSavedDateTimeGreaterThan(Date value) { this.LastSavedDateTimeGreaterThan = value; return this; } public Date getLastSavedDateTimeLessThan() { return LastSavedDateTimeLessThan; } public Magento_IntegrationQuery setLastSavedDateTimeLessThan(Date value) { this.LastSavedDateTimeLessThan = value; return this; } public Date getLastSavedDateTimeLessThanOrEqualTo() { return LastSavedDateTimeLessThanOrEqualTo; } public Magento_IntegrationQuery setLastSavedDateTimeLessThanOrEqualTo(Date value) { this.LastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeNotEqualTo() { return LastSavedDateTimeNotEqualTo; } public Magento_IntegrationQuery setLastSavedDateTimeNotEqualTo(Date value) { this.LastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getLastSavedDateTimeBetween() { return LastSavedDateTimeBetween; } public Magento_IntegrationQuery setLastSavedDateTimeBetween(ArrayList value) { this.LastSavedDateTimeBetween = value; return this; } public ArrayList getLastSavedDateTimeIn() { return LastSavedDateTimeIn; } public Magento_IntegrationQuery setLastSavedDateTimeIn(ArrayList value) { this.LastSavedDateTimeIn = value; return this; } public ArrayList getRowHash() { return RowHash; } public Magento_IntegrationQuery setRowHash(ArrayList value) { this.RowHash = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class Magento_Integration_ScheduleQuery extends QueryDb implements IReturn> { public UUID RecID = null; public ArrayList RecIDIn = null; public UUID Magento_Integration_RecID = null; public ArrayList Magento_Integration_RecIDIn = null; public UUID SY_PluginSchedule_RecID = null; public ArrayList SY_PluginSchedule_RecIDIn = null; public Integer ItemNo = null; public Integer ItemNoGreaterThanOrEqualTo = null; public Integer ItemNoGreaterThan = null; public Integer ItemNoLessThan = null; public Integer ItemNoLessThanOrEqualTo = null; public Integer ItemNoNotEqualTo = null; public ArrayList ItemNoBetween = null; public ArrayList ItemNoIn = null; public ArrayList RowHash = null; public UUID getRecID() { return RecID; } public Magento_Integration_ScheduleQuery setRecID(UUID value) { this.RecID = value; return this; } public ArrayList getRecIDIn() { return RecIDIn; } public Magento_Integration_ScheduleQuery setRecIDIn(ArrayList value) { this.RecIDIn = value; return this; } public UUID getMagentoIntegrationRecID() { return Magento_Integration_RecID; } public Magento_Integration_ScheduleQuery setMagentoIntegrationRecID(UUID value) { this.Magento_Integration_RecID = value; return this; } public ArrayList getMagentoIntegrationRecIDIn() { return Magento_Integration_RecIDIn; } public Magento_Integration_ScheduleQuery setMagentoIntegrationRecIDIn(ArrayList value) { this.Magento_Integration_RecIDIn = value; return this; } public UUID getSyPluginScheduleRecID() { return SY_PluginSchedule_RecID; } public Magento_Integration_ScheduleQuery setSyPluginScheduleRecID(UUID value) { this.SY_PluginSchedule_RecID = value; return this; } public ArrayList getSyPluginScheduleRecIDIn() { return SY_PluginSchedule_RecIDIn; } public Magento_Integration_ScheduleQuery setSyPluginScheduleRecIDIn(ArrayList value) { this.SY_PluginSchedule_RecIDIn = value; return this; } public Integer getItemNo() { return ItemNo; } public Magento_Integration_ScheduleQuery setItemNo(Integer value) { this.ItemNo = value; return this; } public Integer getItemNoGreaterThanOrEqualTo() { return ItemNoGreaterThanOrEqualTo; } public Magento_Integration_ScheduleQuery setItemNoGreaterThanOrEqualTo(Integer value) { this.ItemNoGreaterThanOrEqualTo = value; return this; } public Integer getItemNoGreaterThan() { return ItemNoGreaterThan; } public Magento_Integration_ScheduleQuery setItemNoGreaterThan(Integer value) { this.ItemNoGreaterThan = value; return this; } public Integer getItemNoLessThan() { return ItemNoLessThan; } public Magento_Integration_ScheduleQuery setItemNoLessThan(Integer value) { this.ItemNoLessThan = value; return this; } public Integer getItemNoLessThanOrEqualTo() { return ItemNoLessThanOrEqualTo; } public Magento_Integration_ScheduleQuery setItemNoLessThanOrEqualTo(Integer value) { this.ItemNoLessThanOrEqualTo = value; return this; } public Integer getItemNoNotEqualTo() { return ItemNoNotEqualTo; } public Magento_Integration_ScheduleQuery setItemNoNotEqualTo(Integer value) { this.ItemNoNotEqualTo = value; return this; } public ArrayList getItemNoBetween() { return ItemNoBetween; } public Magento_Integration_ScheduleQuery setItemNoBetween(ArrayList value) { this.ItemNoBetween = value; return this; } public ArrayList getItemNoIn() { return ItemNoIn; } public Magento_Integration_ScheduleQuery setItemNoIn(ArrayList value) { this.ItemNoIn = value; return this; } public ArrayList getRowHash() { return RowHash; } public Magento_Integration_ScheduleQuery setRowHash(ArrayList value) { this.RowHash = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class Magento_Integration_SelectedActionQuery extends QueryDb implements IReturn> { public UUID RecID = null; public ArrayList RecIDIn = null; public UUID Magento_Integration_RecID = null; public ArrayList Magento_Integration_RecIDIn = null; public UUID Action_RecID = null; public ArrayList Action_RecIDIn = null; public Short ExceptionPolicy = null; public Short ExceptionPolicyGreaterThanOrEqualTo = null; public Short ExceptionPolicyGreaterThan = null; public Short ExceptionPolicyLessThan = null; public Short ExceptionPolicyLessThanOrEqualTo = null; public Short ExceptionPolicyNotEqualTo = null; public ArrayList ExceptionPolicyBetween = null; public ArrayList ExceptionPolicyIn = null; public Short LogPolicy = null; public Short LogPolicyGreaterThanOrEqualTo = null; public Short LogPolicyGreaterThan = null; public Short LogPolicyLessThan = null; public Short LogPolicyLessThanOrEqualTo = null; public Short LogPolicyNotEqualTo = null; public ArrayList LogPolicyBetween = null; public ArrayList LogPolicyIn = null; public Integer ItemNo = null; public Integer ItemNoGreaterThanOrEqualTo = null; public Integer ItemNoGreaterThan = null; public Integer ItemNoLessThan = null; public Integer ItemNoLessThanOrEqualTo = null; public Integer ItemNoNotEqualTo = null; public ArrayList ItemNoBetween = null; public ArrayList ItemNoIn = null; public ArrayList RowHash = null; public UUID getRecID() { return RecID; } public Magento_Integration_SelectedActionQuery setRecID(UUID value) { this.RecID = value; return this; } public ArrayList getRecIDIn() { return RecIDIn; } public Magento_Integration_SelectedActionQuery setRecIDIn(ArrayList value) { this.RecIDIn = value; return this; } public UUID getMagentoIntegrationRecID() { return Magento_Integration_RecID; } public Magento_Integration_SelectedActionQuery setMagentoIntegrationRecID(UUID value) { this.Magento_Integration_RecID = value; return this; } public ArrayList getMagentoIntegrationRecIDIn() { return Magento_Integration_RecIDIn; } public Magento_Integration_SelectedActionQuery setMagentoIntegrationRecIDIn(ArrayList value) { this.Magento_Integration_RecIDIn = value; return this; } public UUID getActionRecID() { return Action_RecID; } public Magento_Integration_SelectedActionQuery setActionRecID(UUID value) { this.Action_RecID = value; return this; } public ArrayList getActionRecIDIn() { return Action_RecIDIn; } public Magento_Integration_SelectedActionQuery setActionRecIDIn(ArrayList value) { this.Action_RecIDIn = value; return this; } public Short getExceptionPolicy() { return ExceptionPolicy; } public Magento_Integration_SelectedActionQuery setExceptionPolicy(Short value) { this.ExceptionPolicy = value; return this; } public Short getExceptionPolicyGreaterThanOrEqualTo() { return ExceptionPolicyGreaterThanOrEqualTo; } public Magento_Integration_SelectedActionQuery setExceptionPolicyGreaterThanOrEqualTo(Short value) { this.ExceptionPolicyGreaterThanOrEqualTo = value; return this; } public Short getExceptionPolicyGreaterThan() { return ExceptionPolicyGreaterThan; } public Magento_Integration_SelectedActionQuery setExceptionPolicyGreaterThan(Short value) { this.ExceptionPolicyGreaterThan = value; return this; } public Short getExceptionPolicyLessThan() { return ExceptionPolicyLessThan; } public Magento_Integration_SelectedActionQuery setExceptionPolicyLessThan(Short value) { this.ExceptionPolicyLessThan = value; return this; } public Short getExceptionPolicyLessThanOrEqualTo() { return ExceptionPolicyLessThanOrEqualTo; } public Magento_Integration_SelectedActionQuery setExceptionPolicyLessThanOrEqualTo(Short value) { this.ExceptionPolicyLessThanOrEqualTo = value; return this; } public Short getExceptionPolicyNotEqualTo() { return ExceptionPolicyNotEqualTo; } public Magento_Integration_SelectedActionQuery setExceptionPolicyNotEqualTo(Short value) { this.ExceptionPolicyNotEqualTo = value; return this; } public ArrayList getExceptionPolicyBetween() { return ExceptionPolicyBetween; } public Magento_Integration_SelectedActionQuery setExceptionPolicyBetween(ArrayList value) { this.ExceptionPolicyBetween = value; return this; } public ArrayList getExceptionPolicyIn() { return ExceptionPolicyIn; } public Magento_Integration_SelectedActionQuery setExceptionPolicyIn(ArrayList value) { this.ExceptionPolicyIn = value; return this; } public Short getLogPolicy() { return LogPolicy; } public Magento_Integration_SelectedActionQuery setLogPolicy(Short value) { this.LogPolicy = value; return this; } public Short getLogPolicyGreaterThanOrEqualTo() { return LogPolicyGreaterThanOrEqualTo; } public Magento_Integration_SelectedActionQuery setLogPolicyGreaterThanOrEqualTo(Short value) { this.LogPolicyGreaterThanOrEqualTo = value; return this; } public Short getLogPolicyGreaterThan() { return LogPolicyGreaterThan; } public Magento_Integration_SelectedActionQuery setLogPolicyGreaterThan(Short value) { this.LogPolicyGreaterThan = value; return this; } public Short getLogPolicyLessThan() { return LogPolicyLessThan; } public Magento_Integration_SelectedActionQuery setLogPolicyLessThan(Short value) { this.LogPolicyLessThan = value; return this; } public Short getLogPolicyLessThanOrEqualTo() { return LogPolicyLessThanOrEqualTo; } public Magento_Integration_SelectedActionQuery setLogPolicyLessThanOrEqualTo(Short value) { this.LogPolicyLessThanOrEqualTo = value; return this; } public Short getLogPolicyNotEqualTo() { return LogPolicyNotEqualTo; } public Magento_Integration_SelectedActionQuery setLogPolicyNotEqualTo(Short value) { this.LogPolicyNotEqualTo = value; return this; } public ArrayList getLogPolicyBetween() { return LogPolicyBetween; } public Magento_Integration_SelectedActionQuery setLogPolicyBetween(ArrayList value) { this.LogPolicyBetween = value; return this; } public ArrayList getLogPolicyIn() { return LogPolicyIn; } public Magento_Integration_SelectedActionQuery setLogPolicyIn(ArrayList value) { this.LogPolicyIn = value; return this; } public Integer getItemNo() { return ItemNo; } public Magento_Integration_SelectedActionQuery setItemNo(Integer value) { this.ItemNo = value; return this; } public Integer getItemNoGreaterThanOrEqualTo() { return ItemNoGreaterThanOrEqualTo; } public Magento_Integration_SelectedActionQuery setItemNoGreaterThanOrEqualTo(Integer value) { this.ItemNoGreaterThanOrEqualTo = value; return this; } public Integer getItemNoGreaterThan() { return ItemNoGreaterThan; } public Magento_Integration_SelectedActionQuery setItemNoGreaterThan(Integer value) { this.ItemNoGreaterThan = value; return this; } public Integer getItemNoLessThan() { return ItemNoLessThan; } public Magento_Integration_SelectedActionQuery setItemNoLessThan(Integer value) { this.ItemNoLessThan = value; return this; } public Integer getItemNoLessThanOrEqualTo() { return ItemNoLessThanOrEqualTo; } public Magento_Integration_SelectedActionQuery setItemNoLessThanOrEqualTo(Integer value) { this.ItemNoLessThanOrEqualTo = value; return this; } public Integer getItemNoNotEqualTo() { return ItemNoNotEqualTo; } public Magento_Integration_SelectedActionQuery setItemNoNotEqualTo(Integer value) { this.ItemNoNotEqualTo = value; return this; } public ArrayList getItemNoBetween() { return ItemNoBetween; } public Magento_Integration_SelectedActionQuery setItemNoBetween(ArrayList value) { this.ItemNoBetween = value; return this; } public ArrayList getItemNoIn() { return ItemNoIn; } public Magento_Integration_SelectedActionQuery setItemNoIn(ArrayList value) { this.ItemNoIn = value; return this; } public ArrayList getRowHash() { return RowHash; } public Magento_Integration_SelectedActionQuery setRowHash(ArrayList value) { this.RowHash = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class Magento_LogQuery extends QueryDb implements IReturn> { public Integer id = null; public Integer idGreaterThanOrEqualTo = null; public Integer idGreaterThan = null; public Integer idLessThan = null; public Integer idLessThanOrEqualTo = null; public Integer idNotEqualTo = null; public ArrayList idBetween = null; public ArrayList idIn = null; public UUID Magento_Integration_RecID = null; public ArrayList Magento_Integration_RecIDIn = null; public Date LogDateTime = null; public Date LogDateTimeGreaterThanOrEqualTo = null; public Date LogDateTimeGreaterThan = null; public Date LogDateTimeLessThan = null; public Date LogDateTimeLessThanOrEqualTo = null; public Date LogDateTimeNotEqualTo = null; public ArrayList LogDateTimeBetween = null; public ArrayList LogDateTimeIn = null; public Short LogType = null; public Short LogTypeGreaterThanOrEqualTo = null; public Short LogTypeGreaterThan = null; public Short LogTypeLessThan = null; public Short LogTypeLessThanOrEqualTo = null; public Short LogTypeNotEqualTo = null; public ArrayList LogTypeBetween = null; public ArrayList LogTypeIn = null; public String IntegrationActionName = null; public String IntegrationActionNameStartsWith = null; public String IntegrationActionNameEndsWith = null; public String IntegrationActionNameContains = null; public String IntegrationActionNameLike = null; public ArrayList IntegrationActionNameBetween = null; public ArrayList IntegrationActionNameIn = null; public Integer ElapsedMilliseconds = null; public Integer ElapsedMillisecondsGreaterThanOrEqualTo = null; public Integer ElapsedMillisecondsGreaterThan = null; public Integer ElapsedMillisecondsLessThan = null; public Integer ElapsedMillisecondsLessThanOrEqualTo = null; public Integer ElapsedMillisecondsNotEqualTo = null; public ArrayList ElapsedMillisecondsBetween = null; public ArrayList ElapsedMillisecondsIn = null; public String LogMessage = null; public String LogMessageStartsWith = null; public String LogMessageEndsWith = null; public String LogMessageContains = null; public String LogMessageLike = null; public ArrayList LogMessageBetween = null; public ArrayList LogMessageIn = null; public Integer getId() { return id; } public Magento_LogQuery setId(Integer value) { this.id = value; return this; } public Integer getIdGreaterThanOrEqualTo() { return idGreaterThanOrEqualTo; } public Magento_LogQuery setIdGreaterThanOrEqualTo(Integer value) { this.idGreaterThanOrEqualTo = value; return this; } public Integer getIdGreaterThan() { return idGreaterThan; } public Magento_LogQuery setIdGreaterThan(Integer value) { this.idGreaterThan = value; return this; } public Integer getIdLessThan() { return idLessThan; } public Magento_LogQuery setIdLessThan(Integer value) { this.idLessThan = value; return this; } public Integer getIdLessThanOrEqualTo() { return idLessThanOrEqualTo; } public Magento_LogQuery setIdLessThanOrEqualTo(Integer value) { this.idLessThanOrEqualTo = value; return this; } public Integer getIdNotEqualTo() { return idNotEqualTo; } public Magento_LogQuery setIdNotEqualTo(Integer value) { this.idNotEqualTo = value; return this; } public ArrayList getIdBetween() { return idBetween; } public Magento_LogQuery setIdBetween(ArrayList value) { this.idBetween = value; return this; } public ArrayList getIdIn() { return idIn; } public Magento_LogQuery setIdIn(ArrayList value) { this.idIn = value; return this; } public UUID getMagentoIntegrationRecID() { return Magento_Integration_RecID; } public Magento_LogQuery setMagentoIntegrationRecID(UUID value) { this.Magento_Integration_RecID = value; return this; } public ArrayList getMagentoIntegrationRecIDIn() { return Magento_Integration_RecIDIn; } public Magento_LogQuery setMagentoIntegrationRecIDIn(ArrayList value) { this.Magento_Integration_RecIDIn = value; return this; } public Date getLogDateTime() { return LogDateTime; } public Magento_LogQuery setLogDateTime(Date value) { this.LogDateTime = value; return this; } public Date getLogDateTimeGreaterThanOrEqualTo() { return LogDateTimeGreaterThanOrEqualTo; } public Magento_LogQuery setLogDateTimeGreaterThanOrEqualTo(Date value) { this.LogDateTimeGreaterThanOrEqualTo = value; return this; } public Date getLogDateTimeGreaterThan() { return LogDateTimeGreaterThan; } public Magento_LogQuery setLogDateTimeGreaterThan(Date value) { this.LogDateTimeGreaterThan = value; return this; } public Date getLogDateTimeLessThan() { return LogDateTimeLessThan; } public Magento_LogQuery setLogDateTimeLessThan(Date value) { this.LogDateTimeLessThan = value; return this; } public Date getLogDateTimeLessThanOrEqualTo() { return LogDateTimeLessThanOrEqualTo; } public Magento_LogQuery setLogDateTimeLessThanOrEqualTo(Date value) { this.LogDateTimeLessThanOrEqualTo = value; return this; } public Date getLogDateTimeNotEqualTo() { return LogDateTimeNotEqualTo; } public Magento_LogQuery setLogDateTimeNotEqualTo(Date value) { this.LogDateTimeNotEqualTo = value; return this; } public ArrayList getLogDateTimeBetween() { return LogDateTimeBetween; } public Magento_LogQuery setLogDateTimeBetween(ArrayList value) { this.LogDateTimeBetween = value; return this; } public ArrayList getLogDateTimeIn() { return LogDateTimeIn; } public Magento_LogQuery setLogDateTimeIn(ArrayList value) { this.LogDateTimeIn = value; return this; } public Short getLogType() { return LogType; } public Magento_LogQuery setLogType(Short value) { this.LogType = value; return this; } public Short getLogTypeGreaterThanOrEqualTo() { return LogTypeGreaterThanOrEqualTo; } public Magento_LogQuery setLogTypeGreaterThanOrEqualTo(Short value) { this.LogTypeGreaterThanOrEqualTo = value; return this; } public Short getLogTypeGreaterThan() { return LogTypeGreaterThan; } public Magento_LogQuery setLogTypeGreaterThan(Short value) { this.LogTypeGreaterThan = value; return this; } public Short getLogTypeLessThan() { return LogTypeLessThan; } public Magento_LogQuery setLogTypeLessThan(Short value) { this.LogTypeLessThan = value; return this; } public Short getLogTypeLessThanOrEqualTo() { return LogTypeLessThanOrEqualTo; } public Magento_LogQuery setLogTypeLessThanOrEqualTo(Short value) { this.LogTypeLessThanOrEqualTo = value; return this; } public Short getLogTypeNotEqualTo() { return LogTypeNotEqualTo; } public Magento_LogQuery setLogTypeNotEqualTo(Short value) { this.LogTypeNotEqualTo = value; return this; } public ArrayList getLogTypeBetween() { return LogTypeBetween; } public Magento_LogQuery setLogTypeBetween(ArrayList value) { this.LogTypeBetween = value; return this; } public ArrayList getLogTypeIn() { return LogTypeIn; } public Magento_LogQuery setLogTypeIn(ArrayList value) { this.LogTypeIn = value; return this; } public String getIntegrationActionName() { return IntegrationActionName; } public Magento_LogQuery setIntegrationActionName(String value) { this.IntegrationActionName = value; return this; } public String getIntegrationActionNameStartsWith() { return IntegrationActionNameStartsWith; } public Magento_LogQuery setIntegrationActionNameStartsWith(String value) { this.IntegrationActionNameStartsWith = value; return this; } public String getIntegrationActionNameEndsWith() { return IntegrationActionNameEndsWith; } public Magento_LogQuery setIntegrationActionNameEndsWith(String value) { this.IntegrationActionNameEndsWith = value; return this; } public String getIntegrationActionNameContains() { return IntegrationActionNameContains; } public Magento_LogQuery setIntegrationActionNameContains(String value) { this.IntegrationActionNameContains = value; return this; } public String getIntegrationActionNameLike() { return IntegrationActionNameLike; } public Magento_LogQuery setIntegrationActionNameLike(String value) { this.IntegrationActionNameLike = value; return this; } public ArrayList getIntegrationActionNameBetween() { return IntegrationActionNameBetween; } public Magento_LogQuery setIntegrationActionNameBetween(ArrayList value) { this.IntegrationActionNameBetween = value; return this; } public ArrayList getIntegrationActionNameIn() { return IntegrationActionNameIn; } public Magento_LogQuery setIntegrationActionNameIn(ArrayList value) { this.IntegrationActionNameIn = value; return this; } public Integer getElapsedMilliseconds() { return ElapsedMilliseconds; } public Magento_LogQuery setElapsedMilliseconds(Integer value) { this.ElapsedMilliseconds = value; return this; } public Integer getElapsedMillisecondsGreaterThanOrEqualTo() { return ElapsedMillisecondsGreaterThanOrEqualTo; } public Magento_LogQuery setElapsedMillisecondsGreaterThanOrEqualTo(Integer value) { this.ElapsedMillisecondsGreaterThanOrEqualTo = value; return this; } public Integer getElapsedMillisecondsGreaterThan() { return ElapsedMillisecondsGreaterThan; } public Magento_LogQuery setElapsedMillisecondsGreaterThan(Integer value) { this.ElapsedMillisecondsGreaterThan = value; return this; } public Integer getElapsedMillisecondsLessThan() { return ElapsedMillisecondsLessThan; } public Magento_LogQuery setElapsedMillisecondsLessThan(Integer value) { this.ElapsedMillisecondsLessThan = value; return this; } public Integer getElapsedMillisecondsLessThanOrEqualTo() { return ElapsedMillisecondsLessThanOrEqualTo; } public Magento_LogQuery setElapsedMillisecondsLessThanOrEqualTo(Integer value) { this.ElapsedMillisecondsLessThanOrEqualTo = value; return this; } public Integer getElapsedMillisecondsNotEqualTo() { return ElapsedMillisecondsNotEqualTo; } public Magento_LogQuery setElapsedMillisecondsNotEqualTo(Integer value) { this.ElapsedMillisecondsNotEqualTo = value; return this; } public ArrayList getElapsedMillisecondsBetween() { return ElapsedMillisecondsBetween; } public Magento_LogQuery setElapsedMillisecondsBetween(ArrayList value) { this.ElapsedMillisecondsBetween = value; return this; } public ArrayList getElapsedMillisecondsIn() { return ElapsedMillisecondsIn; } public Magento_LogQuery setElapsedMillisecondsIn(ArrayList value) { this.ElapsedMillisecondsIn = value; return this; } public String getLogMessage() { return LogMessage; } public Magento_LogQuery setLogMessage(String value) { this.LogMessage = value; return this; } public String getLogMessageStartsWith() { return LogMessageStartsWith; } public Magento_LogQuery setLogMessageStartsWith(String value) { this.LogMessageStartsWith = value; return this; } public String getLogMessageEndsWith() { return LogMessageEndsWith; } public Magento_LogQuery setLogMessageEndsWith(String value) { this.LogMessageEndsWith = value; return this; } public String getLogMessageContains() { return LogMessageContains; } public Magento_LogQuery setLogMessageContains(String value) { this.LogMessageContains = value; return this; } public String getLogMessageLike() { return LogMessageLike; } public Magento_LogQuery setLogMessageLike(String value) { this.LogMessageLike = value; return this; } public ArrayList getLogMessageBetween() { return LogMessageBetween; } public Magento_LogQuery setLogMessageBetween(ArrayList value) { this.LogMessageBetween = value; return this; } public ArrayList getLogMessageIn() { return LogMessageIn; } public Magento_LogQuery setLogMessageIn(ArrayList value) { this.LogMessageIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class Magento_QueueQuery extends QueryDb implements IReturn> { public UUID RecID = null; public ArrayList RecIDIn = null; public String QueueName = null; public String QueueNameStartsWith = null; public String QueueNameEndsWith = null; public String QueueNameContains = null; public String QueueNameLike = null; public ArrayList QueueNameBetween = null; public ArrayList QueueNameIn = null; public String Identifier = null; public String IdentifierStartsWith = null; public String IdentifierEndsWith = null; public String IdentifierContains = null; public String IdentifierLike = null; public ArrayList IdentifierBetween = null; public ArrayList IdentifierIn = null; public Date QueueInsertionDateTime = null; public Date QueueInsertionDateTimeGreaterThanOrEqualTo = null; public Date QueueInsertionDateTimeGreaterThan = null; public Date QueueInsertionDateTimeLessThan = null; public Date QueueInsertionDateTimeLessThanOrEqualTo = null; public Date QueueInsertionDateTimeNotEqualTo = null; public ArrayList QueueInsertionDateTimeBetween = null; public ArrayList QueueInsertionDateTimeIn = null; public Date LastChangedDateTime = null; public Date LastChangedDateTimeGreaterThanOrEqualTo = null; public Date LastChangedDateTimeGreaterThan = null; public Date LastChangedDateTimeLessThan = null; public Date LastChangedDateTimeLessThanOrEqualTo = null; public Date LastChangedDateTimeNotEqualTo = null; public ArrayList LastChangedDateTimeBetween = null; public ArrayList LastChangedDateTimeIn = null; public Short Status = null; public Short StatusGreaterThanOrEqualTo = null; public Short StatusGreaterThan = null; public Short StatusLessThan = null; public Short StatusLessThanOrEqualTo = null; public Short StatusNotEqualTo = null; public ArrayList StatusBetween = null; public ArrayList StatusIn = null; public String ExceptionText = null; public String ExceptionTextStartsWith = null; public String ExceptionTextEndsWith = null; public String ExceptionTextContains = null; public String ExceptionTextLike = null; public ArrayList ExceptionTextBetween = null; public ArrayList ExceptionTextIn = null; public ArrayList RowHash = null; public UUID getRecID() { return RecID; } public Magento_QueueQuery setRecID(UUID value) { this.RecID = value; return this; } public ArrayList getRecIDIn() { return RecIDIn; } public Magento_QueueQuery setRecIDIn(ArrayList value) { this.RecIDIn = value; return this; } public String getQueueName() { return QueueName; } public Magento_QueueQuery setQueueName(String value) { this.QueueName = value; return this; } public String getQueueNameStartsWith() { return QueueNameStartsWith; } public Magento_QueueQuery setQueueNameStartsWith(String value) { this.QueueNameStartsWith = value; return this; } public String getQueueNameEndsWith() { return QueueNameEndsWith; } public Magento_QueueQuery setQueueNameEndsWith(String value) { this.QueueNameEndsWith = value; return this; } public String getQueueNameContains() { return QueueNameContains; } public Magento_QueueQuery setQueueNameContains(String value) { this.QueueNameContains = value; return this; } public String getQueueNameLike() { return QueueNameLike; } public Magento_QueueQuery setQueueNameLike(String value) { this.QueueNameLike = value; return this; } public ArrayList getQueueNameBetween() { return QueueNameBetween; } public Magento_QueueQuery setQueueNameBetween(ArrayList value) { this.QueueNameBetween = value; return this; } public ArrayList getQueueNameIn() { return QueueNameIn; } public Magento_QueueQuery setQueueNameIn(ArrayList value) { this.QueueNameIn = value; return this; } public String getIdentifier() { return Identifier; } public Magento_QueueQuery setIdentifier(String value) { this.Identifier = value; return this; } public String getIdentifierStartsWith() { return IdentifierStartsWith; } public Magento_QueueQuery setIdentifierStartsWith(String value) { this.IdentifierStartsWith = value; return this; } public String getIdentifierEndsWith() { return IdentifierEndsWith; } public Magento_QueueQuery setIdentifierEndsWith(String value) { this.IdentifierEndsWith = value; return this; } public String getIdentifierContains() { return IdentifierContains; } public Magento_QueueQuery setIdentifierContains(String value) { this.IdentifierContains = value; return this; } public String getIdentifierLike() { return IdentifierLike; } public Magento_QueueQuery setIdentifierLike(String value) { this.IdentifierLike = value; return this; } public ArrayList getIdentifierBetween() { return IdentifierBetween; } public Magento_QueueQuery setIdentifierBetween(ArrayList value) { this.IdentifierBetween = value; return this; } public ArrayList getIdentifierIn() { return IdentifierIn; } public Magento_QueueQuery setIdentifierIn(ArrayList value) { this.IdentifierIn = value; return this; } public Date getQueueInsertionDateTime() { return QueueInsertionDateTime; } public Magento_QueueQuery setQueueInsertionDateTime(Date value) { this.QueueInsertionDateTime = value; return this; } public Date getQueueInsertionDateTimeGreaterThanOrEqualTo() { return QueueInsertionDateTimeGreaterThanOrEqualTo; } public Magento_QueueQuery setQueueInsertionDateTimeGreaterThanOrEqualTo(Date value) { this.QueueInsertionDateTimeGreaterThanOrEqualTo = value; return this; } public Date getQueueInsertionDateTimeGreaterThan() { return QueueInsertionDateTimeGreaterThan; } public Magento_QueueQuery setQueueInsertionDateTimeGreaterThan(Date value) { this.QueueInsertionDateTimeGreaterThan = value; return this; } public Date getQueueInsertionDateTimeLessThan() { return QueueInsertionDateTimeLessThan; } public Magento_QueueQuery setQueueInsertionDateTimeLessThan(Date value) { this.QueueInsertionDateTimeLessThan = value; return this; } public Date getQueueInsertionDateTimeLessThanOrEqualTo() { return QueueInsertionDateTimeLessThanOrEqualTo; } public Magento_QueueQuery setQueueInsertionDateTimeLessThanOrEqualTo(Date value) { this.QueueInsertionDateTimeLessThanOrEqualTo = value; return this; } public Date getQueueInsertionDateTimeNotEqualTo() { return QueueInsertionDateTimeNotEqualTo; } public Magento_QueueQuery setQueueInsertionDateTimeNotEqualTo(Date value) { this.QueueInsertionDateTimeNotEqualTo = value; return this; } public ArrayList getQueueInsertionDateTimeBetween() { return QueueInsertionDateTimeBetween; } public Magento_QueueQuery setQueueInsertionDateTimeBetween(ArrayList value) { this.QueueInsertionDateTimeBetween = value; return this; } public ArrayList getQueueInsertionDateTimeIn() { return QueueInsertionDateTimeIn; } public Magento_QueueQuery setQueueInsertionDateTimeIn(ArrayList value) { this.QueueInsertionDateTimeIn = value; return this; } public Date getLastChangedDateTime() { return LastChangedDateTime; } public Magento_QueueQuery setLastChangedDateTime(Date value) { this.LastChangedDateTime = value; return this; } public Date getLastChangedDateTimeGreaterThanOrEqualTo() { return LastChangedDateTimeGreaterThanOrEqualTo; } public Magento_QueueQuery setLastChangedDateTimeGreaterThanOrEqualTo(Date value) { this.LastChangedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getLastChangedDateTimeGreaterThan() { return LastChangedDateTimeGreaterThan; } public Magento_QueueQuery setLastChangedDateTimeGreaterThan(Date value) { this.LastChangedDateTimeGreaterThan = value; return this; } public Date getLastChangedDateTimeLessThan() { return LastChangedDateTimeLessThan; } public Magento_QueueQuery setLastChangedDateTimeLessThan(Date value) { this.LastChangedDateTimeLessThan = value; return this; } public Date getLastChangedDateTimeLessThanOrEqualTo() { return LastChangedDateTimeLessThanOrEqualTo; } public Magento_QueueQuery setLastChangedDateTimeLessThanOrEqualTo(Date value) { this.LastChangedDateTimeLessThanOrEqualTo = value; return this; } public Date getLastChangedDateTimeNotEqualTo() { return LastChangedDateTimeNotEqualTo; } public Magento_QueueQuery setLastChangedDateTimeNotEqualTo(Date value) { this.LastChangedDateTimeNotEqualTo = value; return this; } public ArrayList getLastChangedDateTimeBetween() { return LastChangedDateTimeBetween; } public Magento_QueueQuery setLastChangedDateTimeBetween(ArrayList value) { this.LastChangedDateTimeBetween = value; return this; } public ArrayList getLastChangedDateTimeIn() { return LastChangedDateTimeIn; } public Magento_QueueQuery setLastChangedDateTimeIn(ArrayList value) { this.LastChangedDateTimeIn = value; return this; } public Short getStatus() { return Status; } public Magento_QueueQuery setStatus(Short value) { this.Status = value; return this; } public Short getStatusGreaterThanOrEqualTo() { return StatusGreaterThanOrEqualTo; } public Magento_QueueQuery setStatusGreaterThanOrEqualTo(Short value) { this.StatusGreaterThanOrEqualTo = value; return this; } public Short getStatusGreaterThan() { return StatusGreaterThan; } public Magento_QueueQuery setStatusGreaterThan(Short value) { this.StatusGreaterThan = value; return this; } public Short getStatusLessThan() { return StatusLessThan; } public Magento_QueueQuery setStatusLessThan(Short value) { this.StatusLessThan = value; return this; } public Short getStatusLessThanOrEqualTo() { return StatusLessThanOrEqualTo; } public Magento_QueueQuery setStatusLessThanOrEqualTo(Short value) { this.StatusLessThanOrEqualTo = value; return this; } public Short getStatusNotEqualTo() { return StatusNotEqualTo; } public Magento_QueueQuery setStatusNotEqualTo(Short value) { this.StatusNotEqualTo = value; return this; } public ArrayList getStatusBetween() { return StatusBetween; } public Magento_QueueQuery setStatusBetween(ArrayList value) { this.StatusBetween = value; return this; } public ArrayList getStatusIn() { return StatusIn; } public Magento_QueueQuery setStatusIn(ArrayList value) { this.StatusIn = value; return this; } public String getExceptionText() { return ExceptionText; } public Magento_QueueQuery setExceptionText(String value) { this.ExceptionText = value; return this; } public String getExceptionTextStartsWith() { return ExceptionTextStartsWith; } public Magento_QueueQuery setExceptionTextStartsWith(String value) { this.ExceptionTextStartsWith = value; return this; } public String getExceptionTextEndsWith() { return ExceptionTextEndsWith; } public Magento_QueueQuery setExceptionTextEndsWith(String value) { this.ExceptionTextEndsWith = value; return this; } public String getExceptionTextContains() { return ExceptionTextContains; } public Magento_QueueQuery setExceptionTextContains(String value) { this.ExceptionTextContains = value; return this; } public String getExceptionTextLike() { return ExceptionTextLike; } public Magento_QueueQuery setExceptionTextLike(String value) { this.ExceptionTextLike = value; return this; } public ArrayList getExceptionTextBetween() { return ExceptionTextBetween; } public Magento_QueueQuery setExceptionTextBetween(ArrayList value) { this.ExceptionTextBetween = value; return this; } public ArrayList getExceptionTextIn() { return ExceptionTextIn; } public Magento_QueueQuery setExceptionTextIn(ArrayList value) { this.ExceptionTextIn = value; return this; } public ArrayList getRowHash() { return RowHash; } public Magento_QueueQuery setRowHash(ArrayList value) { this.RowHash = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class PI_CustomSettingsQuery extends QueryDb implements IReturn> { public String SettingID = null; public String SettingIDStartsWith = null; public String SettingIDEndsWith = null; public String SettingIDContains = null; public String SettingIDLike = null; public ArrayList SettingIDBetween = null; public ArrayList SettingIDIn = null; public Date LastSavedDateTime = null; public Date LastSavedDateTimeGreaterThanOrEqualTo = null; public Date LastSavedDateTimeGreaterThan = null; public Date LastSavedDateTimeLessThan = null; public Date LastSavedDateTimeLessThanOrEqualTo = null; public Date LastSavedDateTimeNotEqualTo = null; public ArrayList LastSavedDateTimeBetween = null; public ArrayList LastSavedDateTimeIn = null; public String SettingDescription = null; public String SettingDescriptionStartsWith = null; public String SettingDescriptionEndsWith = null; public String SettingDescriptionContains = null; public String SettingDescriptionLike = null; public ArrayList SettingDescriptionBetween = null; public ArrayList SettingDescriptionIn = null; public String SettingName = null; public String SettingNameStartsWith = null; public String SettingNameEndsWith = null; public String SettingNameContains = null; public String SettingNameLike = null; public ArrayList SettingNameBetween = null; public ArrayList SettingNameIn = null; public BigDecimal DisplayOrder = null; public BigDecimal DisplayOrderGreaterThanOrEqualTo = null; public BigDecimal DisplayOrderGreaterThan = null; public BigDecimal DisplayOrderLessThan = null; public BigDecimal DisplayOrderLessThanOrEqualTo = null; public BigDecimal DisplayOrderNotEqualTo = null; public ArrayList DisplayOrderBetween = null; public ArrayList DisplayOrderIn = null; public Short CellType = null; public Short CellTypeGreaterThanOrEqualTo = null; public Short CellTypeGreaterThan = null; public Short CellTypeLessThan = null; public Short CellTypeLessThanOrEqualTo = null; public Short CellTypeNotEqualTo = null; public ArrayList CellTypeBetween = null; public ArrayList CellTypeIn = null; public String ScriptFormatCell = null; public String ScriptFormatCellStartsWith = null; public String ScriptFormatCellEndsWith = null; public String ScriptFormatCellContains = null; public String ScriptFormatCellLike = null; public ArrayList ScriptFormatCellBetween = null; public ArrayList ScriptFormatCellIn = null; public String ScriptButtonClicked = null; public String ScriptButtonClickedStartsWith = null; public String ScriptButtonClickedEndsWith = null; public String ScriptButtonClickedContains = null; public String ScriptButtonClickedLike = null; public ArrayList ScriptButtonClickedBetween = null; public ArrayList ScriptButtonClickedIn = null; public String ScriptReadData = null; public String ScriptReadDataStartsWith = null; public String ScriptReadDataEndsWith = null; public String ScriptReadDataContains = null; public String ScriptReadDataLike = null; public ArrayList ScriptReadDataBetween = null; public ArrayList ScriptReadDataIn = null; public UUID SY_Plugin_RecID = null; public ArrayList SY_Plugin_RecIDIn = null; public String getSettingID() { return SettingID; } public PI_CustomSettingsQuery setSettingID(String value) { this.SettingID = value; return this; } public String getSettingIDStartsWith() { return SettingIDStartsWith; } public PI_CustomSettingsQuery setSettingIDStartsWith(String value) { this.SettingIDStartsWith = value; return this; } public String getSettingIDEndsWith() { return SettingIDEndsWith; } public PI_CustomSettingsQuery setSettingIDEndsWith(String value) { this.SettingIDEndsWith = value; return this; } public String getSettingIDContains() { return SettingIDContains; } public PI_CustomSettingsQuery setSettingIDContains(String value) { this.SettingIDContains = value; return this; } public String getSettingIDLike() { return SettingIDLike; } public PI_CustomSettingsQuery setSettingIDLike(String value) { this.SettingIDLike = value; return this; } public ArrayList getSettingIDBetween() { return SettingIDBetween; } public PI_CustomSettingsQuery setSettingIDBetween(ArrayList value) { this.SettingIDBetween = value; return this; } public ArrayList getSettingIDIn() { return SettingIDIn; } public PI_CustomSettingsQuery setSettingIDIn(ArrayList value) { this.SettingIDIn = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public PI_CustomSettingsQuery setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getLastSavedDateTimeGreaterThanOrEqualTo() { return LastSavedDateTimeGreaterThanOrEqualTo; } public PI_CustomSettingsQuery setLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.LastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeGreaterThan() { return LastSavedDateTimeGreaterThan; } public PI_CustomSettingsQuery setLastSavedDateTimeGreaterThan(Date value) { this.LastSavedDateTimeGreaterThan = value; return this; } public Date getLastSavedDateTimeLessThan() { return LastSavedDateTimeLessThan; } public PI_CustomSettingsQuery setLastSavedDateTimeLessThan(Date value) { this.LastSavedDateTimeLessThan = value; return this; } public Date getLastSavedDateTimeLessThanOrEqualTo() { return LastSavedDateTimeLessThanOrEqualTo; } public PI_CustomSettingsQuery setLastSavedDateTimeLessThanOrEqualTo(Date value) { this.LastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeNotEqualTo() { return LastSavedDateTimeNotEqualTo; } public PI_CustomSettingsQuery setLastSavedDateTimeNotEqualTo(Date value) { this.LastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getLastSavedDateTimeBetween() { return LastSavedDateTimeBetween; } public PI_CustomSettingsQuery setLastSavedDateTimeBetween(ArrayList value) { this.LastSavedDateTimeBetween = value; return this; } public ArrayList getLastSavedDateTimeIn() { return LastSavedDateTimeIn; } public PI_CustomSettingsQuery setLastSavedDateTimeIn(ArrayList value) { this.LastSavedDateTimeIn = value; return this; } public String getSettingDescription() { return SettingDescription; } public PI_CustomSettingsQuery setSettingDescription(String value) { this.SettingDescription = value; return this; } public String getSettingDescriptionStartsWith() { return SettingDescriptionStartsWith; } public PI_CustomSettingsQuery setSettingDescriptionStartsWith(String value) { this.SettingDescriptionStartsWith = value; return this; } public String getSettingDescriptionEndsWith() { return SettingDescriptionEndsWith; } public PI_CustomSettingsQuery setSettingDescriptionEndsWith(String value) { this.SettingDescriptionEndsWith = value; return this; } public String getSettingDescriptionContains() { return SettingDescriptionContains; } public PI_CustomSettingsQuery setSettingDescriptionContains(String value) { this.SettingDescriptionContains = value; return this; } public String getSettingDescriptionLike() { return SettingDescriptionLike; } public PI_CustomSettingsQuery setSettingDescriptionLike(String value) { this.SettingDescriptionLike = value; return this; } public ArrayList getSettingDescriptionBetween() { return SettingDescriptionBetween; } public PI_CustomSettingsQuery setSettingDescriptionBetween(ArrayList value) { this.SettingDescriptionBetween = value; return this; } public ArrayList getSettingDescriptionIn() { return SettingDescriptionIn; } public PI_CustomSettingsQuery setSettingDescriptionIn(ArrayList value) { this.SettingDescriptionIn = value; return this; } public String getSettingName() { return SettingName; } public PI_CustomSettingsQuery setSettingName(String value) { this.SettingName = value; return this; } public String getSettingNameStartsWith() { return SettingNameStartsWith; } public PI_CustomSettingsQuery setSettingNameStartsWith(String value) { this.SettingNameStartsWith = value; return this; } public String getSettingNameEndsWith() { return SettingNameEndsWith; } public PI_CustomSettingsQuery setSettingNameEndsWith(String value) { this.SettingNameEndsWith = value; return this; } public String getSettingNameContains() { return SettingNameContains; } public PI_CustomSettingsQuery setSettingNameContains(String value) { this.SettingNameContains = value; return this; } public String getSettingNameLike() { return SettingNameLike; } public PI_CustomSettingsQuery setSettingNameLike(String value) { this.SettingNameLike = value; return this; } public ArrayList getSettingNameBetween() { return SettingNameBetween; } public PI_CustomSettingsQuery setSettingNameBetween(ArrayList value) { this.SettingNameBetween = value; return this; } public ArrayList getSettingNameIn() { return SettingNameIn; } public PI_CustomSettingsQuery setSettingNameIn(ArrayList value) { this.SettingNameIn = value; return this; } public BigDecimal getDisplayOrder() { return DisplayOrder; } public PI_CustomSettingsQuery setDisplayOrder(BigDecimal value) { this.DisplayOrder = value; return this; } public BigDecimal getDisplayOrderGreaterThanOrEqualTo() { return DisplayOrderGreaterThanOrEqualTo; } public PI_CustomSettingsQuery setDisplayOrderGreaterThanOrEqualTo(BigDecimal value) { this.DisplayOrderGreaterThanOrEqualTo = value; return this; } public BigDecimal getDisplayOrderGreaterThan() { return DisplayOrderGreaterThan; } public PI_CustomSettingsQuery setDisplayOrderGreaterThan(BigDecimal value) { this.DisplayOrderGreaterThan = value; return this; } public BigDecimal getDisplayOrderLessThan() { return DisplayOrderLessThan; } public PI_CustomSettingsQuery setDisplayOrderLessThan(BigDecimal value) { this.DisplayOrderLessThan = value; return this; } public BigDecimal getDisplayOrderLessThanOrEqualTo() { return DisplayOrderLessThanOrEqualTo; } public PI_CustomSettingsQuery setDisplayOrderLessThanOrEqualTo(BigDecimal value) { this.DisplayOrderLessThanOrEqualTo = value; return this; } public BigDecimal getDisplayOrderNotEqualTo() { return DisplayOrderNotEqualTo; } public PI_CustomSettingsQuery setDisplayOrderNotEqualTo(BigDecimal value) { this.DisplayOrderNotEqualTo = value; return this; } public ArrayList getDisplayOrderBetween() { return DisplayOrderBetween; } public PI_CustomSettingsQuery setDisplayOrderBetween(ArrayList value) { this.DisplayOrderBetween = value; return this; } public ArrayList getDisplayOrderIn() { return DisplayOrderIn; } public PI_CustomSettingsQuery setDisplayOrderIn(ArrayList value) { this.DisplayOrderIn = value; return this; } public Short getCellType() { return CellType; } public PI_CustomSettingsQuery setCellType(Short value) { this.CellType = value; return this; } public Short getCellTypeGreaterThanOrEqualTo() { return CellTypeGreaterThanOrEqualTo; } public PI_CustomSettingsQuery setCellTypeGreaterThanOrEqualTo(Short value) { this.CellTypeGreaterThanOrEqualTo = value; return this; } public Short getCellTypeGreaterThan() { return CellTypeGreaterThan; } public PI_CustomSettingsQuery setCellTypeGreaterThan(Short value) { this.CellTypeGreaterThan = value; return this; } public Short getCellTypeLessThan() { return CellTypeLessThan; } public PI_CustomSettingsQuery setCellTypeLessThan(Short value) { this.CellTypeLessThan = value; return this; } public Short getCellTypeLessThanOrEqualTo() { return CellTypeLessThanOrEqualTo; } public PI_CustomSettingsQuery setCellTypeLessThanOrEqualTo(Short value) { this.CellTypeLessThanOrEqualTo = value; return this; } public Short getCellTypeNotEqualTo() { return CellTypeNotEqualTo; } public PI_CustomSettingsQuery setCellTypeNotEqualTo(Short value) { this.CellTypeNotEqualTo = value; return this; } public ArrayList getCellTypeBetween() { return CellTypeBetween; } public PI_CustomSettingsQuery setCellTypeBetween(ArrayList value) { this.CellTypeBetween = value; return this; } public ArrayList getCellTypeIn() { return CellTypeIn; } public PI_CustomSettingsQuery setCellTypeIn(ArrayList value) { this.CellTypeIn = value; return this; } public String getScriptFormatCell() { return ScriptFormatCell; } public PI_CustomSettingsQuery setScriptFormatCell(String value) { this.ScriptFormatCell = value; return this; } public String getScriptFormatCellStartsWith() { return ScriptFormatCellStartsWith; } public PI_CustomSettingsQuery setScriptFormatCellStartsWith(String value) { this.ScriptFormatCellStartsWith = value; return this; } public String getScriptFormatCellEndsWith() { return ScriptFormatCellEndsWith; } public PI_CustomSettingsQuery setScriptFormatCellEndsWith(String value) { this.ScriptFormatCellEndsWith = value; return this; } public String getScriptFormatCellContains() { return ScriptFormatCellContains; } public PI_CustomSettingsQuery setScriptFormatCellContains(String value) { this.ScriptFormatCellContains = value; return this; } public String getScriptFormatCellLike() { return ScriptFormatCellLike; } public PI_CustomSettingsQuery setScriptFormatCellLike(String value) { this.ScriptFormatCellLike = value; return this; } public ArrayList getScriptFormatCellBetween() { return ScriptFormatCellBetween; } public PI_CustomSettingsQuery setScriptFormatCellBetween(ArrayList value) { this.ScriptFormatCellBetween = value; return this; } public ArrayList getScriptFormatCellIn() { return ScriptFormatCellIn; } public PI_CustomSettingsQuery setScriptFormatCellIn(ArrayList value) { this.ScriptFormatCellIn = value; return this; } public String getScriptButtonClicked() { return ScriptButtonClicked; } public PI_CustomSettingsQuery setScriptButtonClicked(String value) { this.ScriptButtonClicked = value; return this; } public String getScriptButtonClickedStartsWith() { return ScriptButtonClickedStartsWith; } public PI_CustomSettingsQuery setScriptButtonClickedStartsWith(String value) { this.ScriptButtonClickedStartsWith = value; return this; } public String getScriptButtonClickedEndsWith() { return ScriptButtonClickedEndsWith; } public PI_CustomSettingsQuery setScriptButtonClickedEndsWith(String value) { this.ScriptButtonClickedEndsWith = value; return this; } public String getScriptButtonClickedContains() { return ScriptButtonClickedContains; } public PI_CustomSettingsQuery setScriptButtonClickedContains(String value) { this.ScriptButtonClickedContains = value; return this; } public String getScriptButtonClickedLike() { return ScriptButtonClickedLike; } public PI_CustomSettingsQuery setScriptButtonClickedLike(String value) { this.ScriptButtonClickedLike = value; return this; } public ArrayList getScriptButtonClickedBetween() { return ScriptButtonClickedBetween; } public PI_CustomSettingsQuery setScriptButtonClickedBetween(ArrayList value) { this.ScriptButtonClickedBetween = value; return this; } public ArrayList getScriptButtonClickedIn() { return ScriptButtonClickedIn; } public PI_CustomSettingsQuery setScriptButtonClickedIn(ArrayList value) { this.ScriptButtonClickedIn = value; return this; } public String getScriptReadData() { return ScriptReadData; } public PI_CustomSettingsQuery setScriptReadData(String value) { this.ScriptReadData = value; return this; } public String getScriptReadDataStartsWith() { return ScriptReadDataStartsWith; } public PI_CustomSettingsQuery setScriptReadDataStartsWith(String value) { this.ScriptReadDataStartsWith = value; return this; } public String getScriptReadDataEndsWith() { return ScriptReadDataEndsWith; } public PI_CustomSettingsQuery setScriptReadDataEndsWith(String value) { this.ScriptReadDataEndsWith = value; return this; } public String getScriptReadDataContains() { return ScriptReadDataContains; } public PI_CustomSettingsQuery setScriptReadDataContains(String value) { this.ScriptReadDataContains = value; return this; } public String getScriptReadDataLike() { return ScriptReadDataLike; } public PI_CustomSettingsQuery setScriptReadDataLike(String value) { this.ScriptReadDataLike = value; return this; } public ArrayList getScriptReadDataBetween() { return ScriptReadDataBetween; } public PI_CustomSettingsQuery setScriptReadDataBetween(ArrayList value) { this.ScriptReadDataBetween = value; return this; } public ArrayList getScriptReadDataIn() { return ScriptReadDataIn; } public PI_CustomSettingsQuery setScriptReadDataIn(ArrayList value) { this.ScriptReadDataIn = value; return this; } public UUID getSyPluginRecID() { return SY_Plugin_RecID; } public PI_CustomSettingsQuery setSyPluginRecID(UUID value) { this.SY_Plugin_RecID = value; return this; } public ArrayList getSyPluginRecIDIn() { return SY_Plugin_RecIDIn; } public PI_CustomSettingsQuery setSyPluginRecIDIn(ArrayList value) { this.SY_Plugin_RecIDIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class PI_CustomSettingValuesQuery extends QueryDb implements IReturn> { public String SettingValueID = null; public String SettingValueIDStartsWith = null; public String SettingValueIDEndsWith = null; public String SettingValueIDContains = null; public String SettingValueIDLike = null; public ArrayList SettingValueIDBetween = null; public ArrayList SettingValueIDIn = null; public String SettingID = null; public String SettingIDStartsWith = null; public String SettingIDEndsWith = null; public String SettingIDContains = null; public String SettingIDLike = null; public ArrayList SettingIDBetween = null; public ArrayList SettingIDIn = null; public String PI_Main_RecID = null; public String PI_Main_RecIDStartsWith = null; public String PI_Main_RecIDEndsWith = null; public String PI_Main_RecIDContains = null; public String PI_Main_RecIDLike = null; public ArrayList PI_Main_RecIDBetween = null; public ArrayList PI_Main_RecIDIn = null; public String Contents = null; public String ContentsStartsWith = null; public String ContentsEndsWith = null; public String ContentsContains = null; public String ContentsLike = null; public ArrayList ContentsBetween = null; public ArrayList ContentsIn = null; public Date LastSavedDateTime = null; public Date LastSavedDateTimeGreaterThanOrEqualTo = null; public Date LastSavedDateTimeGreaterThan = null; public Date LastSavedDateTimeLessThan = null; public Date LastSavedDateTimeLessThanOrEqualTo = null; public Date LastSavedDateTimeNotEqualTo = null; public ArrayList LastSavedDateTimeBetween = null; public ArrayList LastSavedDateTimeIn = null; public String getSettingValueID() { return SettingValueID; } public PI_CustomSettingValuesQuery setSettingValueID(String value) { this.SettingValueID = value; return this; } public String getSettingValueIDStartsWith() { return SettingValueIDStartsWith; } public PI_CustomSettingValuesQuery setSettingValueIDStartsWith(String value) { this.SettingValueIDStartsWith = value; return this; } public String getSettingValueIDEndsWith() { return SettingValueIDEndsWith; } public PI_CustomSettingValuesQuery setSettingValueIDEndsWith(String value) { this.SettingValueIDEndsWith = value; return this; } public String getSettingValueIDContains() { return SettingValueIDContains; } public PI_CustomSettingValuesQuery setSettingValueIDContains(String value) { this.SettingValueIDContains = value; return this; } public String getSettingValueIDLike() { return SettingValueIDLike; } public PI_CustomSettingValuesQuery setSettingValueIDLike(String value) { this.SettingValueIDLike = value; return this; } public ArrayList getSettingValueIDBetween() { return SettingValueIDBetween; } public PI_CustomSettingValuesQuery setSettingValueIDBetween(ArrayList value) { this.SettingValueIDBetween = value; return this; } public ArrayList getSettingValueIDIn() { return SettingValueIDIn; } public PI_CustomSettingValuesQuery setSettingValueIDIn(ArrayList value) { this.SettingValueIDIn = value; return this; } public String getSettingID() { return SettingID; } public PI_CustomSettingValuesQuery setSettingID(String value) { this.SettingID = value; return this; } public String getSettingIDStartsWith() { return SettingIDStartsWith; } public PI_CustomSettingValuesQuery setSettingIDStartsWith(String value) { this.SettingIDStartsWith = value; return this; } public String getSettingIDEndsWith() { return SettingIDEndsWith; } public PI_CustomSettingValuesQuery setSettingIDEndsWith(String value) { this.SettingIDEndsWith = value; return this; } public String getSettingIDContains() { return SettingIDContains; } public PI_CustomSettingValuesQuery setSettingIDContains(String value) { this.SettingIDContains = value; return this; } public String getSettingIDLike() { return SettingIDLike; } public PI_CustomSettingValuesQuery setSettingIDLike(String value) { this.SettingIDLike = value; return this; } public ArrayList getSettingIDBetween() { return SettingIDBetween; } public PI_CustomSettingValuesQuery setSettingIDBetween(ArrayList value) { this.SettingIDBetween = value; return this; } public ArrayList getSettingIDIn() { return SettingIDIn; } public PI_CustomSettingValuesQuery setSettingIDIn(ArrayList value) { this.SettingIDIn = value; return this; } public String getPiMainRecID() { return PI_Main_RecID; } public PI_CustomSettingValuesQuery setPiMainRecID(String value) { this.PI_Main_RecID = value; return this; } public String getPiMainRecIDStartsWith() { return PI_Main_RecIDStartsWith; } public PI_CustomSettingValuesQuery setPiMainRecIDStartsWith(String value) { this.PI_Main_RecIDStartsWith = value; return this; } public String getPiMainRecIDEndsWith() { return PI_Main_RecIDEndsWith; } public PI_CustomSettingValuesQuery setPiMainRecIDEndsWith(String value) { this.PI_Main_RecIDEndsWith = value; return this; } public String getPiMainRecIDContains() { return PI_Main_RecIDContains; } public PI_CustomSettingValuesQuery setPiMainRecIDContains(String value) { this.PI_Main_RecIDContains = value; return this; } public String getPiMainRecIDLike() { return PI_Main_RecIDLike; } public PI_CustomSettingValuesQuery setPiMainRecIDLike(String value) { this.PI_Main_RecIDLike = value; return this; } public ArrayList getPiMainRecIDBetween() { return PI_Main_RecIDBetween; } public PI_CustomSettingValuesQuery setPiMainRecIDBetween(ArrayList value) { this.PI_Main_RecIDBetween = value; return this; } public ArrayList getPiMainRecIDIn() { return PI_Main_RecIDIn; } public PI_CustomSettingValuesQuery setPiMainRecIDIn(ArrayList value) { this.PI_Main_RecIDIn = value; return this; } public String getContents() { return Contents; } public PI_CustomSettingValuesQuery setContents(String value) { this.Contents = value; return this; } public String getContentsStartsWith() { return ContentsStartsWith; } public PI_CustomSettingValuesQuery setContentsStartsWith(String value) { this.ContentsStartsWith = value; return this; } public String getContentsEndsWith() { return ContentsEndsWith; } public PI_CustomSettingValuesQuery setContentsEndsWith(String value) { this.ContentsEndsWith = value; return this; } public String getContentsContains() { return ContentsContains; } public PI_CustomSettingValuesQuery setContentsContains(String value) { this.ContentsContains = value; return this; } public String getContentsLike() { return ContentsLike; } public PI_CustomSettingValuesQuery setContentsLike(String value) { this.ContentsLike = value; return this; } public ArrayList getContentsBetween() { return ContentsBetween; } public PI_CustomSettingValuesQuery setContentsBetween(ArrayList value) { this.ContentsBetween = value; return this; } public ArrayList getContentsIn() { return ContentsIn; } public PI_CustomSettingValuesQuery setContentsIn(ArrayList value) { this.ContentsIn = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public PI_CustomSettingValuesQuery setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getLastSavedDateTimeGreaterThanOrEqualTo() { return LastSavedDateTimeGreaterThanOrEqualTo; } public PI_CustomSettingValuesQuery setLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.LastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeGreaterThan() { return LastSavedDateTimeGreaterThan; } public PI_CustomSettingValuesQuery setLastSavedDateTimeGreaterThan(Date value) { this.LastSavedDateTimeGreaterThan = value; return this; } public Date getLastSavedDateTimeLessThan() { return LastSavedDateTimeLessThan; } public PI_CustomSettingValuesQuery setLastSavedDateTimeLessThan(Date value) { this.LastSavedDateTimeLessThan = value; return this; } public Date getLastSavedDateTimeLessThanOrEqualTo() { return LastSavedDateTimeLessThanOrEqualTo; } public PI_CustomSettingValuesQuery setLastSavedDateTimeLessThanOrEqualTo(Date value) { this.LastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeNotEqualTo() { return LastSavedDateTimeNotEqualTo; } public PI_CustomSettingValuesQuery setLastSavedDateTimeNotEqualTo(Date value) { this.LastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getLastSavedDateTimeBetween() { return LastSavedDateTimeBetween; } public PI_CustomSettingValuesQuery setLastSavedDateTimeBetween(ArrayList value) { this.LastSavedDateTimeBetween = value; return this; } public ArrayList getLastSavedDateTimeIn() { return LastSavedDateTimeIn; } public PI_CustomSettingValuesQuery setLastSavedDateTimeIn(ArrayList value) { this.LastSavedDateTimeIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class PI_DocumentsQuery extends QueryDb implements IReturn> { public String RecID = null; public String RecIDStartsWith = null; public String RecIDEndsWith = null; public String RecIDContains = null; public String RecIDLike = null; public ArrayList RecIDBetween = null; public ArrayList RecIDIn = null; public String PI_Main_PI_MainID = null; public String PI_Main_PI_MainIDStartsWith = null; public String PI_Main_PI_MainIDEndsWith = null; public String PI_Main_PI_MainIDContains = null; public String PI_Main_PI_MainIDLike = null; public ArrayList PI_Main_PI_MainIDBetween = null; public ArrayList PI_Main_PI_MainIDIn = null; public String DocumentTypeID = null; public String DocumentTypeIDStartsWith = null; public String DocumentTypeIDEndsWith = null; public String DocumentTypeIDContains = null; public String DocumentTypeIDLike = null; public ArrayList DocumentTypeIDBetween = null; public ArrayList DocumentTypeIDIn = null; public Date LastSavedDateTime = null; public Date LastSavedDateTimeGreaterThanOrEqualTo = null; public Date LastSavedDateTimeGreaterThan = null; public Date LastSavedDateTimeLessThan = null; public Date LastSavedDateTimeLessThanOrEqualTo = null; public Date LastSavedDateTimeNotEqualTo = null; public ArrayList LastSavedDateTimeBetween = null; public ArrayList LastSavedDateTimeIn = null; public String LastSavedByStaffID = null; public String LastSavedByStaffIDStartsWith = null; public String LastSavedByStaffIDEndsWith = null; public String LastSavedByStaffIDContains = null; public String LastSavedByStaffIDLike = null; public ArrayList LastSavedByStaffIDBetween = null; public ArrayList LastSavedByStaffIDIn = null; public ArrayList FileBinary = null; public String Description = null; public String DescriptionStartsWith = null; public String DescriptionEndsWith = null; public String DescriptionContains = null; public String DescriptionLike = null; public ArrayList DescriptionBetween = null; public ArrayList DescriptionIn = null; public String PhysicalFileName = null; public String PhysicalFileNameStartsWith = null; public String PhysicalFileNameEndsWith = null; public String PhysicalFileNameContains = null; public String PhysicalFileNameLike = null; public ArrayList PhysicalFileNameBetween = null; public ArrayList PhysicalFileNameIn = null; public Integer ItemNo = null; public Integer ItemNoGreaterThanOrEqualTo = null; public Integer ItemNoGreaterThan = null; public Integer ItemNoLessThan = null; public Integer ItemNoLessThanOrEqualTo = null; public Integer ItemNoNotEqualTo = null; public ArrayList ItemNoBetween = null; public ArrayList ItemNoIn = null; public String getRecID() { return RecID; } public PI_DocumentsQuery setRecID(String value) { this.RecID = value; return this; } public String getRecIDStartsWith() { return RecIDStartsWith; } public PI_DocumentsQuery setRecIDStartsWith(String value) { this.RecIDStartsWith = value; return this; } public String getRecIDEndsWith() { return RecIDEndsWith; } public PI_DocumentsQuery setRecIDEndsWith(String value) { this.RecIDEndsWith = value; return this; } public String getRecIDContains() { return RecIDContains; } public PI_DocumentsQuery setRecIDContains(String value) { this.RecIDContains = value; return this; } public String getRecIDLike() { return RecIDLike; } public PI_DocumentsQuery setRecIDLike(String value) { this.RecIDLike = value; return this; } public ArrayList getRecIDBetween() { return RecIDBetween; } public PI_DocumentsQuery setRecIDBetween(ArrayList value) { this.RecIDBetween = value; return this; } public ArrayList getRecIDIn() { return RecIDIn; } public PI_DocumentsQuery setRecIDIn(ArrayList value) { this.RecIDIn = value; return this; } public String getPiMainPiMainID() { return PI_Main_PI_MainID; } public PI_DocumentsQuery setPiMainPiMainID(String value) { this.PI_Main_PI_MainID = value; return this; } public String getPiMainPiMainIDStartsWith() { return PI_Main_PI_MainIDStartsWith; } public PI_DocumentsQuery setPiMainPiMainIDStartsWith(String value) { this.PI_Main_PI_MainIDStartsWith = value; return this; } public String getPiMainPiMainIDEndsWith() { return PI_Main_PI_MainIDEndsWith; } public PI_DocumentsQuery setPiMainPiMainIDEndsWith(String value) { this.PI_Main_PI_MainIDEndsWith = value; return this; } public String getPiMainPiMainIDContains() { return PI_Main_PI_MainIDContains; } public PI_DocumentsQuery setPiMainPiMainIDContains(String value) { this.PI_Main_PI_MainIDContains = value; return this; } public String getPiMainPiMainIDLike() { return PI_Main_PI_MainIDLike; } public PI_DocumentsQuery setPiMainPiMainIDLike(String value) { this.PI_Main_PI_MainIDLike = value; return this; } public ArrayList getPiMainPiMainIDBetween() { return PI_Main_PI_MainIDBetween; } public PI_DocumentsQuery setPiMainPiMainIDBetween(ArrayList value) { this.PI_Main_PI_MainIDBetween = value; return this; } public ArrayList getPiMainPiMainIDIn() { return PI_Main_PI_MainIDIn; } public PI_DocumentsQuery setPiMainPiMainIDIn(ArrayList value) { this.PI_Main_PI_MainIDIn = value; return this; } public String getDocumentTypeID() { return DocumentTypeID; } public PI_DocumentsQuery setDocumentTypeID(String value) { this.DocumentTypeID = value; return this; } public String getDocumentTypeIDStartsWith() { return DocumentTypeIDStartsWith; } public PI_DocumentsQuery setDocumentTypeIDStartsWith(String value) { this.DocumentTypeIDStartsWith = value; return this; } public String getDocumentTypeIDEndsWith() { return DocumentTypeIDEndsWith; } public PI_DocumentsQuery setDocumentTypeIDEndsWith(String value) { this.DocumentTypeIDEndsWith = value; return this; } public String getDocumentTypeIDContains() { return DocumentTypeIDContains; } public PI_DocumentsQuery setDocumentTypeIDContains(String value) { this.DocumentTypeIDContains = value; return this; } public String getDocumentTypeIDLike() { return DocumentTypeIDLike; } public PI_DocumentsQuery setDocumentTypeIDLike(String value) { this.DocumentTypeIDLike = value; return this; } public ArrayList getDocumentTypeIDBetween() { return DocumentTypeIDBetween; } public PI_DocumentsQuery setDocumentTypeIDBetween(ArrayList value) { this.DocumentTypeIDBetween = value; return this; } public ArrayList getDocumentTypeIDIn() { return DocumentTypeIDIn; } public PI_DocumentsQuery setDocumentTypeIDIn(ArrayList value) { this.DocumentTypeIDIn = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public PI_DocumentsQuery setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getLastSavedDateTimeGreaterThanOrEqualTo() { return LastSavedDateTimeGreaterThanOrEqualTo; } public PI_DocumentsQuery setLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.LastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeGreaterThan() { return LastSavedDateTimeGreaterThan; } public PI_DocumentsQuery setLastSavedDateTimeGreaterThan(Date value) { this.LastSavedDateTimeGreaterThan = value; return this; } public Date getLastSavedDateTimeLessThan() { return LastSavedDateTimeLessThan; } public PI_DocumentsQuery setLastSavedDateTimeLessThan(Date value) { this.LastSavedDateTimeLessThan = value; return this; } public Date getLastSavedDateTimeLessThanOrEqualTo() { return LastSavedDateTimeLessThanOrEqualTo; } public PI_DocumentsQuery setLastSavedDateTimeLessThanOrEqualTo(Date value) { this.LastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeNotEqualTo() { return LastSavedDateTimeNotEqualTo; } public PI_DocumentsQuery setLastSavedDateTimeNotEqualTo(Date value) { this.LastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getLastSavedDateTimeBetween() { return LastSavedDateTimeBetween; } public PI_DocumentsQuery setLastSavedDateTimeBetween(ArrayList value) { this.LastSavedDateTimeBetween = value; return this; } public ArrayList getLastSavedDateTimeIn() { return LastSavedDateTimeIn; } public PI_DocumentsQuery setLastSavedDateTimeIn(ArrayList value) { this.LastSavedDateTimeIn = value; return this; } public String getLastSavedByStaffID() { return LastSavedByStaffID; } public PI_DocumentsQuery setLastSavedByStaffID(String value) { this.LastSavedByStaffID = value; return this; } public String getLastSavedByStaffIDStartsWith() { return LastSavedByStaffIDStartsWith; } public PI_DocumentsQuery setLastSavedByStaffIDStartsWith(String value) { this.LastSavedByStaffIDStartsWith = value; return this; } public String getLastSavedByStaffIDEndsWith() { return LastSavedByStaffIDEndsWith; } public PI_DocumentsQuery setLastSavedByStaffIDEndsWith(String value) { this.LastSavedByStaffIDEndsWith = value; return this; } public String getLastSavedByStaffIDContains() { return LastSavedByStaffIDContains; } public PI_DocumentsQuery setLastSavedByStaffIDContains(String value) { this.LastSavedByStaffIDContains = value; return this; } public String getLastSavedByStaffIDLike() { return LastSavedByStaffIDLike; } public PI_DocumentsQuery setLastSavedByStaffIDLike(String value) { this.LastSavedByStaffIDLike = value; return this; } public ArrayList getLastSavedByStaffIDBetween() { return LastSavedByStaffIDBetween; } public PI_DocumentsQuery setLastSavedByStaffIDBetween(ArrayList value) { this.LastSavedByStaffIDBetween = value; return this; } public ArrayList getLastSavedByStaffIDIn() { return LastSavedByStaffIDIn; } public PI_DocumentsQuery setLastSavedByStaffIDIn(ArrayList value) { this.LastSavedByStaffIDIn = value; return this; } public ArrayList getFileBinary() { return FileBinary; } public PI_DocumentsQuery setFileBinary(ArrayList value) { this.FileBinary = value; return this; } public String getDescription() { return Description; } public PI_DocumentsQuery setDescription(String value) { this.Description = value; return this; } public String getDescriptionStartsWith() { return DescriptionStartsWith; } public PI_DocumentsQuery setDescriptionStartsWith(String value) { this.DescriptionStartsWith = value; return this; } public String getDescriptionEndsWith() { return DescriptionEndsWith; } public PI_DocumentsQuery setDescriptionEndsWith(String value) { this.DescriptionEndsWith = value; return this; } public String getDescriptionContains() { return DescriptionContains; } public PI_DocumentsQuery setDescriptionContains(String value) { this.DescriptionContains = value; return this; } public String getDescriptionLike() { return DescriptionLike; } public PI_DocumentsQuery setDescriptionLike(String value) { this.DescriptionLike = value; return this; } public ArrayList getDescriptionBetween() { return DescriptionBetween; } public PI_DocumentsQuery setDescriptionBetween(ArrayList value) { this.DescriptionBetween = value; return this; } public ArrayList getDescriptionIn() { return DescriptionIn; } public PI_DocumentsQuery setDescriptionIn(ArrayList value) { this.DescriptionIn = value; return this; } public String getPhysicalFileName() { return PhysicalFileName; } public PI_DocumentsQuery setPhysicalFileName(String value) { this.PhysicalFileName = value; return this; } public String getPhysicalFileNameStartsWith() { return PhysicalFileNameStartsWith; } public PI_DocumentsQuery setPhysicalFileNameStartsWith(String value) { this.PhysicalFileNameStartsWith = value; return this; } public String getPhysicalFileNameEndsWith() { return PhysicalFileNameEndsWith; } public PI_DocumentsQuery setPhysicalFileNameEndsWith(String value) { this.PhysicalFileNameEndsWith = value; return this; } public String getPhysicalFileNameContains() { return PhysicalFileNameContains; } public PI_DocumentsQuery setPhysicalFileNameContains(String value) { this.PhysicalFileNameContains = value; return this; } public String getPhysicalFileNameLike() { return PhysicalFileNameLike; } public PI_DocumentsQuery setPhysicalFileNameLike(String value) { this.PhysicalFileNameLike = value; return this; } public ArrayList getPhysicalFileNameBetween() { return PhysicalFileNameBetween; } public PI_DocumentsQuery setPhysicalFileNameBetween(ArrayList value) { this.PhysicalFileNameBetween = value; return this; } public ArrayList getPhysicalFileNameIn() { return PhysicalFileNameIn; } public PI_DocumentsQuery setPhysicalFileNameIn(ArrayList value) { this.PhysicalFileNameIn = value; return this; } public Integer getItemNo() { return ItemNo; } public PI_DocumentsQuery setItemNo(Integer value) { this.ItemNo = value; return this; } public Integer getItemNoGreaterThanOrEqualTo() { return ItemNoGreaterThanOrEqualTo; } public PI_DocumentsQuery setItemNoGreaterThanOrEqualTo(Integer value) { this.ItemNoGreaterThanOrEqualTo = value; return this; } public Integer getItemNoGreaterThan() { return ItemNoGreaterThan; } public PI_DocumentsQuery setItemNoGreaterThan(Integer value) { this.ItemNoGreaterThan = value; return this; } public Integer getItemNoLessThan() { return ItemNoLessThan; } public PI_DocumentsQuery setItemNoLessThan(Integer value) { this.ItemNoLessThan = value; return this; } public Integer getItemNoLessThanOrEqualTo() { return ItemNoLessThanOrEqualTo; } public PI_DocumentsQuery setItemNoLessThanOrEqualTo(Integer value) { this.ItemNoLessThanOrEqualTo = value; return this; } public Integer getItemNoNotEqualTo() { return ItemNoNotEqualTo; } public PI_DocumentsQuery setItemNoNotEqualTo(Integer value) { this.ItemNoNotEqualTo = value; return this; } public ArrayList getItemNoBetween() { return ItemNoBetween; } public PI_DocumentsQuery setItemNoBetween(ArrayList value) { this.ItemNoBetween = value; return this; } public ArrayList getItemNoIn() { return ItemNoIn; } public PI_DocumentsQuery setItemNoIn(ArrayList value) { this.ItemNoIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class PI_LineCustomFieldsQuery extends QueryDb implements IReturn> { public String RecID = null; public String RecIDStartsWith = null; public String RecIDEndsWith = null; public String RecIDContains = null; public String RecIDLike = null; public ArrayList RecIDBetween = null; public ArrayList RecIDIn = null; public String SettingName = null; public String SettingNameStartsWith = null; public String SettingNameEndsWith = null; public String SettingNameContains = null; public String SettingNameLike = null; public ArrayList SettingNameBetween = null; public ArrayList SettingNameIn = null; public String SettingDescription = null; public String SettingDescriptionStartsWith = null; public String SettingDescriptionEndsWith = null; public String SettingDescriptionContains = null; public String SettingDescriptionLike = null; public ArrayList SettingDescriptionBetween = null; public ArrayList SettingDescriptionIn = null; public Integer CellType = null; public Integer CellTypeGreaterThanOrEqualTo = null; public Integer CellTypeGreaterThan = null; public Integer CellTypeLessThan = null; public Integer CellTypeLessThanOrEqualTo = null; public Integer CellTypeNotEqualTo = null; public ArrayList CellTypeBetween = null; public ArrayList CellTypeIn = null; public String FieldParameter = null; public String FieldParameterStartsWith = null; public String FieldParameterEndsWith = null; public String FieldParameterContains = null; public String FieldParameterLike = null; public ArrayList FieldParameterBetween = null; public ArrayList FieldParameterIn = null; public UUID SY_Plugin_RecID = null; public ArrayList SY_Plugin_RecIDIn = null; public Date LastSavedDateTime = null; public Date LastSavedDateTimeGreaterThanOrEqualTo = null; public Date LastSavedDateTimeGreaterThan = null; public Date LastSavedDateTimeLessThan = null; public Date LastSavedDateTimeLessThanOrEqualTo = null; public Date LastSavedDateTimeNotEqualTo = null; public ArrayList LastSavedDateTimeBetween = null; public ArrayList LastSavedDateTimeIn = null; public Integer DisplayOrder = null; public Integer DisplayOrderGreaterThanOrEqualTo = null; public Integer DisplayOrderGreaterThan = null; public Integer DisplayOrderLessThan = null; public Integer DisplayOrderLessThanOrEqualTo = null; public Integer DisplayOrderNotEqualTo = null; public ArrayList DisplayOrderBetween = null; public ArrayList DisplayOrderIn = null; public String getRecID() { return RecID; } public PI_LineCustomFieldsQuery setRecID(String value) { this.RecID = value; return this; } public String getRecIDStartsWith() { return RecIDStartsWith; } public PI_LineCustomFieldsQuery setRecIDStartsWith(String value) { this.RecIDStartsWith = value; return this; } public String getRecIDEndsWith() { return RecIDEndsWith; } public PI_LineCustomFieldsQuery setRecIDEndsWith(String value) { this.RecIDEndsWith = value; return this; } public String getRecIDContains() { return RecIDContains; } public PI_LineCustomFieldsQuery setRecIDContains(String value) { this.RecIDContains = value; return this; } public String getRecIDLike() { return RecIDLike; } public PI_LineCustomFieldsQuery setRecIDLike(String value) { this.RecIDLike = value; return this; } public ArrayList getRecIDBetween() { return RecIDBetween; } public PI_LineCustomFieldsQuery setRecIDBetween(ArrayList value) { this.RecIDBetween = value; return this; } public ArrayList getRecIDIn() { return RecIDIn; } public PI_LineCustomFieldsQuery setRecIDIn(ArrayList value) { this.RecIDIn = value; return this; } public String getSettingName() { return SettingName; } public PI_LineCustomFieldsQuery setSettingName(String value) { this.SettingName = value; return this; } public String getSettingNameStartsWith() { return SettingNameStartsWith; } public PI_LineCustomFieldsQuery setSettingNameStartsWith(String value) { this.SettingNameStartsWith = value; return this; } public String getSettingNameEndsWith() { return SettingNameEndsWith; } public PI_LineCustomFieldsQuery setSettingNameEndsWith(String value) { this.SettingNameEndsWith = value; return this; } public String getSettingNameContains() { return SettingNameContains; } public PI_LineCustomFieldsQuery setSettingNameContains(String value) { this.SettingNameContains = value; return this; } public String getSettingNameLike() { return SettingNameLike; } public PI_LineCustomFieldsQuery setSettingNameLike(String value) { this.SettingNameLike = value; return this; } public ArrayList getSettingNameBetween() { return SettingNameBetween; } public PI_LineCustomFieldsQuery setSettingNameBetween(ArrayList value) { this.SettingNameBetween = value; return this; } public ArrayList getSettingNameIn() { return SettingNameIn; } public PI_LineCustomFieldsQuery setSettingNameIn(ArrayList value) { this.SettingNameIn = value; return this; } public String getSettingDescription() { return SettingDescription; } public PI_LineCustomFieldsQuery setSettingDescription(String value) { this.SettingDescription = value; return this; } public String getSettingDescriptionStartsWith() { return SettingDescriptionStartsWith; } public PI_LineCustomFieldsQuery setSettingDescriptionStartsWith(String value) { this.SettingDescriptionStartsWith = value; return this; } public String getSettingDescriptionEndsWith() { return SettingDescriptionEndsWith; } public PI_LineCustomFieldsQuery setSettingDescriptionEndsWith(String value) { this.SettingDescriptionEndsWith = value; return this; } public String getSettingDescriptionContains() { return SettingDescriptionContains; } public PI_LineCustomFieldsQuery setSettingDescriptionContains(String value) { this.SettingDescriptionContains = value; return this; } public String getSettingDescriptionLike() { return SettingDescriptionLike; } public PI_LineCustomFieldsQuery setSettingDescriptionLike(String value) { this.SettingDescriptionLike = value; return this; } public ArrayList getSettingDescriptionBetween() { return SettingDescriptionBetween; } public PI_LineCustomFieldsQuery setSettingDescriptionBetween(ArrayList value) { this.SettingDescriptionBetween = value; return this; } public ArrayList getSettingDescriptionIn() { return SettingDescriptionIn; } public PI_LineCustomFieldsQuery setSettingDescriptionIn(ArrayList value) { this.SettingDescriptionIn = value; return this; } public Integer getCellType() { return CellType; } public PI_LineCustomFieldsQuery setCellType(Integer value) { this.CellType = value; return this; } public Integer getCellTypeGreaterThanOrEqualTo() { return CellTypeGreaterThanOrEqualTo; } public PI_LineCustomFieldsQuery setCellTypeGreaterThanOrEqualTo(Integer value) { this.CellTypeGreaterThanOrEqualTo = value; return this; } public Integer getCellTypeGreaterThan() { return CellTypeGreaterThan; } public PI_LineCustomFieldsQuery setCellTypeGreaterThan(Integer value) { this.CellTypeGreaterThan = value; return this; } public Integer getCellTypeLessThan() { return CellTypeLessThan; } public PI_LineCustomFieldsQuery setCellTypeLessThan(Integer value) { this.CellTypeLessThan = value; return this; } public Integer getCellTypeLessThanOrEqualTo() { return CellTypeLessThanOrEqualTo; } public PI_LineCustomFieldsQuery setCellTypeLessThanOrEqualTo(Integer value) { this.CellTypeLessThanOrEqualTo = value; return this; } public Integer getCellTypeNotEqualTo() { return CellTypeNotEqualTo; } public PI_LineCustomFieldsQuery setCellTypeNotEqualTo(Integer value) { this.CellTypeNotEqualTo = value; return this; } public ArrayList getCellTypeBetween() { return CellTypeBetween; } public PI_LineCustomFieldsQuery setCellTypeBetween(ArrayList value) { this.CellTypeBetween = value; return this; } public ArrayList getCellTypeIn() { return CellTypeIn; } public PI_LineCustomFieldsQuery setCellTypeIn(ArrayList value) { this.CellTypeIn = value; return this; } public String getFieldParameter() { return FieldParameter; } public PI_LineCustomFieldsQuery setFieldParameter(String value) { this.FieldParameter = value; return this; } public String getFieldParameterStartsWith() { return FieldParameterStartsWith; } public PI_LineCustomFieldsQuery setFieldParameterStartsWith(String value) { this.FieldParameterStartsWith = value; return this; } public String getFieldParameterEndsWith() { return FieldParameterEndsWith; } public PI_LineCustomFieldsQuery setFieldParameterEndsWith(String value) { this.FieldParameterEndsWith = value; return this; } public String getFieldParameterContains() { return FieldParameterContains; } public PI_LineCustomFieldsQuery setFieldParameterContains(String value) { this.FieldParameterContains = value; return this; } public String getFieldParameterLike() { return FieldParameterLike; } public PI_LineCustomFieldsQuery setFieldParameterLike(String value) { this.FieldParameterLike = value; return this; } public ArrayList getFieldParameterBetween() { return FieldParameterBetween; } public PI_LineCustomFieldsQuery setFieldParameterBetween(ArrayList value) { this.FieldParameterBetween = value; return this; } public ArrayList getFieldParameterIn() { return FieldParameterIn; } public PI_LineCustomFieldsQuery setFieldParameterIn(ArrayList value) { this.FieldParameterIn = value; return this; } public UUID getSyPluginRecID() { return SY_Plugin_RecID; } public PI_LineCustomFieldsQuery setSyPluginRecID(UUID value) { this.SY_Plugin_RecID = value; return this; } public ArrayList getSyPluginRecIDIn() { return SY_Plugin_RecIDIn; } public PI_LineCustomFieldsQuery setSyPluginRecIDIn(ArrayList value) { this.SY_Plugin_RecIDIn = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public PI_LineCustomFieldsQuery setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getLastSavedDateTimeGreaterThanOrEqualTo() { return LastSavedDateTimeGreaterThanOrEqualTo; } public PI_LineCustomFieldsQuery setLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.LastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeGreaterThan() { return LastSavedDateTimeGreaterThan; } public PI_LineCustomFieldsQuery setLastSavedDateTimeGreaterThan(Date value) { this.LastSavedDateTimeGreaterThan = value; return this; } public Date getLastSavedDateTimeLessThan() { return LastSavedDateTimeLessThan; } public PI_LineCustomFieldsQuery setLastSavedDateTimeLessThan(Date value) { this.LastSavedDateTimeLessThan = value; return this; } public Date getLastSavedDateTimeLessThanOrEqualTo() { return LastSavedDateTimeLessThanOrEqualTo; } public PI_LineCustomFieldsQuery setLastSavedDateTimeLessThanOrEqualTo(Date value) { this.LastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeNotEqualTo() { return LastSavedDateTimeNotEqualTo; } public PI_LineCustomFieldsQuery setLastSavedDateTimeNotEqualTo(Date value) { this.LastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getLastSavedDateTimeBetween() { return LastSavedDateTimeBetween; } public PI_LineCustomFieldsQuery setLastSavedDateTimeBetween(ArrayList value) { this.LastSavedDateTimeBetween = value; return this; } public ArrayList getLastSavedDateTimeIn() { return LastSavedDateTimeIn; } public PI_LineCustomFieldsQuery setLastSavedDateTimeIn(ArrayList value) { this.LastSavedDateTimeIn = value; return this; } public Integer getDisplayOrder() { return DisplayOrder; } public PI_LineCustomFieldsQuery setDisplayOrder(Integer value) { this.DisplayOrder = value; return this; } public Integer getDisplayOrderGreaterThanOrEqualTo() { return DisplayOrderGreaterThanOrEqualTo; } public PI_LineCustomFieldsQuery setDisplayOrderGreaterThanOrEqualTo(Integer value) { this.DisplayOrderGreaterThanOrEqualTo = value; return this; } public Integer getDisplayOrderGreaterThan() { return DisplayOrderGreaterThan; } public PI_LineCustomFieldsQuery setDisplayOrderGreaterThan(Integer value) { this.DisplayOrderGreaterThan = value; return this; } public Integer getDisplayOrderLessThan() { return DisplayOrderLessThan; } public PI_LineCustomFieldsQuery setDisplayOrderLessThan(Integer value) { this.DisplayOrderLessThan = value; return this; } public Integer getDisplayOrderLessThanOrEqualTo() { return DisplayOrderLessThanOrEqualTo; } public PI_LineCustomFieldsQuery setDisplayOrderLessThanOrEqualTo(Integer value) { this.DisplayOrderLessThanOrEqualTo = value; return this; } public Integer getDisplayOrderNotEqualTo() { return DisplayOrderNotEqualTo; } public PI_LineCustomFieldsQuery setDisplayOrderNotEqualTo(Integer value) { this.DisplayOrderNotEqualTo = value; return this; } public ArrayList getDisplayOrderBetween() { return DisplayOrderBetween; } public PI_LineCustomFieldsQuery setDisplayOrderBetween(ArrayList value) { this.DisplayOrderBetween = value; return this; } public ArrayList getDisplayOrderIn() { return DisplayOrderIn; } public PI_LineCustomFieldsQuery setDisplayOrderIn(ArrayList value) { this.DisplayOrderIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class PI_LineCustomValuesQuery extends QueryDb implements IReturn> { public String RecID = null; public String RecIDStartsWith = null; public String RecIDEndsWith = null; public String RecIDContains = null; public String RecIDLike = null; public ArrayList RecIDBetween = null; public ArrayList RecIDIn = null; public String PI_Lines_RecID = null; public String PI_Lines_RecIDStartsWith = null; public String PI_Lines_RecIDEndsWith = null; public String PI_Lines_RecIDContains = null; public String PI_Lines_RecIDLike = null; public ArrayList PI_Lines_RecIDBetween = null; public ArrayList PI_Lines_RecIDIn = null; public String PI_LineCustomFields_RecID = null; public String PI_LineCustomFields_RecIDStartsWith = null; public String PI_LineCustomFields_RecIDEndsWith = null; public String PI_LineCustomFields_RecIDContains = null; public String PI_LineCustomFields_RecIDLike = null; public ArrayList PI_LineCustomFields_RecIDBetween = null; public ArrayList PI_LineCustomFields_RecIDIn = null; public String Contents = null; public String ContentsStartsWith = null; public String ContentsEndsWith = null; public String ContentsContains = null; public String ContentsLike = null; public ArrayList ContentsBetween = null; public ArrayList ContentsIn = null; public Date LastSavedDateTime = null; public Date LastSavedDateTimeGreaterThanOrEqualTo = null; public Date LastSavedDateTimeGreaterThan = null; public Date LastSavedDateTimeLessThan = null; public Date LastSavedDateTimeLessThanOrEqualTo = null; public Date LastSavedDateTimeNotEqualTo = null; public ArrayList LastSavedDateTimeBetween = null; public ArrayList LastSavedDateTimeIn = null; public String getRecID() { return RecID; } public PI_LineCustomValuesQuery setRecID(String value) { this.RecID = value; return this; } public String getRecIDStartsWith() { return RecIDStartsWith; } public PI_LineCustomValuesQuery setRecIDStartsWith(String value) { this.RecIDStartsWith = value; return this; } public String getRecIDEndsWith() { return RecIDEndsWith; } public PI_LineCustomValuesQuery setRecIDEndsWith(String value) { this.RecIDEndsWith = value; return this; } public String getRecIDContains() { return RecIDContains; } public PI_LineCustomValuesQuery setRecIDContains(String value) { this.RecIDContains = value; return this; } public String getRecIDLike() { return RecIDLike; } public PI_LineCustomValuesQuery setRecIDLike(String value) { this.RecIDLike = value; return this; } public ArrayList getRecIDBetween() { return RecIDBetween; } public PI_LineCustomValuesQuery setRecIDBetween(ArrayList value) { this.RecIDBetween = value; return this; } public ArrayList getRecIDIn() { return RecIDIn; } public PI_LineCustomValuesQuery setRecIDIn(ArrayList value) { this.RecIDIn = value; return this; } public String getPiLinesRecID() { return PI_Lines_RecID; } public PI_LineCustomValuesQuery setPiLinesRecID(String value) { this.PI_Lines_RecID = value; return this; } public String getPiLinesRecIDStartsWith() { return PI_Lines_RecIDStartsWith; } public PI_LineCustomValuesQuery setPiLinesRecIDStartsWith(String value) { this.PI_Lines_RecIDStartsWith = value; return this; } public String getPiLinesRecIDEndsWith() { return PI_Lines_RecIDEndsWith; } public PI_LineCustomValuesQuery setPiLinesRecIDEndsWith(String value) { this.PI_Lines_RecIDEndsWith = value; return this; } public String getPiLinesRecIDContains() { return PI_Lines_RecIDContains; } public PI_LineCustomValuesQuery setPiLinesRecIDContains(String value) { this.PI_Lines_RecIDContains = value; return this; } public String getPiLinesRecIDLike() { return PI_Lines_RecIDLike; } public PI_LineCustomValuesQuery setPiLinesRecIDLike(String value) { this.PI_Lines_RecIDLike = value; return this; } public ArrayList getPiLinesRecIDBetween() { return PI_Lines_RecIDBetween; } public PI_LineCustomValuesQuery setPiLinesRecIDBetween(ArrayList value) { this.PI_Lines_RecIDBetween = value; return this; } public ArrayList getPiLinesRecIDIn() { return PI_Lines_RecIDIn; } public PI_LineCustomValuesQuery setPiLinesRecIDIn(ArrayList value) { this.PI_Lines_RecIDIn = value; return this; } public String getPiLineCustomFieldsRecID() { return PI_LineCustomFields_RecID; } public PI_LineCustomValuesQuery setPiLineCustomFieldsRecID(String value) { this.PI_LineCustomFields_RecID = value; return this; } public String getPiLineCustomFieldsRecIDStartsWith() { return PI_LineCustomFields_RecIDStartsWith; } public PI_LineCustomValuesQuery setPiLineCustomFieldsRecIDStartsWith(String value) { this.PI_LineCustomFields_RecIDStartsWith = value; return this; } public String getPiLineCustomFieldsRecIDEndsWith() { return PI_LineCustomFields_RecIDEndsWith; } public PI_LineCustomValuesQuery setPiLineCustomFieldsRecIDEndsWith(String value) { this.PI_LineCustomFields_RecIDEndsWith = value; return this; } public String getPiLineCustomFieldsRecIDContains() { return PI_LineCustomFields_RecIDContains; } public PI_LineCustomValuesQuery setPiLineCustomFieldsRecIDContains(String value) { this.PI_LineCustomFields_RecIDContains = value; return this; } public String getPiLineCustomFieldsRecIDLike() { return PI_LineCustomFields_RecIDLike; } public PI_LineCustomValuesQuery setPiLineCustomFieldsRecIDLike(String value) { this.PI_LineCustomFields_RecIDLike = value; return this; } public ArrayList getPiLineCustomFieldsRecIDBetween() { return PI_LineCustomFields_RecIDBetween; } public PI_LineCustomValuesQuery setPiLineCustomFieldsRecIDBetween(ArrayList value) { this.PI_LineCustomFields_RecIDBetween = value; return this; } public ArrayList getPiLineCustomFieldsRecIDIn() { return PI_LineCustomFields_RecIDIn; } public PI_LineCustomValuesQuery setPiLineCustomFieldsRecIDIn(ArrayList value) { this.PI_LineCustomFields_RecIDIn = value; return this; } public String getContents() { return Contents; } public PI_LineCustomValuesQuery setContents(String value) { this.Contents = value; return this; } public String getContentsStartsWith() { return ContentsStartsWith; } public PI_LineCustomValuesQuery setContentsStartsWith(String value) { this.ContentsStartsWith = value; return this; } public String getContentsEndsWith() { return ContentsEndsWith; } public PI_LineCustomValuesQuery setContentsEndsWith(String value) { this.ContentsEndsWith = value; return this; } public String getContentsContains() { return ContentsContains; } public PI_LineCustomValuesQuery setContentsContains(String value) { this.ContentsContains = value; return this; } public String getContentsLike() { return ContentsLike; } public PI_LineCustomValuesQuery setContentsLike(String value) { this.ContentsLike = value; return this; } public ArrayList getContentsBetween() { return ContentsBetween; } public PI_LineCustomValuesQuery setContentsBetween(ArrayList value) { this.ContentsBetween = value; return this; } public ArrayList getContentsIn() { return ContentsIn; } public PI_LineCustomValuesQuery setContentsIn(ArrayList value) { this.ContentsIn = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public PI_LineCustomValuesQuery setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getLastSavedDateTimeGreaterThanOrEqualTo() { return LastSavedDateTimeGreaterThanOrEqualTo; } public PI_LineCustomValuesQuery setLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.LastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeGreaterThan() { return LastSavedDateTimeGreaterThan; } public PI_LineCustomValuesQuery setLastSavedDateTimeGreaterThan(Date value) { this.LastSavedDateTimeGreaterThan = value; return this; } public Date getLastSavedDateTimeLessThan() { return LastSavedDateTimeLessThan; } public PI_LineCustomValuesQuery setLastSavedDateTimeLessThan(Date value) { this.LastSavedDateTimeLessThan = value; return this; } public Date getLastSavedDateTimeLessThanOrEqualTo() { return LastSavedDateTimeLessThanOrEqualTo; } public PI_LineCustomValuesQuery setLastSavedDateTimeLessThanOrEqualTo(Date value) { this.LastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeNotEqualTo() { return LastSavedDateTimeNotEqualTo; } public PI_LineCustomValuesQuery setLastSavedDateTimeNotEqualTo(Date value) { this.LastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getLastSavedDateTimeBetween() { return LastSavedDateTimeBetween; } public PI_LineCustomValuesQuery setLastSavedDateTimeBetween(ArrayList value) { this.LastSavedDateTimeBetween = value; return this; } public ArrayList getLastSavedDateTimeIn() { return LastSavedDateTimeIn; } public PI_LineCustomValuesQuery setLastSavedDateTimeIn(ArrayList value) { this.LastSavedDateTimeIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class PI_LinesQuery extends QueryDb implements IReturn> { public String PI_LinesID = null; public String PI_LinesIDStartsWith = null; public String PI_LinesIDEndsWith = null; public String PI_LinesIDContains = null; public String PI_LinesIDLike = null; public ArrayList PI_LinesIDBetween = null; public ArrayList PI_LinesIDIn = null; public String PI_MainID = null; public String PI_MainIDStartsWith = null; public String PI_MainIDEndsWith = null; public String PI_MainIDContains = null; public String PI_MainIDLike = null; public ArrayList PI_MainIDBetween = null; public ArrayList PI_MainIDIn = null; public String RE_MainID = null; public String RE_MainIDStartsWith = null; public String RE_MainIDEndsWith = null; public String RE_MainIDContains = null; public String RE_MainIDLike = null; public ArrayList RE_MainIDBetween = null; public ArrayList RE_MainIDIn = null; public String RE_LinesID = null; public String RE_LinesIDStartsWith = null; public String RE_LinesIDEndsWith = null; public String RE_LinesIDContains = null; public String RE_LinesIDLike = null; public ArrayList RE_LinesIDBetween = null; public ArrayList RE_LinesIDIn = null; public BigDecimal Quantity = null; public BigDecimal QuantityGreaterThanOrEqualTo = null; public BigDecimal QuantityGreaterThan = null; public BigDecimal QuantityLessThan = null; public BigDecimal QuantityLessThanOrEqualTo = null; public BigDecimal QuantityNotEqualTo = null; public ArrayList QuantityBetween = null; public ArrayList QuantityIn = null; public BigDecimal SuppliersCost = null; public BigDecimal SuppliersCostGreaterThanOrEqualTo = null; public BigDecimal SuppliersCostGreaterThan = null; public BigDecimal SuppliersCostLessThan = null; public BigDecimal SuppliersCostLessThanOrEqualTo = null; public BigDecimal SuppliersCostNotEqualTo = null; public ArrayList SuppliersCostBetween = null; public ArrayList SuppliersCostIn = null; public String InventoryID = null; public String InventoryIDStartsWith = null; public String InventoryIDEndsWith = null; public String InventoryIDContains = null; public String InventoryIDLike = null; public ArrayList InventoryIDBetween = null; public ArrayList InventoryIDIn = null; public String PartNo = null; public String PartNoStartsWith = null; public String PartNoEndsWith = null; public String PartNoContains = null; public String PartNoLike = null; public ArrayList PartNoBetween = null; public ArrayList PartNoIn = null; public String Description = null; public String DescriptionStartsWith = null; public String DescriptionEndsWith = null; public String DescriptionContains = null; public String DescriptionLike = null; public ArrayList DescriptionBetween = null; public ArrayList DescriptionIn = null; public String SuppPartNo = null; public String SuppPartNoStartsWith = null; public String SuppPartNoEndsWith = null; public String SuppPartNoContains = null; public String SuppPartNoLike = null; public ArrayList SuppPartNoBetween = null; public ArrayList SuppPartNoIn = null; public Short LineType = null; public Short LineTypeGreaterThanOrEqualTo = null; public Short LineTypeGreaterThan = null; public Short LineTypeLessThan = null; public Short LineTypeLessThanOrEqualTo = null; public Short LineTypeNotEqualTo = null; public ArrayList LineTypeBetween = null; public ArrayList LineTypeIn = null; public Short DecimalPlaces = null; public Short DecimalPlacesGreaterThanOrEqualTo = null; public Short DecimalPlacesGreaterThan = null; public Short DecimalPlacesLessThan = null; public Short DecimalPlacesLessThanOrEqualTo = null; public Short DecimalPlacesNotEqualTo = null; public ArrayList DecimalPlacesBetween = null; public ArrayList DecimalPlacesIn = null; public Date LastSavedDateTime = null; public Date LastSavedDateTimeGreaterThanOrEqualTo = null; public Date LastSavedDateTimeGreaterThan = null; public Date LastSavedDateTimeLessThan = null; public Date LastSavedDateTimeLessThanOrEqualTo = null; public Date LastSavedDateTimeNotEqualTo = null; public ArrayList LastSavedDateTimeBetween = null; public ArrayList LastSavedDateTimeIn = null; public Short InvoiceLineNo = null; public Short InvoiceLineNoGreaterThanOrEqualTo = null; public Short InvoiceLineNoGreaterThan = null; public Short InvoiceLineNoLessThan = null; public Short InvoiceLineNoLessThanOrEqualTo = null; public Short InvoiceLineNoNotEqualTo = null; public ArrayList InvoiceLineNoBetween = null; public ArrayList InvoiceLineNoIn = null; public BigDecimal HomeSuppliersCost = null; public BigDecimal HomeSuppliersCostGreaterThanOrEqualTo = null; public BigDecimal HomeSuppliersCostGreaterThan = null; public BigDecimal HomeSuppliersCostLessThan = null; public BigDecimal HomeSuppliersCostLessThanOrEqualTo = null; public BigDecimal HomeSuppliersCostNotEqualTo = null; public ArrayList HomeSuppliersCostBetween = null; public ArrayList HomeSuppliersCostIn = null; public BigDecimal TaxRate = null; public BigDecimal TaxRateGreaterThanOrEqualTo = null; public BigDecimal TaxRateGreaterThan = null; public BigDecimal TaxRateLessThan = null; public BigDecimal TaxRateLessThanOrEqualTo = null; public BigDecimal TaxRateNotEqualTo = null; public ArrayList TaxRateBetween = null; public ArrayList TaxRateIn = null; public String TaxID = null; public String TaxIDStartsWith = null; public String TaxIDEndsWith = null; public String TaxIDContains = null; public String TaxIDLike = null; public ArrayList TaxIDBetween = null; public ArrayList TaxIDIn = null; public BigDecimal TaxAmount = null; public BigDecimal TaxAmountGreaterThanOrEqualTo = null; public BigDecimal TaxAmountGreaterThan = null; public BigDecimal TaxAmountLessThan = null; public BigDecimal TaxAmountLessThanOrEqualTo = null; public BigDecimal TaxAmountNotEqualTo = null; public ArrayList TaxAmountBetween = null; public ArrayList TaxAmountIn = null; public BigDecimal CurrencyRateUsed = null; public BigDecimal CurrencyRateUsedGreaterThanOrEqualTo = null; public BigDecimal CurrencyRateUsedGreaterThan = null; public BigDecimal CurrencyRateUsedLessThan = null; public BigDecimal CurrencyRateUsedLessThanOrEqualTo = null; public BigDecimal CurrencyRateUsedNotEqualTo = null; public ArrayList CurrencyRateUsedBetween = null; public ArrayList CurrencyRateUsedIn = null; public String POClassID = null; public String POClassIDStartsWith = null; public String POClassIDEndsWith = null; public String POClassIDContains = null; public String POClassIDLike = null; public ArrayList POClassIDBetween = null; public ArrayList POClassIDIn = null; public BigDecimal LineTotal = null; public BigDecimal LineTotalGreaterThanOrEqualTo = null; public BigDecimal LineTotalGreaterThan = null; public BigDecimal LineTotalLessThan = null; public BigDecimal LineTotalLessThanOrEqualTo = null; public BigDecimal LineTotalNotEqualTo = null; public ArrayList LineTotalBetween = null; public ArrayList LineTotalIn = null; public Short FXDecimalPlaces = null; public Short FXDecimalPlacesGreaterThanOrEqualTo = null; public Short FXDecimalPlacesGreaterThan = null; public Short FXDecimalPlacesLessThan = null; public Short FXDecimalPlacesLessThanOrEqualTo = null; public Short FXDecimalPlacesNotEqualTo = null; public ArrayList FXDecimalPlacesBetween = null; public ArrayList FXDecimalPlacesIn = null; public Short HomeDecimalPlaces = null; public Short HomeDecimalPlacesGreaterThanOrEqualTo = null; public Short HomeDecimalPlacesGreaterThan = null; public Short HomeDecimalPlacesLessThan = null; public Short HomeDecimalPlacesLessThanOrEqualTo = null; public Short HomeDecimalPlacesNotEqualTo = null; public ArrayList HomeDecimalPlacesBetween = null; public ArrayList HomeDecimalPlacesIn = null; public Boolean UnitChanged = null; public Boolean FXChanged = null; public Boolean ExChanged = null; public Boolean TaxRateChanged = null; public BigDecimal LineTotalExTax = null; public BigDecimal LineTotalExTaxGreaterThanOrEqualTo = null; public BigDecimal LineTotalExTaxGreaterThan = null; public BigDecimal LineTotalExTaxLessThan = null; public BigDecimal LineTotalExTaxLessThanOrEqualTo = null; public BigDecimal LineTotalExTaxNotEqualTo = null; public ArrayList LineTotalExTaxBetween = null; public ArrayList LineTotalExTaxIn = null; public Boolean ChangeSourceIsFromGRNLine = null; public BigDecimal FXLineTotalExTax = null; public BigDecimal FXLineTotalExTaxGreaterThanOrEqualTo = null; public BigDecimal FXLineTotalExTaxGreaterThan = null; public BigDecimal FXLineTotalExTaxLessThan = null; public BigDecimal FXLineTotalExTaxLessThanOrEqualTo = null; public BigDecimal FXLineTotalExTaxNotEqualTo = null; public ArrayList FXLineTotalExTaxBetween = null; public ArrayList FXLineTotalExTaxIn = null; public BigDecimal UnitCostIncTax = null; public BigDecimal UnitCostIncTaxGreaterThanOrEqualTo = null; public BigDecimal UnitCostIncTaxGreaterThan = null; public BigDecimal UnitCostIncTaxLessThan = null; public BigDecimal UnitCostIncTaxLessThanOrEqualTo = null; public BigDecimal UnitCostIncTaxNotEqualTo = null; public ArrayList UnitCostIncTaxBetween = null; public ArrayList UnitCostIncTaxIn = null; public String getPiLinesID() { return PI_LinesID; } public PI_LinesQuery setPiLinesID(String value) { this.PI_LinesID = value; return this; } public String getPiLinesIDStartsWith() { return PI_LinesIDStartsWith; } public PI_LinesQuery setPiLinesIDStartsWith(String value) { this.PI_LinesIDStartsWith = value; return this; } public String getPiLinesIDEndsWith() { return PI_LinesIDEndsWith; } public PI_LinesQuery setPiLinesIDEndsWith(String value) { this.PI_LinesIDEndsWith = value; return this; } public String getPiLinesIDContains() { return PI_LinesIDContains; } public PI_LinesQuery setPiLinesIDContains(String value) { this.PI_LinesIDContains = value; return this; } public String getPiLinesIDLike() { return PI_LinesIDLike; } public PI_LinesQuery setPiLinesIDLike(String value) { this.PI_LinesIDLike = value; return this; } public ArrayList getPiLinesIDBetween() { return PI_LinesIDBetween; } public PI_LinesQuery setPiLinesIDBetween(ArrayList value) { this.PI_LinesIDBetween = value; return this; } public ArrayList getPiLinesIDIn() { return PI_LinesIDIn; } public PI_LinesQuery setPiLinesIDIn(ArrayList value) { this.PI_LinesIDIn = value; return this; } public String getPiMainID() { return PI_MainID; } public PI_LinesQuery setPiMainID(String value) { this.PI_MainID = value; return this; } public String getPiMainIDStartsWith() { return PI_MainIDStartsWith; } public PI_LinesQuery setPiMainIDStartsWith(String value) { this.PI_MainIDStartsWith = value; return this; } public String getPiMainIDEndsWith() { return PI_MainIDEndsWith; } public PI_LinesQuery setPiMainIDEndsWith(String value) { this.PI_MainIDEndsWith = value; return this; } public String getPiMainIDContains() { return PI_MainIDContains; } public PI_LinesQuery setPiMainIDContains(String value) { this.PI_MainIDContains = value; return this; } public String getPiMainIDLike() { return PI_MainIDLike; } public PI_LinesQuery setPiMainIDLike(String value) { this.PI_MainIDLike = value; return this; } public ArrayList getPiMainIDBetween() { return PI_MainIDBetween; } public PI_LinesQuery setPiMainIDBetween(ArrayList value) { this.PI_MainIDBetween = value; return this; } public ArrayList getPiMainIDIn() { return PI_MainIDIn; } public PI_LinesQuery setPiMainIDIn(ArrayList value) { this.PI_MainIDIn = value; return this; } public String getReMainID() { return RE_MainID; } public PI_LinesQuery setReMainID(String value) { this.RE_MainID = value; return this; } public String getReMainIDStartsWith() { return RE_MainIDStartsWith; } public PI_LinesQuery setReMainIDStartsWith(String value) { this.RE_MainIDStartsWith = value; return this; } public String getReMainIDEndsWith() { return RE_MainIDEndsWith; } public PI_LinesQuery setReMainIDEndsWith(String value) { this.RE_MainIDEndsWith = value; return this; } public String getReMainIDContains() { return RE_MainIDContains; } public PI_LinesQuery setReMainIDContains(String value) { this.RE_MainIDContains = value; return this; } public String getReMainIDLike() { return RE_MainIDLike; } public PI_LinesQuery setReMainIDLike(String value) { this.RE_MainIDLike = value; return this; } public ArrayList getReMainIDBetween() { return RE_MainIDBetween; } public PI_LinesQuery setReMainIDBetween(ArrayList value) { this.RE_MainIDBetween = value; return this; } public ArrayList getReMainIDIn() { return RE_MainIDIn; } public PI_LinesQuery setReMainIDIn(ArrayList value) { this.RE_MainIDIn = value; return this; } public String getReLinesID() { return RE_LinesID; } public PI_LinesQuery setReLinesID(String value) { this.RE_LinesID = value; return this; } public String getReLinesIDStartsWith() { return RE_LinesIDStartsWith; } public PI_LinesQuery setReLinesIDStartsWith(String value) { this.RE_LinesIDStartsWith = value; return this; } public String getReLinesIDEndsWith() { return RE_LinesIDEndsWith; } public PI_LinesQuery setReLinesIDEndsWith(String value) { this.RE_LinesIDEndsWith = value; return this; } public String getReLinesIDContains() { return RE_LinesIDContains; } public PI_LinesQuery setReLinesIDContains(String value) { this.RE_LinesIDContains = value; return this; } public String getReLinesIDLike() { return RE_LinesIDLike; } public PI_LinesQuery setReLinesIDLike(String value) { this.RE_LinesIDLike = value; return this; } public ArrayList getReLinesIDBetween() { return RE_LinesIDBetween; } public PI_LinesQuery setReLinesIDBetween(ArrayList value) { this.RE_LinesIDBetween = value; return this; } public ArrayList getReLinesIDIn() { return RE_LinesIDIn; } public PI_LinesQuery setReLinesIDIn(ArrayList value) { this.RE_LinesIDIn = value; return this; } public BigDecimal getQuantity() { return Quantity; } public PI_LinesQuery setQuantity(BigDecimal value) { this.Quantity = value; return this; } public BigDecimal getQuantityGreaterThanOrEqualTo() { return QuantityGreaterThanOrEqualTo; } public PI_LinesQuery setQuantityGreaterThanOrEqualTo(BigDecimal value) { this.QuantityGreaterThanOrEqualTo = value; return this; } public BigDecimal getQuantityGreaterThan() { return QuantityGreaterThan; } public PI_LinesQuery setQuantityGreaterThan(BigDecimal value) { this.QuantityGreaterThan = value; return this; } public BigDecimal getQuantityLessThan() { return QuantityLessThan; } public PI_LinesQuery setQuantityLessThan(BigDecimal value) { this.QuantityLessThan = value; return this; } public BigDecimal getQuantityLessThanOrEqualTo() { return QuantityLessThanOrEqualTo; } public PI_LinesQuery setQuantityLessThanOrEqualTo(BigDecimal value) { this.QuantityLessThanOrEqualTo = value; return this; } public BigDecimal getQuantityNotEqualTo() { return QuantityNotEqualTo; } public PI_LinesQuery setQuantityNotEqualTo(BigDecimal value) { this.QuantityNotEqualTo = value; return this; } public ArrayList getQuantityBetween() { return QuantityBetween; } public PI_LinesQuery setQuantityBetween(ArrayList value) { this.QuantityBetween = value; return this; } public ArrayList getQuantityIn() { return QuantityIn; } public PI_LinesQuery setQuantityIn(ArrayList value) { this.QuantityIn = value; return this; } public BigDecimal getSuppliersCost() { return SuppliersCost; } public PI_LinesQuery setSuppliersCost(BigDecimal value) { this.SuppliersCost = value; return this; } public BigDecimal getSuppliersCostGreaterThanOrEqualTo() { return SuppliersCostGreaterThanOrEqualTo; } public PI_LinesQuery setSuppliersCostGreaterThanOrEqualTo(BigDecimal value) { this.SuppliersCostGreaterThanOrEqualTo = value; return this; } public BigDecimal getSuppliersCostGreaterThan() { return SuppliersCostGreaterThan; } public PI_LinesQuery setSuppliersCostGreaterThan(BigDecimal value) { this.SuppliersCostGreaterThan = value; return this; } public BigDecimal getSuppliersCostLessThan() { return SuppliersCostLessThan; } public PI_LinesQuery setSuppliersCostLessThan(BigDecimal value) { this.SuppliersCostLessThan = value; return this; } public BigDecimal getSuppliersCostLessThanOrEqualTo() { return SuppliersCostLessThanOrEqualTo; } public PI_LinesQuery setSuppliersCostLessThanOrEqualTo(BigDecimal value) { this.SuppliersCostLessThanOrEqualTo = value; return this; } public BigDecimal getSuppliersCostNotEqualTo() { return SuppliersCostNotEqualTo; } public PI_LinesQuery setSuppliersCostNotEqualTo(BigDecimal value) { this.SuppliersCostNotEqualTo = value; return this; } public ArrayList getSuppliersCostBetween() { return SuppliersCostBetween; } public PI_LinesQuery setSuppliersCostBetween(ArrayList value) { this.SuppliersCostBetween = value; return this; } public ArrayList getSuppliersCostIn() { return SuppliersCostIn; } public PI_LinesQuery setSuppliersCostIn(ArrayList value) { this.SuppliersCostIn = value; return this; } public String getInventoryID() { return InventoryID; } public PI_LinesQuery setInventoryID(String value) { this.InventoryID = value; return this; } public String getInventoryIDStartsWith() { return InventoryIDStartsWith; } public PI_LinesQuery setInventoryIDStartsWith(String value) { this.InventoryIDStartsWith = value; return this; } public String getInventoryIDEndsWith() { return InventoryIDEndsWith; } public PI_LinesQuery setInventoryIDEndsWith(String value) { this.InventoryIDEndsWith = value; return this; } public String getInventoryIDContains() { return InventoryIDContains; } public PI_LinesQuery setInventoryIDContains(String value) { this.InventoryIDContains = value; return this; } public String getInventoryIDLike() { return InventoryIDLike; } public PI_LinesQuery setInventoryIDLike(String value) { this.InventoryIDLike = value; return this; } public ArrayList getInventoryIDBetween() { return InventoryIDBetween; } public PI_LinesQuery setInventoryIDBetween(ArrayList value) { this.InventoryIDBetween = value; return this; } public ArrayList getInventoryIDIn() { return InventoryIDIn; } public PI_LinesQuery setInventoryIDIn(ArrayList value) { this.InventoryIDIn = value; return this; } public String getPartNo() { return PartNo; } public PI_LinesQuery setPartNo(String value) { this.PartNo = value; return this; } public String getPartNoStartsWith() { return PartNoStartsWith; } public PI_LinesQuery setPartNoStartsWith(String value) { this.PartNoStartsWith = value; return this; } public String getPartNoEndsWith() { return PartNoEndsWith; } public PI_LinesQuery setPartNoEndsWith(String value) { this.PartNoEndsWith = value; return this; } public String getPartNoContains() { return PartNoContains; } public PI_LinesQuery setPartNoContains(String value) { this.PartNoContains = value; return this; } public String getPartNoLike() { return PartNoLike; } public PI_LinesQuery setPartNoLike(String value) { this.PartNoLike = value; return this; } public ArrayList getPartNoBetween() { return PartNoBetween; } public PI_LinesQuery setPartNoBetween(ArrayList value) { this.PartNoBetween = value; return this; } public ArrayList getPartNoIn() { return PartNoIn; } public PI_LinesQuery setPartNoIn(ArrayList value) { this.PartNoIn = value; return this; } public String getDescription() { return Description; } public PI_LinesQuery setDescription(String value) { this.Description = value; return this; } public String getDescriptionStartsWith() { return DescriptionStartsWith; } public PI_LinesQuery setDescriptionStartsWith(String value) { this.DescriptionStartsWith = value; return this; } public String getDescriptionEndsWith() { return DescriptionEndsWith; } public PI_LinesQuery setDescriptionEndsWith(String value) { this.DescriptionEndsWith = value; return this; } public String getDescriptionContains() { return DescriptionContains; } public PI_LinesQuery setDescriptionContains(String value) { this.DescriptionContains = value; return this; } public String getDescriptionLike() { return DescriptionLike; } public PI_LinesQuery setDescriptionLike(String value) { this.DescriptionLike = value; return this; } public ArrayList getDescriptionBetween() { return DescriptionBetween; } public PI_LinesQuery setDescriptionBetween(ArrayList value) { this.DescriptionBetween = value; return this; } public ArrayList getDescriptionIn() { return DescriptionIn; } public PI_LinesQuery setDescriptionIn(ArrayList value) { this.DescriptionIn = value; return this; } public String getSuppPartNo() { return SuppPartNo; } public PI_LinesQuery setSuppPartNo(String value) { this.SuppPartNo = value; return this; } public String getSuppPartNoStartsWith() { return SuppPartNoStartsWith; } public PI_LinesQuery setSuppPartNoStartsWith(String value) { this.SuppPartNoStartsWith = value; return this; } public String getSuppPartNoEndsWith() { return SuppPartNoEndsWith; } public PI_LinesQuery setSuppPartNoEndsWith(String value) { this.SuppPartNoEndsWith = value; return this; } public String getSuppPartNoContains() { return SuppPartNoContains; } public PI_LinesQuery setSuppPartNoContains(String value) { this.SuppPartNoContains = value; return this; } public String getSuppPartNoLike() { return SuppPartNoLike; } public PI_LinesQuery setSuppPartNoLike(String value) { this.SuppPartNoLike = value; return this; } public ArrayList getSuppPartNoBetween() { return SuppPartNoBetween; } public PI_LinesQuery setSuppPartNoBetween(ArrayList value) { this.SuppPartNoBetween = value; return this; } public ArrayList getSuppPartNoIn() { return SuppPartNoIn; } public PI_LinesQuery setSuppPartNoIn(ArrayList value) { this.SuppPartNoIn = value; return this; } public Short getLineType() { return LineType; } public PI_LinesQuery setLineType(Short value) { this.LineType = value; return this; } public Short getLineTypeGreaterThanOrEqualTo() { return LineTypeGreaterThanOrEqualTo; } public PI_LinesQuery setLineTypeGreaterThanOrEqualTo(Short value) { this.LineTypeGreaterThanOrEqualTo = value; return this; } public Short getLineTypeGreaterThan() { return LineTypeGreaterThan; } public PI_LinesQuery setLineTypeGreaterThan(Short value) { this.LineTypeGreaterThan = value; return this; } public Short getLineTypeLessThan() { return LineTypeLessThan; } public PI_LinesQuery setLineTypeLessThan(Short value) { this.LineTypeLessThan = value; return this; } public Short getLineTypeLessThanOrEqualTo() { return LineTypeLessThanOrEqualTo; } public PI_LinesQuery setLineTypeLessThanOrEqualTo(Short value) { this.LineTypeLessThanOrEqualTo = value; return this; } public Short getLineTypeNotEqualTo() { return LineTypeNotEqualTo; } public PI_LinesQuery setLineTypeNotEqualTo(Short value) { this.LineTypeNotEqualTo = value; return this; } public ArrayList getLineTypeBetween() { return LineTypeBetween; } public PI_LinesQuery setLineTypeBetween(ArrayList value) { this.LineTypeBetween = value; return this; } public ArrayList getLineTypeIn() { return LineTypeIn; } public PI_LinesQuery setLineTypeIn(ArrayList value) { this.LineTypeIn = value; return this; } public Short getDecimalPlaces() { return DecimalPlaces; } public PI_LinesQuery setDecimalPlaces(Short value) { this.DecimalPlaces = value; return this; } public Short getDecimalPlacesGreaterThanOrEqualTo() { return DecimalPlacesGreaterThanOrEqualTo; } public PI_LinesQuery setDecimalPlacesGreaterThanOrEqualTo(Short value) { this.DecimalPlacesGreaterThanOrEqualTo = value; return this; } public Short getDecimalPlacesGreaterThan() { return DecimalPlacesGreaterThan; } public PI_LinesQuery setDecimalPlacesGreaterThan(Short value) { this.DecimalPlacesGreaterThan = value; return this; } public Short getDecimalPlacesLessThan() { return DecimalPlacesLessThan; } public PI_LinesQuery setDecimalPlacesLessThan(Short value) { this.DecimalPlacesLessThan = value; return this; } public Short getDecimalPlacesLessThanOrEqualTo() { return DecimalPlacesLessThanOrEqualTo; } public PI_LinesQuery setDecimalPlacesLessThanOrEqualTo(Short value) { this.DecimalPlacesLessThanOrEqualTo = value; return this; } public Short getDecimalPlacesNotEqualTo() { return DecimalPlacesNotEqualTo; } public PI_LinesQuery setDecimalPlacesNotEqualTo(Short value) { this.DecimalPlacesNotEqualTo = value; return this; } public ArrayList getDecimalPlacesBetween() { return DecimalPlacesBetween; } public PI_LinesQuery setDecimalPlacesBetween(ArrayList value) { this.DecimalPlacesBetween = value; return this; } public ArrayList getDecimalPlacesIn() { return DecimalPlacesIn; } public PI_LinesQuery setDecimalPlacesIn(ArrayList value) { this.DecimalPlacesIn = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public PI_LinesQuery setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getLastSavedDateTimeGreaterThanOrEqualTo() { return LastSavedDateTimeGreaterThanOrEqualTo; } public PI_LinesQuery setLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.LastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeGreaterThan() { return LastSavedDateTimeGreaterThan; } public PI_LinesQuery setLastSavedDateTimeGreaterThan(Date value) { this.LastSavedDateTimeGreaterThan = value; return this; } public Date getLastSavedDateTimeLessThan() { return LastSavedDateTimeLessThan; } public PI_LinesQuery setLastSavedDateTimeLessThan(Date value) { this.LastSavedDateTimeLessThan = value; return this; } public Date getLastSavedDateTimeLessThanOrEqualTo() { return LastSavedDateTimeLessThanOrEqualTo; } public PI_LinesQuery setLastSavedDateTimeLessThanOrEqualTo(Date value) { this.LastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeNotEqualTo() { return LastSavedDateTimeNotEqualTo; } public PI_LinesQuery setLastSavedDateTimeNotEqualTo(Date value) { this.LastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getLastSavedDateTimeBetween() { return LastSavedDateTimeBetween; } public PI_LinesQuery setLastSavedDateTimeBetween(ArrayList value) { this.LastSavedDateTimeBetween = value; return this; } public ArrayList getLastSavedDateTimeIn() { return LastSavedDateTimeIn; } public PI_LinesQuery setLastSavedDateTimeIn(ArrayList value) { this.LastSavedDateTimeIn = value; return this; } public Short getInvoiceLineNo() { return InvoiceLineNo; } public PI_LinesQuery setInvoiceLineNo(Short value) { this.InvoiceLineNo = value; return this; } public Short getInvoiceLineNoGreaterThanOrEqualTo() { return InvoiceLineNoGreaterThanOrEqualTo; } public PI_LinesQuery setInvoiceLineNoGreaterThanOrEqualTo(Short value) { this.InvoiceLineNoGreaterThanOrEqualTo = value; return this; } public Short getInvoiceLineNoGreaterThan() { return InvoiceLineNoGreaterThan; } public PI_LinesQuery setInvoiceLineNoGreaterThan(Short value) { this.InvoiceLineNoGreaterThan = value; return this; } public Short getInvoiceLineNoLessThan() { return InvoiceLineNoLessThan; } public PI_LinesQuery setInvoiceLineNoLessThan(Short value) { this.InvoiceLineNoLessThan = value; return this; } public Short getInvoiceLineNoLessThanOrEqualTo() { return InvoiceLineNoLessThanOrEqualTo; } public PI_LinesQuery setInvoiceLineNoLessThanOrEqualTo(Short value) { this.InvoiceLineNoLessThanOrEqualTo = value; return this; } public Short getInvoiceLineNoNotEqualTo() { return InvoiceLineNoNotEqualTo; } public PI_LinesQuery setInvoiceLineNoNotEqualTo(Short value) { this.InvoiceLineNoNotEqualTo = value; return this; } public ArrayList getInvoiceLineNoBetween() { return InvoiceLineNoBetween; } public PI_LinesQuery setInvoiceLineNoBetween(ArrayList value) { this.InvoiceLineNoBetween = value; return this; } public ArrayList getInvoiceLineNoIn() { return InvoiceLineNoIn; } public PI_LinesQuery setInvoiceLineNoIn(ArrayList value) { this.InvoiceLineNoIn = value; return this; } public BigDecimal getHomeSuppliersCost() { return HomeSuppliersCost; } public PI_LinesQuery setHomeSuppliersCost(BigDecimal value) { this.HomeSuppliersCost = value; return this; } public BigDecimal getHomeSuppliersCostGreaterThanOrEqualTo() { return HomeSuppliersCostGreaterThanOrEqualTo; } public PI_LinesQuery setHomeSuppliersCostGreaterThanOrEqualTo(BigDecimal value) { this.HomeSuppliersCostGreaterThanOrEqualTo = value; return this; } public BigDecimal getHomeSuppliersCostGreaterThan() { return HomeSuppliersCostGreaterThan; } public PI_LinesQuery setHomeSuppliersCostGreaterThan(BigDecimal value) { this.HomeSuppliersCostGreaterThan = value; return this; } public BigDecimal getHomeSuppliersCostLessThan() { return HomeSuppliersCostLessThan; } public PI_LinesQuery setHomeSuppliersCostLessThan(BigDecimal value) { this.HomeSuppliersCostLessThan = value; return this; } public BigDecimal getHomeSuppliersCostLessThanOrEqualTo() { return HomeSuppliersCostLessThanOrEqualTo; } public PI_LinesQuery setHomeSuppliersCostLessThanOrEqualTo(BigDecimal value) { this.HomeSuppliersCostLessThanOrEqualTo = value; return this; } public BigDecimal getHomeSuppliersCostNotEqualTo() { return HomeSuppliersCostNotEqualTo; } public PI_LinesQuery setHomeSuppliersCostNotEqualTo(BigDecimal value) { this.HomeSuppliersCostNotEqualTo = value; return this; } public ArrayList getHomeSuppliersCostBetween() { return HomeSuppliersCostBetween; } public PI_LinesQuery setHomeSuppliersCostBetween(ArrayList value) { this.HomeSuppliersCostBetween = value; return this; } public ArrayList getHomeSuppliersCostIn() { return HomeSuppliersCostIn; } public PI_LinesQuery setHomeSuppliersCostIn(ArrayList value) { this.HomeSuppliersCostIn = value; return this; } public BigDecimal getTaxRate() { return TaxRate; } public PI_LinesQuery setTaxRate(BigDecimal value) { this.TaxRate = value; return this; } public BigDecimal getTaxRateGreaterThanOrEqualTo() { return TaxRateGreaterThanOrEqualTo; } public PI_LinesQuery setTaxRateGreaterThanOrEqualTo(BigDecimal value) { this.TaxRateGreaterThanOrEqualTo = value; return this; } public BigDecimal getTaxRateGreaterThan() { return TaxRateGreaterThan; } public PI_LinesQuery setTaxRateGreaterThan(BigDecimal value) { this.TaxRateGreaterThan = value; return this; } public BigDecimal getTaxRateLessThan() { return TaxRateLessThan; } public PI_LinesQuery setTaxRateLessThan(BigDecimal value) { this.TaxRateLessThan = value; return this; } public BigDecimal getTaxRateLessThanOrEqualTo() { return TaxRateLessThanOrEqualTo; } public PI_LinesQuery setTaxRateLessThanOrEqualTo(BigDecimal value) { this.TaxRateLessThanOrEqualTo = value; return this; } public BigDecimal getTaxRateNotEqualTo() { return TaxRateNotEqualTo; } public PI_LinesQuery setTaxRateNotEqualTo(BigDecimal value) { this.TaxRateNotEqualTo = value; return this; } public ArrayList getTaxRateBetween() { return TaxRateBetween; } public PI_LinesQuery setTaxRateBetween(ArrayList value) { this.TaxRateBetween = value; return this; } public ArrayList getTaxRateIn() { return TaxRateIn; } public PI_LinesQuery setTaxRateIn(ArrayList value) { this.TaxRateIn = value; return this; } public String getTaxID() { return TaxID; } public PI_LinesQuery setTaxID(String value) { this.TaxID = value; return this; } public String getTaxIDStartsWith() { return TaxIDStartsWith; } public PI_LinesQuery setTaxIDStartsWith(String value) { this.TaxIDStartsWith = value; return this; } public String getTaxIDEndsWith() { return TaxIDEndsWith; } public PI_LinesQuery setTaxIDEndsWith(String value) { this.TaxIDEndsWith = value; return this; } public String getTaxIDContains() { return TaxIDContains; } public PI_LinesQuery setTaxIDContains(String value) { this.TaxIDContains = value; return this; } public String getTaxIDLike() { return TaxIDLike; } public PI_LinesQuery setTaxIDLike(String value) { this.TaxIDLike = value; return this; } public ArrayList getTaxIDBetween() { return TaxIDBetween; } public PI_LinesQuery setTaxIDBetween(ArrayList value) { this.TaxIDBetween = value; return this; } public ArrayList getTaxIDIn() { return TaxIDIn; } public PI_LinesQuery setTaxIDIn(ArrayList value) { this.TaxIDIn = value; return this; } public BigDecimal getTaxAmount() { return TaxAmount; } public PI_LinesQuery setTaxAmount(BigDecimal value) { this.TaxAmount = value; return this; } public BigDecimal getTaxAmountGreaterThanOrEqualTo() { return TaxAmountGreaterThanOrEqualTo; } public PI_LinesQuery setTaxAmountGreaterThanOrEqualTo(BigDecimal value) { this.TaxAmountGreaterThanOrEqualTo = value; return this; } public BigDecimal getTaxAmountGreaterThan() { return TaxAmountGreaterThan; } public PI_LinesQuery setTaxAmountGreaterThan(BigDecimal value) { this.TaxAmountGreaterThan = value; return this; } public BigDecimal getTaxAmountLessThan() { return TaxAmountLessThan; } public PI_LinesQuery setTaxAmountLessThan(BigDecimal value) { this.TaxAmountLessThan = value; return this; } public BigDecimal getTaxAmountLessThanOrEqualTo() { return TaxAmountLessThanOrEqualTo; } public PI_LinesQuery setTaxAmountLessThanOrEqualTo(BigDecimal value) { this.TaxAmountLessThanOrEqualTo = value; return this; } public BigDecimal getTaxAmountNotEqualTo() { return TaxAmountNotEqualTo; } public PI_LinesQuery setTaxAmountNotEqualTo(BigDecimal value) { this.TaxAmountNotEqualTo = value; return this; } public ArrayList getTaxAmountBetween() { return TaxAmountBetween; } public PI_LinesQuery setTaxAmountBetween(ArrayList value) { this.TaxAmountBetween = value; return this; } public ArrayList getTaxAmountIn() { return TaxAmountIn; } public PI_LinesQuery setTaxAmountIn(ArrayList value) { this.TaxAmountIn = value; return this; } public BigDecimal getCurrencyRateUsed() { return CurrencyRateUsed; } public PI_LinesQuery setCurrencyRateUsed(BigDecimal value) { this.CurrencyRateUsed = value; return this; } public BigDecimal getCurrencyRateUsedGreaterThanOrEqualTo() { return CurrencyRateUsedGreaterThanOrEqualTo; } public PI_LinesQuery setCurrencyRateUsedGreaterThanOrEqualTo(BigDecimal value) { this.CurrencyRateUsedGreaterThanOrEqualTo = value; return this; } public BigDecimal getCurrencyRateUsedGreaterThan() { return CurrencyRateUsedGreaterThan; } public PI_LinesQuery setCurrencyRateUsedGreaterThan(BigDecimal value) { this.CurrencyRateUsedGreaterThan = value; return this; } public BigDecimal getCurrencyRateUsedLessThan() { return CurrencyRateUsedLessThan; } public PI_LinesQuery setCurrencyRateUsedLessThan(BigDecimal value) { this.CurrencyRateUsedLessThan = value; return this; } public BigDecimal getCurrencyRateUsedLessThanOrEqualTo() { return CurrencyRateUsedLessThanOrEqualTo; } public PI_LinesQuery setCurrencyRateUsedLessThanOrEqualTo(BigDecimal value) { this.CurrencyRateUsedLessThanOrEqualTo = value; return this; } public BigDecimal getCurrencyRateUsedNotEqualTo() { return CurrencyRateUsedNotEqualTo; } public PI_LinesQuery setCurrencyRateUsedNotEqualTo(BigDecimal value) { this.CurrencyRateUsedNotEqualTo = value; return this; } public ArrayList getCurrencyRateUsedBetween() { return CurrencyRateUsedBetween; } public PI_LinesQuery setCurrencyRateUsedBetween(ArrayList value) { this.CurrencyRateUsedBetween = value; return this; } public ArrayList getCurrencyRateUsedIn() { return CurrencyRateUsedIn; } public PI_LinesQuery setCurrencyRateUsedIn(ArrayList value) { this.CurrencyRateUsedIn = value; return this; } public String getPoClassID() { return POClassID; } public PI_LinesQuery setPoClassID(String value) { this.POClassID = value; return this; } public String getPoClassIDStartsWith() { return POClassIDStartsWith; } public PI_LinesQuery setPoClassIDStartsWith(String value) { this.POClassIDStartsWith = value; return this; } public String getPoClassIDEndsWith() { return POClassIDEndsWith; } public PI_LinesQuery setPoClassIDEndsWith(String value) { this.POClassIDEndsWith = value; return this; } public String getPoClassIDContains() { return POClassIDContains; } public PI_LinesQuery setPoClassIDContains(String value) { this.POClassIDContains = value; return this; } public String getPoClassIDLike() { return POClassIDLike; } public PI_LinesQuery setPoClassIDLike(String value) { this.POClassIDLike = value; return this; } public ArrayList getPoClassIDBetween() { return POClassIDBetween; } public PI_LinesQuery setPoClassIDBetween(ArrayList value) { this.POClassIDBetween = value; return this; } public ArrayList getPoClassIDIn() { return POClassIDIn; } public PI_LinesQuery setPoClassIDIn(ArrayList value) { this.POClassIDIn = value; return this; } public BigDecimal getLineTotal() { return LineTotal; } public PI_LinesQuery setLineTotal(BigDecimal value) { this.LineTotal = value; return this; } public BigDecimal getLineTotalGreaterThanOrEqualTo() { return LineTotalGreaterThanOrEqualTo; } public PI_LinesQuery setLineTotalGreaterThanOrEqualTo(BigDecimal value) { this.LineTotalGreaterThanOrEqualTo = value; return this; } public BigDecimal getLineTotalGreaterThan() { return LineTotalGreaterThan; } public PI_LinesQuery setLineTotalGreaterThan(BigDecimal value) { this.LineTotalGreaterThan = value; return this; } public BigDecimal getLineTotalLessThan() { return LineTotalLessThan; } public PI_LinesQuery setLineTotalLessThan(BigDecimal value) { this.LineTotalLessThan = value; return this; } public BigDecimal getLineTotalLessThanOrEqualTo() { return LineTotalLessThanOrEqualTo; } public PI_LinesQuery setLineTotalLessThanOrEqualTo(BigDecimal value) { this.LineTotalLessThanOrEqualTo = value; return this; } public BigDecimal getLineTotalNotEqualTo() { return LineTotalNotEqualTo; } public PI_LinesQuery setLineTotalNotEqualTo(BigDecimal value) { this.LineTotalNotEqualTo = value; return this; } public ArrayList getLineTotalBetween() { return LineTotalBetween; } public PI_LinesQuery setLineTotalBetween(ArrayList value) { this.LineTotalBetween = value; return this; } public ArrayList getLineTotalIn() { return LineTotalIn; } public PI_LinesQuery setLineTotalIn(ArrayList value) { this.LineTotalIn = value; return this; } public Short getFxDecimalPlaces() { return FXDecimalPlaces; } public PI_LinesQuery setFxDecimalPlaces(Short value) { this.FXDecimalPlaces = value; return this; } public Short getFxDecimalPlacesGreaterThanOrEqualTo() { return FXDecimalPlacesGreaterThanOrEqualTo; } public PI_LinesQuery setFxDecimalPlacesGreaterThanOrEqualTo(Short value) { this.FXDecimalPlacesGreaterThanOrEqualTo = value; return this; } public Short getFxDecimalPlacesGreaterThan() { return FXDecimalPlacesGreaterThan; } public PI_LinesQuery setFxDecimalPlacesGreaterThan(Short value) { this.FXDecimalPlacesGreaterThan = value; return this; } public Short getFxDecimalPlacesLessThan() { return FXDecimalPlacesLessThan; } public PI_LinesQuery setFxDecimalPlacesLessThan(Short value) { this.FXDecimalPlacesLessThan = value; return this; } public Short getFxDecimalPlacesLessThanOrEqualTo() { return FXDecimalPlacesLessThanOrEqualTo; } public PI_LinesQuery setFxDecimalPlacesLessThanOrEqualTo(Short value) { this.FXDecimalPlacesLessThanOrEqualTo = value; return this; } public Short getFxDecimalPlacesNotEqualTo() { return FXDecimalPlacesNotEqualTo; } public PI_LinesQuery setFxDecimalPlacesNotEqualTo(Short value) { this.FXDecimalPlacesNotEqualTo = value; return this; } public ArrayList getFxDecimalPlacesBetween() { return FXDecimalPlacesBetween; } public PI_LinesQuery setFxDecimalPlacesBetween(ArrayList value) { this.FXDecimalPlacesBetween = value; return this; } public ArrayList getFxDecimalPlacesIn() { return FXDecimalPlacesIn; } public PI_LinesQuery setFxDecimalPlacesIn(ArrayList value) { this.FXDecimalPlacesIn = value; return this; } public Short getHomeDecimalPlaces() { return HomeDecimalPlaces; } public PI_LinesQuery setHomeDecimalPlaces(Short value) { this.HomeDecimalPlaces = value; return this; } public Short getHomeDecimalPlacesGreaterThanOrEqualTo() { return HomeDecimalPlacesGreaterThanOrEqualTo; } public PI_LinesQuery setHomeDecimalPlacesGreaterThanOrEqualTo(Short value) { this.HomeDecimalPlacesGreaterThanOrEqualTo = value; return this; } public Short getHomeDecimalPlacesGreaterThan() { return HomeDecimalPlacesGreaterThan; } public PI_LinesQuery setHomeDecimalPlacesGreaterThan(Short value) { this.HomeDecimalPlacesGreaterThan = value; return this; } public Short getHomeDecimalPlacesLessThan() { return HomeDecimalPlacesLessThan; } public PI_LinesQuery setHomeDecimalPlacesLessThan(Short value) { this.HomeDecimalPlacesLessThan = value; return this; } public Short getHomeDecimalPlacesLessThanOrEqualTo() { return HomeDecimalPlacesLessThanOrEqualTo; } public PI_LinesQuery setHomeDecimalPlacesLessThanOrEqualTo(Short value) { this.HomeDecimalPlacesLessThanOrEqualTo = value; return this; } public Short getHomeDecimalPlacesNotEqualTo() { return HomeDecimalPlacesNotEqualTo; } public PI_LinesQuery setHomeDecimalPlacesNotEqualTo(Short value) { this.HomeDecimalPlacesNotEqualTo = value; return this; } public ArrayList getHomeDecimalPlacesBetween() { return HomeDecimalPlacesBetween; } public PI_LinesQuery setHomeDecimalPlacesBetween(ArrayList value) { this.HomeDecimalPlacesBetween = value; return this; } public ArrayList getHomeDecimalPlacesIn() { return HomeDecimalPlacesIn; } public PI_LinesQuery setHomeDecimalPlacesIn(ArrayList value) { this.HomeDecimalPlacesIn = value; return this; } public Boolean isUnitChanged() { return UnitChanged; } public PI_LinesQuery setUnitChanged(Boolean value) { this.UnitChanged = value; return this; } public Boolean isFxChanged() { return FXChanged; } public PI_LinesQuery setFxChanged(Boolean value) { this.FXChanged = value; return this; } public Boolean isExChanged() { return ExChanged; } public PI_LinesQuery setExChanged(Boolean value) { this.ExChanged = value; return this; } public Boolean isTaxRateChanged() { return TaxRateChanged; } public PI_LinesQuery setTaxRateChanged(Boolean value) { this.TaxRateChanged = value; return this; } public BigDecimal getLineTotalExTax() { return LineTotalExTax; } public PI_LinesQuery setLineTotalExTax(BigDecimal value) { this.LineTotalExTax = value; return this; } public BigDecimal getLineTotalExTaxGreaterThanOrEqualTo() { return LineTotalExTaxGreaterThanOrEqualTo; } public PI_LinesQuery setLineTotalExTaxGreaterThanOrEqualTo(BigDecimal value) { this.LineTotalExTaxGreaterThanOrEqualTo = value; return this; } public BigDecimal getLineTotalExTaxGreaterThan() { return LineTotalExTaxGreaterThan; } public PI_LinesQuery setLineTotalExTaxGreaterThan(BigDecimal value) { this.LineTotalExTaxGreaterThan = value; return this; } public BigDecimal getLineTotalExTaxLessThan() { return LineTotalExTaxLessThan; } public PI_LinesQuery setLineTotalExTaxLessThan(BigDecimal value) { this.LineTotalExTaxLessThan = value; return this; } public BigDecimal getLineTotalExTaxLessThanOrEqualTo() { return LineTotalExTaxLessThanOrEqualTo; } public PI_LinesQuery setLineTotalExTaxLessThanOrEqualTo(BigDecimal value) { this.LineTotalExTaxLessThanOrEqualTo = value; return this; } public BigDecimal getLineTotalExTaxNotEqualTo() { return LineTotalExTaxNotEqualTo; } public PI_LinesQuery setLineTotalExTaxNotEqualTo(BigDecimal value) { this.LineTotalExTaxNotEqualTo = value; return this; } public ArrayList getLineTotalExTaxBetween() { return LineTotalExTaxBetween; } public PI_LinesQuery setLineTotalExTaxBetween(ArrayList value) { this.LineTotalExTaxBetween = value; return this; } public ArrayList getLineTotalExTaxIn() { return LineTotalExTaxIn; } public PI_LinesQuery setLineTotalExTaxIn(ArrayList value) { this.LineTotalExTaxIn = value; return this; } public Boolean isChangeSourceIsFromGRNLine() { return ChangeSourceIsFromGRNLine; } public PI_LinesQuery setChangeSourceIsFromGRNLine(Boolean value) { this.ChangeSourceIsFromGRNLine = value; return this; } public BigDecimal getFxLineTotalExTax() { return FXLineTotalExTax; } public PI_LinesQuery setFxLineTotalExTax(BigDecimal value) { this.FXLineTotalExTax = value; return this; } public BigDecimal getFxLineTotalExTaxGreaterThanOrEqualTo() { return FXLineTotalExTaxGreaterThanOrEqualTo; } public PI_LinesQuery setFxLineTotalExTaxGreaterThanOrEqualTo(BigDecimal value) { this.FXLineTotalExTaxGreaterThanOrEqualTo = value; return this; } public BigDecimal getFxLineTotalExTaxGreaterThan() { return FXLineTotalExTaxGreaterThan; } public PI_LinesQuery setFxLineTotalExTaxGreaterThan(BigDecimal value) { this.FXLineTotalExTaxGreaterThan = value; return this; } public BigDecimal getFxLineTotalExTaxLessThan() { return FXLineTotalExTaxLessThan; } public PI_LinesQuery setFxLineTotalExTaxLessThan(BigDecimal value) { this.FXLineTotalExTaxLessThan = value; return this; } public BigDecimal getFxLineTotalExTaxLessThanOrEqualTo() { return FXLineTotalExTaxLessThanOrEqualTo; } public PI_LinesQuery setFxLineTotalExTaxLessThanOrEqualTo(BigDecimal value) { this.FXLineTotalExTaxLessThanOrEqualTo = value; return this; } public BigDecimal getFxLineTotalExTaxNotEqualTo() { return FXLineTotalExTaxNotEqualTo; } public PI_LinesQuery setFxLineTotalExTaxNotEqualTo(BigDecimal value) { this.FXLineTotalExTaxNotEqualTo = value; return this; } public ArrayList getFxLineTotalExTaxBetween() { return FXLineTotalExTaxBetween; } public PI_LinesQuery setFxLineTotalExTaxBetween(ArrayList value) { this.FXLineTotalExTaxBetween = value; return this; } public ArrayList getFxLineTotalExTaxIn() { return FXLineTotalExTaxIn; } public PI_LinesQuery setFxLineTotalExTaxIn(ArrayList value) { this.FXLineTotalExTaxIn = value; return this; } public BigDecimal getUnitCostIncTax() { return UnitCostIncTax; } public PI_LinesQuery setUnitCostIncTax(BigDecimal value) { this.UnitCostIncTax = value; return this; } public BigDecimal getUnitCostIncTaxGreaterThanOrEqualTo() { return UnitCostIncTaxGreaterThanOrEqualTo; } public PI_LinesQuery setUnitCostIncTaxGreaterThanOrEqualTo(BigDecimal value) { this.UnitCostIncTaxGreaterThanOrEqualTo = value; return this; } public BigDecimal getUnitCostIncTaxGreaterThan() { return UnitCostIncTaxGreaterThan; } public PI_LinesQuery setUnitCostIncTaxGreaterThan(BigDecimal value) { this.UnitCostIncTaxGreaterThan = value; return this; } public BigDecimal getUnitCostIncTaxLessThan() { return UnitCostIncTaxLessThan; } public PI_LinesQuery setUnitCostIncTaxLessThan(BigDecimal value) { this.UnitCostIncTaxLessThan = value; return this; } public BigDecimal getUnitCostIncTaxLessThanOrEqualTo() { return UnitCostIncTaxLessThanOrEqualTo; } public PI_LinesQuery setUnitCostIncTaxLessThanOrEqualTo(BigDecimal value) { this.UnitCostIncTaxLessThanOrEqualTo = value; return this; } public BigDecimal getUnitCostIncTaxNotEqualTo() { return UnitCostIncTaxNotEqualTo; } public PI_LinesQuery setUnitCostIncTaxNotEqualTo(BigDecimal value) { this.UnitCostIncTaxNotEqualTo = value; return this; } public ArrayList getUnitCostIncTaxBetween() { return UnitCostIncTaxBetween; } public PI_LinesQuery setUnitCostIncTaxBetween(ArrayList value) { this.UnitCostIncTaxBetween = value; return this; } public ArrayList getUnitCostIncTaxIn() { return UnitCostIncTaxIn; } public PI_LinesQuery setUnitCostIncTaxIn(ArrayList value) { this.UnitCostIncTaxIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class PI_LinesDetailsQuery extends QueryDb implements IReturn> { public String PI_LinesDetailsID = null; public String PI_LinesDetailsIDStartsWith = null; public String PI_LinesDetailsIDEndsWith = null; public String PI_LinesDetailsIDContains = null; public String PI_LinesDetailsIDLike = null; public ArrayList PI_LinesDetailsIDBetween = null; public ArrayList PI_LinesDetailsIDIn = null; public String PI_LinesID = null; public String PI_LinesIDStartsWith = null; public String PI_LinesIDEndsWith = null; public String PI_LinesIDContains = null; public String PI_LinesIDLike = null; public ArrayList PI_LinesIDBetween = null; public ArrayList PI_LinesIDIn = null; public String SerialNo = null; public String SerialNoStartsWith = null; public String SerialNoEndsWith = null; public String SerialNoContains = null; public String SerialNoLike = null; public ArrayList SerialNoBetween = null; public ArrayList SerialNoIn = null; public BigDecimal Quantity = null; public BigDecimal QuantityGreaterThanOrEqualTo = null; public BigDecimal QuantityGreaterThan = null; public BigDecimal QuantityLessThan = null; public BigDecimal QuantityLessThanOrEqualTo = null; public BigDecimal QuantityNotEqualTo = null; public ArrayList QuantityBetween = null; public ArrayList QuantityIn = null; public Date ExpiryDate = null; public Date ExpiryDateGreaterThanOrEqualTo = null; public Date ExpiryDateGreaterThan = null; public Date ExpiryDateLessThan = null; public Date ExpiryDateLessThanOrEqualTo = null; public Date ExpiryDateNotEqualTo = null; public ArrayList ExpiryDateBetween = null; public ArrayList ExpiryDateIn = null; public String BinLocation = null; public String BinLocationStartsWith = null; public String BinLocationEndsWith = null; public String BinLocationContains = null; public String BinLocationLike = null; public ArrayList BinLocationBetween = null; public ArrayList BinLocationIn = null; public ArrayList RowHash = null; public String RE_LineDetails_RecID = null; public String RE_LineDetails_RecIDStartsWith = null; public String RE_LineDetails_RecIDEndsWith = null; public String RE_LineDetails_RecIDContains = null; public String RE_LineDetails_RecIDLike = null; public ArrayList RE_LineDetails_RecIDBetween = null; public ArrayList RE_LineDetails_RecIDIn = null; public String IN_SOH_RecID = null; public String IN_SOH_RecIDStartsWith = null; public String IN_SOH_RecIDEndsWith = null; public String IN_SOH_RecIDContains = null; public String IN_SOH_RecIDLike = null; public ArrayList IN_SOH_RecIDBetween = null; public ArrayList IN_SOH_RecIDIn = null; public String getPiLinesDetailsID() { return PI_LinesDetailsID; } public PI_LinesDetailsQuery setPiLinesDetailsID(String value) { this.PI_LinesDetailsID = value; return this; } public String getPiLinesDetailsIDStartsWith() { return PI_LinesDetailsIDStartsWith; } public PI_LinesDetailsQuery setPiLinesDetailsIDStartsWith(String value) { this.PI_LinesDetailsIDStartsWith = value; return this; } public String getPiLinesDetailsIDEndsWith() { return PI_LinesDetailsIDEndsWith; } public PI_LinesDetailsQuery setPiLinesDetailsIDEndsWith(String value) { this.PI_LinesDetailsIDEndsWith = value; return this; } public String getPiLinesDetailsIDContains() { return PI_LinesDetailsIDContains; } public PI_LinesDetailsQuery setPiLinesDetailsIDContains(String value) { this.PI_LinesDetailsIDContains = value; return this; } public String getPiLinesDetailsIDLike() { return PI_LinesDetailsIDLike; } public PI_LinesDetailsQuery setPiLinesDetailsIDLike(String value) { this.PI_LinesDetailsIDLike = value; return this; } public ArrayList getPiLinesDetailsIDBetween() { return PI_LinesDetailsIDBetween; } public PI_LinesDetailsQuery setPiLinesDetailsIDBetween(ArrayList value) { this.PI_LinesDetailsIDBetween = value; return this; } public ArrayList getPiLinesDetailsIDIn() { return PI_LinesDetailsIDIn; } public PI_LinesDetailsQuery setPiLinesDetailsIDIn(ArrayList value) { this.PI_LinesDetailsIDIn = value; return this; } public String getPiLinesID() { return PI_LinesID; } public PI_LinesDetailsQuery setPiLinesID(String value) { this.PI_LinesID = value; return this; } public String getPiLinesIDStartsWith() { return PI_LinesIDStartsWith; } public PI_LinesDetailsQuery setPiLinesIDStartsWith(String value) { this.PI_LinesIDStartsWith = value; return this; } public String getPiLinesIDEndsWith() { return PI_LinesIDEndsWith; } public PI_LinesDetailsQuery setPiLinesIDEndsWith(String value) { this.PI_LinesIDEndsWith = value; return this; } public String getPiLinesIDContains() { return PI_LinesIDContains; } public PI_LinesDetailsQuery setPiLinesIDContains(String value) { this.PI_LinesIDContains = value; return this; } public String getPiLinesIDLike() { return PI_LinesIDLike; } public PI_LinesDetailsQuery setPiLinesIDLike(String value) { this.PI_LinesIDLike = value; return this; } public ArrayList getPiLinesIDBetween() { return PI_LinesIDBetween; } public PI_LinesDetailsQuery setPiLinesIDBetween(ArrayList value) { this.PI_LinesIDBetween = value; return this; } public ArrayList getPiLinesIDIn() { return PI_LinesIDIn; } public PI_LinesDetailsQuery setPiLinesIDIn(ArrayList value) { this.PI_LinesIDIn = value; return this; } public String getSerialNo() { return SerialNo; } public PI_LinesDetailsQuery setSerialNo(String value) { this.SerialNo = value; return this; } public String getSerialNoStartsWith() { return SerialNoStartsWith; } public PI_LinesDetailsQuery setSerialNoStartsWith(String value) { this.SerialNoStartsWith = value; return this; } public String getSerialNoEndsWith() { return SerialNoEndsWith; } public PI_LinesDetailsQuery setSerialNoEndsWith(String value) { this.SerialNoEndsWith = value; return this; } public String getSerialNoContains() { return SerialNoContains; } public PI_LinesDetailsQuery setSerialNoContains(String value) { this.SerialNoContains = value; return this; } public String getSerialNoLike() { return SerialNoLike; } public PI_LinesDetailsQuery setSerialNoLike(String value) { this.SerialNoLike = value; return this; } public ArrayList getSerialNoBetween() { return SerialNoBetween; } public PI_LinesDetailsQuery setSerialNoBetween(ArrayList value) { this.SerialNoBetween = value; return this; } public ArrayList getSerialNoIn() { return SerialNoIn; } public PI_LinesDetailsQuery setSerialNoIn(ArrayList value) { this.SerialNoIn = value; return this; } public BigDecimal getQuantity() { return Quantity; } public PI_LinesDetailsQuery setQuantity(BigDecimal value) { this.Quantity = value; return this; } public BigDecimal getQuantityGreaterThanOrEqualTo() { return QuantityGreaterThanOrEqualTo; } public PI_LinesDetailsQuery setQuantityGreaterThanOrEqualTo(BigDecimal value) { this.QuantityGreaterThanOrEqualTo = value; return this; } public BigDecimal getQuantityGreaterThan() { return QuantityGreaterThan; } public PI_LinesDetailsQuery setQuantityGreaterThan(BigDecimal value) { this.QuantityGreaterThan = value; return this; } public BigDecimal getQuantityLessThan() { return QuantityLessThan; } public PI_LinesDetailsQuery setQuantityLessThan(BigDecimal value) { this.QuantityLessThan = value; return this; } public BigDecimal getQuantityLessThanOrEqualTo() { return QuantityLessThanOrEqualTo; } public PI_LinesDetailsQuery setQuantityLessThanOrEqualTo(BigDecimal value) { this.QuantityLessThanOrEqualTo = value; return this; } public BigDecimal getQuantityNotEqualTo() { return QuantityNotEqualTo; } public PI_LinesDetailsQuery setQuantityNotEqualTo(BigDecimal value) { this.QuantityNotEqualTo = value; return this; } public ArrayList getQuantityBetween() { return QuantityBetween; } public PI_LinesDetailsQuery setQuantityBetween(ArrayList value) { this.QuantityBetween = value; return this; } public ArrayList getQuantityIn() { return QuantityIn; } public PI_LinesDetailsQuery setQuantityIn(ArrayList value) { this.QuantityIn = value; return this; } public Date getExpiryDate() { return ExpiryDate; } public PI_LinesDetailsQuery setExpiryDate(Date value) { this.ExpiryDate = value; return this; } public Date getExpiryDateGreaterThanOrEqualTo() { return ExpiryDateGreaterThanOrEqualTo; } public PI_LinesDetailsQuery setExpiryDateGreaterThanOrEqualTo(Date value) { this.ExpiryDateGreaterThanOrEqualTo = value; return this; } public Date getExpiryDateGreaterThan() { return ExpiryDateGreaterThan; } public PI_LinesDetailsQuery setExpiryDateGreaterThan(Date value) { this.ExpiryDateGreaterThan = value; return this; } public Date getExpiryDateLessThan() { return ExpiryDateLessThan; } public PI_LinesDetailsQuery setExpiryDateLessThan(Date value) { this.ExpiryDateLessThan = value; return this; } public Date getExpiryDateLessThanOrEqualTo() { return ExpiryDateLessThanOrEqualTo; } public PI_LinesDetailsQuery setExpiryDateLessThanOrEqualTo(Date value) { this.ExpiryDateLessThanOrEqualTo = value; return this; } public Date getExpiryDateNotEqualTo() { return ExpiryDateNotEqualTo; } public PI_LinesDetailsQuery setExpiryDateNotEqualTo(Date value) { this.ExpiryDateNotEqualTo = value; return this; } public ArrayList getExpiryDateBetween() { return ExpiryDateBetween; } public PI_LinesDetailsQuery setExpiryDateBetween(ArrayList value) { this.ExpiryDateBetween = value; return this; } public ArrayList getExpiryDateIn() { return ExpiryDateIn; } public PI_LinesDetailsQuery setExpiryDateIn(ArrayList value) { this.ExpiryDateIn = value; return this; } public String getBinLocation() { return BinLocation; } public PI_LinesDetailsQuery setBinLocation(String value) { this.BinLocation = value; return this; } public String getBinLocationStartsWith() { return BinLocationStartsWith; } public PI_LinesDetailsQuery setBinLocationStartsWith(String value) { this.BinLocationStartsWith = value; return this; } public String getBinLocationEndsWith() { return BinLocationEndsWith; } public PI_LinesDetailsQuery setBinLocationEndsWith(String value) { this.BinLocationEndsWith = value; return this; } public String getBinLocationContains() { return BinLocationContains; } public PI_LinesDetailsQuery setBinLocationContains(String value) { this.BinLocationContains = value; return this; } public String getBinLocationLike() { return BinLocationLike; } public PI_LinesDetailsQuery setBinLocationLike(String value) { this.BinLocationLike = value; return this; } public ArrayList getBinLocationBetween() { return BinLocationBetween; } public PI_LinesDetailsQuery setBinLocationBetween(ArrayList value) { this.BinLocationBetween = value; return this; } public ArrayList getBinLocationIn() { return BinLocationIn; } public PI_LinesDetailsQuery setBinLocationIn(ArrayList value) { this.BinLocationIn = value; return this; } public ArrayList getRowHash() { return RowHash; } public PI_LinesDetailsQuery setRowHash(ArrayList value) { this.RowHash = value; return this; } public String getReLineDetailsRecID() { return RE_LineDetails_RecID; } public PI_LinesDetailsQuery setReLineDetailsRecID(String value) { this.RE_LineDetails_RecID = value; return this; } public String getReLineDetailsRecIDStartsWith() { return RE_LineDetails_RecIDStartsWith; } public PI_LinesDetailsQuery setReLineDetailsRecIDStartsWith(String value) { this.RE_LineDetails_RecIDStartsWith = value; return this; } public String getReLineDetailsRecIDEndsWith() { return RE_LineDetails_RecIDEndsWith; } public PI_LinesDetailsQuery setReLineDetailsRecIDEndsWith(String value) { this.RE_LineDetails_RecIDEndsWith = value; return this; } public String getReLineDetailsRecIDContains() { return RE_LineDetails_RecIDContains; } public PI_LinesDetailsQuery setReLineDetailsRecIDContains(String value) { this.RE_LineDetails_RecIDContains = value; return this; } public String getReLineDetailsRecIDLike() { return RE_LineDetails_RecIDLike; } public PI_LinesDetailsQuery setReLineDetailsRecIDLike(String value) { this.RE_LineDetails_RecIDLike = value; return this; } public ArrayList getReLineDetailsRecIDBetween() { return RE_LineDetails_RecIDBetween; } public PI_LinesDetailsQuery setReLineDetailsRecIDBetween(ArrayList value) { this.RE_LineDetails_RecIDBetween = value; return this; } public ArrayList getReLineDetailsRecIDIn() { return RE_LineDetails_RecIDIn; } public PI_LinesDetailsQuery setReLineDetailsRecIDIn(ArrayList value) { this.RE_LineDetails_RecIDIn = value; return this; } public String getInSohRecID() { return IN_SOH_RecID; } public PI_LinesDetailsQuery setInSohRecID(String value) { this.IN_SOH_RecID = value; return this; } public String getInSohRecIDStartsWith() { return IN_SOH_RecIDStartsWith; } public PI_LinesDetailsQuery setInSohRecIDStartsWith(String value) { this.IN_SOH_RecIDStartsWith = value; return this; } public String getInSohRecIDEndsWith() { return IN_SOH_RecIDEndsWith; } public PI_LinesDetailsQuery setInSohRecIDEndsWith(String value) { this.IN_SOH_RecIDEndsWith = value; return this; } public String getInSohRecIDContains() { return IN_SOH_RecIDContains; } public PI_LinesDetailsQuery setInSohRecIDContains(String value) { this.IN_SOH_RecIDContains = value; return this; } public String getInSohRecIDLike() { return IN_SOH_RecIDLike; } public PI_LinesDetailsQuery setInSohRecIDLike(String value) { this.IN_SOH_RecIDLike = value; return this; } public ArrayList getInSohRecIDBetween() { return IN_SOH_RecIDBetween; } public PI_LinesDetailsQuery setInSohRecIDBetween(ArrayList value) { this.IN_SOH_RecIDBetween = value; return this; } public ArrayList getInSohRecIDIn() { return IN_SOH_RecIDIn; } public PI_LinesDetailsQuery setInSohRecIDIn(ArrayList value) { this.IN_SOH_RecIDIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @Route(Path="/Queries/PI_Main", Verbs="GET") @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class PI_MainQuery extends QueryDb implements IReturn> { public String PI_MainID = null; public String PI_MainIDStartsWith = null; public String PI_MainIDEndsWith = null; public String PI_MainIDContains = null; public String PI_MainIDLike = null; public ArrayList PI_MainIDBetween = null; public ArrayList PI_MainIDIn = null; public Date LastSavedDateTime = null; public Date LastSavedDateTimeGreaterThanOrEqualTo = null; public Date LastSavedDateTimeGreaterThan = null; public Date LastSavedDateTimeLessThan = null; public Date LastSavedDateTimeLessThanOrEqualTo = null; public Date LastSavedDateTimeNotEqualTo = null; public ArrayList LastSavedDateTimeBetween = null; public ArrayList LastSavedDateTimeIn = null; public String InvoiceNo = null; public String InvoiceNoStartsWith = null; public String InvoiceNoEndsWith = null; public String InvoiceNoContains = null; public String InvoiceNoLike = null; public ArrayList InvoiceNoBetween = null; public ArrayList InvoiceNoIn = null; public String CreditorID = null; public String CreditorIDStartsWith = null; public String CreditorIDEndsWith = null; public String CreditorIDContains = null; public String CreditorIDLike = null; public ArrayList CreditorIDBetween = null; public ArrayList CreditorIDIn = null; public Date InvoiceDate = null; public Date InvoiceDateGreaterThanOrEqualTo = null; public Date InvoiceDateGreaterThan = null; public Date InvoiceDateLessThan = null; public Date InvoiceDateLessThanOrEqualTo = null; public Date InvoiceDateNotEqualTo = null; public ArrayList InvoiceDateBetween = null; public ArrayList InvoiceDateIn = null; public Short Status = null; public Short StatusGreaterThanOrEqualTo = null; public Short StatusGreaterThan = null; public Short StatusLessThan = null; public Short StatusLessThanOrEqualTo = null; public Short StatusNotEqualTo = null; public ArrayList StatusBetween = null; public ArrayList StatusIn = null; public BigDecimal Freight = null; public BigDecimal FreightGreaterThanOrEqualTo = null; public BigDecimal FreightGreaterThan = null; public BigDecimal FreightLessThan = null; public BigDecimal FreightLessThanOrEqualTo = null; public BigDecimal FreightNotEqualTo = null; public ArrayList FreightBetween = null; public ArrayList FreightIn = null; public BigDecimal Duty = null; public BigDecimal DutyGreaterThanOrEqualTo = null; public BigDecimal DutyGreaterThan = null; public BigDecimal DutyLessThan = null; public BigDecimal DutyLessThanOrEqualTo = null; public BigDecimal DutyNotEqualTo = null; public ArrayList DutyBetween = null; public ArrayList DutyIn = null; public BigDecimal Insurance = null; public BigDecimal InsuranceGreaterThanOrEqualTo = null; public BigDecimal InsuranceGreaterThan = null; public BigDecimal InsuranceLessThan = null; public BigDecimal InsuranceLessThanOrEqualTo = null; public BigDecimal InsuranceNotEqualTo = null; public ArrayList InsuranceBetween = null; public ArrayList InsuranceIn = null; public Date DueDate = null; public Date DueDateGreaterThanOrEqualTo = null; public Date DueDateGreaterThan = null; public Date DueDateLessThan = null; public Date DueDateLessThanOrEqualTo = null; public Date DueDateNotEqualTo = null; public ArrayList DueDateBetween = null; public ArrayList DueDateIn = null; public String IN_LogicalID = null; public String IN_LogicalIDStartsWith = null; public String IN_LogicalIDEndsWith = null; public String IN_LogicalIDContains = null; public String IN_LogicalIDLike = null; public ArrayList IN_LogicalIDBetween = null; public ArrayList IN_LogicalIDIn = null; public BigDecimal TotalLineTax = null; public BigDecimal TotalLineTaxGreaterThanOrEqualTo = null; public BigDecimal TotalLineTaxGreaterThan = null; public BigDecimal TotalLineTaxLessThan = null; public BigDecimal TotalLineTaxLessThanOrEqualTo = null; public BigDecimal TotalLineTaxNotEqualTo = null; public ArrayList TotalLineTaxBetween = null; public ArrayList TotalLineTaxIn = null; public BigDecimal AdjTax = null; public BigDecimal AdjTaxGreaterThanOrEqualTo = null; public BigDecimal AdjTaxGreaterThan = null; public BigDecimal AdjTaxLessThan = null; public BigDecimal AdjTaxLessThanOrEqualTo = null; public BigDecimal AdjTaxNotEqualTo = null; public ArrayList AdjTaxBetween = null; public ArrayList AdjTaxIn = null; public String FreightTaxID = null; public String FreightTaxIDStartsWith = null; public String FreightTaxIDEndsWith = null; public String FreightTaxIDContains = null; public String FreightTaxIDLike = null; public ArrayList FreightTaxIDBetween = null; public ArrayList FreightTaxIDIn = null; public BigDecimal FreightTaxRate = null; public BigDecimal FreightTaxRateGreaterThanOrEqualTo = null; public BigDecimal FreightTaxRateGreaterThan = null; public BigDecimal FreightTaxRateLessThan = null; public BigDecimal FreightTaxRateLessThanOrEqualTo = null; public BigDecimal FreightTaxRateNotEqualTo = null; public ArrayList FreightTaxRateBetween = null; public ArrayList FreightTaxRateIn = null; public BigDecimal FreightTaxAmount = null; public BigDecimal FreightTaxAmountGreaterThanOrEqualTo = null; public BigDecimal FreightTaxAmountGreaterThan = null; public BigDecimal FreightTaxAmountLessThan = null; public BigDecimal FreightTaxAmountLessThanOrEqualTo = null; public BigDecimal FreightTaxAmountNotEqualTo = null; public ArrayList FreightTaxAmountBetween = null; public ArrayList FreightTaxAmountIn = null; public String DutyTaxID = null; public String DutyTaxIDStartsWith = null; public String DutyTaxIDEndsWith = null; public String DutyTaxIDContains = null; public String DutyTaxIDLike = null; public ArrayList DutyTaxIDBetween = null; public ArrayList DutyTaxIDIn = null; public BigDecimal DutyTaxRate = null; public BigDecimal DutyTaxRateGreaterThanOrEqualTo = null; public BigDecimal DutyTaxRateGreaterThan = null; public BigDecimal DutyTaxRateLessThan = null; public BigDecimal DutyTaxRateLessThanOrEqualTo = null; public BigDecimal DutyTaxRateNotEqualTo = null; public ArrayList DutyTaxRateBetween = null; public ArrayList DutyTaxRateIn = null; public BigDecimal DutyTaxAmount = null; public BigDecimal DutyTaxAmountGreaterThanOrEqualTo = null; public BigDecimal DutyTaxAmountGreaterThan = null; public BigDecimal DutyTaxAmountLessThan = null; public BigDecimal DutyTaxAmountLessThanOrEqualTo = null; public BigDecimal DutyTaxAmountNotEqualTo = null; public ArrayList DutyTaxAmountBetween = null; public ArrayList DutyTaxAmountIn = null; public String InsuranceTaxID = null; public String InsuranceTaxIDStartsWith = null; public String InsuranceTaxIDEndsWith = null; public String InsuranceTaxIDContains = null; public String InsuranceTaxIDLike = null; public ArrayList InsuranceTaxIDBetween = null; public ArrayList InsuranceTaxIDIn = null; public BigDecimal InsuranceTaxRate = null; public BigDecimal InsuranceTaxRateGreaterThanOrEqualTo = null; public BigDecimal InsuranceTaxRateGreaterThan = null; public BigDecimal InsuranceTaxRateLessThan = null; public BigDecimal InsuranceTaxRateLessThanOrEqualTo = null; public BigDecimal InsuranceTaxRateNotEqualTo = null; public ArrayList InsuranceTaxRateBetween = null; public ArrayList InsuranceTaxRateIn = null; public BigDecimal InsuranceTaxAmount = null; public BigDecimal InsuranceTaxAmountGreaterThanOrEqualTo = null; public BigDecimal InsuranceTaxAmountGreaterThan = null; public BigDecimal InsuranceTaxAmountLessThan = null; public BigDecimal InsuranceTaxAmountLessThanOrEqualTo = null; public BigDecimal InsuranceTaxAmountNotEqualTo = null; public ArrayList InsuranceTaxAmountBetween = null; public ArrayList InsuranceTaxAmountIn = null; public String CurrencyID = null; public String CurrencyIDStartsWith = null; public String CurrencyIDEndsWith = null; public String CurrencyIDContains = null; public String CurrencyIDLike = null; public ArrayList CurrencyIDBetween = null; public ArrayList CurrencyIDIn = null; public Short DecimalPlaces = null; public Short DecimalPlacesGreaterThanOrEqualTo = null; public Short DecimalPlacesGreaterThan = null; public Short DecimalPlacesLessThan = null; public Short DecimalPlacesLessThanOrEqualTo = null; public Short DecimalPlacesNotEqualTo = null; public ArrayList DecimalPlacesBetween = null; public ArrayList DecimalPlacesIn = null; public Short FXDecimalPlaces = null; public Short FXDecimalPlacesGreaterThanOrEqualTo = null; public Short FXDecimalPlacesGreaterThan = null; public Short FXDecimalPlacesLessThan = null; public Short FXDecimalPlacesLessThanOrEqualTo = null; public Short FXDecimalPlacesNotEqualTo = null; public ArrayList FXDecimalPlacesBetween = null; public ArrayList FXDecimalPlacesIn = null; public String getPiMainID() { return PI_MainID; } public PI_MainQuery setPiMainID(String value) { this.PI_MainID = value; return this; } public String getPiMainIDStartsWith() { return PI_MainIDStartsWith; } public PI_MainQuery setPiMainIDStartsWith(String value) { this.PI_MainIDStartsWith = value; return this; } public String getPiMainIDEndsWith() { return PI_MainIDEndsWith; } public PI_MainQuery setPiMainIDEndsWith(String value) { this.PI_MainIDEndsWith = value; return this; } public String getPiMainIDContains() { return PI_MainIDContains; } public PI_MainQuery setPiMainIDContains(String value) { this.PI_MainIDContains = value; return this; } public String getPiMainIDLike() { return PI_MainIDLike; } public PI_MainQuery setPiMainIDLike(String value) { this.PI_MainIDLike = value; return this; } public ArrayList getPiMainIDBetween() { return PI_MainIDBetween; } public PI_MainQuery setPiMainIDBetween(ArrayList value) { this.PI_MainIDBetween = value; return this; } public ArrayList getPiMainIDIn() { return PI_MainIDIn; } public PI_MainQuery setPiMainIDIn(ArrayList value) { this.PI_MainIDIn = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public PI_MainQuery setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getLastSavedDateTimeGreaterThanOrEqualTo() { return LastSavedDateTimeGreaterThanOrEqualTo; } public PI_MainQuery setLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.LastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeGreaterThan() { return LastSavedDateTimeGreaterThan; } public PI_MainQuery setLastSavedDateTimeGreaterThan(Date value) { this.LastSavedDateTimeGreaterThan = value; return this; } public Date getLastSavedDateTimeLessThan() { return LastSavedDateTimeLessThan; } public PI_MainQuery setLastSavedDateTimeLessThan(Date value) { this.LastSavedDateTimeLessThan = value; return this; } public Date getLastSavedDateTimeLessThanOrEqualTo() { return LastSavedDateTimeLessThanOrEqualTo; } public PI_MainQuery setLastSavedDateTimeLessThanOrEqualTo(Date value) { this.LastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeNotEqualTo() { return LastSavedDateTimeNotEqualTo; } public PI_MainQuery setLastSavedDateTimeNotEqualTo(Date value) { this.LastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getLastSavedDateTimeBetween() { return LastSavedDateTimeBetween; } public PI_MainQuery setLastSavedDateTimeBetween(ArrayList value) { this.LastSavedDateTimeBetween = value; return this; } public ArrayList getLastSavedDateTimeIn() { return LastSavedDateTimeIn; } public PI_MainQuery setLastSavedDateTimeIn(ArrayList value) { this.LastSavedDateTimeIn = value; return this; } public String getInvoiceNo() { return InvoiceNo; } public PI_MainQuery setInvoiceNo(String value) { this.InvoiceNo = value; return this; } public String getInvoiceNoStartsWith() { return InvoiceNoStartsWith; } public PI_MainQuery setInvoiceNoStartsWith(String value) { this.InvoiceNoStartsWith = value; return this; } public String getInvoiceNoEndsWith() { return InvoiceNoEndsWith; } public PI_MainQuery setInvoiceNoEndsWith(String value) { this.InvoiceNoEndsWith = value; return this; } public String getInvoiceNoContains() { return InvoiceNoContains; } public PI_MainQuery setInvoiceNoContains(String value) { this.InvoiceNoContains = value; return this; } public String getInvoiceNoLike() { return InvoiceNoLike; } public PI_MainQuery setInvoiceNoLike(String value) { this.InvoiceNoLike = value; return this; } public ArrayList getInvoiceNoBetween() { return InvoiceNoBetween; } public PI_MainQuery setInvoiceNoBetween(ArrayList value) { this.InvoiceNoBetween = value; return this; } public ArrayList getInvoiceNoIn() { return InvoiceNoIn; } public PI_MainQuery setInvoiceNoIn(ArrayList value) { this.InvoiceNoIn = value; return this; } public String getCreditorID() { return CreditorID; } public PI_MainQuery setCreditorID(String value) { this.CreditorID = value; return this; } public String getCreditorIDStartsWith() { return CreditorIDStartsWith; } public PI_MainQuery setCreditorIDStartsWith(String value) { this.CreditorIDStartsWith = value; return this; } public String getCreditorIDEndsWith() { return CreditorIDEndsWith; } public PI_MainQuery setCreditorIDEndsWith(String value) { this.CreditorIDEndsWith = value; return this; } public String getCreditorIDContains() { return CreditorIDContains; } public PI_MainQuery setCreditorIDContains(String value) { this.CreditorIDContains = value; return this; } public String getCreditorIDLike() { return CreditorIDLike; } public PI_MainQuery setCreditorIDLike(String value) { this.CreditorIDLike = value; return this; } public ArrayList getCreditorIDBetween() { return CreditorIDBetween; } public PI_MainQuery setCreditorIDBetween(ArrayList value) { this.CreditorIDBetween = value; return this; } public ArrayList getCreditorIDIn() { return CreditorIDIn; } public PI_MainQuery setCreditorIDIn(ArrayList value) { this.CreditorIDIn = value; return this; } public Date getInvoiceDate() { return InvoiceDate; } public PI_MainQuery setInvoiceDate(Date value) { this.InvoiceDate = value; return this; } public Date getInvoiceDateGreaterThanOrEqualTo() { return InvoiceDateGreaterThanOrEqualTo; } public PI_MainQuery setInvoiceDateGreaterThanOrEqualTo(Date value) { this.InvoiceDateGreaterThanOrEqualTo = value; return this; } public Date getInvoiceDateGreaterThan() { return InvoiceDateGreaterThan; } public PI_MainQuery setInvoiceDateGreaterThan(Date value) { this.InvoiceDateGreaterThan = value; return this; } public Date getInvoiceDateLessThan() { return InvoiceDateLessThan; } public PI_MainQuery setInvoiceDateLessThan(Date value) { this.InvoiceDateLessThan = value; return this; } public Date getInvoiceDateLessThanOrEqualTo() { return InvoiceDateLessThanOrEqualTo; } public PI_MainQuery setInvoiceDateLessThanOrEqualTo(Date value) { this.InvoiceDateLessThanOrEqualTo = value; return this; } public Date getInvoiceDateNotEqualTo() { return InvoiceDateNotEqualTo; } public PI_MainQuery setInvoiceDateNotEqualTo(Date value) { this.InvoiceDateNotEqualTo = value; return this; } public ArrayList getInvoiceDateBetween() { return InvoiceDateBetween; } public PI_MainQuery setInvoiceDateBetween(ArrayList value) { this.InvoiceDateBetween = value; return this; } public ArrayList getInvoiceDateIn() { return InvoiceDateIn; } public PI_MainQuery setInvoiceDateIn(ArrayList value) { this.InvoiceDateIn = value; return this; } public Short getStatus() { return Status; } public PI_MainQuery setStatus(Short value) { this.Status = value; return this; } public Short getStatusGreaterThanOrEqualTo() { return StatusGreaterThanOrEqualTo; } public PI_MainQuery setStatusGreaterThanOrEqualTo(Short value) { this.StatusGreaterThanOrEqualTo = value; return this; } public Short getStatusGreaterThan() { return StatusGreaterThan; } public PI_MainQuery setStatusGreaterThan(Short value) { this.StatusGreaterThan = value; return this; } public Short getStatusLessThan() { return StatusLessThan; } public PI_MainQuery setStatusLessThan(Short value) { this.StatusLessThan = value; return this; } public Short getStatusLessThanOrEqualTo() { return StatusLessThanOrEqualTo; } public PI_MainQuery setStatusLessThanOrEqualTo(Short value) { this.StatusLessThanOrEqualTo = value; return this; } public Short getStatusNotEqualTo() { return StatusNotEqualTo; } public PI_MainQuery setStatusNotEqualTo(Short value) { this.StatusNotEqualTo = value; return this; } public ArrayList getStatusBetween() { return StatusBetween; } public PI_MainQuery setStatusBetween(ArrayList value) { this.StatusBetween = value; return this; } public ArrayList getStatusIn() { return StatusIn; } public PI_MainQuery setStatusIn(ArrayList value) { this.StatusIn = value; return this; } public BigDecimal getFreight() { return Freight; } public PI_MainQuery setFreight(BigDecimal value) { this.Freight = value; return this; } public BigDecimal getFreightGreaterThanOrEqualTo() { return FreightGreaterThanOrEqualTo; } public PI_MainQuery setFreightGreaterThanOrEqualTo(BigDecimal value) { this.FreightGreaterThanOrEqualTo = value; return this; } public BigDecimal getFreightGreaterThan() { return FreightGreaterThan; } public PI_MainQuery setFreightGreaterThan(BigDecimal value) { this.FreightGreaterThan = value; return this; } public BigDecimal getFreightLessThan() { return FreightLessThan; } public PI_MainQuery setFreightLessThan(BigDecimal value) { this.FreightLessThan = value; return this; } public BigDecimal getFreightLessThanOrEqualTo() { return FreightLessThanOrEqualTo; } public PI_MainQuery setFreightLessThanOrEqualTo(BigDecimal value) { this.FreightLessThanOrEqualTo = value; return this; } public BigDecimal getFreightNotEqualTo() { return FreightNotEqualTo; } public PI_MainQuery setFreightNotEqualTo(BigDecimal value) { this.FreightNotEqualTo = value; return this; } public ArrayList getFreightBetween() { return FreightBetween; } public PI_MainQuery setFreightBetween(ArrayList value) { this.FreightBetween = value; return this; } public ArrayList getFreightIn() { return FreightIn; } public PI_MainQuery setFreightIn(ArrayList value) { this.FreightIn = value; return this; } public BigDecimal getDuty() { return Duty; } public PI_MainQuery setDuty(BigDecimal value) { this.Duty = value; return this; } public BigDecimal getDutyGreaterThanOrEqualTo() { return DutyGreaterThanOrEqualTo; } public PI_MainQuery setDutyGreaterThanOrEqualTo(BigDecimal value) { this.DutyGreaterThanOrEqualTo = value; return this; } public BigDecimal getDutyGreaterThan() { return DutyGreaterThan; } public PI_MainQuery setDutyGreaterThan(BigDecimal value) { this.DutyGreaterThan = value; return this; } public BigDecimal getDutyLessThan() { return DutyLessThan; } public PI_MainQuery setDutyLessThan(BigDecimal value) { this.DutyLessThan = value; return this; } public BigDecimal getDutyLessThanOrEqualTo() { return DutyLessThanOrEqualTo; } public PI_MainQuery setDutyLessThanOrEqualTo(BigDecimal value) { this.DutyLessThanOrEqualTo = value; return this; } public BigDecimal getDutyNotEqualTo() { return DutyNotEqualTo; } public PI_MainQuery setDutyNotEqualTo(BigDecimal value) { this.DutyNotEqualTo = value; return this; } public ArrayList getDutyBetween() { return DutyBetween; } public PI_MainQuery setDutyBetween(ArrayList value) { this.DutyBetween = value; return this; } public ArrayList getDutyIn() { return DutyIn; } public PI_MainQuery setDutyIn(ArrayList value) { this.DutyIn = value; return this; } public BigDecimal getInsurance() { return Insurance; } public PI_MainQuery setInsurance(BigDecimal value) { this.Insurance = value; return this; } public BigDecimal getInsuranceGreaterThanOrEqualTo() { return InsuranceGreaterThanOrEqualTo; } public PI_MainQuery setInsuranceGreaterThanOrEqualTo(BigDecimal value) { this.InsuranceGreaterThanOrEqualTo = value; return this; } public BigDecimal getInsuranceGreaterThan() { return InsuranceGreaterThan; } public PI_MainQuery setInsuranceGreaterThan(BigDecimal value) { this.InsuranceGreaterThan = value; return this; } public BigDecimal getInsuranceLessThan() { return InsuranceLessThan; } public PI_MainQuery setInsuranceLessThan(BigDecimal value) { this.InsuranceLessThan = value; return this; } public BigDecimal getInsuranceLessThanOrEqualTo() { return InsuranceLessThanOrEqualTo; } public PI_MainQuery setInsuranceLessThanOrEqualTo(BigDecimal value) { this.InsuranceLessThanOrEqualTo = value; return this; } public BigDecimal getInsuranceNotEqualTo() { return InsuranceNotEqualTo; } public PI_MainQuery setInsuranceNotEqualTo(BigDecimal value) { this.InsuranceNotEqualTo = value; return this; } public ArrayList getInsuranceBetween() { return InsuranceBetween; } public PI_MainQuery setInsuranceBetween(ArrayList value) { this.InsuranceBetween = value; return this; } public ArrayList getInsuranceIn() { return InsuranceIn; } public PI_MainQuery setInsuranceIn(ArrayList value) { this.InsuranceIn = value; return this; } public Date getDueDate() { return DueDate; } public PI_MainQuery setDueDate(Date value) { this.DueDate = value; return this; } public Date getDueDateGreaterThanOrEqualTo() { return DueDateGreaterThanOrEqualTo; } public PI_MainQuery setDueDateGreaterThanOrEqualTo(Date value) { this.DueDateGreaterThanOrEqualTo = value; return this; } public Date getDueDateGreaterThan() { return DueDateGreaterThan; } public PI_MainQuery setDueDateGreaterThan(Date value) { this.DueDateGreaterThan = value; return this; } public Date getDueDateLessThan() { return DueDateLessThan; } public PI_MainQuery setDueDateLessThan(Date value) { this.DueDateLessThan = value; return this; } public Date getDueDateLessThanOrEqualTo() { return DueDateLessThanOrEqualTo; } public PI_MainQuery setDueDateLessThanOrEqualTo(Date value) { this.DueDateLessThanOrEqualTo = value; return this; } public Date getDueDateNotEqualTo() { return DueDateNotEqualTo; } public PI_MainQuery setDueDateNotEqualTo(Date value) { this.DueDateNotEqualTo = value; return this; } public ArrayList getDueDateBetween() { return DueDateBetween; } public PI_MainQuery setDueDateBetween(ArrayList value) { this.DueDateBetween = value; return this; } public ArrayList getDueDateIn() { return DueDateIn; } public PI_MainQuery setDueDateIn(ArrayList value) { this.DueDateIn = value; return this; } public String getInLogicalID() { return IN_LogicalID; } public PI_MainQuery setInLogicalID(String value) { this.IN_LogicalID = value; return this; } public String getInLogicalIDStartsWith() { return IN_LogicalIDStartsWith; } public PI_MainQuery setInLogicalIDStartsWith(String value) { this.IN_LogicalIDStartsWith = value; return this; } public String getInLogicalIDEndsWith() { return IN_LogicalIDEndsWith; } public PI_MainQuery setInLogicalIDEndsWith(String value) { this.IN_LogicalIDEndsWith = value; return this; } public String getInLogicalIDContains() { return IN_LogicalIDContains; } public PI_MainQuery setInLogicalIDContains(String value) { this.IN_LogicalIDContains = value; return this; } public String getInLogicalIDLike() { return IN_LogicalIDLike; } public PI_MainQuery setInLogicalIDLike(String value) { this.IN_LogicalIDLike = value; return this; } public ArrayList getInLogicalIDBetween() { return IN_LogicalIDBetween; } public PI_MainQuery setInLogicalIDBetween(ArrayList value) { this.IN_LogicalIDBetween = value; return this; } public ArrayList getInLogicalIDIn() { return IN_LogicalIDIn; } public PI_MainQuery setInLogicalIDIn(ArrayList value) { this.IN_LogicalIDIn = value; return this; } public BigDecimal getTotalLineTax() { return TotalLineTax; } public PI_MainQuery setTotalLineTax(BigDecimal value) { this.TotalLineTax = value; return this; } public BigDecimal getTotalLineTaxGreaterThanOrEqualTo() { return TotalLineTaxGreaterThanOrEqualTo; } public PI_MainQuery setTotalLineTaxGreaterThanOrEqualTo(BigDecimal value) { this.TotalLineTaxGreaterThanOrEqualTo = value; return this; } public BigDecimal getTotalLineTaxGreaterThan() { return TotalLineTaxGreaterThan; } public PI_MainQuery setTotalLineTaxGreaterThan(BigDecimal value) { this.TotalLineTaxGreaterThan = value; return this; } public BigDecimal getTotalLineTaxLessThan() { return TotalLineTaxLessThan; } public PI_MainQuery setTotalLineTaxLessThan(BigDecimal value) { this.TotalLineTaxLessThan = value; return this; } public BigDecimal getTotalLineTaxLessThanOrEqualTo() { return TotalLineTaxLessThanOrEqualTo; } public PI_MainQuery setTotalLineTaxLessThanOrEqualTo(BigDecimal value) { this.TotalLineTaxLessThanOrEqualTo = value; return this; } public BigDecimal getTotalLineTaxNotEqualTo() { return TotalLineTaxNotEqualTo; } public PI_MainQuery setTotalLineTaxNotEqualTo(BigDecimal value) { this.TotalLineTaxNotEqualTo = value; return this; } public ArrayList getTotalLineTaxBetween() { return TotalLineTaxBetween; } public PI_MainQuery setTotalLineTaxBetween(ArrayList value) { this.TotalLineTaxBetween = value; return this; } public ArrayList getTotalLineTaxIn() { return TotalLineTaxIn; } public PI_MainQuery setTotalLineTaxIn(ArrayList value) { this.TotalLineTaxIn = value; return this; } public BigDecimal getAdjTax() { return AdjTax; } public PI_MainQuery setAdjTax(BigDecimal value) { this.AdjTax = value; return this; } public BigDecimal getAdjTaxGreaterThanOrEqualTo() { return AdjTaxGreaterThanOrEqualTo; } public PI_MainQuery setAdjTaxGreaterThanOrEqualTo(BigDecimal value) { this.AdjTaxGreaterThanOrEqualTo = value; return this; } public BigDecimal getAdjTaxGreaterThan() { return AdjTaxGreaterThan; } public PI_MainQuery setAdjTaxGreaterThan(BigDecimal value) { this.AdjTaxGreaterThan = value; return this; } public BigDecimal getAdjTaxLessThan() { return AdjTaxLessThan; } public PI_MainQuery setAdjTaxLessThan(BigDecimal value) { this.AdjTaxLessThan = value; return this; } public BigDecimal getAdjTaxLessThanOrEqualTo() { return AdjTaxLessThanOrEqualTo; } public PI_MainQuery setAdjTaxLessThanOrEqualTo(BigDecimal value) { this.AdjTaxLessThanOrEqualTo = value; return this; } public BigDecimal getAdjTaxNotEqualTo() { return AdjTaxNotEqualTo; } public PI_MainQuery setAdjTaxNotEqualTo(BigDecimal value) { this.AdjTaxNotEqualTo = value; return this; } public ArrayList getAdjTaxBetween() { return AdjTaxBetween; } public PI_MainQuery setAdjTaxBetween(ArrayList value) { this.AdjTaxBetween = value; return this; } public ArrayList getAdjTaxIn() { return AdjTaxIn; } public PI_MainQuery setAdjTaxIn(ArrayList value) { this.AdjTaxIn = value; return this; } public String getFreightTaxID() { return FreightTaxID; } public PI_MainQuery setFreightTaxID(String value) { this.FreightTaxID = value; return this; } public String getFreightTaxIDStartsWith() { return FreightTaxIDStartsWith; } public PI_MainQuery setFreightTaxIDStartsWith(String value) { this.FreightTaxIDStartsWith = value; return this; } public String getFreightTaxIDEndsWith() { return FreightTaxIDEndsWith; } public PI_MainQuery setFreightTaxIDEndsWith(String value) { this.FreightTaxIDEndsWith = value; return this; } public String getFreightTaxIDContains() { return FreightTaxIDContains; } public PI_MainQuery setFreightTaxIDContains(String value) { this.FreightTaxIDContains = value; return this; } public String getFreightTaxIDLike() { return FreightTaxIDLike; } public PI_MainQuery setFreightTaxIDLike(String value) { this.FreightTaxIDLike = value; return this; } public ArrayList getFreightTaxIDBetween() { return FreightTaxIDBetween; } public PI_MainQuery setFreightTaxIDBetween(ArrayList value) { this.FreightTaxIDBetween = value; return this; } public ArrayList getFreightTaxIDIn() { return FreightTaxIDIn; } public PI_MainQuery setFreightTaxIDIn(ArrayList value) { this.FreightTaxIDIn = value; return this; } public BigDecimal getFreightTaxRate() { return FreightTaxRate; } public PI_MainQuery setFreightTaxRate(BigDecimal value) { this.FreightTaxRate = value; return this; } public BigDecimal getFreightTaxRateGreaterThanOrEqualTo() { return FreightTaxRateGreaterThanOrEqualTo; } public PI_MainQuery setFreightTaxRateGreaterThanOrEqualTo(BigDecimal value) { this.FreightTaxRateGreaterThanOrEqualTo = value; return this; } public BigDecimal getFreightTaxRateGreaterThan() { return FreightTaxRateGreaterThan; } public PI_MainQuery setFreightTaxRateGreaterThan(BigDecimal value) { this.FreightTaxRateGreaterThan = value; return this; } public BigDecimal getFreightTaxRateLessThan() { return FreightTaxRateLessThan; } public PI_MainQuery setFreightTaxRateLessThan(BigDecimal value) { this.FreightTaxRateLessThan = value; return this; } public BigDecimal getFreightTaxRateLessThanOrEqualTo() { return FreightTaxRateLessThanOrEqualTo; } public PI_MainQuery setFreightTaxRateLessThanOrEqualTo(BigDecimal value) { this.FreightTaxRateLessThanOrEqualTo = value; return this; } public BigDecimal getFreightTaxRateNotEqualTo() { return FreightTaxRateNotEqualTo; } public PI_MainQuery setFreightTaxRateNotEqualTo(BigDecimal value) { this.FreightTaxRateNotEqualTo = value; return this; } public ArrayList getFreightTaxRateBetween() { return FreightTaxRateBetween; } public PI_MainQuery setFreightTaxRateBetween(ArrayList value) { this.FreightTaxRateBetween = value; return this; } public ArrayList getFreightTaxRateIn() { return FreightTaxRateIn; } public PI_MainQuery setFreightTaxRateIn(ArrayList value) { this.FreightTaxRateIn = value; return this; } public BigDecimal getFreightTaxAmount() { return FreightTaxAmount; } public PI_MainQuery setFreightTaxAmount(BigDecimal value) { this.FreightTaxAmount = value; return this; } public BigDecimal getFreightTaxAmountGreaterThanOrEqualTo() { return FreightTaxAmountGreaterThanOrEqualTo; } public PI_MainQuery setFreightTaxAmountGreaterThanOrEqualTo(BigDecimal value) { this.FreightTaxAmountGreaterThanOrEqualTo = value; return this; } public BigDecimal getFreightTaxAmountGreaterThan() { return FreightTaxAmountGreaterThan; } public PI_MainQuery setFreightTaxAmountGreaterThan(BigDecimal value) { this.FreightTaxAmountGreaterThan = value; return this; } public BigDecimal getFreightTaxAmountLessThan() { return FreightTaxAmountLessThan; } public PI_MainQuery setFreightTaxAmountLessThan(BigDecimal value) { this.FreightTaxAmountLessThan = value; return this; } public BigDecimal getFreightTaxAmountLessThanOrEqualTo() { return FreightTaxAmountLessThanOrEqualTo; } public PI_MainQuery setFreightTaxAmountLessThanOrEqualTo(BigDecimal value) { this.FreightTaxAmountLessThanOrEqualTo = value; return this; } public BigDecimal getFreightTaxAmountNotEqualTo() { return FreightTaxAmountNotEqualTo; } public PI_MainQuery setFreightTaxAmountNotEqualTo(BigDecimal value) { this.FreightTaxAmountNotEqualTo = value; return this; } public ArrayList getFreightTaxAmountBetween() { return FreightTaxAmountBetween; } public PI_MainQuery setFreightTaxAmountBetween(ArrayList value) { this.FreightTaxAmountBetween = value; return this; } public ArrayList getFreightTaxAmountIn() { return FreightTaxAmountIn; } public PI_MainQuery setFreightTaxAmountIn(ArrayList value) { this.FreightTaxAmountIn = value; return this; } public String getDutyTaxID() { return DutyTaxID; } public PI_MainQuery setDutyTaxID(String value) { this.DutyTaxID = value; return this; } public String getDutyTaxIDStartsWith() { return DutyTaxIDStartsWith; } public PI_MainQuery setDutyTaxIDStartsWith(String value) { this.DutyTaxIDStartsWith = value; return this; } public String getDutyTaxIDEndsWith() { return DutyTaxIDEndsWith; } public PI_MainQuery setDutyTaxIDEndsWith(String value) { this.DutyTaxIDEndsWith = value; return this; } public String getDutyTaxIDContains() { return DutyTaxIDContains; } public PI_MainQuery setDutyTaxIDContains(String value) { this.DutyTaxIDContains = value; return this; } public String getDutyTaxIDLike() { return DutyTaxIDLike; } public PI_MainQuery setDutyTaxIDLike(String value) { this.DutyTaxIDLike = value; return this; } public ArrayList getDutyTaxIDBetween() { return DutyTaxIDBetween; } public PI_MainQuery setDutyTaxIDBetween(ArrayList value) { this.DutyTaxIDBetween = value; return this; } public ArrayList getDutyTaxIDIn() { return DutyTaxIDIn; } public PI_MainQuery setDutyTaxIDIn(ArrayList value) { this.DutyTaxIDIn = value; return this; } public BigDecimal getDutyTaxRate() { return DutyTaxRate; } public PI_MainQuery setDutyTaxRate(BigDecimal value) { this.DutyTaxRate = value; return this; } public BigDecimal getDutyTaxRateGreaterThanOrEqualTo() { return DutyTaxRateGreaterThanOrEqualTo; } public PI_MainQuery setDutyTaxRateGreaterThanOrEqualTo(BigDecimal value) { this.DutyTaxRateGreaterThanOrEqualTo = value; return this; } public BigDecimal getDutyTaxRateGreaterThan() { return DutyTaxRateGreaterThan; } public PI_MainQuery setDutyTaxRateGreaterThan(BigDecimal value) { this.DutyTaxRateGreaterThan = value; return this; } public BigDecimal getDutyTaxRateLessThan() { return DutyTaxRateLessThan; } public PI_MainQuery setDutyTaxRateLessThan(BigDecimal value) { this.DutyTaxRateLessThan = value; return this; } public BigDecimal getDutyTaxRateLessThanOrEqualTo() { return DutyTaxRateLessThanOrEqualTo; } public PI_MainQuery setDutyTaxRateLessThanOrEqualTo(BigDecimal value) { this.DutyTaxRateLessThanOrEqualTo = value; return this; } public BigDecimal getDutyTaxRateNotEqualTo() { return DutyTaxRateNotEqualTo; } public PI_MainQuery setDutyTaxRateNotEqualTo(BigDecimal value) { this.DutyTaxRateNotEqualTo = value; return this; } public ArrayList getDutyTaxRateBetween() { return DutyTaxRateBetween; } public PI_MainQuery setDutyTaxRateBetween(ArrayList value) { this.DutyTaxRateBetween = value; return this; } public ArrayList getDutyTaxRateIn() { return DutyTaxRateIn; } public PI_MainQuery setDutyTaxRateIn(ArrayList value) { this.DutyTaxRateIn = value; return this; } public BigDecimal getDutyTaxAmount() { return DutyTaxAmount; } public PI_MainQuery setDutyTaxAmount(BigDecimal value) { this.DutyTaxAmount = value; return this; } public BigDecimal getDutyTaxAmountGreaterThanOrEqualTo() { return DutyTaxAmountGreaterThanOrEqualTo; } public PI_MainQuery setDutyTaxAmountGreaterThanOrEqualTo(BigDecimal value) { this.DutyTaxAmountGreaterThanOrEqualTo = value; return this; } public BigDecimal getDutyTaxAmountGreaterThan() { return DutyTaxAmountGreaterThan; } public PI_MainQuery setDutyTaxAmountGreaterThan(BigDecimal value) { this.DutyTaxAmountGreaterThan = value; return this; } public BigDecimal getDutyTaxAmountLessThan() { return DutyTaxAmountLessThan; } public PI_MainQuery setDutyTaxAmountLessThan(BigDecimal value) { this.DutyTaxAmountLessThan = value; return this; } public BigDecimal getDutyTaxAmountLessThanOrEqualTo() { return DutyTaxAmountLessThanOrEqualTo; } public PI_MainQuery setDutyTaxAmountLessThanOrEqualTo(BigDecimal value) { this.DutyTaxAmountLessThanOrEqualTo = value; return this; } public BigDecimal getDutyTaxAmountNotEqualTo() { return DutyTaxAmountNotEqualTo; } public PI_MainQuery setDutyTaxAmountNotEqualTo(BigDecimal value) { this.DutyTaxAmountNotEqualTo = value; return this; } public ArrayList getDutyTaxAmountBetween() { return DutyTaxAmountBetween; } public PI_MainQuery setDutyTaxAmountBetween(ArrayList value) { this.DutyTaxAmountBetween = value; return this; } public ArrayList getDutyTaxAmountIn() { return DutyTaxAmountIn; } public PI_MainQuery setDutyTaxAmountIn(ArrayList value) { this.DutyTaxAmountIn = value; return this; } public String getInsuranceTaxID() { return InsuranceTaxID; } public PI_MainQuery setInsuranceTaxID(String value) { this.InsuranceTaxID = value; return this; } public String getInsuranceTaxIDStartsWith() { return InsuranceTaxIDStartsWith; } public PI_MainQuery setInsuranceTaxIDStartsWith(String value) { this.InsuranceTaxIDStartsWith = value; return this; } public String getInsuranceTaxIDEndsWith() { return InsuranceTaxIDEndsWith; } public PI_MainQuery setInsuranceTaxIDEndsWith(String value) { this.InsuranceTaxIDEndsWith = value; return this; } public String getInsuranceTaxIDContains() { return InsuranceTaxIDContains; } public PI_MainQuery setInsuranceTaxIDContains(String value) { this.InsuranceTaxIDContains = value; return this; } public String getInsuranceTaxIDLike() { return InsuranceTaxIDLike; } public PI_MainQuery setInsuranceTaxIDLike(String value) { this.InsuranceTaxIDLike = value; return this; } public ArrayList getInsuranceTaxIDBetween() { return InsuranceTaxIDBetween; } public PI_MainQuery setInsuranceTaxIDBetween(ArrayList value) { this.InsuranceTaxIDBetween = value; return this; } public ArrayList getInsuranceTaxIDIn() { return InsuranceTaxIDIn; } public PI_MainQuery setInsuranceTaxIDIn(ArrayList value) { this.InsuranceTaxIDIn = value; return this; } public BigDecimal getInsuranceTaxRate() { return InsuranceTaxRate; } public PI_MainQuery setInsuranceTaxRate(BigDecimal value) { this.InsuranceTaxRate = value; return this; } public BigDecimal getInsuranceTaxRateGreaterThanOrEqualTo() { return InsuranceTaxRateGreaterThanOrEqualTo; } public PI_MainQuery setInsuranceTaxRateGreaterThanOrEqualTo(BigDecimal value) { this.InsuranceTaxRateGreaterThanOrEqualTo = value; return this; } public BigDecimal getInsuranceTaxRateGreaterThan() { return InsuranceTaxRateGreaterThan; } public PI_MainQuery setInsuranceTaxRateGreaterThan(BigDecimal value) { this.InsuranceTaxRateGreaterThan = value; return this; } public BigDecimal getInsuranceTaxRateLessThan() { return InsuranceTaxRateLessThan; } public PI_MainQuery setInsuranceTaxRateLessThan(BigDecimal value) { this.InsuranceTaxRateLessThan = value; return this; } public BigDecimal getInsuranceTaxRateLessThanOrEqualTo() { return InsuranceTaxRateLessThanOrEqualTo; } public PI_MainQuery setInsuranceTaxRateLessThanOrEqualTo(BigDecimal value) { this.InsuranceTaxRateLessThanOrEqualTo = value; return this; } public BigDecimal getInsuranceTaxRateNotEqualTo() { return InsuranceTaxRateNotEqualTo; } public PI_MainQuery setInsuranceTaxRateNotEqualTo(BigDecimal value) { this.InsuranceTaxRateNotEqualTo = value; return this; } public ArrayList getInsuranceTaxRateBetween() { return InsuranceTaxRateBetween; } public PI_MainQuery setInsuranceTaxRateBetween(ArrayList value) { this.InsuranceTaxRateBetween = value; return this; } public ArrayList getInsuranceTaxRateIn() { return InsuranceTaxRateIn; } public PI_MainQuery setInsuranceTaxRateIn(ArrayList value) { this.InsuranceTaxRateIn = value; return this; } public BigDecimal getInsuranceTaxAmount() { return InsuranceTaxAmount; } public PI_MainQuery setInsuranceTaxAmount(BigDecimal value) { this.InsuranceTaxAmount = value; return this; } public BigDecimal getInsuranceTaxAmountGreaterThanOrEqualTo() { return InsuranceTaxAmountGreaterThanOrEqualTo; } public PI_MainQuery setInsuranceTaxAmountGreaterThanOrEqualTo(BigDecimal value) { this.InsuranceTaxAmountGreaterThanOrEqualTo = value; return this; } public BigDecimal getInsuranceTaxAmountGreaterThan() { return InsuranceTaxAmountGreaterThan; } public PI_MainQuery setInsuranceTaxAmountGreaterThan(BigDecimal value) { this.InsuranceTaxAmountGreaterThan = value; return this; } public BigDecimal getInsuranceTaxAmountLessThan() { return InsuranceTaxAmountLessThan; } public PI_MainQuery setInsuranceTaxAmountLessThan(BigDecimal value) { this.InsuranceTaxAmountLessThan = value; return this; } public BigDecimal getInsuranceTaxAmountLessThanOrEqualTo() { return InsuranceTaxAmountLessThanOrEqualTo; } public PI_MainQuery setInsuranceTaxAmountLessThanOrEqualTo(BigDecimal value) { this.InsuranceTaxAmountLessThanOrEqualTo = value; return this; } public BigDecimal getInsuranceTaxAmountNotEqualTo() { return InsuranceTaxAmountNotEqualTo; } public PI_MainQuery setInsuranceTaxAmountNotEqualTo(BigDecimal value) { this.InsuranceTaxAmountNotEqualTo = value; return this; } public ArrayList getInsuranceTaxAmountBetween() { return InsuranceTaxAmountBetween; } public PI_MainQuery setInsuranceTaxAmountBetween(ArrayList value) { this.InsuranceTaxAmountBetween = value; return this; } public ArrayList getInsuranceTaxAmountIn() { return InsuranceTaxAmountIn; } public PI_MainQuery setInsuranceTaxAmountIn(ArrayList value) { this.InsuranceTaxAmountIn = value; return this; } public String getCurrencyID() { return CurrencyID; } public PI_MainQuery setCurrencyID(String value) { this.CurrencyID = value; return this; } public String getCurrencyIDStartsWith() { return CurrencyIDStartsWith; } public PI_MainQuery setCurrencyIDStartsWith(String value) { this.CurrencyIDStartsWith = value; return this; } public String getCurrencyIDEndsWith() { return CurrencyIDEndsWith; } public PI_MainQuery setCurrencyIDEndsWith(String value) { this.CurrencyIDEndsWith = value; return this; } public String getCurrencyIDContains() { return CurrencyIDContains; } public PI_MainQuery setCurrencyIDContains(String value) { this.CurrencyIDContains = value; return this; } public String getCurrencyIDLike() { return CurrencyIDLike; } public PI_MainQuery setCurrencyIDLike(String value) { this.CurrencyIDLike = value; return this; } public ArrayList getCurrencyIDBetween() { return CurrencyIDBetween; } public PI_MainQuery setCurrencyIDBetween(ArrayList value) { this.CurrencyIDBetween = value; return this; } public ArrayList getCurrencyIDIn() { return CurrencyIDIn; } public PI_MainQuery setCurrencyIDIn(ArrayList value) { this.CurrencyIDIn = value; return this; } public Short getDecimalPlaces() { return DecimalPlaces; } public PI_MainQuery setDecimalPlaces(Short value) { this.DecimalPlaces = value; return this; } public Short getDecimalPlacesGreaterThanOrEqualTo() { return DecimalPlacesGreaterThanOrEqualTo; } public PI_MainQuery setDecimalPlacesGreaterThanOrEqualTo(Short value) { this.DecimalPlacesGreaterThanOrEqualTo = value; return this; } public Short getDecimalPlacesGreaterThan() { return DecimalPlacesGreaterThan; } public PI_MainQuery setDecimalPlacesGreaterThan(Short value) { this.DecimalPlacesGreaterThan = value; return this; } public Short getDecimalPlacesLessThan() { return DecimalPlacesLessThan; } public PI_MainQuery setDecimalPlacesLessThan(Short value) { this.DecimalPlacesLessThan = value; return this; } public Short getDecimalPlacesLessThanOrEqualTo() { return DecimalPlacesLessThanOrEqualTo; } public PI_MainQuery setDecimalPlacesLessThanOrEqualTo(Short value) { this.DecimalPlacesLessThanOrEqualTo = value; return this; } public Short getDecimalPlacesNotEqualTo() { return DecimalPlacesNotEqualTo; } public PI_MainQuery setDecimalPlacesNotEqualTo(Short value) { this.DecimalPlacesNotEqualTo = value; return this; } public ArrayList getDecimalPlacesBetween() { return DecimalPlacesBetween; } public PI_MainQuery setDecimalPlacesBetween(ArrayList value) { this.DecimalPlacesBetween = value; return this; } public ArrayList getDecimalPlacesIn() { return DecimalPlacesIn; } public PI_MainQuery setDecimalPlacesIn(ArrayList value) { this.DecimalPlacesIn = value; return this; } public Short getFxDecimalPlaces() { return FXDecimalPlaces; } public PI_MainQuery setFxDecimalPlaces(Short value) { this.FXDecimalPlaces = value; return this; } public Short getFxDecimalPlacesGreaterThanOrEqualTo() { return FXDecimalPlacesGreaterThanOrEqualTo; } public PI_MainQuery setFxDecimalPlacesGreaterThanOrEqualTo(Short value) { this.FXDecimalPlacesGreaterThanOrEqualTo = value; return this; } public Short getFxDecimalPlacesGreaterThan() { return FXDecimalPlacesGreaterThan; } public PI_MainQuery setFxDecimalPlacesGreaterThan(Short value) { this.FXDecimalPlacesGreaterThan = value; return this; } public Short getFxDecimalPlacesLessThan() { return FXDecimalPlacesLessThan; } public PI_MainQuery setFxDecimalPlacesLessThan(Short value) { this.FXDecimalPlacesLessThan = value; return this; } public Short getFxDecimalPlacesLessThanOrEqualTo() { return FXDecimalPlacesLessThanOrEqualTo; } public PI_MainQuery setFxDecimalPlacesLessThanOrEqualTo(Short value) { this.FXDecimalPlacesLessThanOrEqualTo = value; return this; } public Short getFxDecimalPlacesNotEqualTo() { return FXDecimalPlacesNotEqualTo; } public PI_MainQuery setFxDecimalPlacesNotEqualTo(Short value) { this.FXDecimalPlacesNotEqualTo = value; return this; } public ArrayList getFxDecimalPlacesBetween() { return FXDecimalPlacesBetween; } public PI_MainQuery setFxDecimalPlacesBetween(ArrayList value) { this.FXDecimalPlacesBetween = value; return this; } public ArrayList getFxDecimalPlacesIn() { return FXDecimalPlacesIn; } public PI_MainQuery setFxDecimalPlacesIn(ArrayList value) { this.FXDecimalPlacesIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class PI_NotesQuery extends QueryDb implements IReturn> { public String RecID = null; public String RecIDStartsWith = null; public String RecIDEndsWith = null; public String RecIDContains = null; public String RecIDLike = null; public ArrayList RecIDBetween = null; public ArrayList RecIDIn = null; public String PI_Main_PI_MainID = null; public String PI_Main_PI_MainIDStartsWith = null; public String PI_Main_PI_MainIDEndsWith = null; public String PI_Main_PI_MainIDContains = null; public String PI_Main_PI_MainIDLike = null; public ArrayList PI_Main_PI_MainIDBetween = null; public ArrayList PI_Main_PI_MainIDIn = null; public String NoteTypeID = null; public String NoteTypeIDStartsWith = null; public String NoteTypeIDEndsWith = null; public String NoteTypeIDContains = null; public String NoteTypeIDLike = null; public ArrayList NoteTypeIDBetween = null; public ArrayList NoteTypeIDIn = null; public Date LastSavedDateTime = null; public Date LastSavedDateTimeGreaterThanOrEqualTo = null; public Date LastSavedDateTimeGreaterThan = null; public Date LastSavedDateTimeLessThan = null; public Date LastSavedDateTimeLessThanOrEqualTo = null; public Date LastSavedDateTimeNotEqualTo = null; public ArrayList LastSavedDateTimeBetween = null; public ArrayList LastSavedDateTimeIn = null; public String LastSavedByStaffID = null; public String LastSavedByStaffIDStartsWith = null; public String LastSavedByStaffIDEndsWith = null; public String LastSavedByStaffIDContains = null; public String LastSavedByStaffIDLike = null; public ArrayList LastSavedByStaffIDBetween = null; public ArrayList LastSavedByStaffIDIn = null; public String NoteText = null; public String NoteTextStartsWith = null; public String NoteTextEndsWith = null; public String NoteTextContains = null; public String NoteTextLike = null; public ArrayList NoteTextBetween = null; public ArrayList NoteTextIn = null; public Integer ItemNo = null; public Integer ItemNoGreaterThanOrEqualTo = null; public Integer ItemNoGreaterThan = null; public Integer ItemNoLessThan = null; public Integer ItemNoLessThanOrEqualTo = null; public Integer ItemNoNotEqualTo = null; public ArrayList ItemNoBetween = null; public ArrayList ItemNoIn = null; public String getRecID() { return RecID; } public PI_NotesQuery setRecID(String value) { this.RecID = value; return this; } public String getRecIDStartsWith() { return RecIDStartsWith; } public PI_NotesQuery setRecIDStartsWith(String value) { this.RecIDStartsWith = value; return this; } public String getRecIDEndsWith() { return RecIDEndsWith; } public PI_NotesQuery setRecIDEndsWith(String value) { this.RecIDEndsWith = value; return this; } public String getRecIDContains() { return RecIDContains; } public PI_NotesQuery setRecIDContains(String value) { this.RecIDContains = value; return this; } public String getRecIDLike() { return RecIDLike; } public PI_NotesQuery setRecIDLike(String value) { this.RecIDLike = value; return this; } public ArrayList getRecIDBetween() { return RecIDBetween; } public PI_NotesQuery setRecIDBetween(ArrayList value) { this.RecIDBetween = value; return this; } public ArrayList getRecIDIn() { return RecIDIn; } public PI_NotesQuery setRecIDIn(ArrayList value) { this.RecIDIn = value; return this; } public String getPiMainPiMainID() { return PI_Main_PI_MainID; } public PI_NotesQuery setPiMainPiMainID(String value) { this.PI_Main_PI_MainID = value; return this; } public String getPiMainPiMainIDStartsWith() { return PI_Main_PI_MainIDStartsWith; } public PI_NotesQuery setPiMainPiMainIDStartsWith(String value) { this.PI_Main_PI_MainIDStartsWith = value; return this; } public String getPiMainPiMainIDEndsWith() { return PI_Main_PI_MainIDEndsWith; } public PI_NotesQuery setPiMainPiMainIDEndsWith(String value) { this.PI_Main_PI_MainIDEndsWith = value; return this; } public String getPiMainPiMainIDContains() { return PI_Main_PI_MainIDContains; } public PI_NotesQuery setPiMainPiMainIDContains(String value) { this.PI_Main_PI_MainIDContains = value; return this; } public String getPiMainPiMainIDLike() { return PI_Main_PI_MainIDLike; } public PI_NotesQuery setPiMainPiMainIDLike(String value) { this.PI_Main_PI_MainIDLike = value; return this; } public ArrayList getPiMainPiMainIDBetween() { return PI_Main_PI_MainIDBetween; } public PI_NotesQuery setPiMainPiMainIDBetween(ArrayList value) { this.PI_Main_PI_MainIDBetween = value; return this; } public ArrayList getPiMainPiMainIDIn() { return PI_Main_PI_MainIDIn; } public PI_NotesQuery setPiMainPiMainIDIn(ArrayList value) { this.PI_Main_PI_MainIDIn = value; return this; } public String getNoteTypeID() { return NoteTypeID; } public PI_NotesQuery setNoteTypeID(String value) { this.NoteTypeID = value; return this; } public String getNoteTypeIDStartsWith() { return NoteTypeIDStartsWith; } public PI_NotesQuery setNoteTypeIDStartsWith(String value) { this.NoteTypeIDStartsWith = value; return this; } public String getNoteTypeIDEndsWith() { return NoteTypeIDEndsWith; } public PI_NotesQuery setNoteTypeIDEndsWith(String value) { this.NoteTypeIDEndsWith = value; return this; } public String getNoteTypeIDContains() { return NoteTypeIDContains; } public PI_NotesQuery setNoteTypeIDContains(String value) { this.NoteTypeIDContains = value; return this; } public String getNoteTypeIDLike() { return NoteTypeIDLike; } public PI_NotesQuery setNoteTypeIDLike(String value) { this.NoteTypeIDLike = value; return this; } public ArrayList getNoteTypeIDBetween() { return NoteTypeIDBetween; } public PI_NotesQuery setNoteTypeIDBetween(ArrayList value) { this.NoteTypeIDBetween = value; return this; } public ArrayList getNoteTypeIDIn() { return NoteTypeIDIn; } public PI_NotesQuery setNoteTypeIDIn(ArrayList value) { this.NoteTypeIDIn = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public PI_NotesQuery setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getLastSavedDateTimeGreaterThanOrEqualTo() { return LastSavedDateTimeGreaterThanOrEqualTo; } public PI_NotesQuery setLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.LastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeGreaterThan() { return LastSavedDateTimeGreaterThan; } public PI_NotesQuery setLastSavedDateTimeGreaterThan(Date value) { this.LastSavedDateTimeGreaterThan = value; return this; } public Date getLastSavedDateTimeLessThan() { return LastSavedDateTimeLessThan; } public PI_NotesQuery setLastSavedDateTimeLessThan(Date value) { this.LastSavedDateTimeLessThan = value; return this; } public Date getLastSavedDateTimeLessThanOrEqualTo() { return LastSavedDateTimeLessThanOrEqualTo; } public PI_NotesQuery setLastSavedDateTimeLessThanOrEqualTo(Date value) { this.LastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeNotEqualTo() { return LastSavedDateTimeNotEqualTo; } public PI_NotesQuery setLastSavedDateTimeNotEqualTo(Date value) { this.LastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getLastSavedDateTimeBetween() { return LastSavedDateTimeBetween; } public PI_NotesQuery setLastSavedDateTimeBetween(ArrayList value) { this.LastSavedDateTimeBetween = value; return this; } public ArrayList getLastSavedDateTimeIn() { return LastSavedDateTimeIn; } public PI_NotesQuery setLastSavedDateTimeIn(ArrayList value) { this.LastSavedDateTimeIn = value; return this; } public String getLastSavedByStaffID() { return LastSavedByStaffID; } public PI_NotesQuery setLastSavedByStaffID(String value) { this.LastSavedByStaffID = value; return this; } public String getLastSavedByStaffIDStartsWith() { return LastSavedByStaffIDStartsWith; } public PI_NotesQuery setLastSavedByStaffIDStartsWith(String value) { this.LastSavedByStaffIDStartsWith = value; return this; } public String getLastSavedByStaffIDEndsWith() { return LastSavedByStaffIDEndsWith; } public PI_NotesQuery setLastSavedByStaffIDEndsWith(String value) { this.LastSavedByStaffIDEndsWith = value; return this; } public String getLastSavedByStaffIDContains() { return LastSavedByStaffIDContains; } public PI_NotesQuery setLastSavedByStaffIDContains(String value) { this.LastSavedByStaffIDContains = value; return this; } public String getLastSavedByStaffIDLike() { return LastSavedByStaffIDLike; } public PI_NotesQuery setLastSavedByStaffIDLike(String value) { this.LastSavedByStaffIDLike = value; return this; } public ArrayList getLastSavedByStaffIDBetween() { return LastSavedByStaffIDBetween; } public PI_NotesQuery setLastSavedByStaffIDBetween(ArrayList value) { this.LastSavedByStaffIDBetween = value; return this; } public ArrayList getLastSavedByStaffIDIn() { return LastSavedByStaffIDIn; } public PI_NotesQuery setLastSavedByStaffIDIn(ArrayList value) { this.LastSavedByStaffIDIn = value; return this; } public String getNoteText() { return NoteText; } public PI_NotesQuery setNoteText(String value) { this.NoteText = value; return this; } public String getNoteTextStartsWith() { return NoteTextStartsWith; } public PI_NotesQuery setNoteTextStartsWith(String value) { this.NoteTextStartsWith = value; return this; } public String getNoteTextEndsWith() { return NoteTextEndsWith; } public PI_NotesQuery setNoteTextEndsWith(String value) { this.NoteTextEndsWith = value; return this; } public String getNoteTextContains() { return NoteTextContains; } public PI_NotesQuery setNoteTextContains(String value) { this.NoteTextContains = value; return this; } public String getNoteTextLike() { return NoteTextLike; } public PI_NotesQuery setNoteTextLike(String value) { this.NoteTextLike = value; return this; } public ArrayList getNoteTextBetween() { return NoteTextBetween; } public PI_NotesQuery setNoteTextBetween(ArrayList value) { this.NoteTextBetween = value; return this; } public ArrayList getNoteTextIn() { return NoteTextIn; } public PI_NotesQuery setNoteTextIn(ArrayList value) { this.NoteTextIn = value; return this; } public Integer getItemNo() { return ItemNo; } public PI_NotesQuery setItemNo(Integer value) { this.ItemNo = value; return this; } public Integer getItemNoGreaterThanOrEqualTo() { return ItemNoGreaterThanOrEqualTo; } public PI_NotesQuery setItemNoGreaterThanOrEqualTo(Integer value) { this.ItemNoGreaterThanOrEqualTo = value; return this; } public Integer getItemNoGreaterThan() { return ItemNoGreaterThan; } public PI_NotesQuery setItemNoGreaterThan(Integer value) { this.ItemNoGreaterThan = value; return this; } public Integer getItemNoLessThan() { return ItemNoLessThan; } public PI_NotesQuery setItemNoLessThan(Integer value) { this.ItemNoLessThan = value; return this; } public Integer getItemNoLessThanOrEqualTo() { return ItemNoLessThanOrEqualTo; } public PI_NotesQuery setItemNoLessThanOrEqualTo(Integer value) { this.ItemNoLessThanOrEqualTo = value; return this; } public Integer getItemNoNotEqualTo() { return ItemNoNotEqualTo; } public PI_NotesQuery setItemNoNotEqualTo(Integer value) { this.ItemNoNotEqualTo = value; return this; } public ArrayList getItemNoBetween() { return ItemNoBetween; } public PI_NotesQuery setItemNoBetween(ArrayList value) { this.ItemNoBetween = value; return this; } public ArrayList getItemNoIn() { return ItemNoIn; } public PI_NotesQuery setItemNoIn(ArrayList value) { this.ItemNoIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class PI_ReceiptsQuery extends QueryDb implements IReturn> { public String PI_ReceiptsID = null; public String PI_ReceiptsIDStartsWith = null; public String PI_ReceiptsIDEndsWith = null; public String PI_ReceiptsIDContains = null; public String PI_ReceiptsIDLike = null; public ArrayList PI_ReceiptsIDBetween = null; public ArrayList PI_ReceiptsIDIn = null; public String PI_MainID = null; public String PI_MainIDStartsWith = null; public String PI_MainIDEndsWith = null; public String PI_MainIDContains = null; public String PI_MainIDLike = null; public ArrayList PI_MainIDBetween = null; public ArrayList PI_MainIDIn = null; public String RE_MainID = null; public String RE_MainIDStartsWith = null; public String RE_MainIDEndsWith = null; public String RE_MainIDContains = null; public String RE_MainIDLike = null; public ArrayList RE_MainIDBetween = null; public ArrayList RE_MainIDIn = null; public String getPiReceiptsID() { return PI_ReceiptsID; } public PI_ReceiptsQuery setPiReceiptsID(String value) { this.PI_ReceiptsID = value; return this; } public String getPiReceiptsIDStartsWith() { return PI_ReceiptsIDStartsWith; } public PI_ReceiptsQuery setPiReceiptsIDStartsWith(String value) { this.PI_ReceiptsIDStartsWith = value; return this; } public String getPiReceiptsIDEndsWith() { return PI_ReceiptsIDEndsWith; } public PI_ReceiptsQuery setPiReceiptsIDEndsWith(String value) { this.PI_ReceiptsIDEndsWith = value; return this; } public String getPiReceiptsIDContains() { return PI_ReceiptsIDContains; } public PI_ReceiptsQuery setPiReceiptsIDContains(String value) { this.PI_ReceiptsIDContains = value; return this; } public String getPiReceiptsIDLike() { return PI_ReceiptsIDLike; } public PI_ReceiptsQuery setPiReceiptsIDLike(String value) { this.PI_ReceiptsIDLike = value; return this; } public ArrayList getPiReceiptsIDBetween() { return PI_ReceiptsIDBetween; } public PI_ReceiptsQuery setPiReceiptsIDBetween(ArrayList value) { this.PI_ReceiptsIDBetween = value; return this; } public ArrayList getPiReceiptsIDIn() { return PI_ReceiptsIDIn; } public PI_ReceiptsQuery setPiReceiptsIDIn(ArrayList value) { this.PI_ReceiptsIDIn = value; return this; } public String getPiMainID() { return PI_MainID; } public PI_ReceiptsQuery setPiMainID(String value) { this.PI_MainID = value; return this; } public String getPiMainIDStartsWith() { return PI_MainIDStartsWith; } public PI_ReceiptsQuery setPiMainIDStartsWith(String value) { this.PI_MainIDStartsWith = value; return this; } public String getPiMainIDEndsWith() { return PI_MainIDEndsWith; } public PI_ReceiptsQuery setPiMainIDEndsWith(String value) { this.PI_MainIDEndsWith = value; return this; } public String getPiMainIDContains() { return PI_MainIDContains; } public PI_ReceiptsQuery setPiMainIDContains(String value) { this.PI_MainIDContains = value; return this; } public String getPiMainIDLike() { return PI_MainIDLike; } public PI_ReceiptsQuery setPiMainIDLike(String value) { this.PI_MainIDLike = value; return this; } public ArrayList getPiMainIDBetween() { return PI_MainIDBetween; } public PI_ReceiptsQuery setPiMainIDBetween(ArrayList value) { this.PI_MainIDBetween = value; return this; } public ArrayList getPiMainIDIn() { return PI_MainIDIn; } public PI_ReceiptsQuery setPiMainIDIn(ArrayList value) { this.PI_MainIDIn = value; return this; } public String getReMainID() { return RE_MainID; } public PI_ReceiptsQuery setReMainID(String value) { this.RE_MainID = value; return this; } public String getReMainIDStartsWith() { return RE_MainIDStartsWith; } public PI_ReceiptsQuery setReMainIDStartsWith(String value) { this.RE_MainIDStartsWith = value; return this; } public String getReMainIDEndsWith() { return RE_MainIDEndsWith; } public PI_ReceiptsQuery setReMainIDEndsWith(String value) { this.RE_MainIDEndsWith = value; return this; } public String getReMainIDContains() { return RE_MainIDContains; } public PI_ReceiptsQuery setReMainIDContains(String value) { this.RE_MainIDContains = value; return this; } public String getReMainIDLike() { return RE_MainIDLike; } public PI_ReceiptsQuery setReMainIDLike(String value) { this.RE_MainIDLike = value; return this; } public ArrayList getReMainIDBetween() { return RE_MainIDBetween; } public PI_ReceiptsQuery setReMainIDBetween(ArrayList value) { this.RE_MainIDBetween = value; return this; } public ArrayList getReMainIDIn() { return RE_MainIDIn; } public PI_ReceiptsQuery setReMainIDIn(ArrayList value) { this.RE_MainIDIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class PO_BatchHeaderQuery extends QueryDb implements IReturn> { public String RecID = null; public String RecIDStartsWith = null; public String RecIDEndsWith = null; public String RecIDContains = null; public String RecIDLike = null; public ArrayList RecIDBetween = null; public ArrayList RecIDIn = null; public String BatchNo = null; public String BatchNoStartsWith = null; public String BatchNoEndsWith = null; public String BatchNoContains = null; public String BatchNoLike = null; public ArrayList BatchNoBetween = null; public ArrayList BatchNoIn = null; public String IN_LogicalID = null; public String IN_LogicalIDStartsWith = null; public String IN_LogicalIDEndsWith = null; public String IN_LogicalIDContains = null; public String IN_LogicalIDLike = null; public ArrayList IN_LogicalIDBetween = null; public ArrayList IN_LogicalIDIn = null; public String CreatedByStaffID = null; public String CreatedByStaffIDStartsWith = null; public String CreatedByStaffIDEndsWith = null; public String CreatedByStaffIDContains = null; public String CreatedByStaffIDLike = null; public ArrayList CreatedByStaffIDBetween = null; public ArrayList CreatedByStaffIDIn = null; public Date CreatedDateTime = null; public Date CreatedDateTimeGreaterThanOrEqualTo = null; public Date CreatedDateTimeGreaterThan = null; public Date CreatedDateTimeLessThan = null; public Date CreatedDateTimeLessThanOrEqualTo = null; public Date CreatedDateTimeNotEqualTo = null; public ArrayList CreatedDateTimeBetween = null; public ArrayList CreatedDateTimeIn = null; public String LastModifiedByStaffID = null; public String LastModifiedByStaffIDStartsWith = null; public String LastModifiedByStaffIDEndsWith = null; public String LastModifiedByStaffIDContains = null; public String LastModifiedByStaffIDLike = null; public ArrayList LastModifiedByStaffIDBetween = null; public ArrayList LastModifiedByStaffIDIn = null; public Date LastSavedDateTime = null; public Date LastSavedDateTimeGreaterThanOrEqualTo = null; public Date LastSavedDateTimeGreaterThan = null; public Date LastSavedDateTimeLessThan = null; public Date LastSavedDateTimeLessThanOrEqualTo = null; public Date LastSavedDateTimeNotEqualTo = null; public ArrayList LastSavedDateTimeBetween = null; public ArrayList LastSavedDateTimeIn = null; public Short BatchStatus = null; public Short BatchStatusGreaterThanOrEqualTo = null; public Short BatchStatusGreaterThan = null; public Short BatchStatusLessThan = null; public Short BatchStatusLessThanOrEqualTo = null; public Short BatchStatusNotEqualTo = null; public ArrayList BatchStatusBetween = null; public ArrayList BatchStatusIn = null; public Short ReOrderMonth = null; public Short ReOrderMonthGreaterThanOrEqualTo = null; public Short ReOrderMonthGreaterThan = null; public Short ReOrderMonthLessThan = null; public Short ReOrderMonthLessThanOrEqualTo = null; public Short ReOrderMonthNotEqualTo = null; public ArrayList ReOrderMonthBetween = null; public ArrayList ReOrderMonthIn = null; public Boolean IncludeDefaultSuppliersOnly = null; public String getRecID() { return RecID; } public PO_BatchHeaderQuery setRecID(String value) { this.RecID = value; return this; } public String getRecIDStartsWith() { return RecIDStartsWith; } public PO_BatchHeaderQuery setRecIDStartsWith(String value) { this.RecIDStartsWith = value; return this; } public String getRecIDEndsWith() { return RecIDEndsWith; } public PO_BatchHeaderQuery setRecIDEndsWith(String value) { this.RecIDEndsWith = value; return this; } public String getRecIDContains() { return RecIDContains; } public PO_BatchHeaderQuery setRecIDContains(String value) { this.RecIDContains = value; return this; } public String getRecIDLike() { return RecIDLike; } public PO_BatchHeaderQuery setRecIDLike(String value) { this.RecIDLike = value; return this; } public ArrayList getRecIDBetween() { return RecIDBetween; } public PO_BatchHeaderQuery setRecIDBetween(ArrayList value) { this.RecIDBetween = value; return this; } public ArrayList getRecIDIn() { return RecIDIn; } public PO_BatchHeaderQuery setRecIDIn(ArrayList value) { this.RecIDIn = value; return this; } public String getBatchNo() { return BatchNo; } public PO_BatchHeaderQuery setBatchNo(String value) { this.BatchNo = value; return this; } public String getBatchNoStartsWith() { return BatchNoStartsWith; } public PO_BatchHeaderQuery setBatchNoStartsWith(String value) { this.BatchNoStartsWith = value; return this; } public String getBatchNoEndsWith() { return BatchNoEndsWith; } public PO_BatchHeaderQuery setBatchNoEndsWith(String value) { this.BatchNoEndsWith = value; return this; } public String getBatchNoContains() { return BatchNoContains; } public PO_BatchHeaderQuery setBatchNoContains(String value) { this.BatchNoContains = value; return this; } public String getBatchNoLike() { return BatchNoLike; } public PO_BatchHeaderQuery setBatchNoLike(String value) { this.BatchNoLike = value; return this; } public ArrayList getBatchNoBetween() { return BatchNoBetween; } public PO_BatchHeaderQuery setBatchNoBetween(ArrayList value) { this.BatchNoBetween = value; return this; } public ArrayList getBatchNoIn() { return BatchNoIn; } public PO_BatchHeaderQuery setBatchNoIn(ArrayList value) { this.BatchNoIn = value; return this; } public String getInLogicalID() { return IN_LogicalID; } public PO_BatchHeaderQuery setInLogicalID(String value) { this.IN_LogicalID = value; return this; } public String getInLogicalIDStartsWith() { return IN_LogicalIDStartsWith; } public PO_BatchHeaderQuery setInLogicalIDStartsWith(String value) { this.IN_LogicalIDStartsWith = value; return this; } public String getInLogicalIDEndsWith() { return IN_LogicalIDEndsWith; } public PO_BatchHeaderQuery setInLogicalIDEndsWith(String value) { this.IN_LogicalIDEndsWith = value; return this; } public String getInLogicalIDContains() { return IN_LogicalIDContains; } public PO_BatchHeaderQuery setInLogicalIDContains(String value) { this.IN_LogicalIDContains = value; return this; } public String getInLogicalIDLike() { return IN_LogicalIDLike; } public PO_BatchHeaderQuery setInLogicalIDLike(String value) { this.IN_LogicalIDLike = value; return this; } public ArrayList getInLogicalIDBetween() { return IN_LogicalIDBetween; } public PO_BatchHeaderQuery setInLogicalIDBetween(ArrayList value) { this.IN_LogicalIDBetween = value; return this; } public ArrayList getInLogicalIDIn() { return IN_LogicalIDIn; } public PO_BatchHeaderQuery setInLogicalIDIn(ArrayList value) { this.IN_LogicalIDIn = value; return this; } public String getCreatedByStaffID() { return CreatedByStaffID; } public PO_BatchHeaderQuery setCreatedByStaffID(String value) { this.CreatedByStaffID = value; return this; } public String getCreatedByStaffIDStartsWith() { return CreatedByStaffIDStartsWith; } public PO_BatchHeaderQuery setCreatedByStaffIDStartsWith(String value) { this.CreatedByStaffIDStartsWith = value; return this; } public String getCreatedByStaffIDEndsWith() { return CreatedByStaffIDEndsWith; } public PO_BatchHeaderQuery setCreatedByStaffIDEndsWith(String value) { this.CreatedByStaffIDEndsWith = value; return this; } public String getCreatedByStaffIDContains() { return CreatedByStaffIDContains; } public PO_BatchHeaderQuery setCreatedByStaffIDContains(String value) { this.CreatedByStaffIDContains = value; return this; } public String getCreatedByStaffIDLike() { return CreatedByStaffIDLike; } public PO_BatchHeaderQuery setCreatedByStaffIDLike(String value) { this.CreatedByStaffIDLike = value; return this; } public ArrayList getCreatedByStaffIDBetween() { return CreatedByStaffIDBetween; } public PO_BatchHeaderQuery setCreatedByStaffIDBetween(ArrayList value) { this.CreatedByStaffIDBetween = value; return this; } public ArrayList getCreatedByStaffIDIn() { return CreatedByStaffIDIn; } public PO_BatchHeaderQuery setCreatedByStaffIDIn(ArrayList value) { this.CreatedByStaffIDIn = value; return this; } public Date getCreatedDateTime() { return CreatedDateTime; } public PO_BatchHeaderQuery setCreatedDateTime(Date value) { this.CreatedDateTime = value; return this; } public Date getCreatedDateTimeGreaterThanOrEqualTo() { return CreatedDateTimeGreaterThanOrEqualTo; } public PO_BatchHeaderQuery setCreatedDateTimeGreaterThanOrEqualTo(Date value) { this.CreatedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getCreatedDateTimeGreaterThan() { return CreatedDateTimeGreaterThan; } public PO_BatchHeaderQuery setCreatedDateTimeGreaterThan(Date value) { this.CreatedDateTimeGreaterThan = value; return this; } public Date getCreatedDateTimeLessThan() { return CreatedDateTimeLessThan; } public PO_BatchHeaderQuery setCreatedDateTimeLessThan(Date value) { this.CreatedDateTimeLessThan = value; return this; } public Date getCreatedDateTimeLessThanOrEqualTo() { return CreatedDateTimeLessThanOrEqualTo; } public PO_BatchHeaderQuery setCreatedDateTimeLessThanOrEqualTo(Date value) { this.CreatedDateTimeLessThanOrEqualTo = value; return this; } public Date getCreatedDateTimeNotEqualTo() { return CreatedDateTimeNotEqualTo; } public PO_BatchHeaderQuery setCreatedDateTimeNotEqualTo(Date value) { this.CreatedDateTimeNotEqualTo = value; return this; } public ArrayList getCreatedDateTimeBetween() { return CreatedDateTimeBetween; } public PO_BatchHeaderQuery setCreatedDateTimeBetween(ArrayList value) { this.CreatedDateTimeBetween = value; return this; } public ArrayList getCreatedDateTimeIn() { return CreatedDateTimeIn; } public PO_BatchHeaderQuery setCreatedDateTimeIn(ArrayList value) { this.CreatedDateTimeIn = value; return this; } public String getLastModifiedByStaffID() { return LastModifiedByStaffID; } public PO_BatchHeaderQuery setLastModifiedByStaffID(String value) { this.LastModifiedByStaffID = value; return this; } public String getLastModifiedByStaffIDStartsWith() { return LastModifiedByStaffIDStartsWith; } public PO_BatchHeaderQuery setLastModifiedByStaffIDStartsWith(String value) { this.LastModifiedByStaffIDStartsWith = value; return this; } public String getLastModifiedByStaffIDEndsWith() { return LastModifiedByStaffIDEndsWith; } public PO_BatchHeaderQuery setLastModifiedByStaffIDEndsWith(String value) { this.LastModifiedByStaffIDEndsWith = value; return this; } public String getLastModifiedByStaffIDContains() { return LastModifiedByStaffIDContains; } public PO_BatchHeaderQuery setLastModifiedByStaffIDContains(String value) { this.LastModifiedByStaffIDContains = value; return this; } public String getLastModifiedByStaffIDLike() { return LastModifiedByStaffIDLike; } public PO_BatchHeaderQuery setLastModifiedByStaffIDLike(String value) { this.LastModifiedByStaffIDLike = value; return this; } public ArrayList getLastModifiedByStaffIDBetween() { return LastModifiedByStaffIDBetween; } public PO_BatchHeaderQuery setLastModifiedByStaffIDBetween(ArrayList value) { this.LastModifiedByStaffIDBetween = value; return this; } public ArrayList getLastModifiedByStaffIDIn() { return LastModifiedByStaffIDIn; } public PO_BatchHeaderQuery setLastModifiedByStaffIDIn(ArrayList value) { this.LastModifiedByStaffIDIn = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public PO_BatchHeaderQuery setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getLastSavedDateTimeGreaterThanOrEqualTo() { return LastSavedDateTimeGreaterThanOrEqualTo; } public PO_BatchHeaderQuery setLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.LastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeGreaterThan() { return LastSavedDateTimeGreaterThan; } public PO_BatchHeaderQuery setLastSavedDateTimeGreaterThan(Date value) { this.LastSavedDateTimeGreaterThan = value; return this; } public Date getLastSavedDateTimeLessThan() { return LastSavedDateTimeLessThan; } public PO_BatchHeaderQuery setLastSavedDateTimeLessThan(Date value) { this.LastSavedDateTimeLessThan = value; return this; } public Date getLastSavedDateTimeLessThanOrEqualTo() { return LastSavedDateTimeLessThanOrEqualTo; } public PO_BatchHeaderQuery setLastSavedDateTimeLessThanOrEqualTo(Date value) { this.LastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeNotEqualTo() { return LastSavedDateTimeNotEqualTo; } public PO_BatchHeaderQuery setLastSavedDateTimeNotEqualTo(Date value) { this.LastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getLastSavedDateTimeBetween() { return LastSavedDateTimeBetween; } public PO_BatchHeaderQuery setLastSavedDateTimeBetween(ArrayList value) { this.LastSavedDateTimeBetween = value; return this; } public ArrayList getLastSavedDateTimeIn() { return LastSavedDateTimeIn; } public PO_BatchHeaderQuery setLastSavedDateTimeIn(ArrayList value) { this.LastSavedDateTimeIn = value; return this; } public Short getBatchStatus() { return BatchStatus; } public PO_BatchHeaderQuery setBatchStatus(Short value) { this.BatchStatus = value; return this; } public Short getBatchStatusGreaterThanOrEqualTo() { return BatchStatusGreaterThanOrEqualTo; } public PO_BatchHeaderQuery setBatchStatusGreaterThanOrEqualTo(Short value) { this.BatchStatusGreaterThanOrEqualTo = value; return this; } public Short getBatchStatusGreaterThan() { return BatchStatusGreaterThan; } public PO_BatchHeaderQuery setBatchStatusGreaterThan(Short value) { this.BatchStatusGreaterThan = value; return this; } public Short getBatchStatusLessThan() { return BatchStatusLessThan; } public PO_BatchHeaderQuery setBatchStatusLessThan(Short value) { this.BatchStatusLessThan = value; return this; } public Short getBatchStatusLessThanOrEqualTo() { return BatchStatusLessThanOrEqualTo; } public PO_BatchHeaderQuery setBatchStatusLessThanOrEqualTo(Short value) { this.BatchStatusLessThanOrEqualTo = value; return this; } public Short getBatchStatusNotEqualTo() { return BatchStatusNotEqualTo; } public PO_BatchHeaderQuery setBatchStatusNotEqualTo(Short value) { this.BatchStatusNotEqualTo = value; return this; } public ArrayList getBatchStatusBetween() { return BatchStatusBetween; } public PO_BatchHeaderQuery setBatchStatusBetween(ArrayList value) { this.BatchStatusBetween = value; return this; } public ArrayList getBatchStatusIn() { return BatchStatusIn; } public PO_BatchHeaderQuery setBatchStatusIn(ArrayList value) { this.BatchStatusIn = value; return this; } public Short getReOrderMonth() { return ReOrderMonth; } public PO_BatchHeaderQuery setReOrderMonth(Short value) { this.ReOrderMonth = value; return this; } public Short getReOrderMonthGreaterThanOrEqualTo() { return ReOrderMonthGreaterThanOrEqualTo; } public PO_BatchHeaderQuery setReOrderMonthGreaterThanOrEqualTo(Short value) { this.ReOrderMonthGreaterThanOrEqualTo = value; return this; } public Short getReOrderMonthGreaterThan() { return ReOrderMonthGreaterThan; } public PO_BatchHeaderQuery setReOrderMonthGreaterThan(Short value) { this.ReOrderMonthGreaterThan = value; return this; } public Short getReOrderMonthLessThan() { return ReOrderMonthLessThan; } public PO_BatchHeaderQuery setReOrderMonthLessThan(Short value) { this.ReOrderMonthLessThan = value; return this; } public Short getReOrderMonthLessThanOrEqualTo() { return ReOrderMonthLessThanOrEqualTo; } public PO_BatchHeaderQuery setReOrderMonthLessThanOrEqualTo(Short value) { this.ReOrderMonthLessThanOrEqualTo = value; return this; } public Short getReOrderMonthNotEqualTo() { return ReOrderMonthNotEqualTo; } public PO_BatchHeaderQuery setReOrderMonthNotEqualTo(Short value) { this.ReOrderMonthNotEqualTo = value; return this; } public ArrayList getReOrderMonthBetween() { return ReOrderMonthBetween; } public PO_BatchHeaderQuery setReOrderMonthBetween(ArrayList value) { this.ReOrderMonthBetween = value; return this; } public ArrayList getReOrderMonthIn() { return ReOrderMonthIn; } public PO_BatchHeaderQuery setReOrderMonthIn(ArrayList value) { this.ReOrderMonthIn = value; return this; } public Boolean isIncludeDefaultSuppliersOnly() { return IncludeDefaultSuppliersOnly; } public PO_BatchHeaderQuery setIncludeDefaultSuppliersOnly(Boolean value) { this.IncludeDefaultSuppliersOnly = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class PO_BatchPurchaseOrderLinesQuery extends QueryDb implements IReturn> { public String RecID = null; public String RecIDStartsWith = null; public String RecIDEndsWith = null; public String RecIDContains = null; public String RecIDLike = null; public ArrayList RecIDBetween = null; public ArrayList RecIDIn = null; public String PO_BatchPurchaseOrders_RecID = null; public String PO_BatchPurchaseOrders_RecIDStartsWith = null; public String PO_BatchPurchaseOrders_RecIDEndsWith = null; public String PO_BatchPurchaseOrders_RecIDContains = null; public String PO_BatchPurchaseOrders_RecIDLike = null; public ArrayList PO_BatchPurchaseOrders_RecIDBetween = null; public ArrayList PO_BatchPurchaseOrders_RecIDIn = null; public Integer ItemNo = null; public Integer ItemNoGreaterThanOrEqualTo = null; public Integer ItemNoGreaterThan = null; public Integer ItemNoLessThan = null; public Integer ItemNoLessThanOrEqualTo = null; public Integer ItemNoNotEqualTo = null; public ArrayList ItemNoBetween = null; public ArrayList ItemNoIn = null; public String IN_Main_RecID = null; public String IN_Main_RecIDStartsWith = null; public String IN_Main_RecIDEndsWith = null; public String IN_Main_RecIDContains = null; public String IN_Main_RecIDLike = null; public ArrayList IN_Main_RecIDBetween = null; public ArrayList IN_Main_RecIDIn = null; public BigDecimal UnitCost = null; public BigDecimal UnitCostGreaterThanOrEqualTo = null; public BigDecimal UnitCostGreaterThan = null; public BigDecimal UnitCostLessThan = null; public BigDecimal UnitCostLessThanOrEqualTo = null; public BigDecimal UnitCostNotEqualTo = null; public ArrayList UnitCostBetween = null; public ArrayList UnitCostIn = null; public BigDecimal FXUnitCost = null; public BigDecimal FXUnitCostGreaterThanOrEqualTo = null; public BigDecimal FXUnitCostGreaterThan = null; public BigDecimal FXUnitCostLessThan = null; public BigDecimal FXUnitCostLessThanOrEqualTo = null; public BigDecimal FXUnitCostNotEqualTo = null; public ArrayList FXUnitCostBetween = null; public ArrayList FXUnitCostIn = null; public BigDecimal SuggestedOrderQuantity = null; public BigDecimal SuggestedOrderQuantityGreaterThanOrEqualTo = null; public BigDecimal SuggestedOrderQuantityGreaterThan = null; public BigDecimal SuggestedOrderQuantityLessThan = null; public BigDecimal SuggestedOrderQuantityLessThanOrEqualTo = null; public BigDecimal SuggestedOrderQuantityNotEqualTo = null; public ArrayList SuggestedOrderQuantityBetween = null; public ArrayList SuggestedOrderQuantityIn = null; public BigDecimal OrderQuantity = null; public BigDecimal OrderQuantityGreaterThanOrEqualTo = null; public BigDecimal OrderQuantityGreaterThan = null; public BigDecimal OrderQuantityLessThan = null; public BigDecimal OrderQuantityLessThanOrEqualTo = null; public BigDecimal OrderQuantityNotEqualTo = null; public ArrayList OrderQuantityBetween = null; public ArrayList OrderQuantityIn = null; public BigDecimal LineCost = null; public BigDecimal LineCostGreaterThanOrEqualTo = null; public BigDecimal LineCostGreaterThan = null; public BigDecimal LineCostLessThan = null; public BigDecimal LineCostLessThanOrEqualTo = null; public BigDecimal LineCostNotEqualTo = null; public ArrayList LineCostBetween = null; public ArrayList LineCostIn = null; public BigDecimal FXLineCost = null; public BigDecimal FXLineCostGreaterThanOrEqualTo = null; public BigDecimal FXLineCostGreaterThan = null; public BigDecimal FXLineCostLessThan = null; public BigDecimal FXLineCostLessThanOrEqualTo = null; public BigDecimal FXLineCostNotEqualTo = null; public ArrayList FXLineCostBetween = null; public ArrayList FXLineCostIn = null; public BigDecimal QuantitySOH = null; public BigDecimal QuantitySOHGreaterThanOrEqualTo = null; public BigDecimal QuantitySOHGreaterThan = null; public BigDecimal QuantitySOHLessThan = null; public BigDecimal QuantitySOHLessThanOrEqualTo = null; public BigDecimal QuantitySOHNotEqualTo = null; public ArrayList QuantitySOHBetween = null; public ArrayList QuantitySOHIn = null; public BigDecimal QuantityMinSOH = null; public BigDecimal QuantityMinSOHGreaterThanOrEqualTo = null; public BigDecimal QuantityMinSOHGreaterThan = null; public BigDecimal QuantityMinSOHLessThan = null; public BigDecimal QuantityMinSOHLessThanOrEqualTo = null; public BigDecimal QuantityMinSOHNotEqualTo = null; public ArrayList QuantityMinSOHBetween = null; public ArrayList QuantityMinSOHIn = null; public BigDecimal QuantityOnPO = null; public BigDecimal QuantityOnPOGreaterThanOrEqualTo = null; public BigDecimal QuantityOnPOGreaterThan = null; public BigDecimal QuantityOnPOLessThan = null; public BigDecimal QuantityOnPOLessThanOrEqualTo = null; public BigDecimal QuantityOnPONotEqualTo = null; public ArrayList QuantityOnPOBetween = null; public ArrayList QuantityOnPOIn = null; public BigDecimal QuantityOnBO = null; public BigDecimal QuantityOnBOGreaterThanOrEqualTo = null; public BigDecimal QuantityOnBOGreaterThan = null; public BigDecimal QuantityOnBOLessThan = null; public BigDecimal QuantityOnBOLessThanOrEqualTo = null; public BigDecimal QuantityOnBONotEqualTo = null; public ArrayList QuantityOnBOBetween = null; public ArrayList QuantityOnBOIn = null; public BigDecimal QuantitySalesForecast = null; public BigDecimal QuantitySalesForecastGreaterThanOrEqualTo = null; public BigDecimal QuantitySalesForecastGreaterThan = null; public BigDecimal QuantitySalesForecastLessThan = null; public BigDecimal QuantitySalesForecastLessThanOrEqualTo = null; public BigDecimal QuantitySalesForecastNotEqualTo = null; public ArrayList QuantitySalesForecastBetween = null; public ArrayList QuantitySalesForecastIn = null; public BigDecimal QuantityLastYearPurchases = null; public BigDecimal QuantityLastYearPurchasesGreaterThanOrEqualTo = null; public BigDecimal QuantityLastYearPurchasesGreaterThan = null; public BigDecimal QuantityLastYearPurchasesLessThan = null; public BigDecimal QuantityLastYearPurchasesLessThanOrEqualTo = null; public BigDecimal QuantityLastYearPurchasesNotEqualTo = null; public ArrayList QuantityLastYearPurchasesBetween = null; public ArrayList QuantityLastYearPurchasesIn = null; public BigDecimal QuantityLastYearSales = null; public BigDecimal QuantityLastYearSalesGreaterThanOrEqualTo = null; public BigDecimal QuantityLastYearSalesGreaterThan = null; public BigDecimal QuantityLastYearSalesLessThan = null; public BigDecimal QuantityLastYearSalesLessThanOrEqualTo = null; public BigDecimal QuantityLastYearSalesNotEqualTo = null; public ArrayList QuantityLastYearSalesBetween = null; public ArrayList QuantityLastYearSalesIn = null; public String PO_Lines_RecID = null; public String PO_Lines_RecIDStartsWith = null; public String PO_Lines_RecIDEndsWith = null; public String PO_Lines_RecIDContains = null; public String PO_Lines_RecIDLike = null; public ArrayList PO_Lines_RecIDBetween = null; public ArrayList PO_Lines_RecIDIn = null; public BigDecimal UnitCubic = null; public BigDecimal UnitCubicGreaterThanOrEqualTo = null; public BigDecimal UnitCubicGreaterThan = null; public BigDecimal UnitCubicLessThan = null; public BigDecimal UnitCubicLessThanOrEqualTo = null; public BigDecimal UnitCubicNotEqualTo = null; public ArrayList UnitCubicBetween = null; public ArrayList UnitCubicIn = null; public BigDecimal UnitWeight = null; public BigDecimal UnitWeightGreaterThanOrEqualTo = null; public BigDecimal UnitWeightGreaterThan = null; public BigDecimal UnitWeightLessThan = null; public BigDecimal UnitWeightLessThanOrEqualTo = null; public BigDecimal UnitWeightNotEqualTo = null; public ArrayList UnitWeightBetween = null; public ArrayList UnitWeightIn = null; public BigDecimal LineCubic = null; public BigDecimal LineCubicGreaterThanOrEqualTo = null; public BigDecimal LineCubicGreaterThan = null; public BigDecimal LineCubicLessThan = null; public BigDecimal LineCubicLessThanOrEqualTo = null; public BigDecimal LineCubicNotEqualTo = null; public ArrayList LineCubicBetween = null; public ArrayList LineCubicIn = null; public BigDecimal LineWeight = null; public BigDecimal LineWeightGreaterThanOrEqualTo = null; public BigDecimal LineWeightGreaterThan = null; public BigDecimal LineWeightLessThan = null; public BigDecimal LineWeightLessThanOrEqualTo = null; public BigDecimal LineWeightNotEqualTo = null; public ArrayList LineWeightBetween = null; public ArrayList LineWeightIn = null; public Integer DeliveryDays = null; public Integer DeliveryDaysGreaterThanOrEqualTo = null; public Integer DeliveryDaysGreaterThan = null; public Integer DeliveryDaysLessThan = null; public Integer DeliveryDaysLessThanOrEqualTo = null; public Integer DeliveryDaysNotEqualTo = null; public ArrayList DeliveryDaysBetween = null; public ArrayList DeliveryDaysIn = null; public BigDecimal OrderUnits = null; public BigDecimal OrderUnitsGreaterThanOrEqualTo = null; public BigDecimal OrderUnitsGreaterThan = null; public BigDecimal OrderUnitsLessThan = null; public BigDecimal OrderUnitsLessThanOrEqualTo = null; public BigDecimal OrderUnitsNotEqualTo = null; public ArrayList OrderUnitsBetween = null; public ArrayList OrderUnitsIn = null; public ArrayList RowHash = null; public String getRecID() { return RecID; } public PO_BatchPurchaseOrderLinesQuery setRecID(String value) { this.RecID = value; return this; } public String getRecIDStartsWith() { return RecIDStartsWith; } public PO_BatchPurchaseOrderLinesQuery setRecIDStartsWith(String value) { this.RecIDStartsWith = value; return this; } public String getRecIDEndsWith() { return RecIDEndsWith; } public PO_BatchPurchaseOrderLinesQuery setRecIDEndsWith(String value) { this.RecIDEndsWith = value; return this; } public String getRecIDContains() { return RecIDContains; } public PO_BatchPurchaseOrderLinesQuery setRecIDContains(String value) { this.RecIDContains = value; return this; } public String getRecIDLike() { return RecIDLike; } public PO_BatchPurchaseOrderLinesQuery setRecIDLike(String value) { this.RecIDLike = value; return this; } public ArrayList getRecIDBetween() { return RecIDBetween; } public PO_BatchPurchaseOrderLinesQuery setRecIDBetween(ArrayList value) { this.RecIDBetween = value; return this; } public ArrayList getRecIDIn() { return RecIDIn; } public PO_BatchPurchaseOrderLinesQuery setRecIDIn(ArrayList value) { this.RecIDIn = value; return this; } public String getPoBatchPurchaseOrdersRecID() { return PO_BatchPurchaseOrders_RecID; } public PO_BatchPurchaseOrderLinesQuery setPoBatchPurchaseOrdersRecID(String value) { this.PO_BatchPurchaseOrders_RecID = value; return this; } public String getPoBatchPurchaseOrdersRecIDStartsWith() { return PO_BatchPurchaseOrders_RecIDStartsWith; } public PO_BatchPurchaseOrderLinesQuery setPoBatchPurchaseOrdersRecIDStartsWith(String value) { this.PO_BatchPurchaseOrders_RecIDStartsWith = value; return this; } public String getPoBatchPurchaseOrdersRecIDEndsWith() { return PO_BatchPurchaseOrders_RecIDEndsWith; } public PO_BatchPurchaseOrderLinesQuery setPoBatchPurchaseOrdersRecIDEndsWith(String value) { this.PO_BatchPurchaseOrders_RecIDEndsWith = value; return this; } public String getPoBatchPurchaseOrdersRecIDContains() { return PO_BatchPurchaseOrders_RecIDContains; } public PO_BatchPurchaseOrderLinesQuery setPoBatchPurchaseOrdersRecIDContains(String value) { this.PO_BatchPurchaseOrders_RecIDContains = value; return this; } public String getPoBatchPurchaseOrdersRecIDLike() { return PO_BatchPurchaseOrders_RecIDLike; } public PO_BatchPurchaseOrderLinesQuery setPoBatchPurchaseOrdersRecIDLike(String value) { this.PO_BatchPurchaseOrders_RecIDLike = value; return this; } public ArrayList getPoBatchPurchaseOrdersRecIDBetween() { return PO_BatchPurchaseOrders_RecIDBetween; } public PO_BatchPurchaseOrderLinesQuery setPoBatchPurchaseOrdersRecIDBetween(ArrayList value) { this.PO_BatchPurchaseOrders_RecIDBetween = value; return this; } public ArrayList getPoBatchPurchaseOrdersRecIDIn() { return PO_BatchPurchaseOrders_RecIDIn; } public PO_BatchPurchaseOrderLinesQuery setPoBatchPurchaseOrdersRecIDIn(ArrayList value) { this.PO_BatchPurchaseOrders_RecIDIn = value; return this; } public Integer getItemNo() { return ItemNo; } public PO_BatchPurchaseOrderLinesQuery setItemNo(Integer value) { this.ItemNo = value; return this; } public Integer getItemNoGreaterThanOrEqualTo() { return ItemNoGreaterThanOrEqualTo; } public PO_BatchPurchaseOrderLinesQuery setItemNoGreaterThanOrEqualTo(Integer value) { this.ItemNoGreaterThanOrEqualTo = value; return this; } public Integer getItemNoGreaterThan() { return ItemNoGreaterThan; } public PO_BatchPurchaseOrderLinesQuery setItemNoGreaterThan(Integer value) { this.ItemNoGreaterThan = value; return this; } public Integer getItemNoLessThan() { return ItemNoLessThan; } public PO_BatchPurchaseOrderLinesQuery setItemNoLessThan(Integer value) { this.ItemNoLessThan = value; return this; } public Integer getItemNoLessThanOrEqualTo() { return ItemNoLessThanOrEqualTo; } public PO_BatchPurchaseOrderLinesQuery setItemNoLessThanOrEqualTo(Integer value) { this.ItemNoLessThanOrEqualTo = value; return this; } public Integer getItemNoNotEqualTo() { return ItemNoNotEqualTo; } public PO_BatchPurchaseOrderLinesQuery setItemNoNotEqualTo(Integer value) { this.ItemNoNotEqualTo = value; return this; } public ArrayList getItemNoBetween() { return ItemNoBetween; } public PO_BatchPurchaseOrderLinesQuery setItemNoBetween(ArrayList value) { this.ItemNoBetween = value; return this; } public ArrayList getItemNoIn() { return ItemNoIn; } public PO_BatchPurchaseOrderLinesQuery setItemNoIn(ArrayList value) { this.ItemNoIn = value; return this; } public String getInMainRecID() { return IN_Main_RecID; } public PO_BatchPurchaseOrderLinesQuery setInMainRecID(String value) { this.IN_Main_RecID = value; return this; } public String getInMainRecIDStartsWith() { return IN_Main_RecIDStartsWith; } public PO_BatchPurchaseOrderLinesQuery setInMainRecIDStartsWith(String value) { this.IN_Main_RecIDStartsWith = value; return this; } public String getInMainRecIDEndsWith() { return IN_Main_RecIDEndsWith; } public PO_BatchPurchaseOrderLinesQuery setInMainRecIDEndsWith(String value) { this.IN_Main_RecIDEndsWith = value; return this; } public String getInMainRecIDContains() { return IN_Main_RecIDContains; } public PO_BatchPurchaseOrderLinesQuery setInMainRecIDContains(String value) { this.IN_Main_RecIDContains = value; return this; } public String getInMainRecIDLike() { return IN_Main_RecIDLike; } public PO_BatchPurchaseOrderLinesQuery setInMainRecIDLike(String value) { this.IN_Main_RecIDLike = value; return this; } public ArrayList getInMainRecIDBetween() { return IN_Main_RecIDBetween; } public PO_BatchPurchaseOrderLinesQuery setInMainRecIDBetween(ArrayList value) { this.IN_Main_RecIDBetween = value; return this; } public ArrayList getInMainRecIDIn() { return IN_Main_RecIDIn; } public PO_BatchPurchaseOrderLinesQuery setInMainRecIDIn(ArrayList value) { this.IN_Main_RecIDIn = value; return this; } public BigDecimal getUnitCost() { return UnitCost; } public PO_BatchPurchaseOrderLinesQuery setUnitCost(BigDecimal value) { this.UnitCost = value; return this; } public BigDecimal getUnitCostGreaterThanOrEqualTo() { return UnitCostGreaterThanOrEqualTo; } public PO_BatchPurchaseOrderLinesQuery setUnitCostGreaterThanOrEqualTo(BigDecimal value) { this.UnitCostGreaterThanOrEqualTo = value; return this; } public BigDecimal getUnitCostGreaterThan() { return UnitCostGreaterThan; } public PO_BatchPurchaseOrderLinesQuery setUnitCostGreaterThan(BigDecimal value) { this.UnitCostGreaterThan = value; return this; } public BigDecimal getUnitCostLessThan() { return UnitCostLessThan; } public PO_BatchPurchaseOrderLinesQuery setUnitCostLessThan(BigDecimal value) { this.UnitCostLessThan = value; return this; } public BigDecimal getUnitCostLessThanOrEqualTo() { return UnitCostLessThanOrEqualTo; } public PO_BatchPurchaseOrderLinesQuery setUnitCostLessThanOrEqualTo(BigDecimal value) { this.UnitCostLessThanOrEqualTo = value; return this; } public BigDecimal getUnitCostNotEqualTo() { return UnitCostNotEqualTo; } public PO_BatchPurchaseOrderLinesQuery setUnitCostNotEqualTo(BigDecimal value) { this.UnitCostNotEqualTo = value; return this; } public ArrayList getUnitCostBetween() { return UnitCostBetween; } public PO_BatchPurchaseOrderLinesQuery setUnitCostBetween(ArrayList value) { this.UnitCostBetween = value; return this; } public ArrayList getUnitCostIn() { return UnitCostIn; } public PO_BatchPurchaseOrderLinesQuery setUnitCostIn(ArrayList value) { this.UnitCostIn = value; return this; } public BigDecimal getFxUnitCost() { return FXUnitCost; } public PO_BatchPurchaseOrderLinesQuery setFxUnitCost(BigDecimal value) { this.FXUnitCost = value; return this; } public BigDecimal getFxUnitCostGreaterThanOrEqualTo() { return FXUnitCostGreaterThanOrEqualTo; } public PO_BatchPurchaseOrderLinesQuery setFxUnitCostGreaterThanOrEqualTo(BigDecimal value) { this.FXUnitCostGreaterThanOrEqualTo = value; return this; } public BigDecimal getFxUnitCostGreaterThan() { return FXUnitCostGreaterThan; } public PO_BatchPurchaseOrderLinesQuery setFxUnitCostGreaterThan(BigDecimal value) { this.FXUnitCostGreaterThan = value; return this; } public BigDecimal getFxUnitCostLessThan() { return FXUnitCostLessThan; } public PO_BatchPurchaseOrderLinesQuery setFxUnitCostLessThan(BigDecimal value) { this.FXUnitCostLessThan = value; return this; } public BigDecimal getFxUnitCostLessThanOrEqualTo() { return FXUnitCostLessThanOrEqualTo; } public PO_BatchPurchaseOrderLinesQuery setFxUnitCostLessThanOrEqualTo(BigDecimal value) { this.FXUnitCostLessThanOrEqualTo = value; return this; } public BigDecimal getFxUnitCostNotEqualTo() { return FXUnitCostNotEqualTo; } public PO_BatchPurchaseOrderLinesQuery setFxUnitCostNotEqualTo(BigDecimal value) { this.FXUnitCostNotEqualTo = value; return this; } public ArrayList getFxUnitCostBetween() { return FXUnitCostBetween; } public PO_BatchPurchaseOrderLinesQuery setFxUnitCostBetween(ArrayList value) { this.FXUnitCostBetween = value; return this; } public ArrayList getFxUnitCostIn() { return FXUnitCostIn; } public PO_BatchPurchaseOrderLinesQuery setFxUnitCostIn(ArrayList value) { this.FXUnitCostIn = value; return this; } public BigDecimal getSuggestedOrderQuantity() { return SuggestedOrderQuantity; } public PO_BatchPurchaseOrderLinesQuery setSuggestedOrderQuantity(BigDecimal value) { this.SuggestedOrderQuantity = value; return this; } public BigDecimal getSuggestedOrderQuantityGreaterThanOrEqualTo() { return SuggestedOrderQuantityGreaterThanOrEqualTo; } public PO_BatchPurchaseOrderLinesQuery setSuggestedOrderQuantityGreaterThanOrEqualTo(BigDecimal value) { this.SuggestedOrderQuantityGreaterThanOrEqualTo = value; return this; } public BigDecimal getSuggestedOrderQuantityGreaterThan() { return SuggestedOrderQuantityGreaterThan; } public PO_BatchPurchaseOrderLinesQuery setSuggestedOrderQuantityGreaterThan(BigDecimal value) { this.SuggestedOrderQuantityGreaterThan = value; return this; } public BigDecimal getSuggestedOrderQuantityLessThan() { return SuggestedOrderQuantityLessThan; } public PO_BatchPurchaseOrderLinesQuery setSuggestedOrderQuantityLessThan(BigDecimal value) { this.SuggestedOrderQuantityLessThan = value; return this; } public BigDecimal getSuggestedOrderQuantityLessThanOrEqualTo() { return SuggestedOrderQuantityLessThanOrEqualTo; } public PO_BatchPurchaseOrderLinesQuery setSuggestedOrderQuantityLessThanOrEqualTo(BigDecimal value) { this.SuggestedOrderQuantityLessThanOrEqualTo = value; return this; } public BigDecimal getSuggestedOrderQuantityNotEqualTo() { return SuggestedOrderQuantityNotEqualTo; } public PO_BatchPurchaseOrderLinesQuery setSuggestedOrderQuantityNotEqualTo(BigDecimal value) { this.SuggestedOrderQuantityNotEqualTo = value; return this; } public ArrayList getSuggestedOrderQuantityBetween() { return SuggestedOrderQuantityBetween; } public PO_BatchPurchaseOrderLinesQuery setSuggestedOrderQuantityBetween(ArrayList value) { this.SuggestedOrderQuantityBetween = value; return this; } public ArrayList getSuggestedOrderQuantityIn() { return SuggestedOrderQuantityIn; } public PO_BatchPurchaseOrderLinesQuery setSuggestedOrderQuantityIn(ArrayList value) { this.SuggestedOrderQuantityIn = value; return this; } public BigDecimal getOrderQuantity() { return OrderQuantity; } public PO_BatchPurchaseOrderLinesQuery setOrderQuantity(BigDecimal value) { this.OrderQuantity = value; return this; } public BigDecimal getOrderQuantityGreaterThanOrEqualTo() { return OrderQuantityGreaterThanOrEqualTo; } public PO_BatchPurchaseOrderLinesQuery setOrderQuantityGreaterThanOrEqualTo(BigDecimal value) { this.OrderQuantityGreaterThanOrEqualTo = value; return this; } public BigDecimal getOrderQuantityGreaterThan() { return OrderQuantityGreaterThan; } public PO_BatchPurchaseOrderLinesQuery setOrderQuantityGreaterThan(BigDecimal value) { this.OrderQuantityGreaterThan = value; return this; } public BigDecimal getOrderQuantityLessThan() { return OrderQuantityLessThan; } public PO_BatchPurchaseOrderLinesQuery setOrderQuantityLessThan(BigDecimal value) { this.OrderQuantityLessThan = value; return this; } public BigDecimal getOrderQuantityLessThanOrEqualTo() { return OrderQuantityLessThanOrEqualTo; } public PO_BatchPurchaseOrderLinesQuery setOrderQuantityLessThanOrEqualTo(BigDecimal value) { this.OrderQuantityLessThanOrEqualTo = value; return this; } public BigDecimal getOrderQuantityNotEqualTo() { return OrderQuantityNotEqualTo; } public PO_BatchPurchaseOrderLinesQuery setOrderQuantityNotEqualTo(BigDecimal value) { this.OrderQuantityNotEqualTo = value; return this; } public ArrayList getOrderQuantityBetween() { return OrderQuantityBetween; } public PO_BatchPurchaseOrderLinesQuery setOrderQuantityBetween(ArrayList value) { this.OrderQuantityBetween = value; return this; } public ArrayList getOrderQuantityIn() { return OrderQuantityIn; } public PO_BatchPurchaseOrderLinesQuery setOrderQuantityIn(ArrayList value) { this.OrderQuantityIn = value; return this; } public BigDecimal getLineCost() { return LineCost; } public PO_BatchPurchaseOrderLinesQuery setLineCost(BigDecimal value) { this.LineCost = value; return this; } public BigDecimal getLineCostGreaterThanOrEqualTo() { return LineCostGreaterThanOrEqualTo; } public PO_BatchPurchaseOrderLinesQuery setLineCostGreaterThanOrEqualTo(BigDecimal value) { this.LineCostGreaterThanOrEqualTo = value; return this; } public BigDecimal getLineCostGreaterThan() { return LineCostGreaterThan; } public PO_BatchPurchaseOrderLinesQuery setLineCostGreaterThan(BigDecimal value) { this.LineCostGreaterThan = value; return this; } public BigDecimal getLineCostLessThan() { return LineCostLessThan; } public PO_BatchPurchaseOrderLinesQuery setLineCostLessThan(BigDecimal value) { this.LineCostLessThan = value; return this; } public BigDecimal getLineCostLessThanOrEqualTo() { return LineCostLessThanOrEqualTo; } public PO_BatchPurchaseOrderLinesQuery setLineCostLessThanOrEqualTo(BigDecimal value) { this.LineCostLessThanOrEqualTo = value; return this; } public BigDecimal getLineCostNotEqualTo() { return LineCostNotEqualTo; } public PO_BatchPurchaseOrderLinesQuery setLineCostNotEqualTo(BigDecimal value) { this.LineCostNotEqualTo = value; return this; } public ArrayList getLineCostBetween() { return LineCostBetween; } public PO_BatchPurchaseOrderLinesQuery setLineCostBetween(ArrayList value) { this.LineCostBetween = value; return this; } public ArrayList getLineCostIn() { return LineCostIn; } public PO_BatchPurchaseOrderLinesQuery setLineCostIn(ArrayList value) { this.LineCostIn = value; return this; } public BigDecimal getFxLineCost() { return FXLineCost; } public PO_BatchPurchaseOrderLinesQuery setFxLineCost(BigDecimal value) { this.FXLineCost = value; return this; } public BigDecimal getFxLineCostGreaterThanOrEqualTo() { return FXLineCostGreaterThanOrEqualTo; } public PO_BatchPurchaseOrderLinesQuery setFxLineCostGreaterThanOrEqualTo(BigDecimal value) { this.FXLineCostGreaterThanOrEqualTo = value; return this; } public BigDecimal getFxLineCostGreaterThan() { return FXLineCostGreaterThan; } public PO_BatchPurchaseOrderLinesQuery setFxLineCostGreaterThan(BigDecimal value) { this.FXLineCostGreaterThan = value; return this; } public BigDecimal getFxLineCostLessThan() { return FXLineCostLessThan; } public PO_BatchPurchaseOrderLinesQuery setFxLineCostLessThan(BigDecimal value) { this.FXLineCostLessThan = value; return this; } public BigDecimal getFxLineCostLessThanOrEqualTo() { return FXLineCostLessThanOrEqualTo; } public PO_BatchPurchaseOrderLinesQuery setFxLineCostLessThanOrEqualTo(BigDecimal value) { this.FXLineCostLessThanOrEqualTo = value; return this; } public BigDecimal getFxLineCostNotEqualTo() { return FXLineCostNotEqualTo; } public PO_BatchPurchaseOrderLinesQuery setFxLineCostNotEqualTo(BigDecimal value) { this.FXLineCostNotEqualTo = value; return this; } public ArrayList getFxLineCostBetween() { return FXLineCostBetween; } public PO_BatchPurchaseOrderLinesQuery setFxLineCostBetween(ArrayList value) { this.FXLineCostBetween = value; return this; } public ArrayList getFxLineCostIn() { return FXLineCostIn; } public PO_BatchPurchaseOrderLinesQuery setFxLineCostIn(ArrayList value) { this.FXLineCostIn = value; return this; } public BigDecimal getQuantitySOH() { return QuantitySOH; } public PO_BatchPurchaseOrderLinesQuery setQuantitySOH(BigDecimal value) { this.QuantitySOH = value; return this; } public BigDecimal getQuantitySOHGreaterThanOrEqualTo() { return QuantitySOHGreaterThanOrEqualTo; } public PO_BatchPurchaseOrderLinesQuery setQuantitySOHGreaterThanOrEqualTo(BigDecimal value) { this.QuantitySOHGreaterThanOrEqualTo = value; return this; } public BigDecimal getQuantitySOHGreaterThan() { return QuantitySOHGreaterThan; } public PO_BatchPurchaseOrderLinesQuery setQuantitySOHGreaterThan(BigDecimal value) { this.QuantitySOHGreaterThan = value; return this; } public BigDecimal getQuantitySOHLessThan() { return QuantitySOHLessThan; } public PO_BatchPurchaseOrderLinesQuery setQuantitySOHLessThan(BigDecimal value) { this.QuantitySOHLessThan = value; return this; } public BigDecimal getQuantitySOHLessThanOrEqualTo() { return QuantitySOHLessThanOrEqualTo; } public PO_BatchPurchaseOrderLinesQuery setQuantitySOHLessThanOrEqualTo(BigDecimal value) { this.QuantitySOHLessThanOrEqualTo = value; return this; } public BigDecimal getQuantitySOHNotEqualTo() { return QuantitySOHNotEqualTo; } public PO_BatchPurchaseOrderLinesQuery setQuantitySOHNotEqualTo(BigDecimal value) { this.QuantitySOHNotEqualTo = value; return this; } public ArrayList getQuantitySOHBetween() { return QuantitySOHBetween; } public PO_BatchPurchaseOrderLinesQuery setQuantitySOHBetween(ArrayList value) { this.QuantitySOHBetween = value; return this; } public ArrayList getQuantitySOHIn() { return QuantitySOHIn; } public PO_BatchPurchaseOrderLinesQuery setQuantitySOHIn(ArrayList value) { this.QuantitySOHIn = value; return this; } public BigDecimal getQuantityMinSOH() { return QuantityMinSOH; } public PO_BatchPurchaseOrderLinesQuery setQuantityMinSOH(BigDecimal value) { this.QuantityMinSOH = value; return this; } public BigDecimal getQuantityMinSOHGreaterThanOrEqualTo() { return QuantityMinSOHGreaterThanOrEqualTo; } public PO_BatchPurchaseOrderLinesQuery setQuantityMinSOHGreaterThanOrEqualTo(BigDecimal value) { this.QuantityMinSOHGreaterThanOrEqualTo = value; return this; } public BigDecimal getQuantityMinSOHGreaterThan() { return QuantityMinSOHGreaterThan; } public PO_BatchPurchaseOrderLinesQuery setQuantityMinSOHGreaterThan(BigDecimal value) { this.QuantityMinSOHGreaterThan = value; return this; } public BigDecimal getQuantityMinSOHLessThan() { return QuantityMinSOHLessThan; } public PO_BatchPurchaseOrderLinesQuery setQuantityMinSOHLessThan(BigDecimal value) { this.QuantityMinSOHLessThan = value; return this; } public BigDecimal getQuantityMinSOHLessThanOrEqualTo() { return QuantityMinSOHLessThanOrEqualTo; } public PO_BatchPurchaseOrderLinesQuery setQuantityMinSOHLessThanOrEqualTo(BigDecimal value) { this.QuantityMinSOHLessThanOrEqualTo = value; return this; } public BigDecimal getQuantityMinSOHNotEqualTo() { return QuantityMinSOHNotEqualTo; } public PO_BatchPurchaseOrderLinesQuery setQuantityMinSOHNotEqualTo(BigDecimal value) { this.QuantityMinSOHNotEqualTo = value; return this; } public ArrayList getQuantityMinSOHBetween() { return QuantityMinSOHBetween; } public PO_BatchPurchaseOrderLinesQuery setQuantityMinSOHBetween(ArrayList value) { this.QuantityMinSOHBetween = value; return this; } public ArrayList getQuantityMinSOHIn() { return QuantityMinSOHIn; } public PO_BatchPurchaseOrderLinesQuery setQuantityMinSOHIn(ArrayList value) { this.QuantityMinSOHIn = value; return this; } public BigDecimal getQuantityOnPO() { return QuantityOnPO; } public PO_BatchPurchaseOrderLinesQuery setQuantityOnPO(BigDecimal value) { this.QuantityOnPO = value; return this; } public BigDecimal getQuantityOnPOGreaterThanOrEqualTo() { return QuantityOnPOGreaterThanOrEqualTo; } public PO_BatchPurchaseOrderLinesQuery setQuantityOnPOGreaterThanOrEqualTo(BigDecimal value) { this.QuantityOnPOGreaterThanOrEqualTo = value; return this; } public BigDecimal getQuantityOnPOGreaterThan() { return QuantityOnPOGreaterThan; } public PO_BatchPurchaseOrderLinesQuery setQuantityOnPOGreaterThan(BigDecimal value) { this.QuantityOnPOGreaterThan = value; return this; } public BigDecimal getQuantityOnPOLessThan() { return QuantityOnPOLessThan; } public PO_BatchPurchaseOrderLinesQuery setQuantityOnPOLessThan(BigDecimal value) { this.QuantityOnPOLessThan = value; return this; } public BigDecimal getQuantityOnPOLessThanOrEqualTo() { return QuantityOnPOLessThanOrEqualTo; } public PO_BatchPurchaseOrderLinesQuery setQuantityOnPOLessThanOrEqualTo(BigDecimal value) { this.QuantityOnPOLessThanOrEqualTo = value; return this; } public BigDecimal getQuantityOnPONotEqualTo() { return QuantityOnPONotEqualTo; } public PO_BatchPurchaseOrderLinesQuery setQuantityOnPONotEqualTo(BigDecimal value) { this.QuantityOnPONotEqualTo = value; return this; } public ArrayList getQuantityOnPOBetween() { return QuantityOnPOBetween; } public PO_BatchPurchaseOrderLinesQuery setQuantityOnPOBetween(ArrayList value) { this.QuantityOnPOBetween = value; return this; } public ArrayList getQuantityOnPOIn() { return QuantityOnPOIn; } public PO_BatchPurchaseOrderLinesQuery setQuantityOnPOIn(ArrayList value) { this.QuantityOnPOIn = value; return this; } public BigDecimal getQuantityOnBO() { return QuantityOnBO; } public PO_BatchPurchaseOrderLinesQuery setQuantityOnBO(BigDecimal value) { this.QuantityOnBO = value; return this; } public BigDecimal getQuantityOnBOGreaterThanOrEqualTo() { return QuantityOnBOGreaterThanOrEqualTo; } public PO_BatchPurchaseOrderLinesQuery setQuantityOnBOGreaterThanOrEqualTo(BigDecimal value) { this.QuantityOnBOGreaterThanOrEqualTo = value; return this; } public BigDecimal getQuantityOnBOGreaterThan() { return QuantityOnBOGreaterThan; } public PO_BatchPurchaseOrderLinesQuery setQuantityOnBOGreaterThan(BigDecimal value) { this.QuantityOnBOGreaterThan = value; return this; } public BigDecimal getQuantityOnBOLessThan() { return QuantityOnBOLessThan; } public PO_BatchPurchaseOrderLinesQuery setQuantityOnBOLessThan(BigDecimal value) { this.QuantityOnBOLessThan = value; return this; } public BigDecimal getQuantityOnBOLessThanOrEqualTo() { return QuantityOnBOLessThanOrEqualTo; } public PO_BatchPurchaseOrderLinesQuery setQuantityOnBOLessThanOrEqualTo(BigDecimal value) { this.QuantityOnBOLessThanOrEqualTo = value; return this; } public BigDecimal getQuantityOnBONotEqualTo() { return QuantityOnBONotEqualTo; } public PO_BatchPurchaseOrderLinesQuery setQuantityOnBONotEqualTo(BigDecimal value) { this.QuantityOnBONotEqualTo = value; return this; } public ArrayList getQuantityOnBOBetween() { return QuantityOnBOBetween; } public PO_BatchPurchaseOrderLinesQuery setQuantityOnBOBetween(ArrayList value) { this.QuantityOnBOBetween = value; return this; } public ArrayList getQuantityOnBOIn() { return QuantityOnBOIn; } public PO_BatchPurchaseOrderLinesQuery setQuantityOnBOIn(ArrayList value) { this.QuantityOnBOIn = value; return this; } public BigDecimal getQuantitySalesForecast() { return QuantitySalesForecast; } public PO_BatchPurchaseOrderLinesQuery setQuantitySalesForecast(BigDecimal value) { this.QuantitySalesForecast = value; return this; } public BigDecimal getQuantitySalesForecastGreaterThanOrEqualTo() { return QuantitySalesForecastGreaterThanOrEqualTo; } public PO_BatchPurchaseOrderLinesQuery setQuantitySalesForecastGreaterThanOrEqualTo(BigDecimal value) { this.QuantitySalesForecastGreaterThanOrEqualTo = value; return this; } public BigDecimal getQuantitySalesForecastGreaterThan() { return QuantitySalesForecastGreaterThan; } public PO_BatchPurchaseOrderLinesQuery setQuantitySalesForecastGreaterThan(BigDecimal value) { this.QuantitySalesForecastGreaterThan = value; return this; } public BigDecimal getQuantitySalesForecastLessThan() { return QuantitySalesForecastLessThan; } public PO_BatchPurchaseOrderLinesQuery setQuantitySalesForecastLessThan(BigDecimal value) { this.QuantitySalesForecastLessThan = value; return this; } public BigDecimal getQuantitySalesForecastLessThanOrEqualTo() { return QuantitySalesForecastLessThanOrEqualTo; } public PO_BatchPurchaseOrderLinesQuery setQuantitySalesForecastLessThanOrEqualTo(BigDecimal value) { this.QuantitySalesForecastLessThanOrEqualTo = value; return this; } public BigDecimal getQuantitySalesForecastNotEqualTo() { return QuantitySalesForecastNotEqualTo; } public PO_BatchPurchaseOrderLinesQuery setQuantitySalesForecastNotEqualTo(BigDecimal value) { this.QuantitySalesForecastNotEqualTo = value; return this; } public ArrayList getQuantitySalesForecastBetween() { return QuantitySalesForecastBetween; } public PO_BatchPurchaseOrderLinesQuery setQuantitySalesForecastBetween(ArrayList value) { this.QuantitySalesForecastBetween = value; return this; } public ArrayList getQuantitySalesForecastIn() { return QuantitySalesForecastIn; } public PO_BatchPurchaseOrderLinesQuery setQuantitySalesForecastIn(ArrayList value) { this.QuantitySalesForecastIn = value; return this; } public BigDecimal getQuantityLastYearPurchases() { return QuantityLastYearPurchases; } public PO_BatchPurchaseOrderLinesQuery setQuantityLastYearPurchases(BigDecimal value) { this.QuantityLastYearPurchases = value; return this; } public BigDecimal getQuantityLastYearPurchasesGreaterThanOrEqualTo() { return QuantityLastYearPurchasesGreaterThanOrEqualTo; } public PO_BatchPurchaseOrderLinesQuery setQuantityLastYearPurchasesGreaterThanOrEqualTo(BigDecimal value) { this.QuantityLastYearPurchasesGreaterThanOrEqualTo = value; return this; } public BigDecimal getQuantityLastYearPurchasesGreaterThan() { return QuantityLastYearPurchasesGreaterThan; } public PO_BatchPurchaseOrderLinesQuery setQuantityLastYearPurchasesGreaterThan(BigDecimal value) { this.QuantityLastYearPurchasesGreaterThan = value; return this; } public BigDecimal getQuantityLastYearPurchasesLessThan() { return QuantityLastYearPurchasesLessThan; } public PO_BatchPurchaseOrderLinesQuery setQuantityLastYearPurchasesLessThan(BigDecimal value) { this.QuantityLastYearPurchasesLessThan = value; return this; } public BigDecimal getQuantityLastYearPurchasesLessThanOrEqualTo() { return QuantityLastYearPurchasesLessThanOrEqualTo; } public PO_BatchPurchaseOrderLinesQuery setQuantityLastYearPurchasesLessThanOrEqualTo(BigDecimal value) { this.QuantityLastYearPurchasesLessThanOrEqualTo = value; return this; } public BigDecimal getQuantityLastYearPurchasesNotEqualTo() { return QuantityLastYearPurchasesNotEqualTo; } public PO_BatchPurchaseOrderLinesQuery setQuantityLastYearPurchasesNotEqualTo(BigDecimal value) { this.QuantityLastYearPurchasesNotEqualTo = value; return this; } public ArrayList getQuantityLastYearPurchasesBetween() { return QuantityLastYearPurchasesBetween; } public PO_BatchPurchaseOrderLinesQuery setQuantityLastYearPurchasesBetween(ArrayList value) { this.QuantityLastYearPurchasesBetween = value; return this; } public ArrayList getQuantityLastYearPurchasesIn() { return QuantityLastYearPurchasesIn; } public PO_BatchPurchaseOrderLinesQuery setQuantityLastYearPurchasesIn(ArrayList value) { this.QuantityLastYearPurchasesIn = value; return this; } public BigDecimal getQuantityLastYearSales() { return QuantityLastYearSales; } public PO_BatchPurchaseOrderLinesQuery setQuantityLastYearSales(BigDecimal value) { this.QuantityLastYearSales = value; return this; } public BigDecimal getQuantityLastYearSalesGreaterThanOrEqualTo() { return QuantityLastYearSalesGreaterThanOrEqualTo; } public PO_BatchPurchaseOrderLinesQuery setQuantityLastYearSalesGreaterThanOrEqualTo(BigDecimal value) { this.QuantityLastYearSalesGreaterThanOrEqualTo = value; return this; } public BigDecimal getQuantityLastYearSalesGreaterThan() { return QuantityLastYearSalesGreaterThan; } public PO_BatchPurchaseOrderLinesQuery setQuantityLastYearSalesGreaterThan(BigDecimal value) { this.QuantityLastYearSalesGreaterThan = value; return this; } public BigDecimal getQuantityLastYearSalesLessThan() { return QuantityLastYearSalesLessThan; } public PO_BatchPurchaseOrderLinesQuery setQuantityLastYearSalesLessThan(BigDecimal value) { this.QuantityLastYearSalesLessThan = value; return this; } public BigDecimal getQuantityLastYearSalesLessThanOrEqualTo() { return QuantityLastYearSalesLessThanOrEqualTo; } public PO_BatchPurchaseOrderLinesQuery setQuantityLastYearSalesLessThanOrEqualTo(BigDecimal value) { this.QuantityLastYearSalesLessThanOrEqualTo = value; return this; } public BigDecimal getQuantityLastYearSalesNotEqualTo() { return QuantityLastYearSalesNotEqualTo; } public PO_BatchPurchaseOrderLinesQuery setQuantityLastYearSalesNotEqualTo(BigDecimal value) { this.QuantityLastYearSalesNotEqualTo = value; return this; } public ArrayList getQuantityLastYearSalesBetween() { return QuantityLastYearSalesBetween; } public PO_BatchPurchaseOrderLinesQuery setQuantityLastYearSalesBetween(ArrayList value) { this.QuantityLastYearSalesBetween = value; return this; } public ArrayList getQuantityLastYearSalesIn() { return QuantityLastYearSalesIn; } public PO_BatchPurchaseOrderLinesQuery setQuantityLastYearSalesIn(ArrayList value) { this.QuantityLastYearSalesIn = value; return this; } public String getPoLinesRecID() { return PO_Lines_RecID; } public PO_BatchPurchaseOrderLinesQuery setPoLinesRecID(String value) { this.PO_Lines_RecID = value; return this; } public String getPoLinesRecIDStartsWith() { return PO_Lines_RecIDStartsWith; } public PO_BatchPurchaseOrderLinesQuery setPoLinesRecIDStartsWith(String value) { this.PO_Lines_RecIDStartsWith = value; return this; } public String getPoLinesRecIDEndsWith() { return PO_Lines_RecIDEndsWith; } public PO_BatchPurchaseOrderLinesQuery setPoLinesRecIDEndsWith(String value) { this.PO_Lines_RecIDEndsWith = value; return this; } public String getPoLinesRecIDContains() { return PO_Lines_RecIDContains; } public PO_BatchPurchaseOrderLinesQuery setPoLinesRecIDContains(String value) { this.PO_Lines_RecIDContains = value; return this; } public String getPoLinesRecIDLike() { return PO_Lines_RecIDLike; } public PO_BatchPurchaseOrderLinesQuery setPoLinesRecIDLike(String value) { this.PO_Lines_RecIDLike = value; return this; } public ArrayList getPoLinesRecIDBetween() { return PO_Lines_RecIDBetween; } public PO_BatchPurchaseOrderLinesQuery setPoLinesRecIDBetween(ArrayList value) { this.PO_Lines_RecIDBetween = value; return this; } public ArrayList getPoLinesRecIDIn() { return PO_Lines_RecIDIn; } public PO_BatchPurchaseOrderLinesQuery setPoLinesRecIDIn(ArrayList value) { this.PO_Lines_RecIDIn = value; return this; } public BigDecimal getUnitCubic() { return UnitCubic; } public PO_BatchPurchaseOrderLinesQuery setUnitCubic(BigDecimal value) { this.UnitCubic = value; return this; } public BigDecimal getUnitCubicGreaterThanOrEqualTo() { return UnitCubicGreaterThanOrEqualTo; } public PO_BatchPurchaseOrderLinesQuery setUnitCubicGreaterThanOrEqualTo(BigDecimal value) { this.UnitCubicGreaterThanOrEqualTo = value; return this; } public BigDecimal getUnitCubicGreaterThan() { return UnitCubicGreaterThan; } public PO_BatchPurchaseOrderLinesQuery setUnitCubicGreaterThan(BigDecimal value) { this.UnitCubicGreaterThan = value; return this; } public BigDecimal getUnitCubicLessThan() { return UnitCubicLessThan; } public PO_BatchPurchaseOrderLinesQuery setUnitCubicLessThan(BigDecimal value) { this.UnitCubicLessThan = value; return this; } public BigDecimal getUnitCubicLessThanOrEqualTo() { return UnitCubicLessThanOrEqualTo; } public PO_BatchPurchaseOrderLinesQuery setUnitCubicLessThanOrEqualTo(BigDecimal value) { this.UnitCubicLessThanOrEqualTo = value; return this; } public BigDecimal getUnitCubicNotEqualTo() { return UnitCubicNotEqualTo; } public PO_BatchPurchaseOrderLinesQuery setUnitCubicNotEqualTo(BigDecimal value) { this.UnitCubicNotEqualTo = value; return this; } public ArrayList getUnitCubicBetween() { return UnitCubicBetween; } public PO_BatchPurchaseOrderLinesQuery setUnitCubicBetween(ArrayList value) { this.UnitCubicBetween = value; return this; } public ArrayList getUnitCubicIn() { return UnitCubicIn; } public PO_BatchPurchaseOrderLinesQuery setUnitCubicIn(ArrayList value) { this.UnitCubicIn = value; return this; } public BigDecimal getUnitWeight() { return UnitWeight; } public PO_BatchPurchaseOrderLinesQuery setUnitWeight(BigDecimal value) { this.UnitWeight = value; return this; } public BigDecimal getUnitWeightGreaterThanOrEqualTo() { return UnitWeightGreaterThanOrEqualTo; } public PO_BatchPurchaseOrderLinesQuery setUnitWeightGreaterThanOrEqualTo(BigDecimal value) { this.UnitWeightGreaterThanOrEqualTo = value; return this; } public BigDecimal getUnitWeightGreaterThan() { return UnitWeightGreaterThan; } public PO_BatchPurchaseOrderLinesQuery setUnitWeightGreaterThan(BigDecimal value) { this.UnitWeightGreaterThan = value; return this; } public BigDecimal getUnitWeightLessThan() { return UnitWeightLessThan; } public PO_BatchPurchaseOrderLinesQuery setUnitWeightLessThan(BigDecimal value) { this.UnitWeightLessThan = value; return this; } public BigDecimal getUnitWeightLessThanOrEqualTo() { return UnitWeightLessThanOrEqualTo; } public PO_BatchPurchaseOrderLinesQuery setUnitWeightLessThanOrEqualTo(BigDecimal value) { this.UnitWeightLessThanOrEqualTo = value; return this; } public BigDecimal getUnitWeightNotEqualTo() { return UnitWeightNotEqualTo; } public PO_BatchPurchaseOrderLinesQuery setUnitWeightNotEqualTo(BigDecimal value) { this.UnitWeightNotEqualTo = value; return this; } public ArrayList getUnitWeightBetween() { return UnitWeightBetween; } public PO_BatchPurchaseOrderLinesQuery setUnitWeightBetween(ArrayList value) { this.UnitWeightBetween = value; return this; } public ArrayList getUnitWeightIn() { return UnitWeightIn; } public PO_BatchPurchaseOrderLinesQuery setUnitWeightIn(ArrayList value) { this.UnitWeightIn = value; return this; } public BigDecimal getLineCubic() { return LineCubic; } public PO_BatchPurchaseOrderLinesQuery setLineCubic(BigDecimal value) { this.LineCubic = value; return this; } public BigDecimal getLineCubicGreaterThanOrEqualTo() { return LineCubicGreaterThanOrEqualTo; } public PO_BatchPurchaseOrderLinesQuery setLineCubicGreaterThanOrEqualTo(BigDecimal value) { this.LineCubicGreaterThanOrEqualTo = value; return this; } public BigDecimal getLineCubicGreaterThan() { return LineCubicGreaterThan; } public PO_BatchPurchaseOrderLinesQuery setLineCubicGreaterThan(BigDecimal value) { this.LineCubicGreaterThan = value; return this; } public BigDecimal getLineCubicLessThan() { return LineCubicLessThan; } public PO_BatchPurchaseOrderLinesQuery setLineCubicLessThan(BigDecimal value) { this.LineCubicLessThan = value; return this; } public BigDecimal getLineCubicLessThanOrEqualTo() { return LineCubicLessThanOrEqualTo; } public PO_BatchPurchaseOrderLinesQuery setLineCubicLessThanOrEqualTo(BigDecimal value) { this.LineCubicLessThanOrEqualTo = value; return this; } public BigDecimal getLineCubicNotEqualTo() { return LineCubicNotEqualTo; } public PO_BatchPurchaseOrderLinesQuery setLineCubicNotEqualTo(BigDecimal value) { this.LineCubicNotEqualTo = value; return this; } public ArrayList getLineCubicBetween() { return LineCubicBetween; } public PO_BatchPurchaseOrderLinesQuery setLineCubicBetween(ArrayList value) { this.LineCubicBetween = value; return this; } public ArrayList getLineCubicIn() { return LineCubicIn; } public PO_BatchPurchaseOrderLinesQuery setLineCubicIn(ArrayList value) { this.LineCubicIn = value; return this; } public BigDecimal getLineWeight() { return LineWeight; } public PO_BatchPurchaseOrderLinesQuery setLineWeight(BigDecimal value) { this.LineWeight = value; return this; } public BigDecimal getLineWeightGreaterThanOrEqualTo() { return LineWeightGreaterThanOrEqualTo; } public PO_BatchPurchaseOrderLinesQuery setLineWeightGreaterThanOrEqualTo(BigDecimal value) { this.LineWeightGreaterThanOrEqualTo = value; return this; } public BigDecimal getLineWeightGreaterThan() { return LineWeightGreaterThan; } public PO_BatchPurchaseOrderLinesQuery setLineWeightGreaterThan(BigDecimal value) { this.LineWeightGreaterThan = value; return this; } public BigDecimal getLineWeightLessThan() { return LineWeightLessThan; } public PO_BatchPurchaseOrderLinesQuery setLineWeightLessThan(BigDecimal value) { this.LineWeightLessThan = value; return this; } public BigDecimal getLineWeightLessThanOrEqualTo() { return LineWeightLessThanOrEqualTo; } public PO_BatchPurchaseOrderLinesQuery setLineWeightLessThanOrEqualTo(BigDecimal value) { this.LineWeightLessThanOrEqualTo = value; return this; } public BigDecimal getLineWeightNotEqualTo() { return LineWeightNotEqualTo; } public PO_BatchPurchaseOrderLinesQuery setLineWeightNotEqualTo(BigDecimal value) { this.LineWeightNotEqualTo = value; return this; } public ArrayList getLineWeightBetween() { return LineWeightBetween; } public PO_BatchPurchaseOrderLinesQuery setLineWeightBetween(ArrayList value) { this.LineWeightBetween = value; return this; } public ArrayList getLineWeightIn() { return LineWeightIn; } public PO_BatchPurchaseOrderLinesQuery setLineWeightIn(ArrayList value) { this.LineWeightIn = value; return this; } public Integer getDeliveryDays() { return DeliveryDays; } public PO_BatchPurchaseOrderLinesQuery setDeliveryDays(Integer value) { this.DeliveryDays = value; return this; } public Integer getDeliveryDaysGreaterThanOrEqualTo() { return DeliveryDaysGreaterThanOrEqualTo; } public PO_BatchPurchaseOrderLinesQuery setDeliveryDaysGreaterThanOrEqualTo(Integer value) { this.DeliveryDaysGreaterThanOrEqualTo = value; return this; } public Integer getDeliveryDaysGreaterThan() { return DeliveryDaysGreaterThan; } public PO_BatchPurchaseOrderLinesQuery setDeliveryDaysGreaterThan(Integer value) { this.DeliveryDaysGreaterThan = value; return this; } public Integer getDeliveryDaysLessThan() { return DeliveryDaysLessThan; } public PO_BatchPurchaseOrderLinesQuery setDeliveryDaysLessThan(Integer value) { this.DeliveryDaysLessThan = value; return this; } public Integer getDeliveryDaysLessThanOrEqualTo() { return DeliveryDaysLessThanOrEqualTo; } public PO_BatchPurchaseOrderLinesQuery setDeliveryDaysLessThanOrEqualTo(Integer value) { this.DeliveryDaysLessThanOrEqualTo = value; return this; } public Integer getDeliveryDaysNotEqualTo() { return DeliveryDaysNotEqualTo; } public PO_BatchPurchaseOrderLinesQuery setDeliveryDaysNotEqualTo(Integer value) { this.DeliveryDaysNotEqualTo = value; return this; } public ArrayList getDeliveryDaysBetween() { return DeliveryDaysBetween; } public PO_BatchPurchaseOrderLinesQuery setDeliveryDaysBetween(ArrayList value) { this.DeliveryDaysBetween = value; return this; } public ArrayList getDeliveryDaysIn() { return DeliveryDaysIn; } public PO_BatchPurchaseOrderLinesQuery setDeliveryDaysIn(ArrayList value) { this.DeliveryDaysIn = value; return this; } public BigDecimal getOrderUnits() { return OrderUnits; } public PO_BatchPurchaseOrderLinesQuery setOrderUnits(BigDecimal value) { this.OrderUnits = value; return this; } public BigDecimal getOrderUnitsGreaterThanOrEqualTo() { return OrderUnitsGreaterThanOrEqualTo; } public PO_BatchPurchaseOrderLinesQuery setOrderUnitsGreaterThanOrEqualTo(BigDecimal value) { this.OrderUnitsGreaterThanOrEqualTo = value; return this; } public BigDecimal getOrderUnitsGreaterThan() { return OrderUnitsGreaterThan; } public PO_BatchPurchaseOrderLinesQuery setOrderUnitsGreaterThan(BigDecimal value) { this.OrderUnitsGreaterThan = value; return this; } public BigDecimal getOrderUnitsLessThan() { return OrderUnitsLessThan; } public PO_BatchPurchaseOrderLinesQuery setOrderUnitsLessThan(BigDecimal value) { this.OrderUnitsLessThan = value; return this; } public BigDecimal getOrderUnitsLessThanOrEqualTo() { return OrderUnitsLessThanOrEqualTo; } public PO_BatchPurchaseOrderLinesQuery setOrderUnitsLessThanOrEqualTo(BigDecimal value) { this.OrderUnitsLessThanOrEqualTo = value; return this; } public BigDecimal getOrderUnitsNotEqualTo() { return OrderUnitsNotEqualTo; } public PO_BatchPurchaseOrderLinesQuery setOrderUnitsNotEqualTo(BigDecimal value) { this.OrderUnitsNotEqualTo = value; return this; } public ArrayList getOrderUnitsBetween() { return OrderUnitsBetween; } public PO_BatchPurchaseOrderLinesQuery setOrderUnitsBetween(ArrayList value) { this.OrderUnitsBetween = value; return this; } public ArrayList getOrderUnitsIn() { return OrderUnitsIn; } public PO_BatchPurchaseOrderLinesQuery setOrderUnitsIn(ArrayList value) { this.OrderUnitsIn = value; return this; } public ArrayList getRowHash() { return RowHash; } public PO_BatchPurchaseOrderLinesQuery setRowHash(ArrayList value) { this.RowHash = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class PO_BatchPurchaseOrdersQuery extends QueryDb implements IReturn> { public String RecID = null; public String RecIDStartsWith = null; public String RecIDEndsWith = null; public String RecIDContains = null; public String RecIDLike = null; public ArrayList RecIDBetween = null; public ArrayList RecIDIn = null; public String PO_BatchHeader_RecID = null; public String PO_BatchHeader_RecIDStartsWith = null; public String PO_BatchHeader_RecIDEndsWith = null; public String PO_BatchHeader_RecIDContains = null; public String PO_BatchHeader_RecIDLike = null; public ArrayList PO_BatchHeader_RecIDBetween = null; public ArrayList PO_BatchHeader_RecIDIn = null; public String PO_Main_RecID = null; public String PO_Main_RecIDStartsWith = null; public String PO_Main_RecIDEndsWith = null; public String PO_Main_RecIDContains = null; public String PO_Main_RecIDLike = null; public ArrayList PO_Main_RecIDBetween = null; public ArrayList PO_Main_RecIDIn = null; public String CR_Main_RecID = null; public String CR_Main_RecIDStartsWith = null; public String CR_Main_RecIDEndsWith = null; public String CR_Main_RecIDContains = null; public String CR_Main_RecIDLike = null; public ArrayList CR_Main_RecIDBetween = null; public ArrayList CR_Main_RecIDIn = null; public BigDecimal FXCurrencyRate = null; public BigDecimal FXCurrencyRateGreaterThanOrEqualTo = null; public BigDecimal FXCurrencyRateGreaterThan = null; public BigDecimal FXCurrencyRateLessThan = null; public BigDecimal FXCurrencyRateLessThanOrEqualTo = null; public BigDecimal FXCurrencyRateNotEqualTo = null; public ArrayList FXCurrencyRateBetween = null; public ArrayList FXCurrencyRateIn = null; public ArrayList RowHash = null; public String getRecID() { return RecID; } public PO_BatchPurchaseOrdersQuery setRecID(String value) { this.RecID = value; return this; } public String getRecIDStartsWith() { return RecIDStartsWith; } public PO_BatchPurchaseOrdersQuery setRecIDStartsWith(String value) { this.RecIDStartsWith = value; return this; } public String getRecIDEndsWith() { return RecIDEndsWith; } public PO_BatchPurchaseOrdersQuery setRecIDEndsWith(String value) { this.RecIDEndsWith = value; return this; } public String getRecIDContains() { return RecIDContains; } public PO_BatchPurchaseOrdersQuery setRecIDContains(String value) { this.RecIDContains = value; return this; } public String getRecIDLike() { return RecIDLike; } public PO_BatchPurchaseOrdersQuery setRecIDLike(String value) { this.RecIDLike = value; return this; } public ArrayList getRecIDBetween() { return RecIDBetween; } public PO_BatchPurchaseOrdersQuery setRecIDBetween(ArrayList value) { this.RecIDBetween = value; return this; } public ArrayList getRecIDIn() { return RecIDIn; } public PO_BatchPurchaseOrdersQuery setRecIDIn(ArrayList value) { this.RecIDIn = value; return this; } public String getPoBatchHeaderRecID() { return PO_BatchHeader_RecID; } public PO_BatchPurchaseOrdersQuery setPoBatchHeaderRecID(String value) { this.PO_BatchHeader_RecID = value; return this; } public String getPoBatchHeaderRecIDStartsWith() { return PO_BatchHeader_RecIDStartsWith; } public PO_BatchPurchaseOrdersQuery setPoBatchHeaderRecIDStartsWith(String value) { this.PO_BatchHeader_RecIDStartsWith = value; return this; } public String getPoBatchHeaderRecIDEndsWith() { return PO_BatchHeader_RecIDEndsWith; } public PO_BatchPurchaseOrdersQuery setPoBatchHeaderRecIDEndsWith(String value) { this.PO_BatchHeader_RecIDEndsWith = value; return this; } public String getPoBatchHeaderRecIDContains() { return PO_BatchHeader_RecIDContains; } public PO_BatchPurchaseOrdersQuery setPoBatchHeaderRecIDContains(String value) { this.PO_BatchHeader_RecIDContains = value; return this; } public String getPoBatchHeaderRecIDLike() { return PO_BatchHeader_RecIDLike; } public PO_BatchPurchaseOrdersQuery setPoBatchHeaderRecIDLike(String value) { this.PO_BatchHeader_RecIDLike = value; return this; } public ArrayList getPoBatchHeaderRecIDBetween() { return PO_BatchHeader_RecIDBetween; } public PO_BatchPurchaseOrdersQuery setPoBatchHeaderRecIDBetween(ArrayList value) { this.PO_BatchHeader_RecIDBetween = value; return this; } public ArrayList getPoBatchHeaderRecIDIn() { return PO_BatchHeader_RecIDIn; } public PO_BatchPurchaseOrdersQuery setPoBatchHeaderRecIDIn(ArrayList value) { this.PO_BatchHeader_RecIDIn = value; return this; } public String getPoMainRecID() { return PO_Main_RecID; } public PO_BatchPurchaseOrdersQuery setPoMainRecID(String value) { this.PO_Main_RecID = value; return this; } public String getPoMainRecIDStartsWith() { return PO_Main_RecIDStartsWith; } public PO_BatchPurchaseOrdersQuery setPoMainRecIDStartsWith(String value) { this.PO_Main_RecIDStartsWith = value; return this; } public String getPoMainRecIDEndsWith() { return PO_Main_RecIDEndsWith; } public PO_BatchPurchaseOrdersQuery setPoMainRecIDEndsWith(String value) { this.PO_Main_RecIDEndsWith = value; return this; } public String getPoMainRecIDContains() { return PO_Main_RecIDContains; } public PO_BatchPurchaseOrdersQuery setPoMainRecIDContains(String value) { this.PO_Main_RecIDContains = value; return this; } public String getPoMainRecIDLike() { return PO_Main_RecIDLike; } public PO_BatchPurchaseOrdersQuery setPoMainRecIDLike(String value) { this.PO_Main_RecIDLike = value; return this; } public ArrayList getPoMainRecIDBetween() { return PO_Main_RecIDBetween; } public PO_BatchPurchaseOrdersQuery setPoMainRecIDBetween(ArrayList value) { this.PO_Main_RecIDBetween = value; return this; } public ArrayList getPoMainRecIDIn() { return PO_Main_RecIDIn; } public PO_BatchPurchaseOrdersQuery setPoMainRecIDIn(ArrayList value) { this.PO_Main_RecIDIn = value; return this; } public String getCrMainRecID() { return CR_Main_RecID; } public PO_BatchPurchaseOrdersQuery setCrMainRecID(String value) { this.CR_Main_RecID = value; return this; } public String getCrMainRecIDStartsWith() { return CR_Main_RecIDStartsWith; } public PO_BatchPurchaseOrdersQuery setCrMainRecIDStartsWith(String value) { this.CR_Main_RecIDStartsWith = value; return this; } public String getCrMainRecIDEndsWith() { return CR_Main_RecIDEndsWith; } public PO_BatchPurchaseOrdersQuery setCrMainRecIDEndsWith(String value) { this.CR_Main_RecIDEndsWith = value; return this; } public String getCrMainRecIDContains() { return CR_Main_RecIDContains; } public PO_BatchPurchaseOrdersQuery setCrMainRecIDContains(String value) { this.CR_Main_RecIDContains = value; return this; } public String getCrMainRecIDLike() { return CR_Main_RecIDLike; } public PO_BatchPurchaseOrdersQuery setCrMainRecIDLike(String value) { this.CR_Main_RecIDLike = value; return this; } public ArrayList getCrMainRecIDBetween() { return CR_Main_RecIDBetween; } public PO_BatchPurchaseOrdersQuery setCrMainRecIDBetween(ArrayList value) { this.CR_Main_RecIDBetween = value; return this; } public ArrayList getCrMainRecIDIn() { return CR_Main_RecIDIn; } public PO_BatchPurchaseOrdersQuery setCrMainRecIDIn(ArrayList value) { this.CR_Main_RecIDIn = value; return this; } public BigDecimal getFxCurrencyRate() { return FXCurrencyRate; } public PO_BatchPurchaseOrdersQuery setFxCurrencyRate(BigDecimal value) { this.FXCurrencyRate = value; return this; } public BigDecimal getFxCurrencyRateGreaterThanOrEqualTo() { return FXCurrencyRateGreaterThanOrEqualTo; } public PO_BatchPurchaseOrdersQuery setFxCurrencyRateGreaterThanOrEqualTo(BigDecimal value) { this.FXCurrencyRateGreaterThanOrEqualTo = value; return this; } public BigDecimal getFxCurrencyRateGreaterThan() { return FXCurrencyRateGreaterThan; } public PO_BatchPurchaseOrdersQuery setFxCurrencyRateGreaterThan(BigDecimal value) { this.FXCurrencyRateGreaterThan = value; return this; } public BigDecimal getFxCurrencyRateLessThan() { return FXCurrencyRateLessThan; } public PO_BatchPurchaseOrdersQuery setFxCurrencyRateLessThan(BigDecimal value) { this.FXCurrencyRateLessThan = value; return this; } public BigDecimal getFxCurrencyRateLessThanOrEqualTo() { return FXCurrencyRateLessThanOrEqualTo; } public PO_BatchPurchaseOrdersQuery setFxCurrencyRateLessThanOrEqualTo(BigDecimal value) { this.FXCurrencyRateLessThanOrEqualTo = value; return this; } public BigDecimal getFxCurrencyRateNotEqualTo() { return FXCurrencyRateNotEqualTo; } public PO_BatchPurchaseOrdersQuery setFxCurrencyRateNotEqualTo(BigDecimal value) { this.FXCurrencyRateNotEqualTo = value; return this; } public ArrayList getFxCurrencyRateBetween() { return FXCurrencyRateBetween; } public PO_BatchPurchaseOrdersQuery setFxCurrencyRateBetween(ArrayList value) { this.FXCurrencyRateBetween = value; return this; } public ArrayList getFxCurrencyRateIn() { return FXCurrencyRateIn; } public PO_BatchPurchaseOrdersQuery setFxCurrencyRateIn(ArrayList value) { this.FXCurrencyRateIn = value; return this; } public ArrayList getRowHash() { return RowHash; } public PO_BatchPurchaseOrdersQuery setRowHash(ArrayList value) { this.RowHash = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class PO_ClassificationQuery extends QueryDb implements IReturn> { public String POClassificationID = null; public String POClassificationIDStartsWith = null; public String POClassificationIDEndsWith = null; public String POClassificationIDContains = null; public String POClassificationIDLike = null; public ArrayList POClassificationIDBetween = null; public ArrayList POClassificationIDIn = null; public String Description = null; public String DescriptionStartsWith = null; public String DescriptionEndsWith = null; public String DescriptionContains = null; public String DescriptionLike = null; public ArrayList DescriptionBetween = null; public ArrayList DescriptionIn = null; public String PurchClassLedgerID = null; public String PurchClassLedgerIDStartsWith = null; public String PurchClassLedgerIDEndsWith = null; public String PurchClassLedgerIDContains = null; public String PurchClassLedgerIDLike = null; public ArrayList PurchClassLedgerIDBetween = null; public ArrayList PurchClassLedgerIDIn = null; public Short DefaultClass = null; public Short DefaultClassGreaterThanOrEqualTo = null; public Short DefaultClassGreaterThan = null; public Short DefaultClassLessThan = null; public Short DefaultClassLessThanOrEqualTo = null; public Short DefaultClassNotEqualTo = null; public ArrayList DefaultClassBetween = null; public ArrayList DefaultClassIn = null; public Date LastSavedDateTime = null; public Date LastSavedDateTimeGreaterThanOrEqualTo = null; public Date LastSavedDateTimeGreaterThan = null; public Date LastSavedDateTimeLessThan = null; public Date LastSavedDateTimeLessThanOrEqualTo = null; public Date LastSavedDateTimeNotEqualTo = null; public ArrayList LastSavedDateTimeBetween = null; public ArrayList LastSavedDateTimeIn = null; public String getPoClassificationID() { return POClassificationID; } public PO_ClassificationQuery setPoClassificationID(String value) { this.POClassificationID = value; return this; } public String getPoClassificationIDStartsWith() { return POClassificationIDStartsWith; } public PO_ClassificationQuery setPoClassificationIDStartsWith(String value) { this.POClassificationIDStartsWith = value; return this; } public String getPoClassificationIDEndsWith() { return POClassificationIDEndsWith; } public PO_ClassificationQuery setPoClassificationIDEndsWith(String value) { this.POClassificationIDEndsWith = value; return this; } public String getPoClassificationIDContains() { return POClassificationIDContains; } public PO_ClassificationQuery setPoClassificationIDContains(String value) { this.POClassificationIDContains = value; return this; } public String getPoClassificationIDLike() { return POClassificationIDLike; } public PO_ClassificationQuery setPoClassificationIDLike(String value) { this.POClassificationIDLike = value; return this; } public ArrayList getPoClassificationIDBetween() { return POClassificationIDBetween; } public PO_ClassificationQuery setPoClassificationIDBetween(ArrayList value) { this.POClassificationIDBetween = value; return this; } public ArrayList getPoClassificationIDIn() { return POClassificationIDIn; } public PO_ClassificationQuery setPoClassificationIDIn(ArrayList value) { this.POClassificationIDIn = value; return this; } public String getDescription() { return Description; } public PO_ClassificationQuery setDescription(String value) { this.Description = value; return this; } public String getDescriptionStartsWith() { return DescriptionStartsWith; } public PO_ClassificationQuery setDescriptionStartsWith(String value) { this.DescriptionStartsWith = value; return this; } public String getDescriptionEndsWith() { return DescriptionEndsWith; } public PO_ClassificationQuery setDescriptionEndsWith(String value) { this.DescriptionEndsWith = value; return this; } public String getDescriptionContains() { return DescriptionContains; } public PO_ClassificationQuery setDescriptionContains(String value) { this.DescriptionContains = value; return this; } public String getDescriptionLike() { return DescriptionLike; } public PO_ClassificationQuery setDescriptionLike(String value) { this.DescriptionLike = value; return this; } public ArrayList getDescriptionBetween() { return DescriptionBetween; } public PO_ClassificationQuery setDescriptionBetween(ArrayList value) { this.DescriptionBetween = value; return this; } public ArrayList getDescriptionIn() { return DescriptionIn; } public PO_ClassificationQuery setDescriptionIn(ArrayList value) { this.DescriptionIn = value; return this; } public String getPurchClassLedgerID() { return PurchClassLedgerID; } public PO_ClassificationQuery setPurchClassLedgerID(String value) { this.PurchClassLedgerID = value; return this; } public String getPurchClassLedgerIDStartsWith() { return PurchClassLedgerIDStartsWith; } public PO_ClassificationQuery setPurchClassLedgerIDStartsWith(String value) { this.PurchClassLedgerIDStartsWith = value; return this; } public String getPurchClassLedgerIDEndsWith() { return PurchClassLedgerIDEndsWith; } public PO_ClassificationQuery setPurchClassLedgerIDEndsWith(String value) { this.PurchClassLedgerIDEndsWith = value; return this; } public String getPurchClassLedgerIDContains() { return PurchClassLedgerIDContains; } public PO_ClassificationQuery setPurchClassLedgerIDContains(String value) { this.PurchClassLedgerIDContains = value; return this; } public String getPurchClassLedgerIDLike() { return PurchClassLedgerIDLike; } public PO_ClassificationQuery setPurchClassLedgerIDLike(String value) { this.PurchClassLedgerIDLike = value; return this; } public ArrayList getPurchClassLedgerIDBetween() { return PurchClassLedgerIDBetween; } public PO_ClassificationQuery setPurchClassLedgerIDBetween(ArrayList value) { this.PurchClassLedgerIDBetween = value; return this; } public ArrayList getPurchClassLedgerIDIn() { return PurchClassLedgerIDIn; } public PO_ClassificationQuery setPurchClassLedgerIDIn(ArrayList value) { this.PurchClassLedgerIDIn = value; return this; } public Short getDefaultClass() { return DefaultClass; } public PO_ClassificationQuery setDefaultClass(Short value) { this.DefaultClass = value; return this; } public Short getDefaultClassGreaterThanOrEqualTo() { return DefaultClassGreaterThanOrEqualTo; } public PO_ClassificationQuery setDefaultClassGreaterThanOrEqualTo(Short value) { this.DefaultClassGreaterThanOrEqualTo = value; return this; } public Short getDefaultClassGreaterThan() { return DefaultClassGreaterThan; } public PO_ClassificationQuery setDefaultClassGreaterThan(Short value) { this.DefaultClassGreaterThan = value; return this; } public Short getDefaultClassLessThan() { return DefaultClassLessThan; } public PO_ClassificationQuery setDefaultClassLessThan(Short value) { this.DefaultClassLessThan = value; return this; } public Short getDefaultClassLessThanOrEqualTo() { return DefaultClassLessThanOrEqualTo; } public PO_ClassificationQuery setDefaultClassLessThanOrEqualTo(Short value) { this.DefaultClassLessThanOrEqualTo = value; return this; } public Short getDefaultClassNotEqualTo() { return DefaultClassNotEqualTo; } public PO_ClassificationQuery setDefaultClassNotEqualTo(Short value) { this.DefaultClassNotEqualTo = value; return this; } public ArrayList getDefaultClassBetween() { return DefaultClassBetween; } public PO_ClassificationQuery setDefaultClassBetween(ArrayList value) { this.DefaultClassBetween = value; return this; } public ArrayList getDefaultClassIn() { return DefaultClassIn; } public PO_ClassificationQuery setDefaultClassIn(ArrayList value) { this.DefaultClassIn = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public PO_ClassificationQuery setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getLastSavedDateTimeGreaterThanOrEqualTo() { return LastSavedDateTimeGreaterThanOrEqualTo; } public PO_ClassificationQuery setLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.LastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeGreaterThan() { return LastSavedDateTimeGreaterThan; } public PO_ClassificationQuery setLastSavedDateTimeGreaterThan(Date value) { this.LastSavedDateTimeGreaterThan = value; return this; } public Date getLastSavedDateTimeLessThan() { return LastSavedDateTimeLessThan; } public PO_ClassificationQuery setLastSavedDateTimeLessThan(Date value) { this.LastSavedDateTimeLessThan = value; return this; } public Date getLastSavedDateTimeLessThanOrEqualTo() { return LastSavedDateTimeLessThanOrEqualTo; } public PO_ClassificationQuery setLastSavedDateTimeLessThanOrEqualTo(Date value) { this.LastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeNotEqualTo() { return LastSavedDateTimeNotEqualTo; } public PO_ClassificationQuery setLastSavedDateTimeNotEqualTo(Date value) { this.LastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getLastSavedDateTimeBetween() { return LastSavedDateTimeBetween; } public PO_ClassificationQuery setLastSavedDateTimeBetween(ArrayList value) { this.LastSavedDateTimeBetween = value; return this; } public ArrayList getLastSavedDateTimeIn() { return LastSavedDateTimeIn; } public PO_ClassificationQuery setLastSavedDateTimeIn(ArrayList value) { this.LastSavedDateTimeIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class PO_CustomSettingsQuery extends QueryDb implements IReturn> { public String SettingID = null; public String SettingIDStartsWith = null; public String SettingIDEndsWith = null; public String SettingIDContains = null; public String SettingIDLike = null; public ArrayList SettingIDBetween = null; public ArrayList SettingIDIn = null; public Date LastSavedDateTime = null; public Date LastSavedDateTimeGreaterThanOrEqualTo = null; public Date LastSavedDateTimeGreaterThan = null; public Date LastSavedDateTimeLessThan = null; public Date LastSavedDateTimeLessThanOrEqualTo = null; public Date LastSavedDateTimeNotEqualTo = null; public ArrayList LastSavedDateTimeBetween = null; public ArrayList LastSavedDateTimeIn = null; public String SettingDescription = null; public String SettingDescriptionStartsWith = null; public String SettingDescriptionEndsWith = null; public String SettingDescriptionContains = null; public String SettingDescriptionLike = null; public ArrayList SettingDescriptionBetween = null; public ArrayList SettingDescriptionIn = null; public String SettingName = null; public String SettingNameStartsWith = null; public String SettingNameEndsWith = null; public String SettingNameContains = null; public String SettingNameLike = null; public ArrayList SettingNameBetween = null; public ArrayList SettingNameIn = null; public BigDecimal DisplayOrder = null; public BigDecimal DisplayOrderGreaterThanOrEqualTo = null; public BigDecimal DisplayOrderGreaterThan = null; public BigDecimal DisplayOrderLessThan = null; public BigDecimal DisplayOrderLessThanOrEqualTo = null; public BigDecimal DisplayOrderNotEqualTo = null; public ArrayList DisplayOrderBetween = null; public ArrayList DisplayOrderIn = null; public Short CellType = null; public Short CellTypeGreaterThanOrEqualTo = null; public Short CellTypeGreaterThan = null; public Short CellTypeLessThan = null; public Short CellTypeLessThanOrEqualTo = null; public Short CellTypeNotEqualTo = null; public ArrayList CellTypeBetween = null; public ArrayList CellTypeIn = null; public String ScriptFormatCell = null; public String ScriptFormatCellStartsWith = null; public String ScriptFormatCellEndsWith = null; public String ScriptFormatCellContains = null; public String ScriptFormatCellLike = null; public ArrayList ScriptFormatCellBetween = null; public ArrayList ScriptFormatCellIn = null; public String ScriptButtonClicked = null; public String ScriptButtonClickedStartsWith = null; public String ScriptButtonClickedEndsWith = null; public String ScriptButtonClickedContains = null; public String ScriptButtonClickedLike = null; public ArrayList ScriptButtonClickedBetween = null; public ArrayList ScriptButtonClickedIn = null; public String ScriptReadData = null; public String ScriptReadDataStartsWith = null; public String ScriptReadDataEndsWith = null; public String ScriptReadDataContains = null; public String ScriptReadDataLike = null; public ArrayList ScriptReadDataBetween = null; public ArrayList ScriptReadDataIn = null; public UUID SY_Plugin_RecID = null; public ArrayList SY_Plugin_RecIDIn = null; public String getSettingID() { return SettingID; } public PO_CustomSettingsQuery setSettingID(String value) { this.SettingID = value; return this; } public String getSettingIDStartsWith() { return SettingIDStartsWith; } public PO_CustomSettingsQuery setSettingIDStartsWith(String value) { this.SettingIDStartsWith = value; return this; } public String getSettingIDEndsWith() { return SettingIDEndsWith; } public PO_CustomSettingsQuery setSettingIDEndsWith(String value) { this.SettingIDEndsWith = value; return this; } public String getSettingIDContains() { return SettingIDContains; } public PO_CustomSettingsQuery setSettingIDContains(String value) { this.SettingIDContains = value; return this; } public String getSettingIDLike() { return SettingIDLike; } public PO_CustomSettingsQuery setSettingIDLike(String value) { this.SettingIDLike = value; return this; } public ArrayList getSettingIDBetween() { return SettingIDBetween; } public PO_CustomSettingsQuery setSettingIDBetween(ArrayList value) { this.SettingIDBetween = value; return this; } public ArrayList getSettingIDIn() { return SettingIDIn; } public PO_CustomSettingsQuery setSettingIDIn(ArrayList value) { this.SettingIDIn = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public PO_CustomSettingsQuery setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getLastSavedDateTimeGreaterThanOrEqualTo() { return LastSavedDateTimeGreaterThanOrEqualTo; } public PO_CustomSettingsQuery setLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.LastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeGreaterThan() { return LastSavedDateTimeGreaterThan; } public PO_CustomSettingsQuery setLastSavedDateTimeGreaterThan(Date value) { this.LastSavedDateTimeGreaterThan = value; return this; } public Date getLastSavedDateTimeLessThan() { return LastSavedDateTimeLessThan; } public PO_CustomSettingsQuery setLastSavedDateTimeLessThan(Date value) { this.LastSavedDateTimeLessThan = value; return this; } public Date getLastSavedDateTimeLessThanOrEqualTo() { return LastSavedDateTimeLessThanOrEqualTo; } public PO_CustomSettingsQuery setLastSavedDateTimeLessThanOrEqualTo(Date value) { this.LastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeNotEqualTo() { return LastSavedDateTimeNotEqualTo; } public PO_CustomSettingsQuery setLastSavedDateTimeNotEqualTo(Date value) { this.LastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getLastSavedDateTimeBetween() { return LastSavedDateTimeBetween; } public PO_CustomSettingsQuery setLastSavedDateTimeBetween(ArrayList value) { this.LastSavedDateTimeBetween = value; return this; } public ArrayList getLastSavedDateTimeIn() { return LastSavedDateTimeIn; } public PO_CustomSettingsQuery setLastSavedDateTimeIn(ArrayList value) { this.LastSavedDateTimeIn = value; return this; } public String getSettingDescription() { return SettingDescription; } public PO_CustomSettingsQuery setSettingDescription(String value) { this.SettingDescription = value; return this; } public String getSettingDescriptionStartsWith() { return SettingDescriptionStartsWith; } public PO_CustomSettingsQuery setSettingDescriptionStartsWith(String value) { this.SettingDescriptionStartsWith = value; return this; } public String getSettingDescriptionEndsWith() { return SettingDescriptionEndsWith; } public PO_CustomSettingsQuery setSettingDescriptionEndsWith(String value) { this.SettingDescriptionEndsWith = value; return this; } public String getSettingDescriptionContains() { return SettingDescriptionContains; } public PO_CustomSettingsQuery setSettingDescriptionContains(String value) { this.SettingDescriptionContains = value; return this; } public String getSettingDescriptionLike() { return SettingDescriptionLike; } public PO_CustomSettingsQuery setSettingDescriptionLike(String value) { this.SettingDescriptionLike = value; return this; } public ArrayList getSettingDescriptionBetween() { return SettingDescriptionBetween; } public PO_CustomSettingsQuery setSettingDescriptionBetween(ArrayList value) { this.SettingDescriptionBetween = value; return this; } public ArrayList getSettingDescriptionIn() { return SettingDescriptionIn; } public PO_CustomSettingsQuery setSettingDescriptionIn(ArrayList value) { this.SettingDescriptionIn = value; return this; } public String getSettingName() { return SettingName; } public PO_CustomSettingsQuery setSettingName(String value) { this.SettingName = value; return this; } public String getSettingNameStartsWith() { return SettingNameStartsWith; } public PO_CustomSettingsQuery setSettingNameStartsWith(String value) { this.SettingNameStartsWith = value; return this; } public String getSettingNameEndsWith() { return SettingNameEndsWith; } public PO_CustomSettingsQuery setSettingNameEndsWith(String value) { this.SettingNameEndsWith = value; return this; } public String getSettingNameContains() { return SettingNameContains; } public PO_CustomSettingsQuery setSettingNameContains(String value) { this.SettingNameContains = value; return this; } public String getSettingNameLike() { return SettingNameLike; } public PO_CustomSettingsQuery setSettingNameLike(String value) { this.SettingNameLike = value; return this; } public ArrayList getSettingNameBetween() { return SettingNameBetween; } public PO_CustomSettingsQuery setSettingNameBetween(ArrayList value) { this.SettingNameBetween = value; return this; } public ArrayList getSettingNameIn() { return SettingNameIn; } public PO_CustomSettingsQuery setSettingNameIn(ArrayList value) { this.SettingNameIn = value; return this; } public BigDecimal getDisplayOrder() { return DisplayOrder; } public PO_CustomSettingsQuery setDisplayOrder(BigDecimal value) { this.DisplayOrder = value; return this; } public BigDecimal getDisplayOrderGreaterThanOrEqualTo() { return DisplayOrderGreaterThanOrEqualTo; } public PO_CustomSettingsQuery setDisplayOrderGreaterThanOrEqualTo(BigDecimal value) { this.DisplayOrderGreaterThanOrEqualTo = value; return this; } public BigDecimal getDisplayOrderGreaterThan() { return DisplayOrderGreaterThan; } public PO_CustomSettingsQuery setDisplayOrderGreaterThan(BigDecimal value) { this.DisplayOrderGreaterThan = value; return this; } public BigDecimal getDisplayOrderLessThan() { return DisplayOrderLessThan; } public PO_CustomSettingsQuery setDisplayOrderLessThan(BigDecimal value) { this.DisplayOrderLessThan = value; return this; } public BigDecimal getDisplayOrderLessThanOrEqualTo() { return DisplayOrderLessThanOrEqualTo; } public PO_CustomSettingsQuery setDisplayOrderLessThanOrEqualTo(BigDecimal value) { this.DisplayOrderLessThanOrEqualTo = value; return this; } public BigDecimal getDisplayOrderNotEqualTo() { return DisplayOrderNotEqualTo; } public PO_CustomSettingsQuery setDisplayOrderNotEqualTo(BigDecimal value) { this.DisplayOrderNotEqualTo = value; return this; } public ArrayList getDisplayOrderBetween() { return DisplayOrderBetween; } public PO_CustomSettingsQuery setDisplayOrderBetween(ArrayList value) { this.DisplayOrderBetween = value; return this; } public ArrayList getDisplayOrderIn() { return DisplayOrderIn; } public PO_CustomSettingsQuery setDisplayOrderIn(ArrayList value) { this.DisplayOrderIn = value; return this; } public Short getCellType() { return CellType; } public PO_CustomSettingsQuery setCellType(Short value) { this.CellType = value; return this; } public Short getCellTypeGreaterThanOrEqualTo() { return CellTypeGreaterThanOrEqualTo; } public PO_CustomSettingsQuery setCellTypeGreaterThanOrEqualTo(Short value) { this.CellTypeGreaterThanOrEqualTo = value; return this; } public Short getCellTypeGreaterThan() { return CellTypeGreaterThan; } public PO_CustomSettingsQuery setCellTypeGreaterThan(Short value) { this.CellTypeGreaterThan = value; return this; } public Short getCellTypeLessThan() { return CellTypeLessThan; } public PO_CustomSettingsQuery setCellTypeLessThan(Short value) { this.CellTypeLessThan = value; return this; } public Short getCellTypeLessThanOrEqualTo() { return CellTypeLessThanOrEqualTo; } public PO_CustomSettingsQuery setCellTypeLessThanOrEqualTo(Short value) { this.CellTypeLessThanOrEqualTo = value; return this; } public Short getCellTypeNotEqualTo() { return CellTypeNotEqualTo; } public PO_CustomSettingsQuery setCellTypeNotEqualTo(Short value) { this.CellTypeNotEqualTo = value; return this; } public ArrayList getCellTypeBetween() { return CellTypeBetween; } public PO_CustomSettingsQuery setCellTypeBetween(ArrayList value) { this.CellTypeBetween = value; return this; } public ArrayList getCellTypeIn() { return CellTypeIn; } public PO_CustomSettingsQuery setCellTypeIn(ArrayList value) { this.CellTypeIn = value; return this; } public String getScriptFormatCell() { return ScriptFormatCell; } public PO_CustomSettingsQuery setScriptFormatCell(String value) { this.ScriptFormatCell = value; return this; } public String getScriptFormatCellStartsWith() { return ScriptFormatCellStartsWith; } public PO_CustomSettingsQuery setScriptFormatCellStartsWith(String value) { this.ScriptFormatCellStartsWith = value; return this; } public String getScriptFormatCellEndsWith() { return ScriptFormatCellEndsWith; } public PO_CustomSettingsQuery setScriptFormatCellEndsWith(String value) { this.ScriptFormatCellEndsWith = value; return this; } public String getScriptFormatCellContains() { return ScriptFormatCellContains; } public PO_CustomSettingsQuery setScriptFormatCellContains(String value) { this.ScriptFormatCellContains = value; return this; } public String getScriptFormatCellLike() { return ScriptFormatCellLike; } public PO_CustomSettingsQuery setScriptFormatCellLike(String value) { this.ScriptFormatCellLike = value; return this; } public ArrayList getScriptFormatCellBetween() { return ScriptFormatCellBetween; } public PO_CustomSettingsQuery setScriptFormatCellBetween(ArrayList value) { this.ScriptFormatCellBetween = value; return this; } public ArrayList getScriptFormatCellIn() { return ScriptFormatCellIn; } public PO_CustomSettingsQuery setScriptFormatCellIn(ArrayList value) { this.ScriptFormatCellIn = value; return this; } public String getScriptButtonClicked() { return ScriptButtonClicked; } public PO_CustomSettingsQuery setScriptButtonClicked(String value) { this.ScriptButtonClicked = value; return this; } public String getScriptButtonClickedStartsWith() { return ScriptButtonClickedStartsWith; } public PO_CustomSettingsQuery setScriptButtonClickedStartsWith(String value) { this.ScriptButtonClickedStartsWith = value; return this; } public String getScriptButtonClickedEndsWith() { return ScriptButtonClickedEndsWith; } public PO_CustomSettingsQuery setScriptButtonClickedEndsWith(String value) { this.ScriptButtonClickedEndsWith = value; return this; } public String getScriptButtonClickedContains() { return ScriptButtonClickedContains; } public PO_CustomSettingsQuery setScriptButtonClickedContains(String value) { this.ScriptButtonClickedContains = value; return this; } public String getScriptButtonClickedLike() { return ScriptButtonClickedLike; } public PO_CustomSettingsQuery setScriptButtonClickedLike(String value) { this.ScriptButtonClickedLike = value; return this; } public ArrayList getScriptButtonClickedBetween() { return ScriptButtonClickedBetween; } public PO_CustomSettingsQuery setScriptButtonClickedBetween(ArrayList value) { this.ScriptButtonClickedBetween = value; return this; } public ArrayList getScriptButtonClickedIn() { return ScriptButtonClickedIn; } public PO_CustomSettingsQuery setScriptButtonClickedIn(ArrayList value) { this.ScriptButtonClickedIn = value; return this; } public String getScriptReadData() { return ScriptReadData; } public PO_CustomSettingsQuery setScriptReadData(String value) { this.ScriptReadData = value; return this; } public String getScriptReadDataStartsWith() { return ScriptReadDataStartsWith; } public PO_CustomSettingsQuery setScriptReadDataStartsWith(String value) { this.ScriptReadDataStartsWith = value; return this; } public String getScriptReadDataEndsWith() { return ScriptReadDataEndsWith; } public PO_CustomSettingsQuery setScriptReadDataEndsWith(String value) { this.ScriptReadDataEndsWith = value; return this; } public String getScriptReadDataContains() { return ScriptReadDataContains; } public PO_CustomSettingsQuery setScriptReadDataContains(String value) { this.ScriptReadDataContains = value; return this; } public String getScriptReadDataLike() { return ScriptReadDataLike; } public PO_CustomSettingsQuery setScriptReadDataLike(String value) { this.ScriptReadDataLike = value; return this; } public ArrayList getScriptReadDataBetween() { return ScriptReadDataBetween; } public PO_CustomSettingsQuery setScriptReadDataBetween(ArrayList value) { this.ScriptReadDataBetween = value; return this; } public ArrayList getScriptReadDataIn() { return ScriptReadDataIn; } public PO_CustomSettingsQuery setScriptReadDataIn(ArrayList value) { this.ScriptReadDataIn = value; return this; } public UUID getSyPluginRecID() { return SY_Plugin_RecID; } public PO_CustomSettingsQuery setSyPluginRecID(UUID value) { this.SY_Plugin_RecID = value; return this; } public ArrayList getSyPluginRecIDIn() { return SY_Plugin_RecIDIn; } public PO_CustomSettingsQuery setSyPluginRecIDIn(ArrayList value) { this.SY_Plugin_RecIDIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class PO_CustomSettingValuesQuery extends QueryDb implements IReturn> { public String SettingValueID = null; public String SettingValueIDStartsWith = null; public String SettingValueIDEndsWith = null; public String SettingValueIDContains = null; public String SettingValueIDLike = null; public ArrayList SettingValueIDBetween = null; public ArrayList SettingValueIDIn = null; public String SettingID = null; public String SettingIDStartsWith = null; public String SettingIDEndsWith = null; public String SettingIDContains = null; public String SettingIDLike = null; public ArrayList SettingIDBetween = null; public ArrayList SettingIDIn = null; public String PurchaseOrderID = null; public String PurchaseOrderIDStartsWith = null; public String PurchaseOrderIDEndsWith = null; public String PurchaseOrderIDContains = null; public String PurchaseOrderIDLike = null; public ArrayList PurchaseOrderIDBetween = null; public ArrayList PurchaseOrderIDIn = null; public String Contents = null; public String ContentsStartsWith = null; public String ContentsEndsWith = null; public String ContentsContains = null; public String ContentsLike = null; public ArrayList ContentsBetween = null; public ArrayList ContentsIn = null; public Date LastSavedDateTime = null; public Date LastSavedDateTimeGreaterThanOrEqualTo = null; public Date LastSavedDateTimeGreaterThan = null; public Date LastSavedDateTimeLessThan = null; public Date LastSavedDateTimeLessThanOrEqualTo = null; public Date LastSavedDateTimeNotEqualTo = null; public ArrayList LastSavedDateTimeBetween = null; public ArrayList LastSavedDateTimeIn = null; public String getSettingValueID() { return SettingValueID; } public PO_CustomSettingValuesQuery setSettingValueID(String value) { this.SettingValueID = value; return this; } public String getSettingValueIDStartsWith() { return SettingValueIDStartsWith; } public PO_CustomSettingValuesQuery setSettingValueIDStartsWith(String value) { this.SettingValueIDStartsWith = value; return this; } public String getSettingValueIDEndsWith() { return SettingValueIDEndsWith; } public PO_CustomSettingValuesQuery setSettingValueIDEndsWith(String value) { this.SettingValueIDEndsWith = value; return this; } public String getSettingValueIDContains() { return SettingValueIDContains; } public PO_CustomSettingValuesQuery setSettingValueIDContains(String value) { this.SettingValueIDContains = value; return this; } public String getSettingValueIDLike() { return SettingValueIDLike; } public PO_CustomSettingValuesQuery setSettingValueIDLike(String value) { this.SettingValueIDLike = value; return this; } public ArrayList getSettingValueIDBetween() { return SettingValueIDBetween; } public PO_CustomSettingValuesQuery setSettingValueIDBetween(ArrayList value) { this.SettingValueIDBetween = value; return this; } public ArrayList getSettingValueIDIn() { return SettingValueIDIn; } public PO_CustomSettingValuesQuery setSettingValueIDIn(ArrayList value) { this.SettingValueIDIn = value; return this; } public String getSettingID() { return SettingID; } public PO_CustomSettingValuesQuery setSettingID(String value) { this.SettingID = value; return this; } public String getSettingIDStartsWith() { return SettingIDStartsWith; } public PO_CustomSettingValuesQuery setSettingIDStartsWith(String value) { this.SettingIDStartsWith = value; return this; } public String getSettingIDEndsWith() { return SettingIDEndsWith; } public PO_CustomSettingValuesQuery setSettingIDEndsWith(String value) { this.SettingIDEndsWith = value; return this; } public String getSettingIDContains() { return SettingIDContains; } public PO_CustomSettingValuesQuery setSettingIDContains(String value) { this.SettingIDContains = value; return this; } public String getSettingIDLike() { return SettingIDLike; } public PO_CustomSettingValuesQuery setSettingIDLike(String value) { this.SettingIDLike = value; return this; } public ArrayList getSettingIDBetween() { return SettingIDBetween; } public PO_CustomSettingValuesQuery setSettingIDBetween(ArrayList value) { this.SettingIDBetween = value; return this; } public ArrayList getSettingIDIn() { return SettingIDIn; } public PO_CustomSettingValuesQuery setSettingIDIn(ArrayList value) { this.SettingIDIn = value; return this; } public String getPurchaseOrderID() { return PurchaseOrderID; } public PO_CustomSettingValuesQuery setPurchaseOrderID(String value) { this.PurchaseOrderID = value; return this; } public String getPurchaseOrderIDStartsWith() { return PurchaseOrderIDStartsWith; } public PO_CustomSettingValuesQuery setPurchaseOrderIDStartsWith(String value) { this.PurchaseOrderIDStartsWith = value; return this; } public String getPurchaseOrderIDEndsWith() { return PurchaseOrderIDEndsWith; } public PO_CustomSettingValuesQuery setPurchaseOrderIDEndsWith(String value) { this.PurchaseOrderIDEndsWith = value; return this; } public String getPurchaseOrderIDContains() { return PurchaseOrderIDContains; } public PO_CustomSettingValuesQuery setPurchaseOrderIDContains(String value) { this.PurchaseOrderIDContains = value; return this; } public String getPurchaseOrderIDLike() { return PurchaseOrderIDLike; } public PO_CustomSettingValuesQuery setPurchaseOrderIDLike(String value) { this.PurchaseOrderIDLike = value; return this; } public ArrayList getPurchaseOrderIDBetween() { return PurchaseOrderIDBetween; } public PO_CustomSettingValuesQuery setPurchaseOrderIDBetween(ArrayList value) { this.PurchaseOrderIDBetween = value; return this; } public ArrayList getPurchaseOrderIDIn() { return PurchaseOrderIDIn; } public PO_CustomSettingValuesQuery setPurchaseOrderIDIn(ArrayList value) { this.PurchaseOrderIDIn = value; return this; } public String getContents() { return Contents; } public PO_CustomSettingValuesQuery setContents(String value) { this.Contents = value; return this; } public String getContentsStartsWith() { return ContentsStartsWith; } public PO_CustomSettingValuesQuery setContentsStartsWith(String value) { this.ContentsStartsWith = value; return this; } public String getContentsEndsWith() { return ContentsEndsWith; } public PO_CustomSettingValuesQuery setContentsEndsWith(String value) { this.ContentsEndsWith = value; return this; } public String getContentsContains() { return ContentsContains; } public PO_CustomSettingValuesQuery setContentsContains(String value) { this.ContentsContains = value; return this; } public String getContentsLike() { return ContentsLike; } public PO_CustomSettingValuesQuery setContentsLike(String value) { this.ContentsLike = value; return this; } public ArrayList getContentsBetween() { return ContentsBetween; } public PO_CustomSettingValuesQuery setContentsBetween(ArrayList value) { this.ContentsBetween = value; return this; } public ArrayList getContentsIn() { return ContentsIn; } public PO_CustomSettingValuesQuery setContentsIn(ArrayList value) { this.ContentsIn = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public PO_CustomSettingValuesQuery setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getLastSavedDateTimeGreaterThanOrEqualTo() { return LastSavedDateTimeGreaterThanOrEqualTo; } public PO_CustomSettingValuesQuery setLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.LastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeGreaterThan() { return LastSavedDateTimeGreaterThan; } public PO_CustomSettingValuesQuery setLastSavedDateTimeGreaterThan(Date value) { this.LastSavedDateTimeGreaterThan = value; return this; } public Date getLastSavedDateTimeLessThan() { return LastSavedDateTimeLessThan; } public PO_CustomSettingValuesQuery setLastSavedDateTimeLessThan(Date value) { this.LastSavedDateTimeLessThan = value; return this; } public Date getLastSavedDateTimeLessThanOrEqualTo() { return LastSavedDateTimeLessThanOrEqualTo; } public PO_CustomSettingValuesQuery setLastSavedDateTimeLessThanOrEqualTo(Date value) { this.LastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeNotEqualTo() { return LastSavedDateTimeNotEqualTo; } public PO_CustomSettingValuesQuery setLastSavedDateTimeNotEqualTo(Date value) { this.LastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getLastSavedDateTimeBetween() { return LastSavedDateTimeBetween; } public PO_CustomSettingValuesQuery setLastSavedDateTimeBetween(ArrayList value) { this.LastSavedDateTimeBetween = value; return this; } public ArrayList getLastSavedDateTimeIn() { return LastSavedDateTimeIn; } public PO_CustomSettingValuesQuery setLastSavedDateTimeIn(ArrayList value) { this.LastSavedDateTimeIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class PO_DocumentsQuery extends QueryDb implements IReturn> { public String RecID = null; public String RecIDStartsWith = null; public String RecIDEndsWith = null; public String RecIDContains = null; public String RecIDLike = null; public ArrayList RecIDBetween = null; public ArrayList RecIDIn = null; public String PurchaseOrderID = null; public String PurchaseOrderIDStartsWith = null; public String PurchaseOrderIDEndsWith = null; public String PurchaseOrderIDContains = null; public String PurchaseOrderIDLike = null; public ArrayList PurchaseOrderIDBetween = null; public ArrayList PurchaseOrderIDIn = null; public String FileID = null; public String FileIDStartsWith = null; public String FileIDEndsWith = null; public String FileIDContains = null; public String FileIDLike = null; public ArrayList FileIDBetween = null; public ArrayList FileIDIn = null; public String DocumentTypeID = null; public String DocumentTypeIDStartsWith = null; public String DocumentTypeIDEndsWith = null; public String DocumentTypeIDContains = null; public String DocumentTypeIDLike = null; public ArrayList DocumentTypeIDBetween = null; public ArrayList DocumentTypeIDIn = null; public Date LastSavedDateTime = null; public Date LastSavedDateTimeGreaterThanOrEqualTo = null; public Date LastSavedDateTimeGreaterThan = null; public Date LastSavedDateTimeLessThan = null; public Date LastSavedDateTimeLessThanOrEqualTo = null; public Date LastSavedDateTimeNotEqualTo = null; public ArrayList LastSavedDateTimeBetween = null; public ArrayList LastSavedDateTimeIn = null; public String LastSavedByStaffID = null; public String LastSavedByStaffIDStartsWith = null; public String LastSavedByStaffIDEndsWith = null; public String LastSavedByStaffIDContains = null; public String LastSavedByStaffIDLike = null; public ArrayList LastSavedByStaffIDBetween = null; public ArrayList LastSavedByStaffIDIn = null; public ArrayList FileBinary = null; public String Description = null; public String DescriptionStartsWith = null; public String DescriptionEndsWith = null; public String DescriptionContains = null; public String DescriptionLike = null; public ArrayList DescriptionBetween = null; public ArrayList DescriptionIn = null; public String PhysicalFileName = null; public String PhysicalFileNameStartsWith = null; public String PhysicalFileNameEndsWith = null; public String PhysicalFileNameContains = null; public String PhysicalFileNameLike = null; public ArrayList PhysicalFileNameBetween = null; public ArrayList PhysicalFileNameIn = null; public Integer ItemNo = null; public Integer ItemNoGreaterThanOrEqualTo = null; public Integer ItemNoGreaterThan = null; public Integer ItemNoLessThan = null; public Integer ItemNoLessThanOrEqualTo = null; public Integer ItemNoNotEqualTo = null; public ArrayList ItemNoBetween = null; public ArrayList ItemNoIn = null; public String getRecID() { return RecID; } public PO_DocumentsQuery setRecID(String value) { this.RecID = value; return this; } public String getRecIDStartsWith() { return RecIDStartsWith; } public PO_DocumentsQuery setRecIDStartsWith(String value) { this.RecIDStartsWith = value; return this; } public String getRecIDEndsWith() { return RecIDEndsWith; } public PO_DocumentsQuery setRecIDEndsWith(String value) { this.RecIDEndsWith = value; return this; } public String getRecIDContains() { return RecIDContains; } public PO_DocumentsQuery setRecIDContains(String value) { this.RecIDContains = value; return this; } public String getRecIDLike() { return RecIDLike; } public PO_DocumentsQuery setRecIDLike(String value) { this.RecIDLike = value; return this; } public ArrayList getRecIDBetween() { return RecIDBetween; } public PO_DocumentsQuery setRecIDBetween(ArrayList value) { this.RecIDBetween = value; return this; } public ArrayList getRecIDIn() { return RecIDIn; } public PO_DocumentsQuery setRecIDIn(ArrayList value) { this.RecIDIn = value; return this; } public String getPurchaseOrderID() { return PurchaseOrderID; } public PO_DocumentsQuery setPurchaseOrderID(String value) { this.PurchaseOrderID = value; return this; } public String getPurchaseOrderIDStartsWith() { return PurchaseOrderIDStartsWith; } public PO_DocumentsQuery setPurchaseOrderIDStartsWith(String value) { this.PurchaseOrderIDStartsWith = value; return this; } public String getPurchaseOrderIDEndsWith() { return PurchaseOrderIDEndsWith; } public PO_DocumentsQuery setPurchaseOrderIDEndsWith(String value) { this.PurchaseOrderIDEndsWith = value; return this; } public String getPurchaseOrderIDContains() { return PurchaseOrderIDContains; } public PO_DocumentsQuery setPurchaseOrderIDContains(String value) { this.PurchaseOrderIDContains = value; return this; } public String getPurchaseOrderIDLike() { return PurchaseOrderIDLike; } public PO_DocumentsQuery setPurchaseOrderIDLike(String value) { this.PurchaseOrderIDLike = value; return this; } public ArrayList getPurchaseOrderIDBetween() { return PurchaseOrderIDBetween; } public PO_DocumentsQuery setPurchaseOrderIDBetween(ArrayList value) { this.PurchaseOrderIDBetween = value; return this; } public ArrayList getPurchaseOrderIDIn() { return PurchaseOrderIDIn; } public PO_DocumentsQuery setPurchaseOrderIDIn(ArrayList value) { this.PurchaseOrderIDIn = value; return this; } public String getFileID() { return FileID; } public PO_DocumentsQuery setFileID(String value) { this.FileID = value; return this; } public String getFileIDStartsWith() { return FileIDStartsWith; } public PO_DocumentsQuery setFileIDStartsWith(String value) { this.FileIDStartsWith = value; return this; } public String getFileIDEndsWith() { return FileIDEndsWith; } public PO_DocumentsQuery setFileIDEndsWith(String value) { this.FileIDEndsWith = value; return this; } public String getFileIDContains() { return FileIDContains; } public PO_DocumentsQuery setFileIDContains(String value) { this.FileIDContains = value; return this; } public String getFileIDLike() { return FileIDLike; } public PO_DocumentsQuery setFileIDLike(String value) { this.FileIDLike = value; return this; } public ArrayList getFileIDBetween() { return FileIDBetween; } public PO_DocumentsQuery setFileIDBetween(ArrayList value) { this.FileIDBetween = value; return this; } public ArrayList getFileIDIn() { return FileIDIn; } public PO_DocumentsQuery setFileIDIn(ArrayList value) { this.FileIDIn = value; return this; } public String getDocumentTypeID() { return DocumentTypeID; } public PO_DocumentsQuery setDocumentTypeID(String value) { this.DocumentTypeID = value; return this; } public String getDocumentTypeIDStartsWith() { return DocumentTypeIDStartsWith; } public PO_DocumentsQuery setDocumentTypeIDStartsWith(String value) { this.DocumentTypeIDStartsWith = value; return this; } public String getDocumentTypeIDEndsWith() { return DocumentTypeIDEndsWith; } public PO_DocumentsQuery setDocumentTypeIDEndsWith(String value) { this.DocumentTypeIDEndsWith = value; return this; } public String getDocumentTypeIDContains() { return DocumentTypeIDContains; } public PO_DocumentsQuery setDocumentTypeIDContains(String value) { this.DocumentTypeIDContains = value; return this; } public String getDocumentTypeIDLike() { return DocumentTypeIDLike; } public PO_DocumentsQuery setDocumentTypeIDLike(String value) { this.DocumentTypeIDLike = value; return this; } public ArrayList getDocumentTypeIDBetween() { return DocumentTypeIDBetween; } public PO_DocumentsQuery setDocumentTypeIDBetween(ArrayList value) { this.DocumentTypeIDBetween = value; return this; } public ArrayList getDocumentTypeIDIn() { return DocumentTypeIDIn; } public PO_DocumentsQuery setDocumentTypeIDIn(ArrayList value) { this.DocumentTypeIDIn = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public PO_DocumentsQuery setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getLastSavedDateTimeGreaterThanOrEqualTo() { return LastSavedDateTimeGreaterThanOrEqualTo; } public PO_DocumentsQuery setLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.LastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeGreaterThan() { return LastSavedDateTimeGreaterThan; } public PO_DocumentsQuery setLastSavedDateTimeGreaterThan(Date value) { this.LastSavedDateTimeGreaterThan = value; return this; } public Date getLastSavedDateTimeLessThan() { return LastSavedDateTimeLessThan; } public PO_DocumentsQuery setLastSavedDateTimeLessThan(Date value) { this.LastSavedDateTimeLessThan = value; return this; } public Date getLastSavedDateTimeLessThanOrEqualTo() { return LastSavedDateTimeLessThanOrEqualTo; } public PO_DocumentsQuery setLastSavedDateTimeLessThanOrEqualTo(Date value) { this.LastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeNotEqualTo() { return LastSavedDateTimeNotEqualTo; } public PO_DocumentsQuery setLastSavedDateTimeNotEqualTo(Date value) { this.LastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getLastSavedDateTimeBetween() { return LastSavedDateTimeBetween; } public PO_DocumentsQuery setLastSavedDateTimeBetween(ArrayList value) { this.LastSavedDateTimeBetween = value; return this; } public ArrayList getLastSavedDateTimeIn() { return LastSavedDateTimeIn; } public PO_DocumentsQuery setLastSavedDateTimeIn(ArrayList value) { this.LastSavedDateTimeIn = value; return this; } public String getLastSavedByStaffID() { return LastSavedByStaffID; } public PO_DocumentsQuery setLastSavedByStaffID(String value) { this.LastSavedByStaffID = value; return this; } public String getLastSavedByStaffIDStartsWith() { return LastSavedByStaffIDStartsWith; } public PO_DocumentsQuery setLastSavedByStaffIDStartsWith(String value) { this.LastSavedByStaffIDStartsWith = value; return this; } public String getLastSavedByStaffIDEndsWith() { return LastSavedByStaffIDEndsWith; } public PO_DocumentsQuery setLastSavedByStaffIDEndsWith(String value) { this.LastSavedByStaffIDEndsWith = value; return this; } public String getLastSavedByStaffIDContains() { return LastSavedByStaffIDContains; } public PO_DocumentsQuery setLastSavedByStaffIDContains(String value) { this.LastSavedByStaffIDContains = value; return this; } public String getLastSavedByStaffIDLike() { return LastSavedByStaffIDLike; } public PO_DocumentsQuery setLastSavedByStaffIDLike(String value) { this.LastSavedByStaffIDLike = value; return this; } public ArrayList getLastSavedByStaffIDBetween() { return LastSavedByStaffIDBetween; } public PO_DocumentsQuery setLastSavedByStaffIDBetween(ArrayList value) { this.LastSavedByStaffIDBetween = value; return this; } public ArrayList getLastSavedByStaffIDIn() { return LastSavedByStaffIDIn; } public PO_DocumentsQuery setLastSavedByStaffIDIn(ArrayList value) { this.LastSavedByStaffIDIn = value; return this; } public ArrayList getFileBinary() { return FileBinary; } public PO_DocumentsQuery setFileBinary(ArrayList value) { this.FileBinary = value; return this; } public String getDescription() { return Description; } public PO_DocumentsQuery setDescription(String value) { this.Description = value; return this; } public String getDescriptionStartsWith() { return DescriptionStartsWith; } public PO_DocumentsQuery setDescriptionStartsWith(String value) { this.DescriptionStartsWith = value; return this; } public String getDescriptionEndsWith() { return DescriptionEndsWith; } public PO_DocumentsQuery setDescriptionEndsWith(String value) { this.DescriptionEndsWith = value; return this; } public String getDescriptionContains() { return DescriptionContains; } public PO_DocumentsQuery setDescriptionContains(String value) { this.DescriptionContains = value; return this; } public String getDescriptionLike() { return DescriptionLike; } public PO_DocumentsQuery setDescriptionLike(String value) { this.DescriptionLike = value; return this; } public ArrayList getDescriptionBetween() { return DescriptionBetween; } public PO_DocumentsQuery setDescriptionBetween(ArrayList value) { this.DescriptionBetween = value; return this; } public ArrayList getDescriptionIn() { return DescriptionIn; } public PO_DocumentsQuery setDescriptionIn(ArrayList value) { this.DescriptionIn = value; return this; } public String getPhysicalFileName() { return PhysicalFileName; } public PO_DocumentsQuery setPhysicalFileName(String value) { this.PhysicalFileName = value; return this; } public String getPhysicalFileNameStartsWith() { return PhysicalFileNameStartsWith; } public PO_DocumentsQuery setPhysicalFileNameStartsWith(String value) { this.PhysicalFileNameStartsWith = value; return this; } public String getPhysicalFileNameEndsWith() { return PhysicalFileNameEndsWith; } public PO_DocumentsQuery setPhysicalFileNameEndsWith(String value) { this.PhysicalFileNameEndsWith = value; return this; } public String getPhysicalFileNameContains() { return PhysicalFileNameContains; } public PO_DocumentsQuery setPhysicalFileNameContains(String value) { this.PhysicalFileNameContains = value; return this; } public String getPhysicalFileNameLike() { return PhysicalFileNameLike; } public PO_DocumentsQuery setPhysicalFileNameLike(String value) { this.PhysicalFileNameLike = value; return this; } public ArrayList getPhysicalFileNameBetween() { return PhysicalFileNameBetween; } public PO_DocumentsQuery setPhysicalFileNameBetween(ArrayList value) { this.PhysicalFileNameBetween = value; return this; } public ArrayList getPhysicalFileNameIn() { return PhysicalFileNameIn; } public PO_DocumentsQuery setPhysicalFileNameIn(ArrayList value) { this.PhysicalFileNameIn = value; return this; } public Integer getItemNo() { return ItemNo; } public PO_DocumentsQuery setItemNo(Integer value) { this.ItemNo = value; return this; } public Integer getItemNoGreaterThanOrEqualTo() { return ItemNoGreaterThanOrEqualTo; } public PO_DocumentsQuery setItemNoGreaterThanOrEqualTo(Integer value) { this.ItemNoGreaterThanOrEqualTo = value; return this; } public Integer getItemNoGreaterThan() { return ItemNoGreaterThan; } public PO_DocumentsQuery setItemNoGreaterThan(Integer value) { this.ItemNoGreaterThan = value; return this; } public Integer getItemNoLessThan() { return ItemNoLessThan; } public PO_DocumentsQuery setItemNoLessThan(Integer value) { this.ItemNoLessThan = value; return this; } public Integer getItemNoLessThanOrEqualTo() { return ItemNoLessThanOrEqualTo; } public PO_DocumentsQuery setItemNoLessThanOrEqualTo(Integer value) { this.ItemNoLessThanOrEqualTo = value; return this; } public Integer getItemNoNotEqualTo() { return ItemNoNotEqualTo; } public PO_DocumentsQuery setItemNoNotEqualTo(Integer value) { this.ItemNoNotEqualTo = value; return this; } public ArrayList getItemNoBetween() { return ItemNoBetween; } public PO_DocumentsQuery setItemNoBetween(ArrayList value) { this.ItemNoBetween = value; return this; } public ArrayList getItemNoIn() { return ItemNoIn; } public PO_DocumentsQuery setItemNoIn(ArrayList value) { this.ItemNoIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class PO_EmailLogQuery extends QueryDb implements IReturn> { public String EmailLogID = null; public String EmailLogIDStartsWith = null; public String EmailLogIDEndsWith = null; public String EmailLogIDContains = null; public String EmailLogIDLike = null; public ArrayList EmailLogIDBetween = null; public ArrayList EmailLogIDIn = null; public String OrderID = null; public String OrderIDStartsWith = null; public String OrderIDEndsWith = null; public String OrderIDContains = null; public String OrderIDLike = null; public ArrayList OrderIDBetween = null; public ArrayList OrderIDIn = null; public Date EmailDateTime = null; public Date EmailDateTimeGreaterThanOrEqualTo = null; public Date EmailDateTimeGreaterThan = null; public Date EmailDateTimeLessThan = null; public Date EmailDateTimeLessThanOrEqualTo = null; public Date EmailDateTimeNotEqualTo = null; public ArrayList EmailDateTimeBetween = null; public ArrayList EmailDateTimeIn = null; public String From = null; public String FromStartsWith = null; public String FromEndsWith = null; public String FromContains = null; public String FromLike = null; public ArrayList FromBetween = null; public ArrayList FromIn = null; public String To = null; public String ToStartsWith = null; public String ToEndsWith = null; public String ToContains = null; public String ToLike = null; public ArrayList ToBetween = null; public ArrayList ToIn = null; public String CC = null; public String CCStartsWith = null; public String CCEndsWith = null; public String CCContains = null; public String CCLike = null; public ArrayList CCBetween = null; public ArrayList CCIn = null; public String BCC = null; public String BCCStartsWith = null; public String BCCEndsWith = null; public String BCCContains = null; public String BCCLike = null; public ArrayList BCCBetween = null; public ArrayList BCCIn = null; public String Attachments = null; public String AttachmentsStartsWith = null; public String AttachmentsEndsWith = null; public String AttachmentsContains = null; public String AttachmentsLike = null; public ArrayList AttachmentsBetween = null; public ArrayList AttachmentsIn = null; public String FileID = null; public String FileIDStartsWith = null; public String FileIDEndsWith = null; public String FileIDContains = null; public String FileIDLike = null; public ArrayList FileIDBetween = null; public ArrayList FileIDIn = null; public String Subject = null; public String SubjectStartsWith = null; public String SubjectEndsWith = null; public String SubjectContains = null; public String SubjectLike = null; public ArrayList SubjectBetween = null; public ArrayList SubjectIn = null; public String Body = null; public String BodyStartsWith = null; public String BodyEndsWith = null; public String BodyContains = null; public String BodyLike = null; public ArrayList BodyBetween = null; public ArrayList BodyIn = null; public String StaffID = null; public String StaffIDStartsWith = null; public String StaffIDEndsWith = null; public String StaffIDContains = null; public String StaffIDLike = null; public ArrayList StaffIDBetween = null; public ArrayList StaffIDIn = null; public String EM_Main_RecID = null; public String EM_Main_RecIDStartsWith = null; public String EM_Main_RecIDEndsWith = null; public String EM_Main_RecIDContains = null; public String EM_Main_RecIDLike = null; public ArrayList EM_Main_RecIDBetween = null; public ArrayList EM_Main_RecIDIn = null; public Boolean RequestReadReceipt = null; public String getEmailLogID() { return EmailLogID; } public PO_EmailLogQuery setEmailLogID(String value) { this.EmailLogID = value; return this; } public String getEmailLogIDStartsWith() { return EmailLogIDStartsWith; } public PO_EmailLogQuery setEmailLogIDStartsWith(String value) { this.EmailLogIDStartsWith = value; return this; } public String getEmailLogIDEndsWith() { return EmailLogIDEndsWith; } public PO_EmailLogQuery setEmailLogIDEndsWith(String value) { this.EmailLogIDEndsWith = value; return this; } public String getEmailLogIDContains() { return EmailLogIDContains; } public PO_EmailLogQuery setEmailLogIDContains(String value) { this.EmailLogIDContains = value; return this; } public String getEmailLogIDLike() { return EmailLogIDLike; } public PO_EmailLogQuery setEmailLogIDLike(String value) { this.EmailLogIDLike = value; return this; } public ArrayList getEmailLogIDBetween() { return EmailLogIDBetween; } public PO_EmailLogQuery setEmailLogIDBetween(ArrayList value) { this.EmailLogIDBetween = value; return this; } public ArrayList getEmailLogIDIn() { return EmailLogIDIn; } public PO_EmailLogQuery setEmailLogIDIn(ArrayList value) { this.EmailLogIDIn = value; return this; } public String getOrderID() { return OrderID; } public PO_EmailLogQuery setOrderID(String value) { this.OrderID = value; return this; } public String getOrderIDStartsWith() { return OrderIDStartsWith; } public PO_EmailLogQuery setOrderIDStartsWith(String value) { this.OrderIDStartsWith = value; return this; } public String getOrderIDEndsWith() { return OrderIDEndsWith; } public PO_EmailLogQuery setOrderIDEndsWith(String value) { this.OrderIDEndsWith = value; return this; } public String getOrderIDContains() { return OrderIDContains; } public PO_EmailLogQuery setOrderIDContains(String value) { this.OrderIDContains = value; return this; } public String getOrderIDLike() { return OrderIDLike; } public PO_EmailLogQuery setOrderIDLike(String value) { this.OrderIDLike = value; return this; } public ArrayList getOrderIDBetween() { return OrderIDBetween; } public PO_EmailLogQuery setOrderIDBetween(ArrayList value) { this.OrderIDBetween = value; return this; } public ArrayList getOrderIDIn() { return OrderIDIn; } public PO_EmailLogQuery setOrderIDIn(ArrayList value) { this.OrderIDIn = value; return this; } public Date getEmailDateTime() { return EmailDateTime; } public PO_EmailLogQuery setEmailDateTime(Date value) { this.EmailDateTime = value; return this; } public Date getEmailDateTimeGreaterThanOrEqualTo() { return EmailDateTimeGreaterThanOrEqualTo; } public PO_EmailLogQuery setEmailDateTimeGreaterThanOrEqualTo(Date value) { this.EmailDateTimeGreaterThanOrEqualTo = value; return this; } public Date getEmailDateTimeGreaterThan() { return EmailDateTimeGreaterThan; } public PO_EmailLogQuery setEmailDateTimeGreaterThan(Date value) { this.EmailDateTimeGreaterThan = value; return this; } public Date getEmailDateTimeLessThan() { return EmailDateTimeLessThan; } public PO_EmailLogQuery setEmailDateTimeLessThan(Date value) { this.EmailDateTimeLessThan = value; return this; } public Date getEmailDateTimeLessThanOrEqualTo() { return EmailDateTimeLessThanOrEqualTo; } public PO_EmailLogQuery setEmailDateTimeLessThanOrEqualTo(Date value) { this.EmailDateTimeLessThanOrEqualTo = value; return this; } public Date getEmailDateTimeNotEqualTo() { return EmailDateTimeNotEqualTo; } public PO_EmailLogQuery setEmailDateTimeNotEqualTo(Date value) { this.EmailDateTimeNotEqualTo = value; return this; } public ArrayList getEmailDateTimeBetween() { return EmailDateTimeBetween; } public PO_EmailLogQuery setEmailDateTimeBetween(ArrayList value) { this.EmailDateTimeBetween = value; return this; } public ArrayList getEmailDateTimeIn() { return EmailDateTimeIn; } public PO_EmailLogQuery setEmailDateTimeIn(ArrayList value) { this.EmailDateTimeIn = value; return this; } public String getFrom() { return From; } public PO_EmailLogQuery setFrom(String value) { this.From = value; return this; } public String getFromStartsWith() { return FromStartsWith; } public PO_EmailLogQuery setFromStartsWith(String value) { this.FromStartsWith = value; return this; } public String getFromEndsWith() { return FromEndsWith; } public PO_EmailLogQuery setFromEndsWith(String value) { this.FromEndsWith = value; return this; } public String getFromContains() { return FromContains; } public PO_EmailLogQuery setFromContains(String value) { this.FromContains = value; return this; } public String getFromLike() { return FromLike; } public PO_EmailLogQuery setFromLike(String value) { this.FromLike = value; return this; } public ArrayList getFromBetween() { return FromBetween; } public PO_EmailLogQuery setFromBetween(ArrayList value) { this.FromBetween = value; return this; } public ArrayList getFromIn() { return FromIn; } public PO_EmailLogQuery setFromIn(ArrayList value) { this.FromIn = value; return this; } public String getTo() { return To; } public PO_EmailLogQuery setTo(String value) { this.To = value; return this; } public String getToStartsWith() { return ToStartsWith; } public PO_EmailLogQuery setToStartsWith(String value) { this.ToStartsWith = value; return this; } public String getToEndsWith() { return ToEndsWith; } public PO_EmailLogQuery setToEndsWith(String value) { this.ToEndsWith = value; return this; } public String getToContains() { return ToContains; } public PO_EmailLogQuery setToContains(String value) { this.ToContains = value; return this; } public String getToLike() { return ToLike; } public PO_EmailLogQuery setToLike(String value) { this.ToLike = value; return this; } public ArrayList getToBetween() { return ToBetween; } public PO_EmailLogQuery setToBetween(ArrayList value) { this.ToBetween = value; return this; } public ArrayList getToIn() { return ToIn; } public PO_EmailLogQuery setToIn(ArrayList value) { this.ToIn = value; return this; } public String getCc() { return CC; } public PO_EmailLogQuery setCc(String value) { this.CC = value; return this; } public String getCcStartsWith() { return CCStartsWith; } public PO_EmailLogQuery setCcStartsWith(String value) { this.CCStartsWith = value; return this; } public String getCcEndsWith() { return CCEndsWith; } public PO_EmailLogQuery setCcEndsWith(String value) { this.CCEndsWith = value; return this; } public String getCcContains() { return CCContains; } public PO_EmailLogQuery setCcContains(String value) { this.CCContains = value; return this; } public String getCcLike() { return CCLike; } public PO_EmailLogQuery setCcLike(String value) { this.CCLike = value; return this; } public ArrayList getCcBetween() { return CCBetween; } public PO_EmailLogQuery setCcBetween(ArrayList value) { this.CCBetween = value; return this; } public ArrayList getCcIn() { return CCIn; } public PO_EmailLogQuery setCcIn(ArrayList value) { this.CCIn = value; return this; } public String getBcc() { return BCC; } public PO_EmailLogQuery setBcc(String value) { this.BCC = value; return this; } public String getBccStartsWith() { return BCCStartsWith; } public PO_EmailLogQuery setBccStartsWith(String value) { this.BCCStartsWith = value; return this; } public String getBccEndsWith() { return BCCEndsWith; } public PO_EmailLogQuery setBccEndsWith(String value) { this.BCCEndsWith = value; return this; } public String getBccContains() { return BCCContains; } public PO_EmailLogQuery setBccContains(String value) { this.BCCContains = value; return this; } public String getBccLike() { return BCCLike; } public PO_EmailLogQuery setBccLike(String value) { this.BCCLike = value; return this; } public ArrayList getBccBetween() { return BCCBetween; } public PO_EmailLogQuery setBccBetween(ArrayList value) { this.BCCBetween = value; return this; } public ArrayList getBccIn() { return BCCIn; } public PO_EmailLogQuery setBccIn(ArrayList value) { this.BCCIn = value; return this; } public String getAttachments() { return Attachments; } public PO_EmailLogQuery setAttachments(String value) { this.Attachments = value; return this; } public String getAttachmentsStartsWith() { return AttachmentsStartsWith; } public PO_EmailLogQuery setAttachmentsStartsWith(String value) { this.AttachmentsStartsWith = value; return this; } public String getAttachmentsEndsWith() { return AttachmentsEndsWith; } public PO_EmailLogQuery setAttachmentsEndsWith(String value) { this.AttachmentsEndsWith = value; return this; } public String getAttachmentsContains() { return AttachmentsContains; } public PO_EmailLogQuery setAttachmentsContains(String value) { this.AttachmentsContains = value; return this; } public String getAttachmentsLike() { return AttachmentsLike; } public PO_EmailLogQuery setAttachmentsLike(String value) { this.AttachmentsLike = value; return this; } public ArrayList getAttachmentsBetween() { return AttachmentsBetween; } public PO_EmailLogQuery setAttachmentsBetween(ArrayList value) { this.AttachmentsBetween = value; return this; } public ArrayList getAttachmentsIn() { return AttachmentsIn; } public PO_EmailLogQuery setAttachmentsIn(ArrayList value) { this.AttachmentsIn = value; return this; } public String getFileID() { return FileID; } public PO_EmailLogQuery setFileID(String value) { this.FileID = value; return this; } public String getFileIDStartsWith() { return FileIDStartsWith; } public PO_EmailLogQuery setFileIDStartsWith(String value) { this.FileIDStartsWith = value; return this; } public String getFileIDEndsWith() { return FileIDEndsWith; } public PO_EmailLogQuery setFileIDEndsWith(String value) { this.FileIDEndsWith = value; return this; } public String getFileIDContains() { return FileIDContains; } public PO_EmailLogQuery setFileIDContains(String value) { this.FileIDContains = value; return this; } public String getFileIDLike() { return FileIDLike; } public PO_EmailLogQuery setFileIDLike(String value) { this.FileIDLike = value; return this; } public ArrayList getFileIDBetween() { return FileIDBetween; } public PO_EmailLogQuery setFileIDBetween(ArrayList value) { this.FileIDBetween = value; return this; } public ArrayList getFileIDIn() { return FileIDIn; } public PO_EmailLogQuery setFileIDIn(ArrayList value) { this.FileIDIn = value; return this; } public String getSubject() { return Subject; } public PO_EmailLogQuery setSubject(String value) { this.Subject = value; return this; } public String getSubjectStartsWith() { return SubjectStartsWith; } public PO_EmailLogQuery setSubjectStartsWith(String value) { this.SubjectStartsWith = value; return this; } public String getSubjectEndsWith() { return SubjectEndsWith; } public PO_EmailLogQuery setSubjectEndsWith(String value) { this.SubjectEndsWith = value; return this; } public String getSubjectContains() { return SubjectContains; } public PO_EmailLogQuery setSubjectContains(String value) { this.SubjectContains = value; return this; } public String getSubjectLike() { return SubjectLike; } public PO_EmailLogQuery setSubjectLike(String value) { this.SubjectLike = value; return this; } public ArrayList getSubjectBetween() { return SubjectBetween; } public PO_EmailLogQuery setSubjectBetween(ArrayList value) { this.SubjectBetween = value; return this; } public ArrayList getSubjectIn() { return SubjectIn; } public PO_EmailLogQuery setSubjectIn(ArrayList value) { this.SubjectIn = value; return this; } public String getBody() { return Body; } public PO_EmailLogQuery setBody(String value) { this.Body = value; return this; } public String getBodyStartsWith() { return BodyStartsWith; } public PO_EmailLogQuery setBodyStartsWith(String value) { this.BodyStartsWith = value; return this; } public String getBodyEndsWith() { return BodyEndsWith; } public PO_EmailLogQuery setBodyEndsWith(String value) { this.BodyEndsWith = value; return this; } public String getBodyContains() { return BodyContains; } public PO_EmailLogQuery setBodyContains(String value) { this.BodyContains = value; return this; } public String getBodyLike() { return BodyLike; } public PO_EmailLogQuery setBodyLike(String value) { this.BodyLike = value; return this; } public ArrayList getBodyBetween() { return BodyBetween; } public PO_EmailLogQuery setBodyBetween(ArrayList value) { this.BodyBetween = value; return this; } public ArrayList getBodyIn() { return BodyIn; } public PO_EmailLogQuery setBodyIn(ArrayList value) { this.BodyIn = value; return this; } public String getStaffID() { return StaffID; } public PO_EmailLogQuery setStaffID(String value) { this.StaffID = value; return this; } public String getStaffIDStartsWith() { return StaffIDStartsWith; } public PO_EmailLogQuery setStaffIDStartsWith(String value) { this.StaffIDStartsWith = value; return this; } public String getStaffIDEndsWith() { return StaffIDEndsWith; } public PO_EmailLogQuery setStaffIDEndsWith(String value) { this.StaffIDEndsWith = value; return this; } public String getStaffIDContains() { return StaffIDContains; } public PO_EmailLogQuery setStaffIDContains(String value) { this.StaffIDContains = value; return this; } public String getStaffIDLike() { return StaffIDLike; } public PO_EmailLogQuery setStaffIDLike(String value) { this.StaffIDLike = value; return this; } public ArrayList getStaffIDBetween() { return StaffIDBetween; } public PO_EmailLogQuery setStaffIDBetween(ArrayList value) { this.StaffIDBetween = value; return this; } public ArrayList getStaffIDIn() { return StaffIDIn; } public PO_EmailLogQuery setStaffIDIn(ArrayList value) { this.StaffIDIn = value; return this; } public String getEmMainRecID() { return EM_Main_RecID; } public PO_EmailLogQuery setEmMainRecID(String value) { this.EM_Main_RecID = value; return this; } public String getEmMainRecIDStartsWith() { return EM_Main_RecIDStartsWith; } public PO_EmailLogQuery setEmMainRecIDStartsWith(String value) { this.EM_Main_RecIDStartsWith = value; return this; } public String getEmMainRecIDEndsWith() { return EM_Main_RecIDEndsWith; } public PO_EmailLogQuery setEmMainRecIDEndsWith(String value) { this.EM_Main_RecIDEndsWith = value; return this; } public String getEmMainRecIDContains() { return EM_Main_RecIDContains; } public PO_EmailLogQuery setEmMainRecIDContains(String value) { this.EM_Main_RecIDContains = value; return this; } public String getEmMainRecIDLike() { return EM_Main_RecIDLike; } public PO_EmailLogQuery setEmMainRecIDLike(String value) { this.EM_Main_RecIDLike = value; return this; } public ArrayList getEmMainRecIDBetween() { return EM_Main_RecIDBetween; } public PO_EmailLogQuery setEmMainRecIDBetween(ArrayList value) { this.EM_Main_RecIDBetween = value; return this; } public ArrayList getEmMainRecIDIn() { return EM_Main_RecIDIn; } public PO_EmailLogQuery setEmMainRecIDIn(ArrayList value) { this.EM_Main_RecIDIn = value; return this; } public Boolean isRequestReadReceipt() { return RequestReadReceipt; } public PO_EmailLogQuery setRequestReadReceipt(Boolean value) { this.RequestReadReceipt = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class PO_LineCustomFieldsQuery extends QueryDb implements IReturn> { public String RecID = null; public String RecIDStartsWith = null; public String RecIDEndsWith = null; public String RecIDContains = null; public String RecIDLike = null; public ArrayList RecIDBetween = null; public ArrayList RecIDIn = null; public String SettingName = null; public String SettingNameStartsWith = null; public String SettingNameEndsWith = null; public String SettingNameContains = null; public String SettingNameLike = null; public ArrayList SettingNameBetween = null; public ArrayList SettingNameIn = null; public String SettingDescription = null; public String SettingDescriptionStartsWith = null; public String SettingDescriptionEndsWith = null; public String SettingDescriptionContains = null; public String SettingDescriptionLike = null; public ArrayList SettingDescriptionBetween = null; public ArrayList SettingDescriptionIn = null; public Integer CellType = null; public Integer CellTypeGreaterThanOrEqualTo = null; public Integer CellTypeGreaterThan = null; public Integer CellTypeLessThan = null; public Integer CellTypeLessThanOrEqualTo = null; public Integer CellTypeNotEqualTo = null; public ArrayList CellTypeBetween = null; public ArrayList CellTypeIn = null; public String FieldParameter = null; public String FieldParameterStartsWith = null; public String FieldParameterEndsWith = null; public String FieldParameterContains = null; public String FieldParameterLike = null; public ArrayList FieldParameterBetween = null; public ArrayList FieldParameterIn = null; public UUID SY_Plugin_RecID = null; public ArrayList SY_Plugin_RecIDIn = null; public Date LastSavedDateTime = null; public Date LastSavedDateTimeGreaterThanOrEqualTo = null; public Date LastSavedDateTimeGreaterThan = null; public Date LastSavedDateTimeLessThan = null; public Date LastSavedDateTimeLessThanOrEqualTo = null; public Date LastSavedDateTimeNotEqualTo = null; public ArrayList LastSavedDateTimeBetween = null; public ArrayList LastSavedDateTimeIn = null; public Integer DisplayOrder = null; public Integer DisplayOrderGreaterThanOrEqualTo = null; public Integer DisplayOrderGreaterThan = null; public Integer DisplayOrderLessThan = null; public Integer DisplayOrderLessThanOrEqualTo = null; public Integer DisplayOrderNotEqualTo = null; public ArrayList DisplayOrderBetween = null; public ArrayList DisplayOrderIn = null; public String getRecID() { return RecID; } public PO_LineCustomFieldsQuery setRecID(String value) { this.RecID = value; return this; } public String getRecIDStartsWith() { return RecIDStartsWith; } public PO_LineCustomFieldsQuery setRecIDStartsWith(String value) { this.RecIDStartsWith = value; return this; } public String getRecIDEndsWith() { return RecIDEndsWith; } public PO_LineCustomFieldsQuery setRecIDEndsWith(String value) { this.RecIDEndsWith = value; return this; } public String getRecIDContains() { return RecIDContains; } public PO_LineCustomFieldsQuery setRecIDContains(String value) { this.RecIDContains = value; return this; } public String getRecIDLike() { return RecIDLike; } public PO_LineCustomFieldsQuery setRecIDLike(String value) { this.RecIDLike = value; return this; } public ArrayList getRecIDBetween() { return RecIDBetween; } public PO_LineCustomFieldsQuery setRecIDBetween(ArrayList value) { this.RecIDBetween = value; return this; } public ArrayList getRecIDIn() { return RecIDIn; } public PO_LineCustomFieldsQuery setRecIDIn(ArrayList value) { this.RecIDIn = value; return this; } public String getSettingName() { return SettingName; } public PO_LineCustomFieldsQuery setSettingName(String value) { this.SettingName = value; return this; } public String getSettingNameStartsWith() { return SettingNameStartsWith; } public PO_LineCustomFieldsQuery setSettingNameStartsWith(String value) { this.SettingNameStartsWith = value; return this; } public String getSettingNameEndsWith() { return SettingNameEndsWith; } public PO_LineCustomFieldsQuery setSettingNameEndsWith(String value) { this.SettingNameEndsWith = value; return this; } public String getSettingNameContains() { return SettingNameContains; } public PO_LineCustomFieldsQuery setSettingNameContains(String value) { this.SettingNameContains = value; return this; } public String getSettingNameLike() { return SettingNameLike; } public PO_LineCustomFieldsQuery setSettingNameLike(String value) { this.SettingNameLike = value; return this; } public ArrayList getSettingNameBetween() { return SettingNameBetween; } public PO_LineCustomFieldsQuery setSettingNameBetween(ArrayList value) { this.SettingNameBetween = value; return this; } public ArrayList getSettingNameIn() { return SettingNameIn; } public PO_LineCustomFieldsQuery setSettingNameIn(ArrayList value) { this.SettingNameIn = value; return this; } public String getSettingDescription() { return SettingDescription; } public PO_LineCustomFieldsQuery setSettingDescription(String value) { this.SettingDescription = value; return this; } public String getSettingDescriptionStartsWith() { return SettingDescriptionStartsWith; } public PO_LineCustomFieldsQuery setSettingDescriptionStartsWith(String value) { this.SettingDescriptionStartsWith = value; return this; } public String getSettingDescriptionEndsWith() { return SettingDescriptionEndsWith; } public PO_LineCustomFieldsQuery setSettingDescriptionEndsWith(String value) { this.SettingDescriptionEndsWith = value; return this; } public String getSettingDescriptionContains() { return SettingDescriptionContains; } public PO_LineCustomFieldsQuery setSettingDescriptionContains(String value) { this.SettingDescriptionContains = value; return this; } public String getSettingDescriptionLike() { return SettingDescriptionLike; } public PO_LineCustomFieldsQuery setSettingDescriptionLike(String value) { this.SettingDescriptionLike = value; return this; } public ArrayList getSettingDescriptionBetween() { return SettingDescriptionBetween; } public PO_LineCustomFieldsQuery setSettingDescriptionBetween(ArrayList value) { this.SettingDescriptionBetween = value; return this; } public ArrayList getSettingDescriptionIn() { return SettingDescriptionIn; } public PO_LineCustomFieldsQuery setSettingDescriptionIn(ArrayList value) { this.SettingDescriptionIn = value; return this; } public Integer getCellType() { return CellType; } public PO_LineCustomFieldsQuery setCellType(Integer value) { this.CellType = value; return this; } public Integer getCellTypeGreaterThanOrEqualTo() { return CellTypeGreaterThanOrEqualTo; } public PO_LineCustomFieldsQuery setCellTypeGreaterThanOrEqualTo(Integer value) { this.CellTypeGreaterThanOrEqualTo = value; return this; } public Integer getCellTypeGreaterThan() { return CellTypeGreaterThan; } public PO_LineCustomFieldsQuery setCellTypeGreaterThan(Integer value) { this.CellTypeGreaterThan = value; return this; } public Integer getCellTypeLessThan() { return CellTypeLessThan; } public PO_LineCustomFieldsQuery setCellTypeLessThan(Integer value) { this.CellTypeLessThan = value; return this; } public Integer getCellTypeLessThanOrEqualTo() { return CellTypeLessThanOrEqualTo; } public PO_LineCustomFieldsQuery setCellTypeLessThanOrEqualTo(Integer value) { this.CellTypeLessThanOrEqualTo = value; return this; } public Integer getCellTypeNotEqualTo() { return CellTypeNotEqualTo; } public PO_LineCustomFieldsQuery setCellTypeNotEqualTo(Integer value) { this.CellTypeNotEqualTo = value; return this; } public ArrayList getCellTypeBetween() { return CellTypeBetween; } public PO_LineCustomFieldsQuery setCellTypeBetween(ArrayList value) { this.CellTypeBetween = value; return this; } public ArrayList getCellTypeIn() { return CellTypeIn; } public PO_LineCustomFieldsQuery setCellTypeIn(ArrayList value) { this.CellTypeIn = value; return this; } public String getFieldParameter() { return FieldParameter; } public PO_LineCustomFieldsQuery setFieldParameter(String value) { this.FieldParameter = value; return this; } public String getFieldParameterStartsWith() { return FieldParameterStartsWith; } public PO_LineCustomFieldsQuery setFieldParameterStartsWith(String value) { this.FieldParameterStartsWith = value; return this; } public String getFieldParameterEndsWith() { return FieldParameterEndsWith; } public PO_LineCustomFieldsQuery setFieldParameterEndsWith(String value) { this.FieldParameterEndsWith = value; return this; } public String getFieldParameterContains() { return FieldParameterContains; } public PO_LineCustomFieldsQuery setFieldParameterContains(String value) { this.FieldParameterContains = value; return this; } public String getFieldParameterLike() { return FieldParameterLike; } public PO_LineCustomFieldsQuery setFieldParameterLike(String value) { this.FieldParameterLike = value; return this; } public ArrayList getFieldParameterBetween() { return FieldParameterBetween; } public PO_LineCustomFieldsQuery setFieldParameterBetween(ArrayList value) { this.FieldParameterBetween = value; return this; } public ArrayList getFieldParameterIn() { return FieldParameterIn; } public PO_LineCustomFieldsQuery setFieldParameterIn(ArrayList value) { this.FieldParameterIn = value; return this; } public UUID getSyPluginRecID() { return SY_Plugin_RecID; } public PO_LineCustomFieldsQuery setSyPluginRecID(UUID value) { this.SY_Plugin_RecID = value; return this; } public ArrayList getSyPluginRecIDIn() { return SY_Plugin_RecIDIn; } public PO_LineCustomFieldsQuery setSyPluginRecIDIn(ArrayList value) { this.SY_Plugin_RecIDIn = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public PO_LineCustomFieldsQuery setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getLastSavedDateTimeGreaterThanOrEqualTo() { return LastSavedDateTimeGreaterThanOrEqualTo; } public PO_LineCustomFieldsQuery setLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.LastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeGreaterThan() { return LastSavedDateTimeGreaterThan; } public PO_LineCustomFieldsQuery setLastSavedDateTimeGreaterThan(Date value) { this.LastSavedDateTimeGreaterThan = value; return this; } public Date getLastSavedDateTimeLessThan() { return LastSavedDateTimeLessThan; } public PO_LineCustomFieldsQuery setLastSavedDateTimeLessThan(Date value) { this.LastSavedDateTimeLessThan = value; return this; } public Date getLastSavedDateTimeLessThanOrEqualTo() { return LastSavedDateTimeLessThanOrEqualTo; } public PO_LineCustomFieldsQuery setLastSavedDateTimeLessThanOrEqualTo(Date value) { this.LastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeNotEqualTo() { return LastSavedDateTimeNotEqualTo; } public PO_LineCustomFieldsQuery setLastSavedDateTimeNotEqualTo(Date value) { this.LastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getLastSavedDateTimeBetween() { return LastSavedDateTimeBetween; } public PO_LineCustomFieldsQuery setLastSavedDateTimeBetween(ArrayList value) { this.LastSavedDateTimeBetween = value; return this; } public ArrayList getLastSavedDateTimeIn() { return LastSavedDateTimeIn; } public PO_LineCustomFieldsQuery setLastSavedDateTimeIn(ArrayList value) { this.LastSavedDateTimeIn = value; return this; } public Integer getDisplayOrder() { return DisplayOrder; } public PO_LineCustomFieldsQuery setDisplayOrder(Integer value) { this.DisplayOrder = value; return this; } public Integer getDisplayOrderGreaterThanOrEqualTo() { return DisplayOrderGreaterThanOrEqualTo; } public PO_LineCustomFieldsQuery setDisplayOrderGreaterThanOrEqualTo(Integer value) { this.DisplayOrderGreaterThanOrEqualTo = value; return this; } public Integer getDisplayOrderGreaterThan() { return DisplayOrderGreaterThan; } public PO_LineCustomFieldsQuery setDisplayOrderGreaterThan(Integer value) { this.DisplayOrderGreaterThan = value; return this; } public Integer getDisplayOrderLessThan() { return DisplayOrderLessThan; } public PO_LineCustomFieldsQuery setDisplayOrderLessThan(Integer value) { this.DisplayOrderLessThan = value; return this; } public Integer getDisplayOrderLessThanOrEqualTo() { return DisplayOrderLessThanOrEqualTo; } public PO_LineCustomFieldsQuery setDisplayOrderLessThanOrEqualTo(Integer value) { this.DisplayOrderLessThanOrEqualTo = value; return this; } public Integer getDisplayOrderNotEqualTo() { return DisplayOrderNotEqualTo; } public PO_LineCustomFieldsQuery setDisplayOrderNotEqualTo(Integer value) { this.DisplayOrderNotEqualTo = value; return this; } public ArrayList getDisplayOrderBetween() { return DisplayOrderBetween; } public PO_LineCustomFieldsQuery setDisplayOrderBetween(ArrayList value) { this.DisplayOrderBetween = value; return this; } public ArrayList getDisplayOrderIn() { return DisplayOrderIn; } public PO_LineCustomFieldsQuery setDisplayOrderIn(ArrayList value) { this.DisplayOrderIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class PO_LineCustomValuesQuery extends QueryDb implements IReturn> { public String RecID = null; public String RecIDStartsWith = null; public String RecIDEndsWith = null; public String RecIDContains = null; public String RecIDLike = null; public ArrayList RecIDBetween = null; public ArrayList RecIDIn = null; public String PO_Lines_RecID = null; public String PO_Lines_RecIDStartsWith = null; public String PO_Lines_RecIDEndsWith = null; public String PO_Lines_RecIDContains = null; public String PO_Lines_RecIDLike = null; public ArrayList PO_Lines_RecIDBetween = null; public ArrayList PO_Lines_RecIDIn = null; public String PO_LineCustomFields_RecID = null; public String PO_LineCustomFields_RecIDStartsWith = null; public String PO_LineCustomFields_RecIDEndsWith = null; public String PO_LineCustomFields_RecIDContains = null; public String PO_LineCustomFields_RecIDLike = null; public ArrayList PO_LineCustomFields_RecIDBetween = null; public ArrayList PO_LineCustomFields_RecIDIn = null; public String Contents = null; public String ContentsStartsWith = null; public String ContentsEndsWith = null; public String ContentsContains = null; public String ContentsLike = null; public ArrayList ContentsBetween = null; public ArrayList ContentsIn = null; public Date LastSavedDateTime = null; public Date LastSavedDateTimeGreaterThanOrEqualTo = null; public Date LastSavedDateTimeGreaterThan = null; public Date LastSavedDateTimeLessThan = null; public Date LastSavedDateTimeLessThanOrEqualTo = null; public Date LastSavedDateTimeNotEqualTo = null; public ArrayList LastSavedDateTimeBetween = null; public ArrayList LastSavedDateTimeIn = null; public String getRecID() { return RecID; } public PO_LineCustomValuesQuery setRecID(String value) { this.RecID = value; return this; } public String getRecIDStartsWith() { return RecIDStartsWith; } public PO_LineCustomValuesQuery setRecIDStartsWith(String value) { this.RecIDStartsWith = value; return this; } public String getRecIDEndsWith() { return RecIDEndsWith; } public PO_LineCustomValuesQuery setRecIDEndsWith(String value) { this.RecIDEndsWith = value; return this; } public String getRecIDContains() { return RecIDContains; } public PO_LineCustomValuesQuery setRecIDContains(String value) { this.RecIDContains = value; return this; } public String getRecIDLike() { return RecIDLike; } public PO_LineCustomValuesQuery setRecIDLike(String value) { this.RecIDLike = value; return this; } public ArrayList getRecIDBetween() { return RecIDBetween; } public PO_LineCustomValuesQuery setRecIDBetween(ArrayList value) { this.RecIDBetween = value; return this; } public ArrayList getRecIDIn() { return RecIDIn; } public PO_LineCustomValuesQuery setRecIDIn(ArrayList value) { this.RecIDIn = value; return this; } public String getPoLinesRecID() { return PO_Lines_RecID; } public PO_LineCustomValuesQuery setPoLinesRecID(String value) { this.PO_Lines_RecID = value; return this; } public String getPoLinesRecIDStartsWith() { return PO_Lines_RecIDStartsWith; } public PO_LineCustomValuesQuery setPoLinesRecIDStartsWith(String value) { this.PO_Lines_RecIDStartsWith = value; return this; } public String getPoLinesRecIDEndsWith() { return PO_Lines_RecIDEndsWith; } public PO_LineCustomValuesQuery setPoLinesRecIDEndsWith(String value) { this.PO_Lines_RecIDEndsWith = value; return this; } public String getPoLinesRecIDContains() { return PO_Lines_RecIDContains; } public PO_LineCustomValuesQuery setPoLinesRecIDContains(String value) { this.PO_Lines_RecIDContains = value; return this; } public String getPoLinesRecIDLike() { return PO_Lines_RecIDLike; } public PO_LineCustomValuesQuery setPoLinesRecIDLike(String value) { this.PO_Lines_RecIDLike = value; return this; } public ArrayList getPoLinesRecIDBetween() { return PO_Lines_RecIDBetween; } public PO_LineCustomValuesQuery setPoLinesRecIDBetween(ArrayList value) { this.PO_Lines_RecIDBetween = value; return this; } public ArrayList getPoLinesRecIDIn() { return PO_Lines_RecIDIn; } public PO_LineCustomValuesQuery setPoLinesRecIDIn(ArrayList value) { this.PO_Lines_RecIDIn = value; return this; } public String getPoLineCustomFieldsRecID() { return PO_LineCustomFields_RecID; } public PO_LineCustomValuesQuery setPoLineCustomFieldsRecID(String value) { this.PO_LineCustomFields_RecID = value; return this; } public String getPoLineCustomFieldsRecIDStartsWith() { return PO_LineCustomFields_RecIDStartsWith; } public PO_LineCustomValuesQuery setPoLineCustomFieldsRecIDStartsWith(String value) { this.PO_LineCustomFields_RecIDStartsWith = value; return this; } public String getPoLineCustomFieldsRecIDEndsWith() { return PO_LineCustomFields_RecIDEndsWith; } public PO_LineCustomValuesQuery setPoLineCustomFieldsRecIDEndsWith(String value) { this.PO_LineCustomFields_RecIDEndsWith = value; return this; } public String getPoLineCustomFieldsRecIDContains() { return PO_LineCustomFields_RecIDContains; } public PO_LineCustomValuesQuery setPoLineCustomFieldsRecIDContains(String value) { this.PO_LineCustomFields_RecIDContains = value; return this; } public String getPoLineCustomFieldsRecIDLike() { return PO_LineCustomFields_RecIDLike; } public PO_LineCustomValuesQuery setPoLineCustomFieldsRecIDLike(String value) { this.PO_LineCustomFields_RecIDLike = value; return this; } public ArrayList getPoLineCustomFieldsRecIDBetween() { return PO_LineCustomFields_RecIDBetween; } public PO_LineCustomValuesQuery setPoLineCustomFieldsRecIDBetween(ArrayList value) { this.PO_LineCustomFields_RecIDBetween = value; return this; } public ArrayList getPoLineCustomFieldsRecIDIn() { return PO_LineCustomFields_RecIDIn; } public PO_LineCustomValuesQuery setPoLineCustomFieldsRecIDIn(ArrayList value) { this.PO_LineCustomFields_RecIDIn = value; return this; } public String getContents() { return Contents; } public PO_LineCustomValuesQuery setContents(String value) { this.Contents = value; return this; } public String getContentsStartsWith() { return ContentsStartsWith; } public PO_LineCustomValuesQuery setContentsStartsWith(String value) { this.ContentsStartsWith = value; return this; } public String getContentsEndsWith() { return ContentsEndsWith; } public PO_LineCustomValuesQuery setContentsEndsWith(String value) { this.ContentsEndsWith = value; return this; } public String getContentsContains() { return ContentsContains; } public PO_LineCustomValuesQuery setContentsContains(String value) { this.ContentsContains = value; return this; } public String getContentsLike() { return ContentsLike; } public PO_LineCustomValuesQuery setContentsLike(String value) { this.ContentsLike = value; return this; } public ArrayList getContentsBetween() { return ContentsBetween; } public PO_LineCustomValuesQuery setContentsBetween(ArrayList value) { this.ContentsBetween = value; return this; } public ArrayList getContentsIn() { return ContentsIn; } public PO_LineCustomValuesQuery setContentsIn(ArrayList value) { this.ContentsIn = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public PO_LineCustomValuesQuery setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getLastSavedDateTimeGreaterThanOrEqualTo() { return LastSavedDateTimeGreaterThanOrEqualTo; } public PO_LineCustomValuesQuery setLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.LastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeGreaterThan() { return LastSavedDateTimeGreaterThan; } public PO_LineCustomValuesQuery setLastSavedDateTimeGreaterThan(Date value) { this.LastSavedDateTimeGreaterThan = value; return this; } public Date getLastSavedDateTimeLessThan() { return LastSavedDateTimeLessThan; } public PO_LineCustomValuesQuery setLastSavedDateTimeLessThan(Date value) { this.LastSavedDateTimeLessThan = value; return this; } public Date getLastSavedDateTimeLessThanOrEqualTo() { return LastSavedDateTimeLessThanOrEqualTo; } public PO_LineCustomValuesQuery setLastSavedDateTimeLessThanOrEqualTo(Date value) { this.LastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeNotEqualTo() { return LastSavedDateTimeNotEqualTo; } public PO_LineCustomValuesQuery setLastSavedDateTimeNotEqualTo(Date value) { this.LastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getLastSavedDateTimeBetween() { return LastSavedDateTimeBetween; } public PO_LineCustomValuesQuery setLastSavedDateTimeBetween(ArrayList value) { this.LastSavedDateTimeBetween = value; return this; } public ArrayList getLastSavedDateTimeIn() { return LastSavedDateTimeIn; } public PO_LineCustomValuesQuery setLastSavedDateTimeIn(ArrayList value) { this.LastSavedDateTimeIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class PO_LinesQuery extends QueryDb implements IReturn> { public String OrderLineID = null; public String OrderLineIDStartsWith = null; public String OrderLineIDEndsWith = null; public String OrderLineIDContains = null; public String OrderLineIDLike = null; public ArrayList OrderLineIDBetween = null; public ArrayList OrderLineIDIn = null; public String OrderID = null; public String OrderIDStartsWith = null; public String OrderIDEndsWith = null; public String OrderIDContains = null; public String OrderIDLike = null; public ArrayList OrderIDBetween = null; public ArrayList OrderIDIn = null; public String InventoryID = null; public String InventoryIDStartsWith = null; public String InventoryIDEndsWith = null; public String InventoryIDContains = null; public String InventoryIDLike = null; public ArrayList InventoryIDBetween = null; public ArrayList InventoryIDIn = null; public BigDecimal Quantity = null; public BigDecimal QuantityGreaterThanOrEqualTo = null; public BigDecimal QuantityGreaterThan = null; public BigDecimal QuantityLessThan = null; public BigDecimal QuantityLessThanOrEqualTo = null; public BigDecimal QuantityNotEqualTo = null; public ArrayList QuantityBetween = null; public ArrayList QuantityIn = null; public BigDecimal SuppliersCost = null; public BigDecimal SuppliersCostGreaterThanOrEqualTo = null; public BigDecimal SuppliersCostGreaterThan = null; public BigDecimal SuppliersCostLessThan = null; public BigDecimal SuppliersCostLessThanOrEqualTo = null; public BigDecimal SuppliersCostNotEqualTo = null; public ArrayList SuppliersCostBetween = null; public ArrayList SuppliersCostIn = null; public Date DeliveryDate = null; public Date DeliveryDateGreaterThanOrEqualTo = null; public Date DeliveryDateGreaterThan = null; public Date DeliveryDateLessThan = null; public Date DeliveryDateLessThanOrEqualTo = null; public Date DeliveryDateNotEqualTo = null; public ArrayList DeliveryDateBetween = null; public ArrayList DeliveryDateIn = null; public BigDecimal Delivered = null; public BigDecimal DeliveredGreaterThanOrEqualTo = null; public BigDecimal DeliveredGreaterThan = null; public BigDecimal DeliveredLessThan = null; public BigDecimal DeliveredLessThanOrEqualTo = null; public BigDecimal DeliveredNotEqualTo = null; public ArrayList DeliveredBetween = null; public ArrayList DeliveredIn = null; public Short DecimalPlaces = null; public Short DecimalPlacesGreaterThanOrEqualTo = null; public Short DecimalPlacesGreaterThan = null; public Short DecimalPlacesLessThan = null; public Short DecimalPlacesLessThanOrEqualTo = null; public Short DecimalPlacesNotEqualTo = null; public ArrayList DecimalPlacesBetween = null; public ArrayList DecimalPlacesIn = null; public Short OrderLineNo = null; public Short OrderLineNoGreaterThanOrEqualTo = null; public Short OrderLineNoGreaterThan = null; public Short OrderLineNoLessThan = null; public Short OrderLineNoLessThanOrEqualTo = null; public Short OrderLineNoNotEqualTo = null; public ArrayList OrderLineNoBetween = null; public ArrayList OrderLineNoIn = null; public String SuppPartNo = null; public String SuppPartNoStartsWith = null; public String SuppPartNoEndsWith = null; public String SuppPartNoContains = null; public String SuppPartNoLike = null; public ArrayList SuppPartNoBetween = null; public ArrayList SuppPartNoIn = null; public Date LastSavedDateTime = null; public Date LastSavedDateTimeGreaterThanOrEqualTo = null; public Date LastSavedDateTimeGreaterThan = null; public Date LastSavedDateTimeLessThan = null; public Date LastSavedDateTimeLessThanOrEqualTo = null; public Date LastSavedDateTimeNotEqualTo = null; public ArrayList LastSavedDateTimeBetween = null; public ArrayList LastSavedDateTimeIn = null; public String HistoryText_Comment = null; public String HistoryText_CommentStartsWith = null; public String HistoryText_CommentEndsWith = null; public String HistoryText_CommentContains = null; public String HistoryText_CommentLike = null; public ArrayList HistoryText_CommentBetween = null; public ArrayList HistoryText_CommentIn = null; public BigDecimal OrderUnits = null; public BigDecimal OrderUnitsGreaterThanOrEqualTo = null; public BigDecimal OrderUnitsGreaterThan = null; public BigDecimal OrderUnitsLessThan = null; public BigDecimal OrderUnitsLessThanOrEqualTo = null; public BigDecimal OrderUnitsNotEqualTo = null; public ArrayList OrderUnitsBetween = null; public ArrayList OrderUnitsIn = null; public Short LineType = null; public Short LineTypeGreaterThanOrEqualTo = null; public Short LineTypeGreaterThan = null; public Short LineTypeLessThan = null; public Short LineTypeLessThanOrEqualTo = null; public Short LineTypeNotEqualTo = null; public ArrayList LineTypeBetween = null; public ArrayList LineTypeIn = null; public String PartNo = null; public String PartNoStartsWith = null; public String PartNoEndsWith = null; public String PartNoContains = null; public String PartNoLike = null; public ArrayList PartNoBetween = null; public ArrayList PartNoIn = null; public String Description = null; public String DescriptionStartsWith = null; public String DescriptionEndsWith = null; public String DescriptionContains = null; public String DescriptionLike = null; public ArrayList DescriptionBetween = null; public ArrayList DescriptionIn = null; public Short DeliveryDays = null; public Short DeliveryDaysGreaterThanOrEqualTo = null; public Short DeliveryDaysGreaterThan = null; public Short DeliveryDaysLessThan = null; public Short DeliveryDaysLessThanOrEqualTo = null; public Short DeliveryDaysNotEqualTo = null; public ArrayList DeliveryDaysBetween = null; public ArrayList DeliveryDaysIn = null; public String ClassificationID = null; public String ClassificationIDStartsWith = null; public String ClassificationIDEndsWith = null; public String ClassificationIDContains = null; public String ClassificationIDLike = null; public ArrayList ClassificationIDBetween = null; public ArrayList ClassificationIDIn = null; public String ClassDescription = null; public String ClassDescriptionStartsWith = null; public String ClassDescriptionEndsWith = null; public String ClassDescriptionContains = null; public String ClassDescriptionLike = null; public ArrayList ClassDescriptionBetween = null; public ArrayList ClassDescriptionIn = null; public BigDecimal TaxAmount = null; public BigDecimal TaxAmountGreaterThanOrEqualTo = null; public BigDecimal TaxAmountGreaterThan = null; public BigDecimal TaxAmountLessThan = null; public BigDecimal TaxAmountLessThanOrEqualTo = null; public BigDecimal TaxAmountNotEqualTo = null; public ArrayList TaxAmountBetween = null; public ArrayList TaxAmountIn = null; public String TaxID = null; public String TaxIDStartsWith = null; public String TaxIDEndsWith = null; public String TaxIDContains = null; public String TaxIDLike = null; public ArrayList TaxIDBetween = null; public ArrayList TaxIDIn = null; public BigDecimal TaxRate = null; public BigDecimal TaxRateGreaterThanOrEqualTo = null; public BigDecimal TaxRateGreaterThan = null; public BigDecimal TaxRateLessThan = null; public BigDecimal TaxRateLessThanOrEqualTo = null; public BigDecimal TaxRateNotEqualTo = null; public ArrayList TaxRateBetween = null; public ArrayList TaxRateIn = null; public BigDecimal HomeSuppliersCost = null; public BigDecimal HomeSuppliersCostGreaterThanOrEqualTo = null; public BigDecimal HomeSuppliersCostGreaterThan = null; public BigDecimal HomeSuppliersCostLessThan = null; public BigDecimal HomeSuppliersCostLessThanOrEqualTo = null; public BigDecimal HomeSuppliersCostNotEqualTo = null; public ArrayList HomeSuppliersCostBetween = null; public ArrayList HomeSuppliersCostIn = null; public BigDecimal CurrencyRateUsed = null; public BigDecimal CurrencyRateUsedGreaterThanOrEqualTo = null; public BigDecimal CurrencyRateUsedGreaterThan = null; public BigDecimal CurrencyRateUsedLessThan = null; public BigDecimal CurrencyRateUsedLessThanOrEqualTo = null; public BigDecimal CurrencyRateUsedNotEqualTo = null; public ArrayList CurrencyRateUsedBetween = null; public ArrayList CurrencyRateUsedIn = null; public String POClassID = null; public String POClassIDStartsWith = null; public String POClassIDEndsWith = null; public String POClassIDContains = null; public String POClassIDLike = null; public ArrayList POClassIDBetween = null; public ArrayList POClassIDIn = null; public BigDecimal IncPrice = null; public BigDecimal IncPriceGreaterThanOrEqualTo = null; public BigDecimal IncPriceGreaterThan = null; public BigDecimal IncPriceLessThan = null; public BigDecimal IncPriceLessThanOrEqualTo = null; public BigDecimal IncPriceNotEqualTo = null; public ArrayList IncPriceBetween = null; public ArrayList IncPriceIn = null; public BigDecimal LineTotal = null; public BigDecimal LineTotalGreaterThanOrEqualTo = null; public BigDecimal LineTotalGreaterThan = null; public BigDecimal LineTotalLessThan = null; public BigDecimal LineTotalLessThanOrEqualTo = null; public BigDecimal LineTotalNotEqualTo = null; public ArrayList LineTotalBetween = null; public ArrayList LineTotalIn = null; public Short FxDecimalPlaces = null; public Short FxDecimalPlacesGreaterThanOrEqualTo = null; public Short FxDecimalPlacesGreaterThan = null; public Short FxDecimalPlacesLessThan = null; public Short FxDecimalPlacesLessThanOrEqualTo = null; public Short FxDecimalPlacesNotEqualTo = null; public ArrayList FxDecimalPlacesBetween = null; public ArrayList FxDecimalPlacesIn = null; public Short AUDDecimalPlaces = null; public Short AUDDecimalPlacesGreaterThanOrEqualTo = null; public Short AUDDecimalPlacesGreaterThan = null; public Short AUDDecimalPlacesLessThan = null; public Short AUDDecimalPlacesLessThanOrEqualTo = null; public Short AUDDecimalPlacesNotEqualTo = null; public ArrayList AUDDecimalPlacesBetween = null; public ArrayList AUDDecimalPlacesIn = null; public BigDecimal FxTotal = null; public BigDecimal FxTotalGreaterThanOrEqualTo = null; public BigDecimal FxTotalGreaterThan = null; public BigDecimal FxTotalLessThan = null; public BigDecimal FxTotalLessThanOrEqualTo = null; public BigDecimal FxTotalNotEqualTo = null; public ArrayList FxTotalBetween = null; public ArrayList FxTotalIn = null; public String IN_SupplierWarehouse_RecID = null; public String IN_SupplierWarehouse_RecIDStartsWith = null; public String IN_SupplierWarehouse_RecIDEndsWith = null; public String IN_SupplierWarehouse_RecIDContains = null; public String IN_SupplierWarehouse_RecIDLike = null; public ArrayList IN_SupplierWarehouse_RecIDBetween = null; public ArrayList IN_SupplierWarehouse_RecIDIn = null; public String Unit = null; public String UnitStartsWith = null; public String UnitEndsWith = null; public String UnitContains = null; public String UnitLike = null; public ArrayList UnitBetween = null; public ArrayList UnitIn = null; public Date UserDefinedDate3 = null; public Date UserDefinedDate3GreaterThanOrEqualTo = null; public Date UserDefinedDate3GreaterThan = null; public Date UserDefinedDate3LessThan = null; public Date UserDefinedDate3LessThanOrEqualTo = null; public Date UserDefinedDate3NotEqualTo = null; public ArrayList UserDefinedDate3Between = null; public ArrayList UserDefinedDate3In = null; public String UserDefinedString1 = null; public String UserDefinedString1StartsWith = null; public String UserDefinedString1EndsWith = null; public String UserDefinedString1Contains = null; public String UserDefinedString1Like = null; public ArrayList UserDefinedString1Between = null; public ArrayList UserDefinedString1In = null; public String UserDefinedString2 = null; public String UserDefinedString2StartsWith = null; public String UserDefinedString2EndsWith = null; public String UserDefinedString2Contains = null; public String UserDefinedString2Like = null; public ArrayList UserDefinedString2Between = null; public ArrayList UserDefinedString2In = null; public String UserDefinedString3 = null; public String UserDefinedString3StartsWith = null; public String UserDefinedString3EndsWith = null; public String UserDefinedString3Contains = null; public String UserDefinedString3Like = null; public ArrayList UserDefinedString3Between = null; public ArrayList UserDefinedString3In = null; public BigDecimal UserDefinedFloat1 = null; public BigDecimal UserDefinedFloat1GreaterThanOrEqualTo = null; public BigDecimal UserDefinedFloat1GreaterThan = null; public BigDecimal UserDefinedFloat1LessThan = null; public BigDecimal UserDefinedFloat1LessThanOrEqualTo = null; public BigDecimal UserDefinedFloat1NotEqualTo = null; public ArrayList UserDefinedFloat1Between = null; public ArrayList UserDefinedFloat1In = null; public BigDecimal UserDefinedFloat2 = null; public BigDecimal UserDefinedFloat2GreaterThanOrEqualTo = null; public BigDecimal UserDefinedFloat2GreaterThan = null; public BigDecimal UserDefinedFloat2LessThan = null; public BigDecimal UserDefinedFloat2LessThanOrEqualTo = null; public BigDecimal UserDefinedFloat2NotEqualTo = null; public ArrayList UserDefinedFloat2Between = null; public ArrayList UserDefinedFloat2In = null; public BigDecimal UserDefinedFloat3 = null; public BigDecimal UserDefinedFloat3GreaterThanOrEqualTo = null; public BigDecimal UserDefinedFloat3GreaterThan = null; public BigDecimal UserDefinedFloat3LessThan = null; public BigDecimal UserDefinedFloat3LessThanOrEqualTo = null; public BigDecimal UserDefinedFloat3NotEqualTo = null; public ArrayList UserDefinedFloat3Between = null; public ArrayList UserDefinedFloat3In = null; public Date UserDefinedDate1 = null; public Date UserDefinedDate1GreaterThanOrEqualTo = null; public Date UserDefinedDate1GreaterThan = null; public Date UserDefinedDate1LessThan = null; public Date UserDefinedDate1LessThanOrEqualTo = null; public Date UserDefinedDate1NotEqualTo = null; public ArrayList UserDefinedDate1Between = null; public ArrayList UserDefinedDate1In = null; public Date UserDefinedDate2 = null; public Date UserDefinedDate2GreaterThanOrEqualTo = null; public Date UserDefinedDate2GreaterThan = null; public Date UserDefinedDate2LessThan = null; public Date UserDefinedDate2LessThanOrEqualTo = null; public Date UserDefinedDate2NotEqualTo = null; public ArrayList UserDefinedDate2Between = null; public ArrayList UserDefinedDate2In = null; public String SM_Task_RecID = null; public String SM_Task_RecIDStartsWith = null; public String SM_Task_RecIDEndsWith = null; public String SM_Task_RecIDContains = null; public String SM_Task_RecIDLike = null; public ArrayList SM_Task_RecIDBetween = null; public ArrayList SM_Task_RecIDIn = null; public String JB_JobStages_RecID = null; public String JB_JobStages_RecIDStartsWith = null; public String JB_JobStages_RecIDEndsWith = null; public String JB_JobStages_RecIDContains = null; public String JB_JobStages_RecIDLike = null; public ArrayList JB_JobStages_RecIDBetween = null; public ArrayList JB_JobStages_RecIDIn = null; public BigDecimal LineTotalExTax = null; public BigDecimal LineTotalExTaxGreaterThanOrEqualTo = null; public BigDecimal LineTotalExTaxGreaterThan = null; public BigDecimal LineTotalExTaxLessThan = null; public BigDecimal LineTotalExTaxLessThanOrEqualTo = null; public BigDecimal LineTotalExTaxNotEqualTo = null; public ArrayList LineTotalExTaxBetween = null; public ArrayList LineTotalExTaxIn = null; public UUID IN_UnitOfMeasure_RecID = null; public ArrayList IN_UnitOfMeasure_RecIDIn = null; public Boolean UnitChanged = null; public Boolean FXChanged = null; public Boolean ExChanged = null; public Boolean TaxRateChanged = null; public String getOrderLineID() { return OrderLineID; } public PO_LinesQuery setOrderLineID(String value) { this.OrderLineID = value; return this; } public String getOrderLineIDStartsWith() { return OrderLineIDStartsWith; } public PO_LinesQuery setOrderLineIDStartsWith(String value) { this.OrderLineIDStartsWith = value; return this; } public String getOrderLineIDEndsWith() { return OrderLineIDEndsWith; } public PO_LinesQuery setOrderLineIDEndsWith(String value) { this.OrderLineIDEndsWith = value; return this; } public String getOrderLineIDContains() { return OrderLineIDContains; } public PO_LinesQuery setOrderLineIDContains(String value) { this.OrderLineIDContains = value; return this; } public String getOrderLineIDLike() { return OrderLineIDLike; } public PO_LinesQuery setOrderLineIDLike(String value) { this.OrderLineIDLike = value; return this; } public ArrayList getOrderLineIDBetween() { return OrderLineIDBetween; } public PO_LinesQuery setOrderLineIDBetween(ArrayList value) { this.OrderLineIDBetween = value; return this; } public ArrayList getOrderLineIDIn() { return OrderLineIDIn; } public PO_LinesQuery setOrderLineIDIn(ArrayList value) { this.OrderLineIDIn = value; return this; } public String getOrderID() { return OrderID; } public PO_LinesQuery setOrderID(String value) { this.OrderID = value; return this; } public String getOrderIDStartsWith() { return OrderIDStartsWith; } public PO_LinesQuery setOrderIDStartsWith(String value) { this.OrderIDStartsWith = value; return this; } public String getOrderIDEndsWith() { return OrderIDEndsWith; } public PO_LinesQuery setOrderIDEndsWith(String value) { this.OrderIDEndsWith = value; return this; } public String getOrderIDContains() { return OrderIDContains; } public PO_LinesQuery setOrderIDContains(String value) { this.OrderIDContains = value; return this; } public String getOrderIDLike() { return OrderIDLike; } public PO_LinesQuery setOrderIDLike(String value) { this.OrderIDLike = value; return this; } public ArrayList getOrderIDBetween() { return OrderIDBetween; } public PO_LinesQuery setOrderIDBetween(ArrayList value) { this.OrderIDBetween = value; return this; } public ArrayList getOrderIDIn() { return OrderIDIn; } public PO_LinesQuery setOrderIDIn(ArrayList value) { this.OrderIDIn = value; return this; } public String getInventoryID() { return InventoryID; } public PO_LinesQuery setInventoryID(String value) { this.InventoryID = value; return this; } public String getInventoryIDStartsWith() { return InventoryIDStartsWith; } public PO_LinesQuery setInventoryIDStartsWith(String value) { this.InventoryIDStartsWith = value; return this; } public String getInventoryIDEndsWith() { return InventoryIDEndsWith; } public PO_LinesQuery setInventoryIDEndsWith(String value) { this.InventoryIDEndsWith = value; return this; } public String getInventoryIDContains() { return InventoryIDContains; } public PO_LinesQuery setInventoryIDContains(String value) { this.InventoryIDContains = value; return this; } public String getInventoryIDLike() { return InventoryIDLike; } public PO_LinesQuery setInventoryIDLike(String value) { this.InventoryIDLike = value; return this; } public ArrayList getInventoryIDBetween() { return InventoryIDBetween; } public PO_LinesQuery setInventoryIDBetween(ArrayList value) { this.InventoryIDBetween = value; return this; } public ArrayList getInventoryIDIn() { return InventoryIDIn; } public PO_LinesQuery setInventoryIDIn(ArrayList value) { this.InventoryIDIn = value; return this; } public BigDecimal getQuantity() { return Quantity; } public PO_LinesQuery setQuantity(BigDecimal value) { this.Quantity = value; return this; } public BigDecimal getQuantityGreaterThanOrEqualTo() { return QuantityGreaterThanOrEqualTo; } public PO_LinesQuery setQuantityGreaterThanOrEqualTo(BigDecimal value) { this.QuantityGreaterThanOrEqualTo = value; return this; } public BigDecimal getQuantityGreaterThan() { return QuantityGreaterThan; } public PO_LinesQuery setQuantityGreaterThan(BigDecimal value) { this.QuantityGreaterThan = value; return this; } public BigDecimal getQuantityLessThan() { return QuantityLessThan; } public PO_LinesQuery setQuantityLessThan(BigDecimal value) { this.QuantityLessThan = value; return this; } public BigDecimal getQuantityLessThanOrEqualTo() { return QuantityLessThanOrEqualTo; } public PO_LinesQuery setQuantityLessThanOrEqualTo(BigDecimal value) { this.QuantityLessThanOrEqualTo = value; return this; } public BigDecimal getQuantityNotEqualTo() { return QuantityNotEqualTo; } public PO_LinesQuery setQuantityNotEqualTo(BigDecimal value) { this.QuantityNotEqualTo = value; return this; } public ArrayList getQuantityBetween() { return QuantityBetween; } public PO_LinesQuery setQuantityBetween(ArrayList value) { this.QuantityBetween = value; return this; } public ArrayList getQuantityIn() { return QuantityIn; } public PO_LinesQuery setQuantityIn(ArrayList value) { this.QuantityIn = value; return this; } public BigDecimal getSuppliersCost() { return SuppliersCost; } public PO_LinesQuery setSuppliersCost(BigDecimal value) { this.SuppliersCost = value; return this; } public BigDecimal getSuppliersCostGreaterThanOrEqualTo() { return SuppliersCostGreaterThanOrEqualTo; } public PO_LinesQuery setSuppliersCostGreaterThanOrEqualTo(BigDecimal value) { this.SuppliersCostGreaterThanOrEqualTo = value; return this; } public BigDecimal getSuppliersCostGreaterThan() { return SuppliersCostGreaterThan; } public PO_LinesQuery setSuppliersCostGreaterThan(BigDecimal value) { this.SuppliersCostGreaterThan = value; return this; } public BigDecimal getSuppliersCostLessThan() { return SuppliersCostLessThan; } public PO_LinesQuery setSuppliersCostLessThan(BigDecimal value) { this.SuppliersCostLessThan = value; return this; } public BigDecimal getSuppliersCostLessThanOrEqualTo() { return SuppliersCostLessThanOrEqualTo; } public PO_LinesQuery setSuppliersCostLessThanOrEqualTo(BigDecimal value) { this.SuppliersCostLessThanOrEqualTo = value; return this; } public BigDecimal getSuppliersCostNotEqualTo() { return SuppliersCostNotEqualTo; } public PO_LinesQuery setSuppliersCostNotEqualTo(BigDecimal value) { this.SuppliersCostNotEqualTo = value; return this; } public ArrayList getSuppliersCostBetween() { return SuppliersCostBetween; } public PO_LinesQuery setSuppliersCostBetween(ArrayList value) { this.SuppliersCostBetween = value; return this; } public ArrayList getSuppliersCostIn() { return SuppliersCostIn; } public PO_LinesQuery setSuppliersCostIn(ArrayList value) { this.SuppliersCostIn = value; return this; } public Date getDeliveryDate() { return DeliveryDate; } public PO_LinesQuery setDeliveryDate(Date value) { this.DeliveryDate = value; return this; } public Date getDeliveryDateGreaterThanOrEqualTo() { return DeliveryDateGreaterThanOrEqualTo; } public PO_LinesQuery setDeliveryDateGreaterThanOrEqualTo(Date value) { this.DeliveryDateGreaterThanOrEqualTo = value; return this; } public Date getDeliveryDateGreaterThan() { return DeliveryDateGreaterThan; } public PO_LinesQuery setDeliveryDateGreaterThan(Date value) { this.DeliveryDateGreaterThan = value; return this; } public Date getDeliveryDateLessThan() { return DeliveryDateLessThan; } public PO_LinesQuery setDeliveryDateLessThan(Date value) { this.DeliveryDateLessThan = value; return this; } public Date getDeliveryDateLessThanOrEqualTo() { return DeliveryDateLessThanOrEqualTo; } public PO_LinesQuery setDeliveryDateLessThanOrEqualTo(Date value) { this.DeliveryDateLessThanOrEqualTo = value; return this; } public Date getDeliveryDateNotEqualTo() { return DeliveryDateNotEqualTo; } public PO_LinesQuery setDeliveryDateNotEqualTo(Date value) { this.DeliveryDateNotEqualTo = value; return this; } public ArrayList getDeliveryDateBetween() { return DeliveryDateBetween; } public PO_LinesQuery setDeliveryDateBetween(ArrayList value) { this.DeliveryDateBetween = value; return this; } public ArrayList getDeliveryDateIn() { return DeliveryDateIn; } public PO_LinesQuery setDeliveryDateIn(ArrayList value) { this.DeliveryDateIn = value; return this; } public BigDecimal getDelivered() { return Delivered; } public PO_LinesQuery setDelivered(BigDecimal value) { this.Delivered = value; return this; } public BigDecimal getDeliveredGreaterThanOrEqualTo() { return DeliveredGreaterThanOrEqualTo; } public PO_LinesQuery setDeliveredGreaterThanOrEqualTo(BigDecimal value) { this.DeliveredGreaterThanOrEqualTo = value; return this; } public BigDecimal getDeliveredGreaterThan() { return DeliveredGreaterThan; } public PO_LinesQuery setDeliveredGreaterThan(BigDecimal value) { this.DeliveredGreaterThan = value; return this; } public BigDecimal getDeliveredLessThan() { return DeliveredLessThan; } public PO_LinesQuery setDeliveredLessThan(BigDecimal value) { this.DeliveredLessThan = value; return this; } public BigDecimal getDeliveredLessThanOrEqualTo() { return DeliveredLessThanOrEqualTo; } public PO_LinesQuery setDeliveredLessThanOrEqualTo(BigDecimal value) { this.DeliveredLessThanOrEqualTo = value; return this; } public BigDecimal getDeliveredNotEqualTo() { return DeliveredNotEqualTo; } public PO_LinesQuery setDeliveredNotEqualTo(BigDecimal value) { this.DeliveredNotEqualTo = value; return this; } public ArrayList getDeliveredBetween() { return DeliveredBetween; } public PO_LinesQuery setDeliveredBetween(ArrayList value) { this.DeliveredBetween = value; return this; } public ArrayList getDeliveredIn() { return DeliveredIn; } public PO_LinesQuery setDeliveredIn(ArrayList value) { this.DeliveredIn = value; return this; } public Short getDecimalPlaces() { return DecimalPlaces; } public PO_LinesQuery setDecimalPlaces(Short value) { this.DecimalPlaces = value; return this; } public Short getDecimalPlacesGreaterThanOrEqualTo() { return DecimalPlacesGreaterThanOrEqualTo; } public PO_LinesQuery setDecimalPlacesGreaterThanOrEqualTo(Short value) { this.DecimalPlacesGreaterThanOrEqualTo = value; return this; } public Short getDecimalPlacesGreaterThan() { return DecimalPlacesGreaterThan; } public PO_LinesQuery setDecimalPlacesGreaterThan(Short value) { this.DecimalPlacesGreaterThan = value; return this; } public Short getDecimalPlacesLessThan() { return DecimalPlacesLessThan; } public PO_LinesQuery setDecimalPlacesLessThan(Short value) { this.DecimalPlacesLessThan = value; return this; } public Short getDecimalPlacesLessThanOrEqualTo() { return DecimalPlacesLessThanOrEqualTo; } public PO_LinesQuery setDecimalPlacesLessThanOrEqualTo(Short value) { this.DecimalPlacesLessThanOrEqualTo = value; return this; } public Short getDecimalPlacesNotEqualTo() { return DecimalPlacesNotEqualTo; } public PO_LinesQuery setDecimalPlacesNotEqualTo(Short value) { this.DecimalPlacesNotEqualTo = value; return this; } public ArrayList getDecimalPlacesBetween() { return DecimalPlacesBetween; } public PO_LinesQuery setDecimalPlacesBetween(ArrayList value) { this.DecimalPlacesBetween = value; return this; } public ArrayList getDecimalPlacesIn() { return DecimalPlacesIn; } public PO_LinesQuery setDecimalPlacesIn(ArrayList value) { this.DecimalPlacesIn = value; return this; } public Short getOrderLineNo() { return OrderLineNo; } public PO_LinesQuery setOrderLineNo(Short value) { this.OrderLineNo = value; return this; } public Short getOrderLineNoGreaterThanOrEqualTo() { return OrderLineNoGreaterThanOrEqualTo; } public PO_LinesQuery setOrderLineNoGreaterThanOrEqualTo(Short value) { this.OrderLineNoGreaterThanOrEqualTo = value; return this; } public Short getOrderLineNoGreaterThan() { return OrderLineNoGreaterThan; } public PO_LinesQuery setOrderLineNoGreaterThan(Short value) { this.OrderLineNoGreaterThan = value; return this; } public Short getOrderLineNoLessThan() { return OrderLineNoLessThan; } public PO_LinesQuery setOrderLineNoLessThan(Short value) { this.OrderLineNoLessThan = value; return this; } public Short getOrderLineNoLessThanOrEqualTo() { return OrderLineNoLessThanOrEqualTo; } public PO_LinesQuery setOrderLineNoLessThanOrEqualTo(Short value) { this.OrderLineNoLessThanOrEqualTo = value; return this; } public Short getOrderLineNoNotEqualTo() { return OrderLineNoNotEqualTo; } public PO_LinesQuery setOrderLineNoNotEqualTo(Short value) { this.OrderLineNoNotEqualTo = value; return this; } public ArrayList getOrderLineNoBetween() { return OrderLineNoBetween; } public PO_LinesQuery setOrderLineNoBetween(ArrayList value) { this.OrderLineNoBetween = value; return this; } public ArrayList getOrderLineNoIn() { return OrderLineNoIn; } public PO_LinesQuery setOrderLineNoIn(ArrayList value) { this.OrderLineNoIn = value; return this; } public String getSuppPartNo() { return SuppPartNo; } public PO_LinesQuery setSuppPartNo(String value) { this.SuppPartNo = value; return this; } public String getSuppPartNoStartsWith() { return SuppPartNoStartsWith; } public PO_LinesQuery setSuppPartNoStartsWith(String value) { this.SuppPartNoStartsWith = value; return this; } public String getSuppPartNoEndsWith() { return SuppPartNoEndsWith; } public PO_LinesQuery setSuppPartNoEndsWith(String value) { this.SuppPartNoEndsWith = value; return this; } public String getSuppPartNoContains() { return SuppPartNoContains; } public PO_LinesQuery setSuppPartNoContains(String value) { this.SuppPartNoContains = value; return this; } public String getSuppPartNoLike() { return SuppPartNoLike; } public PO_LinesQuery setSuppPartNoLike(String value) { this.SuppPartNoLike = value; return this; } public ArrayList getSuppPartNoBetween() { return SuppPartNoBetween; } public PO_LinesQuery setSuppPartNoBetween(ArrayList value) { this.SuppPartNoBetween = value; return this; } public ArrayList getSuppPartNoIn() { return SuppPartNoIn; } public PO_LinesQuery setSuppPartNoIn(ArrayList value) { this.SuppPartNoIn = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public PO_LinesQuery setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getLastSavedDateTimeGreaterThanOrEqualTo() { return LastSavedDateTimeGreaterThanOrEqualTo; } public PO_LinesQuery setLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.LastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeGreaterThan() { return LastSavedDateTimeGreaterThan; } public PO_LinesQuery setLastSavedDateTimeGreaterThan(Date value) { this.LastSavedDateTimeGreaterThan = value; return this; } public Date getLastSavedDateTimeLessThan() { return LastSavedDateTimeLessThan; } public PO_LinesQuery setLastSavedDateTimeLessThan(Date value) { this.LastSavedDateTimeLessThan = value; return this; } public Date getLastSavedDateTimeLessThanOrEqualTo() { return LastSavedDateTimeLessThanOrEqualTo; } public PO_LinesQuery setLastSavedDateTimeLessThanOrEqualTo(Date value) { this.LastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeNotEqualTo() { return LastSavedDateTimeNotEqualTo; } public PO_LinesQuery setLastSavedDateTimeNotEqualTo(Date value) { this.LastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getLastSavedDateTimeBetween() { return LastSavedDateTimeBetween; } public PO_LinesQuery setLastSavedDateTimeBetween(ArrayList value) { this.LastSavedDateTimeBetween = value; return this; } public ArrayList getLastSavedDateTimeIn() { return LastSavedDateTimeIn; } public PO_LinesQuery setLastSavedDateTimeIn(ArrayList value) { this.LastSavedDateTimeIn = value; return this; } public String getHistoryTextComment() { return HistoryText_Comment; } public PO_LinesQuery setHistoryTextComment(String value) { this.HistoryText_Comment = value; return this; } public String getHistoryTextCommentStartsWith() { return HistoryText_CommentStartsWith; } public PO_LinesQuery setHistoryTextCommentStartsWith(String value) { this.HistoryText_CommentStartsWith = value; return this; } public String getHistoryTextCommentEndsWith() { return HistoryText_CommentEndsWith; } public PO_LinesQuery setHistoryTextCommentEndsWith(String value) { this.HistoryText_CommentEndsWith = value; return this; } public String getHistoryTextCommentContains() { return HistoryText_CommentContains; } public PO_LinesQuery setHistoryTextCommentContains(String value) { this.HistoryText_CommentContains = value; return this; } public String getHistoryTextCommentLike() { return HistoryText_CommentLike; } public PO_LinesQuery setHistoryTextCommentLike(String value) { this.HistoryText_CommentLike = value; return this; } public ArrayList getHistoryTextCommentBetween() { return HistoryText_CommentBetween; } public PO_LinesQuery setHistoryTextCommentBetween(ArrayList value) { this.HistoryText_CommentBetween = value; return this; } public ArrayList getHistoryTextCommentIn() { return HistoryText_CommentIn; } public PO_LinesQuery setHistoryTextCommentIn(ArrayList value) { this.HistoryText_CommentIn = value; return this; } public BigDecimal getOrderUnits() { return OrderUnits; } public PO_LinesQuery setOrderUnits(BigDecimal value) { this.OrderUnits = value; return this; } public BigDecimal getOrderUnitsGreaterThanOrEqualTo() { return OrderUnitsGreaterThanOrEqualTo; } public PO_LinesQuery setOrderUnitsGreaterThanOrEqualTo(BigDecimal value) { this.OrderUnitsGreaterThanOrEqualTo = value; return this; } public BigDecimal getOrderUnitsGreaterThan() { return OrderUnitsGreaterThan; } public PO_LinesQuery setOrderUnitsGreaterThan(BigDecimal value) { this.OrderUnitsGreaterThan = value; return this; } public BigDecimal getOrderUnitsLessThan() { return OrderUnitsLessThan; } public PO_LinesQuery setOrderUnitsLessThan(BigDecimal value) { this.OrderUnitsLessThan = value; return this; } public BigDecimal getOrderUnitsLessThanOrEqualTo() { return OrderUnitsLessThanOrEqualTo; } public PO_LinesQuery setOrderUnitsLessThanOrEqualTo(BigDecimal value) { this.OrderUnitsLessThanOrEqualTo = value; return this; } public BigDecimal getOrderUnitsNotEqualTo() { return OrderUnitsNotEqualTo; } public PO_LinesQuery setOrderUnitsNotEqualTo(BigDecimal value) { this.OrderUnitsNotEqualTo = value; return this; } public ArrayList getOrderUnitsBetween() { return OrderUnitsBetween; } public PO_LinesQuery setOrderUnitsBetween(ArrayList value) { this.OrderUnitsBetween = value; return this; } public ArrayList getOrderUnitsIn() { return OrderUnitsIn; } public PO_LinesQuery setOrderUnitsIn(ArrayList value) { this.OrderUnitsIn = value; return this; } public Short getLineType() { return LineType; } public PO_LinesQuery setLineType(Short value) { this.LineType = value; return this; } public Short getLineTypeGreaterThanOrEqualTo() { return LineTypeGreaterThanOrEqualTo; } public PO_LinesQuery setLineTypeGreaterThanOrEqualTo(Short value) { this.LineTypeGreaterThanOrEqualTo = value; return this; } public Short getLineTypeGreaterThan() { return LineTypeGreaterThan; } public PO_LinesQuery setLineTypeGreaterThan(Short value) { this.LineTypeGreaterThan = value; return this; } public Short getLineTypeLessThan() { return LineTypeLessThan; } public PO_LinesQuery setLineTypeLessThan(Short value) { this.LineTypeLessThan = value; return this; } public Short getLineTypeLessThanOrEqualTo() { return LineTypeLessThanOrEqualTo; } public PO_LinesQuery setLineTypeLessThanOrEqualTo(Short value) { this.LineTypeLessThanOrEqualTo = value; return this; } public Short getLineTypeNotEqualTo() { return LineTypeNotEqualTo; } public PO_LinesQuery setLineTypeNotEqualTo(Short value) { this.LineTypeNotEqualTo = value; return this; } public ArrayList getLineTypeBetween() { return LineTypeBetween; } public PO_LinesQuery setLineTypeBetween(ArrayList value) { this.LineTypeBetween = value; return this; } public ArrayList getLineTypeIn() { return LineTypeIn; } public PO_LinesQuery setLineTypeIn(ArrayList value) { this.LineTypeIn = value; return this; } public String getPartNo() { return PartNo; } public PO_LinesQuery setPartNo(String value) { this.PartNo = value; return this; } public String getPartNoStartsWith() { return PartNoStartsWith; } public PO_LinesQuery setPartNoStartsWith(String value) { this.PartNoStartsWith = value; return this; } public String getPartNoEndsWith() { return PartNoEndsWith; } public PO_LinesQuery setPartNoEndsWith(String value) { this.PartNoEndsWith = value; return this; } public String getPartNoContains() { return PartNoContains; } public PO_LinesQuery setPartNoContains(String value) { this.PartNoContains = value; return this; } public String getPartNoLike() { return PartNoLike; } public PO_LinesQuery setPartNoLike(String value) { this.PartNoLike = value; return this; } public ArrayList getPartNoBetween() { return PartNoBetween; } public PO_LinesQuery setPartNoBetween(ArrayList value) { this.PartNoBetween = value; return this; } public ArrayList getPartNoIn() { return PartNoIn; } public PO_LinesQuery setPartNoIn(ArrayList value) { this.PartNoIn = value; return this; } public String getDescription() { return Description; } public PO_LinesQuery setDescription(String value) { this.Description = value; return this; } public String getDescriptionStartsWith() { return DescriptionStartsWith; } public PO_LinesQuery setDescriptionStartsWith(String value) { this.DescriptionStartsWith = value; return this; } public String getDescriptionEndsWith() { return DescriptionEndsWith; } public PO_LinesQuery setDescriptionEndsWith(String value) { this.DescriptionEndsWith = value; return this; } public String getDescriptionContains() { return DescriptionContains; } public PO_LinesQuery setDescriptionContains(String value) { this.DescriptionContains = value; return this; } public String getDescriptionLike() { return DescriptionLike; } public PO_LinesQuery setDescriptionLike(String value) { this.DescriptionLike = value; return this; } public ArrayList getDescriptionBetween() { return DescriptionBetween; } public PO_LinesQuery setDescriptionBetween(ArrayList value) { this.DescriptionBetween = value; return this; } public ArrayList getDescriptionIn() { return DescriptionIn; } public PO_LinesQuery setDescriptionIn(ArrayList value) { this.DescriptionIn = value; return this; } public Short getDeliveryDays() { return DeliveryDays; } public PO_LinesQuery setDeliveryDays(Short value) { this.DeliveryDays = value; return this; } public Short getDeliveryDaysGreaterThanOrEqualTo() { return DeliveryDaysGreaterThanOrEqualTo; } public PO_LinesQuery setDeliveryDaysGreaterThanOrEqualTo(Short value) { this.DeliveryDaysGreaterThanOrEqualTo = value; return this; } public Short getDeliveryDaysGreaterThan() { return DeliveryDaysGreaterThan; } public PO_LinesQuery setDeliveryDaysGreaterThan(Short value) { this.DeliveryDaysGreaterThan = value; return this; } public Short getDeliveryDaysLessThan() { return DeliveryDaysLessThan; } public PO_LinesQuery setDeliveryDaysLessThan(Short value) { this.DeliveryDaysLessThan = value; return this; } public Short getDeliveryDaysLessThanOrEqualTo() { return DeliveryDaysLessThanOrEqualTo; } public PO_LinesQuery setDeliveryDaysLessThanOrEqualTo(Short value) { this.DeliveryDaysLessThanOrEqualTo = value; return this; } public Short getDeliveryDaysNotEqualTo() { return DeliveryDaysNotEqualTo; } public PO_LinesQuery setDeliveryDaysNotEqualTo(Short value) { this.DeliveryDaysNotEqualTo = value; return this; } public ArrayList getDeliveryDaysBetween() { return DeliveryDaysBetween; } public PO_LinesQuery setDeliveryDaysBetween(ArrayList value) { this.DeliveryDaysBetween = value; return this; } public ArrayList getDeliveryDaysIn() { return DeliveryDaysIn; } public PO_LinesQuery setDeliveryDaysIn(ArrayList value) { this.DeliveryDaysIn = value; return this; } public String getClassificationID() { return ClassificationID; } public PO_LinesQuery setClassificationID(String value) { this.ClassificationID = value; return this; } public String getClassificationIDStartsWith() { return ClassificationIDStartsWith; } public PO_LinesQuery setClassificationIDStartsWith(String value) { this.ClassificationIDStartsWith = value; return this; } public String getClassificationIDEndsWith() { return ClassificationIDEndsWith; } public PO_LinesQuery setClassificationIDEndsWith(String value) { this.ClassificationIDEndsWith = value; return this; } public String getClassificationIDContains() { return ClassificationIDContains; } public PO_LinesQuery setClassificationIDContains(String value) { this.ClassificationIDContains = value; return this; } public String getClassificationIDLike() { return ClassificationIDLike; } public PO_LinesQuery setClassificationIDLike(String value) { this.ClassificationIDLike = value; return this; } public ArrayList getClassificationIDBetween() { return ClassificationIDBetween; } public PO_LinesQuery setClassificationIDBetween(ArrayList value) { this.ClassificationIDBetween = value; return this; } public ArrayList getClassificationIDIn() { return ClassificationIDIn; } public PO_LinesQuery setClassificationIDIn(ArrayList value) { this.ClassificationIDIn = value; return this; } public String getClassDescription() { return ClassDescription; } public PO_LinesQuery setClassDescription(String value) { this.ClassDescription = value; return this; } public String getClassDescriptionStartsWith() { return ClassDescriptionStartsWith; } public PO_LinesQuery setClassDescriptionStartsWith(String value) { this.ClassDescriptionStartsWith = value; return this; } public String getClassDescriptionEndsWith() { return ClassDescriptionEndsWith; } public PO_LinesQuery setClassDescriptionEndsWith(String value) { this.ClassDescriptionEndsWith = value; return this; } public String getClassDescriptionContains() { return ClassDescriptionContains; } public PO_LinesQuery setClassDescriptionContains(String value) { this.ClassDescriptionContains = value; return this; } public String getClassDescriptionLike() { return ClassDescriptionLike; } public PO_LinesQuery setClassDescriptionLike(String value) { this.ClassDescriptionLike = value; return this; } public ArrayList getClassDescriptionBetween() { return ClassDescriptionBetween; } public PO_LinesQuery setClassDescriptionBetween(ArrayList value) { this.ClassDescriptionBetween = value; return this; } public ArrayList getClassDescriptionIn() { return ClassDescriptionIn; } public PO_LinesQuery setClassDescriptionIn(ArrayList value) { this.ClassDescriptionIn = value; return this; } public BigDecimal getTaxAmount() { return TaxAmount; } public PO_LinesQuery setTaxAmount(BigDecimal value) { this.TaxAmount = value; return this; } public BigDecimal getTaxAmountGreaterThanOrEqualTo() { return TaxAmountGreaterThanOrEqualTo; } public PO_LinesQuery setTaxAmountGreaterThanOrEqualTo(BigDecimal value) { this.TaxAmountGreaterThanOrEqualTo = value; return this; } public BigDecimal getTaxAmountGreaterThan() { return TaxAmountGreaterThan; } public PO_LinesQuery setTaxAmountGreaterThan(BigDecimal value) { this.TaxAmountGreaterThan = value; return this; } public BigDecimal getTaxAmountLessThan() { return TaxAmountLessThan; } public PO_LinesQuery setTaxAmountLessThan(BigDecimal value) { this.TaxAmountLessThan = value; return this; } public BigDecimal getTaxAmountLessThanOrEqualTo() { return TaxAmountLessThanOrEqualTo; } public PO_LinesQuery setTaxAmountLessThanOrEqualTo(BigDecimal value) { this.TaxAmountLessThanOrEqualTo = value; return this; } public BigDecimal getTaxAmountNotEqualTo() { return TaxAmountNotEqualTo; } public PO_LinesQuery setTaxAmountNotEqualTo(BigDecimal value) { this.TaxAmountNotEqualTo = value; return this; } public ArrayList getTaxAmountBetween() { return TaxAmountBetween; } public PO_LinesQuery setTaxAmountBetween(ArrayList value) { this.TaxAmountBetween = value; return this; } public ArrayList getTaxAmountIn() { return TaxAmountIn; } public PO_LinesQuery setTaxAmountIn(ArrayList value) { this.TaxAmountIn = value; return this; } public String getTaxID() { return TaxID; } public PO_LinesQuery setTaxID(String value) { this.TaxID = value; return this; } public String getTaxIDStartsWith() { return TaxIDStartsWith; } public PO_LinesQuery setTaxIDStartsWith(String value) { this.TaxIDStartsWith = value; return this; } public String getTaxIDEndsWith() { return TaxIDEndsWith; } public PO_LinesQuery setTaxIDEndsWith(String value) { this.TaxIDEndsWith = value; return this; } public String getTaxIDContains() { return TaxIDContains; } public PO_LinesQuery setTaxIDContains(String value) { this.TaxIDContains = value; return this; } public String getTaxIDLike() { return TaxIDLike; } public PO_LinesQuery setTaxIDLike(String value) { this.TaxIDLike = value; return this; } public ArrayList getTaxIDBetween() { return TaxIDBetween; } public PO_LinesQuery setTaxIDBetween(ArrayList value) { this.TaxIDBetween = value; return this; } public ArrayList getTaxIDIn() { return TaxIDIn; } public PO_LinesQuery setTaxIDIn(ArrayList value) { this.TaxIDIn = value; return this; } public BigDecimal getTaxRate() { return TaxRate; } public PO_LinesQuery setTaxRate(BigDecimal value) { this.TaxRate = value; return this; } public BigDecimal getTaxRateGreaterThanOrEqualTo() { return TaxRateGreaterThanOrEqualTo; } public PO_LinesQuery setTaxRateGreaterThanOrEqualTo(BigDecimal value) { this.TaxRateGreaterThanOrEqualTo = value; return this; } public BigDecimal getTaxRateGreaterThan() { return TaxRateGreaterThan; } public PO_LinesQuery setTaxRateGreaterThan(BigDecimal value) { this.TaxRateGreaterThan = value; return this; } public BigDecimal getTaxRateLessThan() { return TaxRateLessThan; } public PO_LinesQuery setTaxRateLessThan(BigDecimal value) { this.TaxRateLessThan = value; return this; } public BigDecimal getTaxRateLessThanOrEqualTo() { return TaxRateLessThanOrEqualTo; } public PO_LinesQuery setTaxRateLessThanOrEqualTo(BigDecimal value) { this.TaxRateLessThanOrEqualTo = value; return this; } public BigDecimal getTaxRateNotEqualTo() { return TaxRateNotEqualTo; } public PO_LinesQuery setTaxRateNotEqualTo(BigDecimal value) { this.TaxRateNotEqualTo = value; return this; } public ArrayList getTaxRateBetween() { return TaxRateBetween; } public PO_LinesQuery setTaxRateBetween(ArrayList value) { this.TaxRateBetween = value; return this; } public ArrayList getTaxRateIn() { return TaxRateIn; } public PO_LinesQuery setTaxRateIn(ArrayList value) { this.TaxRateIn = value; return this; } public BigDecimal getHomeSuppliersCost() { return HomeSuppliersCost; } public PO_LinesQuery setHomeSuppliersCost(BigDecimal value) { this.HomeSuppliersCost = value; return this; } public BigDecimal getHomeSuppliersCostGreaterThanOrEqualTo() { return HomeSuppliersCostGreaterThanOrEqualTo; } public PO_LinesQuery setHomeSuppliersCostGreaterThanOrEqualTo(BigDecimal value) { this.HomeSuppliersCostGreaterThanOrEqualTo = value; return this; } public BigDecimal getHomeSuppliersCostGreaterThan() { return HomeSuppliersCostGreaterThan; } public PO_LinesQuery setHomeSuppliersCostGreaterThan(BigDecimal value) { this.HomeSuppliersCostGreaterThan = value; return this; } public BigDecimal getHomeSuppliersCostLessThan() { return HomeSuppliersCostLessThan; } public PO_LinesQuery setHomeSuppliersCostLessThan(BigDecimal value) { this.HomeSuppliersCostLessThan = value; return this; } public BigDecimal getHomeSuppliersCostLessThanOrEqualTo() { return HomeSuppliersCostLessThanOrEqualTo; } public PO_LinesQuery setHomeSuppliersCostLessThanOrEqualTo(BigDecimal value) { this.HomeSuppliersCostLessThanOrEqualTo = value; return this; } public BigDecimal getHomeSuppliersCostNotEqualTo() { return HomeSuppliersCostNotEqualTo; } public PO_LinesQuery setHomeSuppliersCostNotEqualTo(BigDecimal value) { this.HomeSuppliersCostNotEqualTo = value; return this; } public ArrayList getHomeSuppliersCostBetween() { return HomeSuppliersCostBetween; } public PO_LinesQuery setHomeSuppliersCostBetween(ArrayList value) { this.HomeSuppliersCostBetween = value; return this; } public ArrayList getHomeSuppliersCostIn() { return HomeSuppliersCostIn; } public PO_LinesQuery setHomeSuppliersCostIn(ArrayList value) { this.HomeSuppliersCostIn = value; return this; } public BigDecimal getCurrencyRateUsed() { return CurrencyRateUsed; } public PO_LinesQuery setCurrencyRateUsed(BigDecimal value) { this.CurrencyRateUsed = value; return this; } public BigDecimal getCurrencyRateUsedGreaterThanOrEqualTo() { return CurrencyRateUsedGreaterThanOrEqualTo; } public PO_LinesQuery setCurrencyRateUsedGreaterThanOrEqualTo(BigDecimal value) { this.CurrencyRateUsedGreaterThanOrEqualTo = value; return this; } public BigDecimal getCurrencyRateUsedGreaterThan() { return CurrencyRateUsedGreaterThan; } public PO_LinesQuery setCurrencyRateUsedGreaterThan(BigDecimal value) { this.CurrencyRateUsedGreaterThan = value; return this; } public BigDecimal getCurrencyRateUsedLessThan() { return CurrencyRateUsedLessThan; } public PO_LinesQuery setCurrencyRateUsedLessThan(BigDecimal value) { this.CurrencyRateUsedLessThan = value; return this; } public BigDecimal getCurrencyRateUsedLessThanOrEqualTo() { return CurrencyRateUsedLessThanOrEqualTo; } public PO_LinesQuery setCurrencyRateUsedLessThanOrEqualTo(BigDecimal value) { this.CurrencyRateUsedLessThanOrEqualTo = value; return this; } public BigDecimal getCurrencyRateUsedNotEqualTo() { return CurrencyRateUsedNotEqualTo; } public PO_LinesQuery setCurrencyRateUsedNotEqualTo(BigDecimal value) { this.CurrencyRateUsedNotEqualTo = value; return this; } public ArrayList getCurrencyRateUsedBetween() { return CurrencyRateUsedBetween; } public PO_LinesQuery setCurrencyRateUsedBetween(ArrayList value) { this.CurrencyRateUsedBetween = value; return this; } public ArrayList getCurrencyRateUsedIn() { return CurrencyRateUsedIn; } public PO_LinesQuery setCurrencyRateUsedIn(ArrayList value) { this.CurrencyRateUsedIn = value; return this; } public String getPoClassID() { return POClassID; } public PO_LinesQuery setPoClassID(String value) { this.POClassID = value; return this; } public String getPoClassIDStartsWith() { return POClassIDStartsWith; } public PO_LinesQuery setPoClassIDStartsWith(String value) { this.POClassIDStartsWith = value; return this; } public String getPoClassIDEndsWith() { return POClassIDEndsWith; } public PO_LinesQuery setPoClassIDEndsWith(String value) { this.POClassIDEndsWith = value; return this; } public String getPoClassIDContains() { return POClassIDContains; } public PO_LinesQuery setPoClassIDContains(String value) { this.POClassIDContains = value; return this; } public String getPoClassIDLike() { return POClassIDLike; } public PO_LinesQuery setPoClassIDLike(String value) { this.POClassIDLike = value; return this; } public ArrayList getPoClassIDBetween() { return POClassIDBetween; } public PO_LinesQuery setPoClassIDBetween(ArrayList value) { this.POClassIDBetween = value; return this; } public ArrayList getPoClassIDIn() { return POClassIDIn; } public PO_LinesQuery setPoClassIDIn(ArrayList value) { this.POClassIDIn = value; return this; } public BigDecimal getIncPrice() { return IncPrice; } public PO_LinesQuery setIncPrice(BigDecimal value) { this.IncPrice = value; return this; } public BigDecimal getIncPriceGreaterThanOrEqualTo() { return IncPriceGreaterThanOrEqualTo; } public PO_LinesQuery setIncPriceGreaterThanOrEqualTo(BigDecimal value) { this.IncPriceGreaterThanOrEqualTo = value; return this; } public BigDecimal getIncPriceGreaterThan() { return IncPriceGreaterThan; } public PO_LinesQuery setIncPriceGreaterThan(BigDecimal value) { this.IncPriceGreaterThan = value; return this; } public BigDecimal getIncPriceLessThan() { return IncPriceLessThan; } public PO_LinesQuery setIncPriceLessThan(BigDecimal value) { this.IncPriceLessThan = value; return this; } public BigDecimal getIncPriceLessThanOrEqualTo() { return IncPriceLessThanOrEqualTo; } public PO_LinesQuery setIncPriceLessThanOrEqualTo(BigDecimal value) { this.IncPriceLessThanOrEqualTo = value; return this; } public BigDecimal getIncPriceNotEqualTo() { return IncPriceNotEqualTo; } public PO_LinesQuery setIncPriceNotEqualTo(BigDecimal value) { this.IncPriceNotEqualTo = value; return this; } public ArrayList getIncPriceBetween() { return IncPriceBetween; } public PO_LinesQuery setIncPriceBetween(ArrayList value) { this.IncPriceBetween = value; return this; } public ArrayList getIncPriceIn() { return IncPriceIn; } public PO_LinesQuery setIncPriceIn(ArrayList value) { this.IncPriceIn = value; return this; } public BigDecimal getLineTotal() { return LineTotal; } public PO_LinesQuery setLineTotal(BigDecimal value) { this.LineTotal = value; return this; } public BigDecimal getLineTotalGreaterThanOrEqualTo() { return LineTotalGreaterThanOrEqualTo; } public PO_LinesQuery setLineTotalGreaterThanOrEqualTo(BigDecimal value) { this.LineTotalGreaterThanOrEqualTo = value; return this; } public BigDecimal getLineTotalGreaterThan() { return LineTotalGreaterThan; } public PO_LinesQuery setLineTotalGreaterThan(BigDecimal value) { this.LineTotalGreaterThan = value; return this; } public BigDecimal getLineTotalLessThan() { return LineTotalLessThan; } public PO_LinesQuery setLineTotalLessThan(BigDecimal value) { this.LineTotalLessThan = value; return this; } public BigDecimal getLineTotalLessThanOrEqualTo() { return LineTotalLessThanOrEqualTo; } public PO_LinesQuery setLineTotalLessThanOrEqualTo(BigDecimal value) { this.LineTotalLessThanOrEqualTo = value; return this; } public BigDecimal getLineTotalNotEqualTo() { return LineTotalNotEqualTo; } public PO_LinesQuery setLineTotalNotEqualTo(BigDecimal value) { this.LineTotalNotEqualTo = value; return this; } public ArrayList getLineTotalBetween() { return LineTotalBetween; } public PO_LinesQuery setLineTotalBetween(ArrayList value) { this.LineTotalBetween = value; return this; } public ArrayList getLineTotalIn() { return LineTotalIn; } public PO_LinesQuery setLineTotalIn(ArrayList value) { this.LineTotalIn = value; return this; } public Short getFxDecimalPlaces() { return FxDecimalPlaces; } public PO_LinesQuery setFxDecimalPlaces(Short value) { this.FxDecimalPlaces = value; return this; } public Short getFxDecimalPlacesGreaterThanOrEqualTo() { return FxDecimalPlacesGreaterThanOrEqualTo; } public PO_LinesQuery setFxDecimalPlacesGreaterThanOrEqualTo(Short value) { this.FxDecimalPlacesGreaterThanOrEqualTo = value; return this; } public Short getFxDecimalPlacesGreaterThan() { return FxDecimalPlacesGreaterThan; } public PO_LinesQuery setFxDecimalPlacesGreaterThan(Short value) { this.FxDecimalPlacesGreaterThan = value; return this; } public Short getFxDecimalPlacesLessThan() { return FxDecimalPlacesLessThan; } public PO_LinesQuery setFxDecimalPlacesLessThan(Short value) { this.FxDecimalPlacesLessThan = value; return this; } public Short getFxDecimalPlacesLessThanOrEqualTo() { return FxDecimalPlacesLessThanOrEqualTo; } public PO_LinesQuery setFxDecimalPlacesLessThanOrEqualTo(Short value) { this.FxDecimalPlacesLessThanOrEqualTo = value; return this; } public Short getFxDecimalPlacesNotEqualTo() { return FxDecimalPlacesNotEqualTo; } public PO_LinesQuery setFxDecimalPlacesNotEqualTo(Short value) { this.FxDecimalPlacesNotEqualTo = value; return this; } public ArrayList getFxDecimalPlacesBetween() { return FxDecimalPlacesBetween; } public PO_LinesQuery setFxDecimalPlacesBetween(ArrayList value) { this.FxDecimalPlacesBetween = value; return this; } public ArrayList getFxDecimalPlacesIn() { return FxDecimalPlacesIn; } public PO_LinesQuery setFxDecimalPlacesIn(ArrayList value) { this.FxDecimalPlacesIn = value; return this; } public Short getAudDecimalPlaces() { return AUDDecimalPlaces; } public PO_LinesQuery setAudDecimalPlaces(Short value) { this.AUDDecimalPlaces = value; return this; } public Short getAudDecimalPlacesGreaterThanOrEqualTo() { return AUDDecimalPlacesGreaterThanOrEqualTo; } public PO_LinesQuery setAudDecimalPlacesGreaterThanOrEqualTo(Short value) { this.AUDDecimalPlacesGreaterThanOrEqualTo = value; return this; } public Short getAudDecimalPlacesGreaterThan() { return AUDDecimalPlacesGreaterThan; } public PO_LinesQuery setAudDecimalPlacesGreaterThan(Short value) { this.AUDDecimalPlacesGreaterThan = value; return this; } public Short getAudDecimalPlacesLessThan() { return AUDDecimalPlacesLessThan; } public PO_LinesQuery setAudDecimalPlacesLessThan(Short value) { this.AUDDecimalPlacesLessThan = value; return this; } public Short getAudDecimalPlacesLessThanOrEqualTo() { return AUDDecimalPlacesLessThanOrEqualTo; } public PO_LinesQuery setAudDecimalPlacesLessThanOrEqualTo(Short value) { this.AUDDecimalPlacesLessThanOrEqualTo = value; return this; } public Short getAudDecimalPlacesNotEqualTo() { return AUDDecimalPlacesNotEqualTo; } public PO_LinesQuery setAudDecimalPlacesNotEqualTo(Short value) { this.AUDDecimalPlacesNotEqualTo = value; return this; } public ArrayList getAudDecimalPlacesBetween() { return AUDDecimalPlacesBetween; } public PO_LinesQuery setAudDecimalPlacesBetween(ArrayList value) { this.AUDDecimalPlacesBetween = value; return this; } public ArrayList getAudDecimalPlacesIn() { return AUDDecimalPlacesIn; } public PO_LinesQuery setAudDecimalPlacesIn(ArrayList value) { this.AUDDecimalPlacesIn = value; return this; } public BigDecimal getFxTotal() { return FxTotal; } public PO_LinesQuery setFxTotal(BigDecimal value) { this.FxTotal = value; return this; } public BigDecimal getFxTotalGreaterThanOrEqualTo() { return FxTotalGreaterThanOrEqualTo; } public PO_LinesQuery setFxTotalGreaterThanOrEqualTo(BigDecimal value) { this.FxTotalGreaterThanOrEqualTo = value; return this; } public BigDecimal getFxTotalGreaterThan() { return FxTotalGreaterThan; } public PO_LinesQuery setFxTotalGreaterThan(BigDecimal value) { this.FxTotalGreaterThan = value; return this; } public BigDecimal getFxTotalLessThan() { return FxTotalLessThan; } public PO_LinesQuery setFxTotalLessThan(BigDecimal value) { this.FxTotalLessThan = value; return this; } public BigDecimal getFxTotalLessThanOrEqualTo() { return FxTotalLessThanOrEqualTo; } public PO_LinesQuery setFxTotalLessThanOrEqualTo(BigDecimal value) { this.FxTotalLessThanOrEqualTo = value; return this; } public BigDecimal getFxTotalNotEqualTo() { return FxTotalNotEqualTo; } public PO_LinesQuery setFxTotalNotEqualTo(BigDecimal value) { this.FxTotalNotEqualTo = value; return this; } public ArrayList getFxTotalBetween() { return FxTotalBetween; } public PO_LinesQuery setFxTotalBetween(ArrayList value) { this.FxTotalBetween = value; return this; } public ArrayList getFxTotalIn() { return FxTotalIn; } public PO_LinesQuery setFxTotalIn(ArrayList value) { this.FxTotalIn = value; return this; } public String getInSupplierWarehouseRecID() { return IN_SupplierWarehouse_RecID; } public PO_LinesQuery setInSupplierWarehouseRecID(String value) { this.IN_SupplierWarehouse_RecID = value; return this; } public String getInSupplierWarehouseRecIDStartsWith() { return IN_SupplierWarehouse_RecIDStartsWith; } public PO_LinesQuery setInSupplierWarehouseRecIDStartsWith(String value) { this.IN_SupplierWarehouse_RecIDStartsWith = value; return this; } public String getInSupplierWarehouseRecIDEndsWith() { return IN_SupplierWarehouse_RecIDEndsWith; } public PO_LinesQuery setInSupplierWarehouseRecIDEndsWith(String value) { this.IN_SupplierWarehouse_RecIDEndsWith = value; return this; } public String getInSupplierWarehouseRecIDContains() { return IN_SupplierWarehouse_RecIDContains; } public PO_LinesQuery setInSupplierWarehouseRecIDContains(String value) { this.IN_SupplierWarehouse_RecIDContains = value; return this; } public String getInSupplierWarehouseRecIDLike() { return IN_SupplierWarehouse_RecIDLike; } public PO_LinesQuery setInSupplierWarehouseRecIDLike(String value) { this.IN_SupplierWarehouse_RecIDLike = value; return this; } public ArrayList getInSupplierWarehouseRecIDBetween() { return IN_SupplierWarehouse_RecIDBetween; } public PO_LinesQuery setInSupplierWarehouseRecIDBetween(ArrayList value) { this.IN_SupplierWarehouse_RecIDBetween = value; return this; } public ArrayList getInSupplierWarehouseRecIDIn() { return IN_SupplierWarehouse_RecIDIn; } public PO_LinesQuery setInSupplierWarehouseRecIDIn(ArrayList value) { this.IN_SupplierWarehouse_RecIDIn = value; return this; } public String getUnit() { return Unit; } public PO_LinesQuery setUnit(String value) { this.Unit = value; return this; } public String getUnitStartsWith() { return UnitStartsWith; } public PO_LinesQuery setUnitStartsWith(String value) { this.UnitStartsWith = value; return this; } public String getUnitEndsWith() { return UnitEndsWith; } public PO_LinesQuery setUnitEndsWith(String value) { this.UnitEndsWith = value; return this; } public String getUnitContains() { return UnitContains; } public PO_LinesQuery setUnitContains(String value) { this.UnitContains = value; return this; } public String getUnitLike() { return UnitLike; } public PO_LinesQuery setUnitLike(String value) { this.UnitLike = value; return this; } public ArrayList getUnitBetween() { return UnitBetween; } public PO_LinesQuery setUnitBetween(ArrayList value) { this.UnitBetween = value; return this; } public ArrayList getUnitIn() { return UnitIn; } public PO_LinesQuery setUnitIn(ArrayList value) { this.UnitIn = value; return this; } public Date getUserDefinedDate3() { return UserDefinedDate3; } public PO_LinesQuery setUserDefinedDate3(Date value) { this.UserDefinedDate3 = value; return this; } public Date getUserDefinedDate3GreaterThanOrEqualTo() { return UserDefinedDate3GreaterThanOrEqualTo; } public PO_LinesQuery setUserDefinedDate3GreaterThanOrEqualTo(Date value) { this.UserDefinedDate3GreaterThanOrEqualTo = value; return this; } public Date getUserDefinedDate3GreaterThan() { return UserDefinedDate3GreaterThan; } public PO_LinesQuery setUserDefinedDate3GreaterThan(Date value) { this.UserDefinedDate3GreaterThan = value; return this; } public Date getUserDefinedDate3LessThan() { return UserDefinedDate3LessThan; } public PO_LinesQuery setUserDefinedDate3LessThan(Date value) { this.UserDefinedDate3LessThan = value; return this; } public Date getUserDefinedDate3LessThanOrEqualTo() { return UserDefinedDate3LessThanOrEqualTo; } public PO_LinesQuery setUserDefinedDate3LessThanOrEqualTo(Date value) { this.UserDefinedDate3LessThanOrEqualTo = value; return this; } public Date getUserDefinedDate3NotEqualTo() { return UserDefinedDate3NotEqualTo; } public PO_LinesQuery setUserDefinedDate3NotEqualTo(Date value) { this.UserDefinedDate3NotEqualTo = value; return this; } public ArrayList getUserDefinedDate3Between() { return UserDefinedDate3Between; } public PO_LinesQuery setUserDefinedDate3Between(ArrayList value) { this.UserDefinedDate3Between = value; return this; } public ArrayList getUserDefinedDate3In() { return UserDefinedDate3In; } public PO_LinesQuery setUserDefinedDate3In(ArrayList value) { this.UserDefinedDate3In = value; return this; } public String getUserDefinedString1() { return UserDefinedString1; } public PO_LinesQuery setUserDefinedString1(String value) { this.UserDefinedString1 = value; return this; } public String getUserDefinedString1StartsWith() { return UserDefinedString1StartsWith; } public PO_LinesQuery setUserDefinedString1StartsWith(String value) { this.UserDefinedString1StartsWith = value; return this; } public String getUserDefinedString1EndsWith() { return UserDefinedString1EndsWith; } public PO_LinesQuery setUserDefinedString1EndsWith(String value) { this.UserDefinedString1EndsWith = value; return this; } public String getUserDefinedString1Contains() { return UserDefinedString1Contains; } public PO_LinesQuery setUserDefinedString1Contains(String value) { this.UserDefinedString1Contains = value; return this; } public String getUserDefinedString1Like() { return UserDefinedString1Like; } public PO_LinesQuery setUserDefinedString1Like(String value) { this.UserDefinedString1Like = value; return this; } public ArrayList getUserDefinedString1Between() { return UserDefinedString1Between; } public PO_LinesQuery setUserDefinedString1Between(ArrayList value) { this.UserDefinedString1Between = value; return this; } public ArrayList getUserDefinedString1In() { return UserDefinedString1In; } public PO_LinesQuery setUserDefinedString1In(ArrayList value) { this.UserDefinedString1In = value; return this; } public String getUserDefinedString2() { return UserDefinedString2; } public PO_LinesQuery setUserDefinedString2(String value) { this.UserDefinedString2 = value; return this; } public String getUserDefinedString2StartsWith() { return UserDefinedString2StartsWith; } public PO_LinesQuery setUserDefinedString2StartsWith(String value) { this.UserDefinedString2StartsWith = value; return this; } public String getUserDefinedString2EndsWith() { return UserDefinedString2EndsWith; } public PO_LinesQuery setUserDefinedString2EndsWith(String value) { this.UserDefinedString2EndsWith = value; return this; } public String getUserDefinedString2Contains() { return UserDefinedString2Contains; } public PO_LinesQuery setUserDefinedString2Contains(String value) { this.UserDefinedString2Contains = value; return this; } public String getUserDefinedString2Like() { return UserDefinedString2Like; } public PO_LinesQuery setUserDefinedString2Like(String value) { this.UserDefinedString2Like = value; return this; } public ArrayList getUserDefinedString2Between() { return UserDefinedString2Between; } public PO_LinesQuery setUserDefinedString2Between(ArrayList value) { this.UserDefinedString2Between = value; return this; } public ArrayList getUserDefinedString2In() { return UserDefinedString2In; } public PO_LinesQuery setUserDefinedString2In(ArrayList value) { this.UserDefinedString2In = value; return this; } public String getUserDefinedString3() { return UserDefinedString3; } public PO_LinesQuery setUserDefinedString3(String value) { this.UserDefinedString3 = value; return this; } public String getUserDefinedString3StartsWith() { return UserDefinedString3StartsWith; } public PO_LinesQuery setUserDefinedString3StartsWith(String value) { this.UserDefinedString3StartsWith = value; return this; } public String getUserDefinedString3EndsWith() { return UserDefinedString3EndsWith; } public PO_LinesQuery setUserDefinedString3EndsWith(String value) { this.UserDefinedString3EndsWith = value; return this; } public String getUserDefinedString3Contains() { return UserDefinedString3Contains; } public PO_LinesQuery setUserDefinedString3Contains(String value) { this.UserDefinedString3Contains = value; return this; } public String getUserDefinedString3Like() { return UserDefinedString3Like; } public PO_LinesQuery setUserDefinedString3Like(String value) { this.UserDefinedString3Like = value; return this; } public ArrayList getUserDefinedString3Between() { return UserDefinedString3Between; } public PO_LinesQuery setUserDefinedString3Between(ArrayList value) { this.UserDefinedString3Between = value; return this; } public ArrayList getUserDefinedString3In() { return UserDefinedString3In; } public PO_LinesQuery setUserDefinedString3In(ArrayList value) { this.UserDefinedString3In = value; return this; } public BigDecimal getUserDefinedFloat1() { return UserDefinedFloat1; } public PO_LinesQuery setUserDefinedFloat1(BigDecimal value) { this.UserDefinedFloat1 = value; return this; } public BigDecimal getUserDefinedFloat1GreaterThanOrEqualTo() { return UserDefinedFloat1GreaterThanOrEqualTo; } public PO_LinesQuery setUserDefinedFloat1GreaterThanOrEqualTo(BigDecimal value) { this.UserDefinedFloat1GreaterThanOrEqualTo = value; return this; } public BigDecimal getUserDefinedFloat1GreaterThan() { return UserDefinedFloat1GreaterThan; } public PO_LinesQuery setUserDefinedFloat1GreaterThan(BigDecimal value) { this.UserDefinedFloat1GreaterThan = value; return this; } public BigDecimal getUserDefinedFloat1LessThan() { return UserDefinedFloat1LessThan; } public PO_LinesQuery setUserDefinedFloat1LessThan(BigDecimal value) { this.UserDefinedFloat1LessThan = value; return this; } public BigDecimal getUserDefinedFloat1LessThanOrEqualTo() { return UserDefinedFloat1LessThanOrEqualTo; } public PO_LinesQuery setUserDefinedFloat1LessThanOrEqualTo(BigDecimal value) { this.UserDefinedFloat1LessThanOrEqualTo = value; return this; } public BigDecimal getUserDefinedFloat1NotEqualTo() { return UserDefinedFloat1NotEqualTo; } public PO_LinesQuery setUserDefinedFloat1NotEqualTo(BigDecimal value) { this.UserDefinedFloat1NotEqualTo = value; return this; } public ArrayList getUserDefinedFloat1Between() { return UserDefinedFloat1Between; } public PO_LinesQuery setUserDefinedFloat1Between(ArrayList value) { this.UserDefinedFloat1Between = value; return this; } public ArrayList getUserDefinedFloat1In() { return UserDefinedFloat1In; } public PO_LinesQuery setUserDefinedFloat1In(ArrayList value) { this.UserDefinedFloat1In = value; return this; } public BigDecimal getUserDefinedFloat2() { return UserDefinedFloat2; } public PO_LinesQuery setUserDefinedFloat2(BigDecimal value) { this.UserDefinedFloat2 = value; return this; } public BigDecimal getUserDefinedFloat2GreaterThanOrEqualTo() { return UserDefinedFloat2GreaterThanOrEqualTo; } public PO_LinesQuery setUserDefinedFloat2GreaterThanOrEqualTo(BigDecimal value) { this.UserDefinedFloat2GreaterThanOrEqualTo = value; return this; } public BigDecimal getUserDefinedFloat2GreaterThan() { return UserDefinedFloat2GreaterThan; } public PO_LinesQuery setUserDefinedFloat2GreaterThan(BigDecimal value) { this.UserDefinedFloat2GreaterThan = value; return this; } public BigDecimal getUserDefinedFloat2LessThan() { return UserDefinedFloat2LessThan; } public PO_LinesQuery setUserDefinedFloat2LessThan(BigDecimal value) { this.UserDefinedFloat2LessThan = value; return this; } public BigDecimal getUserDefinedFloat2LessThanOrEqualTo() { return UserDefinedFloat2LessThanOrEqualTo; } public PO_LinesQuery setUserDefinedFloat2LessThanOrEqualTo(BigDecimal value) { this.UserDefinedFloat2LessThanOrEqualTo = value; return this; } public BigDecimal getUserDefinedFloat2NotEqualTo() { return UserDefinedFloat2NotEqualTo; } public PO_LinesQuery setUserDefinedFloat2NotEqualTo(BigDecimal value) { this.UserDefinedFloat2NotEqualTo = value; return this; } public ArrayList getUserDefinedFloat2Between() { return UserDefinedFloat2Between; } public PO_LinesQuery setUserDefinedFloat2Between(ArrayList value) { this.UserDefinedFloat2Between = value; return this; } public ArrayList getUserDefinedFloat2In() { return UserDefinedFloat2In; } public PO_LinesQuery setUserDefinedFloat2In(ArrayList value) { this.UserDefinedFloat2In = value; return this; } public BigDecimal getUserDefinedFloat3() { return UserDefinedFloat3; } public PO_LinesQuery setUserDefinedFloat3(BigDecimal value) { this.UserDefinedFloat3 = value; return this; } public BigDecimal getUserDefinedFloat3GreaterThanOrEqualTo() { return UserDefinedFloat3GreaterThanOrEqualTo; } public PO_LinesQuery setUserDefinedFloat3GreaterThanOrEqualTo(BigDecimal value) { this.UserDefinedFloat3GreaterThanOrEqualTo = value; return this; } public BigDecimal getUserDefinedFloat3GreaterThan() { return UserDefinedFloat3GreaterThan; } public PO_LinesQuery setUserDefinedFloat3GreaterThan(BigDecimal value) { this.UserDefinedFloat3GreaterThan = value; return this; } public BigDecimal getUserDefinedFloat3LessThan() { return UserDefinedFloat3LessThan; } public PO_LinesQuery setUserDefinedFloat3LessThan(BigDecimal value) { this.UserDefinedFloat3LessThan = value; return this; } public BigDecimal getUserDefinedFloat3LessThanOrEqualTo() { return UserDefinedFloat3LessThanOrEqualTo; } public PO_LinesQuery setUserDefinedFloat3LessThanOrEqualTo(BigDecimal value) { this.UserDefinedFloat3LessThanOrEqualTo = value; return this; } public BigDecimal getUserDefinedFloat3NotEqualTo() { return UserDefinedFloat3NotEqualTo; } public PO_LinesQuery setUserDefinedFloat3NotEqualTo(BigDecimal value) { this.UserDefinedFloat3NotEqualTo = value; return this; } public ArrayList getUserDefinedFloat3Between() { return UserDefinedFloat3Between; } public PO_LinesQuery setUserDefinedFloat3Between(ArrayList value) { this.UserDefinedFloat3Between = value; return this; } public ArrayList getUserDefinedFloat3In() { return UserDefinedFloat3In; } public PO_LinesQuery setUserDefinedFloat3In(ArrayList value) { this.UserDefinedFloat3In = value; return this; } public Date getUserDefinedDate1() { return UserDefinedDate1; } public PO_LinesQuery setUserDefinedDate1(Date value) { this.UserDefinedDate1 = value; return this; } public Date getUserDefinedDate1GreaterThanOrEqualTo() { return UserDefinedDate1GreaterThanOrEqualTo; } public PO_LinesQuery setUserDefinedDate1GreaterThanOrEqualTo(Date value) { this.UserDefinedDate1GreaterThanOrEqualTo = value; return this; } public Date getUserDefinedDate1GreaterThan() { return UserDefinedDate1GreaterThan; } public PO_LinesQuery setUserDefinedDate1GreaterThan(Date value) { this.UserDefinedDate1GreaterThan = value; return this; } public Date getUserDefinedDate1LessThan() { return UserDefinedDate1LessThan; } public PO_LinesQuery setUserDefinedDate1LessThan(Date value) { this.UserDefinedDate1LessThan = value; return this; } public Date getUserDefinedDate1LessThanOrEqualTo() { return UserDefinedDate1LessThanOrEqualTo; } public PO_LinesQuery setUserDefinedDate1LessThanOrEqualTo(Date value) { this.UserDefinedDate1LessThanOrEqualTo = value; return this; } public Date getUserDefinedDate1NotEqualTo() { return UserDefinedDate1NotEqualTo; } public PO_LinesQuery setUserDefinedDate1NotEqualTo(Date value) { this.UserDefinedDate1NotEqualTo = value; return this; } public ArrayList getUserDefinedDate1Between() { return UserDefinedDate1Between; } public PO_LinesQuery setUserDefinedDate1Between(ArrayList value) { this.UserDefinedDate1Between = value; return this; } public ArrayList getUserDefinedDate1In() { return UserDefinedDate1In; } public PO_LinesQuery setUserDefinedDate1In(ArrayList value) { this.UserDefinedDate1In = value; return this; } public Date getUserDefinedDate2() { return UserDefinedDate2; } public PO_LinesQuery setUserDefinedDate2(Date value) { this.UserDefinedDate2 = value; return this; } public Date getUserDefinedDate2GreaterThanOrEqualTo() { return UserDefinedDate2GreaterThanOrEqualTo; } public PO_LinesQuery setUserDefinedDate2GreaterThanOrEqualTo(Date value) { this.UserDefinedDate2GreaterThanOrEqualTo = value; return this; } public Date getUserDefinedDate2GreaterThan() { return UserDefinedDate2GreaterThan; } public PO_LinesQuery setUserDefinedDate2GreaterThan(Date value) { this.UserDefinedDate2GreaterThan = value; return this; } public Date getUserDefinedDate2LessThan() { return UserDefinedDate2LessThan; } public PO_LinesQuery setUserDefinedDate2LessThan(Date value) { this.UserDefinedDate2LessThan = value; return this; } public Date getUserDefinedDate2LessThanOrEqualTo() { return UserDefinedDate2LessThanOrEqualTo; } public PO_LinesQuery setUserDefinedDate2LessThanOrEqualTo(Date value) { this.UserDefinedDate2LessThanOrEqualTo = value; return this; } public Date getUserDefinedDate2NotEqualTo() { return UserDefinedDate2NotEqualTo; } public PO_LinesQuery setUserDefinedDate2NotEqualTo(Date value) { this.UserDefinedDate2NotEqualTo = value; return this; } public ArrayList getUserDefinedDate2Between() { return UserDefinedDate2Between; } public PO_LinesQuery setUserDefinedDate2Between(ArrayList value) { this.UserDefinedDate2Between = value; return this; } public ArrayList getUserDefinedDate2In() { return UserDefinedDate2In; } public PO_LinesQuery setUserDefinedDate2In(ArrayList value) { this.UserDefinedDate2In = value; return this; } public String getSmTaskRecID() { return SM_Task_RecID; } public PO_LinesQuery setSmTaskRecID(String value) { this.SM_Task_RecID = value; return this; } public String getSmTaskRecIDStartsWith() { return SM_Task_RecIDStartsWith; } public PO_LinesQuery setSmTaskRecIDStartsWith(String value) { this.SM_Task_RecIDStartsWith = value; return this; } public String getSmTaskRecIDEndsWith() { return SM_Task_RecIDEndsWith; } public PO_LinesQuery setSmTaskRecIDEndsWith(String value) { this.SM_Task_RecIDEndsWith = value; return this; } public String getSmTaskRecIDContains() { return SM_Task_RecIDContains; } public PO_LinesQuery setSmTaskRecIDContains(String value) { this.SM_Task_RecIDContains = value; return this; } public String getSmTaskRecIDLike() { return SM_Task_RecIDLike; } public PO_LinesQuery setSmTaskRecIDLike(String value) { this.SM_Task_RecIDLike = value; return this; } public ArrayList getSmTaskRecIDBetween() { return SM_Task_RecIDBetween; } public PO_LinesQuery setSmTaskRecIDBetween(ArrayList value) { this.SM_Task_RecIDBetween = value; return this; } public ArrayList getSmTaskRecIDIn() { return SM_Task_RecIDIn; } public PO_LinesQuery setSmTaskRecIDIn(ArrayList value) { this.SM_Task_RecIDIn = value; return this; } public String getJbJobStagesRecID() { return JB_JobStages_RecID; } public PO_LinesQuery setJbJobStagesRecID(String value) { this.JB_JobStages_RecID = value; return this; } public String getJbJobStagesRecIDStartsWith() { return JB_JobStages_RecIDStartsWith; } public PO_LinesQuery setJbJobStagesRecIDStartsWith(String value) { this.JB_JobStages_RecIDStartsWith = value; return this; } public String getJbJobStagesRecIDEndsWith() { return JB_JobStages_RecIDEndsWith; } public PO_LinesQuery setJbJobStagesRecIDEndsWith(String value) { this.JB_JobStages_RecIDEndsWith = value; return this; } public String getJbJobStagesRecIDContains() { return JB_JobStages_RecIDContains; } public PO_LinesQuery setJbJobStagesRecIDContains(String value) { this.JB_JobStages_RecIDContains = value; return this; } public String getJbJobStagesRecIDLike() { return JB_JobStages_RecIDLike; } public PO_LinesQuery setJbJobStagesRecIDLike(String value) { this.JB_JobStages_RecIDLike = value; return this; } public ArrayList getJbJobStagesRecIDBetween() { return JB_JobStages_RecIDBetween; } public PO_LinesQuery setJbJobStagesRecIDBetween(ArrayList value) { this.JB_JobStages_RecIDBetween = value; return this; } public ArrayList getJbJobStagesRecIDIn() { return JB_JobStages_RecIDIn; } public PO_LinesQuery setJbJobStagesRecIDIn(ArrayList value) { this.JB_JobStages_RecIDIn = value; return this; } public BigDecimal getLineTotalExTax() { return LineTotalExTax; } public PO_LinesQuery setLineTotalExTax(BigDecimal value) { this.LineTotalExTax = value; return this; } public BigDecimal getLineTotalExTaxGreaterThanOrEqualTo() { return LineTotalExTaxGreaterThanOrEqualTo; } public PO_LinesQuery setLineTotalExTaxGreaterThanOrEqualTo(BigDecimal value) { this.LineTotalExTaxGreaterThanOrEqualTo = value; return this; } public BigDecimal getLineTotalExTaxGreaterThan() { return LineTotalExTaxGreaterThan; } public PO_LinesQuery setLineTotalExTaxGreaterThan(BigDecimal value) { this.LineTotalExTaxGreaterThan = value; return this; } public BigDecimal getLineTotalExTaxLessThan() { return LineTotalExTaxLessThan; } public PO_LinesQuery setLineTotalExTaxLessThan(BigDecimal value) { this.LineTotalExTaxLessThan = value; return this; } public BigDecimal getLineTotalExTaxLessThanOrEqualTo() { return LineTotalExTaxLessThanOrEqualTo; } public PO_LinesQuery setLineTotalExTaxLessThanOrEqualTo(BigDecimal value) { this.LineTotalExTaxLessThanOrEqualTo = value; return this; } public BigDecimal getLineTotalExTaxNotEqualTo() { return LineTotalExTaxNotEqualTo; } public PO_LinesQuery setLineTotalExTaxNotEqualTo(BigDecimal value) { this.LineTotalExTaxNotEqualTo = value; return this; } public ArrayList getLineTotalExTaxBetween() { return LineTotalExTaxBetween; } public PO_LinesQuery setLineTotalExTaxBetween(ArrayList value) { this.LineTotalExTaxBetween = value; return this; } public ArrayList getLineTotalExTaxIn() { return LineTotalExTaxIn; } public PO_LinesQuery setLineTotalExTaxIn(ArrayList value) { this.LineTotalExTaxIn = value; return this; } public UUID getInUnitOfMeasureRecID() { return IN_UnitOfMeasure_RecID; } public PO_LinesQuery setInUnitOfMeasureRecID(UUID value) { this.IN_UnitOfMeasure_RecID = value; return this; } public ArrayList getInUnitOfMeasureRecIDIn() { return IN_UnitOfMeasure_RecIDIn; } public PO_LinesQuery setInUnitOfMeasureRecIDIn(ArrayList value) { this.IN_UnitOfMeasure_RecIDIn = value; return this; } public Boolean isUnitChanged() { return UnitChanged; } public PO_LinesQuery setUnitChanged(Boolean value) { this.UnitChanged = value; return this; } public Boolean isFxChanged() { return FXChanged; } public PO_LinesQuery setFxChanged(Boolean value) { this.FXChanged = value; return this; } public Boolean isExChanged() { return ExChanged; } public PO_LinesQuery setExChanged(Boolean value) { this.ExChanged = value; return this; } public Boolean isTaxRateChanged() { return TaxRateChanged; } public PO_LinesQuery setTaxRateChanged(Boolean value) { this.TaxRateChanged = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @Route(Path="/Queries/PO_Main", Verbs="GET") @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class PO_MainQuery extends QueryDb implements IReturn> { public String OrderID = null; public String OrderIDStartsWith = null; public String OrderIDEndsWith = null; public String OrderIDContains = null; public String OrderIDLike = null; public ArrayList OrderIDBetween = null; public ArrayList OrderIDIn = null; public Date LastSavedDateTime = null; public Date LastSavedDateTimeGreaterThanOrEqualTo = null; public Date LastSavedDateTimeGreaterThan = null; public Date LastSavedDateTimeLessThan = null; public Date LastSavedDateTimeLessThanOrEqualTo = null; public Date LastSavedDateTimeNotEqualTo = null; public ArrayList LastSavedDateTimeBetween = null; public ArrayList LastSavedDateTimeIn = null; public String CreditorID = null; public String CreditorIDStartsWith = null; public String CreditorIDEndsWith = null; public String CreditorIDContains = null; public String CreditorIDLike = null; public ArrayList CreditorIDBetween = null; public ArrayList CreditorIDIn = null; public String OrderNo = null; public String OrderNoStartsWith = null; public String OrderNoEndsWith = null; public String OrderNoContains = null; public String OrderNoLike = null; public ArrayList OrderNoBetween = null; public ArrayList OrderNoIn = null; public Date OrderedDate = null; public Date OrderedDateGreaterThanOrEqualTo = null; public Date OrderedDateGreaterThan = null; public Date OrderedDateLessThan = null; public Date OrderedDateLessThanOrEqualTo = null; public Date OrderedDateNotEqualTo = null; public ArrayList OrderedDateBetween = null; public ArrayList OrderedDateIn = null; public String Header1 = null; public String Header1StartsWith = null; public String Header1EndsWith = null; public String Header1Contains = null; public String Header1Like = null; public ArrayList Header1Between = null; public ArrayList Header1In = null; public String Header2 = null; public String Header2StartsWith = null; public String Header2EndsWith = null; public String Header2Contains = null; public String Header2Like = null; public ArrayList Header2Between = null; public ArrayList Header2In = null; public String Header5 = null; public String Header5StartsWith = null; public String Header5EndsWith = null; public String Header5Contains = null; public String Header5Like = null; public ArrayList Header5Between = null; public ArrayList Header5In = null; public Short Status = null; public Short StatusGreaterThanOrEqualTo = null; public Short StatusGreaterThan = null; public Short StatusLessThan = null; public Short StatusLessThanOrEqualTo = null; public Short StatusNotEqualTo = null; public ArrayList StatusBetween = null; public ArrayList StatusIn = null; public Short OrderType = null; public Short OrderTypeGreaterThanOrEqualTo = null; public Short OrderTypeGreaterThan = null; public Short OrderTypeLessThan = null; public Short OrderTypeLessThanOrEqualTo = null; public Short OrderTypeNotEqualTo = null; public ArrayList OrderTypeBetween = null; public ArrayList OrderTypeIn = null; public String OrderTypeInvID = null; public String OrderTypeInvIDStartsWith = null; public String OrderTypeInvIDEndsWith = null; public String OrderTypeInvIDContains = null; public String OrderTypeInvIDLike = null; public ArrayList OrderTypeInvIDBetween = null; public ArrayList OrderTypeInvIDIn = null; public String IN_LogicalID = null; public String IN_LogicalIDStartsWith = null; public String IN_LogicalIDEndsWith = null; public String IN_LogicalIDContains = null; public String IN_LogicalIDLike = null; public ArrayList IN_LogicalIDBetween = null; public ArrayList IN_LogicalIDIn = null; public Short OrderSupplierType = null; public Short OrderSupplierTypeGreaterThanOrEqualTo = null; public Short OrderSupplierTypeGreaterThan = null; public Short OrderSupplierTypeLessThan = null; public Short OrderSupplierTypeLessThanOrEqualTo = null; public Short OrderSupplierTypeNotEqualTo = null; public ArrayList OrderSupplierTypeBetween = null; public ArrayList OrderSupplierTypeIn = null; public String CentralWarehouseID = null; public String CentralWarehouseIDStartsWith = null; public String CentralWarehouseIDEndsWith = null; public String CentralWarehouseIDContains = null; public String CentralWarehouseIDLike = null; public ArrayList CentralWarehouseIDBetween = null; public ArrayList CentralWarehouseIDIn = null; public BigDecimal TaxTotal = null; public BigDecimal TaxTotalGreaterThanOrEqualTo = null; public BigDecimal TaxTotalGreaterThan = null; public BigDecimal TaxTotalLessThan = null; public BigDecimal TaxTotalLessThanOrEqualTo = null; public BigDecimal TaxTotalNotEqualTo = null; public ArrayList TaxTotalBetween = null; public ArrayList TaxTotalIn = null; public String CurrencyID = null; public String CurrencyIDStartsWith = null; public String CurrencyIDEndsWith = null; public String CurrencyIDContains = null; public String CurrencyIDLike = null; public ArrayList CurrencyIDBetween = null; public ArrayList CurrencyIDIn = null; public String InTransitWarehouseID = null; public String InTransitWarehouseIDStartsWith = null; public String InTransitWarehouseIDEndsWith = null; public String InTransitWarehouseIDContains = null; public String InTransitWarehouseIDLike = null; public ArrayList InTransitWarehouseIDBetween = null; public ArrayList InTransitWarehouseIDIn = null; public String Reference = null; public String ReferenceStartsWith = null; public String ReferenceEndsWith = null; public String ReferenceContains = null; public String ReferenceLike = null; public ArrayList ReferenceBetween = null; public ArrayList ReferenceIn = null; public String PO_Workflows_RecID = null; public String PO_Workflows_RecIDStartsWith = null; public String PO_Workflows_RecIDEndsWith = null; public String PO_Workflows_RecIDContains = null; public String PO_Workflows_RecIDLike = null; public ArrayList PO_Workflows_RecIDBetween = null; public ArrayList PO_Workflows_RecIDIn = null; public String HR_Staff_RecID = null; public String HR_Staff_RecIDStartsWith = null; public String HR_Staff_RecIDEndsWith = null; public String HR_Staff_RecIDContains = null; public String HR_Staff_RecIDLike = null; public ArrayList HR_Staff_RecIDBetween = null; public ArrayList HR_Staff_RecIDIn = null; public String CR_Warehouse_WarehouseID = null; public String CR_Warehouse_WarehouseIDStartsWith = null; public String CR_Warehouse_WarehouseIDEndsWith = null; public String CR_Warehouse_WarehouseIDContains = null; public String CR_Warehouse_WarehouseIDLike = null; public ArrayList CR_Warehouse_WarehouseIDBetween = null; public ArrayList CR_Warehouse_WarehouseIDIn = null; public BigDecimal Freight = null; public BigDecimal FreightGreaterThanOrEqualTo = null; public BigDecimal FreightGreaterThan = null; public BigDecimal FreightLessThan = null; public BigDecimal FreightLessThanOrEqualTo = null; public BigDecimal FreightNotEqualTo = null; public ArrayList FreightBetween = null; public ArrayList FreightIn = null; public BigDecimal Duty = null; public BigDecimal DutyGreaterThanOrEqualTo = null; public BigDecimal DutyGreaterThan = null; public BigDecimal DutyLessThan = null; public BigDecimal DutyLessThanOrEqualTo = null; public BigDecimal DutyNotEqualTo = null; public ArrayList DutyBetween = null; public ArrayList DutyIn = null; public BigDecimal Insurance = null; public BigDecimal InsuranceGreaterThanOrEqualTo = null; public BigDecimal InsuranceGreaterThan = null; public BigDecimal InsuranceLessThan = null; public BigDecimal InsuranceLessThanOrEqualTo = null; public BigDecimal InsuranceNotEqualTo = null; public ArrayList InsuranceBetween = null; public ArrayList InsuranceIn = null; public String FreightTaxID = null; public String FreightTaxIDStartsWith = null; public String FreightTaxIDEndsWith = null; public String FreightTaxIDContains = null; public String FreightTaxIDLike = null; public ArrayList FreightTaxIDBetween = null; public ArrayList FreightTaxIDIn = null; public BigDecimal FreightTaxRate = null; public BigDecimal FreightTaxRateGreaterThanOrEqualTo = null; public BigDecimal FreightTaxRateGreaterThan = null; public BigDecimal FreightTaxRateLessThan = null; public BigDecimal FreightTaxRateLessThanOrEqualTo = null; public BigDecimal FreightTaxRateNotEqualTo = null; public ArrayList FreightTaxRateBetween = null; public ArrayList FreightTaxRateIn = null; public BigDecimal FreightTaxAmount = null; public BigDecimal FreightTaxAmountGreaterThanOrEqualTo = null; public BigDecimal FreightTaxAmountGreaterThan = null; public BigDecimal FreightTaxAmountLessThan = null; public BigDecimal FreightTaxAmountLessThanOrEqualTo = null; public BigDecimal FreightTaxAmountNotEqualTo = null; public ArrayList FreightTaxAmountBetween = null; public ArrayList FreightTaxAmountIn = null; public String DutyTaxID = null; public String DutyTaxIDStartsWith = null; public String DutyTaxIDEndsWith = null; public String DutyTaxIDContains = null; public String DutyTaxIDLike = null; public ArrayList DutyTaxIDBetween = null; public ArrayList DutyTaxIDIn = null; public BigDecimal DutyTaxRate = null; public BigDecimal DutyTaxRateGreaterThanOrEqualTo = null; public BigDecimal DutyTaxRateGreaterThan = null; public BigDecimal DutyTaxRateLessThan = null; public BigDecimal DutyTaxRateLessThanOrEqualTo = null; public BigDecimal DutyTaxRateNotEqualTo = null; public ArrayList DutyTaxRateBetween = null; public ArrayList DutyTaxRateIn = null; public BigDecimal DutyTaxAmount = null; public BigDecimal DutyTaxAmountGreaterThanOrEqualTo = null; public BigDecimal DutyTaxAmountGreaterThan = null; public BigDecimal DutyTaxAmountLessThan = null; public BigDecimal DutyTaxAmountLessThanOrEqualTo = null; public BigDecimal DutyTaxAmountNotEqualTo = null; public ArrayList DutyTaxAmountBetween = null; public ArrayList DutyTaxAmountIn = null; public String InsuranceTaxID = null; public String InsuranceTaxIDStartsWith = null; public String InsuranceTaxIDEndsWith = null; public String InsuranceTaxIDContains = null; public String InsuranceTaxIDLike = null; public ArrayList InsuranceTaxIDBetween = null; public ArrayList InsuranceTaxIDIn = null; public BigDecimal InsuranceTaxRate = null; public BigDecimal InsuranceTaxRateGreaterThanOrEqualTo = null; public BigDecimal InsuranceTaxRateGreaterThan = null; public BigDecimal InsuranceTaxRateLessThan = null; public BigDecimal InsuranceTaxRateLessThanOrEqualTo = null; public BigDecimal InsuranceTaxRateNotEqualTo = null; public ArrayList InsuranceTaxRateBetween = null; public ArrayList InsuranceTaxRateIn = null; public BigDecimal InsuranceTaxAmount = null; public BigDecimal InsuranceTaxAmountGreaterThanOrEqualTo = null; public BigDecimal InsuranceTaxAmountGreaterThan = null; public BigDecimal InsuranceTaxAmountLessThan = null; public BigDecimal InsuranceTaxAmountLessThanOrEqualTo = null; public BigDecimal InsuranceTaxAmountNotEqualTo = null; public ArrayList InsuranceTaxAmountBetween = null; public ArrayList InsuranceTaxAmountIn = null; public String getOrderID() { return OrderID; } public PO_MainQuery setOrderID(String value) { this.OrderID = value; return this; } public String getOrderIDStartsWith() { return OrderIDStartsWith; } public PO_MainQuery setOrderIDStartsWith(String value) { this.OrderIDStartsWith = value; return this; } public String getOrderIDEndsWith() { return OrderIDEndsWith; } public PO_MainQuery setOrderIDEndsWith(String value) { this.OrderIDEndsWith = value; return this; } public String getOrderIDContains() { return OrderIDContains; } public PO_MainQuery setOrderIDContains(String value) { this.OrderIDContains = value; return this; } public String getOrderIDLike() { return OrderIDLike; } public PO_MainQuery setOrderIDLike(String value) { this.OrderIDLike = value; return this; } public ArrayList getOrderIDBetween() { return OrderIDBetween; } public PO_MainQuery setOrderIDBetween(ArrayList value) { this.OrderIDBetween = value; return this; } public ArrayList getOrderIDIn() { return OrderIDIn; } public PO_MainQuery setOrderIDIn(ArrayList value) { this.OrderIDIn = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public PO_MainQuery setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getLastSavedDateTimeGreaterThanOrEqualTo() { return LastSavedDateTimeGreaterThanOrEqualTo; } public PO_MainQuery setLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.LastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeGreaterThan() { return LastSavedDateTimeGreaterThan; } public PO_MainQuery setLastSavedDateTimeGreaterThan(Date value) { this.LastSavedDateTimeGreaterThan = value; return this; } public Date getLastSavedDateTimeLessThan() { return LastSavedDateTimeLessThan; } public PO_MainQuery setLastSavedDateTimeLessThan(Date value) { this.LastSavedDateTimeLessThan = value; return this; } public Date getLastSavedDateTimeLessThanOrEqualTo() { return LastSavedDateTimeLessThanOrEqualTo; } public PO_MainQuery setLastSavedDateTimeLessThanOrEqualTo(Date value) { this.LastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeNotEqualTo() { return LastSavedDateTimeNotEqualTo; } public PO_MainQuery setLastSavedDateTimeNotEqualTo(Date value) { this.LastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getLastSavedDateTimeBetween() { return LastSavedDateTimeBetween; } public PO_MainQuery setLastSavedDateTimeBetween(ArrayList value) { this.LastSavedDateTimeBetween = value; return this; } public ArrayList getLastSavedDateTimeIn() { return LastSavedDateTimeIn; } public PO_MainQuery setLastSavedDateTimeIn(ArrayList value) { this.LastSavedDateTimeIn = value; return this; } public String getCreditorID() { return CreditorID; } public PO_MainQuery setCreditorID(String value) { this.CreditorID = value; return this; } public String getCreditorIDStartsWith() { return CreditorIDStartsWith; } public PO_MainQuery setCreditorIDStartsWith(String value) { this.CreditorIDStartsWith = value; return this; } public String getCreditorIDEndsWith() { return CreditorIDEndsWith; } public PO_MainQuery setCreditorIDEndsWith(String value) { this.CreditorIDEndsWith = value; return this; } public String getCreditorIDContains() { return CreditorIDContains; } public PO_MainQuery setCreditorIDContains(String value) { this.CreditorIDContains = value; return this; } public String getCreditorIDLike() { return CreditorIDLike; } public PO_MainQuery setCreditorIDLike(String value) { this.CreditorIDLike = value; return this; } public ArrayList getCreditorIDBetween() { return CreditorIDBetween; } public PO_MainQuery setCreditorIDBetween(ArrayList value) { this.CreditorIDBetween = value; return this; } public ArrayList getCreditorIDIn() { return CreditorIDIn; } public PO_MainQuery setCreditorIDIn(ArrayList value) { this.CreditorIDIn = value; return this; } public String getOrderNo() { return OrderNo; } public PO_MainQuery setOrderNo(String value) { this.OrderNo = value; return this; } public String getOrderNoStartsWith() { return OrderNoStartsWith; } public PO_MainQuery setOrderNoStartsWith(String value) { this.OrderNoStartsWith = value; return this; } public String getOrderNoEndsWith() { return OrderNoEndsWith; } public PO_MainQuery setOrderNoEndsWith(String value) { this.OrderNoEndsWith = value; return this; } public String getOrderNoContains() { return OrderNoContains; } public PO_MainQuery setOrderNoContains(String value) { this.OrderNoContains = value; return this; } public String getOrderNoLike() { return OrderNoLike; } public PO_MainQuery setOrderNoLike(String value) { this.OrderNoLike = value; return this; } public ArrayList getOrderNoBetween() { return OrderNoBetween; } public PO_MainQuery setOrderNoBetween(ArrayList value) { this.OrderNoBetween = value; return this; } public ArrayList getOrderNoIn() { return OrderNoIn; } public PO_MainQuery setOrderNoIn(ArrayList value) { this.OrderNoIn = value; return this; } public Date getOrderedDate() { return OrderedDate; } public PO_MainQuery setOrderedDate(Date value) { this.OrderedDate = value; return this; } public Date getOrderedDateGreaterThanOrEqualTo() { return OrderedDateGreaterThanOrEqualTo; } public PO_MainQuery setOrderedDateGreaterThanOrEqualTo(Date value) { this.OrderedDateGreaterThanOrEqualTo = value; return this; } public Date getOrderedDateGreaterThan() { return OrderedDateGreaterThan; } public PO_MainQuery setOrderedDateGreaterThan(Date value) { this.OrderedDateGreaterThan = value; return this; } public Date getOrderedDateLessThan() { return OrderedDateLessThan; } public PO_MainQuery setOrderedDateLessThan(Date value) { this.OrderedDateLessThan = value; return this; } public Date getOrderedDateLessThanOrEqualTo() { return OrderedDateLessThanOrEqualTo; } public PO_MainQuery setOrderedDateLessThanOrEqualTo(Date value) { this.OrderedDateLessThanOrEqualTo = value; return this; } public Date getOrderedDateNotEqualTo() { return OrderedDateNotEqualTo; } public PO_MainQuery setOrderedDateNotEqualTo(Date value) { this.OrderedDateNotEqualTo = value; return this; } public ArrayList getOrderedDateBetween() { return OrderedDateBetween; } public PO_MainQuery setOrderedDateBetween(ArrayList value) { this.OrderedDateBetween = value; return this; } public ArrayList getOrderedDateIn() { return OrderedDateIn; } public PO_MainQuery setOrderedDateIn(ArrayList value) { this.OrderedDateIn = value; return this; } public String getHeader1() { return Header1; } public PO_MainQuery setHeader1(String value) { this.Header1 = value; return this; } public String getHeader1StartsWith() { return Header1StartsWith; } public PO_MainQuery setHeader1StartsWith(String value) { this.Header1StartsWith = value; return this; } public String getHeader1EndsWith() { return Header1EndsWith; } public PO_MainQuery setHeader1EndsWith(String value) { this.Header1EndsWith = value; return this; } public String getHeader1Contains() { return Header1Contains; } public PO_MainQuery setHeader1Contains(String value) { this.Header1Contains = value; return this; } public String getHeader1Like() { return Header1Like; } public PO_MainQuery setHeader1Like(String value) { this.Header1Like = value; return this; } public ArrayList getHeader1Between() { return Header1Between; } public PO_MainQuery setHeader1Between(ArrayList value) { this.Header1Between = value; return this; } public ArrayList getHeader1In() { return Header1In; } public PO_MainQuery setHeader1In(ArrayList value) { this.Header1In = value; return this; } public String getHeader2() { return Header2; } public PO_MainQuery setHeader2(String value) { this.Header2 = value; return this; } public String getHeader2StartsWith() { return Header2StartsWith; } public PO_MainQuery setHeader2StartsWith(String value) { this.Header2StartsWith = value; return this; } public String getHeader2EndsWith() { return Header2EndsWith; } public PO_MainQuery setHeader2EndsWith(String value) { this.Header2EndsWith = value; return this; } public String getHeader2Contains() { return Header2Contains; } public PO_MainQuery setHeader2Contains(String value) { this.Header2Contains = value; return this; } public String getHeader2Like() { return Header2Like; } public PO_MainQuery setHeader2Like(String value) { this.Header2Like = value; return this; } public ArrayList getHeader2Between() { return Header2Between; } public PO_MainQuery setHeader2Between(ArrayList value) { this.Header2Between = value; return this; } public ArrayList getHeader2In() { return Header2In; } public PO_MainQuery setHeader2In(ArrayList value) { this.Header2In = value; return this; } public String getHeader5() { return Header5; } public PO_MainQuery setHeader5(String value) { this.Header5 = value; return this; } public String getHeader5StartsWith() { return Header5StartsWith; } public PO_MainQuery setHeader5StartsWith(String value) { this.Header5StartsWith = value; return this; } public String getHeader5EndsWith() { return Header5EndsWith; } public PO_MainQuery setHeader5EndsWith(String value) { this.Header5EndsWith = value; return this; } public String getHeader5Contains() { return Header5Contains; } public PO_MainQuery setHeader5Contains(String value) { this.Header5Contains = value; return this; } public String getHeader5Like() { return Header5Like; } public PO_MainQuery setHeader5Like(String value) { this.Header5Like = value; return this; } public ArrayList getHeader5Between() { return Header5Between; } public PO_MainQuery setHeader5Between(ArrayList value) { this.Header5Between = value; return this; } public ArrayList getHeader5In() { return Header5In; } public PO_MainQuery setHeader5In(ArrayList value) { this.Header5In = value; return this; } public Short getStatus() { return Status; } public PO_MainQuery setStatus(Short value) { this.Status = value; return this; } public Short getStatusGreaterThanOrEqualTo() { return StatusGreaterThanOrEqualTo; } public PO_MainQuery setStatusGreaterThanOrEqualTo(Short value) { this.StatusGreaterThanOrEqualTo = value; return this; } public Short getStatusGreaterThan() { return StatusGreaterThan; } public PO_MainQuery setStatusGreaterThan(Short value) { this.StatusGreaterThan = value; return this; } public Short getStatusLessThan() { return StatusLessThan; } public PO_MainQuery setStatusLessThan(Short value) { this.StatusLessThan = value; return this; } public Short getStatusLessThanOrEqualTo() { return StatusLessThanOrEqualTo; } public PO_MainQuery setStatusLessThanOrEqualTo(Short value) { this.StatusLessThanOrEqualTo = value; return this; } public Short getStatusNotEqualTo() { return StatusNotEqualTo; } public PO_MainQuery setStatusNotEqualTo(Short value) { this.StatusNotEqualTo = value; return this; } public ArrayList getStatusBetween() { return StatusBetween; } public PO_MainQuery setStatusBetween(ArrayList value) { this.StatusBetween = value; return this; } public ArrayList getStatusIn() { return StatusIn; } public PO_MainQuery setStatusIn(ArrayList value) { this.StatusIn = value; return this; } public Short getOrderType() { return OrderType; } public PO_MainQuery setOrderType(Short value) { this.OrderType = value; return this; } public Short getOrderTypeGreaterThanOrEqualTo() { return OrderTypeGreaterThanOrEqualTo; } public PO_MainQuery setOrderTypeGreaterThanOrEqualTo(Short value) { this.OrderTypeGreaterThanOrEqualTo = value; return this; } public Short getOrderTypeGreaterThan() { return OrderTypeGreaterThan; } public PO_MainQuery setOrderTypeGreaterThan(Short value) { this.OrderTypeGreaterThan = value; return this; } public Short getOrderTypeLessThan() { return OrderTypeLessThan; } public PO_MainQuery setOrderTypeLessThan(Short value) { this.OrderTypeLessThan = value; return this; } public Short getOrderTypeLessThanOrEqualTo() { return OrderTypeLessThanOrEqualTo; } public PO_MainQuery setOrderTypeLessThanOrEqualTo(Short value) { this.OrderTypeLessThanOrEqualTo = value; return this; } public Short getOrderTypeNotEqualTo() { return OrderTypeNotEqualTo; } public PO_MainQuery setOrderTypeNotEqualTo(Short value) { this.OrderTypeNotEqualTo = value; return this; } public ArrayList getOrderTypeBetween() { return OrderTypeBetween; } public PO_MainQuery setOrderTypeBetween(ArrayList value) { this.OrderTypeBetween = value; return this; } public ArrayList getOrderTypeIn() { return OrderTypeIn; } public PO_MainQuery setOrderTypeIn(ArrayList value) { this.OrderTypeIn = value; return this; } public String getOrderTypeInvID() { return OrderTypeInvID; } public PO_MainQuery setOrderTypeInvID(String value) { this.OrderTypeInvID = value; return this; } public String getOrderTypeInvIDStartsWith() { return OrderTypeInvIDStartsWith; } public PO_MainQuery setOrderTypeInvIDStartsWith(String value) { this.OrderTypeInvIDStartsWith = value; return this; } public String getOrderTypeInvIDEndsWith() { return OrderTypeInvIDEndsWith; } public PO_MainQuery setOrderTypeInvIDEndsWith(String value) { this.OrderTypeInvIDEndsWith = value; return this; } public String getOrderTypeInvIDContains() { return OrderTypeInvIDContains; } public PO_MainQuery setOrderTypeInvIDContains(String value) { this.OrderTypeInvIDContains = value; return this; } public String getOrderTypeInvIDLike() { return OrderTypeInvIDLike; } public PO_MainQuery setOrderTypeInvIDLike(String value) { this.OrderTypeInvIDLike = value; return this; } public ArrayList getOrderTypeInvIDBetween() { return OrderTypeInvIDBetween; } public PO_MainQuery setOrderTypeInvIDBetween(ArrayList value) { this.OrderTypeInvIDBetween = value; return this; } public ArrayList getOrderTypeInvIDIn() { return OrderTypeInvIDIn; } public PO_MainQuery setOrderTypeInvIDIn(ArrayList value) { this.OrderTypeInvIDIn = value; return this; } public String getInLogicalID() { return IN_LogicalID; } public PO_MainQuery setInLogicalID(String value) { this.IN_LogicalID = value; return this; } public String getInLogicalIDStartsWith() { return IN_LogicalIDStartsWith; } public PO_MainQuery setInLogicalIDStartsWith(String value) { this.IN_LogicalIDStartsWith = value; return this; } public String getInLogicalIDEndsWith() { return IN_LogicalIDEndsWith; } public PO_MainQuery setInLogicalIDEndsWith(String value) { this.IN_LogicalIDEndsWith = value; return this; } public String getInLogicalIDContains() { return IN_LogicalIDContains; } public PO_MainQuery setInLogicalIDContains(String value) { this.IN_LogicalIDContains = value; return this; } public String getInLogicalIDLike() { return IN_LogicalIDLike; } public PO_MainQuery setInLogicalIDLike(String value) { this.IN_LogicalIDLike = value; return this; } public ArrayList getInLogicalIDBetween() { return IN_LogicalIDBetween; } public PO_MainQuery setInLogicalIDBetween(ArrayList value) { this.IN_LogicalIDBetween = value; return this; } public ArrayList getInLogicalIDIn() { return IN_LogicalIDIn; } public PO_MainQuery setInLogicalIDIn(ArrayList value) { this.IN_LogicalIDIn = value; return this; } public Short getOrderSupplierType() { return OrderSupplierType; } public PO_MainQuery setOrderSupplierType(Short value) { this.OrderSupplierType = value; return this; } public Short getOrderSupplierTypeGreaterThanOrEqualTo() { return OrderSupplierTypeGreaterThanOrEqualTo; } public PO_MainQuery setOrderSupplierTypeGreaterThanOrEqualTo(Short value) { this.OrderSupplierTypeGreaterThanOrEqualTo = value; return this; } public Short getOrderSupplierTypeGreaterThan() { return OrderSupplierTypeGreaterThan; } public PO_MainQuery setOrderSupplierTypeGreaterThan(Short value) { this.OrderSupplierTypeGreaterThan = value; return this; } public Short getOrderSupplierTypeLessThan() { return OrderSupplierTypeLessThan; } public PO_MainQuery setOrderSupplierTypeLessThan(Short value) { this.OrderSupplierTypeLessThan = value; return this; } public Short getOrderSupplierTypeLessThanOrEqualTo() { return OrderSupplierTypeLessThanOrEqualTo; } public PO_MainQuery setOrderSupplierTypeLessThanOrEqualTo(Short value) { this.OrderSupplierTypeLessThanOrEqualTo = value; return this; } public Short getOrderSupplierTypeNotEqualTo() { return OrderSupplierTypeNotEqualTo; } public PO_MainQuery setOrderSupplierTypeNotEqualTo(Short value) { this.OrderSupplierTypeNotEqualTo = value; return this; } public ArrayList getOrderSupplierTypeBetween() { return OrderSupplierTypeBetween; } public PO_MainQuery setOrderSupplierTypeBetween(ArrayList value) { this.OrderSupplierTypeBetween = value; return this; } public ArrayList getOrderSupplierTypeIn() { return OrderSupplierTypeIn; } public PO_MainQuery setOrderSupplierTypeIn(ArrayList value) { this.OrderSupplierTypeIn = value; return this; } public String getCentralWarehouseID() { return CentralWarehouseID; } public PO_MainQuery setCentralWarehouseID(String value) { this.CentralWarehouseID = value; return this; } public String getCentralWarehouseIDStartsWith() { return CentralWarehouseIDStartsWith; } public PO_MainQuery setCentralWarehouseIDStartsWith(String value) { this.CentralWarehouseIDStartsWith = value; return this; } public String getCentralWarehouseIDEndsWith() { return CentralWarehouseIDEndsWith; } public PO_MainQuery setCentralWarehouseIDEndsWith(String value) { this.CentralWarehouseIDEndsWith = value; return this; } public String getCentralWarehouseIDContains() { return CentralWarehouseIDContains; } public PO_MainQuery setCentralWarehouseIDContains(String value) { this.CentralWarehouseIDContains = value; return this; } public String getCentralWarehouseIDLike() { return CentralWarehouseIDLike; } public PO_MainQuery setCentralWarehouseIDLike(String value) { this.CentralWarehouseIDLike = value; return this; } public ArrayList getCentralWarehouseIDBetween() { return CentralWarehouseIDBetween; } public PO_MainQuery setCentralWarehouseIDBetween(ArrayList value) { this.CentralWarehouseIDBetween = value; return this; } public ArrayList getCentralWarehouseIDIn() { return CentralWarehouseIDIn; } public PO_MainQuery setCentralWarehouseIDIn(ArrayList value) { this.CentralWarehouseIDIn = value; return this; } public BigDecimal getTaxTotal() { return TaxTotal; } public PO_MainQuery setTaxTotal(BigDecimal value) { this.TaxTotal = value; return this; } public BigDecimal getTaxTotalGreaterThanOrEqualTo() { return TaxTotalGreaterThanOrEqualTo; } public PO_MainQuery setTaxTotalGreaterThanOrEqualTo(BigDecimal value) { this.TaxTotalGreaterThanOrEqualTo = value; return this; } public BigDecimal getTaxTotalGreaterThan() { return TaxTotalGreaterThan; } public PO_MainQuery setTaxTotalGreaterThan(BigDecimal value) { this.TaxTotalGreaterThan = value; return this; } public BigDecimal getTaxTotalLessThan() { return TaxTotalLessThan; } public PO_MainQuery setTaxTotalLessThan(BigDecimal value) { this.TaxTotalLessThan = value; return this; } public BigDecimal getTaxTotalLessThanOrEqualTo() { return TaxTotalLessThanOrEqualTo; } public PO_MainQuery setTaxTotalLessThanOrEqualTo(BigDecimal value) { this.TaxTotalLessThanOrEqualTo = value; return this; } public BigDecimal getTaxTotalNotEqualTo() { return TaxTotalNotEqualTo; } public PO_MainQuery setTaxTotalNotEqualTo(BigDecimal value) { this.TaxTotalNotEqualTo = value; return this; } public ArrayList getTaxTotalBetween() { return TaxTotalBetween; } public PO_MainQuery setTaxTotalBetween(ArrayList value) { this.TaxTotalBetween = value; return this; } public ArrayList getTaxTotalIn() { return TaxTotalIn; } public PO_MainQuery setTaxTotalIn(ArrayList value) { this.TaxTotalIn = value; return this; } public String getCurrencyID() { return CurrencyID; } public PO_MainQuery setCurrencyID(String value) { this.CurrencyID = value; return this; } public String getCurrencyIDStartsWith() { return CurrencyIDStartsWith; } public PO_MainQuery setCurrencyIDStartsWith(String value) { this.CurrencyIDStartsWith = value; return this; } public String getCurrencyIDEndsWith() { return CurrencyIDEndsWith; } public PO_MainQuery setCurrencyIDEndsWith(String value) { this.CurrencyIDEndsWith = value; return this; } public String getCurrencyIDContains() { return CurrencyIDContains; } public PO_MainQuery setCurrencyIDContains(String value) { this.CurrencyIDContains = value; return this; } public String getCurrencyIDLike() { return CurrencyIDLike; } public PO_MainQuery setCurrencyIDLike(String value) { this.CurrencyIDLike = value; return this; } public ArrayList getCurrencyIDBetween() { return CurrencyIDBetween; } public PO_MainQuery setCurrencyIDBetween(ArrayList value) { this.CurrencyIDBetween = value; return this; } public ArrayList getCurrencyIDIn() { return CurrencyIDIn; } public PO_MainQuery setCurrencyIDIn(ArrayList value) { this.CurrencyIDIn = value; return this; } public String getInTransitWarehouseID() { return InTransitWarehouseID; } public PO_MainQuery setInTransitWarehouseID(String value) { this.InTransitWarehouseID = value; return this; } public String getInTransitWarehouseIDStartsWith() { return InTransitWarehouseIDStartsWith; } public PO_MainQuery setInTransitWarehouseIDStartsWith(String value) { this.InTransitWarehouseIDStartsWith = value; return this; } public String getInTransitWarehouseIDEndsWith() { return InTransitWarehouseIDEndsWith; } public PO_MainQuery setInTransitWarehouseIDEndsWith(String value) { this.InTransitWarehouseIDEndsWith = value; return this; } public String getInTransitWarehouseIDContains() { return InTransitWarehouseIDContains; } public PO_MainQuery setInTransitWarehouseIDContains(String value) { this.InTransitWarehouseIDContains = value; return this; } public String getInTransitWarehouseIDLike() { return InTransitWarehouseIDLike; } public PO_MainQuery setInTransitWarehouseIDLike(String value) { this.InTransitWarehouseIDLike = value; return this; } public ArrayList getInTransitWarehouseIDBetween() { return InTransitWarehouseIDBetween; } public PO_MainQuery setInTransitWarehouseIDBetween(ArrayList value) { this.InTransitWarehouseIDBetween = value; return this; } public ArrayList getInTransitWarehouseIDIn() { return InTransitWarehouseIDIn; } public PO_MainQuery setInTransitWarehouseIDIn(ArrayList value) { this.InTransitWarehouseIDIn = value; return this; } public String getReference() { return Reference; } public PO_MainQuery setReference(String value) { this.Reference = value; return this; } public String getReferenceStartsWith() { return ReferenceStartsWith; } public PO_MainQuery setReferenceStartsWith(String value) { this.ReferenceStartsWith = value; return this; } public String getReferenceEndsWith() { return ReferenceEndsWith; } public PO_MainQuery setReferenceEndsWith(String value) { this.ReferenceEndsWith = value; return this; } public String getReferenceContains() { return ReferenceContains; } public PO_MainQuery setReferenceContains(String value) { this.ReferenceContains = value; return this; } public String getReferenceLike() { return ReferenceLike; } public PO_MainQuery setReferenceLike(String value) { this.ReferenceLike = value; return this; } public ArrayList getReferenceBetween() { return ReferenceBetween; } public PO_MainQuery setReferenceBetween(ArrayList value) { this.ReferenceBetween = value; return this; } public ArrayList getReferenceIn() { return ReferenceIn; } public PO_MainQuery setReferenceIn(ArrayList value) { this.ReferenceIn = value; return this; } public String getPoWorkflowsRecID() { return PO_Workflows_RecID; } public PO_MainQuery setPoWorkflowsRecID(String value) { this.PO_Workflows_RecID = value; return this; } public String getPoWorkflowsRecIDStartsWith() { return PO_Workflows_RecIDStartsWith; } public PO_MainQuery setPoWorkflowsRecIDStartsWith(String value) { this.PO_Workflows_RecIDStartsWith = value; return this; } public String getPoWorkflowsRecIDEndsWith() { return PO_Workflows_RecIDEndsWith; } public PO_MainQuery setPoWorkflowsRecIDEndsWith(String value) { this.PO_Workflows_RecIDEndsWith = value; return this; } public String getPoWorkflowsRecIDContains() { return PO_Workflows_RecIDContains; } public PO_MainQuery setPoWorkflowsRecIDContains(String value) { this.PO_Workflows_RecIDContains = value; return this; } public String getPoWorkflowsRecIDLike() { return PO_Workflows_RecIDLike; } public PO_MainQuery setPoWorkflowsRecIDLike(String value) { this.PO_Workflows_RecIDLike = value; return this; } public ArrayList getPoWorkflowsRecIDBetween() { return PO_Workflows_RecIDBetween; } public PO_MainQuery setPoWorkflowsRecIDBetween(ArrayList value) { this.PO_Workflows_RecIDBetween = value; return this; } public ArrayList getPoWorkflowsRecIDIn() { return PO_Workflows_RecIDIn; } public PO_MainQuery setPoWorkflowsRecIDIn(ArrayList value) { this.PO_Workflows_RecIDIn = value; return this; } public String getHrStaffRecID() { return HR_Staff_RecID; } public PO_MainQuery setHrStaffRecID(String value) { this.HR_Staff_RecID = value; return this; } public String getHrStaffRecIDStartsWith() { return HR_Staff_RecIDStartsWith; } public PO_MainQuery setHrStaffRecIDStartsWith(String value) { this.HR_Staff_RecIDStartsWith = value; return this; } public String getHrStaffRecIDEndsWith() { return HR_Staff_RecIDEndsWith; } public PO_MainQuery setHrStaffRecIDEndsWith(String value) { this.HR_Staff_RecIDEndsWith = value; return this; } public String getHrStaffRecIDContains() { return HR_Staff_RecIDContains; } public PO_MainQuery setHrStaffRecIDContains(String value) { this.HR_Staff_RecIDContains = value; return this; } public String getHrStaffRecIDLike() { return HR_Staff_RecIDLike; } public PO_MainQuery setHrStaffRecIDLike(String value) { this.HR_Staff_RecIDLike = value; return this; } public ArrayList getHrStaffRecIDBetween() { return HR_Staff_RecIDBetween; } public PO_MainQuery setHrStaffRecIDBetween(ArrayList value) { this.HR_Staff_RecIDBetween = value; return this; } public ArrayList getHrStaffRecIDIn() { return HR_Staff_RecIDIn; } public PO_MainQuery setHrStaffRecIDIn(ArrayList value) { this.HR_Staff_RecIDIn = value; return this; } public String getCrWarehouseWarehouseID() { return CR_Warehouse_WarehouseID; } public PO_MainQuery setCrWarehouseWarehouseID(String value) { this.CR_Warehouse_WarehouseID = value; return this; } public String getCrWarehouseWarehouseIDStartsWith() { return CR_Warehouse_WarehouseIDStartsWith; } public PO_MainQuery setCrWarehouseWarehouseIDStartsWith(String value) { this.CR_Warehouse_WarehouseIDStartsWith = value; return this; } public String getCrWarehouseWarehouseIDEndsWith() { return CR_Warehouse_WarehouseIDEndsWith; } public PO_MainQuery setCrWarehouseWarehouseIDEndsWith(String value) { this.CR_Warehouse_WarehouseIDEndsWith = value; return this; } public String getCrWarehouseWarehouseIDContains() { return CR_Warehouse_WarehouseIDContains; } public PO_MainQuery setCrWarehouseWarehouseIDContains(String value) { this.CR_Warehouse_WarehouseIDContains = value; return this; } public String getCrWarehouseWarehouseIDLike() { return CR_Warehouse_WarehouseIDLike; } public PO_MainQuery setCrWarehouseWarehouseIDLike(String value) { this.CR_Warehouse_WarehouseIDLike = value; return this; } public ArrayList getCrWarehouseWarehouseIDBetween() { return CR_Warehouse_WarehouseIDBetween; } public PO_MainQuery setCrWarehouseWarehouseIDBetween(ArrayList value) { this.CR_Warehouse_WarehouseIDBetween = value; return this; } public ArrayList getCrWarehouseWarehouseIDIn() { return CR_Warehouse_WarehouseIDIn; } public PO_MainQuery setCrWarehouseWarehouseIDIn(ArrayList value) { this.CR_Warehouse_WarehouseIDIn = value; return this; } public BigDecimal getFreight() { return Freight; } public PO_MainQuery setFreight(BigDecimal value) { this.Freight = value; return this; } public BigDecimal getFreightGreaterThanOrEqualTo() { return FreightGreaterThanOrEqualTo; } public PO_MainQuery setFreightGreaterThanOrEqualTo(BigDecimal value) { this.FreightGreaterThanOrEqualTo = value; return this; } public BigDecimal getFreightGreaterThan() { return FreightGreaterThan; } public PO_MainQuery setFreightGreaterThan(BigDecimal value) { this.FreightGreaterThan = value; return this; } public BigDecimal getFreightLessThan() { return FreightLessThan; } public PO_MainQuery setFreightLessThan(BigDecimal value) { this.FreightLessThan = value; return this; } public BigDecimal getFreightLessThanOrEqualTo() { return FreightLessThanOrEqualTo; } public PO_MainQuery setFreightLessThanOrEqualTo(BigDecimal value) { this.FreightLessThanOrEqualTo = value; return this; } public BigDecimal getFreightNotEqualTo() { return FreightNotEqualTo; } public PO_MainQuery setFreightNotEqualTo(BigDecimal value) { this.FreightNotEqualTo = value; return this; } public ArrayList getFreightBetween() { return FreightBetween; } public PO_MainQuery setFreightBetween(ArrayList value) { this.FreightBetween = value; return this; } public ArrayList getFreightIn() { return FreightIn; } public PO_MainQuery setFreightIn(ArrayList value) { this.FreightIn = value; return this; } public BigDecimal getDuty() { return Duty; } public PO_MainQuery setDuty(BigDecimal value) { this.Duty = value; return this; } public BigDecimal getDutyGreaterThanOrEqualTo() { return DutyGreaterThanOrEqualTo; } public PO_MainQuery setDutyGreaterThanOrEqualTo(BigDecimal value) { this.DutyGreaterThanOrEqualTo = value; return this; } public BigDecimal getDutyGreaterThan() { return DutyGreaterThan; } public PO_MainQuery setDutyGreaterThan(BigDecimal value) { this.DutyGreaterThan = value; return this; } public BigDecimal getDutyLessThan() { return DutyLessThan; } public PO_MainQuery setDutyLessThan(BigDecimal value) { this.DutyLessThan = value; return this; } public BigDecimal getDutyLessThanOrEqualTo() { return DutyLessThanOrEqualTo; } public PO_MainQuery setDutyLessThanOrEqualTo(BigDecimal value) { this.DutyLessThanOrEqualTo = value; return this; } public BigDecimal getDutyNotEqualTo() { return DutyNotEqualTo; } public PO_MainQuery setDutyNotEqualTo(BigDecimal value) { this.DutyNotEqualTo = value; return this; } public ArrayList getDutyBetween() { return DutyBetween; } public PO_MainQuery setDutyBetween(ArrayList value) { this.DutyBetween = value; return this; } public ArrayList getDutyIn() { return DutyIn; } public PO_MainQuery setDutyIn(ArrayList value) { this.DutyIn = value; return this; } public BigDecimal getInsurance() { return Insurance; } public PO_MainQuery setInsurance(BigDecimal value) { this.Insurance = value; return this; } public BigDecimal getInsuranceGreaterThanOrEqualTo() { return InsuranceGreaterThanOrEqualTo; } public PO_MainQuery setInsuranceGreaterThanOrEqualTo(BigDecimal value) { this.InsuranceGreaterThanOrEqualTo = value; return this; } public BigDecimal getInsuranceGreaterThan() { return InsuranceGreaterThan; } public PO_MainQuery setInsuranceGreaterThan(BigDecimal value) { this.InsuranceGreaterThan = value; return this; } public BigDecimal getInsuranceLessThan() { return InsuranceLessThan; } public PO_MainQuery setInsuranceLessThan(BigDecimal value) { this.InsuranceLessThan = value; return this; } public BigDecimal getInsuranceLessThanOrEqualTo() { return InsuranceLessThanOrEqualTo; } public PO_MainQuery setInsuranceLessThanOrEqualTo(BigDecimal value) { this.InsuranceLessThanOrEqualTo = value; return this; } public BigDecimal getInsuranceNotEqualTo() { return InsuranceNotEqualTo; } public PO_MainQuery setInsuranceNotEqualTo(BigDecimal value) { this.InsuranceNotEqualTo = value; return this; } public ArrayList getInsuranceBetween() { return InsuranceBetween; } public PO_MainQuery setInsuranceBetween(ArrayList value) { this.InsuranceBetween = value; return this; } public ArrayList getInsuranceIn() { return InsuranceIn; } public PO_MainQuery setInsuranceIn(ArrayList value) { this.InsuranceIn = value; return this; } public String getFreightTaxID() { return FreightTaxID; } public PO_MainQuery setFreightTaxID(String value) { this.FreightTaxID = value; return this; } public String getFreightTaxIDStartsWith() { return FreightTaxIDStartsWith; } public PO_MainQuery setFreightTaxIDStartsWith(String value) { this.FreightTaxIDStartsWith = value; return this; } public String getFreightTaxIDEndsWith() { return FreightTaxIDEndsWith; } public PO_MainQuery setFreightTaxIDEndsWith(String value) { this.FreightTaxIDEndsWith = value; return this; } public String getFreightTaxIDContains() { return FreightTaxIDContains; } public PO_MainQuery setFreightTaxIDContains(String value) { this.FreightTaxIDContains = value; return this; } public String getFreightTaxIDLike() { return FreightTaxIDLike; } public PO_MainQuery setFreightTaxIDLike(String value) { this.FreightTaxIDLike = value; return this; } public ArrayList getFreightTaxIDBetween() { return FreightTaxIDBetween; } public PO_MainQuery setFreightTaxIDBetween(ArrayList value) { this.FreightTaxIDBetween = value; return this; } public ArrayList getFreightTaxIDIn() { return FreightTaxIDIn; } public PO_MainQuery setFreightTaxIDIn(ArrayList value) { this.FreightTaxIDIn = value; return this; } public BigDecimal getFreightTaxRate() { return FreightTaxRate; } public PO_MainQuery setFreightTaxRate(BigDecimal value) { this.FreightTaxRate = value; return this; } public BigDecimal getFreightTaxRateGreaterThanOrEqualTo() { return FreightTaxRateGreaterThanOrEqualTo; } public PO_MainQuery setFreightTaxRateGreaterThanOrEqualTo(BigDecimal value) { this.FreightTaxRateGreaterThanOrEqualTo = value; return this; } public BigDecimal getFreightTaxRateGreaterThan() { return FreightTaxRateGreaterThan; } public PO_MainQuery setFreightTaxRateGreaterThan(BigDecimal value) { this.FreightTaxRateGreaterThan = value; return this; } public BigDecimal getFreightTaxRateLessThan() { return FreightTaxRateLessThan; } public PO_MainQuery setFreightTaxRateLessThan(BigDecimal value) { this.FreightTaxRateLessThan = value; return this; } public BigDecimal getFreightTaxRateLessThanOrEqualTo() { return FreightTaxRateLessThanOrEqualTo; } public PO_MainQuery setFreightTaxRateLessThanOrEqualTo(BigDecimal value) { this.FreightTaxRateLessThanOrEqualTo = value; return this; } public BigDecimal getFreightTaxRateNotEqualTo() { return FreightTaxRateNotEqualTo; } public PO_MainQuery setFreightTaxRateNotEqualTo(BigDecimal value) { this.FreightTaxRateNotEqualTo = value; return this; } public ArrayList getFreightTaxRateBetween() { return FreightTaxRateBetween; } public PO_MainQuery setFreightTaxRateBetween(ArrayList value) { this.FreightTaxRateBetween = value; return this; } public ArrayList getFreightTaxRateIn() { return FreightTaxRateIn; } public PO_MainQuery setFreightTaxRateIn(ArrayList value) { this.FreightTaxRateIn = value; return this; } public BigDecimal getFreightTaxAmount() { return FreightTaxAmount; } public PO_MainQuery setFreightTaxAmount(BigDecimal value) { this.FreightTaxAmount = value; return this; } public BigDecimal getFreightTaxAmountGreaterThanOrEqualTo() { return FreightTaxAmountGreaterThanOrEqualTo; } public PO_MainQuery setFreightTaxAmountGreaterThanOrEqualTo(BigDecimal value) { this.FreightTaxAmountGreaterThanOrEqualTo = value; return this; } public BigDecimal getFreightTaxAmountGreaterThan() { return FreightTaxAmountGreaterThan; } public PO_MainQuery setFreightTaxAmountGreaterThan(BigDecimal value) { this.FreightTaxAmountGreaterThan = value; return this; } public BigDecimal getFreightTaxAmountLessThan() { return FreightTaxAmountLessThan; } public PO_MainQuery setFreightTaxAmountLessThan(BigDecimal value) { this.FreightTaxAmountLessThan = value; return this; } public BigDecimal getFreightTaxAmountLessThanOrEqualTo() { return FreightTaxAmountLessThanOrEqualTo; } public PO_MainQuery setFreightTaxAmountLessThanOrEqualTo(BigDecimal value) { this.FreightTaxAmountLessThanOrEqualTo = value; return this; } public BigDecimal getFreightTaxAmountNotEqualTo() { return FreightTaxAmountNotEqualTo; } public PO_MainQuery setFreightTaxAmountNotEqualTo(BigDecimal value) { this.FreightTaxAmountNotEqualTo = value; return this; } public ArrayList getFreightTaxAmountBetween() { return FreightTaxAmountBetween; } public PO_MainQuery setFreightTaxAmountBetween(ArrayList value) { this.FreightTaxAmountBetween = value; return this; } public ArrayList getFreightTaxAmountIn() { return FreightTaxAmountIn; } public PO_MainQuery setFreightTaxAmountIn(ArrayList value) { this.FreightTaxAmountIn = value; return this; } public String getDutyTaxID() { return DutyTaxID; } public PO_MainQuery setDutyTaxID(String value) { this.DutyTaxID = value; return this; } public String getDutyTaxIDStartsWith() { return DutyTaxIDStartsWith; } public PO_MainQuery setDutyTaxIDStartsWith(String value) { this.DutyTaxIDStartsWith = value; return this; } public String getDutyTaxIDEndsWith() { return DutyTaxIDEndsWith; } public PO_MainQuery setDutyTaxIDEndsWith(String value) { this.DutyTaxIDEndsWith = value; return this; } public String getDutyTaxIDContains() { return DutyTaxIDContains; } public PO_MainQuery setDutyTaxIDContains(String value) { this.DutyTaxIDContains = value; return this; } public String getDutyTaxIDLike() { return DutyTaxIDLike; } public PO_MainQuery setDutyTaxIDLike(String value) { this.DutyTaxIDLike = value; return this; } public ArrayList getDutyTaxIDBetween() { return DutyTaxIDBetween; } public PO_MainQuery setDutyTaxIDBetween(ArrayList value) { this.DutyTaxIDBetween = value; return this; } public ArrayList getDutyTaxIDIn() { return DutyTaxIDIn; } public PO_MainQuery setDutyTaxIDIn(ArrayList value) { this.DutyTaxIDIn = value; return this; } public BigDecimal getDutyTaxRate() { return DutyTaxRate; } public PO_MainQuery setDutyTaxRate(BigDecimal value) { this.DutyTaxRate = value; return this; } public BigDecimal getDutyTaxRateGreaterThanOrEqualTo() { return DutyTaxRateGreaterThanOrEqualTo; } public PO_MainQuery setDutyTaxRateGreaterThanOrEqualTo(BigDecimal value) { this.DutyTaxRateGreaterThanOrEqualTo = value; return this; } public BigDecimal getDutyTaxRateGreaterThan() { return DutyTaxRateGreaterThan; } public PO_MainQuery setDutyTaxRateGreaterThan(BigDecimal value) { this.DutyTaxRateGreaterThan = value; return this; } public BigDecimal getDutyTaxRateLessThan() { return DutyTaxRateLessThan; } public PO_MainQuery setDutyTaxRateLessThan(BigDecimal value) { this.DutyTaxRateLessThan = value; return this; } public BigDecimal getDutyTaxRateLessThanOrEqualTo() { return DutyTaxRateLessThanOrEqualTo; } public PO_MainQuery setDutyTaxRateLessThanOrEqualTo(BigDecimal value) { this.DutyTaxRateLessThanOrEqualTo = value; return this; } public BigDecimal getDutyTaxRateNotEqualTo() { return DutyTaxRateNotEqualTo; } public PO_MainQuery setDutyTaxRateNotEqualTo(BigDecimal value) { this.DutyTaxRateNotEqualTo = value; return this; } public ArrayList getDutyTaxRateBetween() { return DutyTaxRateBetween; } public PO_MainQuery setDutyTaxRateBetween(ArrayList value) { this.DutyTaxRateBetween = value; return this; } public ArrayList getDutyTaxRateIn() { return DutyTaxRateIn; } public PO_MainQuery setDutyTaxRateIn(ArrayList value) { this.DutyTaxRateIn = value; return this; } public BigDecimal getDutyTaxAmount() { return DutyTaxAmount; } public PO_MainQuery setDutyTaxAmount(BigDecimal value) { this.DutyTaxAmount = value; return this; } public BigDecimal getDutyTaxAmountGreaterThanOrEqualTo() { return DutyTaxAmountGreaterThanOrEqualTo; } public PO_MainQuery setDutyTaxAmountGreaterThanOrEqualTo(BigDecimal value) { this.DutyTaxAmountGreaterThanOrEqualTo = value; return this; } public BigDecimal getDutyTaxAmountGreaterThan() { return DutyTaxAmountGreaterThan; } public PO_MainQuery setDutyTaxAmountGreaterThan(BigDecimal value) { this.DutyTaxAmountGreaterThan = value; return this; } public BigDecimal getDutyTaxAmountLessThan() { return DutyTaxAmountLessThan; } public PO_MainQuery setDutyTaxAmountLessThan(BigDecimal value) { this.DutyTaxAmountLessThan = value; return this; } public BigDecimal getDutyTaxAmountLessThanOrEqualTo() { return DutyTaxAmountLessThanOrEqualTo; } public PO_MainQuery setDutyTaxAmountLessThanOrEqualTo(BigDecimal value) { this.DutyTaxAmountLessThanOrEqualTo = value; return this; } public BigDecimal getDutyTaxAmountNotEqualTo() { return DutyTaxAmountNotEqualTo; } public PO_MainQuery setDutyTaxAmountNotEqualTo(BigDecimal value) { this.DutyTaxAmountNotEqualTo = value; return this; } public ArrayList getDutyTaxAmountBetween() { return DutyTaxAmountBetween; } public PO_MainQuery setDutyTaxAmountBetween(ArrayList value) { this.DutyTaxAmountBetween = value; return this; } public ArrayList getDutyTaxAmountIn() { return DutyTaxAmountIn; } public PO_MainQuery setDutyTaxAmountIn(ArrayList value) { this.DutyTaxAmountIn = value; return this; } public String getInsuranceTaxID() { return InsuranceTaxID; } public PO_MainQuery setInsuranceTaxID(String value) { this.InsuranceTaxID = value; return this; } public String getInsuranceTaxIDStartsWith() { return InsuranceTaxIDStartsWith; } public PO_MainQuery setInsuranceTaxIDStartsWith(String value) { this.InsuranceTaxIDStartsWith = value; return this; } public String getInsuranceTaxIDEndsWith() { return InsuranceTaxIDEndsWith; } public PO_MainQuery setInsuranceTaxIDEndsWith(String value) { this.InsuranceTaxIDEndsWith = value; return this; } public String getInsuranceTaxIDContains() { return InsuranceTaxIDContains; } public PO_MainQuery setInsuranceTaxIDContains(String value) { this.InsuranceTaxIDContains = value; return this; } public String getInsuranceTaxIDLike() { return InsuranceTaxIDLike; } public PO_MainQuery setInsuranceTaxIDLike(String value) { this.InsuranceTaxIDLike = value; return this; } public ArrayList getInsuranceTaxIDBetween() { return InsuranceTaxIDBetween; } public PO_MainQuery setInsuranceTaxIDBetween(ArrayList value) { this.InsuranceTaxIDBetween = value; return this; } public ArrayList getInsuranceTaxIDIn() { return InsuranceTaxIDIn; } public PO_MainQuery setInsuranceTaxIDIn(ArrayList value) { this.InsuranceTaxIDIn = value; return this; } public BigDecimal getInsuranceTaxRate() { return InsuranceTaxRate; } public PO_MainQuery setInsuranceTaxRate(BigDecimal value) { this.InsuranceTaxRate = value; return this; } public BigDecimal getInsuranceTaxRateGreaterThanOrEqualTo() { return InsuranceTaxRateGreaterThanOrEqualTo; } public PO_MainQuery setInsuranceTaxRateGreaterThanOrEqualTo(BigDecimal value) { this.InsuranceTaxRateGreaterThanOrEqualTo = value; return this; } public BigDecimal getInsuranceTaxRateGreaterThan() { return InsuranceTaxRateGreaterThan; } public PO_MainQuery setInsuranceTaxRateGreaterThan(BigDecimal value) { this.InsuranceTaxRateGreaterThan = value; return this; } public BigDecimal getInsuranceTaxRateLessThan() { return InsuranceTaxRateLessThan; } public PO_MainQuery setInsuranceTaxRateLessThan(BigDecimal value) { this.InsuranceTaxRateLessThan = value; return this; } public BigDecimal getInsuranceTaxRateLessThanOrEqualTo() { return InsuranceTaxRateLessThanOrEqualTo; } public PO_MainQuery setInsuranceTaxRateLessThanOrEqualTo(BigDecimal value) { this.InsuranceTaxRateLessThanOrEqualTo = value; return this; } public BigDecimal getInsuranceTaxRateNotEqualTo() { return InsuranceTaxRateNotEqualTo; } public PO_MainQuery setInsuranceTaxRateNotEqualTo(BigDecimal value) { this.InsuranceTaxRateNotEqualTo = value; return this; } public ArrayList getInsuranceTaxRateBetween() { return InsuranceTaxRateBetween; } public PO_MainQuery setInsuranceTaxRateBetween(ArrayList value) { this.InsuranceTaxRateBetween = value; return this; } public ArrayList getInsuranceTaxRateIn() { return InsuranceTaxRateIn; } public PO_MainQuery setInsuranceTaxRateIn(ArrayList value) { this.InsuranceTaxRateIn = value; return this; } public BigDecimal getInsuranceTaxAmount() { return InsuranceTaxAmount; } public PO_MainQuery setInsuranceTaxAmount(BigDecimal value) { this.InsuranceTaxAmount = value; return this; } public BigDecimal getInsuranceTaxAmountGreaterThanOrEqualTo() { return InsuranceTaxAmountGreaterThanOrEqualTo; } public PO_MainQuery setInsuranceTaxAmountGreaterThanOrEqualTo(BigDecimal value) { this.InsuranceTaxAmountGreaterThanOrEqualTo = value; return this; } public BigDecimal getInsuranceTaxAmountGreaterThan() { return InsuranceTaxAmountGreaterThan; } public PO_MainQuery setInsuranceTaxAmountGreaterThan(BigDecimal value) { this.InsuranceTaxAmountGreaterThan = value; return this; } public BigDecimal getInsuranceTaxAmountLessThan() { return InsuranceTaxAmountLessThan; } public PO_MainQuery setInsuranceTaxAmountLessThan(BigDecimal value) { this.InsuranceTaxAmountLessThan = value; return this; } public BigDecimal getInsuranceTaxAmountLessThanOrEqualTo() { return InsuranceTaxAmountLessThanOrEqualTo; } public PO_MainQuery setInsuranceTaxAmountLessThanOrEqualTo(BigDecimal value) { this.InsuranceTaxAmountLessThanOrEqualTo = value; return this; } public BigDecimal getInsuranceTaxAmountNotEqualTo() { return InsuranceTaxAmountNotEqualTo; } public PO_MainQuery setInsuranceTaxAmountNotEqualTo(BigDecimal value) { this.InsuranceTaxAmountNotEqualTo = value; return this; } public ArrayList getInsuranceTaxAmountBetween() { return InsuranceTaxAmountBetween; } public PO_MainQuery setInsuranceTaxAmountBetween(ArrayList value) { this.InsuranceTaxAmountBetween = value; return this; } public ArrayList getInsuranceTaxAmountIn() { return InsuranceTaxAmountIn; } public PO_MainQuery setInsuranceTaxAmountIn(ArrayList value) { this.InsuranceTaxAmountIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class PO_NotesQuery extends QueryDb implements IReturn> { public String RecID = null; public String RecIDStartsWith = null; public String RecIDEndsWith = null; public String RecIDContains = null; public String RecIDLike = null; public ArrayList RecIDBetween = null; public ArrayList RecIDIn = null; public String PurchaseOrderID = null; public String PurchaseOrderIDStartsWith = null; public String PurchaseOrderIDEndsWith = null; public String PurchaseOrderIDContains = null; public String PurchaseOrderIDLike = null; public ArrayList PurchaseOrderIDBetween = null; public ArrayList PurchaseOrderIDIn = null; public String NoteTypeID = null; public String NoteTypeIDStartsWith = null; public String NoteTypeIDEndsWith = null; public String NoteTypeIDContains = null; public String NoteTypeIDLike = null; public ArrayList NoteTypeIDBetween = null; public ArrayList NoteTypeIDIn = null; public Date LastSavedDateTime = null; public Date LastSavedDateTimeGreaterThanOrEqualTo = null; public Date LastSavedDateTimeGreaterThan = null; public Date LastSavedDateTimeLessThan = null; public Date LastSavedDateTimeLessThanOrEqualTo = null; public Date LastSavedDateTimeNotEqualTo = null; public ArrayList LastSavedDateTimeBetween = null; public ArrayList LastSavedDateTimeIn = null; public String LastSavedByStaffID = null; public String LastSavedByStaffIDStartsWith = null; public String LastSavedByStaffIDEndsWith = null; public String LastSavedByStaffIDContains = null; public String LastSavedByStaffIDLike = null; public ArrayList LastSavedByStaffIDBetween = null; public ArrayList LastSavedByStaffIDIn = null; public String NoteText = null; public String NoteTextStartsWith = null; public String NoteTextEndsWith = null; public String NoteTextContains = null; public String NoteTextLike = null; public ArrayList NoteTextBetween = null; public ArrayList NoteTextIn = null; public Boolean ReminderFlag = null; public Date ReminderDueDate = null; public Date ReminderDueDateGreaterThanOrEqualTo = null; public Date ReminderDueDateGreaterThan = null; public Date ReminderDueDateLessThan = null; public Date ReminderDueDateLessThanOrEqualTo = null; public Date ReminderDueDateNotEqualTo = null; public ArrayList ReminderDueDateBetween = null; public ArrayList ReminderDueDateIn = null; public String ReminderStaffID = null; public String ReminderStaffIDStartsWith = null; public String ReminderStaffIDEndsWith = null; public String ReminderStaffIDContains = null; public String ReminderStaffIDLike = null; public ArrayList ReminderStaffIDBetween = null; public ArrayList ReminderStaffIDIn = null; public Short LineNum = null; public Short LineNumGreaterThanOrEqualTo = null; public Short LineNumGreaterThan = null; public Short LineNumLessThan = null; public Short LineNumLessThanOrEqualTo = null; public Short LineNumNotEqualTo = null; public ArrayList LineNumBetween = null; public ArrayList LineNumIn = null; public Integer ItemNo = null; public Integer ItemNoGreaterThanOrEqualTo = null; public Integer ItemNoGreaterThan = null; public Integer ItemNoLessThan = null; public Integer ItemNoLessThanOrEqualTo = null; public Integer ItemNoNotEqualTo = null; public ArrayList ItemNoBetween = null; public ArrayList ItemNoIn = null; public String getRecID() { return RecID; } public PO_NotesQuery setRecID(String value) { this.RecID = value; return this; } public String getRecIDStartsWith() { return RecIDStartsWith; } public PO_NotesQuery setRecIDStartsWith(String value) { this.RecIDStartsWith = value; return this; } public String getRecIDEndsWith() { return RecIDEndsWith; } public PO_NotesQuery setRecIDEndsWith(String value) { this.RecIDEndsWith = value; return this; } public String getRecIDContains() { return RecIDContains; } public PO_NotesQuery setRecIDContains(String value) { this.RecIDContains = value; return this; } public String getRecIDLike() { return RecIDLike; } public PO_NotesQuery setRecIDLike(String value) { this.RecIDLike = value; return this; } public ArrayList getRecIDBetween() { return RecIDBetween; } public PO_NotesQuery setRecIDBetween(ArrayList value) { this.RecIDBetween = value; return this; } public ArrayList getRecIDIn() { return RecIDIn; } public PO_NotesQuery setRecIDIn(ArrayList value) { this.RecIDIn = value; return this; } public String getPurchaseOrderID() { return PurchaseOrderID; } public PO_NotesQuery setPurchaseOrderID(String value) { this.PurchaseOrderID = value; return this; } public String getPurchaseOrderIDStartsWith() { return PurchaseOrderIDStartsWith; } public PO_NotesQuery setPurchaseOrderIDStartsWith(String value) { this.PurchaseOrderIDStartsWith = value; return this; } public String getPurchaseOrderIDEndsWith() { return PurchaseOrderIDEndsWith; } public PO_NotesQuery setPurchaseOrderIDEndsWith(String value) { this.PurchaseOrderIDEndsWith = value; return this; } public String getPurchaseOrderIDContains() { return PurchaseOrderIDContains; } public PO_NotesQuery setPurchaseOrderIDContains(String value) { this.PurchaseOrderIDContains = value; return this; } public String getPurchaseOrderIDLike() { return PurchaseOrderIDLike; } public PO_NotesQuery setPurchaseOrderIDLike(String value) { this.PurchaseOrderIDLike = value; return this; } public ArrayList getPurchaseOrderIDBetween() { return PurchaseOrderIDBetween; } public PO_NotesQuery setPurchaseOrderIDBetween(ArrayList value) { this.PurchaseOrderIDBetween = value; return this; } public ArrayList getPurchaseOrderIDIn() { return PurchaseOrderIDIn; } public PO_NotesQuery setPurchaseOrderIDIn(ArrayList value) { this.PurchaseOrderIDIn = value; return this; } public String getNoteTypeID() { return NoteTypeID; } public PO_NotesQuery setNoteTypeID(String value) { this.NoteTypeID = value; return this; } public String getNoteTypeIDStartsWith() { return NoteTypeIDStartsWith; } public PO_NotesQuery setNoteTypeIDStartsWith(String value) { this.NoteTypeIDStartsWith = value; return this; } public String getNoteTypeIDEndsWith() { return NoteTypeIDEndsWith; } public PO_NotesQuery setNoteTypeIDEndsWith(String value) { this.NoteTypeIDEndsWith = value; return this; } public String getNoteTypeIDContains() { return NoteTypeIDContains; } public PO_NotesQuery setNoteTypeIDContains(String value) { this.NoteTypeIDContains = value; return this; } public String getNoteTypeIDLike() { return NoteTypeIDLike; } public PO_NotesQuery setNoteTypeIDLike(String value) { this.NoteTypeIDLike = value; return this; } public ArrayList getNoteTypeIDBetween() { return NoteTypeIDBetween; } public PO_NotesQuery setNoteTypeIDBetween(ArrayList value) { this.NoteTypeIDBetween = value; return this; } public ArrayList getNoteTypeIDIn() { return NoteTypeIDIn; } public PO_NotesQuery setNoteTypeIDIn(ArrayList value) { this.NoteTypeIDIn = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public PO_NotesQuery setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getLastSavedDateTimeGreaterThanOrEqualTo() { return LastSavedDateTimeGreaterThanOrEqualTo; } public PO_NotesQuery setLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.LastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeGreaterThan() { return LastSavedDateTimeGreaterThan; } public PO_NotesQuery setLastSavedDateTimeGreaterThan(Date value) { this.LastSavedDateTimeGreaterThan = value; return this; } public Date getLastSavedDateTimeLessThan() { return LastSavedDateTimeLessThan; } public PO_NotesQuery setLastSavedDateTimeLessThan(Date value) { this.LastSavedDateTimeLessThan = value; return this; } public Date getLastSavedDateTimeLessThanOrEqualTo() { return LastSavedDateTimeLessThanOrEqualTo; } public PO_NotesQuery setLastSavedDateTimeLessThanOrEqualTo(Date value) { this.LastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeNotEqualTo() { return LastSavedDateTimeNotEqualTo; } public PO_NotesQuery setLastSavedDateTimeNotEqualTo(Date value) { this.LastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getLastSavedDateTimeBetween() { return LastSavedDateTimeBetween; } public PO_NotesQuery setLastSavedDateTimeBetween(ArrayList value) { this.LastSavedDateTimeBetween = value; return this; } public ArrayList getLastSavedDateTimeIn() { return LastSavedDateTimeIn; } public PO_NotesQuery setLastSavedDateTimeIn(ArrayList value) { this.LastSavedDateTimeIn = value; return this; } public String getLastSavedByStaffID() { return LastSavedByStaffID; } public PO_NotesQuery setLastSavedByStaffID(String value) { this.LastSavedByStaffID = value; return this; } public String getLastSavedByStaffIDStartsWith() { return LastSavedByStaffIDStartsWith; } public PO_NotesQuery setLastSavedByStaffIDStartsWith(String value) { this.LastSavedByStaffIDStartsWith = value; return this; } public String getLastSavedByStaffIDEndsWith() { return LastSavedByStaffIDEndsWith; } public PO_NotesQuery setLastSavedByStaffIDEndsWith(String value) { this.LastSavedByStaffIDEndsWith = value; return this; } public String getLastSavedByStaffIDContains() { return LastSavedByStaffIDContains; } public PO_NotesQuery setLastSavedByStaffIDContains(String value) { this.LastSavedByStaffIDContains = value; return this; } public String getLastSavedByStaffIDLike() { return LastSavedByStaffIDLike; } public PO_NotesQuery setLastSavedByStaffIDLike(String value) { this.LastSavedByStaffIDLike = value; return this; } public ArrayList getLastSavedByStaffIDBetween() { return LastSavedByStaffIDBetween; } public PO_NotesQuery setLastSavedByStaffIDBetween(ArrayList value) { this.LastSavedByStaffIDBetween = value; return this; } public ArrayList getLastSavedByStaffIDIn() { return LastSavedByStaffIDIn; } public PO_NotesQuery setLastSavedByStaffIDIn(ArrayList value) { this.LastSavedByStaffIDIn = value; return this; } public String getNoteText() { return NoteText; } public PO_NotesQuery setNoteText(String value) { this.NoteText = value; return this; } public String getNoteTextStartsWith() { return NoteTextStartsWith; } public PO_NotesQuery setNoteTextStartsWith(String value) { this.NoteTextStartsWith = value; return this; } public String getNoteTextEndsWith() { return NoteTextEndsWith; } public PO_NotesQuery setNoteTextEndsWith(String value) { this.NoteTextEndsWith = value; return this; } public String getNoteTextContains() { return NoteTextContains; } public PO_NotesQuery setNoteTextContains(String value) { this.NoteTextContains = value; return this; } public String getNoteTextLike() { return NoteTextLike; } public PO_NotesQuery setNoteTextLike(String value) { this.NoteTextLike = value; return this; } public ArrayList getNoteTextBetween() { return NoteTextBetween; } public PO_NotesQuery setNoteTextBetween(ArrayList value) { this.NoteTextBetween = value; return this; } public ArrayList getNoteTextIn() { return NoteTextIn; } public PO_NotesQuery setNoteTextIn(ArrayList value) { this.NoteTextIn = value; return this; } public Boolean isReminderFlag() { return ReminderFlag; } public PO_NotesQuery setReminderFlag(Boolean value) { this.ReminderFlag = value; return this; } public Date getReminderDueDate() { return ReminderDueDate; } public PO_NotesQuery setReminderDueDate(Date value) { this.ReminderDueDate = value; return this; } public Date getReminderDueDateGreaterThanOrEqualTo() { return ReminderDueDateGreaterThanOrEqualTo; } public PO_NotesQuery setReminderDueDateGreaterThanOrEqualTo(Date value) { this.ReminderDueDateGreaterThanOrEqualTo = value; return this; } public Date getReminderDueDateGreaterThan() { return ReminderDueDateGreaterThan; } public PO_NotesQuery setReminderDueDateGreaterThan(Date value) { this.ReminderDueDateGreaterThan = value; return this; } public Date getReminderDueDateLessThan() { return ReminderDueDateLessThan; } public PO_NotesQuery setReminderDueDateLessThan(Date value) { this.ReminderDueDateLessThan = value; return this; } public Date getReminderDueDateLessThanOrEqualTo() { return ReminderDueDateLessThanOrEqualTo; } public PO_NotesQuery setReminderDueDateLessThanOrEqualTo(Date value) { this.ReminderDueDateLessThanOrEqualTo = value; return this; } public Date getReminderDueDateNotEqualTo() { return ReminderDueDateNotEqualTo; } public PO_NotesQuery setReminderDueDateNotEqualTo(Date value) { this.ReminderDueDateNotEqualTo = value; return this; } public ArrayList getReminderDueDateBetween() { return ReminderDueDateBetween; } public PO_NotesQuery setReminderDueDateBetween(ArrayList value) { this.ReminderDueDateBetween = value; return this; } public ArrayList getReminderDueDateIn() { return ReminderDueDateIn; } public PO_NotesQuery setReminderDueDateIn(ArrayList value) { this.ReminderDueDateIn = value; return this; } public String getReminderStaffID() { return ReminderStaffID; } public PO_NotesQuery setReminderStaffID(String value) { this.ReminderStaffID = value; return this; } public String getReminderStaffIDStartsWith() { return ReminderStaffIDStartsWith; } public PO_NotesQuery setReminderStaffIDStartsWith(String value) { this.ReminderStaffIDStartsWith = value; return this; } public String getReminderStaffIDEndsWith() { return ReminderStaffIDEndsWith; } public PO_NotesQuery setReminderStaffIDEndsWith(String value) { this.ReminderStaffIDEndsWith = value; return this; } public String getReminderStaffIDContains() { return ReminderStaffIDContains; } public PO_NotesQuery setReminderStaffIDContains(String value) { this.ReminderStaffIDContains = value; return this; } public String getReminderStaffIDLike() { return ReminderStaffIDLike; } public PO_NotesQuery setReminderStaffIDLike(String value) { this.ReminderStaffIDLike = value; return this; } public ArrayList getReminderStaffIDBetween() { return ReminderStaffIDBetween; } public PO_NotesQuery setReminderStaffIDBetween(ArrayList value) { this.ReminderStaffIDBetween = value; return this; } public ArrayList getReminderStaffIDIn() { return ReminderStaffIDIn; } public PO_NotesQuery setReminderStaffIDIn(ArrayList value) { this.ReminderStaffIDIn = value; return this; } public Short getLineNum() { return LineNum; } public PO_NotesQuery setLineNum(Short value) { this.LineNum = value; return this; } public Short getLineNumGreaterThanOrEqualTo() { return LineNumGreaterThanOrEqualTo; } public PO_NotesQuery setLineNumGreaterThanOrEqualTo(Short value) { this.LineNumGreaterThanOrEqualTo = value; return this; } public Short getLineNumGreaterThan() { return LineNumGreaterThan; } public PO_NotesQuery setLineNumGreaterThan(Short value) { this.LineNumGreaterThan = value; return this; } public Short getLineNumLessThan() { return LineNumLessThan; } public PO_NotesQuery setLineNumLessThan(Short value) { this.LineNumLessThan = value; return this; } public Short getLineNumLessThanOrEqualTo() { return LineNumLessThanOrEqualTo; } public PO_NotesQuery setLineNumLessThanOrEqualTo(Short value) { this.LineNumLessThanOrEqualTo = value; return this; } public Short getLineNumNotEqualTo() { return LineNumNotEqualTo; } public PO_NotesQuery setLineNumNotEqualTo(Short value) { this.LineNumNotEqualTo = value; return this; } public ArrayList getLineNumBetween() { return LineNumBetween; } public PO_NotesQuery setLineNumBetween(ArrayList value) { this.LineNumBetween = value; return this; } public ArrayList getLineNumIn() { return LineNumIn; } public PO_NotesQuery setLineNumIn(ArrayList value) { this.LineNumIn = value; return this; } public Integer getItemNo() { return ItemNo; } public PO_NotesQuery setItemNo(Integer value) { this.ItemNo = value; return this; } public Integer getItemNoGreaterThanOrEqualTo() { return ItemNoGreaterThanOrEqualTo; } public PO_NotesQuery setItemNoGreaterThanOrEqualTo(Integer value) { this.ItemNoGreaterThanOrEqualTo = value; return this; } public Integer getItemNoGreaterThan() { return ItemNoGreaterThan; } public PO_NotesQuery setItemNoGreaterThan(Integer value) { this.ItemNoGreaterThan = value; return this; } public Integer getItemNoLessThan() { return ItemNoLessThan; } public PO_NotesQuery setItemNoLessThan(Integer value) { this.ItemNoLessThan = value; return this; } public Integer getItemNoLessThanOrEqualTo() { return ItemNoLessThanOrEqualTo; } public PO_NotesQuery setItemNoLessThanOrEqualTo(Integer value) { this.ItemNoLessThanOrEqualTo = value; return this; } public Integer getItemNoNotEqualTo() { return ItemNoNotEqualTo; } public PO_NotesQuery setItemNoNotEqualTo(Integer value) { this.ItemNoNotEqualTo = value; return this; } public ArrayList getItemNoBetween() { return ItemNoBetween; } public PO_NotesQuery setItemNoBetween(ArrayList value) { this.ItemNoBetween = value; return this; } public ArrayList getItemNoIn() { return ItemNoIn; } public PO_NotesQuery setItemNoIn(ArrayList value) { this.ItemNoIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class PO_OrderQtyQuery extends QueryDb implements IReturn> { public String InventoryID = null; public String InventoryIDStartsWith = null; public String InventoryIDEndsWith = null; public String InventoryIDContains = null; public String InventoryIDLike = null; public ArrayList InventoryIDBetween = null; public ArrayList InventoryIDIn = null; public BigDecimal Qty = null; public BigDecimal QtyGreaterThanOrEqualTo = null; public BigDecimal QtyGreaterThan = null; public BigDecimal QtyLessThan = null; public BigDecimal QtyLessThanOrEqualTo = null; public BigDecimal QtyNotEqualTo = null; public ArrayList QtyBetween = null; public ArrayList QtyIn = null; public BigDecimal Delivered = null; public BigDecimal DeliveredGreaterThanOrEqualTo = null; public BigDecimal DeliveredGreaterThan = null; public BigDecimal DeliveredLessThan = null; public BigDecimal DeliveredLessThanOrEqualTo = null; public BigDecimal DeliveredNotEqualTo = null; public ArrayList DeliveredBetween = null; public ArrayList DeliveredIn = null; public String getInventoryID() { return InventoryID; } public PO_OrderQtyQuery setInventoryID(String value) { this.InventoryID = value; return this; } public String getInventoryIDStartsWith() { return InventoryIDStartsWith; } public PO_OrderQtyQuery setInventoryIDStartsWith(String value) { this.InventoryIDStartsWith = value; return this; } public String getInventoryIDEndsWith() { return InventoryIDEndsWith; } public PO_OrderQtyQuery setInventoryIDEndsWith(String value) { this.InventoryIDEndsWith = value; return this; } public String getInventoryIDContains() { return InventoryIDContains; } public PO_OrderQtyQuery setInventoryIDContains(String value) { this.InventoryIDContains = value; return this; } public String getInventoryIDLike() { return InventoryIDLike; } public PO_OrderQtyQuery setInventoryIDLike(String value) { this.InventoryIDLike = value; return this; } public ArrayList getInventoryIDBetween() { return InventoryIDBetween; } public PO_OrderQtyQuery setInventoryIDBetween(ArrayList value) { this.InventoryIDBetween = value; return this; } public ArrayList getInventoryIDIn() { return InventoryIDIn; } public PO_OrderQtyQuery setInventoryIDIn(ArrayList value) { this.InventoryIDIn = value; return this; } public BigDecimal getQty() { return Qty; } public PO_OrderQtyQuery setQty(BigDecimal value) { this.Qty = value; return this; } public BigDecimal getQtyGreaterThanOrEqualTo() { return QtyGreaterThanOrEqualTo; } public PO_OrderQtyQuery setQtyGreaterThanOrEqualTo(BigDecimal value) { this.QtyGreaterThanOrEqualTo = value; return this; } public BigDecimal getQtyGreaterThan() { return QtyGreaterThan; } public PO_OrderQtyQuery setQtyGreaterThan(BigDecimal value) { this.QtyGreaterThan = value; return this; } public BigDecimal getQtyLessThan() { return QtyLessThan; } public PO_OrderQtyQuery setQtyLessThan(BigDecimal value) { this.QtyLessThan = value; return this; } public BigDecimal getQtyLessThanOrEqualTo() { return QtyLessThanOrEqualTo; } public PO_OrderQtyQuery setQtyLessThanOrEqualTo(BigDecimal value) { this.QtyLessThanOrEqualTo = value; return this; } public BigDecimal getQtyNotEqualTo() { return QtyNotEqualTo; } public PO_OrderQtyQuery setQtyNotEqualTo(BigDecimal value) { this.QtyNotEqualTo = value; return this; } public ArrayList getQtyBetween() { return QtyBetween; } public PO_OrderQtyQuery setQtyBetween(ArrayList value) { this.QtyBetween = value; return this; } public ArrayList getQtyIn() { return QtyIn; } public PO_OrderQtyQuery setQtyIn(ArrayList value) { this.QtyIn = value; return this; } public BigDecimal getDelivered() { return Delivered; } public PO_OrderQtyQuery setDelivered(BigDecimal value) { this.Delivered = value; return this; } public BigDecimal getDeliveredGreaterThanOrEqualTo() { return DeliveredGreaterThanOrEqualTo; } public PO_OrderQtyQuery setDeliveredGreaterThanOrEqualTo(BigDecimal value) { this.DeliveredGreaterThanOrEqualTo = value; return this; } public BigDecimal getDeliveredGreaterThan() { return DeliveredGreaterThan; } public PO_OrderQtyQuery setDeliveredGreaterThan(BigDecimal value) { this.DeliveredGreaterThan = value; return this; } public BigDecimal getDeliveredLessThan() { return DeliveredLessThan; } public PO_OrderQtyQuery setDeliveredLessThan(BigDecimal value) { this.DeliveredLessThan = value; return this; } public BigDecimal getDeliveredLessThanOrEqualTo() { return DeliveredLessThanOrEqualTo; } public PO_OrderQtyQuery setDeliveredLessThanOrEqualTo(BigDecimal value) { this.DeliveredLessThanOrEqualTo = value; return this; } public BigDecimal getDeliveredNotEqualTo() { return DeliveredNotEqualTo; } public PO_OrderQtyQuery setDeliveredNotEqualTo(BigDecimal value) { this.DeliveredNotEqualTo = value; return this; } public ArrayList getDeliveredBetween() { return DeliveredBetween; } public PO_OrderQtyQuery setDeliveredBetween(ArrayList value) { this.DeliveredBetween = value; return this; } public ArrayList getDeliveredIn() { return DeliveredIn; } public PO_OrderQtyQuery setDeliveredIn(ArrayList value) { this.DeliveredIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class PO_ShippingAddressQuery extends QueryDb implements IReturn> { public String OrderID = null; public String OrderIDStartsWith = null; public String OrderIDEndsWith = null; public String OrderIDContains = null; public String OrderIDLike = null; public ArrayList OrderIDBetween = null; public ArrayList OrderIDIn = null; public Date LastSavedDateTime = null; public Date LastSavedDateTimeGreaterThanOrEqualTo = null; public Date LastSavedDateTimeGreaterThan = null; public Date LastSavedDateTimeLessThan = null; public Date LastSavedDateTimeLessThanOrEqualTo = null; public Date LastSavedDateTimeNotEqualTo = null; public ArrayList LastSavedDateTimeBetween = null; public ArrayList LastSavedDateTimeIn = null; public String AddressLine1 = null; public String AddressLine1StartsWith = null; public String AddressLine1EndsWith = null; public String AddressLine1Contains = null; public String AddressLine1Like = null; public ArrayList AddressLine1Between = null; public ArrayList AddressLine1In = null; public String AddressLine2 = null; public String AddressLine2StartsWith = null; public String AddressLine2EndsWith = null; public String AddressLine2Contains = null; public String AddressLine2Like = null; public ArrayList AddressLine2Between = null; public ArrayList AddressLine2In = null; public String AddressLine3 = null; public String AddressLine3StartsWith = null; public String AddressLine3EndsWith = null; public String AddressLine3Contains = null; public String AddressLine3Like = null; public ArrayList AddressLine3Between = null; public ArrayList AddressLine3In = null; public String AddressLine4 = null; public String AddressLine4StartsWith = null; public String AddressLine4EndsWith = null; public String AddressLine4Contains = null; public String AddressLine4Like = null; public ArrayList AddressLine4Between = null; public ArrayList AddressLine4In = null; public String Country = null; public String CountryStartsWith = null; public String CountryEndsWith = null; public String CountryContains = null; public String CountryLike = null; public ArrayList CountryBetween = null; public ArrayList CountryIn = null; public String Postcode = null; public String PostcodeStartsWith = null; public String PostcodeEndsWith = null; public String PostcodeContains = null; public String PostcodeLike = null; public ArrayList PostcodeBetween = null; public ArrayList PostcodeIn = null; public String ContactName = null; public String ContactNameStartsWith = null; public String ContactNameEndsWith = null; public String ContactNameContains = null; public String ContactNameLike = null; public ArrayList ContactNameBetween = null; public ArrayList ContactNameIn = null; public String Phone = null; public String PhoneStartsWith = null; public String PhoneEndsWith = null; public String PhoneContains = null; public String PhoneLike = null; public ArrayList PhoneBetween = null; public ArrayList PhoneIn = null; public String Fax = null; public String FaxStartsWith = null; public String FaxEndsWith = null; public String FaxContains = null; public String FaxLike = null; public ArrayList FaxBetween = null; public ArrayList FaxIn = null; public String Spare1 = null; public String Spare1StartsWith = null; public String Spare1EndsWith = null; public String Spare1Contains = null; public String Spare1Like = null; public ArrayList Spare1Between = null; public ArrayList Spare1In = null; public String Spare2 = null; public String Spare2StartsWith = null; public String Spare2EndsWith = null; public String Spare2Contains = null; public String Spare2Like = null; public ArrayList Spare2Between = null; public ArrayList Spare2In = null; public String Spare3 = null; public String Spare3StartsWith = null; public String Spare3EndsWith = null; public String Spare3Contains = null; public String Spare3Like = null; public ArrayList Spare3Between = null; public ArrayList Spare3In = null; public String Spare4 = null; public String Spare4StartsWith = null; public String Spare4EndsWith = null; public String Spare4Contains = null; public String Spare4Like = null; public ArrayList Spare4Between = null; public ArrayList Spare4In = null; public String Spare5 = null; public String Spare5StartsWith = null; public String Spare5EndsWith = null; public String Spare5Contains = null; public String Spare5Like = null; public ArrayList Spare5Between = null; public ArrayList Spare5In = null; public String getOrderID() { return OrderID; } public PO_ShippingAddressQuery setOrderID(String value) { this.OrderID = value; return this; } public String getOrderIDStartsWith() { return OrderIDStartsWith; } public PO_ShippingAddressQuery setOrderIDStartsWith(String value) { this.OrderIDStartsWith = value; return this; } public String getOrderIDEndsWith() { return OrderIDEndsWith; } public PO_ShippingAddressQuery setOrderIDEndsWith(String value) { this.OrderIDEndsWith = value; return this; } public String getOrderIDContains() { return OrderIDContains; } public PO_ShippingAddressQuery setOrderIDContains(String value) { this.OrderIDContains = value; return this; } public String getOrderIDLike() { return OrderIDLike; } public PO_ShippingAddressQuery setOrderIDLike(String value) { this.OrderIDLike = value; return this; } public ArrayList getOrderIDBetween() { return OrderIDBetween; } public PO_ShippingAddressQuery setOrderIDBetween(ArrayList value) { this.OrderIDBetween = value; return this; } public ArrayList getOrderIDIn() { return OrderIDIn; } public PO_ShippingAddressQuery setOrderIDIn(ArrayList value) { this.OrderIDIn = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public PO_ShippingAddressQuery setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getLastSavedDateTimeGreaterThanOrEqualTo() { return LastSavedDateTimeGreaterThanOrEqualTo; } public PO_ShippingAddressQuery setLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.LastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeGreaterThan() { return LastSavedDateTimeGreaterThan; } public PO_ShippingAddressQuery setLastSavedDateTimeGreaterThan(Date value) { this.LastSavedDateTimeGreaterThan = value; return this; } public Date getLastSavedDateTimeLessThan() { return LastSavedDateTimeLessThan; } public PO_ShippingAddressQuery setLastSavedDateTimeLessThan(Date value) { this.LastSavedDateTimeLessThan = value; return this; } public Date getLastSavedDateTimeLessThanOrEqualTo() { return LastSavedDateTimeLessThanOrEqualTo; } public PO_ShippingAddressQuery setLastSavedDateTimeLessThanOrEqualTo(Date value) { this.LastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeNotEqualTo() { return LastSavedDateTimeNotEqualTo; } public PO_ShippingAddressQuery setLastSavedDateTimeNotEqualTo(Date value) { this.LastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getLastSavedDateTimeBetween() { return LastSavedDateTimeBetween; } public PO_ShippingAddressQuery setLastSavedDateTimeBetween(ArrayList value) { this.LastSavedDateTimeBetween = value; return this; } public ArrayList getLastSavedDateTimeIn() { return LastSavedDateTimeIn; } public PO_ShippingAddressQuery setLastSavedDateTimeIn(ArrayList value) { this.LastSavedDateTimeIn = value; return this; } public String getAddressLine1() { return AddressLine1; } public PO_ShippingAddressQuery setAddressLine1(String value) { this.AddressLine1 = value; return this; } public String getAddressLine1StartsWith() { return AddressLine1StartsWith; } public PO_ShippingAddressQuery setAddressLine1StartsWith(String value) { this.AddressLine1StartsWith = value; return this; } public String getAddressLine1EndsWith() { return AddressLine1EndsWith; } public PO_ShippingAddressQuery setAddressLine1EndsWith(String value) { this.AddressLine1EndsWith = value; return this; } public String getAddressLine1Contains() { return AddressLine1Contains; } public PO_ShippingAddressQuery setAddressLine1Contains(String value) { this.AddressLine1Contains = value; return this; } public String getAddressLine1Like() { return AddressLine1Like; } public PO_ShippingAddressQuery setAddressLine1Like(String value) { this.AddressLine1Like = value; return this; } public ArrayList getAddressLine1Between() { return AddressLine1Between; } public PO_ShippingAddressQuery setAddressLine1Between(ArrayList value) { this.AddressLine1Between = value; return this; } public ArrayList getAddressLine1In() { return AddressLine1In; } public PO_ShippingAddressQuery setAddressLine1In(ArrayList value) { this.AddressLine1In = value; return this; } public String getAddressLine2() { return AddressLine2; } public PO_ShippingAddressQuery setAddressLine2(String value) { this.AddressLine2 = value; return this; } public String getAddressLine2StartsWith() { return AddressLine2StartsWith; } public PO_ShippingAddressQuery setAddressLine2StartsWith(String value) { this.AddressLine2StartsWith = value; return this; } public String getAddressLine2EndsWith() { return AddressLine2EndsWith; } public PO_ShippingAddressQuery setAddressLine2EndsWith(String value) { this.AddressLine2EndsWith = value; return this; } public String getAddressLine2Contains() { return AddressLine2Contains; } public PO_ShippingAddressQuery setAddressLine2Contains(String value) { this.AddressLine2Contains = value; return this; } public String getAddressLine2Like() { return AddressLine2Like; } public PO_ShippingAddressQuery setAddressLine2Like(String value) { this.AddressLine2Like = value; return this; } public ArrayList getAddressLine2Between() { return AddressLine2Between; } public PO_ShippingAddressQuery setAddressLine2Between(ArrayList value) { this.AddressLine2Between = value; return this; } public ArrayList getAddressLine2In() { return AddressLine2In; } public PO_ShippingAddressQuery setAddressLine2In(ArrayList value) { this.AddressLine2In = value; return this; } public String getAddressLine3() { return AddressLine3; } public PO_ShippingAddressQuery setAddressLine3(String value) { this.AddressLine3 = value; return this; } public String getAddressLine3StartsWith() { return AddressLine3StartsWith; } public PO_ShippingAddressQuery setAddressLine3StartsWith(String value) { this.AddressLine3StartsWith = value; return this; } public String getAddressLine3EndsWith() { return AddressLine3EndsWith; } public PO_ShippingAddressQuery setAddressLine3EndsWith(String value) { this.AddressLine3EndsWith = value; return this; } public String getAddressLine3Contains() { return AddressLine3Contains; } public PO_ShippingAddressQuery setAddressLine3Contains(String value) { this.AddressLine3Contains = value; return this; } public String getAddressLine3Like() { return AddressLine3Like; } public PO_ShippingAddressQuery setAddressLine3Like(String value) { this.AddressLine3Like = value; return this; } public ArrayList getAddressLine3Between() { return AddressLine3Between; } public PO_ShippingAddressQuery setAddressLine3Between(ArrayList value) { this.AddressLine3Between = value; return this; } public ArrayList getAddressLine3In() { return AddressLine3In; } public PO_ShippingAddressQuery setAddressLine3In(ArrayList value) { this.AddressLine3In = value; return this; } public String getAddressLine4() { return AddressLine4; } public PO_ShippingAddressQuery setAddressLine4(String value) { this.AddressLine4 = value; return this; } public String getAddressLine4StartsWith() { return AddressLine4StartsWith; } public PO_ShippingAddressQuery setAddressLine4StartsWith(String value) { this.AddressLine4StartsWith = value; return this; } public String getAddressLine4EndsWith() { return AddressLine4EndsWith; } public PO_ShippingAddressQuery setAddressLine4EndsWith(String value) { this.AddressLine4EndsWith = value; return this; } public String getAddressLine4Contains() { return AddressLine4Contains; } public PO_ShippingAddressQuery setAddressLine4Contains(String value) { this.AddressLine4Contains = value; return this; } public String getAddressLine4Like() { return AddressLine4Like; } public PO_ShippingAddressQuery setAddressLine4Like(String value) { this.AddressLine4Like = value; return this; } public ArrayList getAddressLine4Between() { return AddressLine4Between; } public PO_ShippingAddressQuery setAddressLine4Between(ArrayList value) { this.AddressLine4Between = value; return this; } public ArrayList getAddressLine4In() { return AddressLine4In; } public PO_ShippingAddressQuery setAddressLine4In(ArrayList value) { this.AddressLine4In = value; return this; } public String getCountry() { return Country; } public PO_ShippingAddressQuery setCountry(String value) { this.Country = value; return this; } public String getCountryStartsWith() { return CountryStartsWith; } public PO_ShippingAddressQuery setCountryStartsWith(String value) { this.CountryStartsWith = value; return this; } public String getCountryEndsWith() { return CountryEndsWith; } public PO_ShippingAddressQuery setCountryEndsWith(String value) { this.CountryEndsWith = value; return this; } public String getCountryContains() { return CountryContains; } public PO_ShippingAddressQuery setCountryContains(String value) { this.CountryContains = value; return this; } public String getCountryLike() { return CountryLike; } public PO_ShippingAddressQuery setCountryLike(String value) { this.CountryLike = value; return this; } public ArrayList getCountryBetween() { return CountryBetween; } public PO_ShippingAddressQuery setCountryBetween(ArrayList value) { this.CountryBetween = value; return this; } public ArrayList getCountryIn() { return CountryIn; } public PO_ShippingAddressQuery setCountryIn(ArrayList value) { this.CountryIn = value; return this; } public String getPostcode() { return Postcode; } public PO_ShippingAddressQuery setPostcode(String value) { this.Postcode = value; return this; } public String getPostcodeStartsWith() { return PostcodeStartsWith; } public PO_ShippingAddressQuery setPostcodeStartsWith(String value) { this.PostcodeStartsWith = value; return this; } public String getPostcodeEndsWith() { return PostcodeEndsWith; } public PO_ShippingAddressQuery setPostcodeEndsWith(String value) { this.PostcodeEndsWith = value; return this; } public String getPostcodeContains() { return PostcodeContains; } public PO_ShippingAddressQuery setPostcodeContains(String value) { this.PostcodeContains = value; return this; } public String getPostcodeLike() { return PostcodeLike; } public PO_ShippingAddressQuery setPostcodeLike(String value) { this.PostcodeLike = value; return this; } public ArrayList getPostcodeBetween() { return PostcodeBetween; } public PO_ShippingAddressQuery setPostcodeBetween(ArrayList value) { this.PostcodeBetween = value; return this; } public ArrayList getPostcodeIn() { return PostcodeIn; } public PO_ShippingAddressQuery setPostcodeIn(ArrayList value) { this.PostcodeIn = value; return this; } public String getContactName() { return ContactName; } public PO_ShippingAddressQuery setContactName(String value) { this.ContactName = value; return this; } public String getContactNameStartsWith() { return ContactNameStartsWith; } public PO_ShippingAddressQuery setContactNameStartsWith(String value) { this.ContactNameStartsWith = value; return this; } public String getContactNameEndsWith() { return ContactNameEndsWith; } public PO_ShippingAddressQuery setContactNameEndsWith(String value) { this.ContactNameEndsWith = value; return this; } public String getContactNameContains() { return ContactNameContains; } public PO_ShippingAddressQuery setContactNameContains(String value) { this.ContactNameContains = value; return this; } public String getContactNameLike() { return ContactNameLike; } public PO_ShippingAddressQuery setContactNameLike(String value) { this.ContactNameLike = value; return this; } public ArrayList getContactNameBetween() { return ContactNameBetween; } public PO_ShippingAddressQuery setContactNameBetween(ArrayList value) { this.ContactNameBetween = value; return this; } public ArrayList getContactNameIn() { return ContactNameIn; } public PO_ShippingAddressQuery setContactNameIn(ArrayList value) { this.ContactNameIn = value; return this; } public String getPhone() { return Phone; } public PO_ShippingAddressQuery setPhone(String value) { this.Phone = value; return this; } public String getPhoneStartsWith() { return PhoneStartsWith; } public PO_ShippingAddressQuery setPhoneStartsWith(String value) { this.PhoneStartsWith = value; return this; } public String getPhoneEndsWith() { return PhoneEndsWith; } public PO_ShippingAddressQuery setPhoneEndsWith(String value) { this.PhoneEndsWith = value; return this; } public String getPhoneContains() { return PhoneContains; } public PO_ShippingAddressQuery setPhoneContains(String value) { this.PhoneContains = value; return this; } public String getPhoneLike() { return PhoneLike; } public PO_ShippingAddressQuery setPhoneLike(String value) { this.PhoneLike = value; return this; } public ArrayList getPhoneBetween() { return PhoneBetween; } public PO_ShippingAddressQuery setPhoneBetween(ArrayList value) { this.PhoneBetween = value; return this; } public ArrayList getPhoneIn() { return PhoneIn; } public PO_ShippingAddressQuery setPhoneIn(ArrayList value) { this.PhoneIn = value; return this; } public String getFax() { return Fax; } public PO_ShippingAddressQuery setFax(String value) { this.Fax = value; return this; } public String getFaxStartsWith() { return FaxStartsWith; } public PO_ShippingAddressQuery setFaxStartsWith(String value) { this.FaxStartsWith = value; return this; } public String getFaxEndsWith() { return FaxEndsWith; } public PO_ShippingAddressQuery setFaxEndsWith(String value) { this.FaxEndsWith = value; return this; } public String getFaxContains() { return FaxContains; } public PO_ShippingAddressQuery setFaxContains(String value) { this.FaxContains = value; return this; } public String getFaxLike() { return FaxLike; } public PO_ShippingAddressQuery setFaxLike(String value) { this.FaxLike = value; return this; } public ArrayList getFaxBetween() { return FaxBetween; } public PO_ShippingAddressQuery setFaxBetween(ArrayList value) { this.FaxBetween = value; return this; } public ArrayList getFaxIn() { return FaxIn; } public PO_ShippingAddressQuery setFaxIn(ArrayList value) { this.FaxIn = value; return this; } public String getSpare1() { return Spare1; } public PO_ShippingAddressQuery setSpare1(String value) { this.Spare1 = value; return this; } public String getSpare1StartsWith() { return Spare1StartsWith; } public PO_ShippingAddressQuery setSpare1StartsWith(String value) { this.Spare1StartsWith = value; return this; } public String getSpare1EndsWith() { return Spare1EndsWith; } public PO_ShippingAddressQuery setSpare1EndsWith(String value) { this.Spare1EndsWith = value; return this; } public String getSpare1Contains() { return Spare1Contains; } public PO_ShippingAddressQuery setSpare1Contains(String value) { this.Spare1Contains = value; return this; } public String getSpare1Like() { return Spare1Like; } public PO_ShippingAddressQuery setSpare1Like(String value) { this.Spare1Like = value; return this; } public ArrayList getSpare1Between() { return Spare1Between; } public PO_ShippingAddressQuery setSpare1Between(ArrayList value) { this.Spare1Between = value; return this; } public ArrayList getSpare1In() { return Spare1In; } public PO_ShippingAddressQuery setSpare1In(ArrayList value) { this.Spare1In = value; return this; } public String getSpare2() { return Spare2; } public PO_ShippingAddressQuery setSpare2(String value) { this.Spare2 = value; return this; } public String getSpare2StartsWith() { return Spare2StartsWith; } public PO_ShippingAddressQuery setSpare2StartsWith(String value) { this.Spare2StartsWith = value; return this; } public String getSpare2EndsWith() { return Spare2EndsWith; } public PO_ShippingAddressQuery setSpare2EndsWith(String value) { this.Spare2EndsWith = value; return this; } public String getSpare2Contains() { return Spare2Contains; } public PO_ShippingAddressQuery setSpare2Contains(String value) { this.Spare2Contains = value; return this; } public String getSpare2Like() { return Spare2Like; } public PO_ShippingAddressQuery setSpare2Like(String value) { this.Spare2Like = value; return this; } public ArrayList getSpare2Between() { return Spare2Between; } public PO_ShippingAddressQuery setSpare2Between(ArrayList value) { this.Spare2Between = value; return this; } public ArrayList getSpare2In() { return Spare2In; } public PO_ShippingAddressQuery setSpare2In(ArrayList value) { this.Spare2In = value; return this; } public String getSpare3() { return Spare3; } public PO_ShippingAddressQuery setSpare3(String value) { this.Spare3 = value; return this; } public String getSpare3StartsWith() { return Spare3StartsWith; } public PO_ShippingAddressQuery setSpare3StartsWith(String value) { this.Spare3StartsWith = value; return this; } public String getSpare3EndsWith() { return Spare3EndsWith; } public PO_ShippingAddressQuery setSpare3EndsWith(String value) { this.Spare3EndsWith = value; return this; } public String getSpare3Contains() { return Spare3Contains; } public PO_ShippingAddressQuery setSpare3Contains(String value) { this.Spare3Contains = value; return this; } public String getSpare3Like() { return Spare3Like; } public PO_ShippingAddressQuery setSpare3Like(String value) { this.Spare3Like = value; return this; } public ArrayList getSpare3Between() { return Spare3Between; } public PO_ShippingAddressQuery setSpare3Between(ArrayList value) { this.Spare3Between = value; return this; } public ArrayList getSpare3In() { return Spare3In; } public PO_ShippingAddressQuery setSpare3In(ArrayList value) { this.Spare3In = value; return this; } public String getSpare4() { return Spare4; } public PO_ShippingAddressQuery setSpare4(String value) { this.Spare4 = value; return this; } public String getSpare4StartsWith() { return Spare4StartsWith; } public PO_ShippingAddressQuery setSpare4StartsWith(String value) { this.Spare4StartsWith = value; return this; } public String getSpare4EndsWith() { return Spare4EndsWith; } public PO_ShippingAddressQuery setSpare4EndsWith(String value) { this.Spare4EndsWith = value; return this; } public String getSpare4Contains() { return Spare4Contains; } public PO_ShippingAddressQuery setSpare4Contains(String value) { this.Spare4Contains = value; return this; } public String getSpare4Like() { return Spare4Like; } public PO_ShippingAddressQuery setSpare4Like(String value) { this.Spare4Like = value; return this; } public ArrayList getSpare4Between() { return Spare4Between; } public PO_ShippingAddressQuery setSpare4Between(ArrayList value) { this.Spare4Between = value; return this; } public ArrayList getSpare4In() { return Spare4In; } public PO_ShippingAddressQuery setSpare4In(ArrayList value) { this.Spare4In = value; return this; } public String getSpare5() { return Spare5; } public PO_ShippingAddressQuery setSpare5(String value) { this.Spare5 = value; return this; } public String getSpare5StartsWith() { return Spare5StartsWith; } public PO_ShippingAddressQuery setSpare5StartsWith(String value) { this.Spare5StartsWith = value; return this; } public String getSpare5EndsWith() { return Spare5EndsWith; } public PO_ShippingAddressQuery setSpare5EndsWith(String value) { this.Spare5EndsWith = value; return this; } public String getSpare5Contains() { return Spare5Contains; } public PO_ShippingAddressQuery setSpare5Contains(String value) { this.Spare5Contains = value; return this; } public String getSpare5Like() { return Spare5Like; } public PO_ShippingAddressQuery setSpare5Like(String value) { this.Spare5Like = value; return this; } public ArrayList getSpare5Between() { return Spare5Between; } public PO_ShippingAddressQuery setSpare5Between(ArrayList value) { this.Spare5Between = value; return this; } public ArrayList getSpare5In() { return Spare5In; } public PO_ShippingAddressQuery setSpare5In(ArrayList value) { this.Spare5In = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class PO_WorkflowLinesQuery extends QueryDb implements IReturn> { public String RecID = null; public String RecIDStartsWith = null; public String RecIDEndsWith = null; public String RecIDContains = null; public String RecIDLike = null; public ArrayList RecIDBetween = null; public ArrayList RecIDIn = null; public String PO_Workflows_RecID = null; public String PO_Workflows_RecIDStartsWith = null; public String PO_Workflows_RecIDEndsWith = null; public String PO_Workflows_RecIDContains = null; public String PO_Workflows_RecIDLike = null; public ArrayList PO_Workflows_RecIDBetween = null; public ArrayList PO_Workflows_RecIDIn = null; public Integer StatusValue = null; public Integer StatusValueGreaterThanOrEqualTo = null; public Integer StatusValueGreaterThan = null; public Integer StatusValueLessThan = null; public Integer StatusValueLessThanOrEqualTo = null; public Integer StatusValueNotEqualTo = null; public ArrayList StatusValueBetween = null; public ArrayList StatusValueIn = null; public Integer NextStatusValue = null; public Integer NextStatusValueGreaterThanOrEqualTo = null; public Integer NextStatusValueGreaterThan = null; public Integer NextStatusValueLessThan = null; public Integer NextStatusValueLessThanOrEqualTo = null; public Integer NextStatusValueNotEqualTo = null; public ArrayList NextStatusValueBetween = null; public ArrayList NextStatusValueIn = null; public Date LastSavedDateTime = null; public Date LastSavedDateTimeGreaterThanOrEqualTo = null; public Date LastSavedDateTimeGreaterThan = null; public Date LastSavedDateTimeLessThan = null; public Date LastSavedDateTimeLessThanOrEqualTo = null; public Date LastSavedDateTimeNotEqualTo = null; public ArrayList LastSavedDateTimeBetween = null; public ArrayList LastSavedDateTimeIn = null; public String getRecID() { return RecID; } public PO_WorkflowLinesQuery setRecID(String value) { this.RecID = value; return this; } public String getRecIDStartsWith() { return RecIDStartsWith; } public PO_WorkflowLinesQuery setRecIDStartsWith(String value) { this.RecIDStartsWith = value; return this; } public String getRecIDEndsWith() { return RecIDEndsWith; } public PO_WorkflowLinesQuery setRecIDEndsWith(String value) { this.RecIDEndsWith = value; return this; } public String getRecIDContains() { return RecIDContains; } public PO_WorkflowLinesQuery setRecIDContains(String value) { this.RecIDContains = value; return this; } public String getRecIDLike() { return RecIDLike; } public PO_WorkflowLinesQuery setRecIDLike(String value) { this.RecIDLike = value; return this; } public ArrayList getRecIDBetween() { return RecIDBetween; } public PO_WorkflowLinesQuery setRecIDBetween(ArrayList value) { this.RecIDBetween = value; return this; } public ArrayList getRecIDIn() { return RecIDIn; } public PO_WorkflowLinesQuery setRecIDIn(ArrayList value) { this.RecIDIn = value; return this; } public String getPoWorkflowsRecID() { return PO_Workflows_RecID; } public PO_WorkflowLinesQuery setPoWorkflowsRecID(String value) { this.PO_Workflows_RecID = value; return this; } public String getPoWorkflowsRecIDStartsWith() { return PO_Workflows_RecIDStartsWith; } public PO_WorkflowLinesQuery setPoWorkflowsRecIDStartsWith(String value) { this.PO_Workflows_RecIDStartsWith = value; return this; } public String getPoWorkflowsRecIDEndsWith() { return PO_Workflows_RecIDEndsWith; } public PO_WorkflowLinesQuery setPoWorkflowsRecIDEndsWith(String value) { this.PO_Workflows_RecIDEndsWith = value; return this; } public String getPoWorkflowsRecIDContains() { return PO_Workflows_RecIDContains; } public PO_WorkflowLinesQuery setPoWorkflowsRecIDContains(String value) { this.PO_Workflows_RecIDContains = value; return this; } public String getPoWorkflowsRecIDLike() { return PO_Workflows_RecIDLike; } public PO_WorkflowLinesQuery setPoWorkflowsRecIDLike(String value) { this.PO_Workflows_RecIDLike = value; return this; } public ArrayList getPoWorkflowsRecIDBetween() { return PO_Workflows_RecIDBetween; } public PO_WorkflowLinesQuery setPoWorkflowsRecIDBetween(ArrayList value) { this.PO_Workflows_RecIDBetween = value; return this; } public ArrayList getPoWorkflowsRecIDIn() { return PO_Workflows_RecIDIn; } public PO_WorkflowLinesQuery setPoWorkflowsRecIDIn(ArrayList value) { this.PO_Workflows_RecIDIn = value; return this; } public Integer getStatusValue() { return StatusValue; } public PO_WorkflowLinesQuery setStatusValue(Integer value) { this.StatusValue = value; return this; } public Integer getStatusValueGreaterThanOrEqualTo() { return StatusValueGreaterThanOrEqualTo; } public PO_WorkflowLinesQuery setStatusValueGreaterThanOrEqualTo(Integer value) { this.StatusValueGreaterThanOrEqualTo = value; return this; } public Integer getStatusValueGreaterThan() { return StatusValueGreaterThan; } public PO_WorkflowLinesQuery setStatusValueGreaterThan(Integer value) { this.StatusValueGreaterThan = value; return this; } public Integer getStatusValueLessThan() { return StatusValueLessThan; } public PO_WorkflowLinesQuery setStatusValueLessThan(Integer value) { this.StatusValueLessThan = value; return this; } public Integer getStatusValueLessThanOrEqualTo() { return StatusValueLessThanOrEqualTo; } public PO_WorkflowLinesQuery setStatusValueLessThanOrEqualTo(Integer value) { this.StatusValueLessThanOrEqualTo = value; return this; } public Integer getStatusValueNotEqualTo() { return StatusValueNotEqualTo; } public PO_WorkflowLinesQuery setStatusValueNotEqualTo(Integer value) { this.StatusValueNotEqualTo = value; return this; } public ArrayList getStatusValueBetween() { return StatusValueBetween; } public PO_WorkflowLinesQuery setStatusValueBetween(ArrayList value) { this.StatusValueBetween = value; return this; } public ArrayList getStatusValueIn() { return StatusValueIn; } public PO_WorkflowLinesQuery setStatusValueIn(ArrayList value) { this.StatusValueIn = value; return this; } public Integer getNextStatusValue() { return NextStatusValue; } public PO_WorkflowLinesQuery setNextStatusValue(Integer value) { this.NextStatusValue = value; return this; } public Integer getNextStatusValueGreaterThanOrEqualTo() { return NextStatusValueGreaterThanOrEqualTo; } public PO_WorkflowLinesQuery setNextStatusValueGreaterThanOrEqualTo(Integer value) { this.NextStatusValueGreaterThanOrEqualTo = value; return this; } public Integer getNextStatusValueGreaterThan() { return NextStatusValueGreaterThan; } public PO_WorkflowLinesQuery setNextStatusValueGreaterThan(Integer value) { this.NextStatusValueGreaterThan = value; return this; } public Integer getNextStatusValueLessThan() { return NextStatusValueLessThan; } public PO_WorkflowLinesQuery setNextStatusValueLessThan(Integer value) { this.NextStatusValueLessThan = value; return this; } public Integer getNextStatusValueLessThanOrEqualTo() { return NextStatusValueLessThanOrEqualTo; } public PO_WorkflowLinesQuery setNextStatusValueLessThanOrEqualTo(Integer value) { this.NextStatusValueLessThanOrEqualTo = value; return this; } public Integer getNextStatusValueNotEqualTo() { return NextStatusValueNotEqualTo; } public PO_WorkflowLinesQuery setNextStatusValueNotEqualTo(Integer value) { this.NextStatusValueNotEqualTo = value; return this; } public ArrayList getNextStatusValueBetween() { return NextStatusValueBetween; } public PO_WorkflowLinesQuery setNextStatusValueBetween(ArrayList value) { this.NextStatusValueBetween = value; return this; } public ArrayList getNextStatusValueIn() { return NextStatusValueIn; } public PO_WorkflowLinesQuery setNextStatusValueIn(ArrayList value) { this.NextStatusValueIn = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public PO_WorkflowLinesQuery setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getLastSavedDateTimeGreaterThanOrEqualTo() { return LastSavedDateTimeGreaterThanOrEqualTo; } public PO_WorkflowLinesQuery setLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.LastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeGreaterThan() { return LastSavedDateTimeGreaterThan; } public PO_WorkflowLinesQuery setLastSavedDateTimeGreaterThan(Date value) { this.LastSavedDateTimeGreaterThan = value; return this; } public Date getLastSavedDateTimeLessThan() { return LastSavedDateTimeLessThan; } public PO_WorkflowLinesQuery setLastSavedDateTimeLessThan(Date value) { this.LastSavedDateTimeLessThan = value; return this; } public Date getLastSavedDateTimeLessThanOrEqualTo() { return LastSavedDateTimeLessThanOrEqualTo; } public PO_WorkflowLinesQuery setLastSavedDateTimeLessThanOrEqualTo(Date value) { this.LastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeNotEqualTo() { return LastSavedDateTimeNotEqualTo; } public PO_WorkflowLinesQuery setLastSavedDateTimeNotEqualTo(Date value) { this.LastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getLastSavedDateTimeBetween() { return LastSavedDateTimeBetween; } public PO_WorkflowLinesQuery setLastSavedDateTimeBetween(ArrayList value) { this.LastSavedDateTimeBetween = value; return this; } public ArrayList getLastSavedDateTimeIn() { return LastSavedDateTimeIn; } public PO_WorkflowLinesQuery setLastSavedDateTimeIn(ArrayList value) { this.LastSavedDateTimeIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class PO_WorkflowsQuery extends QueryDb implements IReturn> { public String RecID = null; public String RecIDStartsWith = null; public String RecIDEndsWith = null; public String RecIDContains = null; public String RecIDLike = null; public ArrayList RecIDBetween = null; public ArrayList RecIDIn = null; public String Name = null; public String NameStartsWith = null; public String NameEndsWith = null; public String NameContains = null; public String NameLike = null; public ArrayList NameBetween = null; public ArrayList NameIn = null; public String Description = null; public String DescriptionStartsWith = null; public String DescriptionEndsWith = null; public String DescriptionContains = null; public String DescriptionLike = null; public ArrayList DescriptionBetween = null; public ArrayList DescriptionIn = null; public Date LastSavedDateTime = null; public Date LastSavedDateTimeGreaterThanOrEqualTo = null; public Date LastSavedDateTimeGreaterThan = null; public Date LastSavedDateTimeLessThan = null; public Date LastSavedDateTimeLessThanOrEqualTo = null; public Date LastSavedDateTimeNotEqualTo = null; public ArrayList LastSavedDateTimeBetween = null; public ArrayList LastSavedDateTimeIn = null; public String getRecID() { return RecID; } public PO_WorkflowsQuery setRecID(String value) { this.RecID = value; return this; } public String getRecIDStartsWith() { return RecIDStartsWith; } public PO_WorkflowsQuery setRecIDStartsWith(String value) { this.RecIDStartsWith = value; return this; } public String getRecIDEndsWith() { return RecIDEndsWith; } public PO_WorkflowsQuery setRecIDEndsWith(String value) { this.RecIDEndsWith = value; return this; } public String getRecIDContains() { return RecIDContains; } public PO_WorkflowsQuery setRecIDContains(String value) { this.RecIDContains = value; return this; } public String getRecIDLike() { return RecIDLike; } public PO_WorkflowsQuery setRecIDLike(String value) { this.RecIDLike = value; return this; } public ArrayList getRecIDBetween() { return RecIDBetween; } public PO_WorkflowsQuery setRecIDBetween(ArrayList value) { this.RecIDBetween = value; return this; } public ArrayList getRecIDIn() { return RecIDIn; } public PO_WorkflowsQuery setRecIDIn(ArrayList value) { this.RecIDIn = value; return this; } public String getName() { return Name; } public PO_WorkflowsQuery setName(String value) { this.Name = value; return this; } public String getNameStartsWith() { return NameStartsWith; } public PO_WorkflowsQuery setNameStartsWith(String value) { this.NameStartsWith = value; return this; } public String getNameEndsWith() { return NameEndsWith; } public PO_WorkflowsQuery setNameEndsWith(String value) { this.NameEndsWith = value; return this; } public String getNameContains() { return NameContains; } public PO_WorkflowsQuery setNameContains(String value) { this.NameContains = value; return this; } public String getNameLike() { return NameLike; } public PO_WorkflowsQuery setNameLike(String value) { this.NameLike = value; return this; } public ArrayList getNameBetween() { return NameBetween; } public PO_WorkflowsQuery setNameBetween(ArrayList value) { this.NameBetween = value; return this; } public ArrayList getNameIn() { return NameIn; } public PO_WorkflowsQuery setNameIn(ArrayList value) { this.NameIn = value; return this; } public String getDescription() { return Description; } public PO_WorkflowsQuery setDescription(String value) { this.Description = value; return this; } public String getDescriptionStartsWith() { return DescriptionStartsWith; } public PO_WorkflowsQuery setDescriptionStartsWith(String value) { this.DescriptionStartsWith = value; return this; } public String getDescriptionEndsWith() { return DescriptionEndsWith; } public PO_WorkflowsQuery setDescriptionEndsWith(String value) { this.DescriptionEndsWith = value; return this; } public String getDescriptionContains() { return DescriptionContains; } public PO_WorkflowsQuery setDescriptionContains(String value) { this.DescriptionContains = value; return this; } public String getDescriptionLike() { return DescriptionLike; } public PO_WorkflowsQuery setDescriptionLike(String value) { this.DescriptionLike = value; return this; } public ArrayList getDescriptionBetween() { return DescriptionBetween; } public PO_WorkflowsQuery setDescriptionBetween(ArrayList value) { this.DescriptionBetween = value; return this; } public ArrayList getDescriptionIn() { return DescriptionIn; } public PO_WorkflowsQuery setDescriptionIn(ArrayList value) { this.DescriptionIn = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public PO_WorkflowsQuery setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getLastSavedDateTimeGreaterThanOrEqualTo() { return LastSavedDateTimeGreaterThanOrEqualTo; } public PO_WorkflowsQuery setLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.LastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeGreaterThan() { return LastSavedDateTimeGreaterThan; } public PO_WorkflowsQuery setLastSavedDateTimeGreaterThan(Date value) { this.LastSavedDateTimeGreaterThan = value; return this; } public Date getLastSavedDateTimeLessThan() { return LastSavedDateTimeLessThan; } public PO_WorkflowsQuery setLastSavedDateTimeLessThan(Date value) { this.LastSavedDateTimeLessThan = value; return this; } public Date getLastSavedDateTimeLessThanOrEqualTo() { return LastSavedDateTimeLessThanOrEqualTo; } public PO_WorkflowsQuery setLastSavedDateTimeLessThanOrEqualTo(Date value) { this.LastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeNotEqualTo() { return LastSavedDateTimeNotEqualTo; } public PO_WorkflowsQuery setLastSavedDateTimeNotEqualTo(Date value) { this.LastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getLastSavedDateTimeBetween() { return LastSavedDateTimeBetween; } public PO_WorkflowsQuery setLastSavedDateTimeBetween(ArrayList value) { this.LastSavedDateTimeBetween = value; return this; } public ArrayList getLastSavedDateTimeIn() { return LastSavedDateTimeIn; } public PO_WorkflowsQuery setLastSavedDateTimeIn(ArrayList value) { this.LastSavedDateTimeIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class PR_ClassificationPricingQuery extends QueryDb implements IReturn> { public String RecID = null; public String RecIDStartsWith = null; public String RecIDEndsWith = null; public String RecIDContains = null; public String RecIDLike = null; public ArrayList RecIDBetween = null; public ArrayList RecIDIn = null; public String DB_Classification_RecID = null; public String DB_Classification_RecIDStartsWith = null; public String DB_Classification_RecIDEndsWith = null; public String DB_Classification_RecIDContains = null; public String DB_Classification_RecIDLike = null; public ArrayList DB_Classification_RecIDBetween = null; public ArrayList DB_Classification_RecIDIn = null; public String IN_Classification_RecID = null; public String IN_Classification_RecIDStartsWith = null; public String IN_Classification_RecIDEndsWith = null; public String IN_Classification_RecIDContains = null; public String IN_Classification_RecIDLike = null; public ArrayList IN_Classification_RecIDBetween = null; public ArrayList IN_Classification_RecIDIn = null; public Short Source = null; public Short SourceGreaterThanOrEqualTo = null; public Short SourceGreaterThan = null; public Short SourceLessThan = null; public Short SourceLessThanOrEqualTo = null; public Short SourceNotEqualTo = null; public ArrayList SourceBetween = null; public ArrayList SourceIn = null; public Short Mode = null; public Short ModeGreaterThanOrEqualTo = null; public Short ModeGreaterThan = null; public Short ModeLessThan = null; public Short ModeLessThanOrEqualTo = null; public Short ModeNotEqualTo = null; public ArrayList ModeBetween = null; public ArrayList ModeIn = null; public BigDecimal Amount = null; public BigDecimal AmountGreaterThanOrEqualTo = null; public BigDecimal AmountGreaterThan = null; public BigDecimal AmountLessThan = null; public BigDecimal AmountLessThanOrEqualTo = null; public BigDecimal AmountNotEqualTo = null; public ArrayList AmountBetween = null; public ArrayList AmountIn = null; public Date StartDate = null; public Date StartDateGreaterThanOrEqualTo = null; public Date StartDateGreaterThan = null; public Date StartDateLessThan = null; public Date StartDateLessThanOrEqualTo = null; public Date StartDateNotEqualTo = null; public ArrayList StartDateBetween = null; public ArrayList StartDateIn = null; public Date EndDate = null; public Date EndDateGreaterThanOrEqualTo = null; public Date EndDateGreaterThan = null; public Date EndDateLessThan = null; public Date EndDateLessThanOrEqualTo = null; public Date EndDateNotEqualTo = null; public ArrayList EndDateBetween = null; public ArrayList EndDateIn = null; public Boolean UseQuantityBreak = null; public BigDecimal QuantityBreak = null; public BigDecimal QuantityBreakGreaterThanOrEqualTo = null; public BigDecimal QuantityBreakGreaterThan = null; public BigDecimal QuantityBreakLessThan = null; public BigDecimal QuantityBreakLessThanOrEqualTo = null; public BigDecimal QuantityBreakNotEqualTo = null; public ArrayList QuantityBreakBetween = null; public ArrayList QuantityBreakIn = null; public ArrayList RowHash = null; public Integer ItemNo = null; public Integer ItemNoGreaterThanOrEqualTo = null; public Integer ItemNoGreaterThan = null; public Integer ItemNoLessThan = null; public Integer ItemNoLessThanOrEqualTo = null; public Integer ItemNoNotEqualTo = null; public ArrayList ItemNoBetween = null; public ArrayList ItemNoIn = null; public String getRecID() { return RecID; } public PR_ClassificationPricingQuery setRecID(String value) { this.RecID = value; return this; } public String getRecIDStartsWith() { return RecIDStartsWith; } public PR_ClassificationPricingQuery setRecIDStartsWith(String value) { this.RecIDStartsWith = value; return this; } public String getRecIDEndsWith() { return RecIDEndsWith; } public PR_ClassificationPricingQuery setRecIDEndsWith(String value) { this.RecIDEndsWith = value; return this; } public String getRecIDContains() { return RecIDContains; } public PR_ClassificationPricingQuery setRecIDContains(String value) { this.RecIDContains = value; return this; } public String getRecIDLike() { return RecIDLike; } public PR_ClassificationPricingQuery setRecIDLike(String value) { this.RecIDLike = value; return this; } public ArrayList getRecIDBetween() { return RecIDBetween; } public PR_ClassificationPricingQuery setRecIDBetween(ArrayList value) { this.RecIDBetween = value; return this; } public ArrayList getRecIDIn() { return RecIDIn; } public PR_ClassificationPricingQuery setRecIDIn(ArrayList value) { this.RecIDIn = value; return this; } public String getDbClassificationRecID() { return DB_Classification_RecID; } public PR_ClassificationPricingQuery setDbClassificationRecID(String value) { this.DB_Classification_RecID = value; return this; } public String getDbClassificationRecIDStartsWith() { return DB_Classification_RecIDStartsWith; } public PR_ClassificationPricingQuery setDbClassificationRecIDStartsWith(String value) { this.DB_Classification_RecIDStartsWith = value; return this; } public String getDbClassificationRecIDEndsWith() { return DB_Classification_RecIDEndsWith; } public PR_ClassificationPricingQuery setDbClassificationRecIDEndsWith(String value) { this.DB_Classification_RecIDEndsWith = value; return this; } public String getDbClassificationRecIDContains() { return DB_Classification_RecIDContains; } public PR_ClassificationPricingQuery setDbClassificationRecIDContains(String value) { this.DB_Classification_RecIDContains = value; return this; } public String getDbClassificationRecIDLike() { return DB_Classification_RecIDLike; } public PR_ClassificationPricingQuery setDbClassificationRecIDLike(String value) { this.DB_Classification_RecIDLike = value; return this; } public ArrayList getDbClassificationRecIDBetween() { return DB_Classification_RecIDBetween; } public PR_ClassificationPricingQuery setDbClassificationRecIDBetween(ArrayList value) { this.DB_Classification_RecIDBetween = value; return this; } public ArrayList getDbClassificationRecIDIn() { return DB_Classification_RecIDIn; } public PR_ClassificationPricingQuery setDbClassificationRecIDIn(ArrayList value) { this.DB_Classification_RecIDIn = value; return this; } public String getInClassificationRecID() { return IN_Classification_RecID; } public PR_ClassificationPricingQuery setInClassificationRecID(String value) { this.IN_Classification_RecID = value; return this; } public String getInClassificationRecIDStartsWith() { return IN_Classification_RecIDStartsWith; } public PR_ClassificationPricingQuery setInClassificationRecIDStartsWith(String value) { this.IN_Classification_RecIDStartsWith = value; return this; } public String getInClassificationRecIDEndsWith() { return IN_Classification_RecIDEndsWith; } public PR_ClassificationPricingQuery setInClassificationRecIDEndsWith(String value) { this.IN_Classification_RecIDEndsWith = value; return this; } public String getInClassificationRecIDContains() { return IN_Classification_RecIDContains; } public PR_ClassificationPricingQuery setInClassificationRecIDContains(String value) { this.IN_Classification_RecIDContains = value; return this; } public String getInClassificationRecIDLike() { return IN_Classification_RecIDLike; } public PR_ClassificationPricingQuery setInClassificationRecIDLike(String value) { this.IN_Classification_RecIDLike = value; return this; } public ArrayList getInClassificationRecIDBetween() { return IN_Classification_RecIDBetween; } public PR_ClassificationPricingQuery setInClassificationRecIDBetween(ArrayList value) { this.IN_Classification_RecIDBetween = value; return this; } public ArrayList getInClassificationRecIDIn() { return IN_Classification_RecIDIn; } public PR_ClassificationPricingQuery setInClassificationRecIDIn(ArrayList value) { this.IN_Classification_RecIDIn = value; return this; } public Short getSource() { return Source; } public PR_ClassificationPricingQuery setSource(Short value) { this.Source = value; return this; } public Short getSourceGreaterThanOrEqualTo() { return SourceGreaterThanOrEqualTo; } public PR_ClassificationPricingQuery setSourceGreaterThanOrEqualTo(Short value) { this.SourceGreaterThanOrEqualTo = value; return this; } public Short getSourceGreaterThan() { return SourceGreaterThan; } public PR_ClassificationPricingQuery setSourceGreaterThan(Short value) { this.SourceGreaterThan = value; return this; } public Short getSourceLessThan() { return SourceLessThan; } public PR_ClassificationPricingQuery setSourceLessThan(Short value) { this.SourceLessThan = value; return this; } public Short getSourceLessThanOrEqualTo() { return SourceLessThanOrEqualTo; } public PR_ClassificationPricingQuery setSourceLessThanOrEqualTo(Short value) { this.SourceLessThanOrEqualTo = value; return this; } public Short getSourceNotEqualTo() { return SourceNotEqualTo; } public PR_ClassificationPricingQuery setSourceNotEqualTo(Short value) { this.SourceNotEqualTo = value; return this; } public ArrayList getSourceBetween() { return SourceBetween; } public PR_ClassificationPricingQuery setSourceBetween(ArrayList value) { this.SourceBetween = value; return this; } public ArrayList getSourceIn() { return SourceIn; } public PR_ClassificationPricingQuery setSourceIn(ArrayList value) { this.SourceIn = value; return this; } public Short getMode() { return Mode; } public PR_ClassificationPricingQuery setMode(Short value) { this.Mode = value; return this; } public Short getModeGreaterThanOrEqualTo() { return ModeGreaterThanOrEqualTo; } public PR_ClassificationPricingQuery setModeGreaterThanOrEqualTo(Short value) { this.ModeGreaterThanOrEqualTo = value; return this; } public Short getModeGreaterThan() { return ModeGreaterThan; } public PR_ClassificationPricingQuery setModeGreaterThan(Short value) { this.ModeGreaterThan = value; return this; } public Short getModeLessThan() { return ModeLessThan; } public PR_ClassificationPricingQuery setModeLessThan(Short value) { this.ModeLessThan = value; return this; } public Short getModeLessThanOrEqualTo() { return ModeLessThanOrEqualTo; } public PR_ClassificationPricingQuery setModeLessThanOrEqualTo(Short value) { this.ModeLessThanOrEqualTo = value; return this; } public Short getModeNotEqualTo() { return ModeNotEqualTo; } public PR_ClassificationPricingQuery setModeNotEqualTo(Short value) { this.ModeNotEqualTo = value; return this; } public ArrayList getModeBetween() { return ModeBetween; } public PR_ClassificationPricingQuery setModeBetween(ArrayList value) { this.ModeBetween = value; return this; } public ArrayList getModeIn() { return ModeIn; } public PR_ClassificationPricingQuery setModeIn(ArrayList value) { this.ModeIn = value; return this; } public BigDecimal getAmount() { return Amount; } public PR_ClassificationPricingQuery setAmount(BigDecimal value) { this.Amount = value; return this; } public BigDecimal getAmountGreaterThanOrEqualTo() { return AmountGreaterThanOrEqualTo; } public PR_ClassificationPricingQuery setAmountGreaterThanOrEqualTo(BigDecimal value) { this.AmountGreaterThanOrEqualTo = value; return this; } public BigDecimal getAmountGreaterThan() { return AmountGreaterThan; } public PR_ClassificationPricingQuery setAmountGreaterThan(BigDecimal value) { this.AmountGreaterThan = value; return this; } public BigDecimal getAmountLessThan() { return AmountLessThan; } public PR_ClassificationPricingQuery setAmountLessThan(BigDecimal value) { this.AmountLessThan = value; return this; } public BigDecimal getAmountLessThanOrEqualTo() { return AmountLessThanOrEqualTo; } public PR_ClassificationPricingQuery setAmountLessThanOrEqualTo(BigDecimal value) { this.AmountLessThanOrEqualTo = value; return this; } public BigDecimal getAmountNotEqualTo() { return AmountNotEqualTo; } public PR_ClassificationPricingQuery setAmountNotEqualTo(BigDecimal value) { this.AmountNotEqualTo = value; return this; } public ArrayList getAmountBetween() { return AmountBetween; } public PR_ClassificationPricingQuery setAmountBetween(ArrayList value) { this.AmountBetween = value; return this; } public ArrayList getAmountIn() { return AmountIn; } public PR_ClassificationPricingQuery setAmountIn(ArrayList value) { this.AmountIn = value; return this; } public Date getStartDate() { return StartDate; } public PR_ClassificationPricingQuery setStartDate(Date value) { this.StartDate = value; return this; } public Date getStartDateGreaterThanOrEqualTo() { return StartDateGreaterThanOrEqualTo; } public PR_ClassificationPricingQuery setStartDateGreaterThanOrEqualTo(Date value) { this.StartDateGreaterThanOrEqualTo = value; return this; } public Date getStartDateGreaterThan() { return StartDateGreaterThan; } public PR_ClassificationPricingQuery setStartDateGreaterThan(Date value) { this.StartDateGreaterThan = value; return this; } public Date getStartDateLessThan() { return StartDateLessThan; } public PR_ClassificationPricingQuery setStartDateLessThan(Date value) { this.StartDateLessThan = value; return this; } public Date getStartDateLessThanOrEqualTo() { return StartDateLessThanOrEqualTo; } public PR_ClassificationPricingQuery setStartDateLessThanOrEqualTo(Date value) { this.StartDateLessThanOrEqualTo = value; return this; } public Date getStartDateNotEqualTo() { return StartDateNotEqualTo; } public PR_ClassificationPricingQuery setStartDateNotEqualTo(Date value) { this.StartDateNotEqualTo = value; return this; } public ArrayList getStartDateBetween() { return StartDateBetween; } public PR_ClassificationPricingQuery setStartDateBetween(ArrayList value) { this.StartDateBetween = value; return this; } public ArrayList getStartDateIn() { return StartDateIn; } public PR_ClassificationPricingQuery setStartDateIn(ArrayList value) { this.StartDateIn = value; return this; } public Date getEndDate() { return EndDate; } public PR_ClassificationPricingQuery setEndDate(Date value) { this.EndDate = value; return this; } public Date getEndDateGreaterThanOrEqualTo() { return EndDateGreaterThanOrEqualTo; } public PR_ClassificationPricingQuery setEndDateGreaterThanOrEqualTo(Date value) { this.EndDateGreaterThanOrEqualTo = value; return this; } public Date getEndDateGreaterThan() { return EndDateGreaterThan; } public PR_ClassificationPricingQuery setEndDateGreaterThan(Date value) { this.EndDateGreaterThan = value; return this; } public Date getEndDateLessThan() { return EndDateLessThan; } public PR_ClassificationPricingQuery setEndDateLessThan(Date value) { this.EndDateLessThan = value; return this; } public Date getEndDateLessThanOrEqualTo() { return EndDateLessThanOrEqualTo; } public PR_ClassificationPricingQuery setEndDateLessThanOrEqualTo(Date value) { this.EndDateLessThanOrEqualTo = value; return this; } public Date getEndDateNotEqualTo() { return EndDateNotEqualTo; } public PR_ClassificationPricingQuery setEndDateNotEqualTo(Date value) { this.EndDateNotEqualTo = value; return this; } public ArrayList getEndDateBetween() { return EndDateBetween; } public PR_ClassificationPricingQuery setEndDateBetween(ArrayList value) { this.EndDateBetween = value; return this; } public ArrayList getEndDateIn() { return EndDateIn; } public PR_ClassificationPricingQuery setEndDateIn(ArrayList value) { this.EndDateIn = value; return this; } public Boolean isUseQuantityBreak() { return UseQuantityBreak; } public PR_ClassificationPricingQuery setUseQuantityBreak(Boolean value) { this.UseQuantityBreak = value; return this; } public BigDecimal getQuantityBreak() { return QuantityBreak; } public PR_ClassificationPricingQuery setQuantityBreak(BigDecimal value) { this.QuantityBreak = value; return this; } public BigDecimal getQuantityBreakGreaterThanOrEqualTo() { return QuantityBreakGreaterThanOrEqualTo; } public PR_ClassificationPricingQuery setQuantityBreakGreaterThanOrEqualTo(BigDecimal value) { this.QuantityBreakGreaterThanOrEqualTo = value; return this; } public BigDecimal getQuantityBreakGreaterThan() { return QuantityBreakGreaterThan; } public PR_ClassificationPricingQuery setQuantityBreakGreaterThan(BigDecimal value) { this.QuantityBreakGreaterThan = value; return this; } public BigDecimal getQuantityBreakLessThan() { return QuantityBreakLessThan; } public PR_ClassificationPricingQuery setQuantityBreakLessThan(BigDecimal value) { this.QuantityBreakLessThan = value; return this; } public BigDecimal getQuantityBreakLessThanOrEqualTo() { return QuantityBreakLessThanOrEqualTo; } public PR_ClassificationPricingQuery setQuantityBreakLessThanOrEqualTo(BigDecimal value) { this.QuantityBreakLessThanOrEqualTo = value; return this; } public BigDecimal getQuantityBreakNotEqualTo() { return QuantityBreakNotEqualTo; } public PR_ClassificationPricingQuery setQuantityBreakNotEqualTo(BigDecimal value) { this.QuantityBreakNotEqualTo = value; return this; } public ArrayList getQuantityBreakBetween() { return QuantityBreakBetween; } public PR_ClassificationPricingQuery setQuantityBreakBetween(ArrayList value) { this.QuantityBreakBetween = value; return this; } public ArrayList getQuantityBreakIn() { return QuantityBreakIn; } public PR_ClassificationPricingQuery setQuantityBreakIn(ArrayList value) { this.QuantityBreakIn = value; return this; } public ArrayList getRowHash() { return RowHash; } public PR_ClassificationPricingQuery setRowHash(ArrayList value) { this.RowHash = value; return this; } public Integer getItemNo() { return ItemNo; } public PR_ClassificationPricingQuery setItemNo(Integer value) { this.ItemNo = value; return this; } public Integer getItemNoGreaterThanOrEqualTo() { return ItemNoGreaterThanOrEqualTo; } public PR_ClassificationPricingQuery setItemNoGreaterThanOrEqualTo(Integer value) { this.ItemNoGreaterThanOrEqualTo = value; return this; } public Integer getItemNoGreaterThan() { return ItemNoGreaterThan; } public PR_ClassificationPricingQuery setItemNoGreaterThan(Integer value) { this.ItemNoGreaterThan = value; return this; } public Integer getItemNoLessThan() { return ItemNoLessThan; } public PR_ClassificationPricingQuery setItemNoLessThan(Integer value) { this.ItemNoLessThan = value; return this; } public Integer getItemNoLessThanOrEqualTo() { return ItemNoLessThanOrEqualTo; } public PR_ClassificationPricingQuery setItemNoLessThanOrEqualTo(Integer value) { this.ItemNoLessThanOrEqualTo = value; return this; } public Integer getItemNoNotEqualTo() { return ItemNoNotEqualTo; } public PR_ClassificationPricingQuery setItemNoNotEqualTo(Integer value) { this.ItemNoNotEqualTo = value; return this; } public ArrayList getItemNoBetween() { return ItemNoBetween; } public PR_ClassificationPricingQuery setItemNoBetween(ArrayList value) { this.ItemNoBetween = value; return this; } public ArrayList getItemNoIn() { return ItemNoIn; } public PR_ClassificationPricingQuery setItemNoIn(ArrayList value) { this.ItemNoIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class QO_ActivateBatchQuery extends QueryDb implements IReturn> { public String BatchID = null; public String BatchIDStartsWith = null; public String BatchIDEndsWith = null; public String BatchIDContains = null; public String BatchIDLike = null; public ArrayList BatchIDBetween = null; public ArrayList BatchIDIn = null; public String BatchNo = null; public String BatchNoStartsWith = null; public String BatchNoEndsWith = null; public String BatchNoContains = null; public String BatchNoLike = null; public ArrayList BatchNoBetween = null; public ArrayList BatchNoIn = null; public Date BatchDateTime = null; public Date BatchDateTimeGreaterThanOrEqualTo = null; public Date BatchDateTimeGreaterThan = null; public Date BatchDateTimeLessThan = null; public Date BatchDateTimeLessThanOrEqualTo = null; public Date BatchDateTimeNotEqualTo = null; public ArrayList BatchDateTimeBetween = null; public ArrayList BatchDateTimeIn = null; public String StaffID = null; public String StaffIDStartsWith = null; public String StaffIDEndsWith = null; public String StaffIDContains = null; public String StaffIDLike = null; public ArrayList StaffIDBetween = null; public ArrayList StaffIDIn = null; public String Notes = null; public String NotesStartsWith = null; public String NotesEndsWith = null; public String NotesContains = null; public String NotesLike = null; public ArrayList NotesBetween = null; public ArrayList NotesIn = null; public String getBatchID() { return BatchID; } public QO_ActivateBatchQuery setBatchID(String value) { this.BatchID = value; return this; } public String getBatchIDStartsWith() { return BatchIDStartsWith; } public QO_ActivateBatchQuery setBatchIDStartsWith(String value) { this.BatchIDStartsWith = value; return this; } public String getBatchIDEndsWith() { return BatchIDEndsWith; } public QO_ActivateBatchQuery setBatchIDEndsWith(String value) { this.BatchIDEndsWith = value; return this; } public String getBatchIDContains() { return BatchIDContains; } public QO_ActivateBatchQuery setBatchIDContains(String value) { this.BatchIDContains = value; return this; } public String getBatchIDLike() { return BatchIDLike; } public QO_ActivateBatchQuery setBatchIDLike(String value) { this.BatchIDLike = value; return this; } public ArrayList getBatchIDBetween() { return BatchIDBetween; } public QO_ActivateBatchQuery setBatchIDBetween(ArrayList value) { this.BatchIDBetween = value; return this; } public ArrayList getBatchIDIn() { return BatchIDIn; } public QO_ActivateBatchQuery setBatchIDIn(ArrayList value) { this.BatchIDIn = value; return this; } public String getBatchNo() { return BatchNo; } public QO_ActivateBatchQuery setBatchNo(String value) { this.BatchNo = value; return this; } public String getBatchNoStartsWith() { return BatchNoStartsWith; } public QO_ActivateBatchQuery setBatchNoStartsWith(String value) { this.BatchNoStartsWith = value; return this; } public String getBatchNoEndsWith() { return BatchNoEndsWith; } public QO_ActivateBatchQuery setBatchNoEndsWith(String value) { this.BatchNoEndsWith = value; return this; } public String getBatchNoContains() { return BatchNoContains; } public QO_ActivateBatchQuery setBatchNoContains(String value) { this.BatchNoContains = value; return this; } public String getBatchNoLike() { return BatchNoLike; } public QO_ActivateBatchQuery setBatchNoLike(String value) { this.BatchNoLike = value; return this; } public ArrayList getBatchNoBetween() { return BatchNoBetween; } public QO_ActivateBatchQuery setBatchNoBetween(ArrayList value) { this.BatchNoBetween = value; return this; } public ArrayList getBatchNoIn() { return BatchNoIn; } public QO_ActivateBatchQuery setBatchNoIn(ArrayList value) { this.BatchNoIn = value; return this; } public Date getBatchDateTime() { return BatchDateTime; } public QO_ActivateBatchQuery setBatchDateTime(Date value) { this.BatchDateTime = value; return this; } public Date getBatchDateTimeGreaterThanOrEqualTo() { return BatchDateTimeGreaterThanOrEqualTo; } public QO_ActivateBatchQuery setBatchDateTimeGreaterThanOrEqualTo(Date value) { this.BatchDateTimeGreaterThanOrEqualTo = value; return this; } public Date getBatchDateTimeGreaterThan() { return BatchDateTimeGreaterThan; } public QO_ActivateBatchQuery setBatchDateTimeGreaterThan(Date value) { this.BatchDateTimeGreaterThan = value; return this; } public Date getBatchDateTimeLessThan() { return BatchDateTimeLessThan; } public QO_ActivateBatchQuery setBatchDateTimeLessThan(Date value) { this.BatchDateTimeLessThan = value; return this; } public Date getBatchDateTimeLessThanOrEqualTo() { return BatchDateTimeLessThanOrEqualTo; } public QO_ActivateBatchQuery setBatchDateTimeLessThanOrEqualTo(Date value) { this.BatchDateTimeLessThanOrEqualTo = value; return this; } public Date getBatchDateTimeNotEqualTo() { return BatchDateTimeNotEqualTo; } public QO_ActivateBatchQuery setBatchDateTimeNotEqualTo(Date value) { this.BatchDateTimeNotEqualTo = value; return this; } public ArrayList getBatchDateTimeBetween() { return BatchDateTimeBetween; } public QO_ActivateBatchQuery setBatchDateTimeBetween(ArrayList value) { this.BatchDateTimeBetween = value; return this; } public ArrayList getBatchDateTimeIn() { return BatchDateTimeIn; } public QO_ActivateBatchQuery setBatchDateTimeIn(ArrayList value) { this.BatchDateTimeIn = value; return this; } public String getStaffID() { return StaffID; } public QO_ActivateBatchQuery setStaffID(String value) { this.StaffID = value; return this; } public String getStaffIDStartsWith() { return StaffIDStartsWith; } public QO_ActivateBatchQuery setStaffIDStartsWith(String value) { this.StaffIDStartsWith = value; return this; } public String getStaffIDEndsWith() { return StaffIDEndsWith; } public QO_ActivateBatchQuery setStaffIDEndsWith(String value) { this.StaffIDEndsWith = value; return this; } public String getStaffIDContains() { return StaffIDContains; } public QO_ActivateBatchQuery setStaffIDContains(String value) { this.StaffIDContains = value; return this; } public String getStaffIDLike() { return StaffIDLike; } public QO_ActivateBatchQuery setStaffIDLike(String value) { this.StaffIDLike = value; return this; } public ArrayList getStaffIDBetween() { return StaffIDBetween; } public QO_ActivateBatchQuery setStaffIDBetween(ArrayList value) { this.StaffIDBetween = value; return this; } public ArrayList getStaffIDIn() { return StaffIDIn; } public QO_ActivateBatchQuery setStaffIDIn(ArrayList value) { this.StaffIDIn = value; return this; } public String getNotes() { return Notes; } public QO_ActivateBatchQuery setNotes(String value) { this.Notes = value; return this; } public String getNotesStartsWith() { return NotesStartsWith; } public QO_ActivateBatchQuery setNotesStartsWith(String value) { this.NotesStartsWith = value; return this; } public String getNotesEndsWith() { return NotesEndsWith; } public QO_ActivateBatchQuery setNotesEndsWith(String value) { this.NotesEndsWith = value; return this; } public String getNotesContains() { return NotesContains; } public QO_ActivateBatchQuery setNotesContains(String value) { this.NotesContains = value; return this; } public String getNotesLike() { return NotesLike; } public QO_ActivateBatchQuery setNotesLike(String value) { this.NotesLike = value; return this; } public ArrayList getNotesBetween() { return NotesBetween; } public QO_ActivateBatchQuery setNotesBetween(ArrayList value) { this.NotesBetween = value; return this; } public ArrayList getNotesIn() { return NotesIn; } public QO_ActivateBatchQuery setNotesIn(ArrayList value) { this.NotesIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class QO_ActivateBatchLinesQuery extends QueryDb implements IReturn> { public String BatchLineID = null; public String BatchLineIDStartsWith = null; public String BatchLineIDEndsWith = null; public String BatchLineIDContains = null; public String BatchLineIDLike = null; public ArrayList BatchLineIDBetween = null; public ArrayList BatchLineIDIn = null; public String BatchID = null; public String BatchIDStartsWith = null; public String BatchIDEndsWith = null; public String BatchIDContains = null; public String BatchIDLike = null; public ArrayList BatchIDBetween = null; public ArrayList BatchIDIn = null; public String DestInvoiceID = null; public String DestInvoiceIDStartsWith = null; public String DestInvoiceIDEndsWith = null; public String DestInvoiceIDContains = null; public String DestInvoiceIDLike = null; public ArrayList DestInvoiceIDBetween = null; public ArrayList DestInvoiceIDIn = null; public String DestInvoiceNo = null; public String DestInvoiceNoStartsWith = null; public String DestInvoiceNoEndsWith = null; public String DestInvoiceNoContains = null; public String DestInvoiceNoLike = null; public ArrayList DestInvoiceNoBetween = null; public ArrayList DestInvoiceNoIn = null; public String SourceQuoteID = null; public String SourceQuoteIDStartsWith = null; public String SourceQuoteIDEndsWith = null; public String SourceQuoteIDContains = null; public String SourceQuoteIDLike = null; public ArrayList SourceQuoteIDBetween = null; public ArrayList SourceQuoteIDIn = null; public String SourceQuoteNo = null; public String SourceQuoteNoStartsWith = null; public String SourceQuoteNoEndsWith = null; public String SourceQuoteNoContains = null; public String SourceQuoteNoLike = null; public ArrayList SourceQuoteNoBetween = null; public ArrayList SourceQuoteNoIn = null; public String SourceQuoteHistoryID = null; public String SourceQuoteHistoryIDStartsWith = null; public String SourceQuoteHistoryIDEndsWith = null; public String SourceQuoteHistoryIDContains = null; public String SourceQuoteHistoryIDLike = null; public ArrayList SourceQuoteHistoryIDBetween = null; public ArrayList SourceQuoteHistoryIDIn = null; public Short SourceQuoteHistoryNo = null; public Short SourceQuoteHistoryNoGreaterThanOrEqualTo = null; public Short SourceQuoteHistoryNoGreaterThan = null; public Short SourceQuoteHistoryNoLessThan = null; public Short SourceQuoteHistoryNoLessThanOrEqualTo = null; public Short SourceQuoteHistoryNoNotEqualTo = null; public ArrayList SourceQuoteHistoryNoBetween = null; public ArrayList SourceQuoteHistoryNoIn = null; public BigDecimal SourceQuoteTotal = null; public BigDecimal SourceQuoteTotalGreaterThanOrEqualTo = null; public BigDecimal SourceQuoteTotalGreaterThan = null; public BigDecimal SourceQuoteTotalLessThan = null; public BigDecimal SourceQuoteTotalLessThanOrEqualTo = null; public BigDecimal SourceQuoteTotalNotEqualTo = null; public ArrayList SourceQuoteTotalBetween = null; public ArrayList SourceQuoteTotalIn = null; public String DebtorID = null; public String DebtorIDStartsWith = null; public String DebtorIDEndsWith = null; public String DebtorIDContains = null; public String DebtorIDLike = null; public ArrayList DebtorIDBetween = null; public ArrayList DebtorIDIn = null; public Date QuoteInitDate = null; public Date QuoteInitDateGreaterThanOrEqualTo = null; public Date QuoteInitDateGreaterThan = null; public Date QuoteInitDateLessThan = null; public Date QuoteInitDateLessThanOrEqualTo = null; public Date QuoteInitDateNotEqualTo = null; public ArrayList QuoteInitDateBetween = null; public ArrayList QuoteInitDateIn = null; public Date NextActivateDate = null; public Date NextActivateDateGreaterThanOrEqualTo = null; public Date NextActivateDateGreaterThan = null; public Date NextActivateDateLessThan = null; public Date NextActivateDateLessThanOrEqualTo = null; public Date NextActivateDateNotEqualTo = null; public ArrayList NextActivateDateBetween = null; public ArrayList NextActivateDateIn = null; public Boolean Failed = null; public String FailReason = null; public String FailReasonStartsWith = null; public String FailReasonEndsWith = null; public String FailReasonContains = null; public String FailReasonLike = null; public ArrayList FailReasonBetween = null; public ArrayList FailReasonIn = null; public Short DocType = null; public Short DocTypeGreaterThanOrEqualTo = null; public Short DocTypeGreaterThan = null; public Short DocTypeLessThan = null; public Short DocTypeLessThanOrEqualTo = null; public Short DocTypeNotEqualTo = null; public ArrayList DocTypeBetween = null; public ArrayList DocTypeIn = null; public String getBatchLineID() { return BatchLineID; } public QO_ActivateBatchLinesQuery setBatchLineID(String value) { this.BatchLineID = value; return this; } public String getBatchLineIDStartsWith() { return BatchLineIDStartsWith; } public QO_ActivateBatchLinesQuery setBatchLineIDStartsWith(String value) { this.BatchLineIDStartsWith = value; return this; } public String getBatchLineIDEndsWith() { return BatchLineIDEndsWith; } public QO_ActivateBatchLinesQuery setBatchLineIDEndsWith(String value) { this.BatchLineIDEndsWith = value; return this; } public String getBatchLineIDContains() { return BatchLineIDContains; } public QO_ActivateBatchLinesQuery setBatchLineIDContains(String value) { this.BatchLineIDContains = value; return this; } public String getBatchLineIDLike() { return BatchLineIDLike; } public QO_ActivateBatchLinesQuery setBatchLineIDLike(String value) { this.BatchLineIDLike = value; return this; } public ArrayList getBatchLineIDBetween() { return BatchLineIDBetween; } public QO_ActivateBatchLinesQuery setBatchLineIDBetween(ArrayList value) { this.BatchLineIDBetween = value; return this; } public ArrayList getBatchLineIDIn() { return BatchLineIDIn; } public QO_ActivateBatchLinesQuery setBatchLineIDIn(ArrayList value) { this.BatchLineIDIn = value; return this; } public String getBatchID() { return BatchID; } public QO_ActivateBatchLinesQuery setBatchID(String value) { this.BatchID = value; return this; } public String getBatchIDStartsWith() { return BatchIDStartsWith; } public QO_ActivateBatchLinesQuery setBatchIDStartsWith(String value) { this.BatchIDStartsWith = value; return this; } public String getBatchIDEndsWith() { return BatchIDEndsWith; } public QO_ActivateBatchLinesQuery setBatchIDEndsWith(String value) { this.BatchIDEndsWith = value; return this; } public String getBatchIDContains() { return BatchIDContains; } public QO_ActivateBatchLinesQuery setBatchIDContains(String value) { this.BatchIDContains = value; return this; } public String getBatchIDLike() { return BatchIDLike; } public QO_ActivateBatchLinesQuery setBatchIDLike(String value) { this.BatchIDLike = value; return this; } public ArrayList getBatchIDBetween() { return BatchIDBetween; } public QO_ActivateBatchLinesQuery setBatchIDBetween(ArrayList value) { this.BatchIDBetween = value; return this; } public ArrayList getBatchIDIn() { return BatchIDIn; } public QO_ActivateBatchLinesQuery setBatchIDIn(ArrayList value) { this.BatchIDIn = value; return this; } public String getDestInvoiceID() { return DestInvoiceID; } public QO_ActivateBatchLinesQuery setDestInvoiceID(String value) { this.DestInvoiceID = value; return this; } public String getDestInvoiceIDStartsWith() { return DestInvoiceIDStartsWith; } public QO_ActivateBatchLinesQuery setDestInvoiceIDStartsWith(String value) { this.DestInvoiceIDStartsWith = value; return this; } public String getDestInvoiceIDEndsWith() { return DestInvoiceIDEndsWith; } public QO_ActivateBatchLinesQuery setDestInvoiceIDEndsWith(String value) { this.DestInvoiceIDEndsWith = value; return this; } public String getDestInvoiceIDContains() { return DestInvoiceIDContains; } public QO_ActivateBatchLinesQuery setDestInvoiceIDContains(String value) { this.DestInvoiceIDContains = value; return this; } public String getDestInvoiceIDLike() { return DestInvoiceIDLike; } public QO_ActivateBatchLinesQuery setDestInvoiceIDLike(String value) { this.DestInvoiceIDLike = value; return this; } public ArrayList getDestInvoiceIDBetween() { return DestInvoiceIDBetween; } public QO_ActivateBatchLinesQuery setDestInvoiceIDBetween(ArrayList value) { this.DestInvoiceIDBetween = value; return this; } public ArrayList getDestInvoiceIDIn() { return DestInvoiceIDIn; } public QO_ActivateBatchLinesQuery setDestInvoiceIDIn(ArrayList value) { this.DestInvoiceIDIn = value; return this; } public String getDestInvoiceNo() { return DestInvoiceNo; } public QO_ActivateBatchLinesQuery setDestInvoiceNo(String value) { this.DestInvoiceNo = value; return this; } public String getDestInvoiceNoStartsWith() { return DestInvoiceNoStartsWith; } public QO_ActivateBatchLinesQuery setDestInvoiceNoStartsWith(String value) { this.DestInvoiceNoStartsWith = value; return this; } public String getDestInvoiceNoEndsWith() { return DestInvoiceNoEndsWith; } public QO_ActivateBatchLinesQuery setDestInvoiceNoEndsWith(String value) { this.DestInvoiceNoEndsWith = value; return this; } public String getDestInvoiceNoContains() { return DestInvoiceNoContains; } public QO_ActivateBatchLinesQuery setDestInvoiceNoContains(String value) { this.DestInvoiceNoContains = value; return this; } public String getDestInvoiceNoLike() { return DestInvoiceNoLike; } public QO_ActivateBatchLinesQuery setDestInvoiceNoLike(String value) { this.DestInvoiceNoLike = value; return this; } public ArrayList getDestInvoiceNoBetween() { return DestInvoiceNoBetween; } public QO_ActivateBatchLinesQuery setDestInvoiceNoBetween(ArrayList value) { this.DestInvoiceNoBetween = value; return this; } public ArrayList getDestInvoiceNoIn() { return DestInvoiceNoIn; } public QO_ActivateBatchLinesQuery setDestInvoiceNoIn(ArrayList value) { this.DestInvoiceNoIn = value; return this; } public String getSourceQuoteID() { return SourceQuoteID; } public QO_ActivateBatchLinesQuery setSourceQuoteID(String value) { this.SourceQuoteID = value; return this; } public String getSourceQuoteIDStartsWith() { return SourceQuoteIDStartsWith; } public QO_ActivateBatchLinesQuery setSourceQuoteIDStartsWith(String value) { this.SourceQuoteIDStartsWith = value; return this; } public String getSourceQuoteIDEndsWith() { return SourceQuoteIDEndsWith; } public QO_ActivateBatchLinesQuery setSourceQuoteIDEndsWith(String value) { this.SourceQuoteIDEndsWith = value; return this; } public String getSourceQuoteIDContains() { return SourceQuoteIDContains; } public QO_ActivateBatchLinesQuery setSourceQuoteIDContains(String value) { this.SourceQuoteIDContains = value; return this; } public String getSourceQuoteIDLike() { return SourceQuoteIDLike; } public QO_ActivateBatchLinesQuery setSourceQuoteIDLike(String value) { this.SourceQuoteIDLike = value; return this; } public ArrayList getSourceQuoteIDBetween() { return SourceQuoteIDBetween; } public QO_ActivateBatchLinesQuery setSourceQuoteIDBetween(ArrayList value) { this.SourceQuoteIDBetween = value; return this; } public ArrayList getSourceQuoteIDIn() { return SourceQuoteIDIn; } public QO_ActivateBatchLinesQuery setSourceQuoteIDIn(ArrayList value) { this.SourceQuoteIDIn = value; return this; } public String getSourceQuoteNo() { return SourceQuoteNo; } public QO_ActivateBatchLinesQuery setSourceQuoteNo(String value) { this.SourceQuoteNo = value; return this; } public String getSourceQuoteNoStartsWith() { return SourceQuoteNoStartsWith; } public QO_ActivateBatchLinesQuery setSourceQuoteNoStartsWith(String value) { this.SourceQuoteNoStartsWith = value; return this; } public String getSourceQuoteNoEndsWith() { return SourceQuoteNoEndsWith; } public QO_ActivateBatchLinesQuery setSourceQuoteNoEndsWith(String value) { this.SourceQuoteNoEndsWith = value; return this; } public String getSourceQuoteNoContains() { return SourceQuoteNoContains; } public QO_ActivateBatchLinesQuery setSourceQuoteNoContains(String value) { this.SourceQuoteNoContains = value; return this; } public String getSourceQuoteNoLike() { return SourceQuoteNoLike; } public QO_ActivateBatchLinesQuery setSourceQuoteNoLike(String value) { this.SourceQuoteNoLike = value; return this; } public ArrayList getSourceQuoteNoBetween() { return SourceQuoteNoBetween; } public QO_ActivateBatchLinesQuery setSourceQuoteNoBetween(ArrayList value) { this.SourceQuoteNoBetween = value; return this; } public ArrayList getSourceQuoteNoIn() { return SourceQuoteNoIn; } public QO_ActivateBatchLinesQuery setSourceQuoteNoIn(ArrayList value) { this.SourceQuoteNoIn = value; return this; } public String getSourceQuoteHistoryID() { return SourceQuoteHistoryID; } public QO_ActivateBatchLinesQuery setSourceQuoteHistoryID(String value) { this.SourceQuoteHistoryID = value; return this; } public String getSourceQuoteHistoryIDStartsWith() { return SourceQuoteHistoryIDStartsWith; } public QO_ActivateBatchLinesQuery setSourceQuoteHistoryIDStartsWith(String value) { this.SourceQuoteHistoryIDStartsWith = value; return this; } public String getSourceQuoteHistoryIDEndsWith() { return SourceQuoteHistoryIDEndsWith; } public QO_ActivateBatchLinesQuery setSourceQuoteHistoryIDEndsWith(String value) { this.SourceQuoteHistoryIDEndsWith = value; return this; } public String getSourceQuoteHistoryIDContains() { return SourceQuoteHistoryIDContains; } public QO_ActivateBatchLinesQuery setSourceQuoteHistoryIDContains(String value) { this.SourceQuoteHistoryIDContains = value; return this; } public String getSourceQuoteHistoryIDLike() { return SourceQuoteHistoryIDLike; } public QO_ActivateBatchLinesQuery setSourceQuoteHistoryIDLike(String value) { this.SourceQuoteHistoryIDLike = value; return this; } public ArrayList getSourceQuoteHistoryIDBetween() { return SourceQuoteHistoryIDBetween; } public QO_ActivateBatchLinesQuery setSourceQuoteHistoryIDBetween(ArrayList value) { this.SourceQuoteHistoryIDBetween = value; return this; } public ArrayList getSourceQuoteHistoryIDIn() { return SourceQuoteHistoryIDIn; } public QO_ActivateBatchLinesQuery setSourceQuoteHistoryIDIn(ArrayList value) { this.SourceQuoteHistoryIDIn = value; return this; } public Short getSourceQuoteHistoryNo() { return SourceQuoteHistoryNo; } public QO_ActivateBatchLinesQuery setSourceQuoteHistoryNo(Short value) { this.SourceQuoteHistoryNo = value; return this; } public Short getSourceQuoteHistoryNoGreaterThanOrEqualTo() { return SourceQuoteHistoryNoGreaterThanOrEqualTo; } public QO_ActivateBatchLinesQuery setSourceQuoteHistoryNoGreaterThanOrEqualTo(Short value) { this.SourceQuoteHistoryNoGreaterThanOrEqualTo = value; return this; } public Short getSourceQuoteHistoryNoGreaterThan() { return SourceQuoteHistoryNoGreaterThan; } public QO_ActivateBatchLinesQuery setSourceQuoteHistoryNoGreaterThan(Short value) { this.SourceQuoteHistoryNoGreaterThan = value; return this; } public Short getSourceQuoteHistoryNoLessThan() { return SourceQuoteHistoryNoLessThan; } public QO_ActivateBatchLinesQuery setSourceQuoteHistoryNoLessThan(Short value) { this.SourceQuoteHistoryNoLessThan = value; return this; } public Short getSourceQuoteHistoryNoLessThanOrEqualTo() { return SourceQuoteHistoryNoLessThanOrEqualTo; } public QO_ActivateBatchLinesQuery setSourceQuoteHistoryNoLessThanOrEqualTo(Short value) { this.SourceQuoteHistoryNoLessThanOrEqualTo = value; return this; } public Short getSourceQuoteHistoryNoNotEqualTo() { return SourceQuoteHistoryNoNotEqualTo; } public QO_ActivateBatchLinesQuery setSourceQuoteHistoryNoNotEqualTo(Short value) { this.SourceQuoteHistoryNoNotEqualTo = value; return this; } public ArrayList getSourceQuoteHistoryNoBetween() { return SourceQuoteHistoryNoBetween; } public QO_ActivateBatchLinesQuery setSourceQuoteHistoryNoBetween(ArrayList value) { this.SourceQuoteHistoryNoBetween = value; return this; } public ArrayList getSourceQuoteHistoryNoIn() { return SourceQuoteHistoryNoIn; } public QO_ActivateBatchLinesQuery setSourceQuoteHistoryNoIn(ArrayList value) { this.SourceQuoteHistoryNoIn = value; return this; } public BigDecimal getSourceQuoteTotal() { return SourceQuoteTotal; } public QO_ActivateBatchLinesQuery setSourceQuoteTotal(BigDecimal value) { this.SourceQuoteTotal = value; return this; } public BigDecimal getSourceQuoteTotalGreaterThanOrEqualTo() { return SourceQuoteTotalGreaterThanOrEqualTo; } public QO_ActivateBatchLinesQuery setSourceQuoteTotalGreaterThanOrEqualTo(BigDecimal value) { this.SourceQuoteTotalGreaterThanOrEqualTo = value; return this; } public BigDecimal getSourceQuoteTotalGreaterThan() { return SourceQuoteTotalGreaterThan; } public QO_ActivateBatchLinesQuery setSourceQuoteTotalGreaterThan(BigDecimal value) { this.SourceQuoteTotalGreaterThan = value; return this; } public BigDecimal getSourceQuoteTotalLessThan() { return SourceQuoteTotalLessThan; } public QO_ActivateBatchLinesQuery setSourceQuoteTotalLessThan(BigDecimal value) { this.SourceQuoteTotalLessThan = value; return this; } public BigDecimal getSourceQuoteTotalLessThanOrEqualTo() { return SourceQuoteTotalLessThanOrEqualTo; } public QO_ActivateBatchLinesQuery setSourceQuoteTotalLessThanOrEqualTo(BigDecimal value) { this.SourceQuoteTotalLessThanOrEqualTo = value; return this; } public BigDecimal getSourceQuoteTotalNotEqualTo() { return SourceQuoteTotalNotEqualTo; } public QO_ActivateBatchLinesQuery setSourceQuoteTotalNotEqualTo(BigDecimal value) { this.SourceQuoteTotalNotEqualTo = value; return this; } public ArrayList getSourceQuoteTotalBetween() { return SourceQuoteTotalBetween; } public QO_ActivateBatchLinesQuery setSourceQuoteTotalBetween(ArrayList value) { this.SourceQuoteTotalBetween = value; return this; } public ArrayList getSourceQuoteTotalIn() { return SourceQuoteTotalIn; } public QO_ActivateBatchLinesQuery setSourceQuoteTotalIn(ArrayList value) { this.SourceQuoteTotalIn = value; return this; } public String getDebtorID() { return DebtorID; } public QO_ActivateBatchLinesQuery setDebtorID(String value) { this.DebtorID = value; return this; } public String getDebtorIDStartsWith() { return DebtorIDStartsWith; } public QO_ActivateBatchLinesQuery setDebtorIDStartsWith(String value) { this.DebtorIDStartsWith = value; return this; } public String getDebtorIDEndsWith() { return DebtorIDEndsWith; } public QO_ActivateBatchLinesQuery setDebtorIDEndsWith(String value) { this.DebtorIDEndsWith = value; return this; } public String getDebtorIDContains() { return DebtorIDContains; } public QO_ActivateBatchLinesQuery setDebtorIDContains(String value) { this.DebtorIDContains = value; return this; } public String getDebtorIDLike() { return DebtorIDLike; } public QO_ActivateBatchLinesQuery setDebtorIDLike(String value) { this.DebtorIDLike = value; return this; } public ArrayList getDebtorIDBetween() { return DebtorIDBetween; } public QO_ActivateBatchLinesQuery setDebtorIDBetween(ArrayList value) { this.DebtorIDBetween = value; return this; } public ArrayList getDebtorIDIn() { return DebtorIDIn; } public QO_ActivateBatchLinesQuery setDebtorIDIn(ArrayList value) { this.DebtorIDIn = value; return this; } public Date getQuoteInitDate() { return QuoteInitDate; } public QO_ActivateBatchLinesQuery setQuoteInitDate(Date value) { this.QuoteInitDate = value; return this; } public Date getQuoteInitDateGreaterThanOrEqualTo() { return QuoteInitDateGreaterThanOrEqualTo; } public QO_ActivateBatchLinesQuery setQuoteInitDateGreaterThanOrEqualTo(Date value) { this.QuoteInitDateGreaterThanOrEqualTo = value; return this; } public Date getQuoteInitDateGreaterThan() { return QuoteInitDateGreaterThan; } public QO_ActivateBatchLinesQuery setQuoteInitDateGreaterThan(Date value) { this.QuoteInitDateGreaterThan = value; return this; } public Date getQuoteInitDateLessThan() { return QuoteInitDateLessThan; } public QO_ActivateBatchLinesQuery setQuoteInitDateLessThan(Date value) { this.QuoteInitDateLessThan = value; return this; } public Date getQuoteInitDateLessThanOrEqualTo() { return QuoteInitDateLessThanOrEqualTo; } public QO_ActivateBatchLinesQuery setQuoteInitDateLessThanOrEqualTo(Date value) { this.QuoteInitDateLessThanOrEqualTo = value; return this; } public Date getQuoteInitDateNotEqualTo() { return QuoteInitDateNotEqualTo; } public QO_ActivateBatchLinesQuery setQuoteInitDateNotEqualTo(Date value) { this.QuoteInitDateNotEqualTo = value; return this; } public ArrayList getQuoteInitDateBetween() { return QuoteInitDateBetween; } public QO_ActivateBatchLinesQuery setQuoteInitDateBetween(ArrayList value) { this.QuoteInitDateBetween = value; return this; } public ArrayList getQuoteInitDateIn() { return QuoteInitDateIn; } public QO_ActivateBatchLinesQuery setQuoteInitDateIn(ArrayList value) { this.QuoteInitDateIn = value; return this; } public Date getNextActivateDate() { return NextActivateDate; } public QO_ActivateBatchLinesQuery setNextActivateDate(Date value) { this.NextActivateDate = value; return this; } public Date getNextActivateDateGreaterThanOrEqualTo() { return NextActivateDateGreaterThanOrEqualTo; } public QO_ActivateBatchLinesQuery setNextActivateDateGreaterThanOrEqualTo(Date value) { this.NextActivateDateGreaterThanOrEqualTo = value; return this; } public Date getNextActivateDateGreaterThan() { return NextActivateDateGreaterThan; } public QO_ActivateBatchLinesQuery setNextActivateDateGreaterThan(Date value) { this.NextActivateDateGreaterThan = value; return this; } public Date getNextActivateDateLessThan() { return NextActivateDateLessThan; } public QO_ActivateBatchLinesQuery setNextActivateDateLessThan(Date value) { this.NextActivateDateLessThan = value; return this; } public Date getNextActivateDateLessThanOrEqualTo() { return NextActivateDateLessThanOrEqualTo; } public QO_ActivateBatchLinesQuery setNextActivateDateLessThanOrEqualTo(Date value) { this.NextActivateDateLessThanOrEqualTo = value; return this; } public Date getNextActivateDateNotEqualTo() { return NextActivateDateNotEqualTo; } public QO_ActivateBatchLinesQuery setNextActivateDateNotEqualTo(Date value) { this.NextActivateDateNotEqualTo = value; return this; } public ArrayList getNextActivateDateBetween() { return NextActivateDateBetween; } public QO_ActivateBatchLinesQuery setNextActivateDateBetween(ArrayList value) { this.NextActivateDateBetween = value; return this; } public ArrayList getNextActivateDateIn() { return NextActivateDateIn; } public QO_ActivateBatchLinesQuery setNextActivateDateIn(ArrayList value) { this.NextActivateDateIn = value; return this; } public Boolean isFailed() { return Failed; } public QO_ActivateBatchLinesQuery setFailed(Boolean value) { this.Failed = value; return this; } public String getFailReason() { return FailReason; } public QO_ActivateBatchLinesQuery setFailReason(String value) { this.FailReason = value; return this; } public String getFailReasonStartsWith() { return FailReasonStartsWith; } public QO_ActivateBatchLinesQuery setFailReasonStartsWith(String value) { this.FailReasonStartsWith = value; return this; } public String getFailReasonEndsWith() { return FailReasonEndsWith; } public QO_ActivateBatchLinesQuery setFailReasonEndsWith(String value) { this.FailReasonEndsWith = value; return this; } public String getFailReasonContains() { return FailReasonContains; } public QO_ActivateBatchLinesQuery setFailReasonContains(String value) { this.FailReasonContains = value; return this; } public String getFailReasonLike() { return FailReasonLike; } public QO_ActivateBatchLinesQuery setFailReasonLike(String value) { this.FailReasonLike = value; return this; } public ArrayList getFailReasonBetween() { return FailReasonBetween; } public QO_ActivateBatchLinesQuery setFailReasonBetween(ArrayList value) { this.FailReasonBetween = value; return this; } public ArrayList getFailReasonIn() { return FailReasonIn; } public QO_ActivateBatchLinesQuery setFailReasonIn(ArrayList value) { this.FailReasonIn = value; return this; } public Short getDocType() { return DocType; } public QO_ActivateBatchLinesQuery setDocType(Short value) { this.DocType = value; return this; } public Short getDocTypeGreaterThanOrEqualTo() { return DocTypeGreaterThanOrEqualTo; } public QO_ActivateBatchLinesQuery setDocTypeGreaterThanOrEqualTo(Short value) { this.DocTypeGreaterThanOrEqualTo = value; return this; } public Short getDocTypeGreaterThan() { return DocTypeGreaterThan; } public QO_ActivateBatchLinesQuery setDocTypeGreaterThan(Short value) { this.DocTypeGreaterThan = value; return this; } public Short getDocTypeLessThan() { return DocTypeLessThan; } public QO_ActivateBatchLinesQuery setDocTypeLessThan(Short value) { this.DocTypeLessThan = value; return this; } public Short getDocTypeLessThanOrEqualTo() { return DocTypeLessThanOrEqualTo; } public QO_ActivateBatchLinesQuery setDocTypeLessThanOrEqualTo(Short value) { this.DocTypeLessThanOrEqualTo = value; return this; } public Short getDocTypeNotEqualTo() { return DocTypeNotEqualTo; } public QO_ActivateBatchLinesQuery setDocTypeNotEqualTo(Short value) { this.DocTypeNotEqualTo = value; return this; } public ArrayList getDocTypeBetween() { return DocTypeBetween; } public QO_ActivateBatchLinesQuery setDocTypeBetween(ArrayList value) { this.DocTypeBetween = value; return this; } public ArrayList getDocTypeIn() { return DocTypeIn; } public QO_ActivateBatchLinesQuery setDocTypeIn(ArrayList value) { this.DocTypeIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class QO_CashSaleQuery extends QueryDb implements IReturn> { public String InvoiceCashSaleID = null; public String InvoiceCashSaleIDStartsWith = null; public String InvoiceCashSaleIDEndsWith = null; public String InvoiceCashSaleIDContains = null; public String InvoiceCashSaleIDLike = null; public ArrayList InvoiceCashSaleIDBetween = null; public ArrayList InvoiceCashSaleIDIn = null; public String InvoiceID = null; public String InvoiceIDStartsWith = null; public String InvoiceIDEndsWith = null; public String InvoiceIDContains = null; public String InvoiceIDLike = null; public ArrayList InvoiceIDBetween = null; public ArrayList InvoiceIDIn = null; public String Name = null; public String NameStartsWith = null; public String NameEndsWith = null; public String NameContains = null; public String NameLike = null; public ArrayList NameBetween = null; public ArrayList NameIn = null; public String Company = null; public String CompanyStartsWith = null; public String CompanyEndsWith = null; public String CompanyContains = null; public String CompanyLike = null; public ArrayList CompanyBetween = null; public ArrayList CompanyIn = null; public String Address1 = null; public String Address1StartsWith = null; public String Address1EndsWith = null; public String Address1Contains = null; public String Address1Like = null; public ArrayList Address1Between = null; public ArrayList Address1In = null; public String Address2 = null; public String Address2StartsWith = null; public String Address2EndsWith = null; public String Address2Contains = null; public String Address2Like = null; public ArrayList Address2Between = null; public ArrayList Address2In = null; public String Address3 = null; public String Address3StartsWith = null; public String Address3EndsWith = null; public String Address3Contains = null; public String Address3Like = null; public ArrayList Address3Between = null; public ArrayList Address3In = null; public String Address4 = null; public String Address4StartsWith = null; public String Address4EndsWith = null; public String Address4Contains = null; public String Address4Like = null; public ArrayList Address4Between = null; public ArrayList Address4In = null; public String PostCode = null; public String PostCodeStartsWith = null; public String PostCodeEndsWith = null; public String PostCodeContains = null; public String PostCodeLike = null; public ArrayList PostCodeBetween = null; public ArrayList PostCodeIn = null; public String Phone = null; public String PhoneStartsWith = null; public String PhoneEndsWith = null; public String PhoneContains = null; public String PhoneLike = null; public ArrayList PhoneBetween = null; public ArrayList PhoneIn = null; public String Fax = null; public String FaxStartsWith = null; public String FaxEndsWith = null; public String FaxContains = null; public String FaxLike = null; public ArrayList FaxBetween = null; public ArrayList FaxIn = null; public String ContactName = null; public String ContactNameStartsWith = null; public String ContactNameEndsWith = null; public String ContactNameContains = null; public String ContactNameLike = null; public ArrayList ContactNameBetween = null; public ArrayList ContactNameIn = null; public String getInvoiceCashSaleID() { return InvoiceCashSaleID; } public QO_CashSaleQuery setInvoiceCashSaleID(String value) { this.InvoiceCashSaleID = value; return this; } public String getInvoiceCashSaleIDStartsWith() { return InvoiceCashSaleIDStartsWith; } public QO_CashSaleQuery setInvoiceCashSaleIDStartsWith(String value) { this.InvoiceCashSaleIDStartsWith = value; return this; } public String getInvoiceCashSaleIDEndsWith() { return InvoiceCashSaleIDEndsWith; } public QO_CashSaleQuery setInvoiceCashSaleIDEndsWith(String value) { this.InvoiceCashSaleIDEndsWith = value; return this; } public String getInvoiceCashSaleIDContains() { return InvoiceCashSaleIDContains; } public QO_CashSaleQuery setInvoiceCashSaleIDContains(String value) { this.InvoiceCashSaleIDContains = value; return this; } public String getInvoiceCashSaleIDLike() { return InvoiceCashSaleIDLike; } public QO_CashSaleQuery setInvoiceCashSaleIDLike(String value) { this.InvoiceCashSaleIDLike = value; return this; } public ArrayList getInvoiceCashSaleIDBetween() { return InvoiceCashSaleIDBetween; } public QO_CashSaleQuery setInvoiceCashSaleIDBetween(ArrayList value) { this.InvoiceCashSaleIDBetween = value; return this; } public ArrayList getInvoiceCashSaleIDIn() { return InvoiceCashSaleIDIn; } public QO_CashSaleQuery setInvoiceCashSaleIDIn(ArrayList value) { this.InvoiceCashSaleIDIn = value; return this; } public String getInvoiceID() { return InvoiceID; } public QO_CashSaleQuery setInvoiceID(String value) { this.InvoiceID = value; return this; } public String getInvoiceIDStartsWith() { return InvoiceIDStartsWith; } public QO_CashSaleQuery setInvoiceIDStartsWith(String value) { this.InvoiceIDStartsWith = value; return this; } public String getInvoiceIDEndsWith() { return InvoiceIDEndsWith; } public QO_CashSaleQuery setInvoiceIDEndsWith(String value) { this.InvoiceIDEndsWith = value; return this; } public String getInvoiceIDContains() { return InvoiceIDContains; } public QO_CashSaleQuery setInvoiceIDContains(String value) { this.InvoiceIDContains = value; return this; } public String getInvoiceIDLike() { return InvoiceIDLike; } public QO_CashSaleQuery setInvoiceIDLike(String value) { this.InvoiceIDLike = value; return this; } public ArrayList getInvoiceIDBetween() { return InvoiceIDBetween; } public QO_CashSaleQuery setInvoiceIDBetween(ArrayList value) { this.InvoiceIDBetween = value; return this; } public ArrayList getInvoiceIDIn() { return InvoiceIDIn; } public QO_CashSaleQuery setInvoiceIDIn(ArrayList value) { this.InvoiceIDIn = value; return this; } public String getName() { return Name; } public QO_CashSaleQuery setName(String value) { this.Name = value; return this; } public String getNameStartsWith() { return NameStartsWith; } public QO_CashSaleQuery setNameStartsWith(String value) { this.NameStartsWith = value; return this; } public String getNameEndsWith() { return NameEndsWith; } public QO_CashSaleQuery setNameEndsWith(String value) { this.NameEndsWith = value; return this; } public String getNameContains() { return NameContains; } public QO_CashSaleQuery setNameContains(String value) { this.NameContains = value; return this; } public String getNameLike() { return NameLike; } public QO_CashSaleQuery setNameLike(String value) { this.NameLike = value; return this; } public ArrayList getNameBetween() { return NameBetween; } public QO_CashSaleQuery setNameBetween(ArrayList value) { this.NameBetween = value; return this; } public ArrayList getNameIn() { return NameIn; } public QO_CashSaleQuery setNameIn(ArrayList value) { this.NameIn = value; return this; } public String getCompany() { return Company; } public QO_CashSaleQuery setCompany(String value) { this.Company = value; return this; } public String getCompanyStartsWith() { return CompanyStartsWith; } public QO_CashSaleQuery setCompanyStartsWith(String value) { this.CompanyStartsWith = value; return this; } public String getCompanyEndsWith() { return CompanyEndsWith; } public QO_CashSaleQuery setCompanyEndsWith(String value) { this.CompanyEndsWith = value; return this; } public String getCompanyContains() { return CompanyContains; } public QO_CashSaleQuery setCompanyContains(String value) { this.CompanyContains = value; return this; } public String getCompanyLike() { return CompanyLike; } public QO_CashSaleQuery setCompanyLike(String value) { this.CompanyLike = value; return this; } public ArrayList getCompanyBetween() { return CompanyBetween; } public QO_CashSaleQuery setCompanyBetween(ArrayList value) { this.CompanyBetween = value; return this; } public ArrayList getCompanyIn() { return CompanyIn; } public QO_CashSaleQuery setCompanyIn(ArrayList value) { this.CompanyIn = value; return this; } public String getAddress1() { return Address1; } public QO_CashSaleQuery setAddress1(String value) { this.Address1 = value; return this; } public String getAddress1StartsWith() { return Address1StartsWith; } public QO_CashSaleQuery setAddress1StartsWith(String value) { this.Address1StartsWith = value; return this; } public String getAddress1EndsWith() { return Address1EndsWith; } public QO_CashSaleQuery setAddress1EndsWith(String value) { this.Address1EndsWith = value; return this; } public String getAddress1Contains() { return Address1Contains; } public QO_CashSaleQuery setAddress1Contains(String value) { this.Address1Contains = value; return this; } public String getAddress1Like() { return Address1Like; } public QO_CashSaleQuery setAddress1Like(String value) { this.Address1Like = value; return this; } public ArrayList getAddress1Between() { return Address1Between; } public QO_CashSaleQuery setAddress1Between(ArrayList value) { this.Address1Between = value; return this; } public ArrayList getAddress1In() { return Address1In; } public QO_CashSaleQuery setAddress1In(ArrayList value) { this.Address1In = value; return this; } public String getAddress2() { return Address2; } public QO_CashSaleQuery setAddress2(String value) { this.Address2 = value; return this; } public String getAddress2StartsWith() { return Address2StartsWith; } public QO_CashSaleQuery setAddress2StartsWith(String value) { this.Address2StartsWith = value; return this; } public String getAddress2EndsWith() { return Address2EndsWith; } public QO_CashSaleQuery setAddress2EndsWith(String value) { this.Address2EndsWith = value; return this; } public String getAddress2Contains() { return Address2Contains; } public QO_CashSaleQuery setAddress2Contains(String value) { this.Address2Contains = value; return this; } public String getAddress2Like() { return Address2Like; } public QO_CashSaleQuery setAddress2Like(String value) { this.Address2Like = value; return this; } public ArrayList getAddress2Between() { return Address2Between; } public QO_CashSaleQuery setAddress2Between(ArrayList value) { this.Address2Between = value; return this; } public ArrayList getAddress2In() { return Address2In; } public QO_CashSaleQuery setAddress2In(ArrayList value) { this.Address2In = value; return this; } public String getAddress3() { return Address3; } public QO_CashSaleQuery setAddress3(String value) { this.Address3 = value; return this; } public String getAddress3StartsWith() { return Address3StartsWith; } public QO_CashSaleQuery setAddress3StartsWith(String value) { this.Address3StartsWith = value; return this; } public String getAddress3EndsWith() { return Address3EndsWith; } public QO_CashSaleQuery setAddress3EndsWith(String value) { this.Address3EndsWith = value; return this; } public String getAddress3Contains() { return Address3Contains; } public QO_CashSaleQuery setAddress3Contains(String value) { this.Address3Contains = value; return this; } public String getAddress3Like() { return Address3Like; } public QO_CashSaleQuery setAddress3Like(String value) { this.Address3Like = value; return this; } public ArrayList getAddress3Between() { return Address3Between; } public QO_CashSaleQuery setAddress3Between(ArrayList value) { this.Address3Between = value; return this; } public ArrayList getAddress3In() { return Address3In; } public QO_CashSaleQuery setAddress3In(ArrayList value) { this.Address3In = value; return this; } public String getAddress4() { return Address4; } public QO_CashSaleQuery setAddress4(String value) { this.Address4 = value; return this; } public String getAddress4StartsWith() { return Address4StartsWith; } public QO_CashSaleQuery setAddress4StartsWith(String value) { this.Address4StartsWith = value; return this; } public String getAddress4EndsWith() { return Address4EndsWith; } public QO_CashSaleQuery setAddress4EndsWith(String value) { this.Address4EndsWith = value; return this; } public String getAddress4Contains() { return Address4Contains; } public QO_CashSaleQuery setAddress4Contains(String value) { this.Address4Contains = value; return this; } public String getAddress4Like() { return Address4Like; } public QO_CashSaleQuery setAddress4Like(String value) { this.Address4Like = value; return this; } public ArrayList getAddress4Between() { return Address4Between; } public QO_CashSaleQuery setAddress4Between(ArrayList value) { this.Address4Between = value; return this; } public ArrayList getAddress4In() { return Address4In; } public QO_CashSaleQuery setAddress4In(ArrayList value) { this.Address4In = value; return this; } public String getPostCode() { return PostCode; } public QO_CashSaleQuery setPostCode(String value) { this.PostCode = value; return this; } public String getPostCodeStartsWith() { return PostCodeStartsWith; } public QO_CashSaleQuery setPostCodeStartsWith(String value) { this.PostCodeStartsWith = value; return this; } public String getPostCodeEndsWith() { return PostCodeEndsWith; } public QO_CashSaleQuery setPostCodeEndsWith(String value) { this.PostCodeEndsWith = value; return this; } public String getPostCodeContains() { return PostCodeContains; } public QO_CashSaleQuery setPostCodeContains(String value) { this.PostCodeContains = value; return this; } public String getPostCodeLike() { return PostCodeLike; } public QO_CashSaleQuery setPostCodeLike(String value) { this.PostCodeLike = value; return this; } public ArrayList getPostCodeBetween() { return PostCodeBetween; } public QO_CashSaleQuery setPostCodeBetween(ArrayList value) { this.PostCodeBetween = value; return this; } public ArrayList getPostCodeIn() { return PostCodeIn; } public QO_CashSaleQuery setPostCodeIn(ArrayList value) { this.PostCodeIn = value; return this; } public String getPhone() { return Phone; } public QO_CashSaleQuery setPhone(String value) { this.Phone = value; return this; } public String getPhoneStartsWith() { return PhoneStartsWith; } public QO_CashSaleQuery setPhoneStartsWith(String value) { this.PhoneStartsWith = value; return this; } public String getPhoneEndsWith() { return PhoneEndsWith; } public QO_CashSaleQuery setPhoneEndsWith(String value) { this.PhoneEndsWith = value; return this; } public String getPhoneContains() { return PhoneContains; } public QO_CashSaleQuery setPhoneContains(String value) { this.PhoneContains = value; return this; } public String getPhoneLike() { return PhoneLike; } public QO_CashSaleQuery setPhoneLike(String value) { this.PhoneLike = value; return this; } public ArrayList getPhoneBetween() { return PhoneBetween; } public QO_CashSaleQuery setPhoneBetween(ArrayList value) { this.PhoneBetween = value; return this; } public ArrayList getPhoneIn() { return PhoneIn; } public QO_CashSaleQuery setPhoneIn(ArrayList value) { this.PhoneIn = value; return this; } public String getFax() { return Fax; } public QO_CashSaleQuery setFax(String value) { this.Fax = value; return this; } public String getFaxStartsWith() { return FaxStartsWith; } public QO_CashSaleQuery setFaxStartsWith(String value) { this.FaxStartsWith = value; return this; } public String getFaxEndsWith() { return FaxEndsWith; } public QO_CashSaleQuery setFaxEndsWith(String value) { this.FaxEndsWith = value; return this; } public String getFaxContains() { return FaxContains; } public QO_CashSaleQuery setFaxContains(String value) { this.FaxContains = value; return this; } public String getFaxLike() { return FaxLike; } public QO_CashSaleQuery setFaxLike(String value) { this.FaxLike = value; return this; } public ArrayList getFaxBetween() { return FaxBetween; } public QO_CashSaleQuery setFaxBetween(ArrayList value) { this.FaxBetween = value; return this; } public ArrayList getFaxIn() { return FaxIn; } public QO_CashSaleQuery setFaxIn(ArrayList value) { this.FaxIn = value; return this; } public String getContactName() { return ContactName; } public QO_CashSaleQuery setContactName(String value) { this.ContactName = value; return this; } public String getContactNameStartsWith() { return ContactNameStartsWith; } public QO_CashSaleQuery setContactNameStartsWith(String value) { this.ContactNameStartsWith = value; return this; } public String getContactNameEndsWith() { return ContactNameEndsWith; } public QO_CashSaleQuery setContactNameEndsWith(String value) { this.ContactNameEndsWith = value; return this; } public String getContactNameContains() { return ContactNameContains; } public QO_CashSaleQuery setContactNameContains(String value) { this.ContactNameContains = value; return this; } public String getContactNameLike() { return ContactNameLike; } public QO_CashSaleQuery setContactNameLike(String value) { this.ContactNameLike = value; return this; } public ArrayList getContactNameBetween() { return ContactNameBetween; } public QO_CashSaleQuery setContactNameBetween(ArrayList value) { this.ContactNameBetween = value; return this; } public ArrayList getContactNameIn() { return ContactNameIn; } public QO_CashSaleQuery setContactNameIn(ArrayList value) { this.ContactNameIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class QO_CustomSettingQuery extends QueryDb implements IReturn> { public String SettingID = null; public String SettingIDStartsWith = null; public String SettingIDEndsWith = null; public String SettingIDContains = null; public String SettingIDLike = null; public ArrayList SettingIDBetween = null; public ArrayList SettingIDIn = null; public Date LastSavedDateTime = null; public Date LastSavedDateTimeGreaterThanOrEqualTo = null; public Date LastSavedDateTimeGreaterThan = null; public Date LastSavedDateTimeLessThan = null; public Date LastSavedDateTimeLessThanOrEqualTo = null; public Date LastSavedDateTimeNotEqualTo = null; public ArrayList LastSavedDateTimeBetween = null; public ArrayList LastSavedDateTimeIn = null; public String SettingDescription = null; public String SettingDescriptionStartsWith = null; public String SettingDescriptionEndsWith = null; public String SettingDescriptionContains = null; public String SettingDescriptionLike = null; public ArrayList SettingDescriptionBetween = null; public ArrayList SettingDescriptionIn = null; public String SettingName = null; public String SettingNameStartsWith = null; public String SettingNameEndsWith = null; public String SettingNameContains = null; public String SettingNameLike = null; public ArrayList SettingNameBetween = null; public ArrayList SettingNameIn = null; public BigDecimal DisplayOrder = null; public BigDecimal DisplayOrderGreaterThanOrEqualTo = null; public BigDecimal DisplayOrderGreaterThan = null; public BigDecimal DisplayOrderLessThan = null; public BigDecimal DisplayOrderLessThanOrEqualTo = null; public BigDecimal DisplayOrderNotEqualTo = null; public ArrayList DisplayOrderBetween = null; public ArrayList DisplayOrderIn = null; public Short CellType = null; public Short CellTypeGreaterThanOrEqualTo = null; public Short CellTypeGreaterThan = null; public Short CellTypeLessThan = null; public Short CellTypeLessThanOrEqualTo = null; public Short CellTypeNotEqualTo = null; public ArrayList CellTypeBetween = null; public ArrayList CellTypeIn = null; public String ScriptFormatCell = null; public String ScriptFormatCellStartsWith = null; public String ScriptFormatCellEndsWith = null; public String ScriptFormatCellContains = null; public String ScriptFormatCellLike = null; public ArrayList ScriptFormatCellBetween = null; public ArrayList ScriptFormatCellIn = null; public String ScriptButtonClicked = null; public String ScriptButtonClickedStartsWith = null; public String ScriptButtonClickedEndsWith = null; public String ScriptButtonClickedContains = null; public String ScriptButtonClickedLike = null; public ArrayList ScriptButtonClickedBetween = null; public ArrayList ScriptButtonClickedIn = null; public String ScriptReadData = null; public String ScriptReadDataStartsWith = null; public String ScriptReadDataEndsWith = null; public String ScriptReadDataContains = null; public String ScriptReadDataLike = null; public ArrayList ScriptReadDataBetween = null; public ArrayList ScriptReadDataIn = null; public UUID SY_Plugin_RecID = null; public ArrayList SY_Plugin_RecIDIn = null; public String getSettingID() { return SettingID; } public QO_CustomSettingQuery setSettingID(String value) { this.SettingID = value; return this; } public String getSettingIDStartsWith() { return SettingIDStartsWith; } public QO_CustomSettingQuery setSettingIDStartsWith(String value) { this.SettingIDStartsWith = value; return this; } public String getSettingIDEndsWith() { return SettingIDEndsWith; } public QO_CustomSettingQuery setSettingIDEndsWith(String value) { this.SettingIDEndsWith = value; return this; } public String getSettingIDContains() { return SettingIDContains; } public QO_CustomSettingQuery setSettingIDContains(String value) { this.SettingIDContains = value; return this; } public String getSettingIDLike() { return SettingIDLike; } public QO_CustomSettingQuery setSettingIDLike(String value) { this.SettingIDLike = value; return this; } public ArrayList getSettingIDBetween() { return SettingIDBetween; } public QO_CustomSettingQuery setSettingIDBetween(ArrayList value) { this.SettingIDBetween = value; return this; } public ArrayList getSettingIDIn() { return SettingIDIn; } public QO_CustomSettingQuery setSettingIDIn(ArrayList value) { this.SettingIDIn = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public QO_CustomSettingQuery setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getLastSavedDateTimeGreaterThanOrEqualTo() { return LastSavedDateTimeGreaterThanOrEqualTo; } public QO_CustomSettingQuery setLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.LastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeGreaterThan() { return LastSavedDateTimeGreaterThan; } public QO_CustomSettingQuery setLastSavedDateTimeGreaterThan(Date value) { this.LastSavedDateTimeGreaterThan = value; return this; } public Date getLastSavedDateTimeLessThan() { return LastSavedDateTimeLessThan; } public QO_CustomSettingQuery setLastSavedDateTimeLessThan(Date value) { this.LastSavedDateTimeLessThan = value; return this; } public Date getLastSavedDateTimeLessThanOrEqualTo() { return LastSavedDateTimeLessThanOrEqualTo; } public QO_CustomSettingQuery setLastSavedDateTimeLessThanOrEqualTo(Date value) { this.LastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeNotEqualTo() { return LastSavedDateTimeNotEqualTo; } public QO_CustomSettingQuery setLastSavedDateTimeNotEqualTo(Date value) { this.LastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getLastSavedDateTimeBetween() { return LastSavedDateTimeBetween; } public QO_CustomSettingQuery setLastSavedDateTimeBetween(ArrayList value) { this.LastSavedDateTimeBetween = value; return this; } public ArrayList getLastSavedDateTimeIn() { return LastSavedDateTimeIn; } public QO_CustomSettingQuery setLastSavedDateTimeIn(ArrayList value) { this.LastSavedDateTimeIn = value; return this; } public String getSettingDescription() { return SettingDescription; } public QO_CustomSettingQuery setSettingDescription(String value) { this.SettingDescription = value; return this; } public String getSettingDescriptionStartsWith() { return SettingDescriptionStartsWith; } public QO_CustomSettingQuery setSettingDescriptionStartsWith(String value) { this.SettingDescriptionStartsWith = value; return this; } public String getSettingDescriptionEndsWith() { return SettingDescriptionEndsWith; } public QO_CustomSettingQuery setSettingDescriptionEndsWith(String value) { this.SettingDescriptionEndsWith = value; return this; } public String getSettingDescriptionContains() { return SettingDescriptionContains; } public QO_CustomSettingQuery setSettingDescriptionContains(String value) { this.SettingDescriptionContains = value; return this; } public String getSettingDescriptionLike() { return SettingDescriptionLike; } public QO_CustomSettingQuery setSettingDescriptionLike(String value) { this.SettingDescriptionLike = value; return this; } public ArrayList getSettingDescriptionBetween() { return SettingDescriptionBetween; } public QO_CustomSettingQuery setSettingDescriptionBetween(ArrayList value) { this.SettingDescriptionBetween = value; return this; } public ArrayList getSettingDescriptionIn() { return SettingDescriptionIn; } public QO_CustomSettingQuery setSettingDescriptionIn(ArrayList value) { this.SettingDescriptionIn = value; return this; } public String getSettingName() { return SettingName; } public QO_CustomSettingQuery setSettingName(String value) { this.SettingName = value; return this; } public String getSettingNameStartsWith() { return SettingNameStartsWith; } public QO_CustomSettingQuery setSettingNameStartsWith(String value) { this.SettingNameStartsWith = value; return this; } public String getSettingNameEndsWith() { return SettingNameEndsWith; } public QO_CustomSettingQuery setSettingNameEndsWith(String value) { this.SettingNameEndsWith = value; return this; } public String getSettingNameContains() { return SettingNameContains; } public QO_CustomSettingQuery setSettingNameContains(String value) { this.SettingNameContains = value; return this; } public String getSettingNameLike() { return SettingNameLike; } public QO_CustomSettingQuery setSettingNameLike(String value) { this.SettingNameLike = value; return this; } public ArrayList getSettingNameBetween() { return SettingNameBetween; } public QO_CustomSettingQuery setSettingNameBetween(ArrayList value) { this.SettingNameBetween = value; return this; } public ArrayList getSettingNameIn() { return SettingNameIn; } public QO_CustomSettingQuery setSettingNameIn(ArrayList value) { this.SettingNameIn = value; return this; } public BigDecimal getDisplayOrder() { return DisplayOrder; } public QO_CustomSettingQuery setDisplayOrder(BigDecimal value) { this.DisplayOrder = value; return this; } public BigDecimal getDisplayOrderGreaterThanOrEqualTo() { return DisplayOrderGreaterThanOrEqualTo; } public QO_CustomSettingQuery setDisplayOrderGreaterThanOrEqualTo(BigDecimal value) { this.DisplayOrderGreaterThanOrEqualTo = value; return this; } public BigDecimal getDisplayOrderGreaterThan() { return DisplayOrderGreaterThan; } public QO_CustomSettingQuery setDisplayOrderGreaterThan(BigDecimal value) { this.DisplayOrderGreaterThan = value; return this; } public BigDecimal getDisplayOrderLessThan() { return DisplayOrderLessThan; } public QO_CustomSettingQuery setDisplayOrderLessThan(BigDecimal value) { this.DisplayOrderLessThan = value; return this; } public BigDecimal getDisplayOrderLessThanOrEqualTo() { return DisplayOrderLessThanOrEqualTo; } public QO_CustomSettingQuery setDisplayOrderLessThanOrEqualTo(BigDecimal value) { this.DisplayOrderLessThanOrEqualTo = value; return this; } public BigDecimal getDisplayOrderNotEqualTo() { return DisplayOrderNotEqualTo; } public QO_CustomSettingQuery setDisplayOrderNotEqualTo(BigDecimal value) { this.DisplayOrderNotEqualTo = value; return this; } public ArrayList getDisplayOrderBetween() { return DisplayOrderBetween; } public QO_CustomSettingQuery setDisplayOrderBetween(ArrayList value) { this.DisplayOrderBetween = value; return this; } public ArrayList getDisplayOrderIn() { return DisplayOrderIn; } public QO_CustomSettingQuery setDisplayOrderIn(ArrayList value) { this.DisplayOrderIn = value; return this; } public Short getCellType() { return CellType; } public QO_CustomSettingQuery setCellType(Short value) { this.CellType = value; return this; } public Short getCellTypeGreaterThanOrEqualTo() { return CellTypeGreaterThanOrEqualTo; } public QO_CustomSettingQuery setCellTypeGreaterThanOrEqualTo(Short value) { this.CellTypeGreaterThanOrEqualTo = value; return this; } public Short getCellTypeGreaterThan() { return CellTypeGreaterThan; } public QO_CustomSettingQuery setCellTypeGreaterThan(Short value) { this.CellTypeGreaterThan = value; return this; } public Short getCellTypeLessThan() { return CellTypeLessThan; } public QO_CustomSettingQuery setCellTypeLessThan(Short value) { this.CellTypeLessThan = value; return this; } public Short getCellTypeLessThanOrEqualTo() { return CellTypeLessThanOrEqualTo; } public QO_CustomSettingQuery setCellTypeLessThanOrEqualTo(Short value) { this.CellTypeLessThanOrEqualTo = value; return this; } public Short getCellTypeNotEqualTo() { return CellTypeNotEqualTo; } public QO_CustomSettingQuery setCellTypeNotEqualTo(Short value) { this.CellTypeNotEqualTo = value; return this; } public ArrayList getCellTypeBetween() { return CellTypeBetween; } public QO_CustomSettingQuery setCellTypeBetween(ArrayList value) { this.CellTypeBetween = value; return this; } public ArrayList getCellTypeIn() { return CellTypeIn; } public QO_CustomSettingQuery setCellTypeIn(ArrayList value) { this.CellTypeIn = value; return this; } public String getScriptFormatCell() { return ScriptFormatCell; } public QO_CustomSettingQuery setScriptFormatCell(String value) { this.ScriptFormatCell = value; return this; } public String getScriptFormatCellStartsWith() { return ScriptFormatCellStartsWith; } public QO_CustomSettingQuery setScriptFormatCellStartsWith(String value) { this.ScriptFormatCellStartsWith = value; return this; } public String getScriptFormatCellEndsWith() { return ScriptFormatCellEndsWith; } public QO_CustomSettingQuery setScriptFormatCellEndsWith(String value) { this.ScriptFormatCellEndsWith = value; return this; } public String getScriptFormatCellContains() { return ScriptFormatCellContains; } public QO_CustomSettingQuery setScriptFormatCellContains(String value) { this.ScriptFormatCellContains = value; return this; } public String getScriptFormatCellLike() { return ScriptFormatCellLike; } public QO_CustomSettingQuery setScriptFormatCellLike(String value) { this.ScriptFormatCellLike = value; return this; } public ArrayList getScriptFormatCellBetween() { return ScriptFormatCellBetween; } public QO_CustomSettingQuery setScriptFormatCellBetween(ArrayList value) { this.ScriptFormatCellBetween = value; return this; } public ArrayList getScriptFormatCellIn() { return ScriptFormatCellIn; } public QO_CustomSettingQuery setScriptFormatCellIn(ArrayList value) { this.ScriptFormatCellIn = value; return this; } public String getScriptButtonClicked() { return ScriptButtonClicked; } public QO_CustomSettingQuery setScriptButtonClicked(String value) { this.ScriptButtonClicked = value; return this; } public String getScriptButtonClickedStartsWith() { return ScriptButtonClickedStartsWith; } public QO_CustomSettingQuery setScriptButtonClickedStartsWith(String value) { this.ScriptButtonClickedStartsWith = value; return this; } public String getScriptButtonClickedEndsWith() { return ScriptButtonClickedEndsWith; } public QO_CustomSettingQuery setScriptButtonClickedEndsWith(String value) { this.ScriptButtonClickedEndsWith = value; return this; } public String getScriptButtonClickedContains() { return ScriptButtonClickedContains; } public QO_CustomSettingQuery setScriptButtonClickedContains(String value) { this.ScriptButtonClickedContains = value; return this; } public String getScriptButtonClickedLike() { return ScriptButtonClickedLike; } public QO_CustomSettingQuery setScriptButtonClickedLike(String value) { this.ScriptButtonClickedLike = value; return this; } public ArrayList getScriptButtonClickedBetween() { return ScriptButtonClickedBetween; } public QO_CustomSettingQuery setScriptButtonClickedBetween(ArrayList value) { this.ScriptButtonClickedBetween = value; return this; } public ArrayList getScriptButtonClickedIn() { return ScriptButtonClickedIn; } public QO_CustomSettingQuery setScriptButtonClickedIn(ArrayList value) { this.ScriptButtonClickedIn = value; return this; } public String getScriptReadData() { return ScriptReadData; } public QO_CustomSettingQuery setScriptReadData(String value) { this.ScriptReadData = value; return this; } public String getScriptReadDataStartsWith() { return ScriptReadDataStartsWith; } public QO_CustomSettingQuery setScriptReadDataStartsWith(String value) { this.ScriptReadDataStartsWith = value; return this; } public String getScriptReadDataEndsWith() { return ScriptReadDataEndsWith; } public QO_CustomSettingQuery setScriptReadDataEndsWith(String value) { this.ScriptReadDataEndsWith = value; return this; } public String getScriptReadDataContains() { return ScriptReadDataContains; } public QO_CustomSettingQuery setScriptReadDataContains(String value) { this.ScriptReadDataContains = value; return this; } public String getScriptReadDataLike() { return ScriptReadDataLike; } public QO_CustomSettingQuery setScriptReadDataLike(String value) { this.ScriptReadDataLike = value; return this; } public ArrayList getScriptReadDataBetween() { return ScriptReadDataBetween; } public QO_CustomSettingQuery setScriptReadDataBetween(ArrayList value) { this.ScriptReadDataBetween = value; return this; } public ArrayList getScriptReadDataIn() { return ScriptReadDataIn; } public QO_CustomSettingQuery setScriptReadDataIn(ArrayList value) { this.ScriptReadDataIn = value; return this; } public UUID getSyPluginRecID() { return SY_Plugin_RecID; } public QO_CustomSettingQuery setSyPluginRecID(UUID value) { this.SY_Plugin_RecID = value; return this; } public ArrayList getSyPluginRecIDIn() { return SY_Plugin_RecIDIn; } public QO_CustomSettingQuery setSyPluginRecIDIn(ArrayList value) { this.SY_Plugin_RecIDIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class QO_CustomSettingValuesQuery extends QueryDb implements IReturn> { public String SettingValueID = null; public String SettingValueIDStartsWith = null; public String SettingValueIDEndsWith = null; public String SettingValueIDContains = null; public String SettingValueIDLike = null; public ArrayList SettingValueIDBetween = null; public ArrayList SettingValueIDIn = null; public String SettingID = null; public String SettingIDStartsWith = null; public String SettingIDEndsWith = null; public String SettingIDContains = null; public String SettingIDLike = null; public ArrayList SettingIDBetween = null; public ArrayList SettingIDIn = null; public String QuoteID = null; public String QuoteIDStartsWith = null; public String QuoteIDEndsWith = null; public String QuoteIDContains = null; public String QuoteIDLike = null; public ArrayList QuoteIDBetween = null; public ArrayList QuoteIDIn = null; public String Contents = null; public String ContentsStartsWith = null; public String ContentsEndsWith = null; public String ContentsContains = null; public String ContentsLike = null; public ArrayList ContentsBetween = null; public ArrayList ContentsIn = null; public Date LastSavedDateTime = null; public Date LastSavedDateTimeGreaterThanOrEqualTo = null; public Date LastSavedDateTimeGreaterThan = null; public Date LastSavedDateTimeLessThan = null; public Date LastSavedDateTimeLessThanOrEqualTo = null; public Date LastSavedDateTimeNotEqualTo = null; public ArrayList LastSavedDateTimeBetween = null; public ArrayList LastSavedDateTimeIn = null; public String getSettingValueID() { return SettingValueID; } public QO_CustomSettingValuesQuery setSettingValueID(String value) { this.SettingValueID = value; return this; } public String getSettingValueIDStartsWith() { return SettingValueIDStartsWith; } public QO_CustomSettingValuesQuery setSettingValueIDStartsWith(String value) { this.SettingValueIDStartsWith = value; return this; } public String getSettingValueIDEndsWith() { return SettingValueIDEndsWith; } public QO_CustomSettingValuesQuery setSettingValueIDEndsWith(String value) { this.SettingValueIDEndsWith = value; return this; } public String getSettingValueIDContains() { return SettingValueIDContains; } public QO_CustomSettingValuesQuery setSettingValueIDContains(String value) { this.SettingValueIDContains = value; return this; } public String getSettingValueIDLike() { return SettingValueIDLike; } public QO_CustomSettingValuesQuery setSettingValueIDLike(String value) { this.SettingValueIDLike = value; return this; } public ArrayList getSettingValueIDBetween() { return SettingValueIDBetween; } public QO_CustomSettingValuesQuery setSettingValueIDBetween(ArrayList value) { this.SettingValueIDBetween = value; return this; } public ArrayList getSettingValueIDIn() { return SettingValueIDIn; } public QO_CustomSettingValuesQuery setSettingValueIDIn(ArrayList value) { this.SettingValueIDIn = value; return this; } public String getSettingID() { return SettingID; } public QO_CustomSettingValuesQuery setSettingID(String value) { this.SettingID = value; return this; } public String getSettingIDStartsWith() { return SettingIDStartsWith; } public QO_CustomSettingValuesQuery setSettingIDStartsWith(String value) { this.SettingIDStartsWith = value; return this; } public String getSettingIDEndsWith() { return SettingIDEndsWith; } public QO_CustomSettingValuesQuery setSettingIDEndsWith(String value) { this.SettingIDEndsWith = value; return this; } public String getSettingIDContains() { return SettingIDContains; } public QO_CustomSettingValuesQuery setSettingIDContains(String value) { this.SettingIDContains = value; return this; } public String getSettingIDLike() { return SettingIDLike; } public QO_CustomSettingValuesQuery setSettingIDLike(String value) { this.SettingIDLike = value; return this; } public ArrayList getSettingIDBetween() { return SettingIDBetween; } public QO_CustomSettingValuesQuery setSettingIDBetween(ArrayList value) { this.SettingIDBetween = value; return this; } public ArrayList getSettingIDIn() { return SettingIDIn; } public QO_CustomSettingValuesQuery setSettingIDIn(ArrayList value) { this.SettingIDIn = value; return this; } public String getQuoteID() { return QuoteID; } public QO_CustomSettingValuesQuery setQuoteID(String value) { this.QuoteID = value; return this; } public String getQuoteIDStartsWith() { return QuoteIDStartsWith; } public QO_CustomSettingValuesQuery setQuoteIDStartsWith(String value) { this.QuoteIDStartsWith = value; return this; } public String getQuoteIDEndsWith() { return QuoteIDEndsWith; } public QO_CustomSettingValuesQuery setQuoteIDEndsWith(String value) { this.QuoteIDEndsWith = value; return this; } public String getQuoteIDContains() { return QuoteIDContains; } public QO_CustomSettingValuesQuery setQuoteIDContains(String value) { this.QuoteIDContains = value; return this; } public String getQuoteIDLike() { return QuoteIDLike; } public QO_CustomSettingValuesQuery setQuoteIDLike(String value) { this.QuoteIDLike = value; return this; } public ArrayList getQuoteIDBetween() { return QuoteIDBetween; } public QO_CustomSettingValuesQuery setQuoteIDBetween(ArrayList value) { this.QuoteIDBetween = value; return this; } public ArrayList getQuoteIDIn() { return QuoteIDIn; } public QO_CustomSettingValuesQuery setQuoteIDIn(ArrayList value) { this.QuoteIDIn = value; return this; } public String getContents() { return Contents; } public QO_CustomSettingValuesQuery setContents(String value) { this.Contents = value; return this; } public String getContentsStartsWith() { return ContentsStartsWith; } public QO_CustomSettingValuesQuery setContentsStartsWith(String value) { this.ContentsStartsWith = value; return this; } public String getContentsEndsWith() { return ContentsEndsWith; } public QO_CustomSettingValuesQuery setContentsEndsWith(String value) { this.ContentsEndsWith = value; return this; } public String getContentsContains() { return ContentsContains; } public QO_CustomSettingValuesQuery setContentsContains(String value) { this.ContentsContains = value; return this; } public String getContentsLike() { return ContentsLike; } public QO_CustomSettingValuesQuery setContentsLike(String value) { this.ContentsLike = value; return this; } public ArrayList getContentsBetween() { return ContentsBetween; } public QO_CustomSettingValuesQuery setContentsBetween(ArrayList value) { this.ContentsBetween = value; return this; } public ArrayList getContentsIn() { return ContentsIn; } public QO_CustomSettingValuesQuery setContentsIn(ArrayList value) { this.ContentsIn = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public QO_CustomSettingValuesQuery setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getLastSavedDateTimeGreaterThanOrEqualTo() { return LastSavedDateTimeGreaterThanOrEqualTo; } public QO_CustomSettingValuesQuery setLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.LastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeGreaterThan() { return LastSavedDateTimeGreaterThan; } public QO_CustomSettingValuesQuery setLastSavedDateTimeGreaterThan(Date value) { this.LastSavedDateTimeGreaterThan = value; return this; } public Date getLastSavedDateTimeLessThan() { return LastSavedDateTimeLessThan; } public QO_CustomSettingValuesQuery setLastSavedDateTimeLessThan(Date value) { this.LastSavedDateTimeLessThan = value; return this; } public Date getLastSavedDateTimeLessThanOrEqualTo() { return LastSavedDateTimeLessThanOrEqualTo; } public QO_CustomSettingValuesQuery setLastSavedDateTimeLessThanOrEqualTo(Date value) { this.LastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeNotEqualTo() { return LastSavedDateTimeNotEqualTo; } public QO_CustomSettingValuesQuery setLastSavedDateTimeNotEqualTo(Date value) { this.LastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getLastSavedDateTimeBetween() { return LastSavedDateTimeBetween; } public QO_CustomSettingValuesQuery setLastSavedDateTimeBetween(ArrayList value) { this.LastSavedDateTimeBetween = value; return this; } public ArrayList getLastSavedDateTimeIn() { return LastSavedDateTimeIn; } public QO_CustomSettingValuesQuery setLastSavedDateTimeIn(ArrayList value) { this.LastSavedDateTimeIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class QO_DocumentsQuery extends QueryDb implements IReturn> { public String RecID = null; public String RecIDStartsWith = null; public String RecIDEndsWith = null; public String RecIDContains = null; public String RecIDLike = null; public ArrayList RecIDBetween = null; public ArrayList RecIDIn = null; public String InvoiceID = null; public String InvoiceIDStartsWith = null; public String InvoiceIDEndsWith = null; public String InvoiceIDContains = null; public String InvoiceIDLike = null; public ArrayList InvoiceIDBetween = null; public ArrayList InvoiceIDIn = null; public String DocumentTypeID = null; public String DocumentTypeIDStartsWith = null; public String DocumentTypeIDEndsWith = null; public String DocumentTypeIDContains = null; public String DocumentTypeIDLike = null; public ArrayList DocumentTypeIDBetween = null; public ArrayList DocumentTypeIDIn = null; public Date LastSavedDateTime = null; public Date LastSavedDateTimeGreaterThanOrEqualTo = null; public Date LastSavedDateTimeGreaterThan = null; public Date LastSavedDateTimeLessThan = null; public Date LastSavedDateTimeLessThanOrEqualTo = null; public Date LastSavedDateTimeNotEqualTo = null; public ArrayList LastSavedDateTimeBetween = null; public ArrayList LastSavedDateTimeIn = null; public String LastSavedByStaffID = null; public String LastSavedByStaffIDStartsWith = null; public String LastSavedByStaffIDEndsWith = null; public String LastSavedByStaffIDContains = null; public String LastSavedByStaffIDLike = null; public ArrayList LastSavedByStaffIDBetween = null; public ArrayList LastSavedByStaffIDIn = null; public ArrayList FileBinary = null; public String Description = null; public String DescriptionStartsWith = null; public String DescriptionEndsWith = null; public String DescriptionContains = null; public String DescriptionLike = null; public ArrayList DescriptionBetween = null; public ArrayList DescriptionIn = null; public String PhysicalFileName = null; public String PhysicalFileNameStartsWith = null; public String PhysicalFileNameEndsWith = null; public String PhysicalFileNameContains = null; public String PhysicalFileNameLike = null; public ArrayList PhysicalFileNameBetween = null; public ArrayList PhysicalFileNameIn = null; public Integer ItemNo = null; public Integer ItemNoGreaterThanOrEqualTo = null; public Integer ItemNoGreaterThan = null; public Integer ItemNoLessThan = null; public Integer ItemNoLessThanOrEqualTo = null; public Integer ItemNoNotEqualTo = null; public ArrayList ItemNoBetween = null; public ArrayList ItemNoIn = null; public String getRecID() { return RecID; } public QO_DocumentsQuery setRecID(String value) { this.RecID = value; return this; } public String getRecIDStartsWith() { return RecIDStartsWith; } public QO_DocumentsQuery setRecIDStartsWith(String value) { this.RecIDStartsWith = value; return this; } public String getRecIDEndsWith() { return RecIDEndsWith; } public QO_DocumentsQuery setRecIDEndsWith(String value) { this.RecIDEndsWith = value; return this; } public String getRecIDContains() { return RecIDContains; } public QO_DocumentsQuery setRecIDContains(String value) { this.RecIDContains = value; return this; } public String getRecIDLike() { return RecIDLike; } public QO_DocumentsQuery setRecIDLike(String value) { this.RecIDLike = value; return this; } public ArrayList getRecIDBetween() { return RecIDBetween; } public QO_DocumentsQuery setRecIDBetween(ArrayList value) { this.RecIDBetween = value; return this; } public ArrayList getRecIDIn() { return RecIDIn; } public QO_DocumentsQuery setRecIDIn(ArrayList value) { this.RecIDIn = value; return this; } public String getInvoiceID() { return InvoiceID; } public QO_DocumentsQuery setInvoiceID(String value) { this.InvoiceID = value; return this; } public String getInvoiceIDStartsWith() { return InvoiceIDStartsWith; } public QO_DocumentsQuery setInvoiceIDStartsWith(String value) { this.InvoiceIDStartsWith = value; return this; } public String getInvoiceIDEndsWith() { return InvoiceIDEndsWith; } public QO_DocumentsQuery setInvoiceIDEndsWith(String value) { this.InvoiceIDEndsWith = value; return this; } public String getInvoiceIDContains() { return InvoiceIDContains; } public QO_DocumentsQuery setInvoiceIDContains(String value) { this.InvoiceIDContains = value; return this; } public String getInvoiceIDLike() { return InvoiceIDLike; } public QO_DocumentsQuery setInvoiceIDLike(String value) { this.InvoiceIDLike = value; return this; } public ArrayList getInvoiceIDBetween() { return InvoiceIDBetween; } public QO_DocumentsQuery setInvoiceIDBetween(ArrayList value) { this.InvoiceIDBetween = value; return this; } public ArrayList getInvoiceIDIn() { return InvoiceIDIn; } public QO_DocumentsQuery setInvoiceIDIn(ArrayList value) { this.InvoiceIDIn = value; return this; } public String getDocumentTypeID() { return DocumentTypeID; } public QO_DocumentsQuery setDocumentTypeID(String value) { this.DocumentTypeID = value; return this; } public String getDocumentTypeIDStartsWith() { return DocumentTypeIDStartsWith; } public QO_DocumentsQuery setDocumentTypeIDStartsWith(String value) { this.DocumentTypeIDStartsWith = value; return this; } public String getDocumentTypeIDEndsWith() { return DocumentTypeIDEndsWith; } public QO_DocumentsQuery setDocumentTypeIDEndsWith(String value) { this.DocumentTypeIDEndsWith = value; return this; } public String getDocumentTypeIDContains() { return DocumentTypeIDContains; } public QO_DocumentsQuery setDocumentTypeIDContains(String value) { this.DocumentTypeIDContains = value; return this; } public String getDocumentTypeIDLike() { return DocumentTypeIDLike; } public QO_DocumentsQuery setDocumentTypeIDLike(String value) { this.DocumentTypeIDLike = value; return this; } public ArrayList getDocumentTypeIDBetween() { return DocumentTypeIDBetween; } public QO_DocumentsQuery setDocumentTypeIDBetween(ArrayList value) { this.DocumentTypeIDBetween = value; return this; } public ArrayList getDocumentTypeIDIn() { return DocumentTypeIDIn; } public QO_DocumentsQuery setDocumentTypeIDIn(ArrayList value) { this.DocumentTypeIDIn = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public QO_DocumentsQuery setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getLastSavedDateTimeGreaterThanOrEqualTo() { return LastSavedDateTimeGreaterThanOrEqualTo; } public QO_DocumentsQuery setLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.LastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeGreaterThan() { return LastSavedDateTimeGreaterThan; } public QO_DocumentsQuery setLastSavedDateTimeGreaterThan(Date value) { this.LastSavedDateTimeGreaterThan = value; return this; } public Date getLastSavedDateTimeLessThan() { return LastSavedDateTimeLessThan; } public QO_DocumentsQuery setLastSavedDateTimeLessThan(Date value) { this.LastSavedDateTimeLessThan = value; return this; } public Date getLastSavedDateTimeLessThanOrEqualTo() { return LastSavedDateTimeLessThanOrEqualTo; } public QO_DocumentsQuery setLastSavedDateTimeLessThanOrEqualTo(Date value) { this.LastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeNotEqualTo() { return LastSavedDateTimeNotEqualTo; } public QO_DocumentsQuery setLastSavedDateTimeNotEqualTo(Date value) { this.LastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getLastSavedDateTimeBetween() { return LastSavedDateTimeBetween; } public QO_DocumentsQuery setLastSavedDateTimeBetween(ArrayList value) { this.LastSavedDateTimeBetween = value; return this; } public ArrayList getLastSavedDateTimeIn() { return LastSavedDateTimeIn; } public QO_DocumentsQuery setLastSavedDateTimeIn(ArrayList value) { this.LastSavedDateTimeIn = value; return this; } public String getLastSavedByStaffID() { return LastSavedByStaffID; } public QO_DocumentsQuery setLastSavedByStaffID(String value) { this.LastSavedByStaffID = value; return this; } public String getLastSavedByStaffIDStartsWith() { return LastSavedByStaffIDStartsWith; } public QO_DocumentsQuery setLastSavedByStaffIDStartsWith(String value) { this.LastSavedByStaffIDStartsWith = value; return this; } public String getLastSavedByStaffIDEndsWith() { return LastSavedByStaffIDEndsWith; } public QO_DocumentsQuery setLastSavedByStaffIDEndsWith(String value) { this.LastSavedByStaffIDEndsWith = value; return this; } public String getLastSavedByStaffIDContains() { return LastSavedByStaffIDContains; } public QO_DocumentsQuery setLastSavedByStaffIDContains(String value) { this.LastSavedByStaffIDContains = value; return this; } public String getLastSavedByStaffIDLike() { return LastSavedByStaffIDLike; } public QO_DocumentsQuery setLastSavedByStaffIDLike(String value) { this.LastSavedByStaffIDLike = value; return this; } public ArrayList getLastSavedByStaffIDBetween() { return LastSavedByStaffIDBetween; } public QO_DocumentsQuery setLastSavedByStaffIDBetween(ArrayList value) { this.LastSavedByStaffIDBetween = value; return this; } public ArrayList getLastSavedByStaffIDIn() { return LastSavedByStaffIDIn; } public QO_DocumentsQuery setLastSavedByStaffIDIn(ArrayList value) { this.LastSavedByStaffIDIn = value; return this; } public ArrayList getFileBinary() { return FileBinary; } public QO_DocumentsQuery setFileBinary(ArrayList value) { this.FileBinary = value; return this; } public String getDescription() { return Description; } public QO_DocumentsQuery setDescription(String value) { this.Description = value; return this; } public String getDescriptionStartsWith() { return DescriptionStartsWith; } public QO_DocumentsQuery setDescriptionStartsWith(String value) { this.DescriptionStartsWith = value; return this; } public String getDescriptionEndsWith() { return DescriptionEndsWith; } public QO_DocumentsQuery setDescriptionEndsWith(String value) { this.DescriptionEndsWith = value; return this; } public String getDescriptionContains() { return DescriptionContains; } public QO_DocumentsQuery setDescriptionContains(String value) { this.DescriptionContains = value; return this; } public String getDescriptionLike() { return DescriptionLike; } public QO_DocumentsQuery setDescriptionLike(String value) { this.DescriptionLike = value; return this; } public ArrayList getDescriptionBetween() { return DescriptionBetween; } public QO_DocumentsQuery setDescriptionBetween(ArrayList value) { this.DescriptionBetween = value; return this; } public ArrayList getDescriptionIn() { return DescriptionIn; } public QO_DocumentsQuery setDescriptionIn(ArrayList value) { this.DescriptionIn = value; return this; } public String getPhysicalFileName() { return PhysicalFileName; } public QO_DocumentsQuery setPhysicalFileName(String value) { this.PhysicalFileName = value; return this; } public String getPhysicalFileNameStartsWith() { return PhysicalFileNameStartsWith; } public QO_DocumentsQuery setPhysicalFileNameStartsWith(String value) { this.PhysicalFileNameStartsWith = value; return this; } public String getPhysicalFileNameEndsWith() { return PhysicalFileNameEndsWith; } public QO_DocumentsQuery setPhysicalFileNameEndsWith(String value) { this.PhysicalFileNameEndsWith = value; return this; } public String getPhysicalFileNameContains() { return PhysicalFileNameContains; } public QO_DocumentsQuery setPhysicalFileNameContains(String value) { this.PhysicalFileNameContains = value; return this; } public String getPhysicalFileNameLike() { return PhysicalFileNameLike; } public QO_DocumentsQuery setPhysicalFileNameLike(String value) { this.PhysicalFileNameLike = value; return this; } public ArrayList getPhysicalFileNameBetween() { return PhysicalFileNameBetween; } public QO_DocumentsQuery setPhysicalFileNameBetween(ArrayList value) { this.PhysicalFileNameBetween = value; return this; } public ArrayList getPhysicalFileNameIn() { return PhysicalFileNameIn; } public QO_DocumentsQuery setPhysicalFileNameIn(ArrayList value) { this.PhysicalFileNameIn = value; return this; } public Integer getItemNo() { return ItemNo; } public QO_DocumentsQuery setItemNo(Integer value) { this.ItemNo = value; return this; } public Integer getItemNoGreaterThanOrEqualTo() { return ItemNoGreaterThanOrEqualTo; } public QO_DocumentsQuery setItemNoGreaterThanOrEqualTo(Integer value) { this.ItemNoGreaterThanOrEqualTo = value; return this; } public Integer getItemNoGreaterThan() { return ItemNoGreaterThan; } public QO_DocumentsQuery setItemNoGreaterThan(Integer value) { this.ItemNoGreaterThan = value; return this; } public Integer getItemNoLessThan() { return ItemNoLessThan; } public QO_DocumentsQuery setItemNoLessThan(Integer value) { this.ItemNoLessThan = value; return this; } public Integer getItemNoLessThanOrEqualTo() { return ItemNoLessThanOrEqualTo; } public QO_DocumentsQuery setItemNoLessThanOrEqualTo(Integer value) { this.ItemNoLessThanOrEqualTo = value; return this; } public Integer getItemNoNotEqualTo() { return ItemNoNotEqualTo; } public QO_DocumentsQuery setItemNoNotEqualTo(Integer value) { this.ItemNoNotEqualTo = value; return this; } public ArrayList getItemNoBetween() { return ItemNoBetween; } public QO_DocumentsQuery setItemNoBetween(ArrayList value) { this.ItemNoBetween = value; return this; } public ArrayList getItemNoIn() { return ItemNoIn; } public QO_DocumentsQuery setItemNoIn(ArrayList value) { this.ItemNoIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class QO_EmailLogQuery extends QueryDb implements IReturn> { public String EmailLogID = null; public String EmailLogIDStartsWith = null; public String EmailLogIDEndsWith = null; public String EmailLogIDContains = null; public String EmailLogIDLike = null; public ArrayList EmailLogIDBetween = null; public ArrayList EmailLogIDIn = null; public String InvoiceHistoryID = null; public String InvoiceHistoryIDStartsWith = null; public String InvoiceHistoryIDEndsWith = null; public String InvoiceHistoryIDContains = null; public String InvoiceHistoryIDLike = null; public ArrayList InvoiceHistoryIDBetween = null; public ArrayList InvoiceHistoryIDIn = null; public Date EmailDateTime = null; public Date EmailDateTimeGreaterThanOrEqualTo = null; public Date EmailDateTimeGreaterThan = null; public Date EmailDateTimeLessThan = null; public Date EmailDateTimeLessThanOrEqualTo = null; public Date EmailDateTimeNotEqualTo = null; public ArrayList EmailDateTimeBetween = null; public ArrayList EmailDateTimeIn = null; public String From = null; public String FromStartsWith = null; public String FromEndsWith = null; public String FromContains = null; public String FromLike = null; public ArrayList FromBetween = null; public ArrayList FromIn = null; public String To = null; public String ToStartsWith = null; public String ToEndsWith = null; public String ToContains = null; public String ToLike = null; public ArrayList ToBetween = null; public ArrayList ToIn = null; public String CC = null; public String CCStartsWith = null; public String CCEndsWith = null; public String CCContains = null; public String CCLike = null; public ArrayList CCBetween = null; public ArrayList CCIn = null; public String BCC = null; public String BCCStartsWith = null; public String BCCEndsWith = null; public String BCCContains = null; public String BCCLike = null; public ArrayList BCCBetween = null; public ArrayList BCCIn = null; public String Attachments = null; public String AttachmentsStartsWith = null; public String AttachmentsEndsWith = null; public String AttachmentsContains = null; public String AttachmentsLike = null; public ArrayList AttachmentsBetween = null; public ArrayList AttachmentsIn = null; public String FileID = null; public String FileIDStartsWith = null; public String FileIDEndsWith = null; public String FileIDContains = null; public String FileIDLike = null; public ArrayList FileIDBetween = null; public ArrayList FileIDIn = null; public String Subject = null; public String SubjectStartsWith = null; public String SubjectEndsWith = null; public String SubjectContains = null; public String SubjectLike = null; public ArrayList SubjectBetween = null; public ArrayList SubjectIn = null; public String Body = null; public String BodyStartsWith = null; public String BodyEndsWith = null; public String BodyContains = null; public String BodyLike = null; public ArrayList BodyBetween = null; public ArrayList BodyIn = null; public String InvoiceID = null; public String InvoiceIDStartsWith = null; public String InvoiceIDEndsWith = null; public String InvoiceIDContains = null; public String InvoiceIDLike = null; public ArrayList InvoiceIDBetween = null; public ArrayList InvoiceIDIn = null; public String StaffID = null; public String StaffIDStartsWith = null; public String StaffIDEndsWith = null; public String StaffIDContains = null; public String StaffIDLike = null; public ArrayList StaffIDBetween = null; public ArrayList StaffIDIn = null; public String EM_Main_RecID = null; public String EM_Main_RecIDStartsWith = null; public String EM_Main_RecIDEndsWith = null; public String EM_Main_RecIDContains = null; public String EM_Main_RecIDLike = null; public ArrayList EM_Main_RecIDBetween = null; public ArrayList EM_Main_RecIDIn = null; public Boolean RequestReadReceipt = null; public String getEmailLogID() { return EmailLogID; } public QO_EmailLogQuery setEmailLogID(String value) { this.EmailLogID = value; return this; } public String getEmailLogIDStartsWith() { return EmailLogIDStartsWith; } public QO_EmailLogQuery setEmailLogIDStartsWith(String value) { this.EmailLogIDStartsWith = value; return this; } public String getEmailLogIDEndsWith() { return EmailLogIDEndsWith; } public QO_EmailLogQuery setEmailLogIDEndsWith(String value) { this.EmailLogIDEndsWith = value; return this; } public String getEmailLogIDContains() { return EmailLogIDContains; } public QO_EmailLogQuery setEmailLogIDContains(String value) { this.EmailLogIDContains = value; return this; } public String getEmailLogIDLike() { return EmailLogIDLike; } public QO_EmailLogQuery setEmailLogIDLike(String value) { this.EmailLogIDLike = value; return this; } public ArrayList getEmailLogIDBetween() { return EmailLogIDBetween; } public QO_EmailLogQuery setEmailLogIDBetween(ArrayList value) { this.EmailLogIDBetween = value; return this; } public ArrayList getEmailLogIDIn() { return EmailLogIDIn; } public QO_EmailLogQuery setEmailLogIDIn(ArrayList value) { this.EmailLogIDIn = value; return this; } public String getInvoiceHistoryID() { return InvoiceHistoryID; } public QO_EmailLogQuery setInvoiceHistoryID(String value) { this.InvoiceHistoryID = value; return this; } public String getInvoiceHistoryIDStartsWith() { return InvoiceHistoryIDStartsWith; } public QO_EmailLogQuery setInvoiceHistoryIDStartsWith(String value) { this.InvoiceHistoryIDStartsWith = value; return this; } public String getInvoiceHistoryIDEndsWith() { return InvoiceHistoryIDEndsWith; } public QO_EmailLogQuery setInvoiceHistoryIDEndsWith(String value) { this.InvoiceHistoryIDEndsWith = value; return this; } public String getInvoiceHistoryIDContains() { return InvoiceHistoryIDContains; } public QO_EmailLogQuery setInvoiceHistoryIDContains(String value) { this.InvoiceHistoryIDContains = value; return this; } public String getInvoiceHistoryIDLike() { return InvoiceHistoryIDLike; } public QO_EmailLogQuery setInvoiceHistoryIDLike(String value) { this.InvoiceHistoryIDLike = value; return this; } public ArrayList getInvoiceHistoryIDBetween() { return InvoiceHistoryIDBetween; } public QO_EmailLogQuery setInvoiceHistoryIDBetween(ArrayList value) { this.InvoiceHistoryIDBetween = value; return this; } public ArrayList getInvoiceHistoryIDIn() { return InvoiceHistoryIDIn; } public QO_EmailLogQuery setInvoiceHistoryIDIn(ArrayList value) { this.InvoiceHistoryIDIn = value; return this; } public Date getEmailDateTime() { return EmailDateTime; } public QO_EmailLogQuery setEmailDateTime(Date value) { this.EmailDateTime = value; return this; } public Date getEmailDateTimeGreaterThanOrEqualTo() { return EmailDateTimeGreaterThanOrEqualTo; } public QO_EmailLogQuery setEmailDateTimeGreaterThanOrEqualTo(Date value) { this.EmailDateTimeGreaterThanOrEqualTo = value; return this; } public Date getEmailDateTimeGreaterThan() { return EmailDateTimeGreaterThan; } public QO_EmailLogQuery setEmailDateTimeGreaterThan(Date value) { this.EmailDateTimeGreaterThan = value; return this; } public Date getEmailDateTimeLessThan() { return EmailDateTimeLessThan; } public QO_EmailLogQuery setEmailDateTimeLessThan(Date value) { this.EmailDateTimeLessThan = value; return this; } public Date getEmailDateTimeLessThanOrEqualTo() { return EmailDateTimeLessThanOrEqualTo; } public QO_EmailLogQuery setEmailDateTimeLessThanOrEqualTo(Date value) { this.EmailDateTimeLessThanOrEqualTo = value; return this; } public Date getEmailDateTimeNotEqualTo() { return EmailDateTimeNotEqualTo; } public QO_EmailLogQuery setEmailDateTimeNotEqualTo(Date value) { this.EmailDateTimeNotEqualTo = value; return this; } public ArrayList getEmailDateTimeBetween() { return EmailDateTimeBetween; } public QO_EmailLogQuery setEmailDateTimeBetween(ArrayList value) { this.EmailDateTimeBetween = value; return this; } public ArrayList getEmailDateTimeIn() { return EmailDateTimeIn; } public QO_EmailLogQuery setEmailDateTimeIn(ArrayList value) { this.EmailDateTimeIn = value; return this; } public String getFrom() { return From; } public QO_EmailLogQuery setFrom(String value) { this.From = value; return this; } public String getFromStartsWith() { return FromStartsWith; } public QO_EmailLogQuery setFromStartsWith(String value) { this.FromStartsWith = value; return this; } public String getFromEndsWith() { return FromEndsWith; } public QO_EmailLogQuery setFromEndsWith(String value) { this.FromEndsWith = value; return this; } public String getFromContains() { return FromContains; } public QO_EmailLogQuery setFromContains(String value) { this.FromContains = value; return this; } public String getFromLike() { return FromLike; } public QO_EmailLogQuery setFromLike(String value) { this.FromLike = value; return this; } public ArrayList getFromBetween() { return FromBetween; } public QO_EmailLogQuery setFromBetween(ArrayList value) { this.FromBetween = value; return this; } public ArrayList getFromIn() { return FromIn; } public QO_EmailLogQuery setFromIn(ArrayList value) { this.FromIn = value; return this; } public String getTo() { return To; } public QO_EmailLogQuery setTo(String value) { this.To = value; return this; } public String getToStartsWith() { return ToStartsWith; } public QO_EmailLogQuery setToStartsWith(String value) { this.ToStartsWith = value; return this; } public String getToEndsWith() { return ToEndsWith; } public QO_EmailLogQuery setToEndsWith(String value) { this.ToEndsWith = value; return this; } public String getToContains() { return ToContains; } public QO_EmailLogQuery setToContains(String value) { this.ToContains = value; return this; } public String getToLike() { return ToLike; } public QO_EmailLogQuery setToLike(String value) { this.ToLike = value; return this; } public ArrayList getToBetween() { return ToBetween; } public QO_EmailLogQuery setToBetween(ArrayList value) { this.ToBetween = value; return this; } public ArrayList getToIn() { return ToIn; } public QO_EmailLogQuery setToIn(ArrayList value) { this.ToIn = value; return this; } public String getCc() { return CC; } public QO_EmailLogQuery setCc(String value) { this.CC = value; return this; } public String getCcStartsWith() { return CCStartsWith; } public QO_EmailLogQuery setCcStartsWith(String value) { this.CCStartsWith = value; return this; } public String getCcEndsWith() { return CCEndsWith; } public QO_EmailLogQuery setCcEndsWith(String value) { this.CCEndsWith = value; return this; } public String getCcContains() { return CCContains; } public QO_EmailLogQuery setCcContains(String value) { this.CCContains = value; return this; } public String getCcLike() { return CCLike; } public QO_EmailLogQuery setCcLike(String value) { this.CCLike = value; return this; } public ArrayList getCcBetween() { return CCBetween; } public QO_EmailLogQuery setCcBetween(ArrayList value) { this.CCBetween = value; return this; } public ArrayList getCcIn() { return CCIn; } public QO_EmailLogQuery setCcIn(ArrayList value) { this.CCIn = value; return this; } public String getBcc() { return BCC; } public QO_EmailLogQuery setBcc(String value) { this.BCC = value; return this; } public String getBccStartsWith() { return BCCStartsWith; } public QO_EmailLogQuery setBccStartsWith(String value) { this.BCCStartsWith = value; return this; } public String getBccEndsWith() { return BCCEndsWith; } public QO_EmailLogQuery setBccEndsWith(String value) { this.BCCEndsWith = value; return this; } public String getBccContains() { return BCCContains; } public QO_EmailLogQuery setBccContains(String value) { this.BCCContains = value; return this; } public String getBccLike() { return BCCLike; } public QO_EmailLogQuery setBccLike(String value) { this.BCCLike = value; return this; } public ArrayList getBccBetween() { return BCCBetween; } public QO_EmailLogQuery setBccBetween(ArrayList value) { this.BCCBetween = value; return this; } public ArrayList getBccIn() { return BCCIn; } public QO_EmailLogQuery setBccIn(ArrayList value) { this.BCCIn = value; return this; } public String getAttachments() { return Attachments; } public QO_EmailLogQuery setAttachments(String value) { this.Attachments = value; return this; } public String getAttachmentsStartsWith() { return AttachmentsStartsWith; } public QO_EmailLogQuery setAttachmentsStartsWith(String value) { this.AttachmentsStartsWith = value; return this; } public String getAttachmentsEndsWith() { return AttachmentsEndsWith; } public QO_EmailLogQuery setAttachmentsEndsWith(String value) { this.AttachmentsEndsWith = value; return this; } public String getAttachmentsContains() { return AttachmentsContains; } public QO_EmailLogQuery setAttachmentsContains(String value) { this.AttachmentsContains = value; return this; } public String getAttachmentsLike() { return AttachmentsLike; } public QO_EmailLogQuery setAttachmentsLike(String value) { this.AttachmentsLike = value; return this; } public ArrayList getAttachmentsBetween() { return AttachmentsBetween; } public QO_EmailLogQuery setAttachmentsBetween(ArrayList value) { this.AttachmentsBetween = value; return this; } public ArrayList getAttachmentsIn() { return AttachmentsIn; } public QO_EmailLogQuery setAttachmentsIn(ArrayList value) { this.AttachmentsIn = value; return this; } public String getFileID() { return FileID; } public QO_EmailLogQuery setFileID(String value) { this.FileID = value; return this; } public String getFileIDStartsWith() { return FileIDStartsWith; } public QO_EmailLogQuery setFileIDStartsWith(String value) { this.FileIDStartsWith = value; return this; } public String getFileIDEndsWith() { return FileIDEndsWith; } public QO_EmailLogQuery setFileIDEndsWith(String value) { this.FileIDEndsWith = value; return this; } public String getFileIDContains() { return FileIDContains; } public QO_EmailLogQuery setFileIDContains(String value) { this.FileIDContains = value; return this; } public String getFileIDLike() { return FileIDLike; } public QO_EmailLogQuery setFileIDLike(String value) { this.FileIDLike = value; return this; } public ArrayList getFileIDBetween() { return FileIDBetween; } public QO_EmailLogQuery setFileIDBetween(ArrayList value) { this.FileIDBetween = value; return this; } public ArrayList getFileIDIn() { return FileIDIn; } public QO_EmailLogQuery setFileIDIn(ArrayList value) { this.FileIDIn = value; return this; } public String getSubject() { return Subject; } public QO_EmailLogQuery setSubject(String value) { this.Subject = value; return this; } public String getSubjectStartsWith() { return SubjectStartsWith; } public QO_EmailLogQuery setSubjectStartsWith(String value) { this.SubjectStartsWith = value; return this; } public String getSubjectEndsWith() { return SubjectEndsWith; } public QO_EmailLogQuery setSubjectEndsWith(String value) { this.SubjectEndsWith = value; return this; } public String getSubjectContains() { return SubjectContains; } public QO_EmailLogQuery setSubjectContains(String value) { this.SubjectContains = value; return this; } public String getSubjectLike() { return SubjectLike; } public QO_EmailLogQuery setSubjectLike(String value) { this.SubjectLike = value; return this; } public ArrayList getSubjectBetween() { return SubjectBetween; } public QO_EmailLogQuery setSubjectBetween(ArrayList value) { this.SubjectBetween = value; return this; } public ArrayList getSubjectIn() { return SubjectIn; } public QO_EmailLogQuery setSubjectIn(ArrayList value) { this.SubjectIn = value; return this; } public String getBody() { return Body; } public QO_EmailLogQuery setBody(String value) { this.Body = value; return this; } public String getBodyStartsWith() { return BodyStartsWith; } public QO_EmailLogQuery setBodyStartsWith(String value) { this.BodyStartsWith = value; return this; } public String getBodyEndsWith() { return BodyEndsWith; } public QO_EmailLogQuery setBodyEndsWith(String value) { this.BodyEndsWith = value; return this; } public String getBodyContains() { return BodyContains; } public QO_EmailLogQuery setBodyContains(String value) { this.BodyContains = value; return this; } public String getBodyLike() { return BodyLike; } public QO_EmailLogQuery setBodyLike(String value) { this.BodyLike = value; return this; } public ArrayList getBodyBetween() { return BodyBetween; } public QO_EmailLogQuery setBodyBetween(ArrayList value) { this.BodyBetween = value; return this; } public ArrayList getBodyIn() { return BodyIn; } public QO_EmailLogQuery setBodyIn(ArrayList value) { this.BodyIn = value; return this; } public String getInvoiceID() { return InvoiceID; } public QO_EmailLogQuery setInvoiceID(String value) { this.InvoiceID = value; return this; } public String getInvoiceIDStartsWith() { return InvoiceIDStartsWith; } public QO_EmailLogQuery setInvoiceIDStartsWith(String value) { this.InvoiceIDStartsWith = value; return this; } public String getInvoiceIDEndsWith() { return InvoiceIDEndsWith; } public QO_EmailLogQuery setInvoiceIDEndsWith(String value) { this.InvoiceIDEndsWith = value; return this; } public String getInvoiceIDContains() { return InvoiceIDContains; } public QO_EmailLogQuery setInvoiceIDContains(String value) { this.InvoiceIDContains = value; return this; } public String getInvoiceIDLike() { return InvoiceIDLike; } public QO_EmailLogQuery setInvoiceIDLike(String value) { this.InvoiceIDLike = value; return this; } public ArrayList getInvoiceIDBetween() { return InvoiceIDBetween; } public QO_EmailLogQuery setInvoiceIDBetween(ArrayList value) { this.InvoiceIDBetween = value; return this; } public ArrayList getInvoiceIDIn() { return InvoiceIDIn; } public QO_EmailLogQuery setInvoiceIDIn(ArrayList value) { this.InvoiceIDIn = value; return this; } public String getStaffID() { return StaffID; } public QO_EmailLogQuery setStaffID(String value) { this.StaffID = value; return this; } public String getStaffIDStartsWith() { return StaffIDStartsWith; } public QO_EmailLogQuery setStaffIDStartsWith(String value) { this.StaffIDStartsWith = value; return this; } public String getStaffIDEndsWith() { return StaffIDEndsWith; } public QO_EmailLogQuery setStaffIDEndsWith(String value) { this.StaffIDEndsWith = value; return this; } public String getStaffIDContains() { return StaffIDContains; } public QO_EmailLogQuery setStaffIDContains(String value) { this.StaffIDContains = value; return this; } public String getStaffIDLike() { return StaffIDLike; } public QO_EmailLogQuery setStaffIDLike(String value) { this.StaffIDLike = value; return this; } public ArrayList getStaffIDBetween() { return StaffIDBetween; } public QO_EmailLogQuery setStaffIDBetween(ArrayList value) { this.StaffIDBetween = value; return this; } public ArrayList getStaffIDIn() { return StaffIDIn; } public QO_EmailLogQuery setStaffIDIn(ArrayList value) { this.StaffIDIn = value; return this; } public String getEmMainRecID() { return EM_Main_RecID; } public QO_EmailLogQuery setEmMainRecID(String value) { this.EM_Main_RecID = value; return this; } public String getEmMainRecIDStartsWith() { return EM_Main_RecIDStartsWith; } public QO_EmailLogQuery setEmMainRecIDStartsWith(String value) { this.EM_Main_RecIDStartsWith = value; return this; } public String getEmMainRecIDEndsWith() { return EM_Main_RecIDEndsWith; } public QO_EmailLogQuery setEmMainRecIDEndsWith(String value) { this.EM_Main_RecIDEndsWith = value; return this; } public String getEmMainRecIDContains() { return EM_Main_RecIDContains; } public QO_EmailLogQuery setEmMainRecIDContains(String value) { this.EM_Main_RecIDContains = value; return this; } public String getEmMainRecIDLike() { return EM_Main_RecIDLike; } public QO_EmailLogQuery setEmMainRecIDLike(String value) { this.EM_Main_RecIDLike = value; return this; } public ArrayList getEmMainRecIDBetween() { return EM_Main_RecIDBetween; } public QO_EmailLogQuery setEmMainRecIDBetween(ArrayList value) { this.EM_Main_RecIDBetween = value; return this; } public ArrayList getEmMainRecIDIn() { return EM_Main_RecIDIn; } public QO_EmailLogQuery setEmMainRecIDIn(ArrayList value) { this.EM_Main_RecIDIn = value; return this; } public Boolean isRequestReadReceipt() { return RequestReadReceipt; } public QO_EmailLogQuery setRequestReadReceipt(Boolean value) { this.RequestReadReceipt = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class QO_HistoryQuery extends QueryDb implements IReturn> { public String InvoiceHistoryID = null; public String InvoiceHistoryIDStartsWith = null; public String InvoiceHistoryIDEndsWith = null; public String InvoiceHistoryIDContains = null; public String InvoiceHistoryIDLike = null; public ArrayList InvoiceHistoryIDBetween = null; public ArrayList InvoiceHistoryIDIn = null; public String InvoiceID = null; public String InvoiceIDStartsWith = null; public String InvoiceIDEndsWith = null; public String InvoiceIDContains = null; public String InvoiceIDLike = null; public ArrayList InvoiceIDBetween = null; public ArrayList InvoiceIDIn = null; public String LastModifiedBy = null; public String LastModifiedByStartsWith = null; public String LastModifiedByEndsWith = null; public String LastModifiedByContains = null; public String LastModifiedByLike = null; public ArrayList LastModifiedByBetween = null; public ArrayList LastModifiedByIn = null; public Date RecordDate = null; public Date RecordDateGreaterThanOrEqualTo = null; public Date RecordDateGreaterThan = null; public Date RecordDateLessThan = null; public Date RecordDateLessThanOrEqualTo = null; public Date RecordDateNotEqualTo = null; public ArrayList RecordDateBetween = null; public ArrayList RecordDateIn = null; public String Ref = null; public String RefStartsWith = null; public String RefEndsWith = null; public String RefContains = null; public String RefLike = null; public ArrayList RefBetween = null; public ArrayList RefIn = null; public Short HistoryNo = null; public Short HistoryNoGreaterThanOrEqualTo = null; public Short HistoryNoGreaterThan = null; public Short HistoryNoLessThan = null; public Short HistoryNoLessThanOrEqualTo = null; public Short HistoryNoNotEqualTo = null; public ArrayList HistoryNoBetween = null; public ArrayList HistoryNoIn = null; public BigDecimal HistoryTotal = null; public BigDecimal HistoryTotalGreaterThanOrEqualTo = null; public BigDecimal HistoryTotalGreaterThan = null; public BigDecimal HistoryTotalLessThan = null; public BigDecimal HistoryTotalLessThanOrEqualTo = null; public BigDecimal HistoryTotalNotEqualTo = null; public ArrayList HistoryTotalBetween = null; public ArrayList HistoryTotalIn = null; public Boolean DocketPrinted = null; public String DelAddress1 = null; public String DelAddress1StartsWith = null; public String DelAddress1EndsWith = null; public String DelAddress1Contains = null; public String DelAddress1Like = null; public ArrayList DelAddress1Between = null; public ArrayList DelAddress1In = null; public String DelAddress2 = null; public String DelAddress2StartsWith = null; public String DelAddress2EndsWith = null; public String DelAddress2Contains = null; public String DelAddress2Like = null; public ArrayList DelAddress2Between = null; public ArrayList DelAddress2In = null; public String DelAddress3 = null; public String DelAddress3StartsWith = null; public String DelAddress3EndsWith = null; public String DelAddress3Contains = null; public String DelAddress3Like = null; public ArrayList DelAddress3Between = null; public ArrayList DelAddress3In = null; public String DelAddress4 = null; public String DelAddress4StartsWith = null; public String DelAddress4EndsWith = null; public String DelAddress4Contains = null; public String DelAddress4Like = null; public ArrayList DelAddress4Between = null; public ArrayList DelAddress4In = null; public String PostCode = null; public String PostCodeStartsWith = null; public String PostCodeEndsWith = null; public String PostCodeContains = null; public String PostCodeLike = null; public ArrayList PostCodeBetween = null; public ArrayList PostCodeIn = null; public String Notes = null; public String NotesStartsWith = null; public String NotesEndsWith = null; public String NotesContains = null; public String NotesLike = null; public ArrayList NotesBetween = null; public ArrayList NotesIn = null; public String CourierDetails = null; public String CourierDetailsStartsWith = null; public String CourierDetailsEndsWith = null; public String CourierDetailsContains = null; public String CourierDetailsLike = null; public ArrayList CourierDetailsBetween = null; public ArrayList CourierDetailsIn = null; public Boolean InvoicePrinted = null; public BigDecimal CartageCharge1 = null; public BigDecimal CartageCharge1GreaterThanOrEqualTo = null; public BigDecimal CartageCharge1GreaterThan = null; public BigDecimal CartageCharge1LessThan = null; public BigDecimal CartageCharge1LessThanOrEqualTo = null; public BigDecimal CartageCharge1NotEqualTo = null; public ArrayList CartageCharge1Between = null; public ArrayList CartageCharge1In = null; public BigDecimal CartageCharge2 = null; public BigDecimal CartageCharge2GreaterThanOrEqualTo = null; public BigDecimal CartageCharge2GreaterThan = null; public BigDecimal CartageCharge2LessThan = null; public BigDecimal CartageCharge2LessThanOrEqualTo = null; public BigDecimal CartageCharge2NotEqualTo = null; public ArrayList CartageCharge2Between = null; public ArrayList CartageCharge2In = null; public BigDecimal CartageCharge3 = null; public BigDecimal CartageCharge3GreaterThanOrEqualTo = null; public BigDecimal CartageCharge3GreaterThan = null; public BigDecimal CartageCharge3LessThan = null; public BigDecimal CartageCharge3LessThanOrEqualTo = null; public BigDecimal CartageCharge3NotEqualTo = null; public ArrayList CartageCharge3Between = null; public ArrayList CartageCharge3In = null; public Date ExpiryDate = null; public Date ExpiryDateGreaterThanOrEqualTo = null; public Date ExpiryDateGreaterThan = null; public Date ExpiryDateLessThan = null; public Date ExpiryDateLessThanOrEqualTo = null; public Date ExpiryDateNotEqualTo = null; public ArrayList ExpiryDateBetween = null; public ArrayList ExpiryDateIn = null; public String Cartage1TaxRateID = null; public String Cartage1TaxRateIDStartsWith = null; public String Cartage1TaxRateIDEndsWith = null; public String Cartage1TaxRateIDContains = null; public String Cartage1TaxRateIDLike = null; public ArrayList Cartage1TaxRateIDBetween = null; public ArrayList Cartage1TaxRateIDIn = null; public BigDecimal Cartage1TaxRate = null; public BigDecimal Cartage1TaxRateGreaterThanOrEqualTo = null; public BigDecimal Cartage1TaxRateGreaterThan = null; public BigDecimal Cartage1TaxRateLessThan = null; public BigDecimal Cartage1TaxRateLessThanOrEqualTo = null; public BigDecimal Cartage1TaxRateNotEqualTo = null; public ArrayList Cartage1TaxRateBetween = null; public ArrayList Cartage1TaxRateIn = null; public BigDecimal Cartage1TaxAmount = null; public BigDecimal Cartage1TaxAmountGreaterThanOrEqualTo = null; public BigDecimal Cartage1TaxAmountGreaterThan = null; public BigDecimal Cartage1TaxAmountLessThan = null; public BigDecimal Cartage1TaxAmountLessThanOrEqualTo = null; public BigDecimal Cartage1TaxAmountNotEqualTo = null; public ArrayList Cartage1TaxAmountBetween = null; public ArrayList Cartage1TaxAmountIn = null; public String Cartage2TaxRateID = null; public String Cartage2TaxRateIDStartsWith = null; public String Cartage2TaxRateIDEndsWith = null; public String Cartage2TaxRateIDContains = null; public String Cartage2TaxRateIDLike = null; public ArrayList Cartage2TaxRateIDBetween = null; public ArrayList Cartage2TaxRateIDIn = null; public BigDecimal Cartage2TaxRate = null; public BigDecimal Cartage2TaxRateGreaterThanOrEqualTo = null; public BigDecimal Cartage2TaxRateGreaterThan = null; public BigDecimal Cartage2TaxRateLessThan = null; public BigDecimal Cartage2TaxRateLessThanOrEqualTo = null; public BigDecimal Cartage2TaxRateNotEqualTo = null; public ArrayList Cartage2TaxRateBetween = null; public ArrayList Cartage2TaxRateIn = null; public BigDecimal Cartage2TaxAmount = null; public BigDecimal Cartage2TaxAmountGreaterThanOrEqualTo = null; public BigDecimal Cartage2TaxAmountGreaterThan = null; public BigDecimal Cartage2TaxAmountLessThan = null; public BigDecimal Cartage2TaxAmountLessThanOrEqualTo = null; public BigDecimal Cartage2TaxAmountNotEqualTo = null; public ArrayList Cartage2TaxAmountBetween = null; public ArrayList Cartage2TaxAmountIn = null; public String Cartage3TaxRateID = null; public String Cartage3TaxRateIDStartsWith = null; public String Cartage3TaxRateIDEndsWith = null; public String Cartage3TaxRateIDContains = null; public String Cartage3TaxRateIDLike = null; public ArrayList Cartage3TaxRateIDBetween = null; public ArrayList Cartage3TaxRateIDIn = null; public BigDecimal Cartage3TaxRate = null; public BigDecimal Cartage3TaxRateGreaterThanOrEqualTo = null; public BigDecimal Cartage3TaxRateGreaterThan = null; public BigDecimal Cartage3TaxRateLessThan = null; public BigDecimal Cartage3TaxRateLessThanOrEqualTo = null; public BigDecimal Cartage3TaxRateNotEqualTo = null; public ArrayList Cartage3TaxRateBetween = null; public ArrayList Cartage3TaxRateIn = null; public BigDecimal Cartage3TaxAmount = null; public BigDecimal Cartage3TaxAmountGreaterThanOrEqualTo = null; public BigDecimal Cartage3TaxAmountGreaterThan = null; public BigDecimal Cartage3TaxAmountLessThan = null; public BigDecimal Cartage3TaxAmountLessThanOrEqualTo = null; public BigDecimal Cartage3TaxAmountNotEqualTo = null; public ArrayList Cartage3TaxAmountBetween = null; public ArrayList Cartage3TaxAmountIn = null; public String DelContactName = null; public String DelContactNameStartsWith = null; public String DelContactNameEndsWith = null; public String DelContactNameContains = null; public String DelContactNameLike = null; public ArrayList DelContactNameBetween = null; public ArrayList DelContactNameIn = null; public String FreightForwardAddress1 = null; public String FreightForwardAddress1StartsWith = null; public String FreightForwardAddress1EndsWith = null; public String FreightForwardAddress1Contains = null; public String FreightForwardAddress1Like = null; public ArrayList FreightForwardAddress1Between = null; public ArrayList FreightForwardAddress1In = null; public String FreightForwardAddress2 = null; public String FreightForwardAddress2StartsWith = null; public String FreightForwardAddress2EndsWith = null; public String FreightForwardAddress2Contains = null; public String FreightForwardAddress2Like = null; public ArrayList FreightForwardAddress2Between = null; public ArrayList FreightForwardAddress2In = null; public String FreightForwardAddress3 = null; public String FreightForwardAddress3StartsWith = null; public String FreightForwardAddress3EndsWith = null; public String FreightForwardAddress3Contains = null; public String FreightForwardAddress3Like = null; public ArrayList FreightForwardAddress3Between = null; public ArrayList FreightForwardAddress3In = null; public String FreightForwardAddress4 = null; public String FreightForwardAddress4StartsWith = null; public String FreightForwardAddress4EndsWith = null; public String FreightForwardAddress4Contains = null; public String FreightForwardAddress4Like = null; public ArrayList FreightForwardAddress4Between = null; public ArrayList FreightForwardAddress4In = null; public String FreightForwardNotes = null; public String FreightForwardNotesStartsWith = null; public String FreightForwardNotesEndsWith = null; public String FreightForwardNotesContains = null; public String FreightForwardNotesLike = null; public ArrayList FreightForwardNotesBetween = null; public ArrayList FreightForwardNotesIn = null; public Date ExpectedCloseDate = null; public Date ExpectedCloseDateGreaterThanOrEqualTo = null; public Date ExpectedCloseDateGreaterThan = null; public Date ExpectedCloseDateLessThan = null; public Date ExpectedCloseDateLessThanOrEqualTo = null; public Date ExpectedCloseDateNotEqualTo = null; public ArrayList ExpectedCloseDateBetween = null; public ArrayList ExpectedCloseDateIn = null; public Short OpportunityStatus = null; public Short OpportunityStatusGreaterThanOrEqualTo = null; public Short OpportunityStatusGreaterThan = null; public Short OpportunityStatusLessThan = null; public Short OpportunityStatusLessThanOrEqualTo = null; public Short OpportunityStatusNotEqualTo = null; public ArrayList OpportunityStatusBetween = null; public ArrayList OpportunityStatusIn = null; public String SalesStageID = null; public String SalesStageIDStartsWith = null; public String SalesStageIDEndsWith = null; public String SalesStageIDContains = null; public String SalesStageIDLike = null; public ArrayList SalesStageIDBetween = null; public ArrayList SalesStageIDIn = null; public String OpportunityStatusReasonID = null; public String OpportunityStatusReasonIDStartsWith = null; public String OpportunityStatusReasonIDEndsWith = null; public String OpportunityStatusReasonIDContains = null; public String OpportunityStatusReasonIDLike = null; public ArrayList OpportunityStatusReasonIDBetween = null; public ArrayList OpportunityStatusReasonIDIn = null; public String OpportunityNote = null; public String OpportunityNoteStartsWith = null; public String OpportunityNoteEndsWith = null; public String OpportunityNoteContains = null; public String OpportunityNoteLike = null; public ArrayList OpportunityNoteBetween = null; public ArrayList OpportunityNoteIn = null; public Boolean InvoiceEmailed = null; public Boolean DropShipment = null; public String DeliveryAddressee = null; public String DeliveryAddresseeStartsWith = null; public String DeliveryAddresseeEndsWith = null; public String DeliveryAddresseeContains = null; public String DeliveryAddresseeLike = null; public ArrayList DeliveryAddresseeBetween = null; public ArrayList DeliveryAddresseeIn = null; public String DeliveryAddressCountry = null; public String DeliveryAddressCountryStartsWith = null; public String DeliveryAddressCountryEndsWith = null; public String DeliveryAddressCountryContains = null; public String DeliveryAddressCountryLike = null; public ArrayList DeliveryAddressCountryBetween = null; public ArrayList DeliveryAddressCountryIn = null; public String FreightForwardAddressCountry = null; public String FreightForwardAddressCountryStartsWith = null; public String FreightForwardAddressCountryEndsWith = null; public String FreightForwardAddressCountryContains = null; public String FreightForwardAddressCountryLike = null; public ArrayList FreightForwardAddressCountryBetween = null; public ArrayList FreightForwardAddressCountryIn = null; public String getInvoiceHistoryID() { return InvoiceHistoryID; } public QO_HistoryQuery setInvoiceHistoryID(String value) { this.InvoiceHistoryID = value; return this; } public String getInvoiceHistoryIDStartsWith() { return InvoiceHistoryIDStartsWith; } public QO_HistoryQuery setInvoiceHistoryIDStartsWith(String value) { this.InvoiceHistoryIDStartsWith = value; return this; } public String getInvoiceHistoryIDEndsWith() { return InvoiceHistoryIDEndsWith; } public QO_HistoryQuery setInvoiceHistoryIDEndsWith(String value) { this.InvoiceHistoryIDEndsWith = value; return this; } public String getInvoiceHistoryIDContains() { return InvoiceHistoryIDContains; } public QO_HistoryQuery setInvoiceHistoryIDContains(String value) { this.InvoiceHistoryIDContains = value; return this; } public String getInvoiceHistoryIDLike() { return InvoiceHistoryIDLike; } public QO_HistoryQuery setInvoiceHistoryIDLike(String value) { this.InvoiceHistoryIDLike = value; return this; } public ArrayList getInvoiceHistoryIDBetween() { return InvoiceHistoryIDBetween; } public QO_HistoryQuery setInvoiceHistoryIDBetween(ArrayList value) { this.InvoiceHistoryIDBetween = value; return this; } public ArrayList getInvoiceHistoryIDIn() { return InvoiceHistoryIDIn; } public QO_HistoryQuery setInvoiceHistoryIDIn(ArrayList value) { this.InvoiceHistoryIDIn = value; return this; } public String getInvoiceID() { return InvoiceID; } public QO_HistoryQuery setInvoiceID(String value) { this.InvoiceID = value; return this; } public String getInvoiceIDStartsWith() { return InvoiceIDStartsWith; } public QO_HistoryQuery setInvoiceIDStartsWith(String value) { this.InvoiceIDStartsWith = value; return this; } public String getInvoiceIDEndsWith() { return InvoiceIDEndsWith; } public QO_HistoryQuery setInvoiceIDEndsWith(String value) { this.InvoiceIDEndsWith = value; return this; } public String getInvoiceIDContains() { return InvoiceIDContains; } public QO_HistoryQuery setInvoiceIDContains(String value) { this.InvoiceIDContains = value; return this; } public String getInvoiceIDLike() { return InvoiceIDLike; } public QO_HistoryQuery setInvoiceIDLike(String value) { this.InvoiceIDLike = value; return this; } public ArrayList getInvoiceIDBetween() { return InvoiceIDBetween; } public QO_HistoryQuery setInvoiceIDBetween(ArrayList value) { this.InvoiceIDBetween = value; return this; } public ArrayList getInvoiceIDIn() { return InvoiceIDIn; } public QO_HistoryQuery setInvoiceIDIn(ArrayList value) { this.InvoiceIDIn = value; return this; } public String getLastModifiedBy() { return LastModifiedBy; } public QO_HistoryQuery setLastModifiedBy(String value) { this.LastModifiedBy = value; return this; } public String getLastModifiedByStartsWith() { return LastModifiedByStartsWith; } public QO_HistoryQuery setLastModifiedByStartsWith(String value) { this.LastModifiedByStartsWith = value; return this; } public String getLastModifiedByEndsWith() { return LastModifiedByEndsWith; } public QO_HistoryQuery setLastModifiedByEndsWith(String value) { this.LastModifiedByEndsWith = value; return this; } public String getLastModifiedByContains() { return LastModifiedByContains; } public QO_HistoryQuery setLastModifiedByContains(String value) { this.LastModifiedByContains = value; return this; } public String getLastModifiedByLike() { return LastModifiedByLike; } public QO_HistoryQuery setLastModifiedByLike(String value) { this.LastModifiedByLike = value; return this; } public ArrayList getLastModifiedByBetween() { return LastModifiedByBetween; } public QO_HistoryQuery setLastModifiedByBetween(ArrayList value) { this.LastModifiedByBetween = value; return this; } public ArrayList getLastModifiedByIn() { return LastModifiedByIn; } public QO_HistoryQuery setLastModifiedByIn(ArrayList value) { this.LastModifiedByIn = value; return this; } public Date getRecordDate() { return RecordDate; } public QO_HistoryQuery setRecordDate(Date value) { this.RecordDate = value; return this; } public Date getRecordDateGreaterThanOrEqualTo() { return RecordDateGreaterThanOrEqualTo; } public QO_HistoryQuery setRecordDateGreaterThanOrEqualTo(Date value) { this.RecordDateGreaterThanOrEqualTo = value; return this; } public Date getRecordDateGreaterThan() { return RecordDateGreaterThan; } public QO_HistoryQuery setRecordDateGreaterThan(Date value) { this.RecordDateGreaterThan = value; return this; } public Date getRecordDateLessThan() { return RecordDateLessThan; } public QO_HistoryQuery setRecordDateLessThan(Date value) { this.RecordDateLessThan = value; return this; } public Date getRecordDateLessThanOrEqualTo() { return RecordDateLessThanOrEqualTo; } public QO_HistoryQuery setRecordDateLessThanOrEqualTo(Date value) { this.RecordDateLessThanOrEqualTo = value; return this; } public Date getRecordDateNotEqualTo() { return RecordDateNotEqualTo; } public QO_HistoryQuery setRecordDateNotEqualTo(Date value) { this.RecordDateNotEqualTo = value; return this; } public ArrayList getRecordDateBetween() { return RecordDateBetween; } public QO_HistoryQuery setRecordDateBetween(ArrayList value) { this.RecordDateBetween = value; return this; } public ArrayList getRecordDateIn() { return RecordDateIn; } public QO_HistoryQuery setRecordDateIn(ArrayList value) { this.RecordDateIn = value; return this; } public String getRef() { return Ref; } public QO_HistoryQuery setRef(String value) { this.Ref = value; return this; } public String getRefStartsWith() { return RefStartsWith; } public QO_HistoryQuery setRefStartsWith(String value) { this.RefStartsWith = value; return this; } public String getRefEndsWith() { return RefEndsWith; } public QO_HistoryQuery setRefEndsWith(String value) { this.RefEndsWith = value; return this; } public String getRefContains() { return RefContains; } public QO_HistoryQuery setRefContains(String value) { this.RefContains = value; return this; } public String getRefLike() { return RefLike; } public QO_HistoryQuery setRefLike(String value) { this.RefLike = value; return this; } public ArrayList getRefBetween() { return RefBetween; } public QO_HistoryQuery setRefBetween(ArrayList value) { this.RefBetween = value; return this; } public ArrayList getRefIn() { return RefIn; } public QO_HistoryQuery setRefIn(ArrayList value) { this.RefIn = value; return this; } public Short getHistoryNo() { return HistoryNo; } public QO_HistoryQuery setHistoryNo(Short value) { this.HistoryNo = value; return this; } public Short getHistoryNoGreaterThanOrEqualTo() { return HistoryNoGreaterThanOrEqualTo; } public QO_HistoryQuery setHistoryNoGreaterThanOrEqualTo(Short value) { this.HistoryNoGreaterThanOrEqualTo = value; return this; } public Short getHistoryNoGreaterThan() { return HistoryNoGreaterThan; } public QO_HistoryQuery setHistoryNoGreaterThan(Short value) { this.HistoryNoGreaterThan = value; return this; } public Short getHistoryNoLessThan() { return HistoryNoLessThan; } public QO_HistoryQuery setHistoryNoLessThan(Short value) { this.HistoryNoLessThan = value; return this; } public Short getHistoryNoLessThanOrEqualTo() { return HistoryNoLessThanOrEqualTo; } public QO_HistoryQuery setHistoryNoLessThanOrEqualTo(Short value) { this.HistoryNoLessThanOrEqualTo = value; return this; } public Short getHistoryNoNotEqualTo() { return HistoryNoNotEqualTo; } public QO_HistoryQuery setHistoryNoNotEqualTo(Short value) { this.HistoryNoNotEqualTo = value; return this; } public ArrayList getHistoryNoBetween() { return HistoryNoBetween; } public QO_HistoryQuery setHistoryNoBetween(ArrayList value) { this.HistoryNoBetween = value; return this; } public ArrayList getHistoryNoIn() { return HistoryNoIn; } public QO_HistoryQuery setHistoryNoIn(ArrayList value) { this.HistoryNoIn = value; return this; } public BigDecimal getHistoryTotal() { return HistoryTotal; } public QO_HistoryQuery setHistoryTotal(BigDecimal value) { this.HistoryTotal = value; return this; } public BigDecimal getHistoryTotalGreaterThanOrEqualTo() { return HistoryTotalGreaterThanOrEqualTo; } public QO_HistoryQuery setHistoryTotalGreaterThanOrEqualTo(BigDecimal value) { this.HistoryTotalGreaterThanOrEqualTo = value; return this; } public BigDecimal getHistoryTotalGreaterThan() { return HistoryTotalGreaterThan; } public QO_HistoryQuery setHistoryTotalGreaterThan(BigDecimal value) { this.HistoryTotalGreaterThan = value; return this; } public BigDecimal getHistoryTotalLessThan() { return HistoryTotalLessThan; } public QO_HistoryQuery setHistoryTotalLessThan(BigDecimal value) { this.HistoryTotalLessThan = value; return this; } public BigDecimal getHistoryTotalLessThanOrEqualTo() { return HistoryTotalLessThanOrEqualTo; } public QO_HistoryQuery setHistoryTotalLessThanOrEqualTo(BigDecimal value) { this.HistoryTotalLessThanOrEqualTo = value; return this; } public BigDecimal getHistoryTotalNotEqualTo() { return HistoryTotalNotEqualTo; } public QO_HistoryQuery setHistoryTotalNotEqualTo(BigDecimal value) { this.HistoryTotalNotEqualTo = value; return this; } public ArrayList getHistoryTotalBetween() { return HistoryTotalBetween; } public QO_HistoryQuery setHistoryTotalBetween(ArrayList value) { this.HistoryTotalBetween = value; return this; } public ArrayList getHistoryTotalIn() { return HistoryTotalIn; } public QO_HistoryQuery setHistoryTotalIn(ArrayList value) { this.HistoryTotalIn = value; return this; } public Boolean isDocketPrinted() { return DocketPrinted; } public QO_HistoryQuery setDocketPrinted(Boolean value) { this.DocketPrinted = value; return this; } public String getDelAddress1() { return DelAddress1; } public QO_HistoryQuery setDelAddress1(String value) { this.DelAddress1 = value; return this; } public String getDelAddress1StartsWith() { return DelAddress1StartsWith; } public QO_HistoryQuery setDelAddress1StartsWith(String value) { this.DelAddress1StartsWith = value; return this; } public String getDelAddress1EndsWith() { return DelAddress1EndsWith; } public QO_HistoryQuery setDelAddress1EndsWith(String value) { this.DelAddress1EndsWith = value; return this; } public String getDelAddress1Contains() { return DelAddress1Contains; } public QO_HistoryQuery setDelAddress1Contains(String value) { this.DelAddress1Contains = value; return this; } public String getDelAddress1Like() { return DelAddress1Like; } public QO_HistoryQuery setDelAddress1Like(String value) { this.DelAddress1Like = value; return this; } public ArrayList getDelAddress1Between() { return DelAddress1Between; } public QO_HistoryQuery setDelAddress1Between(ArrayList value) { this.DelAddress1Between = value; return this; } public ArrayList getDelAddress1In() { return DelAddress1In; } public QO_HistoryQuery setDelAddress1In(ArrayList value) { this.DelAddress1In = value; return this; } public String getDelAddress2() { return DelAddress2; } public QO_HistoryQuery setDelAddress2(String value) { this.DelAddress2 = value; return this; } public String getDelAddress2StartsWith() { return DelAddress2StartsWith; } public QO_HistoryQuery setDelAddress2StartsWith(String value) { this.DelAddress2StartsWith = value; return this; } public String getDelAddress2EndsWith() { return DelAddress2EndsWith; } public QO_HistoryQuery setDelAddress2EndsWith(String value) { this.DelAddress2EndsWith = value; return this; } public String getDelAddress2Contains() { return DelAddress2Contains; } public QO_HistoryQuery setDelAddress2Contains(String value) { this.DelAddress2Contains = value; return this; } public String getDelAddress2Like() { return DelAddress2Like; } public QO_HistoryQuery setDelAddress2Like(String value) { this.DelAddress2Like = value; return this; } public ArrayList getDelAddress2Between() { return DelAddress2Between; } public QO_HistoryQuery setDelAddress2Between(ArrayList value) { this.DelAddress2Between = value; return this; } public ArrayList getDelAddress2In() { return DelAddress2In; } public QO_HistoryQuery setDelAddress2In(ArrayList value) { this.DelAddress2In = value; return this; } public String getDelAddress3() { return DelAddress3; } public QO_HistoryQuery setDelAddress3(String value) { this.DelAddress3 = value; return this; } public String getDelAddress3StartsWith() { return DelAddress3StartsWith; } public QO_HistoryQuery setDelAddress3StartsWith(String value) { this.DelAddress3StartsWith = value; return this; } public String getDelAddress3EndsWith() { return DelAddress3EndsWith; } public QO_HistoryQuery setDelAddress3EndsWith(String value) { this.DelAddress3EndsWith = value; return this; } public String getDelAddress3Contains() { return DelAddress3Contains; } public QO_HistoryQuery setDelAddress3Contains(String value) { this.DelAddress3Contains = value; return this; } public String getDelAddress3Like() { return DelAddress3Like; } public QO_HistoryQuery setDelAddress3Like(String value) { this.DelAddress3Like = value; return this; } public ArrayList getDelAddress3Between() { return DelAddress3Between; } public QO_HistoryQuery setDelAddress3Between(ArrayList value) { this.DelAddress3Between = value; return this; } public ArrayList getDelAddress3In() { return DelAddress3In; } public QO_HistoryQuery setDelAddress3In(ArrayList value) { this.DelAddress3In = value; return this; } public String getDelAddress4() { return DelAddress4; } public QO_HistoryQuery setDelAddress4(String value) { this.DelAddress4 = value; return this; } public String getDelAddress4StartsWith() { return DelAddress4StartsWith; } public QO_HistoryQuery setDelAddress4StartsWith(String value) { this.DelAddress4StartsWith = value; return this; } public String getDelAddress4EndsWith() { return DelAddress4EndsWith; } public QO_HistoryQuery setDelAddress4EndsWith(String value) { this.DelAddress4EndsWith = value; return this; } public String getDelAddress4Contains() { return DelAddress4Contains; } public QO_HistoryQuery setDelAddress4Contains(String value) { this.DelAddress4Contains = value; return this; } public String getDelAddress4Like() { return DelAddress4Like; } public QO_HistoryQuery setDelAddress4Like(String value) { this.DelAddress4Like = value; return this; } public ArrayList getDelAddress4Between() { return DelAddress4Between; } public QO_HistoryQuery setDelAddress4Between(ArrayList value) { this.DelAddress4Between = value; return this; } public ArrayList getDelAddress4In() { return DelAddress4In; } public QO_HistoryQuery setDelAddress4In(ArrayList value) { this.DelAddress4In = value; return this; } public String getPostCode() { return PostCode; } public QO_HistoryQuery setPostCode(String value) { this.PostCode = value; return this; } public String getPostCodeStartsWith() { return PostCodeStartsWith; } public QO_HistoryQuery setPostCodeStartsWith(String value) { this.PostCodeStartsWith = value; return this; } public String getPostCodeEndsWith() { return PostCodeEndsWith; } public QO_HistoryQuery setPostCodeEndsWith(String value) { this.PostCodeEndsWith = value; return this; } public String getPostCodeContains() { return PostCodeContains; } public QO_HistoryQuery setPostCodeContains(String value) { this.PostCodeContains = value; return this; } public String getPostCodeLike() { return PostCodeLike; } public QO_HistoryQuery setPostCodeLike(String value) { this.PostCodeLike = value; return this; } public ArrayList getPostCodeBetween() { return PostCodeBetween; } public QO_HistoryQuery setPostCodeBetween(ArrayList value) { this.PostCodeBetween = value; return this; } public ArrayList getPostCodeIn() { return PostCodeIn; } public QO_HistoryQuery setPostCodeIn(ArrayList value) { this.PostCodeIn = value; return this; } public String getNotes() { return Notes; } public QO_HistoryQuery setNotes(String value) { this.Notes = value; return this; } public String getNotesStartsWith() { return NotesStartsWith; } public QO_HistoryQuery setNotesStartsWith(String value) { this.NotesStartsWith = value; return this; } public String getNotesEndsWith() { return NotesEndsWith; } public QO_HistoryQuery setNotesEndsWith(String value) { this.NotesEndsWith = value; return this; } public String getNotesContains() { return NotesContains; } public QO_HistoryQuery setNotesContains(String value) { this.NotesContains = value; return this; } public String getNotesLike() { return NotesLike; } public QO_HistoryQuery setNotesLike(String value) { this.NotesLike = value; return this; } public ArrayList getNotesBetween() { return NotesBetween; } public QO_HistoryQuery setNotesBetween(ArrayList value) { this.NotesBetween = value; return this; } public ArrayList getNotesIn() { return NotesIn; } public QO_HistoryQuery setNotesIn(ArrayList value) { this.NotesIn = value; return this; } public String getCourierDetails() { return CourierDetails; } public QO_HistoryQuery setCourierDetails(String value) { this.CourierDetails = value; return this; } public String getCourierDetailsStartsWith() { return CourierDetailsStartsWith; } public QO_HistoryQuery setCourierDetailsStartsWith(String value) { this.CourierDetailsStartsWith = value; return this; } public String getCourierDetailsEndsWith() { return CourierDetailsEndsWith; } public QO_HistoryQuery setCourierDetailsEndsWith(String value) { this.CourierDetailsEndsWith = value; return this; } public String getCourierDetailsContains() { return CourierDetailsContains; } public QO_HistoryQuery setCourierDetailsContains(String value) { this.CourierDetailsContains = value; return this; } public String getCourierDetailsLike() { return CourierDetailsLike; } public QO_HistoryQuery setCourierDetailsLike(String value) { this.CourierDetailsLike = value; return this; } public ArrayList getCourierDetailsBetween() { return CourierDetailsBetween; } public QO_HistoryQuery setCourierDetailsBetween(ArrayList value) { this.CourierDetailsBetween = value; return this; } public ArrayList getCourierDetailsIn() { return CourierDetailsIn; } public QO_HistoryQuery setCourierDetailsIn(ArrayList value) { this.CourierDetailsIn = value; return this; } public Boolean isInvoicePrinted() { return InvoicePrinted; } public QO_HistoryQuery setInvoicePrinted(Boolean value) { this.InvoicePrinted = value; return this; } public BigDecimal getCartageCharge1() { return CartageCharge1; } public QO_HistoryQuery setCartageCharge1(BigDecimal value) { this.CartageCharge1 = value; return this; } public BigDecimal getCartageCharge1GreaterThanOrEqualTo() { return CartageCharge1GreaterThanOrEqualTo; } public QO_HistoryQuery setCartageCharge1GreaterThanOrEqualTo(BigDecimal value) { this.CartageCharge1GreaterThanOrEqualTo = value; return this; } public BigDecimal getCartageCharge1GreaterThan() { return CartageCharge1GreaterThan; } public QO_HistoryQuery setCartageCharge1GreaterThan(BigDecimal value) { this.CartageCharge1GreaterThan = value; return this; } public BigDecimal getCartageCharge1LessThan() { return CartageCharge1LessThan; } public QO_HistoryQuery setCartageCharge1LessThan(BigDecimal value) { this.CartageCharge1LessThan = value; return this; } public BigDecimal getCartageCharge1LessThanOrEqualTo() { return CartageCharge1LessThanOrEqualTo; } public QO_HistoryQuery setCartageCharge1LessThanOrEqualTo(BigDecimal value) { this.CartageCharge1LessThanOrEqualTo = value; return this; } public BigDecimal getCartageCharge1NotEqualTo() { return CartageCharge1NotEqualTo; } public QO_HistoryQuery setCartageCharge1NotEqualTo(BigDecimal value) { this.CartageCharge1NotEqualTo = value; return this; } public ArrayList getCartageCharge1Between() { return CartageCharge1Between; } public QO_HistoryQuery setCartageCharge1Between(ArrayList value) { this.CartageCharge1Between = value; return this; } public ArrayList getCartageCharge1In() { return CartageCharge1In; } public QO_HistoryQuery setCartageCharge1In(ArrayList value) { this.CartageCharge1In = value; return this; } public BigDecimal getCartageCharge2() { return CartageCharge2; } public QO_HistoryQuery setCartageCharge2(BigDecimal value) { this.CartageCharge2 = value; return this; } public BigDecimal getCartageCharge2GreaterThanOrEqualTo() { return CartageCharge2GreaterThanOrEqualTo; } public QO_HistoryQuery setCartageCharge2GreaterThanOrEqualTo(BigDecimal value) { this.CartageCharge2GreaterThanOrEqualTo = value; return this; } public BigDecimal getCartageCharge2GreaterThan() { return CartageCharge2GreaterThan; } public QO_HistoryQuery setCartageCharge2GreaterThan(BigDecimal value) { this.CartageCharge2GreaterThan = value; return this; } public BigDecimal getCartageCharge2LessThan() { return CartageCharge2LessThan; } public QO_HistoryQuery setCartageCharge2LessThan(BigDecimal value) { this.CartageCharge2LessThan = value; return this; } public BigDecimal getCartageCharge2LessThanOrEqualTo() { return CartageCharge2LessThanOrEqualTo; } public QO_HistoryQuery setCartageCharge2LessThanOrEqualTo(BigDecimal value) { this.CartageCharge2LessThanOrEqualTo = value; return this; } public BigDecimal getCartageCharge2NotEqualTo() { return CartageCharge2NotEqualTo; } public QO_HistoryQuery setCartageCharge2NotEqualTo(BigDecimal value) { this.CartageCharge2NotEqualTo = value; return this; } public ArrayList getCartageCharge2Between() { return CartageCharge2Between; } public QO_HistoryQuery setCartageCharge2Between(ArrayList value) { this.CartageCharge2Between = value; return this; } public ArrayList getCartageCharge2In() { return CartageCharge2In; } public QO_HistoryQuery setCartageCharge2In(ArrayList value) { this.CartageCharge2In = value; return this; } public BigDecimal getCartageCharge3() { return CartageCharge3; } public QO_HistoryQuery setCartageCharge3(BigDecimal value) { this.CartageCharge3 = value; return this; } public BigDecimal getCartageCharge3GreaterThanOrEqualTo() { return CartageCharge3GreaterThanOrEqualTo; } public QO_HistoryQuery setCartageCharge3GreaterThanOrEqualTo(BigDecimal value) { this.CartageCharge3GreaterThanOrEqualTo = value; return this; } public BigDecimal getCartageCharge3GreaterThan() { return CartageCharge3GreaterThan; } public QO_HistoryQuery setCartageCharge3GreaterThan(BigDecimal value) { this.CartageCharge3GreaterThan = value; return this; } public BigDecimal getCartageCharge3LessThan() { return CartageCharge3LessThan; } public QO_HistoryQuery setCartageCharge3LessThan(BigDecimal value) { this.CartageCharge3LessThan = value; return this; } public BigDecimal getCartageCharge3LessThanOrEqualTo() { return CartageCharge3LessThanOrEqualTo; } public QO_HistoryQuery setCartageCharge3LessThanOrEqualTo(BigDecimal value) { this.CartageCharge3LessThanOrEqualTo = value; return this; } public BigDecimal getCartageCharge3NotEqualTo() { return CartageCharge3NotEqualTo; } public QO_HistoryQuery setCartageCharge3NotEqualTo(BigDecimal value) { this.CartageCharge3NotEqualTo = value; return this; } public ArrayList getCartageCharge3Between() { return CartageCharge3Between; } public QO_HistoryQuery setCartageCharge3Between(ArrayList value) { this.CartageCharge3Between = value; return this; } public ArrayList getCartageCharge3In() { return CartageCharge3In; } public QO_HistoryQuery setCartageCharge3In(ArrayList value) { this.CartageCharge3In = value; return this; } public Date getExpiryDate() { return ExpiryDate; } public QO_HistoryQuery setExpiryDate(Date value) { this.ExpiryDate = value; return this; } public Date getExpiryDateGreaterThanOrEqualTo() { return ExpiryDateGreaterThanOrEqualTo; } public QO_HistoryQuery setExpiryDateGreaterThanOrEqualTo(Date value) { this.ExpiryDateGreaterThanOrEqualTo = value; return this; } public Date getExpiryDateGreaterThan() { return ExpiryDateGreaterThan; } public QO_HistoryQuery setExpiryDateGreaterThan(Date value) { this.ExpiryDateGreaterThan = value; return this; } public Date getExpiryDateLessThan() { return ExpiryDateLessThan; } public QO_HistoryQuery setExpiryDateLessThan(Date value) { this.ExpiryDateLessThan = value; return this; } public Date getExpiryDateLessThanOrEqualTo() { return ExpiryDateLessThanOrEqualTo; } public QO_HistoryQuery setExpiryDateLessThanOrEqualTo(Date value) { this.ExpiryDateLessThanOrEqualTo = value; return this; } public Date getExpiryDateNotEqualTo() { return ExpiryDateNotEqualTo; } public QO_HistoryQuery setExpiryDateNotEqualTo(Date value) { this.ExpiryDateNotEqualTo = value; return this; } public ArrayList getExpiryDateBetween() { return ExpiryDateBetween; } public QO_HistoryQuery setExpiryDateBetween(ArrayList value) { this.ExpiryDateBetween = value; return this; } public ArrayList getExpiryDateIn() { return ExpiryDateIn; } public QO_HistoryQuery setExpiryDateIn(ArrayList value) { this.ExpiryDateIn = value; return this; } public String getCartage1TaxRateID() { return Cartage1TaxRateID; } public QO_HistoryQuery setCartage1TaxRateID(String value) { this.Cartage1TaxRateID = value; return this; } public String getCartage1TaxRateIDStartsWith() { return Cartage1TaxRateIDStartsWith; } public QO_HistoryQuery setCartage1TaxRateIDStartsWith(String value) { this.Cartage1TaxRateIDStartsWith = value; return this; } public String getCartage1TaxRateIDEndsWith() { return Cartage1TaxRateIDEndsWith; } public QO_HistoryQuery setCartage1TaxRateIDEndsWith(String value) { this.Cartage1TaxRateIDEndsWith = value; return this; } public String getCartage1TaxRateIDContains() { return Cartage1TaxRateIDContains; } public QO_HistoryQuery setCartage1TaxRateIDContains(String value) { this.Cartage1TaxRateIDContains = value; return this; } public String getCartage1TaxRateIDLike() { return Cartage1TaxRateIDLike; } public QO_HistoryQuery setCartage1TaxRateIDLike(String value) { this.Cartage1TaxRateIDLike = value; return this; } public ArrayList getCartage1TaxRateIDBetween() { return Cartage1TaxRateIDBetween; } public QO_HistoryQuery setCartage1TaxRateIDBetween(ArrayList value) { this.Cartage1TaxRateIDBetween = value; return this; } public ArrayList getCartage1TaxRateIDIn() { return Cartage1TaxRateIDIn; } public QO_HistoryQuery setCartage1TaxRateIDIn(ArrayList value) { this.Cartage1TaxRateIDIn = value; return this; } public BigDecimal getCartage1TaxRate() { return Cartage1TaxRate; } public QO_HistoryQuery setCartage1TaxRate(BigDecimal value) { this.Cartage1TaxRate = value; return this; } public BigDecimal getCartage1TaxRateGreaterThanOrEqualTo() { return Cartage1TaxRateGreaterThanOrEqualTo; } public QO_HistoryQuery setCartage1TaxRateGreaterThanOrEqualTo(BigDecimal value) { this.Cartage1TaxRateGreaterThanOrEqualTo = value; return this; } public BigDecimal getCartage1TaxRateGreaterThan() { return Cartage1TaxRateGreaterThan; } public QO_HistoryQuery setCartage1TaxRateGreaterThan(BigDecimal value) { this.Cartage1TaxRateGreaterThan = value; return this; } public BigDecimal getCartage1TaxRateLessThan() { return Cartage1TaxRateLessThan; } public QO_HistoryQuery setCartage1TaxRateLessThan(BigDecimal value) { this.Cartage1TaxRateLessThan = value; return this; } public BigDecimal getCartage1TaxRateLessThanOrEqualTo() { return Cartage1TaxRateLessThanOrEqualTo; } public QO_HistoryQuery setCartage1TaxRateLessThanOrEqualTo(BigDecimal value) { this.Cartage1TaxRateLessThanOrEqualTo = value; return this; } public BigDecimal getCartage1TaxRateNotEqualTo() { return Cartage1TaxRateNotEqualTo; } public QO_HistoryQuery setCartage1TaxRateNotEqualTo(BigDecimal value) { this.Cartage1TaxRateNotEqualTo = value; return this; } public ArrayList getCartage1TaxRateBetween() { return Cartage1TaxRateBetween; } public QO_HistoryQuery setCartage1TaxRateBetween(ArrayList value) { this.Cartage1TaxRateBetween = value; return this; } public ArrayList getCartage1TaxRateIn() { return Cartage1TaxRateIn; } public QO_HistoryQuery setCartage1TaxRateIn(ArrayList value) { this.Cartage1TaxRateIn = value; return this; } public BigDecimal getCartage1TaxAmount() { return Cartage1TaxAmount; } public QO_HistoryQuery setCartage1TaxAmount(BigDecimal value) { this.Cartage1TaxAmount = value; return this; } public BigDecimal getCartage1TaxAmountGreaterThanOrEqualTo() { return Cartage1TaxAmountGreaterThanOrEqualTo; } public QO_HistoryQuery setCartage1TaxAmountGreaterThanOrEqualTo(BigDecimal value) { this.Cartage1TaxAmountGreaterThanOrEqualTo = value; return this; } public BigDecimal getCartage1TaxAmountGreaterThan() { return Cartage1TaxAmountGreaterThan; } public QO_HistoryQuery setCartage1TaxAmountGreaterThan(BigDecimal value) { this.Cartage1TaxAmountGreaterThan = value; return this; } public BigDecimal getCartage1TaxAmountLessThan() { return Cartage1TaxAmountLessThan; } public QO_HistoryQuery setCartage1TaxAmountLessThan(BigDecimal value) { this.Cartage1TaxAmountLessThan = value; return this; } public BigDecimal getCartage1TaxAmountLessThanOrEqualTo() { return Cartage1TaxAmountLessThanOrEqualTo; } public QO_HistoryQuery setCartage1TaxAmountLessThanOrEqualTo(BigDecimal value) { this.Cartage1TaxAmountLessThanOrEqualTo = value; return this; } public BigDecimal getCartage1TaxAmountNotEqualTo() { return Cartage1TaxAmountNotEqualTo; } public QO_HistoryQuery setCartage1TaxAmountNotEqualTo(BigDecimal value) { this.Cartage1TaxAmountNotEqualTo = value; return this; } public ArrayList getCartage1TaxAmountBetween() { return Cartage1TaxAmountBetween; } public QO_HistoryQuery setCartage1TaxAmountBetween(ArrayList value) { this.Cartage1TaxAmountBetween = value; return this; } public ArrayList getCartage1TaxAmountIn() { return Cartage1TaxAmountIn; } public QO_HistoryQuery setCartage1TaxAmountIn(ArrayList value) { this.Cartage1TaxAmountIn = value; return this; } public String getCartage2TaxRateID() { return Cartage2TaxRateID; } public QO_HistoryQuery setCartage2TaxRateID(String value) { this.Cartage2TaxRateID = value; return this; } public String getCartage2TaxRateIDStartsWith() { return Cartage2TaxRateIDStartsWith; } public QO_HistoryQuery setCartage2TaxRateIDStartsWith(String value) { this.Cartage2TaxRateIDStartsWith = value; return this; } public String getCartage2TaxRateIDEndsWith() { return Cartage2TaxRateIDEndsWith; } public QO_HistoryQuery setCartage2TaxRateIDEndsWith(String value) { this.Cartage2TaxRateIDEndsWith = value; return this; } public String getCartage2TaxRateIDContains() { return Cartage2TaxRateIDContains; } public QO_HistoryQuery setCartage2TaxRateIDContains(String value) { this.Cartage2TaxRateIDContains = value; return this; } public String getCartage2TaxRateIDLike() { return Cartage2TaxRateIDLike; } public QO_HistoryQuery setCartage2TaxRateIDLike(String value) { this.Cartage2TaxRateIDLike = value; return this; } public ArrayList getCartage2TaxRateIDBetween() { return Cartage2TaxRateIDBetween; } public QO_HistoryQuery setCartage2TaxRateIDBetween(ArrayList value) { this.Cartage2TaxRateIDBetween = value; return this; } public ArrayList getCartage2TaxRateIDIn() { return Cartage2TaxRateIDIn; } public QO_HistoryQuery setCartage2TaxRateIDIn(ArrayList value) { this.Cartage2TaxRateIDIn = value; return this; } public BigDecimal getCartage2TaxRate() { return Cartage2TaxRate; } public QO_HistoryQuery setCartage2TaxRate(BigDecimal value) { this.Cartage2TaxRate = value; return this; } public BigDecimal getCartage2TaxRateGreaterThanOrEqualTo() { return Cartage2TaxRateGreaterThanOrEqualTo; } public QO_HistoryQuery setCartage2TaxRateGreaterThanOrEqualTo(BigDecimal value) { this.Cartage2TaxRateGreaterThanOrEqualTo = value; return this; } public BigDecimal getCartage2TaxRateGreaterThan() { return Cartage2TaxRateGreaterThan; } public QO_HistoryQuery setCartage2TaxRateGreaterThan(BigDecimal value) { this.Cartage2TaxRateGreaterThan = value; return this; } public BigDecimal getCartage2TaxRateLessThan() { return Cartage2TaxRateLessThan; } public QO_HistoryQuery setCartage2TaxRateLessThan(BigDecimal value) { this.Cartage2TaxRateLessThan = value; return this; } public BigDecimal getCartage2TaxRateLessThanOrEqualTo() { return Cartage2TaxRateLessThanOrEqualTo; } public QO_HistoryQuery setCartage2TaxRateLessThanOrEqualTo(BigDecimal value) { this.Cartage2TaxRateLessThanOrEqualTo = value; return this; } public BigDecimal getCartage2TaxRateNotEqualTo() { return Cartage2TaxRateNotEqualTo; } public QO_HistoryQuery setCartage2TaxRateNotEqualTo(BigDecimal value) { this.Cartage2TaxRateNotEqualTo = value; return this; } public ArrayList getCartage2TaxRateBetween() { return Cartage2TaxRateBetween; } public QO_HistoryQuery setCartage2TaxRateBetween(ArrayList value) { this.Cartage2TaxRateBetween = value; return this; } public ArrayList getCartage2TaxRateIn() { return Cartage2TaxRateIn; } public QO_HistoryQuery setCartage2TaxRateIn(ArrayList value) { this.Cartage2TaxRateIn = value; return this; } public BigDecimal getCartage2TaxAmount() { return Cartage2TaxAmount; } public QO_HistoryQuery setCartage2TaxAmount(BigDecimal value) { this.Cartage2TaxAmount = value; return this; } public BigDecimal getCartage2TaxAmountGreaterThanOrEqualTo() { return Cartage2TaxAmountGreaterThanOrEqualTo; } public QO_HistoryQuery setCartage2TaxAmountGreaterThanOrEqualTo(BigDecimal value) { this.Cartage2TaxAmountGreaterThanOrEqualTo = value; return this; } public BigDecimal getCartage2TaxAmountGreaterThan() { return Cartage2TaxAmountGreaterThan; } public QO_HistoryQuery setCartage2TaxAmountGreaterThan(BigDecimal value) { this.Cartage2TaxAmountGreaterThan = value; return this; } public BigDecimal getCartage2TaxAmountLessThan() { return Cartage2TaxAmountLessThan; } public QO_HistoryQuery setCartage2TaxAmountLessThan(BigDecimal value) { this.Cartage2TaxAmountLessThan = value; return this; } public BigDecimal getCartage2TaxAmountLessThanOrEqualTo() { return Cartage2TaxAmountLessThanOrEqualTo; } public QO_HistoryQuery setCartage2TaxAmountLessThanOrEqualTo(BigDecimal value) { this.Cartage2TaxAmountLessThanOrEqualTo = value; return this; } public BigDecimal getCartage2TaxAmountNotEqualTo() { return Cartage2TaxAmountNotEqualTo; } public QO_HistoryQuery setCartage2TaxAmountNotEqualTo(BigDecimal value) { this.Cartage2TaxAmountNotEqualTo = value; return this; } public ArrayList getCartage2TaxAmountBetween() { return Cartage2TaxAmountBetween; } public QO_HistoryQuery setCartage2TaxAmountBetween(ArrayList value) { this.Cartage2TaxAmountBetween = value; return this; } public ArrayList getCartage2TaxAmountIn() { return Cartage2TaxAmountIn; } public QO_HistoryQuery setCartage2TaxAmountIn(ArrayList value) { this.Cartage2TaxAmountIn = value; return this; } public String getCartage3TaxRateID() { return Cartage3TaxRateID; } public QO_HistoryQuery setCartage3TaxRateID(String value) { this.Cartage3TaxRateID = value; return this; } public String getCartage3TaxRateIDStartsWith() { return Cartage3TaxRateIDStartsWith; } public QO_HistoryQuery setCartage3TaxRateIDStartsWith(String value) { this.Cartage3TaxRateIDStartsWith = value; return this; } public String getCartage3TaxRateIDEndsWith() { return Cartage3TaxRateIDEndsWith; } public QO_HistoryQuery setCartage3TaxRateIDEndsWith(String value) { this.Cartage3TaxRateIDEndsWith = value; return this; } public String getCartage3TaxRateIDContains() { return Cartage3TaxRateIDContains; } public QO_HistoryQuery setCartage3TaxRateIDContains(String value) { this.Cartage3TaxRateIDContains = value; return this; } public String getCartage3TaxRateIDLike() { return Cartage3TaxRateIDLike; } public QO_HistoryQuery setCartage3TaxRateIDLike(String value) { this.Cartage3TaxRateIDLike = value; return this; } public ArrayList getCartage3TaxRateIDBetween() { return Cartage3TaxRateIDBetween; } public QO_HistoryQuery setCartage3TaxRateIDBetween(ArrayList value) { this.Cartage3TaxRateIDBetween = value; return this; } public ArrayList getCartage3TaxRateIDIn() { return Cartage3TaxRateIDIn; } public QO_HistoryQuery setCartage3TaxRateIDIn(ArrayList value) { this.Cartage3TaxRateIDIn = value; return this; } public BigDecimal getCartage3TaxRate() { return Cartage3TaxRate; } public QO_HistoryQuery setCartage3TaxRate(BigDecimal value) { this.Cartage3TaxRate = value; return this; } public BigDecimal getCartage3TaxRateGreaterThanOrEqualTo() { return Cartage3TaxRateGreaterThanOrEqualTo; } public QO_HistoryQuery setCartage3TaxRateGreaterThanOrEqualTo(BigDecimal value) { this.Cartage3TaxRateGreaterThanOrEqualTo = value; return this; } public BigDecimal getCartage3TaxRateGreaterThan() { return Cartage3TaxRateGreaterThan; } public QO_HistoryQuery setCartage3TaxRateGreaterThan(BigDecimal value) { this.Cartage3TaxRateGreaterThan = value; return this; } public BigDecimal getCartage3TaxRateLessThan() { return Cartage3TaxRateLessThan; } public QO_HistoryQuery setCartage3TaxRateLessThan(BigDecimal value) { this.Cartage3TaxRateLessThan = value; return this; } public BigDecimal getCartage3TaxRateLessThanOrEqualTo() { return Cartage3TaxRateLessThanOrEqualTo; } public QO_HistoryQuery setCartage3TaxRateLessThanOrEqualTo(BigDecimal value) { this.Cartage3TaxRateLessThanOrEqualTo = value; return this; } public BigDecimal getCartage3TaxRateNotEqualTo() { return Cartage3TaxRateNotEqualTo; } public QO_HistoryQuery setCartage3TaxRateNotEqualTo(BigDecimal value) { this.Cartage3TaxRateNotEqualTo = value; return this; } public ArrayList getCartage3TaxRateBetween() { return Cartage3TaxRateBetween; } public QO_HistoryQuery setCartage3TaxRateBetween(ArrayList value) { this.Cartage3TaxRateBetween = value; return this; } public ArrayList getCartage3TaxRateIn() { return Cartage3TaxRateIn; } public QO_HistoryQuery setCartage3TaxRateIn(ArrayList value) { this.Cartage3TaxRateIn = value; return this; } public BigDecimal getCartage3TaxAmount() { return Cartage3TaxAmount; } public QO_HistoryQuery setCartage3TaxAmount(BigDecimal value) { this.Cartage3TaxAmount = value; return this; } public BigDecimal getCartage3TaxAmountGreaterThanOrEqualTo() { return Cartage3TaxAmountGreaterThanOrEqualTo; } public QO_HistoryQuery setCartage3TaxAmountGreaterThanOrEqualTo(BigDecimal value) { this.Cartage3TaxAmountGreaterThanOrEqualTo = value; return this; } public BigDecimal getCartage3TaxAmountGreaterThan() { return Cartage3TaxAmountGreaterThan; } public QO_HistoryQuery setCartage3TaxAmountGreaterThan(BigDecimal value) { this.Cartage3TaxAmountGreaterThan = value; return this; } public BigDecimal getCartage3TaxAmountLessThan() { return Cartage3TaxAmountLessThan; } public QO_HistoryQuery setCartage3TaxAmountLessThan(BigDecimal value) { this.Cartage3TaxAmountLessThan = value; return this; } public BigDecimal getCartage3TaxAmountLessThanOrEqualTo() { return Cartage3TaxAmountLessThanOrEqualTo; } public QO_HistoryQuery setCartage3TaxAmountLessThanOrEqualTo(BigDecimal value) { this.Cartage3TaxAmountLessThanOrEqualTo = value; return this; } public BigDecimal getCartage3TaxAmountNotEqualTo() { return Cartage3TaxAmountNotEqualTo; } public QO_HistoryQuery setCartage3TaxAmountNotEqualTo(BigDecimal value) { this.Cartage3TaxAmountNotEqualTo = value; return this; } public ArrayList getCartage3TaxAmountBetween() { return Cartage3TaxAmountBetween; } public QO_HistoryQuery setCartage3TaxAmountBetween(ArrayList value) { this.Cartage3TaxAmountBetween = value; return this; } public ArrayList getCartage3TaxAmountIn() { return Cartage3TaxAmountIn; } public QO_HistoryQuery setCartage3TaxAmountIn(ArrayList value) { this.Cartage3TaxAmountIn = value; return this; } public String getDelContactName() { return DelContactName; } public QO_HistoryQuery setDelContactName(String value) { this.DelContactName = value; return this; } public String getDelContactNameStartsWith() { return DelContactNameStartsWith; } public QO_HistoryQuery setDelContactNameStartsWith(String value) { this.DelContactNameStartsWith = value; return this; } public String getDelContactNameEndsWith() { return DelContactNameEndsWith; } public QO_HistoryQuery setDelContactNameEndsWith(String value) { this.DelContactNameEndsWith = value; return this; } public String getDelContactNameContains() { return DelContactNameContains; } public QO_HistoryQuery setDelContactNameContains(String value) { this.DelContactNameContains = value; return this; } public String getDelContactNameLike() { return DelContactNameLike; } public QO_HistoryQuery setDelContactNameLike(String value) { this.DelContactNameLike = value; return this; } public ArrayList getDelContactNameBetween() { return DelContactNameBetween; } public QO_HistoryQuery setDelContactNameBetween(ArrayList value) { this.DelContactNameBetween = value; return this; } public ArrayList getDelContactNameIn() { return DelContactNameIn; } public QO_HistoryQuery setDelContactNameIn(ArrayList value) { this.DelContactNameIn = value; return this; } public String getFreightForwardAddress1() { return FreightForwardAddress1; } public QO_HistoryQuery setFreightForwardAddress1(String value) { this.FreightForwardAddress1 = value; return this; } public String getFreightForwardAddress1StartsWith() { return FreightForwardAddress1StartsWith; } public QO_HistoryQuery setFreightForwardAddress1StartsWith(String value) { this.FreightForwardAddress1StartsWith = value; return this; } public String getFreightForwardAddress1EndsWith() { return FreightForwardAddress1EndsWith; } public QO_HistoryQuery setFreightForwardAddress1EndsWith(String value) { this.FreightForwardAddress1EndsWith = value; return this; } public String getFreightForwardAddress1Contains() { return FreightForwardAddress1Contains; } public QO_HistoryQuery setFreightForwardAddress1Contains(String value) { this.FreightForwardAddress1Contains = value; return this; } public String getFreightForwardAddress1Like() { return FreightForwardAddress1Like; } public QO_HistoryQuery setFreightForwardAddress1Like(String value) { this.FreightForwardAddress1Like = value; return this; } public ArrayList getFreightForwardAddress1Between() { return FreightForwardAddress1Between; } public QO_HistoryQuery setFreightForwardAddress1Between(ArrayList value) { this.FreightForwardAddress1Between = value; return this; } public ArrayList getFreightForwardAddress1In() { return FreightForwardAddress1In; } public QO_HistoryQuery setFreightForwardAddress1In(ArrayList value) { this.FreightForwardAddress1In = value; return this; } public String getFreightForwardAddress2() { return FreightForwardAddress2; } public QO_HistoryQuery setFreightForwardAddress2(String value) { this.FreightForwardAddress2 = value; return this; } public String getFreightForwardAddress2StartsWith() { return FreightForwardAddress2StartsWith; } public QO_HistoryQuery setFreightForwardAddress2StartsWith(String value) { this.FreightForwardAddress2StartsWith = value; return this; } public String getFreightForwardAddress2EndsWith() { return FreightForwardAddress2EndsWith; } public QO_HistoryQuery setFreightForwardAddress2EndsWith(String value) { this.FreightForwardAddress2EndsWith = value; return this; } public String getFreightForwardAddress2Contains() { return FreightForwardAddress2Contains; } public QO_HistoryQuery setFreightForwardAddress2Contains(String value) { this.FreightForwardAddress2Contains = value; return this; } public String getFreightForwardAddress2Like() { return FreightForwardAddress2Like; } public QO_HistoryQuery setFreightForwardAddress2Like(String value) { this.FreightForwardAddress2Like = value; return this; } public ArrayList getFreightForwardAddress2Between() { return FreightForwardAddress2Between; } public QO_HistoryQuery setFreightForwardAddress2Between(ArrayList value) { this.FreightForwardAddress2Between = value; return this; } public ArrayList getFreightForwardAddress2In() { return FreightForwardAddress2In; } public QO_HistoryQuery setFreightForwardAddress2In(ArrayList value) { this.FreightForwardAddress2In = value; return this; } public String getFreightForwardAddress3() { return FreightForwardAddress3; } public QO_HistoryQuery setFreightForwardAddress3(String value) { this.FreightForwardAddress3 = value; return this; } public String getFreightForwardAddress3StartsWith() { return FreightForwardAddress3StartsWith; } public QO_HistoryQuery setFreightForwardAddress3StartsWith(String value) { this.FreightForwardAddress3StartsWith = value; return this; } public String getFreightForwardAddress3EndsWith() { return FreightForwardAddress3EndsWith; } public QO_HistoryQuery setFreightForwardAddress3EndsWith(String value) { this.FreightForwardAddress3EndsWith = value; return this; } public String getFreightForwardAddress3Contains() { return FreightForwardAddress3Contains; } public QO_HistoryQuery setFreightForwardAddress3Contains(String value) { this.FreightForwardAddress3Contains = value; return this; } public String getFreightForwardAddress3Like() { return FreightForwardAddress3Like; } public QO_HistoryQuery setFreightForwardAddress3Like(String value) { this.FreightForwardAddress3Like = value; return this; } public ArrayList getFreightForwardAddress3Between() { return FreightForwardAddress3Between; } public QO_HistoryQuery setFreightForwardAddress3Between(ArrayList value) { this.FreightForwardAddress3Between = value; return this; } public ArrayList getFreightForwardAddress3In() { return FreightForwardAddress3In; } public QO_HistoryQuery setFreightForwardAddress3In(ArrayList value) { this.FreightForwardAddress3In = value; return this; } public String getFreightForwardAddress4() { return FreightForwardAddress4; } public QO_HistoryQuery setFreightForwardAddress4(String value) { this.FreightForwardAddress4 = value; return this; } public String getFreightForwardAddress4StartsWith() { return FreightForwardAddress4StartsWith; } public QO_HistoryQuery setFreightForwardAddress4StartsWith(String value) { this.FreightForwardAddress4StartsWith = value; return this; } public String getFreightForwardAddress4EndsWith() { return FreightForwardAddress4EndsWith; } public QO_HistoryQuery setFreightForwardAddress4EndsWith(String value) { this.FreightForwardAddress4EndsWith = value; return this; } public String getFreightForwardAddress4Contains() { return FreightForwardAddress4Contains; } public QO_HistoryQuery setFreightForwardAddress4Contains(String value) { this.FreightForwardAddress4Contains = value; return this; } public String getFreightForwardAddress4Like() { return FreightForwardAddress4Like; } public QO_HistoryQuery setFreightForwardAddress4Like(String value) { this.FreightForwardAddress4Like = value; return this; } public ArrayList getFreightForwardAddress4Between() { return FreightForwardAddress4Between; } public QO_HistoryQuery setFreightForwardAddress4Between(ArrayList value) { this.FreightForwardAddress4Between = value; return this; } public ArrayList getFreightForwardAddress4In() { return FreightForwardAddress4In; } public QO_HistoryQuery setFreightForwardAddress4In(ArrayList value) { this.FreightForwardAddress4In = value; return this; } public String getFreightForwardNotes() { return FreightForwardNotes; } public QO_HistoryQuery setFreightForwardNotes(String value) { this.FreightForwardNotes = value; return this; } public String getFreightForwardNotesStartsWith() { return FreightForwardNotesStartsWith; } public QO_HistoryQuery setFreightForwardNotesStartsWith(String value) { this.FreightForwardNotesStartsWith = value; return this; } public String getFreightForwardNotesEndsWith() { return FreightForwardNotesEndsWith; } public QO_HistoryQuery setFreightForwardNotesEndsWith(String value) { this.FreightForwardNotesEndsWith = value; return this; } public String getFreightForwardNotesContains() { return FreightForwardNotesContains; } public QO_HistoryQuery setFreightForwardNotesContains(String value) { this.FreightForwardNotesContains = value; return this; } public String getFreightForwardNotesLike() { return FreightForwardNotesLike; } public QO_HistoryQuery setFreightForwardNotesLike(String value) { this.FreightForwardNotesLike = value; return this; } public ArrayList getFreightForwardNotesBetween() { return FreightForwardNotesBetween; } public QO_HistoryQuery setFreightForwardNotesBetween(ArrayList value) { this.FreightForwardNotesBetween = value; return this; } public ArrayList getFreightForwardNotesIn() { return FreightForwardNotesIn; } public QO_HistoryQuery setFreightForwardNotesIn(ArrayList value) { this.FreightForwardNotesIn = value; return this; } public Date getExpectedCloseDate() { return ExpectedCloseDate; } public QO_HistoryQuery setExpectedCloseDate(Date value) { this.ExpectedCloseDate = value; return this; } public Date getExpectedCloseDateGreaterThanOrEqualTo() { return ExpectedCloseDateGreaterThanOrEqualTo; } public QO_HistoryQuery setExpectedCloseDateGreaterThanOrEqualTo(Date value) { this.ExpectedCloseDateGreaterThanOrEqualTo = value; return this; } public Date getExpectedCloseDateGreaterThan() { return ExpectedCloseDateGreaterThan; } public QO_HistoryQuery setExpectedCloseDateGreaterThan(Date value) { this.ExpectedCloseDateGreaterThan = value; return this; } public Date getExpectedCloseDateLessThan() { return ExpectedCloseDateLessThan; } public QO_HistoryQuery setExpectedCloseDateLessThan(Date value) { this.ExpectedCloseDateLessThan = value; return this; } public Date getExpectedCloseDateLessThanOrEqualTo() { return ExpectedCloseDateLessThanOrEqualTo; } public QO_HistoryQuery setExpectedCloseDateLessThanOrEqualTo(Date value) { this.ExpectedCloseDateLessThanOrEqualTo = value; return this; } public Date getExpectedCloseDateNotEqualTo() { return ExpectedCloseDateNotEqualTo; } public QO_HistoryQuery setExpectedCloseDateNotEqualTo(Date value) { this.ExpectedCloseDateNotEqualTo = value; return this; } public ArrayList getExpectedCloseDateBetween() { return ExpectedCloseDateBetween; } public QO_HistoryQuery setExpectedCloseDateBetween(ArrayList value) { this.ExpectedCloseDateBetween = value; return this; } public ArrayList getExpectedCloseDateIn() { return ExpectedCloseDateIn; } public QO_HistoryQuery setExpectedCloseDateIn(ArrayList value) { this.ExpectedCloseDateIn = value; return this; } public Short getOpportunityStatus() { return OpportunityStatus; } public QO_HistoryQuery setOpportunityStatus(Short value) { this.OpportunityStatus = value; return this; } public Short getOpportunityStatusGreaterThanOrEqualTo() { return OpportunityStatusGreaterThanOrEqualTo; } public QO_HistoryQuery setOpportunityStatusGreaterThanOrEqualTo(Short value) { this.OpportunityStatusGreaterThanOrEqualTo = value; return this; } public Short getOpportunityStatusGreaterThan() { return OpportunityStatusGreaterThan; } public QO_HistoryQuery setOpportunityStatusGreaterThan(Short value) { this.OpportunityStatusGreaterThan = value; return this; } public Short getOpportunityStatusLessThan() { return OpportunityStatusLessThan; } public QO_HistoryQuery setOpportunityStatusLessThan(Short value) { this.OpportunityStatusLessThan = value; return this; } public Short getOpportunityStatusLessThanOrEqualTo() { return OpportunityStatusLessThanOrEqualTo; } public QO_HistoryQuery setOpportunityStatusLessThanOrEqualTo(Short value) { this.OpportunityStatusLessThanOrEqualTo = value; return this; } public Short getOpportunityStatusNotEqualTo() { return OpportunityStatusNotEqualTo; } public QO_HistoryQuery setOpportunityStatusNotEqualTo(Short value) { this.OpportunityStatusNotEqualTo = value; return this; } public ArrayList getOpportunityStatusBetween() { return OpportunityStatusBetween; } public QO_HistoryQuery setOpportunityStatusBetween(ArrayList value) { this.OpportunityStatusBetween = value; return this; } public ArrayList getOpportunityStatusIn() { return OpportunityStatusIn; } public QO_HistoryQuery setOpportunityStatusIn(ArrayList value) { this.OpportunityStatusIn = value; return this; } public String getSalesStageID() { return SalesStageID; } public QO_HistoryQuery setSalesStageID(String value) { this.SalesStageID = value; return this; } public String getSalesStageIDStartsWith() { return SalesStageIDStartsWith; } public QO_HistoryQuery setSalesStageIDStartsWith(String value) { this.SalesStageIDStartsWith = value; return this; } public String getSalesStageIDEndsWith() { return SalesStageIDEndsWith; } public QO_HistoryQuery setSalesStageIDEndsWith(String value) { this.SalesStageIDEndsWith = value; return this; } public String getSalesStageIDContains() { return SalesStageIDContains; } public QO_HistoryQuery setSalesStageIDContains(String value) { this.SalesStageIDContains = value; return this; } public String getSalesStageIDLike() { return SalesStageIDLike; } public QO_HistoryQuery setSalesStageIDLike(String value) { this.SalesStageIDLike = value; return this; } public ArrayList getSalesStageIDBetween() { return SalesStageIDBetween; } public QO_HistoryQuery setSalesStageIDBetween(ArrayList value) { this.SalesStageIDBetween = value; return this; } public ArrayList getSalesStageIDIn() { return SalesStageIDIn; } public QO_HistoryQuery setSalesStageIDIn(ArrayList value) { this.SalesStageIDIn = value; return this; } public String getOpportunityStatusReasonID() { return OpportunityStatusReasonID; } public QO_HistoryQuery setOpportunityStatusReasonID(String value) { this.OpportunityStatusReasonID = value; return this; } public String getOpportunityStatusReasonIDStartsWith() { return OpportunityStatusReasonIDStartsWith; } public QO_HistoryQuery setOpportunityStatusReasonIDStartsWith(String value) { this.OpportunityStatusReasonIDStartsWith = value; return this; } public String getOpportunityStatusReasonIDEndsWith() { return OpportunityStatusReasonIDEndsWith; } public QO_HistoryQuery setOpportunityStatusReasonIDEndsWith(String value) { this.OpportunityStatusReasonIDEndsWith = value; return this; } public String getOpportunityStatusReasonIDContains() { return OpportunityStatusReasonIDContains; } public QO_HistoryQuery setOpportunityStatusReasonIDContains(String value) { this.OpportunityStatusReasonIDContains = value; return this; } public String getOpportunityStatusReasonIDLike() { return OpportunityStatusReasonIDLike; } public QO_HistoryQuery setOpportunityStatusReasonIDLike(String value) { this.OpportunityStatusReasonIDLike = value; return this; } public ArrayList getOpportunityStatusReasonIDBetween() { return OpportunityStatusReasonIDBetween; } public QO_HistoryQuery setOpportunityStatusReasonIDBetween(ArrayList value) { this.OpportunityStatusReasonIDBetween = value; return this; } public ArrayList getOpportunityStatusReasonIDIn() { return OpportunityStatusReasonIDIn; } public QO_HistoryQuery setOpportunityStatusReasonIDIn(ArrayList value) { this.OpportunityStatusReasonIDIn = value; return this; } public String getOpportunityNote() { return OpportunityNote; } public QO_HistoryQuery setOpportunityNote(String value) { this.OpportunityNote = value; return this; } public String getOpportunityNoteStartsWith() { return OpportunityNoteStartsWith; } public QO_HistoryQuery setOpportunityNoteStartsWith(String value) { this.OpportunityNoteStartsWith = value; return this; } public String getOpportunityNoteEndsWith() { return OpportunityNoteEndsWith; } public QO_HistoryQuery setOpportunityNoteEndsWith(String value) { this.OpportunityNoteEndsWith = value; return this; } public String getOpportunityNoteContains() { return OpportunityNoteContains; } public QO_HistoryQuery setOpportunityNoteContains(String value) { this.OpportunityNoteContains = value; return this; } public String getOpportunityNoteLike() { return OpportunityNoteLike; } public QO_HistoryQuery setOpportunityNoteLike(String value) { this.OpportunityNoteLike = value; return this; } public ArrayList getOpportunityNoteBetween() { return OpportunityNoteBetween; } public QO_HistoryQuery setOpportunityNoteBetween(ArrayList value) { this.OpportunityNoteBetween = value; return this; } public ArrayList getOpportunityNoteIn() { return OpportunityNoteIn; } public QO_HistoryQuery setOpportunityNoteIn(ArrayList value) { this.OpportunityNoteIn = value; return this; } public Boolean isInvoiceEmailed() { return InvoiceEmailed; } public QO_HistoryQuery setInvoiceEmailed(Boolean value) { this.InvoiceEmailed = value; return this; } public Boolean isDropShipment() { return DropShipment; } public QO_HistoryQuery setDropShipment(Boolean value) { this.DropShipment = value; return this; } public String getDeliveryAddressee() { return DeliveryAddressee; } public QO_HistoryQuery setDeliveryAddressee(String value) { this.DeliveryAddressee = value; return this; } public String getDeliveryAddresseeStartsWith() { return DeliveryAddresseeStartsWith; } public QO_HistoryQuery setDeliveryAddresseeStartsWith(String value) { this.DeliveryAddresseeStartsWith = value; return this; } public String getDeliveryAddresseeEndsWith() { return DeliveryAddresseeEndsWith; } public QO_HistoryQuery setDeliveryAddresseeEndsWith(String value) { this.DeliveryAddresseeEndsWith = value; return this; } public String getDeliveryAddresseeContains() { return DeliveryAddresseeContains; } public QO_HistoryQuery setDeliveryAddresseeContains(String value) { this.DeliveryAddresseeContains = value; return this; } public String getDeliveryAddresseeLike() { return DeliveryAddresseeLike; } public QO_HistoryQuery setDeliveryAddresseeLike(String value) { this.DeliveryAddresseeLike = value; return this; } public ArrayList getDeliveryAddresseeBetween() { return DeliveryAddresseeBetween; } public QO_HistoryQuery setDeliveryAddresseeBetween(ArrayList value) { this.DeliveryAddresseeBetween = value; return this; } public ArrayList getDeliveryAddresseeIn() { return DeliveryAddresseeIn; } public QO_HistoryQuery setDeliveryAddresseeIn(ArrayList value) { this.DeliveryAddresseeIn = value; return this; } public String getDeliveryAddressCountry() { return DeliveryAddressCountry; } public QO_HistoryQuery setDeliveryAddressCountry(String value) { this.DeliveryAddressCountry = value; return this; } public String getDeliveryAddressCountryStartsWith() { return DeliveryAddressCountryStartsWith; } public QO_HistoryQuery setDeliveryAddressCountryStartsWith(String value) { this.DeliveryAddressCountryStartsWith = value; return this; } public String getDeliveryAddressCountryEndsWith() { return DeliveryAddressCountryEndsWith; } public QO_HistoryQuery setDeliveryAddressCountryEndsWith(String value) { this.DeliveryAddressCountryEndsWith = value; return this; } public String getDeliveryAddressCountryContains() { return DeliveryAddressCountryContains; } public QO_HistoryQuery setDeliveryAddressCountryContains(String value) { this.DeliveryAddressCountryContains = value; return this; } public String getDeliveryAddressCountryLike() { return DeliveryAddressCountryLike; } public QO_HistoryQuery setDeliveryAddressCountryLike(String value) { this.DeliveryAddressCountryLike = value; return this; } public ArrayList getDeliveryAddressCountryBetween() { return DeliveryAddressCountryBetween; } public QO_HistoryQuery setDeliveryAddressCountryBetween(ArrayList value) { this.DeliveryAddressCountryBetween = value; return this; } public ArrayList getDeliveryAddressCountryIn() { return DeliveryAddressCountryIn; } public QO_HistoryQuery setDeliveryAddressCountryIn(ArrayList value) { this.DeliveryAddressCountryIn = value; return this; } public String getFreightForwardAddressCountry() { return FreightForwardAddressCountry; } public QO_HistoryQuery setFreightForwardAddressCountry(String value) { this.FreightForwardAddressCountry = value; return this; } public String getFreightForwardAddressCountryStartsWith() { return FreightForwardAddressCountryStartsWith; } public QO_HistoryQuery setFreightForwardAddressCountryStartsWith(String value) { this.FreightForwardAddressCountryStartsWith = value; return this; } public String getFreightForwardAddressCountryEndsWith() { return FreightForwardAddressCountryEndsWith; } public QO_HistoryQuery setFreightForwardAddressCountryEndsWith(String value) { this.FreightForwardAddressCountryEndsWith = value; return this; } public String getFreightForwardAddressCountryContains() { return FreightForwardAddressCountryContains; } public QO_HistoryQuery setFreightForwardAddressCountryContains(String value) { this.FreightForwardAddressCountryContains = value; return this; } public String getFreightForwardAddressCountryLike() { return FreightForwardAddressCountryLike; } public QO_HistoryQuery setFreightForwardAddressCountryLike(String value) { this.FreightForwardAddressCountryLike = value; return this; } public ArrayList getFreightForwardAddressCountryBetween() { return FreightForwardAddressCountryBetween; } public QO_HistoryQuery setFreightForwardAddressCountryBetween(ArrayList value) { this.FreightForwardAddressCountryBetween = value; return this; } public ArrayList getFreightForwardAddressCountryIn() { return FreightForwardAddressCountryIn; } public QO_HistoryQuery setFreightForwardAddressCountryIn(ArrayList value) { this.FreightForwardAddressCountryIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class QO_HistoryActivateQuery extends QueryDb implements IReturn> { public String QuoteActivateID = null; public String QuoteActivateIDStartsWith = null; public String QuoteActivateIDEndsWith = null; public String QuoteActivateIDContains = null; public String QuoteActivateIDLike = null; public ArrayList QuoteActivateIDBetween = null; public ArrayList QuoteActivateIDIn = null; public String QuoteHistoryID = null; public String QuoteHistoryIDStartsWith = null; public String QuoteHistoryIDEndsWith = null; public String QuoteHistoryIDContains = null; public String QuoteHistoryIDLike = null; public ArrayList QuoteHistoryIDBetween = null; public ArrayList QuoteHistoryIDIn = null; public Date LastActivated = null; public Date LastActivatedGreaterThanOrEqualTo = null; public Date LastActivatedGreaterThan = null; public Date LastActivatedLessThan = null; public Date LastActivatedLessThanOrEqualTo = null; public Date LastActivatedNotEqualTo = null; public ArrayList LastActivatedBetween = null; public ArrayList LastActivatedIn = null; public Short RepeatEvery = null; public Short RepeatEveryGreaterThanOrEqualTo = null; public Short RepeatEveryGreaterThan = null; public Short RepeatEveryLessThan = null; public Short RepeatEveryLessThanOrEqualTo = null; public Short RepeatEveryNotEqualTo = null; public ArrayList RepeatEveryBetween = null; public ArrayList RepeatEveryIn = null; public Short RepeatPeriod = null; public Short RepeatPeriodGreaterThanOrEqualTo = null; public Short RepeatPeriodGreaterThan = null; public Short RepeatPeriodLessThan = null; public Short RepeatPeriodLessThanOrEqualTo = null; public Short RepeatPeriodNotEqualTo = null; public ArrayList RepeatPeriodBetween = null; public ArrayList RepeatPeriodIn = null; public Date NextActivate = null; public Date NextActivateGreaterThanOrEqualTo = null; public Date NextActivateGreaterThan = null; public Date NextActivateLessThan = null; public Date NextActivateLessThanOrEqualTo = null; public Date NextActivateNotEqualTo = null; public ArrayList NextActivateBetween = null; public ArrayList NextActivateIn = null; public Boolean EndingFlag = null; public Date EndDate = null; public Date EndDateGreaterThanOrEqualTo = null; public Date EndDateGreaterThan = null; public Date EndDateLessThan = null; public Date EndDateLessThanOrEqualTo = null; public Date EndDateNotEqualTo = null; public ArrayList EndDateBetween = null; public ArrayList EndDateIn = null; public String getQuoteActivateID() { return QuoteActivateID; } public QO_HistoryActivateQuery setQuoteActivateID(String value) { this.QuoteActivateID = value; return this; } public String getQuoteActivateIDStartsWith() { return QuoteActivateIDStartsWith; } public QO_HistoryActivateQuery setQuoteActivateIDStartsWith(String value) { this.QuoteActivateIDStartsWith = value; return this; } public String getQuoteActivateIDEndsWith() { return QuoteActivateIDEndsWith; } public QO_HistoryActivateQuery setQuoteActivateIDEndsWith(String value) { this.QuoteActivateIDEndsWith = value; return this; } public String getQuoteActivateIDContains() { return QuoteActivateIDContains; } public QO_HistoryActivateQuery setQuoteActivateIDContains(String value) { this.QuoteActivateIDContains = value; return this; } public String getQuoteActivateIDLike() { return QuoteActivateIDLike; } public QO_HistoryActivateQuery setQuoteActivateIDLike(String value) { this.QuoteActivateIDLike = value; return this; } public ArrayList getQuoteActivateIDBetween() { return QuoteActivateIDBetween; } public QO_HistoryActivateQuery setQuoteActivateIDBetween(ArrayList value) { this.QuoteActivateIDBetween = value; return this; } public ArrayList getQuoteActivateIDIn() { return QuoteActivateIDIn; } public QO_HistoryActivateQuery setQuoteActivateIDIn(ArrayList value) { this.QuoteActivateIDIn = value; return this; } public String getQuoteHistoryID() { return QuoteHistoryID; } public QO_HistoryActivateQuery setQuoteHistoryID(String value) { this.QuoteHistoryID = value; return this; } public String getQuoteHistoryIDStartsWith() { return QuoteHistoryIDStartsWith; } public QO_HistoryActivateQuery setQuoteHistoryIDStartsWith(String value) { this.QuoteHistoryIDStartsWith = value; return this; } public String getQuoteHistoryIDEndsWith() { return QuoteHistoryIDEndsWith; } public QO_HistoryActivateQuery setQuoteHistoryIDEndsWith(String value) { this.QuoteHistoryIDEndsWith = value; return this; } public String getQuoteHistoryIDContains() { return QuoteHistoryIDContains; } public QO_HistoryActivateQuery setQuoteHistoryIDContains(String value) { this.QuoteHistoryIDContains = value; return this; } public String getQuoteHistoryIDLike() { return QuoteHistoryIDLike; } public QO_HistoryActivateQuery setQuoteHistoryIDLike(String value) { this.QuoteHistoryIDLike = value; return this; } public ArrayList getQuoteHistoryIDBetween() { return QuoteHistoryIDBetween; } public QO_HistoryActivateQuery setQuoteHistoryIDBetween(ArrayList value) { this.QuoteHistoryIDBetween = value; return this; } public ArrayList getQuoteHistoryIDIn() { return QuoteHistoryIDIn; } public QO_HistoryActivateQuery setQuoteHistoryIDIn(ArrayList value) { this.QuoteHistoryIDIn = value; return this; } public Date getLastActivated() { return LastActivated; } public QO_HistoryActivateQuery setLastActivated(Date value) { this.LastActivated = value; return this; } public Date getLastActivatedGreaterThanOrEqualTo() { return LastActivatedGreaterThanOrEqualTo; } public QO_HistoryActivateQuery setLastActivatedGreaterThanOrEqualTo(Date value) { this.LastActivatedGreaterThanOrEqualTo = value; return this; } public Date getLastActivatedGreaterThan() { return LastActivatedGreaterThan; } public QO_HistoryActivateQuery setLastActivatedGreaterThan(Date value) { this.LastActivatedGreaterThan = value; return this; } public Date getLastActivatedLessThan() { return LastActivatedLessThan; } public QO_HistoryActivateQuery setLastActivatedLessThan(Date value) { this.LastActivatedLessThan = value; return this; } public Date getLastActivatedLessThanOrEqualTo() { return LastActivatedLessThanOrEqualTo; } public QO_HistoryActivateQuery setLastActivatedLessThanOrEqualTo(Date value) { this.LastActivatedLessThanOrEqualTo = value; return this; } public Date getLastActivatedNotEqualTo() { return LastActivatedNotEqualTo; } public QO_HistoryActivateQuery setLastActivatedNotEqualTo(Date value) { this.LastActivatedNotEqualTo = value; return this; } public ArrayList getLastActivatedBetween() { return LastActivatedBetween; } public QO_HistoryActivateQuery setLastActivatedBetween(ArrayList value) { this.LastActivatedBetween = value; return this; } public ArrayList getLastActivatedIn() { return LastActivatedIn; } public QO_HistoryActivateQuery setLastActivatedIn(ArrayList value) { this.LastActivatedIn = value; return this; } public Short getRepeatEvery() { return RepeatEvery; } public QO_HistoryActivateQuery setRepeatEvery(Short value) { this.RepeatEvery = value; return this; } public Short getRepeatEveryGreaterThanOrEqualTo() { return RepeatEveryGreaterThanOrEqualTo; } public QO_HistoryActivateQuery setRepeatEveryGreaterThanOrEqualTo(Short value) { this.RepeatEveryGreaterThanOrEqualTo = value; return this; } public Short getRepeatEveryGreaterThan() { return RepeatEveryGreaterThan; } public QO_HistoryActivateQuery setRepeatEveryGreaterThan(Short value) { this.RepeatEveryGreaterThan = value; return this; } public Short getRepeatEveryLessThan() { return RepeatEveryLessThan; } public QO_HistoryActivateQuery setRepeatEveryLessThan(Short value) { this.RepeatEveryLessThan = value; return this; } public Short getRepeatEveryLessThanOrEqualTo() { return RepeatEveryLessThanOrEqualTo; } public QO_HistoryActivateQuery setRepeatEveryLessThanOrEqualTo(Short value) { this.RepeatEveryLessThanOrEqualTo = value; return this; } public Short getRepeatEveryNotEqualTo() { return RepeatEveryNotEqualTo; } public QO_HistoryActivateQuery setRepeatEveryNotEqualTo(Short value) { this.RepeatEveryNotEqualTo = value; return this; } public ArrayList getRepeatEveryBetween() { return RepeatEveryBetween; } public QO_HistoryActivateQuery setRepeatEveryBetween(ArrayList value) { this.RepeatEveryBetween = value; return this; } public ArrayList getRepeatEveryIn() { return RepeatEveryIn; } public QO_HistoryActivateQuery setRepeatEveryIn(ArrayList value) { this.RepeatEveryIn = value; return this; } public Short getRepeatPeriod() { return RepeatPeriod; } public QO_HistoryActivateQuery setRepeatPeriod(Short value) { this.RepeatPeriod = value; return this; } public Short getRepeatPeriodGreaterThanOrEqualTo() { return RepeatPeriodGreaterThanOrEqualTo; } public QO_HistoryActivateQuery setRepeatPeriodGreaterThanOrEqualTo(Short value) { this.RepeatPeriodGreaterThanOrEqualTo = value; return this; } public Short getRepeatPeriodGreaterThan() { return RepeatPeriodGreaterThan; } public QO_HistoryActivateQuery setRepeatPeriodGreaterThan(Short value) { this.RepeatPeriodGreaterThan = value; return this; } public Short getRepeatPeriodLessThan() { return RepeatPeriodLessThan; } public QO_HistoryActivateQuery setRepeatPeriodLessThan(Short value) { this.RepeatPeriodLessThan = value; return this; } public Short getRepeatPeriodLessThanOrEqualTo() { return RepeatPeriodLessThanOrEqualTo; } public QO_HistoryActivateQuery setRepeatPeriodLessThanOrEqualTo(Short value) { this.RepeatPeriodLessThanOrEqualTo = value; return this; } public Short getRepeatPeriodNotEqualTo() { return RepeatPeriodNotEqualTo; } public QO_HistoryActivateQuery setRepeatPeriodNotEqualTo(Short value) { this.RepeatPeriodNotEqualTo = value; return this; } public ArrayList getRepeatPeriodBetween() { return RepeatPeriodBetween; } public QO_HistoryActivateQuery setRepeatPeriodBetween(ArrayList value) { this.RepeatPeriodBetween = value; return this; } public ArrayList getRepeatPeriodIn() { return RepeatPeriodIn; } public QO_HistoryActivateQuery setRepeatPeriodIn(ArrayList value) { this.RepeatPeriodIn = value; return this; } public Date getNextActivate() { return NextActivate; } public QO_HistoryActivateQuery setNextActivate(Date value) { this.NextActivate = value; return this; } public Date getNextActivateGreaterThanOrEqualTo() { return NextActivateGreaterThanOrEqualTo; } public QO_HistoryActivateQuery setNextActivateGreaterThanOrEqualTo(Date value) { this.NextActivateGreaterThanOrEqualTo = value; return this; } public Date getNextActivateGreaterThan() { return NextActivateGreaterThan; } public QO_HistoryActivateQuery setNextActivateGreaterThan(Date value) { this.NextActivateGreaterThan = value; return this; } public Date getNextActivateLessThan() { return NextActivateLessThan; } public QO_HistoryActivateQuery setNextActivateLessThan(Date value) { this.NextActivateLessThan = value; return this; } public Date getNextActivateLessThanOrEqualTo() { return NextActivateLessThanOrEqualTo; } public QO_HistoryActivateQuery setNextActivateLessThanOrEqualTo(Date value) { this.NextActivateLessThanOrEqualTo = value; return this; } public Date getNextActivateNotEqualTo() { return NextActivateNotEqualTo; } public QO_HistoryActivateQuery setNextActivateNotEqualTo(Date value) { this.NextActivateNotEqualTo = value; return this; } public ArrayList getNextActivateBetween() { return NextActivateBetween; } public QO_HistoryActivateQuery setNextActivateBetween(ArrayList value) { this.NextActivateBetween = value; return this; } public ArrayList getNextActivateIn() { return NextActivateIn; } public QO_HistoryActivateQuery setNextActivateIn(ArrayList value) { this.NextActivateIn = value; return this; } public Boolean isEndingFlag() { return EndingFlag; } public QO_HistoryActivateQuery setEndingFlag(Boolean value) { this.EndingFlag = value; return this; } public Date getEndDate() { return EndDate; } public QO_HistoryActivateQuery setEndDate(Date value) { this.EndDate = value; return this; } public Date getEndDateGreaterThanOrEqualTo() { return EndDateGreaterThanOrEqualTo; } public QO_HistoryActivateQuery setEndDateGreaterThanOrEqualTo(Date value) { this.EndDateGreaterThanOrEqualTo = value; return this; } public Date getEndDateGreaterThan() { return EndDateGreaterThan; } public QO_HistoryActivateQuery setEndDateGreaterThan(Date value) { this.EndDateGreaterThan = value; return this; } public Date getEndDateLessThan() { return EndDateLessThan; } public QO_HistoryActivateQuery setEndDateLessThan(Date value) { this.EndDateLessThan = value; return this; } public Date getEndDateLessThanOrEqualTo() { return EndDateLessThanOrEqualTo; } public QO_HistoryActivateQuery setEndDateLessThanOrEqualTo(Date value) { this.EndDateLessThanOrEqualTo = value; return this; } public Date getEndDateNotEqualTo() { return EndDateNotEqualTo; } public QO_HistoryActivateQuery setEndDateNotEqualTo(Date value) { this.EndDateNotEqualTo = value; return this; } public ArrayList getEndDateBetween() { return EndDateBetween; } public QO_HistoryActivateQuery setEndDateBetween(ArrayList value) { this.EndDateBetween = value; return this; } public ArrayList getEndDateIn() { return EndDateIn; } public QO_HistoryActivateQuery setEndDateIn(ArrayList value) { this.EndDateIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class QO_LineCustomFieldsQuery extends QueryDb implements IReturn> { public String FieldID = null; public String FieldIDStartsWith = null; public String FieldIDEndsWith = null; public String FieldIDContains = null; public String FieldIDLike = null; public ArrayList FieldIDBetween = null; public ArrayList FieldIDIn = null; public String SettingName = null; public String SettingNameStartsWith = null; public String SettingNameEndsWith = null; public String SettingNameContains = null; public String SettingNameLike = null; public ArrayList SettingNameBetween = null; public ArrayList SettingNameIn = null; public String SettingDescription = null; public String SettingDescriptionStartsWith = null; public String SettingDescriptionEndsWith = null; public String SettingDescriptionContains = null; public String SettingDescriptionLike = null; public ArrayList SettingDescriptionBetween = null; public ArrayList SettingDescriptionIn = null; public Integer CellType = null; public Integer CellTypeGreaterThanOrEqualTo = null; public Integer CellTypeGreaterThan = null; public Integer CellTypeLessThan = null; public Integer CellTypeLessThanOrEqualTo = null; public Integer CellTypeNotEqualTo = null; public ArrayList CellTypeBetween = null; public ArrayList CellTypeIn = null; public String FieldParameter = null; public String FieldParameterStartsWith = null; public String FieldParameterEndsWith = null; public String FieldParameterContains = null; public String FieldParameterLike = null; public ArrayList FieldParameterBetween = null; public ArrayList FieldParameterIn = null; public UUID SY_Plugin_RecID = null; public ArrayList SY_Plugin_RecIDIn = null; public Date LastSavedDateTime = null; public Date LastSavedDateTimeGreaterThanOrEqualTo = null; public Date LastSavedDateTimeGreaterThan = null; public Date LastSavedDateTimeLessThan = null; public Date LastSavedDateTimeLessThanOrEqualTo = null; public Date LastSavedDateTimeNotEqualTo = null; public ArrayList LastSavedDateTimeBetween = null; public ArrayList LastSavedDateTimeIn = null; public Integer DisplayOrder = null; public Integer DisplayOrderGreaterThanOrEqualTo = null; public Integer DisplayOrderGreaterThan = null; public Integer DisplayOrderLessThan = null; public Integer DisplayOrderLessThanOrEqualTo = null; public Integer DisplayOrderNotEqualTo = null; public ArrayList DisplayOrderBetween = null; public ArrayList DisplayOrderIn = null; public String getFieldID() { return FieldID; } public QO_LineCustomFieldsQuery setFieldID(String value) { this.FieldID = value; return this; } public String getFieldIDStartsWith() { return FieldIDStartsWith; } public QO_LineCustomFieldsQuery setFieldIDStartsWith(String value) { this.FieldIDStartsWith = value; return this; } public String getFieldIDEndsWith() { return FieldIDEndsWith; } public QO_LineCustomFieldsQuery setFieldIDEndsWith(String value) { this.FieldIDEndsWith = value; return this; } public String getFieldIDContains() { return FieldIDContains; } public QO_LineCustomFieldsQuery setFieldIDContains(String value) { this.FieldIDContains = value; return this; } public String getFieldIDLike() { return FieldIDLike; } public QO_LineCustomFieldsQuery setFieldIDLike(String value) { this.FieldIDLike = value; return this; } public ArrayList getFieldIDBetween() { return FieldIDBetween; } public QO_LineCustomFieldsQuery setFieldIDBetween(ArrayList value) { this.FieldIDBetween = value; return this; } public ArrayList getFieldIDIn() { return FieldIDIn; } public QO_LineCustomFieldsQuery setFieldIDIn(ArrayList value) { this.FieldIDIn = value; return this; } public String getSettingName() { return SettingName; } public QO_LineCustomFieldsQuery setSettingName(String value) { this.SettingName = value; return this; } public String getSettingNameStartsWith() { return SettingNameStartsWith; } public QO_LineCustomFieldsQuery setSettingNameStartsWith(String value) { this.SettingNameStartsWith = value; return this; } public String getSettingNameEndsWith() { return SettingNameEndsWith; } public QO_LineCustomFieldsQuery setSettingNameEndsWith(String value) { this.SettingNameEndsWith = value; return this; } public String getSettingNameContains() { return SettingNameContains; } public QO_LineCustomFieldsQuery setSettingNameContains(String value) { this.SettingNameContains = value; return this; } public String getSettingNameLike() { return SettingNameLike; } public QO_LineCustomFieldsQuery setSettingNameLike(String value) { this.SettingNameLike = value; return this; } public ArrayList getSettingNameBetween() { return SettingNameBetween; } public QO_LineCustomFieldsQuery setSettingNameBetween(ArrayList value) { this.SettingNameBetween = value; return this; } public ArrayList getSettingNameIn() { return SettingNameIn; } public QO_LineCustomFieldsQuery setSettingNameIn(ArrayList value) { this.SettingNameIn = value; return this; } public String getSettingDescription() { return SettingDescription; } public QO_LineCustomFieldsQuery setSettingDescription(String value) { this.SettingDescription = value; return this; } public String getSettingDescriptionStartsWith() { return SettingDescriptionStartsWith; } public QO_LineCustomFieldsQuery setSettingDescriptionStartsWith(String value) { this.SettingDescriptionStartsWith = value; return this; } public String getSettingDescriptionEndsWith() { return SettingDescriptionEndsWith; } public QO_LineCustomFieldsQuery setSettingDescriptionEndsWith(String value) { this.SettingDescriptionEndsWith = value; return this; } public String getSettingDescriptionContains() { return SettingDescriptionContains; } public QO_LineCustomFieldsQuery setSettingDescriptionContains(String value) { this.SettingDescriptionContains = value; return this; } public String getSettingDescriptionLike() { return SettingDescriptionLike; } public QO_LineCustomFieldsQuery setSettingDescriptionLike(String value) { this.SettingDescriptionLike = value; return this; } public ArrayList getSettingDescriptionBetween() { return SettingDescriptionBetween; } public QO_LineCustomFieldsQuery setSettingDescriptionBetween(ArrayList value) { this.SettingDescriptionBetween = value; return this; } public ArrayList getSettingDescriptionIn() { return SettingDescriptionIn; } public QO_LineCustomFieldsQuery setSettingDescriptionIn(ArrayList value) { this.SettingDescriptionIn = value; return this; } public Integer getCellType() { return CellType; } public QO_LineCustomFieldsQuery setCellType(Integer value) { this.CellType = value; return this; } public Integer getCellTypeGreaterThanOrEqualTo() { return CellTypeGreaterThanOrEqualTo; } public QO_LineCustomFieldsQuery setCellTypeGreaterThanOrEqualTo(Integer value) { this.CellTypeGreaterThanOrEqualTo = value; return this; } public Integer getCellTypeGreaterThan() { return CellTypeGreaterThan; } public QO_LineCustomFieldsQuery setCellTypeGreaterThan(Integer value) { this.CellTypeGreaterThan = value; return this; } public Integer getCellTypeLessThan() { return CellTypeLessThan; } public QO_LineCustomFieldsQuery setCellTypeLessThan(Integer value) { this.CellTypeLessThan = value; return this; } public Integer getCellTypeLessThanOrEqualTo() { return CellTypeLessThanOrEqualTo; } public QO_LineCustomFieldsQuery setCellTypeLessThanOrEqualTo(Integer value) { this.CellTypeLessThanOrEqualTo = value; return this; } public Integer getCellTypeNotEqualTo() { return CellTypeNotEqualTo; } public QO_LineCustomFieldsQuery setCellTypeNotEqualTo(Integer value) { this.CellTypeNotEqualTo = value; return this; } public ArrayList getCellTypeBetween() { return CellTypeBetween; } public QO_LineCustomFieldsQuery setCellTypeBetween(ArrayList value) { this.CellTypeBetween = value; return this; } public ArrayList getCellTypeIn() { return CellTypeIn; } public QO_LineCustomFieldsQuery setCellTypeIn(ArrayList value) { this.CellTypeIn = value; return this; } public String getFieldParameter() { return FieldParameter; } public QO_LineCustomFieldsQuery setFieldParameter(String value) { this.FieldParameter = value; return this; } public String getFieldParameterStartsWith() { return FieldParameterStartsWith; } public QO_LineCustomFieldsQuery setFieldParameterStartsWith(String value) { this.FieldParameterStartsWith = value; return this; } public String getFieldParameterEndsWith() { return FieldParameterEndsWith; } public QO_LineCustomFieldsQuery setFieldParameterEndsWith(String value) { this.FieldParameterEndsWith = value; return this; } public String getFieldParameterContains() { return FieldParameterContains; } public QO_LineCustomFieldsQuery setFieldParameterContains(String value) { this.FieldParameterContains = value; return this; } public String getFieldParameterLike() { return FieldParameterLike; } public QO_LineCustomFieldsQuery setFieldParameterLike(String value) { this.FieldParameterLike = value; return this; } public ArrayList getFieldParameterBetween() { return FieldParameterBetween; } public QO_LineCustomFieldsQuery setFieldParameterBetween(ArrayList value) { this.FieldParameterBetween = value; return this; } public ArrayList getFieldParameterIn() { return FieldParameterIn; } public QO_LineCustomFieldsQuery setFieldParameterIn(ArrayList value) { this.FieldParameterIn = value; return this; } public UUID getSyPluginRecID() { return SY_Plugin_RecID; } public QO_LineCustomFieldsQuery setSyPluginRecID(UUID value) { this.SY_Plugin_RecID = value; return this; } public ArrayList getSyPluginRecIDIn() { return SY_Plugin_RecIDIn; } public QO_LineCustomFieldsQuery setSyPluginRecIDIn(ArrayList value) { this.SY_Plugin_RecIDIn = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public QO_LineCustomFieldsQuery setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getLastSavedDateTimeGreaterThanOrEqualTo() { return LastSavedDateTimeGreaterThanOrEqualTo; } public QO_LineCustomFieldsQuery setLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.LastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeGreaterThan() { return LastSavedDateTimeGreaterThan; } public QO_LineCustomFieldsQuery setLastSavedDateTimeGreaterThan(Date value) { this.LastSavedDateTimeGreaterThan = value; return this; } public Date getLastSavedDateTimeLessThan() { return LastSavedDateTimeLessThan; } public QO_LineCustomFieldsQuery setLastSavedDateTimeLessThan(Date value) { this.LastSavedDateTimeLessThan = value; return this; } public Date getLastSavedDateTimeLessThanOrEqualTo() { return LastSavedDateTimeLessThanOrEqualTo; } public QO_LineCustomFieldsQuery setLastSavedDateTimeLessThanOrEqualTo(Date value) { this.LastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeNotEqualTo() { return LastSavedDateTimeNotEqualTo; } public QO_LineCustomFieldsQuery setLastSavedDateTimeNotEqualTo(Date value) { this.LastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getLastSavedDateTimeBetween() { return LastSavedDateTimeBetween; } public QO_LineCustomFieldsQuery setLastSavedDateTimeBetween(ArrayList value) { this.LastSavedDateTimeBetween = value; return this; } public ArrayList getLastSavedDateTimeIn() { return LastSavedDateTimeIn; } public QO_LineCustomFieldsQuery setLastSavedDateTimeIn(ArrayList value) { this.LastSavedDateTimeIn = value; return this; } public Integer getDisplayOrder() { return DisplayOrder; } public QO_LineCustomFieldsQuery setDisplayOrder(Integer value) { this.DisplayOrder = value; return this; } public Integer getDisplayOrderGreaterThanOrEqualTo() { return DisplayOrderGreaterThanOrEqualTo; } public QO_LineCustomFieldsQuery setDisplayOrderGreaterThanOrEqualTo(Integer value) { this.DisplayOrderGreaterThanOrEqualTo = value; return this; } public Integer getDisplayOrderGreaterThan() { return DisplayOrderGreaterThan; } public QO_LineCustomFieldsQuery setDisplayOrderGreaterThan(Integer value) { this.DisplayOrderGreaterThan = value; return this; } public Integer getDisplayOrderLessThan() { return DisplayOrderLessThan; } public QO_LineCustomFieldsQuery setDisplayOrderLessThan(Integer value) { this.DisplayOrderLessThan = value; return this; } public Integer getDisplayOrderLessThanOrEqualTo() { return DisplayOrderLessThanOrEqualTo; } public QO_LineCustomFieldsQuery setDisplayOrderLessThanOrEqualTo(Integer value) { this.DisplayOrderLessThanOrEqualTo = value; return this; } public Integer getDisplayOrderNotEqualTo() { return DisplayOrderNotEqualTo; } public QO_LineCustomFieldsQuery setDisplayOrderNotEqualTo(Integer value) { this.DisplayOrderNotEqualTo = value; return this; } public ArrayList getDisplayOrderBetween() { return DisplayOrderBetween; } public QO_LineCustomFieldsQuery setDisplayOrderBetween(ArrayList value) { this.DisplayOrderBetween = value; return this; } public ArrayList getDisplayOrderIn() { return DisplayOrderIn; } public QO_LineCustomFieldsQuery setDisplayOrderIn(ArrayList value) { this.DisplayOrderIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class QO_LineCustomValuesQuery extends QueryDb implements IReturn> { public String RecID = null; public String RecIDStartsWith = null; public String RecIDEndsWith = null; public String RecIDContains = null; public String RecIDLike = null; public ArrayList RecIDBetween = null; public ArrayList RecIDIn = null; public String InvoiceLineID = null; public String InvoiceLineIDStartsWith = null; public String InvoiceLineIDEndsWith = null; public String InvoiceLineIDContains = null; public String InvoiceLineIDLike = null; public ArrayList InvoiceLineIDBetween = null; public ArrayList InvoiceLineIDIn = null; public String FieldID = null; public String FieldIDStartsWith = null; public String FieldIDEndsWith = null; public String FieldIDContains = null; public String FieldIDLike = null; public ArrayList FieldIDBetween = null; public ArrayList FieldIDIn = null; public String Contents = null; public String ContentsStartsWith = null; public String ContentsEndsWith = null; public String ContentsContains = null; public String ContentsLike = null; public ArrayList ContentsBetween = null; public ArrayList ContentsIn = null; public Date LastSavedDateTime = null; public Date LastSavedDateTimeGreaterThanOrEqualTo = null; public Date LastSavedDateTimeGreaterThan = null; public Date LastSavedDateTimeLessThan = null; public Date LastSavedDateTimeLessThanOrEqualTo = null; public Date LastSavedDateTimeNotEqualTo = null; public ArrayList LastSavedDateTimeBetween = null; public ArrayList LastSavedDateTimeIn = null; public String getRecID() { return RecID; } public QO_LineCustomValuesQuery setRecID(String value) { this.RecID = value; return this; } public String getRecIDStartsWith() { return RecIDStartsWith; } public QO_LineCustomValuesQuery setRecIDStartsWith(String value) { this.RecIDStartsWith = value; return this; } public String getRecIDEndsWith() { return RecIDEndsWith; } public QO_LineCustomValuesQuery setRecIDEndsWith(String value) { this.RecIDEndsWith = value; return this; } public String getRecIDContains() { return RecIDContains; } public QO_LineCustomValuesQuery setRecIDContains(String value) { this.RecIDContains = value; return this; } public String getRecIDLike() { return RecIDLike; } public QO_LineCustomValuesQuery setRecIDLike(String value) { this.RecIDLike = value; return this; } public ArrayList getRecIDBetween() { return RecIDBetween; } public QO_LineCustomValuesQuery setRecIDBetween(ArrayList value) { this.RecIDBetween = value; return this; } public ArrayList getRecIDIn() { return RecIDIn; } public QO_LineCustomValuesQuery setRecIDIn(ArrayList value) { this.RecIDIn = value; return this; } public String getInvoiceLineID() { return InvoiceLineID; } public QO_LineCustomValuesQuery setInvoiceLineID(String value) { this.InvoiceLineID = value; return this; } public String getInvoiceLineIDStartsWith() { return InvoiceLineIDStartsWith; } public QO_LineCustomValuesQuery setInvoiceLineIDStartsWith(String value) { this.InvoiceLineIDStartsWith = value; return this; } public String getInvoiceLineIDEndsWith() { return InvoiceLineIDEndsWith; } public QO_LineCustomValuesQuery setInvoiceLineIDEndsWith(String value) { this.InvoiceLineIDEndsWith = value; return this; } public String getInvoiceLineIDContains() { return InvoiceLineIDContains; } public QO_LineCustomValuesQuery setInvoiceLineIDContains(String value) { this.InvoiceLineIDContains = value; return this; } public String getInvoiceLineIDLike() { return InvoiceLineIDLike; } public QO_LineCustomValuesQuery setInvoiceLineIDLike(String value) { this.InvoiceLineIDLike = value; return this; } public ArrayList getInvoiceLineIDBetween() { return InvoiceLineIDBetween; } public QO_LineCustomValuesQuery setInvoiceLineIDBetween(ArrayList value) { this.InvoiceLineIDBetween = value; return this; } public ArrayList getInvoiceLineIDIn() { return InvoiceLineIDIn; } public QO_LineCustomValuesQuery setInvoiceLineIDIn(ArrayList value) { this.InvoiceLineIDIn = value; return this; } public String getFieldID() { return FieldID; } public QO_LineCustomValuesQuery setFieldID(String value) { this.FieldID = value; return this; } public String getFieldIDStartsWith() { return FieldIDStartsWith; } public QO_LineCustomValuesQuery setFieldIDStartsWith(String value) { this.FieldIDStartsWith = value; return this; } public String getFieldIDEndsWith() { return FieldIDEndsWith; } public QO_LineCustomValuesQuery setFieldIDEndsWith(String value) { this.FieldIDEndsWith = value; return this; } public String getFieldIDContains() { return FieldIDContains; } public QO_LineCustomValuesQuery setFieldIDContains(String value) { this.FieldIDContains = value; return this; } public String getFieldIDLike() { return FieldIDLike; } public QO_LineCustomValuesQuery setFieldIDLike(String value) { this.FieldIDLike = value; return this; } public ArrayList getFieldIDBetween() { return FieldIDBetween; } public QO_LineCustomValuesQuery setFieldIDBetween(ArrayList value) { this.FieldIDBetween = value; return this; } public ArrayList getFieldIDIn() { return FieldIDIn; } public QO_LineCustomValuesQuery setFieldIDIn(ArrayList value) { this.FieldIDIn = value; return this; } public String getContents() { return Contents; } public QO_LineCustomValuesQuery setContents(String value) { this.Contents = value; return this; } public String getContentsStartsWith() { return ContentsStartsWith; } public QO_LineCustomValuesQuery setContentsStartsWith(String value) { this.ContentsStartsWith = value; return this; } public String getContentsEndsWith() { return ContentsEndsWith; } public QO_LineCustomValuesQuery setContentsEndsWith(String value) { this.ContentsEndsWith = value; return this; } public String getContentsContains() { return ContentsContains; } public QO_LineCustomValuesQuery setContentsContains(String value) { this.ContentsContains = value; return this; } public String getContentsLike() { return ContentsLike; } public QO_LineCustomValuesQuery setContentsLike(String value) { this.ContentsLike = value; return this; } public ArrayList getContentsBetween() { return ContentsBetween; } public QO_LineCustomValuesQuery setContentsBetween(ArrayList value) { this.ContentsBetween = value; return this; } public ArrayList getContentsIn() { return ContentsIn; } public QO_LineCustomValuesQuery setContentsIn(ArrayList value) { this.ContentsIn = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public QO_LineCustomValuesQuery setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getLastSavedDateTimeGreaterThanOrEqualTo() { return LastSavedDateTimeGreaterThanOrEqualTo; } public QO_LineCustomValuesQuery setLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.LastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeGreaterThan() { return LastSavedDateTimeGreaterThan; } public QO_LineCustomValuesQuery setLastSavedDateTimeGreaterThan(Date value) { this.LastSavedDateTimeGreaterThan = value; return this; } public Date getLastSavedDateTimeLessThan() { return LastSavedDateTimeLessThan; } public QO_LineCustomValuesQuery setLastSavedDateTimeLessThan(Date value) { this.LastSavedDateTimeLessThan = value; return this; } public Date getLastSavedDateTimeLessThanOrEqualTo() { return LastSavedDateTimeLessThanOrEqualTo; } public QO_LineCustomValuesQuery setLastSavedDateTimeLessThanOrEqualTo(Date value) { this.LastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeNotEqualTo() { return LastSavedDateTimeNotEqualTo; } public QO_LineCustomValuesQuery setLastSavedDateTimeNotEqualTo(Date value) { this.LastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getLastSavedDateTimeBetween() { return LastSavedDateTimeBetween; } public QO_LineCustomValuesQuery setLastSavedDateTimeBetween(ArrayList value) { this.LastSavedDateTimeBetween = value; return this; } public ArrayList getLastSavedDateTimeIn() { return LastSavedDateTimeIn; } public QO_LineCustomValuesQuery setLastSavedDateTimeIn(ArrayList value) { this.LastSavedDateTimeIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class QO_LineExtraQuery extends QueryDb implements IReturn> { public String SOLineExtraRecID = null; public String SOLineExtraRecIDStartsWith = null; public String SOLineExtraRecIDEndsWith = null; public String SOLineExtraRecIDContains = null; public String SOLineExtraRecIDLike = null; public ArrayList SOLineExtraRecIDBetween = null; public ArrayList SOLineExtraRecIDIn = null; public String InvoiceLineID = null; public String InvoiceLineIDStartsWith = null; public String InvoiceLineIDEndsWith = null; public String InvoiceLineIDContains = null; public String InvoiceLineIDLike = null; public ArrayList InvoiceLineIDBetween = null; public ArrayList InvoiceLineIDIn = null; public String InvoiceHistoryID = null; public String InvoiceHistoryIDStartsWith = null; public String InvoiceHistoryIDEndsWith = null; public String InvoiceHistoryIDContains = null; public String InvoiceHistoryIDLike = null; public ArrayList InvoiceHistoryIDBetween = null; public ArrayList InvoiceHistoryIDIn = null; public String LedgerReversePurchaseAccID = null; public String LedgerReversePurchaseAccIDStartsWith = null; public String LedgerReversePurchaseAccIDEndsWith = null; public String LedgerReversePurchaseAccIDContains = null; public String LedgerReversePurchaseAccIDLike = null; public ArrayList LedgerReversePurchaseAccIDBetween = null; public ArrayList LedgerReversePurchaseAccIDIn = null; public String LedgerMovement_COGAccID = null; public String LedgerMovement_COGAccIDStartsWith = null; public String LedgerMovement_COGAccIDEndsWith = null; public String LedgerMovement_COGAccIDContains = null; public String LedgerMovement_COGAccIDLike = null; public ArrayList LedgerMovement_COGAccIDBetween = null; public ArrayList LedgerMovement_COGAccIDIn = null; public String LedgerSalesAccID = null; public String LedgerSalesAccIDStartsWith = null; public String LedgerSalesAccIDEndsWith = null; public String LedgerSalesAccIDContains = null; public String LedgerSalesAccIDLike = null; public ArrayList LedgerSalesAccIDBetween = null; public ArrayList LedgerSalesAccIDIn = null; public String LedgerSalesReturnsAccID = null; public String LedgerSalesReturnsAccIDStartsWith = null; public String LedgerSalesReturnsAccIDEndsWith = null; public String LedgerSalesReturnsAccIDContains = null; public String LedgerSalesReturnsAccIDLike = null; public ArrayList LedgerSalesReturnsAccIDBetween = null; public ArrayList LedgerSalesReturnsAccIDIn = null; public String LedgerTaxLiabAccID = null; public String LedgerTaxLiabAccIDStartsWith = null; public String LedgerTaxLiabAccIDEndsWith = null; public String LedgerTaxLiabAccIDContains = null; public String LedgerTaxLiabAccIDLike = null; public ArrayList LedgerTaxLiabAccIDBetween = null; public ArrayList LedgerTaxLiabAccIDIn = null; public String LedgerTaxExpAccID = null; public String LedgerTaxExpAccIDStartsWith = null; public String LedgerTaxExpAccIDEndsWith = null; public String LedgerTaxExpAccIDContains = null; public String LedgerTaxExpAccIDLike = null; public ArrayList LedgerTaxExpAccIDBetween = null; public ArrayList LedgerTaxExpAccIDIn = null; public String getSoLineExtraRecID() { return SOLineExtraRecID; } public QO_LineExtraQuery setSoLineExtraRecID(String value) { this.SOLineExtraRecID = value; return this; } public String getSoLineExtraRecIDStartsWith() { return SOLineExtraRecIDStartsWith; } public QO_LineExtraQuery setSoLineExtraRecIDStartsWith(String value) { this.SOLineExtraRecIDStartsWith = value; return this; } public String getSoLineExtraRecIDEndsWith() { return SOLineExtraRecIDEndsWith; } public QO_LineExtraQuery setSoLineExtraRecIDEndsWith(String value) { this.SOLineExtraRecIDEndsWith = value; return this; } public String getSoLineExtraRecIDContains() { return SOLineExtraRecIDContains; } public QO_LineExtraQuery setSoLineExtraRecIDContains(String value) { this.SOLineExtraRecIDContains = value; return this; } public String getSoLineExtraRecIDLike() { return SOLineExtraRecIDLike; } public QO_LineExtraQuery setSoLineExtraRecIDLike(String value) { this.SOLineExtraRecIDLike = value; return this; } public ArrayList getSoLineExtraRecIDBetween() { return SOLineExtraRecIDBetween; } public QO_LineExtraQuery setSoLineExtraRecIDBetween(ArrayList value) { this.SOLineExtraRecIDBetween = value; return this; } public ArrayList getSoLineExtraRecIDIn() { return SOLineExtraRecIDIn; } public QO_LineExtraQuery setSoLineExtraRecIDIn(ArrayList value) { this.SOLineExtraRecIDIn = value; return this; } public String getInvoiceLineID() { return InvoiceLineID; } public QO_LineExtraQuery setInvoiceLineID(String value) { this.InvoiceLineID = value; return this; } public String getInvoiceLineIDStartsWith() { return InvoiceLineIDStartsWith; } public QO_LineExtraQuery setInvoiceLineIDStartsWith(String value) { this.InvoiceLineIDStartsWith = value; return this; } public String getInvoiceLineIDEndsWith() { return InvoiceLineIDEndsWith; } public QO_LineExtraQuery setInvoiceLineIDEndsWith(String value) { this.InvoiceLineIDEndsWith = value; return this; } public String getInvoiceLineIDContains() { return InvoiceLineIDContains; } public QO_LineExtraQuery setInvoiceLineIDContains(String value) { this.InvoiceLineIDContains = value; return this; } public String getInvoiceLineIDLike() { return InvoiceLineIDLike; } public QO_LineExtraQuery setInvoiceLineIDLike(String value) { this.InvoiceLineIDLike = value; return this; } public ArrayList getInvoiceLineIDBetween() { return InvoiceLineIDBetween; } public QO_LineExtraQuery setInvoiceLineIDBetween(ArrayList value) { this.InvoiceLineIDBetween = value; return this; } public ArrayList getInvoiceLineIDIn() { return InvoiceLineIDIn; } public QO_LineExtraQuery setInvoiceLineIDIn(ArrayList value) { this.InvoiceLineIDIn = value; return this; } public String getInvoiceHistoryID() { return InvoiceHistoryID; } public QO_LineExtraQuery setInvoiceHistoryID(String value) { this.InvoiceHistoryID = value; return this; } public String getInvoiceHistoryIDStartsWith() { return InvoiceHistoryIDStartsWith; } public QO_LineExtraQuery setInvoiceHistoryIDStartsWith(String value) { this.InvoiceHistoryIDStartsWith = value; return this; } public String getInvoiceHistoryIDEndsWith() { return InvoiceHistoryIDEndsWith; } public QO_LineExtraQuery setInvoiceHistoryIDEndsWith(String value) { this.InvoiceHistoryIDEndsWith = value; return this; } public String getInvoiceHistoryIDContains() { return InvoiceHistoryIDContains; } public QO_LineExtraQuery setInvoiceHistoryIDContains(String value) { this.InvoiceHistoryIDContains = value; return this; } public String getInvoiceHistoryIDLike() { return InvoiceHistoryIDLike; } public QO_LineExtraQuery setInvoiceHistoryIDLike(String value) { this.InvoiceHistoryIDLike = value; return this; } public ArrayList getInvoiceHistoryIDBetween() { return InvoiceHistoryIDBetween; } public QO_LineExtraQuery setInvoiceHistoryIDBetween(ArrayList value) { this.InvoiceHistoryIDBetween = value; return this; } public ArrayList getInvoiceHistoryIDIn() { return InvoiceHistoryIDIn; } public QO_LineExtraQuery setInvoiceHistoryIDIn(ArrayList value) { this.InvoiceHistoryIDIn = value; return this; } public String getLedgerReversePurchaseAccID() { return LedgerReversePurchaseAccID; } public QO_LineExtraQuery setLedgerReversePurchaseAccID(String value) { this.LedgerReversePurchaseAccID = value; return this; } public String getLedgerReversePurchaseAccIDStartsWith() { return LedgerReversePurchaseAccIDStartsWith; } public QO_LineExtraQuery setLedgerReversePurchaseAccIDStartsWith(String value) { this.LedgerReversePurchaseAccIDStartsWith = value; return this; } public String getLedgerReversePurchaseAccIDEndsWith() { return LedgerReversePurchaseAccIDEndsWith; } public QO_LineExtraQuery setLedgerReversePurchaseAccIDEndsWith(String value) { this.LedgerReversePurchaseAccIDEndsWith = value; return this; } public String getLedgerReversePurchaseAccIDContains() { return LedgerReversePurchaseAccIDContains; } public QO_LineExtraQuery setLedgerReversePurchaseAccIDContains(String value) { this.LedgerReversePurchaseAccIDContains = value; return this; } public String getLedgerReversePurchaseAccIDLike() { return LedgerReversePurchaseAccIDLike; } public QO_LineExtraQuery setLedgerReversePurchaseAccIDLike(String value) { this.LedgerReversePurchaseAccIDLike = value; return this; } public ArrayList getLedgerReversePurchaseAccIDBetween() { return LedgerReversePurchaseAccIDBetween; } public QO_LineExtraQuery setLedgerReversePurchaseAccIDBetween(ArrayList value) { this.LedgerReversePurchaseAccIDBetween = value; return this; } public ArrayList getLedgerReversePurchaseAccIDIn() { return LedgerReversePurchaseAccIDIn; } public QO_LineExtraQuery setLedgerReversePurchaseAccIDIn(ArrayList value) { this.LedgerReversePurchaseAccIDIn = value; return this; } public String getLedgerMovementCogAccID() { return LedgerMovement_COGAccID; } public QO_LineExtraQuery setLedgerMovementCogAccID(String value) { this.LedgerMovement_COGAccID = value; return this; } public String getLedgerMovementCogAccIDStartsWith() { return LedgerMovement_COGAccIDStartsWith; } public QO_LineExtraQuery setLedgerMovementCogAccIDStartsWith(String value) { this.LedgerMovement_COGAccIDStartsWith = value; return this; } public String getLedgerMovementCogAccIDEndsWith() { return LedgerMovement_COGAccIDEndsWith; } public QO_LineExtraQuery setLedgerMovementCogAccIDEndsWith(String value) { this.LedgerMovement_COGAccIDEndsWith = value; return this; } public String getLedgerMovementCogAccIDContains() { return LedgerMovement_COGAccIDContains; } public QO_LineExtraQuery setLedgerMovementCogAccIDContains(String value) { this.LedgerMovement_COGAccIDContains = value; return this; } public String getLedgerMovementCogAccIDLike() { return LedgerMovement_COGAccIDLike; } public QO_LineExtraQuery setLedgerMovementCogAccIDLike(String value) { this.LedgerMovement_COGAccIDLike = value; return this; } public ArrayList getLedgerMovementCogAccIDBetween() { return LedgerMovement_COGAccIDBetween; } public QO_LineExtraQuery setLedgerMovementCogAccIDBetween(ArrayList value) { this.LedgerMovement_COGAccIDBetween = value; return this; } public ArrayList getLedgerMovementCogAccIDIn() { return LedgerMovement_COGAccIDIn; } public QO_LineExtraQuery setLedgerMovementCogAccIDIn(ArrayList value) { this.LedgerMovement_COGAccIDIn = value; return this; } public String getLedgerSalesAccID() { return LedgerSalesAccID; } public QO_LineExtraQuery setLedgerSalesAccID(String value) { this.LedgerSalesAccID = value; return this; } public String getLedgerSalesAccIDStartsWith() { return LedgerSalesAccIDStartsWith; } public QO_LineExtraQuery setLedgerSalesAccIDStartsWith(String value) { this.LedgerSalesAccIDStartsWith = value; return this; } public String getLedgerSalesAccIDEndsWith() { return LedgerSalesAccIDEndsWith; } public QO_LineExtraQuery setLedgerSalesAccIDEndsWith(String value) { this.LedgerSalesAccIDEndsWith = value; return this; } public String getLedgerSalesAccIDContains() { return LedgerSalesAccIDContains; } public QO_LineExtraQuery setLedgerSalesAccIDContains(String value) { this.LedgerSalesAccIDContains = value; return this; } public String getLedgerSalesAccIDLike() { return LedgerSalesAccIDLike; } public QO_LineExtraQuery setLedgerSalesAccIDLike(String value) { this.LedgerSalesAccIDLike = value; return this; } public ArrayList getLedgerSalesAccIDBetween() { return LedgerSalesAccIDBetween; } public QO_LineExtraQuery setLedgerSalesAccIDBetween(ArrayList value) { this.LedgerSalesAccIDBetween = value; return this; } public ArrayList getLedgerSalesAccIDIn() { return LedgerSalesAccIDIn; } public QO_LineExtraQuery setLedgerSalesAccIDIn(ArrayList value) { this.LedgerSalesAccIDIn = value; return this; } public String getLedgerSalesReturnsAccID() { return LedgerSalesReturnsAccID; } public QO_LineExtraQuery setLedgerSalesReturnsAccID(String value) { this.LedgerSalesReturnsAccID = value; return this; } public String getLedgerSalesReturnsAccIDStartsWith() { return LedgerSalesReturnsAccIDStartsWith; } public QO_LineExtraQuery setLedgerSalesReturnsAccIDStartsWith(String value) { this.LedgerSalesReturnsAccIDStartsWith = value; return this; } public String getLedgerSalesReturnsAccIDEndsWith() { return LedgerSalesReturnsAccIDEndsWith; } public QO_LineExtraQuery setLedgerSalesReturnsAccIDEndsWith(String value) { this.LedgerSalesReturnsAccIDEndsWith = value; return this; } public String getLedgerSalesReturnsAccIDContains() { return LedgerSalesReturnsAccIDContains; } public QO_LineExtraQuery setLedgerSalesReturnsAccIDContains(String value) { this.LedgerSalesReturnsAccIDContains = value; return this; } public String getLedgerSalesReturnsAccIDLike() { return LedgerSalesReturnsAccIDLike; } public QO_LineExtraQuery setLedgerSalesReturnsAccIDLike(String value) { this.LedgerSalesReturnsAccIDLike = value; return this; } public ArrayList getLedgerSalesReturnsAccIDBetween() { return LedgerSalesReturnsAccIDBetween; } public QO_LineExtraQuery setLedgerSalesReturnsAccIDBetween(ArrayList value) { this.LedgerSalesReturnsAccIDBetween = value; return this; } public ArrayList getLedgerSalesReturnsAccIDIn() { return LedgerSalesReturnsAccIDIn; } public QO_LineExtraQuery setLedgerSalesReturnsAccIDIn(ArrayList value) { this.LedgerSalesReturnsAccIDIn = value; return this; } public String getLedgerTaxLiabAccID() { return LedgerTaxLiabAccID; } public QO_LineExtraQuery setLedgerTaxLiabAccID(String value) { this.LedgerTaxLiabAccID = value; return this; } public String getLedgerTaxLiabAccIDStartsWith() { return LedgerTaxLiabAccIDStartsWith; } public QO_LineExtraQuery setLedgerTaxLiabAccIDStartsWith(String value) { this.LedgerTaxLiabAccIDStartsWith = value; return this; } public String getLedgerTaxLiabAccIDEndsWith() { return LedgerTaxLiabAccIDEndsWith; } public QO_LineExtraQuery setLedgerTaxLiabAccIDEndsWith(String value) { this.LedgerTaxLiabAccIDEndsWith = value; return this; } public String getLedgerTaxLiabAccIDContains() { return LedgerTaxLiabAccIDContains; } public QO_LineExtraQuery setLedgerTaxLiabAccIDContains(String value) { this.LedgerTaxLiabAccIDContains = value; return this; } public String getLedgerTaxLiabAccIDLike() { return LedgerTaxLiabAccIDLike; } public QO_LineExtraQuery setLedgerTaxLiabAccIDLike(String value) { this.LedgerTaxLiabAccIDLike = value; return this; } public ArrayList getLedgerTaxLiabAccIDBetween() { return LedgerTaxLiabAccIDBetween; } public QO_LineExtraQuery setLedgerTaxLiabAccIDBetween(ArrayList value) { this.LedgerTaxLiabAccIDBetween = value; return this; } public ArrayList getLedgerTaxLiabAccIDIn() { return LedgerTaxLiabAccIDIn; } public QO_LineExtraQuery setLedgerTaxLiabAccIDIn(ArrayList value) { this.LedgerTaxLiabAccIDIn = value; return this; } public String getLedgerTaxExpAccID() { return LedgerTaxExpAccID; } public QO_LineExtraQuery setLedgerTaxExpAccID(String value) { this.LedgerTaxExpAccID = value; return this; } public String getLedgerTaxExpAccIDStartsWith() { return LedgerTaxExpAccIDStartsWith; } public QO_LineExtraQuery setLedgerTaxExpAccIDStartsWith(String value) { this.LedgerTaxExpAccIDStartsWith = value; return this; } public String getLedgerTaxExpAccIDEndsWith() { return LedgerTaxExpAccIDEndsWith; } public QO_LineExtraQuery setLedgerTaxExpAccIDEndsWith(String value) { this.LedgerTaxExpAccIDEndsWith = value; return this; } public String getLedgerTaxExpAccIDContains() { return LedgerTaxExpAccIDContains; } public QO_LineExtraQuery setLedgerTaxExpAccIDContains(String value) { this.LedgerTaxExpAccIDContains = value; return this; } public String getLedgerTaxExpAccIDLike() { return LedgerTaxExpAccIDLike; } public QO_LineExtraQuery setLedgerTaxExpAccIDLike(String value) { this.LedgerTaxExpAccIDLike = value; return this; } public ArrayList getLedgerTaxExpAccIDBetween() { return LedgerTaxExpAccIDBetween; } public QO_LineExtraQuery setLedgerTaxExpAccIDBetween(ArrayList value) { this.LedgerTaxExpAccIDBetween = value; return this; } public ArrayList getLedgerTaxExpAccIDIn() { return LedgerTaxExpAccIDIn; } public QO_LineExtraQuery setLedgerTaxExpAccIDIn(ArrayList value) { this.LedgerTaxExpAccIDIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class QO_LinesQuery extends QueryDb implements IReturn> { public String InvoiceLineID = null; public String InvoiceLineIDStartsWith = null; public String InvoiceLineIDEndsWith = null; public String InvoiceLineIDContains = null; public String InvoiceLineIDLike = null; public ArrayList InvoiceLineIDBetween = null; public ArrayList InvoiceLineIDIn = null; public String InvoiceHistoryID = null; public String InvoiceHistoryIDStartsWith = null; public String InvoiceHistoryIDEndsWith = null; public String InvoiceHistoryIDContains = null; public String InvoiceHistoryIDLike = null; public ArrayList InvoiceHistoryIDBetween = null; public ArrayList InvoiceHistoryIDIn = null; public Short GroupNo = null; public Short GroupNoGreaterThanOrEqualTo = null; public Short GroupNoGreaterThan = null; public Short GroupNoLessThan = null; public Short GroupNoLessThanOrEqualTo = null; public Short GroupNoNotEqualTo = null; public ArrayList GroupNoBetween = null; public ArrayList GroupNoIn = null; public Short LineNum = null; public Short LineNumGreaterThanOrEqualTo = null; public Short LineNumGreaterThan = null; public Short LineNumLessThan = null; public Short LineNumLessThanOrEqualTo = null; public Short LineNumNotEqualTo = null; public ArrayList LineNumBetween = null; public ArrayList LineNumIn = null; public Boolean CommentLine = null; public String PartNo = null; public String PartNoStartsWith = null; public String PartNoEndsWith = null; public String PartNoContains = null; public String PartNoLike = null; public ArrayList PartNoBetween = null; public ArrayList PartNoIn = null; public String Description = null; public String DescriptionStartsWith = null; public String DescriptionEndsWith = null; public String DescriptionContains = null; public String DescriptionLike = null; public ArrayList DescriptionBetween = null; public ArrayList DescriptionIn = null; public Short PhysicalItem = null; public Short PhysicalItemGreaterThanOrEqualTo = null; public Short PhysicalItemGreaterThan = null; public Short PhysicalItemLessThan = null; public Short PhysicalItemLessThanOrEqualTo = null; public Short PhysicalItemNotEqualTo = null; public ArrayList PhysicalItemBetween = null; public ArrayList PhysicalItemIn = null; public BigDecimal ItemWeight = null; public BigDecimal ItemWeightGreaterThanOrEqualTo = null; public BigDecimal ItemWeightGreaterThan = null; public BigDecimal ItemWeightLessThan = null; public BigDecimal ItemWeightLessThanOrEqualTo = null; public BigDecimal ItemWeightNotEqualTo = null; public ArrayList ItemWeightBetween = null; public ArrayList ItemWeightIn = null; public BigDecimal ItemCubic = null; public BigDecimal ItemCubicGreaterThanOrEqualTo = null; public BigDecimal ItemCubicGreaterThan = null; public BigDecimal ItemCubicLessThan = null; public BigDecimal ItemCubicLessThanOrEqualTo = null; public BigDecimal ItemCubicNotEqualTo = null; public ArrayList ItemCubicBetween = null; public ArrayList ItemCubicIn = null; public String TaxID = null; public String TaxIDStartsWith = null; public String TaxIDEndsWith = null; public String TaxIDContains = null; public String TaxIDLike = null; public ArrayList TaxIDBetween = null; public ArrayList TaxIDIn = null; public String ClassDescription = null; public String ClassDescriptionStartsWith = null; public String ClassDescriptionEndsWith = null; public String ClassDescriptionContains = null; public String ClassDescriptionLike = null; public ArrayList ClassDescriptionBetween = null; public ArrayList ClassDescriptionIn = null; public String Cat1Description = null; public String Cat1DescriptionStartsWith = null; public String Cat1DescriptionEndsWith = null; public String Cat1DescriptionContains = null; public String Cat1DescriptionLike = null; public ArrayList Cat1DescriptionBetween = null; public ArrayList Cat1DescriptionIn = null; public String Cat2Description = null; public String Cat2DescriptionStartsWith = null; public String Cat2DescriptionEndsWith = null; public String Cat2DescriptionContains = null; public String Cat2DescriptionLike = null; public ArrayList Cat2DescriptionBetween = null; public ArrayList Cat2DescriptionIn = null; public String Cat3Description = null; public String Cat3DescriptionStartsWith = null; public String Cat3DescriptionEndsWith = null; public String Cat3DescriptionContains = null; public String Cat3DescriptionLike = null; public ArrayList Cat3DescriptionBetween = null; public ArrayList Cat3DescriptionIn = null; public String Units = null; public String UnitsStartsWith = null; public String UnitsEndsWith = null; public String UnitsContains = null; public String UnitsLike = null; public ArrayList UnitsBetween = null; public ArrayList UnitsIn = null; public BigDecimal CostIn = null; public BigDecimal CostInGreaterThanOrEqualTo = null; public BigDecimal CostInGreaterThan = null; public BigDecimal CostInLessThan = null; public BigDecimal CostInLessThanOrEqualTo = null; public BigDecimal CostInNotEqualTo = null; public ArrayList CostInBetween = null; public ArrayList CostInIn = null; public BigDecimal DefaultPrice = null; public BigDecimal DefaultPriceGreaterThanOrEqualTo = null; public BigDecimal DefaultPriceGreaterThan = null; public BigDecimal DefaultPriceLessThan = null; public BigDecimal DefaultPriceLessThanOrEqualTo = null; public BigDecimal DefaultPriceNotEqualTo = null; public ArrayList DefaultPriceBetween = null; public ArrayList DefaultPriceIn = null; public BigDecimal ItemPrice = null; public BigDecimal ItemPriceGreaterThanOrEqualTo = null; public BigDecimal ItemPriceGreaterThan = null; public BigDecimal ItemPriceLessThan = null; public BigDecimal ItemPriceLessThanOrEqualTo = null; public BigDecimal ItemPriceNotEqualTo = null; public ArrayList ItemPriceBetween = null; public ArrayList ItemPriceIn = null; public BigDecimal Discount = null; public BigDecimal DiscountGreaterThanOrEqualTo = null; public BigDecimal DiscountGreaterThan = null; public BigDecimal DiscountLessThan = null; public BigDecimal DiscountLessThanOrEqualTo = null; public BigDecimal DiscountNotEqualTo = null; public ArrayList DiscountBetween = null; public ArrayList DiscountIn = null; public BigDecimal InvoicePrice = null; public BigDecimal InvoicePriceGreaterThanOrEqualTo = null; public BigDecimal InvoicePriceGreaterThan = null; public BigDecimal InvoicePriceLessThan = null; public BigDecimal InvoicePriceLessThanOrEqualTo = null; public BigDecimal InvoicePriceNotEqualTo = null; public ArrayList InvoicePriceBetween = null; public ArrayList InvoicePriceIn = null; public BigDecimal RRPPrice = null; public BigDecimal RRPPriceGreaterThanOrEqualTo = null; public BigDecimal RRPPriceGreaterThan = null; public BigDecimal RRPPriceLessThan = null; public BigDecimal RRPPriceLessThanOrEqualTo = null; public BigDecimal RRPPriceNotEqualTo = null; public ArrayList RRPPriceBetween = null; public ArrayList RRPPriceIn = null; public BigDecimal TaxToCharge = null; public BigDecimal TaxToChargeGreaterThanOrEqualTo = null; public BigDecimal TaxToChargeGreaterThan = null; public BigDecimal TaxToChargeLessThan = null; public BigDecimal TaxToChargeLessThanOrEqualTo = null; public BigDecimal TaxToChargeNotEqualTo = null; public ArrayList TaxToChargeBetween = null; public ArrayList TaxToChargeIn = null; public BigDecimal CurrentLineTotal = null; public BigDecimal CurrentLineTotalGreaterThanOrEqualTo = null; public BigDecimal CurrentLineTotalGreaterThan = null; public BigDecimal CurrentLineTotalLessThan = null; public BigDecimal CurrentLineTotalLessThanOrEqualTo = null; public BigDecimal CurrentLineTotalNotEqualTo = null; public ArrayList CurrentLineTotalBetween = null; public ArrayList CurrentLineTotalIn = null; public BigDecimal QuantityOrdered = null; public BigDecimal QuantityOrderedGreaterThanOrEqualTo = null; public BigDecimal QuantityOrderedGreaterThan = null; public BigDecimal QuantityOrderedLessThan = null; public BigDecimal QuantityOrderedLessThanOrEqualTo = null; public BigDecimal QuantityOrderedNotEqualTo = null; public ArrayList QuantityOrderedBetween = null; public ArrayList QuantityOrderedIn = null; public String HistoryText_Comment = null; public String HistoryText_CommentStartsWith = null; public String HistoryText_CommentEndsWith = null; public String HistoryText_CommentContains = null; public String HistoryText_CommentLike = null; public ArrayList HistoryText_CommentBetween = null; public ArrayList HistoryText_CommentIn = null; public Boolean Discountable = null; public BigDecimal DirectTax = null; public BigDecimal DirectTaxGreaterThanOrEqualTo = null; public BigDecimal DirectTaxGreaterThan = null; public BigDecimal DirectTaxLessThan = null; public BigDecimal DirectTaxLessThanOrEqualTo = null; public BigDecimal DirectTaxNotEqualTo = null; public ArrayList DirectTaxBetween = null; public ArrayList DirectTaxIn = null; public Short DecimalPlaces = null; public Short DecimalPlacesGreaterThanOrEqualTo = null; public Short DecimalPlacesGreaterThan = null; public Short DecimalPlacesLessThan = null; public Short DecimalPlacesLessThanOrEqualTo = null; public Short DecimalPlacesNotEqualTo = null; public ArrayList DecimalPlacesBetween = null; public ArrayList DecimalPlacesIn = null; public BigDecimal MinimumGP = null; public BigDecimal MinimumGPGreaterThanOrEqualTo = null; public BigDecimal MinimumGPGreaterThan = null; public BigDecimal MinimumGPLessThan = null; public BigDecimal MinimumGPLessThanOrEqualTo = null; public BigDecimal MinimumGPNotEqualTo = null; public ArrayList MinimumGPBetween = null; public ArrayList MinimumGPIn = null; public String DebitLedger = null; public String DebitLedgerStartsWith = null; public String DebitLedgerEndsWith = null; public String DebitLedgerContains = null; public String DebitLedgerLike = null; public ArrayList DebitLedgerBetween = null; public ArrayList DebitLedgerIn = null; public String CreditLedger = null; public String CreditLedgerStartsWith = null; public String CreditLedgerEndsWith = null; public String CreditLedgerContains = null; public String CreditLedgerLike = null; public ArrayList CreditLedgerBetween = null; public ArrayList CreditLedgerIn = null; public Boolean NonStock = null; public String InventoryID = null; public String InventoryIDStartsWith = null; public String InventoryIDEndsWith = null; public String InventoryIDContains = null; public String InventoryIDLike = null; public ArrayList InventoryIDBetween = null; public ArrayList InventoryIDIn = null; public Boolean UseSerialNo = null; public Boolean Backorderable = null; public BigDecimal TaxRate = null; public BigDecimal TaxRateGreaterThanOrEqualTo = null; public BigDecimal TaxRateGreaterThan = null; public BigDecimal TaxRateLessThan = null; public BigDecimal TaxRateLessThanOrEqualTo = null; public BigDecimal TaxRateNotEqualTo = null; public ArrayList TaxRateBetween = null; public ArrayList TaxRateIn = null; public BigDecimal ItemTaxToCharge = null; public BigDecimal ItemTaxToChargeGreaterThanOrEqualTo = null; public BigDecimal ItemTaxToChargeGreaterThan = null; public BigDecimal ItemTaxToChargeLessThan = null; public BigDecimal ItemTaxToChargeLessThanOrEqualTo = null; public BigDecimal ItemTaxToChargeNotEqualTo = null; public ArrayList ItemTaxToChargeBetween = null; public ArrayList ItemTaxToChargeIn = null; public String LineLinkID = null; public String LineLinkIDStartsWith = null; public String LineLinkIDEndsWith = null; public String LineLinkIDContains = null; public String LineLinkIDLike = null; public ArrayList LineLinkIDBetween = null; public ArrayList LineLinkIDIn = null; public Short KittingStatus = null; public Short KittingStatusGreaterThanOrEqualTo = null; public Short KittingStatusGreaterThan = null; public Short KittingStatusLessThan = null; public Short KittingStatusLessThanOrEqualTo = null; public Short KittingStatusNotEqualTo = null; public ArrayList KittingStatusBetween = null; public ArrayList KittingStatusIn = null; public BigDecimal KittingUnits = null; public BigDecimal KittingUnitsGreaterThanOrEqualTo = null; public BigDecimal KittingUnitsGreaterThan = null; public BigDecimal KittingUnitsLessThan = null; public BigDecimal KittingUnitsLessThanOrEqualTo = null; public BigDecimal KittingUnitsNotEqualTo = null; public ArrayList KittingUnitsBetween = null; public ArrayList KittingUnitsIn = null; public String JobConnectorID = null; public String JobConnectorIDStartsWith = null; public String JobConnectorIDEndsWith = null; public String JobConnectorIDContains = null; public String JobConnectorIDLike = null; public ArrayList JobConnectorIDBetween = null; public ArrayList JobConnectorIDIn = null; public Short KitStyle = null; public Short KitStyleGreaterThanOrEqualTo = null; public Short KitStyleGreaterThan = null; public Short KitStyleLessThan = null; public Short KitStyleLessThanOrEqualTo = null; public Short KitStyleNotEqualTo = null; public ArrayList KitStyleBetween = null; public ArrayList KitStyleIn = null; public BigDecimal DiscountPercentage = null; public BigDecimal DiscountPercentageGreaterThanOrEqualTo = null; public BigDecimal DiscountPercentageGreaterThan = null; public BigDecimal DiscountPercentageLessThan = null; public BigDecimal DiscountPercentageLessThanOrEqualTo = null; public BigDecimal DiscountPercentageNotEqualTo = null; public ArrayList DiscountPercentageBetween = null; public ArrayList DiscountPercentageIn = null; public BigDecimal SalesmanCost = null; public BigDecimal SalesmanCostGreaterThanOrEqualTo = null; public BigDecimal SalesmanCostGreaterThan = null; public BigDecimal SalesmanCostLessThan = null; public BigDecimal SalesmanCostLessThanOrEqualTo = null; public BigDecimal SalesmanCostNotEqualTo = null; public ArrayList SalesmanCostBetween = null; public ArrayList SalesmanCostIn = null; public BigDecimal ItemPriceIncGST = null; public BigDecimal ItemPriceIncGSTGreaterThanOrEqualTo = null; public BigDecimal ItemPriceIncGSTGreaterThan = null; public BigDecimal ItemPriceIncGSTLessThan = null; public BigDecimal ItemPriceIncGSTLessThanOrEqualTo = null; public BigDecimal ItemPriceIncGSTNotEqualTo = null; public ArrayList ItemPriceIncGSTBetween = null; public ArrayList ItemPriceIncGSTIn = null; public BigDecimal ItemPriceUnDiscounted = null; public BigDecimal ItemPriceUnDiscountedGreaterThanOrEqualTo = null; public BigDecimal ItemPriceUnDiscountedGreaterThan = null; public BigDecimal ItemPriceUnDiscountedLessThan = null; public BigDecimal ItemPriceUnDiscountedLessThanOrEqualTo = null; public BigDecimal ItemPriceUnDiscountedNotEqualTo = null; public ArrayList ItemPriceUnDiscountedBetween = null; public ArrayList ItemPriceUnDiscountedIn = null; public String NonStockLedgerSalesAccID = null; public String NonStockLedgerSalesAccIDStartsWith = null; public String NonStockLedgerSalesAccIDEndsWith = null; public String NonStockLedgerSalesAccIDContains = null; public String NonStockLedgerSalesAccIDLike = null; public ArrayList NonStockLedgerSalesAccIDBetween = null; public ArrayList NonStockLedgerSalesAccIDIn = null; public String KitLineID = null; public String KitLineIDStartsWith = null; public String KitLineIDEndsWith = null; public String KitLineIDContains = null; public String KitLineIDLike = null; public ArrayList KitLineIDBetween = null; public ArrayList KitLineIDIn = null; public Boolean SellPriceIncTax = null; public BigDecimal UserDefinedFloat1 = null; public BigDecimal UserDefinedFloat1GreaterThanOrEqualTo = null; public BigDecimal UserDefinedFloat1GreaterThan = null; public BigDecimal UserDefinedFloat1LessThan = null; public BigDecimal UserDefinedFloat1LessThanOrEqualTo = null; public BigDecimal UserDefinedFloat1NotEqualTo = null; public ArrayList UserDefinedFloat1Between = null; public ArrayList UserDefinedFloat1In = null; public BigDecimal UserDefinedFloat2 = null; public BigDecimal UserDefinedFloat2GreaterThanOrEqualTo = null; public BigDecimal UserDefinedFloat2GreaterThan = null; public BigDecimal UserDefinedFloat2LessThan = null; public BigDecimal UserDefinedFloat2LessThanOrEqualTo = null; public BigDecimal UserDefinedFloat2NotEqualTo = null; public ArrayList UserDefinedFloat2Between = null; public ArrayList UserDefinedFloat2In = null; public BigDecimal UserDefinedFloat3 = null; public BigDecimal UserDefinedFloat3GreaterThanOrEqualTo = null; public BigDecimal UserDefinedFloat3GreaterThan = null; public BigDecimal UserDefinedFloat3LessThan = null; public BigDecimal UserDefinedFloat3LessThanOrEqualTo = null; public BigDecimal UserDefinedFloat3NotEqualTo = null; public ArrayList UserDefinedFloat3Between = null; public ArrayList UserDefinedFloat3In = null; public Boolean FixSellPrice = null; public Boolean TypeKitRounding = null; public UUID IN_UnitOfMeasure_RecID = null; public ArrayList IN_UnitOfMeasure_RecIDIn = null; public String getInvoiceLineID() { return InvoiceLineID; } public QO_LinesQuery setInvoiceLineID(String value) { this.InvoiceLineID = value; return this; } public String getInvoiceLineIDStartsWith() { return InvoiceLineIDStartsWith; } public QO_LinesQuery setInvoiceLineIDStartsWith(String value) { this.InvoiceLineIDStartsWith = value; return this; } public String getInvoiceLineIDEndsWith() { return InvoiceLineIDEndsWith; } public QO_LinesQuery setInvoiceLineIDEndsWith(String value) { this.InvoiceLineIDEndsWith = value; return this; } public String getInvoiceLineIDContains() { return InvoiceLineIDContains; } public QO_LinesQuery setInvoiceLineIDContains(String value) { this.InvoiceLineIDContains = value; return this; } public String getInvoiceLineIDLike() { return InvoiceLineIDLike; } public QO_LinesQuery setInvoiceLineIDLike(String value) { this.InvoiceLineIDLike = value; return this; } public ArrayList getInvoiceLineIDBetween() { return InvoiceLineIDBetween; } public QO_LinesQuery setInvoiceLineIDBetween(ArrayList value) { this.InvoiceLineIDBetween = value; return this; } public ArrayList getInvoiceLineIDIn() { return InvoiceLineIDIn; } public QO_LinesQuery setInvoiceLineIDIn(ArrayList value) { this.InvoiceLineIDIn = value; return this; } public String getInvoiceHistoryID() { return InvoiceHistoryID; } public QO_LinesQuery setInvoiceHistoryID(String value) { this.InvoiceHistoryID = value; return this; } public String getInvoiceHistoryIDStartsWith() { return InvoiceHistoryIDStartsWith; } public QO_LinesQuery setInvoiceHistoryIDStartsWith(String value) { this.InvoiceHistoryIDStartsWith = value; return this; } public String getInvoiceHistoryIDEndsWith() { return InvoiceHistoryIDEndsWith; } public QO_LinesQuery setInvoiceHistoryIDEndsWith(String value) { this.InvoiceHistoryIDEndsWith = value; return this; } public String getInvoiceHistoryIDContains() { return InvoiceHistoryIDContains; } public QO_LinesQuery setInvoiceHistoryIDContains(String value) { this.InvoiceHistoryIDContains = value; return this; } public String getInvoiceHistoryIDLike() { return InvoiceHistoryIDLike; } public QO_LinesQuery setInvoiceHistoryIDLike(String value) { this.InvoiceHistoryIDLike = value; return this; } public ArrayList getInvoiceHistoryIDBetween() { return InvoiceHistoryIDBetween; } public QO_LinesQuery setInvoiceHistoryIDBetween(ArrayList value) { this.InvoiceHistoryIDBetween = value; return this; } public ArrayList getInvoiceHistoryIDIn() { return InvoiceHistoryIDIn; } public QO_LinesQuery setInvoiceHistoryIDIn(ArrayList value) { this.InvoiceHistoryIDIn = value; return this; } public Short getGroupNo() { return GroupNo; } public QO_LinesQuery setGroupNo(Short value) { this.GroupNo = value; return this; } public Short getGroupNoGreaterThanOrEqualTo() { return GroupNoGreaterThanOrEqualTo; } public QO_LinesQuery setGroupNoGreaterThanOrEqualTo(Short value) { this.GroupNoGreaterThanOrEqualTo = value; return this; } public Short getGroupNoGreaterThan() { return GroupNoGreaterThan; } public QO_LinesQuery setGroupNoGreaterThan(Short value) { this.GroupNoGreaterThan = value; return this; } public Short getGroupNoLessThan() { return GroupNoLessThan; } public QO_LinesQuery setGroupNoLessThan(Short value) { this.GroupNoLessThan = value; return this; } public Short getGroupNoLessThanOrEqualTo() { return GroupNoLessThanOrEqualTo; } public QO_LinesQuery setGroupNoLessThanOrEqualTo(Short value) { this.GroupNoLessThanOrEqualTo = value; return this; } public Short getGroupNoNotEqualTo() { return GroupNoNotEqualTo; } public QO_LinesQuery setGroupNoNotEqualTo(Short value) { this.GroupNoNotEqualTo = value; return this; } public ArrayList getGroupNoBetween() { return GroupNoBetween; } public QO_LinesQuery setGroupNoBetween(ArrayList value) { this.GroupNoBetween = value; return this; } public ArrayList getGroupNoIn() { return GroupNoIn; } public QO_LinesQuery setGroupNoIn(ArrayList value) { this.GroupNoIn = value; return this; } public Short getLineNum() { return LineNum; } public QO_LinesQuery setLineNum(Short value) { this.LineNum = value; return this; } public Short getLineNumGreaterThanOrEqualTo() { return LineNumGreaterThanOrEqualTo; } public QO_LinesQuery setLineNumGreaterThanOrEqualTo(Short value) { this.LineNumGreaterThanOrEqualTo = value; return this; } public Short getLineNumGreaterThan() { return LineNumGreaterThan; } public QO_LinesQuery setLineNumGreaterThan(Short value) { this.LineNumGreaterThan = value; return this; } public Short getLineNumLessThan() { return LineNumLessThan; } public QO_LinesQuery setLineNumLessThan(Short value) { this.LineNumLessThan = value; return this; } public Short getLineNumLessThanOrEqualTo() { return LineNumLessThanOrEqualTo; } public QO_LinesQuery setLineNumLessThanOrEqualTo(Short value) { this.LineNumLessThanOrEqualTo = value; return this; } public Short getLineNumNotEqualTo() { return LineNumNotEqualTo; } public QO_LinesQuery setLineNumNotEqualTo(Short value) { this.LineNumNotEqualTo = value; return this; } public ArrayList getLineNumBetween() { return LineNumBetween; } public QO_LinesQuery setLineNumBetween(ArrayList value) { this.LineNumBetween = value; return this; } public ArrayList getLineNumIn() { return LineNumIn; } public QO_LinesQuery setLineNumIn(ArrayList value) { this.LineNumIn = value; return this; } public Boolean isCommentLine() { return CommentLine; } public QO_LinesQuery setCommentLine(Boolean value) { this.CommentLine = value; return this; } public String getPartNo() { return PartNo; } public QO_LinesQuery setPartNo(String value) { this.PartNo = value; return this; } public String getPartNoStartsWith() { return PartNoStartsWith; } public QO_LinesQuery setPartNoStartsWith(String value) { this.PartNoStartsWith = value; return this; } public String getPartNoEndsWith() { return PartNoEndsWith; } public QO_LinesQuery setPartNoEndsWith(String value) { this.PartNoEndsWith = value; return this; } public String getPartNoContains() { return PartNoContains; } public QO_LinesQuery setPartNoContains(String value) { this.PartNoContains = value; return this; } public String getPartNoLike() { return PartNoLike; } public QO_LinesQuery setPartNoLike(String value) { this.PartNoLike = value; return this; } public ArrayList getPartNoBetween() { return PartNoBetween; } public QO_LinesQuery setPartNoBetween(ArrayList value) { this.PartNoBetween = value; return this; } public ArrayList getPartNoIn() { return PartNoIn; } public QO_LinesQuery setPartNoIn(ArrayList value) { this.PartNoIn = value; return this; } public String getDescription() { return Description; } public QO_LinesQuery setDescription(String value) { this.Description = value; return this; } public String getDescriptionStartsWith() { return DescriptionStartsWith; } public QO_LinesQuery setDescriptionStartsWith(String value) { this.DescriptionStartsWith = value; return this; } public String getDescriptionEndsWith() { return DescriptionEndsWith; } public QO_LinesQuery setDescriptionEndsWith(String value) { this.DescriptionEndsWith = value; return this; } public String getDescriptionContains() { return DescriptionContains; } public QO_LinesQuery setDescriptionContains(String value) { this.DescriptionContains = value; return this; } public String getDescriptionLike() { return DescriptionLike; } public QO_LinesQuery setDescriptionLike(String value) { this.DescriptionLike = value; return this; } public ArrayList getDescriptionBetween() { return DescriptionBetween; } public QO_LinesQuery setDescriptionBetween(ArrayList value) { this.DescriptionBetween = value; return this; } public ArrayList getDescriptionIn() { return DescriptionIn; } public QO_LinesQuery setDescriptionIn(ArrayList value) { this.DescriptionIn = value; return this; } public Short getPhysicalItem() { return PhysicalItem; } public QO_LinesQuery setPhysicalItem(Short value) { this.PhysicalItem = value; return this; } public Short getPhysicalItemGreaterThanOrEqualTo() { return PhysicalItemGreaterThanOrEqualTo; } public QO_LinesQuery setPhysicalItemGreaterThanOrEqualTo(Short value) { this.PhysicalItemGreaterThanOrEqualTo = value; return this; } public Short getPhysicalItemGreaterThan() { return PhysicalItemGreaterThan; } public QO_LinesQuery setPhysicalItemGreaterThan(Short value) { this.PhysicalItemGreaterThan = value; return this; } public Short getPhysicalItemLessThan() { return PhysicalItemLessThan; } public QO_LinesQuery setPhysicalItemLessThan(Short value) { this.PhysicalItemLessThan = value; return this; } public Short getPhysicalItemLessThanOrEqualTo() { return PhysicalItemLessThanOrEqualTo; } public QO_LinesQuery setPhysicalItemLessThanOrEqualTo(Short value) { this.PhysicalItemLessThanOrEqualTo = value; return this; } public Short getPhysicalItemNotEqualTo() { return PhysicalItemNotEqualTo; } public QO_LinesQuery setPhysicalItemNotEqualTo(Short value) { this.PhysicalItemNotEqualTo = value; return this; } public ArrayList getPhysicalItemBetween() { return PhysicalItemBetween; } public QO_LinesQuery setPhysicalItemBetween(ArrayList value) { this.PhysicalItemBetween = value; return this; } public ArrayList getPhysicalItemIn() { return PhysicalItemIn; } public QO_LinesQuery setPhysicalItemIn(ArrayList value) { this.PhysicalItemIn = value; return this; } public BigDecimal getItemWeight() { return ItemWeight; } public QO_LinesQuery setItemWeight(BigDecimal value) { this.ItemWeight = value; return this; } public BigDecimal getItemWeightGreaterThanOrEqualTo() { return ItemWeightGreaterThanOrEqualTo; } public QO_LinesQuery setItemWeightGreaterThanOrEqualTo(BigDecimal value) { this.ItemWeightGreaterThanOrEqualTo = value; return this; } public BigDecimal getItemWeightGreaterThan() { return ItemWeightGreaterThan; } public QO_LinesQuery setItemWeightGreaterThan(BigDecimal value) { this.ItemWeightGreaterThan = value; return this; } public BigDecimal getItemWeightLessThan() { return ItemWeightLessThan; } public QO_LinesQuery setItemWeightLessThan(BigDecimal value) { this.ItemWeightLessThan = value; return this; } public BigDecimal getItemWeightLessThanOrEqualTo() { return ItemWeightLessThanOrEqualTo; } public QO_LinesQuery setItemWeightLessThanOrEqualTo(BigDecimal value) { this.ItemWeightLessThanOrEqualTo = value; return this; } public BigDecimal getItemWeightNotEqualTo() { return ItemWeightNotEqualTo; } public QO_LinesQuery setItemWeightNotEqualTo(BigDecimal value) { this.ItemWeightNotEqualTo = value; return this; } public ArrayList getItemWeightBetween() { return ItemWeightBetween; } public QO_LinesQuery setItemWeightBetween(ArrayList value) { this.ItemWeightBetween = value; return this; } public ArrayList getItemWeightIn() { return ItemWeightIn; } public QO_LinesQuery setItemWeightIn(ArrayList value) { this.ItemWeightIn = value; return this; } public BigDecimal getItemCubic() { return ItemCubic; } public QO_LinesQuery setItemCubic(BigDecimal value) { this.ItemCubic = value; return this; } public BigDecimal getItemCubicGreaterThanOrEqualTo() { return ItemCubicGreaterThanOrEqualTo; } public QO_LinesQuery setItemCubicGreaterThanOrEqualTo(BigDecimal value) { this.ItemCubicGreaterThanOrEqualTo = value; return this; } public BigDecimal getItemCubicGreaterThan() { return ItemCubicGreaterThan; } public QO_LinesQuery setItemCubicGreaterThan(BigDecimal value) { this.ItemCubicGreaterThan = value; return this; } public BigDecimal getItemCubicLessThan() { return ItemCubicLessThan; } public QO_LinesQuery setItemCubicLessThan(BigDecimal value) { this.ItemCubicLessThan = value; return this; } public BigDecimal getItemCubicLessThanOrEqualTo() { return ItemCubicLessThanOrEqualTo; } public QO_LinesQuery setItemCubicLessThanOrEqualTo(BigDecimal value) { this.ItemCubicLessThanOrEqualTo = value; return this; } public BigDecimal getItemCubicNotEqualTo() { return ItemCubicNotEqualTo; } public QO_LinesQuery setItemCubicNotEqualTo(BigDecimal value) { this.ItemCubicNotEqualTo = value; return this; } public ArrayList getItemCubicBetween() { return ItemCubicBetween; } public QO_LinesQuery setItemCubicBetween(ArrayList value) { this.ItemCubicBetween = value; return this; } public ArrayList getItemCubicIn() { return ItemCubicIn; } public QO_LinesQuery setItemCubicIn(ArrayList value) { this.ItemCubicIn = value; return this; } public String getTaxID() { return TaxID; } public QO_LinesQuery setTaxID(String value) { this.TaxID = value; return this; } public String getTaxIDStartsWith() { return TaxIDStartsWith; } public QO_LinesQuery setTaxIDStartsWith(String value) { this.TaxIDStartsWith = value; return this; } public String getTaxIDEndsWith() { return TaxIDEndsWith; } public QO_LinesQuery setTaxIDEndsWith(String value) { this.TaxIDEndsWith = value; return this; } public String getTaxIDContains() { return TaxIDContains; } public QO_LinesQuery setTaxIDContains(String value) { this.TaxIDContains = value; return this; } public String getTaxIDLike() { return TaxIDLike; } public QO_LinesQuery setTaxIDLike(String value) { this.TaxIDLike = value; return this; } public ArrayList getTaxIDBetween() { return TaxIDBetween; } public QO_LinesQuery setTaxIDBetween(ArrayList value) { this.TaxIDBetween = value; return this; } public ArrayList getTaxIDIn() { return TaxIDIn; } public QO_LinesQuery setTaxIDIn(ArrayList value) { this.TaxIDIn = value; return this; } public String getClassDescription() { return ClassDescription; } public QO_LinesQuery setClassDescription(String value) { this.ClassDescription = value; return this; } public String getClassDescriptionStartsWith() { return ClassDescriptionStartsWith; } public QO_LinesQuery setClassDescriptionStartsWith(String value) { this.ClassDescriptionStartsWith = value; return this; } public String getClassDescriptionEndsWith() { return ClassDescriptionEndsWith; } public QO_LinesQuery setClassDescriptionEndsWith(String value) { this.ClassDescriptionEndsWith = value; return this; } public String getClassDescriptionContains() { return ClassDescriptionContains; } public QO_LinesQuery setClassDescriptionContains(String value) { this.ClassDescriptionContains = value; return this; } public String getClassDescriptionLike() { return ClassDescriptionLike; } public QO_LinesQuery setClassDescriptionLike(String value) { this.ClassDescriptionLike = value; return this; } public ArrayList getClassDescriptionBetween() { return ClassDescriptionBetween; } public QO_LinesQuery setClassDescriptionBetween(ArrayList value) { this.ClassDescriptionBetween = value; return this; } public ArrayList getClassDescriptionIn() { return ClassDescriptionIn; } public QO_LinesQuery setClassDescriptionIn(ArrayList value) { this.ClassDescriptionIn = value; return this; } public String getCat1Description() { return Cat1Description; } public QO_LinesQuery setCat1Description(String value) { this.Cat1Description = value; return this; } public String getCat1DescriptionStartsWith() { return Cat1DescriptionStartsWith; } public QO_LinesQuery setCat1DescriptionStartsWith(String value) { this.Cat1DescriptionStartsWith = value; return this; } public String getCat1DescriptionEndsWith() { return Cat1DescriptionEndsWith; } public QO_LinesQuery setCat1DescriptionEndsWith(String value) { this.Cat1DescriptionEndsWith = value; return this; } public String getCat1DescriptionContains() { return Cat1DescriptionContains; } public QO_LinesQuery setCat1DescriptionContains(String value) { this.Cat1DescriptionContains = value; return this; } public String getCat1DescriptionLike() { return Cat1DescriptionLike; } public QO_LinesQuery setCat1DescriptionLike(String value) { this.Cat1DescriptionLike = value; return this; } public ArrayList getCat1DescriptionBetween() { return Cat1DescriptionBetween; } public QO_LinesQuery setCat1DescriptionBetween(ArrayList value) { this.Cat1DescriptionBetween = value; return this; } public ArrayList getCat1DescriptionIn() { return Cat1DescriptionIn; } public QO_LinesQuery setCat1DescriptionIn(ArrayList value) { this.Cat1DescriptionIn = value; return this; } public String getCat2Description() { return Cat2Description; } public QO_LinesQuery setCat2Description(String value) { this.Cat2Description = value; return this; } public String getCat2DescriptionStartsWith() { return Cat2DescriptionStartsWith; } public QO_LinesQuery setCat2DescriptionStartsWith(String value) { this.Cat2DescriptionStartsWith = value; return this; } public String getCat2DescriptionEndsWith() { return Cat2DescriptionEndsWith; } public QO_LinesQuery setCat2DescriptionEndsWith(String value) { this.Cat2DescriptionEndsWith = value; return this; } public String getCat2DescriptionContains() { return Cat2DescriptionContains; } public QO_LinesQuery setCat2DescriptionContains(String value) { this.Cat2DescriptionContains = value; return this; } public String getCat2DescriptionLike() { return Cat2DescriptionLike; } public QO_LinesQuery setCat2DescriptionLike(String value) { this.Cat2DescriptionLike = value; return this; } public ArrayList getCat2DescriptionBetween() { return Cat2DescriptionBetween; } public QO_LinesQuery setCat2DescriptionBetween(ArrayList value) { this.Cat2DescriptionBetween = value; return this; } public ArrayList getCat2DescriptionIn() { return Cat2DescriptionIn; } public QO_LinesQuery setCat2DescriptionIn(ArrayList value) { this.Cat2DescriptionIn = value; return this; } public String getCat3Description() { return Cat3Description; } public QO_LinesQuery setCat3Description(String value) { this.Cat3Description = value; return this; } public String getCat3DescriptionStartsWith() { return Cat3DescriptionStartsWith; } public QO_LinesQuery setCat3DescriptionStartsWith(String value) { this.Cat3DescriptionStartsWith = value; return this; } public String getCat3DescriptionEndsWith() { return Cat3DescriptionEndsWith; } public QO_LinesQuery setCat3DescriptionEndsWith(String value) { this.Cat3DescriptionEndsWith = value; return this; } public String getCat3DescriptionContains() { return Cat3DescriptionContains; } public QO_LinesQuery setCat3DescriptionContains(String value) { this.Cat3DescriptionContains = value; return this; } public String getCat3DescriptionLike() { return Cat3DescriptionLike; } public QO_LinesQuery setCat3DescriptionLike(String value) { this.Cat3DescriptionLike = value; return this; } public ArrayList getCat3DescriptionBetween() { return Cat3DescriptionBetween; } public QO_LinesQuery setCat3DescriptionBetween(ArrayList value) { this.Cat3DescriptionBetween = value; return this; } public ArrayList getCat3DescriptionIn() { return Cat3DescriptionIn; } public QO_LinesQuery setCat3DescriptionIn(ArrayList value) { this.Cat3DescriptionIn = value; return this; } public String getUnits() { return Units; } public QO_LinesQuery setUnits(String value) { this.Units = value; return this; } public String getUnitsStartsWith() { return UnitsStartsWith; } public QO_LinesQuery setUnitsStartsWith(String value) { this.UnitsStartsWith = value; return this; } public String getUnitsEndsWith() { return UnitsEndsWith; } public QO_LinesQuery setUnitsEndsWith(String value) { this.UnitsEndsWith = value; return this; } public String getUnitsContains() { return UnitsContains; } public QO_LinesQuery setUnitsContains(String value) { this.UnitsContains = value; return this; } public String getUnitsLike() { return UnitsLike; } public QO_LinesQuery setUnitsLike(String value) { this.UnitsLike = value; return this; } public ArrayList getUnitsBetween() { return UnitsBetween; } public QO_LinesQuery setUnitsBetween(ArrayList value) { this.UnitsBetween = value; return this; } public ArrayList getUnitsIn() { return UnitsIn; } public QO_LinesQuery setUnitsIn(ArrayList value) { this.UnitsIn = value; return this; } public BigDecimal getCostIn() { return CostIn; } public QO_LinesQuery setCostIn(BigDecimal value) { this.CostIn = value; return this; } public BigDecimal getCostInGreaterThanOrEqualTo() { return CostInGreaterThanOrEqualTo; } public QO_LinesQuery setCostInGreaterThanOrEqualTo(BigDecimal value) { this.CostInGreaterThanOrEqualTo = value; return this; } public BigDecimal getCostInGreaterThan() { return CostInGreaterThan; } public QO_LinesQuery setCostInGreaterThan(BigDecimal value) { this.CostInGreaterThan = value; return this; } public BigDecimal getCostInLessThan() { return CostInLessThan; } public QO_LinesQuery setCostInLessThan(BigDecimal value) { this.CostInLessThan = value; return this; } public BigDecimal getCostInLessThanOrEqualTo() { return CostInLessThanOrEqualTo; } public QO_LinesQuery setCostInLessThanOrEqualTo(BigDecimal value) { this.CostInLessThanOrEqualTo = value; return this; } public BigDecimal getCostInNotEqualTo() { return CostInNotEqualTo; } public QO_LinesQuery setCostInNotEqualTo(BigDecimal value) { this.CostInNotEqualTo = value; return this; } public ArrayList getCostInBetween() { return CostInBetween; } public QO_LinesQuery setCostInBetween(ArrayList value) { this.CostInBetween = value; return this; } public ArrayList getCostInIn() { return CostInIn; } public QO_LinesQuery setCostInIn(ArrayList value) { this.CostInIn = value; return this; } public BigDecimal getDefaultPrice() { return DefaultPrice; } public QO_LinesQuery setDefaultPrice(BigDecimal value) { this.DefaultPrice = value; return this; } public BigDecimal getDefaultPriceGreaterThanOrEqualTo() { return DefaultPriceGreaterThanOrEqualTo; } public QO_LinesQuery setDefaultPriceGreaterThanOrEqualTo(BigDecimal value) { this.DefaultPriceGreaterThanOrEqualTo = value; return this; } public BigDecimal getDefaultPriceGreaterThan() { return DefaultPriceGreaterThan; } public QO_LinesQuery setDefaultPriceGreaterThan(BigDecimal value) { this.DefaultPriceGreaterThan = value; return this; } public BigDecimal getDefaultPriceLessThan() { return DefaultPriceLessThan; } public QO_LinesQuery setDefaultPriceLessThan(BigDecimal value) { this.DefaultPriceLessThan = value; return this; } public BigDecimal getDefaultPriceLessThanOrEqualTo() { return DefaultPriceLessThanOrEqualTo; } public QO_LinesQuery setDefaultPriceLessThanOrEqualTo(BigDecimal value) { this.DefaultPriceLessThanOrEqualTo = value; return this; } public BigDecimal getDefaultPriceNotEqualTo() { return DefaultPriceNotEqualTo; } public QO_LinesQuery setDefaultPriceNotEqualTo(BigDecimal value) { this.DefaultPriceNotEqualTo = value; return this; } public ArrayList getDefaultPriceBetween() { return DefaultPriceBetween; } public QO_LinesQuery setDefaultPriceBetween(ArrayList value) { this.DefaultPriceBetween = value; return this; } public ArrayList getDefaultPriceIn() { return DefaultPriceIn; } public QO_LinesQuery setDefaultPriceIn(ArrayList value) { this.DefaultPriceIn = value; return this; } public BigDecimal getItemPrice() { return ItemPrice; } public QO_LinesQuery setItemPrice(BigDecimal value) { this.ItemPrice = value; return this; } public BigDecimal getItemPriceGreaterThanOrEqualTo() { return ItemPriceGreaterThanOrEqualTo; } public QO_LinesQuery setItemPriceGreaterThanOrEqualTo(BigDecimal value) { this.ItemPriceGreaterThanOrEqualTo = value; return this; } public BigDecimal getItemPriceGreaterThan() { return ItemPriceGreaterThan; } public QO_LinesQuery setItemPriceGreaterThan(BigDecimal value) { this.ItemPriceGreaterThan = value; return this; } public BigDecimal getItemPriceLessThan() { return ItemPriceLessThan; } public QO_LinesQuery setItemPriceLessThan(BigDecimal value) { this.ItemPriceLessThan = value; return this; } public BigDecimal getItemPriceLessThanOrEqualTo() { return ItemPriceLessThanOrEqualTo; } public QO_LinesQuery setItemPriceLessThanOrEqualTo(BigDecimal value) { this.ItemPriceLessThanOrEqualTo = value; return this; } public BigDecimal getItemPriceNotEqualTo() { return ItemPriceNotEqualTo; } public QO_LinesQuery setItemPriceNotEqualTo(BigDecimal value) { this.ItemPriceNotEqualTo = value; return this; } public ArrayList getItemPriceBetween() { return ItemPriceBetween; } public QO_LinesQuery setItemPriceBetween(ArrayList value) { this.ItemPriceBetween = value; return this; } public ArrayList getItemPriceIn() { return ItemPriceIn; } public QO_LinesQuery setItemPriceIn(ArrayList value) { this.ItemPriceIn = value; return this; } public BigDecimal getDiscount() { return Discount; } public QO_LinesQuery setDiscount(BigDecimal value) { this.Discount = value; return this; } public BigDecimal getDiscountGreaterThanOrEqualTo() { return DiscountGreaterThanOrEqualTo; } public QO_LinesQuery setDiscountGreaterThanOrEqualTo(BigDecimal value) { this.DiscountGreaterThanOrEqualTo = value; return this; } public BigDecimal getDiscountGreaterThan() { return DiscountGreaterThan; } public QO_LinesQuery setDiscountGreaterThan(BigDecimal value) { this.DiscountGreaterThan = value; return this; } public BigDecimal getDiscountLessThan() { return DiscountLessThan; } public QO_LinesQuery setDiscountLessThan(BigDecimal value) { this.DiscountLessThan = value; return this; } public BigDecimal getDiscountLessThanOrEqualTo() { return DiscountLessThanOrEqualTo; } public QO_LinesQuery setDiscountLessThanOrEqualTo(BigDecimal value) { this.DiscountLessThanOrEqualTo = value; return this; } public BigDecimal getDiscountNotEqualTo() { return DiscountNotEqualTo; } public QO_LinesQuery setDiscountNotEqualTo(BigDecimal value) { this.DiscountNotEqualTo = value; return this; } public ArrayList getDiscountBetween() { return DiscountBetween; } public QO_LinesQuery setDiscountBetween(ArrayList value) { this.DiscountBetween = value; return this; } public ArrayList getDiscountIn() { return DiscountIn; } public QO_LinesQuery setDiscountIn(ArrayList value) { this.DiscountIn = value; return this; } public BigDecimal getInvoicePrice() { return InvoicePrice; } public QO_LinesQuery setInvoicePrice(BigDecimal value) { this.InvoicePrice = value; return this; } public BigDecimal getInvoicePriceGreaterThanOrEqualTo() { return InvoicePriceGreaterThanOrEqualTo; } public QO_LinesQuery setInvoicePriceGreaterThanOrEqualTo(BigDecimal value) { this.InvoicePriceGreaterThanOrEqualTo = value; return this; } public BigDecimal getInvoicePriceGreaterThan() { return InvoicePriceGreaterThan; } public QO_LinesQuery setInvoicePriceGreaterThan(BigDecimal value) { this.InvoicePriceGreaterThan = value; return this; } public BigDecimal getInvoicePriceLessThan() { return InvoicePriceLessThan; } public QO_LinesQuery setInvoicePriceLessThan(BigDecimal value) { this.InvoicePriceLessThan = value; return this; } public BigDecimal getInvoicePriceLessThanOrEqualTo() { return InvoicePriceLessThanOrEqualTo; } public QO_LinesQuery setInvoicePriceLessThanOrEqualTo(BigDecimal value) { this.InvoicePriceLessThanOrEqualTo = value; return this; } public BigDecimal getInvoicePriceNotEqualTo() { return InvoicePriceNotEqualTo; } public QO_LinesQuery setInvoicePriceNotEqualTo(BigDecimal value) { this.InvoicePriceNotEqualTo = value; return this; } public ArrayList getInvoicePriceBetween() { return InvoicePriceBetween; } public QO_LinesQuery setInvoicePriceBetween(ArrayList value) { this.InvoicePriceBetween = value; return this; } public ArrayList getInvoicePriceIn() { return InvoicePriceIn; } public QO_LinesQuery setInvoicePriceIn(ArrayList value) { this.InvoicePriceIn = value; return this; } public BigDecimal getRrpPrice() { return RRPPrice; } public QO_LinesQuery setRrpPrice(BigDecimal value) { this.RRPPrice = value; return this; } public BigDecimal getRrpPriceGreaterThanOrEqualTo() { return RRPPriceGreaterThanOrEqualTo; } public QO_LinesQuery setRrpPriceGreaterThanOrEqualTo(BigDecimal value) { this.RRPPriceGreaterThanOrEqualTo = value; return this; } public BigDecimal getRrpPriceGreaterThan() { return RRPPriceGreaterThan; } public QO_LinesQuery setRrpPriceGreaterThan(BigDecimal value) { this.RRPPriceGreaterThan = value; return this; } public BigDecimal getRrpPriceLessThan() { return RRPPriceLessThan; } public QO_LinesQuery setRrpPriceLessThan(BigDecimal value) { this.RRPPriceLessThan = value; return this; } public BigDecimal getRrpPriceLessThanOrEqualTo() { return RRPPriceLessThanOrEqualTo; } public QO_LinesQuery setRrpPriceLessThanOrEqualTo(BigDecimal value) { this.RRPPriceLessThanOrEqualTo = value; return this; } public BigDecimal getRrpPriceNotEqualTo() { return RRPPriceNotEqualTo; } public QO_LinesQuery setRrpPriceNotEqualTo(BigDecimal value) { this.RRPPriceNotEqualTo = value; return this; } public ArrayList getRrpPriceBetween() { return RRPPriceBetween; } public QO_LinesQuery setRrpPriceBetween(ArrayList value) { this.RRPPriceBetween = value; return this; } public ArrayList getRrpPriceIn() { return RRPPriceIn; } public QO_LinesQuery setRrpPriceIn(ArrayList value) { this.RRPPriceIn = value; return this; } public BigDecimal getTaxToCharge() { return TaxToCharge; } public QO_LinesQuery setTaxToCharge(BigDecimal value) { this.TaxToCharge = value; return this; } public BigDecimal getTaxToChargeGreaterThanOrEqualTo() { return TaxToChargeGreaterThanOrEqualTo; } public QO_LinesQuery setTaxToChargeGreaterThanOrEqualTo(BigDecimal value) { this.TaxToChargeGreaterThanOrEqualTo = value; return this; } public BigDecimal getTaxToChargeGreaterThan() { return TaxToChargeGreaterThan; } public QO_LinesQuery setTaxToChargeGreaterThan(BigDecimal value) { this.TaxToChargeGreaterThan = value; return this; } public BigDecimal getTaxToChargeLessThan() { return TaxToChargeLessThan; } public QO_LinesQuery setTaxToChargeLessThan(BigDecimal value) { this.TaxToChargeLessThan = value; return this; } public BigDecimal getTaxToChargeLessThanOrEqualTo() { return TaxToChargeLessThanOrEqualTo; } public QO_LinesQuery setTaxToChargeLessThanOrEqualTo(BigDecimal value) { this.TaxToChargeLessThanOrEqualTo = value; return this; } public BigDecimal getTaxToChargeNotEqualTo() { return TaxToChargeNotEqualTo; } public QO_LinesQuery setTaxToChargeNotEqualTo(BigDecimal value) { this.TaxToChargeNotEqualTo = value; return this; } public ArrayList getTaxToChargeBetween() { return TaxToChargeBetween; } public QO_LinesQuery setTaxToChargeBetween(ArrayList value) { this.TaxToChargeBetween = value; return this; } public ArrayList getTaxToChargeIn() { return TaxToChargeIn; } public QO_LinesQuery setTaxToChargeIn(ArrayList value) { this.TaxToChargeIn = value; return this; } public BigDecimal getCurrentLineTotal() { return CurrentLineTotal; } public QO_LinesQuery setCurrentLineTotal(BigDecimal value) { this.CurrentLineTotal = value; return this; } public BigDecimal getCurrentLineTotalGreaterThanOrEqualTo() { return CurrentLineTotalGreaterThanOrEqualTo; } public QO_LinesQuery setCurrentLineTotalGreaterThanOrEqualTo(BigDecimal value) { this.CurrentLineTotalGreaterThanOrEqualTo = value; return this; } public BigDecimal getCurrentLineTotalGreaterThan() { return CurrentLineTotalGreaterThan; } public QO_LinesQuery setCurrentLineTotalGreaterThan(BigDecimal value) { this.CurrentLineTotalGreaterThan = value; return this; } public BigDecimal getCurrentLineTotalLessThan() { return CurrentLineTotalLessThan; } public QO_LinesQuery setCurrentLineTotalLessThan(BigDecimal value) { this.CurrentLineTotalLessThan = value; return this; } public BigDecimal getCurrentLineTotalLessThanOrEqualTo() { return CurrentLineTotalLessThanOrEqualTo; } public QO_LinesQuery setCurrentLineTotalLessThanOrEqualTo(BigDecimal value) { this.CurrentLineTotalLessThanOrEqualTo = value; return this; } public BigDecimal getCurrentLineTotalNotEqualTo() { return CurrentLineTotalNotEqualTo; } public QO_LinesQuery setCurrentLineTotalNotEqualTo(BigDecimal value) { this.CurrentLineTotalNotEqualTo = value; return this; } public ArrayList getCurrentLineTotalBetween() { return CurrentLineTotalBetween; } public QO_LinesQuery setCurrentLineTotalBetween(ArrayList value) { this.CurrentLineTotalBetween = value; return this; } public ArrayList getCurrentLineTotalIn() { return CurrentLineTotalIn; } public QO_LinesQuery setCurrentLineTotalIn(ArrayList value) { this.CurrentLineTotalIn = value; return this; } public BigDecimal getQuantityOrdered() { return QuantityOrdered; } public QO_LinesQuery setQuantityOrdered(BigDecimal value) { this.QuantityOrdered = value; return this; } public BigDecimal getQuantityOrderedGreaterThanOrEqualTo() { return QuantityOrderedGreaterThanOrEqualTo; } public QO_LinesQuery setQuantityOrderedGreaterThanOrEqualTo(BigDecimal value) { this.QuantityOrderedGreaterThanOrEqualTo = value; return this; } public BigDecimal getQuantityOrderedGreaterThan() { return QuantityOrderedGreaterThan; } public QO_LinesQuery setQuantityOrderedGreaterThan(BigDecimal value) { this.QuantityOrderedGreaterThan = value; return this; } public BigDecimal getQuantityOrderedLessThan() { return QuantityOrderedLessThan; } public QO_LinesQuery setQuantityOrderedLessThan(BigDecimal value) { this.QuantityOrderedLessThan = value; return this; } public BigDecimal getQuantityOrderedLessThanOrEqualTo() { return QuantityOrderedLessThanOrEqualTo; } public QO_LinesQuery setQuantityOrderedLessThanOrEqualTo(BigDecimal value) { this.QuantityOrderedLessThanOrEqualTo = value; return this; } public BigDecimal getQuantityOrderedNotEqualTo() { return QuantityOrderedNotEqualTo; } public QO_LinesQuery setQuantityOrderedNotEqualTo(BigDecimal value) { this.QuantityOrderedNotEqualTo = value; return this; } public ArrayList getQuantityOrderedBetween() { return QuantityOrderedBetween; } public QO_LinesQuery setQuantityOrderedBetween(ArrayList value) { this.QuantityOrderedBetween = value; return this; } public ArrayList getQuantityOrderedIn() { return QuantityOrderedIn; } public QO_LinesQuery setQuantityOrderedIn(ArrayList value) { this.QuantityOrderedIn = value; return this; } public String getHistoryTextComment() { return HistoryText_Comment; } public QO_LinesQuery setHistoryTextComment(String value) { this.HistoryText_Comment = value; return this; } public String getHistoryTextCommentStartsWith() { return HistoryText_CommentStartsWith; } public QO_LinesQuery setHistoryTextCommentStartsWith(String value) { this.HistoryText_CommentStartsWith = value; return this; } public String getHistoryTextCommentEndsWith() { return HistoryText_CommentEndsWith; } public QO_LinesQuery setHistoryTextCommentEndsWith(String value) { this.HistoryText_CommentEndsWith = value; return this; } public String getHistoryTextCommentContains() { return HistoryText_CommentContains; } public QO_LinesQuery setHistoryTextCommentContains(String value) { this.HistoryText_CommentContains = value; return this; } public String getHistoryTextCommentLike() { return HistoryText_CommentLike; } public QO_LinesQuery setHistoryTextCommentLike(String value) { this.HistoryText_CommentLike = value; return this; } public ArrayList getHistoryTextCommentBetween() { return HistoryText_CommentBetween; } public QO_LinesQuery setHistoryTextCommentBetween(ArrayList value) { this.HistoryText_CommentBetween = value; return this; } public ArrayList getHistoryTextCommentIn() { return HistoryText_CommentIn; } public QO_LinesQuery setHistoryTextCommentIn(ArrayList value) { this.HistoryText_CommentIn = value; return this; } public Boolean isDiscountable() { return Discountable; } public QO_LinesQuery setDiscountable(Boolean value) { this.Discountable = value; return this; } public BigDecimal getDirectTax() { return DirectTax; } public QO_LinesQuery setDirectTax(BigDecimal value) { this.DirectTax = value; return this; } public BigDecimal getDirectTaxGreaterThanOrEqualTo() { return DirectTaxGreaterThanOrEqualTo; } public QO_LinesQuery setDirectTaxGreaterThanOrEqualTo(BigDecimal value) { this.DirectTaxGreaterThanOrEqualTo = value; return this; } public BigDecimal getDirectTaxGreaterThan() { return DirectTaxGreaterThan; } public QO_LinesQuery setDirectTaxGreaterThan(BigDecimal value) { this.DirectTaxGreaterThan = value; return this; } public BigDecimal getDirectTaxLessThan() { return DirectTaxLessThan; } public QO_LinesQuery setDirectTaxLessThan(BigDecimal value) { this.DirectTaxLessThan = value; return this; } public BigDecimal getDirectTaxLessThanOrEqualTo() { return DirectTaxLessThanOrEqualTo; } public QO_LinesQuery setDirectTaxLessThanOrEqualTo(BigDecimal value) { this.DirectTaxLessThanOrEqualTo = value; return this; } public BigDecimal getDirectTaxNotEqualTo() { return DirectTaxNotEqualTo; } public QO_LinesQuery setDirectTaxNotEqualTo(BigDecimal value) { this.DirectTaxNotEqualTo = value; return this; } public ArrayList getDirectTaxBetween() { return DirectTaxBetween; } public QO_LinesQuery setDirectTaxBetween(ArrayList value) { this.DirectTaxBetween = value; return this; } public ArrayList getDirectTaxIn() { return DirectTaxIn; } public QO_LinesQuery setDirectTaxIn(ArrayList value) { this.DirectTaxIn = value; return this; } public Short getDecimalPlaces() { return DecimalPlaces; } public QO_LinesQuery setDecimalPlaces(Short value) { this.DecimalPlaces = value; return this; } public Short getDecimalPlacesGreaterThanOrEqualTo() { return DecimalPlacesGreaterThanOrEqualTo; } public QO_LinesQuery setDecimalPlacesGreaterThanOrEqualTo(Short value) { this.DecimalPlacesGreaterThanOrEqualTo = value; return this; } public Short getDecimalPlacesGreaterThan() { return DecimalPlacesGreaterThan; } public QO_LinesQuery setDecimalPlacesGreaterThan(Short value) { this.DecimalPlacesGreaterThan = value; return this; } public Short getDecimalPlacesLessThan() { return DecimalPlacesLessThan; } public QO_LinesQuery setDecimalPlacesLessThan(Short value) { this.DecimalPlacesLessThan = value; return this; } public Short getDecimalPlacesLessThanOrEqualTo() { return DecimalPlacesLessThanOrEqualTo; } public QO_LinesQuery setDecimalPlacesLessThanOrEqualTo(Short value) { this.DecimalPlacesLessThanOrEqualTo = value; return this; } public Short getDecimalPlacesNotEqualTo() { return DecimalPlacesNotEqualTo; } public QO_LinesQuery setDecimalPlacesNotEqualTo(Short value) { this.DecimalPlacesNotEqualTo = value; return this; } public ArrayList getDecimalPlacesBetween() { return DecimalPlacesBetween; } public QO_LinesQuery setDecimalPlacesBetween(ArrayList value) { this.DecimalPlacesBetween = value; return this; } public ArrayList getDecimalPlacesIn() { return DecimalPlacesIn; } public QO_LinesQuery setDecimalPlacesIn(ArrayList value) { this.DecimalPlacesIn = value; return this; } public BigDecimal getMinimumGP() { return MinimumGP; } public QO_LinesQuery setMinimumGP(BigDecimal value) { this.MinimumGP = value; return this; } public BigDecimal getMinimumGPGreaterThanOrEqualTo() { return MinimumGPGreaterThanOrEqualTo; } public QO_LinesQuery setMinimumGPGreaterThanOrEqualTo(BigDecimal value) { this.MinimumGPGreaterThanOrEqualTo = value; return this; } public BigDecimal getMinimumGPGreaterThan() { return MinimumGPGreaterThan; } public QO_LinesQuery setMinimumGPGreaterThan(BigDecimal value) { this.MinimumGPGreaterThan = value; return this; } public BigDecimal getMinimumGPLessThan() { return MinimumGPLessThan; } public QO_LinesQuery setMinimumGPLessThan(BigDecimal value) { this.MinimumGPLessThan = value; return this; } public BigDecimal getMinimumGPLessThanOrEqualTo() { return MinimumGPLessThanOrEqualTo; } public QO_LinesQuery setMinimumGPLessThanOrEqualTo(BigDecimal value) { this.MinimumGPLessThanOrEqualTo = value; return this; } public BigDecimal getMinimumGPNotEqualTo() { return MinimumGPNotEqualTo; } public QO_LinesQuery setMinimumGPNotEqualTo(BigDecimal value) { this.MinimumGPNotEqualTo = value; return this; } public ArrayList getMinimumGPBetween() { return MinimumGPBetween; } public QO_LinesQuery setMinimumGPBetween(ArrayList value) { this.MinimumGPBetween = value; return this; } public ArrayList getMinimumGPIn() { return MinimumGPIn; } public QO_LinesQuery setMinimumGPIn(ArrayList value) { this.MinimumGPIn = value; return this; } public String getDebitLedger() { return DebitLedger; } public QO_LinesQuery setDebitLedger(String value) { this.DebitLedger = value; return this; } public String getDebitLedgerStartsWith() { return DebitLedgerStartsWith; } public QO_LinesQuery setDebitLedgerStartsWith(String value) { this.DebitLedgerStartsWith = value; return this; } public String getDebitLedgerEndsWith() { return DebitLedgerEndsWith; } public QO_LinesQuery setDebitLedgerEndsWith(String value) { this.DebitLedgerEndsWith = value; return this; } public String getDebitLedgerContains() { return DebitLedgerContains; } public QO_LinesQuery setDebitLedgerContains(String value) { this.DebitLedgerContains = value; return this; } public String getDebitLedgerLike() { return DebitLedgerLike; } public QO_LinesQuery setDebitLedgerLike(String value) { this.DebitLedgerLike = value; return this; } public ArrayList getDebitLedgerBetween() { return DebitLedgerBetween; } public QO_LinesQuery setDebitLedgerBetween(ArrayList value) { this.DebitLedgerBetween = value; return this; } public ArrayList getDebitLedgerIn() { return DebitLedgerIn; } public QO_LinesQuery setDebitLedgerIn(ArrayList value) { this.DebitLedgerIn = value; return this; } public String getCreditLedger() { return CreditLedger; } public QO_LinesQuery setCreditLedger(String value) { this.CreditLedger = value; return this; } public String getCreditLedgerStartsWith() { return CreditLedgerStartsWith; } public QO_LinesQuery setCreditLedgerStartsWith(String value) { this.CreditLedgerStartsWith = value; return this; } public String getCreditLedgerEndsWith() { return CreditLedgerEndsWith; } public QO_LinesQuery setCreditLedgerEndsWith(String value) { this.CreditLedgerEndsWith = value; return this; } public String getCreditLedgerContains() { return CreditLedgerContains; } public QO_LinesQuery setCreditLedgerContains(String value) { this.CreditLedgerContains = value; return this; } public String getCreditLedgerLike() { return CreditLedgerLike; } public QO_LinesQuery setCreditLedgerLike(String value) { this.CreditLedgerLike = value; return this; } public ArrayList getCreditLedgerBetween() { return CreditLedgerBetween; } public QO_LinesQuery setCreditLedgerBetween(ArrayList value) { this.CreditLedgerBetween = value; return this; } public ArrayList getCreditLedgerIn() { return CreditLedgerIn; } public QO_LinesQuery setCreditLedgerIn(ArrayList value) { this.CreditLedgerIn = value; return this; } public Boolean isNonStock() { return NonStock; } public QO_LinesQuery setNonStock(Boolean value) { this.NonStock = value; return this; } public String getInventoryID() { return InventoryID; } public QO_LinesQuery setInventoryID(String value) { this.InventoryID = value; return this; } public String getInventoryIDStartsWith() { return InventoryIDStartsWith; } public QO_LinesQuery setInventoryIDStartsWith(String value) { this.InventoryIDStartsWith = value; return this; } public String getInventoryIDEndsWith() { return InventoryIDEndsWith; } public QO_LinesQuery setInventoryIDEndsWith(String value) { this.InventoryIDEndsWith = value; return this; } public String getInventoryIDContains() { return InventoryIDContains; } public QO_LinesQuery setInventoryIDContains(String value) { this.InventoryIDContains = value; return this; } public String getInventoryIDLike() { return InventoryIDLike; } public QO_LinesQuery setInventoryIDLike(String value) { this.InventoryIDLike = value; return this; } public ArrayList getInventoryIDBetween() { return InventoryIDBetween; } public QO_LinesQuery setInventoryIDBetween(ArrayList value) { this.InventoryIDBetween = value; return this; } public ArrayList getInventoryIDIn() { return InventoryIDIn; } public QO_LinesQuery setInventoryIDIn(ArrayList value) { this.InventoryIDIn = value; return this; } public Boolean isUseSerialNo() { return UseSerialNo; } public QO_LinesQuery setUseSerialNo(Boolean value) { this.UseSerialNo = value; return this; } public Boolean isBackorderable() { return Backorderable; } public QO_LinesQuery setBackorderable(Boolean value) { this.Backorderable = value; return this; } public BigDecimal getTaxRate() { return TaxRate; } public QO_LinesQuery setTaxRate(BigDecimal value) { this.TaxRate = value; return this; } public BigDecimal getTaxRateGreaterThanOrEqualTo() { return TaxRateGreaterThanOrEqualTo; } public QO_LinesQuery setTaxRateGreaterThanOrEqualTo(BigDecimal value) { this.TaxRateGreaterThanOrEqualTo = value; return this; } public BigDecimal getTaxRateGreaterThan() { return TaxRateGreaterThan; } public QO_LinesQuery setTaxRateGreaterThan(BigDecimal value) { this.TaxRateGreaterThan = value; return this; } public BigDecimal getTaxRateLessThan() { return TaxRateLessThan; } public QO_LinesQuery setTaxRateLessThan(BigDecimal value) { this.TaxRateLessThan = value; return this; } public BigDecimal getTaxRateLessThanOrEqualTo() { return TaxRateLessThanOrEqualTo; } public QO_LinesQuery setTaxRateLessThanOrEqualTo(BigDecimal value) { this.TaxRateLessThanOrEqualTo = value; return this; } public BigDecimal getTaxRateNotEqualTo() { return TaxRateNotEqualTo; } public QO_LinesQuery setTaxRateNotEqualTo(BigDecimal value) { this.TaxRateNotEqualTo = value; return this; } public ArrayList getTaxRateBetween() { return TaxRateBetween; } public QO_LinesQuery setTaxRateBetween(ArrayList value) { this.TaxRateBetween = value; return this; } public ArrayList getTaxRateIn() { return TaxRateIn; } public QO_LinesQuery setTaxRateIn(ArrayList value) { this.TaxRateIn = value; return this; } public BigDecimal getItemTaxToCharge() { return ItemTaxToCharge; } public QO_LinesQuery setItemTaxToCharge(BigDecimal value) { this.ItemTaxToCharge = value; return this; } public BigDecimal getItemTaxToChargeGreaterThanOrEqualTo() { return ItemTaxToChargeGreaterThanOrEqualTo; } public QO_LinesQuery setItemTaxToChargeGreaterThanOrEqualTo(BigDecimal value) { this.ItemTaxToChargeGreaterThanOrEqualTo = value; return this; } public BigDecimal getItemTaxToChargeGreaterThan() { return ItemTaxToChargeGreaterThan; } public QO_LinesQuery setItemTaxToChargeGreaterThan(BigDecimal value) { this.ItemTaxToChargeGreaterThan = value; return this; } public BigDecimal getItemTaxToChargeLessThan() { return ItemTaxToChargeLessThan; } public QO_LinesQuery setItemTaxToChargeLessThan(BigDecimal value) { this.ItemTaxToChargeLessThan = value; return this; } public BigDecimal getItemTaxToChargeLessThanOrEqualTo() { return ItemTaxToChargeLessThanOrEqualTo; } public QO_LinesQuery setItemTaxToChargeLessThanOrEqualTo(BigDecimal value) { this.ItemTaxToChargeLessThanOrEqualTo = value; return this; } public BigDecimal getItemTaxToChargeNotEqualTo() { return ItemTaxToChargeNotEqualTo; } public QO_LinesQuery setItemTaxToChargeNotEqualTo(BigDecimal value) { this.ItemTaxToChargeNotEqualTo = value; return this; } public ArrayList getItemTaxToChargeBetween() { return ItemTaxToChargeBetween; } public QO_LinesQuery setItemTaxToChargeBetween(ArrayList value) { this.ItemTaxToChargeBetween = value; return this; } public ArrayList getItemTaxToChargeIn() { return ItemTaxToChargeIn; } public QO_LinesQuery setItemTaxToChargeIn(ArrayList value) { this.ItemTaxToChargeIn = value; return this; } public String getLineLinkID() { return LineLinkID; } public QO_LinesQuery setLineLinkID(String value) { this.LineLinkID = value; return this; } public String getLineLinkIDStartsWith() { return LineLinkIDStartsWith; } public QO_LinesQuery setLineLinkIDStartsWith(String value) { this.LineLinkIDStartsWith = value; return this; } public String getLineLinkIDEndsWith() { return LineLinkIDEndsWith; } public QO_LinesQuery setLineLinkIDEndsWith(String value) { this.LineLinkIDEndsWith = value; return this; } public String getLineLinkIDContains() { return LineLinkIDContains; } public QO_LinesQuery setLineLinkIDContains(String value) { this.LineLinkIDContains = value; return this; } public String getLineLinkIDLike() { return LineLinkIDLike; } public QO_LinesQuery setLineLinkIDLike(String value) { this.LineLinkIDLike = value; return this; } public ArrayList getLineLinkIDBetween() { return LineLinkIDBetween; } public QO_LinesQuery setLineLinkIDBetween(ArrayList value) { this.LineLinkIDBetween = value; return this; } public ArrayList getLineLinkIDIn() { return LineLinkIDIn; } public QO_LinesQuery setLineLinkIDIn(ArrayList value) { this.LineLinkIDIn = value; return this; } public Short getKittingStatus() { return KittingStatus; } public QO_LinesQuery setKittingStatus(Short value) { this.KittingStatus = value; return this; } public Short getKittingStatusGreaterThanOrEqualTo() { return KittingStatusGreaterThanOrEqualTo; } public QO_LinesQuery setKittingStatusGreaterThanOrEqualTo(Short value) { this.KittingStatusGreaterThanOrEqualTo = value; return this; } public Short getKittingStatusGreaterThan() { return KittingStatusGreaterThan; } public QO_LinesQuery setKittingStatusGreaterThan(Short value) { this.KittingStatusGreaterThan = value; return this; } public Short getKittingStatusLessThan() { return KittingStatusLessThan; } public QO_LinesQuery setKittingStatusLessThan(Short value) { this.KittingStatusLessThan = value; return this; } public Short getKittingStatusLessThanOrEqualTo() { return KittingStatusLessThanOrEqualTo; } public QO_LinesQuery setKittingStatusLessThanOrEqualTo(Short value) { this.KittingStatusLessThanOrEqualTo = value; return this; } public Short getKittingStatusNotEqualTo() { return KittingStatusNotEqualTo; } public QO_LinesQuery setKittingStatusNotEqualTo(Short value) { this.KittingStatusNotEqualTo = value; return this; } public ArrayList getKittingStatusBetween() { return KittingStatusBetween; } public QO_LinesQuery setKittingStatusBetween(ArrayList value) { this.KittingStatusBetween = value; return this; } public ArrayList getKittingStatusIn() { return KittingStatusIn; } public QO_LinesQuery setKittingStatusIn(ArrayList value) { this.KittingStatusIn = value; return this; } public BigDecimal getKittingUnits() { return KittingUnits; } public QO_LinesQuery setKittingUnits(BigDecimal value) { this.KittingUnits = value; return this; } public BigDecimal getKittingUnitsGreaterThanOrEqualTo() { return KittingUnitsGreaterThanOrEqualTo; } public QO_LinesQuery setKittingUnitsGreaterThanOrEqualTo(BigDecimal value) { this.KittingUnitsGreaterThanOrEqualTo = value; return this; } public BigDecimal getKittingUnitsGreaterThan() { return KittingUnitsGreaterThan; } public QO_LinesQuery setKittingUnitsGreaterThan(BigDecimal value) { this.KittingUnitsGreaterThan = value; return this; } public BigDecimal getKittingUnitsLessThan() { return KittingUnitsLessThan; } public QO_LinesQuery setKittingUnitsLessThan(BigDecimal value) { this.KittingUnitsLessThan = value; return this; } public BigDecimal getKittingUnitsLessThanOrEqualTo() { return KittingUnitsLessThanOrEqualTo; } public QO_LinesQuery setKittingUnitsLessThanOrEqualTo(BigDecimal value) { this.KittingUnitsLessThanOrEqualTo = value; return this; } public BigDecimal getKittingUnitsNotEqualTo() { return KittingUnitsNotEqualTo; } public QO_LinesQuery setKittingUnitsNotEqualTo(BigDecimal value) { this.KittingUnitsNotEqualTo = value; return this; } public ArrayList getKittingUnitsBetween() { return KittingUnitsBetween; } public QO_LinesQuery setKittingUnitsBetween(ArrayList value) { this.KittingUnitsBetween = value; return this; } public ArrayList getKittingUnitsIn() { return KittingUnitsIn; } public QO_LinesQuery setKittingUnitsIn(ArrayList value) { this.KittingUnitsIn = value; return this; } public String getJobConnectorID() { return JobConnectorID; } public QO_LinesQuery setJobConnectorID(String value) { this.JobConnectorID = value; return this; } public String getJobConnectorIDStartsWith() { return JobConnectorIDStartsWith; } public QO_LinesQuery setJobConnectorIDStartsWith(String value) { this.JobConnectorIDStartsWith = value; return this; } public String getJobConnectorIDEndsWith() { return JobConnectorIDEndsWith; } public QO_LinesQuery setJobConnectorIDEndsWith(String value) { this.JobConnectorIDEndsWith = value; return this; } public String getJobConnectorIDContains() { return JobConnectorIDContains; } public QO_LinesQuery setJobConnectorIDContains(String value) { this.JobConnectorIDContains = value; return this; } public String getJobConnectorIDLike() { return JobConnectorIDLike; } public QO_LinesQuery setJobConnectorIDLike(String value) { this.JobConnectorIDLike = value; return this; } public ArrayList getJobConnectorIDBetween() { return JobConnectorIDBetween; } public QO_LinesQuery setJobConnectorIDBetween(ArrayList value) { this.JobConnectorIDBetween = value; return this; } public ArrayList getJobConnectorIDIn() { return JobConnectorIDIn; } public QO_LinesQuery setJobConnectorIDIn(ArrayList value) { this.JobConnectorIDIn = value; return this; } public Short getKitStyle() { return KitStyle; } public QO_LinesQuery setKitStyle(Short value) { this.KitStyle = value; return this; } public Short getKitStyleGreaterThanOrEqualTo() { return KitStyleGreaterThanOrEqualTo; } public QO_LinesQuery setKitStyleGreaterThanOrEqualTo(Short value) { this.KitStyleGreaterThanOrEqualTo = value; return this; } public Short getKitStyleGreaterThan() { return KitStyleGreaterThan; } public QO_LinesQuery setKitStyleGreaterThan(Short value) { this.KitStyleGreaterThan = value; return this; } public Short getKitStyleLessThan() { return KitStyleLessThan; } public QO_LinesQuery setKitStyleLessThan(Short value) { this.KitStyleLessThan = value; return this; } public Short getKitStyleLessThanOrEqualTo() { return KitStyleLessThanOrEqualTo; } public QO_LinesQuery setKitStyleLessThanOrEqualTo(Short value) { this.KitStyleLessThanOrEqualTo = value; return this; } public Short getKitStyleNotEqualTo() { return KitStyleNotEqualTo; } public QO_LinesQuery setKitStyleNotEqualTo(Short value) { this.KitStyleNotEqualTo = value; return this; } public ArrayList getKitStyleBetween() { return KitStyleBetween; } public QO_LinesQuery setKitStyleBetween(ArrayList value) { this.KitStyleBetween = value; return this; } public ArrayList getKitStyleIn() { return KitStyleIn; } public QO_LinesQuery setKitStyleIn(ArrayList value) { this.KitStyleIn = value; return this; } public BigDecimal getDiscountPercentage() { return DiscountPercentage; } public QO_LinesQuery setDiscountPercentage(BigDecimal value) { this.DiscountPercentage = value; return this; } public BigDecimal getDiscountPercentageGreaterThanOrEqualTo() { return DiscountPercentageGreaterThanOrEqualTo; } public QO_LinesQuery setDiscountPercentageGreaterThanOrEqualTo(BigDecimal value) { this.DiscountPercentageGreaterThanOrEqualTo = value; return this; } public BigDecimal getDiscountPercentageGreaterThan() { return DiscountPercentageGreaterThan; } public QO_LinesQuery setDiscountPercentageGreaterThan(BigDecimal value) { this.DiscountPercentageGreaterThan = value; return this; } public BigDecimal getDiscountPercentageLessThan() { return DiscountPercentageLessThan; } public QO_LinesQuery setDiscountPercentageLessThan(BigDecimal value) { this.DiscountPercentageLessThan = value; return this; } public BigDecimal getDiscountPercentageLessThanOrEqualTo() { return DiscountPercentageLessThanOrEqualTo; } public QO_LinesQuery setDiscountPercentageLessThanOrEqualTo(BigDecimal value) { this.DiscountPercentageLessThanOrEqualTo = value; return this; } public BigDecimal getDiscountPercentageNotEqualTo() { return DiscountPercentageNotEqualTo; } public QO_LinesQuery setDiscountPercentageNotEqualTo(BigDecimal value) { this.DiscountPercentageNotEqualTo = value; return this; } public ArrayList getDiscountPercentageBetween() { return DiscountPercentageBetween; } public QO_LinesQuery setDiscountPercentageBetween(ArrayList value) { this.DiscountPercentageBetween = value; return this; } public ArrayList getDiscountPercentageIn() { return DiscountPercentageIn; } public QO_LinesQuery setDiscountPercentageIn(ArrayList value) { this.DiscountPercentageIn = value; return this; } public BigDecimal getSalesmanCost() { return SalesmanCost; } public QO_LinesQuery setSalesmanCost(BigDecimal value) { this.SalesmanCost = value; return this; } public BigDecimal getSalesmanCostGreaterThanOrEqualTo() { return SalesmanCostGreaterThanOrEqualTo; } public QO_LinesQuery setSalesmanCostGreaterThanOrEqualTo(BigDecimal value) { this.SalesmanCostGreaterThanOrEqualTo = value; return this; } public BigDecimal getSalesmanCostGreaterThan() { return SalesmanCostGreaterThan; } public QO_LinesQuery setSalesmanCostGreaterThan(BigDecimal value) { this.SalesmanCostGreaterThan = value; return this; } public BigDecimal getSalesmanCostLessThan() { return SalesmanCostLessThan; } public QO_LinesQuery setSalesmanCostLessThan(BigDecimal value) { this.SalesmanCostLessThan = value; return this; } public BigDecimal getSalesmanCostLessThanOrEqualTo() { return SalesmanCostLessThanOrEqualTo; } public QO_LinesQuery setSalesmanCostLessThanOrEqualTo(BigDecimal value) { this.SalesmanCostLessThanOrEqualTo = value; return this; } public BigDecimal getSalesmanCostNotEqualTo() { return SalesmanCostNotEqualTo; } public QO_LinesQuery setSalesmanCostNotEqualTo(BigDecimal value) { this.SalesmanCostNotEqualTo = value; return this; } public ArrayList getSalesmanCostBetween() { return SalesmanCostBetween; } public QO_LinesQuery setSalesmanCostBetween(ArrayList value) { this.SalesmanCostBetween = value; return this; } public ArrayList getSalesmanCostIn() { return SalesmanCostIn; } public QO_LinesQuery setSalesmanCostIn(ArrayList value) { this.SalesmanCostIn = value; return this; } public BigDecimal getItemPriceIncGST() { return ItemPriceIncGST; } public QO_LinesQuery setItemPriceIncGST(BigDecimal value) { this.ItemPriceIncGST = value; return this; } public BigDecimal getItemPriceIncGSTGreaterThanOrEqualTo() { return ItemPriceIncGSTGreaterThanOrEqualTo; } public QO_LinesQuery setItemPriceIncGSTGreaterThanOrEqualTo(BigDecimal value) { this.ItemPriceIncGSTGreaterThanOrEqualTo = value; return this; } public BigDecimal getItemPriceIncGSTGreaterThan() { return ItemPriceIncGSTGreaterThan; } public QO_LinesQuery setItemPriceIncGSTGreaterThan(BigDecimal value) { this.ItemPriceIncGSTGreaterThan = value; return this; } public BigDecimal getItemPriceIncGSTLessThan() { return ItemPriceIncGSTLessThan; } public QO_LinesQuery setItemPriceIncGSTLessThan(BigDecimal value) { this.ItemPriceIncGSTLessThan = value; return this; } public BigDecimal getItemPriceIncGSTLessThanOrEqualTo() { return ItemPriceIncGSTLessThanOrEqualTo; } public QO_LinesQuery setItemPriceIncGSTLessThanOrEqualTo(BigDecimal value) { this.ItemPriceIncGSTLessThanOrEqualTo = value; return this; } public BigDecimal getItemPriceIncGSTNotEqualTo() { return ItemPriceIncGSTNotEqualTo; } public QO_LinesQuery setItemPriceIncGSTNotEqualTo(BigDecimal value) { this.ItemPriceIncGSTNotEqualTo = value; return this; } public ArrayList getItemPriceIncGSTBetween() { return ItemPriceIncGSTBetween; } public QO_LinesQuery setItemPriceIncGSTBetween(ArrayList value) { this.ItemPriceIncGSTBetween = value; return this; } public ArrayList getItemPriceIncGSTIn() { return ItemPriceIncGSTIn; } public QO_LinesQuery setItemPriceIncGSTIn(ArrayList value) { this.ItemPriceIncGSTIn = value; return this; } public BigDecimal getItemPriceUnDiscounted() { return ItemPriceUnDiscounted; } public QO_LinesQuery setItemPriceUnDiscounted(BigDecimal value) { this.ItemPriceUnDiscounted = value; return this; } public BigDecimal getItemPriceUnDiscountedGreaterThanOrEqualTo() { return ItemPriceUnDiscountedGreaterThanOrEqualTo; } public QO_LinesQuery setItemPriceUnDiscountedGreaterThanOrEqualTo(BigDecimal value) { this.ItemPriceUnDiscountedGreaterThanOrEqualTo = value; return this; } public BigDecimal getItemPriceUnDiscountedGreaterThan() { return ItemPriceUnDiscountedGreaterThan; } public QO_LinesQuery setItemPriceUnDiscountedGreaterThan(BigDecimal value) { this.ItemPriceUnDiscountedGreaterThan = value; return this; } public BigDecimal getItemPriceUnDiscountedLessThan() { return ItemPriceUnDiscountedLessThan; } public QO_LinesQuery setItemPriceUnDiscountedLessThan(BigDecimal value) { this.ItemPriceUnDiscountedLessThan = value; return this; } public BigDecimal getItemPriceUnDiscountedLessThanOrEqualTo() { return ItemPriceUnDiscountedLessThanOrEqualTo; } public QO_LinesQuery setItemPriceUnDiscountedLessThanOrEqualTo(BigDecimal value) { this.ItemPriceUnDiscountedLessThanOrEqualTo = value; return this; } public BigDecimal getItemPriceUnDiscountedNotEqualTo() { return ItemPriceUnDiscountedNotEqualTo; } public QO_LinesQuery setItemPriceUnDiscountedNotEqualTo(BigDecimal value) { this.ItemPriceUnDiscountedNotEqualTo = value; return this; } public ArrayList getItemPriceUnDiscountedBetween() { return ItemPriceUnDiscountedBetween; } public QO_LinesQuery setItemPriceUnDiscountedBetween(ArrayList value) { this.ItemPriceUnDiscountedBetween = value; return this; } public ArrayList getItemPriceUnDiscountedIn() { return ItemPriceUnDiscountedIn; } public QO_LinesQuery setItemPriceUnDiscountedIn(ArrayList value) { this.ItemPriceUnDiscountedIn = value; return this; } public String getNonStockLedgerSalesAccID() { return NonStockLedgerSalesAccID; } public QO_LinesQuery setNonStockLedgerSalesAccID(String value) { this.NonStockLedgerSalesAccID = value; return this; } public String getNonStockLedgerSalesAccIDStartsWith() { return NonStockLedgerSalesAccIDStartsWith; } public QO_LinesQuery setNonStockLedgerSalesAccIDStartsWith(String value) { this.NonStockLedgerSalesAccIDStartsWith = value; return this; } public String getNonStockLedgerSalesAccIDEndsWith() { return NonStockLedgerSalesAccIDEndsWith; } public QO_LinesQuery setNonStockLedgerSalesAccIDEndsWith(String value) { this.NonStockLedgerSalesAccIDEndsWith = value; return this; } public String getNonStockLedgerSalesAccIDContains() { return NonStockLedgerSalesAccIDContains; } public QO_LinesQuery setNonStockLedgerSalesAccIDContains(String value) { this.NonStockLedgerSalesAccIDContains = value; return this; } public String getNonStockLedgerSalesAccIDLike() { return NonStockLedgerSalesAccIDLike; } public QO_LinesQuery setNonStockLedgerSalesAccIDLike(String value) { this.NonStockLedgerSalesAccIDLike = value; return this; } public ArrayList getNonStockLedgerSalesAccIDBetween() { return NonStockLedgerSalesAccIDBetween; } public QO_LinesQuery setNonStockLedgerSalesAccIDBetween(ArrayList value) { this.NonStockLedgerSalesAccIDBetween = value; return this; } public ArrayList getNonStockLedgerSalesAccIDIn() { return NonStockLedgerSalesAccIDIn; } public QO_LinesQuery setNonStockLedgerSalesAccIDIn(ArrayList value) { this.NonStockLedgerSalesAccIDIn = value; return this; } public String getKitLineID() { return KitLineID; } public QO_LinesQuery setKitLineID(String value) { this.KitLineID = value; return this; } public String getKitLineIDStartsWith() { return KitLineIDStartsWith; } public QO_LinesQuery setKitLineIDStartsWith(String value) { this.KitLineIDStartsWith = value; return this; } public String getKitLineIDEndsWith() { return KitLineIDEndsWith; } public QO_LinesQuery setKitLineIDEndsWith(String value) { this.KitLineIDEndsWith = value; return this; } public String getKitLineIDContains() { return KitLineIDContains; } public QO_LinesQuery setKitLineIDContains(String value) { this.KitLineIDContains = value; return this; } public String getKitLineIDLike() { return KitLineIDLike; } public QO_LinesQuery setKitLineIDLike(String value) { this.KitLineIDLike = value; return this; } public ArrayList getKitLineIDBetween() { return KitLineIDBetween; } public QO_LinesQuery setKitLineIDBetween(ArrayList value) { this.KitLineIDBetween = value; return this; } public ArrayList getKitLineIDIn() { return KitLineIDIn; } public QO_LinesQuery setKitLineIDIn(ArrayList value) { this.KitLineIDIn = value; return this; } public Boolean isSellPriceIncTax() { return SellPriceIncTax; } public QO_LinesQuery setSellPriceIncTax(Boolean value) { this.SellPriceIncTax = value; return this; } public BigDecimal getUserDefinedFloat1() { return UserDefinedFloat1; } public QO_LinesQuery setUserDefinedFloat1(BigDecimal value) { this.UserDefinedFloat1 = value; return this; } public BigDecimal getUserDefinedFloat1GreaterThanOrEqualTo() { return UserDefinedFloat1GreaterThanOrEqualTo; } public QO_LinesQuery setUserDefinedFloat1GreaterThanOrEqualTo(BigDecimal value) { this.UserDefinedFloat1GreaterThanOrEqualTo = value; return this; } public BigDecimal getUserDefinedFloat1GreaterThan() { return UserDefinedFloat1GreaterThan; } public QO_LinesQuery setUserDefinedFloat1GreaterThan(BigDecimal value) { this.UserDefinedFloat1GreaterThan = value; return this; } public BigDecimal getUserDefinedFloat1LessThan() { return UserDefinedFloat1LessThan; } public QO_LinesQuery setUserDefinedFloat1LessThan(BigDecimal value) { this.UserDefinedFloat1LessThan = value; return this; } public BigDecimal getUserDefinedFloat1LessThanOrEqualTo() { return UserDefinedFloat1LessThanOrEqualTo; } public QO_LinesQuery setUserDefinedFloat1LessThanOrEqualTo(BigDecimal value) { this.UserDefinedFloat1LessThanOrEqualTo = value; return this; } public BigDecimal getUserDefinedFloat1NotEqualTo() { return UserDefinedFloat1NotEqualTo; } public QO_LinesQuery setUserDefinedFloat1NotEqualTo(BigDecimal value) { this.UserDefinedFloat1NotEqualTo = value; return this; } public ArrayList getUserDefinedFloat1Between() { return UserDefinedFloat1Between; } public QO_LinesQuery setUserDefinedFloat1Between(ArrayList value) { this.UserDefinedFloat1Between = value; return this; } public ArrayList getUserDefinedFloat1In() { return UserDefinedFloat1In; } public QO_LinesQuery setUserDefinedFloat1In(ArrayList value) { this.UserDefinedFloat1In = value; return this; } public BigDecimal getUserDefinedFloat2() { return UserDefinedFloat2; } public QO_LinesQuery setUserDefinedFloat2(BigDecimal value) { this.UserDefinedFloat2 = value; return this; } public BigDecimal getUserDefinedFloat2GreaterThanOrEqualTo() { return UserDefinedFloat2GreaterThanOrEqualTo; } public QO_LinesQuery setUserDefinedFloat2GreaterThanOrEqualTo(BigDecimal value) { this.UserDefinedFloat2GreaterThanOrEqualTo = value; return this; } public BigDecimal getUserDefinedFloat2GreaterThan() { return UserDefinedFloat2GreaterThan; } public QO_LinesQuery setUserDefinedFloat2GreaterThan(BigDecimal value) { this.UserDefinedFloat2GreaterThan = value; return this; } public BigDecimal getUserDefinedFloat2LessThan() { return UserDefinedFloat2LessThan; } public QO_LinesQuery setUserDefinedFloat2LessThan(BigDecimal value) { this.UserDefinedFloat2LessThan = value; return this; } public BigDecimal getUserDefinedFloat2LessThanOrEqualTo() { return UserDefinedFloat2LessThanOrEqualTo; } public QO_LinesQuery setUserDefinedFloat2LessThanOrEqualTo(BigDecimal value) { this.UserDefinedFloat2LessThanOrEqualTo = value; return this; } public BigDecimal getUserDefinedFloat2NotEqualTo() { return UserDefinedFloat2NotEqualTo; } public QO_LinesQuery setUserDefinedFloat2NotEqualTo(BigDecimal value) { this.UserDefinedFloat2NotEqualTo = value; return this; } public ArrayList getUserDefinedFloat2Between() { return UserDefinedFloat2Between; } public QO_LinesQuery setUserDefinedFloat2Between(ArrayList value) { this.UserDefinedFloat2Between = value; return this; } public ArrayList getUserDefinedFloat2In() { return UserDefinedFloat2In; } public QO_LinesQuery setUserDefinedFloat2In(ArrayList value) { this.UserDefinedFloat2In = value; return this; } public BigDecimal getUserDefinedFloat3() { return UserDefinedFloat3; } public QO_LinesQuery setUserDefinedFloat3(BigDecimal value) { this.UserDefinedFloat3 = value; return this; } public BigDecimal getUserDefinedFloat3GreaterThanOrEqualTo() { return UserDefinedFloat3GreaterThanOrEqualTo; } public QO_LinesQuery setUserDefinedFloat3GreaterThanOrEqualTo(BigDecimal value) { this.UserDefinedFloat3GreaterThanOrEqualTo = value; return this; } public BigDecimal getUserDefinedFloat3GreaterThan() { return UserDefinedFloat3GreaterThan; } public QO_LinesQuery setUserDefinedFloat3GreaterThan(BigDecimal value) { this.UserDefinedFloat3GreaterThan = value; return this; } public BigDecimal getUserDefinedFloat3LessThan() { return UserDefinedFloat3LessThan; } public QO_LinesQuery setUserDefinedFloat3LessThan(BigDecimal value) { this.UserDefinedFloat3LessThan = value; return this; } public BigDecimal getUserDefinedFloat3LessThanOrEqualTo() { return UserDefinedFloat3LessThanOrEqualTo; } public QO_LinesQuery setUserDefinedFloat3LessThanOrEqualTo(BigDecimal value) { this.UserDefinedFloat3LessThanOrEqualTo = value; return this; } public BigDecimal getUserDefinedFloat3NotEqualTo() { return UserDefinedFloat3NotEqualTo; } public QO_LinesQuery setUserDefinedFloat3NotEqualTo(BigDecimal value) { this.UserDefinedFloat3NotEqualTo = value; return this; } public ArrayList getUserDefinedFloat3Between() { return UserDefinedFloat3Between; } public QO_LinesQuery setUserDefinedFloat3Between(ArrayList value) { this.UserDefinedFloat3Between = value; return this; } public ArrayList getUserDefinedFloat3In() { return UserDefinedFloat3In; } public QO_LinesQuery setUserDefinedFloat3In(ArrayList value) { this.UserDefinedFloat3In = value; return this; } public Boolean isFixSellPrice() { return FixSellPrice; } public QO_LinesQuery setFixSellPrice(Boolean value) { this.FixSellPrice = value; return this; } public Boolean isTypeKitRounding() { return TypeKitRounding; } public QO_LinesQuery setTypeKitRounding(Boolean value) { this.TypeKitRounding = value; return this; } public UUID getInUnitOfMeasureRecID() { return IN_UnitOfMeasure_RecID; } public QO_LinesQuery setInUnitOfMeasureRecID(UUID value) { this.IN_UnitOfMeasure_RecID = value; return this; } public ArrayList getInUnitOfMeasureRecIDIn() { return IN_UnitOfMeasure_RecIDIn; } public QO_LinesQuery setInUnitOfMeasureRecIDIn(ArrayList value) { this.IN_UnitOfMeasure_RecIDIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @Route(Path="/Queries/QO_Main", Verbs="GET") @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class QO_MainQuery extends QueryDb implements IReturn> { public String InvoiceID = null; public String InvoiceIDStartsWith = null; public String InvoiceIDEndsWith = null; public String InvoiceIDContains = null; public String InvoiceIDLike = null; public ArrayList InvoiceIDBetween = null; public ArrayList InvoiceIDIn = null; public Date LastSavedDateTime = null; public Date LastSavedDateTimeGreaterThanOrEqualTo = null; public Date LastSavedDateTimeGreaterThan = null; public Date LastSavedDateTimeLessThan = null; public Date LastSavedDateTimeLessThanOrEqualTo = null; public Date LastSavedDateTimeNotEqualTo = null; public ArrayList LastSavedDateTimeBetween = null; public ArrayList LastSavedDateTimeIn = null; public String DebtorID = null; public String DebtorIDStartsWith = null; public String DebtorIDEndsWith = null; public String DebtorIDContains = null; public String DebtorIDLike = null; public ArrayList DebtorIDBetween = null; public ArrayList DebtorIDIn = null; public String StaffID = null; public String StaffIDStartsWith = null; public String StaffIDEndsWith = null; public String StaffIDContains = null; public String StaffIDLike = null; public ArrayList StaffIDBetween = null; public ArrayList StaffIDIn = null; public String InvoiceNo = null; public String InvoiceNoStartsWith = null; public String InvoiceNoEndsWith = null; public String InvoiceNoContains = null; public String InvoiceNoLike = null; public ArrayList InvoiceNoBetween = null; public ArrayList InvoiceNoIn = null; public Date InvoiceInitDate = null; public Date InvoiceInitDateGreaterThanOrEqualTo = null; public Date InvoiceInitDateGreaterThan = null; public Date InvoiceInitDateLessThan = null; public Date InvoiceInitDateLessThanOrEqualTo = null; public Date InvoiceInitDateNotEqualTo = null; public ArrayList InvoiceInitDateBetween = null; public ArrayList InvoiceInitDateIn = null; public Date InvoiceLastDate = null; public Date InvoiceLastDateGreaterThanOrEqualTo = null; public Date InvoiceLastDateGreaterThan = null; public Date InvoiceLastDateLessThan = null; public Date InvoiceLastDateLessThanOrEqualTo = null; public Date InvoiceLastDateNotEqualTo = null; public ArrayList InvoiceLastDateBetween = null; public ArrayList InvoiceLastDateIn = null; public String OrderNo = null; public String OrderNoStartsWith = null; public String OrderNoEndsWith = null; public String OrderNoContains = null; public String OrderNoLike = null; public ArrayList OrderNoBetween = null; public ArrayList OrderNoIn = null; public String TaxExemptNo = null; public String TaxExemptNoStartsWith = null; public String TaxExemptNoEndsWith = null; public String TaxExemptNoContains = null; public String TaxExemptNoLike = null; public ArrayList TaxExemptNoBetween = null; public ArrayList TaxExemptNoIn = null; public Boolean WholeSaleInvoice = null; public BigDecimal InvoiceTotal = null; public BigDecimal InvoiceTotalGreaterThanOrEqualTo = null; public BigDecimal InvoiceTotalGreaterThan = null; public BigDecimal InvoiceTotalLessThan = null; public BigDecimal InvoiceTotalLessThanOrEqualTo = null; public BigDecimal InvoiceTotalNotEqualTo = null; public ArrayList InvoiceTotalBetween = null; public ArrayList InvoiceTotalIn = null; public Boolean InvoicePrinted = null; public Short CurrentHistoryNo = null; public Short CurrentHistoryNoGreaterThanOrEqualTo = null; public Short CurrentHistoryNoGreaterThan = null; public Short CurrentHistoryNoLessThan = null; public Short CurrentHistoryNoLessThanOrEqualTo = null; public Short CurrentHistoryNoNotEqualTo = null; public ArrayList CurrentHistoryNoBetween = null; public ArrayList CurrentHistoryNoIn = null; public Short Status = null; public Short StatusGreaterThanOrEqualTo = null; public Short StatusGreaterThan = null; public Short StatusLessThan = null; public Short StatusLessThanOrEqualTo = null; public Short StatusNotEqualTo = null; public ArrayList StatusBetween = null; public ArrayList StatusIn = null; public Short BillWhenComplete = null; public Short BillWhenCompleteGreaterThanOrEqualTo = null; public Short BillWhenCompleteGreaterThan = null; public Short BillWhenCompleteLessThan = null; public Short BillWhenCompleteLessThanOrEqualTo = null; public Short BillWhenCompleteNotEqualTo = null; public ArrayList BillWhenCompleteBetween = null; public ArrayList BillWhenCompleteIn = null; public Short InvoiceType = null; public Short InvoiceTypeGreaterThanOrEqualTo = null; public Short InvoiceTypeGreaterThan = null; public Short InvoiceTypeLessThan = null; public Short InvoiceTypeLessThanOrEqualTo = null; public Short InvoiceTypeNotEqualTo = null; public ArrayList InvoiceTypeBetween = null; public ArrayList InvoiceTypeIn = null; public String GroupSupplierID = null; public String GroupSupplierIDStartsWith = null; public String GroupSupplierIDEndsWith = null; public String GroupSupplierIDContains = null; public String GroupSupplierIDLike = null; public ArrayList GroupSupplierIDBetween = null; public ArrayList GroupSupplierIDIn = null; public Boolean GroupOrdered = null; public String IN_LogicalID = null; public String IN_LogicalIDStartsWith = null; public String IN_LogicalIDEndsWith = null; public String IN_LogicalIDContains = null; public String IN_LogicalIDLike = null; public ArrayList IN_LogicalIDBetween = null; public ArrayList IN_LogicalIDIn = null; public String BranchID = null; public String BranchIDStartsWith = null; public String BranchIDEndsWith = null; public String BranchIDContains = null; public String BranchIDLike = null; public ArrayList BranchIDBetween = null; public ArrayList BranchIDIn = null; public String QOReference = null; public String QOReferenceStartsWith = null; public String QOReferenceEndsWith = null; public String QOReferenceContains = null; public String QOReferenceLike = null; public ArrayList QOReferenceBetween = null; public ArrayList QOReferenceIn = null; public String JobCostID = null; public String JobCostIDStartsWith = null; public String JobCostIDEndsWith = null; public String JobCostIDContains = null; public String JobCostIDLike = null; public ArrayList JobCostIDBetween = null; public ArrayList JobCostIDIn = null; public Integer DocType = null; public Integer DocTypeGreaterThanOrEqualTo = null; public Integer DocTypeGreaterThan = null; public Integer DocTypeLessThan = null; public Integer DocTypeLessThanOrEqualTo = null; public Integer DocTypeNotEqualTo = null; public ArrayList DocTypeBetween = null; public ArrayList DocTypeIn = null; public Short BackOrderMode = null; public Short BackOrderModeGreaterThanOrEqualTo = null; public Short BackOrderModeGreaterThan = null; public Short BackOrderModeLessThan = null; public Short BackOrderModeLessThanOrEqualTo = null; public Short BackOrderModeNotEqualTo = null; public ArrayList BackOrderModeBetween = null; public ArrayList BackOrderModeIn = null; public Date ExpectedDeliveryDate = null; public Date ExpectedDeliveryDateGreaterThanOrEqualTo = null; public Date ExpectedDeliveryDateGreaterThan = null; public Date ExpectedDeliveryDateLessThan = null; public Date ExpectedDeliveryDateLessThanOrEqualTo = null; public Date ExpectedDeliveryDateNotEqualTo = null; public ArrayList ExpectedDeliveryDateBetween = null; public ArrayList ExpectedDeliveryDateIn = null; public String DebtorContactName = null; public String DebtorContactNameStartsWith = null; public String DebtorContactNameEndsWith = null; public String DebtorContactNameContains = null; public String DebtorContactNameLike = null; public ArrayList DebtorContactNameBetween = null; public ArrayList DebtorContactNameIn = null; public String ParentDebtorID = null; public String ParentDebtorIDStartsWith = null; public String ParentDebtorIDEndsWith = null; public String ParentDebtorIDContains = null; public String ParentDebtorIDLike = null; public ArrayList ParentDebtorIDBetween = null; public ArrayList ParentDebtorIDIn = null; public String PriceSchemeID = null; public String PriceSchemeIDStartsWith = null; public String PriceSchemeIDEndsWith = null; public String PriceSchemeIDContains = null; public String PriceSchemeIDLike = null; public ArrayList PriceSchemeIDBetween = null; public ArrayList PriceSchemeIDIn = null; public Boolean InvoiceEmailed = null; public String getInvoiceID() { return InvoiceID; } public QO_MainQuery setInvoiceID(String value) { this.InvoiceID = value; return this; } public String getInvoiceIDStartsWith() { return InvoiceIDStartsWith; } public QO_MainQuery setInvoiceIDStartsWith(String value) { this.InvoiceIDStartsWith = value; return this; } public String getInvoiceIDEndsWith() { return InvoiceIDEndsWith; } public QO_MainQuery setInvoiceIDEndsWith(String value) { this.InvoiceIDEndsWith = value; return this; } public String getInvoiceIDContains() { return InvoiceIDContains; } public QO_MainQuery setInvoiceIDContains(String value) { this.InvoiceIDContains = value; return this; } public String getInvoiceIDLike() { return InvoiceIDLike; } public QO_MainQuery setInvoiceIDLike(String value) { this.InvoiceIDLike = value; return this; } public ArrayList getInvoiceIDBetween() { return InvoiceIDBetween; } public QO_MainQuery setInvoiceIDBetween(ArrayList value) { this.InvoiceIDBetween = value; return this; } public ArrayList getInvoiceIDIn() { return InvoiceIDIn; } public QO_MainQuery setInvoiceIDIn(ArrayList value) { this.InvoiceIDIn = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public QO_MainQuery setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getLastSavedDateTimeGreaterThanOrEqualTo() { return LastSavedDateTimeGreaterThanOrEqualTo; } public QO_MainQuery setLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.LastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeGreaterThan() { return LastSavedDateTimeGreaterThan; } public QO_MainQuery setLastSavedDateTimeGreaterThan(Date value) { this.LastSavedDateTimeGreaterThan = value; return this; } public Date getLastSavedDateTimeLessThan() { return LastSavedDateTimeLessThan; } public QO_MainQuery setLastSavedDateTimeLessThan(Date value) { this.LastSavedDateTimeLessThan = value; return this; } public Date getLastSavedDateTimeLessThanOrEqualTo() { return LastSavedDateTimeLessThanOrEqualTo; } public QO_MainQuery setLastSavedDateTimeLessThanOrEqualTo(Date value) { this.LastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeNotEqualTo() { return LastSavedDateTimeNotEqualTo; } public QO_MainQuery setLastSavedDateTimeNotEqualTo(Date value) { this.LastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getLastSavedDateTimeBetween() { return LastSavedDateTimeBetween; } public QO_MainQuery setLastSavedDateTimeBetween(ArrayList value) { this.LastSavedDateTimeBetween = value; return this; } public ArrayList getLastSavedDateTimeIn() { return LastSavedDateTimeIn; } public QO_MainQuery setLastSavedDateTimeIn(ArrayList value) { this.LastSavedDateTimeIn = value; return this; } public String getDebtorID() { return DebtorID; } public QO_MainQuery setDebtorID(String value) { this.DebtorID = value; return this; } public String getDebtorIDStartsWith() { return DebtorIDStartsWith; } public QO_MainQuery setDebtorIDStartsWith(String value) { this.DebtorIDStartsWith = value; return this; } public String getDebtorIDEndsWith() { return DebtorIDEndsWith; } public QO_MainQuery setDebtorIDEndsWith(String value) { this.DebtorIDEndsWith = value; return this; } public String getDebtorIDContains() { return DebtorIDContains; } public QO_MainQuery setDebtorIDContains(String value) { this.DebtorIDContains = value; return this; } public String getDebtorIDLike() { return DebtorIDLike; } public QO_MainQuery setDebtorIDLike(String value) { this.DebtorIDLike = value; return this; } public ArrayList getDebtorIDBetween() { return DebtorIDBetween; } public QO_MainQuery setDebtorIDBetween(ArrayList value) { this.DebtorIDBetween = value; return this; } public ArrayList getDebtorIDIn() { return DebtorIDIn; } public QO_MainQuery setDebtorIDIn(ArrayList value) { this.DebtorIDIn = value; return this; } public String getStaffID() { return StaffID; } public QO_MainQuery setStaffID(String value) { this.StaffID = value; return this; } public String getStaffIDStartsWith() { return StaffIDStartsWith; } public QO_MainQuery setStaffIDStartsWith(String value) { this.StaffIDStartsWith = value; return this; } public String getStaffIDEndsWith() { return StaffIDEndsWith; } public QO_MainQuery setStaffIDEndsWith(String value) { this.StaffIDEndsWith = value; return this; } public String getStaffIDContains() { return StaffIDContains; } public QO_MainQuery setStaffIDContains(String value) { this.StaffIDContains = value; return this; } public String getStaffIDLike() { return StaffIDLike; } public QO_MainQuery setStaffIDLike(String value) { this.StaffIDLike = value; return this; } public ArrayList getStaffIDBetween() { return StaffIDBetween; } public QO_MainQuery setStaffIDBetween(ArrayList value) { this.StaffIDBetween = value; return this; } public ArrayList getStaffIDIn() { return StaffIDIn; } public QO_MainQuery setStaffIDIn(ArrayList value) { this.StaffIDIn = value; return this; } public String getInvoiceNo() { return InvoiceNo; } public QO_MainQuery setInvoiceNo(String value) { this.InvoiceNo = value; return this; } public String getInvoiceNoStartsWith() { return InvoiceNoStartsWith; } public QO_MainQuery setInvoiceNoStartsWith(String value) { this.InvoiceNoStartsWith = value; return this; } public String getInvoiceNoEndsWith() { return InvoiceNoEndsWith; } public QO_MainQuery setInvoiceNoEndsWith(String value) { this.InvoiceNoEndsWith = value; return this; } public String getInvoiceNoContains() { return InvoiceNoContains; } public QO_MainQuery setInvoiceNoContains(String value) { this.InvoiceNoContains = value; return this; } public String getInvoiceNoLike() { return InvoiceNoLike; } public QO_MainQuery setInvoiceNoLike(String value) { this.InvoiceNoLike = value; return this; } public ArrayList getInvoiceNoBetween() { return InvoiceNoBetween; } public QO_MainQuery setInvoiceNoBetween(ArrayList value) { this.InvoiceNoBetween = value; return this; } public ArrayList getInvoiceNoIn() { return InvoiceNoIn; } public QO_MainQuery setInvoiceNoIn(ArrayList value) { this.InvoiceNoIn = value; return this; } public Date getInvoiceInitDate() { return InvoiceInitDate; } public QO_MainQuery setInvoiceInitDate(Date value) { this.InvoiceInitDate = value; return this; } public Date getInvoiceInitDateGreaterThanOrEqualTo() { return InvoiceInitDateGreaterThanOrEqualTo; } public QO_MainQuery setInvoiceInitDateGreaterThanOrEqualTo(Date value) { this.InvoiceInitDateGreaterThanOrEqualTo = value; return this; } public Date getInvoiceInitDateGreaterThan() { return InvoiceInitDateGreaterThan; } public QO_MainQuery setInvoiceInitDateGreaterThan(Date value) { this.InvoiceInitDateGreaterThan = value; return this; } public Date getInvoiceInitDateLessThan() { return InvoiceInitDateLessThan; } public QO_MainQuery setInvoiceInitDateLessThan(Date value) { this.InvoiceInitDateLessThan = value; return this; } public Date getInvoiceInitDateLessThanOrEqualTo() { return InvoiceInitDateLessThanOrEqualTo; } public QO_MainQuery setInvoiceInitDateLessThanOrEqualTo(Date value) { this.InvoiceInitDateLessThanOrEqualTo = value; return this; } public Date getInvoiceInitDateNotEqualTo() { return InvoiceInitDateNotEqualTo; } public QO_MainQuery setInvoiceInitDateNotEqualTo(Date value) { this.InvoiceInitDateNotEqualTo = value; return this; } public ArrayList getInvoiceInitDateBetween() { return InvoiceInitDateBetween; } public QO_MainQuery setInvoiceInitDateBetween(ArrayList value) { this.InvoiceInitDateBetween = value; return this; } public ArrayList getInvoiceInitDateIn() { return InvoiceInitDateIn; } public QO_MainQuery setInvoiceInitDateIn(ArrayList value) { this.InvoiceInitDateIn = value; return this; } public Date getInvoiceLastDate() { return InvoiceLastDate; } public QO_MainQuery setInvoiceLastDate(Date value) { this.InvoiceLastDate = value; return this; } public Date getInvoiceLastDateGreaterThanOrEqualTo() { return InvoiceLastDateGreaterThanOrEqualTo; } public QO_MainQuery setInvoiceLastDateGreaterThanOrEqualTo(Date value) { this.InvoiceLastDateGreaterThanOrEqualTo = value; return this; } public Date getInvoiceLastDateGreaterThan() { return InvoiceLastDateGreaterThan; } public QO_MainQuery setInvoiceLastDateGreaterThan(Date value) { this.InvoiceLastDateGreaterThan = value; return this; } public Date getInvoiceLastDateLessThan() { return InvoiceLastDateLessThan; } public QO_MainQuery setInvoiceLastDateLessThan(Date value) { this.InvoiceLastDateLessThan = value; return this; } public Date getInvoiceLastDateLessThanOrEqualTo() { return InvoiceLastDateLessThanOrEqualTo; } public QO_MainQuery setInvoiceLastDateLessThanOrEqualTo(Date value) { this.InvoiceLastDateLessThanOrEqualTo = value; return this; } public Date getInvoiceLastDateNotEqualTo() { return InvoiceLastDateNotEqualTo; } public QO_MainQuery setInvoiceLastDateNotEqualTo(Date value) { this.InvoiceLastDateNotEqualTo = value; return this; } public ArrayList getInvoiceLastDateBetween() { return InvoiceLastDateBetween; } public QO_MainQuery setInvoiceLastDateBetween(ArrayList value) { this.InvoiceLastDateBetween = value; return this; } public ArrayList getInvoiceLastDateIn() { return InvoiceLastDateIn; } public QO_MainQuery setInvoiceLastDateIn(ArrayList value) { this.InvoiceLastDateIn = value; return this; } public String getOrderNo() { return OrderNo; } public QO_MainQuery setOrderNo(String value) { this.OrderNo = value; return this; } public String getOrderNoStartsWith() { return OrderNoStartsWith; } public QO_MainQuery setOrderNoStartsWith(String value) { this.OrderNoStartsWith = value; return this; } public String getOrderNoEndsWith() { return OrderNoEndsWith; } public QO_MainQuery setOrderNoEndsWith(String value) { this.OrderNoEndsWith = value; return this; } public String getOrderNoContains() { return OrderNoContains; } public QO_MainQuery setOrderNoContains(String value) { this.OrderNoContains = value; return this; } public String getOrderNoLike() { return OrderNoLike; } public QO_MainQuery setOrderNoLike(String value) { this.OrderNoLike = value; return this; } public ArrayList getOrderNoBetween() { return OrderNoBetween; } public QO_MainQuery setOrderNoBetween(ArrayList value) { this.OrderNoBetween = value; return this; } public ArrayList getOrderNoIn() { return OrderNoIn; } public QO_MainQuery setOrderNoIn(ArrayList value) { this.OrderNoIn = value; return this; } public String getTaxExemptNo() { return TaxExemptNo; } public QO_MainQuery setTaxExemptNo(String value) { this.TaxExemptNo = value; return this; } public String getTaxExemptNoStartsWith() { return TaxExemptNoStartsWith; } public QO_MainQuery setTaxExemptNoStartsWith(String value) { this.TaxExemptNoStartsWith = value; return this; } public String getTaxExemptNoEndsWith() { return TaxExemptNoEndsWith; } public QO_MainQuery setTaxExemptNoEndsWith(String value) { this.TaxExemptNoEndsWith = value; return this; } public String getTaxExemptNoContains() { return TaxExemptNoContains; } public QO_MainQuery setTaxExemptNoContains(String value) { this.TaxExemptNoContains = value; return this; } public String getTaxExemptNoLike() { return TaxExemptNoLike; } public QO_MainQuery setTaxExemptNoLike(String value) { this.TaxExemptNoLike = value; return this; } public ArrayList getTaxExemptNoBetween() { return TaxExemptNoBetween; } public QO_MainQuery setTaxExemptNoBetween(ArrayList value) { this.TaxExemptNoBetween = value; return this; } public ArrayList getTaxExemptNoIn() { return TaxExemptNoIn; } public QO_MainQuery setTaxExemptNoIn(ArrayList value) { this.TaxExemptNoIn = value; return this; } public Boolean isWholeSaleInvoice() { return WholeSaleInvoice; } public QO_MainQuery setWholeSaleInvoice(Boolean value) { this.WholeSaleInvoice = value; return this; } public BigDecimal getInvoiceTotal() { return InvoiceTotal; } public QO_MainQuery setInvoiceTotal(BigDecimal value) { this.InvoiceTotal = value; return this; } public BigDecimal getInvoiceTotalGreaterThanOrEqualTo() { return InvoiceTotalGreaterThanOrEqualTo; } public QO_MainQuery setInvoiceTotalGreaterThanOrEqualTo(BigDecimal value) { this.InvoiceTotalGreaterThanOrEqualTo = value; return this; } public BigDecimal getInvoiceTotalGreaterThan() { return InvoiceTotalGreaterThan; } public QO_MainQuery setInvoiceTotalGreaterThan(BigDecimal value) { this.InvoiceTotalGreaterThan = value; return this; } public BigDecimal getInvoiceTotalLessThan() { return InvoiceTotalLessThan; } public QO_MainQuery setInvoiceTotalLessThan(BigDecimal value) { this.InvoiceTotalLessThan = value; return this; } public BigDecimal getInvoiceTotalLessThanOrEqualTo() { return InvoiceTotalLessThanOrEqualTo; } public QO_MainQuery setInvoiceTotalLessThanOrEqualTo(BigDecimal value) { this.InvoiceTotalLessThanOrEqualTo = value; return this; } public BigDecimal getInvoiceTotalNotEqualTo() { return InvoiceTotalNotEqualTo; } public QO_MainQuery setInvoiceTotalNotEqualTo(BigDecimal value) { this.InvoiceTotalNotEqualTo = value; return this; } public ArrayList getInvoiceTotalBetween() { return InvoiceTotalBetween; } public QO_MainQuery setInvoiceTotalBetween(ArrayList value) { this.InvoiceTotalBetween = value; return this; } public ArrayList getInvoiceTotalIn() { return InvoiceTotalIn; } public QO_MainQuery setInvoiceTotalIn(ArrayList value) { this.InvoiceTotalIn = value; return this; } public Boolean isInvoicePrinted() { return InvoicePrinted; } public QO_MainQuery setInvoicePrinted(Boolean value) { this.InvoicePrinted = value; return this; } public Short getCurrentHistoryNo() { return CurrentHistoryNo; } public QO_MainQuery setCurrentHistoryNo(Short value) { this.CurrentHistoryNo = value; return this; } public Short getCurrentHistoryNoGreaterThanOrEqualTo() { return CurrentHistoryNoGreaterThanOrEqualTo; } public QO_MainQuery setCurrentHistoryNoGreaterThanOrEqualTo(Short value) { this.CurrentHistoryNoGreaterThanOrEqualTo = value; return this; } public Short getCurrentHistoryNoGreaterThan() { return CurrentHistoryNoGreaterThan; } public QO_MainQuery setCurrentHistoryNoGreaterThan(Short value) { this.CurrentHistoryNoGreaterThan = value; return this; } public Short getCurrentHistoryNoLessThan() { return CurrentHistoryNoLessThan; } public QO_MainQuery setCurrentHistoryNoLessThan(Short value) { this.CurrentHistoryNoLessThan = value; return this; } public Short getCurrentHistoryNoLessThanOrEqualTo() { return CurrentHistoryNoLessThanOrEqualTo; } public QO_MainQuery setCurrentHistoryNoLessThanOrEqualTo(Short value) { this.CurrentHistoryNoLessThanOrEqualTo = value; return this; } public Short getCurrentHistoryNoNotEqualTo() { return CurrentHistoryNoNotEqualTo; } public QO_MainQuery setCurrentHistoryNoNotEqualTo(Short value) { this.CurrentHistoryNoNotEqualTo = value; return this; } public ArrayList getCurrentHistoryNoBetween() { return CurrentHistoryNoBetween; } public QO_MainQuery setCurrentHistoryNoBetween(ArrayList value) { this.CurrentHistoryNoBetween = value; return this; } public ArrayList getCurrentHistoryNoIn() { return CurrentHistoryNoIn; } public QO_MainQuery setCurrentHistoryNoIn(ArrayList value) { this.CurrentHistoryNoIn = value; return this; } public Short getStatus() { return Status; } public QO_MainQuery setStatus(Short value) { this.Status = value; return this; } public Short getStatusGreaterThanOrEqualTo() { return StatusGreaterThanOrEqualTo; } public QO_MainQuery setStatusGreaterThanOrEqualTo(Short value) { this.StatusGreaterThanOrEqualTo = value; return this; } public Short getStatusGreaterThan() { return StatusGreaterThan; } public QO_MainQuery setStatusGreaterThan(Short value) { this.StatusGreaterThan = value; return this; } public Short getStatusLessThan() { return StatusLessThan; } public QO_MainQuery setStatusLessThan(Short value) { this.StatusLessThan = value; return this; } public Short getStatusLessThanOrEqualTo() { return StatusLessThanOrEqualTo; } public QO_MainQuery setStatusLessThanOrEqualTo(Short value) { this.StatusLessThanOrEqualTo = value; return this; } public Short getStatusNotEqualTo() { return StatusNotEqualTo; } public QO_MainQuery setStatusNotEqualTo(Short value) { this.StatusNotEqualTo = value; return this; } public ArrayList getStatusBetween() { return StatusBetween; } public QO_MainQuery setStatusBetween(ArrayList value) { this.StatusBetween = value; return this; } public ArrayList getStatusIn() { return StatusIn; } public QO_MainQuery setStatusIn(ArrayList value) { this.StatusIn = value; return this; } public Short getBillWhenComplete() { return BillWhenComplete; } public QO_MainQuery setBillWhenComplete(Short value) { this.BillWhenComplete = value; return this; } public Short getBillWhenCompleteGreaterThanOrEqualTo() { return BillWhenCompleteGreaterThanOrEqualTo; } public QO_MainQuery setBillWhenCompleteGreaterThanOrEqualTo(Short value) { this.BillWhenCompleteGreaterThanOrEqualTo = value; return this; } public Short getBillWhenCompleteGreaterThan() { return BillWhenCompleteGreaterThan; } public QO_MainQuery setBillWhenCompleteGreaterThan(Short value) { this.BillWhenCompleteGreaterThan = value; return this; } public Short getBillWhenCompleteLessThan() { return BillWhenCompleteLessThan; } public QO_MainQuery setBillWhenCompleteLessThan(Short value) { this.BillWhenCompleteLessThan = value; return this; } public Short getBillWhenCompleteLessThanOrEqualTo() { return BillWhenCompleteLessThanOrEqualTo; } public QO_MainQuery setBillWhenCompleteLessThanOrEqualTo(Short value) { this.BillWhenCompleteLessThanOrEqualTo = value; return this; } public Short getBillWhenCompleteNotEqualTo() { return BillWhenCompleteNotEqualTo; } public QO_MainQuery setBillWhenCompleteNotEqualTo(Short value) { this.BillWhenCompleteNotEqualTo = value; return this; } public ArrayList getBillWhenCompleteBetween() { return BillWhenCompleteBetween; } public QO_MainQuery setBillWhenCompleteBetween(ArrayList value) { this.BillWhenCompleteBetween = value; return this; } public ArrayList getBillWhenCompleteIn() { return BillWhenCompleteIn; } public QO_MainQuery setBillWhenCompleteIn(ArrayList value) { this.BillWhenCompleteIn = value; return this; } public Short getInvoiceType() { return InvoiceType; } public QO_MainQuery setInvoiceType(Short value) { this.InvoiceType = value; return this; } public Short getInvoiceTypeGreaterThanOrEqualTo() { return InvoiceTypeGreaterThanOrEqualTo; } public QO_MainQuery setInvoiceTypeGreaterThanOrEqualTo(Short value) { this.InvoiceTypeGreaterThanOrEqualTo = value; return this; } public Short getInvoiceTypeGreaterThan() { return InvoiceTypeGreaterThan; } public QO_MainQuery setInvoiceTypeGreaterThan(Short value) { this.InvoiceTypeGreaterThan = value; return this; } public Short getInvoiceTypeLessThan() { return InvoiceTypeLessThan; } public QO_MainQuery setInvoiceTypeLessThan(Short value) { this.InvoiceTypeLessThan = value; return this; } public Short getInvoiceTypeLessThanOrEqualTo() { return InvoiceTypeLessThanOrEqualTo; } public QO_MainQuery setInvoiceTypeLessThanOrEqualTo(Short value) { this.InvoiceTypeLessThanOrEqualTo = value; return this; } public Short getInvoiceTypeNotEqualTo() { return InvoiceTypeNotEqualTo; } public QO_MainQuery setInvoiceTypeNotEqualTo(Short value) { this.InvoiceTypeNotEqualTo = value; return this; } public ArrayList getInvoiceTypeBetween() { return InvoiceTypeBetween; } public QO_MainQuery setInvoiceTypeBetween(ArrayList value) { this.InvoiceTypeBetween = value; return this; } public ArrayList getInvoiceTypeIn() { return InvoiceTypeIn; } public QO_MainQuery setInvoiceTypeIn(ArrayList value) { this.InvoiceTypeIn = value; return this; } public String getGroupSupplierID() { return GroupSupplierID; } public QO_MainQuery setGroupSupplierID(String value) { this.GroupSupplierID = value; return this; } public String getGroupSupplierIDStartsWith() { return GroupSupplierIDStartsWith; } public QO_MainQuery setGroupSupplierIDStartsWith(String value) { this.GroupSupplierIDStartsWith = value; return this; } public String getGroupSupplierIDEndsWith() { return GroupSupplierIDEndsWith; } public QO_MainQuery setGroupSupplierIDEndsWith(String value) { this.GroupSupplierIDEndsWith = value; return this; } public String getGroupSupplierIDContains() { return GroupSupplierIDContains; } public QO_MainQuery setGroupSupplierIDContains(String value) { this.GroupSupplierIDContains = value; return this; } public String getGroupSupplierIDLike() { return GroupSupplierIDLike; } public QO_MainQuery setGroupSupplierIDLike(String value) { this.GroupSupplierIDLike = value; return this; } public ArrayList getGroupSupplierIDBetween() { return GroupSupplierIDBetween; } public QO_MainQuery setGroupSupplierIDBetween(ArrayList value) { this.GroupSupplierIDBetween = value; return this; } public ArrayList getGroupSupplierIDIn() { return GroupSupplierIDIn; } public QO_MainQuery setGroupSupplierIDIn(ArrayList value) { this.GroupSupplierIDIn = value; return this; } public Boolean isGroupOrdered() { return GroupOrdered; } public QO_MainQuery setGroupOrdered(Boolean value) { this.GroupOrdered = value; return this; } public String getInLogicalID() { return IN_LogicalID; } public QO_MainQuery setInLogicalID(String value) { this.IN_LogicalID = value; return this; } public String getInLogicalIDStartsWith() { return IN_LogicalIDStartsWith; } public QO_MainQuery setInLogicalIDStartsWith(String value) { this.IN_LogicalIDStartsWith = value; return this; } public String getInLogicalIDEndsWith() { return IN_LogicalIDEndsWith; } public QO_MainQuery setInLogicalIDEndsWith(String value) { this.IN_LogicalIDEndsWith = value; return this; } public String getInLogicalIDContains() { return IN_LogicalIDContains; } public QO_MainQuery setInLogicalIDContains(String value) { this.IN_LogicalIDContains = value; return this; } public String getInLogicalIDLike() { return IN_LogicalIDLike; } public QO_MainQuery setInLogicalIDLike(String value) { this.IN_LogicalIDLike = value; return this; } public ArrayList getInLogicalIDBetween() { return IN_LogicalIDBetween; } public QO_MainQuery setInLogicalIDBetween(ArrayList value) { this.IN_LogicalIDBetween = value; return this; } public ArrayList getInLogicalIDIn() { return IN_LogicalIDIn; } public QO_MainQuery setInLogicalIDIn(ArrayList value) { this.IN_LogicalIDIn = value; return this; } public String getBranchID() { return BranchID; } public QO_MainQuery setBranchID(String value) { this.BranchID = value; return this; } public String getBranchIDStartsWith() { return BranchIDStartsWith; } public QO_MainQuery setBranchIDStartsWith(String value) { this.BranchIDStartsWith = value; return this; } public String getBranchIDEndsWith() { return BranchIDEndsWith; } public QO_MainQuery setBranchIDEndsWith(String value) { this.BranchIDEndsWith = value; return this; } public String getBranchIDContains() { return BranchIDContains; } public QO_MainQuery setBranchIDContains(String value) { this.BranchIDContains = value; return this; } public String getBranchIDLike() { return BranchIDLike; } public QO_MainQuery setBranchIDLike(String value) { this.BranchIDLike = value; return this; } public ArrayList getBranchIDBetween() { return BranchIDBetween; } public QO_MainQuery setBranchIDBetween(ArrayList value) { this.BranchIDBetween = value; return this; } public ArrayList getBranchIDIn() { return BranchIDIn; } public QO_MainQuery setBranchIDIn(ArrayList value) { this.BranchIDIn = value; return this; } public String getQoReference() { return QOReference; } public QO_MainQuery setQoReference(String value) { this.QOReference = value; return this; } public String getQoReferenceStartsWith() { return QOReferenceStartsWith; } public QO_MainQuery setQoReferenceStartsWith(String value) { this.QOReferenceStartsWith = value; return this; } public String getQoReferenceEndsWith() { return QOReferenceEndsWith; } public QO_MainQuery setQoReferenceEndsWith(String value) { this.QOReferenceEndsWith = value; return this; } public String getQoReferenceContains() { return QOReferenceContains; } public QO_MainQuery setQoReferenceContains(String value) { this.QOReferenceContains = value; return this; } public String getQoReferenceLike() { return QOReferenceLike; } public QO_MainQuery setQoReferenceLike(String value) { this.QOReferenceLike = value; return this; } public ArrayList getQoReferenceBetween() { return QOReferenceBetween; } public QO_MainQuery setQoReferenceBetween(ArrayList value) { this.QOReferenceBetween = value; return this; } public ArrayList getQoReferenceIn() { return QOReferenceIn; } public QO_MainQuery setQoReferenceIn(ArrayList value) { this.QOReferenceIn = value; return this; } public String getJobCostID() { return JobCostID; } public QO_MainQuery setJobCostID(String value) { this.JobCostID = value; return this; } public String getJobCostIDStartsWith() { return JobCostIDStartsWith; } public QO_MainQuery setJobCostIDStartsWith(String value) { this.JobCostIDStartsWith = value; return this; } public String getJobCostIDEndsWith() { return JobCostIDEndsWith; } public QO_MainQuery setJobCostIDEndsWith(String value) { this.JobCostIDEndsWith = value; return this; } public String getJobCostIDContains() { return JobCostIDContains; } public QO_MainQuery setJobCostIDContains(String value) { this.JobCostIDContains = value; return this; } public String getJobCostIDLike() { return JobCostIDLike; } public QO_MainQuery setJobCostIDLike(String value) { this.JobCostIDLike = value; return this; } public ArrayList getJobCostIDBetween() { return JobCostIDBetween; } public QO_MainQuery setJobCostIDBetween(ArrayList value) { this.JobCostIDBetween = value; return this; } public ArrayList getJobCostIDIn() { return JobCostIDIn; } public QO_MainQuery setJobCostIDIn(ArrayList value) { this.JobCostIDIn = value; return this; } public Integer getDocType() { return DocType; } public QO_MainQuery setDocType(Integer value) { this.DocType = value; return this; } public Integer getDocTypeGreaterThanOrEqualTo() { return DocTypeGreaterThanOrEqualTo; } public QO_MainQuery setDocTypeGreaterThanOrEqualTo(Integer value) { this.DocTypeGreaterThanOrEqualTo = value; return this; } public Integer getDocTypeGreaterThan() { return DocTypeGreaterThan; } public QO_MainQuery setDocTypeGreaterThan(Integer value) { this.DocTypeGreaterThan = value; return this; } public Integer getDocTypeLessThan() { return DocTypeLessThan; } public QO_MainQuery setDocTypeLessThan(Integer value) { this.DocTypeLessThan = value; return this; } public Integer getDocTypeLessThanOrEqualTo() { return DocTypeLessThanOrEqualTo; } public QO_MainQuery setDocTypeLessThanOrEqualTo(Integer value) { this.DocTypeLessThanOrEqualTo = value; return this; } public Integer getDocTypeNotEqualTo() { return DocTypeNotEqualTo; } public QO_MainQuery setDocTypeNotEqualTo(Integer value) { this.DocTypeNotEqualTo = value; return this; } public ArrayList getDocTypeBetween() { return DocTypeBetween; } public QO_MainQuery setDocTypeBetween(ArrayList value) { this.DocTypeBetween = value; return this; } public ArrayList getDocTypeIn() { return DocTypeIn; } public QO_MainQuery setDocTypeIn(ArrayList value) { this.DocTypeIn = value; return this; } public Short getBackOrderMode() { return BackOrderMode; } public QO_MainQuery setBackOrderMode(Short value) { this.BackOrderMode = value; return this; } public Short getBackOrderModeGreaterThanOrEqualTo() { return BackOrderModeGreaterThanOrEqualTo; } public QO_MainQuery setBackOrderModeGreaterThanOrEqualTo(Short value) { this.BackOrderModeGreaterThanOrEqualTo = value; return this; } public Short getBackOrderModeGreaterThan() { return BackOrderModeGreaterThan; } public QO_MainQuery setBackOrderModeGreaterThan(Short value) { this.BackOrderModeGreaterThan = value; return this; } public Short getBackOrderModeLessThan() { return BackOrderModeLessThan; } public QO_MainQuery setBackOrderModeLessThan(Short value) { this.BackOrderModeLessThan = value; return this; } public Short getBackOrderModeLessThanOrEqualTo() { return BackOrderModeLessThanOrEqualTo; } public QO_MainQuery setBackOrderModeLessThanOrEqualTo(Short value) { this.BackOrderModeLessThanOrEqualTo = value; return this; } public Short getBackOrderModeNotEqualTo() { return BackOrderModeNotEqualTo; } public QO_MainQuery setBackOrderModeNotEqualTo(Short value) { this.BackOrderModeNotEqualTo = value; return this; } public ArrayList getBackOrderModeBetween() { return BackOrderModeBetween; } public QO_MainQuery setBackOrderModeBetween(ArrayList value) { this.BackOrderModeBetween = value; return this; } public ArrayList getBackOrderModeIn() { return BackOrderModeIn; } public QO_MainQuery setBackOrderModeIn(ArrayList value) { this.BackOrderModeIn = value; return this; } public Date getExpectedDeliveryDate() { return ExpectedDeliveryDate; } public QO_MainQuery setExpectedDeliveryDate(Date value) { this.ExpectedDeliveryDate = value; return this; } public Date getExpectedDeliveryDateGreaterThanOrEqualTo() { return ExpectedDeliveryDateGreaterThanOrEqualTo; } public QO_MainQuery setExpectedDeliveryDateGreaterThanOrEqualTo(Date value) { this.ExpectedDeliveryDateGreaterThanOrEqualTo = value; return this; } public Date getExpectedDeliveryDateGreaterThan() { return ExpectedDeliveryDateGreaterThan; } public QO_MainQuery setExpectedDeliveryDateGreaterThan(Date value) { this.ExpectedDeliveryDateGreaterThan = value; return this; } public Date getExpectedDeliveryDateLessThan() { return ExpectedDeliveryDateLessThan; } public QO_MainQuery setExpectedDeliveryDateLessThan(Date value) { this.ExpectedDeliveryDateLessThan = value; return this; } public Date getExpectedDeliveryDateLessThanOrEqualTo() { return ExpectedDeliveryDateLessThanOrEqualTo; } public QO_MainQuery setExpectedDeliveryDateLessThanOrEqualTo(Date value) { this.ExpectedDeliveryDateLessThanOrEqualTo = value; return this; } public Date getExpectedDeliveryDateNotEqualTo() { return ExpectedDeliveryDateNotEqualTo; } public QO_MainQuery setExpectedDeliveryDateNotEqualTo(Date value) { this.ExpectedDeliveryDateNotEqualTo = value; return this; } public ArrayList getExpectedDeliveryDateBetween() { return ExpectedDeliveryDateBetween; } public QO_MainQuery setExpectedDeliveryDateBetween(ArrayList value) { this.ExpectedDeliveryDateBetween = value; return this; } public ArrayList getExpectedDeliveryDateIn() { return ExpectedDeliveryDateIn; } public QO_MainQuery setExpectedDeliveryDateIn(ArrayList value) { this.ExpectedDeliveryDateIn = value; return this; } public String getDebtorContactName() { return DebtorContactName; } public QO_MainQuery setDebtorContactName(String value) { this.DebtorContactName = value; return this; } public String getDebtorContactNameStartsWith() { return DebtorContactNameStartsWith; } public QO_MainQuery setDebtorContactNameStartsWith(String value) { this.DebtorContactNameStartsWith = value; return this; } public String getDebtorContactNameEndsWith() { return DebtorContactNameEndsWith; } public QO_MainQuery setDebtorContactNameEndsWith(String value) { this.DebtorContactNameEndsWith = value; return this; } public String getDebtorContactNameContains() { return DebtorContactNameContains; } public QO_MainQuery setDebtorContactNameContains(String value) { this.DebtorContactNameContains = value; return this; } public String getDebtorContactNameLike() { return DebtorContactNameLike; } public QO_MainQuery setDebtorContactNameLike(String value) { this.DebtorContactNameLike = value; return this; } public ArrayList getDebtorContactNameBetween() { return DebtorContactNameBetween; } public QO_MainQuery setDebtorContactNameBetween(ArrayList value) { this.DebtorContactNameBetween = value; return this; } public ArrayList getDebtorContactNameIn() { return DebtorContactNameIn; } public QO_MainQuery setDebtorContactNameIn(ArrayList value) { this.DebtorContactNameIn = value; return this; } public String getParentDebtorID() { return ParentDebtorID; } public QO_MainQuery setParentDebtorID(String value) { this.ParentDebtorID = value; return this; } public String getParentDebtorIDStartsWith() { return ParentDebtorIDStartsWith; } public QO_MainQuery setParentDebtorIDStartsWith(String value) { this.ParentDebtorIDStartsWith = value; return this; } public String getParentDebtorIDEndsWith() { return ParentDebtorIDEndsWith; } public QO_MainQuery setParentDebtorIDEndsWith(String value) { this.ParentDebtorIDEndsWith = value; return this; } public String getParentDebtorIDContains() { return ParentDebtorIDContains; } public QO_MainQuery setParentDebtorIDContains(String value) { this.ParentDebtorIDContains = value; return this; } public String getParentDebtorIDLike() { return ParentDebtorIDLike; } public QO_MainQuery setParentDebtorIDLike(String value) { this.ParentDebtorIDLike = value; return this; } public ArrayList getParentDebtorIDBetween() { return ParentDebtorIDBetween; } public QO_MainQuery setParentDebtorIDBetween(ArrayList value) { this.ParentDebtorIDBetween = value; return this; } public ArrayList getParentDebtorIDIn() { return ParentDebtorIDIn; } public QO_MainQuery setParentDebtorIDIn(ArrayList value) { this.ParentDebtorIDIn = value; return this; } public String getPriceSchemeID() { return PriceSchemeID; } public QO_MainQuery setPriceSchemeID(String value) { this.PriceSchemeID = value; return this; } public String getPriceSchemeIDStartsWith() { return PriceSchemeIDStartsWith; } public QO_MainQuery setPriceSchemeIDStartsWith(String value) { this.PriceSchemeIDStartsWith = value; return this; } public String getPriceSchemeIDEndsWith() { return PriceSchemeIDEndsWith; } public QO_MainQuery setPriceSchemeIDEndsWith(String value) { this.PriceSchemeIDEndsWith = value; return this; } public String getPriceSchemeIDContains() { return PriceSchemeIDContains; } public QO_MainQuery setPriceSchemeIDContains(String value) { this.PriceSchemeIDContains = value; return this; } public String getPriceSchemeIDLike() { return PriceSchemeIDLike; } public QO_MainQuery setPriceSchemeIDLike(String value) { this.PriceSchemeIDLike = value; return this; } public ArrayList getPriceSchemeIDBetween() { return PriceSchemeIDBetween; } public QO_MainQuery setPriceSchemeIDBetween(ArrayList value) { this.PriceSchemeIDBetween = value; return this; } public ArrayList getPriceSchemeIDIn() { return PriceSchemeIDIn; } public QO_MainQuery setPriceSchemeIDIn(ArrayList value) { this.PriceSchemeIDIn = value; return this; } public Boolean isInvoiceEmailed() { return InvoiceEmailed; } public QO_MainQuery setInvoiceEmailed(Boolean value) { this.InvoiceEmailed = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class QO_NotesQuery extends QueryDb implements IReturn> { public String RecID = null; public String RecIDStartsWith = null; public String RecIDEndsWith = null; public String RecIDContains = null; public String RecIDLike = null; public ArrayList RecIDBetween = null; public ArrayList RecIDIn = null; public String InvoiceID = null; public String InvoiceIDStartsWith = null; public String InvoiceIDEndsWith = null; public String InvoiceIDContains = null; public String InvoiceIDLike = null; public ArrayList InvoiceIDBetween = null; public ArrayList InvoiceIDIn = null; public String NoteTypeID = null; public String NoteTypeIDStartsWith = null; public String NoteTypeIDEndsWith = null; public String NoteTypeIDContains = null; public String NoteTypeIDLike = null; public ArrayList NoteTypeIDBetween = null; public ArrayList NoteTypeIDIn = null; public Date LastSavedDateTime = null; public Date LastSavedDateTimeGreaterThanOrEqualTo = null; public Date LastSavedDateTimeGreaterThan = null; public Date LastSavedDateTimeLessThan = null; public Date LastSavedDateTimeLessThanOrEqualTo = null; public Date LastSavedDateTimeNotEqualTo = null; public ArrayList LastSavedDateTimeBetween = null; public ArrayList LastSavedDateTimeIn = null; public String LastSavedByStaffID = null; public String LastSavedByStaffIDStartsWith = null; public String LastSavedByStaffIDEndsWith = null; public String LastSavedByStaffIDContains = null; public String LastSavedByStaffIDLike = null; public ArrayList LastSavedByStaffIDBetween = null; public ArrayList LastSavedByStaffIDIn = null; public String NoteText = null; public String NoteTextStartsWith = null; public String NoteTextEndsWith = null; public String NoteTextContains = null; public String NoteTextLike = null; public ArrayList NoteTextBetween = null; public ArrayList NoteTextIn = null; public Integer ItemNo = null; public Integer ItemNoGreaterThanOrEqualTo = null; public Integer ItemNoGreaterThan = null; public Integer ItemNoLessThan = null; public Integer ItemNoLessThanOrEqualTo = null; public Integer ItemNoNotEqualTo = null; public ArrayList ItemNoBetween = null; public ArrayList ItemNoIn = null; public String getRecID() { return RecID; } public QO_NotesQuery setRecID(String value) { this.RecID = value; return this; } public String getRecIDStartsWith() { return RecIDStartsWith; } public QO_NotesQuery setRecIDStartsWith(String value) { this.RecIDStartsWith = value; return this; } public String getRecIDEndsWith() { return RecIDEndsWith; } public QO_NotesQuery setRecIDEndsWith(String value) { this.RecIDEndsWith = value; return this; } public String getRecIDContains() { return RecIDContains; } public QO_NotesQuery setRecIDContains(String value) { this.RecIDContains = value; return this; } public String getRecIDLike() { return RecIDLike; } public QO_NotesQuery setRecIDLike(String value) { this.RecIDLike = value; return this; } public ArrayList getRecIDBetween() { return RecIDBetween; } public QO_NotesQuery setRecIDBetween(ArrayList value) { this.RecIDBetween = value; return this; } public ArrayList getRecIDIn() { return RecIDIn; } public QO_NotesQuery setRecIDIn(ArrayList value) { this.RecIDIn = value; return this; } public String getInvoiceID() { return InvoiceID; } public QO_NotesQuery setInvoiceID(String value) { this.InvoiceID = value; return this; } public String getInvoiceIDStartsWith() { return InvoiceIDStartsWith; } public QO_NotesQuery setInvoiceIDStartsWith(String value) { this.InvoiceIDStartsWith = value; return this; } public String getInvoiceIDEndsWith() { return InvoiceIDEndsWith; } public QO_NotesQuery setInvoiceIDEndsWith(String value) { this.InvoiceIDEndsWith = value; return this; } public String getInvoiceIDContains() { return InvoiceIDContains; } public QO_NotesQuery setInvoiceIDContains(String value) { this.InvoiceIDContains = value; return this; } public String getInvoiceIDLike() { return InvoiceIDLike; } public QO_NotesQuery setInvoiceIDLike(String value) { this.InvoiceIDLike = value; return this; } public ArrayList getInvoiceIDBetween() { return InvoiceIDBetween; } public QO_NotesQuery setInvoiceIDBetween(ArrayList value) { this.InvoiceIDBetween = value; return this; } public ArrayList getInvoiceIDIn() { return InvoiceIDIn; } public QO_NotesQuery setInvoiceIDIn(ArrayList value) { this.InvoiceIDIn = value; return this; } public String getNoteTypeID() { return NoteTypeID; } public QO_NotesQuery setNoteTypeID(String value) { this.NoteTypeID = value; return this; } public String getNoteTypeIDStartsWith() { return NoteTypeIDStartsWith; } public QO_NotesQuery setNoteTypeIDStartsWith(String value) { this.NoteTypeIDStartsWith = value; return this; } public String getNoteTypeIDEndsWith() { return NoteTypeIDEndsWith; } public QO_NotesQuery setNoteTypeIDEndsWith(String value) { this.NoteTypeIDEndsWith = value; return this; } public String getNoteTypeIDContains() { return NoteTypeIDContains; } public QO_NotesQuery setNoteTypeIDContains(String value) { this.NoteTypeIDContains = value; return this; } public String getNoteTypeIDLike() { return NoteTypeIDLike; } public QO_NotesQuery setNoteTypeIDLike(String value) { this.NoteTypeIDLike = value; return this; } public ArrayList getNoteTypeIDBetween() { return NoteTypeIDBetween; } public QO_NotesQuery setNoteTypeIDBetween(ArrayList value) { this.NoteTypeIDBetween = value; return this; } public ArrayList getNoteTypeIDIn() { return NoteTypeIDIn; } public QO_NotesQuery setNoteTypeIDIn(ArrayList value) { this.NoteTypeIDIn = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public QO_NotesQuery setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getLastSavedDateTimeGreaterThanOrEqualTo() { return LastSavedDateTimeGreaterThanOrEqualTo; } public QO_NotesQuery setLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.LastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeGreaterThan() { return LastSavedDateTimeGreaterThan; } public QO_NotesQuery setLastSavedDateTimeGreaterThan(Date value) { this.LastSavedDateTimeGreaterThan = value; return this; } public Date getLastSavedDateTimeLessThan() { return LastSavedDateTimeLessThan; } public QO_NotesQuery setLastSavedDateTimeLessThan(Date value) { this.LastSavedDateTimeLessThan = value; return this; } public Date getLastSavedDateTimeLessThanOrEqualTo() { return LastSavedDateTimeLessThanOrEqualTo; } public QO_NotesQuery setLastSavedDateTimeLessThanOrEqualTo(Date value) { this.LastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeNotEqualTo() { return LastSavedDateTimeNotEqualTo; } public QO_NotesQuery setLastSavedDateTimeNotEqualTo(Date value) { this.LastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getLastSavedDateTimeBetween() { return LastSavedDateTimeBetween; } public QO_NotesQuery setLastSavedDateTimeBetween(ArrayList value) { this.LastSavedDateTimeBetween = value; return this; } public ArrayList getLastSavedDateTimeIn() { return LastSavedDateTimeIn; } public QO_NotesQuery setLastSavedDateTimeIn(ArrayList value) { this.LastSavedDateTimeIn = value; return this; } public String getLastSavedByStaffID() { return LastSavedByStaffID; } public QO_NotesQuery setLastSavedByStaffID(String value) { this.LastSavedByStaffID = value; return this; } public String getLastSavedByStaffIDStartsWith() { return LastSavedByStaffIDStartsWith; } public QO_NotesQuery setLastSavedByStaffIDStartsWith(String value) { this.LastSavedByStaffIDStartsWith = value; return this; } public String getLastSavedByStaffIDEndsWith() { return LastSavedByStaffIDEndsWith; } public QO_NotesQuery setLastSavedByStaffIDEndsWith(String value) { this.LastSavedByStaffIDEndsWith = value; return this; } public String getLastSavedByStaffIDContains() { return LastSavedByStaffIDContains; } public QO_NotesQuery setLastSavedByStaffIDContains(String value) { this.LastSavedByStaffIDContains = value; return this; } public String getLastSavedByStaffIDLike() { return LastSavedByStaffIDLike; } public QO_NotesQuery setLastSavedByStaffIDLike(String value) { this.LastSavedByStaffIDLike = value; return this; } public ArrayList getLastSavedByStaffIDBetween() { return LastSavedByStaffIDBetween; } public QO_NotesQuery setLastSavedByStaffIDBetween(ArrayList value) { this.LastSavedByStaffIDBetween = value; return this; } public ArrayList getLastSavedByStaffIDIn() { return LastSavedByStaffIDIn; } public QO_NotesQuery setLastSavedByStaffIDIn(ArrayList value) { this.LastSavedByStaffIDIn = value; return this; } public String getNoteText() { return NoteText; } public QO_NotesQuery setNoteText(String value) { this.NoteText = value; return this; } public String getNoteTextStartsWith() { return NoteTextStartsWith; } public QO_NotesQuery setNoteTextStartsWith(String value) { this.NoteTextStartsWith = value; return this; } public String getNoteTextEndsWith() { return NoteTextEndsWith; } public QO_NotesQuery setNoteTextEndsWith(String value) { this.NoteTextEndsWith = value; return this; } public String getNoteTextContains() { return NoteTextContains; } public QO_NotesQuery setNoteTextContains(String value) { this.NoteTextContains = value; return this; } public String getNoteTextLike() { return NoteTextLike; } public QO_NotesQuery setNoteTextLike(String value) { this.NoteTextLike = value; return this; } public ArrayList getNoteTextBetween() { return NoteTextBetween; } public QO_NotesQuery setNoteTextBetween(ArrayList value) { this.NoteTextBetween = value; return this; } public ArrayList getNoteTextIn() { return NoteTextIn; } public QO_NotesQuery setNoteTextIn(ArrayList value) { this.NoteTextIn = value; return this; } public Integer getItemNo() { return ItemNo; } public QO_NotesQuery setItemNo(Integer value) { this.ItemNo = value; return this; } public Integer getItemNoGreaterThanOrEqualTo() { return ItemNoGreaterThanOrEqualTo; } public QO_NotesQuery setItemNoGreaterThanOrEqualTo(Integer value) { this.ItemNoGreaterThanOrEqualTo = value; return this; } public Integer getItemNoGreaterThan() { return ItemNoGreaterThan; } public QO_NotesQuery setItemNoGreaterThan(Integer value) { this.ItemNoGreaterThan = value; return this; } public Integer getItemNoLessThan() { return ItemNoLessThan; } public QO_NotesQuery setItemNoLessThan(Integer value) { this.ItemNoLessThan = value; return this; } public Integer getItemNoLessThanOrEqualTo() { return ItemNoLessThanOrEqualTo; } public QO_NotesQuery setItemNoLessThanOrEqualTo(Integer value) { this.ItemNoLessThanOrEqualTo = value; return this; } public Integer getItemNoNotEqualTo() { return ItemNoNotEqualTo; } public QO_NotesQuery setItemNoNotEqualTo(Integer value) { this.ItemNoNotEqualTo = value; return this; } public ArrayList getItemNoBetween() { return ItemNoBetween; } public QO_NotesQuery setItemNoBetween(ArrayList value) { this.ItemNoBetween = value; return this; } public ArrayList getItemNoIn() { return ItemNoIn; } public QO_NotesQuery setItemNoIn(ArrayList value) { this.ItemNoIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class QO_OpportunityStatusReasonsQuery extends QueryDb implements IReturn> { public String RecID = null; public String RecIDStartsWith = null; public String RecIDEndsWith = null; public String RecIDContains = null; public String RecIDLike = null; public ArrayList RecIDBetween = null; public ArrayList RecIDIn = null; public Date LastSavedDateTime = null; public Date LastSavedDateTimeGreaterThanOrEqualTo = null; public Date LastSavedDateTimeGreaterThan = null; public Date LastSavedDateTimeLessThan = null; public Date LastSavedDateTimeLessThanOrEqualTo = null; public Date LastSavedDateTimeNotEqualTo = null; public ArrayList LastSavedDateTimeBetween = null; public ArrayList LastSavedDateTimeIn = null; public Integer DisplayOrder = null; public Integer DisplayOrderGreaterThanOrEqualTo = null; public Integer DisplayOrderGreaterThan = null; public Integer DisplayOrderLessThan = null; public Integer DisplayOrderLessThanOrEqualTo = null; public Integer DisplayOrderNotEqualTo = null; public ArrayList DisplayOrderBetween = null; public ArrayList DisplayOrderIn = null; public String Description = null; public String DescriptionStartsWith = null; public String DescriptionEndsWith = null; public String DescriptionContains = null; public String DescriptionLike = null; public ArrayList DescriptionBetween = null; public ArrayList DescriptionIn = null; public Short OpportunityStatusType = null; public Short OpportunityStatusTypeGreaterThanOrEqualTo = null; public Short OpportunityStatusTypeGreaterThan = null; public Short OpportunityStatusTypeLessThan = null; public Short OpportunityStatusTypeLessThanOrEqualTo = null; public Short OpportunityStatusTypeNotEqualTo = null; public ArrayList OpportunityStatusTypeBetween = null; public ArrayList OpportunityStatusTypeIn = null; public String Note = null; public String NoteStartsWith = null; public String NoteEndsWith = null; public String NoteContains = null; public String NoteLike = null; public ArrayList NoteBetween = null; public ArrayList NoteIn = null; public Boolean DefaultOpportunityReason = null; public Boolean IsEnabled = null; public String getRecID() { return RecID; } public QO_OpportunityStatusReasonsQuery setRecID(String value) { this.RecID = value; return this; } public String getRecIDStartsWith() { return RecIDStartsWith; } public QO_OpportunityStatusReasonsQuery setRecIDStartsWith(String value) { this.RecIDStartsWith = value; return this; } public String getRecIDEndsWith() { return RecIDEndsWith; } public QO_OpportunityStatusReasonsQuery setRecIDEndsWith(String value) { this.RecIDEndsWith = value; return this; } public String getRecIDContains() { return RecIDContains; } public QO_OpportunityStatusReasonsQuery setRecIDContains(String value) { this.RecIDContains = value; return this; } public String getRecIDLike() { return RecIDLike; } public QO_OpportunityStatusReasonsQuery setRecIDLike(String value) { this.RecIDLike = value; return this; } public ArrayList getRecIDBetween() { return RecIDBetween; } public QO_OpportunityStatusReasonsQuery setRecIDBetween(ArrayList value) { this.RecIDBetween = value; return this; } public ArrayList getRecIDIn() { return RecIDIn; } public QO_OpportunityStatusReasonsQuery setRecIDIn(ArrayList value) { this.RecIDIn = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public QO_OpportunityStatusReasonsQuery setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getLastSavedDateTimeGreaterThanOrEqualTo() { return LastSavedDateTimeGreaterThanOrEqualTo; } public QO_OpportunityStatusReasonsQuery setLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.LastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeGreaterThan() { return LastSavedDateTimeGreaterThan; } public QO_OpportunityStatusReasonsQuery setLastSavedDateTimeGreaterThan(Date value) { this.LastSavedDateTimeGreaterThan = value; return this; } public Date getLastSavedDateTimeLessThan() { return LastSavedDateTimeLessThan; } public QO_OpportunityStatusReasonsQuery setLastSavedDateTimeLessThan(Date value) { this.LastSavedDateTimeLessThan = value; return this; } public Date getLastSavedDateTimeLessThanOrEqualTo() { return LastSavedDateTimeLessThanOrEqualTo; } public QO_OpportunityStatusReasonsQuery setLastSavedDateTimeLessThanOrEqualTo(Date value) { this.LastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeNotEqualTo() { return LastSavedDateTimeNotEqualTo; } public QO_OpportunityStatusReasonsQuery setLastSavedDateTimeNotEqualTo(Date value) { this.LastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getLastSavedDateTimeBetween() { return LastSavedDateTimeBetween; } public QO_OpportunityStatusReasonsQuery setLastSavedDateTimeBetween(ArrayList value) { this.LastSavedDateTimeBetween = value; return this; } public ArrayList getLastSavedDateTimeIn() { return LastSavedDateTimeIn; } public QO_OpportunityStatusReasonsQuery setLastSavedDateTimeIn(ArrayList value) { this.LastSavedDateTimeIn = value; return this; } public Integer getDisplayOrder() { return DisplayOrder; } public QO_OpportunityStatusReasonsQuery setDisplayOrder(Integer value) { this.DisplayOrder = value; return this; } public Integer getDisplayOrderGreaterThanOrEqualTo() { return DisplayOrderGreaterThanOrEqualTo; } public QO_OpportunityStatusReasonsQuery setDisplayOrderGreaterThanOrEqualTo(Integer value) { this.DisplayOrderGreaterThanOrEqualTo = value; return this; } public Integer getDisplayOrderGreaterThan() { return DisplayOrderGreaterThan; } public QO_OpportunityStatusReasonsQuery setDisplayOrderGreaterThan(Integer value) { this.DisplayOrderGreaterThan = value; return this; } public Integer getDisplayOrderLessThan() { return DisplayOrderLessThan; } public QO_OpportunityStatusReasonsQuery setDisplayOrderLessThan(Integer value) { this.DisplayOrderLessThan = value; return this; } public Integer getDisplayOrderLessThanOrEqualTo() { return DisplayOrderLessThanOrEqualTo; } public QO_OpportunityStatusReasonsQuery setDisplayOrderLessThanOrEqualTo(Integer value) { this.DisplayOrderLessThanOrEqualTo = value; return this; } public Integer getDisplayOrderNotEqualTo() { return DisplayOrderNotEqualTo; } public QO_OpportunityStatusReasonsQuery setDisplayOrderNotEqualTo(Integer value) { this.DisplayOrderNotEqualTo = value; return this; } public ArrayList getDisplayOrderBetween() { return DisplayOrderBetween; } public QO_OpportunityStatusReasonsQuery setDisplayOrderBetween(ArrayList value) { this.DisplayOrderBetween = value; return this; } public ArrayList getDisplayOrderIn() { return DisplayOrderIn; } public QO_OpportunityStatusReasonsQuery setDisplayOrderIn(ArrayList value) { this.DisplayOrderIn = value; return this; } public String getDescription() { return Description; } public QO_OpportunityStatusReasonsQuery setDescription(String value) { this.Description = value; return this; } public String getDescriptionStartsWith() { return DescriptionStartsWith; } public QO_OpportunityStatusReasonsQuery setDescriptionStartsWith(String value) { this.DescriptionStartsWith = value; return this; } public String getDescriptionEndsWith() { return DescriptionEndsWith; } public QO_OpportunityStatusReasonsQuery setDescriptionEndsWith(String value) { this.DescriptionEndsWith = value; return this; } public String getDescriptionContains() { return DescriptionContains; } public QO_OpportunityStatusReasonsQuery setDescriptionContains(String value) { this.DescriptionContains = value; return this; } public String getDescriptionLike() { return DescriptionLike; } public QO_OpportunityStatusReasonsQuery setDescriptionLike(String value) { this.DescriptionLike = value; return this; } public ArrayList getDescriptionBetween() { return DescriptionBetween; } public QO_OpportunityStatusReasonsQuery setDescriptionBetween(ArrayList value) { this.DescriptionBetween = value; return this; } public ArrayList getDescriptionIn() { return DescriptionIn; } public QO_OpportunityStatusReasonsQuery setDescriptionIn(ArrayList value) { this.DescriptionIn = value; return this; } public Short getOpportunityStatusType() { return OpportunityStatusType; } public QO_OpportunityStatusReasonsQuery setOpportunityStatusType(Short value) { this.OpportunityStatusType = value; return this; } public Short getOpportunityStatusTypeGreaterThanOrEqualTo() { return OpportunityStatusTypeGreaterThanOrEqualTo; } public QO_OpportunityStatusReasonsQuery setOpportunityStatusTypeGreaterThanOrEqualTo(Short value) { this.OpportunityStatusTypeGreaterThanOrEqualTo = value; return this; } public Short getOpportunityStatusTypeGreaterThan() { return OpportunityStatusTypeGreaterThan; } public QO_OpportunityStatusReasonsQuery setOpportunityStatusTypeGreaterThan(Short value) { this.OpportunityStatusTypeGreaterThan = value; return this; } public Short getOpportunityStatusTypeLessThan() { return OpportunityStatusTypeLessThan; } public QO_OpportunityStatusReasonsQuery setOpportunityStatusTypeLessThan(Short value) { this.OpportunityStatusTypeLessThan = value; return this; } public Short getOpportunityStatusTypeLessThanOrEqualTo() { return OpportunityStatusTypeLessThanOrEqualTo; } public QO_OpportunityStatusReasonsQuery setOpportunityStatusTypeLessThanOrEqualTo(Short value) { this.OpportunityStatusTypeLessThanOrEqualTo = value; return this; } public Short getOpportunityStatusTypeNotEqualTo() { return OpportunityStatusTypeNotEqualTo; } public QO_OpportunityStatusReasonsQuery setOpportunityStatusTypeNotEqualTo(Short value) { this.OpportunityStatusTypeNotEqualTo = value; return this; } public ArrayList getOpportunityStatusTypeBetween() { return OpportunityStatusTypeBetween; } public QO_OpportunityStatusReasonsQuery setOpportunityStatusTypeBetween(ArrayList value) { this.OpportunityStatusTypeBetween = value; return this; } public ArrayList getOpportunityStatusTypeIn() { return OpportunityStatusTypeIn; } public QO_OpportunityStatusReasonsQuery setOpportunityStatusTypeIn(ArrayList value) { this.OpportunityStatusTypeIn = value; return this; } public String getNote() { return Note; } public QO_OpportunityStatusReasonsQuery setNote(String value) { this.Note = value; return this; } public String getNoteStartsWith() { return NoteStartsWith; } public QO_OpportunityStatusReasonsQuery setNoteStartsWith(String value) { this.NoteStartsWith = value; return this; } public String getNoteEndsWith() { return NoteEndsWith; } public QO_OpportunityStatusReasonsQuery setNoteEndsWith(String value) { this.NoteEndsWith = value; return this; } public String getNoteContains() { return NoteContains; } public QO_OpportunityStatusReasonsQuery setNoteContains(String value) { this.NoteContains = value; return this; } public String getNoteLike() { return NoteLike; } public QO_OpportunityStatusReasonsQuery setNoteLike(String value) { this.NoteLike = value; return this; } public ArrayList getNoteBetween() { return NoteBetween; } public QO_OpportunityStatusReasonsQuery setNoteBetween(ArrayList value) { this.NoteBetween = value; return this; } public ArrayList getNoteIn() { return NoteIn; } public QO_OpportunityStatusReasonsQuery setNoteIn(ArrayList value) { this.NoteIn = value; return this; } public Boolean isDefaultOpportunityReason() { return DefaultOpportunityReason; } public QO_OpportunityStatusReasonsQuery setDefaultOpportunityReason(Boolean value) { this.DefaultOpportunityReason = value; return this; } public Boolean getIsEnabled() { return IsEnabled; } public QO_OpportunityStatusReasonsQuery setIsEnabled(Boolean value) { this.IsEnabled = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class QO_SalesStagesQuery extends QueryDb implements IReturn> { public String RecID = null; public String RecIDStartsWith = null; public String RecIDEndsWith = null; public String RecIDContains = null; public String RecIDLike = null; public ArrayList RecIDBetween = null; public ArrayList RecIDIn = null; public Date LastSavedDateTime = null; public Date LastSavedDateTimeGreaterThanOrEqualTo = null; public Date LastSavedDateTimeGreaterThan = null; public Date LastSavedDateTimeLessThan = null; public Date LastSavedDateTimeLessThanOrEqualTo = null; public Date LastSavedDateTimeNotEqualTo = null; public ArrayList LastSavedDateTimeBetween = null; public ArrayList LastSavedDateTimeIn = null; public Integer DisplayOrder = null; public Integer DisplayOrderGreaterThanOrEqualTo = null; public Integer DisplayOrderGreaterThan = null; public Integer DisplayOrderLessThan = null; public Integer DisplayOrderLessThanOrEqualTo = null; public Integer DisplayOrderNotEqualTo = null; public ArrayList DisplayOrderBetween = null; public ArrayList DisplayOrderIn = null; public String Description = null; public String DescriptionStartsWith = null; public String DescriptionEndsWith = null; public String DescriptionContains = null; public String DescriptionLike = null; public ArrayList DescriptionBetween = null; public ArrayList DescriptionIn = null; public Integer PercentComplete = null; public Integer PercentCompleteGreaterThanOrEqualTo = null; public Integer PercentCompleteGreaterThan = null; public Integer PercentCompleteLessThan = null; public Integer PercentCompleteLessThanOrEqualTo = null; public Integer PercentCompleteNotEqualTo = null; public ArrayList PercentCompleteBetween = null; public ArrayList PercentCompleteIn = null; public Boolean DefaultSalesStage = null; public Boolean IsEnabled = null; public String getRecID() { return RecID; } public QO_SalesStagesQuery setRecID(String value) { this.RecID = value; return this; } public String getRecIDStartsWith() { return RecIDStartsWith; } public QO_SalesStagesQuery setRecIDStartsWith(String value) { this.RecIDStartsWith = value; return this; } public String getRecIDEndsWith() { return RecIDEndsWith; } public QO_SalesStagesQuery setRecIDEndsWith(String value) { this.RecIDEndsWith = value; return this; } public String getRecIDContains() { return RecIDContains; } public QO_SalesStagesQuery setRecIDContains(String value) { this.RecIDContains = value; return this; } public String getRecIDLike() { return RecIDLike; } public QO_SalesStagesQuery setRecIDLike(String value) { this.RecIDLike = value; return this; } public ArrayList getRecIDBetween() { return RecIDBetween; } public QO_SalesStagesQuery setRecIDBetween(ArrayList value) { this.RecIDBetween = value; return this; } public ArrayList getRecIDIn() { return RecIDIn; } public QO_SalesStagesQuery setRecIDIn(ArrayList value) { this.RecIDIn = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public QO_SalesStagesQuery setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getLastSavedDateTimeGreaterThanOrEqualTo() { return LastSavedDateTimeGreaterThanOrEqualTo; } public QO_SalesStagesQuery setLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.LastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeGreaterThan() { return LastSavedDateTimeGreaterThan; } public QO_SalesStagesQuery setLastSavedDateTimeGreaterThan(Date value) { this.LastSavedDateTimeGreaterThan = value; return this; } public Date getLastSavedDateTimeLessThan() { return LastSavedDateTimeLessThan; } public QO_SalesStagesQuery setLastSavedDateTimeLessThan(Date value) { this.LastSavedDateTimeLessThan = value; return this; } public Date getLastSavedDateTimeLessThanOrEqualTo() { return LastSavedDateTimeLessThanOrEqualTo; } public QO_SalesStagesQuery setLastSavedDateTimeLessThanOrEqualTo(Date value) { this.LastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeNotEqualTo() { return LastSavedDateTimeNotEqualTo; } public QO_SalesStagesQuery setLastSavedDateTimeNotEqualTo(Date value) { this.LastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getLastSavedDateTimeBetween() { return LastSavedDateTimeBetween; } public QO_SalesStagesQuery setLastSavedDateTimeBetween(ArrayList value) { this.LastSavedDateTimeBetween = value; return this; } public ArrayList getLastSavedDateTimeIn() { return LastSavedDateTimeIn; } public QO_SalesStagesQuery setLastSavedDateTimeIn(ArrayList value) { this.LastSavedDateTimeIn = value; return this; } public Integer getDisplayOrder() { return DisplayOrder; } public QO_SalesStagesQuery setDisplayOrder(Integer value) { this.DisplayOrder = value; return this; } public Integer getDisplayOrderGreaterThanOrEqualTo() { return DisplayOrderGreaterThanOrEqualTo; } public QO_SalesStagesQuery setDisplayOrderGreaterThanOrEqualTo(Integer value) { this.DisplayOrderGreaterThanOrEqualTo = value; return this; } public Integer getDisplayOrderGreaterThan() { return DisplayOrderGreaterThan; } public QO_SalesStagesQuery setDisplayOrderGreaterThan(Integer value) { this.DisplayOrderGreaterThan = value; return this; } public Integer getDisplayOrderLessThan() { return DisplayOrderLessThan; } public QO_SalesStagesQuery setDisplayOrderLessThan(Integer value) { this.DisplayOrderLessThan = value; return this; } public Integer getDisplayOrderLessThanOrEqualTo() { return DisplayOrderLessThanOrEqualTo; } public QO_SalesStagesQuery setDisplayOrderLessThanOrEqualTo(Integer value) { this.DisplayOrderLessThanOrEqualTo = value; return this; } public Integer getDisplayOrderNotEqualTo() { return DisplayOrderNotEqualTo; } public QO_SalesStagesQuery setDisplayOrderNotEqualTo(Integer value) { this.DisplayOrderNotEqualTo = value; return this; } public ArrayList getDisplayOrderBetween() { return DisplayOrderBetween; } public QO_SalesStagesQuery setDisplayOrderBetween(ArrayList value) { this.DisplayOrderBetween = value; return this; } public ArrayList getDisplayOrderIn() { return DisplayOrderIn; } public QO_SalesStagesQuery setDisplayOrderIn(ArrayList value) { this.DisplayOrderIn = value; return this; } public String getDescription() { return Description; } public QO_SalesStagesQuery setDescription(String value) { this.Description = value; return this; } public String getDescriptionStartsWith() { return DescriptionStartsWith; } public QO_SalesStagesQuery setDescriptionStartsWith(String value) { this.DescriptionStartsWith = value; return this; } public String getDescriptionEndsWith() { return DescriptionEndsWith; } public QO_SalesStagesQuery setDescriptionEndsWith(String value) { this.DescriptionEndsWith = value; return this; } public String getDescriptionContains() { return DescriptionContains; } public QO_SalesStagesQuery setDescriptionContains(String value) { this.DescriptionContains = value; return this; } public String getDescriptionLike() { return DescriptionLike; } public QO_SalesStagesQuery setDescriptionLike(String value) { this.DescriptionLike = value; return this; } public ArrayList getDescriptionBetween() { return DescriptionBetween; } public QO_SalesStagesQuery setDescriptionBetween(ArrayList value) { this.DescriptionBetween = value; return this; } public ArrayList getDescriptionIn() { return DescriptionIn; } public QO_SalesStagesQuery setDescriptionIn(ArrayList value) { this.DescriptionIn = value; return this; } public Integer getPercentComplete() { return PercentComplete; } public QO_SalesStagesQuery setPercentComplete(Integer value) { this.PercentComplete = value; return this; } public Integer getPercentCompleteGreaterThanOrEqualTo() { return PercentCompleteGreaterThanOrEqualTo; } public QO_SalesStagesQuery setPercentCompleteGreaterThanOrEqualTo(Integer value) { this.PercentCompleteGreaterThanOrEqualTo = value; return this; } public Integer getPercentCompleteGreaterThan() { return PercentCompleteGreaterThan; } public QO_SalesStagesQuery setPercentCompleteGreaterThan(Integer value) { this.PercentCompleteGreaterThan = value; return this; } public Integer getPercentCompleteLessThan() { return PercentCompleteLessThan; } public QO_SalesStagesQuery setPercentCompleteLessThan(Integer value) { this.PercentCompleteLessThan = value; return this; } public Integer getPercentCompleteLessThanOrEqualTo() { return PercentCompleteLessThanOrEqualTo; } public QO_SalesStagesQuery setPercentCompleteLessThanOrEqualTo(Integer value) { this.PercentCompleteLessThanOrEqualTo = value; return this; } public Integer getPercentCompleteNotEqualTo() { return PercentCompleteNotEqualTo; } public QO_SalesStagesQuery setPercentCompleteNotEqualTo(Integer value) { this.PercentCompleteNotEqualTo = value; return this; } public ArrayList getPercentCompleteBetween() { return PercentCompleteBetween; } public QO_SalesStagesQuery setPercentCompleteBetween(ArrayList value) { this.PercentCompleteBetween = value; return this; } public ArrayList getPercentCompleteIn() { return PercentCompleteIn; } public QO_SalesStagesQuery setPercentCompleteIn(ArrayList value) { this.PercentCompleteIn = value; return this; } public Boolean isDefaultSalesStage() { return DefaultSalesStage; } public QO_SalesStagesQuery setDefaultSalesStage(Boolean value) { this.DefaultSalesStage = value; return this; } public Boolean getIsEnabled() { return IsEnabled; } public QO_SalesStagesQuery setIsEnabled(Boolean value) { this.IsEnabled = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class QO_SOLinkQuery extends QueryDb implements IReturn> { public String LinkID = null; public String LinkIDStartsWith = null; public String LinkIDEndsWith = null; public String LinkIDContains = null; public String LinkIDLike = null; public ArrayList LinkIDBetween = null; public ArrayList LinkIDIn = null; public String QuoteID = null; public String QuoteIDStartsWith = null; public String QuoteIDEndsWith = null; public String QuoteIDContains = null; public String QuoteIDLike = null; public ArrayList QuoteIDBetween = null; public ArrayList QuoteIDIn = null; public String InvoiceID = null; public String InvoiceIDStartsWith = null; public String InvoiceIDEndsWith = null; public String InvoiceIDContains = null; public String InvoiceIDLike = null; public ArrayList InvoiceIDBetween = null; public ArrayList InvoiceIDIn = null; public String getLinkID() { return LinkID; } public QO_SOLinkQuery setLinkID(String value) { this.LinkID = value; return this; } public String getLinkIDStartsWith() { return LinkIDStartsWith; } public QO_SOLinkQuery setLinkIDStartsWith(String value) { this.LinkIDStartsWith = value; return this; } public String getLinkIDEndsWith() { return LinkIDEndsWith; } public QO_SOLinkQuery setLinkIDEndsWith(String value) { this.LinkIDEndsWith = value; return this; } public String getLinkIDContains() { return LinkIDContains; } public QO_SOLinkQuery setLinkIDContains(String value) { this.LinkIDContains = value; return this; } public String getLinkIDLike() { return LinkIDLike; } public QO_SOLinkQuery setLinkIDLike(String value) { this.LinkIDLike = value; return this; } public ArrayList getLinkIDBetween() { return LinkIDBetween; } public QO_SOLinkQuery setLinkIDBetween(ArrayList value) { this.LinkIDBetween = value; return this; } public ArrayList getLinkIDIn() { return LinkIDIn; } public QO_SOLinkQuery setLinkIDIn(ArrayList value) { this.LinkIDIn = value; return this; } public String getQuoteID() { return QuoteID; } public QO_SOLinkQuery setQuoteID(String value) { this.QuoteID = value; return this; } public String getQuoteIDStartsWith() { return QuoteIDStartsWith; } public QO_SOLinkQuery setQuoteIDStartsWith(String value) { this.QuoteIDStartsWith = value; return this; } public String getQuoteIDEndsWith() { return QuoteIDEndsWith; } public QO_SOLinkQuery setQuoteIDEndsWith(String value) { this.QuoteIDEndsWith = value; return this; } public String getQuoteIDContains() { return QuoteIDContains; } public QO_SOLinkQuery setQuoteIDContains(String value) { this.QuoteIDContains = value; return this; } public String getQuoteIDLike() { return QuoteIDLike; } public QO_SOLinkQuery setQuoteIDLike(String value) { this.QuoteIDLike = value; return this; } public ArrayList getQuoteIDBetween() { return QuoteIDBetween; } public QO_SOLinkQuery setQuoteIDBetween(ArrayList value) { this.QuoteIDBetween = value; return this; } public ArrayList getQuoteIDIn() { return QuoteIDIn; } public QO_SOLinkQuery setQuoteIDIn(ArrayList value) { this.QuoteIDIn = value; return this; } public String getInvoiceID() { return InvoiceID; } public QO_SOLinkQuery setInvoiceID(String value) { this.InvoiceID = value; return this; } public String getInvoiceIDStartsWith() { return InvoiceIDStartsWith; } public QO_SOLinkQuery setInvoiceIDStartsWith(String value) { this.InvoiceIDStartsWith = value; return this; } public String getInvoiceIDEndsWith() { return InvoiceIDEndsWith; } public QO_SOLinkQuery setInvoiceIDEndsWith(String value) { this.InvoiceIDEndsWith = value; return this; } public String getInvoiceIDContains() { return InvoiceIDContains; } public QO_SOLinkQuery setInvoiceIDContains(String value) { this.InvoiceIDContains = value; return this; } public String getInvoiceIDLike() { return InvoiceIDLike; } public QO_SOLinkQuery setInvoiceIDLike(String value) { this.InvoiceIDLike = value; return this; } public ArrayList getInvoiceIDBetween() { return InvoiceIDBetween; } public QO_SOLinkQuery setInvoiceIDBetween(ArrayList value) { this.InvoiceIDBetween = value; return this; } public ArrayList getInvoiceIDIn() { return InvoiceIDIn; } public QO_SOLinkQuery setInvoiceIDIn(ArrayList value) { this.InvoiceIDIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class RA_CreditDocumentsQuery extends QueryDb implements IReturn> { public String RecID = null; public String RecIDStartsWith = null; public String RecIDEndsWith = null; public String RecIDContains = null; public String RecIDLike = null; public ArrayList RecIDBetween = null; public ArrayList RecIDIn = null; public String RA_CreditMain_RecID = null; public String RA_CreditMain_RecIDStartsWith = null; public String RA_CreditMain_RecIDEndsWith = null; public String RA_CreditMain_RecIDContains = null; public String RA_CreditMain_RecIDLike = null; public ArrayList RA_CreditMain_RecIDBetween = null; public ArrayList RA_CreditMain_RecIDIn = null; public String DocumentTypeID = null; public String DocumentTypeIDStartsWith = null; public String DocumentTypeIDEndsWith = null; public String DocumentTypeIDContains = null; public String DocumentTypeIDLike = null; public ArrayList DocumentTypeIDBetween = null; public ArrayList DocumentTypeIDIn = null; public Date LastSavedDateTime = null; public Date LastSavedDateTimeGreaterThanOrEqualTo = null; public Date LastSavedDateTimeGreaterThan = null; public Date LastSavedDateTimeLessThan = null; public Date LastSavedDateTimeLessThanOrEqualTo = null; public Date LastSavedDateTimeNotEqualTo = null; public ArrayList LastSavedDateTimeBetween = null; public ArrayList LastSavedDateTimeIn = null; public String LastSavedByStaffID = null; public String LastSavedByStaffIDStartsWith = null; public String LastSavedByStaffIDEndsWith = null; public String LastSavedByStaffIDContains = null; public String LastSavedByStaffIDLike = null; public ArrayList LastSavedByStaffIDBetween = null; public ArrayList LastSavedByStaffIDIn = null; public ArrayList FileBinary = null; public String Description = null; public String DescriptionStartsWith = null; public String DescriptionEndsWith = null; public String DescriptionContains = null; public String DescriptionLike = null; public ArrayList DescriptionBetween = null; public ArrayList DescriptionIn = null; public String PhysicalFileName = null; public String PhysicalFileNameStartsWith = null; public String PhysicalFileNameEndsWith = null; public String PhysicalFileNameContains = null; public String PhysicalFileNameLike = null; public ArrayList PhysicalFileNameBetween = null; public ArrayList PhysicalFileNameIn = null; public Integer ItemNo = null; public Integer ItemNoGreaterThanOrEqualTo = null; public Integer ItemNoGreaterThan = null; public Integer ItemNoLessThan = null; public Integer ItemNoLessThanOrEqualTo = null; public Integer ItemNoNotEqualTo = null; public ArrayList ItemNoBetween = null; public ArrayList ItemNoIn = null; public String getRecID() { return RecID; } public RA_CreditDocumentsQuery setRecID(String value) { this.RecID = value; return this; } public String getRecIDStartsWith() { return RecIDStartsWith; } public RA_CreditDocumentsQuery setRecIDStartsWith(String value) { this.RecIDStartsWith = value; return this; } public String getRecIDEndsWith() { return RecIDEndsWith; } public RA_CreditDocumentsQuery setRecIDEndsWith(String value) { this.RecIDEndsWith = value; return this; } public String getRecIDContains() { return RecIDContains; } public RA_CreditDocumentsQuery setRecIDContains(String value) { this.RecIDContains = value; return this; } public String getRecIDLike() { return RecIDLike; } public RA_CreditDocumentsQuery setRecIDLike(String value) { this.RecIDLike = value; return this; } public ArrayList getRecIDBetween() { return RecIDBetween; } public RA_CreditDocumentsQuery setRecIDBetween(ArrayList value) { this.RecIDBetween = value; return this; } public ArrayList getRecIDIn() { return RecIDIn; } public RA_CreditDocumentsQuery setRecIDIn(ArrayList value) { this.RecIDIn = value; return this; } public String getRaCreditMainRecID() { return RA_CreditMain_RecID; } public RA_CreditDocumentsQuery setRaCreditMainRecID(String value) { this.RA_CreditMain_RecID = value; return this; } public String getRaCreditMainRecIDStartsWith() { return RA_CreditMain_RecIDStartsWith; } public RA_CreditDocumentsQuery setRaCreditMainRecIDStartsWith(String value) { this.RA_CreditMain_RecIDStartsWith = value; return this; } public String getRaCreditMainRecIDEndsWith() { return RA_CreditMain_RecIDEndsWith; } public RA_CreditDocumentsQuery setRaCreditMainRecIDEndsWith(String value) { this.RA_CreditMain_RecIDEndsWith = value; return this; } public String getRaCreditMainRecIDContains() { return RA_CreditMain_RecIDContains; } public RA_CreditDocumentsQuery setRaCreditMainRecIDContains(String value) { this.RA_CreditMain_RecIDContains = value; return this; } public String getRaCreditMainRecIDLike() { return RA_CreditMain_RecIDLike; } public RA_CreditDocumentsQuery setRaCreditMainRecIDLike(String value) { this.RA_CreditMain_RecIDLike = value; return this; } public ArrayList getRaCreditMainRecIDBetween() { return RA_CreditMain_RecIDBetween; } public RA_CreditDocumentsQuery setRaCreditMainRecIDBetween(ArrayList value) { this.RA_CreditMain_RecIDBetween = value; return this; } public ArrayList getRaCreditMainRecIDIn() { return RA_CreditMain_RecIDIn; } public RA_CreditDocumentsQuery setRaCreditMainRecIDIn(ArrayList value) { this.RA_CreditMain_RecIDIn = value; return this; } public String getDocumentTypeID() { return DocumentTypeID; } public RA_CreditDocumentsQuery setDocumentTypeID(String value) { this.DocumentTypeID = value; return this; } public String getDocumentTypeIDStartsWith() { return DocumentTypeIDStartsWith; } public RA_CreditDocumentsQuery setDocumentTypeIDStartsWith(String value) { this.DocumentTypeIDStartsWith = value; return this; } public String getDocumentTypeIDEndsWith() { return DocumentTypeIDEndsWith; } public RA_CreditDocumentsQuery setDocumentTypeIDEndsWith(String value) { this.DocumentTypeIDEndsWith = value; return this; } public String getDocumentTypeIDContains() { return DocumentTypeIDContains; } public RA_CreditDocumentsQuery setDocumentTypeIDContains(String value) { this.DocumentTypeIDContains = value; return this; } public String getDocumentTypeIDLike() { return DocumentTypeIDLike; } public RA_CreditDocumentsQuery setDocumentTypeIDLike(String value) { this.DocumentTypeIDLike = value; return this; } public ArrayList getDocumentTypeIDBetween() { return DocumentTypeIDBetween; } public RA_CreditDocumentsQuery setDocumentTypeIDBetween(ArrayList value) { this.DocumentTypeIDBetween = value; return this; } public ArrayList getDocumentTypeIDIn() { return DocumentTypeIDIn; } public RA_CreditDocumentsQuery setDocumentTypeIDIn(ArrayList value) { this.DocumentTypeIDIn = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public RA_CreditDocumentsQuery setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getLastSavedDateTimeGreaterThanOrEqualTo() { return LastSavedDateTimeGreaterThanOrEqualTo; } public RA_CreditDocumentsQuery setLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.LastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeGreaterThan() { return LastSavedDateTimeGreaterThan; } public RA_CreditDocumentsQuery setLastSavedDateTimeGreaterThan(Date value) { this.LastSavedDateTimeGreaterThan = value; return this; } public Date getLastSavedDateTimeLessThan() { return LastSavedDateTimeLessThan; } public RA_CreditDocumentsQuery setLastSavedDateTimeLessThan(Date value) { this.LastSavedDateTimeLessThan = value; return this; } public Date getLastSavedDateTimeLessThanOrEqualTo() { return LastSavedDateTimeLessThanOrEqualTo; } public RA_CreditDocumentsQuery setLastSavedDateTimeLessThanOrEqualTo(Date value) { this.LastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeNotEqualTo() { return LastSavedDateTimeNotEqualTo; } public RA_CreditDocumentsQuery setLastSavedDateTimeNotEqualTo(Date value) { this.LastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getLastSavedDateTimeBetween() { return LastSavedDateTimeBetween; } public RA_CreditDocumentsQuery setLastSavedDateTimeBetween(ArrayList value) { this.LastSavedDateTimeBetween = value; return this; } public ArrayList getLastSavedDateTimeIn() { return LastSavedDateTimeIn; } public RA_CreditDocumentsQuery setLastSavedDateTimeIn(ArrayList value) { this.LastSavedDateTimeIn = value; return this; } public String getLastSavedByStaffID() { return LastSavedByStaffID; } public RA_CreditDocumentsQuery setLastSavedByStaffID(String value) { this.LastSavedByStaffID = value; return this; } public String getLastSavedByStaffIDStartsWith() { return LastSavedByStaffIDStartsWith; } public RA_CreditDocumentsQuery setLastSavedByStaffIDStartsWith(String value) { this.LastSavedByStaffIDStartsWith = value; return this; } public String getLastSavedByStaffIDEndsWith() { return LastSavedByStaffIDEndsWith; } public RA_CreditDocumentsQuery setLastSavedByStaffIDEndsWith(String value) { this.LastSavedByStaffIDEndsWith = value; return this; } public String getLastSavedByStaffIDContains() { return LastSavedByStaffIDContains; } public RA_CreditDocumentsQuery setLastSavedByStaffIDContains(String value) { this.LastSavedByStaffIDContains = value; return this; } public String getLastSavedByStaffIDLike() { return LastSavedByStaffIDLike; } public RA_CreditDocumentsQuery setLastSavedByStaffIDLike(String value) { this.LastSavedByStaffIDLike = value; return this; } public ArrayList getLastSavedByStaffIDBetween() { return LastSavedByStaffIDBetween; } public RA_CreditDocumentsQuery setLastSavedByStaffIDBetween(ArrayList value) { this.LastSavedByStaffIDBetween = value; return this; } public ArrayList getLastSavedByStaffIDIn() { return LastSavedByStaffIDIn; } public RA_CreditDocumentsQuery setLastSavedByStaffIDIn(ArrayList value) { this.LastSavedByStaffIDIn = value; return this; } public ArrayList getFileBinary() { return FileBinary; } public RA_CreditDocumentsQuery setFileBinary(ArrayList value) { this.FileBinary = value; return this; } public String getDescription() { return Description; } public RA_CreditDocumentsQuery setDescription(String value) { this.Description = value; return this; } public String getDescriptionStartsWith() { return DescriptionStartsWith; } public RA_CreditDocumentsQuery setDescriptionStartsWith(String value) { this.DescriptionStartsWith = value; return this; } public String getDescriptionEndsWith() { return DescriptionEndsWith; } public RA_CreditDocumentsQuery setDescriptionEndsWith(String value) { this.DescriptionEndsWith = value; return this; } public String getDescriptionContains() { return DescriptionContains; } public RA_CreditDocumentsQuery setDescriptionContains(String value) { this.DescriptionContains = value; return this; } public String getDescriptionLike() { return DescriptionLike; } public RA_CreditDocumentsQuery setDescriptionLike(String value) { this.DescriptionLike = value; return this; } public ArrayList getDescriptionBetween() { return DescriptionBetween; } public RA_CreditDocumentsQuery setDescriptionBetween(ArrayList value) { this.DescriptionBetween = value; return this; } public ArrayList getDescriptionIn() { return DescriptionIn; } public RA_CreditDocumentsQuery setDescriptionIn(ArrayList value) { this.DescriptionIn = value; return this; } public String getPhysicalFileName() { return PhysicalFileName; } public RA_CreditDocumentsQuery setPhysicalFileName(String value) { this.PhysicalFileName = value; return this; } public String getPhysicalFileNameStartsWith() { return PhysicalFileNameStartsWith; } public RA_CreditDocumentsQuery setPhysicalFileNameStartsWith(String value) { this.PhysicalFileNameStartsWith = value; return this; } public String getPhysicalFileNameEndsWith() { return PhysicalFileNameEndsWith; } public RA_CreditDocumentsQuery setPhysicalFileNameEndsWith(String value) { this.PhysicalFileNameEndsWith = value; return this; } public String getPhysicalFileNameContains() { return PhysicalFileNameContains; } public RA_CreditDocumentsQuery setPhysicalFileNameContains(String value) { this.PhysicalFileNameContains = value; return this; } public String getPhysicalFileNameLike() { return PhysicalFileNameLike; } public RA_CreditDocumentsQuery setPhysicalFileNameLike(String value) { this.PhysicalFileNameLike = value; return this; } public ArrayList getPhysicalFileNameBetween() { return PhysicalFileNameBetween; } public RA_CreditDocumentsQuery setPhysicalFileNameBetween(ArrayList value) { this.PhysicalFileNameBetween = value; return this; } public ArrayList getPhysicalFileNameIn() { return PhysicalFileNameIn; } public RA_CreditDocumentsQuery setPhysicalFileNameIn(ArrayList value) { this.PhysicalFileNameIn = value; return this; } public Integer getItemNo() { return ItemNo; } public RA_CreditDocumentsQuery setItemNo(Integer value) { this.ItemNo = value; return this; } public Integer getItemNoGreaterThanOrEqualTo() { return ItemNoGreaterThanOrEqualTo; } public RA_CreditDocumentsQuery setItemNoGreaterThanOrEqualTo(Integer value) { this.ItemNoGreaterThanOrEqualTo = value; return this; } public Integer getItemNoGreaterThan() { return ItemNoGreaterThan; } public RA_CreditDocumentsQuery setItemNoGreaterThan(Integer value) { this.ItemNoGreaterThan = value; return this; } public Integer getItemNoLessThan() { return ItemNoLessThan; } public RA_CreditDocumentsQuery setItemNoLessThan(Integer value) { this.ItemNoLessThan = value; return this; } public Integer getItemNoLessThanOrEqualTo() { return ItemNoLessThanOrEqualTo; } public RA_CreditDocumentsQuery setItemNoLessThanOrEqualTo(Integer value) { this.ItemNoLessThanOrEqualTo = value; return this; } public Integer getItemNoNotEqualTo() { return ItemNoNotEqualTo; } public RA_CreditDocumentsQuery setItemNoNotEqualTo(Integer value) { this.ItemNoNotEqualTo = value; return this; } public ArrayList getItemNoBetween() { return ItemNoBetween; } public RA_CreditDocumentsQuery setItemNoBetween(ArrayList value) { this.ItemNoBetween = value; return this; } public ArrayList getItemNoIn() { return ItemNoIn; } public RA_CreditDocumentsQuery setItemNoIn(ArrayList value) { this.ItemNoIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class RA_CreditExchangeLineDetailsQuery extends QueryDb implements IReturn> { public String RecID = null; public String RecIDStartsWith = null; public String RecIDEndsWith = null; public String RecIDContains = null; public String RecIDLike = null; public ArrayList RecIDBetween = null; public ArrayList RecIDIn = null; public String Parent_RecID = null; public String Parent_RecIDStartsWith = null; public String Parent_RecIDEndsWith = null; public String Parent_RecIDContains = null; public String Parent_RecIDLike = null; public ArrayList Parent_RecIDBetween = null; public ArrayList Parent_RecIDIn = null; public String IN_SOH_LinkID = null; public String IN_SOH_LinkIDStartsWith = null; public String IN_SOH_LinkIDEndsWith = null; public String IN_SOH_LinkIDContains = null; public String IN_SOH_LinkIDLike = null; public ArrayList IN_SOH_LinkIDBetween = null; public ArrayList IN_SOH_LinkIDIn = null; public BigDecimal Cost = null; public BigDecimal CostGreaterThanOrEqualTo = null; public BigDecimal CostGreaterThan = null; public BigDecimal CostLessThan = null; public BigDecimal CostLessThanOrEqualTo = null; public BigDecimal CostNotEqualTo = null; public ArrayList CostBetween = null; public ArrayList CostIn = null; public BigDecimal SpecialPrice = null; public BigDecimal SpecialPriceGreaterThanOrEqualTo = null; public BigDecimal SpecialPriceGreaterThan = null; public BigDecimal SpecialPriceLessThan = null; public BigDecimal SpecialPriceLessThanOrEqualTo = null; public BigDecimal SpecialPriceNotEqualTo = null; public ArrayList SpecialPriceBetween = null; public ArrayList SpecialPriceIn = null; public BigDecimal Quantity = null; public BigDecimal QuantityGreaterThanOrEqualTo = null; public BigDecimal QuantityGreaterThan = null; public BigDecimal QuantityLessThan = null; public BigDecimal QuantityLessThanOrEqualTo = null; public BigDecimal QuantityNotEqualTo = null; public ArrayList QuantityBetween = null; public ArrayList QuantityIn = null; public String SerialNo = null; public String SerialNoStartsWith = null; public String SerialNoEndsWith = null; public String SerialNoContains = null; public String SerialNoLike = null; public ArrayList SerialNoBetween = null; public ArrayList SerialNoIn = null; public Date ExpiryDate = null; public Date ExpiryDateGreaterThanOrEqualTo = null; public Date ExpiryDateGreaterThan = null; public Date ExpiryDateLessThan = null; public Date ExpiryDateLessThanOrEqualTo = null; public Date ExpiryDateNotEqualTo = null; public ArrayList ExpiryDateBetween = null; public ArrayList ExpiryDateIn = null; public String BinLocation = null; public String BinLocationStartsWith = null; public String BinLocationEndsWith = null; public String BinLocationContains = null; public String BinLocationLike = null; public ArrayList BinLocationBetween = null; public ArrayList BinLocationIn = null; public Date LastSavedDateTime = null; public Date LastSavedDateTimeGreaterThanOrEqualTo = null; public Date LastSavedDateTimeGreaterThan = null; public Date LastSavedDateTimeLessThan = null; public Date LastSavedDateTimeLessThanOrEqualTo = null; public Date LastSavedDateTimeNotEqualTo = null; public ArrayList LastSavedDateTimeBetween = null; public ArrayList LastSavedDateTimeIn = null; public ArrayList RowHash = null; public Integer ItemNo = null; public Integer ItemNoGreaterThanOrEqualTo = null; public Integer ItemNoGreaterThan = null; public Integer ItemNoLessThan = null; public Integer ItemNoLessThanOrEqualTo = null; public Integer ItemNoNotEqualTo = null; public ArrayList ItemNoBetween = null; public ArrayList ItemNoIn = null; public String getRecID() { return RecID; } public RA_CreditExchangeLineDetailsQuery setRecID(String value) { this.RecID = value; return this; } public String getRecIDStartsWith() { return RecIDStartsWith; } public RA_CreditExchangeLineDetailsQuery setRecIDStartsWith(String value) { this.RecIDStartsWith = value; return this; } public String getRecIDEndsWith() { return RecIDEndsWith; } public RA_CreditExchangeLineDetailsQuery setRecIDEndsWith(String value) { this.RecIDEndsWith = value; return this; } public String getRecIDContains() { return RecIDContains; } public RA_CreditExchangeLineDetailsQuery setRecIDContains(String value) { this.RecIDContains = value; return this; } public String getRecIDLike() { return RecIDLike; } public RA_CreditExchangeLineDetailsQuery setRecIDLike(String value) { this.RecIDLike = value; return this; } public ArrayList getRecIDBetween() { return RecIDBetween; } public RA_CreditExchangeLineDetailsQuery setRecIDBetween(ArrayList value) { this.RecIDBetween = value; return this; } public ArrayList getRecIDIn() { return RecIDIn; } public RA_CreditExchangeLineDetailsQuery setRecIDIn(ArrayList value) { this.RecIDIn = value; return this; } public String getParentRecID() { return Parent_RecID; } public RA_CreditExchangeLineDetailsQuery setParentRecID(String value) { this.Parent_RecID = value; return this; } public String getParentRecIDStartsWith() { return Parent_RecIDStartsWith; } public RA_CreditExchangeLineDetailsQuery setParentRecIDStartsWith(String value) { this.Parent_RecIDStartsWith = value; return this; } public String getParentRecIDEndsWith() { return Parent_RecIDEndsWith; } public RA_CreditExchangeLineDetailsQuery setParentRecIDEndsWith(String value) { this.Parent_RecIDEndsWith = value; return this; } public String getParentRecIDContains() { return Parent_RecIDContains; } public RA_CreditExchangeLineDetailsQuery setParentRecIDContains(String value) { this.Parent_RecIDContains = value; return this; } public String getParentRecIDLike() { return Parent_RecIDLike; } public RA_CreditExchangeLineDetailsQuery setParentRecIDLike(String value) { this.Parent_RecIDLike = value; return this; } public ArrayList getParentRecIDBetween() { return Parent_RecIDBetween; } public RA_CreditExchangeLineDetailsQuery setParentRecIDBetween(ArrayList value) { this.Parent_RecIDBetween = value; return this; } public ArrayList getParentRecIDIn() { return Parent_RecIDIn; } public RA_CreditExchangeLineDetailsQuery setParentRecIDIn(ArrayList value) { this.Parent_RecIDIn = value; return this; } public String getInSohLinkID() { return IN_SOH_LinkID; } public RA_CreditExchangeLineDetailsQuery setInSohLinkID(String value) { this.IN_SOH_LinkID = value; return this; } public String getInSohLinkIDStartsWith() { return IN_SOH_LinkIDStartsWith; } public RA_CreditExchangeLineDetailsQuery setInSohLinkIDStartsWith(String value) { this.IN_SOH_LinkIDStartsWith = value; return this; } public String getInSohLinkIDEndsWith() { return IN_SOH_LinkIDEndsWith; } public RA_CreditExchangeLineDetailsQuery setInSohLinkIDEndsWith(String value) { this.IN_SOH_LinkIDEndsWith = value; return this; } public String getInSohLinkIDContains() { return IN_SOH_LinkIDContains; } public RA_CreditExchangeLineDetailsQuery setInSohLinkIDContains(String value) { this.IN_SOH_LinkIDContains = value; return this; } public String getInSohLinkIDLike() { return IN_SOH_LinkIDLike; } public RA_CreditExchangeLineDetailsQuery setInSohLinkIDLike(String value) { this.IN_SOH_LinkIDLike = value; return this; } public ArrayList getInSohLinkIDBetween() { return IN_SOH_LinkIDBetween; } public RA_CreditExchangeLineDetailsQuery setInSohLinkIDBetween(ArrayList value) { this.IN_SOH_LinkIDBetween = value; return this; } public ArrayList getInSohLinkIDIn() { return IN_SOH_LinkIDIn; } public RA_CreditExchangeLineDetailsQuery setInSohLinkIDIn(ArrayList value) { this.IN_SOH_LinkIDIn = value; return this; } public BigDecimal getCost() { return Cost; } public RA_CreditExchangeLineDetailsQuery setCost(BigDecimal value) { this.Cost = value; return this; } public BigDecimal getCostGreaterThanOrEqualTo() { return CostGreaterThanOrEqualTo; } public RA_CreditExchangeLineDetailsQuery setCostGreaterThanOrEqualTo(BigDecimal value) { this.CostGreaterThanOrEqualTo = value; return this; } public BigDecimal getCostGreaterThan() { return CostGreaterThan; } public RA_CreditExchangeLineDetailsQuery setCostGreaterThan(BigDecimal value) { this.CostGreaterThan = value; return this; } public BigDecimal getCostLessThan() { return CostLessThan; } public RA_CreditExchangeLineDetailsQuery setCostLessThan(BigDecimal value) { this.CostLessThan = value; return this; } public BigDecimal getCostLessThanOrEqualTo() { return CostLessThanOrEqualTo; } public RA_CreditExchangeLineDetailsQuery setCostLessThanOrEqualTo(BigDecimal value) { this.CostLessThanOrEqualTo = value; return this; } public BigDecimal getCostNotEqualTo() { return CostNotEqualTo; } public RA_CreditExchangeLineDetailsQuery setCostNotEqualTo(BigDecimal value) { this.CostNotEqualTo = value; return this; } public ArrayList getCostBetween() { return CostBetween; } public RA_CreditExchangeLineDetailsQuery setCostBetween(ArrayList value) { this.CostBetween = value; return this; } public ArrayList getCostIn() { return CostIn; } public RA_CreditExchangeLineDetailsQuery setCostIn(ArrayList value) { this.CostIn = value; return this; } public BigDecimal getSpecialPrice() { return SpecialPrice; } public RA_CreditExchangeLineDetailsQuery setSpecialPrice(BigDecimal value) { this.SpecialPrice = value; return this; } public BigDecimal getSpecialPriceGreaterThanOrEqualTo() { return SpecialPriceGreaterThanOrEqualTo; } public RA_CreditExchangeLineDetailsQuery setSpecialPriceGreaterThanOrEqualTo(BigDecimal value) { this.SpecialPriceGreaterThanOrEqualTo = value; return this; } public BigDecimal getSpecialPriceGreaterThan() { return SpecialPriceGreaterThan; } public RA_CreditExchangeLineDetailsQuery setSpecialPriceGreaterThan(BigDecimal value) { this.SpecialPriceGreaterThan = value; return this; } public BigDecimal getSpecialPriceLessThan() { return SpecialPriceLessThan; } public RA_CreditExchangeLineDetailsQuery setSpecialPriceLessThan(BigDecimal value) { this.SpecialPriceLessThan = value; return this; } public BigDecimal getSpecialPriceLessThanOrEqualTo() { return SpecialPriceLessThanOrEqualTo; } public RA_CreditExchangeLineDetailsQuery setSpecialPriceLessThanOrEqualTo(BigDecimal value) { this.SpecialPriceLessThanOrEqualTo = value; return this; } public BigDecimal getSpecialPriceNotEqualTo() { return SpecialPriceNotEqualTo; } public RA_CreditExchangeLineDetailsQuery setSpecialPriceNotEqualTo(BigDecimal value) { this.SpecialPriceNotEqualTo = value; return this; } public ArrayList getSpecialPriceBetween() { return SpecialPriceBetween; } public RA_CreditExchangeLineDetailsQuery setSpecialPriceBetween(ArrayList value) { this.SpecialPriceBetween = value; return this; } public ArrayList getSpecialPriceIn() { return SpecialPriceIn; } public RA_CreditExchangeLineDetailsQuery setSpecialPriceIn(ArrayList value) { this.SpecialPriceIn = value; return this; } public BigDecimal getQuantity() { return Quantity; } public RA_CreditExchangeLineDetailsQuery setQuantity(BigDecimal value) { this.Quantity = value; return this; } public BigDecimal getQuantityGreaterThanOrEqualTo() { return QuantityGreaterThanOrEqualTo; } public RA_CreditExchangeLineDetailsQuery setQuantityGreaterThanOrEqualTo(BigDecimal value) { this.QuantityGreaterThanOrEqualTo = value; return this; } public BigDecimal getQuantityGreaterThan() { return QuantityGreaterThan; } public RA_CreditExchangeLineDetailsQuery setQuantityGreaterThan(BigDecimal value) { this.QuantityGreaterThan = value; return this; } public BigDecimal getQuantityLessThan() { return QuantityLessThan; } public RA_CreditExchangeLineDetailsQuery setQuantityLessThan(BigDecimal value) { this.QuantityLessThan = value; return this; } public BigDecimal getQuantityLessThanOrEqualTo() { return QuantityLessThanOrEqualTo; } public RA_CreditExchangeLineDetailsQuery setQuantityLessThanOrEqualTo(BigDecimal value) { this.QuantityLessThanOrEqualTo = value; return this; } public BigDecimal getQuantityNotEqualTo() { return QuantityNotEqualTo; } public RA_CreditExchangeLineDetailsQuery setQuantityNotEqualTo(BigDecimal value) { this.QuantityNotEqualTo = value; return this; } public ArrayList getQuantityBetween() { return QuantityBetween; } public RA_CreditExchangeLineDetailsQuery setQuantityBetween(ArrayList value) { this.QuantityBetween = value; return this; } public ArrayList getQuantityIn() { return QuantityIn; } public RA_CreditExchangeLineDetailsQuery setQuantityIn(ArrayList value) { this.QuantityIn = value; return this; } public String getSerialNo() { return SerialNo; } public RA_CreditExchangeLineDetailsQuery setSerialNo(String value) { this.SerialNo = value; return this; } public String getSerialNoStartsWith() { return SerialNoStartsWith; } public RA_CreditExchangeLineDetailsQuery setSerialNoStartsWith(String value) { this.SerialNoStartsWith = value; return this; } public String getSerialNoEndsWith() { return SerialNoEndsWith; } public RA_CreditExchangeLineDetailsQuery setSerialNoEndsWith(String value) { this.SerialNoEndsWith = value; return this; } public String getSerialNoContains() { return SerialNoContains; } public RA_CreditExchangeLineDetailsQuery setSerialNoContains(String value) { this.SerialNoContains = value; return this; } public String getSerialNoLike() { return SerialNoLike; } public RA_CreditExchangeLineDetailsQuery setSerialNoLike(String value) { this.SerialNoLike = value; return this; } public ArrayList getSerialNoBetween() { return SerialNoBetween; } public RA_CreditExchangeLineDetailsQuery setSerialNoBetween(ArrayList value) { this.SerialNoBetween = value; return this; } public ArrayList getSerialNoIn() { return SerialNoIn; } public RA_CreditExchangeLineDetailsQuery setSerialNoIn(ArrayList value) { this.SerialNoIn = value; return this; } public Date getExpiryDate() { return ExpiryDate; } public RA_CreditExchangeLineDetailsQuery setExpiryDate(Date value) { this.ExpiryDate = value; return this; } public Date getExpiryDateGreaterThanOrEqualTo() { return ExpiryDateGreaterThanOrEqualTo; } public RA_CreditExchangeLineDetailsQuery setExpiryDateGreaterThanOrEqualTo(Date value) { this.ExpiryDateGreaterThanOrEqualTo = value; return this; } public Date getExpiryDateGreaterThan() { return ExpiryDateGreaterThan; } public RA_CreditExchangeLineDetailsQuery setExpiryDateGreaterThan(Date value) { this.ExpiryDateGreaterThan = value; return this; } public Date getExpiryDateLessThan() { return ExpiryDateLessThan; } public RA_CreditExchangeLineDetailsQuery setExpiryDateLessThan(Date value) { this.ExpiryDateLessThan = value; return this; } public Date getExpiryDateLessThanOrEqualTo() { return ExpiryDateLessThanOrEqualTo; } public RA_CreditExchangeLineDetailsQuery setExpiryDateLessThanOrEqualTo(Date value) { this.ExpiryDateLessThanOrEqualTo = value; return this; } public Date getExpiryDateNotEqualTo() { return ExpiryDateNotEqualTo; } public RA_CreditExchangeLineDetailsQuery setExpiryDateNotEqualTo(Date value) { this.ExpiryDateNotEqualTo = value; return this; } public ArrayList getExpiryDateBetween() { return ExpiryDateBetween; } public RA_CreditExchangeLineDetailsQuery setExpiryDateBetween(ArrayList value) { this.ExpiryDateBetween = value; return this; } public ArrayList getExpiryDateIn() { return ExpiryDateIn; } public RA_CreditExchangeLineDetailsQuery setExpiryDateIn(ArrayList value) { this.ExpiryDateIn = value; return this; } public String getBinLocation() { return BinLocation; } public RA_CreditExchangeLineDetailsQuery setBinLocation(String value) { this.BinLocation = value; return this; } public String getBinLocationStartsWith() { return BinLocationStartsWith; } public RA_CreditExchangeLineDetailsQuery setBinLocationStartsWith(String value) { this.BinLocationStartsWith = value; return this; } public String getBinLocationEndsWith() { return BinLocationEndsWith; } public RA_CreditExchangeLineDetailsQuery setBinLocationEndsWith(String value) { this.BinLocationEndsWith = value; return this; } public String getBinLocationContains() { return BinLocationContains; } public RA_CreditExchangeLineDetailsQuery setBinLocationContains(String value) { this.BinLocationContains = value; return this; } public String getBinLocationLike() { return BinLocationLike; } public RA_CreditExchangeLineDetailsQuery setBinLocationLike(String value) { this.BinLocationLike = value; return this; } public ArrayList getBinLocationBetween() { return BinLocationBetween; } public RA_CreditExchangeLineDetailsQuery setBinLocationBetween(ArrayList value) { this.BinLocationBetween = value; return this; } public ArrayList getBinLocationIn() { return BinLocationIn; } public RA_CreditExchangeLineDetailsQuery setBinLocationIn(ArrayList value) { this.BinLocationIn = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public RA_CreditExchangeLineDetailsQuery setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getLastSavedDateTimeGreaterThanOrEqualTo() { return LastSavedDateTimeGreaterThanOrEqualTo; } public RA_CreditExchangeLineDetailsQuery setLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.LastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeGreaterThan() { return LastSavedDateTimeGreaterThan; } public RA_CreditExchangeLineDetailsQuery setLastSavedDateTimeGreaterThan(Date value) { this.LastSavedDateTimeGreaterThan = value; return this; } public Date getLastSavedDateTimeLessThan() { return LastSavedDateTimeLessThan; } public RA_CreditExchangeLineDetailsQuery setLastSavedDateTimeLessThan(Date value) { this.LastSavedDateTimeLessThan = value; return this; } public Date getLastSavedDateTimeLessThanOrEqualTo() { return LastSavedDateTimeLessThanOrEqualTo; } public RA_CreditExchangeLineDetailsQuery setLastSavedDateTimeLessThanOrEqualTo(Date value) { this.LastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeNotEqualTo() { return LastSavedDateTimeNotEqualTo; } public RA_CreditExchangeLineDetailsQuery setLastSavedDateTimeNotEqualTo(Date value) { this.LastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getLastSavedDateTimeBetween() { return LastSavedDateTimeBetween; } public RA_CreditExchangeLineDetailsQuery setLastSavedDateTimeBetween(ArrayList value) { this.LastSavedDateTimeBetween = value; return this; } public ArrayList getLastSavedDateTimeIn() { return LastSavedDateTimeIn; } public RA_CreditExchangeLineDetailsQuery setLastSavedDateTimeIn(ArrayList value) { this.LastSavedDateTimeIn = value; return this; } public ArrayList getRowHash() { return RowHash; } public RA_CreditExchangeLineDetailsQuery setRowHash(ArrayList value) { this.RowHash = value; return this; } public Integer getItemNo() { return ItemNo; } public RA_CreditExchangeLineDetailsQuery setItemNo(Integer value) { this.ItemNo = value; return this; } public Integer getItemNoGreaterThanOrEqualTo() { return ItemNoGreaterThanOrEqualTo; } public RA_CreditExchangeLineDetailsQuery setItemNoGreaterThanOrEqualTo(Integer value) { this.ItemNoGreaterThanOrEqualTo = value; return this; } public Integer getItemNoGreaterThan() { return ItemNoGreaterThan; } public RA_CreditExchangeLineDetailsQuery setItemNoGreaterThan(Integer value) { this.ItemNoGreaterThan = value; return this; } public Integer getItemNoLessThan() { return ItemNoLessThan; } public RA_CreditExchangeLineDetailsQuery setItemNoLessThan(Integer value) { this.ItemNoLessThan = value; return this; } public Integer getItemNoLessThanOrEqualTo() { return ItemNoLessThanOrEqualTo; } public RA_CreditExchangeLineDetailsQuery setItemNoLessThanOrEqualTo(Integer value) { this.ItemNoLessThanOrEqualTo = value; return this; } public Integer getItemNoNotEqualTo() { return ItemNoNotEqualTo; } public RA_CreditExchangeLineDetailsQuery setItemNoNotEqualTo(Integer value) { this.ItemNoNotEqualTo = value; return this; } public ArrayList getItemNoBetween() { return ItemNoBetween; } public RA_CreditExchangeLineDetailsQuery setItemNoBetween(ArrayList value) { this.ItemNoBetween = value; return this; } public ArrayList getItemNoIn() { return ItemNoIn; } public RA_CreditExchangeLineDetailsQuery setItemNoIn(ArrayList value) { this.ItemNoIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class RA_CreditExchangeLinesQuery extends QueryDb implements IReturn> { public String RecID = null; public String RecIDStartsWith = null; public String RecIDEndsWith = null; public String RecIDContains = null; public String RecIDLike = null; public ArrayList RecIDBetween = null; public ArrayList RecIDIn = null; public String RA_CreditMain_RecID = null; public String RA_CreditMain_RecIDStartsWith = null; public String RA_CreditMain_RecIDEndsWith = null; public String RA_CreditMain_RecIDContains = null; public String RA_CreditMain_RecIDLike = null; public ArrayList RA_CreditMain_RecIDBetween = null; public ArrayList RA_CreditMain_RecIDIn = null; public String RA_CreditLines_RecID = null; public String RA_CreditLines_RecIDStartsWith = null; public String RA_CreditLines_RecIDEndsWith = null; public String RA_CreditLines_RecIDContains = null; public String RA_CreditLines_RecIDLike = null; public ArrayList RA_CreditLines_RecIDBetween = null; public ArrayList RA_CreditLines_RecIDIn = null; public BigDecimal Quantity = null; public BigDecimal QuantityGreaterThanOrEqualTo = null; public BigDecimal QuantityGreaterThan = null; public BigDecimal QuantityLessThan = null; public BigDecimal QuantityLessThanOrEqualTo = null; public BigDecimal QuantityNotEqualTo = null; public ArrayList QuantityBetween = null; public ArrayList QuantityIn = null; public Date LastSavedDateTime = null; public Date LastSavedDateTimeGreaterThanOrEqualTo = null; public Date LastSavedDateTimeGreaterThan = null; public Date LastSavedDateTimeLessThan = null; public Date LastSavedDateTimeLessThanOrEqualTo = null; public Date LastSavedDateTimeNotEqualTo = null; public ArrayList LastSavedDateTimeBetween = null; public ArrayList LastSavedDateTimeIn = null; public String Remark = null; public String RemarkStartsWith = null; public String RemarkEndsWith = null; public String RemarkContains = null; public String RemarkLike = null; public ArrayList RemarkBetween = null; public ArrayList RemarkIn = null; public BigDecimal TotalCreditValue = null; public BigDecimal TotalCreditValueGreaterThanOrEqualTo = null; public BigDecimal TotalCreditValueGreaterThan = null; public BigDecimal TotalCreditValueLessThan = null; public BigDecimal TotalCreditValueLessThanOrEqualTo = null; public BigDecimal TotalCreditValueNotEqualTo = null; public ArrayList TotalCreditValueBetween = null; public ArrayList TotalCreditValueIn = null; public String InventoryID = null; public String InventoryIDStartsWith = null; public String InventoryIDEndsWith = null; public String InventoryIDContains = null; public String InventoryIDLike = null; public ArrayList InventoryIDBetween = null; public ArrayList InventoryIDIn = null; public String TaxID = null; public String TaxIDStartsWith = null; public String TaxIDEndsWith = null; public String TaxIDContains = null; public String TaxIDLike = null; public ArrayList TaxIDBetween = null; public ArrayList TaxIDIn = null; public BigDecimal TaxAmount = null; public BigDecimal TaxAmountGreaterThanOrEqualTo = null; public BigDecimal TaxAmountGreaterThan = null; public BigDecimal TaxAmountLessThan = null; public BigDecimal TaxAmountLessThanOrEqualTo = null; public BigDecimal TaxAmountNotEqualTo = null; public ArrayList TaxAmountBetween = null; public ArrayList TaxAmountIn = null; public ArrayList RowHash = null; public Integer ItemNo = null; public Integer ItemNoGreaterThanOrEqualTo = null; public Integer ItemNoGreaterThan = null; public Integer ItemNoLessThan = null; public Integer ItemNoLessThanOrEqualTo = null; public Integer ItemNoNotEqualTo = null; public ArrayList ItemNoBetween = null; public ArrayList ItemNoIn = null; public BigDecimal FXUnitCreditValue = null; public BigDecimal FXUnitCreditValueGreaterThanOrEqualTo = null; public BigDecimal FXUnitCreditValueGreaterThan = null; public BigDecimal FXUnitCreditValueLessThan = null; public BigDecimal FXUnitCreditValueLessThanOrEqualTo = null; public BigDecimal FXUnitCreditValueNotEqualTo = null; public ArrayList FXUnitCreditValueBetween = null; public ArrayList FXUnitCreditValueIn = null; public BigDecimal FXTotalCreditValue = null; public BigDecimal FXTotalCreditValueGreaterThanOrEqualTo = null; public BigDecimal FXTotalCreditValueGreaterThan = null; public BigDecimal FXTotalCreditValueLessThan = null; public BigDecimal FXTotalCreditValueLessThanOrEqualTo = null; public BigDecimal FXTotalCreditValueNotEqualTo = null; public ArrayList FXTotalCreditValueBetween = null; public ArrayList FXTotalCreditValueIn = null; public BigDecimal FXRate = null; public BigDecimal FXRateGreaterThanOrEqualTo = null; public BigDecimal FXRateGreaterThan = null; public BigDecimal FXRateLessThan = null; public BigDecimal FXRateLessThanOrEqualTo = null; public BigDecimal FXRateNotEqualTo = null; public ArrayList FXRateBetween = null; public ArrayList FXRateIn = null; public BigDecimal UnitCreditValue = null; public BigDecimal UnitCreditValueGreaterThanOrEqualTo = null; public BigDecimal UnitCreditValueGreaterThan = null; public BigDecimal UnitCreditValueLessThan = null; public BigDecimal UnitCreditValueLessThanOrEqualTo = null; public BigDecimal UnitCreditValueNotEqualTo = null; public ArrayList UnitCreditValueBetween = null; public ArrayList UnitCreditValueIn = null; public String getRecID() { return RecID; } public RA_CreditExchangeLinesQuery setRecID(String value) { this.RecID = value; return this; } public String getRecIDStartsWith() { return RecIDStartsWith; } public RA_CreditExchangeLinesQuery setRecIDStartsWith(String value) { this.RecIDStartsWith = value; return this; } public String getRecIDEndsWith() { return RecIDEndsWith; } public RA_CreditExchangeLinesQuery setRecIDEndsWith(String value) { this.RecIDEndsWith = value; return this; } public String getRecIDContains() { return RecIDContains; } public RA_CreditExchangeLinesQuery setRecIDContains(String value) { this.RecIDContains = value; return this; } public String getRecIDLike() { return RecIDLike; } public RA_CreditExchangeLinesQuery setRecIDLike(String value) { this.RecIDLike = value; return this; } public ArrayList getRecIDBetween() { return RecIDBetween; } public RA_CreditExchangeLinesQuery setRecIDBetween(ArrayList value) { this.RecIDBetween = value; return this; } public ArrayList getRecIDIn() { return RecIDIn; } public RA_CreditExchangeLinesQuery setRecIDIn(ArrayList value) { this.RecIDIn = value; return this; } public String getRaCreditMainRecID() { return RA_CreditMain_RecID; } public RA_CreditExchangeLinesQuery setRaCreditMainRecID(String value) { this.RA_CreditMain_RecID = value; return this; } public String getRaCreditMainRecIDStartsWith() { return RA_CreditMain_RecIDStartsWith; } public RA_CreditExchangeLinesQuery setRaCreditMainRecIDStartsWith(String value) { this.RA_CreditMain_RecIDStartsWith = value; return this; } public String getRaCreditMainRecIDEndsWith() { return RA_CreditMain_RecIDEndsWith; } public RA_CreditExchangeLinesQuery setRaCreditMainRecIDEndsWith(String value) { this.RA_CreditMain_RecIDEndsWith = value; return this; } public String getRaCreditMainRecIDContains() { return RA_CreditMain_RecIDContains; } public RA_CreditExchangeLinesQuery setRaCreditMainRecIDContains(String value) { this.RA_CreditMain_RecIDContains = value; return this; } public String getRaCreditMainRecIDLike() { return RA_CreditMain_RecIDLike; } public RA_CreditExchangeLinesQuery setRaCreditMainRecIDLike(String value) { this.RA_CreditMain_RecIDLike = value; return this; } public ArrayList getRaCreditMainRecIDBetween() { return RA_CreditMain_RecIDBetween; } public RA_CreditExchangeLinesQuery setRaCreditMainRecIDBetween(ArrayList value) { this.RA_CreditMain_RecIDBetween = value; return this; } public ArrayList getRaCreditMainRecIDIn() { return RA_CreditMain_RecIDIn; } public RA_CreditExchangeLinesQuery setRaCreditMainRecIDIn(ArrayList value) { this.RA_CreditMain_RecIDIn = value; return this; } public String getRaCreditLinesRecID() { return RA_CreditLines_RecID; } public RA_CreditExchangeLinesQuery setRaCreditLinesRecID(String value) { this.RA_CreditLines_RecID = value; return this; } public String getRaCreditLinesRecIDStartsWith() { return RA_CreditLines_RecIDStartsWith; } public RA_CreditExchangeLinesQuery setRaCreditLinesRecIDStartsWith(String value) { this.RA_CreditLines_RecIDStartsWith = value; return this; } public String getRaCreditLinesRecIDEndsWith() { return RA_CreditLines_RecIDEndsWith; } public RA_CreditExchangeLinesQuery setRaCreditLinesRecIDEndsWith(String value) { this.RA_CreditLines_RecIDEndsWith = value; return this; } public String getRaCreditLinesRecIDContains() { return RA_CreditLines_RecIDContains; } public RA_CreditExchangeLinesQuery setRaCreditLinesRecIDContains(String value) { this.RA_CreditLines_RecIDContains = value; return this; } public String getRaCreditLinesRecIDLike() { return RA_CreditLines_RecIDLike; } public RA_CreditExchangeLinesQuery setRaCreditLinesRecIDLike(String value) { this.RA_CreditLines_RecIDLike = value; return this; } public ArrayList getRaCreditLinesRecIDBetween() { return RA_CreditLines_RecIDBetween; } public RA_CreditExchangeLinesQuery setRaCreditLinesRecIDBetween(ArrayList value) { this.RA_CreditLines_RecIDBetween = value; return this; } public ArrayList getRaCreditLinesRecIDIn() { return RA_CreditLines_RecIDIn; } public RA_CreditExchangeLinesQuery setRaCreditLinesRecIDIn(ArrayList value) { this.RA_CreditLines_RecIDIn = value; return this; } public BigDecimal getQuantity() { return Quantity; } public RA_CreditExchangeLinesQuery setQuantity(BigDecimal value) { this.Quantity = value; return this; } public BigDecimal getQuantityGreaterThanOrEqualTo() { return QuantityGreaterThanOrEqualTo; } public RA_CreditExchangeLinesQuery setQuantityGreaterThanOrEqualTo(BigDecimal value) { this.QuantityGreaterThanOrEqualTo = value; return this; } public BigDecimal getQuantityGreaterThan() { return QuantityGreaterThan; } public RA_CreditExchangeLinesQuery setQuantityGreaterThan(BigDecimal value) { this.QuantityGreaterThan = value; return this; } public BigDecimal getQuantityLessThan() { return QuantityLessThan; } public RA_CreditExchangeLinesQuery setQuantityLessThan(BigDecimal value) { this.QuantityLessThan = value; return this; } public BigDecimal getQuantityLessThanOrEqualTo() { return QuantityLessThanOrEqualTo; } public RA_CreditExchangeLinesQuery setQuantityLessThanOrEqualTo(BigDecimal value) { this.QuantityLessThanOrEqualTo = value; return this; } public BigDecimal getQuantityNotEqualTo() { return QuantityNotEqualTo; } public RA_CreditExchangeLinesQuery setQuantityNotEqualTo(BigDecimal value) { this.QuantityNotEqualTo = value; return this; } public ArrayList getQuantityBetween() { return QuantityBetween; } public RA_CreditExchangeLinesQuery setQuantityBetween(ArrayList value) { this.QuantityBetween = value; return this; } public ArrayList getQuantityIn() { return QuantityIn; } public RA_CreditExchangeLinesQuery setQuantityIn(ArrayList value) { this.QuantityIn = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public RA_CreditExchangeLinesQuery setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getLastSavedDateTimeGreaterThanOrEqualTo() { return LastSavedDateTimeGreaterThanOrEqualTo; } public RA_CreditExchangeLinesQuery setLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.LastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeGreaterThan() { return LastSavedDateTimeGreaterThan; } public RA_CreditExchangeLinesQuery setLastSavedDateTimeGreaterThan(Date value) { this.LastSavedDateTimeGreaterThan = value; return this; } public Date getLastSavedDateTimeLessThan() { return LastSavedDateTimeLessThan; } public RA_CreditExchangeLinesQuery setLastSavedDateTimeLessThan(Date value) { this.LastSavedDateTimeLessThan = value; return this; } public Date getLastSavedDateTimeLessThanOrEqualTo() { return LastSavedDateTimeLessThanOrEqualTo; } public RA_CreditExchangeLinesQuery setLastSavedDateTimeLessThanOrEqualTo(Date value) { this.LastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeNotEqualTo() { return LastSavedDateTimeNotEqualTo; } public RA_CreditExchangeLinesQuery setLastSavedDateTimeNotEqualTo(Date value) { this.LastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getLastSavedDateTimeBetween() { return LastSavedDateTimeBetween; } public RA_CreditExchangeLinesQuery setLastSavedDateTimeBetween(ArrayList value) { this.LastSavedDateTimeBetween = value; return this; } public ArrayList getLastSavedDateTimeIn() { return LastSavedDateTimeIn; } public RA_CreditExchangeLinesQuery setLastSavedDateTimeIn(ArrayList value) { this.LastSavedDateTimeIn = value; return this; } public String getRemark() { return Remark; } public RA_CreditExchangeLinesQuery setRemark(String value) { this.Remark = value; return this; } public String getRemarkStartsWith() { return RemarkStartsWith; } public RA_CreditExchangeLinesQuery setRemarkStartsWith(String value) { this.RemarkStartsWith = value; return this; } public String getRemarkEndsWith() { return RemarkEndsWith; } public RA_CreditExchangeLinesQuery setRemarkEndsWith(String value) { this.RemarkEndsWith = value; return this; } public String getRemarkContains() { return RemarkContains; } public RA_CreditExchangeLinesQuery setRemarkContains(String value) { this.RemarkContains = value; return this; } public String getRemarkLike() { return RemarkLike; } public RA_CreditExchangeLinesQuery setRemarkLike(String value) { this.RemarkLike = value; return this; } public ArrayList getRemarkBetween() { return RemarkBetween; } public RA_CreditExchangeLinesQuery setRemarkBetween(ArrayList value) { this.RemarkBetween = value; return this; } public ArrayList getRemarkIn() { return RemarkIn; } public RA_CreditExchangeLinesQuery setRemarkIn(ArrayList value) { this.RemarkIn = value; return this; } public BigDecimal getTotalCreditValue() { return TotalCreditValue; } public RA_CreditExchangeLinesQuery setTotalCreditValue(BigDecimal value) { this.TotalCreditValue = value; return this; } public BigDecimal getTotalCreditValueGreaterThanOrEqualTo() { return TotalCreditValueGreaterThanOrEqualTo; } public RA_CreditExchangeLinesQuery setTotalCreditValueGreaterThanOrEqualTo(BigDecimal value) { this.TotalCreditValueGreaterThanOrEqualTo = value; return this; } public BigDecimal getTotalCreditValueGreaterThan() { return TotalCreditValueGreaterThan; } public RA_CreditExchangeLinesQuery setTotalCreditValueGreaterThan(BigDecimal value) { this.TotalCreditValueGreaterThan = value; return this; } public BigDecimal getTotalCreditValueLessThan() { return TotalCreditValueLessThan; } public RA_CreditExchangeLinesQuery setTotalCreditValueLessThan(BigDecimal value) { this.TotalCreditValueLessThan = value; return this; } public BigDecimal getTotalCreditValueLessThanOrEqualTo() { return TotalCreditValueLessThanOrEqualTo; } public RA_CreditExchangeLinesQuery setTotalCreditValueLessThanOrEqualTo(BigDecimal value) { this.TotalCreditValueLessThanOrEqualTo = value; return this; } public BigDecimal getTotalCreditValueNotEqualTo() { return TotalCreditValueNotEqualTo; } public RA_CreditExchangeLinesQuery setTotalCreditValueNotEqualTo(BigDecimal value) { this.TotalCreditValueNotEqualTo = value; return this; } public ArrayList getTotalCreditValueBetween() { return TotalCreditValueBetween; } public RA_CreditExchangeLinesQuery setTotalCreditValueBetween(ArrayList value) { this.TotalCreditValueBetween = value; return this; } public ArrayList getTotalCreditValueIn() { return TotalCreditValueIn; } public RA_CreditExchangeLinesQuery setTotalCreditValueIn(ArrayList value) { this.TotalCreditValueIn = value; return this; } public String getInventoryID() { return InventoryID; } public RA_CreditExchangeLinesQuery setInventoryID(String value) { this.InventoryID = value; return this; } public String getInventoryIDStartsWith() { return InventoryIDStartsWith; } public RA_CreditExchangeLinesQuery setInventoryIDStartsWith(String value) { this.InventoryIDStartsWith = value; return this; } public String getInventoryIDEndsWith() { return InventoryIDEndsWith; } public RA_CreditExchangeLinesQuery setInventoryIDEndsWith(String value) { this.InventoryIDEndsWith = value; return this; } public String getInventoryIDContains() { return InventoryIDContains; } public RA_CreditExchangeLinesQuery setInventoryIDContains(String value) { this.InventoryIDContains = value; return this; } public String getInventoryIDLike() { return InventoryIDLike; } public RA_CreditExchangeLinesQuery setInventoryIDLike(String value) { this.InventoryIDLike = value; return this; } public ArrayList getInventoryIDBetween() { return InventoryIDBetween; } public RA_CreditExchangeLinesQuery setInventoryIDBetween(ArrayList value) { this.InventoryIDBetween = value; return this; } public ArrayList getInventoryIDIn() { return InventoryIDIn; } public RA_CreditExchangeLinesQuery setInventoryIDIn(ArrayList value) { this.InventoryIDIn = value; return this; } public String getTaxID() { return TaxID; } public RA_CreditExchangeLinesQuery setTaxID(String value) { this.TaxID = value; return this; } public String getTaxIDStartsWith() { return TaxIDStartsWith; } public RA_CreditExchangeLinesQuery setTaxIDStartsWith(String value) { this.TaxIDStartsWith = value; return this; } public String getTaxIDEndsWith() { return TaxIDEndsWith; } public RA_CreditExchangeLinesQuery setTaxIDEndsWith(String value) { this.TaxIDEndsWith = value; return this; } public String getTaxIDContains() { return TaxIDContains; } public RA_CreditExchangeLinesQuery setTaxIDContains(String value) { this.TaxIDContains = value; return this; } public String getTaxIDLike() { return TaxIDLike; } public RA_CreditExchangeLinesQuery setTaxIDLike(String value) { this.TaxIDLike = value; return this; } public ArrayList getTaxIDBetween() { return TaxIDBetween; } public RA_CreditExchangeLinesQuery setTaxIDBetween(ArrayList value) { this.TaxIDBetween = value; return this; } public ArrayList getTaxIDIn() { return TaxIDIn; } public RA_CreditExchangeLinesQuery setTaxIDIn(ArrayList value) { this.TaxIDIn = value; return this; } public BigDecimal getTaxAmount() { return TaxAmount; } public RA_CreditExchangeLinesQuery setTaxAmount(BigDecimal value) { this.TaxAmount = value; return this; } public BigDecimal getTaxAmountGreaterThanOrEqualTo() { return TaxAmountGreaterThanOrEqualTo; } public RA_CreditExchangeLinesQuery setTaxAmountGreaterThanOrEqualTo(BigDecimal value) { this.TaxAmountGreaterThanOrEqualTo = value; return this; } public BigDecimal getTaxAmountGreaterThan() { return TaxAmountGreaterThan; } public RA_CreditExchangeLinesQuery setTaxAmountGreaterThan(BigDecimal value) { this.TaxAmountGreaterThan = value; return this; } public BigDecimal getTaxAmountLessThan() { return TaxAmountLessThan; } public RA_CreditExchangeLinesQuery setTaxAmountLessThan(BigDecimal value) { this.TaxAmountLessThan = value; return this; } public BigDecimal getTaxAmountLessThanOrEqualTo() { return TaxAmountLessThanOrEqualTo; } public RA_CreditExchangeLinesQuery setTaxAmountLessThanOrEqualTo(BigDecimal value) { this.TaxAmountLessThanOrEqualTo = value; return this; } public BigDecimal getTaxAmountNotEqualTo() { return TaxAmountNotEqualTo; } public RA_CreditExchangeLinesQuery setTaxAmountNotEqualTo(BigDecimal value) { this.TaxAmountNotEqualTo = value; return this; } public ArrayList getTaxAmountBetween() { return TaxAmountBetween; } public RA_CreditExchangeLinesQuery setTaxAmountBetween(ArrayList value) { this.TaxAmountBetween = value; return this; } public ArrayList getTaxAmountIn() { return TaxAmountIn; } public RA_CreditExchangeLinesQuery setTaxAmountIn(ArrayList value) { this.TaxAmountIn = value; return this; } public ArrayList getRowHash() { return RowHash; } public RA_CreditExchangeLinesQuery setRowHash(ArrayList value) { this.RowHash = value; return this; } public Integer getItemNo() { return ItemNo; } public RA_CreditExchangeLinesQuery setItemNo(Integer value) { this.ItemNo = value; return this; } public Integer getItemNoGreaterThanOrEqualTo() { return ItemNoGreaterThanOrEqualTo; } public RA_CreditExchangeLinesQuery setItemNoGreaterThanOrEqualTo(Integer value) { this.ItemNoGreaterThanOrEqualTo = value; return this; } public Integer getItemNoGreaterThan() { return ItemNoGreaterThan; } public RA_CreditExchangeLinesQuery setItemNoGreaterThan(Integer value) { this.ItemNoGreaterThan = value; return this; } public Integer getItemNoLessThan() { return ItemNoLessThan; } public RA_CreditExchangeLinesQuery setItemNoLessThan(Integer value) { this.ItemNoLessThan = value; return this; } public Integer getItemNoLessThanOrEqualTo() { return ItemNoLessThanOrEqualTo; } public RA_CreditExchangeLinesQuery setItemNoLessThanOrEqualTo(Integer value) { this.ItemNoLessThanOrEqualTo = value; return this; } public Integer getItemNoNotEqualTo() { return ItemNoNotEqualTo; } public RA_CreditExchangeLinesQuery setItemNoNotEqualTo(Integer value) { this.ItemNoNotEqualTo = value; return this; } public ArrayList getItemNoBetween() { return ItemNoBetween; } public RA_CreditExchangeLinesQuery setItemNoBetween(ArrayList value) { this.ItemNoBetween = value; return this; } public ArrayList getItemNoIn() { return ItemNoIn; } public RA_CreditExchangeLinesQuery setItemNoIn(ArrayList value) { this.ItemNoIn = value; return this; } public BigDecimal getFxUnitCreditValue() { return FXUnitCreditValue; } public RA_CreditExchangeLinesQuery setFxUnitCreditValue(BigDecimal value) { this.FXUnitCreditValue = value; return this; } public BigDecimal getFxUnitCreditValueGreaterThanOrEqualTo() { return FXUnitCreditValueGreaterThanOrEqualTo; } public RA_CreditExchangeLinesQuery setFxUnitCreditValueGreaterThanOrEqualTo(BigDecimal value) { this.FXUnitCreditValueGreaterThanOrEqualTo = value; return this; } public BigDecimal getFxUnitCreditValueGreaterThan() { return FXUnitCreditValueGreaterThan; } public RA_CreditExchangeLinesQuery setFxUnitCreditValueGreaterThan(BigDecimal value) { this.FXUnitCreditValueGreaterThan = value; return this; } public BigDecimal getFxUnitCreditValueLessThan() { return FXUnitCreditValueLessThan; } public RA_CreditExchangeLinesQuery setFxUnitCreditValueLessThan(BigDecimal value) { this.FXUnitCreditValueLessThan = value; return this; } public BigDecimal getFxUnitCreditValueLessThanOrEqualTo() { return FXUnitCreditValueLessThanOrEqualTo; } public RA_CreditExchangeLinesQuery setFxUnitCreditValueLessThanOrEqualTo(BigDecimal value) { this.FXUnitCreditValueLessThanOrEqualTo = value; return this; } public BigDecimal getFxUnitCreditValueNotEqualTo() { return FXUnitCreditValueNotEqualTo; } public RA_CreditExchangeLinesQuery setFxUnitCreditValueNotEqualTo(BigDecimal value) { this.FXUnitCreditValueNotEqualTo = value; return this; } public ArrayList getFxUnitCreditValueBetween() { return FXUnitCreditValueBetween; } public RA_CreditExchangeLinesQuery setFxUnitCreditValueBetween(ArrayList value) { this.FXUnitCreditValueBetween = value; return this; } public ArrayList getFxUnitCreditValueIn() { return FXUnitCreditValueIn; } public RA_CreditExchangeLinesQuery setFxUnitCreditValueIn(ArrayList value) { this.FXUnitCreditValueIn = value; return this; } public BigDecimal getFxTotalCreditValue() { return FXTotalCreditValue; } public RA_CreditExchangeLinesQuery setFxTotalCreditValue(BigDecimal value) { this.FXTotalCreditValue = value; return this; } public BigDecimal getFxTotalCreditValueGreaterThanOrEqualTo() { return FXTotalCreditValueGreaterThanOrEqualTo; } public RA_CreditExchangeLinesQuery setFxTotalCreditValueGreaterThanOrEqualTo(BigDecimal value) { this.FXTotalCreditValueGreaterThanOrEqualTo = value; return this; } public BigDecimal getFxTotalCreditValueGreaterThan() { return FXTotalCreditValueGreaterThan; } public RA_CreditExchangeLinesQuery setFxTotalCreditValueGreaterThan(BigDecimal value) { this.FXTotalCreditValueGreaterThan = value; return this; } public BigDecimal getFxTotalCreditValueLessThan() { return FXTotalCreditValueLessThan; } public RA_CreditExchangeLinesQuery setFxTotalCreditValueLessThan(BigDecimal value) { this.FXTotalCreditValueLessThan = value; return this; } public BigDecimal getFxTotalCreditValueLessThanOrEqualTo() { return FXTotalCreditValueLessThanOrEqualTo; } public RA_CreditExchangeLinesQuery setFxTotalCreditValueLessThanOrEqualTo(BigDecimal value) { this.FXTotalCreditValueLessThanOrEqualTo = value; return this; } public BigDecimal getFxTotalCreditValueNotEqualTo() { return FXTotalCreditValueNotEqualTo; } public RA_CreditExchangeLinesQuery setFxTotalCreditValueNotEqualTo(BigDecimal value) { this.FXTotalCreditValueNotEqualTo = value; return this; } public ArrayList getFxTotalCreditValueBetween() { return FXTotalCreditValueBetween; } public RA_CreditExchangeLinesQuery setFxTotalCreditValueBetween(ArrayList value) { this.FXTotalCreditValueBetween = value; return this; } public ArrayList getFxTotalCreditValueIn() { return FXTotalCreditValueIn; } public RA_CreditExchangeLinesQuery setFxTotalCreditValueIn(ArrayList value) { this.FXTotalCreditValueIn = value; return this; } public BigDecimal getFxRate() { return FXRate; } public RA_CreditExchangeLinesQuery setFxRate(BigDecimal value) { this.FXRate = value; return this; } public BigDecimal getFxRateGreaterThanOrEqualTo() { return FXRateGreaterThanOrEqualTo; } public RA_CreditExchangeLinesQuery setFxRateGreaterThanOrEqualTo(BigDecimal value) { this.FXRateGreaterThanOrEqualTo = value; return this; } public BigDecimal getFxRateGreaterThan() { return FXRateGreaterThan; } public RA_CreditExchangeLinesQuery setFxRateGreaterThan(BigDecimal value) { this.FXRateGreaterThan = value; return this; } public BigDecimal getFxRateLessThan() { return FXRateLessThan; } public RA_CreditExchangeLinesQuery setFxRateLessThan(BigDecimal value) { this.FXRateLessThan = value; return this; } public BigDecimal getFxRateLessThanOrEqualTo() { return FXRateLessThanOrEqualTo; } public RA_CreditExchangeLinesQuery setFxRateLessThanOrEqualTo(BigDecimal value) { this.FXRateLessThanOrEqualTo = value; return this; } public BigDecimal getFxRateNotEqualTo() { return FXRateNotEqualTo; } public RA_CreditExchangeLinesQuery setFxRateNotEqualTo(BigDecimal value) { this.FXRateNotEqualTo = value; return this; } public ArrayList getFxRateBetween() { return FXRateBetween; } public RA_CreditExchangeLinesQuery setFxRateBetween(ArrayList value) { this.FXRateBetween = value; return this; } public ArrayList getFxRateIn() { return FXRateIn; } public RA_CreditExchangeLinesQuery setFxRateIn(ArrayList value) { this.FXRateIn = value; return this; } public BigDecimal getUnitCreditValue() { return UnitCreditValue; } public RA_CreditExchangeLinesQuery setUnitCreditValue(BigDecimal value) { this.UnitCreditValue = value; return this; } public BigDecimal getUnitCreditValueGreaterThanOrEqualTo() { return UnitCreditValueGreaterThanOrEqualTo; } public RA_CreditExchangeLinesQuery setUnitCreditValueGreaterThanOrEqualTo(BigDecimal value) { this.UnitCreditValueGreaterThanOrEqualTo = value; return this; } public BigDecimal getUnitCreditValueGreaterThan() { return UnitCreditValueGreaterThan; } public RA_CreditExchangeLinesQuery setUnitCreditValueGreaterThan(BigDecimal value) { this.UnitCreditValueGreaterThan = value; return this; } public BigDecimal getUnitCreditValueLessThan() { return UnitCreditValueLessThan; } public RA_CreditExchangeLinesQuery setUnitCreditValueLessThan(BigDecimal value) { this.UnitCreditValueLessThan = value; return this; } public BigDecimal getUnitCreditValueLessThanOrEqualTo() { return UnitCreditValueLessThanOrEqualTo; } public RA_CreditExchangeLinesQuery setUnitCreditValueLessThanOrEqualTo(BigDecimal value) { this.UnitCreditValueLessThanOrEqualTo = value; return this; } public BigDecimal getUnitCreditValueNotEqualTo() { return UnitCreditValueNotEqualTo; } public RA_CreditExchangeLinesQuery setUnitCreditValueNotEqualTo(BigDecimal value) { this.UnitCreditValueNotEqualTo = value; return this; } public ArrayList getUnitCreditValueBetween() { return UnitCreditValueBetween; } public RA_CreditExchangeLinesQuery setUnitCreditValueBetween(ArrayList value) { this.UnitCreditValueBetween = value; return this; } public ArrayList getUnitCreditValueIn() { return UnitCreditValueIn; } public RA_CreditExchangeLinesQuery setUnitCreditValueIn(ArrayList value) { this.UnitCreditValueIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class RA_CreditLineDetailsQuery extends QueryDb implements IReturn> { public String RecID = null; public String RecIDStartsWith = null; public String RecIDEndsWith = null; public String RecIDContains = null; public String RecIDLike = null; public ArrayList RecIDBetween = null; public ArrayList RecIDIn = null; public String Parent_RecID = null; public String Parent_RecIDStartsWith = null; public String Parent_RecIDEndsWith = null; public String Parent_RecIDContains = null; public String Parent_RecIDLike = null; public ArrayList Parent_RecIDBetween = null; public ArrayList Parent_RecIDIn = null; public String IN_SOH_LinkID = null; public String IN_SOH_LinkIDStartsWith = null; public String IN_SOH_LinkIDEndsWith = null; public String IN_SOH_LinkIDContains = null; public String IN_SOH_LinkIDLike = null; public ArrayList IN_SOH_LinkIDBetween = null; public ArrayList IN_SOH_LinkIDIn = null; public BigDecimal Cost = null; public BigDecimal CostGreaterThanOrEqualTo = null; public BigDecimal CostGreaterThan = null; public BigDecimal CostLessThan = null; public BigDecimal CostLessThanOrEqualTo = null; public BigDecimal CostNotEqualTo = null; public ArrayList CostBetween = null; public ArrayList CostIn = null; public BigDecimal SpecialPrice = null; public BigDecimal SpecialPriceGreaterThanOrEqualTo = null; public BigDecimal SpecialPriceGreaterThan = null; public BigDecimal SpecialPriceLessThan = null; public BigDecimal SpecialPriceLessThanOrEqualTo = null; public BigDecimal SpecialPriceNotEqualTo = null; public ArrayList SpecialPriceBetween = null; public ArrayList SpecialPriceIn = null; public BigDecimal Quantity = null; public BigDecimal QuantityGreaterThanOrEqualTo = null; public BigDecimal QuantityGreaterThan = null; public BigDecimal QuantityLessThan = null; public BigDecimal QuantityLessThanOrEqualTo = null; public BigDecimal QuantityNotEqualTo = null; public ArrayList QuantityBetween = null; public ArrayList QuantityIn = null; public String SerialNo = null; public String SerialNoStartsWith = null; public String SerialNoEndsWith = null; public String SerialNoContains = null; public String SerialNoLike = null; public ArrayList SerialNoBetween = null; public ArrayList SerialNoIn = null; public Date ExpiryDate = null; public Date ExpiryDateGreaterThanOrEqualTo = null; public Date ExpiryDateGreaterThan = null; public Date ExpiryDateLessThan = null; public Date ExpiryDateLessThanOrEqualTo = null; public Date ExpiryDateNotEqualTo = null; public ArrayList ExpiryDateBetween = null; public ArrayList ExpiryDateIn = null; public String BinLocation = null; public String BinLocationStartsWith = null; public String BinLocationEndsWith = null; public String BinLocationContains = null; public String BinLocationLike = null; public ArrayList BinLocationBetween = null; public ArrayList BinLocationIn = null; public Date LastSavedDateTime = null; public Date LastSavedDateTimeGreaterThanOrEqualTo = null; public Date LastSavedDateTimeGreaterThan = null; public Date LastSavedDateTimeLessThan = null; public Date LastSavedDateTimeLessThanOrEqualTo = null; public Date LastSavedDateTimeNotEqualTo = null; public ArrayList LastSavedDateTimeBetween = null; public ArrayList LastSavedDateTimeIn = null; public ArrayList RowHash = null; public Integer ItemNo = null; public Integer ItemNoGreaterThanOrEqualTo = null; public Integer ItemNoGreaterThan = null; public Integer ItemNoLessThan = null; public Integer ItemNoLessThanOrEqualTo = null; public Integer ItemNoNotEqualTo = null; public ArrayList ItemNoBetween = null; public ArrayList ItemNoIn = null; public String getRecID() { return RecID; } public RA_CreditLineDetailsQuery setRecID(String value) { this.RecID = value; return this; } public String getRecIDStartsWith() { return RecIDStartsWith; } public RA_CreditLineDetailsQuery setRecIDStartsWith(String value) { this.RecIDStartsWith = value; return this; } public String getRecIDEndsWith() { return RecIDEndsWith; } public RA_CreditLineDetailsQuery setRecIDEndsWith(String value) { this.RecIDEndsWith = value; return this; } public String getRecIDContains() { return RecIDContains; } public RA_CreditLineDetailsQuery setRecIDContains(String value) { this.RecIDContains = value; return this; } public String getRecIDLike() { return RecIDLike; } public RA_CreditLineDetailsQuery setRecIDLike(String value) { this.RecIDLike = value; return this; } public ArrayList getRecIDBetween() { return RecIDBetween; } public RA_CreditLineDetailsQuery setRecIDBetween(ArrayList value) { this.RecIDBetween = value; return this; } public ArrayList getRecIDIn() { return RecIDIn; } public RA_CreditLineDetailsQuery setRecIDIn(ArrayList value) { this.RecIDIn = value; return this; } public String getParentRecID() { return Parent_RecID; } public RA_CreditLineDetailsQuery setParentRecID(String value) { this.Parent_RecID = value; return this; } public String getParentRecIDStartsWith() { return Parent_RecIDStartsWith; } public RA_CreditLineDetailsQuery setParentRecIDStartsWith(String value) { this.Parent_RecIDStartsWith = value; return this; } public String getParentRecIDEndsWith() { return Parent_RecIDEndsWith; } public RA_CreditLineDetailsQuery setParentRecIDEndsWith(String value) { this.Parent_RecIDEndsWith = value; return this; } public String getParentRecIDContains() { return Parent_RecIDContains; } public RA_CreditLineDetailsQuery setParentRecIDContains(String value) { this.Parent_RecIDContains = value; return this; } public String getParentRecIDLike() { return Parent_RecIDLike; } public RA_CreditLineDetailsQuery setParentRecIDLike(String value) { this.Parent_RecIDLike = value; return this; } public ArrayList getParentRecIDBetween() { return Parent_RecIDBetween; } public RA_CreditLineDetailsQuery setParentRecIDBetween(ArrayList value) { this.Parent_RecIDBetween = value; return this; } public ArrayList getParentRecIDIn() { return Parent_RecIDIn; } public RA_CreditLineDetailsQuery setParentRecIDIn(ArrayList value) { this.Parent_RecIDIn = value; return this; } public String getInSohLinkID() { return IN_SOH_LinkID; } public RA_CreditLineDetailsQuery setInSohLinkID(String value) { this.IN_SOH_LinkID = value; return this; } public String getInSohLinkIDStartsWith() { return IN_SOH_LinkIDStartsWith; } public RA_CreditLineDetailsQuery setInSohLinkIDStartsWith(String value) { this.IN_SOH_LinkIDStartsWith = value; return this; } public String getInSohLinkIDEndsWith() { return IN_SOH_LinkIDEndsWith; } public RA_CreditLineDetailsQuery setInSohLinkIDEndsWith(String value) { this.IN_SOH_LinkIDEndsWith = value; return this; } public String getInSohLinkIDContains() { return IN_SOH_LinkIDContains; } public RA_CreditLineDetailsQuery setInSohLinkIDContains(String value) { this.IN_SOH_LinkIDContains = value; return this; } public String getInSohLinkIDLike() { return IN_SOH_LinkIDLike; } public RA_CreditLineDetailsQuery setInSohLinkIDLike(String value) { this.IN_SOH_LinkIDLike = value; return this; } public ArrayList getInSohLinkIDBetween() { return IN_SOH_LinkIDBetween; } public RA_CreditLineDetailsQuery setInSohLinkIDBetween(ArrayList value) { this.IN_SOH_LinkIDBetween = value; return this; } public ArrayList getInSohLinkIDIn() { return IN_SOH_LinkIDIn; } public RA_CreditLineDetailsQuery setInSohLinkIDIn(ArrayList value) { this.IN_SOH_LinkIDIn = value; return this; } public BigDecimal getCost() { return Cost; } public RA_CreditLineDetailsQuery setCost(BigDecimal value) { this.Cost = value; return this; } public BigDecimal getCostGreaterThanOrEqualTo() { return CostGreaterThanOrEqualTo; } public RA_CreditLineDetailsQuery setCostGreaterThanOrEqualTo(BigDecimal value) { this.CostGreaterThanOrEqualTo = value; return this; } public BigDecimal getCostGreaterThan() { return CostGreaterThan; } public RA_CreditLineDetailsQuery setCostGreaterThan(BigDecimal value) { this.CostGreaterThan = value; return this; } public BigDecimal getCostLessThan() { return CostLessThan; } public RA_CreditLineDetailsQuery setCostLessThan(BigDecimal value) { this.CostLessThan = value; return this; } public BigDecimal getCostLessThanOrEqualTo() { return CostLessThanOrEqualTo; } public RA_CreditLineDetailsQuery setCostLessThanOrEqualTo(BigDecimal value) { this.CostLessThanOrEqualTo = value; return this; } public BigDecimal getCostNotEqualTo() { return CostNotEqualTo; } public RA_CreditLineDetailsQuery setCostNotEqualTo(BigDecimal value) { this.CostNotEqualTo = value; return this; } public ArrayList getCostBetween() { return CostBetween; } public RA_CreditLineDetailsQuery setCostBetween(ArrayList value) { this.CostBetween = value; return this; } public ArrayList getCostIn() { return CostIn; } public RA_CreditLineDetailsQuery setCostIn(ArrayList value) { this.CostIn = value; return this; } public BigDecimal getSpecialPrice() { return SpecialPrice; } public RA_CreditLineDetailsQuery setSpecialPrice(BigDecimal value) { this.SpecialPrice = value; return this; } public BigDecimal getSpecialPriceGreaterThanOrEqualTo() { return SpecialPriceGreaterThanOrEqualTo; } public RA_CreditLineDetailsQuery setSpecialPriceGreaterThanOrEqualTo(BigDecimal value) { this.SpecialPriceGreaterThanOrEqualTo = value; return this; } public BigDecimal getSpecialPriceGreaterThan() { return SpecialPriceGreaterThan; } public RA_CreditLineDetailsQuery setSpecialPriceGreaterThan(BigDecimal value) { this.SpecialPriceGreaterThan = value; return this; } public BigDecimal getSpecialPriceLessThan() { return SpecialPriceLessThan; } public RA_CreditLineDetailsQuery setSpecialPriceLessThan(BigDecimal value) { this.SpecialPriceLessThan = value; return this; } public BigDecimal getSpecialPriceLessThanOrEqualTo() { return SpecialPriceLessThanOrEqualTo; } public RA_CreditLineDetailsQuery setSpecialPriceLessThanOrEqualTo(BigDecimal value) { this.SpecialPriceLessThanOrEqualTo = value; return this; } public BigDecimal getSpecialPriceNotEqualTo() { return SpecialPriceNotEqualTo; } public RA_CreditLineDetailsQuery setSpecialPriceNotEqualTo(BigDecimal value) { this.SpecialPriceNotEqualTo = value; return this; } public ArrayList getSpecialPriceBetween() { return SpecialPriceBetween; } public RA_CreditLineDetailsQuery setSpecialPriceBetween(ArrayList value) { this.SpecialPriceBetween = value; return this; } public ArrayList getSpecialPriceIn() { return SpecialPriceIn; } public RA_CreditLineDetailsQuery setSpecialPriceIn(ArrayList value) { this.SpecialPriceIn = value; return this; } public BigDecimal getQuantity() { return Quantity; } public RA_CreditLineDetailsQuery setQuantity(BigDecimal value) { this.Quantity = value; return this; } public BigDecimal getQuantityGreaterThanOrEqualTo() { return QuantityGreaterThanOrEqualTo; } public RA_CreditLineDetailsQuery setQuantityGreaterThanOrEqualTo(BigDecimal value) { this.QuantityGreaterThanOrEqualTo = value; return this; } public BigDecimal getQuantityGreaterThan() { return QuantityGreaterThan; } public RA_CreditLineDetailsQuery setQuantityGreaterThan(BigDecimal value) { this.QuantityGreaterThan = value; return this; } public BigDecimal getQuantityLessThan() { return QuantityLessThan; } public RA_CreditLineDetailsQuery setQuantityLessThan(BigDecimal value) { this.QuantityLessThan = value; return this; } public BigDecimal getQuantityLessThanOrEqualTo() { return QuantityLessThanOrEqualTo; } public RA_CreditLineDetailsQuery setQuantityLessThanOrEqualTo(BigDecimal value) { this.QuantityLessThanOrEqualTo = value; return this; } public BigDecimal getQuantityNotEqualTo() { return QuantityNotEqualTo; } public RA_CreditLineDetailsQuery setQuantityNotEqualTo(BigDecimal value) { this.QuantityNotEqualTo = value; return this; } public ArrayList getQuantityBetween() { return QuantityBetween; } public RA_CreditLineDetailsQuery setQuantityBetween(ArrayList value) { this.QuantityBetween = value; return this; } public ArrayList getQuantityIn() { return QuantityIn; } public RA_CreditLineDetailsQuery setQuantityIn(ArrayList value) { this.QuantityIn = value; return this; } public String getSerialNo() { return SerialNo; } public RA_CreditLineDetailsQuery setSerialNo(String value) { this.SerialNo = value; return this; } public String getSerialNoStartsWith() { return SerialNoStartsWith; } public RA_CreditLineDetailsQuery setSerialNoStartsWith(String value) { this.SerialNoStartsWith = value; return this; } public String getSerialNoEndsWith() { return SerialNoEndsWith; } public RA_CreditLineDetailsQuery setSerialNoEndsWith(String value) { this.SerialNoEndsWith = value; return this; } public String getSerialNoContains() { return SerialNoContains; } public RA_CreditLineDetailsQuery setSerialNoContains(String value) { this.SerialNoContains = value; return this; } public String getSerialNoLike() { return SerialNoLike; } public RA_CreditLineDetailsQuery setSerialNoLike(String value) { this.SerialNoLike = value; return this; } public ArrayList getSerialNoBetween() { return SerialNoBetween; } public RA_CreditLineDetailsQuery setSerialNoBetween(ArrayList value) { this.SerialNoBetween = value; return this; } public ArrayList getSerialNoIn() { return SerialNoIn; } public RA_CreditLineDetailsQuery setSerialNoIn(ArrayList value) { this.SerialNoIn = value; return this; } public Date getExpiryDate() { return ExpiryDate; } public RA_CreditLineDetailsQuery setExpiryDate(Date value) { this.ExpiryDate = value; return this; } public Date getExpiryDateGreaterThanOrEqualTo() { return ExpiryDateGreaterThanOrEqualTo; } public RA_CreditLineDetailsQuery setExpiryDateGreaterThanOrEqualTo(Date value) { this.ExpiryDateGreaterThanOrEqualTo = value; return this; } public Date getExpiryDateGreaterThan() { return ExpiryDateGreaterThan; } public RA_CreditLineDetailsQuery setExpiryDateGreaterThan(Date value) { this.ExpiryDateGreaterThan = value; return this; } public Date getExpiryDateLessThan() { return ExpiryDateLessThan; } public RA_CreditLineDetailsQuery setExpiryDateLessThan(Date value) { this.ExpiryDateLessThan = value; return this; } public Date getExpiryDateLessThanOrEqualTo() { return ExpiryDateLessThanOrEqualTo; } public RA_CreditLineDetailsQuery setExpiryDateLessThanOrEqualTo(Date value) { this.ExpiryDateLessThanOrEqualTo = value; return this; } public Date getExpiryDateNotEqualTo() { return ExpiryDateNotEqualTo; } public RA_CreditLineDetailsQuery setExpiryDateNotEqualTo(Date value) { this.ExpiryDateNotEqualTo = value; return this; } public ArrayList getExpiryDateBetween() { return ExpiryDateBetween; } public RA_CreditLineDetailsQuery setExpiryDateBetween(ArrayList value) { this.ExpiryDateBetween = value; return this; } public ArrayList getExpiryDateIn() { return ExpiryDateIn; } public RA_CreditLineDetailsQuery setExpiryDateIn(ArrayList value) { this.ExpiryDateIn = value; return this; } public String getBinLocation() { return BinLocation; } public RA_CreditLineDetailsQuery setBinLocation(String value) { this.BinLocation = value; return this; } public String getBinLocationStartsWith() { return BinLocationStartsWith; } public RA_CreditLineDetailsQuery setBinLocationStartsWith(String value) { this.BinLocationStartsWith = value; return this; } public String getBinLocationEndsWith() { return BinLocationEndsWith; } public RA_CreditLineDetailsQuery setBinLocationEndsWith(String value) { this.BinLocationEndsWith = value; return this; } public String getBinLocationContains() { return BinLocationContains; } public RA_CreditLineDetailsQuery setBinLocationContains(String value) { this.BinLocationContains = value; return this; } public String getBinLocationLike() { return BinLocationLike; } public RA_CreditLineDetailsQuery setBinLocationLike(String value) { this.BinLocationLike = value; return this; } public ArrayList getBinLocationBetween() { return BinLocationBetween; } public RA_CreditLineDetailsQuery setBinLocationBetween(ArrayList value) { this.BinLocationBetween = value; return this; } public ArrayList getBinLocationIn() { return BinLocationIn; } public RA_CreditLineDetailsQuery setBinLocationIn(ArrayList value) { this.BinLocationIn = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public RA_CreditLineDetailsQuery setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getLastSavedDateTimeGreaterThanOrEqualTo() { return LastSavedDateTimeGreaterThanOrEqualTo; } public RA_CreditLineDetailsQuery setLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.LastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeGreaterThan() { return LastSavedDateTimeGreaterThan; } public RA_CreditLineDetailsQuery setLastSavedDateTimeGreaterThan(Date value) { this.LastSavedDateTimeGreaterThan = value; return this; } public Date getLastSavedDateTimeLessThan() { return LastSavedDateTimeLessThan; } public RA_CreditLineDetailsQuery setLastSavedDateTimeLessThan(Date value) { this.LastSavedDateTimeLessThan = value; return this; } public Date getLastSavedDateTimeLessThanOrEqualTo() { return LastSavedDateTimeLessThanOrEqualTo; } public RA_CreditLineDetailsQuery setLastSavedDateTimeLessThanOrEqualTo(Date value) { this.LastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeNotEqualTo() { return LastSavedDateTimeNotEqualTo; } public RA_CreditLineDetailsQuery setLastSavedDateTimeNotEqualTo(Date value) { this.LastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getLastSavedDateTimeBetween() { return LastSavedDateTimeBetween; } public RA_CreditLineDetailsQuery setLastSavedDateTimeBetween(ArrayList value) { this.LastSavedDateTimeBetween = value; return this; } public ArrayList getLastSavedDateTimeIn() { return LastSavedDateTimeIn; } public RA_CreditLineDetailsQuery setLastSavedDateTimeIn(ArrayList value) { this.LastSavedDateTimeIn = value; return this; } public ArrayList getRowHash() { return RowHash; } public RA_CreditLineDetailsQuery setRowHash(ArrayList value) { this.RowHash = value; return this; } public Integer getItemNo() { return ItemNo; } public RA_CreditLineDetailsQuery setItemNo(Integer value) { this.ItemNo = value; return this; } public Integer getItemNoGreaterThanOrEqualTo() { return ItemNoGreaterThanOrEqualTo; } public RA_CreditLineDetailsQuery setItemNoGreaterThanOrEqualTo(Integer value) { this.ItemNoGreaterThanOrEqualTo = value; return this; } public Integer getItemNoGreaterThan() { return ItemNoGreaterThan; } public RA_CreditLineDetailsQuery setItemNoGreaterThan(Integer value) { this.ItemNoGreaterThan = value; return this; } public Integer getItemNoLessThan() { return ItemNoLessThan; } public RA_CreditLineDetailsQuery setItemNoLessThan(Integer value) { this.ItemNoLessThan = value; return this; } public Integer getItemNoLessThanOrEqualTo() { return ItemNoLessThanOrEqualTo; } public RA_CreditLineDetailsQuery setItemNoLessThanOrEqualTo(Integer value) { this.ItemNoLessThanOrEqualTo = value; return this; } public Integer getItemNoNotEqualTo() { return ItemNoNotEqualTo; } public RA_CreditLineDetailsQuery setItemNoNotEqualTo(Integer value) { this.ItemNoNotEqualTo = value; return this; } public ArrayList getItemNoBetween() { return ItemNoBetween; } public RA_CreditLineDetailsQuery setItemNoBetween(ArrayList value) { this.ItemNoBetween = value; return this; } public ArrayList getItemNoIn() { return ItemNoIn; } public RA_CreditLineDetailsQuery setItemNoIn(ArrayList value) { this.ItemNoIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class RA_CreditLinesQuery extends QueryDb implements IReturn> { public String RecID = null; public String RecIDStartsWith = null; public String RecIDEndsWith = null; public String RecIDContains = null; public String RecIDLike = null; public ArrayList RecIDBetween = null; public ArrayList RecIDIn = null; public String RA_CreditMain_RecID = null; public String RA_CreditMain_RecIDStartsWith = null; public String RA_CreditMain_RecIDEndsWith = null; public String RA_CreditMain_RecIDContains = null; public String RA_CreditMain_RecIDLike = null; public ArrayList RA_CreditMain_RecIDBetween = null; public ArrayList RA_CreditMain_RecIDIn = null; public String RA_ShipLines_RecID = null; public String RA_ShipLines_RecIDStartsWith = null; public String RA_ShipLines_RecIDEndsWith = null; public String RA_ShipLines_RecIDContains = null; public String RA_ShipLines_RecIDLike = null; public ArrayList RA_ShipLines_RecIDBetween = null; public ArrayList RA_ShipLines_RecIDIn = null; public BigDecimal Quantity = null; public BigDecimal QuantityGreaterThanOrEqualTo = null; public BigDecimal QuantityGreaterThan = null; public BigDecimal QuantityLessThan = null; public BigDecimal QuantityLessThanOrEqualTo = null; public BigDecimal QuantityNotEqualTo = null; public ArrayList QuantityBetween = null; public ArrayList QuantityIn = null; public String RA_ReturnCodes_RecID = null; public String RA_ReturnCodes_RecIDStartsWith = null; public String RA_ReturnCodes_RecIDEndsWith = null; public String RA_ReturnCodes_RecIDContains = null; public String RA_ReturnCodes_RecIDLike = null; public ArrayList RA_ReturnCodes_RecIDBetween = null; public ArrayList RA_ReturnCodes_RecIDIn = null; public Date LastSavedDateTime = null; public Date LastSavedDateTimeGreaterThanOrEqualTo = null; public Date LastSavedDateTimeGreaterThan = null; public Date LastSavedDateTimeLessThan = null; public Date LastSavedDateTimeLessThanOrEqualTo = null; public Date LastSavedDateTimeNotEqualTo = null; public ArrayList LastSavedDateTimeBetween = null; public ArrayList LastSavedDateTimeIn = null; public String Remark = null; public String RemarkStartsWith = null; public String RemarkEndsWith = null; public String RemarkContains = null; public String RemarkLike = null; public ArrayList RemarkBetween = null; public ArrayList RemarkIn = null; public BigDecimal TotalCreditValue = null; public BigDecimal TotalCreditValueGreaterThanOrEqualTo = null; public BigDecimal TotalCreditValueGreaterThan = null; public BigDecimal TotalCreditValueLessThan = null; public BigDecimal TotalCreditValueLessThanOrEqualTo = null; public BigDecimal TotalCreditValueNotEqualTo = null; public ArrayList TotalCreditValueBetween = null; public ArrayList TotalCreditValueIn = null; public Boolean Completed = null; public String InventoryID = null; public String InventoryIDStartsWith = null; public String InventoryIDEndsWith = null; public String InventoryIDContains = null; public String InventoryIDLike = null; public ArrayList InventoryIDBetween = null; public ArrayList InventoryIDIn = null; public String LinkLineID = null; public String LinkLineIDStartsWith = null; public String LinkLineIDEndsWith = null; public String LinkLineIDContains = null; public String LinkLineIDLike = null; public ArrayList LinkLineIDBetween = null; public ArrayList LinkLineIDIn = null; public String TaxID = null; public String TaxIDStartsWith = null; public String TaxIDEndsWith = null; public String TaxIDContains = null; public String TaxIDLike = null; public ArrayList TaxIDBetween = null; public ArrayList TaxIDIn = null; public BigDecimal TaxAmount = null; public BigDecimal TaxAmountGreaterThanOrEqualTo = null; public BigDecimal TaxAmountGreaterThan = null; public BigDecimal TaxAmountLessThan = null; public BigDecimal TaxAmountLessThanOrEqualTo = null; public BigDecimal TaxAmountNotEqualTo = null; public ArrayList TaxAmountBetween = null; public ArrayList TaxAmountIn = null; public ArrayList RowHash = null; public Integer ItemNo = null; public Integer ItemNoGreaterThanOrEqualTo = null; public Integer ItemNoGreaterThan = null; public Integer ItemNoLessThan = null; public Integer ItemNoLessThanOrEqualTo = null; public Integer ItemNoNotEqualTo = null; public ArrayList ItemNoBetween = null; public ArrayList ItemNoIn = null; public String PO_Lines_OrderLineID = null; public String PO_Lines_OrderLineIDStartsWith = null; public String PO_Lines_OrderLineIDEndsWith = null; public String PO_Lines_OrderLineIDContains = null; public String PO_Lines_OrderLineIDLike = null; public ArrayList PO_Lines_OrderLineIDBetween = null; public ArrayList PO_Lines_OrderLineIDIn = null; public BigDecimal FXUnitCreditValue = null; public BigDecimal FXUnitCreditValueGreaterThanOrEqualTo = null; public BigDecimal FXUnitCreditValueGreaterThan = null; public BigDecimal FXUnitCreditValueLessThan = null; public BigDecimal FXUnitCreditValueLessThanOrEqualTo = null; public BigDecimal FXUnitCreditValueNotEqualTo = null; public ArrayList FXUnitCreditValueBetween = null; public ArrayList FXUnitCreditValueIn = null; public BigDecimal FXTotalCreditValue = null; public BigDecimal FXTotalCreditValueGreaterThanOrEqualTo = null; public BigDecimal FXTotalCreditValueGreaterThan = null; public BigDecimal FXTotalCreditValueLessThan = null; public BigDecimal FXTotalCreditValueLessThanOrEqualTo = null; public BigDecimal FXTotalCreditValueNotEqualTo = null; public ArrayList FXTotalCreditValueBetween = null; public ArrayList FXTotalCreditValueIn = null; public BigDecimal FXRate = null; public BigDecimal FXRateGreaterThanOrEqualTo = null; public BigDecimal FXRateGreaterThan = null; public BigDecimal FXRateLessThan = null; public BigDecimal FXRateLessThanOrEqualTo = null; public BigDecimal FXRateNotEqualTo = null; public ArrayList FXRateBetween = null; public ArrayList FXRateIn = null; public BigDecimal UnitCreditValue = null; public BigDecimal UnitCreditValueGreaterThanOrEqualTo = null; public BigDecimal UnitCreditValueGreaterThan = null; public BigDecimal UnitCreditValueLessThan = null; public BigDecimal UnitCreditValueLessThanOrEqualTo = null; public BigDecimal UnitCreditValueNotEqualTo = null; public ArrayList UnitCreditValueBetween = null; public ArrayList UnitCreditValueIn = null; public String getRecID() { return RecID; } public RA_CreditLinesQuery setRecID(String value) { this.RecID = value; return this; } public String getRecIDStartsWith() { return RecIDStartsWith; } public RA_CreditLinesQuery setRecIDStartsWith(String value) { this.RecIDStartsWith = value; return this; } public String getRecIDEndsWith() { return RecIDEndsWith; } public RA_CreditLinesQuery setRecIDEndsWith(String value) { this.RecIDEndsWith = value; return this; } public String getRecIDContains() { return RecIDContains; } public RA_CreditLinesQuery setRecIDContains(String value) { this.RecIDContains = value; return this; } public String getRecIDLike() { return RecIDLike; } public RA_CreditLinesQuery setRecIDLike(String value) { this.RecIDLike = value; return this; } public ArrayList getRecIDBetween() { return RecIDBetween; } public RA_CreditLinesQuery setRecIDBetween(ArrayList value) { this.RecIDBetween = value; return this; } public ArrayList getRecIDIn() { return RecIDIn; } public RA_CreditLinesQuery setRecIDIn(ArrayList value) { this.RecIDIn = value; return this; } public String getRaCreditMainRecID() { return RA_CreditMain_RecID; } public RA_CreditLinesQuery setRaCreditMainRecID(String value) { this.RA_CreditMain_RecID = value; return this; } public String getRaCreditMainRecIDStartsWith() { return RA_CreditMain_RecIDStartsWith; } public RA_CreditLinesQuery setRaCreditMainRecIDStartsWith(String value) { this.RA_CreditMain_RecIDStartsWith = value; return this; } public String getRaCreditMainRecIDEndsWith() { return RA_CreditMain_RecIDEndsWith; } public RA_CreditLinesQuery setRaCreditMainRecIDEndsWith(String value) { this.RA_CreditMain_RecIDEndsWith = value; return this; } public String getRaCreditMainRecIDContains() { return RA_CreditMain_RecIDContains; } public RA_CreditLinesQuery setRaCreditMainRecIDContains(String value) { this.RA_CreditMain_RecIDContains = value; return this; } public String getRaCreditMainRecIDLike() { return RA_CreditMain_RecIDLike; } public RA_CreditLinesQuery setRaCreditMainRecIDLike(String value) { this.RA_CreditMain_RecIDLike = value; return this; } public ArrayList getRaCreditMainRecIDBetween() { return RA_CreditMain_RecIDBetween; } public RA_CreditLinesQuery setRaCreditMainRecIDBetween(ArrayList value) { this.RA_CreditMain_RecIDBetween = value; return this; } public ArrayList getRaCreditMainRecIDIn() { return RA_CreditMain_RecIDIn; } public RA_CreditLinesQuery setRaCreditMainRecIDIn(ArrayList value) { this.RA_CreditMain_RecIDIn = value; return this; } public String getRaShipLinesRecID() { return RA_ShipLines_RecID; } public RA_CreditLinesQuery setRaShipLinesRecID(String value) { this.RA_ShipLines_RecID = value; return this; } public String getRaShipLinesRecIDStartsWith() { return RA_ShipLines_RecIDStartsWith; } public RA_CreditLinesQuery setRaShipLinesRecIDStartsWith(String value) { this.RA_ShipLines_RecIDStartsWith = value; return this; } public String getRaShipLinesRecIDEndsWith() { return RA_ShipLines_RecIDEndsWith; } public RA_CreditLinesQuery setRaShipLinesRecIDEndsWith(String value) { this.RA_ShipLines_RecIDEndsWith = value; return this; } public String getRaShipLinesRecIDContains() { return RA_ShipLines_RecIDContains; } public RA_CreditLinesQuery setRaShipLinesRecIDContains(String value) { this.RA_ShipLines_RecIDContains = value; return this; } public String getRaShipLinesRecIDLike() { return RA_ShipLines_RecIDLike; } public RA_CreditLinesQuery setRaShipLinesRecIDLike(String value) { this.RA_ShipLines_RecIDLike = value; return this; } public ArrayList getRaShipLinesRecIDBetween() { return RA_ShipLines_RecIDBetween; } public RA_CreditLinesQuery setRaShipLinesRecIDBetween(ArrayList value) { this.RA_ShipLines_RecIDBetween = value; return this; } public ArrayList getRaShipLinesRecIDIn() { return RA_ShipLines_RecIDIn; } public RA_CreditLinesQuery setRaShipLinesRecIDIn(ArrayList value) { this.RA_ShipLines_RecIDIn = value; return this; } public BigDecimal getQuantity() { return Quantity; } public RA_CreditLinesQuery setQuantity(BigDecimal value) { this.Quantity = value; return this; } public BigDecimal getQuantityGreaterThanOrEqualTo() { return QuantityGreaterThanOrEqualTo; } public RA_CreditLinesQuery setQuantityGreaterThanOrEqualTo(BigDecimal value) { this.QuantityGreaterThanOrEqualTo = value; return this; } public BigDecimal getQuantityGreaterThan() { return QuantityGreaterThan; } public RA_CreditLinesQuery setQuantityGreaterThan(BigDecimal value) { this.QuantityGreaterThan = value; return this; } public BigDecimal getQuantityLessThan() { return QuantityLessThan; } public RA_CreditLinesQuery setQuantityLessThan(BigDecimal value) { this.QuantityLessThan = value; return this; } public BigDecimal getQuantityLessThanOrEqualTo() { return QuantityLessThanOrEqualTo; } public RA_CreditLinesQuery setQuantityLessThanOrEqualTo(BigDecimal value) { this.QuantityLessThanOrEqualTo = value; return this; } public BigDecimal getQuantityNotEqualTo() { return QuantityNotEqualTo; } public RA_CreditLinesQuery setQuantityNotEqualTo(BigDecimal value) { this.QuantityNotEqualTo = value; return this; } public ArrayList getQuantityBetween() { return QuantityBetween; } public RA_CreditLinesQuery setQuantityBetween(ArrayList value) { this.QuantityBetween = value; return this; } public ArrayList getQuantityIn() { return QuantityIn; } public RA_CreditLinesQuery setQuantityIn(ArrayList value) { this.QuantityIn = value; return this; } public String getRaReturnCodesRecID() { return RA_ReturnCodes_RecID; } public RA_CreditLinesQuery setRaReturnCodesRecID(String value) { this.RA_ReturnCodes_RecID = value; return this; } public String getRaReturnCodesRecIDStartsWith() { return RA_ReturnCodes_RecIDStartsWith; } public RA_CreditLinesQuery setRaReturnCodesRecIDStartsWith(String value) { this.RA_ReturnCodes_RecIDStartsWith = value; return this; } public String getRaReturnCodesRecIDEndsWith() { return RA_ReturnCodes_RecIDEndsWith; } public RA_CreditLinesQuery setRaReturnCodesRecIDEndsWith(String value) { this.RA_ReturnCodes_RecIDEndsWith = value; return this; } public String getRaReturnCodesRecIDContains() { return RA_ReturnCodes_RecIDContains; } public RA_CreditLinesQuery setRaReturnCodesRecIDContains(String value) { this.RA_ReturnCodes_RecIDContains = value; return this; } public String getRaReturnCodesRecIDLike() { return RA_ReturnCodes_RecIDLike; } public RA_CreditLinesQuery setRaReturnCodesRecIDLike(String value) { this.RA_ReturnCodes_RecIDLike = value; return this; } public ArrayList getRaReturnCodesRecIDBetween() { return RA_ReturnCodes_RecIDBetween; } public RA_CreditLinesQuery setRaReturnCodesRecIDBetween(ArrayList value) { this.RA_ReturnCodes_RecIDBetween = value; return this; } public ArrayList getRaReturnCodesRecIDIn() { return RA_ReturnCodes_RecIDIn; } public RA_CreditLinesQuery setRaReturnCodesRecIDIn(ArrayList value) { this.RA_ReturnCodes_RecIDIn = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public RA_CreditLinesQuery setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getLastSavedDateTimeGreaterThanOrEqualTo() { return LastSavedDateTimeGreaterThanOrEqualTo; } public RA_CreditLinesQuery setLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.LastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeGreaterThan() { return LastSavedDateTimeGreaterThan; } public RA_CreditLinesQuery setLastSavedDateTimeGreaterThan(Date value) { this.LastSavedDateTimeGreaterThan = value; return this; } public Date getLastSavedDateTimeLessThan() { return LastSavedDateTimeLessThan; } public RA_CreditLinesQuery setLastSavedDateTimeLessThan(Date value) { this.LastSavedDateTimeLessThan = value; return this; } public Date getLastSavedDateTimeLessThanOrEqualTo() { return LastSavedDateTimeLessThanOrEqualTo; } public RA_CreditLinesQuery setLastSavedDateTimeLessThanOrEqualTo(Date value) { this.LastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeNotEqualTo() { return LastSavedDateTimeNotEqualTo; } public RA_CreditLinesQuery setLastSavedDateTimeNotEqualTo(Date value) { this.LastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getLastSavedDateTimeBetween() { return LastSavedDateTimeBetween; } public RA_CreditLinesQuery setLastSavedDateTimeBetween(ArrayList value) { this.LastSavedDateTimeBetween = value; return this; } public ArrayList getLastSavedDateTimeIn() { return LastSavedDateTimeIn; } public RA_CreditLinesQuery setLastSavedDateTimeIn(ArrayList value) { this.LastSavedDateTimeIn = value; return this; } public String getRemark() { return Remark; } public RA_CreditLinesQuery setRemark(String value) { this.Remark = value; return this; } public String getRemarkStartsWith() { return RemarkStartsWith; } public RA_CreditLinesQuery setRemarkStartsWith(String value) { this.RemarkStartsWith = value; return this; } public String getRemarkEndsWith() { return RemarkEndsWith; } public RA_CreditLinesQuery setRemarkEndsWith(String value) { this.RemarkEndsWith = value; return this; } public String getRemarkContains() { return RemarkContains; } public RA_CreditLinesQuery setRemarkContains(String value) { this.RemarkContains = value; return this; } public String getRemarkLike() { return RemarkLike; } public RA_CreditLinesQuery setRemarkLike(String value) { this.RemarkLike = value; return this; } public ArrayList getRemarkBetween() { return RemarkBetween; } public RA_CreditLinesQuery setRemarkBetween(ArrayList value) { this.RemarkBetween = value; return this; } public ArrayList getRemarkIn() { return RemarkIn; } public RA_CreditLinesQuery setRemarkIn(ArrayList value) { this.RemarkIn = value; return this; } public BigDecimal getTotalCreditValue() { return TotalCreditValue; } public RA_CreditLinesQuery setTotalCreditValue(BigDecimal value) { this.TotalCreditValue = value; return this; } public BigDecimal getTotalCreditValueGreaterThanOrEqualTo() { return TotalCreditValueGreaterThanOrEqualTo; } public RA_CreditLinesQuery setTotalCreditValueGreaterThanOrEqualTo(BigDecimal value) { this.TotalCreditValueGreaterThanOrEqualTo = value; return this; } public BigDecimal getTotalCreditValueGreaterThan() { return TotalCreditValueGreaterThan; } public RA_CreditLinesQuery setTotalCreditValueGreaterThan(BigDecimal value) { this.TotalCreditValueGreaterThan = value; return this; } public BigDecimal getTotalCreditValueLessThan() { return TotalCreditValueLessThan; } public RA_CreditLinesQuery setTotalCreditValueLessThan(BigDecimal value) { this.TotalCreditValueLessThan = value; return this; } public BigDecimal getTotalCreditValueLessThanOrEqualTo() { return TotalCreditValueLessThanOrEqualTo; } public RA_CreditLinesQuery setTotalCreditValueLessThanOrEqualTo(BigDecimal value) { this.TotalCreditValueLessThanOrEqualTo = value; return this; } public BigDecimal getTotalCreditValueNotEqualTo() { return TotalCreditValueNotEqualTo; } public RA_CreditLinesQuery setTotalCreditValueNotEqualTo(BigDecimal value) { this.TotalCreditValueNotEqualTo = value; return this; } public ArrayList getTotalCreditValueBetween() { return TotalCreditValueBetween; } public RA_CreditLinesQuery setTotalCreditValueBetween(ArrayList value) { this.TotalCreditValueBetween = value; return this; } public ArrayList getTotalCreditValueIn() { return TotalCreditValueIn; } public RA_CreditLinesQuery setTotalCreditValueIn(ArrayList value) { this.TotalCreditValueIn = value; return this; } public Boolean isCompleted() { return Completed; } public RA_CreditLinesQuery setCompleted(Boolean value) { this.Completed = value; return this; } public String getInventoryID() { return InventoryID; } public RA_CreditLinesQuery setInventoryID(String value) { this.InventoryID = value; return this; } public String getInventoryIDStartsWith() { return InventoryIDStartsWith; } public RA_CreditLinesQuery setInventoryIDStartsWith(String value) { this.InventoryIDStartsWith = value; return this; } public String getInventoryIDEndsWith() { return InventoryIDEndsWith; } public RA_CreditLinesQuery setInventoryIDEndsWith(String value) { this.InventoryIDEndsWith = value; return this; } public String getInventoryIDContains() { return InventoryIDContains; } public RA_CreditLinesQuery setInventoryIDContains(String value) { this.InventoryIDContains = value; return this; } public String getInventoryIDLike() { return InventoryIDLike; } public RA_CreditLinesQuery setInventoryIDLike(String value) { this.InventoryIDLike = value; return this; } public ArrayList getInventoryIDBetween() { return InventoryIDBetween; } public RA_CreditLinesQuery setInventoryIDBetween(ArrayList value) { this.InventoryIDBetween = value; return this; } public ArrayList getInventoryIDIn() { return InventoryIDIn; } public RA_CreditLinesQuery setInventoryIDIn(ArrayList value) { this.InventoryIDIn = value; return this; } public String getLinkLineID() { return LinkLineID; } public RA_CreditLinesQuery setLinkLineID(String value) { this.LinkLineID = value; return this; } public String getLinkLineIDStartsWith() { return LinkLineIDStartsWith; } public RA_CreditLinesQuery setLinkLineIDStartsWith(String value) { this.LinkLineIDStartsWith = value; return this; } public String getLinkLineIDEndsWith() { return LinkLineIDEndsWith; } public RA_CreditLinesQuery setLinkLineIDEndsWith(String value) { this.LinkLineIDEndsWith = value; return this; } public String getLinkLineIDContains() { return LinkLineIDContains; } public RA_CreditLinesQuery setLinkLineIDContains(String value) { this.LinkLineIDContains = value; return this; } public String getLinkLineIDLike() { return LinkLineIDLike; } public RA_CreditLinesQuery setLinkLineIDLike(String value) { this.LinkLineIDLike = value; return this; } public ArrayList getLinkLineIDBetween() { return LinkLineIDBetween; } public RA_CreditLinesQuery setLinkLineIDBetween(ArrayList value) { this.LinkLineIDBetween = value; return this; } public ArrayList getLinkLineIDIn() { return LinkLineIDIn; } public RA_CreditLinesQuery setLinkLineIDIn(ArrayList value) { this.LinkLineIDIn = value; return this; } public String getTaxID() { return TaxID; } public RA_CreditLinesQuery setTaxID(String value) { this.TaxID = value; return this; } public String getTaxIDStartsWith() { return TaxIDStartsWith; } public RA_CreditLinesQuery setTaxIDStartsWith(String value) { this.TaxIDStartsWith = value; return this; } public String getTaxIDEndsWith() { return TaxIDEndsWith; } public RA_CreditLinesQuery setTaxIDEndsWith(String value) { this.TaxIDEndsWith = value; return this; } public String getTaxIDContains() { return TaxIDContains; } public RA_CreditLinesQuery setTaxIDContains(String value) { this.TaxIDContains = value; return this; } public String getTaxIDLike() { return TaxIDLike; } public RA_CreditLinesQuery setTaxIDLike(String value) { this.TaxIDLike = value; return this; } public ArrayList getTaxIDBetween() { return TaxIDBetween; } public RA_CreditLinesQuery setTaxIDBetween(ArrayList value) { this.TaxIDBetween = value; return this; } public ArrayList getTaxIDIn() { return TaxIDIn; } public RA_CreditLinesQuery setTaxIDIn(ArrayList value) { this.TaxIDIn = value; return this; } public BigDecimal getTaxAmount() { return TaxAmount; } public RA_CreditLinesQuery setTaxAmount(BigDecimal value) { this.TaxAmount = value; return this; } public BigDecimal getTaxAmountGreaterThanOrEqualTo() { return TaxAmountGreaterThanOrEqualTo; } public RA_CreditLinesQuery setTaxAmountGreaterThanOrEqualTo(BigDecimal value) { this.TaxAmountGreaterThanOrEqualTo = value; return this; } public BigDecimal getTaxAmountGreaterThan() { return TaxAmountGreaterThan; } public RA_CreditLinesQuery setTaxAmountGreaterThan(BigDecimal value) { this.TaxAmountGreaterThan = value; return this; } public BigDecimal getTaxAmountLessThan() { return TaxAmountLessThan; } public RA_CreditLinesQuery setTaxAmountLessThan(BigDecimal value) { this.TaxAmountLessThan = value; return this; } public BigDecimal getTaxAmountLessThanOrEqualTo() { return TaxAmountLessThanOrEqualTo; } public RA_CreditLinesQuery setTaxAmountLessThanOrEqualTo(BigDecimal value) { this.TaxAmountLessThanOrEqualTo = value; return this; } public BigDecimal getTaxAmountNotEqualTo() { return TaxAmountNotEqualTo; } public RA_CreditLinesQuery setTaxAmountNotEqualTo(BigDecimal value) { this.TaxAmountNotEqualTo = value; return this; } public ArrayList getTaxAmountBetween() { return TaxAmountBetween; } public RA_CreditLinesQuery setTaxAmountBetween(ArrayList value) { this.TaxAmountBetween = value; return this; } public ArrayList getTaxAmountIn() { return TaxAmountIn; } public RA_CreditLinesQuery setTaxAmountIn(ArrayList value) { this.TaxAmountIn = value; return this; } public ArrayList getRowHash() { return RowHash; } public RA_CreditLinesQuery setRowHash(ArrayList value) { this.RowHash = value; return this; } public Integer getItemNo() { return ItemNo; } public RA_CreditLinesQuery setItemNo(Integer value) { this.ItemNo = value; return this; } public Integer getItemNoGreaterThanOrEqualTo() { return ItemNoGreaterThanOrEqualTo; } public RA_CreditLinesQuery setItemNoGreaterThanOrEqualTo(Integer value) { this.ItemNoGreaterThanOrEqualTo = value; return this; } public Integer getItemNoGreaterThan() { return ItemNoGreaterThan; } public RA_CreditLinesQuery setItemNoGreaterThan(Integer value) { this.ItemNoGreaterThan = value; return this; } public Integer getItemNoLessThan() { return ItemNoLessThan; } public RA_CreditLinesQuery setItemNoLessThan(Integer value) { this.ItemNoLessThan = value; return this; } public Integer getItemNoLessThanOrEqualTo() { return ItemNoLessThanOrEqualTo; } public RA_CreditLinesQuery setItemNoLessThanOrEqualTo(Integer value) { this.ItemNoLessThanOrEqualTo = value; return this; } public Integer getItemNoNotEqualTo() { return ItemNoNotEqualTo; } public RA_CreditLinesQuery setItemNoNotEqualTo(Integer value) { this.ItemNoNotEqualTo = value; return this; } public ArrayList getItemNoBetween() { return ItemNoBetween; } public RA_CreditLinesQuery setItemNoBetween(ArrayList value) { this.ItemNoBetween = value; return this; } public ArrayList getItemNoIn() { return ItemNoIn; } public RA_CreditLinesQuery setItemNoIn(ArrayList value) { this.ItemNoIn = value; return this; } public String getPoLinesOrderLineID() { return PO_Lines_OrderLineID; } public RA_CreditLinesQuery setPoLinesOrderLineID(String value) { this.PO_Lines_OrderLineID = value; return this; } public String getPoLinesOrderLineIDStartsWith() { return PO_Lines_OrderLineIDStartsWith; } public RA_CreditLinesQuery setPoLinesOrderLineIDStartsWith(String value) { this.PO_Lines_OrderLineIDStartsWith = value; return this; } public String getPoLinesOrderLineIDEndsWith() { return PO_Lines_OrderLineIDEndsWith; } public RA_CreditLinesQuery setPoLinesOrderLineIDEndsWith(String value) { this.PO_Lines_OrderLineIDEndsWith = value; return this; } public String getPoLinesOrderLineIDContains() { return PO_Lines_OrderLineIDContains; } public RA_CreditLinesQuery setPoLinesOrderLineIDContains(String value) { this.PO_Lines_OrderLineIDContains = value; return this; } public String getPoLinesOrderLineIDLike() { return PO_Lines_OrderLineIDLike; } public RA_CreditLinesQuery setPoLinesOrderLineIDLike(String value) { this.PO_Lines_OrderLineIDLike = value; return this; } public ArrayList getPoLinesOrderLineIDBetween() { return PO_Lines_OrderLineIDBetween; } public RA_CreditLinesQuery setPoLinesOrderLineIDBetween(ArrayList value) { this.PO_Lines_OrderLineIDBetween = value; return this; } public ArrayList getPoLinesOrderLineIDIn() { return PO_Lines_OrderLineIDIn; } public RA_CreditLinesQuery setPoLinesOrderLineIDIn(ArrayList value) { this.PO_Lines_OrderLineIDIn = value; return this; } public BigDecimal getFxUnitCreditValue() { return FXUnitCreditValue; } public RA_CreditLinesQuery setFxUnitCreditValue(BigDecimal value) { this.FXUnitCreditValue = value; return this; } public BigDecimal getFxUnitCreditValueGreaterThanOrEqualTo() { return FXUnitCreditValueGreaterThanOrEqualTo; } public RA_CreditLinesQuery setFxUnitCreditValueGreaterThanOrEqualTo(BigDecimal value) { this.FXUnitCreditValueGreaterThanOrEqualTo = value; return this; } public BigDecimal getFxUnitCreditValueGreaterThan() { return FXUnitCreditValueGreaterThan; } public RA_CreditLinesQuery setFxUnitCreditValueGreaterThan(BigDecimal value) { this.FXUnitCreditValueGreaterThan = value; return this; } public BigDecimal getFxUnitCreditValueLessThan() { return FXUnitCreditValueLessThan; } public RA_CreditLinesQuery setFxUnitCreditValueLessThan(BigDecimal value) { this.FXUnitCreditValueLessThan = value; return this; } public BigDecimal getFxUnitCreditValueLessThanOrEqualTo() { return FXUnitCreditValueLessThanOrEqualTo; } public RA_CreditLinesQuery setFxUnitCreditValueLessThanOrEqualTo(BigDecimal value) { this.FXUnitCreditValueLessThanOrEqualTo = value; return this; } public BigDecimal getFxUnitCreditValueNotEqualTo() { return FXUnitCreditValueNotEqualTo; } public RA_CreditLinesQuery setFxUnitCreditValueNotEqualTo(BigDecimal value) { this.FXUnitCreditValueNotEqualTo = value; return this; } public ArrayList getFxUnitCreditValueBetween() { return FXUnitCreditValueBetween; } public RA_CreditLinesQuery setFxUnitCreditValueBetween(ArrayList value) { this.FXUnitCreditValueBetween = value; return this; } public ArrayList getFxUnitCreditValueIn() { return FXUnitCreditValueIn; } public RA_CreditLinesQuery setFxUnitCreditValueIn(ArrayList value) { this.FXUnitCreditValueIn = value; return this; } public BigDecimal getFxTotalCreditValue() { return FXTotalCreditValue; } public RA_CreditLinesQuery setFxTotalCreditValue(BigDecimal value) { this.FXTotalCreditValue = value; return this; } public BigDecimal getFxTotalCreditValueGreaterThanOrEqualTo() { return FXTotalCreditValueGreaterThanOrEqualTo; } public RA_CreditLinesQuery setFxTotalCreditValueGreaterThanOrEqualTo(BigDecimal value) { this.FXTotalCreditValueGreaterThanOrEqualTo = value; return this; } public BigDecimal getFxTotalCreditValueGreaterThan() { return FXTotalCreditValueGreaterThan; } public RA_CreditLinesQuery setFxTotalCreditValueGreaterThan(BigDecimal value) { this.FXTotalCreditValueGreaterThan = value; return this; } public BigDecimal getFxTotalCreditValueLessThan() { return FXTotalCreditValueLessThan; } public RA_CreditLinesQuery setFxTotalCreditValueLessThan(BigDecimal value) { this.FXTotalCreditValueLessThan = value; return this; } public BigDecimal getFxTotalCreditValueLessThanOrEqualTo() { return FXTotalCreditValueLessThanOrEqualTo; } public RA_CreditLinesQuery setFxTotalCreditValueLessThanOrEqualTo(BigDecimal value) { this.FXTotalCreditValueLessThanOrEqualTo = value; return this; } public BigDecimal getFxTotalCreditValueNotEqualTo() { return FXTotalCreditValueNotEqualTo; } public RA_CreditLinesQuery setFxTotalCreditValueNotEqualTo(BigDecimal value) { this.FXTotalCreditValueNotEqualTo = value; return this; } public ArrayList getFxTotalCreditValueBetween() { return FXTotalCreditValueBetween; } public RA_CreditLinesQuery setFxTotalCreditValueBetween(ArrayList value) { this.FXTotalCreditValueBetween = value; return this; } public ArrayList getFxTotalCreditValueIn() { return FXTotalCreditValueIn; } public RA_CreditLinesQuery setFxTotalCreditValueIn(ArrayList value) { this.FXTotalCreditValueIn = value; return this; } public BigDecimal getFxRate() { return FXRate; } public RA_CreditLinesQuery setFxRate(BigDecimal value) { this.FXRate = value; return this; } public BigDecimal getFxRateGreaterThanOrEqualTo() { return FXRateGreaterThanOrEqualTo; } public RA_CreditLinesQuery setFxRateGreaterThanOrEqualTo(BigDecimal value) { this.FXRateGreaterThanOrEqualTo = value; return this; } public BigDecimal getFxRateGreaterThan() { return FXRateGreaterThan; } public RA_CreditLinesQuery setFxRateGreaterThan(BigDecimal value) { this.FXRateGreaterThan = value; return this; } public BigDecimal getFxRateLessThan() { return FXRateLessThan; } public RA_CreditLinesQuery setFxRateLessThan(BigDecimal value) { this.FXRateLessThan = value; return this; } public BigDecimal getFxRateLessThanOrEqualTo() { return FXRateLessThanOrEqualTo; } public RA_CreditLinesQuery setFxRateLessThanOrEqualTo(BigDecimal value) { this.FXRateLessThanOrEqualTo = value; return this; } public BigDecimal getFxRateNotEqualTo() { return FXRateNotEqualTo; } public RA_CreditLinesQuery setFxRateNotEqualTo(BigDecimal value) { this.FXRateNotEqualTo = value; return this; } public ArrayList getFxRateBetween() { return FXRateBetween; } public RA_CreditLinesQuery setFxRateBetween(ArrayList value) { this.FXRateBetween = value; return this; } public ArrayList getFxRateIn() { return FXRateIn; } public RA_CreditLinesQuery setFxRateIn(ArrayList value) { this.FXRateIn = value; return this; } public BigDecimal getUnitCreditValue() { return UnitCreditValue; } public RA_CreditLinesQuery setUnitCreditValue(BigDecimal value) { this.UnitCreditValue = value; return this; } public BigDecimal getUnitCreditValueGreaterThanOrEqualTo() { return UnitCreditValueGreaterThanOrEqualTo; } public RA_CreditLinesQuery setUnitCreditValueGreaterThanOrEqualTo(BigDecimal value) { this.UnitCreditValueGreaterThanOrEqualTo = value; return this; } public BigDecimal getUnitCreditValueGreaterThan() { return UnitCreditValueGreaterThan; } public RA_CreditLinesQuery setUnitCreditValueGreaterThan(BigDecimal value) { this.UnitCreditValueGreaterThan = value; return this; } public BigDecimal getUnitCreditValueLessThan() { return UnitCreditValueLessThan; } public RA_CreditLinesQuery setUnitCreditValueLessThan(BigDecimal value) { this.UnitCreditValueLessThan = value; return this; } public BigDecimal getUnitCreditValueLessThanOrEqualTo() { return UnitCreditValueLessThanOrEqualTo; } public RA_CreditLinesQuery setUnitCreditValueLessThanOrEqualTo(BigDecimal value) { this.UnitCreditValueLessThanOrEqualTo = value; return this; } public BigDecimal getUnitCreditValueNotEqualTo() { return UnitCreditValueNotEqualTo; } public RA_CreditLinesQuery setUnitCreditValueNotEqualTo(BigDecimal value) { this.UnitCreditValueNotEqualTo = value; return this; } public ArrayList getUnitCreditValueBetween() { return UnitCreditValueBetween; } public RA_CreditLinesQuery setUnitCreditValueBetween(ArrayList value) { this.UnitCreditValueBetween = value; return this; } public ArrayList getUnitCreditValueIn() { return UnitCreditValueIn; } public RA_CreditLinesQuery setUnitCreditValueIn(ArrayList value) { this.UnitCreditValueIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class RA_CreditLinesCustomFieldsQuery extends QueryDb implements IReturn> { public String RecID = null; public String RecIDStartsWith = null; public String RecIDEndsWith = null; public String RecIDContains = null; public String RecIDLike = null; public ArrayList RecIDBetween = null; public ArrayList RecIDIn = null; public String SettingName = null; public String SettingNameStartsWith = null; public String SettingNameEndsWith = null; public String SettingNameContains = null; public String SettingNameLike = null; public ArrayList SettingNameBetween = null; public ArrayList SettingNameIn = null; public String SettingDescription = null; public String SettingDescriptionStartsWith = null; public String SettingDescriptionEndsWith = null; public String SettingDescriptionContains = null; public String SettingDescriptionLike = null; public ArrayList SettingDescriptionBetween = null; public ArrayList SettingDescriptionIn = null; public Integer CellType = null; public Integer CellTypeGreaterThanOrEqualTo = null; public Integer CellTypeGreaterThan = null; public Integer CellTypeLessThan = null; public Integer CellTypeLessThanOrEqualTo = null; public Integer CellTypeNotEqualTo = null; public ArrayList CellTypeBetween = null; public ArrayList CellTypeIn = null; public String FieldParameter = null; public String FieldParameterStartsWith = null; public String FieldParameterEndsWith = null; public String FieldParameterContains = null; public String FieldParameterLike = null; public ArrayList FieldParameterBetween = null; public ArrayList FieldParameterIn = null; public UUID SY_Plugin_RecID = null; public ArrayList SY_Plugin_RecIDIn = null; public Date LastSavedDateTime = null; public Date LastSavedDateTimeGreaterThanOrEqualTo = null; public Date LastSavedDateTimeGreaterThan = null; public Date LastSavedDateTimeLessThan = null; public Date LastSavedDateTimeLessThanOrEqualTo = null; public Date LastSavedDateTimeNotEqualTo = null; public ArrayList LastSavedDateTimeBetween = null; public ArrayList LastSavedDateTimeIn = null; public Integer DisplayOrder = null; public Integer DisplayOrderGreaterThanOrEqualTo = null; public Integer DisplayOrderGreaterThan = null; public Integer DisplayOrderLessThan = null; public Integer DisplayOrderLessThanOrEqualTo = null; public Integer DisplayOrderNotEqualTo = null; public ArrayList DisplayOrderBetween = null; public ArrayList DisplayOrderIn = null; public String getRecID() { return RecID; } public RA_CreditLinesCustomFieldsQuery setRecID(String value) { this.RecID = value; return this; } public String getRecIDStartsWith() { return RecIDStartsWith; } public RA_CreditLinesCustomFieldsQuery setRecIDStartsWith(String value) { this.RecIDStartsWith = value; return this; } public String getRecIDEndsWith() { return RecIDEndsWith; } public RA_CreditLinesCustomFieldsQuery setRecIDEndsWith(String value) { this.RecIDEndsWith = value; return this; } public String getRecIDContains() { return RecIDContains; } public RA_CreditLinesCustomFieldsQuery setRecIDContains(String value) { this.RecIDContains = value; return this; } public String getRecIDLike() { return RecIDLike; } public RA_CreditLinesCustomFieldsQuery setRecIDLike(String value) { this.RecIDLike = value; return this; } public ArrayList getRecIDBetween() { return RecIDBetween; } public RA_CreditLinesCustomFieldsQuery setRecIDBetween(ArrayList value) { this.RecIDBetween = value; return this; } public ArrayList getRecIDIn() { return RecIDIn; } public RA_CreditLinesCustomFieldsQuery setRecIDIn(ArrayList value) { this.RecIDIn = value; return this; } public String getSettingName() { return SettingName; } public RA_CreditLinesCustomFieldsQuery setSettingName(String value) { this.SettingName = value; return this; } public String getSettingNameStartsWith() { return SettingNameStartsWith; } public RA_CreditLinesCustomFieldsQuery setSettingNameStartsWith(String value) { this.SettingNameStartsWith = value; return this; } public String getSettingNameEndsWith() { return SettingNameEndsWith; } public RA_CreditLinesCustomFieldsQuery setSettingNameEndsWith(String value) { this.SettingNameEndsWith = value; return this; } public String getSettingNameContains() { return SettingNameContains; } public RA_CreditLinesCustomFieldsQuery setSettingNameContains(String value) { this.SettingNameContains = value; return this; } public String getSettingNameLike() { return SettingNameLike; } public RA_CreditLinesCustomFieldsQuery setSettingNameLike(String value) { this.SettingNameLike = value; return this; } public ArrayList getSettingNameBetween() { return SettingNameBetween; } public RA_CreditLinesCustomFieldsQuery setSettingNameBetween(ArrayList value) { this.SettingNameBetween = value; return this; } public ArrayList getSettingNameIn() { return SettingNameIn; } public RA_CreditLinesCustomFieldsQuery setSettingNameIn(ArrayList value) { this.SettingNameIn = value; return this; } public String getSettingDescription() { return SettingDescription; } public RA_CreditLinesCustomFieldsQuery setSettingDescription(String value) { this.SettingDescription = value; return this; } public String getSettingDescriptionStartsWith() { return SettingDescriptionStartsWith; } public RA_CreditLinesCustomFieldsQuery setSettingDescriptionStartsWith(String value) { this.SettingDescriptionStartsWith = value; return this; } public String getSettingDescriptionEndsWith() { return SettingDescriptionEndsWith; } public RA_CreditLinesCustomFieldsQuery setSettingDescriptionEndsWith(String value) { this.SettingDescriptionEndsWith = value; return this; } public String getSettingDescriptionContains() { return SettingDescriptionContains; } public RA_CreditLinesCustomFieldsQuery setSettingDescriptionContains(String value) { this.SettingDescriptionContains = value; return this; } public String getSettingDescriptionLike() { return SettingDescriptionLike; } public RA_CreditLinesCustomFieldsQuery setSettingDescriptionLike(String value) { this.SettingDescriptionLike = value; return this; } public ArrayList getSettingDescriptionBetween() { return SettingDescriptionBetween; } public RA_CreditLinesCustomFieldsQuery setSettingDescriptionBetween(ArrayList value) { this.SettingDescriptionBetween = value; return this; } public ArrayList getSettingDescriptionIn() { return SettingDescriptionIn; } public RA_CreditLinesCustomFieldsQuery setSettingDescriptionIn(ArrayList value) { this.SettingDescriptionIn = value; return this; } public Integer getCellType() { return CellType; } public RA_CreditLinesCustomFieldsQuery setCellType(Integer value) { this.CellType = value; return this; } public Integer getCellTypeGreaterThanOrEqualTo() { return CellTypeGreaterThanOrEqualTo; } public RA_CreditLinesCustomFieldsQuery setCellTypeGreaterThanOrEqualTo(Integer value) { this.CellTypeGreaterThanOrEqualTo = value; return this; } public Integer getCellTypeGreaterThan() { return CellTypeGreaterThan; } public RA_CreditLinesCustomFieldsQuery setCellTypeGreaterThan(Integer value) { this.CellTypeGreaterThan = value; return this; } public Integer getCellTypeLessThan() { return CellTypeLessThan; } public RA_CreditLinesCustomFieldsQuery setCellTypeLessThan(Integer value) { this.CellTypeLessThan = value; return this; } public Integer getCellTypeLessThanOrEqualTo() { return CellTypeLessThanOrEqualTo; } public RA_CreditLinesCustomFieldsQuery setCellTypeLessThanOrEqualTo(Integer value) { this.CellTypeLessThanOrEqualTo = value; return this; } public Integer getCellTypeNotEqualTo() { return CellTypeNotEqualTo; } public RA_CreditLinesCustomFieldsQuery setCellTypeNotEqualTo(Integer value) { this.CellTypeNotEqualTo = value; return this; } public ArrayList getCellTypeBetween() { return CellTypeBetween; } public RA_CreditLinesCustomFieldsQuery setCellTypeBetween(ArrayList value) { this.CellTypeBetween = value; return this; } public ArrayList getCellTypeIn() { return CellTypeIn; } public RA_CreditLinesCustomFieldsQuery setCellTypeIn(ArrayList value) { this.CellTypeIn = value; return this; } public String getFieldParameter() { return FieldParameter; } public RA_CreditLinesCustomFieldsQuery setFieldParameter(String value) { this.FieldParameter = value; return this; } public String getFieldParameterStartsWith() { return FieldParameterStartsWith; } public RA_CreditLinesCustomFieldsQuery setFieldParameterStartsWith(String value) { this.FieldParameterStartsWith = value; return this; } public String getFieldParameterEndsWith() { return FieldParameterEndsWith; } public RA_CreditLinesCustomFieldsQuery setFieldParameterEndsWith(String value) { this.FieldParameterEndsWith = value; return this; } public String getFieldParameterContains() { return FieldParameterContains; } public RA_CreditLinesCustomFieldsQuery setFieldParameterContains(String value) { this.FieldParameterContains = value; return this; } public String getFieldParameterLike() { return FieldParameterLike; } public RA_CreditLinesCustomFieldsQuery setFieldParameterLike(String value) { this.FieldParameterLike = value; return this; } public ArrayList getFieldParameterBetween() { return FieldParameterBetween; } public RA_CreditLinesCustomFieldsQuery setFieldParameterBetween(ArrayList value) { this.FieldParameterBetween = value; return this; } public ArrayList getFieldParameterIn() { return FieldParameterIn; } public RA_CreditLinesCustomFieldsQuery setFieldParameterIn(ArrayList value) { this.FieldParameterIn = value; return this; } public UUID getSyPluginRecID() { return SY_Plugin_RecID; } public RA_CreditLinesCustomFieldsQuery setSyPluginRecID(UUID value) { this.SY_Plugin_RecID = value; return this; } public ArrayList getSyPluginRecIDIn() { return SY_Plugin_RecIDIn; } public RA_CreditLinesCustomFieldsQuery setSyPluginRecIDIn(ArrayList value) { this.SY_Plugin_RecIDIn = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public RA_CreditLinesCustomFieldsQuery setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getLastSavedDateTimeGreaterThanOrEqualTo() { return LastSavedDateTimeGreaterThanOrEqualTo; } public RA_CreditLinesCustomFieldsQuery setLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.LastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeGreaterThan() { return LastSavedDateTimeGreaterThan; } public RA_CreditLinesCustomFieldsQuery setLastSavedDateTimeGreaterThan(Date value) { this.LastSavedDateTimeGreaterThan = value; return this; } public Date getLastSavedDateTimeLessThan() { return LastSavedDateTimeLessThan; } public RA_CreditLinesCustomFieldsQuery setLastSavedDateTimeLessThan(Date value) { this.LastSavedDateTimeLessThan = value; return this; } public Date getLastSavedDateTimeLessThanOrEqualTo() { return LastSavedDateTimeLessThanOrEqualTo; } public RA_CreditLinesCustomFieldsQuery setLastSavedDateTimeLessThanOrEqualTo(Date value) { this.LastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeNotEqualTo() { return LastSavedDateTimeNotEqualTo; } public RA_CreditLinesCustomFieldsQuery setLastSavedDateTimeNotEqualTo(Date value) { this.LastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getLastSavedDateTimeBetween() { return LastSavedDateTimeBetween; } public RA_CreditLinesCustomFieldsQuery setLastSavedDateTimeBetween(ArrayList value) { this.LastSavedDateTimeBetween = value; return this; } public ArrayList getLastSavedDateTimeIn() { return LastSavedDateTimeIn; } public RA_CreditLinesCustomFieldsQuery setLastSavedDateTimeIn(ArrayList value) { this.LastSavedDateTimeIn = value; return this; } public Integer getDisplayOrder() { return DisplayOrder; } public RA_CreditLinesCustomFieldsQuery setDisplayOrder(Integer value) { this.DisplayOrder = value; return this; } public Integer getDisplayOrderGreaterThanOrEqualTo() { return DisplayOrderGreaterThanOrEqualTo; } public RA_CreditLinesCustomFieldsQuery setDisplayOrderGreaterThanOrEqualTo(Integer value) { this.DisplayOrderGreaterThanOrEqualTo = value; return this; } public Integer getDisplayOrderGreaterThan() { return DisplayOrderGreaterThan; } public RA_CreditLinesCustomFieldsQuery setDisplayOrderGreaterThan(Integer value) { this.DisplayOrderGreaterThan = value; return this; } public Integer getDisplayOrderLessThan() { return DisplayOrderLessThan; } public RA_CreditLinesCustomFieldsQuery setDisplayOrderLessThan(Integer value) { this.DisplayOrderLessThan = value; return this; } public Integer getDisplayOrderLessThanOrEqualTo() { return DisplayOrderLessThanOrEqualTo; } public RA_CreditLinesCustomFieldsQuery setDisplayOrderLessThanOrEqualTo(Integer value) { this.DisplayOrderLessThanOrEqualTo = value; return this; } public Integer getDisplayOrderNotEqualTo() { return DisplayOrderNotEqualTo; } public RA_CreditLinesCustomFieldsQuery setDisplayOrderNotEqualTo(Integer value) { this.DisplayOrderNotEqualTo = value; return this; } public ArrayList getDisplayOrderBetween() { return DisplayOrderBetween; } public RA_CreditLinesCustomFieldsQuery setDisplayOrderBetween(ArrayList value) { this.DisplayOrderBetween = value; return this; } public ArrayList getDisplayOrderIn() { return DisplayOrderIn; } public RA_CreditLinesCustomFieldsQuery setDisplayOrderIn(ArrayList value) { this.DisplayOrderIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class RA_CreditLinesCustomValuesQuery extends QueryDb implements IReturn> { public String RecID = null; public String RecIDStartsWith = null; public String RecIDEndsWith = null; public String RecIDContains = null; public String RecIDLike = null; public ArrayList RecIDBetween = null; public ArrayList RecIDIn = null; public String RA_CreditLines_RecID = null; public String RA_CreditLines_RecIDStartsWith = null; public String RA_CreditLines_RecIDEndsWith = null; public String RA_CreditLines_RecIDContains = null; public String RA_CreditLines_RecIDLike = null; public ArrayList RA_CreditLines_RecIDBetween = null; public ArrayList RA_CreditLines_RecIDIn = null; public String RA_CreditLinesCustomFields_RecID = null; public String RA_CreditLinesCustomFields_RecIDStartsWith = null; public String RA_CreditLinesCustomFields_RecIDEndsWith = null; public String RA_CreditLinesCustomFields_RecIDContains = null; public String RA_CreditLinesCustomFields_RecIDLike = null; public ArrayList RA_CreditLinesCustomFields_RecIDBetween = null; public ArrayList RA_CreditLinesCustomFields_RecIDIn = null; public String Contents = null; public String ContentsStartsWith = null; public String ContentsEndsWith = null; public String ContentsContains = null; public String ContentsLike = null; public ArrayList ContentsBetween = null; public ArrayList ContentsIn = null; public Date LastSavedDateTime = null; public Date LastSavedDateTimeGreaterThanOrEqualTo = null; public Date LastSavedDateTimeGreaterThan = null; public Date LastSavedDateTimeLessThan = null; public Date LastSavedDateTimeLessThanOrEqualTo = null; public Date LastSavedDateTimeNotEqualTo = null; public ArrayList LastSavedDateTimeBetween = null; public ArrayList LastSavedDateTimeIn = null; public String getRecID() { return RecID; } public RA_CreditLinesCustomValuesQuery setRecID(String value) { this.RecID = value; return this; } public String getRecIDStartsWith() { return RecIDStartsWith; } public RA_CreditLinesCustomValuesQuery setRecIDStartsWith(String value) { this.RecIDStartsWith = value; return this; } public String getRecIDEndsWith() { return RecIDEndsWith; } public RA_CreditLinesCustomValuesQuery setRecIDEndsWith(String value) { this.RecIDEndsWith = value; return this; } public String getRecIDContains() { return RecIDContains; } public RA_CreditLinesCustomValuesQuery setRecIDContains(String value) { this.RecIDContains = value; return this; } public String getRecIDLike() { return RecIDLike; } public RA_CreditLinesCustomValuesQuery setRecIDLike(String value) { this.RecIDLike = value; return this; } public ArrayList getRecIDBetween() { return RecIDBetween; } public RA_CreditLinesCustomValuesQuery setRecIDBetween(ArrayList value) { this.RecIDBetween = value; return this; } public ArrayList getRecIDIn() { return RecIDIn; } public RA_CreditLinesCustomValuesQuery setRecIDIn(ArrayList value) { this.RecIDIn = value; return this; } public String getRaCreditLinesRecID() { return RA_CreditLines_RecID; } public RA_CreditLinesCustomValuesQuery setRaCreditLinesRecID(String value) { this.RA_CreditLines_RecID = value; return this; } public String getRaCreditLinesRecIDStartsWith() { return RA_CreditLines_RecIDStartsWith; } public RA_CreditLinesCustomValuesQuery setRaCreditLinesRecIDStartsWith(String value) { this.RA_CreditLines_RecIDStartsWith = value; return this; } public String getRaCreditLinesRecIDEndsWith() { return RA_CreditLines_RecIDEndsWith; } public RA_CreditLinesCustomValuesQuery setRaCreditLinesRecIDEndsWith(String value) { this.RA_CreditLines_RecIDEndsWith = value; return this; } public String getRaCreditLinesRecIDContains() { return RA_CreditLines_RecIDContains; } public RA_CreditLinesCustomValuesQuery setRaCreditLinesRecIDContains(String value) { this.RA_CreditLines_RecIDContains = value; return this; } public String getRaCreditLinesRecIDLike() { return RA_CreditLines_RecIDLike; } public RA_CreditLinesCustomValuesQuery setRaCreditLinesRecIDLike(String value) { this.RA_CreditLines_RecIDLike = value; return this; } public ArrayList getRaCreditLinesRecIDBetween() { return RA_CreditLines_RecIDBetween; } public RA_CreditLinesCustomValuesQuery setRaCreditLinesRecIDBetween(ArrayList value) { this.RA_CreditLines_RecIDBetween = value; return this; } public ArrayList getRaCreditLinesRecIDIn() { return RA_CreditLines_RecIDIn; } public RA_CreditLinesCustomValuesQuery setRaCreditLinesRecIDIn(ArrayList value) { this.RA_CreditLines_RecIDIn = value; return this; } public String getRaCreditLinesCustomFieldsRecID() { return RA_CreditLinesCustomFields_RecID; } public RA_CreditLinesCustomValuesQuery setRaCreditLinesCustomFieldsRecID(String value) { this.RA_CreditLinesCustomFields_RecID = value; return this; } public String getRaCreditLinesCustomFieldsRecIDStartsWith() { return RA_CreditLinesCustomFields_RecIDStartsWith; } public RA_CreditLinesCustomValuesQuery setRaCreditLinesCustomFieldsRecIDStartsWith(String value) { this.RA_CreditLinesCustomFields_RecIDStartsWith = value; return this; } public String getRaCreditLinesCustomFieldsRecIDEndsWith() { return RA_CreditLinesCustomFields_RecIDEndsWith; } public RA_CreditLinesCustomValuesQuery setRaCreditLinesCustomFieldsRecIDEndsWith(String value) { this.RA_CreditLinesCustomFields_RecIDEndsWith = value; return this; } public String getRaCreditLinesCustomFieldsRecIDContains() { return RA_CreditLinesCustomFields_RecIDContains; } public RA_CreditLinesCustomValuesQuery setRaCreditLinesCustomFieldsRecIDContains(String value) { this.RA_CreditLinesCustomFields_RecIDContains = value; return this; } public String getRaCreditLinesCustomFieldsRecIDLike() { return RA_CreditLinesCustomFields_RecIDLike; } public RA_CreditLinesCustomValuesQuery setRaCreditLinesCustomFieldsRecIDLike(String value) { this.RA_CreditLinesCustomFields_RecIDLike = value; return this; } public ArrayList getRaCreditLinesCustomFieldsRecIDBetween() { return RA_CreditLinesCustomFields_RecIDBetween; } public RA_CreditLinesCustomValuesQuery setRaCreditLinesCustomFieldsRecIDBetween(ArrayList value) { this.RA_CreditLinesCustomFields_RecIDBetween = value; return this; } public ArrayList getRaCreditLinesCustomFieldsRecIDIn() { return RA_CreditLinesCustomFields_RecIDIn; } public RA_CreditLinesCustomValuesQuery setRaCreditLinesCustomFieldsRecIDIn(ArrayList value) { this.RA_CreditLinesCustomFields_RecIDIn = value; return this; } public String getContents() { return Contents; } public RA_CreditLinesCustomValuesQuery setContents(String value) { this.Contents = value; return this; } public String getContentsStartsWith() { return ContentsStartsWith; } public RA_CreditLinesCustomValuesQuery setContentsStartsWith(String value) { this.ContentsStartsWith = value; return this; } public String getContentsEndsWith() { return ContentsEndsWith; } public RA_CreditLinesCustomValuesQuery setContentsEndsWith(String value) { this.ContentsEndsWith = value; return this; } public String getContentsContains() { return ContentsContains; } public RA_CreditLinesCustomValuesQuery setContentsContains(String value) { this.ContentsContains = value; return this; } public String getContentsLike() { return ContentsLike; } public RA_CreditLinesCustomValuesQuery setContentsLike(String value) { this.ContentsLike = value; return this; } public ArrayList getContentsBetween() { return ContentsBetween; } public RA_CreditLinesCustomValuesQuery setContentsBetween(ArrayList value) { this.ContentsBetween = value; return this; } public ArrayList getContentsIn() { return ContentsIn; } public RA_CreditLinesCustomValuesQuery setContentsIn(ArrayList value) { this.ContentsIn = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public RA_CreditLinesCustomValuesQuery setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getLastSavedDateTimeGreaterThanOrEqualTo() { return LastSavedDateTimeGreaterThanOrEqualTo; } public RA_CreditLinesCustomValuesQuery setLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.LastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeGreaterThan() { return LastSavedDateTimeGreaterThan; } public RA_CreditLinesCustomValuesQuery setLastSavedDateTimeGreaterThan(Date value) { this.LastSavedDateTimeGreaterThan = value; return this; } public Date getLastSavedDateTimeLessThan() { return LastSavedDateTimeLessThan; } public RA_CreditLinesCustomValuesQuery setLastSavedDateTimeLessThan(Date value) { this.LastSavedDateTimeLessThan = value; return this; } public Date getLastSavedDateTimeLessThanOrEqualTo() { return LastSavedDateTimeLessThanOrEqualTo; } public RA_CreditLinesCustomValuesQuery setLastSavedDateTimeLessThanOrEqualTo(Date value) { this.LastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeNotEqualTo() { return LastSavedDateTimeNotEqualTo; } public RA_CreditLinesCustomValuesQuery setLastSavedDateTimeNotEqualTo(Date value) { this.LastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getLastSavedDateTimeBetween() { return LastSavedDateTimeBetween; } public RA_CreditLinesCustomValuesQuery setLastSavedDateTimeBetween(ArrayList value) { this.LastSavedDateTimeBetween = value; return this; } public ArrayList getLastSavedDateTimeIn() { return LastSavedDateTimeIn; } public RA_CreditLinesCustomValuesQuery setLastSavedDateTimeIn(ArrayList value) { this.LastSavedDateTimeIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class RA_CreditMainQuery extends QueryDb implements IReturn> { public String RecID = null; public String RecIDStartsWith = null; public String RecIDEndsWith = null; public String RecIDContains = null; public String RecIDLike = null; public ArrayList RecIDBetween = null; public ArrayList RecIDIn = null; public String CreditNo = null; public String CreditNoStartsWith = null; public String CreditNoEndsWith = null; public String CreditNoContains = null; public String CreditNoLike = null; public ArrayList CreditNoBetween = null; public ArrayList CreditNoIn = null; public String Reference = null; public String ReferenceStartsWith = null; public String ReferenceEndsWith = null; public String ReferenceContains = null; public String ReferenceLike = null; public ArrayList ReferenceBetween = null; public ArrayList ReferenceIn = null; public String WarehouseID = null; public String WarehouseIDStartsWith = null; public String WarehouseIDEndsWith = null; public String WarehouseIDContains = null; public String WarehouseIDLike = null; public ArrayList WarehouseIDBetween = null; public ArrayList WarehouseIDIn = null; public Short Status = null; public Short StatusGreaterThanOrEqualTo = null; public Short StatusGreaterThan = null; public Short StatusLessThan = null; public Short StatusLessThanOrEqualTo = null; public Short StatusNotEqualTo = null; public ArrayList StatusBetween = null; public ArrayList StatusIn = null; public Date LastSavedDateTime = null; public Date LastSavedDateTimeGreaterThanOrEqualTo = null; public Date LastSavedDateTimeGreaterThan = null; public Date LastSavedDateTimeLessThan = null; public Date LastSavedDateTimeLessThanOrEqualTo = null; public Date LastSavedDateTimeNotEqualTo = null; public ArrayList LastSavedDateTimeBetween = null; public ArrayList LastSavedDateTimeIn = null; public String CreatedBy = null; public String CreatedByStartsWith = null; public String CreatedByEndsWith = null; public String CreatedByContains = null; public String CreatedByLike = null; public ArrayList CreatedByBetween = null; public ArrayList CreatedByIn = null; public Date CreditDate = null; public Date CreditDateGreaterThanOrEqualTo = null; public Date CreditDateGreaterThan = null; public Date CreditDateLessThan = null; public Date CreditDateLessThanOrEqualTo = null; public Date CreditDateNotEqualTo = null; public ArrayList CreditDateBetween = null; public ArrayList CreditDateIn = null; public String CreditorID = null; public String CreditorIDStartsWith = null; public String CreditorIDEndsWith = null; public String CreditorIDContains = null; public String CreditorIDLike = null; public ArrayList CreditorIDBetween = null; public ArrayList CreditorIDIn = null; public String CreditorRef = null; public String CreditorRefStartsWith = null; public String CreditorRefEndsWith = null; public String CreditorRefContains = null; public String CreditorRefLike = null; public ArrayList CreditorRefBetween = null; public ArrayList CreditorRefIn = null; public ArrayList RowHash = null; public String ReturnCode = null; public String ReturnCodeStartsWith = null; public String ReturnCodeEndsWith = null; public String ReturnCodeContains = null; public String ReturnCodeLike = null; public ArrayList ReturnCodeBetween = null; public ArrayList ReturnCodeIn = null; public String getRecID() { return RecID; } public RA_CreditMainQuery setRecID(String value) { this.RecID = value; return this; } public String getRecIDStartsWith() { return RecIDStartsWith; } public RA_CreditMainQuery setRecIDStartsWith(String value) { this.RecIDStartsWith = value; return this; } public String getRecIDEndsWith() { return RecIDEndsWith; } public RA_CreditMainQuery setRecIDEndsWith(String value) { this.RecIDEndsWith = value; return this; } public String getRecIDContains() { return RecIDContains; } public RA_CreditMainQuery setRecIDContains(String value) { this.RecIDContains = value; return this; } public String getRecIDLike() { return RecIDLike; } public RA_CreditMainQuery setRecIDLike(String value) { this.RecIDLike = value; return this; } public ArrayList getRecIDBetween() { return RecIDBetween; } public RA_CreditMainQuery setRecIDBetween(ArrayList value) { this.RecIDBetween = value; return this; } public ArrayList getRecIDIn() { return RecIDIn; } public RA_CreditMainQuery setRecIDIn(ArrayList value) { this.RecIDIn = value; return this; } public String getCreditNo() { return CreditNo; } public RA_CreditMainQuery setCreditNo(String value) { this.CreditNo = value; return this; } public String getCreditNoStartsWith() { return CreditNoStartsWith; } public RA_CreditMainQuery setCreditNoStartsWith(String value) { this.CreditNoStartsWith = value; return this; } public String getCreditNoEndsWith() { return CreditNoEndsWith; } public RA_CreditMainQuery setCreditNoEndsWith(String value) { this.CreditNoEndsWith = value; return this; } public String getCreditNoContains() { return CreditNoContains; } public RA_CreditMainQuery setCreditNoContains(String value) { this.CreditNoContains = value; return this; } public String getCreditNoLike() { return CreditNoLike; } public RA_CreditMainQuery setCreditNoLike(String value) { this.CreditNoLike = value; return this; } public ArrayList getCreditNoBetween() { return CreditNoBetween; } public RA_CreditMainQuery setCreditNoBetween(ArrayList value) { this.CreditNoBetween = value; return this; } public ArrayList getCreditNoIn() { return CreditNoIn; } public RA_CreditMainQuery setCreditNoIn(ArrayList value) { this.CreditNoIn = value; return this; } public String getReference() { return Reference; } public RA_CreditMainQuery setReference(String value) { this.Reference = value; return this; } public String getReferenceStartsWith() { return ReferenceStartsWith; } public RA_CreditMainQuery setReferenceStartsWith(String value) { this.ReferenceStartsWith = value; return this; } public String getReferenceEndsWith() { return ReferenceEndsWith; } public RA_CreditMainQuery setReferenceEndsWith(String value) { this.ReferenceEndsWith = value; return this; } public String getReferenceContains() { return ReferenceContains; } public RA_CreditMainQuery setReferenceContains(String value) { this.ReferenceContains = value; return this; } public String getReferenceLike() { return ReferenceLike; } public RA_CreditMainQuery setReferenceLike(String value) { this.ReferenceLike = value; return this; } public ArrayList getReferenceBetween() { return ReferenceBetween; } public RA_CreditMainQuery setReferenceBetween(ArrayList value) { this.ReferenceBetween = value; return this; } public ArrayList getReferenceIn() { return ReferenceIn; } public RA_CreditMainQuery setReferenceIn(ArrayList value) { this.ReferenceIn = value; return this; } public String getWarehouseID() { return WarehouseID; } public RA_CreditMainQuery setWarehouseID(String value) { this.WarehouseID = value; return this; } public String getWarehouseIDStartsWith() { return WarehouseIDStartsWith; } public RA_CreditMainQuery setWarehouseIDStartsWith(String value) { this.WarehouseIDStartsWith = value; return this; } public String getWarehouseIDEndsWith() { return WarehouseIDEndsWith; } public RA_CreditMainQuery setWarehouseIDEndsWith(String value) { this.WarehouseIDEndsWith = value; return this; } public String getWarehouseIDContains() { return WarehouseIDContains; } public RA_CreditMainQuery setWarehouseIDContains(String value) { this.WarehouseIDContains = value; return this; } public String getWarehouseIDLike() { return WarehouseIDLike; } public RA_CreditMainQuery setWarehouseIDLike(String value) { this.WarehouseIDLike = value; return this; } public ArrayList getWarehouseIDBetween() { return WarehouseIDBetween; } public RA_CreditMainQuery setWarehouseIDBetween(ArrayList value) { this.WarehouseIDBetween = value; return this; } public ArrayList getWarehouseIDIn() { return WarehouseIDIn; } public RA_CreditMainQuery setWarehouseIDIn(ArrayList value) { this.WarehouseIDIn = value; return this; } public Short getStatus() { return Status; } public RA_CreditMainQuery setStatus(Short value) { this.Status = value; return this; } public Short getStatusGreaterThanOrEqualTo() { return StatusGreaterThanOrEqualTo; } public RA_CreditMainQuery setStatusGreaterThanOrEqualTo(Short value) { this.StatusGreaterThanOrEqualTo = value; return this; } public Short getStatusGreaterThan() { return StatusGreaterThan; } public RA_CreditMainQuery setStatusGreaterThan(Short value) { this.StatusGreaterThan = value; return this; } public Short getStatusLessThan() { return StatusLessThan; } public RA_CreditMainQuery setStatusLessThan(Short value) { this.StatusLessThan = value; return this; } public Short getStatusLessThanOrEqualTo() { return StatusLessThanOrEqualTo; } public RA_CreditMainQuery setStatusLessThanOrEqualTo(Short value) { this.StatusLessThanOrEqualTo = value; return this; } public Short getStatusNotEqualTo() { return StatusNotEqualTo; } public RA_CreditMainQuery setStatusNotEqualTo(Short value) { this.StatusNotEqualTo = value; return this; } public ArrayList getStatusBetween() { return StatusBetween; } public RA_CreditMainQuery setStatusBetween(ArrayList value) { this.StatusBetween = value; return this; } public ArrayList getStatusIn() { return StatusIn; } public RA_CreditMainQuery setStatusIn(ArrayList value) { this.StatusIn = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public RA_CreditMainQuery setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getLastSavedDateTimeGreaterThanOrEqualTo() { return LastSavedDateTimeGreaterThanOrEqualTo; } public RA_CreditMainQuery setLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.LastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeGreaterThan() { return LastSavedDateTimeGreaterThan; } public RA_CreditMainQuery setLastSavedDateTimeGreaterThan(Date value) { this.LastSavedDateTimeGreaterThan = value; return this; } public Date getLastSavedDateTimeLessThan() { return LastSavedDateTimeLessThan; } public RA_CreditMainQuery setLastSavedDateTimeLessThan(Date value) { this.LastSavedDateTimeLessThan = value; return this; } public Date getLastSavedDateTimeLessThanOrEqualTo() { return LastSavedDateTimeLessThanOrEqualTo; } public RA_CreditMainQuery setLastSavedDateTimeLessThanOrEqualTo(Date value) { this.LastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeNotEqualTo() { return LastSavedDateTimeNotEqualTo; } public RA_CreditMainQuery setLastSavedDateTimeNotEqualTo(Date value) { this.LastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getLastSavedDateTimeBetween() { return LastSavedDateTimeBetween; } public RA_CreditMainQuery setLastSavedDateTimeBetween(ArrayList value) { this.LastSavedDateTimeBetween = value; return this; } public ArrayList getLastSavedDateTimeIn() { return LastSavedDateTimeIn; } public RA_CreditMainQuery setLastSavedDateTimeIn(ArrayList value) { this.LastSavedDateTimeIn = value; return this; } public String getCreatedBy() { return CreatedBy; } public RA_CreditMainQuery setCreatedBy(String value) { this.CreatedBy = value; return this; } public String getCreatedByStartsWith() { return CreatedByStartsWith; } public RA_CreditMainQuery setCreatedByStartsWith(String value) { this.CreatedByStartsWith = value; return this; } public String getCreatedByEndsWith() { return CreatedByEndsWith; } public RA_CreditMainQuery setCreatedByEndsWith(String value) { this.CreatedByEndsWith = value; return this; } public String getCreatedByContains() { return CreatedByContains; } public RA_CreditMainQuery setCreatedByContains(String value) { this.CreatedByContains = value; return this; } public String getCreatedByLike() { return CreatedByLike; } public RA_CreditMainQuery setCreatedByLike(String value) { this.CreatedByLike = value; return this; } public ArrayList getCreatedByBetween() { return CreatedByBetween; } public RA_CreditMainQuery setCreatedByBetween(ArrayList value) { this.CreatedByBetween = value; return this; } public ArrayList getCreatedByIn() { return CreatedByIn; } public RA_CreditMainQuery setCreatedByIn(ArrayList value) { this.CreatedByIn = value; return this; } public Date getCreditDate() { return CreditDate; } public RA_CreditMainQuery setCreditDate(Date value) { this.CreditDate = value; return this; } public Date getCreditDateGreaterThanOrEqualTo() { return CreditDateGreaterThanOrEqualTo; } public RA_CreditMainQuery setCreditDateGreaterThanOrEqualTo(Date value) { this.CreditDateGreaterThanOrEqualTo = value; return this; } public Date getCreditDateGreaterThan() { return CreditDateGreaterThan; } public RA_CreditMainQuery setCreditDateGreaterThan(Date value) { this.CreditDateGreaterThan = value; return this; } public Date getCreditDateLessThan() { return CreditDateLessThan; } public RA_CreditMainQuery setCreditDateLessThan(Date value) { this.CreditDateLessThan = value; return this; } public Date getCreditDateLessThanOrEqualTo() { return CreditDateLessThanOrEqualTo; } public RA_CreditMainQuery setCreditDateLessThanOrEqualTo(Date value) { this.CreditDateLessThanOrEqualTo = value; return this; } public Date getCreditDateNotEqualTo() { return CreditDateNotEqualTo; } public RA_CreditMainQuery setCreditDateNotEqualTo(Date value) { this.CreditDateNotEqualTo = value; return this; } public ArrayList getCreditDateBetween() { return CreditDateBetween; } public RA_CreditMainQuery setCreditDateBetween(ArrayList value) { this.CreditDateBetween = value; return this; } public ArrayList getCreditDateIn() { return CreditDateIn; } public RA_CreditMainQuery setCreditDateIn(ArrayList value) { this.CreditDateIn = value; return this; } public String getCreditorID() { return CreditorID; } public RA_CreditMainQuery setCreditorID(String value) { this.CreditorID = value; return this; } public String getCreditorIDStartsWith() { return CreditorIDStartsWith; } public RA_CreditMainQuery setCreditorIDStartsWith(String value) { this.CreditorIDStartsWith = value; return this; } public String getCreditorIDEndsWith() { return CreditorIDEndsWith; } public RA_CreditMainQuery setCreditorIDEndsWith(String value) { this.CreditorIDEndsWith = value; return this; } public String getCreditorIDContains() { return CreditorIDContains; } public RA_CreditMainQuery setCreditorIDContains(String value) { this.CreditorIDContains = value; return this; } public String getCreditorIDLike() { return CreditorIDLike; } public RA_CreditMainQuery setCreditorIDLike(String value) { this.CreditorIDLike = value; return this; } public ArrayList getCreditorIDBetween() { return CreditorIDBetween; } public RA_CreditMainQuery setCreditorIDBetween(ArrayList value) { this.CreditorIDBetween = value; return this; } public ArrayList getCreditorIDIn() { return CreditorIDIn; } public RA_CreditMainQuery setCreditorIDIn(ArrayList value) { this.CreditorIDIn = value; return this; } public String getCreditorRef() { return CreditorRef; } public RA_CreditMainQuery setCreditorRef(String value) { this.CreditorRef = value; return this; } public String getCreditorRefStartsWith() { return CreditorRefStartsWith; } public RA_CreditMainQuery setCreditorRefStartsWith(String value) { this.CreditorRefStartsWith = value; return this; } public String getCreditorRefEndsWith() { return CreditorRefEndsWith; } public RA_CreditMainQuery setCreditorRefEndsWith(String value) { this.CreditorRefEndsWith = value; return this; } public String getCreditorRefContains() { return CreditorRefContains; } public RA_CreditMainQuery setCreditorRefContains(String value) { this.CreditorRefContains = value; return this; } public String getCreditorRefLike() { return CreditorRefLike; } public RA_CreditMainQuery setCreditorRefLike(String value) { this.CreditorRefLike = value; return this; } public ArrayList getCreditorRefBetween() { return CreditorRefBetween; } public RA_CreditMainQuery setCreditorRefBetween(ArrayList value) { this.CreditorRefBetween = value; return this; } public ArrayList getCreditorRefIn() { return CreditorRefIn; } public RA_CreditMainQuery setCreditorRefIn(ArrayList value) { this.CreditorRefIn = value; return this; } public ArrayList getRowHash() { return RowHash; } public RA_CreditMainQuery setRowHash(ArrayList value) { this.RowHash = value; return this; } public String getReturnCode() { return ReturnCode; } public RA_CreditMainQuery setReturnCode(String value) { this.ReturnCode = value; return this; } public String getReturnCodeStartsWith() { return ReturnCodeStartsWith; } public RA_CreditMainQuery setReturnCodeStartsWith(String value) { this.ReturnCodeStartsWith = value; return this; } public String getReturnCodeEndsWith() { return ReturnCodeEndsWith; } public RA_CreditMainQuery setReturnCodeEndsWith(String value) { this.ReturnCodeEndsWith = value; return this; } public String getReturnCodeContains() { return ReturnCodeContains; } public RA_CreditMainQuery setReturnCodeContains(String value) { this.ReturnCodeContains = value; return this; } public String getReturnCodeLike() { return ReturnCodeLike; } public RA_CreditMainQuery setReturnCodeLike(String value) { this.ReturnCodeLike = value; return this; } public ArrayList getReturnCodeBetween() { return ReturnCodeBetween; } public RA_CreditMainQuery setReturnCodeBetween(ArrayList value) { this.ReturnCodeBetween = value; return this; } public ArrayList getReturnCodeIn() { return ReturnCodeIn; } public RA_CreditMainQuery setReturnCodeIn(ArrayList value) { this.ReturnCodeIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class RA_CreditMainCustomFieldsQuery extends QueryDb implements IReturn> { public String RecID = null; public String RecIDStartsWith = null; public String RecIDEndsWith = null; public String RecIDContains = null; public String RecIDLike = null; public ArrayList RecIDBetween = null; public ArrayList RecIDIn = null; public String SettingName = null; public String SettingNameStartsWith = null; public String SettingNameEndsWith = null; public String SettingNameContains = null; public String SettingNameLike = null; public ArrayList SettingNameBetween = null; public ArrayList SettingNameIn = null; public String SettingDescription = null; public String SettingDescriptionStartsWith = null; public String SettingDescriptionEndsWith = null; public String SettingDescriptionContains = null; public String SettingDescriptionLike = null; public ArrayList SettingDescriptionBetween = null; public ArrayList SettingDescriptionIn = null; public Integer CellType = null; public Integer CellTypeGreaterThanOrEqualTo = null; public Integer CellTypeGreaterThan = null; public Integer CellTypeLessThan = null; public Integer CellTypeLessThanOrEqualTo = null; public Integer CellTypeNotEqualTo = null; public ArrayList CellTypeBetween = null; public ArrayList CellTypeIn = null; public String FieldParameter = null; public String FieldParameterStartsWith = null; public String FieldParameterEndsWith = null; public String FieldParameterContains = null; public String FieldParameterLike = null; public ArrayList FieldParameterBetween = null; public ArrayList FieldParameterIn = null; public UUID SY_Plugin_RecID = null; public ArrayList SY_Plugin_RecIDIn = null; public Date LastSavedDateTime = null; public Date LastSavedDateTimeGreaterThanOrEqualTo = null; public Date LastSavedDateTimeGreaterThan = null; public Date LastSavedDateTimeLessThan = null; public Date LastSavedDateTimeLessThanOrEqualTo = null; public Date LastSavedDateTimeNotEqualTo = null; public ArrayList LastSavedDateTimeBetween = null; public ArrayList LastSavedDateTimeIn = null; public Integer DisplayOrder = null; public Integer DisplayOrderGreaterThanOrEqualTo = null; public Integer DisplayOrderGreaterThan = null; public Integer DisplayOrderLessThan = null; public Integer DisplayOrderLessThanOrEqualTo = null; public Integer DisplayOrderNotEqualTo = null; public ArrayList DisplayOrderBetween = null; public ArrayList DisplayOrderIn = null; public String getRecID() { return RecID; } public RA_CreditMainCustomFieldsQuery setRecID(String value) { this.RecID = value; return this; } public String getRecIDStartsWith() { return RecIDStartsWith; } public RA_CreditMainCustomFieldsQuery setRecIDStartsWith(String value) { this.RecIDStartsWith = value; return this; } public String getRecIDEndsWith() { return RecIDEndsWith; } public RA_CreditMainCustomFieldsQuery setRecIDEndsWith(String value) { this.RecIDEndsWith = value; return this; } public String getRecIDContains() { return RecIDContains; } public RA_CreditMainCustomFieldsQuery setRecIDContains(String value) { this.RecIDContains = value; return this; } public String getRecIDLike() { return RecIDLike; } public RA_CreditMainCustomFieldsQuery setRecIDLike(String value) { this.RecIDLike = value; return this; } public ArrayList getRecIDBetween() { return RecIDBetween; } public RA_CreditMainCustomFieldsQuery setRecIDBetween(ArrayList value) { this.RecIDBetween = value; return this; } public ArrayList getRecIDIn() { return RecIDIn; } public RA_CreditMainCustomFieldsQuery setRecIDIn(ArrayList value) { this.RecIDIn = value; return this; } public String getSettingName() { return SettingName; } public RA_CreditMainCustomFieldsQuery setSettingName(String value) { this.SettingName = value; return this; } public String getSettingNameStartsWith() { return SettingNameStartsWith; } public RA_CreditMainCustomFieldsQuery setSettingNameStartsWith(String value) { this.SettingNameStartsWith = value; return this; } public String getSettingNameEndsWith() { return SettingNameEndsWith; } public RA_CreditMainCustomFieldsQuery setSettingNameEndsWith(String value) { this.SettingNameEndsWith = value; return this; } public String getSettingNameContains() { return SettingNameContains; } public RA_CreditMainCustomFieldsQuery setSettingNameContains(String value) { this.SettingNameContains = value; return this; } public String getSettingNameLike() { return SettingNameLike; } public RA_CreditMainCustomFieldsQuery setSettingNameLike(String value) { this.SettingNameLike = value; return this; } public ArrayList getSettingNameBetween() { return SettingNameBetween; } public RA_CreditMainCustomFieldsQuery setSettingNameBetween(ArrayList value) { this.SettingNameBetween = value; return this; } public ArrayList getSettingNameIn() { return SettingNameIn; } public RA_CreditMainCustomFieldsQuery setSettingNameIn(ArrayList value) { this.SettingNameIn = value; return this; } public String getSettingDescription() { return SettingDescription; } public RA_CreditMainCustomFieldsQuery setSettingDescription(String value) { this.SettingDescription = value; return this; } public String getSettingDescriptionStartsWith() { return SettingDescriptionStartsWith; } public RA_CreditMainCustomFieldsQuery setSettingDescriptionStartsWith(String value) { this.SettingDescriptionStartsWith = value; return this; } public String getSettingDescriptionEndsWith() { return SettingDescriptionEndsWith; } public RA_CreditMainCustomFieldsQuery setSettingDescriptionEndsWith(String value) { this.SettingDescriptionEndsWith = value; return this; } public String getSettingDescriptionContains() { return SettingDescriptionContains; } public RA_CreditMainCustomFieldsQuery setSettingDescriptionContains(String value) { this.SettingDescriptionContains = value; return this; } public String getSettingDescriptionLike() { return SettingDescriptionLike; } public RA_CreditMainCustomFieldsQuery setSettingDescriptionLike(String value) { this.SettingDescriptionLike = value; return this; } public ArrayList getSettingDescriptionBetween() { return SettingDescriptionBetween; } public RA_CreditMainCustomFieldsQuery setSettingDescriptionBetween(ArrayList value) { this.SettingDescriptionBetween = value; return this; } public ArrayList getSettingDescriptionIn() { return SettingDescriptionIn; } public RA_CreditMainCustomFieldsQuery setSettingDescriptionIn(ArrayList value) { this.SettingDescriptionIn = value; return this; } public Integer getCellType() { return CellType; } public RA_CreditMainCustomFieldsQuery setCellType(Integer value) { this.CellType = value; return this; } public Integer getCellTypeGreaterThanOrEqualTo() { return CellTypeGreaterThanOrEqualTo; } public RA_CreditMainCustomFieldsQuery setCellTypeGreaterThanOrEqualTo(Integer value) { this.CellTypeGreaterThanOrEqualTo = value; return this; } public Integer getCellTypeGreaterThan() { return CellTypeGreaterThan; } public RA_CreditMainCustomFieldsQuery setCellTypeGreaterThan(Integer value) { this.CellTypeGreaterThan = value; return this; } public Integer getCellTypeLessThan() { return CellTypeLessThan; } public RA_CreditMainCustomFieldsQuery setCellTypeLessThan(Integer value) { this.CellTypeLessThan = value; return this; } public Integer getCellTypeLessThanOrEqualTo() { return CellTypeLessThanOrEqualTo; } public RA_CreditMainCustomFieldsQuery setCellTypeLessThanOrEqualTo(Integer value) { this.CellTypeLessThanOrEqualTo = value; return this; } public Integer getCellTypeNotEqualTo() { return CellTypeNotEqualTo; } public RA_CreditMainCustomFieldsQuery setCellTypeNotEqualTo(Integer value) { this.CellTypeNotEqualTo = value; return this; } public ArrayList getCellTypeBetween() { return CellTypeBetween; } public RA_CreditMainCustomFieldsQuery setCellTypeBetween(ArrayList value) { this.CellTypeBetween = value; return this; } public ArrayList getCellTypeIn() { return CellTypeIn; } public RA_CreditMainCustomFieldsQuery setCellTypeIn(ArrayList value) { this.CellTypeIn = value; return this; } public String getFieldParameter() { return FieldParameter; } public RA_CreditMainCustomFieldsQuery setFieldParameter(String value) { this.FieldParameter = value; return this; } public String getFieldParameterStartsWith() { return FieldParameterStartsWith; } public RA_CreditMainCustomFieldsQuery setFieldParameterStartsWith(String value) { this.FieldParameterStartsWith = value; return this; } public String getFieldParameterEndsWith() { return FieldParameterEndsWith; } public RA_CreditMainCustomFieldsQuery setFieldParameterEndsWith(String value) { this.FieldParameterEndsWith = value; return this; } public String getFieldParameterContains() { return FieldParameterContains; } public RA_CreditMainCustomFieldsQuery setFieldParameterContains(String value) { this.FieldParameterContains = value; return this; } public String getFieldParameterLike() { return FieldParameterLike; } public RA_CreditMainCustomFieldsQuery setFieldParameterLike(String value) { this.FieldParameterLike = value; return this; } public ArrayList getFieldParameterBetween() { return FieldParameterBetween; } public RA_CreditMainCustomFieldsQuery setFieldParameterBetween(ArrayList value) { this.FieldParameterBetween = value; return this; } public ArrayList getFieldParameterIn() { return FieldParameterIn; } public RA_CreditMainCustomFieldsQuery setFieldParameterIn(ArrayList value) { this.FieldParameterIn = value; return this; } public UUID getSyPluginRecID() { return SY_Plugin_RecID; } public RA_CreditMainCustomFieldsQuery setSyPluginRecID(UUID value) { this.SY_Plugin_RecID = value; return this; } public ArrayList getSyPluginRecIDIn() { return SY_Plugin_RecIDIn; } public RA_CreditMainCustomFieldsQuery setSyPluginRecIDIn(ArrayList value) { this.SY_Plugin_RecIDIn = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public RA_CreditMainCustomFieldsQuery setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getLastSavedDateTimeGreaterThanOrEqualTo() { return LastSavedDateTimeGreaterThanOrEqualTo; } public RA_CreditMainCustomFieldsQuery setLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.LastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeGreaterThan() { return LastSavedDateTimeGreaterThan; } public RA_CreditMainCustomFieldsQuery setLastSavedDateTimeGreaterThan(Date value) { this.LastSavedDateTimeGreaterThan = value; return this; } public Date getLastSavedDateTimeLessThan() { return LastSavedDateTimeLessThan; } public RA_CreditMainCustomFieldsQuery setLastSavedDateTimeLessThan(Date value) { this.LastSavedDateTimeLessThan = value; return this; } public Date getLastSavedDateTimeLessThanOrEqualTo() { return LastSavedDateTimeLessThanOrEqualTo; } public RA_CreditMainCustomFieldsQuery setLastSavedDateTimeLessThanOrEqualTo(Date value) { this.LastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeNotEqualTo() { return LastSavedDateTimeNotEqualTo; } public RA_CreditMainCustomFieldsQuery setLastSavedDateTimeNotEqualTo(Date value) { this.LastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getLastSavedDateTimeBetween() { return LastSavedDateTimeBetween; } public RA_CreditMainCustomFieldsQuery setLastSavedDateTimeBetween(ArrayList value) { this.LastSavedDateTimeBetween = value; return this; } public ArrayList getLastSavedDateTimeIn() { return LastSavedDateTimeIn; } public RA_CreditMainCustomFieldsQuery setLastSavedDateTimeIn(ArrayList value) { this.LastSavedDateTimeIn = value; return this; } public Integer getDisplayOrder() { return DisplayOrder; } public RA_CreditMainCustomFieldsQuery setDisplayOrder(Integer value) { this.DisplayOrder = value; return this; } public Integer getDisplayOrderGreaterThanOrEqualTo() { return DisplayOrderGreaterThanOrEqualTo; } public RA_CreditMainCustomFieldsQuery setDisplayOrderGreaterThanOrEqualTo(Integer value) { this.DisplayOrderGreaterThanOrEqualTo = value; return this; } public Integer getDisplayOrderGreaterThan() { return DisplayOrderGreaterThan; } public RA_CreditMainCustomFieldsQuery setDisplayOrderGreaterThan(Integer value) { this.DisplayOrderGreaterThan = value; return this; } public Integer getDisplayOrderLessThan() { return DisplayOrderLessThan; } public RA_CreditMainCustomFieldsQuery setDisplayOrderLessThan(Integer value) { this.DisplayOrderLessThan = value; return this; } public Integer getDisplayOrderLessThanOrEqualTo() { return DisplayOrderLessThanOrEqualTo; } public RA_CreditMainCustomFieldsQuery setDisplayOrderLessThanOrEqualTo(Integer value) { this.DisplayOrderLessThanOrEqualTo = value; return this; } public Integer getDisplayOrderNotEqualTo() { return DisplayOrderNotEqualTo; } public RA_CreditMainCustomFieldsQuery setDisplayOrderNotEqualTo(Integer value) { this.DisplayOrderNotEqualTo = value; return this; } public ArrayList getDisplayOrderBetween() { return DisplayOrderBetween; } public RA_CreditMainCustomFieldsQuery setDisplayOrderBetween(ArrayList value) { this.DisplayOrderBetween = value; return this; } public ArrayList getDisplayOrderIn() { return DisplayOrderIn; } public RA_CreditMainCustomFieldsQuery setDisplayOrderIn(ArrayList value) { this.DisplayOrderIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class RA_CreditMainCustomValuesQuery extends QueryDb implements IReturn> { public String RecID = null; public String RecIDStartsWith = null; public String RecIDEndsWith = null; public String RecIDContains = null; public String RecIDLike = null; public ArrayList RecIDBetween = null; public ArrayList RecIDIn = null; public String RA_CreditMain_RecID = null; public String RA_CreditMain_RecIDStartsWith = null; public String RA_CreditMain_RecIDEndsWith = null; public String RA_CreditMain_RecIDContains = null; public String RA_CreditMain_RecIDLike = null; public ArrayList RA_CreditMain_RecIDBetween = null; public ArrayList RA_CreditMain_RecIDIn = null; public String RA_CreditMainCustomFields_RecID = null; public String RA_CreditMainCustomFields_RecIDStartsWith = null; public String RA_CreditMainCustomFields_RecIDEndsWith = null; public String RA_CreditMainCustomFields_RecIDContains = null; public String RA_CreditMainCustomFields_RecIDLike = null; public ArrayList RA_CreditMainCustomFields_RecIDBetween = null; public ArrayList RA_CreditMainCustomFields_RecIDIn = null; public String Contents = null; public String ContentsStartsWith = null; public String ContentsEndsWith = null; public String ContentsContains = null; public String ContentsLike = null; public ArrayList ContentsBetween = null; public ArrayList ContentsIn = null; public Date LastSavedDateTime = null; public Date LastSavedDateTimeGreaterThanOrEqualTo = null; public Date LastSavedDateTimeGreaterThan = null; public Date LastSavedDateTimeLessThan = null; public Date LastSavedDateTimeLessThanOrEqualTo = null; public Date LastSavedDateTimeNotEqualTo = null; public ArrayList LastSavedDateTimeBetween = null; public ArrayList LastSavedDateTimeIn = null; public String getRecID() { return RecID; } public RA_CreditMainCustomValuesQuery setRecID(String value) { this.RecID = value; return this; } public String getRecIDStartsWith() { return RecIDStartsWith; } public RA_CreditMainCustomValuesQuery setRecIDStartsWith(String value) { this.RecIDStartsWith = value; return this; } public String getRecIDEndsWith() { return RecIDEndsWith; } public RA_CreditMainCustomValuesQuery setRecIDEndsWith(String value) { this.RecIDEndsWith = value; return this; } public String getRecIDContains() { return RecIDContains; } public RA_CreditMainCustomValuesQuery setRecIDContains(String value) { this.RecIDContains = value; return this; } public String getRecIDLike() { return RecIDLike; } public RA_CreditMainCustomValuesQuery setRecIDLike(String value) { this.RecIDLike = value; return this; } public ArrayList getRecIDBetween() { return RecIDBetween; } public RA_CreditMainCustomValuesQuery setRecIDBetween(ArrayList value) { this.RecIDBetween = value; return this; } public ArrayList getRecIDIn() { return RecIDIn; } public RA_CreditMainCustomValuesQuery setRecIDIn(ArrayList value) { this.RecIDIn = value; return this; } public String getRaCreditMainRecID() { return RA_CreditMain_RecID; } public RA_CreditMainCustomValuesQuery setRaCreditMainRecID(String value) { this.RA_CreditMain_RecID = value; return this; } public String getRaCreditMainRecIDStartsWith() { return RA_CreditMain_RecIDStartsWith; } public RA_CreditMainCustomValuesQuery setRaCreditMainRecIDStartsWith(String value) { this.RA_CreditMain_RecIDStartsWith = value; return this; } public String getRaCreditMainRecIDEndsWith() { return RA_CreditMain_RecIDEndsWith; } public RA_CreditMainCustomValuesQuery setRaCreditMainRecIDEndsWith(String value) { this.RA_CreditMain_RecIDEndsWith = value; return this; } public String getRaCreditMainRecIDContains() { return RA_CreditMain_RecIDContains; } public RA_CreditMainCustomValuesQuery setRaCreditMainRecIDContains(String value) { this.RA_CreditMain_RecIDContains = value; return this; } public String getRaCreditMainRecIDLike() { return RA_CreditMain_RecIDLike; } public RA_CreditMainCustomValuesQuery setRaCreditMainRecIDLike(String value) { this.RA_CreditMain_RecIDLike = value; return this; } public ArrayList getRaCreditMainRecIDBetween() { return RA_CreditMain_RecIDBetween; } public RA_CreditMainCustomValuesQuery setRaCreditMainRecIDBetween(ArrayList value) { this.RA_CreditMain_RecIDBetween = value; return this; } public ArrayList getRaCreditMainRecIDIn() { return RA_CreditMain_RecIDIn; } public RA_CreditMainCustomValuesQuery setRaCreditMainRecIDIn(ArrayList value) { this.RA_CreditMain_RecIDIn = value; return this; } public String getRaCreditMainCustomFieldsRecID() { return RA_CreditMainCustomFields_RecID; } public RA_CreditMainCustomValuesQuery setRaCreditMainCustomFieldsRecID(String value) { this.RA_CreditMainCustomFields_RecID = value; return this; } public String getRaCreditMainCustomFieldsRecIDStartsWith() { return RA_CreditMainCustomFields_RecIDStartsWith; } public RA_CreditMainCustomValuesQuery setRaCreditMainCustomFieldsRecIDStartsWith(String value) { this.RA_CreditMainCustomFields_RecIDStartsWith = value; return this; } public String getRaCreditMainCustomFieldsRecIDEndsWith() { return RA_CreditMainCustomFields_RecIDEndsWith; } public RA_CreditMainCustomValuesQuery setRaCreditMainCustomFieldsRecIDEndsWith(String value) { this.RA_CreditMainCustomFields_RecIDEndsWith = value; return this; } public String getRaCreditMainCustomFieldsRecIDContains() { return RA_CreditMainCustomFields_RecIDContains; } public RA_CreditMainCustomValuesQuery setRaCreditMainCustomFieldsRecIDContains(String value) { this.RA_CreditMainCustomFields_RecIDContains = value; return this; } public String getRaCreditMainCustomFieldsRecIDLike() { return RA_CreditMainCustomFields_RecIDLike; } public RA_CreditMainCustomValuesQuery setRaCreditMainCustomFieldsRecIDLike(String value) { this.RA_CreditMainCustomFields_RecIDLike = value; return this; } public ArrayList getRaCreditMainCustomFieldsRecIDBetween() { return RA_CreditMainCustomFields_RecIDBetween; } public RA_CreditMainCustomValuesQuery setRaCreditMainCustomFieldsRecIDBetween(ArrayList value) { this.RA_CreditMainCustomFields_RecIDBetween = value; return this; } public ArrayList getRaCreditMainCustomFieldsRecIDIn() { return RA_CreditMainCustomFields_RecIDIn; } public RA_CreditMainCustomValuesQuery setRaCreditMainCustomFieldsRecIDIn(ArrayList value) { this.RA_CreditMainCustomFields_RecIDIn = value; return this; } public String getContents() { return Contents; } public RA_CreditMainCustomValuesQuery setContents(String value) { this.Contents = value; return this; } public String getContentsStartsWith() { return ContentsStartsWith; } public RA_CreditMainCustomValuesQuery setContentsStartsWith(String value) { this.ContentsStartsWith = value; return this; } public String getContentsEndsWith() { return ContentsEndsWith; } public RA_CreditMainCustomValuesQuery setContentsEndsWith(String value) { this.ContentsEndsWith = value; return this; } public String getContentsContains() { return ContentsContains; } public RA_CreditMainCustomValuesQuery setContentsContains(String value) { this.ContentsContains = value; return this; } public String getContentsLike() { return ContentsLike; } public RA_CreditMainCustomValuesQuery setContentsLike(String value) { this.ContentsLike = value; return this; } public ArrayList getContentsBetween() { return ContentsBetween; } public RA_CreditMainCustomValuesQuery setContentsBetween(ArrayList value) { this.ContentsBetween = value; return this; } public ArrayList getContentsIn() { return ContentsIn; } public RA_CreditMainCustomValuesQuery setContentsIn(ArrayList value) { this.ContentsIn = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public RA_CreditMainCustomValuesQuery setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getLastSavedDateTimeGreaterThanOrEqualTo() { return LastSavedDateTimeGreaterThanOrEqualTo; } public RA_CreditMainCustomValuesQuery setLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.LastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeGreaterThan() { return LastSavedDateTimeGreaterThan; } public RA_CreditMainCustomValuesQuery setLastSavedDateTimeGreaterThan(Date value) { this.LastSavedDateTimeGreaterThan = value; return this; } public Date getLastSavedDateTimeLessThan() { return LastSavedDateTimeLessThan; } public RA_CreditMainCustomValuesQuery setLastSavedDateTimeLessThan(Date value) { this.LastSavedDateTimeLessThan = value; return this; } public Date getLastSavedDateTimeLessThanOrEqualTo() { return LastSavedDateTimeLessThanOrEqualTo; } public RA_CreditMainCustomValuesQuery setLastSavedDateTimeLessThanOrEqualTo(Date value) { this.LastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeNotEqualTo() { return LastSavedDateTimeNotEqualTo; } public RA_CreditMainCustomValuesQuery setLastSavedDateTimeNotEqualTo(Date value) { this.LastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getLastSavedDateTimeBetween() { return LastSavedDateTimeBetween; } public RA_CreditMainCustomValuesQuery setLastSavedDateTimeBetween(ArrayList value) { this.LastSavedDateTimeBetween = value; return this; } public ArrayList getLastSavedDateTimeIn() { return LastSavedDateTimeIn; } public RA_CreditMainCustomValuesQuery setLastSavedDateTimeIn(ArrayList value) { this.LastSavedDateTimeIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class RA_CreditNotesQuery extends QueryDb implements IReturn> { public String RecID = null; public String RecIDStartsWith = null; public String RecIDEndsWith = null; public String RecIDContains = null; public String RecIDLike = null; public ArrayList RecIDBetween = null; public ArrayList RecIDIn = null; public String RA_CreditMain_RecID = null; public String RA_CreditMain_RecIDStartsWith = null; public String RA_CreditMain_RecIDEndsWith = null; public String RA_CreditMain_RecIDContains = null; public String RA_CreditMain_RecIDLike = null; public ArrayList RA_CreditMain_RecIDBetween = null; public ArrayList RA_CreditMain_RecIDIn = null; public String NoteTypeID = null; public String NoteTypeIDStartsWith = null; public String NoteTypeIDEndsWith = null; public String NoteTypeIDContains = null; public String NoteTypeIDLike = null; public ArrayList NoteTypeIDBetween = null; public ArrayList NoteTypeIDIn = null; public Date LastSavedDateTime = null; public Date LastSavedDateTimeGreaterThanOrEqualTo = null; public Date LastSavedDateTimeGreaterThan = null; public Date LastSavedDateTimeLessThan = null; public Date LastSavedDateTimeLessThanOrEqualTo = null; public Date LastSavedDateTimeNotEqualTo = null; public ArrayList LastSavedDateTimeBetween = null; public ArrayList LastSavedDateTimeIn = null; public String LastSavedByStaffID = null; public String LastSavedByStaffIDStartsWith = null; public String LastSavedByStaffIDEndsWith = null; public String LastSavedByStaffIDContains = null; public String LastSavedByStaffIDLike = null; public ArrayList LastSavedByStaffIDBetween = null; public ArrayList LastSavedByStaffIDIn = null; public String NoteText = null; public String NoteTextStartsWith = null; public String NoteTextEndsWith = null; public String NoteTextContains = null; public String NoteTextLike = null; public ArrayList NoteTextBetween = null; public ArrayList NoteTextIn = null; public Integer ItemNo = null; public Integer ItemNoGreaterThanOrEqualTo = null; public Integer ItemNoGreaterThan = null; public Integer ItemNoLessThan = null; public Integer ItemNoLessThanOrEqualTo = null; public Integer ItemNoNotEqualTo = null; public ArrayList ItemNoBetween = null; public ArrayList ItemNoIn = null; public String getRecID() { return RecID; } public RA_CreditNotesQuery setRecID(String value) { this.RecID = value; return this; } public String getRecIDStartsWith() { return RecIDStartsWith; } public RA_CreditNotesQuery setRecIDStartsWith(String value) { this.RecIDStartsWith = value; return this; } public String getRecIDEndsWith() { return RecIDEndsWith; } public RA_CreditNotesQuery setRecIDEndsWith(String value) { this.RecIDEndsWith = value; return this; } public String getRecIDContains() { return RecIDContains; } public RA_CreditNotesQuery setRecIDContains(String value) { this.RecIDContains = value; return this; } public String getRecIDLike() { return RecIDLike; } public RA_CreditNotesQuery setRecIDLike(String value) { this.RecIDLike = value; return this; } public ArrayList getRecIDBetween() { return RecIDBetween; } public RA_CreditNotesQuery setRecIDBetween(ArrayList value) { this.RecIDBetween = value; return this; } public ArrayList getRecIDIn() { return RecIDIn; } public RA_CreditNotesQuery setRecIDIn(ArrayList value) { this.RecIDIn = value; return this; } public String getRaCreditMainRecID() { return RA_CreditMain_RecID; } public RA_CreditNotesQuery setRaCreditMainRecID(String value) { this.RA_CreditMain_RecID = value; return this; } public String getRaCreditMainRecIDStartsWith() { return RA_CreditMain_RecIDStartsWith; } public RA_CreditNotesQuery setRaCreditMainRecIDStartsWith(String value) { this.RA_CreditMain_RecIDStartsWith = value; return this; } public String getRaCreditMainRecIDEndsWith() { return RA_CreditMain_RecIDEndsWith; } public RA_CreditNotesQuery setRaCreditMainRecIDEndsWith(String value) { this.RA_CreditMain_RecIDEndsWith = value; return this; } public String getRaCreditMainRecIDContains() { return RA_CreditMain_RecIDContains; } public RA_CreditNotesQuery setRaCreditMainRecIDContains(String value) { this.RA_CreditMain_RecIDContains = value; return this; } public String getRaCreditMainRecIDLike() { return RA_CreditMain_RecIDLike; } public RA_CreditNotesQuery setRaCreditMainRecIDLike(String value) { this.RA_CreditMain_RecIDLike = value; return this; } public ArrayList getRaCreditMainRecIDBetween() { return RA_CreditMain_RecIDBetween; } public RA_CreditNotesQuery setRaCreditMainRecIDBetween(ArrayList value) { this.RA_CreditMain_RecIDBetween = value; return this; } public ArrayList getRaCreditMainRecIDIn() { return RA_CreditMain_RecIDIn; } public RA_CreditNotesQuery setRaCreditMainRecIDIn(ArrayList value) { this.RA_CreditMain_RecIDIn = value; return this; } public String getNoteTypeID() { return NoteTypeID; } public RA_CreditNotesQuery setNoteTypeID(String value) { this.NoteTypeID = value; return this; } public String getNoteTypeIDStartsWith() { return NoteTypeIDStartsWith; } public RA_CreditNotesQuery setNoteTypeIDStartsWith(String value) { this.NoteTypeIDStartsWith = value; return this; } public String getNoteTypeIDEndsWith() { return NoteTypeIDEndsWith; } public RA_CreditNotesQuery setNoteTypeIDEndsWith(String value) { this.NoteTypeIDEndsWith = value; return this; } public String getNoteTypeIDContains() { return NoteTypeIDContains; } public RA_CreditNotesQuery setNoteTypeIDContains(String value) { this.NoteTypeIDContains = value; return this; } public String getNoteTypeIDLike() { return NoteTypeIDLike; } public RA_CreditNotesQuery setNoteTypeIDLike(String value) { this.NoteTypeIDLike = value; return this; } public ArrayList getNoteTypeIDBetween() { return NoteTypeIDBetween; } public RA_CreditNotesQuery setNoteTypeIDBetween(ArrayList value) { this.NoteTypeIDBetween = value; return this; } public ArrayList getNoteTypeIDIn() { return NoteTypeIDIn; } public RA_CreditNotesQuery setNoteTypeIDIn(ArrayList value) { this.NoteTypeIDIn = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public RA_CreditNotesQuery setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getLastSavedDateTimeGreaterThanOrEqualTo() { return LastSavedDateTimeGreaterThanOrEqualTo; } public RA_CreditNotesQuery setLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.LastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeGreaterThan() { return LastSavedDateTimeGreaterThan; } public RA_CreditNotesQuery setLastSavedDateTimeGreaterThan(Date value) { this.LastSavedDateTimeGreaterThan = value; return this; } public Date getLastSavedDateTimeLessThan() { return LastSavedDateTimeLessThan; } public RA_CreditNotesQuery setLastSavedDateTimeLessThan(Date value) { this.LastSavedDateTimeLessThan = value; return this; } public Date getLastSavedDateTimeLessThanOrEqualTo() { return LastSavedDateTimeLessThanOrEqualTo; } public RA_CreditNotesQuery setLastSavedDateTimeLessThanOrEqualTo(Date value) { this.LastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeNotEqualTo() { return LastSavedDateTimeNotEqualTo; } public RA_CreditNotesQuery setLastSavedDateTimeNotEqualTo(Date value) { this.LastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getLastSavedDateTimeBetween() { return LastSavedDateTimeBetween; } public RA_CreditNotesQuery setLastSavedDateTimeBetween(ArrayList value) { this.LastSavedDateTimeBetween = value; return this; } public ArrayList getLastSavedDateTimeIn() { return LastSavedDateTimeIn; } public RA_CreditNotesQuery setLastSavedDateTimeIn(ArrayList value) { this.LastSavedDateTimeIn = value; return this; } public String getLastSavedByStaffID() { return LastSavedByStaffID; } public RA_CreditNotesQuery setLastSavedByStaffID(String value) { this.LastSavedByStaffID = value; return this; } public String getLastSavedByStaffIDStartsWith() { return LastSavedByStaffIDStartsWith; } public RA_CreditNotesQuery setLastSavedByStaffIDStartsWith(String value) { this.LastSavedByStaffIDStartsWith = value; return this; } public String getLastSavedByStaffIDEndsWith() { return LastSavedByStaffIDEndsWith; } public RA_CreditNotesQuery setLastSavedByStaffIDEndsWith(String value) { this.LastSavedByStaffIDEndsWith = value; return this; } public String getLastSavedByStaffIDContains() { return LastSavedByStaffIDContains; } public RA_CreditNotesQuery setLastSavedByStaffIDContains(String value) { this.LastSavedByStaffIDContains = value; return this; } public String getLastSavedByStaffIDLike() { return LastSavedByStaffIDLike; } public RA_CreditNotesQuery setLastSavedByStaffIDLike(String value) { this.LastSavedByStaffIDLike = value; return this; } public ArrayList getLastSavedByStaffIDBetween() { return LastSavedByStaffIDBetween; } public RA_CreditNotesQuery setLastSavedByStaffIDBetween(ArrayList value) { this.LastSavedByStaffIDBetween = value; return this; } public ArrayList getLastSavedByStaffIDIn() { return LastSavedByStaffIDIn; } public RA_CreditNotesQuery setLastSavedByStaffIDIn(ArrayList value) { this.LastSavedByStaffIDIn = value; return this; } public String getNoteText() { return NoteText; } public RA_CreditNotesQuery setNoteText(String value) { this.NoteText = value; return this; } public String getNoteTextStartsWith() { return NoteTextStartsWith; } public RA_CreditNotesQuery setNoteTextStartsWith(String value) { this.NoteTextStartsWith = value; return this; } public String getNoteTextEndsWith() { return NoteTextEndsWith; } public RA_CreditNotesQuery setNoteTextEndsWith(String value) { this.NoteTextEndsWith = value; return this; } public String getNoteTextContains() { return NoteTextContains; } public RA_CreditNotesQuery setNoteTextContains(String value) { this.NoteTextContains = value; return this; } public String getNoteTextLike() { return NoteTextLike; } public RA_CreditNotesQuery setNoteTextLike(String value) { this.NoteTextLike = value; return this; } public ArrayList getNoteTextBetween() { return NoteTextBetween; } public RA_CreditNotesQuery setNoteTextBetween(ArrayList value) { this.NoteTextBetween = value; return this; } public ArrayList getNoteTextIn() { return NoteTextIn; } public RA_CreditNotesQuery setNoteTextIn(ArrayList value) { this.NoteTextIn = value; return this; } public Integer getItemNo() { return ItemNo; } public RA_CreditNotesQuery setItemNo(Integer value) { this.ItemNo = value; return this; } public Integer getItemNoGreaterThanOrEqualTo() { return ItemNoGreaterThanOrEqualTo; } public RA_CreditNotesQuery setItemNoGreaterThanOrEqualTo(Integer value) { this.ItemNoGreaterThanOrEqualTo = value; return this; } public Integer getItemNoGreaterThan() { return ItemNoGreaterThan; } public RA_CreditNotesQuery setItemNoGreaterThan(Integer value) { this.ItemNoGreaterThan = value; return this; } public Integer getItemNoLessThan() { return ItemNoLessThan; } public RA_CreditNotesQuery setItemNoLessThan(Integer value) { this.ItemNoLessThan = value; return this; } public Integer getItemNoLessThanOrEqualTo() { return ItemNoLessThanOrEqualTo; } public RA_CreditNotesQuery setItemNoLessThanOrEqualTo(Integer value) { this.ItemNoLessThanOrEqualTo = value; return this; } public Integer getItemNoNotEqualTo() { return ItemNoNotEqualTo; } public RA_CreditNotesQuery setItemNoNotEqualTo(Integer value) { this.ItemNoNotEqualTo = value; return this; } public ArrayList getItemNoBetween() { return ItemNoBetween; } public RA_CreditNotesQuery setItemNoBetween(ArrayList value) { this.ItemNoBetween = value; return this; } public ArrayList getItemNoIn() { return ItemNoIn; } public RA_CreditNotesQuery setItemNoIn(ArrayList value) { this.ItemNoIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class RA_DocumentsQuery extends QueryDb implements IReturn> { public String RecID = null; public String RecIDStartsWith = null; public String RecIDEndsWith = null; public String RecIDContains = null; public String RecIDLike = null; public ArrayList RecIDBetween = null; public ArrayList RecIDIn = null; public String FileID = null; public String FileIDStartsWith = null; public String FileIDEndsWith = null; public String FileIDContains = null; public String FileIDLike = null; public ArrayList FileIDBetween = null; public ArrayList FileIDIn = null; public String ParentID = null; public String ParentIDStartsWith = null; public String ParentIDEndsWith = null; public String ParentIDContains = null; public String ParentIDLike = null; public ArrayList ParentIDBetween = null; public ArrayList ParentIDIn = null; public String Remark = null; public String RemarkStartsWith = null; public String RemarkEndsWith = null; public String RemarkContains = null; public String RemarkLike = null; public ArrayList RemarkBetween = null; public ArrayList RemarkIn = null; public String UserName = null; public String UserNameStartsWith = null; public String UserNameEndsWith = null; public String UserNameContains = null; public String UserNameLike = null; public ArrayList UserNameBetween = null; public ArrayList UserNameIn = null; public Date LastSavedDateTime = null; public Date LastSavedDateTimeGreaterThanOrEqualTo = null; public Date LastSavedDateTimeGreaterThan = null; public Date LastSavedDateTimeLessThan = null; public Date LastSavedDateTimeLessThanOrEqualTo = null; public Date LastSavedDateTimeNotEqualTo = null; public ArrayList LastSavedDateTimeBetween = null; public ArrayList LastSavedDateTimeIn = null; public String DocTypeID = null; public String DocTypeIDStartsWith = null; public String DocTypeIDEndsWith = null; public String DocTypeIDContains = null; public String DocTypeIDLike = null; public ArrayList DocTypeIDBetween = null; public ArrayList DocTypeIDIn = null; public Short ParentType = null; public Short ParentTypeGreaterThanOrEqualTo = null; public Short ParentTypeGreaterThan = null; public Short ParentTypeLessThan = null; public Short ParentTypeLessThanOrEqualTo = null; public Short ParentTypeNotEqualTo = null; public ArrayList ParentTypeBetween = null; public ArrayList ParentTypeIn = null; public String getRecID() { return RecID; } public RA_DocumentsQuery setRecID(String value) { this.RecID = value; return this; } public String getRecIDStartsWith() { return RecIDStartsWith; } public RA_DocumentsQuery setRecIDStartsWith(String value) { this.RecIDStartsWith = value; return this; } public String getRecIDEndsWith() { return RecIDEndsWith; } public RA_DocumentsQuery setRecIDEndsWith(String value) { this.RecIDEndsWith = value; return this; } public String getRecIDContains() { return RecIDContains; } public RA_DocumentsQuery setRecIDContains(String value) { this.RecIDContains = value; return this; } public String getRecIDLike() { return RecIDLike; } public RA_DocumentsQuery setRecIDLike(String value) { this.RecIDLike = value; return this; } public ArrayList getRecIDBetween() { return RecIDBetween; } public RA_DocumentsQuery setRecIDBetween(ArrayList value) { this.RecIDBetween = value; return this; } public ArrayList getRecIDIn() { return RecIDIn; } public RA_DocumentsQuery setRecIDIn(ArrayList value) { this.RecIDIn = value; return this; } public String getFileID() { return FileID; } public RA_DocumentsQuery setFileID(String value) { this.FileID = value; return this; } public String getFileIDStartsWith() { return FileIDStartsWith; } public RA_DocumentsQuery setFileIDStartsWith(String value) { this.FileIDStartsWith = value; return this; } public String getFileIDEndsWith() { return FileIDEndsWith; } public RA_DocumentsQuery setFileIDEndsWith(String value) { this.FileIDEndsWith = value; return this; } public String getFileIDContains() { return FileIDContains; } public RA_DocumentsQuery setFileIDContains(String value) { this.FileIDContains = value; return this; } public String getFileIDLike() { return FileIDLike; } public RA_DocumentsQuery setFileIDLike(String value) { this.FileIDLike = value; return this; } public ArrayList getFileIDBetween() { return FileIDBetween; } public RA_DocumentsQuery setFileIDBetween(ArrayList value) { this.FileIDBetween = value; return this; } public ArrayList getFileIDIn() { return FileIDIn; } public RA_DocumentsQuery setFileIDIn(ArrayList value) { this.FileIDIn = value; return this; } public String getParentID() { return ParentID; } public RA_DocumentsQuery setParentID(String value) { this.ParentID = value; return this; } public String getParentIDStartsWith() { return ParentIDStartsWith; } public RA_DocumentsQuery setParentIDStartsWith(String value) { this.ParentIDStartsWith = value; return this; } public String getParentIDEndsWith() { return ParentIDEndsWith; } public RA_DocumentsQuery setParentIDEndsWith(String value) { this.ParentIDEndsWith = value; return this; } public String getParentIDContains() { return ParentIDContains; } public RA_DocumentsQuery setParentIDContains(String value) { this.ParentIDContains = value; return this; } public String getParentIDLike() { return ParentIDLike; } public RA_DocumentsQuery setParentIDLike(String value) { this.ParentIDLike = value; return this; } public ArrayList getParentIDBetween() { return ParentIDBetween; } public RA_DocumentsQuery setParentIDBetween(ArrayList value) { this.ParentIDBetween = value; return this; } public ArrayList getParentIDIn() { return ParentIDIn; } public RA_DocumentsQuery setParentIDIn(ArrayList value) { this.ParentIDIn = value; return this; } public String getRemark() { return Remark; } public RA_DocumentsQuery setRemark(String value) { this.Remark = value; return this; } public String getRemarkStartsWith() { return RemarkStartsWith; } public RA_DocumentsQuery setRemarkStartsWith(String value) { this.RemarkStartsWith = value; return this; } public String getRemarkEndsWith() { return RemarkEndsWith; } public RA_DocumentsQuery setRemarkEndsWith(String value) { this.RemarkEndsWith = value; return this; } public String getRemarkContains() { return RemarkContains; } public RA_DocumentsQuery setRemarkContains(String value) { this.RemarkContains = value; return this; } public String getRemarkLike() { return RemarkLike; } public RA_DocumentsQuery setRemarkLike(String value) { this.RemarkLike = value; return this; } public ArrayList getRemarkBetween() { return RemarkBetween; } public RA_DocumentsQuery setRemarkBetween(ArrayList value) { this.RemarkBetween = value; return this; } public ArrayList getRemarkIn() { return RemarkIn; } public RA_DocumentsQuery setRemarkIn(ArrayList value) { this.RemarkIn = value; return this; } public String getUserName() { return UserName; } public RA_DocumentsQuery setUserName(String value) { this.UserName = value; return this; } public String getUserNameStartsWith() { return UserNameStartsWith; } public RA_DocumentsQuery setUserNameStartsWith(String value) { this.UserNameStartsWith = value; return this; } public String getUserNameEndsWith() { return UserNameEndsWith; } public RA_DocumentsQuery setUserNameEndsWith(String value) { this.UserNameEndsWith = value; return this; } public String getUserNameContains() { return UserNameContains; } public RA_DocumentsQuery setUserNameContains(String value) { this.UserNameContains = value; return this; } public String getUserNameLike() { return UserNameLike; } public RA_DocumentsQuery setUserNameLike(String value) { this.UserNameLike = value; return this; } public ArrayList getUserNameBetween() { return UserNameBetween; } public RA_DocumentsQuery setUserNameBetween(ArrayList value) { this.UserNameBetween = value; return this; } public ArrayList getUserNameIn() { return UserNameIn; } public RA_DocumentsQuery setUserNameIn(ArrayList value) { this.UserNameIn = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public RA_DocumentsQuery setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getLastSavedDateTimeGreaterThanOrEqualTo() { return LastSavedDateTimeGreaterThanOrEqualTo; } public RA_DocumentsQuery setLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.LastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeGreaterThan() { return LastSavedDateTimeGreaterThan; } public RA_DocumentsQuery setLastSavedDateTimeGreaterThan(Date value) { this.LastSavedDateTimeGreaterThan = value; return this; } public Date getLastSavedDateTimeLessThan() { return LastSavedDateTimeLessThan; } public RA_DocumentsQuery setLastSavedDateTimeLessThan(Date value) { this.LastSavedDateTimeLessThan = value; return this; } public Date getLastSavedDateTimeLessThanOrEqualTo() { return LastSavedDateTimeLessThanOrEqualTo; } public RA_DocumentsQuery setLastSavedDateTimeLessThanOrEqualTo(Date value) { this.LastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeNotEqualTo() { return LastSavedDateTimeNotEqualTo; } public RA_DocumentsQuery setLastSavedDateTimeNotEqualTo(Date value) { this.LastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getLastSavedDateTimeBetween() { return LastSavedDateTimeBetween; } public RA_DocumentsQuery setLastSavedDateTimeBetween(ArrayList value) { this.LastSavedDateTimeBetween = value; return this; } public ArrayList getLastSavedDateTimeIn() { return LastSavedDateTimeIn; } public RA_DocumentsQuery setLastSavedDateTimeIn(ArrayList value) { this.LastSavedDateTimeIn = value; return this; } public String getDocTypeID() { return DocTypeID; } public RA_DocumentsQuery setDocTypeID(String value) { this.DocTypeID = value; return this; } public String getDocTypeIDStartsWith() { return DocTypeIDStartsWith; } public RA_DocumentsQuery setDocTypeIDStartsWith(String value) { this.DocTypeIDStartsWith = value; return this; } public String getDocTypeIDEndsWith() { return DocTypeIDEndsWith; } public RA_DocumentsQuery setDocTypeIDEndsWith(String value) { this.DocTypeIDEndsWith = value; return this; } public String getDocTypeIDContains() { return DocTypeIDContains; } public RA_DocumentsQuery setDocTypeIDContains(String value) { this.DocTypeIDContains = value; return this; } public String getDocTypeIDLike() { return DocTypeIDLike; } public RA_DocumentsQuery setDocTypeIDLike(String value) { this.DocTypeIDLike = value; return this; } public ArrayList getDocTypeIDBetween() { return DocTypeIDBetween; } public RA_DocumentsQuery setDocTypeIDBetween(ArrayList value) { this.DocTypeIDBetween = value; return this; } public ArrayList getDocTypeIDIn() { return DocTypeIDIn; } public RA_DocumentsQuery setDocTypeIDIn(ArrayList value) { this.DocTypeIDIn = value; return this; } public Short getParentType() { return ParentType; } public RA_DocumentsQuery setParentType(Short value) { this.ParentType = value; return this; } public Short getParentTypeGreaterThanOrEqualTo() { return ParentTypeGreaterThanOrEqualTo; } public RA_DocumentsQuery setParentTypeGreaterThanOrEqualTo(Short value) { this.ParentTypeGreaterThanOrEqualTo = value; return this; } public Short getParentTypeGreaterThan() { return ParentTypeGreaterThan; } public RA_DocumentsQuery setParentTypeGreaterThan(Short value) { this.ParentTypeGreaterThan = value; return this; } public Short getParentTypeLessThan() { return ParentTypeLessThan; } public RA_DocumentsQuery setParentTypeLessThan(Short value) { this.ParentTypeLessThan = value; return this; } public Short getParentTypeLessThanOrEqualTo() { return ParentTypeLessThanOrEqualTo; } public RA_DocumentsQuery setParentTypeLessThanOrEqualTo(Short value) { this.ParentTypeLessThanOrEqualTo = value; return this; } public Short getParentTypeNotEqualTo() { return ParentTypeNotEqualTo; } public RA_DocumentsQuery setParentTypeNotEqualTo(Short value) { this.ParentTypeNotEqualTo = value; return this; } public ArrayList getParentTypeBetween() { return ParentTypeBetween; } public RA_DocumentsQuery setParentTypeBetween(ArrayList value) { this.ParentTypeBetween = value; return this; } public ArrayList getParentTypeIn() { return ParentTypeIn; } public RA_DocumentsQuery setParentTypeIn(ArrayList value) { this.ParentTypeIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class RA_RequestDocumentsQuery extends QueryDb implements IReturn> { public String RecID = null; public String RecIDStartsWith = null; public String RecIDEndsWith = null; public String RecIDContains = null; public String RecIDLike = null; public ArrayList RecIDBetween = null; public ArrayList RecIDIn = null; public String RA_RequestMain_RecID = null; public String RA_RequestMain_RecIDStartsWith = null; public String RA_RequestMain_RecIDEndsWith = null; public String RA_RequestMain_RecIDContains = null; public String RA_RequestMain_RecIDLike = null; public ArrayList RA_RequestMain_RecIDBetween = null; public ArrayList RA_RequestMain_RecIDIn = null; public String DocumentTypeID = null; public String DocumentTypeIDStartsWith = null; public String DocumentTypeIDEndsWith = null; public String DocumentTypeIDContains = null; public String DocumentTypeIDLike = null; public ArrayList DocumentTypeIDBetween = null; public ArrayList DocumentTypeIDIn = null; public Date LastSavedDateTime = null; public Date LastSavedDateTimeGreaterThanOrEqualTo = null; public Date LastSavedDateTimeGreaterThan = null; public Date LastSavedDateTimeLessThan = null; public Date LastSavedDateTimeLessThanOrEqualTo = null; public Date LastSavedDateTimeNotEqualTo = null; public ArrayList LastSavedDateTimeBetween = null; public ArrayList LastSavedDateTimeIn = null; public String LastSavedByStaffID = null; public String LastSavedByStaffIDStartsWith = null; public String LastSavedByStaffIDEndsWith = null; public String LastSavedByStaffIDContains = null; public String LastSavedByStaffIDLike = null; public ArrayList LastSavedByStaffIDBetween = null; public ArrayList LastSavedByStaffIDIn = null; public ArrayList FileBinary = null; public String Description = null; public String DescriptionStartsWith = null; public String DescriptionEndsWith = null; public String DescriptionContains = null; public String DescriptionLike = null; public ArrayList DescriptionBetween = null; public ArrayList DescriptionIn = null; public String PhysicalFileName = null; public String PhysicalFileNameStartsWith = null; public String PhysicalFileNameEndsWith = null; public String PhysicalFileNameContains = null; public String PhysicalFileNameLike = null; public ArrayList PhysicalFileNameBetween = null; public ArrayList PhysicalFileNameIn = null; public Integer ItemNo = null; public Integer ItemNoGreaterThanOrEqualTo = null; public Integer ItemNoGreaterThan = null; public Integer ItemNoLessThan = null; public Integer ItemNoLessThanOrEqualTo = null; public Integer ItemNoNotEqualTo = null; public ArrayList ItemNoBetween = null; public ArrayList ItemNoIn = null; public String getRecID() { return RecID; } public RA_RequestDocumentsQuery setRecID(String value) { this.RecID = value; return this; } public String getRecIDStartsWith() { return RecIDStartsWith; } public RA_RequestDocumentsQuery setRecIDStartsWith(String value) { this.RecIDStartsWith = value; return this; } public String getRecIDEndsWith() { return RecIDEndsWith; } public RA_RequestDocumentsQuery setRecIDEndsWith(String value) { this.RecIDEndsWith = value; return this; } public String getRecIDContains() { return RecIDContains; } public RA_RequestDocumentsQuery setRecIDContains(String value) { this.RecIDContains = value; return this; } public String getRecIDLike() { return RecIDLike; } public RA_RequestDocumentsQuery setRecIDLike(String value) { this.RecIDLike = value; return this; } public ArrayList getRecIDBetween() { return RecIDBetween; } public RA_RequestDocumentsQuery setRecIDBetween(ArrayList value) { this.RecIDBetween = value; return this; } public ArrayList getRecIDIn() { return RecIDIn; } public RA_RequestDocumentsQuery setRecIDIn(ArrayList value) { this.RecIDIn = value; return this; } public String getRaRequestMainRecID() { return RA_RequestMain_RecID; } public RA_RequestDocumentsQuery setRaRequestMainRecID(String value) { this.RA_RequestMain_RecID = value; return this; } public String getRaRequestMainRecIDStartsWith() { return RA_RequestMain_RecIDStartsWith; } public RA_RequestDocumentsQuery setRaRequestMainRecIDStartsWith(String value) { this.RA_RequestMain_RecIDStartsWith = value; return this; } public String getRaRequestMainRecIDEndsWith() { return RA_RequestMain_RecIDEndsWith; } public RA_RequestDocumentsQuery setRaRequestMainRecIDEndsWith(String value) { this.RA_RequestMain_RecIDEndsWith = value; return this; } public String getRaRequestMainRecIDContains() { return RA_RequestMain_RecIDContains; } public RA_RequestDocumentsQuery setRaRequestMainRecIDContains(String value) { this.RA_RequestMain_RecIDContains = value; return this; } public String getRaRequestMainRecIDLike() { return RA_RequestMain_RecIDLike; } public RA_RequestDocumentsQuery setRaRequestMainRecIDLike(String value) { this.RA_RequestMain_RecIDLike = value; return this; } public ArrayList getRaRequestMainRecIDBetween() { return RA_RequestMain_RecIDBetween; } public RA_RequestDocumentsQuery setRaRequestMainRecIDBetween(ArrayList value) { this.RA_RequestMain_RecIDBetween = value; return this; } public ArrayList getRaRequestMainRecIDIn() { return RA_RequestMain_RecIDIn; } public RA_RequestDocumentsQuery setRaRequestMainRecIDIn(ArrayList value) { this.RA_RequestMain_RecIDIn = value; return this; } public String getDocumentTypeID() { return DocumentTypeID; } public RA_RequestDocumentsQuery setDocumentTypeID(String value) { this.DocumentTypeID = value; return this; } public String getDocumentTypeIDStartsWith() { return DocumentTypeIDStartsWith; } public RA_RequestDocumentsQuery setDocumentTypeIDStartsWith(String value) { this.DocumentTypeIDStartsWith = value; return this; } public String getDocumentTypeIDEndsWith() { return DocumentTypeIDEndsWith; } public RA_RequestDocumentsQuery setDocumentTypeIDEndsWith(String value) { this.DocumentTypeIDEndsWith = value; return this; } public String getDocumentTypeIDContains() { return DocumentTypeIDContains; } public RA_RequestDocumentsQuery setDocumentTypeIDContains(String value) { this.DocumentTypeIDContains = value; return this; } public String getDocumentTypeIDLike() { return DocumentTypeIDLike; } public RA_RequestDocumentsQuery setDocumentTypeIDLike(String value) { this.DocumentTypeIDLike = value; return this; } public ArrayList getDocumentTypeIDBetween() { return DocumentTypeIDBetween; } public RA_RequestDocumentsQuery setDocumentTypeIDBetween(ArrayList value) { this.DocumentTypeIDBetween = value; return this; } public ArrayList getDocumentTypeIDIn() { return DocumentTypeIDIn; } public RA_RequestDocumentsQuery setDocumentTypeIDIn(ArrayList value) { this.DocumentTypeIDIn = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public RA_RequestDocumentsQuery setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getLastSavedDateTimeGreaterThanOrEqualTo() { return LastSavedDateTimeGreaterThanOrEqualTo; } public RA_RequestDocumentsQuery setLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.LastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeGreaterThan() { return LastSavedDateTimeGreaterThan; } public RA_RequestDocumentsQuery setLastSavedDateTimeGreaterThan(Date value) { this.LastSavedDateTimeGreaterThan = value; return this; } public Date getLastSavedDateTimeLessThan() { return LastSavedDateTimeLessThan; } public RA_RequestDocumentsQuery setLastSavedDateTimeLessThan(Date value) { this.LastSavedDateTimeLessThan = value; return this; } public Date getLastSavedDateTimeLessThanOrEqualTo() { return LastSavedDateTimeLessThanOrEqualTo; } public RA_RequestDocumentsQuery setLastSavedDateTimeLessThanOrEqualTo(Date value) { this.LastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeNotEqualTo() { return LastSavedDateTimeNotEqualTo; } public RA_RequestDocumentsQuery setLastSavedDateTimeNotEqualTo(Date value) { this.LastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getLastSavedDateTimeBetween() { return LastSavedDateTimeBetween; } public RA_RequestDocumentsQuery setLastSavedDateTimeBetween(ArrayList value) { this.LastSavedDateTimeBetween = value; return this; } public ArrayList getLastSavedDateTimeIn() { return LastSavedDateTimeIn; } public RA_RequestDocumentsQuery setLastSavedDateTimeIn(ArrayList value) { this.LastSavedDateTimeIn = value; return this; } public String getLastSavedByStaffID() { return LastSavedByStaffID; } public RA_RequestDocumentsQuery setLastSavedByStaffID(String value) { this.LastSavedByStaffID = value; return this; } public String getLastSavedByStaffIDStartsWith() { return LastSavedByStaffIDStartsWith; } public RA_RequestDocumentsQuery setLastSavedByStaffIDStartsWith(String value) { this.LastSavedByStaffIDStartsWith = value; return this; } public String getLastSavedByStaffIDEndsWith() { return LastSavedByStaffIDEndsWith; } public RA_RequestDocumentsQuery setLastSavedByStaffIDEndsWith(String value) { this.LastSavedByStaffIDEndsWith = value; return this; } public String getLastSavedByStaffIDContains() { return LastSavedByStaffIDContains; } public RA_RequestDocumentsQuery setLastSavedByStaffIDContains(String value) { this.LastSavedByStaffIDContains = value; return this; } public String getLastSavedByStaffIDLike() { return LastSavedByStaffIDLike; } public RA_RequestDocumentsQuery setLastSavedByStaffIDLike(String value) { this.LastSavedByStaffIDLike = value; return this; } public ArrayList getLastSavedByStaffIDBetween() { return LastSavedByStaffIDBetween; } public RA_RequestDocumentsQuery setLastSavedByStaffIDBetween(ArrayList value) { this.LastSavedByStaffIDBetween = value; return this; } public ArrayList getLastSavedByStaffIDIn() { return LastSavedByStaffIDIn; } public RA_RequestDocumentsQuery setLastSavedByStaffIDIn(ArrayList value) { this.LastSavedByStaffIDIn = value; return this; } public ArrayList getFileBinary() { return FileBinary; } public RA_RequestDocumentsQuery setFileBinary(ArrayList value) { this.FileBinary = value; return this; } public String getDescription() { return Description; } public RA_RequestDocumentsQuery setDescription(String value) { this.Description = value; return this; } public String getDescriptionStartsWith() { return DescriptionStartsWith; } public RA_RequestDocumentsQuery setDescriptionStartsWith(String value) { this.DescriptionStartsWith = value; return this; } public String getDescriptionEndsWith() { return DescriptionEndsWith; } public RA_RequestDocumentsQuery setDescriptionEndsWith(String value) { this.DescriptionEndsWith = value; return this; } public String getDescriptionContains() { return DescriptionContains; } public RA_RequestDocumentsQuery setDescriptionContains(String value) { this.DescriptionContains = value; return this; } public String getDescriptionLike() { return DescriptionLike; } public RA_RequestDocumentsQuery setDescriptionLike(String value) { this.DescriptionLike = value; return this; } public ArrayList getDescriptionBetween() { return DescriptionBetween; } public RA_RequestDocumentsQuery setDescriptionBetween(ArrayList value) { this.DescriptionBetween = value; return this; } public ArrayList getDescriptionIn() { return DescriptionIn; } public RA_RequestDocumentsQuery setDescriptionIn(ArrayList value) { this.DescriptionIn = value; return this; } public String getPhysicalFileName() { return PhysicalFileName; } public RA_RequestDocumentsQuery setPhysicalFileName(String value) { this.PhysicalFileName = value; return this; } public String getPhysicalFileNameStartsWith() { return PhysicalFileNameStartsWith; } public RA_RequestDocumentsQuery setPhysicalFileNameStartsWith(String value) { this.PhysicalFileNameStartsWith = value; return this; } public String getPhysicalFileNameEndsWith() { return PhysicalFileNameEndsWith; } public RA_RequestDocumentsQuery setPhysicalFileNameEndsWith(String value) { this.PhysicalFileNameEndsWith = value; return this; } public String getPhysicalFileNameContains() { return PhysicalFileNameContains; } public RA_RequestDocumentsQuery setPhysicalFileNameContains(String value) { this.PhysicalFileNameContains = value; return this; } public String getPhysicalFileNameLike() { return PhysicalFileNameLike; } public RA_RequestDocumentsQuery setPhysicalFileNameLike(String value) { this.PhysicalFileNameLike = value; return this; } public ArrayList getPhysicalFileNameBetween() { return PhysicalFileNameBetween; } public RA_RequestDocumentsQuery setPhysicalFileNameBetween(ArrayList value) { this.PhysicalFileNameBetween = value; return this; } public ArrayList getPhysicalFileNameIn() { return PhysicalFileNameIn; } public RA_RequestDocumentsQuery setPhysicalFileNameIn(ArrayList value) { this.PhysicalFileNameIn = value; return this; } public Integer getItemNo() { return ItemNo; } public RA_RequestDocumentsQuery setItemNo(Integer value) { this.ItemNo = value; return this; } public Integer getItemNoGreaterThanOrEqualTo() { return ItemNoGreaterThanOrEqualTo; } public RA_RequestDocumentsQuery setItemNoGreaterThanOrEqualTo(Integer value) { this.ItemNoGreaterThanOrEqualTo = value; return this; } public Integer getItemNoGreaterThan() { return ItemNoGreaterThan; } public RA_RequestDocumentsQuery setItemNoGreaterThan(Integer value) { this.ItemNoGreaterThan = value; return this; } public Integer getItemNoLessThan() { return ItemNoLessThan; } public RA_RequestDocumentsQuery setItemNoLessThan(Integer value) { this.ItemNoLessThan = value; return this; } public Integer getItemNoLessThanOrEqualTo() { return ItemNoLessThanOrEqualTo; } public RA_RequestDocumentsQuery setItemNoLessThanOrEqualTo(Integer value) { this.ItemNoLessThanOrEqualTo = value; return this; } public Integer getItemNoNotEqualTo() { return ItemNoNotEqualTo; } public RA_RequestDocumentsQuery setItemNoNotEqualTo(Integer value) { this.ItemNoNotEqualTo = value; return this; } public ArrayList getItemNoBetween() { return ItemNoBetween; } public RA_RequestDocumentsQuery setItemNoBetween(ArrayList value) { this.ItemNoBetween = value; return this; } public ArrayList getItemNoIn() { return ItemNoIn; } public RA_RequestDocumentsQuery setItemNoIn(ArrayList value) { this.ItemNoIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class RA_RequestInQuery extends QueryDb implements IReturn> { public String RA_ShipMain_RecID = null; public String RA_ShipMain_RecIDStartsWith = null; public String RA_ShipMain_RecIDEndsWith = null; public String RA_ShipMain_RecIDContains = null; public String RA_ShipMain_RecIDLike = null; public ArrayList RA_ShipMain_RecIDBetween = null; public ArrayList RA_ShipMain_RecIDIn = null; public String RA_RequestMain_RecID = null; public String RA_RequestMain_RecIDStartsWith = null; public String RA_RequestMain_RecIDEndsWith = null; public String RA_RequestMain_RecIDContains = null; public String RA_RequestMain_RecIDLike = null; public ArrayList RA_RequestMain_RecIDBetween = null; public ArrayList RA_RequestMain_RecIDIn = null; public String getRaShipMainRecID() { return RA_ShipMain_RecID; } public RA_RequestInQuery setRaShipMainRecID(String value) { this.RA_ShipMain_RecID = value; return this; } public String getRaShipMainRecIDStartsWith() { return RA_ShipMain_RecIDStartsWith; } public RA_RequestInQuery setRaShipMainRecIDStartsWith(String value) { this.RA_ShipMain_RecIDStartsWith = value; return this; } public String getRaShipMainRecIDEndsWith() { return RA_ShipMain_RecIDEndsWith; } public RA_RequestInQuery setRaShipMainRecIDEndsWith(String value) { this.RA_ShipMain_RecIDEndsWith = value; return this; } public String getRaShipMainRecIDContains() { return RA_ShipMain_RecIDContains; } public RA_RequestInQuery setRaShipMainRecIDContains(String value) { this.RA_ShipMain_RecIDContains = value; return this; } public String getRaShipMainRecIDLike() { return RA_ShipMain_RecIDLike; } public RA_RequestInQuery setRaShipMainRecIDLike(String value) { this.RA_ShipMain_RecIDLike = value; return this; } public ArrayList getRaShipMainRecIDBetween() { return RA_ShipMain_RecIDBetween; } public RA_RequestInQuery setRaShipMainRecIDBetween(ArrayList value) { this.RA_ShipMain_RecIDBetween = value; return this; } public ArrayList getRaShipMainRecIDIn() { return RA_ShipMain_RecIDIn; } public RA_RequestInQuery setRaShipMainRecIDIn(ArrayList value) { this.RA_ShipMain_RecIDIn = value; return this; } public String getRaRequestMainRecID() { return RA_RequestMain_RecID; } public RA_RequestInQuery setRaRequestMainRecID(String value) { this.RA_RequestMain_RecID = value; return this; } public String getRaRequestMainRecIDStartsWith() { return RA_RequestMain_RecIDStartsWith; } public RA_RequestInQuery setRaRequestMainRecIDStartsWith(String value) { this.RA_RequestMain_RecIDStartsWith = value; return this; } public String getRaRequestMainRecIDEndsWith() { return RA_RequestMain_RecIDEndsWith; } public RA_RequestInQuery setRaRequestMainRecIDEndsWith(String value) { this.RA_RequestMain_RecIDEndsWith = value; return this; } public String getRaRequestMainRecIDContains() { return RA_RequestMain_RecIDContains; } public RA_RequestInQuery setRaRequestMainRecIDContains(String value) { this.RA_RequestMain_RecIDContains = value; return this; } public String getRaRequestMainRecIDLike() { return RA_RequestMain_RecIDLike; } public RA_RequestInQuery setRaRequestMainRecIDLike(String value) { this.RA_RequestMain_RecIDLike = value; return this; } public ArrayList getRaRequestMainRecIDBetween() { return RA_RequestMain_RecIDBetween; } public RA_RequestInQuery setRaRequestMainRecIDBetween(ArrayList value) { this.RA_RequestMain_RecIDBetween = value; return this; } public ArrayList getRaRequestMainRecIDIn() { return RA_RequestMain_RecIDIn; } public RA_RequestInQuery setRaRequestMainRecIDIn(ArrayList value) { this.RA_RequestMain_RecIDIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class RA_RequestLineDetailsQuery extends QueryDb implements IReturn> { public String RecID = null; public String RecIDStartsWith = null; public String RecIDEndsWith = null; public String RecIDContains = null; public String RecIDLike = null; public ArrayList RecIDBetween = null; public ArrayList RecIDIn = null; public String Parent_RecID = null; public String Parent_RecIDStartsWith = null; public String Parent_RecIDEndsWith = null; public String Parent_RecIDContains = null; public String Parent_RecIDLike = null; public ArrayList Parent_RecIDBetween = null; public ArrayList Parent_RecIDIn = null; public String IN_SOH_LinkID = null; public String IN_SOH_LinkIDStartsWith = null; public String IN_SOH_LinkIDEndsWith = null; public String IN_SOH_LinkIDContains = null; public String IN_SOH_LinkIDLike = null; public ArrayList IN_SOH_LinkIDBetween = null; public ArrayList IN_SOH_LinkIDIn = null; public BigDecimal Cost = null; public BigDecimal CostGreaterThanOrEqualTo = null; public BigDecimal CostGreaterThan = null; public BigDecimal CostLessThan = null; public BigDecimal CostLessThanOrEqualTo = null; public BigDecimal CostNotEqualTo = null; public ArrayList CostBetween = null; public ArrayList CostIn = null; public BigDecimal SpecialPrice = null; public BigDecimal SpecialPriceGreaterThanOrEqualTo = null; public BigDecimal SpecialPriceGreaterThan = null; public BigDecimal SpecialPriceLessThan = null; public BigDecimal SpecialPriceLessThanOrEqualTo = null; public BigDecimal SpecialPriceNotEqualTo = null; public ArrayList SpecialPriceBetween = null; public ArrayList SpecialPriceIn = null; public BigDecimal Quantity = null; public BigDecimal QuantityGreaterThanOrEqualTo = null; public BigDecimal QuantityGreaterThan = null; public BigDecimal QuantityLessThan = null; public BigDecimal QuantityLessThanOrEqualTo = null; public BigDecimal QuantityNotEqualTo = null; public ArrayList QuantityBetween = null; public ArrayList QuantityIn = null; public String SerialNo = null; public String SerialNoStartsWith = null; public String SerialNoEndsWith = null; public String SerialNoContains = null; public String SerialNoLike = null; public ArrayList SerialNoBetween = null; public ArrayList SerialNoIn = null; public Date ExpiryDate = null; public Date ExpiryDateGreaterThanOrEqualTo = null; public Date ExpiryDateGreaterThan = null; public Date ExpiryDateLessThan = null; public Date ExpiryDateLessThanOrEqualTo = null; public Date ExpiryDateNotEqualTo = null; public ArrayList ExpiryDateBetween = null; public ArrayList ExpiryDateIn = null; public String BinLocation = null; public String BinLocationStartsWith = null; public String BinLocationEndsWith = null; public String BinLocationContains = null; public String BinLocationLike = null; public ArrayList BinLocationBetween = null; public ArrayList BinLocationIn = null; public Date LastSavedDateTime = null; public Date LastSavedDateTimeGreaterThanOrEqualTo = null; public Date LastSavedDateTimeGreaterThan = null; public Date LastSavedDateTimeLessThan = null; public Date LastSavedDateTimeLessThanOrEqualTo = null; public Date LastSavedDateTimeNotEqualTo = null; public ArrayList LastSavedDateTimeBetween = null; public ArrayList LastSavedDateTimeIn = null; public ArrayList RowHash = null; public Integer ItemNo = null; public Integer ItemNoGreaterThanOrEqualTo = null; public Integer ItemNoGreaterThan = null; public Integer ItemNoLessThan = null; public Integer ItemNoLessThanOrEqualTo = null; public Integer ItemNoNotEqualTo = null; public ArrayList ItemNoBetween = null; public ArrayList ItemNoIn = null; public String getRecID() { return RecID; } public RA_RequestLineDetailsQuery setRecID(String value) { this.RecID = value; return this; } public String getRecIDStartsWith() { return RecIDStartsWith; } public RA_RequestLineDetailsQuery setRecIDStartsWith(String value) { this.RecIDStartsWith = value; return this; } public String getRecIDEndsWith() { return RecIDEndsWith; } public RA_RequestLineDetailsQuery setRecIDEndsWith(String value) { this.RecIDEndsWith = value; return this; } public String getRecIDContains() { return RecIDContains; } public RA_RequestLineDetailsQuery setRecIDContains(String value) { this.RecIDContains = value; return this; } public String getRecIDLike() { return RecIDLike; } public RA_RequestLineDetailsQuery setRecIDLike(String value) { this.RecIDLike = value; return this; } public ArrayList getRecIDBetween() { return RecIDBetween; } public RA_RequestLineDetailsQuery setRecIDBetween(ArrayList value) { this.RecIDBetween = value; return this; } public ArrayList getRecIDIn() { return RecIDIn; } public RA_RequestLineDetailsQuery setRecIDIn(ArrayList value) { this.RecIDIn = value; return this; } public String getParentRecID() { return Parent_RecID; } public RA_RequestLineDetailsQuery setParentRecID(String value) { this.Parent_RecID = value; return this; } public String getParentRecIDStartsWith() { return Parent_RecIDStartsWith; } public RA_RequestLineDetailsQuery setParentRecIDStartsWith(String value) { this.Parent_RecIDStartsWith = value; return this; } public String getParentRecIDEndsWith() { return Parent_RecIDEndsWith; } public RA_RequestLineDetailsQuery setParentRecIDEndsWith(String value) { this.Parent_RecIDEndsWith = value; return this; } public String getParentRecIDContains() { return Parent_RecIDContains; } public RA_RequestLineDetailsQuery setParentRecIDContains(String value) { this.Parent_RecIDContains = value; return this; } public String getParentRecIDLike() { return Parent_RecIDLike; } public RA_RequestLineDetailsQuery setParentRecIDLike(String value) { this.Parent_RecIDLike = value; return this; } public ArrayList getParentRecIDBetween() { return Parent_RecIDBetween; } public RA_RequestLineDetailsQuery setParentRecIDBetween(ArrayList value) { this.Parent_RecIDBetween = value; return this; } public ArrayList getParentRecIDIn() { return Parent_RecIDIn; } public RA_RequestLineDetailsQuery setParentRecIDIn(ArrayList value) { this.Parent_RecIDIn = value; return this; } public String getInSohLinkID() { return IN_SOH_LinkID; } public RA_RequestLineDetailsQuery setInSohLinkID(String value) { this.IN_SOH_LinkID = value; return this; } public String getInSohLinkIDStartsWith() { return IN_SOH_LinkIDStartsWith; } public RA_RequestLineDetailsQuery setInSohLinkIDStartsWith(String value) { this.IN_SOH_LinkIDStartsWith = value; return this; } public String getInSohLinkIDEndsWith() { return IN_SOH_LinkIDEndsWith; } public RA_RequestLineDetailsQuery setInSohLinkIDEndsWith(String value) { this.IN_SOH_LinkIDEndsWith = value; return this; } public String getInSohLinkIDContains() { return IN_SOH_LinkIDContains; } public RA_RequestLineDetailsQuery setInSohLinkIDContains(String value) { this.IN_SOH_LinkIDContains = value; return this; } public String getInSohLinkIDLike() { return IN_SOH_LinkIDLike; } public RA_RequestLineDetailsQuery setInSohLinkIDLike(String value) { this.IN_SOH_LinkIDLike = value; return this; } public ArrayList getInSohLinkIDBetween() { return IN_SOH_LinkIDBetween; } public RA_RequestLineDetailsQuery setInSohLinkIDBetween(ArrayList value) { this.IN_SOH_LinkIDBetween = value; return this; } public ArrayList getInSohLinkIDIn() { return IN_SOH_LinkIDIn; } public RA_RequestLineDetailsQuery setInSohLinkIDIn(ArrayList value) { this.IN_SOH_LinkIDIn = value; return this; } public BigDecimal getCost() { return Cost; } public RA_RequestLineDetailsQuery setCost(BigDecimal value) { this.Cost = value; return this; } public BigDecimal getCostGreaterThanOrEqualTo() { return CostGreaterThanOrEqualTo; } public RA_RequestLineDetailsQuery setCostGreaterThanOrEqualTo(BigDecimal value) { this.CostGreaterThanOrEqualTo = value; return this; } public BigDecimal getCostGreaterThan() { return CostGreaterThan; } public RA_RequestLineDetailsQuery setCostGreaterThan(BigDecimal value) { this.CostGreaterThan = value; return this; } public BigDecimal getCostLessThan() { return CostLessThan; } public RA_RequestLineDetailsQuery setCostLessThan(BigDecimal value) { this.CostLessThan = value; return this; } public BigDecimal getCostLessThanOrEqualTo() { return CostLessThanOrEqualTo; } public RA_RequestLineDetailsQuery setCostLessThanOrEqualTo(BigDecimal value) { this.CostLessThanOrEqualTo = value; return this; } public BigDecimal getCostNotEqualTo() { return CostNotEqualTo; } public RA_RequestLineDetailsQuery setCostNotEqualTo(BigDecimal value) { this.CostNotEqualTo = value; return this; } public ArrayList getCostBetween() { return CostBetween; } public RA_RequestLineDetailsQuery setCostBetween(ArrayList value) { this.CostBetween = value; return this; } public ArrayList getCostIn() { return CostIn; } public RA_RequestLineDetailsQuery setCostIn(ArrayList value) { this.CostIn = value; return this; } public BigDecimal getSpecialPrice() { return SpecialPrice; } public RA_RequestLineDetailsQuery setSpecialPrice(BigDecimal value) { this.SpecialPrice = value; return this; } public BigDecimal getSpecialPriceGreaterThanOrEqualTo() { return SpecialPriceGreaterThanOrEqualTo; } public RA_RequestLineDetailsQuery setSpecialPriceGreaterThanOrEqualTo(BigDecimal value) { this.SpecialPriceGreaterThanOrEqualTo = value; return this; } public BigDecimal getSpecialPriceGreaterThan() { return SpecialPriceGreaterThan; } public RA_RequestLineDetailsQuery setSpecialPriceGreaterThan(BigDecimal value) { this.SpecialPriceGreaterThan = value; return this; } public BigDecimal getSpecialPriceLessThan() { return SpecialPriceLessThan; } public RA_RequestLineDetailsQuery setSpecialPriceLessThan(BigDecimal value) { this.SpecialPriceLessThan = value; return this; } public BigDecimal getSpecialPriceLessThanOrEqualTo() { return SpecialPriceLessThanOrEqualTo; } public RA_RequestLineDetailsQuery setSpecialPriceLessThanOrEqualTo(BigDecimal value) { this.SpecialPriceLessThanOrEqualTo = value; return this; } public BigDecimal getSpecialPriceNotEqualTo() { return SpecialPriceNotEqualTo; } public RA_RequestLineDetailsQuery setSpecialPriceNotEqualTo(BigDecimal value) { this.SpecialPriceNotEqualTo = value; return this; } public ArrayList getSpecialPriceBetween() { return SpecialPriceBetween; } public RA_RequestLineDetailsQuery setSpecialPriceBetween(ArrayList value) { this.SpecialPriceBetween = value; return this; } public ArrayList getSpecialPriceIn() { return SpecialPriceIn; } public RA_RequestLineDetailsQuery setSpecialPriceIn(ArrayList value) { this.SpecialPriceIn = value; return this; } public BigDecimal getQuantity() { return Quantity; } public RA_RequestLineDetailsQuery setQuantity(BigDecimal value) { this.Quantity = value; return this; } public BigDecimal getQuantityGreaterThanOrEqualTo() { return QuantityGreaterThanOrEqualTo; } public RA_RequestLineDetailsQuery setQuantityGreaterThanOrEqualTo(BigDecimal value) { this.QuantityGreaterThanOrEqualTo = value; return this; } public BigDecimal getQuantityGreaterThan() { return QuantityGreaterThan; } public RA_RequestLineDetailsQuery setQuantityGreaterThan(BigDecimal value) { this.QuantityGreaterThan = value; return this; } public BigDecimal getQuantityLessThan() { return QuantityLessThan; } public RA_RequestLineDetailsQuery setQuantityLessThan(BigDecimal value) { this.QuantityLessThan = value; return this; } public BigDecimal getQuantityLessThanOrEqualTo() { return QuantityLessThanOrEqualTo; } public RA_RequestLineDetailsQuery setQuantityLessThanOrEqualTo(BigDecimal value) { this.QuantityLessThanOrEqualTo = value; return this; } public BigDecimal getQuantityNotEqualTo() { return QuantityNotEqualTo; } public RA_RequestLineDetailsQuery setQuantityNotEqualTo(BigDecimal value) { this.QuantityNotEqualTo = value; return this; } public ArrayList getQuantityBetween() { return QuantityBetween; } public RA_RequestLineDetailsQuery setQuantityBetween(ArrayList value) { this.QuantityBetween = value; return this; } public ArrayList getQuantityIn() { return QuantityIn; } public RA_RequestLineDetailsQuery setQuantityIn(ArrayList value) { this.QuantityIn = value; return this; } public String getSerialNo() { return SerialNo; } public RA_RequestLineDetailsQuery setSerialNo(String value) { this.SerialNo = value; return this; } public String getSerialNoStartsWith() { return SerialNoStartsWith; } public RA_RequestLineDetailsQuery setSerialNoStartsWith(String value) { this.SerialNoStartsWith = value; return this; } public String getSerialNoEndsWith() { return SerialNoEndsWith; } public RA_RequestLineDetailsQuery setSerialNoEndsWith(String value) { this.SerialNoEndsWith = value; return this; } public String getSerialNoContains() { return SerialNoContains; } public RA_RequestLineDetailsQuery setSerialNoContains(String value) { this.SerialNoContains = value; return this; } public String getSerialNoLike() { return SerialNoLike; } public RA_RequestLineDetailsQuery setSerialNoLike(String value) { this.SerialNoLike = value; return this; } public ArrayList getSerialNoBetween() { return SerialNoBetween; } public RA_RequestLineDetailsQuery setSerialNoBetween(ArrayList value) { this.SerialNoBetween = value; return this; } public ArrayList getSerialNoIn() { return SerialNoIn; } public RA_RequestLineDetailsQuery setSerialNoIn(ArrayList value) { this.SerialNoIn = value; return this; } public Date getExpiryDate() { return ExpiryDate; } public RA_RequestLineDetailsQuery setExpiryDate(Date value) { this.ExpiryDate = value; return this; } public Date getExpiryDateGreaterThanOrEqualTo() { return ExpiryDateGreaterThanOrEqualTo; } public RA_RequestLineDetailsQuery setExpiryDateGreaterThanOrEqualTo(Date value) { this.ExpiryDateGreaterThanOrEqualTo = value; return this; } public Date getExpiryDateGreaterThan() { return ExpiryDateGreaterThan; } public RA_RequestLineDetailsQuery setExpiryDateGreaterThan(Date value) { this.ExpiryDateGreaterThan = value; return this; } public Date getExpiryDateLessThan() { return ExpiryDateLessThan; } public RA_RequestLineDetailsQuery setExpiryDateLessThan(Date value) { this.ExpiryDateLessThan = value; return this; } public Date getExpiryDateLessThanOrEqualTo() { return ExpiryDateLessThanOrEqualTo; } public RA_RequestLineDetailsQuery setExpiryDateLessThanOrEqualTo(Date value) { this.ExpiryDateLessThanOrEqualTo = value; return this; } public Date getExpiryDateNotEqualTo() { return ExpiryDateNotEqualTo; } public RA_RequestLineDetailsQuery setExpiryDateNotEqualTo(Date value) { this.ExpiryDateNotEqualTo = value; return this; } public ArrayList getExpiryDateBetween() { return ExpiryDateBetween; } public RA_RequestLineDetailsQuery setExpiryDateBetween(ArrayList value) { this.ExpiryDateBetween = value; return this; } public ArrayList getExpiryDateIn() { return ExpiryDateIn; } public RA_RequestLineDetailsQuery setExpiryDateIn(ArrayList value) { this.ExpiryDateIn = value; return this; } public String getBinLocation() { return BinLocation; } public RA_RequestLineDetailsQuery setBinLocation(String value) { this.BinLocation = value; return this; } public String getBinLocationStartsWith() { return BinLocationStartsWith; } public RA_RequestLineDetailsQuery setBinLocationStartsWith(String value) { this.BinLocationStartsWith = value; return this; } public String getBinLocationEndsWith() { return BinLocationEndsWith; } public RA_RequestLineDetailsQuery setBinLocationEndsWith(String value) { this.BinLocationEndsWith = value; return this; } public String getBinLocationContains() { return BinLocationContains; } public RA_RequestLineDetailsQuery setBinLocationContains(String value) { this.BinLocationContains = value; return this; } public String getBinLocationLike() { return BinLocationLike; } public RA_RequestLineDetailsQuery setBinLocationLike(String value) { this.BinLocationLike = value; return this; } public ArrayList getBinLocationBetween() { return BinLocationBetween; } public RA_RequestLineDetailsQuery setBinLocationBetween(ArrayList value) { this.BinLocationBetween = value; return this; } public ArrayList getBinLocationIn() { return BinLocationIn; } public RA_RequestLineDetailsQuery setBinLocationIn(ArrayList value) { this.BinLocationIn = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public RA_RequestLineDetailsQuery setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getLastSavedDateTimeGreaterThanOrEqualTo() { return LastSavedDateTimeGreaterThanOrEqualTo; } public RA_RequestLineDetailsQuery setLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.LastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeGreaterThan() { return LastSavedDateTimeGreaterThan; } public RA_RequestLineDetailsQuery setLastSavedDateTimeGreaterThan(Date value) { this.LastSavedDateTimeGreaterThan = value; return this; } public Date getLastSavedDateTimeLessThan() { return LastSavedDateTimeLessThan; } public RA_RequestLineDetailsQuery setLastSavedDateTimeLessThan(Date value) { this.LastSavedDateTimeLessThan = value; return this; } public Date getLastSavedDateTimeLessThanOrEqualTo() { return LastSavedDateTimeLessThanOrEqualTo; } public RA_RequestLineDetailsQuery setLastSavedDateTimeLessThanOrEqualTo(Date value) { this.LastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeNotEqualTo() { return LastSavedDateTimeNotEqualTo; } public RA_RequestLineDetailsQuery setLastSavedDateTimeNotEqualTo(Date value) { this.LastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getLastSavedDateTimeBetween() { return LastSavedDateTimeBetween; } public RA_RequestLineDetailsQuery setLastSavedDateTimeBetween(ArrayList value) { this.LastSavedDateTimeBetween = value; return this; } public ArrayList getLastSavedDateTimeIn() { return LastSavedDateTimeIn; } public RA_RequestLineDetailsQuery setLastSavedDateTimeIn(ArrayList value) { this.LastSavedDateTimeIn = value; return this; } public ArrayList getRowHash() { return RowHash; } public RA_RequestLineDetailsQuery setRowHash(ArrayList value) { this.RowHash = value; return this; } public Integer getItemNo() { return ItemNo; } public RA_RequestLineDetailsQuery setItemNo(Integer value) { this.ItemNo = value; return this; } public Integer getItemNoGreaterThanOrEqualTo() { return ItemNoGreaterThanOrEqualTo; } public RA_RequestLineDetailsQuery setItemNoGreaterThanOrEqualTo(Integer value) { this.ItemNoGreaterThanOrEqualTo = value; return this; } public Integer getItemNoGreaterThan() { return ItemNoGreaterThan; } public RA_RequestLineDetailsQuery setItemNoGreaterThan(Integer value) { this.ItemNoGreaterThan = value; return this; } public Integer getItemNoLessThan() { return ItemNoLessThan; } public RA_RequestLineDetailsQuery setItemNoLessThan(Integer value) { this.ItemNoLessThan = value; return this; } public Integer getItemNoLessThanOrEqualTo() { return ItemNoLessThanOrEqualTo; } public RA_RequestLineDetailsQuery setItemNoLessThanOrEqualTo(Integer value) { this.ItemNoLessThanOrEqualTo = value; return this; } public Integer getItemNoNotEqualTo() { return ItemNoNotEqualTo; } public RA_RequestLineDetailsQuery setItemNoNotEqualTo(Integer value) { this.ItemNoNotEqualTo = value; return this; } public ArrayList getItemNoBetween() { return ItemNoBetween; } public RA_RequestLineDetailsQuery setItemNoBetween(ArrayList value) { this.ItemNoBetween = value; return this; } public ArrayList getItemNoIn() { return ItemNoIn; } public RA_RequestLineDetailsQuery setItemNoIn(ArrayList value) { this.ItemNoIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class RA_RequestLinesQuery extends QueryDb implements IReturn> { public String RecID = null; public String RecIDStartsWith = null; public String RecIDEndsWith = null; public String RecIDContains = null; public String RecIDLike = null; public ArrayList RecIDBetween = null; public ArrayList RecIDIn = null; public Short ItemNo = null; public Short ItemNoGreaterThanOrEqualTo = null; public Short ItemNoGreaterThan = null; public Short ItemNoLessThan = null; public Short ItemNoLessThanOrEqualTo = null; public Short ItemNoNotEqualTo = null; public ArrayList ItemNoBetween = null; public ArrayList ItemNoIn = null; public String RA_RequestMain_RecID = null; public String RA_RequestMain_RecIDStartsWith = null; public String RA_RequestMain_RecIDEndsWith = null; public String RA_RequestMain_RecIDContains = null; public String RA_RequestMain_RecIDLike = null; public ArrayList RA_RequestMain_RecIDBetween = null; public ArrayList RA_RequestMain_RecIDIn = null; public BigDecimal Quantity = null; public BigDecimal QuantityGreaterThanOrEqualTo = null; public BigDecimal QuantityGreaterThan = null; public BigDecimal QuantityLessThan = null; public BigDecimal QuantityLessThanOrEqualTo = null; public BigDecimal QuantityNotEqualTo = null; public ArrayList QuantityBetween = null; public ArrayList QuantityIn = null; public String InventoryID = null; public String InventoryIDStartsWith = null; public String InventoryIDEndsWith = null; public String InventoryIDContains = null; public String InventoryIDLike = null; public ArrayList InventoryIDBetween = null; public ArrayList InventoryIDIn = null; public String RA_ReturnCodes_RecID = null; public String RA_ReturnCodes_RecIDStartsWith = null; public String RA_ReturnCodes_RecIDEndsWith = null; public String RA_ReturnCodes_RecIDContains = null; public String RA_ReturnCodes_RecIDLike = null; public ArrayList RA_ReturnCodes_RecIDBetween = null; public ArrayList RA_ReturnCodes_RecIDIn = null; public Date LastSavedDateTime = null; public Date LastSavedDateTimeGreaterThanOrEqualTo = null; public Date LastSavedDateTimeGreaterThan = null; public Date LastSavedDateTimeLessThan = null; public Date LastSavedDateTimeLessThanOrEqualTo = null; public Date LastSavedDateTimeNotEqualTo = null; public ArrayList LastSavedDateTimeBetween = null; public ArrayList LastSavedDateTimeIn = null; public String Remark = null; public String RemarkStartsWith = null; public String RemarkEndsWith = null; public String RemarkContains = null; public String RemarkLike = null; public ArrayList RemarkBetween = null; public ArrayList RemarkIn = null; public BigDecimal UnitReturnValue = null; public BigDecimal UnitReturnValueGreaterThanOrEqualTo = null; public BigDecimal UnitReturnValueGreaterThan = null; public BigDecimal UnitReturnValueLessThan = null; public BigDecimal UnitReturnValueLessThanOrEqualTo = null; public BigDecimal UnitReturnValueNotEqualTo = null; public ArrayList UnitReturnValueBetween = null; public ArrayList UnitReturnValueIn = null; public BigDecimal TotalReturnValue = null; public BigDecimal TotalReturnValueGreaterThanOrEqualTo = null; public BigDecimal TotalReturnValueGreaterThan = null; public BigDecimal TotalReturnValueLessThan = null; public BigDecimal TotalReturnValueLessThanOrEqualTo = null; public BigDecimal TotalReturnValueNotEqualTo = null; public ArrayList TotalReturnValueBetween = null; public ArrayList TotalReturnValueIn = null; public String TaxID = null; public String TaxIDStartsWith = null; public String TaxIDEndsWith = null; public String TaxIDContains = null; public String TaxIDLike = null; public ArrayList TaxIDBetween = null; public ArrayList TaxIDIn = null; public BigDecimal TaxAmount = null; public BigDecimal TaxAmountGreaterThanOrEqualTo = null; public BigDecimal TaxAmountGreaterThan = null; public BigDecimal TaxAmountLessThan = null; public BigDecimal TaxAmountLessThanOrEqualTo = null; public BigDecimal TaxAmountNotEqualTo = null; public ArrayList TaxAmountBetween = null; public ArrayList TaxAmountIn = null; public ArrayList RowHash = null; public String PO_Lines_OrderLineID = null; public String PO_Lines_OrderLineIDStartsWith = null; public String PO_Lines_OrderLineIDEndsWith = null; public String PO_Lines_OrderLineIDContains = null; public String PO_Lines_OrderLineIDLike = null; public ArrayList PO_Lines_OrderLineIDBetween = null; public ArrayList PO_Lines_OrderLineIDIn = null; public BigDecimal FXUnitReturnValue = null; public BigDecimal FXUnitReturnValueGreaterThanOrEqualTo = null; public BigDecimal FXUnitReturnValueGreaterThan = null; public BigDecimal FXUnitReturnValueLessThan = null; public BigDecimal FXUnitReturnValueLessThanOrEqualTo = null; public BigDecimal FXUnitReturnValueNotEqualTo = null; public ArrayList FXUnitReturnValueBetween = null; public ArrayList FXUnitReturnValueIn = null; public BigDecimal FXTotalReturnValue = null; public BigDecimal FXTotalReturnValueGreaterThanOrEqualTo = null; public BigDecimal FXTotalReturnValueGreaterThan = null; public BigDecimal FXTotalReturnValueLessThan = null; public BigDecimal FXTotalReturnValueLessThanOrEqualTo = null; public BigDecimal FXTotalReturnValueNotEqualTo = null; public ArrayList FXTotalReturnValueBetween = null; public ArrayList FXTotalReturnValueIn = null; public BigDecimal FXRate = null; public BigDecimal FXRateGreaterThanOrEqualTo = null; public BigDecimal FXRateGreaterThan = null; public BigDecimal FXRateLessThan = null; public BigDecimal FXRateLessThanOrEqualTo = null; public BigDecimal FXRateNotEqualTo = null; public ArrayList FXRateBetween = null; public ArrayList FXRateIn = null; public String getRecID() { return RecID; } public RA_RequestLinesQuery setRecID(String value) { this.RecID = value; return this; } public String getRecIDStartsWith() { return RecIDStartsWith; } public RA_RequestLinesQuery setRecIDStartsWith(String value) { this.RecIDStartsWith = value; return this; } public String getRecIDEndsWith() { return RecIDEndsWith; } public RA_RequestLinesQuery setRecIDEndsWith(String value) { this.RecIDEndsWith = value; return this; } public String getRecIDContains() { return RecIDContains; } public RA_RequestLinesQuery setRecIDContains(String value) { this.RecIDContains = value; return this; } public String getRecIDLike() { return RecIDLike; } public RA_RequestLinesQuery setRecIDLike(String value) { this.RecIDLike = value; return this; } public ArrayList getRecIDBetween() { return RecIDBetween; } public RA_RequestLinesQuery setRecIDBetween(ArrayList value) { this.RecIDBetween = value; return this; } public ArrayList getRecIDIn() { return RecIDIn; } public RA_RequestLinesQuery setRecIDIn(ArrayList value) { this.RecIDIn = value; return this; } public Short getItemNo() { return ItemNo; } public RA_RequestLinesQuery setItemNo(Short value) { this.ItemNo = value; return this; } public Short getItemNoGreaterThanOrEqualTo() { return ItemNoGreaterThanOrEqualTo; } public RA_RequestLinesQuery setItemNoGreaterThanOrEqualTo(Short value) { this.ItemNoGreaterThanOrEqualTo = value; return this; } public Short getItemNoGreaterThan() { return ItemNoGreaterThan; } public RA_RequestLinesQuery setItemNoGreaterThan(Short value) { this.ItemNoGreaterThan = value; return this; } public Short getItemNoLessThan() { return ItemNoLessThan; } public RA_RequestLinesQuery setItemNoLessThan(Short value) { this.ItemNoLessThan = value; return this; } public Short getItemNoLessThanOrEqualTo() { return ItemNoLessThanOrEqualTo; } public RA_RequestLinesQuery setItemNoLessThanOrEqualTo(Short value) { this.ItemNoLessThanOrEqualTo = value; return this; } public Short getItemNoNotEqualTo() { return ItemNoNotEqualTo; } public RA_RequestLinesQuery setItemNoNotEqualTo(Short value) { this.ItemNoNotEqualTo = value; return this; } public ArrayList getItemNoBetween() { return ItemNoBetween; } public RA_RequestLinesQuery setItemNoBetween(ArrayList value) { this.ItemNoBetween = value; return this; } public ArrayList getItemNoIn() { return ItemNoIn; } public RA_RequestLinesQuery setItemNoIn(ArrayList value) { this.ItemNoIn = value; return this; } public String getRaRequestMainRecID() { return RA_RequestMain_RecID; } public RA_RequestLinesQuery setRaRequestMainRecID(String value) { this.RA_RequestMain_RecID = value; return this; } public String getRaRequestMainRecIDStartsWith() { return RA_RequestMain_RecIDStartsWith; } public RA_RequestLinesQuery setRaRequestMainRecIDStartsWith(String value) { this.RA_RequestMain_RecIDStartsWith = value; return this; } public String getRaRequestMainRecIDEndsWith() { return RA_RequestMain_RecIDEndsWith; } public RA_RequestLinesQuery setRaRequestMainRecIDEndsWith(String value) { this.RA_RequestMain_RecIDEndsWith = value; return this; } public String getRaRequestMainRecIDContains() { return RA_RequestMain_RecIDContains; } public RA_RequestLinesQuery setRaRequestMainRecIDContains(String value) { this.RA_RequestMain_RecIDContains = value; return this; } public String getRaRequestMainRecIDLike() { return RA_RequestMain_RecIDLike; } public RA_RequestLinesQuery setRaRequestMainRecIDLike(String value) { this.RA_RequestMain_RecIDLike = value; return this; } public ArrayList getRaRequestMainRecIDBetween() { return RA_RequestMain_RecIDBetween; } public RA_RequestLinesQuery setRaRequestMainRecIDBetween(ArrayList value) { this.RA_RequestMain_RecIDBetween = value; return this; } public ArrayList getRaRequestMainRecIDIn() { return RA_RequestMain_RecIDIn; } public RA_RequestLinesQuery setRaRequestMainRecIDIn(ArrayList value) { this.RA_RequestMain_RecIDIn = value; return this; } public BigDecimal getQuantity() { return Quantity; } public RA_RequestLinesQuery setQuantity(BigDecimal value) { this.Quantity = value; return this; } public BigDecimal getQuantityGreaterThanOrEqualTo() { return QuantityGreaterThanOrEqualTo; } public RA_RequestLinesQuery setQuantityGreaterThanOrEqualTo(BigDecimal value) { this.QuantityGreaterThanOrEqualTo = value; return this; } public BigDecimal getQuantityGreaterThan() { return QuantityGreaterThan; } public RA_RequestLinesQuery setQuantityGreaterThan(BigDecimal value) { this.QuantityGreaterThan = value; return this; } public BigDecimal getQuantityLessThan() { return QuantityLessThan; } public RA_RequestLinesQuery setQuantityLessThan(BigDecimal value) { this.QuantityLessThan = value; return this; } public BigDecimal getQuantityLessThanOrEqualTo() { return QuantityLessThanOrEqualTo; } public RA_RequestLinesQuery setQuantityLessThanOrEqualTo(BigDecimal value) { this.QuantityLessThanOrEqualTo = value; return this; } public BigDecimal getQuantityNotEqualTo() { return QuantityNotEqualTo; } public RA_RequestLinesQuery setQuantityNotEqualTo(BigDecimal value) { this.QuantityNotEqualTo = value; return this; } public ArrayList getQuantityBetween() { return QuantityBetween; } public RA_RequestLinesQuery setQuantityBetween(ArrayList value) { this.QuantityBetween = value; return this; } public ArrayList getQuantityIn() { return QuantityIn; } public RA_RequestLinesQuery setQuantityIn(ArrayList value) { this.QuantityIn = value; return this; } public String getInventoryID() { return InventoryID; } public RA_RequestLinesQuery setInventoryID(String value) { this.InventoryID = value; return this; } public String getInventoryIDStartsWith() { return InventoryIDStartsWith; } public RA_RequestLinesQuery setInventoryIDStartsWith(String value) { this.InventoryIDStartsWith = value; return this; } public String getInventoryIDEndsWith() { return InventoryIDEndsWith; } public RA_RequestLinesQuery setInventoryIDEndsWith(String value) { this.InventoryIDEndsWith = value; return this; } public String getInventoryIDContains() { return InventoryIDContains; } public RA_RequestLinesQuery setInventoryIDContains(String value) { this.InventoryIDContains = value; return this; } public String getInventoryIDLike() { return InventoryIDLike; } public RA_RequestLinesQuery setInventoryIDLike(String value) { this.InventoryIDLike = value; return this; } public ArrayList getInventoryIDBetween() { return InventoryIDBetween; } public RA_RequestLinesQuery setInventoryIDBetween(ArrayList value) { this.InventoryIDBetween = value; return this; } public ArrayList getInventoryIDIn() { return InventoryIDIn; } public RA_RequestLinesQuery setInventoryIDIn(ArrayList value) { this.InventoryIDIn = value; return this; } public String getRaReturnCodesRecID() { return RA_ReturnCodes_RecID; } public RA_RequestLinesQuery setRaReturnCodesRecID(String value) { this.RA_ReturnCodes_RecID = value; return this; } public String getRaReturnCodesRecIDStartsWith() { return RA_ReturnCodes_RecIDStartsWith; } public RA_RequestLinesQuery setRaReturnCodesRecIDStartsWith(String value) { this.RA_ReturnCodes_RecIDStartsWith = value; return this; } public String getRaReturnCodesRecIDEndsWith() { return RA_ReturnCodes_RecIDEndsWith; } public RA_RequestLinesQuery setRaReturnCodesRecIDEndsWith(String value) { this.RA_ReturnCodes_RecIDEndsWith = value; return this; } public String getRaReturnCodesRecIDContains() { return RA_ReturnCodes_RecIDContains; } public RA_RequestLinesQuery setRaReturnCodesRecIDContains(String value) { this.RA_ReturnCodes_RecIDContains = value; return this; } public String getRaReturnCodesRecIDLike() { return RA_ReturnCodes_RecIDLike; } public RA_RequestLinesQuery setRaReturnCodesRecIDLike(String value) { this.RA_ReturnCodes_RecIDLike = value; return this; } public ArrayList getRaReturnCodesRecIDBetween() { return RA_ReturnCodes_RecIDBetween; } public RA_RequestLinesQuery setRaReturnCodesRecIDBetween(ArrayList value) { this.RA_ReturnCodes_RecIDBetween = value; return this; } public ArrayList getRaReturnCodesRecIDIn() { return RA_ReturnCodes_RecIDIn; } public RA_RequestLinesQuery setRaReturnCodesRecIDIn(ArrayList value) { this.RA_ReturnCodes_RecIDIn = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public RA_RequestLinesQuery setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getLastSavedDateTimeGreaterThanOrEqualTo() { return LastSavedDateTimeGreaterThanOrEqualTo; } public RA_RequestLinesQuery setLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.LastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeGreaterThan() { return LastSavedDateTimeGreaterThan; } public RA_RequestLinesQuery setLastSavedDateTimeGreaterThan(Date value) { this.LastSavedDateTimeGreaterThan = value; return this; } public Date getLastSavedDateTimeLessThan() { return LastSavedDateTimeLessThan; } public RA_RequestLinesQuery setLastSavedDateTimeLessThan(Date value) { this.LastSavedDateTimeLessThan = value; return this; } public Date getLastSavedDateTimeLessThanOrEqualTo() { return LastSavedDateTimeLessThanOrEqualTo; } public RA_RequestLinesQuery setLastSavedDateTimeLessThanOrEqualTo(Date value) { this.LastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeNotEqualTo() { return LastSavedDateTimeNotEqualTo; } public RA_RequestLinesQuery setLastSavedDateTimeNotEqualTo(Date value) { this.LastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getLastSavedDateTimeBetween() { return LastSavedDateTimeBetween; } public RA_RequestLinesQuery setLastSavedDateTimeBetween(ArrayList value) { this.LastSavedDateTimeBetween = value; return this; } public ArrayList getLastSavedDateTimeIn() { return LastSavedDateTimeIn; } public RA_RequestLinesQuery setLastSavedDateTimeIn(ArrayList value) { this.LastSavedDateTimeIn = value; return this; } public String getRemark() { return Remark; } public RA_RequestLinesQuery setRemark(String value) { this.Remark = value; return this; } public String getRemarkStartsWith() { return RemarkStartsWith; } public RA_RequestLinesQuery setRemarkStartsWith(String value) { this.RemarkStartsWith = value; return this; } public String getRemarkEndsWith() { return RemarkEndsWith; } public RA_RequestLinesQuery setRemarkEndsWith(String value) { this.RemarkEndsWith = value; return this; } public String getRemarkContains() { return RemarkContains; } public RA_RequestLinesQuery setRemarkContains(String value) { this.RemarkContains = value; return this; } public String getRemarkLike() { return RemarkLike; } public RA_RequestLinesQuery setRemarkLike(String value) { this.RemarkLike = value; return this; } public ArrayList getRemarkBetween() { return RemarkBetween; } public RA_RequestLinesQuery setRemarkBetween(ArrayList value) { this.RemarkBetween = value; return this; } public ArrayList getRemarkIn() { return RemarkIn; } public RA_RequestLinesQuery setRemarkIn(ArrayList value) { this.RemarkIn = value; return this; } public BigDecimal getUnitReturnValue() { return UnitReturnValue; } public RA_RequestLinesQuery setUnitReturnValue(BigDecimal value) { this.UnitReturnValue = value; return this; } public BigDecimal getUnitReturnValueGreaterThanOrEqualTo() { return UnitReturnValueGreaterThanOrEqualTo; } public RA_RequestLinesQuery setUnitReturnValueGreaterThanOrEqualTo(BigDecimal value) { this.UnitReturnValueGreaterThanOrEqualTo = value; return this; } public BigDecimal getUnitReturnValueGreaterThan() { return UnitReturnValueGreaterThan; } public RA_RequestLinesQuery setUnitReturnValueGreaterThan(BigDecimal value) { this.UnitReturnValueGreaterThan = value; return this; } public BigDecimal getUnitReturnValueLessThan() { return UnitReturnValueLessThan; } public RA_RequestLinesQuery setUnitReturnValueLessThan(BigDecimal value) { this.UnitReturnValueLessThan = value; return this; } public BigDecimal getUnitReturnValueLessThanOrEqualTo() { return UnitReturnValueLessThanOrEqualTo; } public RA_RequestLinesQuery setUnitReturnValueLessThanOrEqualTo(BigDecimal value) { this.UnitReturnValueLessThanOrEqualTo = value; return this; } public BigDecimal getUnitReturnValueNotEqualTo() { return UnitReturnValueNotEqualTo; } public RA_RequestLinesQuery setUnitReturnValueNotEqualTo(BigDecimal value) { this.UnitReturnValueNotEqualTo = value; return this; } public ArrayList getUnitReturnValueBetween() { return UnitReturnValueBetween; } public RA_RequestLinesQuery setUnitReturnValueBetween(ArrayList value) { this.UnitReturnValueBetween = value; return this; } public ArrayList getUnitReturnValueIn() { return UnitReturnValueIn; } public RA_RequestLinesQuery setUnitReturnValueIn(ArrayList value) { this.UnitReturnValueIn = value; return this; } public BigDecimal getTotalReturnValue() { return TotalReturnValue; } public RA_RequestLinesQuery setTotalReturnValue(BigDecimal value) { this.TotalReturnValue = value; return this; } public BigDecimal getTotalReturnValueGreaterThanOrEqualTo() { return TotalReturnValueGreaterThanOrEqualTo; } public RA_RequestLinesQuery setTotalReturnValueGreaterThanOrEqualTo(BigDecimal value) { this.TotalReturnValueGreaterThanOrEqualTo = value; return this; } public BigDecimal getTotalReturnValueGreaterThan() { return TotalReturnValueGreaterThan; } public RA_RequestLinesQuery setTotalReturnValueGreaterThan(BigDecimal value) { this.TotalReturnValueGreaterThan = value; return this; } public BigDecimal getTotalReturnValueLessThan() { return TotalReturnValueLessThan; } public RA_RequestLinesQuery setTotalReturnValueLessThan(BigDecimal value) { this.TotalReturnValueLessThan = value; return this; } public BigDecimal getTotalReturnValueLessThanOrEqualTo() { return TotalReturnValueLessThanOrEqualTo; } public RA_RequestLinesQuery setTotalReturnValueLessThanOrEqualTo(BigDecimal value) { this.TotalReturnValueLessThanOrEqualTo = value; return this; } public BigDecimal getTotalReturnValueNotEqualTo() { return TotalReturnValueNotEqualTo; } public RA_RequestLinesQuery setTotalReturnValueNotEqualTo(BigDecimal value) { this.TotalReturnValueNotEqualTo = value; return this; } public ArrayList getTotalReturnValueBetween() { return TotalReturnValueBetween; } public RA_RequestLinesQuery setTotalReturnValueBetween(ArrayList value) { this.TotalReturnValueBetween = value; return this; } public ArrayList getTotalReturnValueIn() { return TotalReturnValueIn; } public RA_RequestLinesQuery setTotalReturnValueIn(ArrayList value) { this.TotalReturnValueIn = value; return this; } public String getTaxID() { return TaxID; } public RA_RequestLinesQuery setTaxID(String value) { this.TaxID = value; return this; } public String getTaxIDStartsWith() { return TaxIDStartsWith; } public RA_RequestLinesQuery setTaxIDStartsWith(String value) { this.TaxIDStartsWith = value; return this; } public String getTaxIDEndsWith() { return TaxIDEndsWith; } public RA_RequestLinesQuery setTaxIDEndsWith(String value) { this.TaxIDEndsWith = value; return this; } public String getTaxIDContains() { return TaxIDContains; } public RA_RequestLinesQuery setTaxIDContains(String value) { this.TaxIDContains = value; return this; } public String getTaxIDLike() { return TaxIDLike; } public RA_RequestLinesQuery setTaxIDLike(String value) { this.TaxIDLike = value; return this; } public ArrayList getTaxIDBetween() { return TaxIDBetween; } public RA_RequestLinesQuery setTaxIDBetween(ArrayList value) { this.TaxIDBetween = value; return this; } public ArrayList getTaxIDIn() { return TaxIDIn; } public RA_RequestLinesQuery setTaxIDIn(ArrayList value) { this.TaxIDIn = value; return this; } public BigDecimal getTaxAmount() { return TaxAmount; } public RA_RequestLinesQuery setTaxAmount(BigDecimal value) { this.TaxAmount = value; return this; } public BigDecimal getTaxAmountGreaterThanOrEqualTo() { return TaxAmountGreaterThanOrEqualTo; } public RA_RequestLinesQuery setTaxAmountGreaterThanOrEqualTo(BigDecimal value) { this.TaxAmountGreaterThanOrEqualTo = value; return this; } public BigDecimal getTaxAmountGreaterThan() { return TaxAmountGreaterThan; } public RA_RequestLinesQuery setTaxAmountGreaterThan(BigDecimal value) { this.TaxAmountGreaterThan = value; return this; } public BigDecimal getTaxAmountLessThan() { return TaxAmountLessThan; } public RA_RequestLinesQuery setTaxAmountLessThan(BigDecimal value) { this.TaxAmountLessThan = value; return this; } public BigDecimal getTaxAmountLessThanOrEqualTo() { return TaxAmountLessThanOrEqualTo; } public RA_RequestLinesQuery setTaxAmountLessThanOrEqualTo(BigDecimal value) { this.TaxAmountLessThanOrEqualTo = value; return this; } public BigDecimal getTaxAmountNotEqualTo() { return TaxAmountNotEqualTo; } public RA_RequestLinesQuery setTaxAmountNotEqualTo(BigDecimal value) { this.TaxAmountNotEqualTo = value; return this; } public ArrayList getTaxAmountBetween() { return TaxAmountBetween; } public RA_RequestLinesQuery setTaxAmountBetween(ArrayList value) { this.TaxAmountBetween = value; return this; } public ArrayList getTaxAmountIn() { return TaxAmountIn; } public RA_RequestLinesQuery setTaxAmountIn(ArrayList value) { this.TaxAmountIn = value; return this; } public ArrayList getRowHash() { return RowHash; } public RA_RequestLinesQuery setRowHash(ArrayList value) { this.RowHash = value; return this; } public String getPoLinesOrderLineID() { return PO_Lines_OrderLineID; } public RA_RequestLinesQuery setPoLinesOrderLineID(String value) { this.PO_Lines_OrderLineID = value; return this; } public String getPoLinesOrderLineIDStartsWith() { return PO_Lines_OrderLineIDStartsWith; } public RA_RequestLinesQuery setPoLinesOrderLineIDStartsWith(String value) { this.PO_Lines_OrderLineIDStartsWith = value; return this; } public String getPoLinesOrderLineIDEndsWith() { return PO_Lines_OrderLineIDEndsWith; } public RA_RequestLinesQuery setPoLinesOrderLineIDEndsWith(String value) { this.PO_Lines_OrderLineIDEndsWith = value; return this; } public String getPoLinesOrderLineIDContains() { return PO_Lines_OrderLineIDContains; } public RA_RequestLinesQuery setPoLinesOrderLineIDContains(String value) { this.PO_Lines_OrderLineIDContains = value; return this; } public String getPoLinesOrderLineIDLike() { return PO_Lines_OrderLineIDLike; } public RA_RequestLinesQuery setPoLinesOrderLineIDLike(String value) { this.PO_Lines_OrderLineIDLike = value; return this; } public ArrayList getPoLinesOrderLineIDBetween() { return PO_Lines_OrderLineIDBetween; } public RA_RequestLinesQuery setPoLinesOrderLineIDBetween(ArrayList value) { this.PO_Lines_OrderLineIDBetween = value; return this; } public ArrayList getPoLinesOrderLineIDIn() { return PO_Lines_OrderLineIDIn; } public RA_RequestLinesQuery setPoLinesOrderLineIDIn(ArrayList value) { this.PO_Lines_OrderLineIDIn = value; return this; } public BigDecimal getFxUnitReturnValue() { return FXUnitReturnValue; } public RA_RequestLinesQuery setFxUnitReturnValue(BigDecimal value) { this.FXUnitReturnValue = value; return this; } public BigDecimal getFxUnitReturnValueGreaterThanOrEqualTo() { return FXUnitReturnValueGreaterThanOrEqualTo; } public RA_RequestLinesQuery setFxUnitReturnValueGreaterThanOrEqualTo(BigDecimal value) { this.FXUnitReturnValueGreaterThanOrEqualTo = value; return this; } public BigDecimal getFxUnitReturnValueGreaterThan() { return FXUnitReturnValueGreaterThan; } public RA_RequestLinesQuery setFxUnitReturnValueGreaterThan(BigDecimal value) { this.FXUnitReturnValueGreaterThan = value; return this; } public BigDecimal getFxUnitReturnValueLessThan() { return FXUnitReturnValueLessThan; } public RA_RequestLinesQuery setFxUnitReturnValueLessThan(BigDecimal value) { this.FXUnitReturnValueLessThan = value; return this; } public BigDecimal getFxUnitReturnValueLessThanOrEqualTo() { return FXUnitReturnValueLessThanOrEqualTo; } public RA_RequestLinesQuery setFxUnitReturnValueLessThanOrEqualTo(BigDecimal value) { this.FXUnitReturnValueLessThanOrEqualTo = value; return this; } public BigDecimal getFxUnitReturnValueNotEqualTo() { return FXUnitReturnValueNotEqualTo; } public RA_RequestLinesQuery setFxUnitReturnValueNotEqualTo(BigDecimal value) { this.FXUnitReturnValueNotEqualTo = value; return this; } public ArrayList getFxUnitReturnValueBetween() { return FXUnitReturnValueBetween; } public RA_RequestLinesQuery setFxUnitReturnValueBetween(ArrayList value) { this.FXUnitReturnValueBetween = value; return this; } public ArrayList getFxUnitReturnValueIn() { return FXUnitReturnValueIn; } public RA_RequestLinesQuery setFxUnitReturnValueIn(ArrayList value) { this.FXUnitReturnValueIn = value; return this; } public BigDecimal getFxTotalReturnValue() { return FXTotalReturnValue; } public RA_RequestLinesQuery setFxTotalReturnValue(BigDecimal value) { this.FXTotalReturnValue = value; return this; } public BigDecimal getFxTotalReturnValueGreaterThanOrEqualTo() { return FXTotalReturnValueGreaterThanOrEqualTo; } public RA_RequestLinesQuery setFxTotalReturnValueGreaterThanOrEqualTo(BigDecimal value) { this.FXTotalReturnValueGreaterThanOrEqualTo = value; return this; } public BigDecimal getFxTotalReturnValueGreaterThan() { return FXTotalReturnValueGreaterThan; } public RA_RequestLinesQuery setFxTotalReturnValueGreaterThan(BigDecimal value) { this.FXTotalReturnValueGreaterThan = value; return this; } public BigDecimal getFxTotalReturnValueLessThan() { return FXTotalReturnValueLessThan; } public RA_RequestLinesQuery setFxTotalReturnValueLessThan(BigDecimal value) { this.FXTotalReturnValueLessThan = value; return this; } public BigDecimal getFxTotalReturnValueLessThanOrEqualTo() { return FXTotalReturnValueLessThanOrEqualTo; } public RA_RequestLinesQuery setFxTotalReturnValueLessThanOrEqualTo(BigDecimal value) { this.FXTotalReturnValueLessThanOrEqualTo = value; return this; } public BigDecimal getFxTotalReturnValueNotEqualTo() { return FXTotalReturnValueNotEqualTo; } public RA_RequestLinesQuery setFxTotalReturnValueNotEqualTo(BigDecimal value) { this.FXTotalReturnValueNotEqualTo = value; return this; } public ArrayList getFxTotalReturnValueBetween() { return FXTotalReturnValueBetween; } public RA_RequestLinesQuery setFxTotalReturnValueBetween(ArrayList value) { this.FXTotalReturnValueBetween = value; return this; } public ArrayList getFxTotalReturnValueIn() { return FXTotalReturnValueIn; } public RA_RequestLinesQuery setFxTotalReturnValueIn(ArrayList value) { this.FXTotalReturnValueIn = value; return this; } public BigDecimal getFxRate() { return FXRate; } public RA_RequestLinesQuery setFxRate(BigDecimal value) { this.FXRate = value; return this; } public BigDecimal getFxRateGreaterThanOrEqualTo() { return FXRateGreaterThanOrEqualTo; } public RA_RequestLinesQuery setFxRateGreaterThanOrEqualTo(BigDecimal value) { this.FXRateGreaterThanOrEqualTo = value; return this; } public BigDecimal getFxRateGreaterThan() { return FXRateGreaterThan; } public RA_RequestLinesQuery setFxRateGreaterThan(BigDecimal value) { this.FXRateGreaterThan = value; return this; } public BigDecimal getFxRateLessThan() { return FXRateLessThan; } public RA_RequestLinesQuery setFxRateLessThan(BigDecimal value) { this.FXRateLessThan = value; return this; } public BigDecimal getFxRateLessThanOrEqualTo() { return FXRateLessThanOrEqualTo; } public RA_RequestLinesQuery setFxRateLessThanOrEqualTo(BigDecimal value) { this.FXRateLessThanOrEqualTo = value; return this; } public BigDecimal getFxRateNotEqualTo() { return FXRateNotEqualTo; } public RA_RequestLinesQuery setFxRateNotEqualTo(BigDecimal value) { this.FXRateNotEqualTo = value; return this; } public ArrayList getFxRateBetween() { return FXRateBetween; } public RA_RequestLinesQuery setFxRateBetween(ArrayList value) { this.FXRateBetween = value; return this; } public ArrayList getFxRateIn() { return FXRateIn; } public RA_RequestLinesQuery setFxRateIn(ArrayList value) { this.FXRateIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class RA_RequestLinesCustomFieldsQuery extends QueryDb implements IReturn> { public String RecID = null; public String RecIDStartsWith = null; public String RecIDEndsWith = null; public String RecIDContains = null; public String RecIDLike = null; public ArrayList RecIDBetween = null; public ArrayList RecIDIn = null; public String SettingName = null; public String SettingNameStartsWith = null; public String SettingNameEndsWith = null; public String SettingNameContains = null; public String SettingNameLike = null; public ArrayList SettingNameBetween = null; public ArrayList SettingNameIn = null; public String SettingDescription = null; public String SettingDescriptionStartsWith = null; public String SettingDescriptionEndsWith = null; public String SettingDescriptionContains = null; public String SettingDescriptionLike = null; public ArrayList SettingDescriptionBetween = null; public ArrayList SettingDescriptionIn = null; public Integer CellType = null; public Integer CellTypeGreaterThanOrEqualTo = null; public Integer CellTypeGreaterThan = null; public Integer CellTypeLessThan = null; public Integer CellTypeLessThanOrEqualTo = null; public Integer CellTypeNotEqualTo = null; public ArrayList CellTypeBetween = null; public ArrayList CellTypeIn = null; public String FieldParameter = null; public String FieldParameterStartsWith = null; public String FieldParameterEndsWith = null; public String FieldParameterContains = null; public String FieldParameterLike = null; public ArrayList FieldParameterBetween = null; public ArrayList FieldParameterIn = null; public UUID SY_Plugin_RecID = null; public ArrayList SY_Plugin_RecIDIn = null; public Date LastSavedDateTime = null; public Date LastSavedDateTimeGreaterThanOrEqualTo = null; public Date LastSavedDateTimeGreaterThan = null; public Date LastSavedDateTimeLessThan = null; public Date LastSavedDateTimeLessThanOrEqualTo = null; public Date LastSavedDateTimeNotEqualTo = null; public ArrayList LastSavedDateTimeBetween = null; public ArrayList LastSavedDateTimeIn = null; public Integer DisplayOrder = null; public Integer DisplayOrderGreaterThanOrEqualTo = null; public Integer DisplayOrderGreaterThan = null; public Integer DisplayOrderLessThan = null; public Integer DisplayOrderLessThanOrEqualTo = null; public Integer DisplayOrderNotEqualTo = null; public ArrayList DisplayOrderBetween = null; public ArrayList DisplayOrderIn = null; public String getRecID() { return RecID; } public RA_RequestLinesCustomFieldsQuery setRecID(String value) { this.RecID = value; return this; } public String getRecIDStartsWith() { return RecIDStartsWith; } public RA_RequestLinesCustomFieldsQuery setRecIDStartsWith(String value) { this.RecIDStartsWith = value; return this; } public String getRecIDEndsWith() { return RecIDEndsWith; } public RA_RequestLinesCustomFieldsQuery setRecIDEndsWith(String value) { this.RecIDEndsWith = value; return this; } public String getRecIDContains() { return RecIDContains; } public RA_RequestLinesCustomFieldsQuery setRecIDContains(String value) { this.RecIDContains = value; return this; } public String getRecIDLike() { return RecIDLike; } public RA_RequestLinesCustomFieldsQuery setRecIDLike(String value) { this.RecIDLike = value; return this; } public ArrayList getRecIDBetween() { return RecIDBetween; } public RA_RequestLinesCustomFieldsQuery setRecIDBetween(ArrayList value) { this.RecIDBetween = value; return this; } public ArrayList getRecIDIn() { return RecIDIn; } public RA_RequestLinesCustomFieldsQuery setRecIDIn(ArrayList value) { this.RecIDIn = value; return this; } public String getSettingName() { return SettingName; } public RA_RequestLinesCustomFieldsQuery setSettingName(String value) { this.SettingName = value; return this; } public String getSettingNameStartsWith() { return SettingNameStartsWith; } public RA_RequestLinesCustomFieldsQuery setSettingNameStartsWith(String value) { this.SettingNameStartsWith = value; return this; } public String getSettingNameEndsWith() { return SettingNameEndsWith; } public RA_RequestLinesCustomFieldsQuery setSettingNameEndsWith(String value) { this.SettingNameEndsWith = value; return this; } public String getSettingNameContains() { return SettingNameContains; } public RA_RequestLinesCustomFieldsQuery setSettingNameContains(String value) { this.SettingNameContains = value; return this; } public String getSettingNameLike() { return SettingNameLike; } public RA_RequestLinesCustomFieldsQuery setSettingNameLike(String value) { this.SettingNameLike = value; return this; } public ArrayList getSettingNameBetween() { return SettingNameBetween; } public RA_RequestLinesCustomFieldsQuery setSettingNameBetween(ArrayList value) { this.SettingNameBetween = value; return this; } public ArrayList getSettingNameIn() { return SettingNameIn; } public RA_RequestLinesCustomFieldsQuery setSettingNameIn(ArrayList value) { this.SettingNameIn = value; return this; } public String getSettingDescription() { return SettingDescription; } public RA_RequestLinesCustomFieldsQuery setSettingDescription(String value) { this.SettingDescription = value; return this; } public String getSettingDescriptionStartsWith() { return SettingDescriptionStartsWith; } public RA_RequestLinesCustomFieldsQuery setSettingDescriptionStartsWith(String value) { this.SettingDescriptionStartsWith = value; return this; } public String getSettingDescriptionEndsWith() { return SettingDescriptionEndsWith; } public RA_RequestLinesCustomFieldsQuery setSettingDescriptionEndsWith(String value) { this.SettingDescriptionEndsWith = value; return this; } public String getSettingDescriptionContains() { return SettingDescriptionContains; } public RA_RequestLinesCustomFieldsQuery setSettingDescriptionContains(String value) { this.SettingDescriptionContains = value; return this; } public String getSettingDescriptionLike() { return SettingDescriptionLike; } public RA_RequestLinesCustomFieldsQuery setSettingDescriptionLike(String value) { this.SettingDescriptionLike = value; return this; } public ArrayList getSettingDescriptionBetween() { return SettingDescriptionBetween; } public RA_RequestLinesCustomFieldsQuery setSettingDescriptionBetween(ArrayList value) { this.SettingDescriptionBetween = value; return this; } public ArrayList getSettingDescriptionIn() { return SettingDescriptionIn; } public RA_RequestLinesCustomFieldsQuery setSettingDescriptionIn(ArrayList value) { this.SettingDescriptionIn = value; return this; } public Integer getCellType() { return CellType; } public RA_RequestLinesCustomFieldsQuery setCellType(Integer value) { this.CellType = value; return this; } public Integer getCellTypeGreaterThanOrEqualTo() { return CellTypeGreaterThanOrEqualTo; } public RA_RequestLinesCustomFieldsQuery setCellTypeGreaterThanOrEqualTo(Integer value) { this.CellTypeGreaterThanOrEqualTo = value; return this; } public Integer getCellTypeGreaterThan() { return CellTypeGreaterThan; } public RA_RequestLinesCustomFieldsQuery setCellTypeGreaterThan(Integer value) { this.CellTypeGreaterThan = value; return this; } public Integer getCellTypeLessThan() { return CellTypeLessThan; } public RA_RequestLinesCustomFieldsQuery setCellTypeLessThan(Integer value) { this.CellTypeLessThan = value; return this; } public Integer getCellTypeLessThanOrEqualTo() { return CellTypeLessThanOrEqualTo; } public RA_RequestLinesCustomFieldsQuery setCellTypeLessThanOrEqualTo(Integer value) { this.CellTypeLessThanOrEqualTo = value; return this; } public Integer getCellTypeNotEqualTo() { return CellTypeNotEqualTo; } public RA_RequestLinesCustomFieldsQuery setCellTypeNotEqualTo(Integer value) { this.CellTypeNotEqualTo = value; return this; } public ArrayList getCellTypeBetween() { return CellTypeBetween; } public RA_RequestLinesCustomFieldsQuery setCellTypeBetween(ArrayList value) { this.CellTypeBetween = value; return this; } public ArrayList getCellTypeIn() { return CellTypeIn; } public RA_RequestLinesCustomFieldsQuery setCellTypeIn(ArrayList value) { this.CellTypeIn = value; return this; } public String getFieldParameter() { return FieldParameter; } public RA_RequestLinesCustomFieldsQuery setFieldParameter(String value) { this.FieldParameter = value; return this; } public String getFieldParameterStartsWith() { return FieldParameterStartsWith; } public RA_RequestLinesCustomFieldsQuery setFieldParameterStartsWith(String value) { this.FieldParameterStartsWith = value; return this; } public String getFieldParameterEndsWith() { return FieldParameterEndsWith; } public RA_RequestLinesCustomFieldsQuery setFieldParameterEndsWith(String value) { this.FieldParameterEndsWith = value; return this; } public String getFieldParameterContains() { return FieldParameterContains; } public RA_RequestLinesCustomFieldsQuery setFieldParameterContains(String value) { this.FieldParameterContains = value; return this; } public String getFieldParameterLike() { return FieldParameterLike; } public RA_RequestLinesCustomFieldsQuery setFieldParameterLike(String value) { this.FieldParameterLike = value; return this; } public ArrayList getFieldParameterBetween() { return FieldParameterBetween; } public RA_RequestLinesCustomFieldsQuery setFieldParameterBetween(ArrayList value) { this.FieldParameterBetween = value; return this; } public ArrayList getFieldParameterIn() { return FieldParameterIn; } public RA_RequestLinesCustomFieldsQuery setFieldParameterIn(ArrayList value) { this.FieldParameterIn = value; return this; } public UUID getSyPluginRecID() { return SY_Plugin_RecID; } public RA_RequestLinesCustomFieldsQuery setSyPluginRecID(UUID value) { this.SY_Plugin_RecID = value; return this; } public ArrayList getSyPluginRecIDIn() { return SY_Plugin_RecIDIn; } public RA_RequestLinesCustomFieldsQuery setSyPluginRecIDIn(ArrayList value) { this.SY_Plugin_RecIDIn = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public RA_RequestLinesCustomFieldsQuery setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getLastSavedDateTimeGreaterThanOrEqualTo() { return LastSavedDateTimeGreaterThanOrEqualTo; } public RA_RequestLinesCustomFieldsQuery setLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.LastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeGreaterThan() { return LastSavedDateTimeGreaterThan; } public RA_RequestLinesCustomFieldsQuery setLastSavedDateTimeGreaterThan(Date value) { this.LastSavedDateTimeGreaterThan = value; return this; } public Date getLastSavedDateTimeLessThan() { return LastSavedDateTimeLessThan; } public RA_RequestLinesCustomFieldsQuery setLastSavedDateTimeLessThan(Date value) { this.LastSavedDateTimeLessThan = value; return this; } public Date getLastSavedDateTimeLessThanOrEqualTo() { return LastSavedDateTimeLessThanOrEqualTo; } public RA_RequestLinesCustomFieldsQuery setLastSavedDateTimeLessThanOrEqualTo(Date value) { this.LastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeNotEqualTo() { return LastSavedDateTimeNotEqualTo; } public RA_RequestLinesCustomFieldsQuery setLastSavedDateTimeNotEqualTo(Date value) { this.LastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getLastSavedDateTimeBetween() { return LastSavedDateTimeBetween; } public RA_RequestLinesCustomFieldsQuery setLastSavedDateTimeBetween(ArrayList value) { this.LastSavedDateTimeBetween = value; return this; } public ArrayList getLastSavedDateTimeIn() { return LastSavedDateTimeIn; } public RA_RequestLinesCustomFieldsQuery setLastSavedDateTimeIn(ArrayList value) { this.LastSavedDateTimeIn = value; return this; } public Integer getDisplayOrder() { return DisplayOrder; } public RA_RequestLinesCustomFieldsQuery setDisplayOrder(Integer value) { this.DisplayOrder = value; return this; } public Integer getDisplayOrderGreaterThanOrEqualTo() { return DisplayOrderGreaterThanOrEqualTo; } public RA_RequestLinesCustomFieldsQuery setDisplayOrderGreaterThanOrEqualTo(Integer value) { this.DisplayOrderGreaterThanOrEqualTo = value; return this; } public Integer getDisplayOrderGreaterThan() { return DisplayOrderGreaterThan; } public RA_RequestLinesCustomFieldsQuery setDisplayOrderGreaterThan(Integer value) { this.DisplayOrderGreaterThan = value; return this; } public Integer getDisplayOrderLessThan() { return DisplayOrderLessThan; } public RA_RequestLinesCustomFieldsQuery setDisplayOrderLessThan(Integer value) { this.DisplayOrderLessThan = value; return this; } public Integer getDisplayOrderLessThanOrEqualTo() { return DisplayOrderLessThanOrEqualTo; } public RA_RequestLinesCustomFieldsQuery setDisplayOrderLessThanOrEqualTo(Integer value) { this.DisplayOrderLessThanOrEqualTo = value; return this; } public Integer getDisplayOrderNotEqualTo() { return DisplayOrderNotEqualTo; } public RA_RequestLinesCustomFieldsQuery setDisplayOrderNotEqualTo(Integer value) { this.DisplayOrderNotEqualTo = value; return this; } public ArrayList getDisplayOrderBetween() { return DisplayOrderBetween; } public RA_RequestLinesCustomFieldsQuery setDisplayOrderBetween(ArrayList value) { this.DisplayOrderBetween = value; return this; } public ArrayList getDisplayOrderIn() { return DisplayOrderIn; } public RA_RequestLinesCustomFieldsQuery setDisplayOrderIn(ArrayList value) { this.DisplayOrderIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class RA_RequestLinesCustomValuesQuery extends QueryDb implements IReturn> { public String RecID = null; public String RecIDStartsWith = null; public String RecIDEndsWith = null; public String RecIDContains = null; public String RecIDLike = null; public ArrayList RecIDBetween = null; public ArrayList RecIDIn = null; public String RA_RequestLines_RecID = null; public String RA_RequestLines_RecIDStartsWith = null; public String RA_RequestLines_RecIDEndsWith = null; public String RA_RequestLines_RecIDContains = null; public String RA_RequestLines_RecIDLike = null; public ArrayList RA_RequestLines_RecIDBetween = null; public ArrayList RA_RequestLines_RecIDIn = null; public String RA_RequestLinesCustomFields_RecID = null; public String RA_RequestLinesCustomFields_RecIDStartsWith = null; public String RA_RequestLinesCustomFields_RecIDEndsWith = null; public String RA_RequestLinesCustomFields_RecIDContains = null; public String RA_RequestLinesCustomFields_RecIDLike = null; public ArrayList RA_RequestLinesCustomFields_RecIDBetween = null; public ArrayList RA_RequestLinesCustomFields_RecIDIn = null; public String Contents = null; public String ContentsStartsWith = null; public String ContentsEndsWith = null; public String ContentsContains = null; public String ContentsLike = null; public ArrayList ContentsBetween = null; public ArrayList ContentsIn = null; public Date LastSavedDateTime = null; public Date LastSavedDateTimeGreaterThanOrEqualTo = null; public Date LastSavedDateTimeGreaterThan = null; public Date LastSavedDateTimeLessThan = null; public Date LastSavedDateTimeLessThanOrEqualTo = null; public Date LastSavedDateTimeNotEqualTo = null; public ArrayList LastSavedDateTimeBetween = null; public ArrayList LastSavedDateTimeIn = null; public String getRecID() { return RecID; } public RA_RequestLinesCustomValuesQuery setRecID(String value) { this.RecID = value; return this; } public String getRecIDStartsWith() { return RecIDStartsWith; } public RA_RequestLinesCustomValuesQuery setRecIDStartsWith(String value) { this.RecIDStartsWith = value; return this; } public String getRecIDEndsWith() { return RecIDEndsWith; } public RA_RequestLinesCustomValuesQuery setRecIDEndsWith(String value) { this.RecIDEndsWith = value; return this; } public String getRecIDContains() { return RecIDContains; } public RA_RequestLinesCustomValuesQuery setRecIDContains(String value) { this.RecIDContains = value; return this; } public String getRecIDLike() { return RecIDLike; } public RA_RequestLinesCustomValuesQuery setRecIDLike(String value) { this.RecIDLike = value; return this; } public ArrayList getRecIDBetween() { return RecIDBetween; } public RA_RequestLinesCustomValuesQuery setRecIDBetween(ArrayList value) { this.RecIDBetween = value; return this; } public ArrayList getRecIDIn() { return RecIDIn; } public RA_RequestLinesCustomValuesQuery setRecIDIn(ArrayList value) { this.RecIDIn = value; return this; } public String getRaRequestLinesRecID() { return RA_RequestLines_RecID; } public RA_RequestLinesCustomValuesQuery setRaRequestLinesRecID(String value) { this.RA_RequestLines_RecID = value; return this; } public String getRaRequestLinesRecIDStartsWith() { return RA_RequestLines_RecIDStartsWith; } public RA_RequestLinesCustomValuesQuery setRaRequestLinesRecIDStartsWith(String value) { this.RA_RequestLines_RecIDStartsWith = value; return this; } public String getRaRequestLinesRecIDEndsWith() { return RA_RequestLines_RecIDEndsWith; } public RA_RequestLinesCustomValuesQuery setRaRequestLinesRecIDEndsWith(String value) { this.RA_RequestLines_RecIDEndsWith = value; return this; } public String getRaRequestLinesRecIDContains() { return RA_RequestLines_RecIDContains; } public RA_RequestLinesCustomValuesQuery setRaRequestLinesRecIDContains(String value) { this.RA_RequestLines_RecIDContains = value; return this; } public String getRaRequestLinesRecIDLike() { return RA_RequestLines_RecIDLike; } public RA_RequestLinesCustomValuesQuery setRaRequestLinesRecIDLike(String value) { this.RA_RequestLines_RecIDLike = value; return this; } public ArrayList getRaRequestLinesRecIDBetween() { return RA_RequestLines_RecIDBetween; } public RA_RequestLinesCustomValuesQuery setRaRequestLinesRecIDBetween(ArrayList value) { this.RA_RequestLines_RecIDBetween = value; return this; } public ArrayList getRaRequestLinesRecIDIn() { return RA_RequestLines_RecIDIn; } public RA_RequestLinesCustomValuesQuery setRaRequestLinesRecIDIn(ArrayList value) { this.RA_RequestLines_RecIDIn = value; return this; } public String getRaRequestLinesCustomFieldsRecID() { return RA_RequestLinesCustomFields_RecID; } public RA_RequestLinesCustomValuesQuery setRaRequestLinesCustomFieldsRecID(String value) { this.RA_RequestLinesCustomFields_RecID = value; return this; } public String getRaRequestLinesCustomFieldsRecIDStartsWith() { return RA_RequestLinesCustomFields_RecIDStartsWith; } public RA_RequestLinesCustomValuesQuery setRaRequestLinesCustomFieldsRecIDStartsWith(String value) { this.RA_RequestLinesCustomFields_RecIDStartsWith = value; return this; } public String getRaRequestLinesCustomFieldsRecIDEndsWith() { return RA_RequestLinesCustomFields_RecIDEndsWith; } public RA_RequestLinesCustomValuesQuery setRaRequestLinesCustomFieldsRecIDEndsWith(String value) { this.RA_RequestLinesCustomFields_RecIDEndsWith = value; return this; } public String getRaRequestLinesCustomFieldsRecIDContains() { return RA_RequestLinesCustomFields_RecIDContains; } public RA_RequestLinesCustomValuesQuery setRaRequestLinesCustomFieldsRecIDContains(String value) { this.RA_RequestLinesCustomFields_RecIDContains = value; return this; } public String getRaRequestLinesCustomFieldsRecIDLike() { return RA_RequestLinesCustomFields_RecIDLike; } public RA_RequestLinesCustomValuesQuery setRaRequestLinesCustomFieldsRecIDLike(String value) { this.RA_RequestLinesCustomFields_RecIDLike = value; return this; } public ArrayList getRaRequestLinesCustomFieldsRecIDBetween() { return RA_RequestLinesCustomFields_RecIDBetween; } public RA_RequestLinesCustomValuesQuery setRaRequestLinesCustomFieldsRecIDBetween(ArrayList value) { this.RA_RequestLinesCustomFields_RecIDBetween = value; return this; } public ArrayList getRaRequestLinesCustomFieldsRecIDIn() { return RA_RequestLinesCustomFields_RecIDIn; } public RA_RequestLinesCustomValuesQuery setRaRequestLinesCustomFieldsRecIDIn(ArrayList value) { this.RA_RequestLinesCustomFields_RecIDIn = value; return this; } public String getContents() { return Contents; } public RA_RequestLinesCustomValuesQuery setContents(String value) { this.Contents = value; return this; } public String getContentsStartsWith() { return ContentsStartsWith; } public RA_RequestLinesCustomValuesQuery setContentsStartsWith(String value) { this.ContentsStartsWith = value; return this; } public String getContentsEndsWith() { return ContentsEndsWith; } public RA_RequestLinesCustomValuesQuery setContentsEndsWith(String value) { this.ContentsEndsWith = value; return this; } public String getContentsContains() { return ContentsContains; } public RA_RequestLinesCustomValuesQuery setContentsContains(String value) { this.ContentsContains = value; return this; } public String getContentsLike() { return ContentsLike; } public RA_RequestLinesCustomValuesQuery setContentsLike(String value) { this.ContentsLike = value; return this; } public ArrayList getContentsBetween() { return ContentsBetween; } public RA_RequestLinesCustomValuesQuery setContentsBetween(ArrayList value) { this.ContentsBetween = value; return this; } public ArrayList getContentsIn() { return ContentsIn; } public RA_RequestLinesCustomValuesQuery setContentsIn(ArrayList value) { this.ContentsIn = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public RA_RequestLinesCustomValuesQuery setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getLastSavedDateTimeGreaterThanOrEqualTo() { return LastSavedDateTimeGreaterThanOrEqualTo; } public RA_RequestLinesCustomValuesQuery setLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.LastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeGreaterThan() { return LastSavedDateTimeGreaterThan; } public RA_RequestLinesCustomValuesQuery setLastSavedDateTimeGreaterThan(Date value) { this.LastSavedDateTimeGreaterThan = value; return this; } public Date getLastSavedDateTimeLessThan() { return LastSavedDateTimeLessThan; } public RA_RequestLinesCustomValuesQuery setLastSavedDateTimeLessThan(Date value) { this.LastSavedDateTimeLessThan = value; return this; } public Date getLastSavedDateTimeLessThanOrEqualTo() { return LastSavedDateTimeLessThanOrEqualTo; } public RA_RequestLinesCustomValuesQuery setLastSavedDateTimeLessThanOrEqualTo(Date value) { this.LastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeNotEqualTo() { return LastSavedDateTimeNotEqualTo; } public RA_RequestLinesCustomValuesQuery setLastSavedDateTimeNotEqualTo(Date value) { this.LastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getLastSavedDateTimeBetween() { return LastSavedDateTimeBetween; } public RA_RequestLinesCustomValuesQuery setLastSavedDateTimeBetween(ArrayList value) { this.LastSavedDateTimeBetween = value; return this; } public ArrayList getLastSavedDateTimeIn() { return LastSavedDateTimeIn; } public RA_RequestLinesCustomValuesQuery setLastSavedDateTimeIn(ArrayList value) { this.LastSavedDateTimeIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class RA_RequestMainQuery extends QueryDb implements IReturn> { public String RecID = null; public String RecIDStartsWith = null; public String RecIDEndsWith = null; public String RecIDContains = null; public String RecIDLike = null; public ArrayList RecIDBetween = null; public ArrayList RecIDIn = null; public String RequestNo = null; public String RequestNoStartsWith = null; public String RequestNoEndsWith = null; public String RequestNoContains = null; public String RequestNoLike = null; public ArrayList RequestNoBetween = null; public ArrayList RequestNoIn = null; public String Reference = null; public String ReferenceStartsWith = null; public String ReferenceEndsWith = null; public String ReferenceContains = null; public String ReferenceLike = null; public ArrayList ReferenceBetween = null; public ArrayList ReferenceIn = null; public String WarehouseID = null; public String WarehouseIDStartsWith = null; public String WarehouseIDEndsWith = null; public String WarehouseIDContains = null; public String WarehouseIDLike = null; public ArrayList WarehouseIDBetween = null; public ArrayList WarehouseIDIn = null; public Short Status = null; public Short StatusGreaterThanOrEqualTo = null; public Short StatusGreaterThan = null; public Short StatusLessThan = null; public Short StatusLessThanOrEqualTo = null; public Short StatusNotEqualTo = null; public ArrayList StatusBetween = null; public ArrayList StatusIn = null; public Date LastSavedDateTime = null; public Date LastSavedDateTimeGreaterThanOrEqualTo = null; public Date LastSavedDateTimeGreaterThan = null; public Date LastSavedDateTimeLessThan = null; public Date LastSavedDateTimeLessThanOrEqualTo = null; public Date LastSavedDateTimeNotEqualTo = null; public ArrayList LastSavedDateTimeBetween = null; public ArrayList LastSavedDateTimeIn = null; public String CreatedBy = null; public String CreatedByStartsWith = null; public String CreatedByEndsWith = null; public String CreatedByContains = null; public String CreatedByLike = null; public ArrayList CreatedByBetween = null; public ArrayList CreatedByIn = null; public String ReturnCode = null; public String ReturnCodeStartsWith = null; public String ReturnCodeEndsWith = null; public String ReturnCodeContains = null; public String ReturnCodeLike = null; public ArrayList ReturnCodeBetween = null; public ArrayList ReturnCodeIn = null; public String DeliveryAddressee = null; public String DeliveryAddresseeStartsWith = null; public String DeliveryAddresseeEndsWith = null; public String DeliveryAddresseeContains = null; public String DeliveryAddresseeLike = null; public ArrayList DeliveryAddresseeBetween = null; public ArrayList DeliveryAddresseeIn = null; public String DeliveryStreetAddress1 = null; public String DeliveryStreetAddress1StartsWith = null; public String DeliveryStreetAddress1EndsWith = null; public String DeliveryStreetAddress1Contains = null; public String DeliveryStreetAddress1Like = null; public ArrayList DeliveryStreetAddress1Between = null; public ArrayList DeliveryStreetAddress1In = null; public String DeliveryStreetAddress2 = null; public String DeliveryStreetAddress2StartsWith = null; public String DeliveryStreetAddress2EndsWith = null; public String DeliveryStreetAddress2Contains = null; public String DeliveryStreetAddress2Like = null; public ArrayList DeliveryStreetAddress2Between = null; public ArrayList DeliveryStreetAddress2In = null; public String DeliveryLocality = null; public String DeliveryLocalityStartsWith = null; public String DeliveryLocalityEndsWith = null; public String DeliveryLocalityContains = null; public String DeliveryLocalityLike = null; public ArrayList DeliveryLocalityBetween = null; public ArrayList DeliveryLocalityIn = null; public String DeliveryRegion = null; public String DeliveryRegionStartsWith = null; public String DeliveryRegionEndsWith = null; public String DeliveryRegionContains = null; public String DeliveryRegionLike = null; public ArrayList DeliveryRegionBetween = null; public ArrayList DeliveryRegionIn = null; public String DeliveryPostCode = null; public String DeliveryPostCodeStartsWith = null; public String DeliveryPostCodeEndsWith = null; public String DeliveryPostCodeContains = null; public String DeliveryPostCodeLike = null; public ArrayList DeliveryPostCodeBetween = null; public ArrayList DeliveryPostCodeIn = null; public String DeliveryCountry = null; public String DeliveryCountryStartsWith = null; public String DeliveryCountryEndsWith = null; public String DeliveryCountryContains = null; public String DeliveryCountryLike = null; public ArrayList DeliveryCountryBetween = null; public ArrayList DeliveryCountryIn = null; public String DeliveryTelephone = null; public String DeliveryTelephoneStartsWith = null; public String DeliveryTelephoneEndsWith = null; public String DeliveryTelephoneContains = null; public String DeliveryTelephoneLike = null; public ArrayList DeliveryTelephoneBetween = null; public ArrayList DeliveryTelephoneIn = null; public String DeliveryFacsimile = null; public String DeliveryFacsimileStartsWith = null; public String DeliveryFacsimileEndsWith = null; public String DeliveryFacsimileContains = null; public String DeliveryFacsimileLike = null; public ArrayList DeliveryFacsimileBetween = null; public ArrayList DeliveryFacsimileIn = null; public String ContactName = null; public String ContactNameStartsWith = null; public String ContactNameEndsWith = null; public String ContactNameContains = null; public String ContactNameLike = null; public ArrayList ContactNameBetween = null; public ArrayList ContactNameIn = null; public String Note = null; public String NoteStartsWith = null; public String NoteEndsWith = null; public String NoteContains = null; public String NoteLike = null; public ArrayList NoteBetween = null; public ArrayList NoteIn = null; public String CourierDetails = null; public String CourierDetailsStartsWith = null; public String CourierDetailsEndsWith = null; public String CourierDetailsContains = null; public String CourierDetailsLike = null; public ArrayList CourierDetailsBetween = null; public ArrayList CourierDetailsIn = null; public Date RequestDate = null; public Date RequestDateGreaterThanOrEqualTo = null; public Date RequestDateGreaterThan = null; public Date RequestDateLessThan = null; public Date RequestDateLessThanOrEqualTo = null; public Date RequestDateNotEqualTo = null; public ArrayList RequestDateBetween = null; public ArrayList RequestDateIn = null; public String CreditorID = null; public String CreditorIDStartsWith = null; public String CreditorIDEndsWith = null; public String CreditorIDContains = null; public String CreditorIDLike = null; public ArrayList CreditorIDBetween = null; public ArrayList CreditorIDIn = null; public String ReturnsWarehouseID = null; public String ReturnsWarehouseIDStartsWith = null; public String ReturnsWarehouseIDEndsWith = null; public String ReturnsWarehouseIDContains = null; public String ReturnsWarehouseIDLike = null; public ArrayList ReturnsWarehouseIDBetween = null; public ArrayList ReturnsWarehouseIDIn = null; public ArrayList RowHash = null; public String getRecID() { return RecID; } public RA_RequestMainQuery setRecID(String value) { this.RecID = value; return this; } public String getRecIDStartsWith() { return RecIDStartsWith; } public RA_RequestMainQuery setRecIDStartsWith(String value) { this.RecIDStartsWith = value; return this; } public String getRecIDEndsWith() { return RecIDEndsWith; } public RA_RequestMainQuery setRecIDEndsWith(String value) { this.RecIDEndsWith = value; return this; } public String getRecIDContains() { return RecIDContains; } public RA_RequestMainQuery setRecIDContains(String value) { this.RecIDContains = value; return this; } public String getRecIDLike() { return RecIDLike; } public RA_RequestMainQuery setRecIDLike(String value) { this.RecIDLike = value; return this; } public ArrayList getRecIDBetween() { return RecIDBetween; } public RA_RequestMainQuery setRecIDBetween(ArrayList value) { this.RecIDBetween = value; return this; } public ArrayList getRecIDIn() { return RecIDIn; } public RA_RequestMainQuery setRecIDIn(ArrayList value) { this.RecIDIn = value; return this; } public String getRequestNo() { return RequestNo; } public RA_RequestMainQuery setRequestNo(String value) { this.RequestNo = value; return this; } public String getRequestNoStartsWith() { return RequestNoStartsWith; } public RA_RequestMainQuery setRequestNoStartsWith(String value) { this.RequestNoStartsWith = value; return this; } public String getRequestNoEndsWith() { return RequestNoEndsWith; } public RA_RequestMainQuery setRequestNoEndsWith(String value) { this.RequestNoEndsWith = value; return this; } public String getRequestNoContains() { return RequestNoContains; } public RA_RequestMainQuery setRequestNoContains(String value) { this.RequestNoContains = value; return this; } public String getRequestNoLike() { return RequestNoLike; } public RA_RequestMainQuery setRequestNoLike(String value) { this.RequestNoLike = value; return this; } public ArrayList getRequestNoBetween() { return RequestNoBetween; } public RA_RequestMainQuery setRequestNoBetween(ArrayList value) { this.RequestNoBetween = value; return this; } public ArrayList getRequestNoIn() { return RequestNoIn; } public RA_RequestMainQuery setRequestNoIn(ArrayList value) { this.RequestNoIn = value; return this; } public String getReference() { return Reference; } public RA_RequestMainQuery setReference(String value) { this.Reference = value; return this; } public String getReferenceStartsWith() { return ReferenceStartsWith; } public RA_RequestMainQuery setReferenceStartsWith(String value) { this.ReferenceStartsWith = value; return this; } public String getReferenceEndsWith() { return ReferenceEndsWith; } public RA_RequestMainQuery setReferenceEndsWith(String value) { this.ReferenceEndsWith = value; return this; } public String getReferenceContains() { return ReferenceContains; } public RA_RequestMainQuery setReferenceContains(String value) { this.ReferenceContains = value; return this; } public String getReferenceLike() { return ReferenceLike; } public RA_RequestMainQuery setReferenceLike(String value) { this.ReferenceLike = value; return this; } public ArrayList getReferenceBetween() { return ReferenceBetween; } public RA_RequestMainQuery setReferenceBetween(ArrayList value) { this.ReferenceBetween = value; return this; } public ArrayList getReferenceIn() { return ReferenceIn; } public RA_RequestMainQuery setReferenceIn(ArrayList value) { this.ReferenceIn = value; return this; } public String getWarehouseID() { return WarehouseID; } public RA_RequestMainQuery setWarehouseID(String value) { this.WarehouseID = value; return this; } public String getWarehouseIDStartsWith() { return WarehouseIDStartsWith; } public RA_RequestMainQuery setWarehouseIDStartsWith(String value) { this.WarehouseIDStartsWith = value; return this; } public String getWarehouseIDEndsWith() { return WarehouseIDEndsWith; } public RA_RequestMainQuery setWarehouseIDEndsWith(String value) { this.WarehouseIDEndsWith = value; return this; } public String getWarehouseIDContains() { return WarehouseIDContains; } public RA_RequestMainQuery setWarehouseIDContains(String value) { this.WarehouseIDContains = value; return this; } public String getWarehouseIDLike() { return WarehouseIDLike; } public RA_RequestMainQuery setWarehouseIDLike(String value) { this.WarehouseIDLike = value; return this; } public ArrayList getWarehouseIDBetween() { return WarehouseIDBetween; } public RA_RequestMainQuery setWarehouseIDBetween(ArrayList value) { this.WarehouseIDBetween = value; return this; } public ArrayList getWarehouseIDIn() { return WarehouseIDIn; } public RA_RequestMainQuery setWarehouseIDIn(ArrayList value) { this.WarehouseIDIn = value; return this; } public Short getStatus() { return Status; } public RA_RequestMainQuery setStatus(Short value) { this.Status = value; return this; } public Short getStatusGreaterThanOrEqualTo() { return StatusGreaterThanOrEqualTo; } public RA_RequestMainQuery setStatusGreaterThanOrEqualTo(Short value) { this.StatusGreaterThanOrEqualTo = value; return this; } public Short getStatusGreaterThan() { return StatusGreaterThan; } public RA_RequestMainQuery setStatusGreaterThan(Short value) { this.StatusGreaterThan = value; return this; } public Short getStatusLessThan() { return StatusLessThan; } public RA_RequestMainQuery setStatusLessThan(Short value) { this.StatusLessThan = value; return this; } public Short getStatusLessThanOrEqualTo() { return StatusLessThanOrEqualTo; } public RA_RequestMainQuery setStatusLessThanOrEqualTo(Short value) { this.StatusLessThanOrEqualTo = value; return this; } public Short getStatusNotEqualTo() { return StatusNotEqualTo; } public RA_RequestMainQuery setStatusNotEqualTo(Short value) { this.StatusNotEqualTo = value; return this; } public ArrayList getStatusBetween() { return StatusBetween; } public RA_RequestMainQuery setStatusBetween(ArrayList value) { this.StatusBetween = value; return this; } public ArrayList getStatusIn() { return StatusIn; } public RA_RequestMainQuery setStatusIn(ArrayList value) { this.StatusIn = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public RA_RequestMainQuery setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getLastSavedDateTimeGreaterThanOrEqualTo() { return LastSavedDateTimeGreaterThanOrEqualTo; } public RA_RequestMainQuery setLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.LastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeGreaterThan() { return LastSavedDateTimeGreaterThan; } public RA_RequestMainQuery setLastSavedDateTimeGreaterThan(Date value) { this.LastSavedDateTimeGreaterThan = value; return this; } public Date getLastSavedDateTimeLessThan() { return LastSavedDateTimeLessThan; } public RA_RequestMainQuery setLastSavedDateTimeLessThan(Date value) { this.LastSavedDateTimeLessThan = value; return this; } public Date getLastSavedDateTimeLessThanOrEqualTo() { return LastSavedDateTimeLessThanOrEqualTo; } public RA_RequestMainQuery setLastSavedDateTimeLessThanOrEqualTo(Date value) { this.LastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeNotEqualTo() { return LastSavedDateTimeNotEqualTo; } public RA_RequestMainQuery setLastSavedDateTimeNotEqualTo(Date value) { this.LastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getLastSavedDateTimeBetween() { return LastSavedDateTimeBetween; } public RA_RequestMainQuery setLastSavedDateTimeBetween(ArrayList value) { this.LastSavedDateTimeBetween = value; return this; } public ArrayList getLastSavedDateTimeIn() { return LastSavedDateTimeIn; } public RA_RequestMainQuery setLastSavedDateTimeIn(ArrayList value) { this.LastSavedDateTimeIn = value; return this; } public String getCreatedBy() { return CreatedBy; } public RA_RequestMainQuery setCreatedBy(String value) { this.CreatedBy = value; return this; } public String getCreatedByStartsWith() { return CreatedByStartsWith; } public RA_RequestMainQuery setCreatedByStartsWith(String value) { this.CreatedByStartsWith = value; return this; } public String getCreatedByEndsWith() { return CreatedByEndsWith; } public RA_RequestMainQuery setCreatedByEndsWith(String value) { this.CreatedByEndsWith = value; return this; } public String getCreatedByContains() { return CreatedByContains; } public RA_RequestMainQuery setCreatedByContains(String value) { this.CreatedByContains = value; return this; } public String getCreatedByLike() { return CreatedByLike; } public RA_RequestMainQuery setCreatedByLike(String value) { this.CreatedByLike = value; return this; } public ArrayList getCreatedByBetween() { return CreatedByBetween; } public RA_RequestMainQuery setCreatedByBetween(ArrayList value) { this.CreatedByBetween = value; return this; } public ArrayList getCreatedByIn() { return CreatedByIn; } public RA_RequestMainQuery setCreatedByIn(ArrayList value) { this.CreatedByIn = value; return this; } public String getReturnCode() { return ReturnCode; } public RA_RequestMainQuery setReturnCode(String value) { this.ReturnCode = value; return this; } public String getReturnCodeStartsWith() { return ReturnCodeStartsWith; } public RA_RequestMainQuery setReturnCodeStartsWith(String value) { this.ReturnCodeStartsWith = value; return this; } public String getReturnCodeEndsWith() { return ReturnCodeEndsWith; } public RA_RequestMainQuery setReturnCodeEndsWith(String value) { this.ReturnCodeEndsWith = value; return this; } public String getReturnCodeContains() { return ReturnCodeContains; } public RA_RequestMainQuery setReturnCodeContains(String value) { this.ReturnCodeContains = value; return this; } public String getReturnCodeLike() { return ReturnCodeLike; } public RA_RequestMainQuery setReturnCodeLike(String value) { this.ReturnCodeLike = value; return this; } public ArrayList getReturnCodeBetween() { return ReturnCodeBetween; } public RA_RequestMainQuery setReturnCodeBetween(ArrayList value) { this.ReturnCodeBetween = value; return this; } public ArrayList getReturnCodeIn() { return ReturnCodeIn; } public RA_RequestMainQuery setReturnCodeIn(ArrayList value) { this.ReturnCodeIn = value; return this; } public String getDeliveryAddressee() { return DeliveryAddressee; } public RA_RequestMainQuery setDeliveryAddressee(String value) { this.DeliveryAddressee = value; return this; } public String getDeliveryAddresseeStartsWith() { return DeliveryAddresseeStartsWith; } public RA_RequestMainQuery setDeliveryAddresseeStartsWith(String value) { this.DeliveryAddresseeStartsWith = value; return this; } public String getDeliveryAddresseeEndsWith() { return DeliveryAddresseeEndsWith; } public RA_RequestMainQuery setDeliveryAddresseeEndsWith(String value) { this.DeliveryAddresseeEndsWith = value; return this; } public String getDeliveryAddresseeContains() { return DeliveryAddresseeContains; } public RA_RequestMainQuery setDeliveryAddresseeContains(String value) { this.DeliveryAddresseeContains = value; return this; } public String getDeliveryAddresseeLike() { return DeliveryAddresseeLike; } public RA_RequestMainQuery setDeliveryAddresseeLike(String value) { this.DeliveryAddresseeLike = value; return this; } public ArrayList getDeliveryAddresseeBetween() { return DeliveryAddresseeBetween; } public RA_RequestMainQuery setDeliveryAddresseeBetween(ArrayList value) { this.DeliveryAddresseeBetween = value; return this; } public ArrayList getDeliveryAddresseeIn() { return DeliveryAddresseeIn; } public RA_RequestMainQuery setDeliveryAddresseeIn(ArrayList value) { this.DeliveryAddresseeIn = value; return this; } public String getDeliveryStreetAddress1() { return DeliveryStreetAddress1; } public RA_RequestMainQuery setDeliveryStreetAddress1(String value) { this.DeliveryStreetAddress1 = value; return this; } public String getDeliveryStreetAddress1StartsWith() { return DeliveryStreetAddress1StartsWith; } public RA_RequestMainQuery setDeliveryStreetAddress1StartsWith(String value) { this.DeliveryStreetAddress1StartsWith = value; return this; } public String getDeliveryStreetAddress1EndsWith() { return DeliveryStreetAddress1EndsWith; } public RA_RequestMainQuery setDeliveryStreetAddress1EndsWith(String value) { this.DeliveryStreetAddress1EndsWith = value; return this; } public String getDeliveryStreetAddress1Contains() { return DeliveryStreetAddress1Contains; } public RA_RequestMainQuery setDeliveryStreetAddress1Contains(String value) { this.DeliveryStreetAddress1Contains = value; return this; } public String getDeliveryStreetAddress1Like() { return DeliveryStreetAddress1Like; } public RA_RequestMainQuery setDeliveryStreetAddress1Like(String value) { this.DeliveryStreetAddress1Like = value; return this; } public ArrayList getDeliveryStreetAddress1Between() { return DeliveryStreetAddress1Between; } public RA_RequestMainQuery setDeliveryStreetAddress1Between(ArrayList value) { this.DeliveryStreetAddress1Between = value; return this; } public ArrayList getDeliveryStreetAddress1In() { return DeliveryStreetAddress1In; } public RA_RequestMainQuery setDeliveryStreetAddress1In(ArrayList value) { this.DeliveryStreetAddress1In = value; return this; } public String getDeliveryStreetAddress2() { return DeliveryStreetAddress2; } public RA_RequestMainQuery setDeliveryStreetAddress2(String value) { this.DeliveryStreetAddress2 = value; return this; } public String getDeliveryStreetAddress2StartsWith() { return DeliveryStreetAddress2StartsWith; } public RA_RequestMainQuery setDeliveryStreetAddress2StartsWith(String value) { this.DeliveryStreetAddress2StartsWith = value; return this; } public String getDeliveryStreetAddress2EndsWith() { return DeliveryStreetAddress2EndsWith; } public RA_RequestMainQuery setDeliveryStreetAddress2EndsWith(String value) { this.DeliveryStreetAddress2EndsWith = value; return this; } public String getDeliveryStreetAddress2Contains() { return DeliveryStreetAddress2Contains; } public RA_RequestMainQuery setDeliveryStreetAddress2Contains(String value) { this.DeliveryStreetAddress2Contains = value; return this; } public String getDeliveryStreetAddress2Like() { return DeliveryStreetAddress2Like; } public RA_RequestMainQuery setDeliveryStreetAddress2Like(String value) { this.DeliveryStreetAddress2Like = value; return this; } public ArrayList getDeliveryStreetAddress2Between() { return DeliveryStreetAddress2Between; } public RA_RequestMainQuery setDeliveryStreetAddress2Between(ArrayList value) { this.DeliveryStreetAddress2Between = value; return this; } public ArrayList getDeliveryStreetAddress2In() { return DeliveryStreetAddress2In; } public RA_RequestMainQuery setDeliveryStreetAddress2In(ArrayList value) { this.DeliveryStreetAddress2In = value; return this; } public String getDeliveryLocality() { return DeliveryLocality; } public RA_RequestMainQuery setDeliveryLocality(String value) { this.DeliveryLocality = value; return this; } public String getDeliveryLocalityStartsWith() { return DeliveryLocalityStartsWith; } public RA_RequestMainQuery setDeliveryLocalityStartsWith(String value) { this.DeliveryLocalityStartsWith = value; return this; } public String getDeliveryLocalityEndsWith() { return DeliveryLocalityEndsWith; } public RA_RequestMainQuery setDeliveryLocalityEndsWith(String value) { this.DeliveryLocalityEndsWith = value; return this; } public String getDeliveryLocalityContains() { return DeliveryLocalityContains; } public RA_RequestMainQuery setDeliveryLocalityContains(String value) { this.DeliveryLocalityContains = value; return this; } public String getDeliveryLocalityLike() { return DeliveryLocalityLike; } public RA_RequestMainQuery setDeliveryLocalityLike(String value) { this.DeliveryLocalityLike = value; return this; } public ArrayList getDeliveryLocalityBetween() { return DeliveryLocalityBetween; } public RA_RequestMainQuery setDeliveryLocalityBetween(ArrayList value) { this.DeliveryLocalityBetween = value; return this; } public ArrayList getDeliveryLocalityIn() { return DeliveryLocalityIn; } public RA_RequestMainQuery setDeliveryLocalityIn(ArrayList value) { this.DeliveryLocalityIn = value; return this; } public String getDeliveryRegion() { return DeliveryRegion; } public RA_RequestMainQuery setDeliveryRegion(String value) { this.DeliveryRegion = value; return this; } public String getDeliveryRegionStartsWith() { return DeliveryRegionStartsWith; } public RA_RequestMainQuery setDeliveryRegionStartsWith(String value) { this.DeliveryRegionStartsWith = value; return this; } public String getDeliveryRegionEndsWith() { return DeliveryRegionEndsWith; } public RA_RequestMainQuery setDeliveryRegionEndsWith(String value) { this.DeliveryRegionEndsWith = value; return this; } public String getDeliveryRegionContains() { return DeliveryRegionContains; } public RA_RequestMainQuery setDeliveryRegionContains(String value) { this.DeliveryRegionContains = value; return this; } public String getDeliveryRegionLike() { return DeliveryRegionLike; } public RA_RequestMainQuery setDeliveryRegionLike(String value) { this.DeliveryRegionLike = value; return this; } public ArrayList getDeliveryRegionBetween() { return DeliveryRegionBetween; } public RA_RequestMainQuery setDeliveryRegionBetween(ArrayList value) { this.DeliveryRegionBetween = value; return this; } public ArrayList getDeliveryRegionIn() { return DeliveryRegionIn; } public RA_RequestMainQuery setDeliveryRegionIn(ArrayList value) { this.DeliveryRegionIn = value; return this; } public String getDeliveryPostCode() { return DeliveryPostCode; } public RA_RequestMainQuery setDeliveryPostCode(String value) { this.DeliveryPostCode = value; return this; } public String getDeliveryPostCodeStartsWith() { return DeliveryPostCodeStartsWith; } public RA_RequestMainQuery setDeliveryPostCodeStartsWith(String value) { this.DeliveryPostCodeStartsWith = value; return this; } public String getDeliveryPostCodeEndsWith() { return DeliveryPostCodeEndsWith; } public RA_RequestMainQuery setDeliveryPostCodeEndsWith(String value) { this.DeliveryPostCodeEndsWith = value; return this; } public String getDeliveryPostCodeContains() { return DeliveryPostCodeContains; } public RA_RequestMainQuery setDeliveryPostCodeContains(String value) { this.DeliveryPostCodeContains = value; return this; } public String getDeliveryPostCodeLike() { return DeliveryPostCodeLike; } public RA_RequestMainQuery setDeliveryPostCodeLike(String value) { this.DeliveryPostCodeLike = value; return this; } public ArrayList getDeliveryPostCodeBetween() { return DeliveryPostCodeBetween; } public RA_RequestMainQuery setDeliveryPostCodeBetween(ArrayList value) { this.DeliveryPostCodeBetween = value; return this; } public ArrayList getDeliveryPostCodeIn() { return DeliveryPostCodeIn; } public RA_RequestMainQuery setDeliveryPostCodeIn(ArrayList value) { this.DeliveryPostCodeIn = value; return this; } public String getDeliveryCountry() { return DeliveryCountry; } public RA_RequestMainQuery setDeliveryCountry(String value) { this.DeliveryCountry = value; return this; } public String getDeliveryCountryStartsWith() { return DeliveryCountryStartsWith; } public RA_RequestMainQuery setDeliveryCountryStartsWith(String value) { this.DeliveryCountryStartsWith = value; return this; } public String getDeliveryCountryEndsWith() { return DeliveryCountryEndsWith; } public RA_RequestMainQuery setDeliveryCountryEndsWith(String value) { this.DeliveryCountryEndsWith = value; return this; } public String getDeliveryCountryContains() { return DeliveryCountryContains; } public RA_RequestMainQuery setDeliveryCountryContains(String value) { this.DeliveryCountryContains = value; return this; } public String getDeliveryCountryLike() { return DeliveryCountryLike; } public RA_RequestMainQuery setDeliveryCountryLike(String value) { this.DeliveryCountryLike = value; return this; } public ArrayList getDeliveryCountryBetween() { return DeliveryCountryBetween; } public RA_RequestMainQuery setDeliveryCountryBetween(ArrayList value) { this.DeliveryCountryBetween = value; return this; } public ArrayList getDeliveryCountryIn() { return DeliveryCountryIn; } public RA_RequestMainQuery setDeliveryCountryIn(ArrayList value) { this.DeliveryCountryIn = value; return this; } public String getDeliveryTelephone() { return DeliveryTelephone; } public RA_RequestMainQuery setDeliveryTelephone(String value) { this.DeliveryTelephone = value; return this; } public String getDeliveryTelephoneStartsWith() { return DeliveryTelephoneStartsWith; } public RA_RequestMainQuery setDeliveryTelephoneStartsWith(String value) { this.DeliveryTelephoneStartsWith = value; return this; } public String getDeliveryTelephoneEndsWith() { return DeliveryTelephoneEndsWith; } public RA_RequestMainQuery setDeliveryTelephoneEndsWith(String value) { this.DeliveryTelephoneEndsWith = value; return this; } public String getDeliveryTelephoneContains() { return DeliveryTelephoneContains; } public RA_RequestMainQuery setDeliveryTelephoneContains(String value) { this.DeliveryTelephoneContains = value; return this; } public String getDeliveryTelephoneLike() { return DeliveryTelephoneLike; } public RA_RequestMainQuery setDeliveryTelephoneLike(String value) { this.DeliveryTelephoneLike = value; return this; } public ArrayList getDeliveryTelephoneBetween() { return DeliveryTelephoneBetween; } public RA_RequestMainQuery setDeliveryTelephoneBetween(ArrayList value) { this.DeliveryTelephoneBetween = value; return this; } public ArrayList getDeliveryTelephoneIn() { return DeliveryTelephoneIn; } public RA_RequestMainQuery setDeliveryTelephoneIn(ArrayList value) { this.DeliveryTelephoneIn = value; return this; } public String getDeliveryFacsimile() { return DeliveryFacsimile; } public RA_RequestMainQuery setDeliveryFacsimile(String value) { this.DeliveryFacsimile = value; return this; } public String getDeliveryFacsimileStartsWith() { return DeliveryFacsimileStartsWith; } public RA_RequestMainQuery setDeliveryFacsimileStartsWith(String value) { this.DeliveryFacsimileStartsWith = value; return this; } public String getDeliveryFacsimileEndsWith() { return DeliveryFacsimileEndsWith; } public RA_RequestMainQuery setDeliveryFacsimileEndsWith(String value) { this.DeliveryFacsimileEndsWith = value; return this; } public String getDeliveryFacsimileContains() { return DeliveryFacsimileContains; } public RA_RequestMainQuery setDeliveryFacsimileContains(String value) { this.DeliveryFacsimileContains = value; return this; } public String getDeliveryFacsimileLike() { return DeliveryFacsimileLike; } public RA_RequestMainQuery setDeliveryFacsimileLike(String value) { this.DeliveryFacsimileLike = value; return this; } public ArrayList getDeliveryFacsimileBetween() { return DeliveryFacsimileBetween; } public RA_RequestMainQuery setDeliveryFacsimileBetween(ArrayList value) { this.DeliveryFacsimileBetween = value; return this; } public ArrayList getDeliveryFacsimileIn() { return DeliveryFacsimileIn; } public RA_RequestMainQuery setDeliveryFacsimileIn(ArrayList value) { this.DeliveryFacsimileIn = value; return this; } public String getContactName() { return ContactName; } public RA_RequestMainQuery setContactName(String value) { this.ContactName = value; return this; } public String getContactNameStartsWith() { return ContactNameStartsWith; } public RA_RequestMainQuery setContactNameStartsWith(String value) { this.ContactNameStartsWith = value; return this; } public String getContactNameEndsWith() { return ContactNameEndsWith; } public RA_RequestMainQuery setContactNameEndsWith(String value) { this.ContactNameEndsWith = value; return this; } public String getContactNameContains() { return ContactNameContains; } public RA_RequestMainQuery setContactNameContains(String value) { this.ContactNameContains = value; return this; } public String getContactNameLike() { return ContactNameLike; } public RA_RequestMainQuery setContactNameLike(String value) { this.ContactNameLike = value; return this; } public ArrayList getContactNameBetween() { return ContactNameBetween; } public RA_RequestMainQuery setContactNameBetween(ArrayList value) { this.ContactNameBetween = value; return this; } public ArrayList getContactNameIn() { return ContactNameIn; } public RA_RequestMainQuery setContactNameIn(ArrayList value) { this.ContactNameIn = value; return this; } public String getNote() { return Note; } public RA_RequestMainQuery setNote(String value) { this.Note = value; return this; } public String getNoteStartsWith() { return NoteStartsWith; } public RA_RequestMainQuery setNoteStartsWith(String value) { this.NoteStartsWith = value; return this; } public String getNoteEndsWith() { return NoteEndsWith; } public RA_RequestMainQuery setNoteEndsWith(String value) { this.NoteEndsWith = value; return this; } public String getNoteContains() { return NoteContains; } public RA_RequestMainQuery setNoteContains(String value) { this.NoteContains = value; return this; } public String getNoteLike() { return NoteLike; } public RA_RequestMainQuery setNoteLike(String value) { this.NoteLike = value; return this; } public ArrayList getNoteBetween() { return NoteBetween; } public RA_RequestMainQuery setNoteBetween(ArrayList value) { this.NoteBetween = value; return this; } public ArrayList getNoteIn() { return NoteIn; } public RA_RequestMainQuery setNoteIn(ArrayList value) { this.NoteIn = value; return this; } public String getCourierDetails() { return CourierDetails; } public RA_RequestMainQuery setCourierDetails(String value) { this.CourierDetails = value; return this; } public String getCourierDetailsStartsWith() { return CourierDetailsStartsWith; } public RA_RequestMainQuery setCourierDetailsStartsWith(String value) { this.CourierDetailsStartsWith = value; return this; } public String getCourierDetailsEndsWith() { return CourierDetailsEndsWith; } public RA_RequestMainQuery setCourierDetailsEndsWith(String value) { this.CourierDetailsEndsWith = value; return this; } public String getCourierDetailsContains() { return CourierDetailsContains; } public RA_RequestMainQuery setCourierDetailsContains(String value) { this.CourierDetailsContains = value; return this; } public String getCourierDetailsLike() { return CourierDetailsLike; } public RA_RequestMainQuery setCourierDetailsLike(String value) { this.CourierDetailsLike = value; return this; } public ArrayList getCourierDetailsBetween() { return CourierDetailsBetween; } public RA_RequestMainQuery setCourierDetailsBetween(ArrayList value) { this.CourierDetailsBetween = value; return this; } public ArrayList getCourierDetailsIn() { return CourierDetailsIn; } public RA_RequestMainQuery setCourierDetailsIn(ArrayList value) { this.CourierDetailsIn = value; return this; } public Date getRequestDate() { return RequestDate; } public RA_RequestMainQuery setRequestDate(Date value) { this.RequestDate = value; return this; } public Date getRequestDateGreaterThanOrEqualTo() { return RequestDateGreaterThanOrEqualTo; } public RA_RequestMainQuery setRequestDateGreaterThanOrEqualTo(Date value) { this.RequestDateGreaterThanOrEqualTo = value; return this; } public Date getRequestDateGreaterThan() { return RequestDateGreaterThan; } public RA_RequestMainQuery setRequestDateGreaterThan(Date value) { this.RequestDateGreaterThan = value; return this; } public Date getRequestDateLessThan() { return RequestDateLessThan; } public RA_RequestMainQuery setRequestDateLessThan(Date value) { this.RequestDateLessThan = value; return this; } public Date getRequestDateLessThanOrEqualTo() { return RequestDateLessThanOrEqualTo; } public RA_RequestMainQuery setRequestDateLessThanOrEqualTo(Date value) { this.RequestDateLessThanOrEqualTo = value; return this; } public Date getRequestDateNotEqualTo() { return RequestDateNotEqualTo; } public RA_RequestMainQuery setRequestDateNotEqualTo(Date value) { this.RequestDateNotEqualTo = value; return this; } public ArrayList getRequestDateBetween() { return RequestDateBetween; } public RA_RequestMainQuery setRequestDateBetween(ArrayList value) { this.RequestDateBetween = value; return this; } public ArrayList getRequestDateIn() { return RequestDateIn; } public RA_RequestMainQuery setRequestDateIn(ArrayList value) { this.RequestDateIn = value; return this; } public String getCreditorID() { return CreditorID; } public RA_RequestMainQuery setCreditorID(String value) { this.CreditorID = value; return this; } public String getCreditorIDStartsWith() { return CreditorIDStartsWith; } public RA_RequestMainQuery setCreditorIDStartsWith(String value) { this.CreditorIDStartsWith = value; return this; } public String getCreditorIDEndsWith() { return CreditorIDEndsWith; } public RA_RequestMainQuery setCreditorIDEndsWith(String value) { this.CreditorIDEndsWith = value; return this; } public String getCreditorIDContains() { return CreditorIDContains; } public RA_RequestMainQuery setCreditorIDContains(String value) { this.CreditorIDContains = value; return this; } public String getCreditorIDLike() { return CreditorIDLike; } public RA_RequestMainQuery setCreditorIDLike(String value) { this.CreditorIDLike = value; return this; } public ArrayList getCreditorIDBetween() { return CreditorIDBetween; } public RA_RequestMainQuery setCreditorIDBetween(ArrayList value) { this.CreditorIDBetween = value; return this; } public ArrayList getCreditorIDIn() { return CreditorIDIn; } public RA_RequestMainQuery setCreditorIDIn(ArrayList value) { this.CreditorIDIn = value; return this; } public String getReturnsWarehouseID() { return ReturnsWarehouseID; } public RA_RequestMainQuery setReturnsWarehouseID(String value) { this.ReturnsWarehouseID = value; return this; } public String getReturnsWarehouseIDStartsWith() { return ReturnsWarehouseIDStartsWith; } public RA_RequestMainQuery setReturnsWarehouseIDStartsWith(String value) { this.ReturnsWarehouseIDStartsWith = value; return this; } public String getReturnsWarehouseIDEndsWith() { return ReturnsWarehouseIDEndsWith; } public RA_RequestMainQuery setReturnsWarehouseIDEndsWith(String value) { this.ReturnsWarehouseIDEndsWith = value; return this; } public String getReturnsWarehouseIDContains() { return ReturnsWarehouseIDContains; } public RA_RequestMainQuery setReturnsWarehouseIDContains(String value) { this.ReturnsWarehouseIDContains = value; return this; } public String getReturnsWarehouseIDLike() { return ReturnsWarehouseIDLike; } public RA_RequestMainQuery setReturnsWarehouseIDLike(String value) { this.ReturnsWarehouseIDLike = value; return this; } public ArrayList getReturnsWarehouseIDBetween() { return ReturnsWarehouseIDBetween; } public RA_RequestMainQuery setReturnsWarehouseIDBetween(ArrayList value) { this.ReturnsWarehouseIDBetween = value; return this; } public ArrayList getReturnsWarehouseIDIn() { return ReturnsWarehouseIDIn; } public RA_RequestMainQuery setReturnsWarehouseIDIn(ArrayList value) { this.ReturnsWarehouseIDIn = value; return this; } public ArrayList getRowHash() { return RowHash; } public RA_RequestMainQuery setRowHash(ArrayList value) { this.RowHash = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class RA_RequestMainCustomFieldsQuery extends QueryDb implements IReturn> { public String RecID = null; public String RecIDStartsWith = null; public String RecIDEndsWith = null; public String RecIDContains = null; public String RecIDLike = null; public ArrayList RecIDBetween = null; public ArrayList RecIDIn = null; public String SettingName = null; public String SettingNameStartsWith = null; public String SettingNameEndsWith = null; public String SettingNameContains = null; public String SettingNameLike = null; public ArrayList SettingNameBetween = null; public ArrayList SettingNameIn = null; public String SettingDescription = null; public String SettingDescriptionStartsWith = null; public String SettingDescriptionEndsWith = null; public String SettingDescriptionContains = null; public String SettingDescriptionLike = null; public ArrayList SettingDescriptionBetween = null; public ArrayList SettingDescriptionIn = null; public Integer CellType = null; public Integer CellTypeGreaterThanOrEqualTo = null; public Integer CellTypeGreaterThan = null; public Integer CellTypeLessThan = null; public Integer CellTypeLessThanOrEqualTo = null; public Integer CellTypeNotEqualTo = null; public ArrayList CellTypeBetween = null; public ArrayList CellTypeIn = null; public String FieldParameter = null; public String FieldParameterStartsWith = null; public String FieldParameterEndsWith = null; public String FieldParameterContains = null; public String FieldParameterLike = null; public ArrayList FieldParameterBetween = null; public ArrayList FieldParameterIn = null; public UUID SY_Plugin_RecID = null; public ArrayList SY_Plugin_RecIDIn = null; public Date LastSavedDateTime = null; public Date LastSavedDateTimeGreaterThanOrEqualTo = null; public Date LastSavedDateTimeGreaterThan = null; public Date LastSavedDateTimeLessThan = null; public Date LastSavedDateTimeLessThanOrEqualTo = null; public Date LastSavedDateTimeNotEqualTo = null; public ArrayList LastSavedDateTimeBetween = null; public ArrayList LastSavedDateTimeIn = null; public Integer DisplayOrder = null; public Integer DisplayOrderGreaterThanOrEqualTo = null; public Integer DisplayOrderGreaterThan = null; public Integer DisplayOrderLessThan = null; public Integer DisplayOrderLessThanOrEqualTo = null; public Integer DisplayOrderNotEqualTo = null; public ArrayList DisplayOrderBetween = null; public ArrayList DisplayOrderIn = null; public String getRecID() { return RecID; } public RA_RequestMainCustomFieldsQuery setRecID(String value) { this.RecID = value; return this; } public String getRecIDStartsWith() { return RecIDStartsWith; } public RA_RequestMainCustomFieldsQuery setRecIDStartsWith(String value) { this.RecIDStartsWith = value; return this; } public String getRecIDEndsWith() { return RecIDEndsWith; } public RA_RequestMainCustomFieldsQuery setRecIDEndsWith(String value) { this.RecIDEndsWith = value; return this; } public String getRecIDContains() { return RecIDContains; } public RA_RequestMainCustomFieldsQuery setRecIDContains(String value) { this.RecIDContains = value; return this; } public String getRecIDLike() { return RecIDLike; } public RA_RequestMainCustomFieldsQuery setRecIDLike(String value) { this.RecIDLike = value; return this; } public ArrayList getRecIDBetween() { return RecIDBetween; } public RA_RequestMainCustomFieldsQuery setRecIDBetween(ArrayList value) { this.RecIDBetween = value; return this; } public ArrayList getRecIDIn() { return RecIDIn; } public RA_RequestMainCustomFieldsQuery setRecIDIn(ArrayList value) { this.RecIDIn = value; return this; } public String getSettingName() { return SettingName; } public RA_RequestMainCustomFieldsQuery setSettingName(String value) { this.SettingName = value; return this; } public String getSettingNameStartsWith() { return SettingNameStartsWith; } public RA_RequestMainCustomFieldsQuery setSettingNameStartsWith(String value) { this.SettingNameStartsWith = value; return this; } public String getSettingNameEndsWith() { return SettingNameEndsWith; } public RA_RequestMainCustomFieldsQuery setSettingNameEndsWith(String value) { this.SettingNameEndsWith = value; return this; } public String getSettingNameContains() { return SettingNameContains; } public RA_RequestMainCustomFieldsQuery setSettingNameContains(String value) { this.SettingNameContains = value; return this; } public String getSettingNameLike() { return SettingNameLike; } public RA_RequestMainCustomFieldsQuery setSettingNameLike(String value) { this.SettingNameLike = value; return this; } public ArrayList getSettingNameBetween() { return SettingNameBetween; } public RA_RequestMainCustomFieldsQuery setSettingNameBetween(ArrayList value) { this.SettingNameBetween = value; return this; } public ArrayList getSettingNameIn() { return SettingNameIn; } public RA_RequestMainCustomFieldsQuery setSettingNameIn(ArrayList value) { this.SettingNameIn = value; return this; } public String getSettingDescription() { return SettingDescription; } public RA_RequestMainCustomFieldsQuery setSettingDescription(String value) { this.SettingDescription = value; return this; } public String getSettingDescriptionStartsWith() { return SettingDescriptionStartsWith; } public RA_RequestMainCustomFieldsQuery setSettingDescriptionStartsWith(String value) { this.SettingDescriptionStartsWith = value; return this; } public String getSettingDescriptionEndsWith() { return SettingDescriptionEndsWith; } public RA_RequestMainCustomFieldsQuery setSettingDescriptionEndsWith(String value) { this.SettingDescriptionEndsWith = value; return this; } public String getSettingDescriptionContains() { return SettingDescriptionContains; } public RA_RequestMainCustomFieldsQuery setSettingDescriptionContains(String value) { this.SettingDescriptionContains = value; return this; } public String getSettingDescriptionLike() { return SettingDescriptionLike; } public RA_RequestMainCustomFieldsQuery setSettingDescriptionLike(String value) { this.SettingDescriptionLike = value; return this; } public ArrayList getSettingDescriptionBetween() { return SettingDescriptionBetween; } public RA_RequestMainCustomFieldsQuery setSettingDescriptionBetween(ArrayList value) { this.SettingDescriptionBetween = value; return this; } public ArrayList getSettingDescriptionIn() { return SettingDescriptionIn; } public RA_RequestMainCustomFieldsQuery setSettingDescriptionIn(ArrayList value) { this.SettingDescriptionIn = value; return this; } public Integer getCellType() { return CellType; } public RA_RequestMainCustomFieldsQuery setCellType(Integer value) { this.CellType = value; return this; } public Integer getCellTypeGreaterThanOrEqualTo() { return CellTypeGreaterThanOrEqualTo; } public RA_RequestMainCustomFieldsQuery setCellTypeGreaterThanOrEqualTo(Integer value) { this.CellTypeGreaterThanOrEqualTo = value; return this; } public Integer getCellTypeGreaterThan() { return CellTypeGreaterThan; } public RA_RequestMainCustomFieldsQuery setCellTypeGreaterThan(Integer value) { this.CellTypeGreaterThan = value; return this; } public Integer getCellTypeLessThan() { return CellTypeLessThan; } public RA_RequestMainCustomFieldsQuery setCellTypeLessThan(Integer value) { this.CellTypeLessThan = value; return this; } public Integer getCellTypeLessThanOrEqualTo() { return CellTypeLessThanOrEqualTo; } public RA_RequestMainCustomFieldsQuery setCellTypeLessThanOrEqualTo(Integer value) { this.CellTypeLessThanOrEqualTo = value; return this; } public Integer getCellTypeNotEqualTo() { return CellTypeNotEqualTo; } public RA_RequestMainCustomFieldsQuery setCellTypeNotEqualTo(Integer value) { this.CellTypeNotEqualTo = value; return this; } public ArrayList getCellTypeBetween() { return CellTypeBetween; } public RA_RequestMainCustomFieldsQuery setCellTypeBetween(ArrayList value) { this.CellTypeBetween = value; return this; } public ArrayList getCellTypeIn() { return CellTypeIn; } public RA_RequestMainCustomFieldsQuery setCellTypeIn(ArrayList value) { this.CellTypeIn = value; return this; } public String getFieldParameter() { return FieldParameter; } public RA_RequestMainCustomFieldsQuery setFieldParameter(String value) { this.FieldParameter = value; return this; } public String getFieldParameterStartsWith() { return FieldParameterStartsWith; } public RA_RequestMainCustomFieldsQuery setFieldParameterStartsWith(String value) { this.FieldParameterStartsWith = value; return this; } public String getFieldParameterEndsWith() { return FieldParameterEndsWith; } public RA_RequestMainCustomFieldsQuery setFieldParameterEndsWith(String value) { this.FieldParameterEndsWith = value; return this; } public String getFieldParameterContains() { return FieldParameterContains; } public RA_RequestMainCustomFieldsQuery setFieldParameterContains(String value) { this.FieldParameterContains = value; return this; } public String getFieldParameterLike() { return FieldParameterLike; } public RA_RequestMainCustomFieldsQuery setFieldParameterLike(String value) { this.FieldParameterLike = value; return this; } public ArrayList getFieldParameterBetween() { return FieldParameterBetween; } public RA_RequestMainCustomFieldsQuery setFieldParameterBetween(ArrayList value) { this.FieldParameterBetween = value; return this; } public ArrayList getFieldParameterIn() { return FieldParameterIn; } public RA_RequestMainCustomFieldsQuery setFieldParameterIn(ArrayList value) { this.FieldParameterIn = value; return this; } public UUID getSyPluginRecID() { return SY_Plugin_RecID; } public RA_RequestMainCustomFieldsQuery setSyPluginRecID(UUID value) { this.SY_Plugin_RecID = value; return this; } public ArrayList getSyPluginRecIDIn() { return SY_Plugin_RecIDIn; } public RA_RequestMainCustomFieldsQuery setSyPluginRecIDIn(ArrayList value) { this.SY_Plugin_RecIDIn = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public RA_RequestMainCustomFieldsQuery setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getLastSavedDateTimeGreaterThanOrEqualTo() { return LastSavedDateTimeGreaterThanOrEqualTo; } public RA_RequestMainCustomFieldsQuery setLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.LastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeGreaterThan() { return LastSavedDateTimeGreaterThan; } public RA_RequestMainCustomFieldsQuery setLastSavedDateTimeGreaterThan(Date value) { this.LastSavedDateTimeGreaterThan = value; return this; } public Date getLastSavedDateTimeLessThan() { return LastSavedDateTimeLessThan; } public RA_RequestMainCustomFieldsQuery setLastSavedDateTimeLessThan(Date value) { this.LastSavedDateTimeLessThan = value; return this; } public Date getLastSavedDateTimeLessThanOrEqualTo() { return LastSavedDateTimeLessThanOrEqualTo; } public RA_RequestMainCustomFieldsQuery setLastSavedDateTimeLessThanOrEqualTo(Date value) { this.LastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeNotEqualTo() { return LastSavedDateTimeNotEqualTo; } public RA_RequestMainCustomFieldsQuery setLastSavedDateTimeNotEqualTo(Date value) { this.LastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getLastSavedDateTimeBetween() { return LastSavedDateTimeBetween; } public RA_RequestMainCustomFieldsQuery setLastSavedDateTimeBetween(ArrayList value) { this.LastSavedDateTimeBetween = value; return this; } public ArrayList getLastSavedDateTimeIn() { return LastSavedDateTimeIn; } public RA_RequestMainCustomFieldsQuery setLastSavedDateTimeIn(ArrayList value) { this.LastSavedDateTimeIn = value; return this; } public Integer getDisplayOrder() { return DisplayOrder; } public RA_RequestMainCustomFieldsQuery setDisplayOrder(Integer value) { this.DisplayOrder = value; return this; } public Integer getDisplayOrderGreaterThanOrEqualTo() { return DisplayOrderGreaterThanOrEqualTo; } public RA_RequestMainCustomFieldsQuery setDisplayOrderGreaterThanOrEqualTo(Integer value) { this.DisplayOrderGreaterThanOrEqualTo = value; return this; } public Integer getDisplayOrderGreaterThan() { return DisplayOrderGreaterThan; } public RA_RequestMainCustomFieldsQuery setDisplayOrderGreaterThan(Integer value) { this.DisplayOrderGreaterThan = value; return this; } public Integer getDisplayOrderLessThan() { return DisplayOrderLessThan; } public RA_RequestMainCustomFieldsQuery setDisplayOrderLessThan(Integer value) { this.DisplayOrderLessThan = value; return this; } public Integer getDisplayOrderLessThanOrEqualTo() { return DisplayOrderLessThanOrEqualTo; } public RA_RequestMainCustomFieldsQuery setDisplayOrderLessThanOrEqualTo(Integer value) { this.DisplayOrderLessThanOrEqualTo = value; return this; } public Integer getDisplayOrderNotEqualTo() { return DisplayOrderNotEqualTo; } public RA_RequestMainCustomFieldsQuery setDisplayOrderNotEqualTo(Integer value) { this.DisplayOrderNotEqualTo = value; return this; } public ArrayList getDisplayOrderBetween() { return DisplayOrderBetween; } public RA_RequestMainCustomFieldsQuery setDisplayOrderBetween(ArrayList value) { this.DisplayOrderBetween = value; return this; } public ArrayList getDisplayOrderIn() { return DisplayOrderIn; } public RA_RequestMainCustomFieldsQuery setDisplayOrderIn(ArrayList value) { this.DisplayOrderIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class RA_RequestMainCustomValuesQuery extends QueryDb implements IReturn> { public String RecID = null; public String RecIDStartsWith = null; public String RecIDEndsWith = null; public String RecIDContains = null; public String RecIDLike = null; public ArrayList RecIDBetween = null; public ArrayList RecIDIn = null; public String RA_RequestMain_RecID = null; public String RA_RequestMain_RecIDStartsWith = null; public String RA_RequestMain_RecIDEndsWith = null; public String RA_RequestMain_RecIDContains = null; public String RA_RequestMain_RecIDLike = null; public ArrayList RA_RequestMain_RecIDBetween = null; public ArrayList RA_RequestMain_RecIDIn = null; public String RA_RequestMainCustomFields_RecID = null; public String RA_RequestMainCustomFields_RecIDStartsWith = null; public String RA_RequestMainCustomFields_RecIDEndsWith = null; public String RA_RequestMainCustomFields_RecIDContains = null; public String RA_RequestMainCustomFields_RecIDLike = null; public ArrayList RA_RequestMainCustomFields_RecIDBetween = null; public ArrayList RA_RequestMainCustomFields_RecIDIn = null; public String Contents = null; public String ContentsStartsWith = null; public String ContentsEndsWith = null; public String ContentsContains = null; public String ContentsLike = null; public ArrayList ContentsBetween = null; public ArrayList ContentsIn = null; public Date LastSavedDateTime = null; public Date LastSavedDateTimeGreaterThanOrEqualTo = null; public Date LastSavedDateTimeGreaterThan = null; public Date LastSavedDateTimeLessThan = null; public Date LastSavedDateTimeLessThanOrEqualTo = null; public Date LastSavedDateTimeNotEqualTo = null; public ArrayList LastSavedDateTimeBetween = null; public ArrayList LastSavedDateTimeIn = null; public String getRecID() { return RecID; } public RA_RequestMainCustomValuesQuery setRecID(String value) { this.RecID = value; return this; } public String getRecIDStartsWith() { return RecIDStartsWith; } public RA_RequestMainCustomValuesQuery setRecIDStartsWith(String value) { this.RecIDStartsWith = value; return this; } public String getRecIDEndsWith() { return RecIDEndsWith; } public RA_RequestMainCustomValuesQuery setRecIDEndsWith(String value) { this.RecIDEndsWith = value; return this; } public String getRecIDContains() { return RecIDContains; } public RA_RequestMainCustomValuesQuery setRecIDContains(String value) { this.RecIDContains = value; return this; } public String getRecIDLike() { return RecIDLike; } public RA_RequestMainCustomValuesQuery setRecIDLike(String value) { this.RecIDLike = value; return this; } public ArrayList getRecIDBetween() { return RecIDBetween; } public RA_RequestMainCustomValuesQuery setRecIDBetween(ArrayList value) { this.RecIDBetween = value; return this; } public ArrayList getRecIDIn() { return RecIDIn; } public RA_RequestMainCustomValuesQuery setRecIDIn(ArrayList value) { this.RecIDIn = value; return this; } public String getRaRequestMainRecID() { return RA_RequestMain_RecID; } public RA_RequestMainCustomValuesQuery setRaRequestMainRecID(String value) { this.RA_RequestMain_RecID = value; return this; } public String getRaRequestMainRecIDStartsWith() { return RA_RequestMain_RecIDStartsWith; } public RA_RequestMainCustomValuesQuery setRaRequestMainRecIDStartsWith(String value) { this.RA_RequestMain_RecIDStartsWith = value; return this; } public String getRaRequestMainRecIDEndsWith() { return RA_RequestMain_RecIDEndsWith; } public RA_RequestMainCustomValuesQuery setRaRequestMainRecIDEndsWith(String value) { this.RA_RequestMain_RecIDEndsWith = value; return this; } public String getRaRequestMainRecIDContains() { return RA_RequestMain_RecIDContains; } public RA_RequestMainCustomValuesQuery setRaRequestMainRecIDContains(String value) { this.RA_RequestMain_RecIDContains = value; return this; } public String getRaRequestMainRecIDLike() { return RA_RequestMain_RecIDLike; } public RA_RequestMainCustomValuesQuery setRaRequestMainRecIDLike(String value) { this.RA_RequestMain_RecIDLike = value; return this; } public ArrayList getRaRequestMainRecIDBetween() { return RA_RequestMain_RecIDBetween; } public RA_RequestMainCustomValuesQuery setRaRequestMainRecIDBetween(ArrayList value) { this.RA_RequestMain_RecIDBetween = value; return this; } public ArrayList getRaRequestMainRecIDIn() { return RA_RequestMain_RecIDIn; } public RA_RequestMainCustomValuesQuery setRaRequestMainRecIDIn(ArrayList value) { this.RA_RequestMain_RecIDIn = value; return this; } public String getRaRequestMainCustomFieldsRecID() { return RA_RequestMainCustomFields_RecID; } public RA_RequestMainCustomValuesQuery setRaRequestMainCustomFieldsRecID(String value) { this.RA_RequestMainCustomFields_RecID = value; return this; } public String getRaRequestMainCustomFieldsRecIDStartsWith() { return RA_RequestMainCustomFields_RecIDStartsWith; } public RA_RequestMainCustomValuesQuery setRaRequestMainCustomFieldsRecIDStartsWith(String value) { this.RA_RequestMainCustomFields_RecIDStartsWith = value; return this; } public String getRaRequestMainCustomFieldsRecIDEndsWith() { return RA_RequestMainCustomFields_RecIDEndsWith; } public RA_RequestMainCustomValuesQuery setRaRequestMainCustomFieldsRecIDEndsWith(String value) { this.RA_RequestMainCustomFields_RecIDEndsWith = value; return this; } public String getRaRequestMainCustomFieldsRecIDContains() { return RA_RequestMainCustomFields_RecIDContains; } public RA_RequestMainCustomValuesQuery setRaRequestMainCustomFieldsRecIDContains(String value) { this.RA_RequestMainCustomFields_RecIDContains = value; return this; } public String getRaRequestMainCustomFieldsRecIDLike() { return RA_RequestMainCustomFields_RecIDLike; } public RA_RequestMainCustomValuesQuery setRaRequestMainCustomFieldsRecIDLike(String value) { this.RA_RequestMainCustomFields_RecIDLike = value; return this; } public ArrayList getRaRequestMainCustomFieldsRecIDBetween() { return RA_RequestMainCustomFields_RecIDBetween; } public RA_RequestMainCustomValuesQuery setRaRequestMainCustomFieldsRecIDBetween(ArrayList value) { this.RA_RequestMainCustomFields_RecIDBetween = value; return this; } public ArrayList getRaRequestMainCustomFieldsRecIDIn() { return RA_RequestMainCustomFields_RecIDIn; } public RA_RequestMainCustomValuesQuery setRaRequestMainCustomFieldsRecIDIn(ArrayList value) { this.RA_RequestMainCustomFields_RecIDIn = value; return this; } public String getContents() { return Contents; } public RA_RequestMainCustomValuesQuery setContents(String value) { this.Contents = value; return this; } public String getContentsStartsWith() { return ContentsStartsWith; } public RA_RequestMainCustomValuesQuery setContentsStartsWith(String value) { this.ContentsStartsWith = value; return this; } public String getContentsEndsWith() { return ContentsEndsWith; } public RA_RequestMainCustomValuesQuery setContentsEndsWith(String value) { this.ContentsEndsWith = value; return this; } public String getContentsContains() { return ContentsContains; } public RA_RequestMainCustomValuesQuery setContentsContains(String value) { this.ContentsContains = value; return this; } public String getContentsLike() { return ContentsLike; } public RA_RequestMainCustomValuesQuery setContentsLike(String value) { this.ContentsLike = value; return this; } public ArrayList getContentsBetween() { return ContentsBetween; } public RA_RequestMainCustomValuesQuery setContentsBetween(ArrayList value) { this.ContentsBetween = value; return this; } public ArrayList getContentsIn() { return ContentsIn; } public RA_RequestMainCustomValuesQuery setContentsIn(ArrayList value) { this.ContentsIn = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public RA_RequestMainCustomValuesQuery setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getLastSavedDateTimeGreaterThanOrEqualTo() { return LastSavedDateTimeGreaterThanOrEqualTo; } public RA_RequestMainCustomValuesQuery setLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.LastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeGreaterThan() { return LastSavedDateTimeGreaterThan; } public RA_RequestMainCustomValuesQuery setLastSavedDateTimeGreaterThan(Date value) { this.LastSavedDateTimeGreaterThan = value; return this; } public Date getLastSavedDateTimeLessThan() { return LastSavedDateTimeLessThan; } public RA_RequestMainCustomValuesQuery setLastSavedDateTimeLessThan(Date value) { this.LastSavedDateTimeLessThan = value; return this; } public Date getLastSavedDateTimeLessThanOrEqualTo() { return LastSavedDateTimeLessThanOrEqualTo; } public RA_RequestMainCustomValuesQuery setLastSavedDateTimeLessThanOrEqualTo(Date value) { this.LastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeNotEqualTo() { return LastSavedDateTimeNotEqualTo; } public RA_RequestMainCustomValuesQuery setLastSavedDateTimeNotEqualTo(Date value) { this.LastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getLastSavedDateTimeBetween() { return LastSavedDateTimeBetween; } public RA_RequestMainCustomValuesQuery setLastSavedDateTimeBetween(ArrayList value) { this.LastSavedDateTimeBetween = value; return this; } public ArrayList getLastSavedDateTimeIn() { return LastSavedDateTimeIn; } public RA_RequestMainCustomValuesQuery setLastSavedDateTimeIn(ArrayList value) { this.LastSavedDateTimeIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class RA_RequestNotesQuery extends QueryDb implements IReturn> { public String RecID = null; public String RecIDStartsWith = null; public String RecIDEndsWith = null; public String RecIDContains = null; public String RecIDLike = null; public ArrayList RecIDBetween = null; public ArrayList RecIDIn = null; public String RA_RequestMain_RecID = null; public String RA_RequestMain_RecIDStartsWith = null; public String RA_RequestMain_RecIDEndsWith = null; public String RA_RequestMain_RecIDContains = null; public String RA_RequestMain_RecIDLike = null; public ArrayList RA_RequestMain_RecIDBetween = null; public ArrayList RA_RequestMain_RecIDIn = null; public String NoteTypeID = null; public String NoteTypeIDStartsWith = null; public String NoteTypeIDEndsWith = null; public String NoteTypeIDContains = null; public String NoteTypeIDLike = null; public ArrayList NoteTypeIDBetween = null; public ArrayList NoteTypeIDIn = null; public Date LastSavedDateTime = null; public Date LastSavedDateTimeGreaterThanOrEqualTo = null; public Date LastSavedDateTimeGreaterThan = null; public Date LastSavedDateTimeLessThan = null; public Date LastSavedDateTimeLessThanOrEqualTo = null; public Date LastSavedDateTimeNotEqualTo = null; public ArrayList LastSavedDateTimeBetween = null; public ArrayList LastSavedDateTimeIn = null; public String LastSavedByStaffID = null; public String LastSavedByStaffIDStartsWith = null; public String LastSavedByStaffIDEndsWith = null; public String LastSavedByStaffIDContains = null; public String LastSavedByStaffIDLike = null; public ArrayList LastSavedByStaffIDBetween = null; public ArrayList LastSavedByStaffIDIn = null; public String NoteText = null; public String NoteTextStartsWith = null; public String NoteTextEndsWith = null; public String NoteTextContains = null; public String NoteTextLike = null; public ArrayList NoteTextBetween = null; public ArrayList NoteTextIn = null; public Integer ItemNo = null; public Integer ItemNoGreaterThanOrEqualTo = null; public Integer ItemNoGreaterThan = null; public Integer ItemNoLessThan = null; public Integer ItemNoLessThanOrEqualTo = null; public Integer ItemNoNotEqualTo = null; public ArrayList ItemNoBetween = null; public ArrayList ItemNoIn = null; public String getRecID() { return RecID; } public RA_RequestNotesQuery setRecID(String value) { this.RecID = value; return this; } public String getRecIDStartsWith() { return RecIDStartsWith; } public RA_RequestNotesQuery setRecIDStartsWith(String value) { this.RecIDStartsWith = value; return this; } public String getRecIDEndsWith() { return RecIDEndsWith; } public RA_RequestNotesQuery setRecIDEndsWith(String value) { this.RecIDEndsWith = value; return this; } public String getRecIDContains() { return RecIDContains; } public RA_RequestNotesQuery setRecIDContains(String value) { this.RecIDContains = value; return this; } public String getRecIDLike() { return RecIDLike; } public RA_RequestNotesQuery setRecIDLike(String value) { this.RecIDLike = value; return this; } public ArrayList getRecIDBetween() { return RecIDBetween; } public RA_RequestNotesQuery setRecIDBetween(ArrayList value) { this.RecIDBetween = value; return this; } public ArrayList getRecIDIn() { return RecIDIn; } public RA_RequestNotesQuery setRecIDIn(ArrayList value) { this.RecIDIn = value; return this; } public String getRaRequestMainRecID() { return RA_RequestMain_RecID; } public RA_RequestNotesQuery setRaRequestMainRecID(String value) { this.RA_RequestMain_RecID = value; return this; } public String getRaRequestMainRecIDStartsWith() { return RA_RequestMain_RecIDStartsWith; } public RA_RequestNotesQuery setRaRequestMainRecIDStartsWith(String value) { this.RA_RequestMain_RecIDStartsWith = value; return this; } public String getRaRequestMainRecIDEndsWith() { return RA_RequestMain_RecIDEndsWith; } public RA_RequestNotesQuery setRaRequestMainRecIDEndsWith(String value) { this.RA_RequestMain_RecIDEndsWith = value; return this; } public String getRaRequestMainRecIDContains() { return RA_RequestMain_RecIDContains; } public RA_RequestNotesQuery setRaRequestMainRecIDContains(String value) { this.RA_RequestMain_RecIDContains = value; return this; } public String getRaRequestMainRecIDLike() { return RA_RequestMain_RecIDLike; } public RA_RequestNotesQuery setRaRequestMainRecIDLike(String value) { this.RA_RequestMain_RecIDLike = value; return this; } public ArrayList getRaRequestMainRecIDBetween() { return RA_RequestMain_RecIDBetween; } public RA_RequestNotesQuery setRaRequestMainRecIDBetween(ArrayList value) { this.RA_RequestMain_RecIDBetween = value; return this; } public ArrayList getRaRequestMainRecIDIn() { return RA_RequestMain_RecIDIn; } public RA_RequestNotesQuery setRaRequestMainRecIDIn(ArrayList value) { this.RA_RequestMain_RecIDIn = value; return this; } public String getNoteTypeID() { return NoteTypeID; } public RA_RequestNotesQuery setNoteTypeID(String value) { this.NoteTypeID = value; return this; } public String getNoteTypeIDStartsWith() { return NoteTypeIDStartsWith; } public RA_RequestNotesQuery setNoteTypeIDStartsWith(String value) { this.NoteTypeIDStartsWith = value; return this; } public String getNoteTypeIDEndsWith() { return NoteTypeIDEndsWith; } public RA_RequestNotesQuery setNoteTypeIDEndsWith(String value) { this.NoteTypeIDEndsWith = value; return this; } public String getNoteTypeIDContains() { return NoteTypeIDContains; } public RA_RequestNotesQuery setNoteTypeIDContains(String value) { this.NoteTypeIDContains = value; return this; } public String getNoteTypeIDLike() { return NoteTypeIDLike; } public RA_RequestNotesQuery setNoteTypeIDLike(String value) { this.NoteTypeIDLike = value; return this; } public ArrayList getNoteTypeIDBetween() { return NoteTypeIDBetween; } public RA_RequestNotesQuery setNoteTypeIDBetween(ArrayList value) { this.NoteTypeIDBetween = value; return this; } public ArrayList getNoteTypeIDIn() { return NoteTypeIDIn; } public RA_RequestNotesQuery setNoteTypeIDIn(ArrayList value) { this.NoteTypeIDIn = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public RA_RequestNotesQuery setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getLastSavedDateTimeGreaterThanOrEqualTo() { return LastSavedDateTimeGreaterThanOrEqualTo; } public RA_RequestNotesQuery setLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.LastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeGreaterThan() { return LastSavedDateTimeGreaterThan; } public RA_RequestNotesQuery setLastSavedDateTimeGreaterThan(Date value) { this.LastSavedDateTimeGreaterThan = value; return this; } public Date getLastSavedDateTimeLessThan() { return LastSavedDateTimeLessThan; } public RA_RequestNotesQuery setLastSavedDateTimeLessThan(Date value) { this.LastSavedDateTimeLessThan = value; return this; } public Date getLastSavedDateTimeLessThanOrEqualTo() { return LastSavedDateTimeLessThanOrEqualTo; } public RA_RequestNotesQuery setLastSavedDateTimeLessThanOrEqualTo(Date value) { this.LastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeNotEqualTo() { return LastSavedDateTimeNotEqualTo; } public RA_RequestNotesQuery setLastSavedDateTimeNotEqualTo(Date value) { this.LastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getLastSavedDateTimeBetween() { return LastSavedDateTimeBetween; } public RA_RequestNotesQuery setLastSavedDateTimeBetween(ArrayList value) { this.LastSavedDateTimeBetween = value; return this; } public ArrayList getLastSavedDateTimeIn() { return LastSavedDateTimeIn; } public RA_RequestNotesQuery setLastSavedDateTimeIn(ArrayList value) { this.LastSavedDateTimeIn = value; return this; } public String getLastSavedByStaffID() { return LastSavedByStaffID; } public RA_RequestNotesQuery setLastSavedByStaffID(String value) { this.LastSavedByStaffID = value; return this; } public String getLastSavedByStaffIDStartsWith() { return LastSavedByStaffIDStartsWith; } public RA_RequestNotesQuery setLastSavedByStaffIDStartsWith(String value) { this.LastSavedByStaffIDStartsWith = value; return this; } public String getLastSavedByStaffIDEndsWith() { return LastSavedByStaffIDEndsWith; } public RA_RequestNotesQuery setLastSavedByStaffIDEndsWith(String value) { this.LastSavedByStaffIDEndsWith = value; return this; } public String getLastSavedByStaffIDContains() { return LastSavedByStaffIDContains; } public RA_RequestNotesQuery setLastSavedByStaffIDContains(String value) { this.LastSavedByStaffIDContains = value; return this; } public String getLastSavedByStaffIDLike() { return LastSavedByStaffIDLike; } public RA_RequestNotesQuery setLastSavedByStaffIDLike(String value) { this.LastSavedByStaffIDLike = value; return this; } public ArrayList getLastSavedByStaffIDBetween() { return LastSavedByStaffIDBetween; } public RA_RequestNotesQuery setLastSavedByStaffIDBetween(ArrayList value) { this.LastSavedByStaffIDBetween = value; return this; } public ArrayList getLastSavedByStaffIDIn() { return LastSavedByStaffIDIn; } public RA_RequestNotesQuery setLastSavedByStaffIDIn(ArrayList value) { this.LastSavedByStaffIDIn = value; return this; } public String getNoteText() { return NoteText; } public RA_RequestNotesQuery setNoteText(String value) { this.NoteText = value; return this; } public String getNoteTextStartsWith() { return NoteTextStartsWith; } public RA_RequestNotesQuery setNoteTextStartsWith(String value) { this.NoteTextStartsWith = value; return this; } public String getNoteTextEndsWith() { return NoteTextEndsWith; } public RA_RequestNotesQuery setNoteTextEndsWith(String value) { this.NoteTextEndsWith = value; return this; } public String getNoteTextContains() { return NoteTextContains; } public RA_RequestNotesQuery setNoteTextContains(String value) { this.NoteTextContains = value; return this; } public String getNoteTextLike() { return NoteTextLike; } public RA_RequestNotesQuery setNoteTextLike(String value) { this.NoteTextLike = value; return this; } public ArrayList getNoteTextBetween() { return NoteTextBetween; } public RA_RequestNotesQuery setNoteTextBetween(ArrayList value) { this.NoteTextBetween = value; return this; } public ArrayList getNoteTextIn() { return NoteTextIn; } public RA_RequestNotesQuery setNoteTextIn(ArrayList value) { this.NoteTextIn = value; return this; } public Integer getItemNo() { return ItemNo; } public RA_RequestNotesQuery setItemNo(Integer value) { this.ItemNo = value; return this; } public Integer getItemNoGreaterThanOrEqualTo() { return ItemNoGreaterThanOrEqualTo; } public RA_RequestNotesQuery setItemNoGreaterThanOrEqualTo(Integer value) { this.ItemNoGreaterThanOrEqualTo = value; return this; } public Integer getItemNoGreaterThan() { return ItemNoGreaterThan; } public RA_RequestNotesQuery setItemNoGreaterThan(Integer value) { this.ItemNoGreaterThan = value; return this; } public Integer getItemNoLessThan() { return ItemNoLessThan; } public RA_RequestNotesQuery setItemNoLessThan(Integer value) { this.ItemNoLessThan = value; return this; } public Integer getItemNoLessThanOrEqualTo() { return ItemNoLessThanOrEqualTo; } public RA_RequestNotesQuery setItemNoLessThanOrEqualTo(Integer value) { this.ItemNoLessThanOrEqualTo = value; return this; } public Integer getItemNoNotEqualTo() { return ItemNoNotEqualTo; } public RA_RequestNotesQuery setItemNoNotEqualTo(Integer value) { this.ItemNoNotEqualTo = value; return this; } public ArrayList getItemNoBetween() { return ItemNoBetween; } public RA_RequestNotesQuery setItemNoBetween(ArrayList value) { this.ItemNoBetween = value; return this; } public ArrayList getItemNoIn() { return ItemNoIn; } public RA_RequestNotesQuery setItemNoIn(ArrayList value) { this.ItemNoIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class RA_ReturnCodesQuery extends QueryDb implements IReturn> { public String RecID = null; public String RecIDStartsWith = null; public String RecIDEndsWith = null; public String RecIDContains = null; public String RecIDLike = null; public ArrayList RecIDBetween = null; public ArrayList RecIDIn = null; public String ReturnCode = null; public String ReturnCodeStartsWith = null; public String ReturnCodeEndsWith = null; public String ReturnCodeContains = null; public String ReturnCodeLike = null; public ArrayList ReturnCodeBetween = null; public ArrayList ReturnCodeIn = null; public String Description = null; public String DescriptionStartsWith = null; public String DescriptionEndsWith = null; public String DescriptionContains = null; public String DescriptionLike = null; public ArrayList DescriptionBetween = null; public ArrayList DescriptionIn = null; public Boolean IsDefault = null; public Short ReturnType = null; public Short ReturnTypeGreaterThanOrEqualTo = null; public Short ReturnTypeGreaterThan = null; public Short ReturnTypeLessThan = null; public Short ReturnTypeLessThanOrEqualTo = null; public Short ReturnTypeNotEqualTo = null; public ArrayList ReturnTypeBetween = null; public ArrayList ReturnTypeIn = null; public Date LastSavedDateTime = null; public Date LastSavedDateTimeGreaterThanOrEqualTo = null; public Date LastSavedDateTimeGreaterThan = null; public Date LastSavedDateTimeLessThan = null; public Date LastSavedDateTimeLessThanOrEqualTo = null; public Date LastSavedDateTimeNotEqualTo = null; public ArrayList LastSavedDateTimeBetween = null; public ArrayList LastSavedDateTimeIn = null; public Integer ItemNo = null; public Integer ItemNoGreaterThanOrEqualTo = null; public Integer ItemNoGreaterThan = null; public Integer ItemNoLessThan = null; public Integer ItemNoLessThanOrEqualTo = null; public Integer ItemNoNotEqualTo = null; public ArrayList ItemNoBetween = null; public ArrayList ItemNoIn = null; public ArrayList RowHash = null; public Boolean IsEnabled = null; public String getRecID() { return RecID; } public RA_ReturnCodesQuery setRecID(String value) { this.RecID = value; return this; } public String getRecIDStartsWith() { return RecIDStartsWith; } public RA_ReturnCodesQuery setRecIDStartsWith(String value) { this.RecIDStartsWith = value; return this; } public String getRecIDEndsWith() { return RecIDEndsWith; } public RA_ReturnCodesQuery setRecIDEndsWith(String value) { this.RecIDEndsWith = value; return this; } public String getRecIDContains() { return RecIDContains; } public RA_ReturnCodesQuery setRecIDContains(String value) { this.RecIDContains = value; return this; } public String getRecIDLike() { return RecIDLike; } public RA_ReturnCodesQuery setRecIDLike(String value) { this.RecIDLike = value; return this; } public ArrayList getRecIDBetween() { return RecIDBetween; } public RA_ReturnCodesQuery setRecIDBetween(ArrayList value) { this.RecIDBetween = value; return this; } public ArrayList getRecIDIn() { return RecIDIn; } public RA_ReturnCodesQuery setRecIDIn(ArrayList value) { this.RecIDIn = value; return this; } public String getReturnCode() { return ReturnCode; } public RA_ReturnCodesQuery setReturnCode(String value) { this.ReturnCode = value; return this; } public String getReturnCodeStartsWith() { return ReturnCodeStartsWith; } public RA_ReturnCodesQuery setReturnCodeStartsWith(String value) { this.ReturnCodeStartsWith = value; return this; } public String getReturnCodeEndsWith() { return ReturnCodeEndsWith; } public RA_ReturnCodesQuery setReturnCodeEndsWith(String value) { this.ReturnCodeEndsWith = value; return this; } public String getReturnCodeContains() { return ReturnCodeContains; } public RA_ReturnCodesQuery setReturnCodeContains(String value) { this.ReturnCodeContains = value; return this; } public String getReturnCodeLike() { return ReturnCodeLike; } public RA_ReturnCodesQuery setReturnCodeLike(String value) { this.ReturnCodeLike = value; return this; } public ArrayList getReturnCodeBetween() { return ReturnCodeBetween; } public RA_ReturnCodesQuery setReturnCodeBetween(ArrayList value) { this.ReturnCodeBetween = value; return this; } public ArrayList getReturnCodeIn() { return ReturnCodeIn; } public RA_ReturnCodesQuery setReturnCodeIn(ArrayList value) { this.ReturnCodeIn = value; return this; } public String getDescription() { return Description; } public RA_ReturnCodesQuery setDescription(String value) { this.Description = value; return this; } public String getDescriptionStartsWith() { return DescriptionStartsWith; } public RA_ReturnCodesQuery setDescriptionStartsWith(String value) { this.DescriptionStartsWith = value; return this; } public String getDescriptionEndsWith() { return DescriptionEndsWith; } public RA_ReturnCodesQuery setDescriptionEndsWith(String value) { this.DescriptionEndsWith = value; return this; } public String getDescriptionContains() { return DescriptionContains; } public RA_ReturnCodesQuery setDescriptionContains(String value) { this.DescriptionContains = value; return this; } public String getDescriptionLike() { return DescriptionLike; } public RA_ReturnCodesQuery setDescriptionLike(String value) { this.DescriptionLike = value; return this; } public ArrayList getDescriptionBetween() { return DescriptionBetween; } public RA_ReturnCodesQuery setDescriptionBetween(ArrayList value) { this.DescriptionBetween = value; return this; } public ArrayList getDescriptionIn() { return DescriptionIn; } public RA_ReturnCodesQuery setDescriptionIn(ArrayList value) { this.DescriptionIn = value; return this; } public Boolean getIsDefault() { return IsDefault; } public RA_ReturnCodesQuery setIsDefault(Boolean value) { this.IsDefault = value; return this; } public Short getReturnType() { return ReturnType; } public RA_ReturnCodesQuery setReturnType(Short value) { this.ReturnType = value; return this; } public Short getReturnTypeGreaterThanOrEqualTo() { return ReturnTypeGreaterThanOrEqualTo; } public RA_ReturnCodesQuery setReturnTypeGreaterThanOrEqualTo(Short value) { this.ReturnTypeGreaterThanOrEqualTo = value; return this; } public Short getReturnTypeGreaterThan() { return ReturnTypeGreaterThan; } public RA_ReturnCodesQuery setReturnTypeGreaterThan(Short value) { this.ReturnTypeGreaterThan = value; return this; } public Short getReturnTypeLessThan() { return ReturnTypeLessThan; } public RA_ReturnCodesQuery setReturnTypeLessThan(Short value) { this.ReturnTypeLessThan = value; return this; } public Short getReturnTypeLessThanOrEqualTo() { return ReturnTypeLessThanOrEqualTo; } public RA_ReturnCodesQuery setReturnTypeLessThanOrEqualTo(Short value) { this.ReturnTypeLessThanOrEqualTo = value; return this; } public Short getReturnTypeNotEqualTo() { return ReturnTypeNotEqualTo; } public RA_ReturnCodesQuery setReturnTypeNotEqualTo(Short value) { this.ReturnTypeNotEqualTo = value; return this; } public ArrayList getReturnTypeBetween() { return ReturnTypeBetween; } public RA_ReturnCodesQuery setReturnTypeBetween(ArrayList value) { this.ReturnTypeBetween = value; return this; } public ArrayList getReturnTypeIn() { return ReturnTypeIn; } public RA_ReturnCodesQuery setReturnTypeIn(ArrayList value) { this.ReturnTypeIn = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public RA_ReturnCodesQuery setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getLastSavedDateTimeGreaterThanOrEqualTo() { return LastSavedDateTimeGreaterThanOrEqualTo; } public RA_ReturnCodesQuery setLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.LastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeGreaterThan() { return LastSavedDateTimeGreaterThan; } public RA_ReturnCodesQuery setLastSavedDateTimeGreaterThan(Date value) { this.LastSavedDateTimeGreaterThan = value; return this; } public Date getLastSavedDateTimeLessThan() { return LastSavedDateTimeLessThan; } public RA_ReturnCodesQuery setLastSavedDateTimeLessThan(Date value) { this.LastSavedDateTimeLessThan = value; return this; } public Date getLastSavedDateTimeLessThanOrEqualTo() { return LastSavedDateTimeLessThanOrEqualTo; } public RA_ReturnCodesQuery setLastSavedDateTimeLessThanOrEqualTo(Date value) { this.LastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeNotEqualTo() { return LastSavedDateTimeNotEqualTo; } public RA_ReturnCodesQuery setLastSavedDateTimeNotEqualTo(Date value) { this.LastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getLastSavedDateTimeBetween() { return LastSavedDateTimeBetween; } public RA_ReturnCodesQuery setLastSavedDateTimeBetween(ArrayList value) { this.LastSavedDateTimeBetween = value; return this; } public ArrayList getLastSavedDateTimeIn() { return LastSavedDateTimeIn; } public RA_ReturnCodesQuery setLastSavedDateTimeIn(ArrayList value) { this.LastSavedDateTimeIn = value; return this; } public Integer getItemNo() { return ItemNo; } public RA_ReturnCodesQuery setItemNo(Integer value) { this.ItemNo = value; return this; } public Integer getItemNoGreaterThanOrEqualTo() { return ItemNoGreaterThanOrEqualTo; } public RA_ReturnCodesQuery setItemNoGreaterThanOrEqualTo(Integer value) { this.ItemNoGreaterThanOrEqualTo = value; return this; } public Integer getItemNoGreaterThan() { return ItemNoGreaterThan; } public RA_ReturnCodesQuery setItemNoGreaterThan(Integer value) { this.ItemNoGreaterThan = value; return this; } public Integer getItemNoLessThan() { return ItemNoLessThan; } public RA_ReturnCodesQuery setItemNoLessThan(Integer value) { this.ItemNoLessThan = value; return this; } public Integer getItemNoLessThanOrEqualTo() { return ItemNoLessThanOrEqualTo; } public RA_ReturnCodesQuery setItemNoLessThanOrEqualTo(Integer value) { this.ItemNoLessThanOrEqualTo = value; return this; } public Integer getItemNoNotEqualTo() { return ItemNoNotEqualTo; } public RA_ReturnCodesQuery setItemNoNotEqualTo(Integer value) { this.ItemNoNotEqualTo = value; return this; } public ArrayList getItemNoBetween() { return ItemNoBetween; } public RA_ReturnCodesQuery setItemNoBetween(ArrayList value) { this.ItemNoBetween = value; return this; } public ArrayList getItemNoIn() { return ItemNoIn; } public RA_ReturnCodesQuery setItemNoIn(ArrayList value) { this.ItemNoIn = value; return this; } public ArrayList getRowHash() { return RowHash; } public RA_ReturnCodesQuery setRowHash(ArrayList value) { this.RowHash = value; return this; } public Boolean getIsEnabled() { return IsEnabled; } public RA_ReturnCodesQuery setIsEnabled(Boolean value) { this.IsEnabled = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class RA_SelectedShipLinesQuery extends QueryDb implements IReturn> { public String RecID = null; public String RecIDStartsWith = null; public String RecIDEndsWith = null; public String RecIDContains = null; public String RecIDLike = null; public ArrayList RecIDBetween = null; public ArrayList RecIDIn = null; public String CreditID = null; public String CreditIDStartsWith = null; public String CreditIDEndsWith = null; public String CreditIDContains = null; public String CreditIDLike = null; public ArrayList CreditIDBetween = null; public ArrayList CreditIDIn = null; public String CreditLineID = null; public String CreditLineIDStartsWith = null; public String CreditLineIDEndsWith = null; public String CreditLineIDContains = null; public String CreditLineIDLike = null; public ArrayList CreditLineIDBetween = null; public ArrayList CreditLineIDIn = null; public String ShipID = null; public String ShipIDStartsWith = null; public String ShipIDEndsWith = null; public String ShipIDContains = null; public String ShipIDLike = null; public ArrayList ShipIDBetween = null; public ArrayList ShipIDIn = null; public String ShipLineID = null; public String ShipLineIDStartsWith = null; public String ShipLineIDEndsWith = null; public String ShipLineIDContains = null; public String ShipLineIDLike = null; public ArrayList ShipLineIDBetween = null; public ArrayList ShipLineIDIn = null; public String ShipLineDetailID = null; public String ShipLineDetailIDStartsWith = null; public String ShipLineDetailIDEndsWith = null; public String ShipLineDetailIDContains = null; public String ShipLineDetailIDLike = null; public ArrayList ShipLineDetailIDBetween = null; public ArrayList ShipLineDetailIDIn = null; public String InvID = null; public String InvIDStartsWith = null; public String InvIDEndsWith = null; public String InvIDContains = null; public String InvIDLike = null; public ArrayList InvIDBetween = null; public ArrayList InvIDIn = null; public BigDecimal Quantity = null; public BigDecimal QuantityGreaterThanOrEqualTo = null; public BigDecimal QuantityGreaterThan = null; public BigDecimal QuantityLessThan = null; public BigDecimal QuantityLessThanOrEqualTo = null; public BigDecimal QuantityNotEqualTo = null; public ArrayList QuantityBetween = null; public ArrayList QuantityIn = null; public String SOHID = null; public String SOHIDStartsWith = null; public String SOHIDEndsWith = null; public String SOHIDContains = null; public String SOHIDLike = null; public ArrayList SOHIDBetween = null; public ArrayList SOHIDIn = null; public String getRecID() { return RecID; } public RA_SelectedShipLinesQuery setRecID(String value) { this.RecID = value; return this; } public String getRecIDStartsWith() { return RecIDStartsWith; } public RA_SelectedShipLinesQuery setRecIDStartsWith(String value) { this.RecIDStartsWith = value; return this; } public String getRecIDEndsWith() { return RecIDEndsWith; } public RA_SelectedShipLinesQuery setRecIDEndsWith(String value) { this.RecIDEndsWith = value; return this; } public String getRecIDContains() { return RecIDContains; } public RA_SelectedShipLinesQuery setRecIDContains(String value) { this.RecIDContains = value; return this; } public String getRecIDLike() { return RecIDLike; } public RA_SelectedShipLinesQuery setRecIDLike(String value) { this.RecIDLike = value; return this; } public ArrayList getRecIDBetween() { return RecIDBetween; } public RA_SelectedShipLinesQuery setRecIDBetween(ArrayList value) { this.RecIDBetween = value; return this; } public ArrayList getRecIDIn() { return RecIDIn; } public RA_SelectedShipLinesQuery setRecIDIn(ArrayList value) { this.RecIDIn = value; return this; } public String getCreditID() { return CreditID; } public RA_SelectedShipLinesQuery setCreditID(String value) { this.CreditID = value; return this; } public String getCreditIDStartsWith() { return CreditIDStartsWith; } public RA_SelectedShipLinesQuery setCreditIDStartsWith(String value) { this.CreditIDStartsWith = value; return this; } public String getCreditIDEndsWith() { return CreditIDEndsWith; } public RA_SelectedShipLinesQuery setCreditIDEndsWith(String value) { this.CreditIDEndsWith = value; return this; } public String getCreditIDContains() { return CreditIDContains; } public RA_SelectedShipLinesQuery setCreditIDContains(String value) { this.CreditIDContains = value; return this; } public String getCreditIDLike() { return CreditIDLike; } public RA_SelectedShipLinesQuery setCreditIDLike(String value) { this.CreditIDLike = value; return this; } public ArrayList getCreditIDBetween() { return CreditIDBetween; } public RA_SelectedShipLinesQuery setCreditIDBetween(ArrayList value) { this.CreditIDBetween = value; return this; } public ArrayList getCreditIDIn() { return CreditIDIn; } public RA_SelectedShipLinesQuery setCreditIDIn(ArrayList value) { this.CreditIDIn = value; return this; } public String getCreditLineID() { return CreditLineID; } public RA_SelectedShipLinesQuery setCreditLineID(String value) { this.CreditLineID = value; return this; } public String getCreditLineIDStartsWith() { return CreditLineIDStartsWith; } public RA_SelectedShipLinesQuery setCreditLineIDStartsWith(String value) { this.CreditLineIDStartsWith = value; return this; } public String getCreditLineIDEndsWith() { return CreditLineIDEndsWith; } public RA_SelectedShipLinesQuery setCreditLineIDEndsWith(String value) { this.CreditLineIDEndsWith = value; return this; } public String getCreditLineIDContains() { return CreditLineIDContains; } public RA_SelectedShipLinesQuery setCreditLineIDContains(String value) { this.CreditLineIDContains = value; return this; } public String getCreditLineIDLike() { return CreditLineIDLike; } public RA_SelectedShipLinesQuery setCreditLineIDLike(String value) { this.CreditLineIDLike = value; return this; } public ArrayList getCreditLineIDBetween() { return CreditLineIDBetween; } public RA_SelectedShipLinesQuery setCreditLineIDBetween(ArrayList value) { this.CreditLineIDBetween = value; return this; } public ArrayList getCreditLineIDIn() { return CreditLineIDIn; } public RA_SelectedShipLinesQuery setCreditLineIDIn(ArrayList value) { this.CreditLineIDIn = value; return this; } public String getShipID() { return ShipID; } public RA_SelectedShipLinesQuery setShipID(String value) { this.ShipID = value; return this; } public String getShipIDStartsWith() { return ShipIDStartsWith; } public RA_SelectedShipLinesQuery setShipIDStartsWith(String value) { this.ShipIDStartsWith = value; return this; } public String getShipIDEndsWith() { return ShipIDEndsWith; } public RA_SelectedShipLinesQuery setShipIDEndsWith(String value) { this.ShipIDEndsWith = value; return this; } public String getShipIDContains() { return ShipIDContains; } public RA_SelectedShipLinesQuery setShipIDContains(String value) { this.ShipIDContains = value; return this; } public String getShipIDLike() { return ShipIDLike; } public RA_SelectedShipLinesQuery setShipIDLike(String value) { this.ShipIDLike = value; return this; } public ArrayList getShipIDBetween() { return ShipIDBetween; } public RA_SelectedShipLinesQuery setShipIDBetween(ArrayList value) { this.ShipIDBetween = value; return this; } public ArrayList getShipIDIn() { return ShipIDIn; } public RA_SelectedShipLinesQuery setShipIDIn(ArrayList value) { this.ShipIDIn = value; return this; } public String getShipLineID() { return ShipLineID; } public RA_SelectedShipLinesQuery setShipLineID(String value) { this.ShipLineID = value; return this; } public String getShipLineIDStartsWith() { return ShipLineIDStartsWith; } public RA_SelectedShipLinesQuery setShipLineIDStartsWith(String value) { this.ShipLineIDStartsWith = value; return this; } public String getShipLineIDEndsWith() { return ShipLineIDEndsWith; } public RA_SelectedShipLinesQuery setShipLineIDEndsWith(String value) { this.ShipLineIDEndsWith = value; return this; } public String getShipLineIDContains() { return ShipLineIDContains; } public RA_SelectedShipLinesQuery setShipLineIDContains(String value) { this.ShipLineIDContains = value; return this; } public String getShipLineIDLike() { return ShipLineIDLike; } public RA_SelectedShipLinesQuery setShipLineIDLike(String value) { this.ShipLineIDLike = value; return this; } public ArrayList getShipLineIDBetween() { return ShipLineIDBetween; } public RA_SelectedShipLinesQuery setShipLineIDBetween(ArrayList value) { this.ShipLineIDBetween = value; return this; } public ArrayList getShipLineIDIn() { return ShipLineIDIn; } public RA_SelectedShipLinesQuery setShipLineIDIn(ArrayList value) { this.ShipLineIDIn = value; return this; } public String getShipLineDetailID() { return ShipLineDetailID; } public RA_SelectedShipLinesQuery setShipLineDetailID(String value) { this.ShipLineDetailID = value; return this; } public String getShipLineDetailIDStartsWith() { return ShipLineDetailIDStartsWith; } public RA_SelectedShipLinesQuery setShipLineDetailIDStartsWith(String value) { this.ShipLineDetailIDStartsWith = value; return this; } public String getShipLineDetailIDEndsWith() { return ShipLineDetailIDEndsWith; } public RA_SelectedShipLinesQuery setShipLineDetailIDEndsWith(String value) { this.ShipLineDetailIDEndsWith = value; return this; } public String getShipLineDetailIDContains() { return ShipLineDetailIDContains; } public RA_SelectedShipLinesQuery setShipLineDetailIDContains(String value) { this.ShipLineDetailIDContains = value; return this; } public String getShipLineDetailIDLike() { return ShipLineDetailIDLike; } public RA_SelectedShipLinesQuery setShipLineDetailIDLike(String value) { this.ShipLineDetailIDLike = value; return this; } public ArrayList getShipLineDetailIDBetween() { return ShipLineDetailIDBetween; } public RA_SelectedShipLinesQuery setShipLineDetailIDBetween(ArrayList value) { this.ShipLineDetailIDBetween = value; return this; } public ArrayList getShipLineDetailIDIn() { return ShipLineDetailIDIn; } public RA_SelectedShipLinesQuery setShipLineDetailIDIn(ArrayList value) { this.ShipLineDetailIDIn = value; return this; } public String getInvID() { return InvID; } public RA_SelectedShipLinesQuery setInvID(String value) { this.InvID = value; return this; } public String getInvIDStartsWith() { return InvIDStartsWith; } public RA_SelectedShipLinesQuery setInvIDStartsWith(String value) { this.InvIDStartsWith = value; return this; } public String getInvIDEndsWith() { return InvIDEndsWith; } public RA_SelectedShipLinesQuery setInvIDEndsWith(String value) { this.InvIDEndsWith = value; return this; } public String getInvIDContains() { return InvIDContains; } public RA_SelectedShipLinesQuery setInvIDContains(String value) { this.InvIDContains = value; return this; } public String getInvIDLike() { return InvIDLike; } public RA_SelectedShipLinesQuery setInvIDLike(String value) { this.InvIDLike = value; return this; } public ArrayList getInvIDBetween() { return InvIDBetween; } public RA_SelectedShipLinesQuery setInvIDBetween(ArrayList value) { this.InvIDBetween = value; return this; } public ArrayList getInvIDIn() { return InvIDIn; } public RA_SelectedShipLinesQuery setInvIDIn(ArrayList value) { this.InvIDIn = value; return this; } public BigDecimal getQuantity() { return Quantity; } public RA_SelectedShipLinesQuery setQuantity(BigDecimal value) { this.Quantity = value; return this; } public BigDecimal getQuantityGreaterThanOrEqualTo() { return QuantityGreaterThanOrEqualTo; } public RA_SelectedShipLinesQuery setQuantityGreaterThanOrEqualTo(BigDecimal value) { this.QuantityGreaterThanOrEqualTo = value; return this; } public BigDecimal getQuantityGreaterThan() { return QuantityGreaterThan; } public RA_SelectedShipLinesQuery setQuantityGreaterThan(BigDecimal value) { this.QuantityGreaterThan = value; return this; } public BigDecimal getQuantityLessThan() { return QuantityLessThan; } public RA_SelectedShipLinesQuery setQuantityLessThan(BigDecimal value) { this.QuantityLessThan = value; return this; } public BigDecimal getQuantityLessThanOrEqualTo() { return QuantityLessThanOrEqualTo; } public RA_SelectedShipLinesQuery setQuantityLessThanOrEqualTo(BigDecimal value) { this.QuantityLessThanOrEqualTo = value; return this; } public BigDecimal getQuantityNotEqualTo() { return QuantityNotEqualTo; } public RA_SelectedShipLinesQuery setQuantityNotEqualTo(BigDecimal value) { this.QuantityNotEqualTo = value; return this; } public ArrayList getQuantityBetween() { return QuantityBetween; } public RA_SelectedShipLinesQuery setQuantityBetween(ArrayList value) { this.QuantityBetween = value; return this; } public ArrayList getQuantityIn() { return QuantityIn; } public RA_SelectedShipLinesQuery setQuantityIn(ArrayList value) { this.QuantityIn = value; return this; } public String getSohid() { return SOHID; } public RA_SelectedShipLinesQuery setSohid(String value) { this.SOHID = value; return this; } public String getSohidStartsWith() { return SOHIDStartsWith; } public RA_SelectedShipLinesQuery setSohidStartsWith(String value) { this.SOHIDStartsWith = value; return this; } public String getSohidEndsWith() { return SOHIDEndsWith; } public RA_SelectedShipLinesQuery setSohidEndsWith(String value) { this.SOHIDEndsWith = value; return this; } public String getSohidContains() { return SOHIDContains; } public RA_SelectedShipLinesQuery setSohidContains(String value) { this.SOHIDContains = value; return this; } public String getSohidLike() { return SOHIDLike; } public RA_SelectedShipLinesQuery setSohidLike(String value) { this.SOHIDLike = value; return this; } public ArrayList getSohidBetween() { return SOHIDBetween; } public RA_SelectedShipLinesQuery setSohidBetween(ArrayList value) { this.SOHIDBetween = value; return this; } public ArrayList getSohidIn() { return SOHIDIn; } public RA_SelectedShipLinesQuery setSohidIn(ArrayList value) { this.SOHIDIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class RA_ShipDocumentsQuery extends QueryDb implements IReturn> { public String RecID = null; public String RecIDStartsWith = null; public String RecIDEndsWith = null; public String RecIDContains = null; public String RecIDLike = null; public ArrayList RecIDBetween = null; public ArrayList RecIDIn = null; public String RA_ShipMain_RecID = null; public String RA_ShipMain_RecIDStartsWith = null; public String RA_ShipMain_RecIDEndsWith = null; public String RA_ShipMain_RecIDContains = null; public String RA_ShipMain_RecIDLike = null; public ArrayList RA_ShipMain_RecIDBetween = null; public ArrayList RA_ShipMain_RecIDIn = null; public String DocumentTypeID = null; public String DocumentTypeIDStartsWith = null; public String DocumentTypeIDEndsWith = null; public String DocumentTypeIDContains = null; public String DocumentTypeIDLike = null; public ArrayList DocumentTypeIDBetween = null; public ArrayList DocumentTypeIDIn = null; public Date LastSavedDateTime = null; public Date LastSavedDateTimeGreaterThanOrEqualTo = null; public Date LastSavedDateTimeGreaterThan = null; public Date LastSavedDateTimeLessThan = null; public Date LastSavedDateTimeLessThanOrEqualTo = null; public Date LastSavedDateTimeNotEqualTo = null; public ArrayList LastSavedDateTimeBetween = null; public ArrayList LastSavedDateTimeIn = null; public String LastSavedByStaffID = null; public String LastSavedByStaffIDStartsWith = null; public String LastSavedByStaffIDEndsWith = null; public String LastSavedByStaffIDContains = null; public String LastSavedByStaffIDLike = null; public ArrayList LastSavedByStaffIDBetween = null; public ArrayList LastSavedByStaffIDIn = null; public ArrayList FileBinary = null; public String Description = null; public String DescriptionStartsWith = null; public String DescriptionEndsWith = null; public String DescriptionContains = null; public String DescriptionLike = null; public ArrayList DescriptionBetween = null; public ArrayList DescriptionIn = null; public String PhysicalFileName = null; public String PhysicalFileNameStartsWith = null; public String PhysicalFileNameEndsWith = null; public String PhysicalFileNameContains = null; public String PhysicalFileNameLike = null; public ArrayList PhysicalFileNameBetween = null; public ArrayList PhysicalFileNameIn = null; public Integer ItemNo = null; public Integer ItemNoGreaterThanOrEqualTo = null; public Integer ItemNoGreaterThan = null; public Integer ItemNoLessThan = null; public Integer ItemNoLessThanOrEqualTo = null; public Integer ItemNoNotEqualTo = null; public ArrayList ItemNoBetween = null; public ArrayList ItemNoIn = null; public String getRecID() { return RecID; } public RA_ShipDocumentsQuery setRecID(String value) { this.RecID = value; return this; } public String getRecIDStartsWith() { return RecIDStartsWith; } public RA_ShipDocumentsQuery setRecIDStartsWith(String value) { this.RecIDStartsWith = value; return this; } public String getRecIDEndsWith() { return RecIDEndsWith; } public RA_ShipDocumentsQuery setRecIDEndsWith(String value) { this.RecIDEndsWith = value; return this; } public String getRecIDContains() { return RecIDContains; } public RA_ShipDocumentsQuery setRecIDContains(String value) { this.RecIDContains = value; return this; } public String getRecIDLike() { return RecIDLike; } public RA_ShipDocumentsQuery setRecIDLike(String value) { this.RecIDLike = value; return this; } public ArrayList getRecIDBetween() { return RecIDBetween; } public RA_ShipDocumentsQuery setRecIDBetween(ArrayList value) { this.RecIDBetween = value; return this; } public ArrayList getRecIDIn() { return RecIDIn; } public RA_ShipDocumentsQuery setRecIDIn(ArrayList value) { this.RecIDIn = value; return this; } public String getRaShipMainRecID() { return RA_ShipMain_RecID; } public RA_ShipDocumentsQuery setRaShipMainRecID(String value) { this.RA_ShipMain_RecID = value; return this; } public String getRaShipMainRecIDStartsWith() { return RA_ShipMain_RecIDStartsWith; } public RA_ShipDocumentsQuery setRaShipMainRecIDStartsWith(String value) { this.RA_ShipMain_RecIDStartsWith = value; return this; } public String getRaShipMainRecIDEndsWith() { return RA_ShipMain_RecIDEndsWith; } public RA_ShipDocumentsQuery setRaShipMainRecIDEndsWith(String value) { this.RA_ShipMain_RecIDEndsWith = value; return this; } public String getRaShipMainRecIDContains() { return RA_ShipMain_RecIDContains; } public RA_ShipDocumentsQuery setRaShipMainRecIDContains(String value) { this.RA_ShipMain_RecIDContains = value; return this; } public String getRaShipMainRecIDLike() { return RA_ShipMain_RecIDLike; } public RA_ShipDocumentsQuery setRaShipMainRecIDLike(String value) { this.RA_ShipMain_RecIDLike = value; return this; } public ArrayList getRaShipMainRecIDBetween() { return RA_ShipMain_RecIDBetween; } public RA_ShipDocumentsQuery setRaShipMainRecIDBetween(ArrayList value) { this.RA_ShipMain_RecIDBetween = value; return this; } public ArrayList getRaShipMainRecIDIn() { return RA_ShipMain_RecIDIn; } public RA_ShipDocumentsQuery setRaShipMainRecIDIn(ArrayList value) { this.RA_ShipMain_RecIDIn = value; return this; } public String getDocumentTypeID() { return DocumentTypeID; } public RA_ShipDocumentsQuery setDocumentTypeID(String value) { this.DocumentTypeID = value; return this; } public String getDocumentTypeIDStartsWith() { return DocumentTypeIDStartsWith; } public RA_ShipDocumentsQuery setDocumentTypeIDStartsWith(String value) { this.DocumentTypeIDStartsWith = value; return this; } public String getDocumentTypeIDEndsWith() { return DocumentTypeIDEndsWith; } public RA_ShipDocumentsQuery setDocumentTypeIDEndsWith(String value) { this.DocumentTypeIDEndsWith = value; return this; } public String getDocumentTypeIDContains() { return DocumentTypeIDContains; } public RA_ShipDocumentsQuery setDocumentTypeIDContains(String value) { this.DocumentTypeIDContains = value; return this; } public String getDocumentTypeIDLike() { return DocumentTypeIDLike; } public RA_ShipDocumentsQuery setDocumentTypeIDLike(String value) { this.DocumentTypeIDLike = value; return this; } public ArrayList getDocumentTypeIDBetween() { return DocumentTypeIDBetween; } public RA_ShipDocumentsQuery setDocumentTypeIDBetween(ArrayList value) { this.DocumentTypeIDBetween = value; return this; } public ArrayList getDocumentTypeIDIn() { return DocumentTypeIDIn; } public RA_ShipDocumentsQuery setDocumentTypeIDIn(ArrayList value) { this.DocumentTypeIDIn = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public RA_ShipDocumentsQuery setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getLastSavedDateTimeGreaterThanOrEqualTo() { return LastSavedDateTimeGreaterThanOrEqualTo; } public RA_ShipDocumentsQuery setLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.LastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeGreaterThan() { return LastSavedDateTimeGreaterThan; } public RA_ShipDocumentsQuery setLastSavedDateTimeGreaterThan(Date value) { this.LastSavedDateTimeGreaterThan = value; return this; } public Date getLastSavedDateTimeLessThan() { return LastSavedDateTimeLessThan; } public RA_ShipDocumentsQuery setLastSavedDateTimeLessThan(Date value) { this.LastSavedDateTimeLessThan = value; return this; } public Date getLastSavedDateTimeLessThanOrEqualTo() { return LastSavedDateTimeLessThanOrEqualTo; } public RA_ShipDocumentsQuery setLastSavedDateTimeLessThanOrEqualTo(Date value) { this.LastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeNotEqualTo() { return LastSavedDateTimeNotEqualTo; } public RA_ShipDocumentsQuery setLastSavedDateTimeNotEqualTo(Date value) { this.LastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getLastSavedDateTimeBetween() { return LastSavedDateTimeBetween; } public RA_ShipDocumentsQuery setLastSavedDateTimeBetween(ArrayList value) { this.LastSavedDateTimeBetween = value; return this; } public ArrayList getLastSavedDateTimeIn() { return LastSavedDateTimeIn; } public RA_ShipDocumentsQuery setLastSavedDateTimeIn(ArrayList value) { this.LastSavedDateTimeIn = value; return this; } public String getLastSavedByStaffID() { return LastSavedByStaffID; } public RA_ShipDocumentsQuery setLastSavedByStaffID(String value) { this.LastSavedByStaffID = value; return this; } public String getLastSavedByStaffIDStartsWith() { return LastSavedByStaffIDStartsWith; } public RA_ShipDocumentsQuery setLastSavedByStaffIDStartsWith(String value) { this.LastSavedByStaffIDStartsWith = value; return this; } public String getLastSavedByStaffIDEndsWith() { return LastSavedByStaffIDEndsWith; } public RA_ShipDocumentsQuery setLastSavedByStaffIDEndsWith(String value) { this.LastSavedByStaffIDEndsWith = value; return this; } public String getLastSavedByStaffIDContains() { return LastSavedByStaffIDContains; } public RA_ShipDocumentsQuery setLastSavedByStaffIDContains(String value) { this.LastSavedByStaffIDContains = value; return this; } public String getLastSavedByStaffIDLike() { return LastSavedByStaffIDLike; } public RA_ShipDocumentsQuery setLastSavedByStaffIDLike(String value) { this.LastSavedByStaffIDLike = value; return this; } public ArrayList getLastSavedByStaffIDBetween() { return LastSavedByStaffIDBetween; } public RA_ShipDocumentsQuery setLastSavedByStaffIDBetween(ArrayList value) { this.LastSavedByStaffIDBetween = value; return this; } public ArrayList getLastSavedByStaffIDIn() { return LastSavedByStaffIDIn; } public RA_ShipDocumentsQuery setLastSavedByStaffIDIn(ArrayList value) { this.LastSavedByStaffIDIn = value; return this; } public ArrayList getFileBinary() { return FileBinary; } public RA_ShipDocumentsQuery setFileBinary(ArrayList value) { this.FileBinary = value; return this; } public String getDescription() { return Description; } public RA_ShipDocumentsQuery setDescription(String value) { this.Description = value; return this; } public String getDescriptionStartsWith() { return DescriptionStartsWith; } public RA_ShipDocumentsQuery setDescriptionStartsWith(String value) { this.DescriptionStartsWith = value; return this; } public String getDescriptionEndsWith() { return DescriptionEndsWith; } public RA_ShipDocumentsQuery setDescriptionEndsWith(String value) { this.DescriptionEndsWith = value; return this; } public String getDescriptionContains() { return DescriptionContains; } public RA_ShipDocumentsQuery setDescriptionContains(String value) { this.DescriptionContains = value; return this; } public String getDescriptionLike() { return DescriptionLike; } public RA_ShipDocumentsQuery setDescriptionLike(String value) { this.DescriptionLike = value; return this; } public ArrayList getDescriptionBetween() { return DescriptionBetween; } public RA_ShipDocumentsQuery setDescriptionBetween(ArrayList value) { this.DescriptionBetween = value; return this; } public ArrayList getDescriptionIn() { return DescriptionIn; } public RA_ShipDocumentsQuery setDescriptionIn(ArrayList value) { this.DescriptionIn = value; return this; } public String getPhysicalFileName() { return PhysicalFileName; } public RA_ShipDocumentsQuery setPhysicalFileName(String value) { this.PhysicalFileName = value; return this; } public String getPhysicalFileNameStartsWith() { return PhysicalFileNameStartsWith; } public RA_ShipDocumentsQuery setPhysicalFileNameStartsWith(String value) { this.PhysicalFileNameStartsWith = value; return this; } public String getPhysicalFileNameEndsWith() { return PhysicalFileNameEndsWith; } public RA_ShipDocumentsQuery setPhysicalFileNameEndsWith(String value) { this.PhysicalFileNameEndsWith = value; return this; } public String getPhysicalFileNameContains() { return PhysicalFileNameContains; } public RA_ShipDocumentsQuery setPhysicalFileNameContains(String value) { this.PhysicalFileNameContains = value; return this; } public String getPhysicalFileNameLike() { return PhysicalFileNameLike; } public RA_ShipDocumentsQuery setPhysicalFileNameLike(String value) { this.PhysicalFileNameLike = value; return this; } public ArrayList getPhysicalFileNameBetween() { return PhysicalFileNameBetween; } public RA_ShipDocumentsQuery setPhysicalFileNameBetween(ArrayList value) { this.PhysicalFileNameBetween = value; return this; } public ArrayList getPhysicalFileNameIn() { return PhysicalFileNameIn; } public RA_ShipDocumentsQuery setPhysicalFileNameIn(ArrayList value) { this.PhysicalFileNameIn = value; return this; } public Integer getItemNo() { return ItemNo; } public RA_ShipDocumentsQuery setItemNo(Integer value) { this.ItemNo = value; return this; } public Integer getItemNoGreaterThanOrEqualTo() { return ItemNoGreaterThanOrEqualTo; } public RA_ShipDocumentsQuery setItemNoGreaterThanOrEqualTo(Integer value) { this.ItemNoGreaterThanOrEqualTo = value; return this; } public Integer getItemNoGreaterThan() { return ItemNoGreaterThan; } public RA_ShipDocumentsQuery setItemNoGreaterThan(Integer value) { this.ItemNoGreaterThan = value; return this; } public Integer getItemNoLessThan() { return ItemNoLessThan; } public RA_ShipDocumentsQuery setItemNoLessThan(Integer value) { this.ItemNoLessThan = value; return this; } public Integer getItemNoLessThanOrEqualTo() { return ItemNoLessThanOrEqualTo; } public RA_ShipDocumentsQuery setItemNoLessThanOrEqualTo(Integer value) { this.ItemNoLessThanOrEqualTo = value; return this; } public Integer getItemNoNotEqualTo() { return ItemNoNotEqualTo; } public RA_ShipDocumentsQuery setItemNoNotEqualTo(Integer value) { this.ItemNoNotEqualTo = value; return this; } public ArrayList getItemNoBetween() { return ItemNoBetween; } public RA_ShipDocumentsQuery setItemNoBetween(ArrayList value) { this.ItemNoBetween = value; return this; } public ArrayList getItemNoIn() { return ItemNoIn; } public RA_ShipDocumentsQuery setItemNoIn(ArrayList value) { this.ItemNoIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class RA_ShipInQuery extends QueryDb implements IReturn> { public String RA_CreditMain_RecID = null; public String RA_CreditMain_RecIDStartsWith = null; public String RA_CreditMain_RecIDEndsWith = null; public String RA_CreditMain_RecIDContains = null; public String RA_CreditMain_RecIDLike = null; public ArrayList RA_CreditMain_RecIDBetween = null; public ArrayList RA_CreditMain_RecIDIn = null; public String RA_ShipMain_RecID = null; public String RA_ShipMain_RecIDStartsWith = null; public String RA_ShipMain_RecIDEndsWith = null; public String RA_ShipMain_RecIDContains = null; public String RA_ShipMain_RecIDLike = null; public ArrayList RA_ShipMain_RecIDBetween = null; public ArrayList RA_ShipMain_RecIDIn = null; public String getRaCreditMainRecID() { return RA_CreditMain_RecID; } public RA_ShipInQuery setRaCreditMainRecID(String value) { this.RA_CreditMain_RecID = value; return this; } public String getRaCreditMainRecIDStartsWith() { return RA_CreditMain_RecIDStartsWith; } public RA_ShipInQuery setRaCreditMainRecIDStartsWith(String value) { this.RA_CreditMain_RecIDStartsWith = value; return this; } public String getRaCreditMainRecIDEndsWith() { return RA_CreditMain_RecIDEndsWith; } public RA_ShipInQuery setRaCreditMainRecIDEndsWith(String value) { this.RA_CreditMain_RecIDEndsWith = value; return this; } public String getRaCreditMainRecIDContains() { return RA_CreditMain_RecIDContains; } public RA_ShipInQuery setRaCreditMainRecIDContains(String value) { this.RA_CreditMain_RecIDContains = value; return this; } public String getRaCreditMainRecIDLike() { return RA_CreditMain_RecIDLike; } public RA_ShipInQuery setRaCreditMainRecIDLike(String value) { this.RA_CreditMain_RecIDLike = value; return this; } public ArrayList getRaCreditMainRecIDBetween() { return RA_CreditMain_RecIDBetween; } public RA_ShipInQuery setRaCreditMainRecIDBetween(ArrayList value) { this.RA_CreditMain_RecIDBetween = value; return this; } public ArrayList getRaCreditMainRecIDIn() { return RA_CreditMain_RecIDIn; } public RA_ShipInQuery setRaCreditMainRecIDIn(ArrayList value) { this.RA_CreditMain_RecIDIn = value; return this; } public String getRaShipMainRecID() { return RA_ShipMain_RecID; } public RA_ShipInQuery setRaShipMainRecID(String value) { this.RA_ShipMain_RecID = value; return this; } public String getRaShipMainRecIDStartsWith() { return RA_ShipMain_RecIDStartsWith; } public RA_ShipInQuery setRaShipMainRecIDStartsWith(String value) { this.RA_ShipMain_RecIDStartsWith = value; return this; } public String getRaShipMainRecIDEndsWith() { return RA_ShipMain_RecIDEndsWith; } public RA_ShipInQuery setRaShipMainRecIDEndsWith(String value) { this.RA_ShipMain_RecIDEndsWith = value; return this; } public String getRaShipMainRecIDContains() { return RA_ShipMain_RecIDContains; } public RA_ShipInQuery setRaShipMainRecIDContains(String value) { this.RA_ShipMain_RecIDContains = value; return this; } public String getRaShipMainRecIDLike() { return RA_ShipMain_RecIDLike; } public RA_ShipInQuery setRaShipMainRecIDLike(String value) { this.RA_ShipMain_RecIDLike = value; return this; } public ArrayList getRaShipMainRecIDBetween() { return RA_ShipMain_RecIDBetween; } public RA_ShipInQuery setRaShipMainRecIDBetween(ArrayList value) { this.RA_ShipMain_RecIDBetween = value; return this; } public ArrayList getRaShipMainRecIDIn() { return RA_ShipMain_RecIDIn; } public RA_ShipInQuery setRaShipMainRecIDIn(ArrayList value) { this.RA_ShipMain_RecIDIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class RA_ShipLineDetailsQuery extends QueryDb implements IReturn> { public String RecID = null; public String RecIDStartsWith = null; public String RecIDEndsWith = null; public String RecIDContains = null; public String RecIDLike = null; public ArrayList RecIDBetween = null; public ArrayList RecIDIn = null; public String Parent_RecID = null; public String Parent_RecIDStartsWith = null; public String Parent_RecIDEndsWith = null; public String Parent_RecIDContains = null; public String Parent_RecIDLike = null; public ArrayList Parent_RecIDBetween = null; public ArrayList Parent_RecIDIn = null; public String IN_SOH_LinkID = null; public String IN_SOH_LinkIDStartsWith = null; public String IN_SOH_LinkIDEndsWith = null; public String IN_SOH_LinkIDContains = null; public String IN_SOH_LinkIDLike = null; public ArrayList IN_SOH_LinkIDBetween = null; public ArrayList IN_SOH_LinkIDIn = null; public BigDecimal Cost = null; public BigDecimal CostGreaterThanOrEqualTo = null; public BigDecimal CostGreaterThan = null; public BigDecimal CostLessThan = null; public BigDecimal CostLessThanOrEqualTo = null; public BigDecimal CostNotEqualTo = null; public ArrayList CostBetween = null; public ArrayList CostIn = null; public BigDecimal SpecialPrice = null; public BigDecimal SpecialPriceGreaterThanOrEqualTo = null; public BigDecimal SpecialPriceGreaterThan = null; public BigDecimal SpecialPriceLessThan = null; public BigDecimal SpecialPriceLessThanOrEqualTo = null; public BigDecimal SpecialPriceNotEqualTo = null; public ArrayList SpecialPriceBetween = null; public ArrayList SpecialPriceIn = null; public BigDecimal Quantity = null; public BigDecimal QuantityGreaterThanOrEqualTo = null; public BigDecimal QuantityGreaterThan = null; public BigDecimal QuantityLessThan = null; public BigDecimal QuantityLessThanOrEqualTo = null; public BigDecimal QuantityNotEqualTo = null; public ArrayList QuantityBetween = null; public ArrayList QuantityIn = null; public String SerialNo = null; public String SerialNoStartsWith = null; public String SerialNoEndsWith = null; public String SerialNoContains = null; public String SerialNoLike = null; public ArrayList SerialNoBetween = null; public ArrayList SerialNoIn = null; public Date ExpiryDate = null; public Date ExpiryDateGreaterThanOrEqualTo = null; public Date ExpiryDateGreaterThan = null; public Date ExpiryDateLessThan = null; public Date ExpiryDateLessThanOrEqualTo = null; public Date ExpiryDateNotEqualTo = null; public ArrayList ExpiryDateBetween = null; public ArrayList ExpiryDateIn = null; public String BinLocation = null; public String BinLocationStartsWith = null; public String BinLocationEndsWith = null; public String BinLocationContains = null; public String BinLocationLike = null; public ArrayList BinLocationBetween = null; public ArrayList BinLocationIn = null; public Date LastSavedDateTime = null; public Date LastSavedDateTimeGreaterThanOrEqualTo = null; public Date LastSavedDateTimeGreaterThan = null; public Date LastSavedDateTimeLessThan = null; public Date LastSavedDateTimeLessThanOrEqualTo = null; public Date LastSavedDateTimeNotEqualTo = null; public ArrayList LastSavedDateTimeBetween = null; public ArrayList LastSavedDateTimeIn = null; public ArrayList RowHash = null; public Integer ItemNo = null; public Integer ItemNoGreaterThanOrEqualTo = null; public Integer ItemNoGreaterThan = null; public Integer ItemNoLessThan = null; public Integer ItemNoLessThanOrEqualTo = null; public Integer ItemNoNotEqualTo = null; public ArrayList ItemNoBetween = null; public ArrayList ItemNoIn = null; public String getRecID() { return RecID; } public RA_ShipLineDetailsQuery setRecID(String value) { this.RecID = value; return this; } public String getRecIDStartsWith() { return RecIDStartsWith; } public RA_ShipLineDetailsQuery setRecIDStartsWith(String value) { this.RecIDStartsWith = value; return this; } public String getRecIDEndsWith() { return RecIDEndsWith; } public RA_ShipLineDetailsQuery setRecIDEndsWith(String value) { this.RecIDEndsWith = value; return this; } public String getRecIDContains() { return RecIDContains; } public RA_ShipLineDetailsQuery setRecIDContains(String value) { this.RecIDContains = value; return this; } public String getRecIDLike() { return RecIDLike; } public RA_ShipLineDetailsQuery setRecIDLike(String value) { this.RecIDLike = value; return this; } public ArrayList getRecIDBetween() { return RecIDBetween; } public RA_ShipLineDetailsQuery setRecIDBetween(ArrayList value) { this.RecIDBetween = value; return this; } public ArrayList getRecIDIn() { return RecIDIn; } public RA_ShipLineDetailsQuery setRecIDIn(ArrayList value) { this.RecIDIn = value; return this; } public String getParentRecID() { return Parent_RecID; } public RA_ShipLineDetailsQuery setParentRecID(String value) { this.Parent_RecID = value; return this; } public String getParentRecIDStartsWith() { return Parent_RecIDStartsWith; } public RA_ShipLineDetailsQuery setParentRecIDStartsWith(String value) { this.Parent_RecIDStartsWith = value; return this; } public String getParentRecIDEndsWith() { return Parent_RecIDEndsWith; } public RA_ShipLineDetailsQuery setParentRecIDEndsWith(String value) { this.Parent_RecIDEndsWith = value; return this; } public String getParentRecIDContains() { return Parent_RecIDContains; } public RA_ShipLineDetailsQuery setParentRecIDContains(String value) { this.Parent_RecIDContains = value; return this; } public String getParentRecIDLike() { return Parent_RecIDLike; } public RA_ShipLineDetailsQuery setParentRecIDLike(String value) { this.Parent_RecIDLike = value; return this; } public ArrayList getParentRecIDBetween() { return Parent_RecIDBetween; } public RA_ShipLineDetailsQuery setParentRecIDBetween(ArrayList value) { this.Parent_RecIDBetween = value; return this; } public ArrayList getParentRecIDIn() { return Parent_RecIDIn; } public RA_ShipLineDetailsQuery setParentRecIDIn(ArrayList value) { this.Parent_RecIDIn = value; return this; } public String getInSohLinkID() { return IN_SOH_LinkID; } public RA_ShipLineDetailsQuery setInSohLinkID(String value) { this.IN_SOH_LinkID = value; return this; } public String getInSohLinkIDStartsWith() { return IN_SOH_LinkIDStartsWith; } public RA_ShipLineDetailsQuery setInSohLinkIDStartsWith(String value) { this.IN_SOH_LinkIDStartsWith = value; return this; } public String getInSohLinkIDEndsWith() { return IN_SOH_LinkIDEndsWith; } public RA_ShipLineDetailsQuery setInSohLinkIDEndsWith(String value) { this.IN_SOH_LinkIDEndsWith = value; return this; } public String getInSohLinkIDContains() { return IN_SOH_LinkIDContains; } public RA_ShipLineDetailsQuery setInSohLinkIDContains(String value) { this.IN_SOH_LinkIDContains = value; return this; } public String getInSohLinkIDLike() { return IN_SOH_LinkIDLike; } public RA_ShipLineDetailsQuery setInSohLinkIDLike(String value) { this.IN_SOH_LinkIDLike = value; return this; } public ArrayList getInSohLinkIDBetween() { return IN_SOH_LinkIDBetween; } public RA_ShipLineDetailsQuery setInSohLinkIDBetween(ArrayList value) { this.IN_SOH_LinkIDBetween = value; return this; } public ArrayList getInSohLinkIDIn() { return IN_SOH_LinkIDIn; } public RA_ShipLineDetailsQuery setInSohLinkIDIn(ArrayList value) { this.IN_SOH_LinkIDIn = value; return this; } public BigDecimal getCost() { return Cost; } public RA_ShipLineDetailsQuery setCost(BigDecimal value) { this.Cost = value; return this; } public BigDecimal getCostGreaterThanOrEqualTo() { return CostGreaterThanOrEqualTo; } public RA_ShipLineDetailsQuery setCostGreaterThanOrEqualTo(BigDecimal value) { this.CostGreaterThanOrEqualTo = value; return this; } public BigDecimal getCostGreaterThan() { return CostGreaterThan; } public RA_ShipLineDetailsQuery setCostGreaterThan(BigDecimal value) { this.CostGreaterThan = value; return this; } public BigDecimal getCostLessThan() { return CostLessThan; } public RA_ShipLineDetailsQuery setCostLessThan(BigDecimal value) { this.CostLessThan = value; return this; } public BigDecimal getCostLessThanOrEqualTo() { return CostLessThanOrEqualTo; } public RA_ShipLineDetailsQuery setCostLessThanOrEqualTo(BigDecimal value) { this.CostLessThanOrEqualTo = value; return this; } public BigDecimal getCostNotEqualTo() { return CostNotEqualTo; } public RA_ShipLineDetailsQuery setCostNotEqualTo(BigDecimal value) { this.CostNotEqualTo = value; return this; } public ArrayList getCostBetween() { return CostBetween; } public RA_ShipLineDetailsQuery setCostBetween(ArrayList value) { this.CostBetween = value; return this; } public ArrayList getCostIn() { return CostIn; } public RA_ShipLineDetailsQuery setCostIn(ArrayList value) { this.CostIn = value; return this; } public BigDecimal getSpecialPrice() { return SpecialPrice; } public RA_ShipLineDetailsQuery setSpecialPrice(BigDecimal value) { this.SpecialPrice = value; return this; } public BigDecimal getSpecialPriceGreaterThanOrEqualTo() { return SpecialPriceGreaterThanOrEqualTo; } public RA_ShipLineDetailsQuery setSpecialPriceGreaterThanOrEqualTo(BigDecimal value) { this.SpecialPriceGreaterThanOrEqualTo = value; return this; } public BigDecimal getSpecialPriceGreaterThan() { return SpecialPriceGreaterThan; } public RA_ShipLineDetailsQuery setSpecialPriceGreaterThan(BigDecimal value) { this.SpecialPriceGreaterThan = value; return this; } public BigDecimal getSpecialPriceLessThan() { return SpecialPriceLessThan; } public RA_ShipLineDetailsQuery setSpecialPriceLessThan(BigDecimal value) { this.SpecialPriceLessThan = value; return this; } public BigDecimal getSpecialPriceLessThanOrEqualTo() { return SpecialPriceLessThanOrEqualTo; } public RA_ShipLineDetailsQuery setSpecialPriceLessThanOrEqualTo(BigDecimal value) { this.SpecialPriceLessThanOrEqualTo = value; return this; } public BigDecimal getSpecialPriceNotEqualTo() { return SpecialPriceNotEqualTo; } public RA_ShipLineDetailsQuery setSpecialPriceNotEqualTo(BigDecimal value) { this.SpecialPriceNotEqualTo = value; return this; } public ArrayList getSpecialPriceBetween() { return SpecialPriceBetween; } public RA_ShipLineDetailsQuery setSpecialPriceBetween(ArrayList value) { this.SpecialPriceBetween = value; return this; } public ArrayList getSpecialPriceIn() { return SpecialPriceIn; } public RA_ShipLineDetailsQuery setSpecialPriceIn(ArrayList value) { this.SpecialPriceIn = value; return this; } public BigDecimal getQuantity() { return Quantity; } public RA_ShipLineDetailsQuery setQuantity(BigDecimal value) { this.Quantity = value; return this; } public BigDecimal getQuantityGreaterThanOrEqualTo() { return QuantityGreaterThanOrEqualTo; } public RA_ShipLineDetailsQuery setQuantityGreaterThanOrEqualTo(BigDecimal value) { this.QuantityGreaterThanOrEqualTo = value; return this; } public BigDecimal getQuantityGreaterThan() { return QuantityGreaterThan; } public RA_ShipLineDetailsQuery setQuantityGreaterThan(BigDecimal value) { this.QuantityGreaterThan = value; return this; } public BigDecimal getQuantityLessThan() { return QuantityLessThan; } public RA_ShipLineDetailsQuery setQuantityLessThan(BigDecimal value) { this.QuantityLessThan = value; return this; } public BigDecimal getQuantityLessThanOrEqualTo() { return QuantityLessThanOrEqualTo; } public RA_ShipLineDetailsQuery setQuantityLessThanOrEqualTo(BigDecimal value) { this.QuantityLessThanOrEqualTo = value; return this; } public BigDecimal getQuantityNotEqualTo() { return QuantityNotEqualTo; } public RA_ShipLineDetailsQuery setQuantityNotEqualTo(BigDecimal value) { this.QuantityNotEqualTo = value; return this; } public ArrayList getQuantityBetween() { return QuantityBetween; } public RA_ShipLineDetailsQuery setQuantityBetween(ArrayList value) { this.QuantityBetween = value; return this; } public ArrayList getQuantityIn() { return QuantityIn; } public RA_ShipLineDetailsQuery setQuantityIn(ArrayList value) { this.QuantityIn = value; return this; } public String getSerialNo() { return SerialNo; } public RA_ShipLineDetailsQuery setSerialNo(String value) { this.SerialNo = value; return this; } public String getSerialNoStartsWith() { return SerialNoStartsWith; } public RA_ShipLineDetailsQuery setSerialNoStartsWith(String value) { this.SerialNoStartsWith = value; return this; } public String getSerialNoEndsWith() { return SerialNoEndsWith; } public RA_ShipLineDetailsQuery setSerialNoEndsWith(String value) { this.SerialNoEndsWith = value; return this; } public String getSerialNoContains() { return SerialNoContains; } public RA_ShipLineDetailsQuery setSerialNoContains(String value) { this.SerialNoContains = value; return this; } public String getSerialNoLike() { return SerialNoLike; } public RA_ShipLineDetailsQuery setSerialNoLike(String value) { this.SerialNoLike = value; return this; } public ArrayList getSerialNoBetween() { return SerialNoBetween; } public RA_ShipLineDetailsQuery setSerialNoBetween(ArrayList value) { this.SerialNoBetween = value; return this; } public ArrayList getSerialNoIn() { return SerialNoIn; } public RA_ShipLineDetailsQuery setSerialNoIn(ArrayList value) { this.SerialNoIn = value; return this; } public Date getExpiryDate() { return ExpiryDate; } public RA_ShipLineDetailsQuery setExpiryDate(Date value) { this.ExpiryDate = value; return this; } public Date getExpiryDateGreaterThanOrEqualTo() { return ExpiryDateGreaterThanOrEqualTo; } public RA_ShipLineDetailsQuery setExpiryDateGreaterThanOrEqualTo(Date value) { this.ExpiryDateGreaterThanOrEqualTo = value; return this; } public Date getExpiryDateGreaterThan() { return ExpiryDateGreaterThan; } public RA_ShipLineDetailsQuery setExpiryDateGreaterThan(Date value) { this.ExpiryDateGreaterThan = value; return this; } public Date getExpiryDateLessThan() { return ExpiryDateLessThan; } public RA_ShipLineDetailsQuery setExpiryDateLessThan(Date value) { this.ExpiryDateLessThan = value; return this; } public Date getExpiryDateLessThanOrEqualTo() { return ExpiryDateLessThanOrEqualTo; } public RA_ShipLineDetailsQuery setExpiryDateLessThanOrEqualTo(Date value) { this.ExpiryDateLessThanOrEqualTo = value; return this; } public Date getExpiryDateNotEqualTo() { return ExpiryDateNotEqualTo; } public RA_ShipLineDetailsQuery setExpiryDateNotEqualTo(Date value) { this.ExpiryDateNotEqualTo = value; return this; } public ArrayList getExpiryDateBetween() { return ExpiryDateBetween; } public RA_ShipLineDetailsQuery setExpiryDateBetween(ArrayList value) { this.ExpiryDateBetween = value; return this; } public ArrayList getExpiryDateIn() { return ExpiryDateIn; } public RA_ShipLineDetailsQuery setExpiryDateIn(ArrayList value) { this.ExpiryDateIn = value; return this; } public String getBinLocation() { return BinLocation; } public RA_ShipLineDetailsQuery setBinLocation(String value) { this.BinLocation = value; return this; } public String getBinLocationStartsWith() { return BinLocationStartsWith; } public RA_ShipLineDetailsQuery setBinLocationStartsWith(String value) { this.BinLocationStartsWith = value; return this; } public String getBinLocationEndsWith() { return BinLocationEndsWith; } public RA_ShipLineDetailsQuery setBinLocationEndsWith(String value) { this.BinLocationEndsWith = value; return this; } public String getBinLocationContains() { return BinLocationContains; } public RA_ShipLineDetailsQuery setBinLocationContains(String value) { this.BinLocationContains = value; return this; } public String getBinLocationLike() { return BinLocationLike; } public RA_ShipLineDetailsQuery setBinLocationLike(String value) { this.BinLocationLike = value; return this; } public ArrayList getBinLocationBetween() { return BinLocationBetween; } public RA_ShipLineDetailsQuery setBinLocationBetween(ArrayList value) { this.BinLocationBetween = value; return this; } public ArrayList getBinLocationIn() { return BinLocationIn; } public RA_ShipLineDetailsQuery setBinLocationIn(ArrayList value) { this.BinLocationIn = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public RA_ShipLineDetailsQuery setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getLastSavedDateTimeGreaterThanOrEqualTo() { return LastSavedDateTimeGreaterThanOrEqualTo; } public RA_ShipLineDetailsQuery setLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.LastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeGreaterThan() { return LastSavedDateTimeGreaterThan; } public RA_ShipLineDetailsQuery setLastSavedDateTimeGreaterThan(Date value) { this.LastSavedDateTimeGreaterThan = value; return this; } public Date getLastSavedDateTimeLessThan() { return LastSavedDateTimeLessThan; } public RA_ShipLineDetailsQuery setLastSavedDateTimeLessThan(Date value) { this.LastSavedDateTimeLessThan = value; return this; } public Date getLastSavedDateTimeLessThanOrEqualTo() { return LastSavedDateTimeLessThanOrEqualTo; } public RA_ShipLineDetailsQuery setLastSavedDateTimeLessThanOrEqualTo(Date value) { this.LastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeNotEqualTo() { return LastSavedDateTimeNotEqualTo; } public RA_ShipLineDetailsQuery setLastSavedDateTimeNotEqualTo(Date value) { this.LastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getLastSavedDateTimeBetween() { return LastSavedDateTimeBetween; } public RA_ShipLineDetailsQuery setLastSavedDateTimeBetween(ArrayList value) { this.LastSavedDateTimeBetween = value; return this; } public ArrayList getLastSavedDateTimeIn() { return LastSavedDateTimeIn; } public RA_ShipLineDetailsQuery setLastSavedDateTimeIn(ArrayList value) { this.LastSavedDateTimeIn = value; return this; } public ArrayList getRowHash() { return RowHash; } public RA_ShipLineDetailsQuery setRowHash(ArrayList value) { this.RowHash = value; return this; } public Integer getItemNo() { return ItemNo; } public RA_ShipLineDetailsQuery setItemNo(Integer value) { this.ItemNo = value; return this; } public Integer getItemNoGreaterThanOrEqualTo() { return ItemNoGreaterThanOrEqualTo; } public RA_ShipLineDetailsQuery setItemNoGreaterThanOrEqualTo(Integer value) { this.ItemNoGreaterThanOrEqualTo = value; return this; } public Integer getItemNoGreaterThan() { return ItemNoGreaterThan; } public RA_ShipLineDetailsQuery setItemNoGreaterThan(Integer value) { this.ItemNoGreaterThan = value; return this; } public Integer getItemNoLessThan() { return ItemNoLessThan; } public RA_ShipLineDetailsQuery setItemNoLessThan(Integer value) { this.ItemNoLessThan = value; return this; } public Integer getItemNoLessThanOrEqualTo() { return ItemNoLessThanOrEqualTo; } public RA_ShipLineDetailsQuery setItemNoLessThanOrEqualTo(Integer value) { this.ItemNoLessThanOrEqualTo = value; return this; } public Integer getItemNoNotEqualTo() { return ItemNoNotEqualTo; } public RA_ShipLineDetailsQuery setItemNoNotEqualTo(Integer value) { this.ItemNoNotEqualTo = value; return this; } public ArrayList getItemNoBetween() { return ItemNoBetween; } public RA_ShipLineDetailsQuery setItemNoBetween(ArrayList value) { this.ItemNoBetween = value; return this; } public ArrayList getItemNoIn() { return ItemNoIn; } public RA_ShipLineDetailsQuery setItemNoIn(ArrayList value) { this.ItemNoIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class RA_ShipLinesQuery extends QueryDb implements IReturn> { public String RecID = null; public String RecIDStartsWith = null; public String RecIDEndsWith = null; public String RecIDContains = null; public String RecIDLike = null; public ArrayList RecIDBetween = null; public ArrayList RecIDIn = null; public Short ItemNo = null; public Short ItemNoGreaterThanOrEqualTo = null; public Short ItemNoGreaterThan = null; public Short ItemNoLessThan = null; public Short ItemNoLessThanOrEqualTo = null; public Short ItemNoNotEqualTo = null; public ArrayList ItemNoBetween = null; public ArrayList ItemNoIn = null; public String RA_ShipMain_RecID = null; public String RA_ShipMain_RecIDStartsWith = null; public String RA_ShipMain_RecIDEndsWith = null; public String RA_ShipMain_RecIDContains = null; public String RA_ShipMain_RecIDLike = null; public ArrayList RA_ShipMain_RecIDBetween = null; public ArrayList RA_ShipMain_RecIDIn = null; public BigDecimal Quantity = null; public BigDecimal QuantityGreaterThanOrEqualTo = null; public BigDecimal QuantityGreaterThan = null; public BigDecimal QuantityLessThan = null; public BigDecimal QuantityLessThanOrEqualTo = null; public BigDecimal QuantityNotEqualTo = null; public ArrayList QuantityBetween = null; public ArrayList QuantityIn = null; public String InventoryID = null; public String InventoryIDStartsWith = null; public String InventoryIDEndsWith = null; public String InventoryIDContains = null; public String InventoryIDLike = null; public ArrayList InventoryIDBetween = null; public ArrayList InventoryIDIn = null; public String RA_ReturnCodes_RecID = null; public String RA_ReturnCodes_RecIDStartsWith = null; public String RA_ReturnCodes_RecIDEndsWith = null; public String RA_ReturnCodes_RecIDContains = null; public String RA_ReturnCodes_RecIDLike = null; public ArrayList RA_ReturnCodes_RecIDBetween = null; public ArrayList RA_ReturnCodes_RecIDIn = null; public Date LastSavedDateTime = null; public Date LastSavedDateTimeGreaterThanOrEqualTo = null; public Date LastSavedDateTimeGreaterThan = null; public Date LastSavedDateTimeLessThan = null; public Date LastSavedDateTimeLessThanOrEqualTo = null; public Date LastSavedDateTimeNotEqualTo = null; public ArrayList LastSavedDateTimeBetween = null; public ArrayList LastSavedDateTimeIn = null; public String Remark = null; public String RemarkStartsWith = null; public String RemarkEndsWith = null; public String RemarkContains = null; public String RemarkLike = null; public ArrayList RemarkBetween = null; public ArrayList RemarkIn = null; public BigDecimal UnitReturnValue = null; public BigDecimal UnitReturnValueGreaterThanOrEqualTo = null; public BigDecimal UnitReturnValueGreaterThan = null; public BigDecimal UnitReturnValueLessThan = null; public BigDecimal UnitReturnValueLessThanOrEqualTo = null; public BigDecimal UnitReturnValueNotEqualTo = null; public ArrayList UnitReturnValueBetween = null; public ArrayList UnitReturnValueIn = null; public BigDecimal TotalReturnValue = null; public BigDecimal TotalReturnValueGreaterThanOrEqualTo = null; public BigDecimal TotalReturnValueGreaterThan = null; public BigDecimal TotalReturnValueLessThan = null; public BigDecimal TotalReturnValueLessThanOrEqualTo = null; public BigDecimal TotalReturnValueNotEqualTo = null; public ArrayList TotalReturnValueBetween = null; public ArrayList TotalReturnValueIn = null; public String RA_RequestLines_RecID = null; public String RA_RequestLines_RecIDStartsWith = null; public String RA_RequestLines_RecIDEndsWith = null; public String RA_RequestLines_RecIDContains = null; public String RA_RequestLines_RecIDLike = null; public ArrayList RA_RequestLines_RecIDBetween = null; public ArrayList RA_RequestLines_RecIDIn = null; public String TaxID = null; public String TaxIDStartsWith = null; public String TaxIDEndsWith = null; public String TaxIDContains = null; public String TaxIDLike = null; public ArrayList TaxIDBetween = null; public ArrayList TaxIDIn = null; public BigDecimal TaxAmount = null; public BigDecimal TaxAmountGreaterThanOrEqualTo = null; public BigDecimal TaxAmountGreaterThan = null; public BigDecimal TaxAmountLessThan = null; public BigDecimal TaxAmountLessThanOrEqualTo = null; public BigDecimal TaxAmountNotEqualTo = null; public ArrayList TaxAmountBetween = null; public ArrayList TaxAmountIn = null; public ArrayList RowHash = null; public BigDecimal FXUnitReturnValue = null; public BigDecimal FXUnitReturnValueGreaterThanOrEqualTo = null; public BigDecimal FXUnitReturnValueGreaterThan = null; public BigDecimal FXUnitReturnValueLessThan = null; public BigDecimal FXUnitReturnValueLessThanOrEqualTo = null; public BigDecimal FXUnitReturnValueNotEqualTo = null; public ArrayList FXUnitReturnValueBetween = null; public ArrayList FXUnitReturnValueIn = null; public BigDecimal FXTotalReturnValue = null; public BigDecimal FXTotalReturnValueGreaterThanOrEqualTo = null; public BigDecimal FXTotalReturnValueGreaterThan = null; public BigDecimal FXTotalReturnValueLessThan = null; public BigDecimal FXTotalReturnValueLessThanOrEqualTo = null; public BigDecimal FXTotalReturnValueNotEqualTo = null; public ArrayList FXTotalReturnValueBetween = null; public ArrayList FXTotalReturnValueIn = null; public BigDecimal FXRate = null; public BigDecimal FXRateGreaterThanOrEqualTo = null; public BigDecimal FXRateGreaterThan = null; public BigDecimal FXRateLessThan = null; public BigDecimal FXRateLessThanOrEqualTo = null; public BigDecimal FXRateNotEqualTo = null; public ArrayList FXRateBetween = null; public ArrayList FXRateIn = null; public String PO_Lines_OrderLineID = null; public String PO_Lines_OrderLineIDStartsWith = null; public String PO_Lines_OrderLineIDEndsWith = null; public String PO_Lines_OrderLineIDContains = null; public String PO_Lines_OrderLineIDLike = null; public ArrayList PO_Lines_OrderLineIDBetween = null; public ArrayList PO_Lines_OrderLineIDIn = null; public String getRecID() { return RecID; } public RA_ShipLinesQuery setRecID(String value) { this.RecID = value; return this; } public String getRecIDStartsWith() { return RecIDStartsWith; } public RA_ShipLinesQuery setRecIDStartsWith(String value) { this.RecIDStartsWith = value; return this; } public String getRecIDEndsWith() { return RecIDEndsWith; } public RA_ShipLinesQuery setRecIDEndsWith(String value) { this.RecIDEndsWith = value; return this; } public String getRecIDContains() { return RecIDContains; } public RA_ShipLinesQuery setRecIDContains(String value) { this.RecIDContains = value; return this; } public String getRecIDLike() { return RecIDLike; } public RA_ShipLinesQuery setRecIDLike(String value) { this.RecIDLike = value; return this; } public ArrayList getRecIDBetween() { return RecIDBetween; } public RA_ShipLinesQuery setRecIDBetween(ArrayList value) { this.RecIDBetween = value; return this; } public ArrayList getRecIDIn() { return RecIDIn; } public RA_ShipLinesQuery setRecIDIn(ArrayList value) { this.RecIDIn = value; return this; } public Short getItemNo() { return ItemNo; } public RA_ShipLinesQuery setItemNo(Short value) { this.ItemNo = value; return this; } public Short getItemNoGreaterThanOrEqualTo() { return ItemNoGreaterThanOrEqualTo; } public RA_ShipLinesQuery setItemNoGreaterThanOrEqualTo(Short value) { this.ItemNoGreaterThanOrEqualTo = value; return this; } public Short getItemNoGreaterThan() { return ItemNoGreaterThan; } public RA_ShipLinesQuery setItemNoGreaterThan(Short value) { this.ItemNoGreaterThan = value; return this; } public Short getItemNoLessThan() { return ItemNoLessThan; } public RA_ShipLinesQuery setItemNoLessThan(Short value) { this.ItemNoLessThan = value; return this; } public Short getItemNoLessThanOrEqualTo() { return ItemNoLessThanOrEqualTo; } public RA_ShipLinesQuery setItemNoLessThanOrEqualTo(Short value) { this.ItemNoLessThanOrEqualTo = value; return this; } public Short getItemNoNotEqualTo() { return ItemNoNotEqualTo; } public RA_ShipLinesQuery setItemNoNotEqualTo(Short value) { this.ItemNoNotEqualTo = value; return this; } public ArrayList getItemNoBetween() { return ItemNoBetween; } public RA_ShipLinesQuery setItemNoBetween(ArrayList value) { this.ItemNoBetween = value; return this; } public ArrayList getItemNoIn() { return ItemNoIn; } public RA_ShipLinesQuery setItemNoIn(ArrayList value) { this.ItemNoIn = value; return this; } public String getRaShipMainRecID() { return RA_ShipMain_RecID; } public RA_ShipLinesQuery setRaShipMainRecID(String value) { this.RA_ShipMain_RecID = value; return this; } public String getRaShipMainRecIDStartsWith() { return RA_ShipMain_RecIDStartsWith; } public RA_ShipLinesQuery setRaShipMainRecIDStartsWith(String value) { this.RA_ShipMain_RecIDStartsWith = value; return this; } public String getRaShipMainRecIDEndsWith() { return RA_ShipMain_RecIDEndsWith; } public RA_ShipLinesQuery setRaShipMainRecIDEndsWith(String value) { this.RA_ShipMain_RecIDEndsWith = value; return this; } public String getRaShipMainRecIDContains() { return RA_ShipMain_RecIDContains; } public RA_ShipLinesQuery setRaShipMainRecIDContains(String value) { this.RA_ShipMain_RecIDContains = value; return this; } public String getRaShipMainRecIDLike() { return RA_ShipMain_RecIDLike; } public RA_ShipLinesQuery setRaShipMainRecIDLike(String value) { this.RA_ShipMain_RecIDLike = value; return this; } public ArrayList getRaShipMainRecIDBetween() { return RA_ShipMain_RecIDBetween; } public RA_ShipLinesQuery setRaShipMainRecIDBetween(ArrayList value) { this.RA_ShipMain_RecIDBetween = value; return this; } public ArrayList getRaShipMainRecIDIn() { return RA_ShipMain_RecIDIn; } public RA_ShipLinesQuery setRaShipMainRecIDIn(ArrayList value) { this.RA_ShipMain_RecIDIn = value; return this; } public BigDecimal getQuantity() { return Quantity; } public RA_ShipLinesQuery setQuantity(BigDecimal value) { this.Quantity = value; return this; } public BigDecimal getQuantityGreaterThanOrEqualTo() { return QuantityGreaterThanOrEqualTo; } public RA_ShipLinesQuery setQuantityGreaterThanOrEqualTo(BigDecimal value) { this.QuantityGreaterThanOrEqualTo = value; return this; } public BigDecimal getQuantityGreaterThan() { return QuantityGreaterThan; } public RA_ShipLinesQuery setQuantityGreaterThan(BigDecimal value) { this.QuantityGreaterThan = value; return this; } public BigDecimal getQuantityLessThan() { return QuantityLessThan; } public RA_ShipLinesQuery setQuantityLessThan(BigDecimal value) { this.QuantityLessThan = value; return this; } public BigDecimal getQuantityLessThanOrEqualTo() { return QuantityLessThanOrEqualTo; } public RA_ShipLinesQuery setQuantityLessThanOrEqualTo(BigDecimal value) { this.QuantityLessThanOrEqualTo = value; return this; } public BigDecimal getQuantityNotEqualTo() { return QuantityNotEqualTo; } public RA_ShipLinesQuery setQuantityNotEqualTo(BigDecimal value) { this.QuantityNotEqualTo = value; return this; } public ArrayList getQuantityBetween() { return QuantityBetween; } public RA_ShipLinesQuery setQuantityBetween(ArrayList value) { this.QuantityBetween = value; return this; } public ArrayList getQuantityIn() { return QuantityIn; } public RA_ShipLinesQuery setQuantityIn(ArrayList value) { this.QuantityIn = value; return this; } public String getInventoryID() { return InventoryID; } public RA_ShipLinesQuery setInventoryID(String value) { this.InventoryID = value; return this; } public String getInventoryIDStartsWith() { return InventoryIDStartsWith; } public RA_ShipLinesQuery setInventoryIDStartsWith(String value) { this.InventoryIDStartsWith = value; return this; } public String getInventoryIDEndsWith() { return InventoryIDEndsWith; } public RA_ShipLinesQuery setInventoryIDEndsWith(String value) { this.InventoryIDEndsWith = value; return this; } public String getInventoryIDContains() { return InventoryIDContains; } public RA_ShipLinesQuery setInventoryIDContains(String value) { this.InventoryIDContains = value; return this; } public String getInventoryIDLike() { return InventoryIDLike; } public RA_ShipLinesQuery setInventoryIDLike(String value) { this.InventoryIDLike = value; return this; } public ArrayList getInventoryIDBetween() { return InventoryIDBetween; } public RA_ShipLinesQuery setInventoryIDBetween(ArrayList value) { this.InventoryIDBetween = value; return this; } public ArrayList getInventoryIDIn() { return InventoryIDIn; } public RA_ShipLinesQuery setInventoryIDIn(ArrayList value) { this.InventoryIDIn = value; return this; } public String getRaReturnCodesRecID() { return RA_ReturnCodes_RecID; } public RA_ShipLinesQuery setRaReturnCodesRecID(String value) { this.RA_ReturnCodes_RecID = value; return this; } public String getRaReturnCodesRecIDStartsWith() { return RA_ReturnCodes_RecIDStartsWith; } public RA_ShipLinesQuery setRaReturnCodesRecIDStartsWith(String value) { this.RA_ReturnCodes_RecIDStartsWith = value; return this; } public String getRaReturnCodesRecIDEndsWith() { return RA_ReturnCodes_RecIDEndsWith; } public RA_ShipLinesQuery setRaReturnCodesRecIDEndsWith(String value) { this.RA_ReturnCodes_RecIDEndsWith = value; return this; } public String getRaReturnCodesRecIDContains() { return RA_ReturnCodes_RecIDContains; } public RA_ShipLinesQuery setRaReturnCodesRecIDContains(String value) { this.RA_ReturnCodes_RecIDContains = value; return this; } public String getRaReturnCodesRecIDLike() { return RA_ReturnCodes_RecIDLike; } public RA_ShipLinesQuery setRaReturnCodesRecIDLike(String value) { this.RA_ReturnCodes_RecIDLike = value; return this; } public ArrayList getRaReturnCodesRecIDBetween() { return RA_ReturnCodes_RecIDBetween; } public RA_ShipLinesQuery setRaReturnCodesRecIDBetween(ArrayList value) { this.RA_ReturnCodes_RecIDBetween = value; return this; } public ArrayList getRaReturnCodesRecIDIn() { return RA_ReturnCodes_RecIDIn; } public RA_ShipLinesQuery setRaReturnCodesRecIDIn(ArrayList value) { this.RA_ReturnCodes_RecIDIn = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public RA_ShipLinesQuery setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getLastSavedDateTimeGreaterThanOrEqualTo() { return LastSavedDateTimeGreaterThanOrEqualTo; } public RA_ShipLinesQuery setLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.LastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeGreaterThan() { return LastSavedDateTimeGreaterThan; } public RA_ShipLinesQuery setLastSavedDateTimeGreaterThan(Date value) { this.LastSavedDateTimeGreaterThan = value; return this; } public Date getLastSavedDateTimeLessThan() { return LastSavedDateTimeLessThan; } public RA_ShipLinesQuery setLastSavedDateTimeLessThan(Date value) { this.LastSavedDateTimeLessThan = value; return this; } public Date getLastSavedDateTimeLessThanOrEqualTo() { return LastSavedDateTimeLessThanOrEqualTo; } public RA_ShipLinesQuery setLastSavedDateTimeLessThanOrEqualTo(Date value) { this.LastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeNotEqualTo() { return LastSavedDateTimeNotEqualTo; } public RA_ShipLinesQuery setLastSavedDateTimeNotEqualTo(Date value) { this.LastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getLastSavedDateTimeBetween() { return LastSavedDateTimeBetween; } public RA_ShipLinesQuery setLastSavedDateTimeBetween(ArrayList value) { this.LastSavedDateTimeBetween = value; return this; } public ArrayList getLastSavedDateTimeIn() { return LastSavedDateTimeIn; } public RA_ShipLinesQuery setLastSavedDateTimeIn(ArrayList value) { this.LastSavedDateTimeIn = value; return this; } public String getRemark() { return Remark; } public RA_ShipLinesQuery setRemark(String value) { this.Remark = value; return this; } public String getRemarkStartsWith() { return RemarkStartsWith; } public RA_ShipLinesQuery setRemarkStartsWith(String value) { this.RemarkStartsWith = value; return this; } public String getRemarkEndsWith() { return RemarkEndsWith; } public RA_ShipLinesQuery setRemarkEndsWith(String value) { this.RemarkEndsWith = value; return this; } public String getRemarkContains() { return RemarkContains; } public RA_ShipLinesQuery setRemarkContains(String value) { this.RemarkContains = value; return this; } public String getRemarkLike() { return RemarkLike; } public RA_ShipLinesQuery setRemarkLike(String value) { this.RemarkLike = value; return this; } public ArrayList getRemarkBetween() { return RemarkBetween; } public RA_ShipLinesQuery setRemarkBetween(ArrayList value) { this.RemarkBetween = value; return this; } public ArrayList getRemarkIn() { return RemarkIn; } public RA_ShipLinesQuery setRemarkIn(ArrayList value) { this.RemarkIn = value; return this; } public BigDecimal getUnitReturnValue() { return UnitReturnValue; } public RA_ShipLinesQuery setUnitReturnValue(BigDecimal value) { this.UnitReturnValue = value; return this; } public BigDecimal getUnitReturnValueGreaterThanOrEqualTo() { return UnitReturnValueGreaterThanOrEqualTo; } public RA_ShipLinesQuery setUnitReturnValueGreaterThanOrEqualTo(BigDecimal value) { this.UnitReturnValueGreaterThanOrEqualTo = value; return this; } public BigDecimal getUnitReturnValueGreaterThan() { return UnitReturnValueGreaterThan; } public RA_ShipLinesQuery setUnitReturnValueGreaterThan(BigDecimal value) { this.UnitReturnValueGreaterThan = value; return this; } public BigDecimal getUnitReturnValueLessThan() { return UnitReturnValueLessThan; } public RA_ShipLinesQuery setUnitReturnValueLessThan(BigDecimal value) { this.UnitReturnValueLessThan = value; return this; } public BigDecimal getUnitReturnValueLessThanOrEqualTo() { return UnitReturnValueLessThanOrEqualTo; } public RA_ShipLinesQuery setUnitReturnValueLessThanOrEqualTo(BigDecimal value) { this.UnitReturnValueLessThanOrEqualTo = value; return this; } public BigDecimal getUnitReturnValueNotEqualTo() { return UnitReturnValueNotEqualTo; } public RA_ShipLinesQuery setUnitReturnValueNotEqualTo(BigDecimal value) { this.UnitReturnValueNotEqualTo = value; return this; } public ArrayList getUnitReturnValueBetween() { return UnitReturnValueBetween; } public RA_ShipLinesQuery setUnitReturnValueBetween(ArrayList value) { this.UnitReturnValueBetween = value; return this; } public ArrayList getUnitReturnValueIn() { return UnitReturnValueIn; } public RA_ShipLinesQuery setUnitReturnValueIn(ArrayList value) { this.UnitReturnValueIn = value; return this; } public BigDecimal getTotalReturnValue() { return TotalReturnValue; } public RA_ShipLinesQuery setTotalReturnValue(BigDecimal value) { this.TotalReturnValue = value; return this; } public BigDecimal getTotalReturnValueGreaterThanOrEqualTo() { return TotalReturnValueGreaterThanOrEqualTo; } public RA_ShipLinesQuery setTotalReturnValueGreaterThanOrEqualTo(BigDecimal value) { this.TotalReturnValueGreaterThanOrEqualTo = value; return this; } public BigDecimal getTotalReturnValueGreaterThan() { return TotalReturnValueGreaterThan; } public RA_ShipLinesQuery setTotalReturnValueGreaterThan(BigDecimal value) { this.TotalReturnValueGreaterThan = value; return this; } public BigDecimal getTotalReturnValueLessThan() { return TotalReturnValueLessThan; } public RA_ShipLinesQuery setTotalReturnValueLessThan(BigDecimal value) { this.TotalReturnValueLessThan = value; return this; } public BigDecimal getTotalReturnValueLessThanOrEqualTo() { return TotalReturnValueLessThanOrEqualTo; } public RA_ShipLinesQuery setTotalReturnValueLessThanOrEqualTo(BigDecimal value) { this.TotalReturnValueLessThanOrEqualTo = value; return this; } public BigDecimal getTotalReturnValueNotEqualTo() { return TotalReturnValueNotEqualTo; } public RA_ShipLinesQuery setTotalReturnValueNotEqualTo(BigDecimal value) { this.TotalReturnValueNotEqualTo = value; return this; } public ArrayList getTotalReturnValueBetween() { return TotalReturnValueBetween; } public RA_ShipLinesQuery setTotalReturnValueBetween(ArrayList value) { this.TotalReturnValueBetween = value; return this; } public ArrayList getTotalReturnValueIn() { return TotalReturnValueIn; } public RA_ShipLinesQuery setTotalReturnValueIn(ArrayList value) { this.TotalReturnValueIn = value; return this; } public String getRaRequestLinesRecID() { return RA_RequestLines_RecID; } public RA_ShipLinesQuery setRaRequestLinesRecID(String value) { this.RA_RequestLines_RecID = value; return this; } public String getRaRequestLinesRecIDStartsWith() { return RA_RequestLines_RecIDStartsWith; } public RA_ShipLinesQuery setRaRequestLinesRecIDStartsWith(String value) { this.RA_RequestLines_RecIDStartsWith = value; return this; } public String getRaRequestLinesRecIDEndsWith() { return RA_RequestLines_RecIDEndsWith; } public RA_ShipLinesQuery setRaRequestLinesRecIDEndsWith(String value) { this.RA_RequestLines_RecIDEndsWith = value; return this; } public String getRaRequestLinesRecIDContains() { return RA_RequestLines_RecIDContains; } public RA_ShipLinesQuery setRaRequestLinesRecIDContains(String value) { this.RA_RequestLines_RecIDContains = value; return this; } public String getRaRequestLinesRecIDLike() { return RA_RequestLines_RecIDLike; } public RA_ShipLinesQuery setRaRequestLinesRecIDLike(String value) { this.RA_RequestLines_RecIDLike = value; return this; } public ArrayList getRaRequestLinesRecIDBetween() { return RA_RequestLines_RecIDBetween; } public RA_ShipLinesQuery setRaRequestLinesRecIDBetween(ArrayList value) { this.RA_RequestLines_RecIDBetween = value; return this; } public ArrayList getRaRequestLinesRecIDIn() { return RA_RequestLines_RecIDIn; } public RA_ShipLinesQuery setRaRequestLinesRecIDIn(ArrayList value) { this.RA_RequestLines_RecIDIn = value; return this; } public String getTaxID() { return TaxID; } public RA_ShipLinesQuery setTaxID(String value) { this.TaxID = value; return this; } public String getTaxIDStartsWith() { return TaxIDStartsWith; } public RA_ShipLinesQuery setTaxIDStartsWith(String value) { this.TaxIDStartsWith = value; return this; } public String getTaxIDEndsWith() { return TaxIDEndsWith; } public RA_ShipLinesQuery setTaxIDEndsWith(String value) { this.TaxIDEndsWith = value; return this; } public String getTaxIDContains() { return TaxIDContains; } public RA_ShipLinesQuery setTaxIDContains(String value) { this.TaxIDContains = value; return this; } public String getTaxIDLike() { return TaxIDLike; } public RA_ShipLinesQuery setTaxIDLike(String value) { this.TaxIDLike = value; return this; } public ArrayList getTaxIDBetween() { return TaxIDBetween; } public RA_ShipLinesQuery setTaxIDBetween(ArrayList value) { this.TaxIDBetween = value; return this; } public ArrayList getTaxIDIn() { return TaxIDIn; } public RA_ShipLinesQuery setTaxIDIn(ArrayList value) { this.TaxIDIn = value; return this; } public BigDecimal getTaxAmount() { return TaxAmount; } public RA_ShipLinesQuery setTaxAmount(BigDecimal value) { this.TaxAmount = value; return this; } public BigDecimal getTaxAmountGreaterThanOrEqualTo() { return TaxAmountGreaterThanOrEqualTo; } public RA_ShipLinesQuery setTaxAmountGreaterThanOrEqualTo(BigDecimal value) { this.TaxAmountGreaterThanOrEqualTo = value; return this; } public BigDecimal getTaxAmountGreaterThan() { return TaxAmountGreaterThan; } public RA_ShipLinesQuery setTaxAmountGreaterThan(BigDecimal value) { this.TaxAmountGreaterThan = value; return this; } public BigDecimal getTaxAmountLessThan() { return TaxAmountLessThan; } public RA_ShipLinesQuery setTaxAmountLessThan(BigDecimal value) { this.TaxAmountLessThan = value; return this; } public BigDecimal getTaxAmountLessThanOrEqualTo() { return TaxAmountLessThanOrEqualTo; } public RA_ShipLinesQuery setTaxAmountLessThanOrEqualTo(BigDecimal value) { this.TaxAmountLessThanOrEqualTo = value; return this; } public BigDecimal getTaxAmountNotEqualTo() { return TaxAmountNotEqualTo; } public RA_ShipLinesQuery setTaxAmountNotEqualTo(BigDecimal value) { this.TaxAmountNotEqualTo = value; return this; } public ArrayList getTaxAmountBetween() { return TaxAmountBetween; } public RA_ShipLinesQuery setTaxAmountBetween(ArrayList value) { this.TaxAmountBetween = value; return this; } public ArrayList getTaxAmountIn() { return TaxAmountIn; } public RA_ShipLinesQuery setTaxAmountIn(ArrayList value) { this.TaxAmountIn = value; return this; } public ArrayList getRowHash() { return RowHash; } public RA_ShipLinesQuery setRowHash(ArrayList value) { this.RowHash = value; return this; } public BigDecimal getFxUnitReturnValue() { return FXUnitReturnValue; } public RA_ShipLinesQuery setFxUnitReturnValue(BigDecimal value) { this.FXUnitReturnValue = value; return this; } public BigDecimal getFxUnitReturnValueGreaterThanOrEqualTo() { return FXUnitReturnValueGreaterThanOrEqualTo; } public RA_ShipLinesQuery setFxUnitReturnValueGreaterThanOrEqualTo(BigDecimal value) { this.FXUnitReturnValueGreaterThanOrEqualTo = value; return this; } public BigDecimal getFxUnitReturnValueGreaterThan() { return FXUnitReturnValueGreaterThan; } public RA_ShipLinesQuery setFxUnitReturnValueGreaterThan(BigDecimal value) { this.FXUnitReturnValueGreaterThan = value; return this; } public BigDecimal getFxUnitReturnValueLessThan() { return FXUnitReturnValueLessThan; } public RA_ShipLinesQuery setFxUnitReturnValueLessThan(BigDecimal value) { this.FXUnitReturnValueLessThan = value; return this; } public BigDecimal getFxUnitReturnValueLessThanOrEqualTo() { return FXUnitReturnValueLessThanOrEqualTo; } public RA_ShipLinesQuery setFxUnitReturnValueLessThanOrEqualTo(BigDecimal value) { this.FXUnitReturnValueLessThanOrEqualTo = value; return this; } public BigDecimal getFxUnitReturnValueNotEqualTo() { return FXUnitReturnValueNotEqualTo; } public RA_ShipLinesQuery setFxUnitReturnValueNotEqualTo(BigDecimal value) { this.FXUnitReturnValueNotEqualTo = value; return this; } public ArrayList getFxUnitReturnValueBetween() { return FXUnitReturnValueBetween; } public RA_ShipLinesQuery setFxUnitReturnValueBetween(ArrayList value) { this.FXUnitReturnValueBetween = value; return this; } public ArrayList getFxUnitReturnValueIn() { return FXUnitReturnValueIn; } public RA_ShipLinesQuery setFxUnitReturnValueIn(ArrayList value) { this.FXUnitReturnValueIn = value; return this; } public BigDecimal getFxTotalReturnValue() { return FXTotalReturnValue; } public RA_ShipLinesQuery setFxTotalReturnValue(BigDecimal value) { this.FXTotalReturnValue = value; return this; } public BigDecimal getFxTotalReturnValueGreaterThanOrEqualTo() { return FXTotalReturnValueGreaterThanOrEqualTo; } public RA_ShipLinesQuery setFxTotalReturnValueGreaterThanOrEqualTo(BigDecimal value) { this.FXTotalReturnValueGreaterThanOrEqualTo = value; return this; } public BigDecimal getFxTotalReturnValueGreaterThan() { return FXTotalReturnValueGreaterThan; } public RA_ShipLinesQuery setFxTotalReturnValueGreaterThan(BigDecimal value) { this.FXTotalReturnValueGreaterThan = value; return this; } public BigDecimal getFxTotalReturnValueLessThan() { return FXTotalReturnValueLessThan; } public RA_ShipLinesQuery setFxTotalReturnValueLessThan(BigDecimal value) { this.FXTotalReturnValueLessThan = value; return this; } public BigDecimal getFxTotalReturnValueLessThanOrEqualTo() { return FXTotalReturnValueLessThanOrEqualTo; } public RA_ShipLinesQuery setFxTotalReturnValueLessThanOrEqualTo(BigDecimal value) { this.FXTotalReturnValueLessThanOrEqualTo = value; return this; } public BigDecimal getFxTotalReturnValueNotEqualTo() { return FXTotalReturnValueNotEqualTo; } public RA_ShipLinesQuery setFxTotalReturnValueNotEqualTo(BigDecimal value) { this.FXTotalReturnValueNotEqualTo = value; return this; } public ArrayList getFxTotalReturnValueBetween() { return FXTotalReturnValueBetween; } public RA_ShipLinesQuery setFxTotalReturnValueBetween(ArrayList value) { this.FXTotalReturnValueBetween = value; return this; } public ArrayList getFxTotalReturnValueIn() { return FXTotalReturnValueIn; } public RA_ShipLinesQuery setFxTotalReturnValueIn(ArrayList value) { this.FXTotalReturnValueIn = value; return this; } public BigDecimal getFxRate() { return FXRate; } public RA_ShipLinesQuery setFxRate(BigDecimal value) { this.FXRate = value; return this; } public BigDecimal getFxRateGreaterThanOrEqualTo() { return FXRateGreaterThanOrEqualTo; } public RA_ShipLinesQuery setFxRateGreaterThanOrEqualTo(BigDecimal value) { this.FXRateGreaterThanOrEqualTo = value; return this; } public BigDecimal getFxRateGreaterThan() { return FXRateGreaterThan; } public RA_ShipLinesQuery setFxRateGreaterThan(BigDecimal value) { this.FXRateGreaterThan = value; return this; } public BigDecimal getFxRateLessThan() { return FXRateLessThan; } public RA_ShipLinesQuery setFxRateLessThan(BigDecimal value) { this.FXRateLessThan = value; return this; } public BigDecimal getFxRateLessThanOrEqualTo() { return FXRateLessThanOrEqualTo; } public RA_ShipLinesQuery setFxRateLessThanOrEqualTo(BigDecimal value) { this.FXRateLessThanOrEqualTo = value; return this; } public BigDecimal getFxRateNotEqualTo() { return FXRateNotEqualTo; } public RA_ShipLinesQuery setFxRateNotEqualTo(BigDecimal value) { this.FXRateNotEqualTo = value; return this; } public ArrayList getFxRateBetween() { return FXRateBetween; } public RA_ShipLinesQuery setFxRateBetween(ArrayList value) { this.FXRateBetween = value; return this; } public ArrayList getFxRateIn() { return FXRateIn; } public RA_ShipLinesQuery setFxRateIn(ArrayList value) { this.FXRateIn = value; return this; } public String getPoLinesOrderLineID() { return PO_Lines_OrderLineID; } public RA_ShipLinesQuery setPoLinesOrderLineID(String value) { this.PO_Lines_OrderLineID = value; return this; } public String getPoLinesOrderLineIDStartsWith() { return PO_Lines_OrderLineIDStartsWith; } public RA_ShipLinesQuery setPoLinesOrderLineIDStartsWith(String value) { this.PO_Lines_OrderLineIDStartsWith = value; return this; } public String getPoLinesOrderLineIDEndsWith() { return PO_Lines_OrderLineIDEndsWith; } public RA_ShipLinesQuery setPoLinesOrderLineIDEndsWith(String value) { this.PO_Lines_OrderLineIDEndsWith = value; return this; } public String getPoLinesOrderLineIDContains() { return PO_Lines_OrderLineIDContains; } public RA_ShipLinesQuery setPoLinesOrderLineIDContains(String value) { this.PO_Lines_OrderLineIDContains = value; return this; } public String getPoLinesOrderLineIDLike() { return PO_Lines_OrderLineIDLike; } public RA_ShipLinesQuery setPoLinesOrderLineIDLike(String value) { this.PO_Lines_OrderLineIDLike = value; return this; } public ArrayList getPoLinesOrderLineIDBetween() { return PO_Lines_OrderLineIDBetween; } public RA_ShipLinesQuery setPoLinesOrderLineIDBetween(ArrayList value) { this.PO_Lines_OrderLineIDBetween = value; return this; } public ArrayList getPoLinesOrderLineIDIn() { return PO_Lines_OrderLineIDIn; } public RA_ShipLinesQuery setPoLinesOrderLineIDIn(ArrayList value) { this.PO_Lines_OrderLineIDIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class RA_ShipLinesCustomFieldsQuery extends QueryDb implements IReturn> { public String RecID = null; public String RecIDStartsWith = null; public String RecIDEndsWith = null; public String RecIDContains = null; public String RecIDLike = null; public ArrayList RecIDBetween = null; public ArrayList RecIDIn = null; public String SettingName = null; public String SettingNameStartsWith = null; public String SettingNameEndsWith = null; public String SettingNameContains = null; public String SettingNameLike = null; public ArrayList SettingNameBetween = null; public ArrayList SettingNameIn = null; public String SettingDescription = null; public String SettingDescriptionStartsWith = null; public String SettingDescriptionEndsWith = null; public String SettingDescriptionContains = null; public String SettingDescriptionLike = null; public ArrayList SettingDescriptionBetween = null; public ArrayList SettingDescriptionIn = null; public Integer CellType = null; public Integer CellTypeGreaterThanOrEqualTo = null; public Integer CellTypeGreaterThan = null; public Integer CellTypeLessThan = null; public Integer CellTypeLessThanOrEqualTo = null; public Integer CellTypeNotEqualTo = null; public ArrayList CellTypeBetween = null; public ArrayList CellTypeIn = null; public String FieldParameter = null; public String FieldParameterStartsWith = null; public String FieldParameterEndsWith = null; public String FieldParameterContains = null; public String FieldParameterLike = null; public ArrayList FieldParameterBetween = null; public ArrayList FieldParameterIn = null; public UUID SY_Plugin_RecID = null; public ArrayList SY_Plugin_RecIDIn = null; public Date LastSavedDateTime = null; public Date LastSavedDateTimeGreaterThanOrEqualTo = null; public Date LastSavedDateTimeGreaterThan = null; public Date LastSavedDateTimeLessThan = null; public Date LastSavedDateTimeLessThanOrEqualTo = null; public Date LastSavedDateTimeNotEqualTo = null; public ArrayList LastSavedDateTimeBetween = null; public ArrayList LastSavedDateTimeIn = null; public Integer DisplayOrder = null; public Integer DisplayOrderGreaterThanOrEqualTo = null; public Integer DisplayOrderGreaterThan = null; public Integer DisplayOrderLessThan = null; public Integer DisplayOrderLessThanOrEqualTo = null; public Integer DisplayOrderNotEqualTo = null; public ArrayList DisplayOrderBetween = null; public ArrayList DisplayOrderIn = null; public String getRecID() { return RecID; } public RA_ShipLinesCustomFieldsQuery setRecID(String value) { this.RecID = value; return this; } public String getRecIDStartsWith() { return RecIDStartsWith; } public RA_ShipLinesCustomFieldsQuery setRecIDStartsWith(String value) { this.RecIDStartsWith = value; return this; } public String getRecIDEndsWith() { return RecIDEndsWith; } public RA_ShipLinesCustomFieldsQuery setRecIDEndsWith(String value) { this.RecIDEndsWith = value; return this; } public String getRecIDContains() { return RecIDContains; } public RA_ShipLinesCustomFieldsQuery setRecIDContains(String value) { this.RecIDContains = value; return this; } public String getRecIDLike() { return RecIDLike; } public RA_ShipLinesCustomFieldsQuery setRecIDLike(String value) { this.RecIDLike = value; return this; } public ArrayList getRecIDBetween() { return RecIDBetween; } public RA_ShipLinesCustomFieldsQuery setRecIDBetween(ArrayList value) { this.RecIDBetween = value; return this; } public ArrayList getRecIDIn() { return RecIDIn; } public RA_ShipLinesCustomFieldsQuery setRecIDIn(ArrayList value) { this.RecIDIn = value; return this; } public String getSettingName() { return SettingName; } public RA_ShipLinesCustomFieldsQuery setSettingName(String value) { this.SettingName = value; return this; } public String getSettingNameStartsWith() { return SettingNameStartsWith; } public RA_ShipLinesCustomFieldsQuery setSettingNameStartsWith(String value) { this.SettingNameStartsWith = value; return this; } public String getSettingNameEndsWith() { return SettingNameEndsWith; } public RA_ShipLinesCustomFieldsQuery setSettingNameEndsWith(String value) { this.SettingNameEndsWith = value; return this; } public String getSettingNameContains() { return SettingNameContains; } public RA_ShipLinesCustomFieldsQuery setSettingNameContains(String value) { this.SettingNameContains = value; return this; } public String getSettingNameLike() { return SettingNameLike; } public RA_ShipLinesCustomFieldsQuery setSettingNameLike(String value) { this.SettingNameLike = value; return this; } public ArrayList getSettingNameBetween() { return SettingNameBetween; } public RA_ShipLinesCustomFieldsQuery setSettingNameBetween(ArrayList value) { this.SettingNameBetween = value; return this; } public ArrayList getSettingNameIn() { return SettingNameIn; } public RA_ShipLinesCustomFieldsQuery setSettingNameIn(ArrayList value) { this.SettingNameIn = value; return this; } public String getSettingDescription() { return SettingDescription; } public RA_ShipLinesCustomFieldsQuery setSettingDescription(String value) { this.SettingDescription = value; return this; } public String getSettingDescriptionStartsWith() { return SettingDescriptionStartsWith; } public RA_ShipLinesCustomFieldsQuery setSettingDescriptionStartsWith(String value) { this.SettingDescriptionStartsWith = value; return this; } public String getSettingDescriptionEndsWith() { return SettingDescriptionEndsWith; } public RA_ShipLinesCustomFieldsQuery setSettingDescriptionEndsWith(String value) { this.SettingDescriptionEndsWith = value; return this; } public String getSettingDescriptionContains() { return SettingDescriptionContains; } public RA_ShipLinesCustomFieldsQuery setSettingDescriptionContains(String value) { this.SettingDescriptionContains = value; return this; } public String getSettingDescriptionLike() { return SettingDescriptionLike; } public RA_ShipLinesCustomFieldsQuery setSettingDescriptionLike(String value) { this.SettingDescriptionLike = value; return this; } public ArrayList getSettingDescriptionBetween() { return SettingDescriptionBetween; } public RA_ShipLinesCustomFieldsQuery setSettingDescriptionBetween(ArrayList value) { this.SettingDescriptionBetween = value; return this; } public ArrayList getSettingDescriptionIn() { return SettingDescriptionIn; } public RA_ShipLinesCustomFieldsQuery setSettingDescriptionIn(ArrayList value) { this.SettingDescriptionIn = value; return this; } public Integer getCellType() { return CellType; } public RA_ShipLinesCustomFieldsQuery setCellType(Integer value) { this.CellType = value; return this; } public Integer getCellTypeGreaterThanOrEqualTo() { return CellTypeGreaterThanOrEqualTo; } public RA_ShipLinesCustomFieldsQuery setCellTypeGreaterThanOrEqualTo(Integer value) { this.CellTypeGreaterThanOrEqualTo = value; return this; } public Integer getCellTypeGreaterThan() { return CellTypeGreaterThan; } public RA_ShipLinesCustomFieldsQuery setCellTypeGreaterThan(Integer value) { this.CellTypeGreaterThan = value; return this; } public Integer getCellTypeLessThan() { return CellTypeLessThan; } public RA_ShipLinesCustomFieldsQuery setCellTypeLessThan(Integer value) { this.CellTypeLessThan = value; return this; } public Integer getCellTypeLessThanOrEqualTo() { return CellTypeLessThanOrEqualTo; } public RA_ShipLinesCustomFieldsQuery setCellTypeLessThanOrEqualTo(Integer value) { this.CellTypeLessThanOrEqualTo = value; return this; } public Integer getCellTypeNotEqualTo() { return CellTypeNotEqualTo; } public RA_ShipLinesCustomFieldsQuery setCellTypeNotEqualTo(Integer value) { this.CellTypeNotEqualTo = value; return this; } public ArrayList getCellTypeBetween() { return CellTypeBetween; } public RA_ShipLinesCustomFieldsQuery setCellTypeBetween(ArrayList value) { this.CellTypeBetween = value; return this; } public ArrayList getCellTypeIn() { return CellTypeIn; } public RA_ShipLinesCustomFieldsQuery setCellTypeIn(ArrayList value) { this.CellTypeIn = value; return this; } public String getFieldParameter() { return FieldParameter; } public RA_ShipLinesCustomFieldsQuery setFieldParameter(String value) { this.FieldParameter = value; return this; } public String getFieldParameterStartsWith() { return FieldParameterStartsWith; } public RA_ShipLinesCustomFieldsQuery setFieldParameterStartsWith(String value) { this.FieldParameterStartsWith = value; return this; } public String getFieldParameterEndsWith() { return FieldParameterEndsWith; } public RA_ShipLinesCustomFieldsQuery setFieldParameterEndsWith(String value) { this.FieldParameterEndsWith = value; return this; } public String getFieldParameterContains() { return FieldParameterContains; } public RA_ShipLinesCustomFieldsQuery setFieldParameterContains(String value) { this.FieldParameterContains = value; return this; } public String getFieldParameterLike() { return FieldParameterLike; } public RA_ShipLinesCustomFieldsQuery setFieldParameterLike(String value) { this.FieldParameterLike = value; return this; } public ArrayList getFieldParameterBetween() { return FieldParameterBetween; } public RA_ShipLinesCustomFieldsQuery setFieldParameterBetween(ArrayList value) { this.FieldParameterBetween = value; return this; } public ArrayList getFieldParameterIn() { return FieldParameterIn; } public RA_ShipLinesCustomFieldsQuery setFieldParameterIn(ArrayList value) { this.FieldParameterIn = value; return this; } public UUID getSyPluginRecID() { return SY_Plugin_RecID; } public RA_ShipLinesCustomFieldsQuery setSyPluginRecID(UUID value) { this.SY_Plugin_RecID = value; return this; } public ArrayList getSyPluginRecIDIn() { return SY_Plugin_RecIDIn; } public RA_ShipLinesCustomFieldsQuery setSyPluginRecIDIn(ArrayList value) { this.SY_Plugin_RecIDIn = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public RA_ShipLinesCustomFieldsQuery setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getLastSavedDateTimeGreaterThanOrEqualTo() { return LastSavedDateTimeGreaterThanOrEqualTo; } public RA_ShipLinesCustomFieldsQuery setLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.LastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeGreaterThan() { return LastSavedDateTimeGreaterThan; } public RA_ShipLinesCustomFieldsQuery setLastSavedDateTimeGreaterThan(Date value) { this.LastSavedDateTimeGreaterThan = value; return this; } public Date getLastSavedDateTimeLessThan() { return LastSavedDateTimeLessThan; } public RA_ShipLinesCustomFieldsQuery setLastSavedDateTimeLessThan(Date value) { this.LastSavedDateTimeLessThan = value; return this; } public Date getLastSavedDateTimeLessThanOrEqualTo() { return LastSavedDateTimeLessThanOrEqualTo; } public RA_ShipLinesCustomFieldsQuery setLastSavedDateTimeLessThanOrEqualTo(Date value) { this.LastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeNotEqualTo() { return LastSavedDateTimeNotEqualTo; } public RA_ShipLinesCustomFieldsQuery setLastSavedDateTimeNotEqualTo(Date value) { this.LastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getLastSavedDateTimeBetween() { return LastSavedDateTimeBetween; } public RA_ShipLinesCustomFieldsQuery setLastSavedDateTimeBetween(ArrayList value) { this.LastSavedDateTimeBetween = value; return this; } public ArrayList getLastSavedDateTimeIn() { return LastSavedDateTimeIn; } public RA_ShipLinesCustomFieldsQuery setLastSavedDateTimeIn(ArrayList value) { this.LastSavedDateTimeIn = value; return this; } public Integer getDisplayOrder() { return DisplayOrder; } public RA_ShipLinesCustomFieldsQuery setDisplayOrder(Integer value) { this.DisplayOrder = value; return this; } public Integer getDisplayOrderGreaterThanOrEqualTo() { return DisplayOrderGreaterThanOrEqualTo; } public RA_ShipLinesCustomFieldsQuery setDisplayOrderGreaterThanOrEqualTo(Integer value) { this.DisplayOrderGreaterThanOrEqualTo = value; return this; } public Integer getDisplayOrderGreaterThan() { return DisplayOrderGreaterThan; } public RA_ShipLinesCustomFieldsQuery setDisplayOrderGreaterThan(Integer value) { this.DisplayOrderGreaterThan = value; return this; } public Integer getDisplayOrderLessThan() { return DisplayOrderLessThan; } public RA_ShipLinesCustomFieldsQuery setDisplayOrderLessThan(Integer value) { this.DisplayOrderLessThan = value; return this; } public Integer getDisplayOrderLessThanOrEqualTo() { return DisplayOrderLessThanOrEqualTo; } public RA_ShipLinesCustomFieldsQuery setDisplayOrderLessThanOrEqualTo(Integer value) { this.DisplayOrderLessThanOrEqualTo = value; return this; } public Integer getDisplayOrderNotEqualTo() { return DisplayOrderNotEqualTo; } public RA_ShipLinesCustomFieldsQuery setDisplayOrderNotEqualTo(Integer value) { this.DisplayOrderNotEqualTo = value; return this; } public ArrayList getDisplayOrderBetween() { return DisplayOrderBetween; } public RA_ShipLinesCustomFieldsQuery setDisplayOrderBetween(ArrayList value) { this.DisplayOrderBetween = value; return this; } public ArrayList getDisplayOrderIn() { return DisplayOrderIn; } public RA_ShipLinesCustomFieldsQuery setDisplayOrderIn(ArrayList value) { this.DisplayOrderIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class RA_ShipLinesCustomValuesQuery extends QueryDb implements IReturn> { public String RecID = null; public String RecIDStartsWith = null; public String RecIDEndsWith = null; public String RecIDContains = null; public String RecIDLike = null; public ArrayList RecIDBetween = null; public ArrayList RecIDIn = null; public String RA_ShipLines_RecID = null; public String RA_ShipLines_RecIDStartsWith = null; public String RA_ShipLines_RecIDEndsWith = null; public String RA_ShipLines_RecIDContains = null; public String RA_ShipLines_RecIDLike = null; public ArrayList RA_ShipLines_RecIDBetween = null; public ArrayList RA_ShipLines_RecIDIn = null; public String RA_ShipLinesCustomFields_RecID = null; public String RA_ShipLinesCustomFields_RecIDStartsWith = null; public String RA_ShipLinesCustomFields_RecIDEndsWith = null; public String RA_ShipLinesCustomFields_RecIDContains = null; public String RA_ShipLinesCustomFields_RecIDLike = null; public ArrayList RA_ShipLinesCustomFields_RecIDBetween = null; public ArrayList RA_ShipLinesCustomFields_RecIDIn = null; public String Contents = null; public String ContentsStartsWith = null; public String ContentsEndsWith = null; public String ContentsContains = null; public String ContentsLike = null; public ArrayList ContentsBetween = null; public ArrayList ContentsIn = null; public Date LastSavedDateTime = null; public Date LastSavedDateTimeGreaterThanOrEqualTo = null; public Date LastSavedDateTimeGreaterThan = null; public Date LastSavedDateTimeLessThan = null; public Date LastSavedDateTimeLessThanOrEqualTo = null; public Date LastSavedDateTimeNotEqualTo = null; public ArrayList LastSavedDateTimeBetween = null; public ArrayList LastSavedDateTimeIn = null; public String getRecID() { return RecID; } public RA_ShipLinesCustomValuesQuery setRecID(String value) { this.RecID = value; return this; } public String getRecIDStartsWith() { return RecIDStartsWith; } public RA_ShipLinesCustomValuesQuery setRecIDStartsWith(String value) { this.RecIDStartsWith = value; return this; } public String getRecIDEndsWith() { return RecIDEndsWith; } public RA_ShipLinesCustomValuesQuery setRecIDEndsWith(String value) { this.RecIDEndsWith = value; return this; } public String getRecIDContains() { return RecIDContains; } public RA_ShipLinesCustomValuesQuery setRecIDContains(String value) { this.RecIDContains = value; return this; } public String getRecIDLike() { return RecIDLike; } public RA_ShipLinesCustomValuesQuery setRecIDLike(String value) { this.RecIDLike = value; return this; } public ArrayList getRecIDBetween() { return RecIDBetween; } public RA_ShipLinesCustomValuesQuery setRecIDBetween(ArrayList value) { this.RecIDBetween = value; return this; } public ArrayList getRecIDIn() { return RecIDIn; } public RA_ShipLinesCustomValuesQuery setRecIDIn(ArrayList value) { this.RecIDIn = value; return this; } public String getRaShipLinesRecID() { return RA_ShipLines_RecID; } public RA_ShipLinesCustomValuesQuery setRaShipLinesRecID(String value) { this.RA_ShipLines_RecID = value; return this; } public String getRaShipLinesRecIDStartsWith() { return RA_ShipLines_RecIDStartsWith; } public RA_ShipLinesCustomValuesQuery setRaShipLinesRecIDStartsWith(String value) { this.RA_ShipLines_RecIDStartsWith = value; return this; } public String getRaShipLinesRecIDEndsWith() { return RA_ShipLines_RecIDEndsWith; } public RA_ShipLinesCustomValuesQuery setRaShipLinesRecIDEndsWith(String value) { this.RA_ShipLines_RecIDEndsWith = value; return this; } public String getRaShipLinesRecIDContains() { return RA_ShipLines_RecIDContains; } public RA_ShipLinesCustomValuesQuery setRaShipLinesRecIDContains(String value) { this.RA_ShipLines_RecIDContains = value; return this; } public String getRaShipLinesRecIDLike() { return RA_ShipLines_RecIDLike; } public RA_ShipLinesCustomValuesQuery setRaShipLinesRecIDLike(String value) { this.RA_ShipLines_RecIDLike = value; return this; } public ArrayList getRaShipLinesRecIDBetween() { return RA_ShipLines_RecIDBetween; } public RA_ShipLinesCustomValuesQuery setRaShipLinesRecIDBetween(ArrayList value) { this.RA_ShipLines_RecIDBetween = value; return this; } public ArrayList getRaShipLinesRecIDIn() { return RA_ShipLines_RecIDIn; } public RA_ShipLinesCustomValuesQuery setRaShipLinesRecIDIn(ArrayList value) { this.RA_ShipLines_RecIDIn = value; return this; } public String getRaShipLinesCustomFieldsRecID() { return RA_ShipLinesCustomFields_RecID; } public RA_ShipLinesCustomValuesQuery setRaShipLinesCustomFieldsRecID(String value) { this.RA_ShipLinesCustomFields_RecID = value; return this; } public String getRaShipLinesCustomFieldsRecIDStartsWith() { return RA_ShipLinesCustomFields_RecIDStartsWith; } public RA_ShipLinesCustomValuesQuery setRaShipLinesCustomFieldsRecIDStartsWith(String value) { this.RA_ShipLinesCustomFields_RecIDStartsWith = value; return this; } public String getRaShipLinesCustomFieldsRecIDEndsWith() { return RA_ShipLinesCustomFields_RecIDEndsWith; } public RA_ShipLinesCustomValuesQuery setRaShipLinesCustomFieldsRecIDEndsWith(String value) { this.RA_ShipLinesCustomFields_RecIDEndsWith = value; return this; } public String getRaShipLinesCustomFieldsRecIDContains() { return RA_ShipLinesCustomFields_RecIDContains; } public RA_ShipLinesCustomValuesQuery setRaShipLinesCustomFieldsRecIDContains(String value) { this.RA_ShipLinesCustomFields_RecIDContains = value; return this; } public String getRaShipLinesCustomFieldsRecIDLike() { return RA_ShipLinesCustomFields_RecIDLike; } public RA_ShipLinesCustomValuesQuery setRaShipLinesCustomFieldsRecIDLike(String value) { this.RA_ShipLinesCustomFields_RecIDLike = value; return this; } public ArrayList getRaShipLinesCustomFieldsRecIDBetween() { return RA_ShipLinesCustomFields_RecIDBetween; } public RA_ShipLinesCustomValuesQuery setRaShipLinesCustomFieldsRecIDBetween(ArrayList value) { this.RA_ShipLinesCustomFields_RecIDBetween = value; return this; } public ArrayList getRaShipLinesCustomFieldsRecIDIn() { return RA_ShipLinesCustomFields_RecIDIn; } public RA_ShipLinesCustomValuesQuery setRaShipLinesCustomFieldsRecIDIn(ArrayList value) { this.RA_ShipLinesCustomFields_RecIDIn = value; return this; } public String getContents() { return Contents; } public RA_ShipLinesCustomValuesQuery setContents(String value) { this.Contents = value; return this; } public String getContentsStartsWith() { return ContentsStartsWith; } public RA_ShipLinesCustomValuesQuery setContentsStartsWith(String value) { this.ContentsStartsWith = value; return this; } public String getContentsEndsWith() { return ContentsEndsWith; } public RA_ShipLinesCustomValuesQuery setContentsEndsWith(String value) { this.ContentsEndsWith = value; return this; } public String getContentsContains() { return ContentsContains; } public RA_ShipLinesCustomValuesQuery setContentsContains(String value) { this.ContentsContains = value; return this; } public String getContentsLike() { return ContentsLike; } public RA_ShipLinesCustomValuesQuery setContentsLike(String value) { this.ContentsLike = value; return this; } public ArrayList getContentsBetween() { return ContentsBetween; } public RA_ShipLinesCustomValuesQuery setContentsBetween(ArrayList value) { this.ContentsBetween = value; return this; } public ArrayList getContentsIn() { return ContentsIn; } public RA_ShipLinesCustomValuesQuery setContentsIn(ArrayList value) { this.ContentsIn = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public RA_ShipLinesCustomValuesQuery setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getLastSavedDateTimeGreaterThanOrEqualTo() { return LastSavedDateTimeGreaterThanOrEqualTo; } public RA_ShipLinesCustomValuesQuery setLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.LastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeGreaterThan() { return LastSavedDateTimeGreaterThan; } public RA_ShipLinesCustomValuesQuery setLastSavedDateTimeGreaterThan(Date value) { this.LastSavedDateTimeGreaterThan = value; return this; } public Date getLastSavedDateTimeLessThan() { return LastSavedDateTimeLessThan; } public RA_ShipLinesCustomValuesQuery setLastSavedDateTimeLessThan(Date value) { this.LastSavedDateTimeLessThan = value; return this; } public Date getLastSavedDateTimeLessThanOrEqualTo() { return LastSavedDateTimeLessThanOrEqualTo; } public RA_ShipLinesCustomValuesQuery setLastSavedDateTimeLessThanOrEqualTo(Date value) { this.LastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeNotEqualTo() { return LastSavedDateTimeNotEqualTo; } public RA_ShipLinesCustomValuesQuery setLastSavedDateTimeNotEqualTo(Date value) { this.LastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getLastSavedDateTimeBetween() { return LastSavedDateTimeBetween; } public RA_ShipLinesCustomValuesQuery setLastSavedDateTimeBetween(ArrayList value) { this.LastSavedDateTimeBetween = value; return this; } public ArrayList getLastSavedDateTimeIn() { return LastSavedDateTimeIn; } public RA_ShipLinesCustomValuesQuery setLastSavedDateTimeIn(ArrayList value) { this.LastSavedDateTimeIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class RA_ShipMainQuery extends QueryDb implements IReturn> { public String RecID = null; public String RecIDStartsWith = null; public String RecIDEndsWith = null; public String RecIDContains = null; public String RecIDLike = null; public ArrayList RecIDBetween = null; public ArrayList RecIDIn = null; public String ShippingNo = null; public String ShippingNoStartsWith = null; public String ShippingNoEndsWith = null; public String ShippingNoContains = null; public String ShippingNoLike = null; public ArrayList ShippingNoBetween = null; public ArrayList ShippingNoIn = null; public String RANumber = null; public String RANumberStartsWith = null; public String RANumberEndsWith = null; public String RANumberContains = null; public String RANumberLike = null; public ArrayList RANumberBetween = null; public ArrayList RANumberIn = null; public String Reference = null; public String ReferenceStartsWith = null; public String ReferenceEndsWith = null; public String ReferenceContains = null; public String ReferenceLike = null; public ArrayList ReferenceBetween = null; public ArrayList ReferenceIn = null; public String WarehouseID = null; public String WarehouseIDStartsWith = null; public String WarehouseIDEndsWith = null; public String WarehouseIDContains = null; public String WarehouseIDLike = null; public ArrayList WarehouseIDBetween = null; public ArrayList WarehouseIDIn = null; public Short Status = null; public Short StatusGreaterThanOrEqualTo = null; public Short StatusGreaterThan = null; public Short StatusLessThan = null; public Short StatusLessThanOrEqualTo = null; public Short StatusNotEqualTo = null; public ArrayList StatusBetween = null; public ArrayList StatusIn = null; public Date LastSavedDateTime = null; public Date LastSavedDateTimeGreaterThanOrEqualTo = null; public Date LastSavedDateTimeGreaterThan = null; public Date LastSavedDateTimeLessThan = null; public Date LastSavedDateTimeLessThanOrEqualTo = null; public Date LastSavedDateTimeNotEqualTo = null; public ArrayList LastSavedDateTimeBetween = null; public ArrayList LastSavedDateTimeIn = null; public String CreatedBy = null; public String CreatedByStartsWith = null; public String CreatedByEndsWith = null; public String CreatedByContains = null; public String CreatedByLike = null; public ArrayList CreatedByBetween = null; public ArrayList CreatedByIn = null; public String ReturnCode = null; public String ReturnCodeStartsWith = null; public String ReturnCodeEndsWith = null; public String ReturnCodeContains = null; public String ReturnCodeLike = null; public ArrayList ReturnCodeBetween = null; public ArrayList ReturnCodeIn = null; public String DeliveryStreetAddress1 = null; public String DeliveryStreetAddress1StartsWith = null; public String DeliveryStreetAddress1EndsWith = null; public String DeliveryStreetAddress1Contains = null; public String DeliveryStreetAddress1Like = null; public ArrayList DeliveryStreetAddress1Between = null; public ArrayList DeliveryStreetAddress1In = null; public String DeliveryStreetAddress2 = null; public String DeliveryStreetAddress2StartsWith = null; public String DeliveryStreetAddress2EndsWith = null; public String DeliveryStreetAddress2Contains = null; public String DeliveryStreetAddress2Like = null; public ArrayList DeliveryStreetAddress2Between = null; public ArrayList DeliveryStreetAddress2In = null; public String DeliveryLocality = null; public String DeliveryLocalityStartsWith = null; public String DeliveryLocalityEndsWith = null; public String DeliveryLocalityContains = null; public String DeliveryLocalityLike = null; public ArrayList DeliveryLocalityBetween = null; public ArrayList DeliveryLocalityIn = null; public String DeliveryRegion = null; public String DeliveryRegionStartsWith = null; public String DeliveryRegionEndsWith = null; public String DeliveryRegionContains = null; public String DeliveryRegionLike = null; public ArrayList DeliveryRegionBetween = null; public ArrayList DeliveryRegionIn = null; public String DeliveryPostCode = null; public String DeliveryPostCodeStartsWith = null; public String DeliveryPostCodeEndsWith = null; public String DeliveryPostCodeContains = null; public String DeliveryPostCodeLike = null; public ArrayList DeliveryPostCodeBetween = null; public ArrayList DeliveryPostCodeIn = null; public String ContactName = null; public String ContactNameStartsWith = null; public String ContactNameEndsWith = null; public String ContactNameContains = null; public String ContactNameLike = null; public ArrayList ContactNameBetween = null; public ArrayList ContactNameIn = null; public String Note = null; public String NoteStartsWith = null; public String NoteEndsWith = null; public String NoteContains = null; public String NoteLike = null; public ArrayList NoteBetween = null; public ArrayList NoteIn = null; public String CourierDetails = null; public String CourierDetailsStartsWith = null; public String CourierDetailsEndsWith = null; public String CourierDetailsContains = null; public String CourierDetailsLike = null; public ArrayList CourierDetailsBetween = null; public ArrayList CourierDetailsIn = null; public Date ShippingDate = null; public Date ShippingDateGreaterThanOrEqualTo = null; public Date ShippingDateGreaterThan = null; public Date ShippingDateLessThan = null; public Date ShippingDateLessThanOrEqualTo = null; public Date ShippingDateNotEqualTo = null; public ArrayList ShippingDateBetween = null; public ArrayList ShippingDateIn = null; public String CreditorID = null; public String CreditorIDStartsWith = null; public String CreditorIDEndsWith = null; public String CreditorIDContains = null; public String CreditorIDLike = null; public ArrayList CreditorIDBetween = null; public ArrayList CreditorIDIn = null; public String TransitWarehouseID = null; public String TransitWarehouseIDStartsWith = null; public String TransitWarehouseIDEndsWith = null; public String TransitWarehouseIDContains = null; public String TransitWarehouseIDLike = null; public ArrayList TransitWarehouseIDBetween = null; public ArrayList TransitWarehouseIDIn = null; public ArrayList RowHash = null; public String DeliveryAddressee = null; public String DeliveryAddresseeStartsWith = null; public String DeliveryAddresseeEndsWith = null; public String DeliveryAddresseeContains = null; public String DeliveryAddresseeLike = null; public ArrayList DeliveryAddresseeBetween = null; public ArrayList DeliveryAddresseeIn = null; public String DeliveryCountry = null; public String DeliveryCountryStartsWith = null; public String DeliveryCountryEndsWith = null; public String DeliveryCountryContains = null; public String DeliveryCountryLike = null; public ArrayList DeliveryCountryBetween = null; public ArrayList DeliveryCountryIn = null; public String DeliveryTelephone = null; public String DeliveryTelephoneStartsWith = null; public String DeliveryTelephoneEndsWith = null; public String DeliveryTelephoneContains = null; public String DeliveryTelephoneLike = null; public ArrayList DeliveryTelephoneBetween = null; public ArrayList DeliveryTelephoneIn = null; public String DeliveryFacsimile = null; public String DeliveryFacsimileStartsWith = null; public String DeliveryFacsimileEndsWith = null; public String DeliveryFacsimileContains = null; public String DeliveryFacsimileLike = null; public ArrayList DeliveryFacsimileBetween = null; public ArrayList DeliveryFacsimileIn = null; public String getRecID() { return RecID; } public RA_ShipMainQuery setRecID(String value) { this.RecID = value; return this; } public String getRecIDStartsWith() { return RecIDStartsWith; } public RA_ShipMainQuery setRecIDStartsWith(String value) { this.RecIDStartsWith = value; return this; } public String getRecIDEndsWith() { return RecIDEndsWith; } public RA_ShipMainQuery setRecIDEndsWith(String value) { this.RecIDEndsWith = value; return this; } public String getRecIDContains() { return RecIDContains; } public RA_ShipMainQuery setRecIDContains(String value) { this.RecIDContains = value; return this; } public String getRecIDLike() { return RecIDLike; } public RA_ShipMainQuery setRecIDLike(String value) { this.RecIDLike = value; return this; } public ArrayList getRecIDBetween() { return RecIDBetween; } public RA_ShipMainQuery setRecIDBetween(ArrayList value) { this.RecIDBetween = value; return this; } public ArrayList getRecIDIn() { return RecIDIn; } public RA_ShipMainQuery setRecIDIn(ArrayList value) { this.RecIDIn = value; return this; } public String getShippingNo() { return ShippingNo; } public RA_ShipMainQuery setShippingNo(String value) { this.ShippingNo = value; return this; } public String getShippingNoStartsWith() { return ShippingNoStartsWith; } public RA_ShipMainQuery setShippingNoStartsWith(String value) { this.ShippingNoStartsWith = value; return this; } public String getShippingNoEndsWith() { return ShippingNoEndsWith; } public RA_ShipMainQuery setShippingNoEndsWith(String value) { this.ShippingNoEndsWith = value; return this; } public String getShippingNoContains() { return ShippingNoContains; } public RA_ShipMainQuery setShippingNoContains(String value) { this.ShippingNoContains = value; return this; } public String getShippingNoLike() { return ShippingNoLike; } public RA_ShipMainQuery setShippingNoLike(String value) { this.ShippingNoLike = value; return this; } public ArrayList getShippingNoBetween() { return ShippingNoBetween; } public RA_ShipMainQuery setShippingNoBetween(ArrayList value) { this.ShippingNoBetween = value; return this; } public ArrayList getShippingNoIn() { return ShippingNoIn; } public RA_ShipMainQuery setShippingNoIn(ArrayList value) { this.ShippingNoIn = value; return this; } public String getRaNumber() { return RANumber; } public RA_ShipMainQuery setRaNumber(String value) { this.RANumber = value; return this; } public String getRaNumberStartsWith() { return RANumberStartsWith; } public RA_ShipMainQuery setRaNumberStartsWith(String value) { this.RANumberStartsWith = value; return this; } public String getRaNumberEndsWith() { return RANumberEndsWith; } public RA_ShipMainQuery setRaNumberEndsWith(String value) { this.RANumberEndsWith = value; return this; } public String getRaNumberContains() { return RANumberContains; } public RA_ShipMainQuery setRaNumberContains(String value) { this.RANumberContains = value; return this; } public String getRaNumberLike() { return RANumberLike; } public RA_ShipMainQuery setRaNumberLike(String value) { this.RANumberLike = value; return this; } public ArrayList getRaNumberBetween() { return RANumberBetween; } public RA_ShipMainQuery setRaNumberBetween(ArrayList value) { this.RANumberBetween = value; return this; } public ArrayList getRaNumberIn() { return RANumberIn; } public RA_ShipMainQuery setRaNumberIn(ArrayList value) { this.RANumberIn = value; return this; } public String getReference() { return Reference; } public RA_ShipMainQuery setReference(String value) { this.Reference = value; return this; } public String getReferenceStartsWith() { return ReferenceStartsWith; } public RA_ShipMainQuery setReferenceStartsWith(String value) { this.ReferenceStartsWith = value; return this; } public String getReferenceEndsWith() { return ReferenceEndsWith; } public RA_ShipMainQuery setReferenceEndsWith(String value) { this.ReferenceEndsWith = value; return this; } public String getReferenceContains() { return ReferenceContains; } public RA_ShipMainQuery setReferenceContains(String value) { this.ReferenceContains = value; return this; } public String getReferenceLike() { return ReferenceLike; } public RA_ShipMainQuery setReferenceLike(String value) { this.ReferenceLike = value; return this; } public ArrayList getReferenceBetween() { return ReferenceBetween; } public RA_ShipMainQuery setReferenceBetween(ArrayList value) { this.ReferenceBetween = value; return this; } public ArrayList getReferenceIn() { return ReferenceIn; } public RA_ShipMainQuery setReferenceIn(ArrayList value) { this.ReferenceIn = value; return this; } public String getWarehouseID() { return WarehouseID; } public RA_ShipMainQuery setWarehouseID(String value) { this.WarehouseID = value; return this; } public String getWarehouseIDStartsWith() { return WarehouseIDStartsWith; } public RA_ShipMainQuery setWarehouseIDStartsWith(String value) { this.WarehouseIDStartsWith = value; return this; } public String getWarehouseIDEndsWith() { return WarehouseIDEndsWith; } public RA_ShipMainQuery setWarehouseIDEndsWith(String value) { this.WarehouseIDEndsWith = value; return this; } public String getWarehouseIDContains() { return WarehouseIDContains; } public RA_ShipMainQuery setWarehouseIDContains(String value) { this.WarehouseIDContains = value; return this; } public String getWarehouseIDLike() { return WarehouseIDLike; } public RA_ShipMainQuery setWarehouseIDLike(String value) { this.WarehouseIDLike = value; return this; } public ArrayList getWarehouseIDBetween() { return WarehouseIDBetween; } public RA_ShipMainQuery setWarehouseIDBetween(ArrayList value) { this.WarehouseIDBetween = value; return this; } public ArrayList getWarehouseIDIn() { return WarehouseIDIn; } public RA_ShipMainQuery setWarehouseIDIn(ArrayList value) { this.WarehouseIDIn = value; return this; } public Short getStatus() { return Status; } public RA_ShipMainQuery setStatus(Short value) { this.Status = value; return this; } public Short getStatusGreaterThanOrEqualTo() { return StatusGreaterThanOrEqualTo; } public RA_ShipMainQuery setStatusGreaterThanOrEqualTo(Short value) { this.StatusGreaterThanOrEqualTo = value; return this; } public Short getStatusGreaterThan() { return StatusGreaterThan; } public RA_ShipMainQuery setStatusGreaterThan(Short value) { this.StatusGreaterThan = value; return this; } public Short getStatusLessThan() { return StatusLessThan; } public RA_ShipMainQuery setStatusLessThan(Short value) { this.StatusLessThan = value; return this; } public Short getStatusLessThanOrEqualTo() { return StatusLessThanOrEqualTo; } public RA_ShipMainQuery setStatusLessThanOrEqualTo(Short value) { this.StatusLessThanOrEqualTo = value; return this; } public Short getStatusNotEqualTo() { return StatusNotEqualTo; } public RA_ShipMainQuery setStatusNotEqualTo(Short value) { this.StatusNotEqualTo = value; return this; } public ArrayList getStatusBetween() { return StatusBetween; } public RA_ShipMainQuery setStatusBetween(ArrayList value) { this.StatusBetween = value; return this; } public ArrayList getStatusIn() { return StatusIn; } public RA_ShipMainQuery setStatusIn(ArrayList value) { this.StatusIn = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public RA_ShipMainQuery setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getLastSavedDateTimeGreaterThanOrEqualTo() { return LastSavedDateTimeGreaterThanOrEqualTo; } public RA_ShipMainQuery setLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.LastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeGreaterThan() { return LastSavedDateTimeGreaterThan; } public RA_ShipMainQuery setLastSavedDateTimeGreaterThan(Date value) { this.LastSavedDateTimeGreaterThan = value; return this; } public Date getLastSavedDateTimeLessThan() { return LastSavedDateTimeLessThan; } public RA_ShipMainQuery setLastSavedDateTimeLessThan(Date value) { this.LastSavedDateTimeLessThan = value; return this; } public Date getLastSavedDateTimeLessThanOrEqualTo() { return LastSavedDateTimeLessThanOrEqualTo; } public RA_ShipMainQuery setLastSavedDateTimeLessThanOrEqualTo(Date value) { this.LastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeNotEqualTo() { return LastSavedDateTimeNotEqualTo; } public RA_ShipMainQuery setLastSavedDateTimeNotEqualTo(Date value) { this.LastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getLastSavedDateTimeBetween() { return LastSavedDateTimeBetween; } public RA_ShipMainQuery setLastSavedDateTimeBetween(ArrayList value) { this.LastSavedDateTimeBetween = value; return this; } public ArrayList getLastSavedDateTimeIn() { return LastSavedDateTimeIn; } public RA_ShipMainQuery setLastSavedDateTimeIn(ArrayList value) { this.LastSavedDateTimeIn = value; return this; } public String getCreatedBy() { return CreatedBy; } public RA_ShipMainQuery setCreatedBy(String value) { this.CreatedBy = value; return this; } public String getCreatedByStartsWith() { return CreatedByStartsWith; } public RA_ShipMainQuery setCreatedByStartsWith(String value) { this.CreatedByStartsWith = value; return this; } public String getCreatedByEndsWith() { return CreatedByEndsWith; } public RA_ShipMainQuery setCreatedByEndsWith(String value) { this.CreatedByEndsWith = value; return this; } public String getCreatedByContains() { return CreatedByContains; } public RA_ShipMainQuery setCreatedByContains(String value) { this.CreatedByContains = value; return this; } public String getCreatedByLike() { return CreatedByLike; } public RA_ShipMainQuery setCreatedByLike(String value) { this.CreatedByLike = value; return this; } public ArrayList getCreatedByBetween() { return CreatedByBetween; } public RA_ShipMainQuery setCreatedByBetween(ArrayList value) { this.CreatedByBetween = value; return this; } public ArrayList getCreatedByIn() { return CreatedByIn; } public RA_ShipMainQuery setCreatedByIn(ArrayList value) { this.CreatedByIn = value; return this; } public String getReturnCode() { return ReturnCode; } public RA_ShipMainQuery setReturnCode(String value) { this.ReturnCode = value; return this; } public String getReturnCodeStartsWith() { return ReturnCodeStartsWith; } public RA_ShipMainQuery setReturnCodeStartsWith(String value) { this.ReturnCodeStartsWith = value; return this; } public String getReturnCodeEndsWith() { return ReturnCodeEndsWith; } public RA_ShipMainQuery setReturnCodeEndsWith(String value) { this.ReturnCodeEndsWith = value; return this; } public String getReturnCodeContains() { return ReturnCodeContains; } public RA_ShipMainQuery setReturnCodeContains(String value) { this.ReturnCodeContains = value; return this; } public String getReturnCodeLike() { return ReturnCodeLike; } public RA_ShipMainQuery setReturnCodeLike(String value) { this.ReturnCodeLike = value; return this; } public ArrayList getReturnCodeBetween() { return ReturnCodeBetween; } public RA_ShipMainQuery setReturnCodeBetween(ArrayList value) { this.ReturnCodeBetween = value; return this; } public ArrayList getReturnCodeIn() { return ReturnCodeIn; } public RA_ShipMainQuery setReturnCodeIn(ArrayList value) { this.ReturnCodeIn = value; return this; } public String getDeliveryStreetAddress1() { return DeliveryStreetAddress1; } public RA_ShipMainQuery setDeliveryStreetAddress1(String value) { this.DeliveryStreetAddress1 = value; return this; } public String getDeliveryStreetAddress1StartsWith() { return DeliveryStreetAddress1StartsWith; } public RA_ShipMainQuery setDeliveryStreetAddress1StartsWith(String value) { this.DeliveryStreetAddress1StartsWith = value; return this; } public String getDeliveryStreetAddress1EndsWith() { return DeliveryStreetAddress1EndsWith; } public RA_ShipMainQuery setDeliveryStreetAddress1EndsWith(String value) { this.DeliveryStreetAddress1EndsWith = value; return this; } public String getDeliveryStreetAddress1Contains() { return DeliveryStreetAddress1Contains; } public RA_ShipMainQuery setDeliveryStreetAddress1Contains(String value) { this.DeliveryStreetAddress1Contains = value; return this; } public String getDeliveryStreetAddress1Like() { return DeliveryStreetAddress1Like; } public RA_ShipMainQuery setDeliveryStreetAddress1Like(String value) { this.DeliveryStreetAddress1Like = value; return this; } public ArrayList getDeliveryStreetAddress1Between() { return DeliveryStreetAddress1Between; } public RA_ShipMainQuery setDeliveryStreetAddress1Between(ArrayList value) { this.DeliveryStreetAddress1Between = value; return this; } public ArrayList getDeliveryStreetAddress1In() { return DeliveryStreetAddress1In; } public RA_ShipMainQuery setDeliveryStreetAddress1In(ArrayList value) { this.DeliveryStreetAddress1In = value; return this; } public String getDeliveryStreetAddress2() { return DeliveryStreetAddress2; } public RA_ShipMainQuery setDeliveryStreetAddress2(String value) { this.DeliveryStreetAddress2 = value; return this; } public String getDeliveryStreetAddress2StartsWith() { return DeliveryStreetAddress2StartsWith; } public RA_ShipMainQuery setDeliveryStreetAddress2StartsWith(String value) { this.DeliveryStreetAddress2StartsWith = value; return this; } public String getDeliveryStreetAddress2EndsWith() { return DeliveryStreetAddress2EndsWith; } public RA_ShipMainQuery setDeliveryStreetAddress2EndsWith(String value) { this.DeliveryStreetAddress2EndsWith = value; return this; } public String getDeliveryStreetAddress2Contains() { return DeliveryStreetAddress2Contains; } public RA_ShipMainQuery setDeliveryStreetAddress2Contains(String value) { this.DeliveryStreetAddress2Contains = value; return this; } public String getDeliveryStreetAddress2Like() { return DeliveryStreetAddress2Like; } public RA_ShipMainQuery setDeliveryStreetAddress2Like(String value) { this.DeliveryStreetAddress2Like = value; return this; } public ArrayList getDeliveryStreetAddress2Between() { return DeliveryStreetAddress2Between; } public RA_ShipMainQuery setDeliveryStreetAddress2Between(ArrayList value) { this.DeliveryStreetAddress2Between = value; return this; } public ArrayList getDeliveryStreetAddress2In() { return DeliveryStreetAddress2In; } public RA_ShipMainQuery setDeliveryStreetAddress2In(ArrayList value) { this.DeliveryStreetAddress2In = value; return this; } public String getDeliveryLocality() { return DeliveryLocality; } public RA_ShipMainQuery setDeliveryLocality(String value) { this.DeliveryLocality = value; return this; } public String getDeliveryLocalityStartsWith() { return DeliveryLocalityStartsWith; } public RA_ShipMainQuery setDeliveryLocalityStartsWith(String value) { this.DeliveryLocalityStartsWith = value; return this; } public String getDeliveryLocalityEndsWith() { return DeliveryLocalityEndsWith; } public RA_ShipMainQuery setDeliveryLocalityEndsWith(String value) { this.DeliveryLocalityEndsWith = value; return this; } public String getDeliveryLocalityContains() { return DeliveryLocalityContains; } public RA_ShipMainQuery setDeliveryLocalityContains(String value) { this.DeliveryLocalityContains = value; return this; } public String getDeliveryLocalityLike() { return DeliveryLocalityLike; } public RA_ShipMainQuery setDeliveryLocalityLike(String value) { this.DeliveryLocalityLike = value; return this; } public ArrayList getDeliveryLocalityBetween() { return DeliveryLocalityBetween; } public RA_ShipMainQuery setDeliveryLocalityBetween(ArrayList value) { this.DeliveryLocalityBetween = value; return this; } public ArrayList getDeliveryLocalityIn() { return DeliveryLocalityIn; } public RA_ShipMainQuery setDeliveryLocalityIn(ArrayList value) { this.DeliveryLocalityIn = value; return this; } public String getDeliveryRegion() { return DeliveryRegion; } public RA_ShipMainQuery setDeliveryRegion(String value) { this.DeliveryRegion = value; return this; } public String getDeliveryRegionStartsWith() { return DeliveryRegionStartsWith; } public RA_ShipMainQuery setDeliveryRegionStartsWith(String value) { this.DeliveryRegionStartsWith = value; return this; } public String getDeliveryRegionEndsWith() { return DeliveryRegionEndsWith; } public RA_ShipMainQuery setDeliveryRegionEndsWith(String value) { this.DeliveryRegionEndsWith = value; return this; } public String getDeliveryRegionContains() { return DeliveryRegionContains; } public RA_ShipMainQuery setDeliveryRegionContains(String value) { this.DeliveryRegionContains = value; return this; } public String getDeliveryRegionLike() { return DeliveryRegionLike; } public RA_ShipMainQuery setDeliveryRegionLike(String value) { this.DeliveryRegionLike = value; return this; } public ArrayList getDeliveryRegionBetween() { return DeliveryRegionBetween; } public RA_ShipMainQuery setDeliveryRegionBetween(ArrayList value) { this.DeliveryRegionBetween = value; return this; } public ArrayList getDeliveryRegionIn() { return DeliveryRegionIn; } public RA_ShipMainQuery setDeliveryRegionIn(ArrayList value) { this.DeliveryRegionIn = value; return this; } public String getDeliveryPostCode() { return DeliveryPostCode; } public RA_ShipMainQuery setDeliveryPostCode(String value) { this.DeliveryPostCode = value; return this; } public String getDeliveryPostCodeStartsWith() { return DeliveryPostCodeStartsWith; } public RA_ShipMainQuery setDeliveryPostCodeStartsWith(String value) { this.DeliveryPostCodeStartsWith = value; return this; } public String getDeliveryPostCodeEndsWith() { return DeliveryPostCodeEndsWith; } public RA_ShipMainQuery setDeliveryPostCodeEndsWith(String value) { this.DeliveryPostCodeEndsWith = value; return this; } public String getDeliveryPostCodeContains() { return DeliveryPostCodeContains; } public RA_ShipMainQuery setDeliveryPostCodeContains(String value) { this.DeliveryPostCodeContains = value; return this; } public String getDeliveryPostCodeLike() { return DeliveryPostCodeLike; } public RA_ShipMainQuery setDeliveryPostCodeLike(String value) { this.DeliveryPostCodeLike = value; return this; } public ArrayList getDeliveryPostCodeBetween() { return DeliveryPostCodeBetween; } public RA_ShipMainQuery setDeliveryPostCodeBetween(ArrayList value) { this.DeliveryPostCodeBetween = value; return this; } public ArrayList getDeliveryPostCodeIn() { return DeliveryPostCodeIn; } public RA_ShipMainQuery setDeliveryPostCodeIn(ArrayList value) { this.DeliveryPostCodeIn = value; return this; } public String getContactName() { return ContactName; } public RA_ShipMainQuery setContactName(String value) { this.ContactName = value; return this; } public String getContactNameStartsWith() { return ContactNameStartsWith; } public RA_ShipMainQuery setContactNameStartsWith(String value) { this.ContactNameStartsWith = value; return this; } public String getContactNameEndsWith() { return ContactNameEndsWith; } public RA_ShipMainQuery setContactNameEndsWith(String value) { this.ContactNameEndsWith = value; return this; } public String getContactNameContains() { return ContactNameContains; } public RA_ShipMainQuery setContactNameContains(String value) { this.ContactNameContains = value; return this; } public String getContactNameLike() { return ContactNameLike; } public RA_ShipMainQuery setContactNameLike(String value) { this.ContactNameLike = value; return this; } public ArrayList getContactNameBetween() { return ContactNameBetween; } public RA_ShipMainQuery setContactNameBetween(ArrayList value) { this.ContactNameBetween = value; return this; } public ArrayList getContactNameIn() { return ContactNameIn; } public RA_ShipMainQuery setContactNameIn(ArrayList value) { this.ContactNameIn = value; return this; } public String getNote() { return Note; } public RA_ShipMainQuery setNote(String value) { this.Note = value; return this; } public String getNoteStartsWith() { return NoteStartsWith; } public RA_ShipMainQuery setNoteStartsWith(String value) { this.NoteStartsWith = value; return this; } public String getNoteEndsWith() { return NoteEndsWith; } public RA_ShipMainQuery setNoteEndsWith(String value) { this.NoteEndsWith = value; return this; } public String getNoteContains() { return NoteContains; } public RA_ShipMainQuery setNoteContains(String value) { this.NoteContains = value; return this; } public String getNoteLike() { return NoteLike; } public RA_ShipMainQuery setNoteLike(String value) { this.NoteLike = value; return this; } public ArrayList getNoteBetween() { return NoteBetween; } public RA_ShipMainQuery setNoteBetween(ArrayList value) { this.NoteBetween = value; return this; } public ArrayList getNoteIn() { return NoteIn; } public RA_ShipMainQuery setNoteIn(ArrayList value) { this.NoteIn = value; return this; } public String getCourierDetails() { return CourierDetails; } public RA_ShipMainQuery setCourierDetails(String value) { this.CourierDetails = value; return this; } public String getCourierDetailsStartsWith() { return CourierDetailsStartsWith; } public RA_ShipMainQuery setCourierDetailsStartsWith(String value) { this.CourierDetailsStartsWith = value; return this; } public String getCourierDetailsEndsWith() { return CourierDetailsEndsWith; } public RA_ShipMainQuery setCourierDetailsEndsWith(String value) { this.CourierDetailsEndsWith = value; return this; } public String getCourierDetailsContains() { return CourierDetailsContains; } public RA_ShipMainQuery setCourierDetailsContains(String value) { this.CourierDetailsContains = value; return this; } public String getCourierDetailsLike() { return CourierDetailsLike; } public RA_ShipMainQuery setCourierDetailsLike(String value) { this.CourierDetailsLike = value; return this; } public ArrayList getCourierDetailsBetween() { return CourierDetailsBetween; } public RA_ShipMainQuery setCourierDetailsBetween(ArrayList value) { this.CourierDetailsBetween = value; return this; } public ArrayList getCourierDetailsIn() { return CourierDetailsIn; } public RA_ShipMainQuery setCourierDetailsIn(ArrayList value) { this.CourierDetailsIn = value; return this; } public Date getShippingDate() { return ShippingDate; } public RA_ShipMainQuery setShippingDate(Date value) { this.ShippingDate = value; return this; } public Date getShippingDateGreaterThanOrEqualTo() { return ShippingDateGreaterThanOrEqualTo; } public RA_ShipMainQuery setShippingDateGreaterThanOrEqualTo(Date value) { this.ShippingDateGreaterThanOrEqualTo = value; return this; } public Date getShippingDateGreaterThan() { return ShippingDateGreaterThan; } public RA_ShipMainQuery setShippingDateGreaterThan(Date value) { this.ShippingDateGreaterThan = value; return this; } public Date getShippingDateLessThan() { return ShippingDateLessThan; } public RA_ShipMainQuery setShippingDateLessThan(Date value) { this.ShippingDateLessThan = value; return this; } public Date getShippingDateLessThanOrEqualTo() { return ShippingDateLessThanOrEqualTo; } public RA_ShipMainQuery setShippingDateLessThanOrEqualTo(Date value) { this.ShippingDateLessThanOrEqualTo = value; return this; } public Date getShippingDateNotEqualTo() { return ShippingDateNotEqualTo; } public RA_ShipMainQuery setShippingDateNotEqualTo(Date value) { this.ShippingDateNotEqualTo = value; return this; } public ArrayList getShippingDateBetween() { return ShippingDateBetween; } public RA_ShipMainQuery setShippingDateBetween(ArrayList value) { this.ShippingDateBetween = value; return this; } public ArrayList getShippingDateIn() { return ShippingDateIn; } public RA_ShipMainQuery setShippingDateIn(ArrayList value) { this.ShippingDateIn = value; return this; } public String getCreditorID() { return CreditorID; } public RA_ShipMainQuery setCreditorID(String value) { this.CreditorID = value; return this; } public String getCreditorIDStartsWith() { return CreditorIDStartsWith; } public RA_ShipMainQuery setCreditorIDStartsWith(String value) { this.CreditorIDStartsWith = value; return this; } public String getCreditorIDEndsWith() { return CreditorIDEndsWith; } public RA_ShipMainQuery setCreditorIDEndsWith(String value) { this.CreditorIDEndsWith = value; return this; } public String getCreditorIDContains() { return CreditorIDContains; } public RA_ShipMainQuery setCreditorIDContains(String value) { this.CreditorIDContains = value; return this; } public String getCreditorIDLike() { return CreditorIDLike; } public RA_ShipMainQuery setCreditorIDLike(String value) { this.CreditorIDLike = value; return this; } public ArrayList getCreditorIDBetween() { return CreditorIDBetween; } public RA_ShipMainQuery setCreditorIDBetween(ArrayList value) { this.CreditorIDBetween = value; return this; } public ArrayList getCreditorIDIn() { return CreditorIDIn; } public RA_ShipMainQuery setCreditorIDIn(ArrayList value) { this.CreditorIDIn = value; return this; } public String getTransitWarehouseID() { return TransitWarehouseID; } public RA_ShipMainQuery setTransitWarehouseID(String value) { this.TransitWarehouseID = value; return this; } public String getTransitWarehouseIDStartsWith() { return TransitWarehouseIDStartsWith; } public RA_ShipMainQuery setTransitWarehouseIDStartsWith(String value) { this.TransitWarehouseIDStartsWith = value; return this; } public String getTransitWarehouseIDEndsWith() { return TransitWarehouseIDEndsWith; } public RA_ShipMainQuery setTransitWarehouseIDEndsWith(String value) { this.TransitWarehouseIDEndsWith = value; return this; } public String getTransitWarehouseIDContains() { return TransitWarehouseIDContains; } public RA_ShipMainQuery setTransitWarehouseIDContains(String value) { this.TransitWarehouseIDContains = value; return this; } public String getTransitWarehouseIDLike() { return TransitWarehouseIDLike; } public RA_ShipMainQuery setTransitWarehouseIDLike(String value) { this.TransitWarehouseIDLike = value; return this; } public ArrayList getTransitWarehouseIDBetween() { return TransitWarehouseIDBetween; } public RA_ShipMainQuery setTransitWarehouseIDBetween(ArrayList value) { this.TransitWarehouseIDBetween = value; return this; } public ArrayList getTransitWarehouseIDIn() { return TransitWarehouseIDIn; } public RA_ShipMainQuery setTransitWarehouseIDIn(ArrayList value) { this.TransitWarehouseIDIn = value; return this; } public ArrayList getRowHash() { return RowHash; } public RA_ShipMainQuery setRowHash(ArrayList value) { this.RowHash = value; return this; } public String getDeliveryAddressee() { return DeliveryAddressee; } public RA_ShipMainQuery setDeliveryAddressee(String value) { this.DeliveryAddressee = value; return this; } public String getDeliveryAddresseeStartsWith() { return DeliveryAddresseeStartsWith; } public RA_ShipMainQuery setDeliveryAddresseeStartsWith(String value) { this.DeliveryAddresseeStartsWith = value; return this; } public String getDeliveryAddresseeEndsWith() { return DeliveryAddresseeEndsWith; } public RA_ShipMainQuery setDeliveryAddresseeEndsWith(String value) { this.DeliveryAddresseeEndsWith = value; return this; } public String getDeliveryAddresseeContains() { return DeliveryAddresseeContains; } public RA_ShipMainQuery setDeliveryAddresseeContains(String value) { this.DeliveryAddresseeContains = value; return this; } public String getDeliveryAddresseeLike() { return DeliveryAddresseeLike; } public RA_ShipMainQuery setDeliveryAddresseeLike(String value) { this.DeliveryAddresseeLike = value; return this; } public ArrayList getDeliveryAddresseeBetween() { return DeliveryAddresseeBetween; } public RA_ShipMainQuery setDeliveryAddresseeBetween(ArrayList value) { this.DeliveryAddresseeBetween = value; return this; } public ArrayList getDeliveryAddresseeIn() { return DeliveryAddresseeIn; } public RA_ShipMainQuery setDeliveryAddresseeIn(ArrayList value) { this.DeliveryAddresseeIn = value; return this; } public String getDeliveryCountry() { return DeliveryCountry; } public RA_ShipMainQuery setDeliveryCountry(String value) { this.DeliveryCountry = value; return this; } public String getDeliveryCountryStartsWith() { return DeliveryCountryStartsWith; } public RA_ShipMainQuery setDeliveryCountryStartsWith(String value) { this.DeliveryCountryStartsWith = value; return this; } public String getDeliveryCountryEndsWith() { return DeliveryCountryEndsWith; } public RA_ShipMainQuery setDeliveryCountryEndsWith(String value) { this.DeliveryCountryEndsWith = value; return this; } public String getDeliveryCountryContains() { return DeliveryCountryContains; } public RA_ShipMainQuery setDeliveryCountryContains(String value) { this.DeliveryCountryContains = value; return this; } public String getDeliveryCountryLike() { return DeliveryCountryLike; } public RA_ShipMainQuery setDeliveryCountryLike(String value) { this.DeliveryCountryLike = value; return this; } public ArrayList getDeliveryCountryBetween() { return DeliveryCountryBetween; } public RA_ShipMainQuery setDeliveryCountryBetween(ArrayList value) { this.DeliveryCountryBetween = value; return this; } public ArrayList getDeliveryCountryIn() { return DeliveryCountryIn; } public RA_ShipMainQuery setDeliveryCountryIn(ArrayList value) { this.DeliveryCountryIn = value; return this; } public String getDeliveryTelephone() { return DeliveryTelephone; } public RA_ShipMainQuery setDeliveryTelephone(String value) { this.DeliveryTelephone = value; return this; } public String getDeliveryTelephoneStartsWith() { return DeliveryTelephoneStartsWith; } public RA_ShipMainQuery setDeliveryTelephoneStartsWith(String value) { this.DeliveryTelephoneStartsWith = value; return this; } public String getDeliveryTelephoneEndsWith() { return DeliveryTelephoneEndsWith; } public RA_ShipMainQuery setDeliveryTelephoneEndsWith(String value) { this.DeliveryTelephoneEndsWith = value; return this; } public String getDeliveryTelephoneContains() { return DeliveryTelephoneContains; } public RA_ShipMainQuery setDeliveryTelephoneContains(String value) { this.DeliveryTelephoneContains = value; return this; } public String getDeliveryTelephoneLike() { return DeliveryTelephoneLike; } public RA_ShipMainQuery setDeliveryTelephoneLike(String value) { this.DeliveryTelephoneLike = value; return this; } public ArrayList getDeliveryTelephoneBetween() { return DeliveryTelephoneBetween; } public RA_ShipMainQuery setDeliveryTelephoneBetween(ArrayList value) { this.DeliveryTelephoneBetween = value; return this; } public ArrayList getDeliveryTelephoneIn() { return DeliveryTelephoneIn; } public RA_ShipMainQuery setDeliveryTelephoneIn(ArrayList value) { this.DeliveryTelephoneIn = value; return this; } public String getDeliveryFacsimile() { return DeliveryFacsimile; } public RA_ShipMainQuery setDeliveryFacsimile(String value) { this.DeliveryFacsimile = value; return this; } public String getDeliveryFacsimileStartsWith() { return DeliveryFacsimileStartsWith; } public RA_ShipMainQuery setDeliveryFacsimileStartsWith(String value) { this.DeliveryFacsimileStartsWith = value; return this; } public String getDeliveryFacsimileEndsWith() { return DeliveryFacsimileEndsWith; } public RA_ShipMainQuery setDeliveryFacsimileEndsWith(String value) { this.DeliveryFacsimileEndsWith = value; return this; } public String getDeliveryFacsimileContains() { return DeliveryFacsimileContains; } public RA_ShipMainQuery setDeliveryFacsimileContains(String value) { this.DeliveryFacsimileContains = value; return this; } public String getDeliveryFacsimileLike() { return DeliveryFacsimileLike; } public RA_ShipMainQuery setDeliveryFacsimileLike(String value) { this.DeliveryFacsimileLike = value; return this; } public ArrayList getDeliveryFacsimileBetween() { return DeliveryFacsimileBetween; } public RA_ShipMainQuery setDeliveryFacsimileBetween(ArrayList value) { this.DeliveryFacsimileBetween = value; return this; } public ArrayList getDeliveryFacsimileIn() { return DeliveryFacsimileIn; } public RA_ShipMainQuery setDeliveryFacsimileIn(ArrayList value) { this.DeliveryFacsimileIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class RA_ShipMainCustomFieldsQuery extends QueryDb implements IReturn> { public String RecID = null; public String RecIDStartsWith = null; public String RecIDEndsWith = null; public String RecIDContains = null; public String RecIDLike = null; public ArrayList RecIDBetween = null; public ArrayList RecIDIn = null; public String SettingName = null; public String SettingNameStartsWith = null; public String SettingNameEndsWith = null; public String SettingNameContains = null; public String SettingNameLike = null; public ArrayList SettingNameBetween = null; public ArrayList SettingNameIn = null; public String SettingDescription = null; public String SettingDescriptionStartsWith = null; public String SettingDescriptionEndsWith = null; public String SettingDescriptionContains = null; public String SettingDescriptionLike = null; public ArrayList SettingDescriptionBetween = null; public ArrayList SettingDescriptionIn = null; public Integer CellType = null; public Integer CellTypeGreaterThanOrEqualTo = null; public Integer CellTypeGreaterThan = null; public Integer CellTypeLessThan = null; public Integer CellTypeLessThanOrEqualTo = null; public Integer CellTypeNotEqualTo = null; public ArrayList CellTypeBetween = null; public ArrayList CellTypeIn = null; public String FieldParameter = null; public String FieldParameterStartsWith = null; public String FieldParameterEndsWith = null; public String FieldParameterContains = null; public String FieldParameterLike = null; public ArrayList FieldParameterBetween = null; public ArrayList FieldParameterIn = null; public UUID SY_Plugin_RecID = null; public ArrayList SY_Plugin_RecIDIn = null; public Date LastSavedDateTime = null; public Date LastSavedDateTimeGreaterThanOrEqualTo = null; public Date LastSavedDateTimeGreaterThan = null; public Date LastSavedDateTimeLessThan = null; public Date LastSavedDateTimeLessThanOrEqualTo = null; public Date LastSavedDateTimeNotEqualTo = null; public ArrayList LastSavedDateTimeBetween = null; public ArrayList LastSavedDateTimeIn = null; public Integer DisplayOrder = null; public Integer DisplayOrderGreaterThanOrEqualTo = null; public Integer DisplayOrderGreaterThan = null; public Integer DisplayOrderLessThan = null; public Integer DisplayOrderLessThanOrEqualTo = null; public Integer DisplayOrderNotEqualTo = null; public ArrayList DisplayOrderBetween = null; public ArrayList DisplayOrderIn = null; public String getRecID() { return RecID; } public RA_ShipMainCustomFieldsQuery setRecID(String value) { this.RecID = value; return this; } public String getRecIDStartsWith() { return RecIDStartsWith; } public RA_ShipMainCustomFieldsQuery setRecIDStartsWith(String value) { this.RecIDStartsWith = value; return this; } public String getRecIDEndsWith() { return RecIDEndsWith; } public RA_ShipMainCustomFieldsQuery setRecIDEndsWith(String value) { this.RecIDEndsWith = value; return this; } public String getRecIDContains() { return RecIDContains; } public RA_ShipMainCustomFieldsQuery setRecIDContains(String value) { this.RecIDContains = value; return this; } public String getRecIDLike() { return RecIDLike; } public RA_ShipMainCustomFieldsQuery setRecIDLike(String value) { this.RecIDLike = value; return this; } public ArrayList getRecIDBetween() { return RecIDBetween; } public RA_ShipMainCustomFieldsQuery setRecIDBetween(ArrayList value) { this.RecIDBetween = value; return this; } public ArrayList getRecIDIn() { return RecIDIn; } public RA_ShipMainCustomFieldsQuery setRecIDIn(ArrayList value) { this.RecIDIn = value; return this; } public String getSettingName() { return SettingName; } public RA_ShipMainCustomFieldsQuery setSettingName(String value) { this.SettingName = value; return this; } public String getSettingNameStartsWith() { return SettingNameStartsWith; } public RA_ShipMainCustomFieldsQuery setSettingNameStartsWith(String value) { this.SettingNameStartsWith = value; return this; } public String getSettingNameEndsWith() { return SettingNameEndsWith; } public RA_ShipMainCustomFieldsQuery setSettingNameEndsWith(String value) { this.SettingNameEndsWith = value; return this; } public String getSettingNameContains() { return SettingNameContains; } public RA_ShipMainCustomFieldsQuery setSettingNameContains(String value) { this.SettingNameContains = value; return this; } public String getSettingNameLike() { return SettingNameLike; } public RA_ShipMainCustomFieldsQuery setSettingNameLike(String value) { this.SettingNameLike = value; return this; } public ArrayList getSettingNameBetween() { return SettingNameBetween; } public RA_ShipMainCustomFieldsQuery setSettingNameBetween(ArrayList value) { this.SettingNameBetween = value; return this; } public ArrayList getSettingNameIn() { return SettingNameIn; } public RA_ShipMainCustomFieldsQuery setSettingNameIn(ArrayList value) { this.SettingNameIn = value; return this; } public String getSettingDescription() { return SettingDescription; } public RA_ShipMainCustomFieldsQuery setSettingDescription(String value) { this.SettingDescription = value; return this; } public String getSettingDescriptionStartsWith() { return SettingDescriptionStartsWith; } public RA_ShipMainCustomFieldsQuery setSettingDescriptionStartsWith(String value) { this.SettingDescriptionStartsWith = value; return this; } public String getSettingDescriptionEndsWith() { return SettingDescriptionEndsWith; } public RA_ShipMainCustomFieldsQuery setSettingDescriptionEndsWith(String value) { this.SettingDescriptionEndsWith = value; return this; } public String getSettingDescriptionContains() { return SettingDescriptionContains; } public RA_ShipMainCustomFieldsQuery setSettingDescriptionContains(String value) { this.SettingDescriptionContains = value; return this; } public String getSettingDescriptionLike() { return SettingDescriptionLike; } public RA_ShipMainCustomFieldsQuery setSettingDescriptionLike(String value) { this.SettingDescriptionLike = value; return this; } public ArrayList getSettingDescriptionBetween() { return SettingDescriptionBetween; } public RA_ShipMainCustomFieldsQuery setSettingDescriptionBetween(ArrayList value) { this.SettingDescriptionBetween = value; return this; } public ArrayList getSettingDescriptionIn() { return SettingDescriptionIn; } public RA_ShipMainCustomFieldsQuery setSettingDescriptionIn(ArrayList value) { this.SettingDescriptionIn = value; return this; } public Integer getCellType() { return CellType; } public RA_ShipMainCustomFieldsQuery setCellType(Integer value) { this.CellType = value; return this; } public Integer getCellTypeGreaterThanOrEqualTo() { return CellTypeGreaterThanOrEqualTo; } public RA_ShipMainCustomFieldsQuery setCellTypeGreaterThanOrEqualTo(Integer value) { this.CellTypeGreaterThanOrEqualTo = value; return this; } public Integer getCellTypeGreaterThan() { return CellTypeGreaterThan; } public RA_ShipMainCustomFieldsQuery setCellTypeGreaterThan(Integer value) { this.CellTypeGreaterThan = value; return this; } public Integer getCellTypeLessThan() { return CellTypeLessThan; } public RA_ShipMainCustomFieldsQuery setCellTypeLessThan(Integer value) { this.CellTypeLessThan = value; return this; } public Integer getCellTypeLessThanOrEqualTo() { return CellTypeLessThanOrEqualTo; } public RA_ShipMainCustomFieldsQuery setCellTypeLessThanOrEqualTo(Integer value) { this.CellTypeLessThanOrEqualTo = value; return this; } public Integer getCellTypeNotEqualTo() { return CellTypeNotEqualTo; } public RA_ShipMainCustomFieldsQuery setCellTypeNotEqualTo(Integer value) { this.CellTypeNotEqualTo = value; return this; } public ArrayList getCellTypeBetween() { return CellTypeBetween; } public RA_ShipMainCustomFieldsQuery setCellTypeBetween(ArrayList value) { this.CellTypeBetween = value; return this; } public ArrayList getCellTypeIn() { return CellTypeIn; } public RA_ShipMainCustomFieldsQuery setCellTypeIn(ArrayList value) { this.CellTypeIn = value; return this; } public String getFieldParameter() { return FieldParameter; } public RA_ShipMainCustomFieldsQuery setFieldParameter(String value) { this.FieldParameter = value; return this; } public String getFieldParameterStartsWith() { return FieldParameterStartsWith; } public RA_ShipMainCustomFieldsQuery setFieldParameterStartsWith(String value) { this.FieldParameterStartsWith = value; return this; } public String getFieldParameterEndsWith() { return FieldParameterEndsWith; } public RA_ShipMainCustomFieldsQuery setFieldParameterEndsWith(String value) { this.FieldParameterEndsWith = value; return this; } public String getFieldParameterContains() { return FieldParameterContains; } public RA_ShipMainCustomFieldsQuery setFieldParameterContains(String value) { this.FieldParameterContains = value; return this; } public String getFieldParameterLike() { return FieldParameterLike; } public RA_ShipMainCustomFieldsQuery setFieldParameterLike(String value) { this.FieldParameterLike = value; return this; } public ArrayList getFieldParameterBetween() { return FieldParameterBetween; } public RA_ShipMainCustomFieldsQuery setFieldParameterBetween(ArrayList value) { this.FieldParameterBetween = value; return this; } public ArrayList getFieldParameterIn() { return FieldParameterIn; } public RA_ShipMainCustomFieldsQuery setFieldParameterIn(ArrayList value) { this.FieldParameterIn = value; return this; } public UUID getSyPluginRecID() { return SY_Plugin_RecID; } public RA_ShipMainCustomFieldsQuery setSyPluginRecID(UUID value) { this.SY_Plugin_RecID = value; return this; } public ArrayList getSyPluginRecIDIn() { return SY_Plugin_RecIDIn; } public RA_ShipMainCustomFieldsQuery setSyPluginRecIDIn(ArrayList value) { this.SY_Plugin_RecIDIn = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public RA_ShipMainCustomFieldsQuery setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getLastSavedDateTimeGreaterThanOrEqualTo() { return LastSavedDateTimeGreaterThanOrEqualTo; } public RA_ShipMainCustomFieldsQuery setLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.LastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeGreaterThan() { return LastSavedDateTimeGreaterThan; } public RA_ShipMainCustomFieldsQuery setLastSavedDateTimeGreaterThan(Date value) { this.LastSavedDateTimeGreaterThan = value; return this; } public Date getLastSavedDateTimeLessThan() { return LastSavedDateTimeLessThan; } public RA_ShipMainCustomFieldsQuery setLastSavedDateTimeLessThan(Date value) { this.LastSavedDateTimeLessThan = value; return this; } public Date getLastSavedDateTimeLessThanOrEqualTo() { return LastSavedDateTimeLessThanOrEqualTo; } public RA_ShipMainCustomFieldsQuery setLastSavedDateTimeLessThanOrEqualTo(Date value) { this.LastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeNotEqualTo() { return LastSavedDateTimeNotEqualTo; } public RA_ShipMainCustomFieldsQuery setLastSavedDateTimeNotEqualTo(Date value) { this.LastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getLastSavedDateTimeBetween() { return LastSavedDateTimeBetween; } public RA_ShipMainCustomFieldsQuery setLastSavedDateTimeBetween(ArrayList value) { this.LastSavedDateTimeBetween = value; return this; } public ArrayList getLastSavedDateTimeIn() { return LastSavedDateTimeIn; } public RA_ShipMainCustomFieldsQuery setLastSavedDateTimeIn(ArrayList value) { this.LastSavedDateTimeIn = value; return this; } public Integer getDisplayOrder() { return DisplayOrder; } public RA_ShipMainCustomFieldsQuery setDisplayOrder(Integer value) { this.DisplayOrder = value; return this; } public Integer getDisplayOrderGreaterThanOrEqualTo() { return DisplayOrderGreaterThanOrEqualTo; } public RA_ShipMainCustomFieldsQuery setDisplayOrderGreaterThanOrEqualTo(Integer value) { this.DisplayOrderGreaterThanOrEqualTo = value; return this; } public Integer getDisplayOrderGreaterThan() { return DisplayOrderGreaterThan; } public RA_ShipMainCustomFieldsQuery setDisplayOrderGreaterThan(Integer value) { this.DisplayOrderGreaterThan = value; return this; } public Integer getDisplayOrderLessThan() { return DisplayOrderLessThan; } public RA_ShipMainCustomFieldsQuery setDisplayOrderLessThan(Integer value) { this.DisplayOrderLessThan = value; return this; } public Integer getDisplayOrderLessThanOrEqualTo() { return DisplayOrderLessThanOrEqualTo; } public RA_ShipMainCustomFieldsQuery setDisplayOrderLessThanOrEqualTo(Integer value) { this.DisplayOrderLessThanOrEqualTo = value; return this; } public Integer getDisplayOrderNotEqualTo() { return DisplayOrderNotEqualTo; } public RA_ShipMainCustomFieldsQuery setDisplayOrderNotEqualTo(Integer value) { this.DisplayOrderNotEqualTo = value; return this; } public ArrayList getDisplayOrderBetween() { return DisplayOrderBetween; } public RA_ShipMainCustomFieldsQuery setDisplayOrderBetween(ArrayList value) { this.DisplayOrderBetween = value; return this; } public ArrayList getDisplayOrderIn() { return DisplayOrderIn; } public RA_ShipMainCustomFieldsQuery setDisplayOrderIn(ArrayList value) { this.DisplayOrderIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class RA_ShipMainCustomValuesQuery extends QueryDb implements IReturn> { public String RecID = null; public String RecIDStartsWith = null; public String RecIDEndsWith = null; public String RecIDContains = null; public String RecIDLike = null; public ArrayList RecIDBetween = null; public ArrayList RecIDIn = null; public String RA_ShipMain_RecID = null; public String RA_ShipMain_RecIDStartsWith = null; public String RA_ShipMain_RecIDEndsWith = null; public String RA_ShipMain_RecIDContains = null; public String RA_ShipMain_RecIDLike = null; public ArrayList RA_ShipMain_RecIDBetween = null; public ArrayList RA_ShipMain_RecIDIn = null; public String RA_ShipMainCustomFields_RecID = null; public String RA_ShipMainCustomFields_RecIDStartsWith = null; public String RA_ShipMainCustomFields_RecIDEndsWith = null; public String RA_ShipMainCustomFields_RecIDContains = null; public String RA_ShipMainCustomFields_RecIDLike = null; public ArrayList RA_ShipMainCustomFields_RecIDBetween = null; public ArrayList RA_ShipMainCustomFields_RecIDIn = null; public String Contents = null; public String ContentsStartsWith = null; public String ContentsEndsWith = null; public String ContentsContains = null; public String ContentsLike = null; public ArrayList ContentsBetween = null; public ArrayList ContentsIn = null; public Date LastSavedDateTime = null; public Date LastSavedDateTimeGreaterThanOrEqualTo = null; public Date LastSavedDateTimeGreaterThan = null; public Date LastSavedDateTimeLessThan = null; public Date LastSavedDateTimeLessThanOrEqualTo = null; public Date LastSavedDateTimeNotEqualTo = null; public ArrayList LastSavedDateTimeBetween = null; public ArrayList LastSavedDateTimeIn = null; public String getRecID() { return RecID; } public RA_ShipMainCustomValuesQuery setRecID(String value) { this.RecID = value; return this; } public String getRecIDStartsWith() { return RecIDStartsWith; } public RA_ShipMainCustomValuesQuery setRecIDStartsWith(String value) { this.RecIDStartsWith = value; return this; } public String getRecIDEndsWith() { return RecIDEndsWith; } public RA_ShipMainCustomValuesQuery setRecIDEndsWith(String value) { this.RecIDEndsWith = value; return this; } public String getRecIDContains() { return RecIDContains; } public RA_ShipMainCustomValuesQuery setRecIDContains(String value) { this.RecIDContains = value; return this; } public String getRecIDLike() { return RecIDLike; } public RA_ShipMainCustomValuesQuery setRecIDLike(String value) { this.RecIDLike = value; return this; } public ArrayList getRecIDBetween() { return RecIDBetween; } public RA_ShipMainCustomValuesQuery setRecIDBetween(ArrayList value) { this.RecIDBetween = value; return this; } public ArrayList getRecIDIn() { return RecIDIn; } public RA_ShipMainCustomValuesQuery setRecIDIn(ArrayList value) { this.RecIDIn = value; return this; } public String getRaShipMainRecID() { return RA_ShipMain_RecID; } public RA_ShipMainCustomValuesQuery setRaShipMainRecID(String value) { this.RA_ShipMain_RecID = value; return this; } public String getRaShipMainRecIDStartsWith() { return RA_ShipMain_RecIDStartsWith; } public RA_ShipMainCustomValuesQuery setRaShipMainRecIDStartsWith(String value) { this.RA_ShipMain_RecIDStartsWith = value; return this; } public String getRaShipMainRecIDEndsWith() { return RA_ShipMain_RecIDEndsWith; } public RA_ShipMainCustomValuesQuery setRaShipMainRecIDEndsWith(String value) { this.RA_ShipMain_RecIDEndsWith = value; return this; } public String getRaShipMainRecIDContains() { return RA_ShipMain_RecIDContains; } public RA_ShipMainCustomValuesQuery setRaShipMainRecIDContains(String value) { this.RA_ShipMain_RecIDContains = value; return this; } public String getRaShipMainRecIDLike() { return RA_ShipMain_RecIDLike; } public RA_ShipMainCustomValuesQuery setRaShipMainRecIDLike(String value) { this.RA_ShipMain_RecIDLike = value; return this; } public ArrayList getRaShipMainRecIDBetween() { return RA_ShipMain_RecIDBetween; } public RA_ShipMainCustomValuesQuery setRaShipMainRecIDBetween(ArrayList value) { this.RA_ShipMain_RecIDBetween = value; return this; } public ArrayList getRaShipMainRecIDIn() { return RA_ShipMain_RecIDIn; } public RA_ShipMainCustomValuesQuery setRaShipMainRecIDIn(ArrayList value) { this.RA_ShipMain_RecIDIn = value; return this; } public String getRaShipMainCustomFieldsRecID() { return RA_ShipMainCustomFields_RecID; } public RA_ShipMainCustomValuesQuery setRaShipMainCustomFieldsRecID(String value) { this.RA_ShipMainCustomFields_RecID = value; return this; } public String getRaShipMainCustomFieldsRecIDStartsWith() { return RA_ShipMainCustomFields_RecIDStartsWith; } public RA_ShipMainCustomValuesQuery setRaShipMainCustomFieldsRecIDStartsWith(String value) { this.RA_ShipMainCustomFields_RecIDStartsWith = value; return this; } public String getRaShipMainCustomFieldsRecIDEndsWith() { return RA_ShipMainCustomFields_RecIDEndsWith; } public RA_ShipMainCustomValuesQuery setRaShipMainCustomFieldsRecIDEndsWith(String value) { this.RA_ShipMainCustomFields_RecIDEndsWith = value; return this; } public String getRaShipMainCustomFieldsRecIDContains() { return RA_ShipMainCustomFields_RecIDContains; } public RA_ShipMainCustomValuesQuery setRaShipMainCustomFieldsRecIDContains(String value) { this.RA_ShipMainCustomFields_RecIDContains = value; return this; } public String getRaShipMainCustomFieldsRecIDLike() { return RA_ShipMainCustomFields_RecIDLike; } public RA_ShipMainCustomValuesQuery setRaShipMainCustomFieldsRecIDLike(String value) { this.RA_ShipMainCustomFields_RecIDLike = value; return this; } public ArrayList getRaShipMainCustomFieldsRecIDBetween() { return RA_ShipMainCustomFields_RecIDBetween; } public RA_ShipMainCustomValuesQuery setRaShipMainCustomFieldsRecIDBetween(ArrayList value) { this.RA_ShipMainCustomFields_RecIDBetween = value; return this; } public ArrayList getRaShipMainCustomFieldsRecIDIn() { return RA_ShipMainCustomFields_RecIDIn; } public RA_ShipMainCustomValuesQuery setRaShipMainCustomFieldsRecIDIn(ArrayList value) { this.RA_ShipMainCustomFields_RecIDIn = value; return this; } public String getContents() { return Contents; } public RA_ShipMainCustomValuesQuery setContents(String value) { this.Contents = value; return this; } public String getContentsStartsWith() { return ContentsStartsWith; } public RA_ShipMainCustomValuesQuery setContentsStartsWith(String value) { this.ContentsStartsWith = value; return this; } public String getContentsEndsWith() { return ContentsEndsWith; } public RA_ShipMainCustomValuesQuery setContentsEndsWith(String value) { this.ContentsEndsWith = value; return this; } public String getContentsContains() { return ContentsContains; } public RA_ShipMainCustomValuesQuery setContentsContains(String value) { this.ContentsContains = value; return this; } public String getContentsLike() { return ContentsLike; } public RA_ShipMainCustomValuesQuery setContentsLike(String value) { this.ContentsLike = value; return this; } public ArrayList getContentsBetween() { return ContentsBetween; } public RA_ShipMainCustomValuesQuery setContentsBetween(ArrayList value) { this.ContentsBetween = value; return this; } public ArrayList getContentsIn() { return ContentsIn; } public RA_ShipMainCustomValuesQuery setContentsIn(ArrayList value) { this.ContentsIn = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public RA_ShipMainCustomValuesQuery setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getLastSavedDateTimeGreaterThanOrEqualTo() { return LastSavedDateTimeGreaterThanOrEqualTo; } public RA_ShipMainCustomValuesQuery setLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.LastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeGreaterThan() { return LastSavedDateTimeGreaterThan; } public RA_ShipMainCustomValuesQuery setLastSavedDateTimeGreaterThan(Date value) { this.LastSavedDateTimeGreaterThan = value; return this; } public Date getLastSavedDateTimeLessThan() { return LastSavedDateTimeLessThan; } public RA_ShipMainCustomValuesQuery setLastSavedDateTimeLessThan(Date value) { this.LastSavedDateTimeLessThan = value; return this; } public Date getLastSavedDateTimeLessThanOrEqualTo() { return LastSavedDateTimeLessThanOrEqualTo; } public RA_ShipMainCustomValuesQuery setLastSavedDateTimeLessThanOrEqualTo(Date value) { this.LastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeNotEqualTo() { return LastSavedDateTimeNotEqualTo; } public RA_ShipMainCustomValuesQuery setLastSavedDateTimeNotEqualTo(Date value) { this.LastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getLastSavedDateTimeBetween() { return LastSavedDateTimeBetween; } public RA_ShipMainCustomValuesQuery setLastSavedDateTimeBetween(ArrayList value) { this.LastSavedDateTimeBetween = value; return this; } public ArrayList getLastSavedDateTimeIn() { return LastSavedDateTimeIn; } public RA_ShipMainCustomValuesQuery setLastSavedDateTimeIn(ArrayList value) { this.LastSavedDateTimeIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class RA_ShipNotesQuery extends QueryDb implements IReturn> { public String RecID = null; public String RecIDStartsWith = null; public String RecIDEndsWith = null; public String RecIDContains = null; public String RecIDLike = null; public ArrayList RecIDBetween = null; public ArrayList RecIDIn = null; public String RA_ShipMain_RecID = null; public String RA_ShipMain_RecIDStartsWith = null; public String RA_ShipMain_RecIDEndsWith = null; public String RA_ShipMain_RecIDContains = null; public String RA_ShipMain_RecIDLike = null; public ArrayList RA_ShipMain_RecIDBetween = null; public ArrayList RA_ShipMain_RecIDIn = null; public String NoteTypeID = null; public String NoteTypeIDStartsWith = null; public String NoteTypeIDEndsWith = null; public String NoteTypeIDContains = null; public String NoteTypeIDLike = null; public ArrayList NoteTypeIDBetween = null; public ArrayList NoteTypeIDIn = null; public Date LastSavedDateTime = null; public Date LastSavedDateTimeGreaterThanOrEqualTo = null; public Date LastSavedDateTimeGreaterThan = null; public Date LastSavedDateTimeLessThan = null; public Date LastSavedDateTimeLessThanOrEqualTo = null; public Date LastSavedDateTimeNotEqualTo = null; public ArrayList LastSavedDateTimeBetween = null; public ArrayList LastSavedDateTimeIn = null; public String LastSavedByStaffID = null; public String LastSavedByStaffIDStartsWith = null; public String LastSavedByStaffIDEndsWith = null; public String LastSavedByStaffIDContains = null; public String LastSavedByStaffIDLike = null; public ArrayList LastSavedByStaffIDBetween = null; public ArrayList LastSavedByStaffIDIn = null; public String NoteText = null; public String NoteTextStartsWith = null; public String NoteTextEndsWith = null; public String NoteTextContains = null; public String NoteTextLike = null; public ArrayList NoteTextBetween = null; public ArrayList NoteTextIn = null; public Integer ItemNo = null; public Integer ItemNoGreaterThanOrEqualTo = null; public Integer ItemNoGreaterThan = null; public Integer ItemNoLessThan = null; public Integer ItemNoLessThanOrEqualTo = null; public Integer ItemNoNotEqualTo = null; public ArrayList ItemNoBetween = null; public ArrayList ItemNoIn = null; public String getRecID() { return RecID; } public RA_ShipNotesQuery setRecID(String value) { this.RecID = value; return this; } public String getRecIDStartsWith() { return RecIDStartsWith; } public RA_ShipNotesQuery setRecIDStartsWith(String value) { this.RecIDStartsWith = value; return this; } public String getRecIDEndsWith() { return RecIDEndsWith; } public RA_ShipNotesQuery setRecIDEndsWith(String value) { this.RecIDEndsWith = value; return this; } public String getRecIDContains() { return RecIDContains; } public RA_ShipNotesQuery setRecIDContains(String value) { this.RecIDContains = value; return this; } public String getRecIDLike() { return RecIDLike; } public RA_ShipNotesQuery setRecIDLike(String value) { this.RecIDLike = value; return this; } public ArrayList getRecIDBetween() { return RecIDBetween; } public RA_ShipNotesQuery setRecIDBetween(ArrayList value) { this.RecIDBetween = value; return this; } public ArrayList getRecIDIn() { return RecIDIn; } public RA_ShipNotesQuery setRecIDIn(ArrayList value) { this.RecIDIn = value; return this; } public String getRaShipMainRecID() { return RA_ShipMain_RecID; } public RA_ShipNotesQuery setRaShipMainRecID(String value) { this.RA_ShipMain_RecID = value; return this; } public String getRaShipMainRecIDStartsWith() { return RA_ShipMain_RecIDStartsWith; } public RA_ShipNotesQuery setRaShipMainRecIDStartsWith(String value) { this.RA_ShipMain_RecIDStartsWith = value; return this; } public String getRaShipMainRecIDEndsWith() { return RA_ShipMain_RecIDEndsWith; } public RA_ShipNotesQuery setRaShipMainRecIDEndsWith(String value) { this.RA_ShipMain_RecIDEndsWith = value; return this; } public String getRaShipMainRecIDContains() { return RA_ShipMain_RecIDContains; } public RA_ShipNotesQuery setRaShipMainRecIDContains(String value) { this.RA_ShipMain_RecIDContains = value; return this; } public String getRaShipMainRecIDLike() { return RA_ShipMain_RecIDLike; } public RA_ShipNotesQuery setRaShipMainRecIDLike(String value) { this.RA_ShipMain_RecIDLike = value; return this; } public ArrayList getRaShipMainRecIDBetween() { return RA_ShipMain_RecIDBetween; } public RA_ShipNotesQuery setRaShipMainRecIDBetween(ArrayList value) { this.RA_ShipMain_RecIDBetween = value; return this; } public ArrayList getRaShipMainRecIDIn() { return RA_ShipMain_RecIDIn; } public RA_ShipNotesQuery setRaShipMainRecIDIn(ArrayList value) { this.RA_ShipMain_RecIDIn = value; return this; } public String getNoteTypeID() { return NoteTypeID; } public RA_ShipNotesQuery setNoteTypeID(String value) { this.NoteTypeID = value; return this; } public String getNoteTypeIDStartsWith() { return NoteTypeIDStartsWith; } public RA_ShipNotesQuery setNoteTypeIDStartsWith(String value) { this.NoteTypeIDStartsWith = value; return this; } public String getNoteTypeIDEndsWith() { return NoteTypeIDEndsWith; } public RA_ShipNotesQuery setNoteTypeIDEndsWith(String value) { this.NoteTypeIDEndsWith = value; return this; } public String getNoteTypeIDContains() { return NoteTypeIDContains; } public RA_ShipNotesQuery setNoteTypeIDContains(String value) { this.NoteTypeIDContains = value; return this; } public String getNoteTypeIDLike() { return NoteTypeIDLike; } public RA_ShipNotesQuery setNoteTypeIDLike(String value) { this.NoteTypeIDLike = value; return this; } public ArrayList getNoteTypeIDBetween() { return NoteTypeIDBetween; } public RA_ShipNotesQuery setNoteTypeIDBetween(ArrayList value) { this.NoteTypeIDBetween = value; return this; } public ArrayList getNoteTypeIDIn() { return NoteTypeIDIn; } public RA_ShipNotesQuery setNoteTypeIDIn(ArrayList value) { this.NoteTypeIDIn = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public RA_ShipNotesQuery setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getLastSavedDateTimeGreaterThanOrEqualTo() { return LastSavedDateTimeGreaterThanOrEqualTo; } public RA_ShipNotesQuery setLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.LastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeGreaterThan() { return LastSavedDateTimeGreaterThan; } public RA_ShipNotesQuery setLastSavedDateTimeGreaterThan(Date value) { this.LastSavedDateTimeGreaterThan = value; return this; } public Date getLastSavedDateTimeLessThan() { return LastSavedDateTimeLessThan; } public RA_ShipNotesQuery setLastSavedDateTimeLessThan(Date value) { this.LastSavedDateTimeLessThan = value; return this; } public Date getLastSavedDateTimeLessThanOrEqualTo() { return LastSavedDateTimeLessThanOrEqualTo; } public RA_ShipNotesQuery setLastSavedDateTimeLessThanOrEqualTo(Date value) { this.LastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeNotEqualTo() { return LastSavedDateTimeNotEqualTo; } public RA_ShipNotesQuery setLastSavedDateTimeNotEqualTo(Date value) { this.LastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getLastSavedDateTimeBetween() { return LastSavedDateTimeBetween; } public RA_ShipNotesQuery setLastSavedDateTimeBetween(ArrayList value) { this.LastSavedDateTimeBetween = value; return this; } public ArrayList getLastSavedDateTimeIn() { return LastSavedDateTimeIn; } public RA_ShipNotesQuery setLastSavedDateTimeIn(ArrayList value) { this.LastSavedDateTimeIn = value; return this; } public String getLastSavedByStaffID() { return LastSavedByStaffID; } public RA_ShipNotesQuery setLastSavedByStaffID(String value) { this.LastSavedByStaffID = value; return this; } public String getLastSavedByStaffIDStartsWith() { return LastSavedByStaffIDStartsWith; } public RA_ShipNotesQuery setLastSavedByStaffIDStartsWith(String value) { this.LastSavedByStaffIDStartsWith = value; return this; } public String getLastSavedByStaffIDEndsWith() { return LastSavedByStaffIDEndsWith; } public RA_ShipNotesQuery setLastSavedByStaffIDEndsWith(String value) { this.LastSavedByStaffIDEndsWith = value; return this; } public String getLastSavedByStaffIDContains() { return LastSavedByStaffIDContains; } public RA_ShipNotesQuery setLastSavedByStaffIDContains(String value) { this.LastSavedByStaffIDContains = value; return this; } public String getLastSavedByStaffIDLike() { return LastSavedByStaffIDLike; } public RA_ShipNotesQuery setLastSavedByStaffIDLike(String value) { this.LastSavedByStaffIDLike = value; return this; } public ArrayList getLastSavedByStaffIDBetween() { return LastSavedByStaffIDBetween; } public RA_ShipNotesQuery setLastSavedByStaffIDBetween(ArrayList value) { this.LastSavedByStaffIDBetween = value; return this; } public ArrayList getLastSavedByStaffIDIn() { return LastSavedByStaffIDIn; } public RA_ShipNotesQuery setLastSavedByStaffIDIn(ArrayList value) { this.LastSavedByStaffIDIn = value; return this; } public String getNoteText() { return NoteText; } public RA_ShipNotesQuery setNoteText(String value) { this.NoteText = value; return this; } public String getNoteTextStartsWith() { return NoteTextStartsWith; } public RA_ShipNotesQuery setNoteTextStartsWith(String value) { this.NoteTextStartsWith = value; return this; } public String getNoteTextEndsWith() { return NoteTextEndsWith; } public RA_ShipNotesQuery setNoteTextEndsWith(String value) { this.NoteTextEndsWith = value; return this; } public String getNoteTextContains() { return NoteTextContains; } public RA_ShipNotesQuery setNoteTextContains(String value) { this.NoteTextContains = value; return this; } public String getNoteTextLike() { return NoteTextLike; } public RA_ShipNotesQuery setNoteTextLike(String value) { this.NoteTextLike = value; return this; } public ArrayList getNoteTextBetween() { return NoteTextBetween; } public RA_ShipNotesQuery setNoteTextBetween(ArrayList value) { this.NoteTextBetween = value; return this; } public ArrayList getNoteTextIn() { return NoteTextIn; } public RA_ShipNotesQuery setNoteTextIn(ArrayList value) { this.NoteTextIn = value; return this; } public Integer getItemNo() { return ItemNo; } public RA_ShipNotesQuery setItemNo(Integer value) { this.ItemNo = value; return this; } public Integer getItemNoGreaterThanOrEqualTo() { return ItemNoGreaterThanOrEqualTo; } public RA_ShipNotesQuery setItemNoGreaterThanOrEqualTo(Integer value) { this.ItemNoGreaterThanOrEqualTo = value; return this; } public Integer getItemNoGreaterThan() { return ItemNoGreaterThan; } public RA_ShipNotesQuery setItemNoGreaterThan(Integer value) { this.ItemNoGreaterThan = value; return this; } public Integer getItemNoLessThan() { return ItemNoLessThan; } public RA_ShipNotesQuery setItemNoLessThan(Integer value) { this.ItemNoLessThan = value; return this; } public Integer getItemNoLessThanOrEqualTo() { return ItemNoLessThanOrEqualTo; } public RA_ShipNotesQuery setItemNoLessThanOrEqualTo(Integer value) { this.ItemNoLessThanOrEqualTo = value; return this; } public Integer getItemNoNotEqualTo() { return ItemNoNotEqualTo; } public RA_ShipNotesQuery setItemNoNotEqualTo(Integer value) { this.ItemNoNotEqualTo = value; return this; } public ArrayList getItemNoBetween() { return ItemNoBetween; } public RA_ShipNotesQuery setItemNoBetween(ArrayList value) { this.ItemNoBetween = value; return this; } public ArrayList getItemNoIn() { return ItemNoIn; } public RA_ShipNotesQuery setItemNoIn(ArrayList value) { this.ItemNoIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class RE_CustomSettingsQuery extends QueryDb implements IReturn> { public String SettingID = null; public String SettingIDStartsWith = null; public String SettingIDEndsWith = null; public String SettingIDContains = null; public String SettingIDLike = null; public ArrayList SettingIDBetween = null; public ArrayList SettingIDIn = null; public Date LastSavedDateTime = null; public Date LastSavedDateTimeGreaterThanOrEqualTo = null; public Date LastSavedDateTimeGreaterThan = null; public Date LastSavedDateTimeLessThan = null; public Date LastSavedDateTimeLessThanOrEqualTo = null; public Date LastSavedDateTimeNotEqualTo = null; public ArrayList LastSavedDateTimeBetween = null; public ArrayList LastSavedDateTimeIn = null; public String SettingDescription = null; public String SettingDescriptionStartsWith = null; public String SettingDescriptionEndsWith = null; public String SettingDescriptionContains = null; public String SettingDescriptionLike = null; public ArrayList SettingDescriptionBetween = null; public ArrayList SettingDescriptionIn = null; public String SettingName = null; public String SettingNameStartsWith = null; public String SettingNameEndsWith = null; public String SettingNameContains = null; public String SettingNameLike = null; public ArrayList SettingNameBetween = null; public ArrayList SettingNameIn = null; public BigDecimal DisplayOrder = null; public BigDecimal DisplayOrderGreaterThanOrEqualTo = null; public BigDecimal DisplayOrderGreaterThan = null; public BigDecimal DisplayOrderLessThan = null; public BigDecimal DisplayOrderLessThanOrEqualTo = null; public BigDecimal DisplayOrderNotEqualTo = null; public ArrayList DisplayOrderBetween = null; public ArrayList DisplayOrderIn = null; public Short CellType = null; public Short CellTypeGreaterThanOrEqualTo = null; public Short CellTypeGreaterThan = null; public Short CellTypeLessThan = null; public Short CellTypeLessThanOrEqualTo = null; public Short CellTypeNotEqualTo = null; public ArrayList CellTypeBetween = null; public ArrayList CellTypeIn = null; public String ScriptFormatCell = null; public String ScriptFormatCellStartsWith = null; public String ScriptFormatCellEndsWith = null; public String ScriptFormatCellContains = null; public String ScriptFormatCellLike = null; public ArrayList ScriptFormatCellBetween = null; public ArrayList ScriptFormatCellIn = null; public String ScriptButtonClicked = null; public String ScriptButtonClickedStartsWith = null; public String ScriptButtonClickedEndsWith = null; public String ScriptButtonClickedContains = null; public String ScriptButtonClickedLike = null; public ArrayList ScriptButtonClickedBetween = null; public ArrayList ScriptButtonClickedIn = null; public String ScriptReadData = null; public String ScriptReadDataStartsWith = null; public String ScriptReadDataEndsWith = null; public String ScriptReadDataContains = null; public String ScriptReadDataLike = null; public ArrayList ScriptReadDataBetween = null; public ArrayList ScriptReadDataIn = null; public UUID SY_Plugin_RecID = null; public ArrayList SY_Plugin_RecIDIn = null; public String getSettingID() { return SettingID; } public RE_CustomSettingsQuery setSettingID(String value) { this.SettingID = value; return this; } public String getSettingIDStartsWith() { return SettingIDStartsWith; } public RE_CustomSettingsQuery setSettingIDStartsWith(String value) { this.SettingIDStartsWith = value; return this; } public String getSettingIDEndsWith() { return SettingIDEndsWith; } public RE_CustomSettingsQuery setSettingIDEndsWith(String value) { this.SettingIDEndsWith = value; return this; } public String getSettingIDContains() { return SettingIDContains; } public RE_CustomSettingsQuery setSettingIDContains(String value) { this.SettingIDContains = value; return this; } public String getSettingIDLike() { return SettingIDLike; } public RE_CustomSettingsQuery setSettingIDLike(String value) { this.SettingIDLike = value; return this; } public ArrayList getSettingIDBetween() { return SettingIDBetween; } public RE_CustomSettingsQuery setSettingIDBetween(ArrayList value) { this.SettingIDBetween = value; return this; } public ArrayList getSettingIDIn() { return SettingIDIn; } public RE_CustomSettingsQuery setSettingIDIn(ArrayList value) { this.SettingIDIn = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public RE_CustomSettingsQuery setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getLastSavedDateTimeGreaterThanOrEqualTo() { return LastSavedDateTimeGreaterThanOrEqualTo; } public RE_CustomSettingsQuery setLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.LastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeGreaterThan() { return LastSavedDateTimeGreaterThan; } public RE_CustomSettingsQuery setLastSavedDateTimeGreaterThan(Date value) { this.LastSavedDateTimeGreaterThan = value; return this; } public Date getLastSavedDateTimeLessThan() { return LastSavedDateTimeLessThan; } public RE_CustomSettingsQuery setLastSavedDateTimeLessThan(Date value) { this.LastSavedDateTimeLessThan = value; return this; } public Date getLastSavedDateTimeLessThanOrEqualTo() { return LastSavedDateTimeLessThanOrEqualTo; } public RE_CustomSettingsQuery setLastSavedDateTimeLessThanOrEqualTo(Date value) { this.LastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeNotEqualTo() { return LastSavedDateTimeNotEqualTo; } public RE_CustomSettingsQuery setLastSavedDateTimeNotEqualTo(Date value) { this.LastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getLastSavedDateTimeBetween() { return LastSavedDateTimeBetween; } public RE_CustomSettingsQuery setLastSavedDateTimeBetween(ArrayList value) { this.LastSavedDateTimeBetween = value; return this; } public ArrayList getLastSavedDateTimeIn() { return LastSavedDateTimeIn; } public RE_CustomSettingsQuery setLastSavedDateTimeIn(ArrayList value) { this.LastSavedDateTimeIn = value; return this; } public String getSettingDescription() { return SettingDescription; } public RE_CustomSettingsQuery setSettingDescription(String value) { this.SettingDescription = value; return this; } public String getSettingDescriptionStartsWith() { return SettingDescriptionStartsWith; } public RE_CustomSettingsQuery setSettingDescriptionStartsWith(String value) { this.SettingDescriptionStartsWith = value; return this; } public String getSettingDescriptionEndsWith() { return SettingDescriptionEndsWith; } public RE_CustomSettingsQuery setSettingDescriptionEndsWith(String value) { this.SettingDescriptionEndsWith = value; return this; } public String getSettingDescriptionContains() { return SettingDescriptionContains; } public RE_CustomSettingsQuery setSettingDescriptionContains(String value) { this.SettingDescriptionContains = value; return this; } public String getSettingDescriptionLike() { return SettingDescriptionLike; } public RE_CustomSettingsQuery setSettingDescriptionLike(String value) { this.SettingDescriptionLike = value; return this; } public ArrayList getSettingDescriptionBetween() { return SettingDescriptionBetween; } public RE_CustomSettingsQuery setSettingDescriptionBetween(ArrayList value) { this.SettingDescriptionBetween = value; return this; } public ArrayList getSettingDescriptionIn() { return SettingDescriptionIn; } public RE_CustomSettingsQuery setSettingDescriptionIn(ArrayList value) { this.SettingDescriptionIn = value; return this; } public String getSettingName() { return SettingName; } public RE_CustomSettingsQuery setSettingName(String value) { this.SettingName = value; return this; } public String getSettingNameStartsWith() { return SettingNameStartsWith; } public RE_CustomSettingsQuery setSettingNameStartsWith(String value) { this.SettingNameStartsWith = value; return this; } public String getSettingNameEndsWith() { return SettingNameEndsWith; } public RE_CustomSettingsQuery setSettingNameEndsWith(String value) { this.SettingNameEndsWith = value; return this; } public String getSettingNameContains() { return SettingNameContains; } public RE_CustomSettingsQuery setSettingNameContains(String value) { this.SettingNameContains = value; return this; } public String getSettingNameLike() { return SettingNameLike; } public RE_CustomSettingsQuery setSettingNameLike(String value) { this.SettingNameLike = value; return this; } public ArrayList getSettingNameBetween() { return SettingNameBetween; } public RE_CustomSettingsQuery setSettingNameBetween(ArrayList value) { this.SettingNameBetween = value; return this; } public ArrayList getSettingNameIn() { return SettingNameIn; } public RE_CustomSettingsQuery setSettingNameIn(ArrayList value) { this.SettingNameIn = value; return this; } public BigDecimal getDisplayOrder() { return DisplayOrder; } public RE_CustomSettingsQuery setDisplayOrder(BigDecimal value) { this.DisplayOrder = value; return this; } public BigDecimal getDisplayOrderGreaterThanOrEqualTo() { return DisplayOrderGreaterThanOrEqualTo; } public RE_CustomSettingsQuery setDisplayOrderGreaterThanOrEqualTo(BigDecimal value) { this.DisplayOrderGreaterThanOrEqualTo = value; return this; } public BigDecimal getDisplayOrderGreaterThan() { return DisplayOrderGreaterThan; } public RE_CustomSettingsQuery setDisplayOrderGreaterThan(BigDecimal value) { this.DisplayOrderGreaterThan = value; return this; } public BigDecimal getDisplayOrderLessThan() { return DisplayOrderLessThan; } public RE_CustomSettingsQuery setDisplayOrderLessThan(BigDecimal value) { this.DisplayOrderLessThan = value; return this; } public BigDecimal getDisplayOrderLessThanOrEqualTo() { return DisplayOrderLessThanOrEqualTo; } public RE_CustomSettingsQuery setDisplayOrderLessThanOrEqualTo(BigDecimal value) { this.DisplayOrderLessThanOrEqualTo = value; return this; } public BigDecimal getDisplayOrderNotEqualTo() { return DisplayOrderNotEqualTo; } public RE_CustomSettingsQuery setDisplayOrderNotEqualTo(BigDecimal value) { this.DisplayOrderNotEqualTo = value; return this; } public ArrayList getDisplayOrderBetween() { return DisplayOrderBetween; } public RE_CustomSettingsQuery setDisplayOrderBetween(ArrayList value) { this.DisplayOrderBetween = value; return this; } public ArrayList getDisplayOrderIn() { return DisplayOrderIn; } public RE_CustomSettingsQuery setDisplayOrderIn(ArrayList value) { this.DisplayOrderIn = value; return this; } public Short getCellType() { return CellType; } public RE_CustomSettingsQuery setCellType(Short value) { this.CellType = value; return this; } public Short getCellTypeGreaterThanOrEqualTo() { return CellTypeGreaterThanOrEqualTo; } public RE_CustomSettingsQuery setCellTypeGreaterThanOrEqualTo(Short value) { this.CellTypeGreaterThanOrEqualTo = value; return this; } public Short getCellTypeGreaterThan() { return CellTypeGreaterThan; } public RE_CustomSettingsQuery setCellTypeGreaterThan(Short value) { this.CellTypeGreaterThan = value; return this; } public Short getCellTypeLessThan() { return CellTypeLessThan; } public RE_CustomSettingsQuery setCellTypeLessThan(Short value) { this.CellTypeLessThan = value; return this; } public Short getCellTypeLessThanOrEqualTo() { return CellTypeLessThanOrEqualTo; } public RE_CustomSettingsQuery setCellTypeLessThanOrEqualTo(Short value) { this.CellTypeLessThanOrEqualTo = value; return this; } public Short getCellTypeNotEqualTo() { return CellTypeNotEqualTo; } public RE_CustomSettingsQuery setCellTypeNotEqualTo(Short value) { this.CellTypeNotEqualTo = value; return this; } public ArrayList getCellTypeBetween() { return CellTypeBetween; } public RE_CustomSettingsQuery setCellTypeBetween(ArrayList value) { this.CellTypeBetween = value; return this; } public ArrayList getCellTypeIn() { return CellTypeIn; } public RE_CustomSettingsQuery setCellTypeIn(ArrayList value) { this.CellTypeIn = value; return this; } public String getScriptFormatCell() { return ScriptFormatCell; } public RE_CustomSettingsQuery setScriptFormatCell(String value) { this.ScriptFormatCell = value; return this; } public String getScriptFormatCellStartsWith() { return ScriptFormatCellStartsWith; } public RE_CustomSettingsQuery setScriptFormatCellStartsWith(String value) { this.ScriptFormatCellStartsWith = value; return this; } public String getScriptFormatCellEndsWith() { return ScriptFormatCellEndsWith; } public RE_CustomSettingsQuery setScriptFormatCellEndsWith(String value) { this.ScriptFormatCellEndsWith = value; return this; } public String getScriptFormatCellContains() { return ScriptFormatCellContains; } public RE_CustomSettingsQuery setScriptFormatCellContains(String value) { this.ScriptFormatCellContains = value; return this; } public String getScriptFormatCellLike() { return ScriptFormatCellLike; } public RE_CustomSettingsQuery setScriptFormatCellLike(String value) { this.ScriptFormatCellLike = value; return this; } public ArrayList getScriptFormatCellBetween() { return ScriptFormatCellBetween; } public RE_CustomSettingsQuery setScriptFormatCellBetween(ArrayList value) { this.ScriptFormatCellBetween = value; return this; } public ArrayList getScriptFormatCellIn() { return ScriptFormatCellIn; } public RE_CustomSettingsQuery setScriptFormatCellIn(ArrayList value) { this.ScriptFormatCellIn = value; return this; } public String getScriptButtonClicked() { return ScriptButtonClicked; } public RE_CustomSettingsQuery setScriptButtonClicked(String value) { this.ScriptButtonClicked = value; return this; } public String getScriptButtonClickedStartsWith() { return ScriptButtonClickedStartsWith; } public RE_CustomSettingsQuery setScriptButtonClickedStartsWith(String value) { this.ScriptButtonClickedStartsWith = value; return this; } public String getScriptButtonClickedEndsWith() { return ScriptButtonClickedEndsWith; } public RE_CustomSettingsQuery setScriptButtonClickedEndsWith(String value) { this.ScriptButtonClickedEndsWith = value; return this; } public String getScriptButtonClickedContains() { return ScriptButtonClickedContains; } public RE_CustomSettingsQuery setScriptButtonClickedContains(String value) { this.ScriptButtonClickedContains = value; return this; } public String getScriptButtonClickedLike() { return ScriptButtonClickedLike; } public RE_CustomSettingsQuery setScriptButtonClickedLike(String value) { this.ScriptButtonClickedLike = value; return this; } public ArrayList getScriptButtonClickedBetween() { return ScriptButtonClickedBetween; } public RE_CustomSettingsQuery setScriptButtonClickedBetween(ArrayList value) { this.ScriptButtonClickedBetween = value; return this; } public ArrayList getScriptButtonClickedIn() { return ScriptButtonClickedIn; } public RE_CustomSettingsQuery setScriptButtonClickedIn(ArrayList value) { this.ScriptButtonClickedIn = value; return this; } public String getScriptReadData() { return ScriptReadData; } public RE_CustomSettingsQuery setScriptReadData(String value) { this.ScriptReadData = value; return this; } public String getScriptReadDataStartsWith() { return ScriptReadDataStartsWith; } public RE_CustomSettingsQuery setScriptReadDataStartsWith(String value) { this.ScriptReadDataStartsWith = value; return this; } public String getScriptReadDataEndsWith() { return ScriptReadDataEndsWith; } public RE_CustomSettingsQuery setScriptReadDataEndsWith(String value) { this.ScriptReadDataEndsWith = value; return this; } public String getScriptReadDataContains() { return ScriptReadDataContains; } public RE_CustomSettingsQuery setScriptReadDataContains(String value) { this.ScriptReadDataContains = value; return this; } public String getScriptReadDataLike() { return ScriptReadDataLike; } public RE_CustomSettingsQuery setScriptReadDataLike(String value) { this.ScriptReadDataLike = value; return this; } public ArrayList getScriptReadDataBetween() { return ScriptReadDataBetween; } public RE_CustomSettingsQuery setScriptReadDataBetween(ArrayList value) { this.ScriptReadDataBetween = value; return this; } public ArrayList getScriptReadDataIn() { return ScriptReadDataIn; } public RE_CustomSettingsQuery setScriptReadDataIn(ArrayList value) { this.ScriptReadDataIn = value; return this; } public UUID getSyPluginRecID() { return SY_Plugin_RecID; } public RE_CustomSettingsQuery setSyPluginRecID(UUID value) { this.SY_Plugin_RecID = value; return this; } public ArrayList getSyPluginRecIDIn() { return SY_Plugin_RecIDIn; } public RE_CustomSettingsQuery setSyPluginRecIDIn(ArrayList value) { this.SY_Plugin_RecIDIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class RE_CustomSettingValuesQuery extends QueryDb implements IReturn> { public String SettingValueID = null; public String SettingValueIDStartsWith = null; public String SettingValueIDEndsWith = null; public String SettingValueIDContains = null; public String SettingValueIDLike = null; public ArrayList SettingValueIDBetween = null; public ArrayList SettingValueIDIn = null; public String SettingID = null; public String SettingIDStartsWith = null; public String SettingIDEndsWith = null; public String SettingIDContains = null; public String SettingIDLike = null; public ArrayList SettingIDBetween = null; public ArrayList SettingIDIn = null; public String RE_Main_RecID = null; public String RE_Main_RecIDStartsWith = null; public String RE_Main_RecIDEndsWith = null; public String RE_Main_RecIDContains = null; public String RE_Main_RecIDLike = null; public ArrayList RE_Main_RecIDBetween = null; public ArrayList RE_Main_RecIDIn = null; public String Contents = null; public String ContentsStartsWith = null; public String ContentsEndsWith = null; public String ContentsContains = null; public String ContentsLike = null; public ArrayList ContentsBetween = null; public ArrayList ContentsIn = null; public Date LastSavedDateTime = null; public Date LastSavedDateTimeGreaterThanOrEqualTo = null; public Date LastSavedDateTimeGreaterThan = null; public Date LastSavedDateTimeLessThan = null; public Date LastSavedDateTimeLessThanOrEqualTo = null; public Date LastSavedDateTimeNotEqualTo = null; public ArrayList LastSavedDateTimeBetween = null; public ArrayList LastSavedDateTimeIn = null; public String getSettingValueID() { return SettingValueID; } public RE_CustomSettingValuesQuery setSettingValueID(String value) { this.SettingValueID = value; return this; } public String getSettingValueIDStartsWith() { return SettingValueIDStartsWith; } public RE_CustomSettingValuesQuery setSettingValueIDStartsWith(String value) { this.SettingValueIDStartsWith = value; return this; } public String getSettingValueIDEndsWith() { return SettingValueIDEndsWith; } public RE_CustomSettingValuesQuery setSettingValueIDEndsWith(String value) { this.SettingValueIDEndsWith = value; return this; } public String getSettingValueIDContains() { return SettingValueIDContains; } public RE_CustomSettingValuesQuery setSettingValueIDContains(String value) { this.SettingValueIDContains = value; return this; } public String getSettingValueIDLike() { return SettingValueIDLike; } public RE_CustomSettingValuesQuery setSettingValueIDLike(String value) { this.SettingValueIDLike = value; return this; } public ArrayList getSettingValueIDBetween() { return SettingValueIDBetween; } public RE_CustomSettingValuesQuery setSettingValueIDBetween(ArrayList value) { this.SettingValueIDBetween = value; return this; } public ArrayList getSettingValueIDIn() { return SettingValueIDIn; } public RE_CustomSettingValuesQuery setSettingValueIDIn(ArrayList value) { this.SettingValueIDIn = value; return this; } public String getSettingID() { return SettingID; } public RE_CustomSettingValuesQuery setSettingID(String value) { this.SettingID = value; return this; } public String getSettingIDStartsWith() { return SettingIDStartsWith; } public RE_CustomSettingValuesQuery setSettingIDStartsWith(String value) { this.SettingIDStartsWith = value; return this; } public String getSettingIDEndsWith() { return SettingIDEndsWith; } public RE_CustomSettingValuesQuery setSettingIDEndsWith(String value) { this.SettingIDEndsWith = value; return this; } public String getSettingIDContains() { return SettingIDContains; } public RE_CustomSettingValuesQuery setSettingIDContains(String value) { this.SettingIDContains = value; return this; } public String getSettingIDLike() { return SettingIDLike; } public RE_CustomSettingValuesQuery setSettingIDLike(String value) { this.SettingIDLike = value; return this; } public ArrayList getSettingIDBetween() { return SettingIDBetween; } public RE_CustomSettingValuesQuery setSettingIDBetween(ArrayList value) { this.SettingIDBetween = value; return this; } public ArrayList getSettingIDIn() { return SettingIDIn; } public RE_CustomSettingValuesQuery setSettingIDIn(ArrayList value) { this.SettingIDIn = value; return this; } public String getReMainRecID() { return RE_Main_RecID; } public RE_CustomSettingValuesQuery setReMainRecID(String value) { this.RE_Main_RecID = value; return this; } public String getReMainRecIDStartsWith() { return RE_Main_RecIDStartsWith; } public RE_CustomSettingValuesQuery setReMainRecIDStartsWith(String value) { this.RE_Main_RecIDStartsWith = value; return this; } public String getReMainRecIDEndsWith() { return RE_Main_RecIDEndsWith; } public RE_CustomSettingValuesQuery setReMainRecIDEndsWith(String value) { this.RE_Main_RecIDEndsWith = value; return this; } public String getReMainRecIDContains() { return RE_Main_RecIDContains; } public RE_CustomSettingValuesQuery setReMainRecIDContains(String value) { this.RE_Main_RecIDContains = value; return this; } public String getReMainRecIDLike() { return RE_Main_RecIDLike; } public RE_CustomSettingValuesQuery setReMainRecIDLike(String value) { this.RE_Main_RecIDLike = value; return this; } public ArrayList getReMainRecIDBetween() { return RE_Main_RecIDBetween; } public RE_CustomSettingValuesQuery setReMainRecIDBetween(ArrayList value) { this.RE_Main_RecIDBetween = value; return this; } public ArrayList getReMainRecIDIn() { return RE_Main_RecIDIn; } public RE_CustomSettingValuesQuery setReMainRecIDIn(ArrayList value) { this.RE_Main_RecIDIn = value; return this; } public String getContents() { return Contents; } public RE_CustomSettingValuesQuery setContents(String value) { this.Contents = value; return this; } public String getContentsStartsWith() { return ContentsStartsWith; } public RE_CustomSettingValuesQuery setContentsStartsWith(String value) { this.ContentsStartsWith = value; return this; } public String getContentsEndsWith() { return ContentsEndsWith; } public RE_CustomSettingValuesQuery setContentsEndsWith(String value) { this.ContentsEndsWith = value; return this; } public String getContentsContains() { return ContentsContains; } public RE_CustomSettingValuesQuery setContentsContains(String value) { this.ContentsContains = value; return this; } public String getContentsLike() { return ContentsLike; } public RE_CustomSettingValuesQuery setContentsLike(String value) { this.ContentsLike = value; return this; } public ArrayList getContentsBetween() { return ContentsBetween; } public RE_CustomSettingValuesQuery setContentsBetween(ArrayList value) { this.ContentsBetween = value; return this; } public ArrayList getContentsIn() { return ContentsIn; } public RE_CustomSettingValuesQuery setContentsIn(ArrayList value) { this.ContentsIn = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public RE_CustomSettingValuesQuery setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getLastSavedDateTimeGreaterThanOrEqualTo() { return LastSavedDateTimeGreaterThanOrEqualTo; } public RE_CustomSettingValuesQuery setLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.LastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeGreaterThan() { return LastSavedDateTimeGreaterThan; } public RE_CustomSettingValuesQuery setLastSavedDateTimeGreaterThan(Date value) { this.LastSavedDateTimeGreaterThan = value; return this; } public Date getLastSavedDateTimeLessThan() { return LastSavedDateTimeLessThan; } public RE_CustomSettingValuesQuery setLastSavedDateTimeLessThan(Date value) { this.LastSavedDateTimeLessThan = value; return this; } public Date getLastSavedDateTimeLessThanOrEqualTo() { return LastSavedDateTimeLessThanOrEqualTo; } public RE_CustomSettingValuesQuery setLastSavedDateTimeLessThanOrEqualTo(Date value) { this.LastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeNotEqualTo() { return LastSavedDateTimeNotEqualTo; } public RE_CustomSettingValuesQuery setLastSavedDateTimeNotEqualTo(Date value) { this.LastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getLastSavedDateTimeBetween() { return LastSavedDateTimeBetween; } public RE_CustomSettingValuesQuery setLastSavedDateTimeBetween(ArrayList value) { this.LastSavedDateTimeBetween = value; return this; } public ArrayList getLastSavedDateTimeIn() { return LastSavedDateTimeIn; } public RE_CustomSettingValuesQuery setLastSavedDateTimeIn(ArrayList value) { this.LastSavedDateTimeIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class RE_LineCustomFieldsQuery extends QueryDb implements IReturn> { public String RecID = null; public String RecIDStartsWith = null; public String RecIDEndsWith = null; public String RecIDContains = null; public String RecIDLike = null; public ArrayList RecIDBetween = null; public ArrayList RecIDIn = null; public String SettingName = null; public String SettingNameStartsWith = null; public String SettingNameEndsWith = null; public String SettingNameContains = null; public String SettingNameLike = null; public ArrayList SettingNameBetween = null; public ArrayList SettingNameIn = null; public String SettingDescription = null; public String SettingDescriptionStartsWith = null; public String SettingDescriptionEndsWith = null; public String SettingDescriptionContains = null; public String SettingDescriptionLike = null; public ArrayList SettingDescriptionBetween = null; public ArrayList SettingDescriptionIn = null; public Integer CellType = null; public Integer CellTypeGreaterThanOrEqualTo = null; public Integer CellTypeGreaterThan = null; public Integer CellTypeLessThan = null; public Integer CellTypeLessThanOrEqualTo = null; public Integer CellTypeNotEqualTo = null; public ArrayList CellTypeBetween = null; public ArrayList CellTypeIn = null; public String FieldParameter = null; public String FieldParameterStartsWith = null; public String FieldParameterEndsWith = null; public String FieldParameterContains = null; public String FieldParameterLike = null; public ArrayList FieldParameterBetween = null; public ArrayList FieldParameterIn = null; public UUID SY_Plugin_RecID = null; public ArrayList SY_Plugin_RecIDIn = null; public Date LastSavedDateTime = null; public Date LastSavedDateTimeGreaterThanOrEqualTo = null; public Date LastSavedDateTimeGreaterThan = null; public Date LastSavedDateTimeLessThan = null; public Date LastSavedDateTimeLessThanOrEqualTo = null; public Date LastSavedDateTimeNotEqualTo = null; public ArrayList LastSavedDateTimeBetween = null; public ArrayList LastSavedDateTimeIn = null; public Integer DisplayOrder = null; public Integer DisplayOrderGreaterThanOrEqualTo = null; public Integer DisplayOrderGreaterThan = null; public Integer DisplayOrderLessThan = null; public Integer DisplayOrderLessThanOrEqualTo = null; public Integer DisplayOrderNotEqualTo = null; public ArrayList DisplayOrderBetween = null; public ArrayList DisplayOrderIn = null; public String getRecID() { return RecID; } public RE_LineCustomFieldsQuery setRecID(String value) { this.RecID = value; return this; } public String getRecIDStartsWith() { return RecIDStartsWith; } public RE_LineCustomFieldsQuery setRecIDStartsWith(String value) { this.RecIDStartsWith = value; return this; } public String getRecIDEndsWith() { return RecIDEndsWith; } public RE_LineCustomFieldsQuery setRecIDEndsWith(String value) { this.RecIDEndsWith = value; return this; } public String getRecIDContains() { return RecIDContains; } public RE_LineCustomFieldsQuery setRecIDContains(String value) { this.RecIDContains = value; return this; } public String getRecIDLike() { return RecIDLike; } public RE_LineCustomFieldsQuery setRecIDLike(String value) { this.RecIDLike = value; return this; } public ArrayList getRecIDBetween() { return RecIDBetween; } public RE_LineCustomFieldsQuery setRecIDBetween(ArrayList value) { this.RecIDBetween = value; return this; } public ArrayList getRecIDIn() { return RecIDIn; } public RE_LineCustomFieldsQuery setRecIDIn(ArrayList value) { this.RecIDIn = value; return this; } public String getSettingName() { return SettingName; } public RE_LineCustomFieldsQuery setSettingName(String value) { this.SettingName = value; return this; } public String getSettingNameStartsWith() { return SettingNameStartsWith; } public RE_LineCustomFieldsQuery setSettingNameStartsWith(String value) { this.SettingNameStartsWith = value; return this; } public String getSettingNameEndsWith() { return SettingNameEndsWith; } public RE_LineCustomFieldsQuery setSettingNameEndsWith(String value) { this.SettingNameEndsWith = value; return this; } public String getSettingNameContains() { return SettingNameContains; } public RE_LineCustomFieldsQuery setSettingNameContains(String value) { this.SettingNameContains = value; return this; } public String getSettingNameLike() { return SettingNameLike; } public RE_LineCustomFieldsQuery setSettingNameLike(String value) { this.SettingNameLike = value; return this; } public ArrayList getSettingNameBetween() { return SettingNameBetween; } public RE_LineCustomFieldsQuery setSettingNameBetween(ArrayList value) { this.SettingNameBetween = value; return this; } public ArrayList getSettingNameIn() { return SettingNameIn; } public RE_LineCustomFieldsQuery setSettingNameIn(ArrayList value) { this.SettingNameIn = value; return this; } public String getSettingDescription() { return SettingDescription; } public RE_LineCustomFieldsQuery setSettingDescription(String value) { this.SettingDescription = value; return this; } public String getSettingDescriptionStartsWith() { return SettingDescriptionStartsWith; } public RE_LineCustomFieldsQuery setSettingDescriptionStartsWith(String value) { this.SettingDescriptionStartsWith = value; return this; } public String getSettingDescriptionEndsWith() { return SettingDescriptionEndsWith; } public RE_LineCustomFieldsQuery setSettingDescriptionEndsWith(String value) { this.SettingDescriptionEndsWith = value; return this; } public String getSettingDescriptionContains() { return SettingDescriptionContains; } public RE_LineCustomFieldsQuery setSettingDescriptionContains(String value) { this.SettingDescriptionContains = value; return this; } public String getSettingDescriptionLike() { return SettingDescriptionLike; } public RE_LineCustomFieldsQuery setSettingDescriptionLike(String value) { this.SettingDescriptionLike = value; return this; } public ArrayList getSettingDescriptionBetween() { return SettingDescriptionBetween; } public RE_LineCustomFieldsQuery setSettingDescriptionBetween(ArrayList value) { this.SettingDescriptionBetween = value; return this; } public ArrayList getSettingDescriptionIn() { return SettingDescriptionIn; } public RE_LineCustomFieldsQuery setSettingDescriptionIn(ArrayList value) { this.SettingDescriptionIn = value; return this; } public Integer getCellType() { return CellType; } public RE_LineCustomFieldsQuery setCellType(Integer value) { this.CellType = value; return this; } public Integer getCellTypeGreaterThanOrEqualTo() { return CellTypeGreaterThanOrEqualTo; } public RE_LineCustomFieldsQuery setCellTypeGreaterThanOrEqualTo(Integer value) { this.CellTypeGreaterThanOrEqualTo = value; return this; } public Integer getCellTypeGreaterThan() { return CellTypeGreaterThan; } public RE_LineCustomFieldsQuery setCellTypeGreaterThan(Integer value) { this.CellTypeGreaterThan = value; return this; } public Integer getCellTypeLessThan() { return CellTypeLessThan; } public RE_LineCustomFieldsQuery setCellTypeLessThan(Integer value) { this.CellTypeLessThan = value; return this; } public Integer getCellTypeLessThanOrEqualTo() { return CellTypeLessThanOrEqualTo; } public RE_LineCustomFieldsQuery setCellTypeLessThanOrEqualTo(Integer value) { this.CellTypeLessThanOrEqualTo = value; return this; } public Integer getCellTypeNotEqualTo() { return CellTypeNotEqualTo; } public RE_LineCustomFieldsQuery setCellTypeNotEqualTo(Integer value) { this.CellTypeNotEqualTo = value; return this; } public ArrayList getCellTypeBetween() { return CellTypeBetween; } public RE_LineCustomFieldsQuery setCellTypeBetween(ArrayList value) { this.CellTypeBetween = value; return this; } public ArrayList getCellTypeIn() { return CellTypeIn; } public RE_LineCustomFieldsQuery setCellTypeIn(ArrayList value) { this.CellTypeIn = value; return this; } public String getFieldParameter() { return FieldParameter; } public RE_LineCustomFieldsQuery setFieldParameter(String value) { this.FieldParameter = value; return this; } public String getFieldParameterStartsWith() { return FieldParameterStartsWith; } public RE_LineCustomFieldsQuery setFieldParameterStartsWith(String value) { this.FieldParameterStartsWith = value; return this; } public String getFieldParameterEndsWith() { return FieldParameterEndsWith; } public RE_LineCustomFieldsQuery setFieldParameterEndsWith(String value) { this.FieldParameterEndsWith = value; return this; } public String getFieldParameterContains() { return FieldParameterContains; } public RE_LineCustomFieldsQuery setFieldParameterContains(String value) { this.FieldParameterContains = value; return this; } public String getFieldParameterLike() { return FieldParameterLike; } public RE_LineCustomFieldsQuery setFieldParameterLike(String value) { this.FieldParameterLike = value; return this; } public ArrayList getFieldParameterBetween() { return FieldParameterBetween; } public RE_LineCustomFieldsQuery setFieldParameterBetween(ArrayList value) { this.FieldParameterBetween = value; return this; } public ArrayList getFieldParameterIn() { return FieldParameterIn; } public RE_LineCustomFieldsQuery setFieldParameterIn(ArrayList value) { this.FieldParameterIn = value; return this; } public UUID getSyPluginRecID() { return SY_Plugin_RecID; } public RE_LineCustomFieldsQuery setSyPluginRecID(UUID value) { this.SY_Plugin_RecID = value; return this; } public ArrayList getSyPluginRecIDIn() { return SY_Plugin_RecIDIn; } public RE_LineCustomFieldsQuery setSyPluginRecIDIn(ArrayList value) { this.SY_Plugin_RecIDIn = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public RE_LineCustomFieldsQuery setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getLastSavedDateTimeGreaterThanOrEqualTo() { return LastSavedDateTimeGreaterThanOrEqualTo; } public RE_LineCustomFieldsQuery setLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.LastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeGreaterThan() { return LastSavedDateTimeGreaterThan; } public RE_LineCustomFieldsQuery setLastSavedDateTimeGreaterThan(Date value) { this.LastSavedDateTimeGreaterThan = value; return this; } public Date getLastSavedDateTimeLessThan() { return LastSavedDateTimeLessThan; } public RE_LineCustomFieldsQuery setLastSavedDateTimeLessThan(Date value) { this.LastSavedDateTimeLessThan = value; return this; } public Date getLastSavedDateTimeLessThanOrEqualTo() { return LastSavedDateTimeLessThanOrEqualTo; } public RE_LineCustomFieldsQuery setLastSavedDateTimeLessThanOrEqualTo(Date value) { this.LastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeNotEqualTo() { return LastSavedDateTimeNotEqualTo; } public RE_LineCustomFieldsQuery setLastSavedDateTimeNotEqualTo(Date value) { this.LastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getLastSavedDateTimeBetween() { return LastSavedDateTimeBetween; } public RE_LineCustomFieldsQuery setLastSavedDateTimeBetween(ArrayList value) { this.LastSavedDateTimeBetween = value; return this; } public ArrayList getLastSavedDateTimeIn() { return LastSavedDateTimeIn; } public RE_LineCustomFieldsQuery setLastSavedDateTimeIn(ArrayList value) { this.LastSavedDateTimeIn = value; return this; } public Integer getDisplayOrder() { return DisplayOrder; } public RE_LineCustomFieldsQuery setDisplayOrder(Integer value) { this.DisplayOrder = value; return this; } public Integer getDisplayOrderGreaterThanOrEqualTo() { return DisplayOrderGreaterThanOrEqualTo; } public RE_LineCustomFieldsQuery setDisplayOrderGreaterThanOrEqualTo(Integer value) { this.DisplayOrderGreaterThanOrEqualTo = value; return this; } public Integer getDisplayOrderGreaterThan() { return DisplayOrderGreaterThan; } public RE_LineCustomFieldsQuery setDisplayOrderGreaterThan(Integer value) { this.DisplayOrderGreaterThan = value; return this; } public Integer getDisplayOrderLessThan() { return DisplayOrderLessThan; } public RE_LineCustomFieldsQuery setDisplayOrderLessThan(Integer value) { this.DisplayOrderLessThan = value; return this; } public Integer getDisplayOrderLessThanOrEqualTo() { return DisplayOrderLessThanOrEqualTo; } public RE_LineCustomFieldsQuery setDisplayOrderLessThanOrEqualTo(Integer value) { this.DisplayOrderLessThanOrEqualTo = value; return this; } public Integer getDisplayOrderNotEqualTo() { return DisplayOrderNotEqualTo; } public RE_LineCustomFieldsQuery setDisplayOrderNotEqualTo(Integer value) { this.DisplayOrderNotEqualTo = value; return this; } public ArrayList getDisplayOrderBetween() { return DisplayOrderBetween; } public RE_LineCustomFieldsQuery setDisplayOrderBetween(ArrayList value) { this.DisplayOrderBetween = value; return this; } public ArrayList getDisplayOrderIn() { return DisplayOrderIn; } public RE_LineCustomFieldsQuery setDisplayOrderIn(ArrayList value) { this.DisplayOrderIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class RE_LineCustomValuesQuery extends QueryDb implements IReturn> { public String RecID = null; public String RecIDStartsWith = null; public String RecIDEndsWith = null; public String RecIDContains = null; public String RecIDLike = null; public ArrayList RecIDBetween = null; public ArrayList RecIDIn = null; public String RE_Lines_RecID = null; public String RE_Lines_RecIDStartsWith = null; public String RE_Lines_RecIDEndsWith = null; public String RE_Lines_RecIDContains = null; public String RE_Lines_RecIDLike = null; public ArrayList RE_Lines_RecIDBetween = null; public ArrayList RE_Lines_RecIDIn = null; public String RE_LineCustomFields_RecID = null; public String RE_LineCustomFields_RecIDStartsWith = null; public String RE_LineCustomFields_RecIDEndsWith = null; public String RE_LineCustomFields_RecIDContains = null; public String RE_LineCustomFields_RecIDLike = null; public ArrayList RE_LineCustomFields_RecIDBetween = null; public ArrayList RE_LineCustomFields_RecIDIn = null; public String Contents = null; public String ContentsStartsWith = null; public String ContentsEndsWith = null; public String ContentsContains = null; public String ContentsLike = null; public ArrayList ContentsBetween = null; public ArrayList ContentsIn = null; public Date LastSavedDateTime = null; public Date LastSavedDateTimeGreaterThanOrEqualTo = null; public Date LastSavedDateTimeGreaterThan = null; public Date LastSavedDateTimeLessThan = null; public Date LastSavedDateTimeLessThanOrEqualTo = null; public Date LastSavedDateTimeNotEqualTo = null; public ArrayList LastSavedDateTimeBetween = null; public ArrayList LastSavedDateTimeIn = null; public String getRecID() { return RecID; } public RE_LineCustomValuesQuery setRecID(String value) { this.RecID = value; return this; } public String getRecIDStartsWith() { return RecIDStartsWith; } public RE_LineCustomValuesQuery setRecIDStartsWith(String value) { this.RecIDStartsWith = value; return this; } public String getRecIDEndsWith() { return RecIDEndsWith; } public RE_LineCustomValuesQuery setRecIDEndsWith(String value) { this.RecIDEndsWith = value; return this; } public String getRecIDContains() { return RecIDContains; } public RE_LineCustomValuesQuery setRecIDContains(String value) { this.RecIDContains = value; return this; } public String getRecIDLike() { return RecIDLike; } public RE_LineCustomValuesQuery setRecIDLike(String value) { this.RecIDLike = value; return this; } public ArrayList getRecIDBetween() { return RecIDBetween; } public RE_LineCustomValuesQuery setRecIDBetween(ArrayList value) { this.RecIDBetween = value; return this; } public ArrayList getRecIDIn() { return RecIDIn; } public RE_LineCustomValuesQuery setRecIDIn(ArrayList value) { this.RecIDIn = value; return this; } public String getReLinesRecID() { return RE_Lines_RecID; } public RE_LineCustomValuesQuery setReLinesRecID(String value) { this.RE_Lines_RecID = value; return this; } public String getReLinesRecIDStartsWith() { return RE_Lines_RecIDStartsWith; } public RE_LineCustomValuesQuery setReLinesRecIDStartsWith(String value) { this.RE_Lines_RecIDStartsWith = value; return this; } public String getReLinesRecIDEndsWith() { return RE_Lines_RecIDEndsWith; } public RE_LineCustomValuesQuery setReLinesRecIDEndsWith(String value) { this.RE_Lines_RecIDEndsWith = value; return this; } public String getReLinesRecIDContains() { return RE_Lines_RecIDContains; } public RE_LineCustomValuesQuery setReLinesRecIDContains(String value) { this.RE_Lines_RecIDContains = value; return this; } public String getReLinesRecIDLike() { return RE_Lines_RecIDLike; } public RE_LineCustomValuesQuery setReLinesRecIDLike(String value) { this.RE_Lines_RecIDLike = value; return this; } public ArrayList getReLinesRecIDBetween() { return RE_Lines_RecIDBetween; } public RE_LineCustomValuesQuery setReLinesRecIDBetween(ArrayList value) { this.RE_Lines_RecIDBetween = value; return this; } public ArrayList getReLinesRecIDIn() { return RE_Lines_RecIDIn; } public RE_LineCustomValuesQuery setReLinesRecIDIn(ArrayList value) { this.RE_Lines_RecIDIn = value; return this; } public String getReLineCustomFieldsRecID() { return RE_LineCustomFields_RecID; } public RE_LineCustomValuesQuery setReLineCustomFieldsRecID(String value) { this.RE_LineCustomFields_RecID = value; return this; } public String getReLineCustomFieldsRecIDStartsWith() { return RE_LineCustomFields_RecIDStartsWith; } public RE_LineCustomValuesQuery setReLineCustomFieldsRecIDStartsWith(String value) { this.RE_LineCustomFields_RecIDStartsWith = value; return this; } public String getReLineCustomFieldsRecIDEndsWith() { return RE_LineCustomFields_RecIDEndsWith; } public RE_LineCustomValuesQuery setReLineCustomFieldsRecIDEndsWith(String value) { this.RE_LineCustomFields_RecIDEndsWith = value; return this; } public String getReLineCustomFieldsRecIDContains() { return RE_LineCustomFields_RecIDContains; } public RE_LineCustomValuesQuery setReLineCustomFieldsRecIDContains(String value) { this.RE_LineCustomFields_RecIDContains = value; return this; } public String getReLineCustomFieldsRecIDLike() { return RE_LineCustomFields_RecIDLike; } public RE_LineCustomValuesQuery setReLineCustomFieldsRecIDLike(String value) { this.RE_LineCustomFields_RecIDLike = value; return this; } public ArrayList getReLineCustomFieldsRecIDBetween() { return RE_LineCustomFields_RecIDBetween; } public RE_LineCustomValuesQuery setReLineCustomFieldsRecIDBetween(ArrayList value) { this.RE_LineCustomFields_RecIDBetween = value; return this; } public ArrayList getReLineCustomFieldsRecIDIn() { return RE_LineCustomFields_RecIDIn; } public RE_LineCustomValuesQuery setReLineCustomFieldsRecIDIn(ArrayList value) { this.RE_LineCustomFields_RecIDIn = value; return this; } public String getContents() { return Contents; } public RE_LineCustomValuesQuery setContents(String value) { this.Contents = value; return this; } public String getContentsStartsWith() { return ContentsStartsWith; } public RE_LineCustomValuesQuery setContentsStartsWith(String value) { this.ContentsStartsWith = value; return this; } public String getContentsEndsWith() { return ContentsEndsWith; } public RE_LineCustomValuesQuery setContentsEndsWith(String value) { this.ContentsEndsWith = value; return this; } public String getContentsContains() { return ContentsContains; } public RE_LineCustomValuesQuery setContentsContains(String value) { this.ContentsContains = value; return this; } public String getContentsLike() { return ContentsLike; } public RE_LineCustomValuesQuery setContentsLike(String value) { this.ContentsLike = value; return this; } public ArrayList getContentsBetween() { return ContentsBetween; } public RE_LineCustomValuesQuery setContentsBetween(ArrayList value) { this.ContentsBetween = value; return this; } public ArrayList getContentsIn() { return ContentsIn; } public RE_LineCustomValuesQuery setContentsIn(ArrayList value) { this.ContentsIn = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public RE_LineCustomValuesQuery setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getLastSavedDateTimeGreaterThanOrEqualTo() { return LastSavedDateTimeGreaterThanOrEqualTo; } public RE_LineCustomValuesQuery setLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.LastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeGreaterThan() { return LastSavedDateTimeGreaterThan; } public RE_LineCustomValuesQuery setLastSavedDateTimeGreaterThan(Date value) { this.LastSavedDateTimeGreaterThan = value; return this; } public Date getLastSavedDateTimeLessThan() { return LastSavedDateTimeLessThan; } public RE_LineCustomValuesQuery setLastSavedDateTimeLessThan(Date value) { this.LastSavedDateTimeLessThan = value; return this; } public Date getLastSavedDateTimeLessThanOrEqualTo() { return LastSavedDateTimeLessThanOrEqualTo; } public RE_LineCustomValuesQuery setLastSavedDateTimeLessThanOrEqualTo(Date value) { this.LastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeNotEqualTo() { return LastSavedDateTimeNotEqualTo; } public RE_LineCustomValuesQuery setLastSavedDateTimeNotEqualTo(Date value) { this.LastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getLastSavedDateTimeBetween() { return LastSavedDateTimeBetween; } public RE_LineCustomValuesQuery setLastSavedDateTimeBetween(ArrayList value) { this.LastSavedDateTimeBetween = value; return this; } public ArrayList getLastSavedDateTimeIn() { return LastSavedDateTimeIn; } public RE_LineCustomValuesQuery setLastSavedDateTimeIn(ArrayList value) { this.LastSavedDateTimeIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class RE_LineDetailsQuery extends QueryDb implements IReturn> { public String RecID = null; public String RecIDStartsWith = null; public String RecIDEndsWith = null; public String RecIDContains = null; public String RecIDLike = null; public ArrayList RecIDBetween = null; public ArrayList RecIDIn = null; public String RE_Lines_RecID = null; public String RE_Lines_RecIDStartsWith = null; public String RE_Lines_RecIDEndsWith = null; public String RE_Lines_RecIDContains = null; public String RE_Lines_RecIDLike = null; public ArrayList RE_Lines_RecIDBetween = null; public ArrayList RE_Lines_RecIDIn = null; public String LinkID = null; public String LinkIDStartsWith = null; public String LinkIDEndsWith = null; public String LinkIDContains = null; public String LinkIDLike = null; public ArrayList LinkIDBetween = null; public ArrayList LinkIDIn = null; public BigDecimal Quantity = null; public BigDecimal QuantityGreaterThanOrEqualTo = null; public BigDecimal QuantityGreaterThan = null; public BigDecimal QuantityLessThan = null; public BigDecimal QuantityLessThanOrEqualTo = null; public BigDecimal QuantityNotEqualTo = null; public ArrayList QuantityBetween = null; public ArrayList QuantityIn = null; public String SerialNo = null; public String SerialNoStartsWith = null; public String SerialNoEndsWith = null; public String SerialNoContains = null; public String SerialNoLike = null; public ArrayList SerialNoBetween = null; public ArrayList SerialNoIn = null; public String BinLocationDescription = null; public String BinLocationDescriptionStartsWith = null; public String BinLocationDescriptionEndsWith = null; public String BinLocationDescriptionContains = null; public String BinLocationDescriptionLike = null; public ArrayList BinLocationDescriptionBetween = null; public ArrayList BinLocationDescriptionIn = null; public Date LastSavedDateTime = null; public Date LastSavedDateTimeGreaterThanOrEqualTo = null; public Date LastSavedDateTimeGreaterThan = null; public Date LastSavedDateTimeLessThan = null; public Date LastSavedDateTimeLessThanOrEqualTo = null; public Date LastSavedDateTimeNotEqualTo = null; public ArrayList LastSavedDateTimeBetween = null; public ArrayList LastSavedDateTimeIn = null; public ArrayList RowHash = null; public Date ExpiryDate = null; public Date ExpiryDateGreaterThanOrEqualTo = null; public Date ExpiryDateGreaterThan = null; public Date ExpiryDateLessThan = null; public Date ExpiryDateLessThanOrEqualTo = null; public Date ExpiryDateNotEqualTo = null; public ArrayList ExpiryDateBetween = null; public ArrayList ExpiryDateIn = null; public Integer ItemNo = null; public Integer ItemNoGreaterThanOrEqualTo = null; public Integer ItemNoGreaterThan = null; public Integer ItemNoLessThan = null; public Integer ItemNoLessThanOrEqualTo = null; public Integer ItemNoNotEqualTo = null; public ArrayList ItemNoBetween = null; public ArrayList ItemNoIn = null; public String getRecID() { return RecID; } public RE_LineDetailsQuery setRecID(String value) { this.RecID = value; return this; } public String getRecIDStartsWith() { return RecIDStartsWith; } public RE_LineDetailsQuery setRecIDStartsWith(String value) { this.RecIDStartsWith = value; return this; } public String getRecIDEndsWith() { return RecIDEndsWith; } public RE_LineDetailsQuery setRecIDEndsWith(String value) { this.RecIDEndsWith = value; return this; } public String getRecIDContains() { return RecIDContains; } public RE_LineDetailsQuery setRecIDContains(String value) { this.RecIDContains = value; return this; } public String getRecIDLike() { return RecIDLike; } public RE_LineDetailsQuery setRecIDLike(String value) { this.RecIDLike = value; return this; } public ArrayList getRecIDBetween() { return RecIDBetween; } public RE_LineDetailsQuery setRecIDBetween(ArrayList value) { this.RecIDBetween = value; return this; } public ArrayList getRecIDIn() { return RecIDIn; } public RE_LineDetailsQuery setRecIDIn(ArrayList value) { this.RecIDIn = value; return this; } public String getReLinesRecID() { return RE_Lines_RecID; } public RE_LineDetailsQuery setReLinesRecID(String value) { this.RE_Lines_RecID = value; return this; } public String getReLinesRecIDStartsWith() { return RE_Lines_RecIDStartsWith; } public RE_LineDetailsQuery setReLinesRecIDStartsWith(String value) { this.RE_Lines_RecIDStartsWith = value; return this; } public String getReLinesRecIDEndsWith() { return RE_Lines_RecIDEndsWith; } public RE_LineDetailsQuery setReLinesRecIDEndsWith(String value) { this.RE_Lines_RecIDEndsWith = value; return this; } public String getReLinesRecIDContains() { return RE_Lines_RecIDContains; } public RE_LineDetailsQuery setReLinesRecIDContains(String value) { this.RE_Lines_RecIDContains = value; return this; } public String getReLinesRecIDLike() { return RE_Lines_RecIDLike; } public RE_LineDetailsQuery setReLinesRecIDLike(String value) { this.RE_Lines_RecIDLike = value; return this; } public ArrayList getReLinesRecIDBetween() { return RE_Lines_RecIDBetween; } public RE_LineDetailsQuery setReLinesRecIDBetween(ArrayList value) { this.RE_Lines_RecIDBetween = value; return this; } public ArrayList getReLinesRecIDIn() { return RE_Lines_RecIDIn; } public RE_LineDetailsQuery setReLinesRecIDIn(ArrayList value) { this.RE_Lines_RecIDIn = value; return this; } public String getLinkID() { return LinkID; } public RE_LineDetailsQuery setLinkID(String value) { this.LinkID = value; return this; } public String getLinkIDStartsWith() { return LinkIDStartsWith; } public RE_LineDetailsQuery setLinkIDStartsWith(String value) { this.LinkIDStartsWith = value; return this; } public String getLinkIDEndsWith() { return LinkIDEndsWith; } public RE_LineDetailsQuery setLinkIDEndsWith(String value) { this.LinkIDEndsWith = value; return this; } public String getLinkIDContains() { return LinkIDContains; } public RE_LineDetailsQuery setLinkIDContains(String value) { this.LinkIDContains = value; return this; } public String getLinkIDLike() { return LinkIDLike; } public RE_LineDetailsQuery setLinkIDLike(String value) { this.LinkIDLike = value; return this; } public ArrayList getLinkIDBetween() { return LinkIDBetween; } public RE_LineDetailsQuery setLinkIDBetween(ArrayList value) { this.LinkIDBetween = value; return this; } public ArrayList getLinkIDIn() { return LinkIDIn; } public RE_LineDetailsQuery setLinkIDIn(ArrayList value) { this.LinkIDIn = value; return this; } public BigDecimal getQuantity() { return Quantity; } public RE_LineDetailsQuery setQuantity(BigDecimal value) { this.Quantity = value; return this; } public BigDecimal getQuantityGreaterThanOrEqualTo() { return QuantityGreaterThanOrEqualTo; } public RE_LineDetailsQuery setQuantityGreaterThanOrEqualTo(BigDecimal value) { this.QuantityGreaterThanOrEqualTo = value; return this; } public BigDecimal getQuantityGreaterThan() { return QuantityGreaterThan; } public RE_LineDetailsQuery setQuantityGreaterThan(BigDecimal value) { this.QuantityGreaterThan = value; return this; } public BigDecimal getQuantityLessThan() { return QuantityLessThan; } public RE_LineDetailsQuery setQuantityLessThan(BigDecimal value) { this.QuantityLessThan = value; return this; } public BigDecimal getQuantityLessThanOrEqualTo() { return QuantityLessThanOrEqualTo; } public RE_LineDetailsQuery setQuantityLessThanOrEqualTo(BigDecimal value) { this.QuantityLessThanOrEqualTo = value; return this; } public BigDecimal getQuantityNotEqualTo() { return QuantityNotEqualTo; } public RE_LineDetailsQuery setQuantityNotEqualTo(BigDecimal value) { this.QuantityNotEqualTo = value; return this; } public ArrayList getQuantityBetween() { return QuantityBetween; } public RE_LineDetailsQuery setQuantityBetween(ArrayList value) { this.QuantityBetween = value; return this; } public ArrayList getQuantityIn() { return QuantityIn; } public RE_LineDetailsQuery setQuantityIn(ArrayList value) { this.QuantityIn = value; return this; } public String getSerialNo() { return SerialNo; } public RE_LineDetailsQuery setSerialNo(String value) { this.SerialNo = value; return this; } public String getSerialNoStartsWith() { return SerialNoStartsWith; } public RE_LineDetailsQuery setSerialNoStartsWith(String value) { this.SerialNoStartsWith = value; return this; } public String getSerialNoEndsWith() { return SerialNoEndsWith; } public RE_LineDetailsQuery setSerialNoEndsWith(String value) { this.SerialNoEndsWith = value; return this; } public String getSerialNoContains() { return SerialNoContains; } public RE_LineDetailsQuery setSerialNoContains(String value) { this.SerialNoContains = value; return this; } public String getSerialNoLike() { return SerialNoLike; } public RE_LineDetailsQuery setSerialNoLike(String value) { this.SerialNoLike = value; return this; } public ArrayList getSerialNoBetween() { return SerialNoBetween; } public RE_LineDetailsQuery setSerialNoBetween(ArrayList value) { this.SerialNoBetween = value; return this; } public ArrayList getSerialNoIn() { return SerialNoIn; } public RE_LineDetailsQuery setSerialNoIn(ArrayList value) { this.SerialNoIn = value; return this; } public String getBinLocationDescription() { return BinLocationDescription; } public RE_LineDetailsQuery setBinLocationDescription(String value) { this.BinLocationDescription = value; return this; } public String getBinLocationDescriptionStartsWith() { return BinLocationDescriptionStartsWith; } public RE_LineDetailsQuery setBinLocationDescriptionStartsWith(String value) { this.BinLocationDescriptionStartsWith = value; return this; } public String getBinLocationDescriptionEndsWith() { return BinLocationDescriptionEndsWith; } public RE_LineDetailsQuery setBinLocationDescriptionEndsWith(String value) { this.BinLocationDescriptionEndsWith = value; return this; } public String getBinLocationDescriptionContains() { return BinLocationDescriptionContains; } public RE_LineDetailsQuery setBinLocationDescriptionContains(String value) { this.BinLocationDescriptionContains = value; return this; } public String getBinLocationDescriptionLike() { return BinLocationDescriptionLike; } public RE_LineDetailsQuery setBinLocationDescriptionLike(String value) { this.BinLocationDescriptionLike = value; return this; } public ArrayList getBinLocationDescriptionBetween() { return BinLocationDescriptionBetween; } public RE_LineDetailsQuery setBinLocationDescriptionBetween(ArrayList value) { this.BinLocationDescriptionBetween = value; return this; } public ArrayList getBinLocationDescriptionIn() { return BinLocationDescriptionIn; } public RE_LineDetailsQuery setBinLocationDescriptionIn(ArrayList value) { this.BinLocationDescriptionIn = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public RE_LineDetailsQuery setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getLastSavedDateTimeGreaterThanOrEqualTo() { return LastSavedDateTimeGreaterThanOrEqualTo; } public RE_LineDetailsQuery setLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.LastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeGreaterThan() { return LastSavedDateTimeGreaterThan; } public RE_LineDetailsQuery setLastSavedDateTimeGreaterThan(Date value) { this.LastSavedDateTimeGreaterThan = value; return this; } public Date getLastSavedDateTimeLessThan() { return LastSavedDateTimeLessThan; } public RE_LineDetailsQuery setLastSavedDateTimeLessThan(Date value) { this.LastSavedDateTimeLessThan = value; return this; } public Date getLastSavedDateTimeLessThanOrEqualTo() { return LastSavedDateTimeLessThanOrEqualTo; } public RE_LineDetailsQuery setLastSavedDateTimeLessThanOrEqualTo(Date value) { this.LastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeNotEqualTo() { return LastSavedDateTimeNotEqualTo; } public RE_LineDetailsQuery setLastSavedDateTimeNotEqualTo(Date value) { this.LastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getLastSavedDateTimeBetween() { return LastSavedDateTimeBetween; } public RE_LineDetailsQuery setLastSavedDateTimeBetween(ArrayList value) { this.LastSavedDateTimeBetween = value; return this; } public ArrayList getLastSavedDateTimeIn() { return LastSavedDateTimeIn; } public RE_LineDetailsQuery setLastSavedDateTimeIn(ArrayList value) { this.LastSavedDateTimeIn = value; return this; } public ArrayList getRowHash() { return RowHash; } public RE_LineDetailsQuery setRowHash(ArrayList value) { this.RowHash = value; return this; } public Date getExpiryDate() { return ExpiryDate; } public RE_LineDetailsQuery setExpiryDate(Date value) { this.ExpiryDate = value; return this; } public Date getExpiryDateGreaterThanOrEqualTo() { return ExpiryDateGreaterThanOrEqualTo; } public RE_LineDetailsQuery setExpiryDateGreaterThanOrEqualTo(Date value) { this.ExpiryDateGreaterThanOrEqualTo = value; return this; } public Date getExpiryDateGreaterThan() { return ExpiryDateGreaterThan; } public RE_LineDetailsQuery setExpiryDateGreaterThan(Date value) { this.ExpiryDateGreaterThan = value; return this; } public Date getExpiryDateLessThan() { return ExpiryDateLessThan; } public RE_LineDetailsQuery setExpiryDateLessThan(Date value) { this.ExpiryDateLessThan = value; return this; } public Date getExpiryDateLessThanOrEqualTo() { return ExpiryDateLessThanOrEqualTo; } public RE_LineDetailsQuery setExpiryDateLessThanOrEqualTo(Date value) { this.ExpiryDateLessThanOrEqualTo = value; return this; } public Date getExpiryDateNotEqualTo() { return ExpiryDateNotEqualTo; } public RE_LineDetailsQuery setExpiryDateNotEqualTo(Date value) { this.ExpiryDateNotEqualTo = value; return this; } public ArrayList getExpiryDateBetween() { return ExpiryDateBetween; } public RE_LineDetailsQuery setExpiryDateBetween(ArrayList value) { this.ExpiryDateBetween = value; return this; } public ArrayList getExpiryDateIn() { return ExpiryDateIn; } public RE_LineDetailsQuery setExpiryDateIn(ArrayList value) { this.ExpiryDateIn = value; return this; } public Integer getItemNo() { return ItemNo; } public RE_LineDetailsQuery setItemNo(Integer value) { this.ItemNo = value; return this; } public Integer getItemNoGreaterThanOrEqualTo() { return ItemNoGreaterThanOrEqualTo; } public RE_LineDetailsQuery setItemNoGreaterThanOrEqualTo(Integer value) { this.ItemNoGreaterThanOrEqualTo = value; return this; } public Integer getItemNoGreaterThan() { return ItemNoGreaterThan; } public RE_LineDetailsQuery setItemNoGreaterThan(Integer value) { this.ItemNoGreaterThan = value; return this; } public Integer getItemNoLessThan() { return ItemNoLessThan; } public RE_LineDetailsQuery setItemNoLessThan(Integer value) { this.ItemNoLessThan = value; return this; } public Integer getItemNoLessThanOrEqualTo() { return ItemNoLessThanOrEqualTo; } public RE_LineDetailsQuery setItemNoLessThanOrEqualTo(Integer value) { this.ItemNoLessThanOrEqualTo = value; return this; } public Integer getItemNoNotEqualTo() { return ItemNoNotEqualTo; } public RE_LineDetailsQuery setItemNoNotEqualTo(Integer value) { this.ItemNoNotEqualTo = value; return this; } public ArrayList getItemNoBetween() { return ItemNoBetween; } public RE_LineDetailsQuery setItemNoBetween(ArrayList value) { this.ItemNoBetween = value; return this; } public ArrayList getItemNoIn() { return ItemNoIn; } public RE_LineDetailsQuery setItemNoIn(ArrayList value) { this.ItemNoIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class RE_LinesQuery extends QueryDb implements IReturn> { public String SourceID = null; public String SourceIDStartsWith = null; public String SourceIDEndsWith = null; public String SourceIDContains = null; public String SourceIDLike = null; public ArrayList SourceIDBetween = null; public ArrayList SourceIDIn = null; public String PackSlipID = null; public String PackSlipIDStartsWith = null; public String PackSlipIDEndsWith = null; public String PackSlipIDContains = null; public String PackSlipIDLike = null; public ArrayList PackSlipIDBetween = null; public ArrayList PackSlipIDIn = null; public String OrderID = null; public String OrderIDStartsWith = null; public String OrderIDEndsWith = null; public String OrderIDContains = null; public String OrderIDLike = null; public ArrayList OrderIDBetween = null; public ArrayList OrderIDIn = null; public String OrderLineID = null; public String OrderLineIDStartsWith = null; public String OrderLineIDEndsWith = null; public String OrderLineIDContains = null; public String OrderLineIDLike = null; public ArrayList OrderLineIDBetween = null; public ArrayList OrderLineIDIn = null; public BigDecimal Quantity = null; public BigDecimal QuantityGreaterThanOrEqualTo = null; public BigDecimal QuantityGreaterThan = null; public BigDecimal QuantityLessThan = null; public BigDecimal QuantityLessThanOrEqualTo = null; public BigDecimal QuantityNotEqualTo = null; public ArrayList QuantityBetween = null; public ArrayList QuantityIn = null; public BigDecimal SuppliersCost = null; public BigDecimal SuppliersCostGreaterThanOrEqualTo = null; public BigDecimal SuppliersCostGreaterThan = null; public BigDecimal SuppliersCostLessThan = null; public BigDecimal SuppliersCostLessThanOrEqualTo = null; public BigDecimal SuppliersCostNotEqualTo = null; public ArrayList SuppliersCostBetween = null; public ArrayList SuppliersCostIn = null; public String InventoryID = null; public String InventoryIDStartsWith = null; public String InventoryIDEndsWith = null; public String InventoryIDContains = null; public String InventoryIDLike = null; public ArrayList InventoryIDBetween = null; public ArrayList InventoryIDIn = null; public String PartNo = null; public String PartNoStartsWith = null; public String PartNoEndsWith = null; public String PartNoContains = null; public String PartNoLike = null; public ArrayList PartNoBetween = null; public ArrayList PartNoIn = null; public String Description = null; public String DescriptionStartsWith = null; public String DescriptionEndsWith = null; public String DescriptionContains = null; public String DescriptionLike = null; public ArrayList DescriptionBetween = null; public ArrayList DescriptionIn = null; public String SuppPartNo = null; public String SuppPartNoStartsWith = null; public String SuppPartNoEndsWith = null; public String SuppPartNoContains = null; public String SuppPartNoLike = null; public ArrayList SuppPartNoBetween = null; public ArrayList SuppPartNoIn = null; public Short LineType = null; public Short LineTypeGreaterThanOrEqualTo = null; public Short LineTypeGreaterThan = null; public Short LineTypeLessThan = null; public Short LineTypeLessThanOrEqualTo = null; public Short LineTypeNotEqualTo = null; public ArrayList LineTypeBetween = null; public ArrayList LineTypeIn = null; public Short DecimalPlaces = null; public Short DecimalPlacesGreaterThanOrEqualTo = null; public Short DecimalPlacesGreaterThan = null; public Short DecimalPlacesLessThan = null; public Short DecimalPlacesLessThanOrEqualTo = null; public Short DecimalPlacesNotEqualTo = null; public ArrayList DecimalPlacesBetween = null; public ArrayList DecimalPlacesIn = null; public Date LastSavedDateTime = null; public Date LastSavedDateTimeGreaterThanOrEqualTo = null; public Date LastSavedDateTimeGreaterThan = null; public Date LastSavedDateTimeLessThan = null; public Date LastSavedDateTimeLessThanOrEqualTo = null; public Date LastSavedDateTimeNotEqualTo = null; public ArrayList LastSavedDateTimeBetween = null; public ArrayList LastSavedDateTimeIn = null; public String ClassificationID = null; public String ClassificationIDStartsWith = null; public String ClassificationIDEndsWith = null; public String ClassificationIDContains = null; public String ClassificationIDLike = null; public ArrayList ClassificationIDBetween = null; public ArrayList ClassificationIDIn = null; public String ClassDescription = null; public String ClassDescriptionStartsWith = null; public String ClassDescriptionEndsWith = null; public String ClassDescriptionContains = null; public String ClassDescriptionLike = null; public ArrayList ClassDescriptionBetween = null; public ArrayList ClassDescriptionIn = null; public BigDecimal TaxAmount = null; public BigDecimal TaxAmountGreaterThanOrEqualTo = null; public BigDecimal TaxAmountGreaterThan = null; public BigDecimal TaxAmountLessThan = null; public BigDecimal TaxAmountLessThanOrEqualTo = null; public BigDecimal TaxAmountNotEqualTo = null; public ArrayList TaxAmountBetween = null; public ArrayList TaxAmountIn = null; public String TaxID = null; public String TaxIDStartsWith = null; public String TaxIDEndsWith = null; public String TaxIDContains = null; public String TaxIDLike = null; public ArrayList TaxIDBetween = null; public ArrayList TaxIDIn = null; public BigDecimal TaxRate = null; public BigDecimal TaxRateGreaterThanOrEqualTo = null; public BigDecimal TaxRateGreaterThan = null; public BigDecimal TaxRateLessThan = null; public BigDecimal TaxRateLessThanOrEqualTo = null; public BigDecimal TaxRateNotEqualTo = null; public ArrayList TaxRateBetween = null; public ArrayList TaxRateIn = null; public BigDecimal HomeSuppliersCost = null; public BigDecimal HomeSuppliersCostGreaterThanOrEqualTo = null; public BigDecimal HomeSuppliersCostGreaterThan = null; public BigDecimal HomeSuppliersCostLessThan = null; public BigDecimal HomeSuppliersCostLessThanOrEqualTo = null; public BigDecimal HomeSuppliersCostNotEqualTo = null; public ArrayList HomeSuppliersCostBetween = null; public ArrayList HomeSuppliersCostIn = null; public BigDecimal CurrencyRateUsed = null; public BigDecimal CurrencyRateUsedGreaterThanOrEqualTo = null; public BigDecimal CurrencyRateUsedGreaterThan = null; public BigDecimal CurrencyRateUsedLessThan = null; public BigDecimal CurrencyRateUsedLessThanOrEqualTo = null; public BigDecimal CurrencyRateUsedNotEqualTo = null; public ArrayList CurrencyRateUsedBetween = null; public ArrayList CurrencyRateUsedIn = null; public String POClassID = null; public String POClassIDStartsWith = null; public String POClassIDEndsWith = null; public String POClassIDContains = null; public String POClassIDLike = null; public ArrayList POClassIDBetween = null; public ArrayList POClassIDIn = null; public Boolean PostedToWIP = null; public BigDecimal JobCharge = null; public BigDecimal JobChargeGreaterThanOrEqualTo = null; public BigDecimal JobChargeGreaterThan = null; public BigDecimal JobChargeLessThan = null; public BigDecimal JobChargeLessThanOrEqualTo = null; public BigDecimal JobChargeNotEqualTo = null; public ArrayList JobChargeBetween = null; public ArrayList JobChargeIn = null; public Integer LineNumber = null; public Integer LineNumberGreaterThanOrEqualTo = null; public Integer LineNumberGreaterThan = null; public Integer LineNumberLessThan = null; public Integer LineNumberLessThanOrEqualTo = null; public Integer LineNumberNotEqualTo = null; public ArrayList LineNumberBetween = null; public ArrayList LineNumberIn = null; public String JB_JobStages_RecID = null; public String JB_JobStages_RecIDStartsWith = null; public String JB_JobStages_RecIDEndsWith = null; public String JB_JobStages_RecIDContains = null; public String JB_JobStages_RecIDLike = null; public ArrayList JB_JobStages_RecIDBetween = null; public ArrayList JB_JobStages_RecIDIn = null; public Short FXDecimalPlaces = null; public Short FXDecimalPlacesGreaterThanOrEqualTo = null; public Short FXDecimalPlacesGreaterThan = null; public Short FXDecimalPlacesLessThan = null; public Short FXDecimalPlacesLessThanOrEqualTo = null; public Short FXDecimalPlacesNotEqualTo = null; public ArrayList FXDecimalPlacesBetween = null; public ArrayList FXDecimalPlacesIn = null; public Short HomeDecimalPlaces = null; public Short HomeDecimalPlacesGreaterThanOrEqualTo = null; public Short HomeDecimalPlacesGreaterThan = null; public Short HomeDecimalPlacesLessThan = null; public Short HomeDecimalPlacesLessThanOrEqualTo = null; public Short HomeDecimalPlacesNotEqualTo = null; public ArrayList HomeDecimalPlacesBetween = null; public ArrayList HomeDecimalPlacesIn = null; public BigDecimal LineTotalExTax = null; public BigDecimal LineTotalExTaxGreaterThanOrEqualTo = null; public BigDecimal LineTotalExTaxGreaterThan = null; public BigDecimal LineTotalExTaxLessThan = null; public BigDecimal LineTotalExTaxLessThanOrEqualTo = null; public BigDecimal LineTotalExTaxNotEqualTo = null; public ArrayList LineTotalExTaxBetween = null; public ArrayList LineTotalExTaxIn = null; public BigDecimal UnitIncTax = null; public BigDecimal UnitIncTaxGreaterThanOrEqualTo = null; public BigDecimal UnitIncTaxGreaterThan = null; public BigDecimal UnitIncTaxLessThan = null; public BigDecimal UnitIncTaxLessThanOrEqualTo = null; public BigDecimal UnitIncTaxNotEqualTo = null; public ArrayList UnitIncTaxBetween = null; public ArrayList UnitIncTaxIn = null; public BigDecimal LineTotalIncTax = null; public BigDecimal LineTotalIncTaxGreaterThanOrEqualTo = null; public BigDecimal LineTotalIncTaxGreaterThan = null; public BigDecimal LineTotalIncTaxLessThan = null; public BigDecimal LineTotalIncTaxLessThanOrEqualTo = null; public BigDecimal LineTotalIncTaxNotEqualTo = null; public ArrayList LineTotalIncTaxBetween = null; public ArrayList LineTotalIncTaxIn = null; public BigDecimal FXLineTotalExTax = null; public BigDecimal FXLineTotalExTaxGreaterThanOrEqualTo = null; public BigDecimal FXLineTotalExTaxGreaterThan = null; public BigDecimal FXLineTotalExTaxLessThan = null; public BigDecimal FXLineTotalExTaxLessThanOrEqualTo = null; public BigDecimal FXLineTotalExTaxNotEqualTo = null; public ArrayList FXLineTotalExTaxBetween = null; public ArrayList FXLineTotalExTaxIn = null; public Boolean UnitChanged = null; public Boolean FXChanged = null; public Boolean ExChanged = null; public Boolean TaxRateChanged = null; public Boolean ChangeSourceIsFromPurchaseOrderLine = null; public String getSourceID() { return SourceID; } public RE_LinesQuery setSourceID(String value) { this.SourceID = value; return this; } public String getSourceIDStartsWith() { return SourceIDStartsWith; } public RE_LinesQuery setSourceIDStartsWith(String value) { this.SourceIDStartsWith = value; return this; } public String getSourceIDEndsWith() { return SourceIDEndsWith; } public RE_LinesQuery setSourceIDEndsWith(String value) { this.SourceIDEndsWith = value; return this; } public String getSourceIDContains() { return SourceIDContains; } public RE_LinesQuery setSourceIDContains(String value) { this.SourceIDContains = value; return this; } public String getSourceIDLike() { return SourceIDLike; } public RE_LinesQuery setSourceIDLike(String value) { this.SourceIDLike = value; return this; } public ArrayList getSourceIDBetween() { return SourceIDBetween; } public RE_LinesQuery setSourceIDBetween(ArrayList value) { this.SourceIDBetween = value; return this; } public ArrayList getSourceIDIn() { return SourceIDIn; } public RE_LinesQuery setSourceIDIn(ArrayList value) { this.SourceIDIn = value; return this; } public String getPackSlipID() { return PackSlipID; } public RE_LinesQuery setPackSlipID(String value) { this.PackSlipID = value; return this; } public String getPackSlipIDStartsWith() { return PackSlipIDStartsWith; } public RE_LinesQuery setPackSlipIDStartsWith(String value) { this.PackSlipIDStartsWith = value; return this; } public String getPackSlipIDEndsWith() { return PackSlipIDEndsWith; } public RE_LinesQuery setPackSlipIDEndsWith(String value) { this.PackSlipIDEndsWith = value; return this; } public String getPackSlipIDContains() { return PackSlipIDContains; } public RE_LinesQuery setPackSlipIDContains(String value) { this.PackSlipIDContains = value; return this; } public String getPackSlipIDLike() { return PackSlipIDLike; } public RE_LinesQuery setPackSlipIDLike(String value) { this.PackSlipIDLike = value; return this; } public ArrayList getPackSlipIDBetween() { return PackSlipIDBetween; } public RE_LinesQuery setPackSlipIDBetween(ArrayList value) { this.PackSlipIDBetween = value; return this; } public ArrayList getPackSlipIDIn() { return PackSlipIDIn; } public RE_LinesQuery setPackSlipIDIn(ArrayList value) { this.PackSlipIDIn = value; return this; } public String getOrderID() { return OrderID; } public RE_LinesQuery setOrderID(String value) { this.OrderID = value; return this; } public String getOrderIDStartsWith() { return OrderIDStartsWith; } public RE_LinesQuery setOrderIDStartsWith(String value) { this.OrderIDStartsWith = value; return this; } public String getOrderIDEndsWith() { return OrderIDEndsWith; } public RE_LinesQuery setOrderIDEndsWith(String value) { this.OrderIDEndsWith = value; return this; } public String getOrderIDContains() { return OrderIDContains; } public RE_LinesQuery setOrderIDContains(String value) { this.OrderIDContains = value; return this; } public String getOrderIDLike() { return OrderIDLike; } public RE_LinesQuery setOrderIDLike(String value) { this.OrderIDLike = value; return this; } public ArrayList getOrderIDBetween() { return OrderIDBetween; } public RE_LinesQuery setOrderIDBetween(ArrayList value) { this.OrderIDBetween = value; return this; } public ArrayList getOrderIDIn() { return OrderIDIn; } public RE_LinesQuery setOrderIDIn(ArrayList value) { this.OrderIDIn = value; return this; } public String getOrderLineID() { return OrderLineID; } public RE_LinesQuery setOrderLineID(String value) { this.OrderLineID = value; return this; } public String getOrderLineIDStartsWith() { return OrderLineIDStartsWith; } public RE_LinesQuery setOrderLineIDStartsWith(String value) { this.OrderLineIDStartsWith = value; return this; } public String getOrderLineIDEndsWith() { return OrderLineIDEndsWith; } public RE_LinesQuery setOrderLineIDEndsWith(String value) { this.OrderLineIDEndsWith = value; return this; } public String getOrderLineIDContains() { return OrderLineIDContains; } public RE_LinesQuery setOrderLineIDContains(String value) { this.OrderLineIDContains = value; return this; } public String getOrderLineIDLike() { return OrderLineIDLike; } public RE_LinesQuery setOrderLineIDLike(String value) { this.OrderLineIDLike = value; return this; } public ArrayList getOrderLineIDBetween() { return OrderLineIDBetween; } public RE_LinesQuery setOrderLineIDBetween(ArrayList value) { this.OrderLineIDBetween = value; return this; } public ArrayList getOrderLineIDIn() { return OrderLineIDIn; } public RE_LinesQuery setOrderLineIDIn(ArrayList value) { this.OrderLineIDIn = value; return this; } public BigDecimal getQuantity() { return Quantity; } public RE_LinesQuery setQuantity(BigDecimal value) { this.Quantity = value; return this; } public BigDecimal getQuantityGreaterThanOrEqualTo() { return QuantityGreaterThanOrEqualTo; } public RE_LinesQuery setQuantityGreaterThanOrEqualTo(BigDecimal value) { this.QuantityGreaterThanOrEqualTo = value; return this; } public BigDecimal getQuantityGreaterThan() { return QuantityGreaterThan; } public RE_LinesQuery setQuantityGreaterThan(BigDecimal value) { this.QuantityGreaterThan = value; return this; } public BigDecimal getQuantityLessThan() { return QuantityLessThan; } public RE_LinesQuery setQuantityLessThan(BigDecimal value) { this.QuantityLessThan = value; return this; } public BigDecimal getQuantityLessThanOrEqualTo() { return QuantityLessThanOrEqualTo; } public RE_LinesQuery setQuantityLessThanOrEqualTo(BigDecimal value) { this.QuantityLessThanOrEqualTo = value; return this; } public BigDecimal getQuantityNotEqualTo() { return QuantityNotEqualTo; } public RE_LinesQuery setQuantityNotEqualTo(BigDecimal value) { this.QuantityNotEqualTo = value; return this; } public ArrayList getQuantityBetween() { return QuantityBetween; } public RE_LinesQuery setQuantityBetween(ArrayList value) { this.QuantityBetween = value; return this; } public ArrayList getQuantityIn() { return QuantityIn; } public RE_LinesQuery setQuantityIn(ArrayList value) { this.QuantityIn = value; return this; } public BigDecimal getSuppliersCost() { return SuppliersCost; } public RE_LinesQuery setSuppliersCost(BigDecimal value) { this.SuppliersCost = value; return this; } public BigDecimal getSuppliersCostGreaterThanOrEqualTo() { return SuppliersCostGreaterThanOrEqualTo; } public RE_LinesQuery setSuppliersCostGreaterThanOrEqualTo(BigDecimal value) { this.SuppliersCostGreaterThanOrEqualTo = value; return this; } public BigDecimal getSuppliersCostGreaterThan() { return SuppliersCostGreaterThan; } public RE_LinesQuery setSuppliersCostGreaterThan(BigDecimal value) { this.SuppliersCostGreaterThan = value; return this; } public BigDecimal getSuppliersCostLessThan() { return SuppliersCostLessThan; } public RE_LinesQuery setSuppliersCostLessThan(BigDecimal value) { this.SuppliersCostLessThan = value; return this; } public BigDecimal getSuppliersCostLessThanOrEqualTo() { return SuppliersCostLessThanOrEqualTo; } public RE_LinesQuery setSuppliersCostLessThanOrEqualTo(BigDecimal value) { this.SuppliersCostLessThanOrEqualTo = value; return this; } public BigDecimal getSuppliersCostNotEqualTo() { return SuppliersCostNotEqualTo; } public RE_LinesQuery setSuppliersCostNotEqualTo(BigDecimal value) { this.SuppliersCostNotEqualTo = value; return this; } public ArrayList getSuppliersCostBetween() { return SuppliersCostBetween; } public RE_LinesQuery setSuppliersCostBetween(ArrayList value) { this.SuppliersCostBetween = value; return this; } public ArrayList getSuppliersCostIn() { return SuppliersCostIn; } public RE_LinesQuery setSuppliersCostIn(ArrayList value) { this.SuppliersCostIn = value; return this; } public String getInventoryID() { return InventoryID; } public RE_LinesQuery setInventoryID(String value) { this.InventoryID = value; return this; } public String getInventoryIDStartsWith() { return InventoryIDStartsWith; } public RE_LinesQuery setInventoryIDStartsWith(String value) { this.InventoryIDStartsWith = value; return this; } public String getInventoryIDEndsWith() { return InventoryIDEndsWith; } public RE_LinesQuery setInventoryIDEndsWith(String value) { this.InventoryIDEndsWith = value; return this; } public String getInventoryIDContains() { return InventoryIDContains; } public RE_LinesQuery setInventoryIDContains(String value) { this.InventoryIDContains = value; return this; } public String getInventoryIDLike() { return InventoryIDLike; } public RE_LinesQuery setInventoryIDLike(String value) { this.InventoryIDLike = value; return this; } public ArrayList getInventoryIDBetween() { return InventoryIDBetween; } public RE_LinesQuery setInventoryIDBetween(ArrayList value) { this.InventoryIDBetween = value; return this; } public ArrayList getInventoryIDIn() { return InventoryIDIn; } public RE_LinesQuery setInventoryIDIn(ArrayList value) { this.InventoryIDIn = value; return this; } public String getPartNo() { return PartNo; } public RE_LinesQuery setPartNo(String value) { this.PartNo = value; return this; } public String getPartNoStartsWith() { return PartNoStartsWith; } public RE_LinesQuery setPartNoStartsWith(String value) { this.PartNoStartsWith = value; return this; } public String getPartNoEndsWith() { return PartNoEndsWith; } public RE_LinesQuery setPartNoEndsWith(String value) { this.PartNoEndsWith = value; return this; } public String getPartNoContains() { return PartNoContains; } public RE_LinesQuery setPartNoContains(String value) { this.PartNoContains = value; return this; } public String getPartNoLike() { return PartNoLike; } public RE_LinesQuery setPartNoLike(String value) { this.PartNoLike = value; return this; } public ArrayList getPartNoBetween() { return PartNoBetween; } public RE_LinesQuery setPartNoBetween(ArrayList value) { this.PartNoBetween = value; return this; } public ArrayList getPartNoIn() { return PartNoIn; } public RE_LinesQuery setPartNoIn(ArrayList value) { this.PartNoIn = value; return this; } public String getDescription() { return Description; } public RE_LinesQuery setDescription(String value) { this.Description = value; return this; } public String getDescriptionStartsWith() { return DescriptionStartsWith; } public RE_LinesQuery setDescriptionStartsWith(String value) { this.DescriptionStartsWith = value; return this; } public String getDescriptionEndsWith() { return DescriptionEndsWith; } public RE_LinesQuery setDescriptionEndsWith(String value) { this.DescriptionEndsWith = value; return this; } public String getDescriptionContains() { return DescriptionContains; } public RE_LinesQuery setDescriptionContains(String value) { this.DescriptionContains = value; return this; } public String getDescriptionLike() { return DescriptionLike; } public RE_LinesQuery setDescriptionLike(String value) { this.DescriptionLike = value; return this; } public ArrayList getDescriptionBetween() { return DescriptionBetween; } public RE_LinesQuery setDescriptionBetween(ArrayList value) { this.DescriptionBetween = value; return this; } public ArrayList getDescriptionIn() { return DescriptionIn; } public RE_LinesQuery setDescriptionIn(ArrayList value) { this.DescriptionIn = value; return this; } public String getSuppPartNo() { return SuppPartNo; } public RE_LinesQuery setSuppPartNo(String value) { this.SuppPartNo = value; return this; } public String getSuppPartNoStartsWith() { return SuppPartNoStartsWith; } public RE_LinesQuery setSuppPartNoStartsWith(String value) { this.SuppPartNoStartsWith = value; return this; } public String getSuppPartNoEndsWith() { return SuppPartNoEndsWith; } public RE_LinesQuery setSuppPartNoEndsWith(String value) { this.SuppPartNoEndsWith = value; return this; } public String getSuppPartNoContains() { return SuppPartNoContains; } public RE_LinesQuery setSuppPartNoContains(String value) { this.SuppPartNoContains = value; return this; } public String getSuppPartNoLike() { return SuppPartNoLike; } public RE_LinesQuery setSuppPartNoLike(String value) { this.SuppPartNoLike = value; return this; } public ArrayList getSuppPartNoBetween() { return SuppPartNoBetween; } public RE_LinesQuery setSuppPartNoBetween(ArrayList value) { this.SuppPartNoBetween = value; return this; } public ArrayList getSuppPartNoIn() { return SuppPartNoIn; } public RE_LinesQuery setSuppPartNoIn(ArrayList value) { this.SuppPartNoIn = value; return this; } public Short getLineType() { return LineType; } public RE_LinesQuery setLineType(Short value) { this.LineType = value; return this; } public Short getLineTypeGreaterThanOrEqualTo() { return LineTypeGreaterThanOrEqualTo; } public RE_LinesQuery setLineTypeGreaterThanOrEqualTo(Short value) { this.LineTypeGreaterThanOrEqualTo = value; return this; } public Short getLineTypeGreaterThan() { return LineTypeGreaterThan; } public RE_LinesQuery setLineTypeGreaterThan(Short value) { this.LineTypeGreaterThan = value; return this; } public Short getLineTypeLessThan() { return LineTypeLessThan; } public RE_LinesQuery setLineTypeLessThan(Short value) { this.LineTypeLessThan = value; return this; } public Short getLineTypeLessThanOrEqualTo() { return LineTypeLessThanOrEqualTo; } public RE_LinesQuery setLineTypeLessThanOrEqualTo(Short value) { this.LineTypeLessThanOrEqualTo = value; return this; } public Short getLineTypeNotEqualTo() { return LineTypeNotEqualTo; } public RE_LinesQuery setLineTypeNotEqualTo(Short value) { this.LineTypeNotEqualTo = value; return this; } public ArrayList getLineTypeBetween() { return LineTypeBetween; } public RE_LinesQuery setLineTypeBetween(ArrayList value) { this.LineTypeBetween = value; return this; } public ArrayList getLineTypeIn() { return LineTypeIn; } public RE_LinesQuery setLineTypeIn(ArrayList value) { this.LineTypeIn = value; return this; } public Short getDecimalPlaces() { return DecimalPlaces; } public RE_LinesQuery setDecimalPlaces(Short value) { this.DecimalPlaces = value; return this; } public Short getDecimalPlacesGreaterThanOrEqualTo() { return DecimalPlacesGreaterThanOrEqualTo; } public RE_LinesQuery setDecimalPlacesGreaterThanOrEqualTo(Short value) { this.DecimalPlacesGreaterThanOrEqualTo = value; return this; } public Short getDecimalPlacesGreaterThan() { return DecimalPlacesGreaterThan; } public RE_LinesQuery setDecimalPlacesGreaterThan(Short value) { this.DecimalPlacesGreaterThan = value; return this; } public Short getDecimalPlacesLessThan() { return DecimalPlacesLessThan; } public RE_LinesQuery setDecimalPlacesLessThan(Short value) { this.DecimalPlacesLessThan = value; return this; } public Short getDecimalPlacesLessThanOrEqualTo() { return DecimalPlacesLessThanOrEqualTo; } public RE_LinesQuery setDecimalPlacesLessThanOrEqualTo(Short value) { this.DecimalPlacesLessThanOrEqualTo = value; return this; } public Short getDecimalPlacesNotEqualTo() { return DecimalPlacesNotEqualTo; } public RE_LinesQuery setDecimalPlacesNotEqualTo(Short value) { this.DecimalPlacesNotEqualTo = value; return this; } public ArrayList getDecimalPlacesBetween() { return DecimalPlacesBetween; } public RE_LinesQuery setDecimalPlacesBetween(ArrayList value) { this.DecimalPlacesBetween = value; return this; } public ArrayList getDecimalPlacesIn() { return DecimalPlacesIn; } public RE_LinesQuery setDecimalPlacesIn(ArrayList value) { this.DecimalPlacesIn = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public RE_LinesQuery setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getLastSavedDateTimeGreaterThanOrEqualTo() { return LastSavedDateTimeGreaterThanOrEqualTo; } public RE_LinesQuery setLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.LastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeGreaterThan() { return LastSavedDateTimeGreaterThan; } public RE_LinesQuery setLastSavedDateTimeGreaterThan(Date value) { this.LastSavedDateTimeGreaterThan = value; return this; } public Date getLastSavedDateTimeLessThan() { return LastSavedDateTimeLessThan; } public RE_LinesQuery setLastSavedDateTimeLessThan(Date value) { this.LastSavedDateTimeLessThan = value; return this; } public Date getLastSavedDateTimeLessThanOrEqualTo() { return LastSavedDateTimeLessThanOrEqualTo; } public RE_LinesQuery setLastSavedDateTimeLessThanOrEqualTo(Date value) { this.LastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeNotEqualTo() { return LastSavedDateTimeNotEqualTo; } public RE_LinesQuery setLastSavedDateTimeNotEqualTo(Date value) { this.LastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getLastSavedDateTimeBetween() { return LastSavedDateTimeBetween; } public RE_LinesQuery setLastSavedDateTimeBetween(ArrayList value) { this.LastSavedDateTimeBetween = value; return this; } public ArrayList getLastSavedDateTimeIn() { return LastSavedDateTimeIn; } public RE_LinesQuery setLastSavedDateTimeIn(ArrayList value) { this.LastSavedDateTimeIn = value; return this; } public String getClassificationID() { return ClassificationID; } public RE_LinesQuery setClassificationID(String value) { this.ClassificationID = value; return this; } public String getClassificationIDStartsWith() { return ClassificationIDStartsWith; } public RE_LinesQuery setClassificationIDStartsWith(String value) { this.ClassificationIDStartsWith = value; return this; } public String getClassificationIDEndsWith() { return ClassificationIDEndsWith; } public RE_LinesQuery setClassificationIDEndsWith(String value) { this.ClassificationIDEndsWith = value; return this; } public String getClassificationIDContains() { return ClassificationIDContains; } public RE_LinesQuery setClassificationIDContains(String value) { this.ClassificationIDContains = value; return this; } public String getClassificationIDLike() { return ClassificationIDLike; } public RE_LinesQuery setClassificationIDLike(String value) { this.ClassificationIDLike = value; return this; } public ArrayList getClassificationIDBetween() { return ClassificationIDBetween; } public RE_LinesQuery setClassificationIDBetween(ArrayList value) { this.ClassificationIDBetween = value; return this; } public ArrayList getClassificationIDIn() { return ClassificationIDIn; } public RE_LinesQuery setClassificationIDIn(ArrayList value) { this.ClassificationIDIn = value; return this; } public String getClassDescription() { return ClassDescription; } public RE_LinesQuery setClassDescription(String value) { this.ClassDescription = value; return this; } public String getClassDescriptionStartsWith() { return ClassDescriptionStartsWith; } public RE_LinesQuery setClassDescriptionStartsWith(String value) { this.ClassDescriptionStartsWith = value; return this; } public String getClassDescriptionEndsWith() { return ClassDescriptionEndsWith; } public RE_LinesQuery setClassDescriptionEndsWith(String value) { this.ClassDescriptionEndsWith = value; return this; } public String getClassDescriptionContains() { return ClassDescriptionContains; } public RE_LinesQuery setClassDescriptionContains(String value) { this.ClassDescriptionContains = value; return this; } public String getClassDescriptionLike() { return ClassDescriptionLike; } public RE_LinesQuery setClassDescriptionLike(String value) { this.ClassDescriptionLike = value; return this; } public ArrayList getClassDescriptionBetween() { return ClassDescriptionBetween; } public RE_LinesQuery setClassDescriptionBetween(ArrayList value) { this.ClassDescriptionBetween = value; return this; } public ArrayList getClassDescriptionIn() { return ClassDescriptionIn; } public RE_LinesQuery setClassDescriptionIn(ArrayList value) { this.ClassDescriptionIn = value; return this; } public BigDecimal getTaxAmount() { return TaxAmount; } public RE_LinesQuery setTaxAmount(BigDecimal value) { this.TaxAmount = value; return this; } public BigDecimal getTaxAmountGreaterThanOrEqualTo() { return TaxAmountGreaterThanOrEqualTo; } public RE_LinesQuery setTaxAmountGreaterThanOrEqualTo(BigDecimal value) { this.TaxAmountGreaterThanOrEqualTo = value; return this; } public BigDecimal getTaxAmountGreaterThan() { return TaxAmountGreaterThan; } public RE_LinesQuery setTaxAmountGreaterThan(BigDecimal value) { this.TaxAmountGreaterThan = value; return this; } public BigDecimal getTaxAmountLessThan() { return TaxAmountLessThan; } public RE_LinesQuery setTaxAmountLessThan(BigDecimal value) { this.TaxAmountLessThan = value; return this; } public BigDecimal getTaxAmountLessThanOrEqualTo() { return TaxAmountLessThanOrEqualTo; } public RE_LinesQuery setTaxAmountLessThanOrEqualTo(BigDecimal value) { this.TaxAmountLessThanOrEqualTo = value; return this; } public BigDecimal getTaxAmountNotEqualTo() { return TaxAmountNotEqualTo; } public RE_LinesQuery setTaxAmountNotEqualTo(BigDecimal value) { this.TaxAmountNotEqualTo = value; return this; } public ArrayList getTaxAmountBetween() { return TaxAmountBetween; } public RE_LinesQuery setTaxAmountBetween(ArrayList value) { this.TaxAmountBetween = value; return this; } public ArrayList getTaxAmountIn() { return TaxAmountIn; } public RE_LinesQuery setTaxAmountIn(ArrayList value) { this.TaxAmountIn = value; return this; } public String getTaxID() { return TaxID; } public RE_LinesQuery setTaxID(String value) { this.TaxID = value; return this; } public String getTaxIDStartsWith() { return TaxIDStartsWith; } public RE_LinesQuery setTaxIDStartsWith(String value) { this.TaxIDStartsWith = value; return this; } public String getTaxIDEndsWith() { return TaxIDEndsWith; } public RE_LinesQuery setTaxIDEndsWith(String value) { this.TaxIDEndsWith = value; return this; } public String getTaxIDContains() { return TaxIDContains; } public RE_LinesQuery setTaxIDContains(String value) { this.TaxIDContains = value; return this; } public String getTaxIDLike() { return TaxIDLike; } public RE_LinesQuery setTaxIDLike(String value) { this.TaxIDLike = value; return this; } public ArrayList getTaxIDBetween() { return TaxIDBetween; } public RE_LinesQuery setTaxIDBetween(ArrayList value) { this.TaxIDBetween = value; return this; } public ArrayList getTaxIDIn() { return TaxIDIn; } public RE_LinesQuery setTaxIDIn(ArrayList value) { this.TaxIDIn = value; return this; } public BigDecimal getTaxRate() { return TaxRate; } public RE_LinesQuery setTaxRate(BigDecimal value) { this.TaxRate = value; return this; } public BigDecimal getTaxRateGreaterThanOrEqualTo() { return TaxRateGreaterThanOrEqualTo; } public RE_LinesQuery setTaxRateGreaterThanOrEqualTo(BigDecimal value) { this.TaxRateGreaterThanOrEqualTo = value; return this; } public BigDecimal getTaxRateGreaterThan() { return TaxRateGreaterThan; } public RE_LinesQuery setTaxRateGreaterThan(BigDecimal value) { this.TaxRateGreaterThan = value; return this; } public BigDecimal getTaxRateLessThan() { return TaxRateLessThan; } public RE_LinesQuery setTaxRateLessThan(BigDecimal value) { this.TaxRateLessThan = value; return this; } public BigDecimal getTaxRateLessThanOrEqualTo() { return TaxRateLessThanOrEqualTo; } public RE_LinesQuery setTaxRateLessThanOrEqualTo(BigDecimal value) { this.TaxRateLessThanOrEqualTo = value; return this; } public BigDecimal getTaxRateNotEqualTo() { return TaxRateNotEqualTo; } public RE_LinesQuery setTaxRateNotEqualTo(BigDecimal value) { this.TaxRateNotEqualTo = value; return this; } public ArrayList getTaxRateBetween() { return TaxRateBetween; } public RE_LinesQuery setTaxRateBetween(ArrayList value) { this.TaxRateBetween = value; return this; } public ArrayList getTaxRateIn() { return TaxRateIn; } public RE_LinesQuery setTaxRateIn(ArrayList value) { this.TaxRateIn = value; return this; } public BigDecimal getHomeSuppliersCost() { return HomeSuppliersCost; } public RE_LinesQuery setHomeSuppliersCost(BigDecimal value) { this.HomeSuppliersCost = value; return this; } public BigDecimal getHomeSuppliersCostGreaterThanOrEqualTo() { return HomeSuppliersCostGreaterThanOrEqualTo; } public RE_LinesQuery setHomeSuppliersCostGreaterThanOrEqualTo(BigDecimal value) { this.HomeSuppliersCostGreaterThanOrEqualTo = value; return this; } public BigDecimal getHomeSuppliersCostGreaterThan() { return HomeSuppliersCostGreaterThan; } public RE_LinesQuery setHomeSuppliersCostGreaterThan(BigDecimal value) { this.HomeSuppliersCostGreaterThan = value; return this; } public BigDecimal getHomeSuppliersCostLessThan() { return HomeSuppliersCostLessThan; } public RE_LinesQuery setHomeSuppliersCostLessThan(BigDecimal value) { this.HomeSuppliersCostLessThan = value; return this; } public BigDecimal getHomeSuppliersCostLessThanOrEqualTo() { return HomeSuppliersCostLessThanOrEqualTo; } public RE_LinesQuery setHomeSuppliersCostLessThanOrEqualTo(BigDecimal value) { this.HomeSuppliersCostLessThanOrEqualTo = value; return this; } public BigDecimal getHomeSuppliersCostNotEqualTo() { return HomeSuppliersCostNotEqualTo; } public RE_LinesQuery setHomeSuppliersCostNotEqualTo(BigDecimal value) { this.HomeSuppliersCostNotEqualTo = value; return this; } public ArrayList getHomeSuppliersCostBetween() { return HomeSuppliersCostBetween; } public RE_LinesQuery setHomeSuppliersCostBetween(ArrayList value) { this.HomeSuppliersCostBetween = value; return this; } public ArrayList getHomeSuppliersCostIn() { return HomeSuppliersCostIn; } public RE_LinesQuery setHomeSuppliersCostIn(ArrayList value) { this.HomeSuppliersCostIn = value; return this; } public BigDecimal getCurrencyRateUsed() { return CurrencyRateUsed; } public RE_LinesQuery setCurrencyRateUsed(BigDecimal value) { this.CurrencyRateUsed = value; return this; } public BigDecimal getCurrencyRateUsedGreaterThanOrEqualTo() { return CurrencyRateUsedGreaterThanOrEqualTo; } public RE_LinesQuery setCurrencyRateUsedGreaterThanOrEqualTo(BigDecimal value) { this.CurrencyRateUsedGreaterThanOrEqualTo = value; return this; } public BigDecimal getCurrencyRateUsedGreaterThan() { return CurrencyRateUsedGreaterThan; } public RE_LinesQuery setCurrencyRateUsedGreaterThan(BigDecimal value) { this.CurrencyRateUsedGreaterThan = value; return this; } public BigDecimal getCurrencyRateUsedLessThan() { return CurrencyRateUsedLessThan; } public RE_LinesQuery setCurrencyRateUsedLessThan(BigDecimal value) { this.CurrencyRateUsedLessThan = value; return this; } public BigDecimal getCurrencyRateUsedLessThanOrEqualTo() { return CurrencyRateUsedLessThanOrEqualTo; } public RE_LinesQuery setCurrencyRateUsedLessThanOrEqualTo(BigDecimal value) { this.CurrencyRateUsedLessThanOrEqualTo = value; return this; } public BigDecimal getCurrencyRateUsedNotEqualTo() { return CurrencyRateUsedNotEqualTo; } public RE_LinesQuery setCurrencyRateUsedNotEqualTo(BigDecimal value) { this.CurrencyRateUsedNotEqualTo = value; return this; } public ArrayList getCurrencyRateUsedBetween() { return CurrencyRateUsedBetween; } public RE_LinesQuery setCurrencyRateUsedBetween(ArrayList value) { this.CurrencyRateUsedBetween = value; return this; } public ArrayList getCurrencyRateUsedIn() { return CurrencyRateUsedIn; } public RE_LinesQuery setCurrencyRateUsedIn(ArrayList value) { this.CurrencyRateUsedIn = value; return this; } public String getPoClassID() { return POClassID; } public RE_LinesQuery setPoClassID(String value) { this.POClassID = value; return this; } public String getPoClassIDStartsWith() { return POClassIDStartsWith; } public RE_LinesQuery setPoClassIDStartsWith(String value) { this.POClassIDStartsWith = value; return this; } public String getPoClassIDEndsWith() { return POClassIDEndsWith; } public RE_LinesQuery setPoClassIDEndsWith(String value) { this.POClassIDEndsWith = value; return this; } public String getPoClassIDContains() { return POClassIDContains; } public RE_LinesQuery setPoClassIDContains(String value) { this.POClassIDContains = value; return this; } public String getPoClassIDLike() { return POClassIDLike; } public RE_LinesQuery setPoClassIDLike(String value) { this.POClassIDLike = value; return this; } public ArrayList getPoClassIDBetween() { return POClassIDBetween; } public RE_LinesQuery setPoClassIDBetween(ArrayList value) { this.POClassIDBetween = value; return this; } public ArrayList getPoClassIDIn() { return POClassIDIn; } public RE_LinesQuery setPoClassIDIn(ArrayList value) { this.POClassIDIn = value; return this; } public Boolean isPostedToWIP() { return PostedToWIP; } public RE_LinesQuery setPostedToWIP(Boolean value) { this.PostedToWIP = value; return this; } public BigDecimal getJobCharge() { return JobCharge; } public RE_LinesQuery setJobCharge(BigDecimal value) { this.JobCharge = value; return this; } public BigDecimal getJobChargeGreaterThanOrEqualTo() { return JobChargeGreaterThanOrEqualTo; } public RE_LinesQuery setJobChargeGreaterThanOrEqualTo(BigDecimal value) { this.JobChargeGreaterThanOrEqualTo = value; return this; } public BigDecimal getJobChargeGreaterThan() { return JobChargeGreaterThan; } public RE_LinesQuery setJobChargeGreaterThan(BigDecimal value) { this.JobChargeGreaterThan = value; return this; } public BigDecimal getJobChargeLessThan() { return JobChargeLessThan; } public RE_LinesQuery setJobChargeLessThan(BigDecimal value) { this.JobChargeLessThan = value; return this; } public BigDecimal getJobChargeLessThanOrEqualTo() { return JobChargeLessThanOrEqualTo; } public RE_LinesQuery setJobChargeLessThanOrEqualTo(BigDecimal value) { this.JobChargeLessThanOrEqualTo = value; return this; } public BigDecimal getJobChargeNotEqualTo() { return JobChargeNotEqualTo; } public RE_LinesQuery setJobChargeNotEqualTo(BigDecimal value) { this.JobChargeNotEqualTo = value; return this; } public ArrayList getJobChargeBetween() { return JobChargeBetween; } public RE_LinesQuery setJobChargeBetween(ArrayList value) { this.JobChargeBetween = value; return this; } public ArrayList getJobChargeIn() { return JobChargeIn; } public RE_LinesQuery setJobChargeIn(ArrayList value) { this.JobChargeIn = value; return this; } public Integer getLineNumber() { return LineNumber; } public RE_LinesQuery setLineNumber(Integer value) { this.LineNumber = value; return this; } public Integer getLineNumberGreaterThanOrEqualTo() { return LineNumberGreaterThanOrEqualTo; } public RE_LinesQuery setLineNumberGreaterThanOrEqualTo(Integer value) { this.LineNumberGreaterThanOrEqualTo = value; return this; } public Integer getLineNumberGreaterThan() { return LineNumberGreaterThan; } public RE_LinesQuery setLineNumberGreaterThan(Integer value) { this.LineNumberGreaterThan = value; return this; } public Integer getLineNumberLessThan() { return LineNumberLessThan; } public RE_LinesQuery setLineNumberLessThan(Integer value) { this.LineNumberLessThan = value; return this; } public Integer getLineNumberLessThanOrEqualTo() { return LineNumberLessThanOrEqualTo; } public RE_LinesQuery setLineNumberLessThanOrEqualTo(Integer value) { this.LineNumberLessThanOrEqualTo = value; return this; } public Integer getLineNumberNotEqualTo() { return LineNumberNotEqualTo; } public RE_LinesQuery setLineNumberNotEqualTo(Integer value) { this.LineNumberNotEqualTo = value; return this; } public ArrayList getLineNumberBetween() { return LineNumberBetween; } public RE_LinesQuery setLineNumberBetween(ArrayList value) { this.LineNumberBetween = value; return this; } public ArrayList getLineNumberIn() { return LineNumberIn; } public RE_LinesQuery setLineNumberIn(ArrayList value) { this.LineNumberIn = value; return this; } public String getJbJobStagesRecID() { return JB_JobStages_RecID; } public RE_LinesQuery setJbJobStagesRecID(String value) { this.JB_JobStages_RecID = value; return this; } public String getJbJobStagesRecIDStartsWith() { return JB_JobStages_RecIDStartsWith; } public RE_LinesQuery setJbJobStagesRecIDStartsWith(String value) { this.JB_JobStages_RecIDStartsWith = value; return this; } public String getJbJobStagesRecIDEndsWith() { return JB_JobStages_RecIDEndsWith; } public RE_LinesQuery setJbJobStagesRecIDEndsWith(String value) { this.JB_JobStages_RecIDEndsWith = value; return this; } public String getJbJobStagesRecIDContains() { return JB_JobStages_RecIDContains; } public RE_LinesQuery setJbJobStagesRecIDContains(String value) { this.JB_JobStages_RecIDContains = value; return this; } public String getJbJobStagesRecIDLike() { return JB_JobStages_RecIDLike; } public RE_LinesQuery setJbJobStagesRecIDLike(String value) { this.JB_JobStages_RecIDLike = value; return this; } public ArrayList getJbJobStagesRecIDBetween() { return JB_JobStages_RecIDBetween; } public RE_LinesQuery setJbJobStagesRecIDBetween(ArrayList value) { this.JB_JobStages_RecIDBetween = value; return this; } public ArrayList getJbJobStagesRecIDIn() { return JB_JobStages_RecIDIn; } public RE_LinesQuery setJbJobStagesRecIDIn(ArrayList value) { this.JB_JobStages_RecIDIn = value; return this; } public Short getFxDecimalPlaces() { return FXDecimalPlaces; } public RE_LinesQuery setFxDecimalPlaces(Short value) { this.FXDecimalPlaces = value; return this; } public Short getFxDecimalPlacesGreaterThanOrEqualTo() { return FXDecimalPlacesGreaterThanOrEqualTo; } public RE_LinesQuery setFxDecimalPlacesGreaterThanOrEqualTo(Short value) { this.FXDecimalPlacesGreaterThanOrEqualTo = value; return this; } public Short getFxDecimalPlacesGreaterThan() { return FXDecimalPlacesGreaterThan; } public RE_LinesQuery setFxDecimalPlacesGreaterThan(Short value) { this.FXDecimalPlacesGreaterThan = value; return this; } public Short getFxDecimalPlacesLessThan() { return FXDecimalPlacesLessThan; } public RE_LinesQuery setFxDecimalPlacesLessThan(Short value) { this.FXDecimalPlacesLessThan = value; return this; } public Short getFxDecimalPlacesLessThanOrEqualTo() { return FXDecimalPlacesLessThanOrEqualTo; } public RE_LinesQuery setFxDecimalPlacesLessThanOrEqualTo(Short value) { this.FXDecimalPlacesLessThanOrEqualTo = value; return this; } public Short getFxDecimalPlacesNotEqualTo() { return FXDecimalPlacesNotEqualTo; } public RE_LinesQuery setFxDecimalPlacesNotEqualTo(Short value) { this.FXDecimalPlacesNotEqualTo = value; return this; } public ArrayList getFxDecimalPlacesBetween() { return FXDecimalPlacesBetween; } public RE_LinesQuery setFxDecimalPlacesBetween(ArrayList value) { this.FXDecimalPlacesBetween = value; return this; } public ArrayList getFxDecimalPlacesIn() { return FXDecimalPlacesIn; } public RE_LinesQuery setFxDecimalPlacesIn(ArrayList value) { this.FXDecimalPlacesIn = value; return this; } public Short getHomeDecimalPlaces() { return HomeDecimalPlaces; } public RE_LinesQuery setHomeDecimalPlaces(Short value) { this.HomeDecimalPlaces = value; return this; } public Short getHomeDecimalPlacesGreaterThanOrEqualTo() { return HomeDecimalPlacesGreaterThanOrEqualTo; } public RE_LinesQuery setHomeDecimalPlacesGreaterThanOrEqualTo(Short value) { this.HomeDecimalPlacesGreaterThanOrEqualTo = value; return this; } public Short getHomeDecimalPlacesGreaterThan() { return HomeDecimalPlacesGreaterThan; } public RE_LinesQuery setHomeDecimalPlacesGreaterThan(Short value) { this.HomeDecimalPlacesGreaterThan = value; return this; } public Short getHomeDecimalPlacesLessThan() { return HomeDecimalPlacesLessThan; } public RE_LinesQuery setHomeDecimalPlacesLessThan(Short value) { this.HomeDecimalPlacesLessThan = value; return this; } public Short getHomeDecimalPlacesLessThanOrEqualTo() { return HomeDecimalPlacesLessThanOrEqualTo; } public RE_LinesQuery setHomeDecimalPlacesLessThanOrEqualTo(Short value) { this.HomeDecimalPlacesLessThanOrEqualTo = value; return this; } public Short getHomeDecimalPlacesNotEqualTo() { return HomeDecimalPlacesNotEqualTo; } public RE_LinesQuery setHomeDecimalPlacesNotEqualTo(Short value) { this.HomeDecimalPlacesNotEqualTo = value; return this; } public ArrayList getHomeDecimalPlacesBetween() { return HomeDecimalPlacesBetween; } public RE_LinesQuery setHomeDecimalPlacesBetween(ArrayList value) { this.HomeDecimalPlacesBetween = value; return this; } public ArrayList getHomeDecimalPlacesIn() { return HomeDecimalPlacesIn; } public RE_LinesQuery setHomeDecimalPlacesIn(ArrayList value) { this.HomeDecimalPlacesIn = value; return this; } public BigDecimal getLineTotalExTax() { return LineTotalExTax; } public RE_LinesQuery setLineTotalExTax(BigDecimal value) { this.LineTotalExTax = value; return this; } public BigDecimal getLineTotalExTaxGreaterThanOrEqualTo() { return LineTotalExTaxGreaterThanOrEqualTo; } public RE_LinesQuery setLineTotalExTaxGreaterThanOrEqualTo(BigDecimal value) { this.LineTotalExTaxGreaterThanOrEqualTo = value; return this; } public BigDecimal getLineTotalExTaxGreaterThan() { return LineTotalExTaxGreaterThan; } public RE_LinesQuery setLineTotalExTaxGreaterThan(BigDecimal value) { this.LineTotalExTaxGreaterThan = value; return this; } public BigDecimal getLineTotalExTaxLessThan() { return LineTotalExTaxLessThan; } public RE_LinesQuery setLineTotalExTaxLessThan(BigDecimal value) { this.LineTotalExTaxLessThan = value; return this; } public BigDecimal getLineTotalExTaxLessThanOrEqualTo() { return LineTotalExTaxLessThanOrEqualTo; } public RE_LinesQuery setLineTotalExTaxLessThanOrEqualTo(BigDecimal value) { this.LineTotalExTaxLessThanOrEqualTo = value; return this; } public BigDecimal getLineTotalExTaxNotEqualTo() { return LineTotalExTaxNotEqualTo; } public RE_LinesQuery setLineTotalExTaxNotEqualTo(BigDecimal value) { this.LineTotalExTaxNotEqualTo = value; return this; } public ArrayList getLineTotalExTaxBetween() { return LineTotalExTaxBetween; } public RE_LinesQuery setLineTotalExTaxBetween(ArrayList value) { this.LineTotalExTaxBetween = value; return this; } public ArrayList getLineTotalExTaxIn() { return LineTotalExTaxIn; } public RE_LinesQuery setLineTotalExTaxIn(ArrayList value) { this.LineTotalExTaxIn = value; return this; } public BigDecimal getUnitIncTax() { return UnitIncTax; } public RE_LinesQuery setUnitIncTax(BigDecimal value) { this.UnitIncTax = value; return this; } public BigDecimal getUnitIncTaxGreaterThanOrEqualTo() { return UnitIncTaxGreaterThanOrEqualTo; } public RE_LinesQuery setUnitIncTaxGreaterThanOrEqualTo(BigDecimal value) { this.UnitIncTaxGreaterThanOrEqualTo = value; return this; } public BigDecimal getUnitIncTaxGreaterThan() { return UnitIncTaxGreaterThan; } public RE_LinesQuery setUnitIncTaxGreaterThan(BigDecimal value) { this.UnitIncTaxGreaterThan = value; return this; } public BigDecimal getUnitIncTaxLessThan() { return UnitIncTaxLessThan; } public RE_LinesQuery setUnitIncTaxLessThan(BigDecimal value) { this.UnitIncTaxLessThan = value; return this; } public BigDecimal getUnitIncTaxLessThanOrEqualTo() { return UnitIncTaxLessThanOrEqualTo; } public RE_LinesQuery setUnitIncTaxLessThanOrEqualTo(BigDecimal value) { this.UnitIncTaxLessThanOrEqualTo = value; return this; } public BigDecimal getUnitIncTaxNotEqualTo() { return UnitIncTaxNotEqualTo; } public RE_LinesQuery setUnitIncTaxNotEqualTo(BigDecimal value) { this.UnitIncTaxNotEqualTo = value; return this; } public ArrayList getUnitIncTaxBetween() { return UnitIncTaxBetween; } public RE_LinesQuery setUnitIncTaxBetween(ArrayList value) { this.UnitIncTaxBetween = value; return this; } public ArrayList getUnitIncTaxIn() { return UnitIncTaxIn; } public RE_LinesQuery setUnitIncTaxIn(ArrayList value) { this.UnitIncTaxIn = value; return this; } public BigDecimal getLineTotalIncTax() { return LineTotalIncTax; } public RE_LinesQuery setLineTotalIncTax(BigDecimal value) { this.LineTotalIncTax = value; return this; } public BigDecimal getLineTotalIncTaxGreaterThanOrEqualTo() { return LineTotalIncTaxGreaterThanOrEqualTo; } public RE_LinesQuery setLineTotalIncTaxGreaterThanOrEqualTo(BigDecimal value) { this.LineTotalIncTaxGreaterThanOrEqualTo = value; return this; } public BigDecimal getLineTotalIncTaxGreaterThan() { return LineTotalIncTaxGreaterThan; } public RE_LinesQuery setLineTotalIncTaxGreaterThan(BigDecimal value) { this.LineTotalIncTaxGreaterThan = value; return this; } public BigDecimal getLineTotalIncTaxLessThan() { return LineTotalIncTaxLessThan; } public RE_LinesQuery setLineTotalIncTaxLessThan(BigDecimal value) { this.LineTotalIncTaxLessThan = value; return this; } public BigDecimal getLineTotalIncTaxLessThanOrEqualTo() { return LineTotalIncTaxLessThanOrEqualTo; } public RE_LinesQuery setLineTotalIncTaxLessThanOrEqualTo(BigDecimal value) { this.LineTotalIncTaxLessThanOrEqualTo = value; return this; } public BigDecimal getLineTotalIncTaxNotEqualTo() { return LineTotalIncTaxNotEqualTo; } public RE_LinesQuery setLineTotalIncTaxNotEqualTo(BigDecimal value) { this.LineTotalIncTaxNotEqualTo = value; return this; } public ArrayList getLineTotalIncTaxBetween() { return LineTotalIncTaxBetween; } public RE_LinesQuery setLineTotalIncTaxBetween(ArrayList value) { this.LineTotalIncTaxBetween = value; return this; } public ArrayList getLineTotalIncTaxIn() { return LineTotalIncTaxIn; } public RE_LinesQuery setLineTotalIncTaxIn(ArrayList value) { this.LineTotalIncTaxIn = value; return this; } public BigDecimal getFxLineTotalExTax() { return FXLineTotalExTax; } public RE_LinesQuery setFxLineTotalExTax(BigDecimal value) { this.FXLineTotalExTax = value; return this; } public BigDecimal getFxLineTotalExTaxGreaterThanOrEqualTo() { return FXLineTotalExTaxGreaterThanOrEqualTo; } public RE_LinesQuery setFxLineTotalExTaxGreaterThanOrEqualTo(BigDecimal value) { this.FXLineTotalExTaxGreaterThanOrEqualTo = value; return this; } public BigDecimal getFxLineTotalExTaxGreaterThan() { return FXLineTotalExTaxGreaterThan; } public RE_LinesQuery setFxLineTotalExTaxGreaterThan(BigDecimal value) { this.FXLineTotalExTaxGreaterThan = value; return this; } public BigDecimal getFxLineTotalExTaxLessThan() { return FXLineTotalExTaxLessThan; } public RE_LinesQuery setFxLineTotalExTaxLessThan(BigDecimal value) { this.FXLineTotalExTaxLessThan = value; return this; } public BigDecimal getFxLineTotalExTaxLessThanOrEqualTo() { return FXLineTotalExTaxLessThanOrEqualTo; } public RE_LinesQuery setFxLineTotalExTaxLessThanOrEqualTo(BigDecimal value) { this.FXLineTotalExTaxLessThanOrEqualTo = value; return this; } public BigDecimal getFxLineTotalExTaxNotEqualTo() { return FXLineTotalExTaxNotEqualTo; } public RE_LinesQuery setFxLineTotalExTaxNotEqualTo(BigDecimal value) { this.FXLineTotalExTaxNotEqualTo = value; return this; } public ArrayList getFxLineTotalExTaxBetween() { return FXLineTotalExTaxBetween; } public RE_LinesQuery setFxLineTotalExTaxBetween(ArrayList value) { this.FXLineTotalExTaxBetween = value; return this; } public ArrayList getFxLineTotalExTaxIn() { return FXLineTotalExTaxIn; } public RE_LinesQuery setFxLineTotalExTaxIn(ArrayList value) { this.FXLineTotalExTaxIn = value; return this; } public Boolean isUnitChanged() { return UnitChanged; } public RE_LinesQuery setUnitChanged(Boolean value) { this.UnitChanged = value; return this; } public Boolean isFxChanged() { return FXChanged; } public RE_LinesQuery setFxChanged(Boolean value) { this.FXChanged = value; return this; } public Boolean isExChanged() { return ExChanged; } public RE_LinesQuery setExChanged(Boolean value) { this.ExChanged = value; return this; } public Boolean isTaxRateChanged() { return TaxRateChanged; } public RE_LinesQuery setTaxRateChanged(Boolean value) { this.TaxRateChanged = value; return this; } public Boolean isChangeSourceIsFromPurchaseOrderLine() { return ChangeSourceIsFromPurchaseOrderLine; } public RE_LinesQuery setChangeSourceIsFromPurchaseOrderLine(Boolean value) { this.ChangeSourceIsFromPurchaseOrderLine = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @Route(Path="/Queries/RE_Main", Verbs="GET") @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class RE_MainQuery extends QueryDb implements IReturn> { public String PackSlipID = null; public String PackSlipIDStartsWith = null; public String PackSlipIDEndsWith = null; public String PackSlipIDContains = null; public String PackSlipIDLike = null; public ArrayList PackSlipIDBetween = null; public ArrayList PackSlipIDIn = null; public Date LastSavedDateTime = null; public Date LastSavedDateTimeGreaterThanOrEqualTo = null; public Date LastSavedDateTimeGreaterThan = null; public Date LastSavedDateTimeLessThan = null; public Date LastSavedDateTimeLessThanOrEqualTo = null; public Date LastSavedDateTimeNotEqualTo = null; public ArrayList LastSavedDateTimeBetween = null; public ArrayList LastSavedDateTimeIn = null; public String SlipNo = null; public String SlipNoStartsWith = null; public String SlipNoEndsWith = null; public String SlipNoContains = null; public String SlipNoLike = null; public ArrayList SlipNoBetween = null; public ArrayList SlipNoIn = null; public String CreditorID = null; public String CreditorIDStartsWith = null; public String CreditorIDEndsWith = null; public String CreditorIDContains = null; public String CreditorIDLike = null; public ArrayList CreditorIDBetween = null; public ArrayList CreditorIDIn = null; public Date SlipDate = null; public Date SlipDateGreaterThanOrEqualTo = null; public Date SlipDateGreaterThan = null; public Date SlipDateLessThan = null; public Date SlipDateLessThanOrEqualTo = null; public Date SlipDateNotEqualTo = null; public ArrayList SlipDateBetween = null; public ArrayList SlipDateIn = null; public Short Status = null; public Short StatusGreaterThanOrEqualTo = null; public Short StatusGreaterThan = null; public Short StatusLessThan = null; public Short StatusLessThanOrEqualTo = null; public Short StatusNotEqualTo = null; public ArrayList StatusBetween = null; public ArrayList StatusIn = null; public BigDecimal Freight = null; public BigDecimal FreightGreaterThanOrEqualTo = null; public BigDecimal FreightGreaterThan = null; public BigDecimal FreightLessThan = null; public BigDecimal FreightLessThanOrEqualTo = null; public BigDecimal FreightNotEqualTo = null; public ArrayList FreightBetween = null; public ArrayList FreightIn = null; public BigDecimal Duty = null; public BigDecimal DutyGreaterThanOrEqualTo = null; public BigDecimal DutyGreaterThan = null; public BigDecimal DutyLessThan = null; public BigDecimal DutyLessThanOrEqualTo = null; public BigDecimal DutyNotEqualTo = null; public ArrayList DutyBetween = null; public ArrayList DutyIn = null; public Boolean Invoiced = null; public String PI_MainID = null; public String PI_MainIDStartsWith = null; public String PI_MainIDEndsWith = null; public String PI_MainIDContains = null; public String PI_MainIDLike = null; public ArrayList PI_MainIDBetween = null; public ArrayList PI_MainIDIn = null; public BigDecimal Insurance = null; public BigDecimal InsuranceGreaterThanOrEqualTo = null; public BigDecimal InsuranceGreaterThan = null; public BigDecimal InsuranceLessThan = null; public BigDecimal InsuranceLessThanOrEqualTo = null; public BigDecimal InsuranceNotEqualTo = null; public ArrayList InsuranceBetween = null; public ArrayList InsuranceIn = null; public String IN_LogicalID = null; public String IN_LogicalIDStartsWith = null; public String IN_LogicalIDEndsWith = null; public String IN_LogicalIDContains = null; public String IN_LogicalIDLike = null; public ArrayList IN_LogicalIDBetween = null; public ArrayList IN_LogicalIDIn = null; public BigDecimal TaxTotal = null; public BigDecimal TaxTotalGreaterThanOrEqualTo = null; public BigDecimal TaxTotalGreaterThan = null; public BigDecimal TaxTotalLessThan = null; public BigDecimal TaxTotalLessThanOrEqualTo = null; public BigDecimal TaxTotalNotEqualTo = null; public ArrayList TaxTotalBetween = null; public ArrayList TaxTotalIn = null; public String FreightTaxID = null; public String FreightTaxIDStartsWith = null; public String FreightTaxIDEndsWith = null; public String FreightTaxIDContains = null; public String FreightTaxIDLike = null; public ArrayList FreightTaxIDBetween = null; public ArrayList FreightTaxIDIn = null; public BigDecimal FreightTaxRate = null; public BigDecimal FreightTaxRateGreaterThanOrEqualTo = null; public BigDecimal FreightTaxRateGreaterThan = null; public BigDecimal FreightTaxRateLessThan = null; public BigDecimal FreightTaxRateLessThanOrEqualTo = null; public BigDecimal FreightTaxRateNotEqualTo = null; public ArrayList FreightTaxRateBetween = null; public ArrayList FreightTaxRateIn = null; public BigDecimal FreightTaxAmount = null; public BigDecimal FreightTaxAmountGreaterThanOrEqualTo = null; public BigDecimal FreightTaxAmountGreaterThan = null; public BigDecimal FreightTaxAmountLessThan = null; public BigDecimal FreightTaxAmountLessThanOrEqualTo = null; public BigDecimal FreightTaxAmountNotEqualTo = null; public ArrayList FreightTaxAmountBetween = null; public ArrayList FreightTaxAmountIn = null; public String DutyTaxID = null; public String DutyTaxIDStartsWith = null; public String DutyTaxIDEndsWith = null; public String DutyTaxIDContains = null; public String DutyTaxIDLike = null; public ArrayList DutyTaxIDBetween = null; public ArrayList DutyTaxIDIn = null; public BigDecimal DutyTaxRate = null; public BigDecimal DutyTaxRateGreaterThanOrEqualTo = null; public BigDecimal DutyTaxRateGreaterThan = null; public BigDecimal DutyTaxRateLessThan = null; public BigDecimal DutyTaxRateLessThanOrEqualTo = null; public BigDecimal DutyTaxRateNotEqualTo = null; public ArrayList DutyTaxRateBetween = null; public ArrayList DutyTaxRateIn = null; public BigDecimal DutyTaxAmount = null; public BigDecimal DutyTaxAmountGreaterThanOrEqualTo = null; public BigDecimal DutyTaxAmountGreaterThan = null; public BigDecimal DutyTaxAmountLessThan = null; public BigDecimal DutyTaxAmountLessThanOrEqualTo = null; public BigDecimal DutyTaxAmountNotEqualTo = null; public ArrayList DutyTaxAmountBetween = null; public ArrayList DutyTaxAmountIn = null; public String InsuranceTaxID = null; public String InsuranceTaxIDStartsWith = null; public String InsuranceTaxIDEndsWith = null; public String InsuranceTaxIDContains = null; public String InsuranceTaxIDLike = null; public ArrayList InsuranceTaxIDBetween = null; public ArrayList InsuranceTaxIDIn = null; public BigDecimal InsuranceTaxRate = null; public BigDecimal InsuranceTaxRateGreaterThanOrEqualTo = null; public BigDecimal InsuranceTaxRateGreaterThan = null; public BigDecimal InsuranceTaxRateLessThan = null; public BigDecimal InsuranceTaxRateLessThanOrEqualTo = null; public BigDecimal InsuranceTaxRateNotEqualTo = null; public ArrayList InsuranceTaxRateBetween = null; public ArrayList InsuranceTaxRateIn = null; public BigDecimal InsuranceTaxAmount = null; public BigDecimal InsuranceTaxAmountGreaterThanOrEqualTo = null; public BigDecimal InsuranceTaxAmountGreaterThan = null; public BigDecimal InsuranceTaxAmountLessThan = null; public BigDecimal InsuranceTaxAmountLessThanOrEqualTo = null; public BigDecimal InsuranceTaxAmountNotEqualTo = null; public ArrayList InsuranceTaxAmountBetween = null; public ArrayList InsuranceTaxAmountIn = null; public String Reference = null; public String ReferenceStartsWith = null; public String ReferenceEndsWith = null; public String ReferenceContains = null; public String ReferenceLike = null; public ArrayList ReferenceBetween = null; public ArrayList ReferenceIn = null; public String getPackSlipID() { return PackSlipID; } public RE_MainQuery setPackSlipID(String value) { this.PackSlipID = value; return this; } public String getPackSlipIDStartsWith() { return PackSlipIDStartsWith; } public RE_MainQuery setPackSlipIDStartsWith(String value) { this.PackSlipIDStartsWith = value; return this; } public String getPackSlipIDEndsWith() { return PackSlipIDEndsWith; } public RE_MainQuery setPackSlipIDEndsWith(String value) { this.PackSlipIDEndsWith = value; return this; } public String getPackSlipIDContains() { return PackSlipIDContains; } public RE_MainQuery setPackSlipIDContains(String value) { this.PackSlipIDContains = value; return this; } public String getPackSlipIDLike() { return PackSlipIDLike; } public RE_MainQuery setPackSlipIDLike(String value) { this.PackSlipIDLike = value; return this; } public ArrayList getPackSlipIDBetween() { return PackSlipIDBetween; } public RE_MainQuery setPackSlipIDBetween(ArrayList value) { this.PackSlipIDBetween = value; return this; } public ArrayList getPackSlipIDIn() { return PackSlipIDIn; } public RE_MainQuery setPackSlipIDIn(ArrayList value) { this.PackSlipIDIn = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public RE_MainQuery setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getLastSavedDateTimeGreaterThanOrEqualTo() { return LastSavedDateTimeGreaterThanOrEqualTo; } public RE_MainQuery setLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.LastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeGreaterThan() { return LastSavedDateTimeGreaterThan; } public RE_MainQuery setLastSavedDateTimeGreaterThan(Date value) { this.LastSavedDateTimeGreaterThan = value; return this; } public Date getLastSavedDateTimeLessThan() { return LastSavedDateTimeLessThan; } public RE_MainQuery setLastSavedDateTimeLessThan(Date value) { this.LastSavedDateTimeLessThan = value; return this; } public Date getLastSavedDateTimeLessThanOrEqualTo() { return LastSavedDateTimeLessThanOrEqualTo; } public RE_MainQuery setLastSavedDateTimeLessThanOrEqualTo(Date value) { this.LastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeNotEqualTo() { return LastSavedDateTimeNotEqualTo; } public RE_MainQuery setLastSavedDateTimeNotEqualTo(Date value) { this.LastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getLastSavedDateTimeBetween() { return LastSavedDateTimeBetween; } public RE_MainQuery setLastSavedDateTimeBetween(ArrayList value) { this.LastSavedDateTimeBetween = value; return this; } public ArrayList getLastSavedDateTimeIn() { return LastSavedDateTimeIn; } public RE_MainQuery setLastSavedDateTimeIn(ArrayList value) { this.LastSavedDateTimeIn = value; return this; } public String getSlipNo() { return SlipNo; } public RE_MainQuery setSlipNo(String value) { this.SlipNo = value; return this; } public String getSlipNoStartsWith() { return SlipNoStartsWith; } public RE_MainQuery setSlipNoStartsWith(String value) { this.SlipNoStartsWith = value; return this; } public String getSlipNoEndsWith() { return SlipNoEndsWith; } public RE_MainQuery setSlipNoEndsWith(String value) { this.SlipNoEndsWith = value; return this; } public String getSlipNoContains() { return SlipNoContains; } public RE_MainQuery setSlipNoContains(String value) { this.SlipNoContains = value; return this; } public String getSlipNoLike() { return SlipNoLike; } public RE_MainQuery setSlipNoLike(String value) { this.SlipNoLike = value; return this; } public ArrayList getSlipNoBetween() { return SlipNoBetween; } public RE_MainQuery setSlipNoBetween(ArrayList value) { this.SlipNoBetween = value; return this; } public ArrayList getSlipNoIn() { return SlipNoIn; } public RE_MainQuery setSlipNoIn(ArrayList value) { this.SlipNoIn = value; return this; } public String getCreditorID() { return CreditorID; } public RE_MainQuery setCreditorID(String value) { this.CreditorID = value; return this; } public String getCreditorIDStartsWith() { return CreditorIDStartsWith; } public RE_MainQuery setCreditorIDStartsWith(String value) { this.CreditorIDStartsWith = value; return this; } public String getCreditorIDEndsWith() { return CreditorIDEndsWith; } public RE_MainQuery setCreditorIDEndsWith(String value) { this.CreditorIDEndsWith = value; return this; } public String getCreditorIDContains() { return CreditorIDContains; } public RE_MainQuery setCreditorIDContains(String value) { this.CreditorIDContains = value; return this; } public String getCreditorIDLike() { return CreditorIDLike; } public RE_MainQuery setCreditorIDLike(String value) { this.CreditorIDLike = value; return this; } public ArrayList getCreditorIDBetween() { return CreditorIDBetween; } public RE_MainQuery setCreditorIDBetween(ArrayList value) { this.CreditorIDBetween = value; return this; } public ArrayList getCreditorIDIn() { return CreditorIDIn; } public RE_MainQuery setCreditorIDIn(ArrayList value) { this.CreditorIDIn = value; return this; } public Date getSlipDate() { return SlipDate; } public RE_MainQuery setSlipDate(Date value) { this.SlipDate = value; return this; } public Date getSlipDateGreaterThanOrEqualTo() { return SlipDateGreaterThanOrEqualTo; } public RE_MainQuery setSlipDateGreaterThanOrEqualTo(Date value) { this.SlipDateGreaterThanOrEqualTo = value; return this; } public Date getSlipDateGreaterThan() { return SlipDateGreaterThan; } public RE_MainQuery setSlipDateGreaterThan(Date value) { this.SlipDateGreaterThan = value; return this; } public Date getSlipDateLessThan() { return SlipDateLessThan; } public RE_MainQuery setSlipDateLessThan(Date value) { this.SlipDateLessThan = value; return this; } public Date getSlipDateLessThanOrEqualTo() { return SlipDateLessThanOrEqualTo; } public RE_MainQuery setSlipDateLessThanOrEqualTo(Date value) { this.SlipDateLessThanOrEqualTo = value; return this; } public Date getSlipDateNotEqualTo() { return SlipDateNotEqualTo; } public RE_MainQuery setSlipDateNotEqualTo(Date value) { this.SlipDateNotEqualTo = value; return this; } public ArrayList getSlipDateBetween() { return SlipDateBetween; } public RE_MainQuery setSlipDateBetween(ArrayList value) { this.SlipDateBetween = value; return this; } public ArrayList getSlipDateIn() { return SlipDateIn; } public RE_MainQuery setSlipDateIn(ArrayList value) { this.SlipDateIn = value; return this; } public Short getStatus() { return Status; } public RE_MainQuery setStatus(Short value) { this.Status = value; return this; } public Short getStatusGreaterThanOrEqualTo() { return StatusGreaterThanOrEqualTo; } public RE_MainQuery setStatusGreaterThanOrEqualTo(Short value) { this.StatusGreaterThanOrEqualTo = value; return this; } public Short getStatusGreaterThan() { return StatusGreaterThan; } public RE_MainQuery setStatusGreaterThan(Short value) { this.StatusGreaterThan = value; return this; } public Short getStatusLessThan() { return StatusLessThan; } public RE_MainQuery setStatusLessThan(Short value) { this.StatusLessThan = value; return this; } public Short getStatusLessThanOrEqualTo() { return StatusLessThanOrEqualTo; } public RE_MainQuery setStatusLessThanOrEqualTo(Short value) { this.StatusLessThanOrEqualTo = value; return this; } public Short getStatusNotEqualTo() { return StatusNotEqualTo; } public RE_MainQuery setStatusNotEqualTo(Short value) { this.StatusNotEqualTo = value; return this; } public ArrayList getStatusBetween() { return StatusBetween; } public RE_MainQuery setStatusBetween(ArrayList value) { this.StatusBetween = value; return this; } public ArrayList getStatusIn() { return StatusIn; } public RE_MainQuery setStatusIn(ArrayList value) { this.StatusIn = value; return this; } public BigDecimal getFreight() { return Freight; } public RE_MainQuery setFreight(BigDecimal value) { this.Freight = value; return this; } public BigDecimal getFreightGreaterThanOrEqualTo() { return FreightGreaterThanOrEqualTo; } public RE_MainQuery setFreightGreaterThanOrEqualTo(BigDecimal value) { this.FreightGreaterThanOrEqualTo = value; return this; } public BigDecimal getFreightGreaterThan() { return FreightGreaterThan; } public RE_MainQuery setFreightGreaterThan(BigDecimal value) { this.FreightGreaterThan = value; return this; } public BigDecimal getFreightLessThan() { return FreightLessThan; } public RE_MainQuery setFreightLessThan(BigDecimal value) { this.FreightLessThan = value; return this; } public BigDecimal getFreightLessThanOrEqualTo() { return FreightLessThanOrEqualTo; } public RE_MainQuery setFreightLessThanOrEqualTo(BigDecimal value) { this.FreightLessThanOrEqualTo = value; return this; } public BigDecimal getFreightNotEqualTo() { return FreightNotEqualTo; } public RE_MainQuery setFreightNotEqualTo(BigDecimal value) { this.FreightNotEqualTo = value; return this; } public ArrayList getFreightBetween() { return FreightBetween; } public RE_MainQuery setFreightBetween(ArrayList value) { this.FreightBetween = value; return this; } public ArrayList getFreightIn() { return FreightIn; } public RE_MainQuery setFreightIn(ArrayList value) { this.FreightIn = value; return this; } public BigDecimal getDuty() { return Duty; } public RE_MainQuery setDuty(BigDecimal value) { this.Duty = value; return this; } public BigDecimal getDutyGreaterThanOrEqualTo() { return DutyGreaterThanOrEqualTo; } public RE_MainQuery setDutyGreaterThanOrEqualTo(BigDecimal value) { this.DutyGreaterThanOrEqualTo = value; return this; } public BigDecimal getDutyGreaterThan() { return DutyGreaterThan; } public RE_MainQuery setDutyGreaterThan(BigDecimal value) { this.DutyGreaterThan = value; return this; } public BigDecimal getDutyLessThan() { return DutyLessThan; } public RE_MainQuery setDutyLessThan(BigDecimal value) { this.DutyLessThan = value; return this; } public BigDecimal getDutyLessThanOrEqualTo() { return DutyLessThanOrEqualTo; } public RE_MainQuery setDutyLessThanOrEqualTo(BigDecimal value) { this.DutyLessThanOrEqualTo = value; return this; } public BigDecimal getDutyNotEqualTo() { return DutyNotEqualTo; } public RE_MainQuery setDutyNotEqualTo(BigDecimal value) { this.DutyNotEqualTo = value; return this; } public ArrayList getDutyBetween() { return DutyBetween; } public RE_MainQuery setDutyBetween(ArrayList value) { this.DutyBetween = value; return this; } public ArrayList getDutyIn() { return DutyIn; } public RE_MainQuery setDutyIn(ArrayList value) { this.DutyIn = value; return this; } public Boolean isInvoiced() { return Invoiced; } public RE_MainQuery setInvoiced(Boolean value) { this.Invoiced = value; return this; } public String getPiMainID() { return PI_MainID; } public RE_MainQuery setPiMainID(String value) { this.PI_MainID = value; return this; } public String getPiMainIDStartsWith() { return PI_MainIDStartsWith; } public RE_MainQuery setPiMainIDStartsWith(String value) { this.PI_MainIDStartsWith = value; return this; } public String getPiMainIDEndsWith() { return PI_MainIDEndsWith; } public RE_MainQuery setPiMainIDEndsWith(String value) { this.PI_MainIDEndsWith = value; return this; } public String getPiMainIDContains() { return PI_MainIDContains; } public RE_MainQuery setPiMainIDContains(String value) { this.PI_MainIDContains = value; return this; } public String getPiMainIDLike() { return PI_MainIDLike; } public RE_MainQuery setPiMainIDLike(String value) { this.PI_MainIDLike = value; return this; } public ArrayList getPiMainIDBetween() { return PI_MainIDBetween; } public RE_MainQuery setPiMainIDBetween(ArrayList value) { this.PI_MainIDBetween = value; return this; } public ArrayList getPiMainIDIn() { return PI_MainIDIn; } public RE_MainQuery setPiMainIDIn(ArrayList value) { this.PI_MainIDIn = value; return this; } public BigDecimal getInsurance() { return Insurance; } public RE_MainQuery setInsurance(BigDecimal value) { this.Insurance = value; return this; } public BigDecimal getInsuranceGreaterThanOrEqualTo() { return InsuranceGreaterThanOrEqualTo; } public RE_MainQuery setInsuranceGreaterThanOrEqualTo(BigDecimal value) { this.InsuranceGreaterThanOrEqualTo = value; return this; } public BigDecimal getInsuranceGreaterThan() { return InsuranceGreaterThan; } public RE_MainQuery setInsuranceGreaterThan(BigDecimal value) { this.InsuranceGreaterThan = value; return this; } public BigDecimal getInsuranceLessThan() { return InsuranceLessThan; } public RE_MainQuery setInsuranceLessThan(BigDecimal value) { this.InsuranceLessThan = value; return this; } public BigDecimal getInsuranceLessThanOrEqualTo() { return InsuranceLessThanOrEqualTo; } public RE_MainQuery setInsuranceLessThanOrEqualTo(BigDecimal value) { this.InsuranceLessThanOrEqualTo = value; return this; } public BigDecimal getInsuranceNotEqualTo() { return InsuranceNotEqualTo; } public RE_MainQuery setInsuranceNotEqualTo(BigDecimal value) { this.InsuranceNotEqualTo = value; return this; } public ArrayList getInsuranceBetween() { return InsuranceBetween; } public RE_MainQuery setInsuranceBetween(ArrayList value) { this.InsuranceBetween = value; return this; } public ArrayList getInsuranceIn() { return InsuranceIn; } public RE_MainQuery setInsuranceIn(ArrayList value) { this.InsuranceIn = value; return this; } public String getInLogicalID() { return IN_LogicalID; } public RE_MainQuery setInLogicalID(String value) { this.IN_LogicalID = value; return this; } public String getInLogicalIDStartsWith() { return IN_LogicalIDStartsWith; } public RE_MainQuery setInLogicalIDStartsWith(String value) { this.IN_LogicalIDStartsWith = value; return this; } public String getInLogicalIDEndsWith() { return IN_LogicalIDEndsWith; } public RE_MainQuery setInLogicalIDEndsWith(String value) { this.IN_LogicalIDEndsWith = value; return this; } public String getInLogicalIDContains() { return IN_LogicalIDContains; } public RE_MainQuery setInLogicalIDContains(String value) { this.IN_LogicalIDContains = value; return this; } public String getInLogicalIDLike() { return IN_LogicalIDLike; } public RE_MainQuery setInLogicalIDLike(String value) { this.IN_LogicalIDLike = value; return this; } public ArrayList getInLogicalIDBetween() { return IN_LogicalIDBetween; } public RE_MainQuery setInLogicalIDBetween(ArrayList value) { this.IN_LogicalIDBetween = value; return this; } public ArrayList getInLogicalIDIn() { return IN_LogicalIDIn; } public RE_MainQuery setInLogicalIDIn(ArrayList value) { this.IN_LogicalIDIn = value; return this; } public BigDecimal getTaxTotal() { return TaxTotal; } public RE_MainQuery setTaxTotal(BigDecimal value) { this.TaxTotal = value; return this; } public BigDecimal getTaxTotalGreaterThanOrEqualTo() { return TaxTotalGreaterThanOrEqualTo; } public RE_MainQuery setTaxTotalGreaterThanOrEqualTo(BigDecimal value) { this.TaxTotalGreaterThanOrEqualTo = value; return this; } public BigDecimal getTaxTotalGreaterThan() { return TaxTotalGreaterThan; } public RE_MainQuery setTaxTotalGreaterThan(BigDecimal value) { this.TaxTotalGreaterThan = value; return this; } public BigDecimal getTaxTotalLessThan() { return TaxTotalLessThan; } public RE_MainQuery setTaxTotalLessThan(BigDecimal value) { this.TaxTotalLessThan = value; return this; } public BigDecimal getTaxTotalLessThanOrEqualTo() { return TaxTotalLessThanOrEqualTo; } public RE_MainQuery setTaxTotalLessThanOrEqualTo(BigDecimal value) { this.TaxTotalLessThanOrEqualTo = value; return this; } public BigDecimal getTaxTotalNotEqualTo() { return TaxTotalNotEqualTo; } public RE_MainQuery setTaxTotalNotEqualTo(BigDecimal value) { this.TaxTotalNotEqualTo = value; return this; } public ArrayList getTaxTotalBetween() { return TaxTotalBetween; } public RE_MainQuery setTaxTotalBetween(ArrayList value) { this.TaxTotalBetween = value; return this; } public ArrayList getTaxTotalIn() { return TaxTotalIn; } public RE_MainQuery setTaxTotalIn(ArrayList value) { this.TaxTotalIn = value; return this; } public String getFreightTaxID() { return FreightTaxID; } public RE_MainQuery setFreightTaxID(String value) { this.FreightTaxID = value; return this; } public String getFreightTaxIDStartsWith() { return FreightTaxIDStartsWith; } public RE_MainQuery setFreightTaxIDStartsWith(String value) { this.FreightTaxIDStartsWith = value; return this; } public String getFreightTaxIDEndsWith() { return FreightTaxIDEndsWith; } public RE_MainQuery setFreightTaxIDEndsWith(String value) { this.FreightTaxIDEndsWith = value; return this; } public String getFreightTaxIDContains() { return FreightTaxIDContains; } public RE_MainQuery setFreightTaxIDContains(String value) { this.FreightTaxIDContains = value; return this; } public String getFreightTaxIDLike() { return FreightTaxIDLike; } public RE_MainQuery setFreightTaxIDLike(String value) { this.FreightTaxIDLike = value; return this; } public ArrayList getFreightTaxIDBetween() { return FreightTaxIDBetween; } public RE_MainQuery setFreightTaxIDBetween(ArrayList value) { this.FreightTaxIDBetween = value; return this; } public ArrayList getFreightTaxIDIn() { return FreightTaxIDIn; } public RE_MainQuery setFreightTaxIDIn(ArrayList value) { this.FreightTaxIDIn = value; return this; } public BigDecimal getFreightTaxRate() { return FreightTaxRate; } public RE_MainQuery setFreightTaxRate(BigDecimal value) { this.FreightTaxRate = value; return this; } public BigDecimal getFreightTaxRateGreaterThanOrEqualTo() { return FreightTaxRateGreaterThanOrEqualTo; } public RE_MainQuery setFreightTaxRateGreaterThanOrEqualTo(BigDecimal value) { this.FreightTaxRateGreaterThanOrEqualTo = value; return this; } public BigDecimal getFreightTaxRateGreaterThan() { return FreightTaxRateGreaterThan; } public RE_MainQuery setFreightTaxRateGreaterThan(BigDecimal value) { this.FreightTaxRateGreaterThan = value; return this; } public BigDecimal getFreightTaxRateLessThan() { return FreightTaxRateLessThan; } public RE_MainQuery setFreightTaxRateLessThan(BigDecimal value) { this.FreightTaxRateLessThan = value; return this; } public BigDecimal getFreightTaxRateLessThanOrEqualTo() { return FreightTaxRateLessThanOrEqualTo; } public RE_MainQuery setFreightTaxRateLessThanOrEqualTo(BigDecimal value) { this.FreightTaxRateLessThanOrEqualTo = value; return this; } public BigDecimal getFreightTaxRateNotEqualTo() { return FreightTaxRateNotEqualTo; } public RE_MainQuery setFreightTaxRateNotEqualTo(BigDecimal value) { this.FreightTaxRateNotEqualTo = value; return this; } public ArrayList getFreightTaxRateBetween() { return FreightTaxRateBetween; } public RE_MainQuery setFreightTaxRateBetween(ArrayList value) { this.FreightTaxRateBetween = value; return this; } public ArrayList getFreightTaxRateIn() { return FreightTaxRateIn; } public RE_MainQuery setFreightTaxRateIn(ArrayList value) { this.FreightTaxRateIn = value; return this; } public BigDecimal getFreightTaxAmount() { return FreightTaxAmount; } public RE_MainQuery setFreightTaxAmount(BigDecimal value) { this.FreightTaxAmount = value; return this; } public BigDecimal getFreightTaxAmountGreaterThanOrEqualTo() { return FreightTaxAmountGreaterThanOrEqualTo; } public RE_MainQuery setFreightTaxAmountGreaterThanOrEqualTo(BigDecimal value) { this.FreightTaxAmountGreaterThanOrEqualTo = value; return this; } public BigDecimal getFreightTaxAmountGreaterThan() { return FreightTaxAmountGreaterThan; } public RE_MainQuery setFreightTaxAmountGreaterThan(BigDecimal value) { this.FreightTaxAmountGreaterThan = value; return this; } public BigDecimal getFreightTaxAmountLessThan() { return FreightTaxAmountLessThan; } public RE_MainQuery setFreightTaxAmountLessThan(BigDecimal value) { this.FreightTaxAmountLessThan = value; return this; } public BigDecimal getFreightTaxAmountLessThanOrEqualTo() { return FreightTaxAmountLessThanOrEqualTo; } public RE_MainQuery setFreightTaxAmountLessThanOrEqualTo(BigDecimal value) { this.FreightTaxAmountLessThanOrEqualTo = value; return this; } public BigDecimal getFreightTaxAmountNotEqualTo() { return FreightTaxAmountNotEqualTo; } public RE_MainQuery setFreightTaxAmountNotEqualTo(BigDecimal value) { this.FreightTaxAmountNotEqualTo = value; return this; } public ArrayList getFreightTaxAmountBetween() { return FreightTaxAmountBetween; } public RE_MainQuery setFreightTaxAmountBetween(ArrayList value) { this.FreightTaxAmountBetween = value; return this; } public ArrayList getFreightTaxAmountIn() { return FreightTaxAmountIn; } public RE_MainQuery setFreightTaxAmountIn(ArrayList value) { this.FreightTaxAmountIn = value; return this; } public String getDutyTaxID() { return DutyTaxID; } public RE_MainQuery setDutyTaxID(String value) { this.DutyTaxID = value; return this; } public String getDutyTaxIDStartsWith() { return DutyTaxIDStartsWith; } public RE_MainQuery setDutyTaxIDStartsWith(String value) { this.DutyTaxIDStartsWith = value; return this; } public String getDutyTaxIDEndsWith() { return DutyTaxIDEndsWith; } public RE_MainQuery setDutyTaxIDEndsWith(String value) { this.DutyTaxIDEndsWith = value; return this; } public String getDutyTaxIDContains() { return DutyTaxIDContains; } public RE_MainQuery setDutyTaxIDContains(String value) { this.DutyTaxIDContains = value; return this; } public String getDutyTaxIDLike() { return DutyTaxIDLike; } public RE_MainQuery setDutyTaxIDLike(String value) { this.DutyTaxIDLike = value; return this; } public ArrayList getDutyTaxIDBetween() { return DutyTaxIDBetween; } public RE_MainQuery setDutyTaxIDBetween(ArrayList value) { this.DutyTaxIDBetween = value; return this; } public ArrayList getDutyTaxIDIn() { return DutyTaxIDIn; } public RE_MainQuery setDutyTaxIDIn(ArrayList value) { this.DutyTaxIDIn = value; return this; } public BigDecimal getDutyTaxRate() { return DutyTaxRate; } public RE_MainQuery setDutyTaxRate(BigDecimal value) { this.DutyTaxRate = value; return this; } public BigDecimal getDutyTaxRateGreaterThanOrEqualTo() { return DutyTaxRateGreaterThanOrEqualTo; } public RE_MainQuery setDutyTaxRateGreaterThanOrEqualTo(BigDecimal value) { this.DutyTaxRateGreaterThanOrEqualTo = value; return this; } public BigDecimal getDutyTaxRateGreaterThan() { return DutyTaxRateGreaterThan; } public RE_MainQuery setDutyTaxRateGreaterThan(BigDecimal value) { this.DutyTaxRateGreaterThan = value; return this; } public BigDecimal getDutyTaxRateLessThan() { return DutyTaxRateLessThan; } public RE_MainQuery setDutyTaxRateLessThan(BigDecimal value) { this.DutyTaxRateLessThan = value; return this; } public BigDecimal getDutyTaxRateLessThanOrEqualTo() { return DutyTaxRateLessThanOrEqualTo; } public RE_MainQuery setDutyTaxRateLessThanOrEqualTo(BigDecimal value) { this.DutyTaxRateLessThanOrEqualTo = value; return this; } public BigDecimal getDutyTaxRateNotEqualTo() { return DutyTaxRateNotEqualTo; } public RE_MainQuery setDutyTaxRateNotEqualTo(BigDecimal value) { this.DutyTaxRateNotEqualTo = value; return this; } public ArrayList getDutyTaxRateBetween() { return DutyTaxRateBetween; } public RE_MainQuery setDutyTaxRateBetween(ArrayList value) { this.DutyTaxRateBetween = value; return this; } public ArrayList getDutyTaxRateIn() { return DutyTaxRateIn; } public RE_MainQuery setDutyTaxRateIn(ArrayList value) { this.DutyTaxRateIn = value; return this; } public BigDecimal getDutyTaxAmount() { return DutyTaxAmount; } public RE_MainQuery setDutyTaxAmount(BigDecimal value) { this.DutyTaxAmount = value; return this; } public BigDecimal getDutyTaxAmountGreaterThanOrEqualTo() { return DutyTaxAmountGreaterThanOrEqualTo; } public RE_MainQuery setDutyTaxAmountGreaterThanOrEqualTo(BigDecimal value) { this.DutyTaxAmountGreaterThanOrEqualTo = value; return this; } public BigDecimal getDutyTaxAmountGreaterThan() { return DutyTaxAmountGreaterThan; } public RE_MainQuery setDutyTaxAmountGreaterThan(BigDecimal value) { this.DutyTaxAmountGreaterThan = value; return this; } public BigDecimal getDutyTaxAmountLessThan() { return DutyTaxAmountLessThan; } public RE_MainQuery setDutyTaxAmountLessThan(BigDecimal value) { this.DutyTaxAmountLessThan = value; return this; } public BigDecimal getDutyTaxAmountLessThanOrEqualTo() { return DutyTaxAmountLessThanOrEqualTo; } public RE_MainQuery setDutyTaxAmountLessThanOrEqualTo(BigDecimal value) { this.DutyTaxAmountLessThanOrEqualTo = value; return this; } public BigDecimal getDutyTaxAmountNotEqualTo() { return DutyTaxAmountNotEqualTo; } public RE_MainQuery setDutyTaxAmountNotEqualTo(BigDecimal value) { this.DutyTaxAmountNotEqualTo = value; return this; } public ArrayList getDutyTaxAmountBetween() { return DutyTaxAmountBetween; } public RE_MainQuery setDutyTaxAmountBetween(ArrayList value) { this.DutyTaxAmountBetween = value; return this; } public ArrayList getDutyTaxAmountIn() { return DutyTaxAmountIn; } public RE_MainQuery setDutyTaxAmountIn(ArrayList value) { this.DutyTaxAmountIn = value; return this; } public String getInsuranceTaxID() { return InsuranceTaxID; } public RE_MainQuery setInsuranceTaxID(String value) { this.InsuranceTaxID = value; return this; } public String getInsuranceTaxIDStartsWith() { return InsuranceTaxIDStartsWith; } public RE_MainQuery setInsuranceTaxIDStartsWith(String value) { this.InsuranceTaxIDStartsWith = value; return this; } public String getInsuranceTaxIDEndsWith() { return InsuranceTaxIDEndsWith; } public RE_MainQuery setInsuranceTaxIDEndsWith(String value) { this.InsuranceTaxIDEndsWith = value; return this; } public String getInsuranceTaxIDContains() { return InsuranceTaxIDContains; } public RE_MainQuery setInsuranceTaxIDContains(String value) { this.InsuranceTaxIDContains = value; return this; } public String getInsuranceTaxIDLike() { return InsuranceTaxIDLike; } public RE_MainQuery setInsuranceTaxIDLike(String value) { this.InsuranceTaxIDLike = value; return this; } public ArrayList getInsuranceTaxIDBetween() { return InsuranceTaxIDBetween; } public RE_MainQuery setInsuranceTaxIDBetween(ArrayList value) { this.InsuranceTaxIDBetween = value; return this; } public ArrayList getInsuranceTaxIDIn() { return InsuranceTaxIDIn; } public RE_MainQuery setInsuranceTaxIDIn(ArrayList value) { this.InsuranceTaxIDIn = value; return this; } public BigDecimal getInsuranceTaxRate() { return InsuranceTaxRate; } public RE_MainQuery setInsuranceTaxRate(BigDecimal value) { this.InsuranceTaxRate = value; return this; } public BigDecimal getInsuranceTaxRateGreaterThanOrEqualTo() { return InsuranceTaxRateGreaterThanOrEqualTo; } public RE_MainQuery setInsuranceTaxRateGreaterThanOrEqualTo(BigDecimal value) { this.InsuranceTaxRateGreaterThanOrEqualTo = value; return this; } public BigDecimal getInsuranceTaxRateGreaterThan() { return InsuranceTaxRateGreaterThan; } public RE_MainQuery setInsuranceTaxRateGreaterThan(BigDecimal value) { this.InsuranceTaxRateGreaterThan = value; return this; } public BigDecimal getInsuranceTaxRateLessThan() { return InsuranceTaxRateLessThan; } public RE_MainQuery setInsuranceTaxRateLessThan(BigDecimal value) { this.InsuranceTaxRateLessThan = value; return this; } public BigDecimal getInsuranceTaxRateLessThanOrEqualTo() { return InsuranceTaxRateLessThanOrEqualTo; } public RE_MainQuery setInsuranceTaxRateLessThanOrEqualTo(BigDecimal value) { this.InsuranceTaxRateLessThanOrEqualTo = value; return this; } public BigDecimal getInsuranceTaxRateNotEqualTo() { return InsuranceTaxRateNotEqualTo; } public RE_MainQuery setInsuranceTaxRateNotEqualTo(BigDecimal value) { this.InsuranceTaxRateNotEqualTo = value; return this; } public ArrayList getInsuranceTaxRateBetween() { return InsuranceTaxRateBetween; } public RE_MainQuery setInsuranceTaxRateBetween(ArrayList value) { this.InsuranceTaxRateBetween = value; return this; } public ArrayList getInsuranceTaxRateIn() { return InsuranceTaxRateIn; } public RE_MainQuery setInsuranceTaxRateIn(ArrayList value) { this.InsuranceTaxRateIn = value; return this; } public BigDecimal getInsuranceTaxAmount() { return InsuranceTaxAmount; } public RE_MainQuery setInsuranceTaxAmount(BigDecimal value) { this.InsuranceTaxAmount = value; return this; } public BigDecimal getInsuranceTaxAmountGreaterThanOrEqualTo() { return InsuranceTaxAmountGreaterThanOrEqualTo; } public RE_MainQuery setInsuranceTaxAmountGreaterThanOrEqualTo(BigDecimal value) { this.InsuranceTaxAmountGreaterThanOrEqualTo = value; return this; } public BigDecimal getInsuranceTaxAmountGreaterThan() { return InsuranceTaxAmountGreaterThan; } public RE_MainQuery setInsuranceTaxAmountGreaterThan(BigDecimal value) { this.InsuranceTaxAmountGreaterThan = value; return this; } public BigDecimal getInsuranceTaxAmountLessThan() { return InsuranceTaxAmountLessThan; } public RE_MainQuery setInsuranceTaxAmountLessThan(BigDecimal value) { this.InsuranceTaxAmountLessThan = value; return this; } public BigDecimal getInsuranceTaxAmountLessThanOrEqualTo() { return InsuranceTaxAmountLessThanOrEqualTo; } public RE_MainQuery setInsuranceTaxAmountLessThanOrEqualTo(BigDecimal value) { this.InsuranceTaxAmountLessThanOrEqualTo = value; return this; } public BigDecimal getInsuranceTaxAmountNotEqualTo() { return InsuranceTaxAmountNotEqualTo; } public RE_MainQuery setInsuranceTaxAmountNotEqualTo(BigDecimal value) { this.InsuranceTaxAmountNotEqualTo = value; return this; } public ArrayList getInsuranceTaxAmountBetween() { return InsuranceTaxAmountBetween; } public RE_MainQuery setInsuranceTaxAmountBetween(ArrayList value) { this.InsuranceTaxAmountBetween = value; return this; } public ArrayList getInsuranceTaxAmountIn() { return InsuranceTaxAmountIn; } public RE_MainQuery setInsuranceTaxAmountIn(ArrayList value) { this.InsuranceTaxAmountIn = value; return this; } public String getReference() { return Reference; } public RE_MainQuery setReference(String value) { this.Reference = value; return this; } public String getReferenceStartsWith() { return ReferenceStartsWith; } public RE_MainQuery setReferenceStartsWith(String value) { this.ReferenceStartsWith = value; return this; } public String getReferenceEndsWith() { return ReferenceEndsWith; } public RE_MainQuery setReferenceEndsWith(String value) { this.ReferenceEndsWith = value; return this; } public String getReferenceContains() { return ReferenceContains; } public RE_MainQuery setReferenceContains(String value) { this.ReferenceContains = value; return this; } public String getReferenceLike() { return ReferenceLike; } public RE_MainQuery setReferenceLike(String value) { this.ReferenceLike = value; return this; } public ArrayList getReferenceBetween() { return ReferenceBetween; } public RE_MainQuery setReferenceBetween(ArrayList value) { this.ReferenceBetween = value; return this; } public ArrayList getReferenceIn() { return ReferenceIn; } public RE_MainQuery setReferenceIn(ArrayList value) { this.ReferenceIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class RE_OrdersUsedQuery extends QueryDb implements IReturn> { public String OrdersPSOrdersID = null; public String OrdersPSOrdersIDStartsWith = null; public String OrdersPSOrdersIDEndsWith = null; public String OrdersPSOrdersIDContains = null; public String OrdersPSOrdersIDLike = null; public ArrayList OrdersPSOrdersIDBetween = null; public ArrayList OrdersPSOrdersIDIn = null; public String PackSlipID = null; public String PackSlipIDStartsWith = null; public String PackSlipIDEndsWith = null; public String PackSlipIDContains = null; public String PackSlipIDLike = null; public ArrayList PackSlipIDBetween = null; public ArrayList PackSlipIDIn = null; public String OrderID = null; public String OrderIDStartsWith = null; public String OrderIDEndsWith = null; public String OrderIDContains = null; public String OrderIDLike = null; public ArrayList OrderIDBetween = null; public ArrayList OrderIDIn = null; public Boolean TypeReceival = null; public String getOrdersPSOrdersID() { return OrdersPSOrdersID; } public RE_OrdersUsedQuery setOrdersPSOrdersID(String value) { this.OrdersPSOrdersID = value; return this; } public String getOrdersPSOrdersIDStartsWith() { return OrdersPSOrdersIDStartsWith; } public RE_OrdersUsedQuery setOrdersPSOrdersIDStartsWith(String value) { this.OrdersPSOrdersIDStartsWith = value; return this; } public String getOrdersPSOrdersIDEndsWith() { return OrdersPSOrdersIDEndsWith; } public RE_OrdersUsedQuery setOrdersPSOrdersIDEndsWith(String value) { this.OrdersPSOrdersIDEndsWith = value; return this; } public String getOrdersPSOrdersIDContains() { return OrdersPSOrdersIDContains; } public RE_OrdersUsedQuery setOrdersPSOrdersIDContains(String value) { this.OrdersPSOrdersIDContains = value; return this; } public String getOrdersPSOrdersIDLike() { return OrdersPSOrdersIDLike; } public RE_OrdersUsedQuery setOrdersPSOrdersIDLike(String value) { this.OrdersPSOrdersIDLike = value; return this; } public ArrayList getOrdersPSOrdersIDBetween() { return OrdersPSOrdersIDBetween; } public RE_OrdersUsedQuery setOrdersPSOrdersIDBetween(ArrayList value) { this.OrdersPSOrdersIDBetween = value; return this; } public ArrayList getOrdersPSOrdersIDIn() { return OrdersPSOrdersIDIn; } public RE_OrdersUsedQuery setOrdersPSOrdersIDIn(ArrayList value) { this.OrdersPSOrdersIDIn = value; return this; } public String getPackSlipID() { return PackSlipID; } public RE_OrdersUsedQuery setPackSlipID(String value) { this.PackSlipID = value; return this; } public String getPackSlipIDStartsWith() { return PackSlipIDStartsWith; } public RE_OrdersUsedQuery setPackSlipIDStartsWith(String value) { this.PackSlipIDStartsWith = value; return this; } public String getPackSlipIDEndsWith() { return PackSlipIDEndsWith; } public RE_OrdersUsedQuery setPackSlipIDEndsWith(String value) { this.PackSlipIDEndsWith = value; return this; } public String getPackSlipIDContains() { return PackSlipIDContains; } public RE_OrdersUsedQuery setPackSlipIDContains(String value) { this.PackSlipIDContains = value; return this; } public String getPackSlipIDLike() { return PackSlipIDLike; } public RE_OrdersUsedQuery setPackSlipIDLike(String value) { this.PackSlipIDLike = value; return this; } public ArrayList getPackSlipIDBetween() { return PackSlipIDBetween; } public RE_OrdersUsedQuery setPackSlipIDBetween(ArrayList value) { this.PackSlipIDBetween = value; return this; } public ArrayList getPackSlipIDIn() { return PackSlipIDIn; } public RE_OrdersUsedQuery setPackSlipIDIn(ArrayList value) { this.PackSlipIDIn = value; return this; } public String getOrderID() { return OrderID; } public RE_OrdersUsedQuery setOrderID(String value) { this.OrderID = value; return this; } public String getOrderIDStartsWith() { return OrderIDStartsWith; } public RE_OrdersUsedQuery setOrderIDStartsWith(String value) { this.OrderIDStartsWith = value; return this; } public String getOrderIDEndsWith() { return OrderIDEndsWith; } public RE_OrdersUsedQuery setOrderIDEndsWith(String value) { this.OrderIDEndsWith = value; return this; } public String getOrderIDContains() { return OrderIDContains; } public RE_OrdersUsedQuery setOrderIDContains(String value) { this.OrderIDContains = value; return this; } public String getOrderIDLike() { return OrderIDLike; } public RE_OrdersUsedQuery setOrderIDLike(String value) { this.OrderIDLike = value; return this; } public ArrayList getOrderIDBetween() { return OrderIDBetween; } public RE_OrdersUsedQuery setOrderIDBetween(ArrayList value) { this.OrderIDBetween = value; return this; } public ArrayList getOrderIDIn() { return OrderIDIn; } public RE_OrdersUsedQuery setOrderIDIn(ArrayList value) { this.OrderIDIn = value; return this; } public Boolean isTypeReceival() { return TypeReceival; } public RE_OrdersUsedQuery setTypeReceival(Boolean value) { this.TypeReceival = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class RE_ReversalQuery extends QueryDb implements IReturn> { public UUID RecID = null; public ArrayList RecIDIn = null; public String Reversed_RE_Main_RecID = null; public String Reversed_RE_Main_RecIDStartsWith = null; public String Reversed_RE_Main_RecIDEndsWith = null; public String Reversed_RE_Main_RecIDContains = null; public String Reversed_RE_Main_RecIDLike = null; public ArrayList Reversed_RE_Main_RecIDBetween = null; public ArrayList Reversed_RE_Main_RecIDIn = null; public String Reversal_RE_Main_RecID = null; public String Reversal_RE_Main_RecIDStartsWith = null; public String Reversal_RE_Main_RecIDEndsWith = null; public String Reversal_RE_Main_RecIDContains = null; public String Reversal_RE_Main_RecIDLike = null; public ArrayList Reversal_RE_Main_RecIDBetween = null; public ArrayList Reversal_RE_Main_RecIDIn = null; public UUID getRecID() { return RecID; } public RE_ReversalQuery setRecID(UUID value) { this.RecID = value; return this; } public ArrayList getRecIDIn() { return RecIDIn; } public RE_ReversalQuery setRecIDIn(ArrayList value) { this.RecIDIn = value; return this; } public String getReversedReMainRecID() { return Reversed_RE_Main_RecID; } public RE_ReversalQuery setReversedReMainRecID(String value) { this.Reversed_RE_Main_RecID = value; return this; } public String getReversedReMainRecIDStartsWith() { return Reversed_RE_Main_RecIDStartsWith; } public RE_ReversalQuery setReversedReMainRecIDStartsWith(String value) { this.Reversed_RE_Main_RecIDStartsWith = value; return this; } public String getReversedReMainRecIDEndsWith() { return Reversed_RE_Main_RecIDEndsWith; } public RE_ReversalQuery setReversedReMainRecIDEndsWith(String value) { this.Reversed_RE_Main_RecIDEndsWith = value; return this; } public String getReversedReMainRecIDContains() { return Reversed_RE_Main_RecIDContains; } public RE_ReversalQuery setReversedReMainRecIDContains(String value) { this.Reversed_RE_Main_RecIDContains = value; return this; } public String getReversedReMainRecIDLike() { return Reversed_RE_Main_RecIDLike; } public RE_ReversalQuery setReversedReMainRecIDLike(String value) { this.Reversed_RE_Main_RecIDLike = value; return this; } public ArrayList getReversedReMainRecIDBetween() { return Reversed_RE_Main_RecIDBetween; } public RE_ReversalQuery setReversedReMainRecIDBetween(ArrayList value) { this.Reversed_RE_Main_RecIDBetween = value; return this; } public ArrayList getReversedReMainRecIDIn() { return Reversed_RE_Main_RecIDIn; } public RE_ReversalQuery setReversedReMainRecIDIn(ArrayList value) { this.Reversed_RE_Main_RecIDIn = value; return this; } public String getReversalReMainRecID() { return Reversal_RE_Main_RecID; } public RE_ReversalQuery setReversalReMainRecID(String value) { this.Reversal_RE_Main_RecID = value; return this; } public String getReversalReMainRecIDStartsWith() { return Reversal_RE_Main_RecIDStartsWith; } public RE_ReversalQuery setReversalReMainRecIDStartsWith(String value) { this.Reversal_RE_Main_RecIDStartsWith = value; return this; } public String getReversalReMainRecIDEndsWith() { return Reversal_RE_Main_RecIDEndsWith; } public RE_ReversalQuery setReversalReMainRecIDEndsWith(String value) { this.Reversal_RE_Main_RecIDEndsWith = value; return this; } public String getReversalReMainRecIDContains() { return Reversal_RE_Main_RecIDContains; } public RE_ReversalQuery setReversalReMainRecIDContains(String value) { this.Reversal_RE_Main_RecIDContains = value; return this; } public String getReversalReMainRecIDLike() { return Reversal_RE_Main_RecIDLike; } public RE_ReversalQuery setReversalReMainRecIDLike(String value) { this.Reversal_RE_Main_RecIDLike = value; return this; } public ArrayList getReversalReMainRecIDBetween() { return Reversal_RE_Main_RecIDBetween; } public RE_ReversalQuery setReversalReMainRecIDBetween(ArrayList value) { this.Reversal_RE_Main_RecIDBetween = value; return this; } public ArrayList getReversalReMainRecIDIn() { return Reversal_RE_Main_RecIDIn; } public RE_ReversalQuery setReversalReMainRecIDIn(ArrayList value) { this.Reversal_RE_Main_RecIDIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class SH_ApportionedCostsAmountsQuery extends QueryDb implements IReturn> { public String CostsAmountsID = null; public String CostsAmountsIDStartsWith = null; public String CostsAmountsIDEndsWith = null; public String CostsAmountsIDContains = null; public String CostsAmountsIDLike = null; public ArrayList CostsAmountsIDBetween = null; public ArrayList CostsAmountsIDIn = null; public String ShipmentLineID = null; public String ShipmentLineIDStartsWith = null; public String ShipmentLineIDEndsWith = null; public String ShipmentLineIDContains = null; public String ShipmentLineIDLike = null; public ArrayList ShipmentLineIDBetween = null; public ArrayList ShipmentLineIDIn = null; public String CostsID = null; public String CostsIDStartsWith = null; public String CostsIDEndsWith = null; public String CostsIDContains = null; public String CostsIDLike = null; public ArrayList CostsIDBetween = null; public ArrayList CostsIDIn = null; public BigDecimal Amount = null; public BigDecimal AmountGreaterThanOrEqualTo = null; public BigDecimal AmountGreaterThan = null; public BigDecimal AmountLessThan = null; public BigDecimal AmountLessThanOrEqualTo = null; public BigDecimal AmountNotEqualTo = null; public ArrayList AmountBetween = null; public ArrayList AmountIn = null; public Boolean IncludeFlag = null; public ArrayList RowHash = null; public String getCostsAmountsID() { return CostsAmountsID; } public SH_ApportionedCostsAmountsQuery setCostsAmountsID(String value) { this.CostsAmountsID = value; return this; } public String getCostsAmountsIDStartsWith() { return CostsAmountsIDStartsWith; } public SH_ApportionedCostsAmountsQuery setCostsAmountsIDStartsWith(String value) { this.CostsAmountsIDStartsWith = value; return this; } public String getCostsAmountsIDEndsWith() { return CostsAmountsIDEndsWith; } public SH_ApportionedCostsAmountsQuery setCostsAmountsIDEndsWith(String value) { this.CostsAmountsIDEndsWith = value; return this; } public String getCostsAmountsIDContains() { return CostsAmountsIDContains; } public SH_ApportionedCostsAmountsQuery setCostsAmountsIDContains(String value) { this.CostsAmountsIDContains = value; return this; } public String getCostsAmountsIDLike() { return CostsAmountsIDLike; } public SH_ApportionedCostsAmountsQuery setCostsAmountsIDLike(String value) { this.CostsAmountsIDLike = value; return this; } public ArrayList getCostsAmountsIDBetween() { return CostsAmountsIDBetween; } public SH_ApportionedCostsAmountsQuery setCostsAmountsIDBetween(ArrayList value) { this.CostsAmountsIDBetween = value; return this; } public ArrayList getCostsAmountsIDIn() { return CostsAmountsIDIn; } public SH_ApportionedCostsAmountsQuery setCostsAmountsIDIn(ArrayList value) { this.CostsAmountsIDIn = value; return this; } public String getShipmentLineID() { return ShipmentLineID; } public SH_ApportionedCostsAmountsQuery setShipmentLineID(String value) { this.ShipmentLineID = value; return this; } public String getShipmentLineIDStartsWith() { return ShipmentLineIDStartsWith; } public SH_ApportionedCostsAmountsQuery setShipmentLineIDStartsWith(String value) { this.ShipmentLineIDStartsWith = value; return this; } public String getShipmentLineIDEndsWith() { return ShipmentLineIDEndsWith; } public SH_ApportionedCostsAmountsQuery setShipmentLineIDEndsWith(String value) { this.ShipmentLineIDEndsWith = value; return this; } public String getShipmentLineIDContains() { return ShipmentLineIDContains; } public SH_ApportionedCostsAmountsQuery setShipmentLineIDContains(String value) { this.ShipmentLineIDContains = value; return this; } public String getShipmentLineIDLike() { return ShipmentLineIDLike; } public SH_ApportionedCostsAmountsQuery setShipmentLineIDLike(String value) { this.ShipmentLineIDLike = value; return this; } public ArrayList getShipmentLineIDBetween() { return ShipmentLineIDBetween; } public SH_ApportionedCostsAmountsQuery setShipmentLineIDBetween(ArrayList value) { this.ShipmentLineIDBetween = value; return this; } public ArrayList getShipmentLineIDIn() { return ShipmentLineIDIn; } public SH_ApportionedCostsAmountsQuery setShipmentLineIDIn(ArrayList value) { this.ShipmentLineIDIn = value; return this; } public String getCostsID() { return CostsID; } public SH_ApportionedCostsAmountsQuery setCostsID(String value) { this.CostsID = value; return this; } public String getCostsIDStartsWith() { return CostsIDStartsWith; } public SH_ApportionedCostsAmountsQuery setCostsIDStartsWith(String value) { this.CostsIDStartsWith = value; return this; } public String getCostsIDEndsWith() { return CostsIDEndsWith; } public SH_ApportionedCostsAmountsQuery setCostsIDEndsWith(String value) { this.CostsIDEndsWith = value; return this; } public String getCostsIDContains() { return CostsIDContains; } public SH_ApportionedCostsAmountsQuery setCostsIDContains(String value) { this.CostsIDContains = value; return this; } public String getCostsIDLike() { return CostsIDLike; } public SH_ApportionedCostsAmountsQuery setCostsIDLike(String value) { this.CostsIDLike = value; return this; } public ArrayList getCostsIDBetween() { return CostsIDBetween; } public SH_ApportionedCostsAmountsQuery setCostsIDBetween(ArrayList value) { this.CostsIDBetween = value; return this; } public ArrayList getCostsIDIn() { return CostsIDIn; } public SH_ApportionedCostsAmountsQuery setCostsIDIn(ArrayList value) { this.CostsIDIn = value; return this; } public BigDecimal getAmount() { return Amount; } public SH_ApportionedCostsAmountsQuery setAmount(BigDecimal value) { this.Amount = value; return this; } public BigDecimal getAmountGreaterThanOrEqualTo() { return AmountGreaterThanOrEqualTo; } public SH_ApportionedCostsAmountsQuery setAmountGreaterThanOrEqualTo(BigDecimal value) { this.AmountGreaterThanOrEqualTo = value; return this; } public BigDecimal getAmountGreaterThan() { return AmountGreaterThan; } public SH_ApportionedCostsAmountsQuery setAmountGreaterThan(BigDecimal value) { this.AmountGreaterThan = value; return this; } public BigDecimal getAmountLessThan() { return AmountLessThan; } public SH_ApportionedCostsAmountsQuery setAmountLessThan(BigDecimal value) { this.AmountLessThan = value; return this; } public BigDecimal getAmountLessThanOrEqualTo() { return AmountLessThanOrEqualTo; } public SH_ApportionedCostsAmountsQuery setAmountLessThanOrEqualTo(BigDecimal value) { this.AmountLessThanOrEqualTo = value; return this; } public BigDecimal getAmountNotEqualTo() { return AmountNotEqualTo; } public SH_ApportionedCostsAmountsQuery setAmountNotEqualTo(BigDecimal value) { this.AmountNotEqualTo = value; return this; } public ArrayList getAmountBetween() { return AmountBetween; } public SH_ApportionedCostsAmountsQuery setAmountBetween(ArrayList value) { this.AmountBetween = value; return this; } public ArrayList getAmountIn() { return AmountIn; } public SH_ApportionedCostsAmountsQuery setAmountIn(ArrayList value) { this.AmountIn = value; return this; } public Boolean isIncludeFlag() { return IncludeFlag; } public SH_ApportionedCostsAmountsQuery setIncludeFlag(Boolean value) { this.IncludeFlag = value; return this; } public ArrayList getRowHash() { return RowHash; } public SH_ApportionedCostsAmountsQuery setRowHash(ArrayList value) { this.RowHash = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class SH_ApportionedCostsOnPOQuery extends QueryDb implements IReturn> { public String ApportionedID = null; public String ApportionedIDStartsWith = null; public String ApportionedIDEndsWith = null; public String ApportionedIDContains = null; public String ApportionedIDLike = null; public ArrayList ApportionedIDBetween = null; public ArrayList ApportionedIDIn = null; public String CostsID = null; public String CostsIDStartsWith = null; public String CostsIDEndsWith = null; public String CostsIDContains = null; public String CostsIDLike = null; public ArrayList CostsIDBetween = null; public ArrayList CostsIDIn = null; public String ShipmentID = null; public String ShipmentIDStartsWith = null; public String ShipmentIDEndsWith = null; public String ShipmentIDContains = null; public String ShipmentIDLike = null; public ArrayList ShipmentIDBetween = null; public ArrayList ShipmentIDIn = null; public String OrdersUsedID = null; public String OrdersUsedIDStartsWith = null; public String OrdersUsedIDEndsWith = null; public String OrdersUsedIDContains = null; public String OrdersUsedIDLike = null; public ArrayList OrdersUsedIDBetween = null; public ArrayList OrdersUsedIDIn = null; public ArrayList RowHash = null; public String getApportionedID() { return ApportionedID; } public SH_ApportionedCostsOnPOQuery setApportionedID(String value) { this.ApportionedID = value; return this; } public String getApportionedIDStartsWith() { return ApportionedIDStartsWith; } public SH_ApportionedCostsOnPOQuery setApportionedIDStartsWith(String value) { this.ApportionedIDStartsWith = value; return this; } public String getApportionedIDEndsWith() { return ApportionedIDEndsWith; } public SH_ApportionedCostsOnPOQuery setApportionedIDEndsWith(String value) { this.ApportionedIDEndsWith = value; return this; } public String getApportionedIDContains() { return ApportionedIDContains; } public SH_ApportionedCostsOnPOQuery setApportionedIDContains(String value) { this.ApportionedIDContains = value; return this; } public String getApportionedIDLike() { return ApportionedIDLike; } public SH_ApportionedCostsOnPOQuery setApportionedIDLike(String value) { this.ApportionedIDLike = value; return this; } public ArrayList getApportionedIDBetween() { return ApportionedIDBetween; } public SH_ApportionedCostsOnPOQuery setApportionedIDBetween(ArrayList value) { this.ApportionedIDBetween = value; return this; } public ArrayList getApportionedIDIn() { return ApportionedIDIn; } public SH_ApportionedCostsOnPOQuery setApportionedIDIn(ArrayList value) { this.ApportionedIDIn = value; return this; } public String getCostsID() { return CostsID; } public SH_ApportionedCostsOnPOQuery setCostsID(String value) { this.CostsID = value; return this; } public String getCostsIDStartsWith() { return CostsIDStartsWith; } public SH_ApportionedCostsOnPOQuery setCostsIDStartsWith(String value) { this.CostsIDStartsWith = value; return this; } public String getCostsIDEndsWith() { return CostsIDEndsWith; } public SH_ApportionedCostsOnPOQuery setCostsIDEndsWith(String value) { this.CostsIDEndsWith = value; return this; } public String getCostsIDContains() { return CostsIDContains; } public SH_ApportionedCostsOnPOQuery setCostsIDContains(String value) { this.CostsIDContains = value; return this; } public String getCostsIDLike() { return CostsIDLike; } public SH_ApportionedCostsOnPOQuery setCostsIDLike(String value) { this.CostsIDLike = value; return this; } public ArrayList getCostsIDBetween() { return CostsIDBetween; } public SH_ApportionedCostsOnPOQuery setCostsIDBetween(ArrayList value) { this.CostsIDBetween = value; return this; } public ArrayList getCostsIDIn() { return CostsIDIn; } public SH_ApportionedCostsOnPOQuery setCostsIDIn(ArrayList value) { this.CostsIDIn = value; return this; } public String getShipmentID() { return ShipmentID; } public SH_ApportionedCostsOnPOQuery setShipmentID(String value) { this.ShipmentID = value; return this; } public String getShipmentIDStartsWith() { return ShipmentIDStartsWith; } public SH_ApportionedCostsOnPOQuery setShipmentIDStartsWith(String value) { this.ShipmentIDStartsWith = value; return this; } public String getShipmentIDEndsWith() { return ShipmentIDEndsWith; } public SH_ApportionedCostsOnPOQuery setShipmentIDEndsWith(String value) { this.ShipmentIDEndsWith = value; return this; } public String getShipmentIDContains() { return ShipmentIDContains; } public SH_ApportionedCostsOnPOQuery setShipmentIDContains(String value) { this.ShipmentIDContains = value; return this; } public String getShipmentIDLike() { return ShipmentIDLike; } public SH_ApportionedCostsOnPOQuery setShipmentIDLike(String value) { this.ShipmentIDLike = value; return this; } public ArrayList getShipmentIDBetween() { return ShipmentIDBetween; } public SH_ApportionedCostsOnPOQuery setShipmentIDBetween(ArrayList value) { this.ShipmentIDBetween = value; return this; } public ArrayList getShipmentIDIn() { return ShipmentIDIn; } public SH_ApportionedCostsOnPOQuery setShipmentIDIn(ArrayList value) { this.ShipmentIDIn = value; return this; } public String getOrdersUsedID() { return OrdersUsedID; } public SH_ApportionedCostsOnPOQuery setOrdersUsedID(String value) { this.OrdersUsedID = value; return this; } public String getOrdersUsedIDStartsWith() { return OrdersUsedIDStartsWith; } public SH_ApportionedCostsOnPOQuery setOrdersUsedIDStartsWith(String value) { this.OrdersUsedIDStartsWith = value; return this; } public String getOrdersUsedIDEndsWith() { return OrdersUsedIDEndsWith; } public SH_ApportionedCostsOnPOQuery setOrdersUsedIDEndsWith(String value) { this.OrdersUsedIDEndsWith = value; return this; } public String getOrdersUsedIDContains() { return OrdersUsedIDContains; } public SH_ApportionedCostsOnPOQuery setOrdersUsedIDContains(String value) { this.OrdersUsedIDContains = value; return this; } public String getOrdersUsedIDLike() { return OrdersUsedIDLike; } public SH_ApportionedCostsOnPOQuery setOrdersUsedIDLike(String value) { this.OrdersUsedIDLike = value; return this; } public ArrayList getOrdersUsedIDBetween() { return OrdersUsedIDBetween; } public SH_ApportionedCostsOnPOQuery setOrdersUsedIDBetween(ArrayList value) { this.OrdersUsedIDBetween = value; return this; } public ArrayList getOrdersUsedIDIn() { return OrdersUsedIDIn; } public SH_ApportionedCostsOnPOQuery setOrdersUsedIDIn(ArrayList value) { this.OrdersUsedIDIn = value; return this; } public ArrayList getRowHash() { return RowHash; } public SH_ApportionedCostsOnPOQuery setRowHash(ArrayList value) { this.RowHash = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class SH_BookInDetailLinesQuery extends QueryDb implements IReturn> { public String RecID = null; public String RecIDStartsWith = null; public String RecIDEndsWith = null; public String RecIDContains = null; public String RecIDLike = null; public ArrayList RecIDBetween = null; public ArrayList RecIDIn = null; public String Parent_RecID = null; public String Parent_RecIDStartsWith = null; public String Parent_RecIDEndsWith = null; public String Parent_RecIDContains = null; public String Parent_RecIDLike = null; public ArrayList Parent_RecIDBetween = null; public ArrayList Parent_RecIDIn = null; public BigDecimal Quantity = null; public BigDecimal QuantityGreaterThanOrEqualTo = null; public BigDecimal QuantityGreaterThan = null; public BigDecimal QuantityLessThan = null; public BigDecimal QuantityLessThanOrEqualTo = null; public BigDecimal QuantityNotEqualTo = null; public ArrayList QuantityBetween = null; public ArrayList QuantityIn = null; public String SerialNo = null; public String SerialNoStartsWith = null; public String SerialNoEndsWith = null; public String SerialNoContains = null; public String SerialNoLike = null; public ArrayList SerialNoBetween = null; public ArrayList SerialNoIn = null; public Date ExpiryDate = null; public Date ExpiryDateGreaterThanOrEqualTo = null; public Date ExpiryDateGreaterThan = null; public Date ExpiryDateLessThan = null; public Date ExpiryDateLessThanOrEqualTo = null; public Date ExpiryDateNotEqualTo = null; public ArrayList ExpiryDateBetween = null; public ArrayList ExpiryDateIn = null; public String BinLocation = null; public String BinLocationStartsWith = null; public String BinLocationEndsWith = null; public String BinLocationContains = null; public String BinLocationLike = null; public ArrayList BinLocationBetween = null; public ArrayList BinLocationIn = null; public String IN_SOH_LinkID = null; public String IN_SOH_LinkIDStartsWith = null; public String IN_SOH_LinkIDEndsWith = null; public String IN_SOH_LinkIDContains = null; public String IN_SOH_LinkIDLike = null; public ArrayList IN_SOH_LinkIDBetween = null; public ArrayList IN_SOH_LinkIDIn = null; public BigDecimal Cost = null; public BigDecimal CostGreaterThanOrEqualTo = null; public BigDecimal CostGreaterThan = null; public BigDecimal CostLessThan = null; public BigDecimal CostLessThanOrEqualTo = null; public BigDecimal CostNotEqualTo = null; public ArrayList CostBetween = null; public ArrayList CostIn = null; public ArrayList RowHash = null; public BigDecimal SpecialPrice = null; public BigDecimal SpecialPriceGreaterThanOrEqualTo = null; public BigDecimal SpecialPriceGreaterThan = null; public BigDecimal SpecialPriceLessThan = null; public BigDecimal SpecialPriceLessThanOrEqualTo = null; public BigDecimal SpecialPriceNotEqualTo = null; public ArrayList SpecialPriceBetween = null; public ArrayList SpecialPriceIn = null; public Date LastSavedDateTime = null; public Date LastSavedDateTimeGreaterThanOrEqualTo = null; public Date LastSavedDateTimeGreaterThan = null; public Date LastSavedDateTimeLessThan = null; public Date LastSavedDateTimeLessThanOrEqualTo = null; public Date LastSavedDateTimeNotEqualTo = null; public ArrayList LastSavedDateTimeBetween = null; public ArrayList LastSavedDateTimeIn = null; public Integer ItemNo = null; public Integer ItemNoGreaterThanOrEqualTo = null; public Integer ItemNoGreaterThan = null; public Integer ItemNoLessThan = null; public Integer ItemNoLessThanOrEqualTo = null; public Integer ItemNoNotEqualTo = null; public ArrayList ItemNoBetween = null; public ArrayList ItemNoIn = null; public String getRecID() { return RecID; } public SH_BookInDetailLinesQuery setRecID(String value) { this.RecID = value; return this; } public String getRecIDStartsWith() { return RecIDStartsWith; } public SH_BookInDetailLinesQuery setRecIDStartsWith(String value) { this.RecIDStartsWith = value; return this; } public String getRecIDEndsWith() { return RecIDEndsWith; } public SH_BookInDetailLinesQuery setRecIDEndsWith(String value) { this.RecIDEndsWith = value; return this; } public String getRecIDContains() { return RecIDContains; } public SH_BookInDetailLinesQuery setRecIDContains(String value) { this.RecIDContains = value; return this; } public String getRecIDLike() { return RecIDLike; } public SH_BookInDetailLinesQuery setRecIDLike(String value) { this.RecIDLike = value; return this; } public ArrayList getRecIDBetween() { return RecIDBetween; } public SH_BookInDetailLinesQuery setRecIDBetween(ArrayList value) { this.RecIDBetween = value; return this; } public ArrayList getRecIDIn() { return RecIDIn; } public SH_BookInDetailLinesQuery setRecIDIn(ArrayList value) { this.RecIDIn = value; return this; } public String getParentRecID() { return Parent_RecID; } public SH_BookInDetailLinesQuery setParentRecID(String value) { this.Parent_RecID = value; return this; } public String getParentRecIDStartsWith() { return Parent_RecIDStartsWith; } public SH_BookInDetailLinesQuery setParentRecIDStartsWith(String value) { this.Parent_RecIDStartsWith = value; return this; } public String getParentRecIDEndsWith() { return Parent_RecIDEndsWith; } public SH_BookInDetailLinesQuery setParentRecIDEndsWith(String value) { this.Parent_RecIDEndsWith = value; return this; } public String getParentRecIDContains() { return Parent_RecIDContains; } public SH_BookInDetailLinesQuery setParentRecIDContains(String value) { this.Parent_RecIDContains = value; return this; } public String getParentRecIDLike() { return Parent_RecIDLike; } public SH_BookInDetailLinesQuery setParentRecIDLike(String value) { this.Parent_RecIDLike = value; return this; } public ArrayList getParentRecIDBetween() { return Parent_RecIDBetween; } public SH_BookInDetailLinesQuery setParentRecIDBetween(ArrayList value) { this.Parent_RecIDBetween = value; return this; } public ArrayList getParentRecIDIn() { return Parent_RecIDIn; } public SH_BookInDetailLinesQuery setParentRecIDIn(ArrayList value) { this.Parent_RecIDIn = value; return this; } public BigDecimal getQuantity() { return Quantity; } public SH_BookInDetailLinesQuery setQuantity(BigDecimal value) { this.Quantity = value; return this; } public BigDecimal getQuantityGreaterThanOrEqualTo() { return QuantityGreaterThanOrEqualTo; } public SH_BookInDetailLinesQuery setQuantityGreaterThanOrEqualTo(BigDecimal value) { this.QuantityGreaterThanOrEqualTo = value; return this; } public BigDecimal getQuantityGreaterThan() { return QuantityGreaterThan; } public SH_BookInDetailLinesQuery setQuantityGreaterThan(BigDecimal value) { this.QuantityGreaterThan = value; return this; } public BigDecimal getQuantityLessThan() { return QuantityLessThan; } public SH_BookInDetailLinesQuery setQuantityLessThan(BigDecimal value) { this.QuantityLessThan = value; return this; } public BigDecimal getQuantityLessThanOrEqualTo() { return QuantityLessThanOrEqualTo; } public SH_BookInDetailLinesQuery setQuantityLessThanOrEqualTo(BigDecimal value) { this.QuantityLessThanOrEqualTo = value; return this; } public BigDecimal getQuantityNotEqualTo() { return QuantityNotEqualTo; } public SH_BookInDetailLinesQuery setQuantityNotEqualTo(BigDecimal value) { this.QuantityNotEqualTo = value; return this; } public ArrayList getQuantityBetween() { return QuantityBetween; } public SH_BookInDetailLinesQuery setQuantityBetween(ArrayList value) { this.QuantityBetween = value; return this; } public ArrayList getQuantityIn() { return QuantityIn; } public SH_BookInDetailLinesQuery setQuantityIn(ArrayList value) { this.QuantityIn = value; return this; } public String getSerialNo() { return SerialNo; } public SH_BookInDetailLinesQuery setSerialNo(String value) { this.SerialNo = value; return this; } public String getSerialNoStartsWith() { return SerialNoStartsWith; } public SH_BookInDetailLinesQuery setSerialNoStartsWith(String value) { this.SerialNoStartsWith = value; return this; } public String getSerialNoEndsWith() { return SerialNoEndsWith; } public SH_BookInDetailLinesQuery setSerialNoEndsWith(String value) { this.SerialNoEndsWith = value; return this; } public String getSerialNoContains() { return SerialNoContains; } public SH_BookInDetailLinesQuery setSerialNoContains(String value) { this.SerialNoContains = value; return this; } public String getSerialNoLike() { return SerialNoLike; } public SH_BookInDetailLinesQuery setSerialNoLike(String value) { this.SerialNoLike = value; return this; } public ArrayList getSerialNoBetween() { return SerialNoBetween; } public SH_BookInDetailLinesQuery setSerialNoBetween(ArrayList value) { this.SerialNoBetween = value; return this; } public ArrayList getSerialNoIn() { return SerialNoIn; } public SH_BookInDetailLinesQuery setSerialNoIn(ArrayList value) { this.SerialNoIn = value; return this; } public Date getExpiryDate() { return ExpiryDate; } public SH_BookInDetailLinesQuery setExpiryDate(Date value) { this.ExpiryDate = value; return this; } public Date getExpiryDateGreaterThanOrEqualTo() { return ExpiryDateGreaterThanOrEqualTo; } public SH_BookInDetailLinesQuery setExpiryDateGreaterThanOrEqualTo(Date value) { this.ExpiryDateGreaterThanOrEqualTo = value; return this; } public Date getExpiryDateGreaterThan() { return ExpiryDateGreaterThan; } public SH_BookInDetailLinesQuery setExpiryDateGreaterThan(Date value) { this.ExpiryDateGreaterThan = value; return this; } public Date getExpiryDateLessThan() { return ExpiryDateLessThan; } public SH_BookInDetailLinesQuery setExpiryDateLessThan(Date value) { this.ExpiryDateLessThan = value; return this; } public Date getExpiryDateLessThanOrEqualTo() { return ExpiryDateLessThanOrEqualTo; } public SH_BookInDetailLinesQuery setExpiryDateLessThanOrEqualTo(Date value) { this.ExpiryDateLessThanOrEqualTo = value; return this; } public Date getExpiryDateNotEqualTo() { return ExpiryDateNotEqualTo; } public SH_BookInDetailLinesQuery setExpiryDateNotEqualTo(Date value) { this.ExpiryDateNotEqualTo = value; return this; } public ArrayList getExpiryDateBetween() { return ExpiryDateBetween; } public SH_BookInDetailLinesQuery setExpiryDateBetween(ArrayList value) { this.ExpiryDateBetween = value; return this; } public ArrayList getExpiryDateIn() { return ExpiryDateIn; } public SH_BookInDetailLinesQuery setExpiryDateIn(ArrayList value) { this.ExpiryDateIn = value; return this; } public String getBinLocation() { return BinLocation; } public SH_BookInDetailLinesQuery setBinLocation(String value) { this.BinLocation = value; return this; } public String getBinLocationStartsWith() { return BinLocationStartsWith; } public SH_BookInDetailLinesQuery setBinLocationStartsWith(String value) { this.BinLocationStartsWith = value; return this; } public String getBinLocationEndsWith() { return BinLocationEndsWith; } public SH_BookInDetailLinesQuery setBinLocationEndsWith(String value) { this.BinLocationEndsWith = value; return this; } public String getBinLocationContains() { return BinLocationContains; } public SH_BookInDetailLinesQuery setBinLocationContains(String value) { this.BinLocationContains = value; return this; } public String getBinLocationLike() { return BinLocationLike; } public SH_BookInDetailLinesQuery setBinLocationLike(String value) { this.BinLocationLike = value; return this; } public ArrayList getBinLocationBetween() { return BinLocationBetween; } public SH_BookInDetailLinesQuery setBinLocationBetween(ArrayList value) { this.BinLocationBetween = value; return this; } public ArrayList getBinLocationIn() { return BinLocationIn; } public SH_BookInDetailLinesQuery setBinLocationIn(ArrayList value) { this.BinLocationIn = value; return this; } public String getInSohLinkID() { return IN_SOH_LinkID; } public SH_BookInDetailLinesQuery setInSohLinkID(String value) { this.IN_SOH_LinkID = value; return this; } public String getInSohLinkIDStartsWith() { return IN_SOH_LinkIDStartsWith; } public SH_BookInDetailLinesQuery setInSohLinkIDStartsWith(String value) { this.IN_SOH_LinkIDStartsWith = value; return this; } public String getInSohLinkIDEndsWith() { return IN_SOH_LinkIDEndsWith; } public SH_BookInDetailLinesQuery setInSohLinkIDEndsWith(String value) { this.IN_SOH_LinkIDEndsWith = value; return this; } public String getInSohLinkIDContains() { return IN_SOH_LinkIDContains; } public SH_BookInDetailLinesQuery setInSohLinkIDContains(String value) { this.IN_SOH_LinkIDContains = value; return this; } public String getInSohLinkIDLike() { return IN_SOH_LinkIDLike; } public SH_BookInDetailLinesQuery setInSohLinkIDLike(String value) { this.IN_SOH_LinkIDLike = value; return this; } public ArrayList getInSohLinkIDBetween() { return IN_SOH_LinkIDBetween; } public SH_BookInDetailLinesQuery setInSohLinkIDBetween(ArrayList value) { this.IN_SOH_LinkIDBetween = value; return this; } public ArrayList getInSohLinkIDIn() { return IN_SOH_LinkIDIn; } public SH_BookInDetailLinesQuery setInSohLinkIDIn(ArrayList value) { this.IN_SOH_LinkIDIn = value; return this; } public BigDecimal getCost() { return Cost; } public SH_BookInDetailLinesQuery setCost(BigDecimal value) { this.Cost = value; return this; } public BigDecimal getCostGreaterThanOrEqualTo() { return CostGreaterThanOrEqualTo; } public SH_BookInDetailLinesQuery setCostGreaterThanOrEqualTo(BigDecimal value) { this.CostGreaterThanOrEqualTo = value; return this; } public BigDecimal getCostGreaterThan() { return CostGreaterThan; } public SH_BookInDetailLinesQuery setCostGreaterThan(BigDecimal value) { this.CostGreaterThan = value; return this; } public BigDecimal getCostLessThan() { return CostLessThan; } public SH_BookInDetailLinesQuery setCostLessThan(BigDecimal value) { this.CostLessThan = value; return this; } public BigDecimal getCostLessThanOrEqualTo() { return CostLessThanOrEqualTo; } public SH_BookInDetailLinesQuery setCostLessThanOrEqualTo(BigDecimal value) { this.CostLessThanOrEqualTo = value; return this; } public BigDecimal getCostNotEqualTo() { return CostNotEqualTo; } public SH_BookInDetailLinesQuery setCostNotEqualTo(BigDecimal value) { this.CostNotEqualTo = value; return this; } public ArrayList getCostBetween() { return CostBetween; } public SH_BookInDetailLinesQuery setCostBetween(ArrayList value) { this.CostBetween = value; return this; } public ArrayList getCostIn() { return CostIn; } public SH_BookInDetailLinesQuery setCostIn(ArrayList value) { this.CostIn = value; return this; } public ArrayList getRowHash() { return RowHash; } public SH_BookInDetailLinesQuery setRowHash(ArrayList value) { this.RowHash = value; return this; } public BigDecimal getSpecialPrice() { return SpecialPrice; } public SH_BookInDetailLinesQuery setSpecialPrice(BigDecimal value) { this.SpecialPrice = value; return this; } public BigDecimal getSpecialPriceGreaterThanOrEqualTo() { return SpecialPriceGreaterThanOrEqualTo; } public SH_BookInDetailLinesQuery setSpecialPriceGreaterThanOrEqualTo(BigDecimal value) { this.SpecialPriceGreaterThanOrEqualTo = value; return this; } public BigDecimal getSpecialPriceGreaterThan() { return SpecialPriceGreaterThan; } public SH_BookInDetailLinesQuery setSpecialPriceGreaterThan(BigDecimal value) { this.SpecialPriceGreaterThan = value; return this; } public BigDecimal getSpecialPriceLessThan() { return SpecialPriceLessThan; } public SH_BookInDetailLinesQuery setSpecialPriceLessThan(BigDecimal value) { this.SpecialPriceLessThan = value; return this; } public BigDecimal getSpecialPriceLessThanOrEqualTo() { return SpecialPriceLessThanOrEqualTo; } public SH_BookInDetailLinesQuery setSpecialPriceLessThanOrEqualTo(BigDecimal value) { this.SpecialPriceLessThanOrEqualTo = value; return this; } public BigDecimal getSpecialPriceNotEqualTo() { return SpecialPriceNotEqualTo; } public SH_BookInDetailLinesQuery setSpecialPriceNotEqualTo(BigDecimal value) { this.SpecialPriceNotEqualTo = value; return this; } public ArrayList getSpecialPriceBetween() { return SpecialPriceBetween; } public SH_BookInDetailLinesQuery setSpecialPriceBetween(ArrayList value) { this.SpecialPriceBetween = value; return this; } public ArrayList getSpecialPriceIn() { return SpecialPriceIn; } public SH_BookInDetailLinesQuery setSpecialPriceIn(ArrayList value) { this.SpecialPriceIn = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public SH_BookInDetailLinesQuery setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getLastSavedDateTimeGreaterThanOrEqualTo() { return LastSavedDateTimeGreaterThanOrEqualTo; } public SH_BookInDetailLinesQuery setLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.LastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeGreaterThan() { return LastSavedDateTimeGreaterThan; } public SH_BookInDetailLinesQuery setLastSavedDateTimeGreaterThan(Date value) { this.LastSavedDateTimeGreaterThan = value; return this; } public Date getLastSavedDateTimeLessThan() { return LastSavedDateTimeLessThan; } public SH_BookInDetailLinesQuery setLastSavedDateTimeLessThan(Date value) { this.LastSavedDateTimeLessThan = value; return this; } public Date getLastSavedDateTimeLessThanOrEqualTo() { return LastSavedDateTimeLessThanOrEqualTo; } public SH_BookInDetailLinesQuery setLastSavedDateTimeLessThanOrEqualTo(Date value) { this.LastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeNotEqualTo() { return LastSavedDateTimeNotEqualTo; } public SH_BookInDetailLinesQuery setLastSavedDateTimeNotEqualTo(Date value) { this.LastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getLastSavedDateTimeBetween() { return LastSavedDateTimeBetween; } public SH_BookInDetailLinesQuery setLastSavedDateTimeBetween(ArrayList value) { this.LastSavedDateTimeBetween = value; return this; } public ArrayList getLastSavedDateTimeIn() { return LastSavedDateTimeIn; } public SH_BookInDetailLinesQuery setLastSavedDateTimeIn(ArrayList value) { this.LastSavedDateTimeIn = value; return this; } public Integer getItemNo() { return ItemNo; } public SH_BookInDetailLinesQuery setItemNo(Integer value) { this.ItemNo = value; return this; } public Integer getItemNoGreaterThanOrEqualTo() { return ItemNoGreaterThanOrEqualTo; } public SH_BookInDetailLinesQuery setItemNoGreaterThanOrEqualTo(Integer value) { this.ItemNoGreaterThanOrEqualTo = value; return this; } public Integer getItemNoGreaterThan() { return ItemNoGreaterThan; } public SH_BookInDetailLinesQuery setItemNoGreaterThan(Integer value) { this.ItemNoGreaterThan = value; return this; } public Integer getItemNoLessThan() { return ItemNoLessThan; } public SH_BookInDetailLinesQuery setItemNoLessThan(Integer value) { this.ItemNoLessThan = value; return this; } public Integer getItemNoLessThanOrEqualTo() { return ItemNoLessThanOrEqualTo; } public SH_BookInDetailLinesQuery setItemNoLessThanOrEqualTo(Integer value) { this.ItemNoLessThanOrEqualTo = value; return this; } public Integer getItemNoNotEqualTo() { return ItemNoNotEqualTo; } public SH_BookInDetailLinesQuery setItemNoNotEqualTo(Integer value) { this.ItemNoNotEqualTo = value; return this; } public ArrayList getItemNoBetween() { return ItemNoBetween; } public SH_BookInDetailLinesQuery setItemNoBetween(ArrayList value) { this.ItemNoBetween = value; return this; } public ArrayList getItemNoIn() { return ItemNoIn; } public SH_BookInDetailLinesQuery setItemNoIn(ArrayList value) { this.ItemNoIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class SH_BookInDetailLinesCostAuditQuery extends QueryDb implements IReturn> { public String RecID = null; public String RecIDStartsWith = null; public String RecIDEndsWith = null; public String RecIDContains = null; public String RecIDLike = null; public ArrayList RecIDBetween = null; public ArrayList RecIDIn = null; public String BookInDetailLineID = null; public String BookInDetailLineIDStartsWith = null; public String BookInDetailLineIDEndsWith = null; public String BookInDetailLineIDContains = null; public String BookInDetailLineIDLike = null; public ArrayList BookInDetailLineIDBetween = null; public ArrayList BookInDetailLineIDIn = null; public Date DateCostChanged = null; public Date DateCostChangedGreaterThanOrEqualTo = null; public Date DateCostChangedGreaterThan = null; public Date DateCostChangedLessThan = null; public Date DateCostChangedLessThanOrEqualTo = null; public Date DateCostChangedNotEqualTo = null; public ArrayList DateCostChangedBetween = null; public ArrayList DateCostChangedIn = null; public BigDecimal CostBefore = null; public BigDecimal CostBeforeGreaterThanOrEqualTo = null; public BigDecimal CostBeforeGreaterThan = null; public BigDecimal CostBeforeLessThan = null; public BigDecimal CostBeforeLessThanOrEqualTo = null; public BigDecimal CostBeforeNotEqualTo = null; public ArrayList CostBeforeBetween = null; public ArrayList CostBeforeIn = null; public BigDecimal CostAfter = null; public BigDecimal CostAfterGreaterThanOrEqualTo = null; public BigDecimal CostAfterGreaterThan = null; public BigDecimal CostAfterLessThan = null; public BigDecimal CostAfterLessThanOrEqualTo = null; public BigDecimal CostAfterNotEqualTo = null; public ArrayList CostAfterBetween = null; public ArrayList CostAfterIn = null; public String getRecID() { return RecID; } public SH_BookInDetailLinesCostAuditQuery setRecID(String value) { this.RecID = value; return this; } public String getRecIDStartsWith() { return RecIDStartsWith; } public SH_BookInDetailLinesCostAuditQuery setRecIDStartsWith(String value) { this.RecIDStartsWith = value; return this; } public String getRecIDEndsWith() { return RecIDEndsWith; } public SH_BookInDetailLinesCostAuditQuery setRecIDEndsWith(String value) { this.RecIDEndsWith = value; return this; } public String getRecIDContains() { return RecIDContains; } public SH_BookInDetailLinesCostAuditQuery setRecIDContains(String value) { this.RecIDContains = value; return this; } public String getRecIDLike() { return RecIDLike; } public SH_BookInDetailLinesCostAuditQuery setRecIDLike(String value) { this.RecIDLike = value; return this; } public ArrayList getRecIDBetween() { return RecIDBetween; } public SH_BookInDetailLinesCostAuditQuery setRecIDBetween(ArrayList value) { this.RecIDBetween = value; return this; } public ArrayList getRecIDIn() { return RecIDIn; } public SH_BookInDetailLinesCostAuditQuery setRecIDIn(ArrayList value) { this.RecIDIn = value; return this; } public String getBookInDetailLineID() { return BookInDetailLineID; } public SH_BookInDetailLinesCostAuditQuery setBookInDetailLineID(String value) { this.BookInDetailLineID = value; return this; } public String getBookInDetailLineIDStartsWith() { return BookInDetailLineIDStartsWith; } public SH_BookInDetailLinesCostAuditQuery setBookInDetailLineIDStartsWith(String value) { this.BookInDetailLineIDStartsWith = value; return this; } public String getBookInDetailLineIDEndsWith() { return BookInDetailLineIDEndsWith; } public SH_BookInDetailLinesCostAuditQuery setBookInDetailLineIDEndsWith(String value) { this.BookInDetailLineIDEndsWith = value; return this; } public String getBookInDetailLineIDContains() { return BookInDetailLineIDContains; } public SH_BookInDetailLinesCostAuditQuery setBookInDetailLineIDContains(String value) { this.BookInDetailLineIDContains = value; return this; } public String getBookInDetailLineIDLike() { return BookInDetailLineIDLike; } public SH_BookInDetailLinesCostAuditQuery setBookInDetailLineIDLike(String value) { this.BookInDetailLineIDLike = value; return this; } public ArrayList getBookInDetailLineIDBetween() { return BookInDetailLineIDBetween; } public SH_BookInDetailLinesCostAuditQuery setBookInDetailLineIDBetween(ArrayList value) { this.BookInDetailLineIDBetween = value; return this; } public ArrayList getBookInDetailLineIDIn() { return BookInDetailLineIDIn; } public SH_BookInDetailLinesCostAuditQuery setBookInDetailLineIDIn(ArrayList value) { this.BookInDetailLineIDIn = value; return this; } public Date getDateCostChanged() { return DateCostChanged; } public SH_BookInDetailLinesCostAuditQuery setDateCostChanged(Date value) { this.DateCostChanged = value; return this; } public Date getDateCostChangedGreaterThanOrEqualTo() { return DateCostChangedGreaterThanOrEqualTo; } public SH_BookInDetailLinesCostAuditQuery setDateCostChangedGreaterThanOrEqualTo(Date value) { this.DateCostChangedGreaterThanOrEqualTo = value; return this; } public Date getDateCostChangedGreaterThan() { return DateCostChangedGreaterThan; } public SH_BookInDetailLinesCostAuditQuery setDateCostChangedGreaterThan(Date value) { this.DateCostChangedGreaterThan = value; return this; } public Date getDateCostChangedLessThan() { return DateCostChangedLessThan; } public SH_BookInDetailLinesCostAuditQuery setDateCostChangedLessThan(Date value) { this.DateCostChangedLessThan = value; return this; } public Date getDateCostChangedLessThanOrEqualTo() { return DateCostChangedLessThanOrEqualTo; } public SH_BookInDetailLinesCostAuditQuery setDateCostChangedLessThanOrEqualTo(Date value) { this.DateCostChangedLessThanOrEqualTo = value; return this; } public Date getDateCostChangedNotEqualTo() { return DateCostChangedNotEqualTo; } public SH_BookInDetailLinesCostAuditQuery setDateCostChangedNotEqualTo(Date value) { this.DateCostChangedNotEqualTo = value; return this; } public ArrayList getDateCostChangedBetween() { return DateCostChangedBetween; } public SH_BookInDetailLinesCostAuditQuery setDateCostChangedBetween(ArrayList value) { this.DateCostChangedBetween = value; return this; } public ArrayList getDateCostChangedIn() { return DateCostChangedIn; } public SH_BookInDetailLinesCostAuditQuery setDateCostChangedIn(ArrayList value) { this.DateCostChangedIn = value; return this; } public BigDecimal getCostBefore() { return CostBefore; } public SH_BookInDetailLinesCostAuditQuery setCostBefore(BigDecimal value) { this.CostBefore = value; return this; } public BigDecimal getCostBeforeGreaterThanOrEqualTo() { return CostBeforeGreaterThanOrEqualTo; } public SH_BookInDetailLinesCostAuditQuery setCostBeforeGreaterThanOrEqualTo(BigDecimal value) { this.CostBeforeGreaterThanOrEqualTo = value; return this; } public BigDecimal getCostBeforeGreaterThan() { return CostBeforeGreaterThan; } public SH_BookInDetailLinesCostAuditQuery setCostBeforeGreaterThan(BigDecimal value) { this.CostBeforeGreaterThan = value; return this; } public BigDecimal getCostBeforeLessThan() { return CostBeforeLessThan; } public SH_BookInDetailLinesCostAuditQuery setCostBeforeLessThan(BigDecimal value) { this.CostBeforeLessThan = value; return this; } public BigDecimal getCostBeforeLessThanOrEqualTo() { return CostBeforeLessThanOrEqualTo; } public SH_BookInDetailLinesCostAuditQuery setCostBeforeLessThanOrEqualTo(BigDecimal value) { this.CostBeforeLessThanOrEqualTo = value; return this; } public BigDecimal getCostBeforeNotEqualTo() { return CostBeforeNotEqualTo; } public SH_BookInDetailLinesCostAuditQuery setCostBeforeNotEqualTo(BigDecimal value) { this.CostBeforeNotEqualTo = value; return this; } public ArrayList getCostBeforeBetween() { return CostBeforeBetween; } public SH_BookInDetailLinesCostAuditQuery setCostBeforeBetween(ArrayList value) { this.CostBeforeBetween = value; return this; } public ArrayList getCostBeforeIn() { return CostBeforeIn; } public SH_BookInDetailLinesCostAuditQuery setCostBeforeIn(ArrayList value) { this.CostBeforeIn = value; return this; } public BigDecimal getCostAfter() { return CostAfter; } public SH_BookInDetailLinesCostAuditQuery setCostAfter(BigDecimal value) { this.CostAfter = value; return this; } public BigDecimal getCostAfterGreaterThanOrEqualTo() { return CostAfterGreaterThanOrEqualTo; } public SH_BookInDetailLinesCostAuditQuery setCostAfterGreaterThanOrEqualTo(BigDecimal value) { this.CostAfterGreaterThanOrEqualTo = value; return this; } public BigDecimal getCostAfterGreaterThan() { return CostAfterGreaterThan; } public SH_BookInDetailLinesCostAuditQuery setCostAfterGreaterThan(BigDecimal value) { this.CostAfterGreaterThan = value; return this; } public BigDecimal getCostAfterLessThan() { return CostAfterLessThan; } public SH_BookInDetailLinesCostAuditQuery setCostAfterLessThan(BigDecimal value) { this.CostAfterLessThan = value; return this; } public BigDecimal getCostAfterLessThanOrEqualTo() { return CostAfterLessThanOrEqualTo; } public SH_BookInDetailLinesCostAuditQuery setCostAfterLessThanOrEqualTo(BigDecimal value) { this.CostAfterLessThanOrEqualTo = value; return this; } public BigDecimal getCostAfterNotEqualTo() { return CostAfterNotEqualTo; } public SH_BookInDetailLinesCostAuditQuery setCostAfterNotEqualTo(BigDecimal value) { this.CostAfterNotEqualTo = value; return this; } public ArrayList getCostAfterBetween() { return CostAfterBetween; } public SH_BookInDetailLinesCostAuditQuery setCostAfterBetween(ArrayList value) { this.CostAfterBetween = value; return this; } public ArrayList getCostAfterIn() { return CostAfterIn; } public SH_BookInDetailLinesCostAuditQuery setCostAfterIn(ArrayList value) { this.CostAfterIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class SH_BookInLineCustomFieldsQuery extends QueryDb implements IReturn> { public String RecID = null; public String RecIDStartsWith = null; public String RecIDEndsWith = null; public String RecIDContains = null; public String RecIDLike = null; public ArrayList RecIDBetween = null; public ArrayList RecIDIn = null; public String SettingName = null; public String SettingNameStartsWith = null; public String SettingNameEndsWith = null; public String SettingNameContains = null; public String SettingNameLike = null; public ArrayList SettingNameBetween = null; public ArrayList SettingNameIn = null; public String SettingDescription = null; public String SettingDescriptionStartsWith = null; public String SettingDescriptionEndsWith = null; public String SettingDescriptionContains = null; public String SettingDescriptionLike = null; public ArrayList SettingDescriptionBetween = null; public ArrayList SettingDescriptionIn = null; public Integer CellType = null; public Integer CellTypeGreaterThanOrEqualTo = null; public Integer CellTypeGreaterThan = null; public Integer CellTypeLessThan = null; public Integer CellTypeLessThanOrEqualTo = null; public Integer CellTypeNotEqualTo = null; public ArrayList CellTypeBetween = null; public ArrayList CellTypeIn = null; public String FieldParameter = null; public String FieldParameterStartsWith = null; public String FieldParameterEndsWith = null; public String FieldParameterContains = null; public String FieldParameterLike = null; public ArrayList FieldParameterBetween = null; public ArrayList FieldParameterIn = null; public UUID SY_Plugin_RecID = null; public ArrayList SY_Plugin_RecIDIn = null; public Date LastSavedDateTime = null; public Date LastSavedDateTimeGreaterThanOrEqualTo = null; public Date LastSavedDateTimeGreaterThan = null; public Date LastSavedDateTimeLessThan = null; public Date LastSavedDateTimeLessThanOrEqualTo = null; public Date LastSavedDateTimeNotEqualTo = null; public ArrayList LastSavedDateTimeBetween = null; public ArrayList LastSavedDateTimeIn = null; public Integer DisplayOrder = null; public Integer DisplayOrderGreaterThanOrEqualTo = null; public Integer DisplayOrderGreaterThan = null; public Integer DisplayOrderLessThan = null; public Integer DisplayOrderLessThanOrEqualTo = null; public Integer DisplayOrderNotEqualTo = null; public ArrayList DisplayOrderBetween = null; public ArrayList DisplayOrderIn = null; public String getRecID() { return RecID; } public SH_BookInLineCustomFieldsQuery setRecID(String value) { this.RecID = value; return this; } public String getRecIDStartsWith() { return RecIDStartsWith; } public SH_BookInLineCustomFieldsQuery setRecIDStartsWith(String value) { this.RecIDStartsWith = value; return this; } public String getRecIDEndsWith() { return RecIDEndsWith; } public SH_BookInLineCustomFieldsQuery setRecIDEndsWith(String value) { this.RecIDEndsWith = value; return this; } public String getRecIDContains() { return RecIDContains; } public SH_BookInLineCustomFieldsQuery setRecIDContains(String value) { this.RecIDContains = value; return this; } public String getRecIDLike() { return RecIDLike; } public SH_BookInLineCustomFieldsQuery setRecIDLike(String value) { this.RecIDLike = value; return this; } public ArrayList getRecIDBetween() { return RecIDBetween; } public SH_BookInLineCustomFieldsQuery setRecIDBetween(ArrayList value) { this.RecIDBetween = value; return this; } public ArrayList getRecIDIn() { return RecIDIn; } public SH_BookInLineCustomFieldsQuery setRecIDIn(ArrayList value) { this.RecIDIn = value; return this; } public String getSettingName() { return SettingName; } public SH_BookInLineCustomFieldsQuery setSettingName(String value) { this.SettingName = value; return this; } public String getSettingNameStartsWith() { return SettingNameStartsWith; } public SH_BookInLineCustomFieldsQuery setSettingNameStartsWith(String value) { this.SettingNameStartsWith = value; return this; } public String getSettingNameEndsWith() { return SettingNameEndsWith; } public SH_BookInLineCustomFieldsQuery setSettingNameEndsWith(String value) { this.SettingNameEndsWith = value; return this; } public String getSettingNameContains() { return SettingNameContains; } public SH_BookInLineCustomFieldsQuery setSettingNameContains(String value) { this.SettingNameContains = value; return this; } public String getSettingNameLike() { return SettingNameLike; } public SH_BookInLineCustomFieldsQuery setSettingNameLike(String value) { this.SettingNameLike = value; return this; } public ArrayList getSettingNameBetween() { return SettingNameBetween; } public SH_BookInLineCustomFieldsQuery setSettingNameBetween(ArrayList value) { this.SettingNameBetween = value; return this; } public ArrayList getSettingNameIn() { return SettingNameIn; } public SH_BookInLineCustomFieldsQuery setSettingNameIn(ArrayList value) { this.SettingNameIn = value; return this; } public String getSettingDescription() { return SettingDescription; } public SH_BookInLineCustomFieldsQuery setSettingDescription(String value) { this.SettingDescription = value; return this; } public String getSettingDescriptionStartsWith() { return SettingDescriptionStartsWith; } public SH_BookInLineCustomFieldsQuery setSettingDescriptionStartsWith(String value) { this.SettingDescriptionStartsWith = value; return this; } public String getSettingDescriptionEndsWith() { return SettingDescriptionEndsWith; } public SH_BookInLineCustomFieldsQuery setSettingDescriptionEndsWith(String value) { this.SettingDescriptionEndsWith = value; return this; } public String getSettingDescriptionContains() { return SettingDescriptionContains; } public SH_BookInLineCustomFieldsQuery setSettingDescriptionContains(String value) { this.SettingDescriptionContains = value; return this; } public String getSettingDescriptionLike() { return SettingDescriptionLike; } public SH_BookInLineCustomFieldsQuery setSettingDescriptionLike(String value) { this.SettingDescriptionLike = value; return this; } public ArrayList getSettingDescriptionBetween() { return SettingDescriptionBetween; } public SH_BookInLineCustomFieldsQuery setSettingDescriptionBetween(ArrayList value) { this.SettingDescriptionBetween = value; return this; } public ArrayList getSettingDescriptionIn() { return SettingDescriptionIn; } public SH_BookInLineCustomFieldsQuery setSettingDescriptionIn(ArrayList value) { this.SettingDescriptionIn = value; return this; } public Integer getCellType() { return CellType; } public SH_BookInLineCustomFieldsQuery setCellType(Integer value) { this.CellType = value; return this; } public Integer getCellTypeGreaterThanOrEqualTo() { return CellTypeGreaterThanOrEqualTo; } public SH_BookInLineCustomFieldsQuery setCellTypeGreaterThanOrEqualTo(Integer value) { this.CellTypeGreaterThanOrEqualTo = value; return this; } public Integer getCellTypeGreaterThan() { return CellTypeGreaterThan; } public SH_BookInLineCustomFieldsQuery setCellTypeGreaterThan(Integer value) { this.CellTypeGreaterThan = value; return this; } public Integer getCellTypeLessThan() { return CellTypeLessThan; } public SH_BookInLineCustomFieldsQuery setCellTypeLessThan(Integer value) { this.CellTypeLessThan = value; return this; } public Integer getCellTypeLessThanOrEqualTo() { return CellTypeLessThanOrEqualTo; } public SH_BookInLineCustomFieldsQuery setCellTypeLessThanOrEqualTo(Integer value) { this.CellTypeLessThanOrEqualTo = value; return this; } public Integer getCellTypeNotEqualTo() { return CellTypeNotEqualTo; } public SH_BookInLineCustomFieldsQuery setCellTypeNotEqualTo(Integer value) { this.CellTypeNotEqualTo = value; return this; } public ArrayList getCellTypeBetween() { return CellTypeBetween; } public SH_BookInLineCustomFieldsQuery setCellTypeBetween(ArrayList value) { this.CellTypeBetween = value; return this; } public ArrayList getCellTypeIn() { return CellTypeIn; } public SH_BookInLineCustomFieldsQuery setCellTypeIn(ArrayList value) { this.CellTypeIn = value; return this; } public String getFieldParameter() { return FieldParameter; } public SH_BookInLineCustomFieldsQuery setFieldParameter(String value) { this.FieldParameter = value; return this; } public String getFieldParameterStartsWith() { return FieldParameterStartsWith; } public SH_BookInLineCustomFieldsQuery setFieldParameterStartsWith(String value) { this.FieldParameterStartsWith = value; return this; } public String getFieldParameterEndsWith() { return FieldParameterEndsWith; } public SH_BookInLineCustomFieldsQuery setFieldParameterEndsWith(String value) { this.FieldParameterEndsWith = value; return this; } public String getFieldParameterContains() { return FieldParameterContains; } public SH_BookInLineCustomFieldsQuery setFieldParameterContains(String value) { this.FieldParameterContains = value; return this; } public String getFieldParameterLike() { return FieldParameterLike; } public SH_BookInLineCustomFieldsQuery setFieldParameterLike(String value) { this.FieldParameterLike = value; return this; } public ArrayList getFieldParameterBetween() { return FieldParameterBetween; } public SH_BookInLineCustomFieldsQuery setFieldParameterBetween(ArrayList value) { this.FieldParameterBetween = value; return this; } public ArrayList getFieldParameterIn() { return FieldParameterIn; } public SH_BookInLineCustomFieldsQuery setFieldParameterIn(ArrayList value) { this.FieldParameterIn = value; return this; } public UUID getSyPluginRecID() { return SY_Plugin_RecID; } public SH_BookInLineCustomFieldsQuery setSyPluginRecID(UUID value) { this.SY_Plugin_RecID = value; return this; } public ArrayList getSyPluginRecIDIn() { return SY_Plugin_RecIDIn; } public SH_BookInLineCustomFieldsQuery setSyPluginRecIDIn(ArrayList value) { this.SY_Plugin_RecIDIn = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public SH_BookInLineCustomFieldsQuery setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getLastSavedDateTimeGreaterThanOrEqualTo() { return LastSavedDateTimeGreaterThanOrEqualTo; } public SH_BookInLineCustomFieldsQuery setLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.LastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeGreaterThan() { return LastSavedDateTimeGreaterThan; } public SH_BookInLineCustomFieldsQuery setLastSavedDateTimeGreaterThan(Date value) { this.LastSavedDateTimeGreaterThan = value; return this; } public Date getLastSavedDateTimeLessThan() { return LastSavedDateTimeLessThan; } public SH_BookInLineCustomFieldsQuery setLastSavedDateTimeLessThan(Date value) { this.LastSavedDateTimeLessThan = value; return this; } public Date getLastSavedDateTimeLessThanOrEqualTo() { return LastSavedDateTimeLessThanOrEqualTo; } public SH_BookInLineCustomFieldsQuery setLastSavedDateTimeLessThanOrEqualTo(Date value) { this.LastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeNotEqualTo() { return LastSavedDateTimeNotEqualTo; } public SH_BookInLineCustomFieldsQuery setLastSavedDateTimeNotEqualTo(Date value) { this.LastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getLastSavedDateTimeBetween() { return LastSavedDateTimeBetween; } public SH_BookInLineCustomFieldsQuery setLastSavedDateTimeBetween(ArrayList value) { this.LastSavedDateTimeBetween = value; return this; } public ArrayList getLastSavedDateTimeIn() { return LastSavedDateTimeIn; } public SH_BookInLineCustomFieldsQuery setLastSavedDateTimeIn(ArrayList value) { this.LastSavedDateTimeIn = value; return this; } public Integer getDisplayOrder() { return DisplayOrder; } public SH_BookInLineCustomFieldsQuery setDisplayOrder(Integer value) { this.DisplayOrder = value; return this; } public Integer getDisplayOrderGreaterThanOrEqualTo() { return DisplayOrderGreaterThanOrEqualTo; } public SH_BookInLineCustomFieldsQuery setDisplayOrderGreaterThanOrEqualTo(Integer value) { this.DisplayOrderGreaterThanOrEqualTo = value; return this; } public Integer getDisplayOrderGreaterThan() { return DisplayOrderGreaterThan; } public SH_BookInLineCustomFieldsQuery setDisplayOrderGreaterThan(Integer value) { this.DisplayOrderGreaterThan = value; return this; } public Integer getDisplayOrderLessThan() { return DisplayOrderLessThan; } public SH_BookInLineCustomFieldsQuery setDisplayOrderLessThan(Integer value) { this.DisplayOrderLessThan = value; return this; } public Integer getDisplayOrderLessThanOrEqualTo() { return DisplayOrderLessThanOrEqualTo; } public SH_BookInLineCustomFieldsQuery setDisplayOrderLessThanOrEqualTo(Integer value) { this.DisplayOrderLessThanOrEqualTo = value; return this; } public Integer getDisplayOrderNotEqualTo() { return DisplayOrderNotEqualTo; } public SH_BookInLineCustomFieldsQuery setDisplayOrderNotEqualTo(Integer value) { this.DisplayOrderNotEqualTo = value; return this; } public ArrayList getDisplayOrderBetween() { return DisplayOrderBetween; } public SH_BookInLineCustomFieldsQuery setDisplayOrderBetween(ArrayList value) { this.DisplayOrderBetween = value; return this; } public ArrayList getDisplayOrderIn() { return DisplayOrderIn; } public SH_BookInLineCustomFieldsQuery setDisplayOrderIn(ArrayList value) { this.DisplayOrderIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class SH_BookInLineCustomValuesQuery extends QueryDb implements IReturn> { public String RecID = null; public String RecIDStartsWith = null; public String RecIDEndsWith = null; public String RecIDContains = null; public String RecIDLike = null; public ArrayList RecIDBetween = null; public ArrayList RecIDIn = null; public String SH_BookInLines_RecID = null; public String SH_BookInLines_RecIDStartsWith = null; public String SH_BookInLines_RecIDEndsWith = null; public String SH_BookInLines_RecIDContains = null; public String SH_BookInLines_RecIDLike = null; public ArrayList SH_BookInLines_RecIDBetween = null; public ArrayList SH_BookInLines_RecIDIn = null; public String SH_BookInLineCustomFields_RecID = null; public String SH_BookInLineCustomFields_RecIDStartsWith = null; public String SH_BookInLineCustomFields_RecIDEndsWith = null; public String SH_BookInLineCustomFields_RecIDContains = null; public String SH_BookInLineCustomFields_RecIDLike = null; public ArrayList SH_BookInLineCustomFields_RecIDBetween = null; public ArrayList SH_BookInLineCustomFields_RecIDIn = null; public String Contents = null; public String ContentsStartsWith = null; public String ContentsEndsWith = null; public String ContentsContains = null; public String ContentsLike = null; public ArrayList ContentsBetween = null; public ArrayList ContentsIn = null; public Date LastSavedDateTime = null; public Date LastSavedDateTimeGreaterThanOrEqualTo = null; public Date LastSavedDateTimeGreaterThan = null; public Date LastSavedDateTimeLessThan = null; public Date LastSavedDateTimeLessThanOrEqualTo = null; public Date LastSavedDateTimeNotEqualTo = null; public ArrayList LastSavedDateTimeBetween = null; public ArrayList LastSavedDateTimeIn = null; public String getRecID() { return RecID; } public SH_BookInLineCustomValuesQuery setRecID(String value) { this.RecID = value; return this; } public String getRecIDStartsWith() { return RecIDStartsWith; } public SH_BookInLineCustomValuesQuery setRecIDStartsWith(String value) { this.RecIDStartsWith = value; return this; } public String getRecIDEndsWith() { return RecIDEndsWith; } public SH_BookInLineCustomValuesQuery setRecIDEndsWith(String value) { this.RecIDEndsWith = value; return this; } public String getRecIDContains() { return RecIDContains; } public SH_BookInLineCustomValuesQuery setRecIDContains(String value) { this.RecIDContains = value; return this; } public String getRecIDLike() { return RecIDLike; } public SH_BookInLineCustomValuesQuery setRecIDLike(String value) { this.RecIDLike = value; return this; } public ArrayList getRecIDBetween() { return RecIDBetween; } public SH_BookInLineCustomValuesQuery setRecIDBetween(ArrayList value) { this.RecIDBetween = value; return this; } public ArrayList getRecIDIn() { return RecIDIn; } public SH_BookInLineCustomValuesQuery setRecIDIn(ArrayList value) { this.RecIDIn = value; return this; } public String getShBookInLinesRecID() { return SH_BookInLines_RecID; } public SH_BookInLineCustomValuesQuery setShBookInLinesRecID(String value) { this.SH_BookInLines_RecID = value; return this; } public String getShBookInLinesRecIDStartsWith() { return SH_BookInLines_RecIDStartsWith; } public SH_BookInLineCustomValuesQuery setShBookInLinesRecIDStartsWith(String value) { this.SH_BookInLines_RecIDStartsWith = value; return this; } public String getShBookInLinesRecIDEndsWith() { return SH_BookInLines_RecIDEndsWith; } public SH_BookInLineCustomValuesQuery setShBookInLinesRecIDEndsWith(String value) { this.SH_BookInLines_RecIDEndsWith = value; return this; } public String getShBookInLinesRecIDContains() { return SH_BookInLines_RecIDContains; } public SH_BookInLineCustomValuesQuery setShBookInLinesRecIDContains(String value) { this.SH_BookInLines_RecIDContains = value; return this; } public String getShBookInLinesRecIDLike() { return SH_BookInLines_RecIDLike; } public SH_BookInLineCustomValuesQuery setShBookInLinesRecIDLike(String value) { this.SH_BookInLines_RecIDLike = value; return this; } public ArrayList getShBookInLinesRecIDBetween() { return SH_BookInLines_RecIDBetween; } public SH_BookInLineCustomValuesQuery setShBookInLinesRecIDBetween(ArrayList value) { this.SH_BookInLines_RecIDBetween = value; return this; } public ArrayList getShBookInLinesRecIDIn() { return SH_BookInLines_RecIDIn; } public SH_BookInLineCustomValuesQuery setShBookInLinesRecIDIn(ArrayList value) { this.SH_BookInLines_RecIDIn = value; return this; } public String getShBookInLineCustomFieldsRecID() { return SH_BookInLineCustomFields_RecID; } public SH_BookInLineCustomValuesQuery setShBookInLineCustomFieldsRecID(String value) { this.SH_BookInLineCustomFields_RecID = value; return this; } public String getShBookInLineCustomFieldsRecIDStartsWith() { return SH_BookInLineCustomFields_RecIDStartsWith; } public SH_BookInLineCustomValuesQuery setShBookInLineCustomFieldsRecIDStartsWith(String value) { this.SH_BookInLineCustomFields_RecIDStartsWith = value; return this; } public String getShBookInLineCustomFieldsRecIDEndsWith() { return SH_BookInLineCustomFields_RecIDEndsWith; } public SH_BookInLineCustomValuesQuery setShBookInLineCustomFieldsRecIDEndsWith(String value) { this.SH_BookInLineCustomFields_RecIDEndsWith = value; return this; } public String getShBookInLineCustomFieldsRecIDContains() { return SH_BookInLineCustomFields_RecIDContains; } public SH_BookInLineCustomValuesQuery setShBookInLineCustomFieldsRecIDContains(String value) { this.SH_BookInLineCustomFields_RecIDContains = value; return this; } public String getShBookInLineCustomFieldsRecIDLike() { return SH_BookInLineCustomFields_RecIDLike; } public SH_BookInLineCustomValuesQuery setShBookInLineCustomFieldsRecIDLike(String value) { this.SH_BookInLineCustomFields_RecIDLike = value; return this; } public ArrayList getShBookInLineCustomFieldsRecIDBetween() { return SH_BookInLineCustomFields_RecIDBetween; } public SH_BookInLineCustomValuesQuery setShBookInLineCustomFieldsRecIDBetween(ArrayList value) { this.SH_BookInLineCustomFields_RecIDBetween = value; return this; } public ArrayList getShBookInLineCustomFieldsRecIDIn() { return SH_BookInLineCustomFields_RecIDIn; } public SH_BookInLineCustomValuesQuery setShBookInLineCustomFieldsRecIDIn(ArrayList value) { this.SH_BookInLineCustomFields_RecIDIn = value; return this; } public String getContents() { return Contents; } public SH_BookInLineCustomValuesQuery setContents(String value) { this.Contents = value; return this; } public String getContentsStartsWith() { return ContentsStartsWith; } public SH_BookInLineCustomValuesQuery setContentsStartsWith(String value) { this.ContentsStartsWith = value; return this; } public String getContentsEndsWith() { return ContentsEndsWith; } public SH_BookInLineCustomValuesQuery setContentsEndsWith(String value) { this.ContentsEndsWith = value; return this; } public String getContentsContains() { return ContentsContains; } public SH_BookInLineCustomValuesQuery setContentsContains(String value) { this.ContentsContains = value; return this; } public String getContentsLike() { return ContentsLike; } public SH_BookInLineCustomValuesQuery setContentsLike(String value) { this.ContentsLike = value; return this; } public ArrayList getContentsBetween() { return ContentsBetween; } public SH_BookInLineCustomValuesQuery setContentsBetween(ArrayList value) { this.ContentsBetween = value; return this; } public ArrayList getContentsIn() { return ContentsIn; } public SH_BookInLineCustomValuesQuery setContentsIn(ArrayList value) { this.ContentsIn = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public SH_BookInLineCustomValuesQuery setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getLastSavedDateTimeGreaterThanOrEqualTo() { return LastSavedDateTimeGreaterThanOrEqualTo; } public SH_BookInLineCustomValuesQuery setLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.LastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeGreaterThan() { return LastSavedDateTimeGreaterThan; } public SH_BookInLineCustomValuesQuery setLastSavedDateTimeGreaterThan(Date value) { this.LastSavedDateTimeGreaterThan = value; return this; } public Date getLastSavedDateTimeLessThan() { return LastSavedDateTimeLessThan; } public SH_BookInLineCustomValuesQuery setLastSavedDateTimeLessThan(Date value) { this.LastSavedDateTimeLessThan = value; return this; } public Date getLastSavedDateTimeLessThanOrEqualTo() { return LastSavedDateTimeLessThanOrEqualTo; } public SH_BookInLineCustomValuesQuery setLastSavedDateTimeLessThanOrEqualTo(Date value) { this.LastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeNotEqualTo() { return LastSavedDateTimeNotEqualTo; } public SH_BookInLineCustomValuesQuery setLastSavedDateTimeNotEqualTo(Date value) { this.LastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getLastSavedDateTimeBetween() { return LastSavedDateTimeBetween; } public SH_BookInLineCustomValuesQuery setLastSavedDateTimeBetween(ArrayList value) { this.LastSavedDateTimeBetween = value; return this; } public ArrayList getLastSavedDateTimeIn() { return LastSavedDateTimeIn; } public SH_BookInLineCustomValuesQuery setLastSavedDateTimeIn(ArrayList value) { this.LastSavedDateTimeIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class SH_BookInLinesQuery extends QueryDb implements IReturn> { public String BookInLineID = null; public String BookInLineIDStartsWith = null; public String BookInLineIDEndsWith = null; public String BookInLineIDContains = null; public String BookInLineIDLike = null; public ArrayList BookInLineIDBetween = null; public ArrayList BookInLineIDIn = null; public String BookInID = null; public String BookInIDStartsWith = null; public String BookInIDEndsWith = null; public String BookInIDContains = null; public String BookInIDLike = null; public ArrayList BookInIDBetween = null; public ArrayList BookInIDIn = null; public String PartNo = null; public String PartNoStartsWith = null; public String PartNoEndsWith = null; public String PartNoContains = null; public String PartNoLike = null; public ArrayList PartNoBetween = null; public ArrayList PartNoIn = null; public String InventoryID = null; public String InventoryIDStartsWith = null; public String InventoryIDEndsWith = null; public String InventoryIDContains = null; public String InventoryIDLike = null; public ArrayList InventoryIDBetween = null; public ArrayList InventoryIDIn = null; public BigDecimal Quantity = null; public BigDecimal QuantityGreaterThanOrEqualTo = null; public BigDecimal QuantityGreaterThan = null; public BigDecimal QuantityLessThan = null; public BigDecimal QuantityLessThanOrEqualTo = null; public BigDecimal QuantityNotEqualTo = null; public ArrayList QuantityBetween = null; public ArrayList QuantityIn = null; public String ShipmentLineID = null; public String ShipmentLineIDStartsWith = null; public String ShipmentLineIDEndsWith = null; public String ShipmentLineIDContains = null; public String ShipmentLineIDLike = null; public ArrayList ShipmentLineIDBetween = null; public ArrayList ShipmentLineIDIn = null; public Boolean UseSerialNo = null; public Boolean UseExpiry = null; public Short DecimalPlaces = null; public Short DecimalPlacesGreaterThanOrEqualTo = null; public Short DecimalPlacesGreaterThan = null; public Short DecimalPlacesLessThan = null; public Short DecimalPlacesLessThanOrEqualTo = null; public Short DecimalPlacesNotEqualTo = null; public ArrayList DecimalPlacesBetween = null; public ArrayList DecimalPlacesIn = null; public String POClassID = null; public String POClassIDStartsWith = null; public String POClassIDEndsWith = null; public String POClassIDContains = null; public String POClassIDLike = null; public ArrayList POClassIDBetween = null; public ArrayList POClassIDIn = null; public Short DeliveryDays = null; public Short DeliveryDaysGreaterThanOrEqualTo = null; public Short DeliveryDaysGreaterThan = null; public Short DeliveryDaysLessThan = null; public Short DeliveryDaysLessThanOrEqualTo = null; public Short DeliveryDaysNotEqualTo = null; public ArrayList DeliveryDaysBetween = null; public ArrayList DeliveryDaysIn = null; public String Description = null; public String DescriptionStartsWith = null; public String DescriptionEndsWith = null; public String DescriptionContains = null; public String DescriptionLike = null; public ArrayList DescriptionBetween = null; public ArrayList DescriptionIn = null; public BigDecimal OrderUnits = null; public BigDecimal OrderUnitsGreaterThanOrEqualTo = null; public BigDecimal OrderUnitsGreaterThan = null; public BigDecimal OrderUnitsLessThan = null; public BigDecimal OrderUnitsLessThanOrEqualTo = null; public BigDecimal OrderUnitsNotEqualTo = null; public ArrayList OrderUnitsBetween = null; public ArrayList OrderUnitsIn = null; public String ClassificationID = null; public String ClassificationIDStartsWith = null; public String ClassificationIDEndsWith = null; public String ClassificationIDContains = null; public String ClassificationIDLike = null; public ArrayList ClassificationIDBetween = null; public ArrayList ClassificationIDIn = null; public String SupplierPartNo = null; public String SupplierPartNoStartsWith = null; public String SupplierPartNoEndsWith = null; public String SupplierPartNoContains = null; public String SupplierPartNoLike = null; public ArrayList SupplierPartNoBetween = null; public ArrayList SupplierPartNoIn = null; public BigDecimal OrderedCost = null; public BigDecimal OrderedCostGreaterThanOrEqualTo = null; public BigDecimal OrderedCostGreaterThan = null; public BigDecimal OrderedCostLessThan = null; public BigDecimal OrderedCostLessThanOrEqualTo = null; public BigDecimal OrderedCostNotEqualTo = null; public ArrayList OrderedCostBetween = null; public ArrayList OrderedCostIn = null; public BigDecimal GSTRate = null; public BigDecimal GSTRateGreaterThanOrEqualTo = null; public BigDecimal GSTRateGreaterThan = null; public BigDecimal GSTRateLessThan = null; public BigDecimal GSTRateLessThanOrEqualTo = null; public BigDecimal GSTRateNotEqualTo = null; public ArrayList GSTRateBetween = null; public ArrayList GSTRateIn = null; public BigDecimal GSTAmount = null; public BigDecimal GSTAmountGreaterThanOrEqualTo = null; public BigDecimal GSTAmountGreaterThan = null; public BigDecimal GSTAmountLessThan = null; public BigDecimal GSTAmountLessThanOrEqualTo = null; public BigDecimal GSTAmountNotEqualTo = null; public ArrayList GSTAmountBetween = null; public ArrayList GSTAmountIn = null; public String GSTID = null; public String GSTIDStartsWith = null; public String GSTIDEndsWith = null; public String GSTIDContains = null; public String GSTIDLike = null; public ArrayList GSTIDBetween = null; public ArrayList GSTIDIn = null; public String JobCostID = null; public String JobCostIDStartsWith = null; public String JobCostIDEndsWith = null; public String JobCostIDContains = null; public String JobCostIDLike = null; public ArrayList JobCostIDBetween = null; public ArrayList JobCostIDIn = null; public String CreditorID = null; public String CreditorIDStartsWith = null; public String CreditorIDEndsWith = null; public String CreditorIDContains = null; public String CreditorIDLike = null; public ArrayList CreditorIDBetween = null; public ArrayList CreditorIDIn = null; public BigDecimal FXRate = null; public BigDecimal FXRateGreaterThanOrEqualTo = null; public BigDecimal FXRateGreaterThan = null; public BigDecimal FXRateLessThan = null; public BigDecimal FXRateLessThanOrEqualTo = null; public BigDecimal FXRateNotEqualTo = null; public ArrayList FXRateBetween = null; public ArrayList FXRateIn = null; public BigDecimal UnitCost = null; public BigDecimal UnitCostGreaterThanOrEqualTo = null; public BigDecimal UnitCostGreaterThan = null; public BigDecimal UnitCostLessThan = null; public BigDecimal UnitCostLessThanOrEqualTo = null; public BigDecimal UnitCostNotEqualTo = null; public ArrayList UnitCostBetween = null; public ArrayList UnitCostIn = null; public BigDecimal Weight = null; public BigDecimal WeightGreaterThanOrEqualTo = null; public BigDecimal WeightGreaterThan = null; public BigDecimal WeightLessThan = null; public BigDecimal WeightLessThanOrEqualTo = null; public BigDecimal WeightNotEqualTo = null; public ArrayList WeightBetween = null; public ArrayList WeightIn = null; public BigDecimal Volume = null; public BigDecimal VolumeGreaterThanOrEqualTo = null; public BigDecimal VolumeGreaterThan = null; public BigDecimal VolumeLessThan = null; public BigDecimal VolumeLessThanOrEqualTo = null; public BigDecimal VolumeNotEqualTo = null; public ArrayList VolumeBetween = null; public ArrayList VolumeIn = null; public String CurrencyID = null; public String CurrencyIDStartsWith = null; public String CurrencyIDEndsWith = null; public String CurrencyIDContains = null; public String CurrencyIDLike = null; public ArrayList CurrencyIDBetween = null; public ArrayList CurrencyIDIn = null; public Boolean PhysicalItem = null; public BigDecimal FXOrderedCost = null; public BigDecimal FXOrderedCostGreaterThanOrEqualTo = null; public BigDecimal FXOrderedCostGreaterThan = null; public BigDecimal FXOrderedCostLessThan = null; public BigDecimal FXOrderedCostLessThanOrEqualTo = null; public BigDecimal FXOrderedCostNotEqualTo = null; public ArrayList FXOrderedCostBetween = null; public ArrayList FXOrderedCostIn = null; public ArrayList RowHash = null; public Integer ItemNo = null; public Integer ItemNoGreaterThanOrEqualTo = null; public Integer ItemNoGreaterThan = null; public Integer ItemNoLessThan = null; public Integer ItemNoLessThanOrEqualTo = null; public Integer ItemNoNotEqualTo = null; public ArrayList ItemNoBetween = null; public ArrayList ItemNoIn = null; public String getBookInLineID() { return BookInLineID; } public SH_BookInLinesQuery setBookInLineID(String value) { this.BookInLineID = value; return this; } public String getBookInLineIDStartsWith() { return BookInLineIDStartsWith; } public SH_BookInLinesQuery setBookInLineIDStartsWith(String value) { this.BookInLineIDStartsWith = value; return this; } public String getBookInLineIDEndsWith() { return BookInLineIDEndsWith; } public SH_BookInLinesQuery setBookInLineIDEndsWith(String value) { this.BookInLineIDEndsWith = value; return this; } public String getBookInLineIDContains() { return BookInLineIDContains; } public SH_BookInLinesQuery setBookInLineIDContains(String value) { this.BookInLineIDContains = value; return this; } public String getBookInLineIDLike() { return BookInLineIDLike; } public SH_BookInLinesQuery setBookInLineIDLike(String value) { this.BookInLineIDLike = value; return this; } public ArrayList getBookInLineIDBetween() { return BookInLineIDBetween; } public SH_BookInLinesQuery setBookInLineIDBetween(ArrayList value) { this.BookInLineIDBetween = value; return this; } public ArrayList getBookInLineIDIn() { return BookInLineIDIn; } public SH_BookInLinesQuery setBookInLineIDIn(ArrayList value) { this.BookInLineIDIn = value; return this; } public String getBookInID() { return BookInID; } public SH_BookInLinesQuery setBookInID(String value) { this.BookInID = value; return this; } public String getBookInIDStartsWith() { return BookInIDStartsWith; } public SH_BookInLinesQuery setBookInIDStartsWith(String value) { this.BookInIDStartsWith = value; return this; } public String getBookInIDEndsWith() { return BookInIDEndsWith; } public SH_BookInLinesQuery setBookInIDEndsWith(String value) { this.BookInIDEndsWith = value; return this; } public String getBookInIDContains() { return BookInIDContains; } public SH_BookInLinesQuery setBookInIDContains(String value) { this.BookInIDContains = value; return this; } public String getBookInIDLike() { return BookInIDLike; } public SH_BookInLinesQuery setBookInIDLike(String value) { this.BookInIDLike = value; return this; } public ArrayList getBookInIDBetween() { return BookInIDBetween; } public SH_BookInLinesQuery setBookInIDBetween(ArrayList value) { this.BookInIDBetween = value; return this; } public ArrayList getBookInIDIn() { return BookInIDIn; } public SH_BookInLinesQuery setBookInIDIn(ArrayList value) { this.BookInIDIn = value; return this; } public String getPartNo() { return PartNo; } public SH_BookInLinesQuery setPartNo(String value) { this.PartNo = value; return this; } public String getPartNoStartsWith() { return PartNoStartsWith; } public SH_BookInLinesQuery setPartNoStartsWith(String value) { this.PartNoStartsWith = value; return this; } public String getPartNoEndsWith() { return PartNoEndsWith; } public SH_BookInLinesQuery setPartNoEndsWith(String value) { this.PartNoEndsWith = value; return this; } public String getPartNoContains() { return PartNoContains; } public SH_BookInLinesQuery setPartNoContains(String value) { this.PartNoContains = value; return this; } public String getPartNoLike() { return PartNoLike; } public SH_BookInLinesQuery setPartNoLike(String value) { this.PartNoLike = value; return this; } public ArrayList getPartNoBetween() { return PartNoBetween; } public SH_BookInLinesQuery setPartNoBetween(ArrayList value) { this.PartNoBetween = value; return this; } public ArrayList getPartNoIn() { return PartNoIn; } public SH_BookInLinesQuery setPartNoIn(ArrayList value) { this.PartNoIn = value; return this; } public String getInventoryID() { return InventoryID; } public SH_BookInLinesQuery setInventoryID(String value) { this.InventoryID = value; return this; } public String getInventoryIDStartsWith() { return InventoryIDStartsWith; } public SH_BookInLinesQuery setInventoryIDStartsWith(String value) { this.InventoryIDStartsWith = value; return this; } public String getInventoryIDEndsWith() { return InventoryIDEndsWith; } public SH_BookInLinesQuery setInventoryIDEndsWith(String value) { this.InventoryIDEndsWith = value; return this; } public String getInventoryIDContains() { return InventoryIDContains; } public SH_BookInLinesQuery setInventoryIDContains(String value) { this.InventoryIDContains = value; return this; } public String getInventoryIDLike() { return InventoryIDLike; } public SH_BookInLinesQuery setInventoryIDLike(String value) { this.InventoryIDLike = value; return this; } public ArrayList getInventoryIDBetween() { return InventoryIDBetween; } public SH_BookInLinesQuery setInventoryIDBetween(ArrayList value) { this.InventoryIDBetween = value; return this; } public ArrayList getInventoryIDIn() { return InventoryIDIn; } public SH_BookInLinesQuery setInventoryIDIn(ArrayList value) { this.InventoryIDIn = value; return this; } public BigDecimal getQuantity() { return Quantity; } public SH_BookInLinesQuery setQuantity(BigDecimal value) { this.Quantity = value; return this; } public BigDecimal getQuantityGreaterThanOrEqualTo() { return QuantityGreaterThanOrEqualTo; } public SH_BookInLinesQuery setQuantityGreaterThanOrEqualTo(BigDecimal value) { this.QuantityGreaterThanOrEqualTo = value; return this; } public BigDecimal getQuantityGreaterThan() { return QuantityGreaterThan; } public SH_BookInLinesQuery setQuantityGreaterThan(BigDecimal value) { this.QuantityGreaterThan = value; return this; } public BigDecimal getQuantityLessThan() { return QuantityLessThan; } public SH_BookInLinesQuery setQuantityLessThan(BigDecimal value) { this.QuantityLessThan = value; return this; } public BigDecimal getQuantityLessThanOrEqualTo() { return QuantityLessThanOrEqualTo; } public SH_BookInLinesQuery setQuantityLessThanOrEqualTo(BigDecimal value) { this.QuantityLessThanOrEqualTo = value; return this; } public BigDecimal getQuantityNotEqualTo() { return QuantityNotEqualTo; } public SH_BookInLinesQuery setQuantityNotEqualTo(BigDecimal value) { this.QuantityNotEqualTo = value; return this; } public ArrayList getQuantityBetween() { return QuantityBetween; } public SH_BookInLinesQuery setQuantityBetween(ArrayList value) { this.QuantityBetween = value; return this; } public ArrayList getQuantityIn() { return QuantityIn; } public SH_BookInLinesQuery setQuantityIn(ArrayList value) { this.QuantityIn = value; return this; } public String getShipmentLineID() { return ShipmentLineID; } public SH_BookInLinesQuery setShipmentLineID(String value) { this.ShipmentLineID = value; return this; } public String getShipmentLineIDStartsWith() { return ShipmentLineIDStartsWith; } public SH_BookInLinesQuery setShipmentLineIDStartsWith(String value) { this.ShipmentLineIDStartsWith = value; return this; } public String getShipmentLineIDEndsWith() { return ShipmentLineIDEndsWith; } public SH_BookInLinesQuery setShipmentLineIDEndsWith(String value) { this.ShipmentLineIDEndsWith = value; return this; } public String getShipmentLineIDContains() { return ShipmentLineIDContains; } public SH_BookInLinesQuery setShipmentLineIDContains(String value) { this.ShipmentLineIDContains = value; return this; } public String getShipmentLineIDLike() { return ShipmentLineIDLike; } public SH_BookInLinesQuery setShipmentLineIDLike(String value) { this.ShipmentLineIDLike = value; return this; } public ArrayList getShipmentLineIDBetween() { return ShipmentLineIDBetween; } public SH_BookInLinesQuery setShipmentLineIDBetween(ArrayList value) { this.ShipmentLineIDBetween = value; return this; } public ArrayList getShipmentLineIDIn() { return ShipmentLineIDIn; } public SH_BookInLinesQuery setShipmentLineIDIn(ArrayList value) { this.ShipmentLineIDIn = value; return this; } public Boolean isUseSerialNo() { return UseSerialNo; } public SH_BookInLinesQuery setUseSerialNo(Boolean value) { this.UseSerialNo = value; return this; } public Boolean isUseExpiry() { return UseExpiry; } public SH_BookInLinesQuery setUseExpiry(Boolean value) { this.UseExpiry = value; return this; } public Short getDecimalPlaces() { return DecimalPlaces; } public SH_BookInLinesQuery setDecimalPlaces(Short value) { this.DecimalPlaces = value; return this; } public Short getDecimalPlacesGreaterThanOrEqualTo() { return DecimalPlacesGreaterThanOrEqualTo; } public SH_BookInLinesQuery setDecimalPlacesGreaterThanOrEqualTo(Short value) { this.DecimalPlacesGreaterThanOrEqualTo = value; return this; } public Short getDecimalPlacesGreaterThan() { return DecimalPlacesGreaterThan; } public SH_BookInLinesQuery setDecimalPlacesGreaterThan(Short value) { this.DecimalPlacesGreaterThan = value; return this; } public Short getDecimalPlacesLessThan() { return DecimalPlacesLessThan; } public SH_BookInLinesQuery setDecimalPlacesLessThan(Short value) { this.DecimalPlacesLessThan = value; return this; } public Short getDecimalPlacesLessThanOrEqualTo() { return DecimalPlacesLessThanOrEqualTo; } public SH_BookInLinesQuery setDecimalPlacesLessThanOrEqualTo(Short value) { this.DecimalPlacesLessThanOrEqualTo = value; return this; } public Short getDecimalPlacesNotEqualTo() { return DecimalPlacesNotEqualTo; } public SH_BookInLinesQuery setDecimalPlacesNotEqualTo(Short value) { this.DecimalPlacesNotEqualTo = value; return this; } public ArrayList getDecimalPlacesBetween() { return DecimalPlacesBetween; } public SH_BookInLinesQuery setDecimalPlacesBetween(ArrayList value) { this.DecimalPlacesBetween = value; return this; } public ArrayList getDecimalPlacesIn() { return DecimalPlacesIn; } public SH_BookInLinesQuery setDecimalPlacesIn(ArrayList value) { this.DecimalPlacesIn = value; return this; } public String getPoClassID() { return POClassID; } public SH_BookInLinesQuery setPoClassID(String value) { this.POClassID = value; return this; } public String getPoClassIDStartsWith() { return POClassIDStartsWith; } public SH_BookInLinesQuery setPoClassIDStartsWith(String value) { this.POClassIDStartsWith = value; return this; } public String getPoClassIDEndsWith() { return POClassIDEndsWith; } public SH_BookInLinesQuery setPoClassIDEndsWith(String value) { this.POClassIDEndsWith = value; return this; } public String getPoClassIDContains() { return POClassIDContains; } public SH_BookInLinesQuery setPoClassIDContains(String value) { this.POClassIDContains = value; return this; } public String getPoClassIDLike() { return POClassIDLike; } public SH_BookInLinesQuery setPoClassIDLike(String value) { this.POClassIDLike = value; return this; } public ArrayList getPoClassIDBetween() { return POClassIDBetween; } public SH_BookInLinesQuery setPoClassIDBetween(ArrayList value) { this.POClassIDBetween = value; return this; } public ArrayList getPoClassIDIn() { return POClassIDIn; } public SH_BookInLinesQuery setPoClassIDIn(ArrayList value) { this.POClassIDIn = value; return this; } public Short getDeliveryDays() { return DeliveryDays; } public SH_BookInLinesQuery setDeliveryDays(Short value) { this.DeliveryDays = value; return this; } public Short getDeliveryDaysGreaterThanOrEqualTo() { return DeliveryDaysGreaterThanOrEqualTo; } public SH_BookInLinesQuery setDeliveryDaysGreaterThanOrEqualTo(Short value) { this.DeliveryDaysGreaterThanOrEqualTo = value; return this; } public Short getDeliveryDaysGreaterThan() { return DeliveryDaysGreaterThan; } public SH_BookInLinesQuery setDeliveryDaysGreaterThan(Short value) { this.DeliveryDaysGreaterThan = value; return this; } public Short getDeliveryDaysLessThan() { return DeliveryDaysLessThan; } public SH_BookInLinesQuery setDeliveryDaysLessThan(Short value) { this.DeliveryDaysLessThan = value; return this; } public Short getDeliveryDaysLessThanOrEqualTo() { return DeliveryDaysLessThanOrEqualTo; } public SH_BookInLinesQuery setDeliveryDaysLessThanOrEqualTo(Short value) { this.DeliveryDaysLessThanOrEqualTo = value; return this; } public Short getDeliveryDaysNotEqualTo() { return DeliveryDaysNotEqualTo; } public SH_BookInLinesQuery setDeliveryDaysNotEqualTo(Short value) { this.DeliveryDaysNotEqualTo = value; return this; } public ArrayList getDeliveryDaysBetween() { return DeliveryDaysBetween; } public SH_BookInLinesQuery setDeliveryDaysBetween(ArrayList value) { this.DeliveryDaysBetween = value; return this; } public ArrayList getDeliveryDaysIn() { return DeliveryDaysIn; } public SH_BookInLinesQuery setDeliveryDaysIn(ArrayList value) { this.DeliveryDaysIn = value; return this; } public String getDescription() { return Description; } public SH_BookInLinesQuery setDescription(String value) { this.Description = value; return this; } public String getDescriptionStartsWith() { return DescriptionStartsWith; } public SH_BookInLinesQuery setDescriptionStartsWith(String value) { this.DescriptionStartsWith = value; return this; } public String getDescriptionEndsWith() { return DescriptionEndsWith; } public SH_BookInLinesQuery setDescriptionEndsWith(String value) { this.DescriptionEndsWith = value; return this; } public String getDescriptionContains() { return DescriptionContains; } public SH_BookInLinesQuery setDescriptionContains(String value) { this.DescriptionContains = value; return this; } public String getDescriptionLike() { return DescriptionLike; } public SH_BookInLinesQuery setDescriptionLike(String value) { this.DescriptionLike = value; return this; } public ArrayList getDescriptionBetween() { return DescriptionBetween; } public SH_BookInLinesQuery setDescriptionBetween(ArrayList value) { this.DescriptionBetween = value; return this; } public ArrayList getDescriptionIn() { return DescriptionIn; } public SH_BookInLinesQuery setDescriptionIn(ArrayList value) { this.DescriptionIn = value; return this; } public BigDecimal getOrderUnits() { return OrderUnits; } public SH_BookInLinesQuery setOrderUnits(BigDecimal value) { this.OrderUnits = value; return this; } public BigDecimal getOrderUnitsGreaterThanOrEqualTo() { return OrderUnitsGreaterThanOrEqualTo; } public SH_BookInLinesQuery setOrderUnitsGreaterThanOrEqualTo(BigDecimal value) { this.OrderUnitsGreaterThanOrEqualTo = value; return this; } public BigDecimal getOrderUnitsGreaterThan() { return OrderUnitsGreaterThan; } public SH_BookInLinesQuery setOrderUnitsGreaterThan(BigDecimal value) { this.OrderUnitsGreaterThan = value; return this; } public BigDecimal getOrderUnitsLessThan() { return OrderUnitsLessThan; } public SH_BookInLinesQuery setOrderUnitsLessThan(BigDecimal value) { this.OrderUnitsLessThan = value; return this; } public BigDecimal getOrderUnitsLessThanOrEqualTo() { return OrderUnitsLessThanOrEqualTo; } public SH_BookInLinesQuery setOrderUnitsLessThanOrEqualTo(BigDecimal value) { this.OrderUnitsLessThanOrEqualTo = value; return this; } public BigDecimal getOrderUnitsNotEqualTo() { return OrderUnitsNotEqualTo; } public SH_BookInLinesQuery setOrderUnitsNotEqualTo(BigDecimal value) { this.OrderUnitsNotEqualTo = value; return this; } public ArrayList getOrderUnitsBetween() { return OrderUnitsBetween; } public SH_BookInLinesQuery setOrderUnitsBetween(ArrayList value) { this.OrderUnitsBetween = value; return this; } public ArrayList getOrderUnitsIn() { return OrderUnitsIn; } public SH_BookInLinesQuery setOrderUnitsIn(ArrayList value) { this.OrderUnitsIn = value; return this; } public String getClassificationID() { return ClassificationID; } public SH_BookInLinesQuery setClassificationID(String value) { this.ClassificationID = value; return this; } public String getClassificationIDStartsWith() { return ClassificationIDStartsWith; } public SH_BookInLinesQuery setClassificationIDStartsWith(String value) { this.ClassificationIDStartsWith = value; return this; } public String getClassificationIDEndsWith() { return ClassificationIDEndsWith; } public SH_BookInLinesQuery setClassificationIDEndsWith(String value) { this.ClassificationIDEndsWith = value; return this; } public String getClassificationIDContains() { return ClassificationIDContains; } public SH_BookInLinesQuery setClassificationIDContains(String value) { this.ClassificationIDContains = value; return this; } public String getClassificationIDLike() { return ClassificationIDLike; } public SH_BookInLinesQuery setClassificationIDLike(String value) { this.ClassificationIDLike = value; return this; } public ArrayList getClassificationIDBetween() { return ClassificationIDBetween; } public SH_BookInLinesQuery setClassificationIDBetween(ArrayList value) { this.ClassificationIDBetween = value; return this; } public ArrayList getClassificationIDIn() { return ClassificationIDIn; } public SH_BookInLinesQuery setClassificationIDIn(ArrayList value) { this.ClassificationIDIn = value; return this; } public String getSupplierPartNo() { return SupplierPartNo; } public SH_BookInLinesQuery setSupplierPartNo(String value) { this.SupplierPartNo = value; return this; } public String getSupplierPartNoStartsWith() { return SupplierPartNoStartsWith; } public SH_BookInLinesQuery setSupplierPartNoStartsWith(String value) { this.SupplierPartNoStartsWith = value; return this; } public String getSupplierPartNoEndsWith() { return SupplierPartNoEndsWith; } public SH_BookInLinesQuery setSupplierPartNoEndsWith(String value) { this.SupplierPartNoEndsWith = value; return this; } public String getSupplierPartNoContains() { return SupplierPartNoContains; } public SH_BookInLinesQuery setSupplierPartNoContains(String value) { this.SupplierPartNoContains = value; return this; } public String getSupplierPartNoLike() { return SupplierPartNoLike; } public SH_BookInLinesQuery setSupplierPartNoLike(String value) { this.SupplierPartNoLike = value; return this; } public ArrayList getSupplierPartNoBetween() { return SupplierPartNoBetween; } public SH_BookInLinesQuery setSupplierPartNoBetween(ArrayList value) { this.SupplierPartNoBetween = value; return this; } public ArrayList getSupplierPartNoIn() { return SupplierPartNoIn; } public SH_BookInLinesQuery setSupplierPartNoIn(ArrayList value) { this.SupplierPartNoIn = value; return this; } public BigDecimal getOrderedCost() { return OrderedCost; } public SH_BookInLinesQuery setOrderedCost(BigDecimal value) { this.OrderedCost = value; return this; } public BigDecimal getOrderedCostGreaterThanOrEqualTo() { return OrderedCostGreaterThanOrEqualTo; } public SH_BookInLinesQuery setOrderedCostGreaterThanOrEqualTo(BigDecimal value) { this.OrderedCostGreaterThanOrEqualTo = value; return this; } public BigDecimal getOrderedCostGreaterThan() { return OrderedCostGreaterThan; } public SH_BookInLinesQuery setOrderedCostGreaterThan(BigDecimal value) { this.OrderedCostGreaterThan = value; return this; } public BigDecimal getOrderedCostLessThan() { return OrderedCostLessThan; } public SH_BookInLinesQuery setOrderedCostLessThan(BigDecimal value) { this.OrderedCostLessThan = value; return this; } public BigDecimal getOrderedCostLessThanOrEqualTo() { return OrderedCostLessThanOrEqualTo; } public SH_BookInLinesQuery setOrderedCostLessThanOrEqualTo(BigDecimal value) { this.OrderedCostLessThanOrEqualTo = value; return this; } public BigDecimal getOrderedCostNotEqualTo() { return OrderedCostNotEqualTo; } public SH_BookInLinesQuery setOrderedCostNotEqualTo(BigDecimal value) { this.OrderedCostNotEqualTo = value; return this; } public ArrayList getOrderedCostBetween() { return OrderedCostBetween; } public SH_BookInLinesQuery setOrderedCostBetween(ArrayList value) { this.OrderedCostBetween = value; return this; } public ArrayList getOrderedCostIn() { return OrderedCostIn; } public SH_BookInLinesQuery setOrderedCostIn(ArrayList value) { this.OrderedCostIn = value; return this; } public BigDecimal getGstRate() { return GSTRate; } public SH_BookInLinesQuery setGstRate(BigDecimal value) { this.GSTRate = value; return this; } public BigDecimal getGstRateGreaterThanOrEqualTo() { return GSTRateGreaterThanOrEqualTo; } public SH_BookInLinesQuery setGstRateGreaterThanOrEqualTo(BigDecimal value) { this.GSTRateGreaterThanOrEqualTo = value; return this; } public BigDecimal getGstRateGreaterThan() { return GSTRateGreaterThan; } public SH_BookInLinesQuery setGstRateGreaterThan(BigDecimal value) { this.GSTRateGreaterThan = value; return this; } public BigDecimal getGstRateLessThan() { return GSTRateLessThan; } public SH_BookInLinesQuery setGstRateLessThan(BigDecimal value) { this.GSTRateLessThan = value; return this; } public BigDecimal getGstRateLessThanOrEqualTo() { return GSTRateLessThanOrEqualTo; } public SH_BookInLinesQuery setGstRateLessThanOrEqualTo(BigDecimal value) { this.GSTRateLessThanOrEqualTo = value; return this; } public BigDecimal getGstRateNotEqualTo() { return GSTRateNotEqualTo; } public SH_BookInLinesQuery setGstRateNotEqualTo(BigDecimal value) { this.GSTRateNotEqualTo = value; return this; } public ArrayList getGstRateBetween() { return GSTRateBetween; } public SH_BookInLinesQuery setGstRateBetween(ArrayList value) { this.GSTRateBetween = value; return this; } public ArrayList getGstRateIn() { return GSTRateIn; } public SH_BookInLinesQuery setGstRateIn(ArrayList value) { this.GSTRateIn = value; return this; } public BigDecimal getGstAmount() { return GSTAmount; } public SH_BookInLinesQuery setGstAmount(BigDecimal value) { this.GSTAmount = value; return this; } public BigDecimal getGstAmountGreaterThanOrEqualTo() { return GSTAmountGreaterThanOrEqualTo; } public SH_BookInLinesQuery setGstAmountGreaterThanOrEqualTo(BigDecimal value) { this.GSTAmountGreaterThanOrEqualTo = value; return this; } public BigDecimal getGstAmountGreaterThan() { return GSTAmountGreaterThan; } public SH_BookInLinesQuery setGstAmountGreaterThan(BigDecimal value) { this.GSTAmountGreaterThan = value; return this; } public BigDecimal getGstAmountLessThan() { return GSTAmountLessThan; } public SH_BookInLinesQuery setGstAmountLessThan(BigDecimal value) { this.GSTAmountLessThan = value; return this; } public BigDecimal getGstAmountLessThanOrEqualTo() { return GSTAmountLessThanOrEqualTo; } public SH_BookInLinesQuery setGstAmountLessThanOrEqualTo(BigDecimal value) { this.GSTAmountLessThanOrEqualTo = value; return this; } public BigDecimal getGstAmountNotEqualTo() { return GSTAmountNotEqualTo; } public SH_BookInLinesQuery setGstAmountNotEqualTo(BigDecimal value) { this.GSTAmountNotEqualTo = value; return this; } public ArrayList getGstAmountBetween() { return GSTAmountBetween; } public SH_BookInLinesQuery setGstAmountBetween(ArrayList value) { this.GSTAmountBetween = value; return this; } public ArrayList getGstAmountIn() { return GSTAmountIn; } public SH_BookInLinesQuery setGstAmountIn(ArrayList value) { this.GSTAmountIn = value; return this; } public String getGstid() { return GSTID; } public SH_BookInLinesQuery setGstid(String value) { this.GSTID = value; return this; } public String getGstidStartsWith() { return GSTIDStartsWith; } public SH_BookInLinesQuery setGstidStartsWith(String value) { this.GSTIDStartsWith = value; return this; } public String getGstidEndsWith() { return GSTIDEndsWith; } public SH_BookInLinesQuery setGstidEndsWith(String value) { this.GSTIDEndsWith = value; return this; } public String getGstidContains() { return GSTIDContains; } public SH_BookInLinesQuery setGstidContains(String value) { this.GSTIDContains = value; return this; } public String getGstidLike() { return GSTIDLike; } public SH_BookInLinesQuery setGstidLike(String value) { this.GSTIDLike = value; return this; } public ArrayList getGstidBetween() { return GSTIDBetween; } public SH_BookInLinesQuery setGstidBetween(ArrayList value) { this.GSTIDBetween = value; return this; } public ArrayList getGstidIn() { return GSTIDIn; } public SH_BookInLinesQuery setGstidIn(ArrayList value) { this.GSTIDIn = value; return this; } public String getJobCostID() { return JobCostID; } public SH_BookInLinesQuery setJobCostID(String value) { this.JobCostID = value; return this; } public String getJobCostIDStartsWith() { return JobCostIDStartsWith; } public SH_BookInLinesQuery setJobCostIDStartsWith(String value) { this.JobCostIDStartsWith = value; return this; } public String getJobCostIDEndsWith() { return JobCostIDEndsWith; } public SH_BookInLinesQuery setJobCostIDEndsWith(String value) { this.JobCostIDEndsWith = value; return this; } public String getJobCostIDContains() { return JobCostIDContains; } public SH_BookInLinesQuery setJobCostIDContains(String value) { this.JobCostIDContains = value; return this; } public String getJobCostIDLike() { return JobCostIDLike; } public SH_BookInLinesQuery setJobCostIDLike(String value) { this.JobCostIDLike = value; return this; } public ArrayList getJobCostIDBetween() { return JobCostIDBetween; } public SH_BookInLinesQuery setJobCostIDBetween(ArrayList value) { this.JobCostIDBetween = value; return this; } public ArrayList getJobCostIDIn() { return JobCostIDIn; } public SH_BookInLinesQuery setJobCostIDIn(ArrayList value) { this.JobCostIDIn = value; return this; } public String getCreditorID() { return CreditorID; } public SH_BookInLinesQuery setCreditorID(String value) { this.CreditorID = value; return this; } public String getCreditorIDStartsWith() { return CreditorIDStartsWith; } public SH_BookInLinesQuery setCreditorIDStartsWith(String value) { this.CreditorIDStartsWith = value; return this; } public String getCreditorIDEndsWith() { return CreditorIDEndsWith; } public SH_BookInLinesQuery setCreditorIDEndsWith(String value) { this.CreditorIDEndsWith = value; return this; } public String getCreditorIDContains() { return CreditorIDContains; } public SH_BookInLinesQuery setCreditorIDContains(String value) { this.CreditorIDContains = value; return this; } public String getCreditorIDLike() { return CreditorIDLike; } public SH_BookInLinesQuery setCreditorIDLike(String value) { this.CreditorIDLike = value; return this; } public ArrayList getCreditorIDBetween() { return CreditorIDBetween; } public SH_BookInLinesQuery setCreditorIDBetween(ArrayList value) { this.CreditorIDBetween = value; return this; } public ArrayList getCreditorIDIn() { return CreditorIDIn; } public SH_BookInLinesQuery setCreditorIDIn(ArrayList value) { this.CreditorIDIn = value; return this; } public BigDecimal getFxRate() { return FXRate; } public SH_BookInLinesQuery setFxRate(BigDecimal value) { this.FXRate = value; return this; } public BigDecimal getFxRateGreaterThanOrEqualTo() { return FXRateGreaterThanOrEqualTo; } public SH_BookInLinesQuery setFxRateGreaterThanOrEqualTo(BigDecimal value) { this.FXRateGreaterThanOrEqualTo = value; return this; } public BigDecimal getFxRateGreaterThan() { return FXRateGreaterThan; } public SH_BookInLinesQuery setFxRateGreaterThan(BigDecimal value) { this.FXRateGreaterThan = value; return this; } public BigDecimal getFxRateLessThan() { return FXRateLessThan; } public SH_BookInLinesQuery setFxRateLessThan(BigDecimal value) { this.FXRateLessThan = value; return this; } public BigDecimal getFxRateLessThanOrEqualTo() { return FXRateLessThanOrEqualTo; } public SH_BookInLinesQuery setFxRateLessThanOrEqualTo(BigDecimal value) { this.FXRateLessThanOrEqualTo = value; return this; } public BigDecimal getFxRateNotEqualTo() { return FXRateNotEqualTo; } public SH_BookInLinesQuery setFxRateNotEqualTo(BigDecimal value) { this.FXRateNotEqualTo = value; return this; } public ArrayList getFxRateBetween() { return FXRateBetween; } public SH_BookInLinesQuery setFxRateBetween(ArrayList value) { this.FXRateBetween = value; return this; } public ArrayList getFxRateIn() { return FXRateIn; } public SH_BookInLinesQuery setFxRateIn(ArrayList value) { this.FXRateIn = value; return this; } public BigDecimal getUnitCost() { return UnitCost; } public SH_BookInLinesQuery setUnitCost(BigDecimal value) { this.UnitCost = value; return this; } public BigDecimal getUnitCostGreaterThanOrEqualTo() { return UnitCostGreaterThanOrEqualTo; } public SH_BookInLinesQuery setUnitCostGreaterThanOrEqualTo(BigDecimal value) { this.UnitCostGreaterThanOrEqualTo = value; return this; } public BigDecimal getUnitCostGreaterThan() { return UnitCostGreaterThan; } public SH_BookInLinesQuery setUnitCostGreaterThan(BigDecimal value) { this.UnitCostGreaterThan = value; return this; } public BigDecimal getUnitCostLessThan() { return UnitCostLessThan; } public SH_BookInLinesQuery setUnitCostLessThan(BigDecimal value) { this.UnitCostLessThan = value; return this; } public BigDecimal getUnitCostLessThanOrEqualTo() { return UnitCostLessThanOrEqualTo; } public SH_BookInLinesQuery setUnitCostLessThanOrEqualTo(BigDecimal value) { this.UnitCostLessThanOrEqualTo = value; return this; } public BigDecimal getUnitCostNotEqualTo() { return UnitCostNotEqualTo; } public SH_BookInLinesQuery setUnitCostNotEqualTo(BigDecimal value) { this.UnitCostNotEqualTo = value; return this; } public ArrayList getUnitCostBetween() { return UnitCostBetween; } public SH_BookInLinesQuery setUnitCostBetween(ArrayList value) { this.UnitCostBetween = value; return this; } public ArrayList getUnitCostIn() { return UnitCostIn; } public SH_BookInLinesQuery setUnitCostIn(ArrayList value) { this.UnitCostIn = value; return this; } public BigDecimal getWeight() { return Weight; } public SH_BookInLinesQuery setWeight(BigDecimal value) { this.Weight = value; return this; } public BigDecimal getWeightGreaterThanOrEqualTo() { return WeightGreaterThanOrEqualTo; } public SH_BookInLinesQuery setWeightGreaterThanOrEqualTo(BigDecimal value) { this.WeightGreaterThanOrEqualTo = value; return this; } public BigDecimal getWeightGreaterThan() { return WeightGreaterThan; } public SH_BookInLinesQuery setWeightGreaterThan(BigDecimal value) { this.WeightGreaterThan = value; return this; } public BigDecimal getWeightLessThan() { return WeightLessThan; } public SH_BookInLinesQuery setWeightLessThan(BigDecimal value) { this.WeightLessThan = value; return this; } public BigDecimal getWeightLessThanOrEqualTo() { return WeightLessThanOrEqualTo; } public SH_BookInLinesQuery setWeightLessThanOrEqualTo(BigDecimal value) { this.WeightLessThanOrEqualTo = value; return this; } public BigDecimal getWeightNotEqualTo() { return WeightNotEqualTo; } public SH_BookInLinesQuery setWeightNotEqualTo(BigDecimal value) { this.WeightNotEqualTo = value; return this; } public ArrayList getWeightBetween() { return WeightBetween; } public SH_BookInLinesQuery setWeightBetween(ArrayList value) { this.WeightBetween = value; return this; } public ArrayList getWeightIn() { return WeightIn; } public SH_BookInLinesQuery setWeightIn(ArrayList value) { this.WeightIn = value; return this; } public BigDecimal getVolume() { return Volume; } public SH_BookInLinesQuery setVolume(BigDecimal value) { this.Volume = value; return this; } public BigDecimal getVolumeGreaterThanOrEqualTo() { return VolumeGreaterThanOrEqualTo; } public SH_BookInLinesQuery setVolumeGreaterThanOrEqualTo(BigDecimal value) { this.VolumeGreaterThanOrEqualTo = value; return this; } public BigDecimal getVolumeGreaterThan() { return VolumeGreaterThan; } public SH_BookInLinesQuery setVolumeGreaterThan(BigDecimal value) { this.VolumeGreaterThan = value; return this; } public BigDecimal getVolumeLessThan() { return VolumeLessThan; } public SH_BookInLinesQuery setVolumeLessThan(BigDecimal value) { this.VolumeLessThan = value; return this; } public BigDecimal getVolumeLessThanOrEqualTo() { return VolumeLessThanOrEqualTo; } public SH_BookInLinesQuery setVolumeLessThanOrEqualTo(BigDecimal value) { this.VolumeLessThanOrEqualTo = value; return this; } public BigDecimal getVolumeNotEqualTo() { return VolumeNotEqualTo; } public SH_BookInLinesQuery setVolumeNotEqualTo(BigDecimal value) { this.VolumeNotEqualTo = value; return this; } public ArrayList getVolumeBetween() { return VolumeBetween; } public SH_BookInLinesQuery setVolumeBetween(ArrayList value) { this.VolumeBetween = value; return this; } public ArrayList getVolumeIn() { return VolumeIn; } public SH_BookInLinesQuery setVolumeIn(ArrayList value) { this.VolumeIn = value; return this; } public String getCurrencyID() { return CurrencyID; } public SH_BookInLinesQuery setCurrencyID(String value) { this.CurrencyID = value; return this; } public String getCurrencyIDStartsWith() { return CurrencyIDStartsWith; } public SH_BookInLinesQuery setCurrencyIDStartsWith(String value) { this.CurrencyIDStartsWith = value; return this; } public String getCurrencyIDEndsWith() { return CurrencyIDEndsWith; } public SH_BookInLinesQuery setCurrencyIDEndsWith(String value) { this.CurrencyIDEndsWith = value; return this; } public String getCurrencyIDContains() { return CurrencyIDContains; } public SH_BookInLinesQuery setCurrencyIDContains(String value) { this.CurrencyIDContains = value; return this; } public String getCurrencyIDLike() { return CurrencyIDLike; } public SH_BookInLinesQuery setCurrencyIDLike(String value) { this.CurrencyIDLike = value; return this; } public ArrayList getCurrencyIDBetween() { return CurrencyIDBetween; } public SH_BookInLinesQuery setCurrencyIDBetween(ArrayList value) { this.CurrencyIDBetween = value; return this; } public ArrayList getCurrencyIDIn() { return CurrencyIDIn; } public SH_BookInLinesQuery setCurrencyIDIn(ArrayList value) { this.CurrencyIDIn = value; return this; } public Boolean isPhysicalItem() { return PhysicalItem; } public SH_BookInLinesQuery setPhysicalItem(Boolean value) { this.PhysicalItem = value; return this; } public BigDecimal getFxOrderedCost() { return FXOrderedCost; } public SH_BookInLinesQuery setFxOrderedCost(BigDecimal value) { this.FXOrderedCost = value; return this; } public BigDecimal getFxOrderedCostGreaterThanOrEqualTo() { return FXOrderedCostGreaterThanOrEqualTo; } public SH_BookInLinesQuery setFxOrderedCostGreaterThanOrEqualTo(BigDecimal value) { this.FXOrderedCostGreaterThanOrEqualTo = value; return this; } public BigDecimal getFxOrderedCostGreaterThan() { return FXOrderedCostGreaterThan; } public SH_BookInLinesQuery setFxOrderedCostGreaterThan(BigDecimal value) { this.FXOrderedCostGreaterThan = value; return this; } public BigDecimal getFxOrderedCostLessThan() { return FXOrderedCostLessThan; } public SH_BookInLinesQuery setFxOrderedCostLessThan(BigDecimal value) { this.FXOrderedCostLessThan = value; return this; } public BigDecimal getFxOrderedCostLessThanOrEqualTo() { return FXOrderedCostLessThanOrEqualTo; } public SH_BookInLinesQuery setFxOrderedCostLessThanOrEqualTo(BigDecimal value) { this.FXOrderedCostLessThanOrEqualTo = value; return this; } public BigDecimal getFxOrderedCostNotEqualTo() { return FXOrderedCostNotEqualTo; } public SH_BookInLinesQuery setFxOrderedCostNotEqualTo(BigDecimal value) { this.FXOrderedCostNotEqualTo = value; return this; } public ArrayList getFxOrderedCostBetween() { return FXOrderedCostBetween; } public SH_BookInLinesQuery setFxOrderedCostBetween(ArrayList value) { this.FXOrderedCostBetween = value; return this; } public ArrayList getFxOrderedCostIn() { return FXOrderedCostIn; } public SH_BookInLinesQuery setFxOrderedCostIn(ArrayList value) { this.FXOrderedCostIn = value; return this; } public ArrayList getRowHash() { return RowHash; } public SH_BookInLinesQuery setRowHash(ArrayList value) { this.RowHash = value; return this; } public Integer getItemNo() { return ItemNo; } public SH_BookInLinesQuery setItemNo(Integer value) { this.ItemNo = value; return this; } public Integer getItemNoGreaterThanOrEqualTo() { return ItemNoGreaterThanOrEqualTo; } public SH_BookInLinesQuery setItemNoGreaterThanOrEqualTo(Integer value) { this.ItemNoGreaterThanOrEqualTo = value; return this; } public Integer getItemNoGreaterThan() { return ItemNoGreaterThan; } public SH_BookInLinesQuery setItemNoGreaterThan(Integer value) { this.ItemNoGreaterThan = value; return this; } public Integer getItemNoLessThan() { return ItemNoLessThan; } public SH_BookInLinesQuery setItemNoLessThan(Integer value) { this.ItemNoLessThan = value; return this; } public Integer getItemNoLessThanOrEqualTo() { return ItemNoLessThanOrEqualTo; } public SH_BookInLinesQuery setItemNoLessThanOrEqualTo(Integer value) { this.ItemNoLessThanOrEqualTo = value; return this; } public Integer getItemNoNotEqualTo() { return ItemNoNotEqualTo; } public SH_BookInLinesQuery setItemNoNotEqualTo(Integer value) { this.ItemNoNotEqualTo = value; return this; } public ArrayList getItemNoBetween() { return ItemNoBetween; } public SH_BookInLinesQuery setItemNoBetween(ArrayList value) { this.ItemNoBetween = value; return this; } public ArrayList getItemNoIn() { return ItemNoIn; } public SH_BookInLinesQuery setItemNoIn(ArrayList value) { this.ItemNoIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @Route(Path="/Queries/SH_BookInMain", Verbs="GET") @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class SH_BookInMainQuery extends QueryDb implements IReturn> { public String BookInID = null; public String BookInIDStartsWith = null; public String BookInIDEndsWith = null; public String BookInIDContains = null; public String BookInIDLike = null; public ArrayList BookInIDBetween = null; public ArrayList BookInIDIn = null; public String BookInNo = null; public String BookInNoStartsWith = null; public String BookInNoEndsWith = null; public String BookInNoContains = null; public String BookInNoLike = null; public ArrayList BookInNoBetween = null; public ArrayList BookInNoIn = null; public Date LastSavedDateTime = null; public Date LastSavedDateTimeGreaterThanOrEqualTo = null; public Date LastSavedDateTimeGreaterThan = null; public Date LastSavedDateTimeLessThan = null; public Date LastSavedDateTimeLessThanOrEqualTo = null; public Date LastSavedDateTimeNotEqualTo = null; public ArrayList LastSavedDateTimeBetween = null; public ArrayList LastSavedDateTimeIn = null; public String ShipmentID = null; public String ShipmentIDStartsWith = null; public String ShipmentIDEndsWith = null; public String ShipmentIDContains = null; public String ShipmentIDLike = null; public ArrayList ShipmentIDBetween = null; public ArrayList ShipmentIDIn = null; public Date BookInDate = null; public Date BookInDateGreaterThanOrEqualTo = null; public Date BookInDateGreaterThan = null; public Date BookInDateLessThan = null; public Date BookInDateLessThanOrEqualTo = null; public Date BookInDateNotEqualTo = null; public ArrayList BookInDateBetween = null; public ArrayList BookInDateIn = null; public Boolean Status = null; public String IN_LogicalID = null; public String IN_LogicalIDStartsWith = null; public String IN_LogicalIDEndsWith = null; public String IN_LogicalIDContains = null; public String IN_LogicalIDLike = null; public ArrayList IN_LogicalIDBetween = null; public ArrayList IN_LogicalIDIn = null; public String SETID = null; public String SETIDStartsWith = null; public String SETIDEndsWith = null; public String SETIDContains = null; public String SETIDLike = null; public ArrayList SETIDBetween = null; public ArrayList SETIDIn = null; public String getBookInID() { return BookInID; } public SH_BookInMainQuery setBookInID(String value) { this.BookInID = value; return this; } public String getBookInIDStartsWith() { return BookInIDStartsWith; } public SH_BookInMainQuery setBookInIDStartsWith(String value) { this.BookInIDStartsWith = value; return this; } public String getBookInIDEndsWith() { return BookInIDEndsWith; } public SH_BookInMainQuery setBookInIDEndsWith(String value) { this.BookInIDEndsWith = value; return this; } public String getBookInIDContains() { return BookInIDContains; } public SH_BookInMainQuery setBookInIDContains(String value) { this.BookInIDContains = value; return this; } public String getBookInIDLike() { return BookInIDLike; } public SH_BookInMainQuery setBookInIDLike(String value) { this.BookInIDLike = value; return this; } public ArrayList getBookInIDBetween() { return BookInIDBetween; } public SH_BookInMainQuery setBookInIDBetween(ArrayList value) { this.BookInIDBetween = value; return this; } public ArrayList getBookInIDIn() { return BookInIDIn; } public SH_BookInMainQuery setBookInIDIn(ArrayList value) { this.BookInIDIn = value; return this; } public String getBookInNo() { return BookInNo; } public SH_BookInMainQuery setBookInNo(String value) { this.BookInNo = value; return this; } public String getBookInNoStartsWith() { return BookInNoStartsWith; } public SH_BookInMainQuery setBookInNoStartsWith(String value) { this.BookInNoStartsWith = value; return this; } public String getBookInNoEndsWith() { return BookInNoEndsWith; } public SH_BookInMainQuery setBookInNoEndsWith(String value) { this.BookInNoEndsWith = value; return this; } public String getBookInNoContains() { return BookInNoContains; } public SH_BookInMainQuery setBookInNoContains(String value) { this.BookInNoContains = value; return this; } public String getBookInNoLike() { return BookInNoLike; } public SH_BookInMainQuery setBookInNoLike(String value) { this.BookInNoLike = value; return this; } public ArrayList getBookInNoBetween() { return BookInNoBetween; } public SH_BookInMainQuery setBookInNoBetween(ArrayList value) { this.BookInNoBetween = value; return this; } public ArrayList getBookInNoIn() { return BookInNoIn; } public SH_BookInMainQuery setBookInNoIn(ArrayList value) { this.BookInNoIn = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public SH_BookInMainQuery setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getLastSavedDateTimeGreaterThanOrEqualTo() { return LastSavedDateTimeGreaterThanOrEqualTo; } public SH_BookInMainQuery setLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.LastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeGreaterThan() { return LastSavedDateTimeGreaterThan; } public SH_BookInMainQuery setLastSavedDateTimeGreaterThan(Date value) { this.LastSavedDateTimeGreaterThan = value; return this; } public Date getLastSavedDateTimeLessThan() { return LastSavedDateTimeLessThan; } public SH_BookInMainQuery setLastSavedDateTimeLessThan(Date value) { this.LastSavedDateTimeLessThan = value; return this; } public Date getLastSavedDateTimeLessThanOrEqualTo() { return LastSavedDateTimeLessThanOrEqualTo; } public SH_BookInMainQuery setLastSavedDateTimeLessThanOrEqualTo(Date value) { this.LastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeNotEqualTo() { return LastSavedDateTimeNotEqualTo; } public SH_BookInMainQuery setLastSavedDateTimeNotEqualTo(Date value) { this.LastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getLastSavedDateTimeBetween() { return LastSavedDateTimeBetween; } public SH_BookInMainQuery setLastSavedDateTimeBetween(ArrayList value) { this.LastSavedDateTimeBetween = value; return this; } public ArrayList getLastSavedDateTimeIn() { return LastSavedDateTimeIn; } public SH_BookInMainQuery setLastSavedDateTimeIn(ArrayList value) { this.LastSavedDateTimeIn = value; return this; } public String getShipmentID() { return ShipmentID; } public SH_BookInMainQuery setShipmentID(String value) { this.ShipmentID = value; return this; } public String getShipmentIDStartsWith() { return ShipmentIDStartsWith; } public SH_BookInMainQuery setShipmentIDStartsWith(String value) { this.ShipmentIDStartsWith = value; return this; } public String getShipmentIDEndsWith() { return ShipmentIDEndsWith; } public SH_BookInMainQuery setShipmentIDEndsWith(String value) { this.ShipmentIDEndsWith = value; return this; } public String getShipmentIDContains() { return ShipmentIDContains; } public SH_BookInMainQuery setShipmentIDContains(String value) { this.ShipmentIDContains = value; return this; } public String getShipmentIDLike() { return ShipmentIDLike; } public SH_BookInMainQuery setShipmentIDLike(String value) { this.ShipmentIDLike = value; return this; } public ArrayList getShipmentIDBetween() { return ShipmentIDBetween; } public SH_BookInMainQuery setShipmentIDBetween(ArrayList value) { this.ShipmentIDBetween = value; return this; } public ArrayList getShipmentIDIn() { return ShipmentIDIn; } public SH_BookInMainQuery setShipmentIDIn(ArrayList value) { this.ShipmentIDIn = value; return this; } public Date getBookInDate() { return BookInDate; } public SH_BookInMainQuery setBookInDate(Date value) { this.BookInDate = value; return this; } public Date getBookInDateGreaterThanOrEqualTo() { return BookInDateGreaterThanOrEqualTo; } public SH_BookInMainQuery setBookInDateGreaterThanOrEqualTo(Date value) { this.BookInDateGreaterThanOrEqualTo = value; return this; } public Date getBookInDateGreaterThan() { return BookInDateGreaterThan; } public SH_BookInMainQuery setBookInDateGreaterThan(Date value) { this.BookInDateGreaterThan = value; return this; } public Date getBookInDateLessThan() { return BookInDateLessThan; } public SH_BookInMainQuery setBookInDateLessThan(Date value) { this.BookInDateLessThan = value; return this; } public Date getBookInDateLessThanOrEqualTo() { return BookInDateLessThanOrEqualTo; } public SH_BookInMainQuery setBookInDateLessThanOrEqualTo(Date value) { this.BookInDateLessThanOrEqualTo = value; return this; } public Date getBookInDateNotEqualTo() { return BookInDateNotEqualTo; } public SH_BookInMainQuery setBookInDateNotEqualTo(Date value) { this.BookInDateNotEqualTo = value; return this; } public ArrayList getBookInDateBetween() { return BookInDateBetween; } public SH_BookInMainQuery setBookInDateBetween(ArrayList value) { this.BookInDateBetween = value; return this; } public ArrayList getBookInDateIn() { return BookInDateIn; } public SH_BookInMainQuery setBookInDateIn(ArrayList value) { this.BookInDateIn = value; return this; } public Boolean isStatus() { return Status; } public SH_BookInMainQuery setStatus(Boolean value) { this.Status = value; return this; } public String getInLogicalID() { return IN_LogicalID; } public SH_BookInMainQuery setInLogicalID(String value) { this.IN_LogicalID = value; return this; } public String getInLogicalIDStartsWith() { return IN_LogicalIDStartsWith; } public SH_BookInMainQuery setInLogicalIDStartsWith(String value) { this.IN_LogicalIDStartsWith = value; return this; } public String getInLogicalIDEndsWith() { return IN_LogicalIDEndsWith; } public SH_BookInMainQuery setInLogicalIDEndsWith(String value) { this.IN_LogicalIDEndsWith = value; return this; } public String getInLogicalIDContains() { return IN_LogicalIDContains; } public SH_BookInMainQuery setInLogicalIDContains(String value) { this.IN_LogicalIDContains = value; return this; } public String getInLogicalIDLike() { return IN_LogicalIDLike; } public SH_BookInMainQuery setInLogicalIDLike(String value) { this.IN_LogicalIDLike = value; return this; } public ArrayList getInLogicalIDBetween() { return IN_LogicalIDBetween; } public SH_BookInMainQuery setInLogicalIDBetween(ArrayList value) { this.IN_LogicalIDBetween = value; return this; } public ArrayList getInLogicalIDIn() { return IN_LogicalIDIn; } public SH_BookInMainQuery setInLogicalIDIn(ArrayList value) { this.IN_LogicalIDIn = value; return this; } public String getSetid() { return SETID; } public SH_BookInMainQuery setSetid(String value) { this.SETID = value; return this; } public String getSetidStartsWith() { return SETIDStartsWith; } public SH_BookInMainQuery setSetidStartsWith(String value) { this.SETIDStartsWith = value; return this; } public String getSetidEndsWith() { return SETIDEndsWith; } public SH_BookInMainQuery setSetidEndsWith(String value) { this.SETIDEndsWith = value; return this; } public String getSetidContains() { return SETIDContains; } public SH_BookInMainQuery setSetidContains(String value) { this.SETIDContains = value; return this; } public String getSetidLike() { return SETIDLike; } public SH_BookInMainQuery setSetidLike(String value) { this.SETIDLike = value; return this; } public ArrayList getSetidBetween() { return SETIDBetween; } public SH_BookInMainQuery setSetidBetween(ArrayList value) { this.SETIDBetween = value; return this; } public ArrayList getSetidIn() { return SETIDIn; } public SH_BookInMainQuery setSetidIn(ArrayList value) { this.SETIDIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class SH_CostsQuery extends QueryDb implements IReturn> { public String CostsID = null; public String CostsIDStartsWith = null; public String CostsIDEndsWith = null; public String CostsIDContains = null; public String CostsIDLike = null; public ArrayList CostsIDBetween = null; public ArrayList CostsIDIn = null; public String ShipmentID = null; public String ShipmentIDStartsWith = null; public String ShipmentIDEndsWith = null; public String ShipmentIDContains = null; public String ShipmentIDLike = null; public ArrayList ShipmentIDBetween = null; public ArrayList ShipmentIDIn = null; public String CreditorID = null; public String CreditorIDStartsWith = null; public String CreditorIDEndsWith = null; public String CreditorIDContains = null; public String CreditorIDLike = null; public ArrayList CreditorIDBetween = null; public ArrayList CreditorIDIn = null; public String CostType = null; public String CostTypeStartsWith = null; public String CostTypeEndsWith = null; public String CostTypeContains = null; public String CostTypeLike = null; public ArrayList CostTypeBetween = null; public ArrayList CostTypeIn = null; public BigDecimal FXAmount = null; public BigDecimal FXAmountGreaterThanOrEqualTo = null; public BigDecimal FXAmountGreaterThan = null; public BigDecimal FXAmountLessThan = null; public BigDecimal FXAmountLessThanOrEqualTo = null; public BigDecimal FXAmountNotEqualTo = null; public ArrayList FXAmountBetween = null; public ArrayList FXAmountIn = null; public BigDecimal FXRate = null; public BigDecimal FXRateGreaterThanOrEqualTo = null; public BigDecimal FXRateGreaterThan = null; public BigDecimal FXRateLessThan = null; public BigDecimal FXRateLessThanOrEqualTo = null; public BigDecimal FXRateNotEqualTo = null; public ArrayList FXRateBetween = null; public ArrayList FXRateIn = null; public String CurrencyID = null; public String CurrencyIDStartsWith = null; public String CurrencyIDEndsWith = null; public String CurrencyIDContains = null; public String CurrencyIDLike = null; public ArrayList CurrencyIDBetween = null; public ArrayList CurrencyIDIn = null; public BigDecimal HomeAmount = null; public BigDecimal HomeAmountGreaterThanOrEqualTo = null; public BigDecimal HomeAmountGreaterThan = null; public BigDecimal HomeAmountLessThan = null; public BigDecimal HomeAmountLessThanOrEqualTo = null; public BigDecimal HomeAmountNotEqualTo = null; public ArrayList HomeAmountBetween = null; public ArrayList HomeAmountIn = null; public BigDecimal GSTAmount = null; public BigDecimal GSTAmountGreaterThanOrEqualTo = null; public BigDecimal GSTAmountGreaterThan = null; public BigDecimal GSTAmountLessThan = null; public BigDecimal GSTAmountLessThanOrEqualTo = null; public BigDecimal GSTAmountNotEqualTo = null; public ArrayList GSTAmountBetween = null; public ArrayList GSTAmountIn = null; public BigDecimal GSTRate = null; public BigDecimal GSTRateGreaterThanOrEqualTo = null; public BigDecimal GSTRateGreaterThan = null; public BigDecimal GSTRateLessThan = null; public BigDecimal GSTRateLessThanOrEqualTo = null; public BigDecimal GSTRateNotEqualTo = null; public ArrayList GSTRateBetween = null; public ArrayList GSTRateIn = null; public String GSTID = null; public String GSTIDStartsWith = null; public String GSTIDEndsWith = null; public String GSTIDContains = null; public String GSTIDLike = null; public ArrayList GSTIDBetween = null; public ArrayList GSTIDIn = null; public BigDecimal TotalAmount = null; public BigDecimal TotalAmountGreaterThanOrEqualTo = null; public BigDecimal TotalAmountGreaterThan = null; public BigDecimal TotalAmountLessThan = null; public BigDecimal TotalAmountLessThanOrEqualTo = null; public BigDecimal TotalAmountNotEqualTo = null; public ArrayList TotalAmountBetween = null; public ArrayList TotalAmountIn = null; public Short ApportionMethod = null; public Short ApportionMethodGreaterThanOrEqualTo = null; public Short ApportionMethodGreaterThan = null; public Short ApportionMethodLessThan = null; public Short ApportionMethodLessThanOrEqualTo = null; public Short ApportionMethodNotEqualTo = null; public ArrayList ApportionMethodBetween = null; public ArrayList ApportionMethodIn = null; public Boolean Apportioned = null; public Boolean Invoiced = null; public String CR_TransID = null; public String CR_TransIDStartsWith = null; public String CR_TransIDEndsWith = null; public String CR_TransIDContains = null; public String CR_TransIDLike = null; public ArrayList CR_TransIDBetween = null; public ArrayList CR_TransIDIn = null; public Date DueDate = null; public Date DueDateGreaterThanOrEqualTo = null; public Date DueDateGreaterThan = null; public Date DueDateLessThan = null; public Date DueDateLessThanOrEqualTo = null; public Date DueDateNotEqualTo = null; public ArrayList DueDateBetween = null; public ArrayList DueDateIn = null; public String InvoiceNo = null; public String InvoiceNoStartsWith = null; public String InvoiceNoEndsWith = null; public String InvoiceNoContains = null; public String InvoiceNoLike = null; public ArrayList InvoiceNoBetween = null; public ArrayList InvoiceNoIn = null; public String Reference = null; public String ReferenceStartsWith = null; public String ReferenceEndsWith = null; public String ReferenceContains = null; public String ReferenceLike = null; public ArrayList ReferenceBetween = null; public ArrayList ReferenceIn = null; public String CreditorLedgerID = null; public String CreditorLedgerIDStartsWith = null; public String CreditorLedgerIDEndsWith = null; public String CreditorLedgerIDContains = null; public String CreditorLedgerIDLike = null; public ArrayList CreditorLedgerIDBetween = null; public ArrayList CreditorLedgerIDIn = null; public String LedgerID = null; public String LedgerIDStartsWith = null; public String LedgerIDEndsWith = null; public String LedgerIDContains = null; public String LedgerIDLike = null; public ArrayList LedgerIDBetween = null; public ArrayList LedgerIDIn = null; public String UserField1 = null; public String UserField1StartsWith = null; public String UserField1EndsWith = null; public String UserField1Contains = null; public String UserField1Like = null; public ArrayList UserField1Between = null; public ArrayList UserField1In = null; public String UserField2 = null; public String UserField2StartsWith = null; public String UserField2EndsWith = null; public String UserField2Contains = null; public String UserField2Like = null; public ArrayList UserField2Between = null; public ArrayList UserField2In = null; public String UserField3 = null; public String UserField3StartsWith = null; public String UserField3EndsWith = null; public String UserField3Contains = null; public String UserField3Like = null; public ArrayList UserField3Between = null; public ArrayList UserField3In = null; public String UserField4 = null; public String UserField4StartsWith = null; public String UserField4EndsWith = null; public String UserField4Contains = null; public String UserField4Like = null; public ArrayList UserField4Between = null; public ArrayList UserField4In = null; public String UserField5 = null; public String UserField5StartsWith = null; public String UserField5EndsWith = null; public String UserField5Contains = null; public String UserField5Like = null; public ArrayList UserField5Between = null; public ArrayList UserField5In = null; public String UserField6 = null; public String UserField6StartsWith = null; public String UserField6EndsWith = null; public String UserField6Contains = null; public String UserField6Like = null; public ArrayList UserField6Between = null; public ArrayList UserField6In = null; public String UserField7 = null; public String UserField7StartsWith = null; public String UserField7EndsWith = null; public String UserField7Contains = null; public String UserField7Like = null; public ArrayList UserField7Between = null; public ArrayList UserField7In = null; public String UserField8 = null; public String UserField8StartsWith = null; public String UserField8EndsWith = null; public String UserField8Contains = null; public String UserField8Like = null; public ArrayList UserField8Between = null; public ArrayList UserField8In = null; public String UserField9 = null; public String UserField9StartsWith = null; public String UserField9EndsWith = null; public String UserField9Contains = null; public String UserField9Like = null; public ArrayList UserField9Between = null; public ArrayList UserField9In = null; public String UserField10 = null; public String UserField10StartsWith = null; public String UserField10EndsWith = null; public String UserField10Contains = null; public String UserField10Like = null; public ArrayList UserField10Between = null; public ArrayList UserField10In = null; public Date LastSavedDateTime = null; public Date LastSavedDateTimeGreaterThanOrEqualTo = null; public Date LastSavedDateTimeGreaterThan = null; public Date LastSavedDateTimeLessThan = null; public Date LastSavedDateTimeLessThanOrEqualTo = null; public Date LastSavedDateTimeNotEqualTo = null; public ArrayList LastSavedDateTimeBetween = null; public ArrayList LastSavedDateTimeIn = null; public Integer AUDDecimalPlaces = null; public Integer AUDDecimalPlacesGreaterThanOrEqualTo = null; public Integer AUDDecimalPlacesGreaterThan = null; public Integer AUDDecimalPlacesLessThan = null; public Integer AUDDecimalPlacesLessThanOrEqualTo = null; public Integer AUDDecimalPlacesNotEqualTo = null; public ArrayList AUDDecimalPlacesBetween = null; public ArrayList AUDDecimalPlacesIn = null; public Integer FXDecimalPlaces = null; public Integer FXDecimalPlacesGreaterThanOrEqualTo = null; public Integer FXDecimalPlacesGreaterThan = null; public Integer FXDecimalPlacesLessThan = null; public Integer FXDecimalPlacesLessThanOrEqualTo = null; public Integer FXDecimalPlacesNotEqualTo = null; public ArrayList FXDecimalPlacesBetween = null; public ArrayList FXDecimalPlacesIn = null; public Date InvoiceDate = null; public Date InvoiceDateGreaterThanOrEqualTo = null; public Date InvoiceDateGreaterThan = null; public Date InvoiceDateLessThan = null; public Date InvoiceDateLessThanOrEqualTo = null; public Date InvoiceDateNotEqualTo = null; public ArrayList InvoiceDateBetween = null; public ArrayList InvoiceDateIn = null; public Integer DisplayOrder = null; public Integer DisplayOrderGreaterThanOrEqualTo = null; public Integer DisplayOrderGreaterThan = null; public Integer DisplayOrderLessThan = null; public Integer DisplayOrderLessThanOrEqualTo = null; public Integer DisplayOrderNotEqualTo = null; public ArrayList DisplayOrderBetween = null; public ArrayList DisplayOrderIn = null; public String SH_CostTypes_RecID = null; public String SH_CostTypes_RecIDStartsWith = null; public String SH_CostTypes_RecIDEndsWith = null; public String SH_CostTypes_RecIDContains = null; public String SH_CostTypes_RecIDLike = null; public ArrayList SH_CostTypes_RecIDBetween = null; public ArrayList SH_CostTypes_RecIDIn = null; public String getCostsID() { return CostsID; } public SH_CostsQuery setCostsID(String value) { this.CostsID = value; return this; } public String getCostsIDStartsWith() { return CostsIDStartsWith; } public SH_CostsQuery setCostsIDStartsWith(String value) { this.CostsIDStartsWith = value; return this; } public String getCostsIDEndsWith() { return CostsIDEndsWith; } public SH_CostsQuery setCostsIDEndsWith(String value) { this.CostsIDEndsWith = value; return this; } public String getCostsIDContains() { return CostsIDContains; } public SH_CostsQuery setCostsIDContains(String value) { this.CostsIDContains = value; return this; } public String getCostsIDLike() { return CostsIDLike; } public SH_CostsQuery setCostsIDLike(String value) { this.CostsIDLike = value; return this; } public ArrayList getCostsIDBetween() { return CostsIDBetween; } public SH_CostsQuery setCostsIDBetween(ArrayList value) { this.CostsIDBetween = value; return this; } public ArrayList getCostsIDIn() { return CostsIDIn; } public SH_CostsQuery setCostsIDIn(ArrayList value) { this.CostsIDIn = value; return this; } public String getShipmentID() { return ShipmentID; } public SH_CostsQuery setShipmentID(String value) { this.ShipmentID = value; return this; } public String getShipmentIDStartsWith() { return ShipmentIDStartsWith; } public SH_CostsQuery setShipmentIDStartsWith(String value) { this.ShipmentIDStartsWith = value; return this; } public String getShipmentIDEndsWith() { return ShipmentIDEndsWith; } public SH_CostsQuery setShipmentIDEndsWith(String value) { this.ShipmentIDEndsWith = value; return this; } public String getShipmentIDContains() { return ShipmentIDContains; } public SH_CostsQuery setShipmentIDContains(String value) { this.ShipmentIDContains = value; return this; } public String getShipmentIDLike() { return ShipmentIDLike; } public SH_CostsQuery setShipmentIDLike(String value) { this.ShipmentIDLike = value; return this; } public ArrayList getShipmentIDBetween() { return ShipmentIDBetween; } public SH_CostsQuery setShipmentIDBetween(ArrayList value) { this.ShipmentIDBetween = value; return this; } public ArrayList getShipmentIDIn() { return ShipmentIDIn; } public SH_CostsQuery setShipmentIDIn(ArrayList value) { this.ShipmentIDIn = value; return this; } public String getCreditorID() { return CreditorID; } public SH_CostsQuery setCreditorID(String value) { this.CreditorID = value; return this; } public String getCreditorIDStartsWith() { return CreditorIDStartsWith; } public SH_CostsQuery setCreditorIDStartsWith(String value) { this.CreditorIDStartsWith = value; return this; } public String getCreditorIDEndsWith() { return CreditorIDEndsWith; } public SH_CostsQuery setCreditorIDEndsWith(String value) { this.CreditorIDEndsWith = value; return this; } public String getCreditorIDContains() { return CreditorIDContains; } public SH_CostsQuery setCreditorIDContains(String value) { this.CreditorIDContains = value; return this; } public String getCreditorIDLike() { return CreditorIDLike; } public SH_CostsQuery setCreditorIDLike(String value) { this.CreditorIDLike = value; return this; } public ArrayList getCreditorIDBetween() { return CreditorIDBetween; } public SH_CostsQuery setCreditorIDBetween(ArrayList value) { this.CreditorIDBetween = value; return this; } public ArrayList getCreditorIDIn() { return CreditorIDIn; } public SH_CostsQuery setCreditorIDIn(ArrayList value) { this.CreditorIDIn = value; return this; } public String getCostType() { return CostType; } public SH_CostsQuery setCostType(String value) { this.CostType = value; return this; } public String getCostTypeStartsWith() { return CostTypeStartsWith; } public SH_CostsQuery setCostTypeStartsWith(String value) { this.CostTypeStartsWith = value; return this; } public String getCostTypeEndsWith() { return CostTypeEndsWith; } public SH_CostsQuery setCostTypeEndsWith(String value) { this.CostTypeEndsWith = value; return this; } public String getCostTypeContains() { return CostTypeContains; } public SH_CostsQuery setCostTypeContains(String value) { this.CostTypeContains = value; return this; } public String getCostTypeLike() { return CostTypeLike; } public SH_CostsQuery setCostTypeLike(String value) { this.CostTypeLike = value; return this; } public ArrayList getCostTypeBetween() { return CostTypeBetween; } public SH_CostsQuery setCostTypeBetween(ArrayList value) { this.CostTypeBetween = value; return this; } public ArrayList getCostTypeIn() { return CostTypeIn; } public SH_CostsQuery setCostTypeIn(ArrayList value) { this.CostTypeIn = value; return this; } public BigDecimal getFxAmount() { return FXAmount; } public SH_CostsQuery setFxAmount(BigDecimal value) { this.FXAmount = value; return this; } public BigDecimal getFxAmountGreaterThanOrEqualTo() { return FXAmountGreaterThanOrEqualTo; } public SH_CostsQuery setFxAmountGreaterThanOrEqualTo(BigDecimal value) { this.FXAmountGreaterThanOrEqualTo = value; return this; } public BigDecimal getFxAmountGreaterThan() { return FXAmountGreaterThan; } public SH_CostsQuery setFxAmountGreaterThan(BigDecimal value) { this.FXAmountGreaterThan = value; return this; } public BigDecimal getFxAmountLessThan() { return FXAmountLessThan; } public SH_CostsQuery setFxAmountLessThan(BigDecimal value) { this.FXAmountLessThan = value; return this; } public BigDecimal getFxAmountLessThanOrEqualTo() { return FXAmountLessThanOrEqualTo; } public SH_CostsQuery setFxAmountLessThanOrEqualTo(BigDecimal value) { this.FXAmountLessThanOrEqualTo = value; return this; } public BigDecimal getFxAmountNotEqualTo() { return FXAmountNotEqualTo; } public SH_CostsQuery setFxAmountNotEqualTo(BigDecimal value) { this.FXAmountNotEqualTo = value; return this; } public ArrayList getFxAmountBetween() { return FXAmountBetween; } public SH_CostsQuery setFxAmountBetween(ArrayList value) { this.FXAmountBetween = value; return this; } public ArrayList getFxAmountIn() { return FXAmountIn; } public SH_CostsQuery setFxAmountIn(ArrayList value) { this.FXAmountIn = value; return this; } public BigDecimal getFxRate() { return FXRate; } public SH_CostsQuery setFxRate(BigDecimal value) { this.FXRate = value; return this; } public BigDecimal getFxRateGreaterThanOrEqualTo() { return FXRateGreaterThanOrEqualTo; } public SH_CostsQuery setFxRateGreaterThanOrEqualTo(BigDecimal value) { this.FXRateGreaterThanOrEqualTo = value; return this; } public BigDecimal getFxRateGreaterThan() { return FXRateGreaterThan; } public SH_CostsQuery setFxRateGreaterThan(BigDecimal value) { this.FXRateGreaterThan = value; return this; } public BigDecimal getFxRateLessThan() { return FXRateLessThan; } public SH_CostsQuery setFxRateLessThan(BigDecimal value) { this.FXRateLessThan = value; return this; } public BigDecimal getFxRateLessThanOrEqualTo() { return FXRateLessThanOrEqualTo; } public SH_CostsQuery setFxRateLessThanOrEqualTo(BigDecimal value) { this.FXRateLessThanOrEqualTo = value; return this; } public BigDecimal getFxRateNotEqualTo() { return FXRateNotEqualTo; } public SH_CostsQuery setFxRateNotEqualTo(BigDecimal value) { this.FXRateNotEqualTo = value; return this; } public ArrayList getFxRateBetween() { return FXRateBetween; } public SH_CostsQuery setFxRateBetween(ArrayList value) { this.FXRateBetween = value; return this; } public ArrayList getFxRateIn() { return FXRateIn; } public SH_CostsQuery setFxRateIn(ArrayList value) { this.FXRateIn = value; return this; } public String getCurrencyID() { return CurrencyID; } public SH_CostsQuery setCurrencyID(String value) { this.CurrencyID = value; return this; } public String getCurrencyIDStartsWith() { return CurrencyIDStartsWith; } public SH_CostsQuery setCurrencyIDStartsWith(String value) { this.CurrencyIDStartsWith = value; return this; } public String getCurrencyIDEndsWith() { return CurrencyIDEndsWith; } public SH_CostsQuery setCurrencyIDEndsWith(String value) { this.CurrencyIDEndsWith = value; return this; } public String getCurrencyIDContains() { return CurrencyIDContains; } public SH_CostsQuery setCurrencyIDContains(String value) { this.CurrencyIDContains = value; return this; } public String getCurrencyIDLike() { return CurrencyIDLike; } public SH_CostsQuery setCurrencyIDLike(String value) { this.CurrencyIDLike = value; return this; } public ArrayList getCurrencyIDBetween() { return CurrencyIDBetween; } public SH_CostsQuery setCurrencyIDBetween(ArrayList value) { this.CurrencyIDBetween = value; return this; } public ArrayList getCurrencyIDIn() { return CurrencyIDIn; } public SH_CostsQuery setCurrencyIDIn(ArrayList value) { this.CurrencyIDIn = value; return this; } public BigDecimal getHomeAmount() { return HomeAmount; } public SH_CostsQuery setHomeAmount(BigDecimal value) { this.HomeAmount = value; return this; } public BigDecimal getHomeAmountGreaterThanOrEqualTo() { return HomeAmountGreaterThanOrEqualTo; } public SH_CostsQuery setHomeAmountGreaterThanOrEqualTo(BigDecimal value) { this.HomeAmountGreaterThanOrEqualTo = value; return this; } public BigDecimal getHomeAmountGreaterThan() { return HomeAmountGreaterThan; } public SH_CostsQuery setHomeAmountGreaterThan(BigDecimal value) { this.HomeAmountGreaterThan = value; return this; } public BigDecimal getHomeAmountLessThan() { return HomeAmountLessThan; } public SH_CostsQuery setHomeAmountLessThan(BigDecimal value) { this.HomeAmountLessThan = value; return this; } public BigDecimal getHomeAmountLessThanOrEqualTo() { return HomeAmountLessThanOrEqualTo; } public SH_CostsQuery setHomeAmountLessThanOrEqualTo(BigDecimal value) { this.HomeAmountLessThanOrEqualTo = value; return this; } public BigDecimal getHomeAmountNotEqualTo() { return HomeAmountNotEqualTo; } public SH_CostsQuery setHomeAmountNotEqualTo(BigDecimal value) { this.HomeAmountNotEqualTo = value; return this; } public ArrayList getHomeAmountBetween() { return HomeAmountBetween; } public SH_CostsQuery setHomeAmountBetween(ArrayList value) { this.HomeAmountBetween = value; return this; } public ArrayList getHomeAmountIn() { return HomeAmountIn; } public SH_CostsQuery setHomeAmountIn(ArrayList value) { this.HomeAmountIn = value; return this; } public BigDecimal getGstAmount() { return GSTAmount; } public SH_CostsQuery setGstAmount(BigDecimal value) { this.GSTAmount = value; return this; } public BigDecimal getGstAmountGreaterThanOrEqualTo() { return GSTAmountGreaterThanOrEqualTo; } public SH_CostsQuery setGstAmountGreaterThanOrEqualTo(BigDecimal value) { this.GSTAmountGreaterThanOrEqualTo = value; return this; } public BigDecimal getGstAmountGreaterThan() { return GSTAmountGreaterThan; } public SH_CostsQuery setGstAmountGreaterThan(BigDecimal value) { this.GSTAmountGreaterThan = value; return this; } public BigDecimal getGstAmountLessThan() { return GSTAmountLessThan; } public SH_CostsQuery setGstAmountLessThan(BigDecimal value) { this.GSTAmountLessThan = value; return this; } public BigDecimal getGstAmountLessThanOrEqualTo() { return GSTAmountLessThanOrEqualTo; } public SH_CostsQuery setGstAmountLessThanOrEqualTo(BigDecimal value) { this.GSTAmountLessThanOrEqualTo = value; return this; } public BigDecimal getGstAmountNotEqualTo() { return GSTAmountNotEqualTo; } public SH_CostsQuery setGstAmountNotEqualTo(BigDecimal value) { this.GSTAmountNotEqualTo = value; return this; } public ArrayList getGstAmountBetween() { return GSTAmountBetween; } public SH_CostsQuery setGstAmountBetween(ArrayList value) { this.GSTAmountBetween = value; return this; } public ArrayList getGstAmountIn() { return GSTAmountIn; } public SH_CostsQuery setGstAmountIn(ArrayList value) { this.GSTAmountIn = value; return this; } public BigDecimal getGstRate() { return GSTRate; } public SH_CostsQuery setGstRate(BigDecimal value) { this.GSTRate = value; return this; } public BigDecimal getGstRateGreaterThanOrEqualTo() { return GSTRateGreaterThanOrEqualTo; } public SH_CostsQuery setGstRateGreaterThanOrEqualTo(BigDecimal value) { this.GSTRateGreaterThanOrEqualTo = value; return this; } public BigDecimal getGstRateGreaterThan() { return GSTRateGreaterThan; } public SH_CostsQuery setGstRateGreaterThan(BigDecimal value) { this.GSTRateGreaterThan = value; return this; } public BigDecimal getGstRateLessThan() { return GSTRateLessThan; } public SH_CostsQuery setGstRateLessThan(BigDecimal value) { this.GSTRateLessThan = value; return this; } public BigDecimal getGstRateLessThanOrEqualTo() { return GSTRateLessThanOrEqualTo; } public SH_CostsQuery setGstRateLessThanOrEqualTo(BigDecimal value) { this.GSTRateLessThanOrEqualTo = value; return this; } public BigDecimal getGstRateNotEqualTo() { return GSTRateNotEqualTo; } public SH_CostsQuery setGstRateNotEqualTo(BigDecimal value) { this.GSTRateNotEqualTo = value; return this; } public ArrayList getGstRateBetween() { return GSTRateBetween; } public SH_CostsQuery setGstRateBetween(ArrayList value) { this.GSTRateBetween = value; return this; } public ArrayList getGstRateIn() { return GSTRateIn; } public SH_CostsQuery setGstRateIn(ArrayList value) { this.GSTRateIn = value; return this; } public String getGstid() { return GSTID; } public SH_CostsQuery setGstid(String value) { this.GSTID = value; return this; } public String getGstidStartsWith() { return GSTIDStartsWith; } public SH_CostsQuery setGstidStartsWith(String value) { this.GSTIDStartsWith = value; return this; } public String getGstidEndsWith() { return GSTIDEndsWith; } public SH_CostsQuery setGstidEndsWith(String value) { this.GSTIDEndsWith = value; return this; } public String getGstidContains() { return GSTIDContains; } public SH_CostsQuery setGstidContains(String value) { this.GSTIDContains = value; return this; } public String getGstidLike() { return GSTIDLike; } public SH_CostsQuery setGstidLike(String value) { this.GSTIDLike = value; return this; } public ArrayList getGstidBetween() { return GSTIDBetween; } public SH_CostsQuery setGstidBetween(ArrayList value) { this.GSTIDBetween = value; return this; } public ArrayList getGstidIn() { return GSTIDIn; } public SH_CostsQuery setGstidIn(ArrayList value) { this.GSTIDIn = value; return this; } public BigDecimal getTotalAmount() { return TotalAmount; } public SH_CostsQuery setTotalAmount(BigDecimal value) { this.TotalAmount = value; return this; } public BigDecimal getTotalAmountGreaterThanOrEqualTo() { return TotalAmountGreaterThanOrEqualTo; } public SH_CostsQuery setTotalAmountGreaterThanOrEqualTo(BigDecimal value) { this.TotalAmountGreaterThanOrEqualTo = value; return this; } public BigDecimal getTotalAmountGreaterThan() { return TotalAmountGreaterThan; } public SH_CostsQuery setTotalAmountGreaterThan(BigDecimal value) { this.TotalAmountGreaterThan = value; return this; } public BigDecimal getTotalAmountLessThan() { return TotalAmountLessThan; } public SH_CostsQuery setTotalAmountLessThan(BigDecimal value) { this.TotalAmountLessThan = value; return this; } public BigDecimal getTotalAmountLessThanOrEqualTo() { return TotalAmountLessThanOrEqualTo; } public SH_CostsQuery setTotalAmountLessThanOrEqualTo(BigDecimal value) { this.TotalAmountLessThanOrEqualTo = value; return this; } public BigDecimal getTotalAmountNotEqualTo() { return TotalAmountNotEqualTo; } public SH_CostsQuery setTotalAmountNotEqualTo(BigDecimal value) { this.TotalAmountNotEqualTo = value; return this; } public ArrayList getTotalAmountBetween() { return TotalAmountBetween; } public SH_CostsQuery setTotalAmountBetween(ArrayList value) { this.TotalAmountBetween = value; return this; } public ArrayList getTotalAmountIn() { return TotalAmountIn; } public SH_CostsQuery setTotalAmountIn(ArrayList value) { this.TotalAmountIn = value; return this; } public Short getApportionMethod() { return ApportionMethod; } public SH_CostsQuery setApportionMethod(Short value) { this.ApportionMethod = value; return this; } public Short getApportionMethodGreaterThanOrEqualTo() { return ApportionMethodGreaterThanOrEqualTo; } public SH_CostsQuery setApportionMethodGreaterThanOrEqualTo(Short value) { this.ApportionMethodGreaterThanOrEqualTo = value; return this; } public Short getApportionMethodGreaterThan() { return ApportionMethodGreaterThan; } public SH_CostsQuery setApportionMethodGreaterThan(Short value) { this.ApportionMethodGreaterThan = value; return this; } public Short getApportionMethodLessThan() { return ApportionMethodLessThan; } public SH_CostsQuery setApportionMethodLessThan(Short value) { this.ApportionMethodLessThan = value; return this; } public Short getApportionMethodLessThanOrEqualTo() { return ApportionMethodLessThanOrEqualTo; } public SH_CostsQuery setApportionMethodLessThanOrEqualTo(Short value) { this.ApportionMethodLessThanOrEqualTo = value; return this; } public Short getApportionMethodNotEqualTo() { return ApportionMethodNotEqualTo; } public SH_CostsQuery setApportionMethodNotEqualTo(Short value) { this.ApportionMethodNotEqualTo = value; return this; } public ArrayList getApportionMethodBetween() { return ApportionMethodBetween; } public SH_CostsQuery setApportionMethodBetween(ArrayList value) { this.ApportionMethodBetween = value; return this; } public ArrayList getApportionMethodIn() { return ApportionMethodIn; } public SH_CostsQuery setApportionMethodIn(ArrayList value) { this.ApportionMethodIn = value; return this; } public Boolean isApportioned() { return Apportioned; } public SH_CostsQuery setApportioned(Boolean value) { this.Apportioned = value; return this; } public Boolean isInvoiced() { return Invoiced; } public SH_CostsQuery setInvoiced(Boolean value) { this.Invoiced = value; return this; } public String getCrTransID() { return CR_TransID; } public SH_CostsQuery setCrTransID(String value) { this.CR_TransID = value; return this; } public String getCrTransIDStartsWith() { return CR_TransIDStartsWith; } public SH_CostsQuery setCrTransIDStartsWith(String value) { this.CR_TransIDStartsWith = value; return this; } public String getCrTransIDEndsWith() { return CR_TransIDEndsWith; } public SH_CostsQuery setCrTransIDEndsWith(String value) { this.CR_TransIDEndsWith = value; return this; } public String getCrTransIDContains() { return CR_TransIDContains; } public SH_CostsQuery setCrTransIDContains(String value) { this.CR_TransIDContains = value; return this; } public String getCrTransIDLike() { return CR_TransIDLike; } public SH_CostsQuery setCrTransIDLike(String value) { this.CR_TransIDLike = value; return this; } public ArrayList getCrTransIDBetween() { return CR_TransIDBetween; } public SH_CostsQuery setCrTransIDBetween(ArrayList value) { this.CR_TransIDBetween = value; return this; } public ArrayList getCrTransIDIn() { return CR_TransIDIn; } public SH_CostsQuery setCrTransIDIn(ArrayList value) { this.CR_TransIDIn = value; return this; } public Date getDueDate() { return DueDate; } public SH_CostsQuery setDueDate(Date value) { this.DueDate = value; return this; } public Date getDueDateGreaterThanOrEqualTo() { return DueDateGreaterThanOrEqualTo; } public SH_CostsQuery setDueDateGreaterThanOrEqualTo(Date value) { this.DueDateGreaterThanOrEqualTo = value; return this; } public Date getDueDateGreaterThan() { return DueDateGreaterThan; } public SH_CostsQuery setDueDateGreaterThan(Date value) { this.DueDateGreaterThan = value; return this; } public Date getDueDateLessThan() { return DueDateLessThan; } public SH_CostsQuery setDueDateLessThan(Date value) { this.DueDateLessThan = value; return this; } public Date getDueDateLessThanOrEqualTo() { return DueDateLessThanOrEqualTo; } public SH_CostsQuery setDueDateLessThanOrEqualTo(Date value) { this.DueDateLessThanOrEqualTo = value; return this; } public Date getDueDateNotEqualTo() { return DueDateNotEqualTo; } public SH_CostsQuery setDueDateNotEqualTo(Date value) { this.DueDateNotEqualTo = value; return this; } public ArrayList getDueDateBetween() { return DueDateBetween; } public SH_CostsQuery setDueDateBetween(ArrayList value) { this.DueDateBetween = value; return this; } public ArrayList getDueDateIn() { return DueDateIn; } public SH_CostsQuery setDueDateIn(ArrayList value) { this.DueDateIn = value; return this; } public String getInvoiceNo() { return InvoiceNo; } public SH_CostsQuery setInvoiceNo(String value) { this.InvoiceNo = value; return this; } public String getInvoiceNoStartsWith() { return InvoiceNoStartsWith; } public SH_CostsQuery setInvoiceNoStartsWith(String value) { this.InvoiceNoStartsWith = value; return this; } public String getInvoiceNoEndsWith() { return InvoiceNoEndsWith; } public SH_CostsQuery setInvoiceNoEndsWith(String value) { this.InvoiceNoEndsWith = value; return this; } public String getInvoiceNoContains() { return InvoiceNoContains; } public SH_CostsQuery setInvoiceNoContains(String value) { this.InvoiceNoContains = value; return this; } public String getInvoiceNoLike() { return InvoiceNoLike; } public SH_CostsQuery setInvoiceNoLike(String value) { this.InvoiceNoLike = value; return this; } public ArrayList getInvoiceNoBetween() { return InvoiceNoBetween; } public SH_CostsQuery setInvoiceNoBetween(ArrayList value) { this.InvoiceNoBetween = value; return this; } public ArrayList getInvoiceNoIn() { return InvoiceNoIn; } public SH_CostsQuery setInvoiceNoIn(ArrayList value) { this.InvoiceNoIn = value; return this; } public String getReference() { return Reference; } public SH_CostsQuery setReference(String value) { this.Reference = value; return this; } public String getReferenceStartsWith() { return ReferenceStartsWith; } public SH_CostsQuery setReferenceStartsWith(String value) { this.ReferenceStartsWith = value; return this; } public String getReferenceEndsWith() { return ReferenceEndsWith; } public SH_CostsQuery setReferenceEndsWith(String value) { this.ReferenceEndsWith = value; return this; } public String getReferenceContains() { return ReferenceContains; } public SH_CostsQuery setReferenceContains(String value) { this.ReferenceContains = value; return this; } public String getReferenceLike() { return ReferenceLike; } public SH_CostsQuery setReferenceLike(String value) { this.ReferenceLike = value; return this; } public ArrayList getReferenceBetween() { return ReferenceBetween; } public SH_CostsQuery setReferenceBetween(ArrayList value) { this.ReferenceBetween = value; return this; } public ArrayList getReferenceIn() { return ReferenceIn; } public SH_CostsQuery setReferenceIn(ArrayList value) { this.ReferenceIn = value; return this; } public String getCreditorLedgerID() { return CreditorLedgerID; } public SH_CostsQuery setCreditorLedgerID(String value) { this.CreditorLedgerID = value; return this; } public String getCreditorLedgerIDStartsWith() { return CreditorLedgerIDStartsWith; } public SH_CostsQuery setCreditorLedgerIDStartsWith(String value) { this.CreditorLedgerIDStartsWith = value; return this; } public String getCreditorLedgerIDEndsWith() { return CreditorLedgerIDEndsWith; } public SH_CostsQuery setCreditorLedgerIDEndsWith(String value) { this.CreditorLedgerIDEndsWith = value; return this; } public String getCreditorLedgerIDContains() { return CreditorLedgerIDContains; } public SH_CostsQuery setCreditorLedgerIDContains(String value) { this.CreditorLedgerIDContains = value; return this; } public String getCreditorLedgerIDLike() { return CreditorLedgerIDLike; } public SH_CostsQuery setCreditorLedgerIDLike(String value) { this.CreditorLedgerIDLike = value; return this; } public ArrayList getCreditorLedgerIDBetween() { return CreditorLedgerIDBetween; } public SH_CostsQuery setCreditorLedgerIDBetween(ArrayList value) { this.CreditorLedgerIDBetween = value; return this; } public ArrayList getCreditorLedgerIDIn() { return CreditorLedgerIDIn; } public SH_CostsQuery setCreditorLedgerIDIn(ArrayList value) { this.CreditorLedgerIDIn = value; return this; } public String getLedgerID() { return LedgerID; } public SH_CostsQuery setLedgerID(String value) { this.LedgerID = value; return this; } public String getLedgerIDStartsWith() { return LedgerIDStartsWith; } public SH_CostsQuery setLedgerIDStartsWith(String value) { this.LedgerIDStartsWith = value; return this; } public String getLedgerIDEndsWith() { return LedgerIDEndsWith; } public SH_CostsQuery setLedgerIDEndsWith(String value) { this.LedgerIDEndsWith = value; return this; } public String getLedgerIDContains() { return LedgerIDContains; } public SH_CostsQuery setLedgerIDContains(String value) { this.LedgerIDContains = value; return this; } public String getLedgerIDLike() { return LedgerIDLike; } public SH_CostsQuery setLedgerIDLike(String value) { this.LedgerIDLike = value; return this; } public ArrayList getLedgerIDBetween() { return LedgerIDBetween; } public SH_CostsQuery setLedgerIDBetween(ArrayList value) { this.LedgerIDBetween = value; return this; } public ArrayList getLedgerIDIn() { return LedgerIDIn; } public SH_CostsQuery setLedgerIDIn(ArrayList value) { this.LedgerIDIn = value; return this; } public String getUserField1() { return UserField1; } public SH_CostsQuery setUserField1(String value) { this.UserField1 = value; return this; } public String getUserField1StartsWith() { return UserField1StartsWith; } public SH_CostsQuery setUserField1StartsWith(String value) { this.UserField1StartsWith = value; return this; } public String getUserField1EndsWith() { return UserField1EndsWith; } public SH_CostsQuery setUserField1EndsWith(String value) { this.UserField1EndsWith = value; return this; } public String getUserField1Contains() { return UserField1Contains; } public SH_CostsQuery setUserField1Contains(String value) { this.UserField1Contains = value; return this; } public String getUserField1Like() { return UserField1Like; } public SH_CostsQuery setUserField1Like(String value) { this.UserField1Like = value; return this; } public ArrayList getUserField1Between() { return UserField1Between; } public SH_CostsQuery setUserField1Between(ArrayList value) { this.UserField1Between = value; return this; } public ArrayList getUserField1In() { return UserField1In; } public SH_CostsQuery setUserField1In(ArrayList value) { this.UserField1In = value; return this; } public String getUserField2() { return UserField2; } public SH_CostsQuery setUserField2(String value) { this.UserField2 = value; return this; } public String getUserField2StartsWith() { return UserField2StartsWith; } public SH_CostsQuery setUserField2StartsWith(String value) { this.UserField2StartsWith = value; return this; } public String getUserField2EndsWith() { return UserField2EndsWith; } public SH_CostsQuery setUserField2EndsWith(String value) { this.UserField2EndsWith = value; return this; } public String getUserField2Contains() { return UserField2Contains; } public SH_CostsQuery setUserField2Contains(String value) { this.UserField2Contains = value; return this; } public String getUserField2Like() { return UserField2Like; } public SH_CostsQuery setUserField2Like(String value) { this.UserField2Like = value; return this; } public ArrayList getUserField2Between() { return UserField2Between; } public SH_CostsQuery setUserField2Between(ArrayList value) { this.UserField2Between = value; return this; } public ArrayList getUserField2In() { return UserField2In; } public SH_CostsQuery setUserField2In(ArrayList value) { this.UserField2In = value; return this; } public String getUserField3() { return UserField3; } public SH_CostsQuery setUserField3(String value) { this.UserField3 = value; return this; } public String getUserField3StartsWith() { return UserField3StartsWith; } public SH_CostsQuery setUserField3StartsWith(String value) { this.UserField3StartsWith = value; return this; } public String getUserField3EndsWith() { return UserField3EndsWith; } public SH_CostsQuery setUserField3EndsWith(String value) { this.UserField3EndsWith = value; return this; } public String getUserField3Contains() { return UserField3Contains; } public SH_CostsQuery setUserField3Contains(String value) { this.UserField3Contains = value; return this; } public String getUserField3Like() { return UserField3Like; } public SH_CostsQuery setUserField3Like(String value) { this.UserField3Like = value; return this; } public ArrayList getUserField3Between() { return UserField3Between; } public SH_CostsQuery setUserField3Between(ArrayList value) { this.UserField3Between = value; return this; } public ArrayList getUserField3In() { return UserField3In; } public SH_CostsQuery setUserField3In(ArrayList value) { this.UserField3In = value; return this; } public String getUserField4() { return UserField4; } public SH_CostsQuery setUserField4(String value) { this.UserField4 = value; return this; } public String getUserField4StartsWith() { return UserField4StartsWith; } public SH_CostsQuery setUserField4StartsWith(String value) { this.UserField4StartsWith = value; return this; } public String getUserField4EndsWith() { return UserField4EndsWith; } public SH_CostsQuery setUserField4EndsWith(String value) { this.UserField4EndsWith = value; return this; } public String getUserField4Contains() { return UserField4Contains; } public SH_CostsQuery setUserField4Contains(String value) { this.UserField4Contains = value; return this; } public String getUserField4Like() { return UserField4Like; } public SH_CostsQuery setUserField4Like(String value) { this.UserField4Like = value; return this; } public ArrayList getUserField4Between() { return UserField4Between; } public SH_CostsQuery setUserField4Between(ArrayList value) { this.UserField4Between = value; return this; } public ArrayList getUserField4In() { return UserField4In; } public SH_CostsQuery setUserField4In(ArrayList value) { this.UserField4In = value; return this; } public String getUserField5() { return UserField5; } public SH_CostsQuery setUserField5(String value) { this.UserField5 = value; return this; } public String getUserField5StartsWith() { return UserField5StartsWith; } public SH_CostsQuery setUserField5StartsWith(String value) { this.UserField5StartsWith = value; return this; } public String getUserField5EndsWith() { return UserField5EndsWith; } public SH_CostsQuery setUserField5EndsWith(String value) { this.UserField5EndsWith = value; return this; } public String getUserField5Contains() { return UserField5Contains; } public SH_CostsQuery setUserField5Contains(String value) { this.UserField5Contains = value; return this; } public String getUserField5Like() { return UserField5Like; } public SH_CostsQuery setUserField5Like(String value) { this.UserField5Like = value; return this; } public ArrayList getUserField5Between() { return UserField5Between; } public SH_CostsQuery setUserField5Between(ArrayList value) { this.UserField5Between = value; return this; } public ArrayList getUserField5In() { return UserField5In; } public SH_CostsQuery setUserField5In(ArrayList value) { this.UserField5In = value; return this; } public String getUserField6() { return UserField6; } public SH_CostsQuery setUserField6(String value) { this.UserField6 = value; return this; } public String getUserField6StartsWith() { return UserField6StartsWith; } public SH_CostsQuery setUserField6StartsWith(String value) { this.UserField6StartsWith = value; return this; } public String getUserField6EndsWith() { return UserField6EndsWith; } public SH_CostsQuery setUserField6EndsWith(String value) { this.UserField6EndsWith = value; return this; } public String getUserField6Contains() { return UserField6Contains; } public SH_CostsQuery setUserField6Contains(String value) { this.UserField6Contains = value; return this; } public String getUserField6Like() { return UserField6Like; } public SH_CostsQuery setUserField6Like(String value) { this.UserField6Like = value; return this; } public ArrayList getUserField6Between() { return UserField6Between; } public SH_CostsQuery setUserField6Between(ArrayList value) { this.UserField6Between = value; return this; } public ArrayList getUserField6In() { return UserField6In; } public SH_CostsQuery setUserField6In(ArrayList value) { this.UserField6In = value; return this; } public String getUserField7() { return UserField7; } public SH_CostsQuery setUserField7(String value) { this.UserField7 = value; return this; } public String getUserField7StartsWith() { return UserField7StartsWith; } public SH_CostsQuery setUserField7StartsWith(String value) { this.UserField7StartsWith = value; return this; } public String getUserField7EndsWith() { return UserField7EndsWith; } public SH_CostsQuery setUserField7EndsWith(String value) { this.UserField7EndsWith = value; return this; } public String getUserField7Contains() { return UserField7Contains; } public SH_CostsQuery setUserField7Contains(String value) { this.UserField7Contains = value; return this; } public String getUserField7Like() { return UserField7Like; } public SH_CostsQuery setUserField7Like(String value) { this.UserField7Like = value; return this; } public ArrayList getUserField7Between() { return UserField7Between; } public SH_CostsQuery setUserField7Between(ArrayList value) { this.UserField7Between = value; return this; } public ArrayList getUserField7In() { return UserField7In; } public SH_CostsQuery setUserField7In(ArrayList value) { this.UserField7In = value; return this; } public String getUserField8() { return UserField8; } public SH_CostsQuery setUserField8(String value) { this.UserField8 = value; return this; } public String getUserField8StartsWith() { return UserField8StartsWith; } public SH_CostsQuery setUserField8StartsWith(String value) { this.UserField8StartsWith = value; return this; } public String getUserField8EndsWith() { return UserField8EndsWith; } public SH_CostsQuery setUserField8EndsWith(String value) { this.UserField8EndsWith = value; return this; } public String getUserField8Contains() { return UserField8Contains; } public SH_CostsQuery setUserField8Contains(String value) { this.UserField8Contains = value; return this; } public String getUserField8Like() { return UserField8Like; } public SH_CostsQuery setUserField8Like(String value) { this.UserField8Like = value; return this; } public ArrayList getUserField8Between() { return UserField8Between; } public SH_CostsQuery setUserField8Between(ArrayList value) { this.UserField8Between = value; return this; } public ArrayList getUserField8In() { return UserField8In; } public SH_CostsQuery setUserField8In(ArrayList value) { this.UserField8In = value; return this; } public String getUserField9() { return UserField9; } public SH_CostsQuery setUserField9(String value) { this.UserField9 = value; return this; } public String getUserField9StartsWith() { return UserField9StartsWith; } public SH_CostsQuery setUserField9StartsWith(String value) { this.UserField9StartsWith = value; return this; } public String getUserField9EndsWith() { return UserField9EndsWith; } public SH_CostsQuery setUserField9EndsWith(String value) { this.UserField9EndsWith = value; return this; } public String getUserField9Contains() { return UserField9Contains; } public SH_CostsQuery setUserField9Contains(String value) { this.UserField9Contains = value; return this; } public String getUserField9Like() { return UserField9Like; } public SH_CostsQuery setUserField9Like(String value) { this.UserField9Like = value; return this; } public ArrayList getUserField9Between() { return UserField9Between; } public SH_CostsQuery setUserField9Between(ArrayList value) { this.UserField9Between = value; return this; } public ArrayList getUserField9In() { return UserField9In; } public SH_CostsQuery setUserField9In(ArrayList value) { this.UserField9In = value; return this; } public String getUserField10() { return UserField10; } public SH_CostsQuery setUserField10(String value) { this.UserField10 = value; return this; } public String getUserField10StartsWith() { return UserField10StartsWith; } public SH_CostsQuery setUserField10StartsWith(String value) { this.UserField10StartsWith = value; return this; } public String getUserField10EndsWith() { return UserField10EndsWith; } public SH_CostsQuery setUserField10EndsWith(String value) { this.UserField10EndsWith = value; return this; } public String getUserField10Contains() { return UserField10Contains; } public SH_CostsQuery setUserField10Contains(String value) { this.UserField10Contains = value; return this; } public String getUserField10Like() { return UserField10Like; } public SH_CostsQuery setUserField10Like(String value) { this.UserField10Like = value; return this; } public ArrayList getUserField10Between() { return UserField10Between; } public SH_CostsQuery setUserField10Between(ArrayList value) { this.UserField10Between = value; return this; } public ArrayList getUserField10In() { return UserField10In; } public SH_CostsQuery setUserField10In(ArrayList value) { this.UserField10In = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public SH_CostsQuery setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getLastSavedDateTimeGreaterThanOrEqualTo() { return LastSavedDateTimeGreaterThanOrEqualTo; } public SH_CostsQuery setLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.LastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeGreaterThan() { return LastSavedDateTimeGreaterThan; } public SH_CostsQuery setLastSavedDateTimeGreaterThan(Date value) { this.LastSavedDateTimeGreaterThan = value; return this; } public Date getLastSavedDateTimeLessThan() { return LastSavedDateTimeLessThan; } public SH_CostsQuery setLastSavedDateTimeLessThan(Date value) { this.LastSavedDateTimeLessThan = value; return this; } public Date getLastSavedDateTimeLessThanOrEqualTo() { return LastSavedDateTimeLessThanOrEqualTo; } public SH_CostsQuery setLastSavedDateTimeLessThanOrEqualTo(Date value) { this.LastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeNotEqualTo() { return LastSavedDateTimeNotEqualTo; } public SH_CostsQuery setLastSavedDateTimeNotEqualTo(Date value) { this.LastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getLastSavedDateTimeBetween() { return LastSavedDateTimeBetween; } public SH_CostsQuery setLastSavedDateTimeBetween(ArrayList value) { this.LastSavedDateTimeBetween = value; return this; } public ArrayList getLastSavedDateTimeIn() { return LastSavedDateTimeIn; } public SH_CostsQuery setLastSavedDateTimeIn(ArrayList value) { this.LastSavedDateTimeIn = value; return this; } public Integer getAudDecimalPlaces() { return AUDDecimalPlaces; } public SH_CostsQuery setAudDecimalPlaces(Integer value) { this.AUDDecimalPlaces = value; return this; } public Integer getAudDecimalPlacesGreaterThanOrEqualTo() { return AUDDecimalPlacesGreaterThanOrEqualTo; } public SH_CostsQuery setAudDecimalPlacesGreaterThanOrEqualTo(Integer value) { this.AUDDecimalPlacesGreaterThanOrEqualTo = value; return this; } public Integer getAudDecimalPlacesGreaterThan() { return AUDDecimalPlacesGreaterThan; } public SH_CostsQuery setAudDecimalPlacesGreaterThan(Integer value) { this.AUDDecimalPlacesGreaterThan = value; return this; } public Integer getAudDecimalPlacesLessThan() { return AUDDecimalPlacesLessThan; } public SH_CostsQuery setAudDecimalPlacesLessThan(Integer value) { this.AUDDecimalPlacesLessThan = value; return this; } public Integer getAudDecimalPlacesLessThanOrEqualTo() { return AUDDecimalPlacesLessThanOrEqualTo; } public SH_CostsQuery setAudDecimalPlacesLessThanOrEqualTo(Integer value) { this.AUDDecimalPlacesLessThanOrEqualTo = value; return this; } public Integer getAudDecimalPlacesNotEqualTo() { return AUDDecimalPlacesNotEqualTo; } public SH_CostsQuery setAudDecimalPlacesNotEqualTo(Integer value) { this.AUDDecimalPlacesNotEqualTo = value; return this; } public ArrayList getAudDecimalPlacesBetween() { return AUDDecimalPlacesBetween; } public SH_CostsQuery setAudDecimalPlacesBetween(ArrayList value) { this.AUDDecimalPlacesBetween = value; return this; } public ArrayList getAudDecimalPlacesIn() { return AUDDecimalPlacesIn; } public SH_CostsQuery setAudDecimalPlacesIn(ArrayList value) { this.AUDDecimalPlacesIn = value; return this; } public Integer getFxDecimalPlaces() { return FXDecimalPlaces; } public SH_CostsQuery setFxDecimalPlaces(Integer value) { this.FXDecimalPlaces = value; return this; } public Integer getFxDecimalPlacesGreaterThanOrEqualTo() { return FXDecimalPlacesGreaterThanOrEqualTo; } public SH_CostsQuery setFxDecimalPlacesGreaterThanOrEqualTo(Integer value) { this.FXDecimalPlacesGreaterThanOrEqualTo = value; return this; } public Integer getFxDecimalPlacesGreaterThan() { return FXDecimalPlacesGreaterThan; } public SH_CostsQuery setFxDecimalPlacesGreaterThan(Integer value) { this.FXDecimalPlacesGreaterThan = value; return this; } public Integer getFxDecimalPlacesLessThan() { return FXDecimalPlacesLessThan; } public SH_CostsQuery setFxDecimalPlacesLessThan(Integer value) { this.FXDecimalPlacesLessThan = value; return this; } public Integer getFxDecimalPlacesLessThanOrEqualTo() { return FXDecimalPlacesLessThanOrEqualTo; } public SH_CostsQuery setFxDecimalPlacesLessThanOrEqualTo(Integer value) { this.FXDecimalPlacesLessThanOrEqualTo = value; return this; } public Integer getFxDecimalPlacesNotEqualTo() { return FXDecimalPlacesNotEqualTo; } public SH_CostsQuery setFxDecimalPlacesNotEqualTo(Integer value) { this.FXDecimalPlacesNotEqualTo = value; return this; } public ArrayList getFxDecimalPlacesBetween() { return FXDecimalPlacesBetween; } public SH_CostsQuery setFxDecimalPlacesBetween(ArrayList value) { this.FXDecimalPlacesBetween = value; return this; } public ArrayList getFxDecimalPlacesIn() { return FXDecimalPlacesIn; } public SH_CostsQuery setFxDecimalPlacesIn(ArrayList value) { this.FXDecimalPlacesIn = value; return this; } public Date getInvoiceDate() { return InvoiceDate; } public SH_CostsQuery setInvoiceDate(Date value) { this.InvoiceDate = value; return this; } public Date getInvoiceDateGreaterThanOrEqualTo() { return InvoiceDateGreaterThanOrEqualTo; } public SH_CostsQuery setInvoiceDateGreaterThanOrEqualTo(Date value) { this.InvoiceDateGreaterThanOrEqualTo = value; return this; } public Date getInvoiceDateGreaterThan() { return InvoiceDateGreaterThan; } public SH_CostsQuery setInvoiceDateGreaterThan(Date value) { this.InvoiceDateGreaterThan = value; return this; } public Date getInvoiceDateLessThan() { return InvoiceDateLessThan; } public SH_CostsQuery setInvoiceDateLessThan(Date value) { this.InvoiceDateLessThan = value; return this; } public Date getInvoiceDateLessThanOrEqualTo() { return InvoiceDateLessThanOrEqualTo; } public SH_CostsQuery setInvoiceDateLessThanOrEqualTo(Date value) { this.InvoiceDateLessThanOrEqualTo = value; return this; } public Date getInvoiceDateNotEqualTo() { return InvoiceDateNotEqualTo; } public SH_CostsQuery setInvoiceDateNotEqualTo(Date value) { this.InvoiceDateNotEqualTo = value; return this; } public ArrayList getInvoiceDateBetween() { return InvoiceDateBetween; } public SH_CostsQuery setInvoiceDateBetween(ArrayList value) { this.InvoiceDateBetween = value; return this; } public ArrayList getInvoiceDateIn() { return InvoiceDateIn; } public SH_CostsQuery setInvoiceDateIn(ArrayList value) { this.InvoiceDateIn = value; return this; } public Integer getDisplayOrder() { return DisplayOrder; } public SH_CostsQuery setDisplayOrder(Integer value) { this.DisplayOrder = value; return this; } public Integer getDisplayOrderGreaterThanOrEqualTo() { return DisplayOrderGreaterThanOrEqualTo; } public SH_CostsQuery setDisplayOrderGreaterThanOrEqualTo(Integer value) { this.DisplayOrderGreaterThanOrEqualTo = value; return this; } public Integer getDisplayOrderGreaterThan() { return DisplayOrderGreaterThan; } public SH_CostsQuery setDisplayOrderGreaterThan(Integer value) { this.DisplayOrderGreaterThan = value; return this; } public Integer getDisplayOrderLessThan() { return DisplayOrderLessThan; } public SH_CostsQuery setDisplayOrderLessThan(Integer value) { this.DisplayOrderLessThan = value; return this; } public Integer getDisplayOrderLessThanOrEqualTo() { return DisplayOrderLessThanOrEqualTo; } public SH_CostsQuery setDisplayOrderLessThanOrEqualTo(Integer value) { this.DisplayOrderLessThanOrEqualTo = value; return this; } public Integer getDisplayOrderNotEqualTo() { return DisplayOrderNotEqualTo; } public SH_CostsQuery setDisplayOrderNotEqualTo(Integer value) { this.DisplayOrderNotEqualTo = value; return this; } public ArrayList getDisplayOrderBetween() { return DisplayOrderBetween; } public SH_CostsQuery setDisplayOrderBetween(ArrayList value) { this.DisplayOrderBetween = value; return this; } public ArrayList getDisplayOrderIn() { return DisplayOrderIn; } public SH_CostsQuery setDisplayOrderIn(ArrayList value) { this.DisplayOrderIn = value; return this; } public String getShCostTypesRecID() { return SH_CostTypes_RecID; } public SH_CostsQuery setShCostTypesRecID(String value) { this.SH_CostTypes_RecID = value; return this; } public String getShCostTypesRecIDStartsWith() { return SH_CostTypes_RecIDStartsWith; } public SH_CostsQuery setShCostTypesRecIDStartsWith(String value) { this.SH_CostTypes_RecIDStartsWith = value; return this; } public String getShCostTypesRecIDEndsWith() { return SH_CostTypes_RecIDEndsWith; } public SH_CostsQuery setShCostTypesRecIDEndsWith(String value) { this.SH_CostTypes_RecIDEndsWith = value; return this; } public String getShCostTypesRecIDContains() { return SH_CostTypes_RecIDContains; } public SH_CostsQuery setShCostTypesRecIDContains(String value) { this.SH_CostTypes_RecIDContains = value; return this; } public String getShCostTypesRecIDLike() { return SH_CostTypes_RecIDLike; } public SH_CostsQuery setShCostTypesRecIDLike(String value) { this.SH_CostTypes_RecIDLike = value; return this; } public ArrayList getShCostTypesRecIDBetween() { return SH_CostTypes_RecIDBetween; } public SH_CostsQuery setShCostTypesRecIDBetween(ArrayList value) { this.SH_CostTypes_RecIDBetween = value; return this; } public ArrayList getShCostTypesRecIDIn() { return SH_CostTypes_RecIDIn; } public SH_CostsQuery setShCostTypesRecIDIn(ArrayList value) { this.SH_CostTypes_RecIDIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class SH_CostTypesQuery extends QueryDb implements IReturn> { public String RecID = null; public String RecIDStartsWith = null; public String RecIDEndsWith = null; public String RecIDContains = null; public String RecIDLike = null; public ArrayList RecIDBetween = null; public ArrayList RecIDIn = null; public String Description = null; public String DescriptionStartsWith = null; public String DescriptionEndsWith = null; public String DescriptionContains = null; public String DescriptionLike = null; public ArrayList DescriptionBetween = null; public ArrayList DescriptionIn = null; public String Name = null; public String NameStartsWith = null; public String NameEndsWith = null; public String NameContains = null; public String NameLike = null; public ArrayList NameBetween = null; public ArrayList NameIn = null; public Boolean IsEnabled = null; public Boolean IsDefault = null; public Integer ItemNo = null; public Integer ItemNoGreaterThanOrEqualTo = null; public Integer ItemNoGreaterThan = null; public Integer ItemNoLessThan = null; public Integer ItemNoLessThanOrEqualTo = null; public Integer ItemNoNotEqualTo = null; public ArrayList ItemNoBetween = null; public ArrayList ItemNoIn = null; public ArrayList RowHash = null; public String getRecID() { return RecID; } public SH_CostTypesQuery setRecID(String value) { this.RecID = value; return this; } public String getRecIDStartsWith() { return RecIDStartsWith; } public SH_CostTypesQuery setRecIDStartsWith(String value) { this.RecIDStartsWith = value; return this; } public String getRecIDEndsWith() { return RecIDEndsWith; } public SH_CostTypesQuery setRecIDEndsWith(String value) { this.RecIDEndsWith = value; return this; } public String getRecIDContains() { return RecIDContains; } public SH_CostTypesQuery setRecIDContains(String value) { this.RecIDContains = value; return this; } public String getRecIDLike() { return RecIDLike; } public SH_CostTypesQuery setRecIDLike(String value) { this.RecIDLike = value; return this; } public ArrayList getRecIDBetween() { return RecIDBetween; } public SH_CostTypesQuery setRecIDBetween(ArrayList value) { this.RecIDBetween = value; return this; } public ArrayList getRecIDIn() { return RecIDIn; } public SH_CostTypesQuery setRecIDIn(ArrayList value) { this.RecIDIn = value; return this; } public String getDescription() { return Description; } public SH_CostTypesQuery setDescription(String value) { this.Description = value; return this; } public String getDescriptionStartsWith() { return DescriptionStartsWith; } public SH_CostTypesQuery setDescriptionStartsWith(String value) { this.DescriptionStartsWith = value; return this; } public String getDescriptionEndsWith() { return DescriptionEndsWith; } public SH_CostTypesQuery setDescriptionEndsWith(String value) { this.DescriptionEndsWith = value; return this; } public String getDescriptionContains() { return DescriptionContains; } public SH_CostTypesQuery setDescriptionContains(String value) { this.DescriptionContains = value; return this; } public String getDescriptionLike() { return DescriptionLike; } public SH_CostTypesQuery setDescriptionLike(String value) { this.DescriptionLike = value; return this; } public ArrayList getDescriptionBetween() { return DescriptionBetween; } public SH_CostTypesQuery setDescriptionBetween(ArrayList value) { this.DescriptionBetween = value; return this; } public ArrayList getDescriptionIn() { return DescriptionIn; } public SH_CostTypesQuery setDescriptionIn(ArrayList value) { this.DescriptionIn = value; return this; } public String getName() { return Name; } public SH_CostTypesQuery setName(String value) { this.Name = value; return this; } public String getNameStartsWith() { return NameStartsWith; } public SH_CostTypesQuery setNameStartsWith(String value) { this.NameStartsWith = value; return this; } public String getNameEndsWith() { return NameEndsWith; } public SH_CostTypesQuery setNameEndsWith(String value) { this.NameEndsWith = value; return this; } public String getNameContains() { return NameContains; } public SH_CostTypesQuery setNameContains(String value) { this.NameContains = value; return this; } public String getNameLike() { return NameLike; } public SH_CostTypesQuery setNameLike(String value) { this.NameLike = value; return this; } public ArrayList getNameBetween() { return NameBetween; } public SH_CostTypesQuery setNameBetween(ArrayList value) { this.NameBetween = value; return this; } public ArrayList getNameIn() { return NameIn; } public SH_CostTypesQuery setNameIn(ArrayList value) { this.NameIn = value; return this; } public Boolean getIsEnabled() { return IsEnabled; } public SH_CostTypesQuery setIsEnabled(Boolean value) { this.IsEnabled = value; return this; } public Boolean getIsDefault() { return IsDefault; } public SH_CostTypesQuery setIsDefault(Boolean value) { this.IsDefault = value; return this; } public Integer getItemNo() { return ItemNo; } public SH_CostTypesQuery setItemNo(Integer value) { this.ItemNo = value; return this; } public Integer getItemNoGreaterThanOrEqualTo() { return ItemNoGreaterThanOrEqualTo; } public SH_CostTypesQuery setItemNoGreaterThanOrEqualTo(Integer value) { this.ItemNoGreaterThanOrEqualTo = value; return this; } public Integer getItemNoGreaterThan() { return ItemNoGreaterThan; } public SH_CostTypesQuery setItemNoGreaterThan(Integer value) { this.ItemNoGreaterThan = value; return this; } public Integer getItemNoLessThan() { return ItemNoLessThan; } public SH_CostTypesQuery setItemNoLessThan(Integer value) { this.ItemNoLessThan = value; return this; } public Integer getItemNoLessThanOrEqualTo() { return ItemNoLessThanOrEqualTo; } public SH_CostTypesQuery setItemNoLessThanOrEqualTo(Integer value) { this.ItemNoLessThanOrEqualTo = value; return this; } public Integer getItemNoNotEqualTo() { return ItemNoNotEqualTo; } public SH_CostTypesQuery setItemNoNotEqualTo(Integer value) { this.ItemNoNotEqualTo = value; return this; } public ArrayList getItemNoBetween() { return ItemNoBetween; } public SH_CostTypesQuery setItemNoBetween(ArrayList value) { this.ItemNoBetween = value; return this; } public ArrayList getItemNoIn() { return ItemNoIn; } public SH_CostTypesQuery setItemNoIn(ArrayList value) { this.ItemNoIn = value; return this; } public ArrayList getRowHash() { return RowHash; } public SH_CostTypesQuery setRowHash(ArrayList value) { this.RowHash = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class SH_CustomSettingsQuery extends QueryDb implements IReturn> { public String SettingID = null; public String SettingIDStartsWith = null; public String SettingIDEndsWith = null; public String SettingIDContains = null; public String SettingIDLike = null; public ArrayList SettingIDBetween = null; public ArrayList SettingIDIn = null; public Date LastSavedDateTime = null; public Date LastSavedDateTimeGreaterThanOrEqualTo = null; public Date LastSavedDateTimeGreaterThan = null; public Date LastSavedDateTimeLessThan = null; public Date LastSavedDateTimeLessThanOrEqualTo = null; public Date LastSavedDateTimeNotEqualTo = null; public ArrayList LastSavedDateTimeBetween = null; public ArrayList LastSavedDateTimeIn = null; public String SettingDescription = null; public String SettingDescriptionStartsWith = null; public String SettingDescriptionEndsWith = null; public String SettingDescriptionContains = null; public String SettingDescriptionLike = null; public ArrayList SettingDescriptionBetween = null; public ArrayList SettingDescriptionIn = null; public String SettingName = null; public String SettingNameStartsWith = null; public String SettingNameEndsWith = null; public String SettingNameContains = null; public String SettingNameLike = null; public ArrayList SettingNameBetween = null; public ArrayList SettingNameIn = null; public BigDecimal DisplayOrder = null; public BigDecimal DisplayOrderGreaterThanOrEqualTo = null; public BigDecimal DisplayOrderGreaterThan = null; public BigDecimal DisplayOrderLessThan = null; public BigDecimal DisplayOrderLessThanOrEqualTo = null; public BigDecimal DisplayOrderNotEqualTo = null; public ArrayList DisplayOrderBetween = null; public ArrayList DisplayOrderIn = null; public Short CellType = null; public Short CellTypeGreaterThanOrEqualTo = null; public Short CellTypeGreaterThan = null; public Short CellTypeLessThan = null; public Short CellTypeLessThanOrEqualTo = null; public Short CellTypeNotEqualTo = null; public ArrayList CellTypeBetween = null; public ArrayList CellTypeIn = null; public String ScriptFormatCell = null; public String ScriptFormatCellStartsWith = null; public String ScriptFormatCellEndsWith = null; public String ScriptFormatCellContains = null; public String ScriptFormatCellLike = null; public ArrayList ScriptFormatCellBetween = null; public ArrayList ScriptFormatCellIn = null; public String ScriptButtonClicked = null; public String ScriptButtonClickedStartsWith = null; public String ScriptButtonClickedEndsWith = null; public String ScriptButtonClickedContains = null; public String ScriptButtonClickedLike = null; public ArrayList ScriptButtonClickedBetween = null; public ArrayList ScriptButtonClickedIn = null; public String ScriptReadData = null; public String ScriptReadDataStartsWith = null; public String ScriptReadDataEndsWith = null; public String ScriptReadDataContains = null; public String ScriptReadDataLike = null; public ArrayList ScriptReadDataBetween = null; public ArrayList ScriptReadDataIn = null; public UUID SY_Plugin_RecID = null; public ArrayList SY_Plugin_RecIDIn = null; public String getSettingID() { return SettingID; } public SH_CustomSettingsQuery setSettingID(String value) { this.SettingID = value; return this; } public String getSettingIDStartsWith() { return SettingIDStartsWith; } public SH_CustomSettingsQuery setSettingIDStartsWith(String value) { this.SettingIDStartsWith = value; return this; } public String getSettingIDEndsWith() { return SettingIDEndsWith; } public SH_CustomSettingsQuery setSettingIDEndsWith(String value) { this.SettingIDEndsWith = value; return this; } public String getSettingIDContains() { return SettingIDContains; } public SH_CustomSettingsQuery setSettingIDContains(String value) { this.SettingIDContains = value; return this; } public String getSettingIDLike() { return SettingIDLike; } public SH_CustomSettingsQuery setSettingIDLike(String value) { this.SettingIDLike = value; return this; } public ArrayList getSettingIDBetween() { return SettingIDBetween; } public SH_CustomSettingsQuery setSettingIDBetween(ArrayList value) { this.SettingIDBetween = value; return this; } public ArrayList getSettingIDIn() { return SettingIDIn; } public SH_CustomSettingsQuery setSettingIDIn(ArrayList value) { this.SettingIDIn = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public SH_CustomSettingsQuery setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getLastSavedDateTimeGreaterThanOrEqualTo() { return LastSavedDateTimeGreaterThanOrEqualTo; } public SH_CustomSettingsQuery setLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.LastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeGreaterThan() { return LastSavedDateTimeGreaterThan; } public SH_CustomSettingsQuery setLastSavedDateTimeGreaterThan(Date value) { this.LastSavedDateTimeGreaterThan = value; return this; } public Date getLastSavedDateTimeLessThan() { return LastSavedDateTimeLessThan; } public SH_CustomSettingsQuery setLastSavedDateTimeLessThan(Date value) { this.LastSavedDateTimeLessThan = value; return this; } public Date getLastSavedDateTimeLessThanOrEqualTo() { return LastSavedDateTimeLessThanOrEqualTo; } public SH_CustomSettingsQuery setLastSavedDateTimeLessThanOrEqualTo(Date value) { this.LastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeNotEqualTo() { return LastSavedDateTimeNotEqualTo; } public SH_CustomSettingsQuery setLastSavedDateTimeNotEqualTo(Date value) { this.LastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getLastSavedDateTimeBetween() { return LastSavedDateTimeBetween; } public SH_CustomSettingsQuery setLastSavedDateTimeBetween(ArrayList value) { this.LastSavedDateTimeBetween = value; return this; } public ArrayList getLastSavedDateTimeIn() { return LastSavedDateTimeIn; } public SH_CustomSettingsQuery setLastSavedDateTimeIn(ArrayList value) { this.LastSavedDateTimeIn = value; return this; } public String getSettingDescription() { return SettingDescription; } public SH_CustomSettingsQuery setSettingDescription(String value) { this.SettingDescription = value; return this; } public String getSettingDescriptionStartsWith() { return SettingDescriptionStartsWith; } public SH_CustomSettingsQuery setSettingDescriptionStartsWith(String value) { this.SettingDescriptionStartsWith = value; return this; } public String getSettingDescriptionEndsWith() { return SettingDescriptionEndsWith; } public SH_CustomSettingsQuery setSettingDescriptionEndsWith(String value) { this.SettingDescriptionEndsWith = value; return this; } public String getSettingDescriptionContains() { return SettingDescriptionContains; } public SH_CustomSettingsQuery setSettingDescriptionContains(String value) { this.SettingDescriptionContains = value; return this; } public String getSettingDescriptionLike() { return SettingDescriptionLike; } public SH_CustomSettingsQuery setSettingDescriptionLike(String value) { this.SettingDescriptionLike = value; return this; } public ArrayList getSettingDescriptionBetween() { return SettingDescriptionBetween; } public SH_CustomSettingsQuery setSettingDescriptionBetween(ArrayList value) { this.SettingDescriptionBetween = value; return this; } public ArrayList getSettingDescriptionIn() { return SettingDescriptionIn; } public SH_CustomSettingsQuery setSettingDescriptionIn(ArrayList value) { this.SettingDescriptionIn = value; return this; } public String getSettingName() { return SettingName; } public SH_CustomSettingsQuery setSettingName(String value) { this.SettingName = value; return this; } public String getSettingNameStartsWith() { return SettingNameStartsWith; } public SH_CustomSettingsQuery setSettingNameStartsWith(String value) { this.SettingNameStartsWith = value; return this; } public String getSettingNameEndsWith() { return SettingNameEndsWith; } public SH_CustomSettingsQuery setSettingNameEndsWith(String value) { this.SettingNameEndsWith = value; return this; } public String getSettingNameContains() { return SettingNameContains; } public SH_CustomSettingsQuery setSettingNameContains(String value) { this.SettingNameContains = value; return this; } public String getSettingNameLike() { return SettingNameLike; } public SH_CustomSettingsQuery setSettingNameLike(String value) { this.SettingNameLike = value; return this; } public ArrayList getSettingNameBetween() { return SettingNameBetween; } public SH_CustomSettingsQuery setSettingNameBetween(ArrayList value) { this.SettingNameBetween = value; return this; } public ArrayList getSettingNameIn() { return SettingNameIn; } public SH_CustomSettingsQuery setSettingNameIn(ArrayList value) { this.SettingNameIn = value; return this; } public BigDecimal getDisplayOrder() { return DisplayOrder; } public SH_CustomSettingsQuery setDisplayOrder(BigDecimal value) { this.DisplayOrder = value; return this; } public BigDecimal getDisplayOrderGreaterThanOrEqualTo() { return DisplayOrderGreaterThanOrEqualTo; } public SH_CustomSettingsQuery setDisplayOrderGreaterThanOrEqualTo(BigDecimal value) { this.DisplayOrderGreaterThanOrEqualTo = value; return this; } public BigDecimal getDisplayOrderGreaterThan() { return DisplayOrderGreaterThan; } public SH_CustomSettingsQuery setDisplayOrderGreaterThan(BigDecimal value) { this.DisplayOrderGreaterThan = value; return this; } public BigDecimal getDisplayOrderLessThan() { return DisplayOrderLessThan; } public SH_CustomSettingsQuery setDisplayOrderLessThan(BigDecimal value) { this.DisplayOrderLessThan = value; return this; } public BigDecimal getDisplayOrderLessThanOrEqualTo() { return DisplayOrderLessThanOrEqualTo; } public SH_CustomSettingsQuery setDisplayOrderLessThanOrEqualTo(BigDecimal value) { this.DisplayOrderLessThanOrEqualTo = value; return this; } public BigDecimal getDisplayOrderNotEqualTo() { return DisplayOrderNotEqualTo; } public SH_CustomSettingsQuery setDisplayOrderNotEqualTo(BigDecimal value) { this.DisplayOrderNotEqualTo = value; return this; } public ArrayList getDisplayOrderBetween() { return DisplayOrderBetween; } public SH_CustomSettingsQuery setDisplayOrderBetween(ArrayList value) { this.DisplayOrderBetween = value; return this; } public ArrayList getDisplayOrderIn() { return DisplayOrderIn; } public SH_CustomSettingsQuery setDisplayOrderIn(ArrayList value) { this.DisplayOrderIn = value; return this; } public Short getCellType() { return CellType; } public SH_CustomSettingsQuery setCellType(Short value) { this.CellType = value; return this; } public Short getCellTypeGreaterThanOrEqualTo() { return CellTypeGreaterThanOrEqualTo; } public SH_CustomSettingsQuery setCellTypeGreaterThanOrEqualTo(Short value) { this.CellTypeGreaterThanOrEqualTo = value; return this; } public Short getCellTypeGreaterThan() { return CellTypeGreaterThan; } public SH_CustomSettingsQuery setCellTypeGreaterThan(Short value) { this.CellTypeGreaterThan = value; return this; } public Short getCellTypeLessThan() { return CellTypeLessThan; } public SH_CustomSettingsQuery setCellTypeLessThan(Short value) { this.CellTypeLessThan = value; return this; } public Short getCellTypeLessThanOrEqualTo() { return CellTypeLessThanOrEqualTo; } public SH_CustomSettingsQuery setCellTypeLessThanOrEqualTo(Short value) { this.CellTypeLessThanOrEqualTo = value; return this; } public Short getCellTypeNotEqualTo() { return CellTypeNotEqualTo; } public SH_CustomSettingsQuery setCellTypeNotEqualTo(Short value) { this.CellTypeNotEqualTo = value; return this; } public ArrayList getCellTypeBetween() { return CellTypeBetween; } public SH_CustomSettingsQuery setCellTypeBetween(ArrayList value) { this.CellTypeBetween = value; return this; } public ArrayList getCellTypeIn() { return CellTypeIn; } public SH_CustomSettingsQuery setCellTypeIn(ArrayList value) { this.CellTypeIn = value; return this; } public String getScriptFormatCell() { return ScriptFormatCell; } public SH_CustomSettingsQuery setScriptFormatCell(String value) { this.ScriptFormatCell = value; return this; } public String getScriptFormatCellStartsWith() { return ScriptFormatCellStartsWith; } public SH_CustomSettingsQuery setScriptFormatCellStartsWith(String value) { this.ScriptFormatCellStartsWith = value; return this; } public String getScriptFormatCellEndsWith() { return ScriptFormatCellEndsWith; } public SH_CustomSettingsQuery setScriptFormatCellEndsWith(String value) { this.ScriptFormatCellEndsWith = value; return this; } public String getScriptFormatCellContains() { return ScriptFormatCellContains; } public SH_CustomSettingsQuery setScriptFormatCellContains(String value) { this.ScriptFormatCellContains = value; return this; } public String getScriptFormatCellLike() { return ScriptFormatCellLike; } public SH_CustomSettingsQuery setScriptFormatCellLike(String value) { this.ScriptFormatCellLike = value; return this; } public ArrayList getScriptFormatCellBetween() { return ScriptFormatCellBetween; } public SH_CustomSettingsQuery setScriptFormatCellBetween(ArrayList value) { this.ScriptFormatCellBetween = value; return this; } public ArrayList getScriptFormatCellIn() { return ScriptFormatCellIn; } public SH_CustomSettingsQuery setScriptFormatCellIn(ArrayList value) { this.ScriptFormatCellIn = value; return this; } public String getScriptButtonClicked() { return ScriptButtonClicked; } public SH_CustomSettingsQuery setScriptButtonClicked(String value) { this.ScriptButtonClicked = value; return this; } public String getScriptButtonClickedStartsWith() { return ScriptButtonClickedStartsWith; } public SH_CustomSettingsQuery setScriptButtonClickedStartsWith(String value) { this.ScriptButtonClickedStartsWith = value; return this; } public String getScriptButtonClickedEndsWith() { return ScriptButtonClickedEndsWith; } public SH_CustomSettingsQuery setScriptButtonClickedEndsWith(String value) { this.ScriptButtonClickedEndsWith = value; return this; } public String getScriptButtonClickedContains() { return ScriptButtonClickedContains; } public SH_CustomSettingsQuery setScriptButtonClickedContains(String value) { this.ScriptButtonClickedContains = value; return this; } public String getScriptButtonClickedLike() { return ScriptButtonClickedLike; } public SH_CustomSettingsQuery setScriptButtonClickedLike(String value) { this.ScriptButtonClickedLike = value; return this; } public ArrayList getScriptButtonClickedBetween() { return ScriptButtonClickedBetween; } public SH_CustomSettingsQuery setScriptButtonClickedBetween(ArrayList value) { this.ScriptButtonClickedBetween = value; return this; } public ArrayList getScriptButtonClickedIn() { return ScriptButtonClickedIn; } public SH_CustomSettingsQuery setScriptButtonClickedIn(ArrayList value) { this.ScriptButtonClickedIn = value; return this; } public String getScriptReadData() { return ScriptReadData; } public SH_CustomSettingsQuery setScriptReadData(String value) { this.ScriptReadData = value; return this; } public String getScriptReadDataStartsWith() { return ScriptReadDataStartsWith; } public SH_CustomSettingsQuery setScriptReadDataStartsWith(String value) { this.ScriptReadDataStartsWith = value; return this; } public String getScriptReadDataEndsWith() { return ScriptReadDataEndsWith; } public SH_CustomSettingsQuery setScriptReadDataEndsWith(String value) { this.ScriptReadDataEndsWith = value; return this; } public String getScriptReadDataContains() { return ScriptReadDataContains; } public SH_CustomSettingsQuery setScriptReadDataContains(String value) { this.ScriptReadDataContains = value; return this; } public String getScriptReadDataLike() { return ScriptReadDataLike; } public SH_CustomSettingsQuery setScriptReadDataLike(String value) { this.ScriptReadDataLike = value; return this; } public ArrayList getScriptReadDataBetween() { return ScriptReadDataBetween; } public SH_CustomSettingsQuery setScriptReadDataBetween(ArrayList value) { this.ScriptReadDataBetween = value; return this; } public ArrayList getScriptReadDataIn() { return ScriptReadDataIn; } public SH_CustomSettingsQuery setScriptReadDataIn(ArrayList value) { this.ScriptReadDataIn = value; return this; } public UUID getSyPluginRecID() { return SY_Plugin_RecID; } public SH_CustomSettingsQuery setSyPluginRecID(UUID value) { this.SY_Plugin_RecID = value; return this; } public ArrayList getSyPluginRecIDIn() { return SY_Plugin_RecIDIn; } public SH_CustomSettingsQuery setSyPluginRecIDIn(ArrayList value) { this.SY_Plugin_RecIDIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class SH_CustomSettingValuesQuery extends QueryDb implements IReturn> { public String SettingValueID = null; public String SettingValueIDStartsWith = null; public String SettingValueIDEndsWith = null; public String SettingValueIDContains = null; public String SettingValueIDLike = null; public ArrayList SettingValueIDBetween = null; public ArrayList SettingValueIDIn = null; public String SettingID = null; public String SettingIDStartsWith = null; public String SettingIDEndsWith = null; public String SettingIDContains = null; public String SettingIDLike = null; public ArrayList SettingIDBetween = null; public ArrayList SettingIDIn = null; public String SH_Main_RecID = null; public String SH_Main_RecIDStartsWith = null; public String SH_Main_RecIDEndsWith = null; public String SH_Main_RecIDContains = null; public String SH_Main_RecIDLike = null; public ArrayList SH_Main_RecIDBetween = null; public ArrayList SH_Main_RecIDIn = null; public String Contents = null; public String ContentsStartsWith = null; public String ContentsEndsWith = null; public String ContentsContains = null; public String ContentsLike = null; public ArrayList ContentsBetween = null; public ArrayList ContentsIn = null; public Date LastSavedDateTime = null; public Date LastSavedDateTimeGreaterThanOrEqualTo = null; public Date LastSavedDateTimeGreaterThan = null; public Date LastSavedDateTimeLessThan = null; public Date LastSavedDateTimeLessThanOrEqualTo = null; public Date LastSavedDateTimeNotEqualTo = null; public ArrayList LastSavedDateTimeBetween = null; public ArrayList LastSavedDateTimeIn = null; public String getSettingValueID() { return SettingValueID; } public SH_CustomSettingValuesQuery setSettingValueID(String value) { this.SettingValueID = value; return this; } public String getSettingValueIDStartsWith() { return SettingValueIDStartsWith; } public SH_CustomSettingValuesQuery setSettingValueIDStartsWith(String value) { this.SettingValueIDStartsWith = value; return this; } public String getSettingValueIDEndsWith() { return SettingValueIDEndsWith; } public SH_CustomSettingValuesQuery setSettingValueIDEndsWith(String value) { this.SettingValueIDEndsWith = value; return this; } public String getSettingValueIDContains() { return SettingValueIDContains; } public SH_CustomSettingValuesQuery setSettingValueIDContains(String value) { this.SettingValueIDContains = value; return this; } public String getSettingValueIDLike() { return SettingValueIDLike; } public SH_CustomSettingValuesQuery setSettingValueIDLike(String value) { this.SettingValueIDLike = value; return this; } public ArrayList getSettingValueIDBetween() { return SettingValueIDBetween; } public SH_CustomSettingValuesQuery setSettingValueIDBetween(ArrayList value) { this.SettingValueIDBetween = value; return this; } public ArrayList getSettingValueIDIn() { return SettingValueIDIn; } public SH_CustomSettingValuesQuery setSettingValueIDIn(ArrayList value) { this.SettingValueIDIn = value; return this; } public String getSettingID() { return SettingID; } public SH_CustomSettingValuesQuery setSettingID(String value) { this.SettingID = value; return this; } public String getSettingIDStartsWith() { return SettingIDStartsWith; } public SH_CustomSettingValuesQuery setSettingIDStartsWith(String value) { this.SettingIDStartsWith = value; return this; } public String getSettingIDEndsWith() { return SettingIDEndsWith; } public SH_CustomSettingValuesQuery setSettingIDEndsWith(String value) { this.SettingIDEndsWith = value; return this; } public String getSettingIDContains() { return SettingIDContains; } public SH_CustomSettingValuesQuery setSettingIDContains(String value) { this.SettingIDContains = value; return this; } public String getSettingIDLike() { return SettingIDLike; } public SH_CustomSettingValuesQuery setSettingIDLike(String value) { this.SettingIDLike = value; return this; } public ArrayList getSettingIDBetween() { return SettingIDBetween; } public SH_CustomSettingValuesQuery setSettingIDBetween(ArrayList value) { this.SettingIDBetween = value; return this; } public ArrayList getSettingIDIn() { return SettingIDIn; } public SH_CustomSettingValuesQuery setSettingIDIn(ArrayList value) { this.SettingIDIn = value; return this; } public String getShMainRecID() { return SH_Main_RecID; } public SH_CustomSettingValuesQuery setShMainRecID(String value) { this.SH_Main_RecID = value; return this; } public String getShMainRecIDStartsWith() { return SH_Main_RecIDStartsWith; } public SH_CustomSettingValuesQuery setShMainRecIDStartsWith(String value) { this.SH_Main_RecIDStartsWith = value; return this; } public String getShMainRecIDEndsWith() { return SH_Main_RecIDEndsWith; } public SH_CustomSettingValuesQuery setShMainRecIDEndsWith(String value) { this.SH_Main_RecIDEndsWith = value; return this; } public String getShMainRecIDContains() { return SH_Main_RecIDContains; } public SH_CustomSettingValuesQuery setShMainRecIDContains(String value) { this.SH_Main_RecIDContains = value; return this; } public String getShMainRecIDLike() { return SH_Main_RecIDLike; } public SH_CustomSettingValuesQuery setShMainRecIDLike(String value) { this.SH_Main_RecIDLike = value; return this; } public ArrayList getShMainRecIDBetween() { return SH_Main_RecIDBetween; } public SH_CustomSettingValuesQuery setShMainRecIDBetween(ArrayList value) { this.SH_Main_RecIDBetween = value; return this; } public ArrayList getShMainRecIDIn() { return SH_Main_RecIDIn; } public SH_CustomSettingValuesQuery setShMainRecIDIn(ArrayList value) { this.SH_Main_RecIDIn = value; return this; } public String getContents() { return Contents; } public SH_CustomSettingValuesQuery setContents(String value) { this.Contents = value; return this; } public String getContentsStartsWith() { return ContentsStartsWith; } public SH_CustomSettingValuesQuery setContentsStartsWith(String value) { this.ContentsStartsWith = value; return this; } public String getContentsEndsWith() { return ContentsEndsWith; } public SH_CustomSettingValuesQuery setContentsEndsWith(String value) { this.ContentsEndsWith = value; return this; } public String getContentsContains() { return ContentsContains; } public SH_CustomSettingValuesQuery setContentsContains(String value) { this.ContentsContains = value; return this; } public String getContentsLike() { return ContentsLike; } public SH_CustomSettingValuesQuery setContentsLike(String value) { this.ContentsLike = value; return this; } public ArrayList getContentsBetween() { return ContentsBetween; } public SH_CustomSettingValuesQuery setContentsBetween(ArrayList value) { this.ContentsBetween = value; return this; } public ArrayList getContentsIn() { return ContentsIn; } public SH_CustomSettingValuesQuery setContentsIn(ArrayList value) { this.ContentsIn = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public SH_CustomSettingValuesQuery setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getLastSavedDateTimeGreaterThanOrEqualTo() { return LastSavedDateTimeGreaterThanOrEqualTo; } public SH_CustomSettingValuesQuery setLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.LastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeGreaterThan() { return LastSavedDateTimeGreaterThan; } public SH_CustomSettingValuesQuery setLastSavedDateTimeGreaterThan(Date value) { this.LastSavedDateTimeGreaterThan = value; return this; } public Date getLastSavedDateTimeLessThan() { return LastSavedDateTimeLessThan; } public SH_CustomSettingValuesQuery setLastSavedDateTimeLessThan(Date value) { this.LastSavedDateTimeLessThan = value; return this; } public Date getLastSavedDateTimeLessThanOrEqualTo() { return LastSavedDateTimeLessThanOrEqualTo; } public SH_CustomSettingValuesQuery setLastSavedDateTimeLessThanOrEqualTo(Date value) { this.LastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeNotEqualTo() { return LastSavedDateTimeNotEqualTo; } public SH_CustomSettingValuesQuery setLastSavedDateTimeNotEqualTo(Date value) { this.LastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getLastSavedDateTimeBetween() { return LastSavedDateTimeBetween; } public SH_CustomSettingValuesQuery setLastSavedDateTimeBetween(ArrayList value) { this.LastSavedDateTimeBetween = value; return this; } public ArrayList getLastSavedDateTimeIn() { return LastSavedDateTimeIn; } public SH_CustomSettingValuesQuery setLastSavedDateTimeIn(ArrayList value) { this.LastSavedDateTimeIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class SH_InvoicesQuery extends QueryDb implements IReturn> { public String InvoicesID = null; public String InvoicesIDStartsWith = null; public String InvoicesIDEndsWith = null; public String InvoicesIDContains = null; public String InvoicesIDLike = null; public ArrayList InvoicesIDBetween = null; public ArrayList InvoicesIDIn = null; public String ShipmentID = null; public String ShipmentIDStartsWith = null; public String ShipmentIDEndsWith = null; public String ShipmentIDContains = null; public String ShipmentIDLike = null; public ArrayList ShipmentIDBetween = null; public ArrayList ShipmentIDIn = null; public String InvoiceNo = null; public String InvoiceNoStartsWith = null; public String InvoiceNoEndsWith = null; public String InvoiceNoContains = null; public String InvoiceNoLike = null; public ArrayList InvoiceNoBetween = null; public ArrayList InvoiceNoIn = null; public String Reference = null; public String ReferenceStartsWith = null; public String ReferenceEndsWith = null; public String ReferenceContains = null; public String ReferenceLike = null; public ArrayList ReferenceBetween = null; public ArrayList ReferenceIn = null; public String Remark = null; public String RemarkStartsWith = null; public String RemarkEndsWith = null; public String RemarkContains = null; public String RemarkLike = null; public ArrayList RemarkBetween = null; public ArrayList RemarkIn = null; public Date DueDate = null; public Date DueDateGreaterThanOrEqualTo = null; public Date DueDateGreaterThan = null; public Date DueDateLessThan = null; public Date DueDateLessThanOrEqualTo = null; public Date DueDateNotEqualTo = null; public ArrayList DueDateBetween = null; public ArrayList DueDateIn = null; public String CreditorID = null; public String CreditorIDStartsWith = null; public String CreditorIDEndsWith = null; public String CreditorIDContains = null; public String CreditorIDLike = null; public ArrayList CreditorIDBetween = null; public ArrayList CreditorIDIn = null; public BigDecimal FXRate = null; public BigDecimal FXRateGreaterThanOrEqualTo = null; public BigDecimal FXRateGreaterThan = null; public BigDecimal FXRateLessThan = null; public BigDecimal FXRateLessThanOrEqualTo = null; public BigDecimal FXRateNotEqualTo = null; public ArrayList FXRateBetween = null; public ArrayList FXRateIn = null; public String CurrencyID = null; public String CurrencyIDStartsWith = null; public String CurrencyIDEndsWith = null; public String CurrencyIDContains = null; public String CurrencyIDLike = null; public ArrayList CurrencyIDBetween = null; public ArrayList CurrencyIDIn = null; public BigDecimal HomeAmount = null; public BigDecimal HomeAmountGreaterThanOrEqualTo = null; public BigDecimal HomeAmountGreaterThan = null; public BigDecimal HomeAmountLessThan = null; public BigDecimal HomeAmountLessThanOrEqualTo = null; public BigDecimal HomeAmountNotEqualTo = null; public ArrayList HomeAmountBetween = null; public ArrayList HomeAmountIn = null; public BigDecimal FXAmount = null; public BigDecimal FXAmountGreaterThanOrEqualTo = null; public BigDecimal FXAmountGreaterThan = null; public BigDecimal FXAmountLessThan = null; public BigDecimal FXAmountLessThanOrEqualTo = null; public BigDecimal FXAmountNotEqualTo = null; public ArrayList FXAmountBetween = null; public ArrayList FXAmountIn = null; public String CR_TransID = null; public String CR_TransIDStartsWith = null; public String CR_TransIDEndsWith = null; public String CR_TransIDContains = null; public String CR_TransIDLike = null; public ArrayList CR_TransIDBetween = null; public ArrayList CR_TransIDIn = null; public String CreditorLedgerID = null; public String CreditorLedgerIDStartsWith = null; public String CreditorLedgerIDEndsWith = null; public String CreditorLedgerIDContains = null; public String CreditorLedgerIDLike = null; public ArrayList CreditorLedgerIDBetween = null; public ArrayList CreditorLedgerIDIn = null; public String UserField1 = null; public String UserField1StartsWith = null; public String UserField1EndsWith = null; public String UserField1Contains = null; public String UserField1Like = null; public ArrayList UserField1Between = null; public ArrayList UserField1In = null; public String UserField2 = null; public String UserField2StartsWith = null; public String UserField2EndsWith = null; public String UserField2Contains = null; public String UserField2Like = null; public ArrayList UserField2Between = null; public ArrayList UserField2In = null; public String UserField3 = null; public String UserField3StartsWith = null; public String UserField3EndsWith = null; public String UserField3Contains = null; public String UserField3Like = null; public ArrayList UserField3Between = null; public ArrayList UserField3In = null; public String UserField4 = null; public String UserField4StartsWith = null; public String UserField4EndsWith = null; public String UserField4Contains = null; public String UserField4Like = null; public ArrayList UserField4Between = null; public ArrayList UserField4In = null; public String UserField5 = null; public String UserField5StartsWith = null; public String UserField5EndsWith = null; public String UserField5Contains = null; public String UserField5Like = null; public ArrayList UserField5Between = null; public ArrayList UserField5In = null; public String UserField6 = null; public String UserField6StartsWith = null; public String UserField6EndsWith = null; public String UserField6Contains = null; public String UserField6Like = null; public ArrayList UserField6Between = null; public ArrayList UserField6In = null; public String UserField7 = null; public String UserField7StartsWith = null; public String UserField7EndsWith = null; public String UserField7Contains = null; public String UserField7Like = null; public ArrayList UserField7Between = null; public ArrayList UserField7In = null; public String UserField8 = null; public String UserField8StartsWith = null; public String UserField8EndsWith = null; public String UserField8Contains = null; public String UserField8Like = null; public ArrayList UserField8Between = null; public ArrayList UserField8In = null; public String UserField9 = null; public String UserField9StartsWith = null; public String UserField9EndsWith = null; public String UserField9Contains = null; public String UserField9Like = null; public ArrayList UserField9Between = null; public ArrayList UserField9In = null; public String UserField10 = null; public String UserField10StartsWith = null; public String UserField10EndsWith = null; public String UserField10Contains = null; public String UserField10Like = null; public ArrayList UserField10Between = null; public ArrayList UserField10In = null; public BigDecimal ExpectedHomeAmount = null; public BigDecimal ExpectedHomeAmountGreaterThanOrEqualTo = null; public BigDecimal ExpectedHomeAmountGreaterThan = null; public BigDecimal ExpectedHomeAmountLessThan = null; public BigDecimal ExpectedHomeAmountLessThanOrEqualTo = null; public BigDecimal ExpectedHomeAmountNotEqualTo = null; public ArrayList ExpectedHomeAmountBetween = null; public ArrayList ExpectedHomeAmountIn = null; public BigDecimal ExpectedFXAmount = null; public BigDecimal ExpectedFXAmountGreaterThanOrEqualTo = null; public BigDecimal ExpectedFXAmountGreaterThan = null; public BigDecimal ExpectedFXAmountLessThan = null; public BigDecimal ExpectedFXAmountLessThanOrEqualTo = null; public BigDecimal ExpectedFXAmountNotEqualTo = null; public ArrayList ExpectedFXAmountBetween = null; public ArrayList ExpectedFXAmountIn = null; public Boolean Invoiced = null; public Date InvoiceDate = null; public Date InvoiceDateGreaterThanOrEqualTo = null; public Date InvoiceDateGreaterThan = null; public Date InvoiceDateLessThan = null; public Date InvoiceDateLessThanOrEqualTo = null; public Date InvoiceDateNotEqualTo = null; public ArrayList InvoiceDateBetween = null; public ArrayList InvoiceDateIn = null; public ArrayList RowHash = null; public Integer ItemNo = null; public Integer ItemNoGreaterThanOrEqualTo = null; public Integer ItemNoGreaterThan = null; public Integer ItemNoLessThan = null; public Integer ItemNoLessThanOrEqualTo = null; public Integer ItemNoNotEqualTo = null; public ArrayList ItemNoBetween = null; public ArrayList ItemNoIn = null; public BigDecimal TaxAmount = null; public BigDecimal TaxAmountGreaterThanOrEqualTo = null; public BigDecimal TaxAmountGreaterThan = null; public BigDecimal TaxAmountLessThan = null; public BigDecimal TaxAmountLessThanOrEqualTo = null; public BigDecimal TaxAmountNotEqualTo = null; public ArrayList TaxAmountBetween = null; public ArrayList TaxAmountIn = null; public BigDecimal AmountIncTax = null; public BigDecimal AmountIncTaxGreaterThanOrEqualTo = null; public BigDecimal AmountIncTaxGreaterThan = null; public BigDecimal AmountIncTaxLessThan = null; public BigDecimal AmountIncTaxLessThanOrEqualTo = null; public BigDecimal AmountIncTaxNotEqualTo = null; public ArrayList AmountIncTaxBetween = null; public ArrayList AmountIncTaxIn = null; public String getInvoicesID() { return InvoicesID; } public SH_InvoicesQuery setInvoicesID(String value) { this.InvoicesID = value; return this; } public String getInvoicesIDStartsWith() { return InvoicesIDStartsWith; } public SH_InvoicesQuery setInvoicesIDStartsWith(String value) { this.InvoicesIDStartsWith = value; return this; } public String getInvoicesIDEndsWith() { return InvoicesIDEndsWith; } public SH_InvoicesQuery setInvoicesIDEndsWith(String value) { this.InvoicesIDEndsWith = value; return this; } public String getInvoicesIDContains() { return InvoicesIDContains; } public SH_InvoicesQuery setInvoicesIDContains(String value) { this.InvoicesIDContains = value; return this; } public String getInvoicesIDLike() { return InvoicesIDLike; } public SH_InvoicesQuery setInvoicesIDLike(String value) { this.InvoicesIDLike = value; return this; } public ArrayList getInvoicesIDBetween() { return InvoicesIDBetween; } public SH_InvoicesQuery setInvoicesIDBetween(ArrayList value) { this.InvoicesIDBetween = value; return this; } public ArrayList getInvoicesIDIn() { return InvoicesIDIn; } public SH_InvoicesQuery setInvoicesIDIn(ArrayList value) { this.InvoicesIDIn = value; return this; } public String getShipmentID() { return ShipmentID; } public SH_InvoicesQuery setShipmentID(String value) { this.ShipmentID = value; return this; } public String getShipmentIDStartsWith() { return ShipmentIDStartsWith; } public SH_InvoicesQuery setShipmentIDStartsWith(String value) { this.ShipmentIDStartsWith = value; return this; } public String getShipmentIDEndsWith() { return ShipmentIDEndsWith; } public SH_InvoicesQuery setShipmentIDEndsWith(String value) { this.ShipmentIDEndsWith = value; return this; } public String getShipmentIDContains() { return ShipmentIDContains; } public SH_InvoicesQuery setShipmentIDContains(String value) { this.ShipmentIDContains = value; return this; } public String getShipmentIDLike() { return ShipmentIDLike; } public SH_InvoicesQuery setShipmentIDLike(String value) { this.ShipmentIDLike = value; return this; } public ArrayList getShipmentIDBetween() { return ShipmentIDBetween; } public SH_InvoicesQuery setShipmentIDBetween(ArrayList value) { this.ShipmentIDBetween = value; return this; } public ArrayList getShipmentIDIn() { return ShipmentIDIn; } public SH_InvoicesQuery setShipmentIDIn(ArrayList value) { this.ShipmentIDIn = value; return this; } public String getInvoiceNo() { return InvoiceNo; } public SH_InvoicesQuery setInvoiceNo(String value) { this.InvoiceNo = value; return this; } public String getInvoiceNoStartsWith() { return InvoiceNoStartsWith; } public SH_InvoicesQuery setInvoiceNoStartsWith(String value) { this.InvoiceNoStartsWith = value; return this; } public String getInvoiceNoEndsWith() { return InvoiceNoEndsWith; } public SH_InvoicesQuery setInvoiceNoEndsWith(String value) { this.InvoiceNoEndsWith = value; return this; } public String getInvoiceNoContains() { return InvoiceNoContains; } public SH_InvoicesQuery setInvoiceNoContains(String value) { this.InvoiceNoContains = value; return this; } public String getInvoiceNoLike() { return InvoiceNoLike; } public SH_InvoicesQuery setInvoiceNoLike(String value) { this.InvoiceNoLike = value; return this; } public ArrayList getInvoiceNoBetween() { return InvoiceNoBetween; } public SH_InvoicesQuery setInvoiceNoBetween(ArrayList value) { this.InvoiceNoBetween = value; return this; } public ArrayList getInvoiceNoIn() { return InvoiceNoIn; } public SH_InvoicesQuery setInvoiceNoIn(ArrayList value) { this.InvoiceNoIn = value; return this; } public String getReference() { return Reference; } public SH_InvoicesQuery setReference(String value) { this.Reference = value; return this; } public String getReferenceStartsWith() { return ReferenceStartsWith; } public SH_InvoicesQuery setReferenceStartsWith(String value) { this.ReferenceStartsWith = value; return this; } public String getReferenceEndsWith() { return ReferenceEndsWith; } public SH_InvoicesQuery setReferenceEndsWith(String value) { this.ReferenceEndsWith = value; return this; } public String getReferenceContains() { return ReferenceContains; } public SH_InvoicesQuery setReferenceContains(String value) { this.ReferenceContains = value; return this; } public String getReferenceLike() { return ReferenceLike; } public SH_InvoicesQuery setReferenceLike(String value) { this.ReferenceLike = value; return this; } public ArrayList getReferenceBetween() { return ReferenceBetween; } public SH_InvoicesQuery setReferenceBetween(ArrayList value) { this.ReferenceBetween = value; return this; } public ArrayList getReferenceIn() { return ReferenceIn; } public SH_InvoicesQuery setReferenceIn(ArrayList value) { this.ReferenceIn = value; return this; } public String getRemark() { return Remark; } public SH_InvoicesQuery setRemark(String value) { this.Remark = value; return this; } public String getRemarkStartsWith() { return RemarkStartsWith; } public SH_InvoicesQuery setRemarkStartsWith(String value) { this.RemarkStartsWith = value; return this; } public String getRemarkEndsWith() { return RemarkEndsWith; } public SH_InvoicesQuery setRemarkEndsWith(String value) { this.RemarkEndsWith = value; return this; } public String getRemarkContains() { return RemarkContains; } public SH_InvoicesQuery setRemarkContains(String value) { this.RemarkContains = value; return this; } public String getRemarkLike() { return RemarkLike; } public SH_InvoicesQuery setRemarkLike(String value) { this.RemarkLike = value; return this; } public ArrayList getRemarkBetween() { return RemarkBetween; } public SH_InvoicesQuery setRemarkBetween(ArrayList value) { this.RemarkBetween = value; return this; } public ArrayList getRemarkIn() { return RemarkIn; } public SH_InvoicesQuery setRemarkIn(ArrayList value) { this.RemarkIn = value; return this; } public Date getDueDate() { return DueDate; } public SH_InvoicesQuery setDueDate(Date value) { this.DueDate = value; return this; } public Date getDueDateGreaterThanOrEqualTo() { return DueDateGreaterThanOrEqualTo; } public SH_InvoicesQuery setDueDateGreaterThanOrEqualTo(Date value) { this.DueDateGreaterThanOrEqualTo = value; return this; } public Date getDueDateGreaterThan() { return DueDateGreaterThan; } public SH_InvoicesQuery setDueDateGreaterThan(Date value) { this.DueDateGreaterThan = value; return this; } public Date getDueDateLessThan() { return DueDateLessThan; } public SH_InvoicesQuery setDueDateLessThan(Date value) { this.DueDateLessThan = value; return this; } public Date getDueDateLessThanOrEqualTo() { return DueDateLessThanOrEqualTo; } public SH_InvoicesQuery setDueDateLessThanOrEqualTo(Date value) { this.DueDateLessThanOrEqualTo = value; return this; } public Date getDueDateNotEqualTo() { return DueDateNotEqualTo; } public SH_InvoicesQuery setDueDateNotEqualTo(Date value) { this.DueDateNotEqualTo = value; return this; } public ArrayList getDueDateBetween() { return DueDateBetween; } public SH_InvoicesQuery setDueDateBetween(ArrayList value) { this.DueDateBetween = value; return this; } public ArrayList getDueDateIn() { return DueDateIn; } public SH_InvoicesQuery setDueDateIn(ArrayList value) { this.DueDateIn = value; return this; } public String getCreditorID() { return CreditorID; } public SH_InvoicesQuery setCreditorID(String value) { this.CreditorID = value; return this; } public String getCreditorIDStartsWith() { return CreditorIDStartsWith; } public SH_InvoicesQuery setCreditorIDStartsWith(String value) { this.CreditorIDStartsWith = value; return this; } public String getCreditorIDEndsWith() { return CreditorIDEndsWith; } public SH_InvoicesQuery setCreditorIDEndsWith(String value) { this.CreditorIDEndsWith = value; return this; } public String getCreditorIDContains() { return CreditorIDContains; } public SH_InvoicesQuery setCreditorIDContains(String value) { this.CreditorIDContains = value; return this; } public String getCreditorIDLike() { return CreditorIDLike; } public SH_InvoicesQuery setCreditorIDLike(String value) { this.CreditorIDLike = value; return this; } public ArrayList getCreditorIDBetween() { return CreditorIDBetween; } public SH_InvoicesQuery setCreditorIDBetween(ArrayList value) { this.CreditorIDBetween = value; return this; } public ArrayList getCreditorIDIn() { return CreditorIDIn; } public SH_InvoicesQuery setCreditorIDIn(ArrayList value) { this.CreditorIDIn = value; return this; } public BigDecimal getFxRate() { return FXRate; } public SH_InvoicesQuery setFxRate(BigDecimal value) { this.FXRate = value; return this; } public BigDecimal getFxRateGreaterThanOrEqualTo() { return FXRateGreaterThanOrEqualTo; } public SH_InvoicesQuery setFxRateGreaterThanOrEqualTo(BigDecimal value) { this.FXRateGreaterThanOrEqualTo = value; return this; } public BigDecimal getFxRateGreaterThan() { return FXRateGreaterThan; } public SH_InvoicesQuery setFxRateGreaterThan(BigDecimal value) { this.FXRateGreaterThan = value; return this; } public BigDecimal getFxRateLessThan() { return FXRateLessThan; } public SH_InvoicesQuery setFxRateLessThan(BigDecimal value) { this.FXRateLessThan = value; return this; } public BigDecimal getFxRateLessThanOrEqualTo() { return FXRateLessThanOrEqualTo; } public SH_InvoicesQuery setFxRateLessThanOrEqualTo(BigDecimal value) { this.FXRateLessThanOrEqualTo = value; return this; } public BigDecimal getFxRateNotEqualTo() { return FXRateNotEqualTo; } public SH_InvoicesQuery setFxRateNotEqualTo(BigDecimal value) { this.FXRateNotEqualTo = value; return this; } public ArrayList getFxRateBetween() { return FXRateBetween; } public SH_InvoicesQuery setFxRateBetween(ArrayList value) { this.FXRateBetween = value; return this; } public ArrayList getFxRateIn() { return FXRateIn; } public SH_InvoicesQuery setFxRateIn(ArrayList value) { this.FXRateIn = value; return this; } public String getCurrencyID() { return CurrencyID; } public SH_InvoicesQuery setCurrencyID(String value) { this.CurrencyID = value; return this; } public String getCurrencyIDStartsWith() { return CurrencyIDStartsWith; } public SH_InvoicesQuery setCurrencyIDStartsWith(String value) { this.CurrencyIDStartsWith = value; return this; } public String getCurrencyIDEndsWith() { return CurrencyIDEndsWith; } public SH_InvoicesQuery setCurrencyIDEndsWith(String value) { this.CurrencyIDEndsWith = value; return this; } public String getCurrencyIDContains() { return CurrencyIDContains; } public SH_InvoicesQuery setCurrencyIDContains(String value) { this.CurrencyIDContains = value; return this; } public String getCurrencyIDLike() { return CurrencyIDLike; } public SH_InvoicesQuery setCurrencyIDLike(String value) { this.CurrencyIDLike = value; return this; } public ArrayList getCurrencyIDBetween() { return CurrencyIDBetween; } public SH_InvoicesQuery setCurrencyIDBetween(ArrayList value) { this.CurrencyIDBetween = value; return this; } public ArrayList getCurrencyIDIn() { return CurrencyIDIn; } public SH_InvoicesQuery setCurrencyIDIn(ArrayList value) { this.CurrencyIDIn = value; return this; } public BigDecimal getHomeAmount() { return HomeAmount; } public SH_InvoicesQuery setHomeAmount(BigDecimal value) { this.HomeAmount = value; return this; } public BigDecimal getHomeAmountGreaterThanOrEqualTo() { return HomeAmountGreaterThanOrEqualTo; } public SH_InvoicesQuery setHomeAmountGreaterThanOrEqualTo(BigDecimal value) { this.HomeAmountGreaterThanOrEqualTo = value; return this; } public BigDecimal getHomeAmountGreaterThan() { return HomeAmountGreaterThan; } public SH_InvoicesQuery setHomeAmountGreaterThan(BigDecimal value) { this.HomeAmountGreaterThan = value; return this; } public BigDecimal getHomeAmountLessThan() { return HomeAmountLessThan; } public SH_InvoicesQuery setHomeAmountLessThan(BigDecimal value) { this.HomeAmountLessThan = value; return this; } public BigDecimal getHomeAmountLessThanOrEqualTo() { return HomeAmountLessThanOrEqualTo; } public SH_InvoicesQuery setHomeAmountLessThanOrEqualTo(BigDecimal value) { this.HomeAmountLessThanOrEqualTo = value; return this; } public BigDecimal getHomeAmountNotEqualTo() { return HomeAmountNotEqualTo; } public SH_InvoicesQuery setHomeAmountNotEqualTo(BigDecimal value) { this.HomeAmountNotEqualTo = value; return this; } public ArrayList getHomeAmountBetween() { return HomeAmountBetween; } public SH_InvoicesQuery setHomeAmountBetween(ArrayList value) { this.HomeAmountBetween = value; return this; } public ArrayList getHomeAmountIn() { return HomeAmountIn; } public SH_InvoicesQuery setHomeAmountIn(ArrayList value) { this.HomeAmountIn = value; return this; } public BigDecimal getFxAmount() { return FXAmount; } public SH_InvoicesQuery setFxAmount(BigDecimal value) { this.FXAmount = value; return this; } public BigDecimal getFxAmountGreaterThanOrEqualTo() { return FXAmountGreaterThanOrEqualTo; } public SH_InvoicesQuery setFxAmountGreaterThanOrEqualTo(BigDecimal value) { this.FXAmountGreaterThanOrEqualTo = value; return this; } public BigDecimal getFxAmountGreaterThan() { return FXAmountGreaterThan; } public SH_InvoicesQuery setFxAmountGreaterThan(BigDecimal value) { this.FXAmountGreaterThan = value; return this; } public BigDecimal getFxAmountLessThan() { return FXAmountLessThan; } public SH_InvoicesQuery setFxAmountLessThan(BigDecimal value) { this.FXAmountLessThan = value; return this; } public BigDecimal getFxAmountLessThanOrEqualTo() { return FXAmountLessThanOrEqualTo; } public SH_InvoicesQuery setFxAmountLessThanOrEqualTo(BigDecimal value) { this.FXAmountLessThanOrEqualTo = value; return this; } public BigDecimal getFxAmountNotEqualTo() { return FXAmountNotEqualTo; } public SH_InvoicesQuery setFxAmountNotEqualTo(BigDecimal value) { this.FXAmountNotEqualTo = value; return this; } public ArrayList getFxAmountBetween() { return FXAmountBetween; } public SH_InvoicesQuery setFxAmountBetween(ArrayList value) { this.FXAmountBetween = value; return this; } public ArrayList getFxAmountIn() { return FXAmountIn; } public SH_InvoicesQuery setFxAmountIn(ArrayList value) { this.FXAmountIn = value; return this; } public String getCrTransID() { return CR_TransID; } public SH_InvoicesQuery setCrTransID(String value) { this.CR_TransID = value; return this; } public String getCrTransIDStartsWith() { return CR_TransIDStartsWith; } public SH_InvoicesQuery setCrTransIDStartsWith(String value) { this.CR_TransIDStartsWith = value; return this; } public String getCrTransIDEndsWith() { return CR_TransIDEndsWith; } public SH_InvoicesQuery setCrTransIDEndsWith(String value) { this.CR_TransIDEndsWith = value; return this; } public String getCrTransIDContains() { return CR_TransIDContains; } public SH_InvoicesQuery setCrTransIDContains(String value) { this.CR_TransIDContains = value; return this; } public String getCrTransIDLike() { return CR_TransIDLike; } public SH_InvoicesQuery setCrTransIDLike(String value) { this.CR_TransIDLike = value; return this; } public ArrayList getCrTransIDBetween() { return CR_TransIDBetween; } public SH_InvoicesQuery setCrTransIDBetween(ArrayList value) { this.CR_TransIDBetween = value; return this; } public ArrayList getCrTransIDIn() { return CR_TransIDIn; } public SH_InvoicesQuery setCrTransIDIn(ArrayList value) { this.CR_TransIDIn = value; return this; } public String getCreditorLedgerID() { return CreditorLedgerID; } public SH_InvoicesQuery setCreditorLedgerID(String value) { this.CreditorLedgerID = value; return this; } public String getCreditorLedgerIDStartsWith() { return CreditorLedgerIDStartsWith; } public SH_InvoicesQuery setCreditorLedgerIDStartsWith(String value) { this.CreditorLedgerIDStartsWith = value; return this; } public String getCreditorLedgerIDEndsWith() { return CreditorLedgerIDEndsWith; } public SH_InvoicesQuery setCreditorLedgerIDEndsWith(String value) { this.CreditorLedgerIDEndsWith = value; return this; } public String getCreditorLedgerIDContains() { return CreditorLedgerIDContains; } public SH_InvoicesQuery setCreditorLedgerIDContains(String value) { this.CreditorLedgerIDContains = value; return this; } public String getCreditorLedgerIDLike() { return CreditorLedgerIDLike; } public SH_InvoicesQuery setCreditorLedgerIDLike(String value) { this.CreditorLedgerIDLike = value; return this; } public ArrayList getCreditorLedgerIDBetween() { return CreditorLedgerIDBetween; } public SH_InvoicesQuery setCreditorLedgerIDBetween(ArrayList value) { this.CreditorLedgerIDBetween = value; return this; } public ArrayList getCreditorLedgerIDIn() { return CreditorLedgerIDIn; } public SH_InvoicesQuery setCreditorLedgerIDIn(ArrayList value) { this.CreditorLedgerIDIn = value; return this; } public String getUserField1() { return UserField1; } public SH_InvoicesQuery setUserField1(String value) { this.UserField1 = value; return this; } public String getUserField1StartsWith() { return UserField1StartsWith; } public SH_InvoicesQuery setUserField1StartsWith(String value) { this.UserField1StartsWith = value; return this; } public String getUserField1EndsWith() { return UserField1EndsWith; } public SH_InvoicesQuery setUserField1EndsWith(String value) { this.UserField1EndsWith = value; return this; } public String getUserField1Contains() { return UserField1Contains; } public SH_InvoicesQuery setUserField1Contains(String value) { this.UserField1Contains = value; return this; } public String getUserField1Like() { return UserField1Like; } public SH_InvoicesQuery setUserField1Like(String value) { this.UserField1Like = value; return this; } public ArrayList getUserField1Between() { return UserField1Between; } public SH_InvoicesQuery setUserField1Between(ArrayList value) { this.UserField1Between = value; return this; } public ArrayList getUserField1In() { return UserField1In; } public SH_InvoicesQuery setUserField1In(ArrayList value) { this.UserField1In = value; return this; } public String getUserField2() { return UserField2; } public SH_InvoicesQuery setUserField2(String value) { this.UserField2 = value; return this; } public String getUserField2StartsWith() { return UserField2StartsWith; } public SH_InvoicesQuery setUserField2StartsWith(String value) { this.UserField2StartsWith = value; return this; } public String getUserField2EndsWith() { return UserField2EndsWith; } public SH_InvoicesQuery setUserField2EndsWith(String value) { this.UserField2EndsWith = value; return this; } public String getUserField2Contains() { return UserField2Contains; } public SH_InvoicesQuery setUserField2Contains(String value) { this.UserField2Contains = value; return this; } public String getUserField2Like() { return UserField2Like; } public SH_InvoicesQuery setUserField2Like(String value) { this.UserField2Like = value; return this; } public ArrayList getUserField2Between() { return UserField2Between; } public SH_InvoicesQuery setUserField2Between(ArrayList value) { this.UserField2Between = value; return this; } public ArrayList getUserField2In() { return UserField2In; } public SH_InvoicesQuery setUserField2In(ArrayList value) { this.UserField2In = value; return this; } public String getUserField3() { return UserField3; } public SH_InvoicesQuery setUserField3(String value) { this.UserField3 = value; return this; } public String getUserField3StartsWith() { return UserField3StartsWith; } public SH_InvoicesQuery setUserField3StartsWith(String value) { this.UserField3StartsWith = value; return this; } public String getUserField3EndsWith() { return UserField3EndsWith; } public SH_InvoicesQuery setUserField3EndsWith(String value) { this.UserField3EndsWith = value; return this; } public String getUserField3Contains() { return UserField3Contains; } public SH_InvoicesQuery setUserField3Contains(String value) { this.UserField3Contains = value; return this; } public String getUserField3Like() { return UserField3Like; } public SH_InvoicesQuery setUserField3Like(String value) { this.UserField3Like = value; return this; } public ArrayList getUserField3Between() { return UserField3Between; } public SH_InvoicesQuery setUserField3Between(ArrayList value) { this.UserField3Between = value; return this; } public ArrayList getUserField3In() { return UserField3In; } public SH_InvoicesQuery setUserField3In(ArrayList value) { this.UserField3In = value; return this; } public String getUserField4() { return UserField4; } public SH_InvoicesQuery setUserField4(String value) { this.UserField4 = value; return this; } public String getUserField4StartsWith() { return UserField4StartsWith; } public SH_InvoicesQuery setUserField4StartsWith(String value) { this.UserField4StartsWith = value; return this; } public String getUserField4EndsWith() { return UserField4EndsWith; } public SH_InvoicesQuery setUserField4EndsWith(String value) { this.UserField4EndsWith = value; return this; } public String getUserField4Contains() { return UserField4Contains; } public SH_InvoicesQuery setUserField4Contains(String value) { this.UserField4Contains = value; return this; } public String getUserField4Like() { return UserField4Like; } public SH_InvoicesQuery setUserField4Like(String value) { this.UserField4Like = value; return this; } public ArrayList getUserField4Between() { return UserField4Between; } public SH_InvoicesQuery setUserField4Between(ArrayList value) { this.UserField4Between = value; return this; } public ArrayList getUserField4In() { return UserField4In; } public SH_InvoicesQuery setUserField4In(ArrayList value) { this.UserField4In = value; return this; } public String getUserField5() { return UserField5; } public SH_InvoicesQuery setUserField5(String value) { this.UserField5 = value; return this; } public String getUserField5StartsWith() { return UserField5StartsWith; } public SH_InvoicesQuery setUserField5StartsWith(String value) { this.UserField5StartsWith = value; return this; } public String getUserField5EndsWith() { return UserField5EndsWith; } public SH_InvoicesQuery setUserField5EndsWith(String value) { this.UserField5EndsWith = value; return this; } public String getUserField5Contains() { return UserField5Contains; } public SH_InvoicesQuery setUserField5Contains(String value) { this.UserField5Contains = value; return this; } public String getUserField5Like() { return UserField5Like; } public SH_InvoicesQuery setUserField5Like(String value) { this.UserField5Like = value; return this; } public ArrayList getUserField5Between() { return UserField5Between; } public SH_InvoicesQuery setUserField5Between(ArrayList value) { this.UserField5Between = value; return this; } public ArrayList getUserField5In() { return UserField5In; } public SH_InvoicesQuery setUserField5In(ArrayList value) { this.UserField5In = value; return this; } public String getUserField6() { return UserField6; } public SH_InvoicesQuery setUserField6(String value) { this.UserField6 = value; return this; } public String getUserField6StartsWith() { return UserField6StartsWith; } public SH_InvoicesQuery setUserField6StartsWith(String value) { this.UserField6StartsWith = value; return this; } public String getUserField6EndsWith() { return UserField6EndsWith; } public SH_InvoicesQuery setUserField6EndsWith(String value) { this.UserField6EndsWith = value; return this; } public String getUserField6Contains() { return UserField6Contains; } public SH_InvoicesQuery setUserField6Contains(String value) { this.UserField6Contains = value; return this; } public String getUserField6Like() { return UserField6Like; } public SH_InvoicesQuery setUserField6Like(String value) { this.UserField6Like = value; return this; } public ArrayList getUserField6Between() { return UserField6Between; } public SH_InvoicesQuery setUserField6Between(ArrayList value) { this.UserField6Between = value; return this; } public ArrayList getUserField6In() { return UserField6In; } public SH_InvoicesQuery setUserField6In(ArrayList value) { this.UserField6In = value; return this; } public String getUserField7() { return UserField7; } public SH_InvoicesQuery setUserField7(String value) { this.UserField7 = value; return this; } public String getUserField7StartsWith() { return UserField7StartsWith; } public SH_InvoicesQuery setUserField7StartsWith(String value) { this.UserField7StartsWith = value; return this; } public String getUserField7EndsWith() { return UserField7EndsWith; } public SH_InvoicesQuery setUserField7EndsWith(String value) { this.UserField7EndsWith = value; return this; } public String getUserField7Contains() { return UserField7Contains; } public SH_InvoicesQuery setUserField7Contains(String value) { this.UserField7Contains = value; return this; } public String getUserField7Like() { return UserField7Like; } public SH_InvoicesQuery setUserField7Like(String value) { this.UserField7Like = value; return this; } public ArrayList getUserField7Between() { return UserField7Between; } public SH_InvoicesQuery setUserField7Between(ArrayList value) { this.UserField7Between = value; return this; } public ArrayList getUserField7In() { return UserField7In; } public SH_InvoicesQuery setUserField7In(ArrayList value) { this.UserField7In = value; return this; } public String getUserField8() { return UserField8; } public SH_InvoicesQuery setUserField8(String value) { this.UserField8 = value; return this; } public String getUserField8StartsWith() { return UserField8StartsWith; } public SH_InvoicesQuery setUserField8StartsWith(String value) { this.UserField8StartsWith = value; return this; } public String getUserField8EndsWith() { return UserField8EndsWith; } public SH_InvoicesQuery setUserField8EndsWith(String value) { this.UserField8EndsWith = value; return this; } public String getUserField8Contains() { return UserField8Contains; } public SH_InvoicesQuery setUserField8Contains(String value) { this.UserField8Contains = value; return this; } public String getUserField8Like() { return UserField8Like; } public SH_InvoicesQuery setUserField8Like(String value) { this.UserField8Like = value; return this; } public ArrayList getUserField8Between() { return UserField8Between; } public SH_InvoicesQuery setUserField8Between(ArrayList value) { this.UserField8Between = value; return this; } public ArrayList getUserField8In() { return UserField8In; } public SH_InvoicesQuery setUserField8In(ArrayList value) { this.UserField8In = value; return this; } public String getUserField9() { return UserField9; } public SH_InvoicesQuery setUserField9(String value) { this.UserField9 = value; return this; } public String getUserField9StartsWith() { return UserField9StartsWith; } public SH_InvoicesQuery setUserField9StartsWith(String value) { this.UserField9StartsWith = value; return this; } public String getUserField9EndsWith() { return UserField9EndsWith; } public SH_InvoicesQuery setUserField9EndsWith(String value) { this.UserField9EndsWith = value; return this; } public String getUserField9Contains() { return UserField9Contains; } public SH_InvoicesQuery setUserField9Contains(String value) { this.UserField9Contains = value; return this; } public String getUserField9Like() { return UserField9Like; } public SH_InvoicesQuery setUserField9Like(String value) { this.UserField9Like = value; return this; } public ArrayList getUserField9Between() { return UserField9Between; } public SH_InvoicesQuery setUserField9Between(ArrayList value) { this.UserField9Between = value; return this; } public ArrayList getUserField9In() { return UserField9In; } public SH_InvoicesQuery setUserField9In(ArrayList value) { this.UserField9In = value; return this; } public String getUserField10() { return UserField10; } public SH_InvoicesQuery setUserField10(String value) { this.UserField10 = value; return this; } public String getUserField10StartsWith() { return UserField10StartsWith; } public SH_InvoicesQuery setUserField10StartsWith(String value) { this.UserField10StartsWith = value; return this; } public String getUserField10EndsWith() { return UserField10EndsWith; } public SH_InvoicesQuery setUserField10EndsWith(String value) { this.UserField10EndsWith = value; return this; } public String getUserField10Contains() { return UserField10Contains; } public SH_InvoicesQuery setUserField10Contains(String value) { this.UserField10Contains = value; return this; } public String getUserField10Like() { return UserField10Like; } public SH_InvoicesQuery setUserField10Like(String value) { this.UserField10Like = value; return this; } public ArrayList getUserField10Between() { return UserField10Between; } public SH_InvoicesQuery setUserField10Between(ArrayList value) { this.UserField10Between = value; return this; } public ArrayList getUserField10In() { return UserField10In; } public SH_InvoicesQuery setUserField10In(ArrayList value) { this.UserField10In = value; return this; } public BigDecimal getExpectedHomeAmount() { return ExpectedHomeAmount; } public SH_InvoicesQuery setExpectedHomeAmount(BigDecimal value) { this.ExpectedHomeAmount = value; return this; } public BigDecimal getExpectedHomeAmountGreaterThanOrEqualTo() { return ExpectedHomeAmountGreaterThanOrEqualTo; } public SH_InvoicesQuery setExpectedHomeAmountGreaterThanOrEqualTo(BigDecimal value) { this.ExpectedHomeAmountGreaterThanOrEqualTo = value; return this; } public BigDecimal getExpectedHomeAmountGreaterThan() { return ExpectedHomeAmountGreaterThan; } public SH_InvoicesQuery setExpectedHomeAmountGreaterThan(BigDecimal value) { this.ExpectedHomeAmountGreaterThan = value; return this; } public BigDecimal getExpectedHomeAmountLessThan() { return ExpectedHomeAmountLessThan; } public SH_InvoicesQuery setExpectedHomeAmountLessThan(BigDecimal value) { this.ExpectedHomeAmountLessThan = value; return this; } public BigDecimal getExpectedHomeAmountLessThanOrEqualTo() { return ExpectedHomeAmountLessThanOrEqualTo; } public SH_InvoicesQuery setExpectedHomeAmountLessThanOrEqualTo(BigDecimal value) { this.ExpectedHomeAmountLessThanOrEqualTo = value; return this; } public BigDecimal getExpectedHomeAmountNotEqualTo() { return ExpectedHomeAmountNotEqualTo; } public SH_InvoicesQuery setExpectedHomeAmountNotEqualTo(BigDecimal value) { this.ExpectedHomeAmountNotEqualTo = value; return this; } public ArrayList getExpectedHomeAmountBetween() { return ExpectedHomeAmountBetween; } public SH_InvoicesQuery setExpectedHomeAmountBetween(ArrayList value) { this.ExpectedHomeAmountBetween = value; return this; } public ArrayList getExpectedHomeAmountIn() { return ExpectedHomeAmountIn; } public SH_InvoicesQuery setExpectedHomeAmountIn(ArrayList value) { this.ExpectedHomeAmountIn = value; return this; } public BigDecimal getExpectedFXAmount() { return ExpectedFXAmount; } public SH_InvoicesQuery setExpectedFXAmount(BigDecimal value) { this.ExpectedFXAmount = value; return this; } public BigDecimal getExpectedFXAmountGreaterThanOrEqualTo() { return ExpectedFXAmountGreaterThanOrEqualTo; } public SH_InvoicesQuery setExpectedFXAmountGreaterThanOrEqualTo(BigDecimal value) { this.ExpectedFXAmountGreaterThanOrEqualTo = value; return this; } public BigDecimal getExpectedFXAmountGreaterThan() { return ExpectedFXAmountGreaterThan; } public SH_InvoicesQuery setExpectedFXAmountGreaterThan(BigDecimal value) { this.ExpectedFXAmountGreaterThan = value; return this; } public BigDecimal getExpectedFXAmountLessThan() { return ExpectedFXAmountLessThan; } public SH_InvoicesQuery setExpectedFXAmountLessThan(BigDecimal value) { this.ExpectedFXAmountLessThan = value; return this; } public BigDecimal getExpectedFXAmountLessThanOrEqualTo() { return ExpectedFXAmountLessThanOrEqualTo; } public SH_InvoicesQuery setExpectedFXAmountLessThanOrEqualTo(BigDecimal value) { this.ExpectedFXAmountLessThanOrEqualTo = value; return this; } public BigDecimal getExpectedFXAmountNotEqualTo() { return ExpectedFXAmountNotEqualTo; } public SH_InvoicesQuery setExpectedFXAmountNotEqualTo(BigDecimal value) { this.ExpectedFXAmountNotEqualTo = value; return this; } public ArrayList getExpectedFXAmountBetween() { return ExpectedFXAmountBetween; } public SH_InvoicesQuery setExpectedFXAmountBetween(ArrayList value) { this.ExpectedFXAmountBetween = value; return this; } public ArrayList getExpectedFXAmountIn() { return ExpectedFXAmountIn; } public SH_InvoicesQuery setExpectedFXAmountIn(ArrayList value) { this.ExpectedFXAmountIn = value; return this; } public Boolean isInvoiced() { return Invoiced; } public SH_InvoicesQuery setInvoiced(Boolean value) { this.Invoiced = value; return this; } public Date getInvoiceDate() { return InvoiceDate; } public SH_InvoicesQuery setInvoiceDate(Date value) { this.InvoiceDate = value; return this; } public Date getInvoiceDateGreaterThanOrEqualTo() { return InvoiceDateGreaterThanOrEqualTo; } public SH_InvoicesQuery setInvoiceDateGreaterThanOrEqualTo(Date value) { this.InvoiceDateGreaterThanOrEqualTo = value; return this; } public Date getInvoiceDateGreaterThan() { return InvoiceDateGreaterThan; } public SH_InvoicesQuery setInvoiceDateGreaterThan(Date value) { this.InvoiceDateGreaterThan = value; return this; } public Date getInvoiceDateLessThan() { return InvoiceDateLessThan; } public SH_InvoicesQuery setInvoiceDateLessThan(Date value) { this.InvoiceDateLessThan = value; return this; } public Date getInvoiceDateLessThanOrEqualTo() { return InvoiceDateLessThanOrEqualTo; } public SH_InvoicesQuery setInvoiceDateLessThanOrEqualTo(Date value) { this.InvoiceDateLessThanOrEqualTo = value; return this; } public Date getInvoiceDateNotEqualTo() { return InvoiceDateNotEqualTo; } public SH_InvoicesQuery setInvoiceDateNotEqualTo(Date value) { this.InvoiceDateNotEqualTo = value; return this; } public ArrayList getInvoiceDateBetween() { return InvoiceDateBetween; } public SH_InvoicesQuery setInvoiceDateBetween(ArrayList value) { this.InvoiceDateBetween = value; return this; } public ArrayList getInvoiceDateIn() { return InvoiceDateIn; } public SH_InvoicesQuery setInvoiceDateIn(ArrayList value) { this.InvoiceDateIn = value; return this; } public ArrayList getRowHash() { return RowHash; } public SH_InvoicesQuery setRowHash(ArrayList value) { this.RowHash = value; return this; } public Integer getItemNo() { return ItemNo; } public SH_InvoicesQuery setItemNo(Integer value) { this.ItemNo = value; return this; } public Integer getItemNoGreaterThanOrEqualTo() { return ItemNoGreaterThanOrEqualTo; } public SH_InvoicesQuery setItemNoGreaterThanOrEqualTo(Integer value) { this.ItemNoGreaterThanOrEqualTo = value; return this; } public Integer getItemNoGreaterThan() { return ItemNoGreaterThan; } public SH_InvoicesQuery setItemNoGreaterThan(Integer value) { this.ItemNoGreaterThan = value; return this; } public Integer getItemNoLessThan() { return ItemNoLessThan; } public SH_InvoicesQuery setItemNoLessThan(Integer value) { this.ItemNoLessThan = value; return this; } public Integer getItemNoLessThanOrEqualTo() { return ItemNoLessThanOrEqualTo; } public SH_InvoicesQuery setItemNoLessThanOrEqualTo(Integer value) { this.ItemNoLessThanOrEqualTo = value; return this; } public Integer getItemNoNotEqualTo() { return ItemNoNotEqualTo; } public SH_InvoicesQuery setItemNoNotEqualTo(Integer value) { this.ItemNoNotEqualTo = value; return this; } public ArrayList getItemNoBetween() { return ItemNoBetween; } public SH_InvoicesQuery setItemNoBetween(ArrayList value) { this.ItemNoBetween = value; return this; } public ArrayList getItemNoIn() { return ItemNoIn; } public SH_InvoicesQuery setItemNoIn(ArrayList value) { this.ItemNoIn = value; return this; } public BigDecimal getTaxAmount() { return TaxAmount; } public SH_InvoicesQuery setTaxAmount(BigDecimal value) { this.TaxAmount = value; return this; } public BigDecimal getTaxAmountGreaterThanOrEqualTo() { return TaxAmountGreaterThanOrEqualTo; } public SH_InvoicesQuery setTaxAmountGreaterThanOrEqualTo(BigDecimal value) { this.TaxAmountGreaterThanOrEqualTo = value; return this; } public BigDecimal getTaxAmountGreaterThan() { return TaxAmountGreaterThan; } public SH_InvoicesQuery setTaxAmountGreaterThan(BigDecimal value) { this.TaxAmountGreaterThan = value; return this; } public BigDecimal getTaxAmountLessThan() { return TaxAmountLessThan; } public SH_InvoicesQuery setTaxAmountLessThan(BigDecimal value) { this.TaxAmountLessThan = value; return this; } public BigDecimal getTaxAmountLessThanOrEqualTo() { return TaxAmountLessThanOrEqualTo; } public SH_InvoicesQuery setTaxAmountLessThanOrEqualTo(BigDecimal value) { this.TaxAmountLessThanOrEqualTo = value; return this; } public BigDecimal getTaxAmountNotEqualTo() { return TaxAmountNotEqualTo; } public SH_InvoicesQuery setTaxAmountNotEqualTo(BigDecimal value) { this.TaxAmountNotEqualTo = value; return this; } public ArrayList getTaxAmountBetween() { return TaxAmountBetween; } public SH_InvoicesQuery setTaxAmountBetween(ArrayList value) { this.TaxAmountBetween = value; return this; } public ArrayList getTaxAmountIn() { return TaxAmountIn; } public SH_InvoicesQuery setTaxAmountIn(ArrayList value) { this.TaxAmountIn = value; return this; } public BigDecimal getAmountIncTax() { return AmountIncTax; } public SH_InvoicesQuery setAmountIncTax(BigDecimal value) { this.AmountIncTax = value; return this; } public BigDecimal getAmountIncTaxGreaterThanOrEqualTo() { return AmountIncTaxGreaterThanOrEqualTo; } public SH_InvoicesQuery setAmountIncTaxGreaterThanOrEqualTo(BigDecimal value) { this.AmountIncTaxGreaterThanOrEqualTo = value; return this; } public BigDecimal getAmountIncTaxGreaterThan() { return AmountIncTaxGreaterThan; } public SH_InvoicesQuery setAmountIncTaxGreaterThan(BigDecimal value) { this.AmountIncTaxGreaterThan = value; return this; } public BigDecimal getAmountIncTaxLessThan() { return AmountIncTaxLessThan; } public SH_InvoicesQuery setAmountIncTaxLessThan(BigDecimal value) { this.AmountIncTaxLessThan = value; return this; } public BigDecimal getAmountIncTaxLessThanOrEqualTo() { return AmountIncTaxLessThanOrEqualTo; } public SH_InvoicesQuery setAmountIncTaxLessThanOrEqualTo(BigDecimal value) { this.AmountIncTaxLessThanOrEqualTo = value; return this; } public BigDecimal getAmountIncTaxNotEqualTo() { return AmountIncTaxNotEqualTo; } public SH_InvoicesQuery setAmountIncTaxNotEqualTo(BigDecimal value) { this.AmountIncTaxNotEqualTo = value; return this; } public ArrayList getAmountIncTaxBetween() { return AmountIncTaxBetween; } public SH_InvoicesQuery setAmountIncTaxBetween(ArrayList value) { this.AmountIncTaxBetween = value; return this; } public ArrayList getAmountIncTaxIn() { return AmountIncTaxIn; } public SH_InvoicesQuery setAmountIncTaxIn(ArrayList value) { this.AmountIncTaxIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class SH_LinesQuery extends QueryDb implements IReturn> { public String ShipmentLineID = null; public String ShipmentLineIDStartsWith = null; public String ShipmentLineIDEndsWith = null; public String ShipmentLineIDContains = null; public String ShipmentLineIDLike = null; public ArrayList ShipmentLineIDBetween = null; public ArrayList ShipmentLineIDIn = null; public String ShipmentID = null; public String ShipmentIDStartsWith = null; public String ShipmentIDEndsWith = null; public String ShipmentIDContains = null; public String ShipmentIDLike = null; public ArrayList ShipmentIDBetween = null; public ArrayList ShipmentIDIn = null; public String PurchaseOrdersID = null; public String PurchaseOrdersIDStartsWith = null; public String PurchaseOrdersIDEndsWith = null; public String PurchaseOrdersIDContains = null; public String PurchaseOrdersIDLike = null; public ArrayList PurchaseOrdersIDBetween = null; public ArrayList PurchaseOrdersIDIn = null; public String PurchaseOrderLineID = null; public String PurchaseOrderLineIDStartsWith = null; public String PurchaseOrderLineIDEndsWith = null; public String PurchaseOrderLineIDContains = null; public String PurchaseOrderLineIDLike = null; public ArrayList PurchaseOrderLineIDBetween = null; public ArrayList PurchaseOrderLineIDIn = null; public String InventoryID = null; public String InventoryIDStartsWith = null; public String InventoryIDEndsWith = null; public String InventoryIDContains = null; public String InventoryIDLike = null; public ArrayList InventoryIDBetween = null; public ArrayList InventoryIDIn = null; public String PartNo = null; public String PartNoStartsWith = null; public String PartNoEndsWith = null; public String PartNoContains = null; public String PartNoLike = null; public ArrayList PartNoBetween = null; public ArrayList PartNoIn = null; public String SupplierPartNo = null; public String SupplierPartNoStartsWith = null; public String SupplierPartNoEndsWith = null; public String SupplierPartNoContains = null; public String SupplierPartNoLike = null; public ArrayList SupplierPartNoBetween = null; public ArrayList SupplierPartNoIn = null; public BigDecimal QuantityOrdered = null; public BigDecimal QuantityOrderedGreaterThanOrEqualTo = null; public BigDecimal QuantityOrderedGreaterThan = null; public BigDecimal QuantityOrderedLessThan = null; public BigDecimal QuantityOrderedLessThanOrEqualTo = null; public BigDecimal QuantityOrderedNotEqualTo = null; public ArrayList QuantityOrderedBetween = null; public ArrayList QuantityOrderedIn = null; public BigDecimal QuantityThisShipment = null; public BigDecimal QuantityThisShipmentGreaterThanOrEqualTo = null; public BigDecimal QuantityThisShipmentGreaterThan = null; public BigDecimal QuantityThisShipmentLessThan = null; public BigDecimal QuantityThisShipmentLessThanOrEqualTo = null; public BigDecimal QuantityThisShipmentNotEqualTo = null; public ArrayList QuantityThisShipmentBetween = null; public ArrayList QuantityThisShipmentIn = null; public BigDecimal OrderedCost = null; public BigDecimal OrderedCostGreaterThanOrEqualTo = null; public BigDecimal OrderedCostGreaterThan = null; public BigDecimal OrderedCostLessThan = null; public BigDecimal OrderedCostLessThanOrEqualTo = null; public BigDecimal OrderedCostNotEqualTo = null; public ArrayList OrderedCostBetween = null; public ArrayList OrderedCostIn = null; public BigDecimal ShipUnitCostExGST = null; public BigDecimal ShipUnitCostExGSTGreaterThanOrEqualTo = null; public BigDecimal ShipUnitCostExGSTGreaterThan = null; public BigDecimal ShipUnitCostExGSTLessThan = null; public BigDecimal ShipUnitCostExGSTLessThanOrEqualTo = null; public BigDecimal ShipUnitCostExGSTNotEqualTo = null; public ArrayList ShipUnitCostExGSTBetween = null; public ArrayList ShipUnitCostExGSTIn = null; public BigDecimal ShipUnitCostIncGST = null; public BigDecimal ShipUnitCostIncGSTGreaterThanOrEqualTo = null; public BigDecimal ShipUnitCostIncGSTGreaterThan = null; public BigDecimal ShipUnitCostIncGSTLessThan = null; public BigDecimal ShipUnitCostIncGSTLessThanOrEqualTo = null; public BigDecimal ShipUnitCostIncGSTNotEqualTo = null; public ArrayList ShipUnitCostIncGSTBetween = null; public ArrayList ShipUnitCostIncGSTIn = null; public BigDecimal FXShipUnitCostExGST = null; public BigDecimal FXShipUnitCostExGSTGreaterThanOrEqualTo = null; public BigDecimal FXShipUnitCostExGSTGreaterThan = null; public BigDecimal FXShipUnitCostExGSTLessThan = null; public BigDecimal FXShipUnitCostExGSTLessThanOrEqualTo = null; public BigDecimal FXShipUnitCostExGSTNotEqualTo = null; public ArrayList FXShipUnitCostExGSTBetween = null; public ArrayList FXShipUnitCostExGSTIn = null; public BigDecimal AdjustedUnitCost = null; public BigDecimal AdjustedUnitCostGreaterThanOrEqualTo = null; public BigDecimal AdjustedUnitCostGreaterThan = null; public BigDecimal AdjustedUnitCostLessThan = null; public BigDecimal AdjustedUnitCostLessThanOrEqualTo = null; public BigDecimal AdjustedUnitCostNotEqualTo = null; public ArrayList AdjustedUnitCostBetween = null; public ArrayList AdjustedUnitCostIn = null; public BigDecimal GSTRate = null; public BigDecimal GSTRateGreaterThanOrEqualTo = null; public BigDecimal GSTRateGreaterThan = null; public BigDecimal GSTRateLessThan = null; public BigDecimal GSTRateLessThanOrEqualTo = null; public BigDecimal GSTRateNotEqualTo = null; public ArrayList GSTRateBetween = null; public ArrayList GSTRateIn = null; public BigDecimal GSTAmount = null; public BigDecimal GSTAmountGreaterThanOrEqualTo = null; public BigDecimal GSTAmountGreaterThan = null; public BigDecimal GSTAmountLessThan = null; public BigDecimal GSTAmountLessThanOrEqualTo = null; public BigDecimal GSTAmountNotEqualTo = null; public ArrayList GSTAmountBetween = null; public ArrayList GSTAmountIn = null; public String GSTID = null; public String GSTIDStartsWith = null; public String GSTIDEndsWith = null; public String GSTIDContains = null; public String GSTIDLike = null; public ArrayList GSTIDBetween = null; public ArrayList GSTIDIn = null; public Boolean UseSerialNo = null; public Boolean UseExpiry = null; public Short DecimalPlaces = null; public Short DecimalPlacesGreaterThanOrEqualTo = null; public Short DecimalPlacesGreaterThan = null; public Short DecimalPlacesLessThan = null; public Short DecimalPlacesLessThanOrEqualTo = null; public Short DecimalPlacesNotEqualTo = null; public ArrayList DecimalPlacesBetween = null; public ArrayList DecimalPlacesIn = null; public String POClassID = null; public String POClassIDStartsWith = null; public String POClassIDEndsWith = null; public String POClassIDContains = null; public String POClassIDLike = null; public ArrayList POClassIDBetween = null; public ArrayList POClassIDIn = null; public String InvoicesID = null; public String InvoicesIDStartsWith = null; public String InvoicesIDEndsWith = null; public String InvoicesIDContains = null; public String InvoicesIDLike = null; public ArrayList InvoicesIDBetween = null; public ArrayList InvoicesIDIn = null; public Short DeliveryDays = null; public Short DeliveryDaysGreaterThanOrEqualTo = null; public Short DeliveryDaysGreaterThan = null; public Short DeliveryDaysLessThan = null; public Short DeliveryDaysLessThanOrEqualTo = null; public Short DeliveryDaysNotEqualTo = null; public ArrayList DeliveryDaysBetween = null; public ArrayList DeliveryDaysIn = null; public String Description = null; public String DescriptionStartsWith = null; public String DescriptionEndsWith = null; public String DescriptionContains = null; public String DescriptionLike = null; public ArrayList DescriptionBetween = null; public ArrayList DescriptionIn = null; public BigDecimal OrderUnits = null; public BigDecimal OrderUnitsGreaterThanOrEqualTo = null; public BigDecimal OrderUnitsGreaterThan = null; public BigDecimal OrderUnitsLessThan = null; public BigDecimal OrderUnitsLessThanOrEqualTo = null; public BigDecimal OrderUnitsNotEqualTo = null; public ArrayList OrderUnitsBetween = null; public ArrayList OrderUnitsIn = null; public String ClassificationID = null; public String ClassificationIDStartsWith = null; public String ClassificationIDEndsWith = null; public String ClassificationIDContains = null; public String ClassificationIDLike = null; public ArrayList ClassificationIDBetween = null; public ArrayList ClassificationIDIn = null; public String JobCostID = null; public String JobCostIDStartsWith = null; public String JobCostIDEndsWith = null; public String JobCostIDContains = null; public String JobCostIDLike = null; public ArrayList JobCostIDBetween = null; public ArrayList JobCostIDIn = null; public BigDecimal FXRate = null; public BigDecimal FXRateGreaterThanOrEqualTo = null; public BigDecimal FXRateGreaterThan = null; public BigDecimal FXRateLessThan = null; public BigDecimal FXRateLessThanOrEqualTo = null; public BigDecimal FXRateNotEqualTo = null; public ArrayList FXRateBetween = null; public ArrayList FXRateIn = null; public BigDecimal Weight = null; public BigDecimal WeightGreaterThanOrEqualTo = null; public BigDecimal WeightGreaterThan = null; public BigDecimal WeightLessThan = null; public BigDecimal WeightLessThanOrEqualTo = null; public BigDecimal WeightNotEqualTo = null; public ArrayList WeightBetween = null; public ArrayList WeightIn = null; public BigDecimal Volume = null; public BigDecimal VolumeGreaterThanOrEqualTo = null; public BigDecimal VolumeGreaterThan = null; public BigDecimal VolumeLessThan = null; public BigDecimal VolumeLessThanOrEqualTo = null; public BigDecimal VolumeNotEqualTo = null; public ArrayList VolumeBetween = null; public ArrayList VolumeIn = null; public BigDecimal LineTotalExGST = null; public BigDecimal LineTotalExGSTGreaterThanOrEqualTo = null; public BigDecimal LineTotalExGSTGreaterThan = null; public BigDecimal LineTotalExGSTLessThan = null; public BigDecimal LineTotalExGSTLessThanOrEqualTo = null; public BigDecimal LineTotalExGSTNotEqualTo = null; public ArrayList LineTotalExGSTBetween = null; public ArrayList LineTotalExGSTIn = null; public BigDecimal FXLineTotalExGST = null; public BigDecimal FXLineTotalExGSTGreaterThanOrEqualTo = null; public BigDecimal FXLineTotalExGSTGreaterThan = null; public BigDecimal FXLineTotalExGSTLessThan = null; public BigDecimal FXLineTotalExGSTLessThanOrEqualTo = null; public BigDecimal FXLineTotalExGSTNotEqualTo = null; public ArrayList FXLineTotalExGSTBetween = null; public ArrayList FXLineTotalExGSTIn = null; public BigDecimal LineTotalIncGST = null; public BigDecimal LineTotalIncGSTGreaterThanOrEqualTo = null; public BigDecimal LineTotalIncGSTGreaterThan = null; public BigDecimal LineTotalIncGSTLessThan = null; public BigDecimal LineTotalIncGSTLessThanOrEqualTo = null; public BigDecimal LineTotalIncGSTNotEqualTo = null; public ArrayList LineTotalIncGSTBetween = null; public ArrayList LineTotalIncGSTIn = null; public BigDecimal LandedCostTotal = null; public BigDecimal LandedCostTotalGreaterThanOrEqualTo = null; public BigDecimal LandedCostTotalGreaterThan = null; public BigDecimal LandedCostTotalLessThan = null; public BigDecimal LandedCostTotalLessThanOrEqualTo = null; public BigDecimal LandedCostTotalNotEqualTo = null; public ArrayList LandedCostTotalBetween = null; public ArrayList LandedCostTotalIn = null; public String CurrencyID = null; public String CurrencyIDStartsWith = null; public String CurrencyIDEndsWith = null; public String CurrencyIDContains = null; public String CurrencyIDLike = null; public ArrayList CurrencyIDBetween = null; public ArrayList CurrencyIDIn = null; public String CreditorID = null; public String CreditorIDStartsWith = null; public String CreditorIDEndsWith = null; public String CreditorIDContains = null; public String CreditorIDLike = null; public ArrayList CreditorIDBetween = null; public ArrayList CreditorIDIn = null; public String UserField1 = null; public String UserField1StartsWith = null; public String UserField1EndsWith = null; public String UserField1Contains = null; public String UserField1Like = null; public ArrayList UserField1Between = null; public ArrayList UserField1In = null; public String UserField2 = null; public String UserField2StartsWith = null; public String UserField2EndsWith = null; public String UserField2Contains = null; public String UserField2Like = null; public ArrayList UserField2Between = null; public ArrayList UserField2In = null; public String UserField3 = null; public String UserField3StartsWith = null; public String UserField3EndsWith = null; public String UserField3Contains = null; public String UserField3Like = null; public ArrayList UserField3Between = null; public ArrayList UserField3In = null; public String UserField4 = null; public String UserField4StartsWith = null; public String UserField4EndsWith = null; public String UserField4Contains = null; public String UserField4Like = null; public ArrayList UserField4Between = null; public ArrayList UserField4In = null; public String UserField5 = null; public String UserField5StartsWith = null; public String UserField5EndsWith = null; public String UserField5Contains = null; public String UserField5Like = null; public ArrayList UserField5Between = null; public ArrayList UserField5In = null; public String UserField6 = null; public String UserField6StartsWith = null; public String UserField6EndsWith = null; public String UserField6Contains = null; public String UserField6Like = null; public ArrayList UserField6Between = null; public ArrayList UserField6In = null; public String UserField7 = null; public String UserField7StartsWith = null; public String UserField7EndsWith = null; public String UserField7Contains = null; public String UserField7Like = null; public ArrayList UserField7Between = null; public ArrayList UserField7In = null; public String UserField8 = null; public String UserField8StartsWith = null; public String UserField8EndsWith = null; public String UserField8Contains = null; public String UserField8Like = null; public ArrayList UserField8Between = null; public ArrayList UserField8In = null; public String UserField9 = null; public String UserField9StartsWith = null; public String UserField9EndsWith = null; public String UserField9Contains = null; public String UserField9Like = null; public ArrayList UserField9Between = null; public ArrayList UserField9In = null; public String UserField10 = null; public String UserField10StartsWith = null; public String UserField10EndsWith = null; public String UserField10Contains = null; public String UserField10Like = null; public ArrayList UserField10Between = null; public ArrayList UserField10In = null; public Boolean PhysicalItem = null; public BigDecimal FXOrderedCost = null; public BigDecimal FXOrderedCostGreaterThanOrEqualTo = null; public BigDecimal FXOrderedCostGreaterThan = null; public BigDecimal FXOrderedCostLessThan = null; public BigDecimal FXOrderedCostLessThanOrEqualTo = null; public BigDecimal FXOrderedCostNotEqualTo = null; public ArrayList FXOrderedCostBetween = null; public ArrayList FXOrderedCostIn = null; public Integer DisplayOrder = null; public Integer DisplayOrderGreaterThanOrEqualTo = null; public Integer DisplayOrderGreaterThan = null; public Integer DisplayOrderLessThan = null; public Integer DisplayOrderLessThanOrEqualTo = null; public Integer DisplayOrderNotEqualTo = null; public ArrayList DisplayOrderBetween = null; public ArrayList DisplayOrderIn = null; public String IN_SupplierWarehouse_RecID = null; public String IN_SupplierWarehouse_RecIDStartsWith = null; public String IN_SupplierWarehouse_RecIDEndsWith = null; public String IN_SupplierWarehouse_RecIDContains = null; public String IN_SupplierWarehouse_RecIDLike = null; public ArrayList IN_SupplierWarehouse_RecIDBetween = null; public ArrayList IN_SupplierWarehouse_RecIDIn = null; public String IN_Creditor_RecID = null; public String IN_Creditor_RecIDStartsWith = null; public String IN_Creditor_RecIDEndsWith = null; public String IN_Creditor_RecIDContains = null; public String IN_Creditor_RecIDLike = null; public ArrayList IN_Creditor_RecIDBetween = null; public ArrayList IN_Creditor_RecIDIn = null; public ArrayList RowHash = null; public Boolean UnitChanged = null; public Boolean FXChanged = null; public Boolean ExChanged = null; public Boolean TaxRateChanged = null; public Boolean ChangeSourceIsFromPurchaseOrderLine = null; public String getShipmentLineID() { return ShipmentLineID; } public SH_LinesQuery setShipmentLineID(String value) { this.ShipmentLineID = value; return this; } public String getShipmentLineIDStartsWith() { return ShipmentLineIDStartsWith; } public SH_LinesQuery setShipmentLineIDStartsWith(String value) { this.ShipmentLineIDStartsWith = value; return this; } public String getShipmentLineIDEndsWith() { return ShipmentLineIDEndsWith; } public SH_LinesQuery setShipmentLineIDEndsWith(String value) { this.ShipmentLineIDEndsWith = value; return this; } public String getShipmentLineIDContains() { return ShipmentLineIDContains; } public SH_LinesQuery setShipmentLineIDContains(String value) { this.ShipmentLineIDContains = value; return this; } public String getShipmentLineIDLike() { return ShipmentLineIDLike; } public SH_LinesQuery setShipmentLineIDLike(String value) { this.ShipmentLineIDLike = value; return this; } public ArrayList getShipmentLineIDBetween() { return ShipmentLineIDBetween; } public SH_LinesQuery setShipmentLineIDBetween(ArrayList value) { this.ShipmentLineIDBetween = value; return this; } public ArrayList getShipmentLineIDIn() { return ShipmentLineIDIn; } public SH_LinesQuery setShipmentLineIDIn(ArrayList value) { this.ShipmentLineIDIn = value; return this; } public String getShipmentID() { return ShipmentID; } public SH_LinesQuery setShipmentID(String value) { this.ShipmentID = value; return this; } public String getShipmentIDStartsWith() { return ShipmentIDStartsWith; } public SH_LinesQuery setShipmentIDStartsWith(String value) { this.ShipmentIDStartsWith = value; return this; } public String getShipmentIDEndsWith() { return ShipmentIDEndsWith; } public SH_LinesQuery setShipmentIDEndsWith(String value) { this.ShipmentIDEndsWith = value; return this; } public String getShipmentIDContains() { return ShipmentIDContains; } public SH_LinesQuery setShipmentIDContains(String value) { this.ShipmentIDContains = value; return this; } public String getShipmentIDLike() { return ShipmentIDLike; } public SH_LinesQuery setShipmentIDLike(String value) { this.ShipmentIDLike = value; return this; } public ArrayList getShipmentIDBetween() { return ShipmentIDBetween; } public SH_LinesQuery setShipmentIDBetween(ArrayList value) { this.ShipmentIDBetween = value; return this; } public ArrayList getShipmentIDIn() { return ShipmentIDIn; } public SH_LinesQuery setShipmentIDIn(ArrayList value) { this.ShipmentIDIn = value; return this; } public String getPurchaseOrdersID() { return PurchaseOrdersID; } public SH_LinesQuery setPurchaseOrdersID(String value) { this.PurchaseOrdersID = value; return this; } public String getPurchaseOrdersIDStartsWith() { return PurchaseOrdersIDStartsWith; } public SH_LinesQuery setPurchaseOrdersIDStartsWith(String value) { this.PurchaseOrdersIDStartsWith = value; return this; } public String getPurchaseOrdersIDEndsWith() { return PurchaseOrdersIDEndsWith; } public SH_LinesQuery setPurchaseOrdersIDEndsWith(String value) { this.PurchaseOrdersIDEndsWith = value; return this; } public String getPurchaseOrdersIDContains() { return PurchaseOrdersIDContains; } public SH_LinesQuery setPurchaseOrdersIDContains(String value) { this.PurchaseOrdersIDContains = value; return this; } public String getPurchaseOrdersIDLike() { return PurchaseOrdersIDLike; } public SH_LinesQuery setPurchaseOrdersIDLike(String value) { this.PurchaseOrdersIDLike = value; return this; } public ArrayList getPurchaseOrdersIDBetween() { return PurchaseOrdersIDBetween; } public SH_LinesQuery setPurchaseOrdersIDBetween(ArrayList value) { this.PurchaseOrdersIDBetween = value; return this; } public ArrayList getPurchaseOrdersIDIn() { return PurchaseOrdersIDIn; } public SH_LinesQuery setPurchaseOrdersIDIn(ArrayList value) { this.PurchaseOrdersIDIn = value; return this; } public String getPurchaseOrderLineID() { return PurchaseOrderLineID; } public SH_LinesQuery setPurchaseOrderLineID(String value) { this.PurchaseOrderLineID = value; return this; } public String getPurchaseOrderLineIDStartsWith() { return PurchaseOrderLineIDStartsWith; } public SH_LinesQuery setPurchaseOrderLineIDStartsWith(String value) { this.PurchaseOrderLineIDStartsWith = value; return this; } public String getPurchaseOrderLineIDEndsWith() { return PurchaseOrderLineIDEndsWith; } public SH_LinesQuery setPurchaseOrderLineIDEndsWith(String value) { this.PurchaseOrderLineIDEndsWith = value; return this; } public String getPurchaseOrderLineIDContains() { return PurchaseOrderLineIDContains; } public SH_LinesQuery setPurchaseOrderLineIDContains(String value) { this.PurchaseOrderLineIDContains = value; return this; } public String getPurchaseOrderLineIDLike() { return PurchaseOrderLineIDLike; } public SH_LinesQuery setPurchaseOrderLineIDLike(String value) { this.PurchaseOrderLineIDLike = value; return this; } public ArrayList getPurchaseOrderLineIDBetween() { return PurchaseOrderLineIDBetween; } public SH_LinesQuery setPurchaseOrderLineIDBetween(ArrayList value) { this.PurchaseOrderLineIDBetween = value; return this; } public ArrayList getPurchaseOrderLineIDIn() { return PurchaseOrderLineIDIn; } public SH_LinesQuery setPurchaseOrderLineIDIn(ArrayList value) { this.PurchaseOrderLineIDIn = value; return this; } public String getInventoryID() { return InventoryID; } public SH_LinesQuery setInventoryID(String value) { this.InventoryID = value; return this; } public String getInventoryIDStartsWith() { return InventoryIDStartsWith; } public SH_LinesQuery setInventoryIDStartsWith(String value) { this.InventoryIDStartsWith = value; return this; } public String getInventoryIDEndsWith() { return InventoryIDEndsWith; } public SH_LinesQuery setInventoryIDEndsWith(String value) { this.InventoryIDEndsWith = value; return this; } public String getInventoryIDContains() { return InventoryIDContains; } public SH_LinesQuery setInventoryIDContains(String value) { this.InventoryIDContains = value; return this; } public String getInventoryIDLike() { return InventoryIDLike; } public SH_LinesQuery setInventoryIDLike(String value) { this.InventoryIDLike = value; return this; } public ArrayList getInventoryIDBetween() { return InventoryIDBetween; } public SH_LinesQuery setInventoryIDBetween(ArrayList value) { this.InventoryIDBetween = value; return this; } public ArrayList getInventoryIDIn() { return InventoryIDIn; } public SH_LinesQuery setInventoryIDIn(ArrayList value) { this.InventoryIDIn = value; return this; } public String getPartNo() { return PartNo; } public SH_LinesQuery setPartNo(String value) { this.PartNo = value; return this; } public String getPartNoStartsWith() { return PartNoStartsWith; } public SH_LinesQuery setPartNoStartsWith(String value) { this.PartNoStartsWith = value; return this; } public String getPartNoEndsWith() { return PartNoEndsWith; } public SH_LinesQuery setPartNoEndsWith(String value) { this.PartNoEndsWith = value; return this; } public String getPartNoContains() { return PartNoContains; } public SH_LinesQuery setPartNoContains(String value) { this.PartNoContains = value; return this; } public String getPartNoLike() { return PartNoLike; } public SH_LinesQuery setPartNoLike(String value) { this.PartNoLike = value; return this; } public ArrayList getPartNoBetween() { return PartNoBetween; } public SH_LinesQuery setPartNoBetween(ArrayList value) { this.PartNoBetween = value; return this; } public ArrayList getPartNoIn() { return PartNoIn; } public SH_LinesQuery setPartNoIn(ArrayList value) { this.PartNoIn = value; return this; } public String getSupplierPartNo() { return SupplierPartNo; } public SH_LinesQuery setSupplierPartNo(String value) { this.SupplierPartNo = value; return this; } public String getSupplierPartNoStartsWith() { return SupplierPartNoStartsWith; } public SH_LinesQuery setSupplierPartNoStartsWith(String value) { this.SupplierPartNoStartsWith = value; return this; } public String getSupplierPartNoEndsWith() { return SupplierPartNoEndsWith; } public SH_LinesQuery setSupplierPartNoEndsWith(String value) { this.SupplierPartNoEndsWith = value; return this; } public String getSupplierPartNoContains() { return SupplierPartNoContains; } public SH_LinesQuery setSupplierPartNoContains(String value) { this.SupplierPartNoContains = value; return this; } public String getSupplierPartNoLike() { return SupplierPartNoLike; } public SH_LinesQuery setSupplierPartNoLike(String value) { this.SupplierPartNoLike = value; return this; } public ArrayList getSupplierPartNoBetween() { return SupplierPartNoBetween; } public SH_LinesQuery setSupplierPartNoBetween(ArrayList value) { this.SupplierPartNoBetween = value; return this; } public ArrayList getSupplierPartNoIn() { return SupplierPartNoIn; } public SH_LinesQuery setSupplierPartNoIn(ArrayList value) { this.SupplierPartNoIn = value; return this; } public BigDecimal getQuantityOrdered() { return QuantityOrdered; } public SH_LinesQuery setQuantityOrdered(BigDecimal value) { this.QuantityOrdered = value; return this; } public BigDecimal getQuantityOrderedGreaterThanOrEqualTo() { return QuantityOrderedGreaterThanOrEqualTo; } public SH_LinesQuery setQuantityOrderedGreaterThanOrEqualTo(BigDecimal value) { this.QuantityOrderedGreaterThanOrEqualTo = value; return this; } public BigDecimal getQuantityOrderedGreaterThan() { return QuantityOrderedGreaterThan; } public SH_LinesQuery setQuantityOrderedGreaterThan(BigDecimal value) { this.QuantityOrderedGreaterThan = value; return this; } public BigDecimal getQuantityOrderedLessThan() { return QuantityOrderedLessThan; } public SH_LinesQuery setQuantityOrderedLessThan(BigDecimal value) { this.QuantityOrderedLessThan = value; return this; } public BigDecimal getQuantityOrderedLessThanOrEqualTo() { return QuantityOrderedLessThanOrEqualTo; } public SH_LinesQuery setQuantityOrderedLessThanOrEqualTo(BigDecimal value) { this.QuantityOrderedLessThanOrEqualTo = value; return this; } public BigDecimal getQuantityOrderedNotEqualTo() { return QuantityOrderedNotEqualTo; } public SH_LinesQuery setQuantityOrderedNotEqualTo(BigDecimal value) { this.QuantityOrderedNotEqualTo = value; return this; } public ArrayList getQuantityOrderedBetween() { return QuantityOrderedBetween; } public SH_LinesQuery setQuantityOrderedBetween(ArrayList value) { this.QuantityOrderedBetween = value; return this; } public ArrayList getQuantityOrderedIn() { return QuantityOrderedIn; } public SH_LinesQuery setQuantityOrderedIn(ArrayList value) { this.QuantityOrderedIn = value; return this; } public BigDecimal getQuantityThisShipment() { return QuantityThisShipment; } public SH_LinesQuery setQuantityThisShipment(BigDecimal value) { this.QuantityThisShipment = value; return this; } public BigDecimal getQuantityThisShipmentGreaterThanOrEqualTo() { return QuantityThisShipmentGreaterThanOrEqualTo; } public SH_LinesQuery setQuantityThisShipmentGreaterThanOrEqualTo(BigDecimal value) { this.QuantityThisShipmentGreaterThanOrEqualTo = value; return this; } public BigDecimal getQuantityThisShipmentGreaterThan() { return QuantityThisShipmentGreaterThan; } public SH_LinesQuery setQuantityThisShipmentGreaterThan(BigDecimal value) { this.QuantityThisShipmentGreaterThan = value; return this; } public BigDecimal getQuantityThisShipmentLessThan() { return QuantityThisShipmentLessThan; } public SH_LinesQuery setQuantityThisShipmentLessThan(BigDecimal value) { this.QuantityThisShipmentLessThan = value; return this; } public BigDecimal getQuantityThisShipmentLessThanOrEqualTo() { return QuantityThisShipmentLessThanOrEqualTo; } public SH_LinesQuery setQuantityThisShipmentLessThanOrEqualTo(BigDecimal value) { this.QuantityThisShipmentLessThanOrEqualTo = value; return this; } public BigDecimal getQuantityThisShipmentNotEqualTo() { return QuantityThisShipmentNotEqualTo; } public SH_LinesQuery setQuantityThisShipmentNotEqualTo(BigDecimal value) { this.QuantityThisShipmentNotEqualTo = value; return this; } public ArrayList getQuantityThisShipmentBetween() { return QuantityThisShipmentBetween; } public SH_LinesQuery setQuantityThisShipmentBetween(ArrayList value) { this.QuantityThisShipmentBetween = value; return this; } public ArrayList getQuantityThisShipmentIn() { return QuantityThisShipmentIn; } public SH_LinesQuery setQuantityThisShipmentIn(ArrayList value) { this.QuantityThisShipmentIn = value; return this; } public BigDecimal getOrderedCost() { return OrderedCost; } public SH_LinesQuery setOrderedCost(BigDecimal value) { this.OrderedCost = value; return this; } public BigDecimal getOrderedCostGreaterThanOrEqualTo() { return OrderedCostGreaterThanOrEqualTo; } public SH_LinesQuery setOrderedCostGreaterThanOrEqualTo(BigDecimal value) { this.OrderedCostGreaterThanOrEqualTo = value; return this; } public BigDecimal getOrderedCostGreaterThan() { return OrderedCostGreaterThan; } public SH_LinesQuery setOrderedCostGreaterThan(BigDecimal value) { this.OrderedCostGreaterThan = value; return this; } public BigDecimal getOrderedCostLessThan() { return OrderedCostLessThan; } public SH_LinesQuery setOrderedCostLessThan(BigDecimal value) { this.OrderedCostLessThan = value; return this; } public BigDecimal getOrderedCostLessThanOrEqualTo() { return OrderedCostLessThanOrEqualTo; } public SH_LinesQuery setOrderedCostLessThanOrEqualTo(BigDecimal value) { this.OrderedCostLessThanOrEqualTo = value; return this; } public BigDecimal getOrderedCostNotEqualTo() { return OrderedCostNotEqualTo; } public SH_LinesQuery setOrderedCostNotEqualTo(BigDecimal value) { this.OrderedCostNotEqualTo = value; return this; } public ArrayList getOrderedCostBetween() { return OrderedCostBetween; } public SH_LinesQuery setOrderedCostBetween(ArrayList value) { this.OrderedCostBetween = value; return this; } public ArrayList getOrderedCostIn() { return OrderedCostIn; } public SH_LinesQuery setOrderedCostIn(ArrayList value) { this.OrderedCostIn = value; return this; } public BigDecimal getShipUnitCostExGST() { return ShipUnitCostExGST; } public SH_LinesQuery setShipUnitCostExGST(BigDecimal value) { this.ShipUnitCostExGST = value; return this; } public BigDecimal getShipUnitCostExGSTGreaterThanOrEqualTo() { return ShipUnitCostExGSTGreaterThanOrEqualTo; } public SH_LinesQuery setShipUnitCostExGSTGreaterThanOrEqualTo(BigDecimal value) { this.ShipUnitCostExGSTGreaterThanOrEqualTo = value; return this; } public BigDecimal getShipUnitCostExGSTGreaterThan() { return ShipUnitCostExGSTGreaterThan; } public SH_LinesQuery setShipUnitCostExGSTGreaterThan(BigDecimal value) { this.ShipUnitCostExGSTGreaterThan = value; return this; } public BigDecimal getShipUnitCostExGSTLessThan() { return ShipUnitCostExGSTLessThan; } public SH_LinesQuery setShipUnitCostExGSTLessThan(BigDecimal value) { this.ShipUnitCostExGSTLessThan = value; return this; } public BigDecimal getShipUnitCostExGSTLessThanOrEqualTo() { return ShipUnitCostExGSTLessThanOrEqualTo; } public SH_LinesQuery setShipUnitCostExGSTLessThanOrEqualTo(BigDecimal value) { this.ShipUnitCostExGSTLessThanOrEqualTo = value; return this; } public BigDecimal getShipUnitCostExGSTNotEqualTo() { return ShipUnitCostExGSTNotEqualTo; } public SH_LinesQuery setShipUnitCostExGSTNotEqualTo(BigDecimal value) { this.ShipUnitCostExGSTNotEqualTo = value; return this; } public ArrayList getShipUnitCostExGSTBetween() { return ShipUnitCostExGSTBetween; } public SH_LinesQuery setShipUnitCostExGSTBetween(ArrayList value) { this.ShipUnitCostExGSTBetween = value; return this; } public ArrayList getShipUnitCostExGSTIn() { return ShipUnitCostExGSTIn; } public SH_LinesQuery setShipUnitCostExGSTIn(ArrayList value) { this.ShipUnitCostExGSTIn = value; return this; } public BigDecimal getShipUnitCostIncGST() { return ShipUnitCostIncGST; } public SH_LinesQuery setShipUnitCostIncGST(BigDecimal value) { this.ShipUnitCostIncGST = value; return this; } public BigDecimal getShipUnitCostIncGSTGreaterThanOrEqualTo() { return ShipUnitCostIncGSTGreaterThanOrEqualTo; } public SH_LinesQuery setShipUnitCostIncGSTGreaterThanOrEqualTo(BigDecimal value) { this.ShipUnitCostIncGSTGreaterThanOrEqualTo = value; return this; } public BigDecimal getShipUnitCostIncGSTGreaterThan() { return ShipUnitCostIncGSTGreaterThan; } public SH_LinesQuery setShipUnitCostIncGSTGreaterThan(BigDecimal value) { this.ShipUnitCostIncGSTGreaterThan = value; return this; } public BigDecimal getShipUnitCostIncGSTLessThan() { return ShipUnitCostIncGSTLessThan; } public SH_LinesQuery setShipUnitCostIncGSTLessThan(BigDecimal value) { this.ShipUnitCostIncGSTLessThan = value; return this; } public BigDecimal getShipUnitCostIncGSTLessThanOrEqualTo() { return ShipUnitCostIncGSTLessThanOrEqualTo; } public SH_LinesQuery setShipUnitCostIncGSTLessThanOrEqualTo(BigDecimal value) { this.ShipUnitCostIncGSTLessThanOrEqualTo = value; return this; } public BigDecimal getShipUnitCostIncGSTNotEqualTo() { return ShipUnitCostIncGSTNotEqualTo; } public SH_LinesQuery setShipUnitCostIncGSTNotEqualTo(BigDecimal value) { this.ShipUnitCostIncGSTNotEqualTo = value; return this; } public ArrayList getShipUnitCostIncGSTBetween() { return ShipUnitCostIncGSTBetween; } public SH_LinesQuery setShipUnitCostIncGSTBetween(ArrayList value) { this.ShipUnitCostIncGSTBetween = value; return this; } public ArrayList getShipUnitCostIncGSTIn() { return ShipUnitCostIncGSTIn; } public SH_LinesQuery setShipUnitCostIncGSTIn(ArrayList value) { this.ShipUnitCostIncGSTIn = value; return this; } public BigDecimal getFxShipUnitCostExGST() { return FXShipUnitCostExGST; } public SH_LinesQuery setFxShipUnitCostExGST(BigDecimal value) { this.FXShipUnitCostExGST = value; return this; } public BigDecimal getFxShipUnitCostExGSTGreaterThanOrEqualTo() { return FXShipUnitCostExGSTGreaterThanOrEqualTo; } public SH_LinesQuery setFxShipUnitCostExGSTGreaterThanOrEqualTo(BigDecimal value) { this.FXShipUnitCostExGSTGreaterThanOrEqualTo = value; return this; } public BigDecimal getFxShipUnitCostExGSTGreaterThan() { return FXShipUnitCostExGSTGreaterThan; } public SH_LinesQuery setFxShipUnitCostExGSTGreaterThan(BigDecimal value) { this.FXShipUnitCostExGSTGreaterThan = value; return this; } public BigDecimal getFxShipUnitCostExGSTLessThan() { return FXShipUnitCostExGSTLessThan; } public SH_LinesQuery setFxShipUnitCostExGSTLessThan(BigDecimal value) { this.FXShipUnitCostExGSTLessThan = value; return this; } public BigDecimal getFxShipUnitCostExGSTLessThanOrEqualTo() { return FXShipUnitCostExGSTLessThanOrEqualTo; } public SH_LinesQuery setFxShipUnitCostExGSTLessThanOrEqualTo(BigDecimal value) { this.FXShipUnitCostExGSTLessThanOrEqualTo = value; return this; } public BigDecimal getFxShipUnitCostExGSTNotEqualTo() { return FXShipUnitCostExGSTNotEqualTo; } public SH_LinesQuery setFxShipUnitCostExGSTNotEqualTo(BigDecimal value) { this.FXShipUnitCostExGSTNotEqualTo = value; return this; } public ArrayList getFxShipUnitCostExGSTBetween() { return FXShipUnitCostExGSTBetween; } public SH_LinesQuery setFxShipUnitCostExGSTBetween(ArrayList value) { this.FXShipUnitCostExGSTBetween = value; return this; } public ArrayList getFxShipUnitCostExGSTIn() { return FXShipUnitCostExGSTIn; } public SH_LinesQuery setFxShipUnitCostExGSTIn(ArrayList value) { this.FXShipUnitCostExGSTIn = value; return this; } public BigDecimal getAdjustedUnitCost() { return AdjustedUnitCost; } public SH_LinesQuery setAdjustedUnitCost(BigDecimal value) { this.AdjustedUnitCost = value; return this; } public BigDecimal getAdjustedUnitCostGreaterThanOrEqualTo() { return AdjustedUnitCostGreaterThanOrEqualTo; } public SH_LinesQuery setAdjustedUnitCostGreaterThanOrEqualTo(BigDecimal value) { this.AdjustedUnitCostGreaterThanOrEqualTo = value; return this; } public BigDecimal getAdjustedUnitCostGreaterThan() { return AdjustedUnitCostGreaterThan; } public SH_LinesQuery setAdjustedUnitCostGreaterThan(BigDecimal value) { this.AdjustedUnitCostGreaterThan = value; return this; } public BigDecimal getAdjustedUnitCostLessThan() { return AdjustedUnitCostLessThan; } public SH_LinesQuery setAdjustedUnitCostLessThan(BigDecimal value) { this.AdjustedUnitCostLessThan = value; return this; } public BigDecimal getAdjustedUnitCostLessThanOrEqualTo() { return AdjustedUnitCostLessThanOrEqualTo; } public SH_LinesQuery setAdjustedUnitCostLessThanOrEqualTo(BigDecimal value) { this.AdjustedUnitCostLessThanOrEqualTo = value; return this; } public BigDecimal getAdjustedUnitCostNotEqualTo() { return AdjustedUnitCostNotEqualTo; } public SH_LinesQuery setAdjustedUnitCostNotEqualTo(BigDecimal value) { this.AdjustedUnitCostNotEqualTo = value; return this; } public ArrayList getAdjustedUnitCostBetween() { return AdjustedUnitCostBetween; } public SH_LinesQuery setAdjustedUnitCostBetween(ArrayList value) { this.AdjustedUnitCostBetween = value; return this; } public ArrayList getAdjustedUnitCostIn() { return AdjustedUnitCostIn; } public SH_LinesQuery setAdjustedUnitCostIn(ArrayList value) { this.AdjustedUnitCostIn = value; return this; } public BigDecimal getGstRate() { return GSTRate; } public SH_LinesQuery setGstRate(BigDecimal value) { this.GSTRate = value; return this; } public BigDecimal getGstRateGreaterThanOrEqualTo() { return GSTRateGreaterThanOrEqualTo; } public SH_LinesQuery setGstRateGreaterThanOrEqualTo(BigDecimal value) { this.GSTRateGreaterThanOrEqualTo = value; return this; } public BigDecimal getGstRateGreaterThan() { return GSTRateGreaterThan; } public SH_LinesQuery setGstRateGreaterThan(BigDecimal value) { this.GSTRateGreaterThan = value; return this; } public BigDecimal getGstRateLessThan() { return GSTRateLessThan; } public SH_LinesQuery setGstRateLessThan(BigDecimal value) { this.GSTRateLessThan = value; return this; } public BigDecimal getGstRateLessThanOrEqualTo() { return GSTRateLessThanOrEqualTo; } public SH_LinesQuery setGstRateLessThanOrEqualTo(BigDecimal value) { this.GSTRateLessThanOrEqualTo = value; return this; } public BigDecimal getGstRateNotEqualTo() { return GSTRateNotEqualTo; } public SH_LinesQuery setGstRateNotEqualTo(BigDecimal value) { this.GSTRateNotEqualTo = value; return this; } public ArrayList getGstRateBetween() { return GSTRateBetween; } public SH_LinesQuery setGstRateBetween(ArrayList value) { this.GSTRateBetween = value; return this; } public ArrayList getGstRateIn() { return GSTRateIn; } public SH_LinesQuery setGstRateIn(ArrayList value) { this.GSTRateIn = value; return this; } public BigDecimal getGstAmount() { return GSTAmount; } public SH_LinesQuery setGstAmount(BigDecimal value) { this.GSTAmount = value; return this; } public BigDecimal getGstAmountGreaterThanOrEqualTo() { return GSTAmountGreaterThanOrEqualTo; } public SH_LinesQuery setGstAmountGreaterThanOrEqualTo(BigDecimal value) { this.GSTAmountGreaterThanOrEqualTo = value; return this; } public BigDecimal getGstAmountGreaterThan() { return GSTAmountGreaterThan; } public SH_LinesQuery setGstAmountGreaterThan(BigDecimal value) { this.GSTAmountGreaterThan = value; return this; } public BigDecimal getGstAmountLessThan() { return GSTAmountLessThan; } public SH_LinesQuery setGstAmountLessThan(BigDecimal value) { this.GSTAmountLessThan = value; return this; } public BigDecimal getGstAmountLessThanOrEqualTo() { return GSTAmountLessThanOrEqualTo; } public SH_LinesQuery setGstAmountLessThanOrEqualTo(BigDecimal value) { this.GSTAmountLessThanOrEqualTo = value; return this; } public BigDecimal getGstAmountNotEqualTo() { return GSTAmountNotEqualTo; } public SH_LinesQuery setGstAmountNotEqualTo(BigDecimal value) { this.GSTAmountNotEqualTo = value; return this; } public ArrayList getGstAmountBetween() { return GSTAmountBetween; } public SH_LinesQuery setGstAmountBetween(ArrayList value) { this.GSTAmountBetween = value; return this; } public ArrayList getGstAmountIn() { return GSTAmountIn; } public SH_LinesQuery setGstAmountIn(ArrayList value) { this.GSTAmountIn = value; return this; } public String getGstid() { return GSTID; } public SH_LinesQuery setGstid(String value) { this.GSTID = value; return this; } public String getGstidStartsWith() { return GSTIDStartsWith; } public SH_LinesQuery setGstidStartsWith(String value) { this.GSTIDStartsWith = value; return this; } public String getGstidEndsWith() { return GSTIDEndsWith; } public SH_LinesQuery setGstidEndsWith(String value) { this.GSTIDEndsWith = value; return this; } public String getGstidContains() { return GSTIDContains; } public SH_LinesQuery setGstidContains(String value) { this.GSTIDContains = value; return this; } public String getGstidLike() { return GSTIDLike; } public SH_LinesQuery setGstidLike(String value) { this.GSTIDLike = value; return this; } public ArrayList getGstidBetween() { return GSTIDBetween; } public SH_LinesQuery setGstidBetween(ArrayList value) { this.GSTIDBetween = value; return this; } public ArrayList getGstidIn() { return GSTIDIn; } public SH_LinesQuery setGstidIn(ArrayList value) { this.GSTIDIn = value; return this; } public Boolean isUseSerialNo() { return UseSerialNo; } public SH_LinesQuery setUseSerialNo(Boolean value) { this.UseSerialNo = value; return this; } public Boolean isUseExpiry() { return UseExpiry; } public SH_LinesQuery setUseExpiry(Boolean value) { this.UseExpiry = value; return this; } public Short getDecimalPlaces() { return DecimalPlaces; } public SH_LinesQuery setDecimalPlaces(Short value) { this.DecimalPlaces = value; return this; } public Short getDecimalPlacesGreaterThanOrEqualTo() { return DecimalPlacesGreaterThanOrEqualTo; } public SH_LinesQuery setDecimalPlacesGreaterThanOrEqualTo(Short value) { this.DecimalPlacesGreaterThanOrEqualTo = value; return this; } public Short getDecimalPlacesGreaterThan() { return DecimalPlacesGreaterThan; } public SH_LinesQuery setDecimalPlacesGreaterThan(Short value) { this.DecimalPlacesGreaterThan = value; return this; } public Short getDecimalPlacesLessThan() { return DecimalPlacesLessThan; } public SH_LinesQuery setDecimalPlacesLessThan(Short value) { this.DecimalPlacesLessThan = value; return this; } public Short getDecimalPlacesLessThanOrEqualTo() { return DecimalPlacesLessThanOrEqualTo; } public SH_LinesQuery setDecimalPlacesLessThanOrEqualTo(Short value) { this.DecimalPlacesLessThanOrEqualTo = value; return this; } public Short getDecimalPlacesNotEqualTo() { return DecimalPlacesNotEqualTo; } public SH_LinesQuery setDecimalPlacesNotEqualTo(Short value) { this.DecimalPlacesNotEqualTo = value; return this; } public ArrayList getDecimalPlacesBetween() { return DecimalPlacesBetween; } public SH_LinesQuery setDecimalPlacesBetween(ArrayList value) { this.DecimalPlacesBetween = value; return this; } public ArrayList getDecimalPlacesIn() { return DecimalPlacesIn; } public SH_LinesQuery setDecimalPlacesIn(ArrayList value) { this.DecimalPlacesIn = value; return this; } public String getPoClassID() { return POClassID; } public SH_LinesQuery setPoClassID(String value) { this.POClassID = value; return this; } public String getPoClassIDStartsWith() { return POClassIDStartsWith; } public SH_LinesQuery setPoClassIDStartsWith(String value) { this.POClassIDStartsWith = value; return this; } public String getPoClassIDEndsWith() { return POClassIDEndsWith; } public SH_LinesQuery setPoClassIDEndsWith(String value) { this.POClassIDEndsWith = value; return this; } public String getPoClassIDContains() { return POClassIDContains; } public SH_LinesQuery setPoClassIDContains(String value) { this.POClassIDContains = value; return this; } public String getPoClassIDLike() { return POClassIDLike; } public SH_LinesQuery setPoClassIDLike(String value) { this.POClassIDLike = value; return this; } public ArrayList getPoClassIDBetween() { return POClassIDBetween; } public SH_LinesQuery setPoClassIDBetween(ArrayList value) { this.POClassIDBetween = value; return this; } public ArrayList getPoClassIDIn() { return POClassIDIn; } public SH_LinesQuery setPoClassIDIn(ArrayList value) { this.POClassIDIn = value; return this; } public String getInvoicesID() { return InvoicesID; } public SH_LinesQuery setInvoicesID(String value) { this.InvoicesID = value; return this; } public String getInvoicesIDStartsWith() { return InvoicesIDStartsWith; } public SH_LinesQuery setInvoicesIDStartsWith(String value) { this.InvoicesIDStartsWith = value; return this; } public String getInvoicesIDEndsWith() { return InvoicesIDEndsWith; } public SH_LinesQuery setInvoicesIDEndsWith(String value) { this.InvoicesIDEndsWith = value; return this; } public String getInvoicesIDContains() { return InvoicesIDContains; } public SH_LinesQuery setInvoicesIDContains(String value) { this.InvoicesIDContains = value; return this; } public String getInvoicesIDLike() { return InvoicesIDLike; } public SH_LinesQuery setInvoicesIDLike(String value) { this.InvoicesIDLike = value; return this; } public ArrayList getInvoicesIDBetween() { return InvoicesIDBetween; } public SH_LinesQuery setInvoicesIDBetween(ArrayList value) { this.InvoicesIDBetween = value; return this; } public ArrayList getInvoicesIDIn() { return InvoicesIDIn; } public SH_LinesQuery setInvoicesIDIn(ArrayList value) { this.InvoicesIDIn = value; return this; } public Short getDeliveryDays() { return DeliveryDays; } public SH_LinesQuery setDeliveryDays(Short value) { this.DeliveryDays = value; return this; } public Short getDeliveryDaysGreaterThanOrEqualTo() { return DeliveryDaysGreaterThanOrEqualTo; } public SH_LinesQuery setDeliveryDaysGreaterThanOrEqualTo(Short value) { this.DeliveryDaysGreaterThanOrEqualTo = value; return this; } public Short getDeliveryDaysGreaterThan() { return DeliveryDaysGreaterThan; } public SH_LinesQuery setDeliveryDaysGreaterThan(Short value) { this.DeliveryDaysGreaterThan = value; return this; } public Short getDeliveryDaysLessThan() { return DeliveryDaysLessThan; } public SH_LinesQuery setDeliveryDaysLessThan(Short value) { this.DeliveryDaysLessThan = value; return this; } public Short getDeliveryDaysLessThanOrEqualTo() { return DeliveryDaysLessThanOrEqualTo; } public SH_LinesQuery setDeliveryDaysLessThanOrEqualTo(Short value) { this.DeliveryDaysLessThanOrEqualTo = value; return this; } public Short getDeliveryDaysNotEqualTo() { return DeliveryDaysNotEqualTo; } public SH_LinesQuery setDeliveryDaysNotEqualTo(Short value) { this.DeliveryDaysNotEqualTo = value; return this; } public ArrayList getDeliveryDaysBetween() { return DeliveryDaysBetween; } public SH_LinesQuery setDeliveryDaysBetween(ArrayList value) { this.DeliveryDaysBetween = value; return this; } public ArrayList getDeliveryDaysIn() { return DeliveryDaysIn; } public SH_LinesQuery setDeliveryDaysIn(ArrayList value) { this.DeliveryDaysIn = value; return this; } public String getDescription() { return Description; } public SH_LinesQuery setDescription(String value) { this.Description = value; return this; } public String getDescriptionStartsWith() { return DescriptionStartsWith; } public SH_LinesQuery setDescriptionStartsWith(String value) { this.DescriptionStartsWith = value; return this; } public String getDescriptionEndsWith() { return DescriptionEndsWith; } public SH_LinesQuery setDescriptionEndsWith(String value) { this.DescriptionEndsWith = value; return this; } public String getDescriptionContains() { return DescriptionContains; } public SH_LinesQuery setDescriptionContains(String value) { this.DescriptionContains = value; return this; } public String getDescriptionLike() { return DescriptionLike; } public SH_LinesQuery setDescriptionLike(String value) { this.DescriptionLike = value; return this; } public ArrayList getDescriptionBetween() { return DescriptionBetween; } public SH_LinesQuery setDescriptionBetween(ArrayList value) { this.DescriptionBetween = value; return this; } public ArrayList getDescriptionIn() { return DescriptionIn; } public SH_LinesQuery setDescriptionIn(ArrayList value) { this.DescriptionIn = value; return this; } public BigDecimal getOrderUnits() { return OrderUnits; } public SH_LinesQuery setOrderUnits(BigDecimal value) { this.OrderUnits = value; return this; } public BigDecimal getOrderUnitsGreaterThanOrEqualTo() { return OrderUnitsGreaterThanOrEqualTo; } public SH_LinesQuery setOrderUnitsGreaterThanOrEqualTo(BigDecimal value) { this.OrderUnitsGreaterThanOrEqualTo = value; return this; } public BigDecimal getOrderUnitsGreaterThan() { return OrderUnitsGreaterThan; } public SH_LinesQuery setOrderUnitsGreaterThan(BigDecimal value) { this.OrderUnitsGreaterThan = value; return this; } public BigDecimal getOrderUnitsLessThan() { return OrderUnitsLessThan; } public SH_LinesQuery setOrderUnitsLessThan(BigDecimal value) { this.OrderUnitsLessThan = value; return this; } public BigDecimal getOrderUnitsLessThanOrEqualTo() { return OrderUnitsLessThanOrEqualTo; } public SH_LinesQuery setOrderUnitsLessThanOrEqualTo(BigDecimal value) { this.OrderUnitsLessThanOrEqualTo = value; return this; } public BigDecimal getOrderUnitsNotEqualTo() { return OrderUnitsNotEqualTo; } public SH_LinesQuery setOrderUnitsNotEqualTo(BigDecimal value) { this.OrderUnitsNotEqualTo = value; return this; } public ArrayList getOrderUnitsBetween() { return OrderUnitsBetween; } public SH_LinesQuery setOrderUnitsBetween(ArrayList value) { this.OrderUnitsBetween = value; return this; } public ArrayList getOrderUnitsIn() { return OrderUnitsIn; } public SH_LinesQuery setOrderUnitsIn(ArrayList value) { this.OrderUnitsIn = value; return this; } public String getClassificationID() { return ClassificationID; } public SH_LinesQuery setClassificationID(String value) { this.ClassificationID = value; return this; } public String getClassificationIDStartsWith() { return ClassificationIDStartsWith; } public SH_LinesQuery setClassificationIDStartsWith(String value) { this.ClassificationIDStartsWith = value; return this; } public String getClassificationIDEndsWith() { return ClassificationIDEndsWith; } public SH_LinesQuery setClassificationIDEndsWith(String value) { this.ClassificationIDEndsWith = value; return this; } public String getClassificationIDContains() { return ClassificationIDContains; } public SH_LinesQuery setClassificationIDContains(String value) { this.ClassificationIDContains = value; return this; } public String getClassificationIDLike() { return ClassificationIDLike; } public SH_LinesQuery setClassificationIDLike(String value) { this.ClassificationIDLike = value; return this; } public ArrayList getClassificationIDBetween() { return ClassificationIDBetween; } public SH_LinesQuery setClassificationIDBetween(ArrayList value) { this.ClassificationIDBetween = value; return this; } public ArrayList getClassificationIDIn() { return ClassificationIDIn; } public SH_LinesQuery setClassificationIDIn(ArrayList value) { this.ClassificationIDIn = value; return this; } public String getJobCostID() { return JobCostID; } public SH_LinesQuery setJobCostID(String value) { this.JobCostID = value; return this; } public String getJobCostIDStartsWith() { return JobCostIDStartsWith; } public SH_LinesQuery setJobCostIDStartsWith(String value) { this.JobCostIDStartsWith = value; return this; } public String getJobCostIDEndsWith() { return JobCostIDEndsWith; } public SH_LinesQuery setJobCostIDEndsWith(String value) { this.JobCostIDEndsWith = value; return this; } public String getJobCostIDContains() { return JobCostIDContains; } public SH_LinesQuery setJobCostIDContains(String value) { this.JobCostIDContains = value; return this; } public String getJobCostIDLike() { return JobCostIDLike; } public SH_LinesQuery setJobCostIDLike(String value) { this.JobCostIDLike = value; return this; } public ArrayList getJobCostIDBetween() { return JobCostIDBetween; } public SH_LinesQuery setJobCostIDBetween(ArrayList value) { this.JobCostIDBetween = value; return this; } public ArrayList getJobCostIDIn() { return JobCostIDIn; } public SH_LinesQuery setJobCostIDIn(ArrayList value) { this.JobCostIDIn = value; return this; } public BigDecimal getFxRate() { return FXRate; } public SH_LinesQuery setFxRate(BigDecimal value) { this.FXRate = value; return this; } public BigDecimal getFxRateGreaterThanOrEqualTo() { return FXRateGreaterThanOrEqualTo; } public SH_LinesQuery setFxRateGreaterThanOrEqualTo(BigDecimal value) { this.FXRateGreaterThanOrEqualTo = value; return this; } public BigDecimal getFxRateGreaterThan() { return FXRateGreaterThan; } public SH_LinesQuery setFxRateGreaterThan(BigDecimal value) { this.FXRateGreaterThan = value; return this; } public BigDecimal getFxRateLessThan() { return FXRateLessThan; } public SH_LinesQuery setFxRateLessThan(BigDecimal value) { this.FXRateLessThan = value; return this; } public BigDecimal getFxRateLessThanOrEqualTo() { return FXRateLessThanOrEqualTo; } public SH_LinesQuery setFxRateLessThanOrEqualTo(BigDecimal value) { this.FXRateLessThanOrEqualTo = value; return this; } public BigDecimal getFxRateNotEqualTo() { return FXRateNotEqualTo; } public SH_LinesQuery setFxRateNotEqualTo(BigDecimal value) { this.FXRateNotEqualTo = value; return this; } public ArrayList getFxRateBetween() { return FXRateBetween; } public SH_LinesQuery setFxRateBetween(ArrayList value) { this.FXRateBetween = value; return this; } public ArrayList getFxRateIn() { return FXRateIn; } public SH_LinesQuery setFxRateIn(ArrayList value) { this.FXRateIn = value; return this; } public BigDecimal getWeight() { return Weight; } public SH_LinesQuery setWeight(BigDecimal value) { this.Weight = value; return this; } public BigDecimal getWeightGreaterThanOrEqualTo() { return WeightGreaterThanOrEqualTo; } public SH_LinesQuery setWeightGreaterThanOrEqualTo(BigDecimal value) { this.WeightGreaterThanOrEqualTo = value; return this; } public BigDecimal getWeightGreaterThan() { return WeightGreaterThan; } public SH_LinesQuery setWeightGreaterThan(BigDecimal value) { this.WeightGreaterThan = value; return this; } public BigDecimal getWeightLessThan() { return WeightLessThan; } public SH_LinesQuery setWeightLessThan(BigDecimal value) { this.WeightLessThan = value; return this; } public BigDecimal getWeightLessThanOrEqualTo() { return WeightLessThanOrEqualTo; } public SH_LinesQuery setWeightLessThanOrEqualTo(BigDecimal value) { this.WeightLessThanOrEqualTo = value; return this; } public BigDecimal getWeightNotEqualTo() { return WeightNotEqualTo; } public SH_LinesQuery setWeightNotEqualTo(BigDecimal value) { this.WeightNotEqualTo = value; return this; } public ArrayList getWeightBetween() { return WeightBetween; } public SH_LinesQuery setWeightBetween(ArrayList value) { this.WeightBetween = value; return this; } public ArrayList getWeightIn() { return WeightIn; } public SH_LinesQuery setWeightIn(ArrayList value) { this.WeightIn = value; return this; } public BigDecimal getVolume() { return Volume; } public SH_LinesQuery setVolume(BigDecimal value) { this.Volume = value; return this; } public BigDecimal getVolumeGreaterThanOrEqualTo() { return VolumeGreaterThanOrEqualTo; } public SH_LinesQuery setVolumeGreaterThanOrEqualTo(BigDecimal value) { this.VolumeGreaterThanOrEqualTo = value; return this; } public BigDecimal getVolumeGreaterThan() { return VolumeGreaterThan; } public SH_LinesQuery setVolumeGreaterThan(BigDecimal value) { this.VolumeGreaterThan = value; return this; } public BigDecimal getVolumeLessThan() { return VolumeLessThan; } public SH_LinesQuery setVolumeLessThan(BigDecimal value) { this.VolumeLessThan = value; return this; } public BigDecimal getVolumeLessThanOrEqualTo() { return VolumeLessThanOrEqualTo; } public SH_LinesQuery setVolumeLessThanOrEqualTo(BigDecimal value) { this.VolumeLessThanOrEqualTo = value; return this; } public BigDecimal getVolumeNotEqualTo() { return VolumeNotEqualTo; } public SH_LinesQuery setVolumeNotEqualTo(BigDecimal value) { this.VolumeNotEqualTo = value; return this; } public ArrayList getVolumeBetween() { return VolumeBetween; } public SH_LinesQuery setVolumeBetween(ArrayList value) { this.VolumeBetween = value; return this; } public ArrayList getVolumeIn() { return VolumeIn; } public SH_LinesQuery setVolumeIn(ArrayList value) { this.VolumeIn = value; return this; } public BigDecimal getLineTotalExGST() { return LineTotalExGST; } public SH_LinesQuery setLineTotalExGST(BigDecimal value) { this.LineTotalExGST = value; return this; } public BigDecimal getLineTotalExGSTGreaterThanOrEqualTo() { return LineTotalExGSTGreaterThanOrEqualTo; } public SH_LinesQuery setLineTotalExGSTGreaterThanOrEqualTo(BigDecimal value) { this.LineTotalExGSTGreaterThanOrEqualTo = value; return this; } public BigDecimal getLineTotalExGSTGreaterThan() { return LineTotalExGSTGreaterThan; } public SH_LinesQuery setLineTotalExGSTGreaterThan(BigDecimal value) { this.LineTotalExGSTGreaterThan = value; return this; } public BigDecimal getLineTotalExGSTLessThan() { return LineTotalExGSTLessThan; } public SH_LinesQuery setLineTotalExGSTLessThan(BigDecimal value) { this.LineTotalExGSTLessThan = value; return this; } public BigDecimal getLineTotalExGSTLessThanOrEqualTo() { return LineTotalExGSTLessThanOrEqualTo; } public SH_LinesQuery setLineTotalExGSTLessThanOrEqualTo(BigDecimal value) { this.LineTotalExGSTLessThanOrEqualTo = value; return this; } public BigDecimal getLineTotalExGSTNotEqualTo() { return LineTotalExGSTNotEqualTo; } public SH_LinesQuery setLineTotalExGSTNotEqualTo(BigDecimal value) { this.LineTotalExGSTNotEqualTo = value; return this; } public ArrayList getLineTotalExGSTBetween() { return LineTotalExGSTBetween; } public SH_LinesQuery setLineTotalExGSTBetween(ArrayList value) { this.LineTotalExGSTBetween = value; return this; } public ArrayList getLineTotalExGSTIn() { return LineTotalExGSTIn; } public SH_LinesQuery setLineTotalExGSTIn(ArrayList value) { this.LineTotalExGSTIn = value; return this; } public BigDecimal getFxLineTotalExGST() { return FXLineTotalExGST; } public SH_LinesQuery setFxLineTotalExGST(BigDecimal value) { this.FXLineTotalExGST = value; return this; } public BigDecimal getFxLineTotalExGSTGreaterThanOrEqualTo() { return FXLineTotalExGSTGreaterThanOrEqualTo; } public SH_LinesQuery setFxLineTotalExGSTGreaterThanOrEqualTo(BigDecimal value) { this.FXLineTotalExGSTGreaterThanOrEqualTo = value; return this; } public BigDecimal getFxLineTotalExGSTGreaterThan() { return FXLineTotalExGSTGreaterThan; } public SH_LinesQuery setFxLineTotalExGSTGreaterThan(BigDecimal value) { this.FXLineTotalExGSTGreaterThan = value; return this; } public BigDecimal getFxLineTotalExGSTLessThan() { return FXLineTotalExGSTLessThan; } public SH_LinesQuery setFxLineTotalExGSTLessThan(BigDecimal value) { this.FXLineTotalExGSTLessThan = value; return this; } public BigDecimal getFxLineTotalExGSTLessThanOrEqualTo() { return FXLineTotalExGSTLessThanOrEqualTo; } public SH_LinesQuery setFxLineTotalExGSTLessThanOrEqualTo(BigDecimal value) { this.FXLineTotalExGSTLessThanOrEqualTo = value; return this; } public BigDecimal getFxLineTotalExGSTNotEqualTo() { return FXLineTotalExGSTNotEqualTo; } public SH_LinesQuery setFxLineTotalExGSTNotEqualTo(BigDecimal value) { this.FXLineTotalExGSTNotEqualTo = value; return this; } public ArrayList getFxLineTotalExGSTBetween() { return FXLineTotalExGSTBetween; } public SH_LinesQuery setFxLineTotalExGSTBetween(ArrayList value) { this.FXLineTotalExGSTBetween = value; return this; } public ArrayList getFxLineTotalExGSTIn() { return FXLineTotalExGSTIn; } public SH_LinesQuery setFxLineTotalExGSTIn(ArrayList value) { this.FXLineTotalExGSTIn = value; return this; } public BigDecimal getLineTotalIncGST() { return LineTotalIncGST; } public SH_LinesQuery setLineTotalIncGST(BigDecimal value) { this.LineTotalIncGST = value; return this; } public BigDecimal getLineTotalIncGSTGreaterThanOrEqualTo() { return LineTotalIncGSTGreaterThanOrEqualTo; } public SH_LinesQuery setLineTotalIncGSTGreaterThanOrEqualTo(BigDecimal value) { this.LineTotalIncGSTGreaterThanOrEqualTo = value; return this; } public BigDecimal getLineTotalIncGSTGreaterThan() { return LineTotalIncGSTGreaterThan; } public SH_LinesQuery setLineTotalIncGSTGreaterThan(BigDecimal value) { this.LineTotalIncGSTGreaterThan = value; return this; } public BigDecimal getLineTotalIncGSTLessThan() { return LineTotalIncGSTLessThan; } public SH_LinesQuery setLineTotalIncGSTLessThan(BigDecimal value) { this.LineTotalIncGSTLessThan = value; return this; } public BigDecimal getLineTotalIncGSTLessThanOrEqualTo() { return LineTotalIncGSTLessThanOrEqualTo; } public SH_LinesQuery setLineTotalIncGSTLessThanOrEqualTo(BigDecimal value) { this.LineTotalIncGSTLessThanOrEqualTo = value; return this; } public BigDecimal getLineTotalIncGSTNotEqualTo() { return LineTotalIncGSTNotEqualTo; } public SH_LinesQuery setLineTotalIncGSTNotEqualTo(BigDecimal value) { this.LineTotalIncGSTNotEqualTo = value; return this; } public ArrayList getLineTotalIncGSTBetween() { return LineTotalIncGSTBetween; } public SH_LinesQuery setLineTotalIncGSTBetween(ArrayList value) { this.LineTotalIncGSTBetween = value; return this; } public ArrayList getLineTotalIncGSTIn() { return LineTotalIncGSTIn; } public SH_LinesQuery setLineTotalIncGSTIn(ArrayList value) { this.LineTotalIncGSTIn = value; return this; } public BigDecimal getLandedCostTotal() { return LandedCostTotal; } public SH_LinesQuery setLandedCostTotal(BigDecimal value) { this.LandedCostTotal = value; return this; } public BigDecimal getLandedCostTotalGreaterThanOrEqualTo() { return LandedCostTotalGreaterThanOrEqualTo; } public SH_LinesQuery setLandedCostTotalGreaterThanOrEqualTo(BigDecimal value) { this.LandedCostTotalGreaterThanOrEqualTo = value; return this; } public BigDecimal getLandedCostTotalGreaterThan() { return LandedCostTotalGreaterThan; } public SH_LinesQuery setLandedCostTotalGreaterThan(BigDecimal value) { this.LandedCostTotalGreaterThan = value; return this; } public BigDecimal getLandedCostTotalLessThan() { return LandedCostTotalLessThan; } public SH_LinesQuery setLandedCostTotalLessThan(BigDecimal value) { this.LandedCostTotalLessThan = value; return this; } public BigDecimal getLandedCostTotalLessThanOrEqualTo() { return LandedCostTotalLessThanOrEqualTo; } public SH_LinesQuery setLandedCostTotalLessThanOrEqualTo(BigDecimal value) { this.LandedCostTotalLessThanOrEqualTo = value; return this; } public BigDecimal getLandedCostTotalNotEqualTo() { return LandedCostTotalNotEqualTo; } public SH_LinesQuery setLandedCostTotalNotEqualTo(BigDecimal value) { this.LandedCostTotalNotEqualTo = value; return this; } public ArrayList getLandedCostTotalBetween() { return LandedCostTotalBetween; } public SH_LinesQuery setLandedCostTotalBetween(ArrayList value) { this.LandedCostTotalBetween = value; return this; } public ArrayList getLandedCostTotalIn() { return LandedCostTotalIn; } public SH_LinesQuery setLandedCostTotalIn(ArrayList value) { this.LandedCostTotalIn = value; return this; } public String getCurrencyID() { return CurrencyID; } public SH_LinesQuery setCurrencyID(String value) { this.CurrencyID = value; return this; } public String getCurrencyIDStartsWith() { return CurrencyIDStartsWith; } public SH_LinesQuery setCurrencyIDStartsWith(String value) { this.CurrencyIDStartsWith = value; return this; } public String getCurrencyIDEndsWith() { return CurrencyIDEndsWith; } public SH_LinesQuery setCurrencyIDEndsWith(String value) { this.CurrencyIDEndsWith = value; return this; } public String getCurrencyIDContains() { return CurrencyIDContains; } public SH_LinesQuery setCurrencyIDContains(String value) { this.CurrencyIDContains = value; return this; } public String getCurrencyIDLike() { return CurrencyIDLike; } public SH_LinesQuery setCurrencyIDLike(String value) { this.CurrencyIDLike = value; return this; } public ArrayList getCurrencyIDBetween() { return CurrencyIDBetween; } public SH_LinesQuery setCurrencyIDBetween(ArrayList value) { this.CurrencyIDBetween = value; return this; } public ArrayList getCurrencyIDIn() { return CurrencyIDIn; } public SH_LinesQuery setCurrencyIDIn(ArrayList value) { this.CurrencyIDIn = value; return this; } public String getCreditorID() { return CreditorID; } public SH_LinesQuery setCreditorID(String value) { this.CreditorID = value; return this; } public String getCreditorIDStartsWith() { return CreditorIDStartsWith; } public SH_LinesQuery setCreditorIDStartsWith(String value) { this.CreditorIDStartsWith = value; return this; } public String getCreditorIDEndsWith() { return CreditorIDEndsWith; } public SH_LinesQuery setCreditorIDEndsWith(String value) { this.CreditorIDEndsWith = value; return this; } public String getCreditorIDContains() { return CreditorIDContains; } public SH_LinesQuery setCreditorIDContains(String value) { this.CreditorIDContains = value; return this; } public String getCreditorIDLike() { return CreditorIDLike; } public SH_LinesQuery setCreditorIDLike(String value) { this.CreditorIDLike = value; return this; } public ArrayList getCreditorIDBetween() { return CreditorIDBetween; } public SH_LinesQuery setCreditorIDBetween(ArrayList value) { this.CreditorIDBetween = value; return this; } public ArrayList getCreditorIDIn() { return CreditorIDIn; } public SH_LinesQuery setCreditorIDIn(ArrayList value) { this.CreditorIDIn = value; return this; } public String getUserField1() { return UserField1; } public SH_LinesQuery setUserField1(String value) { this.UserField1 = value; return this; } public String getUserField1StartsWith() { return UserField1StartsWith; } public SH_LinesQuery setUserField1StartsWith(String value) { this.UserField1StartsWith = value; return this; } public String getUserField1EndsWith() { return UserField1EndsWith; } public SH_LinesQuery setUserField1EndsWith(String value) { this.UserField1EndsWith = value; return this; } public String getUserField1Contains() { return UserField1Contains; } public SH_LinesQuery setUserField1Contains(String value) { this.UserField1Contains = value; return this; } public String getUserField1Like() { return UserField1Like; } public SH_LinesQuery setUserField1Like(String value) { this.UserField1Like = value; return this; } public ArrayList getUserField1Between() { return UserField1Between; } public SH_LinesQuery setUserField1Between(ArrayList value) { this.UserField1Between = value; return this; } public ArrayList getUserField1In() { return UserField1In; } public SH_LinesQuery setUserField1In(ArrayList value) { this.UserField1In = value; return this; } public String getUserField2() { return UserField2; } public SH_LinesQuery setUserField2(String value) { this.UserField2 = value; return this; } public String getUserField2StartsWith() { return UserField2StartsWith; } public SH_LinesQuery setUserField2StartsWith(String value) { this.UserField2StartsWith = value; return this; } public String getUserField2EndsWith() { return UserField2EndsWith; } public SH_LinesQuery setUserField2EndsWith(String value) { this.UserField2EndsWith = value; return this; } public String getUserField2Contains() { return UserField2Contains; } public SH_LinesQuery setUserField2Contains(String value) { this.UserField2Contains = value; return this; } public String getUserField2Like() { return UserField2Like; } public SH_LinesQuery setUserField2Like(String value) { this.UserField2Like = value; return this; } public ArrayList getUserField2Between() { return UserField2Between; } public SH_LinesQuery setUserField2Between(ArrayList value) { this.UserField2Between = value; return this; } public ArrayList getUserField2In() { return UserField2In; } public SH_LinesQuery setUserField2In(ArrayList value) { this.UserField2In = value; return this; } public String getUserField3() { return UserField3; } public SH_LinesQuery setUserField3(String value) { this.UserField3 = value; return this; } public String getUserField3StartsWith() { return UserField3StartsWith; } public SH_LinesQuery setUserField3StartsWith(String value) { this.UserField3StartsWith = value; return this; } public String getUserField3EndsWith() { return UserField3EndsWith; } public SH_LinesQuery setUserField3EndsWith(String value) { this.UserField3EndsWith = value; return this; } public String getUserField3Contains() { return UserField3Contains; } public SH_LinesQuery setUserField3Contains(String value) { this.UserField3Contains = value; return this; } public String getUserField3Like() { return UserField3Like; } public SH_LinesQuery setUserField3Like(String value) { this.UserField3Like = value; return this; } public ArrayList getUserField3Between() { return UserField3Between; } public SH_LinesQuery setUserField3Between(ArrayList value) { this.UserField3Between = value; return this; } public ArrayList getUserField3In() { return UserField3In; } public SH_LinesQuery setUserField3In(ArrayList value) { this.UserField3In = value; return this; } public String getUserField4() { return UserField4; } public SH_LinesQuery setUserField4(String value) { this.UserField4 = value; return this; } public String getUserField4StartsWith() { return UserField4StartsWith; } public SH_LinesQuery setUserField4StartsWith(String value) { this.UserField4StartsWith = value; return this; } public String getUserField4EndsWith() { return UserField4EndsWith; } public SH_LinesQuery setUserField4EndsWith(String value) { this.UserField4EndsWith = value; return this; } public String getUserField4Contains() { return UserField4Contains; } public SH_LinesQuery setUserField4Contains(String value) { this.UserField4Contains = value; return this; } public String getUserField4Like() { return UserField4Like; } public SH_LinesQuery setUserField4Like(String value) { this.UserField4Like = value; return this; } public ArrayList getUserField4Between() { return UserField4Between; } public SH_LinesQuery setUserField4Between(ArrayList value) { this.UserField4Between = value; return this; } public ArrayList getUserField4In() { return UserField4In; } public SH_LinesQuery setUserField4In(ArrayList value) { this.UserField4In = value; return this; } public String getUserField5() { return UserField5; } public SH_LinesQuery setUserField5(String value) { this.UserField5 = value; return this; } public String getUserField5StartsWith() { return UserField5StartsWith; } public SH_LinesQuery setUserField5StartsWith(String value) { this.UserField5StartsWith = value; return this; } public String getUserField5EndsWith() { return UserField5EndsWith; } public SH_LinesQuery setUserField5EndsWith(String value) { this.UserField5EndsWith = value; return this; } public String getUserField5Contains() { return UserField5Contains; } public SH_LinesQuery setUserField5Contains(String value) { this.UserField5Contains = value; return this; } public String getUserField5Like() { return UserField5Like; } public SH_LinesQuery setUserField5Like(String value) { this.UserField5Like = value; return this; } public ArrayList getUserField5Between() { return UserField5Between; } public SH_LinesQuery setUserField5Between(ArrayList value) { this.UserField5Between = value; return this; } public ArrayList getUserField5In() { return UserField5In; } public SH_LinesQuery setUserField5In(ArrayList value) { this.UserField5In = value; return this; } public String getUserField6() { return UserField6; } public SH_LinesQuery setUserField6(String value) { this.UserField6 = value; return this; } public String getUserField6StartsWith() { return UserField6StartsWith; } public SH_LinesQuery setUserField6StartsWith(String value) { this.UserField6StartsWith = value; return this; } public String getUserField6EndsWith() { return UserField6EndsWith; } public SH_LinesQuery setUserField6EndsWith(String value) { this.UserField6EndsWith = value; return this; } public String getUserField6Contains() { return UserField6Contains; } public SH_LinesQuery setUserField6Contains(String value) { this.UserField6Contains = value; return this; } public String getUserField6Like() { return UserField6Like; } public SH_LinesQuery setUserField6Like(String value) { this.UserField6Like = value; return this; } public ArrayList getUserField6Between() { return UserField6Between; } public SH_LinesQuery setUserField6Between(ArrayList value) { this.UserField6Between = value; return this; } public ArrayList getUserField6In() { return UserField6In; } public SH_LinesQuery setUserField6In(ArrayList value) { this.UserField6In = value; return this; } public String getUserField7() { return UserField7; } public SH_LinesQuery setUserField7(String value) { this.UserField7 = value; return this; } public String getUserField7StartsWith() { return UserField7StartsWith; } public SH_LinesQuery setUserField7StartsWith(String value) { this.UserField7StartsWith = value; return this; } public String getUserField7EndsWith() { return UserField7EndsWith; } public SH_LinesQuery setUserField7EndsWith(String value) { this.UserField7EndsWith = value; return this; } public String getUserField7Contains() { return UserField7Contains; } public SH_LinesQuery setUserField7Contains(String value) { this.UserField7Contains = value; return this; } public String getUserField7Like() { return UserField7Like; } public SH_LinesQuery setUserField7Like(String value) { this.UserField7Like = value; return this; } public ArrayList getUserField7Between() { return UserField7Between; } public SH_LinesQuery setUserField7Between(ArrayList value) { this.UserField7Between = value; return this; } public ArrayList getUserField7In() { return UserField7In; } public SH_LinesQuery setUserField7In(ArrayList value) { this.UserField7In = value; return this; } public String getUserField8() { return UserField8; } public SH_LinesQuery setUserField8(String value) { this.UserField8 = value; return this; } public String getUserField8StartsWith() { return UserField8StartsWith; } public SH_LinesQuery setUserField8StartsWith(String value) { this.UserField8StartsWith = value; return this; } public String getUserField8EndsWith() { return UserField8EndsWith; } public SH_LinesQuery setUserField8EndsWith(String value) { this.UserField8EndsWith = value; return this; } public String getUserField8Contains() { return UserField8Contains; } public SH_LinesQuery setUserField8Contains(String value) { this.UserField8Contains = value; return this; } public String getUserField8Like() { return UserField8Like; } public SH_LinesQuery setUserField8Like(String value) { this.UserField8Like = value; return this; } public ArrayList getUserField8Between() { return UserField8Between; } public SH_LinesQuery setUserField8Between(ArrayList value) { this.UserField8Between = value; return this; } public ArrayList getUserField8In() { return UserField8In; } public SH_LinesQuery setUserField8In(ArrayList value) { this.UserField8In = value; return this; } public String getUserField9() { return UserField9; } public SH_LinesQuery setUserField9(String value) { this.UserField9 = value; return this; } public String getUserField9StartsWith() { return UserField9StartsWith; } public SH_LinesQuery setUserField9StartsWith(String value) { this.UserField9StartsWith = value; return this; } public String getUserField9EndsWith() { return UserField9EndsWith; } public SH_LinesQuery setUserField9EndsWith(String value) { this.UserField9EndsWith = value; return this; } public String getUserField9Contains() { return UserField9Contains; } public SH_LinesQuery setUserField9Contains(String value) { this.UserField9Contains = value; return this; } public String getUserField9Like() { return UserField9Like; } public SH_LinesQuery setUserField9Like(String value) { this.UserField9Like = value; return this; } public ArrayList getUserField9Between() { return UserField9Between; } public SH_LinesQuery setUserField9Between(ArrayList value) { this.UserField9Between = value; return this; } public ArrayList getUserField9In() { return UserField9In; } public SH_LinesQuery setUserField9In(ArrayList value) { this.UserField9In = value; return this; } public String getUserField10() { return UserField10; } public SH_LinesQuery setUserField10(String value) { this.UserField10 = value; return this; } public String getUserField10StartsWith() { return UserField10StartsWith; } public SH_LinesQuery setUserField10StartsWith(String value) { this.UserField10StartsWith = value; return this; } public String getUserField10EndsWith() { return UserField10EndsWith; } public SH_LinesQuery setUserField10EndsWith(String value) { this.UserField10EndsWith = value; return this; } public String getUserField10Contains() { return UserField10Contains; } public SH_LinesQuery setUserField10Contains(String value) { this.UserField10Contains = value; return this; } public String getUserField10Like() { return UserField10Like; } public SH_LinesQuery setUserField10Like(String value) { this.UserField10Like = value; return this; } public ArrayList getUserField10Between() { return UserField10Between; } public SH_LinesQuery setUserField10Between(ArrayList value) { this.UserField10Between = value; return this; } public ArrayList getUserField10In() { return UserField10In; } public SH_LinesQuery setUserField10In(ArrayList value) { this.UserField10In = value; return this; } public Boolean isPhysicalItem() { return PhysicalItem; } public SH_LinesQuery setPhysicalItem(Boolean value) { this.PhysicalItem = value; return this; } public BigDecimal getFxOrderedCost() { return FXOrderedCost; } public SH_LinesQuery setFxOrderedCost(BigDecimal value) { this.FXOrderedCost = value; return this; } public BigDecimal getFxOrderedCostGreaterThanOrEqualTo() { return FXOrderedCostGreaterThanOrEqualTo; } public SH_LinesQuery setFxOrderedCostGreaterThanOrEqualTo(BigDecimal value) { this.FXOrderedCostGreaterThanOrEqualTo = value; return this; } public BigDecimal getFxOrderedCostGreaterThan() { return FXOrderedCostGreaterThan; } public SH_LinesQuery setFxOrderedCostGreaterThan(BigDecimal value) { this.FXOrderedCostGreaterThan = value; return this; } public BigDecimal getFxOrderedCostLessThan() { return FXOrderedCostLessThan; } public SH_LinesQuery setFxOrderedCostLessThan(BigDecimal value) { this.FXOrderedCostLessThan = value; return this; } public BigDecimal getFxOrderedCostLessThanOrEqualTo() { return FXOrderedCostLessThanOrEqualTo; } public SH_LinesQuery setFxOrderedCostLessThanOrEqualTo(BigDecimal value) { this.FXOrderedCostLessThanOrEqualTo = value; return this; } public BigDecimal getFxOrderedCostNotEqualTo() { return FXOrderedCostNotEqualTo; } public SH_LinesQuery setFxOrderedCostNotEqualTo(BigDecimal value) { this.FXOrderedCostNotEqualTo = value; return this; } public ArrayList getFxOrderedCostBetween() { return FXOrderedCostBetween; } public SH_LinesQuery setFxOrderedCostBetween(ArrayList value) { this.FXOrderedCostBetween = value; return this; } public ArrayList getFxOrderedCostIn() { return FXOrderedCostIn; } public SH_LinesQuery setFxOrderedCostIn(ArrayList value) { this.FXOrderedCostIn = value; return this; } public Integer getDisplayOrder() { return DisplayOrder; } public SH_LinesQuery setDisplayOrder(Integer value) { this.DisplayOrder = value; return this; } public Integer getDisplayOrderGreaterThanOrEqualTo() { return DisplayOrderGreaterThanOrEqualTo; } public SH_LinesQuery setDisplayOrderGreaterThanOrEqualTo(Integer value) { this.DisplayOrderGreaterThanOrEqualTo = value; return this; } public Integer getDisplayOrderGreaterThan() { return DisplayOrderGreaterThan; } public SH_LinesQuery setDisplayOrderGreaterThan(Integer value) { this.DisplayOrderGreaterThan = value; return this; } public Integer getDisplayOrderLessThan() { return DisplayOrderLessThan; } public SH_LinesQuery setDisplayOrderLessThan(Integer value) { this.DisplayOrderLessThan = value; return this; } public Integer getDisplayOrderLessThanOrEqualTo() { return DisplayOrderLessThanOrEqualTo; } public SH_LinesQuery setDisplayOrderLessThanOrEqualTo(Integer value) { this.DisplayOrderLessThanOrEqualTo = value; return this; } public Integer getDisplayOrderNotEqualTo() { return DisplayOrderNotEqualTo; } public SH_LinesQuery setDisplayOrderNotEqualTo(Integer value) { this.DisplayOrderNotEqualTo = value; return this; } public ArrayList getDisplayOrderBetween() { return DisplayOrderBetween; } public SH_LinesQuery setDisplayOrderBetween(ArrayList value) { this.DisplayOrderBetween = value; return this; } public ArrayList getDisplayOrderIn() { return DisplayOrderIn; } public SH_LinesQuery setDisplayOrderIn(ArrayList value) { this.DisplayOrderIn = value; return this; } public String getInSupplierWarehouseRecID() { return IN_SupplierWarehouse_RecID; } public SH_LinesQuery setInSupplierWarehouseRecID(String value) { this.IN_SupplierWarehouse_RecID = value; return this; } public String getInSupplierWarehouseRecIDStartsWith() { return IN_SupplierWarehouse_RecIDStartsWith; } public SH_LinesQuery setInSupplierWarehouseRecIDStartsWith(String value) { this.IN_SupplierWarehouse_RecIDStartsWith = value; return this; } public String getInSupplierWarehouseRecIDEndsWith() { return IN_SupplierWarehouse_RecIDEndsWith; } public SH_LinesQuery setInSupplierWarehouseRecIDEndsWith(String value) { this.IN_SupplierWarehouse_RecIDEndsWith = value; return this; } public String getInSupplierWarehouseRecIDContains() { return IN_SupplierWarehouse_RecIDContains; } public SH_LinesQuery setInSupplierWarehouseRecIDContains(String value) { this.IN_SupplierWarehouse_RecIDContains = value; return this; } public String getInSupplierWarehouseRecIDLike() { return IN_SupplierWarehouse_RecIDLike; } public SH_LinesQuery setInSupplierWarehouseRecIDLike(String value) { this.IN_SupplierWarehouse_RecIDLike = value; return this; } public ArrayList getInSupplierWarehouseRecIDBetween() { return IN_SupplierWarehouse_RecIDBetween; } public SH_LinesQuery setInSupplierWarehouseRecIDBetween(ArrayList value) { this.IN_SupplierWarehouse_RecIDBetween = value; return this; } public ArrayList getInSupplierWarehouseRecIDIn() { return IN_SupplierWarehouse_RecIDIn; } public SH_LinesQuery setInSupplierWarehouseRecIDIn(ArrayList value) { this.IN_SupplierWarehouse_RecIDIn = value; return this; } public String getInCreditorRecID() { return IN_Creditor_RecID; } public SH_LinesQuery setInCreditorRecID(String value) { this.IN_Creditor_RecID = value; return this; } public String getInCreditorRecIDStartsWith() { return IN_Creditor_RecIDStartsWith; } public SH_LinesQuery setInCreditorRecIDStartsWith(String value) { this.IN_Creditor_RecIDStartsWith = value; return this; } public String getInCreditorRecIDEndsWith() { return IN_Creditor_RecIDEndsWith; } public SH_LinesQuery setInCreditorRecIDEndsWith(String value) { this.IN_Creditor_RecIDEndsWith = value; return this; } public String getInCreditorRecIDContains() { return IN_Creditor_RecIDContains; } public SH_LinesQuery setInCreditorRecIDContains(String value) { this.IN_Creditor_RecIDContains = value; return this; } public String getInCreditorRecIDLike() { return IN_Creditor_RecIDLike; } public SH_LinesQuery setInCreditorRecIDLike(String value) { this.IN_Creditor_RecIDLike = value; return this; } public ArrayList getInCreditorRecIDBetween() { return IN_Creditor_RecIDBetween; } public SH_LinesQuery setInCreditorRecIDBetween(ArrayList value) { this.IN_Creditor_RecIDBetween = value; return this; } public ArrayList getInCreditorRecIDIn() { return IN_Creditor_RecIDIn; } public SH_LinesQuery setInCreditorRecIDIn(ArrayList value) { this.IN_Creditor_RecIDIn = value; return this; } public ArrayList getRowHash() { return RowHash; } public SH_LinesQuery setRowHash(ArrayList value) { this.RowHash = value; return this; } public Boolean isUnitChanged() { return UnitChanged; } public SH_LinesQuery setUnitChanged(Boolean value) { this.UnitChanged = value; return this; } public Boolean isFxChanged() { return FXChanged; } public SH_LinesQuery setFxChanged(Boolean value) { this.FXChanged = value; return this; } public Boolean isExChanged() { return ExChanged; } public SH_LinesQuery setExChanged(Boolean value) { this.ExChanged = value; return this; } public Boolean isTaxRateChanged() { return TaxRateChanged; } public SH_LinesQuery setTaxRateChanged(Boolean value) { this.TaxRateChanged = value; return this; } public Boolean isChangeSourceIsFromPurchaseOrderLine() { return ChangeSourceIsFromPurchaseOrderLine; } public SH_LinesQuery setChangeSourceIsFromPurchaseOrderLine(Boolean value) { this.ChangeSourceIsFromPurchaseOrderLine = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @Route(Path="/Queries/IN_BinLocationLookup", Verbs="GET") @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class IN_BinLocationLookupQuery extends QueryDb implements IReturn> { public String INBinLookupID = null; public String INBinLookupIDStartsWith = null; public String INBinLookupIDEndsWith = null; public String INBinLookupIDContains = null; public String INBinLookupIDLike = null; public ArrayList INBinLookupIDBetween = null; public ArrayList INBinLookupIDIn = null; public Date LastSavedDateTime = null; public Date LastSavedDateTimeGreaterThanOrEqualTo = null; public Date LastSavedDateTimeGreaterThan = null; public Date LastSavedDateTimeLessThan = null; public Date LastSavedDateTimeLessThanOrEqualTo = null; public Date LastSavedDateTimeNotEqualTo = null; public ArrayList LastSavedDateTimeBetween = null; public ArrayList LastSavedDateTimeIn = null; public String INLogicalID = null; public String INLogicalIDStartsWith = null; public String INLogicalIDEndsWith = null; public String INLogicalIDContains = null; public String INLogicalIDLike = null; public ArrayList INLogicalIDBetween = null; public ArrayList INLogicalIDIn = null; public String Description = null; public String DescriptionStartsWith = null; public String DescriptionEndsWith = null; public String DescriptionContains = null; public String DescriptionLike = null; public ArrayList DescriptionBetween = null; public ArrayList DescriptionIn = null; public String ShortName = null; public String ShortNameStartsWith = null; public String ShortNameEndsWith = null; public String ShortNameContains = null; public String ShortNameLike = null; public ArrayList ShortNameBetween = null; public ArrayList ShortNameIn = null; public Integer ItemNo = null; public Integer ItemNoGreaterThanOrEqualTo = null; public Integer ItemNoGreaterThan = null; public Integer ItemNoLessThan = null; public Integer ItemNoLessThanOrEqualTo = null; public Integer ItemNoNotEqualTo = null; public ArrayList ItemNoBetween = null; public ArrayList ItemNoIn = null; public Boolean IsDefault = null; public ArrayList RowHash = null; public String getInBinLookupID() { return INBinLookupID; } public IN_BinLocationLookupQuery setInBinLookupID(String value) { this.INBinLookupID = value; return this; } public String getInBinLookupIDStartsWith() { return INBinLookupIDStartsWith; } public IN_BinLocationLookupQuery setInBinLookupIDStartsWith(String value) { this.INBinLookupIDStartsWith = value; return this; } public String getInBinLookupIDEndsWith() { return INBinLookupIDEndsWith; } public IN_BinLocationLookupQuery setInBinLookupIDEndsWith(String value) { this.INBinLookupIDEndsWith = value; return this; } public String getInBinLookupIDContains() { return INBinLookupIDContains; } public IN_BinLocationLookupQuery setInBinLookupIDContains(String value) { this.INBinLookupIDContains = value; return this; } public String getInBinLookupIDLike() { return INBinLookupIDLike; } public IN_BinLocationLookupQuery setInBinLookupIDLike(String value) { this.INBinLookupIDLike = value; return this; } public ArrayList getInBinLookupIDBetween() { return INBinLookupIDBetween; } public IN_BinLocationLookupQuery setInBinLookupIDBetween(ArrayList value) { this.INBinLookupIDBetween = value; return this; } public ArrayList getInBinLookupIDIn() { return INBinLookupIDIn; } public IN_BinLocationLookupQuery setInBinLookupIDIn(ArrayList value) { this.INBinLookupIDIn = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public IN_BinLocationLookupQuery setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getLastSavedDateTimeGreaterThanOrEqualTo() { return LastSavedDateTimeGreaterThanOrEqualTo; } public IN_BinLocationLookupQuery setLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.LastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeGreaterThan() { return LastSavedDateTimeGreaterThan; } public IN_BinLocationLookupQuery setLastSavedDateTimeGreaterThan(Date value) { this.LastSavedDateTimeGreaterThan = value; return this; } public Date getLastSavedDateTimeLessThan() { return LastSavedDateTimeLessThan; } public IN_BinLocationLookupQuery setLastSavedDateTimeLessThan(Date value) { this.LastSavedDateTimeLessThan = value; return this; } public Date getLastSavedDateTimeLessThanOrEqualTo() { return LastSavedDateTimeLessThanOrEqualTo; } public IN_BinLocationLookupQuery setLastSavedDateTimeLessThanOrEqualTo(Date value) { this.LastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeNotEqualTo() { return LastSavedDateTimeNotEqualTo; } public IN_BinLocationLookupQuery setLastSavedDateTimeNotEqualTo(Date value) { this.LastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getLastSavedDateTimeBetween() { return LastSavedDateTimeBetween; } public IN_BinLocationLookupQuery setLastSavedDateTimeBetween(ArrayList value) { this.LastSavedDateTimeBetween = value; return this; } public ArrayList getLastSavedDateTimeIn() { return LastSavedDateTimeIn; } public IN_BinLocationLookupQuery setLastSavedDateTimeIn(ArrayList value) { this.LastSavedDateTimeIn = value; return this; } public String getInLogicalID() { return INLogicalID; } public IN_BinLocationLookupQuery setInLogicalID(String value) { this.INLogicalID = value; return this; } public String getInLogicalIDStartsWith() { return INLogicalIDStartsWith; } public IN_BinLocationLookupQuery setInLogicalIDStartsWith(String value) { this.INLogicalIDStartsWith = value; return this; } public String getInLogicalIDEndsWith() { return INLogicalIDEndsWith; } public IN_BinLocationLookupQuery setInLogicalIDEndsWith(String value) { this.INLogicalIDEndsWith = value; return this; } public String getInLogicalIDContains() { return INLogicalIDContains; } public IN_BinLocationLookupQuery setInLogicalIDContains(String value) { this.INLogicalIDContains = value; return this; } public String getInLogicalIDLike() { return INLogicalIDLike; } public IN_BinLocationLookupQuery setInLogicalIDLike(String value) { this.INLogicalIDLike = value; return this; } public ArrayList getInLogicalIDBetween() { return INLogicalIDBetween; } public IN_BinLocationLookupQuery setInLogicalIDBetween(ArrayList value) { this.INLogicalIDBetween = value; return this; } public ArrayList getInLogicalIDIn() { return INLogicalIDIn; } public IN_BinLocationLookupQuery setInLogicalIDIn(ArrayList value) { this.INLogicalIDIn = value; return this; } public String getDescription() { return Description; } public IN_BinLocationLookupQuery setDescription(String value) { this.Description = value; return this; } public String getDescriptionStartsWith() { return DescriptionStartsWith; } public IN_BinLocationLookupQuery setDescriptionStartsWith(String value) { this.DescriptionStartsWith = value; return this; } public String getDescriptionEndsWith() { return DescriptionEndsWith; } public IN_BinLocationLookupQuery setDescriptionEndsWith(String value) { this.DescriptionEndsWith = value; return this; } public String getDescriptionContains() { return DescriptionContains; } public IN_BinLocationLookupQuery setDescriptionContains(String value) { this.DescriptionContains = value; return this; } public String getDescriptionLike() { return DescriptionLike; } public IN_BinLocationLookupQuery setDescriptionLike(String value) { this.DescriptionLike = value; return this; } public ArrayList getDescriptionBetween() { return DescriptionBetween; } public IN_BinLocationLookupQuery setDescriptionBetween(ArrayList value) { this.DescriptionBetween = value; return this; } public ArrayList getDescriptionIn() { return DescriptionIn; } public IN_BinLocationLookupQuery setDescriptionIn(ArrayList value) { this.DescriptionIn = value; return this; } public String getShortName() { return ShortName; } public IN_BinLocationLookupQuery setShortName(String value) { this.ShortName = value; return this; } public String getShortNameStartsWith() { return ShortNameStartsWith; } public IN_BinLocationLookupQuery setShortNameStartsWith(String value) { this.ShortNameStartsWith = value; return this; } public String getShortNameEndsWith() { return ShortNameEndsWith; } public IN_BinLocationLookupQuery setShortNameEndsWith(String value) { this.ShortNameEndsWith = value; return this; } public String getShortNameContains() { return ShortNameContains; } public IN_BinLocationLookupQuery setShortNameContains(String value) { this.ShortNameContains = value; return this; } public String getShortNameLike() { return ShortNameLike; } public IN_BinLocationLookupQuery setShortNameLike(String value) { this.ShortNameLike = value; return this; } public ArrayList getShortNameBetween() { return ShortNameBetween; } public IN_BinLocationLookupQuery setShortNameBetween(ArrayList value) { this.ShortNameBetween = value; return this; } public ArrayList getShortNameIn() { return ShortNameIn; } public IN_BinLocationLookupQuery setShortNameIn(ArrayList value) { this.ShortNameIn = value; return this; } public Integer getItemNo() { return ItemNo; } public IN_BinLocationLookupQuery setItemNo(Integer value) { this.ItemNo = value; return this; } public Integer getItemNoGreaterThanOrEqualTo() { return ItemNoGreaterThanOrEqualTo; } public IN_BinLocationLookupQuery setItemNoGreaterThanOrEqualTo(Integer value) { this.ItemNoGreaterThanOrEqualTo = value; return this; } public Integer getItemNoGreaterThan() { return ItemNoGreaterThan; } public IN_BinLocationLookupQuery setItemNoGreaterThan(Integer value) { this.ItemNoGreaterThan = value; return this; } public Integer getItemNoLessThan() { return ItemNoLessThan; } public IN_BinLocationLookupQuery setItemNoLessThan(Integer value) { this.ItemNoLessThan = value; return this; } public Integer getItemNoLessThanOrEqualTo() { return ItemNoLessThanOrEqualTo; } public IN_BinLocationLookupQuery setItemNoLessThanOrEqualTo(Integer value) { this.ItemNoLessThanOrEqualTo = value; return this; } public Integer getItemNoNotEqualTo() { return ItemNoNotEqualTo; } public IN_BinLocationLookupQuery setItemNoNotEqualTo(Integer value) { this.ItemNoNotEqualTo = value; return this; } public ArrayList getItemNoBetween() { return ItemNoBetween; } public IN_BinLocationLookupQuery setItemNoBetween(ArrayList value) { this.ItemNoBetween = value; return this; } public ArrayList getItemNoIn() { return ItemNoIn; } public IN_BinLocationLookupQuery setItemNoIn(ArrayList value) { this.ItemNoIn = value; return this; } public Boolean getIsDefault() { return IsDefault; } public IN_BinLocationLookupQuery setIsDefault(Boolean value) { this.IsDefault = value; return this; } public ArrayList getRowHash() { return RowHash; } public IN_BinLocationLookupQuery setRowHash(ArrayList value) { this.RowHash = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class IN_BinLocationLookupCustomFieldsQuery extends QueryDb implements IReturn> { public String RecID = null; public String RecIDStartsWith = null; public String RecIDEndsWith = null; public String RecIDContains = null; public String RecIDLike = null; public ArrayList RecIDBetween = null; public ArrayList RecIDIn = null; public String SettingName = null; public String SettingNameStartsWith = null; public String SettingNameEndsWith = null; public String SettingNameContains = null; public String SettingNameLike = null; public ArrayList SettingNameBetween = null; public ArrayList SettingNameIn = null; public String SettingDescription = null; public String SettingDescriptionStartsWith = null; public String SettingDescriptionEndsWith = null; public String SettingDescriptionContains = null; public String SettingDescriptionLike = null; public ArrayList SettingDescriptionBetween = null; public ArrayList SettingDescriptionIn = null; public Integer CellType = null; public Integer CellTypeGreaterThanOrEqualTo = null; public Integer CellTypeGreaterThan = null; public Integer CellTypeLessThan = null; public Integer CellTypeLessThanOrEqualTo = null; public Integer CellTypeNotEqualTo = null; public ArrayList CellTypeBetween = null; public ArrayList CellTypeIn = null; public String FieldParameter = null; public String FieldParameterStartsWith = null; public String FieldParameterEndsWith = null; public String FieldParameterContains = null; public String FieldParameterLike = null; public ArrayList FieldParameterBetween = null; public ArrayList FieldParameterIn = null; public UUID SY_Plugin_RecID = null; public ArrayList SY_Plugin_RecIDIn = null; public Date LastSavedDateTime = null; public Date LastSavedDateTimeGreaterThanOrEqualTo = null; public Date LastSavedDateTimeGreaterThan = null; public Date LastSavedDateTimeLessThan = null; public Date LastSavedDateTimeLessThanOrEqualTo = null; public Date LastSavedDateTimeNotEqualTo = null; public ArrayList LastSavedDateTimeBetween = null; public ArrayList LastSavedDateTimeIn = null; public Integer DisplayOrder = null; public Integer DisplayOrderGreaterThanOrEqualTo = null; public Integer DisplayOrderGreaterThan = null; public Integer DisplayOrderLessThan = null; public Integer DisplayOrderLessThanOrEqualTo = null; public Integer DisplayOrderNotEqualTo = null; public ArrayList DisplayOrderBetween = null; public ArrayList DisplayOrderIn = null; public String getRecID() { return RecID; } public IN_BinLocationLookupCustomFieldsQuery setRecID(String value) { this.RecID = value; return this; } public String getRecIDStartsWith() { return RecIDStartsWith; } public IN_BinLocationLookupCustomFieldsQuery setRecIDStartsWith(String value) { this.RecIDStartsWith = value; return this; } public String getRecIDEndsWith() { return RecIDEndsWith; } public IN_BinLocationLookupCustomFieldsQuery setRecIDEndsWith(String value) { this.RecIDEndsWith = value; return this; } public String getRecIDContains() { return RecIDContains; } public IN_BinLocationLookupCustomFieldsQuery setRecIDContains(String value) { this.RecIDContains = value; return this; } public String getRecIDLike() { return RecIDLike; } public IN_BinLocationLookupCustomFieldsQuery setRecIDLike(String value) { this.RecIDLike = value; return this; } public ArrayList getRecIDBetween() { return RecIDBetween; } public IN_BinLocationLookupCustomFieldsQuery setRecIDBetween(ArrayList value) { this.RecIDBetween = value; return this; } public ArrayList getRecIDIn() { return RecIDIn; } public IN_BinLocationLookupCustomFieldsQuery setRecIDIn(ArrayList value) { this.RecIDIn = value; return this; } public String getSettingName() { return SettingName; } public IN_BinLocationLookupCustomFieldsQuery setSettingName(String value) { this.SettingName = value; return this; } public String getSettingNameStartsWith() { return SettingNameStartsWith; } public IN_BinLocationLookupCustomFieldsQuery setSettingNameStartsWith(String value) { this.SettingNameStartsWith = value; return this; } public String getSettingNameEndsWith() { return SettingNameEndsWith; } public IN_BinLocationLookupCustomFieldsQuery setSettingNameEndsWith(String value) { this.SettingNameEndsWith = value; return this; } public String getSettingNameContains() { return SettingNameContains; } public IN_BinLocationLookupCustomFieldsQuery setSettingNameContains(String value) { this.SettingNameContains = value; return this; } public String getSettingNameLike() { return SettingNameLike; } public IN_BinLocationLookupCustomFieldsQuery setSettingNameLike(String value) { this.SettingNameLike = value; return this; } public ArrayList getSettingNameBetween() { return SettingNameBetween; } public IN_BinLocationLookupCustomFieldsQuery setSettingNameBetween(ArrayList value) { this.SettingNameBetween = value; return this; } public ArrayList getSettingNameIn() { return SettingNameIn; } public IN_BinLocationLookupCustomFieldsQuery setSettingNameIn(ArrayList value) { this.SettingNameIn = value; return this; } public String getSettingDescription() { return SettingDescription; } public IN_BinLocationLookupCustomFieldsQuery setSettingDescription(String value) { this.SettingDescription = value; return this; } public String getSettingDescriptionStartsWith() { return SettingDescriptionStartsWith; } public IN_BinLocationLookupCustomFieldsQuery setSettingDescriptionStartsWith(String value) { this.SettingDescriptionStartsWith = value; return this; } public String getSettingDescriptionEndsWith() { return SettingDescriptionEndsWith; } public IN_BinLocationLookupCustomFieldsQuery setSettingDescriptionEndsWith(String value) { this.SettingDescriptionEndsWith = value; return this; } public String getSettingDescriptionContains() { return SettingDescriptionContains; } public IN_BinLocationLookupCustomFieldsQuery setSettingDescriptionContains(String value) { this.SettingDescriptionContains = value; return this; } public String getSettingDescriptionLike() { return SettingDescriptionLike; } public IN_BinLocationLookupCustomFieldsQuery setSettingDescriptionLike(String value) { this.SettingDescriptionLike = value; return this; } public ArrayList getSettingDescriptionBetween() { return SettingDescriptionBetween; } public IN_BinLocationLookupCustomFieldsQuery setSettingDescriptionBetween(ArrayList value) { this.SettingDescriptionBetween = value; return this; } public ArrayList getSettingDescriptionIn() { return SettingDescriptionIn; } public IN_BinLocationLookupCustomFieldsQuery setSettingDescriptionIn(ArrayList value) { this.SettingDescriptionIn = value; return this; } public Integer getCellType() { return CellType; } public IN_BinLocationLookupCustomFieldsQuery setCellType(Integer value) { this.CellType = value; return this; } public Integer getCellTypeGreaterThanOrEqualTo() { return CellTypeGreaterThanOrEqualTo; } public IN_BinLocationLookupCustomFieldsQuery setCellTypeGreaterThanOrEqualTo(Integer value) { this.CellTypeGreaterThanOrEqualTo = value; return this; } public Integer getCellTypeGreaterThan() { return CellTypeGreaterThan; } public IN_BinLocationLookupCustomFieldsQuery setCellTypeGreaterThan(Integer value) { this.CellTypeGreaterThan = value; return this; } public Integer getCellTypeLessThan() { return CellTypeLessThan; } public IN_BinLocationLookupCustomFieldsQuery setCellTypeLessThan(Integer value) { this.CellTypeLessThan = value; return this; } public Integer getCellTypeLessThanOrEqualTo() { return CellTypeLessThanOrEqualTo; } public IN_BinLocationLookupCustomFieldsQuery setCellTypeLessThanOrEqualTo(Integer value) { this.CellTypeLessThanOrEqualTo = value; return this; } public Integer getCellTypeNotEqualTo() { return CellTypeNotEqualTo; } public IN_BinLocationLookupCustomFieldsQuery setCellTypeNotEqualTo(Integer value) { this.CellTypeNotEqualTo = value; return this; } public ArrayList getCellTypeBetween() { return CellTypeBetween; } public IN_BinLocationLookupCustomFieldsQuery setCellTypeBetween(ArrayList value) { this.CellTypeBetween = value; return this; } public ArrayList getCellTypeIn() { return CellTypeIn; } public IN_BinLocationLookupCustomFieldsQuery setCellTypeIn(ArrayList value) { this.CellTypeIn = value; return this; } public String getFieldParameter() { return FieldParameter; } public IN_BinLocationLookupCustomFieldsQuery setFieldParameter(String value) { this.FieldParameter = value; return this; } public String getFieldParameterStartsWith() { return FieldParameterStartsWith; } public IN_BinLocationLookupCustomFieldsQuery setFieldParameterStartsWith(String value) { this.FieldParameterStartsWith = value; return this; } public String getFieldParameterEndsWith() { return FieldParameterEndsWith; } public IN_BinLocationLookupCustomFieldsQuery setFieldParameterEndsWith(String value) { this.FieldParameterEndsWith = value; return this; } public String getFieldParameterContains() { return FieldParameterContains; } public IN_BinLocationLookupCustomFieldsQuery setFieldParameterContains(String value) { this.FieldParameterContains = value; return this; } public String getFieldParameterLike() { return FieldParameterLike; } public IN_BinLocationLookupCustomFieldsQuery setFieldParameterLike(String value) { this.FieldParameterLike = value; return this; } public ArrayList getFieldParameterBetween() { return FieldParameterBetween; } public IN_BinLocationLookupCustomFieldsQuery setFieldParameterBetween(ArrayList value) { this.FieldParameterBetween = value; return this; } public ArrayList getFieldParameterIn() { return FieldParameterIn; } public IN_BinLocationLookupCustomFieldsQuery setFieldParameterIn(ArrayList value) { this.FieldParameterIn = value; return this; } public UUID getSyPluginRecID() { return SY_Plugin_RecID; } public IN_BinLocationLookupCustomFieldsQuery setSyPluginRecID(UUID value) { this.SY_Plugin_RecID = value; return this; } public ArrayList getSyPluginRecIDIn() { return SY_Plugin_RecIDIn; } public IN_BinLocationLookupCustomFieldsQuery setSyPluginRecIDIn(ArrayList value) { this.SY_Plugin_RecIDIn = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public IN_BinLocationLookupCustomFieldsQuery setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getLastSavedDateTimeGreaterThanOrEqualTo() { return LastSavedDateTimeGreaterThanOrEqualTo; } public IN_BinLocationLookupCustomFieldsQuery setLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.LastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeGreaterThan() { return LastSavedDateTimeGreaterThan; } public IN_BinLocationLookupCustomFieldsQuery setLastSavedDateTimeGreaterThan(Date value) { this.LastSavedDateTimeGreaterThan = value; return this; } public Date getLastSavedDateTimeLessThan() { return LastSavedDateTimeLessThan; } public IN_BinLocationLookupCustomFieldsQuery setLastSavedDateTimeLessThan(Date value) { this.LastSavedDateTimeLessThan = value; return this; } public Date getLastSavedDateTimeLessThanOrEqualTo() { return LastSavedDateTimeLessThanOrEqualTo; } public IN_BinLocationLookupCustomFieldsQuery setLastSavedDateTimeLessThanOrEqualTo(Date value) { this.LastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeNotEqualTo() { return LastSavedDateTimeNotEqualTo; } public IN_BinLocationLookupCustomFieldsQuery setLastSavedDateTimeNotEqualTo(Date value) { this.LastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getLastSavedDateTimeBetween() { return LastSavedDateTimeBetween; } public IN_BinLocationLookupCustomFieldsQuery setLastSavedDateTimeBetween(ArrayList value) { this.LastSavedDateTimeBetween = value; return this; } public ArrayList getLastSavedDateTimeIn() { return LastSavedDateTimeIn; } public IN_BinLocationLookupCustomFieldsQuery setLastSavedDateTimeIn(ArrayList value) { this.LastSavedDateTimeIn = value; return this; } public Integer getDisplayOrder() { return DisplayOrder; } public IN_BinLocationLookupCustomFieldsQuery setDisplayOrder(Integer value) { this.DisplayOrder = value; return this; } public Integer getDisplayOrderGreaterThanOrEqualTo() { return DisplayOrderGreaterThanOrEqualTo; } public IN_BinLocationLookupCustomFieldsQuery setDisplayOrderGreaterThanOrEqualTo(Integer value) { this.DisplayOrderGreaterThanOrEqualTo = value; return this; } public Integer getDisplayOrderGreaterThan() { return DisplayOrderGreaterThan; } public IN_BinLocationLookupCustomFieldsQuery setDisplayOrderGreaterThan(Integer value) { this.DisplayOrderGreaterThan = value; return this; } public Integer getDisplayOrderLessThan() { return DisplayOrderLessThan; } public IN_BinLocationLookupCustomFieldsQuery setDisplayOrderLessThan(Integer value) { this.DisplayOrderLessThan = value; return this; } public Integer getDisplayOrderLessThanOrEqualTo() { return DisplayOrderLessThanOrEqualTo; } public IN_BinLocationLookupCustomFieldsQuery setDisplayOrderLessThanOrEqualTo(Integer value) { this.DisplayOrderLessThanOrEqualTo = value; return this; } public Integer getDisplayOrderNotEqualTo() { return DisplayOrderNotEqualTo; } public IN_BinLocationLookupCustomFieldsQuery setDisplayOrderNotEqualTo(Integer value) { this.DisplayOrderNotEqualTo = value; return this; } public ArrayList getDisplayOrderBetween() { return DisplayOrderBetween; } public IN_BinLocationLookupCustomFieldsQuery setDisplayOrderBetween(ArrayList value) { this.DisplayOrderBetween = value; return this; } public ArrayList getDisplayOrderIn() { return DisplayOrderIn; } public IN_BinLocationLookupCustomFieldsQuery setDisplayOrderIn(ArrayList value) { this.DisplayOrderIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class IN_BinLocationLookupCustomValuesQuery extends QueryDb implements IReturn> { public String RecID = null; public String RecIDStartsWith = null; public String RecIDEndsWith = null; public String RecIDContains = null; public String RecIDLike = null; public ArrayList RecIDBetween = null; public ArrayList RecIDIn = null; public String IN_BinLocationLookup_RecID = null; public String IN_BinLocationLookup_RecIDStartsWith = null; public String IN_BinLocationLookup_RecIDEndsWith = null; public String IN_BinLocationLookup_RecIDContains = null; public String IN_BinLocationLookup_RecIDLike = null; public ArrayList IN_BinLocationLookup_RecIDBetween = null; public ArrayList IN_BinLocationLookup_RecIDIn = null; public String IN_BinLocationLookupCustomFields_RecID = null; public String IN_BinLocationLookupCustomFields_RecIDStartsWith = null; public String IN_BinLocationLookupCustomFields_RecIDEndsWith = null; public String IN_BinLocationLookupCustomFields_RecIDContains = null; public String IN_BinLocationLookupCustomFields_RecIDLike = null; public ArrayList IN_BinLocationLookupCustomFields_RecIDBetween = null; public ArrayList IN_BinLocationLookupCustomFields_RecIDIn = null; public String Contents = null; public String ContentsStartsWith = null; public String ContentsEndsWith = null; public String ContentsContains = null; public String ContentsLike = null; public ArrayList ContentsBetween = null; public ArrayList ContentsIn = null; public Date LastSavedDateTime = null; public Date LastSavedDateTimeGreaterThanOrEqualTo = null; public Date LastSavedDateTimeGreaterThan = null; public Date LastSavedDateTimeLessThan = null; public Date LastSavedDateTimeLessThanOrEqualTo = null; public Date LastSavedDateTimeNotEqualTo = null; public ArrayList LastSavedDateTimeBetween = null; public ArrayList LastSavedDateTimeIn = null; public String getRecID() { return RecID; } public IN_BinLocationLookupCustomValuesQuery setRecID(String value) { this.RecID = value; return this; } public String getRecIDStartsWith() { return RecIDStartsWith; } public IN_BinLocationLookupCustomValuesQuery setRecIDStartsWith(String value) { this.RecIDStartsWith = value; return this; } public String getRecIDEndsWith() { return RecIDEndsWith; } public IN_BinLocationLookupCustomValuesQuery setRecIDEndsWith(String value) { this.RecIDEndsWith = value; return this; } public String getRecIDContains() { return RecIDContains; } public IN_BinLocationLookupCustomValuesQuery setRecIDContains(String value) { this.RecIDContains = value; return this; } public String getRecIDLike() { return RecIDLike; } public IN_BinLocationLookupCustomValuesQuery setRecIDLike(String value) { this.RecIDLike = value; return this; } public ArrayList getRecIDBetween() { return RecIDBetween; } public IN_BinLocationLookupCustomValuesQuery setRecIDBetween(ArrayList value) { this.RecIDBetween = value; return this; } public ArrayList getRecIDIn() { return RecIDIn; } public IN_BinLocationLookupCustomValuesQuery setRecIDIn(ArrayList value) { this.RecIDIn = value; return this; } public String getInBinLocationLookupRecID() { return IN_BinLocationLookup_RecID; } public IN_BinLocationLookupCustomValuesQuery setInBinLocationLookupRecID(String value) { this.IN_BinLocationLookup_RecID = value; return this; } public String getInBinLocationLookupRecIDStartsWith() { return IN_BinLocationLookup_RecIDStartsWith; } public IN_BinLocationLookupCustomValuesQuery setInBinLocationLookupRecIDStartsWith(String value) { this.IN_BinLocationLookup_RecIDStartsWith = value; return this; } public String getInBinLocationLookupRecIDEndsWith() { return IN_BinLocationLookup_RecIDEndsWith; } public IN_BinLocationLookupCustomValuesQuery setInBinLocationLookupRecIDEndsWith(String value) { this.IN_BinLocationLookup_RecIDEndsWith = value; return this; } public String getInBinLocationLookupRecIDContains() { return IN_BinLocationLookup_RecIDContains; } public IN_BinLocationLookupCustomValuesQuery setInBinLocationLookupRecIDContains(String value) { this.IN_BinLocationLookup_RecIDContains = value; return this; } public String getInBinLocationLookupRecIDLike() { return IN_BinLocationLookup_RecIDLike; } public IN_BinLocationLookupCustomValuesQuery setInBinLocationLookupRecIDLike(String value) { this.IN_BinLocationLookup_RecIDLike = value; return this; } public ArrayList getInBinLocationLookupRecIDBetween() { return IN_BinLocationLookup_RecIDBetween; } public IN_BinLocationLookupCustomValuesQuery setInBinLocationLookupRecIDBetween(ArrayList value) { this.IN_BinLocationLookup_RecIDBetween = value; return this; } public ArrayList getInBinLocationLookupRecIDIn() { return IN_BinLocationLookup_RecIDIn; } public IN_BinLocationLookupCustomValuesQuery setInBinLocationLookupRecIDIn(ArrayList value) { this.IN_BinLocationLookup_RecIDIn = value; return this; } public String getInBinLocationLookupCustomFieldsRecID() { return IN_BinLocationLookupCustomFields_RecID; } public IN_BinLocationLookupCustomValuesQuery setInBinLocationLookupCustomFieldsRecID(String value) { this.IN_BinLocationLookupCustomFields_RecID = value; return this; } public String getInBinLocationLookupCustomFieldsRecIDStartsWith() { return IN_BinLocationLookupCustomFields_RecIDStartsWith; } public IN_BinLocationLookupCustomValuesQuery setInBinLocationLookupCustomFieldsRecIDStartsWith(String value) { this.IN_BinLocationLookupCustomFields_RecIDStartsWith = value; return this; } public String getInBinLocationLookupCustomFieldsRecIDEndsWith() { return IN_BinLocationLookupCustomFields_RecIDEndsWith; } public IN_BinLocationLookupCustomValuesQuery setInBinLocationLookupCustomFieldsRecIDEndsWith(String value) { this.IN_BinLocationLookupCustomFields_RecIDEndsWith = value; return this; } public String getInBinLocationLookupCustomFieldsRecIDContains() { return IN_BinLocationLookupCustomFields_RecIDContains; } public IN_BinLocationLookupCustomValuesQuery setInBinLocationLookupCustomFieldsRecIDContains(String value) { this.IN_BinLocationLookupCustomFields_RecIDContains = value; return this; } public String getInBinLocationLookupCustomFieldsRecIDLike() { return IN_BinLocationLookupCustomFields_RecIDLike; } public IN_BinLocationLookupCustomValuesQuery setInBinLocationLookupCustomFieldsRecIDLike(String value) { this.IN_BinLocationLookupCustomFields_RecIDLike = value; return this; } public ArrayList getInBinLocationLookupCustomFieldsRecIDBetween() { return IN_BinLocationLookupCustomFields_RecIDBetween; } public IN_BinLocationLookupCustomValuesQuery setInBinLocationLookupCustomFieldsRecIDBetween(ArrayList value) { this.IN_BinLocationLookupCustomFields_RecIDBetween = value; return this; } public ArrayList getInBinLocationLookupCustomFieldsRecIDIn() { return IN_BinLocationLookupCustomFields_RecIDIn; } public IN_BinLocationLookupCustomValuesQuery setInBinLocationLookupCustomFieldsRecIDIn(ArrayList value) { this.IN_BinLocationLookupCustomFields_RecIDIn = value; return this; } public String getContents() { return Contents; } public IN_BinLocationLookupCustomValuesQuery setContents(String value) { this.Contents = value; return this; } public String getContentsStartsWith() { return ContentsStartsWith; } public IN_BinLocationLookupCustomValuesQuery setContentsStartsWith(String value) { this.ContentsStartsWith = value; return this; } public String getContentsEndsWith() { return ContentsEndsWith; } public IN_BinLocationLookupCustomValuesQuery setContentsEndsWith(String value) { this.ContentsEndsWith = value; return this; } public String getContentsContains() { return ContentsContains; } public IN_BinLocationLookupCustomValuesQuery setContentsContains(String value) { this.ContentsContains = value; return this; } public String getContentsLike() { return ContentsLike; } public IN_BinLocationLookupCustomValuesQuery setContentsLike(String value) { this.ContentsLike = value; return this; } public ArrayList getContentsBetween() { return ContentsBetween; } public IN_BinLocationLookupCustomValuesQuery setContentsBetween(ArrayList value) { this.ContentsBetween = value; return this; } public ArrayList getContentsIn() { return ContentsIn; } public IN_BinLocationLookupCustomValuesQuery setContentsIn(ArrayList value) { this.ContentsIn = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public IN_BinLocationLookupCustomValuesQuery setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getLastSavedDateTimeGreaterThanOrEqualTo() { return LastSavedDateTimeGreaterThanOrEqualTo; } public IN_BinLocationLookupCustomValuesQuery setLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.LastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeGreaterThan() { return LastSavedDateTimeGreaterThan; } public IN_BinLocationLookupCustomValuesQuery setLastSavedDateTimeGreaterThan(Date value) { this.LastSavedDateTimeGreaterThan = value; return this; } public Date getLastSavedDateTimeLessThan() { return LastSavedDateTimeLessThan; } public IN_BinLocationLookupCustomValuesQuery setLastSavedDateTimeLessThan(Date value) { this.LastSavedDateTimeLessThan = value; return this; } public Date getLastSavedDateTimeLessThanOrEqualTo() { return LastSavedDateTimeLessThanOrEqualTo; } public IN_BinLocationLookupCustomValuesQuery setLastSavedDateTimeLessThanOrEqualTo(Date value) { this.LastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeNotEqualTo() { return LastSavedDateTimeNotEqualTo; } public IN_BinLocationLookupCustomValuesQuery setLastSavedDateTimeNotEqualTo(Date value) { this.LastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getLastSavedDateTimeBetween() { return LastSavedDateTimeBetween; } public IN_BinLocationLookupCustomValuesQuery setLastSavedDateTimeBetween(ArrayList value) { this.LastSavedDateTimeBetween = value; return this; } public ArrayList getLastSavedDateTimeIn() { return LastSavedDateTimeIn; } public IN_BinLocationLookupCustomValuesQuery setLastSavedDateTimeIn(ArrayList value) { this.LastSavedDateTimeIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class IN_BOQtyQuery extends QueryDb implements IReturn> { public String InventoryID = null; public String InventoryIDStartsWith = null; public String InventoryIDEndsWith = null; public String InventoryIDContains = null; public String InventoryIDLike = null; public ArrayList InventoryIDBetween = null; public ArrayList InventoryIDIn = null; public BigDecimal Qty = null; public BigDecimal QtyGreaterThanOrEqualTo = null; public BigDecimal QtyGreaterThan = null; public BigDecimal QtyLessThan = null; public BigDecimal QtyLessThanOrEqualTo = null; public BigDecimal QtyNotEqualTo = null; public ArrayList QtyBetween = null; public ArrayList QtyIn = null; public BigDecimal Price = null; public BigDecimal PriceGreaterThanOrEqualTo = null; public BigDecimal PriceGreaterThan = null; public BigDecimal PriceLessThan = null; public BigDecimal PriceLessThanOrEqualTo = null; public BigDecimal PriceNotEqualTo = null; public ArrayList PriceBetween = null; public ArrayList PriceIn = null; public BigDecimal EstBOValue = null; public BigDecimal EstBOValueGreaterThanOrEqualTo = null; public BigDecimal EstBOValueGreaterThan = null; public BigDecimal EstBOValueLessThan = null; public BigDecimal EstBOValueLessThanOrEqualTo = null; public BigDecimal EstBOValueNotEqualTo = null; public ArrayList EstBOValueBetween = null; public ArrayList EstBOValueIn = null; public String getInventoryID() { return InventoryID; } public IN_BOQtyQuery setInventoryID(String value) { this.InventoryID = value; return this; } public String getInventoryIDStartsWith() { return InventoryIDStartsWith; } public IN_BOQtyQuery setInventoryIDStartsWith(String value) { this.InventoryIDStartsWith = value; return this; } public String getInventoryIDEndsWith() { return InventoryIDEndsWith; } public IN_BOQtyQuery setInventoryIDEndsWith(String value) { this.InventoryIDEndsWith = value; return this; } public String getInventoryIDContains() { return InventoryIDContains; } public IN_BOQtyQuery setInventoryIDContains(String value) { this.InventoryIDContains = value; return this; } public String getInventoryIDLike() { return InventoryIDLike; } public IN_BOQtyQuery setInventoryIDLike(String value) { this.InventoryIDLike = value; return this; } public ArrayList getInventoryIDBetween() { return InventoryIDBetween; } public IN_BOQtyQuery setInventoryIDBetween(ArrayList value) { this.InventoryIDBetween = value; return this; } public ArrayList getInventoryIDIn() { return InventoryIDIn; } public IN_BOQtyQuery setInventoryIDIn(ArrayList value) { this.InventoryIDIn = value; return this; } public BigDecimal getQty() { return Qty; } public IN_BOQtyQuery setQty(BigDecimal value) { this.Qty = value; return this; } public BigDecimal getQtyGreaterThanOrEqualTo() { return QtyGreaterThanOrEqualTo; } public IN_BOQtyQuery setQtyGreaterThanOrEqualTo(BigDecimal value) { this.QtyGreaterThanOrEqualTo = value; return this; } public BigDecimal getQtyGreaterThan() { return QtyGreaterThan; } public IN_BOQtyQuery setQtyGreaterThan(BigDecimal value) { this.QtyGreaterThan = value; return this; } public BigDecimal getQtyLessThan() { return QtyLessThan; } public IN_BOQtyQuery setQtyLessThan(BigDecimal value) { this.QtyLessThan = value; return this; } public BigDecimal getQtyLessThanOrEqualTo() { return QtyLessThanOrEqualTo; } public IN_BOQtyQuery setQtyLessThanOrEqualTo(BigDecimal value) { this.QtyLessThanOrEqualTo = value; return this; } public BigDecimal getQtyNotEqualTo() { return QtyNotEqualTo; } public IN_BOQtyQuery setQtyNotEqualTo(BigDecimal value) { this.QtyNotEqualTo = value; return this; } public ArrayList getQtyBetween() { return QtyBetween; } public IN_BOQtyQuery setQtyBetween(ArrayList value) { this.QtyBetween = value; return this; } public ArrayList getQtyIn() { return QtyIn; } public IN_BOQtyQuery setQtyIn(ArrayList value) { this.QtyIn = value; return this; } public BigDecimal getPrice() { return Price; } public IN_BOQtyQuery setPrice(BigDecimal value) { this.Price = value; return this; } public BigDecimal getPriceGreaterThanOrEqualTo() { return PriceGreaterThanOrEqualTo; } public IN_BOQtyQuery setPriceGreaterThanOrEqualTo(BigDecimal value) { this.PriceGreaterThanOrEqualTo = value; return this; } public BigDecimal getPriceGreaterThan() { return PriceGreaterThan; } public IN_BOQtyQuery setPriceGreaterThan(BigDecimal value) { this.PriceGreaterThan = value; return this; } public BigDecimal getPriceLessThan() { return PriceLessThan; } public IN_BOQtyQuery setPriceLessThan(BigDecimal value) { this.PriceLessThan = value; return this; } public BigDecimal getPriceLessThanOrEqualTo() { return PriceLessThanOrEqualTo; } public IN_BOQtyQuery setPriceLessThanOrEqualTo(BigDecimal value) { this.PriceLessThanOrEqualTo = value; return this; } public BigDecimal getPriceNotEqualTo() { return PriceNotEqualTo; } public IN_BOQtyQuery setPriceNotEqualTo(BigDecimal value) { this.PriceNotEqualTo = value; return this; } public ArrayList getPriceBetween() { return PriceBetween; } public IN_BOQtyQuery setPriceBetween(ArrayList value) { this.PriceBetween = value; return this; } public ArrayList getPriceIn() { return PriceIn; } public IN_BOQtyQuery setPriceIn(ArrayList value) { this.PriceIn = value; return this; } public BigDecimal getEstBOValue() { return EstBOValue; } public IN_BOQtyQuery setEstBOValue(BigDecimal value) { this.EstBOValue = value; return this; } public BigDecimal getEstBOValueGreaterThanOrEqualTo() { return EstBOValueGreaterThanOrEqualTo; } public IN_BOQtyQuery setEstBOValueGreaterThanOrEqualTo(BigDecimal value) { this.EstBOValueGreaterThanOrEqualTo = value; return this; } public BigDecimal getEstBOValueGreaterThan() { return EstBOValueGreaterThan; } public IN_BOQtyQuery setEstBOValueGreaterThan(BigDecimal value) { this.EstBOValueGreaterThan = value; return this; } public BigDecimal getEstBOValueLessThan() { return EstBOValueLessThan; } public IN_BOQtyQuery setEstBOValueLessThan(BigDecimal value) { this.EstBOValueLessThan = value; return this; } public BigDecimal getEstBOValueLessThanOrEqualTo() { return EstBOValueLessThanOrEqualTo; } public IN_BOQtyQuery setEstBOValueLessThanOrEqualTo(BigDecimal value) { this.EstBOValueLessThanOrEqualTo = value; return this; } public BigDecimal getEstBOValueNotEqualTo() { return EstBOValueNotEqualTo; } public IN_BOQtyQuery setEstBOValueNotEqualTo(BigDecimal value) { this.EstBOValueNotEqualTo = value; return this; } public ArrayList getEstBOValueBetween() { return EstBOValueBetween; } public IN_BOQtyQuery setEstBOValueBetween(ArrayList value) { this.EstBOValueBetween = value; return this; } public ArrayList getEstBOValueIn() { return EstBOValueIn; } public IN_BOQtyQuery setEstBOValueIn(ArrayList value) { this.EstBOValueIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class IN_BudgetQuery extends QueryDb implements IReturn> { public String InventoryBudgetID = null; public String InventoryBudgetIDStartsWith = null; public String InventoryBudgetIDEndsWith = null; public String InventoryBudgetIDContains = null; public String InventoryBudgetIDLike = null; public ArrayList InventoryBudgetIDBetween = null; public ArrayList InventoryBudgetIDIn = null; public String InventoryID = null; public String InventoryIDStartsWith = null; public String InventoryIDEndsWith = null; public String InventoryIDContains = null; public String InventoryIDLike = null; public ArrayList InventoryIDBetween = null; public ArrayList InventoryIDIn = null; public BigDecimal Quantity1 = null; public BigDecimal Quantity1GreaterThanOrEqualTo = null; public BigDecimal Quantity1GreaterThan = null; public BigDecimal Quantity1LessThan = null; public BigDecimal Quantity1LessThanOrEqualTo = null; public BigDecimal Quantity1NotEqualTo = null; public ArrayList Quantity1Between = null; public ArrayList Quantity1In = null; public BigDecimal Dollars1 = null; public BigDecimal Dollars1GreaterThanOrEqualTo = null; public BigDecimal Dollars1GreaterThan = null; public BigDecimal Dollars1LessThan = null; public BigDecimal Dollars1LessThanOrEqualTo = null; public BigDecimal Dollars1NotEqualTo = null; public ArrayList Dollars1Between = null; public ArrayList Dollars1In = null; public BigDecimal Quantity2 = null; public BigDecimal Quantity2GreaterThanOrEqualTo = null; public BigDecimal Quantity2GreaterThan = null; public BigDecimal Quantity2LessThan = null; public BigDecimal Quantity2LessThanOrEqualTo = null; public BigDecimal Quantity2NotEqualTo = null; public ArrayList Quantity2Between = null; public ArrayList Quantity2In = null; public BigDecimal Dollars2 = null; public BigDecimal Dollars2GreaterThanOrEqualTo = null; public BigDecimal Dollars2GreaterThan = null; public BigDecimal Dollars2LessThan = null; public BigDecimal Dollars2LessThanOrEqualTo = null; public BigDecimal Dollars2NotEqualTo = null; public ArrayList Dollars2Between = null; public ArrayList Dollars2In = null; public BigDecimal Quantity3 = null; public BigDecimal Quantity3GreaterThanOrEqualTo = null; public BigDecimal Quantity3GreaterThan = null; public BigDecimal Quantity3LessThan = null; public BigDecimal Quantity3LessThanOrEqualTo = null; public BigDecimal Quantity3NotEqualTo = null; public ArrayList Quantity3Between = null; public ArrayList Quantity3In = null; public BigDecimal Dollars3 = null; public BigDecimal Dollars3GreaterThanOrEqualTo = null; public BigDecimal Dollars3GreaterThan = null; public BigDecimal Dollars3LessThan = null; public BigDecimal Dollars3LessThanOrEqualTo = null; public BigDecimal Dollars3NotEqualTo = null; public ArrayList Dollars3Between = null; public ArrayList Dollars3In = null; public BigDecimal Quantity4 = null; public BigDecimal Quantity4GreaterThanOrEqualTo = null; public BigDecimal Quantity4GreaterThan = null; public BigDecimal Quantity4LessThan = null; public BigDecimal Quantity4LessThanOrEqualTo = null; public BigDecimal Quantity4NotEqualTo = null; public ArrayList Quantity4Between = null; public ArrayList Quantity4In = null; public BigDecimal Dollars4 = null; public BigDecimal Dollars4GreaterThanOrEqualTo = null; public BigDecimal Dollars4GreaterThan = null; public BigDecimal Dollars4LessThan = null; public BigDecimal Dollars4LessThanOrEqualTo = null; public BigDecimal Dollars4NotEqualTo = null; public ArrayList Dollars4Between = null; public ArrayList Dollars4In = null; public BigDecimal Quantity5 = null; public BigDecimal Quantity5GreaterThanOrEqualTo = null; public BigDecimal Quantity5GreaterThan = null; public BigDecimal Quantity5LessThan = null; public BigDecimal Quantity5LessThanOrEqualTo = null; public BigDecimal Quantity5NotEqualTo = null; public ArrayList Quantity5Between = null; public ArrayList Quantity5In = null; public BigDecimal Dollars5 = null; public BigDecimal Dollars5GreaterThanOrEqualTo = null; public BigDecimal Dollars5GreaterThan = null; public BigDecimal Dollars5LessThan = null; public BigDecimal Dollars5LessThanOrEqualTo = null; public BigDecimal Dollars5NotEqualTo = null; public ArrayList Dollars5Between = null; public ArrayList Dollars5In = null; public BigDecimal Quantity6 = null; public BigDecimal Quantity6GreaterThanOrEqualTo = null; public BigDecimal Quantity6GreaterThan = null; public BigDecimal Quantity6LessThan = null; public BigDecimal Quantity6LessThanOrEqualTo = null; public BigDecimal Quantity6NotEqualTo = null; public ArrayList Quantity6Between = null; public ArrayList Quantity6In = null; public BigDecimal Dollars6 = null; public BigDecimal Dollars6GreaterThanOrEqualTo = null; public BigDecimal Dollars6GreaterThan = null; public BigDecimal Dollars6LessThan = null; public BigDecimal Dollars6LessThanOrEqualTo = null; public BigDecimal Dollars6NotEqualTo = null; public ArrayList Dollars6Between = null; public ArrayList Dollars6In = null; public BigDecimal Quantity7 = null; public BigDecimal Quantity7GreaterThanOrEqualTo = null; public BigDecimal Quantity7GreaterThan = null; public BigDecimal Quantity7LessThan = null; public BigDecimal Quantity7LessThanOrEqualTo = null; public BigDecimal Quantity7NotEqualTo = null; public ArrayList Quantity7Between = null; public ArrayList Quantity7In = null; public BigDecimal Dollars7 = null; public BigDecimal Dollars7GreaterThanOrEqualTo = null; public BigDecimal Dollars7GreaterThan = null; public BigDecimal Dollars7LessThan = null; public BigDecimal Dollars7LessThanOrEqualTo = null; public BigDecimal Dollars7NotEqualTo = null; public ArrayList Dollars7Between = null; public ArrayList Dollars7In = null; public BigDecimal Quantity8 = null; public BigDecimal Quantity8GreaterThanOrEqualTo = null; public BigDecimal Quantity8GreaterThan = null; public BigDecimal Quantity8LessThan = null; public BigDecimal Quantity8LessThanOrEqualTo = null; public BigDecimal Quantity8NotEqualTo = null; public ArrayList Quantity8Between = null; public ArrayList Quantity8In = null; public BigDecimal Dollars8 = null; public BigDecimal Dollars8GreaterThanOrEqualTo = null; public BigDecimal Dollars8GreaterThan = null; public BigDecimal Dollars8LessThan = null; public BigDecimal Dollars8LessThanOrEqualTo = null; public BigDecimal Dollars8NotEqualTo = null; public ArrayList Dollars8Between = null; public ArrayList Dollars8In = null; public BigDecimal Quantity9 = null; public BigDecimal Quantity9GreaterThanOrEqualTo = null; public BigDecimal Quantity9GreaterThan = null; public BigDecimal Quantity9LessThan = null; public BigDecimal Quantity9LessThanOrEqualTo = null; public BigDecimal Quantity9NotEqualTo = null; public ArrayList Quantity9Between = null; public ArrayList Quantity9In = null; public BigDecimal Dollars9 = null; public BigDecimal Dollars9GreaterThanOrEqualTo = null; public BigDecimal Dollars9GreaterThan = null; public BigDecimal Dollars9LessThan = null; public BigDecimal Dollars9LessThanOrEqualTo = null; public BigDecimal Dollars9NotEqualTo = null; public ArrayList Dollars9Between = null; public ArrayList Dollars9In = null; public BigDecimal Quantity10 = null; public BigDecimal Quantity10GreaterThanOrEqualTo = null; public BigDecimal Quantity10GreaterThan = null; public BigDecimal Quantity10LessThan = null; public BigDecimal Quantity10LessThanOrEqualTo = null; public BigDecimal Quantity10NotEqualTo = null; public ArrayList Quantity10Between = null; public ArrayList Quantity10In = null; public BigDecimal Dollars10 = null; public BigDecimal Dollars10GreaterThanOrEqualTo = null; public BigDecimal Dollars10GreaterThan = null; public BigDecimal Dollars10LessThan = null; public BigDecimal Dollars10LessThanOrEqualTo = null; public BigDecimal Dollars10NotEqualTo = null; public ArrayList Dollars10Between = null; public ArrayList Dollars10In = null; public BigDecimal Quantity11 = null; public BigDecimal Quantity11GreaterThanOrEqualTo = null; public BigDecimal Quantity11GreaterThan = null; public BigDecimal Quantity11LessThan = null; public BigDecimal Quantity11LessThanOrEqualTo = null; public BigDecimal Quantity11NotEqualTo = null; public ArrayList Quantity11Between = null; public ArrayList Quantity11In = null; public BigDecimal Dollars11 = null; public BigDecimal Dollars11GreaterThanOrEqualTo = null; public BigDecimal Dollars11GreaterThan = null; public BigDecimal Dollars11LessThan = null; public BigDecimal Dollars11LessThanOrEqualTo = null; public BigDecimal Dollars11NotEqualTo = null; public ArrayList Dollars11Between = null; public ArrayList Dollars11In = null; public BigDecimal Quantity12 = null; public BigDecimal Quantity12GreaterThanOrEqualTo = null; public BigDecimal Quantity12GreaterThan = null; public BigDecimal Quantity12LessThan = null; public BigDecimal Quantity12LessThanOrEqualTo = null; public BigDecimal Quantity12NotEqualTo = null; public ArrayList Quantity12Between = null; public ArrayList Quantity12In = null; public BigDecimal Dollars12 = null; public BigDecimal Dollars12GreaterThanOrEqualTo = null; public BigDecimal Dollars12GreaterThan = null; public BigDecimal Dollars12LessThan = null; public BigDecimal Dollars12LessThanOrEqualTo = null; public BigDecimal Dollars12NotEqualTo = null; public ArrayList Dollars12Between = null; public ArrayList Dollars12In = null; public BigDecimal Quantity13 = null; public BigDecimal Quantity13GreaterThanOrEqualTo = null; public BigDecimal Quantity13GreaterThan = null; public BigDecimal Quantity13LessThan = null; public BigDecimal Quantity13LessThanOrEqualTo = null; public BigDecimal Quantity13NotEqualTo = null; public ArrayList Quantity13Between = null; public ArrayList Quantity13In = null; public BigDecimal Dollars13 = null; public BigDecimal Dollars13GreaterThanOrEqualTo = null; public BigDecimal Dollars13GreaterThan = null; public BigDecimal Dollars13LessThan = null; public BigDecimal Dollars13LessThanOrEqualTo = null; public BigDecimal Dollars13NotEqualTo = null; public ArrayList Dollars13Between = null; public ArrayList Dollars13In = null; public BigDecimal Quantity14 = null; public BigDecimal Quantity14GreaterThanOrEqualTo = null; public BigDecimal Quantity14GreaterThan = null; public BigDecimal Quantity14LessThan = null; public BigDecimal Quantity14LessThanOrEqualTo = null; public BigDecimal Quantity14NotEqualTo = null; public ArrayList Quantity14Between = null; public ArrayList Quantity14In = null; public BigDecimal Dollars14 = null; public BigDecimal Dollars14GreaterThanOrEqualTo = null; public BigDecimal Dollars14GreaterThan = null; public BigDecimal Dollars14LessThan = null; public BigDecimal Dollars14LessThanOrEqualTo = null; public BigDecimal Dollars14NotEqualTo = null; public ArrayList Dollars14Between = null; public ArrayList Dollars14In = null; public BigDecimal Quantity15 = null; public BigDecimal Quantity15GreaterThanOrEqualTo = null; public BigDecimal Quantity15GreaterThan = null; public BigDecimal Quantity15LessThan = null; public BigDecimal Quantity15LessThanOrEqualTo = null; public BigDecimal Quantity15NotEqualTo = null; public ArrayList Quantity15Between = null; public ArrayList Quantity15In = null; public BigDecimal Dollars15 = null; public BigDecimal Dollars15GreaterThanOrEqualTo = null; public BigDecimal Dollars15GreaterThan = null; public BigDecimal Dollars15LessThan = null; public BigDecimal Dollars15LessThanOrEqualTo = null; public BigDecimal Dollars15NotEqualTo = null; public ArrayList Dollars15Between = null; public ArrayList Dollars15In = null; public BigDecimal Quantity16 = null; public BigDecimal Quantity16GreaterThanOrEqualTo = null; public BigDecimal Quantity16GreaterThan = null; public BigDecimal Quantity16LessThan = null; public BigDecimal Quantity16LessThanOrEqualTo = null; public BigDecimal Quantity16NotEqualTo = null; public ArrayList Quantity16Between = null; public ArrayList Quantity16In = null; public BigDecimal Dollars16 = null; public BigDecimal Dollars16GreaterThanOrEqualTo = null; public BigDecimal Dollars16GreaterThan = null; public BigDecimal Dollars16LessThan = null; public BigDecimal Dollars16LessThanOrEqualTo = null; public BigDecimal Dollars16NotEqualTo = null; public ArrayList Dollars16Between = null; public ArrayList Dollars16In = null; public BigDecimal Quantity17 = null; public BigDecimal Quantity17GreaterThanOrEqualTo = null; public BigDecimal Quantity17GreaterThan = null; public BigDecimal Quantity17LessThan = null; public BigDecimal Quantity17LessThanOrEqualTo = null; public BigDecimal Quantity17NotEqualTo = null; public ArrayList Quantity17Between = null; public ArrayList Quantity17In = null; public BigDecimal Dollars17 = null; public BigDecimal Dollars17GreaterThanOrEqualTo = null; public BigDecimal Dollars17GreaterThan = null; public BigDecimal Dollars17LessThan = null; public BigDecimal Dollars17LessThanOrEqualTo = null; public BigDecimal Dollars17NotEqualTo = null; public ArrayList Dollars17Between = null; public ArrayList Dollars17In = null; public BigDecimal Quantity18 = null; public BigDecimal Quantity18GreaterThanOrEqualTo = null; public BigDecimal Quantity18GreaterThan = null; public BigDecimal Quantity18LessThan = null; public BigDecimal Quantity18LessThanOrEqualTo = null; public BigDecimal Quantity18NotEqualTo = null; public ArrayList Quantity18Between = null; public ArrayList Quantity18In = null; public BigDecimal Dollars18 = null; public BigDecimal Dollars18GreaterThanOrEqualTo = null; public BigDecimal Dollars18GreaterThan = null; public BigDecimal Dollars18LessThan = null; public BigDecimal Dollars18LessThanOrEqualTo = null; public BigDecimal Dollars18NotEqualTo = null; public ArrayList Dollars18Between = null; public ArrayList Dollars18In = null; public BigDecimal Quantity19 = null; public BigDecimal Quantity19GreaterThanOrEqualTo = null; public BigDecimal Quantity19GreaterThan = null; public BigDecimal Quantity19LessThan = null; public BigDecimal Quantity19LessThanOrEqualTo = null; public BigDecimal Quantity19NotEqualTo = null; public ArrayList Quantity19Between = null; public ArrayList Quantity19In = null; public BigDecimal Dollars19 = null; public BigDecimal Dollars19GreaterThanOrEqualTo = null; public BigDecimal Dollars19GreaterThan = null; public BigDecimal Dollars19LessThan = null; public BigDecimal Dollars19LessThanOrEqualTo = null; public BigDecimal Dollars19NotEqualTo = null; public ArrayList Dollars19Between = null; public ArrayList Dollars19In = null; public BigDecimal Quantity20 = null; public BigDecimal Quantity20GreaterThanOrEqualTo = null; public BigDecimal Quantity20GreaterThan = null; public BigDecimal Quantity20LessThan = null; public BigDecimal Quantity20LessThanOrEqualTo = null; public BigDecimal Quantity20NotEqualTo = null; public ArrayList Quantity20Between = null; public ArrayList Quantity20In = null; public BigDecimal Dollars20 = null; public BigDecimal Dollars20GreaterThanOrEqualTo = null; public BigDecimal Dollars20GreaterThan = null; public BigDecimal Dollars20LessThan = null; public BigDecimal Dollars20LessThanOrEqualTo = null; public BigDecimal Dollars20NotEqualTo = null; public ArrayList Dollars20Between = null; public ArrayList Dollars20In = null; public BigDecimal Quantity21 = null; public BigDecimal Quantity21GreaterThanOrEqualTo = null; public BigDecimal Quantity21GreaterThan = null; public BigDecimal Quantity21LessThan = null; public BigDecimal Quantity21LessThanOrEqualTo = null; public BigDecimal Quantity21NotEqualTo = null; public ArrayList Quantity21Between = null; public ArrayList Quantity21In = null; public BigDecimal Dollars21 = null; public BigDecimal Dollars21GreaterThanOrEqualTo = null; public BigDecimal Dollars21GreaterThan = null; public BigDecimal Dollars21LessThan = null; public BigDecimal Dollars21LessThanOrEqualTo = null; public BigDecimal Dollars21NotEqualTo = null; public ArrayList Dollars21Between = null; public ArrayList Dollars21In = null; public BigDecimal Quantity22 = null; public BigDecimal Quantity22GreaterThanOrEqualTo = null; public BigDecimal Quantity22GreaterThan = null; public BigDecimal Quantity22LessThan = null; public BigDecimal Quantity22LessThanOrEqualTo = null; public BigDecimal Quantity22NotEqualTo = null; public ArrayList Quantity22Between = null; public ArrayList Quantity22In = null; public BigDecimal Dollars22 = null; public BigDecimal Dollars22GreaterThanOrEqualTo = null; public BigDecimal Dollars22GreaterThan = null; public BigDecimal Dollars22LessThan = null; public BigDecimal Dollars22LessThanOrEqualTo = null; public BigDecimal Dollars22NotEqualTo = null; public ArrayList Dollars22Between = null; public ArrayList Dollars22In = null; public BigDecimal Quantity23 = null; public BigDecimal Quantity23GreaterThanOrEqualTo = null; public BigDecimal Quantity23GreaterThan = null; public BigDecimal Quantity23LessThan = null; public BigDecimal Quantity23LessThanOrEqualTo = null; public BigDecimal Quantity23NotEqualTo = null; public ArrayList Quantity23Between = null; public ArrayList Quantity23In = null; public BigDecimal Dollars23 = null; public BigDecimal Dollars23GreaterThanOrEqualTo = null; public BigDecimal Dollars23GreaterThan = null; public BigDecimal Dollars23LessThan = null; public BigDecimal Dollars23LessThanOrEqualTo = null; public BigDecimal Dollars23NotEqualTo = null; public ArrayList Dollars23Between = null; public ArrayList Dollars23In = null; public BigDecimal Quantity24 = null; public BigDecimal Quantity24GreaterThanOrEqualTo = null; public BigDecimal Quantity24GreaterThan = null; public BigDecimal Quantity24LessThan = null; public BigDecimal Quantity24LessThanOrEqualTo = null; public BigDecimal Quantity24NotEqualTo = null; public ArrayList Quantity24Between = null; public ArrayList Quantity24In = null; public BigDecimal Dollars24 = null; public BigDecimal Dollars24GreaterThanOrEqualTo = null; public BigDecimal Dollars24GreaterThan = null; public BigDecimal Dollars24LessThan = null; public BigDecimal Dollars24LessThanOrEqualTo = null; public BigDecimal Dollars24NotEqualTo = null; public ArrayList Dollars24Between = null; public ArrayList Dollars24In = null; public String IN_LogicalID = null; public String IN_LogicalIDStartsWith = null; public String IN_LogicalIDEndsWith = null; public String IN_LogicalIDContains = null; public String IN_LogicalIDLike = null; public ArrayList IN_LogicalIDBetween = null; public ArrayList IN_LogicalIDIn = null; public String getInventoryBudgetID() { return InventoryBudgetID; } public IN_BudgetQuery setInventoryBudgetID(String value) { this.InventoryBudgetID = value; return this; } public String getInventoryBudgetIDStartsWith() { return InventoryBudgetIDStartsWith; } public IN_BudgetQuery setInventoryBudgetIDStartsWith(String value) { this.InventoryBudgetIDStartsWith = value; return this; } public String getInventoryBudgetIDEndsWith() { return InventoryBudgetIDEndsWith; } public IN_BudgetQuery setInventoryBudgetIDEndsWith(String value) { this.InventoryBudgetIDEndsWith = value; return this; } public String getInventoryBudgetIDContains() { return InventoryBudgetIDContains; } public IN_BudgetQuery setInventoryBudgetIDContains(String value) { this.InventoryBudgetIDContains = value; return this; } public String getInventoryBudgetIDLike() { return InventoryBudgetIDLike; } public IN_BudgetQuery setInventoryBudgetIDLike(String value) { this.InventoryBudgetIDLike = value; return this; } public ArrayList getInventoryBudgetIDBetween() { return InventoryBudgetIDBetween; } public IN_BudgetQuery setInventoryBudgetIDBetween(ArrayList value) { this.InventoryBudgetIDBetween = value; return this; } public ArrayList getInventoryBudgetIDIn() { return InventoryBudgetIDIn; } public IN_BudgetQuery setInventoryBudgetIDIn(ArrayList value) { this.InventoryBudgetIDIn = value; return this; } public String getInventoryID() { return InventoryID; } public IN_BudgetQuery setInventoryID(String value) { this.InventoryID = value; return this; } public String getInventoryIDStartsWith() { return InventoryIDStartsWith; } public IN_BudgetQuery setInventoryIDStartsWith(String value) { this.InventoryIDStartsWith = value; return this; } public String getInventoryIDEndsWith() { return InventoryIDEndsWith; } public IN_BudgetQuery setInventoryIDEndsWith(String value) { this.InventoryIDEndsWith = value; return this; } public String getInventoryIDContains() { return InventoryIDContains; } public IN_BudgetQuery setInventoryIDContains(String value) { this.InventoryIDContains = value; return this; } public String getInventoryIDLike() { return InventoryIDLike; } public IN_BudgetQuery setInventoryIDLike(String value) { this.InventoryIDLike = value; return this; } public ArrayList getInventoryIDBetween() { return InventoryIDBetween; } public IN_BudgetQuery setInventoryIDBetween(ArrayList value) { this.InventoryIDBetween = value; return this; } public ArrayList getInventoryIDIn() { return InventoryIDIn; } public IN_BudgetQuery setInventoryIDIn(ArrayList value) { this.InventoryIDIn = value; return this; } public BigDecimal getQuantity1() { return Quantity1; } public IN_BudgetQuery setQuantity1(BigDecimal value) { this.Quantity1 = value; return this; } public BigDecimal getQuantity1GreaterThanOrEqualTo() { return Quantity1GreaterThanOrEqualTo; } public IN_BudgetQuery setQuantity1GreaterThanOrEqualTo(BigDecimal value) { this.Quantity1GreaterThanOrEqualTo = value; return this; } public BigDecimal getQuantity1GreaterThan() { return Quantity1GreaterThan; } public IN_BudgetQuery setQuantity1GreaterThan(BigDecimal value) { this.Quantity1GreaterThan = value; return this; } public BigDecimal getQuantity1LessThan() { return Quantity1LessThan; } public IN_BudgetQuery setQuantity1LessThan(BigDecimal value) { this.Quantity1LessThan = value; return this; } public BigDecimal getQuantity1LessThanOrEqualTo() { return Quantity1LessThanOrEqualTo; } public IN_BudgetQuery setQuantity1LessThanOrEqualTo(BigDecimal value) { this.Quantity1LessThanOrEqualTo = value; return this; } public BigDecimal getQuantity1NotEqualTo() { return Quantity1NotEqualTo; } public IN_BudgetQuery setQuantity1NotEqualTo(BigDecimal value) { this.Quantity1NotEqualTo = value; return this; } public ArrayList getQuantity1Between() { return Quantity1Between; } public IN_BudgetQuery setQuantity1Between(ArrayList value) { this.Quantity1Between = value; return this; } public ArrayList getQuantity1In() { return Quantity1In; } public IN_BudgetQuery setQuantity1In(ArrayList value) { this.Quantity1In = value; return this; } public BigDecimal getDollars1() { return Dollars1; } public IN_BudgetQuery setDollars1(BigDecimal value) { this.Dollars1 = value; return this; } public BigDecimal getDollars1GreaterThanOrEqualTo() { return Dollars1GreaterThanOrEqualTo; } public IN_BudgetQuery setDollars1GreaterThanOrEqualTo(BigDecimal value) { this.Dollars1GreaterThanOrEqualTo = value; return this; } public BigDecimal getDollars1GreaterThan() { return Dollars1GreaterThan; } public IN_BudgetQuery setDollars1GreaterThan(BigDecimal value) { this.Dollars1GreaterThan = value; return this; } public BigDecimal getDollars1LessThan() { return Dollars1LessThan; } public IN_BudgetQuery setDollars1LessThan(BigDecimal value) { this.Dollars1LessThan = value; return this; } public BigDecimal getDollars1LessThanOrEqualTo() { return Dollars1LessThanOrEqualTo; } public IN_BudgetQuery setDollars1LessThanOrEqualTo(BigDecimal value) { this.Dollars1LessThanOrEqualTo = value; return this; } public BigDecimal getDollars1NotEqualTo() { return Dollars1NotEqualTo; } public IN_BudgetQuery setDollars1NotEqualTo(BigDecimal value) { this.Dollars1NotEqualTo = value; return this; } public ArrayList getDollars1Between() { return Dollars1Between; } public IN_BudgetQuery setDollars1Between(ArrayList value) { this.Dollars1Between = value; return this; } public ArrayList getDollars1In() { return Dollars1In; } public IN_BudgetQuery setDollars1In(ArrayList value) { this.Dollars1In = value; return this; } public BigDecimal getQuantity2() { return Quantity2; } public IN_BudgetQuery setQuantity2(BigDecimal value) { this.Quantity2 = value; return this; } public BigDecimal getQuantity2GreaterThanOrEqualTo() { return Quantity2GreaterThanOrEqualTo; } public IN_BudgetQuery setQuantity2GreaterThanOrEqualTo(BigDecimal value) { this.Quantity2GreaterThanOrEqualTo = value; return this; } public BigDecimal getQuantity2GreaterThan() { return Quantity2GreaterThan; } public IN_BudgetQuery setQuantity2GreaterThan(BigDecimal value) { this.Quantity2GreaterThan = value; return this; } public BigDecimal getQuantity2LessThan() { return Quantity2LessThan; } public IN_BudgetQuery setQuantity2LessThan(BigDecimal value) { this.Quantity2LessThan = value; return this; } public BigDecimal getQuantity2LessThanOrEqualTo() { return Quantity2LessThanOrEqualTo; } public IN_BudgetQuery setQuantity2LessThanOrEqualTo(BigDecimal value) { this.Quantity2LessThanOrEqualTo = value; return this; } public BigDecimal getQuantity2NotEqualTo() { return Quantity2NotEqualTo; } public IN_BudgetQuery setQuantity2NotEqualTo(BigDecimal value) { this.Quantity2NotEqualTo = value; return this; } public ArrayList getQuantity2Between() { return Quantity2Between; } public IN_BudgetQuery setQuantity2Between(ArrayList value) { this.Quantity2Between = value; return this; } public ArrayList getQuantity2In() { return Quantity2In; } public IN_BudgetQuery setQuantity2In(ArrayList value) { this.Quantity2In = value; return this; } public BigDecimal getDollars2() { return Dollars2; } public IN_BudgetQuery setDollars2(BigDecimal value) { this.Dollars2 = value; return this; } public BigDecimal getDollars2GreaterThanOrEqualTo() { return Dollars2GreaterThanOrEqualTo; } public IN_BudgetQuery setDollars2GreaterThanOrEqualTo(BigDecimal value) { this.Dollars2GreaterThanOrEqualTo = value; return this; } public BigDecimal getDollars2GreaterThan() { return Dollars2GreaterThan; } public IN_BudgetQuery setDollars2GreaterThan(BigDecimal value) { this.Dollars2GreaterThan = value; return this; } public BigDecimal getDollars2LessThan() { return Dollars2LessThan; } public IN_BudgetQuery setDollars2LessThan(BigDecimal value) { this.Dollars2LessThan = value; return this; } public BigDecimal getDollars2LessThanOrEqualTo() { return Dollars2LessThanOrEqualTo; } public IN_BudgetQuery setDollars2LessThanOrEqualTo(BigDecimal value) { this.Dollars2LessThanOrEqualTo = value; return this; } public BigDecimal getDollars2NotEqualTo() { return Dollars2NotEqualTo; } public IN_BudgetQuery setDollars2NotEqualTo(BigDecimal value) { this.Dollars2NotEqualTo = value; return this; } public ArrayList getDollars2Between() { return Dollars2Between; } public IN_BudgetQuery setDollars2Between(ArrayList value) { this.Dollars2Between = value; return this; } public ArrayList getDollars2In() { return Dollars2In; } public IN_BudgetQuery setDollars2In(ArrayList value) { this.Dollars2In = value; return this; } public BigDecimal getQuantity3() { return Quantity3; } public IN_BudgetQuery setQuantity3(BigDecimal value) { this.Quantity3 = value; return this; } public BigDecimal getQuantity3GreaterThanOrEqualTo() { return Quantity3GreaterThanOrEqualTo; } public IN_BudgetQuery setQuantity3GreaterThanOrEqualTo(BigDecimal value) { this.Quantity3GreaterThanOrEqualTo = value; return this; } public BigDecimal getQuantity3GreaterThan() { return Quantity3GreaterThan; } public IN_BudgetQuery setQuantity3GreaterThan(BigDecimal value) { this.Quantity3GreaterThan = value; return this; } public BigDecimal getQuantity3LessThan() { return Quantity3LessThan; } public IN_BudgetQuery setQuantity3LessThan(BigDecimal value) { this.Quantity3LessThan = value; return this; } public BigDecimal getQuantity3LessThanOrEqualTo() { return Quantity3LessThanOrEqualTo; } public IN_BudgetQuery setQuantity3LessThanOrEqualTo(BigDecimal value) { this.Quantity3LessThanOrEqualTo = value; return this; } public BigDecimal getQuantity3NotEqualTo() { return Quantity3NotEqualTo; } public IN_BudgetQuery setQuantity3NotEqualTo(BigDecimal value) { this.Quantity3NotEqualTo = value; return this; } public ArrayList getQuantity3Between() { return Quantity3Between; } public IN_BudgetQuery setQuantity3Between(ArrayList value) { this.Quantity3Between = value; return this; } public ArrayList getQuantity3In() { return Quantity3In; } public IN_BudgetQuery setQuantity3In(ArrayList value) { this.Quantity3In = value; return this; } public BigDecimal getDollars3() { return Dollars3; } public IN_BudgetQuery setDollars3(BigDecimal value) { this.Dollars3 = value; return this; } public BigDecimal getDollars3GreaterThanOrEqualTo() { return Dollars3GreaterThanOrEqualTo; } public IN_BudgetQuery setDollars3GreaterThanOrEqualTo(BigDecimal value) { this.Dollars3GreaterThanOrEqualTo = value; return this; } public BigDecimal getDollars3GreaterThan() { return Dollars3GreaterThan; } public IN_BudgetQuery setDollars3GreaterThan(BigDecimal value) { this.Dollars3GreaterThan = value; return this; } public BigDecimal getDollars3LessThan() { return Dollars3LessThan; } public IN_BudgetQuery setDollars3LessThan(BigDecimal value) { this.Dollars3LessThan = value; return this; } public BigDecimal getDollars3LessThanOrEqualTo() { return Dollars3LessThanOrEqualTo; } public IN_BudgetQuery setDollars3LessThanOrEqualTo(BigDecimal value) { this.Dollars3LessThanOrEqualTo = value; return this; } public BigDecimal getDollars3NotEqualTo() { return Dollars3NotEqualTo; } public IN_BudgetQuery setDollars3NotEqualTo(BigDecimal value) { this.Dollars3NotEqualTo = value; return this; } public ArrayList getDollars3Between() { return Dollars3Between; } public IN_BudgetQuery setDollars3Between(ArrayList value) { this.Dollars3Between = value; return this; } public ArrayList getDollars3In() { return Dollars3In; } public IN_BudgetQuery setDollars3In(ArrayList value) { this.Dollars3In = value; return this; } public BigDecimal getQuantity4() { return Quantity4; } public IN_BudgetQuery setQuantity4(BigDecimal value) { this.Quantity4 = value; return this; } public BigDecimal getQuantity4GreaterThanOrEqualTo() { return Quantity4GreaterThanOrEqualTo; } public IN_BudgetQuery setQuantity4GreaterThanOrEqualTo(BigDecimal value) { this.Quantity4GreaterThanOrEqualTo = value; return this; } public BigDecimal getQuantity4GreaterThan() { return Quantity4GreaterThan; } public IN_BudgetQuery setQuantity4GreaterThan(BigDecimal value) { this.Quantity4GreaterThan = value; return this; } public BigDecimal getQuantity4LessThan() { return Quantity4LessThan; } public IN_BudgetQuery setQuantity4LessThan(BigDecimal value) { this.Quantity4LessThan = value; return this; } public BigDecimal getQuantity4LessThanOrEqualTo() { return Quantity4LessThanOrEqualTo; } public IN_BudgetQuery setQuantity4LessThanOrEqualTo(BigDecimal value) { this.Quantity4LessThanOrEqualTo = value; return this; } public BigDecimal getQuantity4NotEqualTo() { return Quantity4NotEqualTo; } public IN_BudgetQuery setQuantity4NotEqualTo(BigDecimal value) { this.Quantity4NotEqualTo = value; return this; } public ArrayList getQuantity4Between() { return Quantity4Between; } public IN_BudgetQuery setQuantity4Between(ArrayList value) { this.Quantity4Between = value; return this; } public ArrayList getQuantity4In() { return Quantity4In; } public IN_BudgetQuery setQuantity4In(ArrayList value) { this.Quantity4In = value; return this; } public BigDecimal getDollars4() { return Dollars4; } public IN_BudgetQuery setDollars4(BigDecimal value) { this.Dollars4 = value; return this; } public BigDecimal getDollars4GreaterThanOrEqualTo() { return Dollars4GreaterThanOrEqualTo; } public IN_BudgetQuery setDollars4GreaterThanOrEqualTo(BigDecimal value) { this.Dollars4GreaterThanOrEqualTo = value; return this; } public BigDecimal getDollars4GreaterThan() { return Dollars4GreaterThan; } public IN_BudgetQuery setDollars4GreaterThan(BigDecimal value) { this.Dollars4GreaterThan = value; return this; } public BigDecimal getDollars4LessThan() { return Dollars4LessThan; } public IN_BudgetQuery setDollars4LessThan(BigDecimal value) { this.Dollars4LessThan = value; return this; } public BigDecimal getDollars4LessThanOrEqualTo() { return Dollars4LessThanOrEqualTo; } public IN_BudgetQuery setDollars4LessThanOrEqualTo(BigDecimal value) { this.Dollars4LessThanOrEqualTo = value; return this; } public BigDecimal getDollars4NotEqualTo() { return Dollars4NotEqualTo; } public IN_BudgetQuery setDollars4NotEqualTo(BigDecimal value) { this.Dollars4NotEqualTo = value; return this; } public ArrayList getDollars4Between() { return Dollars4Between; } public IN_BudgetQuery setDollars4Between(ArrayList value) { this.Dollars4Between = value; return this; } public ArrayList getDollars4In() { return Dollars4In; } public IN_BudgetQuery setDollars4In(ArrayList value) { this.Dollars4In = value; return this; } public BigDecimal getQuantity5() { return Quantity5; } public IN_BudgetQuery setQuantity5(BigDecimal value) { this.Quantity5 = value; return this; } public BigDecimal getQuantity5GreaterThanOrEqualTo() { return Quantity5GreaterThanOrEqualTo; } public IN_BudgetQuery setQuantity5GreaterThanOrEqualTo(BigDecimal value) { this.Quantity5GreaterThanOrEqualTo = value; return this; } public BigDecimal getQuantity5GreaterThan() { return Quantity5GreaterThan; } public IN_BudgetQuery setQuantity5GreaterThan(BigDecimal value) { this.Quantity5GreaterThan = value; return this; } public BigDecimal getQuantity5LessThan() { return Quantity5LessThan; } public IN_BudgetQuery setQuantity5LessThan(BigDecimal value) { this.Quantity5LessThan = value; return this; } public BigDecimal getQuantity5LessThanOrEqualTo() { return Quantity5LessThanOrEqualTo; } public IN_BudgetQuery setQuantity5LessThanOrEqualTo(BigDecimal value) { this.Quantity5LessThanOrEqualTo = value; return this; } public BigDecimal getQuantity5NotEqualTo() { return Quantity5NotEqualTo; } public IN_BudgetQuery setQuantity5NotEqualTo(BigDecimal value) { this.Quantity5NotEqualTo = value; return this; } public ArrayList getQuantity5Between() { return Quantity5Between; } public IN_BudgetQuery setQuantity5Between(ArrayList value) { this.Quantity5Between = value; return this; } public ArrayList getQuantity5In() { return Quantity5In; } public IN_BudgetQuery setQuantity5In(ArrayList value) { this.Quantity5In = value; return this; } public BigDecimal getDollars5() { return Dollars5; } public IN_BudgetQuery setDollars5(BigDecimal value) { this.Dollars5 = value; return this; } public BigDecimal getDollars5GreaterThanOrEqualTo() { return Dollars5GreaterThanOrEqualTo; } public IN_BudgetQuery setDollars5GreaterThanOrEqualTo(BigDecimal value) { this.Dollars5GreaterThanOrEqualTo = value; return this; } public BigDecimal getDollars5GreaterThan() { return Dollars5GreaterThan; } public IN_BudgetQuery setDollars5GreaterThan(BigDecimal value) { this.Dollars5GreaterThan = value; return this; } public BigDecimal getDollars5LessThan() { return Dollars5LessThan; } public IN_BudgetQuery setDollars5LessThan(BigDecimal value) { this.Dollars5LessThan = value; return this; } public BigDecimal getDollars5LessThanOrEqualTo() { return Dollars5LessThanOrEqualTo; } public IN_BudgetQuery setDollars5LessThanOrEqualTo(BigDecimal value) { this.Dollars5LessThanOrEqualTo = value; return this; } public BigDecimal getDollars5NotEqualTo() { return Dollars5NotEqualTo; } public IN_BudgetQuery setDollars5NotEqualTo(BigDecimal value) { this.Dollars5NotEqualTo = value; return this; } public ArrayList getDollars5Between() { return Dollars5Between; } public IN_BudgetQuery setDollars5Between(ArrayList value) { this.Dollars5Between = value; return this; } public ArrayList getDollars5In() { return Dollars5In; } public IN_BudgetQuery setDollars5In(ArrayList value) { this.Dollars5In = value; return this; } public BigDecimal getQuantity6() { return Quantity6; } public IN_BudgetQuery setQuantity6(BigDecimal value) { this.Quantity6 = value; return this; } public BigDecimal getQuantity6GreaterThanOrEqualTo() { return Quantity6GreaterThanOrEqualTo; } public IN_BudgetQuery setQuantity6GreaterThanOrEqualTo(BigDecimal value) { this.Quantity6GreaterThanOrEqualTo = value; return this; } public BigDecimal getQuantity6GreaterThan() { return Quantity6GreaterThan; } public IN_BudgetQuery setQuantity6GreaterThan(BigDecimal value) { this.Quantity6GreaterThan = value; return this; } public BigDecimal getQuantity6LessThan() { return Quantity6LessThan; } public IN_BudgetQuery setQuantity6LessThan(BigDecimal value) { this.Quantity6LessThan = value; return this; } public BigDecimal getQuantity6LessThanOrEqualTo() { return Quantity6LessThanOrEqualTo; } public IN_BudgetQuery setQuantity6LessThanOrEqualTo(BigDecimal value) { this.Quantity6LessThanOrEqualTo = value; return this; } public BigDecimal getQuantity6NotEqualTo() { return Quantity6NotEqualTo; } public IN_BudgetQuery setQuantity6NotEqualTo(BigDecimal value) { this.Quantity6NotEqualTo = value; return this; } public ArrayList getQuantity6Between() { return Quantity6Between; } public IN_BudgetQuery setQuantity6Between(ArrayList value) { this.Quantity6Between = value; return this; } public ArrayList getQuantity6In() { return Quantity6In; } public IN_BudgetQuery setQuantity6In(ArrayList value) { this.Quantity6In = value; return this; } public BigDecimal getDollars6() { return Dollars6; } public IN_BudgetQuery setDollars6(BigDecimal value) { this.Dollars6 = value; return this; } public BigDecimal getDollars6GreaterThanOrEqualTo() { return Dollars6GreaterThanOrEqualTo; } public IN_BudgetQuery setDollars6GreaterThanOrEqualTo(BigDecimal value) { this.Dollars6GreaterThanOrEqualTo = value; return this; } public BigDecimal getDollars6GreaterThan() { return Dollars6GreaterThan; } public IN_BudgetQuery setDollars6GreaterThan(BigDecimal value) { this.Dollars6GreaterThan = value; return this; } public BigDecimal getDollars6LessThan() { return Dollars6LessThan; } public IN_BudgetQuery setDollars6LessThan(BigDecimal value) { this.Dollars6LessThan = value; return this; } public BigDecimal getDollars6LessThanOrEqualTo() { return Dollars6LessThanOrEqualTo; } public IN_BudgetQuery setDollars6LessThanOrEqualTo(BigDecimal value) { this.Dollars6LessThanOrEqualTo = value; return this; } public BigDecimal getDollars6NotEqualTo() { return Dollars6NotEqualTo; } public IN_BudgetQuery setDollars6NotEqualTo(BigDecimal value) { this.Dollars6NotEqualTo = value; return this; } public ArrayList getDollars6Between() { return Dollars6Between; } public IN_BudgetQuery setDollars6Between(ArrayList value) { this.Dollars6Between = value; return this; } public ArrayList getDollars6In() { return Dollars6In; } public IN_BudgetQuery setDollars6In(ArrayList value) { this.Dollars6In = value; return this; } public BigDecimal getQuantity7() { return Quantity7; } public IN_BudgetQuery setQuantity7(BigDecimal value) { this.Quantity7 = value; return this; } public BigDecimal getQuantity7GreaterThanOrEqualTo() { return Quantity7GreaterThanOrEqualTo; } public IN_BudgetQuery setQuantity7GreaterThanOrEqualTo(BigDecimal value) { this.Quantity7GreaterThanOrEqualTo = value; return this; } public BigDecimal getQuantity7GreaterThan() { return Quantity7GreaterThan; } public IN_BudgetQuery setQuantity7GreaterThan(BigDecimal value) { this.Quantity7GreaterThan = value; return this; } public BigDecimal getQuantity7LessThan() { return Quantity7LessThan; } public IN_BudgetQuery setQuantity7LessThan(BigDecimal value) { this.Quantity7LessThan = value; return this; } public BigDecimal getQuantity7LessThanOrEqualTo() { return Quantity7LessThanOrEqualTo; } public IN_BudgetQuery setQuantity7LessThanOrEqualTo(BigDecimal value) { this.Quantity7LessThanOrEqualTo = value; return this; } public BigDecimal getQuantity7NotEqualTo() { return Quantity7NotEqualTo; } public IN_BudgetQuery setQuantity7NotEqualTo(BigDecimal value) { this.Quantity7NotEqualTo = value; return this; } public ArrayList getQuantity7Between() { return Quantity7Between; } public IN_BudgetQuery setQuantity7Between(ArrayList value) { this.Quantity7Between = value; return this; } public ArrayList getQuantity7In() { return Quantity7In; } public IN_BudgetQuery setQuantity7In(ArrayList value) { this.Quantity7In = value; return this; } public BigDecimal getDollars7() { return Dollars7; } public IN_BudgetQuery setDollars7(BigDecimal value) { this.Dollars7 = value; return this; } public BigDecimal getDollars7GreaterThanOrEqualTo() { return Dollars7GreaterThanOrEqualTo; } public IN_BudgetQuery setDollars7GreaterThanOrEqualTo(BigDecimal value) { this.Dollars7GreaterThanOrEqualTo = value; return this; } public BigDecimal getDollars7GreaterThan() { return Dollars7GreaterThan; } public IN_BudgetQuery setDollars7GreaterThan(BigDecimal value) { this.Dollars7GreaterThan = value; return this; } public BigDecimal getDollars7LessThan() { return Dollars7LessThan; } public IN_BudgetQuery setDollars7LessThan(BigDecimal value) { this.Dollars7LessThan = value; return this; } public BigDecimal getDollars7LessThanOrEqualTo() { return Dollars7LessThanOrEqualTo; } public IN_BudgetQuery setDollars7LessThanOrEqualTo(BigDecimal value) { this.Dollars7LessThanOrEqualTo = value; return this; } public BigDecimal getDollars7NotEqualTo() { return Dollars7NotEqualTo; } public IN_BudgetQuery setDollars7NotEqualTo(BigDecimal value) { this.Dollars7NotEqualTo = value; return this; } public ArrayList getDollars7Between() { return Dollars7Between; } public IN_BudgetQuery setDollars7Between(ArrayList value) { this.Dollars7Between = value; return this; } public ArrayList getDollars7In() { return Dollars7In; } public IN_BudgetQuery setDollars7In(ArrayList value) { this.Dollars7In = value; return this; } public BigDecimal getQuantity8() { return Quantity8; } public IN_BudgetQuery setQuantity8(BigDecimal value) { this.Quantity8 = value; return this; } public BigDecimal getQuantity8GreaterThanOrEqualTo() { return Quantity8GreaterThanOrEqualTo; } public IN_BudgetQuery setQuantity8GreaterThanOrEqualTo(BigDecimal value) { this.Quantity8GreaterThanOrEqualTo = value; return this; } public BigDecimal getQuantity8GreaterThan() { return Quantity8GreaterThan; } public IN_BudgetQuery setQuantity8GreaterThan(BigDecimal value) { this.Quantity8GreaterThan = value; return this; } public BigDecimal getQuantity8LessThan() { return Quantity8LessThan; } public IN_BudgetQuery setQuantity8LessThan(BigDecimal value) { this.Quantity8LessThan = value; return this; } public BigDecimal getQuantity8LessThanOrEqualTo() { return Quantity8LessThanOrEqualTo; } public IN_BudgetQuery setQuantity8LessThanOrEqualTo(BigDecimal value) { this.Quantity8LessThanOrEqualTo = value; return this; } public BigDecimal getQuantity8NotEqualTo() { return Quantity8NotEqualTo; } public IN_BudgetQuery setQuantity8NotEqualTo(BigDecimal value) { this.Quantity8NotEqualTo = value; return this; } public ArrayList getQuantity8Between() { return Quantity8Between; } public IN_BudgetQuery setQuantity8Between(ArrayList value) { this.Quantity8Between = value; return this; } public ArrayList getQuantity8In() { return Quantity8In; } public IN_BudgetQuery setQuantity8In(ArrayList value) { this.Quantity8In = value; return this; } public BigDecimal getDollars8() { return Dollars8; } public IN_BudgetQuery setDollars8(BigDecimal value) { this.Dollars8 = value; return this; } public BigDecimal getDollars8GreaterThanOrEqualTo() { return Dollars8GreaterThanOrEqualTo; } public IN_BudgetQuery setDollars8GreaterThanOrEqualTo(BigDecimal value) { this.Dollars8GreaterThanOrEqualTo = value; return this; } public BigDecimal getDollars8GreaterThan() { return Dollars8GreaterThan; } public IN_BudgetQuery setDollars8GreaterThan(BigDecimal value) { this.Dollars8GreaterThan = value; return this; } public BigDecimal getDollars8LessThan() { return Dollars8LessThan; } public IN_BudgetQuery setDollars8LessThan(BigDecimal value) { this.Dollars8LessThan = value; return this; } public BigDecimal getDollars8LessThanOrEqualTo() { return Dollars8LessThanOrEqualTo; } public IN_BudgetQuery setDollars8LessThanOrEqualTo(BigDecimal value) { this.Dollars8LessThanOrEqualTo = value; return this; } public BigDecimal getDollars8NotEqualTo() { return Dollars8NotEqualTo; } public IN_BudgetQuery setDollars8NotEqualTo(BigDecimal value) { this.Dollars8NotEqualTo = value; return this; } public ArrayList getDollars8Between() { return Dollars8Between; } public IN_BudgetQuery setDollars8Between(ArrayList value) { this.Dollars8Between = value; return this; } public ArrayList getDollars8In() { return Dollars8In; } public IN_BudgetQuery setDollars8In(ArrayList value) { this.Dollars8In = value; return this; } public BigDecimal getQuantity9() { return Quantity9; } public IN_BudgetQuery setQuantity9(BigDecimal value) { this.Quantity9 = value; return this; } public BigDecimal getQuantity9GreaterThanOrEqualTo() { return Quantity9GreaterThanOrEqualTo; } public IN_BudgetQuery setQuantity9GreaterThanOrEqualTo(BigDecimal value) { this.Quantity9GreaterThanOrEqualTo = value; return this; } public BigDecimal getQuantity9GreaterThan() { return Quantity9GreaterThan; } public IN_BudgetQuery setQuantity9GreaterThan(BigDecimal value) { this.Quantity9GreaterThan = value; return this; } public BigDecimal getQuantity9LessThan() { return Quantity9LessThan; } public IN_BudgetQuery setQuantity9LessThan(BigDecimal value) { this.Quantity9LessThan = value; return this; } public BigDecimal getQuantity9LessThanOrEqualTo() { return Quantity9LessThanOrEqualTo; } public IN_BudgetQuery setQuantity9LessThanOrEqualTo(BigDecimal value) { this.Quantity9LessThanOrEqualTo = value; return this; } public BigDecimal getQuantity9NotEqualTo() { return Quantity9NotEqualTo; } public IN_BudgetQuery setQuantity9NotEqualTo(BigDecimal value) { this.Quantity9NotEqualTo = value; return this; } public ArrayList getQuantity9Between() { return Quantity9Between; } public IN_BudgetQuery setQuantity9Between(ArrayList value) { this.Quantity9Between = value; return this; } public ArrayList getQuantity9In() { return Quantity9In; } public IN_BudgetQuery setQuantity9In(ArrayList value) { this.Quantity9In = value; return this; } public BigDecimal getDollars9() { return Dollars9; } public IN_BudgetQuery setDollars9(BigDecimal value) { this.Dollars9 = value; return this; } public BigDecimal getDollars9GreaterThanOrEqualTo() { return Dollars9GreaterThanOrEqualTo; } public IN_BudgetQuery setDollars9GreaterThanOrEqualTo(BigDecimal value) { this.Dollars9GreaterThanOrEqualTo = value; return this; } public BigDecimal getDollars9GreaterThan() { return Dollars9GreaterThan; } public IN_BudgetQuery setDollars9GreaterThan(BigDecimal value) { this.Dollars9GreaterThan = value; return this; } public BigDecimal getDollars9LessThan() { return Dollars9LessThan; } public IN_BudgetQuery setDollars9LessThan(BigDecimal value) { this.Dollars9LessThan = value; return this; } public BigDecimal getDollars9LessThanOrEqualTo() { return Dollars9LessThanOrEqualTo; } public IN_BudgetQuery setDollars9LessThanOrEqualTo(BigDecimal value) { this.Dollars9LessThanOrEqualTo = value; return this; } public BigDecimal getDollars9NotEqualTo() { return Dollars9NotEqualTo; } public IN_BudgetQuery setDollars9NotEqualTo(BigDecimal value) { this.Dollars9NotEqualTo = value; return this; } public ArrayList getDollars9Between() { return Dollars9Between; } public IN_BudgetQuery setDollars9Between(ArrayList value) { this.Dollars9Between = value; return this; } public ArrayList getDollars9In() { return Dollars9In; } public IN_BudgetQuery setDollars9In(ArrayList value) { this.Dollars9In = value; return this; } public BigDecimal getQuantity10() { return Quantity10; } public IN_BudgetQuery setQuantity10(BigDecimal value) { this.Quantity10 = value; return this; } public BigDecimal getQuantity10GreaterThanOrEqualTo() { return Quantity10GreaterThanOrEqualTo; } public IN_BudgetQuery setQuantity10GreaterThanOrEqualTo(BigDecimal value) { this.Quantity10GreaterThanOrEqualTo = value; return this; } public BigDecimal getQuantity10GreaterThan() { return Quantity10GreaterThan; } public IN_BudgetQuery setQuantity10GreaterThan(BigDecimal value) { this.Quantity10GreaterThan = value; return this; } public BigDecimal getQuantity10LessThan() { return Quantity10LessThan; } public IN_BudgetQuery setQuantity10LessThan(BigDecimal value) { this.Quantity10LessThan = value; return this; } public BigDecimal getQuantity10LessThanOrEqualTo() { return Quantity10LessThanOrEqualTo; } public IN_BudgetQuery setQuantity10LessThanOrEqualTo(BigDecimal value) { this.Quantity10LessThanOrEqualTo = value; return this; } public BigDecimal getQuantity10NotEqualTo() { return Quantity10NotEqualTo; } public IN_BudgetQuery setQuantity10NotEqualTo(BigDecimal value) { this.Quantity10NotEqualTo = value; return this; } public ArrayList getQuantity10Between() { return Quantity10Between; } public IN_BudgetQuery setQuantity10Between(ArrayList value) { this.Quantity10Between = value; return this; } public ArrayList getQuantity10In() { return Quantity10In; } public IN_BudgetQuery setQuantity10In(ArrayList value) { this.Quantity10In = value; return this; } public BigDecimal getDollars10() { return Dollars10; } public IN_BudgetQuery setDollars10(BigDecimal value) { this.Dollars10 = value; return this; } public BigDecimal getDollars10GreaterThanOrEqualTo() { return Dollars10GreaterThanOrEqualTo; } public IN_BudgetQuery setDollars10GreaterThanOrEqualTo(BigDecimal value) { this.Dollars10GreaterThanOrEqualTo = value; return this; } public BigDecimal getDollars10GreaterThan() { return Dollars10GreaterThan; } public IN_BudgetQuery setDollars10GreaterThan(BigDecimal value) { this.Dollars10GreaterThan = value; return this; } public BigDecimal getDollars10LessThan() { return Dollars10LessThan; } public IN_BudgetQuery setDollars10LessThan(BigDecimal value) { this.Dollars10LessThan = value; return this; } public BigDecimal getDollars10LessThanOrEqualTo() { return Dollars10LessThanOrEqualTo; } public IN_BudgetQuery setDollars10LessThanOrEqualTo(BigDecimal value) { this.Dollars10LessThanOrEqualTo = value; return this; } public BigDecimal getDollars10NotEqualTo() { return Dollars10NotEqualTo; } public IN_BudgetQuery setDollars10NotEqualTo(BigDecimal value) { this.Dollars10NotEqualTo = value; return this; } public ArrayList getDollars10Between() { return Dollars10Between; } public IN_BudgetQuery setDollars10Between(ArrayList value) { this.Dollars10Between = value; return this; } public ArrayList getDollars10In() { return Dollars10In; } public IN_BudgetQuery setDollars10In(ArrayList value) { this.Dollars10In = value; return this; } public BigDecimal getQuantity11() { return Quantity11; } public IN_BudgetQuery setQuantity11(BigDecimal value) { this.Quantity11 = value; return this; } public BigDecimal getQuantity11GreaterThanOrEqualTo() { return Quantity11GreaterThanOrEqualTo; } public IN_BudgetQuery setQuantity11GreaterThanOrEqualTo(BigDecimal value) { this.Quantity11GreaterThanOrEqualTo = value; return this; } public BigDecimal getQuantity11GreaterThan() { return Quantity11GreaterThan; } public IN_BudgetQuery setQuantity11GreaterThan(BigDecimal value) { this.Quantity11GreaterThan = value; return this; } public BigDecimal getQuantity11LessThan() { return Quantity11LessThan; } public IN_BudgetQuery setQuantity11LessThan(BigDecimal value) { this.Quantity11LessThan = value; return this; } public BigDecimal getQuantity11LessThanOrEqualTo() { return Quantity11LessThanOrEqualTo; } public IN_BudgetQuery setQuantity11LessThanOrEqualTo(BigDecimal value) { this.Quantity11LessThanOrEqualTo = value; return this; } public BigDecimal getQuantity11NotEqualTo() { return Quantity11NotEqualTo; } public IN_BudgetQuery setQuantity11NotEqualTo(BigDecimal value) { this.Quantity11NotEqualTo = value; return this; } public ArrayList getQuantity11Between() { return Quantity11Between; } public IN_BudgetQuery setQuantity11Between(ArrayList value) { this.Quantity11Between = value; return this; } public ArrayList getQuantity11In() { return Quantity11In; } public IN_BudgetQuery setQuantity11In(ArrayList value) { this.Quantity11In = value; return this; } public BigDecimal getDollars11() { return Dollars11; } public IN_BudgetQuery setDollars11(BigDecimal value) { this.Dollars11 = value; return this; } public BigDecimal getDollars11GreaterThanOrEqualTo() { return Dollars11GreaterThanOrEqualTo; } public IN_BudgetQuery setDollars11GreaterThanOrEqualTo(BigDecimal value) { this.Dollars11GreaterThanOrEqualTo = value; return this; } public BigDecimal getDollars11GreaterThan() { return Dollars11GreaterThan; } public IN_BudgetQuery setDollars11GreaterThan(BigDecimal value) { this.Dollars11GreaterThan = value; return this; } public BigDecimal getDollars11LessThan() { return Dollars11LessThan; } public IN_BudgetQuery setDollars11LessThan(BigDecimal value) { this.Dollars11LessThan = value; return this; } public BigDecimal getDollars11LessThanOrEqualTo() { return Dollars11LessThanOrEqualTo; } public IN_BudgetQuery setDollars11LessThanOrEqualTo(BigDecimal value) { this.Dollars11LessThanOrEqualTo = value; return this; } public BigDecimal getDollars11NotEqualTo() { return Dollars11NotEqualTo; } public IN_BudgetQuery setDollars11NotEqualTo(BigDecimal value) { this.Dollars11NotEqualTo = value; return this; } public ArrayList getDollars11Between() { return Dollars11Between; } public IN_BudgetQuery setDollars11Between(ArrayList value) { this.Dollars11Between = value; return this; } public ArrayList getDollars11In() { return Dollars11In; } public IN_BudgetQuery setDollars11In(ArrayList value) { this.Dollars11In = value; return this; } public BigDecimal getQuantity12() { return Quantity12; } public IN_BudgetQuery setQuantity12(BigDecimal value) { this.Quantity12 = value; return this; } public BigDecimal getQuantity12GreaterThanOrEqualTo() { return Quantity12GreaterThanOrEqualTo; } public IN_BudgetQuery setQuantity12GreaterThanOrEqualTo(BigDecimal value) { this.Quantity12GreaterThanOrEqualTo = value; return this; } public BigDecimal getQuantity12GreaterThan() { return Quantity12GreaterThan; } public IN_BudgetQuery setQuantity12GreaterThan(BigDecimal value) { this.Quantity12GreaterThan = value; return this; } public BigDecimal getQuantity12LessThan() { return Quantity12LessThan; } public IN_BudgetQuery setQuantity12LessThan(BigDecimal value) { this.Quantity12LessThan = value; return this; } public BigDecimal getQuantity12LessThanOrEqualTo() { return Quantity12LessThanOrEqualTo; } public IN_BudgetQuery setQuantity12LessThanOrEqualTo(BigDecimal value) { this.Quantity12LessThanOrEqualTo = value; return this; } public BigDecimal getQuantity12NotEqualTo() { return Quantity12NotEqualTo; } public IN_BudgetQuery setQuantity12NotEqualTo(BigDecimal value) { this.Quantity12NotEqualTo = value; return this; } public ArrayList getQuantity12Between() { return Quantity12Between; } public IN_BudgetQuery setQuantity12Between(ArrayList value) { this.Quantity12Between = value; return this; } public ArrayList getQuantity12In() { return Quantity12In; } public IN_BudgetQuery setQuantity12In(ArrayList value) { this.Quantity12In = value; return this; } public BigDecimal getDollars12() { return Dollars12; } public IN_BudgetQuery setDollars12(BigDecimal value) { this.Dollars12 = value; return this; } public BigDecimal getDollars12GreaterThanOrEqualTo() { return Dollars12GreaterThanOrEqualTo; } public IN_BudgetQuery setDollars12GreaterThanOrEqualTo(BigDecimal value) { this.Dollars12GreaterThanOrEqualTo = value; return this; } public BigDecimal getDollars12GreaterThan() { return Dollars12GreaterThan; } public IN_BudgetQuery setDollars12GreaterThan(BigDecimal value) { this.Dollars12GreaterThan = value; return this; } public BigDecimal getDollars12LessThan() { return Dollars12LessThan; } public IN_BudgetQuery setDollars12LessThan(BigDecimal value) { this.Dollars12LessThan = value; return this; } public BigDecimal getDollars12LessThanOrEqualTo() { return Dollars12LessThanOrEqualTo; } public IN_BudgetQuery setDollars12LessThanOrEqualTo(BigDecimal value) { this.Dollars12LessThanOrEqualTo = value; return this; } public BigDecimal getDollars12NotEqualTo() { return Dollars12NotEqualTo; } public IN_BudgetQuery setDollars12NotEqualTo(BigDecimal value) { this.Dollars12NotEqualTo = value; return this; } public ArrayList getDollars12Between() { return Dollars12Between; } public IN_BudgetQuery setDollars12Between(ArrayList value) { this.Dollars12Between = value; return this; } public ArrayList getDollars12In() { return Dollars12In; } public IN_BudgetQuery setDollars12In(ArrayList value) { this.Dollars12In = value; return this; } public BigDecimal getQuantity13() { return Quantity13; } public IN_BudgetQuery setQuantity13(BigDecimal value) { this.Quantity13 = value; return this; } public BigDecimal getQuantity13GreaterThanOrEqualTo() { return Quantity13GreaterThanOrEqualTo; } public IN_BudgetQuery setQuantity13GreaterThanOrEqualTo(BigDecimal value) { this.Quantity13GreaterThanOrEqualTo = value; return this; } public BigDecimal getQuantity13GreaterThan() { return Quantity13GreaterThan; } public IN_BudgetQuery setQuantity13GreaterThan(BigDecimal value) { this.Quantity13GreaterThan = value; return this; } public BigDecimal getQuantity13LessThan() { return Quantity13LessThan; } public IN_BudgetQuery setQuantity13LessThan(BigDecimal value) { this.Quantity13LessThan = value; return this; } public BigDecimal getQuantity13LessThanOrEqualTo() { return Quantity13LessThanOrEqualTo; } public IN_BudgetQuery setQuantity13LessThanOrEqualTo(BigDecimal value) { this.Quantity13LessThanOrEqualTo = value; return this; } public BigDecimal getQuantity13NotEqualTo() { return Quantity13NotEqualTo; } public IN_BudgetQuery setQuantity13NotEqualTo(BigDecimal value) { this.Quantity13NotEqualTo = value; return this; } public ArrayList getQuantity13Between() { return Quantity13Between; } public IN_BudgetQuery setQuantity13Between(ArrayList value) { this.Quantity13Between = value; return this; } public ArrayList getQuantity13In() { return Quantity13In; } public IN_BudgetQuery setQuantity13In(ArrayList value) { this.Quantity13In = value; return this; } public BigDecimal getDollars13() { return Dollars13; } public IN_BudgetQuery setDollars13(BigDecimal value) { this.Dollars13 = value; return this; } public BigDecimal getDollars13GreaterThanOrEqualTo() { return Dollars13GreaterThanOrEqualTo; } public IN_BudgetQuery setDollars13GreaterThanOrEqualTo(BigDecimal value) { this.Dollars13GreaterThanOrEqualTo = value; return this; } public BigDecimal getDollars13GreaterThan() { return Dollars13GreaterThan; } public IN_BudgetQuery setDollars13GreaterThan(BigDecimal value) { this.Dollars13GreaterThan = value; return this; } public BigDecimal getDollars13LessThan() { return Dollars13LessThan; } public IN_BudgetQuery setDollars13LessThan(BigDecimal value) { this.Dollars13LessThan = value; return this; } public BigDecimal getDollars13LessThanOrEqualTo() { return Dollars13LessThanOrEqualTo; } public IN_BudgetQuery setDollars13LessThanOrEqualTo(BigDecimal value) { this.Dollars13LessThanOrEqualTo = value; return this; } public BigDecimal getDollars13NotEqualTo() { return Dollars13NotEqualTo; } public IN_BudgetQuery setDollars13NotEqualTo(BigDecimal value) { this.Dollars13NotEqualTo = value; return this; } public ArrayList getDollars13Between() { return Dollars13Between; } public IN_BudgetQuery setDollars13Between(ArrayList value) { this.Dollars13Between = value; return this; } public ArrayList getDollars13In() { return Dollars13In; } public IN_BudgetQuery setDollars13In(ArrayList value) { this.Dollars13In = value; return this; } public BigDecimal getQuantity14() { return Quantity14; } public IN_BudgetQuery setQuantity14(BigDecimal value) { this.Quantity14 = value; return this; } public BigDecimal getQuantity14GreaterThanOrEqualTo() { return Quantity14GreaterThanOrEqualTo; } public IN_BudgetQuery setQuantity14GreaterThanOrEqualTo(BigDecimal value) { this.Quantity14GreaterThanOrEqualTo = value; return this; } public BigDecimal getQuantity14GreaterThan() { return Quantity14GreaterThan; } public IN_BudgetQuery setQuantity14GreaterThan(BigDecimal value) { this.Quantity14GreaterThan = value; return this; } public BigDecimal getQuantity14LessThan() { return Quantity14LessThan; } public IN_BudgetQuery setQuantity14LessThan(BigDecimal value) { this.Quantity14LessThan = value; return this; } public BigDecimal getQuantity14LessThanOrEqualTo() { return Quantity14LessThanOrEqualTo; } public IN_BudgetQuery setQuantity14LessThanOrEqualTo(BigDecimal value) { this.Quantity14LessThanOrEqualTo = value; return this; } public BigDecimal getQuantity14NotEqualTo() { return Quantity14NotEqualTo; } public IN_BudgetQuery setQuantity14NotEqualTo(BigDecimal value) { this.Quantity14NotEqualTo = value; return this; } public ArrayList getQuantity14Between() { return Quantity14Between; } public IN_BudgetQuery setQuantity14Between(ArrayList value) { this.Quantity14Between = value; return this; } public ArrayList getQuantity14In() { return Quantity14In; } public IN_BudgetQuery setQuantity14In(ArrayList value) { this.Quantity14In = value; return this; } public BigDecimal getDollars14() { return Dollars14; } public IN_BudgetQuery setDollars14(BigDecimal value) { this.Dollars14 = value; return this; } public BigDecimal getDollars14GreaterThanOrEqualTo() { return Dollars14GreaterThanOrEqualTo; } public IN_BudgetQuery setDollars14GreaterThanOrEqualTo(BigDecimal value) { this.Dollars14GreaterThanOrEqualTo = value; return this; } public BigDecimal getDollars14GreaterThan() { return Dollars14GreaterThan; } public IN_BudgetQuery setDollars14GreaterThan(BigDecimal value) { this.Dollars14GreaterThan = value; return this; } public BigDecimal getDollars14LessThan() { return Dollars14LessThan; } public IN_BudgetQuery setDollars14LessThan(BigDecimal value) { this.Dollars14LessThan = value; return this; } public BigDecimal getDollars14LessThanOrEqualTo() { return Dollars14LessThanOrEqualTo; } public IN_BudgetQuery setDollars14LessThanOrEqualTo(BigDecimal value) { this.Dollars14LessThanOrEqualTo = value; return this; } public BigDecimal getDollars14NotEqualTo() { return Dollars14NotEqualTo; } public IN_BudgetQuery setDollars14NotEqualTo(BigDecimal value) { this.Dollars14NotEqualTo = value; return this; } public ArrayList getDollars14Between() { return Dollars14Between; } public IN_BudgetQuery setDollars14Between(ArrayList value) { this.Dollars14Between = value; return this; } public ArrayList getDollars14In() { return Dollars14In; } public IN_BudgetQuery setDollars14In(ArrayList value) { this.Dollars14In = value; return this; } public BigDecimal getQuantity15() { return Quantity15; } public IN_BudgetQuery setQuantity15(BigDecimal value) { this.Quantity15 = value; return this; } public BigDecimal getQuantity15GreaterThanOrEqualTo() { return Quantity15GreaterThanOrEqualTo; } public IN_BudgetQuery setQuantity15GreaterThanOrEqualTo(BigDecimal value) { this.Quantity15GreaterThanOrEqualTo = value; return this; } public BigDecimal getQuantity15GreaterThan() { return Quantity15GreaterThan; } public IN_BudgetQuery setQuantity15GreaterThan(BigDecimal value) { this.Quantity15GreaterThan = value; return this; } public BigDecimal getQuantity15LessThan() { return Quantity15LessThan; } public IN_BudgetQuery setQuantity15LessThan(BigDecimal value) { this.Quantity15LessThan = value; return this; } public BigDecimal getQuantity15LessThanOrEqualTo() { return Quantity15LessThanOrEqualTo; } public IN_BudgetQuery setQuantity15LessThanOrEqualTo(BigDecimal value) { this.Quantity15LessThanOrEqualTo = value; return this; } public BigDecimal getQuantity15NotEqualTo() { return Quantity15NotEqualTo; } public IN_BudgetQuery setQuantity15NotEqualTo(BigDecimal value) { this.Quantity15NotEqualTo = value; return this; } public ArrayList getQuantity15Between() { return Quantity15Between; } public IN_BudgetQuery setQuantity15Between(ArrayList value) { this.Quantity15Between = value; return this; } public ArrayList getQuantity15In() { return Quantity15In; } public IN_BudgetQuery setQuantity15In(ArrayList value) { this.Quantity15In = value; return this; } public BigDecimal getDollars15() { return Dollars15; } public IN_BudgetQuery setDollars15(BigDecimal value) { this.Dollars15 = value; return this; } public BigDecimal getDollars15GreaterThanOrEqualTo() { return Dollars15GreaterThanOrEqualTo; } public IN_BudgetQuery setDollars15GreaterThanOrEqualTo(BigDecimal value) { this.Dollars15GreaterThanOrEqualTo = value; return this; } public BigDecimal getDollars15GreaterThan() { return Dollars15GreaterThan; } public IN_BudgetQuery setDollars15GreaterThan(BigDecimal value) { this.Dollars15GreaterThan = value; return this; } public BigDecimal getDollars15LessThan() { return Dollars15LessThan; } public IN_BudgetQuery setDollars15LessThan(BigDecimal value) { this.Dollars15LessThan = value; return this; } public BigDecimal getDollars15LessThanOrEqualTo() { return Dollars15LessThanOrEqualTo; } public IN_BudgetQuery setDollars15LessThanOrEqualTo(BigDecimal value) { this.Dollars15LessThanOrEqualTo = value; return this; } public BigDecimal getDollars15NotEqualTo() { return Dollars15NotEqualTo; } public IN_BudgetQuery setDollars15NotEqualTo(BigDecimal value) { this.Dollars15NotEqualTo = value; return this; } public ArrayList getDollars15Between() { return Dollars15Between; } public IN_BudgetQuery setDollars15Between(ArrayList value) { this.Dollars15Between = value; return this; } public ArrayList getDollars15In() { return Dollars15In; } public IN_BudgetQuery setDollars15In(ArrayList value) { this.Dollars15In = value; return this; } public BigDecimal getQuantity16() { return Quantity16; } public IN_BudgetQuery setQuantity16(BigDecimal value) { this.Quantity16 = value; return this; } public BigDecimal getQuantity16GreaterThanOrEqualTo() { return Quantity16GreaterThanOrEqualTo; } public IN_BudgetQuery setQuantity16GreaterThanOrEqualTo(BigDecimal value) { this.Quantity16GreaterThanOrEqualTo = value; return this; } public BigDecimal getQuantity16GreaterThan() { return Quantity16GreaterThan; } public IN_BudgetQuery setQuantity16GreaterThan(BigDecimal value) { this.Quantity16GreaterThan = value; return this; } public BigDecimal getQuantity16LessThan() { return Quantity16LessThan; } public IN_BudgetQuery setQuantity16LessThan(BigDecimal value) { this.Quantity16LessThan = value; return this; } public BigDecimal getQuantity16LessThanOrEqualTo() { return Quantity16LessThanOrEqualTo; } public IN_BudgetQuery setQuantity16LessThanOrEqualTo(BigDecimal value) { this.Quantity16LessThanOrEqualTo = value; return this; } public BigDecimal getQuantity16NotEqualTo() { return Quantity16NotEqualTo; } public IN_BudgetQuery setQuantity16NotEqualTo(BigDecimal value) { this.Quantity16NotEqualTo = value; return this; } public ArrayList getQuantity16Between() { return Quantity16Between; } public IN_BudgetQuery setQuantity16Between(ArrayList value) { this.Quantity16Between = value; return this; } public ArrayList getQuantity16In() { return Quantity16In; } public IN_BudgetQuery setQuantity16In(ArrayList value) { this.Quantity16In = value; return this; } public BigDecimal getDollars16() { return Dollars16; } public IN_BudgetQuery setDollars16(BigDecimal value) { this.Dollars16 = value; return this; } public BigDecimal getDollars16GreaterThanOrEqualTo() { return Dollars16GreaterThanOrEqualTo; } public IN_BudgetQuery setDollars16GreaterThanOrEqualTo(BigDecimal value) { this.Dollars16GreaterThanOrEqualTo = value; return this; } public BigDecimal getDollars16GreaterThan() { return Dollars16GreaterThan; } public IN_BudgetQuery setDollars16GreaterThan(BigDecimal value) { this.Dollars16GreaterThan = value; return this; } public BigDecimal getDollars16LessThan() { return Dollars16LessThan; } public IN_BudgetQuery setDollars16LessThan(BigDecimal value) { this.Dollars16LessThan = value; return this; } public BigDecimal getDollars16LessThanOrEqualTo() { return Dollars16LessThanOrEqualTo; } public IN_BudgetQuery setDollars16LessThanOrEqualTo(BigDecimal value) { this.Dollars16LessThanOrEqualTo = value; return this; } public BigDecimal getDollars16NotEqualTo() { return Dollars16NotEqualTo; } public IN_BudgetQuery setDollars16NotEqualTo(BigDecimal value) { this.Dollars16NotEqualTo = value; return this; } public ArrayList getDollars16Between() { return Dollars16Between; } public IN_BudgetQuery setDollars16Between(ArrayList value) { this.Dollars16Between = value; return this; } public ArrayList getDollars16In() { return Dollars16In; } public IN_BudgetQuery setDollars16In(ArrayList value) { this.Dollars16In = value; return this; } public BigDecimal getQuantity17() { return Quantity17; } public IN_BudgetQuery setQuantity17(BigDecimal value) { this.Quantity17 = value; return this; } public BigDecimal getQuantity17GreaterThanOrEqualTo() { return Quantity17GreaterThanOrEqualTo; } public IN_BudgetQuery setQuantity17GreaterThanOrEqualTo(BigDecimal value) { this.Quantity17GreaterThanOrEqualTo = value; return this; } public BigDecimal getQuantity17GreaterThan() { return Quantity17GreaterThan; } public IN_BudgetQuery setQuantity17GreaterThan(BigDecimal value) { this.Quantity17GreaterThan = value; return this; } public BigDecimal getQuantity17LessThan() { return Quantity17LessThan; } public IN_BudgetQuery setQuantity17LessThan(BigDecimal value) { this.Quantity17LessThan = value; return this; } public BigDecimal getQuantity17LessThanOrEqualTo() { return Quantity17LessThanOrEqualTo; } public IN_BudgetQuery setQuantity17LessThanOrEqualTo(BigDecimal value) { this.Quantity17LessThanOrEqualTo = value; return this; } public BigDecimal getQuantity17NotEqualTo() { return Quantity17NotEqualTo; } public IN_BudgetQuery setQuantity17NotEqualTo(BigDecimal value) { this.Quantity17NotEqualTo = value; return this; } public ArrayList getQuantity17Between() { return Quantity17Between; } public IN_BudgetQuery setQuantity17Between(ArrayList value) { this.Quantity17Between = value; return this; } public ArrayList getQuantity17In() { return Quantity17In; } public IN_BudgetQuery setQuantity17In(ArrayList value) { this.Quantity17In = value; return this; } public BigDecimal getDollars17() { return Dollars17; } public IN_BudgetQuery setDollars17(BigDecimal value) { this.Dollars17 = value; return this; } public BigDecimal getDollars17GreaterThanOrEqualTo() { return Dollars17GreaterThanOrEqualTo; } public IN_BudgetQuery setDollars17GreaterThanOrEqualTo(BigDecimal value) { this.Dollars17GreaterThanOrEqualTo = value; return this; } public BigDecimal getDollars17GreaterThan() { return Dollars17GreaterThan; } public IN_BudgetQuery setDollars17GreaterThan(BigDecimal value) { this.Dollars17GreaterThan = value; return this; } public BigDecimal getDollars17LessThan() { return Dollars17LessThan; } public IN_BudgetQuery setDollars17LessThan(BigDecimal value) { this.Dollars17LessThan = value; return this; } public BigDecimal getDollars17LessThanOrEqualTo() { return Dollars17LessThanOrEqualTo; } public IN_BudgetQuery setDollars17LessThanOrEqualTo(BigDecimal value) { this.Dollars17LessThanOrEqualTo = value; return this; } public BigDecimal getDollars17NotEqualTo() { return Dollars17NotEqualTo; } public IN_BudgetQuery setDollars17NotEqualTo(BigDecimal value) { this.Dollars17NotEqualTo = value; return this; } public ArrayList getDollars17Between() { return Dollars17Between; } public IN_BudgetQuery setDollars17Between(ArrayList value) { this.Dollars17Between = value; return this; } public ArrayList getDollars17In() { return Dollars17In; } public IN_BudgetQuery setDollars17In(ArrayList value) { this.Dollars17In = value; return this; } public BigDecimal getQuantity18() { return Quantity18; } public IN_BudgetQuery setQuantity18(BigDecimal value) { this.Quantity18 = value; return this; } public BigDecimal getQuantity18GreaterThanOrEqualTo() { return Quantity18GreaterThanOrEqualTo; } public IN_BudgetQuery setQuantity18GreaterThanOrEqualTo(BigDecimal value) { this.Quantity18GreaterThanOrEqualTo = value; return this; } public BigDecimal getQuantity18GreaterThan() { return Quantity18GreaterThan; } public IN_BudgetQuery setQuantity18GreaterThan(BigDecimal value) { this.Quantity18GreaterThan = value; return this; } public BigDecimal getQuantity18LessThan() { return Quantity18LessThan; } public IN_BudgetQuery setQuantity18LessThan(BigDecimal value) { this.Quantity18LessThan = value; return this; } public BigDecimal getQuantity18LessThanOrEqualTo() { return Quantity18LessThanOrEqualTo; } public IN_BudgetQuery setQuantity18LessThanOrEqualTo(BigDecimal value) { this.Quantity18LessThanOrEqualTo = value; return this; } public BigDecimal getQuantity18NotEqualTo() { return Quantity18NotEqualTo; } public IN_BudgetQuery setQuantity18NotEqualTo(BigDecimal value) { this.Quantity18NotEqualTo = value; return this; } public ArrayList getQuantity18Between() { return Quantity18Between; } public IN_BudgetQuery setQuantity18Between(ArrayList value) { this.Quantity18Between = value; return this; } public ArrayList getQuantity18In() { return Quantity18In; } public IN_BudgetQuery setQuantity18In(ArrayList value) { this.Quantity18In = value; return this; } public BigDecimal getDollars18() { return Dollars18; } public IN_BudgetQuery setDollars18(BigDecimal value) { this.Dollars18 = value; return this; } public BigDecimal getDollars18GreaterThanOrEqualTo() { return Dollars18GreaterThanOrEqualTo; } public IN_BudgetQuery setDollars18GreaterThanOrEqualTo(BigDecimal value) { this.Dollars18GreaterThanOrEqualTo = value; return this; } public BigDecimal getDollars18GreaterThan() { return Dollars18GreaterThan; } public IN_BudgetQuery setDollars18GreaterThan(BigDecimal value) { this.Dollars18GreaterThan = value; return this; } public BigDecimal getDollars18LessThan() { return Dollars18LessThan; } public IN_BudgetQuery setDollars18LessThan(BigDecimal value) { this.Dollars18LessThan = value; return this; } public BigDecimal getDollars18LessThanOrEqualTo() { return Dollars18LessThanOrEqualTo; } public IN_BudgetQuery setDollars18LessThanOrEqualTo(BigDecimal value) { this.Dollars18LessThanOrEqualTo = value; return this; } public BigDecimal getDollars18NotEqualTo() { return Dollars18NotEqualTo; } public IN_BudgetQuery setDollars18NotEqualTo(BigDecimal value) { this.Dollars18NotEqualTo = value; return this; } public ArrayList getDollars18Between() { return Dollars18Between; } public IN_BudgetQuery setDollars18Between(ArrayList value) { this.Dollars18Between = value; return this; } public ArrayList getDollars18In() { return Dollars18In; } public IN_BudgetQuery setDollars18In(ArrayList value) { this.Dollars18In = value; return this; } public BigDecimal getQuantity19() { return Quantity19; } public IN_BudgetQuery setQuantity19(BigDecimal value) { this.Quantity19 = value; return this; } public BigDecimal getQuantity19GreaterThanOrEqualTo() { return Quantity19GreaterThanOrEqualTo; } public IN_BudgetQuery setQuantity19GreaterThanOrEqualTo(BigDecimal value) { this.Quantity19GreaterThanOrEqualTo = value; return this; } public BigDecimal getQuantity19GreaterThan() { return Quantity19GreaterThan; } public IN_BudgetQuery setQuantity19GreaterThan(BigDecimal value) { this.Quantity19GreaterThan = value; return this; } public BigDecimal getQuantity19LessThan() { return Quantity19LessThan; } public IN_BudgetQuery setQuantity19LessThan(BigDecimal value) { this.Quantity19LessThan = value; return this; } public BigDecimal getQuantity19LessThanOrEqualTo() { return Quantity19LessThanOrEqualTo; } public IN_BudgetQuery setQuantity19LessThanOrEqualTo(BigDecimal value) { this.Quantity19LessThanOrEqualTo = value; return this; } public BigDecimal getQuantity19NotEqualTo() { return Quantity19NotEqualTo; } public IN_BudgetQuery setQuantity19NotEqualTo(BigDecimal value) { this.Quantity19NotEqualTo = value; return this; } public ArrayList getQuantity19Between() { return Quantity19Between; } public IN_BudgetQuery setQuantity19Between(ArrayList value) { this.Quantity19Between = value; return this; } public ArrayList getQuantity19In() { return Quantity19In; } public IN_BudgetQuery setQuantity19In(ArrayList value) { this.Quantity19In = value; return this; } public BigDecimal getDollars19() { return Dollars19; } public IN_BudgetQuery setDollars19(BigDecimal value) { this.Dollars19 = value; return this; } public BigDecimal getDollars19GreaterThanOrEqualTo() { return Dollars19GreaterThanOrEqualTo; } public IN_BudgetQuery setDollars19GreaterThanOrEqualTo(BigDecimal value) { this.Dollars19GreaterThanOrEqualTo = value; return this; } public BigDecimal getDollars19GreaterThan() { return Dollars19GreaterThan; } public IN_BudgetQuery setDollars19GreaterThan(BigDecimal value) { this.Dollars19GreaterThan = value; return this; } public BigDecimal getDollars19LessThan() { return Dollars19LessThan; } public IN_BudgetQuery setDollars19LessThan(BigDecimal value) { this.Dollars19LessThan = value; return this; } public BigDecimal getDollars19LessThanOrEqualTo() { return Dollars19LessThanOrEqualTo; } public IN_BudgetQuery setDollars19LessThanOrEqualTo(BigDecimal value) { this.Dollars19LessThanOrEqualTo = value; return this; } public BigDecimal getDollars19NotEqualTo() { return Dollars19NotEqualTo; } public IN_BudgetQuery setDollars19NotEqualTo(BigDecimal value) { this.Dollars19NotEqualTo = value; return this; } public ArrayList getDollars19Between() { return Dollars19Between; } public IN_BudgetQuery setDollars19Between(ArrayList value) { this.Dollars19Between = value; return this; } public ArrayList getDollars19In() { return Dollars19In; } public IN_BudgetQuery setDollars19In(ArrayList value) { this.Dollars19In = value; return this; } public BigDecimal getQuantity20() { return Quantity20; } public IN_BudgetQuery setQuantity20(BigDecimal value) { this.Quantity20 = value; return this; } public BigDecimal getQuantity20GreaterThanOrEqualTo() { return Quantity20GreaterThanOrEqualTo; } public IN_BudgetQuery setQuantity20GreaterThanOrEqualTo(BigDecimal value) { this.Quantity20GreaterThanOrEqualTo = value; return this; } public BigDecimal getQuantity20GreaterThan() { return Quantity20GreaterThan; } public IN_BudgetQuery setQuantity20GreaterThan(BigDecimal value) { this.Quantity20GreaterThan = value; return this; } public BigDecimal getQuantity20LessThan() { return Quantity20LessThan; } public IN_BudgetQuery setQuantity20LessThan(BigDecimal value) { this.Quantity20LessThan = value; return this; } public BigDecimal getQuantity20LessThanOrEqualTo() { return Quantity20LessThanOrEqualTo; } public IN_BudgetQuery setQuantity20LessThanOrEqualTo(BigDecimal value) { this.Quantity20LessThanOrEqualTo = value; return this; } public BigDecimal getQuantity20NotEqualTo() { return Quantity20NotEqualTo; } public IN_BudgetQuery setQuantity20NotEqualTo(BigDecimal value) { this.Quantity20NotEqualTo = value; return this; } public ArrayList getQuantity20Between() { return Quantity20Between; } public IN_BudgetQuery setQuantity20Between(ArrayList value) { this.Quantity20Between = value; return this; } public ArrayList getQuantity20In() { return Quantity20In; } public IN_BudgetQuery setQuantity20In(ArrayList value) { this.Quantity20In = value; return this; } public BigDecimal getDollars20() { return Dollars20; } public IN_BudgetQuery setDollars20(BigDecimal value) { this.Dollars20 = value; return this; } public BigDecimal getDollars20GreaterThanOrEqualTo() { return Dollars20GreaterThanOrEqualTo; } public IN_BudgetQuery setDollars20GreaterThanOrEqualTo(BigDecimal value) { this.Dollars20GreaterThanOrEqualTo = value; return this; } public BigDecimal getDollars20GreaterThan() { return Dollars20GreaterThan; } public IN_BudgetQuery setDollars20GreaterThan(BigDecimal value) { this.Dollars20GreaterThan = value; return this; } public BigDecimal getDollars20LessThan() { return Dollars20LessThan; } public IN_BudgetQuery setDollars20LessThan(BigDecimal value) { this.Dollars20LessThan = value; return this; } public BigDecimal getDollars20LessThanOrEqualTo() { return Dollars20LessThanOrEqualTo; } public IN_BudgetQuery setDollars20LessThanOrEqualTo(BigDecimal value) { this.Dollars20LessThanOrEqualTo = value; return this; } public BigDecimal getDollars20NotEqualTo() { return Dollars20NotEqualTo; } public IN_BudgetQuery setDollars20NotEqualTo(BigDecimal value) { this.Dollars20NotEqualTo = value; return this; } public ArrayList getDollars20Between() { return Dollars20Between; } public IN_BudgetQuery setDollars20Between(ArrayList value) { this.Dollars20Between = value; return this; } public ArrayList getDollars20In() { return Dollars20In; } public IN_BudgetQuery setDollars20In(ArrayList value) { this.Dollars20In = value; return this; } public BigDecimal getQuantity21() { return Quantity21; } public IN_BudgetQuery setQuantity21(BigDecimal value) { this.Quantity21 = value; return this; } public BigDecimal getQuantity21GreaterThanOrEqualTo() { return Quantity21GreaterThanOrEqualTo; } public IN_BudgetQuery setQuantity21GreaterThanOrEqualTo(BigDecimal value) { this.Quantity21GreaterThanOrEqualTo = value; return this; } public BigDecimal getQuantity21GreaterThan() { return Quantity21GreaterThan; } public IN_BudgetQuery setQuantity21GreaterThan(BigDecimal value) { this.Quantity21GreaterThan = value; return this; } public BigDecimal getQuantity21LessThan() { return Quantity21LessThan; } public IN_BudgetQuery setQuantity21LessThan(BigDecimal value) { this.Quantity21LessThan = value; return this; } public BigDecimal getQuantity21LessThanOrEqualTo() { return Quantity21LessThanOrEqualTo; } public IN_BudgetQuery setQuantity21LessThanOrEqualTo(BigDecimal value) { this.Quantity21LessThanOrEqualTo = value; return this; } public BigDecimal getQuantity21NotEqualTo() { return Quantity21NotEqualTo; } public IN_BudgetQuery setQuantity21NotEqualTo(BigDecimal value) { this.Quantity21NotEqualTo = value; return this; } public ArrayList getQuantity21Between() { return Quantity21Between; } public IN_BudgetQuery setQuantity21Between(ArrayList value) { this.Quantity21Between = value; return this; } public ArrayList getQuantity21In() { return Quantity21In; } public IN_BudgetQuery setQuantity21In(ArrayList value) { this.Quantity21In = value; return this; } public BigDecimal getDollars21() { return Dollars21; } public IN_BudgetQuery setDollars21(BigDecimal value) { this.Dollars21 = value; return this; } public BigDecimal getDollars21GreaterThanOrEqualTo() { return Dollars21GreaterThanOrEqualTo; } public IN_BudgetQuery setDollars21GreaterThanOrEqualTo(BigDecimal value) { this.Dollars21GreaterThanOrEqualTo = value; return this; } public BigDecimal getDollars21GreaterThan() { return Dollars21GreaterThan; } public IN_BudgetQuery setDollars21GreaterThan(BigDecimal value) { this.Dollars21GreaterThan = value; return this; } public BigDecimal getDollars21LessThan() { return Dollars21LessThan; } public IN_BudgetQuery setDollars21LessThan(BigDecimal value) { this.Dollars21LessThan = value; return this; } public BigDecimal getDollars21LessThanOrEqualTo() { return Dollars21LessThanOrEqualTo; } public IN_BudgetQuery setDollars21LessThanOrEqualTo(BigDecimal value) { this.Dollars21LessThanOrEqualTo = value; return this; } public BigDecimal getDollars21NotEqualTo() { return Dollars21NotEqualTo; } public IN_BudgetQuery setDollars21NotEqualTo(BigDecimal value) { this.Dollars21NotEqualTo = value; return this; } public ArrayList getDollars21Between() { return Dollars21Between; } public IN_BudgetQuery setDollars21Between(ArrayList value) { this.Dollars21Between = value; return this; } public ArrayList getDollars21In() { return Dollars21In; } public IN_BudgetQuery setDollars21In(ArrayList value) { this.Dollars21In = value; return this; } public BigDecimal getQuantity22() { return Quantity22; } public IN_BudgetQuery setQuantity22(BigDecimal value) { this.Quantity22 = value; return this; } public BigDecimal getQuantity22GreaterThanOrEqualTo() { return Quantity22GreaterThanOrEqualTo; } public IN_BudgetQuery setQuantity22GreaterThanOrEqualTo(BigDecimal value) { this.Quantity22GreaterThanOrEqualTo = value; return this; } public BigDecimal getQuantity22GreaterThan() { return Quantity22GreaterThan; } public IN_BudgetQuery setQuantity22GreaterThan(BigDecimal value) { this.Quantity22GreaterThan = value; return this; } public BigDecimal getQuantity22LessThan() { return Quantity22LessThan; } public IN_BudgetQuery setQuantity22LessThan(BigDecimal value) { this.Quantity22LessThan = value; return this; } public BigDecimal getQuantity22LessThanOrEqualTo() { return Quantity22LessThanOrEqualTo; } public IN_BudgetQuery setQuantity22LessThanOrEqualTo(BigDecimal value) { this.Quantity22LessThanOrEqualTo = value; return this; } public BigDecimal getQuantity22NotEqualTo() { return Quantity22NotEqualTo; } public IN_BudgetQuery setQuantity22NotEqualTo(BigDecimal value) { this.Quantity22NotEqualTo = value; return this; } public ArrayList getQuantity22Between() { return Quantity22Between; } public IN_BudgetQuery setQuantity22Between(ArrayList value) { this.Quantity22Between = value; return this; } public ArrayList getQuantity22In() { return Quantity22In; } public IN_BudgetQuery setQuantity22In(ArrayList value) { this.Quantity22In = value; return this; } public BigDecimal getDollars22() { return Dollars22; } public IN_BudgetQuery setDollars22(BigDecimal value) { this.Dollars22 = value; return this; } public BigDecimal getDollars22GreaterThanOrEqualTo() { return Dollars22GreaterThanOrEqualTo; } public IN_BudgetQuery setDollars22GreaterThanOrEqualTo(BigDecimal value) { this.Dollars22GreaterThanOrEqualTo = value; return this; } public BigDecimal getDollars22GreaterThan() { return Dollars22GreaterThan; } public IN_BudgetQuery setDollars22GreaterThan(BigDecimal value) { this.Dollars22GreaterThan = value; return this; } public BigDecimal getDollars22LessThan() { return Dollars22LessThan; } public IN_BudgetQuery setDollars22LessThan(BigDecimal value) { this.Dollars22LessThan = value; return this; } public BigDecimal getDollars22LessThanOrEqualTo() { return Dollars22LessThanOrEqualTo; } public IN_BudgetQuery setDollars22LessThanOrEqualTo(BigDecimal value) { this.Dollars22LessThanOrEqualTo = value; return this; } public BigDecimal getDollars22NotEqualTo() { return Dollars22NotEqualTo; } public IN_BudgetQuery setDollars22NotEqualTo(BigDecimal value) { this.Dollars22NotEqualTo = value; return this; } public ArrayList getDollars22Between() { return Dollars22Between; } public IN_BudgetQuery setDollars22Between(ArrayList value) { this.Dollars22Between = value; return this; } public ArrayList getDollars22In() { return Dollars22In; } public IN_BudgetQuery setDollars22In(ArrayList value) { this.Dollars22In = value; return this; } public BigDecimal getQuantity23() { return Quantity23; } public IN_BudgetQuery setQuantity23(BigDecimal value) { this.Quantity23 = value; return this; } public BigDecimal getQuantity23GreaterThanOrEqualTo() { return Quantity23GreaterThanOrEqualTo; } public IN_BudgetQuery setQuantity23GreaterThanOrEqualTo(BigDecimal value) { this.Quantity23GreaterThanOrEqualTo = value; return this; } public BigDecimal getQuantity23GreaterThan() { return Quantity23GreaterThan; } public IN_BudgetQuery setQuantity23GreaterThan(BigDecimal value) { this.Quantity23GreaterThan = value; return this; } public BigDecimal getQuantity23LessThan() { return Quantity23LessThan; } public IN_BudgetQuery setQuantity23LessThan(BigDecimal value) { this.Quantity23LessThan = value; return this; } public BigDecimal getQuantity23LessThanOrEqualTo() { return Quantity23LessThanOrEqualTo; } public IN_BudgetQuery setQuantity23LessThanOrEqualTo(BigDecimal value) { this.Quantity23LessThanOrEqualTo = value; return this; } public BigDecimal getQuantity23NotEqualTo() { return Quantity23NotEqualTo; } public IN_BudgetQuery setQuantity23NotEqualTo(BigDecimal value) { this.Quantity23NotEqualTo = value; return this; } public ArrayList getQuantity23Between() { return Quantity23Between; } public IN_BudgetQuery setQuantity23Between(ArrayList value) { this.Quantity23Between = value; return this; } public ArrayList getQuantity23In() { return Quantity23In; } public IN_BudgetQuery setQuantity23In(ArrayList value) { this.Quantity23In = value; return this; } public BigDecimal getDollars23() { return Dollars23; } public IN_BudgetQuery setDollars23(BigDecimal value) { this.Dollars23 = value; return this; } public BigDecimal getDollars23GreaterThanOrEqualTo() { return Dollars23GreaterThanOrEqualTo; } public IN_BudgetQuery setDollars23GreaterThanOrEqualTo(BigDecimal value) { this.Dollars23GreaterThanOrEqualTo = value; return this; } public BigDecimal getDollars23GreaterThan() { return Dollars23GreaterThan; } public IN_BudgetQuery setDollars23GreaterThan(BigDecimal value) { this.Dollars23GreaterThan = value; return this; } public BigDecimal getDollars23LessThan() { return Dollars23LessThan; } public IN_BudgetQuery setDollars23LessThan(BigDecimal value) { this.Dollars23LessThan = value; return this; } public BigDecimal getDollars23LessThanOrEqualTo() { return Dollars23LessThanOrEqualTo; } public IN_BudgetQuery setDollars23LessThanOrEqualTo(BigDecimal value) { this.Dollars23LessThanOrEqualTo = value; return this; } public BigDecimal getDollars23NotEqualTo() { return Dollars23NotEqualTo; } public IN_BudgetQuery setDollars23NotEqualTo(BigDecimal value) { this.Dollars23NotEqualTo = value; return this; } public ArrayList getDollars23Between() { return Dollars23Between; } public IN_BudgetQuery setDollars23Between(ArrayList value) { this.Dollars23Between = value; return this; } public ArrayList getDollars23In() { return Dollars23In; } public IN_BudgetQuery setDollars23In(ArrayList value) { this.Dollars23In = value; return this; } public BigDecimal getQuantity24() { return Quantity24; } public IN_BudgetQuery setQuantity24(BigDecimal value) { this.Quantity24 = value; return this; } public BigDecimal getQuantity24GreaterThanOrEqualTo() { return Quantity24GreaterThanOrEqualTo; } public IN_BudgetQuery setQuantity24GreaterThanOrEqualTo(BigDecimal value) { this.Quantity24GreaterThanOrEqualTo = value; return this; } public BigDecimal getQuantity24GreaterThan() { return Quantity24GreaterThan; } public IN_BudgetQuery setQuantity24GreaterThan(BigDecimal value) { this.Quantity24GreaterThan = value; return this; } public BigDecimal getQuantity24LessThan() { return Quantity24LessThan; } public IN_BudgetQuery setQuantity24LessThan(BigDecimal value) { this.Quantity24LessThan = value; return this; } public BigDecimal getQuantity24LessThanOrEqualTo() { return Quantity24LessThanOrEqualTo; } public IN_BudgetQuery setQuantity24LessThanOrEqualTo(BigDecimal value) { this.Quantity24LessThanOrEqualTo = value; return this; } public BigDecimal getQuantity24NotEqualTo() { return Quantity24NotEqualTo; } public IN_BudgetQuery setQuantity24NotEqualTo(BigDecimal value) { this.Quantity24NotEqualTo = value; return this; } public ArrayList getQuantity24Between() { return Quantity24Between; } public IN_BudgetQuery setQuantity24Between(ArrayList value) { this.Quantity24Between = value; return this; } public ArrayList getQuantity24In() { return Quantity24In; } public IN_BudgetQuery setQuantity24In(ArrayList value) { this.Quantity24In = value; return this; } public BigDecimal getDollars24() { return Dollars24; } public IN_BudgetQuery setDollars24(BigDecimal value) { this.Dollars24 = value; return this; } public BigDecimal getDollars24GreaterThanOrEqualTo() { return Dollars24GreaterThanOrEqualTo; } public IN_BudgetQuery setDollars24GreaterThanOrEqualTo(BigDecimal value) { this.Dollars24GreaterThanOrEqualTo = value; return this; } public BigDecimal getDollars24GreaterThan() { return Dollars24GreaterThan; } public IN_BudgetQuery setDollars24GreaterThan(BigDecimal value) { this.Dollars24GreaterThan = value; return this; } public BigDecimal getDollars24LessThan() { return Dollars24LessThan; } public IN_BudgetQuery setDollars24LessThan(BigDecimal value) { this.Dollars24LessThan = value; return this; } public BigDecimal getDollars24LessThanOrEqualTo() { return Dollars24LessThanOrEqualTo; } public IN_BudgetQuery setDollars24LessThanOrEqualTo(BigDecimal value) { this.Dollars24LessThanOrEqualTo = value; return this; } public BigDecimal getDollars24NotEqualTo() { return Dollars24NotEqualTo; } public IN_BudgetQuery setDollars24NotEqualTo(BigDecimal value) { this.Dollars24NotEqualTo = value; return this; } public ArrayList getDollars24Between() { return Dollars24Between; } public IN_BudgetQuery setDollars24Between(ArrayList value) { this.Dollars24Between = value; return this; } public ArrayList getDollars24In() { return Dollars24In; } public IN_BudgetQuery setDollars24In(ArrayList value) { this.Dollars24In = value; return this; } public String getInLogicalID() { return IN_LogicalID; } public IN_BudgetQuery setInLogicalID(String value) { this.IN_LogicalID = value; return this; } public String getInLogicalIDStartsWith() { return IN_LogicalIDStartsWith; } public IN_BudgetQuery setInLogicalIDStartsWith(String value) { this.IN_LogicalIDStartsWith = value; return this; } public String getInLogicalIDEndsWith() { return IN_LogicalIDEndsWith; } public IN_BudgetQuery setInLogicalIDEndsWith(String value) { this.IN_LogicalIDEndsWith = value; return this; } public String getInLogicalIDContains() { return IN_LogicalIDContains; } public IN_BudgetQuery setInLogicalIDContains(String value) { this.IN_LogicalIDContains = value; return this; } public String getInLogicalIDLike() { return IN_LogicalIDLike; } public IN_BudgetQuery setInLogicalIDLike(String value) { this.IN_LogicalIDLike = value; return this; } public ArrayList getInLogicalIDBetween() { return IN_LogicalIDBetween; } public IN_BudgetQuery setInLogicalIDBetween(ArrayList value) { this.IN_LogicalIDBetween = value; return this; } public ArrayList getInLogicalIDIn() { return IN_LogicalIDIn; } public IN_BudgetQuery setInLogicalIDIn(ArrayList value) { this.IN_LogicalIDIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @Route(Path="/Queries/IN_Categories", Verbs="GET") @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class IN_CategoriesQuery extends QueryDb implements IReturn> { public Integer CategoryNo = null; public Integer CategoryNoGreaterThanOrEqualTo = null; public Integer CategoryNoGreaterThan = null; public Integer CategoryNoLessThan = null; public Integer CategoryNoLessThanOrEqualTo = null; public Integer CategoryNoNotEqualTo = null; public ArrayList CategoryNoBetween = null; public ArrayList CategoryNoIn = null; public String CategoryID = null; public String CategoryIDStartsWith = null; public String CategoryIDEndsWith = null; public String CategoryIDContains = null; public String CategoryIDLike = null; public ArrayList CategoryIDBetween = null; public ArrayList CategoryIDIn = null; public String Description = null; public String DescriptionStartsWith = null; public String DescriptionEndsWith = null; public String DescriptionContains = null; public String DescriptionLike = null; public ArrayList DescriptionBetween = null; public ArrayList DescriptionIn = null; public Boolean DefaultCategory = null; public Date LastSavedDateTime = null; public Date LastSavedDateTimeGreaterThanOrEqualTo = null; public Date LastSavedDateTimeGreaterThan = null; public Date LastSavedDateTimeLessThan = null; public Date LastSavedDateTimeLessThanOrEqualTo = null; public Date LastSavedDateTimeNotEqualTo = null; public ArrayList LastSavedDateTimeBetween = null; public ArrayList LastSavedDateTimeIn = null; public ArrayList Picture = null; public Integer getCategoryNo() { return CategoryNo; } public IN_CategoriesQuery setCategoryNo(Integer value) { this.CategoryNo = value; return this; } public Integer getCategoryNoGreaterThanOrEqualTo() { return CategoryNoGreaterThanOrEqualTo; } public IN_CategoriesQuery setCategoryNoGreaterThanOrEqualTo(Integer value) { this.CategoryNoGreaterThanOrEqualTo = value; return this; } public Integer getCategoryNoGreaterThan() { return CategoryNoGreaterThan; } public IN_CategoriesQuery setCategoryNoGreaterThan(Integer value) { this.CategoryNoGreaterThan = value; return this; } public Integer getCategoryNoLessThan() { return CategoryNoLessThan; } public IN_CategoriesQuery setCategoryNoLessThan(Integer value) { this.CategoryNoLessThan = value; return this; } public Integer getCategoryNoLessThanOrEqualTo() { return CategoryNoLessThanOrEqualTo; } public IN_CategoriesQuery setCategoryNoLessThanOrEqualTo(Integer value) { this.CategoryNoLessThanOrEqualTo = value; return this; } public Integer getCategoryNoNotEqualTo() { return CategoryNoNotEqualTo; } public IN_CategoriesQuery setCategoryNoNotEqualTo(Integer value) { this.CategoryNoNotEqualTo = value; return this; } public ArrayList getCategoryNoBetween() { return CategoryNoBetween; } public IN_CategoriesQuery setCategoryNoBetween(ArrayList value) { this.CategoryNoBetween = value; return this; } public ArrayList getCategoryNoIn() { return CategoryNoIn; } public IN_CategoriesQuery setCategoryNoIn(ArrayList value) { this.CategoryNoIn = value; return this; } public String getCategoryID() { return CategoryID; } public IN_CategoriesQuery setCategoryID(String value) { this.CategoryID = value; return this; } public String getCategoryIDStartsWith() { return CategoryIDStartsWith; } public IN_CategoriesQuery setCategoryIDStartsWith(String value) { this.CategoryIDStartsWith = value; return this; } public String getCategoryIDEndsWith() { return CategoryIDEndsWith; } public IN_CategoriesQuery setCategoryIDEndsWith(String value) { this.CategoryIDEndsWith = value; return this; } public String getCategoryIDContains() { return CategoryIDContains; } public IN_CategoriesQuery setCategoryIDContains(String value) { this.CategoryIDContains = value; return this; } public String getCategoryIDLike() { return CategoryIDLike; } public IN_CategoriesQuery setCategoryIDLike(String value) { this.CategoryIDLike = value; return this; } public ArrayList getCategoryIDBetween() { return CategoryIDBetween; } public IN_CategoriesQuery setCategoryIDBetween(ArrayList value) { this.CategoryIDBetween = value; return this; } public ArrayList getCategoryIDIn() { return CategoryIDIn; } public IN_CategoriesQuery setCategoryIDIn(ArrayList value) { this.CategoryIDIn = value; return this; } public String getDescription() { return Description; } public IN_CategoriesQuery setDescription(String value) { this.Description = value; return this; } public String getDescriptionStartsWith() { return DescriptionStartsWith; } public IN_CategoriesQuery setDescriptionStartsWith(String value) { this.DescriptionStartsWith = value; return this; } public String getDescriptionEndsWith() { return DescriptionEndsWith; } public IN_CategoriesQuery setDescriptionEndsWith(String value) { this.DescriptionEndsWith = value; return this; } public String getDescriptionContains() { return DescriptionContains; } public IN_CategoriesQuery setDescriptionContains(String value) { this.DescriptionContains = value; return this; } public String getDescriptionLike() { return DescriptionLike; } public IN_CategoriesQuery setDescriptionLike(String value) { this.DescriptionLike = value; return this; } public ArrayList getDescriptionBetween() { return DescriptionBetween; } public IN_CategoriesQuery setDescriptionBetween(ArrayList value) { this.DescriptionBetween = value; return this; } public ArrayList getDescriptionIn() { return DescriptionIn; } public IN_CategoriesQuery setDescriptionIn(ArrayList value) { this.DescriptionIn = value; return this; } public Boolean isDefaultCategory() { return DefaultCategory; } public IN_CategoriesQuery setDefaultCategory(Boolean value) { this.DefaultCategory = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public IN_CategoriesQuery setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getLastSavedDateTimeGreaterThanOrEqualTo() { return LastSavedDateTimeGreaterThanOrEqualTo; } public IN_CategoriesQuery setLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.LastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeGreaterThan() { return LastSavedDateTimeGreaterThan; } public IN_CategoriesQuery setLastSavedDateTimeGreaterThan(Date value) { this.LastSavedDateTimeGreaterThan = value; return this; } public Date getLastSavedDateTimeLessThan() { return LastSavedDateTimeLessThan; } public IN_CategoriesQuery setLastSavedDateTimeLessThan(Date value) { this.LastSavedDateTimeLessThan = value; return this; } public Date getLastSavedDateTimeLessThanOrEqualTo() { return LastSavedDateTimeLessThanOrEqualTo; } public IN_CategoriesQuery setLastSavedDateTimeLessThanOrEqualTo(Date value) { this.LastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeNotEqualTo() { return LastSavedDateTimeNotEqualTo; } public IN_CategoriesQuery setLastSavedDateTimeNotEqualTo(Date value) { this.LastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getLastSavedDateTimeBetween() { return LastSavedDateTimeBetween; } public IN_CategoriesQuery setLastSavedDateTimeBetween(ArrayList value) { this.LastSavedDateTimeBetween = value; return this; } public ArrayList getLastSavedDateTimeIn() { return LastSavedDateTimeIn; } public IN_CategoriesQuery setLastSavedDateTimeIn(ArrayList value) { this.LastSavedDateTimeIn = value; return this; } public ArrayList getPicture() { return Picture; } public IN_CategoriesQuery setPicture(ArrayList value) { this.Picture = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @Route(Path="/Queries/IN_Category1", Verbs="GET") @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class IN_Category1Query extends QueryDb implements IReturn> { public String Category1ID = null; public String Category1IDStartsWith = null; public String Category1IDEndsWith = null; public String Category1IDContains = null; public String Category1IDLike = null; public ArrayList Category1IDBetween = null; public ArrayList Category1IDIn = null; public String Description = null; public String DescriptionStartsWith = null; public String DescriptionEndsWith = null; public String DescriptionContains = null; public String DescriptionLike = null; public ArrayList DescriptionBetween = null; public ArrayList DescriptionIn = null; public Boolean DefaultCategory = null; public Date LastSavedDateTime = null; public Date LastSavedDateTimeGreaterThanOrEqualTo = null; public Date LastSavedDateTimeGreaterThan = null; public Date LastSavedDateTimeLessThan = null; public Date LastSavedDateTimeLessThanOrEqualTo = null; public Date LastSavedDateTimeNotEqualTo = null; public ArrayList LastSavedDateTimeBetween = null; public ArrayList LastSavedDateTimeIn = null; public ArrayList Picture = null; public String getCategory1ID() { return Category1ID; } public IN_Category1Query setCategory1ID(String value) { this.Category1ID = value; return this; } public String getCategory1IDStartsWith() { return Category1IDStartsWith; } public IN_Category1Query setCategory1IDStartsWith(String value) { this.Category1IDStartsWith = value; return this; } public String getCategory1IDEndsWith() { return Category1IDEndsWith; } public IN_Category1Query setCategory1IDEndsWith(String value) { this.Category1IDEndsWith = value; return this; } public String getCategory1IDContains() { return Category1IDContains; } public IN_Category1Query setCategory1IDContains(String value) { this.Category1IDContains = value; return this; } public String getCategory1IDLike() { return Category1IDLike; } public IN_Category1Query setCategory1IDLike(String value) { this.Category1IDLike = value; return this; } public ArrayList getCategory1IDBetween() { return Category1IDBetween; } public IN_Category1Query setCategory1IDBetween(ArrayList value) { this.Category1IDBetween = value; return this; } public ArrayList getCategory1IDIn() { return Category1IDIn; } public IN_Category1Query setCategory1IDIn(ArrayList value) { this.Category1IDIn = value; return this; } public String getDescription() { return Description; } public IN_Category1Query setDescription(String value) { this.Description = value; return this; } public String getDescriptionStartsWith() { return DescriptionStartsWith; } public IN_Category1Query setDescriptionStartsWith(String value) { this.DescriptionStartsWith = value; return this; } public String getDescriptionEndsWith() { return DescriptionEndsWith; } public IN_Category1Query setDescriptionEndsWith(String value) { this.DescriptionEndsWith = value; return this; } public String getDescriptionContains() { return DescriptionContains; } public IN_Category1Query setDescriptionContains(String value) { this.DescriptionContains = value; return this; } public String getDescriptionLike() { return DescriptionLike; } public IN_Category1Query setDescriptionLike(String value) { this.DescriptionLike = value; return this; } public ArrayList getDescriptionBetween() { return DescriptionBetween; } public IN_Category1Query setDescriptionBetween(ArrayList value) { this.DescriptionBetween = value; return this; } public ArrayList getDescriptionIn() { return DescriptionIn; } public IN_Category1Query setDescriptionIn(ArrayList value) { this.DescriptionIn = value; return this; } public Boolean isDefaultCategory() { return DefaultCategory; } public IN_Category1Query setDefaultCategory(Boolean value) { this.DefaultCategory = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public IN_Category1Query setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getLastSavedDateTimeGreaterThanOrEqualTo() { return LastSavedDateTimeGreaterThanOrEqualTo; } public IN_Category1Query setLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.LastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeGreaterThan() { return LastSavedDateTimeGreaterThan; } public IN_Category1Query setLastSavedDateTimeGreaterThan(Date value) { this.LastSavedDateTimeGreaterThan = value; return this; } public Date getLastSavedDateTimeLessThan() { return LastSavedDateTimeLessThan; } public IN_Category1Query setLastSavedDateTimeLessThan(Date value) { this.LastSavedDateTimeLessThan = value; return this; } public Date getLastSavedDateTimeLessThanOrEqualTo() { return LastSavedDateTimeLessThanOrEqualTo; } public IN_Category1Query setLastSavedDateTimeLessThanOrEqualTo(Date value) { this.LastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeNotEqualTo() { return LastSavedDateTimeNotEqualTo; } public IN_Category1Query setLastSavedDateTimeNotEqualTo(Date value) { this.LastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getLastSavedDateTimeBetween() { return LastSavedDateTimeBetween; } public IN_Category1Query setLastSavedDateTimeBetween(ArrayList value) { this.LastSavedDateTimeBetween = value; return this; } public ArrayList getLastSavedDateTimeIn() { return LastSavedDateTimeIn; } public IN_Category1Query setLastSavedDateTimeIn(ArrayList value) { this.LastSavedDateTimeIn = value; return this; } public ArrayList getPicture() { return Picture; } public IN_Category1Query setPicture(ArrayList value) { this.Picture = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class IN_Category1CustomFieldsQuery extends QueryDb implements IReturn> { public String RecID = null; public String RecIDStartsWith = null; public String RecIDEndsWith = null; public String RecIDContains = null; public String RecIDLike = null; public ArrayList RecIDBetween = null; public ArrayList RecIDIn = null; public String SettingName = null; public String SettingNameStartsWith = null; public String SettingNameEndsWith = null; public String SettingNameContains = null; public String SettingNameLike = null; public ArrayList SettingNameBetween = null; public ArrayList SettingNameIn = null; public String SettingDescription = null; public String SettingDescriptionStartsWith = null; public String SettingDescriptionEndsWith = null; public String SettingDescriptionContains = null; public String SettingDescriptionLike = null; public ArrayList SettingDescriptionBetween = null; public ArrayList SettingDescriptionIn = null; public Integer CellType = null; public Integer CellTypeGreaterThanOrEqualTo = null; public Integer CellTypeGreaterThan = null; public Integer CellTypeLessThan = null; public Integer CellTypeLessThanOrEqualTo = null; public Integer CellTypeNotEqualTo = null; public ArrayList CellTypeBetween = null; public ArrayList CellTypeIn = null; public String FieldParameter = null; public String FieldParameterStartsWith = null; public String FieldParameterEndsWith = null; public String FieldParameterContains = null; public String FieldParameterLike = null; public ArrayList FieldParameterBetween = null; public ArrayList FieldParameterIn = null; public UUID SY_Plugin_RecID = null; public ArrayList SY_Plugin_RecIDIn = null; public Date LastSavedDateTime = null; public Date LastSavedDateTimeGreaterThanOrEqualTo = null; public Date LastSavedDateTimeGreaterThan = null; public Date LastSavedDateTimeLessThan = null; public Date LastSavedDateTimeLessThanOrEqualTo = null; public Date LastSavedDateTimeNotEqualTo = null; public ArrayList LastSavedDateTimeBetween = null; public ArrayList LastSavedDateTimeIn = null; public Integer DisplayOrder = null; public Integer DisplayOrderGreaterThanOrEqualTo = null; public Integer DisplayOrderGreaterThan = null; public Integer DisplayOrderLessThan = null; public Integer DisplayOrderLessThanOrEqualTo = null; public Integer DisplayOrderNotEqualTo = null; public ArrayList DisplayOrderBetween = null; public ArrayList DisplayOrderIn = null; public String getRecID() { return RecID; } public IN_Category1CustomFieldsQuery setRecID(String value) { this.RecID = value; return this; } public String getRecIDStartsWith() { return RecIDStartsWith; } public IN_Category1CustomFieldsQuery setRecIDStartsWith(String value) { this.RecIDStartsWith = value; return this; } public String getRecIDEndsWith() { return RecIDEndsWith; } public IN_Category1CustomFieldsQuery setRecIDEndsWith(String value) { this.RecIDEndsWith = value; return this; } public String getRecIDContains() { return RecIDContains; } public IN_Category1CustomFieldsQuery setRecIDContains(String value) { this.RecIDContains = value; return this; } public String getRecIDLike() { return RecIDLike; } public IN_Category1CustomFieldsQuery setRecIDLike(String value) { this.RecIDLike = value; return this; } public ArrayList getRecIDBetween() { return RecIDBetween; } public IN_Category1CustomFieldsQuery setRecIDBetween(ArrayList value) { this.RecIDBetween = value; return this; } public ArrayList getRecIDIn() { return RecIDIn; } public IN_Category1CustomFieldsQuery setRecIDIn(ArrayList value) { this.RecIDIn = value; return this; } public String getSettingName() { return SettingName; } public IN_Category1CustomFieldsQuery setSettingName(String value) { this.SettingName = value; return this; } public String getSettingNameStartsWith() { return SettingNameStartsWith; } public IN_Category1CustomFieldsQuery setSettingNameStartsWith(String value) { this.SettingNameStartsWith = value; return this; } public String getSettingNameEndsWith() { return SettingNameEndsWith; } public IN_Category1CustomFieldsQuery setSettingNameEndsWith(String value) { this.SettingNameEndsWith = value; return this; } public String getSettingNameContains() { return SettingNameContains; } public IN_Category1CustomFieldsQuery setSettingNameContains(String value) { this.SettingNameContains = value; return this; } public String getSettingNameLike() { return SettingNameLike; } public IN_Category1CustomFieldsQuery setSettingNameLike(String value) { this.SettingNameLike = value; return this; } public ArrayList getSettingNameBetween() { return SettingNameBetween; } public IN_Category1CustomFieldsQuery setSettingNameBetween(ArrayList value) { this.SettingNameBetween = value; return this; } public ArrayList getSettingNameIn() { return SettingNameIn; } public IN_Category1CustomFieldsQuery setSettingNameIn(ArrayList value) { this.SettingNameIn = value; return this; } public String getSettingDescription() { return SettingDescription; } public IN_Category1CustomFieldsQuery setSettingDescription(String value) { this.SettingDescription = value; return this; } public String getSettingDescriptionStartsWith() { return SettingDescriptionStartsWith; } public IN_Category1CustomFieldsQuery setSettingDescriptionStartsWith(String value) { this.SettingDescriptionStartsWith = value; return this; } public String getSettingDescriptionEndsWith() { return SettingDescriptionEndsWith; } public IN_Category1CustomFieldsQuery setSettingDescriptionEndsWith(String value) { this.SettingDescriptionEndsWith = value; return this; } public String getSettingDescriptionContains() { return SettingDescriptionContains; } public IN_Category1CustomFieldsQuery setSettingDescriptionContains(String value) { this.SettingDescriptionContains = value; return this; } public String getSettingDescriptionLike() { return SettingDescriptionLike; } public IN_Category1CustomFieldsQuery setSettingDescriptionLike(String value) { this.SettingDescriptionLike = value; return this; } public ArrayList getSettingDescriptionBetween() { return SettingDescriptionBetween; } public IN_Category1CustomFieldsQuery setSettingDescriptionBetween(ArrayList value) { this.SettingDescriptionBetween = value; return this; } public ArrayList getSettingDescriptionIn() { return SettingDescriptionIn; } public IN_Category1CustomFieldsQuery setSettingDescriptionIn(ArrayList value) { this.SettingDescriptionIn = value; return this; } public Integer getCellType() { return CellType; } public IN_Category1CustomFieldsQuery setCellType(Integer value) { this.CellType = value; return this; } public Integer getCellTypeGreaterThanOrEqualTo() { return CellTypeGreaterThanOrEqualTo; } public IN_Category1CustomFieldsQuery setCellTypeGreaterThanOrEqualTo(Integer value) { this.CellTypeGreaterThanOrEqualTo = value; return this; } public Integer getCellTypeGreaterThan() { return CellTypeGreaterThan; } public IN_Category1CustomFieldsQuery setCellTypeGreaterThan(Integer value) { this.CellTypeGreaterThan = value; return this; } public Integer getCellTypeLessThan() { return CellTypeLessThan; } public IN_Category1CustomFieldsQuery setCellTypeLessThan(Integer value) { this.CellTypeLessThan = value; return this; } public Integer getCellTypeLessThanOrEqualTo() { return CellTypeLessThanOrEqualTo; } public IN_Category1CustomFieldsQuery setCellTypeLessThanOrEqualTo(Integer value) { this.CellTypeLessThanOrEqualTo = value; return this; } public Integer getCellTypeNotEqualTo() { return CellTypeNotEqualTo; } public IN_Category1CustomFieldsQuery setCellTypeNotEqualTo(Integer value) { this.CellTypeNotEqualTo = value; return this; } public ArrayList getCellTypeBetween() { return CellTypeBetween; } public IN_Category1CustomFieldsQuery setCellTypeBetween(ArrayList value) { this.CellTypeBetween = value; return this; } public ArrayList getCellTypeIn() { return CellTypeIn; } public IN_Category1CustomFieldsQuery setCellTypeIn(ArrayList value) { this.CellTypeIn = value; return this; } public String getFieldParameter() { return FieldParameter; } public IN_Category1CustomFieldsQuery setFieldParameter(String value) { this.FieldParameter = value; return this; } public String getFieldParameterStartsWith() { return FieldParameterStartsWith; } public IN_Category1CustomFieldsQuery setFieldParameterStartsWith(String value) { this.FieldParameterStartsWith = value; return this; } public String getFieldParameterEndsWith() { return FieldParameterEndsWith; } public IN_Category1CustomFieldsQuery setFieldParameterEndsWith(String value) { this.FieldParameterEndsWith = value; return this; } public String getFieldParameterContains() { return FieldParameterContains; } public IN_Category1CustomFieldsQuery setFieldParameterContains(String value) { this.FieldParameterContains = value; return this; } public String getFieldParameterLike() { return FieldParameterLike; } public IN_Category1CustomFieldsQuery setFieldParameterLike(String value) { this.FieldParameterLike = value; return this; } public ArrayList getFieldParameterBetween() { return FieldParameterBetween; } public IN_Category1CustomFieldsQuery setFieldParameterBetween(ArrayList value) { this.FieldParameterBetween = value; return this; } public ArrayList getFieldParameterIn() { return FieldParameterIn; } public IN_Category1CustomFieldsQuery setFieldParameterIn(ArrayList value) { this.FieldParameterIn = value; return this; } public UUID getSyPluginRecID() { return SY_Plugin_RecID; } public IN_Category1CustomFieldsQuery setSyPluginRecID(UUID value) { this.SY_Plugin_RecID = value; return this; } public ArrayList getSyPluginRecIDIn() { return SY_Plugin_RecIDIn; } public IN_Category1CustomFieldsQuery setSyPluginRecIDIn(ArrayList value) { this.SY_Plugin_RecIDIn = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public IN_Category1CustomFieldsQuery setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getLastSavedDateTimeGreaterThanOrEqualTo() { return LastSavedDateTimeGreaterThanOrEqualTo; } public IN_Category1CustomFieldsQuery setLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.LastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeGreaterThan() { return LastSavedDateTimeGreaterThan; } public IN_Category1CustomFieldsQuery setLastSavedDateTimeGreaterThan(Date value) { this.LastSavedDateTimeGreaterThan = value; return this; } public Date getLastSavedDateTimeLessThan() { return LastSavedDateTimeLessThan; } public IN_Category1CustomFieldsQuery setLastSavedDateTimeLessThan(Date value) { this.LastSavedDateTimeLessThan = value; return this; } public Date getLastSavedDateTimeLessThanOrEqualTo() { return LastSavedDateTimeLessThanOrEqualTo; } public IN_Category1CustomFieldsQuery setLastSavedDateTimeLessThanOrEqualTo(Date value) { this.LastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeNotEqualTo() { return LastSavedDateTimeNotEqualTo; } public IN_Category1CustomFieldsQuery setLastSavedDateTimeNotEqualTo(Date value) { this.LastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getLastSavedDateTimeBetween() { return LastSavedDateTimeBetween; } public IN_Category1CustomFieldsQuery setLastSavedDateTimeBetween(ArrayList value) { this.LastSavedDateTimeBetween = value; return this; } public ArrayList getLastSavedDateTimeIn() { return LastSavedDateTimeIn; } public IN_Category1CustomFieldsQuery setLastSavedDateTimeIn(ArrayList value) { this.LastSavedDateTimeIn = value; return this; } public Integer getDisplayOrder() { return DisplayOrder; } public IN_Category1CustomFieldsQuery setDisplayOrder(Integer value) { this.DisplayOrder = value; return this; } public Integer getDisplayOrderGreaterThanOrEqualTo() { return DisplayOrderGreaterThanOrEqualTo; } public IN_Category1CustomFieldsQuery setDisplayOrderGreaterThanOrEqualTo(Integer value) { this.DisplayOrderGreaterThanOrEqualTo = value; return this; } public Integer getDisplayOrderGreaterThan() { return DisplayOrderGreaterThan; } public IN_Category1CustomFieldsQuery setDisplayOrderGreaterThan(Integer value) { this.DisplayOrderGreaterThan = value; return this; } public Integer getDisplayOrderLessThan() { return DisplayOrderLessThan; } public IN_Category1CustomFieldsQuery setDisplayOrderLessThan(Integer value) { this.DisplayOrderLessThan = value; return this; } public Integer getDisplayOrderLessThanOrEqualTo() { return DisplayOrderLessThanOrEqualTo; } public IN_Category1CustomFieldsQuery setDisplayOrderLessThanOrEqualTo(Integer value) { this.DisplayOrderLessThanOrEqualTo = value; return this; } public Integer getDisplayOrderNotEqualTo() { return DisplayOrderNotEqualTo; } public IN_Category1CustomFieldsQuery setDisplayOrderNotEqualTo(Integer value) { this.DisplayOrderNotEqualTo = value; return this; } public ArrayList getDisplayOrderBetween() { return DisplayOrderBetween; } public IN_Category1CustomFieldsQuery setDisplayOrderBetween(ArrayList value) { this.DisplayOrderBetween = value; return this; } public ArrayList getDisplayOrderIn() { return DisplayOrderIn; } public IN_Category1CustomFieldsQuery setDisplayOrderIn(ArrayList value) { this.DisplayOrderIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class IN_Category1CustomValuesQuery extends QueryDb implements IReturn> { public String RecID = null; public String RecIDStartsWith = null; public String RecIDEndsWith = null; public String RecIDContains = null; public String RecIDLike = null; public ArrayList RecIDBetween = null; public ArrayList RecIDIn = null; public String IN_Category1_RecID = null; public String IN_Category1_RecIDStartsWith = null; public String IN_Category1_RecIDEndsWith = null; public String IN_Category1_RecIDContains = null; public String IN_Category1_RecIDLike = null; public ArrayList IN_Category1_RecIDBetween = null; public ArrayList IN_Category1_RecIDIn = null; public String IN_Category1CustomFields_RecID = null; public String IN_Category1CustomFields_RecIDStartsWith = null; public String IN_Category1CustomFields_RecIDEndsWith = null; public String IN_Category1CustomFields_RecIDContains = null; public String IN_Category1CustomFields_RecIDLike = null; public ArrayList IN_Category1CustomFields_RecIDBetween = null; public ArrayList IN_Category1CustomFields_RecIDIn = null; public String Contents = null; public String ContentsStartsWith = null; public String ContentsEndsWith = null; public String ContentsContains = null; public String ContentsLike = null; public ArrayList ContentsBetween = null; public ArrayList ContentsIn = null; public Date LastSavedDateTime = null; public Date LastSavedDateTimeGreaterThanOrEqualTo = null; public Date LastSavedDateTimeGreaterThan = null; public Date LastSavedDateTimeLessThan = null; public Date LastSavedDateTimeLessThanOrEqualTo = null; public Date LastSavedDateTimeNotEqualTo = null; public ArrayList LastSavedDateTimeBetween = null; public ArrayList LastSavedDateTimeIn = null; public String getRecID() { return RecID; } public IN_Category1CustomValuesQuery setRecID(String value) { this.RecID = value; return this; } public String getRecIDStartsWith() { return RecIDStartsWith; } public IN_Category1CustomValuesQuery setRecIDStartsWith(String value) { this.RecIDStartsWith = value; return this; } public String getRecIDEndsWith() { return RecIDEndsWith; } public IN_Category1CustomValuesQuery setRecIDEndsWith(String value) { this.RecIDEndsWith = value; return this; } public String getRecIDContains() { return RecIDContains; } public IN_Category1CustomValuesQuery setRecIDContains(String value) { this.RecIDContains = value; return this; } public String getRecIDLike() { return RecIDLike; } public IN_Category1CustomValuesQuery setRecIDLike(String value) { this.RecIDLike = value; return this; } public ArrayList getRecIDBetween() { return RecIDBetween; } public IN_Category1CustomValuesQuery setRecIDBetween(ArrayList value) { this.RecIDBetween = value; return this; } public ArrayList getRecIDIn() { return RecIDIn; } public IN_Category1CustomValuesQuery setRecIDIn(ArrayList value) { this.RecIDIn = value; return this; } public String getInCategory1RecID() { return IN_Category1_RecID; } public IN_Category1CustomValuesQuery setInCategory1RecID(String value) { this.IN_Category1_RecID = value; return this; } public String getInCategory1RecIDStartsWith() { return IN_Category1_RecIDStartsWith; } public IN_Category1CustomValuesQuery setInCategory1RecIDStartsWith(String value) { this.IN_Category1_RecIDStartsWith = value; return this; } public String getInCategory1RecIDEndsWith() { return IN_Category1_RecIDEndsWith; } public IN_Category1CustomValuesQuery setInCategory1RecIDEndsWith(String value) { this.IN_Category1_RecIDEndsWith = value; return this; } public String getInCategory1RecIDContains() { return IN_Category1_RecIDContains; } public IN_Category1CustomValuesQuery setInCategory1RecIDContains(String value) { this.IN_Category1_RecIDContains = value; return this; } public String getInCategory1RecIDLike() { return IN_Category1_RecIDLike; } public IN_Category1CustomValuesQuery setInCategory1RecIDLike(String value) { this.IN_Category1_RecIDLike = value; return this; } public ArrayList getInCategory1RecIDBetween() { return IN_Category1_RecIDBetween; } public IN_Category1CustomValuesQuery setInCategory1RecIDBetween(ArrayList value) { this.IN_Category1_RecIDBetween = value; return this; } public ArrayList getInCategory1RecIDIn() { return IN_Category1_RecIDIn; } public IN_Category1CustomValuesQuery setInCategory1RecIDIn(ArrayList value) { this.IN_Category1_RecIDIn = value; return this; } public String getInCategory1CustomFieldsRecID() { return IN_Category1CustomFields_RecID; } public IN_Category1CustomValuesQuery setInCategory1CustomFieldsRecID(String value) { this.IN_Category1CustomFields_RecID = value; return this; } public String getInCategory1CustomFieldsRecIDStartsWith() { return IN_Category1CustomFields_RecIDStartsWith; } public IN_Category1CustomValuesQuery setInCategory1CustomFieldsRecIDStartsWith(String value) { this.IN_Category1CustomFields_RecIDStartsWith = value; return this; } public String getInCategory1CustomFieldsRecIDEndsWith() { return IN_Category1CustomFields_RecIDEndsWith; } public IN_Category1CustomValuesQuery setInCategory1CustomFieldsRecIDEndsWith(String value) { this.IN_Category1CustomFields_RecIDEndsWith = value; return this; } public String getInCategory1CustomFieldsRecIDContains() { return IN_Category1CustomFields_RecIDContains; } public IN_Category1CustomValuesQuery setInCategory1CustomFieldsRecIDContains(String value) { this.IN_Category1CustomFields_RecIDContains = value; return this; } public String getInCategory1CustomFieldsRecIDLike() { return IN_Category1CustomFields_RecIDLike; } public IN_Category1CustomValuesQuery setInCategory1CustomFieldsRecIDLike(String value) { this.IN_Category1CustomFields_RecIDLike = value; return this; } public ArrayList getInCategory1CustomFieldsRecIDBetween() { return IN_Category1CustomFields_RecIDBetween; } public IN_Category1CustomValuesQuery setInCategory1CustomFieldsRecIDBetween(ArrayList value) { this.IN_Category1CustomFields_RecIDBetween = value; return this; } public ArrayList getInCategory1CustomFieldsRecIDIn() { return IN_Category1CustomFields_RecIDIn; } public IN_Category1CustomValuesQuery setInCategory1CustomFieldsRecIDIn(ArrayList value) { this.IN_Category1CustomFields_RecIDIn = value; return this; } public String getContents() { return Contents; } public IN_Category1CustomValuesQuery setContents(String value) { this.Contents = value; return this; } public String getContentsStartsWith() { return ContentsStartsWith; } public IN_Category1CustomValuesQuery setContentsStartsWith(String value) { this.ContentsStartsWith = value; return this; } public String getContentsEndsWith() { return ContentsEndsWith; } public IN_Category1CustomValuesQuery setContentsEndsWith(String value) { this.ContentsEndsWith = value; return this; } public String getContentsContains() { return ContentsContains; } public IN_Category1CustomValuesQuery setContentsContains(String value) { this.ContentsContains = value; return this; } public String getContentsLike() { return ContentsLike; } public IN_Category1CustomValuesQuery setContentsLike(String value) { this.ContentsLike = value; return this; } public ArrayList getContentsBetween() { return ContentsBetween; } public IN_Category1CustomValuesQuery setContentsBetween(ArrayList value) { this.ContentsBetween = value; return this; } public ArrayList getContentsIn() { return ContentsIn; } public IN_Category1CustomValuesQuery setContentsIn(ArrayList value) { this.ContentsIn = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public IN_Category1CustomValuesQuery setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getLastSavedDateTimeGreaterThanOrEqualTo() { return LastSavedDateTimeGreaterThanOrEqualTo; } public IN_Category1CustomValuesQuery setLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.LastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeGreaterThan() { return LastSavedDateTimeGreaterThan; } public IN_Category1CustomValuesQuery setLastSavedDateTimeGreaterThan(Date value) { this.LastSavedDateTimeGreaterThan = value; return this; } public Date getLastSavedDateTimeLessThan() { return LastSavedDateTimeLessThan; } public IN_Category1CustomValuesQuery setLastSavedDateTimeLessThan(Date value) { this.LastSavedDateTimeLessThan = value; return this; } public Date getLastSavedDateTimeLessThanOrEqualTo() { return LastSavedDateTimeLessThanOrEqualTo; } public IN_Category1CustomValuesQuery setLastSavedDateTimeLessThanOrEqualTo(Date value) { this.LastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeNotEqualTo() { return LastSavedDateTimeNotEqualTo; } public IN_Category1CustomValuesQuery setLastSavedDateTimeNotEqualTo(Date value) { this.LastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getLastSavedDateTimeBetween() { return LastSavedDateTimeBetween; } public IN_Category1CustomValuesQuery setLastSavedDateTimeBetween(ArrayList value) { this.LastSavedDateTimeBetween = value; return this; } public ArrayList getLastSavedDateTimeIn() { return LastSavedDateTimeIn; } public IN_Category1CustomValuesQuery setLastSavedDateTimeIn(ArrayList value) { this.LastSavedDateTimeIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @Route(Path="/Queries/IN_Category2", Verbs="GET") @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class IN_Category2Query extends QueryDb implements IReturn> { public String Category2ID = null; public String Category2IDStartsWith = null; public String Category2IDEndsWith = null; public String Category2IDContains = null; public String Category2IDLike = null; public ArrayList Category2IDBetween = null; public ArrayList Category2IDIn = null; public String Description = null; public String DescriptionStartsWith = null; public String DescriptionEndsWith = null; public String DescriptionContains = null; public String DescriptionLike = null; public ArrayList DescriptionBetween = null; public ArrayList DescriptionIn = null; public Boolean DefaultCategory = null; public Date LastSavedDateTime = null; public Date LastSavedDateTimeGreaterThanOrEqualTo = null; public Date LastSavedDateTimeGreaterThan = null; public Date LastSavedDateTimeLessThan = null; public Date LastSavedDateTimeLessThanOrEqualTo = null; public Date LastSavedDateTimeNotEqualTo = null; public ArrayList LastSavedDateTimeBetween = null; public ArrayList LastSavedDateTimeIn = null; public ArrayList Picture = null; public String getCategory2ID() { return Category2ID; } public IN_Category2Query setCategory2ID(String value) { this.Category2ID = value; return this; } public String getCategory2IDStartsWith() { return Category2IDStartsWith; } public IN_Category2Query setCategory2IDStartsWith(String value) { this.Category2IDStartsWith = value; return this; } public String getCategory2IDEndsWith() { return Category2IDEndsWith; } public IN_Category2Query setCategory2IDEndsWith(String value) { this.Category2IDEndsWith = value; return this; } public String getCategory2IDContains() { return Category2IDContains; } public IN_Category2Query setCategory2IDContains(String value) { this.Category2IDContains = value; return this; } public String getCategory2IDLike() { return Category2IDLike; } public IN_Category2Query setCategory2IDLike(String value) { this.Category2IDLike = value; return this; } public ArrayList getCategory2IDBetween() { return Category2IDBetween; } public IN_Category2Query setCategory2IDBetween(ArrayList value) { this.Category2IDBetween = value; return this; } public ArrayList getCategory2IDIn() { return Category2IDIn; } public IN_Category2Query setCategory2IDIn(ArrayList value) { this.Category2IDIn = value; return this; } public String getDescription() { return Description; } public IN_Category2Query setDescription(String value) { this.Description = value; return this; } public String getDescriptionStartsWith() { return DescriptionStartsWith; } public IN_Category2Query setDescriptionStartsWith(String value) { this.DescriptionStartsWith = value; return this; } public String getDescriptionEndsWith() { return DescriptionEndsWith; } public IN_Category2Query setDescriptionEndsWith(String value) { this.DescriptionEndsWith = value; return this; } public String getDescriptionContains() { return DescriptionContains; } public IN_Category2Query setDescriptionContains(String value) { this.DescriptionContains = value; return this; } public String getDescriptionLike() { return DescriptionLike; } public IN_Category2Query setDescriptionLike(String value) { this.DescriptionLike = value; return this; } public ArrayList getDescriptionBetween() { return DescriptionBetween; } public IN_Category2Query setDescriptionBetween(ArrayList value) { this.DescriptionBetween = value; return this; } public ArrayList getDescriptionIn() { return DescriptionIn; } public IN_Category2Query setDescriptionIn(ArrayList value) { this.DescriptionIn = value; return this; } public Boolean isDefaultCategory() { return DefaultCategory; } public IN_Category2Query setDefaultCategory(Boolean value) { this.DefaultCategory = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public IN_Category2Query setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getLastSavedDateTimeGreaterThanOrEqualTo() { return LastSavedDateTimeGreaterThanOrEqualTo; } public IN_Category2Query setLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.LastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeGreaterThan() { return LastSavedDateTimeGreaterThan; } public IN_Category2Query setLastSavedDateTimeGreaterThan(Date value) { this.LastSavedDateTimeGreaterThan = value; return this; } public Date getLastSavedDateTimeLessThan() { return LastSavedDateTimeLessThan; } public IN_Category2Query setLastSavedDateTimeLessThan(Date value) { this.LastSavedDateTimeLessThan = value; return this; } public Date getLastSavedDateTimeLessThanOrEqualTo() { return LastSavedDateTimeLessThanOrEqualTo; } public IN_Category2Query setLastSavedDateTimeLessThanOrEqualTo(Date value) { this.LastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeNotEqualTo() { return LastSavedDateTimeNotEqualTo; } public IN_Category2Query setLastSavedDateTimeNotEqualTo(Date value) { this.LastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getLastSavedDateTimeBetween() { return LastSavedDateTimeBetween; } public IN_Category2Query setLastSavedDateTimeBetween(ArrayList value) { this.LastSavedDateTimeBetween = value; return this; } public ArrayList getLastSavedDateTimeIn() { return LastSavedDateTimeIn; } public IN_Category2Query setLastSavedDateTimeIn(ArrayList value) { this.LastSavedDateTimeIn = value; return this; } public ArrayList getPicture() { return Picture; } public IN_Category2Query setPicture(ArrayList value) { this.Picture = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class IN_Category2CustomFieldsQuery extends QueryDb implements IReturn> { public String RecID = null; public String RecIDStartsWith = null; public String RecIDEndsWith = null; public String RecIDContains = null; public String RecIDLike = null; public ArrayList RecIDBetween = null; public ArrayList RecIDIn = null; public String SettingName = null; public String SettingNameStartsWith = null; public String SettingNameEndsWith = null; public String SettingNameContains = null; public String SettingNameLike = null; public ArrayList SettingNameBetween = null; public ArrayList SettingNameIn = null; public String SettingDescription = null; public String SettingDescriptionStartsWith = null; public String SettingDescriptionEndsWith = null; public String SettingDescriptionContains = null; public String SettingDescriptionLike = null; public ArrayList SettingDescriptionBetween = null; public ArrayList SettingDescriptionIn = null; public Integer CellType = null; public Integer CellTypeGreaterThanOrEqualTo = null; public Integer CellTypeGreaterThan = null; public Integer CellTypeLessThan = null; public Integer CellTypeLessThanOrEqualTo = null; public Integer CellTypeNotEqualTo = null; public ArrayList CellTypeBetween = null; public ArrayList CellTypeIn = null; public String FieldParameter = null; public String FieldParameterStartsWith = null; public String FieldParameterEndsWith = null; public String FieldParameterContains = null; public String FieldParameterLike = null; public ArrayList FieldParameterBetween = null; public ArrayList FieldParameterIn = null; public UUID SY_Plugin_RecID = null; public ArrayList SY_Plugin_RecIDIn = null; public Date LastSavedDateTime = null; public Date LastSavedDateTimeGreaterThanOrEqualTo = null; public Date LastSavedDateTimeGreaterThan = null; public Date LastSavedDateTimeLessThan = null; public Date LastSavedDateTimeLessThanOrEqualTo = null; public Date LastSavedDateTimeNotEqualTo = null; public ArrayList LastSavedDateTimeBetween = null; public ArrayList LastSavedDateTimeIn = null; public Integer DisplayOrder = null; public Integer DisplayOrderGreaterThanOrEqualTo = null; public Integer DisplayOrderGreaterThan = null; public Integer DisplayOrderLessThan = null; public Integer DisplayOrderLessThanOrEqualTo = null; public Integer DisplayOrderNotEqualTo = null; public ArrayList DisplayOrderBetween = null; public ArrayList DisplayOrderIn = null; public String getRecID() { return RecID; } public IN_Category2CustomFieldsQuery setRecID(String value) { this.RecID = value; return this; } public String getRecIDStartsWith() { return RecIDStartsWith; } public IN_Category2CustomFieldsQuery setRecIDStartsWith(String value) { this.RecIDStartsWith = value; return this; } public String getRecIDEndsWith() { return RecIDEndsWith; } public IN_Category2CustomFieldsQuery setRecIDEndsWith(String value) { this.RecIDEndsWith = value; return this; } public String getRecIDContains() { return RecIDContains; } public IN_Category2CustomFieldsQuery setRecIDContains(String value) { this.RecIDContains = value; return this; } public String getRecIDLike() { return RecIDLike; } public IN_Category2CustomFieldsQuery setRecIDLike(String value) { this.RecIDLike = value; return this; } public ArrayList getRecIDBetween() { return RecIDBetween; } public IN_Category2CustomFieldsQuery setRecIDBetween(ArrayList value) { this.RecIDBetween = value; return this; } public ArrayList getRecIDIn() { return RecIDIn; } public IN_Category2CustomFieldsQuery setRecIDIn(ArrayList value) { this.RecIDIn = value; return this; } public String getSettingName() { return SettingName; } public IN_Category2CustomFieldsQuery setSettingName(String value) { this.SettingName = value; return this; } public String getSettingNameStartsWith() { return SettingNameStartsWith; } public IN_Category2CustomFieldsQuery setSettingNameStartsWith(String value) { this.SettingNameStartsWith = value; return this; } public String getSettingNameEndsWith() { return SettingNameEndsWith; } public IN_Category2CustomFieldsQuery setSettingNameEndsWith(String value) { this.SettingNameEndsWith = value; return this; } public String getSettingNameContains() { return SettingNameContains; } public IN_Category2CustomFieldsQuery setSettingNameContains(String value) { this.SettingNameContains = value; return this; } public String getSettingNameLike() { return SettingNameLike; } public IN_Category2CustomFieldsQuery setSettingNameLike(String value) { this.SettingNameLike = value; return this; } public ArrayList getSettingNameBetween() { return SettingNameBetween; } public IN_Category2CustomFieldsQuery setSettingNameBetween(ArrayList value) { this.SettingNameBetween = value; return this; } public ArrayList getSettingNameIn() { return SettingNameIn; } public IN_Category2CustomFieldsQuery setSettingNameIn(ArrayList value) { this.SettingNameIn = value; return this; } public String getSettingDescription() { return SettingDescription; } public IN_Category2CustomFieldsQuery setSettingDescription(String value) { this.SettingDescription = value; return this; } public String getSettingDescriptionStartsWith() { return SettingDescriptionStartsWith; } public IN_Category2CustomFieldsQuery setSettingDescriptionStartsWith(String value) { this.SettingDescriptionStartsWith = value; return this; } public String getSettingDescriptionEndsWith() { return SettingDescriptionEndsWith; } public IN_Category2CustomFieldsQuery setSettingDescriptionEndsWith(String value) { this.SettingDescriptionEndsWith = value; return this; } public String getSettingDescriptionContains() { return SettingDescriptionContains; } public IN_Category2CustomFieldsQuery setSettingDescriptionContains(String value) { this.SettingDescriptionContains = value; return this; } public String getSettingDescriptionLike() { return SettingDescriptionLike; } public IN_Category2CustomFieldsQuery setSettingDescriptionLike(String value) { this.SettingDescriptionLike = value; return this; } public ArrayList getSettingDescriptionBetween() { return SettingDescriptionBetween; } public IN_Category2CustomFieldsQuery setSettingDescriptionBetween(ArrayList value) { this.SettingDescriptionBetween = value; return this; } public ArrayList getSettingDescriptionIn() { return SettingDescriptionIn; } public IN_Category2CustomFieldsQuery setSettingDescriptionIn(ArrayList value) { this.SettingDescriptionIn = value; return this; } public Integer getCellType() { return CellType; } public IN_Category2CustomFieldsQuery setCellType(Integer value) { this.CellType = value; return this; } public Integer getCellTypeGreaterThanOrEqualTo() { return CellTypeGreaterThanOrEqualTo; } public IN_Category2CustomFieldsQuery setCellTypeGreaterThanOrEqualTo(Integer value) { this.CellTypeGreaterThanOrEqualTo = value; return this; } public Integer getCellTypeGreaterThan() { return CellTypeGreaterThan; } public IN_Category2CustomFieldsQuery setCellTypeGreaterThan(Integer value) { this.CellTypeGreaterThan = value; return this; } public Integer getCellTypeLessThan() { return CellTypeLessThan; } public IN_Category2CustomFieldsQuery setCellTypeLessThan(Integer value) { this.CellTypeLessThan = value; return this; } public Integer getCellTypeLessThanOrEqualTo() { return CellTypeLessThanOrEqualTo; } public IN_Category2CustomFieldsQuery setCellTypeLessThanOrEqualTo(Integer value) { this.CellTypeLessThanOrEqualTo = value; return this; } public Integer getCellTypeNotEqualTo() { return CellTypeNotEqualTo; } public IN_Category2CustomFieldsQuery setCellTypeNotEqualTo(Integer value) { this.CellTypeNotEqualTo = value; return this; } public ArrayList getCellTypeBetween() { return CellTypeBetween; } public IN_Category2CustomFieldsQuery setCellTypeBetween(ArrayList value) { this.CellTypeBetween = value; return this; } public ArrayList getCellTypeIn() { return CellTypeIn; } public IN_Category2CustomFieldsQuery setCellTypeIn(ArrayList value) { this.CellTypeIn = value; return this; } public String getFieldParameter() { return FieldParameter; } public IN_Category2CustomFieldsQuery setFieldParameter(String value) { this.FieldParameter = value; return this; } public String getFieldParameterStartsWith() { return FieldParameterStartsWith; } public IN_Category2CustomFieldsQuery setFieldParameterStartsWith(String value) { this.FieldParameterStartsWith = value; return this; } public String getFieldParameterEndsWith() { return FieldParameterEndsWith; } public IN_Category2CustomFieldsQuery setFieldParameterEndsWith(String value) { this.FieldParameterEndsWith = value; return this; } public String getFieldParameterContains() { return FieldParameterContains; } public IN_Category2CustomFieldsQuery setFieldParameterContains(String value) { this.FieldParameterContains = value; return this; } public String getFieldParameterLike() { return FieldParameterLike; } public IN_Category2CustomFieldsQuery setFieldParameterLike(String value) { this.FieldParameterLike = value; return this; } public ArrayList getFieldParameterBetween() { return FieldParameterBetween; } public IN_Category2CustomFieldsQuery setFieldParameterBetween(ArrayList value) { this.FieldParameterBetween = value; return this; } public ArrayList getFieldParameterIn() { return FieldParameterIn; } public IN_Category2CustomFieldsQuery setFieldParameterIn(ArrayList value) { this.FieldParameterIn = value; return this; } public UUID getSyPluginRecID() { return SY_Plugin_RecID; } public IN_Category2CustomFieldsQuery setSyPluginRecID(UUID value) { this.SY_Plugin_RecID = value; return this; } public ArrayList getSyPluginRecIDIn() { return SY_Plugin_RecIDIn; } public IN_Category2CustomFieldsQuery setSyPluginRecIDIn(ArrayList value) { this.SY_Plugin_RecIDIn = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public IN_Category2CustomFieldsQuery setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getLastSavedDateTimeGreaterThanOrEqualTo() { return LastSavedDateTimeGreaterThanOrEqualTo; } public IN_Category2CustomFieldsQuery setLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.LastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeGreaterThan() { return LastSavedDateTimeGreaterThan; } public IN_Category2CustomFieldsQuery setLastSavedDateTimeGreaterThan(Date value) { this.LastSavedDateTimeGreaterThan = value; return this; } public Date getLastSavedDateTimeLessThan() { return LastSavedDateTimeLessThan; } public IN_Category2CustomFieldsQuery setLastSavedDateTimeLessThan(Date value) { this.LastSavedDateTimeLessThan = value; return this; } public Date getLastSavedDateTimeLessThanOrEqualTo() { return LastSavedDateTimeLessThanOrEqualTo; } public IN_Category2CustomFieldsQuery setLastSavedDateTimeLessThanOrEqualTo(Date value) { this.LastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeNotEqualTo() { return LastSavedDateTimeNotEqualTo; } public IN_Category2CustomFieldsQuery setLastSavedDateTimeNotEqualTo(Date value) { this.LastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getLastSavedDateTimeBetween() { return LastSavedDateTimeBetween; } public IN_Category2CustomFieldsQuery setLastSavedDateTimeBetween(ArrayList value) { this.LastSavedDateTimeBetween = value; return this; } public ArrayList getLastSavedDateTimeIn() { return LastSavedDateTimeIn; } public IN_Category2CustomFieldsQuery setLastSavedDateTimeIn(ArrayList value) { this.LastSavedDateTimeIn = value; return this; } public Integer getDisplayOrder() { return DisplayOrder; } public IN_Category2CustomFieldsQuery setDisplayOrder(Integer value) { this.DisplayOrder = value; return this; } public Integer getDisplayOrderGreaterThanOrEqualTo() { return DisplayOrderGreaterThanOrEqualTo; } public IN_Category2CustomFieldsQuery setDisplayOrderGreaterThanOrEqualTo(Integer value) { this.DisplayOrderGreaterThanOrEqualTo = value; return this; } public Integer getDisplayOrderGreaterThan() { return DisplayOrderGreaterThan; } public IN_Category2CustomFieldsQuery setDisplayOrderGreaterThan(Integer value) { this.DisplayOrderGreaterThan = value; return this; } public Integer getDisplayOrderLessThan() { return DisplayOrderLessThan; } public IN_Category2CustomFieldsQuery setDisplayOrderLessThan(Integer value) { this.DisplayOrderLessThan = value; return this; } public Integer getDisplayOrderLessThanOrEqualTo() { return DisplayOrderLessThanOrEqualTo; } public IN_Category2CustomFieldsQuery setDisplayOrderLessThanOrEqualTo(Integer value) { this.DisplayOrderLessThanOrEqualTo = value; return this; } public Integer getDisplayOrderNotEqualTo() { return DisplayOrderNotEqualTo; } public IN_Category2CustomFieldsQuery setDisplayOrderNotEqualTo(Integer value) { this.DisplayOrderNotEqualTo = value; return this; } public ArrayList getDisplayOrderBetween() { return DisplayOrderBetween; } public IN_Category2CustomFieldsQuery setDisplayOrderBetween(ArrayList value) { this.DisplayOrderBetween = value; return this; } public ArrayList getDisplayOrderIn() { return DisplayOrderIn; } public IN_Category2CustomFieldsQuery setDisplayOrderIn(ArrayList value) { this.DisplayOrderIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class IN_Category2CustomValuesQuery extends QueryDb implements IReturn> { public String RecID = null; public String RecIDStartsWith = null; public String RecIDEndsWith = null; public String RecIDContains = null; public String RecIDLike = null; public ArrayList RecIDBetween = null; public ArrayList RecIDIn = null; public String IN_Category2_RecID = null; public String IN_Category2_RecIDStartsWith = null; public String IN_Category2_RecIDEndsWith = null; public String IN_Category2_RecIDContains = null; public String IN_Category2_RecIDLike = null; public ArrayList IN_Category2_RecIDBetween = null; public ArrayList IN_Category2_RecIDIn = null; public String IN_Category2CustomFields_RecID = null; public String IN_Category2CustomFields_RecIDStartsWith = null; public String IN_Category2CustomFields_RecIDEndsWith = null; public String IN_Category2CustomFields_RecIDContains = null; public String IN_Category2CustomFields_RecIDLike = null; public ArrayList IN_Category2CustomFields_RecIDBetween = null; public ArrayList IN_Category2CustomFields_RecIDIn = null; public String Contents = null; public String ContentsStartsWith = null; public String ContentsEndsWith = null; public String ContentsContains = null; public String ContentsLike = null; public ArrayList ContentsBetween = null; public ArrayList ContentsIn = null; public Date LastSavedDateTime = null; public Date LastSavedDateTimeGreaterThanOrEqualTo = null; public Date LastSavedDateTimeGreaterThan = null; public Date LastSavedDateTimeLessThan = null; public Date LastSavedDateTimeLessThanOrEqualTo = null; public Date LastSavedDateTimeNotEqualTo = null; public ArrayList LastSavedDateTimeBetween = null; public ArrayList LastSavedDateTimeIn = null; public String getRecID() { return RecID; } public IN_Category2CustomValuesQuery setRecID(String value) { this.RecID = value; return this; } public String getRecIDStartsWith() { return RecIDStartsWith; } public IN_Category2CustomValuesQuery setRecIDStartsWith(String value) { this.RecIDStartsWith = value; return this; } public String getRecIDEndsWith() { return RecIDEndsWith; } public IN_Category2CustomValuesQuery setRecIDEndsWith(String value) { this.RecIDEndsWith = value; return this; } public String getRecIDContains() { return RecIDContains; } public IN_Category2CustomValuesQuery setRecIDContains(String value) { this.RecIDContains = value; return this; } public String getRecIDLike() { return RecIDLike; } public IN_Category2CustomValuesQuery setRecIDLike(String value) { this.RecIDLike = value; return this; } public ArrayList getRecIDBetween() { return RecIDBetween; } public IN_Category2CustomValuesQuery setRecIDBetween(ArrayList value) { this.RecIDBetween = value; return this; } public ArrayList getRecIDIn() { return RecIDIn; } public IN_Category2CustomValuesQuery setRecIDIn(ArrayList value) { this.RecIDIn = value; return this; } public String getInCategory2RecID() { return IN_Category2_RecID; } public IN_Category2CustomValuesQuery setInCategory2RecID(String value) { this.IN_Category2_RecID = value; return this; } public String getInCategory2RecIDStartsWith() { return IN_Category2_RecIDStartsWith; } public IN_Category2CustomValuesQuery setInCategory2RecIDStartsWith(String value) { this.IN_Category2_RecIDStartsWith = value; return this; } public String getInCategory2RecIDEndsWith() { return IN_Category2_RecIDEndsWith; } public IN_Category2CustomValuesQuery setInCategory2RecIDEndsWith(String value) { this.IN_Category2_RecIDEndsWith = value; return this; } public String getInCategory2RecIDContains() { return IN_Category2_RecIDContains; } public IN_Category2CustomValuesQuery setInCategory2RecIDContains(String value) { this.IN_Category2_RecIDContains = value; return this; } public String getInCategory2RecIDLike() { return IN_Category2_RecIDLike; } public IN_Category2CustomValuesQuery setInCategory2RecIDLike(String value) { this.IN_Category2_RecIDLike = value; return this; } public ArrayList getInCategory2RecIDBetween() { return IN_Category2_RecIDBetween; } public IN_Category2CustomValuesQuery setInCategory2RecIDBetween(ArrayList value) { this.IN_Category2_RecIDBetween = value; return this; } public ArrayList getInCategory2RecIDIn() { return IN_Category2_RecIDIn; } public IN_Category2CustomValuesQuery setInCategory2RecIDIn(ArrayList value) { this.IN_Category2_RecIDIn = value; return this; } public String getInCategory2CustomFieldsRecID() { return IN_Category2CustomFields_RecID; } public IN_Category2CustomValuesQuery setInCategory2CustomFieldsRecID(String value) { this.IN_Category2CustomFields_RecID = value; return this; } public String getInCategory2CustomFieldsRecIDStartsWith() { return IN_Category2CustomFields_RecIDStartsWith; } public IN_Category2CustomValuesQuery setInCategory2CustomFieldsRecIDStartsWith(String value) { this.IN_Category2CustomFields_RecIDStartsWith = value; return this; } public String getInCategory2CustomFieldsRecIDEndsWith() { return IN_Category2CustomFields_RecIDEndsWith; } public IN_Category2CustomValuesQuery setInCategory2CustomFieldsRecIDEndsWith(String value) { this.IN_Category2CustomFields_RecIDEndsWith = value; return this; } public String getInCategory2CustomFieldsRecIDContains() { return IN_Category2CustomFields_RecIDContains; } public IN_Category2CustomValuesQuery setInCategory2CustomFieldsRecIDContains(String value) { this.IN_Category2CustomFields_RecIDContains = value; return this; } public String getInCategory2CustomFieldsRecIDLike() { return IN_Category2CustomFields_RecIDLike; } public IN_Category2CustomValuesQuery setInCategory2CustomFieldsRecIDLike(String value) { this.IN_Category2CustomFields_RecIDLike = value; return this; } public ArrayList getInCategory2CustomFieldsRecIDBetween() { return IN_Category2CustomFields_RecIDBetween; } public IN_Category2CustomValuesQuery setInCategory2CustomFieldsRecIDBetween(ArrayList value) { this.IN_Category2CustomFields_RecIDBetween = value; return this; } public ArrayList getInCategory2CustomFieldsRecIDIn() { return IN_Category2CustomFields_RecIDIn; } public IN_Category2CustomValuesQuery setInCategory2CustomFieldsRecIDIn(ArrayList value) { this.IN_Category2CustomFields_RecIDIn = value; return this; } public String getContents() { return Contents; } public IN_Category2CustomValuesQuery setContents(String value) { this.Contents = value; return this; } public String getContentsStartsWith() { return ContentsStartsWith; } public IN_Category2CustomValuesQuery setContentsStartsWith(String value) { this.ContentsStartsWith = value; return this; } public String getContentsEndsWith() { return ContentsEndsWith; } public IN_Category2CustomValuesQuery setContentsEndsWith(String value) { this.ContentsEndsWith = value; return this; } public String getContentsContains() { return ContentsContains; } public IN_Category2CustomValuesQuery setContentsContains(String value) { this.ContentsContains = value; return this; } public String getContentsLike() { return ContentsLike; } public IN_Category2CustomValuesQuery setContentsLike(String value) { this.ContentsLike = value; return this; } public ArrayList getContentsBetween() { return ContentsBetween; } public IN_Category2CustomValuesQuery setContentsBetween(ArrayList value) { this.ContentsBetween = value; return this; } public ArrayList getContentsIn() { return ContentsIn; } public IN_Category2CustomValuesQuery setContentsIn(ArrayList value) { this.ContentsIn = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public IN_Category2CustomValuesQuery setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getLastSavedDateTimeGreaterThanOrEqualTo() { return LastSavedDateTimeGreaterThanOrEqualTo; } public IN_Category2CustomValuesQuery setLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.LastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeGreaterThan() { return LastSavedDateTimeGreaterThan; } public IN_Category2CustomValuesQuery setLastSavedDateTimeGreaterThan(Date value) { this.LastSavedDateTimeGreaterThan = value; return this; } public Date getLastSavedDateTimeLessThan() { return LastSavedDateTimeLessThan; } public IN_Category2CustomValuesQuery setLastSavedDateTimeLessThan(Date value) { this.LastSavedDateTimeLessThan = value; return this; } public Date getLastSavedDateTimeLessThanOrEqualTo() { return LastSavedDateTimeLessThanOrEqualTo; } public IN_Category2CustomValuesQuery setLastSavedDateTimeLessThanOrEqualTo(Date value) { this.LastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeNotEqualTo() { return LastSavedDateTimeNotEqualTo; } public IN_Category2CustomValuesQuery setLastSavedDateTimeNotEqualTo(Date value) { this.LastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getLastSavedDateTimeBetween() { return LastSavedDateTimeBetween; } public IN_Category2CustomValuesQuery setLastSavedDateTimeBetween(ArrayList value) { this.LastSavedDateTimeBetween = value; return this; } public ArrayList getLastSavedDateTimeIn() { return LastSavedDateTimeIn; } public IN_Category2CustomValuesQuery setLastSavedDateTimeIn(ArrayList value) { this.LastSavedDateTimeIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class IN_Category3Query extends QueryDb implements IReturn> { public String Category3ID = null; public String Category3IDStartsWith = null; public String Category3IDEndsWith = null; public String Category3IDContains = null; public String Category3IDLike = null; public ArrayList Category3IDBetween = null; public ArrayList Category3IDIn = null; public String Description = null; public String DescriptionStartsWith = null; public String DescriptionEndsWith = null; public String DescriptionContains = null; public String DescriptionLike = null; public ArrayList DescriptionBetween = null; public ArrayList DescriptionIn = null; public Boolean DefaultCategory = null; public Date LastSavedDateTime = null; public Date LastSavedDateTimeGreaterThanOrEqualTo = null; public Date LastSavedDateTimeGreaterThan = null; public Date LastSavedDateTimeLessThan = null; public Date LastSavedDateTimeLessThanOrEqualTo = null; public Date LastSavedDateTimeNotEqualTo = null; public ArrayList LastSavedDateTimeBetween = null; public ArrayList LastSavedDateTimeIn = null; public ArrayList Picture = null; public String getCategory3ID() { return Category3ID; } public IN_Category3Query setCategory3ID(String value) { this.Category3ID = value; return this; } public String getCategory3IDStartsWith() { return Category3IDStartsWith; } public IN_Category3Query setCategory3IDStartsWith(String value) { this.Category3IDStartsWith = value; return this; } public String getCategory3IDEndsWith() { return Category3IDEndsWith; } public IN_Category3Query setCategory3IDEndsWith(String value) { this.Category3IDEndsWith = value; return this; } public String getCategory3IDContains() { return Category3IDContains; } public IN_Category3Query setCategory3IDContains(String value) { this.Category3IDContains = value; return this; } public String getCategory3IDLike() { return Category3IDLike; } public IN_Category3Query setCategory3IDLike(String value) { this.Category3IDLike = value; return this; } public ArrayList getCategory3IDBetween() { return Category3IDBetween; } public IN_Category3Query setCategory3IDBetween(ArrayList value) { this.Category3IDBetween = value; return this; } public ArrayList getCategory3IDIn() { return Category3IDIn; } public IN_Category3Query setCategory3IDIn(ArrayList value) { this.Category3IDIn = value; return this; } public String getDescription() { return Description; } public IN_Category3Query setDescription(String value) { this.Description = value; return this; } public String getDescriptionStartsWith() { return DescriptionStartsWith; } public IN_Category3Query setDescriptionStartsWith(String value) { this.DescriptionStartsWith = value; return this; } public String getDescriptionEndsWith() { return DescriptionEndsWith; } public IN_Category3Query setDescriptionEndsWith(String value) { this.DescriptionEndsWith = value; return this; } public String getDescriptionContains() { return DescriptionContains; } public IN_Category3Query setDescriptionContains(String value) { this.DescriptionContains = value; return this; } public String getDescriptionLike() { return DescriptionLike; } public IN_Category3Query setDescriptionLike(String value) { this.DescriptionLike = value; return this; } public ArrayList getDescriptionBetween() { return DescriptionBetween; } public IN_Category3Query setDescriptionBetween(ArrayList value) { this.DescriptionBetween = value; return this; } public ArrayList getDescriptionIn() { return DescriptionIn; } public IN_Category3Query setDescriptionIn(ArrayList value) { this.DescriptionIn = value; return this; } public Boolean isDefaultCategory() { return DefaultCategory; } public IN_Category3Query setDefaultCategory(Boolean value) { this.DefaultCategory = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public IN_Category3Query setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getLastSavedDateTimeGreaterThanOrEqualTo() { return LastSavedDateTimeGreaterThanOrEqualTo; } public IN_Category3Query setLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.LastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeGreaterThan() { return LastSavedDateTimeGreaterThan; } public IN_Category3Query setLastSavedDateTimeGreaterThan(Date value) { this.LastSavedDateTimeGreaterThan = value; return this; } public Date getLastSavedDateTimeLessThan() { return LastSavedDateTimeLessThan; } public IN_Category3Query setLastSavedDateTimeLessThan(Date value) { this.LastSavedDateTimeLessThan = value; return this; } public Date getLastSavedDateTimeLessThanOrEqualTo() { return LastSavedDateTimeLessThanOrEqualTo; } public IN_Category3Query setLastSavedDateTimeLessThanOrEqualTo(Date value) { this.LastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeNotEqualTo() { return LastSavedDateTimeNotEqualTo; } public IN_Category3Query setLastSavedDateTimeNotEqualTo(Date value) { this.LastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getLastSavedDateTimeBetween() { return LastSavedDateTimeBetween; } public IN_Category3Query setLastSavedDateTimeBetween(ArrayList value) { this.LastSavedDateTimeBetween = value; return this; } public ArrayList getLastSavedDateTimeIn() { return LastSavedDateTimeIn; } public IN_Category3Query setLastSavedDateTimeIn(ArrayList value) { this.LastSavedDateTimeIn = value; return this; } public ArrayList getPicture() { return Picture; } public IN_Category3Query setPicture(ArrayList value) { this.Picture = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class IN_Category3CustomFieldsQuery extends QueryDb implements IReturn> { public String RecID = null; public String RecIDStartsWith = null; public String RecIDEndsWith = null; public String RecIDContains = null; public String RecIDLike = null; public ArrayList RecIDBetween = null; public ArrayList RecIDIn = null; public String SettingName = null; public String SettingNameStartsWith = null; public String SettingNameEndsWith = null; public String SettingNameContains = null; public String SettingNameLike = null; public ArrayList SettingNameBetween = null; public ArrayList SettingNameIn = null; public String SettingDescription = null; public String SettingDescriptionStartsWith = null; public String SettingDescriptionEndsWith = null; public String SettingDescriptionContains = null; public String SettingDescriptionLike = null; public ArrayList SettingDescriptionBetween = null; public ArrayList SettingDescriptionIn = null; public Integer CellType = null; public Integer CellTypeGreaterThanOrEqualTo = null; public Integer CellTypeGreaterThan = null; public Integer CellTypeLessThan = null; public Integer CellTypeLessThanOrEqualTo = null; public Integer CellTypeNotEqualTo = null; public ArrayList CellTypeBetween = null; public ArrayList CellTypeIn = null; public String FieldParameter = null; public String FieldParameterStartsWith = null; public String FieldParameterEndsWith = null; public String FieldParameterContains = null; public String FieldParameterLike = null; public ArrayList FieldParameterBetween = null; public ArrayList FieldParameterIn = null; public UUID SY_Plugin_RecID = null; public ArrayList SY_Plugin_RecIDIn = null; public Date LastSavedDateTime = null; public Date LastSavedDateTimeGreaterThanOrEqualTo = null; public Date LastSavedDateTimeGreaterThan = null; public Date LastSavedDateTimeLessThan = null; public Date LastSavedDateTimeLessThanOrEqualTo = null; public Date LastSavedDateTimeNotEqualTo = null; public ArrayList LastSavedDateTimeBetween = null; public ArrayList LastSavedDateTimeIn = null; public Integer DisplayOrder = null; public Integer DisplayOrderGreaterThanOrEqualTo = null; public Integer DisplayOrderGreaterThan = null; public Integer DisplayOrderLessThan = null; public Integer DisplayOrderLessThanOrEqualTo = null; public Integer DisplayOrderNotEqualTo = null; public ArrayList DisplayOrderBetween = null; public ArrayList DisplayOrderIn = null; public String getRecID() { return RecID; } public IN_Category3CustomFieldsQuery setRecID(String value) { this.RecID = value; return this; } public String getRecIDStartsWith() { return RecIDStartsWith; } public IN_Category3CustomFieldsQuery setRecIDStartsWith(String value) { this.RecIDStartsWith = value; return this; } public String getRecIDEndsWith() { return RecIDEndsWith; } public IN_Category3CustomFieldsQuery setRecIDEndsWith(String value) { this.RecIDEndsWith = value; return this; } public String getRecIDContains() { return RecIDContains; } public IN_Category3CustomFieldsQuery setRecIDContains(String value) { this.RecIDContains = value; return this; } public String getRecIDLike() { return RecIDLike; } public IN_Category3CustomFieldsQuery setRecIDLike(String value) { this.RecIDLike = value; return this; } public ArrayList getRecIDBetween() { return RecIDBetween; } public IN_Category3CustomFieldsQuery setRecIDBetween(ArrayList value) { this.RecIDBetween = value; return this; } public ArrayList getRecIDIn() { return RecIDIn; } public IN_Category3CustomFieldsQuery setRecIDIn(ArrayList value) { this.RecIDIn = value; return this; } public String getSettingName() { return SettingName; } public IN_Category3CustomFieldsQuery setSettingName(String value) { this.SettingName = value; return this; } public String getSettingNameStartsWith() { return SettingNameStartsWith; } public IN_Category3CustomFieldsQuery setSettingNameStartsWith(String value) { this.SettingNameStartsWith = value; return this; } public String getSettingNameEndsWith() { return SettingNameEndsWith; } public IN_Category3CustomFieldsQuery setSettingNameEndsWith(String value) { this.SettingNameEndsWith = value; return this; } public String getSettingNameContains() { return SettingNameContains; } public IN_Category3CustomFieldsQuery setSettingNameContains(String value) { this.SettingNameContains = value; return this; } public String getSettingNameLike() { return SettingNameLike; } public IN_Category3CustomFieldsQuery setSettingNameLike(String value) { this.SettingNameLike = value; return this; } public ArrayList getSettingNameBetween() { return SettingNameBetween; } public IN_Category3CustomFieldsQuery setSettingNameBetween(ArrayList value) { this.SettingNameBetween = value; return this; } public ArrayList getSettingNameIn() { return SettingNameIn; } public IN_Category3CustomFieldsQuery setSettingNameIn(ArrayList value) { this.SettingNameIn = value; return this; } public String getSettingDescription() { return SettingDescription; } public IN_Category3CustomFieldsQuery setSettingDescription(String value) { this.SettingDescription = value; return this; } public String getSettingDescriptionStartsWith() { return SettingDescriptionStartsWith; } public IN_Category3CustomFieldsQuery setSettingDescriptionStartsWith(String value) { this.SettingDescriptionStartsWith = value; return this; } public String getSettingDescriptionEndsWith() { return SettingDescriptionEndsWith; } public IN_Category3CustomFieldsQuery setSettingDescriptionEndsWith(String value) { this.SettingDescriptionEndsWith = value; return this; } public String getSettingDescriptionContains() { return SettingDescriptionContains; } public IN_Category3CustomFieldsQuery setSettingDescriptionContains(String value) { this.SettingDescriptionContains = value; return this; } public String getSettingDescriptionLike() { return SettingDescriptionLike; } public IN_Category3CustomFieldsQuery setSettingDescriptionLike(String value) { this.SettingDescriptionLike = value; return this; } public ArrayList getSettingDescriptionBetween() { return SettingDescriptionBetween; } public IN_Category3CustomFieldsQuery setSettingDescriptionBetween(ArrayList value) { this.SettingDescriptionBetween = value; return this; } public ArrayList getSettingDescriptionIn() { return SettingDescriptionIn; } public IN_Category3CustomFieldsQuery setSettingDescriptionIn(ArrayList value) { this.SettingDescriptionIn = value; return this; } public Integer getCellType() { return CellType; } public IN_Category3CustomFieldsQuery setCellType(Integer value) { this.CellType = value; return this; } public Integer getCellTypeGreaterThanOrEqualTo() { return CellTypeGreaterThanOrEqualTo; } public IN_Category3CustomFieldsQuery setCellTypeGreaterThanOrEqualTo(Integer value) { this.CellTypeGreaterThanOrEqualTo = value; return this; } public Integer getCellTypeGreaterThan() { return CellTypeGreaterThan; } public IN_Category3CustomFieldsQuery setCellTypeGreaterThan(Integer value) { this.CellTypeGreaterThan = value; return this; } public Integer getCellTypeLessThan() { return CellTypeLessThan; } public IN_Category3CustomFieldsQuery setCellTypeLessThan(Integer value) { this.CellTypeLessThan = value; return this; } public Integer getCellTypeLessThanOrEqualTo() { return CellTypeLessThanOrEqualTo; } public IN_Category3CustomFieldsQuery setCellTypeLessThanOrEqualTo(Integer value) { this.CellTypeLessThanOrEqualTo = value; return this; } public Integer getCellTypeNotEqualTo() { return CellTypeNotEqualTo; } public IN_Category3CustomFieldsQuery setCellTypeNotEqualTo(Integer value) { this.CellTypeNotEqualTo = value; return this; } public ArrayList getCellTypeBetween() { return CellTypeBetween; } public IN_Category3CustomFieldsQuery setCellTypeBetween(ArrayList value) { this.CellTypeBetween = value; return this; } public ArrayList getCellTypeIn() { return CellTypeIn; } public IN_Category3CustomFieldsQuery setCellTypeIn(ArrayList value) { this.CellTypeIn = value; return this; } public String getFieldParameter() { return FieldParameter; } public IN_Category3CustomFieldsQuery setFieldParameter(String value) { this.FieldParameter = value; return this; } public String getFieldParameterStartsWith() { return FieldParameterStartsWith; } public IN_Category3CustomFieldsQuery setFieldParameterStartsWith(String value) { this.FieldParameterStartsWith = value; return this; } public String getFieldParameterEndsWith() { return FieldParameterEndsWith; } public IN_Category3CustomFieldsQuery setFieldParameterEndsWith(String value) { this.FieldParameterEndsWith = value; return this; } public String getFieldParameterContains() { return FieldParameterContains; } public IN_Category3CustomFieldsQuery setFieldParameterContains(String value) { this.FieldParameterContains = value; return this; } public String getFieldParameterLike() { return FieldParameterLike; } public IN_Category3CustomFieldsQuery setFieldParameterLike(String value) { this.FieldParameterLike = value; return this; } public ArrayList getFieldParameterBetween() { return FieldParameterBetween; } public IN_Category3CustomFieldsQuery setFieldParameterBetween(ArrayList value) { this.FieldParameterBetween = value; return this; } public ArrayList getFieldParameterIn() { return FieldParameterIn; } public IN_Category3CustomFieldsQuery setFieldParameterIn(ArrayList value) { this.FieldParameterIn = value; return this; } public UUID getSyPluginRecID() { return SY_Plugin_RecID; } public IN_Category3CustomFieldsQuery setSyPluginRecID(UUID value) { this.SY_Plugin_RecID = value; return this; } public ArrayList getSyPluginRecIDIn() { return SY_Plugin_RecIDIn; } public IN_Category3CustomFieldsQuery setSyPluginRecIDIn(ArrayList value) { this.SY_Plugin_RecIDIn = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public IN_Category3CustomFieldsQuery setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getLastSavedDateTimeGreaterThanOrEqualTo() { return LastSavedDateTimeGreaterThanOrEqualTo; } public IN_Category3CustomFieldsQuery setLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.LastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeGreaterThan() { return LastSavedDateTimeGreaterThan; } public IN_Category3CustomFieldsQuery setLastSavedDateTimeGreaterThan(Date value) { this.LastSavedDateTimeGreaterThan = value; return this; } public Date getLastSavedDateTimeLessThan() { return LastSavedDateTimeLessThan; } public IN_Category3CustomFieldsQuery setLastSavedDateTimeLessThan(Date value) { this.LastSavedDateTimeLessThan = value; return this; } public Date getLastSavedDateTimeLessThanOrEqualTo() { return LastSavedDateTimeLessThanOrEqualTo; } public IN_Category3CustomFieldsQuery setLastSavedDateTimeLessThanOrEqualTo(Date value) { this.LastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeNotEqualTo() { return LastSavedDateTimeNotEqualTo; } public IN_Category3CustomFieldsQuery setLastSavedDateTimeNotEqualTo(Date value) { this.LastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getLastSavedDateTimeBetween() { return LastSavedDateTimeBetween; } public IN_Category3CustomFieldsQuery setLastSavedDateTimeBetween(ArrayList value) { this.LastSavedDateTimeBetween = value; return this; } public ArrayList getLastSavedDateTimeIn() { return LastSavedDateTimeIn; } public IN_Category3CustomFieldsQuery setLastSavedDateTimeIn(ArrayList value) { this.LastSavedDateTimeIn = value; return this; } public Integer getDisplayOrder() { return DisplayOrder; } public IN_Category3CustomFieldsQuery setDisplayOrder(Integer value) { this.DisplayOrder = value; return this; } public Integer getDisplayOrderGreaterThanOrEqualTo() { return DisplayOrderGreaterThanOrEqualTo; } public IN_Category3CustomFieldsQuery setDisplayOrderGreaterThanOrEqualTo(Integer value) { this.DisplayOrderGreaterThanOrEqualTo = value; return this; } public Integer getDisplayOrderGreaterThan() { return DisplayOrderGreaterThan; } public IN_Category3CustomFieldsQuery setDisplayOrderGreaterThan(Integer value) { this.DisplayOrderGreaterThan = value; return this; } public Integer getDisplayOrderLessThan() { return DisplayOrderLessThan; } public IN_Category3CustomFieldsQuery setDisplayOrderLessThan(Integer value) { this.DisplayOrderLessThan = value; return this; } public Integer getDisplayOrderLessThanOrEqualTo() { return DisplayOrderLessThanOrEqualTo; } public IN_Category3CustomFieldsQuery setDisplayOrderLessThanOrEqualTo(Integer value) { this.DisplayOrderLessThanOrEqualTo = value; return this; } public Integer getDisplayOrderNotEqualTo() { return DisplayOrderNotEqualTo; } public IN_Category3CustomFieldsQuery setDisplayOrderNotEqualTo(Integer value) { this.DisplayOrderNotEqualTo = value; return this; } public ArrayList getDisplayOrderBetween() { return DisplayOrderBetween; } public IN_Category3CustomFieldsQuery setDisplayOrderBetween(ArrayList value) { this.DisplayOrderBetween = value; return this; } public ArrayList getDisplayOrderIn() { return DisplayOrderIn; } public IN_Category3CustomFieldsQuery setDisplayOrderIn(ArrayList value) { this.DisplayOrderIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class IN_Category3CustomValuesQuery extends QueryDb implements IReturn> { public String RecID = null; public String RecIDStartsWith = null; public String RecIDEndsWith = null; public String RecIDContains = null; public String RecIDLike = null; public ArrayList RecIDBetween = null; public ArrayList RecIDIn = null; public String IN_Category3_RecID = null; public String IN_Category3_RecIDStartsWith = null; public String IN_Category3_RecIDEndsWith = null; public String IN_Category3_RecIDContains = null; public String IN_Category3_RecIDLike = null; public ArrayList IN_Category3_RecIDBetween = null; public ArrayList IN_Category3_RecIDIn = null; public String IN_Category3CustomFields_RecID = null; public String IN_Category3CustomFields_RecIDStartsWith = null; public String IN_Category3CustomFields_RecIDEndsWith = null; public String IN_Category3CustomFields_RecIDContains = null; public String IN_Category3CustomFields_RecIDLike = null; public ArrayList IN_Category3CustomFields_RecIDBetween = null; public ArrayList IN_Category3CustomFields_RecIDIn = null; public String Contents = null; public String ContentsStartsWith = null; public String ContentsEndsWith = null; public String ContentsContains = null; public String ContentsLike = null; public ArrayList ContentsBetween = null; public ArrayList ContentsIn = null; public Date LastSavedDateTime = null; public Date LastSavedDateTimeGreaterThanOrEqualTo = null; public Date LastSavedDateTimeGreaterThan = null; public Date LastSavedDateTimeLessThan = null; public Date LastSavedDateTimeLessThanOrEqualTo = null; public Date LastSavedDateTimeNotEqualTo = null; public ArrayList LastSavedDateTimeBetween = null; public ArrayList LastSavedDateTimeIn = null; public String getRecID() { return RecID; } public IN_Category3CustomValuesQuery setRecID(String value) { this.RecID = value; return this; } public String getRecIDStartsWith() { return RecIDStartsWith; } public IN_Category3CustomValuesQuery setRecIDStartsWith(String value) { this.RecIDStartsWith = value; return this; } public String getRecIDEndsWith() { return RecIDEndsWith; } public IN_Category3CustomValuesQuery setRecIDEndsWith(String value) { this.RecIDEndsWith = value; return this; } public String getRecIDContains() { return RecIDContains; } public IN_Category3CustomValuesQuery setRecIDContains(String value) { this.RecIDContains = value; return this; } public String getRecIDLike() { return RecIDLike; } public IN_Category3CustomValuesQuery setRecIDLike(String value) { this.RecIDLike = value; return this; } public ArrayList getRecIDBetween() { return RecIDBetween; } public IN_Category3CustomValuesQuery setRecIDBetween(ArrayList value) { this.RecIDBetween = value; return this; } public ArrayList getRecIDIn() { return RecIDIn; } public IN_Category3CustomValuesQuery setRecIDIn(ArrayList value) { this.RecIDIn = value; return this; } public String getInCategory3RecID() { return IN_Category3_RecID; } public IN_Category3CustomValuesQuery setInCategory3RecID(String value) { this.IN_Category3_RecID = value; return this; } public String getInCategory3RecIDStartsWith() { return IN_Category3_RecIDStartsWith; } public IN_Category3CustomValuesQuery setInCategory3RecIDStartsWith(String value) { this.IN_Category3_RecIDStartsWith = value; return this; } public String getInCategory3RecIDEndsWith() { return IN_Category3_RecIDEndsWith; } public IN_Category3CustomValuesQuery setInCategory3RecIDEndsWith(String value) { this.IN_Category3_RecIDEndsWith = value; return this; } public String getInCategory3RecIDContains() { return IN_Category3_RecIDContains; } public IN_Category3CustomValuesQuery setInCategory3RecIDContains(String value) { this.IN_Category3_RecIDContains = value; return this; } public String getInCategory3RecIDLike() { return IN_Category3_RecIDLike; } public IN_Category3CustomValuesQuery setInCategory3RecIDLike(String value) { this.IN_Category3_RecIDLike = value; return this; } public ArrayList getInCategory3RecIDBetween() { return IN_Category3_RecIDBetween; } public IN_Category3CustomValuesQuery setInCategory3RecIDBetween(ArrayList value) { this.IN_Category3_RecIDBetween = value; return this; } public ArrayList getInCategory3RecIDIn() { return IN_Category3_RecIDIn; } public IN_Category3CustomValuesQuery setInCategory3RecIDIn(ArrayList value) { this.IN_Category3_RecIDIn = value; return this; } public String getInCategory3CustomFieldsRecID() { return IN_Category3CustomFields_RecID; } public IN_Category3CustomValuesQuery setInCategory3CustomFieldsRecID(String value) { this.IN_Category3CustomFields_RecID = value; return this; } public String getInCategory3CustomFieldsRecIDStartsWith() { return IN_Category3CustomFields_RecIDStartsWith; } public IN_Category3CustomValuesQuery setInCategory3CustomFieldsRecIDStartsWith(String value) { this.IN_Category3CustomFields_RecIDStartsWith = value; return this; } public String getInCategory3CustomFieldsRecIDEndsWith() { return IN_Category3CustomFields_RecIDEndsWith; } public IN_Category3CustomValuesQuery setInCategory3CustomFieldsRecIDEndsWith(String value) { this.IN_Category3CustomFields_RecIDEndsWith = value; return this; } public String getInCategory3CustomFieldsRecIDContains() { return IN_Category3CustomFields_RecIDContains; } public IN_Category3CustomValuesQuery setInCategory3CustomFieldsRecIDContains(String value) { this.IN_Category3CustomFields_RecIDContains = value; return this; } public String getInCategory3CustomFieldsRecIDLike() { return IN_Category3CustomFields_RecIDLike; } public IN_Category3CustomValuesQuery setInCategory3CustomFieldsRecIDLike(String value) { this.IN_Category3CustomFields_RecIDLike = value; return this; } public ArrayList getInCategory3CustomFieldsRecIDBetween() { return IN_Category3CustomFields_RecIDBetween; } public IN_Category3CustomValuesQuery setInCategory3CustomFieldsRecIDBetween(ArrayList value) { this.IN_Category3CustomFields_RecIDBetween = value; return this; } public ArrayList getInCategory3CustomFieldsRecIDIn() { return IN_Category3CustomFields_RecIDIn; } public IN_Category3CustomValuesQuery setInCategory3CustomFieldsRecIDIn(ArrayList value) { this.IN_Category3CustomFields_RecIDIn = value; return this; } public String getContents() { return Contents; } public IN_Category3CustomValuesQuery setContents(String value) { this.Contents = value; return this; } public String getContentsStartsWith() { return ContentsStartsWith; } public IN_Category3CustomValuesQuery setContentsStartsWith(String value) { this.ContentsStartsWith = value; return this; } public String getContentsEndsWith() { return ContentsEndsWith; } public IN_Category3CustomValuesQuery setContentsEndsWith(String value) { this.ContentsEndsWith = value; return this; } public String getContentsContains() { return ContentsContains; } public IN_Category3CustomValuesQuery setContentsContains(String value) { this.ContentsContains = value; return this; } public String getContentsLike() { return ContentsLike; } public IN_Category3CustomValuesQuery setContentsLike(String value) { this.ContentsLike = value; return this; } public ArrayList getContentsBetween() { return ContentsBetween; } public IN_Category3CustomValuesQuery setContentsBetween(ArrayList value) { this.ContentsBetween = value; return this; } public ArrayList getContentsIn() { return ContentsIn; } public IN_Category3CustomValuesQuery setContentsIn(ArrayList value) { this.ContentsIn = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public IN_Category3CustomValuesQuery setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getLastSavedDateTimeGreaterThanOrEqualTo() { return LastSavedDateTimeGreaterThanOrEqualTo; } public IN_Category3CustomValuesQuery setLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.LastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeGreaterThan() { return LastSavedDateTimeGreaterThan; } public IN_Category3CustomValuesQuery setLastSavedDateTimeGreaterThan(Date value) { this.LastSavedDateTimeGreaterThan = value; return this; } public Date getLastSavedDateTimeLessThan() { return LastSavedDateTimeLessThan; } public IN_Category3CustomValuesQuery setLastSavedDateTimeLessThan(Date value) { this.LastSavedDateTimeLessThan = value; return this; } public Date getLastSavedDateTimeLessThanOrEqualTo() { return LastSavedDateTimeLessThanOrEqualTo; } public IN_Category3CustomValuesQuery setLastSavedDateTimeLessThanOrEqualTo(Date value) { this.LastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeNotEqualTo() { return LastSavedDateTimeNotEqualTo; } public IN_Category3CustomValuesQuery setLastSavedDateTimeNotEqualTo(Date value) { this.LastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getLastSavedDateTimeBetween() { return LastSavedDateTimeBetween; } public IN_Category3CustomValuesQuery setLastSavedDateTimeBetween(ArrayList value) { this.LastSavedDateTimeBetween = value; return this; } public ArrayList getLastSavedDateTimeIn() { return LastSavedDateTimeIn; } public IN_Category3CustomValuesQuery setLastSavedDateTimeIn(ArrayList value) { this.LastSavedDateTimeIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class IN_Category4Query extends QueryDb implements IReturn> { public String Category4ID = null; public String Category4IDStartsWith = null; public String Category4IDEndsWith = null; public String Category4IDContains = null; public String Category4IDLike = null; public ArrayList Category4IDBetween = null; public ArrayList Category4IDIn = null; public String Description = null; public String DescriptionStartsWith = null; public String DescriptionEndsWith = null; public String DescriptionContains = null; public String DescriptionLike = null; public ArrayList DescriptionBetween = null; public ArrayList DescriptionIn = null; public Boolean DefaultCategory = null; public Date LastSavedDateTime = null; public Date LastSavedDateTimeGreaterThanOrEqualTo = null; public Date LastSavedDateTimeGreaterThan = null; public Date LastSavedDateTimeLessThan = null; public Date LastSavedDateTimeLessThanOrEqualTo = null; public Date LastSavedDateTimeNotEqualTo = null; public ArrayList LastSavedDateTimeBetween = null; public ArrayList LastSavedDateTimeIn = null; public ArrayList Picture = null; public String getCategory4ID() { return Category4ID; } public IN_Category4Query setCategory4ID(String value) { this.Category4ID = value; return this; } public String getCategory4IDStartsWith() { return Category4IDStartsWith; } public IN_Category4Query setCategory4IDStartsWith(String value) { this.Category4IDStartsWith = value; return this; } public String getCategory4IDEndsWith() { return Category4IDEndsWith; } public IN_Category4Query setCategory4IDEndsWith(String value) { this.Category4IDEndsWith = value; return this; } public String getCategory4IDContains() { return Category4IDContains; } public IN_Category4Query setCategory4IDContains(String value) { this.Category4IDContains = value; return this; } public String getCategory4IDLike() { return Category4IDLike; } public IN_Category4Query setCategory4IDLike(String value) { this.Category4IDLike = value; return this; } public ArrayList getCategory4IDBetween() { return Category4IDBetween; } public IN_Category4Query setCategory4IDBetween(ArrayList value) { this.Category4IDBetween = value; return this; } public ArrayList getCategory4IDIn() { return Category4IDIn; } public IN_Category4Query setCategory4IDIn(ArrayList value) { this.Category4IDIn = value; return this; } public String getDescription() { return Description; } public IN_Category4Query setDescription(String value) { this.Description = value; return this; } public String getDescriptionStartsWith() { return DescriptionStartsWith; } public IN_Category4Query setDescriptionStartsWith(String value) { this.DescriptionStartsWith = value; return this; } public String getDescriptionEndsWith() { return DescriptionEndsWith; } public IN_Category4Query setDescriptionEndsWith(String value) { this.DescriptionEndsWith = value; return this; } public String getDescriptionContains() { return DescriptionContains; } public IN_Category4Query setDescriptionContains(String value) { this.DescriptionContains = value; return this; } public String getDescriptionLike() { return DescriptionLike; } public IN_Category4Query setDescriptionLike(String value) { this.DescriptionLike = value; return this; } public ArrayList getDescriptionBetween() { return DescriptionBetween; } public IN_Category4Query setDescriptionBetween(ArrayList value) { this.DescriptionBetween = value; return this; } public ArrayList getDescriptionIn() { return DescriptionIn; } public IN_Category4Query setDescriptionIn(ArrayList value) { this.DescriptionIn = value; return this; } public Boolean isDefaultCategory() { return DefaultCategory; } public IN_Category4Query setDefaultCategory(Boolean value) { this.DefaultCategory = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public IN_Category4Query setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getLastSavedDateTimeGreaterThanOrEqualTo() { return LastSavedDateTimeGreaterThanOrEqualTo; } public IN_Category4Query setLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.LastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeGreaterThan() { return LastSavedDateTimeGreaterThan; } public IN_Category4Query setLastSavedDateTimeGreaterThan(Date value) { this.LastSavedDateTimeGreaterThan = value; return this; } public Date getLastSavedDateTimeLessThan() { return LastSavedDateTimeLessThan; } public IN_Category4Query setLastSavedDateTimeLessThan(Date value) { this.LastSavedDateTimeLessThan = value; return this; } public Date getLastSavedDateTimeLessThanOrEqualTo() { return LastSavedDateTimeLessThanOrEqualTo; } public IN_Category4Query setLastSavedDateTimeLessThanOrEqualTo(Date value) { this.LastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeNotEqualTo() { return LastSavedDateTimeNotEqualTo; } public IN_Category4Query setLastSavedDateTimeNotEqualTo(Date value) { this.LastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getLastSavedDateTimeBetween() { return LastSavedDateTimeBetween; } public IN_Category4Query setLastSavedDateTimeBetween(ArrayList value) { this.LastSavedDateTimeBetween = value; return this; } public ArrayList getLastSavedDateTimeIn() { return LastSavedDateTimeIn; } public IN_Category4Query setLastSavedDateTimeIn(ArrayList value) { this.LastSavedDateTimeIn = value; return this; } public ArrayList getPicture() { return Picture; } public IN_Category4Query setPicture(ArrayList value) { this.Picture = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class IN_Category4CustomFieldsQuery extends QueryDb implements IReturn> { public String RecID = null; public String RecIDStartsWith = null; public String RecIDEndsWith = null; public String RecIDContains = null; public String RecIDLike = null; public ArrayList RecIDBetween = null; public ArrayList RecIDIn = null; public String SettingName = null; public String SettingNameStartsWith = null; public String SettingNameEndsWith = null; public String SettingNameContains = null; public String SettingNameLike = null; public ArrayList SettingNameBetween = null; public ArrayList SettingNameIn = null; public String SettingDescription = null; public String SettingDescriptionStartsWith = null; public String SettingDescriptionEndsWith = null; public String SettingDescriptionContains = null; public String SettingDescriptionLike = null; public ArrayList SettingDescriptionBetween = null; public ArrayList SettingDescriptionIn = null; public Integer CellType = null; public Integer CellTypeGreaterThanOrEqualTo = null; public Integer CellTypeGreaterThan = null; public Integer CellTypeLessThan = null; public Integer CellTypeLessThanOrEqualTo = null; public Integer CellTypeNotEqualTo = null; public ArrayList CellTypeBetween = null; public ArrayList CellTypeIn = null; public String FieldParameter = null; public String FieldParameterStartsWith = null; public String FieldParameterEndsWith = null; public String FieldParameterContains = null; public String FieldParameterLike = null; public ArrayList FieldParameterBetween = null; public ArrayList FieldParameterIn = null; public UUID SY_Plugin_RecID = null; public ArrayList SY_Plugin_RecIDIn = null; public Date LastSavedDateTime = null; public Date LastSavedDateTimeGreaterThanOrEqualTo = null; public Date LastSavedDateTimeGreaterThan = null; public Date LastSavedDateTimeLessThan = null; public Date LastSavedDateTimeLessThanOrEqualTo = null; public Date LastSavedDateTimeNotEqualTo = null; public ArrayList LastSavedDateTimeBetween = null; public ArrayList LastSavedDateTimeIn = null; public Integer DisplayOrder = null; public Integer DisplayOrderGreaterThanOrEqualTo = null; public Integer DisplayOrderGreaterThan = null; public Integer DisplayOrderLessThan = null; public Integer DisplayOrderLessThanOrEqualTo = null; public Integer DisplayOrderNotEqualTo = null; public ArrayList DisplayOrderBetween = null; public ArrayList DisplayOrderIn = null; public String getRecID() { return RecID; } public IN_Category4CustomFieldsQuery setRecID(String value) { this.RecID = value; return this; } public String getRecIDStartsWith() { return RecIDStartsWith; } public IN_Category4CustomFieldsQuery setRecIDStartsWith(String value) { this.RecIDStartsWith = value; return this; } public String getRecIDEndsWith() { return RecIDEndsWith; } public IN_Category4CustomFieldsQuery setRecIDEndsWith(String value) { this.RecIDEndsWith = value; return this; } public String getRecIDContains() { return RecIDContains; } public IN_Category4CustomFieldsQuery setRecIDContains(String value) { this.RecIDContains = value; return this; } public String getRecIDLike() { return RecIDLike; } public IN_Category4CustomFieldsQuery setRecIDLike(String value) { this.RecIDLike = value; return this; } public ArrayList getRecIDBetween() { return RecIDBetween; } public IN_Category4CustomFieldsQuery setRecIDBetween(ArrayList value) { this.RecIDBetween = value; return this; } public ArrayList getRecIDIn() { return RecIDIn; } public IN_Category4CustomFieldsQuery setRecIDIn(ArrayList value) { this.RecIDIn = value; return this; } public String getSettingName() { return SettingName; } public IN_Category4CustomFieldsQuery setSettingName(String value) { this.SettingName = value; return this; } public String getSettingNameStartsWith() { return SettingNameStartsWith; } public IN_Category4CustomFieldsQuery setSettingNameStartsWith(String value) { this.SettingNameStartsWith = value; return this; } public String getSettingNameEndsWith() { return SettingNameEndsWith; } public IN_Category4CustomFieldsQuery setSettingNameEndsWith(String value) { this.SettingNameEndsWith = value; return this; } public String getSettingNameContains() { return SettingNameContains; } public IN_Category4CustomFieldsQuery setSettingNameContains(String value) { this.SettingNameContains = value; return this; } public String getSettingNameLike() { return SettingNameLike; } public IN_Category4CustomFieldsQuery setSettingNameLike(String value) { this.SettingNameLike = value; return this; } public ArrayList getSettingNameBetween() { return SettingNameBetween; } public IN_Category4CustomFieldsQuery setSettingNameBetween(ArrayList value) { this.SettingNameBetween = value; return this; } public ArrayList getSettingNameIn() { return SettingNameIn; } public IN_Category4CustomFieldsQuery setSettingNameIn(ArrayList value) { this.SettingNameIn = value; return this; } public String getSettingDescription() { return SettingDescription; } public IN_Category4CustomFieldsQuery setSettingDescription(String value) { this.SettingDescription = value; return this; } public String getSettingDescriptionStartsWith() { return SettingDescriptionStartsWith; } public IN_Category4CustomFieldsQuery setSettingDescriptionStartsWith(String value) { this.SettingDescriptionStartsWith = value; return this; } public String getSettingDescriptionEndsWith() { return SettingDescriptionEndsWith; } public IN_Category4CustomFieldsQuery setSettingDescriptionEndsWith(String value) { this.SettingDescriptionEndsWith = value; return this; } public String getSettingDescriptionContains() { return SettingDescriptionContains; } public IN_Category4CustomFieldsQuery setSettingDescriptionContains(String value) { this.SettingDescriptionContains = value; return this; } public String getSettingDescriptionLike() { return SettingDescriptionLike; } public IN_Category4CustomFieldsQuery setSettingDescriptionLike(String value) { this.SettingDescriptionLike = value; return this; } public ArrayList getSettingDescriptionBetween() { return SettingDescriptionBetween; } public IN_Category4CustomFieldsQuery setSettingDescriptionBetween(ArrayList value) { this.SettingDescriptionBetween = value; return this; } public ArrayList getSettingDescriptionIn() { return SettingDescriptionIn; } public IN_Category4CustomFieldsQuery setSettingDescriptionIn(ArrayList value) { this.SettingDescriptionIn = value; return this; } public Integer getCellType() { return CellType; } public IN_Category4CustomFieldsQuery setCellType(Integer value) { this.CellType = value; return this; } public Integer getCellTypeGreaterThanOrEqualTo() { return CellTypeGreaterThanOrEqualTo; } public IN_Category4CustomFieldsQuery setCellTypeGreaterThanOrEqualTo(Integer value) { this.CellTypeGreaterThanOrEqualTo = value; return this; } public Integer getCellTypeGreaterThan() { return CellTypeGreaterThan; } public IN_Category4CustomFieldsQuery setCellTypeGreaterThan(Integer value) { this.CellTypeGreaterThan = value; return this; } public Integer getCellTypeLessThan() { return CellTypeLessThan; } public IN_Category4CustomFieldsQuery setCellTypeLessThan(Integer value) { this.CellTypeLessThan = value; return this; } public Integer getCellTypeLessThanOrEqualTo() { return CellTypeLessThanOrEqualTo; } public IN_Category4CustomFieldsQuery setCellTypeLessThanOrEqualTo(Integer value) { this.CellTypeLessThanOrEqualTo = value; return this; } public Integer getCellTypeNotEqualTo() { return CellTypeNotEqualTo; } public IN_Category4CustomFieldsQuery setCellTypeNotEqualTo(Integer value) { this.CellTypeNotEqualTo = value; return this; } public ArrayList getCellTypeBetween() { return CellTypeBetween; } public IN_Category4CustomFieldsQuery setCellTypeBetween(ArrayList value) { this.CellTypeBetween = value; return this; } public ArrayList getCellTypeIn() { return CellTypeIn; } public IN_Category4CustomFieldsQuery setCellTypeIn(ArrayList value) { this.CellTypeIn = value; return this; } public String getFieldParameter() { return FieldParameter; } public IN_Category4CustomFieldsQuery setFieldParameter(String value) { this.FieldParameter = value; return this; } public String getFieldParameterStartsWith() { return FieldParameterStartsWith; } public IN_Category4CustomFieldsQuery setFieldParameterStartsWith(String value) { this.FieldParameterStartsWith = value; return this; } public String getFieldParameterEndsWith() { return FieldParameterEndsWith; } public IN_Category4CustomFieldsQuery setFieldParameterEndsWith(String value) { this.FieldParameterEndsWith = value; return this; } public String getFieldParameterContains() { return FieldParameterContains; } public IN_Category4CustomFieldsQuery setFieldParameterContains(String value) { this.FieldParameterContains = value; return this; } public String getFieldParameterLike() { return FieldParameterLike; } public IN_Category4CustomFieldsQuery setFieldParameterLike(String value) { this.FieldParameterLike = value; return this; } public ArrayList getFieldParameterBetween() { return FieldParameterBetween; } public IN_Category4CustomFieldsQuery setFieldParameterBetween(ArrayList value) { this.FieldParameterBetween = value; return this; } public ArrayList getFieldParameterIn() { return FieldParameterIn; } public IN_Category4CustomFieldsQuery setFieldParameterIn(ArrayList value) { this.FieldParameterIn = value; return this; } public UUID getSyPluginRecID() { return SY_Plugin_RecID; } public IN_Category4CustomFieldsQuery setSyPluginRecID(UUID value) { this.SY_Plugin_RecID = value; return this; } public ArrayList getSyPluginRecIDIn() { return SY_Plugin_RecIDIn; } public IN_Category4CustomFieldsQuery setSyPluginRecIDIn(ArrayList value) { this.SY_Plugin_RecIDIn = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public IN_Category4CustomFieldsQuery setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getLastSavedDateTimeGreaterThanOrEqualTo() { return LastSavedDateTimeGreaterThanOrEqualTo; } public IN_Category4CustomFieldsQuery setLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.LastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeGreaterThan() { return LastSavedDateTimeGreaterThan; } public IN_Category4CustomFieldsQuery setLastSavedDateTimeGreaterThan(Date value) { this.LastSavedDateTimeGreaterThan = value; return this; } public Date getLastSavedDateTimeLessThan() { return LastSavedDateTimeLessThan; } public IN_Category4CustomFieldsQuery setLastSavedDateTimeLessThan(Date value) { this.LastSavedDateTimeLessThan = value; return this; } public Date getLastSavedDateTimeLessThanOrEqualTo() { return LastSavedDateTimeLessThanOrEqualTo; } public IN_Category4CustomFieldsQuery setLastSavedDateTimeLessThanOrEqualTo(Date value) { this.LastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeNotEqualTo() { return LastSavedDateTimeNotEqualTo; } public IN_Category4CustomFieldsQuery setLastSavedDateTimeNotEqualTo(Date value) { this.LastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getLastSavedDateTimeBetween() { return LastSavedDateTimeBetween; } public IN_Category4CustomFieldsQuery setLastSavedDateTimeBetween(ArrayList value) { this.LastSavedDateTimeBetween = value; return this; } public ArrayList getLastSavedDateTimeIn() { return LastSavedDateTimeIn; } public IN_Category4CustomFieldsQuery setLastSavedDateTimeIn(ArrayList value) { this.LastSavedDateTimeIn = value; return this; } public Integer getDisplayOrder() { return DisplayOrder; } public IN_Category4CustomFieldsQuery setDisplayOrder(Integer value) { this.DisplayOrder = value; return this; } public Integer getDisplayOrderGreaterThanOrEqualTo() { return DisplayOrderGreaterThanOrEqualTo; } public IN_Category4CustomFieldsQuery setDisplayOrderGreaterThanOrEqualTo(Integer value) { this.DisplayOrderGreaterThanOrEqualTo = value; return this; } public Integer getDisplayOrderGreaterThan() { return DisplayOrderGreaterThan; } public IN_Category4CustomFieldsQuery setDisplayOrderGreaterThan(Integer value) { this.DisplayOrderGreaterThan = value; return this; } public Integer getDisplayOrderLessThan() { return DisplayOrderLessThan; } public IN_Category4CustomFieldsQuery setDisplayOrderLessThan(Integer value) { this.DisplayOrderLessThan = value; return this; } public Integer getDisplayOrderLessThanOrEqualTo() { return DisplayOrderLessThanOrEqualTo; } public IN_Category4CustomFieldsQuery setDisplayOrderLessThanOrEqualTo(Integer value) { this.DisplayOrderLessThanOrEqualTo = value; return this; } public Integer getDisplayOrderNotEqualTo() { return DisplayOrderNotEqualTo; } public IN_Category4CustomFieldsQuery setDisplayOrderNotEqualTo(Integer value) { this.DisplayOrderNotEqualTo = value; return this; } public ArrayList getDisplayOrderBetween() { return DisplayOrderBetween; } public IN_Category4CustomFieldsQuery setDisplayOrderBetween(ArrayList value) { this.DisplayOrderBetween = value; return this; } public ArrayList getDisplayOrderIn() { return DisplayOrderIn; } public IN_Category4CustomFieldsQuery setDisplayOrderIn(ArrayList value) { this.DisplayOrderIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class IN_Category4CustomValuesQuery extends QueryDb implements IReturn> { public String RecID = null; public String RecIDStartsWith = null; public String RecIDEndsWith = null; public String RecIDContains = null; public String RecIDLike = null; public ArrayList RecIDBetween = null; public ArrayList RecIDIn = null; public String IN_Category4_RecID = null; public String IN_Category4_RecIDStartsWith = null; public String IN_Category4_RecIDEndsWith = null; public String IN_Category4_RecIDContains = null; public String IN_Category4_RecIDLike = null; public ArrayList IN_Category4_RecIDBetween = null; public ArrayList IN_Category4_RecIDIn = null; public String IN_Category4CustomFields_RecID = null; public String IN_Category4CustomFields_RecIDStartsWith = null; public String IN_Category4CustomFields_RecIDEndsWith = null; public String IN_Category4CustomFields_RecIDContains = null; public String IN_Category4CustomFields_RecIDLike = null; public ArrayList IN_Category4CustomFields_RecIDBetween = null; public ArrayList IN_Category4CustomFields_RecIDIn = null; public String Contents = null; public String ContentsStartsWith = null; public String ContentsEndsWith = null; public String ContentsContains = null; public String ContentsLike = null; public ArrayList ContentsBetween = null; public ArrayList ContentsIn = null; public Date LastSavedDateTime = null; public Date LastSavedDateTimeGreaterThanOrEqualTo = null; public Date LastSavedDateTimeGreaterThan = null; public Date LastSavedDateTimeLessThan = null; public Date LastSavedDateTimeLessThanOrEqualTo = null; public Date LastSavedDateTimeNotEqualTo = null; public ArrayList LastSavedDateTimeBetween = null; public ArrayList LastSavedDateTimeIn = null; public String getRecID() { return RecID; } public IN_Category4CustomValuesQuery setRecID(String value) { this.RecID = value; return this; } public String getRecIDStartsWith() { return RecIDStartsWith; } public IN_Category4CustomValuesQuery setRecIDStartsWith(String value) { this.RecIDStartsWith = value; return this; } public String getRecIDEndsWith() { return RecIDEndsWith; } public IN_Category4CustomValuesQuery setRecIDEndsWith(String value) { this.RecIDEndsWith = value; return this; } public String getRecIDContains() { return RecIDContains; } public IN_Category4CustomValuesQuery setRecIDContains(String value) { this.RecIDContains = value; return this; } public String getRecIDLike() { return RecIDLike; } public IN_Category4CustomValuesQuery setRecIDLike(String value) { this.RecIDLike = value; return this; } public ArrayList getRecIDBetween() { return RecIDBetween; } public IN_Category4CustomValuesQuery setRecIDBetween(ArrayList value) { this.RecIDBetween = value; return this; } public ArrayList getRecIDIn() { return RecIDIn; } public IN_Category4CustomValuesQuery setRecIDIn(ArrayList value) { this.RecIDIn = value; return this; } public String getInCategory4RecID() { return IN_Category4_RecID; } public IN_Category4CustomValuesQuery setInCategory4RecID(String value) { this.IN_Category4_RecID = value; return this; } public String getInCategory4RecIDStartsWith() { return IN_Category4_RecIDStartsWith; } public IN_Category4CustomValuesQuery setInCategory4RecIDStartsWith(String value) { this.IN_Category4_RecIDStartsWith = value; return this; } public String getInCategory4RecIDEndsWith() { return IN_Category4_RecIDEndsWith; } public IN_Category4CustomValuesQuery setInCategory4RecIDEndsWith(String value) { this.IN_Category4_RecIDEndsWith = value; return this; } public String getInCategory4RecIDContains() { return IN_Category4_RecIDContains; } public IN_Category4CustomValuesQuery setInCategory4RecIDContains(String value) { this.IN_Category4_RecIDContains = value; return this; } public String getInCategory4RecIDLike() { return IN_Category4_RecIDLike; } public IN_Category4CustomValuesQuery setInCategory4RecIDLike(String value) { this.IN_Category4_RecIDLike = value; return this; } public ArrayList getInCategory4RecIDBetween() { return IN_Category4_RecIDBetween; } public IN_Category4CustomValuesQuery setInCategory4RecIDBetween(ArrayList value) { this.IN_Category4_RecIDBetween = value; return this; } public ArrayList getInCategory4RecIDIn() { return IN_Category4_RecIDIn; } public IN_Category4CustomValuesQuery setInCategory4RecIDIn(ArrayList value) { this.IN_Category4_RecIDIn = value; return this; } public String getInCategory4CustomFieldsRecID() { return IN_Category4CustomFields_RecID; } public IN_Category4CustomValuesQuery setInCategory4CustomFieldsRecID(String value) { this.IN_Category4CustomFields_RecID = value; return this; } public String getInCategory4CustomFieldsRecIDStartsWith() { return IN_Category4CustomFields_RecIDStartsWith; } public IN_Category4CustomValuesQuery setInCategory4CustomFieldsRecIDStartsWith(String value) { this.IN_Category4CustomFields_RecIDStartsWith = value; return this; } public String getInCategory4CustomFieldsRecIDEndsWith() { return IN_Category4CustomFields_RecIDEndsWith; } public IN_Category4CustomValuesQuery setInCategory4CustomFieldsRecIDEndsWith(String value) { this.IN_Category4CustomFields_RecIDEndsWith = value; return this; } public String getInCategory4CustomFieldsRecIDContains() { return IN_Category4CustomFields_RecIDContains; } public IN_Category4CustomValuesQuery setInCategory4CustomFieldsRecIDContains(String value) { this.IN_Category4CustomFields_RecIDContains = value; return this; } public String getInCategory4CustomFieldsRecIDLike() { return IN_Category4CustomFields_RecIDLike; } public IN_Category4CustomValuesQuery setInCategory4CustomFieldsRecIDLike(String value) { this.IN_Category4CustomFields_RecIDLike = value; return this; } public ArrayList getInCategory4CustomFieldsRecIDBetween() { return IN_Category4CustomFields_RecIDBetween; } public IN_Category4CustomValuesQuery setInCategory4CustomFieldsRecIDBetween(ArrayList value) { this.IN_Category4CustomFields_RecIDBetween = value; return this; } public ArrayList getInCategory4CustomFieldsRecIDIn() { return IN_Category4CustomFields_RecIDIn; } public IN_Category4CustomValuesQuery setInCategory4CustomFieldsRecIDIn(ArrayList value) { this.IN_Category4CustomFields_RecIDIn = value; return this; } public String getContents() { return Contents; } public IN_Category4CustomValuesQuery setContents(String value) { this.Contents = value; return this; } public String getContentsStartsWith() { return ContentsStartsWith; } public IN_Category4CustomValuesQuery setContentsStartsWith(String value) { this.ContentsStartsWith = value; return this; } public String getContentsEndsWith() { return ContentsEndsWith; } public IN_Category4CustomValuesQuery setContentsEndsWith(String value) { this.ContentsEndsWith = value; return this; } public String getContentsContains() { return ContentsContains; } public IN_Category4CustomValuesQuery setContentsContains(String value) { this.ContentsContains = value; return this; } public String getContentsLike() { return ContentsLike; } public IN_Category4CustomValuesQuery setContentsLike(String value) { this.ContentsLike = value; return this; } public ArrayList getContentsBetween() { return ContentsBetween; } public IN_Category4CustomValuesQuery setContentsBetween(ArrayList value) { this.ContentsBetween = value; return this; } public ArrayList getContentsIn() { return ContentsIn; } public IN_Category4CustomValuesQuery setContentsIn(ArrayList value) { this.ContentsIn = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public IN_Category4CustomValuesQuery setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getLastSavedDateTimeGreaterThanOrEqualTo() { return LastSavedDateTimeGreaterThanOrEqualTo; } public IN_Category4CustomValuesQuery setLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.LastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeGreaterThan() { return LastSavedDateTimeGreaterThan; } public IN_Category4CustomValuesQuery setLastSavedDateTimeGreaterThan(Date value) { this.LastSavedDateTimeGreaterThan = value; return this; } public Date getLastSavedDateTimeLessThan() { return LastSavedDateTimeLessThan; } public IN_Category4CustomValuesQuery setLastSavedDateTimeLessThan(Date value) { this.LastSavedDateTimeLessThan = value; return this; } public Date getLastSavedDateTimeLessThanOrEqualTo() { return LastSavedDateTimeLessThanOrEqualTo; } public IN_Category4CustomValuesQuery setLastSavedDateTimeLessThanOrEqualTo(Date value) { this.LastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeNotEqualTo() { return LastSavedDateTimeNotEqualTo; } public IN_Category4CustomValuesQuery setLastSavedDateTimeNotEqualTo(Date value) { this.LastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getLastSavedDateTimeBetween() { return LastSavedDateTimeBetween; } public IN_Category4CustomValuesQuery setLastSavedDateTimeBetween(ArrayList value) { this.LastSavedDateTimeBetween = value; return this; } public ArrayList getLastSavedDateTimeIn() { return LastSavedDateTimeIn; } public IN_Category4CustomValuesQuery setLastSavedDateTimeIn(ArrayList value) { this.LastSavedDateTimeIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class IN_Category5Query extends QueryDb implements IReturn> { public String Category5ID = null; public String Category5IDStartsWith = null; public String Category5IDEndsWith = null; public String Category5IDContains = null; public String Category5IDLike = null; public ArrayList Category5IDBetween = null; public ArrayList Category5IDIn = null; public String Description = null; public String DescriptionStartsWith = null; public String DescriptionEndsWith = null; public String DescriptionContains = null; public String DescriptionLike = null; public ArrayList DescriptionBetween = null; public ArrayList DescriptionIn = null; public Boolean DefaultCategory = null; public Date LastSavedDateTime = null; public Date LastSavedDateTimeGreaterThanOrEqualTo = null; public Date LastSavedDateTimeGreaterThan = null; public Date LastSavedDateTimeLessThan = null; public Date LastSavedDateTimeLessThanOrEqualTo = null; public Date LastSavedDateTimeNotEqualTo = null; public ArrayList LastSavedDateTimeBetween = null; public ArrayList LastSavedDateTimeIn = null; public ArrayList Picture = null; public String getCategory5ID() { return Category5ID; } public IN_Category5Query setCategory5ID(String value) { this.Category5ID = value; return this; } public String getCategory5IDStartsWith() { return Category5IDStartsWith; } public IN_Category5Query setCategory5IDStartsWith(String value) { this.Category5IDStartsWith = value; return this; } public String getCategory5IDEndsWith() { return Category5IDEndsWith; } public IN_Category5Query setCategory5IDEndsWith(String value) { this.Category5IDEndsWith = value; return this; } public String getCategory5IDContains() { return Category5IDContains; } public IN_Category5Query setCategory5IDContains(String value) { this.Category5IDContains = value; return this; } public String getCategory5IDLike() { return Category5IDLike; } public IN_Category5Query setCategory5IDLike(String value) { this.Category5IDLike = value; return this; } public ArrayList getCategory5IDBetween() { return Category5IDBetween; } public IN_Category5Query setCategory5IDBetween(ArrayList value) { this.Category5IDBetween = value; return this; } public ArrayList getCategory5IDIn() { return Category5IDIn; } public IN_Category5Query setCategory5IDIn(ArrayList value) { this.Category5IDIn = value; return this; } public String getDescription() { return Description; } public IN_Category5Query setDescription(String value) { this.Description = value; return this; } public String getDescriptionStartsWith() { return DescriptionStartsWith; } public IN_Category5Query setDescriptionStartsWith(String value) { this.DescriptionStartsWith = value; return this; } public String getDescriptionEndsWith() { return DescriptionEndsWith; } public IN_Category5Query setDescriptionEndsWith(String value) { this.DescriptionEndsWith = value; return this; } public String getDescriptionContains() { return DescriptionContains; } public IN_Category5Query setDescriptionContains(String value) { this.DescriptionContains = value; return this; } public String getDescriptionLike() { return DescriptionLike; } public IN_Category5Query setDescriptionLike(String value) { this.DescriptionLike = value; return this; } public ArrayList getDescriptionBetween() { return DescriptionBetween; } public IN_Category5Query setDescriptionBetween(ArrayList value) { this.DescriptionBetween = value; return this; } public ArrayList getDescriptionIn() { return DescriptionIn; } public IN_Category5Query setDescriptionIn(ArrayList value) { this.DescriptionIn = value; return this; } public Boolean isDefaultCategory() { return DefaultCategory; } public IN_Category5Query setDefaultCategory(Boolean value) { this.DefaultCategory = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public IN_Category5Query setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getLastSavedDateTimeGreaterThanOrEqualTo() { return LastSavedDateTimeGreaterThanOrEqualTo; } public IN_Category5Query setLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.LastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeGreaterThan() { return LastSavedDateTimeGreaterThan; } public IN_Category5Query setLastSavedDateTimeGreaterThan(Date value) { this.LastSavedDateTimeGreaterThan = value; return this; } public Date getLastSavedDateTimeLessThan() { return LastSavedDateTimeLessThan; } public IN_Category5Query setLastSavedDateTimeLessThan(Date value) { this.LastSavedDateTimeLessThan = value; return this; } public Date getLastSavedDateTimeLessThanOrEqualTo() { return LastSavedDateTimeLessThanOrEqualTo; } public IN_Category5Query setLastSavedDateTimeLessThanOrEqualTo(Date value) { this.LastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeNotEqualTo() { return LastSavedDateTimeNotEqualTo; } public IN_Category5Query setLastSavedDateTimeNotEqualTo(Date value) { this.LastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getLastSavedDateTimeBetween() { return LastSavedDateTimeBetween; } public IN_Category5Query setLastSavedDateTimeBetween(ArrayList value) { this.LastSavedDateTimeBetween = value; return this; } public ArrayList getLastSavedDateTimeIn() { return LastSavedDateTimeIn; } public IN_Category5Query setLastSavedDateTimeIn(ArrayList value) { this.LastSavedDateTimeIn = value; return this; } public ArrayList getPicture() { return Picture; } public IN_Category5Query setPicture(ArrayList value) { this.Picture = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class IN_Category5CustomFieldsQuery extends QueryDb implements IReturn> { public String RecID = null; public String RecIDStartsWith = null; public String RecIDEndsWith = null; public String RecIDContains = null; public String RecIDLike = null; public ArrayList RecIDBetween = null; public ArrayList RecIDIn = null; public String SettingName = null; public String SettingNameStartsWith = null; public String SettingNameEndsWith = null; public String SettingNameContains = null; public String SettingNameLike = null; public ArrayList SettingNameBetween = null; public ArrayList SettingNameIn = null; public String SettingDescription = null; public String SettingDescriptionStartsWith = null; public String SettingDescriptionEndsWith = null; public String SettingDescriptionContains = null; public String SettingDescriptionLike = null; public ArrayList SettingDescriptionBetween = null; public ArrayList SettingDescriptionIn = null; public Integer CellType = null; public Integer CellTypeGreaterThanOrEqualTo = null; public Integer CellTypeGreaterThan = null; public Integer CellTypeLessThan = null; public Integer CellTypeLessThanOrEqualTo = null; public Integer CellTypeNotEqualTo = null; public ArrayList CellTypeBetween = null; public ArrayList CellTypeIn = null; public String FieldParameter = null; public String FieldParameterStartsWith = null; public String FieldParameterEndsWith = null; public String FieldParameterContains = null; public String FieldParameterLike = null; public ArrayList FieldParameterBetween = null; public ArrayList FieldParameterIn = null; public UUID SY_Plugin_RecID = null; public ArrayList SY_Plugin_RecIDIn = null; public Date LastSavedDateTime = null; public Date LastSavedDateTimeGreaterThanOrEqualTo = null; public Date LastSavedDateTimeGreaterThan = null; public Date LastSavedDateTimeLessThan = null; public Date LastSavedDateTimeLessThanOrEqualTo = null; public Date LastSavedDateTimeNotEqualTo = null; public ArrayList LastSavedDateTimeBetween = null; public ArrayList LastSavedDateTimeIn = null; public Integer DisplayOrder = null; public Integer DisplayOrderGreaterThanOrEqualTo = null; public Integer DisplayOrderGreaterThan = null; public Integer DisplayOrderLessThan = null; public Integer DisplayOrderLessThanOrEqualTo = null; public Integer DisplayOrderNotEqualTo = null; public ArrayList DisplayOrderBetween = null; public ArrayList DisplayOrderIn = null; public String getRecID() { return RecID; } public IN_Category5CustomFieldsQuery setRecID(String value) { this.RecID = value; return this; } public String getRecIDStartsWith() { return RecIDStartsWith; } public IN_Category5CustomFieldsQuery setRecIDStartsWith(String value) { this.RecIDStartsWith = value; return this; } public String getRecIDEndsWith() { return RecIDEndsWith; } public IN_Category5CustomFieldsQuery setRecIDEndsWith(String value) { this.RecIDEndsWith = value; return this; } public String getRecIDContains() { return RecIDContains; } public IN_Category5CustomFieldsQuery setRecIDContains(String value) { this.RecIDContains = value; return this; } public String getRecIDLike() { return RecIDLike; } public IN_Category5CustomFieldsQuery setRecIDLike(String value) { this.RecIDLike = value; return this; } public ArrayList getRecIDBetween() { return RecIDBetween; } public IN_Category5CustomFieldsQuery setRecIDBetween(ArrayList value) { this.RecIDBetween = value; return this; } public ArrayList getRecIDIn() { return RecIDIn; } public IN_Category5CustomFieldsQuery setRecIDIn(ArrayList value) { this.RecIDIn = value; return this; } public String getSettingName() { return SettingName; } public IN_Category5CustomFieldsQuery setSettingName(String value) { this.SettingName = value; return this; } public String getSettingNameStartsWith() { return SettingNameStartsWith; } public IN_Category5CustomFieldsQuery setSettingNameStartsWith(String value) { this.SettingNameStartsWith = value; return this; } public String getSettingNameEndsWith() { return SettingNameEndsWith; } public IN_Category5CustomFieldsQuery setSettingNameEndsWith(String value) { this.SettingNameEndsWith = value; return this; } public String getSettingNameContains() { return SettingNameContains; } public IN_Category5CustomFieldsQuery setSettingNameContains(String value) { this.SettingNameContains = value; return this; } public String getSettingNameLike() { return SettingNameLike; } public IN_Category5CustomFieldsQuery setSettingNameLike(String value) { this.SettingNameLike = value; return this; } public ArrayList getSettingNameBetween() { return SettingNameBetween; } public IN_Category5CustomFieldsQuery setSettingNameBetween(ArrayList value) { this.SettingNameBetween = value; return this; } public ArrayList getSettingNameIn() { return SettingNameIn; } public IN_Category5CustomFieldsQuery setSettingNameIn(ArrayList value) { this.SettingNameIn = value; return this; } public String getSettingDescription() { return SettingDescription; } public IN_Category5CustomFieldsQuery setSettingDescription(String value) { this.SettingDescription = value; return this; } public String getSettingDescriptionStartsWith() { return SettingDescriptionStartsWith; } public IN_Category5CustomFieldsQuery setSettingDescriptionStartsWith(String value) { this.SettingDescriptionStartsWith = value; return this; } public String getSettingDescriptionEndsWith() { return SettingDescriptionEndsWith; } public IN_Category5CustomFieldsQuery setSettingDescriptionEndsWith(String value) { this.SettingDescriptionEndsWith = value; return this; } public String getSettingDescriptionContains() { return SettingDescriptionContains; } public IN_Category5CustomFieldsQuery setSettingDescriptionContains(String value) { this.SettingDescriptionContains = value; return this; } public String getSettingDescriptionLike() { return SettingDescriptionLike; } public IN_Category5CustomFieldsQuery setSettingDescriptionLike(String value) { this.SettingDescriptionLike = value; return this; } public ArrayList getSettingDescriptionBetween() { return SettingDescriptionBetween; } public IN_Category5CustomFieldsQuery setSettingDescriptionBetween(ArrayList value) { this.SettingDescriptionBetween = value; return this; } public ArrayList getSettingDescriptionIn() { return SettingDescriptionIn; } public IN_Category5CustomFieldsQuery setSettingDescriptionIn(ArrayList value) { this.SettingDescriptionIn = value; return this; } public Integer getCellType() { return CellType; } public IN_Category5CustomFieldsQuery setCellType(Integer value) { this.CellType = value; return this; } public Integer getCellTypeGreaterThanOrEqualTo() { return CellTypeGreaterThanOrEqualTo; } public IN_Category5CustomFieldsQuery setCellTypeGreaterThanOrEqualTo(Integer value) { this.CellTypeGreaterThanOrEqualTo = value; return this; } public Integer getCellTypeGreaterThan() { return CellTypeGreaterThan; } public IN_Category5CustomFieldsQuery setCellTypeGreaterThan(Integer value) { this.CellTypeGreaterThan = value; return this; } public Integer getCellTypeLessThan() { return CellTypeLessThan; } public IN_Category5CustomFieldsQuery setCellTypeLessThan(Integer value) { this.CellTypeLessThan = value; return this; } public Integer getCellTypeLessThanOrEqualTo() { return CellTypeLessThanOrEqualTo; } public IN_Category5CustomFieldsQuery setCellTypeLessThanOrEqualTo(Integer value) { this.CellTypeLessThanOrEqualTo = value; return this; } public Integer getCellTypeNotEqualTo() { return CellTypeNotEqualTo; } public IN_Category5CustomFieldsQuery setCellTypeNotEqualTo(Integer value) { this.CellTypeNotEqualTo = value; return this; } public ArrayList getCellTypeBetween() { return CellTypeBetween; } public IN_Category5CustomFieldsQuery setCellTypeBetween(ArrayList value) { this.CellTypeBetween = value; return this; } public ArrayList getCellTypeIn() { return CellTypeIn; } public IN_Category5CustomFieldsQuery setCellTypeIn(ArrayList value) { this.CellTypeIn = value; return this; } public String getFieldParameter() { return FieldParameter; } public IN_Category5CustomFieldsQuery setFieldParameter(String value) { this.FieldParameter = value; return this; } public String getFieldParameterStartsWith() { return FieldParameterStartsWith; } public IN_Category5CustomFieldsQuery setFieldParameterStartsWith(String value) { this.FieldParameterStartsWith = value; return this; } public String getFieldParameterEndsWith() { return FieldParameterEndsWith; } public IN_Category5CustomFieldsQuery setFieldParameterEndsWith(String value) { this.FieldParameterEndsWith = value; return this; } public String getFieldParameterContains() { return FieldParameterContains; } public IN_Category5CustomFieldsQuery setFieldParameterContains(String value) { this.FieldParameterContains = value; return this; } public String getFieldParameterLike() { return FieldParameterLike; } public IN_Category5CustomFieldsQuery setFieldParameterLike(String value) { this.FieldParameterLike = value; return this; } public ArrayList getFieldParameterBetween() { return FieldParameterBetween; } public IN_Category5CustomFieldsQuery setFieldParameterBetween(ArrayList value) { this.FieldParameterBetween = value; return this; } public ArrayList getFieldParameterIn() { return FieldParameterIn; } public IN_Category5CustomFieldsQuery setFieldParameterIn(ArrayList value) { this.FieldParameterIn = value; return this; } public UUID getSyPluginRecID() { return SY_Plugin_RecID; } public IN_Category5CustomFieldsQuery setSyPluginRecID(UUID value) { this.SY_Plugin_RecID = value; return this; } public ArrayList getSyPluginRecIDIn() { return SY_Plugin_RecIDIn; } public IN_Category5CustomFieldsQuery setSyPluginRecIDIn(ArrayList value) { this.SY_Plugin_RecIDIn = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public IN_Category5CustomFieldsQuery setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getLastSavedDateTimeGreaterThanOrEqualTo() { return LastSavedDateTimeGreaterThanOrEqualTo; } public IN_Category5CustomFieldsQuery setLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.LastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeGreaterThan() { return LastSavedDateTimeGreaterThan; } public IN_Category5CustomFieldsQuery setLastSavedDateTimeGreaterThan(Date value) { this.LastSavedDateTimeGreaterThan = value; return this; } public Date getLastSavedDateTimeLessThan() { return LastSavedDateTimeLessThan; } public IN_Category5CustomFieldsQuery setLastSavedDateTimeLessThan(Date value) { this.LastSavedDateTimeLessThan = value; return this; } public Date getLastSavedDateTimeLessThanOrEqualTo() { return LastSavedDateTimeLessThanOrEqualTo; } public IN_Category5CustomFieldsQuery setLastSavedDateTimeLessThanOrEqualTo(Date value) { this.LastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeNotEqualTo() { return LastSavedDateTimeNotEqualTo; } public IN_Category5CustomFieldsQuery setLastSavedDateTimeNotEqualTo(Date value) { this.LastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getLastSavedDateTimeBetween() { return LastSavedDateTimeBetween; } public IN_Category5CustomFieldsQuery setLastSavedDateTimeBetween(ArrayList value) { this.LastSavedDateTimeBetween = value; return this; } public ArrayList getLastSavedDateTimeIn() { return LastSavedDateTimeIn; } public IN_Category5CustomFieldsQuery setLastSavedDateTimeIn(ArrayList value) { this.LastSavedDateTimeIn = value; return this; } public Integer getDisplayOrder() { return DisplayOrder; } public IN_Category5CustomFieldsQuery setDisplayOrder(Integer value) { this.DisplayOrder = value; return this; } public Integer getDisplayOrderGreaterThanOrEqualTo() { return DisplayOrderGreaterThanOrEqualTo; } public IN_Category5CustomFieldsQuery setDisplayOrderGreaterThanOrEqualTo(Integer value) { this.DisplayOrderGreaterThanOrEqualTo = value; return this; } public Integer getDisplayOrderGreaterThan() { return DisplayOrderGreaterThan; } public IN_Category5CustomFieldsQuery setDisplayOrderGreaterThan(Integer value) { this.DisplayOrderGreaterThan = value; return this; } public Integer getDisplayOrderLessThan() { return DisplayOrderLessThan; } public IN_Category5CustomFieldsQuery setDisplayOrderLessThan(Integer value) { this.DisplayOrderLessThan = value; return this; } public Integer getDisplayOrderLessThanOrEqualTo() { return DisplayOrderLessThanOrEqualTo; } public IN_Category5CustomFieldsQuery setDisplayOrderLessThanOrEqualTo(Integer value) { this.DisplayOrderLessThanOrEqualTo = value; return this; } public Integer getDisplayOrderNotEqualTo() { return DisplayOrderNotEqualTo; } public IN_Category5CustomFieldsQuery setDisplayOrderNotEqualTo(Integer value) { this.DisplayOrderNotEqualTo = value; return this; } public ArrayList getDisplayOrderBetween() { return DisplayOrderBetween; } public IN_Category5CustomFieldsQuery setDisplayOrderBetween(ArrayList value) { this.DisplayOrderBetween = value; return this; } public ArrayList getDisplayOrderIn() { return DisplayOrderIn; } public IN_Category5CustomFieldsQuery setDisplayOrderIn(ArrayList value) { this.DisplayOrderIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class IN_Category5CustomValuesQuery extends QueryDb implements IReturn> { public String RecID = null; public String RecIDStartsWith = null; public String RecIDEndsWith = null; public String RecIDContains = null; public String RecIDLike = null; public ArrayList RecIDBetween = null; public ArrayList RecIDIn = null; public String IN_Category5_RecID = null; public String IN_Category5_RecIDStartsWith = null; public String IN_Category5_RecIDEndsWith = null; public String IN_Category5_RecIDContains = null; public String IN_Category5_RecIDLike = null; public ArrayList IN_Category5_RecIDBetween = null; public ArrayList IN_Category5_RecIDIn = null; public String IN_Category5CustomFields_RecID = null; public String IN_Category5CustomFields_RecIDStartsWith = null; public String IN_Category5CustomFields_RecIDEndsWith = null; public String IN_Category5CustomFields_RecIDContains = null; public String IN_Category5CustomFields_RecIDLike = null; public ArrayList IN_Category5CustomFields_RecIDBetween = null; public ArrayList IN_Category5CustomFields_RecIDIn = null; public String Contents = null; public String ContentsStartsWith = null; public String ContentsEndsWith = null; public String ContentsContains = null; public String ContentsLike = null; public ArrayList ContentsBetween = null; public ArrayList ContentsIn = null; public Date LastSavedDateTime = null; public Date LastSavedDateTimeGreaterThanOrEqualTo = null; public Date LastSavedDateTimeGreaterThan = null; public Date LastSavedDateTimeLessThan = null; public Date LastSavedDateTimeLessThanOrEqualTo = null; public Date LastSavedDateTimeNotEqualTo = null; public ArrayList LastSavedDateTimeBetween = null; public ArrayList LastSavedDateTimeIn = null; public String getRecID() { return RecID; } public IN_Category5CustomValuesQuery setRecID(String value) { this.RecID = value; return this; } public String getRecIDStartsWith() { return RecIDStartsWith; } public IN_Category5CustomValuesQuery setRecIDStartsWith(String value) { this.RecIDStartsWith = value; return this; } public String getRecIDEndsWith() { return RecIDEndsWith; } public IN_Category5CustomValuesQuery setRecIDEndsWith(String value) { this.RecIDEndsWith = value; return this; } public String getRecIDContains() { return RecIDContains; } public IN_Category5CustomValuesQuery setRecIDContains(String value) { this.RecIDContains = value; return this; } public String getRecIDLike() { return RecIDLike; } public IN_Category5CustomValuesQuery setRecIDLike(String value) { this.RecIDLike = value; return this; } public ArrayList getRecIDBetween() { return RecIDBetween; } public IN_Category5CustomValuesQuery setRecIDBetween(ArrayList value) { this.RecIDBetween = value; return this; } public ArrayList getRecIDIn() { return RecIDIn; } public IN_Category5CustomValuesQuery setRecIDIn(ArrayList value) { this.RecIDIn = value; return this; } public String getInCategory5RecID() { return IN_Category5_RecID; } public IN_Category5CustomValuesQuery setInCategory5RecID(String value) { this.IN_Category5_RecID = value; return this; } public String getInCategory5RecIDStartsWith() { return IN_Category5_RecIDStartsWith; } public IN_Category5CustomValuesQuery setInCategory5RecIDStartsWith(String value) { this.IN_Category5_RecIDStartsWith = value; return this; } public String getInCategory5RecIDEndsWith() { return IN_Category5_RecIDEndsWith; } public IN_Category5CustomValuesQuery setInCategory5RecIDEndsWith(String value) { this.IN_Category5_RecIDEndsWith = value; return this; } public String getInCategory5RecIDContains() { return IN_Category5_RecIDContains; } public IN_Category5CustomValuesQuery setInCategory5RecIDContains(String value) { this.IN_Category5_RecIDContains = value; return this; } public String getInCategory5RecIDLike() { return IN_Category5_RecIDLike; } public IN_Category5CustomValuesQuery setInCategory5RecIDLike(String value) { this.IN_Category5_RecIDLike = value; return this; } public ArrayList getInCategory5RecIDBetween() { return IN_Category5_RecIDBetween; } public IN_Category5CustomValuesQuery setInCategory5RecIDBetween(ArrayList value) { this.IN_Category5_RecIDBetween = value; return this; } public ArrayList getInCategory5RecIDIn() { return IN_Category5_RecIDIn; } public IN_Category5CustomValuesQuery setInCategory5RecIDIn(ArrayList value) { this.IN_Category5_RecIDIn = value; return this; } public String getInCategory5CustomFieldsRecID() { return IN_Category5CustomFields_RecID; } public IN_Category5CustomValuesQuery setInCategory5CustomFieldsRecID(String value) { this.IN_Category5CustomFields_RecID = value; return this; } public String getInCategory5CustomFieldsRecIDStartsWith() { return IN_Category5CustomFields_RecIDStartsWith; } public IN_Category5CustomValuesQuery setInCategory5CustomFieldsRecIDStartsWith(String value) { this.IN_Category5CustomFields_RecIDStartsWith = value; return this; } public String getInCategory5CustomFieldsRecIDEndsWith() { return IN_Category5CustomFields_RecIDEndsWith; } public IN_Category5CustomValuesQuery setInCategory5CustomFieldsRecIDEndsWith(String value) { this.IN_Category5CustomFields_RecIDEndsWith = value; return this; } public String getInCategory5CustomFieldsRecIDContains() { return IN_Category5CustomFields_RecIDContains; } public IN_Category5CustomValuesQuery setInCategory5CustomFieldsRecIDContains(String value) { this.IN_Category5CustomFields_RecIDContains = value; return this; } public String getInCategory5CustomFieldsRecIDLike() { return IN_Category5CustomFields_RecIDLike; } public IN_Category5CustomValuesQuery setInCategory5CustomFieldsRecIDLike(String value) { this.IN_Category5CustomFields_RecIDLike = value; return this; } public ArrayList getInCategory5CustomFieldsRecIDBetween() { return IN_Category5CustomFields_RecIDBetween; } public IN_Category5CustomValuesQuery setInCategory5CustomFieldsRecIDBetween(ArrayList value) { this.IN_Category5CustomFields_RecIDBetween = value; return this; } public ArrayList getInCategory5CustomFieldsRecIDIn() { return IN_Category5CustomFields_RecIDIn; } public IN_Category5CustomValuesQuery setInCategory5CustomFieldsRecIDIn(ArrayList value) { this.IN_Category5CustomFields_RecIDIn = value; return this; } public String getContents() { return Contents; } public IN_Category5CustomValuesQuery setContents(String value) { this.Contents = value; return this; } public String getContentsStartsWith() { return ContentsStartsWith; } public IN_Category5CustomValuesQuery setContentsStartsWith(String value) { this.ContentsStartsWith = value; return this; } public String getContentsEndsWith() { return ContentsEndsWith; } public IN_Category5CustomValuesQuery setContentsEndsWith(String value) { this.ContentsEndsWith = value; return this; } public String getContentsContains() { return ContentsContains; } public IN_Category5CustomValuesQuery setContentsContains(String value) { this.ContentsContains = value; return this; } public String getContentsLike() { return ContentsLike; } public IN_Category5CustomValuesQuery setContentsLike(String value) { this.ContentsLike = value; return this; } public ArrayList getContentsBetween() { return ContentsBetween; } public IN_Category5CustomValuesQuery setContentsBetween(ArrayList value) { this.ContentsBetween = value; return this; } public ArrayList getContentsIn() { return ContentsIn; } public IN_Category5CustomValuesQuery setContentsIn(ArrayList value) { this.ContentsIn = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public IN_Category5CustomValuesQuery setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getLastSavedDateTimeGreaterThanOrEqualTo() { return LastSavedDateTimeGreaterThanOrEqualTo; } public IN_Category5CustomValuesQuery setLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.LastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeGreaterThan() { return LastSavedDateTimeGreaterThan; } public IN_Category5CustomValuesQuery setLastSavedDateTimeGreaterThan(Date value) { this.LastSavedDateTimeGreaterThan = value; return this; } public Date getLastSavedDateTimeLessThan() { return LastSavedDateTimeLessThan; } public IN_Category5CustomValuesQuery setLastSavedDateTimeLessThan(Date value) { this.LastSavedDateTimeLessThan = value; return this; } public Date getLastSavedDateTimeLessThanOrEqualTo() { return LastSavedDateTimeLessThanOrEqualTo; } public IN_Category5CustomValuesQuery setLastSavedDateTimeLessThanOrEqualTo(Date value) { this.LastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeNotEqualTo() { return LastSavedDateTimeNotEqualTo; } public IN_Category5CustomValuesQuery setLastSavedDateTimeNotEqualTo(Date value) { this.LastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getLastSavedDateTimeBetween() { return LastSavedDateTimeBetween; } public IN_Category5CustomValuesQuery setLastSavedDateTimeBetween(ArrayList value) { this.LastSavedDateTimeBetween = value; return this; } public ArrayList getLastSavedDateTimeIn() { return LastSavedDateTimeIn; } public IN_Category5CustomValuesQuery setLastSavedDateTimeIn(ArrayList value) { this.LastSavedDateTimeIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class IN_ClassQuery extends QueryDb implements IReturn> { public String Class = null; public String ClassStartsWith = null; public String ClassEndsWith = null; public String ClassContains = null; public String ClassLike = null; public ArrayList ClassBetween = null; public ArrayList ClassIn = null; public String getClass() { return Class; } public IN_ClassQuery setClass(String value) { this.Class = value; return this; } public String getClassStartsWith() { return ClassStartsWith; } public IN_ClassQuery setClassStartsWith(String value) { this.ClassStartsWith = value; return this; } public String getClassEndsWith() { return ClassEndsWith; } public IN_ClassQuery setClassEndsWith(String value) { this.ClassEndsWith = value; return this; } public String getClassContains() { return ClassContains; } public IN_ClassQuery setClassContains(String value) { this.ClassContains = value; return this; } public String getClassLike() { return ClassLike; } public IN_ClassQuery setClassLike(String value) { this.ClassLike = value; return this; } public ArrayList getClassBetween() { return ClassBetween; } public IN_ClassQuery setClassBetween(ArrayList value) { this.ClassBetween = value; return this; } public ArrayList getClassIn() { return ClassIn; } public IN_ClassQuery setClassIn(ArrayList value) { this.ClassIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @Route(Path="/Queries/IN_Classification", Verbs="GET") @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class IN_ClassificationQuery extends QueryDb implements IReturn> { public String InventoryClassificationID = null; public String InventoryClassificationIDStartsWith = null; public String InventoryClassificationIDEndsWith = null; public String InventoryClassificationIDContains = null; public String InventoryClassificationIDLike = null; public ArrayList InventoryClassificationIDBetween = null; public ArrayList InventoryClassificationIDIn = null; public String Description = null; public String DescriptionStartsWith = null; public String DescriptionEndsWith = null; public String DescriptionContains = null; public String DescriptionLike = null; public ArrayList DescriptionBetween = null; public ArrayList DescriptionIn = null; public Date LastSavedDateTime = null; public Date LastSavedDateTimeGreaterThanOrEqualTo = null; public Date LastSavedDateTimeGreaterThan = null; public Date LastSavedDateTimeLessThan = null; public Date LastSavedDateTimeLessThanOrEqualTo = null; public Date LastSavedDateTimeNotEqualTo = null; public ArrayList LastSavedDateTimeBetween = null; public ArrayList LastSavedDateTimeIn = null; public String LedgerInvValue = null; public String LedgerInvValueStartsWith = null; public String LedgerInvValueEndsWith = null; public String LedgerInvValueContains = null; public String LedgerInvValueLike = null; public ArrayList LedgerInvValueBetween = null; public ArrayList LedgerInvValueIn = null; public String LedgerMovement_COG = null; public String LedgerMovement_COGStartsWith = null; public String LedgerMovement_COGEndsWith = null; public String LedgerMovement_COGContains = null; public String LedgerMovement_COGLike = null; public ArrayList LedgerMovement_COGBetween = null; public ArrayList LedgerMovement_COGIn = null; public String LedgerExpAsset = null; public String LedgerExpAssetStartsWith = null; public String LedgerExpAssetEndsWith = null; public String LedgerExpAssetContains = null; public String LedgerExpAssetLike = null; public ArrayList LedgerExpAssetBetween = null; public ArrayList LedgerExpAssetIn = null; public String LedgerExpLiab = null; public String LedgerExpLiabStartsWith = null; public String LedgerExpLiabEndsWith = null; public String LedgerExpLiabContains = null; public String LedgerExpLiabLike = null; public ArrayList LedgerExpLiabBetween = null; public ArrayList LedgerExpLiabIn = null; public String LedgerDelAsset = null; public String LedgerDelAssetStartsWith = null; public String LedgerDelAssetEndsWith = null; public String LedgerDelAssetContains = null; public String LedgerDelAssetLike = null; public ArrayList LedgerDelAssetBetween = null; public ArrayList LedgerDelAssetIn = null; public String LedgerDelLiab = null; public String LedgerDelLiabStartsWith = null; public String LedgerDelLiabEndsWith = null; public String LedgerDelLiabContains = null; public String LedgerDelLiabLike = null; public ArrayList LedgerDelLiabBetween = null; public ArrayList LedgerDelLiabIn = null; public String LedgerAssignedValue = null; public String LedgerAssignedValueStartsWith = null; public String LedgerAssignedValueEndsWith = null; public String LedgerAssignedValueContains = null; public String LedgerAssignedValueLike = null; public ArrayList LedgerAssignedValueBetween = null; public ArrayList LedgerAssignedValueIn = null; public String LedgerCogVariance = null; public String LedgerCogVarianceStartsWith = null; public String LedgerCogVarianceEndsWith = null; public String LedgerCogVarianceContains = null; public String LedgerCogVarianceLike = null; public ArrayList LedgerCogVarianceBetween = null; public ArrayList LedgerCogVarianceIn = null; public String LedgerInvSales = null; public String LedgerInvSalesStartsWith = null; public String LedgerInvSalesEndsWith = null; public String LedgerInvSalesContains = null; public String LedgerInvSalesLike = null; public ArrayList LedgerInvSalesBetween = null; public ArrayList LedgerInvSalesIn = null; public String LedgerAccumulator = null; public String LedgerAccumulatorStartsWith = null; public String LedgerAccumulatorEndsWith = null; public String LedgerAccumulatorContains = null; public String LedgerAccumulatorLike = null; public ArrayList LedgerAccumulatorBetween = null; public ArrayList LedgerAccumulatorIn = null; public String LedgerPurchases = null; public String LedgerPurchasesStartsWith = null; public String LedgerPurchasesEndsWith = null; public String LedgerPurchasesContains = null; public String LedgerPurchasesLike = null; public ArrayList LedgerPurchasesBetween = null; public ArrayList LedgerPurchasesIn = null; public String LedgerShipComplete = null; public String LedgerShipCompleteStartsWith = null; public String LedgerShipCompleteEndsWith = null; public String LedgerShipCompleteContains = null; public String LedgerShipCompleteLike = null; public ArrayList LedgerShipCompleteBetween = null; public ArrayList LedgerShipCompleteIn = null; public String LedgerWriteOn = null; public String LedgerWriteOnStartsWith = null; public String LedgerWriteOnEndsWith = null; public String LedgerWriteOnContains = null; public String LedgerWriteOnLike = null; public ArrayList LedgerWriteOnBetween = null; public ArrayList LedgerWriteOnIn = null; public String LedgerWriteOff = null; public String LedgerWriteOffStartsWith = null; public String LedgerWriteOffEndsWith = null; public String LedgerWriteOffContains = null; public String LedgerWriteOffLike = null; public ArrayList LedgerWriteOffBetween = null; public ArrayList LedgerWriteOffIn = null; public String LedgerCostPriceAdj = null; public String LedgerCostPriceAdjStartsWith = null; public String LedgerCostPriceAdjEndsWith = null; public String LedgerCostPriceAdjContains = null; public String LedgerCostPriceAdjLike = null; public ArrayList LedgerCostPriceAdjBetween = null; public ArrayList LedgerCostPriceAdjIn = null; public String GSTInwardsID = null; public String GSTInwardsIDStartsWith = null; public String GSTInwardsIDEndsWith = null; public String GSTInwardsIDContains = null; public String GSTInwardsIDLike = null; public ArrayList GSTInwardsIDBetween = null; public ArrayList GSTInwardsIDIn = null; public String GSTOutwardsID = null; public String GSTOutwardsIDStartsWith = null; public String GSTOutwardsIDEndsWith = null; public String GSTOutwardsIDContains = null; public String GSTOutwardsIDLike = null; public ArrayList GSTOutwardsIDBetween = null; public ArrayList GSTOutwardsIDIn = null; public String GSTAdjustmentsINID = null; public String GSTAdjustmentsINIDStartsWith = null; public String GSTAdjustmentsINIDEndsWith = null; public String GSTAdjustmentsINIDContains = null; public String GSTAdjustmentsINIDLike = null; public ArrayList GSTAdjustmentsINIDBetween = null; public ArrayList GSTAdjustmentsINIDIn = null; public String GSTAdjustmentsOUTID = null; public String GSTAdjustmentsOUTIDStartsWith = null; public String GSTAdjustmentsOUTIDEndsWith = null; public String GSTAdjustmentsOUTIDContains = null; public String GSTAdjustmentsOUTIDLike = null; public ArrayList GSTAdjustmentsOUTIDBetween = null; public ArrayList GSTAdjustmentsOUTIDIn = null; public Boolean WebEnabled = null; public Boolean DefaultClassification = null; public String PricingGroupID = null; public String PricingGroupIDStartsWith = null; public String PricingGroupIDEndsWith = null; public String PricingGroupIDContains = null; public String PricingGroupIDLike = null; public ArrayList PricingGroupIDBetween = null; public ArrayList PricingGroupIDIn = null; public String getInventoryClassificationID() { return InventoryClassificationID; } public IN_ClassificationQuery setInventoryClassificationID(String value) { this.InventoryClassificationID = value; return this; } public String getInventoryClassificationIDStartsWith() { return InventoryClassificationIDStartsWith; } public IN_ClassificationQuery setInventoryClassificationIDStartsWith(String value) { this.InventoryClassificationIDStartsWith = value; return this; } public String getInventoryClassificationIDEndsWith() { return InventoryClassificationIDEndsWith; } public IN_ClassificationQuery setInventoryClassificationIDEndsWith(String value) { this.InventoryClassificationIDEndsWith = value; return this; } public String getInventoryClassificationIDContains() { return InventoryClassificationIDContains; } public IN_ClassificationQuery setInventoryClassificationIDContains(String value) { this.InventoryClassificationIDContains = value; return this; } public String getInventoryClassificationIDLike() { return InventoryClassificationIDLike; } public IN_ClassificationQuery setInventoryClassificationIDLike(String value) { this.InventoryClassificationIDLike = value; return this; } public ArrayList getInventoryClassificationIDBetween() { return InventoryClassificationIDBetween; } public IN_ClassificationQuery setInventoryClassificationIDBetween(ArrayList value) { this.InventoryClassificationIDBetween = value; return this; } public ArrayList getInventoryClassificationIDIn() { return InventoryClassificationIDIn; } public IN_ClassificationQuery setInventoryClassificationIDIn(ArrayList value) { this.InventoryClassificationIDIn = value; return this; } public String getDescription() { return Description; } public IN_ClassificationQuery setDescription(String value) { this.Description = value; return this; } public String getDescriptionStartsWith() { return DescriptionStartsWith; } public IN_ClassificationQuery setDescriptionStartsWith(String value) { this.DescriptionStartsWith = value; return this; } public String getDescriptionEndsWith() { return DescriptionEndsWith; } public IN_ClassificationQuery setDescriptionEndsWith(String value) { this.DescriptionEndsWith = value; return this; } public String getDescriptionContains() { return DescriptionContains; } public IN_ClassificationQuery setDescriptionContains(String value) { this.DescriptionContains = value; return this; } public String getDescriptionLike() { return DescriptionLike; } public IN_ClassificationQuery setDescriptionLike(String value) { this.DescriptionLike = value; return this; } public ArrayList getDescriptionBetween() { return DescriptionBetween; } public IN_ClassificationQuery setDescriptionBetween(ArrayList value) { this.DescriptionBetween = value; return this; } public ArrayList getDescriptionIn() { return DescriptionIn; } public IN_ClassificationQuery setDescriptionIn(ArrayList value) { this.DescriptionIn = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public IN_ClassificationQuery setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getLastSavedDateTimeGreaterThanOrEqualTo() { return LastSavedDateTimeGreaterThanOrEqualTo; } public IN_ClassificationQuery setLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.LastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeGreaterThan() { return LastSavedDateTimeGreaterThan; } public IN_ClassificationQuery setLastSavedDateTimeGreaterThan(Date value) { this.LastSavedDateTimeGreaterThan = value; return this; } public Date getLastSavedDateTimeLessThan() { return LastSavedDateTimeLessThan; } public IN_ClassificationQuery setLastSavedDateTimeLessThan(Date value) { this.LastSavedDateTimeLessThan = value; return this; } public Date getLastSavedDateTimeLessThanOrEqualTo() { return LastSavedDateTimeLessThanOrEqualTo; } public IN_ClassificationQuery setLastSavedDateTimeLessThanOrEqualTo(Date value) { this.LastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeNotEqualTo() { return LastSavedDateTimeNotEqualTo; } public IN_ClassificationQuery setLastSavedDateTimeNotEqualTo(Date value) { this.LastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getLastSavedDateTimeBetween() { return LastSavedDateTimeBetween; } public IN_ClassificationQuery setLastSavedDateTimeBetween(ArrayList value) { this.LastSavedDateTimeBetween = value; return this; } public ArrayList getLastSavedDateTimeIn() { return LastSavedDateTimeIn; } public IN_ClassificationQuery setLastSavedDateTimeIn(ArrayList value) { this.LastSavedDateTimeIn = value; return this; } public String getLedgerInvValue() { return LedgerInvValue; } public IN_ClassificationQuery setLedgerInvValue(String value) { this.LedgerInvValue = value; return this; } public String getLedgerInvValueStartsWith() { return LedgerInvValueStartsWith; } public IN_ClassificationQuery setLedgerInvValueStartsWith(String value) { this.LedgerInvValueStartsWith = value; return this; } public String getLedgerInvValueEndsWith() { return LedgerInvValueEndsWith; } public IN_ClassificationQuery setLedgerInvValueEndsWith(String value) { this.LedgerInvValueEndsWith = value; return this; } public String getLedgerInvValueContains() { return LedgerInvValueContains; } public IN_ClassificationQuery setLedgerInvValueContains(String value) { this.LedgerInvValueContains = value; return this; } public String getLedgerInvValueLike() { return LedgerInvValueLike; } public IN_ClassificationQuery setLedgerInvValueLike(String value) { this.LedgerInvValueLike = value; return this; } public ArrayList getLedgerInvValueBetween() { return LedgerInvValueBetween; } public IN_ClassificationQuery setLedgerInvValueBetween(ArrayList value) { this.LedgerInvValueBetween = value; return this; } public ArrayList getLedgerInvValueIn() { return LedgerInvValueIn; } public IN_ClassificationQuery setLedgerInvValueIn(ArrayList value) { this.LedgerInvValueIn = value; return this; } public String getLedgerMovementCog() { return LedgerMovement_COG; } public IN_ClassificationQuery setLedgerMovementCog(String value) { this.LedgerMovement_COG = value; return this; } public String getLedgerMovementCogStartsWith() { return LedgerMovement_COGStartsWith; } public IN_ClassificationQuery setLedgerMovementCogStartsWith(String value) { this.LedgerMovement_COGStartsWith = value; return this; } public String getLedgerMovementCogEndsWith() { return LedgerMovement_COGEndsWith; } public IN_ClassificationQuery setLedgerMovementCogEndsWith(String value) { this.LedgerMovement_COGEndsWith = value; return this; } public String getLedgerMovementCogContains() { return LedgerMovement_COGContains; } public IN_ClassificationQuery setLedgerMovementCogContains(String value) { this.LedgerMovement_COGContains = value; return this; } public String getLedgerMovementCogLike() { return LedgerMovement_COGLike; } public IN_ClassificationQuery setLedgerMovementCogLike(String value) { this.LedgerMovement_COGLike = value; return this; } public ArrayList getLedgerMovementCogBetween() { return LedgerMovement_COGBetween; } public IN_ClassificationQuery setLedgerMovementCogBetween(ArrayList value) { this.LedgerMovement_COGBetween = value; return this; } public ArrayList getLedgerMovementCogIn() { return LedgerMovement_COGIn; } public IN_ClassificationQuery setLedgerMovementCogIn(ArrayList value) { this.LedgerMovement_COGIn = value; return this; } public String getLedgerExpAsset() { return LedgerExpAsset; } public IN_ClassificationQuery setLedgerExpAsset(String value) { this.LedgerExpAsset = value; return this; } public String getLedgerExpAssetStartsWith() { return LedgerExpAssetStartsWith; } public IN_ClassificationQuery setLedgerExpAssetStartsWith(String value) { this.LedgerExpAssetStartsWith = value; return this; } public String getLedgerExpAssetEndsWith() { return LedgerExpAssetEndsWith; } public IN_ClassificationQuery setLedgerExpAssetEndsWith(String value) { this.LedgerExpAssetEndsWith = value; return this; } public String getLedgerExpAssetContains() { return LedgerExpAssetContains; } public IN_ClassificationQuery setLedgerExpAssetContains(String value) { this.LedgerExpAssetContains = value; return this; } public String getLedgerExpAssetLike() { return LedgerExpAssetLike; } public IN_ClassificationQuery setLedgerExpAssetLike(String value) { this.LedgerExpAssetLike = value; return this; } public ArrayList getLedgerExpAssetBetween() { return LedgerExpAssetBetween; } public IN_ClassificationQuery setLedgerExpAssetBetween(ArrayList value) { this.LedgerExpAssetBetween = value; return this; } public ArrayList getLedgerExpAssetIn() { return LedgerExpAssetIn; } public IN_ClassificationQuery setLedgerExpAssetIn(ArrayList value) { this.LedgerExpAssetIn = value; return this; } public String getLedgerExpLiab() { return LedgerExpLiab; } public IN_ClassificationQuery setLedgerExpLiab(String value) { this.LedgerExpLiab = value; return this; } public String getLedgerExpLiabStartsWith() { return LedgerExpLiabStartsWith; } public IN_ClassificationQuery setLedgerExpLiabStartsWith(String value) { this.LedgerExpLiabStartsWith = value; return this; } public String getLedgerExpLiabEndsWith() { return LedgerExpLiabEndsWith; } public IN_ClassificationQuery setLedgerExpLiabEndsWith(String value) { this.LedgerExpLiabEndsWith = value; return this; } public String getLedgerExpLiabContains() { return LedgerExpLiabContains; } public IN_ClassificationQuery setLedgerExpLiabContains(String value) { this.LedgerExpLiabContains = value; return this; } public String getLedgerExpLiabLike() { return LedgerExpLiabLike; } public IN_ClassificationQuery setLedgerExpLiabLike(String value) { this.LedgerExpLiabLike = value; return this; } public ArrayList getLedgerExpLiabBetween() { return LedgerExpLiabBetween; } public IN_ClassificationQuery setLedgerExpLiabBetween(ArrayList value) { this.LedgerExpLiabBetween = value; return this; } public ArrayList getLedgerExpLiabIn() { return LedgerExpLiabIn; } public IN_ClassificationQuery setLedgerExpLiabIn(ArrayList value) { this.LedgerExpLiabIn = value; return this; } public String getLedgerDelAsset() { return LedgerDelAsset; } public IN_ClassificationQuery setLedgerDelAsset(String value) { this.LedgerDelAsset = value; return this; } public String getLedgerDelAssetStartsWith() { return LedgerDelAssetStartsWith; } public IN_ClassificationQuery setLedgerDelAssetStartsWith(String value) { this.LedgerDelAssetStartsWith = value; return this; } public String getLedgerDelAssetEndsWith() { return LedgerDelAssetEndsWith; } public IN_ClassificationQuery setLedgerDelAssetEndsWith(String value) { this.LedgerDelAssetEndsWith = value; return this; } public String getLedgerDelAssetContains() { return LedgerDelAssetContains; } public IN_ClassificationQuery setLedgerDelAssetContains(String value) { this.LedgerDelAssetContains = value; return this; } public String getLedgerDelAssetLike() { return LedgerDelAssetLike; } public IN_ClassificationQuery setLedgerDelAssetLike(String value) { this.LedgerDelAssetLike = value; return this; } public ArrayList getLedgerDelAssetBetween() { return LedgerDelAssetBetween; } public IN_ClassificationQuery setLedgerDelAssetBetween(ArrayList value) { this.LedgerDelAssetBetween = value; return this; } public ArrayList getLedgerDelAssetIn() { return LedgerDelAssetIn; } public IN_ClassificationQuery setLedgerDelAssetIn(ArrayList value) { this.LedgerDelAssetIn = value; return this; } public String getLedgerDelLiab() { return LedgerDelLiab; } public IN_ClassificationQuery setLedgerDelLiab(String value) { this.LedgerDelLiab = value; return this; } public String getLedgerDelLiabStartsWith() { return LedgerDelLiabStartsWith; } public IN_ClassificationQuery setLedgerDelLiabStartsWith(String value) { this.LedgerDelLiabStartsWith = value; return this; } public String getLedgerDelLiabEndsWith() { return LedgerDelLiabEndsWith; } public IN_ClassificationQuery setLedgerDelLiabEndsWith(String value) { this.LedgerDelLiabEndsWith = value; return this; } public String getLedgerDelLiabContains() { return LedgerDelLiabContains; } public IN_ClassificationQuery setLedgerDelLiabContains(String value) { this.LedgerDelLiabContains = value; return this; } public String getLedgerDelLiabLike() { return LedgerDelLiabLike; } public IN_ClassificationQuery setLedgerDelLiabLike(String value) { this.LedgerDelLiabLike = value; return this; } public ArrayList getLedgerDelLiabBetween() { return LedgerDelLiabBetween; } public IN_ClassificationQuery setLedgerDelLiabBetween(ArrayList value) { this.LedgerDelLiabBetween = value; return this; } public ArrayList getLedgerDelLiabIn() { return LedgerDelLiabIn; } public IN_ClassificationQuery setLedgerDelLiabIn(ArrayList value) { this.LedgerDelLiabIn = value; return this; } public String getLedgerAssignedValue() { return LedgerAssignedValue; } public IN_ClassificationQuery setLedgerAssignedValue(String value) { this.LedgerAssignedValue = value; return this; } public String getLedgerAssignedValueStartsWith() { return LedgerAssignedValueStartsWith; } public IN_ClassificationQuery setLedgerAssignedValueStartsWith(String value) { this.LedgerAssignedValueStartsWith = value; return this; } public String getLedgerAssignedValueEndsWith() { return LedgerAssignedValueEndsWith; } public IN_ClassificationQuery setLedgerAssignedValueEndsWith(String value) { this.LedgerAssignedValueEndsWith = value; return this; } public String getLedgerAssignedValueContains() { return LedgerAssignedValueContains; } public IN_ClassificationQuery setLedgerAssignedValueContains(String value) { this.LedgerAssignedValueContains = value; return this; } public String getLedgerAssignedValueLike() { return LedgerAssignedValueLike; } public IN_ClassificationQuery setLedgerAssignedValueLike(String value) { this.LedgerAssignedValueLike = value; return this; } public ArrayList getLedgerAssignedValueBetween() { return LedgerAssignedValueBetween; } public IN_ClassificationQuery setLedgerAssignedValueBetween(ArrayList value) { this.LedgerAssignedValueBetween = value; return this; } public ArrayList getLedgerAssignedValueIn() { return LedgerAssignedValueIn; } public IN_ClassificationQuery setLedgerAssignedValueIn(ArrayList value) { this.LedgerAssignedValueIn = value; return this; } public String getLedgerCogVariance() { return LedgerCogVariance; } public IN_ClassificationQuery setLedgerCogVariance(String value) { this.LedgerCogVariance = value; return this; } public String getLedgerCogVarianceStartsWith() { return LedgerCogVarianceStartsWith; } public IN_ClassificationQuery setLedgerCogVarianceStartsWith(String value) { this.LedgerCogVarianceStartsWith = value; return this; } public String getLedgerCogVarianceEndsWith() { return LedgerCogVarianceEndsWith; } public IN_ClassificationQuery setLedgerCogVarianceEndsWith(String value) { this.LedgerCogVarianceEndsWith = value; return this; } public String getLedgerCogVarianceContains() { return LedgerCogVarianceContains; } public IN_ClassificationQuery setLedgerCogVarianceContains(String value) { this.LedgerCogVarianceContains = value; return this; } public String getLedgerCogVarianceLike() { return LedgerCogVarianceLike; } public IN_ClassificationQuery setLedgerCogVarianceLike(String value) { this.LedgerCogVarianceLike = value; return this; } public ArrayList getLedgerCogVarianceBetween() { return LedgerCogVarianceBetween; } public IN_ClassificationQuery setLedgerCogVarianceBetween(ArrayList value) { this.LedgerCogVarianceBetween = value; return this; } public ArrayList getLedgerCogVarianceIn() { return LedgerCogVarianceIn; } public IN_ClassificationQuery setLedgerCogVarianceIn(ArrayList value) { this.LedgerCogVarianceIn = value; return this; } public String getLedgerInvSales() { return LedgerInvSales; } public IN_ClassificationQuery setLedgerInvSales(String value) { this.LedgerInvSales = value; return this; } public String getLedgerInvSalesStartsWith() { return LedgerInvSalesStartsWith; } public IN_ClassificationQuery setLedgerInvSalesStartsWith(String value) { this.LedgerInvSalesStartsWith = value; return this; } public String getLedgerInvSalesEndsWith() { return LedgerInvSalesEndsWith; } public IN_ClassificationQuery setLedgerInvSalesEndsWith(String value) { this.LedgerInvSalesEndsWith = value; return this; } public String getLedgerInvSalesContains() { return LedgerInvSalesContains; } public IN_ClassificationQuery setLedgerInvSalesContains(String value) { this.LedgerInvSalesContains = value; return this; } public String getLedgerInvSalesLike() { return LedgerInvSalesLike; } public IN_ClassificationQuery setLedgerInvSalesLike(String value) { this.LedgerInvSalesLike = value; return this; } public ArrayList getLedgerInvSalesBetween() { return LedgerInvSalesBetween; } public IN_ClassificationQuery setLedgerInvSalesBetween(ArrayList value) { this.LedgerInvSalesBetween = value; return this; } public ArrayList getLedgerInvSalesIn() { return LedgerInvSalesIn; } public IN_ClassificationQuery setLedgerInvSalesIn(ArrayList value) { this.LedgerInvSalesIn = value; return this; } public String getLedgerAccumulator() { return LedgerAccumulator; } public IN_ClassificationQuery setLedgerAccumulator(String value) { this.LedgerAccumulator = value; return this; } public String getLedgerAccumulatorStartsWith() { return LedgerAccumulatorStartsWith; } public IN_ClassificationQuery setLedgerAccumulatorStartsWith(String value) { this.LedgerAccumulatorStartsWith = value; return this; } public String getLedgerAccumulatorEndsWith() { return LedgerAccumulatorEndsWith; } public IN_ClassificationQuery setLedgerAccumulatorEndsWith(String value) { this.LedgerAccumulatorEndsWith = value; return this; } public String getLedgerAccumulatorContains() { return LedgerAccumulatorContains; } public IN_ClassificationQuery setLedgerAccumulatorContains(String value) { this.LedgerAccumulatorContains = value; return this; } public String getLedgerAccumulatorLike() { return LedgerAccumulatorLike; } public IN_ClassificationQuery setLedgerAccumulatorLike(String value) { this.LedgerAccumulatorLike = value; return this; } public ArrayList getLedgerAccumulatorBetween() { return LedgerAccumulatorBetween; } public IN_ClassificationQuery setLedgerAccumulatorBetween(ArrayList value) { this.LedgerAccumulatorBetween = value; return this; } public ArrayList getLedgerAccumulatorIn() { return LedgerAccumulatorIn; } public IN_ClassificationQuery setLedgerAccumulatorIn(ArrayList value) { this.LedgerAccumulatorIn = value; return this; } public String getLedgerPurchases() { return LedgerPurchases; } public IN_ClassificationQuery setLedgerPurchases(String value) { this.LedgerPurchases = value; return this; } public String getLedgerPurchasesStartsWith() { return LedgerPurchasesStartsWith; } public IN_ClassificationQuery setLedgerPurchasesStartsWith(String value) { this.LedgerPurchasesStartsWith = value; return this; } public String getLedgerPurchasesEndsWith() { return LedgerPurchasesEndsWith; } public IN_ClassificationQuery setLedgerPurchasesEndsWith(String value) { this.LedgerPurchasesEndsWith = value; return this; } public String getLedgerPurchasesContains() { return LedgerPurchasesContains; } public IN_ClassificationQuery setLedgerPurchasesContains(String value) { this.LedgerPurchasesContains = value; return this; } public String getLedgerPurchasesLike() { return LedgerPurchasesLike; } public IN_ClassificationQuery setLedgerPurchasesLike(String value) { this.LedgerPurchasesLike = value; return this; } public ArrayList getLedgerPurchasesBetween() { return LedgerPurchasesBetween; } public IN_ClassificationQuery setLedgerPurchasesBetween(ArrayList value) { this.LedgerPurchasesBetween = value; return this; } public ArrayList getLedgerPurchasesIn() { return LedgerPurchasesIn; } public IN_ClassificationQuery setLedgerPurchasesIn(ArrayList value) { this.LedgerPurchasesIn = value; return this; } public String getLedgerShipComplete() { return LedgerShipComplete; } public IN_ClassificationQuery setLedgerShipComplete(String value) { this.LedgerShipComplete = value; return this; } public String getLedgerShipCompleteStartsWith() { return LedgerShipCompleteStartsWith; } public IN_ClassificationQuery setLedgerShipCompleteStartsWith(String value) { this.LedgerShipCompleteStartsWith = value; return this; } public String getLedgerShipCompleteEndsWith() { return LedgerShipCompleteEndsWith; } public IN_ClassificationQuery setLedgerShipCompleteEndsWith(String value) { this.LedgerShipCompleteEndsWith = value; return this; } public String getLedgerShipCompleteContains() { return LedgerShipCompleteContains; } public IN_ClassificationQuery setLedgerShipCompleteContains(String value) { this.LedgerShipCompleteContains = value; return this; } public String getLedgerShipCompleteLike() { return LedgerShipCompleteLike; } public IN_ClassificationQuery setLedgerShipCompleteLike(String value) { this.LedgerShipCompleteLike = value; return this; } public ArrayList getLedgerShipCompleteBetween() { return LedgerShipCompleteBetween; } public IN_ClassificationQuery setLedgerShipCompleteBetween(ArrayList value) { this.LedgerShipCompleteBetween = value; return this; } public ArrayList getLedgerShipCompleteIn() { return LedgerShipCompleteIn; } public IN_ClassificationQuery setLedgerShipCompleteIn(ArrayList value) { this.LedgerShipCompleteIn = value; return this; } public String getLedgerWriteOn() { return LedgerWriteOn; } public IN_ClassificationQuery setLedgerWriteOn(String value) { this.LedgerWriteOn = value; return this; } public String getLedgerWriteOnStartsWith() { return LedgerWriteOnStartsWith; } public IN_ClassificationQuery setLedgerWriteOnStartsWith(String value) { this.LedgerWriteOnStartsWith = value; return this; } public String getLedgerWriteOnEndsWith() { return LedgerWriteOnEndsWith; } public IN_ClassificationQuery setLedgerWriteOnEndsWith(String value) { this.LedgerWriteOnEndsWith = value; return this; } public String getLedgerWriteOnContains() { return LedgerWriteOnContains; } public IN_ClassificationQuery setLedgerWriteOnContains(String value) { this.LedgerWriteOnContains = value; return this; } public String getLedgerWriteOnLike() { return LedgerWriteOnLike; } public IN_ClassificationQuery setLedgerWriteOnLike(String value) { this.LedgerWriteOnLike = value; return this; } public ArrayList getLedgerWriteOnBetween() { return LedgerWriteOnBetween; } public IN_ClassificationQuery setLedgerWriteOnBetween(ArrayList value) { this.LedgerWriteOnBetween = value; return this; } public ArrayList getLedgerWriteOnIn() { return LedgerWriteOnIn; } public IN_ClassificationQuery setLedgerWriteOnIn(ArrayList value) { this.LedgerWriteOnIn = value; return this; } public String getLedgerWriteOff() { return LedgerWriteOff; } public IN_ClassificationQuery setLedgerWriteOff(String value) { this.LedgerWriteOff = value; return this; } public String getLedgerWriteOffStartsWith() { return LedgerWriteOffStartsWith; } public IN_ClassificationQuery setLedgerWriteOffStartsWith(String value) { this.LedgerWriteOffStartsWith = value; return this; } public String getLedgerWriteOffEndsWith() { return LedgerWriteOffEndsWith; } public IN_ClassificationQuery setLedgerWriteOffEndsWith(String value) { this.LedgerWriteOffEndsWith = value; return this; } public String getLedgerWriteOffContains() { return LedgerWriteOffContains; } public IN_ClassificationQuery setLedgerWriteOffContains(String value) { this.LedgerWriteOffContains = value; return this; } public String getLedgerWriteOffLike() { return LedgerWriteOffLike; } public IN_ClassificationQuery setLedgerWriteOffLike(String value) { this.LedgerWriteOffLike = value; return this; } public ArrayList getLedgerWriteOffBetween() { return LedgerWriteOffBetween; } public IN_ClassificationQuery setLedgerWriteOffBetween(ArrayList value) { this.LedgerWriteOffBetween = value; return this; } public ArrayList getLedgerWriteOffIn() { return LedgerWriteOffIn; } public IN_ClassificationQuery setLedgerWriteOffIn(ArrayList value) { this.LedgerWriteOffIn = value; return this; } public String getLedgerCostPriceAdj() { return LedgerCostPriceAdj; } public IN_ClassificationQuery setLedgerCostPriceAdj(String value) { this.LedgerCostPriceAdj = value; return this; } public String getLedgerCostPriceAdjStartsWith() { return LedgerCostPriceAdjStartsWith; } public IN_ClassificationQuery setLedgerCostPriceAdjStartsWith(String value) { this.LedgerCostPriceAdjStartsWith = value; return this; } public String getLedgerCostPriceAdjEndsWith() { return LedgerCostPriceAdjEndsWith; } public IN_ClassificationQuery setLedgerCostPriceAdjEndsWith(String value) { this.LedgerCostPriceAdjEndsWith = value; return this; } public String getLedgerCostPriceAdjContains() { return LedgerCostPriceAdjContains; } public IN_ClassificationQuery setLedgerCostPriceAdjContains(String value) { this.LedgerCostPriceAdjContains = value; return this; } public String getLedgerCostPriceAdjLike() { return LedgerCostPriceAdjLike; } public IN_ClassificationQuery setLedgerCostPriceAdjLike(String value) { this.LedgerCostPriceAdjLike = value; return this; } public ArrayList getLedgerCostPriceAdjBetween() { return LedgerCostPriceAdjBetween; } public IN_ClassificationQuery setLedgerCostPriceAdjBetween(ArrayList value) { this.LedgerCostPriceAdjBetween = value; return this; } public ArrayList getLedgerCostPriceAdjIn() { return LedgerCostPriceAdjIn; } public IN_ClassificationQuery setLedgerCostPriceAdjIn(ArrayList value) { this.LedgerCostPriceAdjIn = value; return this; } public String getGstInwardsID() { return GSTInwardsID; } public IN_ClassificationQuery setGstInwardsID(String value) { this.GSTInwardsID = value; return this; } public String getGstInwardsIDStartsWith() { return GSTInwardsIDStartsWith; } public IN_ClassificationQuery setGstInwardsIDStartsWith(String value) { this.GSTInwardsIDStartsWith = value; return this; } public String getGstInwardsIDEndsWith() { return GSTInwardsIDEndsWith; } public IN_ClassificationQuery setGstInwardsIDEndsWith(String value) { this.GSTInwardsIDEndsWith = value; return this; } public String getGstInwardsIDContains() { return GSTInwardsIDContains; } public IN_ClassificationQuery setGstInwardsIDContains(String value) { this.GSTInwardsIDContains = value; return this; } public String getGstInwardsIDLike() { return GSTInwardsIDLike; } public IN_ClassificationQuery setGstInwardsIDLike(String value) { this.GSTInwardsIDLike = value; return this; } public ArrayList getGstInwardsIDBetween() { return GSTInwardsIDBetween; } public IN_ClassificationQuery setGstInwardsIDBetween(ArrayList value) { this.GSTInwardsIDBetween = value; return this; } public ArrayList getGstInwardsIDIn() { return GSTInwardsIDIn; } public IN_ClassificationQuery setGstInwardsIDIn(ArrayList value) { this.GSTInwardsIDIn = value; return this; } public String getGstOutwardsID() { return GSTOutwardsID; } public IN_ClassificationQuery setGstOutwardsID(String value) { this.GSTOutwardsID = value; return this; } public String getGstOutwardsIDStartsWith() { return GSTOutwardsIDStartsWith; } public IN_ClassificationQuery setGstOutwardsIDStartsWith(String value) { this.GSTOutwardsIDStartsWith = value; return this; } public String getGstOutwardsIDEndsWith() { return GSTOutwardsIDEndsWith; } public IN_ClassificationQuery setGstOutwardsIDEndsWith(String value) { this.GSTOutwardsIDEndsWith = value; return this; } public String getGstOutwardsIDContains() { return GSTOutwardsIDContains; } public IN_ClassificationQuery setGstOutwardsIDContains(String value) { this.GSTOutwardsIDContains = value; return this; } public String getGstOutwardsIDLike() { return GSTOutwardsIDLike; } public IN_ClassificationQuery setGstOutwardsIDLike(String value) { this.GSTOutwardsIDLike = value; return this; } public ArrayList getGstOutwardsIDBetween() { return GSTOutwardsIDBetween; } public IN_ClassificationQuery setGstOutwardsIDBetween(ArrayList value) { this.GSTOutwardsIDBetween = value; return this; } public ArrayList getGstOutwardsIDIn() { return GSTOutwardsIDIn; } public IN_ClassificationQuery setGstOutwardsIDIn(ArrayList value) { this.GSTOutwardsIDIn = value; return this; } public String getGstAdjustmentsINID() { return GSTAdjustmentsINID; } public IN_ClassificationQuery setGstAdjustmentsINID(String value) { this.GSTAdjustmentsINID = value; return this; } public String getGstAdjustmentsINIDStartsWith() { return GSTAdjustmentsINIDStartsWith; } public IN_ClassificationQuery setGstAdjustmentsINIDStartsWith(String value) { this.GSTAdjustmentsINIDStartsWith = value; return this; } public String getGstAdjustmentsINIDEndsWith() { return GSTAdjustmentsINIDEndsWith; } public IN_ClassificationQuery setGstAdjustmentsINIDEndsWith(String value) { this.GSTAdjustmentsINIDEndsWith = value; return this; } public String getGstAdjustmentsINIDContains() { return GSTAdjustmentsINIDContains; } public IN_ClassificationQuery setGstAdjustmentsINIDContains(String value) { this.GSTAdjustmentsINIDContains = value; return this; } public String getGstAdjustmentsINIDLike() { return GSTAdjustmentsINIDLike; } public IN_ClassificationQuery setGstAdjustmentsINIDLike(String value) { this.GSTAdjustmentsINIDLike = value; return this; } public ArrayList getGstAdjustmentsINIDBetween() { return GSTAdjustmentsINIDBetween; } public IN_ClassificationQuery setGstAdjustmentsINIDBetween(ArrayList value) { this.GSTAdjustmentsINIDBetween = value; return this; } public ArrayList getGstAdjustmentsINIDIn() { return GSTAdjustmentsINIDIn; } public IN_ClassificationQuery setGstAdjustmentsINIDIn(ArrayList value) { this.GSTAdjustmentsINIDIn = value; return this; } public String getGstAdjustmentsOUTID() { return GSTAdjustmentsOUTID; } public IN_ClassificationQuery setGstAdjustmentsOUTID(String value) { this.GSTAdjustmentsOUTID = value; return this; } public String getGstAdjustmentsOUTIDStartsWith() { return GSTAdjustmentsOUTIDStartsWith; } public IN_ClassificationQuery setGstAdjustmentsOUTIDStartsWith(String value) { this.GSTAdjustmentsOUTIDStartsWith = value; return this; } public String getGstAdjustmentsOUTIDEndsWith() { return GSTAdjustmentsOUTIDEndsWith; } public IN_ClassificationQuery setGstAdjustmentsOUTIDEndsWith(String value) { this.GSTAdjustmentsOUTIDEndsWith = value; return this; } public String getGstAdjustmentsOUTIDContains() { return GSTAdjustmentsOUTIDContains; } public IN_ClassificationQuery setGstAdjustmentsOUTIDContains(String value) { this.GSTAdjustmentsOUTIDContains = value; return this; } public String getGstAdjustmentsOUTIDLike() { return GSTAdjustmentsOUTIDLike; } public IN_ClassificationQuery setGstAdjustmentsOUTIDLike(String value) { this.GSTAdjustmentsOUTIDLike = value; return this; } public ArrayList getGstAdjustmentsOUTIDBetween() { return GSTAdjustmentsOUTIDBetween; } public IN_ClassificationQuery setGstAdjustmentsOUTIDBetween(ArrayList value) { this.GSTAdjustmentsOUTIDBetween = value; return this; } public ArrayList getGstAdjustmentsOUTIDIn() { return GSTAdjustmentsOUTIDIn; } public IN_ClassificationQuery setGstAdjustmentsOUTIDIn(ArrayList value) { this.GSTAdjustmentsOUTIDIn = value; return this; } public Boolean isWebEnabled() { return WebEnabled; } public IN_ClassificationQuery setWebEnabled(Boolean value) { this.WebEnabled = value; return this; } public Boolean isDefaultClassification() { return DefaultClassification; } public IN_ClassificationQuery setDefaultClassification(Boolean value) { this.DefaultClassification = value; return this; } public String getPricingGroupID() { return PricingGroupID; } public IN_ClassificationQuery setPricingGroupID(String value) { this.PricingGroupID = value; return this; } public String getPricingGroupIDStartsWith() { return PricingGroupIDStartsWith; } public IN_ClassificationQuery setPricingGroupIDStartsWith(String value) { this.PricingGroupIDStartsWith = value; return this; } public String getPricingGroupIDEndsWith() { return PricingGroupIDEndsWith; } public IN_ClassificationQuery setPricingGroupIDEndsWith(String value) { this.PricingGroupIDEndsWith = value; return this; } public String getPricingGroupIDContains() { return PricingGroupIDContains; } public IN_ClassificationQuery setPricingGroupIDContains(String value) { this.PricingGroupIDContains = value; return this; } public String getPricingGroupIDLike() { return PricingGroupIDLike; } public IN_ClassificationQuery setPricingGroupIDLike(String value) { this.PricingGroupIDLike = value; return this; } public ArrayList getPricingGroupIDBetween() { return PricingGroupIDBetween; } public IN_ClassificationQuery setPricingGroupIDBetween(ArrayList value) { this.PricingGroupIDBetween = value; return this; } public ArrayList getPricingGroupIDIn() { return PricingGroupIDIn; } public IN_ClassificationQuery setPricingGroupIDIn(ArrayList value) { this.PricingGroupIDIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class IN_ClassificationCustomSettingQuery extends QueryDb implements IReturn> { public String SettingID = null; public String SettingIDStartsWith = null; public String SettingIDEndsWith = null; public String SettingIDContains = null; public String SettingIDLike = null; public ArrayList SettingIDBetween = null; public ArrayList SettingIDIn = null; public Date LastSavedDateTime = null; public Date LastSavedDateTimeGreaterThanOrEqualTo = null; public Date LastSavedDateTimeGreaterThan = null; public Date LastSavedDateTimeLessThan = null; public Date LastSavedDateTimeLessThanOrEqualTo = null; public Date LastSavedDateTimeNotEqualTo = null; public ArrayList LastSavedDateTimeBetween = null; public ArrayList LastSavedDateTimeIn = null; public String SettingDescription = null; public String SettingDescriptionStartsWith = null; public String SettingDescriptionEndsWith = null; public String SettingDescriptionContains = null; public String SettingDescriptionLike = null; public ArrayList SettingDescriptionBetween = null; public ArrayList SettingDescriptionIn = null; public String SettingName = null; public String SettingNameStartsWith = null; public String SettingNameEndsWith = null; public String SettingNameContains = null; public String SettingNameLike = null; public ArrayList SettingNameBetween = null; public ArrayList SettingNameIn = null; public Integer DisplayOrder = null; public Integer DisplayOrderGreaterThanOrEqualTo = null; public Integer DisplayOrderGreaterThan = null; public Integer DisplayOrderLessThan = null; public Integer DisplayOrderLessThanOrEqualTo = null; public Integer DisplayOrderNotEqualTo = null; public ArrayList DisplayOrderBetween = null; public ArrayList DisplayOrderIn = null; public Short CellType = null; public Short CellTypeGreaterThanOrEqualTo = null; public Short CellTypeGreaterThan = null; public Short CellTypeLessThan = null; public Short CellTypeLessThanOrEqualTo = null; public Short CellTypeNotEqualTo = null; public ArrayList CellTypeBetween = null; public ArrayList CellTypeIn = null; public String ScriptFormatCell = null; public String ScriptFormatCellStartsWith = null; public String ScriptFormatCellEndsWith = null; public String ScriptFormatCellContains = null; public String ScriptFormatCellLike = null; public ArrayList ScriptFormatCellBetween = null; public ArrayList ScriptFormatCellIn = null; public String ScriptButtonClicked = null; public String ScriptButtonClickedStartsWith = null; public String ScriptButtonClickedEndsWith = null; public String ScriptButtonClickedContains = null; public String ScriptButtonClickedLike = null; public ArrayList ScriptButtonClickedBetween = null; public ArrayList ScriptButtonClickedIn = null; public String ScriptReadData = null; public String ScriptReadDataStartsWith = null; public String ScriptReadDataEndsWith = null; public String ScriptReadDataContains = null; public String ScriptReadDataLike = null; public ArrayList ScriptReadDataBetween = null; public ArrayList ScriptReadDataIn = null; public String GridHandlerCode = null; public String GridHandlerCodeStartsWith = null; public String GridHandlerCodeEndsWith = null; public String GridHandlerCodeContains = null; public String GridHandlerCodeLike = null; public ArrayList GridHandlerCodeBetween = null; public ArrayList GridHandlerCodeIn = null; public UUID SY_Plugin_RecID = null; public ArrayList SY_Plugin_RecIDIn = null; public String getSettingID() { return SettingID; } public IN_ClassificationCustomSettingQuery setSettingID(String value) { this.SettingID = value; return this; } public String getSettingIDStartsWith() { return SettingIDStartsWith; } public IN_ClassificationCustomSettingQuery setSettingIDStartsWith(String value) { this.SettingIDStartsWith = value; return this; } public String getSettingIDEndsWith() { return SettingIDEndsWith; } public IN_ClassificationCustomSettingQuery setSettingIDEndsWith(String value) { this.SettingIDEndsWith = value; return this; } public String getSettingIDContains() { return SettingIDContains; } public IN_ClassificationCustomSettingQuery setSettingIDContains(String value) { this.SettingIDContains = value; return this; } public String getSettingIDLike() { return SettingIDLike; } public IN_ClassificationCustomSettingQuery setSettingIDLike(String value) { this.SettingIDLike = value; return this; } public ArrayList getSettingIDBetween() { return SettingIDBetween; } public IN_ClassificationCustomSettingQuery setSettingIDBetween(ArrayList value) { this.SettingIDBetween = value; return this; } public ArrayList getSettingIDIn() { return SettingIDIn; } public IN_ClassificationCustomSettingQuery setSettingIDIn(ArrayList value) { this.SettingIDIn = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public IN_ClassificationCustomSettingQuery setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getLastSavedDateTimeGreaterThanOrEqualTo() { return LastSavedDateTimeGreaterThanOrEqualTo; } public IN_ClassificationCustomSettingQuery setLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.LastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeGreaterThan() { return LastSavedDateTimeGreaterThan; } public IN_ClassificationCustomSettingQuery setLastSavedDateTimeGreaterThan(Date value) { this.LastSavedDateTimeGreaterThan = value; return this; } public Date getLastSavedDateTimeLessThan() { return LastSavedDateTimeLessThan; } public IN_ClassificationCustomSettingQuery setLastSavedDateTimeLessThan(Date value) { this.LastSavedDateTimeLessThan = value; return this; } public Date getLastSavedDateTimeLessThanOrEqualTo() { return LastSavedDateTimeLessThanOrEqualTo; } public IN_ClassificationCustomSettingQuery setLastSavedDateTimeLessThanOrEqualTo(Date value) { this.LastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeNotEqualTo() { return LastSavedDateTimeNotEqualTo; } public IN_ClassificationCustomSettingQuery setLastSavedDateTimeNotEqualTo(Date value) { this.LastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getLastSavedDateTimeBetween() { return LastSavedDateTimeBetween; } public IN_ClassificationCustomSettingQuery setLastSavedDateTimeBetween(ArrayList value) { this.LastSavedDateTimeBetween = value; return this; } public ArrayList getLastSavedDateTimeIn() { return LastSavedDateTimeIn; } public IN_ClassificationCustomSettingQuery setLastSavedDateTimeIn(ArrayList value) { this.LastSavedDateTimeIn = value; return this; } public String getSettingDescription() { return SettingDescription; } public IN_ClassificationCustomSettingQuery setSettingDescription(String value) { this.SettingDescription = value; return this; } public String getSettingDescriptionStartsWith() { return SettingDescriptionStartsWith; } public IN_ClassificationCustomSettingQuery setSettingDescriptionStartsWith(String value) { this.SettingDescriptionStartsWith = value; return this; } public String getSettingDescriptionEndsWith() { return SettingDescriptionEndsWith; } public IN_ClassificationCustomSettingQuery setSettingDescriptionEndsWith(String value) { this.SettingDescriptionEndsWith = value; return this; } public String getSettingDescriptionContains() { return SettingDescriptionContains; } public IN_ClassificationCustomSettingQuery setSettingDescriptionContains(String value) { this.SettingDescriptionContains = value; return this; } public String getSettingDescriptionLike() { return SettingDescriptionLike; } public IN_ClassificationCustomSettingQuery setSettingDescriptionLike(String value) { this.SettingDescriptionLike = value; return this; } public ArrayList getSettingDescriptionBetween() { return SettingDescriptionBetween; } public IN_ClassificationCustomSettingQuery setSettingDescriptionBetween(ArrayList value) { this.SettingDescriptionBetween = value; return this; } public ArrayList getSettingDescriptionIn() { return SettingDescriptionIn; } public IN_ClassificationCustomSettingQuery setSettingDescriptionIn(ArrayList value) { this.SettingDescriptionIn = value; return this; } public String getSettingName() { return SettingName; } public IN_ClassificationCustomSettingQuery setSettingName(String value) { this.SettingName = value; return this; } public String getSettingNameStartsWith() { return SettingNameStartsWith; } public IN_ClassificationCustomSettingQuery setSettingNameStartsWith(String value) { this.SettingNameStartsWith = value; return this; } public String getSettingNameEndsWith() { return SettingNameEndsWith; } public IN_ClassificationCustomSettingQuery setSettingNameEndsWith(String value) { this.SettingNameEndsWith = value; return this; } public String getSettingNameContains() { return SettingNameContains; } public IN_ClassificationCustomSettingQuery setSettingNameContains(String value) { this.SettingNameContains = value; return this; } public String getSettingNameLike() { return SettingNameLike; } public IN_ClassificationCustomSettingQuery setSettingNameLike(String value) { this.SettingNameLike = value; return this; } public ArrayList getSettingNameBetween() { return SettingNameBetween; } public IN_ClassificationCustomSettingQuery setSettingNameBetween(ArrayList value) { this.SettingNameBetween = value; return this; } public ArrayList getSettingNameIn() { return SettingNameIn; } public IN_ClassificationCustomSettingQuery setSettingNameIn(ArrayList value) { this.SettingNameIn = value; return this; } public Integer getDisplayOrder() { return DisplayOrder; } public IN_ClassificationCustomSettingQuery setDisplayOrder(Integer value) { this.DisplayOrder = value; return this; } public Integer getDisplayOrderGreaterThanOrEqualTo() { return DisplayOrderGreaterThanOrEqualTo; } public IN_ClassificationCustomSettingQuery setDisplayOrderGreaterThanOrEqualTo(Integer value) { this.DisplayOrderGreaterThanOrEqualTo = value; return this; } public Integer getDisplayOrderGreaterThan() { return DisplayOrderGreaterThan; } public IN_ClassificationCustomSettingQuery setDisplayOrderGreaterThan(Integer value) { this.DisplayOrderGreaterThan = value; return this; } public Integer getDisplayOrderLessThan() { return DisplayOrderLessThan; } public IN_ClassificationCustomSettingQuery setDisplayOrderLessThan(Integer value) { this.DisplayOrderLessThan = value; return this; } public Integer getDisplayOrderLessThanOrEqualTo() { return DisplayOrderLessThanOrEqualTo; } public IN_ClassificationCustomSettingQuery setDisplayOrderLessThanOrEqualTo(Integer value) { this.DisplayOrderLessThanOrEqualTo = value; return this; } public Integer getDisplayOrderNotEqualTo() { return DisplayOrderNotEqualTo; } public IN_ClassificationCustomSettingQuery setDisplayOrderNotEqualTo(Integer value) { this.DisplayOrderNotEqualTo = value; return this; } public ArrayList getDisplayOrderBetween() { return DisplayOrderBetween; } public IN_ClassificationCustomSettingQuery setDisplayOrderBetween(ArrayList value) { this.DisplayOrderBetween = value; return this; } public ArrayList getDisplayOrderIn() { return DisplayOrderIn; } public IN_ClassificationCustomSettingQuery setDisplayOrderIn(ArrayList value) { this.DisplayOrderIn = value; return this; } public Short getCellType() { return CellType; } public IN_ClassificationCustomSettingQuery setCellType(Short value) { this.CellType = value; return this; } public Short getCellTypeGreaterThanOrEqualTo() { return CellTypeGreaterThanOrEqualTo; } public IN_ClassificationCustomSettingQuery setCellTypeGreaterThanOrEqualTo(Short value) { this.CellTypeGreaterThanOrEqualTo = value; return this; } public Short getCellTypeGreaterThan() { return CellTypeGreaterThan; } public IN_ClassificationCustomSettingQuery setCellTypeGreaterThan(Short value) { this.CellTypeGreaterThan = value; return this; } public Short getCellTypeLessThan() { return CellTypeLessThan; } public IN_ClassificationCustomSettingQuery setCellTypeLessThan(Short value) { this.CellTypeLessThan = value; return this; } public Short getCellTypeLessThanOrEqualTo() { return CellTypeLessThanOrEqualTo; } public IN_ClassificationCustomSettingQuery setCellTypeLessThanOrEqualTo(Short value) { this.CellTypeLessThanOrEqualTo = value; return this; } public Short getCellTypeNotEqualTo() { return CellTypeNotEqualTo; } public IN_ClassificationCustomSettingQuery setCellTypeNotEqualTo(Short value) { this.CellTypeNotEqualTo = value; return this; } public ArrayList getCellTypeBetween() { return CellTypeBetween; } public IN_ClassificationCustomSettingQuery setCellTypeBetween(ArrayList value) { this.CellTypeBetween = value; return this; } public ArrayList getCellTypeIn() { return CellTypeIn; } public IN_ClassificationCustomSettingQuery setCellTypeIn(ArrayList value) { this.CellTypeIn = value; return this; } public String getScriptFormatCell() { return ScriptFormatCell; } public IN_ClassificationCustomSettingQuery setScriptFormatCell(String value) { this.ScriptFormatCell = value; return this; } public String getScriptFormatCellStartsWith() { return ScriptFormatCellStartsWith; } public IN_ClassificationCustomSettingQuery setScriptFormatCellStartsWith(String value) { this.ScriptFormatCellStartsWith = value; return this; } public String getScriptFormatCellEndsWith() { return ScriptFormatCellEndsWith; } public IN_ClassificationCustomSettingQuery setScriptFormatCellEndsWith(String value) { this.ScriptFormatCellEndsWith = value; return this; } public String getScriptFormatCellContains() { return ScriptFormatCellContains; } public IN_ClassificationCustomSettingQuery setScriptFormatCellContains(String value) { this.ScriptFormatCellContains = value; return this; } public String getScriptFormatCellLike() { return ScriptFormatCellLike; } public IN_ClassificationCustomSettingQuery setScriptFormatCellLike(String value) { this.ScriptFormatCellLike = value; return this; } public ArrayList getScriptFormatCellBetween() { return ScriptFormatCellBetween; } public IN_ClassificationCustomSettingQuery setScriptFormatCellBetween(ArrayList value) { this.ScriptFormatCellBetween = value; return this; } public ArrayList getScriptFormatCellIn() { return ScriptFormatCellIn; } public IN_ClassificationCustomSettingQuery setScriptFormatCellIn(ArrayList value) { this.ScriptFormatCellIn = value; return this; } public String getScriptButtonClicked() { return ScriptButtonClicked; } public IN_ClassificationCustomSettingQuery setScriptButtonClicked(String value) { this.ScriptButtonClicked = value; return this; } public String getScriptButtonClickedStartsWith() { return ScriptButtonClickedStartsWith; } public IN_ClassificationCustomSettingQuery setScriptButtonClickedStartsWith(String value) { this.ScriptButtonClickedStartsWith = value; return this; } public String getScriptButtonClickedEndsWith() { return ScriptButtonClickedEndsWith; } public IN_ClassificationCustomSettingQuery setScriptButtonClickedEndsWith(String value) { this.ScriptButtonClickedEndsWith = value; return this; } public String getScriptButtonClickedContains() { return ScriptButtonClickedContains; } public IN_ClassificationCustomSettingQuery setScriptButtonClickedContains(String value) { this.ScriptButtonClickedContains = value; return this; } public String getScriptButtonClickedLike() { return ScriptButtonClickedLike; } public IN_ClassificationCustomSettingQuery setScriptButtonClickedLike(String value) { this.ScriptButtonClickedLike = value; return this; } public ArrayList getScriptButtonClickedBetween() { return ScriptButtonClickedBetween; } public IN_ClassificationCustomSettingQuery setScriptButtonClickedBetween(ArrayList value) { this.ScriptButtonClickedBetween = value; return this; } public ArrayList getScriptButtonClickedIn() { return ScriptButtonClickedIn; } public IN_ClassificationCustomSettingQuery setScriptButtonClickedIn(ArrayList value) { this.ScriptButtonClickedIn = value; return this; } public String getScriptReadData() { return ScriptReadData; } public IN_ClassificationCustomSettingQuery setScriptReadData(String value) { this.ScriptReadData = value; return this; } public String getScriptReadDataStartsWith() { return ScriptReadDataStartsWith; } public IN_ClassificationCustomSettingQuery setScriptReadDataStartsWith(String value) { this.ScriptReadDataStartsWith = value; return this; } public String getScriptReadDataEndsWith() { return ScriptReadDataEndsWith; } public IN_ClassificationCustomSettingQuery setScriptReadDataEndsWith(String value) { this.ScriptReadDataEndsWith = value; return this; } public String getScriptReadDataContains() { return ScriptReadDataContains; } public IN_ClassificationCustomSettingQuery setScriptReadDataContains(String value) { this.ScriptReadDataContains = value; return this; } public String getScriptReadDataLike() { return ScriptReadDataLike; } public IN_ClassificationCustomSettingQuery setScriptReadDataLike(String value) { this.ScriptReadDataLike = value; return this; } public ArrayList getScriptReadDataBetween() { return ScriptReadDataBetween; } public IN_ClassificationCustomSettingQuery setScriptReadDataBetween(ArrayList value) { this.ScriptReadDataBetween = value; return this; } public ArrayList getScriptReadDataIn() { return ScriptReadDataIn; } public IN_ClassificationCustomSettingQuery setScriptReadDataIn(ArrayList value) { this.ScriptReadDataIn = value; return this; } public String getGridHandlerCode() { return GridHandlerCode; } public IN_ClassificationCustomSettingQuery setGridHandlerCode(String value) { this.GridHandlerCode = value; return this; } public String getGridHandlerCodeStartsWith() { return GridHandlerCodeStartsWith; } public IN_ClassificationCustomSettingQuery setGridHandlerCodeStartsWith(String value) { this.GridHandlerCodeStartsWith = value; return this; } public String getGridHandlerCodeEndsWith() { return GridHandlerCodeEndsWith; } public IN_ClassificationCustomSettingQuery setGridHandlerCodeEndsWith(String value) { this.GridHandlerCodeEndsWith = value; return this; } public String getGridHandlerCodeContains() { return GridHandlerCodeContains; } public IN_ClassificationCustomSettingQuery setGridHandlerCodeContains(String value) { this.GridHandlerCodeContains = value; return this; } public String getGridHandlerCodeLike() { return GridHandlerCodeLike; } public IN_ClassificationCustomSettingQuery setGridHandlerCodeLike(String value) { this.GridHandlerCodeLike = value; return this; } public ArrayList getGridHandlerCodeBetween() { return GridHandlerCodeBetween; } public IN_ClassificationCustomSettingQuery setGridHandlerCodeBetween(ArrayList value) { this.GridHandlerCodeBetween = value; return this; } public ArrayList getGridHandlerCodeIn() { return GridHandlerCodeIn; } public IN_ClassificationCustomSettingQuery setGridHandlerCodeIn(ArrayList value) { this.GridHandlerCodeIn = value; return this; } public UUID getSyPluginRecID() { return SY_Plugin_RecID; } public IN_ClassificationCustomSettingQuery setSyPluginRecID(UUID value) { this.SY_Plugin_RecID = value; return this; } public ArrayList getSyPluginRecIDIn() { return SY_Plugin_RecIDIn; } public IN_ClassificationCustomSettingQuery setSyPluginRecIDIn(ArrayList value) { this.SY_Plugin_RecIDIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class IN_ClassificationCustomValuesQuery extends QueryDb implements IReturn> { public String SettingValueID = null; public String SettingValueIDStartsWith = null; public String SettingValueIDEndsWith = null; public String SettingValueIDContains = null; public String SettingValueIDLike = null; public ArrayList SettingValueIDBetween = null; public ArrayList SettingValueIDIn = null; public String SettingID = null; public String SettingIDStartsWith = null; public String SettingIDEndsWith = null; public String SettingIDContains = null; public String SettingIDLike = null; public ArrayList SettingIDBetween = null; public ArrayList SettingIDIn = null; public String IN_Classification_RecID = null; public String IN_Classification_RecIDStartsWith = null; public String IN_Classification_RecIDEndsWith = null; public String IN_Classification_RecIDContains = null; public String IN_Classification_RecIDLike = null; public ArrayList IN_Classification_RecIDBetween = null; public ArrayList IN_Classification_RecIDIn = null; public String Contents = null; public String ContentsStartsWith = null; public String ContentsEndsWith = null; public String ContentsContains = null; public String ContentsLike = null; public ArrayList ContentsBetween = null; public ArrayList ContentsIn = null; public Date LastSavedDateTime = null; public Date LastSavedDateTimeGreaterThanOrEqualTo = null; public Date LastSavedDateTimeGreaterThan = null; public Date LastSavedDateTimeLessThan = null; public Date LastSavedDateTimeLessThanOrEqualTo = null; public Date LastSavedDateTimeNotEqualTo = null; public ArrayList LastSavedDateTimeBetween = null; public ArrayList LastSavedDateTimeIn = null; public String getSettingValueID() { return SettingValueID; } public IN_ClassificationCustomValuesQuery setSettingValueID(String value) { this.SettingValueID = value; return this; } public String getSettingValueIDStartsWith() { return SettingValueIDStartsWith; } public IN_ClassificationCustomValuesQuery setSettingValueIDStartsWith(String value) { this.SettingValueIDStartsWith = value; return this; } public String getSettingValueIDEndsWith() { return SettingValueIDEndsWith; } public IN_ClassificationCustomValuesQuery setSettingValueIDEndsWith(String value) { this.SettingValueIDEndsWith = value; return this; } public String getSettingValueIDContains() { return SettingValueIDContains; } public IN_ClassificationCustomValuesQuery setSettingValueIDContains(String value) { this.SettingValueIDContains = value; return this; } public String getSettingValueIDLike() { return SettingValueIDLike; } public IN_ClassificationCustomValuesQuery setSettingValueIDLike(String value) { this.SettingValueIDLike = value; return this; } public ArrayList getSettingValueIDBetween() { return SettingValueIDBetween; } public IN_ClassificationCustomValuesQuery setSettingValueIDBetween(ArrayList value) { this.SettingValueIDBetween = value; return this; } public ArrayList getSettingValueIDIn() { return SettingValueIDIn; } public IN_ClassificationCustomValuesQuery setSettingValueIDIn(ArrayList value) { this.SettingValueIDIn = value; return this; } public String getSettingID() { return SettingID; } public IN_ClassificationCustomValuesQuery setSettingID(String value) { this.SettingID = value; return this; } public String getSettingIDStartsWith() { return SettingIDStartsWith; } public IN_ClassificationCustomValuesQuery setSettingIDStartsWith(String value) { this.SettingIDStartsWith = value; return this; } public String getSettingIDEndsWith() { return SettingIDEndsWith; } public IN_ClassificationCustomValuesQuery setSettingIDEndsWith(String value) { this.SettingIDEndsWith = value; return this; } public String getSettingIDContains() { return SettingIDContains; } public IN_ClassificationCustomValuesQuery setSettingIDContains(String value) { this.SettingIDContains = value; return this; } public String getSettingIDLike() { return SettingIDLike; } public IN_ClassificationCustomValuesQuery setSettingIDLike(String value) { this.SettingIDLike = value; return this; } public ArrayList getSettingIDBetween() { return SettingIDBetween; } public IN_ClassificationCustomValuesQuery setSettingIDBetween(ArrayList value) { this.SettingIDBetween = value; return this; } public ArrayList getSettingIDIn() { return SettingIDIn; } public IN_ClassificationCustomValuesQuery setSettingIDIn(ArrayList value) { this.SettingIDIn = value; return this; } public String getInClassificationRecID() { return IN_Classification_RecID; } public IN_ClassificationCustomValuesQuery setInClassificationRecID(String value) { this.IN_Classification_RecID = value; return this; } public String getInClassificationRecIDStartsWith() { return IN_Classification_RecIDStartsWith; } public IN_ClassificationCustomValuesQuery setInClassificationRecIDStartsWith(String value) { this.IN_Classification_RecIDStartsWith = value; return this; } public String getInClassificationRecIDEndsWith() { return IN_Classification_RecIDEndsWith; } public IN_ClassificationCustomValuesQuery setInClassificationRecIDEndsWith(String value) { this.IN_Classification_RecIDEndsWith = value; return this; } public String getInClassificationRecIDContains() { return IN_Classification_RecIDContains; } public IN_ClassificationCustomValuesQuery setInClassificationRecIDContains(String value) { this.IN_Classification_RecIDContains = value; return this; } public String getInClassificationRecIDLike() { return IN_Classification_RecIDLike; } public IN_ClassificationCustomValuesQuery setInClassificationRecIDLike(String value) { this.IN_Classification_RecIDLike = value; return this; } public ArrayList getInClassificationRecIDBetween() { return IN_Classification_RecIDBetween; } public IN_ClassificationCustomValuesQuery setInClassificationRecIDBetween(ArrayList value) { this.IN_Classification_RecIDBetween = value; return this; } public ArrayList getInClassificationRecIDIn() { return IN_Classification_RecIDIn; } public IN_ClassificationCustomValuesQuery setInClassificationRecIDIn(ArrayList value) { this.IN_Classification_RecIDIn = value; return this; } public String getContents() { return Contents; } public IN_ClassificationCustomValuesQuery setContents(String value) { this.Contents = value; return this; } public String getContentsStartsWith() { return ContentsStartsWith; } public IN_ClassificationCustomValuesQuery setContentsStartsWith(String value) { this.ContentsStartsWith = value; return this; } public String getContentsEndsWith() { return ContentsEndsWith; } public IN_ClassificationCustomValuesQuery setContentsEndsWith(String value) { this.ContentsEndsWith = value; return this; } public String getContentsContains() { return ContentsContains; } public IN_ClassificationCustomValuesQuery setContentsContains(String value) { this.ContentsContains = value; return this; } public String getContentsLike() { return ContentsLike; } public IN_ClassificationCustomValuesQuery setContentsLike(String value) { this.ContentsLike = value; return this; } public ArrayList getContentsBetween() { return ContentsBetween; } public IN_ClassificationCustomValuesQuery setContentsBetween(ArrayList value) { this.ContentsBetween = value; return this; } public ArrayList getContentsIn() { return ContentsIn; } public IN_ClassificationCustomValuesQuery setContentsIn(ArrayList value) { this.ContentsIn = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public IN_ClassificationCustomValuesQuery setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getLastSavedDateTimeGreaterThanOrEqualTo() { return LastSavedDateTimeGreaterThanOrEqualTo; } public IN_ClassificationCustomValuesQuery setLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.LastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeGreaterThan() { return LastSavedDateTimeGreaterThan; } public IN_ClassificationCustomValuesQuery setLastSavedDateTimeGreaterThan(Date value) { this.LastSavedDateTimeGreaterThan = value; return this; } public Date getLastSavedDateTimeLessThan() { return LastSavedDateTimeLessThan; } public IN_ClassificationCustomValuesQuery setLastSavedDateTimeLessThan(Date value) { this.LastSavedDateTimeLessThan = value; return this; } public Date getLastSavedDateTimeLessThanOrEqualTo() { return LastSavedDateTimeLessThanOrEqualTo; } public IN_ClassificationCustomValuesQuery setLastSavedDateTimeLessThanOrEqualTo(Date value) { this.LastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeNotEqualTo() { return LastSavedDateTimeNotEqualTo; } public IN_ClassificationCustomValuesQuery setLastSavedDateTimeNotEqualTo(Date value) { this.LastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getLastSavedDateTimeBetween() { return LastSavedDateTimeBetween; } public IN_ClassificationCustomValuesQuery setLastSavedDateTimeBetween(ArrayList value) { this.LastSavedDateTimeBetween = value; return this; } public ArrayList getLastSavedDateTimeIn() { return LastSavedDateTimeIn; } public IN_ClassificationCustomValuesQuery setLastSavedDateTimeIn(ArrayList value) { this.LastSavedDateTimeIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class IN_CollectionOfGroupsQuery extends QueryDb implements IReturn> { public String InventoryGroupCollectionID = null; public String InventoryGroupCollectionIDStartsWith = null; public String InventoryGroupCollectionIDEndsWith = null; public String InventoryGroupCollectionIDContains = null; public String InventoryGroupCollectionIDLike = null; public ArrayList InventoryGroupCollectionIDBetween = null; public ArrayList InventoryGroupCollectionIDIn = null; public Date LastSavedDateTime = null; public Date LastSavedDateTimeGreaterThanOrEqualTo = null; public Date LastSavedDateTimeGreaterThan = null; public Date LastSavedDateTimeLessThan = null; public Date LastSavedDateTimeLessThanOrEqualTo = null; public Date LastSavedDateTimeNotEqualTo = null; public ArrayList LastSavedDateTimeBetween = null; public ArrayList LastSavedDateTimeIn = null; public String Description = null; public String DescriptionStartsWith = null; public String DescriptionEndsWith = null; public String DescriptionContains = null; public String DescriptionLike = null; public ArrayList DescriptionBetween = null; public ArrayList DescriptionIn = null; public Boolean IsDefault = null; public String getInventoryGroupCollectionID() { return InventoryGroupCollectionID; } public IN_CollectionOfGroupsQuery setInventoryGroupCollectionID(String value) { this.InventoryGroupCollectionID = value; return this; } public String getInventoryGroupCollectionIDStartsWith() { return InventoryGroupCollectionIDStartsWith; } public IN_CollectionOfGroupsQuery setInventoryGroupCollectionIDStartsWith(String value) { this.InventoryGroupCollectionIDStartsWith = value; return this; } public String getInventoryGroupCollectionIDEndsWith() { return InventoryGroupCollectionIDEndsWith; } public IN_CollectionOfGroupsQuery setInventoryGroupCollectionIDEndsWith(String value) { this.InventoryGroupCollectionIDEndsWith = value; return this; } public String getInventoryGroupCollectionIDContains() { return InventoryGroupCollectionIDContains; } public IN_CollectionOfGroupsQuery setInventoryGroupCollectionIDContains(String value) { this.InventoryGroupCollectionIDContains = value; return this; } public String getInventoryGroupCollectionIDLike() { return InventoryGroupCollectionIDLike; } public IN_CollectionOfGroupsQuery setInventoryGroupCollectionIDLike(String value) { this.InventoryGroupCollectionIDLike = value; return this; } public ArrayList getInventoryGroupCollectionIDBetween() { return InventoryGroupCollectionIDBetween; } public IN_CollectionOfGroupsQuery setInventoryGroupCollectionIDBetween(ArrayList value) { this.InventoryGroupCollectionIDBetween = value; return this; } public ArrayList getInventoryGroupCollectionIDIn() { return InventoryGroupCollectionIDIn; } public IN_CollectionOfGroupsQuery setInventoryGroupCollectionIDIn(ArrayList value) { this.InventoryGroupCollectionIDIn = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public IN_CollectionOfGroupsQuery setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getLastSavedDateTimeGreaterThanOrEqualTo() { return LastSavedDateTimeGreaterThanOrEqualTo; } public IN_CollectionOfGroupsQuery setLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.LastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeGreaterThan() { return LastSavedDateTimeGreaterThan; } public IN_CollectionOfGroupsQuery setLastSavedDateTimeGreaterThan(Date value) { this.LastSavedDateTimeGreaterThan = value; return this; } public Date getLastSavedDateTimeLessThan() { return LastSavedDateTimeLessThan; } public IN_CollectionOfGroupsQuery setLastSavedDateTimeLessThan(Date value) { this.LastSavedDateTimeLessThan = value; return this; } public Date getLastSavedDateTimeLessThanOrEqualTo() { return LastSavedDateTimeLessThanOrEqualTo; } public IN_CollectionOfGroupsQuery setLastSavedDateTimeLessThanOrEqualTo(Date value) { this.LastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeNotEqualTo() { return LastSavedDateTimeNotEqualTo; } public IN_CollectionOfGroupsQuery setLastSavedDateTimeNotEqualTo(Date value) { this.LastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getLastSavedDateTimeBetween() { return LastSavedDateTimeBetween; } public IN_CollectionOfGroupsQuery setLastSavedDateTimeBetween(ArrayList value) { this.LastSavedDateTimeBetween = value; return this; } public ArrayList getLastSavedDateTimeIn() { return LastSavedDateTimeIn; } public IN_CollectionOfGroupsQuery setLastSavedDateTimeIn(ArrayList value) { this.LastSavedDateTimeIn = value; return this; } public String getDescription() { return Description; } public IN_CollectionOfGroupsQuery setDescription(String value) { this.Description = value; return this; } public String getDescriptionStartsWith() { return DescriptionStartsWith; } public IN_CollectionOfGroupsQuery setDescriptionStartsWith(String value) { this.DescriptionStartsWith = value; return this; } public String getDescriptionEndsWith() { return DescriptionEndsWith; } public IN_CollectionOfGroupsQuery setDescriptionEndsWith(String value) { this.DescriptionEndsWith = value; return this; } public String getDescriptionContains() { return DescriptionContains; } public IN_CollectionOfGroupsQuery setDescriptionContains(String value) { this.DescriptionContains = value; return this; } public String getDescriptionLike() { return DescriptionLike; } public IN_CollectionOfGroupsQuery setDescriptionLike(String value) { this.DescriptionLike = value; return this; } public ArrayList getDescriptionBetween() { return DescriptionBetween; } public IN_CollectionOfGroupsQuery setDescriptionBetween(ArrayList value) { this.DescriptionBetween = value; return this; } public ArrayList getDescriptionIn() { return DescriptionIn; } public IN_CollectionOfGroupsQuery setDescriptionIn(ArrayList value) { this.DescriptionIn = value; return this; } public Boolean getIsDefault() { return IsDefault; } public IN_CollectionOfGroupsQuery setIsDefault(Boolean value) { this.IsDefault = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class IN_ColoursQuery extends QueryDb implements IReturn> { public String RecID = null; public String RecIDStartsWith = null; public String RecIDEndsWith = null; public String RecIDContains = null; public String RecIDLike = null; public ArrayList RecIDBetween = null; public ArrayList RecIDIn = null; public String Description = null; public String DescriptionStartsWith = null; public String DescriptionEndsWith = null; public String DescriptionContains = null; public String DescriptionLike = null; public ArrayList DescriptionBetween = null; public ArrayList DescriptionIn = null; public String ColourCode = null; public String ColourCodeStartsWith = null; public String ColourCodeEndsWith = null; public String ColourCodeContains = null; public String ColourCodeLike = null; public ArrayList ColourCodeBetween = null; public ArrayList ColourCodeIn = null; public String StyleID = null; public String StyleIDStartsWith = null; public String StyleIDEndsWith = null; public String StyleIDContains = null; public String StyleIDLike = null; public ArrayList StyleIDBetween = null; public ArrayList StyleIDIn = null; public Integer DisplayOrder = null; public Integer DisplayOrderGreaterThanOrEqualTo = null; public Integer DisplayOrderGreaterThan = null; public Integer DisplayOrderLessThan = null; public Integer DisplayOrderLessThanOrEqualTo = null; public Integer DisplayOrderNotEqualTo = null; public ArrayList DisplayOrderBetween = null; public ArrayList DisplayOrderIn = null; public String getRecID() { return RecID; } public IN_ColoursQuery setRecID(String value) { this.RecID = value; return this; } public String getRecIDStartsWith() { return RecIDStartsWith; } public IN_ColoursQuery setRecIDStartsWith(String value) { this.RecIDStartsWith = value; return this; } public String getRecIDEndsWith() { return RecIDEndsWith; } public IN_ColoursQuery setRecIDEndsWith(String value) { this.RecIDEndsWith = value; return this; } public String getRecIDContains() { return RecIDContains; } public IN_ColoursQuery setRecIDContains(String value) { this.RecIDContains = value; return this; } public String getRecIDLike() { return RecIDLike; } public IN_ColoursQuery setRecIDLike(String value) { this.RecIDLike = value; return this; } public ArrayList getRecIDBetween() { return RecIDBetween; } public IN_ColoursQuery setRecIDBetween(ArrayList value) { this.RecIDBetween = value; return this; } public ArrayList getRecIDIn() { return RecIDIn; } public IN_ColoursQuery setRecIDIn(ArrayList value) { this.RecIDIn = value; return this; } public String getDescription() { return Description; } public IN_ColoursQuery setDescription(String value) { this.Description = value; return this; } public String getDescriptionStartsWith() { return DescriptionStartsWith; } public IN_ColoursQuery setDescriptionStartsWith(String value) { this.DescriptionStartsWith = value; return this; } public String getDescriptionEndsWith() { return DescriptionEndsWith; } public IN_ColoursQuery setDescriptionEndsWith(String value) { this.DescriptionEndsWith = value; return this; } public String getDescriptionContains() { return DescriptionContains; } public IN_ColoursQuery setDescriptionContains(String value) { this.DescriptionContains = value; return this; } public String getDescriptionLike() { return DescriptionLike; } public IN_ColoursQuery setDescriptionLike(String value) { this.DescriptionLike = value; return this; } public ArrayList getDescriptionBetween() { return DescriptionBetween; } public IN_ColoursQuery setDescriptionBetween(ArrayList value) { this.DescriptionBetween = value; return this; } public ArrayList getDescriptionIn() { return DescriptionIn; } public IN_ColoursQuery setDescriptionIn(ArrayList value) { this.DescriptionIn = value; return this; } public String getColourCode() { return ColourCode; } public IN_ColoursQuery setColourCode(String value) { this.ColourCode = value; return this; } public String getColourCodeStartsWith() { return ColourCodeStartsWith; } public IN_ColoursQuery setColourCodeStartsWith(String value) { this.ColourCodeStartsWith = value; return this; } public String getColourCodeEndsWith() { return ColourCodeEndsWith; } public IN_ColoursQuery setColourCodeEndsWith(String value) { this.ColourCodeEndsWith = value; return this; } public String getColourCodeContains() { return ColourCodeContains; } public IN_ColoursQuery setColourCodeContains(String value) { this.ColourCodeContains = value; return this; } public String getColourCodeLike() { return ColourCodeLike; } public IN_ColoursQuery setColourCodeLike(String value) { this.ColourCodeLike = value; return this; } public ArrayList getColourCodeBetween() { return ColourCodeBetween; } public IN_ColoursQuery setColourCodeBetween(ArrayList value) { this.ColourCodeBetween = value; return this; } public ArrayList getColourCodeIn() { return ColourCodeIn; } public IN_ColoursQuery setColourCodeIn(ArrayList value) { this.ColourCodeIn = value; return this; } public String getStyleID() { return StyleID; } public IN_ColoursQuery setStyleID(String value) { this.StyleID = value; return this; } public String getStyleIDStartsWith() { return StyleIDStartsWith; } public IN_ColoursQuery setStyleIDStartsWith(String value) { this.StyleIDStartsWith = value; return this; } public String getStyleIDEndsWith() { return StyleIDEndsWith; } public IN_ColoursQuery setStyleIDEndsWith(String value) { this.StyleIDEndsWith = value; return this; } public String getStyleIDContains() { return StyleIDContains; } public IN_ColoursQuery setStyleIDContains(String value) { this.StyleIDContains = value; return this; } public String getStyleIDLike() { return StyleIDLike; } public IN_ColoursQuery setStyleIDLike(String value) { this.StyleIDLike = value; return this; } public ArrayList getStyleIDBetween() { return StyleIDBetween; } public IN_ColoursQuery setStyleIDBetween(ArrayList value) { this.StyleIDBetween = value; return this; } public ArrayList getStyleIDIn() { return StyleIDIn; } public IN_ColoursQuery setStyleIDIn(ArrayList value) { this.StyleIDIn = value; return this; } public Integer getDisplayOrder() { return DisplayOrder; } public IN_ColoursQuery setDisplayOrder(Integer value) { this.DisplayOrder = value; return this; } public Integer getDisplayOrderGreaterThanOrEqualTo() { return DisplayOrderGreaterThanOrEqualTo; } public IN_ColoursQuery setDisplayOrderGreaterThanOrEqualTo(Integer value) { this.DisplayOrderGreaterThanOrEqualTo = value; return this; } public Integer getDisplayOrderGreaterThan() { return DisplayOrderGreaterThan; } public IN_ColoursQuery setDisplayOrderGreaterThan(Integer value) { this.DisplayOrderGreaterThan = value; return this; } public Integer getDisplayOrderLessThan() { return DisplayOrderLessThan; } public IN_ColoursQuery setDisplayOrderLessThan(Integer value) { this.DisplayOrderLessThan = value; return this; } public Integer getDisplayOrderLessThanOrEqualTo() { return DisplayOrderLessThanOrEqualTo; } public IN_ColoursQuery setDisplayOrderLessThanOrEqualTo(Integer value) { this.DisplayOrderLessThanOrEqualTo = value; return this; } public Integer getDisplayOrderNotEqualTo() { return DisplayOrderNotEqualTo; } public IN_ColoursQuery setDisplayOrderNotEqualTo(Integer value) { this.DisplayOrderNotEqualTo = value; return this; } public ArrayList getDisplayOrderBetween() { return DisplayOrderBetween; } public IN_ColoursQuery setDisplayOrderBetween(ArrayList value) { this.DisplayOrderBetween = value; return this; } public ArrayList getDisplayOrderIn() { return DisplayOrderIn; } public IN_ColoursQuery setDisplayOrderIn(ArrayList value) { this.DisplayOrderIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class IN_ComponentsQuery extends QueryDb implements IReturn> { public String INComponentRecID = null; public String INComponentRecIDStartsWith = null; public String INComponentRecIDEndsWith = null; public String INComponentRecIDContains = null; public String INComponentRecIDLike = null; public ArrayList INComponentRecIDBetween = null; public ArrayList INComponentRecIDIn = null; public String InventoryID = null; public String InventoryIDStartsWith = null; public String InventoryIDEndsWith = null; public String InventoryIDContains = null; public String InventoryIDLike = null; public ArrayList InventoryIDBetween = null; public ArrayList InventoryIDIn = null; public String ComponentID = null; public String ComponentIDStartsWith = null; public String ComponentIDEndsWith = null; public String ComponentIDContains = null; public String ComponentIDLike = null; public ArrayList ComponentIDBetween = null; public ArrayList ComponentIDIn = null; public BigDecimal Quantity = null; public BigDecimal QuantityGreaterThanOrEqualTo = null; public BigDecimal QuantityGreaterThan = null; public BigDecimal QuantityLessThan = null; public BigDecimal QuantityLessThanOrEqualTo = null; public BigDecimal QuantityNotEqualTo = null; public ArrayList QuantityBetween = null; public ArrayList QuantityIn = null; public Integer LineNumber = null; public Integer LineNumberGreaterThanOrEqualTo = null; public Integer LineNumberGreaterThan = null; public Integer LineNumberLessThan = null; public Integer LineNumberLessThanOrEqualTo = null; public Integer LineNumberNotEqualTo = null; public ArrayList LineNumberBetween = null; public ArrayList LineNumberIn = null; public String getInComponentRecID() { return INComponentRecID; } public IN_ComponentsQuery setInComponentRecID(String value) { this.INComponentRecID = value; return this; } public String getInComponentRecIDStartsWith() { return INComponentRecIDStartsWith; } public IN_ComponentsQuery setInComponentRecIDStartsWith(String value) { this.INComponentRecIDStartsWith = value; return this; } public String getInComponentRecIDEndsWith() { return INComponentRecIDEndsWith; } public IN_ComponentsQuery setInComponentRecIDEndsWith(String value) { this.INComponentRecIDEndsWith = value; return this; } public String getInComponentRecIDContains() { return INComponentRecIDContains; } public IN_ComponentsQuery setInComponentRecIDContains(String value) { this.INComponentRecIDContains = value; return this; } public String getInComponentRecIDLike() { return INComponentRecIDLike; } public IN_ComponentsQuery setInComponentRecIDLike(String value) { this.INComponentRecIDLike = value; return this; } public ArrayList getInComponentRecIDBetween() { return INComponentRecIDBetween; } public IN_ComponentsQuery setInComponentRecIDBetween(ArrayList value) { this.INComponentRecIDBetween = value; return this; } public ArrayList getInComponentRecIDIn() { return INComponentRecIDIn; } public IN_ComponentsQuery setInComponentRecIDIn(ArrayList value) { this.INComponentRecIDIn = value; return this; } public String getInventoryID() { return InventoryID; } public IN_ComponentsQuery setInventoryID(String value) { this.InventoryID = value; return this; } public String getInventoryIDStartsWith() { return InventoryIDStartsWith; } public IN_ComponentsQuery setInventoryIDStartsWith(String value) { this.InventoryIDStartsWith = value; return this; } public String getInventoryIDEndsWith() { return InventoryIDEndsWith; } public IN_ComponentsQuery setInventoryIDEndsWith(String value) { this.InventoryIDEndsWith = value; return this; } public String getInventoryIDContains() { return InventoryIDContains; } public IN_ComponentsQuery setInventoryIDContains(String value) { this.InventoryIDContains = value; return this; } public String getInventoryIDLike() { return InventoryIDLike; } public IN_ComponentsQuery setInventoryIDLike(String value) { this.InventoryIDLike = value; return this; } public ArrayList getInventoryIDBetween() { return InventoryIDBetween; } public IN_ComponentsQuery setInventoryIDBetween(ArrayList value) { this.InventoryIDBetween = value; return this; } public ArrayList getInventoryIDIn() { return InventoryIDIn; } public IN_ComponentsQuery setInventoryIDIn(ArrayList value) { this.InventoryIDIn = value; return this; } public String getComponentID() { return ComponentID; } public IN_ComponentsQuery setComponentID(String value) { this.ComponentID = value; return this; } public String getComponentIDStartsWith() { return ComponentIDStartsWith; } public IN_ComponentsQuery setComponentIDStartsWith(String value) { this.ComponentIDStartsWith = value; return this; } public String getComponentIDEndsWith() { return ComponentIDEndsWith; } public IN_ComponentsQuery setComponentIDEndsWith(String value) { this.ComponentIDEndsWith = value; return this; } public String getComponentIDContains() { return ComponentIDContains; } public IN_ComponentsQuery setComponentIDContains(String value) { this.ComponentIDContains = value; return this; } public String getComponentIDLike() { return ComponentIDLike; } public IN_ComponentsQuery setComponentIDLike(String value) { this.ComponentIDLike = value; return this; } public ArrayList getComponentIDBetween() { return ComponentIDBetween; } public IN_ComponentsQuery setComponentIDBetween(ArrayList value) { this.ComponentIDBetween = value; return this; } public ArrayList getComponentIDIn() { return ComponentIDIn; } public IN_ComponentsQuery setComponentIDIn(ArrayList value) { this.ComponentIDIn = value; return this; } public BigDecimal getQuantity() { return Quantity; } public IN_ComponentsQuery setQuantity(BigDecimal value) { this.Quantity = value; return this; } public BigDecimal getQuantityGreaterThanOrEqualTo() { return QuantityGreaterThanOrEqualTo; } public IN_ComponentsQuery setQuantityGreaterThanOrEqualTo(BigDecimal value) { this.QuantityGreaterThanOrEqualTo = value; return this; } public BigDecimal getQuantityGreaterThan() { return QuantityGreaterThan; } public IN_ComponentsQuery setQuantityGreaterThan(BigDecimal value) { this.QuantityGreaterThan = value; return this; } public BigDecimal getQuantityLessThan() { return QuantityLessThan; } public IN_ComponentsQuery setQuantityLessThan(BigDecimal value) { this.QuantityLessThan = value; return this; } public BigDecimal getQuantityLessThanOrEqualTo() { return QuantityLessThanOrEqualTo; } public IN_ComponentsQuery setQuantityLessThanOrEqualTo(BigDecimal value) { this.QuantityLessThanOrEqualTo = value; return this; } public BigDecimal getQuantityNotEqualTo() { return QuantityNotEqualTo; } public IN_ComponentsQuery setQuantityNotEqualTo(BigDecimal value) { this.QuantityNotEqualTo = value; return this; } public ArrayList getQuantityBetween() { return QuantityBetween; } public IN_ComponentsQuery setQuantityBetween(ArrayList value) { this.QuantityBetween = value; return this; } public ArrayList getQuantityIn() { return QuantityIn; } public IN_ComponentsQuery setQuantityIn(ArrayList value) { this.QuantityIn = value; return this; } public Integer getLineNumber() { return LineNumber; } public IN_ComponentsQuery setLineNumber(Integer value) { this.LineNumber = value; return this; } public Integer getLineNumberGreaterThanOrEqualTo() { return LineNumberGreaterThanOrEqualTo; } public IN_ComponentsQuery setLineNumberGreaterThanOrEqualTo(Integer value) { this.LineNumberGreaterThanOrEqualTo = value; return this; } public Integer getLineNumberGreaterThan() { return LineNumberGreaterThan; } public IN_ComponentsQuery setLineNumberGreaterThan(Integer value) { this.LineNumberGreaterThan = value; return this; } public Integer getLineNumberLessThan() { return LineNumberLessThan; } public IN_ComponentsQuery setLineNumberLessThan(Integer value) { this.LineNumberLessThan = value; return this; } public Integer getLineNumberLessThanOrEqualTo() { return LineNumberLessThanOrEqualTo; } public IN_ComponentsQuery setLineNumberLessThanOrEqualTo(Integer value) { this.LineNumberLessThanOrEqualTo = value; return this; } public Integer getLineNumberNotEqualTo() { return LineNumberNotEqualTo; } public IN_ComponentsQuery setLineNumberNotEqualTo(Integer value) { this.LineNumberNotEqualTo = value; return this; } public ArrayList getLineNumberBetween() { return LineNumberBetween; } public IN_ComponentsQuery setLineNumberBetween(ArrayList value) { this.LineNumberBetween = value; return this; } public ArrayList getLineNumberIn() { return LineNumberIn; } public IN_ComponentsQuery setLineNumberIn(ArrayList value) { this.LineNumberIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class IN_CostChangeQuery extends QueryDb implements IReturn> { public String RecID = null; public String RecIDStartsWith = null; public String RecIDEndsWith = null; public String RecIDContains = null; public String RecIDLike = null; public ArrayList RecIDBetween = null; public ArrayList RecIDIn = null; public Date LastSavedDateTime = null; public Date LastSavedDateTimeGreaterThanOrEqualTo = null; public Date LastSavedDateTimeGreaterThan = null; public Date LastSavedDateTimeLessThan = null; public Date LastSavedDateTimeLessThanOrEqualTo = null; public Date LastSavedDateTimeNotEqualTo = null; public ArrayList LastSavedDateTimeBetween = null; public ArrayList LastSavedDateTimeIn = null; public String ChangeNo = null; public String ChangeNoStartsWith = null; public String ChangeNoEndsWith = null; public String ChangeNoContains = null; public String ChangeNoLike = null; public ArrayList ChangeNoBetween = null; public ArrayList ChangeNoIn = null; public String Notes = null; public String NotesStartsWith = null; public String NotesEndsWith = null; public String NotesContains = null; public String NotesLike = null; public ArrayList NotesBetween = null; public ArrayList NotesIn = null; public String LastSaved_HR_Staff_RecID = null; public String LastSaved_HR_Staff_RecIDStartsWith = null; public String LastSaved_HR_Staff_RecIDEndsWith = null; public String LastSaved_HR_Staff_RecIDContains = null; public String LastSaved_HR_Staff_RecIDLike = null; public ArrayList LastSaved_HR_Staff_RecIDBetween = null; public ArrayList LastSaved_HR_Staff_RecIDIn = null; public ArrayList RowHash = null; public Short Status = null; public Short StatusGreaterThanOrEqualTo = null; public Short StatusGreaterThan = null; public Short StatusLessThan = null; public Short StatusLessThanOrEqualTo = null; public Short StatusNotEqualTo = null; public ArrayList StatusBetween = null; public ArrayList StatusIn = null; public String getRecID() { return RecID; } public IN_CostChangeQuery setRecID(String value) { this.RecID = value; return this; } public String getRecIDStartsWith() { return RecIDStartsWith; } public IN_CostChangeQuery setRecIDStartsWith(String value) { this.RecIDStartsWith = value; return this; } public String getRecIDEndsWith() { return RecIDEndsWith; } public IN_CostChangeQuery setRecIDEndsWith(String value) { this.RecIDEndsWith = value; return this; } public String getRecIDContains() { return RecIDContains; } public IN_CostChangeQuery setRecIDContains(String value) { this.RecIDContains = value; return this; } public String getRecIDLike() { return RecIDLike; } public IN_CostChangeQuery setRecIDLike(String value) { this.RecIDLike = value; return this; } public ArrayList getRecIDBetween() { return RecIDBetween; } public IN_CostChangeQuery setRecIDBetween(ArrayList value) { this.RecIDBetween = value; return this; } public ArrayList getRecIDIn() { return RecIDIn; } public IN_CostChangeQuery setRecIDIn(ArrayList value) { this.RecIDIn = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public IN_CostChangeQuery setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getLastSavedDateTimeGreaterThanOrEqualTo() { return LastSavedDateTimeGreaterThanOrEqualTo; } public IN_CostChangeQuery setLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.LastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeGreaterThan() { return LastSavedDateTimeGreaterThan; } public IN_CostChangeQuery setLastSavedDateTimeGreaterThan(Date value) { this.LastSavedDateTimeGreaterThan = value; return this; } public Date getLastSavedDateTimeLessThan() { return LastSavedDateTimeLessThan; } public IN_CostChangeQuery setLastSavedDateTimeLessThan(Date value) { this.LastSavedDateTimeLessThan = value; return this; } public Date getLastSavedDateTimeLessThanOrEqualTo() { return LastSavedDateTimeLessThanOrEqualTo; } public IN_CostChangeQuery setLastSavedDateTimeLessThanOrEqualTo(Date value) { this.LastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeNotEqualTo() { return LastSavedDateTimeNotEqualTo; } public IN_CostChangeQuery setLastSavedDateTimeNotEqualTo(Date value) { this.LastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getLastSavedDateTimeBetween() { return LastSavedDateTimeBetween; } public IN_CostChangeQuery setLastSavedDateTimeBetween(ArrayList value) { this.LastSavedDateTimeBetween = value; return this; } public ArrayList getLastSavedDateTimeIn() { return LastSavedDateTimeIn; } public IN_CostChangeQuery setLastSavedDateTimeIn(ArrayList value) { this.LastSavedDateTimeIn = value; return this; } public String getChangeNo() { return ChangeNo; } public IN_CostChangeQuery setChangeNo(String value) { this.ChangeNo = value; return this; } public String getChangeNoStartsWith() { return ChangeNoStartsWith; } public IN_CostChangeQuery setChangeNoStartsWith(String value) { this.ChangeNoStartsWith = value; return this; } public String getChangeNoEndsWith() { return ChangeNoEndsWith; } public IN_CostChangeQuery setChangeNoEndsWith(String value) { this.ChangeNoEndsWith = value; return this; } public String getChangeNoContains() { return ChangeNoContains; } public IN_CostChangeQuery setChangeNoContains(String value) { this.ChangeNoContains = value; return this; } public String getChangeNoLike() { return ChangeNoLike; } public IN_CostChangeQuery setChangeNoLike(String value) { this.ChangeNoLike = value; return this; } public ArrayList getChangeNoBetween() { return ChangeNoBetween; } public IN_CostChangeQuery setChangeNoBetween(ArrayList value) { this.ChangeNoBetween = value; return this; } public ArrayList getChangeNoIn() { return ChangeNoIn; } public IN_CostChangeQuery setChangeNoIn(ArrayList value) { this.ChangeNoIn = value; return this; } public String getNotes() { return Notes; } public IN_CostChangeQuery setNotes(String value) { this.Notes = value; return this; } public String getNotesStartsWith() { return NotesStartsWith; } public IN_CostChangeQuery setNotesStartsWith(String value) { this.NotesStartsWith = value; return this; } public String getNotesEndsWith() { return NotesEndsWith; } public IN_CostChangeQuery setNotesEndsWith(String value) { this.NotesEndsWith = value; return this; } public String getNotesContains() { return NotesContains; } public IN_CostChangeQuery setNotesContains(String value) { this.NotesContains = value; return this; } public String getNotesLike() { return NotesLike; } public IN_CostChangeQuery setNotesLike(String value) { this.NotesLike = value; return this; } public ArrayList getNotesBetween() { return NotesBetween; } public IN_CostChangeQuery setNotesBetween(ArrayList value) { this.NotesBetween = value; return this; } public ArrayList getNotesIn() { return NotesIn; } public IN_CostChangeQuery setNotesIn(ArrayList value) { this.NotesIn = value; return this; } public String getLastSavedHrStaffRecID() { return LastSaved_HR_Staff_RecID; } public IN_CostChangeQuery setLastSavedHrStaffRecID(String value) { this.LastSaved_HR_Staff_RecID = value; return this; } public String getLastSavedHrStaffRecIDStartsWith() { return LastSaved_HR_Staff_RecIDStartsWith; } public IN_CostChangeQuery setLastSavedHrStaffRecIDStartsWith(String value) { this.LastSaved_HR_Staff_RecIDStartsWith = value; return this; } public String getLastSavedHrStaffRecIDEndsWith() { return LastSaved_HR_Staff_RecIDEndsWith; } public IN_CostChangeQuery setLastSavedHrStaffRecIDEndsWith(String value) { this.LastSaved_HR_Staff_RecIDEndsWith = value; return this; } public String getLastSavedHrStaffRecIDContains() { return LastSaved_HR_Staff_RecIDContains; } public IN_CostChangeQuery setLastSavedHrStaffRecIDContains(String value) { this.LastSaved_HR_Staff_RecIDContains = value; return this; } public String getLastSavedHrStaffRecIDLike() { return LastSaved_HR_Staff_RecIDLike; } public IN_CostChangeQuery setLastSavedHrStaffRecIDLike(String value) { this.LastSaved_HR_Staff_RecIDLike = value; return this; } public ArrayList getLastSavedHrStaffRecIDBetween() { return LastSaved_HR_Staff_RecIDBetween; } public IN_CostChangeQuery setLastSavedHrStaffRecIDBetween(ArrayList value) { this.LastSaved_HR_Staff_RecIDBetween = value; return this; } public ArrayList getLastSavedHrStaffRecIDIn() { return LastSaved_HR_Staff_RecIDIn; } public IN_CostChangeQuery setLastSavedHrStaffRecIDIn(ArrayList value) { this.LastSaved_HR_Staff_RecIDIn = value; return this; } public ArrayList getRowHash() { return RowHash; } public IN_CostChangeQuery setRowHash(ArrayList value) { this.RowHash = value; return this; } public Short getStatus() { return Status; } public IN_CostChangeQuery setStatus(Short value) { this.Status = value; return this; } public Short getStatusGreaterThanOrEqualTo() { return StatusGreaterThanOrEqualTo; } public IN_CostChangeQuery setStatusGreaterThanOrEqualTo(Short value) { this.StatusGreaterThanOrEqualTo = value; return this; } public Short getStatusGreaterThan() { return StatusGreaterThan; } public IN_CostChangeQuery setStatusGreaterThan(Short value) { this.StatusGreaterThan = value; return this; } public Short getStatusLessThan() { return StatusLessThan; } public IN_CostChangeQuery setStatusLessThan(Short value) { this.StatusLessThan = value; return this; } public Short getStatusLessThanOrEqualTo() { return StatusLessThanOrEqualTo; } public IN_CostChangeQuery setStatusLessThanOrEqualTo(Short value) { this.StatusLessThanOrEqualTo = value; return this; } public Short getStatusNotEqualTo() { return StatusNotEqualTo; } public IN_CostChangeQuery setStatusNotEqualTo(Short value) { this.StatusNotEqualTo = value; return this; } public ArrayList getStatusBetween() { return StatusBetween; } public IN_CostChangeQuery setStatusBetween(ArrayList value) { this.StatusBetween = value; return this; } public ArrayList getStatusIn() { return StatusIn; } public IN_CostChangeQuery setStatusIn(ArrayList value) { this.StatusIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class IN_CostChangeLinesQuery extends QueryDb implements IReturn> { public String RecID = null; public String RecIDStartsWith = null; public String RecIDEndsWith = null; public String RecIDContains = null; public String RecIDLike = null; public ArrayList RecIDBetween = null; public ArrayList RecIDIn = null; public String IN_CostChange_RecID = null; public String IN_CostChange_RecIDStartsWith = null; public String IN_CostChange_RecIDEndsWith = null; public String IN_CostChange_RecIDContains = null; public String IN_CostChange_RecIDLike = null; public ArrayList IN_CostChange_RecIDBetween = null; public ArrayList IN_CostChange_RecIDIn = null; public String Old_IN_SOH_RecID = null; public String Old_IN_SOH_RecIDStartsWith = null; public String Old_IN_SOH_RecIDEndsWith = null; public String Old_IN_SOH_RecIDContains = null; public String Old_IN_SOH_RecIDLike = null; public ArrayList Old_IN_SOH_RecIDBetween = null; public ArrayList Old_IN_SOH_RecIDIn = null; public BigDecimal NewCost = null; public BigDecimal NewCostGreaterThanOrEqualTo = null; public BigDecimal NewCostGreaterThan = null; public BigDecimal NewCostLessThan = null; public BigDecimal NewCostLessThanOrEqualTo = null; public BigDecimal NewCostNotEqualTo = null; public ArrayList NewCostBetween = null; public ArrayList NewCostIn = null; public String Reference = null; public String ReferenceStartsWith = null; public String ReferenceEndsWith = null; public String ReferenceContains = null; public String ReferenceLike = null; public ArrayList ReferenceBetween = null; public ArrayList ReferenceIn = null; public Integer ItemNo = null; public Integer ItemNoGreaterThanOrEqualTo = null; public Integer ItemNoGreaterThan = null; public Integer ItemNoLessThan = null; public Integer ItemNoLessThanOrEqualTo = null; public Integer ItemNoNotEqualTo = null; public ArrayList ItemNoBetween = null; public ArrayList ItemNoIn = null; public ArrayList RowHash = null; public String New_IN_SOH_RecID = null; public String New_IN_SOH_RecIDStartsWith = null; public String New_IN_SOH_RecIDEndsWith = null; public String New_IN_SOH_RecIDContains = null; public String New_IN_SOH_RecIDLike = null; public ArrayList New_IN_SOH_RecIDBetween = null; public ArrayList New_IN_SOH_RecIDIn = null; public String getRecID() { return RecID; } public IN_CostChangeLinesQuery setRecID(String value) { this.RecID = value; return this; } public String getRecIDStartsWith() { return RecIDStartsWith; } public IN_CostChangeLinesQuery setRecIDStartsWith(String value) { this.RecIDStartsWith = value; return this; } public String getRecIDEndsWith() { return RecIDEndsWith; } public IN_CostChangeLinesQuery setRecIDEndsWith(String value) { this.RecIDEndsWith = value; return this; } public String getRecIDContains() { return RecIDContains; } public IN_CostChangeLinesQuery setRecIDContains(String value) { this.RecIDContains = value; return this; } public String getRecIDLike() { return RecIDLike; } public IN_CostChangeLinesQuery setRecIDLike(String value) { this.RecIDLike = value; return this; } public ArrayList getRecIDBetween() { return RecIDBetween; } public IN_CostChangeLinesQuery setRecIDBetween(ArrayList value) { this.RecIDBetween = value; return this; } public ArrayList getRecIDIn() { return RecIDIn; } public IN_CostChangeLinesQuery setRecIDIn(ArrayList value) { this.RecIDIn = value; return this; } public String getInCostChangeRecID() { return IN_CostChange_RecID; } public IN_CostChangeLinesQuery setInCostChangeRecID(String value) { this.IN_CostChange_RecID = value; return this; } public String getInCostChangeRecIDStartsWith() { return IN_CostChange_RecIDStartsWith; } public IN_CostChangeLinesQuery setInCostChangeRecIDStartsWith(String value) { this.IN_CostChange_RecIDStartsWith = value; return this; } public String getInCostChangeRecIDEndsWith() { return IN_CostChange_RecIDEndsWith; } public IN_CostChangeLinesQuery setInCostChangeRecIDEndsWith(String value) { this.IN_CostChange_RecIDEndsWith = value; return this; } public String getInCostChangeRecIDContains() { return IN_CostChange_RecIDContains; } public IN_CostChangeLinesQuery setInCostChangeRecIDContains(String value) { this.IN_CostChange_RecIDContains = value; return this; } public String getInCostChangeRecIDLike() { return IN_CostChange_RecIDLike; } public IN_CostChangeLinesQuery setInCostChangeRecIDLike(String value) { this.IN_CostChange_RecIDLike = value; return this; } public ArrayList getInCostChangeRecIDBetween() { return IN_CostChange_RecIDBetween; } public IN_CostChangeLinesQuery setInCostChangeRecIDBetween(ArrayList value) { this.IN_CostChange_RecIDBetween = value; return this; } public ArrayList getInCostChangeRecIDIn() { return IN_CostChange_RecIDIn; } public IN_CostChangeLinesQuery setInCostChangeRecIDIn(ArrayList value) { this.IN_CostChange_RecIDIn = value; return this; } public String getOldInSohRecID() { return Old_IN_SOH_RecID; } public IN_CostChangeLinesQuery setOldInSohRecID(String value) { this.Old_IN_SOH_RecID = value; return this; } public String getOldInSohRecIDStartsWith() { return Old_IN_SOH_RecIDStartsWith; } public IN_CostChangeLinesQuery setOldInSohRecIDStartsWith(String value) { this.Old_IN_SOH_RecIDStartsWith = value; return this; } public String getOldInSohRecIDEndsWith() { return Old_IN_SOH_RecIDEndsWith; } public IN_CostChangeLinesQuery setOldInSohRecIDEndsWith(String value) { this.Old_IN_SOH_RecIDEndsWith = value; return this; } public String getOldInSohRecIDContains() { return Old_IN_SOH_RecIDContains; } public IN_CostChangeLinesQuery setOldInSohRecIDContains(String value) { this.Old_IN_SOH_RecIDContains = value; return this; } public String getOldInSohRecIDLike() { return Old_IN_SOH_RecIDLike; } public IN_CostChangeLinesQuery setOldInSohRecIDLike(String value) { this.Old_IN_SOH_RecIDLike = value; return this; } public ArrayList getOldInSohRecIDBetween() { return Old_IN_SOH_RecIDBetween; } public IN_CostChangeLinesQuery setOldInSohRecIDBetween(ArrayList value) { this.Old_IN_SOH_RecIDBetween = value; return this; } public ArrayList getOldInSohRecIDIn() { return Old_IN_SOH_RecIDIn; } public IN_CostChangeLinesQuery setOldInSohRecIDIn(ArrayList value) { this.Old_IN_SOH_RecIDIn = value; return this; } public BigDecimal getNewCost() { return NewCost; } public IN_CostChangeLinesQuery setNewCost(BigDecimal value) { this.NewCost = value; return this; } public BigDecimal getNewCostGreaterThanOrEqualTo() { return NewCostGreaterThanOrEqualTo; } public IN_CostChangeLinesQuery setNewCostGreaterThanOrEqualTo(BigDecimal value) { this.NewCostGreaterThanOrEqualTo = value; return this; } public BigDecimal getNewCostGreaterThan() { return NewCostGreaterThan; } public IN_CostChangeLinesQuery setNewCostGreaterThan(BigDecimal value) { this.NewCostGreaterThan = value; return this; } public BigDecimal getNewCostLessThan() { return NewCostLessThan; } public IN_CostChangeLinesQuery setNewCostLessThan(BigDecimal value) { this.NewCostLessThan = value; return this; } public BigDecimal getNewCostLessThanOrEqualTo() { return NewCostLessThanOrEqualTo; } public IN_CostChangeLinesQuery setNewCostLessThanOrEqualTo(BigDecimal value) { this.NewCostLessThanOrEqualTo = value; return this; } public BigDecimal getNewCostNotEqualTo() { return NewCostNotEqualTo; } public IN_CostChangeLinesQuery setNewCostNotEqualTo(BigDecimal value) { this.NewCostNotEqualTo = value; return this; } public ArrayList getNewCostBetween() { return NewCostBetween; } public IN_CostChangeLinesQuery setNewCostBetween(ArrayList value) { this.NewCostBetween = value; return this; } public ArrayList getNewCostIn() { return NewCostIn; } public IN_CostChangeLinesQuery setNewCostIn(ArrayList value) { this.NewCostIn = value; return this; } public String getReference() { return Reference; } public IN_CostChangeLinesQuery setReference(String value) { this.Reference = value; return this; } public String getReferenceStartsWith() { return ReferenceStartsWith; } public IN_CostChangeLinesQuery setReferenceStartsWith(String value) { this.ReferenceStartsWith = value; return this; } public String getReferenceEndsWith() { return ReferenceEndsWith; } public IN_CostChangeLinesQuery setReferenceEndsWith(String value) { this.ReferenceEndsWith = value; return this; } public String getReferenceContains() { return ReferenceContains; } public IN_CostChangeLinesQuery setReferenceContains(String value) { this.ReferenceContains = value; return this; } public String getReferenceLike() { return ReferenceLike; } public IN_CostChangeLinesQuery setReferenceLike(String value) { this.ReferenceLike = value; return this; } public ArrayList getReferenceBetween() { return ReferenceBetween; } public IN_CostChangeLinesQuery setReferenceBetween(ArrayList value) { this.ReferenceBetween = value; return this; } public ArrayList getReferenceIn() { return ReferenceIn; } public IN_CostChangeLinesQuery setReferenceIn(ArrayList value) { this.ReferenceIn = value; return this; } public Integer getItemNo() { return ItemNo; } public IN_CostChangeLinesQuery setItemNo(Integer value) { this.ItemNo = value; return this; } public Integer getItemNoGreaterThanOrEqualTo() { return ItemNoGreaterThanOrEqualTo; } public IN_CostChangeLinesQuery setItemNoGreaterThanOrEqualTo(Integer value) { this.ItemNoGreaterThanOrEqualTo = value; return this; } public Integer getItemNoGreaterThan() { return ItemNoGreaterThan; } public IN_CostChangeLinesQuery setItemNoGreaterThan(Integer value) { this.ItemNoGreaterThan = value; return this; } public Integer getItemNoLessThan() { return ItemNoLessThan; } public IN_CostChangeLinesQuery setItemNoLessThan(Integer value) { this.ItemNoLessThan = value; return this; } public Integer getItemNoLessThanOrEqualTo() { return ItemNoLessThanOrEqualTo; } public IN_CostChangeLinesQuery setItemNoLessThanOrEqualTo(Integer value) { this.ItemNoLessThanOrEqualTo = value; return this; } public Integer getItemNoNotEqualTo() { return ItemNoNotEqualTo; } public IN_CostChangeLinesQuery setItemNoNotEqualTo(Integer value) { this.ItemNoNotEqualTo = value; return this; } public ArrayList getItemNoBetween() { return ItemNoBetween; } public IN_CostChangeLinesQuery setItemNoBetween(ArrayList value) { this.ItemNoBetween = value; return this; } public ArrayList getItemNoIn() { return ItemNoIn; } public IN_CostChangeLinesQuery setItemNoIn(ArrayList value) { this.ItemNoIn = value; return this; } public ArrayList getRowHash() { return RowHash; } public IN_CostChangeLinesQuery setRowHash(ArrayList value) { this.RowHash = value; return this; } public String getNewInSohRecID() { return New_IN_SOH_RecID; } public IN_CostChangeLinesQuery setNewInSohRecID(String value) { this.New_IN_SOH_RecID = value; return this; } public String getNewInSohRecIDStartsWith() { return New_IN_SOH_RecIDStartsWith; } public IN_CostChangeLinesQuery setNewInSohRecIDStartsWith(String value) { this.New_IN_SOH_RecIDStartsWith = value; return this; } public String getNewInSohRecIDEndsWith() { return New_IN_SOH_RecIDEndsWith; } public IN_CostChangeLinesQuery setNewInSohRecIDEndsWith(String value) { this.New_IN_SOH_RecIDEndsWith = value; return this; } public String getNewInSohRecIDContains() { return New_IN_SOH_RecIDContains; } public IN_CostChangeLinesQuery setNewInSohRecIDContains(String value) { this.New_IN_SOH_RecIDContains = value; return this; } public String getNewInSohRecIDLike() { return New_IN_SOH_RecIDLike; } public IN_CostChangeLinesQuery setNewInSohRecIDLike(String value) { this.New_IN_SOH_RecIDLike = value; return this; } public ArrayList getNewInSohRecIDBetween() { return New_IN_SOH_RecIDBetween; } public IN_CostChangeLinesQuery setNewInSohRecIDBetween(ArrayList value) { this.New_IN_SOH_RecIDBetween = value; return this; } public ArrayList getNewInSohRecIDIn() { return New_IN_SOH_RecIDIn; } public IN_CostChangeLinesQuery setNewInSohRecIDIn(ArrayList value) { this.New_IN_SOH_RecIDIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class IN_CreditorQuery extends QueryDb implements IReturn> { public String RecID = null; public String RecIDStartsWith = null; public String RecIDEndsWith = null; public String RecIDContains = null; public String RecIDLike = null; public ArrayList RecIDBetween = null; public ArrayList RecIDIn = null; public String InventoryID = null; public String InventoryIDStartsWith = null; public String InventoryIDEndsWith = null; public String InventoryIDContains = null; public String InventoryIDLike = null; public ArrayList InventoryIDBetween = null; public ArrayList InventoryIDIn = null; public String CreditorID = null; public String CreditorIDStartsWith = null; public String CreditorIDEndsWith = null; public String CreditorIDContains = null; public String CreditorIDLike = null; public ArrayList CreditorIDBetween = null; public ArrayList CreditorIDIn = null; public String PartNo = null; public String PartNoStartsWith = null; public String PartNoEndsWith = null; public String PartNoContains = null; public String PartNoLike = null; public ArrayList PartNoBetween = null; public ArrayList PartNoIn = null; public String SupplierUPC = null; public String SupplierUPCStartsWith = null; public String SupplierUPCEndsWith = null; public String SupplierUPCContains = null; public String SupplierUPCLike = null; public ArrayList SupplierUPCBetween = null; public ArrayList SupplierUPCIn = null; public BigDecimal SpareFloat1 = null; public BigDecimal SpareFloat1GreaterThanOrEqualTo = null; public BigDecimal SpareFloat1GreaterThan = null; public BigDecimal SpareFloat1LessThan = null; public BigDecimal SpareFloat1LessThanOrEqualTo = null; public BigDecimal SpareFloat1NotEqualTo = null; public ArrayList SpareFloat1Between = null; public ArrayList SpareFloat1In = null; public BigDecimal SpareFloat2 = null; public BigDecimal SpareFloat2GreaterThanOrEqualTo = null; public BigDecimal SpareFloat2GreaterThan = null; public BigDecimal SpareFloat2LessThan = null; public BigDecimal SpareFloat2LessThanOrEqualTo = null; public BigDecimal SpareFloat2NotEqualTo = null; public ArrayList SpareFloat2Between = null; public ArrayList SpareFloat2In = null; public BigDecimal SpareFloat3 = null; public BigDecimal SpareFloat3GreaterThanOrEqualTo = null; public BigDecimal SpareFloat3GreaterThan = null; public BigDecimal SpareFloat3LessThan = null; public BigDecimal SpareFloat3LessThanOrEqualTo = null; public BigDecimal SpareFloat3NotEqualTo = null; public ArrayList SpareFloat3Between = null; public ArrayList SpareFloat3In = null; public String SpareString1 = null; public String SpareString1StartsWith = null; public String SpareString1EndsWith = null; public String SpareString1Contains = null; public String SpareString1Like = null; public ArrayList SpareString1Between = null; public ArrayList SpareString1In = null; public String SpareString2 = null; public String SpareString2StartsWith = null; public String SpareString2EndsWith = null; public String SpareString2Contains = null; public String SpareString2Like = null; public ArrayList SpareString2Between = null; public ArrayList SpareString2In = null; public String SpareString3 = null; public String SpareString3StartsWith = null; public String SpareString3EndsWith = null; public String SpareString3Contains = null; public String SpareString3Like = null; public ArrayList SpareString3Between = null; public ArrayList SpareString3In = null; public Date SpareDate1 = null; public Date SpareDate1GreaterThanOrEqualTo = null; public Date SpareDate1GreaterThan = null; public Date SpareDate1LessThan = null; public Date SpareDate1LessThanOrEqualTo = null; public Date SpareDate1NotEqualTo = null; public ArrayList SpareDate1Between = null; public ArrayList SpareDate1In = null; public Date SpareDate2 = null; public Date SpareDate2GreaterThanOrEqualTo = null; public Date SpareDate2GreaterThan = null; public Date SpareDate2LessThan = null; public Date SpareDate2LessThanOrEqualTo = null; public Date SpareDate2NotEqualTo = null; public ArrayList SpareDate2Between = null; public ArrayList SpareDate2In = null; public Date SpareDate3 = null; public Date SpareDate3GreaterThanOrEqualTo = null; public Date SpareDate3GreaterThan = null; public Date SpareDate3LessThan = null; public Date SpareDate3LessThanOrEqualTo = null; public Date SpareDate3NotEqualTo = null; public ArrayList SpareDate3Between = null; public ArrayList SpareDate3In = null; public Boolean DefaultSupplier = null; public String IN_Region_RecID = null; public String IN_Region_RecIDStartsWith = null; public String IN_Region_RecIDEndsWith = null; public String IN_Region_RecIDContains = null; public String IN_Region_RecIDLike = null; public ArrayList IN_Region_RecIDBetween = null; public ArrayList IN_Region_RecIDIn = null; public Integer ItemNo = null; public Integer ItemNoGreaterThanOrEqualTo = null; public Integer ItemNoGreaterThan = null; public Integer ItemNoLessThan = null; public Integer ItemNoLessThanOrEqualTo = null; public Integer ItemNoNotEqualTo = null; public ArrayList ItemNoBetween = null; public ArrayList ItemNoIn = null; public String getRecID() { return RecID; } public IN_CreditorQuery setRecID(String value) { this.RecID = value; return this; } public String getRecIDStartsWith() { return RecIDStartsWith; } public IN_CreditorQuery setRecIDStartsWith(String value) { this.RecIDStartsWith = value; return this; } public String getRecIDEndsWith() { return RecIDEndsWith; } public IN_CreditorQuery setRecIDEndsWith(String value) { this.RecIDEndsWith = value; return this; } public String getRecIDContains() { return RecIDContains; } public IN_CreditorQuery setRecIDContains(String value) { this.RecIDContains = value; return this; } public String getRecIDLike() { return RecIDLike; } public IN_CreditorQuery setRecIDLike(String value) { this.RecIDLike = value; return this; } public ArrayList getRecIDBetween() { return RecIDBetween; } public IN_CreditorQuery setRecIDBetween(ArrayList value) { this.RecIDBetween = value; return this; } public ArrayList getRecIDIn() { return RecIDIn; } public IN_CreditorQuery setRecIDIn(ArrayList value) { this.RecIDIn = value; return this; } public String getInventoryID() { return InventoryID; } public IN_CreditorQuery setInventoryID(String value) { this.InventoryID = value; return this; } public String getInventoryIDStartsWith() { return InventoryIDStartsWith; } public IN_CreditorQuery setInventoryIDStartsWith(String value) { this.InventoryIDStartsWith = value; return this; } public String getInventoryIDEndsWith() { return InventoryIDEndsWith; } public IN_CreditorQuery setInventoryIDEndsWith(String value) { this.InventoryIDEndsWith = value; return this; } public String getInventoryIDContains() { return InventoryIDContains; } public IN_CreditorQuery setInventoryIDContains(String value) { this.InventoryIDContains = value; return this; } public String getInventoryIDLike() { return InventoryIDLike; } public IN_CreditorQuery setInventoryIDLike(String value) { this.InventoryIDLike = value; return this; } public ArrayList getInventoryIDBetween() { return InventoryIDBetween; } public IN_CreditorQuery setInventoryIDBetween(ArrayList value) { this.InventoryIDBetween = value; return this; } public ArrayList getInventoryIDIn() { return InventoryIDIn; } public IN_CreditorQuery setInventoryIDIn(ArrayList value) { this.InventoryIDIn = value; return this; } public String getCreditorID() { return CreditorID; } public IN_CreditorQuery setCreditorID(String value) { this.CreditorID = value; return this; } public String getCreditorIDStartsWith() { return CreditorIDStartsWith; } public IN_CreditorQuery setCreditorIDStartsWith(String value) { this.CreditorIDStartsWith = value; return this; } public String getCreditorIDEndsWith() { return CreditorIDEndsWith; } public IN_CreditorQuery setCreditorIDEndsWith(String value) { this.CreditorIDEndsWith = value; return this; } public String getCreditorIDContains() { return CreditorIDContains; } public IN_CreditorQuery setCreditorIDContains(String value) { this.CreditorIDContains = value; return this; } public String getCreditorIDLike() { return CreditorIDLike; } public IN_CreditorQuery setCreditorIDLike(String value) { this.CreditorIDLike = value; return this; } public ArrayList getCreditorIDBetween() { return CreditorIDBetween; } public IN_CreditorQuery setCreditorIDBetween(ArrayList value) { this.CreditorIDBetween = value; return this; } public ArrayList getCreditorIDIn() { return CreditorIDIn; } public IN_CreditorQuery setCreditorIDIn(ArrayList value) { this.CreditorIDIn = value; return this; } public String getPartNo() { return PartNo; } public IN_CreditorQuery setPartNo(String value) { this.PartNo = value; return this; } public String getPartNoStartsWith() { return PartNoStartsWith; } public IN_CreditorQuery setPartNoStartsWith(String value) { this.PartNoStartsWith = value; return this; } public String getPartNoEndsWith() { return PartNoEndsWith; } public IN_CreditorQuery setPartNoEndsWith(String value) { this.PartNoEndsWith = value; return this; } public String getPartNoContains() { return PartNoContains; } public IN_CreditorQuery setPartNoContains(String value) { this.PartNoContains = value; return this; } public String getPartNoLike() { return PartNoLike; } public IN_CreditorQuery setPartNoLike(String value) { this.PartNoLike = value; return this; } public ArrayList getPartNoBetween() { return PartNoBetween; } public IN_CreditorQuery setPartNoBetween(ArrayList value) { this.PartNoBetween = value; return this; } public ArrayList getPartNoIn() { return PartNoIn; } public IN_CreditorQuery setPartNoIn(ArrayList value) { this.PartNoIn = value; return this; } public String getSupplierUPC() { return SupplierUPC; } public IN_CreditorQuery setSupplierUPC(String value) { this.SupplierUPC = value; return this; } public String getSupplierUPCStartsWith() { return SupplierUPCStartsWith; } public IN_CreditorQuery setSupplierUPCStartsWith(String value) { this.SupplierUPCStartsWith = value; return this; } public String getSupplierUPCEndsWith() { return SupplierUPCEndsWith; } public IN_CreditorQuery setSupplierUPCEndsWith(String value) { this.SupplierUPCEndsWith = value; return this; } public String getSupplierUPCContains() { return SupplierUPCContains; } public IN_CreditorQuery setSupplierUPCContains(String value) { this.SupplierUPCContains = value; return this; } public String getSupplierUPCLike() { return SupplierUPCLike; } public IN_CreditorQuery setSupplierUPCLike(String value) { this.SupplierUPCLike = value; return this; } public ArrayList getSupplierUPCBetween() { return SupplierUPCBetween; } public IN_CreditorQuery setSupplierUPCBetween(ArrayList value) { this.SupplierUPCBetween = value; return this; } public ArrayList getSupplierUPCIn() { return SupplierUPCIn; } public IN_CreditorQuery setSupplierUPCIn(ArrayList value) { this.SupplierUPCIn = value; return this; } public BigDecimal getSpareFloat1() { return SpareFloat1; } public IN_CreditorQuery setSpareFloat1(BigDecimal value) { this.SpareFloat1 = value; return this; } public BigDecimal getSpareFloat1GreaterThanOrEqualTo() { return SpareFloat1GreaterThanOrEqualTo; } public IN_CreditorQuery setSpareFloat1GreaterThanOrEqualTo(BigDecimal value) { this.SpareFloat1GreaterThanOrEqualTo = value; return this; } public BigDecimal getSpareFloat1GreaterThan() { return SpareFloat1GreaterThan; } public IN_CreditorQuery setSpareFloat1GreaterThan(BigDecimal value) { this.SpareFloat1GreaterThan = value; return this; } public BigDecimal getSpareFloat1LessThan() { return SpareFloat1LessThan; } public IN_CreditorQuery setSpareFloat1LessThan(BigDecimal value) { this.SpareFloat1LessThan = value; return this; } public BigDecimal getSpareFloat1LessThanOrEqualTo() { return SpareFloat1LessThanOrEqualTo; } public IN_CreditorQuery setSpareFloat1LessThanOrEqualTo(BigDecimal value) { this.SpareFloat1LessThanOrEqualTo = value; return this; } public BigDecimal getSpareFloat1NotEqualTo() { return SpareFloat1NotEqualTo; } public IN_CreditorQuery setSpareFloat1NotEqualTo(BigDecimal value) { this.SpareFloat1NotEqualTo = value; return this; } public ArrayList getSpareFloat1Between() { return SpareFloat1Between; } public IN_CreditorQuery setSpareFloat1Between(ArrayList value) { this.SpareFloat1Between = value; return this; } public ArrayList getSpareFloat1In() { return SpareFloat1In; } public IN_CreditorQuery setSpareFloat1In(ArrayList value) { this.SpareFloat1In = value; return this; } public BigDecimal getSpareFloat2() { return SpareFloat2; } public IN_CreditorQuery setSpareFloat2(BigDecimal value) { this.SpareFloat2 = value; return this; } public BigDecimal getSpareFloat2GreaterThanOrEqualTo() { return SpareFloat2GreaterThanOrEqualTo; } public IN_CreditorQuery setSpareFloat2GreaterThanOrEqualTo(BigDecimal value) { this.SpareFloat2GreaterThanOrEqualTo = value; return this; } public BigDecimal getSpareFloat2GreaterThan() { return SpareFloat2GreaterThan; } public IN_CreditorQuery setSpareFloat2GreaterThan(BigDecimal value) { this.SpareFloat2GreaterThan = value; return this; } public BigDecimal getSpareFloat2LessThan() { return SpareFloat2LessThan; } public IN_CreditorQuery setSpareFloat2LessThan(BigDecimal value) { this.SpareFloat2LessThan = value; return this; } public BigDecimal getSpareFloat2LessThanOrEqualTo() { return SpareFloat2LessThanOrEqualTo; } public IN_CreditorQuery setSpareFloat2LessThanOrEqualTo(BigDecimal value) { this.SpareFloat2LessThanOrEqualTo = value; return this; } public BigDecimal getSpareFloat2NotEqualTo() { return SpareFloat2NotEqualTo; } public IN_CreditorQuery setSpareFloat2NotEqualTo(BigDecimal value) { this.SpareFloat2NotEqualTo = value; return this; } public ArrayList getSpareFloat2Between() { return SpareFloat2Between; } public IN_CreditorQuery setSpareFloat2Between(ArrayList value) { this.SpareFloat2Between = value; return this; } public ArrayList getSpareFloat2In() { return SpareFloat2In; } public IN_CreditorQuery setSpareFloat2In(ArrayList value) { this.SpareFloat2In = value; return this; } public BigDecimal getSpareFloat3() { return SpareFloat3; } public IN_CreditorQuery setSpareFloat3(BigDecimal value) { this.SpareFloat3 = value; return this; } public BigDecimal getSpareFloat3GreaterThanOrEqualTo() { return SpareFloat3GreaterThanOrEqualTo; } public IN_CreditorQuery setSpareFloat3GreaterThanOrEqualTo(BigDecimal value) { this.SpareFloat3GreaterThanOrEqualTo = value; return this; } public BigDecimal getSpareFloat3GreaterThan() { return SpareFloat3GreaterThan; } public IN_CreditorQuery setSpareFloat3GreaterThan(BigDecimal value) { this.SpareFloat3GreaterThan = value; return this; } public BigDecimal getSpareFloat3LessThan() { return SpareFloat3LessThan; } public IN_CreditorQuery setSpareFloat3LessThan(BigDecimal value) { this.SpareFloat3LessThan = value; return this; } public BigDecimal getSpareFloat3LessThanOrEqualTo() { return SpareFloat3LessThanOrEqualTo; } public IN_CreditorQuery setSpareFloat3LessThanOrEqualTo(BigDecimal value) { this.SpareFloat3LessThanOrEqualTo = value; return this; } public BigDecimal getSpareFloat3NotEqualTo() { return SpareFloat3NotEqualTo; } public IN_CreditorQuery setSpareFloat3NotEqualTo(BigDecimal value) { this.SpareFloat3NotEqualTo = value; return this; } public ArrayList getSpareFloat3Between() { return SpareFloat3Between; } public IN_CreditorQuery setSpareFloat3Between(ArrayList value) { this.SpareFloat3Between = value; return this; } public ArrayList getSpareFloat3In() { return SpareFloat3In; } public IN_CreditorQuery setSpareFloat3In(ArrayList value) { this.SpareFloat3In = value; return this; } public String getSpareString1() { return SpareString1; } public IN_CreditorQuery setSpareString1(String value) { this.SpareString1 = value; return this; } public String getSpareString1StartsWith() { return SpareString1StartsWith; } public IN_CreditorQuery setSpareString1StartsWith(String value) { this.SpareString1StartsWith = value; return this; } public String getSpareString1EndsWith() { return SpareString1EndsWith; } public IN_CreditorQuery setSpareString1EndsWith(String value) { this.SpareString1EndsWith = value; return this; } public String getSpareString1Contains() { return SpareString1Contains; } public IN_CreditorQuery setSpareString1Contains(String value) { this.SpareString1Contains = value; return this; } public String getSpareString1Like() { return SpareString1Like; } public IN_CreditorQuery setSpareString1Like(String value) { this.SpareString1Like = value; return this; } public ArrayList getSpareString1Between() { return SpareString1Between; } public IN_CreditorQuery setSpareString1Between(ArrayList value) { this.SpareString1Between = value; return this; } public ArrayList getSpareString1In() { return SpareString1In; } public IN_CreditorQuery setSpareString1In(ArrayList value) { this.SpareString1In = value; return this; } public String getSpareString2() { return SpareString2; } public IN_CreditorQuery setSpareString2(String value) { this.SpareString2 = value; return this; } public String getSpareString2StartsWith() { return SpareString2StartsWith; } public IN_CreditorQuery setSpareString2StartsWith(String value) { this.SpareString2StartsWith = value; return this; } public String getSpareString2EndsWith() { return SpareString2EndsWith; } public IN_CreditorQuery setSpareString2EndsWith(String value) { this.SpareString2EndsWith = value; return this; } public String getSpareString2Contains() { return SpareString2Contains; } public IN_CreditorQuery setSpareString2Contains(String value) { this.SpareString2Contains = value; return this; } public String getSpareString2Like() { return SpareString2Like; } public IN_CreditorQuery setSpareString2Like(String value) { this.SpareString2Like = value; return this; } public ArrayList getSpareString2Between() { return SpareString2Between; } public IN_CreditorQuery setSpareString2Between(ArrayList value) { this.SpareString2Between = value; return this; } public ArrayList getSpareString2In() { return SpareString2In; } public IN_CreditorQuery setSpareString2In(ArrayList value) { this.SpareString2In = value; return this; } public String getSpareString3() { return SpareString3; } public IN_CreditorQuery setSpareString3(String value) { this.SpareString3 = value; return this; } public String getSpareString3StartsWith() { return SpareString3StartsWith; } public IN_CreditorQuery setSpareString3StartsWith(String value) { this.SpareString3StartsWith = value; return this; } public String getSpareString3EndsWith() { return SpareString3EndsWith; } public IN_CreditorQuery setSpareString3EndsWith(String value) { this.SpareString3EndsWith = value; return this; } public String getSpareString3Contains() { return SpareString3Contains; } public IN_CreditorQuery setSpareString3Contains(String value) { this.SpareString3Contains = value; return this; } public String getSpareString3Like() { return SpareString3Like; } public IN_CreditorQuery setSpareString3Like(String value) { this.SpareString3Like = value; return this; } public ArrayList getSpareString3Between() { return SpareString3Between; } public IN_CreditorQuery setSpareString3Between(ArrayList value) { this.SpareString3Between = value; return this; } public ArrayList getSpareString3In() { return SpareString3In; } public IN_CreditorQuery setSpareString3In(ArrayList value) { this.SpareString3In = value; return this; } public Date getSpareDate1() { return SpareDate1; } public IN_CreditorQuery setSpareDate1(Date value) { this.SpareDate1 = value; return this; } public Date getSpareDate1GreaterThanOrEqualTo() { return SpareDate1GreaterThanOrEqualTo; } public IN_CreditorQuery setSpareDate1GreaterThanOrEqualTo(Date value) { this.SpareDate1GreaterThanOrEqualTo = value; return this; } public Date getSpareDate1GreaterThan() { return SpareDate1GreaterThan; } public IN_CreditorQuery setSpareDate1GreaterThan(Date value) { this.SpareDate1GreaterThan = value; return this; } public Date getSpareDate1LessThan() { return SpareDate1LessThan; } public IN_CreditorQuery setSpareDate1LessThan(Date value) { this.SpareDate1LessThan = value; return this; } public Date getSpareDate1LessThanOrEqualTo() { return SpareDate1LessThanOrEqualTo; } public IN_CreditorQuery setSpareDate1LessThanOrEqualTo(Date value) { this.SpareDate1LessThanOrEqualTo = value; return this; } public Date getSpareDate1NotEqualTo() { return SpareDate1NotEqualTo; } public IN_CreditorQuery setSpareDate1NotEqualTo(Date value) { this.SpareDate1NotEqualTo = value; return this; } public ArrayList getSpareDate1Between() { return SpareDate1Between; } public IN_CreditorQuery setSpareDate1Between(ArrayList value) { this.SpareDate1Between = value; return this; } public ArrayList getSpareDate1In() { return SpareDate1In; } public IN_CreditorQuery setSpareDate1In(ArrayList value) { this.SpareDate1In = value; return this; } public Date getSpareDate2() { return SpareDate2; } public IN_CreditorQuery setSpareDate2(Date value) { this.SpareDate2 = value; return this; } public Date getSpareDate2GreaterThanOrEqualTo() { return SpareDate2GreaterThanOrEqualTo; } public IN_CreditorQuery setSpareDate2GreaterThanOrEqualTo(Date value) { this.SpareDate2GreaterThanOrEqualTo = value; return this; } public Date getSpareDate2GreaterThan() { return SpareDate2GreaterThan; } public IN_CreditorQuery setSpareDate2GreaterThan(Date value) { this.SpareDate2GreaterThan = value; return this; } public Date getSpareDate2LessThan() { return SpareDate2LessThan; } public IN_CreditorQuery setSpareDate2LessThan(Date value) { this.SpareDate2LessThan = value; return this; } public Date getSpareDate2LessThanOrEqualTo() { return SpareDate2LessThanOrEqualTo; } public IN_CreditorQuery setSpareDate2LessThanOrEqualTo(Date value) { this.SpareDate2LessThanOrEqualTo = value; return this; } public Date getSpareDate2NotEqualTo() { return SpareDate2NotEqualTo; } public IN_CreditorQuery setSpareDate2NotEqualTo(Date value) { this.SpareDate2NotEqualTo = value; return this; } public ArrayList getSpareDate2Between() { return SpareDate2Between; } public IN_CreditorQuery setSpareDate2Between(ArrayList value) { this.SpareDate2Between = value; return this; } public ArrayList getSpareDate2In() { return SpareDate2In; } public IN_CreditorQuery setSpareDate2In(ArrayList value) { this.SpareDate2In = value; return this; } public Date getSpareDate3() { return SpareDate3; } public IN_CreditorQuery setSpareDate3(Date value) { this.SpareDate3 = value; return this; } public Date getSpareDate3GreaterThanOrEqualTo() { return SpareDate3GreaterThanOrEqualTo; } public IN_CreditorQuery setSpareDate3GreaterThanOrEqualTo(Date value) { this.SpareDate3GreaterThanOrEqualTo = value; return this; } public Date getSpareDate3GreaterThan() { return SpareDate3GreaterThan; } public IN_CreditorQuery setSpareDate3GreaterThan(Date value) { this.SpareDate3GreaterThan = value; return this; } public Date getSpareDate3LessThan() { return SpareDate3LessThan; } public IN_CreditorQuery setSpareDate3LessThan(Date value) { this.SpareDate3LessThan = value; return this; } public Date getSpareDate3LessThanOrEqualTo() { return SpareDate3LessThanOrEqualTo; } public IN_CreditorQuery setSpareDate3LessThanOrEqualTo(Date value) { this.SpareDate3LessThanOrEqualTo = value; return this; } public Date getSpareDate3NotEqualTo() { return SpareDate3NotEqualTo; } public IN_CreditorQuery setSpareDate3NotEqualTo(Date value) { this.SpareDate3NotEqualTo = value; return this; } public ArrayList getSpareDate3Between() { return SpareDate3Between; } public IN_CreditorQuery setSpareDate3Between(ArrayList value) { this.SpareDate3Between = value; return this; } public ArrayList getSpareDate3In() { return SpareDate3In; } public IN_CreditorQuery setSpareDate3In(ArrayList value) { this.SpareDate3In = value; return this; } public Boolean isDefaultSupplier() { return DefaultSupplier; } public IN_CreditorQuery setDefaultSupplier(Boolean value) { this.DefaultSupplier = value; return this; } public String getInRegionRecID() { return IN_Region_RecID; } public IN_CreditorQuery setInRegionRecID(String value) { this.IN_Region_RecID = value; return this; } public String getInRegionRecIDStartsWith() { return IN_Region_RecIDStartsWith; } public IN_CreditorQuery setInRegionRecIDStartsWith(String value) { this.IN_Region_RecIDStartsWith = value; return this; } public String getInRegionRecIDEndsWith() { return IN_Region_RecIDEndsWith; } public IN_CreditorQuery setInRegionRecIDEndsWith(String value) { this.IN_Region_RecIDEndsWith = value; return this; } public String getInRegionRecIDContains() { return IN_Region_RecIDContains; } public IN_CreditorQuery setInRegionRecIDContains(String value) { this.IN_Region_RecIDContains = value; return this; } public String getInRegionRecIDLike() { return IN_Region_RecIDLike; } public IN_CreditorQuery setInRegionRecIDLike(String value) { this.IN_Region_RecIDLike = value; return this; } public ArrayList getInRegionRecIDBetween() { return IN_Region_RecIDBetween; } public IN_CreditorQuery setInRegionRecIDBetween(ArrayList value) { this.IN_Region_RecIDBetween = value; return this; } public ArrayList getInRegionRecIDIn() { return IN_Region_RecIDIn; } public IN_CreditorQuery setInRegionRecIDIn(ArrayList value) { this.IN_Region_RecIDIn = value; return this; } public Integer getItemNo() { return ItemNo; } public IN_CreditorQuery setItemNo(Integer value) { this.ItemNo = value; return this; } public Integer getItemNoGreaterThanOrEqualTo() { return ItemNoGreaterThanOrEqualTo; } public IN_CreditorQuery setItemNoGreaterThanOrEqualTo(Integer value) { this.ItemNoGreaterThanOrEqualTo = value; return this; } public Integer getItemNoGreaterThan() { return ItemNoGreaterThan; } public IN_CreditorQuery setItemNoGreaterThan(Integer value) { this.ItemNoGreaterThan = value; return this; } public Integer getItemNoLessThan() { return ItemNoLessThan; } public IN_CreditorQuery setItemNoLessThan(Integer value) { this.ItemNoLessThan = value; return this; } public Integer getItemNoLessThanOrEqualTo() { return ItemNoLessThanOrEqualTo; } public IN_CreditorQuery setItemNoLessThanOrEqualTo(Integer value) { this.ItemNoLessThanOrEqualTo = value; return this; } public Integer getItemNoNotEqualTo() { return ItemNoNotEqualTo; } public IN_CreditorQuery setItemNoNotEqualTo(Integer value) { this.ItemNoNotEqualTo = value; return this; } public ArrayList getItemNoBetween() { return ItemNoBetween; } public IN_CreditorQuery setItemNoBetween(ArrayList value) { this.ItemNoBetween = value; return this; } public ArrayList getItemNoIn() { return ItemNoIn; } public IN_CreditorQuery setItemNoIn(ArrayList value) { this.ItemNoIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class IN_Creditor_QuantityPriceBreakQuery extends QueryDb implements IReturn> { public UUID RecID = null; public ArrayList RecIDIn = null; public String IN_Creditor_RecID = null; public String IN_Creditor_RecIDStartsWith = null; public String IN_Creditor_RecIDEndsWith = null; public String IN_Creditor_RecIDContains = null; public String IN_Creditor_RecIDLike = null; public ArrayList IN_Creditor_RecIDBetween = null; public ArrayList IN_Creditor_RecIDIn = null; public String InventoryID = null; public String InventoryIDStartsWith = null; public String InventoryIDEndsWith = null; public String InventoryIDContains = null; public String InventoryIDLike = null; public ArrayList InventoryIDBetween = null; public ArrayList InventoryIDIn = null; public ArrayList RowHash = null; public BigDecimal QuantityBreak = null; public BigDecimal QuantityBreakGreaterThanOrEqualTo = null; public BigDecimal QuantityBreakGreaterThan = null; public BigDecimal QuantityBreakLessThan = null; public BigDecimal QuantityBreakLessThanOrEqualTo = null; public BigDecimal QuantityBreakNotEqualTo = null; public ArrayList QuantityBreakBetween = null; public ArrayList QuantityBreakIn = null; public BigDecimal Price = null; public BigDecimal PriceGreaterThanOrEqualTo = null; public BigDecimal PriceGreaterThan = null; public BigDecimal PriceLessThan = null; public BigDecimal PriceLessThanOrEqualTo = null; public BigDecimal PriceNotEqualTo = null; public ArrayList PriceBetween = null; public ArrayList PriceIn = null; public UUID getRecID() { return RecID; } public IN_Creditor_QuantityPriceBreakQuery setRecID(UUID value) { this.RecID = value; return this; } public ArrayList getRecIDIn() { return RecIDIn; } public IN_Creditor_QuantityPriceBreakQuery setRecIDIn(ArrayList value) { this.RecIDIn = value; return this; } public String getInCreditorRecID() { return IN_Creditor_RecID; } public IN_Creditor_QuantityPriceBreakQuery setInCreditorRecID(String value) { this.IN_Creditor_RecID = value; return this; } public String getInCreditorRecIDStartsWith() { return IN_Creditor_RecIDStartsWith; } public IN_Creditor_QuantityPriceBreakQuery setInCreditorRecIDStartsWith(String value) { this.IN_Creditor_RecIDStartsWith = value; return this; } public String getInCreditorRecIDEndsWith() { return IN_Creditor_RecIDEndsWith; } public IN_Creditor_QuantityPriceBreakQuery setInCreditorRecIDEndsWith(String value) { this.IN_Creditor_RecIDEndsWith = value; return this; } public String getInCreditorRecIDContains() { return IN_Creditor_RecIDContains; } public IN_Creditor_QuantityPriceBreakQuery setInCreditorRecIDContains(String value) { this.IN_Creditor_RecIDContains = value; return this; } public String getInCreditorRecIDLike() { return IN_Creditor_RecIDLike; } public IN_Creditor_QuantityPriceBreakQuery setInCreditorRecIDLike(String value) { this.IN_Creditor_RecIDLike = value; return this; } public ArrayList getInCreditorRecIDBetween() { return IN_Creditor_RecIDBetween; } public IN_Creditor_QuantityPriceBreakQuery setInCreditorRecIDBetween(ArrayList value) { this.IN_Creditor_RecIDBetween = value; return this; } public ArrayList getInCreditorRecIDIn() { return IN_Creditor_RecIDIn; } public IN_Creditor_QuantityPriceBreakQuery setInCreditorRecIDIn(ArrayList value) { this.IN_Creditor_RecIDIn = value; return this; } public String getInventoryID() { return InventoryID; } public IN_Creditor_QuantityPriceBreakQuery setInventoryID(String value) { this.InventoryID = value; return this; } public String getInventoryIDStartsWith() { return InventoryIDStartsWith; } public IN_Creditor_QuantityPriceBreakQuery setInventoryIDStartsWith(String value) { this.InventoryIDStartsWith = value; return this; } public String getInventoryIDEndsWith() { return InventoryIDEndsWith; } public IN_Creditor_QuantityPriceBreakQuery setInventoryIDEndsWith(String value) { this.InventoryIDEndsWith = value; return this; } public String getInventoryIDContains() { return InventoryIDContains; } public IN_Creditor_QuantityPriceBreakQuery setInventoryIDContains(String value) { this.InventoryIDContains = value; return this; } public String getInventoryIDLike() { return InventoryIDLike; } public IN_Creditor_QuantityPriceBreakQuery setInventoryIDLike(String value) { this.InventoryIDLike = value; return this; } public ArrayList getInventoryIDBetween() { return InventoryIDBetween; } public IN_Creditor_QuantityPriceBreakQuery setInventoryIDBetween(ArrayList value) { this.InventoryIDBetween = value; return this; } public ArrayList getInventoryIDIn() { return InventoryIDIn; } public IN_Creditor_QuantityPriceBreakQuery setInventoryIDIn(ArrayList value) { this.InventoryIDIn = value; return this; } public ArrayList getRowHash() { return RowHash; } public IN_Creditor_QuantityPriceBreakQuery setRowHash(ArrayList value) { this.RowHash = value; return this; } public BigDecimal getQuantityBreak() { return QuantityBreak; } public IN_Creditor_QuantityPriceBreakQuery setQuantityBreak(BigDecimal value) { this.QuantityBreak = value; return this; } public BigDecimal getQuantityBreakGreaterThanOrEqualTo() { return QuantityBreakGreaterThanOrEqualTo; } public IN_Creditor_QuantityPriceBreakQuery setQuantityBreakGreaterThanOrEqualTo(BigDecimal value) { this.QuantityBreakGreaterThanOrEqualTo = value; return this; } public BigDecimal getQuantityBreakGreaterThan() { return QuantityBreakGreaterThan; } public IN_Creditor_QuantityPriceBreakQuery setQuantityBreakGreaterThan(BigDecimal value) { this.QuantityBreakGreaterThan = value; return this; } public BigDecimal getQuantityBreakLessThan() { return QuantityBreakLessThan; } public IN_Creditor_QuantityPriceBreakQuery setQuantityBreakLessThan(BigDecimal value) { this.QuantityBreakLessThan = value; return this; } public BigDecimal getQuantityBreakLessThanOrEqualTo() { return QuantityBreakLessThanOrEqualTo; } public IN_Creditor_QuantityPriceBreakQuery setQuantityBreakLessThanOrEqualTo(BigDecimal value) { this.QuantityBreakLessThanOrEqualTo = value; return this; } public BigDecimal getQuantityBreakNotEqualTo() { return QuantityBreakNotEqualTo; } public IN_Creditor_QuantityPriceBreakQuery setQuantityBreakNotEqualTo(BigDecimal value) { this.QuantityBreakNotEqualTo = value; return this; } public ArrayList getQuantityBreakBetween() { return QuantityBreakBetween; } public IN_Creditor_QuantityPriceBreakQuery setQuantityBreakBetween(ArrayList value) { this.QuantityBreakBetween = value; return this; } public ArrayList getQuantityBreakIn() { return QuantityBreakIn; } public IN_Creditor_QuantityPriceBreakQuery setQuantityBreakIn(ArrayList value) { this.QuantityBreakIn = value; return this; } public BigDecimal getPrice() { return Price; } public IN_Creditor_QuantityPriceBreakQuery setPrice(BigDecimal value) { this.Price = value; return this; } public BigDecimal getPriceGreaterThanOrEqualTo() { return PriceGreaterThanOrEqualTo; } public IN_Creditor_QuantityPriceBreakQuery setPriceGreaterThanOrEqualTo(BigDecimal value) { this.PriceGreaterThanOrEqualTo = value; return this; } public BigDecimal getPriceGreaterThan() { return PriceGreaterThan; } public IN_Creditor_QuantityPriceBreakQuery setPriceGreaterThan(BigDecimal value) { this.PriceGreaterThan = value; return this; } public BigDecimal getPriceLessThan() { return PriceLessThan; } public IN_Creditor_QuantityPriceBreakQuery setPriceLessThan(BigDecimal value) { this.PriceLessThan = value; return this; } public BigDecimal getPriceLessThanOrEqualTo() { return PriceLessThanOrEqualTo; } public IN_Creditor_QuantityPriceBreakQuery setPriceLessThanOrEqualTo(BigDecimal value) { this.PriceLessThanOrEqualTo = value; return this; } public BigDecimal getPriceNotEqualTo() { return PriceNotEqualTo; } public IN_Creditor_QuantityPriceBreakQuery setPriceNotEqualTo(BigDecimal value) { this.PriceNotEqualTo = value; return this; } public ArrayList getPriceBetween() { return PriceBetween; } public IN_Creditor_QuantityPriceBreakQuery setPriceBetween(ArrayList value) { this.PriceBetween = value; return this; } public ArrayList getPriceIn() { return PriceIn; } public IN_Creditor_QuantityPriceBreakQuery setPriceIn(ArrayList value) { this.PriceIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class IN_CreditorCustomFieldsQuery extends QueryDb implements IReturn> { public String FieldID = null; public String FieldIDStartsWith = null; public String FieldIDEndsWith = null; public String FieldIDContains = null; public String FieldIDLike = null; public ArrayList FieldIDBetween = null; public ArrayList FieldIDIn = null; public String SettingName = null; public String SettingNameStartsWith = null; public String SettingNameEndsWith = null; public String SettingNameContains = null; public String SettingNameLike = null; public ArrayList SettingNameBetween = null; public ArrayList SettingNameIn = null; public String SettingDescription = null; public String SettingDescriptionStartsWith = null; public String SettingDescriptionEndsWith = null; public String SettingDescriptionContains = null; public String SettingDescriptionLike = null; public ArrayList SettingDescriptionBetween = null; public ArrayList SettingDescriptionIn = null; public Integer CellType = null; public Integer CellTypeGreaterThanOrEqualTo = null; public Integer CellTypeGreaterThan = null; public Integer CellTypeLessThan = null; public Integer CellTypeLessThanOrEqualTo = null; public Integer CellTypeNotEqualTo = null; public ArrayList CellTypeBetween = null; public ArrayList CellTypeIn = null; public String FieldParameter = null; public String FieldParameterStartsWith = null; public String FieldParameterEndsWith = null; public String FieldParameterContains = null; public String FieldParameterLike = null; public ArrayList FieldParameterBetween = null; public ArrayList FieldParameterIn = null; public UUID SY_Plugin_RecID = null; public ArrayList SY_Plugin_RecIDIn = null; public Date LastSavedDateTime = null; public Date LastSavedDateTimeGreaterThanOrEqualTo = null; public Date LastSavedDateTimeGreaterThan = null; public Date LastSavedDateTimeLessThan = null; public Date LastSavedDateTimeLessThanOrEqualTo = null; public Date LastSavedDateTimeNotEqualTo = null; public ArrayList LastSavedDateTimeBetween = null; public ArrayList LastSavedDateTimeIn = null; public Integer DisplayOrder = null; public Integer DisplayOrderGreaterThanOrEqualTo = null; public Integer DisplayOrderGreaterThan = null; public Integer DisplayOrderLessThan = null; public Integer DisplayOrderLessThanOrEqualTo = null; public Integer DisplayOrderNotEqualTo = null; public ArrayList DisplayOrderBetween = null; public ArrayList DisplayOrderIn = null; public String getFieldID() { return FieldID; } public IN_CreditorCustomFieldsQuery setFieldID(String value) { this.FieldID = value; return this; } public String getFieldIDStartsWith() { return FieldIDStartsWith; } public IN_CreditorCustomFieldsQuery setFieldIDStartsWith(String value) { this.FieldIDStartsWith = value; return this; } public String getFieldIDEndsWith() { return FieldIDEndsWith; } public IN_CreditorCustomFieldsQuery setFieldIDEndsWith(String value) { this.FieldIDEndsWith = value; return this; } public String getFieldIDContains() { return FieldIDContains; } public IN_CreditorCustomFieldsQuery setFieldIDContains(String value) { this.FieldIDContains = value; return this; } public String getFieldIDLike() { return FieldIDLike; } public IN_CreditorCustomFieldsQuery setFieldIDLike(String value) { this.FieldIDLike = value; return this; } public ArrayList getFieldIDBetween() { return FieldIDBetween; } public IN_CreditorCustomFieldsQuery setFieldIDBetween(ArrayList value) { this.FieldIDBetween = value; return this; } public ArrayList getFieldIDIn() { return FieldIDIn; } public IN_CreditorCustomFieldsQuery setFieldIDIn(ArrayList value) { this.FieldIDIn = value; return this; } public String getSettingName() { return SettingName; } public IN_CreditorCustomFieldsQuery setSettingName(String value) { this.SettingName = value; return this; } public String getSettingNameStartsWith() { return SettingNameStartsWith; } public IN_CreditorCustomFieldsQuery setSettingNameStartsWith(String value) { this.SettingNameStartsWith = value; return this; } public String getSettingNameEndsWith() { return SettingNameEndsWith; } public IN_CreditorCustomFieldsQuery setSettingNameEndsWith(String value) { this.SettingNameEndsWith = value; return this; } public String getSettingNameContains() { return SettingNameContains; } public IN_CreditorCustomFieldsQuery setSettingNameContains(String value) { this.SettingNameContains = value; return this; } public String getSettingNameLike() { return SettingNameLike; } public IN_CreditorCustomFieldsQuery setSettingNameLike(String value) { this.SettingNameLike = value; return this; } public ArrayList getSettingNameBetween() { return SettingNameBetween; } public IN_CreditorCustomFieldsQuery setSettingNameBetween(ArrayList value) { this.SettingNameBetween = value; return this; } public ArrayList getSettingNameIn() { return SettingNameIn; } public IN_CreditorCustomFieldsQuery setSettingNameIn(ArrayList value) { this.SettingNameIn = value; return this; } public String getSettingDescription() { return SettingDescription; } public IN_CreditorCustomFieldsQuery setSettingDescription(String value) { this.SettingDescription = value; return this; } public String getSettingDescriptionStartsWith() { return SettingDescriptionStartsWith; } public IN_CreditorCustomFieldsQuery setSettingDescriptionStartsWith(String value) { this.SettingDescriptionStartsWith = value; return this; } public String getSettingDescriptionEndsWith() { return SettingDescriptionEndsWith; } public IN_CreditorCustomFieldsQuery setSettingDescriptionEndsWith(String value) { this.SettingDescriptionEndsWith = value; return this; } public String getSettingDescriptionContains() { return SettingDescriptionContains; } public IN_CreditorCustomFieldsQuery setSettingDescriptionContains(String value) { this.SettingDescriptionContains = value; return this; } public String getSettingDescriptionLike() { return SettingDescriptionLike; } public IN_CreditorCustomFieldsQuery setSettingDescriptionLike(String value) { this.SettingDescriptionLike = value; return this; } public ArrayList getSettingDescriptionBetween() { return SettingDescriptionBetween; } public IN_CreditorCustomFieldsQuery setSettingDescriptionBetween(ArrayList value) { this.SettingDescriptionBetween = value; return this; } public ArrayList getSettingDescriptionIn() { return SettingDescriptionIn; } public IN_CreditorCustomFieldsQuery setSettingDescriptionIn(ArrayList value) { this.SettingDescriptionIn = value; return this; } public Integer getCellType() { return CellType; } public IN_CreditorCustomFieldsQuery setCellType(Integer value) { this.CellType = value; return this; } public Integer getCellTypeGreaterThanOrEqualTo() { return CellTypeGreaterThanOrEqualTo; } public IN_CreditorCustomFieldsQuery setCellTypeGreaterThanOrEqualTo(Integer value) { this.CellTypeGreaterThanOrEqualTo = value; return this; } public Integer getCellTypeGreaterThan() { return CellTypeGreaterThan; } public IN_CreditorCustomFieldsQuery setCellTypeGreaterThan(Integer value) { this.CellTypeGreaterThan = value; return this; } public Integer getCellTypeLessThan() { return CellTypeLessThan; } public IN_CreditorCustomFieldsQuery setCellTypeLessThan(Integer value) { this.CellTypeLessThan = value; return this; } public Integer getCellTypeLessThanOrEqualTo() { return CellTypeLessThanOrEqualTo; } public IN_CreditorCustomFieldsQuery setCellTypeLessThanOrEqualTo(Integer value) { this.CellTypeLessThanOrEqualTo = value; return this; } public Integer getCellTypeNotEqualTo() { return CellTypeNotEqualTo; } public IN_CreditorCustomFieldsQuery setCellTypeNotEqualTo(Integer value) { this.CellTypeNotEqualTo = value; return this; } public ArrayList getCellTypeBetween() { return CellTypeBetween; } public IN_CreditorCustomFieldsQuery setCellTypeBetween(ArrayList value) { this.CellTypeBetween = value; return this; } public ArrayList getCellTypeIn() { return CellTypeIn; } public IN_CreditorCustomFieldsQuery setCellTypeIn(ArrayList value) { this.CellTypeIn = value; return this; } public String getFieldParameter() { return FieldParameter; } public IN_CreditorCustomFieldsQuery setFieldParameter(String value) { this.FieldParameter = value; return this; } public String getFieldParameterStartsWith() { return FieldParameterStartsWith; } public IN_CreditorCustomFieldsQuery setFieldParameterStartsWith(String value) { this.FieldParameterStartsWith = value; return this; } public String getFieldParameterEndsWith() { return FieldParameterEndsWith; } public IN_CreditorCustomFieldsQuery setFieldParameterEndsWith(String value) { this.FieldParameterEndsWith = value; return this; } public String getFieldParameterContains() { return FieldParameterContains; } public IN_CreditorCustomFieldsQuery setFieldParameterContains(String value) { this.FieldParameterContains = value; return this; } public String getFieldParameterLike() { return FieldParameterLike; } public IN_CreditorCustomFieldsQuery setFieldParameterLike(String value) { this.FieldParameterLike = value; return this; } public ArrayList getFieldParameterBetween() { return FieldParameterBetween; } public IN_CreditorCustomFieldsQuery setFieldParameterBetween(ArrayList value) { this.FieldParameterBetween = value; return this; } public ArrayList getFieldParameterIn() { return FieldParameterIn; } public IN_CreditorCustomFieldsQuery setFieldParameterIn(ArrayList value) { this.FieldParameterIn = value; return this; } public UUID getSyPluginRecID() { return SY_Plugin_RecID; } public IN_CreditorCustomFieldsQuery setSyPluginRecID(UUID value) { this.SY_Plugin_RecID = value; return this; } public ArrayList getSyPluginRecIDIn() { return SY_Plugin_RecIDIn; } public IN_CreditorCustomFieldsQuery setSyPluginRecIDIn(ArrayList value) { this.SY_Plugin_RecIDIn = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public IN_CreditorCustomFieldsQuery setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getLastSavedDateTimeGreaterThanOrEqualTo() { return LastSavedDateTimeGreaterThanOrEqualTo; } public IN_CreditorCustomFieldsQuery setLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.LastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeGreaterThan() { return LastSavedDateTimeGreaterThan; } public IN_CreditorCustomFieldsQuery setLastSavedDateTimeGreaterThan(Date value) { this.LastSavedDateTimeGreaterThan = value; return this; } public Date getLastSavedDateTimeLessThan() { return LastSavedDateTimeLessThan; } public IN_CreditorCustomFieldsQuery setLastSavedDateTimeLessThan(Date value) { this.LastSavedDateTimeLessThan = value; return this; } public Date getLastSavedDateTimeLessThanOrEqualTo() { return LastSavedDateTimeLessThanOrEqualTo; } public IN_CreditorCustomFieldsQuery setLastSavedDateTimeLessThanOrEqualTo(Date value) { this.LastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeNotEqualTo() { return LastSavedDateTimeNotEqualTo; } public IN_CreditorCustomFieldsQuery setLastSavedDateTimeNotEqualTo(Date value) { this.LastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getLastSavedDateTimeBetween() { return LastSavedDateTimeBetween; } public IN_CreditorCustomFieldsQuery setLastSavedDateTimeBetween(ArrayList value) { this.LastSavedDateTimeBetween = value; return this; } public ArrayList getLastSavedDateTimeIn() { return LastSavedDateTimeIn; } public IN_CreditorCustomFieldsQuery setLastSavedDateTimeIn(ArrayList value) { this.LastSavedDateTimeIn = value; return this; } public Integer getDisplayOrder() { return DisplayOrder; } public IN_CreditorCustomFieldsQuery setDisplayOrder(Integer value) { this.DisplayOrder = value; return this; } public Integer getDisplayOrderGreaterThanOrEqualTo() { return DisplayOrderGreaterThanOrEqualTo; } public IN_CreditorCustomFieldsQuery setDisplayOrderGreaterThanOrEqualTo(Integer value) { this.DisplayOrderGreaterThanOrEqualTo = value; return this; } public Integer getDisplayOrderGreaterThan() { return DisplayOrderGreaterThan; } public IN_CreditorCustomFieldsQuery setDisplayOrderGreaterThan(Integer value) { this.DisplayOrderGreaterThan = value; return this; } public Integer getDisplayOrderLessThan() { return DisplayOrderLessThan; } public IN_CreditorCustomFieldsQuery setDisplayOrderLessThan(Integer value) { this.DisplayOrderLessThan = value; return this; } public Integer getDisplayOrderLessThanOrEqualTo() { return DisplayOrderLessThanOrEqualTo; } public IN_CreditorCustomFieldsQuery setDisplayOrderLessThanOrEqualTo(Integer value) { this.DisplayOrderLessThanOrEqualTo = value; return this; } public Integer getDisplayOrderNotEqualTo() { return DisplayOrderNotEqualTo; } public IN_CreditorCustomFieldsQuery setDisplayOrderNotEqualTo(Integer value) { this.DisplayOrderNotEqualTo = value; return this; } public ArrayList getDisplayOrderBetween() { return DisplayOrderBetween; } public IN_CreditorCustomFieldsQuery setDisplayOrderBetween(ArrayList value) { this.DisplayOrderBetween = value; return this; } public ArrayList getDisplayOrderIn() { return DisplayOrderIn; } public IN_CreditorCustomFieldsQuery setDisplayOrderIn(ArrayList value) { this.DisplayOrderIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class IN_CreditorCustomValuesQuery extends QueryDb implements IReturn> { public String RecID = null; public String RecIDStartsWith = null; public String RecIDEndsWith = null; public String RecIDContains = null; public String RecIDLike = null; public ArrayList RecIDBetween = null; public ArrayList RecIDIn = null; public String InvSuppID = null; public String InvSuppIDStartsWith = null; public String InvSuppIDEndsWith = null; public String InvSuppIDContains = null; public String InvSuppIDLike = null; public ArrayList InvSuppIDBetween = null; public ArrayList InvSuppIDIn = null; public String FieldID = null; public String FieldIDStartsWith = null; public String FieldIDEndsWith = null; public String FieldIDContains = null; public String FieldIDLike = null; public ArrayList FieldIDBetween = null; public ArrayList FieldIDIn = null; public String Contents = null; public String ContentsStartsWith = null; public String ContentsEndsWith = null; public String ContentsContains = null; public String ContentsLike = null; public ArrayList ContentsBetween = null; public ArrayList ContentsIn = null; public Date LastSavedDateTime = null; public Date LastSavedDateTimeGreaterThanOrEqualTo = null; public Date LastSavedDateTimeGreaterThan = null; public Date LastSavedDateTimeLessThan = null; public Date LastSavedDateTimeLessThanOrEqualTo = null; public Date LastSavedDateTimeNotEqualTo = null; public ArrayList LastSavedDateTimeBetween = null; public ArrayList LastSavedDateTimeIn = null; public String getRecID() { return RecID; } public IN_CreditorCustomValuesQuery setRecID(String value) { this.RecID = value; return this; } public String getRecIDStartsWith() { return RecIDStartsWith; } public IN_CreditorCustomValuesQuery setRecIDStartsWith(String value) { this.RecIDStartsWith = value; return this; } public String getRecIDEndsWith() { return RecIDEndsWith; } public IN_CreditorCustomValuesQuery setRecIDEndsWith(String value) { this.RecIDEndsWith = value; return this; } public String getRecIDContains() { return RecIDContains; } public IN_CreditorCustomValuesQuery setRecIDContains(String value) { this.RecIDContains = value; return this; } public String getRecIDLike() { return RecIDLike; } public IN_CreditorCustomValuesQuery setRecIDLike(String value) { this.RecIDLike = value; return this; } public ArrayList getRecIDBetween() { return RecIDBetween; } public IN_CreditorCustomValuesQuery setRecIDBetween(ArrayList value) { this.RecIDBetween = value; return this; } public ArrayList getRecIDIn() { return RecIDIn; } public IN_CreditorCustomValuesQuery setRecIDIn(ArrayList value) { this.RecIDIn = value; return this; } public String getInvSuppID() { return InvSuppID; } public IN_CreditorCustomValuesQuery setInvSuppID(String value) { this.InvSuppID = value; return this; } public String getInvSuppIDStartsWith() { return InvSuppIDStartsWith; } public IN_CreditorCustomValuesQuery setInvSuppIDStartsWith(String value) { this.InvSuppIDStartsWith = value; return this; } public String getInvSuppIDEndsWith() { return InvSuppIDEndsWith; } public IN_CreditorCustomValuesQuery setInvSuppIDEndsWith(String value) { this.InvSuppIDEndsWith = value; return this; } public String getInvSuppIDContains() { return InvSuppIDContains; } public IN_CreditorCustomValuesQuery setInvSuppIDContains(String value) { this.InvSuppIDContains = value; return this; } public String getInvSuppIDLike() { return InvSuppIDLike; } public IN_CreditorCustomValuesQuery setInvSuppIDLike(String value) { this.InvSuppIDLike = value; return this; } public ArrayList getInvSuppIDBetween() { return InvSuppIDBetween; } public IN_CreditorCustomValuesQuery setInvSuppIDBetween(ArrayList value) { this.InvSuppIDBetween = value; return this; } public ArrayList getInvSuppIDIn() { return InvSuppIDIn; } public IN_CreditorCustomValuesQuery setInvSuppIDIn(ArrayList value) { this.InvSuppIDIn = value; return this; } public String getFieldID() { return FieldID; } public IN_CreditorCustomValuesQuery setFieldID(String value) { this.FieldID = value; return this; } public String getFieldIDStartsWith() { return FieldIDStartsWith; } public IN_CreditorCustomValuesQuery setFieldIDStartsWith(String value) { this.FieldIDStartsWith = value; return this; } public String getFieldIDEndsWith() { return FieldIDEndsWith; } public IN_CreditorCustomValuesQuery setFieldIDEndsWith(String value) { this.FieldIDEndsWith = value; return this; } public String getFieldIDContains() { return FieldIDContains; } public IN_CreditorCustomValuesQuery setFieldIDContains(String value) { this.FieldIDContains = value; return this; } public String getFieldIDLike() { return FieldIDLike; } public IN_CreditorCustomValuesQuery setFieldIDLike(String value) { this.FieldIDLike = value; return this; } public ArrayList getFieldIDBetween() { return FieldIDBetween; } public IN_CreditorCustomValuesQuery setFieldIDBetween(ArrayList value) { this.FieldIDBetween = value; return this; } public ArrayList getFieldIDIn() { return FieldIDIn; } public IN_CreditorCustomValuesQuery setFieldIDIn(ArrayList value) { this.FieldIDIn = value; return this; } public String getContents() { return Contents; } public IN_CreditorCustomValuesQuery setContents(String value) { this.Contents = value; return this; } public String getContentsStartsWith() { return ContentsStartsWith; } public IN_CreditorCustomValuesQuery setContentsStartsWith(String value) { this.ContentsStartsWith = value; return this; } public String getContentsEndsWith() { return ContentsEndsWith; } public IN_CreditorCustomValuesQuery setContentsEndsWith(String value) { this.ContentsEndsWith = value; return this; } public String getContentsContains() { return ContentsContains; } public IN_CreditorCustomValuesQuery setContentsContains(String value) { this.ContentsContains = value; return this; } public String getContentsLike() { return ContentsLike; } public IN_CreditorCustomValuesQuery setContentsLike(String value) { this.ContentsLike = value; return this; } public ArrayList getContentsBetween() { return ContentsBetween; } public IN_CreditorCustomValuesQuery setContentsBetween(ArrayList value) { this.ContentsBetween = value; return this; } public ArrayList getContentsIn() { return ContentsIn; } public IN_CreditorCustomValuesQuery setContentsIn(ArrayList value) { this.ContentsIn = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public IN_CreditorCustomValuesQuery setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getLastSavedDateTimeGreaterThanOrEqualTo() { return LastSavedDateTimeGreaterThanOrEqualTo; } public IN_CreditorCustomValuesQuery setLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.LastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeGreaterThan() { return LastSavedDateTimeGreaterThan; } public IN_CreditorCustomValuesQuery setLastSavedDateTimeGreaterThan(Date value) { this.LastSavedDateTimeGreaterThan = value; return this; } public Date getLastSavedDateTimeLessThan() { return LastSavedDateTimeLessThan; } public IN_CreditorCustomValuesQuery setLastSavedDateTimeLessThan(Date value) { this.LastSavedDateTimeLessThan = value; return this; } public Date getLastSavedDateTimeLessThanOrEqualTo() { return LastSavedDateTimeLessThanOrEqualTo; } public IN_CreditorCustomValuesQuery setLastSavedDateTimeLessThanOrEqualTo(Date value) { this.LastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeNotEqualTo() { return LastSavedDateTimeNotEqualTo; } public IN_CreditorCustomValuesQuery setLastSavedDateTimeNotEqualTo(Date value) { this.LastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getLastSavedDateTimeBetween() { return LastSavedDateTimeBetween; } public IN_CreditorCustomValuesQuery setLastSavedDateTimeBetween(ArrayList value) { this.LastSavedDateTimeBetween = value; return this; } public ArrayList getLastSavedDateTimeIn() { return LastSavedDateTimeIn; } public IN_CreditorCustomValuesQuery setLastSavedDateTimeIn(ArrayList value) { this.LastSavedDateTimeIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class IN_CustomSettingQuery extends QueryDb implements IReturn> { public String SettingID = null; public String SettingIDStartsWith = null; public String SettingIDEndsWith = null; public String SettingIDContains = null; public String SettingIDLike = null; public ArrayList SettingIDBetween = null; public ArrayList SettingIDIn = null; public Date LastSavedDateTime = null; public Date LastSavedDateTimeGreaterThanOrEqualTo = null; public Date LastSavedDateTimeGreaterThan = null; public Date LastSavedDateTimeLessThan = null; public Date LastSavedDateTimeLessThanOrEqualTo = null; public Date LastSavedDateTimeNotEqualTo = null; public ArrayList LastSavedDateTimeBetween = null; public ArrayList LastSavedDateTimeIn = null; public String SettingDescription = null; public String SettingDescriptionStartsWith = null; public String SettingDescriptionEndsWith = null; public String SettingDescriptionContains = null; public String SettingDescriptionLike = null; public ArrayList SettingDescriptionBetween = null; public ArrayList SettingDescriptionIn = null; public String SettingName = null; public String SettingNameStartsWith = null; public String SettingNameEndsWith = null; public String SettingNameContains = null; public String SettingNameLike = null; public ArrayList SettingNameBetween = null; public ArrayList SettingNameIn = null; public BigDecimal DisplayOrder = null; public BigDecimal DisplayOrderGreaterThanOrEqualTo = null; public BigDecimal DisplayOrderGreaterThan = null; public BigDecimal DisplayOrderLessThan = null; public BigDecimal DisplayOrderLessThanOrEqualTo = null; public BigDecimal DisplayOrderNotEqualTo = null; public ArrayList DisplayOrderBetween = null; public ArrayList DisplayOrderIn = null; public Short CellType = null; public Short CellTypeGreaterThanOrEqualTo = null; public Short CellTypeGreaterThan = null; public Short CellTypeLessThan = null; public Short CellTypeLessThanOrEqualTo = null; public Short CellTypeNotEqualTo = null; public ArrayList CellTypeBetween = null; public ArrayList CellTypeIn = null; public String ScriptFormatCell = null; public String ScriptFormatCellStartsWith = null; public String ScriptFormatCellEndsWith = null; public String ScriptFormatCellContains = null; public String ScriptFormatCellLike = null; public ArrayList ScriptFormatCellBetween = null; public ArrayList ScriptFormatCellIn = null; public String ScriptButtonClicked = null; public String ScriptButtonClickedStartsWith = null; public String ScriptButtonClickedEndsWith = null; public String ScriptButtonClickedContains = null; public String ScriptButtonClickedLike = null; public ArrayList ScriptButtonClickedBetween = null; public ArrayList ScriptButtonClickedIn = null; public String ScriptReadData = null; public String ScriptReadDataStartsWith = null; public String ScriptReadDataEndsWith = null; public String ScriptReadDataContains = null; public String ScriptReadDataLike = null; public ArrayList ScriptReadDataBetween = null; public ArrayList ScriptReadDataIn = null; public UUID SY_Plugin_RecID = null; public ArrayList SY_Plugin_RecIDIn = null; public String getSettingID() { return SettingID; } public IN_CustomSettingQuery setSettingID(String value) { this.SettingID = value; return this; } public String getSettingIDStartsWith() { return SettingIDStartsWith; } public IN_CustomSettingQuery setSettingIDStartsWith(String value) { this.SettingIDStartsWith = value; return this; } public String getSettingIDEndsWith() { return SettingIDEndsWith; } public IN_CustomSettingQuery setSettingIDEndsWith(String value) { this.SettingIDEndsWith = value; return this; } public String getSettingIDContains() { return SettingIDContains; } public IN_CustomSettingQuery setSettingIDContains(String value) { this.SettingIDContains = value; return this; } public String getSettingIDLike() { return SettingIDLike; } public IN_CustomSettingQuery setSettingIDLike(String value) { this.SettingIDLike = value; return this; } public ArrayList getSettingIDBetween() { return SettingIDBetween; } public IN_CustomSettingQuery setSettingIDBetween(ArrayList value) { this.SettingIDBetween = value; return this; } public ArrayList getSettingIDIn() { return SettingIDIn; } public IN_CustomSettingQuery setSettingIDIn(ArrayList value) { this.SettingIDIn = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public IN_CustomSettingQuery setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getLastSavedDateTimeGreaterThanOrEqualTo() { return LastSavedDateTimeGreaterThanOrEqualTo; } public IN_CustomSettingQuery setLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.LastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeGreaterThan() { return LastSavedDateTimeGreaterThan; } public IN_CustomSettingQuery setLastSavedDateTimeGreaterThan(Date value) { this.LastSavedDateTimeGreaterThan = value; return this; } public Date getLastSavedDateTimeLessThan() { return LastSavedDateTimeLessThan; } public IN_CustomSettingQuery setLastSavedDateTimeLessThan(Date value) { this.LastSavedDateTimeLessThan = value; return this; } public Date getLastSavedDateTimeLessThanOrEqualTo() { return LastSavedDateTimeLessThanOrEqualTo; } public IN_CustomSettingQuery setLastSavedDateTimeLessThanOrEqualTo(Date value) { this.LastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeNotEqualTo() { return LastSavedDateTimeNotEqualTo; } public IN_CustomSettingQuery setLastSavedDateTimeNotEqualTo(Date value) { this.LastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getLastSavedDateTimeBetween() { return LastSavedDateTimeBetween; } public IN_CustomSettingQuery setLastSavedDateTimeBetween(ArrayList value) { this.LastSavedDateTimeBetween = value; return this; } public ArrayList getLastSavedDateTimeIn() { return LastSavedDateTimeIn; } public IN_CustomSettingQuery setLastSavedDateTimeIn(ArrayList value) { this.LastSavedDateTimeIn = value; return this; } public String getSettingDescription() { return SettingDescription; } public IN_CustomSettingQuery setSettingDescription(String value) { this.SettingDescription = value; return this; } public String getSettingDescriptionStartsWith() { return SettingDescriptionStartsWith; } public IN_CustomSettingQuery setSettingDescriptionStartsWith(String value) { this.SettingDescriptionStartsWith = value; return this; } public String getSettingDescriptionEndsWith() { return SettingDescriptionEndsWith; } public IN_CustomSettingQuery setSettingDescriptionEndsWith(String value) { this.SettingDescriptionEndsWith = value; return this; } public String getSettingDescriptionContains() { return SettingDescriptionContains; } public IN_CustomSettingQuery setSettingDescriptionContains(String value) { this.SettingDescriptionContains = value; return this; } public String getSettingDescriptionLike() { return SettingDescriptionLike; } public IN_CustomSettingQuery setSettingDescriptionLike(String value) { this.SettingDescriptionLike = value; return this; } public ArrayList getSettingDescriptionBetween() { return SettingDescriptionBetween; } public IN_CustomSettingQuery setSettingDescriptionBetween(ArrayList value) { this.SettingDescriptionBetween = value; return this; } public ArrayList getSettingDescriptionIn() { return SettingDescriptionIn; } public IN_CustomSettingQuery setSettingDescriptionIn(ArrayList value) { this.SettingDescriptionIn = value; return this; } public String getSettingName() { return SettingName; } public IN_CustomSettingQuery setSettingName(String value) { this.SettingName = value; return this; } public String getSettingNameStartsWith() { return SettingNameStartsWith; } public IN_CustomSettingQuery setSettingNameStartsWith(String value) { this.SettingNameStartsWith = value; return this; } public String getSettingNameEndsWith() { return SettingNameEndsWith; } public IN_CustomSettingQuery setSettingNameEndsWith(String value) { this.SettingNameEndsWith = value; return this; } public String getSettingNameContains() { return SettingNameContains; } public IN_CustomSettingQuery setSettingNameContains(String value) { this.SettingNameContains = value; return this; } public String getSettingNameLike() { return SettingNameLike; } public IN_CustomSettingQuery setSettingNameLike(String value) { this.SettingNameLike = value; return this; } public ArrayList getSettingNameBetween() { return SettingNameBetween; } public IN_CustomSettingQuery setSettingNameBetween(ArrayList value) { this.SettingNameBetween = value; return this; } public ArrayList getSettingNameIn() { return SettingNameIn; } public IN_CustomSettingQuery setSettingNameIn(ArrayList value) { this.SettingNameIn = value; return this; } public BigDecimal getDisplayOrder() { return DisplayOrder; } public IN_CustomSettingQuery setDisplayOrder(BigDecimal value) { this.DisplayOrder = value; return this; } public BigDecimal getDisplayOrderGreaterThanOrEqualTo() { return DisplayOrderGreaterThanOrEqualTo; } public IN_CustomSettingQuery setDisplayOrderGreaterThanOrEqualTo(BigDecimal value) { this.DisplayOrderGreaterThanOrEqualTo = value; return this; } public BigDecimal getDisplayOrderGreaterThan() { return DisplayOrderGreaterThan; } public IN_CustomSettingQuery setDisplayOrderGreaterThan(BigDecimal value) { this.DisplayOrderGreaterThan = value; return this; } public BigDecimal getDisplayOrderLessThan() { return DisplayOrderLessThan; } public IN_CustomSettingQuery setDisplayOrderLessThan(BigDecimal value) { this.DisplayOrderLessThan = value; return this; } public BigDecimal getDisplayOrderLessThanOrEqualTo() { return DisplayOrderLessThanOrEqualTo; } public IN_CustomSettingQuery setDisplayOrderLessThanOrEqualTo(BigDecimal value) { this.DisplayOrderLessThanOrEqualTo = value; return this; } public BigDecimal getDisplayOrderNotEqualTo() { return DisplayOrderNotEqualTo; } public IN_CustomSettingQuery setDisplayOrderNotEqualTo(BigDecimal value) { this.DisplayOrderNotEqualTo = value; return this; } public ArrayList getDisplayOrderBetween() { return DisplayOrderBetween; } public IN_CustomSettingQuery setDisplayOrderBetween(ArrayList value) { this.DisplayOrderBetween = value; return this; } public ArrayList getDisplayOrderIn() { return DisplayOrderIn; } public IN_CustomSettingQuery setDisplayOrderIn(ArrayList value) { this.DisplayOrderIn = value; return this; } public Short getCellType() { return CellType; } public IN_CustomSettingQuery setCellType(Short value) { this.CellType = value; return this; } public Short getCellTypeGreaterThanOrEqualTo() { return CellTypeGreaterThanOrEqualTo; } public IN_CustomSettingQuery setCellTypeGreaterThanOrEqualTo(Short value) { this.CellTypeGreaterThanOrEqualTo = value; return this; } public Short getCellTypeGreaterThan() { return CellTypeGreaterThan; } public IN_CustomSettingQuery setCellTypeGreaterThan(Short value) { this.CellTypeGreaterThan = value; return this; } public Short getCellTypeLessThan() { return CellTypeLessThan; } public IN_CustomSettingQuery setCellTypeLessThan(Short value) { this.CellTypeLessThan = value; return this; } public Short getCellTypeLessThanOrEqualTo() { return CellTypeLessThanOrEqualTo; } public IN_CustomSettingQuery setCellTypeLessThanOrEqualTo(Short value) { this.CellTypeLessThanOrEqualTo = value; return this; } public Short getCellTypeNotEqualTo() { return CellTypeNotEqualTo; } public IN_CustomSettingQuery setCellTypeNotEqualTo(Short value) { this.CellTypeNotEqualTo = value; return this; } public ArrayList getCellTypeBetween() { return CellTypeBetween; } public IN_CustomSettingQuery setCellTypeBetween(ArrayList value) { this.CellTypeBetween = value; return this; } public ArrayList getCellTypeIn() { return CellTypeIn; } public IN_CustomSettingQuery setCellTypeIn(ArrayList value) { this.CellTypeIn = value; return this; } public String getScriptFormatCell() { return ScriptFormatCell; } public IN_CustomSettingQuery setScriptFormatCell(String value) { this.ScriptFormatCell = value; return this; } public String getScriptFormatCellStartsWith() { return ScriptFormatCellStartsWith; } public IN_CustomSettingQuery setScriptFormatCellStartsWith(String value) { this.ScriptFormatCellStartsWith = value; return this; } public String getScriptFormatCellEndsWith() { return ScriptFormatCellEndsWith; } public IN_CustomSettingQuery setScriptFormatCellEndsWith(String value) { this.ScriptFormatCellEndsWith = value; return this; } public String getScriptFormatCellContains() { return ScriptFormatCellContains; } public IN_CustomSettingQuery setScriptFormatCellContains(String value) { this.ScriptFormatCellContains = value; return this; } public String getScriptFormatCellLike() { return ScriptFormatCellLike; } public IN_CustomSettingQuery setScriptFormatCellLike(String value) { this.ScriptFormatCellLike = value; return this; } public ArrayList getScriptFormatCellBetween() { return ScriptFormatCellBetween; } public IN_CustomSettingQuery setScriptFormatCellBetween(ArrayList value) { this.ScriptFormatCellBetween = value; return this; } public ArrayList getScriptFormatCellIn() { return ScriptFormatCellIn; } public IN_CustomSettingQuery setScriptFormatCellIn(ArrayList value) { this.ScriptFormatCellIn = value; return this; } public String getScriptButtonClicked() { return ScriptButtonClicked; } public IN_CustomSettingQuery setScriptButtonClicked(String value) { this.ScriptButtonClicked = value; return this; } public String getScriptButtonClickedStartsWith() { return ScriptButtonClickedStartsWith; } public IN_CustomSettingQuery setScriptButtonClickedStartsWith(String value) { this.ScriptButtonClickedStartsWith = value; return this; } public String getScriptButtonClickedEndsWith() { return ScriptButtonClickedEndsWith; } public IN_CustomSettingQuery setScriptButtonClickedEndsWith(String value) { this.ScriptButtonClickedEndsWith = value; return this; } public String getScriptButtonClickedContains() { return ScriptButtonClickedContains; } public IN_CustomSettingQuery setScriptButtonClickedContains(String value) { this.ScriptButtonClickedContains = value; return this; } public String getScriptButtonClickedLike() { return ScriptButtonClickedLike; } public IN_CustomSettingQuery setScriptButtonClickedLike(String value) { this.ScriptButtonClickedLike = value; return this; } public ArrayList getScriptButtonClickedBetween() { return ScriptButtonClickedBetween; } public IN_CustomSettingQuery setScriptButtonClickedBetween(ArrayList value) { this.ScriptButtonClickedBetween = value; return this; } public ArrayList getScriptButtonClickedIn() { return ScriptButtonClickedIn; } public IN_CustomSettingQuery setScriptButtonClickedIn(ArrayList value) { this.ScriptButtonClickedIn = value; return this; } public String getScriptReadData() { return ScriptReadData; } public IN_CustomSettingQuery setScriptReadData(String value) { this.ScriptReadData = value; return this; } public String getScriptReadDataStartsWith() { return ScriptReadDataStartsWith; } public IN_CustomSettingQuery setScriptReadDataStartsWith(String value) { this.ScriptReadDataStartsWith = value; return this; } public String getScriptReadDataEndsWith() { return ScriptReadDataEndsWith; } public IN_CustomSettingQuery setScriptReadDataEndsWith(String value) { this.ScriptReadDataEndsWith = value; return this; } public String getScriptReadDataContains() { return ScriptReadDataContains; } public IN_CustomSettingQuery setScriptReadDataContains(String value) { this.ScriptReadDataContains = value; return this; } public String getScriptReadDataLike() { return ScriptReadDataLike; } public IN_CustomSettingQuery setScriptReadDataLike(String value) { this.ScriptReadDataLike = value; return this; } public ArrayList getScriptReadDataBetween() { return ScriptReadDataBetween; } public IN_CustomSettingQuery setScriptReadDataBetween(ArrayList value) { this.ScriptReadDataBetween = value; return this; } public ArrayList getScriptReadDataIn() { return ScriptReadDataIn; } public IN_CustomSettingQuery setScriptReadDataIn(ArrayList value) { this.ScriptReadDataIn = value; return this; } public UUID getSyPluginRecID() { return SY_Plugin_RecID; } public IN_CustomSettingQuery setSyPluginRecID(UUID value) { this.SY_Plugin_RecID = value; return this; } public ArrayList getSyPluginRecIDIn() { return SY_Plugin_RecIDIn; } public IN_CustomSettingQuery setSyPluginRecIDIn(ArrayList value) { this.SY_Plugin_RecIDIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class IN_CustomSettingValuesQuery extends QueryDb implements IReturn> { public String SettingValueID = null; public String SettingValueIDStartsWith = null; public String SettingValueIDEndsWith = null; public String SettingValueIDContains = null; public String SettingValueIDLike = null; public ArrayList SettingValueIDBetween = null; public ArrayList SettingValueIDIn = null; public String SettingID = null; public String SettingIDStartsWith = null; public String SettingIDEndsWith = null; public String SettingIDContains = null; public String SettingIDLike = null; public ArrayList SettingIDBetween = null; public ArrayList SettingIDIn = null; public String InventoryID = null; public String InventoryIDStartsWith = null; public String InventoryIDEndsWith = null; public String InventoryIDContains = null; public String InventoryIDLike = null; public ArrayList InventoryIDBetween = null; public ArrayList InventoryIDIn = null; public String Contents = null; public String ContentsStartsWith = null; public String ContentsEndsWith = null; public String ContentsContains = null; public String ContentsLike = null; public ArrayList ContentsBetween = null; public ArrayList ContentsIn = null; public Date LastSavedDateTime = null; public Date LastSavedDateTimeGreaterThanOrEqualTo = null; public Date LastSavedDateTimeGreaterThan = null; public Date LastSavedDateTimeLessThan = null; public Date LastSavedDateTimeLessThanOrEqualTo = null; public Date LastSavedDateTimeNotEqualTo = null; public ArrayList LastSavedDateTimeBetween = null; public ArrayList LastSavedDateTimeIn = null; public String getSettingValueID() { return SettingValueID; } public IN_CustomSettingValuesQuery setSettingValueID(String value) { this.SettingValueID = value; return this; } public String getSettingValueIDStartsWith() { return SettingValueIDStartsWith; } public IN_CustomSettingValuesQuery setSettingValueIDStartsWith(String value) { this.SettingValueIDStartsWith = value; return this; } public String getSettingValueIDEndsWith() { return SettingValueIDEndsWith; } public IN_CustomSettingValuesQuery setSettingValueIDEndsWith(String value) { this.SettingValueIDEndsWith = value; return this; } public String getSettingValueIDContains() { return SettingValueIDContains; } public IN_CustomSettingValuesQuery setSettingValueIDContains(String value) { this.SettingValueIDContains = value; return this; } public String getSettingValueIDLike() { return SettingValueIDLike; } public IN_CustomSettingValuesQuery setSettingValueIDLike(String value) { this.SettingValueIDLike = value; return this; } public ArrayList getSettingValueIDBetween() { return SettingValueIDBetween; } public IN_CustomSettingValuesQuery setSettingValueIDBetween(ArrayList value) { this.SettingValueIDBetween = value; return this; } public ArrayList getSettingValueIDIn() { return SettingValueIDIn; } public IN_CustomSettingValuesQuery setSettingValueIDIn(ArrayList value) { this.SettingValueIDIn = value; return this; } public String getSettingID() { return SettingID; } public IN_CustomSettingValuesQuery setSettingID(String value) { this.SettingID = value; return this; } public String getSettingIDStartsWith() { return SettingIDStartsWith; } public IN_CustomSettingValuesQuery setSettingIDStartsWith(String value) { this.SettingIDStartsWith = value; return this; } public String getSettingIDEndsWith() { return SettingIDEndsWith; } public IN_CustomSettingValuesQuery setSettingIDEndsWith(String value) { this.SettingIDEndsWith = value; return this; } public String getSettingIDContains() { return SettingIDContains; } public IN_CustomSettingValuesQuery setSettingIDContains(String value) { this.SettingIDContains = value; return this; } public String getSettingIDLike() { return SettingIDLike; } public IN_CustomSettingValuesQuery setSettingIDLike(String value) { this.SettingIDLike = value; return this; } public ArrayList getSettingIDBetween() { return SettingIDBetween; } public IN_CustomSettingValuesQuery setSettingIDBetween(ArrayList value) { this.SettingIDBetween = value; return this; } public ArrayList getSettingIDIn() { return SettingIDIn; } public IN_CustomSettingValuesQuery setSettingIDIn(ArrayList value) { this.SettingIDIn = value; return this; } public String getInventoryID() { return InventoryID; } public IN_CustomSettingValuesQuery setInventoryID(String value) { this.InventoryID = value; return this; } public String getInventoryIDStartsWith() { return InventoryIDStartsWith; } public IN_CustomSettingValuesQuery setInventoryIDStartsWith(String value) { this.InventoryIDStartsWith = value; return this; } public String getInventoryIDEndsWith() { return InventoryIDEndsWith; } public IN_CustomSettingValuesQuery setInventoryIDEndsWith(String value) { this.InventoryIDEndsWith = value; return this; } public String getInventoryIDContains() { return InventoryIDContains; } public IN_CustomSettingValuesQuery setInventoryIDContains(String value) { this.InventoryIDContains = value; return this; } public String getInventoryIDLike() { return InventoryIDLike; } public IN_CustomSettingValuesQuery setInventoryIDLike(String value) { this.InventoryIDLike = value; return this; } public ArrayList getInventoryIDBetween() { return InventoryIDBetween; } public IN_CustomSettingValuesQuery setInventoryIDBetween(ArrayList value) { this.InventoryIDBetween = value; return this; } public ArrayList getInventoryIDIn() { return InventoryIDIn; } public IN_CustomSettingValuesQuery setInventoryIDIn(ArrayList value) { this.InventoryIDIn = value; return this; } public String getContents() { return Contents; } public IN_CustomSettingValuesQuery setContents(String value) { this.Contents = value; return this; } public String getContentsStartsWith() { return ContentsStartsWith; } public IN_CustomSettingValuesQuery setContentsStartsWith(String value) { this.ContentsStartsWith = value; return this; } public String getContentsEndsWith() { return ContentsEndsWith; } public IN_CustomSettingValuesQuery setContentsEndsWith(String value) { this.ContentsEndsWith = value; return this; } public String getContentsContains() { return ContentsContains; } public IN_CustomSettingValuesQuery setContentsContains(String value) { this.ContentsContains = value; return this; } public String getContentsLike() { return ContentsLike; } public IN_CustomSettingValuesQuery setContentsLike(String value) { this.ContentsLike = value; return this; } public ArrayList getContentsBetween() { return ContentsBetween; } public IN_CustomSettingValuesQuery setContentsBetween(ArrayList value) { this.ContentsBetween = value; return this; } public ArrayList getContentsIn() { return ContentsIn; } public IN_CustomSettingValuesQuery setContentsIn(ArrayList value) { this.ContentsIn = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public IN_CustomSettingValuesQuery setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getLastSavedDateTimeGreaterThanOrEqualTo() { return LastSavedDateTimeGreaterThanOrEqualTo; } public IN_CustomSettingValuesQuery setLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.LastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeGreaterThan() { return LastSavedDateTimeGreaterThan; } public IN_CustomSettingValuesQuery setLastSavedDateTimeGreaterThan(Date value) { this.LastSavedDateTimeGreaterThan = value; return this; } public Date getLastSavedDateTimeLessThan() { return LastSavedDateTimeLessThan; } public IN_CustomSettingValuesQuery setLastSavedDateTimeLessThan(Date value) { this.LastSavedDateTimeLessThan = value; return this; } public Date getLastSavedDateTimeLessThanOrEqualTo() { return LastSavedDateTimeLessThanOrEqualTo; } public IN_CustomSettingValuesQuery setLastSavedDateTimeLessThanOrEqualTo(Date value) { this.LastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeNotEqualTo() { return LastSavedDateTimeNotEqualTo; } public IN_CustomSettingValuesQuery setLastSavedDateTimeNotEqualTo(Date value) { this.LastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getLastSavedDateTimeBetween() { return LastSavedDateTimeBetween; } public IN_CustomSettingValuesQuery setLastSavedDateTimeBetween(ArrayList value) { this.LastSavedDateTimeBetween = value; return this; } public ArrayList getLastSavedDateTimeIn() { return LastSavedDateTimeIn; } public IN_CustomSettingValuesQuery setLastSavedDateTimeIn(ArrayList value) { this.LastSavedDateTimeIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class IN_DebtorClassificationSpecificPriceQuery extends QueryDb implements IReturn> { public String RecID = null; public String RecIDStartsWith = null; public String RecIDEndsWith = null; public String RecIDContains = null; public String RecIDLike = null; public ArrayList RecIDBetween = null; public ArrayList RecIDIn = null; public String InventoryID = null; public String InventoryIDStartsWith = null; public String InventoryIDEndsWith = null; public String InventoryIDContains = null; public String InventoryIDLike = null; public ArrayList InventoryIDBetween = null; public ArrayList InventoryIDIn = null; public String DebtorClassificationID = null; public String DebtorClassificationIDStartsWith = null; public String DebtorClassificationIDEndsWith = null; public String DebtorClassificationIDContains = null; public String DebtorClassificationIDLike = null; public ArrayList DebtorClassificationIDBetween = null; public ArrayList DebtorClassificationIDIn = null; public Short Source = null; public Short SourceGreaterThanOrEqualTo = null; public Short SourceGreaterThan = null; public Short SourceLessThan = null; public Short SourceLessThanOrEqualTo = null; public Short SourceNotEqualTo = null; public ArrayList SourceBetween = null; public ArrayList SourceIn = null; public Short OPMode = null; public Short OPModeGreaterThanOrEqualTo = null; public Short OPModeGreaterThan = null; public Short OPModeLessThan = null; public Short OPModeLessThanOrEqualTo = null; public Short OPModeNotEqualTo = null; public ArrayList OPModeBetween = null; public ArrayList OPModeIn = null; public BigDecimal Amount = null; public BigDecimal AmountGreaterThanOrEqualTo = null; public BigDecimal AmountGreaterThan = null; public BigDecimal AmountLessThan = null; public BigDecimal AmountLessThanOrEqualTo = null; public BigDecimal AmountNotEqualTo = null; public ArrayList AmountBetween = null; public ArrayList AmountIn = null; public Date StartDate = null; public Date StartDateGreaterThanOrEqualTo = null; public Date StartDateGreaterThan = null; public Date StartDateLessThan = null; public Date StartDateLessThanOrEqualTo = null; public Date StartDateNotEqualTo = null; public ArrayList StartDateBetween = null; public ArrayList StartDateIn = null; public Date EndDate = null; public Date EndDateGreaterThanOrEqualTo = null; public Date EndDateGreaterThan = null; public Date EndDateLessThan = null; public Date EndDateLessThanOrEqualTo = null; public Date EndDateNotEqualTo = null; public ArrayList EndDateBetween = null; public ArrayList EndDateIn = null; public Boolean UseQuantityBreak = null; public BigDecimal QuantityBreak = null; public BigDecimal QuantityBreakGreaterThanOrEqualTo = null; public BigDecimal QuantityBreakGreaterThan = null; public BigDecimal QuantityBreakLessThan = null; public BigDecimal QuantityBreakLessThanOrEqualTo = null; public BigDecimal QuantityBreakNotEqualTo = null; public ArrayList QuantityBreakBetween = null; public ArrayList QuantityBreakIn = null; public String Note = null; public String NoteStartsWith = null; public String NoteEndsWith = null; public String NoteContains = null; public String NoteLike = null; public ArrayList NoteBetween = null; public ArrayList NoteIn = null; public Integer ItemNo = null; public Integer ItemNoGreaterThanOrEqualTo = null; public Integer ItemNoGreaterThan = null; public Integer ItemNoLessThan = null; public Integer ItemNoLessThanOrEqualTo = null; public Integer ItemNoNotEqualTo = null; public ArrayList ItemNoBetween = null; public ArrayList ItemNoIn = null; public ArrayList RowHash = null; public String getRecID() { return RecID; } public IN_DebtorClassificationSpecificPriceQuery setRecID(String value) { this.RecID = value; return this; } public String getRecIDStartsWith() { return RecIDStartsWith; } public IN_DebtorClassificationSpecificPriceQuery setRecIDStartsWith(String value) { this.RecIDStartsWith = value; return this; } public String getRecIDEndsWith() { return RecIDEndsWith; } public IN_DebtorClassificationSpecificPriceQuery setRecIDEndsWith(String value) { this.RecIDEndsWith = value; return this; } public String getRecIDContains() { return RecIDContains; } public IN_DebtorClassificationSpecificPriceQuery setRecIDContains(String value) { this.RecIDContains = value; return this; } public String getRecIDLike() { return RecIDLike; } public IN_DebtorClassificationSpecificPriceQuery setRecIDLike(String value) { this.RecIDLike = value; return this; } public ArrayList getRecIDBetween() { return RecIDBetween; } public IN_DebtorClassificationSpecificPriceQuery setRecIDBetween(ArrayList value) { this.RecIDBetween = value; return this; } public ArrayList getRecIDIn() { return RecIDIn; } public IN_DebtorClassificationSpecificPriceQuery setRecIDIn(ArrayList value) { this.RecIDIn = value; return this; } public String getInventoryID() { return InventoryID; } public IN_DebtorClassificationSpecificPriceQuery setInventoryID(String value) { this.InventoryID = value; return this; } public String getInventoryIDStartsWith() { return InventoryIDStartsWith; } public IN_DebtorClassificationSpecificPriceQuery setInventoryIDStartsWith(String value) { this.InventoryIDStartsWith = value; return this; } public String getInventoryIDEndsWith() { return InventoryIDEndsWith; } public IN_DebtorClassificationSpecificPriceQuery setInventoryIDEndsWith(String value) { this.InventoryIDEndsWith = value; return this; } public String getInventoryIDContains() { return InventoryIDContains; } public IN_DebtorClassificationSpecificPriceQuery setInventoryIDContains(String value) { this.InventoryIDContains = value; return this; } public String getInventoryIDLike() { return InventoryIDLike; } public IN_DebtorClassificationSpecificPriceQuery setInventoryIDLike(String value) { this.InventoryIDLike = value; return this; } public ArrayList getInventoryIDBetween() { return InventoryIDBetween; } public IN_DebtorClassificationSpecificPriceQuery setInventoryIDBetween(ArrayList value) { this.InventoryIDBetween = value; return this; } public ArrayList getInventoryIDIn() { return InventoryIDIn; } public IN_DebtorClassificationSpecificPriceQuery setInventoryIDIn(ArrayList value) { this.InventoryIDIn = value; return this; } public String getDebtorClassificationID() { return DebtorClassificationID; } public IN_DebtorClassificationSpecificPriceQuery setDebtorClassificationID(String value) { this.DebtorClassificationID = value; return this; } public String getDebtorClassificationIDStartsWith() { return DebtorClassificationIDStartsWith; } public IN_DebtorClassificationSpecificPriceQuery setDebtorClassificationIDStartsWith(String value) { this.DebtorClassificationIDStartsWith = value; return this; } public String getDebtorClassificationIDEndsWith() { return DebtorClassificationIDEndsWith; } public IN_DebtorClassificationSpecificPriceQuery setDebtorClassificationIDEndsWith(String value) { this.DebtorClassificationIDEndsWith = value; return this; } public String getDebtorClassificationIDContains() { return DebtorClassificationIDContains; } public IN_DebtorClassificationSpecificPriceQuery setDebtorClassificationIDContains(String value) { this.DebtorClassificationIDContains = value; return this; } public String getDebtorClassificationIDLike() { return DebtorClassificationIDLike; } public IN_DebtorClassificationSpecificPriceQuery setDebtorClassificationIDLike(String value) { this.DebtorClassificationIDLike = value; return this; } public ArrayList getDebtorClassificationIDBetween() { return DebtorClassificationIDBetween; } public IN_DebtorClassificationSpecificPriceQuery setDebtorClassificationIDBetween(ArrayList value) { this.DebtorClassificationIDBetween = value; return this; } public ArrayList getDebtorClassificationIDIn() { return DebtorClassificationIDIn; } public IN_DebtorClassificationSpecificPriceQuery setDebtorClassificationIDIn(ArrayList value) { this.DebtorClassificationIDIn = value; return this; } public Short getSource() { return Source; } public IN_DebtorClassificationSpecificPriceQuery setSource(Short value) { this.Source = value; return this; } public Short getSourceGreaterThanOrEqualTo() { return SourceGreaterThanOrEqualTo; } public IN_DebtorClassificationSpecificPriceQuery setSourceGreaterThanOrEqualTo(Short value) { this.SourceGreaterThanOrEqualTo = value; return this; } public Short getSourceGreaterThan() { return SourceGreaterThan; } public IN_DebtorClassificationSpecificPriceQuery setSourceGreaterThan(Short value) { this.SourceGreaterThan = value; return this; } public Short getSourceLessThan() { return SourceLessThan; } public IN_DebtorClassificationSpecificPriceQuery setSourceLessThan(Short value) { this.SourceLessThan = value; return this; } public Short getSourceLessThanOrEqualTo() { return SourceLessThanOrEqualTo; } public IN_DebtorClassificationSpecificPriceQuery setSourceLessThanOrEqualTo(Short value) { this.SourceLessThanOrEqualTo = value; return this; } public Short getSourceNotEqualTo() { return SourceNotEqualTo; } public IN_DebtorClassificationSpecificPriceQuery setSourceNotEqualTo(Short value) { this.SourceNotEqualTo = value; return this; } public ArrayList getSourceBetween() { return SourceBetween; } public IN_DebtorClassificationSpecificPriceQuery setSourceBetween(ArrayList value) { this.SourceBetween = value; return this; } public ArrayList getSourceIn() { return SourceIn; } public IN_DebtorClassificationSpecificPriceQuery setSourceIn(ArrayList value) { this.SourceIn = value; return this; } public Short getOpMode() { return OPMode; } public IN_DebtorClassificationSpecificPriceQuery setOpMode(Short value) { this.OPMode = value; return this; } public Short getOpModeGreaterThanOrEqualTo() { return OPModeGreaterThanOrEqualTo; } public IN_DebtorClassificationSpecificPriceQuery setOpModeGreaterThanOrEqualTo(Short value) { this.OPModeGreaterThanOrEqualTo = value; return this; } public Short getOpModeGreaterThan() { return OPModeGreaterThan; } public IN_DebtorClassificationSpecificPriceQuery setOpModeGreaterThan(Short value) { this.OPModeGreaterThan = value; return this; } public Short getOpModeLessThan() { return OPModeLessThan; } public IN_DebtorClassificationSpecificPriceQuery setOpModeLessThan(Short value) { this.OPModeLessThan = value; return this; } public Short getOpModeLessThanOrEqualTo() { return OPModeLessThanOrEqualTo; } public IN_DebtorClassificationSpecificPriceQuery setOpModeLessThanOrEqualTo(Short value) { this.OPModeLessThanOrEqualTo = value; return this; } public Short getOpModeNotEqualTo() { return OPModeNotEqualTo; } public IN_DebtorClassificationSpecificPriceQuery setOpModeNotEqualTo(Short value) { this.OPModeNotEqualTo = value; return this; } public ArrayList getOpModeBetween() { return OPModeBetween; } public IN_DebtorClassificationSpecificPriceQuery setOpModeBetween(ArrayList value) { this.OPModeBetween = value; return this; } public ArrayList getOpModeIn() { return OPModeIn; } public IN_DebtorClassificationSpecificPriceQuery setOpModeIn(ArrayList value) { this.OPModeIn = value; return this; } public BigDecimal getAmount() { return Amount; } public IN_DebtorClassificationSpecificPriceQuery setAmount(BigDecimal value) { this.Amount = value; return this; } public BigDecimal getAmountGreaterThanOrEqualTo() { return AmountGreaterThanOrEqualTo; } public IN_DebtorClassificationSpecificPriceQuery setAmountGreaterThanOrEqualTo(BigDecimal value) { this.AmountGreaterThanOrEqualTo = value; return this; } public BigDecimal getAmountGreaterThan() { return AmountGreaterThan; } public IN_DebtorClassificationSpecificPriceQuery setAmountGreaterThan(BigDecimal value) { this.AmountGreaterThan = value; return this; } public BigDecimal getAmountLessThan() { return AmountLessThan; } public IN_DebtorClassificationSpecificPriceQuery setAmountLessThan(BigDecimal value) { this.AmountLessThan = value; return this; } public BigDecimal getAmountLessThanOrEqualTo() { return AmountLessThanOrEqualTo; } public IN_DebtorClassificationSpecificPriceQuery setAmountLessThanOrEqualTo(BigDecimal value) { this.AmountLessThanOrEqualTo = value; return this; } public BigDecimal getAmountNotEqualTo() { return AmountNotEqualTo; } public IN_DebtorClassificationSpecificPriceQuery setAmountNotEqualTo(BigDecimal value) { this.AmountNotEqualTo = value; return this; } public ArrayList getAmountBetween() { return AmountBetween; } public IN_DebtorClassificationSpecificPriceQuery setAmountBetween(ArrayList value) { this.AmountBetween = value; return this; } public ArrayList getAmountIn() { return AmountIn; } public IN_DebtorClassificationSpecificPriceQuery setAmountIn(ArrayList value) { this.AmountIn = value; return this; } public Date getStartDate() { return StartDate; } public IN_DebtorClassificationSpecificPriceQuery setStartDate(Date value) { this.StartDate = value; return this; } public Date getStartDateGreaterThanOrEqualTo() { return StartDateGreaterThanOrEqualTo; } public IN_DebtorClassificationSpecificPriceQuery setStartDateGreaterThanOrEqualTo(Date value) { this.StartDateGreaterThanOrEqualTo = value; return this; } public Date getStartDateGreaterThan() { return StartDateGreaterThan; } public IN_DebtorClassificationSpecificPriceQuery setStartDateGreaterThan(Date value) { this.StartDateGreaterThan = value; return this; } public Date getStartDateLessThan() { return StartDateLessThan; } public IN_DebtorClassificationSpecificPriceQuery setStartDateLessThan(Date value) { this.StartDateLessThan = value; return this; } public Date getStartDateLessThanOrEqualTo() { return StartDateLessThanOrEqualTo; } public IN_DebtorClassificationSpecificPriceQuery setStartDateLessThanOrEqualTo(Date value) { this.StartDateLessThanOrEqualTo = value; return this; } public Date getStartDateNotEqualTo() { return StartDateNotEqualTo; } public IN_DebtorClassificationSpecificPriceQuery setStartDateNotEqualTo(Date value) { this.StartDateNotEqualTo = value; return this; } public ArrayList getStartDateBetween() { return StartDateBetween; } public IN_DebtorClassificationSpecificPriceQuery setStartDateBetween(ArrayList value) { this.StartDateBetween = value; return this; } public ArrayList getStartDateIn() { return StartDateIn; } public IN_DebtorClassificationSpecificPriceQuery setStartDateIn(ArrayList value) { this.StartDateIn = value; return this; } public Date getEndDate() { return EndDate; } public IN_DebtorClassificationSpecificPriceQuery setEndDate(Date value) { this.EndDate = value; return this; } public Date getEndDateGreaterThanOrEqualTo() { return EndDateGreaterThanOrEqualTo; } public IN_DebtorClassificationSpecificPriceQuery setEndDateGreaterThanOrEqualTo(Date value) { this.EndDateGreaterThanOrEqualTo = value; return this; } public Date getEndDateGreaterThan() { return EndDateGreaterThan; } public IN_DebtorClassificationSpecificPriceQuery setEndDateGreaterThan(Date value) { this.EndDateGreaterThan = value; return this; } public Date getEndDateLessThan() { return EndDateLessThan; } public IN_DebtorClassificationSpecificPriceQuery setEndDateLessThan(Date value) { this.EndDateLessThan = value; return this; } public Date getEndDateLessThanOrEqualTo() { return EndDateLessThanOrEqualTo; } public IN_DebtorClassificationSpecificPriceQuery setEndDateLessThanOrEqualTo(Date value) { this.EndDateLessThanOrEqualTo = value; return this; } public Date getEndDateNotEqualTo() { return EndDateNotEqualTo; } public IN_DebtorClassificationSpecificPriceQuery setEndDateNotEqualTo(Date value) { this.EndDateNotEqualTo = value; return this; } public ArrayList getEndDateBetween() { return EndDateBetween; } public IN_DebtorClassificationSpecificPriceQuery setEndDateBetween(ArrayList value) { this.EndDateBetween = value; return this; } public ArrayList getEndDateIn() { return EndDateIn; } public IN_DebtorClassificationSpecificPriceQuery setEndDateIn(ArrayList value) { this.EndDateIn = value; return this; } public Boolean isUseQuantityBreak() { return UseQuantityBreak; } public IN_DebtorClassificationSpecificPriceQuery setUseQuantityBreak(Boolean value) { this.UseQuantityBreak = value; return this; } public BigDecimal getQuantityBreak() { return QuantityBreak; } public IN_DebtorClassificationSpecificPriceQuery setQuantityBreak(BigDecimal value) { this.QuantityBreak = value; return this; } public BigDecimal getQuantityBreakGreaterThanOrEqualTo() { return QuantityBreakGreaterThanOrEqualTo; } public IN_DebtorClassificationSpecificPriceQuery setQuantityBreakGreaterThanOrEqualTo(BigDecimal value) { this.QuantityBreakGreaterThanOrEqualTo = value; return this; } public BigDecimal getQuantityBreakGreaterThan() { return QuantityBreakGreaterThan; } public IN_DebtorClassificationSpecificPriceQuery setQuantityBreakGreaterThan(BigDecimal value) { this.QuantityBreakGreaterThan = value; return this; } public BigDecimal getQuantityBreakLessThan() { return QuantityBreakLessThan; } public IN_DebtorClassificationSpecificPriceQuery setQuantityBreakLessThan(BigDecimal value) { this.QuantityBreakLessThan = value; return this; } public BigDecimal getQuantityBreakLessThanOrEqualTo() { return QuantityBreakLessThanOrEqualTo; } public IN_DebtorClassificationSpecificPriceQuery setQuantityBreakLessThanOrEqualTo(BigDecimal value) { this.QuantityBreakLessThanOrEqualTo = value; return this; } public BigDecimal getQuantityBreakNotEqualTo() { return QuantityBreakNotEqualTo; } public IN_DebtorClassificationSpecificPriceQuery setQuantityBreakNotEqualTo(BigDecimal value) { this.QuantityBreakNotEqualTo = value; return this; } public ArrayList getQuantityBreakBetween() { return QuantityBreakBetween; } public IN_DebtorClassificationSpecificPriceQuery setQuantityBreakBetween(ArrayList value) { this.QuantityBreakBetween = value; return this; } public ArrayList getQuantityBreakIn() { return QuantityBreakIn; } public IN_DebtorClassificationSpecificPriceQuery setQuantityBreakIn(ArrayList value) { this.QuantityBreakIn = value; return this; } public String getNote() { return Note; } public IN_DebtorClassificationSpecificPriceQuery setNote(String value) { this.Note = value; return this; } public String getNoteStartsWith() { return NoteStartsWith; } public IN_DebtorClassificationSpecificPriceQuery setNoteStartsWith(String value) { this.NoteStartsWith = value; return this; } public String getNoteEndsWith() { return NoteEndsWith; } public IN_DebtorClassificationSpecificPriceQuery setNoteEndsWith(String value) { this.NoteEndsWith = value; return this; } public String getNoteContains() { return NoteContains; } public IN_DebtorClassificationSpecificPriceQuery setNoteContains(String value) { this.NoteContains = value; return this; } public String getNoteLike() { return NoteLike; } public IN_DebtorClassificationSpecificPriceQuery setNoteLike(String value) { this.NoteLike = value; return this; } public ArrayList getNoteBetween() { return NoteBetween; } public IN_DebtorClassificationSpecificPriceQuery setNoteBetween(ArrayList value) { this.NoteBetween = value; return this; } public ArrayList getNoteIn() { return NoteIn; } public IN_DebtorClassificationSpecificPriceQuery setNoteIn(ArrayList value) { this.NoteIn = value; return this; } public Integer getItemNo() { return ItemNo; } public IN_DebtorClassificationSpecificPriceQuery setItemNo(Integer value) { this.ItemNo = value; return this; } public Integer getItemNoGreaterThanOrEqualTo() { return ItemNoGreaterThanOrEqualTo; } public IN_DebtorClassificationSpecificPriceQuery setItemNoGreaterThanOrEqualTo(Integer value) { this.ItemNoGreaterThanOrEqualTo = value; return this; } public Integer getItemNoGreaterThan() { return ItemNoGreaterThan; } public IN_DebtorClassificationSpecificPriceQuery setItemNoGreaterThan(Integer value) { this.ItemNoGreaterThan = value; return this; } public Integer getItemNoLessThan() { return ItemNoLessThan; } public IN_DebtorClassificationSpecificPriceQuery setItemNoLessThan(Integer value) { this.ItemNoLessThan = value; return this; } public Integer getItemNoLessThanOrEqualTo() { return ItemNoLessThanOrEqualTo; } public IN_DebtorClassificationSpecificPriceQuery setItemNoLessThanOrEqualTo(Integer value) { this.ItemNoLessThanOrEqualTo = value; return this; } public Integer getItemNoNotEqualTo() { return ItemNoNotEqualTo; } public IN_DebtorClassificationSpecificPriceQuery setItemNoNotEqualTo(Integer value) { this.ItemNoNotEqualTo = value; return this; } public ArrayList getItemNoBetween() { return ItemNoBetween; } public IN_DebtorClassificationSpecificPriceQuery setItemNoBetween(ArrayList value) { this.ItemNoBetween = value; return this; } public ArrayList getItemNoIn() { return ItemNoIn; } public IN_DebtorClassificationSpecificPriceQuery setItemNoIn(ArrayList value) { this.ItemNoIn = value; return this; } public ArrayList getRowHash() { return RowHash; } public IN_DebtorClassificationSpecificPriceQuery setRowHash(ArrayList value) { this.RowHash = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class IN_DebtorPartNumbersQuery extends QueryDb implements IReturn> { public String RecID = null; public String RecIDStartsWith = null; public String RecIDEndsWith = null; public String RecIDContains = null; public String RecIDLike = null; public ArrayList RecIDBetween = null; public ArrayList RecIDIn = null; public String InventoryID = null; public String InventoryIDStartsWith = null; public String InventoryIDEndsWith = null; public String InventoryIDContains = null; public String InventoryIDLike = null; public ArrayList InventoryIDBetween = null; public ArrayList InventoryIDIn = null; public String DebtorID = null; public String DebtorIDStartsWith = null; public String DebtorIDEndsWith = null; public String DebtorIDContains = null; public String DebtorIDLike = null; public ArrayList DebtorIDBetween = null; public ArrayList DebtorIDIn = null; public String DebtorPartNo = null; public String DebtorPartNoStartsWith = null; public String DebtorPartNoEndsWith = null; public String DebtorPartNoContains = null; public String DebtorPartNoLike = null; public ArrayList DebtorPartNoBetween = null; public ArrayList DebtorPartNoIn = null; public String DebtorBarcode = null; public String DebtorBarcodeStartsWith = null; public String DebtorBarcodeEndsWith = null; public String DebtorBarcodeContains = null; public String DebtorBarcodeLike = null; public ArrayList DebtorBarcodeBetween = null; public ArrayList DebtorBarcodeIn = null; public String getRecID() { return RecID; } public IN_DebtorPartNumbersQuery setRecID(String value) { this.RecID = value; return this; } public String getRecIDStartsWith() { return RecIDStartsWith; } public IN_DebtorPartNumbersQuery setRecIDStartsWith(String value) { this.RecIDStartsWith = value; return this; } public String getRecIDEndsWith() { return RecIDEndsWith; } public IN_DebtorPartNumbersQuery setRecIDEndsWith(String value) { this.RecIDEndsWith = value; return this; } public String getRecIDContains() { return RecIDContains; } public IN_DebtorPartNumbersQuery setRecIDContains(String value) { this.RecIDContains = value; return this; } public String getRecIDLike() { return RecIDLike; } public IN_DebtorPartNumbersQuery setRecIDLike(String value) { this.RecIDLike = value; return this; } public ArrayList getRecIDBetween() { return RecIDBetween; } public IN_DebtorPartNumbersQuery setRecIDBetween(ArrayList value) { this.RecIDBetween = value; return this; } public ArrayList getRecIDIn() { return RecIDIn; } public IN_DebtorPartNumbersQuery setRecIDIn(ArrayList value) { this.RecIDIn = value; return this; } public String getInventoryID() { return InventoryID; } public IN_DebtorPartNumbersQuery setInventoryID(String value) { this.InventoryID = value; return this; } public String getInventoryIDStartsWith() { return InventoryIDStartsWith; } public IN_DebtorPartNumbersQuery setInventoryIDStartsWith(String value) { this.InventoryIDStartsWith = value; return this; } public String getInventoryIDEndsWith() { return InventoryIDEndsWith; } public IN_DebtorPartNumbersQuery setInventoryIDEndsWith(String value) { this.InventoryIDEndsWith = value; return this; } public String getInventoryIDContains() { return InventoryIDContains; } public IN_DebtorPartNumbersQuery setInventoryIDContains(String value) { this.InventoryIDContains = value; return this; } public String getInventoryIDLike() { return InventoryIDLike; } public IN_DebtorPartNumbersQuery setInventoryIDLike(String value) { this.InventoryIDLike = value; return this; } public ArrayList getInventoryIDBetween() { return InventoryIDBetween; } public IN_DebtorPartNumbersQuery setInventoryIDBetween(ArrayList value) { this.InventoryIDBetween = value; return this; } public ArrayList getInventoryIDIn() { return InventoryIDIn; } public IN_DebtorPartNumbersQuery setInventoryIDIn(ArrayList value) { this.InventoryIDIn = value; return this; } public String getDebtorID() { return DebtorID; } public IN_DebtorPartNumbersQuery setDebtorID(String value) { this.DebtorID = value; return this; } public String getDebtorIDStartsWith() { return DebtorIDStartsWith; } public IN_DebtorPartNumbersQuery setDebtorIDStartsWith(String value) { this.DebtorIDStartsWith = value; return this; } public String getDebtorIDEndsWith() { return DebtorIDEndsWith; } public IN_DebtorPartNumbersQuery setDebtorIDEndsWith(String value) { this.DebtorIDEndsWith = value; return this; } public String getDebtorIDContains() { return DebtorIDContains; } public IN_DebtorPartNumbersQuery setDebtorIDContains(String value) { this.DebtorIDContains = value; return this; } public String getDebtorIDLike() { return DebtorIDLike; } public IN_DebtorPartNumbersQuery setDebtorIDLike(String value) { this.DebtorIDLike = value; return this; } public ArrayList getDebtorIDBetween() { return DebtorIDBetween; } public IN_DebtorPartNumbersQuery setDebtorIDBetween(ArrayList value) { this.DebtorIDBetween = value; return this; } public ArrayList getDebtorIDIn() { return DebtorIDIn; } public IN_DebtorPartNumbersQuery setDebtorIDIn(ArrayList value) { this.DebtorIDIn = value; return this; } public String getDebtorPartNo() { return DebtorPartNo; } public IN_DebtorPartNumbersQuery setDebtorPartNo(String value) { this.DebtorPartNo = value; return this; } public String getDebtorPartNoStartsWith() { return DebtorPartNoStartsWith; } public IN_DebtorPartNumbersQuery setDebtorPartNoStartsWith(String value) { this.DebtorPartNoStartsWith = value; return this; } public String getDebtorPartNoEndsWith() { return DebtorPartNoEndsWith; } public IN_DebtorPartNumbersQuery setDebtorPartNoEndsWith(String value) { this.DebtorPartNoEndsWith = value; return this; } public String getDebtorPartNoContains() { return DebtorPartNoContains; } public IN_DebtorPartNumbersQuery setDebtorPartNoContains(String value) { this.DebtorPartNoContains = value; return this; } public String getDebtorPartNoLike() { return DebtorPartNoLike; } public IN_DebtorPartNumbersQuery setDebtorPartNoLike(String value) { this.DebtorPartNoLike = value; return this; } public ArrayList getDebtorPartNoBetween() { return DebtorPartNoBetween; } public IN_DebtorPartNumbersQuery setDebtorPartNoBetween(ArrayList value) { this.DebtorPartNoBetween = value; return this; } public ArrayList getDebtorPartNoIn() { return DebtorPartNoIn; } public IN_DebtorPartNumbersQuery setDebtorPartNoIn(ArrayList value) { this.DebtorPartNoIn = value; return this; } public String getDebtorBarcode() { return DebtorBarcode; } public IN_DebtorPartNumbersQuery setDebtorBarcode(String value) { this.DebtorBarcode = value; return this; } public String getDebtorBarcodeStartsWith() { return DebtorBarcodeStartsWith; } public IN_DebtorPartNumbersQuery setDebtorBarcodeStartsWith(String value) { this.DebtorBarcodeStartsWith = value; return this; } public String getDebtorBarcodeEndsWith() { return DebtorBarcodeEndsWith; } public IN_DebtorPartNumbersQuery setDebtorBarcodeEndsWith(String value) { this.DebtorBarcodeEndsWith = value; return this; } public String getDebtorBarcodeContains() { return DebtorBarcodeContains; } public IN_DebtorPartNumbersQuery setDebtorBarcodeContains(String value) { this.DebtorBarcodeContains = value; return this; } public String getDebtorBarcodeLike() { return DebtorBarcodeLike; } public IN_DebtorPartNumbersQuery setDebtorBarcodeLike(String value) { this.DebtorBarcodeLike = value; return this; } public ArrayList getDebtorBarcodeBetween() { return DebtorBarcodeBetween; } public IN_DebtorPartNumbersQuery setDebtorBarcodeBetween(ArrayList value) { this.DebtorBarcodeBetween = value; return this; } public ArrayList getDebtorBarcodeIn() { return DebtorBarcodeIn; } public IN_DebtorPartNumbersQuery setDebtorBarcodeIn(ArrayList value) { this.DebtorBarcodeIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class IN_DebtorPricingGroupSpecificPriceQuery extends QueryDb implements IReturn> { public String RecID = null; public String RecIDStartsWith = null; public String RecIDEndsWith = null; public String RecIDContains = null; public String RecIDLike = null; public ArrayList RecIDBetween = null; public ArrayList RecIDIn = null; public String InventoryID = null; public String InventoryIDStartsWith = null; public String InventoryIDEndsWith = null; public String InventoryIDContains = null; public String InventoryIDLike = null; public ArrayList InventoryIDBetween = null; public ArrayList InventoryIDIn = null; public String DB_PricingGroups_RecID = null; public String DB_PricingGroups_RecIDStartsWith = null; public String DB_PricingGroups_RecIDEndsWith = null; public String DB_PricingGroups_RecIDContains = null; public String DB_PricingGroups_RecIDLike = null; public ArrayList DB_PricingGroups_RecIDBetween = null; public ArrayList DB_PricingGroups_RecIDIn = null; public Short Source = null; public Short SourceGreaterThanOrEqualTo = null; public Short SourceGreaterThan = null; public Short SourceLessThan = null; public Short SourceLessThanOrEqualTo = null; public Short SourceNotEqualTo = null; public ArrayList SourceBetween = null; public ArrayList SourceIn = null; public Short OPMode = null; public Short OPModeGreaterThanOrEqualTo = null; public Short OPModeGreaterThan = null; public Short OPModeLessThan = null; public Short OPModeLessThanOrEqualTo = null; public Short OPModeNotEqualTo = null; public ArrayList OPModeBetween = null; public ArrayList OPModeIn = null; public BigDecimal Amount = null; public BigDecimal AmountGreaterThanOrEqualTo = null; public BigDecimal AmountGreaterThan = null; public BigDecimal AmountLessThan = null; public BigDecimal AmountLessThanOrEqualTo = null; public BigDecimal AmountNotEqualTo = null; public ArrayList AmountBetween = null; public ArrayList AmountIn = null; public Date StartDate = null; public Date StartDateGreaterThanOrEqualTo = null; public Date StartDateGreaterThan = null; public Date StartDateLessThan = null; public Date StartDateLessThanOrEqualTo = null; public Date StartDateNotEqualTo = null; public ArrayList StartDateBetween = null; public ArrayList StartDateIn = null; public Date EndDate = null; public Date EndDateGreaterThanOrEqualTo = null; public Date EndDateGreaterThan = null; public Date EndDateLessThan = null; public Date EndDateLessThanOrEqualTo = null; public Date EndDateNotEqualTo = null; public ArrayList EndDateBetween = null; public ArrayList EndDateIn = null; public Boolean UseQuantityBreak = null; public BigDecimal QuantityBreak = null; public BigDecimal QuantityBreakGreaterThanOrEqualTo = null; public BigDecimal QuantityBreakGreaterThan = null; public BigDecimal QuantityBreakLessThan = null; public BigDecimal QuantityBreakLessThanOrEqualTo = null; public BigDecimal QuantityBreakNotEqualTo = null; public ArrayList QuantityBreakBetween = null; public ArrayList QuantityBreakIn = null; public String Note = null; public String NoteStartsWith = null; public String NoteEndsWith = null; public String NoteContains = null; public String NoteLike = null; public ArrayList NoteBetween = null; public ArrayList NoteIn = null; public Integer ItemNo = null; public Integer ItemNoGreaterThanOrEqualTo = null; public Integer ItemNoGreaterThan = null; public Integer ItemNoLessThan = null; public Integer ItemNoLessThanOrEqualTo = null; public Integer ItemNoNotEqualTo = null; public ArrayList ItemNoBetween = null; public ArrayList ItemNoIn = null; public ArrayList RowHash = null; public String getRecID() { return RecID; } public IN_DebtorPricingGroupSpecificPriceQuery setRecID(String value) { this.RecID = value; return this; } public String getRecIDStartsWith() { return RecIDStartsWith; } public IN_DebtorPricingGroupSpecificPriceQuery setRecIDStartsWith(String value) { this.RecIDStartsWith = value; return this; } public String getRecIDEndsWith() { return RecIDEndsWith; } public IN_DebtorPricingGroupSpecificPriceQuery setRecIDEndsWith(String value) { this.RecIDEndsWith = value; return this; } public String getRecIDContains() { return RecIDContains; } public IN_DebtorPricingGroupSpecificPriceQuery setRecIDContains(String value) { this.RecIDContains = value; return this; } public String getRecIDLike() { return RecIDLike; } public IN_DebtorPricingGroupSpecificPriceQuery setRecIDLike(String value) { this.RecIDLike = value; return this; } public ArrayList getRecIDBetween() { return RecIDBetween; } public IN_DebtorPricingGroupSpecificPriceQuery setRecIDBetween(ArrayList value) { this.RecIDBetween = value; return this; } public ArrayList getRecIDIn() { return RecIDIn; } public IN_DebtorPricingGroupSpecificPriceQuery setRecIDIn(ArrayList value) { this.RecIDIn = value; return this; } public String getInventoryID() { return InventoryID; } public IN_DebtorPricingGroupSpecificPriceQuery setInventoryID(String value) { this.InventoryID = value; return this; } public String getInventoryIDStartsWith() { return InventoryIDStartsWith; } public IN_DebtorPricingGroupSpecificPriceQuery setInventoryIDStartsWith(String value) { this.InventoryIDStartsWith = value; return this; } public String getInventoryIDEndsWith() { return InventoryIDEndsWith; } public IN_DebtorPricingGroupSpecificPriceQuery setInventoryIDEndsWith(String value) { this.InventoryIDEndsWith = value; return this; } public String getInventoryIDContains() { return InventoryIDContains; } public IN_DebtorPricingGroupSpecificPriceQuery setInventoryIDContains(String value) { this.InventoryIDContains = value; return this; } public String getInventoryIDLike() { return InventoryIDLike; } public IN_DebtorPricingGroupSpecificPriceQuery setInventoryIDLike(String value) { this.InventoryIDLike = value; return this; } public ArrayList getInventoryIDBetween() { return InventoryIDBetween; } public IN_DebtorPricingGroupSpecificPriceQuery setInventoryIDBetween(ArrayList value) { this.InventoryIDBetween = value; return this; } public ArrayList getInventoryIDIn() { return InventoryIDIn; } public IN_DebtorPricingGroupSpecificPriceQuery setInventoryIDIn(ArrayList value) { this.InventoryIDIn = value; return this; } public String getDbPricingGroupsRecID() { return DB_PricingGroups_RecID; } public IN_DebtorPricingGroupSpecificPriceQuery setDbPricingGroupsRecID(String value) { this.DB_PricingGroups_RecID = value; return this; } public String getDbPricingGroupsRecIDStartsWith() { return DB_PricingGroups_RecIDStartsWith; } public IN_DebtorPricingGroupSpecificPriceQuery setDbPricingGroupsRecIDStartsWith(String value) { this.DB_PricingGroups_RecIDStartsWith = value; return this; } public String getDbPricingGroupsRecIDEndsWith() { return DB_PricingGroups_RecIDEndsWith; } public IN_DebtorPricingGroupSpecificPriceQuery setDbPricingGroupsRecIDEndsWith(String value) { this.DB_PricingGroups_RecIDEndsWith = value; return this; } public String getDbPricingGroupsRecIDContains() { return DB_PricingGroups_RecIDContains; } public IN_DebtorPricingGroupSpecificPriceQuery setDbPricingGroupsRecIDContains(String value) { this.DB_PricingGroups_RecIDContains = value; return this; } public String getDbPricingGroupsRecIDLike() { return DB_PricingGroups_RecIDLike; } public IN_DebtorPricingGroupSpecificPriceQuery setDbPricingGroupsRecIDLike(String value) { this.DB_PricingGroups_RecIDLike = value; return this; } public ArrayList getDbPricingGroupsRecIDBetween() { return DB_PricingGroups_RecIDBetween; } public IN_DebtorPricingGroupSpecificPriceQuery setDbPricingGroupsRecIDBetween(ArrayList value) { this.DB_PricingGroups_RecIDBetween = value; return this; } public ArrayList getDbPricingGroupsRecIDIn() { return DB_PricingGroups_RecIDIn; } public IN_DebtorPricingGroupSpecificPriceQuery setDbPricingGroupsRecIDIn(ArrayList value) { this.DB_PricingGroups_RecIDIn = value; return this; } public Short getSource() { return Source; } public IN_DebtorPricingGroupSpecificPriceQuery setSource(Short value) { this.Source = value; return this; } public Short getSourceGreaterThanOrEqualTo() { return SourceGreaterThanOrEqualTo; } public IN_DebtorPricingGroupSpecificPriceQuery setSourceGreaterThanOrEqualTo(Short value) { this.SourceGreaterThanOrEqualTo = value; return this; } public Short getSourceGreaterThan() { return SourceGreaterThan; } public IN_DebtorPricingGroupSpecificPriceQuery setSourceGreaterThan(Short value) { this.SourceGreaterThan = value; return this; } public Short getSourceLessThan() { return SourceLessThan; } public IN_DebtorPricingGroupSpecificPriceQuery setSourceLessThan(Short value) { this.SourceLessThan = value; return this; } public Short getSourceLessThanOrEqualTo() { return SourceLessThanOrEqualTo; } public IN_DebtorPricingGroupSpecificPriceQuery setSourceLessThanOrEqualTo(Short value) { this.SourceLessThanOrEqualTo = value; return this; } public Short getSourceNotEqualTo() { return SourceNotEqualTo; } public IN_DebtorPricingGroupSpecificPriceQuery setSourceNotEqualTo(Short value) { this.SourceNotEqualTo = value; return this; } public ArrayList getSourceBetween() { return SourceBetween; } public IN_DebtorPricingGroupSpecificPriceQuery setSourceBetween(ArrayList value) { this.SourceBetween = value; return this; } public ArrayList getSourceIn() { return SourceIn; } public IN_DebtorPricingGroupSpecificPriceQuery setSourceIn(ArrayList value) { this.SourceIn = value; return this; } public Short getOpMode() { return OPMode; } public IN_DebtorPricingGroupSpecificPriceQuery setOpMode(Short value) { this.OPMode = value; return this; } public Short getOpModeGreaterThanOrEqualTo() { return OPModeGreaterThanOrEqualTo; } public IN_DebtorPricingGroupSpecificPriceQuery setOpModeGreaterThanOrEqualTo(Short value) { this.OPModeGreaterThanOrEqualTo = value; return this; } public Short getOpModeGreaterThan() { return OPModeGreaterThan; } public IN_DebtorPricingGroupSpecificPriceQuery setOpModeGreaterThan(Short value) { this.OPModeGreaterThan = value; return this; } public Short getOpModeLessThan() { return OPModeLessThan; } public IN_DebtorPricingGroupSpecificPriceQuery setOpModeLessThan(Short value) { this.OPModeLessThan = value; return this; } public Short getOpModeLessThanOrEqualTo() { return OPModeLessThanOrEqualTo; } public IN_DebtorPricingGroupSpecificPriceQuery setOpModeLessThanOrEqualTo(Short value) { this.OPModeLessThanOrEqualTo = value; return this; } public Short getOpModeNotEqualTo() { return OPModeNotEqualTo; } public IN_DebtorPricingGroupSpecificPriceQuery setOpModeNotEqualTo(Short value) { this.OPModeNotEqualTo = value; return this; } public ArrayList getOpModeBetween() { return OPModeBetween; } public IN_DebtorPricingGroupSpecificPriceQuery setOpModeBetween(ArrayList value) { this.OPModeBetween = value; return this; } public ArrayList getOpModeIn() { return OPModeIn; } public IN_DebtorPricingGroupSpecificPriceQuery setOpModeIn(ArrayList value) { this.OPModeIn = value; return this; } public BigDecimal getAmount() { return Amount; } public IN_DebtorPricingGroupSpecificPriceQuery setAmount(BigDecimal value) { this.Amount = value; return this; } public BigDecimal getAmountGreaterThanOrEqualTo() { return AmountGreaterThanOrEqualTo; } public IN_DebtorPricingGroupSpecificPriceQuery setAmountGreaterThanOrEqualTo(BigDecimal value) { this.AmountGreaterThanOrEqualTo = value; return this; } public BigDecimal getAmountGreaterThan() { return AmountGreaterThan; } public IN_DebtorPricingGroupSpecificPriceQuery setAmountGreaterThan(BigDecimal value) { this.AmountGreaterThan = value; return this; } public BigDecimal getAmountLessThan() { return AmountLessThan; } public IN_DebtorPricingGroupSpecificPriceQuery setAmountLessThan(BigDecimal value) { this.AmountLessThan = value; return this; } public BigDecimal getAmountLessThanOrEqualTo() { return AmountLessThanOrEqualTo; } public IN_DebtorPricingGroupSpecificPriceQuery setAmountLessThanOrEqualTo(BigDecimal value) { this.AmountLessThanOrEqualTo = value; return this; } public BigDecimal getAmountNotEqualTo() { return AmountNotEqualTo; } public IN_DebtorPricingGroupSpecificPriceQuery setAmountNotEqualTo(BigDecimal value) { this.AmountNotEqualTo = value; return this; } public ArrayList getAmountBetween() { return AmountBetween; } public IN_DebtorPricingGroupSpecificPriceQuery setAmountBetween(ArrayList value) { this.AmountBetween = value; return this; } public ArrayList getAmountIn() { return AmountIn; } public IN_DebtorPricingGroupSpecificPriceQuery setAmountIn(ArrayList value) { this.AmountIn = value; return this; } public Date getStartDate() { return StartDate; } public IN_DebtorPricingGroupSpecificPriceQuery setStartDate(Date value) { this.StartDate = value; return this; } public Date getStartDateGreaterThanOrEqualTo() { return StartDateGreaterThanOrEqualTo; } public IN_DebtorPricingGroupSpecificPriceQuery setStartDateGreaterThanOrEqualTo(Date value) { this.StartDateGreaterThanOrEqualTo = value; return this; } public Date getStartDateGreaterThan() { return StartDateGreaterThan; } public IN_DebtorPricingGroupSpecificPriceQuery setStartDateGreaterThan(Date value) { this.StartDateGreaterThan = value; return this; } public Date getStartDateLessThan() { return StartDateLessThan; } public IN_DebtorPricingGroupSpecificPriceQuery setStartDateLessThan(Date value) { this.StartDateLessThan = value; return this; } public Date getStartDateLessThanOrEqualTo() { return StartDateLessThanOrEqualTo; } public IN_DebtorPricingGroupSpecificPriceQuery setStartDateLessThanOrEqualTo(Date value) { this.StartDateLessThanOrEqualTo = value; return this; } public Date getStartDateNotEqualTo() { return StartDateNotEqualTo; } public IN_DebtorPricingGroupSpecificPriceQuery setStartDateNotEqualTo(Date value) { this.StartDateNotEqualTo = value; return this; } public ArrayList getStartDateBetween() { return StartDateBetween; } public IN_DebtorPricingGroupSpecificPriceQuery setStartDateBetween(ArrayList value) { this.StartDateBetween = value; return this; } public ArrayList getStartDateIn() { return StartDateIn; } public IN_DebtorPricingGroupSpecificPriceQuery setStartDateIn(ArrayList value) { this.StartDateIn = value; return this; } public Date getEndDate() { return EndDate; } public IN_DebtorPricingGroupSpecificPriceQuery setEndDate(Date value) { this.EndDate = value; return this; } public Date getEndDateGreaterThanOrEqualTo() { return EndDateGreaterThanOrEqualTo; } public IN_DebtorPricingGroupSpecificPriceQuery setEndDateGreaterThanOrEqualTo(Date value) { this.EndDateGreaterThanOrEqualTo = value; return this; } public Date getEndDateGreaterThan() { return EndDateGreaterThan; } public IN_DebtorPricingGroupSpecificPriceQuery setEndDateGreaterThan(Date value) { this.EndDateGreaterThan = value; return this; } public Date getEndDateLessThan() { return EndDateLessThan; } public IN_DebtorPricingGroupSpecificPriceQuery setEndDateLessThan(Date value) { this.EndDateLessThan = value; return this; } public Date getEndDateLessThanOrEqualTo() { return EndDateLessThanOrEqualTo; } public IN_DebtorPricingGroupSpecificPriceQuery setEndDateLessThanOrEqualTo(Date value) { this.EndDateLessThanOrEqualTo = value; return this; } public Date getEndDateNotEqualTo() { return EndDateNotEqualTo; } public IN_DebtorPricingGroupSpecificPriceQuery setEndDateNotEqualTo(Date value) { this.EndDateNotEqualTo = value; return this; } public ArrayList getEndDateBetween() { return EndDateBetween; } public IN_DebtorPricingGroupSpecificPriceQuery setEndDateBetween(ArrayList value) { this.EndDateBetween = value; return this; } public ArrayList getEndDateIn() { return EndDateIn; } public IN_DebtorPricingGroupSpecificPriceQuery setEndDateIn(ArrayList value) { this.EndDateIn = value; return this; } public Boolean isUseQuantityBreak() { return UseQuantityBreak; } public IN_DebtorPricingGroupSpecificPriceQuery setUseQuantityBreak(Boolean value) { this.UseQuantityBreak = value; return this; } public BigDecimal getQuantityBreak() { return QuantityBreak; } public IN_DebtorPricingGroupSpecificPriceQuery setQuantityBreak(BigDecimal value) { this.QuantityBreak = value; return this; } public BigDecimal getQuantityBreakGreaterThanOrEqualTo() { return QuantityBreakGreaterThanOrEqualTo; } public IN_DebtorPricingGroupSpecificPriceQuery setQuantityBreakGreaterThanOrEqualTo(BigDecimal value) { this.QuantityBreakGreaterThanOrEqualTo = value; return this; } public BigDecimal getQuantityBreakGreaterThan() { return QuantityBreakGreaterThan; } public IN_DebtorPricingGroupSpecificPriceQuery setQuantityBreakGreaterThan(BigDecimal value) { this.QuantityBreakGreaterThan = value; return this; } public BigDecimal getQuantityBreakLessThan() { return QuantityBreakLessThan; } public IN_DebtorPricingGroupSpecificPriceQuery setQuantityBreakLessThan(BigDecimal value) { this.QuantityBreakLessThan = value; return this; } public BigDecimal getQuantityBreakLessThanOrEqualTo() { return QuantityBreakLessThanOrEqualTo; } public IN_DebtorPricingGroupSpecificPriceQuery setQuantityBreakLessThanOrEqualTo(BigDecimal value) { this.QuantityBreakLessThanOrEqualTo = value; return this; } public BigDecimal getQuantityBreakNotEqualTo() { return QuantityBreakNotEqualTo; } public IN_DebtorPricingGroupSpecificPriceQuery setQuantityBreakNotEqualTo(BigDecimal value) { this.QuantityBreakNotEqualTo = value; return this; } public ArrayList getQuantityBreakBetween() { return QuantityBreakBetween; } public IN_DebtorPricingGroupSpecificPriceQuery setQuantityBreakBetween(ArrayList value) { this.QuantityBreakBetween = value; return this; } public ArrayList getQuantityBreakIn() { return QuantityBreakIn; } public IN_DebtorPricingGroupSpecificPriceQuery setQuantityBreakIn(ArrayList value) { this.QuantityBreakIn = value; return this; } public String getNote() { return Note; } public IN_DebtorPricingGroupSpecificPriceQuery setNote(String value) { this.Note = value; return this; } public String getNoteStartsWith() { return NoteStartsWith; } public IN_DebtorPricingGroupSpecificPriceQuery setNoteStartsWith(String value) { this.NoteStartsWith = value; return this; } public String getNoteEndsWith() { return NoteEndsWith; } public IN_DebtorPricingGroupSpecificPriceQuery setNoteEndsWith(String value) { this.NoteEndsWith = value; return this; } public String getNoteContains() { return NoteContains; } public IN_DebtorPricingGroupSpecificPriceQuery setNoteContains(String value) { this.NoteContains = value; return this; } public String getNoteLike() { return NoteLike; } public IN_DebtorPricingGroupSpecificPriceQuery setNoteLike(String value) { this.NoteLike = value; return this; } public ArrayList getNoteBetween() { return NoteBetween; } public IN_DebtorPricingGroupSpecificPriceQuery setNoteBetween(ArrayList value) { this.NoteBetween = value; return this; } public ArrayList getNoteIn() { return NoteIn; } public IN_DebtorPricingGroupSpecificPriceQuery setNoteIn(ArrayList value) { this.NoteIn = value; return this; } public Integer getItemNo() { return ItemNo; } public IN_DebtorPricingGroupSpecificPriceQuery setItemNo(Integer value) { this.ItemNo = value; return this; } public Integer getItemNoGreaterThanOrEqualTo() { return ItemNoGreaterThanOrEqualTo; } public IN_DebtorPricingGroupSpecificPriceQuery setItemNoGreaterThanOrEqualTo(Integer value) { this.ItemNoGreaterThanOrEqualTo = value; return this; } public Integer getItemNoGreaterThan() { return ItemNoGreaterThan; } public IN_DebtorPricingGroupSpecificPriceQuery setItemNoGreaterThan(Integer value) { this.ItemNoGreaterThan = value; return this; } public Integer getItemNoLessThan() { return ItemNoLessThan; } public IN_DebtorPricingGroupSpecificPriceQuery setItemNoLessThan(Integer value) { this.ItemNoLessThan = value; return this; } public Integer getItemNoLessThanOrEqualTo() { return ItemNoLessThanOrEqualTo; } public IN_DebtorPricingGroupSpecificPriceQuery setItemNoLessThanOrEqualTo(Integer value) { this.ItemNoLessThanOrEqualTo = value; return this; } public Integer getItemNoNotEqualTo() { return ItemNoNotEqualTo; } public IN_DebtorPricingGroupSpecificPriceQuery setItemNoNotEqualTo(Integer value) { this.ItemNoNotEqualTo = value; return this; } public ArrayList getItemNoBetween() { return ItemNoBetween; } public IN_DebtorPricingGroupSpecificPriceQuery setItemNoBetween(ArrayList value) { this.ItemNoBetween = value; return this; } public ArrayList getItemNoIn() { return ItemNoIn; } public IN_DebtorPricingGroupSpecificPriceQuery setItemNoIn(ArrayList value) { this.ItemNoIn = value; return this; } public ArrayList getRowHash() { return RowHash; } public IN_DebtorPricingGroupSpecificPriceQuery setRowHash(ArrayList value) { this.RowHash = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class IN_DebtorSpecificPriceQuery extends QueryDb implements IReturn> { public String RecID = null; public String RecIDStartsWith = null; public String RecIDEndsWith = null; public String RecIDContains = null; public String RecIDLike = null; public ArrayList RecIDBetween = null; public ArrayList RecIDIn = null; public String InventoryID = null; public String InventoryIDStartsWith = null; public String InventoryIDEndsWith = null; public String InventoryIDContains = null; public String InventoryIDLike = null; public ArrayList InventoryIDBetween = null; public ArrayList InventoryIDIn = null; public String DebtorID = null; public String DebtorIDStartsWith = null; public String DebtorIDEndsWith = null; public String DebtorIDContains = null; public String DebtorIDLike = null; public ArrayList DebtorIDBetween = null; public ArrayList DebtorIDIn = null; public Short Source = null; public Short SourceGreaterThanOrEqualTo = null; public Short SourceGreaterThan = null; public Short SourceLessThan = null; public Short SourceLessThanOrEqualTo = null; public Short SourceNotEqualTo = null; public ArrayList SourceBetween = null; public ArrayList SourceIn = null; public Short OPMode = null; public Short OPModeGreaterThanOrEqualTo = null; public Short OPModeGreaterThan = null; public Short OPModeLessThan = null; public Short OPModeLessThanOrEqualTo = null; public Short OPModeNotEqualTo = null; public ArrayList OPModeBetween = null; public ArrayList OPModeIn = null; public BigDecimal Amount = null; public BigDecimal AmountGreaterThanOrEqualTo = null; public BigDecimal AmountGreaterThan = null; public BigDecimal AmountLessThan = null; public BigDecimal AmountLessThanOrEqualTo = null; public BigDecimal AmountNotEqualTo = null; public ArrayList AmountBetween = null; public ArrayList AmountIn = null; public Date StartDate = null; public Date StartDateGreaterThanOrEqualTo = null; public Date StartDateGreaterThan = null; public Date StartDateLessThan = null; public Date StartDateLessThanOrEqualTo = null; public Date StartDateNotEqualTo = null; public ArrayList StartDateBetween = null; public ArrayList StartDateIn = null; public Date EndDate = null; public Date EndDateGreaterThanOrEqualTo = null; public Date EndDateGreaterThan = null; public Date EndDateLessThan = null; public Date EndDateLessThanOrEqualTo = null; public Date EndDateNotEqualTo = null; public ArrayList EndDateBetween = null; public ArrayList EndDateIn = null; public Boolean UseQuantityBreak = null; public BigDecimal QuantityBreak = null; public BigDecimal QuantityBreakGreaterThanOrEqualTo = null; public BigDecimal QuantityBreakGreaterThan = null; public BigDecimal QuantityBreakLessThan = null; public BigDecimal QuantityBreakLessThanOrEqualTo = null; public BigDecimal QuantityBreakNotEqualTo = null; public ArrayList QuantityBreakBetween = null; public ArrayList QuantityBreakIn = null; public Integer ItemNo = null; public Integer ItemNoGreaterThanOrEqualTo = null; public Integer ItemNoGreaterThan = null; public Integer ItemNoLessThan = null; public Integer ItemNoLessThanOrEqualTo = null; public Integer ItemNoNotEqualTo = null; public ArrayList ItemNoBetween = null; public ArrayList ItemNoIn = null; public ArrayList RowHash = null; public String Note = null; public String NoteStartsWith = null; public String NoteEndsWith = null; public String NoteContains = null; public String NoteLike = null; public ArrayList NoteBetween = null; public ArrayList NoteIn = null; public String getRecID() { return RecID; } public IN_DebtorSpecificPriceQuery setRecID(String value) { this.RecID = value; return this; } public String getRecIDStartsWith() { return RecIDStartsWith; } public IN_DebtorSpecificPriceQuery setRecIDStartsWith(String value) { this.RecIDStartsWith = value; return this; } public String getRecIDEndsWith() { return RecIDEndsWith; } public IN_DebtorSpecificPriceQuery setRecIDEndsWith(String value) { this.RecIDEndsWith = value; return this; } public String getRecIDContains() { return RecIDContains; } public IN_DebtorSpecificPriceQuery setRecIDContains(String value) { this.RecIDContains = value; return this; } public String getRecIDLike() { return RecIDLike; } public IN_DebtorSpecificPriceQuery setRecIDLike(String value) { this.RecIDLike = value; return this; } public ArrayList getRecIDBetween() { return RecIDBetween; } public IN_DebtorSpecificPriceQuery setRecIDBetween(ArrayList value) { this.RecIDBetween = value; return this; } public ArrayList getRecIDIn() { return RecIDIn; } public IN_DebtorSpecificPriceQuery setRecIDIn(ArrayList value) { this.RecIDIn = value; return this; } public String getInventoryID() { return InventoryID; } public IN_DebtorSpecificPriceQuery setInventoryID(String value) { this.InventoryID = value; return this; } public String getInventoryIDStartsWith() { return InventoryIDStartsWith; } public IN_DebtorSpecificPriceQuery setInventoryIDStartsWith(String value) { this.InventoryIDStartsWith = value; return this; } public String getInventoryIDEndsWith() { return InventoryIDEndsWith; } public IN_DebtorSpecificPriceQuery setInventoryIDEndsWith(String value) { this.InventoryIDEndsWith = value; return this; } public String getInventoryIDContains() { return InventoryIDContains; } public IN_DebtorSpecificPriceQuery setInventoryIDContains(String value) { this.InventoryIDContains = value; return this; } public String getInventoryIDLike() { return InventoryIDLike; } public IN_DebtorSpecificPriceQuery setInventoryIDLike(String value) { this.InventoryIDLike = value; return this; } public ArrayList getInventoryIDBetween() { return InventoryIDBetween; } public IN_DebtorSpecificPriceQuery setInventoryIDBetween(ArrayList value) { this.InventoryIDBetween = value; return this; } public ArrayList getInventoryIDIn() { return InventoryIDIn; } public IN_DebtorSpecificPriceQuery setInventoryIDIn(ArrayList value) { this.InventoryIDIn = value; return this; } public String getDebtorID() { return DebtorID; } public IN_DebtorSpecificPriceQuery setDebtorID(String value) { this.DebtorID = value; return this; } public String getDebtorIDStartsWith() { return DebtorIDStartsWith; } public IN_DebtorSpecificPriceQuery setDebtorIDStartsWith(String value) { this.DebtorIDStartsWith = value; return this; } public String getDebtorIDEndsWith() { return DebtorIDEndsWith; } public IN_DebtorSpecificPriceQuery setDebtorIDEndsWith(String value) { this.DebtorIDEndsWith = value; return this; } public String getDebtorIDContains() { return DebtorIDContains; } public IN_DebtorSpecificPriceQuery setDebtorIDContains(String value) { this.DebtorIDContains = value; return this; } public String getDebtorIDLike() { return DebtorIDLike; } public IN_DebtorSpecificPriceQuery setDebtorIDLike(String value) { this.DebtorIDLike = value; return this; } public ArrayList getDebtorIDBetween() { return DebtorIDBetween; } public IN_DebtorSpecificPriceQuery setDebtorIDBetween(ArrayList value) { this.DebtorIDBetween = value; return this; } public ArrayList getDebtorIDIn() { return DebtorIDIn; } public IN_DebtorSpecificPriceQuery setDebtorIDIn(ArrayList value) { this.DebtorIDIn = value; return this; } public Short getSource() { return Source; } public IN_DebtorSpecificPriceQuery setSource(Short value) { this.Source = value; return this; } public Short getSourceGreaterThanOrEqualTo() { return SourceGreaterThanOrEqualTo; } public IN_DebtorSpecificPriceQuery setSourceGreaterThanOrEqualTo(Short value) { this.SourceGreaterThanOrEqualTo = value; return this; } public Short getSourceGreaterThan() { return SourceGreaterThan; } public IN_DebtorSpecificPriceQuery setSourceGreaterThan(Short value) { this.SourceGreaterThan = value; return this; } public Short getSourceLessThan() { return SourceLessThan; } public IN_DebtorSpecificPriceQuery setSourceLessThan(Short value) { this.SourceLessThan = value; return this; } public Short getSourceLessThanOrEqualTo() { return SourceLessThanOrEqualTo; } public IN_DebtorSpecificPriceQuery setSourceLessThanOrEqualTo(Short value) { this.SourceLessThanOrEqualTo = value; return this; } public Short getSourceNotEqualTo() { return SourceNotEqualTo; } public IN_DebtorSpecificPriceQuery setSourceNotEqualTo(Short value) { this.SourceNotEqualTo = value; return this; } public ArrayList getSourceBetween() { return SourceBetween; } public IN_DebtorSpecificPriceQuery setSourceBetween(ArrayList value) { this.SourceBetween = value; return this; } public ArrayList getSourceIn() { return SourceIn; } public IN_DebtorSpecificPriceQuery setSourceIn(ArrayList value) { this.SourceIn = value; return this; } public Short getOpMode() { return OPMode; } public IN_DebtorSpecificPriceQuery setOpMode(Short value) { this.OPMode = value; return this; } public Short getOpModeGreaterThanOrEqualTo() { return OPModeGreaterThanOrEqualTo; } public IN_DebtorSpecificPriceQuery setOpModeGreaterThanOrEqualTo(Short value) { this.OPModeGreaterThanOrEqualTo = value; return this; } public Short getOpModeGreaterThan() { return OPModeGreaterThan; } public IN_DebtorSpecificPriceQuery setOpModeGreaterThan(Short value) { this.OPModeGreaterThan = value; return this; } public Short getOpModeLessThan() { return OPModeLessThan; } public IN_DebtorSpecificPriceQuery setOpModeLessThan(Short value) { this.OPModeLessThan = value; return this; } public Short getOpModeLessThanOrEqualTo() { return OPModeLessThanOrEqualTo; } public IN_DebtorSpecificPriceQuery setOpModeLessThanOrEqualTo(Short value) { this.OPModeLessThanOrEqualTo = value; return this; } public Short getOpModeNotEqualTo() { return OPModeNotEqualTo; } public IN_DebtorSpecificPriceQuery setOpModeNotEqualTo(Short value) { this.OPModeNotEqualTo = value; return this; } public ArrayList getOpModeBetween() { return OPModeBetween; } public IN_DebtorSpecificPriceQuery setOpModeBetween(ArrayList value) { this.OPModeBetween = value; return this; } public ArrayList getOpModeIn() { return OPModeIn; } public IN_DebtorSpecificPriceQuery setOpModeIn(ArrayList value) { this.OPModeIn = value; return this; } public BigDecimal getAmount() { return Amount; } public IN_DebtorSpecificPriceQuery setAmount(BigDecimal value) { this.Amount = value; return this; } public BigDecimal getAmountGreaterThanOrEqualTo() { return AmountGreaterThanOrEqualTo; } public IN_DebtorSpecificPriceQuery setAmountGreaterThanOrEqualTo(BigDecimal value) { this.AmountGreaterThanOrEqualTo = value; return this; } public BigDecimal getAmountGreaterThan() { return AmountGreaterThan; } public IN_DebtorSpecificPriceQuery setAmountGreaterThan(BigDecimal value) { this.AmountGreaterThan = value; return this; } public BigDecimal getAmountLessThan() { return AmountLessThan; } public IN_DebtorSpecificPriceQuery setAmountLessThan(BigDecimal value) { this.AmountLessThan = value; return this; } public BigDecimal getAmountLessThanOrEqualTo() { return AmountLessThanOrEqualTo; } public IN_DebtorSpecificPriceQuery setAmountLessThanOrEqualTo(BigDecimal value) { this.AmountLessThanOrEqualTo = value; return this; } public BigDecimal getAmountNotEqualTo() { return AmountNotEqualTo; } public IN_DebtorSpecificPriceQuery setAmountNotEqualTo(BigDecimal value) { this.AmountNotEqualTo = value; return this; } public ArrayList getAmountBetween() { return AmountBetween; } public IN_DebtorSpecificPriceQuery setAmountBetween(ArrayList value) { this.AmountBetween = value; return this; } public ArrayList getAmountIn() { return AmountIn; } public IN_DebtorSpecificPriceQuery setAmountIn(ArrayList value) { this.AmountIn = value; return this; } public Date getStartDate() { return StartDate; } public IN_DebtorSpecificPriceQuery setStartDate(Date value) { this.StartDate = value; return this; } public Date getStartDateGreaterThanOrEqualTo() { return StartDateGreaterThanOrEqualTo; } public IN_DebtorSpecificPriceQuery setStartDateGreaterThanOrEqualTo(Date value) { this.StartDateGreaterThanOrEqualTo = value; return this; } public Date getStartDateGreaterThan() { return StartDateGreaterThan; } public IN_DebtorSpecificPriceQuery setStartDateGreaterThan(Date value) { this.StartDateGreaterThan = value; return this; } public Date getStartDateLessThan() { return StartDateLessThan; } public IN_DebtorSpecificPriceQuery setStartDateLessThan(Date value) { this.StartDateLessThan = value; return this; } public Date getStartDateLessThanOrEqualTo() { return StartDateLessThanOrEqualTo; } public IN_DebtorSpecificPriceQuery setStartDateLessThanOrEqualTo(Date value) { this.StartDateLessThanOrEqualTo = value; return this; } public Date getStartDateNotEqualTo() { return StartDateNotEqualTo; } public IN_DebtorSpecificPriceQuery setStartDateNotEqualTo(Date value) { this.StartDateNotEqualTo = value; return this; } public ArrayList getStartDateBetween() { return StartDateBetween; } public IN_DebtorSpecificPriceQuery setStartDateBetween(ArrayList value) { this.StartDateBetween = value; return this; } public ArrayList getStartDateIn() { return StartDateIn; } public IN_DebtorSpecificPriceQuery setStartDateIn(ArrayList value) { this.StartDateIn = value; return this; } public Date getEndDate() { return EndDate; } public IN_DebtorSpecificPriceQuery setEndDate(Date value) { this.EndDate = value; return this; } public Date getEndDateGreaterThanOrEqualTo() { return EndDateGreaterThanOrEqualTo; } public IN_DebtorSpecificPriceQuery setEndDateGreaterThanOrEqualTo(Date value) { this.EndDateGreaterThanOrEqualTo = value; return this; } public Date getEndDateGreaterThan() { return EndDateGreaterThan; } public IN_DebtorSpecificPriceQuery setEndDateGreaterThan(Date value) { this.EndDateGreaterThan = value; return this; } public Date getEndDateLessThan() { return EndDateLessThan; } public IN_DebtorSpecificPriceQuery setEndDateLessThan(Date value) { this.EndDateLessThan = value; return this; } public Date getEndDateLessThanOrEqualTo() { return EndDateLessThanOrEqualTo; } public IN_DebtorSpecificPriceQuery setEndDateLessThanOrEqualTo(Date value) { this.EndDateLessThanOrEqualTo = value; return this; } public Date getEndDateNotEqualTo() { return EndDateNotEqualTo; } public IN_DebtorSpecificPriceQuery setEndDateNotEqualTo(Date value) { this.EndDateNotEqualTo = value; return this; } public ArrayList getEndDateBetween() { return EndDateBetween; } public IN_DebtorSpecificPriceQuery setEndDateBetween(ArrayList value) { this.EndDateBetween = value; return this; } public ArrayList getEndDateIn() { return EndDateIn; } public IN_DebtorSpecificPriceQuery setEndDateIn(ArrayList value) { this.EndDateIn = value; return this; } public Boolean isUseQuantityBreak() { return UseQuantityBreak; } public IN_DebtorSpecificPriceQuery setUseQuantityBreak(Boolean value) { this.UseQuantityBreak = value; return this; } public BigDecimal getQuantityBreak() { return QuantityBreak; } public IN_DebtorSpecificPriceQuery setQuantityBreak(BigDecimal value) { this.QuantityBreak = value; return this; } public BigDecimal getQuantityBreakGreaterThanOrEqualTo() { return QuantityBreakGreaterThanOrEqualTo; } public IN_DebtorSpecificPriceQuery setQuantityBreakGreaterThanOrEqualTo(BigDecimal value) { this.QuantityBreakGreaterThanOrEqualTo = value; return this; } public BigDecimal getQuantityBreakGreaterThan() { return QuantityBreakGreaterThan; } public IN_DebtorSpecificPriceQuery setQuantityBreakGreaterThan(BigDecimal value) { this.QuantityBreakGreaterThan = value; return this; } public BigDecimal getQuantityBreakLessThan() { return QuantityBreakLessThan; } public IN_DebtorSpecificPriceQuery setQuantityBreakLessThan(BigDecimal value) { this.QuantityBreakLessThan = value; return this; } public BigDecimal getQuantityBreakLessThanOrEqualTo() { return QuantityBreakLessThanOrEqualTo; } public IN_DebtorSpecificPriceQuery setQuantityBreakLessThanOrEqualTo(BigDecimal value) { this.QuantityBreakLessThanOrEqualTo = value; return this; } public BigDecimal getQuantityBreakNotEqualTo() { return QuantityBreakNotEqualTo; } public IN_DebtorSpecificPriceQuery setQuantityBreakNotEqualTo(BigDecimal value) { this.QuantityBreakNotEqualTo = value; return this; } public ArrayList getQuantityBreakBetween() { return QuantityBreakBetween; } public IN_DebtorSpecificPriceQuery setQuantityBreakBetween(ArrayList value) { this.QuantityBreakBetween = value; return this; } public ArrayList getQuantityBreakIn() { return QuantityBreakIn; } public IN_DebtorSpecificPriceQuery setQuantityBreakIn(ArrayList value) { this.QuantityBreakIn = value; return this; } public Integer getItemNo() { return ItemNo; } public IN_DebtorSpecificPriceQuery setItemNo(Integer value) { this.ItemNo = value; return this; } public Integer getItemNoGreaterThanOrEqualTo() { return ItemNoGreaterThanOrEqualTo; } public IN_DebtorSpecificPriceQuery setItemNoGreaterThanOrEqualTo(Integer value) { this.ItemNoGreaterThanOrEqualTo = value; return this; } public Integer getItemNoGreaterThan() { return ItemNoGreaterThan; } public IN_DebtorSpecificPriceQuery setItemNoGreaterThan(Integer value) { this.ItemNoGreaterThan = value; return this; } public Integer getItemNoLessThan() { return ItemNoLessThan; } public IN_DebtorSpecificPriceQuery setItemNoLessThan(Integer value) { this.ItemNoLessThan = value; return this; } public Integer getItemNoLessThanOrEqualTo() { return ItemNoLessThanOrEqualTo; } public IN_DebtorSpecificPriceQuery setItemNoLessThanOrEqualTo(Integer value) { this.ItemNoLessThanOrEqualTo = value; return this; } public Integer getItemNoNotEqualTo() { return ItemNoNotEqualTo; } public IN_DebtorSpecificPriceQuery setItemNoNotEqualTo(Integer value) { this.ItemNoNotEqualTo = value; return this; } public ArrayList getItemNoBetween() { return ItemNoBetween; } public IN_DebtorSpecificPriceQuery setItemNoBetween(ArrayList value) { this.ItemNoBetween = value; return this; } public ArrayList getItemNoIn() { return ItemNoIn; } public IN_DebtorSpecificPriceQuery setItemNoIn(ArrayList value) { this.ItemNoIn = value; return this; } public ArrayList getRowHash() { return RowHash; } public IN_DebtorSpecificPriceQuery setRowHash(ArrayList value) { this.RowHash = value; return this; } public String getNote() { return Note; } public IN_DebtorSpecificPriceQuery setNote(String value) { this.Note = value; return this; } public String getNoteStartsWith() { return NoteStartsWith; } public IN_DebtorSpecificPriceQuery setNoteStartsWith(String value) { this.NoteStartsWith = value; return this; } public String getNoteEndsWith() { return NoteEndsWith; } public IN_DebtorSpecificPriceQuery setNoteEndsWith(String value) { this.NoteEndsWith = value; return this; } public String getNoteContains() { return NoteContains; } public IN_DebtorSpecificPriceQuery setNoteContains(String value) { this.NoteContains = value; return this; } public String getNoteLike() { return NoteLike; } public IN_DebtorSpecificPriceQuery setNoteLike(String value) { this.NoteLike = value; return this; } public ArrayList getNoteBetween() { return NoteBetween; } public IN_DebtorSpecificPriceQuery setNoteBetween(ArrayList value) { this.NoteBetween = value; return this; } public ArrayList getNoteIn() { return NoteIn; } public IN_DebtorSpecificPriceQuery setNoteIn(ArrayList value) { this.NoteIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class IN_DescriptionQuery extends QueryDb implements IReturn> { public String DescriptionID = null; public String DescriptionIDStartsWith = null; public String DescriptionIDEndsWith = null; public String DescriptionIDContains = null; public String DescriptionIDLike = null; public ArrayList DescriptionIDBetween = null; public ArrayList DescriptionIDIn = null; public String InventoryID = null; public String InventoryIDStartsWith = null; public String InventoryIDEndsWith = null; public String InventoryIDContains = null; public String InventoryIDLike = null; public ArrayList InventoryIDBetween = null; public ArrayList InventoryIDIn = null; public String Description = null; public String DescriptionStartsWith = null; public String DescriptionEndsWith = null; public String DescriptionContains = null; public String DescriptionLike = null; public ArrayList DescriptionBetween = null; public ArrayList DescriptionIn = null; public String SY_Language_RecID = null; public String SY_Language_RecIDStartsWith = null; public String SY_Language_RecIDEndsWith = null; public String SY_Language_RecIDContains = null; public String SY_Language_RecIDLike = null; public ArrayList SY_Language_RecIDBetween = null; public ArrayList SY_Language_RecIDIn = null; public String getDescriptionID() { return DescriptionID; } public IN_DescriptionQuery setDescriptionID(String value) { this.DescriptionID = value; return this; } public String getDescriptionIDStartsWith() { return DescriptionIDStartsWith; } public IN_DescriptionQuery setDescriptionIDStartsWith(String value) { this.DescriptionIDStartsWith = value; return this; } public String getDescriptionIDEndsWith() { return DescriptionIDEndsWith; } public IN_DescriptionQuery setDescriptionIDEndsWith(String value) { this.DescriptionIDEndsWith = value; return this; } public String getDescriptionIDContains() { return DescriptionIDContains; } public IN_DescriptionQuery setDescriptionIDContains(String value) { this.DescriptionIDContains = value; return this; } public String getDescriptionIDLike() { return DescriptionIDLike; } public IN_DescriptionQuery setDescriptionIDLike(String value) { this.DescriptionIDLike = value; return this; } public ArrayList getDescriptionIDBetween() { return DescriptionIDBetween; } public IN_DescriptionQuery setDescriptionIDBetween(ArrayList value) { this.DescriptionIDBetween = value; return this; } public ArrayList getDescriptionIDIn() { return DescriptionIDIn; } public IN_DescriptionQuery setDescriptionIDIn(ArrayList value) { this.DescriptionIDIn = value; return this; } public String getInventoryID() { return InventoryID; } public IN_DescriptionQuery setInventoryID(String value) { this.InventoryID = value; return this; } public String getInventoryIDStartsWith() { return InventoryIDStartsWith; } public IN_DescriptionQuery setInventoryIDStartsWith(String value) { this.InventoryIDStartsWith = value; return this; } public String getInventoryIDEndsWith() { return InventoryIDEndsWith; } public IN_DescriptionQuery setInventoryIDEndsWith(String value) { this.InventoryIDEndsWith = value; return this; } public String getInventoryIDContains() { return InventoryIDContains; } public IN_DescriptionQuery setInventoryIDContains(String value) { this.InventoryIDContains = value; return this; } public String getInventoryIDLike() { return InventoryIDLike; } public IN_DescriptionQuery setInventoryIDLike(String value) { this.InventoryIDLike = value; return this; } public ArrayList getInventoryIDBetween() { return InventoryIDBetween; } public IN_DescriptionQuery setInventoryIDBetween(ArrayList value) { this.InventoryIDBetween = value; return this; } public ArrayList getInventoryIDIn() { return InventoryIDIn; } public IN_DescriptionQuery setInventoryIDIn(ArrayList value) { this.InventoryIDIn = value; return this; } public String getDescription() { return Description; } public IN_DescriptionQuery setDescription(String value) { this.Description = value; return this; } public String getDescriptionStartsWith() { return DescriptionStartsWith; } public IN_DescriptionQuery setDescriptionStartsWith(String value) { this.DescriptionStartsWith = value; return this; } public String getDescriptionEndsWith() { return DescriptionEndsWith; } public IN_DescriptionQuery setDescriptionEndsWith(String value) { this.DescriptionEndsWith = value; return this; } public String getDescriptionContains() { return DescriptionContains; } public IN_DescriptionQuery setDescriptionContains(String value) { this.DescriptionContains = value; return this; } public String getDescriptionLike() { return DescriptionLike; } public IN_DescriptionQuery setDescriptionLike(String value) { this.DescriptionLike = value; return this; } public ArrayList getDescriptionBetween() { return DescriptionBetween; } public IN_DescriptionQuery setDescriptionBetween(ArrayList value) { this.DescriptionBetween = value; return this; } public ArrayList getDescriptionIn() { return DescriptionIn; } public IN_DescriptionQuery setDescriptionIn(ArrayList value) { this.DescriptionIn = value; return this; } public String getSyLanguageRecID() { return SY_Language_RecID; } public IN_DescriptionQuery setSyLanguageRecID(String value) { this.SY_Language_RecID = value; return this; } public String getSyLanguageRecIDStartsWith() { return SY_Language_RecIDStartsWith; } public IN_DescriptionQuery setSyLanguageRecIDStartsWith(String value) { this.SY_Language_RecIDStartsWith = value; return this; } public String getSyLanguageRecIDEndsWith() { return SY_Language_RecIDEndsWith; } public IN_DescriptionQuery setSyLanguageRecIDEndsWith(String value) { this.SY_Language_RecIDEndsWith = value; return this; } public String getSyLanguageRecIDContains() { return SY_Language_RecIDContains; } public IN_DescriptionQuery setSyLanguageRecIDContains(String value) { this.SY_Language_RecIDContains = value; return this; } public String getSyLanguageRecIDLike() { return SY_Language_RecIDLike; } public IN_DescriptionQuery setSyLanguageRecIDLike(String value) { this.SY_Language_RecIDLike = value; return this; } public ArrayList getSyLanguageRecIDBetween() { return SY_Language_RecIDBetween; } public IN_DescriptionQuery setSyLanguageRecIDBetween(ArrayList value) { this.SY_Language_RecIDBetween = value; return this; } public ArrayList getSyLanguageRecIDIn() { return SY_Language_RecIDIn; } public IN_DescriptionQuery setSyLanguageRecIDIn(ArrayList value) { this.SY_Language_RecIDIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class IN_DocumentsQuery extends QueryDb implements IReturn> { public String RecID = null; public String RecIDStartsWith = null; public String RecIDEndsWith = null; public String RecIDContains = null; public String RecIDLike = null; public ArrayList RecIDBetween = null; public ArrayList RecIDIn = null; public String InventoryID = null; public String InventoryIDStartsWith = null; public String InventoryIDEndsWith = null; public String InventoryIDContains = null; public String InventoryIDLike = null; public ArrayList InventoryIDBetween = null; public ArrayList InventoryIDIn = null; public String DocumentTypeID = null; public String DocumentTypeIDStartsWith = null; public String DocumentTypeIDEndsWith = null; public String DocumentTypeIDContains = null; public String DocumentTypeIDLike = null; public ArrayList DocumentTypeIDBetween = null; public ArrayList DocumentTypeIDIn = null; public Date LastSavedDateTime = null; public Date LastSavedDateTimeGreaterThanOrEqualTo = null; public Date LastSavedDateTimeGreaterThan = null; public Date LastSavedDateTimeLessThan = null; public Date LastSavedDateTimeLessThanOrEqualTo = null; public Date LastSavedDateTimeNotEqualTo = null; public ArrayList LastSavedDateTimeBetween = null; public ArrayList LastSavedDateTimeIn = null; public String LastSavedByStaffID = null; public String LastSavedByStaffIDStartsWith = null; public String LastSavedByStaffIDEndsWith = null; public String LastSavedByStaffIDContains = null; public String LastSavedByStaffIDLike = null; public ArrayList LastSavedByStaffIDBetween = null; public ArrayList LastSavedByStaffIDIn = null; public ArrayList FileBinary = null; public String Description = null; public String DescriptionStartsWith = null; public String DescriptionEndsWith = null; public String DescriptionContains = null; public String DescriptionLike = null; public ArrayList DescriptionBetween = null; public ArrayList DescriptionIn = null; public String PhysicalFileName = null; public String PhysicalFileNameStartsWith = null; public String PhysicalFileNameEndsWith = null; public String PhysicalFileNameContains = null; public String PhysicalFileNameLike = null; public ArrayList PhysicalFileNameBetween = null; public ArrayList PhysicalFileNameIn = null; public Integer ItemNo = null; public Integer ItemNoGreaterThanOrEqualTo = null; public Integer ItemNoGreaterThan = null; public Integer ItemNoLessThan = null; public Integer ItemNoLessThanOrEqualTo = null; public Integer ItemNoNotEqualTo = null; public ArrayList ItemNoBetween = null; public ArrayList ItemNoIn = null; public String getRecID() { return RecID; } public IN_DocumentsQuery setRecID(String value) { this.RecID = value; return this; } public String getRecIDStartsWith() { return RecIDStartsWith; } public IN_DocumentsQuery setRecIDStartsWith(String value) { this.RecIDStartsWith = value; return this; } public String getRecIDEndsWith() { return RecIDEndsWith; } public IN_DocumentsQuery setRecIDEndsWith(String value) { this.RecIDEndsWith = value; return this; } public String getRecIDContains() { return RecIDContains; } public IN_DocumentsQuery setRecIDContains(String value) { this.RecIDContains = value; return this; } public String getRecIDLike() { return RecIDLike; } public IN_DocumentsQuery setRecIDLike(String value) { this.RecIDLike = value; return this; } public ArrayList getRecIDBetween() { return RecIDBetween; } public IN_DocumentsQuery setRecIDBetween(ArrayList value) { this.RecIDBetween = value; return this; } public ArrayList getRecIDIn() { return RecIDIn; } public IN_DocumentsQuery setRecIDIn(ArrayList value) { this.RecIDIn = value; return this; } public String getInventoryID() { return InventoryID; } public IN_DocumentsQuery setInventoryID(String value) { this.InventoryID = value; return this; } public String getInventoryIDStartsWith() { return InventoryIDStartsWith; } public IN_DocumentsQuery setInventoryIDStartsWith(String value) { this.InventoryIDStartsWith = value; return this; } public String getInventoryIDEndsWith() { return InventoryIDEndsWith; } public IN_DocumentsQuery setInventoryIDEndsWith(String value) { this.InventoryIDEndsWith = value; return this; } public String getInventoryIDContains() { return InventoryIDContains; } public IN_DocumentsQuery setInventoryIDContains(String value) { this.InventoryIDContains = value; return this; } public String getInventoryIDLike() { return InventoryIDLike; } public IN_DocumentsQuery setInventoryIDLike(String value) { this.InventoryIDLike = value; return this; } public ArrayList getInventoryIDBetween() { return InventoryIDBetween; } public IN_DocumentsQuery setInventoryIDBetween(ArrayList value) { this.InventoryIDBetween = value; return this; } public ArrayList getInventoryIDIn() { return InventoryIDIn; } public IN_DocumentsQuery setInventoryIDIn(ArrayList value) { this.InventoryIDIn = value; return this; } public String getDocumentTypeID() { return DocumentTypeID; } public IN_DocumentsQuery setDocumentTypeID(String value) { this.DocumentTypeID = value; return this; } public String getDocumentTypeIDStartsWith() { return DocumentTypeIDStartsWith; } public IN_DocumentsQuery setDocumentTypeIDStartsWith(String value) { this.DocumentTypeIDStartsWith = value; return this; } public String getDocumentTypeIDEndsWith() { return DocumentTypeIDEndsWith; } public IN_DocumentsQuery setDocumentTypeIDEndsWith(String value) { this.DocumentTypeIDEndsWith = value; return this; } public String getDocumentTypeIDContains() { return DocumentTypeIDContains; } public IN_DocumentsQuery setDocumentTypeIDContains(String value) { this.DocumentTypeIDContains = value; return this; } public String getDocumentTypeIDLike() { return DocumentTypeIDLike; } public IN_DocumentsQuery setDocumentTypeIDLike(String value) { this.DocumentTypeIDLike = value; return this; } public ArrayList getDocumentTypeIDBetween() { return DocumentTypeIDBetween; } public IN_DocumentsQuery setDocumentTypeIDBetween(ArrayList value) { this.DocumentTypeIDBetween = value; return this; } public ArrayList getDocumentTypeIDIn() { return DocumentTypeIDIn; } public IN_DocumentsQuery setDocumentTypeIDIn(ArrayList value) { this.DocumentTypeIDIn = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public IN_DocumentsQuery setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getLastSavedDateTimeGreaterThanOrEqualTo() { return LastSavedDateTimeGreaterThanOrEqualTo; } public IN_DocumentsQuery setLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.LastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeGreaterThan() { return LastSavedDateTimeGreaterThan; } public IN_DocumentsQuery setLastSavedDateTimeGreaterThan(Date value) { this.LastSavedDateTimeGreaterThan = value; return this; } public Date getLastSavedDateTimeLessThan() { return LastSavedDateTimeLessThan; } public IN_DocumentsQuery setLastSavedDateTimeLessThan(Date value) { this.LastSavedDateTimeLessThan = value; return this; } public Date getLastSavedDateTimeLessThanOrEqualTo() { return LastSavedDateTimeLessThanOrEqualTo; } public IN_DocumentsQuery setLastSavedDateTimeLessThanOrEqualTo(Date value) { this.LastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeNotEqualTo() { return LastSavedDateTimeNotEqualTo; } public IN_DocumentsQuery setLastSavedDateTimeNotEqualTo(Date value) { this.LastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getLastSavedDateTimeBetween() { return LastSavedDateTimeBetween; } public IN_DocumentsQuery setLastSavedDateTimeBetween(ArrayList value) { this.LastSavedDateTimeBetween = value; return this; } public ArrayList getLastSavedDateTimeIn() { return LastSavedDateTimeIn; } public IN_DocumentsQuery setLastSavedDateTimeIn(ArrayList value) { this.LastSavedDateTimeIn = value; return this; } public String getLastSavedByStaffID() { return LastSavedByStaffID; } public IN_DocumentsQuery setLastSavedByStaffID(String value) { this.LastSavedByStaffID = value; return this; } public String getLastSavedByStaffIDStartsWith() { return LastSavedByStaffIDStartsWith; } public IN_DocumentsQuery setLastSavedByStaffIDStartsWith(String value) { this.LastSavedByStaffIDStartsWith = value; return this; } public String getLastSavedByStaffIDEndsWith() { return LastSavedByStaffIDEndsWith; } public IN_DocumentsQuery setLastSavedByStaffIDEndsWith(String value) { this.LastSavedByStaffIDEndsWith = value; return this; } public String getLastSavedByStaffIDContains() { return LastSavedByStaffIDContains; } public IN_DocumentsQuery setLastSavedByStaffIDContains(String value) { this.LastSavedByStaffIDContains = value; return this; } public String getLastSavedByStaffIDLike() { return LastSavedByStaffIDLike; } public IN_DocumentsQuery setLastSavedByStaffIDLike(String value) { this.LastSavedByStaffIDLike = value; return this; } public ArrayList getLastSavedByStaffIDBetween() { return LastSavedByStaffIDBetween; } public IN_DocumentsQuery setLastSavedByStaffIDBetween(ArrayList value) { this.LastSavedByStaffIDBetween = value; return this; } public ArrayList getLastSavedByStaffIDIn() { return LastSavedByStaffIDIn; } public IN_DocumentsQuery setLastSavedByStaffIDIn(ArrayList value) { this.LastSavedByStaffIDIn = value; return this; } public ArrayList getFileBinary() { return FileBinary; } public IN_DocumentsQuery setFileBinary(ArrayList value) { this.FileBinary = value; return this; } public String getDescription() { return Description; } public IN_DocumentsQuery setDescription(String value) { this.Description = value; return this; } public String getDescriptionStartsWith() { return DescriptionStartsWith; } public IN_DocumentsQuery setDescriptionStartsWith(String value) { this.DescriptionStartsWith = value; return this; } public String getDescriptionEndsWith() { return DescriptionEndsWith; } public IN_DocumentsQuery setDescriptionEndsWith(String value) { this.DescriptionEndsWith = value; return this; } public String getDescriptionContains() { return DescriptionContains; } public IN_DocumentsQuery setDescriptionContains(String value) { this.DescriptionContains = value; return this; } public String getDescriptionLike() { return DescriptionLike; } public IN_DocumentsQuery setDescriptionLike(String value) { this.DescriptionLike = value; return this; } public ArrayList getDescriptionBetween() { return DescriptionBetween; } public IN_DocumentsQuery setDescriptionBetween(ArrayList value) { this.DescriptionBetween = value; return this; } public ArrayList getDescriptionIn() { return DescriptionIn; } public IN_DocumentsQuery setDescriptionIn(ArrayList value) { this.DescriptionIn = value; return this; } public String getPhysicalFileName() { return PhysicalFileName; } public IN_DocumentsQuery setPhysicalFileName(String value) { this.PhysicalFileName = value; return this; } public String getPhysicalFileNameStartsWith() { return PhysicalFileNameStartsWith; } public IN_DocumentsQuery setPhysicalFileNameStartsWith(String value) { this.PhysicalFileNameStartsWith = value; return this; } public String getPhysicalFileNameEndsWith() { return PhysicalFileNameEndsWith; } public IN_DocumentsQuery setPhysicalFileNameEndsWith(String value) { this.PhysicalFileNameEndsWith = value; return this; } public String getPhysicalFileNameContains() { return PhysicalFileNameContains; } public IN_DocumentsQuery setPhysicalFileNameContains(String value) { this.PhysicalFileNameContains = value; return this; } public String getPhysicalFileNameLike() { return PhysicalFileNameLike; } public IN_DocumentsQuery setPhysicalFileNameLike(String value) { this.PhysicalFileNameLike = value; return this; } public ArrayList getPhysicalFileNameBetween() { return PhysicalFileNameBetween; } public IN_DocumentsQuery setPhysicalFileNameBetween(ArrayList value) { this.PhysicalFileNameBetween = value; return this; } public ArrayList getPhysicalFileNameIn() { return PhysicalFileNameIn; } public IN_DocumentsQuery setPhysicalFileNameIn(ArrayList value) { this.PhysicalFileNameIn = value; return this; } public Integer getItemNo() { return ItemNo; } public IN_DocumentsQuery setItemNo(Integer value) { this.ItemNo = value; return this; } public Integer getItemNoGreaterThanOrEqualTo() { return ItemNoGreaterThanOrEqualTo; } public IN_DocumentsQuery setItemNoGreaterThanOrEqualTo(Integer value) { this.ItemNoGreaterThanOrEqualTo = value; return this; } public Integer getItemNoGreaterThan() { return ItemNoGreaterThan; } public IN_DocumentsQuery setItemNoGreaterThan(Integer value) { this.ItemNoGreaterThan = value; return this; } public Integer getItemNoLessThan() { return ItemNoLessThan; } public IN_DocumentsQuery setItemNoLessThan(Integer value) { this.ItemNoLessThan = value; return this; } public Integer getItemNoLessThanOrEqualTo() { return ItemNoLessThanOrEqualTo; } public IN_DocumentsQuery setItemNoLessThanOrEqualTo(Integer value) { this.ItemNoLessThanOrEqualTo = value; return this; } public Integer getItemNoNotEqualTo() { return ItemNoNotEqualTo; } public IN_DocumentsQuery setItemNoNotEqualTo(Integer value) { this.ItemNoNotEqualTo = value; return this; } public ArrayList getItemNoBetween() { return ItemNoBetween; } public IN_DocumentsQuery setItemNoBetween(ArrayList value) { this.ItemNoBetween = value; return this; } public ArrayList getItemNoIn() { return ItemNoIn; } public IN_DocumentsQuery setItemNoIn(ArrayList value) { this.ItemNoIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class IN_DutyQuery extends QueryDb implements IReturn> { public String DutyID = null; public String DutyIDStartsWith = null; public String DutyIDEndsWith = null; public String DutyIDContains = null; public String DutyIDLike = null; public ArrayList DutyIDBetween = null; public ArrayList DutyIDIn = null; public String Description = null; public String DescriptionStartsWith = null; public String DescriptionEndsWith = null; public String DescriptionContains = null; public String DescriptionLike = null; public ArrayList DescriptionBetween = null; public ArrayList DescriptionIn = null; public BigDecimal Value = null; public BigDecimal ValueGreaterThanOrEqualTo = null; public BigDecimal ValueGreaterThan = null; public BigDecimal ValueLessThan = null; public BigDecimal ValueLessThanOrEqualTo = null; public BigDecimal ValueNotEqualTo = null; public ArrayList ValueBetween = null; public ArrayList ValueIn = null; public Boolean IsDefault = null; public String getDutyID() { return DutyID; } public IN_DutyQuery setDutyID(String value) { this.DutyID = value; return this; } public String getDutyIDStartsWith() { return DutyIDStartsWith; } public IN_DutyQuery setDutyIDStartsWith(String value) { this.DutyIDStartsWith = value; return this; } public String getDutyIDEndsWith() { return DutyIDEndsWith; } public IN_DutyQuery setDutyIDEndsWith(String value) { this.DutyIDEndsWith = value; return this; } public String getDutyIDContains() { return DutyIDContains; } public IN_DutyQuery setDutyIDContains(String value) { this.DutyIDContains = value; return this; } public String getDutyIDLike() { return DutyIDLike; } public IN_DutyQuery setDutyIDLike(String value) { this.DutyIDLike = value; return this; } public ArrayList getDutyIDBetween() { return DutyIDBetween; } public IN_DutyQuery setDutyIDBetween(ArrayList value) { this.DutyIDBetween = value; return this; } public ArrayList getDutyIDIn() { return DutyIDIn; } public IN_DutyQuery setDutyIDIn(ArrayList value) { this.DutyIDIn = value; return this; } public String getDescription() { return Description; } public IN_DutyQuery setDescription(String value) { this.Description = value; return this; } public String getDescriptionStartsWith() { return DescriptionStartsWith; } public IN_DutyQuery setDescriptionStartsWith(String value) { this.DescriptionStartsWith = value; return this; } public String getDescriptionEndsWith() { return DescriptionEndsWith; } public IN_DutyQuery setDescriptionEndsWith(String value) { this.DescriptionEndsWith = value; return this; } public String getDescriptionContains() { return DescriptionContains; } public IN_DutyQuery setDescriptionContains(String value) { this.DescriptionContains = value; return this; } public String getDescriptionLike() { return DescriptionLike; } public IN_DutyQuery setDescriptionLike(String value) { this.DescriptionLike = value; return this; } public ArrayList getDescriptionBetween() { return DescriptionBetween; } public IN_DutyQuery setDescriptionBetween(ArrayList value) { this.DescriptionBetween = value; return this; } public ArrayList getDescriptionIn() { return DescriptionIn; } public IN_DutyQuery setDescriptionIn(ArrayList value) { this.DescriptionIn = value; return this; } public BigDecimal getValue() { return Value; } public IN_DutyQuery setValue(BigDecimal value) { this.Value = value; return this; } public BigDecimal getValueGreaterThanOrEqualTo() { return ValueGreaterThanOrEqualTo; } public IN_DutyQuery setValueGreaterThanOrEqualTo(BigDecimal value) { this.ValueGreaterThanOrEqualTo = value; return this; } public BigDecimal getValueGreaterThan() { return ValueGreaterThan; } public IN_DutyQuery setValueGreaterThan(BigDecimal value) { this.ValueGreaterThan = value; return this; } public BigDecimal getValueLessThan() { return ValueLessThan; } public IN_DutyQuery setValueLessThan(BigDecimal value) { this.ValueLessThan = value; return this; } public BigDecimal getValueLessThanOrEqualTo() { return ValueLessThanOrEqualTo; } public IN_DutyQuery setValueLessThanOrEqualTo(BigDecimal value) { this.ValueLessThanOrEqualTo = value; return this; } public BigDecimal getValueNotEqualTo() { return ValueNotEqualTo; } public IN_DutyQuery setValueNotEqualTo(BigDecimal value) { this.ValueNotEqualTo = value; return this; } public ArrayList getValueBetween() { return ValueBetween; } public IN_DutyQuery setValueBetween(ArrayList value) { this.ValueBetween = value; return this; } public ArrayList getValueIn() { return ValueIn; } public IN_DutyQuery setValueIn(ArrayList value) { this.ValueIn = value; return this; } public Boolean getIsDefault() { return IsDefault; } public IN_DutyQuery setIsDefault(Boolean value) { this.IsDefault = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class IN_FreightQuery extends QueryDb implements IReturn> { public String FreightInID = null; public String FreightInIDStartsWith = null; public String FreightInIDEndsWith = null; public String FreightInIDContains = null; public String FreightInIDLike = null; public ArrayList FreightInIDBetween = null; public ArrayList FreightInIDIn = null; public String Description = null; public String DescriptionStartsWith = null; public String DescriptionEndsWith = null; public String DescriptionContains = null; public String DescriptionLike = null; public ArrayList DescriptionBetween = null; public ArrayList DescriptionIn = null; public BigDecimal FreightValue = null; public BigDecimal FreightValueGreaterThanOrEqualTo = null; public BigDecimal FreightValueGreaterThan = null; public BigDecimal FreightValueLessThan = null; public BigDecimal FreightValueLessThanOrEqualTo = null; public BigDecimal FreightValueNotEqualTo = null; public ArrayList FreightValueBetween = null; public ArrayList FreightValueIn = null; public Short FreightType = null; public Short FreightTypeGreaterThanOrEqualTo = null; public Short FreightTypeGreaterThan = null; public Short FreightTypeLessThan = null; public Short FreightTypeLessThanOrEqualTo = null; public Short FreightTypeNotEqualTo = null; public ArrayList FreightTypeBetween = null; public ArrayList FreightTypeIn = null; public Boolean FreightFactor = null; public Boolean IsDefault = null; public String getFreightInID() { return FreightInID; } public IN_FreightQuery setFreightInID(String value) { this.FreightInID = value; return this; } public String getFreightInIDStartsWith() { return FreightInIDStartsWith; } public IN_FreightQuery setFreightInIDStartsWith(String value) { this.FreightInIDStartsWith = value; return this; } public String getFreightInIDEndsWith() { return FreightInIDEndsWith; } public IN_FreightQuery setFreightInIDEndsWith(String value) { this.FreightInIDEndsWith = value; return this; } public String getFreightInIDContains() { return FreightInIDContains; } public IN_FreightQuery setFreightInIDContains(String value) { this.FreightInIDContains = value; return this; } public String getFreightInIDLike() { return FreightInIDLike; } public IN_FreightQuery setFreightInIDLike(String value) { this.FreightInIDLike = value; return this; } public ArrayList getFreightInIDBetween() { return FreightInIDBetween; } public IN_FreightQuery setFreightInIDBetween(ArrayList value) { this.FreightInIDBetween = value; return this; } public ArrayList getFreightInIDIn() { return FreightInIDIn; } public IN_FreightQuery setFreightInIDIn(ArrayList value) { this.FreightInIDIn = value; return this; } public String getDescription() { return Description; } public IN_FreightQuery setDescription(String value) { this.Description = value; return this; } public String getDescriptionStartsWith() { return DescriptionStartsWith; } public IN_FreightQuery setDescriptionStartsWith(String value) { this.DescriptionStartsWith = value; return this; } public String getDescriptionEndsWith() { return DescriptionEndsWith; } public IN_FreightQuery setDescriptionEndsWith(String value) { this.DescriptionEndsWith = value; return this; } public String getDescriptionContains() { return DescriptionContains; } public IN_FreightQuery setDescriptionContains(String value) { this.DescriptionContains = value; return this; } public String getDescriptionLike() { return DescriptionLike; } public IN_FreightQuery setDescriptionLike(String value) { this.DescriptionLike = value; return this; } public ArrayList getDescriptionBetween() { return DescriptionBetween; } public IN_FreightQuery setDescriptionBetween(ArrayList value) { this.DescriptionBetween = value; return this; } public ArrayList getDescriptionIn() { return DescriptionIn; } public IN_FreightQuery setDescriptionIn(ArrayList value) { this.DescriptionIn = value; return this; } public BigDecimal getFreightValue() { return FreightValue; } public IN_FreightQuery setFreightValue(BigDecimal value) { this.FreightValue = value; return this; } public BigDecimal getFreightValueGreaterThanOrEqualTo() { return FreightValueGreaterThanOrEqualTo; } public IN_FreightQuery setFreightValueGreaterThanOrEqualTo(BigDecimal value) { this.FreightValueGreaterThanOrEqualTo = value; return this; } public BigDecimal getFreightValueGreaterThan() { return FreightValueGreaterThan; } public IN_FreightQuery setFreightValueGreaterThan(BigDecimal value) { this.FreightValueGreaterThan = value; return this; } public BigDecimal getFreightValueLessThan() { return FreightValueLessThan; } public IN_FreightQuery setFreightValueLessThan(BigDecimal value) { this.FreightValueLessThan = value; return this; } public BigDecimal getFreightValueLessThanOrEqualTo() { return FreightValueLessThanOrEqualTo; } public IN_FreightQuery setFreightValueLessThanOrEqualTo(BigDecimal value) { this.FreightValueLessThanOrEqualTo = value; return this; } public BigDecimal getFreightValueNotEqualTo() { return FreightValueNotEqualTo; } public IN_FreightQuery setFreightValueNotEqualTo(BigDecimal value) { this.FreightValueNotEqualTo = value; return this; } public ArrayList getFreightValueBetween() { return FreightValueBetween; } public IN_FreightQuery setFreightValueBetween(ArrayList value) { this.FreightValueBetween = value; return this; } public ArrayList getFreightValueIn() { return FreightValueIn; } public IN_FreightQuery setFreightValueIn(ArrayList value) { this.FreightValueIn = value; return this; } public Short getFreightType() { return FreightType; } public IN_FreightQuery setFreightType(Short value) { this.FreightType = value; return this; } public Short getFreightTypeGreaterThanOrEqualTo() { return FreightTypeGreaterThanOrEqualTo; } public IN_FreightQuery setFreightTypeGreaterThanOrEqualTo(Short value) { this.FreightTypeGreaterThanOrEqualTo = value; return this; } public Short getFreightTypeGreaterThan() { return FreightTypeGreaterThan; } public IN_FreightQuery setFreightTypeGreaterThan(Short value) { this.FreightTypeGreaterThan = value; return this; } public Short getFreightTypeLessThan() { return FreightTypeLessThan; } public IN_FreightQuery setFreightTypeLessThan(Short value) { this.FreightTypeLessThan = value; return this; } public Short getFreightTypeLessThanOrEqualTo() { return FreightTypeLessThanOrEqualTo; } public IN_FreightQuery setFreightTypeLessThanOrEqualTo(Short value) { this.FreightTypeLessThanOrEqualTo = value; return this; } public Short getFreightTypeNotEqualTo() { return FreightTypeNotEqualTo; } public IN_FreightQuery setFreightTypeNotEqualTo(Short value) { this.FreightTypeNotEqualTo = value; return this; } public ArrayList getFreightTypeBetween() { return FreightTypeBetween; } public IN_FreightQuery setFreightTypeBetween(ArrayList value) { this.FreightTypeBetween = value; return this; } public ArrayList getFreightTypeIn() { return FreightTypeIn; } public IN_FreightQuery setFreightTypeIn(ArrayList value) { this.FreightTypeIn = value; return this; } public Boolean isFreightFactor() { return FreightFactor; } public IN_FreightQuery setFreightFactor(Boolean value) { this.FreightFactor = value; return this; } public Boolean getIsDefault() { return IsDefault; } public IN_FreightQuery setIsDefault(Boolean value) { this.IsDefault = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class IN_GroupQuery extends QueryDb implements IReturn> { public String InventoryGroupID = null; public String InventoryGroupIDStartsWith = null; public String InventoryGroupIDEndsWith = null; public String InventoryGroupIDContains = null; public String InventoryGroupIDLike = null; public ArrayList InventoryGroupIDBetween = null; public ArrayList InventoryGroupIDIn = null; public Date LastSavedDateTime = null; public Date LastSavedDateTimeGreaterThanOrEqualTo = null; public Date LastSavedDateTimeGreaterThan = null; public Date LastSavedDateTimeLessThan = null; public Date LastSavedDateTimeLessThanOrEqualTo = null; public Date LastSavedDateTimeNotEqualTo = null; public ArrayList LastSavedDateTimeBetween = null; public ArrayList LastSavedDateTimeIn = null; public String Description = null; public String DescriptionStartsWith = null; public String DescriptionEndsWith = null; public String DescriptionContains = null; public String DescriptionLike = null; public ArrayList DescriptionBetween = null; public ArrayList DescriptionIn = null; public String InventoryGroupCollectionID = null; public String InventoryGroupCollectionIDStartsWith = null; public String InventoryGroupCollectionIDEndsWith = null; public String InventoryGroupCollectionIDContains = null; public String InventoryGroupCollectionIDLike = null; public ArrayList InventoryGroupCollectionIDBetween = null; public ArrayList InventoryGroupCollectionIDIn = null; public String getInventoryGroupID() { return InventoryGroupID; } public IN_GroupQuery setInventoryGroupID(String value) { this.InventoryGroupID = value; return this; } public String getInventoryGroupIDStartsWith() { return InventoryGroupIDStartsWith; } public IN_GroupQuery setInventoryGroupIDStartsWith(String value) { this.InventoryGroupIDStartsWith = value; return this; } public String getInventoryGroupIDEndsWith() { return InventoryGroupIDEndsWith; } public IN_GroupQuery setInventoryGroupIDEndsWith(String value) { this.InventoryGroupIDEndsWith = value; return this; } public String getInventoryGroupIDContains() { return InventoryGroupIDContains; } public IN_GroupQuery setInventoryGroupIDContains(String value) { this.InventoryGroupIDContains = value; return this; } public String getInventoryGroupIDLike() { return InventoryGroupIDLike; } public IN_GroupQuery setInventoryGroupIDLike(String value) { this.InventoryGroupIDLike = value; return this; } public ArrayList getInventoryGroupIDBetween() { return InventoryGroupIDBetween; } public IN_GroupQuery setInventoryGroupIDBetween(ArrayList value) { this.InventoryGroupIDBetween = value; return this; } public ArrayList getInventoryGroupIDIn() { return InventoryGroupIDIn; } public IN_GroupQuery setInventoryGroupIDIn(ArrayList value) { this.InventoryGroupIDIn = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public IN_GroupQuery setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getLastSavedDateTimeGreaterThanOrEqualTo() { return LastSavedDateTimeGreaterThanOrEqualTo; } public IN_GroupQuery setLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.LastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeGreaterThan() { return LastSavedDateTimeGreaterThan; } public IN_GroupQuery setLastSavedDateTimeGreaterThan(Date value) { this.LastSavedDateTimeGreaterThan = value; return this; } public Date getLastSavedDateTimeLessThan() { return LastSavedDateTimeLessThan; } public IN_GroupQuery setLastSavedDateTimeLessThan(Date value) { this.LastSavedDateTimeLessThan = value; return this; } public Date getLastSavedDateTimeLessThanOrEqualTo() { return LastSavedDateTimeLessThanOrEqualTo; } public IN_GroupQuery setLastSavedDateTimeLessThanOrEqualTo(Date value) { this.LastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeNotEqualTo() { return LastSavedDateTimeNotEqualTo; } public IN_GroupQuery setLastSavedDateTimeNotEqualTo(Date value) { this.LastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getLastSavedDateTimeBetween() { return LastSavedDateTimeBetween; } public IN_GroupQuery setLastSavedDateTimeBetween(ArrayList value) { this.LastSavedDateTimeBetween = value; return this; } public ArrayList getLastSavedDateTimeIn() { return LastSavedDateTimeIn; } public IN_GroupQuery setLastSavedDateTimeIn(ArrayList value) { this.LastSavedDateTimeIn = value; return this; } public String getDescription() { return Description; } public IN_GroupQuery setDescription(String value) { this.Description = value; return this; } public String getDescriptionStartsWith() { return DescriptionStartsWith; } public IN_GroupQuery setDescriptionStartsWith(String value) { this.DescriptionStartsWith = value; return this; } public String getDescriptionEndsWith() { return DescriptionEndsWith; } public IN_GroupQuery setDescriptionEndsWith(String value) { this.DescriptionEndsWith = value; return this; } public String getDescriptionContains() { return DescriptionContains; } public IN_GroupQuery setDescriptionContains(String value) { this.DescriptionContains = value; return this; } public String getDescriptionLike() { return DescriptionLike; } public IN_GroupQuery setDescriptionLike(String value) { this.DescriptionLike = value; return this; } public ArrayList getDescriptionBetween() { return DescriptionBetween; } public IN_GroupQuery setDescriptionBetween(ArrayList value) { this.DescriptionBetween = value; return this; } public ArrayList getDescriptionIn() { return DescriptionIn; } public IN_GroupQuery setDescriptionIn(ArrayList value) { this.DescriptionIn = value; return this; } public String getInventoryGroupCollectionID() { return InventoryGroupCollectionID; } public IN_GroupQuery setInventoryGroupCollectionID(String value) { this.InventoryGroupCollectionID = value; return this; } public String getInventoryGroupCollectionIDStartsWith() { return InventoryGroupCollectionIDStartsWith; } public IN_GroupQuery setInventoryGroupCollectionIDStartsWith(String value) { this.InventoryGroupCollectionIDStartsWith = value; return this; } public String getInventoryGroupCollectionIDEndsWith() { return InventoryGroupCollectionIDEndsWith; } public IN_GroupQuery setInventoryGroupCollectionIDEndsWith(String value) { this.InventoryGroupCollectionIDEndsWith = value; return this; } public String getInventoryGroupCollectionIDContains() { return InventoryGroupCollectionIDContains; } public IN_GroupQuery setInventoryGroupCollectionIDContains(String value) { this.InventoryGroupCollectionIDContains = value; return this; } public String getInventoryGroupCollectionIDLike() { return InventoryGroupCollectionIDLike; } public IN_GroupQuery setInventoryGroupCollectionIDLike(String value) { this.InventoryGroupCollectionIDLike = value; return this; } public ArrayList getInventoryGroupCollectionIDBetween() { return InventoryGroupCollectionIDBetween; } public IN_GroupQuery setInventoryGroupCollectionIDBetween(ArrayList value) { this.InventoryGroupCollectionIDBetween = value; return this; } public ArrayList getInventoryGroupCollectionIDIn() { return InventoryGroupCollectionIDIn; } public IN_GroupQuery setInventoryGroupCollectionIDIn(ArrayList value) { this.InventoryGroupCollectionIDIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class IN_GroupLinkQuery extends QueryDb implements IReturn> { public String LinkID = null; public String LinkIDStartsWith = null; public String LinkIDEndsWith = null; public String LinkIDContains = null; public String LinkIDLike = null; public ArrayList LinkIDBetween = null; public ArrayList LinkIDIn = null; public String InventoryGroupID = null; public String InventoryGroupIDStartsWith = null; public String InventoryGroupIDEndsWith = null; public String InventoryGroupIDContains = null; public String InventoryGroupIDLike = null; public ArrayList InventoryGroupIDBetween = null; public ArrayList InventoryGroupIDIn = null; public String InventoryID = null; public String InventoryIDStartsWith = null; public String InventoryIDEndsWith = null; public String InventoryIDContains = null; public String InventoryIDLike = null; public ArrayList InventoryIDBetween = null; public ArrayList InventoryIDIn = null; public String getLinkID() { return LinkID; } public IN_GroupLinkQuery setLinkID(String value) { this.LinkID = value; return this; } public String getLinkIDStartsWith() { return LinkIDStartsWith; } public IN_GroupLinkQuery setLinkIDStartsWith(String value) { this.LinkIDStartsWith = value; return this; } public String getLinkIDEndsWith() { return LinkIDEndsWith; } public IN_GroupLinkQuery setLinkIDEndsWith(String value) { this.LinkIDEndsWith = value; return this; } public String getLinkIDContains() { return LinkIDContains; } public IN_GroupLinkQuery setLinkIDContains(String value) { this.LinkIDContains = value; return this; } public String getLinkIDLike() { return LinkIDLike; } public IN_GroupLinkQuery setLinkIDLike(String value) { this.LinkIDLike = value; return this; } public ArrayList getLinkIDBetween() { return LinkIDBetween; } public IN_GroupLinkQuery setLinkIDBetween(ArrayList value) { this.LinkIDBetween = value; return this; } public ArrayList getLinkIDIn() { return LinkIDIn; } public IN_GroupLinkQuery setLinkIDIn(ArrayList value) { this.LinkIDIn = value; return this; } public String getInventoryGroupID() { return InventoryGroupID; } public IN_GroupLinkQuery setInventoryGroupID(String value) { this.InventoryGroupID = value; return this; } public String getInventoryGroupIDStartsWith() { return InventoryGroupIDStartsWith; } public IN_GroupLinkQuery setInventoryGroupIDStartsWith(String value) { this.InventoryGroupIDStartsWith = value; return this; } public String getInventoryGroupIDEndsWith() { return InventoryGroupIDEndsWith; } public IN_GroupLinkQuery setInventoryGroupIDEndsWith(String value) { this.InventoryGroupIDEndsWith = value; return this; } public String getInventoryGroupIDContains() { return InventoryGroupIDContains; } public IN_GroupLinkQuery setInventoryGroupIDContains(String value) { this.InventoryGroupIDContains = value; return this; } public String getInventoryGroupIDLike() { return InventoryGroupIDLike; } public IN_GroupLinkQuery setInventoryGroupIDLike(String value) { this.InventoryGroupIDLike = value; return this; } public ArrayList getInventoryGroupIDBetween() { return InventoryGroupIDBetween; } public IN_GroupLinkQuery setInventoryGroupIDBetween(ArrayList value) { this.InventoryGroupIDBetween = value; return this; } public ArrayList getInventoryGroupIDIn() { return InventoryGroupIDIn; } public IN_GroupLinkQuery setInventoryGroupIDIn(ArrayList value) { this.InventoryGroupIDIn = value; return this; } public String getInventoryID() { return InventoryID; } public IN_GroupLinkQuery setInventoryID(String value) { this.InventoryID = value; return this; } public String getInventoryIDStartsWith() { return InventoryIDStartsWith; } public IN_GroupLinkQuery setInventoryIDStartsWith(String value) { this.InventoryIDStartsWith = value; return this; } public String getInventoryIDEndsWith() { return InventoryIDEndsWith; } public IN_GroupLinkQuery setInventoryIDEndsWith(String value) { this.InventoryIDEndsWith = value; return this; } public String getInventoryIDContains() { return InventoryIDContains; } public IN_GroupLinkQuery setInventoryIDContains(String value) { this.InventoryIDContains = value; return this; } public String getInventoryIDLike() { return InventoryIDLike; } public IN_GroupLinkQuery setInventoryIDLike(String value) { this.InventoryIDLike = value; return this; } public ArrayList getInventoryIDBetween() { return InventoryIDBetween; } public IN_GroupLinkQuery setInventoryIDBetween(ArrayList value) { this.InventoryIDBetween = value; return this; } public ArrayList getInventoryIDIn() { return InventoryIDIn; } public IN_GroupLinkQuery setInventoryIDIn(ArrayList value) { this.InventoryIDIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class IN_InTransitWHQuery extends QueryDb implements IReturn> { public String IN_LogicalID = null; public String IN_LogicalIDStartsWith = null; public String IN_LogicalIDEndsWith = null; public String IN_LogicalIDContains = null; public String IN_LogicalIDLike = null; public ArrayList IN_LogicalIDBetween = null; public ArrayList IN_LogicalIDIn = null; public String IN_PhysicalID = null; public String IN_PhysicalIDStartsWith = null; public String IN_PhysicalIDEndsWith = null; public String IN_PhysicalIDContains = null; public String IN_PhysicalIDLike = null; public ArrayList IN_PhysicalIDBetween = null; public ArrayList IN_PhysicalIDIn = null; public Integer IsDefault = null; public Integer IsDefaultGreaterThanOrEqualTo = null; public Integer IsDefaultGreaterThan = null; public Integer IsDefaultLessThan = null; public Integer IsDefaultLessThanOrEqualTo = null; public Integer IsDefaultNotEqualTo = null; public ArrayList IsDefaultBetween = null; public ArrayList IsDefaultIn = null; public String getInLogicalID() { return IN_LogicalID; } public IN_InTransitWHQuery setInLogicalID(String value) { this.IN_LogicalID = value; return this; } public String getInLogicalIDStartsWith() { return IN_LogicalIDStartsWith; } public IN_InTransitWHQuery setInLogicalIDStartsWith(String value) { this.IN_LogicalIDStartsWith = value; return this; } public String getInLogicalIDEndsWith() { return IN_LogicalIDEndsWith; } public IN_InTransitWHQuery setInLogicalIDEndsWith(String value) { this.IN_LogicalIDEndsWith = value; return this; } public String getInLogicalIDContains() { return IN_LogicalIDContains; } public IN_InTransitWHQuery setInLogicalIDContains(String value) { this.IN_LogicalIDContains = value; return this; } public String getInLogicalIDLike() { return IN_LogicalIDLike; } public IN_InTransitWHQuery setInLogicalIDLike(String value) { this.IN_LogicalIDLike = value; return this; } public ArrayList getInLogicalIDBetween() { return IN_LogicalIDBetween; } public IN_InTransitWHQuery setInLogicalIDBetween(ArrayList value) { this.IN_LogicalIDBetween = value; return this; } public ArrayList getInLogicalIDIn() { return IN_LogicalIDIn; } public IN_InTransitWHQuery setInLogicalIDIn(ArrayList value) { this.IN_LogicalIDIn = value; return this; } public String getInPhysicalID() { return IN_PhysicalID; } public IN_InTransitWHQuery setInPhysicalID(String value) { this.IN_PhysicalID = value; return this; } public String getInPhysicalIDStartsWith() { return IN_PhysicalIDStartsWith; } public IN_InTransitWHQuery setInPhysicalIDStartsWith(String value) { this.IN_PhysicalIDStartsWith = value; return this; } public String getInPhysicalIDEndsWith() { return IN_PhysicalIDEndsWith; } public IN_InTransitWHQuery setInPhysicalIDEndsWith(String value) { this.IN_PhysicalIDEndsWith = value; return this; } public String getInPhysicalIDContains() { return IN_PhysicalIDContains; } public IN_InTransitWHQuery setInPhysicalIDContains(String value) { this.IN_PhysicalIDContains = value; return this; } public String getInPhysicalIDLike() { return IN_PhysicalIDLike; } public IN_InTransitWHQuery setInPhysicalIDLike(String value) { this.IN_PhysicalIDLike = value; return this; } public ArrayList getInPhysicalIDBetween() { return IN_PhysicalIDBetween; } public IN_InTransitWHQuery setInPhysicalIDBetween(ArrayList value) { this.IN_PhysicalIDBetween = value; return this; } public ArrayList getInPhysicalIDIn() { return IN_PhysicalIDIn; } public IN_InTransitWHQuery setInPhysicalIDIn(ArrayList value) { this.IN_PhysicalIDIn = value; return this; } public Integer getIsDefault() { return IsDefault; } public IN_InTransitWHQuery setIsDefault(Integer value) { this.IsDefault = value; return this; } public Integer getIsDefaultGreaterThanOrEqualTo() { return IsDefaultGreaterThanOrEqualTo; } public IN_InTransitWHQuery setIsDefaultGreaterThanOrEqualTo(Integer value) { this.IsDefaultGreaterThanOrEqualTo = value; return this; } public Integer getIsDefaultGreaterThan() { return IsDefaultGreaterThan; } public IN_InTransitWHQuery setIsDefaultGreaterThan(Integer value) { this.IsDefaultGreaterThan = value; return this; } public Integer getIsDefaultLessThan() { return IsDefaultLessThan; } public IN_InTransitWHQuery setIsDefaultLessThan(Integer value) { this.IsDefaultLessThan = value; return this; } public Integer getIsDefaultLessThanOrEqualTo() { return IsDefaultLessThanOrEqualTo; } public IN_InTransitWHQuery setIsDefaultLessThanOrEqualTo(Integer value) { this.IsDefaultLessThanOrEqualTo = value; return this; } public Integer getIsDefaultNotEqualTo() { return IsDefaultNotEqualTo; } public IN_InTransitWHQuery setIsDefaultNotEqualTo(Integer value) { this.IsDefaultNotEqualTo = value; return this; } public ArrayList getIsDefaultBetween() { return IsDefaultBetween; } public IN_InTransitWHQuery setIsDefaultBetween(ArrayList value) { this.IsDefaultBetween = value; return this; } public ArrayList getIsDefaultIn() { return IsDefaultIn; } public IN_InTransitWHQuery setIsDefaultIn(ArrayList value) { this.IsDefaultIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class IN_KitStockTakeLineKitComponentsQuery extends QueryDb implements IReturn> { public String KitStockTakeLineComponentID = null; public String KitStockTakeLineComponentIDStartsWith = null; public String KitStockTakeLineComponentIDEndsWith = null; public String KitStockTakeLineComponentIDContains = null; public String KitStockTakeLineComponentIDLike = null; public ArrayList KitStockTakeLineComponentIDBetween = null; public ArrayList KitStockTakeLineComponentIDIn = null; public String KitStockTakeLineID = null; public String KitStockTakeLineIDStartsWith = null; public String KitStockTakeLineIDEndsWith = null; public String KitStockTakeLineIDContains = null; public String KitStockTakeLineIDLike = null; public ArrayList KitStockTakeLineIDBetween = null; public ArrayList KitStockTakeLineIDIn = null; public String InventoryID = null; public String InventoryIDStartsWith = null; public String InventoryIDEndsWith = null; public String InventoryIDContains = null; public String InventoryIDLike = null; public ArrayList InventoryIDBetween = null; public ArrayList InventoryIDIn = null; public Short BOMObject = null; public Short BOMObjectGreaterThanOrEqualTo = null; public Short BOMObjectGreaterThan = null; public Short BOMObjectLessThan = null; public Short BOMObjectLessThanOrEqualTo = null; public Short BOMObjectNotEqualTo = null; public ArrayList BOMObjectBetween = null; public ArrayList BOMObjectIn = null; public Short DecimalPlaces = null; public Short DecimalPlacesGreaterThanOrEqualTo = null; public Short DecimalPlacesGreaterThan = null; public Short DecimalPlacesLessThan = null; public Short DecimalPlacesLessThanOrEqualTo = null; public Short DecimalPlacesNotEqualTo = null; public ArrayList DecimalPlacesBetween = null; public ArrayList DecimalPlacesIn = null; public BigDecimal KitRatioQuantity = null; public BigDecimal KitRatioQuantityGreaterThanOrEqualTo = null; public BigDecimal KitRatioQuantityGreaterThan = null; public BigDecimal KitRatioQuantityLessThan = null; public BigDecimal KitRatioQuantityLessThanOrEqualTo = null; public BigDecimal KitRatioQuantityNotEqualTo = null; public ArrayList KitRatioQuantityBetween = null; public ArrayList KitRatioQuantityIn = null; public BigDecimal QuantityCounted = null; public BigDecimal QuantityCountedGreaterThanOrEqualTo = null; public BigDecimal QuantityCountedGreaterThan = null; public BigDecimal QuantityCountedLessThan = null; public BigDecimal QuantityCountedLessThanOrEqualTo = null; public BigDecimal QuantityCountedNotEqualTo = null; public ArrayList QuantityCountedBetween = null; public ArrayList QuantityCountedIn = null; public String getKitStockTakeLineComponentID() { return KitStockTakeLineComponentID; } public IN_KitStockTakeLineKitComponentsQuery setKitStockTakeLineComponentID(String value) { this.KitStockTakeLineComponentID = value; return this; } public String getKitStockTakeLineComponentIDStartsWith() { return KitStockTakeLineComponentIDStartsWith; } public IN_KitStockTakeLineKitComponentsQuery setKitStockTakeLineComponentIDStartsWith(String value) { this.KitStockTakeLineComponentIDStartsWith = value; return this; } public String getKitStockTakeLineComponentIDEndsWith() { return KitStockTakeLineComponentIDEndsWith; } public IN_KitStockTakeLineKitComponentsQuery setKitStockTakeLineComponentIDEndsWith(String value) { this.KitStockTakeLineComponentIDEndsWith = value; return this; } public String getKitStockTakeLineComponentIDContains() { return KitStockTakeLineComponentIDContains; } public IN_KitStockTakeLineKitComponentsQuery setKitStockTakeLineComponentIDContains(String value) { this.KitStockTakeLineComponentIDContains = value; return this; } public String getKitStockTakeLineComponentIDLike() { return KitStockTakeLineComponentIDLike; } public IN_KitStockTakeLineKitComponentsQuery setKitStockTakeLineComponentIDLike(String value) { this.KitStockTakeLineComponentIDLike = value; return this; } public ArrayList getKitStockTakeLineComponentIDBetween() { return KitStockTakeLineComponentIDBetween; } public IN_KitStockTakeLineKitComponentsQuery setKitStockTakeLineComponentIDBetween(ArrayList value) { this.KitStockTakeLineComponentIDBetween = value; return this; } public ArrayList getKitStockTakeLineComponentIDIn() { return KitStockTakeLineComponentIDIn; } public IN_KitStockTakeLineKitComponentsQuery setKitStockTakeLineComponentIDIn(ArrayList value) { this.KitStockTakeLineComponentIDIn = value; return this; } public String getKitStockTakeLineID() { return KitStockTakeLineID; } public IN_KitStockTakeLineKitComponentsQuery setKitStockTakeLineID(String value) { this.KitStockTakeLineID = value; return this; } public String getKitStockTakeLineIDStartsWith() { return KitStockTakeLineIDStartsWith; } public IN_KitStockTakeLineKitComponentsQuery setKitStockTakeLineIDStartsWith(String value) { this.KitStockTakeLineIDStartsWith = value; return this; } public String getKitStockTakeLineIDEndsWith() { return KitStockTakeLineIDEndsWith; } public IN_KitStockTakeLineKitComponentsQuery setKitStockTakeLineIDEndsWith(String value) { this.KitStockTakeLineIDEndsWith = value; return this; } public String getKitStockTakeLineIDContains() { return KitStockTakeLineIDContains; } public IN_KitStockTakeLineKitComponentsQuery setKitStockTakeLineIDContains(String value) { this.KitStockTakeLineIDContains = value; return this; } public String getKitStockTakeLineIDLike() { return KitStockTakeLineIDLike; } public IN_KitStockTakeLineKitComponentsQuery setKitStockTakeLineIDLike(String value) { this.KitStockTakeLineIDLike = value; return this; } public ArrayList getKitStockTakeLineIDBetween() { return KitStockTakeLineIDBetween; } public IN_KitStockTakeLineKitComponentsQuery setKitStockTakeLineIDBetween(ArrayList value) { this.KitStockTakeLineIDBetween = value; return this; } public ArrayList getKitStockTakeLineIDIn() { return KitStockTakeLineIDIn; } public IN_KitStockTakeLineKitComponentsQuery setKitStockTakeLineIDIn(ArrayList value) { this.KitStockTakeLineIDIn = value; return this; } public String getInventoryID() { return InventoryID; } public IN_KitStockTakeLineKitComponentsQuery setInventoryID(String value) { this.InventoryID = value; return this; } public String getInventoryIDStartsWith() { return InventoryIDStartsWith; } public IN_KitStockTakeLineKitComponentsQuery setInventoryIDStartsWith(String value) { this.InventoryIDStartsWith = value; return this; } public String getInventoryIDEndsWith() { return InventoryIDEndsWith; } public IN_KitStockTakeLineKitComponentsQuery setInventoryIDEndsWith(String value) { this.InventoryIDEndsWith = value; return this; } public String getInventoryIDContains() { return InventoryIDContains; } public IN_KitStockTakeLineKitComponentsQuery setInventoryIDContains(String value) { this.InventoryIDContains = value; return this; } public String getInventoryIDLike() { return InventoryIDLike; } public IN_KitStockTakeLineKitComponentsQuery setInventoryIDLike(String value) { this.InventoryIDLike = value; return this; } public ArrayList getInventoryIDBetween() { return InventoryIDBetween; } public IN_KitStockTakeLineKitComponentsQuery setInventoryIDBetween(ArrayList value) { this.InventoryIDBetween = value; return this; } public ArrayList getInventoryIDIn() { return InventoryIDIn; } public IN_KitStockTakeLineKitComponentsQuery setInventoryIDIn(ArrayList value) { this.InventoryIDIn = value; return this; } public Short getBomObject() { return BOMObject; } public IN_KitStockTakeLineKitComponentsQuery setBomObject(Short value) { this.BOMObject = value; return this; } public Short getBomObjectGreaterThanOrEqualTo() { return BOMObjectGreaterThanOrEqualTo; } public IN_KitStockTakeLineKitComponentsQuery setBomObjectGreaterThanOrEqualTo(Short value) { this.BOMObjectGreaterThanOrEqualTo = value; return this; } public Short getBomObjectGreaterThan() { return BOMObjectGreaterThan; } public IN_KitStockTakeLineKitComponentsQuery setBomObjectGreaterThan(Short value) { this.BOMObjectGreaterThan = value; return this; } public Short getBomObjectLessThan() { return BOMObjectLessThan; } public IN_KitStockTakeLineKitComponentsQuery setBomObjectLessThan(Short value) { this.BOMObjectLessThan = value; return this; } public Short getBomObjectLessThanOrEqualTo() { return BOMObjectLessThanOrEqualTo; } public IN_KitStockTakeLineKitComponentsQuery setBomObjectLessThanOrEqualTo(Short value) { this.BOMObjectLessThanOrEqualTo = value; return this; } public Short getBomObjectNotEqualTo() { return BOMObjectNotEqualTo; } public IN_KitStockTakeLineKitComponentsQuery setBomObjectNotEqualTo(Short value) { this.BOMObjectNotEqualTo = value; return this; } public ArrayList getBomObjectBetween() { return BOMObjectBetween; } public IN_KitStockTakeLineKitComponentsQuery setBomObjectBetween(ArrayList value) { this.BOMObjectBetween = value; return this; } public ArrayList getBomObjectIn() { return BOMObjectIn; } public IN_KitStockTakeLineKitComponentsQuery setBomObjectIn(ArrayList value) { this.BOMObjectIn = value; return this; } public Short getDecimalPlaces() { return DecimalPlaces; } public IN_KitStockTakeLineKitComponentsQuery setDecimalPlaces(Short value) { this.DecimalPlaces = value; return this; } public Short getDecimalPlacesGreaterThanOrEqualTo() { return DecimalPlacesGreaterThanOrEqualTo; } public IN_KitStockTakeLineKitComponentsQuery setDecimalPlacesGreaterThanOrEqualTo(Short value) { this.DecimalPlacesGreaterThanOrEqualTo = value; return this; } public Short getDecimalPlacesGreaterThan() { return DecimalPlacesGreaterThan; } public IN_KitStockTakeLineKitComponentsQuery setDecimalPlacesGreaterThan(Short value) { this.DecimalPlacesGreaterThan = value; return this; } public Short getDecimalPlacesLessThan() { return DecimalPlacesLessThan; } public IN_KitStockTakeLineKitComponentsQuery setDecimalPlacesLessThan(Short value) { this.DecimalPlacesLessThan = value; return this; } public Short getDecimalPlacesLessThanOrEqualTo() { return DecimalPlacesLessThanOrEqualTo; } public IN_KitStockTakeLineKitComponentsQuery setDecimalPlacesLessThanOrEqualTo(Short value) { this.DecimalPlacesLessThanOrEqualTo = value; return this; } public Short getDecimalPlacesNotEqualTo() { return DecimalPlacesNotEqualTo; } public IN_KitStockTakeLineKitComponentsQuery setDecimalPlacesNotEqualTo(Short value) { this.DecimalPlacesNotEqualTo = value; return this; } public ArrayList getDecimalPlacesBetween() { return DecimalPlacesBetween; } public IN_KitStockTakeLineKitComponentsQuery setDecimalPlacesBetween(ArrayList value) { this.DecimalPlacesBetween = value; return this; } public ArrayList getDecimalPlacesIn() { return DecimalPlacesIn; } public IN_KitStockTakeLineKitComponentsQuery setDecimalPlacesIn(ArrayList value) { this.DecimalPlacesIn = value; return this; } public BigDecimal getKitRatioQuantity() { return KitRatioQuantity; } public IN_KitStockTakeLineKitComponentsQuery setKitRatioQuantity(BigDecimal value) { this.KitRatioQuantity = value; return this; } public BigDecimal getKitRatioQuantityGreaterThanOrEqualTo() { return KitRatioQuantityGreaterThanOrEqualTo; } public IN_KitStockTakeLineKitComponentsQuery setKitRatioQuantityGreaterThanOrEqualTo(BigDecimal value) { this.KitRatioQuantityGreaterThanOrEqualTo = value; return this; } public BigDecimal getKitRatioQuantityGreaterThan() { return KitRatioQuantityGreaterThan; } public IN_KitStockTakeLineKitComponentsQuery setKitRatioQuantityGreaterThan(BigDecimal value) { this.KitRatioQuantityGreaterThan = value; return this; } public BigDecimal getKitRatioQuantityLessThan() { return KitRatioQuantityLessThan; } public IN_KitStockTakeLineKitComponentsQuery setKitRatioQuantityLessThan(BigDecimal value) { this.KitRatioQuantityLessThan = value; return this; } public BigDecimal getKitRatioQuantityLessThanOrEqualTo() { return KitRatioQuantityLessThanOrEqualTo; } public IN_KitStockTakeLineKitComponentsQuery setKitRatioQuantityLessThanOrEqualTo(BigDecimal value) { this.KitRatioQuantityLessThanOrEqualTo = value; return this; } public BigDecimal getKitRatioQuantityNotEqualTo() { return KitRatioQuantityNotEqualTo; } public IN_KitStockTakeLineKitComponentsQuery setKitRatioQuantityNotEqualTo(BigDecimal value) { this.KitRatioQuantityNotEqualTo = value; return this; } public ArrayList getKitRatioQuantityBetween() { return KitRatioQuantityBetween; } public IN_KitStockTakeLineKitComponentsQuery setKitRatioQuantityBetween(ArrayList value) { this.KitRatioQuantityBetween = value; return this; } public ArrayList getKitRatioQuantityIn() { return KitRatioQuantityIn; } public IN_KitStockTakeLineKitComponentsQuery setKitRatioQuantityIn(ArrayList value) { this.KitRatioQuantityIn = value; return this; } public BigDecimal getQuantityCounted() { return QuantityCounted; } public IN_KitStockTakeLineKitComponentsQuery setQuantityCounted(BigDecimal value) { this.QuantityCounted = value; return this; } public BigDecimal getQuantityCountedGreaterThanOrEqualTo() { return QuantityCountedGreaterThanOrEqualTo; } public IN_KitStockTakeLineKitComponentsQuery setQuantityCountedGreaterThanOrEqualTo(BigDecimal value) { this.QuantityCountedGreaterThanOrEqualTo = value; return this; } public BigDecimal getQuantityCountedGreaterThan() { return QuantityCountedGreaterThan; } public IN_KitStockTakeLineKitComponentsQuery setQuantityCountedGreaterThan(BigDecimal value) { this.QuantityCountedGreaterThan = value; return this; } public BigDecimal getQuantityCountedLessThan() { return QuantityCountedLessThan; } public IN_KitStockTakeLineKitComponentsQuery setQuantityCountedLessThan(BigDecimal value) { this.QuantityCountedLessThan = value; return this; } public BigDecimal getQuantityCountedLessThanOrEqualTo() { return QuantityCountedLessThanOrEqualTo; } public IN_KitStockTakeLineKitComponentsQuery setQuantityCountedLessThanOrEqualTo(BigDecimal value) { this.QuantityCountedLessThanOrEqualTo = value; return this; } public BigDecimal getQuantityCountedNotEqualTo() { return QuantityCountedNotEqualTo; } public IN_KitStockTakeLineKitComponentsQuery setQuantityCountedNotEqualTo(BigDecimal value) { this.QuantityCountedNotEqualTo = value; return this; } public ArrayList getQuantityCountedBetween() { return QuantityCountedBetween; } public IN_KitStockTakeLineKitComponentsQuery setQuantityCountedBetween(ArrayList value) { this.QuantityCountedBetween = value; return this; } public ArrayList getQuantityCountedIn() { return QuantityCountedIn; } public IN_KitStockTakeLineKitComponentsQuery setQuantityCountedIn(ArrayList value) { this.QuantityCountedIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class IN_KitStockTakeLineKitsQuery extends QueryDb implements IReturn> { public String KitStockTakeLineID = null; public String KitStockTakeLineIDStartsWith = null; public String KitStockTakeLineIDEndsWith = null; public String KitStockTakeLineIDContains = null; public String KitStockTakeLineIDLike = null; public ArrayList KitStockTakeLineIDBetween = null; public ArrayList KitStockTakeLineIDIn = null; public String KitStockTakeID = null; public String KitStockTakeIDStartsWith = null; public String KitStockTakeIDEndsWith = null; public String KitStockTakeIDContains = null; public String KitStockTakeIDLike = null; public ArrayList KitStockTakeIDBetween = null; public ArrayList KitStockTakeIDIn = null; public String InventoryID = null; public String InventoryIDStartsWith = null; public String InventoryIDEndsWith = null; public String InventoryIDContains = null; public String InventoryIDLike = null; public ArrayList InventoryIDBetween = null; public ArrayList InventoryIDIn = null; public Short BOMObject = null; public Short BOMObjectGreaterThanOrEqualTo = null; public Short BOMObjectGreaterThan = null; public Short BOMObjectLessThan = null; public Short BOMObjectLessThanOrEqualTo = null; public Short BOMObjectNotEqualTo = null; public ArrayList BOMObjectBetween = null; public ArrayList BOMObjectIn = null; public Short DecimalPlaces = null; public Short DecimalPlacesGreaterThanOrEqualTo = null; public Short DecimalPlacesGreaterThan = null; public Short DecimalPlacesLessThan = null; public Short DecimalPlacesLessThanOrEqualTo = null; public Short DecimalPlacesNotEqualTo = null; public ArrayList DecimalPlacesBetween = null; public ArrayList DecimalPlacesIn = null; public BigDecimal Quantity = null; public BigDecimal QuantityGreaterThanOrEqualTo = null; public BigDecimal QuantityGreaterThan = null; public BigDecimal QuantityLessThan = null; public BigDecimal QuantityLessThanOrEqualTo = null; public BigDecimal QuantityNotEqualTo = null; public ArrayList QuantityBetween = null; public ArrayList QuantityIn = null; public Integer LineNumber = null; public Integer LineNumberGreaterThanOrEqualTo = null; public Integer LineNumberGreaterThan = null; public Integer LineNumberLessThan = null; public Integer LineNumberLessThanOrEqualTo = null; public Integer LineNumberNotEqualTo = null; public ArrayList LineNumberBetween = null; public ArrayList LineNumberIn = null; public Date LastSavedDateTime = null; public Date LastSavedDateTimeGreaterThanOrEqualTo = null; public Date LastSavedDateTimeGreaterThan = null; public Date LastSavedDateTimeLessThan = null; public Date LastSavedDateTimeLessThanOrEqualTo = null; public Date LastSavedDateTimeNotEqualTo = null; public ArrayList LastSavedDateTimeBetween = null; public ArrayList LastSavedDateTimeIn = null; public String getKitStockTakeLineID() { return KitStockTakeLineID; } public IN_KitStockTakeLineKitsQuery setKitStockTakeLineID(String value) { this.KitStockTakeLineID = value; return this; } public String getKitStockTakeLineIDStartsWith() { return KitStockTakeLineIDStartsWith; } public IN_KitStockTakeLineKitsQuery setKitStockTakeLineIDStartsWith(String value) { this.KitStockTakeLineIDStartsWith = value; return this; } public String getKitStockTakeLineIDEndsWith() { return KitStockTakeLineIDEndsWith; } public IN_KitStockTakeLineKitsQuery setKitStockTakeLineIDEndsWith(String value) { this.KitStockTakeLineIDEndsWith = value; return this; } public String getKitStockTakeLineIDContains() { return KitStockTakeLineIDContains; } public IN_KitStockTakeLineKitsQuery setKitStockTakeLineIDContains(String value) { this.KitStockTakeLineIDContains = value; return this; } public String getKitStockTakeLineIDLike() { return KitStockTakeLineIDLike; } public IN_KitStockTakeLineKitsQuery setKitStockTakeLineIDLike(String value) { this.KitStockTakeLineIDLike = value; return this; } public ArrayList getKitStockTakeLineIDBetween() { return KitStockTakeLineIDBetween; } public IN_KitStockTakeLineKitsQuery setKitStockTakeLineIDBetween(ArrayList value) { this.KitStockTakeLineIDBetween = value; return this; } public ArrayList getKitStockTakeLineIDIn() { return KitStockTakeLineIDIn; } public IN_KitStockTakeLineKitsQuery setKitStockTakeLineIDIn(ArrayList value) { this.KitStockTakeLineIDIn = value; return this; } public String getKitStockTakeID() { return KitStockTakeID; } public IN_KitStockTakeLineKitsQuery setKitStockTakeID(String value) { this.KitStockTakeID = value; return this; } public String getKitStockTakeIDStartsWith() { return KitStockTakeIDStartsWith; } public IN_KitStockTakeLineKitsQuery setKitStockTakeIDStartsWith(String value) { this.KitStockTakeIDStartsWith = value; return this; } public String getKitStockTakeIDEndsWith() { return KitStockTakeIDEndsWith; } public IN_KitStockTakeLineKitsQuery setKitStockTakeIDEndsWith(String value) { this.KitStockTakeIDEndsWith = value; return this; } public String getKitStockTakeIDContains() { return KitStockTakeIDContains; } public IN_KitStockTakeLineKitsQuery setKitStockTakeIDContains(String value) { this.KitStockTakeIDContains = value; return this; } public String getKitStockTakeIDLike() { return KitStockTakeIDLike; } public IN_KitStockTakeLineKitsQuery setKitStockTakeIDLike(String value) { this.KitStockTakeIDLike = value; return this; } public ArrayList getKitStockTakeIDBetween() { return KitStockTakeIDBetween; } public IN_KitStockTakeLineKitsQuery setKitStockTakeIDBetween(ArrayList value) { this.KitStockTakeIDBetween = value; return this; } public ArrayList getKitStockTakeIDIn() { return KitStockTakeIDIn; } public IN_KitStockTakeLineKitsQuery setKitStockTakeIDIn(ArrayList value) { this.KitStockTakeIDIn = value; return this; } public String getInventoryID() { return InventoryID; } public IN_KitStockTakeLineKitsQuery setInventoryID(String value) { this.InventoryID = value; return this; } public String getInventoryIDStartsWith() { return InventoryIDStartsWith; } public IN_KitStockTakeLineKitsQuery setInventoryIDStartsWith(String value) { this.InventoryIDStartsWith = value; return this; } public String getInventoryIDEndsWith() { return InventoryIDEndsWith; } public IN_KitStockTakeLineKitsQuery setInventoryIDEndsWith(String value) { this.InventoryIDEndsWith = value; return this; } public String getInventoryIDContains() { return InventoryIDContains; } public IN_KitStockTakeLineKitsQuery setInventoryIDContains(String value) { this.InventoryIDContains = value; return this; } public String getInventoryIDLike() { return InventoryIDLike; } public IN_KitStockTakeLineKitsQuery setInventoryIDLike(String value) { this.InventoryIDLike = value; return this; } public ArrayList getInventoryIDBetween() { return InventoryIDBetween; } public IN_KitStockTakeLineKitsQuery setInventoryIDBetween(ArrayList value) { this.InventoryIDBetween = value; return this; } public ArrayList getInventoryIDIn() { return InventoryIDIn; } public IN_KitStockTakeLineKitsQuery setInventoryIDIn(ArrayList value) { this.InventoryIDIn = value; return this; } public Short getBomObject() { return BOMObject; } public IN_KitStockTakeLineKitsQuery setBomObject(Short value) { this.BOMObject = value; return this; } public Short getBomObjectGreaterThanOrEqualTo() { return BOMObjectGreaterThanOrEqualTo; } public IN_KitStockTakeLineKitsQuery setBomObjectGreaterThanOrEqualTo(Short value) { this.BOMObjectGreaterThanOrEqualTo = value; return this; } public Short getBomObjectGreaterThan() { return BOMObjectGreaterThan; } public IN_KitStockTakeLineKitsQuery setBomObjectGreaterThan(Short value) { this.BOMObjectGreaterThan = value; return this; } public Short getBomObjectLessThan() { return BOMObjectLessThan; } public IN_KitStockTakeLineKitsQuery setBomObjectLessThan(Short value) { this.BOMObjectLessThan = value; return this; } public Short getBomObjectLessThanOrEqualTo() { return BOMObjectLessThanOrEqualTo; } public IN_KitStockTakeLineKitsQuery setBomObjectLessThanOrEqualTo(Short value) { this.BOMObjectLessThanOrEqualTo = value; return this; } public Short getBomObjectNotEqualTo() { return BOMObjectNotEqualTo; } public IN_KitStockTakeLineKitsQuery setBomObjectNotEqualTo(Short value) { this.BOMObjectNotEqualTo = value; return this; } public ArrayList getBomObjectBetween() { return BOMObjectBetween; } public IN_KitStockTakeLineKitsQuery setBomObjectBetween(ArrayList value) { this.BOMObjectBetween = value; return this; } public ArrayList getBomObjectIn() { return BOMObjectIn; } public IN_KitStockTakeLineKitsQuery setBomObjectIn(ArrayList value) { this.BOMObjectIn = value; return this; } public Short getDecimalPlaces() { return DecimalPlaces; } public IN_KitStockTakeLineKitsQuery setDecimalPlaces(Short value) { this.DecimalPlaces = value; return this; } public Short getDecimalPlacesGreaterThanOrEqualTo() { return DecimalPlacesGreaterThanOrEqualTo; } public IN_KitStockTakeLineKitsQuery setDecimalPlacesGreaterThanOrEqualTo(Short value) { this.DecimalPlacesGreaterThanOrEqualTo = value; return this; } public Short getDecimalPlacesGreaterThan() { return DecimalPlacesGreaterThan; } public IN_KitStockTakeLineKitsQuery setDecimalPlacesGreaterThan(Short value) { this.DecimalPlacesGreaterThan = value; return this; } public Short getDecimalPlacesLessThan() { return DecimalPlacesLessThan; } public IN_KitStockTakeLineKitsQuery setDecimalPlacesLessThan(Short value) { this.DecimalPlacesLessThan = value; return this; } public Short getDecimalPlacesLessThanOrEqualTo() { return DecimalPlacesLessThanOrEqualTo; } public IN_KitStockTakeLineKitsQuery setDecimalPlacesLessThanOrEqualTo(Short value) { this.DecimalPlacesLessThanOrEqualTo = value; return this; } public Short getDecimalPlacesNotEqualTo() { return DecimalPlacesNotEqualTo; } public IN_KitStockTakeLineKitsQuery setDecimalPlacesNotEqualTo(Short value) { this.DecimalPlacesNotEqualTo = value; return this; } public ArrayList getDecimalPlacesBetween() { return DecimalPlacesBetween; } public IN_KitStockTakeLineKitsQuery setDecimalPlacesBetween(ArrayList value) { this.DecimalPlacesBetween = value; return this; } public ArrayList getDecimalPlacesIn() { return DecimalPlacesIn; } public IN_KitStockTakeLineKitsQuery setDecimalPlacesIn(ArrayList value) { this.DecimalPlacesIn = value; return this; } public BigDecimal getQuantity() { return Quantity; } public IN_KitStockTakeLineKitsQuery setQuantity(BigDecimal value) { this.Quantity = value; return this; } public BigDecimal getQuantityGreaterThanOrEqualTo() { return QuantityGreaterThanOrEqualTo; } public IN_KitStockTakeLineKitsQuery setQuantityGreaterThanOrEqualTo(BigDecimal value) { this.QuantityGreaterThanOrEqualTo = value; return this; } public BigDecimal getQuantityGreaterThan() { return QuantityGreaterThan; } public IN_KitStockTakeLineKitsQuery setQuantityGreaterThan(BigDecimal value) { this.QuantityGreaterThan = value; return this; } public BigDecimal getQuantityLessThan() { return QuantityLessThan; } public IN_KitStockTakeLineKitsQuery setQuantityLessThan(BigDecimal value) { this.QuantityLessThan = value; return this; } public BigDecimal getQuantityLessThanOrEqualTo() { return QuantityLessThanOrEqualTo; } public IN_KitStockTakeLineKitsQuery setQuantityLessThanOrEqualTo(BigDecimal value) { this.QuantityLessThanOrEqualTo = value; return this; } public BigDecimal getQuantityNotEqualTo() { return QuantityNotEqualTo; } public IN_KitStockTakeLineKitsQuery setQuantityNotEqualTo(BigDecimal value) { this.QuantityNotEqualTo = value; return this; } public ArrayList getQuantityBetween() { return QuantityBetween; } public IN_KitStockTakeLineKitsQuery setQuantityBetween(ArrayList value) { this.QuantityBetween = value; return this; } public ArrayList getQuantityIn() { return QuantityIn; } public IN_KitStockTakeLineKitsQuery setQuantityIn(ArrayList value) { this.QuantityIn = value; return this; } public Integer getLineNumber() { return LineNumber; } public IN_KitStockTakeLineKitsQuery setLineNumber(Integer value) { this.LineNumber = value; return this; } public Integer getLineNumberGreaterThanOrEqualTo() { return LineNumberGreaterThanOrEqualTo; } public IN_KitStockTakeLineKitsQuery setLineNumberGreaterThanOrEqualTo(Integer value) { this.LineNumberGreaterThanOrEqualTo = value; return this; } public Integer getLineNumberGreaterThan() { return LineNumberGreaterThan; } public IN_KitStockTakeLineKitsQuery setLineNumberGreaterThan(Integer value) { this.LineNumberGreaterThan = value; return this; } public Integer getLineNumberLessThan() { return LineNumberLessThan; } public IN_KitStockTakeLineKitsQuery setLineNumberLessThan(Integer value) { this.LineNumberLessThan = value; return this; } public Integer getLineNumberLessThanOrEqualTo() { return LineNumberLessThanOrEqualTo; } public IN_KitStockTakeLineKitsQuery setLineNumberLessThanOrEqualTo(Integer value) { this.LineNumberLessThanOrEqualTo = value; return this; } public Integer getLineNumberNotEqualTo() { return LineNumberNotEqualTo; } public IN_KitStockTakeLineKitsQuery setLineNumberNotEqualTo(Integer value) { this.LineNumberNotEqualTo = value; return this; } public ArrayList getLineNumberBetween() { return LineNumberBetween; } public IN_KitStockTakeLineKitsQuery setLineNumberBetween(ArrayList value) { this.LineNumberBetween = value; return this; } public ArrayList getLineNumberIn() { return LineNumberIn; } public IN_KitStockTakeLineKitsQuery setLineNumberIn(ArrayList value) { this.LineNumberIn = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public IN_KitStockTakeLineKitsQuery setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getLastSavedDateTimeGreaterThanOrEqualTo() { return LastSavedDateTimeGreaterThanOrEqualTo; } public IN_KitStockTakeLineKitsQuery setLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.LastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeGreaterThan() { return LastSavedDateTimeGreaterThan; } public IN_KitStockTakeLineKitsQuery setLastSavedDateTimeGreaterThan(Date value) { this.LastSavedDateTimeGreaterThan = value; return this; } public Date getLastSavedDateTimeLessThan() { return LastSavedDateTimeLessThan; } public IN_KitStockTakeLineKitsQuery setLastSavedDateTimeLessThan(Date value) { this.LastSavedDateTimeLessThan = value; return this; } public Date getLastSavedDateTimeLessThanOrEqualTo() { return LastSavedDateTimeLessThanOrEqualTo; } public IN_KitStockTakeLineKitsQuery setLastSavedDateTimeLessThanOrEqualTo(Date value) { this.LastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeNotEqualTo() { return LastSavedDateTimeNotEqualTo; } public IN_KitStockTakeLineKitsQuery setLastSavedDateTimeNotEqualTo(Date value) { this.LastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getLastSavedDateTimeBetween() { return LastSavedDateTimeBetween; } public IN_KitStockTakeLineKitsQuery setLastSavedDateTimeBetween(ArrayList value) { this.LastSavedDateTimeBetween = value; return this; } public ArrayList getLastSavedDateTimeIn() { return LastSavedDateTimeIn; } public IN_KitStockTakeLineKitsQuery setLastSavedDateTimeIn(ArrayList value) { this.LastSavedDateTimeIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class IN_KitStockTakeMainQuery extends QueryDb implements IReturn> { public String KitStockTakeID = null; public String KitStockTakeIDStartsWith = null; public String KitStockTakeIDEndsWith = null; public String KitStockTakeIDContains = null; public String KitStockTakeIDLike = null; public ArrayList KitStockTakeIDBetween = null; public ArrayList KitStockTakeIDIn = null; public String KitStockTakeNo = null; public String KitStockTakeNoStartsWith = null; public String KitStockTakeNoEndsWith = null; public String KitStockTakeNoContains = null; public String KitStockTakeNoLike = null; public ArrayList KitStockTakeNoBetween = null; public ArrayList KitStockTakeNoIn = null; public String KitStockTakeNotes = null; public String KitStockTakeNotesStartsWith = null; public String KitStockTakeNotesEndsWith = null; public String KitStockTakeNotesContains = null; public String KitStockTakeNotesLike = null; public ArrayList KitStockTakeNotesBetween = null; public ArrayList KitStockTakeNotesIn = null; public Boolean KitStockTakeStatus = null; public Date KitStockTakeDate = null; public Date KitStockTakeDateGreaterThanOrEqualTo = null; public Date KitStockTakeDateGreaterThan = null; public Date KitStockTakeDateLessThan = null; public Date KitStockTakeDateLessThanOrEqualTo = null; public Date KitStockTakeDateNotEqualTo = null; public ArrayList KitStockTakeDateBetween = null; public ArrayList KitStockTakeDateIn = null; public String StaffID = null; public String StaffIDStartsWith = null; public String StaffIDEndsWith = null; public String StaffIDContains = null; public String StaffIDLike = null; public ArrayList StaffIDBetween = null; public ArrayList StaffIDIn = null; public String IN_LogicalID = null; public String IN_LogicalIDStartsWith = null; public String IN_LogicalIDEndsWith = null; public String IN_LogicalIDContains = null; public String IN_LogicalIDLike = null; public ArrayList IN_LogicalIDBetween = null; public ArrayList IN_LogicalIDIn = null; public Date LastSavedDateTime = null; public Date LastSavedDateTimeGreaterThanOrEqualTo = null; public Date LastSavedDateTimeGreaterThan = null; public Date LastSavedDateTimeLessThan = null; public Date LastSavedDateTimeLessThanOrEqualTo = null; public Date LastSavedDateTimeNotEqualTo = null; public ArrayList LastSavedDateTimeBetween = null; public ArrayList LastSavedDateTimeIn = null; public String getKitStockTakeID() { return KitStockTakeID; } public IN_KitStockTakeMainQuery setKitStockTakeID(String value) { this.KitStockTakeID = value; return this; } public String getKitStockTakeIDStartsWith() { return KitStockTakeIDStartsWith; } public IN_KitStockTakeMainQuery setKitStockTakeIDStartsWith(String value) { this.KitStockTakeIDStartsWith = value; return this; } public String getKitStockTakeIDEndsWith() { return KitStockTakeIDEndsWith; } public IN_KitStockTakeMainQuery setKitStockTakeIDEndsWith(String value) { this.KitStockTakeIDEndsWith = value; return this; } public String getKitStockTakeIDContains() { return KitStockTakeIDContains; } public IN_KitStockTakeMainQuery setKitStockTakeIDContains(String value) { this.KitStockTakeIDContains = value; return this; } public String getKitStockTakeIDLike() { return KitStockTakeIDLike; } public IN_KitStockTakeMainQuery setKitStockTakeIDLike(String value) { this.KitStockTakeIDLike = value; return this; } public ArrayList getKitStockTakeIDBetween() { return KitStockTakeIDBetween; } public IN_KitStockTakeMainQuery setKitStockTakeIDBetween(ArrayList value) { this.KitStockTakeIDBetween = value; return this; } public ArrayList getKitStockTakeIDIn() { return KitStockTakeIDIn; } public IN_KitStockTakeMainQuery setKitStockTakeIDIn(ArrayList value) { this.KitStockTakeIDIn = value; return this; } public String getKitStockTakeNo() { return KitStockTakeNo; } public IN_KitStockTakeMainQuery setKitStockTakeNo(String value) { this.KitStockTakeNo = value; return this; } public String getKitStockTakeNoStartsWith() { return KitStockTakeNoStartsWith; } public IN_KitStockTakeMainQuery setKitStockTakeNoStartsWith(String value) { this.KitStockTakeNoStartsWith = value; return this; } public String getKitStockTakeNoEndsWith() { return KitStockTakeNoEndsWith; } public IN_KitStockTakeMainQuery setKitStockTakeNoEndsWith(String value) { this.KitStockTakeNoEndsWith = value; return this; } public String getKitStockTakeNoContains() { return KitStockTakeNoContains; } public IN_KitStockTakeMainQuery setKitStockTakeNoContains(String value) { this.KitStockTakeNoContains = value; return this; } public String getKitStockTakeNoLike() { return KitStockTakeNoLike; } public IN_KitStockTakeMainQuery setKitStockTakeNoLike(String value) { this.KitStockTakeNoLike = value; return this; } public ArrayList getKitStockTakeNoBetween() { return KitStockTakeNoBetween; } public IN_KitStockTakeMainQuery setKitStockTakeNoBetween(ArrayList value) { this.KitStockTakeNoBetween = value; return this; } public ArrayList getKitStockTakeNoIn() { return KitStockTakeNoIn; } public IN_KitStockTakeMainQuery setKitStockTakeNoIn(ArrayList value) { this.KitStockTakeNoIn = value; return this; } public String getKitStockTakeNotes() { return KitStockTakeNotes; } public IN_KitStockTakeMainQuery setKitStockTakeNotes(String value) { this.KitStockTakeNotes = value; return this; } public String getKitStockTakeNotesStartsWith() { return KitStockTakeNotesStartsWith; } public IN_KitStockTakeMainQuery setKitStockTakeNotesStartsWith(String value) { this.KitStockTakeNotesStartsWith = value; return this; } public String getKitStockTakeNotesEndsWith() { return KitStockTakeNotesEndsWith; } public IN_KitStockTakeMainQuery setKitStockTakeNotesEndsWith(String value) { this.KitStockTakeNotesEndsWith = value; return this; } public String getKitStockTakeNotesContains() { return KitStockTakeNotesContains; } public IN_KitStockTakeMainQuery setKitStockTakeNotesContains(String value) { this.KitStockTakeNotesContains = value; return this; } public String getKitStockTakeNotesLike() { return KitStockTakeNotesLike; } public IN_KitStockTakeMainQuery setKitStockTakeNotesLike(String value) { this.KitStockTakeNotesLike = value; return this; } public ArrayList getKitStockTakeNotesBetween() { return KitStockTakeNotesBetween; } public IN_KitStockTakeMainQuery setKitStockTakeNotesBetween(ArrayList value) { this.KitStockTakeNotesBetween = value; return this; } public ArrayList getKitStockTakeNotesIn() { return KitStockTakeNotesIn; } public IN_KitStockTakeMainQuery setKitStockTakeNotesIn(ArrayList value) { this.KitStockTakeNotesIn = value; return this; } public Boolean isKitStockTakeStatus() { return KitStockTakeStatus; } public IN_KitStockTakeMainQuery setKitStockTakeStatus(Boolean value) { this.KitStockTakeStatus = value; return this; } public Date getKitStockTakeDate() { return KitStockTakeDate; } public IN_KitStockTakeMainQuery setKitStockTakeDate(Date value) { this.KitStockTakeDate = value; return this; } public Date getKitStockTakeDateGreaterThanOrEqualTo() { return KitStockTakeDateGreaterThanOrEqualTo; } public IN_KitStockTakeMainQuery setKitStockTakeDateGreaterThanOrEqualTo(Date value) { this.KitStockTakeDateGreaterThanOrEqualTo = value; return this; } public Date getKitStockTakeDateGreaterThan() { return KitStockTakeDateGreaterThan; } public IN_KitStockTakeMainQuery setKitStockTakeDateGreaterThan(Date value) { this.KitStockTakeDateGreaterThan = value; return this; } public Date getKitStockTakeDateLessThan() { return KitStockTakeDateLessThan; } public IN_KitStockTakeMainQuery setKitStockTakeDateLessThan(Date value) { this.KitStockTakeDateLessThan = value; return this; } public Date getKitStockTakeDateLessThanOrEqualTo() { return KitStockTakeDateLessThanOrEqualTo; } public IN_KitStockTakeMainQuery setKitStockTakeDateLessThanOrEqualTo(Date value) { this.KitStockTakeDateLessThanOrEqualTo = value; return this; } public Date getKitStockTakeDateNotEqualTo() { return KitStockTakeDateNotEqualTo; } public IN_KitStockTakeMainQuery setKitStockTakeDateNotEqualTo(Date value) { this.KitStockTakeDateNotEqualTo = value; return this; } public ArrayList getKitStockTakeDateBetween() { return KitStockTakeDateBetween; } public IN_KitStockTakeMainQuery setKitStockTakeDateBetween(ArrayList value) { this.KitStockTakeDateBetween = value; return this; } public ArrayList getKitStockTakeDateIn() { return KitStockTakeDateIn; } public IN_KitStockTakeMainQuery setKitStockTakeDateIn(ArrayList value) { this.KitStockTakeDateIn = value; return this; } public String getStaffID() { return StaffID; } public IN_KitStockTakeMainQuery setStaffID(String value) { this.StaffID = value; return this; } public String getStaffIDStartsWith() { return StaffIDStartsWith; } public IN_KitStockTakeMainQuery setStaffIDStartsWith(String value) { this.StaffIDStartsWith = value; return this; } public String getStaffIDEndsWith() { return StaffIDEndsWith; } public IN_KitStockTakeMainQuery setStaffIDEndsWith(String value) { this.StaffIDEndsWith = value; return this; } public String getStaffIDContains() { return StaffIDContains; } public IN_KitStockTakeMainQuery setStaffIDContains(String value) { this.StaffIDContains = value; return this; } public String getStaffIDLike() { return StaffIDLike; } public IN_KitStockTakeMainQuery setStaffIDLike(String value) { this.StaffIDLike = value; return this; } public ArrayList getStaffIDBetween() { return StaffIDBetween; } public IN_KitStockTakeMainQuery setStaffIDBetween(ArrayList value) { this.StaffIDBetween = value; return this; } public ArrayList getStaffIDIn() { return StaffIDIn; } public IN_KitStockTakeMainQuery setStaffIDIn(ArrayList value) { this.StaffIDIn = value; return this; } public String getInLogicalID() { return IN_LogicalID; } public IN_KitStockTakeMainQuery setInLogicalID(String value) { this.IN_LogicalID = value; return this; } public String getInLogicalIDStartsWith() { return IN_LogicalIDStartsWith; } public IN_KitStockTakeMainQuery setInLogicalIDStartsWith(String value) { this.IN_LogicalIDStartsWith = value; return this; } public String getInLogicalIDEndsWith() { return IN_LogicalIDEndsWith; } public IN_KitStockTakeMainQuery setInLogicalIDEndsWith(String value) { this.IN_LogicalIDEndsWith = value; return this; } public String getInLogicalIDContains() { return IN_LogicalIDContains; } public IN_KitStockTakeMainQuery setInLogicalIDContains(String value) { this.IN_LogicalIDContains = value; return this; } public String getInLogicalIDLike() { return IN_LogicalIDLike; } public IN_KitStockTakeMainQuery setInLogicalIDLike(String value) { this.IN_LogicalIDLike = value; return this; } public ArrayList getInLogicalIDBetween() { return IN_LogicalIDBetween; } public IN_KitStockTakeMainQuery setInLogicalIDBetween(ArrayList value) { this.IN_LogicalIDBetween = value; return this; } public ArrayList getInLogicalIDIn() { return IN_LogicalIDIn; } public IN_KitStockTakeMainQuery setInLogicalIDIn(ArrayList value) { this.IN_LogicalIDIn = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public IN_KitStockTakeMainQuery setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getLastSavedDateTimeGreaterThanOrEqualTo() { return LastSavedDateTimeGreaterThanOrEqualTo; } public IN_KitStockTakeMainQuery setLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.LastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeGreaterThan() { return LastSavedDateTimeGreaterThan; } public IN_KitStockTakeMainQuery setLastSavedDateTimeGreaterThan(Date value) { this.LastSavedDateTimeGreaterThan = value; return this; } public Date getLastSavedDateTimeLessThan() { return LastSavedDateTimeLessThan; } public IN_KitStockTakeMainQuery setLastSavedDateTimeLessThan(Date value) { this.LastSavedDateTimeLessThan = value; return this; } public Date getLastSavedDateTimeLessThanOrEqualTo() { return LastSavedDateTimeLessThanOrEqualTo; } public IN_KitStockTakeMainQuery setLastSavedDateTimeLessThanOrEqualTo(Date value) { this.LastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeNotEqualTo() { return LastSavedDateTimeNotEqualTo; } public IN_KitStockTakeMainQuery setLastSavedDateTimeNotEqualTo(Date value) { this.LastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getLastSavedDateTimeBetween() { return LastSavedDateTimeBetween; } public IN_KitStockTakeMainQuery setLastSavedDateTimeBetween(ArrayList value) { this.LastSavedDateTimeBetween = value; return this; } public ArrayList getLastSavedDateTimeIn() { return LastSavedDateTimeIn; } public IN_KitStockTakeMainQuery setLastSavedDateTimeIn(ArrayList value) { this.LastSavedDateTimeIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @Route(Path="/Queries/IN_Logical", Verbs="GET") @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class IN_LogicalQuery extends QueryDb implements IReturn> { public String IN_LogicalID = null; public String IN_LogicalIDStartsWith = null; public String IN_LogicalIDEndsWith = null; public String IN_LogicalIDContains = null; public String IN_LogicalIDLike = null; public ArrayList IN_LogicalIDBetween = null; public ArrayList IN_LogicalIDIn = null; public String IN_PhysicalID = null; public String IN_PhysicalIDStartsWith = null; public String IN_PhysicalIDEndsWith = null; public String IN_PhysicalIDContains = null; public String IN_PhysicalIDLike = null; public ArrayList IN_PhysicalIDBetween = null; public ArrayList IN_PhysicalIDIn = null; public Date LastSavedDateTime = null; public Date LastSavedDateTimeGreaterThanOrEqualTo = null; public Date LastSavedDateTimeGreaterThan = null; public Date LastSavedDateTimeLessThan = null; public Date LastSavedDateTimeLessThanOrEqualTo = null; public Date LastSavedDateTimeNotEqualTo = null; public ArrayList LastSavedDateTimeBetween = null; public ArrayList LastSavedDateTimeIn = null; public String Description = null; public String DescriptionStartsWith = null; public String DescriptionEndsWith = null; public String DescriptionContains = null; public String DescriptionLike = null; public ArrayList DescriptionBetween = null; public ArrayList DescriptionIn = null; public String LedgerMask = null; public String LedgerMaskStartsWith = null; public String LedgerMaskEndsWith = null; public String LedgerMaskContains = null; public String LedgerMaskLike = null; public ArrayList LedgerMaskBetween = null; public ArrayList LedgerMaskIn = null; public String WarehouseCode = null; public String WarehouseCodeStartsWith = null; public String WarehouseCodeEndsWith = null; public String WarehouseCodeContains = null; public String WarehouseCodeLike = null; public ArrayList WarehouseCodeBetween = null; public ArrayList WarehouseCodeIn = null; public Boolean InTransit = null; public Boolean DefaultInTransit = null; public String IN_Region_RecID = null; public String IN_Region_RecIDStartsWith = null; public String IN_Region_RecIDEndsWith = null; public String IN_Region_RecIDContains = null; public String IN_Region_RecIDLike = null; public ArrayList IN_Region_RecIDBetween = null; public ArrayList IN_Region_RecIDIn = null; public Integer ItemNo = null; public Integer ItemNoGreaterThanOrEqualTo = null; public Integer ItemNoGreaterThan = null; public Integer ItemNoLessThan = null; public Integer ItemNoLessThanOrEqualTo = null; public Integer ItemNoNotEqualTo = null; public ArrayList ItemNoBetween = null; public ArrayList ItemNoIn = null; public ArrayList RowHash = null; public Integer Colour = null; public Integer ColourGreaterThanOrEqualTo = null; public Integer ColourGreaterThan = null; public Integer ColourLessThan = null; public Integer ColourLessThanOrEqualTo = null; public Integer ColourNotEqualTo = null; public ArrayList ColourBetween = null; public ArrayList ColourIn = null; public String getInLogicalID() { return IN_LogicalID; } public IN_LogicalQuery setInLogicalID(String value) { this.IN_LogicalID = value; return this; } public String getInLogicalIDStartsWith() { return IN_LogicalIDStartsWith; } public IN_LogicalQuery setInLogicalIDStartsWith(String value) { this.IN_LogicalIDStartsWith = value; return this; } public String getInLogicalIDEndsWith() { return IN_LogicalIDEndsWith; } public IN_LogicalQuery setInLogicalIDEndsWith(String value) { this.IN_LogicalIDEndsWith = value; return this; } public String getInLogicalIDContains() { return IN_LogicalIDContains; } public IN_LogicalQuery setInLogicalIDContains(String value) { this.IN_LogicalIDContains = value; return this; } public String getInLogicalIDLike() { return IN_LogicalIDLike; } public IN_LogicalQuery setInLogicalIDLike(String value) { this.IN_LogicalIDLike = value; return this; } public ArrayList getInLogicalIDBetween() { return IN_LogicalIDBetween; } public IN_LogicalQuery setInLogicalIDBetween(ArrayList value) { this.IN_LogicalIDBetween = value; return this; } public ArrayList getInLogicalIDIn() { return IN_LogicalIDIn; } public IN_LogicalQuery setInLogicalIDIn(ArrayList value) { this.IN_LogicalIDIn = value; return this; } public String getInPhysicalID() { return IN_PhysicalID; } public IN_LogicalQuery setInPhysicalID(String value) { this.IN_PhysicalID = value; return this; } public String getInPhysicalIDStartsWith() { return IN_PhysicalIDStartsWith; } public IN_LogicalQuery setInPhysicalIDStartsWith(String value) { this.IN_PhysicalIDStartsWith = value; return this; } public String getInPhysicalIDEndsWith() { return IN_PhysicalIDEndsWith; } public IN_LogicalQuery setInPhysicalIDEndsWith(String value) { this.IN_PhysicalIDEndsWith = value; return this; } public String getInPhysicalIDContains() { return IN_PhysicalIDContains; } public IN_LogicalQuery setInPhysicalIDContains(String value) { this.IN_PhysicalIDContains = value; return this; } public String getInPhysicalIDLike() { return IN_PhysicalIDLike; } public IN_LogicalQuery setInPhysicalIDLike(String value) { this.IN_PhysicalIDLike = value; return this; } public ArrayList getInPhysicalIDBetween() { return IN_PhysicalIDBetween; } public IN_LogicalQuery setInPhysicalIDBetween(ArrayList value) { this.IN_PhysicalIDBetween = value; return this; } public ArrayList getInPhysicalIDIn() { return IN_PhysicalIDIn; } public IN_LogicalQuery setInPhysicalIDIn(ArrayList value) { this.IN_PhysicalIDIn = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public IN_LogicalQuery setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getLastSavedDateTimeGreaterThanOrEqualTo() { return LastSavedDateTimeGreaterThanOrEqualTo; } public IN_LogicalQuery setLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.LastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeGreaterThan() { return LastSavedDateTimeGreaterThan; } public IN_LogicalQuery setLastSavedDateTimeGreaterThan(Date value) { this.LastSavedDateTimeGreaterThan = value; return this; } public Date getLastSavedDateTimeLessThan() { return LastSavedDateTimeLessThan; } public IN_LogicalQuery setLastSavedDateTimeLessThan(Date value) { this.LastSavedDateTimeLessThan = value; return this; } public Date getLastSavedDateTimeLessThanOrEqualTo() { return LastSavedDateTimeLessThanOrEqualTo; } public IN_LogicalQuery setLastSavedDateTimeLessThanOrEqualTo(Date value) { this.LastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeNotEqualTo() { return LastSavedDateTimeNotEqualTo; } public IN_LogicalQuery setLastSavedDateTimeNotEqualTo(Date value) { this.LastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getLastSavedDateTimeBetween() { return LastSavedDateTimeBetween; } public IN_LogicalQuery setLastSavedDateTimeBetween(ArrayList value) { this.LastSavedDateTimeBetween = value; return this; } public ArrayList getLastSavedDateTimeIn() { return LastSavedDateTimeIn; } public IN_LogicalQuery setLastSavedDateTimeIn(ArrayList value) { this.LastSavedDateTimeIn = value; return this; } public String getDescription() { return Description; } public IN_LogicalQuery setDescription(String value) { this.Description = value; return this; } public String getDescriptionStartsWith() { return DescriptionStartsWith; } public IN_LogicalQuery setDescriptionStartsWith(String value) { this.DescriptionStartsWith = value; return this; } public String getDescriptionEndsWith() { return DescriptionEndsWith; } public IN_LogicalQuery setDescriptionEndsWith(String value) { this.DescriptionEndsWith = value; return this; } public String getDescriptionContains() { return DescriptionContains; } public IN_LogicalQuery setDescriptionContains(String value) { this.DescriptionContains = value; return this; } public String getDescriptionLike() { return DescriptionLike; } public IN_LogicalQuery setDescriptionLike(String value) { this.DescriptionLike = value; return this; } public ArrayList getDescriptionBetween() { return DescriptionBetween; } public IN_LogicalQuery setDescriptionBetween(ArrayList value) { this.DescriptionBetween = value; return this; } public ArrayList getDescriptionIn() { return DescriptionIn; } public IN_LogicalQuery setDescriptionIn(ArrayList value) { this.DescriptionIn = value; return this; } public String getLedgerMask() { return LedgerMask; } public IN_LogicalQuery setLedgerMask(String value) { this.LedgerMask = value; return this; } public String getLedgerMaskStartsWith() { return LedgerMaskStartsWith; } public IN_LogicalQuery setLedgerMaskStartsWith(String value) { this.LedgerMaskStartsWith = value; return this; } public String getLedgerMaskEndsWith() { return LedgerMaskEndsWith; } public IN_LogicalQuery setLedgerMaskEndsWith(String value) { this.LedgerMaskEndsWith = value; return this; } public String getLedgerMaskContains() { return LedgerMaskContains; } public IN_LogicalQuery setLedgerMaskContains(String value) { this.LedgerMaskContains = value; return this; } public String getLedgerMaskLike() { return LedgerMaskLike; } public IN_LogicalQuery setLedgerMaskLike(String value) { this.LedgerMaskLike = value; return this; } public ArrayList getLedgerMaskBetween() { return LedgerMaskBetween; } public IN_LogicalQuery setLedgerMaskBetween(ArrayList value) { this.LedgerMaskBetween = value; return this; } public ArrayList getLedgerMaskIn() { return LedgerMaskIn; } public IN_LogicalQuery setLedgerMaskIn(ArrayList value) { this.LedgerMaskIn = value; return this; } public String getWarehouseCode() { return WarehouseCode; } public IN_LogicalQuery setWarehouseCode(String value) { this.WarehouseCode = value; return this; } public String getWarehouseCodeStartsWith() { return WarehouseCodeStartsWith; } public IN_LogicalQuery setWarehouseCodeStartsWith(String value) { this.WarehouseCodeStartsWith = value; return this; } public String getWarehouseCodeEndsWith() { return WarehouseCodeEndsWith; } public IN_LogicalQuery setWarehouseCodeEndsWith(String value) { this.WarehouseCodeEndsWith = value; return this; } public String getWarehouseCodeContains() { return WarehouseCodeContains; } public IN_LogicalQuery setWarehouseCodeContains(String value) { this.WarehouseCodeContains = value; return this; } public String getWarehouseCodeLike() { return WarehouseCodeLike; } public IN_LogicalQuery setWarehouseCodeLike(String value) { this.WarehouseCodeLike = value; return this; } public ArrayList getWarehouseCodeBetween() { return WarehouseCodeBetween; } public IN_LogicalQuery setWarehouseCodeBetween(ArrayList value) { this.WarehouseCodeBetween = value; return this; } public ArrayList getWarehouseCodeIn() { return WarehouseCodeIn; } public IN_LogicalQuery setWarehouseCodeIn(ArrayList value) { this.WarehouseCodeIn = value; return this; } public Boolean isInTransit() { return InTransit; } public IN_LogicalQuery setInTransit(Boolean value) { this.InTransit = value; return this; } public Boolean isDefaultInTransit() { return DefaultInTransit; } public IN_LogicalQuery setDefaultInTransit(Boolean value) { this.DefaultInTransit = value; return this; } public String getInRegionRecID() { return IN_Region_RecID; } public IN_LogicalQuery setInRegionRecID(String value) { this.IN_Region_RecID = value; return this; } public String getInRegionRecIDStartsWith() { return IN_Region_RecIDStartsWith; } public IN_LogicalQuery setInRegionRecIDStartsWith(String value) { this.IN_Region_RecIDStartsWith = value; return this; } public String getInRegionRecIDEndsWith() { return IN_Region_RecIDEndsWith; } public IN_LogicalQuery setInRegionRecIDEndsWith(String value) { this.IN_Region_RecIDEndsWith = value; return this; } public String getInRegionRecIDContains() { return IN_Region_RecIDContains; } public IN_LogicalQuery setInRegionRecIDContains(String value) { this.IN_Region_RecIDContains = value; return this; } public String getInRegionRecIDLike() { return IN_Region_RecIDLike; } public IN_LogicalQuery setInRegionRecIDLike(String value) { this.IN_Region_RecIDLike = value; return this; } public ArrayList getInRegionRecIDBetween() { return IN_Region_RecIDBetween; } public IN_LogicalQuery setInRegionRecIDBetween(ArrayList value) { this.IN_Region_RecIDBetween = value; return this; } public ArrayList getInRegionRecIDIn() { return IN_Region_RecIDIn; } public IN_LogicalQuery setInRegionRecIDIn(ArrayList value) { this.IN_Region_RecIDIn = value; return this; } public Integer getItemNo() { return ItemNo; } public IN_LogicalQuery setItemNo(Integer value) { this.ItemNo = value; return this; } public Integer getItemNoGreaterThanOrEqualTo() { return ItemNoGreaterThanOrEqualTo; } public IN_LogicalQuery setItemNoGreaterThanOrEqualTo(Integer value) { this.ItemNoGreaterThanOrEqualTo = value; return this; } public Integer getItemNoGreaterThan() { return ItemNoGreaterThan; } public IN_LogicalQuery setItemNoGreaterThan(Integer value) { this.ItemNoGreaterThan = value; return this; } public Integer getItemNoLessThan() { return ItemNoLessThan; } public IN_LogicalQuery setItemNoLessThan(Integer value) { this.ItemNoLessThan = value; return this; } public Integer getItemNoLessThanOrEqualTo() { return ItemNoLessThanOrEqualTo; } public IN_LogicalQuery setItemNoLessThanOrEqualTo(Integer value) { this.ItemNoLessThanOrEqualTo = value; return this; } public Integer getItemNoNotEqualTo() { return ItemNoNotEqualTo; } public IN_LogicalQuery setItemNoNotEqualTo(Integer value) { this.ItemNoNotEqualTo = value; return this; } public ArrayList getItemNoBetween() { return ItemNoBetween; } public IN_LogicalQuery setItemNoBetween(ArrayList value) { this.ItemNoBetween = value; return this; } public ArrayList getItemNoIn() { return ItemNoIn; } public IN_LogicalQuery setItemNoIn(ArrayList value) { this.ItemNoIn = value; return this; } public ArrayList getRowHash() { return RowHash; } public IN_LogicalQuery setRowHash(ArrayList value) { this.RowHash = value; return this; } public Integer getColour() { return Colour; } public IN_LogicalQuery setColour(Integer value) { this.Colour = value; return this; } public Integer getColourGreaterThanOrEqualTo() { return ColourGreaterThanOrEqualTo; } public IN_LogicalQuery setColourGreaterThanOrEqualTo(Integer value) { this.ColourGreaterThanOrEqualTo = value; return this; } public Integer getColourGreaterThan() { return ColourGreaterThan; } public IN_LogicalQuery setColourGreaterThan(Integer value) { this.ColourGreaterThan = value; return this; } public Integer getColourLessThan() { return ColourLessThan; } public IN_LogicalQuery setColourLessThan(Integer value) { this.ColourLessThan = value; return this; } public Integer getColourLessThanOrEqualTo() { return ColourLessThanOrEqualTo; } public IN_LogicalQuery setColourLessThanOrEqualTo(Integer value) { this.ColourLessThanOrEqualTo = value; return this; } public Integer getColourNotEqualTo() { return ColourNotEqualTo; } public IN_LogicalQuery setColourNotEqualTo(Integer value) { this.ColourNotEqualTo = value; return this; } public ArrayList getColourBetween() { return ColourBetween; } public IN_LogicalQuery setColourBetween(ArrayList value) { this.ColourBetween = value; return this; } public ArrayList getColourIn() { return ColourIn; } public IN_LogicalQuery setColourIn(ArrayList value) { this.ColourIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class IN_LogicalOrderQuery extends QueryDb implements IReturn> { public String IN_LogicalOrderID = null; public String IN_LogicalOrderIDStartsWith = null; public String IN_LogicalOrderIDEndsWith = null; public String IN_LogicalOrderIDContains = null; public String IN_LogicalOrderIDLike = null; public ArrayList IN_LogicalOrderIDBetween = null; public ArrayList IN_LogicalOrderIDIn = null; public String InventoryID = null; public String InventoryIDStartsWith = null; public String InventoryIDEndsWith = null; public String InventoryIDContains = null; public String InventoryIDLike = null; public ArrayList InventoryIDBetween = null; public ArrayList InventoryIDIn = null; public String IN_LogicalID = null; public String IN_LogicalIDStartsWith = null; public String IN_LogicalIDEndsWith = null; public String IN_LogicalIDContains = null; public String IN_LogicalIDLike = null; public ArrayList IN_LogicalIDBetween = null; public ArrayList IN_LogicalIDIn = null; public String CentralWarehouseID = null; public String CentralWarehouseIDStartsWith = null; public String CentralWarehouseIDEndsWith = null; public String CentralWarehouseIDContains = null; public String CentralWarehouseIDLike = null; public ArrayList CentralWarehouseIDBetween = null; public ArrayList CentralWarehouseIDIn = null; public String getInLogicalOrderID() { return IN_LogicalOrderID; } public IN_LogicalOrderQuery setInLogicalOrderID(String value) { this.IN_LogicalOrderID = value; return this; } public String getInLogicalOrderIDStartsWith() { return IN_LogicalOrderIDStartsWith; } public IN_LogicalOrderQuery setInLogicalOrderIDStartsWith(String value) { this.IN_LogicalOrderIDStartsWith = value; return this; } public String getInLogicalOrderIDEndsWith() { return IN_LogicalOrderIDEndsWith; } public IN_LogicalOrderQuery setInLogicalOrderIDEndsWith(String value) { this.IN_LogicalOrderIDEndsWith = value; return this; } public String getInLogicalOrderIDContains() { return IN_LogicalOrderIDContains; } public IN_LogicalOrderQuery setInLogicalOrderIDContains(String value) { this.IN_LogicalOrderIDContains = value; return this; } public String getInLogicalOrderIDLike() { return IN_LogicalOrderIDLike; } public IN_LogicalOrderQuery setInLogicalOrderIDLike(String value) { this.IN_LogicalOrderIDLike = value; return this; } public ArrayList getInLogicalOrderIDBetween() { return IN_LogicalOrderIDBetween; } public IN_LogicalOrderQuery setInLogicalOrderIDBetween(ArrayList value) { this.IN_LogicalOrderIDBetween = value; return this; } public ArrayList getInLogicalOrderIDIn() { return IN_LogicalOrderIDIn; } public IN_LogicalOrderQuery setInLogicalOrderIDIn(ArrayList value) { this.IN_LogicalOrderIDIn = value; return this; } public String getInventoryID() { return InventoryID; } public IN_LogicalOrderQuery setInventoryID(String value) { this.InventoryID = value; return this; } public String getInventoryIDStartsWith() { return InventoryIDStartsWith; } public IN_LogicalOrderQuery setInventoryIDStartsWith(String value) { this.InventoryIDStartsWith = value; return this; } public String getInventoryIDEndsWith() { return InventoryIDEndsWith; } public IN_LogicalOrderQuery setInventoryIDEndsWith(String value) { this.InventoryIDEndsWith = value; return this; } public String getInventoryIDContains() { return InventoryIDContains; } public IN_LogicalOrderQuery setInventoryIDContains(String value) { this.InventoryIDContains = value; return this; } public String getInventoryIDLike() { return InventoryIDLike; } public IN_LogicalOrderQuery setInventoryIDLike(String value) { this.InventoryIDLike = value; return this; } public ArrayList getInventoryIDBetween() { return InventoryIDBetween; } public IN_LogicalOrderQuery setInventoryIDBetween(ArrayList value) { this.InventoryIDBetween = value; return this; } public ArrayList getInventoryIDIn() { return InventoryIDIn; } public IN_LogicalOrderQuery setInventoryIDIn(ArrayList value) { this.InventoryIDIn = value; return this; } public String getInLogicalID() { return IN_LogicalID; } public IN_LogicalOrderQuery setInLogicalID(String value) { this.IN_LogicalID = value; return this; } public String getInLogicalIDStartsWith() { return IN_LogicalIDStartsWith; } public IN_LogicalOrderQuery setInLogicalIDStartsWith(String value) { this.IN_LogicalIDStartsWith = value; return this; } public String getInLogicalIDEndsWith() { return IN_LogicalIDEndsWith; } public IN_LogicalOrderQuery setInLogicalIDEndsWith(String value) { this.IN_LogicalIDEndsWith = value; return this; } public String getInLogicalIDContains() { return IN_LogicalIDContains; } public IN_LogicalOrderQuery setInLogicalIDContains(String value) { this.IN_LogicalIDContains = value; return this; } public String getInLogicalIDLike() { return IN_LogicalIDLike; } public IN_LogicalOrderQuery setInLogicalIDLike(String value) { this.IN_LogicalIDLike = value; return this; } public ArrayList getInLogicalIDBetween() { return IN_LogicalIDBetween; } public IN_LogicalOrderQuery setInLogicalIDBetween(ArrayList value) { this.IN_LogicalIDBetween = value; return this; } public ArrayList getInLogicalIDIn() { return IN_LogicalIDIn; } public IN_LogicalOrderQuery setInLogicalIDIn(ArrayList value) { this.IN_LogicalIDIn = value; return this; } public String getCentralWarehouseID() { return CentralWarehouseID; } public IN_LogicalOrderQuery setCentralWarehouseID(String value) { this.CentralWarehouseID = value; return this; } public String getCentralWarehouseIDStartsWith() { return CentralWarehouseIDStartsWith; } public IN_LogicalOrderQuery setCentralWarehouseIDStartsWith(String value) { this.CentralWarehouseIDStartsWith = value; return this; } public String getCentralWarehouseIDEndsWith() { return CentralWarehouseIDEndsWith; } public IN_LogicalOrderQuery setCentralWarehouseIDEndsWith(String value) { this.CentralWarehouseIDEndsWith = value; return this; } public String getCentralWarehouseIDContains() { return CentralWarehouseIDContains; } public IN_LogicalOrderQuery setCentralWarehouseIDContains(String value) { this.CentralWarehouseIDContains = value; return this; } public String getCentralWarehouseIDLike() { return CentralWarehouseIDLike; } public IN_LogicalOrderQuery setCentralWarehouseIDLike(String value) { this.CentralWarehouseIDLike = value; return this; } public ArrayList getCentralWarehouseIDBetween() { return CentralWarehouseIDBetween; } public IN_LogicalOrderQuery setCentralWarehouseIDBetween(ArrayList value) { this.CentralWarehouseIDBetween = value; return this; } public ArrayList getCentralWarehouseIDIn() { return CentralWarehouseIDIn; } public IN_LogicalOrderQuery setCentralWarehouseIDIn(ArrayList value) { this.CentralWarehouseIDIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class IN_LogicalWarehouseCustomFieldsQuery extends QueryDb implements IReturn> { public String RecID = null; public String RecIDStartsWith = null; public String RecIDEndsWith = null; public String RecIDContains = null; public String RecIDLike = null; public ArrayList RecIDBetween = null; public ArrayList RecIDIn = null; public String SettingName = null; public String SettingNameStartsWith = null; public String SettingNameEndsWith = null; public String SettingNameContains = null; public String SettingNameLike = null; public ArrayList SettingNameBetween = null; public ArrayList SettingNameIn = null; public String SettingDescription = null; public String SettingDescriptionStartsWith = null; public String SettingDescriptionEndsWith = null; public String SettingDescriptionContains = null; public String SettingDescriptionLike = null; public ArrayList SettingDescriptionBetween = null; public ArrayList SettingDescriptionIn = null; public Integer CellType = null; public Integer CellTypeGreaterThanOrEqualTo = null; public Integer CellTypeGreaterThan = null; public Integer CellTypeLessThan = null; public Integer CellTypeLessThanOrEqualTo = null; public Integer CellTypeNotEqualTo = null; public ArrayList CellTypeBetween = null; public ArrayList CellTypeIn = null; public String FieldParameter = null; public String FieldParameterStartsWith = null; public String FieldParameterEndsWith = null; public String FieldParameterContains = null; public String FieldParameterLike = null; public ArrayList FieldParameterBetween = null; public ArrayList FieldParameterIn = null; public UUID SY_Plugin_RecID = null; public ArrayList SY_Plugin_RecIDIn = null; public Date LastSavedDateTime = null; public Date LastSavedDateTimeGreaterThanOrEqualTo = null; public Date LastSavedDateTimeGreaterThan = null; public Date LastSavedDateTimeLessThan = null; public Date LastSavedDateTimeLessThanOrEqualTo = null; public Date LastSavedDateTimeNotEqualTo = null; public ArrayList LastSavedDateTimeBetween = null; public ArrayList LastSavedDateTimeIn = null; public Integer DisplayOrder = null; public Integer DisplayOrderGreaterThanOrEqualTo = null; public Integer DisplayOrderGreaterThan = null; public Integer DisplayOrderLessThan = null; public Integer DisplayOrderLessThanOrEqualTo = null; public Integer DisplayOrderNotEqualTo = null; public ArrayList DisplayOrderBetween = null; public ArrayList DisplayOrderIn = null; public String getRecID() { return RecID; } public IN_LogicalWarehouseCustomFieldsQuery setRecID(String value) { this.RecID = value; return this; } public String getRecIDStartsWith() { return RecIDStartsWith; } public IN_LogicalWarehouseCustomFieldsQuery setRecIDStartsWith(String value) { this.RecIDStartsWith = value; return this; } public String getRecIDEndsWith() { return RecIDEndsWith; } public IN_LogicalWarehouseCustomFieldsQuery setRecIDEndsWith(String value) { this.RecIDEndsWith = value; return this; } public String getRecIDContains() { return RecIDContains; } public IN_LogicalWarehouseCustomFieldsQuery setRecIDContains(String value) { this.RecIDContains = value; return this; } public String getRecIDLike() { return RecIDLike; } public IN_LogicalWarehouseCustomFieldsQuery setRecIDLike(String value) { this.RecIDLike = value; return this; } public ArrayList getRecIDBetween() { return RecIDBetween; } public IN_LogicalWarehouseCustomFieldsQuery setRecIDBetween(ArrayList value) { this.RecIDBetween = value; return this; } public ArrayList getRecIDIn() { return RecIDIn; } public IN_LogicalWarehouseCustomFieldsQuery setRecIDIn(ArrayList value) { this.RecIDIn = value; return this; } public String getSettingName() { return SettingName; } public IN_LogicalWarehouseCustomFieldsQuery setSettingName(String value) { this.SettingName = value; return this; } public String getSettingNameStartsWith() { return SettingNameStartsWith; } public IN_LogicalWarehouseCustomFieldsQuery setSettingNameStartsWith(String value) { this.SettingNameStartsWith = value; return this; } public String getSettingNameEndsWith() { return SettingNameEndsWith; } public IN_LogicalWarehouseCustomFieldsQuery setSettingNameEndsWith(String value) { this.SettingNameEndsWith = value; return this; } public String getSettingNameContains() { return SettingNameContains; } public IN_LogicalWarehouseCustomFieldsQuery setSettingNameContains(String value) { this.SettingNameContains = value; return this; } public String getSettingNameLike() { return SettingNameLike; } public IN_LogicalWarehouseCustomFieldsQuery setSettingNameLike(String value) { this.SettingNameLike = value; return this; } public ArrayList getSettingNameBetween() { return SettingNameBetween; } public IN_LogicalWarehouseCustomFieldsQuery setSettingNameBetween(ArrayList value) { this.SettingNameBetween = value; return this; } public ArrayList getSettingNameIn() { return SettingNameIn; } public IN_LogicalWarehouseCustomFieldsQuery setSettingNameIn(ArrayList value) { this.SettingNameIn = value; return this; } public String getSettingDescription() { return SettingDescription; } public IN_LogicalWarehouseCustomFieldsQuery setSettingDescription(String value) { this.SettingDescription = value; return this; } public String getSettingDescriptionStartsWith() { return SettingDescriptionStartsWith; } public IN_LogicalWarehouseCustomFieldsQuery setSettingDescriptionStartsWith(String value) { this.SettingDescriptionStartsWith = value; return this; } public String getSettingDescriptionEndsWith() { return SettingDescriptionEndsWith; } public IN_LogicalWarehouseCustomFieldsQuery setSettingDescriptionEndsWith(String value) { this.SettingDescriptionEndsWith = value; return this; } public String getSettingDescriptionContains() { return SettingDescriptionContains; } public IN_LogicalWarehouseCustomFieldsQuery setSettingDescriptionContains(String value) { this.SettingDescriptionContains = value; return this; } public String getSettingDescriptionLike() { return SettingDescriptionLike; } public IN_LogicalWarehouseCustomFieldsQuery setSettingDescriptionLike(String value) { this.SettingDescriptionLike = value; return this; } public ArrayList getSettingDescriptionBetween() { return SettingDescriptionBetween; } public IN_LogicalWarehouseCustomFieldsQuery setSettingDescriptionBetween(ArrayList value) { this.SettingDescriptionBetween = value; return this; } public ArrayList getSettingDescriptionIn() { return SettingDescriptionIn; } public IN_LogicalWarehouseCustomFieldsQuery setSettingDescriptionIn(ArrayList value) { this.SettingDescriptionIn = value; return this; } public Integer getCellType() { return CellType; } public IN_LogicalWarehouseCustomFieldsQuery setCellType(Integer value) { this.CellType = value; return this; } public Integer getCellTypeGreaterThanOrEqualTo() { return CellTypeGreaterThanOrEqualTo; } public IN_LogicalWarehouseCustomFieldsQuery setCellTypeGreaterThanOrEqualTo(Integer value) { this.CellTypeGreaterThanOrEqualTo = value; return this; } public Integer getCellTypeGreaterThan() { return CellTypeGreaterThan; } public IN_LogicalWarehouseCustomFieldsQuery setCellTypeGreaterThan(Integer value) { this.CellTypeGreaterThan = value; return this; } public Integer getCellTypeLessThan() { return CellTypeLessThan; } public IN_LogicalWarehouseCustomFieldsQuery setCellTypeLessThan(Integer value) { this.CellTypeLessThan = value; return this; } public Integer getCellTypeLessThanOrEqualTo() { return CellTypeLessThanOrEqualTo; } public IN_LogicalWarehouseCustomFieldsQuery setCellTypeLessThanOrEqualTo(Integer value) { this.CellTypeLessThanOrEqualTo = value; return this; } public Integer getCellTypeNotEqualTo() { return CellTypeNotEqualTo; } public IN_LogicalWarehouseCustomFieldsQuery setCellTypeNotEqualTo(Integer value) { this.CellTypeNotEqualTo = value; return this; } public ArrayList getCellTypeBetween() { return CellTypeBetween; } public IN_LogicalWarehouseCustomFieldsQuery setCellTypeBetween(ArrayList value) { this.CellTypeBetween = value; return this; } public ArrayList getCellTypeIn() { return CellTypeIn; } public IN_LogicalWarehouseCustomFieldsQuery setCellTypeIn(ArrayList value) { this.CellTypeIn = value; return this; } public String getFieldParameter() { return FieldParameter; } public IN_LogicalWarehouseCustomFieldsQuery setFieldParameter(String value) { this.FieldParameter = value; return this; } public String getFieldParameterStartsWith() { return FieldParameterStartsWith; } public IN_LogicalWarehouseCustomFieldsQuery setFieldParameterStartsWith(String value) { this.FieldParameterStartsWith = value; return this; } public String getFieldParameterEndsWith() { return FieldParameterEndsWith; } public IN_LogicalWarehouseCustomFieldsQuery setFieldParameterEndsWith(String value) { this.FieldParameterEndsWith = value; return this; } public String getFieldParameterContains() { return FieldParameterContains; } public IN_LogicalWarehouseCustomFieldsQuery setFieldParameterContains(String value) { this.FieldParameterContains = value; return this; } public String getFieldParameterLike() { return FieldParameterLike; } public IN_LogicalWarehouseCustomFieldsQuery setFieldParameterLike(String value) { this.FieldParameterLike = value; return this; } public ArrayList getFieldParameterBetween() { return FieldParameterBetween; } public IN_LogicalWarehouseCustomFieldsQuery setFieldParameterBetween(ArrayList value) { this.FieldParameterBetween = value; return this; } public ArrayList getFieldParameterIn() { return FieldParameterIn; } public IN_LogicalWarehouseCustomFieldsQuery setFieldParameterIn(ArrayList value) { this.FieldParameterIn = value; return this; } public UUID getSyPluginRecID() { return SY_Plugin_RecID; } public IN_LogicalWarehouseCustomFieldsQuery setSyPluginRecID(UUID value) { this.SY_Plugin_RecID = value; return this; } public ArrayList getSyPluginRecIDIn() { return SY_Plugin_RecIDIn; } public IN_LogicalWarehouseCustomFieldsQuery setSyPluginRecIDIn(ArrayList value) { this.SY_Plugin_RecIDIn = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public IN_LogicalWarehouseCustomFieldsQuery setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getLastSavedDateTimeGreaterThanOrEqualTo() { return LastSavedDateTimeGreaterThanOrEqualTo; } public IN_LogicalWarehouseCustomFieldsQuery setLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.LastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeGreaterThan() { return LastSavedDateTimeGreaterThan; } public IN_LogicalWarehouseCustomFieldsQuery setLastSavedDateTimeGreaterThan(Date value) { this.LastSavedDateTimeGreaterThan = value; return this; } public Date getLastSavedDateTimeLessThan() { return LastSavedDateTimeLessThan; } public IN_LogicalWarehouseCustomFieldsQuery setLastSavedDateTimeLessThan(Date value) { this.LastSavedDateTimeLessThan = value; return this; } public Date getLastSavedDateTimeLessThanOrEqualTo() { return LastSavedDateTimeLessThanOrEqualTo; } public IN_LogicalWarehouseCustomFieldsQuery setLastSavedDateTimeLessThanOrEqualTo(Date value) { this.LastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeNotEqualTo() { return LastSavedDateTimeNotEqualTo; } public IN_LogicalWarehouseCustomFieldsQuery setLastSavedDateTimeNotEqualTo(Date value) { this.LastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getLastSavedDateTimeBetween() { return LastSavedDateTimeBetween; } public IN_LogicalWarehouseCustomFieldsQuery setLastSavedDateTimeBetween(ArrayList value) { this.LastSavedDateTimeBetween = value; return this; } public ArrayList getLastSavedDateTimeIn() { return LastSavedDateTimeIn; } public IN_LogicalWarehouseCustomFieldsQuery setLastSavedDateTimeIn(ArrayList value) { this.LastSavedDateTimeIn = value; return this; } public Integer getDisplayOrder() { return DisplayOrder; } public IN_LogicalWarehouseCustomFieldsQuery setDisplayOrder(Integer value) { this.DisplayOrder = value; return this; } public Integer getDisplayOrderGreaterThanOrEqualTo() { return DisplayOrderGreaterThanOrEqualTo; } public IN_LogicalWarehouseCustomFieldsQuery setDisplayOrderGreaterThanOrEqualTo(Integer value) { this.DisplayOrderGreaterThanOrEqualTo = value; return this; } public Integer getDisplayOrderGreaterThan() { return DisplayOrderGreaterThan; } public IN_LogicalWarehouseCustomFieldsQuery setDisplayOrderGreaterThan(Integer value) { this.DisplayOrderGreaterThan = value; return this; } public Integer getDisplayOrderLessThan() { return DisplayOrderLessThan; } public IN_LogicalWarehouseCustomFieldsQuery setDisplayOrderLessThan(Integer value) { this.DisplayOrderLessThan = value; return this; } public Integer getDisplayOrderLessThanOrEqualTo() { return DisplayOrderLessThanOrEqualTo; } public IN_LogicalWarehouseCustomFieldsQuery setDisplayOrderLessThanOrEqualTo(Integer value) { this.DisplayOrderLessThanOrEqualTo = value; return this; } public Integer getDisplayOrderNotEqualTo() { return DisplayOrderNotEqualTo; } public IN_LogicalWarehouseCustomFieldsQuery setDisplayOrderNotEqualTo(Integer value) { this.DisplayOrderNotEqualTo = value; return this; } public ArrayList getDisplayOrderBetween() { return DisplayOrderBetween; } public IN_LogicalWarehouseCustomFieldsQuery setDisplayOrderBetween(ArrayList value) { this.DisplayOrderBetween = value; return this; } public ArrayList getDisplayOrderIn() { return DisplayOrderIn; } public IN_LogicalWarehouseCustomFieldsQuery setDisplayOrderIn(ArrayList value) { this.DisplayOrderIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class IN_LogicalWarehouseCustomValuesQuery extends QueryDb implements IReturn> { public String RecID = null; public String RecIDStartsWith = null; public String RecIDEndsWith = null; public String RecIDContains = null; public String RecIDLike = null; public ArrayList RecIDBetween = null; public ArrayList RecIDIn = null; public String IN_Logical_RecID = null; public String IN_Logical_RecIDStartsWith = null; public String IN_Logical_RecIDEndsWith = null; public String IN_Logical_RecIDContains = null; public String IN_Logical_RecIDLike = null; public ArrayList IN_Logical_RecIDBetween = null; public ArrayList IN_Logical_RecIDIn = null; public String IN_LogicalWarehouseCustomFields_RecID = null; public String IN_LogicalWarehouseCustomFields_RecIDStartsWith = null; public String IN_LogicalWarehouseCustomFields_RecIDEndsWith = null; public String IN_LogicalWarehouseCustomFields_RecIDContains = null; public String IN_LogicalWarehouseCustomFields_RecIDLike = null; public ArrayList IN_LogicalWarehouseCustomFields_RecIDBetween = null; public ArrayList IN_LogicalWarehouseCustomFields_RecIDIn = null; public String Contents = null; public String ContentsStartsWith = null; public String ContentsEndsWith = null; public String ContentsContains = null; public String ContentsLike = null; public ArrayList ContentsBetween = null; public ArrayList ContentsIn = null; public Date LastSavedDateTime = null; public Date LastSavedDateTimeGreaterThanOrEqualTo = null; public Date LastSavedDateTimeGreaterThan = null; public Date LastSavedDateTimeLessThan = null; public Date LastSavedDateTimeLessThanOrEqualTo = null; public Date LastSavedDateTimeNotEqualTo = null; public ArrayList LastSavedDateTimeBetween = null; public ArrayList LastSavedDateTimeIn = null; public String getRecID() { return RecID; } public IN_LogicalWarehouseCustomValuesQuery setRecID(String value) { this.RecID = value; return this; } public String getRecIDStartsWith() { return RecIDStartsWith; } public IN_LogicalWarehouseCustomValuesQuery setRecIDStartsWith(String value) { this.RecIDStartsWith = value; return this; } public String getRecIDEndsWith() { return RecIDEndsWith; } public IN_LogicalWarehouseCustomValuesQuery setRecIDEndsWith(String value) { this.RecIDEndsWith = value; return this; } public String getRecIDContains() { return RecIDContains; } public IN_LogicalWarehouseCustomValuesQuery setRecIDContains(String value) { this.RecIDContains = value; return this; } public String getRecIDLike() { return RecIDLike; } public IN_LogicalWarehouseCustomValuesQuery setRecIDLike(String value) { this.RecIDLike = value; return this; } public ArrayList getRecIDBetween() { return RecIDBetween; } public IN_LogicalWarehouseCustomValuesQuery setRecIDBetween(ArrayList value) { this.RecIDBetween = value; return this; } public ArrayList getRecIDIn() { return RecIDIn; } public IN_LogicalWarehouseCustomValuesQuery setRecIDIn(ArrayList value) { this.RecIDIn = value; return this; } public String getInLogicalRecID() { return IN_Logical_RecID; } public IN_LogicalWarehouseCustomValuesQuery setInLogicalRecID(String value) { this.IN_Logical_RecID = value; return this; } public String getInLogicalRecIDStartsWith() { return IN_Logical_RecIDStartsWith; } public IN_LogicalWarehouseCustomValuesQuery setInLogicalRecIDStartsWith(String value) { this.IN_Logical_RecIDStartsWith = value; return this; } public String getInLogicalRecIDEndsWith() { return IN_Logical_RecIDEndsWith; } public IN_LogicalWarehouseCustomValuesQuery setInLogicalRecIDEndsWith(String value) { this.IN_Logical_RecIDEndsWith = value; return this; } public String getInLogicalRecIDContains() { return IN_Logical_RecIDContains; } public IN_LogicalWarehouseCustomValuesQuery setInLogicalRecIDContains(String value) { this.IN_Logical_RecIDContains = value; return this; } public String getInLogicalRecIDLike() { return IN_Logical_RecIDLike; } public IN_LogicalWarehouseCustomValuesQuery setInLogicalRecIDLike(String value) { this.IN_Logical_RecIDLike = value; return this; } public ArrayList getInLogicalRecIDBetween() { return IN_Logical_RecIDBetween; } public IN_LogicalWarehouseCustomValuesQuery setInLogicalRecIDBetween(ArrayList value) { this.IN_Logical_RecIDBetween = value; return this; } public ArrayList getInLogicalRecIDIn() { return IN_Logical_RecIDIn; } public IN_LogicalWarehouseCustomValuesQuery setInLogicalRecIDIn(ArrayList value) { this.IN_Logical_RecIDIn = value; return this; } public String getInLogicalWarehouseCustomFieldsRecID() { return IN_LogicalWarehouseCustomFields_RecID; } public IN_LogicalWarehouseCustomValuesQuery setInLogicalWarehouseCustomFieldsRecID(String value) { this.IN_LogicalWarehouseCustomFields_RecID = value; return this; } public String getInLogicalWarehouseCustomFieldsRecIDStartsWith() { return IN_LogicalWarehouseCustomFields_RecIDStartsWith; } public IN_LogicalWarehouseCustomValuesQuery setInLogicalWarehouseCustomFieldsRecIDStartsWith(String value) { this.IN_LogicalWarehouseCustomFields_RecIDStartsWith = value; return this; } public String getInLogicalWarehouseCustomFieldsRecIDEndsWith() { return IN_LogicalWarehouseCustomFields_RecIDEndsWith; } public IN_LogicalWarehouseCustomValuesQuery setInLogicalWarehouseCustomFieldsRecIDEndsWith(String value) { this.IN_LogicalWarehouseCustomFields_RecIDEndsWith = value; return this; } public String getInLogicalWarehouseCustomFieldsRecIDContains() { return IN_LogicalWarehouseCustomFields_RecIDContains; } public IN_LogicalWarehouseCustomValuesQuery setInLogicalWarehouseCustomFieldsRecIDContains(String value) { this.IN_LogicalWarehouseCustomFields_RecIDContains = value; return this; } public String getInLogicalWarehouseCustomFieldsRecIDLike() { return IN_LogicalWarehouseCustomFields_RecIDLike; } public IN_LogicalWarehouseCustomValuesQuery setInLogicalWarehouseCustomFieldsRecIDLike(String value) { this.IN_LogicalWarehouseCustomFields_RecIDLike = value; return this; } public ArrayList getInLogicalWarehouseCustomFieldsRecIDBetween() { return IN_LogicalWarehouseCustomFields_RecIDBetween; } public IN_LogicalWarehouseCustomValuesQuery setInLogicalWarehouseCustomFieldsRecIDBetween(ArrayList value) { this.IN_LogicalWarehouseCustomFields_RecIDBetween = value; return this; } public ArrayList getInLogicalWarehouseCustomFieldsRecIDIn() { return IN_LogicalWarehouseCustomFields_RecIDIn; } public IN_LogicalWarehouseCustomValuesQuery setInLogicalWarehouseCustomFieldsRecIDIn(ArrayList value) { this.IN_LogicalWarehouseCustomFields_RecIDIn = value; return this; } public String getContents() { return Contents; } public IN_LogicalWarehouseCustomValuesQuery setContents(String value) { this.Contents = value; return this; } public String getContentsStartsWith() { return ContentsStartsWith; } public IN_LogicalWarehouseCustomValuesQuery setContentsStartsWith(String value) { this.ContentsStartsWith = value; return this; } public String getContentsEndsWith() { return ContentsEndsWith; } public IN_LogicalWarehouseCustomValuesQuery setContentsEndsWith(String value) { this.ContentsEndsWith = value; return this; } public String getContentsContains() { return ContentsContains; } public IN_LogicalWarehouseCustomValuesQuery setContentsContains(String value) { this.ContentsContains = value; return this; } public String getContentsLike() { return ContentsLike; } public IN_LogicalWarehouseCustomValuesQuery setContentsLike(String value) { this.ContentsLike = value; return this; } public ArrayList getContentsBetween() { return ContentsBetween; } public IN_LogicalWarehouseCustomValuesQuery setContentsBetween(ArrayList value) { this.ContentsBetween = value; return this; } public ArrayList getContentsIn() { return ContentsIn; } public IN_LogicalWarehouseCustomValuesQuery setContentsIn(ArrayList value) { this.ContentsIn = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public IN_LogicalWarehouseCustomValuesQuery setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getLastSavedDateTimeGreaterThanOrEqualTo() { return LastSavedDateTimeGreaterThanOrEqualTo; } public IN_LogicalWarehouseCustomValuesQuery setLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.LastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeGreaterThan() { return LastSavedDateTimeGreaterThan; } public IN_LogicalWarehouseCustomValuesQuery setLastSavedDateTimeGreaterThan(Date value) { this.LastSavedDateTimeGreaterThan = value; return this; } public Date getLastSavedDateTimeLessThan() { return LastSavedDateTimeLessThan; } public IN_LogicalWarehouseCustomValuesQuery setLastSavedDateTimeLessThan(Date value) { this.LastSavedDateTimeLessThan = value; return this; } public Date getLastSavedDateTimeLessThanOrEqualTo() { return LastSavedDateTimeLessThanOrEqualTo; } public IN_LogicalWarehouseCustomValuesQuery setLastSavedDateTimeLessThanOrEqualTo(Date value) { this.LastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeNotEqualTo() { return LastSavedDateTimeNotEqualTo; } public IN_LogicalWarehouseCustomValuesQuery setLastSavedDateTimeNotEqualTo(Date value) { this.LastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getLastSavedDateTimeBetween() { return LastSavedDateTimeBetween; } public IN_LogicalWarehouseCustomValuesQuery setLastSavedDateTimeBetween(ArrayList value) { this.LastSavedDateTimeBetween = value; return this; } public ArrayList getLastSavedDateTimeIn() { return LastSavedDateTimeIn; } public IN_LogicalWarehouseCustomValuesQuery setLastSavedDateTimeIn(ArrayList value) { this.LastSavedDateTimeIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @Route(Path="/Queries/IN_Main", Verbs="GET") @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class IN_MainQuery extends QueryDb implements IReturn> { public String InventoryID = null; public String InventoryIDStartsWith = null; public String InventoryIDEndsWith = null; public String InventoryIDContains = null; public String InventoryIDLike = null; public ArrayList InventoryIDBetween = null; public ArrayList InventoryIDIn = null; public Date LastSavedDateTime = null; public Date LastSavedDateTimeGreaterThanOrEqualTo = null; public Date LastSavedDateTimeGreaterThan = null; public Date LastSavedDateTimeLessThan = null; public Date LastSavedDateTimeLessThanOrEqualTo = null; public Date LastSavedDateTimeNotEqualTo = null; public ArrayList LastSavedDateTimeBetween = null; public ArrayList LastSavedDateTimeIn = null; public String PartNo = null; public String PartNoStartsWith = null; public String PartNoEndsWith = null; public String PartNoContains = null; public String PartNoLike = null; public ArrayList PartNoBetween = null; public ArrayList PartNoIn = null; public String Description = null; public String DescriptionStartsWith = null; public String DescriptionEndsWith = null; public String DescriptionContains = null; public String DescriptionLike = null; public ArrayList DescriptionBetween = null; public ArrayList DescriptionIn = null; public String Units = null; public String UnitsStartsWith = null; public String UnitsEndsWith = null; public String UnitsContains = null; public String UnitsLike = null; public ArrayList UnitsBetween = null; public ArrayList UnitsIn = null; public Boolean PhysicalItem = null; public Boolean Discountable = null; public BigDecimal DirectTax = null; public BigDecimal DirectTaxGreaterThanOrEqualTo = null; public BigDecimal DirectTaxGreaterThan = null; public BigDecimal DirectTaxLessThan = null; public BigDecimal DirectTaxLessThanOrEqualTo = null; public BigDecimal DirectTaxNotEqualTo = null; public ArrayList DirectTaxBetween = null; public ArrayList DirectTaxIn = null; public String Catagory1ID = null; public String Catagory1IDStartsWith = null; public String Catagory1IDEndsWith = null; public String Catagory1IDContains = null; public String Catagory1IDLike = null; public ArrayList Catagory1IDBetween = null; public ArrayList Catagory1IDIn = null; public String Catagory2ID = null; public String Catagory2IDStartsWith = null; public String Catagory2IDEndsWith = null; public String Catagory2IDContains = null; public String Catagory2IDLike = null; public ArrayList Catagory2IDBetween = null; public ArrayList Catagory2IDIn = null; public String Catagory3ID = null; public String Catagory3IDStartsWith = null; public String Catagory3IDEndsWith = null; public String Catagory3IDContains = null; public String Catagory3IDLike = null; public ArrayList Catagory3IDBetween = null; public ArrayList Catagory3IDIn = null; public String Catagory4ID = null; public String Catagory4IDStartsWith = null; public String Catagory4IDEndsWith = null; public String Catagory4IDContains = null; public String Catagory4IDLike = null; public ArrayList Catagory4IDBetween = null; public ArrayList Catagory4IDIn = null; public String Catagory5ID = null; public String Catagory5IDStartsWith = null; public String Catagory5IDEndsWith = null; public String Catagory5IDContains = null; public String Catagory5IDLike = null; public ArrayList Catagory5IDBetween = null; public ArrayList Catagory5IDIn = null; public String ClassificationID = null; public String ClassificationIDStartsWith = null; public String ClassificationIDEndsWith = null; public String ClassificationIDContains = null; public String ClassificationIDLike = null; public ArrayList ClassificationIDBetween = null; public ArrayList ClassificationIDIn = null; public Short Status = null; public Short StatusGreaterThanOrEqualTo = null; public Short StatusGreaterThan = null; public Short StatusLessThan = null; public Short StatusLessThanOrEqualTo = null; public Short StatusNotEqualTo = null; public ArrayList StatusBetween = null; public ArrayList StatusIn = null; public BigDecimal DefaultPrice = null; public BigDecimal DefaultPriceGreaterThanOrEqualTo = null; public BigDecimal DefaultPriceGreaterThan = null; public BigDecimal DefaultPriceLessThan = null; public BigDecimal DefaultPriceLessThanOrEqualTo = null; public BigDecimal DefaultPriceNotEqualTo = null; public ArrayList DefaultPriceBetween = null; public ArrayList DefaultPriceIn = null; public BigDecimal RRPPrice = null; public BigDecimal RRPPriceGreaterThanOrEqualTo = null; public BigDecimal RRPPriceGreaterThan = null; public BigDecimal RRPPriceLessThan = null; public BigDecimal RRPPriceLessThanOrEqualTo = null; public BigDecimal RRPPriceNotEqualTo = null; public ArrayList RRPPriceBetween = null; public ArrayList RRPPriceIn = null; public BigDecimal LCost = null; public BigDecimal LCostGreaterThanOrEqualTo = null; public BigDecimal LCostGreaterThan = null; public BigDecimal LCostLessThan = null; public BigDecimal LCostLessThanOrEqualTo = null; public BigDecimal LCostNotEqualTo = null; public ArrayList LCostBetween = null; public ArrayList LCostIn = null; public BigDecimal SCost = null; public BigDecimal SCostGreaterThanOrEqualTo = null; public BigDecimal SCostGreaterThan = null; public BigDecimal SCostLessThan = null; public BigDecimal SCostLessThanOrEqualTo = null; public BigDecimal SCostNotEqualTo = null; public ArrayList SCostBetween = null; public ArrayList SCostIn = null; public Short DecimalPlaces = null; public Short DecimalPlacesGreaterThanOrEqualTo = null; public Short DecimalPlacesGreaterThan = null; public Short DecimalPlacesLessThan = null; public Short DecimalPlacesLessThanOrEqualTo = null; public Short DecimalPlacesNotEqualTo = null; public ArrayList DecimalPlacesBetween = null; public ArrayList DecimalPlacesIn = null; public BigDecimal MinimumGP = null; public BigDecimal MinimumGPGreaterThanOrEqualTo = null; public BigDecimal MinimumGPGreaterThan = null; public BigDecimal MinimumGPLessThan = null; public BigDecimal MinimumGPLessThanOrEqualTo = null; public BigDecimal MinimumGPNotEqualTo = null; public ArrayList MinimumGPBetween = null; public ArrayList MinimumGPIn = null; public BigDecimal Weight = null; public BigDecimal WeightGreaterThanOrEqualTo = null; public BigDecimal WeightGreaterThan = null; public BigDecimal WeightLessThan = null; public BigDecimal WeightLessThanOrEqualTo = null; public BigDecimal WeightNotEqualTo = null; public ArrayList WeightBetween = null; public ArrayList WeightIn = null; public BigDecimal Cubic = null; public BigDecimal CubicGreaterThanOrEqualTo = null; public BigDecimal CubicGreaterThan = null; public BigDecimal CubicLessThan = null; public BigDecimal CubicLessThanOrEqualTo = null; public BigDecimal CubicNotEqualTo = null; public ArrayList CubicBetween = null; public ArrayList CubicIn = null; public Boolean UseSerialNo = null; public String Aux1 = null; public String Aux1StartsWith = null; public String Aux1EndsWith = null; public String Aux1Contains = null; public String Aux1Like = null; public ArrayList Aux1Between = null; public ArrayList Aux1In = null; public String Aux2 = null; public String Aux2StartsWith = null; public String Aux2EndsWith = null; public String Aux2Contains = null; public String Aux2Like = null; public ArrayList Aux2Between = null; public ArrayList Aux2In = null; public String Aux3 = null; public String Aux3StartsWith = null; public String Aux3EndsWith = null; public String Aux3Contains = null; public String Aux3Like = null; public ArrayList Aux3Between = null; public ArrayList Aux3In = null; public String Aux4 = null; public String Aux4StartsWith = null; public String Aux4EndsWith = null; public String Aux4Contains = null; public String Aux4Like = null; public ArrayList Aux4Between = null; public ArrayList Aux4In = null; public String Aux5 = null; public String Aux5StartsWith = null; public String Aux5EndsWith = null; public String Aux5Contains = null; public String Aux5Like = null; public ArrayList Aux5Between = null; public ArrayList Aux5In = null; public Boolean BackOrderable = null; public String LedgerInvValue = null; public String LedgerInvValueStartsWith = null; public String LedgerInvValueEndsWith = null; public String LedgerInvValueContains = null; public String LedgerInvValueLike = null; public ArrayList LedgerInvValueBetween = null; public ArrayList LedgerInvValueIn = null; public String LedgerMovement_COG = null; public String LedgerMovement_COGStartsWith = null; public String LedgerMovement_COGEndsWith = null; public String LedgerMovement_COGContains = null; public String LedgerMovement_COGLike = null; public ArrayList LedgerMovement_COGBetween = null; public ArrayList LedgerMovement_COGIn = null; public String LedgerExpAsset = null; public String LedgerExpAssetStartsWith = null; public String LedgerExpAssetEndsWith = null; public String LedgerExpAssetContains = null; public String LedgerExpAssetLike = null; public ArrayList LedgerExpAssetBetween = null; public ArrayList LedgerExpAssetIn = null; public String LedgerExpLiab = null; public String LedgerExpLiabStartsWith = null; public String LedgerExpLiabEndsWith = null; public String LedgerExpLiabContains = null; public String LedgerExpLiabLike = null; public ArrayList LedgerExpLiabBetween = null; public ArrayList LedgerExpLiabIn = null; public String LedgerDelAsset = null; public String LedgerDelAssetStartsWith = null; public String LedgerDelAssetEndsWith = null; public String LedgerDelAssetContains = null; public String LedgerDelAssetLike = null; public ArrayList LedgerDelAssetBetween = null; public ArrayList LedgerDelAssetIn = null; public String LedgerDelLiab = null; public String LedgerDelLiabStartsWith = null; public String LedgerDelLiabEndsWith = null; public String LedgerDelLiabContains = null; public String LedgerDelLiabLike = null; public ArrayList LedgerDelLiabBetween = null; public ArrayList LedgerDelLiabIn = null; public BigDecimal SalesManCost = null; public BigDecimal SalesManCostGreaterThanOrEqualTo = null; public BigDecimal SalesManCostGreaterThan = null; public BigDecimal SalesManCostLessThan = null; public BigDecimal SalesManCostLessThanOrEqualTo = null; public BigDecimal SalesManCostNotEqualTo = null; public ArrayList SalesManCostBetween = null; public ArrayList SalesManCostIn = null; public String LedgerAssignedValue = null; public String LedgerAssignedValueStartsWith = null; public String LedgerAssignedValueEndsWith = null; public String LedgerAssignedValueContains = null; public String LedgerAssignedValueLike = null; public ArrayList LedgerAssignedValueBetween = null; public ArrayList LedgerAssignedValueIn = null; public String LedgerCogVariance = null; public String LedgerCogVarianceStartsWith = null; public String LedgerCogVarianceEndsWith = null; public String LedgerCogVarianceContains = null; public String LedgerCogVarianceLike = null; public ArrayList LedgerCogVarianceBetween = null; public ArrayList LedgerCogVarianceIn = null; public String LedgerInvSales = null; public String LedgerInvSalesStartsWith = null; public String LedgerInvSalesEndsWith = null; public String LedgerInvSalesContains = null; public String LedgerInvSalesLike = null; public ArrayList LedgerInvSalesBetween = null; public ArrayList LedgerInvSalesIn = null; public String LedgerAccumulator = null; public String LedgerAccumulatorStartsWith = null; public String LedgerAccumulatorEndsWith = null; public String LedgerAccumulatorContains = null; public String LedgerAccumulatorLike = null; public ArrayList LedgerAccumulatorBetween = null; public ArrayList LedgerAccumulatorIn = null; public String LedgerPurchases = null; public String LedgerPurchasesStartsWith = null; public String LedgerPurchasesEndsWith = null; public String LedgerPurchasesContains = null; public String LedgerPurchasesLike = null; public ArrayList LedgerPurchasesBetween = null; public ArrayList LedgerPurchasesIn = null; public String LedgerShipComplete = null; public String LedgerShipCompleteStartsWith = null; public String LedgerShipCompleteEndsWith = null; public String LedgerShipCompleteContains = null; public String LedgerShipCompleteLike = null; public ArrayList LedgerShipCompleteBetween = null; public ArrayList LedgerShipCompleteIn = null; public String LedgerWriteOn = null; public String LedgerWriteOnStartsWith = null; public String LedgerWriteOnEndsWith = null; public String LedgerWriteOnContains = null; public String LedgerWriteOnLike = null; public ArrayList LedgerWriteOnBetween = null; public ArrayList LedgerWriteOnIn = null; public String LedgerWriteOff = null; public String LedgerWriteOffStartsWith = null; public String LedgerWriteOffEndsWith = null; public String LedgerWriteOffContains = null; public String LedgerWriteOffLike = null; public ArrayList LedgerWriteOffBetween = null; public ArrayList LedgerWriteOffIn = null; public String LedgerCostPriceAdj = null; public String LedgerCostPriceAdjStartsWith = null; public String LedgerCostPriceAdjEndsWith = null; public String LedgerCostPriceAdjContains = null; public String LedgerCostPriceAdjLike = null; public ArrayList LedgerCostPriceAdjBetween = null; public ArrayList LedgerCostPriceAdjIn = null; public Short BOMObject = null; public Short BOMObjectGreaterThanOrEqualTo = null; public Short BOMObjectGreaterThan = null; public Short BOMObjectLessThan = null; public Short BOMObjectLessThanOrEqualTo = null; public Short BOMObjectNotEqualTo = null; public ArrayList BOMObjectBetween = null; public ArrayList BOMObjectIn = null; public Boolean UseExpiryDate = null; public Boolean UseStandardCost = null; public BigDecimal StandardCost = null; public BigDecimal StandardCostGreaterThanOrEqualTo = null; public BigDecimal StandardCostGreaterThan = null; public BigDecimal StandardCostLessThan = null; public BigDecimal StandardCostLessThanOrEqualTo = null; public BigDecimal StandardCostNotEqualTo = null; public ArrayList StandardCostBetween = null; public ArrayList StandardCostIn = null; public Boolean WebEnabled = null; public String GSTInwardsID = null; public String GSTInwardsIDStartsWith = null; public String GSTInwardsIDEndsWith = null; public String GSTInwardsIDContains = null; public String GSTInwardsIDLike = null; public ArrayList GSTInwardsIDBetween = null; public ArrayList GSTInwardsIDIn = null; public String GSTOutwardsID = null; public String GSTOutwardsIDStartsWith = null; public String GSTOutwardsIDEndsWith = null; public String GSTOutwardsIDContains = null; public String GSTOutwardsIDLike = null; public ArrayList GSTOutwardsIDBetween = null; public ArrayList GSTOutwardsIDIn = null; public String GSTAdjustmentsINID = null; public String GSTAdjustmentsINIDStartsWith = null; public String GSTAdjustmentsINIDEndsWith = null; public String GSTAdjustmentsINIDContains = null; public String GSTAdjustmentsINIDLike = null; public ArrayList GSTAdjustmentsINIDBetween = null; public ArrayList GSTAdjustmentsINIDIn = null; public String GSTAdjustmentsOUTID = null; public String GSTAdjustmentsOUTIDStartsWith = null; public String GSTAdjustmentsOUTIDEndsWith = null; public String GSTAdjustmentsOUTIDContains = null; public String GSTAdjustmentsOUTIDLike = null; public ArrayList GSTAdjustmentsOUTIDBetween = null; public ArrayList GSTAdjustmentsOUTIDIn = null; public Boolean SellPriceIncTax = null; public String StyleID = null; public String StyleIDStartsWith = null; public String StyleIDEndsWith = null; public String StyleIDContains = null; public String StyleIDLike = null; public ArrayList StyleIDBetween = null; public ArrayList StyleIDIn = null; public String ColourID = null; public String ColourIDStartsWith = null; public String ColourIDEndsWith = null; public String ColourIDContains = null; public String ColourIDLike = null; public ArrayList ColourIDBetween = null; public ArrayList ColourIDIn = null; public String SizeID = null; public String SizeIDStartsWith = null; public String SizeIDEndsWith = null; public String SizeIDContains = null; public String SizeIDLike = null; public ArrayList SizeIDBetween = null; public ArrayList SizeIDIn = null; public Short PartEncodeOrder = null; public Short PartEncodeOrderGreaterThanOrEqualTo = null; public Short PartEncodeOrderGreaterThan = null; public Short PartEncodeOrderLessThan = null; public Short PartEncodeOrderLessThanOrEqualTo = null; public Short PartEncodeOrderNotEqualTo = null; public ArrayList PartEncodeOrderBetween = null; public ArrayList PartEncodeOrderIn = null; public Boolean TypeStyle = null; public String MatrixDescription = null; public String MatrixDescriptionStartsWith = null; public String MatrixDescriptionEndsWith = null; public String MatrixDescriptionContains = null; public String MatrixDescriptionLike = null; public ArrayList MatrixDescriptionBetween = null; public ArrayList MatrixDescriptionIn = null; public BigDecimal SecondaryCost = null; public BigDecimal SecondaryCostGreaterThanOrEqualTo = null; public BigDecimal SecondaryCostGreaterThan = null; public BigDecimal SecondaryCostLessThan = null; public BigDecimal SecondaryCostLessThanOrEqualTo = null; public BigDecimal SecondaryCostNotEqualTo = null; public ArrayList SecondaryCostBetween = null; public ArrayList SecondaryCostIn = null; public String PricingGroupID = null; public String PricingGroupIDStartsWith = null; public String PricingGroupIDEndsWith = null; public String PricingGroupIDContains = null; public String PricingGroupIDLike = null; public ArrayList PricingGroupIDBetween = null; public ArrayList PricingGroupIDIn = null; public Boolean ShipWithPhysicalItem = null; public ArrayList RowHash = null; public ArrayList Picture = null; public String getInventoryID() { return InventoryID; } public IN_MainQuery setInventoryID(String value) { this.InventoryID = value; return this; } public String getInventoryIDStartsWith() { return InventoryIDStartsWith; } public IN_MainQuery setInventoryIDStartsWith(String value) { this.InventoryIDStartsWith = value; return this; } public String getInventoryIDEndsWith() { return InventoryIDEndsWith; } public IN_MainQuery setInventoryIDEndsWith(String value) { this.InventoryIDEndsWith = value; return this; } public String getInventoryIDContains() { return InventoryIDContains; } public IN_MainQuery setInventoryIDContains(String value) { this.InventoryIDContains = value; return this; } public String getInventoryIDLike() { return InventoryIDLike; } public IN_MainQuery setInventoryIDLike(String value) { this.InventoryIDLike = value; return this; } public ArrayList getInventoryIDBetween() { return InventoryIDBetween; } public IN_MainQuery setInventoryIDBetween(ArrayList value) { this.InventoryIDBetween = value; return this; } public ArrayList getInventoryIDIn() { return InventoryIDIn; } public IN_MainQuery setInventoryIDIn(ArrayList value) { this.InventoryIDIn = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public IN_MainQuery setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getLastSavedDateTimeGreaterThanOrEqualTo() { return LastSavedDateTimeGreaterThanOrEqualTo; } public IN_MainQuery setLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.LastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeGreaterThan() { return LastSavedDateTimeGreaterThan; } public IN_MainQuery setLastSavedDateTimeGreaterThan(Date value) { this.LastSavedDateTimeGreaterThan = value; return this; } public Date getLastSavedDateTimeLessThan() { return LastSavedDateTimeLessThan; } public IN_MainQuery setLastSavedDateTimeLessThan(Date value) { this.LastSavedDateTimeLessThan = value; return this; } public Date getLastSavedDateTimeLessThanOrEqualTo() { return LastSavedDateTimeLessThanOrEqualTo; } public IN_MainQuery setLastSavedDateTimeLessThanOrEqualTo(Date value) { this.LastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeNotEqualTo() { return LastSavedDateTimeNotEqualTo; } public IN_MainQuery setLastSavedDateTimeNotEqualTo(Date value) { this.LastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getLastSavedDateTimeBetween() { return LastSavedDateTimeBetween; } public IN_MainQuery setLastSavedDateTimeBetween(ArrayList value) { this.LastSavedDateTimeBetween = value; return this; } public ArrayList getLastSavedDateTimeIn() { return LastSavedDateTimeIn; } public IN_MainQuery setLastSavedDateTimeIn(ArrayList value) { this.LastSavedDateTimeIn = value; return this; } public String getPartNo() { return PartNo; } public IN_MainQuery setPartNo(String value) { this.PartNo = value; return this; } public String getPartNoStartsWith() { return PartNoStartsWith; } public IN_MainQuery setPartNoStartsWith(String value) { this.PartNoStartsWith = value; return this; } public String getPartNoEndsWith() { return PartNoEndsWith; } public IN_MainQuery setPartNoEndsWith(String value) { this.PartNoEndsWith = value; return this; } public String getPartNoContains() { return PartNoContains; } public IN_MainQuery setPartNoContains(String value) { this.PartNoContains = value; return this; } public String getPartNoLike() { return PartNoLike; } public IN_MainQuery setPartNoLike(String value) { this.PartNoLike = value; return this; } public ArrayList getPartNoBetween() { return PartNoBetween; } public IN_MainQuery setPartNoBetween(ArrayList value) { this.PartNoBetween = value; return this; } public ArrayList getPartNoIn() { return PartNoIn; } public IN_MainQuery setPartNoIn(ArrayList value) { this.PartNoIn = value; return this; } public String getDescription() { return Description; } public IN_MainQuery setDescription(String value) { this.Description = value; return this; } public String getDescriptionStartsWith() { return DescriptionStartsWith; } public IN_MainQuery setDescriptionStartsWith(String value) { this.DescriptionStartsWith = value; return this; } public String getDescriptionEndsWith() { return DescriptionEndsWith; } public IN_MainQuery setDescriptionEndsWith(String value) { this.DescriptionEndsWith = value; return this; } public String getDescriptionContains() { return DescriptionContains; } public IN_MainQuery setDescriptionContains(String value) { this.DescriptionContains = value; return this; } public String getDescriptionLike() { return DescriptionLike; } public IN_MainQuery setDescriptionLike(String value) { this.DescriptionLike = value; return this; } public ArrayList getDescriptionBetween() { return DescriptionBetween; } public IN_MainQuery setDescriptionBetween(ArrayList value) { this.DescriptionBetween = value; return this; } public ArrayList getDescriptionIn() { return DescriptionIn; } public IN_MainQuery setDescriptionIn(ArrayList value) { this.DescriptionIn = value; return this; } public String getUnits() { return Units; } public IN_MainQuery setUnits(String value) { this.Units = value; return this; } public String getUnitsStartsWith() { return UnitsStartsWith; } public IN_MainQuery setUnitsStartsWith(String value) { this.UnitsStartsWith = value; return this; } public String getUnitsEndsWith() { return UnitsEndsWith; } public IN_MainQuery setUnitsEndsWith(String value) { this.UnitsEndsWith = value; return this; } public String getUnitsContains() { return UnitsContains; } public IN_MainQuery setUnitsContains(String value) { this.UnitsContains = value; return this; } public String getUnitsLike() { return UnitsLike; } public IN_MainQuery setUnitsLike(String value) { this.UnitsLike = value; return this; } public ArrayList getUnitsBetween() { return UnitsBetween; } public IN_MainQuery setUnitsBetween(ArrayList value) { this.UnitsBetween = value; return this; } public ArrayList getUnitsIn() { return UnitsIn; } public IN_MainQuery setUnitsIn(ArrayList value) { this.UnitsIn = value; return this; } public Boolean isPhysicalItem() { return PhysicalItem; } public IN_MainQuery setPhysicalItem(Boolean value) { this.PhysicalItem = value; return this; } public Boolean isDiscountable() { return Discountable; } public IN_MainQuery setDiscountable(Boolean value) { this.Discountable = value; return this; } public BigDecimal getDirectTax() { return DirectTax; } public IN_MainQuery setDirectTax(BigDecimal value) { this.DirectTax = value; return this; } public BigDecimal getDirectTaxGreaterThanOrEqualTo() { return DirectTaxGreaterThanOrEqualTo; } public IN_MainQuery setDirectTaxGreaterThanOrEqualTo(BigDecimal value) { this.DirectTaxGreaterThanOrEqualTo = value; return this; } public BigDecimal getDirectTaxGreaterThan() { return DirectTaxGreaterThan; } public IN_MainQuery setDirectTaxGreaterThan(BigDecimal value) { this.DirectTaxGreaterThan = value; return this; } public BigDecimal getDirectTaxLessThan() { return DirectTaxLessThan; } public IN_MainQuery setDirectTaxLessThan(BigDecimal value) { this.DirectTaxLessThan = value; return this; } public BigDecimal getDirectTaxLessThanOrEqualTo() { return DirectTaxLessThanOrEqualTo; } public IN_MainQuery setDirectTaxLessThanOrEqualTo(BigDecimal value) { this.DirectTaxLessThanOrEqualTo = value; return this; } public BigDecimal getDirectTaxNotEqualTo() { return DirectTaxNotEqualTo; } public IN_MainQuery setDirectTaxNotEqualTo(BigDecimal value) { this.DirectTaxNotEqualTo = value; return this; } public ArrayList getDirectTaxBetween() { return DirectTaxBetween; } public IN_MainQuery setDirectTaxBetween(ArrayList value) { this.DirectTaxBetween = value; return this; } public ArrayList getDirectTaxIn() { return DirectTaxIn; } public IN_MainQuery setDirectTaxIn(ArrayList value) { this.DirectTaxIn = value; return this; } public String getCatagory1ID() { return Catagory1ID; } public IN_MainQuery setCatagory1ID(String value) { this.Catagory1ID = value; return this; } public String getCatagory1IDStartsWith() { return Catagory1IDStartsWith; } public IN_MainQuery setCatagory1IDStartsWith(String value) { this.Catagory1IDStartsWith = value; return this; } public String getCatagory1IDEndsWith() { return Catagory1IDEndsWith; } public IN_MainQuery setCatagory1IDEndsWith(String value) { this.Catagory1IDEndsWith = value; return this; } public String getCatagory1IDContains() { return Catagory1IDContains; } public IN_MainQuery setCatagory1IDContains(String value) { this.Catagory1IDContains = value; return this; } public String getCatagory1IDLike() { return Catagory1IDLike; } public IN_MainQuery setCatagory1IDLike(String value) { this.Catagory1IDLike = value; return this; } public ArrayList getCatagory1IDBetween() { return Catagory1IDBetween; } public IN_MainQuery setCatagory1IDBetween(ArrayList value) { this.Catagory1IDBetween = value; return this; } public ArrayList getCatagory1IDIn() { return Catagory1IDIn; } public IN_MainQuery setCatagory1IDIn(ArrayList value) { this.Catagory1IDIn = value; return this; } public String getCatagory2ID() { return Catagory2ID; } public IN_MainQuery setCatagory2ID(String value) { this.Catagory2ID = value; return this; } public String getCatagory2IDStartsWith() { return Catagory2IDStartsWith; } public IN_MainQuery setCatagory2IDStartsWith(String value) { this.Catagory2IDStartsWith = value; return this; } public String getCatagory2IDEndsWith() { return Catagory2IDEndsWith; } public IN_MainQuery setCatagory2IDEndsWith(String value) { this.Catagory2IDEndsWith = value; return this; } public String getCatagory2IDContains() { return Catagory2IDContains; } public IN_MainQuery setCatagory2IDContains(String value) { this.Catagory2IDContains = value; return this; } public String getCatagory2IDLike() { return Catagory2IDLike; } public IN_MainQuery setCatagory2IDLike(String value) { this.Catagory2IDLike = value; return this; } public ArrayList getCatagory2IDBetween() { return Catagory2IDBetween; } public IN_MainQuery setCatagory2IDBetween(ArrayList value) { this.Catagory2IDBetween = value; return this; } public ArrayList getCatagory2IDIn() { return Catagory2IDIn; } public IN_MainQuery setCatagory2IDIn(ArrayList value) { this.Catagory2IDIn = value; return this; } public String getCatagory3ID() { return Catagory3ID; } public IN_MainQuery setCatagory3ID(String value) { this.Catagory3ID = value; return this; } public String getCatagory3IDStartsWith() { return Catagory3IDStartsWith; } public IN_MainQuery setCatagory3IDStartsWith(String value) { this.Catagory3IDStartsWith = value; return this; } public String getCatagory3IDEndsWith() { return Catagory3IDEndsWith; } public IN_MainQuery setCatagory3IDEndsWith(String value) { this.Catagory3IDEndsWith = value; return this; } public String getCatagory3IDContains() { return Catagory3IDContains; } public IN_MainQuery setCatagory3IDContains(String value) { this.Catagory3IDContains = value; return this; } public String getCatagory3IDLike() { return Catagory3IDLike; } public IN_MainQuery setCatagory3IDLike(String value) { this.Catagory3IDLike = value; return this; } public ArrayList getCatagory3IDBetween() { return Catagory3IDBetween; } public IN_MainQuery setCatagory3IDBetween(ArrayList value) { this.Catagory3IDBetween = value; return this; } public ArrayList getCatagory3IDIn() { return Catagory3IDIn; } public IN_MainQuery setCatagory3IDIn(ArrayList value) { this.Catagory3IDIn = value; return this; } public String getCatagory4ID() { return Catagory4ID; } public IN_MainQuery setCatagory4ID(String value) { this.Catagory4ID = value; return this; } public String getCatagory4IDStartsWith() { return Catagory4IDStartsWith; } public IN_MainQuery setCatagory4IDStartsWith(String value) { this.Catagory4IDStartsWith = value; return this; } public String getCatagory4IDEndsWith() { return Catagory4IDEndsWith; } public IN_MainQuery setCatagory4IDEndsWith(String value) { this.Catagory4IDEndsWith = value; return this; } public String getCatagory4IDContains() { return Catagory4IDContains; } public IN_MainQuery setCatagory4IDContains(String value) { this.Catagory4IDContains = value; return this; } public String getCatagory4IDLike() { return Catagory4IDLike; } public IN_MainQuery setCatagory4IDLike(String value) { this.Catagory4IDLike = value; return this; } public ArrayList getCatagory4IDBetween() { return Catagory4IDBetween; } public IN_MainQuery setCatagory4IDBetween(ArrayList value) { this.Catagory4IDBetween = value; return this; } public ArrayList getCatagory4IDIn() { return Catagory4IDIn; } public IN_MainQuery setCatagory4IDIn(ArrayList value) { this.Catagory4IDIn = value; return this; } public String getCatagory5ID() { return Catagory5ID; } public IN_MainQuery setCatagory5ID(String value) { this.Catagory5ID = value; return this; } public String getCatagory5IDStartsWith() { return Catagory5IDStartsWith; } public IN_MainQuery setCatagory5IDStartsWith(String value) { this.Catagory5IDStartsWith = value; return this; } public String getCatagory5IDEndsWith() { return Catagory5IDEndsWith; } public IN_MainQuery setCatagory5IDEndsWith(String value) { this.Catagory5IDEndsWith = value; return this; } public String getCatagory5IDContains() { return Catagory5IDContains; } public IN_MainQuery setCatagory5IDContains(String value) { this.Catagory5IDContains = value; return this; } public String getCatagory5IDLike() { return Catagory5IDLike; } public IN_MainQuery setCatagory5IDLike(String value) { this.Catagory5IDLike = value; return this; } public ArrayList getCatagory5IDBetween() { return Catagory5IDBetween; } public IN_MainQuery setCatagory5IDBetween(ArrayList value) { this.Catagory5IDBetween = value; return this; } public ArrayList getCatagory5IDIn() { return Catagory5IDIn; } public IN_MainQuery setCatagory5IDIn(ArrayList value) { this.Catagory5IDIn = value; return this; } public String getClassificationID() { return ClassificationID; } public IN_MainQuery setClassificationID(String value) { this.ClassificationID = value; return this; } public String getClassificationIDStartsWith() { return ClassificationIDStartsWith; } public IN_MainQuery setClassificationIDStartsWith(String value) { this.ClassificationIDStartsWith = value; return this; } public String getClassificationIDEndsWith() { return ClassificationIDEndsWith; } public IN_MainQuery setClassificationIDEndsWith(String value) { this.ClassificationIDEndsWith = value; return this; } public String getClassificationIDContains() { return ClassificationIDContains; } public IN_MainQuery setClassificationIDContains(String value) { this.ClassificationIDContains = value; return this; } public String getClassificationIDLike() { return ClassificationIDLike; } public IN_MainQuery setClassificationIDLike(String value) { this.ClassificationIDLike = value; return this; } public ArrayList getClassificationIDBetween() { return ClassificationIDBetween; } public IN_MainQuery setClassificationIDBetween(ArrayList value) { this.ClassificationIDBetween = value; return this; } public ArrayList getClassificationIDIn() { return ClassificationIDIn; } public IN_MainQuery setClassificationIDIn(ArrayList value) { this.ClassificationIDIn = value; return this; } public Short getStatus() { return Status; } public IN_MainQuery setStatus(Short value) { this.Status = value; return this; } public Short getStatusGreaterThanOrEqualTo() { return StatusGreaterThanOrEqualTo; } public IN_MainQuery setStatusGreaterThanOrEqualTo(Short value) { this.StatusGreaterThanOrEqualTo = value; return this; } public Short getStatusGreaterThan() { return StatusGreaterThan; } public IN_MainQuery setStatusGreaterThan(Short value) { this.StatusGreaterThan = value; return this; } public Short getStatusLessThan() { return StatusLessThan; } public IN_MainQuery setStatusLessThan(Short value) { this.StatusLessThan = value; return this; } public Short getStatusLessThanOrEqualTo() { return StatusLessThanOrEqualTo; } public IN_MainQuery setStatusLessThanOrEqualTo(Short value) { this.StatusLessThanOrEqualTo = value; return this; } public Short getStatusNotEqualTo() { return StatusNotEqualTo; } public IN_MainQuery setStatusNotEqualTo(Short value) { this.StatusNotEqualTo = value; return this; } public ArrayList getStatusBetween() { return StatusBetween; } public IN_MainQuery setStatusBetween(ArrayList value) { this.StatusBetween = value; return this; } public ArrayList getStatusIn() { return StatusIn; } public IN_MainQuery setStatusIn(ArrayList value) { this.StatusIn = value; return this; } public BigDecimal getDefaultPrice() { return DefaultPrice; } public IN_MainQuery setDefaultPrice(BigDecimal value) { this.DefaultPrice = value; return this; } public BigDecimal getDefaultPriceGreaterThanOrEqualTo() { return DefaultPriceGreaterThanOrEqualTo; } public IN_MainQuery setDefaultPriceGreaterThanOrEqualTo(BigDecimal value) { this.DefaultPriceGreaterThanOrEqualTo = value; return this; } public BigDecimal getDefaultPriceGreaterThan() { return DefaultPriceGreaterThan; } public IN_MainQuery setDefaultPriceGreaterThan(BigDecimal value) { this.DefaultPriceGreaterThan = value; return this; } public BigDecimal getDefaultPriceLessThan() { return DefaultPriceLessThan; } public IN_MainQuery setDefaultPriceLessThan(BigDecimal value) { this.DefaultPriceLessThan = value; return this; } public BigDecimal getDefaultPriceLessThanOrEqualTo() { return DefaultPriceLessThanOrEqualTo; } public IN_MainQuery setDefaultPriceLessThanOrEqualTo(BigDecimal value) { this.DefaultPriceLessThanOrEqualTo = value; return this; } public BigDecimal getDefaultPriceNotEqualTo() { return DefaultPriceNotEqualTo; } public IN_MainQuery setDefaultPriceNotEqualTo(BigDecimal value) { this.DefaultPriceNotEqualTo = value; return this; } public ArrayList getDefaultPriceBetween() { return DefaultPriceBetween; } public IN_MainQuery setDefaultPriceBetween(ArrayList value) { this.DefaultPriceBetween = value; return this; } public ArrayList getDefaultPriceIn() { return DefaultPriceIn; } public IN_MainQuery setDefaultPriceIn(ArrayList value) { this.DefaultPriceIn = value; return this; } public BigDecimal getRrpPrice() { return RRPPrice; } public IN_MainQuery setRrpPrice(BigDecimal value) { this.RRPPrice = value; return this; } public BigDecimal getRrpPriceGreaterThanOrEqualTo() { return RRPPriceGreaterThanOrEqualTo; } public IN_MainQuery setRrpPriceGreaterThanOrEqualTo(BigDecimal value) { this.RRPPriceGreaterThanOrEqualTo = value; return this; } public BigDecimal getRrpPriceGreaterThan() { return RRPPriceGreaterThan; } public IN_MainQuery setRrpPriceGreaterThan(BigDecimal value) { this.RRPPriceGreaterThan = value; return this; } public BigDecimal getRrpPriceLessThan() { return RRPPriceLessThan; } public IN_MainQuery setRrpPriceLessThan(BigDecimal value) { this.RRPPriceLessThan = value; return this; } public BigDecimal getRrpPriceLessThanOrEqualTo() { return RRPPriceLessThanOrEqualTo; } public IN_MainQuery setRrpPriceLessThanOrEqualTo(BigDecimal value) { this.RRPPriceLessThanOrEqualTo = value; return this; } public BigDecimal getRrpPriceNotEqualTo() { return RRPPriceNotEqualTo; } public IN_MainQuery setRrpPriceNotEqualTo(BigDecimal value) { this.RRPPriceNotEqualTo = value; return this; } public ArrayList getRrpPriceBetween() { return RRPPriceBetween; } public IN_MainQuery setRrpPriceBetween(ArrayList value) { this.RRPPriceBetween = value; return this; } public ArrayList getRrpPriceIn() { return RRPPriceIn; } public IN_MainQuery setRrpPriceIn(ArrayList value) { this.RRPPriceIn = value; return this; } public BigDecimal getLCost() { return LCost; } public IN_MainQuery setLCost(BigDecimal value) { this.LCost = value; return this; } public BigDecimal getLCostGreaterThanOrEqualTo() { return LCostGreaterThanOrEqualTo; } public IN_MainQuery setLCostGreaterThanOrEqualTo(BigDecimal value) { this.LCostGreaterThanOrEqualTo = value; return this; } public BigDecimal getLCostGreaterThan() { return LCostGreaterThan; } public IN_MainQuery setLCostGreaterThan(BigDecimal value) { this.LCostGreaterThan = value; return this; } public BigDecimal getLCostLessThan() { return LCostLessThan; } public IN_MainQuery setLCostLessThan(BigDecimal value) { this.LCostLessThan = value; return this; } public BigDecimal getLCostLessThanOrEqualTo() { return LCostLessThanOrEqualTo; } public IN_MainQuery setLCostLessThanOrEqualTo(BigDecimal value) { this.LCostLessThanOrEqualTo = value; return this; } public BigDecimal getLCostNotEqualTo() { return LCostNotEqualTo; } public IN_MainQuery setLCostNotEqualTo(BigDecimal value) { this.LCostNotEqualTo = value; return this; } public ArrayList getLCostBetween() { return LCostBetween; } public IN_MainQuery setLCostBetween(ArrayList value) { this.LCostBetween = value; return this; } public ArrayList getLCostIn() { return LCostIn; } public IN_MainQuery setLCostIn(ArrayList value) { this.LCostIn = value; return this; } public BigDecimal getSCost() { return SCost; } public IN_MainQuery setSCost(BigDecimal value) { this.SCost = value; return this; } public BigDecimal getSCostGreaterThanOrEqualTo() { return SCostGreaterThanOrEqualTo; } public IN_MainQuery setSCostGreaterThanOrEqualTo(BigDecimal value) { this.SCostGreaterThanOrEqualTo = value; return this; } public BigDecimal getSCostGreaterThan() { return SCostGreaterThan; } public IN_MainQuery setSCostGreaterThan(BigDecimal value) { this.SCostGreaterThan = value; return this; } public BigDecimal getSCostLessThan() { return SCostLessThan; } public IN_MainQuery setSCostLessThan(BigDecimal value) { this.SCostLessThan = value; return this; } public BigDecimal getSCostLessThanOrEqualTo() { return SCostLessThanOrEqualTo; } public IN_MainQuery setSCostLessThanOrEqualTo(BigDecimal value) { this.SCostLessThanOrEqualTo = value; return this; } public BigDecimal getSCostNotEqualTo() { return SCostNotEqualTo; } public IN_MainQuery setSCostNotEqualTo(BigDecimal value) { this.SCostNotEqualTo = value; return this; } public ArrayList getSCostBetween() { return SCostBetween; } public IN_MainQuery setSCostBetween(ArrayList value) { this.SCostBetween = value; return this; } public ArrayList getSCostIn() { return SCostIn; } public IN_MainQuery setSCostIn(ArrayList value) { this.SCostIn = value; return this; } public Short getDecimalPlaces() { return DecimalPlaces; } public IN_MainQuery setDecimalPlaces(Short value) { this.DecimalPlaces = value; return this; } public Short getDecimalPlacesGreaterThanOrEqualTo() { return DecimalPlacesGreaterThanOrEqualTo; } public IN_MainQuery setDecimalPlacesGreaterThanOrEqualTo(Short value) { this.DecimalPlacesGreaterThanOrEqualTo = value; return this; } public Short getDecimalPlacesGreaterThan() { return DecimalPlacesGreaterThan; } public IN_MainQuery setDecimalPlacesGreaterThan(Short value) { this.DecimalPlacesGreaterThan = value; return this; } public Short getDecimalPlacesLessThan() { return DecimalPlacesLessThan; } public IN_MainQuery setDecimalPlacesLessThan(Short value) { this.DecimalPlacesLessThan = value; return this; } public Short getDecimalPlacesLessThanOrEqualTo() { return DecimalPlacesLessThanOrEqualTo; } public IN_MainQuery setDecimalPlacesLessThanOrEqualTo(Short value) { this.DecimalPlacesLessThanOrEqualTo = value; return this; } public Short getDecimalPlacesNotEqualTo() { return DecimalPlacesNotEqualTo; } public IN_MainQuery setDecimalPlacesNotEqualTo(Short value) { this.DecimalPlacesNotEqualTo = value; return this; } public ArrayList getDecimalPlacesBetween() { return DecimalPlacesBetween; } public IN_MainQuery setDecimalPlacesBetween(ArrayList value) { this.DecimalPlacesBetween = value; return this; } public ArrayList getDecimalPlacesIn() { return DecimalPlacesIn; } public IN_MainQuery setDecimalPlacesIn(ArrayList value) { this.DecimalPlacesIn = value; return this; } public BigDecimal getMinimumGP() { return MinimumGP; } public IN_MainQuery setMinimumGP(BigDecimal value) { this.MinimumGP = value; return this; } public BigDecimal getMinimumGPGreaterThanOrEqualTo() { return MinimumGPGreaterThanOrEqualTo; } public IN_MainQuery setMinimumGPGreaterThanOrEqualTo(BigDecimal value) { this.MinimumGPGreaterThanOrEqualTo = value; return this; } public BigDecimal getMinimumGPGreaterThan() { return MinimumGPGreaterThan; } public IN_MainQuery setMinimumGPGreaterThan(BigDecimal value) { this.MinimumGPGreaterThan = value; return this; } public BigDecimal getMinimumGPLessThan() { return MinimumGPLessThan; } public IN_MainQuery setMinimumGPLessThan(BigDecimal value) { this.MinimumGPLessThan = value; return this; } public BigDecimal getMinimumGPLessThanOrEqualTo() { return MinimumGPLessThanOrEqualTo; } public IN_MainQuery setMinimumGPLessThanOrEqualTo(BigDecimal value) { this.MinimumGPLessThanOrEqualTo = value; return this; } public BigDecimal getMinimumGPNotEqualTo() { return MinimumGPNotEqualTo; } public IN_MainQuery setMinimumGPNotEqualTo(BigDecimal value) { this.MinimumGPNotEqualTo = value; return this; } public ArrayList getMinimumGPBetween() { return MinimumGPBetween; } public IN_MainQuery setMinimumGPBetween(ArrayList value) { this.MinimumGPBetween = value; return this; } public ArrayList getMinimumGPIn() { return MinimumGPIn; } public IN_MainQuery setMinimumGPIn(ArrayList value) { this.MinimumGPIn = value; return this; } public BigDecimal getWeight() { return Weight; } public IN_MainQuery setWeight(BigDecimal value) { this.Weight = value; return this; } public BigDecimal getWeightGreaterThanOrEqualTo() { return WeightGreaterThanOrEqualTo; } public IN_MainQuery setWeightGreaterThanOrEqualTo(BigDecimal value) { this.WeightGreaterThanOrEqualTo = value; return this; } public BigDecimal getWeightGreaterThan() { return WeightGreaterThan; } public IN_MainQuery setWeightGreaterThan(BigDecimal value) { this.WeightGreaterThan = value; return this; } public BigDecimal getWeightLessThan() { return WeightLessThan; } public IN_MainQuery setWeightLessThan(BigDecimal value) { this.WeightLessThan = value; return this; } public BigDecimal getWeightLessThanOrEqualTo() { return WeightLessThanOrEqualTo; } public IN_MainQuery setWeightLessThanOrEqualTo(BigDecimal value) { this.WeightLessThanOrEqualTo = value; return this; } public BigDecimal getWeightNotEqualTo() { return WeightNotEqualTo; } public IN_MainQuery setWeightNotEqualTo(BigDecimal value) { this.WeightNotEqualTo = value; return this; } public ArrayList getWeightBetween() { return WeightBetween; } public IN_MainQuery setWeightBetween(ArrayList value) { this.WeightBetween = value; return this; } public ArrayList getWeightIn() { return WeightIn; } public IN_MainQuery setWeightIn(ArrayList value) { this.WeightIn = value; return this; } public BigDecimal getCubic() { return Cubic; } public IN_MainQuery setCubic(BigDecimal value) { this.Cubic = value; return this; } public BigDecimal getCubicGreaterThanOrEqualTo() { return CubicGreaterThanOrEqualTo; } public IN_MainQuery setCubicGreaterThanOrEqualTo(BigDecimal value) { this.CubicGreaterThanOrEqualTo = value; return this; } public BigDecimal getCubicGreaterThan() { return CubicGreaterThan; } public IN_MainQuery setCubicGreaterThan(BigDecimal value) { this.CubicGreaterThan = value; return this; } public BigDecimal getCubicLessThan() { return CubicLessThan; } public IN_MainQuery setCubicLessThan(BigDecimal value) { this.CubicLessThan = value; return this; } public BigDecimal getCubicLessThanOrEqualTo() { return CubicLessThanOrEqualTo; } public IN_MainQuery setCubicLessThanOrEqualTo(BigDecimal value) { this.CubicLessThanOrEqualTo = value; return this; } public BigDecimal getCubicNotEqualTo() { return CubicNotEqualTo; } public IN_MainQuery setCubicNotEqualTo(BigDecimal value) { this.CubicNotEqualTo = value; return this; } public ArrayList getCubicBetween() { return CubicBetween; } public IN_MainQuery setCubicBetween(ArrayList value) { this.CubicBetween = value; return this; } public ArrayList getCubicIn() { return CubicIn; } public IN_MainQuery setCubicIn(ArrayList value) { this.CubicIn = value; return this; } public Boolean isUseSerialNo() { return UseSerialNo; } public IN_MainQuery setUseSerialNo(Boolean value) { this.UseSerialNo = value; return this; } public String getAux1() { return Aux1; } public IN_MainQuery setAux1(String value) { this.Aux1 = value; return this; } public String getAux1StartsWith() { return Aux1StartsWith; } public IN_MainQuery setAux1StartsWith(String value) { this.Aux1StartsWith = value; return this; } public String getAux1EndsWith() { return Aux1EndsWith; } public IN_MainQuery setAux1EndsWith(String value) { this.Aux1EndsWith = value; return this; } public String getAux1Contains() { return Aux1Contains; } public IN_MainQuery setAux1Contains(String value) { this.Aux1Contains = value; return this; } public String getAux1Like() { return Aux1Like; } public IN_MainQuery setAux1Like(String value) { this.Aux1Like = value; return this; } public ArrayList getAux1Between() { return Aux1Between; } public IN_MainQuery setAux1Between(ArrayList value) { this.Aux1Between = value; return this; } public ArrayList getAux1In() { return Aux1In; } public IN_MainQuery setAux1In(ArrayList value) { this.Aux1In = value; return this; } public String getAux2() { return Aux2; } public IN_MainQuery setAux2(String value) { this.Aux2 = value; return this; } public String getAux2StartsWith() { return Aux2StartsWith; } public IN_MainQuery setAux2StartsWith(String value) { this.Aux2StartsWith = value; return this; } public String getAux2EndsWith() { return Aux2EndsWith; } public IN_MainQuery setAux2EndsWith(String value) { this.Aux2EndsWith = value; return this; } public String getAux2Contains() { return Aux2Contains; } public IN_MainQuery setAux2Contains(String value) { this.Aux2Contains = value; return this; } public String getAux2Like() { return Aux2Like; } public IN_MainQuery setAux2Like(String value) { this.Aux2Like = value; return this; } public ArrayList getAux2Between() { return Aux2Between; } public IN_MainQuery setAux2Between(ArrayList value) { this.Aux2Between = value; return this; } public ArrayList getAux2In() { return Aux2In; } public IN_MainQuery setAux2In(ArrayList value) { this.Aux2In = value; return this; } public String getAux3() { return Aux3; } public IN_MainQuery setAux3(String value) { this.Aux3 = value; return this; } public String getAux3StartsWith() { return Aux3StartsWith; } public IN_MainQuery setAux3StartsWith(String value) { this.Aux3StartsWith = value; return this; } public String getAux3EndsWith() { return Aux3EndsWith; } public IN_MainQuery setAux3EndsWith(String value) { this.Aux3EndsWith = value; return this; } public String getAux3Contains() { return Aux3Contains; } public IN_MainQuery setAux3Contains(String value) { this.Aux3Contains = value; return this; } public String getAux3Like() { return Aux3Like; } public IN_MainQuery setAux3Like(String value) { this.Aux3Like = value; return this; } public ArrayList getAux3Between() { return Aux3Between; } public IN_MainQuery setAux3Between(ArrayList value) { this.Aux3Between = value; return this; } public ArrayList getAux3In() { return Aux3In; } public IN_MainQuery setAux3In(ArrayList value) { this.Aux3In = value; return this; } public String getAux4() { return Aux4; } public IN_MainQuery setAux4(String value) { this.Aux4 = value; return this; } public String getAux4StartsWith() { return Aux4StartsWith; } public IN_MainQuery setAux4StartsWith(String value) { this.Aux4StartsWith = value; return this; } public String getAux4EndsWith() { return Aux4EndsWith; } public IN_MainQuery setAux4EndsWith(String value) { this.Aux4EndsWith = value; return this; } public String getAux4Contains() { return Aux4Contains; } public IN_MainQuery setAux4Contains(String value) { this.Aux4Contains = value; return this; } public String getAux4Like() { return Aux4Like; } public IN_MainQuery setAux4Like(String value) { this.Aux4Like = value; return this; } public ArrayList getAux4Between() { return Aux4Between; } public IN_MainQuery setAux4Between(ArrayList value) { this.Aux4Between = value; return this; } public ArrayList getAux4In() { return Aux4In; } public IN_MainQuery setAux4In(ArrayList value) { this.Aux4In = value; return this; } public String getAux5() { return Aux5; } public IN_MainQuery setAux5(String value) { this.Aux5 = value; return this; } public String getAux5StartsWith() { return Aux5StartsWith; } public IN_MainQuery setAux5StartsWith(String value) { this.Aux5StartsWith = value; return this; } public String getAux5EndsWith() { return Aux5EndsWith; } public IN_MainQuery setAux5EndsWith(String value) { this.Aux5EndsWith = value; return this; } public String getAux5Contains() { return Aux5Contains; } public IN_MainQuery setAux5Contains(String value) { this.Aux5Contains = value; return this; } public String getAux5Like() { return Aux5Like; } public IN_MainQuery setAux5Like(String value) { this.Aux5Like = value; return this; } public ArrayList getAux5Between() { return Aux5Between; } public IN_MainQuery setAux5Between(ArrayList value) { this.Aux5Between = value; return this; } public ArrayList getAux5In() { return Aux5In; } public IN_MainQuery setAux5In(ArrayList value) { this.Aux5In = value; return this; } public Boolean isBackOrderable() { return BackOrderable; } public IN_MainQuery setBackOrderable(Boolean value) { this.BackOrderable = value; return this; } public String getLedgerInvValue() { return LedgerInvValue; } public IN_MainQuery setLedgerInvValue(String value) { this.LedgerInvValue = value; return this; } public String getLedgerInvValueStartsWith() { return LedgerInvValueStartsWith; } public IN_MainQuery setLedgerInvValueStartsWith(String value) { this.LedgerInvValueStartsWith = value; return this; } public String getLedgerInvValueEndsWith() { return LedgerInvValueEndsWith; } public IN_MainQuery setLedgerInvValueEndsWith(String value) { this.LedgerInvValueEndsWith = value; return this; } public String getLedgerInvValueContains() { return LedgerInvValueContains; } public IN_MainQuery setLedgerInvValueContains(String value) { this.LedgerInvValueContains = value; return this; } public String getLedgerInvValueLike() { return LedgerInvValueLike; } public IN_MainQuery setLedgerInvValueLike(String value) { this.LedgerInvValueLike = value; return this; } public ArrayList getLedgerInvValueBetween() { return LedgerInvValueBetween; } public IN_MainQuery setLedgerInvValueBetween(ArrayList value) { this.LedgerInvValueBetween = value; return this; } public ArrayList getLedgerInvValueIn() { return LedgerInvValueIn; } public IN_MainQuery setLedgerInvValueIn(ArrayList value) { this.LedgerInvValueIn = value; return this; } public String getLedgerMovementCog() { return LedgerMovement_COG; } public IN_MainQuery setLedgerMovementCog(String value) { this.LedgerMovement_COG = value; return this; } public String getLedgerMovementCogStartsWith() { return LedgerMovement_COGStartsWith; } public IN_MainQuery setLedgerMovementCogStartsWith(String value) { this.LedgerMovement_COGStartsWith = value; return this; } public String getLedgerMovementCogEndsWith() { return LedgerMovement_COGEndsWith; } public IN_MainQuery setLedgerMovementCogEndsWith(String value) { this.LedgerMovement_COGEndsWith = value; return this; } public String getLedgerMovementCogContains() { return LedgerMovement_COGContains; } public IN_MainQuery setLedgerMovementCogContains(String value) { this.LedgerMovement_COGContains = value; return this; } public String getLedgerMovementCogLike() { return LedgerMovement_COGLike; } public IN_MainQuery setLedgerMovementCogLike(String value) { this.LedgerMovement_COGLike = value; return this; } public ArrayList getLedgerMovementCogBetween() { return LedgerMovement_COGBetween; } public IN_MainQuery setLedgerMovementCogBetween(ArrayList value) { this.LedgerMovement_COGBetween = value; return this; } public ArrayList getLedgerMovementCogIn() { return LedgerMovement_COGIn; } public IN_MainQuery setLedgerMovementCogIn(ArrayList value) { this.LedgerMovement_COGIn = value; return this; } public String getLedgerExpAsset() { return LedgerExpAsset; } public IN_MainQuery setLedgerExpAsset(String value) { this.LedgerExpAsset = value; return this; } public String getLedgerExpAssetStartsWith() { return LedgerExpAssetStartsWith; } public IN_MainQuery setLedgerExpAssetStartsWith(String value) { this.LedgerExpAssetStartsWith = value; return this; } public String getLedgerExpAssetEndsWith() { return LedgerExpAssetEndsWith; } public IN_MainQuery setLedgerExpAssetEndsWith(String value) { this.LedgerExpAssetEndsWith = value; return this; } public String getLedgerExpAssetContains() { return LedgerExpAssetContains; } public IN_MainQuery setLedgerExpAssetContains(String value) { this.LedgerExpAssetContains = value; return this; } public String getLedgerExpAssetLike() { return LedgerExpAssetLike; } public IN_MainQuery setLedgerExpAssetLike(String value) { this.LedgerExpAssetLike = value; return this; } public ArrayList getLedgerExpAssetBetween() { return LedgerExpAssetBetween; } public IN_MainQuery setLedgerExpAssetBetween(ArrayList value) { this.LedgerExpAssetBetween = value; return this; } public ArrayList getLedgerExpAssetIn() { return LedgerExpAssetIn; } public IN_MainQuery setLedgerExpAssetIn(ArrayList value) { this.LedgerExpAssetIn = value; return this; } public String getLedgerExpLiab() { return LedgerExpLiab; } public IN_MainQuery setLedgerExpLiab(String value) { this.LedgerExpLiab = value; return this; } public String getLedgerExpLiabStartsWith() { return LedgerExpLiabStartsWith; } public IN_MainQuery setLedgerExpLiabStartsWith(String value) { this.LedgerExpLiabStartsWith = value; return this; } public String getLedgerExpLiabEndsWith() { return LedgerExpLiabEndsWith; } public IN_MainQuery setLedgerExpLiabEndsWith(String value) { this.LedgerExpLiabEndsWith = value; return this; } public String getLedgerExpLiabContains() { return LedgerExpLiabContains; } public IN_MainQuery setLedgerExpLiabContains(String value) { this.LedgerExpLiabContains = value; return this; } public String getLedgerExpLiabLike() { return LedgerExpLiabLike; } public IN_MainQuery setLedgerExpLiabLike(String value) { this.LedgerExpLiabLike = value; return this; } public ArrayList getLedgerExpLiabBetween() { return LedgerExpLiabBetween; } public IN_MainQuery setLedgerExpLiabBetween(ArrayList value) { this.LedgerExpLiabBetween = value; return this; } public ArrayList getLedgerExpLiabIn() { return LedgerExpLiabIn; } public IN_MainQuery setLedgerExpLiabIn(ArrayList value) { this.LedgerExpLiabIn = value; return this; } public String getLedgerDelAsset() { return LedgerDelAsset; } public IN_MainQuery setLedgerDelAsset(String value) { this.LedgerDelAsset = value; return this; } public String getLedgerDelAssetStartsWith() { return LedgerDelAssetStartsWith; } public IN_MainQuery setLedgerDelAssetStartsWith(String value) { this.LedgerDelAssetStartsWith = value; return this; } public String getLedgerDelAssetEndsWith() { return LedgerDelAssetEndsWith; } public IN_MainQuery setLedgerDelAssetEndsWith(String value) { this.LedgerDelAssetEndsWith = value; return this; } public String getLedgerDelAssetContains() { return LedgerDelAssetContains; } public IN_MainQuery setLedgerDelAssetContains(String value) { this.LedgerDelAssetContains = value; return this; } public String getLedgerDelAssetLike() { return LedgerDelAssetLike; } public IN_MainQuery setLedgerDelAssetLike(String value) { this.LedgerDelAssetLike = value; return this; } public ArrayList getLedgerDelAssetBetween() { return LedgerDelAssetBetween; } public IN_MainQuery setLedgerDelAssetBetween(ArrayList value) { this.LedgerDelAssetBetween = value; return this; } public ArrayList getLedgerDelAssetIn() { return LedgerDelAssetIn; } public IN_MainQuery setLedgerDelAssetIn(ArrayList value) { this.LedgerDelAssetIn = value; return this; } public String getLedgerDelLiab() { return LedgerDelLiab; } public IN_MainQuery setLedgerDelLiab(String value) { this.LedgerDelLiab = value; return this; } public String getLedgerDelLiabStartsWith() { return LedgerDelLiabStartsWith; } public IN_MainQuery setLedgerDelLiabStartsWith(String value) { this.LedgerDelLiabStartsWith = value; return this; } public String getLedgerDelLiabEndsWith() { return LedgerDelLiabEndsWith; } public IN_MainQuery setLedgerDelLiabEndsWith(String value) { this.LedgerDelLiabEndsWith = value; return this; } public String getLedgerDelLiabContains() { return LedgerDelLiabContains; } public IN_MainQuery setLedgerDelLiabContains(String value) { this.LedgerDelLiabContains = value; return this; } public String getLedgerDelLiabLike() { return LedgerDelLiabLike; } public IN_MainQuery setLedgerDelLiabLike(String value) { this.LedgerDelLiabLike = value; return this; } public ArrayList getLedgerDelLiabBetween() { return LedgerDelLiabBetween; } public IN_MainQuery setLedgerDelLiabBetween(ArrayList value) { this.LedgerDelLiabBetween = value; return this; } public ArrayList getLedgerDelLiabIn() { return LedgerDelLiabIn; } public IN_MainQuery setLedgerDelLiabIn(ArrayList value) { this.LedgerDelLiabIn = value; return this; } public BigDecimal getSalesManCost() { return SalesManCost; } public IN_MainQuery setSalesManCost(BigDecimal value) { this.SalesManCost = value; return this; } public BigDecimal getSalesManCostGreaterThanOrEqualTo() { return SalesManCostGreaterThanOrEqualTo; } public IN_MainQuery setSalesManCostGreaterThanOrEqualTo(BigDecimal value) { this.SalesManCostGreaterThanOrEqualTo = value; return this; } public BigDecimal getSalesManCostGreaterThan() { return SalesManCostGreaterThan; } public IN_MainQuery setSalesManCostGreaterThan(BigDecimal value) { this.SalesManCostGreaterThan = value; return this; } public BigDecimal getSalesManCostLessThan() { return SalesManCostLessThan; } public IN_MainQuery setSalesManCostLessThan(BigDecimal value) { this.SalesManCostLessThan = value; return this; } public BigDecimal getSalesManCostLessThanOrEqualTo() { return SalesManCostLessThanOrEqualTo; } public IN_MainQuery setSalesManCostLessThanOrEqualTo(BigDecimal value) { this.SalesManCostLessThanOrEqualTo = value; return this; } public BigDecimal getSalesManCostNotEqualTo() { return SalesManCostNotEqualTo; } public IN_MainQuery setSalesManCostNotEqualTo(BigDecimal value) { this.SalesManCostNotEqualTo = value; return this; } public ArrayList getSalesManCostBetween() { return SalesManCostBetween; } public IN_MainQuery setSalesManCostBetween(ArrayList value) { this.SalesManCostBetween = value; return this; } public ArrayList getSalesManCostIn() { return SalesManCostIn; } public IN_MainQuery setSalesManCostIn(ArrayList value) { this.SalesManCostIn = value; return this; } public String getLedgerAssignedValue() { return LedgerAssignedValue; } public IN_MainQuery setLedgerAssignedValue(String value) { this.LedgerAssignedValue = value; return this; } public String getLedgerAssignedValueStartsWith() { return LedgerAssignedValueStartsWith; } public IN_MainQuery setLedgerAssignedValueStartsWith(String value) { this.LedgerAssignedValueStartsWith = value; return this; } public String getLedgerAssignedValueEndsWith() { return LedgerAssignedValueEndsWith; } public IN_MainQuery setLedgerAssignedValueEndsWith(String value) { this.LedgerAssignedValueEndsWith = value; return this; } public String getLedgerAssignedValueContains() { return LedgerAssignedValueContains; } public IN_MainQuery setLedgerAssignedValueContains(String value) { this.LedgerAssignedValueContains = value; return this; } public String getLedgerAssignedValueLike() { return LedgerAssignedValueLike; } public IN_MainQuery setLedgerAssignedValueLike(String value) { this.LedgerAssignedValueLike = value; return this; } public ArrayList getLedgerAssignedValueBetween() { return LedgerAssignedValueBetween; } public IN_MainQuery setLedgerAssignedValueBetween(ArrayList value) { this.LedgerAssignedValueBetween = value; return this; } public ArrayList getLedgerAssignedValueIn() { return LedgerAssignedValueIn; } public IN_MainQuery setLedgerAssignedValueIn(ArrayList value) { this.LedgerAssignedValueIn = value; return this; } public String getLedgerCogVariance() { return LedgerCogVariance; } public IN_MainQuery setLedgerCogVariance(String value) { this.LedgerCogVariance = value; return this; } public String getLedgerCogVarianceStartsWith() { return LedgerCogVarianceStartsWith; } public IN_MainQuery setLedgerCogVarianceStartsWith(String value) { this.LedgerCogVarianceStartsWith = value; return this; } public String getLedgerCogVarianceEndsWith() { return LedgerCogVarianceEndsWith; } public IN_MainQuery setLedgerCogVarianceEndsWith(String value) { this.LedgerCogVarianceEndsWith = value; return this; } public String getLedgerCogVarianceContains() { return LedgerCogVarianceContains; } public IN_MainQuery setLedgerCogVarianceContains(String value) { this.LedgerCogVarianceContains = value; return this; } public String getLedgerCogVarianceLike() { return LedgerCogVarianceLike; } public IN_MainQuery setLedgerCogVarianceLike(String value) { this.LedgerCogVarianceLike = value; return this; } public ArrayList getLedgerCogVarianceBetween() { return LedgerCogVarianceBetween; } public IN_MainQuery setLedgerCogVarianceBetween(ArrayList value) { this.LedgerCogVarianceBetween = value; return this; } public ArrayList getLedgerCogVarianceIn() { return LedgerCogVarianceIn; } public IN_MainQuery setLedgerCogVarianceIn(ArrayList value) { this.LedgerCogVarianceIn = value; return this; } public String getLedgerInvSales() { return LedgerInvSales; } public IN_MainQuery setLedgerInvSales(String value) { this.LedgerInvSales = value; return this; } public String getLedgerInvSalesStartsWith() { return LedgerInvSalesStartsWith; } public IN_MainQuery setLedgerInvSalesStartsWith(String value) { this.LedgerInvSalesStartsWith = value; return this; } public String getLedgerInvSalesEndsWith() { return LedgerInvSalesEndsWith; } public IN_MainQuery setLedgerInvSalesEndsWith(String value) { this.LedgerInvSalesEndsWith = value; return this; } public String getLedgerInvSalesContains() { return LedgerInvSalesContains; } public IN_MainQuery setLedgerInvSalesContains(String value) { this.LedgerInvSalesContains = value; return this; } public String getLedgerInvSalesLike() { return LedgerInvSalesLike; } public IN_MainQuery setLedgerInvSalesLike(String value) { this.LedgerInvSalesLike = value; return this; } public ArrayList getLedgerInvSalesBetween() { return LedgerInvSalesBetween; } public IN_MainQuery setLedgerInvSalesBetween(ArrayList value) { this.LedgerInvSalesBetween = value; return this; } public ArrayList getLedgerInvSalesIn() { return LedgerInvSalesIn; } public IN_MainQuery setLedgerInvSalesIn(ArrayList value) { this.LedgerInvSalesIn = value; return this; } public String getLedgerAccumulator() { return LedgerAccumulator; } public IN_MainQuery setLedgerAccumulator(String value) { this.LedgerAccumulator = value; return this; } public String getLedgerAccumulatorStartsWith() { return LedgerAccumulatorStartsWith; } public IN_MainQuery setLedgerAccumulatorStartsWith(String value) { this.LedgerAccumulatorStartsWith = value; return this; } public String getLedgerAccumulatorEndsWith() { return LedgerAccumulatorEndsWith; } public IN_MainQuery setLedgerAccumulatorEndsWith(String value) { this.LedgerAccumulatorEndsWith = value; return this; } public String getLedgerAccumulatorContains() { return LedgerAccumulatorContains; } public IN_MainQuery setLedgerAccumulatorContains(String value) { this.LedgerAccumulatorContains = value; return this; } public String getLedgerAccumulatorLike() { return LedgerAccumulatorLike; } public IN_MainQuery setLedgerAccumulatorLike(String value) { this.LedgerAccumulatorLike = value; return this; } public ArrayList getLedgerAccumulatorBetween() { return LedgerAccumulatorBetween; } public IN_MainQuery setLedgerAccumulatorBetween(ArrayList value) { this.LedgerAccumulatorBetween = value; return this; } public ArrayList getLedgerAccumulatorIn() { return LedgerAccumulatorIn; } public IN_MainQuery setLedgerAccumulatorIn(ArrayList value) { this.LedgerAccumulatorIn = value; return this; } public String getLedgerPurchases() { return LedgerPurchases; } public IN_MainQuery setLedgerPurchases(String value) { this.LedgerPurchases = value; return this; } public String getLedgerPurchasesStartsWith() { return LedgerPurchasesStartsWith; } public IN_MainQuery setLedgerPurchasesStartsWith(String value) { this.LedgerPurchasesStartsWith = value; return this; } public String getLedgerPurchasesEndsWith() { return LedgerPurchasesEndsWith; } public IN_MainQuery setLedgerPurchasesEndsWith(String value) { this.LedgerPurchasesEndsWith = value; return this; } public String getLedgerPurchasesContains() { return LedgerPurchasesContains; } public IN_MainQuery setLedgerPurchasesContains(String value) { this.LedgerPurchasesContains = value; return this; } public String getLedgerPurchasesLike() { return LedgerPurchasesLike; } public IN_MainQuery setLedgerPurchasesLike(String value) { this.LedgerPurchasesLike = value; return this; } public ArrayList getLedgerPurchasesBetween() { return LedgerPurchasesBetween; } public IN_MainQuery setLedgerPurchasesBetween(ArrayList value) { this.LedgerPurchasesBetween = value; return this; } public ArrayList getLedgerPurchasesIn() { return LedgerPurchasesIn; } public IN_MainQuery setLedgerPurchasesIn(ArrayList value) { this.LedgerPurchasesIn = value; return this; } public String getLedgerShipComplete() { return LedgerShipComplete; } public IN_MainQuery setLedgerShipComplete(String value) { this.LedgerShipComplete = value; return this; } public String getLedgerShipCompleteStartsWith() { return LedgerShipCompleteStartsWith; } public IN_MainQuery setLedgerShipCompleteStartsWith(String value) { this.LedgerShipCompleteStartsWith = value; return this; } public String getLedgerShipCompleteEndsWith() { return LedgerShipCompleteEndsWith; } public IN_MainQuery setLedgerShipCompleteEndsWith(String value) { this.LedgerShipCompleteEndsWith = value; return this; } public String getLedgerShipCompleteContains() { return LedgerShipCompleteContains; } public IN_MainQuery setLedgerShipCompleteContains(String value) { this.LedgerShipCompleteContains = value; return this; } public String getLedgerShipCompleteLike() { return LedgerShipCompleteLike; } public IN_MainQuery setLedgerShipCompleteLike(String value) { this.LedgerShipCompleteLike = value; return this; } public ArrayList getLedgerShipCompleteBetween() { return LedgerShipCompleteBetween; } public IN_MainQuery setLedgerShipCompleteBetween(ArrayList value) { this.LedgerShipCompleteBetween = value; return this; } public ArrayList getLedgerShipCompleteIn() { return LedgerShipCompleteIn; } public IN_MainQuery setLedgerShipCompleteIn(ArrayList value) { this.LedgerShipCompleteIn = value; return this; } public String getLedgerWriteOn() { return LedgerWriteOn; } public IN_MainQuery setLedgerWriteOn(String value) { this.LedgerWriteOn = value; return this; } public String getLedgerWriteOnStartsWith() { return LedgerWriteOnStartsWith; } public IN_MainQuery setLedgerWriteOnStartsWith(String value) { this.LedgerWriteOnStartsWith = value; return this; } public String getLedgerWriteOnEndsWith() { return LedgerWriteOnEndsWith; } public IN_MainQuery setLedgerWriteOnEndsWith(String value) { this.LedgerWriteOnEndsWith = value; return this; } public String getLedgerWriteOnContains() { return LedgerWriteOnContains; } public IN_MainQuery setLedgerWriteOnContains(String value) { this.LedgerWriteOnContains = value; return this; } public String getLedgerWriteOnLike() { return LedgerWriteOnLike; } public IN_MainQuery setLedgerWriteOnLike(String value) { this.LedgerWriteOnLike = value; return this; } public ArrayList getLedgerWriteOnBetween() { return LedgerWriteOnBetween; } public IN_MainQuery setLedgerWriteOnBetween(ArrayList value) { this.LedgerWriteOnBetween = value; return this; } public ArrayList getLedgerWriteOnIn() { return LedgerWriteOnIn; } public IN_MainQuery setLedgerWriteOnIn(ArrayList value) { this.LedgerWriteOnIn = value; return this; } public String getLedgerWriteOff() { return LedgerWriteOff; } public IN_MainQuery setLedgerWriteOff(String value) { this.LedgerWriteOff = value; return this; } public String getLedgerWriteOffStartsWith() { return LedgerWriteOffStartsWith; } public IN_MainQuery setLedgerWriteOffStartsWith(String value) { this.LedgerWriteOffStartsWith = value; return this; } public String getLedgerWriteOffEndsWith() { return LedgerWriteOffEndsWith; } public IN_MainQuery setLedgerWriteOffEndsWith(String value) { this.LedgerWriteOffEndsWith = value; return this; } public String getLedgerWriteOffContains() { return LedgerWriteOffContains; } public IN_MainQuery setLedgerWriteOffContains(String value) { this.LedgerWriteOffContains = value; return this; } public String getLedgerWriteOffLike() { return LedgerWriteOffLike; } public IN_MainQuery setLedgerWriteOffLike(String value) { this.LedgerWriteOffLike = value; return this; } public ArrayList getLedgerWriteOffBetween() { return LedgerWriteOffBetween; } public IN_MainQuery setLedgerWriteOffBetween(ArrayList value) { this.LedgerWriteOffBetween = value; return this; } public ArrayList getLedgerWriteOffIn() { return LedgerWriteOffIn; } public IN_MainQuery setLedgerWriteOffIn(ArrayList value) { this.LedgerWriteOffIn = value; return this; } public String getLedgerCostPriceAdj() { return LedgerCostPriceAdj; } public IN_MainQuery setLedgerCostPriceAdj(String value) { this.LedgerCostPriceAdj = value; return this; } public String getLedgerCostPriceAdjStartsWith() { return LedgerCostPriceAdjStartsWith; } public IN_MainQuery setLedgerCostPriceAdjStartsWith(String value) { this.LedgerCostPriceAdjStartsWith = value; return this; } public String getLedgerCostPriceAdjEndsWith() { return LedgerCostPriceAdjEndsWith; } public IN_MainQuery setLedgerCostPriceAdjEndsWith(String value) { this.LedgerCostPriceAdjEndsWith = value; return this; } public String getLedgerCostPriceAdjContains() { return LedgerCostPriceAdjContains; } public IN_MainQuery setLedgerCostPriceAdjContains(String value) { this.LedgerCostPriceAdjContains = value; return this; } public String getLedgerCostPriceAdjLike() { return LedgerCostPriceAdjLike; } public IN_MainQuery setLedgerCostPriceAdjLike(String value) { this.LedgerCostPriceAdjLike = value; return this; } public ArrayList getLedgerCostPriceAdjBetween() { return LedgerCostPriceAdjBetween; } public IN_MainQuery setLedgerCostPriceAdjBetween(ArrayList value) { this.LedgerCostPriceAdjBetween = value; return this; } public ArrayList getLedgerCostPriceAdjIn() { return LedgerCostPriceAdjIn; } public IN_MainQuery setLedgerCostPriceAdjIn(ArrayList value) { this.LedgerCostPriceAdjIn = value; return this; } public Short getBomObject() { return BOMObject; } public IN_MainQuery setBomObject(Short value) { this.BOMObject = value; return this; } public Short getBomObjectGreaterThanOrEqualTo() { return BOMObjectGreaterThanOrEqualTo; } public IN_MainQuery setBomObjectGreaterThanOrEqualTo(Short value) { this.BOMObjectGreaterThanOrEqualTo = value; return this; } public Short getBomObjectGreaterThan() { return BOMObjectGreaterThan; } public IN_MainQuery setBomObjectGreaterThan(Short value) { this.BOMObjectGreaterThan = value; return this; } public Short getBomObjectLessThan() { return BOMObjectLessThan; } public IN_MainQuery setBomObjectLessThan(Short value) { this.BOMObjectLessThan = value; return this; } public Short getBomObjectLessThanOrEqualTo() { return BOMObjectLessThanOrEqualTo; } public IN_MainQuery setBomObjectLessThanOrEqualTo(Short value) { this.BOMObjectLessThanOrEqualTo = value; return this; } public Short getBomObjectNotEqualTo() { return BOMObjectNotEqualTo; } public IN_MainQuery setBomObjectNotEqualTo(Short value) { this.BOMObjectNotEqualTo = value; return this; } public ArrayList getBomObjectBetween() { return BOMObjectBetween; } public IN_MainQuery setBomObjectBetween(ArrayList value) { this.BOMObjectBetween = value; return this; } public ArrayList getBomObjectIn() { return BOMObjectIn; } public IN_MainQuery setBomObjectIn(ArrayList value) { this.BOMObjectIn = value; return this; } public Boolean isUseExpiryDate() { return UseExpiryDate; } public IN_MainQuery setUseExpiryDate(Boolean value) { this.UseExpiryDate = value; return this; } public Boolean isUseStandardCost() { return UseStandardCost; } public IN_MainQuery setUseStandardCost(Boolean value) { this.UseStandardCost = value; return this; } public BigDecimal getStandardCost() { return StandardCost; } public IN_MainQuery setStandardCost(BigDecimal value) { this.StandardCost = value; return this; } public BigDecimal getStandardCostGreaterThanOrEqualTo() { return StandardCostGreaterThanOrEqualTo; } public IN_MainQuery setStandardCostGreaterThanOrEqualTo(BigDecimal value) { this.StandardCostGreaterThanOrEqualTo = value; return this; } public BigDecimal getStandardCostGreaterThan() { return StandardCostGreaterThan; } public IN_MainQuery setStandardCostGreaterThan(BigDecimal value) { this.StandardCostGreaterThan = value; return this; } public BigDecimal getStandardCostLessThan() { return StandardCostLessThan; } public IN_MainQuery setStandardCostLessThan(BigDecimal value) { this.StandardCostLessThan = value; return this; } public BigDecimal getStandardCostLessThanOrEqualTo() { return StandardCostLessThanOrEqualTo; } public IN_MainQuery setStandardCostLessThanOrEqualTo(BigDecimal value) { this.StandardCostLessThanOrEqualTo = value; return this; } public BigDecimal getStandardCostNotEqualTo() { return StandardCostNotEqualTo; } public IN_MainQuery setStandardCostNotEqualTo(BigDecimal value) { this.StandardCostNotEqualTo = value; return this; } public ArrayList getStandardCostBetween() { return StandardCostBetween; } public IN_MainQuery setStandardCostBetween(ArrayList value) { this.StandardCostBetween = value; return this; } public ArrayList getStandardCostIn() { return StandardCostIn; } public IN_MainQuery setStandardCostIn(ArrayList value) { this.StandardCostIn = value; return this; } public Boolean isWebEnabled() { return WebEnabled; } public IN_MainQuery setWebEnabled(Boolean value) { this.WebEnabled = value; return this; } public String getGstInwardsID() { return GSTInwardsID; } public IN_MainQuery setGstInwardsID(String value) { this.GSTInwardsID = value; return this; } public String getGstInwardsIDStartsWith() { return GSTInwardsIDStartsWith; } public IN_MainQuery setGstInwardsIDStartsWith(String value) { this.GSTInwardsIDStartsWith = value; return this; } public String getGstInwardsIDEndsWith() { return GSTInwardsIDEndsWith; } public IN_MainQuery setGstInwardsIDEndsWith(String value) { this.GSTInwardsIDEndsWith = value; return this; } public String getGstInwardsIDContains() { return GSTInwardsIDContains; } public IN_MainQuery setGstInwardsIDContains(String value) { this.GSTInwardsIDContains = value; return this; } public String getGstInwardsIDLike() { return GSTInwardsIDLike; } public IN_MainQuery setGstInwardsIDLike(String value) { this.GSTInwardsIDLike = value; return this; } public ArrayList getGstInwardsIDBetween() { return GSTInwardsIDBetween; } public IN_MainQuery setGstInwardsIDBetween(ArrayList value) { this.GSTInwardsIDBetween = value; return this; } public ArrayList getGstInwardsIDIn() { return GSTInwardsIDIn; } public IN_MainQuery setGstInwardsIDIn(ArrayList value) { this.GSTInwardsIDIn = value; return this; } public String getGstOutwardsID() { return GSTOutwardsID; } public IN_MainQuery setGstOutwardsID(String value) { this.GSTOutwardsID = value; return this; } public String getGstOutwardsIDStartsWith() { return GSTOutwardsIDStartsWith; } public IN_MainQuery setGstOutwardsIDStartsWith(String value) { this.GSTOutwardsIDStartsWith = value; return this; } public String getGstOutwardsIDEndsWith() { return GSTOutwardsIDEndsWith; } public IN_MainQuery setGstOutwardsIDEndsWith(String value) { this.GSTOutwardsIDEndsWith = value; return this; } public String getGstOutwardsIDContains() { return GSTOutwardsIDContains; } public IN_MainQuery setGstOutwardsIDContains(String value) { this.GSTOutwardsIDContains = value; return this; } public String getGstOutwardsIDLike() { return GSTOutwardsIDLike; } public IN_MainQuery setGstOutwardsIDLike(String value) { this.GSTOutwardsIDLike = value; return this; } public ArrayList getGstOutwardsIDBetween() { return GSTOutwardsIDBetween; } public IN_MainQuery setGstOutwardsIDBetween(ArrayList value) { this.GSTOutwardsIDBetween = value; return this; } public ArrayList getGstOutwardsIDIn() { return GSTOutwardsIDIn; } public IN_MainQuery setGstOutwardsIDIn(ArrayList value) { this.GSTOutwardsIDIn = value; return this; } public String getGstAdjustmentsINID() { return GSTAdjustmentsINID; } public IN_MainQuery setGstAdjustmentsINID(String value) { this.GSTAdjustmentsINID = value; return this; } public String getGstAdjustmentsINIDStartsWith() { return GSTAdjustmentsINIDStartsWith; } public IN_MainQuery setGstAdjustmentsINIDStartsWith(String value) { this.GSTAdjustmentsINIDStartsWith = value; return this; } public String getGstAdjustmentsINIDEndsWith() { return GSTAdjustmentsINIDEndsWith; } public IN_MainQuery setGstAdjustmentsINIDEndsWith(String value) { this.GSTAdjustmentsINIDEndsWith = value; return this; } public String getGstAdjustmentsINIDContains() { return GSTAdjustmentsINIDContains; } public IN_MainQuery setGstAdjustmentsINIDContains(String value) { this.GSTAdjustmentsINIDContains = value; return this; } public String getGstAdjustmentsINIDLike() { return GSTAdjustmentsINIDLike; } public IN_MainQuery setGstAdjustmentsINIDLike(String value) { this.GSTAdjustmentsINIDLike = value; return this; } public ArrayList getGstAdjustmentsINIDBetween() { return GSTAdjustmentsINIDBetween; } public IN_MainQuery setGstAdjustmentsINIDBetween(ArrayList value) { this.GSTAdjustmentsINIDBetween = value; return this; } public ArrayList getGstAdjustmentsINIDIn() { return GSTAdjustmentsINIDIn; } public IN_MainQuery setGstAdjustmentsINIDIn(ArrayList value) { this.GSTAdjustmentsINIDIn = value; return this; } public String getGstAdjustmentsOUTID() { return GSTAdjustmentsOUTID; } public IN_MainQuery setGstAdjustmentsOUTID(String value) { this.GSTAdjustmentsOUTID = value; return this; } public String getGstAdjustmentsOUTIDStartsWith() { return GSTAdjustmentsOUTIDStartsWith; } public IN_MainQuery setGstAdjustmentsOUTIDStartsWith(String value) { this.GSTAdjustmentsOUTIDStartsWith = value; return this; } public String getGstAdjustmentsOUTIDEndsWith() { return GSTAdjustmentsOUTIDEndsWith; } public IN_MainQuery setGstAdjustmentsOUTIDEndsWith(String value) { this.GSTAdjustmentsOUTIDEndsWith = value; return this; } public String getGstAdjustmentsOUTIDContains() { return GSTAdjustmentsOUTIDContains; } public IN_MainQuery setGstAdjustmentsOUTIDContains(String value) { this.GSTAdjustmentsOUTIDContains = value; return this; } public String getGstAdjustmentsOUTIDLike() { return GSTAdjustmentsOUTIDLike; } public IN_MainQuery setGstAdjustmentsOUTIDLike(String value) { this.GSTAdjustmentsOUTIDLike = value; return this; } public ArrayList getGstAdjustmentsOUTIDBetween() { return GSTAdjustmentsOUTIDBetween; } public IN_MainQuery setGstAdjustmentsOUTIDBetween(ArrayList value) { this.GSTAdjustmentsOUTIDBetween = value; return this; } public ArrayList getGstAdjustmentsOUTIDIn() { return GSTAdjustmentsOUTIDIn; } public IN_MainQuery setGstAdjustmentsOUTIDIn(ArrayList value) { this.GSTAdjustmentsOUTIDIn = value; return this; } public Boolean isSellPriceIncTax() { return SellPriceIncTax; } public IN_MainQuery setSellPriceIncTax(Boolean value) { this.SellPriceIncTax = value; return this; } public String getStyleID() { return StyleID; } public IN_MainQuery setStyleID(String value) { this.StyleID = value; return this; } public String getStyleIDStartsWith() { return StyleIDStartsWith; } public IN_MainQuery setStyleIDStartsWith(String value) { this.StyleIDStartsWith = value; return this; } public String getStyleIDEndsWith() { return StyleIDEndsWith; } public IN_MainQuery setStyleIDEndsWith(String value) { this.StyleIDEndsWith = value; return this; } public String getStyleIDContains() { return StyleIDContains; } public IN_MainQuery setStyleIDContains(String value) { this.StyleIDContains = value; return this; } public String getStyleIDLike() { return StyleIDLike; } public IN_MainQuery setStyleIDLike(String value) { this.StyleIDLike = value; return this; } public ArrayList getStyleIDBetween() { return StyleIDBetween; } public IN_MainQuery setStyleIDBetween(ArrayList value) { this.StyleIDBetween = value; return this; } public ArrayList getStyleIDIn() { return StyleIDIn; } public IN_MainQuery setStyleIDIn(ArrayList value) { this.StyleIDIn = value; return this; } public String getColourID() { return ColourID; } public IN_MainQuery setColourID(String value) { this.ColourID = value; return this; } public String getColourIDStartsWith() { return ColourIDStartsWith; } public IN_MainQuery setColourIDStartsWith(String value) { this.ColourIDStartsWith = value; return this; } public String getColourIDEndsWith() { return ColourIDEndsWith; } public IN_MainQuery setColourIDEndsWith(String value) { this.ColourIDEndsWith = value; return this; } public String getColourIDContains() { return ColourIDContains; } public IN_MainQuery setColourIDContains(String value) { this.ColourIDContains = value; return this; } public String getColourIDLike() { return ColourIDLike; } public IN_MainQuery setColourIDLike(String value) { this.ColourIDLike = value; return this; } public ArrayList getColourIDBetween() { return ColourIDBetween; } public IN_MainQuery setColourIDBetween(ArrayList value) { this.ColourIDBetween = value; return this; } public ArrayList getColourIDIn() { return ColourIDIn; } public IN_MainQuery setColourIDIn(ArrayList value) { this.ColourIDIn = value; return this; } public String getSizeID() { return SizeID; } public IN_MainQuery setSizeID(String value) { this.SizeID = value; return this; } public String getSizeIDStartsWith() { return SizeIDStartsWith; } public IN_MainQuery setSizeIDStartsWith(String value) { this.SizeIDStartsWith = value; return this; } public String getSizeIDEndsWith() { return SizeIDEndsWith; } public IN_MainQuery setSizeIDEndsWith(String value) { this.SizeIDEndsWith = value; return this; } public String getSizeIDContains() { return SizeIDContains; } public IN_MainQuery setSizeIDContains(String value) { this.SizeIDContains = value; return this; } public String getSizeIDLike() { return SizeIDLike; } public IN_MainQuery setSizeIDLike(String value) { this.SizeIDLike = value; return this; } public ArrayList getSizeIDBetween() { return SizeIDBetween; } public IN_MainQuery setSizeIDBetween(ArrayList value) { this.SizeIDBetween = value; return this; } public ArrayList getSizeIDIn() { return SizeIDIn; } public IN_MainQuery setSizeIDIn(ArrayList value) { this.SizeIDIn = value; return this; } public Short getPartEncodeOrder() { return PartEncodeOrder; } public IN_MainQuery setPartEncodeOrder(Short value) { this.PartEncodeOrder = value; return this; } public Short getPartEncodeOrderGreaterThanOrEqualTo() { return PartEncodeOrderGreaterThanOrEqualTo; } public IN_MainQuery setPartEncodeOrderGreaterThanOrEqualTo(Short value) { this.PartEncodeOrderGreaterThanOrEqualTo = value; return this; } public Short getPartEncodeOrderGreaterThan() { return PartEncodeOrderGreaterThan; } public IN_MainQuery setPartEncodeOrderGreaterThan(Short value) { this.PartEncodeOrderGreaterThan = value; return this; } public Short getPartEncodeOrderLessThan() { return PartEncodeOrderLessThan; } public IN_MainQuery setPartEncodeOrderLessThan(Short value) { this.PartEncodeOrderLessThan = value; return this; } public Short getPartEncodeOrderLessThanOrEqualTo() { return PartEncodeOrderLessThanOrEqualTo; } public IN_MainQuery setPartEncodeOrderLessThanOrEqualTo(Short value) { this.PartEncodeOrderLessThanOrEqualTo = value; return this; } public Short getPartEncodeOrderNotEqualTo() { return PartEncodeOrderNotEqualTo; } public IN_MainQuery setPartEncodeOrderNotEqualTo(Short value) { this.PartEncodeOrderNotEqualTo = value; return this; } public ArrayList getPartEncodeOrderBetween() { return PartEncodeOrderBetween; } public IN_MainQuery setPartEncodeOrderBetween(ArrayList value) { this.PartEncodeOrderBetween = value; return this; } public ArrayList getPartEncodeOrderIn() { return PartEncodeOrderIn; } public IN_MainQuery setPartEncodeOrderIn(ArrayList value) { this.PartEncodeOrderIn = value; return this; } public Boolean isTypeStyle() { return TypeStyle; } public IN_MainQuery setTypeStyle(Boolean value) { this.TypeStyle = value; return this; } public String getMatrixDescription() { return MatrixDescription; } public IN_MainQuery setMatrixDescription(String value) { this.MatrixDescription = value; return this; } public String getMatrixDescriptionStartsWith() { return MatrixDescriptionStartsWith; } public IN_MainQuery setMatrixDescriptionStartsWith(String value) { this.MatrixDescriptionStartsWith = value; return this; } public String getMatrixDescriptionEndsWith() { return MatrixDescriptionEndsWith; } public IN_MainQuery setMatrixDescriptionEndsWith(String value) { this.MatrixDescriptionEndsWith = value; return this; } public String getMatrixDescriptionContains() { return MatrixDescriptionContains; } public IN_MainQuery setMatrixDescriptionContains(String value) { this.MatrixDescriptionContains = value; return this; } public String getMatrixDescriptionLike() { return MatrixDescriptionLike; } public IN_MainQuery setMatrixDescriptionLike(String value) { this.MatrixDescriptionLike = value; return this; } public ArrayList getMatrixDescriptionBetween() { return MatrixDescriptionBetween; } public IN_MainQuery setMatrixDescriptionBetween(ArrayList value) { this.MatrixDescriptionBetween = value; return this; } public ArrayList getMatrixDescriptionIn() { return MatrixDescriptionIn; } public IN_MainQuery setMatrixDescriptionIn(ArrayList value) { this.MatrixDescriptionIn = value; return this; } public BigDecimal getSecondaryCost() { return SecondaryCost; } public IN_MainQuery setSecondaryCost(BigDecimal value) { this.SecondaryCost = value; return this; } public BigDecimal getSecondaryCostGreaterThanOrEqualTo() { return SecondaryCostGreaterThanOrEqualTo; } public IN_MainQuery setSecondaryCostGreaterThanOrEqualTo(BigDecimal value) { this.SecondaryCostGreaterThanOrEqualTo = value; return this; } public BigDecimal getSecondaryCostGreaterThan() { return SecondaryCostGreaterThan; } public IN_MainQuery setSecondaryCostGreaterThan(BigDecimal value) { this.SecondaryCostGreaterThan = value; return this; } public BigDecimal getSecondaryCostLessThan() { return SecondaryCostLessThan; } public IN_MainQuery setSecondaryCostLessThan(BigDecimal value) { this.SecondaryCostLessThan = value; return this; } public BigDecimal getSecondaryCostLessThanOrEqualTo() { return SecondaryCostLessThanOrEqualTo; } public IN_MainQuery setSecondaryCostLessThanOrEqualTo(BigDecimal value) { this.SecondaryCostLessThanOrEqualTo = value; return this; } public BigDecimal getSecondaryCostNotEqualTo() { return SecondaryCostNotEqualTo; } public IN_MainQuery setSecondaryCostNotEqualTo(BigDecimal value) { this.SecondaryCostNotEqualTo = value; return this; } public ArrayList getSecondaryCostBetween() { return SecondaryCostBetween; } public IN_MainQuery setSecondaryCostBetween(ArrayList value) { this.SecondaryCostBetween = value; return this; } public ArrayList getSecondaryCostIn() { return SecondaryCostIn; } public IN_MainQuery setSecondaryCostIn(ArrayList value) { this.SecondaryCostIn = value; return this; } public String getPricingGroupID() { return PricingGroupID; } public IN_MainQuery setPricingGroupID(String value) { this.PricingGroupID = value; return this; } public String getPricingGroupIDStartsWith() { return PricingGroupIDStartsWith; } public IN_MainQuery setPricingGroupIDStartsWith(String value) { this.PricingGroupIDStartsWith = value; return this; } public String getPricingGroupIDEndsWith() { return PricingGroupIDEndsWith; } public IN_MainQuery setPricingGroupIDEndsWith(String value) { this.PricingGroupIDEndsWith = value; return this; } public String getPricingGroupIDContains() { return PricingGroupIDContains; } public IN_MainQuery setPricingGroupIDContains(String value) { this.PricingGroupIDContains = value; return this; } public String getPricingGroupIDLike() { return PricingGroupIDLike; } public IN_MainQuery setPricingGroupIDLike(String value) { this.PricingGroupIDLike = value; return this; } public ArrayList getPricingGroupIDBetween() { return PricingGroupIDBetween; } public IN_MainQuery setPricingGroupIDBetween(ArrayList value) { this.PricingGroupIDBetween = value; return this; } public ArrayList getPricingGroupIDIn() { return PricingGroupIDIn; } public IN_MainQuery setPricingGroupIDIn(ArrayList value) { this.PricingGroupIDIn = value; return this; } public Boolean isShipWithPhysicalItem() { return ShipWithPhysicalItem; } public IN_MainQuery setShipWithPhysicalItem(Boolean value) { this.ShipWithPhysicalItem = value; return this; } public ArrayList getRowHash() { return RowHash; } public IN_MainQuery setRowHash(ArrayList value) { this.RowHash = value; return this; } public ArrayList getPicture() { return Picture; } public IN_MainQuery setPicture(ArrayList value) { this.Picture = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class IN_NotesQuery extends QueryDb implements IReturn> { public String RecID = null; public String RecIDStartsWith = null; public String RecIDEndsWith = null; public String RecIDContains = null; public String RecIDLike = null; public ArrayList RecIDBetween = null; public ArrayList RecIDIn = null; public String InventoryID = null; public String InventoryIDStartsWith = null; public String InventoryIDEndsWith = null; public String InventoryIDContains = null; public String InventoryIDLike = null; public ArrayList InventoryIDBetween = null; public ArrayList InventoryIDIn = null; public String NoteTypeID = null; public String NoteTypeIDStartsWith = null; public String NoteTypeIDEndsWith = null; public String NoteTypeIDContains = null; public String NoteTypeIDLike = null; public ArrayList NoteTypeIDBetween = null; public ArrayList NoteTypeIDIn = null; public Date LastSavedDateTime = null; public Date LastSavedDateTimeGreaterThanOrEqualTo = null; public Date LastSavedDateTimeGreaterThan = null; public Date LastSavedDateTimeLessThan = null; public Date LastSavedDateTimeLessThanOrEqualTo = null; public Date LastSavedDateTimeNotEqualTo = null; public ArrayList LastSavedDateTimeBetween = null; public ArrayList LastSavedDateTimeIn = null; public String LastSavedByStaffID = null; public String LastSavedByStaffIDStartsWith = null; public String LastSavedByStaffIDEndsWith = null; public String LastSavedByStaffIDContains = null; public String LastSavedByStaffIDLike = null; public ArrayList LastSavedByStaffIDBetween = null; public ArrayList LastSavedByStaffIDIn = null; public String NoteText = null; public String NoteTextStartsWith = null; public String NoteTextEndsWith = null; public String NoteTextContains = null; public String NoteTextLike = null; public ArrayList NoteTextBetween = null; public ArrayList NoteTextIn = null; public Integer ItemNo = null; public Integer ItemNoGreaterThanOrEqualTo = null; public Integer ItemNoGreaterThan = null; public Integer ItemNoLessThan = null; public Integer ItemNoLessThanOrEqualTo = null; public Integer ItemNoNotEqualTo = null; public ArrayList ItemNoBetween = null; public ArrayList ItemNoIn = null; public String getRecID() { return RecID; } public IN_NotesQuery setRecID(String value) { this.RecID = value; return this; } public String getRecIDStartsWith() { return RecIDStartsWith; } public IN_NotesQuery setRecIDStartsWith(String value) { this.RecIDStartsWith = value; return this; } public String getRecIDEndsWith() { return RecIDEndsWith; } public IN_NotesQuery setRecIDEndsWith(String value) { this.RecIDEndsWith = value; return this; } public String getRecIDContains() { return RecIDContains; } public IN_NotesQuery setRecIDContains(String value) { this.RecIDContains = value; return this; } public String getRecIDLike() { return RecIDLike; } public IN_NotesQuery setRecIDLike(String value) { this.RecIDLike = value; return this; } public ArrayList getRecIDBetween() { return RecIDBetween; } public IN_NotesQuery setRecIDBetween(ArrayList value) { this.RecIDBetween = value; return this; } public ArrayList getRecIDIn() { return RecIDIn; } public IN_NotesQuery setRecIDIn(ArrayList value) { this.RecIDIn = value; return this; } public String getInventoryID() { return InventoryID; } public IN_NotesQuery setInventoryID(String value) { this.InventoryID = value; return this; } public String getInventoryIDStartsWith() { return InventoryIDStartsWith; } public IN_NotesQuery setInventoryIDStartsWith(String value) { this.InventoryIDStartsWith = value; return this; } public String getInventoryIDEndsWith() { return InventoryIDEndsWith; } public IN_NotesQuery setInventoryIDEndsWith(String value) { this.InventoryIDEndsWith = value; return this; } public String getInventoryIDContains() { return InventoryIDContains; } public IN_NotesQuery setInventoryIDContains(String value) { this.InventoryIDContains = value; return this; } public String getInventoryIDLike() { return InventoryIDLike; } public IN_NotesQuery setInventoryIDLike(String value) { this.InventoryIDLike = value; return this; } public ArrayList getInventoryIDBetween() { return InventoryIDBetween; } public IN_NotesQuery setInventoryIDBetween(ArrayList value) { this.InventoryIDBetween = value; return this; } public ArrayList getInventoryIDIn() { return InventoryIDIn; } public IN_NotesQuery setInventoryIDIn(ArrayList value) { this.InventoryIDIn = value; return this; } public String getNoteTypeID() { return NoteTypeID; } public IN_NotesQuery setNoteTypeID(String value) { this.NoteTypeID = value; return this; } public String getNoteTypeIDStartsWith() { return NoteTypeIDStartsWith; } public IN_NotesQuery setNoteTypeIDStartsWith(String value) { this.NoteTypeIDStartsWith = value; return this; } public String getNoteTypeIDEndsWith() { return NoteTypeIDEndsWith; } public IN_NotesQuery setNoteTypeIDEndsWith(String value) { this.NoteTypeIDEndsWith = value; return this; } public String getNoteTypeIDContains() { return NoteTypeIDContains; } public IN_NotesQuery setNoteTypeIDContains(String value) { this.NoteTypeIDContains = value; return this; } public String getNoteTypeIDLike() { return NoteTypeIDLike; } public IN_NotesQuery setNoteTypeIDLike(String value) { this.NoteTypeIDLike = value; return this; } public ArrayList getNoteTypeIDBetween() { return NoteTypeIDBetween; } public IN_NotesQuery setNoteTypeIDBetween(ArrayList value) { this.NoteTypeIDBetween = value; return this; } public ArrayList getNoteTypeIDIn() { return NoteTypeIDIn; } public IN_NotesQuery setNoteTypeIDIn(ArrayList value) { this.NoteTypeIDIn = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public IN_NotesQuery setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getLastSavedDateTimeGreaterThanOrEqualTo() { return LastSavedDateTimeGreaterThanOrEqualTo; } public IN_NotesQuery setLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.LastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeGreaterThan() { return LastSavedDateTimeGreaterThan; } public IN_NotesQuery setLastSavedDateTimeGreaterThan(Date value) { this.LastSavedDateTimeGreaterThan = value; return this; } public Date getLastSavedDateTimeLessThan() { return LastSavedDateTimeLessThan; } public IN_NotesQuery setLastSavedDateTimeLessThan(Date value) { this.LastSavedDateTimeLessThan = value; return this; } public Date getLastSavedDateTimeLessThanOrEqualTo() { return LastSavedDateTimeLessThanOrEqualTo; } public IN_NotesQuery setLastSavedDateTimeLessThanOrEqualTo(Date value) { this.LastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeNotEqualTo() { return LastSavedDateTimeNotEqualTo; } public IN_NotesQuery setLastSavedDateTimeNotEqualTo(Date value) { this.LastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getLastSavedDateTimeBetween() { return LastSavedDateTimeBetween; } public IN_NotesQuery setLastSavedDateTimeBetween(ArrayList value) { this.LastSavedDateTimeBetween = value; return this; } public ArrayList getLastSavedDateTimeIn() { return LastSavedDateTimeIn; } public IN_NotesQuery setLastSavedDateTimeIn(ArrayList value) { this.LastSavedDateTimeIn = value; return this; } public String getLastSavedByStaffID() { return LastSavedByStaffID; } public IN_NotesQuery setLastSavedByStaffID(String value) { this.LastSavedByStaffID = value; return this; } public String getLastSavedByStaffIDStartsWith() { return LastSavedByStaffIDStartsWith; } public IN_NotesQuery setLastSavedByStaffIDStartsWith(String value) { this.LastSavedByStaffIDStartsWith = value; return this; } public String getLastSavedByStaffIDEndsWith() { return LastSavedByStaffIDEndsWith; } public IN_NotesQuery setLastSavedByStaffIDEndsWith(String value) { this.LastSavedByStaffIDEndsWith = value; return this; } public String getLastSavedByStaffIDContains() { return LastSavedByStaffIDContains; } public IN_NotesQuery setLastSavedByStaffIDContains(String value) { this.LastSavedByStaffIDContains = value; return this; } public String getLastSavedByStaffIDLike() { return LastSavedByStaffIDLike; } public IN_NotesQuery setLastSavedByStaffIDLike(String value) { this.LastSavedByStaffIDLike = value; return this; } public ArrayList getLastSavedByStaffIDBetween() { return LastSavedByStaffIDBetween; } public IN_NotesQuery setLastSavedByStaffIDBetween(ArrayList value) { this.LastSavedByStaffIDBetween = value; return this; } public ArrayList getLastSavedByStaffIDIn() { return LastSavedByStaffIDIn; } public IN_NotesQuery setLastSavedByStaffIDIn(ArrayList value) { this.LastSavedByStaffIDIn = value; return this; } public String getNoteText() { return NoteText; } public IN_NotesQuery setNoteText(String value) { this.NoteText = value; return this; } public String getNoteTextStartsWith() { return NoteTextStartsWith; } public IN_NotesQuery setNoteTextStartsWith(String value) { this.NoteTextStartsWith = value; return this; } public String getNoteTextEndsWith() { return NoteTextEndsWith; } public IN_NotesQuery setNoteTextEndsWith(String value) { this.NoteTextEndsWith = value; return this; } public String getNoteTextContains() { return NoteTextContains; } public IN_NotesQuery setNoteTextContains(String value) { this.NoteTextContains = value; return this; } public String getNoteTextLike() { return NoteTextLike; } public IN_NotesQuery setNoteTextLike(String value) { this.NoteTextLike = value; return this; } public ArrayList getNoteTextBetween() { return NoteTextBetween; } public IN_NotesQuery setNoteTextBetween(ArrayList value) { this.NoteTextBetween = value; return this; } public ArrayList getNoteTextIn() { return NoteTextIn; } public IN_NotesQuery setNoteTextIn(ArrayList value) { this.NoteTextIn = value; return this; } public Integer getItemNo() { return ItemNo; } public IN_NotesQuery setItemNo(Integer value) { this.ItemNo = value; return this; } public Integer getItemNoGreaterThanOrEqualTo() { return ItemNoGreaterThanOrEqualTo; } public IN_NotesQuery setItemNoGreaterThanOrEqualTo(Integer value) { this.ItemNoGreaterThanOrEqualTo = value; return this; } public Integer getItemNoGreaterThan() { return ItemNoGreaterThan; } public IN_NotesQuery setItemNoGreaterThan(Integer value) { this.ItemNoGreaterThan = value; return this; } public Integer getItemNoLessThan() { return ItemNoLessThan; } public IN_NotesQuery setItemNoLessThan(Integer value) { this.ItemNoLessThan = value; return this; } public Integer getItemNoLessThanOrEqualTo() { return ItemNoLessThanOrEqualTo; } public IN_NotesQuery setItemNoLessThanOrEqualTo(Integer value) { this.ItemNoLessThanOrEqualTo = value; return this; } public Integer getItemNoNotEqualTo() { return ItemNoNotEqualTo; } public IN_NotesQuery setItemNoNotEqualTo(Integer value) { this.ItemNoNotEqualTo = value; return this; } public ArrayList getItemNoBetween() { return ItemNoBetween; } public IN_NotesQuery setItemNoBetween(ArrayList value) { this.ItemNoBetween = value; return this; } public ArrayList getItemNoIn() { return ItemNoIn; } public IN_NotesQuery setItemNoIn(ArrayList value) { this.ItemNoIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class IN_OnBackOrderQuery extends QueryDb implements IReturn> { public String OrdersOnBackID = null; public String OrdersOnBackIDStartsWith = null; public String OrdersOnBackIDEndsWith = null; public String OrdersOnBackIDContains = null; public String OrdersOnBackIDLike = null; public ArrayList OrdersOnBackIDBetween = null; public ArrayList OrdersOnBackIDIn = null; public Date LastSavedDateTime = null; public Date LastSavedDateTimeGreaterThanOrEqualTo = null; public Date LastSavedDateTimeGreaterThan = null; public Date LastSavedDateTimeLessThan = null; public Date LastSavedDateTimeLessThanOrEqualTo = null; public Date LastSavedDateTimeNotEqualTo = null; public ArrayList LastSavedDateTimeBetween = null; public ArrayList LastSavedDateTimeIn = null; public Date TranDate = null; public Date TranDateGreaterThanOrEqualTo = null; public Date TranDateGreaterThan = null; public Date TranDateLessThan = null; public Date TranDateLessThanOrEqualTo = null; public Date TranDateNotEqualTo = null; public ArrayList TranDateBetween = null; public ArrayList TranDateIn = null; public Short InvoiceType = null; public Short InvoiceTypeGreaterThanOrEqualTo = null; public Short InvoiceTypeGreaterThan = null; public Short InvoiceTypeLessThan = null; public Short InvoiceTypeLessThanOrEqualTo = null; public Short InvoiceTypeNotEqualTo = null; public ArrayList InvoiceTypeBetween = null; public ArrayList InvoiceTypeIn = null; public String InvoiceID = null; public String InvoiceIDStartsWith = null; public String InvoiceIDEndsWith = null; public String InvoiceIDContains = null; public String InvoiceIDLike = null; public ArrayList InvoiceIDBetween = null; public ArrayList InvoiceIDIn = null; public String InvoiceLineID = null; public String InvoiceLineIDStartsWith = null; public String InvoiceLineIDEndsWith = null; public String InvoiceLineIDContains = null; public String InvoiceLineIDLike = null; public ArrayList InvoiceLineIDBetween = null; public ArrayList InvoiceLineIDIn = null; public String DebtorID = null; public String DebtorIDStartsWith = null; public String DebtorIDEndsWith = null; public String DebtorIDContains = null; public String DebtorIDLike = null; public ArrayList DebtorIDBetween = null; public ArrayList DebtorIDIn = null; public String InventoryID = null; public String InventoryIDStartsWith = null; public String InventoryIDEndsWith = null; public String InventoryIDContains = null; public String InventoryIDLike = null; public ArrayList InventoryIDBetween = null; public ArrayList InventoryIDIn = null; public String OrderID = null; public String OrderIDStartsWith = null; public String OrderIDEndsWith = null; public String OrderIDContains = null; public String OrderIDLike = null; public ArrayList OrderIDBetween = null; public ArrayList OrderIDIn = null; public String OrderLineID = null; public String OrderLineIDStartsWith = null; public String OrderLineIDEndsWith = null; public String OrderLineIDContains = null; public String OrderLineIDLike = null; public ArrayList OrderLineIDBetween = null; public ArrayList OrderLineIDIn = null; public BigDecimal Quantity = null; public BigDecimal QuantityGreaterThanOrEqualTo = null; public BigDecimal QuantityGreaterThan = null; public BigDecimal QuantityLessThan = null; public BigDecimal QuantityLessThanOrEqualTo = null; public BigDecimal QuantityNotEqualTo = null; public ArrayList QuantityBetween = null; public ArrayList QuantityIn = null; public BigDecimal Price = null; public BigDecimal PriceGreaterThanOrEqualTo = null; public BigDecimal PriceGreaterThan = null; public BigDecimal PriceLessThan = null; public BigDecimal PriceLessThanOrEqualTo = null; public BigDecimal PriceNotEqualTo = null; public ArrayList PriceBetween = null; public ArrayList PriceIn = null; public BigDecimal EstBOValue = null; public BigDecimal EstBOValueGreaterThanOrEqualTo = null; public BigDecimal EstBOValueGreaterThan = null; public BigDecimal EstBOValueLessThan = null; public BigDecimal EstBOValueLessThanOrEqualTo = null; public BigDecimal EstBOValueNotEqualTo = null; public ArrayList EstBOValueBetween = null; public ArrayList EstBOValueIn = null; public String Priority = null; public String PriorityStartsWith = null; public String PriorityEndsWith = null; public String PriorityContains = null; public String PriorityLike = null; public ArrayList PriorityBetween = null; public ArrayList PriorityIn = null; public String IN_LogicalID = null; public String IN_LogicalIDStartsWith = null; public String IN_LogicalIDEndsWith = null; public String IN_LogicalIDContains = null; public String IN_LogicalIDLike = null; public ArrayList IN_LogicalIDBetween = null; public ArrayList IN_LogicalIDIn = null; public String ForLogicalID = null; public String ForLogicalIDStartsWith = null; public String ForLogicalIDEndsWith = null; public String ForLogicalIDContains = null; public String ForLogicalIDLike = null; public ArrayList ForLogicalIDBetween = null; public ArrayList ForLogicalIDIn = null; public Short ForAnotherWarehouse = null; public Short ForAnotherWarehouseGreaterThanOrEqualTo = null; public Short ForAnotherWarehouseGreaterThan = null; public Short ForAnotherWarehouseLessThan = null; public Short ForAnotherWarehouseLessThanOrEqualTo = null; public Short ForAnotherWarehouseNotEqualTo = null; public ArrayList ForAnotherWarehouseBetween = null; public ArrayList ForAnotherWarehouseIn = null; public String INAssemblyID = null; public String INAssemblyIDStartsWith = null; public String INAssemblyIDEndsWith = null; public String INAssemblyIDContains = null; public String INAssemblyIDLike = null; public ArrayList INAssemblyIDBetween = null; public ArrayList INAssemblyIDIn = null; public Short BackOrderMode = null; public Short BackOrderModeGreaterThanOrEqualTo = null; public Short BackOrderModeGreaterThan = null; public Short BackOrderModeLessThan = null; public Short BackOrderModeLessThanOrEqualTo = null; public Short BackOrderModeNotEqualTo = null; public ArrayList BackOrderModeBetween = null; public ArrayList BackOrderModeIn = null; public Integer PriorityWeight = null; public Integer PriorityWeightGreaterThanOrEqualTo = null; public Integer PriorityWeightGreaterThan = null; public Integer PriorityWeightLessThan = null; public Integer PriorityWeightLessThanOrEqualTo = null; public Integer PriorityWeightNotEqualTo = null; public ArrayList PriorityWeightBetween = null; public ArrayList PriorityWeightIn = null; public String getOrdersOnBackID() { return OrdersOnBackID; } public IN_OnBackOrderQuery setOrdersOnBackID(String value) { this.OrdersOnBackID = value; return this; } public String getOrdersOnBackIDStartsWith() { return OrdersOnBackIDStartsWith; } public IN_OnBackOrderQuery setOrdersOnBackIDStartsWith(String value) { this.OrdersOnBackIDStartsWith = value; return this; } public String getOrdersOnBackIDEndsWith() { return OrdersOnBackIDEndsWith; } public IN_OnBackOrderQuery setOrdersOnBackIDEndsWith(String value) { this.OrdersOnBackIDEndsWith = value; return this; } public String getOrdersOnBackIDContains() { return OrdersOnBackIDContains; } public IN_OnBackOrderQuery setOrdersOnBackIDContains(String value) { this.OrdersOnBackIDContains = value; return this; } public String getOrdersOnBackIDLike() { return OrdersOnBackIDLike; } public IN_OnBackOrderQuery setOrdersOnBackIDLike(String value) { this.OrdersOnBackIDLike = value; return this; } public ArrayList getOrdersOnBackIDBetween() { return OrdersOnBackIDBetween; } public IN_OnBackOrderQuery setOrdersOnBackIDBetween(ArrayList value) { this.OrdersOnBackIDBetween = value; return this; } public ArrayList getOrdersOnBackIDIn() { return OrdersOnBackIDIn; } public IN_OnBackOrderQuery setOrdersOnBackIDIn(ArrayList value) { this.OrdersOnBackIDIn = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public IN_OnBackOrderQuery setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getLastSavedDateTimeGreaterThanOrEqualTo() { return LastSavedDateTimeGreaterThanOrEqualTo; } public IN_OnBackOrderQuery setLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.LastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeGreaterThan() { return LastSavedDateTimeGreaterThan; } public IN_OnBackOrderQuery setLastSavedDateTimeGreaterThan(Date value) { this.LastSavedDateTimeGreaterThan = value; return this; } public Date getLastSavedDateTimeLessThan() { return LastSavedDateTimeLessThan; } public IN_OnBackOrderQuery setLastSavedDateTimeLessThan(Date value) { this.LastSavedDateTimeLessThan = value; return this; } public Date getLastSavedDateTimeLessThanOrEqualTo() { return LastSavedDateTimeLessThanOrEqualTo; } public IN_OnBackOrderQuery setLastSavedDateTimeLessThanOrEqualTo(Date value) { this.LastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeNotEqualTo() { return LastSavedDateTimeNotEqualTo; } public IN_OnBackOrderQuery setLastSavedDateTimeNotEqualTo(Date value) { this.LastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getLastSavedDateTimeBetween() { return LastSavedDateTimeBetween; } public IN_OnBackOrderQuery setLastSavedDateTimeBetween(ArrayList value) { this.LastSavedDateTimeBetween = value; return this; } public ArrayList getLastSavedDateTimeIn() { return LastSavedDateTimeIn; } public IN_OnBackOrderQuery setLastSavedDateTimeIn(ArrayList value) { this.LastSavedDateTimeIn = value; return this; } public Date getTranDate() { return TranDate; } public IN_OnBackOrderQuery setTranDate(Date value) { this.TranDate = value; return this; } public Date getTranDateGreaterThanOrEqualTo() { return TranDateGreaterThanOrEqualTo; } public IN_OnBackOrderQuery setTranDateGreaterThanOrEqualTo(Date value) { this.TranDateGreaterThanOrEqualTo = value; return this; } public Date getTranDateGreaterThan() { return TranDateGreaterThan; } public IN_OnBackOrderQuery setTranDateGreaterThan(Date value) { this.TranDateGreaterThan = value; return this; } public Date getTranDateLessThan() { return TranDateLessThan; } public IN_OnBackOrderQuery setTranDateLessThan(Date value) { this.TranDateLessThan = value; return this; } public Date getTranDateLessThanOrEqualTo() { return TranDateLessThanOrEqualTo; } public IN_OnBackOrderQuery setTranDateLessThanOrEqualTo(Date value) { this.TranDateLessThanOrEqualTo = value; return this; } public Date getTranDateNotEqualTo() { return TranDateNotEqualTo; } public IN_OnBackOrderQuery setTranDateNotEqualTo(Date value) { this.TranDateNotEqualTo = value; return this; } public ArrayList getTranDateBetween() { return TranDateBetween; } public IN_OnBackOrderQuery setTranDateBetween(ArrayList value) { this.TranDateBetween = value; return this; } public ArrayList getTranDateIn() { return TranDateIn; } public IN_OnBackOrderQuery setTranDateIn(ArrayList value) { this.TranDateIn = value; return this; } public Short getInvoiceType() { return InvoiceType; } public IN_OnBackOrderQuery setInvoiceType(Short value) { this.InvoiceType = value; return this; } public Short getInvoiceTypeGreaterThanOrEqualTo() { return InvoiceTypeGreaterThanOrEqualTo; } public IN_OnBackOrderQuery setInvoiceTypeGreaterThanOrEqualTo(Short value) { this.InvoiceTypeGreaterThanOrEqualTo = value; return this; } public Short getInvoiceTypeGreaterThan() { return InvoiceTypeGreaterThan; } public IN_OnBackOrderQuery setInvoiceTypeGreaterThan(Short value) { this.InvoiceTypeGreaterThan = value; return this; } public Short getInvoiceTypeLessThan() { return InvoiceTypeLessThan; } public IN_OnBackOrderQuery setInvoiceTypeLessThan(Short value) { this.InvoiceTypeLessThan = value; return this; } public Short getInvoiceTypeLessThanOrEqualTo() { return InvoiceTypeLessThanOrEqualTo; } public IN_OnBackOrderQuery setInvoiceTypeLessThanOrEqualTo(Short value) { this.InvoiceTypeLessThanOrEqualTo = value; return this; } public Short getInvoiceTypeNotEqualTo() { return InvoiceTypeNotEqualTo; } public IN_OnBackOrderQuery setInvoiceTypeNotEqualTo(Short value) { this.InvoiceTypeNotEqualTo = value; return this; } public ArrayList getInvoiceTypeBetween() { return InvoiceTypeBetween; } public IN_OnBackOrderQuery setInvoiceTypeBetween(ArrayList value) { this.InvoiceTypeBetween = value; return this; } public ArrayList getInvoiceTypeIn() { return InvoiceTypeIn; } public IN_OnBackOrderQuery setInvoiceTypeIn(ArrayList value) { this.InvoiceTypeIn = value; return this; } public String getInvoiceID() { return InvoiceID; } public IN_OnBackOrderQuery setInvoiceID(String value) { this.InvoiceID = value; return this; } public String getInvoiceIDStartsWith() { return InvoiceIDStartsWith; } public IN_OnBackOrderQuery setInvoiceIDStartsWith(String value) { this.InvoiceIDStartsWith = value; return this; } public String getInvoiceIDEndsWith() { return InvoiceIDEndsWith; } public IN_OnBackOrderQuery setInvoiceIDEndsWith(String value) { this.InvoiceIDEndsWith = value; return this; } public String getInvoiceIDContains() { return InvoiceIDContains; } public IN_OnBackOrderQuery setInvoiceIDContains(String value) { this.InvoiceIDContains = value; return this; } public String getInvoiceIDLike() { return InvoiceIDLike; } public IN_OnBackOrderQuery setInvoiceIDLike(String value) { this.InvoiceIDLike = value; return this; } public ArrayList getInvoiceIDBetween() { return InvoiceIDBetween; } public IN_OnBackOrderQuery setInvoiceIDBetween(ArrayList value) { this.InvoiceIDBetween = value; return this; } public ArrayList getInvoiceIDIn() { return InvoiceIDIn; } public IN_OnBackOrderQuery setInvoiceIDIn(ArrayList value) { this.InvoiceIDIn = value; return this; } public String getInvoiceLineID() { return InvoiceLineID; } public IN_OnBackOrderQuery setInvoiceLineID(String value) { this.InvoiceLineID = value; return this; } public String getInvoiceLineIDStartsWith() { return InvoiceLineIDStartsWith; } public IN_OnBackOrderQuery setInvoiceLineIDStartsWith(String value) { this.InvoiceLineIDStartsWith = value; return this; } public String getInvoiceLineIDEndsWith() { return InvoiceLineIDEndsWith; } public IN_OnBackOrderQuery setInvoiceLineIDEndsWith(String value) { this.InvoiceLineIDEndsWith = value; return this; } public String getInvoiceLineIDContains() { return InvoiceLineIDContains; } public IN_OnBackOrderQuery setInvoiceLineIDContains(String value) { this.InvoiceLineIDContains = value; return this; } public String getInvoiceLineIDLike() { return InvoiceLineIDLike; } public IN_OnBackOrderQuery setInvoiceLineIDLike(String value) { this.InvoiceLineIDLike = value; return this; } public ArrayList getInvoiceLineIDBetween() { return InvoiceLineIDBetween; } public IN_OnBackOrderQuery setInvoiceLineIDBetween(ArrayList value) { this.InvoiceLineIDBetween = value; return this; } public ArrayList getInvoiceLineIDIn() { return InvoiceLineIDIn; } public IN_OnBackOrderQuery setInvoiceLineIDIn(ArrayList value) { this.InvoiceLineIDIn = value; return this; } public String getDebtorID() { return DebtorID; } public IN_OnBackOrderQuery setDebtorID(String value) { this.DebtorID = value; return this; } public String getDebtorIDStartsWith() { return DebtorIDStartsWith; } public IN_OnBackOrderQuery setDebtorIDStartsWith(String value) { this.DebtorIDStartsWith = value; return this; } public String getDebtorIDEndsWith() { return DebtorIDEndsWith; } public IN_OnBackOrderQuery setDebtorIDEndsWith(String value) { this.DebtorIDEndsWith = value; return this; } public String getDebtorIDContains() { return DebtorIDContains; } public IN_OnBackOrderQuery setDebtorIDContains(String value) { this.DebtorIDContains = value; return this; } public String getDebtorIDLike() { return DebtorIDLike; } public IN_OnBackOrderQuery setDebtorIDLike(String value) { this.DebtorIDLike = value; return this; } public ArrayList getDebtorIDBetween() { return DebtorIDBetween; } public IN_OnBackOrderQuery setDebtorIDBetween(ArrayList value) { this.DebtorIDBetween = value; return this; } public ArrayList getDebtorIDIn() { return DebtorIDIn; } public IN_OnBackOrderQuery setDebtorIDIn(ArrayList value) { this.DebtorIDIn = value; return this; } public String getInventoryID() { return InventoryID; } public IN_OnBackOrderQuery setInventoryID(String value) { this.InventoryID = value; return this; } public String getInventoryIDStartsWith() { return InventoryIDStartsWith; } public IN_OnBackOrderQuery setInventoryIDStartsWith(String value) { this.InventoryIDStartsWith = value; return this; } public String getInventoryIDEndsWith() { return InventoryIDEndsWith; } public IN_OnBackOrderQuery setInventoryIDEndsWith(String value) { this.InventoryIDEndsWith = value; return this; } public String getInventoryIDContains() { return InventoryIDContains; } public IN_OnBackOrderQuery setInventoryIDContains(String value) { this.InventoryIDContains = value; return this; } public String getInventoryIDLike() { return InventoryIDLike; } public IN_OnBackOrderQuery setInventoryIDLike(String value) { this.InventoryIDLike = value; return this; } public ArrayList getInventoryIDBetween() { return InventoryIDBetween; } public IN_OnBackOrderQuery setInventoryIDBetween(ArrayList value) { this.InventoryIDBetween = value; return this; } public ArrayList getInventoryIDIn() { return InventoryIDIn; } public IN_OnBackOrderQuery setInventoryIDIn(ArrayList value) { this.InventoryIDIn = value; return this; } public String getOrderID() { return OrderID; } public IN_OnBackOrderQuery setOrderID(String value) { this.OrderID = value; return this; } public String getOrderIDStartsWith() { return OrderIDStartsWith; } public IN_OnBackOrderQuery setOrderIDStartsWith(String value) { this.OrderIDStartsWith = value; return this; } public String getOrderIDEndsWith() { return OrderIDEndsWith; } public IN_OnBackOrderQuery setOrderIDEndsWith(String value) { this.OrderIDEndsWith = value; return this; } public String getOrderIDContains() { return OrderIDContains; } public IN_OnBackOrderQuery setOrderIDContains(String value) { this.OrderIDContains = value; return this; } public String getOrderIDLike() { return OrderIDLike; } public IN_OnBackOrderQuery setOrderIDLike(String value) { this.OrderIDLike = value; return this; } public ArrayList getOrderIDBetween() { return OrderIDBetween; } public IN_OnBackOrderQuery setOrderIDBetween(ArrayList value) { this.OrderIDBetween = value; return this; } public ArrayList getOrderIDIn() { return OrderIDIn; } public IN_OnBackOrderQuery setOrderIDIn(ArrayList value) { this.OrderIDIn = value; return this; } public String getOrderLineID() { return OrderLineID; } public IN_OnBackOrderQuery setOrderLineID(String value) { this.OrderLineID = value; return this; } public String getOrderLineIDStartsWith() { return OrderLineIDStartsWith; } public IN_OnBackOrderQuery setOrderLineIDStartsWith(String value) { this.OrderLineIDStartsWith = value; return this; } public String getOrderLineIDEndsWith() { return OrderLineIDEndsWith; } public IN_OnBackOrderQuery setOrderLineIDEndsWith(String value) { this.OrderLineIDEndsWith = value; return this; } public String getOrderLineIDContains() { return OrderLineIDContains; } public IN_OnBackOrderQuery setOrderLineIDContains(String value) { this.OrderLineIDContains = value; return this; } public String getOrderLineIDLike() { return OrderLineIDLike; } public IN_OnBackOrderQuery setOrderLineIDLike(String value) { this.OrderLineIDLike = value; return this; } public ArrayList getOrderLineIDBetween() { return OrderLineIDBetween; } public IN_OnBackOrderQuery setOrderLineIDBetween(ArrayList value) { this.OrderLineIDBetween = value; return this; } public ArrayList getOrderLineIDIn() { return OrderLineIDIn; } public IN_OnBackOrderQuery setOrderLineIDIn(ArrayList value) { this.OrderLineIDIn = value; return this; } public BigDecimal getQuantity() { return Quantity; } public IN_OnBackOrderQuery setQuantity(BigDecimal value) { this.Quantity = value; return this; } public BigDecimal getQuantityGreaterThanOrEqualTo() { return QuantityGreaterThanOrEqualTo; } public IN_OnBackOrderQuery setQuantityGreaterThanOrEqualTo(BigDecimal value) { this.QuantityGreaterThanOrEqualTo = value; return this; } public BigDecimal getQuantityGreaterThan() { return QuantityGreaterThan; } public IN_OnBackOrderQuery setQuantityGreaterThan(BigDecimal value) { this.QuantityGreaterThan = value; return this; } public BigDecimal getQuantityLessThan() { return QuantityLessThan; } public IN_OnBackOrderQuery setQuantityLessThan(BigDecimal value) { this.QuantityLessThan = value; return this; } public BigDecimal getQuantityLessThanOrEqualTo() { return QuantityLessThanOrEqualTo; } public IN_OnBackOrderQuery setQuantityLessThanOrEqualTo(BigDecimal value) { this.QuantityLessThanOrEqualTo = value; return this; } public BigDecimal getQuantityNotEqualTo() { return QuantityNotEqualTo; } public IN_OnBackOrderQuery setQuantityNotEqualTo(BigDecimal value) { this.QuantityNotEqualTo = value; return this; } public ArrayList getQuantityBetween() { return QuantityBetween; } public IN_OnBackOrderQuery setQuantityBetween(ArrayList value) { this.QuantityBetween = value; return this; } public ArrayList getQuantityIn() { return QuantityIn; } public IN_OnBackOrderQuery setQuantityIn(ArrayList value) { this.QuantityIn = value; return this; } public BigDecimal getPrice() { return Price; } public IN_OnBackOrderQuery setPrice(BigDecimal value) { this.Price = value; return this; } public BigDecimal getPriceGreaterThanOrEqualTo() { return PriceGreaterThanOrEqualTo; } public IN_OnBackOrderQuery setPriceGreaterThanOrEqualTo(BigDecimal value) { this.PriceGreaterThanOrEqualTo = value; return this; } public BigDecimal getPriceGreaterThan() { return PriceGreaterThan; } public IN_OnBackOrderQuery setPriceGreaterThan(BigDecimal value) { this.PriceGreaterThan = value; return this; } public BigDecimal getPriceLessThan() { return PriceLessThan; } public IN_OnBackOrderQuery setPriceLessThan(BigDecimal value) { this.PriceLessThan = value; return this; } public BigDecimal getPriceLessThanOrEqualTo() { return PriceLessThanOrEqualTo; } public IN_OnBackOrderQuery setPriceLessThanOrEqualTo(BigDecimal value) { this.PriceLessThanOrEqualTo = value; return this; } public BigDecimal getPriceNotEqualTo() { return PriceNotEqualTo; } public IN_OnBackOrderQuery setPriceNotEqualTo(BigDecimal value) { this.PriceNotEqualTo = value; return this; } public ArrayList getPriceBetween() { return PriceBetween; } public IN_OnBackOrderQuery setPriceBetween(ArrayList value) { this.PriceBetween = value; return this; } public ArrayList getPriceIn() { return PriceIn; } public IN_OnBackOrderQuery setPriceIn(ArrayList value) { this.PriceIn = value; return this; } public BigDecimal getEstBOValue() { return EstBOValue; } public IN_OnBackOrderQuery setEstBOValue(BigDecimal value) { this.EstBOValue = value; return this; } public BigDecimal getEstBOValueGreaterThanOrEqualTo() { return EstBOValueGreaterThanOrEqualTo; } public IN_OnBackOrderQuery setEstBOValueGreaterThanOrEqualTo(BigDecimal value) { this.EstBOValueGreaterThanOrEqualTo = value; return this; } public BigDecimal getEstBOValueGreaterThan() { return EstBOValueGreaterThan; } public IN_OnBackOrderQuery setEstBOValueGreaterThan(BigDecimal value) { this.EstBOValueGreaterThan = value; return this; } public BigDecimal getEstBOValueLessThan() { return EstBOValueLessThan; } public IN_OnBackOrderQuery setEstBOValueLessThan(BigDecimal value) { this.EstBOValueLessThan = value; return this; } public BigDecimal getEstBOValueLessThanOrEqualTo() { return EstBOValueLessThanOrEqualTo; } public IN_OnBackOrderQuery setEstBOValueLessThanOrEqualTo(BigDecimal value) { this.EstBOValueLessThanOrEqualTo = value; return this; } public BigDecimal getEstBOValueNotEqualTo() { return EstBOValueNotEqualTo; } public IN_OnBackOrderQuery setEstBOValueNotEqualTo(BigDecimal value) { this.EstBOValueNotEqualTo = value; return this; } public ArrayList getEstBOValueBetween() { return EstBOValueBetween; } public IN_OnBackOrderQuery setEstBOValueBetween(ArrayList value) { this.EstBOValueBetween = value; return this; } public ArrayList getEstBOValueIn() { return EstBOValueIn; } public IN_OnBackOrderQuery setEstBOValueIn(ArrayList value) { this.EstBOValueIn = value; return this; } public String getPriority() { return Priority; } public IN_OnBackOrderQuery setPriority(String value) { this.Priority = value; return this; } public String getPriorityStartsWith() { return PriorityStartsWith; } public IN_OnBackOrderQuery setPriorityStartsWith(String value) { this.PriorityStartsWith = value; return this; } public String getPriorityEndsWith() { return PriorityEndsWith; } public IN_OnBackOrderQuery setPriorityEndsWith(String value) { this.PriorityEndsWith = value; return this; } public String getPriorityContains() { return PriorityContains; } public IN_OnBackOrderQuery setPriorityContains(String value) { this.PriorityContains = value; return this; } public String getPriorityLike() { return PriorityLike; } public IN_OnBackOrderQuery setPriorityLike(String value) { this.PriorityLike = value; return this; } public ArrayList getPriorityBetween() { return PriorityBetween; } public IN_OnBackOrderQuery setPriorityBetween(ArrayList value) { this.PriorityBetween = value; return this; } public ArrayList getPriorityIn() { return PriorityIn; } public IN_OnBackOrderQuery setPriorityIn(ArrayList value) { this.PriorityIn = value; return this; } public String getInLogicalID() { return IN_LogicalID; } public IN_OnBackOrderQuery setInLogicalID(String value) { this.IN_LogicalID = value; return this; } public String getInLogicalIDStartsWith() { return IN_LogicalIDStartsWith; } public IN_OnBackOrderQuery setInLogicalIDStartsWith(String value) { this.IN_LogicalIDStartsWith = value; return this; } public String getInLogicalIDEndsWith() { return IN_LogicalIDEndsWith; } public IN_OnBackOrderQuery setInLogicalIDEndsWith(String value) { this.IN_LogicalIDEndsWith = value; return this; } public String getInLogicalIDContains() { return IN_LogicalIDContains; } public IN_OnBackOrderQuery setInLogicalIDContains(String value) { this.IN_LogicalIDContains = value; return this; } public String getInLogicalIDLike() { return IN_LogicalIDLike; } public IN_OnBackOrderQuery setInLogicalIDLike(String value) { this.IN_LogicalIDLike = value; return this; } public ArrayList getInLogicalIDBetween() { return IN_LogicalIDBetween; } public IN_OnBackOrderQuery setInLogicalIDBetween(ArrayList value) { this.IN_LogicalIDBetween = value; return this; } public ArrayList getInLogicalIDIn() { return IN_LogicalIDIn; } public IN_OnBackOrderQuery setInLogicalIDIn(ArrayList value) { this.IN_LogicalIDIn = value; return this; } public String getForLogicalID() { return ForLogicalID; } public IN_OnBackOrderQuery setForLogicalID(String value) { this.ForLogicalID = value; return this; } public String getForLogicalIDStartsWith() { return ForLogicalIDStartsWith; } public IN_OnBackOrderQuery setForLogicalIDStartsWith(String value) { this.ForLogicalIDStartsWith = value; return this; } public String getForLogicalIDEndsWith() { return ForLogicalIDEndsWith; } public IN_OnBackOrderQuery setForLogicalIDEndsWith(String value) { this.ForLogicalIDEndsWith = value; return this; } public String getForLogicalIDContains() { return ForLogicalIDContains; } public IN_OnBackOrderQuery setForLogicalIDContains(String value) { this.ForLogicalIDContains = value; return this; } public String getForLogicalIDLike() { return ForLogicalIDLike; } public IN_OnBackOrderQuery setForLogicalIDLike(String value) { this.ForLogicalIDLike = value; return this; } public ArrayList getForLogicalIDBetween() { return ForLogicalIDBetween; } public IN_OnBackOrderQuery setForLogicalIDBetween(ArrayList value) { this.ForLogicalIDBetween = value; return this; } public ArrayList getForLogicalIDIn() { return ForLogicalIDIn; } public IN_OnBackOrderQuery setForLogicalIDIn(ArrayList value) { this.ForLogicalIDIn = value; return this; } public Short getForAnotherWarehouse() { return ForAnotherWarehouse; } public IN_OnBackOrderQuery setForAnotherWarehouse(Short value) { this.ForAnotherWarehouse = value; return this; } public Short getForAnotherWarehouseGreaterThanOrEqualTo() { return ForAnotherWarehouseGreaterThanOrEqualTo; } public IN_OnBackOrderQuery setForAnotherWarehouseGreaterThanOrEqualTo(Short value) { this.ForAnotherWarehouseGreaterThanOrEqualTo = value; return this; } public Short getForAnotherWarehouseGreaterThan() { return ForAnotherWarehouseGreaterThan; } public IN_OnBackOrderQuery setForAnotherWarehouseGreaterThan(Short value) { this.ForAnotherWarehouseGreaterThan = value; return this; } public Short getForAnotherWarehouseLessThan() { return ForAnotherWarehouseLessThan; } public IN_OnBackOrderQuery setForAnotherWarehouseLessThan(Short value) { this.ForAnotherWarehouseLessThan = value; return this; } public Short getForAnotherWarehouseLessThanOrEqualTo() { return ForAnotherWarehouseLessThanOrEqualTo; } public IN_OnBackOrderQuery setForAnotherWarehouseLessThanOrEqualTo(Short value) { this.ForAnotherWarehouseLessThanOrEqualTo = value; return this; } public Short getForAnotherWarehouseNotEqualTo() { return ForAnotherWarehouseNotEqualTo; } public IN_OnBackOrderQuery setForAnotherWarehouseNotEqualTo(Short value) { this.ForAnotherWarehouseNotEqualTo = value; return this; } public ArrayList getForAnotherWarehouseBetween() { return ForAnotherWarehouseBetween; } public IN_OnBackOrderQuery setForAnotherWarehouseBetween(ArrayList value) { this.ForAnotherWarehouseBetween = value; return this; } public ArrayList getForAnotherWarehouseIn() { return ForAnotherWarehouseIn; } public IN_OnBackOrderQuery setForAnotherWarehouseIn(ArrayList value) { this.ForAnotherWarehouseIn = value; return this; } public String getInAssemblyID() { return INAssemblyID; } public IN_OnBackOrderQuery setInAssemblyID(String value) { this.INAssemblyID = value; return this; } public String getInAssemblyIDStartsWith() { return INAssemblyIDStartsWith; } public IN_OnBackOrderQuery setInAssemblyIDStartsWith(String value) { this.INAssemblyIDStartsWith = value; return this; } public String getInAssemblyIDEndsWith() { return INAssemblyIDEndsWith; } public IN_OnBackOrderQuery setInAssemblyIDEndsWith(String value) { this.INAssemblyIDEndsWith = value; return this; } public String getInAssemblyIDContains() { return INAssemblyIDContains; } public IN_OnBackOrderQuery setInAssemblyIDContains(String value) { this.INAssemblyIDContains = value; return this; } public String getInAssemblyIDLike() { return INAssemblyIDLike; } public IN_OnBackOrderQuery setInAssemblyIDLike(String value) { this.INAssemblyIDLike = value; return this; } public ArrayList getInAssemblyIDBetween() { return INAssemblyIDBetween; } public IN_OnBackOrderQuery setInAssemblyIDBetween(ArrayList value) { this.INAssemblyIDBetween = value; return this; } public ArrayList getInAssemblyIDIn() { return INAssemblyIDIn; } public IN_OnBackOrderQuery setInAssemblyIDIn(ArrayList value) { this.INAssemblyIDIn = value; return this; } public Short getBackOrderMode() { return BackOrderMode; } public IN_OnBackOrderQuery setBackOrderMode(Short value) { this.BackOrderMode = value; return this; } public Short getBackOrderModeGreaterThanOrEqualTo() { return BackOrderModeGreaterThanOrEqualTo; } public IN_OnBackOrderQuery setBackOrderModeGreaterThanOrEqualTo(Short value) { this.BackOrderModeGreaterThanOrEqualTo = value; return this; } public Short getBackOrderModeGreaterThan() { return BackOrderModeGreaterThan; } public IN_OnBackOrderQuery setBackOrderModeGreaterThan(Short value) { this.BackOrderModeGreaterThan = value; return this; } public Short getBackOrderModeLessThan() { return BackOrderModeLessThan; } public IN_OnBackOrderQuery setBackOrderModeLessThan(Short value) { this.BackOrderModeLessThan = value; return this; } public Short getBackOrderModeLessThanOrEqualTo() { return BackOrderModeLessThanOrEqualTo; } public IN_OnBackOrderQuery setBackOrderModeLessThanOrEqualTo(Short value) { this.BackOrderModeLessThanOrEqualTo = value; return this; } public Short getBackOrderModeNotEqualTo() { return BackOrderModeNotEqualTo; } public IN_OnBackOrderQuery setBackOrderModeNotEqualTo(Short value) { this.BackOrderModeNotEqualTo = value; return this; } public ArrayList getBackOrderModeBetween() { return BackOrderModeBetween; } public IN_OnBackOrderQuery setBackOrderModeBetween(ArrayList value) { this.BackOrderModeBetween = value; return this; } public ArrayList getBackOrderModeIn() { return BackOrderModeIn; } public IN_OnBackOrderQuery setBackOrderModeIn(ArrayList value) { this.BackOrderModeIn = value; return this; } public Integer getPriorityWeight() { return PriorityWeight; } public IN_OnBackOrderQuery setPriorityWeight(Integer value) { this.PriorityWeight = value; return this; } public Integer getPriorityWeightGreaterThanOrEqualTo() { return PriorityWeightGreaterThanOrEqualTo; } public IN_OnBackOrderQuery setPriorityWeightGreaterThanOrEqualTo(Integer value) { this.PriorityWeightGreaterThanOrEqualTo = value; return this; } public Integer getPriorityWeightGreaterThan() { return PriorityWeightGreaterThan; } public IN_OnBackOrderQuery setPriorityWeightGreaterThan(Integer value) { this.PriorityWeightGreaterThan = value; return this; } public Integer getPriorityWeightLessThan() { return PriorityWeightLessThan; } public IN_OnBackOrderQuery setPriorityWeightLessThan(Integer value) { this.PriorityWeightLessThan = value; return this; } public Integer getPriorityWeightLessThanOrEqualTo() { return PriorityWeightLessThanOrEqualTo; } public IN_OnBackOrderQuery setPriorityWeightLessThanOrEqualTo(Integer value) { this.PriorityWeightLessThanOrEqualTo = value; return this; } public Integer getPriorityWeightNotEqualTo() { return PriorityWeightNotEqualTo; } public IN_OnBackOrderQuery setPriorityWeightNotEqualTo(Integer value) { this.PriorityWeightNotEqualTo = value; return this; } public ArrayList getPriorityWeightBetween() { return PriorityWeightBetween; } public IN_OnBackOrderQuery setPriorityWeightBetween(ArrayList value) { this.PriorityWeightBetween = value; return this; } public ArrayList getPriorityWeightIn() { return PriorityWeightIn; } public IN_OnBackOrderQuery setPriorityWeightIn(ArrayList value) { this.PriorityWeightIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class IN_OrderLevelsQuery extends QueryDb implements IReturn> { public String InventoryLevelsID = null; public String InventoryLevelsIDStartsWith = null; public String InventoryLevelsIDEndsWith = null; public String InventoryLevelsIDContains = null; public String InventoryLevelsIDLike = null; public ArrayList InventoryLevelsIDBetween = null; public ArrayList InventoryLevelsIDIn = null; public String InventoryID = null; public String InventoryIDStartsWith = null; public String InventoryIDEndsWith = null; public String InventoryIDContains = null; public String InventoryIDLike = null; public ArrayList InventoryIDBetween = null; public ArrayList InventoryIDIn = null; public BigDecimal Quantity1 = null; public BigDecimal Quantity1GreaterThanOrEqualTo = null; public BigDecimal Quantity1GreaterThan = null; public BigDecimal Quantity1LessThan = null; public BigDecimal Quantity1LessThanOrEqualTo = null; public BigDecimal Quantity1NotEqualTo = null; public ArrayList Quantity1Between = null; public ArrayList Quantity1In = null; public BigDecimal Quantity2 = null; public BigDecimal Quantity2GreaterThanOrEqualTo = null; public BigDecimal Quantity2GreaterThan = null; public BigDecimal Quantity2LessThan = null; public BigDecimal Quantity2LessThanOrEqualTo = null; public BigDecimal Quantity2NotEqualTo = null; public ArrayList Quantity2Between = null; public ArrayList Quantity2In = null; public BigDecimal Quantity3 = null; public BigDecimal Quantity3GreaterThanOrEqualTo = null; public BigDecimal Quantity3GreaterThan = null; public BigDecimal Quantity3LessThan = null; public BigDecimal Quantity3LessThanOrEqualTo = null; public BigDecimal Quantity3NotEqualTo = null; public ArrayList Quantity3Between = null; public ArrayList Quantity3In = null; public BigDecimal Quantity4 = null; public BigDecimal Quantity4GreaterThanOrEqualTo = null; public BigDecimal Quantity4GreaterThan = null; public BigDecimal Quantity4LessThan = null; public BigDecimal Quantity4LessThanOrEqualTo = null; public BigDecimal Quantity4NotEqualTo = null; public ArrayList Quantity4Between = null; public ArrayList Quantity4In = null; public BigDecimal Quantity5 = null; public BigDecimal Quantity5GreaterThanOrEqualTo = null; public BigDecimal Quantity5GreaterThan = null; public BigDecimal Quantity5LessThan = null; public BigDecimal Quantity5LessThanOrEqualTo = null; public BigDecimal Quantity5NotEqualTo = null; public ArrayList Quantity5Between = null; public ArrayList Quantity5In = null; public BigDecimal Quantity6 = null; public BigDecimal Quantity6GreaterThanOrEqualTo = null; public BigDecimal Quantity6GreaterThan = null; public BigDecimal Quantity6LessThan = null; public BigDecimal Quantity6LessThanOrEqualTo = null; public BigDecimal Quantity6NotEqualTo = null; public ArrayList Quantity6Between = null; public ArrayList Quantity6In = null; public BigDecimal Quantity7 = null; public BigDecimal Quantity7GreaterThanOrEqualTo = null; public BigDecimal Quantity7GreaterThan = null; public BigDecimal Quantity7LessThan = null; public BigDecimal Quantity7LessThanOrEqualTo = null; public BigDecimal Quantity7NotEqualTo = null; public ArrayList Quantity7Between = null; public ArrayList Quantity7In = null; public BigDecimal Quantity8 = null; public BigDecimal Quantity8GreaterThanOrEqualTo = null; public BigDecimal Quantity8GreaterThan = null; public BigDecimal Quantity8LessThan = null; public BigDecimal Quantity8LessThanOrEqualTo = null; public BigDecimal Quantity8NotEqualTo = null; public ArrayList Quantity8Between = null; public ArrayList Quantity8In = null; public BigDecimal Quantity9 = null; public BigDecimal Quantity9GreaterThanOrEqualTo = null; public BigDecimal Quantity9GreaterThan = null; public BigDecimal Quantity9LessThan = null; public BigDecimal Quantity9LessThanOrEqualTo = null; public BigDecimal Quantity9NotEqualTo = null; public ArrayList Quantity9Between = null; public ArrayList Quantity9In = null; public BigDecimal Quantity10 = null; public BigDecimal Quantity10GreaterThanOrEqualTo = null; public BigDecimal Quantity10GreaterThan = null; public BigDecimal Quantity10LessThan = null; public BigDecimal Quantity10LessThanOrEqualTo = null; public BigDecimal Quantity10NotEqualTo = null; public ArrayList Quantity10Between = null; public ArrayList Quantity10In = null; public BigDecimal Quantity11 = null; public BigDecimal Quantity11GreaterThanOrEqualTo = null; public BigDecimal Quantity11GreaterThan = null; public BigDecimal Quantity11LessThan = null; public BigDecimal Quantity11LessThanOrEqualTo = null; public BigDecimal Quantity11NotEqualTo = null; public ArrayList Quantity11Between = null; public ArrayList Quantity11In = null; public BigDecimal Quantity12 = null; public BigDecimal Quantity12GreaterThanOrEqualTo = null; public BigDecimal Quantity12GreaterThan = null; public BigDecimal Quantity12LessThan = null; public BigDecimal Quantity12LessThanOrEqualTo = null; public BigDecimal Quantity12NotEqualTo = null; public ArrayList Quantity12Between = null; public ArrayList Quantity12In = null; public BigDecimal Quantity13 = null; public BigDecimal Quantity13GreaterThanOrEqualTo = null; public BigDecimal Quantity13GreaterThan = null; public BigDecimal Quantity13LessThan = null; public BigDecimal Quantity13LessThanOrEqualTo = null; public BigDecimal Quantity13NotEqualTo = null; public ArrayList Quantity13Between = null; public ArrayList Quantity13In = null; public BigDecimal Quantity14 = null; public BigDecimal Quantity14GreaterThanOrEqualTo = null; public BigDecimal Quantity14GreaterThan = null; public BigDecimal Quantity14LessThan = null; public BigDecimal Quantity14LessThanOrEqualTo = null; public BigDecimal Quantity14NotEqualTo = null; public ArrayList Quantity14Between = null; public ArrayList Quantity14In = null; public BigDecimal Quantity15 = null; public BigDecimal Quantity15GreaterThanOrEqualTo = null; public BigDecimal Quantity15GreaterThan = null; public BigDecimal Quantity15LessThan = null; public BigDecimal Quantity15LessThanOrEqualTo = null; public BigDecimal Quantity15NotEqualTo = null; public ArrayList Quantity15Between = null; public ArrayList Quantity15In = null; public BigDecimal Quantity16 = null; public BigDecimal Quantity16GreaterThanOrEqualTo = null; public BigDecimal Quantity16GreaterThan = null; public BigDecimal Quantity16LessThan = null; public BigDecimal Quantity16LessThanOrEqualTo = null; public BigDecimal Quantity16NotEqualTo = null; public ArrayList Quantity16Between = null; public ArrayList Quantity16In = null; public BigDecimal Quantity17 = null; public BigDecimal Quantity17GreaterThanOrEqualTo = null; public BigDecimal Quantity17GreaterThan = null; public BigDecimal Quantity17LessThan = null; public BigDecimal Quantity17LessThanOrEqualTo = null; public BigDecimal Quantity17NotEqualTo = null; public ArrayList Quantity17Between = null; public ArrayList Quantity17In = null; public BigDecimal Quantity18 = null; public BigDecimal Quantity18GreaterThanOrEqualTo = null; public BigDecimal Quantity18GreaterThan = null; public BigDecimal Quantity18LessThan = null; public BigDecimal Quantity18LessThanOrEqualTo = null; public BigDecimal Quantity18NotEqualTo = null; public ArrayList Quantity18Between = null; public ArrayList Quantity18In = null; public BigDecimal Quantity19 = null; public BigDecimal Quantity19GreaterThanOrEqualTo = null; public BigDecimal Quantity19GreaterThan = null; public BigDecimal Quantity19LessThan = null; public BigDecimal Quantity19LessThanOrEqualTo = null; public BigDecimal Quantity19NotEqualTo = null; public ArrayList Quantity19Between = null; public ArrayList Quantity19In = null; public BigDecimal Quantity20 = null; public BigDecimal Quantity20GreaterThanOrEqualTo = null; public BigDecimal Quantity20GreaterThan = null; public BigDecimal Quantity20LessThan = null; public BigDecimal Quantity20LessThanOrEqualTo = null; public BigDecimal Quantity20NotEqualTo = null; public ArrayList Quantity20Between = null; public ArrayList Quantity20In = null; public BigDecimal Quantity21 = null; public BigDecimal Quantity21GreaterThanOrEqualTo = null; public BigDecimal Quantity21GreaterThan = null; public BigDecimal Quantity21LessThan = null; public BigDecimal Quantity21LessThanOrEqualTo = null; public BigDecimal Quantity21NotEqualTo = null; public ArrayList Quantity21Between = null; public ArrayList Quantity21In = null; public BigDecimal Quantity22 = null; public BigDecimal Quantity22GreaterThanOrEqualTo = null; public BigDecimal Quantity22GreaterThan = null; public BigDecimal Quantity22LessThan = null; public BigDecimal Quantity22LessThanOrEqualTo = null; public BigDecimal Quantity22NotEqualTo = null; public ArrayList Quantity22Between = null; public ArrayList Quantity22In = null; public BigDecimal Quantity23 = null; public BigDecimal Quantity23GreaterThanOrEqualTo = null; public BigDecimal Quantity23GreaterThan = null; public BigDecimal Quantity23LessThan = null; public BigDecimal Quantity23LessThanOrEqualTo = null; public BigDecimal Quantity23NotEqualTo = null; public ArrayList Quantity23Between = null; public ArrayList Quantity23In = null; public BigDecimal Quantity24 = null; public BigDecimal Quantity24GreaterThanOrEqualTo = null; public BigDecimal Quantity24GreaterThan = null; public BigDecimal Quantity24LessThan = null; public BigDecimal Quantity24LessThanOrEqualTo = null; public BigDecimal Quantity24NotEqualTo = null; public ArrayList Quantity24Between = null; public ArrayList Quantity24In = null; public String IN_LogicalID = null; public String IN_LogicalIDStartsWith = null; public String IN_LogicalIDEndsWith = null; public String IN_LogicalIDContains = null; public String IN_LogicalIDLike = null; public ArrayList IN_LogicalIDBetween = null; public ArrayList IN_LogicalIDIn = null; public BigDecimal SafetyMinQuantity1 = null; public BigDecimal SafetyMinQuantity1GreaterThanOrEqualTo = null; public BigDecimal SafetyMinQuantity1GreaterThan = null; public BigDecimal SafetyMinQuantity1LessThan = null; public BigDecimal SafetyMinQuantity1LessThanOrEqualTo = null; public BigDecimal SafetyMinQuantity1NotEqualTo = null; public ArrayList SafetyMinQuantity1Between = null; public ArrayList SafetyMinQuantity1In = null; public BigDecimal SafetyMinQuantity2 = null; public BigDecimal SafetyMinQuantity2GreaterThanOrEqualTo = null; public BigDecimal SafetyMinQuantity2GreaterThan = null; public BigDecimal SafetyMinQuantity2LessThan = null; public BigDecimal SafetyMinQuantity2LessThanOrEqualTo = null; public BigDecimal SafetyMinQuantity2NotEqualTo = null; public ArrayList SafetyMinQuantity2Between = null; public ArrayList SafetyMinQuantity2In = null; public BigDecimal SafetyMinQuantity3 = null; public BigDecimal SafetyMinQuantity3GreaterThanOrEqualTo = null; public BigDecimal SafetyMinQuantity3GreaterThan = null; public BigDecimal SafetyMinQuantity3LessThan = null; public BigDecimal SafetyMinQuantity3LessThanOrEqualTo = null; public BigDecimal SafetyMinQuantity3NotEqualTo = null; public ArrayList SafetyMinQuantity3Between = null; public ArrayList SafetyMinQuantity3In = null; public BigDecimal SafetyMinQuantity4 = null; public BigDecimal SafetyMinQuantity4GreaterThanOrEqualTo = null; public BigDecimal SafetyMinQuantity4GreaterThan = null; public BigDecimal SafetyMinQuantity4LessThan = null; public BigDecimal SafetyMinQuantity4LessThanOrEqualTo = null; public BigDecimal SafetyMinQuantity4NotEqualTo = null; public ArrayList SafetyMinQuantity4Between = null; public ArrayList SafetyMinQuantity4In = null; public BigDecimal SafetyMinQuantity5 = null; public BigDecimal SafetyMinQuantity5GreaterThanOrEqualTo = null; public BigDecimal SafetyMinQuantity5GreaterThan = null; public BigDecimal SafetyMinQuantity5LessThan = null; public BigDecimal SafetyMinQuantity5LessThanOrEqualTo = null; public BigDecimal SafetyMinQuantity5NotEqualTo = null; public ArrayList SafetyMinQuantity5Between = null; public ArrayList SafetyMinQuantity5In = null; public BigDecimal SafetyMinQuantity6 = null; public BigDecimal SafetyMinQuantity6GreaterThanOrEqualTo = null; public BigDecimal SafetyMinQuantity6GreaterThan = null; public BigDecimal SafetyMinQuantity6LessThan = null; public BigDecimal SafetyMinQuantity6LessThanOrEqualTo = null; public BigDecimal SafetyMinQuantity6NotEqualTo = null; public ArrayList SafetyMinQuantity6Between = null; public ArrayList SafetyMinQuantity6In = null; public BigDecimal SafetyMinQuantity7 = null; public BigDecimal SafetyMinQuantity7GreaterThanOrEqualTo = null; public BigDecimal SafetyMinQuantity7GreaterThan = null; public BigDecimal SafetyMinQuantity7LessThan = null; public BigDecimal SafetyMinQuantity7LessThanOrEqualTo = null; public BigDecimal SafetyMinQuantity7NotEqualTo = null; public ArrayList SafetyMinQuantity7Between = null; public ArrayList SafetyMinQuantity7In = null; public BigDecimal SafetyMinQuantity8 = null; public BigDecimal SafetyMinQuantity8GreaterThanOrEqualTo = null; public BigDecimal SafetyMinQuantity8GreaterThan = null; public BigDecimal SafetyMinQuantity8LessThan = null; public BigDecimal SafetyMinQuantity8LessThanOrEqualTo = null; public BigDecimal SafetyMinQuantity8NotEqualTo = null; public ArrayList SafetyMinQuantity8Between = null; public ArrayList SafetyMinQuantity8In = null; public BigDecimal SafetyMinQuantity9 = null; public BigDecimal SafetyMinQuantity9GreaterThanOrEqualTo = null; public BigDecimal SafetyMinQuantity9GreaterThan = null; public BigDecimal SafetyMinQuantity9LessThan = null; public BigDecimal SafetyMinQuantity9LessThanOrEqualTo = null; public BigDecimal SafetyMinQuantity9NotEqualTo = null; public ArrayList SafetyMinQuantity9Between = null; public ArrayList SafetyMinQuantity9In = null; public BigDecimal SafetyMinQuantity10 = null; public BigDecimal SafetyMinQuantity10GreaterThanOrEqualTo = null; public BigDecimal SafetyMinQuantity10GreaterThan = null; public BigDecimal SafetyMinQuantity10LessThan = null; public BigDecimal SafetyMinQuantity10LessThanOrEqualTo = null; public BigDecimal SafetyMinQuantity10NotEqualTo = null; public ArrayList SafetyMinQuantity10Between = null; public ArrayList SafetyMinQuantity10In = null; public BigDecimal SafetyMinQuantity11 = null; public BigDecimal SafetyMinQuantity11GreaterThanOrEqualTo = null; public BigDecimal SafetyMinQuantity11GreaterThan = null; public BigDecimal SafetyMinQuantity11LessThan = null; public BigDecimal SafetyMinQuantity11LessThanOrEqualTo = null; public BigDecimal SafetyMinQuantity11NotEqualTo = null; public ArrayList SafetyMinQuantity11Between = null; public ArrayList SafetyMinQuantity11In = null; public BigDecimal SafetyMinQuantity12 = null; public BigDecimal SafetyMinQuantity12GreaterThanOrEqualTo = null; public BigDecimal SafetyMinQuantity12GreaterThan = null; public BigDecimal SafetyMinQuantity12LessThan = null; public BigDecimal SafetyMinQuantity12LessThanOrEqualTo = null; public BigDecimal SafetyMinQuantity12NotEqualTo = null; public ArrayList SafetyMinQuantity12Between = null; public ArrayList SafetyMinQuantity12In = null; public BigDecimal SafetyMaxQuantity1 = null; public BigDecimal SafetyMaxQuantity1GreaterThanOrEqualTo = null; public BigDecimal SafetyMaxQuantity1GreaterThan = null; public BigDecimal SafetyMaxQuantity1LessThan = null; public BigDecimal SafetyMaxQuantity1LessThanOrEqualTo = null; public BigDecimal SafetyMaxQuantity1NotEqualTo = null; public ArrayList SafetyMaxQuantity1Between = null; public ArrayList SafetyMaxQuantity1In = null; public BigDecimal SafetyMaxQuantity2 = null; public BigDecimal SafetyMaxQuantity2GreaterThanOrEqualTo = null; public BigDecimal SafetyMaxQuantity2GreaterThan = null; public BigDecimal SafetyMaxQuantity2LessThan = null; public BigDecimal SafetyMaxQuantity2LessThanOrEqualTo = null; public BigDecimal SafetyMaxQuantity2NotEqualTo = null; public ArrayList SafetyMaxQuantity2Between = null; public ArrayList SafetyMaxQuantity2In = null; public BigDecimal SafetyMaxQuantity3 = null; public BigDecimal SafetyMaxQuantity3GreaterThanOrEqualTo = null; public BigDecimal SafetyMaxQuantity3GreaterThan = null; public BigDecimal SafetyMaxQuantity3LessThan = null; public BigDecimal SafetyMaxQuantity3LessThanOrEqualTo = null; public BigDecimal SafetyMaxQuantity3NotEqualTo = null; public ArrayList SafetyMaxQuantity3Between = null; public ArrayList SafetyMaxQuantity3In = null; public BigDecimal SafetyMaxQuantity4 = null; public BigDecimal SafetyMaxQuantity4GreaterThanOrEqualTo = null; public BigDecimal SafetyMaxQuantity4GreaterThan = null; public BigDecimal SafetyMaxQuantity4LessThan = null; public BigDecimal SafetyMaxQuantity4LessThanOrEqualTo = null; public BigDecimal SafetyMaxQuantity4NotEqualTo = null; public ArrayList SafetyMaxQuantity4Between = null; public ArrayList SafetyMaxQuantity4In = null; public BigDecimal SafetyMaxQuantity5 = null; public BigDecimal SafetyMaxQuantity5GreaterThanOrEqualTo = null; public BigDecimal SafetyMaxQuantity5GreaterThan = null; public BigDecimal SafetyMaxQuantity5LessThan = null; public BigDecimal SafetyMaxQuantity5LessThanOrEqualTo = null; public BigDecimal SafetyMaxQuantity5NotEqualTo = null; public ArrayList SafetyMaxQuantity5Between = null; public ArrayList SafetyMaxQuantity5In = null; public BigDecimal SafetyMaxQuantity6 = null; public BigDecimal SafetyMaxQuantity6GreaterThanOrEqualTo = null; public BigDecimal SafetyMaxQuantity6GreaterThan = null; public BigDecimal SafetyMaxQuantity6LessThan = null; public BigDecimal SafetyMaxQuantity6LessThanOrEqualTo = null; public BigDecimal SafetyMaxQuantity6NotEqualTo = null; public ArrayList SafetyMaxQuantity6Between = null; public ArrayList SafetyMaxQuantity6In = null; public BigDecimal SafetyMaxQuantity7 = null; public BigDecimal SafetyMaxQuantity7GreaterThanOrEqualTo = null; public BigDecimal SafetyMaxQuantity7GreaterThan = null; public BigDecimal SafetyMaxQuantity7LessThan = null; public BigDecimal SafetyMaxQuantity7LessThanOrEqualTo = null; public BigDecimal SafetyMaxQuantity7NotEqualTo = null; public ArrayList SafetyMaxQuantity7Between = null; public ArrayList SafetyMaxQuantity7In = null; public BigDecimal SafetyMaxQuantity8 = null; public BigDecimal SafetyMaxQuantity8GreaterThanOrEqualTo = null; public BigDecimal SafetyMaxQuantity8GreaterThan = null; public BigDecimal SafetyMaxQuantity8LessThan = null; public BigDecimal SafetyMaxQuantity8LessThanOrEqualTo = null; public BigDecimal SafetyMaxQuantity8NotEqualTo = null; public ArrayList SafetyMaxQuantity8Between = null; public ArrayList SafetyMaxQuantity8In = null; public BigDecimal SafetyMaxQuantity9 = null; public BigDecimal SafetyMaxQuantity9GreaterThanOrEqualTo = null; public BigDecimal SafetyMaxQuantity9GreaterThan = null; public BigDecimal SafetyMaxQuantity9LessThan = null; public BigDecimal SafetyMaxQuantity9LessThanOrEqualTo = null; public BigDecimal SafetyMaxQuantity9NotEqualTo = null; public ArrayList SafetyMaxQuantity9Between = null; public ArrayList SafetyMaxQuantity9In = null; public BigDecimal SafetyMaxQuantity10 = null; public BigDecimal SafetyMaxQuantity10GreaterThanOrEqualTo = null; public BigDecimal SafetyMaxQuantity10GreaterThan = null; public BigDecimal SafetyMaxQuantity10LessThan = null; public BigDecimal SafetyMaxQuantity10LessThanOrEqualTo = null; public BigDecimal SafetyMaxQuantity10NotEqualTo = null; public ArrayList SafetyMaxQuantity10Between = null; public ArrayList SafetyMaxQuantity10In = null; public BigDecimal SafetyMaxQuantity11 = null; public BigDecimal SafetyMaxQuantity11GreaterThanOrEqualTo = null; public BigDecimal SafetyMaxQuantity11GreaterThan = null; public BigDecimal SafetyMaxQuantity11LessThan = null; public BigDecimal SafetyMaxQuantity11LessThanOrEqualTo = null; public BigDecimal SafetyMaxQuantity11NotEqualTo = null; public ArrayList SafetyMaxQuantity11Between = null; public ArrayList SafetyMaxQuantity11In = null; public BigDecimal SafetyMaxQuantity12 = null; public BigDecimal SafetyMaxQuantity12GreaterThanOrEqualTo = null; public BigDecimal SafetyMaxQuantity12GreaterThan = null; public BigDecimal SafetyMaxQuantity12LessThan = null; public BigDecimal SafetyMaxQuantity12LessThanOrEqualTo = null; public BigDecimal SafetyMaxQuantity12NotEqualTo = null; public ArrayList SafetyMaxQuantity12Between = null; public ArrayList SafetyMaxQuantity12In = null; public String getInventoryLevelsID() { return InventoryLevelsID; } public IN_OrderLevelsQuery setInventoryLevelsID(String value) { this.InventoryLevelsID = value; return this; } public String getInventoryLevelsIDStartsWith() { return InventoryLevelsIDStartsWith; } public IN_OrderLevelsQuery setInventoryLevelsIDStartsWith(String value) { this.InventoryLevelsIDStartsWith = value; return this; } public String getInventoryLevelsIDEndsWith() { return InventoryLevelsIDEndsWith; } public IN_OrderLevelsQuery setInventoryLevelsIDEndsWith(String value) { this.InventoryLevelsIDEndsWith = value; return this; } public String getInventoryLevelsIDContains() { return InventoryLevelsIDContains; } public IN_OrderLevelsQuery setInventoryLevelsIDContains(String value) { this.InventoryLevelsIDContains = value; return this; } public String getInventoryLevelsIDLike() { return InventoryLevelsIDLike; } public IN_OrderLevelsQuery setInventoryLevelsIDLike(String value) { this.InventoryLevelsIDLike = value; return this; } public ArrayList getInventoryLevelsIDBetween() { return InventoryLevelsIDBetween; } public IN_OrderLevelsQuery setInventoryLevelsIDBetween(ArrayList value) { this.InventoryLevelsIDBetween = value; return this; } public ArrayList getInventoryLevelsIDIn() { return InventoryLevelsIDIn; } public IN_OrderLevelsQuery setInventoryLevelsIDIn(ArrayList value) { this.InventoryLevelsIDIn = value; return this; } public String getInventoryID() { return InventoryID; } public IN_OrderLevelsQuery setInventoryID(String value) { this.InventoryID = value; return this; } public String getInventoryIDStartsWith() { return InventoryIDStartsWith; } public IN_OrderLevelsQuery setInventoryIDStartsWith(String value) { this.InventoryIDStartsWith = value; return this; } public String getInventoryIDEndsWith() { return InventoryIDEndsWith; } public IN_OrderLevelsQuery setInventoryIDEndsWith(String value) { this.InventoryIDEndsWith = value; return this; } public String getInventoryIDContains() { return InventoryIDContains; } public IN_OrderLevelsQuery setInventoryIDContains(String value) { this.InventoryIDContains = value; return this; } public String getInventoryIDLike() { return InventoryIDLike; } public IN_OrderLevelsQuery setInventoryIDLike(String value) { this.InventoryIDLike = value; return this; } public ArrayList getInventoryIDBetween() { return InventoryIDBetween; } public IN_OrderLevelsQuery setInventoryIDBetween(ArrayList value) { this.InventoryIDBetween = value; return this; } public ArrayList getInventoryIDIn() { return InventoryIDIn; } public IN_OrderLevelsQuery setInventoryIDIn(ArrayList value) { this.InventoryIDIn = value; return this; } public BigDecimal getQuantity1() { return Quantity1; } public IN_OrderLevelsQuery setQuantity1(BigDecimal value) { this.Quantity1 = value; return this; } public BigDecimal getQuantity1GreaterThanOrEqualTo() { return Quantity1GreaterThanOrEqualTo; } public IN_OrderLevelsQuery setQuantity1GreaterThanOrEqualTo(BigDecimal value) { this.Quantity1GreaterThanOrEqualTo = value; return this; } public BigDecimal getQuantity1GreaterThan() { return Quantity1GreaterThan; } public IN_OrderLevelsQuery setQuantity1GreaterThan(BigDecimal value) { this.Quantity1GreaterThan = value; return this; } public BigDecimal getQuantity1LessThan() { return Quantity1LessThan; } public IN_OrderLevelsQuery setQuantity1LessThan(BigDecimal value) { this.Quantity1LessThan = value; return this; } public BigDecimal getQuantity1LessThanOrEqualTo() { return Quantity1LessThanOrEqualTo; } public IN_OrderLevelsQuery setQuantity1LessThanOrEqualTo(BigDecimal value) { this.Quantity1LessThanOrEqualTo = value; return this; } public BigDecimal getQuantity1NotEqualTo() { return Quantity1NotEqualTo; } public IN_OrderLevelsQuery setQuantity1NotEqualTo(BigDecimal value) { this.Quantity1NotEqualTo = value; return this; } public ArrayList getQuantity1Between() { return Quantity1Between; } public IN_OrderLevelsQuery setQuantity1Between(ArrayList value) { this.Quantity1Between = value; return this; } public ArrayList getQuantity1In() { return Quantity1In; } public IN_OrderLevelsQuery setQuantity1In(ArrayList value) { this.Quantity1In = value; return this; } public BigDecimal getQuantity2() { return Quantity2; } public IN_OrderLevelsQuery setQuantity2(BigDecimal value) { this.Quantity2 = value; return this; } public BigDecimal getQuantity2GreaterThanOrEqualTo() { return Quantity2GreaterThanOrEqualTo; } public IN_OrderLevelsQuery setQuantity2GreaterThanOrEqualTo(BigDecimal value) { this.Quantity2GreaterThanOrEqualTo = value; return this; } public BigDecimal getQuantity2GreaterThan() { return Quantity2GreaterThan; } public IN_OrderLevelsQuery setQuantity2GreaterThan(BigDecimal value) { this.Quantity2GreaterThan = value; return this; } public BigDecimal getQuantity2LessThan() { return Quantity2LessThan; } public IN_OrderLevelsQuery setQuantity2LessThan(BigDecimal value) { this.Quantity2LessThan = value; return this; } public BigDecimal getQuantity2LessThanOrEqualTo() { return Quantity2LessThanOrEqualTo; } public IN_OrderLevelsQuery setQuantity2LessThanOrEqualTo(BigDecimal value) { this.Quantity2LessThanOrEqualTo = value; return this; } public BigDecimal getQuantity2NotEqualTo() { return Quantity2NotEqualTo; } public IN_OrderLevelsQuery setQuantity2NotEqualTo(BigDecimal value) { this.Quantity2NotEqualTo = value; return this; } public ArrayList getQuantity2Between() { return Quantity2Between; } public IN_OrderLevelsQuery setQuantity2Between(ArrayList value) { this.Quantity2Between = value; return this; } public ArrayList getQuantity2In() { return Quantity2In; } public IN_OrderLevelsQuery setQuantity2In(ArrayList value) { this.Quantity2In = value; return this; } public BigDecimal getQuantity3() { return Quantity3; } public IN_OrderLevelsQuery setQuantity3(BigDecimal value) { this.Quantity3 = value; return this; } public BigDecimal getQuantity3GreaterThanOrEqualTo() { return Quantity3GreaterThanOrEqualTo; } public IN_OrderLevelsQuery setQuantity3GreaterThanOrEqualTo(BigDecimal value) { this.Quantity3GreaterThanOrEqualTo = value; return this; } public BigDecimal getQuantity3GreaterThan() { return Quantity3GreaterThan; } public IN_OrderLevelsQuery setQuantity3GreaterThan(BigDecimal value) { this.Quantity3GreaterThan = value; return this; } public BigDecimal getQuantity3LessThan() { return Quantity3LessThan; } public IN_OrderLevelsQuery setQuantity3LessThan(BigDecimal value) { this.Quantity3LessThan = value; return this; } public BigDecimal getQuantity3LessThanOrEqualTo() { return Quantity3LessThanOrEqualTo; } public IN_OrderLevelsQuery setQuantity3LessThanOrEqualTo(BigDecimal value) { this.Quantity3LessThanOrEqualTo = value; return this; } public BigDecimal getQuantity3NotEqualTo() { return Quantity3NotEqualTo; } public IN_OrderLevelsQuery setQuantity3NotEqualTo(BigDecimal value) { this.Quantity3NotEqualTo = value; return this; } public ArrayList getQuantity3Between() { return Quantity3Between; } public IN_OrderLevelsQuery setQuantity3Between(ArrayList value) { this.Quantity3Between = value; return this; } public ArrayList getQuantity3In() { return Quantity3In; } public IN_OrderLevelsQuery setQuantity3In(ArrayList value) { this.Quantity3In = value; return this; } public BigDecimal getQuantity4() { return Quantity4; } public IN_OrderLevelsQuery setQuantity4(BigDecimal value) { this.Quantity4 = value; return this; } public BigDecimal getQuantity4GreaterThanOrEqualTo() { return Quantity4GreaterThanOrEqualTo; } public IN_OrderLevelsQuery setQuantity4GreaterThanOrEqualTo(BigDecimal value) { this.Quantity4GreaterThanOrEqualTo = value; return this; } public BigDecimal getQuantity4GreaterThan() { return Quantity4GreaterThan; } public IN_OrderLevelsQuery setQuantity4GreaterThan(BigDecimal value) { this.Quantity4GreaterThan = value; return this; } public BigDecimal getQuantity4LessThan() { return Quantity4LessThan; } public IN_OrderLevelsQuery setQuantity4LessThan(BigDecimal value) { this.Quantity4LessThan = value; return this; } public BigDecimal getQuantity4LessThanOrEqualTo() { return Quantity4LessThanOrEqualTo; } public IN_OrderLevelsQuery setQuantity4LessThanOrEqualTo(BigDecimal value) { this.Quantity4LessThanOrEqualTo = value; return this; } public BigDecimal getQuantity4NotEqualTo() { return Quantity4NotEqualTo; } public IN_OrderLevelsQuery setQuantity4NotEqualTo(BigDecimal value) { this.Quantity4NotEqualTo = value; return this; } public ArrayList getQuantity4Between() { return Quantity4Between; } public IN_OrderLevelsQuery setQuantity4Between(ArrayList value) { this.Quantity4Between = value; return this; } public ArrayList getQuantity4In() { return Quantity4In; } public IN_OrderLevelsQuery setQuantity4In(ArrayList value) { this.Quantity4In = value; return this; } public BigDecimal getQuantity5() { return Quantity5; } public IN_OrderLevelsQuery setQuantity5(BigDecimal value) { this.Quantity5 = value; return this; } public BigDecimal getQuantity5GreaterThanOrEqualTo() { return Quantity5GreaterThanOrEqualTo; } public IN_OrderLevelsQuery setQuantity5GreaterThanOrEqualTo(BigDecimal value) { this.Quantity5GreaterThanOrEqualTo = value; return this; } public BigDecimal getQuantity5GreaterThan() { return Quantity5GreaterThan; } public IN_OrderLevelsQuery setQuantity5GreaterThan(BigDecimal value) { this.Quantity5GreaterThan = value; return this; } public BigDecimal getQuantity5LessThan() { return Quantity5LessThan; } public IN_OrderLevelsQuery setQuantity5LessThan(BigDecimal value) { this.Quantity5LessThan = value; return this; } public BigDecimal getQuantity5LessThanOrEqualTo() { return Quantity5LessThanOrEqualTo; } public IN_OrderLevelsQuery setQuantity5LessThanOrEqualTo(BigDecimal value) { this.Quantity5LessThanOrEqualTo = value; return this; } public BigDecimal getQuantity5NotEqualTo() { return Quantity5NotEqualTo; } public IN_OrderLevelsQuery setQuantity5NotEqualTo(BigDecimal value) { this.Quantity5NotEqualTo = value; return this; } public ArrayList getQuantity5Between() { return Quantity5Between; } public IN_OrderLevelsQuery setQuantity5Between(ArrayList value) { this.Quantity5Between = value; return this; } public ArrayList getQuantity5In() { return Quantity5In; } public IN_OrderLevelsQuery setQuantity5In(ArrayList value) { this.Quantity5In = value; return this; } public BigDecimal getQuantity6() { return Quantity6; } public IN_OrderLevelsQuery setQuantity6(BigDecimal value) { this.Quantity6 = value; return this; } public BigDecimal getQuantity6GreaterThanOrEqualTo() { return Quantity6GreaterThanOrEqualTo; } public IN_OrderLevelsQuery setQuantity6GreaterThanOrEqualTo(BigDecimal value) { this.Quantity6GreaterThanOrEqualTo = value; return this; } public BigDecimal getQuantity6GreaterThan() { return Quantity6GreaterThan; } public IN_OrderLevelsQuery setQuantity6GreaterThan(BigDecimal value) { this.Quantity6GreaterThan = value; return this; } public BigDecimal getQuantity6LessThan() { return Quantity6LessThan; } public IN_OrderLevelsQuery setQuantity6LessThan(BigDecimal value) { this.Quantity6LessThan = value; return this; } public BigDecimal getQuantity6LessThanOrEqualTo() { return Quantity6LessThanOrEqualTo; } public IN_OrderLevelsQuery setQuantity6LessThanOrEqualTo(BigDecimal value) { this.Quantity6LessThanOrEqualTo = value; return this; } public BigDecimal getQuantity6NotEqualTo() { return Quantity6NotEqualTo; } public IN_OrderLevelsQuery setQuantity6NotEqualTo(BigDecimal value) { this.Quantity6NotEqualTo = value; return this; } public ArrayList getQuantity6Between() { return Quantity6Between; } public IN_OrderLevelsQuery setQuantity6Between(ArrayList value) { this.Quantity6Between = value; return this; } public ArrayList getQuantity6In() { return Quantity6In; } public IN_OrderLevelsQuery setQuantity6In(ArrayList value) { this.Quantity6In = value; return this; } public BigDecimal getQuantity7() { return Quantity7; } public IN_OrderLevelsQuery setQuantity7(BigDecimal value) { this.Quantity7 = value; return this; } public BigDecimal getQuantity7GreaterThanOrEqualTo() { return Quantity7GreaterThanOrEqualTo; } public IN_OrderLevelsQuery setQuantity7GreaterThanOrEqualTo(BigDecimal value) { this.Quantity7GreaterThanOrEqualTo = value; return this; } public BigDecimal getQuantity7GreaterThan() { return Quantity7GreaterThan; } public IN_OrderLevelsQuery setQuantity7GreaterThan(BigDecimal value) { this.Quantity7GreaterThan = value; return this; } public BigDecimal getQuantity7LessThan() { return Quantity7LessThan; } public IN_OrderLevelsQuery setQuantity7LessThan(BigDecimal value) { this.Quantity7LessThan = value; return this; } public BigDecimal getQuantity7LessThanOrEqualTo() { return Quantity7LessThanOrEqualTo; } public IN_OrderLevelsQuery setQuantity7LessThanOrEqualTo(BigDecimal value) { this.Quantity7LessThanOrEqualTo = value; return this; } public BigDecimal getQuantity7NotEqualTo() { return Quantity7NotEqualTo; } public IN_OrderLevelsQuery setQuantity7NotEqualTo(BigDecimal value) { this.Quantity7NotEqualTo = value; return this; } public ArrayList getQuantity7Between() { return Quantity7Between; } public IN_OrderLevelsQuery setQuantity7Between(ArrayList value) { this.Quantity7Between = value; return this; } public ArrayList getQuantity7In() { return Quantity7In; } public IN_OrderLevelsQuery setQuantity7In(ArrayList value) { this.Quantity7In = value; return this; } public BigDecimal getQuantity8() { return Quantity8; } public IN_OrderLevelsQuery setQuantity8(BigDecimal value) { this.Quantity8 = value; return this; } public BigDecimal getQuantity8GreaterThanOrEqualTo() { return Quantity8GreaterThanOrEqualTo; } public IN_OrderLevelsQuery setQuantity8GreaterThanOrEqualTo(BigDecimal value) { this.Quantity8GreaterThanOrEqualTo = value; return this; } public BigDecimal getQuantity8GreaterThan() { return Quantity8GreaterThan; } public IN_OrderLevelsQuery setQuantity8GreaterThan(BigDecimal value) { this.Quantity8GreaterThan = value; return this; } public BigDecimal getQuantity8LessThan() { return Quantity8LessThan; } public IN_OrderLevelsQuery setQuantity8LessThan(BigDecimal value) { this.Quantity8LessThan = value; return this; } public BigDecimal getQuantity8LessThanOrEqualTo() { return Quantity8LessThanOrEqualTo; } public IN_OrderLevelsQuery setQuantity8LessThanOrEqualTo(BigDecimal value) { this.Quantity8LessThanOrEqualTo = value; return this; } public BigDecimal getQuantity8NotEqualTo() { return Quantity8NotEqualTo; } public IN_OrderLevelsQuery setQuantity8NotEqualTo(BigDecimal value) { this.Quantity8NotEqualTo = value; return this; } public ArrayList getQuantity8Between() { return Quantity8Between; } public IN_OrderLevelsQuery setQuantity8Between(ArrayList value) { this.Quantity8Between = value; return this; } public ArrayList getQuantity8In() { return Quantity8In; } public IN_OrderLevelsQuery setQuantity8In(ArrayList value) { this.Quantity8In = value; return this; } public BigDecimal getQuantity9() { return Quantity9; } public IN_OrderLevelsQuery setQuantity9(BigDecimal value) { this.Quantity9 = value; return this; } public BigDecimal getQuantity9GreaterThanOrEqualTo() { return Quantity9GreaterThanOrEqualTo; } public IN_OrderLevelsQuery setQuantity9GreaterThanOrEqualTo(BigDecimal value) { this.Quantity9GreaterThanOrEqualTo = value; return this; } public BigDecimal getQuantity9GreaterThan() { return Quantity9GreaterThan; } public IN_OrderLevelsQuery setQuantity9GreaterThan(BigDecimal value) { this.Quantity9GreaterThan = value; return this; } public BigDecimal getQuantity9LessThan() { return Quantity9LessThan; } public IN_OrderLevelsQuery setQuantity9LessThan(BigDecimal value) { this.Quantity9LessThan = value; return this; } public BigDecimal getQuantity9LessThanOrEqualTo() { return Quantity9LessThanOrEqualTo; } public IN_OrderLevelsQuery setQuantity9LessThanOrEqualTo(BigDecimal value) { this.Quantity9LessThanOrEqualTo = value; return this; } public BigDecimal getQuantity9NotEqualTo() { return Quantity9NotEqualTo; } public IN_OrderLevelsQuery setQuantity9NotEqualTo(BigDecimal value) { this.Quantity9NotEqualTo = value; return this; } public ArrayList getQuantity9Between() { return Quantity9Between; } public IN_OrderLevelsQuery setQuantity9Between(ArrayList value) { this.Quantity9Between = value; return this; } public ArrayList getQuantity9In() { return Quantity9In; } public IN_OrderLevelsQuery setQuantity9In(ArrayList value) { this.Quantity9In = value; return this; } public BigDecimal getQuantity10() { return Quantity10; } public IN_OrderLevelsQuery setQuantity10(BigDecimal value) { this.Quantity10 = value; return this; } public BigDecimal getQuantity10GreaterThanOrEqualTo() { return Quantity10GreaterThanOrEqualTo; } public IN_OrderLevelsQuery setQuantity10GreaterThanOrEqualTo(BigDecimal value) { this.Quantity10GreaterThanOrEqualTo = value; return this; } public BigDecimal getQuantity10GreaterThan() { return Quantity10GreaterThan; } public IN_OrderLevelsQuery setQuantity10GreaterThan(BigDecimal value) { this.Quantity10GreaterThan = value; return this; } public BigDecimal getQuantity10LessThan() { return Quantity10LessThan; } public IN_OrderLevelsQuery setQuantity10LessThan(BigDecimal value) { this.Quantity10LessThan = value; return this; } public BigDecimal getQuantity10LessThanOrEqualTo() { return Quantity10LessThanOrEqualTo; } public IN_OrderLevelsQuery setQuantity10LessThanOrEqualTo(BigDecimal value) { this.Quantity10LessThanOrEqualTo = value; return this; } public BigDecimal getQuantity10NotEqualTo() { return Quantity10NotEqualTo; } public IN_OrderLevelsQuery setQuantity10NotEqualTo(BigDecimal value) { this.Quantity10NotEqualTo = value; return this; } public ArrayList getQuantity10Between() { return Quantity10Between; } public IN_OrderLevelsQuery setQuantity10Between(ArrayList value) { this.Quantity10Between = value; return this; } public ArrayList getQuantity10In() { return Quantity10In; } public IN_OrderLevelsQuery setQuantity10In(ArrayList value) { this.Quantity10In = value; return this; } public BigDecimal getQuantity11() { return Quantity11; } public IN_OrderLevelsQuery setQuantity11(BigDecimal value) { this.Quantity11 = value; return this; } public BigDecimal getQuantity11GreaterThanOrEqualTo() { return Quantity11GreaterThanOrEqualTo; } public IN_OrderLevelsQuery setQuantity11GreaterThanOrEqualTo(BigDecimal value) { this.Quantity11GreaterThanOrEqualTo = value; return this; } public BigDecimal getQuantity11GreaterThan() { return Quantity11GreaterThan; } public IN_OrderLevelsQuery setQuantity11GreaterThan(BigDecimal value) { this.Quantity11GreaterThan = value; return this; } public BigDecimal getQuantity11LessThan() { return Quantity11LessThan; } public IN_OrderLevelsQuery setQuantity11LessThan(BigDecimal value) { this.Quantity11LessThan = value; return this; } public BigDecimal getQuantity11LessThanOrEqualTo() { return Quantity11LessThanOrEqualTo; } public IN_OrderLevelsQuery setQuantity11LessThanOrEqualTo(BigDecimal value) { this.Quantity11LessThanOrEqualTo = value; return this; } public BigDecimal getQuantity11NotEqualTo() { return Quantity11NotEqualTo; } public IN_OrderLevelsQuery setQuantity11NotEqualTo(BigDecimal value) { this.Quantity11NotEqualTo = value; return this; } public ArrayList getQuantity11Between() { return Quantity11Between; } public IN_OrderLevelsQuery setQuantity11Between(ArrayList value) { this.Quantity11Between = value; return this; } public ArrayList getQuantity11In() { return Quantity11In; } public IN_OrderLevelsQuery setQuantity11In(ArrayList value) { this.Quantity11In = value; return this; } public BigDecimal getQuantity12() { return Quantity12; } public IN_OrderLevelsQuery setQuantity12(BigDecimal value) { this.Quantity12 = value; return this; } public BigDecimal getQuantity12GreaterThanOrEqualTo() { return Quantity12GreaterThanOrEqualTo; } public IN_OrderLevelsQuery setQuantity12GreaterThanOrEqualTo(BigDecimal value) { this.Quantity12GreaterThanOrEqualTo = value; return this; } public BigDecimal getQuantity12GreaterThan() { return Quantity12GreaterThan; } public IN_OrderLevelsQuery setQuantity12GreaterThan(BigDecimal value) { this.Quantity12GreaterThan = value; return this; } public BigDecimal getQuantity12LessThan() { return Quantity12LessThan; } public IN_OrderLevelsQuery setQuantity12LessThan(BigDecimal value) { this.Quantity12LessThan = value; return this; } public BigDecimal getQuantity12LessThanOrEqualTo() { return Quantity12LessThanOrEqualTo; } public IN_OrderLevelsQuery setQuantity12LessThanOrEqualTo(BigDecimal value) { this.Quantity12LessThanOrEqualTo = value; return this; } public BigDecimal getQuantity12NotEqualTo() { return Quantity12NotEqualTo; } public IN_OrderLevelsQuery setQuantity12NotEqualTo(BigDecimal value) { this.Quantity12NotEqualTo = value; return this; } public ArrayList getQuantity12Between() { return Quantity12Between; } public IN_OrderLevelsQuery setQuantity12Between(ArrayList value) { this.Quantity12Between = value; return this; } public ArrayList getQuantity12In() { return Quantity12In; } public IN_OrderLevelsQuery setQuantity12In(ArrayList value) { this.Quantity12In = value; return this; } public BigDecimal getQuantity13() { return Quantity13; } public IN_OrderLevelsQuery setQuantity13(BigDecimal value) { this.Quantity13 = value; return this; } public BigDecimal getQuantity13GreaterThanOrEqualTo() { return Quantity13GreaterThanOrEqualTo; } public IN_OrderLevelsQuery setQuantity13GreaterThanOrEqualTo(BigDecimal value) { this.Quantity13GreaterThanOrEqualTo = value; return this; } public BigDecimal getQuantity13GreaterThan() { return Quantity13GreaterThan; } public IN_OrderLevelsQuery setQuantity13GreaterThan(BigDecimal value) { this.Quantity13GreaterThan = value; return this; } public BigDecimal getQuantity13LessThan() { return Quantity13LessThan; } public IN_OrderLevelsQuery setQuantity13LessThan(BigDecimal value) { this.Quantity13LessThan = value; return this; } public BigDecimal getQuantity13LessThanOrEqualTo() { return Quantity13LessThanOrEqualTo; } public IN_OrderLevelsQuery setQuantity13LessThanOrEqualTo(BigDecimal value) { this.Quantity13LessThanOrEqualTo = value; return this; } public BigDecimal getQuantity13NotEqualTo() { return Quantity13NotEqualTo; } public IN_OrderLevelsQuery setQuantity13NotEqualTo(BigDecimal value) { this.Quantity13NotEqualTo = value; return this; } public ArrayList getQuantity13Between() { return Quantity13Between; } public IN_OrderLevelsQuery setQuantity13Between(ArrayList value) { this.Quantity13Between = value; return this; } public ArrayList getQuantity13In() { return Quantity13In; } public IN_OrderLevelsQuery setQuantity13In(ArrayList value) { this.Quantity13In = value; return this; } public BigDecimal getQuantity14() { return Quantity14; } public IN_OrderLevelsQuery setQuantity14(BigDecimal value) { this.Quantity14 = value; return this; } public BigDecimal getQuantity14GreaterThanOrEqualTo() { return Quantity14GreaterThanOrEqualTo; } public IN_OrderLevelsQuery setQuantity14GreaterThanOrEqualTo(BigDecimal value) { this.Quantity14GreaterThanOrEqualTo = value; return this; } public BigDecimal getQuantity14GreaterThan() { return Quantity14GreaterThan; } public IN_OrderLevelsQuery setQuantity14GreaterThan(BigDecimal value) { this.Quantity14GreaterThan = value; return this; } public BigDecimal getQuantity14LessThan() { return Quantity14LessThan; } public IN_OrderLevelsQuery setQuantity14LessThan(BigDecimal value) { this.Quantity14LessThan = value; return this; } public BigDecimal getQuantity14LessThanOrEqualTo() { return Quantity14LessThanOrEqualTo; } public IN_OrderLevelsQuery setQuantity14LessThanOrEqualTo(BigDecimal value) { this.Quantity14LessThanOrEqualTo = value; return this; } public BigDecimal getQuantity14NotEqualTo() { return Quantity14NotEqualTo; } public IN_OrderLevelsQuery setQuantity14NotEqualTo(BigDecimal value) { this.Quantity14NotEqualTo = value; return this; } public ArrayList getQuantity14Between() { return Quantity14Between; } public IN_OrderLevelsQuery setQuantity14Between(ArrayList value) { this.Quantity14Between = value; return this; } public ArrayList getQuantity14In() { return Quantity14In; } public IN_OrderLevelsQuery setQuantity14In(ArrayList value) { this.Quantity14In = value; return this; } public BigDecimal getQuantity15() { return Quantity15; } public IN_OrderLevelsQuery setQuantity15(BigDecimal value) { this.Quantity15 = value; return this; } public BigDecimal getQuantity15GreaterThanOrEqualTo() { return Quantity15GreaterThanOrEqualTo; } public IN_OrderLevelsQuery setQuantity15GreaterThanOrEqualTo(BigDecimal value) { this.Quantity15GreaterThanOrEqualTo = value; return this; } public BigDecimal getQuantity15GreaterThan() { return Quantity15GreaterThan; } public IN_OrderLevelsQuery setQuantity15GreaterThan(BigDecimal value) { this.Quantity15GreaterThan = value; return this; } public BigDecimal getQuantity15LessThan() { return Quantity15LessThan; } public IN_OrderLevelsQuery setQuantity15LessThan(BigDecimal value) { this.Quantity15LessThan = value; return this; } public BigDecimal getQuantity15LessThanOrEqualTo() { return Quantity15LessThanOrEqualTo; } public IN_OrderLevelsQuery setQuantity15LessThanOrEqualTo(BigDecimal value) { this.Quantity15LessThanOrEqualTo = value; return this; } public BigDecimal getQuantity15NotEqualTo() { return Quantity15NotEqualTo; } public IN_OrderLevelsQuery setQuantity15NotEqualTo(BigDecimal value) { this.Quantity15NotEqualTo = value; return this; } public ArrayList getQuantity15Between() { return Quantity15Between; } public IN_OrderLevelsQuery setQuantity15Between(ArrayList value) { this.Quantity15Between = value; return this; } public ArrayList getQuantity15In() { return Quantity15In; } public IN_OrderLevelsQuery setQuantity15In(ArrayList value) { this.Quantity15In = value; return this; } public BigDecimal getQuantity16() { return Quantity16; } public IN_OrderLevelsQuery setQuantity16(BigDecimal value) { this.Quantity16 = value; return this; } public BigDecimal getQuantity16GreaterThanOrEqualTo() { return Quantity16GreaterThanOrEqualTo; } public IN_OrderLevelsQuery setQuantity16GreaterThanOrEqualTo(BigDecimal value) { this.Quantity16GreaterThanOrEqualTo = value; return this; } public BigDecimal getQuantity16GreaterThan() { return Quantity16GreaterThan; } public IN_OrderLevelsQuery setQuantity16GreaterThan(BigDecimal value) { this.Quantity16GreaterThan = value; return this; } public BigDecimal getQuantity16LessThan() { return Quantity16LessThan; } public IN_OrderLevelsQuery setQuantity16LessThan(BigDecimal value) { this.Quantity16LessThan = value; return this; } public BigDecimal getQuantity16LessThanOrEqualTo() { return Quantity16LessThanOrEqualTo; } public IN_OrderLevelsQuery setQuantity16LessThanOrEqualTo(BigDecimal value) { this.Quantity16LessThanOrEqualTo = value; return this; } public BigDecimal getQuantity16NotEqualTo() { return Quantity16NotEqualTo; } public IN_OrderLevelsQuery setQuantity16NotEqualTo(BigDecimal value) { this.Quantity16NotEqualTo = value; return this; } public ArrayList getQuantity16Between() { return Quantity16Between; } public IN_OrderLevelsQuery setQuantity16Between(ArrayList value) { this.Quantity16Between = value; return this; } public ArrayList getQuantity16In() { return Quantity16In; } public IN_OrderLevelsQuery setQuantity16In(ArrayList value) { this.Quantity16In = value; return this; } public BigDecimal getQuantity17() { return Quantity17; } public IN_OrderLevelsQuery setQuantity17(BigDecimal value) { this.Quantity17 = value; return this; } public BigDecimal getQuantity17GreaterThanOrEqualTo() { return Quantity17GreaterThanOrEqualTo; } public IN_OrderLevelsQuery setQuantity17GreaterThanOrEqualTo(BigDecimal value) { this.Quantity17GreaterThanOrEqualTo = value; return this; } public BigDecimal getQuantity17GreaterThan() { return Quantity17GreaterThan; } public IN_OrderLevelsQuery setQuantity17GreaterThan(BigDecimal value) { this.Quantity17GreaterThan = value; return this; } public BigDecimal getQuantity17LessThan() { return Quantity17LessThan; } public IN_OrderLevelsQuery setQuantity17LessThan(BigDecimal value) { this.Quantity17LessThan = value; return this; } public BigDecimal getQuantity17LessThanOrEqualTo() { return Quantity17LessThanOrEqualTo; } public IN_OrderLevelsQuery setQuantity17LessThanOrEqualTo(BigDecimal value) { this.Quantity17LessThanOrEqualTo = value; return this; } public BigDecimal getQuantity17NotEqualTo() { return Quantity17NotEqualTo; } public IN_OrderLevelsQuery setQuantity17NotEqualTo(BigDecimal value) { this.Quantity17NotEqualTo = value; return this; } public ArrayList getQuantity17Between() { return Quantity17Between; } public IN_OrderLevelsQuery setQuantity17Between(ArrayList value) { this.Quantity17Between = value; return this; } public ArrayList getQuantity17In() { return Quantity17In; } public IN_OrderLevelsQuery setQuantity17In(ArrayList value) { this.Quantity17In = value; return this; } public BigDecimal getQuantity18() { return Quantity18; } public IN_OrderLevelsQuery setQuantity18(BigDecimal value) { this.Quantity18 = value; return this; } public BigDecimal getQuantity18GreaterThanOrEqualTo() { return Quantity18GreaterThanOrEqualTo; } public IN_OrderLevelsQuery setQuantity18GreaterThanOrEqualTo(BigDecimal value) { this.Quantity18GreaterThanOrEqualTo = value; return this; } public BigDecimal getQuantity18GreaterThan() { return Quantity18GreaterThan; } public IN_OrderLevelsQuery setQuantity18GreaterThan(BigDecimal value) { this.Quantity18GreaterThan = value; return this; } public BigDecimal getQuantity18LessThan() { return Quantity18LessThan; } public IN_OrderLevelsQuery setQuantity18LessThan(BigDecimal value) { this.Quantity18LessThan = value; return this; } public BigDecimal getQuantity18LessThanOrEqualTo() { return Quantity18LessThanOrEqualTo; } public IN_OrderLevelsQuery setQuantity18LessThanOrEqualTo(BigDecimal value) { this.Quantity18LessThanOrEqualTo = value; return this; } public BigDecimal getQuantity18NotEqualTo() { return Quantity18NotEqualTo; } public IN_OrderLevelsQuery setQuantity18NotEqualTo(BigDecimal value) { this.Quantity18NotEqualTo = value; return this; } public ArrayList getQuantity18Between() { return Quantity18Between; } public IN_OrderLevelsQuery setQuantity18Between(ArrayList value) { this.Quantity18Between = value; return this; } public ArrayList getQuantity18In() { return Quantity18In; } public IN_OrderLevelsQuery setQuantity18In(ArrayList value) { this.Quantity18In = value; return this; } public BigDecimal getQuantity19() { return Quantity19; } public IN_OrderLevelsQuery setQuantity19(BigDecimal value) { this.Quantity19 = value; return this; } public BigDecimal getQuantity19GreaterThanOrEqualTo() { return Quantity19GreaterThanOrEqualTo; } public IN_OrderLevelsQuery setQuantity19GreaterThanOrEqualTo(BigDecimal value) { this.Quantity19GreaterThanOrEqualTo = value; return this; } public BigDecimal getQuantity19GreaterThan() { return Quantity19GreaterThan; } public IN_OrderLevelsQuery setQuantity19GreaterThan(BigDecimal value) { this.Quantity19GreaterThan = value; return this; } public BigDecimal getQuantity19LessThan() { return Quantity19LessThan; } public IN_OrderLevelsQuery setQuantity19LessThan(BigDecimal value) { this.Quantity19LessThan = value; return this; } public BigDecimal getQuantity19LessThanOrEqualTo() { return Quantity19LessThanOrEqualTo; } public IN_OrderLevelsQuery setQuantity19LessThanOrEqualTo(BigDecimal value) { this.Quantity19LessThanOrEqualTo = value; return this; } public BigDecimal getQuantity19NotEqualTo() { return Quantity19NotEqualTo; } public IN_OrderLevelsQuery setQuantity19NotEqualTo(BigDecimal value) { this.Quantity19NotEqualTo = value; return this; } public ArrayList getQuantity19Between() { return Quantity19Between; } public IN_OrderLevelsQuery setQuantity19Between(ArrayList value) { this.Quantity19Between = value; return this; } public ArrayList getQuantity19In() { return Quantity19In; } public IN_OrderLevelsQuery setQuantity19In(ArrayList value) { this.Quantity19In = value; return this; } public BigDecimal getQuantity20() { return Quantity20; } public IN_OrderLevelsQuery setQuantity20(BigDecimal value) { this.Quantity20 = value; return this; } public BigDecimal getQuantity20GreaterThanOrEqualTo() { return Quantity20GreaterThanOrEqualTo; } public IN_OrderLevelsQuery setQuantity20GreaterThanOrEqualTo(BigDecimal value) { this.Quantity20GreaterThanOrEqualTo = value; return this; } public BigDecimal getQuantity20GreaterThan() { return Quantity20GreaterThan; } public IN_OrderLevelsQuery setQuantity20GreaterThan(BigDecimal value) { this.Quantity20GreaterThan = value; return this; } public BigDecimal getQuantity20LessThan() { return Quantity20LessThan; } public IN_OrderLevelsQuery setQuantity20LessThan(BigDecimal value) { this.Quantity20LessThan = value; return this; } public BigDecimal getQuantity20LessThanOrEqualTo() { return Quantity20LessThanOrEqualTo; } public IN_OrderLevelsQuery setQuantity20LessThanOrEqualTo(BigDecimal value) { this.Quantity20LessThanOrEqualTo = value; return this; } public BigDecimal getQuantity20NotEqualTo() { return Quantity20NotEqualTo; } public IN_OrderLevelsQuery setQuantity20NotEqualTo(BigDecimal value) { this.Quantity20NotEqualTo = value; return this; } public ArrayList getQuantity20Between() { return Quantity20Between; } public IN_OrderLevelsQuery setQuantity20Between(ArrayList value) { this.Quantity20Between = value; return this; } public ArrayList getQuantity20In() { return Quantity20In; } public IN_OrderLevelsQuery setQuantity20In(ArrayList value) { this.Quantity20In = value; return this; } public BigDecimal getQuantity21() { return Quantity21; } public IN_OrderLevelsQuery setQuantity21(BigDecimal value) { this.Quantity21 = value; return this; } public BigDecimal getQuantity21GreaterThanOrEqualTo() { return Quantity21GreaterThanOrEqualTo; } public IN_OrderLevelsQuery setQuantity21GreaterThanOrEqualTo(BigDecimal value) { this.Quantity21GreaterThanOrEqualTo = value; return this; } public BigDecimal getQuantity21GreaterThan() { return Quantity21GreaterThan; } public IN_OrderLevelsQuery setQuantity21GreaterThan(BigDecimal value) { this.Quantity21GreaterThan = value; return this; } public BigDecimal getQuantity21LessThan() { return Quantity21LessThan; } public IN_OrderLevelsQuery setQuantity21LessThan(BigDecimal value) { this.Quantity21LessThan = value; return this; } public BigDecimal getQuantity21LessThanOrEqualTo() { return Quantity21LessThanOrEqualTo; } public IN_OrderLevelsQuery setQuantity21LessThanOrEqualTo(BigDecimal value) { this.Quantity21LessThanOrEqualTo = value; return this; } public BigDecimal getQuantity21NotEqualTo() { return Quantity21NotEqualTo; } public IN_OrderLevelsQuery setQuantity21NotEqualTo(BigDecimal value) { this.Quantity21NotEqualTo = value; return this; } public ArrayList getQuantity21Between() { return Quantity21Between; } public IN_OrderLevelsQuery setQuantity21Between(ArrayList value) { this.Quantity21Between = value; return this; } public ArrayList getQuantity21In() { return Quantity21In; } public IN_OrderLevelsQuery setQuantity21In(ArrayList value) { this.Quantity21In = value; return this; } public BigDecimal getQuantity22() { return Quantity22; } public IN_OrderLevelsQuery setQuantity22(BigDecimal value) { this.Quantity22 = value; return this; } public BigDecimal getQuantity22GreaterThanOrEqualTo() { return Quantity22GreaterThanOrEqualTo; } public IN_OrderLevelsQuery setQuantity22GreaterThanOrEqualTo(BigDecimal value) { this.Quantity22GreaterThanOrEqualTo = value; return this; } public BigDecimal getQuantity22GreaterThan() { return Quantity22GreaterThan; } public IN_OrderLevelsQuery setQuantity22GreaterThan(BigDecimal value) { this.Quantity22GreaterThan = value; return this; } public BigDecimal getQuantity22LessThan() { return Quantity22LessThan; } public IN_OrderLevelsQuery setQuantity22LessThan(BigDecimal value) { this.Quantity22LessThan = value; return this; } public BigDecimal getQuantity22LessThanOrEqualTo() { return Quantity22LessThanOrEqualTo; } public IN_OrderLevelsQuery setQuantity22LessThanOrEqualTo(BigDecimal value) { this.Quantity22LessThanOrEqualTo = value; return this; } public BigDecimal getQuantity22NotEqualTo() { return Quantity22NotEqualTo; } public IN_OrderLevelsQuery setQuantity22NotEqualTo(BigDecimal value) { this.Quantity22NotEqualTo = value; return this; } public ArrayList getQuantity22Between() { return Quantity22Between; } public IN_OrderLevelsQuery setQuantity22Between(ArrayList value) { this.Quantity22Between = value; return this; } public ArrayList getQuantity22In() { return Quantity22In; } public IN_OrderLevelsQuery setQuantity22In(ArrayList value) { this.Quantity22In = value; return this; } public BigDecimal getQuantity23() { return Quantity23; } public IN_OrderLevelsQuery setQuantity23(BigDecimal value) { this.Quantity23 = value; return this; } public BigDecimal getQuantity23GreaterThanOrEqualTo() { return Quantity23GreaterThanOrEqualTo; } public IN_OrderLevelsQuery setQuantity23GreaterThanOrEqualTo(BigDecimal value) { this.Quantity23GreaterThanOrEqualTo = value; return this; } public BigDecimal getQuantity23GreaterThan() { return Quantity23GreaterThan; } public IN_OrderLevelsQuery setQuantity23GreaterThan(BigDecimal value) { this.Quantity23GreaterThan = value; return this; } public BigDecimal getQuantity23LessThan() { return Quantity23LessThan; } public IN_OrderLevelsQuery setQuantity23LessThan(BigDecimal value) { this.Quantity23LessThan = value; return this; } public BigDecimal getQuantity23LessThanOrEqualTo() { return Quantity23LessThanOrEqualTo; } public IN_OrderLevelsQuery setQuantity23LessThanOrEqualTo(BigDecimal value) { this.Quantity23LessThanOrEqualTo = value; return this; } public BigDecimal getQuantity23NotEqualTo() { return Quantity23NotEqualTo; } public IN_OrderLevelsQuery setQuantity23NotEqualTo(BigDecimal value) { this.Quantity23NotEqualTo = value; return this; } public ArrayList getQuantity23Between() { return Quantity23Between; } public IN_OrderLevelsQuery setQuantity23Between(ArrayList value) { this.Quantity23Between = value; return this; } public ArrayList getQuantity23In() { return Quantity23In; } public IN_OrderLevelsQuery setQuantity23In(ArrayList value) { this.Quantity23In = value; return this; } public BigDecimal getQuantity24() { return Quantity24; } public IN_OrderLevelsQuery setQuantity24(BigDecimal value) { this.Quantity24 = value; return this; } public BigDecimal getQuantity24GreaterThanOrEqualTo() { return Quantity24GreaterThanOrEqualTo; } public IN_OrderLevelsQuery setQuantity24GreaterThanOrEqualTo(BigDecimal value) { this.Quantity24GreaterThanOrEqualTo = value; return this; } public BigDecimal getQuantity24GreaterThan() { return Quantity24GreaterThan; } public IN_OrderLevelsQuery setQuantity24GreaterThan(BigDecimal value) { this.Quantity24GreaterThan = value; return this; } public BigDecimal getQuantity24LessThan() { return Quantity24LessThan; } public IN_OrderLevelsQuery setQuantity24LessThan(BigDecimal value) { this.Quantity24LessThan = value; return this; } public BigDecimal getQuantity24LessThanOrEqualTo() { return Quantity24LessThanOrEqualTo; } public IN_OrderLevelsQuery setQuantity24LessThanOrEqualTo(BigDecimal value) { this.Quantity24LessThanOrEqualTo = value; return this; } public BigDecimal getQuantity24NotEqualTo() { return Quantity24NotEqualTo; } public IN_OrderLevelsQuery setQuantity24NotEqualTo(BigDecimal value) { this.Quantity24NotEqualTo = value; return this; } public ArrayList getQuantity24Between() { return Quantity24Between; } public IN_OrderLevelsQuery setQuantity24Between(ArrayList value) { this.Quantity24Between = value; return this; } public ArrayList getQuantity24In() { return Quantity24In; } public IN_OrderLevelsQuery setQuantity24In(ArrayList value) { this.Quantity24In = value; return this; } public String getInLogicalID() { return IN_LogicalID; } public IN_OrderLevelsQuery setInLogicalID(String value) { this.IN_LogicalID = value; return this; } public String getInLogicalIDStartsWith() { return IN_LogicalIDStartsWith; } public IN_OrderLevelsQuery setInLogicalIDStartsWith(String value) { this.IN_LogicalIDStartsWith = value; return this; } public String getInLogicalIDEndsWith() { return IN_LogicalIDEndsWith; } public IN_OrderLevelsQuery setInLogicalIDEndsWith(String value) { this.IN_LogicalIDEndsWith = value; return this; } public String getInLogicalIDContains() { return IN_LogicalIDContains; } public IN_OrderLevelsQuery setInLogicalIDContains(String value) { this.IN_LogicalIDContains = value; return this; } public String getInLogicalIDLike() { return IN_LogicalIDLike; } public IN_OrderLevelsQuery setInLogicalIDLike(String value) { this.IN_LogicalIDLike = value; return this; } public ArrayList getInLogicalIDBetween() { return IN_LogicalIDBetween; } public IN_OrderLevelsQuery setInLogicalIDBetween(ArrayList value) { this.IN_LogicalIDBetween = value; return this; } public ArrayList getInLogicalIDIn() { return IN_LogicalIDIn; } public IN_OrderLevelsQuery setInLogicalIDIn(ArrayList value) { this.IN_LogicalIDIn = value; return this; } public BigDecimal getSafetyMinQuantity1() { return SafetyMinQuantity1; } public IN_OrderLevelsQuery setSafetyMinQuantity1(BigDecimal value) { this.SafetyMinQuantity1 = value; return this; } public BigDecimal getSafetyMinQuantity1GreaterThanOrEqualTo() { return SafetyMinQuantity1GreaterThanOrEqualTo; } public IN_OrderLevelsQuery setSafetyMinQuantity1GreaterThanOrEqualTo(BigDecimal value) { this.SafetyMinQuantity1GreaterThanOrEqualTo = value; return this; } public BigDecimal getSafetyMinQuantity1GreaterThan() { return SafetyMinQuantity1GreaterThan; } public IN_OrderLevelsQuery setSafetyMinQuantity1GreaterThan(BigDecimal value) { this.SafetyMinQuantity1GreaterThan = value; return this; } public BigDecimal getSafetyMinQuantity1LessThan() { return SafetyMinQuantity1LessThan; } public IN_OrderLevelsQuery setSafetyMinQuantity1LessThan(BigDecimal value) { this.SafetyMinQuantity1LessThan = value; return this; } public BigDecimal getSafetyMinQuantity1LessThanOrEqualTo() { return SafetyMinQuantity1LessThanOrEqualTo; } public IN_OrderLevelsQuery setSafetyMinQuantity1LessThanOrEqualTo(BigDecimal value) { this.SafetyMinQuantity1LessThanOrEqualTo = value; return this; } public BigDecimal getSafetyMinQuantity1NotEqualTo() { return SafetyMinQuantity1NotEqualTo; } public IN_OrderLevelsQuery setSafetyMinQuantity1NotEqualTo(BigDecimal value) { this.SafetyMinQuantity1NotEqualTo = value; return this; } public ArrayList getSafetyMinQuantity1Between() { return SafetyMinQuantity1Between; } public IN_OrderLevelsQuery setSafetyMinQuantity1Between(ArrayList value) { this.SafetyMinQuantity1Between = value; return this; } public ArrayList getSafetyMinQuantity1In() { return SafetyMinQuantity1In; } public IN_OrderLevelsQuery setSafetyMinQuantity1In(ArrayList value) { this.SafetyMinQuantity1In = value; return this; } public BigDecimal getSafetyMinQuantity2() { return SafetyMinQuantity2; } public IN_OrderLevelsQuery setSafetyMinQuantity2(BigDecimal value) { this.SafetyMinQuantity2 = value; return this; } public BigDecimal getSafetyMinQuantity2GreaterThanOrEqualTo() { return SafetyMinQuantity2GreaterThanOrEqualTo; } public IN_OrderLevelsQuery setSafetyMinQuantity2GreaterThanOrEqualTo(BigDecimal value) { this.SafetyMinQuantity2GreaterThanOrEqualTo = value; return this; } public BigDecimal getSafetyMinQuantity2GreaterThan() { return SafetyMinQuantity2GreaterThan; } public IN_OrderLevelsQuery setSafetyMinQuantity2GreaterThan(BigDecimal value) { this.SafetyMinQuantity2GreaterThan = value; return this; } public BigDecimal getSafetyMinQuantity2LessThan() { return SafetyMinQuantity2LessThan; } public IN_OrderLevelsQuery setSafetyMinQuantity2LessThan(BigDecimal value) { this.SafetyMinQuantity2LessThan = value; return this; } public BigDecimal getSafetyMinQuantity2LessThanOrEqualTo() { return SafetyMinQuantity2LessThanOrEqualTo; } public IN_OrderLevelsQuery setSafetyMinQuantity2LessThanOrEqualTo(BigDecimal value) { this.SafetyMinQuantity2LessThanOrEqualTo = value; return this; } public BigDecimal getSafetyMinQuantity2NotEqualTo() { return SafetyMinQuantity2NotEqualTo; } public IN_OrderLevelsQuery setSafetyMinQuantity2NotEqualTo(BigDecimal value) { this.SafetyMinQuantity2NotEqualTo = value; return this; } public ArrayList getSafetyMinQuantity2Between() { return SafetyMinQuantity2Between; } public IN_OrderLevelsQuery setSafetyMinQuantity2Between(ArrayList value) { this.SafetyMinQuantity2Between = value; return this; } public ArrayList getSafetyMinQuantity2In() { return SafetyMinQuantity2In; } public IN_OrderLevelsQuery setSafetyMinQuantity2In(ArrayList value) { this.SafetyMinQuantity2In = value; return this; } public BigDecimal getSafetyMinQuantity3() { return SafetyMinQuantity3; } public IN_OrderLevelsQuery setSafetyMinQuantity3(BigDecimal value) { this.SafetyMinQuantity3 = value; return this; } public BigDecimal getSafetyMinQuantity3GreaterThanOrEqualTo() { return SafetyMinQuantity3GreaterThanOrEqualTo; } public IN_OrderLevelsQuery setSafetyMinQuantity3GreaterThanOrEqualTo(BigDecimal value) { this.SafetyMinQuantity3GreaterThanOrEqualTo = value; return this; } public BigDecimal getSafetyMinQuantity3GreaterThan() { return SafetyMinQuantity3GreaterThan; } public IN_OrderLevelsQuery setSafetyMinQuantity3GreaterThan(BigDecimal value) { this.SafetyMinQuantity3GreaterThan = value; return this; } public BigDecimal getSafetyMinQuantity3LessThan() { return SafetyMinQuantity3LessThan; } public IN_OrderLevelsQuery setSafetyMinQuantity3LessThan(BigDecimal value) { this.SafetyMinQuantity3LessThan = value; return this; } public BigDecimal getSafetyMinQuantity3LessThanOrEqualTo() { return SafetyMinQuantity3LessThanOrEqualTo; } public IN_OrderLevelsQuery setSafetyMinQuantity3LessThanOrEqualTo(BigDecimal value) { this.SafetyMinQuantity3LessThanOrEqualTo = value; return this; } public BigDecimal getSafetyMinQuantity3NotEqualTo() { return SafetyMinQuantity3NotEqualTo; } public IN_OrderLevelsQuery setSafetyMinQuantity3NotEqualTo(BigDecimal value) { this.SafetyMinQuantity3NotEqualTo = value; return this; } public ArrayList getSafetyMinQuantity3Between() { return SafetyMinQuantity3Between; } public IN_OrderLevelsQuery setSafetyMinQuantity3Between(ArrayList value) { this.SafetyMinQuantity3Between = value; return this; } public ArrayList getSafetyMinQuantity3In() { return SafetyMinQuantity3In; } public IN_OrderLevelsQuery setSafetyMinQuantity3In(ArrayList value) { this.SafetyMinQuantity3In = value; return this; } public BigDecimal getSafetyMinQuantity4() { return SafetyMinQuantity4; } public IN_OrderLevelsQuery setSafetyMinQuantity4(BigDecimal value) { this.SafetyMinQuantity4 = value; return this; } public BigDecimal getSafetyMinQuantity4GreaterThanOrEqualTo() { return SafetyMinQuantity4GreaterThanOrEqualTo; } public IN_OrderLevelsQuery setSafetyMinQuantity4GreaterThanOrEqualTo(BigDecimal value) { this.SafetyMinQuantity4GreaterThanOrEqualTo = value; return this; } public BigDecimal getSafetyMinQuantity4GreaterThan() { return SafetyMinQuantity4GreaterThan; } public IN_OrderLevelsQuery setSafetyMinQuantity4GreaterThan(BigDecimal value) { this.SafetyMinQuantity4GreaterThan = value; return this; } public BigDecimal getSafetyMinQuantity4LessThan() { return SafetyMinQuantity4LessThan; } public IN_OrderLevelsQuery setSafetyMinQuantity4LessThan(BigDecimal value) { this.SafetyMinQuantity4LessThan = value; return this; } public BigDecimal getSafetyMinQuantity4LessThanOrEqualTo() { return SafetyMinQuantity4LessThanOrEqualTo; } public IN_OrderLevelsQuery setSafetyMinQuantity4LessThanOrEqualTo(BigDecimal value) { this.SafetyMinQuantity4LessThanOrEqualTo = value; return this; } public BigDecimal getSafetyMinQuantity4NotEqualTo() { return SafetyMinQuantity4NotEqualTo; } public IN_OrderLevelsQuery setSafetyMinQuantity4NotEqualTo(BigDecimal value) { this.SafetyMinQuantity4NotEqualTo = value; return this; } public ArrayList getSafetyMinQuantity4Between() { return SafetyMinQuantity4Between; } public IN_OrderLevelsQuery setSafetyMinQuantity4Between(ArrayList value) { this.SafetyMinQuantity4Between = value; return this; } public ArrayList getSafetyMinQuantity4In() { return SafetyMinQuantity4In; } public IN_OrderLevelsQuery setSafetyMinQuantity4In(ArrayList value) { this.SafetyMinQuantity4In = value; return this; } public BigDecimal getSafetyMinQuantity5() { return SafetyMinQuantity5; } public IN_OrderLevelsQuery setSafetyMinQuantity5(BigDecimal value) { this.SafetyMinQuantity5 = value; return this; } public BigDecimal getSafetyMinQuantity5GreaterThanOrEqualTo() { return SafetyMinQuantity5GreaterThanOrEqualTo; } public IN_OrderLevelsQuery setSafetyMinQuantity5GreaterThanOrEqualTo(BigDecimal value) { this.SafetyMinQuantity5GreaterThanOrEqualTo = value; return this; } public BigDecimal getSafetyMinQuantity5GreaterThan() { return SafetyMinQuantity5GreaterThan; } public IN_OrderLevelsQuery setSafetyMinQuantity5GreaterThan(BigDecimal value) { this.SafetyMinQuantity5GreaterThan = value; return this; } public BigDecimal getSafetyMinQuantity5LessThan() { return SafetyMinQuantity5LessThan; } public IN_OrderLevelsQuery setSafetyMinQuantity5LessThan(BigDecimal value) { this.SafetyMinQuantity5LessThan = value; return this; } public BigDecimal getSafetyMinQuantity5LessThanOrEqualTo() { return SafetyMinQuantity5LessThanOrEqualTo; } public IN_OrderLevelsQuery setSafetyMinQuantity5LessThanOrEqualTo(BigDecimal value) { this.SafetyMinQuantity5LessThanOrEqualTo = value; return this; } public BigDecimal getSafetyMinQuantity5NotEqualTo() { return SafetyMinQuantity5NotEqualTo; } public IN_OrderLevelsQuery setSafetyMinQuantity5NotEqualTo(BigDecimal value) { this.SafetyMinQuantity5NotEqualTo = value; return this; } public ArrayList getSafetyMinQuantity5Between() { return SafetyMinQuantity5Between; } public IN_OrderLevelsQuery setSafetyMinQuantity5Between(ArrayList value) { this.SafetyMinQuantity5Between = value; return this; } public ArrayList getSafetyMinQuantity5In() { return SafetyMinQuantity5In; } public IN_OrderLevelsQuery setSafetyMinQuantity5In(ArrayList value) { this.SafetyMinQuantity5In = value; return this; } public BigDecimal getSafetyMinQuantity6() { return SafetyMinQuantity6; } public IN_OrderLevelsQuery setSafetyMinQuantity6(BigDecimal value) { this.SafetyMinQuantity6 = value; return this; } public BigDecimal getSafetyMinQuantity6GreaterThanOrEqualTo() { return SafetyMinQuantity6GreaterThanOrEqualTo; } public IN_OrderLevelsQuery setSafetyMinQuantity6GreaterThanOrEqualTo(BigDecimal value) { this.SafetyMinQuantity6GreaterThanOrEqualTo = value; return this; } public BigDecimal getSafetyMinQuantity6GreaterThan() { return SafetyMinQuantity6GreaterThan; } public IN_OrderLevelsQuery setSafetyMinQuantity6GreaterThan(BigDecimal value) { this.SafetyMinQuantity6GreaterThan = value; return this; } public BigDecimal getSafetyMinQuantity6LessThan() { return SafetyMinQuantity6LessThan; } public IN_OrderLevelsQuery setSafetyMinQuantity6LessThan(BigDecimal value) { this.SafetyMinQuantity6LessThan = value; return this; } public BigDecimal getSafetyMinQuantity6LessThanOrEqualTo() { return SafetyMinQuantity6LessThanOrEqualTo; } public IN_OrderLevelsQuery setSafetyMinQuantity6LessThanOrEqualTo(BigDecimal value) { this.SafetyMinQuantity6LessThanOrEqualTo = value; return this; } public BigDecimal getSafetyMinQuantity6NotEqualTo() { return SafetyMinQuantity6NotEqualTo; } public IN_OrderLevelsQuery setSafetyMinQuantity6NotEqualTo(BigDecimal value) { this.SafetyMinQuantity6NotEqualTo = value; return this; } public ArrayList getSafetyMinQuantity6Between() { return SafetyMinQuantity6Between; } public IN_OrderLevelsQuery setSafetyMinQuantity6Between(ArrayList value) { this.SafetyMinQuantity6Between = value; return this; } public ArrayList getSafetyMinQuantity6In() { return SafetyMinQuantity6In; } public IN_OrderLevelsQuery setSafetyMinQuantity6In(ArrayList value) { this.SafetyMinQuantity6In = value; return this; } public BigDecimal getSafetyMinQuantity7() { return SafetyMinQuantity7; } public IN_OrderLevelsQuery setSafetyMinQuantity7(BigDecimal value) { this.SafetyMinQuantity7 = value; return this; } public BigDecimal getSafetyMinQuantity7GreaterThanOrEqualTo() { return SafetyMinQuantity7GreaterThanOrEqualTo; } public IN_OrderLevelsQuery setSafetyMinQuantity7GreaterThanOrEqualTo(BigDecimal value) { this.SafetyMinQuantity7GreaterThanOrEqualTo = value; return this; } public BigDecimal getSafetyMinQuantity7GreaterThan() { return SafetyMinQuantity7GreaterThan; } public IN_OrderLevelsQuery setSafetyMinQuantity7GreaterThan(BigDecimal value) { this.SafetyMinQuantity7GreaterThan = value; return this; } public BigDecimal getSafetyMinQuantity7LessThan() { return SafetyMinQuantity7LessThan; } public IN_OrderLevelsQuery setSafetyMinQuantity7LessThan(BigDecimal value) { this.SafetyMinQuantity7LessThan = value; return this; } public BigDecimal getSafetyMinQuantity7LessThanOrEqualTo() { return SafetyMinQuantity7LessThanOrEqualTo; } public IN_OrderLevelsQuery setSafetyMinQuantity7LessThanOrEqualTo(BigDecimal value) { this.SafetyMinQuantity7LessThanOrEqualTo = value; return this; } public BigDecimal getSafetyMinQuantity7NotEqualTo() { return SafetyMinQuantity7NotEqualTo; } public IN_OrderLevelsQuery setSafetyMinQuantity7NotEqualTo(BigDecimal value) { this.SafetyMinQuantity7NotEqualTo = value; return this; } public ArrayList getSafetyMinQuantity7Between() { return SafetyMinQuantity7Between; } public IN_OrderLevelsQuery setSafetyMinQuantity7Between(ArrayList value) { this.SafetyMinQuantity7Between = value; return this; } public ArrayList getSafetyMinQuantity7In() { return SafetyMinQuantity7In; } public IN_OrderLevelsQuery setSafetyMinQuantity7In(ArrayList value) { this.SafetyMinQuantity7In = value; return this; } public BigDecimal getSafetyMinQuantity8() { return SafetyMinQuantity8; } public IN_OrderLevelsQuery setSafetyMinQuantity8(BigDecimal value) { this.SafetyMinQuantity8 = value; return this; } public BigDecimal getSafetyMinQuantity8GreaterThanOrEqualTo() { return SafetyMinQuantity8GreaterThanOrEqualTo; } public IN_OrderLevelsQuery setSafetyMinQuantity8GreaterThanOrEqualTo(BigDecimal value) { this.SafetyMinQuantity8GreaterThanOrEqualTo = value; return this; } public BigDecimal getSafetyMinQuantity8GreaterThan() { return SafetyMinQuantity8GreaterThan; } public IN_OrderLevelsQuery setSafetyMinQuantity8GreaterThan(BigDecimal value) { this.SafetyMinQuantity8GreaterThan = value; return this; } public BigDecimal getSafetyMinQuantity8LessThan() { return SafetyMinQuantity8LessThan; } public IN_OrderLevelsQuery setSafetyMinQuantity8LessThan(BigDecimal value) { this.SafetyMinQuantity8LessThan = value; return this; } public BigDecimal getSafetyMinQuantity8LessThanOrEqualTo() { return SafetyMinQuantity8LessThanOrEqualTo; } public IN_OrderLevelsQuery setSafetyMinQuantity8LessThanOrEqualTo(BigDecimal value) { this.SafetyMinQuantity8LessThanOrEqualTo = value; return this; } public BigDecimal getSafetyMinQuantity8NotEqualTo() { return SafetyMinQuantity8NotEqualTo; } public IN_OrderLevelsQuery setSafetyMinQuantity8NotEqualTo(BigDecimal value) { this.SafetyMinQuantity8NotEqualTo = value; return this; } public ArrayList getSafetyMinQuantity8Between() { return SafetyMinQuantity8Between; } public IN_OrderLevelsQuery setSafetyMinQuantity8Between(ArrayList value) { this.SafetyMinQuantity8Between = value; return this; } public ArrayList getSafetyMinQuantity8In() { return SafetyMinQuantity8In; } public IN_OrderLevelsQuery setSafetyMinQuantity8In(ArrayList value) { this.SafetyMinQuantity8In = value; return this; } public BigDecimal getSafetyMinQuantity9() { return SafetyMinQuantity9; } public IN_OrderLevelsQuery setSafetyMinQuantity9(BigDecimal value) { this.SafetyMinQuantity9 = value; return this; } public BigDecimal getSafetyMinQuantity9GreaterThanOrEqualTo() { return SafetyMinQuantity9GreaterThanOrEqualTo; } public IN_OrderLevelsQuery setSafetyMinQuantity9GreaterThanOrEqualTo(BigDecimal value) { this.SafetyMinQuantity9GreaterThanOrEqualTo = value; return this; } public BigDecimal getSafetyMinQuantity9GreaterThan() { return SafetyMinQuantity9GreaterThan; } public IN_OrderLevelsQuery setSafetyMinQuantity9GreaterThan(BigDecimal value) { this.SafetyMinQuantity9GreaterThan = value; return this; } public BigDecimal getSafetyMinQuantity9LessThan() { return SafetyMinQuantity9LessThan; } public IN_OrderLevelsQuery setSafetyMinQuantity9LessThan(BigDecimal value) { this.SafetyMinQuantity9LessThan = value; return this; } public BigDecimal getSafetyMinQuantity9LessThanOrEqualTo() { return SafetyMinQuantity9LessThanOrEqualTo; } public IN_OrderLevelsQuery setSafetyMinQuantity9LessThanOrEqualTo(BigDecimal value) { this.SafetyMinQuantity9LessThanOrEqualTo = value; return this; } public BigDecimal getSafetyMinQuantity9NotEqualTo() { return SafetyMinQuantity9NotEqualTo; } public IN_OrderLevelsQuery setSafetyMinQuantity9NotEqualTo(BigDecimal value) { this.SafetyMinQuantity9NotEqualTo = value; return this; } public ArrayList getSafetyMinQuantity9Between() { return SafetyMinQuantity9Between; } public IN_OrderLevelsQuery setSafetyMinQuantity9Between(ArrayList value) { this.SafetyMinQuantity9Between = value; return this; } public ArrayList getSafetyMinQuantity9In() { return SafetyMinQuantity9In; } public IN_OrderLevelsQuery setSafetyMinQuantity9In(ArrayList value) { this.SafetyMinQuantity9In = value; return this; } public BigDecimal getSafetyMinQuantity10() { return SafetyMinQuantity10; } public IN_OrderLevelsQuery setSafetyMinQuantity10(BigDecimal value) { this.SafetyMinQuantity10 = value; return this; } public BigDecimal getSafetyMinQuantity10GreaterThanOrEqualTo() { return SafetyMinQuantity10GreaterThanOrEqualTo; } public IN_OrderLevelsQuery setSafetyMinQuantity10GreaterThanOrEqualTo(BigDecimal value) { this.SafetyMinQuantity10GreaterThanOrEqualTo = value; return this; } public BigDecimal getSafetyMinQuantity10GreaterThan() { return SafetyMinQuantity10GreaterThan; } public IN_OrderLevelsQuery setSafetyMinQuantity10GreaterThan(BigDecimal value) { this.SafetyMinQuantity10GreaterThan = value; return this; } public BigDecimal getSafetyMinQuantity10LessThan() { return SafetyMinQuantity10LessThan; } public IN_OrderLevelsQuery setSafetyMinQuantity10LessThan(BigDecimal value) { this.SafetyMinQuantity10LessThan = value; return this; } public BigDecimal getSafetyMinQuantity10LessThanOrEqualTo() { return SafetyMinQuantity10LessThanOrEqualTo; } public IN_OrderLevelsQuery setSafetyMinQuantity10LessThanOrEqualTo(BigDecimal value) { this.SafetyMinQuantity10LessThanOrEqualTo = value; return this; } public BigDecimal getSafetyMinQuantity10NotEqualTo() { return SafetyMinQuantity10NotEqualTo; } public IN_OrderLevelsQuery setSafetyMinQuantity10NotEqualTo(BigDecimal value) { this.SafetyMinQuantity10NotEqualTo = value; return this; } public ArrayList getSafetyMinQuantity10Between() { return SafetyMinQuantity10Between; } public IN_OrderLevelsQuery setSafetyMinQuantity10Between(ArrayList value) { this.SafetyMinQuantity10Between = value; return this; } public ArrayList getSafetyMinQuantity10In() { return SafetyMinQuantity10In; } public IN_OrderLevelsQuery setSafetyMinQuantity10In(ArrayList value) { this.SafetyMinQuantity10In = value; return this; } public BigDecimal getSafetyMinQuantity11() { return SafetyMinQuantity11; } public IN_OrderLevelsQuery setSafetyMinQuantity11(BigDecimal value) { this.SafetyMinQuantity11 = value; return this; } public BigDecimal getSafetyMinQuantity11GreaterThanOrEqualTo() { return SafetyMinQuantity11GreaterThanOrEqualTo; } public IN_OrderLevelsQuery setSafetyMinQuantity11GreaterThanOrEqualTo(BigDecimal value) { this.SafetyMinQuantity11GreaterThanOrEqualTo = value; return this; } public BigDecimal getSafetyMinQuantity11GreaterThan() { return SafetyMinQuantity11GreaterThan; } public IN_OrderLevelsQuery setSafetyMinQuantity11GreaterThan(BigDecimal value) { this.SafetyMinQuantity11GreaterThan = value; return this; } public BigDecimal getSafetyMinQuantity11LessThan() { return SafetyMinQuantity11LessThan; } public IN_OrderLevelsQuery setSafetyMinQuantity11LessThan(BigDecimal value) { this.SafetyMinQuantity11LessThan = value; return this; } public BigDecimal getSafetyMinQuantity11LessThanOrEqualTo() { return SafetyMinQuantity11LessThanOrEqualTo; } public IN_OrderLevelsQuery setSafetyMinQuantity11LessThanOrEqualTo(BigDecimal value) { this.SafetyMinQuantity11LessThanOrEqualTo = value; return this; } public BigDecimal getSafetyMinQuantity11NotEqualTo() { return SafetyMinQuantity11NotEqualTo; } public IN_OrderLevelsQuery setSafetyMinQuantity11NotEqualTo(BigDecimal value) { this.SafetyMinQuantity11NotEqualTo = value; return this; } public ArrayList getSafetyMinQuantity11Between() { return SafetyMinQuantity11Between; } public IN_OrderLevelsQuery setSafetyMinQuantity11Between(ArrayList value) { this.SafetyMinQuantity11Between = value; return this; } public ArrayList getSafetyMinQuantity11In() { return SafetyMinQuantity11In; } public IN_OrderLevelsQuery setSafetyMinQuantity11In(ArrayList value) { this.SafetyMinQuantity11In = value; return this; } public BigDecimal getSafetyMinQuantity12() { return SafetyMinQuantity12; } public IN_OrderLevelsQuery setSafetyMinQuantity12(BigDecimal value) { this.SafetyMinQuantity12 = value; return this; } public BigDecimal getSafetyMinQuantity12GreaterThanOrEqualTo() { return SafetyMinQuantity12GreaterThanOrEqualTo; } public IN_OrderLevelsQuery setSafetyMinQuantity12GreaterThanOrEqualTo(BigDecimal value) { this.SafetyMinQuantity12GreaterThanOrEqualTo = value; return this; } public BigDecimal getSafetyMinQuantity12GreaterThan() { return SafetyMinQuantity12GreaterThan; } public IN_OrderLevelsQuery setSafetyMinQuantity12GreaterThan(BigDecimal value) { this.SafetyMinQuantity12GreaterThan = value; return this; } public BigDecimal getSafetyMinQuantity12LessThan() { return SafetyMinQuantity12LessThan; } public IN_OrderLevelsQuery setSafetyMinQuantity12LessThan(BigDecimal value) { this.SafetyMinQuantity12LessThan = value; return this; } public BigDecimal getSafetyMinQuantity12LessThanOrEqualTo() { return SafetyMinQuantity12LessThanOrEqualTo; } public IN_OrderLevelsQuery setSafetyMinQuantity12LessThanOrEqualTo(BigDecimal value) { this.SafetyMinQuantity12LessThanOrEqualTo = value; return this; } public BigDecimal getSafetyMinQuantity12NotEqualTo() { return SafetyMinQuantity12NotEqualTo; } public IN_OrderLevelsQuery setSafetyMinQuantity12NotEqualTo(BigDecimal value) { this.SafetyMinQuantity12NotEqualTo = value; return this; } public ArrayList getSafetyMinQuantity12Between() { return SafetyMinQuantity12Between; } public IN_OrderLevelsQuery setSafetyMinQuantity12Between(ArrayList value) { this.SafetyMinQuantity12Between = value; return this; } public ArrayList getSafetyMinQuantity12In() { return SafetyMinQuantity12In; } public IN_OrderLevelsQuery setSafetyMinQuantity12In(ArrayList value) { this.SafetyMinQuantity12In = value; return this; } public BigDecimal getSafetyMaxQuantity1() { return SafetyMaxQuantity1; } public IN_OrderLevelsQuery setSafetyMaxQuantity1(BigDecimal value) { this.SafetyMaxQuantity1 = value; return this; } public BigDecimal getSafetyMaxQuantity1GreaterThanOrEqualTo() { return SafetyMaxQuantity1GreaterThanOrEqualTo; } public IN_OrderLevelsQuery setSafetyMaxQuantity1GreaterThanOrEqualTo(BigDecimal value) { this.SafetyMaxQuantity1GreaterThanOrEqualTo = value; return this; } public BigDecimal getSafetyMaxQuantity1GreaterThan() { return SafetyMaxQuantity1GreaterThan; } public IN_OrderLevelsQuery setSafetyMaxQuantity1GreaterThan(BigDecimal value) { this.SafetyMaxQuantity1GreaterThan = value; return this; } public BigDecimal getSafetyMaxQuantity1LessThan() { return SafetyMaxQuantity1LessThan; } public IN_OrderLevelsQuery setSafetyMaxQuantity1LessThan(BigDecimal value) { this.SafetyMaxQuantity1LessThan = value; return this; } public BigDecimal getSafetyMaxQuantity1LessThanOrEqualTo() { return SafetyMaxQuantity1LessThanOrEqualTo; } public IN_OrderLevelsQuery setSafetyMaxQuantity1LessThanOrEqualTo(BigDecimal value) { this.SafetyMaxQuantity1LessThanOrEqualTo = value; return this; } public BigDecimal getSafetyMaxQuantity1NotEqualTo() { return SafetyMaxQuantity1NotEqualTo; } public IN_OrderLevelsQuery setSafetyMaxQuantity1NotEqualTo(BigDecimal value) { this.SafetyMaxQuantity1NotEqualTo = value; return this; } public ArrayList getSafetyMaxQuantity1Between() { return SafetyMaxQuantity1Between; } public IN_OrderLevelsQuery setSafetyMaxQuantity1Between(ArrayList value) { this.SafetyMaxQuantity1Between = value; return this; } public ArrayList getSafetyMaxQuantity1In() { return SafetyMaxQuantity1In; } public IN_OrderLevelsQuery setSafetyMaxQuantity1In(ArrayList value) { this.SafetyMaxQuantity1In = value; return this; } public BigDecimal getSafetyMaxQuantity2() { return SafetyMaxQuantity2; } public IN_OrderLevelsQuery setSafetyMaxQuantity2(BigDecimal value) { this.SafetyMaxQuantity2 = value; return this; } public BigDecimal getSafetyMaxQuantity2GreaterThanOrEqualTo() { return SafetyMaxQuantity2GreaterThanOrEqualTo; } public IN_OrderLevelsQuery setSafetyMaxQuantity2GreaterThanOrEqualTo(BigDecimal value) { this.SafetyMaxQuantity2GreaterThanOrEqualTo = value; return this; } public BigDecimal getSafetyMaxQuantity2GreaterThan() { return SafetyMaxQuantity2GreaterThan; } public IN_OrderLevelsQuery setSafetyMaxQuantity2GreaterThan(BigDecimal value) { this.SafetyMaxQuantity2GreaterThan = value; return this; } public BigDecimal getSafetyMaxQuantity2LessThan() { return SafetyMaxQuantity2LessThan; } public IN_OrderLevelsQuery setSafetyMaxQuantity2LessThan(BigDecimal value) { this.SafetyMaxQuantity2LessThan = value; return this; } public BigDecimal getSafetyMaxQuantity2LessThanOrEqualTo() { return SafetyMaxQuantity2LessThanOrEqualTo; } public IN_OrderLevelsQuery setSafetyMaxQuantity2LessThanOrEqualTo(BigDecimal value) { this.SafetyMaxQuantity2LessThanOrEqualTo = value; return this; } public BigDecimal getSafetyMaxQuantity2NotEqualTo() { return SafetyMaxQuantity2NotEqualTo; } public IN_OrderLevelsQuery setSafetyMaxQuantity2NotEqualTo(BigDecimal value) { this.SafetyMaxQuantity2NotEqualTo = value; return this; } public ArrayList getSafetyMaxQuantity2Between() { return SafetyMaxQuantity2Between; } public IN_OrderLevelsQuery setSafetyMaxQuantity2Between(ArrayList value) { this.SafetyMaxQuantity2Between = value; return this; } public ArrayList getSafetyMaxQuantity2In() { return SafetyMaxQuantity2In; } public IN_OrderLevelsQuery setSafetyMaxQuantity2In(ArrayList value) { this.SafetyMaxQuantity2In = value; return this; } public BigDecimal getSafetyMaxQuantity3() { return SafetyMaxQuantity3; } public IN_OrderLevelsQuery setSafetyMaxQuantity3(BigDecimal value) { this.SafetyMaxQuantity3 = value; return this; } public BigDecimal getSafetyMaxQuantity3GreaterThanOrEqualTo() { return SafetyMaxQuantity3GreaterThanOrEqualTo; } public IN_OrderLevelsQuery setSafetyMaxQuantity3GreaterThanOrEqualTo(BigDecimal value) { this.SafetyMaxQuantity3GreaterThanOrEqualTo = value; return this; } public BigDecimal getSafetyMaxQuantity3GreaterThan() { return SafetyMaxQuantity3GreaterThan; } public IN_OrderLevelsQuery setSafetyMaxQuantity3GreaterThan(BigDecimal value) { this.SafetyMaxQuantity3GreaterThan = value; return this; } public BigDecimal getSafetyMaxQuantity3LessThan() { return SafetyMaxQuantity3LessThan; } public IN_OrderLevelsQuery setSafetyMaxQuantity3LessThan(BigDecimal value) { this.SafetyMaxQuantity3LessThan = value; return this; } public BigDecimal getSafetyMaxQuantity3LessThanOrEqualTo() { return SafetyMaxQuantity3LessThanOrEqualTo; } public IN_OrderLevelsQuery setSafetyMaxQuantity3LessThanOrEqualTo(BigDecimal value) { this.SafetyMaxQuantity3LessThanOrEqualTo = value; return this; } public BigDecimal getSafetyMaxQuantity3NotEqualTo() { return SafetyMaxQuantity3NotEqualTo; } public IN_OrderLevelsQuery setSafetyMaxQuantity3NotEqualTo(BigDecimal value) { this.SafetyMaxQuantity3NotEqualTo = value; return this; } public ArrayList getSafetyMaxQuantity3Between() { return SafetyMaxQuantity3Between; } public IN_OrderLevelsQuery setSafetyMaxQuantity3Between(ArrayList value) { this.SafetyMaxQuantity3Between = value; return this; } public ArrayList getSafetyMaxQuantity3In() { return SafetyMaxQuantity3In; } public IN_OrderLevelsQuery setSafetyMaxQuantity3In(ArrayList value) { this.SafetyMaxQuantity3In = value; return this; } public BigDecimal getSafetyMaxQuantity4() { return SafetyMaxQuantity4; } public IN_OrderLevelsQuery setSafetyMaxQuantity4(BigDecimal value) { this.SafetyMaxQuantity4 = value; return this; } public BigDecimal getSafetyMaxQuantity4GreaterThanOrEqualTo() { return SafetyMaxQuantity4GreaterThanOrEqualTo; } public IN_OrderLevelsQuery setSafetyMaxQuantity4GreaterThanOrEqualTo(BigDecimal value) { this.SafetyMaxQuantity4GreaterThanOrEqualTo = value; return this; } public BigDecimal getSafetyMaxQuantity4GreaterThan() { return SafetyMaxQuantity4GreaterThan; } public IN_OrderLevelsQuery setSafetyMaxQuantity4GreaterThan(BigDecimal value) { this.SafetyMaxQuantity4GreaterThan = value; return this; } public BigDecimal getSafetyMaxQuantity4LessThan() { return SafetyMaxQuantity4LessThan; } public IN_OrderLevelsQuery setSafetyMaxQuantity4LessThan(BigDecimal value) { this.SafetyMaxQuantity4LessThan = value; return this; } public BigDecimal getSafetyMaxQuantity4LessThanOrEqualTo() { return SafetyMaxQuantity4LessThanOrEqualTo; } public IN_OrderLevelsQuery setSafetyMaxQuantity4LessThanOrEqualTo(BigDecimal value) { this.SafetyMaxQuantity4LessThanOrEqualTo = value; return this; } public BigDecimal getSafetyMaxQuantity4NotEqualTo() { return SafetyMaxQuantity4NotEqualTo; } public IN_OrderLevelsQuery setSafetyMaxQuantity4NotEqualTo(BigDecimal value) { this.SafetyMaxQuantity4NotEqualTo = value; return this; } public ArrayList getSafetyMaxQuantity4Between() { return SafetyMaxQuantity4Between; } public IN_OrderLevelsQuery setSafetyMaxQuantity4Between(ArrayList value) { this.SafetyMaxQuantity4Between = value; return this; } public ArrayList getSafetyMaxQuantity4In() { return SafetyMaxQuantity4In; } public IN_OrderLevelsQuery setSafetyMaxQuantity4In(ArrayList value) { this.SafetyMaxQuantity4In = value; return this; } public BigDecimal getSafetyMaxQuantity5() { return SafetyMaxQuantity5; } public IN_OrderLevelsQuery setSafetyMaxQuantity5(BigDecimal value) { this.SafetyMaxQuantity5 = value; return this; } public BigDecimal getSafetyMaxQuantity5GreaterThanOrEqualTo() { return SafetyMaxQuantity5GreaterThanOrEqualTo; } public IN_OrderLevelsQuery setSafetyMaxQuantity5GreaterThanOrEqualTo(BigDecimal value) { this.SafetyMaxQuantity5GreaterThanOrEqualTo = value; return this; } public BigDecimal getSafetyMaxQuantity5GreaterThan() { return SafetyMaxQuantity5GreaterThan; } public IN_OrderLevelsQuery setSafetyMaxQuantity5GreaterThan(BigDecimal value) { this.SafetyMaxQuantity5GreaterThan = value; return this; } public BigDecimal getSafetyMaxQuantity5LessThan() { return SafetyMaxQuantity5LessThan; } public IN_OrderLevelsQuery setSafetyMaxQuantity5LessThan(BigDecimal value) { this.SafetyMaxQuantity5LessThan = value; return this; } public BigDecimal getSafetyMaxQuantity5LessThanOrEqualTo() { return SafetyMaxQuantity5LessThanOrEqualTo; } public IN_OrderLevelsQuery setSafetyMaxQuantity5LessThanOrEqualTo(BigDecimal value) { this.SafetyMaxQuantity5LessThanOrEqualTo = value; return this; } public BigDecimal getSafetyMaxQuantity5NotEqualTo() { return SafetyMaxQuantity5NotEqualTo; } public IN_OrderLevelsQuery setSafetyMaxQuantity5NotEqualTo(BigDecimal value) { this.SafetyMaxQuantity5NotEqualTo = value; return this; } public ArrayList getSafetyMaxQuantity5Between() { return SafetyMaxQuantity5Between; } public IN_OrderLevelsQuery setSafetyMaxQuantity5Between(ArrayList value) { this.SafetyMaxQuantity5Between = value; return this; } public ArrayList getSafetyMaxQuantity5In() { return SafetyMaxQuantity5In; } public IN_OrderLevelsQuery setSafetyMaxQuantity5In(ArrayList value) { this.SafetyMaxQuantity5In = value; return this; } public BigDecimal getSafetyMaxQuantity6() { return SafetyMaxQuantity6; } public IN_OrderLevelsQuery setSafetyMaxQuantity6(BigDecimal value) { this.SafetyMaxQuantity6 = value; return this; } public BigDecimal getSafetyMaxQuantity6GreaterThanOrEqualTo() { return SafetyMaxQuantity6GreaterThanOrEqualTo; } public IN_OrderLevelsQuery setSafetyMaxQuantity6GreaterThanOrEqualTo(BigDecimal value) { this.SafetyMaxQuantity6GreaterThanOrEqualTo = value; return this; } public BigDecimal getSafetyMaxQuantity6GreaterThan() { return SafetyMaxQuantity6GreaterThan; } public IN_OrderLevelsQuery setSafetyMaxQuantity6GreaterThan(BigDecimal value) { this.SafetyMaxQuantity6GreaterThan = value; return this; } public BigDecimal getSafetyMaxQuantity6LessThan() { return SafetyMaxQuantity6LessThan; } public IN_OrderLevelsQuery setSafetyMaxQuantity6LessThan(BigDecimal value) { this.SafetyMaxQuantity6LessThan = value; return this; } public BigDecimal getSafetyMaxQuantity6LessThanOrEqualTo() { return SafetyMaxQuantity6LessThanOrEqualTo; } public IN_OrderLevelsQuery setSafetyMaxQuantity6LessThanOrEqualTo(BigDecimal value) { this.SafetyMaxQuantity6LessThanOrEqualTo = value; return this; } public BigDecimal getSafetyMaxQuantity6NotEqualTo() { return SafetyMaxQuantity6NotEqualTo; } public IN_OrderLevelsQuery setSafetyMaxQuantity6NotEqualTo(BigDecimal value) { this.SafetyMaxQuantity6NotEqualTo = value; return this; } public ArrayList getSafetyMaxQuantity6Between() { return SafetyMaxQuantity6Between; } public IN_OrderLevelsQuery setSafetyMaxQuantity6Between(ArrayList value) { this.SafetyMaxQuantity6Between = value; return this; } public ArrayList getSafetyMaxQuantity6In() { return SafetyMaxQuantity6In; } public IN_OrderLevelsQuery setSafetyMaxQuantity6In(ArrayList value) { this.SafetyMaxQuantity6In = value; return this; } public BigDecimal getSafetyMaxQuantity7() { return SafetyMaxQuantity7; } public IN_OrderLevelsQuery setSafetyMaxQuantity7(BigDecimal value) { this.SafetyMaxQuantity7 = value; return this; } public BigDecimal getSafetyMaxQuantity7GreaterThanOrEqualTo() { return SafetyMaxQuantity7GreaterThanOrEqualTo; } public IN_OrderLevelsQuery setSafetyMaxQuantity7GreaterThanOrEqualTo(BigDecimal value) { this.SafetyMaxQuantity7GreaterThanOrEqualTo = value; return this; } public BigDecimal getSafetyMaxQuantity7GreaterThan() { return SafetyMaxQuantity7GreaterThan; } public IN_OrderLevelsQuery setSafetyMaxQuantity7GreaterThan(BigDecimal value) { this.SafetyMaxQuantity7GreaterThan = value; return this; } public BigDecimal getSafetyMaxQuantity7LessThan() { return SafetyMaxQuantity7LessThan; } public IN_OrderLevelsQuery setSafetyMaxQuantity7LessThan(BigDecimal value) { this.SafetyMaxQuantity7LessThan = value; return this; } public BigDecimal getSafetyMaxQuantity7LessThanOrEqualTo() { return SafetyMaxQuantity7LessThanOrEqualTo; } public IN_OrderLevelsQuery setSafetyMaxQuantity7LessThanOrEqualTo(BigDecimal value) { this.SafetyMaxQuantity7LessThanOrEqualTo = value; return this; } public BigDecimal getSafetyMaxQuantity7NotEqualTo() { return SafetyMaxQuantity7NotEqualTo; } public IN_OrderLevelsQuery setSafetyMaxQuantity7NotEqualTo(BigDecimal value) { this.SafetyMaxQuantity7NotEqualTo = value; return this; } public ArrayList getSafetyMaxQuantity7Between() { return SafetyMaxQuantity7Between; } public IN_OrderLevelsQuery setSafetyMaxQuantity7Between(ArrayList value) { this.SafetyMaxQuantity7Between = value; return this; } public ArrayList getSafetyMaxQuantity7In() { return SafetyMaxQuantity7In; } public IN_OrderLevelsQuery setSafetyMaxQuantity7In(ArrayList value) { this.SafetyMaxQuantity7In = value; return this; } public BigDecimal getSafetyMaxQuantity8() { return SafetyMaxQuantity8; } public IN_OrderLevelsQuery setSafetyMaxQuantity8(BigDecimal value) { this.SafetyMaxQuantity8 = value; return this; } public BigDecimal getSafetyMaxQuantity8GreaterThanOrEqualTo() { return SafetyMaxQuantity8GreaterThanOrEqualTo; } public IN_OrderLevelsQuery setSafetyMaxQuantity8GreaterThanOrEqualTo(BigDecimal value) { this.SafetyMaxQuantity8GreaterThanOrEqualTo = value; return this; } public BigDecimal getSafetyMaxQuantity8GreaterThan() { return SafetyMaxQuantity8GreaterThan; } public IN_OrderLevelsQuery setSafetyMaxQuantity8GreaterThan(BigDecimal value) { this.SafetyMaxQuantity8GreaterThan = value; return this; } public BigDecimal getSafetyMaxQuantity8LessThan() { return SafetyMaxQuantity8LessThan; } public IN_OrderLevelsQuery setSafetyMaxQuantity8LessThan(BigDecimal value) { this.SafetyMaxQuantity8LessThan = value; return this; } public BigDecimal getSafetyMaxQuantity8LessThanOrEqualTo() { return SafetyMaxQuantity8LessThanOrEqualTo; } public IN_OrderLevelsQuery setSafetyMaxQuantity8LessThanOrEqualTo(BigDecimal value) { this.SafetyMaxQuantity8LessThanOrEqualTo = value; return this; } public BigDecimal getSafetyMaxQuantity8NotEqualTo() { return SafetyMaxQuantity8NotEqualTo; } public IN_OrderLevelsQuery setSafetyMaxQuantity8NotEqualTo(BigDecimal value) { this.SafetyMaxQuantity8NotEqualTo = value; return this; } public ArrayList getSafetyMaxQuantity8Between() { return SafetyMaxQuantity8Between; } public IN_OrderLevelsQuery setSafetyMaxQuantity8Between(ArrayList value) { this.SafetyMaxQuantity8Between = value; return this; } public ArrayList getSafetyMaxQuantity8In() { return SafetyMaxQuantity8In; } public IN_OrderLevelsQuery setSafetyMaxQuantity8In(ArrayList value) { this.SafetyMaxQuantity8In = value; return this; } public BigDecimal getSafetyMaxQuantity9() { return SafetyMaxQuantity9; } public IN_OrderLevelsQuery setSafetyMaxQuantity9(BigDecimal value) { this.SafetyMaxQuantity9 = value; return this; } public BigDecimal getSafetyMaxQuantity9GreaterThanOrEqualTo() { return SafetyMaxQuantity9GreaterThanOrEqualTo; } public IN_OrderLevelsQuery setSafetyMaxQuantity9GreaterThanOrEqualTo(BigDecimal value) { this.SafetyMaxQuantity9GreaterThanOrEqualTo = value; return this; } public BigDecimal getSafetyMaxQuantity9GreaterThan() { return SafetyMaxQuantity9GreaterThan; } public IN_OrderLevelsQuery setSafetyMaxQuantity9GreaterThan(BigDecimal value) { this.SafetyMaxQuantity9GreaterThan = value; return this; } public BigDecimal getSafetyMaxQuantity9LessThan() { return SafetyMaxQuantity9LessThan; } public IN_OrderLevelsQuery setSafetyMaxQuantity9LessThan(BigDecimal value) { this.SafetyMaxQuantity9LessThan = value; return this; } public BigDecimal getSafetyMaxQuantity9LessThanOrEqualTo() { return SafetyMaxQuantity9LessThanOrEqualTo; } public IN_OrderLevelsQuery setSafetyMaxQuantity9LessThanOrEqualTo(BigDecimal value) { this.SafetyMaxQuantity9LessThanOrEqualTo = value; return this; } public BigDecimal getSafetyMaxQuantity9NotEqualTo() { return SafetyMaxQuantity9NotEqualTo; } public IN_OrderLevelsQuery setSafetyMaxQuantity9NotEqualTo(BigDecimal value) { this.SafetyMaxQuantity9NotEqualTo = value; return this; } public ArrayList getSafetyMaxQuantity9Between() { return SafetyMaxQuantity9Between; } public IN_OrderLevelsQuery setSafetyMaxQuantity9Between(ArrayList value) { this.SafetyMaxQuantity9Between = value; return this; } public ArrayList getSafetyMaxQuantity9In() { return SafetyMaxQuantity9In; } public IN_OrderLevelsQuery setSafetyMaxQuantity9In(ArrayList value) { this.SafetyMaxQuantity9In = value; return this; } public BigDecimal getSafetyMaxQuantity10() { return SafetyMaxQuantity10; } public IN_OrderLevelsQuery setSafetyMaxQuantity10(BigDecimal value) { this.SafetyMaxQuantity10 = value; return this; } public BigDecimal getSafetyMaxQuantity10GreaterThanOrEqualTo() { return SafetyMaxQuantity10GreaterThanOrEqualTo; } public IN_OrderLevelsQuery setSafetyMaxQuantity10GreaterThanOrEqualTo(BigDecimal value) { this.SafetyMaxQuantity10GreaterThanOrEqualTo = value; return this; } public BigDecimal getSafetyMaxQuantity10GreaterThan() { return SafetyMaxQuantity10GreaterThan; } public IN_OrderLevelsQuery setSafetyMaxQuantity10GreaterThan(BigDecimal value) { this.SafetyMaxQuantity10GreaterThan = value; return this; } public BigDecimal getSafetyMaxQuantity10LessThan() { return SafetyMaxQuantity10LessThan; } public IN_OrderLevelsQuery setSafetyMaxQuantity10LessThan(BigDecimal value) { this.SafetyMaxQuantity10LessThan = value; return this; } public BigDecimal getSafetyMaxQuantity10LessThanOrEqualTo() { return SafetyMaxQuantity10LessThanOrEqualTo; } public IN_OrderLevelsQuery setSafetyMaxQuantity10LessThanOrEqualTo(BigDecimal value) { this.SafetyMaxQuantity10LessThanOrEqualTo = value; return this; } public BigDecimal getSafetyMaxQuantity10NotEqualTo() { return SafetyMaxQuantity10NotEqualTo; } public IN_OrderLevelsQuery setSafetyMaxQuantity10NotEqualTo(BigDecimal value) { this.SafetyMaxQuantity10NotEqualTo = value; return this; } public ArrayList getSafetyMaxQuantity10Between() { return SafetyMaxQuantity10Between; } public IN_OrderLevelsQuery setSafetyMaxQuantity10Between(ArrayList value) { this.SafetyMaxQuantity10Between = value; return this; } public ArrayList getSafetyMaxQuantity10In() { return SafetyMaxQuantity10In; } public IN_OrderLevelsQuery setSafetyMaxQuantity10In(ArrayList value) { this.SafetyMaxQuantity10In = value; return this; } public BigDecimal getSafetyMaxQuantity11() { return SafetyMaxQuantity11; } public IN_OrderLevelsQuery setSafetyMaxQuantity11(BigDecimal value) { this.SafetyMaxQuantity11 = value; return this; } public BigDecimal getSafetyMaxQuantity11GreaterThanOrEqualTo() { return SafetyMaxQuantity11GreaterThanOrEqualTo; } public IN_OrderLevelsQuery setSafetyMaxQuantity11GreaterThanOrEqualTo(BigDecimal value) { this.SafetyMaxQuantity11GreaterThanOrEqualTo = value; return this; } public BigDecimal getSafetyMaxQuantity11GreaterThan() { return SafetyMaxQuantity11GreaterThan; } public IN_OrderLevelsQuery setSafetyMaxQuantity11GreaterThan(BigDecimal value) { this.SafetyMaxQuantity11GreaterThan = value; return this; } public BigDecimal getSafetyMaxQuantity11LessThan() { return SafetyMaxQuantity11LessThan; } public IN_OrderLevelsQuery setSafetyMaxQuantity11LessThan(BigDecimal value) { this.SafetyMaxQuantity11LessThan = value; return this; } public BigDecimal getSafetyMaxQuantity11LessThanOrEqualTo() { return SafetyMaxQuantity11LessThanOrEqualTo; } public IN_OrderLevelsQuery setSafetyMaxQuantity11LessThanOrEqualTo(BigDecimal value) { this.SafetyMaxQuantity11LessThanOrEqualTo = value; return this; } public BigDecimal getSafetyMaxQuantity11NotEqualTo() { return SafetyMaxQuantity11NotEqualTo; } public IN_OrderLevelsQuery setSafetyMaxQuantity11NotEqualTo(BigDecimal value) { this.SafetyMaxQuantity11NotEqualTo = value; return this; } public ArrayList getSafetyMaxQuantity11Between() { return SafetyMaxQuantity11Between; } public IN_OrderLevelsQuery setSafetyMaxQuantity11Between(ArrayList value) { this.SafetyMaxQuantity11Between = value; return this; } public ArrayList getSafetyMaxQuantity11In() { return SafetyMaxQuantity11In; } public IN_OrderLevelsQuery setSafetyMaxQuantity11In(ArrayList value) { this.SafetyMaxQuantity11In = value; return this; } public BigDecimal getSafetyMaxQuantity12() { return SafetyMaxQuantity12; } public IN_OrderLevelsQuery setSafetyMaxQuantity12(BigDecimal value) { this.SafetyMaxQuantity12 = value; return this; } public BigDecimal getSafetyMaxQuantity12GreaterThanOrEqualTo() { return SafetyMaxQuantity12GreaterThanOrEqualTo; } public IN_OrderLevelsQuery setSafetyMaxQuantity12GreaterThanOrEqualTo(BigDecimal value) { this.SafetyMaxQuantity12GreaterThanOrEqualTo = value; return this; } public BigDecimal getSafetyMaxQuantity12GreaterThan() { return SafetyMaxQuantity12GreaterThan; } public IN_OrderLevelsQuery setSafetyMaxQuantity12GreaterThan(BigDecimal value) { this.SafetyMaxQuantity12GreaterThan = value; return this; } public BigDecimal getSafetyMaxQuantity12LessThan() { return SafetyMaxQuantity12LessThan; } public IN_OrderLevelsQuery setSafetyMaxQuantity12LessThan(BigDecimal value) { this.SafetyMaxQuantity12LessThan = value; return this; } public BigDecimal getSafetyMaxQuantity12LessThanOrEqualTo() { return SafetyMaxQuantity12LessThanOrEqualTo; } public IN_OrderLevelsQuery setSafetyMaxQuantity12LessThanOrEqualTo(BigDecimal value) { this.SafetyMaxQuantity12LessThanOrEqualTo = value; return this; } public BigDecimal getSafetyMaxQuantity12NotEqualTo() { return SafetyMaxQuantity12NotEqualTo; } public IN_OrderLevelsQuery setSafetyMaxQuantity12NotEqualTo(BigDecimal value) { this.SafetyMaxQuantity12NotEqualTo = value; return this; } public ArrayList getSafetyMaxQuantity12Between() { return SafetyMaxQuantity12Between; } public IN_OrderLevelsQuery setSafetyMaxQuantity12Between(ArrayList value) { this.SafetyMaxQuantity12Between = value; return this; } public ArrayList getSafetyMaxQuantity12In() { return SafetyMaxQuantity12In; } public IN_OrderLevelsQuery setSafetyMaxQuantity12In(ArrayList value) { this.SafetyMaxQuantity12In = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @Route(Path="/Queries/IN_Physical", Verbs="GET") @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class IN_PhysicalQuery extends QueryDb implements IReturn> { public String IN_PhysicalID = null; public String IN_PhysicalIDStartsWith = null; public String IN_PhysicalIDEndsWith = null; public String IN_PhysicalIDContains = null; public String IN_PhysicalIDLike = null; public ArrayList IN_PhysicalIDBetween = null; public ArrayList IN_PhysicalIDIn = null; public Date LastSavedDateTime = null; public Date LastSavedDateTimeGreaterThanOrEqualTo = null; public Date LastSavedDateTimeGreaterThan = null; public Date LastSavedDateTimeLessThan = null; public Date LastSavedDateTimeLessThanOrEqualTo = null; public Date LastSavedDateTimeNotEqualTo = null; public ArrayList LastSavedDateTimeBetween = null; public ArrayList LastSavedDateTimeIn = null; public String Description = null; public String DescriptionStartsWith = null; public String DescriptionEndsWith = null; public String DescriptionContains = null; public String DescriptionLike = null; public ArrayList DescriptionBetween = null; public ArrayList DescriptionIn = null; public String Address1 = null; public String Address1StartsWith = null; public String Address1EndsWith = null; public String Address1Contains = null; public String Address1Like = null; public ArrayList Address1Between = null; public ArrayList Address1In = null; public String Address2 = null; public String Address2StartsWith = null; public String Address2EndsWith = null; public String Address2Contains = null; public String Address2Like = null; public ArrayList Address2Between = null; public ArrayList Address2In = null; public String Address3 = null; public String Address3StartsWith = null; public String Address3EndsWith = null; public String Address3Contains = null; public String Address3Like = null; public ArrayList Address3Between = null; public ArrayList Address3In = null; public String Address4 = null; public String Address4StartsWith = null; public String Address4EndsWith = null; public String Address4Contains = null; public String Address4Like = null; public ArrayList Address4Between = null; public ArrayList Address4In = null; public String PostCode = null; public String PostCodeStartsWith = null; public String PostCodeEndsWith = null; public String PostCodeContains = null; public String PostCodeLike = null; public ArrayList PostCodeBetween = null; public ArrayList PostCodeIn = null; public String Phone = null; public String PhoneStartsWith = null; public String PhoneEndsWith = null; public String PhoneContains = null; public String PhoneLike = null; public ArrayList PhoneBetween = null; public ArrayList PhoneIn = null; public String Fax = null; public String FaxStartsWith = null; public String FaxEndsWith = null; public String FaxContains = null; public String FaxLike = null; public ArrayList FaxBetween = null; public ArrayList FaxIn = null; public String RefComment = null; public String RefCommentStartsWith = null; public String RefCommentEndsWith = null; public String RefCommentContains = null; public String RefCommentLike = null; public ArrayList RefCommentBetween = null; public ArrayList RefCommentIn = null; public String getInPhysicalID() { return IN_PhysicalID; } public IN_PhysicalQuery setInPhysicalID(String value) { this.IN_PhysicalID = value; return this; } public String getInPhysicalIDStartsWith() { return IN_PhysicalIDStartsWith; } public IN_PhysicalQuery setInPhysicalIDStartsWith(String value) { this.IN_PhysicalIDStartsWith = value; return this; } public String getInPhysicalIDEndsWith() { return IN_PhysicalIDEndsWith; } public IN_PhysicalQuery setInPhysicalIDEndsWith(String value) { this.IN_PhysicalIDEndsWith = value; return this; } public String getInPhysicalIDContains() { return IN_PhysicalIDContains; } public IN_PhysicalQuery setInPhysicalIDContains(String value) { this.IN_PhysicalIDContains = value; return this; } public String getInPhysicalIDLike() { return IN_PhysicalIDLike; } public IN_PhysicalQuery setInPhysicalIDLike(String value) { this.IN_PhysicalIDLike = value; return this; } public ArrayList getInPhysicalIDBetween() { return IN_PhysicalIDBetween; } public IN_PhysicalQuery setInPhysicalIDBetween(ArrayList value) { this.IN_PhysicalIDBetween = value; return this; } public ArrayList getInPhysicalIDIn() { return IN_PhysicalIDIn; } public IN_PhysicalQuery setInPhysicalIDIn(ArrayList value) { this.IN_PhysicalIDIn = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public IN_PhysicalQuery setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getLastSavedDateTimeGreaterThanOrEqualTo() { return LastSavedDateTimeGreaterThanOrEqualTo; } public IN_PhysicalQuery setLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.LastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeGreaterThan() { return LastSavedDateTimeGreaterThan; } public IN_PhysicalQuery setLastSavedDateTimeGreaterThan(Date value) { this.LastSavedDateTimeGreaterThan = value; return this; } public Date getLastSavedDateTimeLessThan() { return LastSavedDateTimeLessThan; } public IN_PhysicalQuery setLastSavedDateTimeLessThan(Date value) { this.LastSavedDateTimeLessThan = value; return this; } public Date getLastSavedDateTimeLessThanOrEqualTo() { return LastSavedDateTimeLessThanOrEqualTo; } public IN_PhysicalQuery setLastSavedDateTimeLessThanOrEqualTo(Date value) { this.LastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeNotEqualTo() { return LastSavedDateTimeNotEqualTo; } public IN_PhysicalQuery setLastSavedDateTimeNotEqualTo(Date value) { this.LastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getLastSavedDateTimeBetween() { return LastSavedDateTimeBetween; } public IN_PhysicalQuery setLastSavedDateTimeBetween(ArrayList value) { this.LastSavedDateTimeBetween = value; return this; } public ArrayList getLastSavedDateTimeIn() { return LastSavedDateTimeIn; } public IN_PhysicalQuery setLastSavedDateTimeIn(ArrayList value) { this.LastSavedDateTimeIn = value; return this; } public String getDescription() { return Description; } public IN_PhysicalQuery setDescription(String value) { this.Description = value; return this; } public String getDescriptionStartsWith() { return DescriptionStartsWith; } public IN_PhysicalQuery setDescriptionStartsWith(String value) { this.DescriptionStartsWith = value; return this; } public String getDescriptionEndsWith() { return DescriptionEndsWith; } public IN_PhysicalQuery setDescriptionEndsWith(String value) { this.DescriptionEndsWith = value; return this; } public String getDescriptionContains() { return DescriptionContains; } public IN_PhysicalQuery setDescriptionContains(String value) { this.DescriptionContains = value; return this; } public String getDescriptionLike() { return DescriptionLike; } public IN_PhysicalQuery setDescriptionLike(String value) { this.DescriptionLike = value; return this; } public ArrayList getDescriptionBetween() { return DescriptionBetween; } public IN_PhysicalQuery setDescriptionBetween(ArrayList value) { this.DescriptionBetween = value; return this; } public ArrayList getDescriptionIn() { return DescriptionIn; } public IN_PhysicalQuery setDescriptionIn(ArrayList value) { this.DescriptionIn = value; return this; } public String getAddress1() { return Address1; } public IN_PhysicalQuery setAddress1(String value) { this.Address1 = value; return this; } public String getAddress1StartsWith() { return Address1StartsWith; } public IN_PhysicalQuery setAddress1StartsWith(String value) { this.Address1StartsWith = value; return this; } public String getAddress1EndsWith() { return Address1EndsWith; } public IN_PhysicalQuery setAddress1EndsWith(String value) { this.Address1EndsWith = value; return this; } public String getAddress1Contains() { return Address1Contains; } public IN_PhysicalQuery setAddress1Contains(String value) { this.Address1Contains = value; return this; } public String getAddress1Like() { return Address1Like; } public IN_PhysicalQuery setAddress1Like(String value) { this.Address1Like = value; return this; } public ArrayList getAddress1Between() { return Address1Between; } public IN_PhysicalQuery setAddress1Between(ArrayList value) { this.Address1Between = value; return this; } public ArrayList getAddress1In() { return Address1In; } public IN_PhysicalQuery setAddress1In(ArrayList value) { this.Address1In = value; return this; } public String getAddress2() { return Address2; } public IN_PhysicalQuery setAddress2(String value) { this.Address2 = value; return this; } public String getAddress2StartsWith() { return Address2StartsWith; } public IN_PhysicalQuery setAddress2StartsWith(String value) { this.Address2StartsWith = value; return this; } public String getAddress2EndsWith() { return Address2EndsWith; } public IN_PhysicalQuery setAddress2EndsWith(String value) { this.Address2EndsWith = value; return this; } public String getAddress2Contains() { return Address2Contains; } public IN_PhysicalQuery setAddress2Contains(String value) { this.Address2Contains = value; return this; } public String getAddress2Like() { return Address2Like; } public IN_PhysicalQuery setAddress2Like(String value) { this.Address2Like = value; return this; } public ArrayList getAddress2Between() { return Address2Between; } public IN_PhysicalQuery setAddress2Between(ArrayList value) { this.Address2Between = value; return this; } public ArrayList getAddress2In() { return Address2In; } public IN_PhysicalQuery setAddress2In(ArrayList value) { this.Address2In = value; return this; } public String getAddress3() { return Address3; } public IN_PhysicalQuery setAddress3(String value) { this.Address3 = value; return this; } public String getAddress3StartsWith() { return Address3StartsWith; } public IN_PhysicalQuery setAddress3StartsWith(String value) { this.Address3StartsWith = value; return this; } public String getAddress3EndsWith() { return Address3EndsWith; } public IN_PhysicalQuery setAddress3EndsWith(String value) { this.Address3EndsWith = value; return this; } public String getAddress3Contains() { return Address3Contains; } public IN_PhysicalQuery setAddress3Contains(String value) { this.Address3Contains = value; return this; } public String getAddress3Like() { return Address3Like; } public IN_PhysicalQuery setAddress3Like(String value) { this.Address3Like = value; return this; } public ArrayList getAddress3Between() { return Address3Between; } public IN_PhysicalQuery setAddress3Between(ArrayList value) { this.Address3Between = value; return this; } public ArrayList getAddress3In() { return Address3In; } public IN_PhysicalQuery setAddress3In(ArrayList value) { this.Address3In = value; return this; } public String getAddress4() { return Address4; } public IN_PhysicalQuery setAddress4(String value) { this.Address4 = value; return this; } public String getAddress4StartsWith() { return Address4StartsWith; } public IN_PhysicalQuery setAddress4StartsWith(String value) { this.Address4StartsWith = value; return this; } public String getAddress4EndsWith() { return Address4EndsWith; } public IN_PhysicalQuery setAddress4EndsWith(String value) { this.Address4EndsWith = value; return this; } public String getAddress4Contains() { return Address4Contains; } public IN_PhysicalQuery setAddress4Contains(String value) { this.Address4Contains = value; return this; } public String getAddress4Like() { return Address4Like; } public IN_PhysicalQuery setAddress4Like(String value) { this.Address4Like = value; return this; } public ArrayList getAddress4Between() { return Address4Between; } public IN_PhysicalQuery setAddress4Between(ArrayList value) { this.Address4Between = value; return this; } public ArrayList getAddress4In() { return Address4In; } public IN_PhysicalQuery setAddress4In(ArrayList value) { this.Address4In = value; return this; } public String getPostCode() { return PostCode; } public IN_PhysicalQuery setPostCode(String value) { this.PostCode = value; return this; } public String getPostCodeStartsWith() { return PostCodeStartsWith; } public IN_PhysicalQuery setPostCodeStartsWith(String value) { this.PostCodeStartsWith = value; return this; } public String getPostCodeEndsWith() { return PostCodeEndsWith; } public IN_PhysicalQuery setPostCodeEndsWith(String value) { this.PostCodeEndsWith = value; return this; } public String getPostCodeContains() { return PostCodeContains; } public IN_PhysicalQuery setPostCodeContains(String value) { this.PostCodeContains = value; return this; } public String getPostCodeLike() { return PostCodeLike; } public IN_PhysicalQuery setPostCodeLike(String value) { this.PostCodeLike = value; return this; } public ArrayList getPostCodeBetween() { return PostCodeBetween; } public IN_PhysicalQuery setPostCodeBetween(ArrayList value) { this.PostCodeBetween = value; return this; } public ArrayList getPostCodeIn() { return PostCodeIn; } public IN_PhysicalQuery setPostCodeIn(ArrayList value) { this.PostCodeIn = value; return this; } public String getPhone() { return Phone; } public IN_PhysicalQuery setPhone(String value) { this.Phone = value; return this; } public String getPhoneStartsWith() { return PhoneStartsWith; } public IN_PhysicalQuery setPhoneStartsWith(String value) { this.PhoneStartsWith = value; return this; } public String getPhoneEndsWith() { return PhoneEndsWith; } public IN_PhysicalQuery setPhoneEndsWith(String value) { this.PhoneEndsWith = value; return this; } public String getPhoneContains() { return PhoneContains; } public IN_PhysicalQuery setPhoneContains(String value) { this.PhoneContains = value; return this; } public String getPhoneLike() { return PhoneLike; } public IN_PhysicalQuery setPhoneLike(String value) { this.PhoneLike = value; return this; } public ArrayList getPhoneBetween() { return PhoneBetween; } public IN_PhysicalQuery setPhoneBetween(ArrayList value) { this.PhoneBetween = value; return this; } public ArrayList getPhoneIn() { return PhoneIn; } public IN_PhysicalQuery setPhoneIn(ArrayList value) { this.PhoneIn = value; return this; } public String getFax() { return Fax; } public IN_PhysicalQuery setFax(String value) { this.Fax = value; return this; } public String getFaxStartsWith() { return FaxStartsWith; } public IN_PhysicalQuery setFaxStartsWith(String value) { this.FaxStartsWith = value; return this; } public String getFaxEndsWith() { return FaxEndsWith; } public IN_PhysicalQuery setFaxEndsWith(String value) { this.FaxEndsWith = value; return this; } public String getFaxContains() { return FaxContains; } public IN_PhysicalQuery setFaxContains(String value) { this.FaxContains = value; return this; } public String getFaxLike() { return FaxLike; } public IN_PhysicalQuery setFaxLike(String value) { this.FaxLike = value; return this; } public ArrayList getFaxBetween() { return FaxBetween; } public IN_PhysicalQuery setFaxBetween(ArrayList value) { this.FaxBetween = value; return this; } public ArrayList getFaxIn() { return FaxIn; } public IN_PhysicalQuery setFaxIn(ArrayList value) { this.FaxIn = value; return this; } public String getRefComment() { return RefComment; } public IN_PhysicalQuery setRefComment(String value) { this.RefComment = value; return this; } public String getRefCommentStartsWith() { return RefCommentStartsWith; } public IN_PhysicalQuery setRefCommentStartsWith(String value) { this.RefCommentStartsWith = value; return this; } public String getRefCommentEndsWith() { return RefCommentEndsWith; } public IN_PhysicalQuery setRefCommentEndsWith(String value) { this.RefCommentEndsWith = value; return this; } public String getRefCommentContains() { return RefCommentContains; } public IN_PhysicalQuery setRefCommentContains(String value) { this.RefCommentContains = value; return this; } public String getRefCommentLike() { return RefCommentLike; } public IN_PhysicalQuery setRefCommentLike(String value) { this.RefCommentLike = value; return this; } public ArrayList getRefCommentBetween() { return RefCommentBetween; } public IN_PhysicalQuery setRefCommentBetween(ArrayList value) { this.RefCommentBetween = value; return this; } public ArrayList getRefCommentIn() { return RefCommentIn; } public IN_PhysicalQuery setRefCommentIn(ArrayList value) { this.RefCommentIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class IN_PhysicalWarehouseCustomSettingQuery extends QueryDb implements IReturn> { public String SettingID = null; public String SettingIDStartsWith = null; public String SettingIDEndsWith = null; public String SettingIDContains = null; public String SettingIDLike = null; public ArrayList SettingIDBetween = null; public ArrayList SettingIDIn = null; public Date LastSavedDateTime = null; public Date LastSavedDateTimeGreaterThanOrEqualTo = null; public Date LastSavedDateTimeGreaterThan = null; public Date LastSavedDateTimeLessThan = null; public Date LastSavedDateTimeLessThanOrEqualTo = null; public Date LastSavedDateTimeNotEqualTo = null; public ArrayList LastSavedDateTimeBetween = null; public ArrayList LastSavedDateTimeIn = null; public String SettingDescription = null; public String SettingDescriptionStartsWith = null; public String SettingDescriptionEndsWith = null; public String SettingDescriptionContains = null; public String SettingDescriptionLike = null; public ArrayList SettingDescriptionBetween = null; public ArrayList SettingDescriptionIn = null; public String SettingName = null; public String SettingNameStartsWith = null; public String SettingNameEndsWith = null; public String SettingNameContains = null; public String SettingNameLike = null; public ArrayList SettingNameBetween = null; public ArrayList SettingNameIn = null; public Integer DisplayOrder = null; public Integer DisplayOrderGreaterThanOrEqualTo = null; public Integer DisplayOrderGreaterThan = null; public Integer DisplayOrderLessThan = null; public Integer DisplayOrderLessThanOrEqualTo = null; public Integer DisplayOrderNotEqualTo = null; public ArrayList DisplayOrderBetween = null; public ArrayList DisplayOrderIn = null; public Short CellType = null; public Short CellTypeGreaterThanOrEqualTo = null; public Short CellTypeGreaterThan = null; public Short CellTypeLessThan = null; public Short CellTypeLessThanOrEqualTo = null; public Short CellTypeNotEqualTo = null; public ArrayList CellTypeBetween = null; public ArrayList CellTypeIn = null; public String ScriptFormatCell = null; public String ScriptFormatCellStartsWith = null; public String ScriptFormatCellEndsWith = null; public String ScriptFormatCellContains = null; public String ScriptFormatCellLike = null; public ArrayList ScriptFormatCellBetween = null; public ArrayList ScriptFormatCellIn = null; public String ScriptButtonClicked = null; public String ScriptButtonClickedStartsWith = null; public String ScriptButtonClickedEndsWith = null; public String ScriptButtonClickedContains = null; public String ScriptButtonClickedLike = null; public ArrayList ScriptButtonClickedBetween = null; public ArrayList ScriptButtonClickedIn = null; public String ScriptReadData = null; public String ScriptReadDataStartsWith = null; public String ScriptReadDataEndsWith = null; public String ScriptReadDataContains = null; public String ScriptReadDataLike = null; public ArrayList ScriptReadDataBetween = null; public ArrayList ScriptReadDataIn = null; public String GridHandlerCode = null; public String GridHandlerCodeStartsWith = null; public String GridHandlerCodeEndsWith = null; public String GridHandlerCodeContains = null; public String GridHandlerCodeLike = null; public ArrayList GridHandlerCodeBetween = null; public ArrayList GridHandlerCodeIn = null; public UUID SY_Plugin_RecID = null; public ArrayList SY_Plugin_RecIDIn = null; public String getSettingID() { return SettingID; } public IN_PhysicalWarehouseCustomSettingQuery setSettingID(String value) { this.SettingID = value; return this; } public String getSettingIDStartsWith() { return SettingIDStartsWith; } public IN_PhysicalWarehouseCustomSettingQuery setSettingIDStartsWith(String value) { this.SettingIDStartsWith = value; return this; } public String getSettingIDEndsWith() { return SettingIDEndsWith; } public IN_PhysicalWarehouseCustomSettingQuery setSettingIDEndsWith(String value) { this.SettingIDEndsWith = value; return this; } public String getSettingIDContains() { return SettingIDContains; } public IN_PhysicalWarehouseCustomSettingQuery setSettingIDContains(String value) { this.SettingIDContains = value; return this; } public String getSettingIDLike() { return SettingIDLike; } public IN_PhysicalWarehouseCustomSettingQuery setSettingIDLike(String value) { this.SettingIDLike = value; return this; } public ArrayList getSettingIDBetween() { return SettingIDBetween; } public IN_PhysicalWarehouseCustomSettingQuery setSettingIDBetween(ArrayList value) { this.SettingIDBetween = value; return this; } public ArrayList getSettingIDIn() { return SettingIDIn; } public IN_PhysicalWarehouseCustomSettingQuery setSettingIDIn(ArrayList value) { this.SettingIDIn = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public IN_PhysicalWarehouseCustomSettingQuery setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getLastSavedDateTimeGreaterThanOrEqualTo() { return LastSavedDateTimeGreaterThanOrEqualTo; } public IN_PhysicalWarehouseCustomSettingQuery setLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.LastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeGreaterThan() { return LastSavedDateTimeGreaterThan; } public IN_PhysicalWarehouseCustomSettingQuery setLastSavedDateTimeGreaterThan(Date value) { this.LastSavedDateTimeGreaterThan = value; return this; } public Date getLastSavedDateTimeLessThan() { return LastSavedDateTimeLessThan; } public IN_PhysicalWarehouseCustomSettingQuery setLastSavedDateTimeLessThan(Date value) { this.LastSavedDateTimeLessThan = value; return this; } public Date getLastSavedDateTimeLessThanOrEqualTo() { return LastSavedDateTimeLessThanOrEqualTo; } public IN_PhysicalWarehouseCustomSettingQuery setLastSavedDateTimeLessThanOrEqualTo(Date value) { this.LastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeNotEqualTo() { return LastSavedDateTimeNotEqualTo; } public IN_PhysicalWarehouseCustomSettingQuery setLastSavedDateTimeNotEqualTo(Date value) { this.LastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getLastSavedDateTimeBetween() { return LastSavedDateTimeBetween; } public IN_PhysicalWarehouseCustomSettingQuery setLastSavedDateTimeBetween(ArrayList value) { this.LastSavedDateTimeBetween = value; return this; } public ArrayList getLastSavedDateTimeIn() { return LastSavedDateTimeIn; } public IN_PhysicalWarehouseCustomSettingQuery setLastSavedDateTimeIn(ArrayList value) { this.LastSavedDateTimeIn = value; return this; } public String getSettingDescription() { return SettingDescription; } public IN_PhysicalWarehouseCustomSettingQuery setSettingDescription(String value) { this.SettingDescription = value; return this; } public String getSettingDescriptionStartsWith() { return SettingDescriptionStartsWith; } public IN_PhysicalWarehouseCustomSettingQuery setSettingDescriptionStartsWith(String value) { this.SettingDescriptionStartsWith = value; return this; } public String getSettingDescriptionEndsWith() { return SettingDescriptionEndsWith; } public IN_PhysicalWarehouseCustomSettingQuery setSettingDescriptionEndsWith(String value) { this.SettingDescriptionEndsWith = value; return this; } public String getSettingDescriptionContains() { return SettingDescriptionContains; } public IN_PhysicalWarehouseCustomSettingQuery setSettingDescriptionContains(String value) { this.SettingDescriptionContains = value; return this; } public String getSettingDescriptionLike() { return SettingDescriptionLike; } public IN_PhysicalWarehouseCustomSettingQuery setSettingDescriptionLike(String value) { this.SettingDescriptionLike = value; return this; } public ArrayList getSettingDescriptionBetween() { return SettingDescriptionBetween; } public IN_PhysicalWarehouseCustomSettingQuery setSettingDescriptionBetween(ArrayList value) { this.SettingDescriptionBetween = value; return this; } public ArrayList getSettingDescriptionIn() { return SettingDescriptionIn; } public IN_PhysicalWarehouseCustomSettingQuery setSettingDescriptionIn(ArrayList value) { this.SettingDescriptionIn = value; return this; } public String getSettingName() { return SettingName; } public IN_PhysicalWarehouseCustomSettingQuery setSettingName(String value) { this.SettingName = value; return this; } public String getSettingNameStartsWith() { return SettingNameStartsWith; } public IN_PhysicalWarehouseCustomSettingQuery setSettingNameStartsWith(String value) { this.SettingNameStartsWith = value; return this; } public String getSettingNameEndsWith() { return SettingNameEndsWith; } public IN_PhysicalWarehouseCustomSettingQuery setSettingNameEndsWith(String value) { this.SettingNameEndsWith = value; return this; } public String getSettingNameContains() { return SettingNameContains; } public IN_PhysicalWarehouseCustomSettingQuery setSettingNameContains(String value) { this.SettingNameContains = value; return this; } public String getSettingNameLike() { return SettingNameLike; } public IN_PhysicalWarehouseCustomSettingQuery setSettingNameLike(String value) { this.SettingNameLike = value; return this; } public ArrayList getSettingNameBetween() { return SettingNameBetween; } public IN_PhysicalWarehouseCustomSettingQuery setSettingNameBetween(ArrayList value) { this.SettingNameBetween = value; return this; } public ArrayList getSettingNameIn() { return SettingNameIn; } public IN_PhysicalWarehouseCustomSettingQuery setSettingNameIn(ArrayList value) { this.SettingNameIn = value; return this; } public Integer getDisplayOrder() { return DisplayOrder; } public IN_PhysicalWarehouseCustomSettingQuery setDisplayOrder(Integer value) { this.DisplayOrder = value; return this; } public Integer getDisplayOrderGreaterThanOrEqualTo() { return DisplayOrderGreaterThanOrEqualTo; } public IN_PhysicalWarehouseCustomSettingQuery setDisplayOrderGreaterThanOrEqualTo(Integer value) { this.DisplayOrderGreaterThanOrEqualTo = value; return this; } public Integer getDisplayOrderGreaterThan() { return DisplayOrderGreaterThan; } public IN_PhysicalWarehouseCustomSettingQuery setDisplayOrderGreaterThan(Integer value) { this.DisplayOrderGreaterThan = value; return this; } public Integer getDisplayOrderLessThan() { return DisplayOrderLessThan; } public IN_PhysicalWarehouseCustomSettingQuery setDisplayOrderLessThan(Integer value) { this.DisplayOrderLessThan = value; return this; } public Integer getDisplayOrderLessThanOrEqualTo() { return DisplayOrderLessThanOrEqualTo; } public IN_PhysicalWarehouseCustomSettingQuery setDisplayOrderLessThanOrEqualTo(Integer value) { this.DisplayOrderLessThanOrEqualTo = value; return this; } public Integer getDisplayOrderNotEqualTo() { return DisplayOrderNotEqualTo; } public IN_PhysicalWarehouseCustomSettingQuery setDisplayOrderNotEqualTo(Integer value) { this.DisplayOrderNotEqualTo = value; return this; } public ArrayList getDisplayOrderBetween() { return DisplayOrderBetween; } public IN_PhysicalWarehouseCustomSettingQuery setDisplayOrderBetween(ArrayList value) { this.DisplayOrderBetween = value; return this; } public ArrayList getDisplayOrderIn() { return DisplayOrderIn; } public IN_PhysicalWarehouseCustomSettingQuery setDisplayOrderIn(ArrayList value) { this.DisplayOrderIn = value; return this; } public Short getCellType() { return CellType; } public IN_PhysicalWarehouseCustomSettingQuery setCellType(Short value) { this.CellType = value; return this; } public Short getCellTypeGreaterThanOrEqualTo() { return CellTypeGreaterThanOrEqualTo; } public IN_PhysicalWarehouseCustomSettingQuery setCellTypeGreaterThanOrEqualTo(Short value) { this.CellTypeGreaterThanOrEqualTo = value; return this; } public Short getCellTypeGreaterThan() { return CellTypeGreaterThan; } public IN_PhysicalWarehouseCustomSettingQuery setCellTypeGreaterThan(Short value) { this.CellTypeGreaterThan = value; return this; } public Short getCellTypeLessThan() { return CellTypeLessThan; } public IN_PhysicalWarehouseCustomSettingQuery setCellTypeLessThan(Short value) { this.CellTypeLessThan = value; return this; } public Short getCellTypeLessThanOrEqualTo() { return CellTypeLessThanOrEqualTo; } public IN_PhysicalWarehouseCustomSettingQuery setCellTypeLessThanOrEqualTo(Short value) { this.CellTypeLessThanOrEqualTo = value; return this; } public Short getCellTypeNotEqualTo() { return CellTypeNotEqualTo; } public IN_PhysicalWarehouseCustomSettingQuery setCellTypeNotEqualTo(Short value) { this.CellTypeNotEqualTo = value; return this; } public ArrayList getCellTypeBetween() { return CellTypeBetween; } public IN_PhysicalWarehouseCustomSettingQuery setCellTypeBetween(ArrayList value) { this.CellTypeBetween = value; return this; } public ArrayList getCellTypeIn() { return CellTypeIn; } public IN_PhysicalWarehouseCustomSettingQuery setCellTypeIn(ArrayList value) { this.CellTypeIn = value; return this; } public String getScriptFormatCell() { return ScriptFormatCell; } public IN_PhysicalWarehouseCustomSettingQuery setScriptFormatCell(String value) { this.ScriptFormatCell = value; return this; } public String getScriptFormatCellStartsWith() { return ScriptFormatCellStartsWith; } public IN_PhysicalWarehouseCustomSettingQuery setScriptFormatCellStartsWith(String value) { this.ScriptFormatCellStartsWith = value; return this; } public String getScriptFormatCellEndsWith() { return ScriptFormatCellEndsWith; } public IN_PhysicalWarehouseCustomSettingQuery setScriptFormatCellEndsWith(String value) { this.ScriptFormatCellEndsWith = value; return this; } public String getScriptFormatCellContains() { return ScriptFormatCellContains; } public IN_PhysicalWarehouseCustomSettingQuery setScriptFormatCellContains(String value) { this.ScriptFormatCellContains = value; return this; } public String getScriptFormatCellLike() { return ScriptFormatCellLike; } public IN_PhysicalWarehouseCustomSettingQuery setScriptFormatCellLike(String value) { this.ScriptFormatCellLike = value; return this; } public ArrayList getScriptFormatCellBetween() { return ScriptFormatCellBetween; } public IN_PhysicalWarehouseCustomSettingQuery setScriptFormatCellBetween(ArrayList value) { this.ScriptFormatCellBetween = value; return this; } public ArrayList getScriptFormatCellIn() { return ScriptFormatCellIn; } public IN_PhysicalWarehouseCustomSettingQuery setScriptFormatCellIn(ArrayList value) { this.ScriptFormatCellIn = value; return this; } public String getScriptButtonClicked() { return ScriptButtonClicked; } public IN_PhysicalWarehouseCustomSettingQuery setScriptButtonClicked(String value) { this.ScriptButtonClicked = value; return this; } public String getScriptButtonClickedStartsWith() { return ScriptButtonClickedStartsWith; } public IN_PhysicalWarehouseCustomSettingQuery setScriptButtonClickedStartsWith(String value) { this.ScriptButtonClickedStartsWith = value; return this; } public String getScriptButtonClickedEndsWith() { return ScriptButtonClickedEndsWith; } public IN_PhysicalWarehouseCustomSettingQuery setScriptButtonClickedEndsWith(String value) { this.ScriptButtonClickedEndsWith = value; return this; } public String getScriptButtonClickedContains() { return ScriptButtonClickedContains; } public IN_PhysicalWarehouseCustomSettingQuery setScriptButtonClickedContains(String value) { this.ScriptButtonClickedContains = value; return this; } public String getScriptButtonClickedLike() { return ScriptButtonClickedLike; } public IN_PhysicalWarehouseCustomSettingQuery setScriptButtonClickedLike(String value) { this.ScriptButtonClickedLike = value; return this; } public ArrayList getScriptButtonClickedBetween() { return ScriptButtonClickedBetween; } public IN_PhysicalWarehouseCustomSettingQuery setScriptButtonClickedBetween(ArrayList value) { this.ScriptButtonClickedBetween = value; return this; } public ArrayList getScriptButtonClickedIn() { return ScriptButtonClickedIn; } public IN_PhysicalWarehouseCustomSettingQuery setScriptButtonClickedIn(ArrayList value) { this.ScriptButtonClickedIn = value; return this; } public String getScriptReadData() { return ScriptReadData; } public IN_PhysicalWarehouseCustomSettingQuery setScriptReadData(String value) { this.ScriptReadData = value; return this; } public String getScriptReadDataStartsWith() { return ScriptReadDataStartsWith; } public IN_PhysicalWarehouseCustomSettingQuery setScriptReadDataStartsWith(String value) { this.ScriptReadDataStartsWith = value; return this; } public String getScriptReadDataEndsWith() { return ScriptReadDataEndsWith; } public IN_PhysicalWarehouseCustomSettingQuery setScriptReadDataEndsWith(String value) { this.ScriptReadDataEndsWith = value; return this; } public String getScriptReadDataContains() { return ScriptReadDataContains; } public IN_PhysicalWarehouseCustomSettingQuery setScriptReadDataContains(String value) { this.ScriptReadDataContains = value; return this; } public String getScriptReadDataLike() { return ScriptReadDataLike; } public IN_PhysicalWarehouseCustomSettingQuery setScriptReadDataLike(String value) { this.ScriptReadDataLike = value; return this; } public ArrayList getScriptReadDataBetween() { return ScriptReadDataBetween; } public IN_PhysicalWarehouseCustomSettingQuery setScriptReadDataBetween(ArrayList value) { this.ScriptReadDataBetween = value; return this; } public ArrayList getScriptReadDataIn() { return ScriptReadDataIn; } public IN_PhysicalWarehouseCustomSettingQuery setScriptReadDataIn(ArrayList value) { this.ScriptReadDataIn = value; return this; } public String getGridHandlerCode() { return GridHandlerCode; } public IN_PhysicalWarehouseCustomSettingQuery setGridHandlerCode(String value) { this.GridHandlerCode = value; return this; } public String getGridHandlerCodeStartsWith() { return GridHandlerCodeStartsWith; } public IN_PhysicalWarehouseCustomSettingQuery setGridHandlerCodeStartsWith(String value) { this.GridHandlerCodeStartsWith = value; return this; } public String getGridHandlerCodeEndsWith() { return GridHandlerCodeEndsWith; } public IN_PhysicalWarehouseCustomSettingQuery setGridHandlerCodeEndsWith(String value) { this.GridHandlerCodeEndsWith = value; return this; } public String getGridHandlerCodeContains() { return GridHandlerCodeContains; } public IN_PhysicalWarehouseCustomSettingQuery setGridHandlerCodeContains(String value) { this.GridHandlerCodeContains = value; return this; } public String getGridHandlerCodeLike() { return GridHandlerCodeLike; } public IN_PhysicalWarehouseCustomSettingQuery setGridHandlerCodeLike(String value) { this.GridHandlerCodeLike = value; return this; } public ArrayList getGridHandlerCodeBetween() { return GridHandlerCodeBetween; } public IN_PhysicalWarehouseCustomSettingQuery setGridHandlerCodeBetween(ArrayList value) { this.GridHandlerCodeBetween = value; return this; } public ArrayList getGridHandlerCodeIn() { return GridHandlerCodeIn; } public IN_PhysicalWarehouseCustomSettingQuery setGridHandlerCodeIn(ArrayList value) { this.GridHandlerCodeIn = value; return this; } public UUID getSyPluginRecID() { return SY_Plugin_RecID; } public IN_PhysicalWarehouseCustomSettingQuery setSyPluginRecID(UUID value) { this.SY_Plugin_RecID = value; return this; } public ArrayList getSyPluginRecIDIn() { return SY_Plugin_RecIDIn; } public IN_PhysicalWarehouseCustomSettingQuery setSyPluginRecIDIn(ArrayList value) { this.SY_Plugin_RecIDIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class IN_PhysicalWarehouseCustomValuesQuery extends QueryDb implements IReturn> { public String SettingValueID = null; public String SettingValueIDStartsWith = null; public String SettingValueIDEndsWith = null; public String SettingValueIDContains = null; public String SettingValueIDLike = null; public ArrayList SettingValueIDBetween = null; public ArrayList SettingValueIDIn = null; public String SettingID = null; public String SettingIDStartsWith = null; public String SettingIDEndsWith = null; public String SettingIDContains = null; public String SettingIDLike = null; public ArrayList SettingIDBetween = null; public ArrayList SettingIDIn = null; public String IN_Physical_RecID = null; public String IN_Physical_RecIDStartsWith = null; public String IN_Physical_RecIDEndsWith = null; public String IN_Physical_RecIDContains = null; public String IN_Physical_RecIDLike = null; public ArrayList IN_Physical_RecIDBetween = null; public ArrayList IN_Physical_RecIDIn = null; public String Contents = null; public String ContentsStartsWith = null; public String ContentsEndsWith = null; public String ContentsContains = null; public String ContentsLike = null; public ArrayList ContentsBetween = null; public ArrayList ContentsIn = null; public Date LastSavedDateTime = null; public Date LastSavedDateTimeGreaterThanOrEqualTo = null; public Date LastSavedDateTimeGreaterThan = null; public Date LastSavedDateTimeLessThan = null; public Date LastSavedDateTimeLessThanOrEqualTo = null; public Date LastSavedDateTimeNotEqualTo = null; public ArrayList LastSavedDateTimeBetween = null; public ArrayList LastSavedDateTimeIn = null; public String getSettingValueID() { return SettingValueID; } public IN_PhysicalWarehouseCustomValuesQuery setSettingValueID(String value) { this.SettingValueID = value; return this; } public String getSettingValueIDStartsWith() { return SettingValueIDStartsWith; } public IN_PhysicalWarehouseCustomValuesQuery setSettingValueIDStartsWith(String value) { this.SettingValueIDStartsWith = value; return this; } public String getSettingValueIDEndsWith() { return SettingValueIDEndsWith; } public IN_PhysicalWarehouseCustomValuesQuery setSettingValueIDEndsWith(String value) { this.SettingValueIDEndsWith = value; return this; } public String getSettingValueIDContains() { return SettingValueIDContains; } public IN_PhysicalWarehouseCustomValuesQuery setSettingValueIDContains(String value) { this.SettingValueIDContains = value; return this; } public String getSettingValueIDLike() { return SettingValueIDLike; } public IN_PhysicalWarehouseCustomValuesQuery setSettingValueIDLike(String value) { this.SettingValueIDLike = value; return this; } public ArrayList getSettingValueIDBetween() { return SettingValueIDBetween; } public IN_PhysicalWarehouseCustomValuesQuery setSettingValueIDBetween(ArrayList value) { this.SettingValueIDBetween = value; return this; } public ArrayList getSettingValueIDIn() { return SettingValueIDIn; } public IN_PhysicalWarehouseCustomValuesQuery setSettingValueIDIn(ArrayList value) { this.SettingValueIDIn = value; return this; } public String getSettingID() { return SettingID; } public IN_PhysicalWarehouseCustomValuesQuery setSettingID(String value) { this.SettingID = value; return this; } public String getSettingIDStartsWith() { return SettingIDStartsWith; } public IN_PhysicalWarehouseCustomValuesQuery setSettingIDStartsWith(String value) { this.SettingIDStartsWith = value; return this; } public String getSettingIDEndsWith() { return SettingIDEndsWith; } public IN_PhysicalWarehouseCustomValuesQuery setSettingIDEndsWith(String value) { this.SettingIDEndsWith = value; return this; } public String getSettingIDContains() { return SettingIDContains; } public IN_PhysicalWarehouseCustomValuesQuery setSettingIDContains(String value) { this.SettingIDContains = value; return this; } public String getSettingIDLike() { return SettingIDLike; } public IN_PhysicalWarehouseCustomValuesQuery setSettingIDLike(String value) { this.SettingIDLike = value; return this; } public ArrayList getSettingIDBetween() { return SettingIDBetween; } public IN_PhysicalWarehouseCustomValuesQuery setSettingIDBetween(ArrayList value) { this.SettingIDBetween = value; return this; } public ArrayList getSettingIDIn() { return SettingIDIn; } public IN_PhysicalWarehouseCustomValuesQuery setSettingIDIn(ArrayList value) { this.SettingIDIn = value; return this; } public String getInPhysicalRecID() { return IN_Physical_RecID; } public IN_PhysicalWarehouseCustomValuesQuery setInPhysicalRecID(String value) { this.IN_Physical_RecID = value; return this; } public String getInPhysicalRecIDStartsWith() { return IN_Physical_RecIDStartsWith; } public IN_PhysicalWarehouseCustomValuesQuery setInPhysicalRecIDStartsWith(String value) { this.IN_Physical_RecIDStartsWith = value; return this; } public String getInPhysicalRecIDEndsWith() { return IN_Physical_RecIDEndsWith; } public IN_PhysicalWarehouseCustomValuesQuery setInPhysicalRecIDEndsWith(String value) { this.IN_Physical_RecIDEndsWith = value; return this; } public String getInPhysicalRecIDContains() { return IN_Physical_RecIDContains; } public IN_PhysicalWarehouseCustomValuesQuery setInPhysicalRecIDContains(String value) { this.IN_Physical_RecIDContains = value; return this; } public String getInPhysicalRecIDLike() { return IN_Physical_RecIDLike; } public IN_PhysicalWarehouseCustomValuesQuery setInPhysicalRecIDLike(String value) { this.IN_Physical_RecIDLike = value; return this; } public ArrayList getInPhysicalRecIDBetween() { return IN_Physical_RecIDBetween; } public IN_PhysicalWarehouseCustomValuesQuery setInPhysicalRecIDBetween(ArrayList value) { this.IN_Physical_RecIDBetween = value; return this; } public ArrayList getInPhysicalRecIDIn() { return IN_Physical_RecIDIn; } public IN_PhysicalWarehouseCustomValuesQuery setInPhysicalRecIDIn(ArrayList value) { this.IN_Physical_RecIDIn = value; return this; } public String getContents() { return Contents; } public IN_PhysicalWarehouseCustomValuesQuery setContents(String value) { this.Contents = value; return this; } public String getContentsStartsWith() { return ContentsStartsWith; } public IN_PhysicalWarehouseCustomValuesQuery setContentsStartsWith(String value) { this.ContentsStartsWith = value; return this; } public String getContentsEndsWith() { return ContentsEndsWith; } public IN_PhysicalWarehouseCustomValuesQuery setContentsEndsWith(String value) { this.ContentsEndsWith = value; return this; } public String getContentsContains() { return ContentsContains; } public IN_PhysicalWarehouseCustomValuesQuery setContentsContains(String value) { this.ContentsContains = value; return this; } public String getContentsLike() { return ContentsLike; } public IN_PhysicalWarehouseCustomValuesQuery setContentsLike(String value) { this.ContentsLike = value; return this; } public ArrayList getContentsBetween() { return ContentsBetween; } public IN_PhysicalWarehouseCustomValuesQuery setContentsBetween(ArrayList value) { this.ContentsBetween = value; return this; } public ArrayList getContentsIn() { return ContentsIn; } public IN_PhysicalWarehouseCustomValuesQuery setContentsIn(ArrayList value) { this.ContentsIn = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public IN_PhysicalWarehouseCustomValuesQuery setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getLastSavedDateTimeGreaterThanOrEqualTo() { return LastSavedDateTimeGreaterThanOrEqualTo; } public IN_PhysicalWarehouseCustomValuesQuery setLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.LastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeGreaterThan() { return LastSavedDateTimeGreaterThan; } public IN_PhysicalWarehouseCustomValuesQuery setLastSavedDateTimeGreaterThan(Date value) { this.LastSavedDateTimeGreaterThan = value; return this; } public Date getLastSavedDateTimeLessThan() { return LastSavedDateTimeLessThan; } public IN_PhysicalWarehouseCustomValuesQuery setLastSavedDateTimeLessThan(Date value) { this.LastSavedDateTimeLessThan = value; return this; } public Date getLastSavedDateTimeLessThanOrEqualTo() { return LastSavedDateTimeLessThanOrEqualTo; } public IN_PhysicalWarehouseCustomValuesQuery setLastSavedDateTimeLessThanOrEqualTo(Date value) { this.LastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeNotEqualTo() { return LastSavedDateTimeNotEqualTo; } public IN_PhysicalWarehouseCustomValuesQuery setLastSavedDateTimeNotEqualTo(Date value) { this.LastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getLastSavedDateTimeBetween() { return LastSavedDateTimeBetween; } public IN_PhysicalWarehouseCustomValuesQuery setLastSavedDateTimeBetween(ArrayList value) { this.LastSavedDateTimeBetween = value; return this; } public ArrayList getLastSavedDateTimeIn() { return LastSavedDateTimeIn; } public IN_PhysicalWarehouseCustomValuesQuery setLastSavedDateTimeIn(ArrayList value) { this.LastSavedDateTimeIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class IN_PriceQuery extends QueryDb implements IReturn> { public String PriceID = null; public String PriceIDStartsWith = null; public String PriceIDEndsWith = null; public String PriceIDContains = null; public String PriceIDLike = null; public ArrayList PriceIDBetween = null; public ArrayList PriceIDIn = null; public Date LastSavedDateTime = null; public Date LastSavedDateTimeGreaterThanOrEqualTo = null; public Date LastSavedDateTimeGreaterThan = null; public Date LastSavedDateTimeLessThan = null; public Date LastSavedDateTimeLessThanOrEqualTo = null; public Date LastSavedDateTimeNotEqualTo = null; public ArrayList LastSavedDateTimeBetween = null; public ArrayList LastSavedDateTimeIn = null; public String Description = null; public String DescriptionStartsWith = null; public String DescriptionEndsWith = null; public String DescriptionContains = null; public String DescriptionLike = null; public ArrayList DescriptionBetween = null; public ArrayList DescriptionIn = null; public BigDecimal QuantityBreak = null; public BigDecimal QuantityBreakGreaterThanOrEqualTo = null; public BigDecimal QuantityBreakGreaterThan = null; public BigDecimal QuantityBreakLessThan = null; public BigDecimal QuantityBreakLessThanOrEqualTo = null; public BigDecimal QuantityBreakNotEqualTo = null; public ArrayList QuantityBreakBetween = null; public ArrayList QuantityBreakIn = null; public Date ExpiryDate = null; public Date ExpiryDateGreaterThanOrEqualTo = null; public Date ExpiryDateGreaterThan = null; public Date ExpiryDateLessThan = null; public Date ExpiryDateLessThanOrEqualTo = null; public Date ExpiryDateNotEqualTo = null; public ArrayList ExpiryDateBetween = null; public ArrayList ExpiryDateIn = null; public String getPriceID() { return PriceID; } public IN_PriceQuery setPriceID(String value) { this.PriceID = value; return this; } public String getPriceIDStartsWith() { return PriceIDStartsWith; } public IN_PriceQuery setPriceIDStartsWith(String value) { this.PriceIDStartsWith = value; return this; } public String getPriceIDEndsWith() { return PriceIDEndsWith; } public IN_PriceQuery setPriceIDEndsWith(String value) { this.PriceIDEndsWith = value; return this; } public String getPriceIDContains() { return PriceIDContains; } public IN_PriceQuery setPriceIDContains(String value) { this.PriceIDContains = value; return this; } public String getPriceIDLike() { return PriceIDLike; } public IN_PriceQuery setPriceIDLike(String value) { this.PriceIDLike = value; return this; } public ArrayList getPriceIDBetween() { return PriceIDBetween; } public IN_PriceQuery setPriceIDBetween(ArrayList value) { this.PriceIDBetween = value; return this; } public ArrayList getPriceIDIn() { return PriceIDIn; } public IN_PriceQuery setPriceIDIn(ArrayList value) { this.PriceIDIn = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public IN_PriceQuery setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getLastSavedDateTimeGreaterThanOrEqualTo() { return LastSavedDateTimeGreaterThanOrEqualTo; } public IN_PriceQuery setLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.LastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeGreaterThan() { return LastSavedDateTimeGreaterThan; } public IN_PriceQuery setLastSavedDateTimeGreaterThan(Date value) { this.LastSavedDateTimeGreaterThan = value; return this; } public Date getLastSavedDateTimeLessThan() { return LastSavedDateTimeLessThan; } public IN_PriceQuery setLastSavedDateTimeLessThan(Date value) { this.LastSavedDateTimeLessThan = value; return this; } public Date getLastSavedDateTimeLessThanOrEqualTo() { return LastSavedDateTimeLessThanOrEqualTo; } public IN_PriceQuery setLastSavedDateTimeLessThanOrEqualTo(Date value) { this.LastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeNotEqualTo() { return LastSavedDateTimeNotEqualTo; } public IN_PriceQuery setLastSavedDateTimeNotEqualTo(Date value) { this.LastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getLastSavedDateTimeBetween() { return LastSavedDateTimeBetween; } public IN_PriceQuery setLastSavedDateTimeBetween(ArrayList value) { this.LastSavedDateTimeBetween = value; return this; } public ArrayList getLastSavedDateTimeIn() { return LastSavedDateTimeIn; } public IN_PriceQuery setLastSavedDateTimeIn(ArrayList value) { this.LastSavedDateTimeIn = value; return this; } public String getDescription() { return Description; } public IN_PriceQuery setDescription(String value) { this.Description = value; return this; } public String getDescriptionStartsWith() { return DescriptionStartsWith; } public IN_PriceQuery setDescriptionStartsWith(String value) { this.DescriptionStartsWith = value; return this; } public String getDescriptionEndsWith() { return DescriptionEndsWith; } public IN_PriceQuery setDescriptionEndsWith(String value) { this.DescriptionEndsWith = value; return this; } public String getDescriptionContains() { return DescriptionContains; } public IN_PriceQuery setDescriptionContains(String value) { this.DescriptionContains = value; return this; } public String getDescriptionLike() { return DescriptionLike; } public IN_PriceQuery setDescriptionLike(String value) { this.DescriptionLike = value; return this; } public ArrayList getDescriptionBetween() { return DescriptionBetween; } public IN_PriceQuery setDescriptionBetween(ArrayList value) { this.DescriptionBetween = value; return this; } public ArrayList getDescriptionIn() { return DescriptionIn; } public IN_PriceQuery setDescriptionIn(ArrayList value) { this.DescriptionIn = value; return this; } public BigDecimal getQuantityBreak() { return QuantityBreak; } public IN_PriceQuery setQuantityBreak(BigDecimal value) { this.QuantityBreak = value; return this; } public BigDecimal getQuantityBreakGreaterThanOrEqualTo() { return QuantityBreakGreaterThanOrEqualTo; } public IN_PriceQuery setQuantityBreakGreaterThanOrEqualTo(BigDecimal value) { this.QuantityBreakGreaterThanOrEqualTo = value; return this; } public BigDecimal getQuantityBreakGreaterThan() { return QuantityBreakGreaterThan; } public IN_PriceQuery setQuantityBreakGreaterThan(BigDecimal value) { this.QuantityBreakGreaterThan = value; return this; } public BigDecimal getQuantityBreakLessThan() { return QuantityBreakLessThan; } public IN_PriceQuery setQuantityBreakLessThan(BigDecimal value) { this.QuantityBreakLessThan = value; return this; } public BigDecimal getQuantityBreakLessThanOrEqualTo() { return QuantityBreakLessThanOrEqualTo; } public IN_PriceQuery setQuantityBreakLessThanOrEqualTo(BigDecimal value) { this.QuantityBreakLessThanOrEqualTo = value; return this; } public BigDecimal getQuantityBreakNotEqualTo() { return QuantityBreakNotEqualTo; } public IN_PriceQuery setQuantityBreakNotEqualTo(BigDecimal value) { this.QuantityBreakNotEqualTo = value; return this; } public ArrayList getQuantityBreakBetween() { return QuantityBreakBetween; } public IN_PriceQuery setQuantityBreakBetween(ArrayList value) { this.QuantityBreakBetween = value; return this; } public ArrayList getQuantityBreakIn() { return QuantityBreakIn; } public IN_PriceQuery setQuantityBreakIn(ArrayList value) { this.QuantityBreakIn = value; return this; } public Date getExpiryDate() { return ExpiryDate; } public IN_PriceQuery setExpiryDate(Date value) { this.ExpiryDate = value; return this; } public Date getExpiryDateGreaterThanOrEqualTo() { return ExpiryDateGreaterThanOrEqualTo; } public IN_PriceQuery setExpiryDateGreaterThanOrEqualTo(Date value) { this.ExpiryDateGreaterThanOrEqualTo = value; return this; } public Date getExpiryDateGreaterThan() { return ExpiryDateGreaterThan; } public IN_PriceQuery setExpiryDateGreaterThan(Date value) { this.ExpiryDateGreaterThan = value; return this; } public Date getExpiryDateLessThan() { return ExpiryDateLessThan; } public IN_PriceQuery setExpiryDateLessThan(Date value) { this.ExpiryDateLessThan = value; return this; } public Date getExpiryDateLessThanOrEqualTo() { return ExpiryDateLessThanOrEqualTo; } public IN_PriceQuery setExpiryDateLessThanOrEqualTo(Date value) { this.ExpiryDateLessThanOrEqualTo = value; return this; } public Date getExpiryDateNotEqualTo() { return ExpiryDateNotEqualTo; } public IN_PriceQuery setExpiryDateNotEqualTo(Date value) { this.ExpiryDateNotEqualTo = value; return this; } public ArrayList getExpiryDateBetween() { return ExpiryDateBetween; } public IN_PriceQuery setExpiryDateBetween(ArrayList value) { this.ExpiryDateBetween = value; return this; } public ArrayList getExpiryDateIn() { return ExpiryDateIn; } public IN_PriceQuery setExpiryDateIn(ArrayList value) { this.ExpiryDateIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class IN_PriceLinkQuery extends QueryDb implements IReturn> { public String LinkID = null; public String LinkIDStartsWith = null; public String LinkIDEndsWith = null; public String LinkIDContains = null; public String LinkIDLike = null; public ArrayList LinkIDBetween = null; public ArrayList LinkIDIn = null; public String PriceID = null; public String PriceIDStartsWith = null; public String PriceIDEndsWith = null; public String PriceIDContains = null; public String PriceIDLike = null; public ArrayList PriceIDBetween = null; public ArrayList PriceIDIn = null; public String InventoryID = null; public String InventoryIDStartsWith = null; public String InventoryIDEndsWith = null; public String InventoryIDContains = null; public String InventoryIDLike = null; public ArrayList InventoryIDBetween = null; public ArrayList InventoryIDIn = null; public BigDecimal Price = null; public BigDecimal PriceGreaterThanOrEqualTo = null; public BigDecimal PriceGreaterThan = null; public BigDecimal PriceLessThan = null; public BigDecimal PriceLessThanOrEqualTo = null; public BigDecimal PriceNotEqualTo = null; public ArrayList PriceBetween = null; public ArrayList PriceIn = null; public String getLinkID() { return LinkID; } public IN_PriceLinkQuery setLinkID(String value) { this.LinkID = value; return this; } public String getLinkIDStartsWith() { return LinkIDStartsWith; } public IN_PriceLinkQuery setLinkIDStartsWith(String value) { this.LinkIDStartsWith = value; return this; } public String getLinkIDEndsWith() { return LinkIDEndsWith; } public IN_PriceLinkQuery setLinkIDEndsWith(String value) { this.LinkIDEndsWith = value; return this; } public String getLinkIDContains() { return LinkIDContains; } public IN_PriceLinkQuery setLinkIDContains(String value) { this.LinkIDContains = value; return this; } public String getLinkIDLike() { return LinkIDLike; } public IN_PriceLinkQuery setLinkIDLike(String value) { this.LinkIDLike = value; return this; } public ArrayList getLinkIDBetween() { return LinkIDBetween; } public IN_PriceLinkQuery setLinkIDBetween(ArrayList value) { this.LinkIDBetween = value; return this; } public ArrayList getLinkIDIn() { return LinkIDIn; } public IN_PriceLinkQuery setLinkIDIn(ArrayList value) { this.LinkIDIn = value; return this; } public String getPriceID() { return PriceID; } public IN_PriceLinkQuery setPriceID(String value) { this.PriceID = value; return this; } public String getPriceIDStartsWith() { return PriceIDStartsWith; } public IN_PriceLinkQuery setPriceIDStartsWith(String value) { this.PriceIDStartsWith = value; return this; } public String getPriceIDEndsWith() { return PriceIDEndsWith; } public IN_PriceLinkQuery setPriceIDEndsWith(String value) { this.PriceIDEndsWith = value; return this; } public String getPriceIDContains() { return PriceIDContains; } public IN_PriceLinkQuery setPriceIDContains(String value) { this.PriceIDContains = value; return this; } public String getPriceIDLike() { return PriceIDLike; } public IN_PriceLinkQuery setPriceIDLike(String value) { this.PriceIDLike = value; return this; } public ArrayList getPriceIDBetween() { return PriceIDBetween; } public IN_PriceLinkQuery setPriceIDBetween(ArrayList value) { this.PriceIDBetween = value; return this; } public ArrayList getPriceIDIn() { return PriceIDIn; } public IN_PriceLinkQuery setPriceIDIn(ArrayList value) { this.PriceIDIn = value; return this; } public String getInventoryID() { return InventoryID; } public IN_PriceLinkQuery setInventoryID(String value) { this.InventoryID = value; return this; } public String getInventoryIDStartsWith() { return InventoryIDStartsWith; } public IN_PriceLinkQuery setInventoryIDStartsWith(String value) { this.InventoryIDStartsWith = value; return this; } public String getInventoryIDEndsWith() { return InventoryIDEndsWith; } public IN_PriceLinkQuery setInventoryIDEndsWith(String value) { this.InventoryIDEndsWith = value; return this; } public String getInventoryIDContains() { return InventoryIDContains; } public IN_PriceLinkQuery setInventoryIDContains(String value) { this.InventoryIDContains = value; return this; } public String getInventoryIDLike() { return InventoryIDLike; } public IN_PriceLinkQuery setInventoryIDLike(String value) { this.InventoryIDLike = value; return this; } public ArrayList getInventoryIDBetween() { return InventoryIDBetween; } public IN_PriceLinkQuery setInventoryIDBetween(ArrayList value) { this.InventoryIDBetween = value; return this; } public ArrayList getInventoryIDIn() { return InventoryIDIn; } public IN_PriceLinkQuery setInventoryIDIn(ArrayList value) { this.InventoryIDIn = value; return this; } public BigDecimal getPrice() { return Price; } public IN_PriceLinkQuery setPrice(BigDecimal value) { this.Price = value; return this; } public BigDecimal getPriceGreaterThanOrEqualTo() { return PriceGreaterThanOrEqualTo; } public IN_PriceLinkQuery setPriceGreaterThanOrEqualTo(BigDecimal value) { this.PriceGreaterThanOrEqualTo = value; return this; } public BigDecimal getPriceGreaterThan() { return PriceGreaterThan; } public IN_PriceLinkQuery setPriceGreaterThan(BigDecimal value) { this.PriceGreaterThan = value; return this; } public BigDecimal getPriceLessThan() { return PriceLessThan; } public IN_PriceLinkQuery setPriceLessThan(BigDecimal value) { this.PriceLessThan = value; return this; } public BigDecimal getPriceLessThanOrEqualTo() { return PriceLessThanOrEqualTo; } public IN_PriceLinkQuery setPriceLessThanOrEqualTo(BigDecimal value) { this.PriceLessThanOrEqualTo = value; return this; } public BigDecimal getPriceNotEqualTo() { return PriceNotEqualTo; } public IN_PriceLinkQuery setPriceNotEqualTo(BigDecimal value) { this.PriceNotEqualTo = value; return this; } public ArrayList getPriceBetween() { return PriceBetween; } public IN_PriceLinkQuery setPriceBetween(ArrayList value) { this.PriceBetween = value; return this; } public ArrayList getPriceIn() { return PriceIn; } public IN_PriceLinkQuery setPriceIn(ArrayList value) { this.PriceIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class IN_PriceSchemePriceQuery extends QueryDb implements IReturn> { public String PriceSchemePriceID = null; public String PriceSchemePriceIDStartsWith = null; public String PriceSchemePriceIDEndsWith = null; public String PriceSchemePriceIDContains = null; public String PriceSchemePriceIDLike = null; public ArrayList PriceSchemePriceIDBetween = null; public ArrayList PriceSchemePriceIDIn = null; public String PriceDescription = null; public String PriceDescriptionStartsWith = null; public String PriceDescriptionEndsWith = null; public String PriceDescriptionContains = null; public String PriceDescriptionLike = null; public ArrayList PriceDescriptionBetween = null; public ArrayList PriceDescriptionIn = null; public Boolean PriceIsStoredProc = null; public String PriceStoredProcName = null; public String PriceStoredProcNameStartsWith = null; public String PriceStoredProcNameEndsWith = null; public String PriceStoredProcNameContains = null; public String PriceStoredProcNameLike = null; public ArrayList PriceStoredProcNameBetween = null; public ArrayList PriceStoredProcNameIn = null; public Boolean PriceActive = null; public String PriceVBScript = null; public String PriceVBScriptStartsWith = null; public String PriceVBScriptEndsWith = null; public String PriceVBScriptContains = null; public String PriceVBScriptLike = null; public ArrayList PriceVBScriptBetween = null; public ArrayList PriceVBScriptIn = null; public Boolean UseZeroPrice = null; public String getPriceSchemePriceID() { return PriceSchemePriceID; } public IN_PriceSchemePriceQuery setPriceSchemePriceID(String value) { this.PriceSchemePriceID = value; return this; } public String getPriceSchemePriceIDStartsWith() { return PriceSchemePriceIDStartsWith; } public IN_PriceSchemePriceQuery setPriceSchemePriceIDStartsWith(String value) { this.PriceSchemePriceIDStartsWith = value; return this; } public String getPriceSchemePriceIDEndsWith() { return PriceSchemePriceIDEndsWith; } public IN_PriceSchemePriceQuery setPriceSchemePriceIDEndsWith(String value) { this.PriceSchemePriceIDEndsWith = value; return this; } public String getPriceSchemePriceIDContains() { return PriceSchemePriceIDContains; } public IN_PriceSchemePriceQuery setPriceSchemePriceIDContains(String value) { this.PriceSchemePriceIDContains = value; return this; } public String getPriceSchemePriceIDLike() { return PriceSchemePriceIDLike; } public IN_PriceSchemePriceQuery setPriceSchemePriceIDLike(String value) { this.PriceSchemePriceIDLike = value; return this; } public ArrayList getPriceSchemePriceIDBetween() { return PriceSchemePriceIDBetween; } public IN_PriceSchemePriceQuery setPriceSchemePriceIDBetween(ArrayList value) { this.PriceSchemePriceIDBetween = value; return this; } public ArrayList getPriceSchemePriceIDIn() { return PriceSchemePriceIDIn; } public IN_PriceSchemePriceQuery setPriceSchemePriceIDIn(ArrayList value) { this.PriceSchemePriceIDIn = value; return this; } public String getPriceDescription() { return PriceDescription; } public IN_PriceSchemePriceQuery setPriceDescription(String value) { this.PriceDescription = value; return this; } public String getPriceDescriptionStartsWith() { return PriceDescriptionStartsWith; } public IN_PriceSchemePriceQuery setPriceDescriptionStartsWith(String value) { this.PriceDescriptionStartsWith = value; return this; } public String getPriceDescriptionEndsWith() { return PriceDescriptionEndsWith; } public IN_PriceSchemePriceQuery setPriceDescriptionEndsWith(String value) { this.PriceDescriptionEndsWith = value; return this; } public String getPriceDescriptionContains() { return PriceDescriptionContains; } public IN_PriceSchemePriceQuery setPriceDescriptionContains(String value) { this.PriceDescriptionContains = value; return this; } public String getPriceDescriptionLike() { return PriceDescriptionLike; } public IN_PriceSchemePriceQuery setPriceDescriptionLike(String value) { this.PriceDescriptionLike = value; return this; } public ArrayList getPriceDescriptionBetween() { return PriceDescriptionBetween; } public IN_PriceSchemePriceQuery setPriceDescriptionBetween(ArrayList value) { this.PriceDescriptionBetween = value; return this; } public ArrayList getPriceDescriptionIn() { return PriceDescriptionIn; } public IN_PriceSchemePriceQuery setPriceDescriptionIn(ArrayList value) { this.PriceDescriptionIn = value; return this; } public Boolean isPriceIsStoredProc() { return PriceIsStoredProc; } public IN_PriceSchemePriceQuery setPriceIsStoredProc(Boolean value) { this.PriceIsStoredProc = value; return this; } public String getPriceStoredProcName() { return PriceStoredProcName; } public IN_PriceSchemePriceQuery setPriceStoredProcName(String value) { this.PriceStoredProcName = value; return this; } public String getPriceStoredProcNameStartsWith() { return PriceStoredProcNameStartsWith; } public IN_PriceSchemePriceQuery setPriceStoredProcNameStartsWith(String value) { this.PriceStoredProcNameStartsWith = value; return this; } public String getPriceStoredProcNameEndsWith() { return PriceStoredProcNameEndsWith; } public IN_PriceSchemePriceQuery setPriceStoredProcNameEndsWith(String value) { this.PriceStoredProcNameEndsWith = value; return this; } public String getPriceStoredProcNameContains() { return PriceStoredProcNameContains; } public IN_PriceSchemePriceQuery setPriceStoredProcNameContains(String value) { this.PriceStoredProcNameContains = value; return this; } public String getPriceStoredProcNameLike() { return PriceStoredProcNameLike; } public IN_PriceSchemePriceQuery setPriceStoredProcNameLike(String value) { this.PriceStoredProcNameLike = value; return this; } public ArrayList getPriceStoredProcNameBetween() { return PriceStoredProcNameBetween; } public IN_PriceSchemePriceQuery setPriceStoredProcNameBetween(ArrayList value) { this.PriceStoredProcNameBetween = value; return this; } public ArrayList getPriceStoredProcNameIn() { return PriceStoredProcNameIn; } public IN_PriceSchemePriceQuery setPriceStoredProcNameIn(ArrayList value) { this.PriceStoredProcNameIn = value; return this; } public Boolean isPriceActive() { return PriceActive; } public IN_PriceSchemePriceQuery setPriceActive(Boolean value) { this.PriceActive = value; return this; } public String getPriceVBScript() { return PriceVBScript; } public IN_PriceSchemePriceQuery setPriceVBScript(String value) { this.PriceVBScript = value; return this; } public String getPriceVBScriptStartsWith() { return PriceVBScriptStartsWith; } public IN_PriceSchemePriceQuery setPriceVBScriptStartsWith(String value) { this.PriceVBScriptStartsWith = value; return this; } public String getPriceVBScriptEndsWith() { return PriceVBScriptEndsWith; } public IN_PriceSchemePriceQuery setPriceVBScriptEndsWith(String value) { this.PriceVBScriptEndsWith = value; return this; } public String getPriceVBScriptContains() { return PriceVBScriptContains; } public IN_PriceSchemePriceQuery setPriceVBScriptContains(String value) { this.PriceVBScriptContains = value; return this; } public String getPriceVBScriptLike() { return PriceVBScriptLike; } public IN_PriceSchemePriceQuery setPriceVBScriptLike(String value) { this.PriceVBScriptLike = value; return this; } public ArrayList getPriceVBScriptBetween() { return PriceVBScriptBetween; } public IN_PriceSchemePriceQuery setPriceVBScriptBetween(ArrayList value) { this.PriceVBScriptBetween = value; return this; } public ArrayList getPriceVBScriptIn() { return PriceVBScriptIn; } public IN_PriceSchemePriceQuery setPriceVBScriptIn(ArrayList value) { this.PriceVBScriptIn = value; return this; } public Boolean isUseZeroPrice() { return UseZeroPrice; } public IN_PriceSchemePriceQuery setUseZeroPrice(Boolean value) { this.UseZeroPrice = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class IN_PriceSchemePriorityQuery extends QueryDb implements IReturn> { public String PriceSchemePriorityID = null; public String PriceSchemePriorityIDStartsWith = null; public String PriceSchemePriorityIDEndsWith = null; public String PriceSchemePriorityIDContains = null; public String PriceSchemePriorityIDLike = null; public ArrayList PriceSchemePriorityIDBetween = null; public ArrayList PriceSchemePriorityIDIn = null; public String PriceSchemeID = null; public String PriceSchemeIDStartsWith = null; public String PriceSchemeIDEndsWith = null; public String PriceSchemeIDContains = null; public String PriceSchemeIDLike = null; public ArrayList PriceSchemeIDBetween = null; public ArrayList PriceSchemeIDIn = null; public String PriceSchemePriceID = null; public String PriceSchemePriceIDStartsWith = null; public String PriceSchemePriceIDEndsWith = null; public String PriceSchemePriceIDContains = null; public String PriceSchemePriceIDLike = null; public ArrayList PriceSchemePriceIDBetween = null; public ArrayList PriceSchemePriceIDIn = null; public Short SchemePriority = null; public Short SchemePriorityGreaterThanOrEqualTo = null; public Short SchemePriorityGreaterThan = null; public Short SchemePriorityLessThan = null; public Short SchemePriorityLessThanOrEqualTo = null; public Short SchemePriorityNotEqualTo = null; public ArrayList SchemePriorityBetween = null; public ArrayList SchemePriorityIn = null; public String getPriceSchemePriorityID() { return PriceSchemePriorityID; } public IN_PriceSchemePriorityQuery setPriceSchemePriorityID(String value) { this.PriceSchemePriorityID = value; return this; } public String getPriceSchemePriorityIDStartsWith() { return PriceSchemePriorityIDStartsWith; } public IN_PriceSchemePriorityQuery setPriceSchemePriorityIDStartsWith(String value) { this.PriceSchemePriorityIDStartsWith = value; return this; } public String getPriceSchemePriorityIDEndsWith() { return PriceSchemePriorityIDEndsWith; } public IN_PriceSchemePriorityQuery setPriceSchemePriorityIDEndsWith(String value) { this.PriceSchemePriorityIDEndsWith = value; return this; } public String getPriceSchemePriorityIDContains() { return PriceSchemePriorityIDContains; } public IN_PriceSchemePriorityQuery setPriceSchemePriorityIDContains(String value) { this.PriceSchemePriorityIDContains = value; return this; } public String getPriceSchemePriorityIDLike() { return PriceSchemePriorityIDLike; } public IN_PriceSchemePriorityQuery setPriceSchemePriorityIDLike(String value) { this.PriceSchemePriorityIDLike = value; return this; } public ArrayList getPriceSchemePriorityIDBetween() { return PriceSchemePriorityIDBetween; } public IN_PriceSchemePriorityQuery setPriceSchemePriorityIDBetween(ArrayList value) { this.PriceSchemePriorityIDBetween = value; return this; } public ArrayList getPriceSchemePriorityIDIn() { return PriceSchemePriorityIDIn; } public IN_PriceSchemePriorityQuery setPriceSchemePriorityIDIn(ArrayList value) { this.PriceSchemePriorityIDIn = value; return this; } public String getPriceSchemeID() { return PriceSchemeID; } public IN_PriceSchemePriorityQuery setPriceSchemeID(String value) { this.PriceSchemeID = value; return this; } public String getPriceSchemeIDStartsWith() { return PriceSchemeIDStartsWith; } public IN_PriceSchemePriorityQuery setPriceSchemeIDStartsWith(String value) { this.PriceSchemeIDStartsWith = value; return this; } public String getPriceSchemeIDEndsWith() { return PriceSchemeIDEndsWith; } public IN_PriceSchemePriorityQuery setPriceSchemeIDEndsWith(String value) { this.PriceSchemeIDEndsWith = value; return this; } public String getPriceSchemeIDContains() { return PriceSchemeIDContains; } public IN_PriceSchemePriorityQuery setPriceSchemeIDContains(String value) { this.PriceSchemeIDContains = value; return this; } public String getPriceSchemeIDLike() { return PriceSchemeIDLike; } public IN_PriceSchemePriorityQuery setPriceSchemeIDLike(String value) { this.PriceSchemeIDLike = value; return this; } public ArrayList getPriceSchemeIDBetween() { return PriceSchemeIDBetween; } public IN_PriceSchemePriorityQuery setPriceSchemeIDBetween(ArrayList value) { this.PriceSchemeIDBetween = value; return this; } public ArrayList getPriceSchemeIDIn() { return PriceSchemeIDIn; } public IN_PriceSchemePriorityQuery setPriceSchemeIDIn(ArrayList value) { this.PriceSchemeIDIn = value; return this; } public String getPriceSchemePriceID() { return PriceSchemePriceID; } public IN_PriceSchemePriorityQuery setPriceSchemePriceID(String value) { this.PriceSchemePriceID = value; return this; } public String getPriceSchemePriceIDStartsWith() { return PriceSchemePriceIDStartsWith; } public IN_PriceSchemePriorityQuery setPriceSchemePriceIDStartsWith(String value) { this.PriceSchemePriceIDStartsWith = value; return this; } public String getPriceSchemePriceIDEndsWith() { return PriceSchemePriceIDEndsWith; } public IN_PriceSchemePriorityQuery setPriceSchemePriceIDEndsWith(String value) { this.PriceSchemePriceIDEndsWith = value; return this; } public String getPriceSchemePriceIDContains() { return PriceSchemePriceIDContains; } public IN_PriceSchemePriorityQuery setPriceSchemePriceIDContains(String value) { this.PriceSchemePriceIDContains = value; return this; } public String getPriceSchemePriceIDLike() { return PriceSchemePriceIDLike; } public IN_PriceSchemePriorityQuery setPriceSchemePriceIDLike(String value) { this.PriceSchemePriceIDLike = value; return this; } public ArrayList getPriceSchemePriceIDBetween() { return PriceSchemePriceIDBetween; } public IN_PriceSchemePriorityQuery setPriceSchemePriceIDBetween(ArrayList value) { this.PriceSchemePriceIDBetween = value; return this; } public ArrayList getPriceSchemePriceIDIn() { return PriceSchemePriceIDIn; } public IN_PriceSchemePriorityQuery setPriceSchemePriceIDIn(ArrayList value) { this.PriceSchemePriceIDIn = value; return this; } public Short getSchemePriority() { return SchemePriority; } public IN_PriceSchemePriorityQuery setSchemePriority(Short value) { this.SchemePriority = value; return this; } public Short getSchemePriorityGreaterThanOrEqualTo() { return SchemePriorityGreaterThanOrEqualTo; } public IN_PriceSchemePriorityQuery setSchemePriorityGreaterThanOrEqualTo(Short value) { this.SchemePriorityGreaterThanOrEqualTo = value; return this; } public Short getSchemePriorityGreaterThan() { return SchemePriorityGreaterThan; } public IN_PriceSchemePriorityQuery setSchemePriorityGreaterThan(Short value) { this.SchemePriorityGreaterThan = value; return this; } public Short getSchemePriorityLessThan() { return SchemePriorityLessThan; } public IN_PriceSchemePriorityQuery setSchemePriorityLessThan(Short value) { this.SchemePriorityLessThan = value; return this; } public Short getSchemePriorityLessThanOrEqualTo() { return SchemePriorityLessThanOrEqualTo; } public IN_PriceSchemePriorityQuery setSchemePriorityLessThanOrEqualTo(Short value) { this.SchemePriorityLessThanOrEqualTo = value; return this; } public Short getSchemePriorityNotEqualTo() { return SchemePriorityNotEqualTo; } public IN_PriceSchemePriorityQuery setSchemePriorityNotEqualTo(Short value) { this.SchemePriorityNotEqualTo = value; return this; } public ArrayList getSchemePriorityBetween() { return SchemePriorityBetween; } public IN_PriceSchemePriorityQuery setSchemePriorityBetween(ArrayList value) { this.SchemePriorityBetween = value; return this; } public ArrayList getSchemePriorityIn() { return SchemePriorityIn; } public IN_PriceSchemePriorityQuery setSchemePriorityIn(ArrayList value) { this.SchemePriorityIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class IN_PriceSchemesQuery extends QueryDb implements IReturn> { public String PriceSchemeID = null; public String PriceSchemeIDStartsWith = null; public String PriceSchemeIDEndsWith = null; public String PriceSchemeIDContains = null; public String PriceSchemeIDLike = null; public ArrayList PriceSchemeIDBetween = null; public ArrayList PriceSchemeIDIn = null; public String PriceSchemeDescription = null; public String PriceSchemeDescriptionStartsWith = null; public String PriceSchemeDescriptionEndsWith = null; public String PriceSchemeDescriptionContains = null; public String PriceSchemeDescriptionLike = null; public ArrayList PriceSchemeDescriptionBetween = null; public ArrayList PriceSchemeDescriptionIn = null; public Date LastSavedDateTime = null; public Date LastSavedDateTimeGreaterThanOrEqualTo = null; public Date LastSavedDateTimeGreaterThan = null; public Date LastSavedDateTimeLessThan = null; public Date LastSavedDateTimeLessThanOrEqualTo = null; public Date LastSavedDateTimeNotEqualTo = null; public ArrayList LastSavedDateTimeBetween = null; public ArrayList LastSavedDateTimeIn = null; public Boolean SchemeActive = null; public Boolean FindTheCheapest = null; public Boolean IsDefault = null; public String getPriceSchemeID() { return PriceSchemeID; } public IN_PriceSchemesQuery setPriceSchemeID(String value) { this.PriceSchemeID = value; return this; } public String getPriceSchemeIDStartsWith() { return PriceSchemeIDStartsWith; } public IN_PriceSchemesQuery setPriceSchemeIDStartsWith(String value) { this.PriceSchemeIDStartsWith = value; return this; } public String getPriceSchemeIDEndsWith() { return PriceSchemeIDEndsWith; } public IN_PriceSchemesQuery setPriceSchemeIDEndsWith(String value) { this.PriceSchemeIDEndsWith = value; return this; } public String getPriceSchemeIDContains() { return PriceSchemeIDContains; } public IN_PriceSchemesQuery setPriceSchemeIDContains(String value) { this.PriceSchemeIDContains = value; return this; } public String getPriceSchemeIDLike() { return PriceSchemeIDLike; } public IN_PriceSchemesQuery setPriceSchemeIDLike(String value) { this.PriceSchemeIDLike = value; return this; } public ArrayList getPriceSchemeIDBetween() { return PriceSchemeIDBetween; } public IN_PriceSchemesQuery setPriceSchemeIDBetween(ArrayList value) { this.PriceSchemeIDBetween = value; return this; } public ArrayList getPriceSchemeIDIn() { return PriceSchemeIDIn; } public IN_PriceSchemesQuery setPriceSchemeIDIn(ArrayList value) { this.PriceSchemeIDIn = value; return this; } public String getPriceSchemeDescription() { return PriceSchemeDescription; } public IN_PriceSchemesQuery setPriceSchemeDescription(String value) { this.PriceSchemeDescription = value; return this; } public String getPriceSchemeDescriptionStartsWith() { return PriceSchemeDescriptionStartsWith; } public IN_PriceSchemesQuery setPriceSchemeDescriptionStartsWith(String value) { this.PriceSchemeDescriptionStartsWith = value; return this; } public String getPriceSchemeDescriptionEndsWith() { return PriceSchemeDescriptionEndsWith; } public IN_PriceSchemesQuery setPriceSchemeDescriptionEndsWith(String value) { this.PriceSchemeDescriptionEndsWith = value; return this; } public String getPriceSchemeDescriptionContains() { return PriceSchemeDescriptionContains; } public IN_PriceSchemesQuery setPriceSchemeDescriptionContains(String value) { this.PriceSchemeDescriptionContains = value; return this; } public String getPriceSchemeDescriptionLike() { return PriceSchemeDescriptionLike; } public IN_PriceSchemesQuery setPriceSchemeDescriptionLike(String value) { this.PriceSchemeDescriptionLike = value; return this; } public ArrayList getPriceSchemeDescriptionBetween() { return PriceSchemeDescriptionBetween; } public IN_PriceSchemesQuery setPriceSchemeDescriptionBetween(ArrayList value) { this.PriceSchemeDescriptionBetween = value; return this; } public ArrayList getPriceSchemeDescriptionIn() { return PriceSchemeDescriptionIn; } public IN_PriceSchemesQuery setPriceSchemeDescriptionIn(ArrayList value) { this.PriceSchemeDescriptionIn = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public IN_PriceSchemesQuery setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getLastSavedDateTimeGreaterThanOrEqualTo() { return LastSavedDateTimeGreaterThanOrEqualTo; } public IN_PriceSchemesQuery setLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.LastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeGreaterThan() { return LastSavedDateTimeGreaterThan; } public IN_PriceSchemesQuery setLastSavedDateTimeGreaterThan(Date value) { this.LastSavedDateTimeGreaterThan = value; return this; } public Date getLastSavedDateTimeLessThan() { return LastSavedDateTimeLessThan; } public IN_PriceSchemesQuery setLastSavedDateTimeLessThan(Date value) { this.LastSavedDateTimeLessThan = value; return this; } public Date getLastSavedDateTimeLessThanOrEqualTo() { return LastSavedDateTimeLessThanOrEqualTo; } public IN_PriceSchemesQuery setLastSavedDateTimeLessThanOrEqualTo(Date value) { this.LastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeNotEqualTo() { return LastSavedDateTimeNotEqualTo; } public IN_PriceSchemesQuery setLastSavedDateTimeNotEqualTo(Date value) { this.LastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getLastSavedDateTimeBetween() { return LastSavedDateTimeBetween; } public IN_PriceSchemesQuery setLastSavedDateTimeBetween(ArrayList value) { this.LastSavedDateTimeBetween = value; return this; } public ArrayList getLastSavedDateTimeIn() { return LastSavedDateTimeIn; } public IN_PriceSchemesQuery setLastSavedDateTimeIn(ArrayList value) { this.LastSavedDateTimeIn = value; return this; } public Boolean isSchemeActive() { return SchemeActive; } public IN_PriceSchemesQuery setSchemeActive(Boolean value) { this.SchemeActive = value; return this; } public Boolean isFindTheCheapest() { return FindTheCheapest; } public IN_PriceSchemesQuery setFindTheCheapest(Boolean value) { this.FindTheCheapest = value; return this; } public Boolean getIsDefault() { return IsDefault; } public IN_PriceSchemesQuery setIsDefault(Boolean value) { this.IsDefault = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class IN_PricingGroupMatrixQuery extends QueryDb implements IReturn> { public String RecID = null; public String RecIDStartsWith = null; public String RecIDEndsWith = null; public String RecIDContains = null; public String RecIDLike = null; public ArrayList RecIDBetween = null; public ArrayList RecIDIn = null; public String IN_PricingGroups_RecID = null; public String IN_PricingGroups_RecIDStartsWith = null; public String IN_PricingGroups_RecIDEndsWith = null; public String IN_PricingGroups_RecIDContains = null; public String IN_PricingGroups_RecIDLike = null; public ArrayList IN_PricingGroups_RecIDBetween = null; public ArrayList IN_PricingGroups_RecIDIn = null; public String DB_PricingGroups_RecID = null; public String DB_PricingGroups_RecIDStartsWith = null; public String DB_PricingGroups_RecIDEndsWith = null; public String DB_PricingGroups_RecIDContains = null; public String DB_PricingGroups_RecIDLike = null; public ArrayList DB_PricingGroups_RecIDBetween = null; public ArrayList DB_PricingGroups_RecIDIn = null; public Short SourcePrice = null; public Short SourcePriceGreaterThanOrEqualTo = null; public Short SourcePriceGreaterThan = null; public Short SourcePriceLessThan = null; public Short SourcePriceLessThanOrEqualTo = null; public Short SourcePriceNotEqualTo = null; public ArrayList SourcePriceBetween = null; public ArrayList SourcePriceIn = null; public Short Mode = null; public Short ModeGreaterThanOrEqualTo = null; public Short ModeGreaterThan = null; public Short ModeLessThan = null; public Short ModeLessThanOrEqualTo = null; public Short ModeNotEqualTo = null; public ArrayList ModeBetween = null; public ArrayList ModeIn = null; public BigDecimal Amount = null; public BigDecimal AmountGreaterThanOrEqualTo = null; public BigDecimal AmountGreaterThan = null; public BigDecimal AmountLessThan = null; public BigDecimal AmountLessThanOrEqualTo = null; public BigDecimal AmountNotEqualTo = null; public ArrayList AmountBetween = null; public ArrayList AmountIn = null; public Boolean UseQuantityBreak = null; public BigDecimal QuantityBreak = null; public BigDecimal QuantityBreakGreaterThanOrEqualTo = null; public BigDecimal QuantityBreakGreaterThan = null; public BigDecimal QuantityBreakLessThan = null; public BigDecimal QuantityBreakLessThanOrEqualTo = null; public BigDecimal QuantityBreakNotEqualTo = null; public ArrayList QuantityBreakBetween = null; public ArrayList QuantityBreakIn = null; public ArrayList RowHash = null; public Integer ItemNo = null; public Integer ItemNoGreaterThanOrEqualTo = null; public Integer ItemNoGreaterThan = null; public Integer ItemNoLessThan = null; public Integer ItemNoLessThanOrEqualTo = null; public Integer ItemNoNotEqualTo = null; public ArrayList ItemNoBetween = null; public ArrayList ItemNoIn = null; public Date StartDate = null; public Date StartDateGreaterThanOrEqualTo = null; public Date StartDateGreaterThan = null; public Date StartDateLessThan = null; public Date StartDateLessThanOrEqualTo = null; public Date StartDateNotEqualTo = null; public ArrayList StartDateBetween = null; public ArrayList StartDateIn = null; public Date EndDate = null; public Date EndDateGreaterThanOrEqualTo = null; public Date EndDateGreaterThan = null; public Date EndDateLessThan = null; public Date EndDateLessThanOrEqualTo = null; public Date EndDateNotEqualTo = null; public ArrayList EndDateBetween = null; public ArrayList EndDateIn = null; public String getRecID() { return RecID; } public IN_PricingGroupMatrixQuery setRecID(String value) { this.RecID = value; return this; } public String getRecIDStartsWith() { return RecIDStartsWith; } public IN_PricingGroupMatrixQuery setRecIDStartsWith(String value) { this.RecIDStartsWith = value; return this; } public String getRecIDEndsWith() { return RecIDEndsWith; } public IN_PricingGroupMatrixQuery setRecIDEndsWith(String value) { this.RecIDEndsWith = value; return this; } public String getRecIDContains() { return RecIDContains; } public IN_PricingGroupMatrixQuery setRecIDContains(String value) { this.RecIDContains = value; return this; } public String getRecIDLike() { return RecIDLike; } public IN_PricingGroupMatrixQuery setRecIDLike(String value) { this.RecIDLike = value; return this; } public ArrayList getRecIDBetween() { return RecIDBetween; } public IN_PricingGroupMatrixQuery setRecIDBetween(ArrayList value) { this.RecIDBetween = value; return this; } public ArrayList getRecIDIn() { return RecIDIn; } public IN_PricingGroupMatrixQuery setRecIDIn(ArrayList value) { this.RecIDIn = value; return this; } public String getInPricingGroupsRecID() { return IN_PricingGroups_RecID; } public IN_PricingGroupMatrixQuery setInPricingGroupsRecID(String value) { this.IN_PricingGroups_RecID = value; return this; } public String getInPricingGroupsRecIDStartsWith() { return IN_PricingGroups_RecIDStartsWith; } public IN_PricingGroupMatrixQuery setInPricingGroupsRecIDStartsWith(String value) { this.IN_PricingGroups_RecIDStartsWith = value; return this; } public String getInPricingGroupsRecIDEndsWith() { return IN_PricingGroups_RecIDEndsWith; } public IN_PricingGroupMatrixQuery setInPricingGroupsRecIDEndsWith(String value) { this.IN_PricingGroups_RecIDEndsWith = value; return this; } public String getInPricingGroupsRecIDContains() { return IN_PricingGroups_RecIDContains; } public IN_PricingGroupMatrixQuery setInPricingGroupsRecIDContains(String value) { this.IN_PricingGroups_RecIDContains = value; return this; } public String getInPricingGroupsRecIDLike() { return IN_PricingGroups_RecIDLike; } public IN_PricingGroupMatrixQuery setInPricingGroupsRecIDLike(String value) { this.IN_PricingGroups_RecIDLike = value; return this; } public ArrayList getInPricingGroupsRecIDBetween() { return IN_PricingGroups_RecIDBetween; } public IN_PricingGroupMatrixQuery setInPricingGroupsRecIDBetween(ArrayList value) { this.IN_PricingGroups_RecIDBetween = value; return this; } public ArrayList getInPricingGroupsRecIDIn() { return IN_PricingGroups_RecIDIn; } public IN_PricingGroupMatrixQuery setInPricingGroupsRecIDIn(ArrayList value) { this.IN_PricingGroups_RecIDIn = value; return this; } public String getDbPricingGroupsRecID() { return DB_PricingGroups_RecID; } public IN_PricingGroupMatrixQuery setDbPricingGroupsRecID(String value) { this.DB_PricingGroups_RecID = value; return this; } public String getDbPricingGroupsRecIDStartsWith() { return DB_PricingGroups_RecIDStartsWith; } public IN_PricingGroupMatrixQuery setDbPricingGroupsRecIDStartsWith(String value) { this.DB_PricingGroups_RecIDStartsWith = value; return this; } public String getDbPricingGroupsRecIDEndsWith() { return DB_PricingGroups_RecIDEndsWith; } public IN_PricingGroupMatrixQuery setDbPricingGroupsRecIDEndsWith(String value) { this.DB_PricingGroups_RecIDEndsWith = value; return this; } public String getDbPricingGroupsRecIDContains() { return DB_PricingGroups_RecIDContains; } public IN_PricingGroupMatrixQuery setDbPricingGroupsRecIDContains(String value) { this.DB_PricingGroups_RecIDContains = value; return this; } public String getDbPricingGroupsRecIDLike() { return DB_PricingGroups_RecIDLike; } public IN_PricingGroupMatrixQuery setDbPricingGroupsRecIDLike(String value) { this.DB_PricingGroups_RecIDLike = value; return this; } public ArrayList getDbPricingGroupsRecIDBetween() { return DB_PricingGroups_RecIDBetween; } public IN_PricingGroupMatrixQuery setDbPricingGroupsRecIDBetween(ArrayList value) { this.DB_PricingGroups_RecIDBetween = value; return this; } public ArrayList getDbPricingGroupsRecIDIn() { return DB_PricingGroups_RecIDIn; } public IN_PricingGroupMatrixQuery setDbPricingGroupsRecIDIn(ArrayList value) { this.DB_PricingGroups_RecIDIn = value; return this; } public Short getSourcePrice() { return SourcePrice; } public IN_PricingGroupMatrixQuery setSourcePrice(Short value) { this.SourcePrice = value; return this; } public Short getSourcePriceGreaterThanOrEqualTo() { return SourcePriceGreaterThanOrEqualTo; } public IN_PricingGroupMatrixQuery setSourcePriceGreaterThanOrEqualTo(Short value) { this.SourcePriceGreaterThanOrEqualTo = value; return this; } public Short getSourcePriceGreaterThan() { return SourcePriceGreaterThan; } public IN_PricingGroupMatrixQuery setSourcePriceGreaterThan(Short value) { this.SourcePriceGreaterThan = value; return this; } public Short getSourcePriceLessThan() { return SourcePriceLessThan; } public IN_PricingGroupMatrixQuery setSourcePriceLessThan(Short value) { this.SourcePriceLessThan = value; return this; } public Short getSourcePriceLessThanOrEqualTo() { return SourcePriceLessThanOrEqualTo; } public IN_PricingGroupMatrixQuery setSourcePriceLessThanOrEqualTo(Short value) { this.SourcePriceLessThanOrEqualTo = value; return this; } public Short getSourcePriceNotEqualTo() { return SourcePriceNotEqualTo; } public IN_PricingGroupMatrixQuery setSourcePriceNotEqualTo(Short value) { this.SourcePriceNotEqualTo = value; return this; } public ArrayList getSourcePriceBetween() { return SourcePriceBetween; } public IN_PricingGroupMatrixQuery setSourcePriceBetween(ArrayList value) { this.SourcePriceBetween = value; return this; } public ArrayList getSourcePriceIn() { return SourcePriceIn; } public IN_PricingGroupMatrixQuery setSourcePriceIn(ArrayList value) { this.SourcePriceIn = value; return this; } public Short getMode() { return Mode; } public IN_PricingGroupMatrixQuery setMode(Short value) { this.Mode = value; return this; } public Short getModeGreaterThanOrEqualTo() { return ModeGreaterThanOrEqualTo; } public IN_PricingGroupMatrixQuery setModeGreaterThanOrEqualTo(Short value) { this.ModeGreaterThanOrEqualTo = value; return this; } public Short getModeGreaterThan() { return ModeGreaterThan; } public IN_PricingGroupMatrixQuery setModeGreaterThan(Short value) { this.ModeGreaterThan = value; return this; } public Short getModeLessThan() { return ModeLessThan; } public IN_PricingGroupMatrixQuery setModeLessThan(Short value) { this.ModeLessThan = value; return this; } public Short getModeLessThanOrEqualTo() { return ModeLessThanOrEqualTo; } public IN_PricingGroupMatrixQuery setModeLessThanOrEqualTo(Short value) { this.ModeLessThanOrEqualTo = value; return this; } public Short getModeNotEqualTo() { return ModeNotEqualTo; } public IN_PricingGroupMatrixQuery setModeNotEqualTo(Short value) { this.ModeNotEqualTo = value; return this; } public ArrayList getModeBetween() { return ModeBetween; } public IN_PricingGroupMatrixQuery setModeBetween(ArrayList value) { this.ModeBetween = value; return this; } public ArrayList getModeIn() { return ModeIn; } public IN_PricingGroupMatrixQuery setModeIn(ArrayList value) { this.ModeIn = value; return this; } public BigDecimal getAmount() { return Amount; } public IN_PricingGroupMatrixQuery setAmount(BigDecimal value) { this.Amount = value; return this; } public BigDecimal getAmountGreaterThanOrEqualTo() { return AmountGreaterThanOrEqualTo; } public IN_PricingGroupMatrixQuery setAmountGreaterThanOrEqualTo(BigDecimal value) { this.AmountGreaterThanOrEqualTo = value; return this; } public BigDecimal getAmountGreaterThan() { return AmountGreaterThan; } public IN_PricingGroupMatrixQuery setAmountGreaterThan(BigDecimal value) { this.AmountGreaterThan = value; return this; } public BigDecimal getAmountLessThan() { return AmountLessThan; } public IN_PricingGroupMatrixQuery setAmountLessThan(BigDecimal value) { this.AmountLessThan = value; return this; } public BigDecimal getAmountLessThanOrEqualTo() { return AmountLessThanOrEqualTo; } public IN_PricingGroupMatrixQuery setAmountLessThanOrEqualTo(BigDecimal value) { this.AmountLessThanOrEqualTo = value; return this; } public BigDecimal getAmountNotEqualTo() { return AmountNotEqualTo; } public IN_PricingGroupMatrixQuery setAmountNotEqualTo(BigDecimal value) { this.AmountNotEqualTo = value; return this; } public ArrayList getAmountBetween() { return AmountBetween; } public IN_PricingGroupMatrixQuery setAmountBetween(ArrayList value) { this.AmountBetween = value; return this; } public ArrayList getAmountIn() { return AmountIn; } public IN_PricingGroupMatrixQuery setAmountIn(ArrayList value) { this.AmountIn = value; return this; } public Boolean isUseQuantityBreak() { return UseQuantityBreak; } public IN_PricingGroupMatrixQuery setUseQuantityBreak(Boolean value) { this.UseQuantityBreak = value; return this; } public BigDecimal getQuantityBreak() { return QuantityBreak; } public IN_PricingGroupMatrixQuery setQuantityBreak(BigDecimal value) { this.QuantityBreak = value; return this; } public BigDecimal getQuantityBreakGreaterThanOrEqualTo() { return QuantityBreakGreaterThanOrEqualTo; } public IN_PricingGroupMatrixQuery setQuantityBreakGreaterThanOrEqualTo(BigDecimal value) { this.QuantityBreakGreaterThanOrEqualTo = value; return this; } public BigDecimal getQuantityBreakGreaterThan() { return QuantityBreakGreaterThan; } public IN_PricingGroupMatrixQuery setQuantityBreakGreaterThan(BigDecimal value) { this.QuantityBreakGreaterThan = value; return this; } public BigDecimal getQuantityBreakLessThan() { return QuantityBreakLessThan; } public IN_PricingGroupMatrixQuery setQuantityBreakLessThan(BigDecimal value) { this.QuantityBreakLessThan = value; return this; } public BigDecimal getQuantityBreakLessThanOrEqualTo() { return QuantityBreakLessThanOrEqualTo; } public IN_PricingGroupMatrixQuery setQuantityBreakLessThanOrEqualTo(BigDecimal value) { this.QuantityBreakLessThanOrEqualTo = value; return this; } public BigDecimal getQuantityBreakNotEqualTo() { return QuantityBreakNotEqualTo; } public IN_PricingGroupMatrixQuery setQuantityBreakNotEqualTo(BigDecimal value) { this.QuantityBreakNotEqualTo = value; return this; } public ArrayList getQuantityBreakBetween() { return QuantityBreakBetween; } public IN_PricingGroupMatrixQuery setQuantityBreakBetween(ArrayList value) { this.QuantityBreakBetween = value; return this; } public ArrayList getQuantityBreakIn() { return QuantityBreakIn; } public IN_PricingGroupMatrixQuery setQuantityBreakIn(ArrayList value) { this.QuantityBreakIn = value; return this; } public ArrayList getRowHash() { return RowHash; } public IN_PricingGroupMatrixQuery setRowHash(ArrayList value) { this.RowHash = value; return this; } public Integer getItemNo() { return ItemNo; } public IN_PricingGroupMatrixQuery setItemNo(Integer value) { this.ItemNo = value; return this; } public Integer getItemNoGreaterThanOrEqualTo() { return ItemNoGreaterThanOrEqualTo; } public IN_PricingGroupMatrixQuery setItemNoGreaterThanOrEqualTo(Integer value) { this.ItemNoGreaterThanOrEqualTo = value; return this; } public Integer getItemNoGreaterThan() { return ItemNoGreaterThan; } public IN_PricingGroupMatrixQuery setItemNoGreaterThan(Integer value) { this.ItemNoGreaterThan = value; return this; } public Integer getItemNoLessThan() { return ItemNoLessThan; } public IN_PricingGroupMatrixQuery setItemNoLessThan(Integer value) { this.ItemNoLessThan = value; return this; } public Integer getItemNoLessThanOrEqualTo() { return ItemNoLessThanOrEqualTo; } public IN_PricingGroupMatrixQuery setItemNoLessThanOrEqualTo(Integer value) { this.ItemNoLessThanOrEqualTo = value; return this; } public Integer getItemNoNotEqualTo() { return ItemNoNotEqualTo; } public IN_PricingGroupMatrixQuery setItemNoNotEqualTo(Integer value) { this.ItemNoNotEqualTo = value; return this; } public ArrayList getItemNoBetween() { return ItemNoBetween; } public IN_PricingGroupMatrixQuery setItemNoBetween(ArrayList value) { this.ItemNoBetween = value; return this; } public ArrayList getItemNoIn() { return ItemNoIn; } public IN_PricingGroupMatrixQuery setItemNoIn(ArrayList value) { this.ItemNoIn = value; return this; } public Date getStartDate() { return StartDate; } public IN_PricingGroupMatrixQuery setStartDate(Date value) { this.StartDate = value; return this; } public Date getStartDateGreaterThanOrEqualTo() { return StartDateGreaterThanOrEqualTo; } public IN_PricingGroupMatrixQuery setStartDateGreaterThanOrEqualTo(Date value) { this.StartDateGreaterThanOrEqualTo = value; return this; } public Date getStartDateGreaterThan() { return StartDateGreaterThan; } public IN_PricingGroupMatrixQuery setStartDateGreaterThan(Date value) { this.StartDateGreaterThan = value; return this; } public Date getStartDateLessThan() { return StartDateLessThan; } public IN_PricingGroupMatrixQuery setStartDateLessThan(Date value) { this.StartDateLessThan = value; return this; } public Date getStartDateLessThanOrEqualTo() { return StartDateLessThanOrEqualTo; } public IN_PricingGroupMatrixQuery setStartDateLessThanOrEqualTo(Date value) { this.StartDateLessThanOrEqualTo = value; return this; } public Date getStartDateNotEqualTo() { return StartDateNotEqualTo; } public IN_PricingGroupMatrixQuery setStartDateNotEqualTo(Date value) { this.StartDateNotEqualTo = value; return this; } public ArrayList getStartDateBetween() { return StartDateBetween; } public IN_PricingGroupMatrixQuery setStartDateBetween(ArrayList value) { this.StartDateBetween = value; return this; } public ArrayList getStartDateIn() { return StartDateIn; } public IN_PricingGroupMatrixQuery setStartDateIn(ArrayList value) { this.StartDateIn = value; return this; } public Date getEndDate() { return EndDate; } public IN_PricingGroupMatrixQuery setEndDate(Date value) { this.EndDate = value; return this; } public Date getEndDateGreaterThanOrEqualTo() { return EndDateGreaterThanOrEqualTo; } public IN_PricingGroupMatrixQuery setEndDateGreaterThanOrEqualTo(Date value) { this.EndDateGreaterThanOrEqualTo = value; return this; } public Date getEndDateGreaterThan() { return EndDateGreaterThan; } public IN_PricingGroupMatrixQuery setEndDateGreaterThan(Date value) { this.EndDateGreaterThan = value; return this; } public Date getEndDateLessThan() { return EndDateLessThan; } public IN_PricingGroupMatrixQuery setEndDateLessThan(Date value) { this.EndDateLessThan = value; return this; } public Date getEndDateLessThanOrEqualTo() { return EndDateLessThanOrEqualTo; } public IN_PricingGroupMatrixQuery setEndDateLessThanOrEqualTo(Date value) { this.EndDateLessThanOrEqualTo = value; return this; } public Date getEndDateNotEqualTo() { return EndDateNotEqualTo; } public IN_PricingGroupMatrixQuery setEndDateNotEqualTo(Date value) { this.EndDateNotEqualTo = value; return this; } public ArrayList getEndDateBetween() { return EndDateBetween; } public IN_PricingGroupMatrixQuery setEndDateBetween(ArrayList value) { this.EndDateBetween = value; return this; } public ArrayList getEndDateIn() { return EndDateIn; } public IN_PricingGroupMatrixQuery setEndDateIn(ArrayList value) { this.EndDateIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class IN_PricingGroupsQuery extends QueryDb implements IReturn> { public String RecID = null; public String RecIDStartsWith = null; public String RecIDEndsWith = null; public String RecIDContains = null; public String RecIDLike = null; public ArrayList RecIDBetween = null; public ArrayList RecIDIn = null; public Date LastSavedDateTime = null; public Date LastSavedDateTimeGreaterThanOrEqualTo = null; public Date LastSavedDateTimeGreaterThan = null; public Date LastSavedDateTimeLessThan = null; public Date LastSavedDateTimeLessThanOrEqualTo = null; public Date LastSavedDateTimeNotEqualTo = null; public ArrayList LastSavedDateTimeBetween = null; public ArrayList LastSavedDateTimeIn = null; public String Description = null; public String DescriptionStartsWith = null; public String DescriptionEndsWith = null; public String DescriptionContains = null; public String DescriptionLike = null; public ArrayList DescriptionBetween = null; public ArrayList DescriptionIn = null; public Boolean DefaultPriceGroup = null; public String getRecID() { return RecID; } public IN_PricingGroupsQuery setRecID(String value) { this.RecID = value; return this; } public String getRecIDStartsWith() { return RecIDStartsWith; } public IN_PricingGroupsQuery setRecIDStartsWith(String value) { this.RecIDStartsWith = value; return this; } public String getRecIDEndsWith() { return RecIDEndsWith; } public IN_PricingGroupsQuery setRecIDEndsWith(String value) { this.RecIDEndsWith = value; return this; } public String getRecIDContains() { return RecIDContains; } public IN_PricingGroupsQuery setRecIDContains(String value) { this.RecIDContains = value; return this; } public String getRecIDLike() { return RecIDLike; } public IN_PricingGroupsQuery setRecIDLike(String value) { this.RecIDLike = value; return this; } public ArrayList getRecIDBetween() { return RecIDBetween; } public IN_PricingGroupsQuery setRecIDBetween(ArrayList value) { this.RecIDBetween = value; return this; } public ArrayList getRecIDIn() { return RecIDIn; } public IN_PricingGroupsQuery setRecIDIn(ArrayList value) { this.RecIDIn = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public IN_PricingGroupsQuery setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getLastSavedDateTimeGreaterThanOrEqualTo() { return LastSavedDateTimeGreaterThanOrEqualTo; } public IN_PricingGroupsQuery setLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.LastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeGreaterThan() { return LastSavedDateTimeGreaterThan; } public IN_PricingGroupsQuery setLastSavedDateTimeGreaterThan(Date value) { this.LastSavedDateTimeGreaterThan = value; return this; } public Date getLastSavedDateTimeLessThan() { return LastSavedDateTimeLessThan; } public IN_PricingGroupsQuery setLastSavedDateTimeLessThan(Date value) { this.LastSavedDateTimeLessThan = value; return this; } public Date getLastSavedDateTimeLessThanOrEqualTo() { return LastSavedDateTimeLessThanOrEqualTo; } public IN_PricingGroupsQuery setLastSavedDateTimeLessThanOrEqualTo(Date value) { this.LastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeNotEqualTo() { return LastSavedDateTimeNotEqualTo; } public IN_PricingGroupsQuery setLastSavedDateTimeNotEqualTo(Date value) { this.LastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getLastSavedDateTimeBetween() { return LastSavedDateTimeBetween; } public IN_PricingGroupsQuery setLastSavedDateTimeBetween(ArrayList value) { this.LastSavedDateTimeBetween = value; return this; } public ArrayList getLastSavedDateTimeIn() { return LastSavedDateTimeIn; } public IN_PricingGroupsQuery setLastSavedDateTimeIn(ArrayList value) { this.LastSavedDateTimeIn = value; return this; } public String getDescription() { return Description; } public IN_PricingGroupsQuery setDescription(String value) { this.Description = value; return this; } public String getDescriptionStartsWith() { return DescriptionStartsWith; } public IN_PricingGroupsQuery setDescriptionStartsWith(String value) { this.DescriptionStartsWith = value; return this; } public String getDescriptionEndsWith() { return DescriptionEndsWith; } public IN_PricingGroupsQuery setDescriptionEndsWith(String value) { this.DescriptionEndsWith = value; return this; } public String getDescriptionContains() { return DescriptionContains; } public IN_PricingGroupsQuery setDescriptionContains(String value) { this.DescriptionContains = value; return this; } public String getDescriptionLike() { return DescriptionLike; } public IN_PricingGroupsQuery setDescriptionLike(String value) { this.DescriptionLike = value; return this; } public ArrayList getDescriptionBetween() { return DescriptionBetween; } public IN_PricingGroupsQuery setDescriptionBetween(ArrayList value) { this.DescriptionBetween = value; return this; } public ArrayList getDescriptionIn() { return DescriptionIn; } public IN_PricingGroupsQuery setDescriptionIn(ArrayList value) { this.DescriptionIn = value; return this; } public Boolean isDefaultPriceGroup() { return DefaultPriceGroup; } public IN_PricingGroupsQuery setDefaultPriceGroup(Boolean value) { this.DefaultPriceGroup = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class IN_ProductAvailabilityQuery extends QueryDb implements IReturn> { public String RecID = null; public String RecIDStartsWith = null; public String RecIDEndsWith = null; public String RecIDContains = null; public String RecIDLike = null; public ArrayList RecIDBetween = null; public ArrayList RecIDIn = null; public String InventoryID = null; public String InventoryIDStartsWith = null; public String InventoryIDEndsWith = null; public String InventoryIDContains = null; public String InventoryIDLike = null; public ArrayList InventoryIDBetween = null; public ArrayList InventoryIDIn = null; public String LogicalID = null; public String LogicalIDStartsWith = null; public String LogicalIDEndsWith = null; public String LogicalIDContains = null; public String LogicalIDLike = null; public ArrayList LogicalIDBetween = null; public ArrayList LogicalIDIn = null; public Boolean Available = null; public String getRecID() { return RecID; } public IN_ProductAvailabilityQuery setRecID(String value) { this.RecID = value; return this; } public String getRecIDStartsWith() { return RecIDStartsWith; } public IN_ProductAvailabilityQuery setRecIDStartsWith(String value) { this.RecIDStartsWith = value; return this; } public String getRecIDEndsWith() { return RecIDEndsWith; } public IN_ProductAvailabilityQuery setRecIDEndsWith(String value) { this.RecIDEndsWith = value; return this; } public String getRecIDContains() { return RecIDContains; } public IN_ProductAvailabilityQuery setRecIDContains(String value) { this.RecIDContains = value; return this; } public String getRecIDLike() { return RecIDLike; } public IN_ProductAvailabilityQuery setRecIDLike(String value) { this.RecIDLike = value; return this; } public ArrayList getRecIDBetween() { return RecIDBetween; } public IN_ProductAvailabilityQuery setRecIDBetween(ArrayList value) { this.RecIDBetween = value; return this; } public ArrayList getRecIDIn() { return RecIDIn; } public IN_ProductAvailabilityQuery setRecIDIn(ArrayList value) { this.RecIDIn = value; return this; } public String getInventoryID() { return InventoryID; } public IN_ProductAvailabilityQuery setInventoryID(String value) { this.InventoryID = value; return this; } public String getInventoryIDStartsWith() { return InventoryIDStartsWith; } public IN_ProductAvailabilityQuery setInventoryIDStartsWith(String value) { this.InventoryIDStartsWith = value; return this; } public String getInventoryIDEndsWith() { return InventoryIDEndsWith; } public IN_ProductAvailabilityQuery setInventoryIDEndsWith(String value) { this.InventoryIDEndsWith = value; return this; } public String getInventoryIDContains() { return InventoryIDContains; } public IN_ProductAvailabilityQuery setInventoryIDContains(String value) { this.InventoryIDContains = value; return this; } public String getInventoryIDLike() { return InventoryIDLike; } public IN_ProductAvailabilityQuery setInventoryIDLike(String value) { this.InventoryIDLike = value; return this; } public ArrayList getInventoryIDBetween() { return InventoryIDBetween; } public IN_ProductAvailabilityQuery setInventoryIDBetween(ArrayList value) { this.InventoryIDBetween = value; return this; } public ArrayList getInventoryIDIn() { return InventoryIDIn; } public IN_ProductAvailabilityQuery setInventoryIDIn(ArrayList value) { this.InventoryIDIn = value; return this; } public String getLogicalID() { return LogicalID; } public IN_ProductAvailabilityQuery setLogicalID(String value) { this.LogicalID = value; return this; } public String getLogicalIDStartsWith() { return LogicalIDStartsWith; } public IN_ProductAvailabilityQuery setLogicalIDStartsWith(String value) { this.LogicalIDStartsWith = value; return this; } public String getLogicalIDEndsWith() { return LogicalIDEndsWith; } public IN_ProductAvailabilityQuery setLogicalIDEndsWith(String value) { this.LogicalIDEndsWith = value; return this; } public String getLogicalIDContains() { return LogicalIDContains; } public IN_ProductAvailabilityQuery setLogicalIDContains(String value) { this.LogicalIDContains = value; return this; } public String getLogicalIDLike() { return LogicalIDLike; } public IN_ProductAvailabilityQuery setLogicalIDLike(String value) { this.LogicalIDLike = value; return this; } public ArrayList getLogicalIDBetween() { return LogicalIDBetween; } public IN_ProductAvailabilityQuery setLogicalIDBetween(ArrayList value) { this.LogicalIDBetween = value; return this; } public ArrayList getLogicalIDIn() { return LogicalIDIn; } public IN_ProductAvailabilityQuery setLogicalIDIn(ArrayList value) { this.LogicalIDIn = value; return this; } public Boolean isAvailable() { return Available; } public IN_ProductAvailabilityQuery setAvailable(Boolean value) { this.Available = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @Route(Path="/Queries/IN_Region", Verbs="GET") @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class IN_RegionQuery extends QueryDb implements IReturn> { public String RecID = null; public String RecIDStartsWith = null; public String RecIDEndsWith = null; public String RecIDContains = null; public String RecIDLike = null; public ArrayList RecIDBetween = null; public ArrayList RecIDIn = null; public String Name = null; public String NameStartsWith = null; public String NameEndsWith = null; public String NameContains = null; public String NameLike = null; public ArrayList NameBetween = null; public ArrayList NameIn = null; public String Description = null; public String DescriptionStartsWith = null; public String DescriptionEndsWith = null; public String DescriptionContains = null; public String DescriptionLike = null; public ArrayList DescriptionBetween = null; public ArrayList DescriptionIn = null; public Boolean IsDefault = null; public String HR_Staff_RecID_CreatedBy = null; public String HR_Staff_RecID_CreatedByStartsWith = null; public String HR_Staff_RecID_CreatedByEndsWith = null; public String HR_Staff_RecID_CreatedByContains = null; public String HR_Staff_RecID_CreatedByLike = null; public ArrayList HR_Staff_RecID_CreatedByBetween = null; public ArrayList HR_Staff_RecID_CreatedByIn = null; public Date CreatedDateTime = null; public Date CreatedDateTimeGreaterThanOrEqualTo = null; public Date CreatedDateTimeGreaterThan = null; public Date CreatedDateTimeLessThan = null; public Date CreatedDateTimeLessThanOrEqualTo = null; public Date CreatedDateTimeNotEqualTo = null; public ArrayList CreatedDateTimeBetween = null; public ArrayList CreatedDateTimeIn = null; public String HR_Staff_RecID_LastSavedBy = null; public String HR_Staff_RecID_LastSavedByStartsWith = null; public String HR_Staff_RecID_LastSavedByEndsWith = null; public String HR_Staff_RecID_LastSavedByContains = null; public String HR_Staff_RecID_LastSavedByLike = null; public ArrayList HR_Staff_RecID_LastSavedByBetween = null; public ArrayList HR_Staff_RecID_LastSavedByIn = null; public Date LastSavedDateTime = null; public Date LastSavedDateTimeGreaterThanOrEqualTo = null; public Date LastSavedDateTimeGreaterThan = null; public Date LastSavedDateTimeLessThan = null; public Date LastSavedDateTimeLessThanOrEqualTo = null; public Date LastSavedDateTimeNotEqualTo = null; public ArrayList LastSavedDateTimeBetween = null; public ArrayList LastSavedDateTimeIn = null; public String getRecID() { return RecID; } public IN_RegionQuery setRecID(String value) { this.RecID = value; return this; } public String getRecIDStartsWith() { return RecIDStartsWith; } public IN_RegionQuery setRecIDStartsWith(String value) { this.RecIDStartsWith = value; return this; } public String getRecIDEndsWith() { return RecIDEndsWith; } public IN_RegionQuery setRecIDEndsWith(String value) { this.RecIDEndsWith = value; return this; } public String getRecIDContains() { return RecIDContains; } public IN_RegionQuery setRecIDContains(String value) { this.RecIDContains = value; return this; } public String getRecIDLike() { return RecIDLike; } public IN_RegionQuery setRecIDLike(String value) { this.RecIDLike = value; return this; } public ArrayList getRecIDBetween() { return RecIDBetween; } public IN_RegionQuery setRecIDBetween(ArrayList value) { this.RecIDBetween = value; return this; } public ArrayList getRecIDIn() { return RecIDIn; } public IN_RegionQuery setRecIDIn(ArrayList value) { this.RecIDIn = value; return this; } public String getName() { return Name; } public IN_RegionQuery setName(String value) { this.Name = value; return this; } public String getNameStartsWith() { return NameStartsWith; } public IN_RegionQuery setNameStartsWith(String value) { this.NameStartsWith = value; return this; } public String getNameEndsWith() { return NameEndsWith; } public IN_RegionQuery setNameEndsWith(String value) { this.NameEndsWith = value; return this; } public String getNameContains() { return NameContains; } public IN_RegionQuery setNameContains(String value) { this.NameContains = value; return this; } public String getNameLike() { return NameLike; } public IN_RegionQuery setNameLike(String value) { this.NameLike = value; return this; } public ArrayList getNameBetween() { return NameBetween; } public IN_RegionQuery setNameBetween(ArrayList value) { this.NameBetween = value; return this; } public ArrayList getNameIn() { return NameIn; } public IN_RegionQuery setNameIn(ArrayList value) { this.NameIn = value; return this; } public String getDescription() { return Description; } public IN_RegionQuery setDescription(String value) { this.Description = value; return this; } public String getDescriptionStartsWith() { return DescriptionStartsWith; } public IN_RegionQuery setDescriptionStartsWith(String value) { this.DescriptionStartsWith = value; return this; } public String getDescriptionEndsWith() { return DescriptionEndsWith; } public IN_RegionQuery setDescriptionEndsWith(String value) { this.DescriptionEndsWith = value; return this; } public String getDescriptionContains() { return DescriptionContains; } public IN_RegionQuery setDescriptionContains(String value) { this.DescriptionContains = value; return this; } public String getDescriptionLike() { return DescriptionLike; } public IN_RegionQuery setDescriptionLike(String value) { this.DescriptionLike = value; return this; } public ArrayList getDescriptionBetween() { return DescriptionBetween; } public IN_RegionQuery setDescriptionBetween(ArrayList value) { this.DescriptionBetween = value; return this; } public ArrayList getDescriptionIn() { return DescriptionIn; } public IN_RegionQuery setDescriptionIn(ArrayList value) { this.DescriptionIn = value; return this; } public Boolean getIsDefault() { return IsDefault; } public IN_RegionQuery setIsDefault(Boolean value) { this.IsDefault = value; return this; } public String getHrStaffRecIDCreatedBy() { return HR_Staff_RecID_CreatedBy; } public IN_RegionQuery setHrStaffRecIDCreatedBy(String value) { this.HR_Staff_RecID_CreatedBy = value; return this; } public String getHrStaffRecIDCreatedByStartsWith() { return HR_Staff_RecID_CreatedByStartsWith; } public IN_RegionQuery setHrStaffRecIDCreatedByStartsWith(String value) { this.HR_Staff_RecID_CreatedByStartsWith = value; return this; } public String getHrStaffRecIDCreatedByEndsWith() { return HR_Staff_RecID_CreatedByEndsWith; } public IN_RegionQuery setHrStaffRecIDCreatedByEndsWith(String value) { this.HR_Staff_RecID_CreatedByEndsWith = value; return this; } public String getHrStaffRecIDCreatedByContains() { return HR_Staff_RecID_CreatedByContains; } public IN_RegionQuery setHrStaffRecIDCreatedByContains(String value) { this.HR_Staff_RecID_CreatedByContains = value; return this; } public String getHrStaffRecIDCreatedByLike() { return HR_Staff_RecID_CreatedByLike; } public IN_RegionQuery setHrStaffRecIDCreatedByLike(String value) { this.HR_Staff_RecID_CreatedByLike = value; return this; } public ArrayList getHrStaffRecIDCreatedByBetween() { return HR_Staff_RecID_CreatedByBetween; } public IN_RegionQuery setHrStaffRecIDCreatedByBetween(ArrayList value) { this.HR_Staff_RecID_CreatedByBetween = value; return this; } public ArrayList getHrStaffRecIDCreatedByIn() { return HR_Staff_RecID_CreatedByIn; } public IN_RegionQuery setHrStaffRecIDCreatedByIn(ArrayList value) { this.HR_Staff_RecID_CreatedByIn = value; return this; } public Date getCreatedDateTime() { return CreatedDateTime; } public IN_RegionQuery setCreatedDateTime(Date value) { this.CreatedDateTime = value; return this; } public Date getCreatedDateTimeGreaterThanOrEqualTo() { return CreatedDateTimeGreaterThanOrEqualTo; } public IN_RegionQuery setCreatedDateTimeGreaterThanOrEqualTo(Date value) { this.CreatedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getCreatedDateTimeGreaterThan() { return CreatedDateTimeGreaterThan; } public IN_RegionQuery setCreatedDateTimeGreaterThan(Date value) { this.CreatedDateTimeGreaterThan = value; return this; } public Date getCreatedDateTimeLessThan() { return CreatedDateTimeLessThan; } public IN_RegionQuery setCreatedDateTimeLessThan(Date value) { this.CreatedDateTimeLessThan = value; return this; } public Date getCreatedDateTimeLessThanOrEqualTo() { return CreatedDateTimeLessThanOrEqualTo; } public IN_RegionQuery setCreatedDateTimeLessThanOrEqualTo(Date value) { this.CreatedDateTimeLessThanOrEqualTo = value; return this; } public Date getCreatedDateTimeNotEqualTo() { return CreatedDateTimeNotEqualTo; } public IN_RegionQuery setCreatedDateTimeNotEqualTo(Date value) { this.CreatedDateTimeNotEqualTo = value; return this; } public ArrayList getCreatedDateTimeBetween() { return CreatedDateTimeBetween; } public IN_RegionQuery setCreatedDateTimeBetween(ArrayList value) { this.CreatedDateTimeBetween = value; return this; } public ArrayList getCreatedDateTimeIn() { return CreatedDateTimeIn; } public IN_RegionQuery setCreatedDateTimeIn(ArrayList value) { this.CreatedDateTimeIn = value; return this; } public String getHrStaffRecIDLastSavedBy() { return HR_Staff_RecID_LastSavedBy; } public IN_RegionQuery setHrStaffRecIDLastSavedBy(String value) { this.HR_Staff_RecID_LastSavedBy = value; return this; } public String getHrStaffRecIDLastSavedByStartsWith() { return HR_Staff_RecID_LastSavedByStartsWith; } public IN_RegionQuery setHrStaffRecIDLastSavedByStartsWith(String value) { this.HR_Staff_RecID_LastSavedByStartsWith = value; return this; } public String getHrStaffRecIDLastSavedByEndsWith() { return HR_Staff_RecID_LastSavedByEndsWith; } public IN_RegionQuery setHrStaffRecIDLastSavedByEndsWith(String value) { this.HR_Staff_RecID_LastSavedByEndsWith = value; return this; } public String getHrStaffRecIDLastSavedByContains() { return HR_Staff_RecID_LastSavedByContains; } public IN_RegionQuery setHrStaffRecIDLastSavedByContains(String value) { this.HR_Staff_RecID_LastSavedByContains = value; return this; } public String getHrStaffRecIDLastSavedByLike() { return HR_Staff_RecID_LastSavedByLike; } public IN_RegionQuery setHrStaffRecIDLastSavedByLike(String value) { this.HR_Staff_RecID_LastSavedByLike = value; return this; } public ArrayList getHrStaffRecIDLastSavedByBetween() { return HR_Staff_RecID_LastSavedByBetween; } public IN_RegionQuery setHrStaffRecIDLastSavedByBetween(ArrayList value) { this.HR_Staff_RecID_LastSavedByBetween = value; return this; } public ArrayList getHrStaffRecIDLastSavedByIn() { return HR_Staff_RecID_LastSavedByIn; } public IN_RegionQuery setHrStaffRecIDLastSavedByIn(ArrayList value) { this.HR_Staff_RecID_LastSavedByIn = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public IN_RegionQuery setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getLastSavedDateTimeGreaterThanOrEqualTo() { return LastSavedDateTimeGreaterThanOrEqualTo; } public IN_RegionQuery setLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.LastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeGreaterThan() { return LastSavedDateTimeGreaterThan; } public IN_RegionQuery setLastSavedDateTimeGreaterThan(Date value) { this.LastSavedDateTimeGreaterThan = value; return this; } public Date getLastSavedDateTimeLessThan() { return LastSavedDateTimeLessThan; } public IN_RegionQuery setLastSavedDateTimeLessThan(Date value) { this.LastSavedDateTimeLessThan = value; return this; } public Date getLastSavedDateTimeLessThanOrEqualTo() { return LastSavedDateTimeLessThanOrEqualTo; } public IN_RegionQuery setLastSavedDateTimeLessThanOrEqualTo(Date value) { this.LastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeNotEqualTo() { return LastSavedDateTimeNotEqualTo; } public IN_RegionQuery setLastSavedDateTimeNotEqualTo(Date value) { this.LastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getLastSavedDateTimeBetween() { return LastSavedDateTimeBetween; } public IN_RegionQuery setLastSavedDateTimeBetween(ArrayList value) { this.LastSavedDateTimeBetween = value; return this; } public ArrayList getLastSavedDateTimeIn() { return LastSavedDateTimeIn; } public IN_RegionQuery setLastSavedDateTimeIn(ArrayList value) { this.LastSavedDateTimeIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class IN_RegionSupplierOrderingQuery extends QueryDb implements IReturn> { public String RecID = null; public String RecIDStartsWith = null; public String RecIDEndsWith = null; public String RecIDContains = null; public String RecIDLike = null; public ArrayList RecIDBetween = null; public ArrayList RecIDIn = null; public String IN_Region_RecID = null; public String IN_Region_RecIDStartsWith = null; public String IN_Region_RecIDEndsWith = null; public String IN_Region_RecIDContains = null; public String IN_Region_RecIDLike = null; public ArrayList IN_Region_RecIDBetween = null; public ArrayList IN_Region_RecIDIn = null; public String IN_Main_InventoryID = null; public String IN_Main_InventoryIDStartsWith = null; public String IN_Main_InventoryIDEndsWith = null; public String IN_Main_InventoryIDContains = null; public String IN_Main_InventoryIDLike = null; public ArrayList IN_Main_InventoryIDBetween = null; public ArrayList IN_Main_InventoryIDIn = null; public Date LastSavedDateTime = null; public Date LastSavedDateTimeGreaterThanOrEqualTo = null; public Date LastSavedDateTimeGreaterThan = null; public Date LastSavedDateTimeLessThan = null; public Date LastSavedDateTimeLessThanOrEqualTo = null; public Date LastSavedDateTimeNotEqualTo = null; public ArrayList LastSavedDateTimeBetween = null; public ArrayList LastSavedDateTimeIn = null; public Boolean OrderEnabled = null; public String getRecID() { return RecID; } public IN_RegionSupplierOrderingQuery setRecID(String value) { this.RecID = value; return this; } public String getRecIDStartsWith() { return RecIDStartsWith; } public IN_RegionSupplierOrderingQuery setRecIDStartsWith(String value) { this.RecIDStartsWith = value; return this; } public String getRecIDEndsWith() { return RecIDEndsWith; } public IN_RegionSupplierOrderingQuery setRecIDEndsWith(String value) { this.RecIDEndsWith = value; return this; } public String getRecIDContains() { return RecIDContains; } public IN_RegionSupplierOrderingQuery setRecIDContains(String value) { this.RecIDContains = value; return this; } public String getRecIDLike() { return RecIDLike; } public IN_RegionSupplierOrderingQuery setRecIDLike(String value) { this.RecIDLike = value; return this; } public ArrayList getRecIDBetween() { return RecIDBetween; } public IN_RegionSupplierOrderingQuery setRecIDBetween(ArrayList value) { this.RecIDBetween = value; return this; } public ArrayList getRecIDIn() { return RecIDIn; } public IN_RegionSupplierOrderingQuery setRecIDIn(ArrayList value) { this.RecIDIn = value; return this; } public String getInRegionRecID() { return IN_Region_RecID; } public IN_RegionSupplierOrderingQuery setInRegionRecID(String value) { this.IN_Region_RecID = value; return this; } public String getInRegionRecIDStartsWith() { return IN_Region_RecIDStartsWith; } public IN_RegionSupplierOrderingQuery setInRegionRecIDStartsWith(String value) { this.IN_Region_RecIDStartsWith = value; return this; } public String getInRegionRecIDEndsWith() { return IN_Region_RecIDEndsWith; } public IN_RegionSupplierOrderingQuery setInRegionRecIDEndsWith(String value) { this.IN_Region_RecIDEndsWith = value; return this; } public String getInRegionRecIDContains() { return IN_Region_RecIDContains; } public IN_RegionSupplierOrderingQuery setInRegionRecIDContains(String value) { this.IN_Region_RecIDContains = value; return this; } public String getInRegionRecIDLike() { return IN_Region_RecIDLike; } public IN_RegionSupplierOrderingQuery setInRegionRecIDLike(String value) { this.IN_Region_RecIDLike = value; return this; } public ArrayList getInRegionRecIDBetween() { return IN_Region_RecIDBetween; } public IN_RegionSupplierOrderingQuery setInRegionRecIDBetween(ArrayList value) { this.IN_Region_RecIDBetween = value; return this; } public ArrayList getInRegionRecIDIn() { return IN_Region_RecIDIn; } public IN_RegionSupplierOrderingQuery setInRegionRecIDIn(ArrayList value) { this.IN_Region_RecIDIn = value; return this; } public String getInMainInventoryID() { return IN_Main_InventoryID; } public IN_RegionSupplierOrderingQuery setInMainInventoryID(String value) { this.IN_Main_InventoryID = value; return this; } public String getInMainInventoryIDStartsWith() { return IN_Main_InventoryIDStartsWith; } public IN_RegionSupplierOrderingQuery setInMainInventoryIDStartsWith(String value) { this.IN_Main_InventoryIDStartsWith = value; return this; } public String getInMainInventoryIDEndsWith() { return IN_Main_InventoryIDEndsWith; } public IN_RegionSupplierOrderingQuery setInMainInventoryIDEndsWith(String value) { this.IN_Main_InventoryIDEndsWith = value; return this; } public String getInMainInventoryIDContains() { return IN_Main_InventoryIDContains; } public IN_RegionSupplierOrderingQuery setInMainInventoryIDContains(String value) { this.IN_Main_InventoryIDContains = value; return this; } public String getInMainInventoryIDLike() { return IN_Main_InventoryIDLike; } public IN_RegionSupplierOrderingQuery setInMainInventoryIDLike(String value) { this.IN_Main_InventoryIDLike = value; return this; } public ArrayList getInMainInventoryIDBetween() { return IN_Main_InventoryIDBetween; } public IN_RegionSupplierOrderingQuery setInMainInventoryIDBetween(ArrayList value) { this.IN_Main_InventoryIDBetween = value; return this; } public ArrayList getInMainInventoryIDIn() { return IN_Main_InventoryIDIn; } public IN_RegionSupplierOrderingQuery setInMainInventoryIDIn(ArrayList value) { this.IN_Main_InventoryIDIn = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public IN_RegionSupplierOrderingQuery setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getLastSavedDateTimeGreaterThanOrEqualTo() { return LastSavedDateTimeGreaterThanOrEqualTo; } public IN_RegionSupplierOrderingQuery setLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.LastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeGreaterThan() { return LastSavedDateTimeGreaterThan; } public IN_RegionSupplierOrderingQuery setLastSavedDateTimeGreaterThan(Date value) { this.LastSavedDateTimeGreaterThan = value; return this; } public Date getLastSavedDateTimeLessThan() { return LastSavedDateTimeLessThan; } public IN_RegionSupplierOrderingQuery setLastSavedDateTimeLessThan(Date value) { this.LastSavedDateTimeLessThan = value; return this; } public Date getLastSavedDateTimeLessThanOrEqualTo() { return LastSavedDateTimeLessThanOrEqualTo; } public IN_RegionSupplierOrderingQuery setLastSavedDateTimeLessThanOrEqualTo(Date value) { this.LastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeNotEqualTo() { return LastSavedDateTimeNotEqualTo; } public IN_RegionSupplierOrderingQuery setLastSavedDateTimeNotEqualTo(Date value) { this.LastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getLastSavedDateTimeBetween() { return LastSavedDateTimeBetween; } public IN_RegionSupplierOrderingQuery setLastSavedDateTimeBetween(ArrayList value) { this.LastSavedDateTimeBetween = value; return this; } public ArrayList getLastSavedDateTimeIn() { return LastSavedDateTimeIn; } public IN_RegionSupplierOrderingQuery setLastSavedDateTimeIn(ArrayList value) { this.LastSavedDateTimeIn = value; return this; } public Boolean isOrderEnabled() { return OrderEnabled; } public IN_RegionSupplierOrderingQuery setOrderEnabled(Boolean value) { this.OrderEnabled = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class IN_SellingPricesQuery extends QueryDb implements IReturn> { public String InventoryID = null; public String InventoryIDStartsWith = null; public String InventoryIDEndsWith = null; public String InventoryIDContains = null; public String InventoryIDLike = null; public ArrayList InventoryIDBetween = null; public ArrayList InventoryIDIn = null; public Date ForwardPriceDate = null; public Date ForwardPriceDateGreaterThanOrEqualTo = null; public Date ForwardPriceDateGreaterThan = null; public Date ForwardPriceDateLessThan = null; public Date ForwardPriceDateLessThanOrEqualTo = null; public Date ForwardPriceDateNotEqualTo = null; public ArrayList ForwardPriceDateBetween = null; public ArrayList ForwardPriceDateIn = null; public Date CurrentPriceDate = null; public Date CurrentPriceDateGreaterThanOrEqualTo = null; public Date CurrentPriceDateGreaterThan = null; public Date CurrentPriceDateLessThan = null; public Date CurrentPriceDateLessThanOrEqualTo = null; public Date CurrentPriceDateNotEqualTo = null; public ArrayList CurrentPriceDateBetween = null; public ArrayList CurrentPriceDateIn = null; public BigDecimal Price1 = null; public BigDecimal Price1GreaterThanOrEqualTo = null; public BigDecimal Price1GreaterThan = null; public BigDecimal Price1LessThan = null; public BigDecimal Price1LessThanOrEqualTo = null; public BigDecimal Price1NotEqualTo = null; public ArrayList Price1Between = null; public ArrayList Price1In = null; public BigDecimal ForwardPrice1 = null; public BigDecimal ForwardPrice1GreaterThanOrEqualTo = null; public BigDecimal ForwardPrice1GreaterThan = null; public BigDecimal ForwardPrice1LessThan = null; public BigDecimal ForwardPrice1LessThanOrEqualTo = null; public BigDecimal ForwardPrice1NotEqualTo = null; public ArrayList ForwardPrice1Between = null; public ArrayList ForwardPrice1In = null; public Boolean Price1IsIncTax = null; public BigDecimal Price2 = null; public BigDecimal Price2GreaterThanOrEqualTo = null; public BigDecimal Price2GreaterThan = null; public BigDecimal Price2LessThan = null; public BigDecimal Price2LessThanOrEqualTo = null; public BigDecimal Price2NotEqualTo = null; public ArrayList Price2Between = null; public ArrayList Price2In = null; public BigDecimal ForwardPrice2 = null; public BigDecimal ForwardPrice2GreaterThanOrEqualTo = null; public BigDecimal ForwardPrice2GreaterThan = null; public BigDecimal ForwardPrice2LessThan = null; public BigDecimal ForwardPrice2LessThanOrEqualTo = null; public BigDecimal ForwardPrice2NotEqualTo = null; public ArrayList ForwardPrice2Between = null; public ArrayList ForwardPrice2In = null; public Boolean Price2IsIncTax = null; public BigDecimal Price3 = null; public BigDecimal Price3GreaterThanOrEqualTo = null; public BigDecimal Price3GreaterThan = null; public BigDecimal Price3LessThan = null; public BigDecimal Price3LessThanOrEqualTo = null; public BigDecimal Price3NotEqualTo = null; public ArrayList Price3Between = null; public ArrayList Price3In = null; public BigDecimal ForwardPrice3 = null; public BigDecimal ForwardPrice3GreaterThanOrEqualTo = null; public BigDecimal ForwardPrice3GreaterThan = null; public BigDecimal ForwardPrice3LessThan = null; public BigDecimal ForwardPrice3LessThanOrEqualTo = null; public BigDecimal ForwardPrice3NotEqualTo = null; public ArrayList ForwardPrice3Between = null; public ArrayList ForwardPrice3In = null; public Boolean Price3IsIncTax = null; public BigDecimal Price4 = null; public BigDecimal Price4GreaterThanOrEqualTo = null; public BigDecimal Price4GreaterThan = null; public BigDecimal Price4LessThan = null; public BigDecimal Price4LessThanOrEqualTo = null; public BigDecimal Price4NotEqualTo = null; public ArrayList Price4Between = null; public ArrayList Price4In = null; public BigDecimal ForwardPrice4 = null; public BigDecimal ForwardPrice4GreaterThanOrEqualTo = null; public BigDecimal ForwardPrice4GreaterThan = null; public BigDecimal ForwardPrice4LessThan = null; public BigDecimal ForwardPrice4LessThanOrEqualTo = null; public BigDecimal ForwardPrice4NotEqualTo = null; public ArrayList ForwardPrice4Between = null; public ArrayList ForwardPrice4In = null; public Boolean Price4IsIncTax = null; public BigDecimal Price5 = null; public BigDecimal Price5GreaterThanOrEqualTo = null; public BigDecimal Price5GreaterThan = null; public BigDecimal Price5LessThan = null; public BigDecimal Price5LessThanOrEqualTo = null; public BigDecimal Price5NotEqualTo = null; public ArrayList Price5Between = null; public ArrayList Price5In = null; public BigDecimal ForwardPrice5 = null; public BigDecimal ForwardPrice5GreaterThanOrEqualTo = null; public BigDecimal ForwardPrice5GreaterThan = null; public BigDecimal ForwardPrice5LessThan = null; public BigDecimal ForwardPrice5LessThanOrEqualTo = null; public BigDecimal ForwardPrice5NotEqualTo = null; public ArrayList ForwardPrice5Between = null; public ArrayList ForwardPrice5In = null; public Boolean Price5IsIncTax = null; public BigDecimal Price6 = null; public BigDecimal Price6GreaterThanOrEqualTo = null; public BigDecimal Price6GreaterThan = null; public BigDecimal Price6LessThan = null; public BigDecimal Price6LessThanOrEqualTo = null; public BigDecimal Price6NotEqualTo = null; public ArrayList Price6Between = null; public ArrayList Price6In = null; public BigDecimal ForwardPrice6 = null; public BigDecimal ForwardPrice6GreaterThanOrEqualTo = null; public BigDecimal ForwardPrice6GreaterThan = null; public BigDecimal ForwardPrice6LessThan = null; public BigDecimal ForwardPrice6LessThanOrEqualTo = null; public BigDecimal ForwardPrice6NotEqualTo = null; public ArrayList ForwardPrice6Between = null; public ArrayList ForwardPrice6In = null; public Boolean Price6IsIncTax = null; public BigDecimal Price7 = null; public BigDecimal Price7GreaterThanOrEqualTo = null; public BigDecimal Price7GreaterThan = null; public BigDecimal Price7LessThan = null; public BigDecimal Price7LessThanOrEqualTo = null; public BigDecimal Price7NotEqualTo = null; public ArrayList Price7Between = null; public ArrayList Price7In = null; public BigDecimal ForwardPrice7 = null; public BigDecimal ForwardPrice7GreaterThanOrEqualTo = null; public BigDecimal ForwardPrice7GreaterThan = null; public BigDecimal ForwardPrice7LessThan = null; public BigDecimal ForwardPrice7LessThanOrEqualTo = null; public BigDecimal ForwardPrice7NotEqualTo = null; public ArrayList ForwardPrice7Between = null; public ArrayList ForwardPrice7In = null; public Boolean Price7IsIncTax = null; public BigDecimal Price8 = null; public BigDecimal Price8GreaterThanOrEqualTo = null; public BigDecimal Price8GreaterThan = null; public BigDecimal Price8LessThan = null; public BigDecimal Price8LessThanOrEqualTo = null; public BigDecimal Price8NotEqualTo = null; public ArrayList Price8Between = null; public ArrayList Price8In = null; public BigDecimal ForwardPrice8 = null; public BigDecimal ForwardPrice8GreaterThanOrEqualTo = null; public BigDecimal ForwardPrice8GreaterThan = null; public BigDecimal ForwardPrice8LessThan = null; public BigDecimal ForwardPrice8LessThanOrEqualTo = null; public BigDecimal ForwardPrice8NotEqualTo = null; public ArrayList ForwardPrice8Between = null; public ArrayList ForwardPrice8In = null; public Boolean Price8IsIncTax = null; public BigDecimal Price9 = null; public BigDecimal Price9GreaterThanOrEqualTo = null; public BigDecimal Price9GreaterThan = null; public BigDecimal Price9LessThan = null; public BigDecimal Price9LessThanOrEqualTo = null; public BigDecimal Price9NotEqualTo = null; public ArrayList Price9Between = null; public ArrayList Price9In = null; public BigDecimal ForwardPrice9 = null; public BigDecimal ForwardPrice9GreaterThanOrEqualTo = null; public BigDecimal ForwardPrice9GreaterThan = null; public BigDecimal ForwardPrice9LessThan = null; public BigDecimal ForwardPrice9LessThanOrEqualTo = null; public BigDecimal ForwardPrice9NotEqualTo = null; public ArrayList ForwardPrice9Between = null; public ArrayList ForwardPrice9In = null; public Boolean Price9IsIncTax = null; public BigDecimal Price10 = null; public BigDecimal Price10GreaterThanOrEqualTo = null; public BigDecimal Price10GreaterThan = null; public BigDecimal Price10LessThan = null; public BigDecimal Price10LessThanOrEqualTo = null; public BigDecimal Price10NotEqualTo = null; public ArrayList Price10Between = null; public ArrayList Price10In = null; public BigDecimal ForwardPrice10 = null; public BigDecimal ForwardPrice10GreaterThanOrEqualTo = null; public BigDecimal ForwardPrice10GreaterThan = null; public BigDecimal ForwardPrice10LessThan = null; public BigDecimal ForwardPrice10LessThanOrEqualTo = null; public BigDecimal ForwardPrice10NotEqualTo = null; public ArrayList ForwardPrice10Between = null; public ArrayList ForwardPrice10In = null; public Boolean Price10IsIncTax = null; public String getInventoryID() { return InventoryID; } public IN_SellingPricesQuery setInventoryID(String value) { this.InventoryID = value; return this; } public String getInventoryIDStartsWith() { return InventoryIDStartsWith; } public IN_SellingPricesQuery setInventoryIDStartsWith(String value) { this.InventoryIDStartsWith = value; return this; } public String getInventoryIDEndsWith() { return InventoryIDEndsWith; } public IN_SellingPricesQuery setInventoryIDEndsWith(String value) { this.InventoryIDEndsWith = value; return this; } public String getInventoryIDContains() { return InventoryIDContains; } public IN_SellingPricesQuery setInventoryIDContains(String value) { this.InventoryIDContains = value; return this; } public String getInventoryIDLike() { return InventoryIDLike; } public IN_SellingPricesQuery setInventoryIDLike(String value) { this.InventoryIDLike = value; return this; } public ArrayList getInventoryIDBetween() { return InventoryIDBetween; } public IN_SellingPricesQuery setInventoryIDBetween(ArrayList value) { this.InventoryIDBetween = value; return this; } public ArrayList getInventoryIDIn() { return InventoryIDIn; } public IN_SellingPricesQuery setInventoryIDIn(ArrayList value) { this.InventoryIDIn = value; return this; } public Date getForwardPriceDate() { return ForwardPriceDate; } public IN_SellingPricesQuery setForwardPriceDate(Date value) { this.ForwardPriceDate = value; return this; } public Date getForwardPriceDateGreaterThanOrEqualTo() { return ForwardPriceDateGreaterThanOrEqualTo; } public IN_SellingPricesQuery setForwardPriceDateGreaterThanOrEqualTo(Date value) { this.ForwardPriceDateGreaterThanOrEqualTo = value; return this; } public Date getForwardPriceDateGreaterThan() { return ForwardPriceDateGreaterThan; } public IN_SellingPricesQuery setForwardPriceDateGreaterThan(Date value) { this.ForwardPriceDateGreaterThan = value; return this; } public Date getForwardPriceDateLessThan() { return ForwardPriceDateLessThan; } public IN_SellingPricesQuery setForwardPriceDateLessThan(Date value) { this.ForwardPriceDateLessThan = value; return this; } public Date getForwardPriceDateLessThanOrEqualTo() { return ForwardPriceDateLessThanOrEqualTo; } public IN_SellingPricesQuery setForwardPriceDateLessThanOrEqualTo(Date value) { this.ForwardPriceDateLessThanOrEqualTo = value; return this; } public Date getForwardPriceDateNotEqualTo() { return ForwardPriceDateNotEqualTo; } public IN_SellingPricesQuery setForwardPriceDateNotEqualTo(Date value) { this.ForwardPriceDateNotEqualTo = value; return this; } public ArrayList getForwardPriceDateBetween() { return ForwardPriceDateBetween; } public IN_SellingPricesQuery setForwardPriceDateBetween(ArrayList value) { this.ForwardPriceDateBetween = value; return this; } public ArrayList getForwardPriceDateIn() { return ForwardPriceDateIn; } public IN_SellingPricesQuery setForwardPriceDateIn(ArrayList value) { this.ForwardPriceDateIn = value; return this; } public Date getCurrentPriceDate() { return CurrentPriceDate; } public IN_SellingPricesQuery setCurrentPriceDate(Date value) { this.CurrentPriceDate = value; return this; } public Date getCurrentPriceDateGreaterThanOrEqualTo() { return CurrentPriceDateGreaterThanOrEqualTo; } public IN_SellingPricesQuery setCurrentPriceDateGreaterThanOrEqualTo(Date value) { this.CurrentPriceDateGreaterThanOrEqualTo = value; return this; } public Date getCurrentPriceDateGreaterThan() { return CurrentPriceDateGreaterThan; } public IN_SellingPricesQuery setCurrentPriceDateGreaterThan(Date value) { this.CurrentPriceDateGreaterThan = value; return this; } public Date getCurrentPriceDateLessThan() { return CurrentPriceDateLessThan; } public IN_SellingPricesQuery setCurrentPriceDateLessThan(Date value) { this.CurrentPriceDateLessThan = value; return this; } public Date getCurrentPriceDateLessThanOrEqualTo() { return CurrentPriceDateLessThanOrEqualTo; } public IN_SellingPricesQuery setCurrentPriceDateLessThanOrEqualTo(Date value) { this.CurrentPriceDateLessThanOrEqualTo = value; return this; } public Date getCurrentPriceDateNotEqualTo() { return CurrentPriceDateNotEqualTo; } public IN_SellingPricesQuery setCurrentPriceDateNotEqualTo(Date value) { this.CurrentPriceDateNotEqualTo = value; return this; } public ArrayList getCurrentPriceDateBetween() { return CurrentPriceDateBetween; } public IN_SellingPricesQuery setCurrentPriceDateBetween(ArrayList value) { this.CurrentPriceDateBetween = value; return this; } public ArrayList getCurrentPriceDateIn() { return CurrentPriceDateIn; } public IN_SellingPricesQuery setCurrentPriceDateIn(ArrayList value) { this.CurrentPriceDateIn = value; return this; } public BigDecimal getPrice1() { return Price1; } public IN_SellingPricesQuery setPrice1(BigDecimal value) { this.Price1 = value; return this; } public BigDecimal getPrice1GreaterThanOrEqualTo() { return Price1GreaterThanOrEqualTo; } public IN_SellingPricesQuery setPrice1GreaterThanOrEqualTo(BigDecimal value) { this.Price1GreaterThanOrEqualTo = value; return this; } public BigDecimal getPrice1GreaterThan() { return Price1GreaterThan; } public IN_SellingPricesQuery setPrice1GreaterThan(BigDecimal value) { this.Price1GreaterThan = value; return this; } public BigDecimal getPrice1LessThan() { return Price1LessThan; } public IN_SellingPricesQuery setPrice1LessThan(BigDecimal value) { this.Price1LessThan = value; return this; } public BigDecimal getPrice1LessThanOrEqualTo() { return Price1LessThanOrEqualTo; } public IN_SellingPricesQuery setPrice1LessThanOrEqualTo(BigDecimal value) { this.Price1LessThanOrEqualTo = value; return this; } public BigDecimal getPrice1NotEqualTo() { return Price1NotEqualTo; } public IN_SellingPricesQuery setPrice1NotEqualTo(BigDecimal value) { this.Price1NotEqualTo = value; return this; } public ArrayList getPrice1Between() { return Price1Between; } public IN_SellingPricesQuery setPrice1Between(ArrayList value) { this.Price1Between = value; return this; } public ArrayList getPrice1In() { return Price1In; } public IN_SellingPricesQuery setPrice1In(ArrayList value) { this.Price1In = value; return this; } public BigDecimal getForwardPrice1() { return ForwardPrice1; } public IN_SellingPricesQuery setForwardPrice1(BigDecimal value) { this.ForwardPrice1 = value; return this; } public BigDecimal getForwardPrice1GreaterThanOrEqualTo() { return ForwardPrice1GreaterThanOrEqualTo; } public IN_SellingPricesQuery setForwardPrice1GreaterThanOrEqualTo(BigDecimal value) { this.ForwardPrice1GreaterThanOrEqualTo = value; return this; } public BigDecimal getForwardPrice1GreaterThan() { return ForwardPrice1GreaterThan; } public IN_SellingPricesQuery setForwardPrice1GreaterThan(BigDecimal value) { this.ForwardPrice1GreaterThan = value; return this; } public BigDecimal getForwardPrice1LessThan() { return ForwardPrice1LessThan; } public IN_SellingPricesQuery setForwardPrice1LessThan(BigDecimal value) { this.ForwardPrice1LessThan = value; return this; } public BigDecimal getForwardPrice1LessThanOrEqualTo() { return ForwardPrice1LessThanOrEqualTo; } public IN_SellingPricesQuery setForwardPrice1LessThanOrEqualTo(BigDecimal value) { this.ForwardPrice1LessThanOrEqualTo = value; return this; } public BigDecimal getForwardPrice1NotEqualTo() { return ForwardPrice1NotEqualTo; } public IN_SellingPricesQuery setForwardPrice1NotEqualTo(BigDecimal value) { this.ForwardPrice1NotEqualTo = value; return this; } public ArrayList getForwardPrice1Between() { return ForwardPrice1Between; } public IN_SellingPricesQuery setForwardPrice1Between(ArrayList value) { this.ForwardPrice1Between = value; return this; } public ArrayList getForwardPrice1In() { return ForwardPrice1In; } public IN_SellingPricesQuery setForwardPrice1In(ArrayList value) { this.ForwardPrice1In = value; return this; } public Boolean isPrice1IsIncTax() { return Price1IsIncTax; } public IN_SellingPricesQuery setPrice1IsIncTax(Boolean value) { this.Price1IsIncTax = value; return this; } public BigDecimal getPrice2() { return Price2; } public IN_SellingPricesQuery setPrice2(BigDecimal value) { this.Price2 = value; return this; } public BigDecimal getPrice2GreaterThanOrEqualTo() { return Price2GreaterThanOrEqualTo; } public IN_SellingPricesQuery setPrice2GreaterThanOrEqualTo(BigDecimal value) { this.Price2GreaterThanOrEqualTo = value; return this; } public BigDecimal getPrice2GreaterThan() { return Price2GreaterThan; } public IN_SellingPricesQuery setPrice2GreaterThan(BigDecimal value) { this.Price2GreaterThan = value; return this; } public BigDecimal getPrice2LessThan() { return Price2LessThan; } public IN_SellingPricesQuery setPrice2LessThan(BigDecimal value) { this.Price2LessThan = value; return this; } public BigDecimal getPrice2LessThanOrEqualTo() { return Price2LessThanOrEqualTo; } public IN_SellingPricesQuery setPrice2LessThanOrEqualTo(BigDecimal value) { this.Price2LessThanOrEqualTo = value; return this; } public BigDecimal getPrice2NotEqualTo() { return Price2NotEqualTo; } public IN_SellingPricesQuery setPrice2NotEqualTo(BigDecimal value) { this.Price2NotEqualTo = value; return this; } public ArrayList getPrice2Between() { return Price2Between; } public IN_SellingPricesQuery setPrice2Between(ArrayList value) { this.Price2Between = value; return this; } public ArrayList getPrice2In() { return Price2In; } public IN_SellingPricesQuery setPrice2In(ArrayList value) { this.Price2In = value; return this; } public BigDecimal getForwardPrice2() { return ForwardPrice2; } public IN_SellingPricesQuery setForwardPrice2(BigDecimal value) { this.ForwardPrice2 = value; return this; } public BigDecimal getForwardPrice2GreaterThanOrEqualTo() { return ForwardPrice2GreaterThanOrEqualTo; } public IN_SellingPricesQuery setForwardPrice2GreaterThanOrEqualTo(BigDecimal value) { this.ForwardPrice2GreaterThanOrEqualTo = value; return this; } public BigDecimal getForwardPrice2GreaterThan() { return ForwardPrice2GreaterThan; } public IN_SellingPricesQuery setForwardPrice2GreaterThan(BigDecimal value) { this.ForwardPrice2GreaterThan = value; return this; } public BigDecimal getForwardPrice2LessThan() { return ForwardPrice2LessThan; } public IN_SellingPricesQuery setForwardPrice2LessThan(BigDecimal value) { this.ForwardPrice2LessThan = value; return this; } public BigDecimal getForwardPrice2LessThanOrEqualTo() { return ForwardPrice2LessThanOrEqualTo; } public IN_SellingPricesQuery setForwardPrice2LessThanOrEqualTo(BigDecimal value) { this.ForwardPrice2LessThanOrEqualTo = value; return this; } public BigDecimal getForwardPrice2NotEqualTo() { return ForwardPrice2NotEqualTo; } public IN_SellingPricesQuery setForwardPrice2NotEqualTo(BigDecimal value) { this.ForwardPrice2NotEqualTo = value; return this; } public ArrayList getForwardPrice2Between() { return ForwardPrice2Between; } public IN_SellingPricesQuery setForwardPrice2Between(ArrayList value) { this.ForwardPrice2Between = value; return this; } public ArrayList getForwardPrice2In() { return ForwardPrice2In; } public IN_SellingPricesQuery setForwardPrice2In(ArrayList value) { this.ForwardPrice2In = value; return this; } public Boolean isPrice2IsIncTax() { return Price2IsIncTax; } public IN_SellingPricesQuery setPrice2IsIncTax(Boolean value) { this.Price2IsIncTax = value; return this; } public BigDecimal getPrice3() { return Price3; } public IN_SellingPricesQuery setPrice3(BigDecimal value) { this.Price3 = value; return this; } public BigDecimal getPrice3GreaterThanOrEqualTo() { return Price3GreaterThanOrEqualTo; } public IN_SellingPricesQuery setPrice3GreaterThanOrEqualTo(BigDecimal value) { this.Price3GreaterThanOrEqualTo = value; return this; } public BigDecimal getPrice3GreaterThan() { return Price3GreaterThan; } public IN_SellingPricesQuery setPrice3GreaterThan(BigDecimal value) { this.Price3GreaterThan = value; return this; } public BigDecimal getPrice3LessThan() { return Price3LessThan; } public IN_SellingPricesQuery setPrice3LessThan(BigDecimal value) { this.Price3LessThan = value; return this; } public BigDecimal getPrice3LessThanOrEqualTo() { return Price3LessThanOrEqualTo; } public IN_SellingPricesQuery setPrice3LessThanOrEqualTo(BigDecimal value) { this.Price3LessThanOrEqualTo = value; return this; } public BigDecimal getPrice3NotEqualTo() { return Price3NotEqualTo; } public IN_SellingPricesQuery setPrice3NotEqualTo(BigDecimal value) { this.Price3NotEqualTo = value; return this; } public ArrayList getPrice3Between() { return Price3Between; } public IN_SellingPricesQuery setPrice3Between(ArrayList value) { this.Price3Between = value; return this; } public ArrayList getPrice3In() { return Price3In; } public IN_SellingPricesQuery setPrice3In(ArrayList value) { this.Price3In = value; return this; } public BigDecimal getForwardPrice3() { return ForwardPrice3; } public IN_SellingPricesQuery setForwardPrice3(BigDecimal value) { this.ForwardPrice3 = value; return this; } public BigDecimal getForwardPrice3GreaterThanOrEqualTo() { return ForwardPrice3GreaterThanOrEqualTo; } public IN_SellingPricesQuery setForwardPrice3GreaterThanOrEqualTo(BigDecimal value) { this.ForwardPrice3GreaterThanOrEqualTo = value; return this; } public BigDecimal getForwardPrice3GreaterThan() { return ForwardPrice3GreaterThan; } public IN_SellingPricesQuery setForwardPrice3GreaterThan(BigDecimal value) { this.ForwardPrice3GreaterThan = value; return this; } public BigDecimal getForwardPrice3LessThan() { return ForwardPrice3LessThan; } public IN_SellingPricesQuery setForwardPrice3LessThan(BigDecimal value) { this.ForwardPrice3LessThan = value; return this; } public BigDecimal getForwardPrice3LessThanOrEqualTo() { return ForwardPrice3LessThanOrEqualTo; } public IN_SellingPricesQuery setForwardPrice3LessThanOrEqualTo(BigDecimal value) { this.ForwardPrice3LessThanOrEqualTo = value; return this; } public BigDecimal getForwardPrice3NotEqualTo() { return ForwardPrice3NotEqualTo; } public IN_SellingPricesQuery setForwardPrice3NotEqualTo(BigDecimal value) { this.ForwardPrice3NotEqualTo = value; return this; } public ArrayList getForwardPrice3Between() { return ForwardPrice3Between; } public IN_SellingPricesQuery setForwardPrice3Between(ArrayList value) { this.ForwardPrice3Between = value; return this; } public ArrayList getForwardPrice3In() { return ForwardPrice3In; } public IN_SellingPricesQuery setForwardPrice3In(ArrayList value) { this.ForwardPrice3In = value; return this; } public Boolean isPrice3IsIncTax() { return Price3IsIncTax; } public IN_SellingPricesQuery setPrice3IsIncTax(Boolean value) { this.Price3IsIncTax = value; return this; } public BigDecimal getPrice4() { return Price4; } public IN_SellingPricesQuery setPrice4(BigDecimal value) { this.Price4 = value; return this; } public BigDecimal getPrice4GreaterThanOrEqualTo() { return Price4GreaterThanOrEqualTo; } public IN_SellingPricesQuery setPrice4GreaterThanOrEqualTo(BigDecimal value) { this.Price4GreaterThanOrEqualTo = value; return this; } public BigDecimal getPrice4GreaterThan() { return Price4GreaterThan; } public IN_SellingPricesQuery setPrice4GreaterThan(BigDecimal value) { this.Price4GreaterThan = value; return this; } public BigDecimal getPrice4LessThan() { return Price4LessThan; } public IN_SellingPricesQuery setPrice4LessThan(BigDecimal value) { this.Price4LessThan = value; return this; } public BigDecimal getPrice4LessThanOrEqualTo() { return Price4LessThanOrEqualTo; } public IN_SellingPricesQuery setPrice4LessThanOrEqualTo(BigDecimal value) { this.Price4LessThanOrEqualTo = value; return this; } public BigDecimal getPrice4NotEqualTo() { return Price4NotEqualTo; } public IN_SellingPricesQuery setPrice4NotEqualTo(BigDecimal value) { this.Price4NotEqualTo = value; return this; } public ArrayList getPrice4Between() { return Price4Between; } public IN_SellingPricesQuery setPrice4Between(ArrayList value) { this.Price4Between = value; return this; } public ArrayList getPrice4In() { return Price4In; } public IN_SellingPricesQuery setPrice4In(ArrayList value) { this.Price4In = value; return this; } public BigDecimal getForwardPrice4() { return ForwardPrice4; } public IN_SellingPricesQuery setForwardPrice4(BigDecimal value) { this.ForwardPrice4 = value; return this; } public BigDecimal getForwardPrice4GreaterThanOrEqualTo() { return ForwardPrice4GreaterThanOrEqualTo; } public IN_SellingPricesQuery setForwardPrice4GreaterThanOrEqualTo(BigDecimal value) { this.ForwardPrice4GreaterThanOrEqualTo = value; return this; } public BigDecimal getForwardPrice4GreaterThan() { return ForwardPrice4GreaterThan; } public IN_SellingPricesQuery setForwardPrice4GreaterThan(BigDecimal value) { this.ForwardPrice4GreaterThan = value; return this; } public BigDecimal getForwardPrice4LessThan() { return ForwardPrice4LessThan; } public IN_SellingPricesQuery setForwardPrice4LessThan(BigDecimal value) { this.ForwardPrice4LessThan = value; return this; } public BigDecimal getForwardPrice4LessThanOrEqualTo() { return ForwardPrice4LessThanOrEqualTo; } public IN_SellingPricesQuery setForwardPrice4LessThanOrEqualTo(BigDecimal value) { this.ForwardPrice4LessThanOrEqualTo = value; return this; } public BigDecimal getForwardPrice4NotEqualTo() { return ForwardPrice4NotEqualTo; } public IN_SellingPricesQuery setForwardPrice4NotEqualTo(BigDecimal value) { this.ForwardPrice4NotEqualTo = value; return this; } public ArrayList getForwardPrice4Between() { return ForwardPrice4Between; } public IN_SellingPricesQuery setForwardPrice4Between(ArrayList value) { this.ForwardPrice4Between = value; return this; } public ArrayList getForwardPrice4In() { return ForwardPrice4In; } public IN_SellingPricesQuery setForwardPrice4In(ArrayList value) { this.ForwardPrice4In = value; return this; } public Boolean isPrice4IsIncTax() { return Price4IsIncTax; } public IN_SellingPricesQuery setPrice4IsIncTax(Boolean value) { this.Price4IsIncTax = value; return this; } public BigDecimal getPrice5() { return Price5; } public IN_SellingPricesQuery setPrice5(BigDecimal value) { this.Price5 = value; return this; } public BigDecimal getPrice5GreaterThanOrEqualTo() { return Price5GreaterThanOrEqualTo; } public IN_SellingPricesQuery setPrice5GreaterThanOrEqualTo(BigDecimal value) { this.Price5GreaterThanOrEqualTo = value; return this; } public BigDecimal getPrice5GreaterThan() { return Price5GreaterThan; } public IN_SellingPricesQuery setPrice5GreaterThan(BigDecimal value) { this.Price5GreaterThan = value; return this; } public BigDecimal getPrice5LessThan() { return Price5LessThan; } public IN_SellingPricesQuery setPrice5LessThan(BigDecimal value) { this.Price5LessThan = value; return this; } public BigDecimal getPrice5LessThanOrEqualTo() { return Price5LessThanOrEqualTo; } public IN_SellingPricesQuery setPrice5LessThanOrEqualTo(BigDecimal value) { this.Price5LessThanOrEqualTo = value; return this; } public BigDecimal getPrice5NotEqualTo() { return Price5NotEqualTo; } public IN_SellingPricesQuery setPrice5NotEqualTo(BigDecimal value) { this.Price5NotEqualTo = value; return this; } public ArrayList getPrice5Between() { return Price5Between; } public IN_SellingPricesQuery setPrice5Between(ArrayList value) { this.Price5Between = value; return this; } public ArrayList getPrice5In() { return Price5In; } public IN_SellingPricesQuery setPrice5In(ArrayList value) { this.Price5In = value; return this; } public BigDecimal getForwardPrice5() { return ForwardPrice5; } public IN_SellingPricesQuery setForwardPrice5(BigDecimal value) { this.ForwardPrice5 = value; return this; } public BigDecimal getForwardPrice5GreaterThanOrEqualTo() { return ForwardPrice5GreaterThanOrEqualTo; } public IN_SellingPricesQuery setForwardPrice5GreaterThanOrEqualTo(BigDecimal value) { this.ForwardPrice5GreaterThanOrEqualTo = value; return this; } public BigDecimal getForwardPrice5GreaterThan() { return ForwardPrice5GreaterThan; } public IN_SellingPricesQuery setForwardPrice5GreaterThan(BigDecimal value) { this.ForwardPrice5GreaterThan = value; return this; } public BigDecimal getForwardPrice5LessThan() { return ForwardPrice5LessThan; } public IN_SellingPricesQuery setForwardPrice5LessThan(BigDecimal value) { this.ForwardPrice5LessThan = value; return this; } public BigDecimal getForwardPrice5LessThanOrEqualTo() { return ForwardPrice5LessThanOrEqualTo; } public IN_SellingPricesQuery setForwardPrice5LessThanOrEqualTo(BigDecimal value) { this.ForwardPrice5LessThanOrEqualTo = value; return this; } public BigDecimal getForwardPrice5NotEqualTo() { return ForwardPrice5NotEqualTo; } public IN_SellingPricesQuery setForwardPrice5NotEqualTo(BigDecimal value) { this.ForwardPrice5NotEqualTo = value; return this; } public ArrayList getForwardPrice5Between() { return ForwardPrice5Between; } public IN_SellingPricesQuery setForwardPrice5Between(ArrayList value) { this.ForwardPrice5Between = value; return this; } public ArrayList getForwardPrice5In() { return ForwardPrice5In; } public IN_SellingPricesQuery setForwardPrice5In(ArrayList value) { this.ForwardPrice5In = value; return this; } public Boolean isPrice5IsIncTax() { return Price5IsIncTax; } public IN_SellingPricesQuery setPrice5IsIncTax(Boolean value) { this.Price5IsIncTax = value; return this; } public BigDecimal getPrice6() { return Price6; } public IN_SellingPricesQuery setPrice6(BigDecimal value) { this.Price6 = value; return this; } public BigDecimal getPrice6GreaterThanOrEqualTo() { return Price6GreaterThanOrEqualTo; } public IN_SellingPricesQuery setPrice6GreaterThanOrEqualTo(BigDecimal value) { this.Price6GreaterThanOrEqualTo = value; return this; } public BigDecimal getPrice6GreaterThan() { return Price6GreaterThan; } public IN_SellingPricesQuery setPrice6GreaterThan(BigDecimal value) { this.Price6GreaterThan = value; return this; } public BigDecimal getPrice6LessThan() { return Price6LessThan; } public IN_SellingPricesQuery setPrice6LessThan(BigDecimal value) { this.Price6LessThan = value; return this; } public BigDecimal getPrice6LessThanOrEqualTo() { return Price6LessThanOrEqualTo; } public IN_SellingPricesQuery setPrice6LessThanOrEqualTo(BigDecimal value) { this.Price6LessThanOrEqualTo = value; return this; } public BigDecimal getPrice6NotEqualTo() { return Price6NotEqualTo; } public IN_SellingPricesQuery setPrice6NotEqualTo(BigDecimal value) { this.Price6NotEqualTo = value; return this; } public ArrayList getPrice6Between() { return Price6Between; } public IN_SellingPricesQuery setPrice6Between(ArrayList value) { this.Price6Between = value; return this; } public ArrayList getPrice6In() { return Price6In; } public IN_SellingPricesQuery setPrice6In(ArrayList value) { this.Price6In = value; return this; } public BigDecimal getForwardPrice6() { return ForwardPrice6; } public IN_SellingPricesQuery setForwardPrice6(BigDecimal value) { this.ForwardPrice6 = value; return this; } public BigDecimal getForwardPrice6GreaterThanOrEqualTo() { return ForwardPrice6GreaterThanOrEqualTo; } public IN_SellingPricesQuery setForwardPrice6GreaterThanOrEqualTo(BigDecimal value) { this.ForwardPrice6GreaterThanOrEqualTo = value; return this; } public BigDecimal getForwardPrice6GreaterThan() { return ForwardPrice6GreaterThan; } public IN_SellingPricesQuery setForwardPrice6GreaterThan(BigDecimal value) { this.ForwardPrice6GreaterThan = value; return this; } public BigDecimal getForwardPrice6LessThan() { return ForwardPrice6LessThan; } public IN_SellingPricesQuery setForwardPrice6LessThan(BigDecimal value) { this.ForwardPrice6LessThan = value; return this; } public BigDecimal getForwardPrice6LessThanOrEqualTo() { return ForwardPrice6LessThanOrEqualTo; } public IN_SellingPricesQuery setForwardPrice6LessThanOrEqualTo(BigDecimal value) { this.ForwardPrice6LessThanOrEqualTo = value; return this; } public BigDecimal getForwardPrice6NotEqualTo() { return ForwardPrice6NotEqualTo; } public IN_SellingPricesQuery setForwardPrice6NotEqualTo(BigDecimal value) { this.ForwardPrice6NotEqualTo = value; return this; } public ArrayList getForwardPrice6Between() { return ForwardPrice6Between; } public IN_SellingPricesQuery setForwardPrice6Between(ArrayList value) { this.ForwardPrice6Between = value; return this; } public ArrayList getForwardPrice6In() { return ForwardPrice6In; } public IN_SellingPricesQuery setForwardPrice6In(ArrayList value) { this.ForwardPrice6In = value; return this; } public Boolean isPrice6IsIncTax() { return Price6IsIncTax; } public IN_SellingPricesQuery setPrice6IsIncTax(Boolean value) { this.Price6IsIncTax = value; return this; } public BigDecimal getPrice7() { return Price7; } public IN_SellingPricesQuery setPrice7(BigDecimal value) { this.Price7 = value; return this; } public BigDecimal getPrice7GreaterThanOrEqualTo() { return Price7GreaterThanOrEqualTo; } public IN_SellingPricesQuery setPrice7GreaterThanOrEqualTo(BigDecimal value) { this.Price7GreaterThanOrEqualTo = value; return this; } public BigDecimal getPrice7GreaterThan() { return Price7GreaterThan; } public IN_SellingPricesQuery setPrice7GreaterThan(BigDecimal value) { this.Price7GreaterThan = value; return this; } public BigDecimal getPrice7LessThan() { return Price7LessThan; } public IN_SellingPricesQuery setPrice7LessThan(BigDecimal value) { this.Price7LessThan = value; return this; } public BigDecimal getPrice7LessThanOrEqualTo() { return Price7LessThanOrEqualTo; } public IN_SellingPricesQuery setPrice7LessThanOrEqualTo(BigDecimal value) { this.Price7LessThanOrEqualTo = value; return this; } public BigDecimal getPrice7NotEqualTo() { return Price7NotEqualTo; } public IN_SellingPricesQuery setPrice7NotEqualTo(BigDecimal value) { this.Price7NotEqualTo = value; return this; } public ArrayList getPrice7Between() { return Price7Between; } public IN_SellingPricesQuery setPrice7Between(ArrayList value) { this.Price7Between = value; return this; } public ArrayList getPrice7In() { return Price7In; } public IN_SellingPricesQuery setPrice7In(ArrayList value) { this.Price7In = value; return this; } public BigDecimal getForwardPrice7() { return ForwardPrice7; } public IN_SellingPricesQuery setForwardPrice7(BigDecimal value) { this.ForwardPrice7 = value; return this; } public BigDecimal getForwardPrice7GreaterThanOrEqualTo() { return ForwardPrice7GreaterThanOrEqualTo; } public IN_SellingPricesQuery setForwardPrice7GreaterThanOrEqualTo(BigDecimal value) { this.ForwardPrice7GreaterThanOrEqualTo = value; return this; } public BigDecimal getForwardPrice7GreaterThan() { return ForwardPrice7GreaterThan; } public IN_SellingPricesQuery setForwardPrice7GreaterThan(BigDecimal value) { this.ForwardPrice7GreaterThan = value; return this; } public BigDecimal getForwardPrice7LessThan() { return ForwardPrice7LessThan; } public IN_SellingPricesQuery setForwardPrice7LessThan(BigDecimal value) { this.ForwardPrice7LessThan = value; return this; } public BigDecimal getForwardPrice7LessThanOrEqualTo() { return ForwardPrice7LessThanOrEqualTo; } public IN_SellingPricesQuery setForwardPrice7LessThanOrEqualTo(BigDecimal value) { this.ForwardPrice7LessThanOrEqualTo = value; return this; } public BigDecimal getForwardPrice7NotEqualTo() { return ForwardPrice7NotEqualTo; } public IN_SellingPricesQuery setForwardPrice7NotEqualTo(BigDecimal value) { this.ForwardPrice7NotEqualTo = value; return this; } public ArrayList getForwardPrice7Between() { return ForwardPrice7Between; } public IN_SellingPricesQuery setForwardPrice7Between(ArrayList value) { this.ForwardPrice7Between = value; return this; } public ArrayList getForwardPrice7In() { return ForwardPrice7In; } public IN_SellingPricesQuery setForwardPrice7In(ArrayList value) { this.ForwardPrice7In = value; return this; } public Boolean isPrice7IsIncTax() { return Price7IsIncTax; } public IN_SellingPricesQuery setPrice7IsIncTax(Boolean value) { this.Price7IsIncTax = value; return this; } public BigDecimal getPrice8() { return Price8; } public IN_SellingPricesQuery setPrice8(BigDecimal value) { this.Price8 = value; return this; } public BigDecimal getPrice8GreaterThanOrEqualTo() { return Price8GreaterThanOrEqualTo; } public IN_SellingPricesQuery setPrice8GreaterThanOrEqualTo(BigDecimal value) { this.Price8GreaterThanOrEqualTo = value; return this; } public BigDecimal getPrice8GreaterThan() { return Price8GreaterThan; } public IN_SellingPricesQuery setPrice8GreaterThan(BigDecimal value) { this.Price8GreaterThan = value; return this; } public BigDecimal getPrice8LessThan() { return Price8LessThan; } public IN_SellingPricesQuery setPrice8LessThan(BigDecimal value) { this.Price8LessThan = value; return this; } public BigDecimal getPrice8LessThanOrEqualTo() { return Price8LessThanOrEqualTo; } public IN_SellingPricesQuery setPrice8LessThanOrEqualTo(BigDecimal value) { this.Price8LessThanOrEqualTo = value; return this; } public BigDecimal getPrice8NotEqualTo() { return Price8NotEqualTo; } public IN_SellingPricesQuery setPrice8NotEqualTo(BigDecimal value) { this.Price8NotEqualTo = value; return this; } public ArrayList getPrice8Between() { return Price8Between; } public IN_SellingPricesQuery setPrice8Between(ArrayList value) { this.Price8Between = value; return this; } public ArrayList getPrice8In() { return Price8In; } public IN_SellingPricesQuery setPrice8In(ArrayList value) { this.Price8In = value; return this; } public BigDecimal getForwardPrice8() { return ForwardPrice8; } public IN_SellingPricesQuery setForwardPrice8(BigDecimal value) { this.ForwardPrice8 = value; return this; } public BigDecimal getForwardPrice8GreaterThanOrEqualTo() { return ForwardPrice8GreaterThanOrEqualTo; } public IN_SellingPricesQuery setForwardPrice8GreaterThanOrEqualTo(BigDecimal value) { this.ForwardPrice8GreaterThanOrEqualTo = value; return this; } public BigDecimal getForwardPrice8GreaterThan() { return ForwardPrice8GreaterThan; } public IN_SellingPricesQuery setForwardPrice8GreaterThan(BigDecimal value) { this.ForwardPrice8GreaterThan = value; return this; } public BigDecimal getForwardPrice8LessThan() { return ForwardPrice8LessThan; } public IN_SellingPricesQuery setForwardPrice8LessThan(BigDecimal value) { this.ForwardPrice8LessThan = value; return this; } public BigDecimal getForwardPrice8LessThanOrEqualTo() { return ForwardPrice8LessThanOrEqualTo; } public IN_SellingPricesQuery setForwardPrice8LessThanOrEqualTo(BigDecimal value) { this.ForwardPrice8LessThanOrEqualTo = value; return this; } public BigDecimal getForwardPrice8NotEqualTo() { return ForwardPrice8NotEqualTo; } public IN_SellingPricesQuery setForwardPrice8NotEqualTo(BigDecimal value) { this.ForwardPrice8NotEqualTo = value; return this; } public ArrayList getForwardPrice8Between() { return ForwardPrice8Between; } public IN_SellingPricesQuery setForwardPrice8Between(ArrayList value) { this.ForwardPrice8Between = value; return this; } public ArrayList getForwardPrice8In() { return ForwardPrice8In; } public IN_SellingPricesQuery setForwardPrice8In(ArrayList value) { this.ForwardPrice8In = value; return this; } public Boolean isPrice8IsIncTax() { return Price8IsIncTax; } public IN_SellingPricesQuery setPrice8IsIncTax(Boolean value) { this.Price8IsIncTax = value; return this; } public BigDecimal getPrice9() { return Price9; } public IN_SellingPricesQuery setPrice9(BigDecimal value) { this.Price9 = value; return this; } public BigDecimal getPrice9GreaterThanOrEqualTo() { return Price9GreaterThanOrEqualTo; } public IN_SellingPricesQuery setPrice9GreaterThanOrEqualTo(BigDecimal value) { this.Price9GreaterThanOrEqualTo = value; return this; } public BigDecimal getPrice9GreaterThan() { return Price9GreaterThan; } public IN_SellingPricesQuery setPrice9GreaterThan(BigDecimal value) { this.Price9GreaterThan = value; return this; } public BigDecimal getPrice9LessThan() { return Price9LessThan; } public IN_SellingPricesQuery setPrice9LessThan(BigDecimal value) { this.Price9LessThan = value; return this; } public BigDecimal getPrice9LessThanOrEqualTo() { return Price9LessThanOrEqualTo; } public IN_SellingPricesQuery setPrice9LessThanOrEqualTo(BigDecimal value) { this.Price9LessThanOrEqualTo = value; return this; } public BigDecimal getPrice9NotEqualTo() { return Price9NotEqualTo; } public IN_SellingPricesQuery setPrice9NotEqualTo(BigDecimal value) { this.Price9NotEqualTo = value; return this; } public ArrayList getPrice9Between() { return Price9Between; } public IN_SellingPricesQuery setPrice9Between(ArrayList value) { this.Price9Between = value; return this; } public ArrayList getPrice9In() { return Price9In; } public IN_SellingPricesQuery setPrice9In(ArrayList value) { this.Price9In = value; return this; } public BigDecimal getForwardPrice9() { return ForwardPrice9; } public IN_SellingPricesQuery setForwardPrice9(BigDecimal value) { this.ForwardPrice9 = value; return this; } public BigDecimal getForwardPrice9GreaterThanOrEqualTo() { return ForwardPrice9GreaterThanOrEqualTo; } public IN_SellingPricesQuery setForwardPrice9GreaterThanOrEqualTo(BigDecimal value) { this.ForwardPrice9GreaterThanOrEqualTo = value; return this; } public BigDecimal getForwardPrice9GreaterThan() { return ForwardPrice9GreaterThan; } public IN_SellingPricesQuery setForwardPrice9GreaterThan(BigDecimal value) { this.ForwardPrice9GreaterThan = value; return this; } public BigDecimal getForwardPrice9LessThan() { return ForwardPrice9LessThan; } public IN_SellingPricesQuery setForwardPrice9LessThan(BigDecimal value) { this.ForwardPrice9LessThan = value; return this; } public BigDecimal getForwardPrice9LessThanOrEqualTo() { return ForwardPrice9LessThanOrEqualTo; } public IN_SellingPricesQuery setForwardPrice9LessThanOrEqualTo(BigDecimal value) { this.ForwardPrice9LessThanOrEqualTo = value; return this; } public BigDecimal getForwardPrice9NotEqualTo() { return ForwardPrice9NotEqualTo; } public IN_SellingPricesQuery setForwardPrice9NotEqualTo(BigDecimal value) { this.ForwardPrice9NotEqualTo = value; return this; } public ArrayList getForwardPrice9Between() { return ForwardPrice9Between; } public IN_SellingPricesQuery setForwardPrice9Between(ArrayList value) { this.ForwardPrice9Between = value; return this; } public ArrayList getForwardPrice9In() { return ForwardPrice9In; } public IN_SellingPricesQuery setForwardPrice9In(ArrayList value) { this.ForwardPrice9In = value; return this; } public Boolean isPrice9IsIncTax() { return Price9IsIncTax; } public IN_SellingPricesQuery setPrice9IsIncTax(Boolean value) { this.Price9IsIncTax = value; return this; } public BigDecimal getPrice10() { return Price10; } public IN_SellingPricesQuery setPrice10(BigDecimal value) { this.Price10 = value; return this; } public BigDecimal getPrice10GreaterThanOrEqualTo() { return Price10GreaterThanOrEqualTo; } public IN_SellingPricesQuery setPrice10GreaterThanOrEqualTo(BigDecimal value) { this.Price10GreaterThanOrEqualTo = value; return this; } public BigDecimal getPrice10GreaterThan() { return Price10GreaterThan; } public IN_SellingPricesQuery setPrice10GreaterThan(BigDecimal value) { this.Price10GreaterThan = value; return this; } public BigDecimal getPrice10LessThan() { return Price10LessThan; } public IN_SellingPricesQuery setPrice10LessThan(BigDecimal value) { this.Price10LessThan = value; return this; } public BigDecimal getPrice10LessThanOrEqualTo() { return Price10LessThanOrEqualTo; } public IN_SellingPricesQuery setPrice10LessThanOrEqualTo(BigDecimal value) { this.Price10LessThanOrEqualTo = value; return this; } public BigDecimal getPrice10NotEqualTo() { return Price10NotEqualTo; } public IN_SellingPricesQuery setPrice10NotEqualTo(BigDecimal value) { this.Price10NotEqualTo = value; return this; } public ArrayList getPrice10Between() { return Price10Between; } public IN_SellingPricesQuery setPrice10Between(ArrayList value) { this.Price10Between = value; return this; } public ArrayList getPrice10In() { return Price10In; } public IN_SellingPricesQuery setPrice10In(ArrayList value) { this.Price10In = value; return this; } public BigDecimal getForwardPrice10() { return ForwardPrice10; } public IN_SellingPricesQuery setForwardPrice10(BigDecimal value) { this.ForwardPrice10 = value; return this; } public BigDecimal getForwardPrice10GreaterThanOrEqualTo() { return ForwardPrice10GreaterThanOrEqualTo; } public IN_SellingPricesQuery setForwardPrice10GreaterThanOrEqualTo(BigDecimal value) { this.ForwardPrice10GreaterThanOrEqualTo = value; return this; } public BigDecimal getForwardPrice10GreaterThan() { return ForwardPrice10GreaterThan; } public IN_SellingPricesQuery setForwardPrice10GreaterThan(BigDecimal value) { this.ForwardPrice10GreaterThan = value; return this; } public BigDecimal getForwardPrice10LessThan() { return ForwardPrice10LessThan; } public IN_SellingPricesQuery setForwardPrice10LessThan(BigDecimal value) { this.ForwardPrice10LessThan = value; return this; } public BigDecimal getForwardPrice10LessThanOrEqualTo() { return ForwardPrice10LessThanOrEqualTo; } public IN_SellingPricesQuery setForwardPrice10LessThanOrEqualTo(BigDecimal value) { this.ForwardPrice10LessThanOrEqualTo = value; return this; } public BigDecimal getForwardPrice10NotEqualTo() { return ForwardPrice10NotEqualTo; } public IN_SellingPricesQuery setForwardPrice10NotEqualTo(BigDecimal value) { this.ForwardPrice10NotEqualTo = value; return this; } public ArrayList getForwardPrice10Between() { return ForwardPrice10Between; } public IN_SellingPricesQuery setForwardPrice10Between(ArrayList value) { this.ForwardPrice10Between = value; return this; } public ArrayList getForwardPrice10In() { return ForwardPrice10In; } public IN_SellingPricesQuery setForwardPrice10In(ArrayList value) { this.ForwardPrice10In = value; return this; } public Boolean isPrice10IsIncTax() { return Price10IsIncTax; } public IN_SellingPricesQuery setPrice10IsIncTax(Boolean value) { this.Price10IsIncTax = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class IN_SizesQuery extends QueryDb implements IReturn> { public String RecID = null; public String RecIDStartsWith = null; public String RecIDEndsWith = null; public String RecIDContains = null; public String RecIDLike = null; public ArrayList RecIDBetween = null; public ArrayList RecIDIn = null; public String Description = null; public String DescriptionStartsWith = null; public String DescriptionEndsWith = null; public String DescriptionContains = null; public String DescriptionLike = null; public ArrayList DescriptionBetween = null; public ArrayList DescriptionIn = null; public String SizeCode = null; public String SizeCodeStartsWith = null; public String SizeCodeEndsWith = null; public String SizeCodeContains = null; public String SizeCodeLike = null; public ArrayList SizeCodeBetween = null; public ArrayList SizeCodeIn = null; public String StyleID = null; public String StyleIDStartsWith = null; public String StyleIDEndsWith = null; public String StyleIDContains = null; public String StyleIDLike = null; public ArrayList StyleIDBetween = null; public ArrayList StyleIDIn = null; public Integer DisplayOrder = null; public Integer DisplayOrderGreaterThanOrEqualTo = null; public Integer DisplayOrderGreaterThan = null; public Integer DisplayOrderLessThan = null; public Integer DisplayOrderLessThanOrEqualTo = null; public Integer DisplayOrderNotEqualTo = null; public ArrayList DisplayOrderBetween = null; public ArrayList DisplayOrderIn = null; public String getRecID() { return RecID; } public IN_SizesQuery setRecID(String value) { this.RecID = value; return this; } public String getRecIDStartsWith() { return RecIDStartsWith; } public IN_SizesQuery setRecIDStartsWith(String value) { this.RecIDStartsWith = value; return this; } public String getRecIDEndsWith() { return RecIDEndsWith; } public IN_SizesQuery setRecIDEndsWith(String value) { this.RecIDEndsWith = value; return this; } public String getRecIDContains() { return RecIDContains; } public IN_SizesQuery setRecIDContains(String value) { this.RecIDContains = value; return this; } public String getRecIDLike() { return RecIDLike; } public IN_SizesQuery setRecIDLike(String value) { this.RecIDLike = value; return this; } public ArrayList getRecIDBetween() { return RecIDBetween; } public IN_SizesQuery setRecIDBetween(ArrayList value) { this.RecIDBetween = value; return this; } public ArrayList getRecIDIn() { return RecIDIn; } public IN_SizesQuery setRecIDIn(ArrayList value) { this.RecIDIn = value; return this; } public String getDescription() { return Description; } public IN_SizesQuery setDescription(String value) { this.Description = value; return this; } public String getDescriptionStartsWith() { return DescriptionStartsWith; } public IN_SizesQuery setDescriptionStartsWith(String value) { this.DescriptionStartsWith = value; return this; } public String getDescriptionEndsWith() { return DescriptionEndsWith; } public IN_SizesQuery setDescriptionEndsWith(String value) { this.DescriptionEndsWith = value; return this; } public String getDescriptionContains() { return DescriptionContains; } public IN_SizesQuery setDescriptionContains(String value) { this.DescriptionContains = value; return this; } public String getDescriptionLike() { return DescriptionLike; } public IN_SizesQuery setDescriptionLike(String value) { this.DescriptionLike = value; return this; } public ArrayList getDescriptionBetween() { return DescriptionBetween; } public IN_SizesQuery setDescriptionBetween(ArrayList value) { this.DescriptionBetween = value; return this; } public ArrayList getDescriptionIn() { return DescriptionIn; } public IN_SizesQuery setDescriptionIn(ArrayList value) { this.DescriptionIn = value; return this; } public String getSizeCode() { return SizeCode; } public IN_SizesQuery setSizeCode(String value) { this.SizeCode = value; return this; } public String getSizeCodeStartsWith() { return SizeCodeStartsWith; } public IN_SizesQuery setSizeCodeStartsWith(String value) { this.SizeCodeStartsWith = value; return this; } public String getSizeCodeEndsWith() { return SizeCodeEndsWith; } public IN_SizesQuery setSizeCodeEndsWith(String value) { this.SizeCodeEndsWith = value; return this; } public String getSizeCodeContains() { return SizeCodeContains; } public IN_SizesQuery setSizeCodeContains(String value) { this.SizeCodeContains = value; return this; } public String getSizeCodeLike() { return SizeCodeLike; } public IN_SizesQuery setSizeCodeLike(String value) { this.SizeCodeLike = value; return this; } public ArrayList getSizeCodeBetween() { return SizeCodeBetween; } public IN_SizesQuery setSizeCodeBetween(ArrayList value) { this.SizeCodeBetween = value; return this; } public ArrayList getSizeCodeIn() { return SizeCodeIn; } public IN_SizesQuery setSizeCodeIn(ArrayList value) { this.SizeCodeIn = value; return this; } public String getStyleID() { return StyleID; } public IN_SizesQuery setStyleID(String value) { this.StyleID = value; return this; } public String getStyleIDStartsWith() { return StyleIDStartsWith; } public IN_SizesQuery setStyleIDStartsWith(String value) { this.StyleIDStartsWith = value; return this; } public String getStyleIDEndsWith() { return StyleIDEndsWith; } public IN_SizesQuery setStyleIDEndsWith(String value) { this.StyleIDEndsWith = value; return this; } public String getStyleIDContains() { return StyleIDContains; } public IN_SizesQuery setStyleIDContains(String value) { this.StyleIDContains = value; return this; } public String getStyleIDLike() { return StyleIDLike; } public IN_SizesQuery setStyleIDLike(String value) { this.StyleIDLike = value; return this; } public ArrayList getStyleIDBetween() { return StyleIDBetween; } public IN_SizesQuery setStyleIDBetween(ArrayList value) { this.StyleIDBetween = value; return this; } public ArrayList getStyleIDIn() { return StyleIDIn; } public IN_SizesQuery setStyleIDIn(ArrayList value) { this.StyleIDIn = value; return this; } public Integer getDisplayOrder() { return DisplayOrder; } public IN_SizesQuery setDisplayOrder(Integer value) { this.DisplayOrder = value; return this; } public Integer getDisplayOrderGreaterThanOrEqualTo() { return DisplayOrderGreaterThanOrEqualTo; } public IN_SizesQuery setDisplayOrderGreaterThanOrEqualTo(Integer value) { this.DisplayOrderGreaterThanOrEqualTo = value; return this; } public Integer getDisplayOrderGreaterThan() { return DisplayOrderGreaterThan; } public IN_SizesQuery setDisplayOrderGreaterThan(Integer value) { this.DisplayOrderGreaterThan = value; return this; } public Integer getDisplayOrderLessThan() { return DisplayOrderLessThan; } public IN_SizesQuery setDisplayOrderLessThan(Integer value) { this.DisplayOrderLessThan = value; return this; } public Integer getDisplayOrderLessThanOrEqualTo() { return DisplayOrderLessThanOrEqualTo; } public IN_SizesQuery setDisplayOrderLessThanOrEqualTo(Integer value) { this.DisplayOrderLessThanOrEqualTo = value; return this; } public Integer getDisplayOrderNotEqualTo() { return DisplayOrderNotEqualTo; } public IN_SizesQuery setDisplayOrderNotEqualTo(Integer value) { this.DisplayOrderNotEqualTo = value; return this; } public ArrayList getDisplayOrderBetween() { return DisplayOrderBetween; } public IN_SizesQuery setDisplayOrderBetween(ArrayList value) { this.DisplayOrderBetween = value; return this; } public ArrayList getDisplayOrderIn() { return DisplayOrderIn; } public IN_SizesQuery setDisplayOrderIn(ArrayList value) { this.DisplayOrderIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @Route(Path="/Queries/IN_SOH", Verbs="GET") @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class IN_SOHQuery extends QueryDb implements IReturn> { public String LinkID = null; public String LinkIDStartsWith = null; public String LinkIDEndsWith = null; public String LinkIDContains = null; public String LinkIDLike = null; public ArrayList LinkIDBetween = null; public ArrayList LinkIDIn = null; public Date LastSavedDateTime = null; public Date LastSavedDateTimeGreaterThanOrEqualTo = null; public Date LastSavedDateTimeGreaterThan = null; public Date LastSavedDateTimeLessThan = null; public Date LastSavedDateTimeLessThanOrEqualTo = null; public Date LastSavedDateTimeNotEqualTo = null; public ArrayList LastSavedDateTimeBetween = null; public ArrayList LastSavedDateTimeIn = null; public String InventoryID = null; public String InventoryIDStartsWith = null; public String InventoryIDEndsWith = null; public String InventoryIDContains = null; public String InventoryIDLike = null; public ArrayList InventoryIDBetween = null; public ArrayList InventoryIDIn = null; public Date DateIn = null; public Date DateInGreaterThanOrEqualTo = null; public Date DateInGreaterThan = null; public Date DateInLessThan = null; public Date DateInLessThanOrEqualTo = null; public Date DateInNotEqualTo = null; public ArrayList DateInBetween = null; public ArrayList DateInIn = null; public BigDecimal QuantityIn = null; public BigDecimal QuantityInGreaterThanOrEqualTo = null; public BigDecimal QuantityInGreaterThan = null; public BigDecimal QuantityInLessThan = null; public BigDecimal QuantityInLessThanOrEqualTo = null; public BigDecimal QuantityInNotEqualTo = null; public ArrayList QuantityInBetween = null; public ArrayList QuantityInIn = null; public BigDecimal LCostIn = null; public BigDecimal LCostInGreaterThanOrEqualTo = null; public BigDecimal LCostInGreaterThan = null; public BigDecimal LCostInLessThan = null; public BigDecimal LCostInLessThanOrEqualTo = null; public BigDecimal LCostInNotEqualTo = null; public ArrayList LCostInBetween = null; public ArrayList LCostInIn = null; public BigDecimal SCostIn = null; public BigDecimal SCostInGreaterThanOrEqualTo = null; public BigDecimal SCostInGreaterThan = null; public BigDecimal SCostInLessThan = null; public BigDecimal SCostInLessThanOrEqualTo = null; public BigDecimal SCostInNotEqualTo = null; public ArrayList SCostInBetween = null; public ArrayList SCostInIn = null; public BigDecimal SpecialPrice = null; public BigDecimal SpecialPriceGreaterThanOrEqualTo = null; public BigDecimal SpecialPriceGreaterThan = null; public BigDecimal SpecialPriceLessThan = null; public BigDecimal SpecialPriceLessThanOrEqualTo = null; public BigDecimal SpecialPriceNotEqualTo = null; public ArrayList SpecialPriceBetween = null; public ArrayList SpecialPriceIn = null; public BigDecimal QuantityLeft = null; public BigDecimal QuantityLeftGreaterThanOrEqualTo = null; public BigDecimal QuantityLeftGreaterThan = null; public BigDecimal QuantityLeftLessThan = null; public BigDecimal QuantityLeftLessThanOrEqualTo = null; public BigDecimal QuantityLeftNotEqualTo = null; public ArrayList QuantityLeftBetween = null; public ArrayList QuantityLeftIn = null; public String SerialNo = null; public String SerialNoStartsWith = null; public String SerialNoEndsWith = null; public String SerialNoContains = null; public String SerialNoLike = null; public ArrayList SerialNoBetween = null; public ArrayList SerialNoIn = null; public BigDecimal TaxPaid = null; public BigDecimal TaxPaidGreaterThanOrEqualTo = null; public BigDecimal TaxPaidGreaterThan = null; public BigDecimal TaxPaidLessThan = null; public BigDecimal TaxPaidLessThanOrEqualTo = null; public BigDecimal TaxPaidNotEqualTo = null; public ArrayList TaxPaidBetween = null; public ArrayList TaxPaidIn = null; public String Ref = null; public String RefStartsWith = null; public String RefEndsWith = null; public String RefContains = null; public String RefLike = null; public ArrayList RefBetween = null; public ArrayList RefIn = null; public String SourceID = null; public String SourceIDStartsWith = null; public String SourceIDEndsWith = null; public String SourceIDContains = null; public String SourceIDLike = null; public ArrayList SourceIDBetween = null; public ArrayList SourceIDIn = null; public String HistoryText = null; public String HistoryTextStartsWith = null; public String HistoryTextEndsWith = null; public String HistoryTextContains = null; public String HistoryTextLike = null; public ArrayList HistoryTextBetween = null; public ArrayList HistoryTextIn = null; public BigDecimal QuantityAllocated = null; public BigDecimal QuantityAllocatedGreaterThanOrEqualTo = null; public BigDecimal QuantityAllocatedGreaterThan = null; public BigDecimal QuantityAllocatedLessThan = null; public BigDecimal QuantityAllocatedLessThanOrEqualTo = null; public BigDecimal QuantityAllocatedNotEqualTo = null; public ArrayList QuantityAllocatedBetween = null; public ArrayList QuantityAllocatedIn = null; public String IN_LogicalID = null; public String IN_LogicalIDStartsWith = null; public String IN_LogicalIDEndsWith = null; public String IN_LogicalIDContains = null; public String IN_LogicalIDLike = null; public ArrayList IN_LogicalIDBetween = null; public ArrayList IN_LogicalIDIn = null; public String BinLocationDesc = null; public String BinLocationDescStartsWith = null; public String BinLocationDescEndsWith = null; public String BinLocationDescContains = null; public String BinLocationDescLike = null; public ArrayList BinLocationDescBetween = null; public ArrayList BinLocationDescIn = null; public Date ExpiryDate = null; public Date ExpiryDateGreaterThanOrEqualTo = null; public Date ExpiryDateGreaterThan = null; public Date ExpiryDateLessThan = null; public Date ExpiryDateLessThanOrEqualTo = null; public Date ExpiryDateNotEqualTo = null; public ArrayList ExpiryDateBetween = null; public ArrayList ExpiryDateIn = null; public String SY_Forms_ClassName = null; public String SY_Forms_ClassNameStartsWith = null; public String SY_Forms_ClassNameEndsWith = null; public String SY_Forms_ClassNameContains = null; public String SY_Forms_ClassNameLike = null; public ArrayList SY_Forms_ClassNameBetween = null; public ArrayList SY_Forms_ClassNameIn = null; public String getLinkID() { return LinkID; } public IN_SOHQuery setLinkID(String value) { this.LinkID = value; return this; } public String getLinkIDStartsWith() { return LinkIDStartsWith; } public IN_SOHQuery setLinkIDStartsWith(String value) { this.LinkIDStartsWith = value; return this; } public String getLinkIDEndsWith() { return LinkIDEndsWith; } public IN_SOHQuery setLinkIDEndsWith(String value) { this.LinkIDEndsWith = value; return this; } public String getLinkIDContains() { return LinkIDContains; } public IN_SOHQuery setLinkIDContains(String value) { this.LinkIDContains = value; return this; } public String getLinkIDLike() { return LinkIDLike; } public IN_SOHQuery setLinkIDLike(String value) { this.LinkIDLike = value; return this; } public ArrayList getLinkIDBetween() { return LinkIDBetween; } public IN_SOHQuery setLinkIDBetween(ArrayList value) { this.LinkIDBetween = value; return this; } public ArrayList getLinkIDIn() { return LinkIDIn; } public IN_SOHQuery setLinkIDIn(ArrayList value) { this.LinkIDIn = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public IN_SOHQuery setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getLastSavedDateTimeGreaterThanOrEqualTo() { return LastSavedDateTimeGreaterThanOrEqualTo; } public IN_SOHQuery setLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.LastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeGreaterThan() { return LastSavedDateTimeGreaterThan; } public IN_SOHQuery setLastSavedDateTimeGreaterThan(Date value) { this.LastSavedDateTimeGreaterThan = value; return this; } public Date getLastSavedDateTimeLessThan() { return LastSavedDateTimeLessThan; } public IN_SOHQuery setLastSavedDateTimeLessThan(Date value) { this.LastSavedDateTimeLessThan = value; return this; } public Date getLastSavedDateTimeLessThanOrEqualTo() { return LastSavedDateTimeLessThanOrEqualTo; } public IN_SOHQuery setLastSavedDateTimeLessThanOrEqualTo(Date value) { this.LastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeNotEqualTo() { return LastSavedDateTimeNotEqualTo; } public IN_SOHQuery setLastSavedDateTimeNotEqualTo(Date value) { this.LastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getLastSavedDateTimeBetween() { return LastSavedDateTimeBetween; } public IN_SOHQuery setLastSavedDateTimeBetween(ArrayList value) { this.LastSavedDateTimeBetween = value; return this; } public ArrayList getLastSavedDateTimeIn() { return LastSavedDateTimeIn; } public IN_SOHQuery setLastSavedDateTimeIn(ArrayList value) { this.LastSavedDateTimeIn = value; return this; } public String getInventoryID() { return InventoryID; } public IN_SOHQuery setInventoryID(String value) { this.InventoryID = value; return this; } public String getInventoryIDStartsWith() { return InventoryIDStartsWith; } public IN_SOHQuery setInventoryIDStartsWith(String value) { this.InventoryIDStartsWith = value; return this; } public String getInventoryIDEndsWith() { return InventoryIDEndsWith; } public IN_SOHQuery setInventoryIDEndsWith(String value) { this.InventoryIDEndsWith = value; return this; } public String getInventoryIDContains() { return InventoryIDContains; } public IN_SOHQuery setInventoryIDContains(String value) { this.InventoryIDContains = value; return this; } public String getInventoryIDLike() { return InventoryIDLike; } public IN_SOHQuery setInventoryIDLike(String value) { this.InventoryIDLike = value; return this; } public ArrayList getInventoryIDBetween() { return InventoryIDBetween; } public IN_SOHQuery setInventoryIDBetween(ArrayList value) { this.InventoryIDBetween = value; return this; } public ArrayList getInventoryIDIn() { return InventoryIDIn; } public IN_SOHQuery setInventoryIDIn(ArrayList value) { this.InventoryIDIn = value; return this; } public Date getDateIn() { return DateIn; } public IN_SOHQuery setDateIn(Date value) { this.DateIn = value; return this; } public Date getDateInGreaterThanOrEqualTo() { return DateInGreaterThanOrEqualTo; } public IN_SOHQuery setDateInGreaterThanOrEqualTo(Date value) { this.DateInGreaterThanOrEqualTo = value; return this; } public Date getDateInGreaterThan() { return DateInGreaterThan; } public IN_SOHQuery setDateInGreaterThan(Date value) { this.DateInGreaterThan = value; return this; } public Date getDateInLessThan() { return DateInLessThan; } public IN_SOHQuery setDateInLessThan(Date value) { this.DateInLessThan = value; return this; } public Date getDateInLessThanOrEqualTo() { return DateInLessThanOrEqualTo; } public IN_SOHQuery setDateInLessThanOrEqualTo(Date value) { this.DateInLessThanOrEqualTo = value; return this; } public Date getDateInNotEqualTo() { return DateInNotEqualTo; } public IN_SOHQuery setDateInNotEqualTo(Date value) { this.DateInNotEqualTo = value; return this; } public ArrayList getDateInBetween() { return DateInBetween; } public IN_SOHQuery setDateInBetween(ArrayList value) { this.DateInBetween = value; return this; } public ArrayList getDateInIn() { return DateInIn; } public IN_SOHQuery setDateInIn(ArrayList value) { this.DateInIn = value; return this; } public BigDecimal getQuantityIn() { return QuantityIn; } public IN_SOHQuery setQuantityIn(BigDecimal value) { this.QuantityIn = value; return this; } public BigDecimal getQuantityInGreaterThanOrEqualTo() { return QuantityInGreaterThanOrEqualTo; } public IN_SOHQuery setQuantityInGreaterThanOrEqualTo(BigDecimal value) { this.QuantityInGreaterThanOrEqualTo = value; return this; } public BigDecimal getQuantityInGreaterThan() { return QuantityInGreaterThan; } public IN_SOHQuery setQuantityInGreaterThan(BigDecimal value) { this.QuantityInGreaterThan = value; return this; } public BigDecimal getQuantityInLessThan() { return QuantityInLessThan; } public IN_SOHQuery setQuantityInLessThan(BigDecimal value) { this.QuantityInLessThan = value; return this; } public BigDecimal getQuantityInLessThanOrEqualTo() { return QuantityInLessThanOrEqualTo; } public IN_SOHQuery setQuantityInLessThanOrEqualTo(BigDecimal value) { this.QuantityInLessThanOrEqualTo = value; return this; } public BigDecimal getQuantityInNotEqualTo() { return QuantityInNotEqualTo; } public IN_SOHQuery setQuantityInNotEqualTo(BigDecimal value) { this.QuantityInNotEqualTo = value; return this; } public ArrayList getQuantityInBetween() { return QuantityInBetween; } public IN_SOHQuery setQuantityInBetween(ArrayList value) { this.QuantityInBetween = value; return this; } public ArrayList getQuantityInIn() { return QuantityInIn; } public IN_SOHQuery setQuantityInIn(ArrayList value) { this.QuantityInIn = value; return this; } public BigDecimal getLCostIn() { return LCostIn; } public IN_SOHQuery setLCostIn(BigDecimal value) { this.LCostIn = value; return this; } public BigDecimal getLCostInGreaterThanOrEqualTo() { return LCostInGreaterThanOrEqualTo; } public IN_SOHQuery setLCostInGreaterThanOrEqualTo(BigDecimal value) { this.LCostInGreaterThanOrEqualTo = value; return this; } public BigDecimal getLCostInGreaterThan() { return LCostInGreaterThan; } public IN_SOHQuery setLCostInGreaterThan(BigDecimal value) { this.LCostInGreaterThan = value; return this; } public BigDecimal getLCostInLessThan() { return LCostInLessThan; } public IN_SOHQuery setLCostInLessThan(BigDecimal value) { this.LCostInLessThan = value; return this; } public BigDecimal getLCostInLessThanOrEqualTo() { return LCostInLessThanOrEqualTo; } public IN_SOHQuery setLCostInLessThanOrEqualTo(BigDecimal value) { this.LCostInLessThanOrEqualTo = value; return this; } public BigDecimal getLCostInNotEqualTo() { return LCostInNotEqualTo; } public IN_SOHQuery setLCostInNotEqualTo(BigDecimal value) { this.LCostInNotEqualTo = value; return this; } public ArrayList getLCostInBetween() { return LCostInBetween; } public IN_SOHQuery setLCostInBetween(ArrayList value) { this.LCostInBetween = value; return this; } public ArrayList getLCostInIn() { return LCostInIn; } public IN_SOHQuery setLCostInIn(ArrayList value) { this.LCostInIn = value; return this; } public BigDecimal getSCostIn() { return SCostIn; } public IN_SOHQuery setSCostIn(BigDecimal value) { this.SCostIn = value; return this; } public BigDecimal getSCostInGreaterThanOrEqualTo() { return SCostInGreaterThanOrEqualTo; } public IN_SOHQuery setSCostInGreaterThanOrEqualTo(BigDecimal value) { this.SCostInGreaterThanOrEqualTo = value; return this; } public BigDecimal getSCostInGreaterThan() { return SCostInGreaterThan; } public IN_SOHQuery setSCostInGreaterThan(BigDecimal value) { this.SCostInGreaterThan = value; return this; } public BigDecimal getSCostInLessThan() { return SCostInLessThan; } public IN_SOHQuery setSCostInLessThan(BigDecimal value) { this.SCostInLessThan = value; return this; } public BigDecimal getSCostInLessThanOrEqualTo() { return SCostInLessThanOrEqualTo; } public IN_SOHQuery setSCostInLessThanOrEqualTo(BigDecimal value) { this.SCostInLessThanOrEqualTo = value; return this; } public BigDecimal getSCostInNotEqualTo() { return SCostInNotEqualTo; } public IN_SOHQuery setSCostInNotEqualTo(BigDecimal value) { this.SCostInNotEqualTo = value; return this; } public ArrayList getSCostInBetween() { return SCostInBetween; } public IN_SOHQuery setSCostInBetween(ArrayList value) { this.SCostInBetween = value; return this; } public ArrayList getSCostInIn() { return SCostInIn; } public IN_SOHQuery setSCostInIn(ArrayList value) { this.SCostInIn = value; return this; } public BigDecimal getSpecialPrice() { return SpecialPrice; } public IN_SOHQuery setSpecialPrice(BigDecimal value) { this.SpecialPrice = value; return this; } public BigDecimal getSpecialPriceGreaterThanOrEqualTo() { return SpecialPriceGreaterThanOrEqualTo; } public IN_SOHQuery setSpecialPriceGreaterThanOrEqualTo(BigDecimal value) { this.SpecialPriceGreaterThanOrEqualTo = value; return this; } public BigDecimal getSpecialPriceGreaterThan() { return SpecialPriceGreaterThan; } public IN_SOHQuery setSpecialPriceGreaterThan(BigDecimal value) { this.SpecialPriceGreaterThan = value; return this; } public BigDecimal getSpecialPriceLessThan() { return SpecialPriceLessThan; } public IN_SOHQuery setSpecialPriceLessThan(BigDecimal value) { this.SpecialPriceLessThan = value; return this; } public BigDecimal getSpecialPriceLessThanOrEqualTo() { return SpecialPriceLessThanOrEqualTo; } public IN_SOHQuery setSpecialPriceLessThanOrEqualTo(BigDecimal value) { this.SpecialPriceLessThanOrEqualTo = value; return this; } public BigDecimal getSpecialPriceNotEqualTo() { return SpecialPriceNotEqualTo; } public IN_SOHQuery setSpecialPriceNotEqualTo(BigDecimal value) { this.SpecialPriceNotEqualTo = value; return this; } public ArrayList getSpecialPriceBetween() { return SpecialPriceBetween; } public IN_SOHQuery setSpecialPriceBetween(ArrayList value) { this.SpecialPriceBetween = value; return this; } public ArrayList getSpecialPriceIn() { return SpecialPriceIn; } public IN_SOHQuery setSpecialPriceIn(ArrayList value) { this.SpecialPriceIn = value; return this; } public BigDecimal getQuantityLeft() { return QuantityLeft; } public IN_SOHQuery setQuantityLeft(BigDecimal value) { this.QuantityLeft = value; return this; } public BigDecimal getQuantityLeftGreaterThanOrEqualTo() { return QuantityLeftGreaterThanOrEqualTo; } public IN_SOHQuery setQuantityLeftGreaterThanOrEqualTo(BigDecimal value) { this.QuantityLeftGreaterThanOrEqualTo = value; return this; } public BigDecimal getQuantityLeftGreaterThan() { return QuantityLeftGreaterThan; } public IN_SOHQuery setQuantityLeftGreaterThan(BigDecimal value) { this.QuantityLeftGreaterThan = value; return this; } public BigDecimal getQuantityLeftLessThan() { return QuantityLeftLessThan; } public IN_SOHQuery setQuantityLeftLessThan(BigDecimal value) { this.QuantityLeftLessThan = value; return this; } public BigDecimal getQuantityLeftLessThanOrEqualTo() { return QuantityLeftLessThanOrEqualTo; } public IN_SOHQuery setQuantityLeftLessThanOrEqualTo(BigDecimal value) { this.QuantityLeftLessThanOrEqualTo = value; return this; } public BigDecimal getQuantityLeftNotEqualTo() { return QuantityLeftNotEqualTo; } public IN_SOHQuery setQuantityLeftNotEqualTo(BigDecimal value) { this.QuantityLeftNotEqualTo = value; return this; } public ArrayList getQuantityLeftBetween() { return QuantityLeftBetween; } public IN_SOHQuery setQuantityLeftBetween(ArrayList value) { this.QuantityLeftBetween = value; return this; } public ArrayList getQuantityLeftIn() { return QuantityLeftIn; } public IN_SOHQuery setQuantityLeftIn(ArrayList value) { this.QuantityLeftIn = value; return this; } public String getSerialNo() { return SerialNo; } public IN_SOHQuery setSerialNo(String value) { this.SerialNo = value; return this; } public String getSerialNoStartsWith() { return SerialNoStartsWith; } public IN_SOHQuery setSerialNoStartsWith(String value) { this.SerialNoStartsWith = value; return this; } public String getSerialNoEndsWith() { return SerialNoEndsWith; } public IN_SOHQuery setSerialNoEndsWith(String value) { this.SerialNoEndsWith = value; return this; } public String getSerialNoContains() { return SerialNoContains; } public IN_SOHQuery setSerialNoContains(String value) { this.SerialNoContains = value; return this; } public String getSerialNoLike() { return SerialNoLike; } public IN_SOHQuery setSerialNoLike(String value) { this.SerialNoLike = value; return this; } public ArrayList getSerialNoBetween() { return SerialNoBetween; } public IN_SOHQuery setSerialNoBetween(ArrayList value) { this.SerialNoBetween = value; return this; } public ArrayList getSerialNoIn() { return SerialNoIn; } public IN_SOHQuery setSerialNoIn(ArrayList value) { this.SerialNoIn = value; return this; } public BigDecimal getTaxPaid() { return TaxPaid; } public IN_SOHQuery setTaxPaid(BigDecimal value) { this.TaxPaid = value; return this; } public BigDecimal getTaxPaidGreaterThanOrEqualTo() { return TaxPaidGreaterThanOrEqualTo; } public IN_SOHQuery setTaxPaidGreaterThanOrEqualTo(BigDecimal value) { this.TaxPaidGreaterThanOrEqualTo = value; return this; } public BigDecimal getTaxPaidGreaterThan() { return TaxPaidGreaterThan; } public IN_SOHQuery setTaxPaidGreaterThan(BigDecimal value) { this.TaxPaidGreaterThan = value; return this; } public BigDecimal getTaxPaidLessThan() { return TaxPaidLessThan; } public IN_SOHQuery setTaxPaidLessThan(BigDecimal value) { this.TaxPaidLessThan = value; return this; } public BigDecimal getTaxPaidLessThanOrEqualTo() { return TaxPaidLessThanOrEqualTo; } public IN_SOHQuery setTaxPaidLessThanOrEqualTo(BigDecimal value) { this.TaxPaidLessThanOrEqualTo = value; return this; } public BigDecimal getTaxPaidNotEqualTo() { return TaxPaidNotEqualTo; } public IN_SOHQuery setTaxPaidNotEqualTo(BigDecimal value) { this.TaxPaidNotEqualTo = value; return this; } public ArrayList getTaxPaidBetween() { return TaxPaidBetween; } public IN_SOHQuery setTaxPaidBetween(ArrayList value) { this.TaxPaidBetween = value; return this; } public ArrayList getTaxPaidIn() { return TaxPaidIn; } public IN_SOHQuery setTaxPaidIn(ArrayList value) { this.TaxPaidIn = value; return this; } public String getRef() { return Ref; } public IN_SOHQuery setRef(String value) { this.Ref = value; return this; } public String getRefStartsWith() { return RefStartsWith; } public IN_SOHQuery setRefStartsWith(String value) { this.RefStartsWith = value; return this; } public String getRefEndsWith() { return RefEndsWith; } public IN_SOHQuery setRefEndsWith(String value) { this.RefEndsWith = value; return this; } public String getRefContains() { return RefContains; } public IN_SOHQuery setRefContains(String value) { this.RefContains = value; return this; } public String getRefLike() { return RefLike; } public IN_SOHQuery setRefLike(String value) { this.RefLike = value; return this; } public ArrayList getRefBetween() { return RefBetween; } public IN_SOHQuery setRefBetween(ArrayList value) { this.RefBetween = value; return this; } public ArrayList getRefIn() { return RefIn; } public IN_SOHQuery setRefIn(ArrayList value) { this.RefIn = value; return this; } public String getSourceID() { return SourceID; } public IN_SOHQuery setSourceID(String value) { this.SourceID = value; return this; } public String getSourceIDStartsWith() { return SourceIDStartsWith; } public IN_SOHQuery setSourceIDStartsWith(String value) { this.SourceIDStartsWith = value; return this; } public String getSourceIDEndsWith() { return SourceIDEndsWith; } public IN_SOHQuery setSourceIDEndsWith(String value) { this.SourceIDEndsWith = value; return this; } public String getSourceIDContains() { return SourceIDContains; } public IN_SOHQuery setSourceIDContains(String value) { this.SourceIDContains = value; return this; } public String getSourceIDLike() { return SourceIDLike; } public IN_SOHQuery setSourceIDLike(String value) { this.SourceIDLike = value; return this; } public ArrayList getSourceIDBetween() { return SourceIDBetween; } public IN_SOHQuery setSourceIDBetween(ArrayList value) { this.SourceIDBetween = value; return this; } public ArrayList getSourceIDIn() { return SourceIDIn; } public IN_SOHQuery setSourceIDIn(ArrayList value) { this.SourceIDIn = value; return this; } public String getHistoryText() { return HistoryText; } public IN_SOHQuery setHistoryText(String value) { this.HistoryText = value; return this; } public String getHistoryTextStartsWith() { return HistoryTextStartsWith; } public IN_SOHQuery setHistoryTextStartsWith(String value) { this.HistoryTextStartsWith = value; return this; } public String getHistoryTextEndsWith() { return HistoryTextEndsWith; } public IN_SOHQuery setHistoryTextEndsWith(String value) { this.HistoryTextEndsWith = value; return this; } public String getHistoryTextContains() { return HistoryTextContains; } public IN_SOHQuery setHistoryTextContains(String value) { this.HistoryTextContains = value; return this; } public String getHistoryTextLike() { return HistoryTextLike; } public IN_SOHQuery setHistoryTextLike(String value) { this.HistoryTextLike = value; return this; } public ArrayList getHistoryTextBetween() { return HistoryTextBetween; } public IN_SOHQuery setHistoryTextBetween(ArrayList value) { this.HistoryTextBetween = value; return this; } public ArrayList getHistoryTextIn() { return HistoryTextIn; } public IN_SOHQuery setHistoryTextIn(ArrayList value) { this.HistoryTextIn = value; return this; } public BigDecimal getQuantityAllocated() { return QuantityAllocated; } public IN_SOHQuery setQuantityAllocated(BigDecimal value) { this.QuantityAllocated = value; return this; } public BigDecimal getQuantityAllocatedGreaterThanOrEqualTo() { return QuantityAllocatedGreaterThanOrEqualTo; } public IN_SOHQuery setQuantityAllocatedGreaterThanOrEqualTo(BigDecimal value) { this.QuantityAllocatedGreaterThanOrEqualTo = value; return this; } public BigDecimal getQuantityAllocatedGreaterThan() { return QuantityAllocatedGreaterThan; } public IN_SOHQuery setQuantityAllocatedGreaterThan(BigDecimal value) { this.QuantityAllocatedGreaterThan = value; return this; } public BigDecimal getQuantityAllocatedLessThan() { return QuantityAllocatedLessThan; } public IN_SOHQuery setQuantityAllocatedLessThan(BigDecimal value) { this.QuantityAllocatedLessThan = value; return this; } public BigDecimal getQuantityAllocatedLessThanOrEqualTo() { return QuantityAllocatedLessThanOrEqualTo; } public IN_SOHQuery setQuantityAllocatedLessThanOrEqualTo(BigDecimal value) { this.QuantityAllocatedLessThanOrEqualTo = value; return this; } public BigDecimal getQuantityAllocatedNotEqualTo() { return QuantityAllocatedNotEqualTo; } public IN_SOHQuery setQuantityAllocatedNotEqualTo(BigDecimal value) { this.QuantityAllocatedNotEqualTo = value; return this; } public ArrayList getQuantityAllocatedBetween() { return QuantityAllocatedBetween; } public IN_SOHQuery setQuantityAllocatedBetween(ArrayList value) { this.QuantityAllocatedBetween = value; return this; } public ArrayList getQuantityAllocatedIn() { return QuantityAllocatedIn; } public IN_SOHQuery setQuantityAllocatedIn(ArrayList value) { this.QuantityAllocatedIn = value; return this; } public String getInLogicalID() { return IN_LogicalID; } public IN_SOHQuery setInLogicalID(String value) { this.IN_LogicalID = value; return this; } public String getInLogicalIDStartsWith() { return IN_LogicalIDStartsWith; } public IN_SOHQuery setInLogicalIDStartsWith(String value) { this.IN_LogicalIDStartsWith = value; return this; } public String getInLogicalIDEndsWith() { return IN_LogicalIDEndsWith; } public IN_SOHQuery setInLogicalIDEndsWith(String value) { this.IN_LogicalIDEndsWith = value; return this; } public String getInLogicalIDContains() { return IN_LogicalIDContains; } public IN_SOHQuery setInLogicalIDContains(String value) { this.IN_LogicalIDContains = value; return this; } public String getInLogicalIDLike() { return IN_LogicalIDLike; } public IN_SOHQuery setInLogicalIDLike(String value) { this.IN_LogicalIDLike = value; return this; } public ArrayList getInLogicalIDBetween() { return IN_LogicalIDBetween; } public IN_SOHQuery setInLogicalIDBetween(ArrayList value) { this.IN_LogicalIDBetween = value; return this; } public ArrayList getInLogicalIDIn() { return IN_LogicalIDIn; } public IN_SOHQuery setInLogicalIDIn(ArrayList value) { this.IN_LogicalIDIn = value; return this; } public String getBinLocationDesc() { return BinLocationDesc; } public IN_SOHQuery setBinLocationDesc(String value) { this.BinLocationDesc = value; return this; } public String getBinLocationDescStartsWith() { return BinLocationDescStartsWith; } public IN_SOHQuery setBinLocationDescStartsWith(String value) { this.BinLocationDescStartsWith = value; return this; } public String getBinLocationDescEndsWith() { return BinLocationDescEndsWith; } public IN_SOHQuery setBinLocationDescEndsWith(String value) { this.BinLocationDescEndsWith = value; return this; } public String getBinLocationDescContains() { return BinLocationDescContains; } public IN_SOHQuery setBinLocationDescContains(String value) { this.BinLocationDescContains = value; return this; } public String getBinLocationDescLike() { return BinLocationDescLike; } public IN_SOHQuery setBinLocationDescLike(String value) { this.BinLocationDescLike = value; return this; } public ArrayList getBinLocationDescBetween() { return BinLocationDescBetween; } public IN_SOHQuery setBinLocationDescBetween(ArrayList value) { this.BinLocationDescBetween = value; return this; } public ArrayList getBinLocationDescIn() { return BinLocationDescIn; } public IN_SOHQuery setBinLocationDescIn(ArrayList value) { this.BinLocationDescIn = value; return this; } public Date getExpiryDate() { return ExpiryDate; } public IN_SOHQuery setExpiryDate(Date value) { this.ExpiryDate = value; return this; } public Date getExpiryDateGreaterThanOrEqualTo() { return ExpiryDateGreaterThanOrEqualTo; } public IN_SOHQuery setExpiryDateGreaterThanOrEqualTo(Date value) { this.ExpiryDateGreaterThanOrEqualTo = value; return this; } public Date getExpiryDateGreaterThan() { return ExpiryDateGreaterThan; } public IN_SOHQuery setExpiryDateGreaterThan(Date value) { this.ExpiryDateGreaterThan = value; return this; } public Date getExpiryDateLessThan() { return ExpiryDateLessThan; } public IN_SOHQuery setExpiryDateLessThan(Date value) { this.ExpiryDateLessThan = value; return this; } public Date getExpiryDateLessThanOrEqualTo() { return ExpiryDateLessThanOrEqualTo; } public IN_SOHQuery setExpiryDateLessThanOrEqualTo(Date value) { this.ExpiryDateLessThanOrEqualTo = value; return this; } public Date getExpiryDateNotEqualTo() { return ExpiryDateNotEqualTo; } public IN_SOHQuery setExpiryDateNotEqualTo(Date value) { this.ExpiryDateNotEqualTo = value; return this; } public ArrayList getExpiryDateBetween() { return ExpiryDateBetween; } public IN_SOHQuery setExpiryDateBetween(ArrayList value) { this.ExpiryDateBetween = value; return this; } public ArrayList getExpiryDateIn() { return ExpiryDateIn; } public IN_SOHQuery setExpiryDateIn(ArrayList value) { this.ExpiryDateIn = value; return this; } public String getSyFormsClassName() { return SY_Forms_ClassName; } public IN_SOHQuery setSyFormsClassName(String value) { this.SY_Forms_ClassName = value; return this; } public String getSyFormsClassNameStartsWith() { return SY_Forms_ClassNameStartsWith; } public IN_SOHQuery setSyFormsClassNameStartsWith(String value) { this.SY_Forms_ClassNameStartsWith = value; return this; } public String getSyFormsClassNameEndsWith() { return SY_Forms_ClassNameEndsWith; } public IN_SOHQuery setSyFormsClassNameEndsWith(String value) { this.SY_Forms_ClassNameEndsWith = value; return this; } public String getSyFormsClassNameContains() { return SY_Forms_ClassNameContains; } public IN_SOHQuery setSyFormsClassNameContains(String value) { this.SY_Forms_ClassNameContains = value; return this; } public String getSyFormsClassNameLike() { return SY_Forms_ClassNameLike; } public IN_SOHQuery setSyFormsClassNameLike(String value) { this.SY_Forms_ClassNameLike = value; return this; } public ArrayList getSyFormsClassNameBetween() { return SY_Forms_ClassNameBetween; } public IN_SOHQuery setSyFormsClassNameBetween(ArrayList value) { this.SY_Forms_ClassNameBetween = value; return this; } public ArrayList getSyFormsClassNameIn() { return SY_Forms_ClassNameIn; } public IN_SOHQuery setSyFormsClassNameIn(ArrayList value) { this.SY_Forms_ClassNameIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class IN_SOHManualSplitAuditQuery extends QueryDb implements IReturn> { public String RecID = null; public String RecIDStartsWith = null; public String RecIDEndsWith = null; public String RecIDContains = null; public String RecIDLike = null; public ArrayList RecIDBetween = null; public ArrayList RecIDIn = null; public String SplitFromSOHID = null; public String SplitFromSOHIDStartsWith = null; public String SplitFromSOHIDEndsWith = null; public String SplitFromSOHIDContains = null; public String SplitFromSOHIDLike = null; public ArrayList SplitFromSOHIDBetween = null; public ArrayList SplitFromSOHIDIn = null; public String SplitToSOHID = null; public String SplitToSOHIDStartsWith = null; public String SplitToSOHIDEndsWith = null; public String SplitToSOHIDContains = null; public String SplitToSOHIDLike = null; public ArrayList SplitToSOHIDBetween = null; public ArrayList SplitToSOHIDIn = null; public BigDecimal QuantitySplit = null; public BigDecimal QuantitySplitGreaterThanOrEqualTo = null; public BigDecimal QuantitySplitGreaterThan = null; public BigDecimal QuantitySplitLessThan = null; public BigDecimal QuantitySplitLessThanOrEqualTo = null; public BigDecimal QuantitySplitNotEqualTo = null; public ArrayList QuantitySplitBetween = null; public ArrayList QuantitySplitIn = null; public String StaffID = null; public String StaffIDStartsWith = null; public String StaffIDEndsWith = null; public String StaffIDContains = null; public String StaffIDLike = null; public ArrayList StaffIDBetween = null; public ArrayList StaffIDIn = null; public Date SplitDateTime = null; public Date SplitDateTimeGreaterThanOrEqualTo = null; public Date SplitDateTimeGreaterThan = null; public Date SplitDateTimeLessThan = null; public Date SplitDateTimeLessThanOrEqualTo = null; public Date SplitDateTimeNotEqualTo = null; public ArrayList SplitDateTimeBetween = null; public ArrayList SplitDateTimeIn = null; public String getRecID() { return RecID; } public IN_SOHManualSplitAuditQuery setRecID(String value) { this.RecID = value; return this; } public String getRecIDStartsWith() { return RecIDStartsWith; } public IN_SOHManualSplitAuditQuery setRecIDStartsWith(String value) { this.RecIDStartsWith = value; return this; } public String getRecIDEndsWith() { return RecIDEndsWith; } public IN_SOHManualSplitAuditQuery setRecIDEndsWith(String value) { this.RecIDEndsWith = value; return this; } public String getRecIDContains() { return RecIDContains; } public IN_SOHManualSplitAuditQuery setRecIDContains(String value) { this.RecIDContains = value; return this; } public String getRecIDLike() { return RecIDLike; } public IN_SOHManualSplitAuditQuery setRecIDLike(String value) { this.RecIDLike = value; return this; } public ArrayList getRecIDBetween() { return RecIDBetween; } public IN_SOHManualSplitAuditQuery setRecIDBetween(ArrayList value) { this.RecIDBetween = value; return this; } public ArrayList getRecIDIn() { return RecIDIn; } public IN_SOHManualSplitAuditQuery setRecIDIn(ArrayList value) { this.RecIDIn = value; return this; } public String getSplitFromSOHID() { return SplitFromSOHID; } public IN_SOHManualSplitAuditQuery setSplitFromSOHID(String value) { this.SplitFromSOHID = value; return this; } public String getSplitFromSOHIDStartsWith() { return SplitFromSOHIDStartsWith; } public IN_SOHManualSplitAuditQuery setSplitFromSOHIDStartsWith(String value) { this.SplitFromSOHIDStartsWith = value; return this; } public String getSplitFromSOHIDEndsWith() { return SplitFromSOHIDEndsWith; } public IN_SOHManualSplitAuditQuery setSplitFromSOHIDEndsWith(String value) { this.SplitFromSOHIDEndsWith = value; return this; } public String getSplitFromSOHIDContains() { return SplitFromSOHIDContains; } public IN_SOHManualSplitAuditQuery setSplitFromSOHIDContains(String value) { this.SplitFromSOHIDContains = value; return this; } public String getSplitFromSOHIDLike() { return SplitFromSOHIDLike; } public IN_SOHManualSplitAuditQuery setSplitFromSOHIDLike(String value) { this.SplitFromSOHIDLike = value; return this; } public ArrayList getSplitFromSOHIDBetween() { return SplitFromSOHIDBetween; } public IN_SOHManualSplitAuditQuery setSplitFromSOHIDBetween(ArrayList value) { this.SplitFromSOHIDBetween = value; return this; } public ArrayList getSplitFromSOHIDIn() { return SplitFromSOHIDIn; } public IN_SOHManualSplitAuditQuery setSplitFromSOHIDIn(ArrayList value) { this.SplitFromSOHIDIn = value; return this; } public String getSplitToSOHID() { return SplitToSOHID; } public IN_SOHManualSplitAuditQuery setSplitToSOHID(String value) { this.SplitToSOHID = value; return this; } public String getSplitToSOHIDStartsWith() { return SplitToSOHIDStartsWith; } public IN_SOHManualSplitAuditQuery setSplitToSOHIDStartsWith(String value) { this.SplitToSOHIDStartsWith = value; return this; } public String getSplitToSOHIDEndsWith() { return SplitToSOHIDEndsWith; } public IN_SOHManualSplitAuditQuery setSplitToSOHIDEndsWith(String value) { this.SplitToSOHIDEndsWith = value; return this; } public String getSplitToSOHIDContains() { return SplitToSOHIDContains; } public IN_SOHManualSplitAuditQuery setSplitToSOHIDContains(String value) { this.SplitToSOHIDContains = value; return this; } public String getSplitToSOHIDLike() { return SplitToSOHIDLike; } public IN_SOHManualSplitAuditQuery setSplitToSOHIDLike(String value) { this.SplitToSOHIDLike = value; return this; } public ArrayList getSplitToSOHIDBetween() { return SplitToSOHIDBetween; } public IN_SOHManualSplitAuditQuery setSplitToSOHIDBetween(ArrayList value) { this.SplitToSOHIDBetween = value; return this; } public ArrayList getSplitToSOHIDIn() { return SplitToSOHIDIn; } public IN_SOHManualSplitAuditQuery setSplitToSOHIDIn(ArrayList value) { this.SplitToSOHIDIn = value; return this; } public BigDecimal getQuantitySplit() { return QuantitySplit; } public IN_SOHManualSplitAuditQuery setQuantitySplit(BigDecimal value) { this.QuantitySplit = value; return this; } public BigDecimal getQuantitySplitGreaterThanOrEqualTo() { return QuantitySplitGreaterThanOrEqualTo; } public IN_SOHManualSplitAuditQuery setQuantitySplitGreaterThanOrEqualTo(BigDecimal value) { this.QuantitySplitGreaterThanOrEqualTo = value; return this; } public BigDecimal getQuantitySplitGreaterThan() { return QuantitySplitGreaterThan; } public IN_SOHManualSplitAuditQuery setQuantitySplitGreaterThan(BigDecimal value) { this.QuantitySplitGreaterThan = value; return this; } public BigDecimal getQuantitySplitLessThan() { return QuantitySplitLessThan; } public IN_SOHManualSplitAuditQuery setQuantitySplitLessThan(BigDecimal value) { this.QuantitySplitLessThan = value; return this; } public BigDecimal getQuantitySplitLessThanOrEqualTo() { return QuantitySplitLessThanOrEqualTo; } public IN_SOHManualSplitAuditQuery setQuantitySplitLessThanOrEqualTo(BigDecimal value) { this.QuantitySplitLessThanOrEqualTo = value; return this; } public BigDecimal getQuantitySplitNotEqualTo() { return QuantitySplitNotEqualTo; } public IN_SOHManualSplitAuditQuery setQuantitySplitNotEqualTo(BigDecimal value) { this.QuantitySplitNotEqualTo = value; return this; } public ArrayList getQuantitySplitBetween() { return QuantitySplitBetween; } public IN_SOHManualSplitAuditQuery setQuantitySplitBetween(ArrayList value) { this.QuantitySplitBetween = value; return this; } public ArrayList getQuantitySplitIn() { return QuantitySplitIn; } public IN_SOHManualSplitAuditQuery setQuantitySplitIn(ArrayList value) { this.QuantitySplitIn = value; return this; } public String getStaffID() { return StaffID; } public IN_SOHManualSplitAuditQuery setStaffID(String value) { this.StaffID = value; return this; } public String getStaffIDStartsWith() { return StaffIDStartsWith; } public IN_SOHManualSplitAuditQuery setStaffIDStartsWith(String value) { this.StaffIDStartsWith = value; return this; } public String getStaffIDEndsWith() { return StaffIDEndsWith; } public IN_SOHManualSplitAuditQuery setStaffIDEndsWith(String value) { this.StaffIDEndsWith = value; return this; } public String getStaffIDContains() { return StaffIDContains; } public IN_SOHManualSplitAuditQuery setStaffIDContains(String value) { this.StaffIDContains = value; return this; } public String getStaffIDLike() { return StaffIDLike; } public IN_SOHManualSplitAuditQuery setStaffIDLike(String value) { this.StaffIDLike = value; return this; } public ArrayList getStaffIDBetween() { return StaffIDBetween; } public IN_SOHManualSplitAuditQuery setStaffIDBetween(ArrayList value) { this.StaffIDBetween = value; return this; } public ArrayList getStaffIDIn() { return StaffIDIn; } public IN_SOHManualSplitAuditQuery setStaffIDIn(ArrayList value) { this.StaffIDIn = value; return this; } public Date getSplitDateTime() { return SplitDateTime; } public IN_SOHManualSplitAuditQuery setSplitDateTime(Date value) { this.SplitDateTime = value; return this; } public Date getSplitDateTimeGreaterThanOrEqualTo() { return SplitDateTimeGreaterThanOrEqualTo; } public IN_SOHManualSplitAuditQuery setSplitDateTimeGreaterThanOrEqualTo(Date value) { this.SplitDateTimeGreaterThanOrEqualTo = value; return this; } public Date getSplitDateTimeGreaterThan() { return SplitDateTimeGreaterThan; } public IN_SOHManualSplitAuditQuery setSplitDateTimeGreaterThan(Date value) { this.SplitDateTimeGreaterThan = value; return this; } public Date getSplitDateTimeLessThan() { return SplitDateTimeLessThan; } public IN_SOHManualSplitAuditQuery setSplitDateTimeLessThan(Date value) { this.SplitDateTimeLessThan = value; return this; } public Date getSplitDateTimeLessThanOrEqualTo() { return SplitDateTimeLessThanOrEqualTo; } public IN_SOHManualSplitAuditQuery setSplitDateTimeLessThanOrEqualTo(Date value) { this.SplitDateTimeLessThanOrEqualTo = value; return this; } public Date getSplitDateTimeNotEqualTo() { return SplitDateTimeNotEqualTo; } public IN_SOHManualSplitAuditQuery setSplitDateTimeNotEqualTo(Date value) { this.SplitDateTimeNotEqualTo = value; return this; } public ArrayList getSplitDateTimeBetween() { return SplitDateTimeBetween; } public IN_SOHManualSplitAuditQuery setSplitDateTimeBetween(ArrayList value) { this.SplitDateTimeBetween = value; return this; } public ArrayList getSplitDateTimeIn() { return SplitDateTimeIn; } public IN_SOHManualSplitAuditQuery setSplitDateTimeIn(ArrayList value) { this.SplitDateTimeIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class IN_StandCostQuery extends QueryDb implements IReturn> { public String INStandCostID = null; public String INStandCostIDStartsWith = null; public String INStandCostIDEndsWith = null; public String INStandCostIDContains = null; public String INStandCostIDLike = null; public ArrayList INStandCostIDBetween = null; public ArrayList INStandCostIDIn = null; public Date LastSavedDateTime = null; public Date LastSavedDateTimeGreaterThanOrEqualTo = null; public Date LastSavedDateTimeGreaterThan = null; public Date LastSavedDateTimeLessThan = null; public Date LastSavedDateTimeLessThanOrEqualTo = null; public Date LastSavedDateTimeNotEqualTo = null; public ArrayList LastSavedDateTimeBetween = null; public ArrayList LastSavedDateTimeIn = null; public String DocumentNo = null; public String DocumentNoStartsWith = null; public String DocumentNoEndsWith = null; public String DocumentNoContains = null; public String DocumentNoLike = null; public ArrayList DocumentNoBetween = null; public ArrayList DocumentNoIn = null; public Date InitDate = null; public Date InitDateGreaterThanOrEqualTo = null; public Date InitDateGreaterThan = null; public Date InitDateLessThan = null; public Date InitDateLessThanOrEqualTo = null; public Date InitDateNotEqualTo = null; public ArrayList InitDateBetween = null; public ArrayList InitDateIn = null; public Date UsageDate = null; public Date UsageDateGreaterThanOrEqualTo = null; public Date UsageDateGreaterThan = null; public Date UsageDateLessThan = null; public Date UsageDateLessThanOrEqualTo = null; public Date UsageDateNotEqualTo = null; public ArrayList UsageDateBetween = null; public ArrayList UsageDateIn = null; public String Formula = null; public String FormulaStartsWith = null; public String FormulaEndsWith = null; public String FormulaContains = null; public String FormulaLike = null; public ArrayList FormulaBetween = null; public ArrayList FormulaIn = null; public Boolean Status = null; public String Ref = null; public String RefStartsWith = null; public String RefEndsWith = null; public String RefContains = null; public String RefLike = null; public ArrayList RefBetween = null; public ArrayList RefIn = null; public String FromPartNo = null; public String FromPartNoStartsWith = null; public String FromPartNoEndsWith = null; public String FromPartNoContains = null; public String FromPartNoLike = null; public ArrayList FromPartNoBetween = null; public ArrayList FromPartNoIn = null; public String ToPartNo = null; public String ToPartNoStartsWith = null; public String ToPartNoEndsWith = null; public String ToPartNoContains = null; public String ToPartNoLike = null; public ArrayList ToPartNoBetween = null; public ArrayList ToPartNoIn = null; public String FromSupplier = null; public String FromSupplierStartsWith = null; public String FromSupplierEndsWith = null; public String FromSupplierContains = null; public String FromSupplierLike = null; public ArrayList FromSupplierBetween = null; public ArrayList FromSupplierIn = null; public String ToSupplier = null; public String ToSupplierStartsWith = null; public String ToSupplierEndsWith = null; public String ToSupplierContains = null; public String ToSupplierLike = null; public ArrayList ToSupplierBetween = null; public ArrayList ToSupplierIn = null; public String FromClass = null; public String FromClassStartsWith = null; public String FromClassEndsWith = null; public String FromClassContains = null; public String FromClassLike = null; public ArrayList FromClassBetween = null; public ArrayList FromClassIn = null; public String ToClass = null; public String ToClassStartsWith = null; public String ToClassEndsWith = null; public String ToClassContains = null; public String ToClassLike = null; public ArrayList ToClassBetween = null; public ArrayList ToClassIn = null; public String FromCat1 = null; public String FromCat1StartsWith = null; public String FromCat1EndsWith = null; public String FromCat1Contains = null; public String FromCat1Like = null; public ArrayList FromCat1Between = null; public ArrayList FromCat1In = null; public String ToCat1 = null; public String ToCat1StartsWith = null; public String ToCat1EndsWith = null; public String ToCat1Contains = null; public String ToCat1Like = null; public ArrayList ToCat1Between = null; public ArrayList ToCat1In = null; public String FromCat2 = null; public String FromCat2StartsWith = null; public String FromCat2EndsWith = null; public String FromCat2Contains = null; public String FromCat2Like = null; public ArrayList FromCat2Between = null; public ArrayList FromCat2In = null; public String ToCat2 = null; public String ToCat2StartsWith = null; public String ToCat2EndsWith = null; public String ToCat2Contains = null; public String ToCat2Like = null; public ArrayList ToCat2Between = null; public ArrayList ToCat2In = null; public String FromCat3 = null; public String FromCat3StartsWith = null; public String FromCat3EndsWith = null; public String FromCat3Contains = null; public String FromCat3Like = null; public ArrayList FromCat3Between = null; public ArrayList FromCat3In = null; public String ToCat3 = null; public String ToCat3StartsWith = null; public String ToCat3EndsWith = null; public String ToCat3Contains = null; public String ToCat3Like = null; public ArrayList ToCat3Between = null; public ArrayList ToCat3In = null; public String FromCat4 = null; public String FromCat4StartsWith = null; public String FromCat4EndsWith = null; public String FromCat4Contains = null; public String FromCat4Like = null; public ArrayList FromCat4Between = null; public ArrayList FromCat4In = null; public String ToCat4 = null; public String ToCat4StartsWith = null; public String ToCat4EndsWith = null; public String ToCat4Contains = null; public String ToCat4Like = null; public ArrayList ToCat4Between = null; public ArrayList ToCat4In = null; public String FromCat5 = null; public String FromCat5StartsWith = null; public String FromCat5EndsWith = null; public String FromCat5Contains = null; public String FromCat5Like = null; public ArrayList FromCat5Between = null; public ArrayList FromCat5In = null; public String ToCat5 = null; public String ToCat5StartsWith = null; public String ToCat5EndsWith = null; public String ToCat5Contains = null; public String ToCat5Like = null; public ArrayList ToCat5Between = null; public ArrayList ToCat5In = null; public String getInStandCostID() { return INStandCostID; } public IN_StandCostQuery setInStandCostID(String value) { this.INStandCostID = value; return this; } public String getInStandCostIDStartsWith() { return INStandCostIDStartsWith; } public IN_StandCostQuery setInStandCostIDStartsWith(String value) { this.INStandCostIDStartsWith = value; return this; } public String getInStandCostIDEndsWith() { return INStandCostIDEndsWith; } public IN_StandCostQuery setInStandCostIDEndsWith(String value) { this.INStandCostIDEndsWith = value; return this; } public String getInStandCostIDContains() { return INStandCostIDContains; } public IN_StandCostQuery setInStandCostIDContains(String value) { this.INStandCostIDContains = value; return this; } public String getInStandCostIDLike() { return INStandCostIDLike; } public IN_StandCostQuery setInStandCostIDLike(String value) { this.INStandCostIDLike = value; return this; } public ArrayList getInStandCostIDBetween() { return INStandCostIDBetween; } public IN_StandCostQuery setInStandCostIDBetween(ArrayList value) { this.INStandCostIDBetween = value; return this; } public ArrayList getInStandCostIDIn() { return INStandCostIDIn; } public IN_StandCostQuery setInStandCostIDIn(ArrayList value) { this.INStandCostIDIn = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public IN_StandCostQuery setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getLastSavedDateTimeGreaterThanOrEqualTo() { return LastSavedDateTimeGreaterThanOrEqualTo; } public IN_StandCostQuery setLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.LastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeGreaterThan() { return LastSavedDateTimeGreaterThan; } public IN_StandCostQuery setLastSavedDateTimeGreaterThan(Date value) { this.LastSavedDateTimeGreaterThan = value; return this; } public Date getLastSavedDateTimeLessThan() { return LastSavedDateTimeLessThan; } public IN_StandCostQuery setLastSavedDateTimeLessThan(Date value) { this.LastSavedDateTimeLessThan = value; return this; } public Date getLastSavedDateTimeLessThanOrEqualTo() { return LastSavedDateTimeLessThanOrEqualTo; } public IN_StandCostQuery setLastSavedDateTimeLessThanOrEqualTo(Date value) { this.LastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeNotEqualTo() { return LastSavedDateTimeNotEqualTo; } public IN_StandCostQuery setLastSavedDateTimeNotEqualTo(Date value) { this.LastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getLastSavedDateTimeBetween() { return LastSavedDateTimeBetween; } public IN_StandCostQuery setLastSavedDateTimeBetween(ArrayList value) { this.LastSavedDateTimeBetween = value; return this; } public ArrayList getLastSavedDateTimeIn() { return LastSavedDateTimeIn; } public IN_StandCostQuery setLastSavedDateTimeIn(ArrayList value) { this.LastSavedDateTimeIn = value; return this; } public String getDocumentNo() { return DocumentNo; } public IN_StandCostQuery setDocumentNo(String value) { this.DocumentNo = value; return this; } public String getDocumentNoStartsWith() { return DocumentNoStartsWith; } public IN_StandCostQuery setDocumentNoStartsWith(String value) { this.DocumentNoStartsWith = value; return this; } public String getDocumentNoEndsWith() { return DocumentNoEndsWith; } public IN_StandCostQuery setDocumentNoEndsWith(String value) { this.DocumentNoEndsWith = value; return this; } public String getDocumentNoContains() { return DocumentNoContains; } public IN_StandCostQuery setDocumentNoContains(String value) { this.DocumentNoContains = value; return this; } public String getDocumentNoLike() { return DocumentNoLike; } public IN_StandCostQuery setDocumentNoLike(String value) { this.DocumentNoLike = value; return this; } public ArrayList getDocumentNoBetween() { return DocumentNoBetween; } public IN_StandCostQuery setDocumentNoBetween(ArrayList value) { this.DocumentNoBetween = value; return this; } public ArrayList getDocumentNoIn() { return DocumentNoIn; } public IN_StandCostQuery setDocumentNoIn(ArrayList value) { this.DocumentNoIn = value; return this; } public Date getInitDate() { return InitDate; } public IN_StandCostQuery setInitDate(Date value) { this.InitDate = value; return this; } public Date getInitDateGreaterThanOrEqualTo() { return InitDateGreaterThanOrEqualTo; } public IN_StandCostQuery setInitDateGreaterThanOrEqualTo(Date value) { this.InitDateGreaterThanOrEqualTo = value; return this; } public Date getInitDateGreaterThan() { return InitDateGreaterThan; } public IN_StandCostQuery setInitDateGreaterThan(Date value) { this.InitDateGreaterThan = value; return this; } public Date getInitDateLessThan() { return InitDateLessThan; } public IN_StandCostQuery setInitDateLessThan(Date value) { this.InitDateLessThan = value; return this; } public Date getInitDateLessThanOrEqualTo() { return InitDateLessThanOrEqualTo; } public IN_StandCostQuery setInitDateLessThanOrEqualTo(Date value) { this.InitDateLessThanOrEqualTo = value; return this; } public Date getInitDateNotEqualTo() { return InitDateNotEqualTo; } public IN_StandCostQuery setInitDateNotEqualTo(Date value) { this.InitDateNotEqualTo = value; return this; } public ArrayList getInitDateBetween() { return InitDateBetween; } public IN_StandCostQuery setInitDateBetween(ArrayList value) { this.InitDateBetween = value; return this; } public ArrayList getInitDateIn() { return InitDateIn; } public IN_StandCostQuery setInitDateIn(ArrayList value) { this.InitDateIn = value; return this; } public Date getUsageDate() { return UsageDate; } public IN_StandCostQuery setUsageDate(Date value) { this.UsageDate = value; return this; } public Date getUsageDateGreaterThanOrEqualTo() { return UsageDateGreaterThanOrEqualTo; } public IN_StandCostQuery setUsageDateGreaterThanOrEqualTo(Date value) { this.UsageDateGreaterThanOrEqualTo = value; return this; } public Date getUsageDateGreaterThan() { return UsageDateGreaterThan; } public IN_StandCostQuery setUsageDateGreaterThan(Date value) { this.UsageDateGreaterThan = value; return this; } public Date getUsageDateLessThan() { return UsageDateLessThan; } public IN_StandCostQuery setUsageDateLessThan(Date value) { this.UsageDateLessThan = value; return this; } public Date getUsageDateLessThanOrEqualTo() { return UsageDateLessThanOrEqualTo; } public IN_StandCostQuery setUsageDateLessThanOrEqualTo(Date value) { this.UsageDateLessThanOrEqualTo = value; return this; } public Date getUsageDateNotEqualTo() { return UsageDateNotEqualTo; } public IN_StandCostQuery setUsageDateNotEqualTo(Date value) { this.UsageDateNotEqualTo = value; return this; } public ArrayList getUsageDateBetween() { return UsageDateBetween; } public IN_StandCostQuery setUsageDateBetween(ArrayList value) { this.UsageDateBetween = value; return this; } public ArrayList getUsageDateIn() { return UsageDateIn; } public IN_StandCostQuery setUsageDateIn(ArrayList value) { this.UsageDateIn = value; return this; } public String getFormula() { return Formula; } public IN_StandCostQuery setFormula(String value) { this.Formula = value; return this; } public String getFormulaStartsWith() { return FormulaStartsWith; } public IN_StandCostQuery setFormulaStartsWith(String value) { this.FormulaStartsWith = value; return this; } public String getFormulaEndsWith() { return FormulaEndsWith; } public IN_StandCostQuery setFormulaEndsWith(String value) { this.FormulaEndsWith = value; return this; } public String getFormulaContains() { return FormulaContains; } public IN_StandCostQuery setFormulaContains(String value) { this.FormulaContains = value; return this; } public String getFormulaLike() { return FormulaLike; } public IN_StandCostQuery setFormulaLike(String value) { this.FormulaLike = value; return this; } public ArrayList getFormulaBetween() { return FormulaBetween; } public IN_StandCostQuery setFormulaBetween(ArrayList value) { this.FormulaBetween = value; return this; } public ArrayList getFormulaIn() { return FormulaIn; } public IN_StandCostQuery setFormulaIn(ArrayList value) { this.FormulaIn = value; return this; } public Boolean isStatus() { return Status; } public IN_StandCostQuery setStatus(Boolean value) { this.Status = value; return this; } public String getRef() { return Ref; } public IN_StandCostQuery setRef(String value) { this.Ref = value; return this; } public String getRefStartsWith() { return RefStartsWith; } public IN_StandCostQuery setRefStartsWith(String value) { this.RefStartsWith = value; return this; } public String getRefEndsWith() { return RefEndsWith; } public IN_StandCostQuery setRefEndsWith(String value) { this.RefEndsWith = value; return this; } public String getRefContains() { return RefContains; } public IN_StandCostQuery setRefContains(String value) { this.RefContains = value; return this; } public String getRefLike() { return RefLike; } public IN_StandCostQuery setRefLike(String value) { this.RefLike = value; return this; } public ArrayList getRefBetween() { return RefBetween; } public IN_StandCostQuery setRefBetween(ArrayList value) { this.RefBetween = value; return this; } public ArrayList getRefIn() { return RefIn; } public IN_StandCostQuery setRefIn(ArrayList value) { this.RefIn = value; return this; } public String getFromPartNo() { return FromPartNo; } public IN_StandCostQuery setFromPartNo(String value) { this.FromPartNo = value; return this; } public String getFromPartNoStartsWith() { return FromPartNoStartsWith; } public IN_StandCostQuery setFromPartNoStartsWith(String value) { this.FromPartNoStartsWith = value; return this; } public String getFromPartNoEndsWith() { return FromPartNoEndsWith; } public IN_StandCostQuery setFromPartNoEndsWith(String value) { this.FromPartNoEndsWith = value; return this; } public String getFromPartNoContains() { return FromPartNoContains; } public IN_StandCostQuery setFromPartNoContains(String value) { this.FromPartNoContains = value; return this; } public String getFromPartNoLike() { return FromPartNoLike; } public IN_StandCostQuery setFromPartNoLike(String value) { this.FromPartNoLike = value; return this; } public ArrayList getFromPartNoBetween() { return FromPartNoBetween; } public IN_StandCostQuery setFromPartNoBetween(ArrayList value) { this.FromPartNoBetween = value; return this; } public ArrayList getFromPartNoIn() { return FromPartNoIn; } public IN_StandCostQuery setFromPartNoIn(ArrayList value) { this.FromPartNoIn = value; return this; } public String getToPartNo() { return ToPartNo; } public IN_StandCostQuery setToPartNo(String value) { this.ToPartNo = value; return this; } public String getToPartNoStartsWith() { return ToPartNoStartsWith; } public IN_StandCostQuery setToPartNoStartsWith(String value) { this.ToPartNoStartsWith = value; return this; } public String getToPartNoEndsWith() { return ToPartNoEndsWith; } public IN_StandCostQuery setToPartNoEndsWith(String value) { this.ToPartNoEndsWith = value; return this; } public String getToPartNoContains() { return ToPartNoContains; } public IN_StandCostQuery setToPartNoContains(String value) { this.ToPartNoContains = value; return this; } public String getToPartNoLike() { return ToPartNoLike; } public IN_StandCostQuery setToPartNoLike(String value) { this.ToPartNoLike = value; return this; } public ArrayList getToPartNoBetween() { return ToPartNoBetween; } public IN_StandCostQuery setToPartNoBetween(ArrayList value) { this.ToPartNoBetween = value; return this; } public ArrayList getToPartNoIn() { return ToPartNoIn; } public IN_StandCostQuery setToPartNoIn(ArrayList value) { this.ToPartNoIn = value; return this; } public String getFromSupplier() { return FromSupplier; } public IN_StandCostQuery setFromSupplier(String value) { this.FromSupplier = value; return this; } public String getFromSupplierStartsWith() { return FromSupplierStartsWith; } public IN_StandCostQuery setFromSupplierStartsWith(String value) { this.FromSupplierStartsWith = value; return this; } public String getFromSupplierEndsWith() { return FromSupplierEndsWith; } public IN_StandCostQuery setFromSupplierEndsWith(String value) { this.FromSupplierEndsWith = value; return this; } public String getFromSupplierContains() { return FromSupplierContains; } public IN_StandCostQuery setFromSupplierContains(String value) { this.FromSupplierContains = value; return this; } public String getFromSupplierLike() { return FromSupplierLike; } public IN_StandCostQuery setFromSupplierLike(String value) { this.FromSupplierLike = value; return this; } public ArrayList getFromSupplierBetween() { return FromSupplierBetween; } public IN_StandCostQuery setFromSupplierBetween(ArrayList value) { this.FromSupplierBetween = value; return this; } public ArrayList getFromSupplierIn() { return FromSupplierIn; } public IN_StandCostQuery setFromSupplierIn(ArrayList value) { this.FromSupplierIn = value; return this; } public String getToSupplier() { return ToSupplier; } public IN_StandCostQuery setToSupplier(String value) { this.ToSupplier = value; return this; } public String getToSupplierStartsWith() { return ToSupplierStartsWith; } public IN_StandCostQuery setToSupplierStartsWith(String value) { this.ToSupplierStartsWith = value; return this; } public String getToSupplierEndsWith() { return ToSupplierEndsWith; } public IN_StandCostQuery setToSupplierEndsWith(String value) { this.ToSupplierEndsWith = value; return this; } public String getToSupplierContains() { return ToSupplierContains; } public IN_StandCostQuery setToSupplierContains(String value) { this.ToSupplierContains = value; return this; } public String getToSupplierLike() { return ToSupplierLike; } public IN_StandCostQuery setToSupplierLike(String value) { this.ToSupplierLike = value; return this; } public ArrayList getToSupplierBetween() { return ToSupplierBetween; } public IN_StandCostQuery setToSupplierBetween(ArrayList value) { this.ToSupplierBetween = value; return this; } public ArrayList getToSupplierIn() { return ToSupplierIn; } public IN_StandCostQuery setToSupplierIn(ArrayList value) { this.ToSupplierIn = value; return this; } public String getFromClass() { return FromClass; } public IN_StandCostQuery setFromClass(String value) { this.FromClass = value; return this; } public String getFromClassStartsWith() { return FromClassStartsWith; } public IN_StandCostQuery setFromClassStartsWith(String value) { this.FromClassStartsWith = value; return this; } public String getFromClassEndsWith() { return FromClassEndsWith; } public IN_StandCostQuery setFromClassEndsWith(String value) { this.FromClassEndsWith = value; return this; } public String getFromClassContains() { return FromClassContains; } public IN_StandCostQuery setFromClassContains(String value) { this.FromClassContains = value; return this; } public String getFromClassLike() { return FromClassLike; } public IN_StandCostQuery setFromClassLike(String value) { this.FromClassLike = value; return this; } public ArrayList getFromClassBetween() { return FromClassBetween; } public IN_StandCostQuery setFromClassBetween(ArrayList value) { this.FromClassBetween = value; return this; } public ArrayList getFromClassIn() { return FromClassIn; } public IN_StandCostQuery setFromClassIn(ArrayList value) { this.FromClassIn = value; return this; } public String getToClass() { return ToClass; } public IN_StandCostQuery setToClass(String value) { this.ToClass = value; return this; } public String getToClassStartsWith() { return ToClassStartsWith; } public IN_StandCostQuery setToClassStartsWith(String value) { this.ToClassStartsWith = value; return this; } public String getToClassEndsWith() { return ToClassEndsWith; } public IN_StandCostQuery setToClassEndsWith(String value) { this.ToClassEndsWith = value; return this; } public String getToClassContains() { return ToClassContains; } public IN_StandCostQuery setToClassContains(String value) { this.ToClassContains = value; return this; } public String getToClassLike() { return ToClassLike; } public IN_StandCostQuery setToClassLike(String value) { this.ToClassLike = value; return this; } public ArrayList getToClassBetween() { return ToClassBetween; } public IN_StandCostQuery setToClassBetween(ArrayList value) { this.ToClassBetween = value; return this; } public ArrayList getToClassIn() { return ToClassIn; } public IN_StandCostQuery setToClassIn(ArrayList value) { this.ToClassIn = value; return this; } public String getFromCat1() { return FromCat1; } public IN_StandCostQuery setFromCat1(String value) { this.FromCat1 = value; return this; } public String getFromCat1StartsWith() { return FromCat1StartsWith; } public IN_StandCostQuery setFromCat1StartsWith(String value) { this.FromCat1StartsWith = value; return this; } public String getFromCat1EndsWith() { return FromCat1EndsWith; } public IN_StandCostQuery setFromCat1EndsWith(String value) { this.FromCat1EndsWith = value; return this; } public String getFromCat1Contains() { return FromCat1Contains; } public IN_StandCostQuery setFromCat1Contains(String value) { this.FromCat1Contains = value; return this; } public String getFromCat1Like() { return FromCat1Like; } public IN_StandCostQuery setFromCat1Like(String value) { this.FromCat1Like = value; return this; } public ArrayList getFromCat1Between() { return FromCat1Between; } public IN_StandCostQuery setFromCat1Between(ArrayList value) { this.FromCat1Between = value; return this; } public ArrayList getFromCat1In() { return FromCat1In; } public IN_StandCostQuery setFromCat1In(ArrayList value) { this.FromCat1In = value; return this; } public String getToCat1() { return ToCat1; } public IN_StandCostQuery setToCat1(String value) { this.ToCat1 = value; return this; } public String getToCat1StartsWith() { return ToCat1StartsWith; } public IN_StandCostQuery setToCat1StartsWith(String value) { this.ToCat1StartsWith = value; return this; } public String getToCat1EndsWith() { return ToCat1EndsWith; } public IN_StandCostQuery setToCat1EndsWith(String value) { this.ToCat1EndsWith = value; return this; } public String getToCat1Contains() { return ToCat1Contains; } public IN_StandCostQuery setToCat1Contains(String value) { this.ToCat1Contains = value; return this; } public String getToCat1Like() { return ToCat1Like; } public IN_StandCostQuery setToCat1Like(String value) { this.ToCat1Like = value; return this; } public ArrayList getToCat1Between() { return ToCat1Between; } public IN_StandCostQuery setToCat1Between(ArrayList value) { this.ToCat1Between = value; return this; } public ArrayList getToCat1In() { return ToCat1In; } public IN_StandCostQuery setToCat1In(ArrayList value) { this.ToCat1In = value; return this; } public String getFromCat2() { return FromCat2; } public IN_StandCostQuery setFromCat2(String value) { this.FromCat2 = value; return this; } public String getFromCat2StartsWith() { return FromCat2StartsWith; } public IN_StandCostQuery setFromCat2StartsWith(String value) { this.FromCat2StartsWith = value; return this; } public String getFromCat2EndsWith() { return FromCat2EndsWith; } public IN_StandCostQuery setFromCat2EndsWith(String value) { this.FromCat2EndsWith = value; return this; } public String getFromCat2Contains() { return FromCat2Contains; } public IN_StandCostQuery setFromCat2Contains(String value) { this.FromCat2Contains = value; return this; } public String getFromCat2Like() { return FromCat2Like; } public IN_StandCostQuery setFromCat2Like(String value) { this.FromCat2Like = value; return this; } public ArrayList getFromCat2Between() { return FromCat2Between; } public IN_StandCostQuery setFromCat2Between(ArrayList value) { this.FromCat2Between = value; return this; } public ArrayList getFromCat2In() { return FromCat2In; } public IN_StandCostQuery setFromCat2In(ArrayList value) { this.FromCat2In = value; return this; } public String getToCat2() { return ToCat2; } public IN_StandCostQuery setToCat2(String value) { this.ToCat2 = value; return this; } public String getToCat2StartsWith() { return ToCat2StartsWith; } public IN_StandCostQuery setToCat2StartsWith(String value) { this.ToCat2StartsWith = value; return this; } public String getToCat2EndsWith() { return ToCat2EndsWith; } public IN_StandCostQuery setToCat2EndsWith(String value) { this.ToCat2EndsWith = value; return this; } public String getToCat2Contains() { return ToCat2Contains; } public IN_StandCostQuery setToCat2Contains(String value) { this.ToCat2Contains = value; return this; } public String getToCat2Like() { return ToCat2Like; } public IN_StandCostQuery setToCat2Like(String value) { this.ToCat2Like = value; return this; } public ArrayList getToCat2Between() { return ToCat2Between; } public IN_StandCostQuery setToCat2Between(ArrayList value) { this.ToCat2Between = value; return this; } public ArrayList getToCat2In() { return ToCat2In; } public IN_StandCostQuery setToCat2In(ArrayList value) { this.ToCat2In = value; return this; } public String getFromCat3() { return FromCat3; } public IN_StandCostQuery setFromCat3(String value) { this.FromCat3 = value; return this; } public String getFromCat3StartsWith() { return FromCat3StartsWith; } public IN_StandCostQuery setFromCat3StartsWith(String value) { this.FromCat3StartsWith = value; return this; } public String getFromCat3EndsWith() { return FromCat3EndsWith; } public IN_StandCostQuery setFromCat3EndsWith(String value) { this.FromCat3EndsWith = value; return this; } public String getFromCat3Contains() { return FromCat3Contains; } public IN_StandCostQuery setFromCat3Contains(String value) { this.FromCat3Contains = value; return this; } public String getFromCat3Like() { return FromCat3Like; } public IN_StandCostQuery setFromCat3Like(String value) { this.FromCat3Like = value; return this; } public ArrayList getFromCat3Between() { return FromCat3Between; } public IN_StandCostQuery setFromCat3Between(ArrayList value) { this.FromCat3Between = value; return this; } public ArrayList getFromCat3In() { return FromCat3In; } public IN_StandCostQuery setFromCat3In(ArrayList value) { this.FromCat3In = value; return this; } public String getToCat3() { return ToCat3; } public IN_StandCostQuery setToCat3(String value) { this.ToCat3 = value; return this; } public String getToCat3StartsWith() { return ToCat3StartsWith; } public IN_StandCostQuery setToCat3StartsWith(String value) { this.ToCat3StartsWith = value; return this; } public String getToCat3EndsWith() { return ToCat3EndsWith; } public IN_StandCostQuery setToCat3EndsWith(String value) { this.ToCat3EndsWith = value; return this; } public String getToCat3Contains() { return ToCat3Contains; } public IN_StandCostQuery setToCat3Contains(String value) { this.ToCat3Contains = value; return this; } public String getToCat3Like() { return ToCat3Like; } public IN_StandCostQuery setToCat3Like(String value) { this.ToCat3Like = value; return this; } public ArrayList getToCat3Between() { return ToCat3Between; } public IN_StandCostQuery setToCat3Between(ArrayList value) { this.ToCat3Between = value; return this; } public ArrayList getToCat3In() { return ToCat3In; } public IN_StandCostQuery setToCat3In(ArrayList value) { this.ToCat3In = value; return this; } public String getFromCat4() { return FromCat4; } public IN_StandCostQuery setFromCat4(String value) { this.FromCat4 = value; return this; } public String getFromCat4StartsWith() { return FromCat4StartsWith; } public IN_StandCostQuery setFromCat4StartsWith(String value) { this.FromCat4StartsWith = value; return this; } public String getFromCat4EndsWith() { return FromCat4EndsWith; } public IN_StandCostQuery setFromCat4EndsWith(String value) { this.FromCat4EndsWith = value; return this; } public String getFromCat4Contains() { return FromCat4Contains; } public IN_StandCostQuery setFromCat4Contains(String value) { this.FromCat4Contains = value; return this; } public String getFromCat4Like() { return FromCat4Like; } public IN_StandCostQuery setFromCat4Like(String value) { this.FromCat4Like = value; return this; } public ArrayList getFromCat4Between() { return FromCat4Between; } public IN_StandCostQuery setFromCat4Between(ArrayList value) { this.FromCat4Between = value; return this; } public ArrayList getFromCat4In() { return FromCat4In; } public IN_StandCostQuery setFromCat4In(ArrayList value) { this.FromCat4In = value; return this; } public String getToCat4() { return ToCat4; } public IN_StandCostQuery setToCat4(String value) { this.ToCat4 = value; return this; } public String getToCat4StartsWith() { return ToCat4StartsWith; } public IN_StandCostQuery setToCat4StartsWith(String value) { this.ToCat4StartsWith = value; return this; } public String getToCat4EndsWith() { return ToCat4EndsWith; } public IN_StandCostQuery setToCat4EndsWith(String value) { this.ToCat4EndsWith = value; return this; } public String getToCat4Contains() { return ToCat4Contains; } public IN_StandCostQuery setToCat4Contains(String value) { this.ToCat4Contains = value; return this; } public String getToCat4Like() { return ToCat4Like; } public IN_StandCostQuery setToCat4Like(String value) { this.ToCat4Like = value; return this; } public ArrayList getToCat4Between() { return ToCat4Between; } public IN_StandCostQuery setToCat4Between(ArrayList value) { this.ToCat4Between = value; return this; } public ArrayList getToCat4In() { return ToCat4In; } public IN_StandCostQuery setToCat4In(ArrayList value) { this.ToCat4In = value; return this; } public String getFromCat5() { return FromCat5; } public IN_StandCostQuery setFromCat5(String value) { this.FromCat5 = value; return this; } public String getFromCat5StartsWith() { return FromCat5StartsWith; } public IN_StandCostQuery setFromCat5StartsWith(String value) { this.FromCat5StartsWith = value; return this; } public String getFromCat5EndsWith() { return FromCat5EndsWith; } public IN_StandCostQuery setFromCat5EndsWith(String value) { this.FromCat5EndsWith = value; return this; } public String getFromCat5Contains() { return FromCat5Contains; } public IN_StandCostQuery setFromCat5Contains(String value) { this.FromCat5Contains = value; return this; } public String getFromCat5Like() { return FromCat5Like; } public IN_StandCostQuery setFromCat5Like(String value) { this.FromCat5Like = value; return this; } public ArrayList getFromCat5Between() { return FromCat5Between; } public IN_StandCostQuery setFromCat5Between(ArrayList value) { this.FromCat5Between = value; return this; } public ArrayList getFromCat5In() { return FromCat5In; } public IN_StandCostQuery setFromCat5In(ArrayList value) { this.FromCat5In = value; return this; } public String getToCat5() { return ToCat5; } public IN_StandCostQuery setToCat5(String value) { this.ToCat5 = value; return this; } public String getToCat5StartsWith() { return ToCat5StartsWith; } public IN_StandCostQuery setToCat5StartsWith(String value) { this.ToCat5StartsWith = value; return this; } public String getToCat5EndsWith() { return ToCat5EndsWith; } public IN_StandCostQuery setToCat5EndsWith(String value) { this.ToCat5EndsWith = value; return this; } public String getToCat5Contains() { return ToCat5Contains; } public IN_StandCostQuery setToCat5Contains(String value) { this.ToCat5Contains = value; return this; } public String getToCat5Like() { return ToCat5Like; } public IN_StandCostQuery setToCat5Like(String value) { this.ToCat5Like = value; return this; } public ArrayList getToCat5Between() { return ToCat5Between; } public IN_StandCostQuery setToCat5Between(ArrayList value) { this.ToCat5Between = value; return this; } public ArrayList getToCat5In() { return ToCat5In; } public IN_StandCostQuery setToCat5In(ArrayList value) { this.ToCat5In = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class IN_StandCostLineQuery extends QueryDb implements IReturn> { public String INStandCostLineID = null; public String INStandCostLineIDStartsWith = null; public String INStandCostLineIDEndsWith = null; public String INStandCostLineIDContains = null; public String INStandCostLineIDLike = null; public ArrayList INStandCostLineIDBetween = null; public ArrayList INStandCostLineIDIn = null; public String INStandCostID = null; public String INStandCostIDStartsWith = null; public String INStandCostIDEndsWith = null; public String INStandCostIDContains = null; public String INStandCostIDLike = null; public ArrayList INStandCostIDBetween = null; public ArrayList INStandCostIDIn = null; public String InventoryID = null; public String InventoryIDStartsWith = null; public String InventoryIDEndsWith = null; public String InventoryIDContains = null; public String InventoryIDLike = null; public ArrayList InventoryIDBetween = null; public ArrayList InventoryIDIn = null; public String PartNo = null; public String PartNoStartsWith = null; public String PartNoEndsWith = null; public String PartNoContains = null; public String PartNoLike = null; public ArrayList PartNoBetween = null; public ArrayList PartNoIn = null; public String Description = null; public String DescriptionStartsWith = null; public String DescriptionEndsWith = null; public String DescriptionContains = null; public String DescriptionLike = null; public ArrayList DescriptionBetween = null; public ArrayList DescriptionIn = null; public BigDecimal OldCost = null; public BigDecimal OldCostGreaterThanOrEqualTo = null; public BigDecimal OldCostGreaterThan = null; public BigDecimal OldCostLessThan = null; public BigDecimal OldCostLessThanOrEqualTo = null; public BigDecimal OldCostNotEqualTo = null; public ArrayList OldCostBetween = null; public ArrayList OldCostIn = null; public BigDecimal NewCost = null; public BigDecimal NewCostGreaterThanOrEqualTo = null; public BigDecimal NewCostGreaterThan = null; public BigDecimal NewCostLessThan = null; public BigDecimal NewCostLessThanOrEqualTo = null; public BigDecimal NewCostNotEqualTo = null; public ArrayList NewCostBetween = null; public ArrayList NewCostIn = null; public BigDecimal LastHomeCost = null; public BigDecimal LastHomeCostGreaterThanOrEqualTo = null; public BigDecimal LastHomeCostGreaterThan = null; public BigDecimal LastHomeCostLessThan = null; public BigDecimal LastHomeCostLessThanOrEqualTo = null; public BigDecimal LastHomeCostNotEqualTo = null; public ArrayList LastHomeCostBetween = null; public ArrayList LastHomeCostIn = null; public BigDecimal LastSupplierCost = null; public BigDecimal LastSupplierCostGreaterThanOrEqualTo = null; public BigDecimal LastSupplierCostGreaterThan = null; public BigDecimal LastSupplierCostLessThan = null; public BigDecimal LastSupplierCostLessThanOrEqualTo = null; public BigDecimal LastSupplierCostNotEqualTo = null; public ArrayList LastSupplierCostBetween = null; public ArrayList LastSupplierCostIn = null; public BigDecimal StandardDuty = null; public BigDecimal StandardDutyGreaterThanOrEqualTo = null; public BigDecimal StandardDutyGreaterThan = null; public BigDecimal StandardDutyLessThan = null; public BigDecimal StandardDutyLessThanOrEqualTo = null; public BigDecimal StandardDutyNotEqualTo = null; public ArrayList StandardDutyBetween = null; public ArrayList StandardDutyIn = null; public BigDecimal StandardFreight = null; public BigDecimal StandardFreightGreaterThanOrEqualTo = null; public BigDecimal StandardFreightGreaterThan = null; public BigDecimal StandardFreightLessThan = null; public BigDecimal StandardFreightLessThanOrEqualTo = null; public BigDecimal StandardFreightNotEqualTo = null; public ArrayList StandardFreightBetween = null; public ArrayList StandardFreightIn = null; public BigDecimal FXRate = null; public BigDecimal FXRateGreaterThanOrEqualTo = null; public BigDecimal FXRateGreaterThan = null; public BigDecimal FXRateLessThan = null; public BigDecimal FXRateLessThanOrEqualTo = null; public BigDecimal FXRateNotEqualTo = null; public ArrayList FXRateBetween = null; public ArrayList FXRateIn = null; public BigDecimal UserValue = null; public BigDecimal UserValueGreaterThanOrEqualTo = null; public BigDecimal UserValueGreaterThan = null; public BigDecimal UserValueLessThan = null; public BigDecimal UserValueLessThanOrEqualTo = null; public BigDecimal UserValueNotEqualTo = null; public ArrayList UserValueBetween = null; public ArrayList UserValueIn = null; public BigDecimal TotalSOH = null; public BigDecimal TotalSOHGreaterThanOrEqualTo = null; public BigDecimal TotalSOHGreaterThan = null; public BigDecimal TotalSOHLessThan = null; public BigDecimal TotalSOHLessThanOrEqualTo = null; public BigDecimal TotalSOHNotEqualTo = null; public ArrayList TotalSOHBetween = null; public ArrayList TotalSOHIn = null; public BigDecimal CurrentValue = null; public BigDecimal CurrentValueGreaterThanOrEqualTo = null; public BigDecimal CurrentValueGreaterThan = null; public BigDecimal CurrentValueLessThan = null; public BigDecimal CurrentValueLessThanOrEqualTo = null; public BigDecimal CurrentValueNotEqualTo = null; public ArrayList CurrentValueBetween = null; public ArrayList CurrentValueIn = null; public BigDecimal NewValue = null; public BigDecimal NewValueGreaterThanOrEqualTo = null; public BigDecimal NewValueGreaterThan = null; public BigDecimal NewValueLessThan = null; public BigDecimal NewValueLessThanOrEqualTo = null; public BigDecimal NewValueNotEqualTo = null; public ArrayList NewValueBetween = null; public ArrayList NewValueIn = null; public BigDecimal Variance = null; public BigDecimal VarianceGreaterThanOrEqualTo = null; public BigDecimal VarianceGreaterThan = null; public BigDecimal VarianceLessThan = null; public BigDecimal VarianceLessThanOrEqualTo = null; public BigDecimal VarianceNotEqualTo = null; public ArrayList VarianceBetween = null; public ArrayList VarianceIn = null; public Short DecimalPlaces = null; public Short DecimalPlacesGreaterThanOrEqualTo = null; public Short DecimalPlacesGreaterThan = null; public Short DecimalPlacesLessThan = null; public Short DecimalPlacesLessThanOrEqualTo = null; public Short DecimalPlacesNotEqualTo = null; public ArrayList DecimalPlacesBetween = null; public ArrayList DecimalPlacesIn = null; public BigDecimal FXCapitalRate = null; public BigDecimal FXCapitalRateGreaterThanOrEqualTo = null; public BigDecimal FXCapitalRateGreaterThan = null; public BigDecimal FXCapitalRateLessThan = null; public BigDecimal FXCapitalRateLessThanOrEqualTo = null; public BigDecimal FXCapitalRateNotEqualTo = null; public ArrayList FXCapitalRateBetween = null; public ArrayList FXCapitalRateIn = null; public String getInStandCostLineID() { return INStandCostLineID; } public IN_StandCostLineQuery setInStandCostLineID(String value) { this.INStandCostLineID = value; return this; } public String getInStandCostLineIDStartsWith() { return INStandCostLineIDStartsWith; } public IN_StandCostLineQuery setInStandCostLineIDStartsWith(String value) { this.INStandCostLineIDStartsWith = value; return this; } public String getInStandCostLineIDEndsWith() { return INStandCostLineIDEndsWith; } public IN_StandCostLineQuery setInStandCostLineIDEndsWith(String value) { this.INStandCostLineIDEndsWith = value; return this; } public String getInStandCostLineIDContains() { return INStandCostLineIDContains; } public IN_StandCostLineQuery setInStandCostLineIDContains(String value) { this.INStandCostLineIDContains = value; return this; } public String getInStandCostLineIDLike() { return INStandCostLineIDLike; } public IN_StandCostLineQuery setInStandCostLineIDLike(String value) { this.INStandCostLineIDLike = value; return this; } public ArrayList getInStandCostLineIDBetween() { return INStandCostLineIDBetween; } public IN_StandCostLineQuery setInStandCostLineIDBetween(ArrayList value) { this.INStandCostLineIDBetween = value; return this; } public ArrayList getInStandCostLineIDIn() { return INStandCostLineIDIn; } public IN_StandCostLineQuery setInStandCostLineIDIn(ArrayList value) { this.INStandCostLineIDIn = value; return this; } public String getInStandCostID() { return INStandCostID; } public IN_StandCostLineQuery setInStandCostID(String value) { this.INStandCostID = value; return this; } public String getInStandCostIDStartsWith() { return INStandCostIDStartsWith; } public IN_StandCostLineQuery setInStandCostIDStartsWith(String value) { this.INStandCostIDStartsWith = value; return this; } public String getInStandCostIDEndsWith() { return INStandCostIDEndsWith; } public IN_StandCostLineQuery setInStandCostIDEndsWith(String value) { this.INStandCostIDEndsWith = value; return this; } public String getInStandCostIDContains() { return INStandCostIDContains; } public IN_StandCostLineQuery setInStandCostIDContains(String value) { this.INStandCostIDContains = value; return this; } public String getInStandCostIDLike() { return INStandCostIDLike; } public IN_StandCostLineQuery setInStandCostIDLike(String value) { this.INStandCostIDLike = value; return this; } public ArrayList getInStandCostIDBetween() { return INStandCostIDBetween; } public IN_StandCostLineQuery setInStandCostIDBetween(ArrayList value) { this.INStandCostIDBetween = value; return this; } public ArrayList getInStandCostIDIn() { return INStandCostIDIn; } public IN_StandCostLineQuery setInStandCostIDIn(ArrayList value) { this.INStandCostIDIn = value; return this; } public String getInventoryID() { return InventoryID; } public IN_StandCostLineQuery setInventoryID(String value) { this.InventoryID = value; return this; } public String getInventoryIDStartsWith() { return InventoryIDStartsWith; } public IN_StandCostLineQuery setInventoryIDStartsWith(String value) { this.InventoryIDStartsWith = value; return this; } public String getInventoryIDEndsWith() { return InventoryIDEndsWith; } public IN_StandCostLineQuery setInventoryIDEndsWith(String value) { this.InventoryIDEndsWith = value; return this; } public String getInventoryIDContains() { return InventoryIDContains; } public IN_StandCostLineQuery setInventoryIDContains(String value) { this.InventoryIDContains = value; return this; } public String getInventoryIDLike() { return InventoryIDLike; } public IN_StandCostLineQuery setInventoryIDLike(String value) { this.InventoryIDLike = value; return this; } public ArrayList getInventoryIDBetween() { return InventoryIDBetween; } public IN_StandCostLineQuery setInventoryIDBetween(ArrayList value) { this.InventoryIDBetween = value; return this; } public ArrayList getInventoryIDIn() { return InventoryIDIn; } public IN_StandCostLineQuery setInventoryIDIn(ArrayList value) { this.InventoryIDIn = value; return this; } public String getPartNo() { return PartNo; } public IN_StandCostLineQuery setPartNo(String value) { this.PartNo = value; return this; } public String getPartNoStartsWith() { return PartNoStartsWith; } public IN_StandCostLineQuery setPartNoStartsWith(String value) { this.PartNoStartsWith = value; return this; } public String getPartNoEndsWith() { return PartNoEndsWith; } public IN_StandCostLineQuery setPartNoEndsWith(String value) { this.PartNoEndsWith = value; return this; } public String getPartNoContains() { return PartNoContains; } public IN_StandCostLineQuery setPartNoContains(String value) { this.PartNoContains = value; return this; } public String getPartNoLike() { return PartNoLike; } public IN_StandCostLineQuery setPartNoLike(String value) { this.PartNoLike = value; return this; } public ArrayList getPartNoBetween() { return PartNoBetween; } public IN_StandCostLineQuery setPartNoBetween(ArrayList value) { this.PartNoBetween = value; return this; } public ArrayList getPartNoIn() { return PartNoIn; } public IN_StandCostLineQuery setPartNoIn(ArrayList value) { this.PartNoIn = value; return this; } public String getDescription() { return Description; } public IN_StandCostLineQuery setDescription(String value) { this.Description = value; return this; } public String getDescriptionStartsWith() { return DescriptionStartsWith; } public IN_StandCostLineQuery setDescriptionStartsWith(String value) { this.DescriptionStartsWith = value; return this; } public String getDescriptionEndsWith() { return DescriptionEndsWith; } public IN_StandCostLineQuery setDescriptionEndsWith(String value) { this.DescriptionEndsWith = value; return this; } public String getDescriptionContains() { return DescriptionContains; } public IN_StandCostLineQuery setDescriptionContains(String value) { this.DescriptionContains = value; return this; } public String getDescriptionLike() { return DescriptionLike; } public IN_StandCostLineQuery setDescriptionLike(String value) { this.DescriptionLike = value; return this; } public ArrayList getDescriptionBetween() { return DescriptionBetween; } public IN_StandCostLineQuery setDescriptionBetween(ArrayList value) { this.DescriptionBetween = value; return this; } public ArrayList getDescriptionIn() { return DescriptionIn; } public IN_StandCostLineQuery setDescriptionIn(ArrayList value) { this.DescriptionIn = value; return this; } public BigDecimal getOldCost() { return OldCost; } public IN_StandCostLineQuery setOldCost(BigDecimal value) { this.OldCost = value; return this; } public BigDecimal getOldCostGreaterThanOrEqualTo() { return OldCostGreaterThanOrEqualTo; } public IN_StandCostLineQuery setOldCostGreaterThanOrEqualTo(BigDecimal value) { this.OldCostGreaterThanOrEqualTo = value; return this; } public BigDecimal getOldCostGreaterThan() { return OldCostGreaterThan; } public IN_StandCostLineQuery setOldCostGreaterThan(BigDecimal value) { this.OldCostGreaterThan = value; return this; } public BigDecimal getOldCostLessThan() { return OldCostLessThan; } public IN_StandCostLineQuery setOldCostLessThan(BigDecimal value) { this.OldCostLessThan = value; return this; } public BigDecimal getOldCostLessThanOrEqualTo() { return OldCostLessThanOrEqualTo; } public IN_StandCostLineQuery setOldCostLessThanOrEqualTo(BigDecimal value) { this.OldCostLessThanOrEqualTo = value; return this; } public BigDecimal getOldCostNotEqualTo() { return OldCostNotEqualTo; } public IN_StandCostLineQuery setOldCostNotEqualTo(BigDecimal value) { this.OldCostNotEqualTo = value; return this; } public ArrayList getOldCostBetween() { return OldCostBetween; } public IN_StandCostLineQuery setOldCostBetween(ArrayList value) { this.OldCostBetween = value; return this; } public ArrayList getOldCostIn() { return OldCostIn; } public IN_StandCostLineQuery setOldCostIn(ArrayList value) { this.OldCostIn = value; return this; } public BigDecimal getNewCost() { return NewCost; } public IN_StandCostLineQuery setNewCost(BigDecimal value) { this.NewCost = value; return this; } public BigDecimal getNewCostGreaterThanOrEqualTo() { return NewCostGreaterThanOrEqualTo; } public IN_StandCostLineQuery setNewCostGreaterThanOrEqualTo(BigDecimal value) { this.NewCostGreaterThanOrEqualTo = value; return this; } public BigDecimal getNewCostGreaterThan() { return NewCostGreaterThan; } public IN_StandCostLineQuery setNewCostGreaterThan(BigDecimal value) { this.NewCostGreaterThan = value; return this; } public BigDecimal getNewCostLessThan() { return NewCostLessThan; } public IN_StandCostLineQuery setNewCostLessThan(BigDecimal value) { this.NewCostLessThan = value; return this; } public BigDecimal getNewCostLessThanOrEqualTo() { return NewCostLessThanOrEqualTo; } public IN_StandCostLineQuery setNewCostLessThanOrEqualTo(BigDecimal value) { this.NewCostLessThanOrEqualTo = value; return this; } public BigDecimal getNewCostNotEqualTo() { return NewCostNotEqualTo; } public IN_StandCostLineQuery setNewCostNotEqualTo(BigDecimal value) { this.NewCostNotEqualTo = value; return this; } public ArrayList getNewCostBetween() { return NewCostBetween; } public IN_StandCostLineQuery setNewCostBetween(ArrayList value) { this.NewCostBetween = value; return this; } public ArrayList getNewCostIn() { return NewCostIn; } public IN_StandCostLineQuery setNewCostIn(ArrayList value) { this.NewCostIn = value; return this; } public BigDecimal getLastHomeCost() { return LastHomeCost; } public IN_StandCostLineQuery setLastHomeCost(BigDecimal value) { this.LastHomeCost = value; return this; } public BigDecimal getLastHomeCostGreaterThanOrEqualTo() { return LastHomeCostGreaterThanOrEqualTo; } public IN_StandCostLineQuery setLastHomeCostGreaterThanOrEqualTo(BigDecimal value) { this.LastHomeCostGreaterThanOrEqualTo = value; return this; } public BigDecimal getLastHomeCostGreaterThan() { return LastHomeCostGreaterThan; } public IN_StandCostLineQuery setLastHomeCostGreaterThan(BigDecimal value) { this.LastHomeCostGreaterThan = value; return this; } public BigDecimal getLastHomeCostLessThan() { return LastHomeCostLessThan; } public IN_StandCostLineQuery setLastHomeCostLessThan(BigDecimal value) { this.LastHomeCostLessThan = value; return this; } public BigDecimal getLastHomeCostLessThanOrEqualTo() { return LastHomeCostLessThanOrEqualTo; } public IN_StandCostLineQuery setLastHomeCostLessThanOrEqualTo(BigDecimal value) { this.LastHomeCostLessThanOrEqualTo = value; return this; } public BigDecimal getLastHomeCostNotEqualTo() { return LastHomeCostNotEqualTo; } public IN_StandCostLineQuery setLastHomeCostNotEqualTo(BigDecimal value) { this.LastHomeCostNotEqualTo = value; return this; } public ArrayList getLastHomeCostBetween() { return LastHomeCostBetween; } public IN_StandCostLineQuery setLastHomeCostBetween(ArrayList value) { this.LastHomeCostBetween = value; return this; } public ArrayList getLastHomeCostIn() { return LastHomeCostIn; } public IN_StandCostLineQuery setLastHomeCostIn(ArrayList value) { this.LastHomeCostIn = value; return this; } public BigDecimal getLastSupplierCost() { return LastSupplierCost; } public IN_StandCostLineQuery setLastSupplierCost(BigDecimal value) { this.LastSupplierCost = value; return this; } public BigDecimal getLastSupplierCostGreaterThanOrEqualTo() { return LastSupplierCostGreaterThanOrEqualTo; } public IN_StandCostLineQuery setLastSupplierCostGreaterThanOrEqualTo(BigDecimal value) { this.LastSupplierCostGreaterThanOrEqualTo = value; return this; } public BigDecimal getLastSupplierCostGreaterThan() { return LastSupplierCostGreaterThan; } public IN_StandCostLineQuery setLastSupplierCostGreaterThan(BigDecimal value) { this.LastSupplierCostGreaterThan = value; return this; } public BigDecimal getLastSupplierCostLessThan() { return LastSupplierCostLessThan; } public IN_StandCostLineQuery setLastSupplierCostLessThan(BigDecimal value) { this.LastSupplierCostLessThan = value; return this; } public BigDecimal getLastSupplierCostLessThanOrEqualTo() { return LastSupplierCostLessThanOrEqualTo; } public IN_StandCostLineQuery setLastSupplierCostLessThanOrEqualTo(BigDecimal value) { this.LastSupplierCostLessThanOrEqualTo = value; return this; } public BigDecimal getLastSupplierCostNotEqualTo() { return LastSupplierCostNotEqualTo; } public IN_StandCostLineQuery setLastSupplierCostNotEqualTo(BigDecimal value) { this.LastSupplierCostNotEqualTo = value; return this; } public ArrayList getLastSupplierCostBetween() { return LastSupplierCostBetween; } public IN_StandCostLineQuery setLastSupplierCostBetween(ArrayList value) { this.LastSupplierCostBetween = value; return this; } public ArrayList getLastSupplierCostIn() { return LastSupplierCostIn; } public IN_StandCostLineQuery setLastSupplierCostIn(ArrayList value) { this.LastSupplierCostIn = value; return this; } public BigDecimal getStandardDuty() { return StandardDuty; } public IN_StandCostLineQuery setStandardDuty(BigDecimal value) { this.StandardDuty = value; return this; } public BigDecimal getStandardDutyGreaterThanOrEqualTo() { return StandardDutyGreaterThanOrEqualTo; } public IN_StandCostLineQuery setStandardDutyGreaterThanOrEqualTo(BigDecimal value) { this.StandardDutyGreaterThanOrEqualTo = value; return this; } public BigDecimal getStandardDutyGreaterThan() { return StandardDutyGreaterThan; } public IN_StandCostLineQuery setStandardDutyGreaterThan(BigDecimal value) { this.StandardDutyGreaterThan = value; return this; } public BigDecimal getStandardDutyLessThan() { return StandardDutyLessThan; } public IN_StandCostLineQuery setStandardDutyLessThan(BigDecimal value) { this.StandardDutyLessThan = value; return this; } public BigDecimal getStandardDutyLessThanOrEqualTo() { return StandardDutyLessThanOrEqualTo; } public IN_StandCostLineQuery setStandardDutyLessThanOrEqualTo(BigDecimal value) { this.StandardDutyLessThanOrEqualTo = value; return this; } public BigDecimal getStandardDutyNotEqualTo() { return StandardDutyNotEqualTo; } public IN_StandCostLineQuery setStandardDutyNotEqualTo(BigDecimal value) { this.StandardDutyNotEqualTo = value; return this; } public ArrayList getStandardDutyBetween() { return StandardDutyBetween; } public IN_StandCostLineQuery setStandardDutyBetween(ArrayList value) { this.StandardDutyBetween = value; return this; } public ArrayList getStandardDutyIn() { return StandardDutyIn; } public IN_StandCostLineQuery setStandardDutyIn(ArrayList value) { this.StandardDutyIn = value; return this; } public BigDecimal getStandardFreight() { return StandardFreight; } public IN_StandCostLineQuery setStandardFreight(BigDecimal value) { this.StandardFreight = value; return this; } public BigDecimal getStandardFreightGreaterThanOrEqualTo() { return StandardFreightGreaterThanOrEqualTo; } public IN_StandCostLineQuery setStandardFreightGreaterThanOrEqualTo(BigDecimal value) { this.StandardFreightGreaterThanOrEqualTo = value; return this; } public BigDecimal getStandardFreightGreaterThan() { return StandardFreightGreaterThan; } public IN_StandCostLineQuery setStandardFreightGreaterThan(BigDecimal value) { this.StandardFreightGreaterThan = value; return this; } public BigDecimal getStandardFreightLessThan() { return StandardFreightLessThan; } public IN_StandCostLineQuery setStandardFreightLessThan(BigDecimal value) { this.StandardFreightLessThan = value; return this; } public BigDecimal getStandardFreightLessThanOrEqualTo() { return StandardFreightLessThanOrEqualTo; } public IN_StandCostLineQuery setStandardFreightLessThanOrEqualTo(BigDecimal value) { this.StandardFreightLessThanOrEqualTo = value; return this; } public BigDecimal getStandardFreightNotEqualTo() { return StandardFreightNotEqualTo; } public IN_StandCostLineQuery setStandardFreightNotEqualTo(BigDecimal value) { this.StandardFreightNotEqualTo = value; return this; } public ArrayList getStandardFreightBetween() { return StandardFreightBetween; } public IN_StandCostLineQuery setStandardFreightBetween(ArrayList value) { this.StandardFreightBetween = value; return this; } public ArrayList getStandardFreightIn() { return StandardFreightIn; } public IN_StandCostLineQuery setStandardFreightIn(ArrayList value) { this.StandardFreightIn = value; return this; } public BigDecimal getFxRate() { return FXRate; } public IN_StandCostLineQuery setFxRate(BigDecimal value) { this.FXRate = value; return this; } public BigDecimal getFxRateGreaterThanOrEqualTo() { return FXRateGreaterThanOrEqualTo; } public IN_StandCostLineQuery setFxRateGreaterThanOrEqualTo(BigDecimal value) { this.FXRateGreaterThanOrEqualTo = value; return this; } public BigDecimal getFxRateGreaterThan() { return FXRateGreaterThan; } public IN_StandCostLineQuery setFxRateGreaterThan(BigDecimal value) { this.FXRateGreaterThan = value; return this; } public BigDecimal getFxRateLessThan() { return FXRateLessThan; } public IN_StandCostLineQuery setFxRateLessThan(BigDecimal value) { this.FXRateLessThan = value; return this; } public BigDecimal getFxRateLessThanOrEqualTo() { return FXRateLessThanOrEqualTo; } public IN_StandCostLineQuery setFxRateLessThanOrEqualTo(BigDecimal value) { this.FXRateLessThanOrEqualTo = value; return this; } public BigDecimal getFxRateNotEqualTo() { return FXRateNotEqualTo; } public IN_StandCostLineQuery setFxRateNotEqualTo(BigDecimal value) { this.FXRateNotEqualTo = value; return this; } public ArrayList getFxRateBetween() { return FXRateBetween; } public IN_StandCostLineQuery setFxRateBetween(ArrayList value) { this.FXRateBetween = value; return this; } public ArrayList getFxRateIn() { return FXRateIn; } public IN_StandCostLineQuery setFxRateIn(ArrayList value) { this.FXRateIn = value; return this; } public BigDecimal getUserValue() { return UserValue; } public IN_StandCostLineQuery setUserValue(BigDecimal value) { this.UserValue = value; return this; } public BigDecimal getUserValueGreaterThanOrEqualTo() { return UserValueGreaterThanOrEqualTo; } public IN_StandCostLineQuery setUserValueGreaterThanOrEqualTo(BigDecimal value) { this.UserValueGreaterThanOrEqualTo = value; return this; } public BigDecimal getUserValueGreaterThan() { return UserValueGreaterThan; } public IN_StandCostLineQuery setUserValueGreaterThan(BigDecimal value) { this.UserValueGreaterThan = value; return this; } public BigDecimal getUserValueLessThan() { return UserValueLessThan; } public IN_StandCostLineQuery setUserValueLessThan(BigDecimal value) { this.UserValueLessThan = value; return this; } public BigDecimal getUserValueLessThanOrEqualTo() { return UserValueLessThanOrEqualTo; } public IN_StandCostLineQuery setUserValueLessThanOrEqualTo(BigDecimal value) { this.UserValueLessThanOrEqualTo = value; return this; } public BigDecimal getUserValueNotEqualTo() { return UserValueNotEqualTo; } public IN_StandCostLineQuery setUserValueNotEqualTo(BigDecimal value) { this.UserValueNotEqualTo = value; return this; } public ArrayList getUserValueBetween() { return UserValueBetween; } public IN_StandCostLineQuery setUserValueBetween(ArrayList value) { this.UserValueBetween = value; return this; } public ArrayList getUserValueIn() { return UserValueIn; } public IN_StandCostLineQuery setUserValueIn(ArrayList value) { this.UserValueIn = value; return this; } public BigDecimal getTotalSOH() { return TotalSOH; } public IN_StandCostLineQuery setTotalSOH(BigDecimal value) { this.TotalSOH = value; return this; } public BigDecimal getTotalSOHGreaterThanOrEqualTo() { return TotalSOHGreaterThanOrEqualTo; } public IN_StandCostLineQuery setTotalSOHGreaterThanOrEqualTo(BigDecimal value) { this.TotalSOHGreaterThanOrEqualTo = value; return this; } public BigDecimal getTotalSOHGreaterThan() { return TotalSOHGreaterThan; } public IN_StandCostLineQuery setTotalSOHGreaterThan(BigDecimal value) { this.TotalSOHGreaterThan = value; return this; } public BigDecimal getTotalSOHLessThan() { return TotalSOHLessThan; } public IN_StandCostLineQuery setTotalSOHLessThan(BigDecimal value) { this.TotalSOHLessThan = value; return this; } public BigDecimal getTotalSOHLessThanOrEqualTo() { return TotalSOHLessThanOrEqualTo; } public IN_StandCostLineQuery setTotalSOHLessThanOrEqualTo(BigDecimal value) { this.TotalSOHLessThanOrEqualTo = value; return this; } public BigDecimal getTotalSOHNotEqualTo() { return TotalSOHNotEqualTo; } public IN_StandCostLineQuery setTotalSOHNotEqualTo(BigDecimal value) { this.TotalSOHNotEqualTo = value; return this; } public ArrayList getTotalSOHBetween() { return TotalSOHBetween; } public IN_StandCostLineQuery setTotalSOHBetween(ArrayList value) { this.TotalSOHBetween = value; return this; } public ArrayList getTotalSOHIn() { return TotalSOHIn; } public IN_StandCostLineQuery setTotalSOHIn(ArrayList value) { this.TotalSOHIn = value; return this; } public BigDecimal getCurrentValue() { return CurrentValue; } public IN_StandCostLineQuery setCurrentValue(BigDecimal value) { this.CurrentValue = value; return this; } public BigDecimal getCurrentValueGreaterThanOrEqualTo() { return CurrentValueGreaterThanOrEqualTo; } public IN_StandCostLineQuery setCurrentValueGreaterThanOrEqualTo(BigDecimal value) { this.CurrentValueGreaterThanOrEqualTo = value; return this; } public BigDecimal getCurrentValueGreaterThan() { return CurrentValueGreaterThan; } public IN_StandCostLineQuery setCurrentValueGreaterThan(BigDecimal value) { this.CurrentValueGreaterThan = value; return this; } public BigDecimal getCurrentValueLessThan() { return CurrentValueLessThan; } public IN_StandCostLineQuery setCurrentValueLessThan(BigDecimal value) { this.CurrentValueLessThan = value; return this; } public BigDecimal getCurrentValueLessThanOrEqualTo() { return CurrentValueLessThanOrEqualTo; } public IN_StandCostLineQuery setCurrentValueLessThanOrEqualTo(BigDecimal value) { this.CurrentValueLessThanOrEqualTo = value; return this; } public BigDecimal getCurrentValueNotEqualTo() { return CurrentValueNotEqualTo; } public IN_StandCostLineQuery setCurrentValueNotEqualTo(BigDecimal value) { this.CurrentValueNotEqualTo = value; return this; } public ArrayList getCurrentValueBetween() { return CurrentValueBetween; } public IN_StandCostLineQuery setCurrentValueBetween(ArrayList value) { this.CurrentValueBetween = value; return this; } public ArrayList getCurrentValueIn() { return CurrentValueIn; } public IN_StandCostLineQuery setCurrentValueIn(ArrayList value) { this.CurrentValueIn = value; return this; } public BigDecimal getNewValue() { return NewValue; } public IN_StandCostLineQuery setNewValue(BigDecimal value) { this.NewValue = value; return this; } public BigDecimal getNewValueGreaterThanOrEqualTo() { return NewValueGreaterThanOrEqualTo; } public IN_StandCostLineQuery setNewValueGreaterThanOrEqualTo(BigDecimal value) { this.NewValueGreaterThanOrEqualTo = value; return this; } public BigDecimal getNewValueGreaterThan() { return NewValueGreaterThan; } public IN_StandCostLineQuery setNewValueGreaterThan(BigDecimal value) { this.NewValueGreaterThan = value; return this; } public BigDecimal getNewValueLessThan() { return NewValueLessThan; } public IN_StandCostLineQuery setNewValueLessThan(BigDecimal value) { this.NewValueLessThan = value; return this; } public BigDecimal getNewValueLessThanOrEqualTo() { return NewValueLessThanOrEqualTo; } public IN_StandCostLineQuery setNewValueLessThanOrEqualTo(BigDecimal value) { this.NewValueLessThanOrEqualTo = value; return this; } public BigDecimal getNewValueNotEqualTo() { return NewValueNotEqualTo; } public IN_StandCostLineQuery setNewValueNotEqualTo(BigDecimal value) { this.NewValueNotEqualTo = value; return this; } public ArrayList getNewValueBetween() { return NewValueBetween; } public IN_StandCostLineQuery setNewValueBetween(ArrayList value) { this.NewValueBetween = value; return this; } public ArrayList getNewValueIn() { return NewValueIn; } public IN_StandCostLineQuery setNewValueIn(ArrayList value) { this.NewValueIn = value; return this; } public BigDecimal getVariance() { return Variance; } public IN_StandCostLineQuery setVariance(BigDecimal value) { this.Variance = value; return this; } public BigDecimal getVarianceGreaterThanOrEqualTo() { return VarianceGreaterThanOrEqualTo; } public IN_StandCostLineQuery setVarianceGreaterThanOrEqualTo(BigDecimal value) { this.VarianceGreaterThanOrEqualTo = value; return this; } public BigDecimal getVarianceGreaterThan() { return VarianceGreaterThan; } public IN_StandCostLineQuery setVarianceGreaterThan(BigDecimal value) { this.VarianceGreaterThan = value; return this; } public BigDecimal getVarianceLessThan() { return VarianceLessThan; } public IN_StandCostLineQuery setVarianceLessThan(BigDecimal value) { this.VarianceLessThan = value; return this; } public BigDecimal getVarianceLessThanOrEqualTo() { return VarianceLessThanOrEqualTo; } public IN_StandCostLineQuery setVarianceLessThanOrEqualTo(BigDecimal value) { this.VarianceLessThanOrEqualTo = value; return this; } public BigDecimal getVarianceNotEqualTo() { return VarianceNotEqualTo; } public IN_StandCostLineQuery setVarianceNotEqualTo(BigDecimal value) { this.VarianceNotEqualTo = value; return this; } public ArrayList getVarianceBetween() { return VarianceBetween; } public IN_StandCostLineQuery setVarianceBetween(ArrayList value) { this.VarianceBetween = value; return this; } public ArrayList getVarianceIn() { return VarianceIn; } public IN_StandCostLineQuery setVarianceIn(ArrayList value) { this.VarianceIn = value; return this; } public Short getDecimalPlaces() { return DecimalPlaces; } public IN_StandCostLineQuery setDecimalPlaces(Short value) { this.DecimalPlaces = value; return this; } public Short getDecimalPlacesGreaterThanOrEqualTo() { return DecimalPlacesGreaterThanOrEqualTo; } public IN_StandCostLineQuery setDecimalPlacesGreaterThanOrEqualTo(Short value) { this.DecimalPlacesGreaterThanOrEqualTo = value; return this; } public Short getDecimalPlacesGreaterThan() { return DecimalPlacesGreaterThan; } public IN_StandCostLineQuery setDecimalPlacesGreaterThan(Short value) { this.DecimalPlacesGreaterThan = value; return this; } public Short getDecimalPlacesLessThan() { return DecimalPlacesLessThan; } public IN_StandCostLineQuery setDecimalPlacesLessThan(Short value) { this.DecimalPlacesLessThan = value; return this; } public Short getDecimalPlacesLessThanOrEqualTo() { return DecimalPlacesLessThanOrEqualTo; } public IN_StandCostLineQuery setDecimalPlacesLessThanOrEqualTo(Short value) { this.DecimalPlacesLessThanOrEqualTo = value; return this; } public Short getDecimalPlacesNotEqualTo() { return DecimalPlacesNotEqualTo; } public IN_StandCostLineQuery setDecimalPlacesNotEqualTo(Short value) { this.DecimalPlacesNotEqualTo = value; return this; } public ArrayList getDecimalPlacesBetween() { return DecimalPlacesBetween; } public IN_StandCostLineQuery setDecimalPlacesBetween(ArrayList value) { this.DecimalPlacesBetween = value; return this; } public ArrayList getDecimalPlacesIn() { return DecimalPlacesIn; } public IN_StandCostLineQuery setDecimalPlacesIn(ArrayList value) { this.DecimalPlacesIn = value; return this; } public BigDecimal getFxCapitalRate() { return FXCapitalRate; } public IN_StandCostLineQuery setFxCapitalRate(BigDecimal value) { this.FXCapitalRate = value; return this; } public BigDecimal getFxCapitalRateGreaterThanOrEqualTo() { return FXCapitalRateGreaterThanOrEqualTo; } public IN_StandCostLineQuery setFxCapitalRateGreaterThanOrEqualTo(BigDecimal value) { this.FXCapitalRateGreaterThanOrEqualTo = value; return this; } public BigDecimal getFxCapitalRateGreaterThan() { return FXCapitalRateGreaterThan; } public IN_StandCostLineQuery setFxCapitalRateGreaterThan(BigDecimal value) { this.FXCapitalRateGreaterThan = value; return this; } public BigDecimal getFxCapitalRateLessThan() { return FXCapitalRateLessThan; } public IN_StandCostLineQuery setFxCapitalRateLessThan(BigDecimal value) { this.FXCapitalRateLessThan = value; return this; } public BigDecimal getFxCapitalRateLessThanOrEqualTo() { return FXCapitalRateLessThanOrEqualTo; } public IN_StandCostLineQuery setFxCapitalRateLessThanOrEqualTo(BigDecimal value) { this.FXCapitalRateLessThanOrEqualTo = value; return this; } public BigDecimal getFxCapitalRateNotEqualTo() { return FXCapitalRateNotEqualTo; } public IN_StandCostLineQuery setFxCapitalRateNotEqualTo(BigDecimal value) { this.FXCapitalRateNotEqualTo = value; return this; } public ArrayList getFxCapitalRateBetween() { return FXCapitalRateBetween; } public IN_StandCostLineQuery setFxCapitalRateBetween(ArrayList value) { this.FXCapitalRateBetween = value; return this; } public ArrayList getFxCapitalRateIn() { return FXCapitalRateIn; } public IN_StandCostLineQuery setFxCapitalRateIn(ArrayList value) { this.FXCapitalRateIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class IN_StockTakeLineDetailsQuery extends QueryDb implements IReturn> { public String StockTakeDetailsID = null; public String StockTakeDetailsIDStartsWith = null; public String StockTakeDetailsIDEndsWith = null; public String StockTakeDetailsIDContains = null; public String StockTakeDetailsIDLike = null; public ArrayList StockTakeDetailsIDBetween = null; public ArrayList StockTakeDetailsIDIn = null; public String StockTakeLineID = null; public String StockTakeLineIDStartsWith = null; public String StockTakeLineIDEndsWith = null; public String StockTakeLineIDContains = null; public String StockTakeLineIDLike = null; public ArrayList StockTakeLineIDBetween = null; public ArrayList StockTakeLineIDIn = null; public String SerialNumber = null; public String SerialNumberStartsWith = null; public String SerialNumberEndsWith = null; public String SerialNumberContains = null; public String SerialNumberLike = null; public ArrayList SerialNumberBetween = null; public ArrayList SerialNumberIn = null; public String LinkID = null; public String LinkIDStartsWith = null; public String LinkIDEndsWith = null; public String LinkIDContains = null; public String LinkIDLike = null; public ArrayList LinkIDBetween = null; public ArrayList LinkIDIn = null; public BigDecimal QtyFound = null; public BigDecimal QtyFoundGreaterThanOrEqualTo = null; public BigDecimal QtyFoundGreaterThan = null; public BigDecimal QtyFoundLessThan = null; public BigDecimal QtyFoundLessThanOrEqualTo = null; public BigDecimal QtyFoundNotEqualTo = null; public ArrayList QtyFoundBetween = null; public ArrayList QtyFoundIn = null; public BigDecimal QtyNotFound = null; public BigDecimal QtyNotFoundGreaterThanOrEqualTo = null; public BigDecimal QtyNotFoundGreaterThan = null; public BigDecimal QtyNotFoundLessThan = null; public BigDecimal QtyNotFoundLessThanOrEqualTo = null; public BigDecimal QtyNotFoundNotEqualTo = null; public ArrayList QtyNotFoundBetween = null; public ArrayList QtyNotFoundIn = null; public BigDecimal QtyAdded = null; public BigDecimal QtyAddedGreaterThanOrEqualTo = null; public BigDecimal QtyAddedGreaterThan = null; public BigDecimal QtyAddedLessThan = null; public BigDecimal QtyAddedLessThanOrEqualTo = null; public BigDecimal QtyAddedNotEqualTo = null; public ArrayList QtyAddedBetween = null; public ArrayList QtyAddedIn = null; public BigDecimal Cost = null; public BigDecimal CostGreaterThanOrEqualTo = null; public BigDecimal CostGreaterThan = null; public BigDecimal CostLessThan = null; public BigDecimal CostLessThanOrEqualTo = null; public BigDecimal CostNotEqualTo = null; public ArrayList CostBetween = null; public ArrayList CostIn = null; public Date ExpiryDate = null; public Date ExpiryDateGreaterThanOrEqualTo = null; public Date ExpiryDateGreaterThan = null; public Date ExpiryDateLessThan = null; public Date ExpiryDateLessThanOrEqualTo = null; public Date ExpiryDateNotEqualTo = null; public ArrayList ExpiryDateBetween = null; public ArrayList ExpiryDateIn = null; public String IN_BinLocationLookup_RecID = null; public String IN_BinLocationLookup_RecIDStartsWith = null; public String IN_BinLocationLookup_RecIDEndsWith = null; public String IN_BinLocationLookup_RecIDContains = null; public String IN_BinLocationLookup_RecIDLike = null; public ArrayList IN_BinLocationLookup_RecIDBetween = null; public ArrayList IN_BinLocationLookup_RecIDIn = null; public Integer ItemNo = null; public Integer ItemNoGreaterThanOrEqualTo = null; public Integer ItemNoGreaterThan = null; public Integer ItemNoLessThan = null; public Integer ItemNoLessThanOrEqualTo = null; public Integer ItemNoNotEqualTo = null; public ArrayList ItemNoBetween = null; public ArrayList ItemNoIn = null; public String getStockTakeDetailsID() { return StockTakeDetailsID; } public IN_StockTakeLineDetailsQuery setStockTakeDetailsID(String value) { this.StockTakeDetailsID = value; return this; } public String getStockTakeDetailsIDStartsWith() { return StockTakeDetailsIDStartsWith; } public IN_StockTakeLineDetailsQuery setStockTakeDetailsIDStartsWith(String value) { this.StockTakeDetailsIDStartsWith = value; return this; } public String getStockTakeDetailsIDEndsWith() { return StockTakeDetailsIDEndsWith; } public IN_StockTakeLineDetailsQuery setStockTakeDetailsIDEndsWith(String value) { this.StockTakeDetailsIDEndsWith = value; return this; } public String getStockTakeDetailsIDContains() { return StockTakeDetailsIDContains; } public IN_StockTakeLineDetailsQuery setStockTakeDetailsIDContains(String value) { this.StockTakeDetailsIDContains = value; return this; } public String getStockTakeDetailsIDLike() { return StockTakeDetailsIDLike; } public IN_StockTakeLineDetailsQuery setStockTakeDetailsIDLike(String value) { this.StockTakeDetailsIDLike = value; return this; } public ArrayList getStockTakeDetailsIDBetween() { return StockTakeDetailsIDBetween; } public IN_StockTakeLineDetailsQuery setStockTakeDetailsIDBetween(ArrayList value) { this.StockTakeDetailsIDBetween = value; return this; } public ArrayList getStockTakeDetailsIDIn() { return StockTakeDetailsIDIn; } public IN_StockTakeLineDetailsQuery setStockTakeDetailsIDIn(ArrayList value) { this.StockTakeDetailsIDIn = value; return this; } public String getStockTakeLineID() { return StockTakeLineID; } public IN_StockTakeLineDetailsQuery setStockTakeLineID(String value) { this.StockTakeLineID = value; return this; } public String getStockTakeLineIDStartsWith() { return StockTakeLineIDStartsWith; } public IN_StockTakeLineDetailsQuery setStockTakeLineIDStartsWith(String value) { this.StockTakeLineIDStartsWith = value; return this; } public String getStockTakeLineIDEndsWith() { return StockTakeLineIDEndsWith; } public IN_StockTakeLineDetailsQuery setStockTakeLineIDEndsWith(String value) { this.StockTakeLineIDEndsWith = value; return this; } public String getStockTakeLineIDContains() { return StockTakeLineIDContains; } public IN_StockTakeLineDetailsQuery setStockTakeLineIDContains(String value) { this.StockTakeLineIDContains = value; return this; } public String getStockTakeLineIDLike() { return StockTakeLineIDLike; } public IN_StockTakeLineDetailsQuery setStockTakeLineIDLike(String value) { this.StockTakeLineIDLike = value; return this; } public ArrayList getStockTakeLineIDBetween() { return StockTakeLineIDBetween; } public IN_StockTakeLineDetailsQuery setStockTakeLineIDBetween(ArrayList value) { this.StockTakeLineIDBetween = value; return this; } public ArrayList getStockTakeLineIDIn() { return StockTakeLineIDIn; } public IN_StockTakeLineDetailsQuery setStockTakeLineIDIn(ArrayList value) { this.StockTakeLineIDIn = value; return this; } public String getSerialNumber() { return SerialNumber; } public IN_StockTakeLineDetailsQuery setSerialNumber(String value) { this.SerialNumber = value; return this; } public String getSerialNumberStartsWith() { return SerialNumberStartsWith; } public IN_StockTakeLineDetailsQuery setSerialNumberStartsWith(String value) { this.SerialNumberStartsWith = value; return this; } public String getSerialNumberEndsWith() { return SerialNumberEndsWith; } public IN_StockTakeLineDetailsQuery setSerialNumberEndsWith(String value) { this.SerialNumberEndsWith = value; return this; } public String getSerialNumberContains() { return SerialNumberContains; } public IN_StockTakeLineDetailsQuery setSerialNumberContains(String value) { this.SerialNumberContains = value; return this; } public String getSerialNumberLike() { return SerialNumberLike; } public IN_StockTakeLineDetailsQuery setSerialNumberLike(String value) { this.SerialNumberLike = value; return this; } public ArrayList getSerialNumberBetween() { return SerialNumberBetween; } public IN_StockTakeLineDetailsQuery setSerialNumberBetween(ArrayList value) { this.SerialNumberBetween = value; return this; } public ArrayList getSerialNumberIn() { return SerialNumberIn; } public IN_StockTakeLineDetailsQuery setSerialNumberIn(ArrayList value) { this.SerialNumberIn = value; return this; } public String getLinkID() { return LinkID; } public IN_StockTakeLineDetailsQuery setLinkID(String value) { this.LinkID = value; return this; } public String getLinkIDStartsWith() { return LinkIDStartsWith; } public IN_StockTakeLineDetailsQuery setLinkIDStartsWith(String value) { this.LinkIDStartsWith = value; return this; } public String getLinkIDEndsWith() { return LinkIDEndsWith; } public IN_StockTakeLineDetailsQuery setLinkIDEndsWith(String value) { this.LinkIDEndsWith = value; return this; } public String getLinkIDContains() { return LinkIDContains; } public IN_StockTakeLineDetailsQuery setLinkIDContains(String value) { this.LinkIDContains = value; return this; } public String getLinkIDLike() { return LinkIDLike; } public IN_StockTakeLineDetailsQuery setLinkIDLike(String value) { this.LinkIDLike = value; return this; } public ArrayList getLinkIDBetween() { return LinkIDBetween; } public IN_StockTakeLineDetailsQuery setLinkIDBetween(ArrayList value) { this.LinkIDBetween = value; return this; } public ArrayList getLinkIDIn() { return LinkIDIn; } public IN_StockTakeLineDetailsQuery setLinkIDIn(ArrayList value) { this.LinkIDIn = value; return this; } public BigDecimal getQtyFound() { return QtyFound; } public IN_StockTakeLineDetailsQuery setQtyFound(BigDecimal value) { this.QtyFound = value; return this; } public BigDecimal getQtyFoundGreaterThanOrEqualTo() { return QtyFoundGreaterThanOrEqualTo; } public IN_StockTakeLineDetailsQuery setQtyFoundGreaterThanOrEqualTo(BigDecimal value) { this.QtyFoundGreaterThanOrEqualTo = value; return this; } public BigDecimal getQtyFoundGreaterThan() { return QtyFoundGreaterThan; } public IN_StockTakeLineDetailsQuery setQtyFoundGreaterThan(BigDecimal value) { this.QtyFoundGreaterThan = value; return this; } public BigDecimal getQtyFoundLessThan() { return QtyFoundLessThan; } public IN_StockTakeLineDetailsQuery setQtyFoundLessThan(BigDecimal value) { this.QtyFoundLessThan = value; return this; } public BigDecimal getQtyFoundLessThanOrEqualTo() { return QtyFoundLessThanOrEqualTo; } public IN_StockTakeLineDetailsQuery setQtyFoundLessThanOrEqualTo(BigDecimal value) { this.QtyFoundLessThanOrEqualTo = value; return this; } public BigDecimal getQtyFoundNotEqualTo() { return QtyFoundNotEqualTo; } public IN_StockTakeLineDetailsQuery setQtyFoundNotEqualTo(BigDecimal value) { this.QtyFoundNotEqualTo = value; return this; } public ArrayList getQtyFoundBetween() { return QtyFoundBetween; } public IN_StockTakeLineDetailsQuery setQtyFoundBetween(ArrayList value) { this.QtyFoundBetween = value; return this; } public ArrayList getQtyFoundIn() { return QtyFoundIn; } public IN_StockTakeLineDetailsQuery setQtyFoundIn(ArrayList value) { this.QtyFoundIn = value; return this; } public BigDecimal getQtyNotFound() { return QtyNotFound; } public IN_StockTakeLineDetailsQuery setQtyNotFound(BigDecimal value) { this.QtyNotFound = value; return this; } public BigDecimal getQtyNotFoundGreaterThanOrEqualTo() { return QtyNotFoundGreaterThanOrEqualTo; } public IN_StockTakeLineDetailsQuery setQtyNotFoundGreaterThanOrEqualTo(BigDecimal value) { this.QtyNotFoundGreaterThanOrEqualTo = value; return this; } public BigDecimal getQtyNotFoundGreaterThan() { return QtyNotFoundGreaterThan; } public IN_StockTakeLineDetailsQuery setQtyNotFoundGreaterThan(BigDecimal value) { this.QtyNotFoundGreaterThan = value; return this; } public BigDecimal getQtyNotFoundLessThan() { return QtyNotFoundLessThan; } public IN_StockTakeLineDetailsQuery setQtyNotFoundLessThan(BigDecimal value) { this.QtyNotFoundLessThan = value; return this; } public BigDecimal getQtyNotFoundLessThanOrEqualTo() { return QtyNotFoundLessThanOrEqualTo; } public IN_StockTakeLineDetailsQuery setQtyNotFoundLessThanOrEqualTo(BigDecimal value) { this.QtyNotFoundLessThanOrEqualTo = value; return this; } public BigDecimal getQtyNotFoundNotEqualTo() { return QtyNotFoundNotEqualTo; } public IN_StockTakeLineDetailsQuery setQtyNotFoundNotEqualTo(BigDecimal value) { this.QtyNotFoundNotEqualTo = value; return this; } public ArrayList getQtyNotFoundBetween() { return QtyNotFoundBetween; } public IN_StockTakeLineDetailsQuery setQtyNotFoundBetween(ArrayList value) { this.QtyNotFoundBetween = value; return this; } public ArrayList getQtyNotFoundIn() { return QtyNotFoundIn; } public IN_StockTakeLineDetailsQuery setQtyNotFoundIn(ArrayList value) { this.QtyNotFoundIn = value; return this; } public BigDecimal getQtyAdded() { return QtyAdded; } public IN_StockTakeLineDetailsQuery setQtyAdded(BigDecimal value) { this.QtyAdded = value; return this; } public BigDecimal getQtyAddedGreaterThanOrEqualTo() { return QtyAddedGreaterThanOrEqualTo; } public IN_StockTakeLineDetailsQuery setQtyAddedGreaterThanOrEqualTo(BigDecimal value) { this.QtyAddedGreaterThanOrEqualTo = value; return this; } public BigDecimal getQtyAddedGreaterThan() { return QtyAddedGreaterThan; } public IN_StockTakeLineDetailsQuery setQtyAddedGreaterThan(BigDecimal value) { this.QtyAddedGreaterThan = value; return this; } public BigDecimal getQtyAddedLessThan() { return QtyAddedLessThan; } public IN_StockTakeLineDetailsQuery setQtyAddedLessThan(BigDecimal value) { this.QtyAddedLessThan = value; return this; } public BigDecimal getQtyAddedLessThanOrEqualTo() { return QtyAddedLessThanOrEqualTo; } public IN_StockTakeLineDetailsQuery setQtyAddedLessThanOrEqualTo(BigDecimal value) { this.QtyAddedLessThanOrEqualTo = value; return this; } public BigDecimal getQtyAddedNotEqualTo() { return QtyAddedNotEqualTo; } public IN_StockTakeLineDetailsQuery setQtyAddedNotEqualTo(BigDecimal value) { this.QtyAddedNotEqualTo = value; return this; } public ArrayList getQtyAddedBetween() { return QtyAddedBetween; } public IN_StockTakeLineDetailsQuery setQtyAddedBetween(ArrayList value) { this.QtyAddedBetween = value; return this; } public ArrayList getQtyAddedIn() { return QtyAddedIn; } public IN_StockTakeLineDetailsQuery setQtyAddedIn(ArrayList value) { this.QtyAddedIn = value; return this; } public BigDecimal getCost() { return Cost; } public IN_StockTakeLineDetailsQuery setCost(BigDecimal value) { this.Cost = value; return this; } public BigDecimal getCostGreaterThanOrEqualTo() { return CostGreaterThanOrEqualTo; } public IN_StockTakeLineDetailsQuery setCostGreaterThanOrEqualTo(BigDecimal value) { this.CostGreaterThanOrEqualTo = value; return this; } public BigDecimal getCostGreaterThan() { return CostGreaterThan; } public IN_StockTakeLineDetailsQuery setCostGreaterThan(BigDecimal value) { this.CostGreaterThan = value; return this; } public BigDecimal getCostLessThan() { return CostLessThan; } public IN_StockTakeLineDetailsQuery setCostLessThan(BigDecimal value) { this.CostLessThan = value; return this; } public BigDecimal getCostLessThanOrEqualTo() { return CostLessThanOrEqualTo; } public IN_StockTakeLineDetailsQuery setCostLessThanOrEqualTo(BigDecimal value) { this.CostLessThanOrEqualTo = value; return this; } public BigDecimal getCostNotEqualTo() { return CostNotEqualTo; } public IN_StockTakeLineDetailsQuery setCostNotEqualTo(BigDecimal value) { this.CostNotEqualTo = value; return this; } public ArrayList getCostBetween() { return CostBetween; } public IN_StockTakeLineDetailsQuery setCostBetween(ArrayList value) { this.CostBetween = value; return this; } public ArrayList getCostIn() { return CostIn; } public IN_StockTakeLineDetailsQuery setCostIn(ArrayList value) { this.CostIn = value; return this; } public Date getExpiryDate() { return ExpiryDate; } public IN_StockTakeLineDetailsQuery setExpiryDate(Date value) { this.ExpiryDate = value; return this; } public Date getExpiryDateGreaterThanOrEqualTo() { return ExpiryDateGreaterThanOrEqualTo; } public IN_StockTakeLineDetailsQuery setExpiryDateGreaterThanOrEqualTo(Date value) { this.ExpiryDateGreaterThanOrEqualTo = value; return this; } public Date getExpiryDateGreaterThan() { return ExpiryDateGreaterThan; } public IN_StockTakeLineDetailsQuery setExpiryDateGreaterThan(Date value) { this.ExpiryDateGreaterThan = value; return this; } public Date getExpiryDateLessThan() { return ExpiryDateLessThan; } public IN_StockTakeLineDetailsQuery setExpiryDateLessThan(Date value) { this.ExpiryDateLessThan = value; return this; } public Date getExpiryDateLessThanOrEqualTo() { return ExpiryDateLessThanOrEqualTo; } public IN_StockTakeLineDetailsQuery setExpiryDateLessThanOrEqualTo(Date value) { this.ExpiryDateLessThanOrEqualTo = value; return this; } public Date getExpiryDateNotEqualTo() { return ExpiryDateNotEqualTo; } public IN_StockTakeLineDetailsQuery setExpiryDateNotEqualTo(Date value) { this.ExpiryDateNotEqualTo = value; return this; } public ArrayList getExpiryDateBetween() { return ExpiryDateBetween; } public IN_StockTakeLineDetailsQuery setExpiryDateBetween(ArrayList value) { this.ExpiryDateBetween = value; return this; } public ArrayList getExpiryDateIn() { return ExpiryDateIn; } public IN_StockTakeLineDetailsQuery setExpiryDateIn(ArrayList value) { this.ExpiryDateIn = value; return this; } public String getInBinLocationLookupRecID() { return IN_BinLocationLookup_RecID; } public IN_StockTakeLineDetailsQuery setInBinLocationLookupRecID(String value) { this.IN_BinLocationLookup_RecID = value; return this; } public String getInBinLocationLookupRecIDStartsWith() { return IN_BinLocationLookup_RecIDStartsWith; } public IN_StockTakeLineDetailsQuery setInBinLocationLookupRecIDStartsWith(String value) { this.IN_BinLocationLookup_RecIDStartsWith = value; return this; } public String getInBinLocationLookupRecIDEndsWith() { return IN_BinLocationLookup_RecIDEndsWith; } public IN_StockTakeLineDetailsQuery setInBinLocationLookupRecIDEndsWith(String value) { this.IN_BinLocationLookup_RecIDEndsWith = value; return this; } public String getInBinLocationLookupRecIDContains() { return IN_BinLocationLookup_RecIDContains; } public IN_StockTakeLineDetailsQuery setInBinLocationLookupRecIDContains(String value) { this.IN_BinLocationLookup_RecIDContains = value; return this; } public String getInBinLocationLookupRecIDLike() { return IN_BinLocationLookup_RecIDLike; } public IN_StockTakeLineDetailsQuery setInBinLocationLookupRecIDLike(String value) { this.IN_BinLocationLookup_RecIDLike = value; return this; } public ArrayList getInBinLocationLookupRecIDBetween() { return IN_BinLocationLookup_RecIDBetween; } public IN_StockTakeLineDetailsQuery setInBinLocationLookupRecIDBetween(ArrayList value) { this.IN_BinLocationLookup_RecIDBetween = value; return this; } public ArrayList getInBinLocationLookupRecIDIn() { return IN_BinLocationLookup_RecIDIn; } public IN_StockTakeLineDetailsQuery setInBinLocationLookupRecIDIn(ArrayList value) { this.IN_BinLocationLookup_RecIDIn = value; return this; } public Integer getItemNo() { return ItemNo; } public IN_StockTakeLineDetailsQuery setItemNo(Integer value) { this.ItemNo = value; return this; } public Integer getItemNoGreaterThanOrEqualTo() { return ItemNoGreaterThanOrEqualTo; } public IN_StockTakeLineDetailsQuery setItemNoGreaterThanOrEqualTo(Integer value) { this.ItemNoGreaterThanOrEqualTo = value; return this; } public Integer getItemNoGreaterThan() { return ItemNoGreaterThan; } public IN_StockTakeLineDetailsQuery setItemNoGreaterThan(Integer value) { this.ItemNoGreaterThan = value; return this; } public Integer getItemNoLessThan() { return ItemNoLessThan; } public IN_StockTakeLineDetailsQuery setItemNoLessThan(Integer value) { this.ItemNoLessThan = value; return this; } public Integer getItemNoLessThanOrEqualTo() { return ItemNoLessThanOrEqualTo; } public IN_StockTakeLineDetailsQuery setItemNoLessThanOrEqualTo(Integer value) { this.ItemNoLessThanOrEqualTo = value; return this; } public Integer getItemNoNotEqualTo() { return ItemNoNotEqualTo; } public IN_StockTakeLineDetailsQuery setItemNoNotEqualTo(Integer value) { this.ItemNoNotEqualTo = value; return this; } public ArrayList getItemNoBetween() { return ItemNoBetween; } public IN_StockTakeLineDetailsQuery setItemNoBetween(ArrayList value) { this.ItemNoBetween = value; return this; } public ArrayList getItemNoIn() { return ItemNoIn; } public IN_StockTakeLineDetailsQuery setItemNoIn(ArrayList value) { this.ItemNoIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class IN_StockTakeLinesQuery extends QueryDb implements IReturn> { public String StockTakeLineID = null; public String StockTakeLineIDStartsWith = null; public String StockTakeLineIDEndsWith = null; public String StockTakeLineIDContains = null; public String StockTakeLineIDLike = null; public ArrayList StockTakeLineIDBetween = null; public ArrayList StockTakeLineIDIn = null; public String StockTakeID = null; public String StockTakeIDStartsWith = null; public String StockTakeIDEndsWith = null; public String StockTakeIDContains = null; public String StockTakeIDLike = null; public ArrayList StockTakeIDBetween = null; public ArrayList StockTakeIDIn = null; public String InventoryID = null; public String InventoryIDStartsWith = null; public String InventoryIDEndsWith = null; public String InventoryIDContains = null; public String InventoryIDLike = null; public ArrayList InventoryIDBetween = null; public ArrayList InventoryIDIn = null; public String PartNo = null; public String PartNoStartsWith = null; public String PartNoEndsWith = null; public String PartNoContains = null; public String PartNoLike = null; public ArrayList PartNoBetween = null; public ArrayList PartNoIn = null; public String Description = null; public String DescriptionStartsWith = null; public String DescriptionEndsWith = null; public String DescriptionContains = null; public String DescriptionLike = null; public ArrayList DescriptionBetween = null; public ArrayList DescriptionIn = null; public BigDecimal QtyOnHand = null; public BigDecimal QtyOnHandGreaterThanOrEqualTo = null; public BigDecimal QtyOnHandGreaterThan = null; public BigDecimal QtyOnHandLessThan = null; public BigDecimal QtyOnHandLessThanOrEqualTo = null; public BigDecimal QtyOnHandNotEqualTo = null; public ArrayList QtyOnHandBetween = null; public ArrayList QtyOnHandIn = null; public BigDecimal QtyFound = null; public BigDecimal QtyFoundGreaterThanOrEqualTo = null; public BigDecimal QtyFoundGreaterThan = null; public BigDecimal QtyFoundLessThan = null; public BigDecimal QtyFoundLessThanOrEqualTo = null; public BigDecimal QtyFoundNotEqualTo = null; public ArrayList QtyFoundBetween = null; public ArrayList QtyFoundIn = null; public BigDecimal AmountVar = null; public BigDecimal AmountVarGreaterThanOrEqualTo = null; public BigDecimal AmountVarGreaterThan = null; public BigDecimal AmountVarLessThan = null; public BigDecimal AmountVarLessThanOrEqualTo = null; public BigDecimal AmountVarNotEqualTo = null; public ArrayList AmountVarBetween = null; public ArrayList AmountVarIn = null; public String BinLocation = null; public String BinLocationStartsWith = null; public String BinLocationEndsWith = null; public String BinLocationContains = null; public String BinLocationLike = null; public ArrayList BinLocationBetween = null; public ArrayList BinLocationIn = null; public Integer LineNum = null; public Integer LineNumGreaterThanOrEqualTo = null; public Integer LineNumGreaterThan = null; public Integer LineNumLessThan = null; public Integer LineNumLessThanOrEqualTo = null; public Integer LineNumNotEqualTo = null; public ArrayList LineNumBetween = null; public ArrayList LineNumIn = null; public String DefaultBin = null; public String DefaultBinStartsWith = null; public String DefaultBinEndsWith = null; public String DefaultBinContains = null; public String DefaultBinLike = null; public ArrayList DefaultBinBetween = null; public ArrayList DefaultBinIn = null; public String Comment = null; public String CommentStartsWith = null; public String CommentEndsWith = null; public String CommentContains = null; public String CommentLike = null; public ArrayList CommentBetween = null; public ArrayList CommentIn = null; public String getStockTakeLineID() { return StockTakeLineID; } public IN_StockTakeLinesQuery setStockTakeLineID(String value) { this.StockTakeLineID = value; return this; } public String getStockTakeLineIDStartsWith() { return StockTakeLineIDStartsWith; } public IN_StockTakeLinesQuery setStockTakeLineIDStartsWith(String value) { this.StockTakeLineIDStartsWith = value; return this; } public String getStockTakeLineIDEndsWith() { return StockTakeLineIDEndsWith; } public IN_StockTakeLinesQuery setStockTakeLineIDEndsWith(String value) { this.StockTakeLineIDEndsWith = value; return this; } public String getStockTakeLineIDContains() { return StockTakeLineIDContains; } public IN_StockTakeLinesQuery setStockTakeLineIDContains(String value) { this.StockTakeLineIDContains = value; return this; } public String getStockTakeLineIDLike() { return StockTakeLineIDLike; } public IN_StockTakeLinesQuery setStockTakeLineIDLike(String value) { this.StockTakeLineIDLike = value; return this; } public ArrayList getStockTakeLineIDBetween() { return StockTakeLineIDBetween; } public IN_StockTakeLinesQuery setStockTakeLineIDBetween(ArrayList value) { this.StockTakeLineIDBetween = value; return this; } public ArrayList getStockTakeLineIDIn() { return StockTakeLineIDIn; } public IN_StockTakeLinesQuery setStockTakeLineIDIn(ArrayList value) { this.StockTakeLineIDIn = value; return this; } public String getStockTakeID() { return StockTakeID; } public IN_StockTakeLinesQuery setStockTakeID(String value) { this.StockTakeID = value; return this; } public String getStockTakeIDStartsWith() { return StockTakeIDStartsWith; } public IN_StockTakeLinesQuery setStockTakeIDStartsWith(String value) { this.StockTakeIDStartsWith = value; return this; } public String getStockTakeIDEndsWith() { return StockTakeIDEndsWith; } public IN_StockTakeLinesQuery setStockTakeIDEndsWith(String value) { this.StockTakeIDEndsWith = value; return this; } public String getStockTakeIDContains() { return StockTakeIDContains; } public IN_StockTakeLinesQuery setStockTakeIDContains(String value) { this.StockTakeIDContains = value; return this; } public String getStockTakeIDLike() { return StockTakeIDLike; } public IN_StockTakeLinesQuery setStockTakeIDLike(String value) { this.StockTakeIDLike = value; return this; } public ArrayList getStockTakeIDBetween() { return StockTakeIDBetween; } public IN_StockTakeLinesQuery setStockTakeIDBetween(ArrayList value) { this.StockTakeIDBetween = value; return this; } public ArrayList getStockTakeIDIn() { return StockTakeIDIn; } public IN_StockTakeLinesQuery setStockTakeIDIn(ArrayList value) { this.StockTakeIDIn = value; return this; } public String getInventoryID() { return InventoryID; } public IN_StockTakeLinesQuery setInventoryID(String value) { this.InventoryID = value; return this; } public String getInventoryIDStartsWith() { return InventoryIDStartsWith; } public IN_StockTakeLinesQuery setInventoryIDStartsWith(String value) { this.InventoryIDStartsWith = value; return this; } public String getInventoryIDEndsWith() { return InventoryIDEndsWith; } public IN_StockTakeLinesQuery setInventoryIDEndsWith(String value) { this.InventoryIDEndsWith = value; return this; } public String getInventoryIDContains() { return InventoryIDContains; } public IN_StockTakeLinesQuery setInventoryIDContains(String value) { this.InventoryIDContains = value; return this; } public String getInventoryIDLike() { return InventoryIDLike; } public IN_StockTakeLinesQuery setInventoryIDLike(String value) { this.InventoryIDLike = value; return this; } public ArrayList getInventoryIDBetween() { return InventoryIDBetween; } public IN_StockTakeLinesQuery setInventoryIDBetween(ArrayList value) { this.InventoryIDBetween = value; return this; } public ArrayList getInventoryIDIn() { return InventoryIDIn; } public IN_StockTakeLinesQuery setInventoryIDIn(ArrayList value) { this.InventoryIDIn = value; return this; } public String getPartNo() { return PartNo; } public IN_StockTakeLinesQuery setPartNo(String value) { this.PartNo = value; return this; } public String getPartNoStartsWith() { return PartNoStartsWith; } public IN_StockTakeLinesQuery setPartNoStartsWith(String value) { this.PartNoStartsWith = value; return this; } public String getPartNoEndsWith() { return PartNoEndsWith; } public IN_StockTakeLinesQuery setPartNoEndsWith(String value) { this.PartNoEndsWith = value; return this; } public String getPartNoContains() { return PartNoContains; } public IN_StockTakeLinesQuery setPartNoContains(String value) { this.PartNoContains = value; return this; } public String getPartNoLike() { return PartNoLike; } public IN_StockTakeLinesQuery setPartNoLike(String value) { this.PartNoLike = value; return this; } public ArrayList getPartNoBetween() { return PartNoBetween; } public IN_StockTakeLinesQuery setPartNoBetween(ArrayList value) { this.PartNoBetween = value; return this; } public ArrayList getPartNoIn() { return PartNoIn; } public IN_StockTakeLinesQuery setPartNoIn(ArrayList value) { this.PartNoIn = value; return this; } public String getDescription() { return Description; } public IN_StockTakeLinesQuery setDescription(String value) { this.Description = value; return this; } public String getDescriptionStartsWith() { return DescriptionStartsWith; } public IN_StockTakeLinesQuery setDescriptionStartsWith(String value) { this.DescriptionStartsWith = value; return this; } public String getDescriptionEndsWith() { return DescriptionEndsWith; } public IN_StockTakeLinesQuery setDescriptionEndsWith(String value) { this.DescriptionEndsWith = value; return this; } public String getDescriptionContains() { return DescriptionContains; } public IN_StockTakeLinesQuery setDescriptionContains(String value) { this.DescriptionContains = value; return this; } public String getDescriptionLike() { return DescriptionLike; } public IN_StockTakeLinesQuery setDescriptionLike(String value) { this.DescriptionLike = value; return this; } public ArrayList getDescriptionBetween() { return DescriptionBetween; } public IN_StockTakeLinesQuery setDescriptionBetween(ArrayList value) { this.DescriptionBetween = value; return this; } public ArrayList getDescriptionIn() { return DescriptionIn; } public IN_StockTakeLinesQuery setDescriptionIn(ArrayList value) { this.DescriptionIn = value; return this; } public BigDecimal getQtyOnHand() { return QtyOnHand; } public IN_StockTakeLinesQuery setQtyOnHand(BigDecimal value) { this.QtyOnHand = value; return this; } public BigDecimal getQtyOnHandGreaterThanOrEqualTo() { return QtyOnHandGreaterThanOrEqualTo; } public IN_StockTakeLinesQuery setQtyOnHandGreaterThanOrEqualTo(BigDecimal value) { this.QtyOnHandGreaterThanOrEqualTo = value; return this; } public BigDecimal getQtyOnHandGreaterThan() { return QtyOnHandGreaterThan; } public IN_StockTakeLinesQuery setQtyOnHandGreaterThan(BigDecimal value) { this.QtyOnHandGreaterThan = value; return this; } public BigDecimal getQtyOnHandLessThan() { return QtyOnHandLessThan; } public IN_StockTakeLinesQuery setQtyOnHandLessThan(BigDecimal value) { this.QtyOnHandLessThan = value; return this; } public BigDecimal getQtyOnHandLessThanOrEqualTo() { return QtyOnHandLessThanOrEqualTo; } public IN_StockTakeLinesQuery setQtyOnHandLessThanOrEqualTo(BigDecimal value) { this.QtyOnHandLessThanOrEqualTo = value; return this; } public BigDecimal getQtyOnHandNotEqualTo() { return QtyOnHandNotEqualTo; } public IN_StockTakeLinesQuery setQtyOnHandNotEqualTo(BigDecimal value) { this.QtyOnHandNotEqualTo = value; return this; } public ArrayList getQtyOnHandBetween() { return QtyOnHandBetween; } public IN_StockTakeLinesQuery setQtyOnHandBetween(ArrayList value) { this.QtyOnHandBetween = value; return this; } public ArrayList getQtyOnHandIn() { return QtyOnHandIn; } public IN_StockTakeLinesQuery setQtyOnHandIn(ArrayList value) { this.QtyOnHandIn = value; return this; } public BigDecimal getQtyFound() { return QtyFound; } public IN_StockTakeLinesQuery setQtyFound(BigDecimal value) { this.QtyFound = value; return this; } public BigDecimal getQtyFoundGreaterThanOrEqualTo() { return QtyFoundGreaterThanOrEqualTo; } public IN_StockTakeLinesQuery setQtyFoundGreaterThanOrEqualTo(BigDecimal value) { this.QtyFoundGreaterThanOrEqualTo = value; return this; } public BigDecimal getQtyFoundGreaterThan() { return QtyFoundGreaterThan; } public IN_StockTakeLinesQuery setQtyFoundGreaterThan(BigDecimal value) { this.QtyFoundGreaterThan = value; return this; } public BigDecimal getQtyFoundLessThan() { return QtyFoundLessThan; } public IN_StockTakeLinesQuery setQtyFoundLessThan(BigDecimal value) { this.QtyFoundLessThan = value; return this; } public BigDecimal getQtyFoundLessThanOrEqualTo() { return QtyFoundLessThanOrEqualTo; } public IN_StockTakeLinesQuery setQtyFoundLessThanOrEqualTo(BigDecimal value) { this.QtyFoundLessThanOrEqualTo = value; return this; } public BigDecimal getQtyFoundNotEqualTo() { return QtyFoundNotEqualTo; } public IN_StockTakeLinesQuery setQtyFoundNotEqualTo(BigDecimal value) { this.QtyFoundNotEqualTo = value; return this; } public ArrayList getQtyFoundBetween() { return QtyFoundBetween; } public IN_StockTakeLinesQuery setQtyFoundBetween(ArrayList value) { this.QtyFoundBetween = value; return this; } public ArrayList getQtyFoundIn() { return QtyFoundIn; } public IN_StockTakeLinesQuery setQtyFoundIn(ArrayList value) { this.QtyFoundIn = value; return this; } public BigDecimal getAmountVar() { return AmountVar; } public IN_StockTakeLinesQuery setAmountVar(BigDecimal value) { this.AmountVar = value; return this; } public BigDecimal getAmountVarGreaterThanOrEqualTo() { return AmountVarGreaterThanOrEqualTo; } public IN_StockTakeLinesQuery setAmountVarGreaterThanOrEqualTo(BigDecimal value) { this.AmountVarGreaterThanOrEqualTo = value; return this; } public BigDecimal getAmountVarGreaterThan() { return AmountVarGreaterThan; } public IN_StockTakeLinesQuery setAmountVarGreaterThan(BigDecimal value) { this.AmountVarGreaterThan = value; return this; } public BigDecimal getAmountVarLessThan() { return AmountVarLessThan; } public IN_StockTakeLinesQuery setAmountVarLessThan(BigDecimal value) { this.AmountVarLessThan = value; return this; } public BigDecimal getAmountVarLessThanOrEqualTo() { return AmountVarLessThanOrEqualTo; } public IN_StockTakeLinesQuery setAmountVarLessThanOrEqualTo(BigDecimal value) { this.AmountVarLessThanOrEqualTo = value; return this; } public BigDecimal getAmountVarNotEqualTo() { return AmountVarNotEqualTo; } public IN_StockTakeLinesQuery setAmountVarNotEqualTo(BigDecimal value) { this.AmountVarNotEqualTo = value; return this; } public ArrayList getAmountVarBetween() { return AmountVarBetween; } public IN_StockTakeLinesQuery setAmountVarBetween(ArrayList value) { this.AmountVarBetween = value; return this; } public ArrayList getAmountVarIn() { return AmountVarIn; } public IN_StockTakeLinesQuery setAmountVarIn(ArrayList value) { this.AmountVarIn = value; return this; } public String getBinLocation() { return BinLocation; } public IN_StockTakeLinesQuery setBinLocation(String value) { this.BinLocation = value; return this; } public String getBinLocationStartsWith() { return BinLocationStartsWith; } public IN_StockTakeLinesQuery setBinLocationStartsWith(String value) { this.BinLocationStartsWith = value; return this; } public String getBinLocationEndsWith() { return BinLocationEndsWith; } public IN_StockTakeLinesQuery setBinLocationEndsWith(String value) { this.BinLocationEndsWith = value; return this; } public String getBinLocationContains() { return BinLocationContains; } public IN_StockTakeLinesQuery setBinLocationContains(String value) { this.BinLocationContains = value; return this; } public String getBinLocationLike() { return BinLocationLike; } public IN_StockTakeLinesQuery setBinLocationLike(String value) { this.BinLocationLike = value; return this; } public ArrayList getBinLocationBetween() { return BinLocationBetween; } public IN_StockTakeLinesQuery setBinLocationBetween(ArrayList value) { this.BinLocationBetween = value; return this; } public ArrayList getBinLocationIn() { return BinLocationIn; } public IN_StockTakeLinesQuery setBinLocationIn(ArrayList value) { this.BinLocationIn = value; return this; } public Integer getLineNum() { return LineNum; } public IN_StockTakeLinesQuery setLineNum(Integer value) { this.LineNum = value; return this; } public Integer getLineNumGreaterThanOrEqualTo() { return LineNumGreaterThanOrEqualTo; } public IN_StockTakeLinesQuery setLineNumGreaterThanOrEqualTo(Integer value) { this.LineNumGreaterThanOrEqualTo = value; return this; } public Integer getLineNumGreaterThan() { return LineNumGreaterThan; } public IN_StockTakeLinesQuery setLineNumGreaterThan(Integer value) { this.LineNumGreaterThan = value; return this; } public Integer getLineNumLessThan() { return LineNumLessThan; } public IN_StockTakeLinesQuery setLineNumLessThan(Integer value) { this.LineNumLessThan = value; return this; } public Integer getLineNumLessThanOrEqualTo() { return LineNumLessThanOrEqualTo; } public IN_StockTakeLinesQuery setLineNumLessThanOrEqualTo(Integer value) { this.LineNumLessThanOrEqualTo = value; return this; } public Integer getLineNumNotEqualTo() { return LineNumNotEqualTo; } public IN_StockTakeLinesQuery setLineNumNotEqualTo(Integer value) { this.LineNumNotEqualTo = value; return this; } public ArrayList getLineNumBetween() { return LineNumBetween; } public IN_StockTakeLinesQuery setLineNumBetween(ArrayList value) { this.LineNumBetween = value; return this; } public ArrayList getLineNumIn() { return LineNumIn; } public IN_StockTakeLinesQuery setLineNumIn(ArrayList value) { this.LineNumIn = value; return this; } public String getDefaultBin() { return DefaultBin; } public IN_StockTakeLinesQuery setDefaultBin(String value) { this.DefaultBin = value; return this; } public String getDefaultBinStartsWith() { return DefaultBinStartsWith; } public IN_StockTakeLinesQuery setDefaultBinStartsWith(String value) { this.DefaultBinStartsWith = value; return this; } public String getDefaultBinEndsWith() { return DefaultBinEndsWith; } public IN_StockTakeLinesQuery setDefaultBinEndsWith(String value) { this.DefaultBinEndsWith = value; return this; } public String getDefaultBinContains() { return DefaultBinContains; } public IN_StockTakeLinesQuery setDefaultBinContains(String value) { this.DefaultBinContains = value; return this; } public String getDefaultBinLike() { return DefaultBinLike; } public IN_StockTakeLinesQuery setDefaultBinLike(String value) { this.DefaultBinLike = value; return this; } public ArrayList getDefaultBinBetween() { return DefaultBinBetween; } public IN_StockTakeLinesQuery setDefaultBinBetween(ArrayList value) { this.DefaultBinBetween = value; return this; } public ArrayList getDefaultBinIn() { return DefaultBinIn; } public IN_StockTakeLinesQuery setDefaultBinIn(ArrayList value) { this.DefaultBinIn = value; return this; } public String getComment() { return Comment; } public IN_StockTakeLinesQuery setComment(String value) { this.Comment = value; return this; } public String getCommentStartsWith() { return CommentStartsWith; } public IN_StockTakeLinesQuery setCommentStartsWith(String value) { this.CommentStartsWith = value; return this; } public String getCommentEndsWith() { return CommentEndsWith; } public IN_StockTakeLinesQuery setCommentEndsWith(String value) { this.CommentEndsWith = value; return this; } public String getCommentContains() { return CommentContains; } public IN_StockTakeLinesQuery setCommentContains(String value) { this.CommentContains = value; return this; } public String getCommentLike() { return CommentLike; } public IN_StockTakeLinesQuery setCommentLike(String value) { this.CommentLike = value; return this; } public ArrayList getCommentBetween() { return CommentBetween; } public IN_StockTakeLinesQuery setCommentBetween(ArrayList value) { this.CommentBetween = value; return this; } public ArrayList getCommentIn() { return CommentIn; } public IN_StockTakeLinesQuery setCommentIn(ArrayList value) { this.CommentIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class IN_StockTakeMainQuery extends QueryDb implements IReturn> { public String StockTakeID = null; public String StockTakeIDStartsWith = null; public String StockTakeIDEndsWith = null; public String StockTakeIDContains = null; public String StockTakeIDLike = null; public ArrayList StockTakeIDBetween = null; public ArrayList StockTakeIDIn = null; public Date LastSavedDateTime = null; public Date LastSavedDateTimeGreaterThanOrEqualTo = null; public Date LastSavedDateTimeGreaterThan = null; public Date LastSavedDateTimeLessThan = null; public Date LastSavedDateTimeLessThanOrEqualTo = null; public Date LastSavedDateTimeNotEqualTo = null; public ArrayList LastSavedDateTimeBetween = null; public ArrayList LastSavedDateTimeIn = null; public String StockTakeNumber = null; public String StockTakeNumberStartsWith = null; public String StockTakeNumberEndsWith = null; public String StockTakeNumberContains = null; public String StockTakeNumberLike = null; public ArrayList StockTakeNumberBetween = null; public ArrayList StockTakeNumberIn = null; public Date DateCreated = null; public Date DateCreatedGreaterThanOrEqualTo = null; public Date DateCreatedGreaterThan = null; public Date DateCreatedLessThan = null; public Date DateCreatedLessThanOrEqualTo = null; public Date DateCreatedNotEqualTo = null; public ArrayList DateCreatedBetween = null; public ArrayList DateCreatedIn = null; public String UserID = null; public String UserIDStartsWith = null; public String UserIDEndsWith = null; public String UserIDContains = null; public String UserIDLike = null; public ArrayList UserIDBetween = null; public ArrayList UserIDIn = null; public String WarehouseID = null; public String WarehouseIDStartsWith = null; public String WarehouseIDEndsWith = null; public String WarehouseIDContains = null; public String WarehouseIDLike = null; public ArrayList WarehouseIDBetween = null; public ArrayList WarehouseIDIn = null; public Short Status = null; public Short StatusGreaterThanOrEqualTo = null; public Short StatusGreaterThan = null; public Short StatusLessThan = null; public Short StatusLessThanOrEqualTo = null; public Short StatusNotEqualTo = null; public ArrayList StatusBetween = null; public ArrayList StatusIn = null; public Boolean Mode = null; public String getStockTakeID() { return StockTakeID; } public IN_StockTakeMainQuery setStockTakeID(String value) { this.StockTakeID = value; return this; } public String getStockTakeIDStartsWith() { return StockTakeIDStartsWith; } public IN_StockTakeMainQuery setStockTakeIDStartsWith(String value) { this.StockTakeIDStartsWith = value; return this; } public String getStockTakeIDEndsWith() { return StockTakeIDEndsWith; } public IN_StockTakeMainQuery setStockTakeIDEndsWith(String value) { this.StockTakeIDEndsWith = value; return this; } public String getStockTakeIDContains() { return StockTakeIDContains; } public IN_StockTakeMainQuery setStockTakeIDContains(String value) { this.StockTakeIDContains = value; return this; } public String getStockTakeIDLike() { return StockTakeIDLike; } public IN_StockTakeMainQuery setStockTakeIDLike(String value) { this.StockTakeIDLike = value; return this; } public ArrayList getStockTakeIDBetween() { return StockTakeIDBetween; } public IN_StockTakeMainQuery setStockTakeIDBetween(ArrayList value) { this.StockTakeIDBetween = value; return this; } public ArrayList getStockTakeIDIn() { return StockTakeIDIn; } public IN_StockTakeMainQuery setStockTakeIDIn(ArrayList value) { this.StockTakeIDIn = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public IN_StockTakeMainQuery setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getLastSavedDateTimeGreaterThanOrEqualTo() { return LastSavedDateTimeGreaterThanOrEqualTo; } public IN_StockTakeMainQuery setLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.LastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeGreaterThan() { return LastSavedDateTimeGreaterThan; } public IN_StockTakeMainQuery setLastSavedDateTimeGreaterThan(Date value) { this.LastSavedDateTimeGreaterThan = value; return this; } public Date getLastSavedDateTimeLessThan() { return LastSavedDateTimeLessThan; } public IN_StockTakeMainQuery setLastSavedDateTimeLessThan(Date value) { this.LastSavedDateTimeLessThan = value; return this; } public Date getLastSavedDateTimeLessThanOrEqualTo() { return LastSavedDateTimeLessThanOrEqualTo; } public IN_StockTakeMainQuery setLastSavedDateTimeLessThanOrEqualTo(Date value) { this.LastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeNotEqualTo() { return LastSavedDateTimeNotEqualTo; } public IN_StockTakeMainQuery setLastSavedDateTimeNotEqualTo(Date value) { this.LastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getLastSavedDateTimeBetween() { return LastSavedDateTimeBetween; } public IN_StockTakeMainQuery setLastSavedDateTimeBetween(ArrayList value) { this.LastSavedDateTimeBetween = value; return this; } public ArrayList getLastSavedDateTimeIn() { return LastSavedDateTimeIn; } public IN_StockTakeMainQuery setLastSavedDateTimeIn(ArrayList value) { this.LastSavedDateTimeIn = value; return this; } public String getStockTakeNumber() { return StockTakeNumber; } public IN_StockTakeMainQuery setStockTakeNumber(String value) { this.StockTakeNumber = value; return this; } public String getStockTakeNumberStartsWith() { return StockTakeNumberStartsWith; } public IN_StockTakeMainQuery setStockTakeNumberStartsWith(String value) { this.StockTakeNumberStartsWith = value; return this; } public String getStockTakeNumberEndsWith() { return StockTakeNumberEndsWith; } public IN_StockTakeMainQuery setStockTakeNumberEndsWith(String value) { this.StockTakeNumberEndsWith = value; return this; } public String getStockTakeNumberContains() { return StockTakeNumberContains; } public IN_StockTakeMainQuery setStockTakeNumberContains(String value) { this.StockTakeNumberContains = value; return this; } public String getStockTakeNumberLike() { return StockTakeNumberLike; } public IN_StockTakeMainQuery setStockTakeNumberLike(String value) { this.StockTakeNumberLike = value; return this; } public ArrayList getStockTakeNumberBetween() { return StockTakeNumberBetween; } public IN_StockTakeMainQuery setStockTakeNumberBetween(ArrayList value) { this.StockTakeNumberBetween = value; return this; } public ArrayList getStockTakeNumberIn() { return StockTakeNumberIn; } public IN_StockTakeMainQuery setStockTakeNumberIn(ArrayList value) { this.StockTakeNumberIn = value; return this; } public Date getDateCreated() { return DateCreated; } public IN_StockTakeMainQuery setDateCreated(Date value) { this.DateCreated = value; return this; } public Date getDateCreatedGreaterThanOrEqualTo() { return DateCreatedGreaterThanOrEqualTo; } public IN_StockTakeMainQuery setDateCreatedGreaterThanOrEqualTo(Date value) { this.DateCreatedGreaterThanOrEqualTo = value; return this; } public Date getDateCreatedGreaterThan() { return DateCreatedGreaterThan; } public IN_StockTakeMainQuery setDateCreatedGreaterThan(Date value) { this.DateCreatedGreaterThan = value; return this; } public Date getDateCreatedLessThan() { return DateCreatedLessThan; } public IN_StockTakeMainQuery setDateCreatedLessThan(Date value) { this.DateCreatedLessThan = value; return this; } public Date getDateCreatedLessThanOrEqualTo() { return DateCreatedLessThanOrEqualTo; } public IN_StockTakeMainQuery setDateCreatedLessThanOrEqualTo(Date value) { this.DateCreatedLessThanOrEqualTo = value; return this; } public Date getDateCreatedNotEqualTo() { return DateCreatedNotEqualTo; } public IN_StockTakeMainQuery setDateCreatedNotEqualTo(Date value) { this.DateCreatedNotEqualTo = value; return this; } public ArrayList getDateCreatedBetween() { return DateCreatedBetween; } public IN_StockTakeMainQuery setDateCreatedBetween(ArrayList value) { this.DateCreatedBetween = value; return this; } public ArrayList getDateCreatedIn() { return DateCreatedIn; } public IN_StockTakeMainQuery setDateCreatedIn(ArrayList value) { this.DateCreatedIn = value; return this; } public String getUserID() { return UserID; } public IN_StockTakeMainQuery setUserID(String value) { this.UserID = value; return this; } public String getUserIDStartsWith() { return UserIDStartsWith; } public IN_StockTakeMainQuery setUserIDStartsWith(String value) { this.UserIDStartsWith = value; return this; } public String getUserIDEndsWith() { return UserIDEndsWith; } public IN_StockTakeMainQuery setUserIDEndsWith(String value) { this.UserIDEndsWith = value; return this; } public String getUserIDContains() { return UserIDContains; } public IN_StockTakeMainQuery setUserIDContains(String value) { this.UserIDContains = value; return this; } public String getUserIDLike() { return UserIDLike; } public IN_StockTakeMainQuery setUserIDLike(String value) { this.UserIDLike = value; return this; } public ArrayList getUserIDBetween() { return UserIDBetween; } public IN_StockTakeMainQuery setUserIDBetween(ArrayList value) { this.UserIDBetween = value; return this; } public ArrayList getUserIDIn() { return UserIDIn; } public IN_StockTakeMainQuery setUserIDIn(ArrayList value) { this.UserIDIn = value; return this; } public String getWarehouseID() { return WarehouseID; } public IN_StockTakeMainQuery setWarehouseID(String value) { this.WarehouseID = value; return this; } public String getWarehouseIDStartsWith() { return WarehouseIDStartsWith; } public IN_StockTakeMainQuery setWarehouseIDStartsWith(String value) { this.WarehouseIDStartsWith = value; return this; } public String getWarehouseIDEndsWith() { return WarehouseIDEndsWith; } public IN_StockTakeMainQuery setWarehouseIDEndsWith(String value) { this.WarehouseIDEndsWith = value; return this; } public String getWarehouseIDContains() { return WarehouseIDContains; } public IN_StockTakeMainQuery setWarehouseIDContains(String value) { this.WarehouseIDContains = value; return this; } public String getWarehouseIDLike() { return WarehouseIDLike; } public IN_StockTakeMainQuery setWarehouseIDLike(String value) { this.WarehouseIDLike = value; return this; } public ArrayList getWarehouseIDBetween() { return WarehouseIDBetween; } public IN_StockTakeMainQuery setWarehouseIDBetween(ArrayList value) { this.WarehouseIDBetween = value; return this; } public ArrayList getWarehouseIDIn() { return WarehouseIDIn; } public IN_StockTakeMainQuery setWarehouseIDIn(ArrayList value) { this.WarehouseIDIn = value; return this; } public Short getStatus() { return Status; } public IN_StockTakeMainQuery setStatus(Short value) { this.Status = value; return this; } public Short getStatusGreaterThanOrEqualTo() { return StatusGreaterThanOrEqualTo; } public IN_StockTakeMainQuery setStatusGreaterThanOrEqualTo(Short value) { this.StatusGreaterThanOrEqualTo = value; return this; } public Short getStatusGreaterThan() { return StatusGreaterThan; } public IN_StockTakeMainQuery setStatusGreaterThan(Short value) { this.StatusGreaterThan = value; return this; } public Short getStatusLessThan() { return StatusLessThan; } public IN_StockTakeMainQuery setStatusLessThan(Short value) { this.StatusLessThan = value; return this; } public Short getStatusLessThanOrEqualTo() { return StatusLessThanOrEqualTo; } public IN_StockTakeMainQuery setStatusLessThanOrEqualTo(Short value) { this.StatusLessThanOrEqualTo = value; return this; } public Short getStatusNotEqualTo() { return StatusNotEqualTo; } public IN_StockTakeMainQuery setStatusNotEqualTo(Short value) { this.StatusNotEqualTo = value; return this; } public ArrayList getStatusBetween() { return StatusBetween; } public IN_StockTakeMainQuery setStatusBetween(ArrayList value) { this.StatusBetween = value; return this; } public ArrayList getStatusIn() { return StatusIn; } public IN_StockTakeMainQuery setStatusIn(ArrayList value) { this.StatusIn = value; return this; } public Boolean isMode() { return Mode; } public IN_StockTakeMainQuery setMode(Boolean value) { this.Mode = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class IN_StyleColourSizeMatrixQuery extends QueryDb implements IReturn> { public String RecID = null; public String RecIDStartsWith = null; public String RecIDEndsWith = null; public String RecIDContains = null; public String RecIDLike = null; public ArrayList RecIDBetween = null; public ArrayList RecIDIn = null; public String StyleID = null; public String StyleIDStartsWith = null; public String StyleIDEndsWith = null; public String StyleIDContains = null; public String StyleIDLike = null; public ArrayList StyleIDBetween = null; public ArrayList StyleIDIn = null; public String ColourID = null; public String ColourIDStartsWith = null; public String ColourIDEndsWith = null; public String ColourIDContains = null; public String ColourIDLike = null; public ArrayList ColourIDBetween = null; public ArrayList ColourIDIn = null; public String SizeID = null; public String SizeIDStartsWith = null; public String SizeIDEndsWith = null; public String SizeIDContains = null; public String SizeIDLike = null; public ArrayList SizeIDBetween = null; public ArrayList SizeIDIn = null; public String InventoryID = null; public String InventoryIDStartsWith = null; public String InventoryIDEndsWith = null; public String InventoryIDContains = null; public String InventoryIDLike = null; public ArrayList InventoryIDBetween = null; public ArrayList InventoryIDIn = null; public String PartNo = null; public String PartNoStartsWith = null; public String PartNoEndsWith = null; public String PartNoContains = null; public String PartNoLike = null; public ArrayList PartNoBetween = null; public ArrayList PartNoIn = null; public String getRecID() { return RecID; } public IN_StyleColourSizeMatrixQuery setRecID(String value) { this.RecID = value; return this; } public String getRecIDStartsWith() { return RecIDStartsWith; } public IN_StyleColourSizeMatrixQuery setRecIDStartsWith(String value) { this.RecIDStartsWith = value; return this; } public String getRecIDEndsWith() { return RecIDEndsWith; } public IN_StyleColourSizeMatrixQuery setRecIDEndsWith(String value) { this.RecIDEndsWith = value; return this; } public String getRecIDContains() { return RecIDContains; } public IN_StyleColourSizeMatrixQuery setRecIDContains(String value) { this.RecIDContains = value; return this; } public String getRecIDLike() { return RecIDLike; } public IN_StyleColourSizeMatrixQuery setRecIDLike(String value) { this.RecIDLike = value; return this; } public ArrayList getRecIDBetween() { return RecIDBetween; } public IN_StyleColourSizeMatrixQuery setRecIDBetween(ArrayList value) { this.RecIDBetween = value; return this; } public ArrayList getRecIDIn() { return RecIDIn; } public IN_StyleColourSizeMatrixQuery setRecIDIn(ArrayList value) { this.RecIDIn = value; return this; } public String getStyleID() { return StyleID; } public IN_StyleColourSizeMatrixQuery setStyleID(String value) { this.StyleID = value; return this; } public String getStyleIDStartsWith() { return StyleIDStartsWith; } public IN_StyleColourSizeMatrixQuery setStyleIDStartsWith(String value) { this.StyleIDStartsWith = value; return this; } public String getStyleIDEndsWith() { return StyleIDEndsWith; } public IN_StyleColourSizeMatrixQuery setStyleIDEndsWith(String value) { this.StyleIDEndsWith = value; return this; } public String getStyleIDContains() { return StyleIDContains; } public IN_StyleColourSizeMatrixQuery setStyleIDContains(String value) { this.StyleIDContains = value; return this; } public String getStyleIDLike() { return StyleIDLike; } public IN_StyleColourSizeMatrixQuery setStyleIDLike(String value) { this.StyleIDLike = value; return this; } public ArrayList getStyleIDBetween() { return StyleIDBetween; } public IN_StyleColourSizeMatrixQuery setStyleIDBetween(ArrayList value) { this.StyleIDBetween = value; return this; } public ArrayList getStyleIDIn() { return StyleIDIn; } public IN_StyleColourSizeMatrixQuery setStyleIDIn(ArrayList value) { this.StyleIDIn = value; return this; } public String getColourID() { return ColourID; } public IN_StyleColourSizeMatrixQuery setColourID(String value) { this.ColourID = value; return this; } public String getColourIDStartsWith() { return ColourIDStartsWith; } public IN_StyleColourSizeMatrixQuery setColourIDStartsWith(String value) { this.ColourIDStartsWith = value; return this; } public String getColourIDEndsWith() { return ColourIDEndsWith; } public IN_StyleColourSizeMatrixQuery setColourIDEndsWith(String value) { this.ColourIDEndsWith = value; return this; } public String getColourIDContains() { return ColourIDContains; } public IN_StyleColourSizeMatrixQuery setColourIDContains(String value) { this.ColourIDContains = value; return this; } public String getColourIDLike() { return ColourIDLike; } public IN_StyleColourSizeMatrixQuery setColourIDLike(String value) { this.ColourIDLike = value; return this; } public ArrayList getColourIDBetween() { return ColourIDBetween; } public IN_StyleColourSizeMatrixQuery setColourIDBetween(ArrayList value) { this.ColourIDBetween = value; return this; } public ArrayList getColourIDIn() { return ColourIDIn; } public IN_StyleColourSizeMatrixQuery setColourIDIn(ArrayList value) { this.ColourIDIn = value; return this; } public String getSizeID() { return SizeID; } public IN_StyleColourSizeMatrixQuery setSizeID(String value) { this.SizeID = value; return this; } public String getSizeIDStartsWith() { return SizeIDStartsWith; } public IN_StyleColourSizeMatrixQuery setSizeIDStartsWith(String value) { this.SizeIDStartsWith = value; return this; } public String getSizeIDEndsWith() { return SizeIDEndsWith; } public IN_StyleColourSizeMatrixQuery setSizeIDEndsWith(String value) { this.SizeIDEndsWith = value; return this; } public String getSizeIDContains() { return SizeIDContains; } public IN_StyleColourSizeMatrixQuery setSizeIDContains(String value) { this.SizeIDContains = value; return this; } public String getSizeIDLike() { return SizeIDLike; } public IN_StyleColourSizeMatrixQuery setSizeIDLike(String value) { this.SizeIDLike = value; return this; } public ArrayList getSizeIDBetween() { return SizeIDBetween; } public IN_StyleColourSizeMatrixQuery setSizeIDBetween(ArrayList value) { this.SizeIDBetween = value; return this; } public ArrayList getSizeIDIn() { return SizeIDIn; } public IN_StyleColourSizeMatrixQuery setSizeIDIn(ArrayList value) { this.SizeIDIn = value; return this; } public String getInventoryID() { return InventoryID; } public IN_StyleColourSizeMatrixQuery setInventoryID(String value) { this.InventoryID = value; return this; } public String getInventoryIDStartsWith() { return InventoryIDStartsWith; } public IN_StyleColourSizeMatrixQuery setInventoryIDStartsWith(String value) { this.InventoryIDStartsWith = value; return this; } public String getInventoryIDEndsWith() { return InventoryIDEndsWith; } public IN_StyleColourSizeMatrixQuery setInventoryIDEndsWith(String value) { this.InventoryIDEndsWith = value; return this; } public String getInventoryIDContains() { return InventoryIDContains; } public IN_StyleColourSizeMatrixQuery setInventoryIDContains(String value) { this.InventoryIDContains = value; return this; } public String getInventoryIDLike() { return InventoryIDLike; } public IN_StyleColourSizeMatrixQuery setInventoryIDLike(String value) { this.InventoryIDLike = value; return this; } public ArrayList getInventoryIDBetween() { return InventoryIDBetween; } public IN_StyleColourSizeMatrixQuery setInventoryIDBetween(ArrayList value) { this.InventoryIDBetween = value; return this; } public ArrayList getInventoryIDIn() { return InventoryIDIn; } public IN_StyleColourSizeMatrixQuery setInventoryIDIn(ArrayList value) { this.InventoryIDIn = value; return this; } public String getPartNo() { return PartNo; } public IN_StyleColourSizeMatrixQuery setPartNo(String value) { this.PartNo = value; return this; } public String getPartNoStartsWith() { return PartNoStartsWith; } public IN_StyleColourSizeMatrixQuery setPartNoStartsWith(String value) { this.PartNoStartsWith = value; return this; } public String getPartNoEndsWith() { return PartNoEndsWith; } public IN_StyleColourSizeMatrixQuery setPartNoEndsWith(String value) { this.PartNoEndsWith = value; return this; } public String getPartNoContains() { return PartNoContains; } public IN_StyleColourSizeMatrixQuery setPartNoContains(String value) { this.PartNoContains = value; return this; } public String getPartNoLike() { return PartNoLike; } public IN_StyleColourSizeMatrixQuery setPartNoLike(String value) { this.PartNoLike = value; return this; } public ArrayList getPartNoBetween() { return PartNoBetween; } public IN_StyleColourSizeMatrixQuery setPartNoBetween(ArrayList value) { this.PartNoBetween = value; return this; } public ArrayList getPartNoIn() { return PartNoIn; } public IN_StyleColourSizeMatrixQuery setPartNoIn(ArrayList value) { this.PartNoIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class IN_StylesQuery extends QueryDb implements IReturn> { public String RecID = null; public String RecIDStartsWith = null; public String RecIDEndsWith = null; public String RecIDContains = null; public String RecIDLike = null; public ArrayList RecIDBetween = null; public ArrayList RecIDIn = null; public String Description = null; public String DescriptionStartsWith = null; public String DescriptionEndsWith = null; public String DescriptionContains = null; public String DescriptionLike = null; public ArrayList DescriptionBetween = null; public ArrayList DescriptionIn = null; public String StyleCode = null; public String StyleCodeStartsWith = null; public String StyleCodeEndsWith = null; public String StyleCodeContains = null; public String StyleCodeLike = null; public ArrayList StyleCodeBetween = null; public ArrayList StyleCodeIn = null; public String getRecID() { return RecID; } public IN_StylesQuery setRecID(String value) { this.RecID = value; return this; } public String getRecIDStartsWith() { return RecIDStartsWith; } public IN_StylesQuery setRecIDStartsWith(String value) { this.RecIDStartsWith = value; return this; } public String getRecIDEndsWith() { return RecIDEndsWith; } public IN_StylesQuery setRecIDEndsWith(String value) { this.RecIDEndsWith = value; return this; } public String getRecIDContains() { return RecIDContains; } public IN_StylesQuery setRecIDContains(String value) { this.RecIDContains = value; return this; } public String getRecIDLike() { return RecIDLike; } public IN_StylesQuery setRecIDLike(String value) { this.RecIDLike = value; return this; } public ArrayList getRecIDBetween() { return RecIDBetween; } public IN_StylesQuery setRecIDBetween(ArrayList value) { this.RecIDBetween = value; return this; } public ArrayList getRecIDIn() { return RecIDIn; } public IN_StylesQuery setRecIDIn(ArrayList value) { this.RecIDIn = value; return this; } public String getDescription() { return Description; } public IN_StylesQuery setDescription(String value) { this.Description = value; return this; } public String getDescriptionStartsWith() { return DescriptionStartsWith; } public IN_StylesQuery setDescriptionStartsWith(String value) { this.DescriptionStartsWith = value; return this; } public String getDescriptionEndsWith() { return DescriptionEndsWith; } public IN_StylesQuery setDescriptionEndsWith(String value) { this.DescriptionEndsWith = value; return this; } public String getDescriptionContains() { return DescriptionContains; } public IN_StylesQuery setDescriptionContains(String value) { this.DescriptionContains = value; return this; } public String getDescriptionLike() { return DescriptionLike; } public IN_StylesQuery setDescriptionLike(String value) { this.DescriptionLike = value; return this; } public ArrayList getDescriptionBetween() { return DescriptionBetween; } public IN_StylesQuery setDescriptionBetween(ArrayList value) { this.DescriptionBetween = value; return this; } public ArrayList getDescriptionIn() { return DescriptionIn; } public IN_StylesQuery setDescriptionIn(ArrayList value) { this.DescriptionIn = value; return this; } public String getStyleCode() { return StyleCode; } public IN_StylesQuery setStyleCode(String value) { this.StyleCode = value; return this; } public String getStyleCodeStartsWith() { return StyleCodeStartsWith; } public IN_StylesQuery setStyleCodeStartsWith(String value) { this.StyleCodeStartsWith = value; return this; } public String getStyleCodeEndsWith() { return StyleCodeEndsWith; } public IN_StylesQuery setStyleCodeEndsWith(String value) { this.StyleCodeEndsWith = value; return this; } public String getStyleCodeContains() { return StyleCodeContains; } public IN_StylesQuery setStyleCodeContains(String value) { this.StyleCodeContains = value; return this; } public String getStyleCodeLike() { return StyleCodeLike; } public IN_StylesQuery setStyleCodeLike(String value) { this.StyleCodeLike = value; return this; } public ArrayList getStyleCodeBetween() { return StyleCodeBetween; } public IN_StylesQuery setStyleCodeBetween(ArrayList value) { this.StyleCodeBetween = value; return this; } public ArrayList getStyleCodeIn() { return StyleCodeIn; } public IN_StylesQuery setStyleCodeIn(ArrayList value) { this.StyleCodeIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class IN_SupplierWarehouseQuery extends QueryDb implements IReturn> { public String RecID = null; public String RecIDStartsWith = null; public String RecIDEndsWith = null; public String RecIDContains = null; public String RecIDLike = null; public ArrayList RecIDBetween = null; public ArrayList RecIDIn = null; public String IN_Creditor_RecID = null; public String IN_Creditor_RecIDStartsWith = null; public String IN_Creditor_RecIDEndsWith = null; public String IN_Creditor_RecIDContains = null; public String IN_Creditor_RecIDLike = null; public ArrayList IN_Creditor_RecIDBetween = null; public ArrayList IN_Creditor_RecIDIn = null; public String InventoryID = null; public String InventoryIDStartsWith = null; public String InventoryIDEndsWith = null; public String InventoryIDContains = null; public String InventoryIDLike = null; public ArrayList InventoryIDBetween = null; public ArrayList InventoryIDIn = null; public String WarehouseID = null; public String WarehouseIDStartsWith = null; public String WarehouseIDEndsWith = null; public String WarehouseIDContains = null; public String WarehouseIDLike = null; public ArrayList WarehouseIDBetween = null; public ArrayList WarehouseIDIn = null; public String FreightInID = null; public String FreightInIDStartsWith = null; public String FreightInIDEndsWith = null; public String FreightInIDContains = null; public String FreightInIDLike = null; public ArrayList FreightInIDBetween = null; public ArrayList FreightInIDIn = null; public BigDecimal OrderUnits = null; public BigDecimal OrderUnitsGreaterThanOrEqualTo = null; public BigDecimal OrderUnitsGreaterThan = null; public BigDecimal OrderUnitsLessThan = null; public BigDecimal OrderUnitsLessThanOrEqualTo = null; public BigDecimal OrderUnitsNotEqualTo = null; public ArrayList OrderUnitsBetween = null; public ArrayList OrderUnitsIn = null; public Short DeliveryDays = null; public Short DeliveryDaysGreaterThanOrEqualTo = null; public Short DeliveryDaysGreaterThan = null; public Short DeliveryDaysLessThan = null; public Short DeliveryDaysLessThanOrEqualTo = null; public Short DeliveryDaysNotEqualTo = null; public ArrayList DeliveryDaysBetween = null; public ArrayList DeliveryDaysIn = null; public BigDecimal SuppliersCost = null; public BigDecimal SuppliersCostGreaterThanOrEqualTo = null; public BigDecimal SuppliersCostGreaterThan = null; public BigDecimal SuppliersCostLessThan = null; public BigDecimal SuppliersCostLessThanOrEqualTo = null; public BigDecimal SuppliersCostNotEqualTo = null; public ArrayList SuppliersCostBetween = null; public ArrayList SuppliersCostIn = null; public BigDecimal HomeSuppliersCost = null; public BigDecimal HomeSuppliersCostGreaterThanOrEqualTo = null; public BigDecimal HomeSuppliersCostGreaterThan = null; public BigDecimal HomeSuppliersCostLessThan = null; public BigDecimal HomeSuppliersCostLessThanOrEqualTo = null; public BigDecimal HomeSuppliersCostNotEqualTo = null; public ArrayList HomeSuppliersCostBetween = null; public ArrayList HomeSuppliersCostIn = null; public String DutyID = null; public String DutyIDStartsWith = null; public String DutyIDEndsWith = null; public String DutyIDContains = null; public String DutyIDLike = null; public ArrayList DutyIDBetween = null; public ArrayList DutyIDIn = null; public BigDecimal SupplierSOH = null; public BigDecimal SupplierSOHGreaterThanOrEqualTo = null; public BigDecimal SupplierSOHGreaterThan = null; public BigDecimal SupplierSOHLessThan = null; public BigDecimal SupplierSOHLessThanOrEqualTo = null; public BigDecimal SupplierSOHNotEqualTo = null; public ArrayList SupplierSOHBetween = null; public ArrayList SupplierSOHIn = null; public BigDecimal SuppliersCost2 = null; public BigDecimal SuppliersCost2GreaterThanOrEqualTo = null; public BigDecimal SuppliersCost2GreaterThan = null; public BigDecimal SuppliersCost2LessThan = null; public BigDecimal SuppliersCost2LessThanOrEqualTo = null; public BigDecimal SuppliersCost2NotEqualTo = null; public ArrayList SuppliersCost2Between = null; public ArrayList SuppliersCost2In = null; public BigDecimal HomeSuppliersCost2 = null; public BigDecimal HomeSuppliersCost2GreaterThanOrEqualTo = null; public BigDecimal HomeSuppliersCost2GreaterThan = null; public BigDecimal HomeSuppliersCost2LessThan = null; public BigDecimal HomeSuppliersCost2LessThanOrEqualTo = null; public BigDecimal HomeSuppliersCost2NotEqualTo = null; public ArrayList HomeSuppliersCost2Between = null; public ArrayList HomeSuppliersCost2In = null; public BigDecimal SpareFloat1 = null; public BigDecimal SpareFloat1GreaterThanOrEqualTo = null; public BigDecimal SpareFloat1GreaterThan = null; public BigDecimal SpareFloat1LessThan = null; public BigDecimal SpareFloat1LessThanOrEqualTo = null; public BigDecimal SpareFloat1NotEqualTo = null; public ArrayList SpareFloat1Between = null; public ArrayList SpareFloat1In = null; public BigDecimal SpareFloat2 = null; public BigDecimal SpareFloat2GreaterThanOrEqualTo = null; public BigDecimal SpareFloat2GreaterThan = null; public BigDecimal SpareFloat2LessThan = null; public BigDecimal SpareFloat2LessThanOrEqualTo = null; public BigDecimal SpareFloat2NotEqualTo = null; public ArrayList SpareFloat2Between = null; public ArrayList SpareFloat2In = null; public BigDecimal SpareFloat3 = null; public BigDecimal SpareFloat3GreaterThanOrEqualTo = null; public BigDecimal SpareFloat3GreaterThan = null; public BigDecimal SpareFloat3LessThan = null; public BigDecimal SpareFloat3LessThanOrEqualTo = null; public BigDecimal SpareFloat3NotEqualTo = null; public ArrayList SpareFloat3Between = null; public ArrayList SpareFloat3In = null; public String SpareString1 = null; public String SpareString1StartsWith = null; public String SpareString1EndsWith = null; public String SpareString1Contains = null; public String SpareString1Like = null; public ArrayList SpareString1Between = null; public ArrayList SpareString1In = null; public String SpareString2 = null; public String SpareString2StartsWith = null; public String SpareString2EndsWith = null; public String SpareString2Contains = null; public String SpareString2Like = null; public ArrayList SpareString2Between = null; public ArrayList SpareString2In = null; public String SpareString3 = null; public String SpareString3StartsWith = null; public String SpareString3EndsWith = null; public String SpareString3Contains = null; public String SpareString3Like = null; public ArrayList SpareString3Between = null; public ArrayList SpareString3In = null; public Date SpareDate1 = null; public Date SpareDate1GreaterThanOrEqualTo = null; public Date SpareDate1GreaterThan = null; public Date SpareDate1LessThan = null; public Date SpareDate1LessThanOrEqualTo = null; public Date SpareDate1NotEqualTo = null; public ArrayList SpareDate1Between = null; public ArrayList SpareDate1In = null; public Date SpareDate2 = null; public Date SpareDate2GreaterThanOrEqualTo = null; public Date SpareDate2GreaterThan = null; public Date SpareDate2LessThan = null; public Date SpareDate2LessThanOrEqualTo = null; public Date SpareDate2NotEqualTo = null; public ArrayList SpareDate2Between = null; public ArrayList SpareDate2In = null; public Date SpareDate3 = null; public Date SpareDate3GreaterThanOrEqualTo = null; public Date SpareDate3GreaterThan = null; public Date SpareDate3LessThan = null; public Date SpareDate3LessThanOrEqualTo = null; public Date SpareDate3NotEqualTo = null; public ArrayList SpareDate3Between = null; public ArrayList SpareDate3In = null; public Boolean DefaultSupplierWarehouse = null; public Integer ItemNo = null; public Integer ItemNoGreaterThanOrEqualTo = null; public Integer ItemNoGreaterThan = null; public Integer ItemNoLessThan = null; public Integer ItemNoLessThanOrEqualTo = null; public Integer ItemNoNotEqualTo = null; public ArrayList ItemNoBetween = null; public ArrayList ItemNoIn = null; public UUID IN_UnitOfMeasure_RecID = null; public ArrayList IN_UnitOfMeasure_RecIDIn = null; public String getRecID() { return RecID; } public IN_SupplierWarehouseQuery setRecID(String value) { this.RecID = value; return this; } public String getRecIDStartsWith() { return RecIDStartsWith; } public IN_SupplierWarehouseQuery setRecIDStartsWith(String value) { this.RecIDStartsWith = value; return this; } public String getRecIDEndsWith() { return RecIDEndsWith; } public IN_SupplierWarehouseQuery setRecIDEndsWith(String value) { this.RecIDEndsWith = value; return this; } public String getRecIDContains() { return RecIDContains; } public IN_SupplierWarehouseQuery setRecIDContains(String value) { this.RecIDContains = value; return this; } public String getRecIDLike() { return RecIDLike; } public IN_SupplierWarehouseQuery setRecIDLike(String value) { this.RecIDLike = value; return this; } public ArrayList getRecIDBetween() { return RecIDBetween; } public IN_SupplierWarehouseQuery setRecIDBetween(ArrayList value) { this.RecIDBetween = value; return this; } public ArrayList getRecIDIn() { return RecIDIn; } public IN_SupplierWarehouseQuery setRecIDIn(ArrayList value) { this.RecIDIn = value; return this; } public String getInCreditorRecID() { return IN_Creditor_RecID; } public IN_SupplierWarehouseQuery setInCreditorRecID(String value) { this.IN_Creditor_RecID = value; return this; } public String getInCreditorRecIDStartsWith() { return IN_Creditor_RecIDStartsWith; } public IN_SupplierWarehouseQuery setInCreditorRecIDStartsWith(String value) { this.IN_Creditor_RecIDStartsWith = value; return this; } public String getInCreditorRecIDEndsWith() { return IN_Creditor_RecIDEndsWith; } public IN_SupplierWarehouseQuery setInCreditorRecIDEndsWith(String value) { this.IN_Creditor_RecIDEndsWith = value; return this; } public String getInCreditorRecIDContains() { return IN_Creditor_RecIDContains; } public IN_SupplierWarehouseQuery setInCreditorRecIDContains(String value) { this.IN_Creditor_RecIDContains = value; return this; } public String getInCreditorRecIDLike() { return IN_Creditor_RecIDLike; } public IN_SupplierWarehouseQuery setInCreditorRecIDLike(String value) { this.IN_Creditor_RecIDLike = value; return this; } public ArrayList getInCreditorRecIDBetween() { return IN_Creditor_RecIDBetween; } public IN_SupplierWarehouseQuery setInCreditorRecIDBetween(ArrayList value) { this.IN_Creditor_RecIDBetween = value; return this; } public ArrayList getInCreditorRecIDIn() { return IN_Creditor_RecIDIn; } public IN_SupplierWarehouseQuery setInCreditorRecIDIn(ArrayList value) { this.IN_Creditor_RecIDIn = value; return this; } public String getInventoryID() { return InventoryID; } public IN_SupplierWarehouseQuery setInventoryID(String value) { this.InventoryID = value; return this; } public String getInventoryIDStartsWith() { return InventoryIDStartsWith; } public IN_SupplierWarehouseQuery setInventoryIDStartsWith(String value) { this.InventoryIDStartsWith = value; return this; } public String getInventoryIDEndsWith() { return InventoryIDEndsWith; } public IN_SupplierWarehouseQuery setInventoryIDEndsWith(String value) { this.InventoryIDEndsWith = value; return this; } public String getInventoryIDContains() { return InventoryIDContains; } public IN_SupplierWarehouseQuery setInventoryIDContains(String value) { this.InventoryIDContains = value; return this; } public String getInventoryIDLike() { return InventoryIDLike; } public IN_SupplierWarehouseQuery setInventoryIDLike(String value) { this.InventoryIDLike = value; return this; } public ArrayList getInventoryIDBetween() { return InventoryIDBetween; } public IN_SupplierWarehouseQuery setInventoryIDBetween(ArrayList value) { this.InventoryIDBetween = value; return this; } public ArrayList getInventoryIDIn() { return InventoryIDIn; } public IN_SupplierWarehouseQuery setInventoryIDIn(ArrayList value) { this.InventoryIDIn = value; return this; } public String getWarehouseID() { return WarehouseID; } public IN_SupplierWarehouseQuery setWarehouseID(String value) { this.WarehouseID = value; return this; } public String getWarehouseIDStartsWith() { return WarehouseIDStartsWith; } public IN_SupplierWarehouseQuery setWarehouseIDStartsWith(String value) { this.WarehouseIDStartsWith = value; return this; } public String getWarehouseIDEndsWith() { return WarehouseIDEndsWith; } public IN_SupplierWarehouseQuery setWarehouseIDEndsWith(String value) { this.WarehouseIDEndsWith = value; return this; } public String getWarehouseIDContains() { return WarehouseIDContains; } public IN_SupplierWarehouseQuery setWarehouseIDContains(String value) { this.WarehouseIDContains = value; return this; } public String getWarehouseIDLike() { return WarehouseIDLike; } public IN_SupplierWarehouseQuery setWarehouseIDLike(String value) { this.WarehouseIDLike = value; return this; } public ArrayList getWarehouseIDBetween() { return WarehouseIDBetween; } public IN_SupplierWarehouseQuery setWarehouseIDBetween(ArrayList value) { this.WarehouseIDBetween = value; return this; } public ArrayList getWarehouseIDIn() { return WarehouseIDIn; } public IN_SupplierWarehouseQuery setWarehouseIDIn(ArrayList value) { this.WarehouseIDIn = value; return this; } public String getFreightInID() { return FreightInID; } public IN_SupplierWarehouseQuery setFreightInID(String value) { this.FreightInID = value; return this; } public String getFreightInIDStartsWith() { return FreightInIDStartsWith; } public IN_SupplierWarehouseQuery setFreightInIDStartsWith(String value) { this.FreightInIDStartsWith = value; return this; } public String getFreightInIDEndsWith() { return FreightInIDEndsWith; } public IN_SupplierWarehouseQuery setFreightInIDEndsWith(String value) { this.FreightInIDEndsWith = value; return this; } public String getFreightInIDContains() { return FreightInIDContains; } public IN_SupplierWarehouseQuery setFreightInIDContains(String value) { this.FreightInIDContains = value; return this; } public String getFreightInIDLike() { return FreightInIDLike; } public IN_SupplierWarehouseQuery setFreightInIDLike(String value) { this.FreightInIDLike = value; return this; } public ArrayList getFreightInIDBetween() { return FreightInIDBetween; } public IN_SupplierWarehouseQuery setFreightInIDBetween(ArrayList value) { this.FreightInIDBetween = value; return this; } public ArrayList getFreightInIDIn() { return FreightInIDIn; } public IN_SupplierWarehouseQuery setFreightInIDIn(ArrayList value) { this.FreightInIDIn = value; return this; } public BigDecimal getOrderUnits() { return OrderUnits; } public IN_SupplierWarehouseQuery setOrderUnits(BigDecimal value) { this.OrderUnits = value; return this; } public BigDecimal getOrderUnitsGreaterThanOrEqualTo() { return OrderUnitsGreaterThanOrEqualTo; } public IN_SupplierWarehouseQuery setOrderUnitsGreaterThanOrEqualTo(BigDecimal value) { this.OrderUnitsGreaterThanOrEqualTo = value; return this; } public BigDecimal getOrderUnitsGreaterThan() { return OrderUnitsGreaterThan; } public IN_SupplierWarehouseQuery setOrderUnitsGreaterThan(BigDecimal value) { this.OrderUnitsGreaterThan = value; return this; } public BigDecimal getOrderUnitsLessThan() { return OrderUnitsLessThan; } public IN_SupplierWarehouseQuery setOrderUnitsLessThan(BigDecimal value) { this.OrderUnitsLessThan = value; return this; } public BigDecimal getOrderUnitsLessThanOrEqualTo() { return OrderUnitsLessThanOrEqualTo; } public IN_SupplierWarehouseQuery setOrderUnitsLessThanOrEqualTo(BigDecimal value) { this.OrderUnitsLessThanOrEqualTo = value; return this; } public BigDecimal getOrderUnitsNotEqualTo() { return OrderUnitsNotEqualTo; } public IN_SupplierWarehouseQuery setOrderUnitsNotEqualTo(BigDecimal value) { this.OrderUnitsNotEqualTo = value; return this; } public ArrayList getOrderUnitsBetween() { return OrderUnitsBetween; } public IN_SupplierWarehouseQuery setOrderUnitsBetween(ArrayList value) { this.OrderUnitsBetween = value; return this; } public ArrayList getOrderUnitsIn() { return OrderUnitsIn; } public IN_SupplierWarehouseQuery setOrderUnitsIn(ArrayList value) { this.OrderUnitsIn = value; return this; } public Short getDeliveryDays() { return DeliveryDays; } public IN_SupplierWarehouseQuery setDeliveryDays(Short value) { this.DeliveryDays = value; return this; } public Short getDeliveryDaysGreaterThanOrEqualTo() { return DeliveryDaysGreaterThanOrEqualTo; } public IN_SupplierWarehouseQuery setDeliveryDaysGreaterThanOrEqualTo(Short value) { this.DeliveryDaysGreaterThanOrEqualTo = value; return this; } public Short getDeliveryDaysGreaterThan() { return DeliveryDaysGreaterThan; } public IN_SupplierWarehouseQuery setDeliveryDaysGreaterThan(Short value) { this.DeliveryDaysGreaterThan = value; return this; } public Short getDeliveryDaysLessThan() { return DeliveryDaysLessThan; } public IN_SupplierWarehouseQuery setDeliveryDaysLessThan(Short value) { this.DeliveryDaysLessThan = value; return this; } public Short getDeliveryDaysLessThanOrEqualTo() { return DeliveryDaysLessThanOrEqualTo; } public IN_SupplierWarehouseQuery setDeliveryDaysLessThanOrEqualTo(Short value) { this.DeliveryDaysLessThanOrEqualTo = value; return this; } public Short getDeliveryDaysNotEqualTo() { return DeliveryDaysNotEqualTo; } public IN_SupplierWarehouseQuery setDeliveryDaysNotEqualTo(Short value) { this.DeliveryDaysNotEqualTo = value; return this; } public ArrayList getDeliveryDaysBetween() { return DeliveryDaysBetween; } public IN_SupplierWarehouseQuery setDeliveryDaysBetween(ArrayList value) { this.DeliveryDaysBetween = value; return this; } public ArrayList getDeliveryDaysIn() { return DeliveryDaysIn; } public IN_SupplierWarehouseQuery setDeliveryDaysIn(ArrayList value) { this.DeliveryDaysIn = value; return this; } public BigDecimal getSuppliersCost() { return SuppliersCost; } public IN_SupplierWarehouseQuery setSuppliersCost(BigDecimal value) { this.SuppliersCost = value; return this; } public BigDecimal getSuppliersCostGreaterThanOrEqualTo() { return SuppliersCostGreaterThanOrEqualTo; } public IN_SupplierWarehouseQuery setSuppliersCostGreaterThanOrEqualTo(BigDecimal value) { this.SuppliersCostGreaterThanOrEqualTo = value; return this; } public BigDecimal getSuppliersCostGreaterThan() { return SuppliersCostGreaterThan; } public IN_SupplierWarehouseQuery setSuppliersCostGreaterThan(BigDecimal value) { this.SuppliersCostGreaterThan = value; return this; } public BigDecimal getSuppliersCostLessThan() { return SuppliersCostLessThan; } public IN_SupplierWarehouseQuery setSuppliersCostLessThan(BigDecimal value) { this.SuppliersCostLessThan = value; return this; } public BigDecimal getSuppliersCostLessThanOrEqualTo() { return SuppliersCostLessThanOrEqualTo; } public IN_SupplierWarehouseQuery setSuppliersCostLessThanOrEqualTo(BigDecimal value) { this.SuppliersCostLessThanOrEqualTo = value; return this; } public BigDecimal getSuppliersCostNotEqualTo() { return SuppliersCostNotEqualTo; } public IN_SupplierWarehouseQuery setSuppliersCostNotEqualTo(BigDecimal value) { this.SuppliersCostNotEqualTo = value; return this; } public ArrayList getSuppliersCostBetween() { return SuppliersCostBetween; } public IN_SupplierWarehouseQuery setSuppliersCostBetween(ArrayList value) { this.SuppliersCostBetween = value; return this; } public ArrayList getSuppliersCostIn() { return SuppliersCostIn; } public IN_SupplierWarehouseQuery setSuppliersCostIn(ArrayList value) { this.SuppliersCostIn = value; return this; } public BigDecimal getHomeSuppliersCost() { return HomeSuppliersCost; } public IN_SupplierWarehouseQuery setHomeSuppliersCost(BigDecimal value) { this.HomeSuppliersCost = value; return this; } public BigDecimal getHomeSuppliersCostGreaterThanOrEqualTo() { return HomeSuppliersCostGreaterThanOrEqualTo; } public IN_SupplierWarehouseQuery setHomeSuppliersCostGreaterThanOrEqualTo(BigDecimal value) { this.HomeSuppliersCostGreaterThanOrEqualTo = value; return this; } public BigDecimal getHomeSuppliersCostGreaterThan() { return HomeSuppliersCostGreaterThan; } public IN_SupplierWarehouseQuery setHomeSuppliersCostGreaterThan(BigDecimal value) { this.HomeSuppliersCostGreaterThan = value; return this; } public BigDecimal getHomeSuppliersCostLessThan() { return HomeSuppliersCostLessThan; } public IN_SupplierWarehouseQuery setHomeSuppliersCostLessThan(BigDecimal value) { this.HomeSuppliersCostLessThan = value; return this; } public BigDecimal getHomeSuppliersCostLessThanOrEqualTo() { return HomeSuppliersCostLessThanOrEqualTo; } public IN_SupplierWarehouseQuery setHomeSuppliersCostLessThanOrEqualTo(BigDecimal value) { this.HomeSuppliersCostLessThanOrEqualTo = value; return this; } public BigDecimal getHomeSuppliersCostNotEqualTo() { return HomeSuppliersCostNotEqualTo; } public IN_SupplierWarehouseQuery setHomeSuppliersCostNotEqualTo(BigDecimal value) { this.HomeSuppliersCostNotEqualTo = value; return this; } public ArrayList getHomeSuppliersCostBetween() { return HomeSuppliersCostBetween; } public IN_SupplierWarehouseQuery setHomeSuppliersCostBetween(ArrayList value) { this.HomeSuppliersCostBetween = value; return this; } public ArrayList getHomeSuppliersCostIn() { return HomeSuppliersCostIn; } public IN_SupplierWarehouseQuery setHomeSuppliersCostIn(ArrayList value) { this.HomeSuppliersCostIn = value; return this; } public String getDutyID() { return DutyID; } public IN_SupplierWarehouseQuery setDutyID(String value) { this.DutyID = value; return this; } public String getDutyIDStartsWith() { return DutyIDStartsWith; } public IN_SupplierWarehouseQuery setDutyIDStartsWith(String value) { this.DutyIDStartsWith = value; return this; } public String getDutyIDEndsWith() { return DutyIDEndsWith; } public IN_SupplierWarehouseQuery setDutyIDEndsWith(String value) { this.DutyIDEndsWith = value; return this; } public String getDutyIDContains() { return DutyIDContains; } public IN_SupplierWarehouseQuery setDutyIDContains(String value) { this.DutyIDContains = value; return this; } public String getDutyIDLike() { return DutyIDLike; } public IN_SupplierWarehouseQuery setDutyIDLike(String value) { this.DutyIDLike = value; return this; } public ArrayList getDutyIDBetween() { return DutyIDBetween; } public IN_SupplierWarehouseQuery setDutyIDBetween(ArrayList value) { this.DutyIDBetween = value; return this; } public ArrayList getDutyIDIn() { return DutyIDIn; } public IN_SupplierWarehouseQuery setDutyIDIn(ArrayList value) { this.DutyIDIn = value; return this; } public BigDecimal getSupplierSOH() { return SupplierSOH; } public IN_SupplierWarehouseQuery setSupplierSOH(BigDecimal value) { this.SupplierSOH = value; return this; } public BigDecimal getSupplierSOHGreaterThanOrEqualTo() { return SupplierSOHGreaterThanOrEqualTo; } public IN_SupplierWarehouseQuery setSupplierSOHGreaterThanOrEqualTo(BigDecimal value) { this.SupplierSOHGreaterThanOrEqualTo = value; return this; } public BigDecimal getSupplierSOHGreaterThan() { return SupplierSOHGreaterThan; } public IN_SupplierWarehouseQuery setSupplierSOHGreaterThan(BigDecimal value) { this.SupplierSOHGreaterThan = value; return this; } public BigDecimal getSupplierSOHLessThan() { return SupplierSOHLessThan; } public IN_SupplierWarehouseQuery setSupplierSOHLessThan(BigDecimal value) { this.SupplierSOHLessThan = value; return this; } public BigDecimal getSupplierSOHLessThanOrEqualTo() { return SupplierSOHLessThanOrEqualTo; } public IN_SupplierWarehouseQuery setSupplierSOHLessThanOrEqualTo(BigDecimal value) { this.SupplierSOHLessThanOrEqualTo = value; return this; } public BigDecimal getSupplierSOHNotEqualTo() { return SupplierSOHNotEqualTo; } public IN_SupplierWarehouseQuery setSupplierSOHNotEqualTo(BigDecimal value) { this.SupplierSOHNotEqualTo = value; return this; } public ArrayList getSupplierSOHBetween() { return SupplierSOHBetween; } public IN_SupplierWarehouseQuery setSupplierSOHBetween(ArrayList value) { this.SupplierSOHBetween = value; return this; } public ArrayList getSupplierSOHIn() { return SupplierSOHIn; } public IN_SupplierWarehouseQuery setSupplierSOHIn(ArrayList value) { this.SupplierSOHIn = value; return this; } public BigDecimal getSuppliersCost2() { return SuppliersCost2; } public IN_SupplierWarehouseQuery setSuppliersCost2(BigDecimal value) { this.SuppliersCost2 = value; return this; } public BigDecimal getSuppliersCost2GreaterThanOrEqualTo() { return SuppliersCost2GreaterThanOrEqualTo; } public IN_SupplierWarehouseQuery setSuppliersCost2GreaterThanOrEqualTo(BigDecimal value) { this.SuppliersCost2GreaterThanOrEqualTo = value; return this; } public BigDecimal getSuppliersCost2GreaterThan() { return SuppliersCost2GreaterThan; } public IN_SupplierWarehouseQuery setSuppliersCost2GreaterThan(BigDecimal value) { this.SuppliersCost2GreaterThan = value; return this; } public BigDecimal getSuppliersCost2LessThan() { return SuppliersCost2LessThan; } public IN_SupplierWarehouseQuery setSuppliersCost2LessThan(BigDecimal value) { this.SuppliersCost2LessThan = value; return this; } public BigDecimal getSuppliersCost2LessThanOrEqualTo() { return SuppliersCost2LessThanOrEqualTo; } public IN_SupplierWarehouseQuery setSuppliersCost2LessThanOrEqualTo(BigDecimal value) { this.SuppliersCost2LessThanOrEqualTo = value; return this; } public BigDecimal getSuppliersCost2NotEqualTo() { return SuppliersCost2NotEqualTo; } public IN_SupplierWarehouseQuery setSuppliersCost2NotEqualTo(BigDecimal value) { this.SuppliersCost2NotEqualTo = value; return this; } public ArrayList getSuppliersCost2Between() { return SuppliersCost2Between; } public IN_SupplierWarehouseQuery setSuppliersCost2Between(ArrayList value) { this.SuppliersCost2Between = value; return this; } public ArrayList getSuppliersCost2In() { return SuppliersCost2In; } public IN_SupplierWarehouseQuery setSuppliersCost2In(ArrayList value) { this.SuppliersCost2In = value; return this; } public BigDecimal getHomeSuppliersCost2() { return HomeSuppliersCost2; } public IN_SupplierWarehouseQuery setHomeSuppliersCost2(BigDecimal value) { this.HomeSuppliersCost2 = value; return this; } public BigDecimal getHomeSuppliersCost2GreaterThanOrEqualTo() { return HomeSuppliersCost2GreaterThanOrEqualTo; } public IN_SupplierWarehouseQuery setHomeSuppliersCost2GreaterThanOrEqualTo(BigDecimal value) { this.HomeSuppliersCost2GreaterThanOrEqualTo = value; return this; } public BigDecimal getHomeSuppliersCost2GreaterThan() { return HomeSuppliersCost2GreaterThan; } public IN_SupplierWarehouseQuery setHomeSuppliersCost2GreaterThan(BigDecimal value) { this.HomeSuppliersCost2GreaterThan = value; return this; } public BigDecimal getHomeSuppliersCost2LessThan() { return HomeSuppliersCost2LessThan; } public IN_SupplierWarehouseQuery setHomeSuppliersCost2LessThan(BigDecimal value) { this.HomeSuppliersCost2LessThan = value; return this; } public BigDecimal getHomeSuppliersCost2LessThanOrEqualTo() { return HomeSuppliersCost2LessThanOrEqualTo; } public IN_SupplierWarehouseQuery setHomeSuppliersCost2LessThanOrEqualTo(BigDecimal value) { this.HomeSuppliersCost2LessThanOrEqualTo = value; return this; } public BigDecimal getHomeSuppliersCost2NotEqualTo() { return HomeSuppliersCost2NotEqualTo; } public IN_SupplierWarehouseQuery setHomeSuppliersCost2NotEqualTo(BigDecimal value) { this.HomeSuppliersCost2NotEqualTo = value; return this; } public ArrayList getHomeSuppliersCost2Between() { return HomeSuppliersCost2Between; } public IN_SupplierWarehouseQuery setHomeSuppliersCost2Between(ArrayList value) { this.HomeSuppliersCost2Between = value; return this; } public ArrayList getHomeSuppliersCost2In() { return HomeSuppliersCost2In; } public IN_SupplierWarehouseQuery setHomeSuppliersCost2In(ArrayList value) { this.HomeSuppliersCost2In = value; return this; } public BigDecimal getSpareFloat1() { return SpareFloat1; } public IN_SupplierWarehouseQuery setSpareFloat1(BigDecimal value) { this.SpareFloat1 = value; return this; } public BigDecimal getSpareFloat1GreaterThanOrEqualTo() { return SpareFloat1GreaterThanOrEqualTo; } public IN_SupplierWarehouseQuery setSpareFloat1GreaterThanOrEqualTo(BigDecimal value) { this.SpareFloat1GreaterThanOrEqualTo = value; return this; } public BigDecimal getSpareFloat1GreaterThan() { return SpareFloat1GreaterThan; } public IN_SupplierWarehouseQuery setSpareFloat1GreaterThan(BigDecimal value) { this.SpareFloat1GreaterThan = value; return this; } public BigDecimal getSpareFloat1LessThan() { return SpareFloat1LessThan; } public IN_SupplierWarehouseQuery setSpareFloat1LessThan(BigDecimal value) { this.SpareFloat1LessThan = value; return this; } public BigDecimal getSpareFloat1LessThanOrEqualTo() { return SpareFloat1LessThanOrEqualTo; } public IN_SupplierWarehouseQuery setSpareFloat1LessThanOrEqualTo(BigDecimal value) { this.SpareFloat1LessThanOrEqualTo = value; return this; } public BigDecimal getSpareFloat1NotEqualTo() { return SpareFloat1NotEqualTo; } public IN_SupplierWarehouseQuery setSpareFloat1NotEqualTo(BigDecimal value) { this.SpareFloat1NotEqualTo = value; return this; } public ArrayList getSpareFloat1Between() { return SpareFloat1Between; } public IN_SupplierWarehouseQuery setSpareFloat1Between(ArrayList value) { this.SpareFloat1Between = value; return this; } public ArrayList getSpareFloat1In() { return SpareFloat1In; } public IN_SupplierWarehouseQuery setSpareFloat1In(ArrayList value) { this.SpareFloat1In = value; return this; } public BigDecimal getSpareFloat2() { return SpareFloat2; } public IN_SupplierWarehouseQuery setSpareFloat2(BigDecimal value) { this.SpareFloat2 = value; return this; } public BigDecimal getSpareFloat2GreaterThanOrEqualTo() { return SpareFloat2GreaterThanOrEqualTo; } public IN_SupplierWarehouseQuery setSpareFloat2GreaterThanOrEqualTo(BigDecimal value) { this.SpareFloat2GreaterThanOrEqualTo = value; return this; } public BigDecimal getSpareFloat2GreaterThan() { return SpareFloat2GreaterThan; } public IN_SupplierWarehouseQuery setSpareFloat2GreaterThan(BigDecimal value) { this.SpareFloat2GreaterThan = value; return this; } public BigDecimal getSpareFloat2LessThan() { return SpareFloat2LessThan; } public IN_SupplierWarehouseQuery setSpareFloat2LessThan(BigDecimal value) { this.SpareFloat2LessThan = value; return this; } public BigDecimal getSpareFloat2LessThanOrEqualTo() { return SpareFloat2LessThanOrEqualTo; } public IN_SupplierWarehouseQuery setSpareFloat2LessThanOrEqualTo(BigDecimal value) { this.SpareFloat2LessThanOrEqualTo = value; return this; } public BigDecimal getSpareFloat2NotEqualTo() { return SpareFloat2NotEqualTo; } public IN_SupplierWarehouseQuery setSpareFloat2NotEqualTo(BigDecimal value) { this.SpareFloat2NotEqualTo = value; return this; } public ArrayList getSpareFloat2Between() { return SpareFloat2Between; } public IN_SupplierWarehouseQuery setSpareFloat2Between(ArrayList value) { this.SpareFloat2Between = value; return this; } public ArrayList getSpareFloat2In() { return SpareFloat2In; } public IN_SupplierWarehouseQuery setSpareFloat2In(ArrayList value) { this.SpareFloat2In = value; return this; } public BigDecimal getSpareFloat3() { return SpareFloat3; } public IN_SupplierWarehouseQuery setSpareFloat3(BigDecimal value) { this.SpareFloat3 = value; return this; } public BigDecimal getSpareFloat3GreaterThanOrEqualTo() { return SpareFloat3GreaterThanOrEqualTo; } public IN_SupplierWarehouseQuery setSpareFloat3GreaterThanOrEqualTo(BigDecimal value) { this.SpareFloat3GreaterThanOrEqualTo = value; return this; } public BigDecimal getSpareFloat3GreaterThan() { return SpareFloat3GreaterThan; } public IN_SupplierWarehouseQuery setSpareFloat3GreaterThan(BigDecimal value) { this.SpareFloat3GreaterThan = value; return this; } public BigDecimal getSpareFloat3LessThan() { return SpareFloat3LessThan; } public IN_SupplierWarehouseQuery setSpareFloat3LessThan(BigDecimal value) { this.SpareFloat3LessThan = value; return this; } public BigDecimal getSpareFloat3LessThanOrEqualTo() { return SpareFloat3LessThanOrEqualTo; } public IN_SupplierWarehouseQuery setSpareFloat3LessThanOrEqualTo(BigDecimal value) { this.SpareFloat3LessThanOrEqualTo = value; return this; } public BigDecimal getSpareFloat3NotEqualTo() { return SpareFloat3NotEqualTo; } public IN_SupplierWarehouseQuery setSpareFloat3NotEqualTo(BigDecimal value) { this.SpareFloat3NotEqualTo = value; return this; } public ArrayList getSpareFloat3Between() { return SpareFloat3Between; } public IN_SupplierWarehouseQuery setSpareFloat3Between(ArrayList value) { this.SpareFloat3Between = value; return this; } public ArrayList getSpareFloat3In() { return SpareFloat3In; } public IN_SupplierWarehouseQuery setSpareFloat3In(ArrayList value) { this.SpareFloat3In = value; return this; } public String getSpareString1() { return SpareString1; } public IN_SupplierWarehouseQuery setSpareString1(String value) { this.SpareString1 = value; return this; } public String getSpareString1StartsWith() { return SpareString1StartsWith; } public IN_SupplierWarehouseQuery setSpareString1StartsWith(String value) { this.SpareString1StartsWith = value; return this; } public String getSpareString1EndsWith() { return SpareString1EndsWith; } public IN_SupplierWarehouseQuery setSpareString1EndsWith(String value) { this.SpareString1EndsWith = value; return this; } public String getSpareString1Contains() { return SpareString1Contains; } public IN_SupplierWarehouseQuery setSpareString1Contains(String value) { this.SpareString1Contains = value; return this; } public String getSpareString1Like() { return SpareString1Like; } public IN_SupplierWarehouseQuery setSpareString1Like(String value) { this.SpareString1Like = value; return this; } public ArrayList getSpareString1Between() { return SpareString1Between; } public IN_SupplierWarehouseQuery setSpareString1Between(ArrayList value) { this.SpareString1Between = value; return this; } public ArrayList getSpareString1In() { return SpareString1In; } public IN_SupplierWarehouseQuery setSpareString1In(ArrayList value) { this.SpareString1In = value; return this; } public String getSpareString2() { return SpareString2; } public IN_SupplierWarehouseQuery setSpareString2(String value) { this.SpareString2 = value; return this; } public String getSpareString2StartsWith() { return SpareString2StartsWith; } public IN_SupplierWarehouseQuery setSpareString2StartsWith(String value) { this.SpareString2StartsWith = value; return this; } public String getSpareString2EndsWith() { return SpareString2EndsWith; } public IN_SupplierWarehouseQuery setSpareString2EndsWith(String value) { this.SpareString2EndsWith = value; return this; } public String getSpareString2Contains() { return SpareString2Contains; } public IN_SupplierWarehouseQuery setSpareString2Contains(String value) { this.SpareString2Contains = value; return this; } public String getSpareString2Like() { return SpareString2Like; } public IN_SupplierWarehouseQuery setSpareString2Like(String value) { this.SpareString2Like = value; return this; } public ArrayList getSpareString2Between() { return SpareString2Between; } public IN_SupplierWarehouseQuery setSpareString2Between(ArrayList value) { this.SpareString2Between = value; return this; } public ArrayList getSpareString2In() { return SpareString2In; } public IN_SupplierWarehouseQuery setSpareString2In(ArrayList value) { this.SpareString2In = value; return this; } public String getSpareString3() { return SpareString3; } public IN_SupplierWarehouseQuery setSpareString3(String value) { this.SpareString3 = value; return this; } public String getSpareString3StartsWith() { return SpareString3StartsWith; } public IN_SupplierWarehouseQuery setSpareString3StartsWith(String value) { this.SpareString3StartsWith = value; return this; } public String getSpareString3EndsWith() { return SpareString3EndsWith; } public IN_SupplierWarehouseQuery setSpareString3EndsWith(String value) { this.SpareString3EndsWith = value; return this; } public String getSpareString3Contains() { return SpareString3Contains; } public IN_SupplierWarehouseQuery setSpareString3Contains(String value) { this.SpareString3Contains = value; return this; } public String getSpareString3Like() { return SpareString3Like; } public IN_SupplierWarehouseQuery setSpareString3Like(String value) { this.SpareString3Like = value; return this; } public ArrayList getSpareString3Between() { return SpareString3Between; } public IN_SupplierWarehouseQuery setSpareString3Between(ArrayList value) { this.SpareString3Between = value; return this; } public ArrayList getSpareString3In() { return SpareString3In; } public IN_SupplierWarehouseQuery setSpareString3In(ArrayList value) { this.SpareString3In = value; return this; } public Date getSpareDate1() { return SpareDate1; } public IN_SupplierWarehouseQuery setSpareDate1(Date value) { this.SpareDate1 = value; return this; } public Date getSpareDate1GreaterThanOrEqualTo() { return SpareDate1GreaterThanOrEqualTo; } public IN_SupplierWarehouseQuery setSpareDate1GreaterThanOrEqualTo(Date value) { this.SpareDate1GreaterThanOrEqualTo = value; return this; } public Date getSpareDate1GreaterThan() { return SpareDate1GreaterThan; } public IN_SupplierWarehouseQuery setSpareDate1GreaterThan(Date value) { this.SpareDate1GreaterThan = value; return this; } public Date getSpareDate1LessThan() { return SpareDate1LessThan; } public IN_SupplierWarehouseQuery setSpareDate1LessThan(Date value) { this.SpareDate1LessThan = value; return this; } public Date getSpareDate1LessThanOrEqualTo() { return SpareDate1LessThanOrEqualTo; } public IN_SupplierWarehouseQuery setSpareDate1LessThanOrEqualTo(Date value) { this.SpareDate1LessThanOrEqualTo = value; return this; } public Date getSpareDate1NotEqualTo() { return SpareDate1NotEqualTo; } public IN_SupplierWarehouseQuery setSpareDate1NotEqualTo(Date value) { this.SpareDate1NotEqualTo = value; return this; } public ArrayList getSpareDate1Between() { return SpareDate1Between; } public IN_SupplierWarehouseQuery setSpareDate1Between(ArrayList value) { this.SpareDate1Between = value; return this; } public ArrayList getSpareDate1In() { return SpareDate1In; } public IN_SupplierWarehouseQuery setSpareDate1In(ArrayList value) { this.SpareDate1In = value; return this; } public Date getSpareDate2() { return SpareDate2; } public IN_SupplierWarehouseQuery setSpareDate2(Date value) { this.SpareDate2 = value; return this; } public Date getSpareDate2GreaterThanOrEqualTo() { return SpareDate2GreaterThanOrEqualTo; } public IN_SupplierWarehouseQuery setSpareDate2GreaterThanOrEqualTo(Date value) { this.SpareDate2GreaterThanOrEqualTo = value; return this; } public Date getSpareDate2GreaterThan() { return SpareDate2GreaterThan; } public IN_SupplierWarehouseQuery setSpareDate2GreaterThan(Date value) { this.SpareDate2GreaterThan = value; return this; } public Date getSpareDate2LessThan() { return SpareDate2LessThan; } public IN_SupplierWarehouseQuery setSpareDate2LessThan(Date value) { this.SpareDate2LessThan = value; return this; } public Date getSpareDate2LessThanOrEqualTo() { return SpareDate2LessThanOrEqualTo; } public IN_SupplierWarehouseQuery setSpareDate2LessThanOrEqualTo(Date value) { this.SpareDate2LessThanOrEqualTo = value; return this; } public Date getSpareDate2NotEqualTo() { return SpareDate2NotEqualTo; } public IN_SupplierWarehouseQuery setSpareDate2NotEqualTo(Date value) { this.SpareDate2NotEqualTo = value; return this; } public ArrayList getSpareDate2Between() { return SpareDate2Between; } public IN_SupplierWarehouseQuery setSpareDate2Between(ArrayList value) { this.SpareDate2Between = value; return this; } public ArrayList getSpareDate2In() { return SpareDate2In; } public IN_SupplierWarehouseQuery setSpareDate2In(ArrayList value) { this.SpareDate2In = value; return this; } public Date getSpareDate3() { return SpareDate3; } public IN_SupplierWarehouseQuery setSpareDate3(Date value) { this.SpareDate3 = value; return this; } public Date getSpareDate3GreaterThanOrEqualTo() { return SpareDate3GreaterThanOrEqualTo; } public IN_SupplierWarehouseQuery setSpareDate3GreaterThanOrEqualTo(Date value) { this.SpareDate3GreaterThanOrEqualTo = value; return this; } public Date getSpareDate3GreaterThan() { return SpareDate3GreaterThan; } public IN_SupplierWarehouseQuery setSpareDate3GreaterThan(Date value) { this.SpareDate3GreaterThan = value; return this; } public Date getSpareDate3LessThan() { return SpareDate3LessThan; } public IN_SupplierWarehouseQuery setSpareDate3LessThan(Date value) { this.SpareDate3LessThan = value; return this; } public Date getSpareDate3LessThanOrEqualTo() { return SpareDate3LessThanOrEqualTo; } public IN_SupplierWarehouseQuery setSpareDate3LessThanOrEqualTo(Date value) { this.SpareDate3LessThanOrEqualTo = value; return this; } public Date getSpareDate3NotEqualTo() { return SpareDate3NotEqualTo; } public IN_SupplierWarehouseQuery setSpareDate3NotEqualTo(Date value) { this.SpareDate3NotEqualTo = value; return this; } public ArrayList getSpareDate3Between() { return SpareDate3Between; } public IN_SupplierWarehouseQuery setSpareDate3Between(ArrayList value) { this.SpareDate3Between = value; return this; } public ArrayList getSpareDate3In() { return SpareDate3In; } public IN_SupplierWarehouseQuery setSpareDate3In(ArrayList value) { this.SpareDate3In = value; return this; } public Boolean isDefaultSupplierWarehouse() { return DefaultSupplierWarehouse; } public IN_SupplierWarehouseQuery setDefaultSupplierWarehouse(Boolean value) { this.DefaultSupplierWarehouse = value; return this; } public Integer getItemNo() { return ItemNo; } public IN_SupplierWarehouseQuery setItemNo(Integer value) { this.ItemNo = value; return this; } public Integer getItemNoGreaterThanOrEqualTo() { return ItemNoGreaterThanOrEqualTo; } public IN_SupplierWarehouseQuery setItemNoGreaterThanOrEqualTo(Integer value) { this.ItemNoGreaterThanOrEqualTo = value; return this; } public Integer getItemNoGreaterThan() { return ItemNoGreaterThan; } public IN_SupplierWarehouseQuery setItemNoGreaterThan(Integer value) { this.ItemNoGreaterThan = value; return this; } public Integer getItemNoLessThan() { return ItemNoLessThan; } public IN_SupplierWarehouseQuery setItemNoLessThan(Integer value) { this.ItemNoLessThan = value; return this; } public Integer getItemNoLessThanOrEqualTo() { return ItemNoLessThanOrEqualTo; } public IN_SupplierWarehouseQuery setItemNoLessThanOrEqualTo(Integer value) { this.ItemNoLessThanOrEqualTo = value; return this; } public Integer getItemNoNotEqualTo() { return ItemNoNotEqualTo; } public IN_SupplierWarehouseQuery setItemNoNotEqualTo(Integer value) { this.ItemNoNotEqualTo = value; return this; } public ArrayList getItemNoBetween() { return ItemNoBetween; } public IN_SupplierWarehouseQuery setItemNoBetween(ArrayList value) { this.ItemNoBetween = value; return this; } public ArrayList getItemNoIn() { return ItemNoIn; } public IN_SupplierWarehouseQuery setItemNoIn(ArrayList value) { this.ItemNoIn = value; return this; } public UUID getInUnitOfMeasureRecID() { return IN_UnitOfMeasure_RecID; } public IN_SupplierWarehouseQuery setInUnitOfMeasureRecID(UUID value) { this.IN_UnitOfMeasure_RecID = value; return this; } public ArrayList getInUnitOfMeasureRecIDIn() { return IN_UnitOfMeasure_RecIDIn; } public IN_SupplierWarehouseQuery setInUnitOfMeasureRecIDIn(ArrayList value) { this.IN_UnitOfMeasure_RecIDIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class IN_SupplierWarehouseCustomFieldsQuery extends QueryDb implements IReturn> { public String FieldID = null; public String FieldIDStartsWith = null; public String FieldIDEndsWith = null; public String FieldIDContains = null; public String FieldIDLike = null; public ArrayList FieldIDBetween = null; public ArrayList FieldIDIn = null; public String SettingName = null; public String SettingNameStartsWith = null; public String SettingNameEndsWith = null; public String SettingNameContains = null; public String SettingNameLike = null; public ArrayList SettingNameBetween = null; public ArrayList SettingNameIn = null; public String SettingDescription = null; public String SettingDescriptionStartsWith = null; public String SettingDescriptionEndsWith = null; public String SettingDescriptionContains = null; public String SettingDescriptionLike = null; public ArrayList SettingDescriptionBetween = null; public ArrayList SettingDescriptionIn = null; public Integer CellType = null; public Integer CellTypeGreaterThanOrEqualTo = null; public Integer CellTypeGreaterThan = null; public Integer CellTypeLessThan = null; public Integer CellTypeLessThanOrEqualTo = null; public Integer CellTypeNotEqualTo = null; public ArrayList CellTypeBetween = null; public ArrayList CellTypeIn = null; public String FieldParameter = null; public String FieldParameterStartsWith = null; public String FieldParameterEndsWith = null; public String FieldParameterContains = null; public String FieldParameterLike = null; public ArrayList FieldParameterBetween = null; public ArrayList FieldParameterIn = null; public UUID SY_Plugin_RecID = null; public ArrayList SY_Plugin_RecIDIn = null; public Date LastSavedDateTime = null; public Date LastSavedDateTimeGreaterThanOrEqualTo = null; public Date LastSavedDateTimeGreaterThan = null; public Date LastSavedDateTimeLessThan = null; public Date LastSavedDateTimeLessThanOrEqualTo = null; public Date LastSavedDateTimeNotEqualTo = null; public ArrayList LastSavedDateTimeBetween = null; public ArrayList LastSavedDateTimeIn = null; public Integer DisplayOrder = null; public Integer DisplayOrderGreaterThanOrEqualTo = null; public Integer DisplayOrderGreaterThan = null; public Integer DisplayOrderLessThan = null; public Integer DisplayOrderLessThanOrEqualTo = null; public Integer DisplayOrderNotEqualTo = null; public ArrayList DisplayOrderBetween = null; public ArrayList DisplayOrderIn = null; public String getFieldID() { return FieldID; } public IN_SupplierWarehouseCustomFieldsQuery setFieldID(String value) { this.FieldID = value; return this; } public String getFieldIDStartsWith() { return FieldIDStartsWith; } public IN_SupplierWarehouseCustomFieldsQuery setFieldIDStartsWith(String value) { this.FieldIDStartsWith = value; return this; } public String getFieldIDEndsWith() { return FieldIDEndsWith; } public IN_SupplierWarehouseCustomFieldsQuery setFieldIDEndsWith(String value) { this.FieldIDEndsWith = value; return this; } public String getFieldIDContains() { return FieldIDContains; } public IN_SupplierWarehouseCustomFieldsQuery setFieldIDContains(String value) { this.FieldIDContains = value; return this; } public String getFieldIDLike() { return FieldIDLike; } public IN_SupplierWarehouseCustomFieldsQuery setFieldIDLike(String value) { this.FieldIDLike = value; return this; } public ArrayList getFieldIDBetween() { return FieldIDBetween; } public IN_SupplierWarehouseCustomFieldsQuery setFieldIDBetween(ArrayList value) { this.FieldIDBetween = value; return this; } public ArrayList getFieldIDIn() { return FieldIDIn; } public IN_SupplierWarehouseCustomFieldsQuery setFieldIDIn(ArrayList value) { this.FieldIDIn = value; return this; } public String getSettingName() { return SettingName; } public IN_SupplierWarehouseCustomFieldsQuery setSettingName(String value) { this.SettingName = value; return this; } public String getSettingNameStartsWith() { return SettingNameStartsWith; } public IN_SupplierWarehouseCustomFieldsQuery setSettingNameStartsWith(String value) { this.SettingNameStartsWith = value; return this; } public String getSettingNameEndsWith() { return SettingNameEndsWith; } public IN_SupplierWarehouseCustomFieldsQuery setSettingNameEndsWith(String value) { this.SettingNameEndsWith = value; return this; } public String getSettingNameContains() { return SettingNameContains; } public IN_SupplierWarehouseCustomFieldsQuery setSettingNameContains(String value) { this.SettingNameContains = value; return this; } public String getSettingNameLike() { return SettingNameLike; } public IN_SupplierWarehouseCustomFieldsQuery setSettingNameLike(String value) { this.SettingNameLike = value; return this; } public ArrayList getSettingNameBetween() { return SettingNameBetween; } public IN_SupplierWarehouseCustomFieldsQuery setSettingNameBetween(ArrayList value) { this.SettingNameBetween = value; return this; } public ArrayList getSettingNameIn() { return SettingNameIn; } public IN_SupplierWarehouseCustomFieldsQuery setSettingNameIn(ArrayList value) { this.SettingNameIn = value; return this; } public String getSettingDescription() { return SettingDescription; } public IN_SupplierWarehouseCustomFieldsQuery setSettingDescription(String value) { this.SettingDescription = value; return this; } public String getSettingDescriptionStartsWith() { return SettingDescriptionStartsWith; } public IN_SupplierWarehouseCustomFieldsQuery setSettingDescriptionStartsWith(String value) { this.SettingDescriptionStartsWith = value; return this; } public String getSettingDescriptionEndsWith() { return SettingDescriptionEndsWith; } public IN_SupplierWarehouseCustomFieldsQuery setSettingDescriptionEndsWith(String value) { this.SettingDescriptionEndsWith = value; return this; } public String getSettingDescriptionContains() { return SettingDescriptionContains; } public IN_SupplierWarehouseCustomFieldsQuery setSettingDescriptionContains(String value) { this.SettingDescriptionContains = value; return this; } public String getSettingDescriptionLike() { return SettingDescriptionLike; } public IN_SupplierWarehouseCustomFieldsQuery setSettingDescriptionLike(String value) { this.SettingDescriptionLike = value; return this; } public ArrayList getSettingDescriptionBetween() { return SettingDescriptionBetween; } public IN_SupplierWarehouseCustomFieldsQuery setSettingDescriptionBetween(ArrayList value) { this.SettingDescriptionBetween = value; return this; } public ArrayList getSettingDescriptionIn() { return SettingDescriptionIn; } public IN_SupplierWarehouseCustomFieldsQuery setSettingDescriptionIn(ArrayList value) { this.SettingDescriptionIn = value; return this; } public Integer getCellType() { return CellType; } public IN_SupplierWarehouseCustomFieldsQuery setCellType(Integer value) { this.CellType = value; return this; } public Integer getCellTypeGreaterThanOrEqualTo() { return CellTypeGreaterThanOrEqualTo; } public IN_SupplierWarehouseCustomFieldsQuery setCellTypeGreaterThanOrEqualTo(Integer value) { this.CellTypeGreaterThanOrEqualTo = value; return this; } public Integer getCellTypeGreaterThan() { return CellTypeGreaterThan; } public IN_SupplierWarehouseCustomFieldsQuery setCellTypeGreaterThan(Integer value) { this.CellTypeGreaterThan = value; return this; } public Integer getCellTypeLessThan() { return CellTypeLessThan; } public IN_SupplierWarehouseCustomFieldsQuery setCellTypeLessThan(Integer value) { this.CellTypeLessThan = value; return this; } public Integer getCellTypeLessThanOrEqualTo() { return CellTypeLessThanOrEqualTo; } public IN_SupplierWarehouseCustomFieldsQuery setCellTypeLessThanOrEqualTo(Integer value) { this.CellTypeLessThanOrEqualTo = value; return this; } public Integer getCellTypeNotEqualTo() { return CellTypeNotEqualTo; } public IN_SupplierWarehouseCustomFieldsQuery setCellTypeNotEqualTo(Integer value) { this.CellTypeNotEqualTo = value; return this; } public ArrayList getCellTypeBetween() { return CellTypeBetween; } public IN_SupplierWarehouseCustomFieldsQuery setCellTypeBetween(ArrayList value) { this.CellTypeBetween = value; return this; } public ArrayList getCellTypeIn() { return CellTypeIn; } public IN_SupplierWarehouseCustomFieldsQuery setCellTypeIn(ArrayList value) { this.CellTypeIn = value; return this; } public String getFieldParameter() { return FieldParameter; } public IN_SupplierWarehouseCustomFieldsQuery setFieldParameter(String value) { this.FieldParameter = value; return this; } public String getFieldParameterStartsWith() { return FieldParameterStartsWith; } public IN_SupplierWarehouseCustomFieldsQuery setFieldParameterStartsWith(String value) { this.FieldParameterStartsWith = value; return this; } public String getFieldParameterEndsWith() { return FieldParameterEndsWith; } public IN_SupplierWarehouseCustomFieldsQuery setFieldParameterEndsWith(String value) { this.FieldParameterEndsWith = value; return this; } public String getFieldParameterContains() { return FieldParameterContains; } public IN_SupplierWarehouseCustomFieldsQuery setFieldParameterContains(String value) { this.FieldParameterContains = value; return this; } public String getFieldParameterLike() { return FieldParameterLike; } public IN_SupplierWarehouseCustomFieldsQuery setFieldParameterLike(String value) { this.FieldParameterLike = value; return this; } public ArrayList getFieldParameterBetween() { return FieldParameterBetween; } public IN_SupplierWarehouseCustomFieldsQuery setFieldParameterBetween(ArrayList value) { this.FieldParameterBetween = value; return this; } public ArrayList getFieldParameterIn() { return FieldParameterIn; } public IN_SupplierWarehouseCustomFieldsQuery setFieldParameterIn(ArrayList value) { this.FieldParameterIn = value; return this; } public UUID getSyPluginRecID() { return SY_Plugin_RecID; } public IN_SupplierWarehouseCustomFieldsQuery setSyPluginRecID(UUID value) { this.SY_Plugin_RecID = value; return this; } public ArrayList getSyPluginRecIDIn() { return SY_Plugin_RecIDIn; } public IN_SupplierWarehouseCustomFieldsQuery setSyPluginRecIDIn(ArrayList value) { this.SY_Plugin_RecIDIn = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public IN_SupplierWarehouseCustomFieldsQuery setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getLastSavedDateTimeGreaterThanOrEqualTo() { return LastSavedDateTimeGreaterThanOrEqualTo; } public IN_SupplierWarehouseCustomFieldsQuery setLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.LastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeGreaterThan() { return LastSavedDateTimeGreaterThan; } public IN_SupplierWarehouseCustomFieldsQuery setLastSavedDateTimeGreaterThan(Date value) { this.LastSavedDateTimeGreaterThan = value; return this; } public Date getLastSavedDateTimeLessThan() { return LastSavedDateTimeLessThan; } public IN_SupplierWarehouseCustomFieldsQuery setLastSavedDateTimeLessThan(Date value) { this.LastSavedDateTimeLessThan = value; return this; } public Date getLastSavedDateTimeLessThanOrEqualTo() { return LastSavedDateTimeLessThanOrEqualTo; } public IN_SupplierWarehouseCustomFieldsQuery setLastSavedDateTimeLessThanOrEqualTo(Date value) { this.LastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeNotEqualTo() { return LastSavedDateTimeNotEqualTo; } public IN_SupplierWarehouseCustomFieldsQuery setLastSavedDateTimeNotEqualTo(Date value) { this.LastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getLastSavedDateTimeBetween() { return LastSavedDateTimeBetween; } public IN_SupplierWarehouseCustomFieldsQuery setLastSavedDateTimeBetween(ArrayList value) { this.LastSavedDateTimeBetween = value; return this; } public ArrayList getLastSavedDateTimeIn() { return LastSavedDateTimeIn; } public IN_SupplierWarehouseCustomFieldsQuery setLastSavedDateTimeIn(ArrayList value) { this.LastSavedDateTimeIn = value; return this; } public Integer getDisplayOrder() { return DisplayOrder; } public IN_SupplierWarehouseCustomFieldsQuery setDisplayOrder(Integer value) { this.DisplayOrder = value; return this; } public Integer getDisplayOrderGreaterThanOrEqualTo() { return DisplayOrderGreaterThanOrEqualTo; } public IN_SupplierWarehouseCustomFieldsQuery setDisplayOrderGreaterThanOrEqualTo(Integer value) { this.DisplayOrderGreaterThanOrEqualTo = value; return this; } public Integer getDisplayOrderGreaterThan() { return DisplayOrderGreaterThan; } public IN_SupplierWarehouseCustomFieldsQuery setDisplayOrderGreaterThan(Integer value) { this.DisplayOrderGreaterThan = value; return this; } public Integer getDisplayOrderLessThan() { return DisplayOrderLessThan; } public IN_SupplierWarehouseCustomFieldsQuery setDisplayOrderLessThan(Integer value) { this.DisplayOrderLessThan = value; return this; } public Integer getDisplayOrderLessThanOrEqualTo() { return DisplayOrderLessThanOrEqualTo; } public IN_SupplierWarehouseCustomFieldsQuery setDisplayOrderLessThanOrEqualTo(Integer value) { this.DisplayOrderLessThanOrEqualTo = value; return this; } public Integer getDisplayOrderNotEqualTo() { return DisplayOrderNotEqualTo; } public IN_SupplierWarehouseCustomFieldsQuery setDisplayOrderNotEqualTo(Integer value) { this.DisplayOrderNotEqualTo = value; return this; } public ArrayList getDisplayOrderBetween() { return DisplayOrderBetween; } public IN_SupplierWarehouseCustomFieldsQuery setDisplayOrderBetween(ArrayList value) { this.DisplayOrderBetween = value; return this; } public ArrayList getDisplayOrderIn() { return DisplayOrderIn; } public IN_SupplierWarehouseCustomFieldsQuery setDisplayOrderIn(ArrayList value) { this.DisplayOrderIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class IN_SupplierWarehouseCustomValuesQuery extends QueryDb implements IReturn> { public String RecID = null; public String RecIDStartsWith = null; public String RecIDEndsWith = null; public String RecIDContains = null; public String RecIDLike = null; public ArrayList RecIDBetween = null; public ArrayList RecIDIn = null; public String InvSuppSourceID = null; public String InvSuppSourceIDStartsWith = null; public String InvSuppSourceIDEndsWith = null; public String InvSuppSourceIDContains = null; public String InvSuppSourceIDLike = null; public ArrayList InvSuppSourceIDBetween = null; public ArrayList InvSuppSourceIDIn = null; public String FieldID = null; public String FieldIDStartsWith = null; public String FieldIDEndsWith = null; public String FieldIDContains = null; public String FieldIDLike = null; public ArrayList FieldIDBetween = null; public ArrayList FieldIDIn = null; public String Contents = null; public String ContentsStartsWith = null; public String ContentsEndsWith = null; public String ContentsContains = null; public String ContentsLike = null; public ArrayList ContentsBetween = null; public ArrayList ContentsIn = null; public Date LastSavedDateTime = null; public Date LastSavedDateTimeGreaterThanOrEqualTo = null; public Date LastSavedDateTimeGreaterThan = null; public Date LastSavedDateTimeLessThan = null; public Date LastSavedDateTimeLessThanOrEqualTo = null; public Date LastSavedDateTimeNotEqualTo = null; public ArrayList LastSavedDateTimeBetween = null; public ArrayList LastSavedDateTimeIn = null; public String getRecID() { return RecID; } public IN_SupplierWarehouseCustomValuesQuery setRecID(String value) { this.RecID = value; return this; } public String getRecIDStartsWith() { return RecIDStartsWith; } public IN_SupplierWarehouseCustomValuesQuery setRecIDStartsWith(String value) { this.RecIDStartsWith = value; return this; } public String getRecIDEndsWith() { return RecIDEndsWith; } public IN_SupplierWarehouseCustomValuesQuery setRecIDEndsWith(String value) { this.RecIDEndsWith = value; return this; } public String getRecIDContains() { return RecIDContains; } public IN_SupplierWarehouseCustomValuesQuery setRecIDContains(String value) { this.RecIDContains = value; return this; } public String getRecIDLike() { return RecIDLike; } public IN_SupplierWarehouseCustomValuesQuery setRecIDLike(String value) { this.RecIDLike = value; return this; } public ArrayList getRecIDBetween() { return RecIDBetween; } public IN_SupplierWarehouseCustomValuesQuery setRecIDBetween(ArrayList value) { this.RecIDBetween = value; return this; } public ArrayList getRecIDIn() { return RecIDIn; } public IN_SupplierWarehouseCustomValuesQuery setRecIDIn(ArrayList value) { this.RecIDIn = value; return this; } public String getInvSuppSourceID() { return InvSuppSourceID; } public IN_SupplierWarehouseCustomValuesQuery setInvSuppSourceID(String value) { this.InvSuppSourceID = value; return this; } public String getInvSuppSourceIDStartsWith() { return InvSuppSourceIDStartsWith; } public IN_SupplierWarehouseCustomValuesQuery setInvSuppSourceIDStartsWith(String value) { this.InvSuppSourceIDStartsWith = value; return this; } public String getInvSuppSourceIDEndsWith() { return InvSuppSourceIDEndsWith; } public IN_SupplierWarehouseCustomValuesQuery setInvSuppSourceIDEndsWith(String value) { this.InvSuppSourceIDEndsWith = value; return this; } public String getInvSuppSourceIDContains() { return InvSuppSourceIDContains; } public IN_SupplierWarehouseCustomValuesQuery setInvSuppSourceIDContains(String value) { this.InvSuppSourceIDContains = value; return this; } public String getInvSuppSourceIDLike() { return InvSuppSourceIDLike; } public IN_SupplierWarehouseCustomValuesQuery setInvSuppSourceIDLike(String value) { this.InvSuppSourceIDLike = value; return this; } public ArrayList getInvSuppSourceIDBetween() { return InvSuppSourceIDBetween; } public IN_SupplierWarehouseCustomValuesQuery setInvSuppSourceIDBetween(ArrayList value) { this.InvSuppSourceIDBetween = value; return this; } public ArrayList getInvSuppSourceIDIn() { return InvSuppSourceIDIn; } public IN_SupplierWarehouseCustomValuesQuery setInvSuppSourceIDIn(ArrayList value) { this.InvSuppSourceIDIn = value; return this; } public String getFieldID() { return FieldID; } public IN_SupplierWarehouseCustomValuesQuery setFieldID(String value) { this.FieldID = value; return this; } public String getFieldIDStartsWith() { return FieldIDStartsWith; } public IN_SupplierWarehouseCustomValuesQuery setFieldIDStartsWith(String value) { this.FieldIDStartsWith = value; return this; } public String getFieldIDEndsWith() { return FieldIDEndsWith; } public IN_SupplierWarehouseCustomValuesQuery setFieldIDEndsWith(String value) { this.FieldIDEndsWith = value; return this; } public String getFieldIDContains() { return FieldIDContains; } public IN_SupplierWarehouseCustomValuesQuery setFieldIDContains(String value) { this.FieldIDContains = value; return this; } public String getFieldIDLike() { return FieldIDLike; } public IN_SupplierWarehouseCustomValuesQuery setFieldIDLike(String value) { this.FieldIDLike = value; return this; } public ArrayList getFieldIDBetween() { return FieldIDBetween; } public IN_SupplierWarehouseCustomValuesQuery setFieldIDBetween(ArrayList value) { this.FieldIDBetween = value; return this; } public ArrayList getFieldIDIn() { return FieldIDIn; } public IN_SupplierWarehouseCustomValuesQuery setFieldIDIn(ArrayList value) { this.FieldIDIn = value; return this; } public String getContents() { return Contents; } public IN_SupplierWarehouseCustomValuesQuery setContents(String value) { this.Contents = value; return this; } public String getContentsStartsWith() { return ContentsStartsWith; } public IN_SupplierWarehouseCustomValuesQuery setContentsStartsWith(String value) { this.ContentsStartsWith = value; return this; } public String getContentsEndsWith() { return ContentsEndsWith; } public IN_SupplierWarehouseCustomValuesQuery setContentsEndsWith(String value) { this.ContentsEndsWith = value; return this; } public String getContentsContains() { return ContentsContains; } public IN_SupplierWarehouseCustomValuesQuery setContentsContains(String value) { this.ContentsContains = value; return this; } public String getContentsLike() { return ContentsLike; } public IN_SupplierWarehouseCustomValuesQuery setContentsLike(String value) { this.ContentsLike = value; return this; } public ArrayList getContentsBetween() { return ContentsBetween; } public IN_SupplierWarehouseCustomValuesQuery setContentsBetween(ArrayList value) { this.ContentsBetween = value; return this; } public ArrayList getContentsIn() { return ContentsIn; } public IN_SupplierWarehouseCustomValuesQuery setContentsIn(ArrayList value) { this.ContentsIn = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public IN_SupplierWarehouseCustomValuesQuery setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getLastSavedDateTimeGreaterThanOrEqualTo() { return LastSavedDateTimeGreaterThanOrEqualTo; } public IN_SupplierWarehouseCustomValuesQuery setLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.LastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeGreaterThan() { return LastSavedDateTimeGreaterThan; } public IN_SupplierWarehouseCustomValuesQuery setLastSavedDateTimeGreaterThan(Date value) { this.LastSavedDateTimeGreaterThan = value; return this; } public Date getLastSavedDateTimeLessThan() { return LastSavedDateTimeLessThan; } public IN_SupplierWarehouseCustomValuesQuery setLastSavedDateTimeLessThan(Date value) { this.LastSavedDateTimeLessThan = value; return this; } public Date getLastSavedDateTimeLessThanOrEqualTo() { return LastSavedDateTimeLessThanOrEqualTo; } public IN_SupplierWarehouseCustomValuesQuery setLastSavedDateTimeLessThanOrEqualTo(Date value) { this.LastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeNotEqualTo() { return LastSavedDateTimeNotEqualTo; } public IN_SupplierWarehouseCustomValuesQuery setLastSavedDateTimeNotEqualTo(Date value) { this.LastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getLastSavedDateTimeBetween() { return LastSavedDateTimeBetween; } public IN_SupplierWarehouseCustomValuesQuery setLastSavedDateTimeBetween(ArrayList value) { this.LastSavedDateTimeBetween = value; return this; } public ArrayList getLastSavedDateTimeIn() { return LastSavedDateTimeIn; } public IN_SupplierWarehouseCustomValuesQuery setLastSavedDateTimeIn(ArrayList value) { this.LastSavedDateTimeIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @Route(Path="/Queries/IN_Transfer", Verbs="GET") @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class IN_TransferQuery extends QueryDb implements IReturn> { public String TransferID = null; public String TransferIDStartsWith = null; public String TransferIDEndsWith = null; public String TransferIDContains = null; public String TransferIDLike = null; public ArrayList TransferIDBetween = null; public ArrayList TransferIDIn = null; public Date LastSavedDateTime = null; public Date LastSavedDateTimeGreaterThanOrEqualTo = null; public Date LastSavedDateTimeGreaterThan = null; public Date LastSavedDateTimeLessThan = null; public Date LastSavedDateTimeLessThanOrEqualTo = null; public Date LastSavedDateTimeNotEqualTo = null; public ArrayList LastSavedDateTimeBetween = null; public ArrayList LastSavedDateTimeIn = null; public String TransferNo = null; public String TransferNoStartsWith = null; public String TransferNoEndsWith = null; public String TransferNoContains = null; public String TransferNoLike = null; public ArrayList TransferNoBetween = null; public ArrayList TransferNoIn = null; public Date TransferDate = null; public Date TransferDateGreaterThanOrEqualTo = null; public Date TransferDateGreaterThan = null; public Date TransferDateLessThan = null; public Date TransferDateLessThanOrEqualTo = null; public Date TransferDateNotEqualTo = null; public ArrayList TransferDateBetween = null; public ArrayList TransferDateIn = null; public String Reference = null; public String ReferenceStartsWith = null; public String ReferenceEndsWith = null; public String ReferenceContains = null; public String ReferenceLike = null; public ArrayList ReferenceBetween = null; public ArrayList ReferenceIn = null; public String IN_LogicalID = null; public String IN_LogicalIDStartsWith = null; public String IN_LogicalIDEndsWith = null; public String IN_LogicalIDContains = null; public String IN_LogicalIDLike = null; public ArrayList IN_LogicalIDBetween = null; public ArrayList IN_LogicalIDIn = null; public Short Status = null; public Short StatusGreaterThanOrEqualTo = null; public Short StatusGreaterThan = null; public Short StatusLessThan = null; public Short StatusLessThanOrEqualTo = null; public Short StatusNotEqualTo = null; public ArrayList StatusBetween = null; public ArrayList StatusIn = null; public Date CreatedDateTime = null; public Date CreatedDateTimeGreaterThanOrEqualTo = null; public Date CreatedDateTimeGreaterThan = null; public Date CreatedDateTimeLessThan = null; public Date CreatedDateTimeLessThanOrEqualTo = null; public Date CreatedDateTimeNotEqualTo = null; public ArrayList CreatedDateTimeBetween = null; public ArrayList CreatedDateTimeIn = null; public String CreatedByStaffID = null; public String CreatedByStaffIDStartsWith = null; public String CreatedByStaffIDEndsWith = null; public String CreatedByStaffIDContains = null; public String CreatedByStaffIDLike = null; public ArrayList CreatedByStaffIDBetween = null; public ArrayList CreatedByStaffIDIn = null; public String LastSavedByStaffID = null; public String LastSavedByStaffIDStartsWith = null; public String LastSavedByStaffIDEndsWith = null; public String LastSavedByStaffIDContains = null; public String LastSavedByStaffIDLike = null; public ArrayList LastSavedByStaffIDBetween = null; public ArrayList LastSavedByStaffIDIn = null; public String IN_TransferReasons_RecID = null; public String IN_TransferReasons_RecIDStartsWith = null; public String IN_TransferReasons_RecIDEndsWith = null; public String IN_TransferReasons_RecIDContains = null; public String IN_TransferReasons_RecIDLike = null; public ArrayList IN_TransferReasons_RecIDBetween = null; public ArrayList IN_TransferReasons_RecIDIn = null; public String getTransferID() { return TransferID; } public IN_TransferQuery setTransferID(String value) { this.TransferID = value; return this; } public String getTransferIDStartsWith() { return TransferIDStartsWith; } public IN_TransferQuery setTransferIDStartsWith(String value) { this.TransferIDStartsWith = value; return this; } public String getTransferIDEndsWith() { return TransferIDEndsWith; } public IN_TransferQuery setTransferIDEndsWith(String value) { this.TransferIDEndsWith = value; return this; } public String getTransferIDContains() { return TransferIDContains; } public IN_TransferQuery setTransferIDContains(String value) { this.TransferIDContains = value; return this; } public String getTransferIDLike() { return TransferIDLike; } public IN_TransferQuery setTransferIDLike(String value) { this.TransferIDLike = value; return this; } public ArrayList getTransferIDBetween() { return TransferIDBetween; } public IN_TransferQuery setTransferIDBetween(ArrayList value) { this.TransferIDBetween = value; return this; } public ArrayList getTransferIDIn() { return TransferIDIn; } public IN_TransferQuery setTransferIDIn(ArrayList value) { this.TransferIDIn = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public IN_TransferQuery setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getLastSavedDateTimeGreaterThanOrEqualTo() { return LastSavedDateTimeGreaterThanOrEqualTo; } public IN_TransferQuery setLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.LastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeGreaterThan() { return LastSavedDateTimeGreaterThan; } public IN_TransferQuery setLastSavedDateTimeGreaterThan(Date value) { this.LastSavedDateTimeGreaterThan = value; return this; } public Date getLastSavedDateTimeLessThan() { return LastSavedDateTimeLessThan; } public IN_TransferQuery setLastSavedDateTimeLessThan(Date value) { this.LastSavedDateTimeLessThan = value; return this; } public Date getLastSavedDateTimeLessThanOrEqualTo() { return LastSavedDateTimeLessThanOrEqualTo; } public IN_TransferQuery setLastSavedDateTimeLessThanOrEqualTo(Date value) { this.LastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeNotEqualTo() { return LastSavedDateTimeNotEqualTo; } public IN_TransferQuery setLastSavedDateTimeNotEqualTo(Date value) { this.LastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getLastSavedDateTimeBetween() { return LastSavedDateTimeBetween; } public IN_TransferQuery setLastSavedDateTimeBetween(ArrayList value) { this.LastSavedDateTimeBetween = value; return this; } public ArrayList getLastSavedDateTimeIn() { return LastSavedDateTimeIn; } public IN_TransferQuery setLastSavedDateTimeIn(ArrayList value) { this.LastSavedDateTimeIn = value; return this; } public String getTransferNo() { return TransferNo; } public IN_TransferQuery setTransferNo(String value) { this.TransferNo = value; return this; } public String getTransferNoStartsWith() { return TransferNoStartsWith; } public IN_TransferQuery setTransferNoStartsWith(String value) { this.TransferNoStartsWith = value; return this; } public String getTransferNoEndsWith() { return TransferNoEndsWith; } public IN_TransferQuery setTransferNoEndsWith(String value) { this.TransferNoEndsWith = value; return this; } public String getTransferNoContains() { return TransferNoContains; } public IN_TransferQuery setTransferNoContains(String value) { this.TransferNoContains = value; return this; } public String getTransferNoLike() { return TransferNoLike; } public IN_TransferQuery setTransferNoLike(String value) { this.TransferNoLike = value; return this; } public ArrayList getTransferNoBetween() { return TransferNoBetween; } public IN_TransferQuery setTransferNoBetween(ArrayList value) { this.TransferNoBetween = value; return this; } public ArrayList getTransferNoIn() { return TransferNoIn; } public IN_TransferQuery setTransferNoIn(ArrayList value) { this.TransferNoIn = value; return this; } public Date getTransferDate() { return TransferDate; } public IN_TransferQuery setTransferDate(Date value) { this.TransferDate = value; return this; } public Date getTransferDateGreaterThanOrEqualTo() { return TransferDateGreaterThanOrEqualTo; } public IN_TransferQuery setTransferDateGreaterThanOrEqualTo(Date value) { this.TransferDateGreaterThanOrEqualTo = value; return this; } public Date getTransferDateGreaterThan() { return TransferDateGreaterThan; } public IN_TransferQuery setTransferDateGreaterThan(Date value) { this.TransferDateGreaterThan = value; return this; } public Date getTransferDateLessThan() { return TransferDateLessThan; } public IN_TransferQuery setTransferDateLessThan(Date value) { this.TransferDateLessThan = value; return this; } public Date getTransferDateLessThanOrEqualTo() { return TransferDateLessThanOrEqualTo; } public IN_TransferQuery setTransferDateLessThanOrEqualTo(Date value) { this.TransferDateLessThanOrEqualTo = value; return this; } public Date getTransferDateNotEqualTo() { return TransferDateNotEqualTo; } public IN_TransferQuery setTransferDateNotEqualTo(Date value) { this.TransferDateNotEqualTo = value; return this; } public ArrayList getTransferDateBetween() { return TransferDateBetween; } public IN_TransferQuery setTransferDateBetween(ArrayList value) { this.TransferDateBetween = value; return this; } public ArrayList getTransferDateIn() { return TransferDateIn; } public IN_TransferQuery setTransferDateIn(ArrayList value) { this.TransferDateIn = value; return this; } public String getReference() { return Reference; } public IN_TransferQuery setReference(String value) { this.Reference = value; return this; } public String getReferenceStartsWith() { return ReferenceStartsWith; } public IN_TransferQuery setReferenceStartsWith(String value) { this.ReferenceStartsWith = value; return this; } public String getReferenceEndsWith() { return ReferenceEndsWith; } public IN_TransferQuery setReferenceEndsWith(String value) { this.ReferenceEndsWith = value; return this; } public String getReferenceContains() { return ReferenceContains; } public IN_TransferQuery setReferenceContains(String value) { this.ReferenceContains = value; return this; } public String getReferenceLike() { return ReferenceLike; } public IN_TransferQuery setReferenceLike(String value) { this.ReferenceLike = value; return this; } public ArrayList getReferenceBetween() { return ReferenceBetween; } public IN_TransferQuery setReferenceBetween(ArrayList value) { this.ReferenceBetween = value; return this; } public ArrayList getReferenceIn() { return ReferenceIn; } public IN_TransferQuery setReferenceIn(ArrayList value) { this.ReferenceIn = value; return this; } public String getInLogicalID() { return IN_LogicalID; } public IN_TransferQuery setInLogicalID(String value) { this.IN_LogicalID = value; return this; } public String getInLogicalIDStartsWith() { return IN_LogicalIDStartsWith; } public IN_TransferQuery setInLogicalIDStartsWith(String value) { this.IN_LogicalIDStartsWith = value; return this; } public String getInLogicalIDEndsWith() { return IN_LogicalIDEndsWith; } public IN_TransferQuery setInLogicalIDEndsWith(String value) { this.IN_LogicalIDEndsWith = value; return this; } public String getInLogicalIDContains() { return IN_LogicalIDContains; } public IN_TransferQuery setInLogicalIDContains(String value) { this.IN_LogicalIDContains = value; return this; } public String getInLogicalIDLike() { return IN_LogicalIDLike; } public IN_TransferQuery setInLogicalIDLike(String value) { this.IN_LogicalIDLike = value; return this; } public ArrayList getInLogicalIDBetween() { return IN_LogicalIDBetween; } public IN_TransferQuery setInLogicalIDBetween(ArrayList value) { this.IN_LogicalIDBetween = value; return this; } public ArrayList getInLogicalIDIn() { return IN_LogicalIDIn; } public IN_TransferQuery setInLogicalIDIn(ArrayList value) { this.IN_LogicalIDIn = value; return this; } public Short getStatus() { return Status; } public IN_TransferQuery setStatus(Short value) { this.Status = value; return this; } public Short getStatusGreaterThanOrEqualTo() { return StatusGreaterThanOrEqualTo; } public IN_TransferQuery setStatusGreaterThanOrEqualTo(Short value) { this.StatusGreaterThanOrEqualTo = value; return this; } public Short getStatusGreaterThan() { return StatusGreaterThan; } public IN_TransferQuery setStatusGreaterThan(Short value) { this.StatusGreaterThan = value; return this; } public Short getStatusLessThan() { return StatusLessThan; } public IN_TransferQuery setStatusLessThan(Short value) { this.StatusLessThan = value; return this; } public Short getStatusLessThanOrEqualTo() { return StatusLessThanOrEqualTo; } public IN_TransferQuery setStatusLessThanOrEqualTo(Short value) { this.StatusLessThanOrEqualTo = value; return this; } public Short getStatusNotEqualTo() { return StatusNotEqualTo; } public IN_TransferQuery setStatusNotEqualTo(Short value) { this.StatusNotEqualTo = value; return this; } public ArrayList getStatusBetween() { return StatusBetween; } public IN_TransferQuery setStatusBetween(ArrayList value) { this.StatusBetween = value; return this; } public ArrayList getStatusIn() { return StatusIn; } public IN_TransferQuery setStatusIn(ArrayList value) { this.StatusIn = value; return this; } public Date getCreatedDateTime() { return CreatedDateTime; } public IN_TransferQuery setCreatedDateTime(Date value) { this.CreatedDateTime = value; return this; } public Date getCreatedDateTimeGreaterThanOrEqualTo() { return CreatedDateTimeGreaterThanOrEqualTo; } public IN_TransferQuery setCreatedDateTimeGreaterThanOrEqualTo(Date value) { this.CreatedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getCreatedDateTimeGreaterThan() { return CreatedDateTimeGreaterThan; } public IN_TransferQuery setCreatedDateTimeGreaterThan(Date value) { this.CreatedDateTimeGreaterThan = value; return this; } public Date getCreatedDateTimeLessThan() { return CreatedDateTimeLessThan; } public IN_TransferQuery setCreatedDateTimeLessThan(Date value) { this.CreatedDateTimeLessThan = value; return this; } public Date getCreatedDateTimeLessThanOrEqualTo() { return CreatedDateTimeLessThanOrEqualTo; } public IN_TransferQuery setCreatedDateTimeLessThanOrEqualTo(Date value) { this.CreatedDateTimeLessThanOrEqualTo = value; return this; } public Date getCreatedDateTimeNotEqualTo() { return CreatedDateTimeNotEqualTo; } public IN_TransferQuery setCreatedDateTimeNotEqualTo(Date value) { this.CreatedDateTimeNotEqualTo = value; return this; } public ArrayList getCreatedDateTimeBetween() { return CreatedDateTimeBetween; } public IN_TransferQuery setCreatedDateTimeBetween(ArrayList value) { this.CreatedDateTimeBetween = value; return this; } public ArrayList getCreatedDateTimeIn() { return CreatedDateTimeIn; } public IN_TransferQuery setCreatedDateTimeIn(ArrayList value) { this.CreatedDateTimeIn = value; return this; } public String getCreatedByStaffID() { return CreatedByStaffID; } public IN_TransferQuery setCreatedByStaffID(String value) { this.CreatedByStaffID = value; return this; } public String getCreatedByStaffIDStartsWith() { return CreatedByStaffIDStartsWith; } public IN_TransferQuery setCreatedByStaffIDStartsWith(String value) { this.CreatedByStaffIDStartsWith = value; return this; } public String getCreatedByStaffIDEndsWith() { return CreatedByStaffIDEndsWith; } public IN_TransferQuery setCreatedByStaffIDEndsWith(String value) { this.CreatedByStaffIDEndsWith = value; return this; } public String getCreatedByStaffIDContains() { return CreatedByStaffIDContains; } public IN_TransferQuery setCreatedByStaffIDContains(String value) { this.CreatedByStaffIDContains = value; return this; } public String getCreatedByStaffIDLike() { return CreatedByStaffIDLike; } public IN_TransferQuery setCreatedByStaffIDLike(String value) { this.CreatedByStaffIDLike = value; return this; } public ArrayList getCreatedByStaffIDBetween() { return CreatedByStaffIDBetween; } public IN_TransferQuery setCreatedByStaffIDBetween(ArrayList value) { this.CreatedByStaffIDBetween = value; return this; } public ArrayList getCreatedByStaffIDIn() { return CreatedByStaffIDIn; } public IN_TransferQuery setCreatedByStaffIDIn(ArrayList value) { this.CreatedByStaffIDIn = value; return this; } public String getLastSavedByStaffID() { return LastSavedByStaffID; } public IN_TransferQuery setLastSavedByStaffID(String value) { this.LastSavedByStaffID = value; return this; } public String getLastSavedByStaffIDStartsWith() { return LastSavedByStaffIDStartsWith; } public IN_TransferQuery setLastSavedByStaffIDStartsWith(String value) { this.LastSavedByStaffIDStartsWith = value; return this; } public String getLastSavedByStaffIDEndsWith() { return LastSavedByStaffIDEndsWith; } public IN_TransferQuery setLastSavedByStaffIDEndsWith(String value) { this.LastSavedByStaffIDEndsWith = value; return this; } public String getLastSavedByStaffIDContains() { return LastSavedByStaffIDContains; } public IN_TransferQuery setLastSavedByStaffIDContains(String value) { this.LastSavedByStaffIDContains = value; return this; } public String getLastSavedByStaffIDLike() { return LastSavedByStaffIDLike; } public IN_TransferQuery setLastSavedByStaffIDLike(String value) { this.LastSavedByStaffIDLike = value; return this; } public ArrayList getLastSavedByStaffIDBetween() { return LastSavedByStaffIDBetween; } public IN_TransferQuery setLastSavedByStaffIDBetween(ArrayList value) { this.LastSavedByStaffIDBetween = value; return this; } public ArrayList getLastSavedByStaffIDIn() { return LastSavedByStaffIDIn; } public IN_TransferQuery setLastSavedByStaffIDIn(ArrayList value) { this.LastSavedByStaffIDIn = value; return this; } public String getInTransferReasonsRecID() { return IN_TransferReasons_RecID; } public IN_TransferQuery setInTransferReasonsRecID(String value) { this.IN_TransferReasons_RecID = value; return this; } public String getInTransferReasonsRecIDStartsWith() { return IN_TransferReasons_RecIDStartsWith; } public IN_TransferQuery setInTransferReasonsRecIDStartsWith(String value) { this.IN_TransferReasons_RecIDStartsWith = value; return this; } public String getInTransferReasonsRecIDEndsWith() { return IN_TransferReasons_RecIDEndsWith; } public IN_TransferQuery setInTransferReasonsRecIDEndsWith(String value) { this.IN_TransferReasons_RecIDEndsWith = value; return this; } public String getInTransferReasonsRecIDContains() { return IN_TransferReasons_RecIDContains; } public IN_TransferQuery setInTransferReasonsRecIDContains(String value) { this.IN_TransferReasons_RecIDContains = value; return this; } public String getInTransferReasonsRecIDLike() { return IN_TransferReasons_RecIDLike; } public IN_TransferQuery setInTransferReasonsRecIDLike(String value) { this.IN_TransferReasons_RecIDLike = value; return this; } public ArrayList getInTransferReasonsRecIDBetween() { return IN_TransferReasons_RecIDBetween; } public IN_TransferQuery setInTransferReasonsRecIDBetween(ArrayList value) { this.IN_TransferReasons_RecIDBetween = value; return this; } public ArrayList getInTransferReasonsRecIDIn() { return IN_TransferReasons_RecIDIn; } public IN_TransferQuery setInTransferReasonsRecIDIn(ArrayList value) { this.IN_TransferReasons_RecIDIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class IN_TransferCustomSettingQuery extends QueryDb implements IReturn> { public String SettingID = null; public String SettingIDStartsWith = null; public String SettingIDEndsWith = null; public String SettingIDContains = null; public String SettingIDLike = null; public ArrayList SettingIDBetween = null; public ArrayList SettingIDIn = null; public Date LastSavedDateTime = null; public Date LastSavedDateTimeGreaterThanOrEqualTo = null; public Date LastSavedDateTimeGreaterThan = null; public Date LastSavedDateTimeLessThan = null; public Date LastSavedDateTimeLessThanOrEqualTo = null; public Date LastSavedDateTimeNotEqualTo = null; public ArrayList LastSavedDateTimeBetween = null; public ArrayList LastSavedDateTimeIn = null; public String SettingDescription = null; public String SettingDescriptionStartsWith = null; public String SettingDescriptionEndsWith = null; public String SettingDescriptionContains = null; public String SettingDescriptionLike = null; public ArrayList SettingDescriptionBetween = null; public ArrayList SettingDescriptionIn = null; public String SettingName = null; public String SettingNameStartsWith = null; public String SettingNameEndsWith = null; public String SettingNameContains = null; public String SettingNameLike = null; public ArrayList SettingNameBetween = null; public ArrayList SettingNameIn = null; public BigDecimal DisplayOrder = null; public BigDecimal DisplayOrderGreaterThanOrEqualTo = null; public BigDecimal DisplayOrderGreaterThan = null; public BigDecimal DisplayOrderLessThan = null; public BigDecimal DisplayOrderLessThanOrEqualTo = null; public BigDecimal DisplayOrderNotEqualTo = null; public ArrayList DisplayOrderBetween = null; public ArrayList DisplayOrderIn = null; public Short CellType = null; public Short CellTypeGreaterThanOrEqualTo = null; public Short CellTypeGreaterThan = null; public Short CellTypeLessThan = null; public Short CellTypeLessThanOrEqualTo = null; public Short CellTypeNotEqualTo = null; public ArrayList CellTypeBetween = null; public ArrayList CellTypeIn = null; public String ScriptFormatCell = null; public String ScriptFormatCellStartsWith = null; public String ScriptFormatCellEndsWith = null; public String ScriptFormatCellContains = null; public String ScriptFormatCellLike = null; public ArrayList ScriptFormatCellBetween = null; public ArrayList ScriptFormatCellIn = null; public String ScriptButtonClicked = null; public String ScriptButtonClickedStartsWith = null; public String ScriptButtonClickedEndsWith = null; public String ScriptButtonClickedContains = null; public String ScriptButtonClickedLike = null; public ArrayList ScriptButtonClickedBetween = null; public ArrayList ScriptButtonClickedIn = null; public String ScriptReadData = null; public String ScriptReadDataStartsWith = null; public String ScriptReadDataEndsWith = null; public String ScriptReadDataContains = null; public String ScriptReadDataLike = null; public ArrayList ScriptReadDataBetween = null; public ArrayList ScriptReadDataIn = null; public UUID SY_Plugin_RecID = null; public ArrayList SY_Plugin_RecIDIn = null; public String getSettingID() { return SettingID; } public IN_TransferCustomSettingQuery setSettingID(String value) { this.SettingID = value; return this; } public String getSettingIDStartsWith() { return SettingIDStartsWith; } public IN_TransferCustomSettingQuery setSettingIDStartsWith(String value) { this.SettingIDStartsWith = value; return this; } public String getSettingIDEndsWith() { return SettingIDEndsWith; } public IN_TransferCustomSettingQuery setSettingIDEndsWith(String value) { this.SettingIDEndsWith = value; return this; } public String getSettingIDContains() { return SettingIDContains; } public IN_TransferCustomSettingQuery setSettingIDContains(String value) { this.SettingIDContains = value; return this; } public String getSettingIDLike() { return SettingIDLike; } public IN_TransferCustomSettingQuery setSettingIDLike(String value) { this.SettingIDLike = value; return this; } public ArrayList getSettingIDBetween() { return SettingIDBetween; } public IN_TransferCustomSettingQuery setSettingIDBetween(ArrayList value) { this.SettingIDBetween = value; return this; } public ArrayList getSettingIDIn() { return SettingIDIn; } public IN_TransferCustomSettingQuery setSettingIDIn(ArrayList value) { this.SettingIDIn = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public IN_TransferCustomSettingQuery setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getLastSavedDateTimeGreaterThanOrEqualTo() { return LastSavedDateTimeGreaterThanOrEqualTo; } public IN_TransferCustomSettingQuery setLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.LastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeGreaterThan() { return LastSavedDateTimeGreaterThan; } public IN_TransferCustomSettingQuery setLastSavedDateTimeGreaterThan(Date value) { this.LastSavedDateTimeGreaterThan = value; return this; } public Date getLastSavedDateTimeLessThan() { return LastSavedDateTimeLessThan; } public IN_TransferCustomSettingQuery setLastSavedDateTimeLessThan(Date value) { this.LastSavedDateTimeLessThan = value; return this; } public Date getLastSavedDateTimeLessThanOrEqualTo() { return LastSavedDateTimeLessThanOrEqualTo; } public IN_TransferCustomSettingQuery setLastSavedDateTimeLessThanOrEqualTo(Date value) { this.LastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeNotEqualTo() { return LastSavedDateTimeNotEqualTo; } public IN_TransferCustomSettingQuery setLastSavedDateTimeNotEqualTo(Date value) { this.LastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getLastSavedDateTimeBetween() { return LastSavedDateTimeBetween; } public IN_TransferCustomSettingQuery setLastSavedDateTimeBetween(ArrayList value) { this.LastSavedDateTimeBetween = value; return this; } public ArrayList getLastSavedDateTimeIn() { return LastSavedDateTimeIn; } public IN_TransferCustomSettingQuery setLastSavedDateTimeIn(ArrayList value) { this.LastSavedDateTimeIn = value; return this; } public String getSettingDescription() { return SettingDescription; } public IN_TransferCustomSettingQuery setSettingDescription(String value) { this.SettingDescription = value; return this; } public String getSettingDescriptionStartsWith() { return SettingDescriptionStartsWith; } public IN_TransferCustomSettingQuery setSettingDescriptionStartsWith(String value) { this.SettingDescriptionStartsWith = value; return this; } public String getSettingDescriptionEndsWith() { return SettingDescriptionEndsWith; } public IN_TransferCustomSettingQuery setSettingDescriptionEndsWith(String value) { this.SettingDescriptionEndsWith = value; return this; } public String getSettingDescriptionContains() { return SettingDescriptionContains; } public IN_TransferCustomSettingQuery setSettingDescriptionContains(String value) { this.SettingDescriptionContains = value; return this; } public String getSettingDescriptionLike() { return SettingDescriptionLike; } public IN_TransferCustomSettingQuery setSettingDescriptionLike(String value) { this.SettingDescriptionLike = value; return this; } public ArrayList getSettingDescriptionBetween() { return SettingDescriptionBetween; } public IN_TransferCustomSettingQuery setSettingDescriptionBetween(ArrayList value) { this.SettingDescriptionBetween = value; return this; } public ArrayList getSettingDescriptionIn() { return SettingDescriptionIn; } public IN_TransferCustomSettingQuery setSettingDescriptionIn(ArrayList value) { this.SettingDescriptionIn = value; return this; } public String getSettingName() { return SettingName; } public IN_TransferCustomSettingQuery setSettingName(String value) { this.SettingName = value; return this; } public String getSettingNameStartsWith() { return SettingNameStartsWith; } public IN_TransferCustomSettingQuery setSettingNameStartsWith(String value) { this.SettingNameStartsWith = value; return this; } public String getSettingNameEndsWith() { return SettingNameEndsWith; } public IN_TransferCustomSettingQuery setSettingNameEndsWith(String value) { this.SettingNameEndsWith = value; return this; } public String getSettingNameContains() { return SettingNameContains; } public IN_TransferCustomSettingQuery setSettingNameContains(String value) { this.SettingNameContains = value; return this; } public String getSettingNameLike() { return SettingNameLike; } public IN_TransferCustomSettingQuery setSettingNameLike(String value) { this.SettingNameLike = value; return this; } public ArrayList getSettingNameBetween() { return SettingNameBetween; } public IN_TransferCustomSettingQuery setSettingNameBetween(ArrayList value) { this.SettingNameBetween = value; return this; } public ArrayList getSettingNameIn() { return SettingNameIn; } public IN_TransferCustomSettingQuery setSettingNameIn(ArrayList value) { this.SettingNameIn = value; return this; } public BigDecimal getDisplayOrder() { return DisplayOrder; } public IN_TransferCustomSettingQuery setDisplayOrder(BigDecimal value) { this.DisplayOrder = value; return this; } public BigDecimal getDisplayOrderGreaterThanOrEqualTo() { return DisplayOrderGreaterThanOrEqualTo; } public IN_TransferCustomSettingQuery setDisplayOrderGreaterThanOrEqualTo(BigDecimal value) { this.DisplayOrderGreaterThanOrEqualTo = value; return this; } public BigDecimal getDisplayOrderGreaterThan() { return DisplayOrderGreaterThan; } public IN_TransferCustomSettingQuery setDisplayOrderGreaterThan(BigDecimal value) { this.DisplayOrderGreaterThan = value; return this; } public BigDecimal getDisplayOrderLessThan() { return DisplayOrderLessThan; } public IN_TransferCustomSettingQuery setDisplayOrderLessThan(BigDecimal value) { this.DisplayOrderLessThan = value; return this; } public BigDecimal getDisplayOrderLessThanOrEqualTo() { return DisplayOrderLessThanOrEqualTo; } public IN_TransferCustomSettingQuery setDisplayOrderLessThanOrEqualTo(BigDecimal value) { this.DisplayOrderLessThanOrEqualTo = value; return this; } public BigDecimal getDisplayOrderNotEqualTo() { return DisplayOrderNotEqualTo; } public IN_TransferCustomSettingQuery setDisplayOrderNotEqualTo(BigDecimal value) { this.DisplayOrderNotEqualTo = value; return this; } public ArrayList getDisplayOrderBetween() { return DisplayOrderBetween; } public IN_TransferCustomSettingQuery setDisplayOrderBetween(ArrayList value) { this.DisplayOrderBetween = value; return this; } public ArrayList getDisplayOrderIn() { return DisplayOrderIn; } public IN_TransferCustomSettingQuery setDisplayOrderIn(ArrayList value) { this.DisplayOrderIn = value; return this; } public Short getCellType() { return CellType; } public IN_TransferCustomSettingQuery setCellType(Short value) { this.CellType = value; return this; } public Short getCellTypeGreaterThanOrEqualTo() { return CellTypeGreaterThanOrEqualTo; } public IN_TransferCustomSettingQuery setCellTypeGreaterThanOrEqualTo(Short value) { this.CellTypeGreaterThanOrEqualTo = value; return this; } public Short getCellTypeGreaterThan() { return CellTypeGreaterThan; } public IN_TransferCustomSettingQuery setCellTypeGreaterThan(Short value) { this.CellTypeGreaterThan = value; return this; } public Short getCellTypeLessThan() { return CellTypeLessThan; } public IN_TransferCustomSettingQuery setCellTypeLessThan(Short value) { this.CellTypeLessThan = value; return this; } public Short getCellTypeLessThanOrEqualTo() { return CellTypeLessThanOrEqualTo; } public IN_TransferCustomSettingQuery setCellTypeLessThanOrEqualTo(Short value) { this.CellTypeLessThanOrEqualTo = value; return this; } public Short getCellTypeNotEqualTo() { return CellTypeNotEqualTo; } public IN_TransferCustomSettingQuery setCellTypeNotEqualTo(Short value) { this.CellTypeNotEqualTo = value; return this; } public ArrayList getCellTypeBetween() { return CellTypeBetween; } public IN_TransferCustomSettingQuery setCellTypeBetween(ArrayList value) { this.CellTypeBetween = value; return this; } public ArrayList getCellTypeIn() { return CellTypeIn; } public IN_TransferCustomSettingQuery setCellTypeIn(ArrayList value) { this.CellTypeIn = value; return this; } public String getScriptFormatCell() { return ScriptFormatCell; } public IN_TransferCustomSettingQuery setScriptFormatCell(String value) { this.ScriptFormatCell = value; return this; } public String getScriptFormatCellStartsWith() { return ScriptFormatCellStartsWith; } public IN_TransferCustomSettingQuery setScriptFormatCellStartsWith(String value) { this.ScriptFormatCellStartsWith = value; return this; } public String getScriptFormatCellEndsWith() { return ScriptFormatCellEndsWith; } public IN_TransferCustomSettingQuery setScriptFormatCellEndsWith(String value) { this.ScriptFormatCellEndsWith = value; return this; } public String getScriptFormatCellContains() { return ScriptFormatCellContains; } public IN_TransferCustomSettingQuery setScriptFormatCellContains(String value) { this.ScriptFormatCellContains = value; return this; } public String getScriptFormatCellLike() { return ScriptFormatCellLike; } public IN_TransferCustomSettingQuery setScriptFormatCellLike(String value) { this.ScriptFormatCellLike = value; return this; } public ArrayList getScriptFormatCellBetween() { return ScriptFormatCellBetween; } public IN_TransferCustomSettingQuery setScriptFormatCellBetween(ArrayList value) { this.ScriptFormatCellBetween = value; return this; } public ArrayList getScriptFormatCellIn() { return ScriptFormatCellIn; } public IN_TransferCustomSettingQuery setScriptFormatCellIn(ArrayList value) { this.ScriptFormatCellIn = value; return this; } public String getScriptButtonClicked() { return ScriptButtonClicked; } public IN_TransferCustomSettingQuery setScriptButtonClicked(String value) { this.ScriptButtonClicked = value; return this; } public String getScriptButtonClickedStartsWith() { return ScriptButtonClickedStartsWith; } public IN_TransferCustomSettingQuery setScriptButtonClickedStartsWith(String value) { this.ScriptButtonClickedStartsWith = value; return this; } public String getScriptButtonClickedEndsWith() { return ScriptButtonClickedEndsWith; } public IN_TransferCustomSettingQuery setScriptButtonClickedEndsWith(String value) { this.ScriptButtonClickedEndsWith = value; return this; } public String getScriptButtonClickedContains() { return ScriptButtonClickedContains; } public IN_TransferCustomSettingQuery setScriptButtonClickedContains(String value) { this.ScriptButtonClickedContains = value; return this; } public String getScriptButtonClickedLike() { return ScriptButtonClickedLike; } public IN_TransferCustomSettingQuery setScriptButtonClickedLike(String value) { this.ScriptButtonClickedLike = value; return this; } public ArrayList getScriptButtonClickedBetween() { return ScriptButtonClickedBetween; } public IN_TransferCustomSettingQuery setScriptButtonClickedBetween(ArrayList value) { this.ScriptButtonClickedBetween = value; return this; } public ArrayList getScriptButtonClickedIn() { return ScriptButtonClickedIn; } public IN_TransferCustomSettingQuery setScriptButtonClickedIn(ArrayList value) { this.ScriptButtonClickedIn = value; return this; } public String getScriptReadData() { return ScriptReadData; } public IN_TransferCustomSettingQuery setScriptReadData(String value) { this.ScriptReadData = value; return this; } public String getScriptReadDataStartsWith() { return ScriptReadDataStartsWith; } public IN_TransferCustomSettingQuery setScriptReadDataStartsWith(String value) { this.ScriptReadDataStartsWith = value; return this; } public String getScriptReadDataEndsWith() { return ScriptReadDataEndsWith; } public IN_TransferCustomSettingQuery setScriptReadDataEndsWith(String value) { this.ScriptReadDataEndsWith = value; return this; } public String getScriptReadDataContains() { return ScriptReadDataContains; } public IN_TransferCustomSettingQuery setScriptReadDataContains(String value) { this.ScriptReadDataContains = value; return this; } public String getScriptReadDataLike() { return ScriptReadDataLike; } public IN_TransferCustomSettingQuery setScriptReadDataLike(String value) { this.ScriptReadDataLike = value; return this; } public ArrayList getScriptReadDataBetween() { return ScriptReadDataBetween; } public IN_TransferCustomSettingQuery setScriptReadDataBetween(ArrayList value) { this.ScriptReadDataBetween = value; return this; } public ArrayList getScriptReadDataIn() { return ScriptReadDataIn; } public IN_TransferCustomSettingQuery setScriptReadDataIn(ArrayList value) { this.ScriptReadDataIn = value; return this; } public UUID getSyPluginRecID() { return SY_Plugin_RecID; } public IN_TransferCustomSettingQuery setSyPluginRecID(UUID value) { this.SY_Plugin_RecID = value; return this; } public ArrayList getSyPluginRecIDIn() { return SY_Plugin_RecIDIn; } public IN_TransferCustomSettingQuery setSyPluginRecIDIn(ArrayList value) { this.SY_Plugin_RecIDIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class IN_TransferCustomSettingValuesQuery extends QueryDb implements IReturn> { public String SettingValueID = null; public String SettingValueIDStartsWith = null; public String SettingValueIDEndsWith = null; public String SettingValueIDContains = null; public String SettingValueIDLike = null; public ArrayList SettingValueIDBetween = null; public ArrayList SettingValueIDIn = null; public String SettingID = null; public String SettingIDStartsWith = null; public String SettingIDEndsWith = null; public String SettingIDContains = null; public String SettingIDLike = null; public ArrayList SettingIDBetween = null; public ArrayList SettingIDIn = null; public String TransferID = null; public String TransferIDStartsWith = null; public String TransferIDEndsWith = null; public String TransferIDContains = null; public String TransferIDLike = null; public ArrayList TransferIDBetween = null; public ArrayList TransferIDIn = null; public String Contents = null; public String ContentsStartsWith = null; public String ContentsEndsWith = null; public String ContentsContains = null; public String ContentsLike = null; public ArrayList ContentsBetween = null; public ArrayList ContentsIn = null; public Date LastSavedDateTime = null; public Date LastSavedDateTimeGreaterThanOrEqualTo = null; public Date LastSavedDateTimeGreaterThan = null; public Date LastSavedDateTimeLessThan = null; public Date LastSavedDateTimeLessThanOrEqualTo = null; public Date LastSavedDateTimeNotEqualTo = null; public ArrayList LastSavedDateTimeBetween = null; public ArrayList LastSavedDateTimeIn = null; public String getSettingValueID() { return SettingValueID; } public IN_TransferCustomSettingValuesQuery setSettingValueID(String value) { this.SettingValueID = value; return this; } public String getSettingValueIDStartsWith() { return SettingValueIDStartsWith; } public IN_TransferCustomSettingValuesQuery setSettingValueIDStartsWith(String value) { this.SettingValueIDStartsWith = value; return this; } public String getSettingValueIDEndsWith() { return SettingValueIDEndsWith; } public IN_TransferCustomSettingValuesQuery setSettingValueIDEndsWith(String value) { this.SettingValueIDEndsWith = value; return this; } public String getSettingValueIDContains() { return SettingValueIDContains; } public IN_TransferCustomSettingValuesQuery setSettingValueIDContains(String value) { this.SettingValueIDContains = value; return this; } public String getSettingValueIDLike() { return SettingValueIDLike; } public IN_TransferCustomSettingValuesQuery setSettingValueIDLike(String value) { this.SettingValueIDLike = value; return this; } public ArrayList getSettingValueIDBetween() { return SettingValueIDBetween; } public IN_TransferCustomSettingValuesQuery setSettingValueIDBetween(ArrayList value) { this.SettingValueIDBetween = value; return this; } public ArrayList getSettingValueIDIn() { return SettingValueIDIn; } public IN_TransferCustomSettingValuesQuery setSettingValueIDIn(ArrayList value) { this.SettingValueIDIn = value; return this; } public String getSettingID() { return SettingID; } public IN_TransferCustomSettingValuesQuery setSettingID(String value) { this.SettingID = value; return this; } public String getSettingIDStartsWith() { return SettingIDStartsWith; } public IN_TransferCustomSettingValuesQuery setSettingIDStartsWith(String value) { this.SettingIDStartsWith = value; return this; } public String getSettingIDEndsWith() { return SettingIDEndsWith; } public IN_TransferCustomSettingValuesQuery setSettingIDEndsWith(String value) { this.SettingIDEndsWith = value; return this; } public String getSettingIDContains() { return SettingIDContains; } public IN_TransferCustomSettingValuesQuery setSettingIDContains(String value) { this.SettingIDContains = value; return this; } public String getSettingIDLike() { return SettingIDLike; } public IN_TransferCustomSettingValuesQuery setSettingIDLike(String value) { this.SettingIDLike = value; return this; } public ArrayList getSettingIDBetween() { return SettingIDBetween; } public IN_TransferCustomSettingValuesQuery setSettingIDBetween(ArrayList value) { this.SettingIDBetween = value; return this; } public ArrayList getSettingIDIn() { return SettingIDIn; } public IN_TransferCustomSettingValuesQuery setSettingIDIn(ArrayList value) { this.SettingIDIn = value; return this; } public String getTransferID() { return TransferID; } public IN_TransferCustomSettingValuesQuery setTransferID(String value) { this.TransferID = value; return this; } public String getTransferIDStartsWith() { return TransferIDStartsWith; } public IN_TransferCustomSettingValuesQuery setTransferIDStartsWith(String value) { this.TransferIDStartsWith = value; return this; } public String getTransferIDEndsWith() { return TransferIDEndsWith; } public IN_TransferCustomSettingValuesQuery setTransferIDEndsWith(String value) { this.TransferIDEndsWith = value; return this; } public String getTransferIDContains() { return TransferIDContains; } public IN_TransferCustomSettingValuesQuery setTransferIDContains(String value) { this.TransferIDContains = value; return this; } public String getTransferIDLike() { return TransferIDLike; } public IN_TransferCustomSettingValuesQuery setTransferIDLike(String value) { this.TransferIDLike = value; return this; } public ArrayList getTransferIDBetween() { return TransferIDBetween; } public IN_TransferCustomSettingValuesQuery setTransferIDBetween(ArrayList value) { this.TransferIDBetween = value; return this; } public ArrayList getTransferIDIn() { return TransferIDIn; } public IN_TransferCustomSettingValuesQuery setTransferIDIn(ArrayList value) { this.TransferIDIn = value; return this; } public String getContents() { return Contents; } public IN_TransferCustomSettingValuesQuery setContents(String value) { this.Contents = value; return this; } public String getContentsStartsWith() { return ContentsStartsWith; } public IN_TransferCustomSettingValuesQuery setContentsStartsWith(String value) { this.ContentsStartsWith = value; return this; } public String getContentsEndsWith() { return ContentsEndsWith; } public IN_TransferCustomSettingValuesQuery setContentsEndsWith(String value) { this.ContentsEndsWith = value; return this; } public String getContentsContains() { return ContentsContains; } public IN_TransferCustomSettingValuesQuery setContentsContains(String value) { this.ContentsContains = value; return this; } public String getContentsLike() { return ContentsLike; } public IN_TransferCustomSettingValuesQuery setContentsLike(String value) { this.ContentsLike = value; return this; } public ArrayList getContentsBetween() { return ContentsBetween; } public IN_TransferCustomSettingValuesQuery setContentsBetween(ArrayList value) { this.ContentsBetween = value; return this; } public ArrayList getContentsIn() { return ContentsIn; } public IN_TransferCustomSettingValuesQuery setContentsIn(ArrayList value) { this.ContentsIn = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public IN_TransferCustomSettingValuesQuery setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getLastSavedDateTimeGreaterThanOrEqualTo() { return LastSavedDateTimeGreaterThanOrEqualTo; } public IN_TransferCustomSettingValuesQuery setLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.LastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeGreaterThan() { return LastSavedDateTimeGreaterThan; } public IN_TransferCustomSettingValuesQuery setLastSavedDateTimeGreaterThan(Date value) { this.LastSavedDateTimeGreaterThan = value; return this; } public Date getLastSavedDateTimeLessThan() { return LastSavedDateTimeLessThan; } public IN_TransferCustomSettingValuesQuery setLastSavedDateTimeLessThan(Date value) { this.LastSavedDateTimeLessThan = value; return this; } public Date getLastSavedDateTimeLessThanOrEqualTo() { return LastSavedDateTimeLessThanOrEqualTo; } public IN_TransferCustomSettingValuesQuery setLastSavedDateTimeLessThanOrEqualTo(Date value) { this.LastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeNotEqualTo() { return LastSavedDateTimeNotEqualTo; } public IN_TransferCustomSettingValuesQuery setLastSavedDateTimeNotEqualTo(Date value) { this.LastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getLastSavedDateTimeBetween() { return LastSavedDateTimeBetween; } public IN_TransferCustomSettingValuesQuery setLastSavedDateTimeBetween(ArrayList value) { this.LastSavedDateTimeBetween = value; return this; } public ArrayList getLastSavedDateTimeIn() { return LastSavedDateTimeIn; } public IN_TransferCustomSettingValuesQuery setLastSavedDateTimeIn(ArrayList value) { this.LastSavedDateTimeIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class IN_TransferDocumentsQuery extends QueryDb implements IReturn> { public String RecID = null; public String RecIDStartsWith = null; public String RecIDEndsWith = null; public String RecIDContains = null; public String RecIDLike = null; public ArrayList RecIDBetween = null; public ArrayList RecIDIn = null; public String TransferID = null; public String TransferIDStartsWith = null; public String TransferIDEndsWith = null; public String TransferIDContains = null; public String TransferIDLike = null; public ArrayList TransferIDBetween = null; public ArrayList TransferIDIn = null; public String DocumentTypeID = null; public String DocumentTypeIDStartsWith = null; public String DocumentTypeIDEndsWith = null; public String DocumentTypeIDContains = null; public String DocumentTypeIDLike = null; public ArrayList DocumentTypeIDBetween = null; public ArrayList DocumentTypeIDIn = null; public Date LastSavedDateTime = null; public Date LastSavedDateTimeGreaterThanOrEqualTo = null; public Date LastSavedDateTimeGreaterThan = null; public Date LastSavedDateTimeLessThan = null; public Date LastSavedDateTimeLessThanOrEqualTo = null; public Date LastSavedDateTimeNotEqualTo = null; public ArrayList LastSavedDateTimeBetween = null; public ArrayList LastSavedDateTimeIn = null; public String LastSavedByStaffID = null; public String LastSavedByStaffIDStartsWith = null; public String LastSavedByStaffIDEndsWith = null; public String LastSavedByStaffIDContains = null; public String LastSavedByStaffIDLike = null; public ArrayList LastSavedByStaffIDBetween = null; public ArrayList LastSavedByStaffIDIn = null; public ArrayList FileBinary = null; public String Description = null; public String DescriptionStartsWith = null; public String DescriptionEndsWith = null; public String DescriptionContains = null; public String DescriptionLike = null; public ArrayList DescriptionBetween = null; public ArrayList DescriptionIn = null; public String PhysicalFileName = null; public String PhysicalFileNameStartsWith = null; public String PhysicalFileNameEndsWith = null; public String PhysicalFileNameContains = null; public String PhysicalFileNameLike = null; public ArrayList PhysicalFileNameBetween = null; public ArrayList PhysicalFileNameIn = null; public Integer ItemNo = null; public Integer ItemNoGreaterThanOrEqualTo = null; public Integer ItemNoGreaterThan = null; public Integer ItemNoLessThan = null; public Integer ItemNoLessThanOrEqualTo = null; public Integer ItemNoNotEqualTo = null; public ArrayList ItemNoBetween = null; public ArrayList ItemNoIn = null; public String getRecID() { return RecID; } public IN_TransferDocumentsQuery setRecID(String value) { this.RecID = value; return this; } public String getRecIDStartsWith() { return RecIDStartsWith; } public IN_TransferDocumentsQuery setRecIDStartsWith(String value) { this.RecIDStartsWith = value; return this; } public String getRecIDEndsWith() { return RecIDEndsWith; } public IN_TransferDocumentsQuery setRecIDEndsWith(String value) { this.RecIDEndsWith = value; return this; } public String getRecIDContains() { return RecIDContains; } public IN_TransferDocumentsQuery setRecIDContains(String value) { this.RecIDContains = value; return this; } public String getRecIDLike() { return RecIDLike; } public IN_TransferDocumentsQuery setRecIDLike(String value) { this.RecIDLike = value; return this; } public ArrayList getRecIDBetween() { return RecIDBetween; } public IN_TransferDocumentsQuery setRecIDBetween(ArrayList value) { this.RecIDBetween = value; return this; } public ArrayList getRecIDIn() { return RecIDIn; } public IN_TransferDocumentsQuery setRecIDIn(ArrayList value) { this.RecIDIn = value; return this; } public String getTransferID() { return TransferID; } public IN_TransferDocumentsQuery setTransferID(String value) { this.TransferID = value; return this; } public String getTransferIDStartsWith() { return TransferIDStartsWith; } public IN_TransferDocumentsQuery setTransferIDStartsWith(String value) { this.TransferIDStartsWith = value; return this; } public String getTransferIDEndsWith() { return TransferIDEndsWith; } public IN_TransferDocumentsQuery setTransferIDEndsWith(String value) { this.TransferIDEndsWith = value; return this; } public String getTransferIDContains() { return TransferIDContains; } public IN_TransferDocumentsQuery setTransferIDContains(String value) { this.TransferIDContains = value; return this; } public String getTransferIDLike() { return TransferIDLike; } public IN_TransferDocumentsQuery setTransferIDLike(String value) { this.TransferIDLike = value; return this; } public ArrayList getTransferIDBetween() { return TransferIDBetween; } public IN_TransferDocumentsQuery setTransferIDBetween(ArrayList value) { this.TransferIDBetween = value; return this; } public ArrayList getTransferIDIn() { return TransferIDIn; } public IN_TransferDocumentsQuery setTransferIDIn(ArrayList value) { this.TransferIDIn = value; return this; } public String getDocumentTypeID() { return DocumentTypeID; } public IN_TransferDocumentsQuery setDocumentTypeID(String value) { this.DocumentTypeID = value; return this; } public String getDocumentTypeIDStartsWith() { return DocumentTypeIDStartsWith; } public IN_TransferDocumentsQuery setDocumentTypeIDStartsWith(String value) { this.DocumentTypeIDStartsWith = value; return this; } public String getDocumentTypeIDEndsWith() { return DocumentTypeIDEndsWith; } public IN_TransferDocumentsQuery setDocumentTypeIDEndsWith(String value) { this.DocumentTypeIDEndsWith = value; return this; } public String getDocumentTypeIDContains() { return DocumentTypeIDContains; } public IN_TransferDocumentsQuery setDocumentTypeIDContains(String value) { this.DocumentTypeIDContains = value; return this; } public String getDocumentTypeIDLike() { return DocumentTypeIDLike; } public IN_TransferDocumentsQuery setDocumentTypeIDLike(String value) { this.DocumentTypeIDLike = value; return this; } public ArrayList getDocumentTypeIDBetween() { return DocumentTypeIDBetween; } public IN_TransferDocumentsQuery setDocumentTypeIDBetween(ArrayList value) { this.DocumentTypeIDBetween = value; return this; } public ArrayList getDocumentTypeIDIn() { return DocumentTypeIDIn; } public IN_TransferDocumentsQuery setDocumentTypeIDIn(ArrayList value) { this.DocumentTypeIDIn = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public IN_TransferDocumentsQuery setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getLastSavedDateTimeGreaterThanOrEqualTo() { return LastSavedDateTimeGreaterThanOrEqualTo; } public IN_TransferDocumentsQuery setLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.LastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeGreaterThan() { return LastSavedDateTimeGreaterThan; } public IN_TransferDocumentsQuery setLastSavedDateTimeGreaterThan(Date value) { this.LastSavedDateTimeGreaterThan = value; return this; } public Date getLastSavedDateTimeLessThan() { return LastSavedDateTimeLessThan; } public IN_TransferDocumentsQuery setLastSavedDateTimeLessThan(Date value) { this.LastSavedDateTimeLessThan = value; return this; } public Date getLastSavedDateTimeLessThanOrEqualTo() { return LastSavedDateTimeLessThanOrEqualTo; } public IN_TransferDocumentsQuery setLastSavedDateTimeLessThanOrEqualTo(Date value) { this.LastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeNotEqualTo() { return LastSavedDateTimeNotEqualTo; } public IN_TransferDocumentsQuery setLastSavedDateTimeNotEqualTo(Date value) { this.LastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getLastSavedDateTimeBetween() { return LastSavedDateTimeBetween; } public IN_TransferDocumentsQuery setLastSavedDateTimeBetween(ArrayList value) { this.LastSavedDateTimeBetween = value; return this; } public ArrayList getLastSavedDateTimeIn() { return LastSavedDateTimeIn; } public IN_TransferDocumentsQuery setLastSavedDateTimeIn(ArrayList value) { this.LastSavedDateTimeIn = value; return this; } public String getLastSavedByStaffID() { return LastSavedByStaffID; } public IN_TransferDocumentsQuery setLastSavedByStaffID(String value) { this.LastSavedByStaffID = value; return this; } public String getLastSavedByStaffIDStartsWith() { return LastSavedByStaffIDStartsWith; } public IN_TransferDocumentsQuery setLastSavedByStaffIDStartsWith(String value) { this.LastSavedByStaffIDStartsWith = value; return this; } public String getLastSavedByStaffIDEndsWith() { return LastSavedByStaffIDEndsWith; } public IN_TransferDocumentsQuery setLastSavedByStaffIDEndsWith(String value) { this.LastSavedByStaffIDEndsWith = value; return this; } public String getLastSavedByStaffIDContains() { return LastSavedByStaffIDContains; } public IN_TransferDocumentsQuery setLastSavedByStaffIDContains(String value) { this.LastSavedByStaffIDContains = value; return this; } public String getLastSavedByStaffIDLike() { return LastSavedByStaffIDLike; } public IN_TransferDocumentsQuery setLastSavedByStaffIDLike(String value) { this.LastSavedByStaffIDLike = value; return this; } public ArrayList getLastSavedByStaffIDBetween() { return LastSavedByStaffIDBetween; } public IN_TransferDocumentsQuery setLastSavedByStaffIDBetween(ArrayList value) { this.LastSavedByStaffIDBetween = value; return this; } public ArrayList getLastSavedByStaffIDIn() { return LastSavedByStaffIDIn; } public IN_TransferDocumentsQuery setLastSavedByStaffIDIn(ArrayList value) { this.LastSavedByStaffIDIn = value; return this; } public ArrayList getFileBinary() { return FileBinary; } public IN_TransferDocumentsQuery setFileBinary(ArrayList value) { this.FileBinary = value; return this; } public String getDescription() { return Description; } public IN_TransferDocumentsQuery setDescription(String value) { this.Description = value; return this; } public String getDescriptionStartsWith() { return DescriptionStartsWith; } public IN_TransferDocumentsQuery setDescriptionStartsWith(String value) { this.DescriptionStartsWith = value; return this; } public String getDescriptionEndsWith() { return DescriptionEndsWith; } public IN_TransferDocumentsQuery setDescriptionEndsWith(String value) { this.DescriptionEndsWith = value; return this; } public String getDescriptionContains() { return DescriptionContains; } public IN_TransferDocumentsQuery setDescriptionContains(String value) { this.DescriptionContains = value; return this; } public String getDescriptionLike() { return DescriptionLike; } public IN_TransferDocumentsQuery setDescriptionLike(String value) { this.DescriptionLike = value; return this; } public ArrayList getDescriptionBetween() { return DescriptionBetween; } public IN_TransferDocumentsQuery setDescriptionBetween(ArrayList value) { this.DescriptionBetween = value; return this; } public ArrayList getDescriptionIn() { return DescriptionIn; } public IN_TransferDocumentsQuery setDescriptionIn(ArrayList value) { this.DescriptionIn = value; return this; } public String getPhysicalFileName() { return PhysicalFileName; } public IN_TransferDocumentsQuery setPhysicalFileName(String value) { this.PhysicalFileName = value; return this; } public String getPhysicalFileNameStartsWith() { return PhysicalFileNameStartsWith; } public IN_TransferDocumentsQuery setPhysicalFileNameStartsWith(String value) { this.PhysicalFileNameStartsWith = value; return this; } public String getPhysicalFileNameEndsWith() { return PhysicalFileNameEndsWith; } public IN_TransferDocumentsQuery setPhysicalFileNameEndsWith(String value) { this.PhysicalFileNameEndsWith = value; return this; } public String getPhysicalFileNameContains() { return PhysicalFileNameContains; } public IN_TransferDocumentsQuery setPhysicalFileNameContains(String value) { this.PhysicalFileNameContains = value; return this; } public String getPhysicalFileNameLike() { return PhysicalFileNameLike; } public IN_TransferDocumentsQuery setPhysicalFileNameLike(String value) { this.PhysicalFileNameLike = value; return this; } public ArrayList getPhysicalFileNameBetween() { return PhysicalFileNameBetween; } public IN_TransferDocumentsQuery setPhysicalFileNameBetween(ArrayList value) { this.PhysicalFileNameBetween = value; return this; } public ArrayList getPhysicalFileNameIn() { return PhysicalFileNameIn; } public IN_TransferDocumentsQuery setPhysicalFileNameIn(ArrayList value) { this.PhysicalFileNameIn = value; return this; } public Integer getItemNo() { return ItemNo; } public IN_TransferDocumentsQuery setItemNo(Integer value) { this.ItemNo = value; return this; } public Integer getItemNoGreaterThanOrEqualTo() { return ItemNoGreaterThanOrEqualTo; } public IN_TransferDocumentsQuery setItemNoGreaterThanOrEqualTo(Integer value) { this.ItemNoGreaterThanOrEqualTo = value; return this; } public Integer getItemNoGreaterThan() { return ItemNoGreaterThan; } public IN_TransferDocumentsQuery setItemNoGreaterThan(Integer value) { this.ItemNoGreaterThan = value; return this; } public Integer getItemNoLessThan() { return ItemNoLessThan; } public IN_TransferDocumentsQuery setItemNoLessThan(Integer value) { this.ItemNoLessThan = value; return this; } public Integer getItemNoLessThanOrEqualTo() { return ItemNoLessThanOrEqualTo; } public IN_TransferDocumentsQuery setItemNoLessThanOrEqualTo(Integer value) { this.ItemNoLessThanOrEqualTo = value; return this; } public Integer getItemNoNotEqualTo() { return ItemNoNotEqualTo; } public IN_TransferDocumentsQuery setItemNoNotEqualTo(Integer value) { this.ItemNoNotEqualTo = value; return this; } public ArrayList getItemNoBetween() { return ItemNoBetween; } public IN_TransferDocumentsQuery setItemNoBetween(ArrayList value) { this.ItemNoBetween = value; return this; } public ArrayList getItemNoIn() { return ItemNoIn; } public IN_TransferDocumentsQuery setItemNoIn(ArrayList value) { this.ItemNoIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class IN_TransferLineCustomFieldQuery extends QueryDb implements IReturn> { public String RecID = null; public String RecIDStartsWith = null; public String RecIDEndsWith = null; public String RecIDContains = null; public String RecIDLike = null; public ArrayList RecIDBetween = null; public ArrayList RecIDIn = null; public String SettingName = null; public String SettingNameStartsWith = null; public String SettingNameEndsWith = null; public String SettingNameContains = null; public String SettingNameLike = null; public ArrayList SettingNameBetween = null; public ArrayList SettingNameIn = null; public String SettingDescription = null; public String SettingDescriptionStartsWith = null; public String SettingDescriptionEndsWith = null; public String SettingDescriptionContains = null; public String SettingDescriptionLike = null; public ArrayList SettingDescriptionBetween = null; public ArrayList SettingDescriptionIn = null; public Integer CellType = null; public Integer CellTypeGreaterThanOrEqualTo = null; public Integer CellTypeGreaterThan = null; public Integer CellTypeLessThan = null; public Integer CellTypeLessThanOrEqualTo = null; public Integer CellTypeNotEqualTo = null; public ArrayList CellTypeBetween = null; public ArrayList CellTypeIn = null; public String FieldParameter = null; public String FieldParameterStartsWith = null; public String FieldParameterEndsWith = null; public String FieldParameterContains = null; public String FieldParameterLike = null; public ArrayList FieldParameterBetween = null; public ArrayList FieldParameterIn = null; public UUID SY_Plugin_RecID = null; public ArrayList SY_Plugin_RecIDIn = null; public Date LastSavedDateTime = null; public Date LastSavedDateTimeGreaterThanOrEqualTo = null; public Date LastSavedDateTimeGreaterThan = null; public Date LastSavedDateTimeLessThan = null; public Date LastSavedDateTimeLessThanOrEqualTo = null; public Date LastSavedDateTimeNotEqualTo = null; public ArrayList LastSavedDateTimeBetween = null; public ArrayList LastSavedDateTimeIn = null; public Integer DisplayOrder = null; public Integer DisplayOrderGreaterThanOrEqualTo = null; public Integer DisplayOrderGreaterThan = null; public Integer DisplayOrderLessThan = null; public Integer DisplayOrderLessThanOrEqualTo = null; public Integer DisplayOrderNotEqualTo = null; public ArrayList DisplayOrderBetween = null; public ArrayList DisplayOrderIn = null; public String getRecID() { return RecID; } public IN_TransferLineCustomFieldQuery setRecID(String value) { this.RecID = value; return this; } public String getRecIDStartsWith() { return RecIDStartsWith; } public IN_TransferLineCustomFieldQuery setRecIDStartsWith(String value) { this.RecIDStartsWith = value; return this; } public String getRecIDEndsWith() { return RecIDEndsWith; } public IN_TransferLineCustomFieldQuery setRecIDEndsWith(String value) { this.RecIDEndsWith = value; return this; } public String getRecIDContains() { return RecIDContains; } public IN_TransferLineCustomFieldQuery setRecIDContains(String value) { this.RecIDContains = value; return this; } public String getRecIDLike() { return RecIDLike; } public IN_TransferLineCustomFieldQuery setRecIDLike(String value) { this.RecIDLike = value; return this; } public ArrayList getRecIDBetween() { return RecIDBetween; } public IN_TransferLineCustomFieldQuery setRecIDBetween(ArrayList value) { this.RecIDBetween = value; return this; } public ArrayList getRecIDIn() { return RecIDIn; } public IN_TransferLineCustomFieldQuery setRecIDIn(ArrayList value) { this.RecIDIn = value; return this; } public String getSettingName() { return SettingName; } public IN_TransferLineCustomFieldQuery setSettingName(String value) { this.SettingName = value; return this; } public String getSettingNameStartsWith() { return SettingNameStartsWith; } public IN_TransferLineCustomFieldQuery setSettingNameStartsWith(String value) { this.SettingNameStartsWith = value; return this; } public String getSettingNameEndsWith() { return SettingNameEndsWith; } public IN_TransferLineCustomFieldQuery setSettingNameEndsWith(String value) { this.SettingNameEndsWith = value; return this; } public String getSettingNameContains() { return SettingNameContains; } public IN_TransferLineCustomFieldQuery setSettingNameContains(String value) { this.SettingNameContains = value; return this; } public String getSettingNameLike() { return SettingNameLike; } public IN_TransferLineCustomFieldQuery setSettingNameLike(String value) { this.SettingNameLike = value; return this; } public ArrayList getSettingNameBetween() { return SettingNameBetween; } public IN_TransferLineCustomFieldQuery setSettingNameBetween(ArrayList value) { this.SettingNameBetween = value; return this; } public ArrayList getSettingNameIn() { return SettingNameIn; } public IN_TransferLineCustomFieldQuery setSettingNameIn(ArrayList value) { this.SettingNameIn = value; return this; } public String getSettingDescription() { return SettingDescription; } public IN_TransferLineCustomFieldQuery setSettingDescription(String value) { this.SettingDescription = value; return this; } public String getSettingDescriptionStartsWith() { return SettingDescriptionStartsWith; } public IN_TransferLineCustomFieldQuery setSettingDescriptionStartsWith(String value) { this.SettingDescriptionStartsWith = value; return this; } public String getSettingDescriptionEndsWith() { return SettingDescriptionEndsWith; } public IN_TransferLineCustomFieldQuery setSettingDescriptionEndsWith(String value) { this.SettingDescriptionEndsWith = value; return this; } public String getSettingDescriptionContains() { return SettingDescriptionContains; } public IN_TransferLineCustomFieldQuery setSettingDescriptionContains(String value) { this.SettingDescriptionContains = value; return this; } public String getSettingDescriptionLike() { return SettingDescriptionLike; } public IN_TransferLineCustomFieldQuery setSettingDescriptionLike(String value) { this.SettingDescriptionLike = value; return this; } public ArrayList getSettingDescriptionBetween() { return SettingDescriptionBetween; } public IN_TransferLineCustomFieldQuery setSettingDescriptionBetween(ArrayList value) { this.SettingDescriptionBetween = value; return this; } public ArrayList getSettingDescriptionIn() { return SettingDescriptionIn; } public IN_TransferLineCustomFieldQuery setSettingDescriptionIn(ArrayList value) { this.SettingDescriptionIn = value; return this; } public Integer getCellType() { return CellType; } public IN_TransferLineCustomFieldQuery setCellType(Integer value) { this.CellType = value; return this; } public Integer getCellTypeGreaterThanOrEqualTo() { return CellTypeGreaterThanOrEqualTo; } public IN_TransferLineCustomFieldQuery setCellTypeGreaterThanOrEqualTo(Integer value) { this.CellTypeGreaterThanOrEqualTo = value; return this; } public Integer getCellTypeGreaterThan() { return CellTypeGreaterThan; } public IN_TransferLineCustomFieldQuery setCellTypeGreaterThan(Integer value) { this.CellTypeGreaterThan = value; return this; } public Integer getCellTypeLessThan() { return CellTypeLessThan; } public IN_TransferLineCustomFieldQuery setCellTypeLessThan(Integer value) { this.CellTypeLessThan = value; return this; } public Integer getCellTypeLessThanOrEqualTo() { return CellTypeLessThanOrEqualTo; } public IN_TransferLineCustomFieldQuery setCellTypeLessThanOrEqualTo(Integer value) { this.CellTypeLessThanOrEqualTo = value; return this; } public Integer getCellTypeNotEqualTo() { return CellTypeNotEqualTo; } public IN_TransferLineCustomFieldQuery setCellTypeNotEqualTo(Integer value) { this.CellTypeNotEqualTo = value; return this; } public ArrayList getCellTypeBetween() { return CellTypeBetween; } public IN_TransferLineCustomFieldQuery setCellTypeBetween(ArrayList value) { this.CellTypeBetween = value; return this; } public ArrayList getCellTypeIn() { return CellTypeIn; } public IN_TransferLineCustomFieldQuery setCellTypeIn(ArrayList value) { this.CellTypeIn = value; return this; } public String getFieldParameter() { return FieldParameter; } public IN_TransferLineCustomFieldQuery setFieldParameter(String value) { this.FieldParameter = value; return this; } public String getFieldParameterStartsWith() { return FieldParameterStartsWith; } public IN_TransferLineCustomFieldQuery setFieldParameterStartsWith(String value) { this.FieldParameterStartsWith = value; return this; } public String getFieldParameterEndsWith() { return FieldParameterEndsWith; } public IN_TransferLineCustomFieldQuery setFieldParameterEndsWith(String value) { this.FieldParameterEndsWith = value; return this; } public String getFieldParameterContains() { return FieldParameterContains; } public IN_TransferLineCustomFieldQuery setFieldParameterContains(String value) { this.FieldParameterContains = value; return this; } public String getFieldParameterLike() { return FieldParameterLike; } public IN_TransferLineCustomFieldQuery setFieldParameterLike(String value) { this.FieldParameterLike = value; return this; } public ArrayList getFieldParameterBetween() { return FieldParameterBetween; } public IN_TransferLineCustomFieldQuery setFieldParameterBetween(ArrayList value) { this.FieldParameterBetween = value; return this; } public ArrayList getFieldParameterIn() { return FieldParameterIn; } public IN_TransferLineCustomFieldQuery setFieldParameterIn(ArrayList value) { this.FieldParameterIn = value; return this; } public UUID getSyPluginRecID() { return SY_Plugin_RecID; } public IN_TransferLineCustomFieldQuery setSyPluginRecID(UUID value) { this.SY_Plugin_RecID = value; return this; } public ArrayList getSyPluginRecIDIn() { return SY_Plugin_RecIDIn; } public IN_TransferLineCustomFieldQuery setSyPluginRecIDIn(ArrayList value) { this.SY_Plugin_RecIDIn = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public IN_TransferLineCustomFieldQuery setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getLastSavedDateTimeGreaterThanOrEqualTo() { return LastSavedDateTimeGreaterThanOrEqualTo; } public IN_TransferLineCustomFieldQuery setLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.LastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeGreaterThan() { return LastSavedDateTimeGreaterThan; } public IN_TransferLineCustomFieldQuery setLastSavedDateTimeGreaterThan(Date value) { this.LastSavedDateTimeGreaterThan = value; return this; } public Date getLastSavedDateTimeLessThan() { return LastSavedDateTimeLessThan; } public IN_TransferLineCustomFieldQuery setLastSavedDateTimeLessThan(Date value) { this.LastSavedDateTimeLessThan = value; return this; } public Date getLastSavedDateTimeLessThanOrEqualTo() { return LastSavedDateTimeLessThanOrEqualTo; } public IN_TransferLineCustomFieldQuery setLastSavedDateTimeLessThanOrEqualTo(Date value) { this.LastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeNotEqualTo() { return LastSavedDateTimeNotEqualTo; } public IN_TransferLineCustomFieldQuery setLastSavedDateTimeNotEqualTo(Date value) { this.LastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getLastSavedDateTimeBetween() { return LastSavedDateTimeBetween; } public IN_TransferLineCustomFieldQuery setLastSavedDateTimeBetween(ArrayList value) { this.LastSavedDateTimeBetween = value; return this; } public ArrayList getLastSavedDateTimeIn() { return LastSavedDateTimeIn; } public IN_TransferLineCustomFieldQuery setLastSavedDateTimeIn(ArrayList value) { this.LastSavedDateTimeIn = value; return this; } public Integer getDisplayOrder() { return DisplayOrder; } public IN_TransferLineCustomFieldQuery setDisplayOrder(Integer value) { this.DisplayOrder = value; return this; } public Integer getDisplayOrderGreaterThanOrEqualTo() { return DisplayOrderGreaterThanOrEqualTo; } public IN_TransferLineCustomFieldQuery setDisplayOrderGreaterThanOrEqualTo(Integer value) { this.DisplayOrderGreaterThanOrEqualTo = value; return this; } public Integer getDisplayOrderGreaterThan() { return DisplayOrderGreaterThan; } public IN_TransferLineCustomFieldQuery setDisplayOrderGreaterThan(Integer value) { this.DisplayOrderGreaterThan = value; return this; } public Integer getDisplayOrderLessThan() { return DisplayOrderLessThan; } public IN_TransferLineCustomFieldQuery setDisplayOrderLessThan(Integer value) { this.DisplayOrderLessThan = value; return this; } public Integer getDisplayOrderLessThanOrEqualTo() { return DisplayOrderLessThanOrEqualTo; } public IN_TransferLineCustomFieldQuery setDisplayOrderLessThanOrEqualTo(Integer value) { this.DisplayOrderLessThanOrEqualTo = value; return this; } public Integer getDisplayOrderNotEqualTo() { return DisplayOrderNotEqualTo; } public IN_TransferLineCustomFieldQuery setDisplayOrderNotEqualTo(Integer value) { this.DisplayOrderNotEqualTo = value; return this; } public ArrayList getDisplayOrderBetween() { return DisplayOrderBetween; } public IN_TransferLineCustomFieldQuery setDisplayOrderBetween(ArrayList value) { this.DisplayOrderBetween = value; return this; } public ArrayList getDisplayOrderIn() { return DisplayOrderIn; } public IN_TransferLineCustomFieldQuery setDisplayOrderIn(ArrayList value) { this.DisplayOrderIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class IN_TransferLineCustomValueQuery extends QueryDb implements IReturn> { public String RecID = null; public String RecIDStartsWith = null; public String RecIDEndsWith = null; public String RecIDContains = null; public String RecIDLike = null; public ArrayList RecIDBetween = null; public ArrayList RecIDIn = null; public String IN_TransferLines_TransferLineID = null; public String IN_TransferLines_TransferLineIDStartsWith = null; public String IN_TransferLines_TransferLineIDEndsWith = null; public String IN_TransferLines_TransferLineIDContains = null; public String IN_TransferLines_TransferLineIDLike = null; public ArrayList IN_TransferLines_TransferLineIDBetween = null; public ArrayList IN_TransferLines_TransferLineIDIn = null; public String IN_TransferLineCustomField_RecID = null; public String IN_TransferLineCustomField_RecIDStartsWith = null; public String IN_TransferLineCustomField_RecIDEndsWith = null; public String IN_TransferLineCustomField_RecIDContains = null; public String IN_TransferLineCustomField_RecIDLike = null; public ArrayList IN_TransferLineCustomField_RecIDBetween = null; public ArrayList IN_TransferLineCustomField_RecIDIn = null; public String Contents = null; public String ContentsStartsWith = null; public String ContentsEndsWith = null; public String ContentsContains = null; public String ContentsLike = null; public ArrayList ContentsBetween = null; public ArrayList ContentsIn = null; public Date LastSavedDateTime = null; public Date LastSavedDateTimeGreaterThanOrEqualTo = null; public Date LastSavedDateTimeGreaterThan = null; public Date LastSavedDateTimeLessThan = null; public Date LastSavedDateTimeLessThanOrEqualTo = null; public Date LastSavedDateTimeNotEqualTo = null; public ArrayList LastSavedDateTimeBetween = null; public ArrayList LastSavedDateTimeIn = null; public String getRecID() { return RecID; } public IN_TransferLineCustomValueQuery setRecID(String value) { this.RecID = value; return this; } public String getRecIDStartsWith() { return RecIDStartsWith; } public IN_TransferLineCustomValueQuery setRecIDStartsWith(String value) { this.RecIDStartsWith = value; return this; } public String getRecIDEndsWith() { return RecIDEndsWith; } public IN_TransferLineCustomValueQuery setRecIDEndsWith(String value) { this.RecIDEndsWith = value; return this; } public String getRecIDContains() { return RecIDContains; } public IN_TransferLineCustomValueQuery setRecIDContains(String value) { this.RecIDContains = value; return this; } public String getRecIDLike() { return RecIDLike; } public IN_TransferLineCustomValueQuery setRecIDLike(String value) { this.RecIDLike = value; return this; } public ArrayList getRecIDBetween() { return RecIDBetween; } public IN_TransferLineCustomValueQuery setRecIDBetween(ArrayList value) { this.RecIDBetween = value; return this; } public ArrayList getRecIDIn() { return RecIDIn; } public IN_TransferLineCustomValueQuery setRecIDIn(ArrayList value) { this.RecIDIn = value; return this; } public String getInTransferLinesTransferLineID() { return IN_TransferLines_TransferLineID; } public IN_TransferLineCustomValueQuery setInTransferLinesTransferLineID(String value) { this.IN_TransferLines_TransferLineID = value; return this; } public String getInTransferLinesTransferLineIDStartsWith() { return IN_TransferLines_TransferLineIDStartsWith; } public IN_TransferLineCustomValueQuery setInTransferLinesTransferLineIDStartsWith(String value) { this.IN_TransferLines_TransferLineIDStartsWith = value; return this; } public String getInTransferLinesTransferLineIDEndsWith() { return IN_TransferLines_TransferLineIDEndsWith; } public IN_TransferLineCustomValueQuery setInTransferLinesTransferLineIDEndsWith(String value) { this.IN_TransferLines_TransferLineIDEndsWith = value; return this; } public String getInTransferLinesTransferLineIDContains() { return IN_TransferLines_TransferLineIDContains; } public IN_TransferLineCustomValueQuery setInTransferLinesTransferLineIDContains(String value) { this.IN_TransferLines_TransferLineIDContains = value; return this; } public String getInTransferLinesTransferLineIDLike() { return IN_TransferLines_TransferLineIDLike; } public IN_TransferLineCustomValueQuery setInTransferLinesTransferLineIDLike(String value) { this.IN_TransferLines_TransferLineIDLike = value; return this; } public ArrayList getInTransferLinesTransferLineIDBetween() { return IN_TransferLines_TransferLineIDBetween; } public IN_TransferLineCustomValueQuery setInTransferLinesTransferLineIDBetween(ArrayList value) { this.IN_TransferLines_TransferLineIDBetween = value; return this; } public ArrayList getInTransferLinesTransferLineIDIn() { return IN_TransferLines_TransferLineIDIn; } public IN_TransferLineCustomValueQuery setInTransferLinesTransferLineIDIn(ArrayList value) { this.IN_TransferLines_TransferLineIDIn = value; return this; } public String getInTransferLineCustomFieldRecID() { return IN_TransferLineCustomField_RecID; } public IN_TransferLineCustomValueQuery setInTransferLineCustomFieldRecID(String value) { this.IN_TransferLineCustomField_RecID = value; return this; } public String getInTransferLineCustomFieldRecIDStartsWith() { return IN_TransferLineCustomField_RecIDStartsWith; } public IN_TransferLineCustomValueQuery setInTransferLineCustomFieldRecIDStartsWith(String value) { this.IN_TransferLineCustomField_RecIDStartsWith = value; return this; } public String getInTransferLineCustomFieldRecIDEndsWith() { return IN_TransferLineCustomField_RecIDEndsWith; } public IN_TransferLineCustomValueQuery setInTransferLineCustomFieldRecIDEndsWith(String value) { this.IN_TransferLineCustomField_RecIDEndsWith = value; return this; } public String getInTransferLineCustomFieldRecIDContains() { return IN_TransferLineCustomField_RecIDContains; } public IN_TransferLineCustomValueQuery setInTransferLineCustomFieldRecIDContains(String value) { this.IN_TransferLineCustomField_RecIDContains = value; return this; } public String getInTransferLineCustomFieldRecIDLike() { return IN_TransferLineCustomField_RecIDLike; } public IN_TransferLineCustomValueQuery setInTransferLineCustomFieldRecIDLike(String value) { this.IN_TransferLineCustomField_RecIDLike = value; return this; } public ArrayList getInTransferLineCustomFieldRecIDBetween() { return IN_TransferLineCustomField_RecIDBetween; } public IN_TransferLineCustomValueQuery setInTransferLineCustomFieldRecIDBetween(ArrayList value) { this.IN_TransferLineCustomField_RecIDBetween = value; return this; } public ArrayList getInTransferLineCustomFieldRecIDIn() { return IN_TransferLineCustomField_RecIDIn; } public IN_TransferLineCustomValueQuery setInTransferLineCustomFieldRecIDIn(ArrayList value) { this.IN_TransferLineCustomField_RecIDIn = value; return this; } public String getContents() { return Contents; } public IN_TransferLineCustomValueQuery setContents(String value) { this.Contents = value; return this; } public String getContentsStartsWith() { return ContentsStartsWith; } public IN_TransferLineCustomValueQuery setContentsStartsWith(String value) { this.ContentsStartsWith = value; return this; } public String getContentsEndsWith() { return ContentsEndsWith; } public IN_TransferLineCustomValueQuery setContentsEndsWith(String value) { this.ContentsEndsWith = value; return this; } public String getContentsContains() { return ContentsContains; } public IN_TransferLineCustomValueQuery setContentsContains(String value) { this.ContentsContains = value; return this; } public String getContentsLike() { return ContentsLike; } public IN_TransferLineCustomValueQuery setContentsLike(String value) { this.ContentsLike = value; return this; } public ArrayList getContentsBetween() { return ContentsBetween; } public IN_TransferLineCustomValueQuery setContentsBetween(ArrayList value) { this.ContentsBetween = value; return this; } public ArrayList getContentsIn() { return ContentsIn; } public IN_TransferLineCustomValueQuery setContentsIn(ArrayList value) { this.ContentsIn = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public IN_TransferLineCustomValueQuery setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getLastSavedDateTimeGreaterThanOrEqualTo() { return LastSavedDateTimeGreaterThanOrEqualTo; } public IN_TransferLineCustomValueQuery setLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.LastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeGreaterThan() { return LastSavedDateTimeGreaterThan; } public IN_TransferLineCustomValueQuery setLastSavedDateTimeGreaterThan(Date value) { this.LastSavedDateTimeGreaterThan = value; return this; } public Date getLastSavedDateTimeLessThan() { return LastSavedDateTimeLessThan; } public IN_TransferLineCustomValueQuery setLastSavedDateTimeLessThan(Date value) { this.LastSavedDateTimeLessThan = value; return this; } public Date getLastSavedDateTimeLessThanOrEqualTo() { return LastSavedDateTimeLessThanOrEqualTo; } public IN_TransferLineCustomValueQuery setLastSavedDateTimeLessThanOrEqualTo(Date value) { this.LastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeNotEqualTo() { return LastSavedDateTimeNotEqualTo; } public IN_TransferLineCustomValueQuery setLastSavedDateTimeNotEqualTo(Date value) { this.LastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getLastSavedDateTimeBetween() { return LastSavedDateTimeBetween; } public IN_TransferLineCustomValueQuery setLastSavedDateTimeBetween(ArrayList value) { this.LastSavedDateTimeBetween = value; return this; } public ArrayList getLastSavedDateTimeIn() { return LastSavedDateTimeIn; } public IN_TransferLineCustomValueQuery setLastSavedDateTimeIn(ArrayList value) { this.LastSavedDateTimeIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class IN_TransferLinesQuery extends QueryDb implements IReturn> { public String TransferLineID = null; public String TransferLineIDStartsWith = null; public String TransferLineIDEndsWith = null; public String TransferLineIDContains = null; public String TransferLineIDLike = null; public ArrayList TransferLineIDBetween = null; public ArrayList TransferLineIDIn = null; public String TransferID = null; public String TransferIDStartsWith = null; public String TransferIDEndsWith = null; public String TransferIDContains = null; public String TransferIDLike = null; public ArrayList TransferIDBetween = null; public ArrayList TransferIDIn = null; public String FromPartInventoryID = null; public String FromPartInventoryIDStartsWith = null; public String FromPartInventoryIDEndsWith = null; public String FromPartInventoryIDContains = null; public String FromPartInventoryIDLike = null; public ArrayList FromPartInventoryIDBetween = null; public ArrayList FromPartInventoryIDIn = null; public String FromPartInventorySOHID = null; public String FromPartInventorySOHIDStartsWith = null; public String FromPartInventorySOHIDEndsWith = null; public String FromPartInventorySOHIDContains = null; public String FromPartInventorySOHIDLike = null; public ArrayList FromPartInventorySOHIDBetween = null; public ArrayList FromPartInventorySOHIDIn = null; public String FromPartNo = null; public String FromPartNoStartsWith = null; public String FromPartNoEndsWith = null; public String FromPartNoContains = null; public String FromPartNoLike = null; public ArrayList FromPartNoBetween = null; public ArrayList FromPartNoIn = null; public String FromPartDescription = null; public String FromPartDescriptionStartsWith = null; public String FromPartDescriptionEndsWith = null; public String FromPartDescriptionContains = null; public String FromPartDescriptionLike = null; public ArrayList FromPartDescriptionBetween = null; public ArrayList FromPartDescriptionIn = null; public BigDecimal FromPartOriginalQuantity = null; public BigDecimal FromPartOriginalQuantityGreaterThanOrEqualTo = null; public BigDecimal FromPartOriginalQuantityGreaterThan = null; public BigDecimal FromPartOriginalQuantityLessThan = null; public BigDecimal FromPartOriginalQuantityLessThanOrEqualTo = null; public BigDecimal FromPartOriginalQuantityNotEqualTo = null; public ArrayList FromPartOriginalQuantityBetween = null; public ArrayList FromPartOriginalQuantityIn = null; public BigDecimal TransferQuantity = null; public BigDecimal TransferQuantityGreaterThanOrEqualTo = null; public BigDecimal TransferQuantityGreaterThan = null; public BigDecimal TransferQuantityLessThan = null; public BigDecimal TransferQuantityLessThanOrEqualTo = null; public BigDecimal TransferQuantityNotEqualTo = null; public ArrayList TransferQuantityBetween = null; public ArrayList TransferQuantityIn = null; public String ToPartInventoryID = null; public String ToPartInventoryIDStartsWith = null; public String ToPartInventoryIDEndsWith = null; public String ToPartInventoryIDContains = null; public String ToPartInventoryIDLike = null; public ArrayList ToPartInventoryIDBetween = null; public ArrayList ToPartInventoryIDIn = null; public String ToPartNo = null; public String ToPartNoStartsWith = null; public String ToPartNoEndsWith = null; public String ToPartNoContains = null; public String ToPartNoLike = null; public ArrayList ToPartNoBetween = null; public ArrayList ToPartNoIn = null; public String ToPartDescription = null; public String ToPartDescriptionStartsWith = null; public String ToPartDescriptionEndsWith = null; public String ToPartDescriptionContains = null; public String ToPartDescriptionLike = null; public ArrayList ToPartDescriptionBetween = null; public ArrayList ToPartDescriptionIn = null; public Integer TransferLineNo = null; public Integer TransferLineNoGreaterThanOrEqualTo = null; public Integer TransferLineNoGreaterThan = null; public Integer TransferLineNoLessThan = null; public Integer TransferLineNoLessThanOrEqualTo = null; public Integer TransferLineNoNotEqualTo = null; public ArrayList TransferLineNoBetween = null; public ArrayList TransferLineNoIn = null; public String ToPartSerialNo = null; public String ToPartSerialNoStartsWith = null; public String ToPartSerialNoEndsWith = null; public String ToPartSerialNoContains = null; public String ToPartSerialNoLike = null; public ArrayList ToPartSerialNoBetween = null; public ArrayList ToPartSerialNoIn = null; public String Reference = null; public String ReferenceStartsWith = null; public String ReferenceEndsWith = null; public String ReferenceContains = null; public String ReferenceLike = null; public ArrayList ReferenceBetween = null; public ArrayList ReferenceIn = null; public String ToPartInventorySOHID = null; public String ToPartInventorySOHIDStartsWith = null; public String ToPartInventorySOHIDEndsWith = null; public String ToPartInventorySOHIDContains = null; public String ToPartInventorySOHIDLike = null; public ArrayList ToPartInventorySOHIDBetween = null; public ArrayList ToPartInventorySOHIDIn = null; public Date CreatedDateTime = null; public Date CreatedDateTimeGreaterThanOrEqualTo = null; public Date CreatedDateTimeGreaterThan = null; public Date CreatedDateTimeLessThan = null; public Date CreatedDateTimeLessThanOrEqualTo = null; public Date CreatedDateTimeNotEqualTo = null; public ArrayList CreatedDateTimeBetween = null; public ArrayList CreatedDateTimeIn = null; public Date LastSavedDateTime = null; public Date LastSavedDateTimeGreaterThanOrEqualTo = null; public Date LastSavedDateTimeGreaterThan = null; public Date LastSavedDateTimeLessThan = null; public Date LastSavedDateTimeLessThanOrEqualTo = null; public Date LastSavedDateTimeNotEqualTo = null; public ArrayList LastSavedDateTimeBetween = null; public ArrayList LastSavedDateTimeIn = null; public String CreatedByStaffID = null; public String CreatedByStaffIDStartsWith = null; public String CreatedByStaffIDEndsWith = null; public String CreatedByStaffIDContains = null; public String CreatedByStaffIDLike = null; public ArrayList CreatedByStaffIDBetween = null; public ArrayList CreatedByStaffIDIn = null; public String LastSavedByStaffID = null; public String LastSavedByStaffIDStartsWith = null; public String LastSavedByStaffIDEndsWith = null; public String LastSavedByStaffIDContains = null; public String LastSavedByStaffIDLike = null; public ArrayList LastSavedByStaffIDBetween = null; public ArrayList LastSavedByStaffIDIn = null; public Short FromPartDecimalPlaces = null; public Short FromPartDecimalPlacesGreaterThanOrEqualTo = null; public Short FromPartDecimalPlacesGreaterThan = null; public Short FromPartDecimalPlacesLessThan = null; public Short FromPartDecimalPlacesLessThanOrEqualTo = null; public Short FromPartDecimalPlacesNotEqualTo = null; public ArrayList FromPartDecimalPlacesBetween = null; public ArrayList FromPartDecimalPlacesIn = null; public Short ToPartDecimalPlaces = null; public Short ToPartDecimalPlacesGreaterThanOrEqualTo = null; public Short ToPartDecimalPlacesGreaterThan = null; public Short ToPartDecimalPlacesLessThan = null; public Short ToPartDecimalPlacesLessThanOrEqualTo = null; public Short ToPartDecimalPlacesNotEqualTo = null; public ArrayList ToPartDecimalPlacesBetween = null; public ArrayList ToPartDecimalPlacesIn = null; public String FromPartInventoryValueAccountID = null; public String FromPartInventoryValueAccountIDStartsWith = null; public String FromPartInventoryValueAccountIDEndsWith = null; public String FromPartInventoryValueAccountIDContains = null; public String FromPartInventoryValueAccountIDLike = null; public ArrayList FromPartInventoryValueAccountIDBetween = null; public ArrayList FromPartInventoryValueAccountIDIn = null; public String ToPartInventoryValueAccountID = null; public String ToPartInventoryValueAccountIDStartsWith = null; public String ToPartInventoryValueAccountIDEndsWith = null; public String ToPartInventoryValueAccountIDContains = null; public String ToPartInventoryValueAccountIDLike = null; public ArrayList ToPartInventoryValueAccountIDBetween = null; public ArrayList ToPartInventoryValueAccountIDIn = null; public String FromPartWriteOnAccountID = null; public String FromPartWriteOnAccountIDStartsWith = null; public String FromPartWriteOnAccountIDEndsWith = null; public String FromPartWriteOnAccountIDContains = null; public String FromPartWriteOnAccountIDLike = null; public ArrayList FromPartWriteOnAccountIDBetween = null; public ArrayList FromPartWriteOnAccountIDIn = null; public String ToPartWriteOnAccountID = null; public String ToPartWriteOnAccountIDStartsWith = null; public String ToPartWriteOnAccountIDEndsWith = null; public String ToPartWriteOnAccountIDContains = null; public String ToPartWriteOnAccountIDLike = null; public ArrayList ToPartWriteOnAccountIDBetween = null; public ArrayList ToPartWriteOnAccountIDIn = null; public String FromPartWriteOffAccountID = null; public String FromPartWriteOffAccountIDStartsWith = null; public String FromPartWriteOffAccountIDEndsWith = null; public String FromPartWriteOffAccountIDContains = null; public String FromPartWriteOffAccountIDLike = null; public ArrayList FromPartWriteOffAccountIDBetween = null; public ArrayList FromPartWriteOffAccountIDIn = null; public String ToPartWriteOffAccountID = null; public String ToPartWriteOffAccountIDStartsWith = null; public String ToPartWriteOffAccountIDEndsWith = null; public String ToPartWriteOffAccountIDContains = null; public String ToPartWriteOffAccountIDLike = null; public ArrayList ToPartWriteOffAccountIDBetween = null; public ArrayList ToPartWriteOffAccountIDIn = null; public BigDecimal FromPartLastCost = null; public BigDecimal FromPartLastCostGreaterThanOrEqualTo = null; public BigDecimal FromPartLastCostGreaterThan = null; public BigDecimal FromPartLastCostLessThan = null; public BigDecimal FromPartLastCostLessThanOrEqualTo = null; public BigDecimal FromPartLastCostNotEqualTo = null; public ArrayList FromPartLastCostBetween = null; public ArrayList FromPartLastCostIn = null; public BigDecimal ToPartLastCost = null; public BigDecimal ToPartLastCostGreaterThanOrEqualTo = null; public BigDecimal ToPartLastCostGreaterThan = null; public BigDecimal ToPartLastCostLessThan = null; public BigDecimal ToPartLastCostLessThanOrEqualTo = null; public BigDecimal ToPartLastCostNotEqualTo = null; public ArrayList ToPartLastCostBetween = null; public ArrayList ToPartLastCostIn = null; public String ToPartBinLocation = null; public String ToPartBinLocationStartsWith = null; public String ToPartBinLocationEndsWith = null; public String ToPartBinLocationContains = null; public String ToPartBinLocationLike = null; public ArrayList ToPartBinLocationBetween = null; public ArrayList ToPartBinLocationIn = null; public String ToPartComment = null; public String ToPartCommentStartsWith = null; public String ToPartCommentEndsWith = null; public String ToPartCommentContains = null; public String ToPartCommentLike = null; public ArrayList ToPartCommentBetween = null; public ArrayList ToPartCommentIn = null; public Date ToPartExpiryDate = null; public Date ToPartExpiryDateGreaterThanOrEqualTo = null; public Date ToPartExpiryDateGreaterThan = null; public Date ToPartExpiryDateLessThan = null; public Date ToPartExpiryDateLessThanOrEqualTo = null; public Date ToPartExpiryDateNotEqualTo = null; public ArrayList ToPartExpiryDateBetween = null; public ArrayList ToPartExpiryDateIn = null; public String IN_TransferReasons_RecID = null; public String IN_TransferReasons_RecIDStartsWith = null; public String IN_TransferReasons_RecIDEndsWith = null; public String IN_TransferReasons_RecIDContains = null; public String IN_TransferReasons_RecIDLike = null; public ArrayList IN_TransferReasons_RecIDBetween = null; public ArrayList IN_TransferReasons_RecIDIn = null; public String getTransferLineID() { return TransferLineID; } public IN_TransferLinesQuery setTransferLineID(String value) { this.TransferLineID = value; return this; } public String getTransferLineIDStartsWith() { return TransferLineIDStartsWith; } public IN_TransferLinesQuery setTransferLineIDStartsWith(String value) { this.TransferLineIDStartsWith = value; return this; } public String getTransferLineIDEndsWith() { return TransferLineIDEndsWith; } public IN_TransferLinesQuery setTransferLineIDEndsWith(String value) { this.TransferLineIDEndsWith = value; return this; } public String getTransferLineIDContains() { return TransferLineIDContains; } public IN_TransferLinesQuery setTransferLineIDContains(String value) { this.TransferLineIDContains = value; return this; } public String getTransferLineIDLike() { return TransferLineIDLike; } public IN_TransferLinesQuery setTransferLineIDLike(String value) { this.TransferLineIDLike = value; return this; } public ArrayList getTransferLineIDBetween() { return TransferLineIDBetween; } public IN_TransferLinesQuery setTransferLineIDBetween(ArrayList value) { this.TransferLineIDBetween = value; return this; } public ArrayList getTransferLineIDIn() { return TransferLineIDIn; } public IN_TransferLinesQuery setTransferLineIDIn(ArrayList value) { this.TransferLineIDIn = value; return this; } public String getTransferID() { return TransferID; } public IN_TransferLinesQuery setTransferID(String value) { this.TransferID = value; return this; } public String getTransferIDStartsWith() { return TransferIDStartsWith; } public IN_TransferLinesQuery setTransferIDStartsWith(String value) { this.TransferIDStartsWith = value; return this; } public String getTransferIDEndsWith() { return TransferIDEndsWith; } public IN_TransferLinesQuery setTransferIDEndsWith(String value) { this.TransferIDEndsWith = value; return this; } public String getTransferIDContains() { return TransferIDContains; } public IN_TransferLinesQuery setTransferIDContains(String value) { this.TransferIDContains = value; return this; } public String getTransferIDLike() { return TransferIDLike; } public IN_TransferLinesQuery setTransferIDLike(String value) { this.TransferIDLike = value; return this; } public ArrayList getTransferIDBetween() { return TransferIDBetween; } public IN_TransferLinesQuery setTransferIDBetween(ArrayList value) { this.TransferIDBetween = value; return this; } public ArrayList getTransferIDIn() { return TransferIDIn; } public IN_TransferLinesQuery setTransferIDIn(ArrayList value) { this.TransferIDIn = value; return this; } public String getFromPartInventoryID() { return FromPartInventoryID; } public IN_TransferLinesQuery setFromPartInventoryID(String value) { this.FromPartInventoryID = value; return this; } public String getFromPartInventoryIDStartsWith() { return FromPartInventoryIDStartsWith; } public IN_TransferLinesQuery setFromPartInventoryIDStartsWith(String value) { this.FromPartInventoryIDStartsWith = value; return this; } public String getFromPartInventoryIDEndsWith() { return FromPartInventoryIDEndsWith; } public IN_TransferLinesQuery setFromPartInventoryIDEndsWith(String value) { this.FromPartInventoryIDEndsWith = value; return this; } public String getFromPartInventoryIDContains() { return FromPartInventoryIDContains; } public IN_TransferLinesQuery setFromPartInventoryIDContains(String value) { this.FromPartInventoryIDContains = value; return this; } public String getFromPartInventoryIDLike() { return FromPartInventoryIDLike; } public IN_TransferLinesQuery setFromPartInventoryIDLike(String value) { this.FromPartInventoryIDLike = value; return this; } public ArrayList getFromPartInventoryIDBetween() { return FromPartInventoryIDBetween; } public IN_TransferLinesQuery setFromPartInventoryIDBetween(ArrayList value) { this.FromPartInventoryIDBetween = value; return this; } public ArrayList getFromPartInventoryIDIn() { return FromPartInventoryIDIn; } public IN_TransferLinesQuery setFromPartInventoryIDIn(ArrayList value) { this.FromPartInventoryIDIn = value; return this; } public String getFromPartInventorySOHID() { return FromPartInventorySOHID; } public IN_TransferLinesQuery setFromPartInventorySOHID(String value) { this.FromPartInventorySOHID = value; return this; } public String getFromPartInventorySOHIDStartsWith() { return FromPartInventorySOHIDStartsWith; } public IN_TransferLinesQuery setFromPartInventorySOHIDStartsWith(String value) { this.FromPartInventorySOHIDStartsWith = value; return this; } public String getFromPartInventorySOHIDEndsWith() { return FromPartInventorySOHIDEndsWith; } public IN_TransferLinesQuery setFromPartInventorySOHIDEndsWith(String value) { this.FromPartInventorySOHIDEndsWith = value; return this; } public String getFromPartInventorySOHIDContains() { return FromPartInventorySOHIDContains; } public IN_TransferLinesQuery setFromPartInventorySOHIDContains(String value) { this.FromPartInventorySOHIDContains = value; return this; } public String getFromPartInventorySOHIDLike() { return FromPartInventorySOHIDLike; } public IN_TransferLinesQuery setFromPartInventorySOHIDLike(String value) { this.FromPartInventorySOHIDLike = value; return this; } public ArrayList getFromPartInventorySOHIDBetween() { return FromPartInventorySOHIDBetween; } public IN_TransferLinesQuery setFromPartInventorySOHIDBetween(ArrayList value) { this.FromPartInventorySOHIDBetween = value; return this; } public ArrayList getFromPartInventorySOHIDIn() { return FromPartInventorySOHIDIn; } public IN_TransferLinesQuery setFromPartInventorySOHIDIn(ArrayList value) { this.FromPartInventorySOHIDIn = value; return this; } public String getFromPartNo() { return FromPartNo; } public IN_TransferLinesQuery setFromPartNo(String value) { this.FromPartNo = value; return this; } public String getFromPartNoStartsWith() { return FromPartNoStartsWith; } public IN_TransferLinesQuery setFromPartNoStartsWith(String value) { this.FromPartNoStartsWith = value; return this; } public String getFromPartNoEndsWith() { return FromPartNoEndsWith; } public IN_TransferLinesQuery setFromPartNoEndsWith(String value) { this.FromPartNoEndsWith = value; return this; } public String getFromPartNoContains() { return FromPartNoContains; } public IN_TransferLinesQuery setFromPartNoContains(String value) { this.FromPartNoContains = value; return this; } public String getFromPartNoLike() { return FromPartNoLike; } public IN_TransferLinesQuery setFromPartNoLike(String value) { this.FromPartNoLike = value; return this; } public ArrayList getFromPartNoBetween() { return FromPartNoBetween; } public IN_TransferLinesQuery setFromPartNoBetween(ArrayList value) { this.FromPartNoBetween = value; return this; } public ArrayList getFromPartNoIn() { return FromPartNoIn; } public IN_TransferLinesQuery setFromPartNoIn(ArrayList value) { this.FromPartNoIn = value; return this; } public String getFromPartDescription() { return FromPartDescription; } public IN_TransferLinesQuery setFromPartDescription(String value) { this.FromPartDescription = value; return this; } public String getFromPartDescriptionStartsWith() { return FromPartDescriptionStartsWith; } public IN_TransferLinesQuery setFromPartDescriptionStartsWith(String value) { this.FromPartDescriptionStartsWith = value; return this; } public String getFromPartDescriptionEndsWith() { return FromPartDescriptionEndsWith; } public IN_TransferLinesQuery setFromPartDescriptionEndsWith(String value) { this.FromPartDescriptionEndsWith = value; return this; } public String getFromPartDescriptionContains() { return FromPartDescriptionContains; } public IN_TransferLinesQuery setFromPartDescriptionContains(String value) { this.FromPartDescriptionContains = value; return this; } public String getFromPartDescriptionLike() { return FromPartDescriptionLike; } public IN_TransferLinesQuery setFromPartDescriptionLike(String value) { this.FromPartDescriptionLike = value; return this; } public ArrayList getFromPartDescriptionBetween() { return FromPartDescriptionBetween; } public IN_TransferLinesQuery setFromPartDescriptionBetween(ArrayList value) { this.FromPartDescriptionBetween = value; return this; } public ArrayList getFromPartDescriptionIn() { return FromPartDescriptionIn; } public IN_TransferLinesQuery setFromPartDescriptionIn(ArrayList value) { this.FromPartDescriptionIn = value; return this; } public BigDecimal getFromPartOriginalQuantity() { return FromPartOriginalQuantity; } public IN_TransferLinesQuery setFromPartOriginalQuantity(BigDecimal value) { this.FromPartOriginalQuantity = value; return this; } public BigDecimal getFromPartOriginalQuantityGreaterThanOrEqualTo() { return FromPartOriginalQuantityGreaterThanOrEqualTo; } public IN_TransferLinesQuery setFromPartOriginalQuantityGreaterThanOrEqualTo(BigDecimal value) { this.FromPartOriginalQuantityGreaterThanOrEqualTo = value; return this; } public BigDecimal getFromPartOriginalQuantityGreaterThan() { return FromPartOriginalQuantityGreaterThan; } public IN_TransferLinesQuery setFromPartOriginalQuantityGreaterThan(BigDecimal value) { this.FromPartOriginalQuantityGreaterThan = value; return this; } public BigDecimal getFromPartOriginalQuantityLessThan() { return FromPartOriginalQuantityLessThan; } public IN_TransferLinesQuery setFromPartOriginalQuantityLessThan(BigDecimal value) { this.FromPartOriginalQuantityLessThan = value; return this; } public BigDecimal getFromPartOriginalQuantityLessThanOrEqualTo() { return FromPartOriginalQuantityLessThanOrEqualTo; } public IN_TransferLinesQuery setFromPartOriginalQuantityLessThanOrEqualTo(BigDecimal value) { this.FromPartOriginalQuantityLessThanOrEqualTo = value; return this; } public BigDecimal getFromPartOriginalQuantityNotEqualTo() { return FromPartOriginalQuantityNotEqualTo; } public IN_TransferLinesQuery setFromPartOriginalQuantityNotEqualTo(BigDecimal value) { this.FromPartOriginalQuantityNotEqualTo = value; return this; } public ArrayList getFromPartOriginalQuantityBetween() { return FromPartOriginalQuantityBetween; } public IN_TransferLinesQuery setFromPartOriginalQuantityBetween(ArrayList value) { this.FromPartOriginalQuantityBetween = value; return this; } public ArrayList getFromPartOriginalQuantityIn() { return FromPartOriginalQuantityIn; } public IN_TransferLinesQuery setFromPartOriginalQuantityIn(ArrayList value) { this.FromPartOriginalQuantityIn = value; return this; } public BigDecimal getTransferQuantity() { return TransferQuantity; } public IN_TransferLinesQuery setTransferQuantity(BigDecimal value) { this.TransferQuantity = value; return this; } public BigDecimal getTransferQuantityGreaterThanOrEqualTo() { return TransferQuantityGreaterThanOrEqualTo; } public IN_TransferLinesQuery setTransferQuantityGreaterThanOrEqualTo(BigDecimal value) { this.TransferQuantityGreaterThanOrEqualTo = value; return this; } public BigDecimal getTransferQuantityGreaterThan() { return TransferQuantityGreaterThan; } public IN_TransferLinesQuery setTransferQuantityGreaterThan(BigDecimal value) { this.TransferQuantityGreaterThan = value; return this; } public BigDecimal getTransferQuantityLessThan() { return TransferQuantityLessThan; } public IN_TransferLinesQuery setTransferQuantityLessThan(BigDecimal value) { this.TransferQuantityLessThan = value; return this; } public BigDecimal getTransferQuantityLessThanOrEqualTo() { return TransferQuantityLessThanOrEqualTo; } public IN_TransferLinesQuery setTransferQuantityLessThanOrEqualTo(BigDecimal value) { this.TransferQuantityLessThanOrEqualTo = value; return this; } public BigDecimal getTransferQuantityNotEqualTo() { return TransferQuantityNotEqualTo; } public IN_TransferLinesQuery setTransferQuantityNotEqualTo(BigDecimal value) { this.TransferQuantityNotEqualTo = value; return this; } public ArrayList getTransferQuantityBetween() { return TransferQuantityBetween; } public IN_TransferLinesQuery setTransferQuantityBetween(ArrayList value) { this.TransferQuantityBetween = value; return this; } public ArrayList getTransferQuantityIn() { return TransferQuantityIn; } public IN_TransferLinesQuery setTransferQuantityIn(ArrayList value) { this.TransferQuantityIn = value; return this; } public String getToPartInventoryID() { return ToPartInventoryID; } public IN_TransferLinesQuery setToPartInventoryID(String value) { this.ToPartInventoryID = value; return this; } public String getToPartInventoryIDStartsWith() { return ToPartInventoryIDStartsWith; } public IN_TransferLinesQuery setToPartInventoryIDStartsWith(String value) { this.ToPartInventoryIDStartsWith = value; return this; } public String getToPartInventoryIDEndsWith() { return ToPartInventoryIDEndsWith; } public IN_TransferLinesQuery setToPartInventoryIDEndsWith(String value) { this.ToPartInventoryIDEndsWith = value; return this; } public String getToPartInventoryIDContains() { return ToPartInventoryIDContains; } public IN_TransferLinesQuery setToPartInventoryIDContains(String value) { this.ToPartInventoryIDContains = value; return this; } public String getToPartInventoryIDLike() { return ToPartInventoryIDLike; } public IN_TransferLinesQuery setToPartInventoryIDLike(String value) { this.ToPartInventoryIDLike = value; return this; } public ArrayList getToPartInventoryIDBetween() { return ToPartInventoryIDBetween; } public IN_TransferLinesQuery setToPartInventoryIDBetween(ArrayList value) { this.ToPartInventoryIDBetween = value; return this; } public ArrayList getToPartInventoryIDIn() { return ToPartInventoryIDIn; } public IN_TransferLinesQuery setToPartInventoryIDIn(ArrayList value) { this.ToPartInventoryIDIn = value; return this; } public String getToPartNo() { return ToPartNo; } public IN_TransferLinesQuery setToPartNo(String value) { this.ToPartNo = value; return this; } public String getToPartNoStartsWith() { return ToPartNoStartsWith; } public IN_TransferLinesQuery setToPartNoStartsWith(String value) { this.ToPartNoStartsWith = value; return this; } public String getToPartNoEndsWith() { return ToPartNoEndsWith; } public IN_TransferLinesQuery setToPartNoEndsWith(String value) { this.ToPartNoEndsWith = value; return this; } public String getToPartNoContains() { return ToPartNoContains; } public IN_TransferLinesQuery setToPartNoContains(String value) { this.ToPartNoContains = value; return this; } public String getToPartNoLike() { return ToPartNoLike; } public IN_TransferLinesQuery setToPartNoLike(String value) { this.ToPartNoLike = value; return this; } public ArrayList getToPartNoBetween() { return ToPartNoBetween; } public IN_TransferLinesQuery setToPartNoBetween(ArrayList value) { this.ToPartNoBetween = value; return this; } public ArrayList getToPartNoIn() { return ToPartNoIn; } public IN_TransferLinesQuery setToPartNoIn(ArrayList value) { this.ToPartNoIn = value; return this; } public String getToPartDescription() { return ToPartDescription; } public IN_TransferLinesQuery setToPartDescription(String value) { this.ToPartDescription = value; return this; } public String getToPartDescriptionStartsWith() { return ToPartDescriptionStartsWith; } public IN_TransferLinesQuery setToPartDescriptionStartsWith(String value) { this.ToPartDescriptionStartsWith = value; return this; } public String getToPartDescriptionEndsWith() { return ToPartDescriptionEndsWith; } public IN_TransferLinesQuery setToPartDescriptionEndsWith(String value) { this.ToPartDescriptionEndsWith = value; return this; } public String getToPartDescriptionContains() { return ToPartDescriptionContains; } public IN_TransferLinesQuery setToPartDescriptionContains(String value) { this.ToPartDescriptionContains = value; return this; } public String getToPartDescriptionLike() { return ToPartDescriptionLike; } public IN_TransferLinesQuery setToPartDescriptionLike(String value) { this.ToPartDescriptionLike = value; return this; } public ArrayList getToPartDescriptionBetween() { return ToPartDescriptionBetween; } public IN_TransferLinesQuery setToPartDescriptionBetween(ArrayList value) { this.ToPartDescriptionBetween = value; return this; } public ArrayList getToPartDescriptionIn() { return ToPartDescriptionIn; } public IN_TransferLinesQuery setToPartDescriptionIn(ArrayList value) { this.ToPartDescriptionIn = value; return this; } public Integer getTransferLineNo() { return TransferLineNo; } public IN_TransferLinesQuery setTransferLineNo(Integer value) { this.TransferLineNo = value; return this; } public Integer getTransferLineNoGreaterThanOrEqualTo() { return TransferLineNoGreaterThanOrEqualTo; } public IN_TransferLinesQuery setTransferLineNoGreaterThanOrEqualTo(Integer value) { this.TransferLineNoGreaterThanOrEqualTo = value; return this; } public Integer getTransferLineNoGreaterThan() { return TransferLineNoGreaterThan; } public IN_TransferLinesQuery setTransferLineNoGreaterThan(Integer value) { this.TransferLineNoGreaterThan = value; return this; } public Integer getTransferLineNoLessThan() { return TransferLineNoLessThan; } public IN_TransferLinesQuery setTransferLineNoLessThan(Integer value) { this.TransferLineNoLessThan = value; return this; } public Integer getTransferLineNoLessThanOrEqualTo() { return TransferLineNoLessThanOrEqualTo; } public IN_TransferLinesQuery setTransferLineNoLessThanOrEqualTo(Integer value) { this.TransferLineNoLessThanOrEqualTo = value; return this; } public Integer getTransferLineNoNotEqualTo() { return TransferLineNoNotEqualTo; } public IN_TransferLinesQuery setTransferLineNoNotEqualTo(Integer value) { this.TransferLineNoNotEqualTo = value; return this; } public ArrayList getTransferLineNoBetween() { return TransferLineNoBetween; } public IN_TransferLinesQuery setTransferLineNoBetween(ArrayList value) { this.TransferLineNoBetween = value; return this; } public ArrayList getTransferLineNoIn() { return TransferLineNoIn; } public IN_TransferLinesQuery setTransferLineNoIn(ArrayList value) { this.TransferLineNoIn = value; return this; } public String getToPartSerialNo() { return ToPartSerialNo; } public IN_TransferLinesQuery setToPartSerialNo(String value) { this.ToPartSerialNo = value; return this; } public String getToPartSerialNoStartsWith() { return ToPartSerialNoStartsWith; } public IN_TransferLinesQuery setToPartSerialNoStartsWith(String value) { this.ToPartSerialNoStartsWith = value; return this; } public String getToPartSerialNoEndsWith() { return ToPartSerialNoEndsWith; } public IN_TransferLinesQuery setToPartSerialNoEndsWith(String value) { this.ToPartSerialNoEndsWith = value; return this; } public String getToPartSerialNoContains() { return ToPartSerialNoContains; } public IN_TransferLinesQuery setToPartSerialNoContains(String value) { this.ToPartSerialNoContains = value; return this; } public String getToPartSerialNoLike() { return ToPartSerialNoLike; } public IN_TransferLinesQuery setToPartSerialNoLike(String value) { this.ToPartSerialNoLike = value; return this; } public ArrayList getToPartSerialNoBetween() { return ToPartSerialNoBetween; } public IN_TransferLinesQuery setToPartSerialNoBetween(ArrayList value) { this.ToPartSerialNoBetween = value; return this; } public ArrayList getToPartSerialNoIn() { return ToPartSerialNoIn; } public IN_TransferLinesQuery setToPartSerialNoIn(ArrayList value) { this.ToPartSerialNoIn = value; return this; } public String getReference() { return Reference; } public IN_TransferLinesQuery setReference(String value) { this.Reference = value; return this; } public String getReferenceStartsWith() { return ReferenceStartsWith; } public IN_TransferLinesQuery setReferenceStartsWith(String value) { this.ReferenceStartsWith = value; return this; } public String getReferenceEndsWith() { return ReferenceEndsWith; } public IN_TransferLinesQuery setReferenceEndsWith(String value) { this.ReferenceEndsWith = value; return this; } public String getReferenceContains() { return ReferenceContains; } public IN_TransferLinesQuery setReferenceContains(String value) { this.ReferenceContains = value; return this; } public String getReferenceLike() { return ReferenceLike; } public IN_TransferLinesQuery setReferenceLike(String value) { this.ReferenceLike = value; return this; } public ArrayList getReferenceBetween() { return ReferenceBetween; } public IN_TransferLinesQuery setReferenceBetween(ArrayList value) { this.ReferenceBetween = value; return this; } public ArrayList getReferenceIn() { return ReferenceIn; } public IN_TransferLinesQuery setReferenceIn(ArrayList value) { this.ReferenceIn = value; return this; } public String getToPartInventorySOHID() { return ToPartInventorySOHID; } public IN_TransferLinesQuery setToPartInventorySOHID(String value) { this.ToPartInventorySOHID = value; return this; } public String getToPartInventorySOHIDStartsWith() { return ToPartInventorySOHIDStartsWith; } public IN_TransferLinesQuery setToPartInventorySOHIDStartsWith(String value) { this.ToPartInventorySOHIDStartsWith = value; return this; } public String getToPartInventorySOHIDEndsWith() { return ToPartInventorySOHIDEndsWith; } public IN_TransferLinesQuery setToPartInventorySOHIDEndsWith(String value) { this.ToPartInventorySOHIDEndsWith = value; return this; } public String getToPartInventorySOHIDContains() { return ToPartInventorySOHIDContains; } public IN_TransferLinesQuery setToPartInventorySOHIDContains(String value) { this.ToPartInventorySOHIDContains = value; return this; } public String getToPartInventorySOHIDLike() { return ToPartInventorySOHIDLike; } public IN_TransferLinesQuery setToPartInventorySOHIDLike(String value) { this.ToPartInventorySOHIDLike = value; return this; } public ArrayList getToPartInventorySOHIDBetween() { return ToPartInventorySOHIDBetween; } public IN_TransferLinesQuery setToPartInventorySOHIDBetween(ArrayList value) { this.ToPartInventorySOHIDBetween = value; return this; } public ArrayList getToPartInventorySOHIDIn() { return ToPartInventorySOHIDIn; } public IN_TransferLinesQuery setToPartInventorySOHIDIn(ArrayList value) { this.ToPartInventorySOHIDIn = value; return this; } public Date getCreatedDateTime() { return CreatedDateTime; } public IN_TransferLinesQuery setCreatedDateTime(Date value) { this.CreatedDateTime = value; return this; } public Date getCreatedDateTimeGreaterThanOrEqualTo() { return CreatedDateTimeGreaterThanOrEqualTo; } public IN_TransferLinesQuery setCreatedDateTimeGreaterThanOrEqualTo(Date value) { this.CreatedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getCreatedDateTimeGreaterThan() { return CreatedDateTimeGreaterThan; } public IN_TransferLinesQuery setCreatedDateTimeGreaterThan(Date value) { this.CreatedDateTimeGreaterThan = value; return this; } public Date getCreatedDateTimeLessThan() { return CreatedDateTimeLessThan; } public IN_TransferLinesQuery setCreatedDateTimeLessThan(Date value) { this.CreatedDateTimeLessThan = value; return this; } public Date getCreatedDateTimeLessThanOrEqualTo() { return CreatedDateTimeLessThanOrEqualTo; } public IN_TransferLinesQuery setCreatedDateTimeLessThanOrEqualTo(Date value) { this.CreatedDateTimeLessThanOrEqualTo = value; return this; } public Date getCreatedDateTimeNotEqualTo() { return CreatedDateTimeNotEqualTo; } public IN_TransferLinesQuery setCreatedDateTimeNotEqualTo(Date value) { this.CreatedDateTimeNotEqualTo = value; return this; } public ArrayList getCreatedDateTimeBetween() { return CreatedDateTimeBetween; } public IN_TransferLinesQuery setCreatedDateTimeBetween(ArrayList value) { this.CreatedDateTimeBetween = value; return this; } public ArrayList getCreatedDateTimeIn() { return CreatedDateTimeIn; } public IN_TransferLinesQuery setCreatedDateTimeIn(ArrayList value) { this.CreatedDateTimeIn = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public IN_TransferLinesQuery setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getLastSavedDateTimeGreaterThanOrEqualTo() { return LastSavedDateTimeGreaterThanOrEqualTo; } public IN_TransferLinesQuery setLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.LastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeGreaterThan() { return LastSavedDateTimeGreaterThan; } public IN_TransferLinesQuery setLastSavedDateTimeGreaterThan(Date value) { this.LastSavedDateTimeGreaterThan = value; return this; } public Date getLastSavedDateTimeLessThan() { return LastSavedDateTimeLessThan; } public IN_TransferLinesQuery setLastSavedDateTimeLessThan(Date value) { this.LastSavedDateTimeLessThan = value; return this; } public Date getLastSavedDateTimeLessThanOrEqualTo() { return LastSavedDateTimeLessThanOrEqualTo; } public IN_TransferLinesQuery setLastSavedDateTimeLessThanOrEqualTo(Date value) { this.LastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeNotEqualTo() { return LastSavedDateTimeNotEqualTo; } public IN_TransferLinesQuery setLastSavedDateTimeNotEqualTo(Date value) { this.LastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getLastSavedDateTimeBetween() { return LastSavedDateTimeBetween; } public IN_TransferLinesQuery setLastSavedDateTimeBetween(ArrayList value) { this.LastSavedDateTimeBetween = value; return this; } public ArrayList getLastSavedDateTimeIn() { return LastSavedDateTimeIn; } public IN_TransferLinesQuery setLastSavedDateTimeIn(ArrayList value) { this.LastSavedDateTimeIn = value; return this; } public String getCreatedByStaffID() { return CreatedByStaffID; } public IN_TransferLinesQuery setCreatedByStaffID(String value) { this.CreatedByStaffID = value; return this; } public String getCreatedByStaffIDStartsWith() { return CreatedByStaffIDStartsWith; } public IN_TransferLinesQuery setCreatedByStaffIDStartsWith(String value) { this.CreatedByStaffIDStartsWith = value; return this; } public String getCreatedByStaffIDEndsWith() { return CreatedByStaffIDEndsWith; } public IN_TransferLinesQuery setCreatedByStaffIDEndsWith(String value) { this.CreatedByStaffIDEndsWith = value; return this; } public String getCreatedByStaffIDContains() { return CreatedByStaffIDContains; } public IN_TransferLinesQuery setCreatedByStaffIDContains(String value) { this.CreatedByStaffIDContains = value; return this; } public String getCreatedByStaffIDLike() { return CreatedByStaffIDLike; } public IN_TransferLinesQuery setCreatedByStaffIDLike(String value) { this.CreatedByStaffIDLike = value; return this; } public ArrayList getCreatedByStaffIDBetween() { return CreatedByStaffIDBetween; } public IN_TransferLinesQuery setCreatedByStaffIDBetween(ArrayList value) { this.CreatedByStaffIDBetween = value; return this; } public ArrayList getCreatedByStaffIDIn() { return CreatedByStaffIDIn; } public IN_TransferLinesQuery setCreatedByStaffIDIn(ArrayList value) { this.CreatedByStaffIDIn = value; return this; } public String getLastSavedByStaffID() { return LastSavedByStaffID; } public IN_TransferLinesQuery setLastSavedByStaffID(String value) { this.LastSavedByStaffID = value; return this; } public String getLastSavedByStaffIDStartsWith() { return LastSavedByStaffIDStartsWith; } public IN_TransferLinesQuery setLastSavedByStaffIDStartsWith(String value) { this.LastSavedByStaffIDStartsWith = value; return this; } public String getLastSavedByStaffIDEndsWith() { return LastSavedByStaffIDEndsWith; } public IN_TransferLinesQuery setLastSavedByStaffIDEndsWith(String value) { this.LastSavedByStaffIDEndsWith = value; return this; } public String getLastSavedByStaffIDContains() { return LastSavedByStaffIDContains; } public IN_TransferLinesQuery setLastSavedByStaffIDContains(String value) { this.LastSavedByStaffIDContains = value; return this; } public String getLastSavedByStaffIDLike() { return LastSavedByStaffIDLike; } public IN_TransferLinesQuery setLastSavedByStaffIDLike(String value) { this.LastSavedByStaffIDLike = value; return this; } public ArrayList getLastSavedByStaffIDBetween() { return LastSavedByStaffIDBetween; } public IN_TransferLinesQuery setLastSavedByStaffIDBetween(ArrayList value) { this.LastSavedByStaffIDBetween = value; return this; } public ArrayList getLastSavedByStaffIDIn() { return LastSavedByStaffIDIn; } public IN_TransferLinesQuery setLastSavedByStaffIDIn(ArrayList value) { this.LastSavedByStaffIDIn = value; return this; } public Short getFromPartDecimalPlaces() { return FromPartDecimalPlaces; } public IN_TransferLinesQuery setFromPartDecimalPlaces(Short value) { this.FromPartDecimalPlaces = value; return this; } public Short getFromPartDecimalPlacesGreaterThanOrEqualTo() { return FromPartDecimalPlacesGreaterThanOrEqualTo; } public IN_TransferLinesQuery setFromPartDecimalPlacesGreaterThanOrEqualTo(Short value) { this.FromPartDecimalPlacesGreaterThanOrEqualTo = value; return this; } public Short getFromPartDecimalPlacesGreaterThan() { return FromPartDecimalPlacesGreaterThan; } public IN_TransferLinesQuery setFromPartDecimalPlacesGreaterThan(Short value) { this.FromPartDecimalPlacesGreaterThan = value; return this; } public Short getFromPartDecimalPlacesLessThan() { return FromPartDecimalPlacesLessThan; } public IN_TransferLinesQuery setFromPartDecimalPlacesLessThan(Short value) { this.FromPartDecimalPlacesLessThan = value; return this; } public Short getFromPartDecimalPlacesLessThanOrEqualTo() { return FromPartDecimalPlacesLessThanOrEqualTo; } public IN_TransferLinesQuery setFromPartDecimalPlacesLessThanOrEqualTo(Short value) { this.FromPartDecimalPlacesLessThanOrEqualTo = value; return this; } public Short getFromPartDecimalPlacesNotEqualTo() { return FromPartDecimalPlacesNotEqualTo; } public IN_TransferLinesQuery setFromPartDecimalPlacesNotEqualTo(Short value) { this.FromPartDecimalPlacesNotEqualTo = value; return this; } public ArrayList getFromPartDecimalPlacesBetween() { return FromPartDecimalPlacesBetween; } public IN_TransferLinesQuery setFromPartDecimalPlacesBetween(ArrayList value) { this.FromPartDecimalPlacesBetween = value; return this; } public ArrayList getFromPartDecimalPlacesIn() { return FromPartDecimalPlacesIn; } public IN_TransferLinesQuery setFromPartDecimalPlacesIn(ArrayList value) { this.FromPartDecimalPlacesIn = value; return this; } public Short getToPartDecimalPlaces() { return ToPartDecimalPlaces; } public IN_TransferLinesQuery setToPartDecimalPlaces(Short value) { this.ToPartDecimalPlaces = value; return this; } public Short getToPartDecimalPlacesGreaterThanOrEqualTo() { return ToPartDecimalPlacesGreaterThanOrEqualTo; } public IN_TransferLinesQuery setToPartDecimalPlacesGreaterThanOrEqualTo(Short value) { this.ToPartDecimalPlacesGreaterThanOrEqualTo = value; return this; } public Short getToPartDecimalPlacesGreaterThan() { return ToPartDecimalPlacesGreaterThan; } public IN_TransferLinesQuery setToPartDecimalPlacesGreaterThan(Short value) { this.ToPartDecimalPlacesGreaterThan = value; return this; } public Short getToPartDecimalPlacesLessThan() { return ToPartDecimalPlacesLessThan; } public IN_TransferLinesQuery setToPartDecimalPlacesLessThan(Short value) { this.ToPartDecimalPlacesLessThan = value; return this; } public Short getToPartDecimalPlacesLessThanOrEqualTo() { return ToPartDecimalPlacesLessThanOrEqualTo; } public IN_TransferLinesQuery setToPartDecimalPlacesLessThanOrEqualTo(Short value) { this.ToPartDecimalPlacesLessThanOrEqualTo = value; return this; } public Short getToPartDecimalPlacesNotEqualTo() { return ToPartDecimalPlacesNotEqualTo; } public IN_TransferLinesQuery setToPartDecimalPlacesNotEqualTo(Short value) { this.ToPartDecimalPlacesNotEqualTo = value; return this; } public ArrayList getToPartDecimalPlacesBetween() { return ToPartDecimalPlacesBetween; } public IN_TransferLinesQuery setToPartDecimalPlacesBetween(ArrayList value) { this.ToPartDecimalPlacesBetween = value; return this; } public ArrayList getToPartDecimalPlacesIn() { return ToPartDecimalPlacesIn; } public IN_TransferLinesQuery setToPartDecimalPlacesIn(ArrayList value) { this.ToPartDecimalPlacesIn = value; return this; } public String getFromPartInventoryValueAccountID() { return FromPartInventoryValueAccountID; } public IN_TransferLinesQuery setFromPartInventoryValueAccountID(String value) { this.FromPartInventoryValueAccountID = value; return this; } public String getFromPartInventoryValueAccountIDStartsWith() { return FromPartInventoryValueAccountIDStartsWith; } public IN_TransferLinesQuery setFromPartInventoryValueAccountIDStartsWith(String value) { this.FromPartInventoryValueAccountIDStartsWith = value; return this; } public String getFromPartInventoryValueAccountIDEndsWith() { return FromPartInventoryValueAccountIDEndsWith; } public IN_TransferLinesQuery setFromPartInventoryValueAccountIDEndsWith(String value) { this.FromPartInventoryValueAccountIDEndsWith = value; return this; } public String getFromPartInventoryValueAccountIDContains() { return FromPartInventoryValueAccountIDContains; } public IN_TransferLinesQuery setFromPartInventoryValueAccountIDContains(String value) { this.FromPartInventoryValueAccountIDContains = value; return this; } public String getFromPartInventoryValueAccountIDLike() { return FromPartInventoryValueAccountIDLike; } public IN_TransferLinesQuery setFromPartInventoryValueAccountIDLike(String value) { this.FromPartInventoryValueAccountIDLike = value; return this; } public ArrayList getFromPartInventoryValueAccountIDBetween() { return FromPartInventoryValueAccountIDBetween; } public IN_TransferLinesQuery setFromPartInventoryValueAccountIDBetween(ArrayList value) { this.FromPartInventoryValueAccountIDBetween = value; return this; } public ArrayList getFromPartInventoryValueAccountIDIn() { return FromPartInventoryValueAccountIDIn; } public IN_TransferLinesQuery setFromPartInventoryValueAccountIDIn(ArrayList value) { this.FromPartInventoryValueAccountIDIn = value; return this; } public String getToPartInventoryValueAccountID() { return ToPartInventoryValueAccountID; } public IN_TransferLinesQuery setToPartInventoryValueAccountID(String value) { this.ToPartInventoryValueAccountID = value; return this; } public String getToPartInventoryValueAccountIDStartsWith() { return ToPartInventoryValueAccountIDStartsWith; } public IN_TransferLinesQuery setToPartInventoryValueAccountIDStartsWith(String value) { this.ToPartInventoryValueAccountIDStartsWith = value; return this; } public String getToPartInventoryValueAccountIDEndsWith() { return ToPartInventoryValueAccountIDEndsWith; } public IN_TransferLinesQuery setToPartInventoryValueAccountIDEndsWith(String value) { this.ToPartInventoryValueAccountIDEndsWith = value; return this; } public String getToPartInventoryValueAccountIDContains() { return ToPartInventoryValueAccountIDContains; } public IN_TransferLinesQuery setToPartInventoryValueAccountIDContains(String value) { this.ToPartInventoryValueAccountIDContains = value; return this; } public String getToPartInventoryValueAccountIDLike() { return ToPartInventoryValueAccountIDLike; } public IN_TransferLinesQuery setToPartInventoryValueAccountIDLike(String value) { this.ToPartInventoryValueAccountIDLike = value; return this; } public ArrayList getToPartInventoryValueAccountIDBetween() { return ToPartInventoryValueAccountIDBetween; } public IN_TransferLinesQuery setToPartInventoryValueAccountIDBetween(ArrayList value) { this.ToPartInventoryValueAccountIDBetween = value; return this; } public ArrayList getToPartInventoryValueAccountIDIn() { return ToPartInventoryValueAccountIDIn; } public IN_TransferLinesQuery setToPartInventoryValueAccountIDIn(ArrayList value) { this.ToPartInventoryValueAccountIDIn = value; return this; } public String getFromPartWriteOnAccountID() { return FromPartWriteOnAccountID; } public IN_TransferLinesQuery setFromPartWriteOnAccountID(String value) { this.FromPartWriteOnAccountID = value; return this; } public String getFromPartWriteOnAccountIDStartsWith() { return FromPartWriteOnAccountIDStartsWith; } public IN_TransferLinesQuery setFromPartWriteOnAccountIDStartsWith(String value) { this.FromPartWriteOnAccountIDStartsWith = value; return this; } public String getFromPartWriteOnAccountIDEndsWith() { return FromPartWriteOnAccountIDEndsWith; } public IN_TransferLinesQuery setFromPartWriteOnAccountIDEndsWith(String value) { this.FromPartWriteOnAccountIDEndsWith = value; return this; } public String getFromPartWriteOnAccountIDContains() { return FromPartWriteOnAccountIDContains; } public IN_TransferLinesQuery setFromPartWriteOnAccountIDContains(String value) { this.FromPartWriteOnAccountIDContains = value; return this; } public String getFromPartWriteOnAccountIDLike() { return FromPartWriteOnAccountIDLike; } public IN_TransferLinesQuery setFromPartWriteOnAccountIDLike(String value) { this.FromPartWriteOnAccountIDLike = value; return this; } public ArrayList getFromPartWriteOnAccountIDBetween() { return FromPartWriteOnAccountIDBetween; } public IN_TransferLinesQuery setFromPartWriteOnAccountIDBetween(ArrayList value) { this.FromPartWriteOnAccountIDBetween = value; return this; } public ArrayList getFromPartWriteOnAccountIDIn() { return FromPartWriteOnAccountIDIn; } public IN_TransferLinesQuery setFromPartWriteOnAccountIDIn(ArrayList value) { this.FromPartWriteOnAccountIDIn = value; return this; } public String getToPartWriteOnAccountID() { return ToPartWriteOnAccountID; } public IN_TransferLinesQuery setToPartWriteOnAccountID(String value) { this.ToPartWriteOnAccountID = value; return this; } public String getToPartWriteOnAccountIDStartsWith() { return ToPartWriteOnAccountIDStartsWith; } public IN_TransferLinesQuery setToPartWriteOnAccountIDStartsWith(String value) { this.ToPartWriteOnAccountIDStartsWith = value; return this; } public String getToPartWriteOnAccountIDEndsWith() { return ToPartWriteOnAccountIDEndsWith; } public IN_TransferLinesQuery setToPartWriteOnAccountIDEndsWith(String value) { this.ToPartWriteOnAccountIDEndsWith = value; return this; } public String getToPartWriteOnAccountIDContains() { return ToPartWriteOnAccountIDContains; } public IN_TransferLinesQuery setToPartWriteOnAccountIDContains(String value) { this.ToPartWriteOnAccountIDContains = value; return this; } public String getToPartWriteOnAccountIDLike() { return ToPartWriteOnAccountIDLike; } public IN_TransferLinesQuery setToPartWriteOnAccountIDLike(String value) { this.ToPartWriteOnAccountIDLike = value; return this; } public ArrayList getToPartWriteOnAccountIDBetween() { return ToPartWriteOnAccountIDBetween; } public IN_TransferLinesQuery setToPartWriteOnAccountIDBetween(ArrayList value) { this.ToPartWriteOnAccountIDBetween = value; return this; } public ArrayList getToPartWriteOnAccountIDIn() { return ToPartWriteOnAccountIDIn; } public IN_TransferLinesQuery setToPartWriteOnAccountIDIn(ArrayList value) { this.ToPartWriteOnAccountIDIn = value; return this; } public String getFromPartWriteOffAccountID() { return FromPartWriteOffAccountID; } public IN_TransferLinesQuery setFromPartWriteOffAccountID(String value) { this.FromPartWriteOffAccountID = value; return this; } public String getFromPartWriteOffAccountIDStartsWith() { return FromPartWriteOffAccountIDStartsWith; } public IN_TransferLinesQuery setFromPartWriteOffAccountIDStartsWith(String value) { this.FromPartWriteOffAccountIDStartsWith = value; return this; } public String getFromPartWriteOffAccountIDEndsWith() { return FromPartWriteOffAccountIDEndsWith; } public IN_TransferLinesQuery setFromPartWriteOffAccountIDEndsWith(String value) { this.FromPartWriteOffAccountIDEndsWith = value; return this; } public String getFromPartWriteOffAccountIDContains() { return FromPartWriteOffAccountIDContains; } public IN_TransferLinesQuery setFromPartWriteOffAccountIDContains(String value) { this.FromPartWriteOffAccountIDContains = value; return this; } public String getFromPartWriteOffAccountIDLike() { return FromPartWriteOffAccountIDLike; } public IN_TransferLinesQuery setFromPartWriteOffAccountIDLike(String value) { this.FromPartWriteOffAccountIDLike = value; return this; } public ArrayList getFromPartWriteOffAccountIDBetween() { return FromPartWriteOffAccountIDBetween; } public IN_TransferLinesQuery setFromPartWriteOffAccountIDBetween(ArrayList value) { this.FromPartWriteOffAccountIDBetween = value; return this; } public ArrayList getFromPartWriteOffAccountIDIn() { return FromPartWriteOffAccountIDIn; } public IN_TransferLinesQuery setFromPartWriteOffAccountIDIn(ArrayList value) { this.FromPartWriteOffAccountIDIn = value; return this; } public String getToPartWriteOffAccountID() { return ToPartWriteOffAccountID; } public IN_TransferLinesQuery setToPartWriteOffAccountID(String value) { this.ToPartWriteOffAccountID = value; return this; } public String getToPartWriteOffAccountIDStartsWith() { return ToPartWriteOffAccountIDStartsWith; } public IN_TransferLinesQuery setToPartWriteOffAccountIDStartsWith(String value) { this.ToPartWriteOffAccountIDStartsWith = value; return this; } public String getToPartWriteOffAccountIDEndsWith() { return ToPartWriteOffAccountIDEndsWith; } public IN_TransferLinesQuery setToPartWriteOffAccountIDEndsWith(String value) { this.ToPartWriteOffAccountIDEndsWith = value; return this; } public String getToPartWriteOffAccountIDContains() { return ToPartWriteOffAccountIDContains; } public IN_TransferLinesQuery setToPartWriteOffAccountIDContains(String value) { this.ToPartWriteOffAccountIDContains = value; return this; } public String getToPartWriteOffAccountIDLike() { return ToPartWriteOffAccountIDLike; } public IN_TransferLinesQuery setToPartWriteOffAccountIDLike(String value) { this.ToPartWriteOffAccountIDLike = value; return this; } public ArrayList getToPartWriteOffAccountIDBetween() { return ToPartWriteOffAccountIDBetween; } public IN_TransferLinesQuery setToPartWriteOffAccountIDBetween(ArrayList value) { this.ToPartWriteOffAccountIDBetween = value; return this; } public ArrayList getToPartWriteOffAccountIDIn() { return ToPartWriteOffAccountIDIn; } public IN_TransferLinesQuery setToPartWriteOffAccountIDIn(ArrayList value) { this.ToPartWriteOffAccountIDIn = value; return this; } public BigDecimal getFromPartLastCost() { return FromPartLastCost; } public IN_TransferLinesQuery setFromPartLastCost(BigDecimal value) { this.FromPartLastCost = value; return this; } public BigDecimal getFromPartLastCostGreaterThanOrEqualTo() { return FromPartLastCostGreaterThanOrEqualTo; } public IN_TransferLinesQuery setFromPartLastCostGreaterThanOrEqualTo(BigDecimal value) { this.FromPartLastCostGreaterThanOrEqualTo = value; return this; } public BigDecimal getFromPartLastCostGreaterThan() { return FromPartLastCostGreaterThan; } public IN_TransferLinesQuery setFromPartLastCostGreaterThan(BigDecimal value) { this.FromPartLastCostGreaterThan = value; return this; } public BigDecimal getFromPartLastCostLessThan() { return FromPartLastCostLessThan; } public IN_TransferLinesQuery setFromPartLastCostLessThan(BigDecimal value) { this.FromPartLastCostLessThan = value; return this; } public BigDecimal getFromPartLastCostLessThanOrEqualTo() { return FromPartLastCostLessThanOrEqualTo; } public IN_TransferLinesQuery setFromPartLastCostLessThanOrEqualTo(BigDecimal value) { this.FromPartLastCostLessThanOrEqualTo = value; return this; } public BigDecimal getFromPartLastCostNotEqualTo() { return FromPartLastCostNotEqualTo; } public IN_TransferLinesQuery setFromPartLastCostNotEqualTo(BigDecimal value) { this.FromPartLastCostNotEqualTo = value; return this; } public ArrayList getFromPartLastCostBetween() { return FromPartLastCostBetween; } public IN_TransferLinesQuery setFromPartLastCostBetween(ArrayList value) { this.FromPartLastCostBetween = value; return this; } public ArrayList getFromPartLastCostIn() { return FromPartLastCostIn; } public IN_TransferLinesQuery setFromPartLastCostIn(ArrayList value) { this.FromPartLastCostIn = value; return this; } public BigDecimal getToPartLastCost() { return ToPartLastCost; } public IN_TransferLinesQuery setToPartLastCost(BigDecimal value) { this.ToPartLastCost = value; return this; } public BigDecimal getToPartLastCostGreaterThanOrEqualTo() { return ToPartLastCostGreaterThanOrEqualTo; } public IN_TransferLinesQuery setToPartLastCostGreaterThanOrEqualTo(BigDecimal value) { this.ToPartLastCostGreaterThanOrEqualTo = value; return this; } public BigDecimal getToPartLastCostGreaterThan() { return ToPartLastCostGreaterThan; } public IN_TransferLinesQuery setToPartLastCostGreaterThan(BigDecimal value) { this.ToPartLastCostGreaterThan = value; return this; } public BigDecimal getToPartLastCostLessThan() { return ToPartLastCostLessThan; } public IN_TransferLinesQuery setToPartLastCostLessThan(BigDecimal value) { this.ToPartLastCostLessThan = value; return this; } public BigDecimal getToPartLastCostLessThanOrEqualTo() { return ToPartLastCostLessThanOrEqualTo; } public IN_TransferLinesQuery setToPartLastCostLessThanOrEqualTo(BigDecimal value) { this.ToPartLastCostLessThanOrEqualTo = value; return this; } public BigDecimal getToPartLastCostNotEqualTo() { return ToPartLastCostNotEqualTo; } public IN_TransferLinesQuery setToPartLastCostNotEqualTo(BigDecimal value) { this.ToPartLastCostNotEqualTo = value; return this; } public ArrayList getToPartLastCostBetween() { return ToPartLastCostBetween; } public IN_TransferLinesQuery setToPartLastCostBetween(ArrayList value) { this.ToPartLastCostBetween = value; return this; } public ArrayList getToPartLastCostIn() { return ToPartLastCostIn; } public IN_TransferLinesQuery setToPartLastCostIn(ArrayList value) { this.ToPartLastCostIn = value; return this; } public String getToPartBinLocation() { return ToPartBinLocation; } public IN_TransferLinesQuery setToPartBinLocation(String value) { this.ToPartBinLocation = value; return this; } public String getToPartBinLocationStartsWith() { return ToPartBinLocationStartsWith; } public IN_TransferLinesQuery setToPartBinLocationStartsWith(String value) { this.ToPartBinLocationStartsWith = value; return this; } public String getToPartBinLocationEndsWith() { return ToPartBinLocationEndsWith; } public IN_TransferLinesQuery setToPartBinLocationEndsWith(String value) { this.ToPartBinLocationEndsWith = value; return this; } public String getToPartBinLocationContains() { return ToPartBinLocationContains; } public IN_TransferLinesQuery setToPartBinLocationContains(String value) { this.ToPartBinLocationContains = value; return this; } public String getToPartBinLocationLike() { return ToPartBinLocationLike; } public IN_TransferLinesQuery setToPartBinLocationLike(String value) { this.ToPartBinLocationLike = value; return this; } public ArrayList getToPartBinLocationBetween() { return ToPartBinLocationBetween; } public IN_TransferLinesQuery setToPartBinLocationBetween(ArrayList value) { this.ToPartBinLocationBetween = value; return this; } public ArrayList getToPartBinLocationIn() { return ToPartBinLocationIn; } public IN_TransferLinesQuery setToPartBinLocationIn(ArrayList value) { this.ToPartBinLocationIn = value; return this; } public String getToPartComment() { return ToPartComment; } public IN_TransferLinesQuery setToPartComment(String value) { this.ToPartComment = value; return this; } public String getToPartCommentStartsWith() { return ToPartCommentStartsWith; } public IN_TransferLinesQuery setToPartCommentStartsWith(String value) { this.ToPartCommentStartsWith = value; return this; } public String getToPartCommentEndsWith() { return ToPartCommentEndsWith; } public IN_TransferLinesQuery setToPartCommentEndsWith(String value) { this.ToPartCommentEndsWith = value; return this; } public String getToPartCommentContains() { return ToPartCommentContains; } public IN_TransferLinesQuery setToPartCommentContains(String value) { this.ToPartCommentContains = value; return this; } public String getToPartCommentLike() { return ToPartCommentLike; } public IN_TransferLinesQuery setToPartCommentLike(String value) { this.ToPartCommentLike = value; return this; } public ArrayList getToPartCommentBetween() { return ToPartCommentBetween; } public IN_TransferLinesQuery setToPartCommentBetween(ArrayList value) { this.ToPartCommentBetween = value; return this; } public ArrayList getToPartCommentIn() { return ToPartCommentIn; } public IN_TransferLinesQuery setToPartCommentIn(ArrayList value) { this.ToPartCommentIn = value; return this; } public Date getToPartExpiryDate() { return ToPartExpiryDate; } public IN_TransferLinesQuery setToPartExpiryDate(Date value) { this.ToPartExpiryDate = value; return this; } public Date getToPartExpiryDateGreaterThanOrEqualTo() { return ToPartExpiryDateGreaterThanOrEqualTo; } public IN_TransferLinesQuery setToPartExpiryDateGreaterThanOrEqualTo(Date value) { this.ToPartExpiryDateGreaterThanOrEqualTo = value; return this; } public Date getToPartExpiryDateGreaterThan() { return ToPartExpiryDateGreaterThan; } public IN_TransferLinesQuery setToPartExpiryDateGreaterThan(Date value) { this.ToPartExpiryDateGreaterThan = value; return this; } public Date getToPartExpiryDateLessThan() { return ToPartExpiryDateLessThan; } public IN_TransferLinesQuery setToPartExpiryDateLessThan(Date value) { this.ToPartExpiryDateLessThan = value; return this; } public Date getToPartExpiryDateLessThanOrEqualTo() { return ToPartExpiryDateLessThanOrEqualTo; } public IN_TransferLinesQuery setToPartExpiryDateLessThanOrEqualTo(Date value) { this.ToPartExpiryDateLessThanOrEqualTo = value; return this; } public Date getToPartExpiryDateNotEqualTo() { return ToPartExpiryDateNotEqualTo; } public IN_TransferLinesQuery setToPartExpiryDateNotEqualTo(Date value) { this.ToPartExpiryDateNotEqualTo = value; return this; } public ArrayList getToPartExpiryDateBetween() { return ToPartExpiryDateBetween; } public IN_TransferLinesQuery setToPartExpiryDateBetween(ArrayList value) { this.ToPartExpiryDateBetween = value; return this; } public ArrayList getToPartExpiryDateIn() { return ToPartExpiryDateIn; } public IN_TransferLinesQuery setToPartExpiryDateIn(ArrayList value) { this.ToPartExpiryDateIn = value; return this; } public String getInTransferReasonsRecID() { return IN_TransferReasons_RecID; } public IN_TransferLinesQuery setInTransferReasonsRecID(String value) { this.IN_TransferReasons_RecID = value; return this; } public String getInTransferReasonsRecIDStartsWith() { return IN_TransferReasons_RecIDStartsWith; } public IN_TransferLinesQuery setInTransferReasonsRecIDStartsWith(String value) { this.IN_TransferReasons_RecIDStartsWith = value; return this; } public String getInTransferReasonsRecIDEndsWith() { return IN_TransferReasons_RecIDEndsWith; } public IN_TransferLinesQuery setInTransferReasonsRecIDEndsWith(String value) { this.IN_TransferReasons_RecIDEndsWith = value; return this; } public String getInTransferReasonsRecIDContains() { return IN_TransferReasons_RecIDContains; } public IN_TransferLinesQuery setInTransferReasonsRecIDContains(String value) { this.IN_TransferReasons_RecIDContains = value; return this; } public String getInTransferReasonsRecIDLike() { return IN_TransferReasons_RecIDLike; } public IN_TransferLinesQuery setInTransferReasonsRecIDLike(String value) { this.IN_TransferReasons_RecIDLike = value; return this; } public ArrayList getInTransferReasonsRecIDBetween() { return IN_TransferReasons_RecIDBetween; } public IN_TransferLinesQuery setInTransferReasonsRecIDBetween(ArrayList value) { this.IN_TransferReasons_RecIDBetween = value; return this; } public ArrayList getInTransferReasonsRecIDIn() { return IN_TransferReasons_RecIDIn; } public IN_TransferLinesQuery setInTransferReasonsRecIDIn(ArrayList value) { this.IN_TransferReasons_RecIDIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class IN_TransferNotesQuery extends QueryDb implements IReturn> { public String RecID = null; public String RecIDStartsWith = null; public String RecIDEndsWith = null; public String RecIDContains = null; public String RecIDLike = null; public ArrayList RecIDBetween = null; public ArrayList RecIDIn = null; public String TransferID = null; public String TransferIDStartsWith = null; public String TransferIDEndsWith = null; public String TransferIDContains = null; public String TransferIDLike = null; public ArrayList TransferIDBetween = null; public ArrayList TransferIDIn = null; public String NoteTypeID = null; public String NoteTypeIDStartsWith = null; public String NoteTypeIDEndsWith = null; public String NoteTypeIDContains = null; public String NoteTypeIDLike = null; public ArrayList NoteTypeIDBetween = null; public ArrayList NoteTypeIDIn = null; public Date LastSavedDateTime = null; public Date LastSavedDateTimeGreaterThanOrEqualTo = null; public Date LastSavedDateTimeGreaterThan = null; public Date LastSavedDateTimeLessThan = null; public Date LastSavedDateTimeLessThanOrEqualTo = null; public Date LastSavedDateTimeNotEqualTo = null; public ArrayList LastSavedDateTimeBetween = null; public ArrayList LastSavedDateTimeIn = null; public String LastSavedByStaffID = null; public String LastSavedByStaffIDStartsWith = null; public String LastSavedByStaffIDEndsWith = null; public String LastSavedByStaffIDContains = null; public String LastSavedByStaffIDLike = null; public ArrayList LastSavedByStaffIDBetween = null; public ArrayList LastSavedByStaffIDIn = null; public String NoteText = null; public String NoteTextStartsWith = null; public String NoteTextEndsWith = null; public String NoteTextContains = null; public String NoteTextLike = null; public ArrayList NoteTextBetween = null; public ArrayList NoteTextIn = null; public Integer ItemNo = null; public Integer ItemNoGreaterThanOrEqualTo = null; public Integer ItemNoGreaterThan = null; public Integer ItemNoLessThan = null; public Integer ItemNoLessThanOrEqualTo = null; public Integer ItemNoNotEqualTo = null; public ArrayList ItemNoBetween = null; public ArrayList ItemNoIn = null; public String getRecID() { return RecID; } public IN_TransferNotesQuery setRecID(String value) { this.RecID = value; return this; } public String getRecIDStartsWith() { return RecIDStartsWith; } public IN_TransferNotesQuery setRecIDStartsWith(String value) { this.RecIDStartsWith = value; return this; } public String getRecIDEndsWith() { return RecIDEndsWith; } public IN_TransferNotesQuery setRecIDEndsWith(String value) { this.RecIDEndsWith = value; return this; } public String getRecIDContains() { return RecIDContains; } public IN_TransferNotesQuery setRecIDContains(String value) { this.RecIDContains = value; return this; } public String getRecIDLike() { return RecIDLike; } public IN_TransferNotesQuery setRecIDLike(String value) { this.RecIDLike = value; return this; } public ArrayList getRecIDBetween() { return RecIDBetween; } public IN_TransferNotesQuery setRecIDBetween(ArrayList value) { this.RecIDBetween = value; return this; } public ArrayList getRecIDIn() { return RecIDIn; } public IN_TransferNotesQuery setRecIDIn(ArrayList value) { this.RecIDIn = value; return this; } public String getTransferID() { return TransferID; } public IN_TransferNotesQuery setTransferID(String value) { this.TransferID = value; return this; } public String getTransferIDStartsWith() { return TransferIDStartsWith; } public IN_TransferNotesQuery setTransferIDStartsWith(String value) { this.TransferIDStartsWith = value; return this; } public String getTransferIDEndsWith() { return TransferIDEndsWith; } public IN_TransferNotesQuery setTransferIDEndsWith(String value) { this.TransferIDEndsWith = value; return this; } public String getTransferIDContains() { return TransferIDContains; } public IN_TransferNotesQuery setTransferIDContains(String value) { this.TransferIDContains = value; return this; } public String getTransferIDLike() { return TransferIDLike; } public IN_TransferNotesQuery setTransferIDLike(String value) { this.TransferIDLike = value; return this; } public ArrayList getTransferIDBetween() { return TransferIDBetween; } public IN_TransferNotesQuery setTransferIDBetween(ArrayList value) { this.TransferIDBetween = value; return this; } public ArrayList getTransferIDIn() { return TransferIDIn; } public IN_TransferNotesQuery setTransferIDIn(ArrayList value) { this.TransferIDIn = value; return this; } public String getNoteTypeID() { return NoteTypeID; } public IN_TransferNotesQuery setNoteTypeID(String value) { this.NoteTypeID = value; return this; } public String getNoteTypeIDStartsWith() { return NoteTypeIDStartsWith; } public IN_TransferNotesQuery setNoteTypeIDStartsWith(String value) { this.NoteTypeIDStartsWith = value; return this; } public String getNoteTypeIDEndsWith() { return NoteTypeIDEndsWith; } public IN_TransferNotesQuery setNoteTypeIDEndsWith(String value) { this.NoteTypeIDEndsWith = value; return this; } public String getNoteTypeIDContains() { return NoteTypeIDContains; } public IN_TransferNotesQuery setNoteTypeIDContains(String value) { this.NoteTypeIDContains = value; return this; } public String getNoteTypeIDLike() { return NoteTypeIDLike; } public IN_TransferNotesQuery setNoteTypeIDLike(String value) { this.NoteTypeIDLike = value; return this; } public ArrayList getNoteTypeIDBetween() { return NoteTypeIDBetween; } public IN_TransferNotesQuery setNoteTypeIDBetween(ArrayList value) { this.NoteTypeIDBetween = value; return this; } public ArrayList getNoteTypeIDIn() { return NoteTypeIDIn; } public IN_TransferNotesQuery setNoteTypeIDIn(ArrayList value) { this.NoteTypeIDIn = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public IN_TransferNotesQuery setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getLastSavedDateTimeGreaterThanOrEqualTo() { return LastSavedDateTimeGreaterThanOrEqualTo; } public IN_TransferNotesQuery setLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.LastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeGreaterThan() { return LastSavedDateTimeGreaterThan; } public IN_TransferNotesQuery setLastSavedDateTimeGreaterThan(Date value) { this.LastSavedDateTimeGreaterThan = value; return this; } public Date getLastSavedDateTimeLessThan() { return LastSavedDateTimeLessThan; } public IN_TransferNotesQuery setLastSavedDateTimeLessThan(Date value) { this.LastSavedDateTimeLessThan = value; return this; } public Date getLastSavedDateTimeLessThanOrEqualTo() { return LastSavedDateTimeLessThanOrEqualTo; } public IN_TransferNotesQuery setLastSavedDateTimeLessThanOrEqualTo(Date value) { this.LastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeNotEqualTo() { return LastSavedDateTimeNotEqualTo; } public IN_TransferNotesQuery setLastSavedDateTimeNotEqualTo(Date value) { this.LastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getLastSavedDateTimeBetween() { return LastSavedDateTimeBetween; } public IN_TransferNotesQuery setLastSavedDateTimeBetween(ArrayList value) { this.LastSavedDateTimeBetween = value; return this; } public ArrayList getLastSavedDateTimeIn() { return LastSavedDateTimeIn; } public IN_TransferNotesQuery setLastSavedDateTimeIn(ArrayList value) { this.LastSavedDateTimeIn = value; return this; } public String getLastSavedByStaffID() { return LastSavedByStaffID; } public IN_TransferNotesQuery setLastSavedByStaffID(String value) { this.LastSavedByStaffID = value; return this; } public String getLastSavedByStaffIDStartsWith() { return LastSavedByStaffIDStartsWith; } public IN_TransferNotesQuery setLastSavedByStaffIDStartsWith(String value) { this.LastSavedByStaffIDStartsWith = value; return this; } public String getLastSavedByStaffIDEndsWith() { return LastSavedByStaffIDEndsWith; } public IN_TransferNotesQuery setLastSavedByStaffIDEndsWith(String value) { this.LastSavedByStaffIDEndsWith = value; return this; } public String getLastSavedByStaffIDContains() { return LastSavedByStaffIDContains; } public IN_TransferNotesQuery setLastSavedByStaffIDContains(String value) { this.LastSavedByStaffIDContains = value; return this; } public String getLastSavedByStaffIDLike() { return LastSavedByStaffIDLike; } public IN_TransferNotesQuery setLastSavedByStaffIDLike(String value) { this.LastSavedByStaffIDLike = value; return this; } public ArrayList getLastSavedByStaffIDBetween() { return LastSavedByStaffIDBetween; } public IN_TransferNotesQuery setLastSavedByStaffIDBetween(ArrayList value) { this.LastSavedByStaffIDBetween = value; return this; } public ArrayList getLastSavedByStaffIDIn() { return LastSavedByStaffIDIn; } public IN_TransferNotesQuery setLastSavedByStaffIDIn(ArrayList value) { this.LastSavedByStaffIDIn = value; return this; } public String getNoteText() { return NoteText; } public IN_TransferNotesQuery setNoteText(String value) { this.NoteText = value; return this; } public String getNoteTextStartsWith() { return NoteTextStartsWith; } public IN_TransferNotesQuery setNoteTextStartsWith(String value) { this.NoteTextStartsWith = value; return this; } public String getNoteTextEndsWith() { return NoteTextEndsWith; } public IN_TransferNotesQuery setNoteTextEndsWith(String value) { this.NoteTextEndsWith = value; return this; } public String getNoteTextContains() { return NoteTextContains; } public IN_TransferNotesQuery setNoteTextContains(String value) { this.NoteTextContains = value; return this; } public String getNoteTextLike() { return NoteTextLike; } public IN_TransferNotesQuery setNoteTextLike(String value) { this.NoteTextLike = value; return this; } public ArrayList getNoteTextBetween() { return NoteTextBetween; } public IN_TransferNotesQuery setNoteTextBetween(ArrayList value) { this.NoteTextBetween = value; return this; } public ArrayList getNoteTextIn() { return NoteTextIn; } public IN_TransferNotesQuery setNoteTextIn(ArrayList value) { this.NoteTextIn = value; return this; } public Integer getItemNo() { return ItemNo; } public IN_TransferNotesQuery setItemNo(Integer value) { this.ItemNo = value; return this; } public Integer getItemNoGreaterThanOrEqualTo() { return ItemNoGreaterThanOrEqualTo; } public IN_TransferNotesQuery setItemNoGreaterThanOrEqualTo(Integer value) { this.ItemNoGreaterThanOrEqualTo = value; return this; } public Integer getItemNoGreaterThan() { return ItemNoGreaterThan; } public IN_TransferNotesQuery setItemNoGreaterThan(Integer value) { this.ItemNoGreaterThan = value; return this; } public Integer getItemNoLessThan() { return ItemNoLessThan; } public IN_TransferNotesQuery setItemNoLessThan(Integer value) { this.ItemNoLessThan = value; return this; } public Integer getItemNoLessThanOrEqualTo() { return ItemNoLessThanOrEqualTo; } public IN_TransferNotesQuery setItemNoLessThanOrEqualTo(Integer value) { this.ItemNoLessThanOrEqualTo = value; return this; } public Integer getItemNoNotEqualTo() { return ItemNoNotEqualTo; } public IN_TransferNotesQuery setItemNoNotEqualTo(Integer value) { this.ItemNoNotEqualTo = value; return this; } public ArrayList getItemNoBetween() { return ItemNoBetween; } public IN_TransferNotesQuery setItemNoBetween(ArrayList value) { this.ItemNoBetween = value; return this; } public ArrayList getItemNoIn() { return ItemNoIn; } public IN_TransferNotesQuery setItemNoIn(ArrayList value) { this.ItemNoIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class IN_TransferReasonsQuery extends QueryDb implements IReturn> { public String RecID = null; public String RecIDStartsWith = null; public String RecIDEndsWith = null; public String RecIDContains = null; public String RecIDLike = null; public ArrayList RecIDBetween = null; public ArrayList RecIDIn = null; public String Name = null; public String NameStartsWith = null; public String NameEndsWith = null; public String NameContains = null; public String NameLike = null; public ArrayList NameBetween = null; public ArrayList NameIn = null; public Boolean WriteOffAccountOverride = null; public String WriteOffAccountID = null; public String WriteOffAccountIDStartsWith = null; public String WriteOffAccountIDEndsWith = null; public String WriteOffAccountIDContains = null; public String WriteOffAccountIDLike = null; public ArrayList WriteOffAccountIDBetween = null; public ArrayList WriteOffAccountIDIn = null; public Boolean WriteOnAccountOverride = null; public String WriteOnAccountID = null; public String WriteOnAccountIDStartsWith = null; public String WriteOnAccountIDEndsWith = null; public String WriteOnAccountIDContains = null; public String WriteOnAccountIDLike = null; public ArrayList WriteOnAccountIDBetween = null; public ArrayList WriteOnAccountIDIn = null; public Boolean DefaultReason = null; public Boolean ReadOnly = null; public Date CreatedDateTime = null; public Date CreatedDateTimeGreaterThanOrEqualTo = null; public Date CreatedDateTimeGreaterThan = null; public Date CreatedDateTimeLessThan = null; public Date CreatedDateTimeLessThanOrEqualTo = null; public Date CreatedDateTimeNotEqualTo = null; public ArrayList CreatedDateTimeBetween = null; public ArrayList CreatedDateTimeIn = null; public String CreatedByStaffID = null; public String CreatedByStaffIDStartsWith = null; public String CreatedByStaffIDEndsWith = null; public String CreatedByStaffIDContains = null; public String CreatedByStaffIDLike = null; public ArrayList CreatedByStaffIDBetween = null; public ArrayList CreatedByStaffIDIn = null; public Date LastSavedDateTime = null; public Date LastSavedDateTimeGreaterThanOrEqualTo = null; public Date LastSavedDateTimeGreaterThan = null; public Date LastSavedDateTimeLessThan = null; public Date LastSavedDateTimeLessThanOrEqualTo = null; public Date LastSavedDateTimeNotEqualTo = null; public ArrayList LastSavedDateTimeBetween = null; public ArrayList LastSavedDateTimeIn = null; public String LastSavedByStaffID = null; public String LastSavedByStaffIDStartsWith = null; public String LastSavedByStaffIDEndsWith = null; public String LastSavedByStaffIDContains = null; public String LastSavedByStaffIDLike = null; public ArrayList LastSavedByStaffIDBetween = null; public ArrayList LastSavedByStaffIDIn = null; public Integer ItemNo = null; public Integer ItemNoGreaterThanOrEqualTo = null; public Integer ItemNoGreaterThan = null; public Integer ItemNoLessThan = null; public Integer ItemNoLessThanOrEqualTo = null; public Integer ItemNoNotEqualTo = null; public ArrayList ItemNoBetween = null; public ArrayList ItemNoIn = null; public ArrayList RowHash = null; public String getRecID() { return RecID; } public IN_TransferReasonsQuery setRecID(String value) { this.RecID = value; return this; } public String getRecIDStartsWith() { return RecIDStartsWith; } public IN_TransferReasonsQuery setRecIDStartsWith(String value) { this.RecIDStartsWith = value; return this; } public String getRecIDEndsWith() { return RecIDEndsWith; } public IN_TransferReasonsQuery setRecIDEndsWith(String value) { this.RecIDEndsWith = value; return this; } public String getRecIDContains() { return RecIDContains; } public IN_TransferReasonsQuery setRecIDContains(String value) { this.RecIDContains = value; return this; } public String getRecIDLike() { return RecIDLike; } public IN_TransferReasonsQuery setRecIDLike(String value) { this.RecIDLike = value; return this; } public ArrayList getRecIDBetween() { return RecIDBetween; } public IN_TransferReasonsQuery setRecIDBetween(ArrayList value) { this.RecIDBetween = value; return this; } public ArrayList getRecIDIn() { return RecIDIn; } public IN_TransferReasonsQuery setRecIDIn(ArrayList value) { this.RecIDIn = value; return this; } public String getName() { return Name; } public IN_TransferReasonsQuery setName(String value) { this.Name = value; return this; } public String getNameStartsWith() { return NameStartsWith; } public IN_TransferReasonsQuery setNameStartsWith(String value) { this.NameStartsWith = value; return this; } public String getNameEndsWith() { return NameEndsWith; } public IN_TransferReasonsQuery setNameEndsWith(String value) { this.NameEndsWith = value; return this; } public String getNameContains() { return NameContains; } public IN_TransferReasonsQuery setNameContains(String value) { this.NameContains = value; return this; } public String getNameLike() { return NameLike; } public IN_TransferReasonsQuery setNameLike(String value) { this.NameLike = value; return this; } public ArrayList getNameBetween() { return NameBetween; } public IN_TransferReasonsQuery setNameBetween(ArrayList value) { this.NameBetween = value; return this; } public ArrayList getNameIn() { return NameIn; } public IN_TransferReasonsQuery setNameIn(ArrayList value) { this.NameIn = value; return this; } public Boolean isWriteOffAccountOverride() { return WriteOffAccountOverride; } public IN_TransferReasonsQuery setWriteOffAccountOverride(Boolean value) { this.WriteOffAccountOverride = value; return this; } public String getWriteOffAccountID() { return WriteOffAccountID; } public IN_TransferReasonsQuery setWriteOffAccountID(String value) { this.WriteOffAccountID = value; return this; } public String getWriteOffAccountIDStartsWith() { return WriteOffAccountIDStartsWith; } public IN_TransferReasonsQuery setWriteOffAccountIDStartsWith(String value) { this.WriteOffAccountIDStartsWith = value; return this; } public String getWriteOffAccountIDEndsWith() { return WriteOffAccountIDEndsWith; } public IN_TransferReasonsQuery setWriteOffAccountIDEndsWith(String value) { this.WriteOffAccountIDEndsWith = value; return this; } public String getWriteOffAccountIDContains() { return WriteOffAccountIDContains; } public IN_TransferReasonsQuery setWriteOffAccountIDContains(String value) { this.WriteOffAccountIDContains = value; return this; } public String getWriteOffAccountIDLike() { return WriteOffAccountIDLike; } public IN_TransferReasonsQuery setWriteOffAccountIDLike(String value) { this.WriteOffAccountIDLike = value; return this; } public ArrayList getWriteOffAccountIDBetween() { return WriteOffAccountIDBetween; } public IN_TransferReasonsQuery setWriteOffAccountIDBetween(ArrayList value) { this.WriteOffAccountIDBetween = value; return this; } public ArrayList getWriteOffAccountIDIn() { return WriteOffAccountIDIn; } public IN_TransferReasonsQuery setWriteOffAccountIDIn(ArrayList value) { this.WriteOffAccountIDIn = value; return this; } public Boolean isWriteOnAccountOverride() { return WriteOnAccountOverride; } public IN_TransferReasonsQuery setWriteOnAccountOverride(Boolean value) { this.WriteOnAccountOverride = value; return this; } public String getWriteOnAccountID() { return WriteOnAccountID; } public IN_TransferReasonsQuery setWriteOnAccountID(String value) { this.WriteOnAccountID = value; return this; } public String getWriteOnAccountIDStartsWith() { return WriteOnAccountIDStartsWith; } public IN_TransferReasonsQuery setWriteOnAccountIDStartsWith(String value) { this.WriteOnAccountIDStartsWith = value; return this; } public String getWriteOnAccountIDEndsWith() { return WriteOnAccountIDEndsWith; } public IN_TransferReasonsQuery setWriteOnAccountIDEndsWith(String value) { this.WriteOnAccountIDEndsWith = value; return this; } public String getWriteOnAccountIDContains() { return WriteOnAccountIDContains; } public IN_TransferReasonsQuery setWriteOnAccountIDContains(String value) { this.WriteOnAccountIDContains = value; return this; } public String getWriteOnAccountIDLike() { return WriteOnAccountIDLike; } public IN_TransferReasonsQuery setWriteOnAccountIDLike(String value) { this.WriteOnAccountIDLike = value; return this; } public ArrayList getWriteOnAccountIDBetween() { return WriteOnAccountIDBetween; } public IN_TransferReasonsQuery setWriteOnAccountIDBetween(ArrayList value) { this.WriteOnAccountIDBetween = value; return this; } public ArrayList getWriteOnAccountIDIn() { return WriteOnAccountIDIn; } public IN_TransferReasonsQuery setWriteOnAccountIDIn(ArrayList value) { this.WriteOnAccountIDIn = value; return this; } public Boolean isDefaultReason() { return DefaultReason; } public IN_TransferReasonsQuery setDefaultReason(Boolean value) { this.DefaultReason = value; return this; } public Boolean isReadOnly() { return ReadOnly; } public IN_TransferReasonsQuery setReadOnly(Boolean value) { this.ReadOnly = value; return this; } public Date getCreatedDateTime() { return CreatedDateTime; } public IN_TransferReasonsQuery setCreatedDateTime(Date value) { this.CreatedDateTime = value; return this; } public Date getCreatedDateTimeGreaterThanOrEqualTo() { return CreatedDateTimeGreaterThanOrEqualTo; } public IN_TransferReasonsQuery setCreatedDateTimeGreaterThanOrEqualTo(Date value) { this.CreatedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getCreatedDateTimeGreaterThan() { return CreatedDateTimeGreaterThan; } public IN_TransferReasonsQuery setCreatedDateTimeGreaterThan(Date value) { this.CreatedDateTimeGreaterThan = value; return this; } public Date getCreatedDateTimeLessThan() { return CreatedDateTimeLessThan; } public IN_TransferReasonsQuery setCreatedDateTimeLessThan(Date value) { this.CreatedDateTimeLessThan = value; return this; } public Date getCreatedDateTimeLessThanOrEqualTo() { return CreatedDateTimeLessThanOrEqualTo; } public IN_TransferReasonsQuery setCreatedDateTimeLessThanOrEqualTo(Date value) { this.CreatedDateTimeLessThanOrEqualTo = value; return this; } public Date getCreatedDateTimeNotEqualTo() { return CreatedDateTimeNotEqualTo; } public IN_TransferReasonsQuery setCreatedDateTimeNotEqualTo(Date value) { this.CreatedDateTimeNotEqualTo = value; return this; } public ArrayList getCreatedDateTimeBetween() { return CreatedDateTimeBetween; } public IN_TransferReasonsQuery setCreatedDateTimeBetween(ArrayList value) { this.CreatedDateTimeBetween = value; return this; } public ArrayList getCreatedDateTimeIn() { return CreatedDateTimeIn; } public IN_TransferReasonsQuery setCreatedDateTimeIn(ArrayList value) { this.CreatedDateTimeIn = value; return this; } public String getCreatedByStaffID() { return CreatedByStaffID; } public IN_TransferReasonsQuery setCreatedByStaffID(String value) { this.CreatedByStaffID = value; return this; } public String getCreatedByStaffIDStartsWith() { return CreatedByStaffIDStartsWith; } public IN_TransferReasonsQuery setCreatedByStaffIDStartsWith(String value) { this.CreatedByStaffIDStartsWith = value; return this; } public String getCreatedByStaffIDEndsWith() { return CreatedByStaffIDEndsWith; } public IN_TransferReasonsQuery setCreatedByStaffIDEndsWith(String value) { this.CreatedByStaffIDEndsWith = value; return this; } public String getCreatedByStaffIDContains() { return CreatedByStaffIDContains; } public IN_TransferReasonsQuery setCreatedByStaffIDContains(String value) { this.CreatedByStaffIDContains = value; return this; } public String getCreatedByStaffIDLike() { return CreatedByStaffIDLike; } public IN_TransferReasonsQuery setCreatedByStaffIDLike(String value) { this.CreatedByStaffIDLike = value; return this; } public ArrayList getCreatedByStaffIDBetween() { return CreatedByStaffIDBetween; } public IN_TransferReasonsQuery setCreatedByStaffIDBetween(ArrayList value) { this.CreatedByStaffIDBetween = value; return this; } public ArrayList getCreatedByStaffIDIn() { return CreatedByStaffIDIn; } public IN_TransferReasonsQuery setCreatedByStaffIDIn(ArrayList value) { this.CreatedByStaffIDIn = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public IN_TransferReasonsQuery setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getLastSavedDateTimeGreaterThanOrEqualTo() { return LastSavedDateTimeGreaterThanOrEqualTo; } public IN_TransferReasonsQuery setLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.LastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeGreaterThan() { return LastSavedDateTimeGreaterThan; } public IN_TransferReasonsQuery setLastSavedDateTimeGreaterThan(Date value) { this.LastSavedDateTimeGreaterThan = value; return this; } public Date getLastSavedDateTimeLessThan() { return LastSavedDateTimeLessThan; } public IN_TransferReasonsQuery setLastSavedDateTimeLessThan(Date value) { this.LastSavedDateTimeLessThan = value; return this; } public Date getLastSavedDateTimeLessThanOrEqualTo() { return LastSavedDateTimeLessThanOrEqualTo; } public IN_TransferReasonsQuery setLastSavedDateTimeLessThanOrEqualTo(Date value) { this.LastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeNotEqualTo() { return LastSavedDateTimeNotEqualTo; } public IN_TransferReasonsQuery setLastSavedDateTimeNotEqualTo(Date value) { this.LastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getLastSavedDateTimeBetween() { return LastSavedDateTimeBetween; } public IN_TransferReasonsQuery setLastSavedDateTimeBetween(ArrayList value) { this.LastSavedDateTimeBetween = value; return this; } public ArrayList getLastSavedDateTimeIn() { return LastSavedDateTimeIn; } public IN_TransferReasonsQuery setLastSavedDateTimeIn(ArrayList value) { this.LastSavedDateTimeIn = value; return this; } public String getLastSavedByStaffID() { return LastSavedByStaffID; } public IN_TransferReasonsQuery setLastSavedByStaffID(String value) { this.LastSavedByStaffID = value; return this; } public String getLastSavedByStaffIDStartsWith() { return LastSavedByStaffIDStartsWith; } public IN_TransferReasonsQuery setLastSavedByStaffIDStartsWith(String value) { this.LastSavedByStaffIDStartsWith = value; return this; } public String getLastSavedByStaffIDEndsWith() { return LastSavedByStaffIDEndsWith; } public IN_TransferReasonsQuery setLastSavedByStaffIDEndsWith(String value) { this.LastSavedByStaffIDEndsWith = value; return this; } public String getLastSavedByStaffIDContains() { return LastSavedByStaffIDContains; } public IN_TransferReasonsQuery setLastSavedByStaffIDContains(String value) { this.LastSavedByStaffIDContains = value; return this; } public String getLastSavedByStaffIDLike() { return LastSavedByStaffIDLike; } public IN_TransferReasonsQuery setLastSavedByStaffIDLike(String value) { this.LastSavedByStaffIDLike = value; return this; } public ArrayList getLastSavedByStaffIDBetween() { return LastSavedByStaffIDBetween; } public IN_TransferReasonsQuery setLastSavedByStaffIDBetween(ArrayList value) { this.LastSavedByStaffIDBetween = value; return this; } public ArrayList getLastSavedByStaffIDIn() { return LastSavedByStaffIDIn; } public IN_TransferReasonsQuery setLastSavedByStaffIDIn(ArrayList value) { this.LastSavedByStaffIDIn = value; return this; } public Integer getItemNo() { return ItemNo; } public IN_TransferReasonsQuery setItemNo(Integer value) { this.ItemNo = value; return this; } public Integer getItemNoGreaterThanOrEqualTo() { return ItemNoGreaterThanOrEqualTo; } public IN_TransferReasonsQuery setItemNoGreaterThanOrEqualTo(Integer value) { this.ItemNoGreaterThanOrEqualTo = value; return this; } public Integer getItemNoGreaterThan() { return ItemNoGreaterThan; } public IN_TransferReasonsQuery setItemNoGreaterThan(Integer value) { this.ItemNoGreaterThan = value; return this; } public Integer getItemNoLessThan() { return ItemNoLessThan; } public IN_TransferReasonsQuery setItemNoLessThan(Integer value) { this.ItemNoLessThan = value; return this; } public Integer getItemNoLessThanOrEqualTo() { return ItemNoLessThanOrEqualTo; } public IN_TransferReasonsQuery setItemNoLessThanOrEqualTo(Integer value) { this.ItemNoLessThanOrEqualTo = value; return this; } public Integer getItemNoNotEqualTo() { return ItemNoNotEqualTo; } public IN_TransferReasonsQuery setItemNoNotEqualTo(Integer value) { this.ItemNoNotEqualTo = value; return this; } public ArrayList getItemNoBetween() { return ItemNoBetween; } public IN_TransferReasonsQuery setItemNoBetween(ArrayList value) { this.ItemNoBetween = value; return this; } public ArrayList getItemNoIn() { return ItemNoIn; } public IN_TransferReasonsQuery setItemNoIn(ArrayList value) { this.ItemNoIn = value; return this; } public ArrayList getRowHash() { return RowHash; } public IN_TransferReasonsQuery setRowHash(ArrayList value) { this.RowHash = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class IN_UnitOfMeasureQuery extends QueryDb implements IReturn> { public UUID RecID = null; public ArrayList RecIDIn = null; public String IN_Main_InventoryID = null; public String IN_Main_InventoryIDStartsWith = null; public String IN_Main_InventoryIDEndsWith = null; public String IN_Main_InventoryIDContains = null; public String IN_Main_InventoryIDLike = null; public ArrayList IN_Main_InventoryIDBetween = null; public ArrayList IN_Main_InventoryIDIn = null; public String Name = null; public String NameStartsWith = null; public String NameEndsWith = null; public String NameContains = null; public String NameLike = null; public ArrayList NameBetween = null; public ArrayList NameIn = null; public UUID Inner_IN_UnitOfMeasure_RecID = null; public ArrayList Inner_IN_UnitOfMeasure_RecIDIn = null; public BigDecimal QuantityInnersPerUnitOfMeasure = null; public BigDecimal QuantityInnersPerUnitOfMeasureGreaterThanOrEqualTo = null; public BigDecimal QuantityInnersPerUnitOfMeasureGreaterThan = null; public BigDecimal QuantityInnersPerUnitOfMeasureLessThan = null; public BigDecimal QuantityInnersPerUnitOfMeasureLessThanOrEqualTo = null; public BigDecimal QuantityInnersPerUnitOfMeasureNotEqualTo = null; public ArrayList QuantityInnersPerUnitOfMeasureBetween = null; public ArrayList QuantityInnersPerUnitOfMeasureIn = null; public Boolean IsSell = null; public Boolean IsPurchase = null; public String PartNo = null; public String PartNoStartsWith = null; public String PartNoEndsWith = null; public String PartNoContains = null; public String PartNoLike = null; public ArrayList PartNoBetween = null; public ArrayList PartNoIn = null; public String Barcode = null; public String BarcodeStartsWith = null; public String BarcodeEndsWith = null; public String BarcodeContains = null; public String BarcodeLike = null; public ArrayList BarcodeBetween = null; public ArrayList BarcodeIn = null; public Boolean IsEnabled = null; public Integer ItemNo = null; public Integer ItemNoGreaterThanOrEqualTo = null; public Integer ItemNoGreaterThan = null; public Integer ItemNoLessThan = null; public Integer ItemNoLessThanOrEqualTo = null; public Integer ItemNoNotEqualTo = null; public ArrayList ItemNoBetween = null; public ArrayList ItemNoIn = null; public Date LastSavedDateTime = null; public Date LastSavedDateTimeGreaterThanOrEqualTo = null; public Date LastSavedDateTimeGreaterThan = null; public Date LastSavedDateTimeLessThan = null; public Date LastSavedDateTimeLessThanOrEqualTo = null; public Date LastSavedDateTimeNotEqualTo = null; public ArrayList LastSavedDateTimeBetween = null; public ArrayList LastSavedDateTimeIn = null; public ArrayList RowHash = null; public UUID getRecID() { return RecID; } public IN_UnitOfMeasureQuery setRecID(UUID value) { this.RecID = value; return this; } public ArrayList getRecIDIn() { return RecIDIn; } public IN_UnitOfMeasureQuery setRecIDIn(ArrayList value) { this.RecIDIn = value; return this; } public String getInMainInventoryID() { return IN_Main_InventoryID; } public IN_UnitOfMeasureQuery setInMainInventoryID(String value) { this.IN_Main_InventoryID = value; return this; } public String getInMainInventoryIDStartsWith() { return IN_Main_InventoryIDStartsWith; } public IN_UnitOfMeasureQuery setInMainInventoryIDStartsWith(String value) { this.IN_Main_InventoryIDStartsWith = value; return this; } public String getInMainInventoryIDEndsWith() { return IN_Main_InventoryIDEndsWith; } public IN_UnitOfMeasureQuery setInMainInventoryIDEndsWith(String value) { this.IN_Main_InventoryIDEndsWith = value; return this; } public String getInMainInventoryIDContains() { return IN_Main_InventoryIDContains; } public IN_UnitOfMeasureQuery setInMainInventoryIDContains(String value) { this.IN_Main_InventoryIDContains = value; return this; } public String getInMainInventoryIDLike() { return IN_Main_InventoryIDLike; } public IN_UnitOfMeasureQuery setInMainInventoryIDLike(String value) { this.IN_Main_InventoryIDLike = value; return this; } public ArrayList getInMainInventoryIDBetween() { return IN_Main_InventoryIDBetween; } public IN_UnitOfMeasureQuery setInMainInventoryIDBetween(ArrayList value) { this.IN_Main_InventoryIDBetween = value; return this; } public ArrayList getInMainInventoryIDIn() { return IN_Main_InventoryIDIn; } public IN_UnitOfMeasureQuery setInMainInventoryIDIn(ArrayList value) { this.IN_Main_InventoryIDIn = value; return this; } public String getName() { return Name; } public IN_UnitOfMeasureQuery setName(String value) { this.Name = value; return this; } public String getNameStartsWith() { return NameStartsWith; } public IN_UnitOfMeasureQuery setNameStartsWith(String value) { this.NameStartsWith = value; return this; } public String getNameEndsWith() { return NameEndsWith; } public IN_UnitOfMeasureQuery setNameEndsWith(String value) { this.NameEndsWith = value; return this; } public String getNameContains() { return NameContains; } public IN_UnitOfMeasureQuery setNameContains(String value) { this.NameContains = value; return this; } public String getNameLike() { return NameLike; } public IN_UnitOfMeasureQuery setNameLike(String value) { this.NameLike = value; return this; } public ArrayList getNameBetween() { return NameBetween; } public IN_UnitOfMeasureQuery setNameBetween(ArrayList value) { this.NameBetween = value; return this; } public ArrayList getNameIn() { return NameIn; } public IN_UnitOfMeasureQuery setNameIn(ArrayList value) { this.NameIn = value; return this; } public UUID getInnerInUnitOfMeasureRecID() { return Inner_IN_UnitOfMeasure_RecID; } public IN_UnitOfMeasureQuery setInnerInUnitOfMeasureRecID(UUID value) { this.Inner_IN_UnitOfMeasure_RecID = value; return this; } public ArrayList getInnerInUnitOfMeasureRecIDIn() { return Inner_IN_UnitOfMeasure_RecIDIn; } public IN_UnitOfMeasureQuery setInnerInUnitOfMeasureRecIDIn(ArrayList value) { this.Inner_IN_UnitOfMeasure_RecIDIn = value; return this; } public BigDecimal getQuantityInnersPerUnitOfMeasure() { return QuantityInnersPerUnitOfMeasure; } public IN_UnitOfMeasureQuery setQuantityInnersPerUnitOfMeasure(BigDecimal value) { this.QuantityInnersPerUnitOfMeasure = value; return this; } public BigDecimal getQuantityInnersPerUnitOfMeasureGreaterThanOrEqualTo() { return QuantityInnersPerUnitOfMeasureGreaterThanOrEqualTo; } public IN_UnitOfMeasureQuery setQuantityInnersPerUnitOfMeasureGreaterThanOrEqualTo(BigDecimal value) { this.QuantityInnersPerUnitOfMeasureGreaterThanOrEqualTo = value; return this; } public BigDecimal getQuantityInnersPerUnitOfMeasureGreaterThan() { return QuantityInnersPerUnitOfMeasureGreaterThan; } public IN_UnitOfMeasureQuery setQuantityInnersPerUnitOfMeasureGreaterThan(BigDecimal value) { this.QuantityInnersPerUnitOfMeasureGreaterThan = value; return this; } public BigDecimal getQuantityInnersPerUnitOfMeasureLessThan() { return QuantityInnersPerUnitOfMeasureLessThan; } public IN_UnitOfMeasureQuery setQuantityInnersPerUnitOfMeasureLessThan(BigDecimal value) { this.QuantityInnersPerUnitOfMeasureLessThan = value; return this; } public BigDecimal getQuantityInnersPerUnitOfMeasureLessThanOrEqualTo() { return QuantityInnersPerUnitOfMeasureLessThanOrEqualTo; } public IN_UnitOfMeasureQuery setQuantityInnersPerUnitOfMeasureLessThanOrEqualTo(BigDecimal value) { this.QuantityInnersPerUnitOfMeasureLessThanOrEqualTo = value; return this; } public BigDecimal getQuantityInnersPerUnitOfMeasureNotEqualTo() { return QuantityInnersPerUnitOfMeasureNotEqualTo; } public IN_UnitOfMeasureQuery setQuantityInnersPerUnitOfMeasureNotEqualTo(BigDecimal value) { this.QuantityInnersPerUnitOfMeasureNotEqualTo = value; return this; } public ArrayList getQuantityInnersPerUnitOfMeasureBetween() { return QuantityInnersPerUnitOfMeasureBetween; } public IN_UnitOfMeasureQuery setQuantityInnersPerUnitOfMeasureBetween(ArrayList value) { this.QuantityInnersPerUnitOfMeasureBetween = value; return this; } public ArrayList getQuantityInnersPerUnitOfMeasureIn() { return QuantityInnersPerUnitOfMeasureIn; } public IN_UnitOfMeasureQuery setQuantityInnersPerUnitOfMeasureIn(ArrayList value) { this.QuantityInnersPerUnitOfMeasureIn = value; return this; } public Boolean getIsSell() { return IsSell; } public IN_UnitOfMeasureQuery setIsSell(Boolean value) { this.IsSell = value; return this; } public Boolean getIsPurchase() { return IsPurchase; } public IN_UnitOfMeasureQuery setIsPurchase(Boolean value) { this.IsPurchase = value; return this; } public String getPartNo() { return PartNo; } public IN_UnitOfMeasureQuery setPartNo(String value) { this.PartNo = value; return this; } public String getPartNoStartsWith() { return PartNoStartsWith; } public IN_UnitOfMeasureQuery setPartNoStartsWith(String value) { this.PartNoStartsWith = value; return this; } public String getPartNoEndsWith() { return PartNoEndsWith; } public IN_UnitOfMeasureQuery setPartNoEndsWith(String value) { this.PartNoEndsWith = value; return this; } public String getPartNoContains() { return PartNoContains; } public IN_UnitOfMeasureQuery setPartNoContains(String value) { this.PartNoContains = value; return this; } public String getPartNoLike() { return PartNoLike; } public IN_UnitOfMeasureQuery setPartNoLike(String value) { this.PartNoLike = value; return this; } public ArrayList getPartNoBetween() { return PartNoBetween; } public IN_UnitOfMeasureQuery setPartNoBetween(ArrayList value) { this.PartNoBetween = value; return this; } public ArrayList getPartNoIn() { return PartNoIn; } public IN_UnitOfMeasureQuery setPartNoIn(ArrayList value) { this.PartNoIn = value; return this; } public String getBarcode() { return Barcode; } public IN_UnitOfMeasureQuery setBarcode(String value) { this.Barcode = value; return this; } public String getBarcodeStartsWith() { return BarcodeStartsWith; } public IN_UnitOfMeasureQuery setBarcodeStartsWith(String value) { this.BarcodeStartsWith = value; return this; } public String getBarcodeEndsWith() { return BarcodeEndsWith; } public IN_UnitOfMeasureQuery setBarcodeEndsWith(String value) { this.BarcodeEndsWith = value; return this; } public String getBarcodeContains() { return BarcodeContains; } public IN_UnitOfMeasureQuery setBarcodeContains(String value) { this.BarcodeContains = value; return this; } public String getBarcodeLike() { return BarcodeLike; } public IN_UnitOfMeasureQuery setBarcodeLike(String value) { this.BarcodeLike = value; return this; } public ArrayList getBarcodeBetween() { return BarcodeBetween; } public IN_UnitOfMeasureQuery setBarcodeBetween(ArrayList value) { this.BarcodeBetween = value; return this; } public ArrayList getBarcodeIn() { return BarcodeIn; } public IN_UnitOfMeasureQuery setBarcodeIn(ArrayList value) { this.BarcodeIn = value; return this; } public Boolean getIsEnabled() { return IsEnabled; } public IN_UnitOfMeasureQuery setIsEnabled(Boolean value) { this.IsEnabled = value; return this; } public Integer getItemNo() { return ItemNo; } public IN_UnitOfMeasureQuery setItemNo(Integer value) { this.ItemNo = value; return this; } public Integer getItemNoGreaterThanOrEqualTo() { return ItemNoGreaterThanOrEqualTo; } public IN_UnitOfMeasureQuery setItemNoGreaterThanOrEqualTo(Integer value) { this.ItemNoGreaterThanOrEqualTo = value; return this; } public Integer getItemNoGreaterThan() { return ItemNoGreaterThan; } public IN_UnitOfMeasureQuery setItemNoGreaterThan(Integer value) { this.ItemNoGreaterThan = value; return this; } public Integer getItemNoLessThan() { return ItemNoLessThan; } public IN_UnitOfMeasureQuery setItemNoLessThan(Integer value) { this.ItemNoLessThan = value; return this; } public Integer getItemNoLessThanOrEqualTo() { return ItemNoLessThanOrEqualTo; } public IN_UnitOfMeasureQuery setItemNoLessThanOrEqualTo(Integer value) { this.ItemNoLessThanOrEqualTo = value; return this; } public Integer getItemNoNotEqualTo() { return ItemNoNotEqualTo; } public IN_UnitOfMeasureQuery setItemNoNotEqualTo(Integer value) { this.ItemNoNotEqualTo = value; return this; } public ArrayList getItemNoBetween() { return ItemNoBetween; } public IN_UnitOfMeasureQuery setItemNoBetween(ArrayList value) { this.ItemNoBetween = value; return this; } public ArrayList getItemNoIn() { return ItemNoIn; } public IN_UnitOfMeasureQuery setItemNoIn(ArrayList value) { this.ItemNoIn = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public IN_UnitOfMeasureQuery setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getLastSavedDateTimeGreaterThanOrEqualTo() { return LastSavedDateTimeGreaterThanOrEqualTo; } public IN_UnitOfMeasureQuery setLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.LastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeGreaterThan() { return LastSavedDateTimeGreaterThan; } public IN_UnitOfMeasureQuery setLastSavedDateTimeGreaterThan(Date value) { this.LastSavedDateTimeGreaterThan = value; return this; } public Date getLastSavedDateTimeLessThan() { return LastSavedDateTimeLessThan; } public IN_UnitOfMeasureQuery setLastSavedDateTimeLessThan(Date value) { this.LastSavedDateTimeLessThan = value; return this; } public Date getLastSavedDateTimeLessThanOrEqualTo() { return LastSavedDateTimeLessThanOrEqualTo; } public IN_UnitOfMeasureQuery setLastSavedDateTimeLessThanOrEqualTo(Date value) { this.LastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeNotEqualTo() { return LastSavedDateTimeNotEqualTo; } public IN_UnitOfMeasureQuery setLastSavedDateTimeNotEqualTo(Date value) { this.LastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getLastSavedDateTimeBetween() { return LastSavedDateTimeBetween; } public IN_UnitOfMeasureQuery setLastSavedDateTimeBetween(ArrayList value) { this.LastSavedDateTimeBetween = value; return this; } public ArrayList getLastSavedDateTimeIn() { return LastSavedDateTimeIn; } public IN_UnitOfMeasureQuery setLastSavedDateTimeIn(ArrayList value) { this.LastSavedDateTimeIn = value; return this; } public ArrayList getRowHash() { return RowHash; } public IN_UnitOfMeasureQuery setRowHash(ArrayList value) { this.RowHash = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class IN_UpSellQuery extends QueryDb implements IReturn> { public String RecID = null; public String RecIDStartsWith = null; public String RecIDEndsWith = null; public String RecIDContains = null; public String RecIDLike = null; public ArrayList RecIDBetween = null; public ArrayList RecIDIn = null; public String InventoryID = null; public String InventoryIDStartsWith = null; public String InventoryIDEndsWith = null; public String InventoryIDContains = null; public String InventoryIDLike = null; public ArrayList InventoryIDBetween = null; public ArrayList InventoryIDIn = null; public String UpSellInventoryID = null; public String UpSellInventoryIDStartsWith = null; public String UpSellInventoryIDEndsWith = null; public String UpSellInventoryIDContains = null; public String UpSellInventoryIDLike = null; public ArrayList UpSellInventoryIDBetween = null; public ArrayList UpSellInventoryIDIn = null; public String Description = null; public String DescriptionStartsWith = null; public String DescriptionEndsWith = null; public String DescriptionContains = null; public String DescriptionLike = null; public ArrayList DescriptionBetween = null; public ArrayList DescriptionIn = null; public String PrimaryCategoryID = null; public String PrimaryCategoryIDStartsWith = null; public String PrimaryCategoryIDEndsWith = null; public String PrimaryCategoryIDContains = null; public String PrimaryCategoryIDLike = null; public ArrayList PrimaryCategoryIDBetween = null; public ArrayList PrimaryCategoryIDIn = null; public String SecondaryCategoryID = null; public String SecondaryCategoryIDStartsWith = null; public String SecondaryCategoryIDEndsWith = null; public String SecondaryCategoryIDContains = null; public String SecondaryCategoryIDLike = null; public ArrayList SecondaryCategoryIDBetween = null; public ArrayList SecondaryCategoryIDIn = null; public BigDecimal Quantity = null; public BigDecimal QuantityGreaterThanOrEqualTo = null; public BigDecimal QuantityGreaterThan = null; public BigDecimal QuantityLessThan = null; public BigDecimal QuantityLessThanOrEqualTo = null; public BigDecimal QuantityNotEqualTo = null; public ArrayList QuantityBetween = null; public ArrayList QuantityIn = null; public String getRecID() { return RecID; } public IN_UpSellQuery setRecID(String value) { this.RecID = value; return this; } public String getRecIDStartsWith() { return RecIDStartsWith; } public IN_UpSellQuery setRecIDStartsWith(String value) { this.RecIDStartsWith = value; return this; } public String getRecIDEndsWith() { return RecIDEndsWith; } public IN_UpSellQuery setRecIDEndsWith(String value) { this.RecIDEndsWith = value; return this; } public String getRecIDContains() { return RecIDContains; } public IN_UpSellQuery setRecIDContains(String value) { this.RecIDContains = value; return this; } public String getRecIDLike() { return RecIDLike; } public IN_UpSellQuery setRecIDLike(String value) { this.RecIDLike = value; return this; } public ArrayList getRecIDBetween() { return RecIDBetween; } public IN_UpSellQuery setRecIDBetween(ArrayList value) { this.RecIDBetween = value; return this; } public ArrayList getRecIDIn() { return RecIDIn; } public IN_UpSellQuery setRecIDIn(ArrayList value) { this.RecIDIn = value; return this; } public String getInventoryID() { return InventoryID; } public IN_UpSellQuery setInventoryID(String value) { this.InventoryID = value; return this; } public String getInventoryIDStartsWith() { return InventoryIDStartsWith; } public IN_UpSellQuery setInventoryIDStartsWith(String value) { this.InventoryIDStartsWith = value; return this; } public String getInventoryIDEndsWith() { return InventoryIDEndsWith; } public IN_UpSellQuery setInventoryIDEndsWith(String value) { this.InventoryIDEndsWith = value; return this; } public String getInventoryIDContains() { return InventoryIDContains; } public IN_UpSellQuery setInventoryIDContains(String value) { this.InventoryIDContains = value; return this; } public String getInventoryIDLike() { return InventoryIDLike; } public IN_UpSellQuery setInventoryIDLike(String value) { this.InventoryIDLike = value; return this; } public ArrayList getInventoryIDBetween() { return InventoryIDBetween; } public IN_UpSellQuery setInventoryIDBetween(ArrayList value) { this.InventoryIDBetween = value; return this; } public ArrayList getInventoryIDIn() { return InventoryIDIn; } public IN_UpSellQuery setInventoryIDIn(ArrayList value) { this.InventoryIDIn = value; return this; } public String getUpSellInventoryID() { return UpSellInventoryID; } public IN_UpSellQuery setUpSellInventoryID(String value) { this.UpSellInventoryID = value; return this; } public String getUpSellInventoryIDStartsWith() { return UpSellInventoryIDStartsWith; } public IN_UpSellQuery setUpSellInventoryIDStartsWith(String value) { this.UpSellInventoryIDStartsWith = value; return this; } public String getUpSellInventoryIDEndsWith() { return UpSellInventoryIDEndsWith; } public IN_UpSellQuery setUpSellInventoryIDEndsWith(String value) { this.UpSellInventoryIDEndsWith = value; return this; } public String getUpSellInventoryIDContains() { return UpSellInventoryIDContains; } public IN_UpSellQuery setUpSellInventoryIDContains(String value) { this.UpSellInventoryIDContains = value; return this; } public String getUpSellInventoryIDLike() { return UpSellInventoryIDLike; } public IN_UpSellQuery setUpSellInventoryIDLike(String value) { this.UpSellInventoryIDLike = value; return this; } public ArrayList getUpSellInventoryIDBetween() { return UpSellInventoryIDBetween; } public IN_UpSellQuery setUpSellInventoryIDBetween(ArrayList value) { this.UpSellInventoryIDBetween = value; return this; } public ArrayList getUpSellInventoryIDIn() { return UpSellInventoryIDIn; } public IN_UpSellQuery setUpSellInventoryIDIn(ArrayList value) { this.UpSellInventoryIDIn = value; return this; } public String getDescription() { return Description; } public IN_UpSellQuery setDescription(String value) { this.Description = value; return this; } public String getDescriptionStartsWith() { return DescriptionStartsWith; } public IN_UpSellQuery setDescriptionStartsWith(String value) { this.DescriptionStartsWith = value; return this; } public String getDescriptionEndsWith() { return DescriptionEndsWith; } public IN_UpSellQuery setDescriptionEndsWith(String value) { this.DescriptionEndsWith = value; return this; } public String getDescriptionContains() { return DescriptionContains; } public IN_UpSellQuery setDescriptionContains(String value) { this.DescriptionContains = value; return this; } public String getDescriptionLike() { return DescriptionLike; } public IN_UpSellQuery setDescriptionLike(String value) { this.DescriptionLike = value; return this; } public ArrayList getDescriptionBetween() { return DescriptionBetween; } public IN_UpSellQuery setDescriptionBetween(ArrayList value) { this.DescriptionBetween = value; return this; } public ArrayList getDescriptionIn() { return DescriptionIn; } public IN_UpSellQuery setDescriptionIn(ArrayList value) { this.DescriptionIn = value; return this; } public String getPrimaryCategoryID() { return PrimaryCategoryID; } public IN_UpSellQuery setPrimaryCategoryID(String value) { this.PrimaryCategoryID = value; return this; } public String getPrimaryCategoryIDStartsWith() { return PrimaryCategoryIDStartsWith; } public IN_UpSellQuery setPrimaryCategoryIDStartsWith(String value) { this.PrimaryCategoryIDStartsWith = value; return this; } public String getPrimaryCategoryIDEndsWith() { return PrimaryCategoryIDEndsWith; } public IN_UpSellQuery setPrimaryCategoryIDEndsWith(String value) { this.PrimaryCategoryIDEndsWith = value; return this; } public String getPrimaryCategoryIDContains() { return PrimaryCategoryIDContains; } public IN_UpSellQuery setPrimaryCategoryIDContains(String value) { this.PrimaryCategoryIDContains = value; return this; } public String getPrimaryCategoryIDLike() { return PrimaryCategoryIDLike; } public IN_UpSellQuery setPrimaryCategoryIDLike(String value) { this.PrimaryCategoryIDLike = value; return this; } public ArrayList getPrimaryCategoryIDBetween() { return PrimaryCategoryIDBetween; } public IN_UpSellQuery setPrimaryCategoryIDBetween(ArrayList value) { this.PrimaryCategoryIDBetween = value; return this; } public ArrayList getPrimaryCategoryIDIn() { return PrimaryCategoryIDIn; } public IN_UpSellQuery setPrimaryCategoryIDIn(ArrayList value) { this.PrimaryCategoryIDIn = value; return this; } public String getSecondaryCategoryID() { return SecondaryCategoryID; } public IN_UpSellQuery setSecondaryCategoryID(String value) { this.SecondaryCategoryID = value; return this; } public String getSecondaryCategoryIDStartsWith() { return SecondaryCategoryIDStartsWith; } public IN_UpSellQuery setSecondaryCategoryIDStartsWith(String value) { this.SecondaryCategoryIDStartsWith = value; return this; } public String getSecondaryCategoryIDEndsWith() { return SecondaryCategoryIDEndsWith; } public IN_UpSellQuery setSecondaryCategoryIDEndsWith(String value) { this.SecondaryCategoryIDEndsWith = value; return this; } public String getSecondaryCategoryIDContains() { return SecondaryCategoryIDContains; } public IN_UpSellQuery setSecondaryCategoryIDContains(String value) { this.SecondaryCategoryIDContains = value; return this; } public String getSecondaryCategoryIDLike() { return SecondaryCategoryIDLike; } public IN_UpSellQuery setSecondaryCategoryIDLike(String value) { this.SecondaryCategoryIDLike = value; return this; } public ArrayList getSecondaryCategoryIDBetween() { return SecondaryCategoryIDBetween; } public IN_UpSellQuery setSecondaryCategoryIDBetween(ArrayList value) { this.SecondaryCategoryIDBetween = value; return this; } public ArrayList getSecondaryCategoryIDIn() { return SecondaryCategoryIDIn; } public IN_UpSellQuery setSecondaryCategoryIDIn(ArrayList value) { this.SecondaryCategoryIDIn = value; return this; } public BigDecimal getQuantity() { return Quantity; } public IN_UpSellQuery setQuantity(BigDecimal value) { this.Quantity = value; return this; } public BigDecimal getQuantityGreaterThanOrEqualTo() { return QuantityGreaterThanOrEqualTo; } public IN_UpSellQuery setQuantityGreaterThanOrEqualTo(BigDecimal value) { this.QuantityGreaterThanOrEqualTo = value; return this; } public BigDecimal getQuantityGreaterThan() { return QuantityGreaterThan; } public IN_UpSellQuery setQuantityGreaterThan(BigDecimal value) { this.QuantityGreaterThan = value; return this; } public BigDecimal getQuantityLessThan() { return QuantityLessThan; } public IN_UpSellQuery setQuantityLessThan(BigDecimal value) { this.QuantityLessThan = value; return this; } public BigDecimal getQuantityLessThanOrEqualTo() { return QuantityLessThanOrEqualTo; } public IN_UpSellQuery setQuantityLessThanOrEqualTo(BigDecimal value) { this.QuantityLessThanOrEqualTo = value; return this; } public BigDecimal getQuantityNotEqualTo() { return QuantityNotEqualTo; } public IN_UpSellQuery setQuantityNotEqualTo(BigDecimal value) { this.QuantityNotEqualTo = value; return this; } public ArrayList getQuantityBetween() { return QuantityBetween; } public IN_UpSellQuery setQuantityBetween(ArrayList value) { this.QuantityBetween = value; return this; } public ArrayList getQuantityIn() { return QuantityIn; } public IN_UpSellQuery setQuantityIn(ArrayList value) { this.QuantityIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @Route(Path="/Queries/IN_WarehouseSOH", Verbs="GET") @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class IN_WarehouseSOHQuery extends QueryDb implements IReturn> { public String IN_WarehouseSOHID = null; public String IN_WarehouseSOHIDStartsWith = null; public String IN_WarehouseSOHIDEndsWith = null; public String IN_WarehouseSOHIDContains = null; public String IN_WarehouseSOHIDLike = null; public ArrayList IN_WarehouseSOHIDBetween = null; public ArrayList IN_WarehouseSOHIDIn = null; public String InventoryID = null; public String InventoryIDStartsWith = null; public String InventoryIDEndsWith = null; public String InventoryIDContains = null; public String InventoryIDLike = null; public ArrayList InventoryIDBetween = null; public ArrayList InventoryIDIn = null; public String IN_LogicalID = null; public String IN_LogicalIDStartsWith = null; public String IN_LogicalIDEndsWith = null; public String IN_LogicalIDContains = null; public String IN_LogicalIDLike = null; public ArrayList IN_LogicalIDBetween = null; public ArrayList IN_LogicalIDIn = null; public BigDecimal QuantityLeft = null; public BigDecimal QuantityLeftGreaterThanOrEqualTo = null; public BigDecimal QuantityLeftGreaterThan = null; public BigDecimal QuantityLeftLessThan = null; public BigDecimal QuantityLeftLessThanOrEqualTo = null; public BigDecimal QuantityLeftNotEqualTo = null; public ArrayList QuantityLeftBetween = null; public ArrayList QuantityLeftIn = null; public BigDecimal QuantityAllocated = null; public BigDecimal QuantityAllocatedGreaterThanOrEqualTo = null; public BigDecimal QuantityAllocatedGreaterThan = null; public BigDecimal QuantityAllocatedLessThan = null; public BigDecimal QuantityAllocatedLessThanOrEqualTo = null; public BigDecimal QuantityAllocatedNotEqualTo = null; public ArrayList QuantityAllocatedBetween = null; public ArrayList QuantityAllocatedIn = null; public BigDecimal PickAllocated = null; public BigDecimal PickAllocatedGreaterThanOrEqualTo = null; public BigDecimal PickAllocatedGreaterThan = null; public BigDecimal PickAllocatedLessThan = null; public BigDecimal PickAllocatedLessThanOrEqualTo = null; public BigDecimal PickAllocatedNotEqualTo = null; public ArrayList PickAllocatedBetween = null; public ArrayList PickAllocatedIn = null; public BigDecimal ShipAllocated = null; public BigDecimal ShipAllocatedGreaterThanOrEqualTo = null; public BigDecimal ShipAllocatedGreaterThan = null; public BigDecimal ShipAllocatedLessThan = null; public BigDecimal ShipAllocatedLessThanOrEqualTo = null; public BigDecimal ShipAllocatedNotEqualTo = null; public ArrayList ShipAllocatedBetween = null; public ArrayList ShipAllocatedIn = null; public BigDecimal ForwardRequirements = null; public BigDecimal ForwardRequirementsGreaterThanOrEqualTo = null; public BigDecimal ForwardRequirementsGreaterThan = null; public BigDecimal ForwardRequirementsLessThan = null; public BigDecimal ForwardRequirementsLessThanOrEqualTo = null; public BigDecimal ForwardRequirementsNotEqualTo = null; public ArrayList ForwardRequirementsBetween = null; public ArrayList ForwardRequirementsIn = null; public BigDecimal TransferAllocated = null; public BigDecimal TransferAllocatedGreaterThanOrEqualTo = null; public BigDecimal TransferAllocatedGreaterThan = null; public BigDecimal TransferAllocatedLessThan = null; public BigDecimal TransferAllocatedLessThanOrEqualTo = null; public BigDecimal TransferAllocatedNotEqualTo = null; public ArrayList TransferAllocatedBetween = null; public ArrayList TransferAllocatedIn = null; public BigDecimal BOMAllocated = null; public BigDecimal BOMAllocatedGreaterThanOrEqualTo = null; public BigDecimal BOMAllocatedGreaterThan = null; public BigDecimal BOMAllocatedLessThan = null; public BigDecimal BOMAllocatedLessThanOrEqualTo = null; public BigDecimal BOMAllocatedNotEqualTo = null; public ArrayList BOMAllocatedBetween = null; public ArrayList BOMAllocatedIn = null; public String getInWarehouseSOHID() { return IN_WarehouseSOHID; } public IN_WarehouseSOHQuery setInWarehouseSOHID(String value) { this.IN_WarehouseSOHID = value; return this; } public String getInWarehouseSOHIDStartsWith() { return IN_WarehouseSOHIDStartsWith; } public IN_WarehouseSOHQuery setInWarehouseSOHIDStartsWith(String value) { this.IN_WarehouseSOHIDStartsWith = value; return this; } public String getInWarehouseSOHIDEndsWith() { return IN_WarehouseSOHIDEndsWith; } public IN_WarehouseSOHQuery setInWarehouseSOHIDEndsWith(String value) { this.IN_WarehouseSOHIDEndsWith = value; return this; } public String getInWarehouseSOHIDContains() { return IN_WarehouseSOHIDContains; } public IN_WarehouseSOHQuery setInWarehouseSOHIDContains(String value) { this.IN_WarehouseSOHIDContains = value; return this; } public String getInWarehouseSOHIDLike() { return IN_WarehouseSOHIDLike; } public IN_WarehouseSOHQuery setInWarehouseSOHIDLike(String value) { this.IN_WarehouseSOHIDLike = value; return this; } public ArrayList getInWarehouseSOHIDBetween() { return IN_WarehouseSOHIDBetween; } public IN_WarehouseSOHQuery setInWarehouseSOHIDBetween(ArrayList value) { this.IN_WarehouseSOHIDBetween = value; return this; } public ArrayList getInWarehouseSOHIDIn() { return IN_WarehouseSOHIDIn; } public IN_WarehouseSOHQuery setInWarehouseSOHIDIn(ArrayList value) { this.IN_WarehouseSOHIDIn = value; return this; } public String getInventoryID() { return InventoryID; } public IN_WarehouseSOHQuery setInventoryID(String value) { this.InventoryID = value; return this; } public String getInventoryIDStartsWith() { return InventoryIDStartsWith; } public IN_WarehouseSOHQuery setInventoryIDStartsWith(String value) { this.InventoryIDStartsWith = value; return this; } public String getInventoryIDEndsWith() { return InventoryIDEndsWith; } public IN_WarehouseSOHQuery setInventoryIDEndsWith(String value) { this.InventoryIDEndsWith = value; return this; } public String getInventoryIDContains() { return InventoryIDContains; } public IN_WarehouseSOHQuery setInventoryIDContains(String value) { this.InventoryIDContains = value; return this; } public String getInventoryIDLike() { return InventoryIDLike; } public IN_WarehouseSOHQuery setInventoryIDLike(String value) { this.InventoryIDLike = value; return this; } public ArrayList getInventoryIDBetween() { return InventoryIDBetween; } public IN_WarehouseSOHQuery setInventoryIDBetween(ArrayList value) { this.InventoryIDBetween = value; return this; } public ArrayList getInventoryIDIn() { return InventoryIDIn; } public IN_WarehouseSOHQuery setInventoryIDIn(ArrayList value) { this.InventoryIDIn = value; return this; } public String getInLogicalID() { return IN_LogicalID; } public IN_WarehouseSOHQuery setInLogicalID(String value) { this.IN_LogicalID = value; return this; } public String getInLogicalIDStartsWith() { return IN_LogicalIDStartsWith; } public IN_WarehouseSOHQuery setInLogicalIDStartsWith(String value) { this.IN_LogicalIDStartsWith = value; return this; } public String getInLogicalIDEndsWith() { return IN_LogicalIDEndsWith; } public IN_WarehouseSOHQuery setInLogicalIDEndsWith(String value) { this.IN_LogicalIDEndsWith = value; return this; } public String getInLogicalIDContains() { return IN_LogicalIDContains; } public IN_WarehouseSOHQuery setInLogicalIDContains(String value) { this.IN_LogicalIDContains = value; return this; } public String getInLogicalIDLike() { return IN_LogicalIDLike; } public IN_WarehouseSOHQuery setInLogicalIDLike(String value) { this.IN_LogicalIDLike = value; return this; } public ArrayList getInLogicalIDBetween() { return IN_LogicalIDBetween; } public IN_WarehouseSOHQuery setInLogicalIDBetween(ArrayList value) { this.IN_LogicalIDBetween = value; return this; } public ArrayList getInLogicalIDIn() { return IN_LogicalIDIn; } public IN_WarehouseSOHQuery setInLogicalIDIn(ArrayList value) { this.IN_LogicalIDIn = value; return this; } public BigDecimal getQuantityLeft() { return QuantityLeft; } public IN_WarehouseSOHQuery setQuantityLeft(BigDecimal value) { this.QuantityLeft = value; return this; } public BigDecimal getQuantityLeftGreaterThanOrEqualTo() { return QuantityLeftGreaterThanOrEqualTo; } public IN_WarehouseSOHQuery setQuantityLeftGreaterThanOrEqualTo(BigDecimal value) { this.QuantityLeftGreaterThanOrEqualTo = value; return this; } public BigDecimal getQuantityLeftGreaterThan() { return QuantityLeftGreaterThan; } public IN_WarehouseSOHQuery setQuantityLeftGreaterThan(BigDecimal value) { this.QuantityLeftGreaterThan = value; return this; } public BigDecimal getQuantityLeftLessThan() { return QuantityLeftLessThan; } public IN_WarehouseSOHQuery setQuantityLeftLessThan(BigDecimal value) { this.QuantityLeftLessThan = value; return this; } public BigDecimal getQuantityLeftLessThanOrEqualTo() { return QuantityLeftLessThanOrEqualTo; } public IN_WarehouseSOHQuery setQuantityLeftLessThanOrEqualTo(BigDecimal value) { this.QuantityLeftLessThanOrEqualTo = value; return this; } public BigDecimal getQuantityLeftNotEqualTo() { return QuantityLeftNotEqualTo; } public IN_WarehouseSOHQuery setQuantityLeftNotEqualTo(BigDecimal value) { this.QuantityLeftNotEqualTo = value; return this; } public ArrayList getQuantityLeftBetween() { return QuantityLeftBetween; } public IN_WarehouseSOHQuery setQuantityLeftBetween(ArrayList value) { this.QuantityLeftBetween = value; return this; } public ArrayList getQuantityLeftIn() { return QuantityLeftIn; } public IN_WarehouseSOHQuery setQuantityLeftIn(ArrayList value) { this.QuantityLeftIn = value; return this; } public BigDecimal getQuantityAllocated() { return QuantityAllocated; } public IN_WarehouseSOHQuery setQuantityAllocated(BigDecimal value) { this.QuantityAllocated = value; return this; } public BigDecimal getQuantityAllocatedGreaterThanOrEqualTo() { return QuantityAllocatedGreaterThanOrEqualTo; } public IN_WarehouseSOHQuery setQuantityAllocatedGreaterThanOrEqualTo(BigDecimal value) { this.QuantityAllocatedGreaterThanOrEqualTo = value; return this; } public BigDecimal getQuantityAllocatedGreaterThan() { return QuantityAllocatedGreaterThan; } public IN_WarehouseSOHQuery setQuantityAllocatedGreaterThan(BigDecimal value) { this.QuantityAllocatedGreaterThan = value; return this; } public BigDecimal getQuantityAllocatedLessThan() { return QuantityAllocatedLessThan; } public IN_WarehouseSOHQuery setQuantityAllocatedLessThan(BigDecimal value) { this.QuantityAllocatedLessThan = value; return this; } public BigDecimal getQuantityAllocatedLessThanOrEqualTo() { return QuantityAllocatedLessThanOrEqualTo; } public IN_WarehouseSOHQuery setQuantityAllocatedLessThanOrEqualTo(BigDecimal value) { this.QuantityAllocatedLessThanOrEqualTo = value; return this; } public BigDecimal getQuantityAllocatedNotEqualTo() { return QuantityAllocatedNotEqualTo; } public IN_WarehouseSOHQuery setQuantityAllocatedNotEqualTo(BigDecimal value) { this.QuantityAllocatedNotEqualTo = value; return this; } public ArrayList getQuantityAllocatedBetween() { return QuantityAllocatedBetween; } public IN_WarehouseSOHQuery setQuantityAllocatedBetween(ArrayList value) { this.QuantityAllocatedBetween = value; return this; } public ArrayList getQuantityAllocatedIn() { return QuantityAllocatedIn; } public IN_WarehouseSOHQuery setQuantityAllocatedIn(ArrayList value) { this.QuantityAllocatedIn = value; return this; } public BigDecimal getPickAllocated() { return PickAllocated; } public IN_WarehouseSOHQuery setPickAllocated(BigDecimal value) { this.PickAllocated = value; return this; } public BigDecimal getPickAllocatedGreaterThanOrEqualTo() { return PickAllocatedGreaterThanOrEqualTo; } public IN_WarehouseSOHQuery setPickAllocatedGreaterThanOrEqualTo(BigDecimal value) { this.PickAllocatedGreaterThanOrEqualTo = value; return this; } public BigDecimal getPickAllocatedGreaterThan() { return PickAllocatedGreaterThan; } public IN_WarehouseSOHQuery setPickAllocatedGreaterThan(BigDecimal value) { this.PickAllocatedGreaterThan = value; return this; } public BigDecimal getPickAllocatedLessThan() { return PickAllocatedLessThan; } public IN_WarehouseSOHQuery setPickAllocatedLessThan(BigDecimal value) { this.PickAllocatedLessThan = value; return this; } public BigDecimal getPickAllocatedLessThanOrEqualTo() { return PickAllocatedLessThanOrEqualTo; } public IN_WarehouseSOHQuery setPickAllocatedLessThanOrEqualTo(BigDecimal value) { this.PickAllocatedLessThanOrEqualTo = value; return this; } public BigDecimal getPickAllocatedNotEqualTo() { return PickAllocatedNotEqualTo; } public IN_WarehouseSOHQuery setPickAllocatedNotEqualTo(BigDecimal value) { this.PickAllocatedNotEqualTo = value; return this; } public ArrayList getPickAllocatedBetween() { return PickAllocatedBetween; } public IN_WarehouseSOHQuery setPickAllocatedBetween(ArrayList value) { this.PickAllocatedBetween = value; return this; } public ArrayList getPickAllocatedIn() { return PickAllocatedIn; } public IN_WarehouseSOHQuery setPickAllocatedIn(ArrayList value) { this.PickAllocatedIn = value; return this; } public BigDecimal getShipAllocated() { return ShipAllocated; } public IN_WarehouseSOHQuery setShipAllocated(BigDecimal value) { this.ShipAllocated = value; return this; } public BigDecimal getShipAllocatedGreaterThanOrEqualTo() { return ShipAllocatedGreaterThanOrEqualTo; } public IN_WarehouseSOHQuery setShipAllocatedGreaterThanOrEqualTo(BigDecimal value) { this.ShipAllocatedGreaterThanOrEqualTo = value; return this; } public BigDecimal getShipAllocatedGreaterThan() { return ShipAllocatedGreaterThan; } public IN_WarehouseSOHQuery setShipAllocatedGreaterThan(BigDecimal value) { this.ShipAllocatedGreaterThan = value; return this; } public BigDecimal getShipAllocatedLessThan() { return ShipAllocatedLessThan; } public IN_WarehouseSOHQuery setShipAllocatedLessThan(BigDecimal value) { this.ShipAllocatedLessThan = value; return this; } public BigDecimal getShipAllocatedLessThanOrEqualTo() { return ShipAllocatedLessThanOrEqualTo; } public IN_WarehouseSOHQuery setShipAllocatedLessThanOrEqualTo(BigDecimal value) { this.ShipAllocatedLessThanOrEqualTo = value; return this; } public BigDecimal getShipAllocatedNotEqualTo() { return ShipAllocatedNotEqualTo; } public IN_WarehouseSOHQuery setShipAllocatedNotEqualTo(BigDecimal value) { this.ShipAllocatedNotEqualTo = value; return this; } public ArrayList getShipAllocatedBetween() { return ShipAllocatedBetween; } public IN_WarehouseSOHQuery setShipAllocatedBetween(ArrayList value) { this.ShipAllocatedBetween = value; return this; } public ArrayList getShipAllocatedIn() { return ShipAllocatedIn; } public IN_WarehouseSOHQuery setShipAllocatedIn(ArrayList value) { this.ShipAllocatedIn = value; return this; } public BigDecimal getForwardRequirements() { return ForwardRequirements; } public IN_WarehouseSOHQuery setForwardRequirements(BigDecimal value) { this.ForwardRequirements = value; return this; } public BigDecimal getForwardRequirementsGreaterThanOrEqualTo() { return ForwardRequirementsGreaterThanOrEqualTo; } public IN_WarehouseSOHQuery setForwardRequirementsGreaterThanOrEqualTo(BigDecimal value) { this.ForwardRequirementsGreaterThanOrEqualTo = value; return this; } public BigDecimal getForwardRequirementsGreaterThan() { return ForwardRequirementsGreaterThan; } public IN_WarehouseSOHQuery setForwardRequirementsGreaterThan(BigDecimal value) { this.ForwardRequirementsGreaterThan = value; return this; } public BigDecimal getForwardRequirementsLessThan() { return ForwardRequirementsLessThan; } public IN_WarehouseSOHQuery setForwardRequirementsLessThan(BigDecimal value) { this.ForwardRequirementsLessThan = value; return this; } public BigDecimal getForwardRequirementsLessThanOrEqualTo() { return ForwardRequirementsLessThanOrEqualTo; } public IN_WarehouseSOHQuery setForwardRequirementsLessThanOrEqualTo(BigDecimal value) { this.ForwardRequirementsLessThanOrEqualTo = value; return this; } public BigDecimal getForwardRequirementsNotEqualTo() { return ForwardRequirementsNotEqualTo; } public IN_WarehouseSOHQuery setForwardRequirementsNotEqualTo(BigDecimal value) { this.ForwardRequirementsNotEqualTo = value; return this; } public ArrayList getForwardRequirementsBetween() { return ForwardRequirementsBetween; } public IN_WarehouseSOHQuery setForwardRequirementsBetween(ArrayList value) { this.ForwardRequirementsBetween = value; return this; } public ArrayList getForwardRequirementsIn() { return ForwardRequirementsIn; } public IN_WarehouseSOHQuery setForwardRequirementsIn(ArrayList value) { this.ForwardRequirementsIn = value; return this; } public BigDecimal getTransferAllocated() { return TransferAllocated; } public IN_WarehouseSOHQuery setTransferAllocated(BigDecimal value) { this.TransferAllocated = value; return this; } public BigDecimal getTransferAllocatedGreaterThanOrEqualTo() { return TransferAllocatedGreaterThanOrEqualTo; } public IN_WarehouseSOHQuery setTransferAllocatedGreaterThanOrEqualTo(BigDecimal value) { this.TransferAllocatedGreaterThanOrEqualTo = value; return this; } public BigDecimal getTransferAllocatedGreaterThan() { return TransferAllocatedGreaterThan; } public IN_WarehouseSOHQuery setTransferAllocatedGreaterThan(BigDecimal value) { this.TransferAllocatedGreaterThan = value; return this; } public BigDecimal getTransferAllocatedLessThan() { return TransferAllocatedLessThan; } public IN_WarehouseSOHQuery setTransferAllocatedLessThan(BigDecimal value) { this.TransferAllocatedLessThan = value; return this; } public BigDecimal getTransferAllocatedLessThanOrEqualTo() { return TransferAllocatedLessThanOrEqualTo; } public IN_WarehouseSOHQuery setTransferAllocatedLessThanOrEqualTo(BigDecimal value) { this.TransferAllocatedLessThanOrEqualTo = value; return this; } public BigDecimal getTransferAllocatedNotEqualTo() { return TransferAllocatedNotEqualTo; } public IN_WarehouseSOHQuery setTransferAllocatedNotEqualTo(BigDecimal value) { this.TransferAllocatedNotEqualTo = value; return this; } public ArrayList getTransferAllocatedBetween() { return TransferAllocatedBetween; } public IN_WarehouseSOHQuery setTransferAllocatedBetween(ArrayList value) { this.TransferAllocatedBetween = value; return this; } public ArrayList getTransferAllocatedIn() { return TransferAllocatedIn; } public IN_WarehouseSOHQuery setTransferAllocatedIn(ArrayList value) { this.TransferAllocatedIn = value; return this; } public BigDecimal getBomAllocated() { return BOMAllocated; } public IN_WarehouseSOHQuery setBomAllocated(BigDecimal value) { this.BOMAllocated = value; return this; } public BigDecimal getBomAllocatedGreaterThanOrEqualTo() { return BOMAllocatedGreaterThanOrEqualTo; } public IN_WarehouseSOHQuery setBomAllocatedGreaterThanOrEqualTo(BigDecimal value) { this.BOMAllocatedGreaterThanOrEqualTo = value; return this; } public BigDecimal getBomAllocatedGreaterThan() { return BOMAllocatedGreaterThan; } public IN_WarehouseSOHQuery setBomAllocatedGreaterThan(BigDecimal value) { this.BOMAllocatedGreaterThan = value; return this; } public BigDecimal getBomAllocatedLessThan() { return BOMAllocatedLessThan; } public IN_WarehouseSOHQuery setBomAllocatedLessThan(BigDecimal value) { this.BOMAllocatedLessThan = value; return this; } public BigDecimal getBomAllocatedLessThanOrEqualTo() { return BOMAllocatedLessThanOrEqualTo; } public IN_WarehouseSOHQuery setBomAllocatedLessThanOrEqualTo(BigDecimal value) { this.BOMAllocatedLessThanOrEqualTo = value; return this; } public BigDecimal getBomAllocatedNotEqualTo() { return BOMAllocatedNotEqualTo; } public IN_WarehouseSOHQuery setBomAllocatedNotEqualTo(BigDecimal value) { this.BOMAllocatedNotEqualTo = value; return this; } public ArrayList getBomAllocatedBetween() { return BOMAllocatedBetween; } public IN_WarehouseSOHQuery setBomAllocatedBetween(ArrayList value) { this.BOMAllocatedBetween = value; return this; } public ArrayList getBomAllocatedIn() { return BOMAllocatedIn; } public IN_WarehouseSOHQuery setBomAllocatedIn(ArrayList value) { this.BOMAllocatedIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class IN_WHQtyLeftQuery extends QueryDb implements IReturn> { public String InventoryID = null; public String InventoryIDStartsWith = null; public String InventoryIDEndsWith = null; public String InventoryIDContains = null; public String InventoryIDLike = null; public ArrayList InventoryIDBetween = null; public ArrayList InventoryIDIn = null; public BigDecimal QtyLeft = null; public BigDecimal QtyLeftGreaterThanOrEqualTo = null; public BigDecimal QtyLeftGreaterThan = null; public BigDecimal QtyLeftLessThan = null; public BigDecimal QtyLeftLessThanOrEqualTo = null; public BigDecimal QtyLeftNotEqualTo = null; public ArrayList QtyLeftBetween = null; public ArrayList QtyLeftIn = null; public String getInventoryID() { return InventoryID; } public IN_WHQtyLeftQuery setInventoryID(String value) { this.InventoryID = value; return this; } public String getInventoryIDStartsWith() { return InventoryIDStartsWith; } public IN_WHQtyLeftQuery setInventoryIDStartsWith(String value) { this.InventoryIDStartsWith = value; return this; } public String getInventoryIDEndsWith() { return InventoryIDEndsWith; } public IN_WHQtyLeftQuery setInventoryIDEndsWith(String value) { this.InventoryIDEndsWith = value; return this; } public String getInventoryIDContains() { return InventoryIDContains; } public IN_WHQtyLeftQuery setInventoryIDContains(String value) { this.InventoryIDContains = value; return this; } public String getInventoryIDLike() { return InventoryIDLike; } public IN_WHQtyLeftQuery setInventoryIDLike(String value) { this.InventoryIDLike = value; return this; } public ArrayList getInventoryIDBetween() { return InventoryIDBetween; } public IN_WHQtyLeftQuery setInventoryIDBetween(ArrayList value) { this.InventoryIDBetween = value; return this; } public ArrayList getInventoryIDIn() { return InventoryIDIn; } public IN_WHQtyLeftQuery setInventoryIDIn(ArrayList value) { this.InventoryIDIn = value; return this; } public BigDecimal getQtyLeft() { return QtyLeft; } public IN_WHQtyLeftQuery setQtyLeft(BigDecimal value) { this.QtyLeft = value; return this; } public BigDecimal getQtyLeftGreaterThanOrEqualTo() { return QtyLeftGreaterThanOrEqualTo; } public IN_WHQtyLeftQuery setQtyLeftGreaterThanOrEqualTo(BigDecimal value) { this.QtyLeftGreaterThanOrEqualTo = value; return this; } public BigDecimal getQtyLeftGreaterThan() { return QtyLeftGreaterThan; } public IN_WHQtyLeftQuery setQtyLeftGreaterThan(BigDecimal value) { this.QtyLeftGreaterThan = value; return this; } public BigDecimal getQtyLeftLessThan() { return QtyLeftLessThan; } public IN_WHQtyLeftQuery setQtyLeftLessThan(BigDecimal value) { this.QtyLeftLessThan = value; return this; } public BigDecimal getQtyLeftLessThanOrEqualTo() { return QtyLeftLessThanOrEqualTo; } public IN_WHQtyLeftQuery setQtyLeftLessThanOrEqualTo(BigDecimal value) { this.QtyLeftLessThanOrEqualTo = value; return this; } public BigDecimal getQtyLeftNotEqualTo() { return QtyLeftNotEqualTo; } public IN_WHQtyLeftQuery setQtyLeftNotEqualTo(BigDecimal value) { this.QtyLeftNotEqualTo = value; return this; } public ArrayList getQtyLeftBetween() { return QtyLeftBetween; } public IN_WHQtyLeftQuery setQtyLeftBetween(ArrayList value) { this.QtyLeftBetween = value; return this; } public ArrayList getQtyLeftIn() { return QtyLeftIn; } public IN_WHQtyLeftQuery setQtyLeftIn(ArrayList value) { this.QtyLeftIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class INMGT020BOQTYQuery extends QueryDb implements IReturn> { public String InventoryID = null; public String InventoryIDStartsWith = null; public String InventoryIDEndsWith = null; public String InventoryIDContains = null; public String InventoryIDLike = null; public ArrayList InventoryIDBetween = null; public ArrayList InventoryIDIn = null; public BigDecimal Qty = null; public BigDecimal QtyGreaterThanOrEqualTo = null; public BigDecimal QtyGreaterThan = null; public BigDecimal QtyLessThan = null; public BigDecimal QtyLessThanOrEqualTo = null; public BigDecimal QtyNotEqualTo = null; public ArrayList QtyBetween = null; public ArrayList QtyIn = null; public BigDecimal Price = null; public BigDecimal PriceGreaterThanOrEqualTo = null; public BigDecimal PriceGreaterThan = null; public BigDecimal PriceLessThan = null; public BigDecimal PriceLessThanOrEqualTo = null; public BigDecimal PriceNotEqualTo = null; public ArrayList PriceBetween = null; public ArrayList PriceIn = null; public BigDecimal EstBOValue = null; public BigDecimal EstBOValueGreaterThanOrEqualTo = null; public BigDecimal EstBOValueGreaterThan = null; public BigDecimal EstBOValueLessThan = null; public BigDecimal EstBOValueLessThanOrEqualTo = null; public BigDecimal EstBOValueNotEqualTo = null; public ArrayList EstBOValueBetween = null; public ArrayList EstBOValueIn = null; public String IN_LogicalID = null; public String IN_LogicalIDStartsWith = null; public String IN_LogicalIDEndsWith = null; public String IN_LogicalIDContains = null; public String IN_LogicalIDLike = null; public ArrayList IN_LogicalIDBetween = null; public ArrayList IN_LogicalIDIn = null; public String getInventoryID() { return InventoryID; } public INMGT020BOQTYQuery setInventoryID(String value) { this.InventoryID = value; return this; } public String getInventoryIDStartsWith() { return InventoryIDStartsWith; } public INMGT020BOQTYQuery setInventoryIDStartsWith(String value) { this.InventoryIDStartsWith = value; return this; } public String getInventoryIDEndsWith() { return InventoryIDEndsWith; } public INMGT020BOQTYQuery setInventoryIDEndsWith(String value) { this.InventoryIDEndsWith = value; return this; } public String getInventoryIDContains() { return InventoryIDContains; } public INMGT020BOQTYQuery setInventoryIDContains(String value) { this.InventoryIDContains = value; return this; } public String getInventoryIDLike() { return InventoryIDLike; } public INMGT020BOQTYQuery setInventoryIDLike(String value) { this.InventoryIDLike = value; return this; } public ArrayList getInventoryIDBetween() { return InventoryIDBetween; } public INMGT020BOQTYQuery setInventoryIDBetween(ArrayList value) { this.InventoryIDBetween = value; return this; } public ArrayList getInventoryIDIn() { return InventoryIDIn; } public INMGT020BOQTYQuery setInventoryIDIn(ArrayList value) { this.InventoryIDIn = value; return this; } public BigDecimal getQty() { return Qty; } public INMGT020BOQTYQuery setQty(BigDecimal value) { this.Qty = value; return this; } public BigDecimal getQtyGreaterThanOrEqualTo() { return QtyGreaterThanOrEqualTo; } public INMGT020BOQTYQuery setQtyGreaterThanOrEqualTo(BigDecimal value) { this.QtyGreaterThanOrEqualTo = value; return this; } public BigDecimal getQtyGreaterThan() { return QtyGreaterThan; } public INMGT020BOQTYQuery setQtyGreaterThan(BigDecimal value) { this.QtyGreaterThan = value; return this; } public BigDecimal getQtyLessThan() { return QtyLessThan; } public INMGT020BOQTYQuery setQtyLessThan(BigDecimal value) { this.QtyLessThan = value; return this; } public BigDecimal getQtyLessThanOrEqualTo() { return QtyLessThanOrEqualTo; } public INMGT020BOQTYQuery setQtyLessThanOrEqualTo(BigDecimal value) { this.QtyLessThanOrEqualTo = value; return this; } public BigDecimal getQtyNotEqualTo() { return QtyNotEqualTo; } public INMGT020BOQTYQuery setQtyNotEqualTo(BigDecimal value) { this.QtyNotEqualTo = value; return this; } public ArrayList getQtyBetween() { return QtyBetween; } public INMGT020BOQTYQuery setQtyBetween(ArrayList value) { this.QtyBetween = value; return this; } public ArrayList getQtyIn() { return QtyIn; } public INMGT020BOQTYQuery setQtyIn(ArrayList value) { this.QtyIn = value; return this; } public BigDecimal getPrice() { return Price; } public INMGT020BOQTYQuery setPrice(BigDecimal value) { this.Price = value; return this; } public BigDecimal getPriceGreaterThanOrEqualTo() { return PriceGreaterThanOrEqualTo; } public INMGT020BOQTYQuery setPriceGreaterThanOrEqualTo(BigDecimal value) { this.PriceGreaterThanOrEqualTo = value; return this; } public BigDecimal getPriceGreaterThan() { return PriceGreaterThan; } public INMGT020BOQTYQuery setPriceGreaterThan(BigDecimal value) { this.PriceGreaterThan = value; return this; } public BigDecimal getPriceLessThan() { return PriceLessThan; } public INMGT020BOQTYQuery setPriceLessThan(BigDecimal value) { this.PriceLessThan = value; return this; } public BigDecimal getPriceLessThanOrEqualTo() { return PriceLessThanOrEqualTo; } public INMGT020BOQTYQuery setPriceLessThanOrEqualTo(BigDecimal value) { this.PriceLessThanOrEqualTo = value; return this; } public BigDecimal getPriceNotEqualTo() { return PriceNotEqualTo; } public INMGT020BOQTYQuery setPriceNotEqualTo(BigDecimal value) { this.PriceNotEqualTo = value; return this; } public ArrayList getPriceBetween() { return PriceBetween; } public INMGT020BOQTYQuery setPriceBetween(ArrayList value) { this.PriceBetween = value; return this; } public ArrayList getPriceIn() { return PriceIn; } public INMGT020BOQTYQuery setPriceIn(ArrayList value) { this.PriceIn = value; return this; } public BigDecimal getEstBOValue() { return EstBOValue; } public INMGT020BOQTYQuery setEstBOValue(BigDecimal value) { this.EstBOValue = value; return this; } public BigDecimal getEstBOValueGreaterThanOrEqualTo() { return EstBOValueGreaterThanOrEqualTo; } public INMGT020BOQTYQuery setEstBOValueGreaterThanOrEqualTo(BigDecimal value) { this.EstBOValueGreaterThanOrEqualTo = value; return this; } public BigDecimal getEstBOValueGreaterThan() { return EstBOValueGreaterThan; } public INMGT020BOQTYQuery setEstBOValueGreaterThan(BigDecimal value) { this.EstBOValueGreaterThan = value; return this; } public BigDecimal getEstBOValueLessThan() { return EstBOValueLessThan; } public INMGT020BOQTYQuery setEstBOValueLessThan(BigDecimal value) { this.EstBOValueLessThan = value; return this; } public BigDecimal getEstBOValueLessThanOrEqualTo() { return EstBOValueLessThanOrEqualTo; } public INMGT020BOQTYQuery setEstBOValueLessThanOrEqualTo(BigDecimal value) { this.EstBOValueLessThanOrEqualTo = value; return this; } public BigDecimal getEstBOValueNotEqualTo() { return EstBOValueNotEqualTo; } public INMGT020BOQTYQuery setEstBOValueNotEqualTo(BigDecimal value) { this.EstBOValueNotEqualTo = value; return this; } public ArrayList getEstBOValueBetween() { return EstBOValueBetween; } public INMGT020BOQTYQuery setEstBOValueBetween(ArrayList value) { this.EstBOValueBetween = value; return this; } public ArrayList getEstBOValueIn() { return EstBOValueIn; } public INMGT020BOQTYQuery setEstBOValueIn(ArrayList value) { this.EstBOValueIn = value; return this; } public String getInLogicalID() { return IN_LogicalID; } public INMGT020BOQTYQuery setInLogicalID(String value) { this.IN_LogicalID = value; return this; } public String getInLogicalIDStartsWith() { return IN_LogicalIDStartsWith; } public INMGT020BOQTYQuery setInLogicalIDStartsWith(String value) { this.IN_LogicalIDStartsWith = value; return this; } public String getInLogicalIDEndsWith() { return IN_LogicalIDEndsWith; } public INMGT020BOQTYQuery setInLogicalIDEndsWith(String value) { this.IN_LogicalIDEndsWith = value; return this; } public String getInLogicalIDContains() { return IN_LogicalIDContains; } public INMGT020BOQTYQuery setInLogicalIDContains(String value) { this.IN_LogicalIDContains = value; return this; } public String getInLogicalIDLike() { return IN_LogicalIDLike; } public INMGT020BOQTYQuery setInLogicalIDLike(String value) { this.IN_LogicalIDLike = value; return this; } public ArrayList getInLogicalIDBetween() { return IN_LogicalIDBetween; } public INMGT020BOQTYQuery setInLogicalIDBetween(ArrayList value) { this.IN_LogicalIDBetween = value; return this; } public ArrayList getInLogicalIDIn() { return IN_LogicalIDIn; } public INMGT020BOQTYQuery setInLogicalIDIn(ArrayList value) { this.IN_LogicalIDIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class INMGT020POQtyQuery extends QueryDb implements IReturn> { public String InventoryID = null; public String InventoryIDStartsWith = null; public String InventoryIDEndsWith = null; public String InventoryIDContains = null; public String InventoryIDLike = null; public ArrayList InventoryIDBetween = null; public ArrayList InventoryIDIn = null; public BigDecimal Qty = null; public BigDecimal QtyGreaterThanOrEqualTo = null; public BigDecimal QtyGreaterThan = null; public BigDecimal QtyLessThan = null; public BigDecimal QtyLessThanOrEqualTo = null; public BigDecimal QtyNotEqualTo = null; public ArrayList QtyBetween = null; public ArrayList QtyIn = null; public BigDecimal Delivered = null; public BigDecimal DeliveredGreaterThanOrEqualTo = null; public BigDecimal DeliveredGreaterThan = null; public BigDecimal DeliveredLessThan = null; public BigDecimal DeliveredLessThanOrEqualTo = null; public BigDecimal DeliveredNotEqualTo = null; public ArrayList DeliveredBetween = null; public ArrayList DeliveredIn = null; public BigDecimal UnactQty = null; public BigDecimal UnactQtyGreaterThanOrEqualTo = null; public BigDecimal UnactQtyGreaterThan = null; public BigDecimal UnactQtyLessThan = null; public BigDecimal UnactQtyLessThanOrEqualTo = null; public BigDecimal UnactQtyNotEqualTo = null; public ArrayList UnactQtyBetween = null; public ArrayList UnactQtyIn = null; public BigDecimal ActQty = null; public BigDecimal ActQtyGreaterThanOrEqualTo = null; public BigDecimal ActQtyGreaterThan = null; public BigDecimal ActQtyLessThan = null; public BigDecimal ActQtyLessThanOrEqualTo = null; public BigDecimal ActQtyNotEqualTo = null; public ArrayList ActQtyBetween = null; public ArrayList ActQtyIn = null; public String IN_LogicalID = null; public String IN_LogicalIDStartsWith = null; public String IN_LogicalIDEndsWith = null; public String IN_LogicalIDContains = null; public String IN_LogicalIDLike = null; public ArrayList IN_LogicalIDBetween = null; public ArrayList IN_LogicalIDIn = null; public String getInventoryID() { return InventoryID; } public INMGT020POQtyQuery setInventoryID(String value) { this.InventoryID = value; return this; } public String getInventoryIDStartsWith() { return InventoryIDStartsWith; } public INMGT020POQtyQuery setInventoryIDStartsWith(String value) { this.InventoryIDStartsWith = value; return this; } public String getInventoryIDEndsWith() { return InventoryIDEndsWith; } public INMGT020POQtyQuery setInventoryIDEndsWith(String value) { this.InventoryIDEndsWith = value; return this; } public String getInventoryIDContains() { return InventoryIDContains; } public INMGT020POQtyQuery setInventoryIDContains(String value) { this.InventoryIDContains = value; return this; } public String getInventoryIDLike() { return InventoryIDLike; } public INMGT020POQtyQuery setInventoryIDLike(String value) { this.InventoryIDLike = value; return this; } public ArrayList getInventoryIDBetween() { return InventoryIDBetween; } public INMGT020POQtyQuery setInventoryIDBetween(ArrayList value) { this.InventoryIDBetween = value; return this; } public ArrayList getInventoryIDIn() { return InventoryIDIn; } public INMGT020POQtyQuery setInventoryIDIn(ArrayList value) { this.InventoryIDIn = value; return this; } public BigDecimal getQty() { return Qty; } public INMGT020POQtyQuery setQty(BigDecimal value) { this.Qty = value; return this; } public BigDecimal getQtyGreaterThanOrEqualTo() { return QtyGreaterThanOrEqualTo; } public INMGT020POQtyQuery setQtyGreaterThanOrEqualTo(BigDecimal value) { this.QtyGreaterThanOrEqualTo = value; return this; } public BigDecimal getQtyGreaterThan() { return QtyGreaterThan; } public INMGT020POQtyQuery setQtyGreaterThan(BigDecimal value) { this.QtyGreaterThan = value; return this; } public BigDecimal getQtyLessThan() { return QtyLessThan; } public INMGT020POQtyQuery setQtyLessThan(BigDecimal value) { this.QtyLessThan = value; return this; } public BigDecimal getQtyLessThanOrEqualTo() { return QtyLessThanOrEqualTo; } public INMGT020POQtyQuery setQtyLessThanOrEqualTo(BigDecimal value) { this.QtyLessThanOrEqualTo = value; return this; } public BigDecimal getQtyNotEqualTo() { return QtyNotEqualTo; } public INMGT020POQtyQuery setQtyNotEqualTo(BigDecimal value) { this.QtyNotEqualTo = value; return this; } public ArrayList getQtyBetween() { return QtyBetween; } public INMGT020POQtyQuery setQtyBetween(ArrayList value) { this.QtyBetween = value; return this; } public ArrayList getQtyIn() { return QtyIn; } public INMGT020POQtyQuery setQtyIn(ArrayList value) { this.QtyIn = value; return this; } public BigDecimal getDelivered() { return Delivered; } public INMGT020POQtyQuery setDelivered(BigDecimal value) { this.Delivered = value; return this; } public BigDecimal getDeliveredGreaterThanOrEqualTo() { return DeliveredGreaterThanOrEqualTo; } public INMGT020POQtyQuery setDeliveredGreaterThanOrEqualTo(BigDecimal value) { this.DeliveredGreaterThanOrEqualTo = value; return this; } public BigDecimal getDeliveredGreaterThan() { return DeliveredGreaterThan; } public INMGT020POQtyQuery setDeliveredGreaterThan(BigDecimal value) { this.DeliveredGreaterThan = value; return this; } public BigDecimal getDeliveredLessThan() { return DeliveredLessThan; } public INMGT020POQtyQuery setDeliveredLessThan(BigDecimal value) { this.DeliveredLessThan = value; return this; } public BigDecimal getDeliveredLessThanOrEqualTo() { return DeliveredLessThanOrEqualTo; } public INMGT020POQtyQuery setDeliveredLessThanOrEqualTo(BigDecimal value) { this.DeliveredLessThanOrEqualTo = value; return this; } public BigDecimal getDeliveredNotEqualTo() { return DeliveredNotEqualTo; } public INMGT020POQtyQuery setDeliveredNotEqualTo(BigDecimal value) { this.DeliveredNotEqualTo = value; return this; } public ArrayList getDeliveredBetween() { return DeliveredBetween; } public INMGT020POQtyQuery setDeliveredBetween(ArrayList value) { this.DeliveredBetween = value; return this; } public ArrayList getDeliveredIn() { return DeliveredIn; } public INMGT020POQtyQuery setDeliveredIn(ArrayList value) { this.DeliveredIn = value; return this; } public BigDecimal getUnactQty() { return UnactQty; } public INMGT020POQtyQuery setUnactQty(BigDecimal value) { this.UnactQty = value; return this; } public BigDecimal getUnactQtyGreaterThanOrEqualTo() { return UnactQtyGreaterThanOrEqualTo; } public INMGT020POQtyQuery setUnactQtyGreaterThanOrEqualTo(BigDecimal value) { this.UnactQtyGreaterThanOrEqualTo = value; return this; } public BigDecimal getUnactQtyGreaterThan() { return UnactQtyGreaterThan; } public INMGT020POQtyQuery setUnactQtyGreaterThan(BigDecimal value) { this.UnactQtyGreaterThan = value; return this; } public BigDecimal getUnactQtyLessThan() { return UnactQtyLessThan; } public INMGT020POQtyQuery setUnactQtyLessThan(BigDecimal value) { this.UnactQtyLessThan = value; return this; } public BigDecimal getUnactQtyLessThanOrEqualTo() { return UnactQtyLessThanOrEqualTo; } public INMGT020POQtyQuery setUnactQtyLessThanOrEqualTo(BigDecimal value) { this.UnactQtyLessThanOrEqualTo = value; return this; } public BigDecimal getUnactQtyNotEqualTo() { return UnactQtyNotEqualTo; } public INMGT020POQtyQuery setUnactQtyNotEqualTo(BigDecimal value) { this.UnactQtyNotEqualTo = value; return this; } public ArrayList getUnactQtyBetween() { return UnactQtyBetween; } public INMGT020POQtyQuery setUnactQtyBetween(ArrayList value) { this.UnactQtyBetween = value; return this; } public ArrayList getUnactQtyIn() { return UnactQtyIn; } public INMGT020POQtyQuery setUnactQtyIn(ArrayList value) { this.UnactQtyIn = value; return this; } public BigDecimal getActQty() { return ActQty; } public INMGT020POQtyQuery setActQty(BigDecimal value) { this.ActQty = value; return this; } public BigDecimal getActQtyGreaterThanOrEqualTo() { return ActQtyGreaterThanOrEqualTo; } public INMGT020POQtyQuery setActQtyGreaterThanOrEqualTo(BigDecimal value) { this.ActQtyGreaterThanOrEqualTo = value; return this; } public BigDecimal getActQtyGreaterThan() { return ActQtyGreaterThan; } public INMGT020POQtyQuery setActQtyGreaterThan(BigDecimal value) { this.ActQtyGreaterThan = value; return this; } public BigDecimal getActQtyLessThan() { return ActQtyLessThan; } public INMGT020POQtyQuery setActQtyLessThan(BigDecimal value) { this.ActQtyLessThan = value; return this; } public BigDecimal getActQtyLessThanOrEqualTo() { return ActQtyLessThanOrEqualTo; } public INMGT020POQtyQuery setActQtyLessThanOrEqualTo(BigDecimal value) { this.ActQtyLessThanOrEqualTo = value; return this; } public BigDecimal getActQtyNotEqualTo() { return ActQtyNotEqualTo; } public INMGT020POQtyQuery setActQtyNotEqualTo(BigDecimal value) { this.ActQtyNotEqualTo = value; return this; } public ArrayList getActQtyBetween() { return ActQtyBetween; } public INMGT020POQtyQuery setActQtyBetween(ArrayList value) { this.ActQtyBetween = value; return this; } public ArrayList getActQtyIn() { return ActQtyIn; } public INMGT020POQtyQuery setActQtyIn(ArrayList value) { this.ActQtyIn = value; return this; } public String getInLogicalID() { return IN_LogicalID; } public INMGT020POQtyQuery setInLogicalID(String value) { this.IN_LogicalID = value; return this; } public String getInLogicalIDStartsWith() { return IN_LogicalIDStartsWith; } public INMGT020POQtyQuery setInLogicalIDStartsWith(String value) { this.IN_LogicalIDStartsWith = value; return this; } public String getInLogicalIDEndsWith() { return IN_LogicalIDEndsWith; } public INMGT020POQtyQuery setInLogicalIDEndsWith(String value) { this.IN_LogicalIDEndsWith = value; return this; } public String getInLogicalIDContains() { return IN_LogicalIDContains; } public INMGT020POQtyQuery setInLogicalIDContains(String value) { this.IN_LogicalIDContains = value; return this; } public String getInLogicalIDLike() { return IN_LogicalIDLike; } public INMGT020POQtyQuery setInLogicalIDLike(String value) { this.IN_LogicalIDLike = value; return this; } public ArrayList getInLogicalIDBetween() { return IN_LogicalIDBetween; } public INMGT020POQtyQuery setInLogicalIDBetween(ArrayList value) { this.IN_LogicalIDBetween = value; return this; } public ArrayList getInLogicalIDIn() { return IN_LogicalIDIn; } public INMGT020POQtyQuery setInLogicalIDIn(ArrayList value) { this.IN_LogicalIDIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class INV_AssemblyQuery extends QueryDb implements IReturn> { public String AssemblyNO = null; public String AssemblyNOStartsWith = null; public String AssemblyNOEndsWith = null; public String AssemblyNOContains = null; public String AssemblyNOLike = null; public ArrayList AssemblyNOBetween = null; public ArrayList AssemblyNOIn = null; public String AssembleTo = null; public String AssembleToStartsWith = null; public String AssembleToEndsWith = null; public String AssembleToContains = null; public String AssembleToLike = null; public ArrayList AssembleToBetween = null; public ArrayList AssembleToIn = null; public String AssemblyType = null; public String AssemblyTypeStartsWith = null; public String AssemblyTypeEndsWith = null; public String AssemblyTypeContains = null; public String AssemblyTypeLike = null; public ArrayList AssemblyTypeBetween = null; public ArrayList AssemblyTypeIn = null; public String AssembleFrom = null; public String AssembleFromStartsWith = null; public String AssembleFromEndsWith = null; public String AssembleFromContains = null; public String AssembleFromLike = null; public ArrayList AssembleFromBetween = null; public ArrayList AssembleFromIn = null; public String INAssemblyHistoryID = null; public String INAssemblyHistoryIDStartsWith = null; public String INAssemblyHistoryIDEndsWith = null; public String INAssemblyHistoryIDContains = null; public String INAssemblyHistoryIDLike = null; public ArrayList INAssemblyHistoryIDBetween = null; public ArrayList INAssemblyHistoryIDIn = null; public String INAssemblyLineID = null; public String INAssemblyLineIDStartsWith = null; public String INAssemblyLineIDEndsWith = null; public String INAssemblyLineIDContains = null; public String INAssemblyLineIDLike = null; public ArrayList INAssemblyLineIDBetween = null; public ArrayList INAssemblyLineIDIn = null; public String getAssemblyNO() { return AssemblyNO; } public INV_AssemblyQuery setAssemblyNO(String value) { this.AssemblyNO = value; return this; } public String getAssemblyNOStartsWith() { return AssemblyNOStartsWith; } public INV_AssemblyQuery setAssemblyNOStartsWith(String value) { this.AssemblyNOStartsWith = value; return this; } public String getAssemblyNOEndsWith() { return AssemblyNOEndsWith; } public INV_AssemblyQuery setAssemblyNOEndsWith(String value) { this.AssemblyNOEndsWith = value; return this; } public String getAssemblyNOContains() { return AssemblyNOContains; } public INV_AssemblyQuery setAssemblyNOContains(String value) { this.AssemblyNOContains = value; return this; } public String getAssemblyNOLike() { return AssemblyNOLike; } public INV_AssemblyQuery setAssemblyNOLike(String value) { this.AssemblyNOLike = value; return this; } public ArrayList getAssemblyNOBetween() { return AssemblyNOBetween; } public INV_AssemblyQuery setAssemblyNOBetween(ArrayList value) { this.AssemblyNOBetween = value; return this; } public ArrayList getAssemblyNOIn() { return AssemblyNOIn; } public INV_AssemblyQuery setAssemblyNOIn(ArrayList value) { this.AssemblyNOIn = value; return this; } public String getAssembleTo() { return AssembleTo; } public INV_AssemblyQuery setAssembleTo(String value) { this.AssembleTo = value; return this; } public String getAssembleToStartsWith() { return AssembleToStartsWith; } public INV_AssemblyQuery setAssembleToStartsWith(String value) { this.AssembleToStartsWith = value; return this; } public String getAssembleToEndsWith() { return AssembleToEndsWith; } public INV_AssemblyQuery setAssembleToEndsWith(String value) { this.AssembleToEndsWith = value; return this; } public String getAssembleToContains() { return AssembleToContains; } public INV_AssemblyQuery setAssembleToContains(String value) { this.AssembleToContains = value; return this; } public String getAssembleToLike() { return AssembleToLike; } public INV_AssemblyQuery setAssembleToLike(String value) { this.AssembleToLike = value; return this; } public ArrayList getAssembleToBetween() { return AssembleToBetween; } public INV_AssemblyQuery setAssembleToBetween(ArrayList value) { this.AssembleToBetween = value; return this; } public ArrayList getAssembleToIn() { return AssembleToIn; } public INV_AssemblyQuery setAssembleToIn(ArrayList value) { this.AssembleToIn = value; return this; } public String getAssemblyType() { return AssemblyType; } public INV_AssemblyQuery setAssemblyType(String value) { this.AssemblyType = value; return this; } public String getAssemblyTypeStartsWith() { return AssemblyTypeStartsWith; } public INV_AssemblyQuery setAssemblyTypeStartsWith(String value) { this.AssemblyTypeStartsWith = value; return this; } public String getAssemblyTypeEndsWith() { return AssemblyTypeEndsWith; } public INV_AssemblyQuery setAssemblyTypeEndsWith(String value) { this.AssemblyTypeEndsWith = value; return this; } public String getAssemblyTypeContains() { return AssemblyTypeContains; } public INV_AssemblyQuery setAssemblyTypeContains(String value) { this.AssemblyTypeContains = value; return this; } public String getAssemblyTypeLike() { return AssemblyTypeLike; } public INV_AssemblyQuery setAssemblyTypeLike(String value) { this.AssemblyTypeLike = value; return this; } public ArrayList getAssemblyTypeBetween() { return AssemblyTypeBetween; } public INV_AssemblyQuery setAssemblyTypeBetween(ArrayList value) { this.AssemblyTypeBetween = value; return this; } public ArrayList getAssemblyTypeIn() { return AssemblyTypeIn; } public INV_AssemblyQuery setAssemblyTypeIn(ArrayList value) { this.AssemblyTypeIn = value; return this; } public String getAssembleFrom() { return AssembleFrom; } public INV_AssemblyQuery setAssembleFrom(String value) { this.AssembleFrom = value; return this; } public String getAssembleFromStartsWith() { return AssembleFromStartsWith; } public INV_AssemblyQuery setAssembleFromStartsWith(String value) { this.AssembleFromStartsWith = value; return this; } public String getAssembleFromEndsWith() { return AssembleFromEndsWith; } public INV_AssemblyQuery setAssembleFromEndsWith(String value) { this.AssembleFromEndsWith = value; return this; } public String getAssembleFromContains() { return AssembleFromContains; } public INV_AssemblyQuery setAssembleFromContains(String value) { this.AssembleFromContains = value; return this; } public String getAssembleFromLike() { return AssembleFromLike; } public INV_AssemblyQuery setAssembleFromLike(String value) { this.AssembleFromLike = value; return this; } public ArrayList getAssembleFromBetween() { return AssembleFromBetween; } public INV_AssemblyQuery setAssembleFromBetween(ArrayList value) { this.AssembleFromBetween = value; return this; } public ArrayList getAssembleFromIn() { return AssembleFromIn; } public INV_AssemblyQuery setAssembleFromIn(ArrayList value) { this.AssembleFromIn = value; return this; } public String getInAssemblyHistoryID() { return INAssemblyHistoryID; } public INV_AssemblyQuery setInAssemblyHistoryID(String value) { this.INAssemblyHistoryID = value; return this; } public String getInAssemblyHistoryIDStartsWith() { return INAssemblyHistoryIDStartsWith; } public INV_AssemblyQuery setInAssemblyHistoryIDStartsWith(String value) { this.INAssemblyHistoryIDStartsWith = value; return this; } public String getInAssemblyHistoryIDEndsWith() { return INAssemblyHistoryIDEndsWith; } public INV_AssemblyQuery setInAssemblyHistoryIDEndsWith(String value) { this.INAssemblyHistoryIDEndsWith = value; return this; } public String getInAssemblyHistoryIDContains() { return INAssemblyHistoryIDContains; } public INV_AssemblyQuery setInAssemblyHistoryIDContains(String value) { this.INAssemblyHistoryIDContains = value; return this; } public String getInAssemblyHistoryIDLike() { return INAssemblyHistoryIDLike; } public INV_AssemblyQuery setInAssemblyHistoryIDLike(String value) { this.INAssemblyHistoryIDLike = value; return this; } public ArrayList getInAssemblyHistoryIDBetween() { return INAssemblyHistoryIDBetween; } public INV_AssemblyQuery setInAssemblyHistoryIDBetween(ArrayList value) { this.INAssemblyHistoryIDBetween = value; return this; } public ArrayList getInAssemblyHistoryIDIn() { return INAssemblyHistoryIDIn; } public INV_AssemblyQuery setInAssemblyHistoryIDIn(ArrayList value) { this.INAssemblyHistoryIDIn = value; return this; } public String getInAssemblyLineID() { return INAssemblyLineID; } public INV_AssemblyQuery setInAssemblyLineID(String value) { this.INAssemblyLineID = value; return this; } public String getInAssemblyLineIDStartsWith() { return INAssemblyLineIDStartsWith; } public INV_AssemblyQuery setInAssemblyLineIDStartsWith(String value) { this.INAssemblyLineIDStartsWith = value; return this; } public String getInAssemblyLineIDEndsWith() { return INAssemblyLineIDEndsWith; } public INV_AssemblyQuery setInAssemblyLineIDEndsWith(String value) { this.INAssemblyLineIDEndsWith = value; return this; } public String getInAssemblyLineIDContains() { return INAssemblyLineIDContains; } public INV_AssemblyQuery setInAssemblyLineIDContains(String value) { this.INAssemblyLineIDContains = value; return this; } public String getInAssemblyLineIDLike() { return INAssemblyLineIDLike; } public INV_AssemblyQuery setInAssemblyLineIDLike(String value) { this.INAssemblyLineIDLike = value; return this; } public ArrayList getInAssemblyLineIDBetween() { return INAssemblyLineIDBetween; } public INV_AssemblyQuery setInAssemblyLineIDBetween(ArrayList value) { this.INAssemblyLineIDBetween = value; return this; } public ArrayList getInAssemblyLineIDIn() { return INAssemblyLineIDIn; } public INV_AssemblyQuery setInAssemblyLineIDIn(ArrayList value) { this.INAssemblyLineIDIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class INV_BOQTYQuery extends QueryDb implements IReturn> { public String InventoryID = null; public String InventoryIDStartsWith = null; public String InventoryIDEndsWith = null; public String InventoryIDContains = null; public String InventoryIDLike = null; public ArrayList InventoryIDBetween = null; public ArrayList InventoryIDIn = null; public BigDecimal Qty = null; public BigDecimal QtyGreaterThanOrEqualTo = null; public BigDecimal QtyGreaterThan = null; public BigDecimal QtyLessThan = null; public BigDecimal QtyLessThanOrEqualTo = null; public BigDecimal QtyNotEqualTo = null; public ArrayList QtyBetween = null; public ArrayList QtyIn = null; public BigDecimal ManualQty = null; public BigDecimal ManualQtyGreaterThanOrEqualTo = null; public BigDecimal ManualQtyGreaterThan = null; public BigDecimal ManualQtyLessThan = null; public BigDecimal ManualQtyLessThanOrEqualTo = null; public BigDecimal ManualQtyNotEqualTo = null; public ArrayList ManualQtyBetween = null; public ArrayList ManualQtyIn = null; public BigDecimal AutoQty = null; public BigDecimal AutoQtyGreaterThanOrEqualTo = null; public BigDecimal AutoQtyGreaterThan = null; public BigDecimal AutoQtyLessThan = null; public BigDecimal AutoQtyLessThanOrEqualTo = null; public BigDecimal AutoQtyNotEqualTo = null; public ArrayList AutoQtyBetween = null; public ArrayList AutoQtyIn = null; public BigDecimal Price = null; public BigDecimal PriceGreaterThanOrEqualTo = null; public BigDecimal PriceGreaterThan = null; public BigDecimal PriceLessThan = null; public BigDecimal PriceLessThanOrEqualTo = null; public BigDecimal PriceNotEqualTo = null; public ArrayList PriceBetween = null; public ArrayList PriceIn = null; public BigDecimal EstBOValue = null; public BigDecimal EstBOValueGreaterThanOrEqualTo = null; public BigDecimal EstBOValueGreaterThan = null; public BigDecimal EstBOValueLessThan = null; public BigDecimal EstBOValueLessThanOrEqualTo = null; public BigDecimal EstBOValueNotEqualTo = null; public ArrayList EstBOValueBetween = null; public ArrayList EstBOValueIn = null; public String In_logicalID = null; public String In_logicalIDStartsWith = null; public String In_logicalIDEndsWith = null; public String In_logicalIDContains = null; public String In_logicalIDLike = null; public ArrayList In_logicalIDBetween = null; public ArrayList In_logicalIDIn = null; public String getInventoryID() { return InventoryID; } public INV_BOQTYQuery setInventoryID(String value) { this.InventoryID = value; return this; } public String getInventoryIDStartsWith() { return InventoryIDStartsWith; } public INV_BOQTYQuery setInventoryIDStartsWith(String value) { this.InventoryIDStartsWith = value; return this; } public String getInventoryIDEndsWith() { return InventoryIDEndsWith; } public INV_BOQTYQuery setInventoryIDEndsWith(String value) { this.InventoryIDEndsWith = value; return this; } public String getInventoryIDContains() { return InventoryIDContains; } public INV_BOQTYQuery setInventoryIDContains(String value) { this.InventoryIDContains = value; return this; } public String getInventoryIDLike() { return InventoryIDLike; } public INV_BOQTYQuery setInventoryIDLike(String value) { this.InventoryIDLike = value; return this; } public ArrayList getInventoryIDBetween() { return InventoryIDBetween; } public INV_BOQTYQuery setInventoryIDBetween(ArrayList value) { this.InventoryIDBetween = value; return this; } public ArrayList getInventoryIDIn() { return InventoryIDIn; } public INV_BOQTYQuery setInventoryIDIn(ArrayList value) { this.InventoryIDIn = value; return this; } public BigDecimal getQty() { return Qty; } public INV_BOQTYQuery setQty(BigDecimal value) { this.Qty = value; return this; } public BigDecimal getQtyGreaterThanOrEqualTo() { return QtyGreaterThanOrEqualTo; } public INV_BOQTYQuery setQtyGreaterThanOrEqualTo(BigDecimal value) { this.QtyGreaterThanOrEqualTo = value; return this; } public BigDecimal getQtyGreaterThan() { return QtyGreaterThan; } public INV_BOQTYQuery setQtyGreaterThan(BigDecimal value) { this.QtyGreaterThan = value; return this; } public BigDecimal getQtyLessThan() { return QtyLessThan; } public INV_BOQTYQuery setQtyLessThan(BigDecimal value) { this.QtyLessThan = value; return this; } public BigDecimal getQtyLessThanOrEqualTo() { return QtyLessThanOrEqualTo; } public INV_BOQTYQuery setQtyLessThanOrEqualTo(BigDecimal value) { this.QtyLessThanOrEqualTo = value; return this; } public BigDecimal getQtyNotEqualTo() { return QtyNotEqualTo; } public INV_BOQTYQuery setQtyNotEqualTo(BigDecimal value) { this.QtyNotEqualTo = value; return this; } public ArrayList getQtyBetween() { return QtyBetween; } public INV_BOQTYQuery setQtyBetween(ArrayList value) { this.QtyBetween = value; return this; } public ArrayList getQtyIn() { return QtyIn; } public INV_BOQTYQuery setQtyIn(ArrayList value) { this.QtyIn = value; return this; } public BigDecimal getManualQty() { return ManualQty; } public INV_BOQTYQuery setManualQty(BigDecimal value) { this.ManualQty = value; return this; } public BigDecimal getManualQtyGreaterThanOrEqualTo() { return ManualQtyGreaterThanOrEqualTo; } public INV_BOQTYQuery setManualQtyGreaterThanOrEqualTo(BigDecimal value) { this.ManualQtyGreaterThanOrEqualTo = value; return this; } public BigDecimal getManualQtyGreaterThan() { return ManualQtyGreaterThan; } public INV_BOQTYQuery setManualQtyGreaterThan(BigDecimal value) { this.ManualQtyGreaterThan = value; return this; } public BigDecimal getManualQtyLessThan() { return ManualQtyLessThan; } public INV_BOQTYQuery setManualQtyLessThan(BigDecimal value) { this.ManualQtyLessThan = value; return this; } public BigDecimal getManualQtyLessThanOrEqualTo() { return ManualQtyLessThanOrEqualTo; } public INV_BOQTYQuery setManualQtyLessThanOrEqualTo(BigDecimal value) { this.ManualQtyLessThanOrEqualTo = value; return this; } public BigDecimal getManualQtyNotEqualTo() { return ManualQtyNotEqualTo; } public INV_BOQTYQuery setManualQtyNotEqualTo(BigDecimal value) { this.ManualQtyNotEqualTo = value; return this; } public ArrayList getManualQtyBetween() { return ManualQtyBetween; } public INV_BOQTYQuery setManualQtyBetween(ArrayList value) { this.ManualQtyBetween = value; return this; } public ArrayList getManualQtyIn() { return ManualQtyIn; } public INV_BOQTYQuery setManualQtyIn(ArrayList value) { this.ManualQtyIn = value; return this; } public BigDecimal getAutoQty() { return AutoQty; } public INV_BOQTYQuery setAutoQty(BigDecimal value) { this.AutoQty = value; return this; } public BigDecimal getAutoQtyGreaterThanOrEqualTo() { return AutoQtyGreaterThanOrEqualTo; } public INV_BOQTYQuery setAutoQtyGreaterThanOrEqualTo(BigDecimal value) { this.AutoQtyGreaterThanOrEqualTo = value; return this; } public BigDecimal getAutoQtyGreaterThan() { return AutoQtyGreaterThan; } public INV_BOQTYQuery setAutoQtyGreaterThan(BigDecimal value) { this.AutoQtyGreaterThan = value; return this; } public BigDecimal getAutoQtyLessThan() { return AutoQtyLessThan; } public INV_BOQTYQuery setAutoQtyLessThan(BigDecimal value) { this.AutoQtyLessThan = value; return this; } public BigDecimal getAutoQtyLessThanOrEqualTo() { return AutoQtyLessThanOrEqualTo; } public INV_BOQTYQuery setAutoQtyLessThanOrEqualTo(BigDecimal value) { this.AutoQtyLessThanOrEqualTo = value; return this; } public BigDecimal getAutoQtyNotEqualTo() { return AutoQtyNotEqualTo; } public INV_BOQTYQuery setAutoQtyNotEqualTo(BigDecimal value) { this.AutoQtyNotEqualTo = value; return this; } public ArrayList getAutoQtyBetween() { return AutoQtyBetween; } public INV_BOQTYQuery setAutoQtyBetween(ArrayList value) { this.AutoQtyBetween = value; return this; } public ArrayList getAutoQtyIn() { return AutoQtyIn; } public INV_BOQTYQuery setAutoQtyIn(ArrayList value) { this.AutoQtyIn = value; return this; } public BigDecimal getPrice() { return Price; } public INV_BOQTYQuery setPrice(BigDecimal value) { this.Price = value; return this; } public BigDecimal getPriceGreaterThanOrEqualTo() { return PriceGreaterThanOrEqualTo; } public INV_BOQTYQuery setPriceGreaterThanOrEqualTo(BigDecimal value) { this.PriceGreaterThanOrEqualTo = value; return this; } public BigDecimal getPriceGreaterThan() { return PriceGreaterThan; } public INV_BOQTYQuery setPriceGreaterThan(BigDecimal value) { this.PriceGreaterThan = value; return this; } public BigDecimal getPriceLessThan() { return PriceLessThan; } public INV_BOQTYQuery setPriceLessThan(BigDecimal value) { this.PriceLessThan = value; return this; } public BigDecimal getPriceLessThanOrEqualTo() { return PriceLessThanOrEqualTo; } public INV_BOQTYQuery setPriceLessThanOrEqualTo(BigDecimal value) { this.PriceLessThanOrEqualTo = value; return this; } public BigDecimal getPriceNotEqualTo() { return PriceNotEqualTo; } public INV_BOQTYQuery setPriceNotEqualTo(BigDecimal value) { this.PriceNotEqualTo = value; return this; } public ArrayList getPriceBetween() { return PriceBetween; } public INV_BOQTYQuery setPriceBetween(ArrayList value) { this.PriceBetween = value; return this; } public ArrayList getPriceIn() { return PriceIn; } public INV_BOQTYQuery setPriceIn(ArrayList value) { this.PriceIn = value; return this; } public BigDecimal getEstBOValue() { return EstBOValue; } public INV_BOQTYQuery setEstBOValue(BigDecimal value) { this.EstBOValue = value; return this; } public BigDecimal getEstBOValueGreaterThanOrEqualTo() { return EstBOValueGreaterThanOrEqualTo; } public INV_BOQTYQuery setEstBOValueGreaterThanOrEqualTo(BigDecimal value) { this.EstBOValueGreaterThanOrEqualTo = value; return this; } public BigDecimal getEstBOValueGreaterThan() { return EstBOValueGreaterThan; } public INV_BOQTYQuery setEstBOValueGreaterThan(BigDecimal value) { this.EstBOValueGreaterThan = value; return this; } public BigDecimal getEstBOValueLessThan() { return EstBOValueLessThan; } public INV_BOQTYQuery setEstBOValueLessThan(BigDecimal value) { this.EstBOValueLessThan = value; return this; } public BigDecimal getEstBOValueLessThanOrEqualTo() { return EstBOValueLessThanOrEqualTo; } public INV_BOQTYQuery setEstBOValueLessThanOrEqualTo(BigDecimal value) { this.EstBOValueLessThanOrEqualTo = value; return this; } public BigDecimal getEstBOValueNotEqualTo() { return EstBOValueNotEqualTo; } public INV_BOQTYQuery setEstBOValueNotEqualTo(BigDecimal value) { this.EstBOValueNotEqualTo = value; return this; } public ArrayList getEstBOValueBetween() { return EstBOValueBetween; } public INV_BOQTYQuery setEstBOValueBetween(ArrayList value) { this.EstBOValueBetween = value; return this; } public ArrayList getEstBOValueIn() { return EstBOValueIn; } public INV_BOQTYQuery setEstBOValueIn(ArrayList value) { this.EstBOValueIn = value; return this; } public String getInLogicalID() { return In_logicalID; } public INV_BOQTYQuery setInLogicalID(String value) { this.In_logicalID = value; return this; } public String getInLogicalIDStartsWith() { return In_logicalIDStartsWith; } public INV_BOQTYQuery setInLogicalIDStartsWith(String value) { this.In_logicalIDStartsWith = value; return this; } public String getInLogicalIDEndsWith() { return In_logicalIDEndsWith; } public INV_BOQTYQuery setInLogicalIDEndsWith(String value) { this.In_logicalIDEndsWith = value; return this; } public String getInLogicalIDContains() { return In_logicalIDContains; } public INV_BOQTYQuery setInLogicalIDContains(String value) { this.In_logicalIDContains = value; return this; } public String getInLogicalIDLike() { return In_logicalIDLike; } public INV_BOQTYQuery setInLogicalIDLike(String value) { this.In_logicalIDLike = value; return this; } public ArrayList getInLogicalIDBetween() { return In_logicalIDBetween; } public INV_BOQTYQuery setInLogicalIDBetween(ArrayList value) { this.In_logicalIDBetween = value; return this; } public ArrayList getInLogicalIDIn() { return In_logicalIDIn; } public INV_BOQTYQuery setInLogicalIDIn(ArrayList value) { this.In_logicalIDIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class INV_OnOrderQuery extends QueryDb implements IReturn> { public String InventoryID = null; public String InventoryIDStartsWith = null; public String InventoryIDEndsWith = null; public String InventoryIDContains = null; public String InventoryIDLike = null; public ArrayList InventoryIDBetween = null; public ArrayList InventoryIDIn = null; public BigDecimal OnOrder = null; public BigDecimal OnOrderGreaterThanOrEqualTo = null; public BigDecimal OnOrderGreaterThan = null; public BigDecimal OnOrderLessThan = null; public BigDecimal OnOrderLessThanOrEqualTo = null; public BigDecimal OnOrderNotEqualTo = null; public ArrayList OnOrderBetween = null; public ArrayList OnOrderIn = null; public String IN_logicalID = null; public String IN_logicalIDStartsWith = null; public String IN_logicalIDEndsWith = null; public String IN_logicalIDContains = null; public String IN_logicalIDLike = null; public ArrayList IN_logicalIDBetween = null; public ArrayList IN_logicalIDIn = null; public String getInventoryID() { return InventoryID; } public INV_OnOrderQuery setInventoryID(String value) { this.InventoryID = value; return this; } public String getInventoryIDStartsWith() { return InventoryIDStartsWith; } public INV_OnOrderQuery setInventoryIDStartsWith(String value) { this.InventoryIDStartsWith = value; return this; } public String getInventoryIDEndsWith() { return InventoryIDEndsWith; } public INV_OnOrderQuery setInventoryIDEndsWith(String value) { this.InventoryIDEndsWith = value; return this; } public String getInventoryIDContains() { return InventoryIDContains; } public INV_OnOrderQuery setInventoryIDContains(String value) { this.InventoryIDContains = value; return this; } public String getInventoryIDLike() { return InventoryIDLike; } public INV_OnOrderQuery setInventoryIDLike(String value) { this.InventoryIDLike = value; return this; } public ArrayList getInventoryIDBetween() { return InventoryIDBetween; } public INV_OnOrderQuery setInventoryIDBetween(ArrayList value) { this.InventoryIDBetween = value; return this; } public ArrayList getInventoryIDIn() { return InventoryIDIn; } public INV_OnOrderQuery setInventoryIDIn(ArrayList value) { this.InventoryIDIn = value; return this; } public BigDecimal getOnOrder() { return OnOrder; } public INV_OnOrderQuery setOnOrder(BigDecimal value) { this.OnOrder = value; return this; } public BigDecimal getOnOrderGreaterThanOrEqualTo() { return OnOrderGreaterThanOrEqualTo; } public INV_OnOrderQuery setOnOrderGreaterThanOrEqualTo(BigDecimal value) { this.OnOrderGreaterThanOrEqualTo = value; return this; } public BigDecimal getOnOrderGreaterThan() { return OnOrderGreaterThan; } public INV_OnOrderQuery setOnOrderGreaterThan(BigDecimal value) { this.OnOrderGreaterThan = value; return this; } public BigDecimal getOnOrderLessThan() { return OnOrderLessThan; } public INV_OnOrderQuery setOnOrderLessThan(BigDecimal value) { this.OnOrderLessThan = value; return this; } public BigDecimal getOnOrderLessThanOrEqualTo() { return OnOrderLessThanOrEqualTo; } public INV_OnOrderQuery setOnOrderLessThanOrEqualTo(BigDecimal value) { this.OnOrderLessThanOrEqualTo = value; return this; } public BigDecimal getOnOrderNotEqualTo() { return OnOrderNotEqualTo; } public INV_OnOrderQuery setOnOrderNotEqualTo(BigDecimal value) { this.OnOrderNotEqualTo = value; return this; } public ArrayList getOnOrderBetween() { return OnOrderBetween; } public INV_OnOrderQuery setOnOrderBetween(ArrayList value) { this.OnOrderBetween = value; return this; } public ArrayList getOnOrderIn() { return OnOrderIn; } public INV_OnOrderQuery setOnOrderIn(ArrayList value) { this.OnOrderIn = value; return this; } public String getInLogicalID() { return IN_logicalID; } public INV_OnOrderQuery setInLogicalID(String value) { this.IN_logicalID = value; return this; } public String getInLogicalIDStartsWith() { return IN_logicalIDStartsWith; } public INV_OnOrderQuery setInLogicalIDStartsWith(String value) { this.IN_logicalIDStartsWith = value; return this; } public String getInLogicalIDEndsWith() { return IN_logicalIDEndsWith; } public INV_OnOrderQuery setInLogicalIDEndsWith(String value) { this.IN_logicalIDEndsWith = value; return this; } public String getInLogicalIDContains() { return IN_logicalIDContains; } public INV_OnOrderQuery setInLogicalIDContains(String value) { this.IN_logicalIDContains = value; return this; } public String getInLogicalIDLike() { return IN_logicalIDLike; } public INV_OnOrderQuery setInLogicalIDLike(String value) { this.IN_logicalIDLike = value; return this; } public ArrayList getInLogicalIDBetween() { return IN_logicalIDBetween; } public INV_OnOrderQuery setInLogicalIDBetween(ArrayList value) { this.IN_logicalIDBetween = value; return this; } public ArrayList getInLogicalIDIn() { return IN_logicalIDIn; } public INV_OnOrderQuery setInLogicalIDIn(ArrayList value) { this.IN_logicalIDIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class INV_OnOrderStatusQuery extends QueryDb implements IReturn> { public String InventoryID = null; public String InventoryIDStartsWith = null; public String InventoryIDEndsWith = null; public String InventoryIDContains = null; public String InventoryIDLike = null; public ArrayList InventoryIDBetween = null; public ArrayList InventoryIDIn = null; public BigDecimal OnOrder = null; public BigDecimal OnOrderGreaterThanOrEqualTo = null; public BigDecimal OnOrderGreaterThan = null; public BigDecimal OnOrderLessThan = null; public BigDecimal OnOrderLessThanOrEqualTo = null; public BigDecimal OnOrderNotEqualTo = null; public ArrayList OnOrderBetween = null; public ArrayList OnOrderIn = null; public Short Status = null; public Short StatusGreaterThanOrEqualTo = null; public Short StatusGreaterThan = null; public Short StatusLessThan = null; public Short StatusLessThanOrEqualTo = null; public Short StatusNotEqualTo = null; public ArrayList StatusBetween = null; public ArrayList StatusIn = null; public String getInventoryID() { return InventoryID; } public INV_OnOrderStatusQuery setInventoryID(String value) { this.InventoryID = value; return this; } public String getInventoryIDStartsWith() { return InventoryIDStartsWith; } public INV_OnOrderStatusQuery setInventoryIDStartsWith(String value) { this.InventoryIDStartsWith = value; return this; } public String getInventoryIDEndsWith() { return InventoryIDEndsWith; } public INV_OnOrderStatusQuery setInventoryIDEndsWith(String value) { this.InventoryIDEndsWith = value; return this; } public String getInventoryIDContains() { return InventoryIDContains; } public INV_OnOrderStatusQuery setInventoryIDContains(String value) { this.InventoryIDContains = value; return this; } public String getInventoryIDLike() { return InventoryIDLike; } public INV_OnOrderStatusQuery setInventoryIDLike(String value) { this.InventoryIDLike = value; return this; } public ArrayList getInventoryIDBetween() { return InventoryIDBetween; } public INV_OnOrderStatusQuery setInventoryIDBetween(ArrayList value) { this.InventoryIDBetween = value; return this; } public ArrayList getInventoryIDIn() { return InventoryIDIn; } public INV_OnOrderStatusQuery setInventoryIDIn(ArrayList value) { this.InventoryIDIn = value; return this; } public BigDecimal getOnOrder() { return OnOrder; } public INV_OnOrderStatusQuery setOnOrder(BigDecimal value) { this.OnOrder = value; return this; } public BigDecimal getOnOrderGreaterThanOrEqualTo() { return OnOrderGreaterThanOrEqualTo; } public INV_OnOrderStatusQuery setOnOrderGreaterThanOrEqualTo(BigDecimal value) { this.OnOrderGreaterThanOrEqualTo = value; return this; } public BigDecimal getOnOrderGreaterThan() { return OnOrderGreaterThan; } public INV_OnOrderStatusQuery setOnOrderGreaterThan(BigDecimal value) { this.OnOrderGreaterThan = value; return this; } public BigDecimal getOnOrderLessThan() { return OnOrderLessThan; } public INV_OnOrderStatusQuery setOnOrderLessThan(BigDecimal value) { this.OnOrderLessThan = value; return this; } public BigDecimal getOnOrderLessThanOrEqualTo() { return OnOrderLessThanOrEqualTo; } public INV_OnOrderStatusQuery setOnOrderLessThanOrEqualTo(BigDecimal value) { this.OnOrderLessThanOrEqualTo = value; return this; } public BigDecimal getOnOrderNotEqualTo() { return OnOrderNotEqualTo; } public INV_OnOrderStatusQuery setOnOrderNotEqualTo(BigDecimal value) { this.OnOrderNotEqualTo = value; return this; } public ArrayList getOnOrderBetween() { return OnOrderBetween; } public INV_OnOrderStatusQuery setOnOrderBetween(ArrayList value) { this.OnOrderBetween = value; return this; } public ArrayList getOnOrderIn() { return OnOrderIn; } public INV_OnOrderStatusQuery setOnOrderIn(ArrayList value) { this.OnOrderIn = value; return this; } public Short getStatus() { return Status; } public INV_OnOrderStatusQuery setStatus(Short value) { this.Status = value; return this; } public Short getStatusGreaterThanOrEqualTo() { return StatusGreaterThanOrEqualTo; } public INV_OnOrderStatusQuery setStatusGreaterThanOrEqualTo(Short value) { this.StatusGreaterThanOrEqualTo = value; return this; } public Short getStatusGreaterThan() { return StatusGreaterThan; } public INV_OnOrderStatusQuery setStatusGreaterThan(Short value) { this.StatusGreaterThan = value; return this; } public Short getStatusLessThan() { return StatusLessThan; } public INV_OnOrderStatusQuery setStatusLessThan(Short value) { this.StatusLessThan = value; return this; } public Short getStatusLessThanOrEqualTo() { return StatusLessThanOrEqualTo; } public INV_OnOrderStatusQuery setStatusLessThanOrEqualTo(Short value) { this.StatusLessThanOrEqualTo = value; return this; } public Short getStatusNotEqualTo() { return StatusNotEqualTo; } public INV_OnOrderStatusQuery setStatusNotEqualTo(Short value) { this.StatusNotEqualTo = value; return this; } public ArrayList getStatusBetween() { return StatusBetween; } public INV_OnOrderStatusQuery setStatusBetween(ArrayList value) { this.StatusBetween = value; return this; } public ArrayList getStatusIn() { return StatusIn; } public INV_OnOrderStatusQuery setStatusIn(ArrayList value) { this.StatusIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class INV_PIQuery extends QueryDb implements IReturn> { public String InvoiceNO = null; public String InvoiceNOStartsWith = null; public String InvoiceNOEndsWith = null; public String InvoiceNOContains = null; public String InvoiceNOLike = null; public ArrayList InvoiceNOBetween = null; public ArrayList InvoiceNOIn = null; public String SuppPart = null; public String SuppPartStartsWith = null; public String SuppPartEndsWith = null; public String SuppPartContains = null; public String SuppPartLike = null; public ArrayList SuppPartBetween = null; public ArrayList SuppPartIn = null; public String AccountNo = null; public String AccountNoStartsWith = null; public String AccountNoEndsWith = null; public String AccountNoContains = null; public String AccountNoLike = null; public ArrayList AccountNoBetween = null; public ArrayList AccountNoIn = null; public String SerialNo = null; public String SerialNoStartsWith = null; public String SerialNoEndsWith = null; public String SerialNoContains = null; public String SerialNoLike = null; public ArrayList SerialNoBetween = null; public ArrayList SerialNoIn = null; public String BinLoc = null; public String BinLocStartsWith = null; public String BinLocEndsWith = null; public String BinLocContains = null; public String BinLocLike = null; public ArrayList BinLocBetween = null; public ArrayList BinLocIn = null; public String PI_LinesDetailsID = null; public String PI_LinesDetailsIDStartsWith = null; public String PI_LinesDetailsIDEndsWith = null; public String PI_LinesDetailsIDContains = null; public String PI_LinesDetailsIDLike = null; public ArrayList PI_LinesDetailsIDBetween = null; public ArrayList PI_LinesDetailsIDIn = null; public String getInvoiceNO() { return InvoiceNO; } public INV_PIQuery setInvoiceNO(String value) { this.InvoiceNO = value; return this; } public String getInvoiceNOStartsWith() { return InvoiceNOStartsWith; } public INV_PIQuery setInvoiceNOStartsWith(String value) { this.InvoiceNOStartsWith = value; return this; } public String getInvoiceNOEndsWith() { return InvoiceNOEndsWith; } public INV_PIQuery setInvoiceNOEndsWith(String value) { this.InvoiceNOEndsWith = value; return this; } public String getInvoiceNOContains() { return InvoiceNOContains; } public INV_PIQuery setInvoiceNOContains(String value) { this.InvoiceNOContains = value; return this; } public String getInvoiceNOLike() { return InvoiceNOLike; } public INV_PIQuery setInvoiceNOLike(String value) { this.InvoiceNOLike = value; return this; } public ArrayList getInvoiceNOBetween() { return InvoiceNOBetween; } public INV_PIQuery setInvoiceNOBetween(ArrayList value) { this.InvoiceNOBetween = value; return this; } public ArrayList getInvoiceNOIn() { return InvoiceNOIn; } public INV_PIQuery setInvoiceNOIn(ArrayList value) { this.InvoiceNOIn = value; return this; } public String getSuppPart() { return SuppPart; } public INV_PIQuery setSuppPart(String value) { this.SuppPart = value; return this; } public String getSuppPartStartsWith() { return SuppPartStartsWith; } public INV_PIQuery setSuppPartStartsWith(String value) { this.SuppPartStartsWith = value; return this; } public String getSuppPartEndsWith() { return SuppPartEndsWith; } public INV_PIQuery setSuppPartEndsWith(String value) { this.SuppPartEndsWith = value; return this; } public String getSuppPartContains() { return SuppPartContains; } public INV_PIQuery setSuppPartContains(String value) { this.SuppPartContains = value; return this; } public String getSuppPartLike() { return SuppPartLike; } public INV_PIQuery setSuppPartLike(String value) { this.SuppPartLike = value; return this; } public ArrayList getSuppPartBetween() { return SuppPartBetween; } public INV_PIQuery setSuppPartBetween(ArrayList value) { this.SuppPartBetween = value; return this; } public ArrayList getSuppPartIn() { return SuppPartIn; } public INV_PIQuery setSuppPartIn(ArrayList value) { this.SuppPartIn = value; return this; } public String getAccountNo() { return AccountNo; } public INV_PIQuery setAccountNo(String value) { this.AccountNo = value; return this; } public String getAccountNoStartsWith() { return AccountNoStartsWith; } public INV_PIQuery setAccountNoStartsWith(String value) { this.AccountNoStartsWith = value; return this; } public String getAccountNoEndsWith() { return AccountNoEndsWith; } public INV_PIQuery setAccountNoEndsWith(String value) { this.AccountNoEndsWith = value; return this; } public String getAccountNoContains() { return AccountNoContains; } public INV_PIQuery setAccountNoContains(String value) { this.AccountNoContains = value; return this; } public String getAccountNoLike() { return AccountNoLike; } public INV_PIQuery setAccountNoLike(String value) { this.AccountNoLike = value; return this; } public ArrayList getAccountNoBetween() { return AccountNoBetween; } public INV_PIQuery setAccountNoBetween(ArrayList value) { this.AccountNoBetween = value; return this; } public ArrayList getAccountNoIn() { return AccountNoIn; } public INV_PIQuery setAccountNoIn(ArrayList value) { this.AccountNoIn = value; return this; } public String getSerialNo() { return SerialNo; } public INV_PIQuery setSerialNo(String value) { this.SerialNo = value; return this; } public String getSerialNoStartsWith() { return SerialNoStartsWith; } public INV_PIQuery setSerialNoStartsWith(String value) { this.SerialNoStartsWith = value; return this; } public String getSerialNoEndsWith() { return SerialNoEndsWith; } public INV_PIQuery setSerialNoEndsWith(String value) { this.SerialNoEndsWith = value; return this; } public String getSerialNoContains() { return SerialNoContains; } public INV_PIQuery setSerialNoContains(String value) { this.SerialNoContains = value; return this; } public String getSerialNoLike() { return SerialNoLike; } public INV_PIQuery setSerialNoLike(String value) { this.SerialNoLike = value; return this; } public ArrayList getSerialNoBetween() { return SerialNoBetween; } public INV_PIQuery setSerialNoBetween(ArrayList value) { this.SerialNoBetween = value; return this; } public ArrayList getSerialNoIn() { return SerialNoIn; } public INV_PIQuery setSerialNoIn(ArrayList value) { this.SerialNoIn = value; return this; } public String getBinLoc() { return BinLoc; } public INV_PIQuery setBinLoc(String value) { this.BinLoc = value; return this; } public String getBinLocStartsWith() { return BinLocStartsWith; } public INV_PIQuery setBinLocStartsWith(String value) { this.BinLocStartsWith = value; return this; } public String getBinLocEndsWith() { return BinLocEndsWith; } public INV_PIQuery setBinLocEndsWith(String value) { this.BinLocEndsWith = value; return this; } public String getBinLocContains() { return BinLocContains; } public INV_PIQuery setBinLocContains(String value) { this.BinLocContains = value; return this; } public String getBinLocLike() { return BinLocLike; } public INV_PIQuery setBinLocLike(String value) { this.BinLocLike = value; return this; } public ArrayList getBinLocBetween() { return BinLocBetween; } public INV_PIQuery setBinLocBetween(ArrayList value) { this.BinLocBetween = value; return this; } public ArrayList getBinLocIn() { return BinLocIn; } public INV_PIQuery setBinLocIn(ArrayList value) { this.BinLocIn = value; return this; } public String getPiLinesDetailsID() { return PI_LinesDetailsID; } public INV_PIQuery setPiLinesDetailsID(String value) { this.PI_LinesDetailsID = value; return this; } public String getPiLinesDetailsIDStartsWith() { return PI_LinesDetailsIDStartsWith; } public INV_PIQuery setPiLinesDetailsIDStartsWith(String value) { this.PI_LinesDetailsIDStartsWith = value; return this; } public String getPiLinesDetailsIDEndsWith() { return PI_LinesDetailsIDEndsWith; } public INV_PIQuery setPiLinesDetailsIDEndsWith(String value) { this.PI_LinesDetailsIDEndsWith = value; return this; } public String getPiLinesDetailsIDContains() { return PI_LinesDetailsIDContains; } public INV_PIQuery setPiLinesDetailsIDContains(String value) { this.PI_LinesDetailsIDContains = value; return this; } public String getPiLinesDetailsIDLike() { return PI_LinesDetailsIDLike; } public INV_PIQuery setPiLinesDetailsIDLike(String value) { this.PI_LinesDetailsIDLike = value; return this; } public ArrayList getPiLinesDetailsIDBetween() { return PI_LinesDetailsIDBetween; } public INV_PIQuery setPiLinesDetailsIDBetween(ArrayList value) { this.PI_LinesDetailsIDBetween = value; return this; } public ArrayList getPiLinesDetailsIDIn() { return PI_LinesDetailsIDIn; } public INV_PIQuery setPiLinesDetailsIDIn(ArrayList value) { this.PI_LinesDetailsIDIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class INV_ReceivalQuery extends QueryDb implements IReturn> { public String SlipNo = null; public String SlipNoStartsWith = null; public String SlipNoEndsWith = null; public String SlipNoContains = null; public String SlipNoLike = null; public ArrayList SlipNoBetween = null; public ArrayList SlipNoIn = null; public String SuppPart = null; public String SuppPartStartsWith = null; public String SuppPartEndsWith = null; public String SuppPartContains = null; public String SuppPartLike = null; public ArrayList SuppPartBetween = null; public ArrayList SuppPartIn = null; public String AccountNO = null; public String AccountNOStartsWith = null; public String AccountNOEndsWith = null; public String AccountNOContains = null; public String AccountNOLike = null; public ArrayList AccountNOBetween = null; public ArrayList AccountNOIn = null; public String SourceID = null; public String SourceIDStartsWith = null; public String SourceIDEndsWith = null; public String SourceIDContains = null; public String SourceIDLike = null; public ArrayList SourceIDBetween = null; public ArrayList SourceIDIn = null; public String getSlipNo() { return SlipNo; } public INV_ReceivalQuery setSlipNo(String value) { this.SlipNo = value; return this; } public String getSlipNoStartsWith() { return SlipNoStartsWith; } public INV_ReceivalQuery setSlipNoStartsWith(String value) { this.SlipNoStartsWith = value; return this; } public String getSlipNoEndsWith() { return SlipNoEndsWith; } public INV_ReceivalQuery setSlipNoEndsWith(String value) { this.SlipNoEndsWith = value; return this; } public String getSlipNoContains() { return SlipNoContains; } public INV_ReceivalQuery setSlipNoContains(String value) { this.SlipNoContains = value; return this; } public String getSlipNoLike() { return SlipNoLike; } public INV_ReceivalQuery setSlipNoLike(String value) { this.SlipNoLike = value; return this; } public ArrayList getSlipNoBetween() { return SlipNoBetween; } public INV_ReceivalQuery setSlipNoBetween(ArrayList value) { this.SlipNoBetween = value; return this; } public ArrayList getSlipNoIn() { return SlipNoIn; } public INV_ReceivalQuery setSlipNoIn(ArrayList value) { this.SlipNoIn = value; return this; } public String getSuppPart() { return SuppPart; } public INV_ReceivalQuery setSuppPart(String value) { this.SuppPart = value; return this; } public String getSuppPartStartsWith() { return SuppPartStartsWith; } public INV_ReceivalQuery setSuppPartStartsWith(String value) { this.SuppPartStartsWith = value; return this; } public String getSuppPartEndsWith() { return SuppPartEndsWith; } public INV_ReceivalQuery setSuppPartEndsWith(String value) { this.SuppPartEndsWith = value; return this; } public String getSuppPartContains() { return SuppPartContains; } public INV_ReceivalQuery setSuppPartContains(String value) { this.SuppPartContains = value; return this; } public String getSuppPartLike() { return SuppPartLike; } public INV_ReceivalQuery setSuppPartLike(String value) { this.SuppPartLike = value; return this; } public ArrayList getSuppPartBetween() { return SuppPartBetween; } public INV_ReceivalQuery setSuppPartBetween(ArrayList value) { this.SuppPartBetween = value; return this; } public ArrayList getSuppPartIn() { return SuppPartIn; } public INV_ReceivalQuery setSuppPartIn(ArrayList value) { this.SuppPartIn = value; return this; } public String getAccountNO() { return AccountNO; } public INV_ReceivalQuery setAccountNO(String value) { this.AccountNO = value; return this; } public String getAccountNOStartsWith() { return AccountNOStartsWith; } public INV_ReceivalQuery setAccountNOStartsWith(String value) { this.AccountNOStartsWith = value; return this; } public String getAccountNOEndsWith() { return AccountNOEndsWith; } public INV_ReceivalQuery setAccountNOEndsWith(String value) { this.AccountNOEndsWith = value; return this; } public String getAccountNOContains() { return AccountNOContains; } public INV_ReceivalQuery setAccountNOContains(String value) { this.AccountNOContains = value; return this; } public String getAccountNOLike() { return AccountNOLike; } public INV_ReceivalQuery setAccountNOLike(String value) { this.AccountNOLike = value; return this; } public ArrayList getAccountNOBetween() { return AccountNOBetween; } public INV_ReceivalQuery setAccountNOBetween(ArrayList value) { this.AccountNOBetween = value; return this; } public ArrayList getAccountNOIn() { return AccountNOIn; } public INV_ReceivalQuery setAccountNOIn(ArrayList value) { this.AccountNOIn = value; return this; } public String getSourceID() { return SourceID; } public INV_ReceivalQuery setSourceID(String value) { this.SourceID = value; return this; } public String getSourceIDStartsWith() { return SourceIDStartsWith; } public INV_ReceivalQuery setSourceIDStartsWith(String value) { this.SourceIDStartsWith = value; return this; } public String getSourceIDEndsWith() { return SourceIDEndsWith; } public INV_ReceivalQuery setSourceIDEndsWith(String value) { this.SourceIDEndsWith = value; return this; } public String getSourceIDContains() { return SourceIDContains; } public INV_ReceivalQuery setSourceIDContains(String value) { this.SourceIDContains = value; return this; } public String getSourceIDLike() { return SourceIDLike; } public INV_ReceivalQuery setSourceIDLike(String value) { this.SourceIDLike = value; return this; } public ArrayList getSourceIDBetween() { return SourceIDBetween; } public INV_ReceivalQuery setSourceIDBetween(ArrayList value) { this.SourceIDBetween = value; return this; } public ArrayList getSourceIDIn() { return SourceIDIn; } public INV_ReceivalQuery setSourceIDIn(ArrayList value) { this.SourceIDIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class Inv_SalesQuery extends QueryDb implements IReturn> { public String FullInvNo = null; public String FullInvNoStartsWith = null; public String FullInvNoEndsWith = null; public String FullInvNoContains = null; public String FullInvNoLike = null; public ArrayList FullInvNoBetween = null; public ArrayList FullInvNoIn = null; public String orderno = null; public String ordernoStartsWith = null; public String ordernoEndsWith = null; public String ordernoContains = null; public String ordernoLike = null; public ArrayList ordernoBetween = null; public ArrayList ordernoIn = null; public String Accountno = null; public String AccountnoStartsWith = null; public String AccountnoEndsWith = null; public String AccountnoContains = null; public String AccountnoLike = null; public ArrayList AccountnoBetween = null; public ArrayList AccountnoIn = null; public String QtyOrd = null; public String QtyOrdStartsWith = null; public String QtyOrdEndsWith = null; public String QtyOrdContains = null; public String QtyOrdLike = null; public ArrayList QtyOrdBetween = null; public ArrayList QtyOrdIn = null; public String InvoiceLineID = null; public String InvoiceLineIDStartsWith = null; public String InvoiceLineIDEndsWith = null; public String InvoiceLineIDContains = null; public String InvoiceLineIDLike = null; public ArrayList InvoiceLineIDBetween = null; public ArrayList InvoiceLineIDIn = null; public String InventoryID = null; public String InventoryIDStartsWith = null; public String InventoryIDEndsWith = null; public String InventoryIDContains = null; public String InventoryIDLike = null; public ArrayList InventoryIDBetween = null; public ArrayList InventoryIDIn = null; public String InvoiceHistoryID = null; public String InvoiceHistoryIDStartsWith = null; public String InvoiceHistoryIDEndsWith = null; public String InvoiceHistoryIDContains = null; public String InvoiceHistoryIDLike = null; public ArrayList InvoiceHistoryIDBetween = null; public ArrayList InvoiceHistoryIDIn = null; public String getFullInvNo() { return FullInvNo; } public Inv_SalesQuery setFullInvNo(String value) { this.FullInvNo = value; return this; } public String getFullInvNoStartsWith() { return FullInvNoStartsWith; } public Inv_SalesQuery setFullInvNoStartsWith(String value) { this.FullInvNoStartsWith = value; return this; } public String getFullInvNoEndsWith() { return FullInvNoEndsWith; } public Inv_SalesQuery setFullInvNoEndsWith(String value) { this.FullInvNoEndsWith = value; return this; } public String getFullInvNoContains() { return FullInvNoContains; } public Inv_SalesQuery setFullInvNoContains(String value) { this.FullInvNoContains = value; return this; } public String getFullInvNoLike() { return FullInvNoLike; } public Inv_SalesQuery setFullInvNoLike(String value) { this.FullInvNoLike = value; return this; } public ArrayList getFullInvNoBetween() { return FullInvNoBetween; } public Inv_SalesQuery setFullInvNoBetween(ArrayList value) { this.FullInvNoBetween = value; return this; } public ArrayList getFullInvNoIn() { return FullInvNoIn; } public Inv_SalesQuery setFullInvNoIn(ArrayList value) { this.FullInvNoIn = value; return this; } public String getOrderno() { return orderno; } public Inv_SalesQuery setOrderno(String value) { this.orderno = value; return this; } public String getOrdernoStartsWith() { return ordernoStartsWith; } public Inv_SalesQuery setOrdernoStartsWith(String value) { this.ordernoStartsWith = value; return this; } public String getOrdernoEndsWith() { return ordernoEndsWith; } public Inv_SalesQuery setOrdernoEndsWith(String value) { this.ordernoEndsWith = value; return this; } public String getOrdernoContains() { return ordernoContains; } public Inv_SalesQuery setOrdernoContains(String value) { this.ordernoContains = value; return this; } public String getOrdernoLike() { return ordernoLike; } public Inv_SalesQuery setOrdernoLike(String value) { this.ordernoLike = value; return this; } public ArrayList getOrdernoBetween() { return ordernoBetween; } public Inv_SalesQuery setOrdernoBetween(ArrayList value) { this.ordernoBetween = value; return this; } public ArrayList getOrdernoIn() { return ordernoIn; } public Inv_SalesQuery setOrdernoIn(ArrayList value) { this.ordernoIn = value; return this; } public String getAccountno() { return Accountno; } public Inv_SalesQuery setAccountno(String value) { this.Accountno = value; return this; } public String getAccountnoStartsWith() { return AccountnoStartsWith; } public Inv_SalesQuery setAccountnoStartsWith(String value) { this.AccountnoStartsWith = value; return this; } public String getAccountnoEndsWith() { return AccountnoEndsWith; } public Inv_SalesQuery setAccountnoEndsWith(String value) { this.AccountnoEndsWith = value; return this; } public String getAccountnoContains() { return AccountnoContains; } public Inv_SalesQuery setAccountnoContains(String value) { this.AccountnoContains = value; return this; } public String getAccountnoLike() { return AccountnoLike; } public Inv_SalesQuery setAccountnoLike(String value) { this.AccountnoLike = value; return this; } public ArrayList getAccountnoBetween() { return AccountnoBetween; } public Inv_SalesQuery setAccountnoBetween(ArrayList value) { this.AccountnoBetween = value; return this; } public ArrayList getAccountnoIn() { return AccountnoIn; } public Inv_SalesQuery setAccountnoIn(ArrayList value) { this.AccountnoIn = value; return this; } public String getQtyOrd() { return QtyOrd; } public Inv_SalesQuery setQtyOrd(String value) { this.QtyOrd = value; return this; } public String getQtyOrdStartsWith() { return QtyOrdStartsWith; } public Inv_SalesQuery setQtyOrdStartsWith(String value) { this.QtyOrdStartsWith = value; return this; } public String getQtyOrdEndsWith() { return QtyOrdEndsWith; } public Inv_SalesQuery setQtyOrdEndsWith(String value) { this.QtyOrdEndsWith = value; return this; } public String getQtyOrdContains() { return QtyOrdContains; } public Inv_SalesQuery setQtyOrdContains(String value) { this.QtyOrdContains = value; return this; } public String getQtyOrdLike() { return QtyOrdLike; } public Inv_SalesQuery setQtyOrdLike(String value) { this.QtyOrdLike = value; return this; } public ArrayList getQtyOrdBetween() { return QtyOrdBetween; } public Inv_SalesQuery setQtyOrdBetween(ArrayList value) { this.QtyOrdBetween = value; return this; } public ArrayList getQtyOrdIn() { return QtyOrdIn; } public Inv_SalesQuery setQtyOrdIn(ArrayList value) { this.QtyOrdIn = value; return this; } public String getInvoiceLineID() { return InvoiceLineID; } public Inv_SalesQuery setInvoiceLineID(String value) { this.InvoiceLineID = value; return this; } public String getInvoiceLineIDStartsWith() { return InvoiceLineIDStartsWith; } public Inv_SalesQuery setInvoiceLineIDStartsWith(String value) { this.InvoiceLineIDStartsWith = value; return this; } public String getInvoiceLineIDEndsWith() { return InvoiceLineIDEndsWith; } public Inv_SalesQuery setInvoiceLineIDEndsWith(String value) { this.InvoiceLineIDEndsWith = value; return this; } public String getInvoiceLineIDContains() { return InvoiceLineIDContains; } public Inv_SalesQuery setInvoiceLineIDContains(String value) { this.InvoiceLineIDContains = value; return this; } public String getInvoiceLineIDLike() { return InvoiceLineIDLike; } public Inv_SalesQuery setInvoiceLineIDLike(String value) { this.InvoiceLineIDLike = value; return this; } public ArrayList getInvoiceLineIDBetween() { return InvoiceLineIDBetween; } public Inv_SalesQuery setInvoiceLineIDBetween(ArrayList value) { this.InvoiceLineIDBetween = value; return this; } public ArrayList getInvoiceLineIDIn() { return InvoiceLineIDIn; } public Inv_SalesQuery setInvoiceLineIDIn(ArrayList value) { this.InvoiceLineIDIn = value; return this; } public String getInventoryID() { return InventoryID; } public Inv_SalesQuery setInventoryID(String value) { this.InventoryID = value; return this; } public String getInventoryIDStartsWith() { return InventoryIDStartsWith; } public Inv_SalesQuery setInventoryIDStartsWith(String value) { this.InventoryIDStartsWith = value; return this; } public String getInventoryIDEndsWith() { return InventoryIDEndsWith; } public Inv_SalesQuery setInventoryIDEndsWith(String value) { this.InventoryIDEndsWith = value; return this; } public String getInventoryIDContains() { return InventoryIDContains; } public Inv_SalesQuery setInventoryIDContains(String value) { this.InventoryIDContains = value; return this; } public String getInventoryIDLike() { return InventoryIDLike; } public Inv_SalesQuery setInventoryIDLike(String value) { this.InventoryIDLike = value; return this; } public ArrayList getInventoryIDBetween() { return InventoryIDBetween; } public Inv_SalesQuery setInventoryIDBetween(ArrayList value) { this.InventoryIDBetween = value; return this; } public ArrayList getInventoryIDIn() { return InventoryIDIn; } public Inv_SalesQuery setInventoryIDIn(ArrayList value) { this.InventoryIDIn = value; return this; } public String getInvoiceHistoryID() { return InvoiceHistoryID; } public Inv_SalesQuery setInvoiceHistoryID(String value) { this.InvoiceHistoryID = value; return this; } public String getInvoiceHistoryIDStartsWith() { return InvoiceHistoryIDStartsWith; } public Inv_SalesQuery setInvoiceHistoryIDStartsWith(String value) { this.InvoiceHistoryIDStartsWith = value; return this; } public String getInvoiceHistoryIDEndsWith() { return InvoiceHistoryIDEndsWith; } public Inv_SalesQuery setInvoiceHistoryIDEndsWith(String value) { this.InvoiceHistoryIDEndsWith = value; return this; } public String getInvoiceHistoryIDContains() { return InvoiceHistoryIDContains; } public Inv_SalesQuery setInvoiceHistoryIDContains(String value) { this.InvoiceHistoryIDContains = value; return this; } public String getInvoiceHistoryIDLike() { return InvoiceHistoryIDLike; } public Inv_SalesQuery setInvoiceHistoryIDLike(String value) { this.InvoiceHistoryIDLike = value; return this; } public ArrayList getInvoiceHistoryIDBetween() { return InvoiceHistoryIDBetween; } public Inv_SalesQuery setInvoiceHistoryIDBetween(ArrayList value) { this.InvoiceHistoryIDBetween = value; return this; } public ArrayList getInvoiceHistoryIDIn() { return InvoiceHistoryIDIn; } public Inv_SalesQuery setInvoiceHistoryIDIn(ArrayList value) { this.InvoiceHistoryIDIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class INV_SOH_ConQuery extends QueryDb implements IReturn> { public String InventoryID = null; public String InventoryIDStartsWith = null; public String InventoryIDEndsWith = null; public String InventoryIDContains = null; public String InventoryIDLike = null; public ArrayList InventoryIDBetween = null; public ArrayList InventoryIDIn = null; public BigDecimal SOH = null; public BigDecimal SOHGreaterThanOrEqualTo = null; public BigDecimal SOHGreaterThan = null; public BigDecimal SOHLessThan = null; public BigDecimal SOHLessThanOrEqualTo = null; public BigDecimal SOHNotEqualTo = null; public ArrayList SOHBetween = null; public ArrayList SOHIn = null; public String getInventoryID() { return InventoryID; } public INV_SOH_ConQuery setInventoryID(String value) { this.InventoryID = value; return this; } public String getInventoryIDStartsWith() { return InventoryIDStartsWith; } public INV_SOH_ConQuery setInventoryIDStartsWith(String value) { this.InventoryIDStartsWith = value; return this; } public String getInventoryIDEndsWith() { return InventoryIDEndsWith; } public INV_SOH_ConQuery setInventoryIDEndsWith(String value) { this.InventoryIDEndsWith = value; return this; } public String getInventoryIDContains() { return InventoryIDContains; } public INV_SOH_ConQuery setInventoryIDContains(String value) { this.InventoryIDContains = value; return this; } public String getInventoryIDLike() { return InventoryIDLike; } public INV_SOH_ConQuery setInventoryIDLike(String value) { this.InventoryIDLike = value; return this; } public ArrayList getInventoryIDBetween() { return InventoryIDBetween; } public INV_SOH_ConQuery setInventoryIDBetween(ArrayList value) { this.InventoryIDBetween = value; return this; } public ArrayList getInventoryIDIn() { return InventoryIDIn; } public INV_SOH_ConQuery setInventoryIDIn(ArrayList value) { this.InventoryIDIn = value; return this; } public BigDecimal getSoh() { return SOH; } public INV_SOH_ConQuery setSoh(BigDecimal value) { this.SOH = value; return this; } public BigDecimal getSohGreaterThanOrEqualTo() { return SOHGreaterThanOrEqualTo; } public INV_SOH_ConQuery setSohGreaterThanOrEqualTo(BigDecimal value) { this.SOHGreaterThanOrEqualTo = value; return this; } public BigDecimal getSohGreaterThan() { return SOHGreaterThan; } public INV_SOH_ConQuery setSohGreaterThan(BigDecimal value) { this.SOHGreaterThan = value; return this; } public BigDecimal getSohLessThan() { return SOHLessThan; } public INV_SOH_ConQuery setSohLessThan(BigDecimal value) { this.SOHLessThan = value; return this; } public BigDecimal getSohLessThanOrEqualTo() { return SOHLessThanOrEqualTo; } public INV_SOH_ConQuery setSohLessThanOrEqualTo(BigDecimal value) { this.SOHLessThanOrEqualTo = value; return this; } public BigDecimal getSohNotEqualTo() { return SOHNotEqualTo; } public INV_SOH_ConQuery setSohNotEqualTo(BigDecimal value) { this.SOHNotEqualTo = value; return this; } public ArrayList getSohBetween() { return SOHBetween; } public INV_SOH_ConQuery setSohBetween(ArrayList value) { this.SOHBetween = value; return this; } public ArrayList getSohIn() { return SOHIn; } public INV_SOH_ConQuery setSohIn(ArrayList value) { this.SOHIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class INV_SOH1Query extends QueryDb implements IReturn> { public String InventoryID = null; public String InventoryIDStartsWith = null; public String InventoryIDEndsWith = null; public String InventoryIDContains = null; public String InventoryIDLike = null; public ArrayList InventoryIDBetween = null; public ArrayList InventoryIDIn = null; public BigDecimal SOH = null; public BigDecimal SOHGreaterThanOrEqualTo = null; public BigDecimal SOHGreaterThan = null; public BigDecimal SOHLessThan = null; public BigDecimal SOHLessThanOrEqualTo = null; public BigDecimal SOHNotEqualTo = null; public ArrayList SOHBetween = null; public ArrayList SOHIn = null; public BigDecimal Tax = null; public BigDecimal TaxGreaterThanOrEqualTo = null; public BigDecimal TaxGreaterThan = null; public BigDecimal TaxLessThan = null; public BigDecimal TaxLessThanOrEqualTo = null; public BigDecimal TaxNotEqualTo = null; public ArrayList TaxBetween = null; public ArrayList TaxIn = null; public BigDecimal VOH = null; public BigDecimal VOHGreaterThanOrEqualTo = null; public BigDecimal VOHGreaterThan = null; public BigDecimal VOHLessThan = null; public BigDecimal VOHLessThanOrEqualTo = null; public BigDecimal VOHNotEqualTo = null; public ArrayList VOHBetween = null; public ArrayList VOHIn = null; public String IN_LogicalID = null; public String IN_LogicalIDStartsWith = null; public String IN_LogicalIDEndsWith = null; public String IN_LogicalIDContains = null; public String IN_LogicalIDLike = null; public ArrayList IN_LogicalIDBetween = null; public ArrayList IN_LogicalIDIn = null; public String getInventoryID() { return InventoryID; } public INV_SOH1Query setInventoryID(String value) { this.InventoryID = value; return this; } public String getInventoryIDStartsWith() { return InventoryIDStartsWith; } public INV_SOH1Query setInventoryIDStartsWith(String value) { this.InventoryIDStartsWith = value; return this; } public String getInventoryIDEndsWith() { return InventoryIDEndsWith; } public INV_SOH1Query setInventoryIDEndsWith(String value) { this.InventoryIDEndsWith = value; return this; } public String getInventoryIDContains() { return InventoryIDContains; } public INV_SOH1Query setInventoryIDContains(String value) { this.InventoryIDContains = value; return this; } public String getInventoryIDLike() { return InventoryIDLike; } public INV_SOH1Query setInventoryIDLike(String value) { this.InventoryIDLike = value; return this; } public ArrayList getInventoryIDBetween() { return InventoryIDBetween; } public INV_SOH1Query setInventoryIDBetween(ArrayList value) { this.InventoryIDBetween = value; return this; } public ArrayList getInventoryIDIn() { return InventoryIDIn; } public INV_SOH1Query setInventoryIDIn(ArrayList value) { this.InventoryIDIn = value; return this; } public BigDecimal getSoh() { return SOH; } public INV_SOH1Query setSoh(BigDecimal value) { this.SOH = value; return this; } public BigDecimal getSohGreaterThanOrEqualTo() { return SOHGreaterThanOrEqualTo; } public INV_SOH1Query setSohGreaterThanOrEqualTo(BigDecimal value) { this.SOHGreaterThanOrEqualTo = value; return this; } public BigDecimal getSohGreaterThan() { return SOHGreaterThan; } public INV_SOH1Query setSohGreaterThan(BigDecimal value) { this.SOHGreaterThan = value; return this; } public BigDecimal getSohLessThan() { return SOHLessThan; } public INV_SOH1Query setSohLessThan(BigDecimal value) { this.SOHLessThan = value; return this; } public BigDecimal getSohLessThanOrEqualTo() { return SOHLessThanOrEqualTo; } public INV_SOH1Query setSohLessThanOrEqualTo(BigDecimal value) { this.SOHLessThanOrEqualTo = value; return this; } public BigDecimal getSohNotEqualTo() { return SOHNotEqualTo; } public INV_SOH1Query setSohNotEqualTo(BigDecimal value) { this.SOHNotEqualTo = value; return this; } public ArrayList getSohBetween() { return SOHBetween; } public INV_SOH1Query setSohBetween(ArrayList value) { this.SOHBetween = value; return this; } public ArrayList getSohIn() { return SOHIn; } public INV_SOH1Query setSohIn(ArrayList value) { this.SOHIn = value; return this; } public BigDecimal getTax() { return Tax; } public INV_SOH1Query setTax(BigDecimal value) { this.Tax = value; return this; } public BigDecimal getTaxGreaterThanOrEqualTo() { return TaxGreaterThanOrEqualTo; } public INV_SOH1Query setTaxGreaterThanOrEqualTo(BigDecimal value) { this.TaxGreaterThanOrEqualTo = value; return this; } public BigDecimal getTaxGreaterThan() { return TaxGreaterThan; } public INV_SOH1Query setTaxGreaterThan(BigDecimal value) { this.TaxGreaterThan = value; return this; } public BigDecimal getTaxLessThan() { return TaxLessThan; } public INV_SOH1Query setTaxLessThan(BigDecimal value) { this.TaxLessThan = value; return this; } public BigDecimal getTaxLessThanOrEqualTo() { return TaxLessThanOrEqualTo; } public INV_SOH1Query setTaxLessThanOrEqualTo(BigDecimal value) { this.TaxLessThanOrEqualTo = value; return this; } public BigDecimal getTaxNotEqualTo() { return TaxNotEqualTo; } public INV_SOH1Query setTaxNotEqualTo(BigDecimal value) { this.TaxNotEqualTo = value; return this; } public ArrayList getTaxBetween() { return TaxBetween; } public INV_SOH1Query setTaxBetween(ArrayList value) { this.TaxBetween = value; return this; } public ArrayList getTaxIn() { return TaxIn; } public INV_SOH1Query setTaxIn(ArrayList value) { this.TaxIn = value; return this; } public BigDecimal getVoh() { return VOH; } public INV_SOH1Query setVoh(BigDecimal value) { this.VOH = value; return this; } public BigDecimal getVohGreaterThanOrEqualTo() { return VOHGreaterThanOrEqualTo; } public INV_SOH1Query setVohGreaterThanOrEqualTo(BigDecimal value) { this.VOHGreaterThanOrEqualTo = value; return this; } public BigDecimal getVohGreaterThan() { return VOHGreaterThan; } public INV_SOH1Query setVohGreaterThan(BigDecimal value) { this.VOHGreaterThan = value; return this; } public BigDecimal getVohLessThan() { return VOHLessThan; } public INV_SOH1Query setVohLessThan(BigDecimal value) { this.VOHLessThan = value; return this; } public BigDecimal getVohLessThanOrEqualTo() { return VOHLessThanOrEqualTo; } public INV_SOH1Query setVohLessThanOrEqualTo(BigDecimal value) { this.VOHLessThanOrEqualTo = value; return this; } public BigDecimal getVohNotEqualTo() { return VOHNotEqualTo; } public INV_SOH1Query setVohNotEqualTo(BigDecimal value) { this.VOHNotEqualTo = value; return this; } public ArrayList getVohBetween() { return VOHBetween; } public INV_SOH1Query setVohBetween(ArrayList value) { this.VOHBetween = value; return this; } public ArrayList getVohIn() { return VOHIn; } public INV_SOH1Query setVohIn(ArrayList value) { this.VOHIn = value; return this; } public String getInLogicalID() { return IN_LogicalID; } public INV_SOH1Query setInLogicalID(String value) { this.IN_LogicalID = value; return this; } public String getInLogicalIDStartsWith() { return IN_LogicalIDStartsWith; } public INV_SOH1Query setInLogicalIDStartsWith(String value) { this.IN_LogicalIDStartsWith = value; return this; } public String getInLogicalIDEndsWith() { return IN_LogicalIDEndsWith; } public INV_SOH1Query setInLogicalIDEndsWith(String value) { this.IN_LogicalIDEndsWith = value; return this; } public String getInLogicalIDContains() { return IN_LogicalIDContains; } public INV_SOH1Query setInLogicalIDContains(String value) { this.IN_LogicalIDContains = value; return this; } public String getInLogicalIDLike() { return IN_LogicalIDLike; } public INV_SOH1Query setInLogicalIDLike(String value) { this.IN_LogicalIDLike = value; return this; } public ArrayList getInLogicalIDBetween() { return IN_LogicalIDBetween; } public INV_SOH1Query setInLogicalIDBetween(ArrayList value) { this.IN_LogicalIDBetween = value; return this; } public ArrayList getInLogicalIDIn() { return IN_LogicalIDIn; } public INV_SOH1Query setInLogicalIDIn(ArrayList value) { this.IN_LogicalIDIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class INV_UnProcessedQTYQuery extends QueryDb implements IReturn> { public String InventoryID = null; public String InventoryIDStartsWith = null; public String InventoryIDEndsWith = null; public String InventoryIDContains = null; public String InventoryIDLike = null; public ArrayList InventoryIDBetween = null; public ArrayList InventoryIDIn = null; public BigDecimal QTY = null; public BigDecimal QTYGreaterThanOrEqualTo = null; public BigDecimal QTYGreaterThan = null; public BigDecimal QTYLessThan = null; public BigDecimal QTYLessThanOrEqualTo = null; public BigDecimal QTYNotEqualTo = null; public ArrayList QTYBetween = null; public ArrayList QTYIn = null; public BigDecimal Value = null; public BigDecimal ValueGreaterThanOrEqualTo = null; public BigDecimal ValueGreaterThan = null; public BigDecimal ValueLessThan = null; public BigDecimal ValueLessThanOrEqualTo = null; public BigDecimal ValueNotEqualTo = null; public ArrayList ValueBetween = null; public ArrayList ValueIn = null; public BigDecimal Tax = null; public BigDecimal TaxGreaterThanOrEqualTo = null; public BigDecimal TaxGreaterThan = null; public BigDecimal TaxLessThan = null; public BigDecimal TaxLessThanOrEqualTo = null; public BigDecimal TaxNotEqualTo = null; public ArrayList TaxBetween = null; public ArrayList TaxIn = null; public String IN_LogicalID = null; public String IN_LogicalIDStartsWith = null; public String IN_LogicalIDEndsWith = null; public String IN_LogicalIDContains = null; public String IN_LogicalIDLike = null; public ArrayList IN_LogicalIDBetween = null; public ArrayList IN_LogicalIDIn = null; public String getInventoryID() { return InventoryID; } public INV_UnProcessedQTYQuery setInventoryID(String value) { this.InventoryID = value; return this; } public String getInventoryIDStartsWith() { return InventoryIDStartsWith; } public INV_UnProcessedQTYQuery setInventoryIDStartsWith(String value) { this.InventoryIDStartsWith = value; return this; } public String getInventoryIDEndsWith() { return InventoryIDEndsWith; } public INV_UnProcessedQTYQuery setInventoryIDEndsWith(String value) { this.InventoryIDEndsWith = value; return this; } public String getInventoryIDContains() { return InventoryIDContains; } public INV_UnProcessedQTYQuery setInventoryIDContains(String value) { this.InventoryIDContains = value; return this; } public String getInventoryIDLike() { return InventoryIDLike; } public INV_UnProcessedQTYQuery setInventoryIDLike(String value) { this.InventoryIDLike = value; return this; } public ArrayList getInventoryIDBetween() { return InventoryIDBetween; } public INV_UnProcessedQTYQuery setInventoryIDBetween(ArrayList value) { this.InventoryIDBetween = value; return this; } public ArrayList getInventoryIDIn() { return InventoryIDIn; } public INV_UnProcessedQTYQuery setInventoryIDIn(ArrayList value) { this.InventoryIDIn = value; return this; } public BigDecimal getQty() { return QTY; } public INV_UnProcessedQTYQuery setQty(BigDecimal value) { this.QTY = value; return this; } public BigDecimal getQtyGreaterThanOrEqualTo() { return QTYGreaterThanOrEqualTo; } public INV_UnProcessedQTYQuery setQtyGreaterThanOrEqualTo(BigDecimal value) { this.QTYGreaterThanOrEqualTo = value; return this; } public BigDecimal getQtyGreaterThan() { return QTYGreaterThan; } public INV_UnProcessedQTYQuery setQtyGreaterThan(BigDecimal value) { this.QTYGreaterThan = value; return this; } public BigDecimal getQtyLessThan() { return QTYLessThan; } public INV_UnProcessedQTYQuery setQtyLessThan(BigDecimal value) { this.QTYLessThan = value; return this; } public BigDecimal getQtyLessThanOrEqualTo() { return QTYLessThanOrEqualTo; } public INV_UnProcessedQTYQuery setQtyLessThanOrEqualTo(BigDecimal value) { this.QTYLessThanOrEqualTo = value; return this; } public BigDecimal getQtyNotEqualTo() { return QTYNotEqualTo; } public INV_UnProcessedQTYQuery setQtyNotEqualTo(BigDecimal value) { this.QTYNotEqualTo = value; return this; } public ArrayList getQtyBetween() { return QTYBetween; } public INV_UnProcessedQTYQuery setQtyBetween(ArrayList value) { this.QTYBetween = value; return this; } public ArrayList getQtyIn() { return QTYIn; } public INV_UnProcessedQTYQuery setQtyIn(ArrayList value) { this.QTYIn = value; return this; } public BigDecimal getValue() { return Value; } public INV_UnProcessedQTYQuery setValue(BigDecimal value) { this.Value = value; return this; } public BigDecimal getValueGreaterThanOrEqualTo() { return ValueGreaterThanOrEqualTo; } public INV_UnProcessedQTYQuery setValueGreaterThanOrEqualTo(BigDecimal value) { this.ValueGreaterThanOrEqualTo = value; return this; } public BigDecimal getValueGreaterThan() { return ValueGreaterThan; } public INV_UnProcessedQTYQuery setValueGreaterThan(BigDecimal value) { this.ValueGreaterThan = value; return this; } public BigDecimal getValueLessThan() { return ValueLessThan; } public INV_UnProcessedQTYQuery setValueLessThan(BigDecimal value) { this.ValueLessThan = value; return this; } public BigDecimal getValueLessThanOrEqualTo() { return ValueLessThanOrEqualTo; } public INV_UnProcessedQTYQuery setValueLessThanOrEqualTo(BigDecimal value) { this.ValueLessThanOrEqualTo = value; return this; } public BigDecimal getValueNotEqualTo() { return ValueNotEqualTo; } public INV_UnProcessedQTYQuery setValueNotEqualTo(BigDecimal value) { this.ValueNotEqualTo = value; return this; } public ArrayList getValueBetween() { return ValueBetween; } public INV_UnProcessedQTYQuery setValueBetween(ArrayList value) { this.ValueBetween = value; return this; } public ArrayList getValueIn() { return ValueIn; } public INV_UnProcessedQTYQuery setValueIn(ArrayList value) { this.ValueIn = value; return this; } public BigDecimal getTax() { return Tax; } public INV_UnProcessedQTYQuery setTax(BigDecimal value) { this.Tax = value; return this; } public BigDecimal getTaxGreaterThanOrEqualTo() { return TaxGreaterThanOrEqualTo; } public INV_UnProcessedQTYQuery setTaxGreaterThanOrEqualTo(BigDecimal value) { this.TaxGreaterThanOrEqualTo = value; return this; } public BigDecimal getTaxGreaterThan() { return TaxGreaterThan; } public INV_UnProcessedQTYQuery setTaxGreaterThan(BigDecimal value) { this.TaxGreaterThan = value; return this; } public BigDecimal getTaxLessThan() { return TaxLessThan; } public INV_UnProcessedQTYQuery setTaxLessThan(BigDecimal value) { this.TaxLessThan = value; return this; } public BigDecimal getTaxLessThanOrEqualTo() { return TaxLessThanOrEqualTo; } public INV_UnProcessedQTYQuery setTaxLessThanOrEqualTo(BigDecimal value) { this.TaxLessThanOrEqualTo = value; return this; } public BigDecimal getTaxNotEqualTo() { return TaxNotEqualTo; } public INV_UnProcessedQTYQuery setTaxNotEqualTo(BigDecimal value) { this.TaxNotEqualTo = value; return this; } public ArrayList getTaxBetween() { return TaxBetween; } public INV_UnProcessedQTYQuery setTaxBetween(ArrayList value) { this.TaxBetween = value; return this; } public ArrayList getTaxIn() { return TaxIn; } public INV_UnProcessedQTYQuery setTaxIn(ArrayList value) { this.TaxIn = value; return this; } public String getInLogicalID() { return IN_LogicalID; } public INV_UnProcessedQTYQuery setInLogicalID(String value) { this.IN_LogicalID = value; return this; } public String getInLogicalIDStartsWith() { return IN_LogicalIDStartsWith; } public INV_UnProcessedQTYQuery setInLogicalIDStartsWith(String value) { this.IN_LogicalIDStartsWith = value; return this; } public String getInLogicalIDEndsWith() { return IN_LogicalIDEndsWith; } public INV_UnProcessedQTYQuery setInLogicalIDEndsWith(String value) { this.IN_LogicalIDEndsWith = value; return this; } public String getInLogicalIDContains() { return IN_LogicalIDContains; } public INV_UnProcessedQTYQuery setInLogicalIDContains(String value) { this.IN_LogicalIDContains = value; return this; } public String getInLogicalIDLike() { return IN_LogicalIDLike; } public INV_UnProcessedQTYQuery setInLogicalIDLike(String value) { this.IN_LogicalIDLike = value; return this; } public ArrayList getInLogicalIDBetween() { return IN_LogicalIDBetween; } public INV_UnProcessedQTYQuery setInLogicalIDBetween(ArrayList value) { this.IN_LogicalIDBetween = value; return this; } public ArrayList getInLogicalIDIn() { return IN_LogicalIDIn; } public INV_UnProcessedQTYQuery setInLogicalIDIn(ArrayList value) { this.IN_LogicalIDIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class INV_WHTransferQuery extends QueryDb implements IReturn> { public String TransferNo = null; public String TransferNoStartsWith = null; public String TransferNoEndsWith = null; public String TransferNoContains = null; public String TransferNoLike = null; public ArrayList TransferNoBetween = null; public ArrayList TransferNoIn = null; public String Ref = null; public String RefStartsWith = null; public String RefEndsWith = null; public String RefContains = null; public String RefLike = null; public ArrayList RefBetween = null; public ArrayList RefIn = null; public String FromWH = null; public String FromWHStartsWith = null; public String FromWHEndsWith = null; public String FromWHContains = null; public String FromWHLike = null; public ArrayList FromWHBetween = null; public ArrayList FromWHIn = null; public String ToWH = null; public String ToWHStartsWith = null; public String ToWHEndsWith = null; public String ToWHContains = null; public String ToWHLike = null; public ArrayList ToWHBetween = null; public ArrayList ToWHIn = null; public String WH_TransferLineID = null; public String WH_TransferLineIDStartsWith = null; public String WH_TransferLineIDEndsWith = null; public String WH_TransferLineIDContains = null; public String WH_TransferLineIDLike = null; public ArrayList WH_TransferLineIDBetween = null; public ArrayList WH_TransferLineIDIn = null; public String WH_TransferLineDetailsID = null; public String WH_TransferLineDetailsIDStartsWith = null; public String WH_TransferLineDetailsIDEndsWith = null; public String WH_TransferLineDetailsIDContains = null; public String WH_TransferLineDetailsIDLike = null; public ArrayList WH_TransferLineDetailsIDBetween = null; public ArrayList WH_TransferLineDetailsIDIn = null; public String SerialNo = null; public String SerialNoStartsWith = null; public String SerialNoEndsWith = null; public String SerialNoContains = null; public String SerialNoLike = null; public ArrayList SerialNoBetween = null; public ArrayList SerialNoIn = null; public String getTransferNo() { return TransferNo; } public INV_WHTransferQuery setTransferNo(String value) { this.TransferNo = value; return this; } public String getTransferNoStartsWith() { return TransferNoStartsWith; } public INV_WHTransferQuery setTransferNoStartsWith(String value) { this.TransferNoStartsWith = value; return this; } public String getTransferNoEndsWith() { return TransferNoEndsWith; } public INV_WHTransferQuery setTransferNoEndsWith(String value) { this.TransferNoEndsWith = value; return this; } public String getTransferNoContains() { return TransferNoContains; } public INV_WHTransferQuery setTransferNoContains(String value) { this.TransferNoContains = value; return this; } public String getTransferNoLike() { return TransferNoLike; } public INV_WHTransferQuery setTransferNoLike(String value) { this.TransferNoLike = value; return this; } public ArrayList getTransferNoBetween() { return TransferNoBetween; } public INV_WHTransferQuery setTransferNoBetween(ArrayList value) { this.TransferNoBetween = value; return this; } public ArrayList getTransferNoIn() { return TransferNoIn; } public INV_WHTransferQuery setTransferNoIn(ArrayList value) { this.TransferNoIn = value; return this; } public String getRef() { return Ref; } public INV_WHTransferQuery setRef(String value) { this.Ref = value; return this; } public String getRefStartsWith() { return RefStartsWith; } public INV_WHTransferQuery setRefStartsWith(String value) { this.RefStartsWith = value; return this; } public String getRefEndsWith() { return RefEndsWith; } public INV_WHTransferQuery setRefEndsWith(String value) { this.RefEndsWith = value; return this; } public String getRefContains() { return RefContains; } public INV_WHTransferQuery setRefContains(String value) { this.RefContains = value; return this; } public String getRefLike() { return RefLike; } public INV_WHTransferQuery setRefLike(String value) { this.RefLike = value; return this; } public ArrayList getRefBetween() { return RefBetween; } public INV_WHTransferQuery setRefBetween(ArrayList value) { this.RefBetween = value; return this; } public ArrayList getRefIn() { return RefIn; } public INV_WHTransferQuery setRefIn(ArrayList value) { this.RefIn = value; return this; } public String getFromWH() { return FromWH; } public INV_WHTransferQuery setFromWH(String value) { this.FromWH = value; return this; } public String getFromWHStartsWith() { return FromWHStartsWith; } public INV_WHTransferQuery setFromWHStartsWith(String value) { this.FromWHStartsWith = value; return this; } public String getFromWHEndsWith() { return FromWHEndsWith; } public INV_WHTransferQuery setFromWHEndsWith(String value) { this.FromWHEndsWith = value; return this; } public String getFromWHContains() { return FromWHContains; } public INV_WHTransferQuery setFromWHContains(String value) { this.FromWHContains = value; return this; } public String getFromWHLike() { return FromWHLike; } public INV_WHTransferQuery setFromWHLike(String value) { this.FromWHLike = value; return this; } public ArrayList getFromWHBetween() { return FromWHBetween; } public INV_WHTransferQuery setFromWHBetween(ArrayList value) { this.FromWHBetween = value; return this; } public ArrayList getFromWHIn() { return FromWHIn; } public INV_WHTransferQuery setFromWHIn(ArrayList value) { this.FromWHIn = value; return this; } public String getToWH() { return ToWH; } public INV_WHTransferQuery setToWH(String value) { this.ToWH = value; return this; } public String getToWHStartsWith() { return ToWHStartsWith; } public INV_WHTransferQuery setToWHStartsWith(String value) { this.ToWHStartsWith = value; return this; } public String getToWHEndsWith() { return ToWHEndsWith; } public INV_WHTransferQuery setToWHEndsWith(String value) { this.ToWHEndsWith = value; return this; } public String getToWHContains() { return ToWHContains; } public INV_WHTransferQuery setToWHContains(String value) { this.ToWHContains = value; return this; } public String getToWHLike() { return ToWHLike; } public INV_WHTransferQuery setToWHLike(String value) { this.ToWHLike = value; return this; } public ArrayList getToWHBetween() { return ToWHBetween; } public INV_WHTransferQuery setToWHBetween(ArrayList value) { this.ToWHBetween = value; return this; } public ArrayList getToWHIn() { return ToWHIn; } public INV_WHTransferQuery setToWHIn(ArrayList value) { this.ToWHIn = value; return this; } public String getWhTransferLineID() { return WH_TransferLineID; } public INV_WHTransferQuery setWhTransferLineID(String value) { this.WH_TransferLineID = value; return this; } public String getWhTransferLineIDStartsWith() { return WH_TransferLineIDStartsWith; } public INV_WHTransferQuery setWhTransferLineIDStartsWith(String value) { this.WH_TransferLineIDStartsWith = value; return this; } public String getWhTransferLineIDEndsWith() { return WH_TransferLineIDEndsWith; } public INV_WHTransferQuery setWhTransferLineIDEndsWith(String value) { this.WH_TransferLineIDEndsWith = value; return this; } public String getWhTransferLineIDContains() { return WH_TransferLineIDContains; } public INV_WHTransferQuery setWhTransferLineIDContains(String value) { this.WH_TransferLineIDContains = value; return this; } public String getWhTransferLineIDLike() { return WH_TransferLineIDLike; } public INV_WHTransferQuery setWhTransferLineIDLike(String value) { this.WH_TransferLineIDLike = value; return this; } public ArrayList getWhTransferLineIDBetween() { return WH_TransferLineIDBetween; } public INV_WHTransferQuery setWhTransferLineIDBetween(ArrayList value) { this.WH_TransferLineIDBetween = value; return this; } public ArrayList getWhTransferLineIDIn() { return WH_TransferLineIDIn; } public INV_WHTransferQuery setWhTransferLineIDIn(ArrayList value) { this.WH_TransferLineIDIn = value; return this; } public String getWhTransferLineDetailsID() { return WH_TransferLineDetailsID; } public INV_WHTransferQuery setWhTransferLineDetailsID(String value) { this.WH_TransferLineDetailsID = value; return this; } public String getWhTransferLineDetailsIDStartsWith() { return WH_TransferLineDetailsIDStartsWith; } public INV_WHTransferQuery setWhTransferLineDetailsIDStartsWith(String value) { this.WH_TransferLineDetailsIDStartsWith = value; return this; } public String getWhTransferLineDetailsIDEndsWith() { return WH_TransferLineDetailsIDEndsWith; } public INV_WHTransferQuery setWhTransferLineDetailsIDEndsWith(String value) { this.WH_TransferLineDetailsIDEndsWith = value; return this; } public String getWhTransferLineDetailsIDContains() { return WH_TransferLineDetailsIDContains; } public INV_WHTransferQuery setWhTransferLineDetailsIDContains(String value) { this.WH_TransferLineDetailsIDContains = value; return this; } public String getWhTransferLineDetailsIDLike() { return WH_TransferLineDetailsIDLike; } public INV_WHTransferQuery setWhTransferLineDetailsIDLike(String value) { this.WH_TransferLineDetailsIDLike = value; return this; } public ArrayList getWhTransferLineDetailsIDBetween() { return WH_TransferLineDetailsIDBetween; } public INV_WHTransferQuery setWhTransferLineDetailsIDBetween(ArrayList value) { this.WH_TransferLineDetailsIDBetween = value; return this; } public ArrayList getWhTransferLineDetailsIDIn() { return WH_TransferLineDetailsIDIn; } public INV_WHTransferQuery setWhTransferLineDetailsIDIn(ArrayList value) { this.WH_TransferLineDetailsIDIn = value; return this; } public String getSerialNo() { return SerialNo; } public INV_WHTransferQuery setSerialNo(String value) { this.SerialNo = value; return this; } public String getSerialNoStartsWith() { return SerialNoStartsWith; } public INV_WHTransferQuery setSerialNoStartsWith(String value) { this.SerialNoStartsWith = value; return this; } public String getSerialNoEndsWith() { return SerialNoEndsWith; } public INV_WHTransferQuery setSerialNoEndsWith(String value) { this.SerialNoEndsWith = value; return this; } public String getSerialNoContains() { return SerialNoContains; } public INV_WHTransferQuery setSerialNoContains(String value) { this.SerialNoContains = value; return this; } public String getSerialNoLike() { return SerialNoLike; } public INV_WHTransferQuery setSerialNoLike(String value) { this.SerialNoLike = value; return this; } public ArrayList getSerialNoBetween() { return SerialNoBetween; } public INV_WHTransferQuery setSerialNoBetween(ArrayList value) { this.SerialNoBetween = value; return this; } public ArrayList getSerialNoIn() { return SerialNoIn; } public INV_WHTransferQuery setSerialNoIn(ArrayList value) { this.SerialNoIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class JB_BudgetQuery extends QueryDb implements IReturn> { public String RecID = null; public String RecIDStartsWith = null; public String RecIDEndsWith = null; public String RecIDContains = null; public String RecIDLike = null; public ArrayList RecIDBetween = null; public ArrayList RecIDIn = null; public String JB_JobStages_RecID = null; public String JB_JobStages_RecIDStartsWith = null; public String JB_JobStages_RecIDEndsWith = null; public String JB_JobStages_RecIDContains = null; public String JB_JobStages_RecIDLike = null; public ArrayList JB_JobStages_RecIDBetween = null; public ArrayList JB_JobStages_RecIDIn = null; public BigDecimal PurchaseQty = null; public BigDecimal PurchaseQtyGreaterThanOrEqualTo = null; public BigDecimal PurchaseQtyGreaterThan = null; public BigDecimal PurchaseQtyLessThan = null; public BigDecimal PurchaseQtyLessThanOrEqualTo = null; public BigDecimal PurchaseQtyNotEqualTo = null; public ArrayList PurchaseQtyBetween = null; public ArrayList PurchaseQtyIn = null; public BigDecimal PurchaseCost = null; public BigDecimal PurchaseCostGreaterThanOrEqualTo = null; public BigDecimal PurchaseCostGreaterThan = null; public BigDecimal PurchaseCostLessThan = null; public BigDecimal PurchaseCostLessThanOrEqualTo = null; public BigDecimal PurchaseCostNotEqualTo = null; public ArrayList PurchaseCostBetween = null; public ArrayList PurchaseCostIn = null; public BigDecimal PurchaseCharge = null; public BigDecimal PurchaseChargeGreaterThanOrEqualTo = null; public BigDecimal PurchaseChargeGreaterThan = null; public BigDecimal PurchaseChargeLessThan = null; public BigDecimal PurchaseChargeLessThanOrEqualTo = null; public BigDecimal PurchaseChargeNotEqualTo = null; public ArrayList PurchaseChargeBetween = null; public ArrayList PurchaseChargeIn = null; public String PurchaseNote = null; public String PurchaseNoteStartsWith = null; public String PurchaseNoteEndsWith = null; public String PurchaseNoteContains = null; public String PurchaseNoteLike = null; public ArrayList PurchaseNoteBetween = null; public ArrayList PurchaseNoteIn = null; public BigDecimal MaterialQty = null; public BigDecimal MaterialQtyGreaterThanOrEqualTo = null; public BigDecimal MaterialQtyGreaterThan = null; public BigDecimal MaterialQtyLessThan = null; public BigDecimal MaterialQtyLessThanOrEqualTo = null; public BigDecimal MaterialQtyNotEqualTo = null; public ArrayList MaterialQtyBetween = null; public ArrayList MaterialQtyIn = null; public BigDecimal MaterialCost = null; public BigDecimal MaterialCostGreaterThanOrEqualTo = null; public BigDecimal MaterialCostGreaterThan = null; public BigDecimal MaterialCostLessThan = null; public BigDecimal MaterialCostLessThanOrEqualTo = null; public BigDecimal MaterialCostNotEqualTo = null; public ArrayList MaterialCostBetween = null; public ArrayList MaterialCostIn = null; public BigDecimal MaterialCharge = null; public BigDecimal MaterialChargeGreaterThanOrEqualTo = null; public BigDecimal MaterialChargeGreaterThan = null; public BigDecimal MaterialChargeLessThan = null; public BigDecimal MaterialChargeLessThanOrEqualTo = null; public BigDecimal MaterialChargeNotEqualTo = null; public ArrayList MaterialChargeBetween = null; public ArrayList MaterialChargeIn = null; public String MaterialNote = null; public String MaterialNoteStartsWith = null; public String MaterialNoteEndsWith = null; public String MaterialNoteContains = null; public String MaterialNoteLike = null; public ArrayList MaterialNoteBetween = null; public ArrayList MaterialNoteIn = null; public BigDecimal LabourQty = null; public BigDecimal LabourQtyGreaterThanOrEqualTo = null; public BigDecimal LabourQtyGreaterThan = null; public BigDecimal LabourQtyLessThan = null; public BigDecimal LabourQtyLessThanOrEqualTo = null; public BigDecimal LabourQtyNotEqualTo = null; public ArrayList LabourQtyBetween = null; public ArrayList LabourQtyIn = null; public BigDecimal LabourCost = null; public BigDecimal LabourCostGreaterThanOrEqualTo = null; public BigDecimal LabourCostGreaterThan = null; public BigDecimal LabourCostLessThan = null; public BigDecimal LabourCostLessThanOrEqualTo = null; public BigDecimal LabourCostNotEqualTo = null; public ArrayList LabourCostBetween = null; public ArrayList LabourCostIn = null; public BigDecimal LabourCharge = null; public BigDecimal LabourChargeGreaterThanOrEqualTo = null; public BigDecimal LabourChargeGreaterThan = null; public BigDecimal LabourChargeLessThan = null; public BigDecimal LabourChargeLessThanOrEqualTo = null; public BigDecimal LabourChargeNotEqualTo = null; public ArrayList LabourChargeBetween = null; public ArrayList LabourChargeIn = null; public String LabourNote = null; public String LabourNoteStartsWith = null; public String LabourNoteEndsWith = null; public String LabourNoteContains = null; public String LabourNoteLike = null; public ArrayList LabourNoteBetween = null; public ArrayList LabourNoteIn = null; public BigDecimal CashBookQty = null; public BigDecimal CashBookQtyGreaterThanOrEqualTo = null; public BigDecimal CashBookQtyGreaterThan = null; public BigDecimal CashBookQtyLessThan = null; public BigDecimal CashBookQtyLessThanOrEqualTo = null; public BigDecimal CashBookQtyNotEqualTo = null; public ArrayList CashBookQtyBetween = null; public ArrayList CashBookQtyIn = null; public BigDecimal CashBookCost = null; public BigDecimal CashBookCostGreaterThanOrEqualTo = null; public BigDecimal CashBookCostGreaterThan = null; public BigDecimal CashBookCostLessThan = null; public BigDecimal CashBookCostLessThanOrEqualTo = null; public BigDecimal CashBookCostNotEqualTo = null; public ArrayList CashBookCostBetween = null; public ArrayList CashBookCostIn = null; public BigDecimal CashBookCharge = null; public BigDecimal CashBookChargeGreaterThanOrEqualTo = null; public BigDecimal CashBookChargeGreaterThan = null; public BigDecimal CashBookChargeLessThan = null; public BigDecimal CashBookChargeLessThanOrEqualTo = null; public BigDecimal CashBookChargeNotEqualTo = null; public ArrayList CashBookChargeBetween = null; public ArrayList CashBookChargeIn = null; public String CashBookNote = null; public String CashBookNoteStartsWith = null; public String CashBookNoteEndsWith = null; public String CashBookNoteContains = null; public String CashBookNoteLike = null; public ArrayList CashBookNoteBetween = null; public ArrayList CashBookNoteIn = null; public BigDecimal ResourceQty = null; public BigDecimal ResourceQtyGreaterThanOrEqualTo = null; public BigDecimal ResourceQtyGreaterThan = null; public BigDecimal ResourceQtyLessThan = null; public BigDecimal ResourceQtyLessThanOrEqualTo = null; public BigDecimal ResourceQtyNotEqualTo = null; public ArrayList ResourceQtyBetween = null; public ArrayList ResourceQtyIn = null; public BigDecimal ResourceCost = null; public BigDecimal ResourceCostGreaterThanOrEqualTo = null; public BigDecimal ResourceCostGreaterThan = null; public BigDecimal ResourceCostLessThan = null; public BigDecimal ResourceCostLessThanOrEqualTo = null; public BigDecimal ResourceCostNotEqualTo = null; public ArrayList ResourceCostBetween = null; public ArrayList ResourceCostIn = null; public BigDecimal ResourceCharge = null; public BigDecimal ResourceChargeGreaterThanOrEqualTo = null; public BigDecimal ResourceChargeGreaterThan = null; public BigDecimal ResourceChargeLessThan = null; public BigDecimal ResourceChargeLessThanOrEqualTo = null; public BigDecimal ResourceChargeNotEqualTo = null; public ArrayList ResourceChargeBetween = null; public ArrayList ResourceChargeIn = null; public String ResourceNote = null; public String ResourceNoteStartsWith = null; public String ResourceNoteEndsWith = null; public String ResourceNoteContains = null; public String ResourceNoteLike = null; public ArrayList ResourceNoteBetween = null; public ArrayList ResourceNoteIn = null; public BigDecimal JournalQty = null; public BigDecimal JournalQtyGreaterThanOrEqualTo = null; public BigDecimal JournalQtyGreaterThan = null; public BigDecimal JournalQtyLessThan = null; public BigDecimal JournalQtyLessThanOrEqualTo = null; public BigDecimal JournalQtyNotEqualTo = null; public ArrayList JournalQtyBetween = null; public ArrayList JournalQtyIn = null; public BigDecimal JournalCost = null; public BigDecimal JournalCostGreaterThanOrEqualTo = null; public BigDecimal JournalCostGreaterThan = null; public BigDecimal JournalCostLessThan = null; public BigDecimal JournalCostLessThanOrEqualTo = null; public BigDecimal JournalCostNotEqualTo = null; public ArrayList JournalCostBetween = null; public ArrayList JournalCostIn = null; public BigDecimal JournalCharge = null; public BigDecimal JournalChargeGreaterThanOrEqualTo = null; public BigDecimal JournalChargeGreaterThan = null; public BigDecimal JournalChargeLessThan = null; public BigDecimal JournalChargeLessThanOrEqualTo = null; public BigDecimal JournalChargeNotEqualTo = null; public ArrayList JournalChargeBetween = null; public ArrayList JournalChargeIn = null; public String JournalNote = null; public String JournalNoteStartsWith = null; public String JournalNoteEndsWith = null; public String JournalNoteContains = null; public String JournalNoteLike = null; public ArrayList JournalNoteBetween = null; public ArrayList JournalNoteIn = null; public BigDecimal MaterialCreditorQty = null; public BigDecimal MaterialCreditorQtyGreaterThanOrEqualTo = null; public BigDecimal MaterialCreditorQtyGreaterThan = null; public BigDecimal MaterialCreditorQtyLessThan = null; public BigDecimal MaterialCreditorQtyLessThanOrEqualTo = null; public BigDecimal MaterialCreditorQtyNotEqualTo = null; public ArrayList MaterialCreditorQtyBetween = null; public ArrayList MaterialCreditorQtyIn = null; public BigDecimal MaterialCreditorCost = null; public BigDecimal MaterialCreditorCostGreaterThanOrEqualTo = null; public BigDecimal MaterialCreditorCostGreaterThan = null; public BigDecimal MaterialCreditorCostLessThan = null; public BigDecimal MaterialCreditorCostLessThanOrEqualTo = null; public BigDecimal MaterialCreditorCostNotEqualTo = null; public ArrayList MaterialCreditorCostBetween = null; public ArrayList MaterialCreditorCostIn = null; public BigDecimal MaterialCreditorCharge = null; public BigDecimal MaterialCreditorChargeGreaterThanOrEqualTo = null; public BigDecimal MaterialCreditorChargeGreaterThan = null; public BigDecimal MaterialCreditorChargeLessThan = null; public BigDecimal MaterialCreditorChargeLessThanOrEqualTo = null; public BigDecimal MaterialCreditorChargeNotEqualTo = null; public ArrayList MaterialCreditorChargeBetween = null; public ArrayList MaterialCreditorChargeIn = null; public String MaterialCreditorNote = null; public String MaterialCreditorNoteStartsWith = null; public String MaterialCreditorNoteEndsWith = null; public String MaterialCreditorNoteContains = null; public String MaterialCreditorNoteLike = null; public ArrayList MaterialCreditorNoteBetween = null; public ArrayList MaterialCreditorNoteIn = null; public ArrayList RowHash = null; public String getRecID() { return RecID; } public JB_BudgetQuery setRecID(String value) { this.RecID = value; return this; } public String getRecIDStartsWith() { return RecIDStartsWith; } public JB_BudgetQuery setRecIDStartsWith(String value) { this.RecIDStartsWith = value; return this; } public String getRecIDEndsWith() { return RecIDEndsWith; } public JB_BudgetQuery setRecIDEndsWith(String value) { this.RecIDEndsWith = value; return this; } public String getRecIDContains() { return RecIDContains; } public JB_BudgetQuery setRecIDContains(String value) { this.RecIDContains = value; return this; } public String getRecIDLike() { return RecIDLike; } public JB_BudgetQuery setRecIDLike(String value) { this.RecIDLike = value; return this; } public ArrayList getRecIDBetween() { return RecIDBetween; } public JB_BudgetQuery setRecIDBetween(ArrayList value) { this.RecIDBetween = value; return this; } public ArrayList getRecIDIn() { return RecIDIn; } public JB_BudgetQuery setRecIDIn(ArrayList value) { this.RecIDIn = value; return this; } public String getJbJobStagesRecID() { return JB_JobStages_RecID; } public JB_BudgetQuery setJbJobStagesRecID(String value) { this.JB_JobStages_RecID = value; return this; } public String getJbJobStagesRecIDStartsWith() { return JB_JobStages_RecIDStartsWith; } public JB_BudgetQuery setJbJobStagesRecIDStartsWith(String value) { this.JB_JobStages_RecIDStartsWith = value; return this; } public String getJbJobStagesRecIDEndsWith() { return JB_JobStages_RecIDEndsWith; } public JB_BudgetQuery setJbJobStagesRecIDEndsWith(String value) { this.JB_JobStages_RecIDEndsWith = value; return this; } public String getJbJobStagesRecIDContains() { return JB_JobStages_RecIDContains; } public JB_BudgetQuery setJbJobStagesRecIDContains(String value) { this.JB_JobStages_RecIDContains = value; return this; } public String getJbJobStagesRecIDLike() { return JB_JobStages_RecIDLike; } public JB_BudgetQuery setJbJobStagesRecIDLike(String value) { this.JB_JobStages_RecIDLike = value; return this; } public ArrayList getJbJobStagesRecIDBetween() { return JB_JobStages_RecIDBetween; } public JB_BudgetQuery setJbJobStagesRecIDBetween(ArrayList value) { this.JB_JobStages_RecIDBetween = value; return this; } public ArrayList getJbJobStagesRecIDIn() { return JB_JobStages_RecIDIn; } public JB_BudgetQuery setJbJobStagesRecIDIn(ArrayList value) { this.JB_JobStages_RecIDIn = value; return this; } public BigDecimal getPurchaseQty() { return PurchaseQty; } public JB_BudgetQuery setPurchaseQty(BigDecimal value) { this.PurchaseQty = value; return this; } public BigDecimal getPurchaseQtyGreaterThanOrEqualTo() { return PurchaseQtyGreaterThanOrEqualTo; } public JB_BudgetQuery setPurchaseQtyGreaterThanOrEqualTo(BigDecimal value) { this.PurchaseQtyGreaterThanOrEqualTo = value; return this; } public BigDecimal getPurchaseQtyGreaterThan() { return PurchaseQtyGreaterThan; } public JB_BudgetQuery setPurchaseQtyGreaterThan(BigDecimal value) { this.PurchaseQtyGreaterThan = value; return this; } public BigDecimal getPurchaseQtyLessThan() { return PurchaseQtyLessThan; } public JB_BudgetQuery setPurchaseQtyLessThan(BigDecimal value) { this.PurchaseQtyLessThan = value; return this; } public BigDecimal getPurchaseQtyLessThanOrEqualTo() { return PurchaseQtyLessThanOrEqualTo; } public JB_BudgetQuery setPurchaseQtyLessThanOrEqualTo(BigDecimal value) { this.PurchaseQtyLessThanOrEqualTo = value; return this; } public BigDecimal getPurchaseQtyNotEqualTo() { return PurchaseQtyNotEqualTo; } public JB_BudgetQuery setPurchaseQtyNotEqualTo(BigDecimal value) { this.PurchaseQtyNotEqualTo = value; return this; } public ArrayList getPurchaseQtyBetween() { return PurchaseQtyBetween; } public JB_BudgetQuery setPurchaseQtyBetween(ArrayList value) { this.PurchaseQtyBetween = value; return this; } public ArrayList getPurchaseQtyIn() { return PurchaseQtyIn; } public JB_BudgetQuery setPurchaseQtyIn(ArrayList value) { this.PurchaseQtyIn = value; return this; } public BigDecimal getPurchaseCost() { return PurchaseCost; } public JB_BudgetQuery setPurchaseCost(BigDecimal value) { this.PurchaseCost = value; return this; } public BigDecimal getPurchaseCostGreaterThanOrEqualTo() { return PurchaseCostGreaterThanOrEqualTo; } public JB_BudgetQuery setPurchaseCostGreaterThanOrEqualTo(BigDecimal value) { this.PurchaseCostGreaterThanOrEqualTo = value; return this; } public BigDecimal getPurchaseCostGreaterThan() { return PurchaseCostGreaterThan; } public JB_BudgetQuery setPurchaseCostGreaterThan(BigDecimal value) { this.PurchaseCostGreaterThan = value; return this; } public BigDecimal getPurchaseCostLessThan() { return PurchaseCostLessThan; } public JB_BudgetQuery setPurchaseCostLessThan(BigDecimal value) { this.PurchaseCostLessThan = value; return this; } public BigDecimal getPurchaseCostLessThanOrEqualTo() { return PurchaseCostLessThanOrEqualTo; } public JB_BudgetQuery setPurchaseCostLessThanOrEqualTo(BigDecimal value) { this.PurchaseCostLessThanOrEqualTo = value; return this; } public BigDecimal getPurchaseCostNotEqualTo() { return PurchaseCostNotEqualTo; } public JB_BudgetQuery setPurchaseCostNotEqualTo(BigDecimal value) { this.PurchaseCostNotEqualTo = value; return this; } public ArrayList getPurchaseCostBetween() { return PurchaseCostBetween; } public JB_BudgetQuery setPurchaseCostBetween(ArrayList value) { this.PurchaseCostBetween = value; return this; } public ArrayList getPurchaseCostIn() { return PurchaseCostIn; } public JB_BudgetQuery setPurchaseCostIn(ArrayList value) { this.PurchaseCostIn = value; return this; } public BigDecimal getPurchaseCharge() { return PurchaseCharge; } public JB_BudgetQuery setPurchaseCharge(BigDecimal value) { this.PurchaseCharge = value; return this; } public BigDecimal getPurchaseChargeGreaterThanOrEqualTo() { return PurchaseChargeGreaterThanOrEqualTo; } public JB_BudgetQuery setPurchaseChargeGreaterThanOrEqualTo(BigDecimal value) { this.PurchaseChargeGreaterThanOrEqualTo = value; return this; } public BigDecimal getPurchaseChargeGreaterThan() { return PurchaseChargeGreaterThan; } public JB_BudgetQuery setPurchaseChargeGreaterThan(BigDecimal value) { this.PurchaseChargeGreaterThan = value; return this; } public BigDecimal getPurchaseChargeLessThan() { return PurchaseChargeLessThan; } public JB_BudgetQuery setPurchaseChargeLessThan(BigDecimal value) { this.PurchaseChargeLessThan = value; return this; } public BigDecimal getPurchaseChargeLessThanOrEqualTo() { return PurchaseChargeLessThanOrEqualTo; } public JB_BudgetQuery setPurchaseChargeLessThanOrEqualTo(BigDecimal value) { this.PurchaseChargeLessThanOrEqualTo = value; return this; } public BigDecimal getPurchaseChargeNotEqualTo() { return PurchaseChargeNotEqualTo; } public JB_BudgetQuery setPurchaseChargeNotEqualTo(BigDecimal value) { this.PurchaseChargeNotEqualTo = value; return this; } public ArrayList getPurchaseChargeBetween() { return PurchaseChargeBetween; } public JB_BudgetQuery setPurchaseChargeBetween(ArrayList value) { this.PurchaseChargeBetween = value; return this; } public ArrayList getPurchaseChargeIn() { return PurchaseChargeIn; } public JB_BudgetQuery setPurchaseChargeIn(ArrayList value) { this.PurchaseChargeIn = value; return this; } public String getPurchaseNote() { return PurchaseNote; } public JB_BudgetQuery setPurchaseNote(String value) { this.PurchaseNote = value; return this; } public String getPurchaseNoteStartsWith() { return PurchaseNoteStartsWith; } public JB_BudgetQuery setPurchaseNoteStartsWith(String value) { this.PurchaseNoteStartsWith = value; return this; } public String getPurchaseNoteEndsWith() { return PurchaseNoteEndsWith; } public JB_BudgetQuery setPurchaseNoteEndsWith(String value) { this.PurchaseNoteEndsWith = value; return this; } public String getPurchaseNoteContains() { return PurchaseNoteContains; } public JB_BudgetQuery setPurchaseNoteContains(String value) { this.PurchaseNoteContains = value; return this; } public String getPurchaseNoteLike() { return PurchaseNoteLike; } public JB_BudgetQuery setPurchaseNoteLike(String value) { this.PurchaseNoteLike = value; return this; } public ArrayList getPurchaseNoteBetween() { return PurchaseNoteBetween; } public JB_BudgetQuery setPurchaseNoteBetween(ArrayList value) { this.PurchaseNoteBetween = value; return this; } public ArrayList getPurchaseNoteIn() { return PurchaseNoteIn; } public JB_BudgetQuery setPurchaseNoteIn(ArrayList value) { this.PurchaseNoteIn = value; return this; } public BigDecimal getMaterialQty() { return MaterialQty; } public JB_BudgetQuery setMaterialQty(BigDecimal value) { this.MaterialQty = value; return this; } public BigDecimal getMaterialQtyGreaterThanOrEqualTo() { return MaterialQtyGreaterThanOrEqualTo; } public JB_BudgetQuery setMaterialQtyGreaterThanOrEqualTo(BigDecimal value) { this.MaterialQtyGreaterThanOrEqualTo = value; return this; } public BigDecimal getMaterialQtyGreaterThan() { return MaterialQtyGreaterThan; } public JB_BudgetQuery setMaterialQtyGreaterThan(BigDecimal value) { this.MaterialQtyGreaterThan = value; return this; } public BigDecimal getMaterialQtyLessThan() { return MaterialQtyLessThan; } public JB_BudgetQuery setMaterialQtyLessThan(BigDecimal value) { this.MaterialQtyLessThan = value; return this; } public BigDecimal getMaterialQtyLessThanOrEqualTo() { return MaterialQtyLessThanOrEqualTo; } public JB_BudgetQuery setMaterialQtyLessThanOrEqualTo(BigDecimal value) { this.MaterialQtyLessThanOrEqualTo = value; return this; } public BigDecimal getMaterialQtyNotEqualTo() { return MaterialQtyNotEqualTo; } public JB_BudgetQuery setMaterialQtyNotEqualTo(BigDecimal value) { this.MaterialQtyNotEqualTo = value; return this; } public ArrayList getMaterialQtyBetween() { return MaterialQtyBetween; } public JB_BudgetQuery setMaterialQtyBetween(ArrayList value) { this.MaterialQtyBetween = value; return this; } public ArrayList getMaterialQtyIn() { return MaterialQtyIn; } public JB_BudgetQuery setMaterialQtyIn(ArrayList value) { this.MaterialQtyIn = value; return this; } public BigDecimal getMaterialCost() { return MaterialCost; } public JB_BudgetQuery setMaterialCost(BigDecimal value) { this.MaterialCost = value; return this; } public BigDecimal getMaterialCostGreaterThanOrEqualTo() { return MaterialCostGreaterThanOrEqualTo; } public JB_BudgetQuery setMaterialCostGreaterThanOrEqualTo(BigDecimal value) { this.MaterialCostGreaterThanOrEqualTo = value; return this; } public BigDecimal getMaterialCostGreaterThan() { return MaterialCostGreaterThan; } public JB_BudgetQuery setMaterialCostGreaterThan(BigDecimal value) { this.MaterialCostGreaterThan = value; return this; } public BigDecimal getMaterialCostLessThan() { return MaterialCostLessThan; } public JB_BudgetQuery setMaterialCostLessThan(BigDecimal value) { this.MaterialCostLessThan = value; return this; } public BigDecimal getMaterialCostLessThanOrEqualTo() { return MaterialCostLessThanOrEqualTo; } public JB_BudgetQuery setMaterialCostLessThanOrEqualTo(BigDecimal value) { this.MaterialCostLessThanOrEqualTo = value; return this; } public BigDecimal getMaterialCostNotEqualTo() { return MaterialCostNotEqualTo; } public JB_BudgetQuery setMaterialCostNotEqualTo(BigDecimal value) { this.MaterialCostNotEqualTo = value; return this; } public ArrayList getMaterialCostBetween() { return MaterialCostBetween; } public JB_BudgetQuery setMaterialCostBetween(ArrayList value) { this.MaterialCostBetween = value; return this; } public ArrayList getMaterialCostIn() { return MaterialCostIn; } public JB_BudgetQuery setMaterialCostIn(ArrayList value) { this.MaterialCostIn = value; return this; } public BigDecimal getMaterialCharge() { return MaterialCharge; } public JB_BudgetQuery setMaterialCharge(BigDecimal value) { this.MaterialCharge = value; return this; } public BigDecimal getMaterialChargeGreaterThanOrEqualTo() { return MaterialChargeGreaterThanOrEqualTo; } public JB_BudgetQuery setMaterialChargeGreaterThanOrEqualTo(BigDecimal value) { this.MaterialChargeGreaterThanOrEqualTo = value; return this; } public BigDecimal getMaterialChargeGreaterThan() { return MaterialChargeGreaterThan; } public JB_BudgetQuery setMaterialChargeGreaterThan(BigDecimal value) { this.MaterialChargeGreaterThan = value; return this; } public BigDecimal getMaterialChargeLessThan() { return MaterialChargeLessThan; } public JB_BudgetQuery setMaterialChargeLessThan(BigDecimal value) { this.MaterialChargeLessThan = value; return this; } public BigDecimal getMaterialChargeLessThanOrEqualTo() { return MaterialChargeLessThanOrEqualTo; } public JB_BudgetQuery setMaterialChargeLessThanOrEqualTo(BigDecimal value) { this.MaterialChargeLessThanOrEqualTo = value; return this; } public BigDecimal getMaterialChargeNotEqualTo() { return MaterialChargeNotEqualTo; } public JB_BudgetQuery setMaterialChargeNotEqualTo(BigDecimal value) { this.MaterialChargeNotEqualTo = value; return this; } public ArrayList getMaterialChargeBetween() { return MaterialChargeBetween; } public JB_BudgetQuery setMaterialChargeBetween(ArrayList value) { this.MaterialChargeBetween = value; return this; } public ArrayList getMaterialChargeIn() { return MaterialChargeIn; } public JB_BudgetQuery setMaterialChargeIn(ArrayList value) { this.MaterialChargeIn = value; return this; } public String getMaterialNote() { return MaterialNote; } public JB_BudgetQuery setMaterialNote(String value) { this.MaterialNote = value; return this; } public String getMaterialNoteStartsWith() { return MaterialNoteStartsWith; } public JB_BudgetQuery setMaterialNoteStartsWith(String value) { this.MaterialNoteStartsWith = value; return this; } public String getMaterialNoteEndsWith() { return MaterialNoteEndsWith; } public JB_BudgetQuery setMaterialNoteEndsWith(String value) { this.MaterialNoteEndsWith = value; return this; } public String getMaterialNoteContains() { return MaterialNoteContains; } public JB_BudgetQuery setMaterialNoteContains(String value) { this.MaterialNoteContains = value; return this; } public String getMaterialNoteLike() { return MaterialNoteLike; } public JB_BudgetQuery setMaterialNoteLike(String value) { this.MaterialNoteLike = value; return this; } public ArrayList getMaterialNoteBetween() { return MaterialNoteBetween; } public JB_BudgetQuery setMaterialNoteBetween(ArrayList value) { this.MaterialNoteBetween = value; return this; } public ArrayList getMaterialNoteIn() { return MaterialNoteIn; } public JB_BudgetQuery setMaterialNoteIn(ArrayList value) { this.MaterialNoteIn = value; return this; } public BigDecimal getLabourQty() { return LabourQty; } public JB_BudgetQuery setLabourQty(BigDecimal value) { this.LabourQty = value; return this; } public BigDecimal getLabourQtyGreaterThanOrEqualTo() { return LabourQtyGreaterThanOrEqualTo; } public JB_BudgetQuery setLabourQtyGreaterThanOrEqualTo(BigDecimal value) { this.LabourQtyGreaterThanOrEqualTo = value; return this; } public BigDecimal getLabourQtyGreaterThan() { return LabourQtyGreaterThan; } public JB_BudgetQuery setLabourQtyGreaterThan(BigDecimal value) { this.LabourQtyGreaterThan = value; return this; } public BigDecimal getLabourQtyLessThan() { return LabourQtyLessThan; } public JB_BudgetQuery setLabourQtyLessThan(BigDecimal value) { this.LabourQtyLessThan = value; return this; } public BigDecimal getLabourQtyLessThanOrEqualTo() { return LabourQtyLessThanOrEqualTo; } public JB_BudgetQuery setLabourQtyLessThanOrEqualTo(BigDecimal value) { this.LabourQtyLessThanOrEqualTo = value; return this; } public BigDecimal getLabourQtyNotEqualTo() { return LabourQtyNotEqualTo; } public JB_BudgetQuery setLabourQtyNotEqualTo(BigDecimal value) { this.LabourQtyNotEqualTo = value; return this; } public ArrayList getLabourQtyBetween() { return LabourQtyBetween; } public JB_BudgetQuery setLabourQtyBetween(ArrayList value) { this.LabourQtyBetween = value; return this; } public ArrayList getLabourQtyIn() { return LabourQtyIn; } public JB_BudgetQuery setLabourQtyIn(ArrayList value) { this.LabourQtyIn = value; return this; } public BigDecimal getLabourCost() { return LabourCost; } public JB_BudgetQuery setLabourCost(BigDecimal value) { this.LabourCost = value; return this; } public BigDecimal getLabourCostGreaterThanOrEqualTo() { return LabourCostGreaterThanOrEqualTo; } public JB_BudgetQuery setLabourCostGreaterThanOrEqualTo(BigDecimal value) { this.LabourCostGreaterThanOrEqualTo = value; return this; } public BigDecimal getLabourCostGreaterThan() { return LabourCostGreaterThan; } public JB_BudgetQuery setLabourCostGreaterThan(BigDecimal value) { this.LabourCostGreaterThan = value; return this; } public BigDecimal getLabourCostLessThan() { return LabourCostLessThan; } public JB_BudgetQuery setLabourCostLessThan(BigDecimal value) { this.LabourCostLessThan = value; return this; } public BigDecimal getLabourCostLessThanOrEqualTo() { return LabourCostLessThanOrEqualTo; } public JB_BudgetQuery setLabourCostLessThanOrEqualTo(BigDecimal value) { this.LabourCostLessThanOrEqualTo = value; return this; } public BigDecimal getLabourCostNotEqualTo() { return LabourCostNotEqualTo; } public JB_BudgetQuery setLabourCostNotEqualTo(BigDecimal value) { this.LabourCostNotEqualTo = value; return this; } public ArrayList getLabourCostBetween() { return LabourCostBetween; } public JB_BudgetQuery setLabourCostBetween(ArrayList value) { this.LabourCostBetween = value; return this; } public ArrayList getLabourCostIn() { return LabourCostIn; } public JB_BudgetQuery setLabourCostIn(ArrayList value) { this.LabourCostIn = value; return this; } public BigDecimal getLabourCharge() { return LabourCharge; } public JB_BudgetQuery setLabourCharge(BigDecimal value) { this.LabourCharge = value; return this; } public BigDecimal getLabourChargeGreaterThanOrEqualTo() { return LabourChargeGreaterThanOrEqualTo; } public JB_BudgetQuery setLabourChargeGreaterThanOrEqualTo(BigDecimal value) { this.LabourChargeGreaterThanOrEqualTo = value; return this; } public BigDecimal getLabourChargeGreaterThan() { return LabourChargeGreaterThan; } public JB_BudgetQuery setLabourChargeGreaterThan(BigDecimal value) { this.LabourChargeGreaterThan = value; return this; } public BigDecimal getLabourChargeLessThan() { return LabourChargeLessThan; } public JB_BudgetQuery setLabourChargeLessThan(BigDecimal value) { this.LabourChargeLessThan = value; return this; } public BigDecimal getLabourChargeLessThanOrEqualTo() { return LabourChargeLessThanOrEqualTo; } public JB_BudgetQuery setLabourChargeLessThanOrEqualTo(BigDecimal value) { this.LabourChargeLessThanOrEqualTo = value; return this; } public BigDecimal getLabourChargeNotEqualTo() { return LabourChargeNotEqualTo; } public JB_BudgetQuery setLabourChargeNotEqualTo(BigDecimal value) { this.LabourChargeNotEqualTo = value; return this; } public ArrayList getLabourChargeBetween() { return LabourChargeBetween; } public JB_BudgetQuery setLabourChargeBetween(ArrayList value) { this.LabourChargeBetween = value; return this; } public ArrayList getLabourChargeIn() { return LabourChargeIn; } public JB_BudgetQuery setLabourChargeIn(ArrayList value) { this.LabourChargeIn = value; return this; } public String getLabourNote() { return LabourNote; } public JB_BudgetQuery setLabourNote(String value) { this.LabourNote = value; return this; } public String getLabourNoteStartsWith() { return LabourNoteStartsWith; } public JB_BudgetQuery setLabourNoteStartsWith(String value) { this.LabourNoteStartsWith = value; return this; } public String getLabourNoteEndsWith() { return LabourNoteEndsWith; } public JB_BudgetQuery setLabourNoteEndsWith(String value) { this.LabourNoteEndsWith = value; return this; } public String getLabourNoteContains() { return LabourNoteContains; } public JB_BudgetQuery setLabourNoteContains(String value) { this.LabourNoteContains = value; return this; } public String getLabourNoteLike() { return LabourNoteLike; } public JB_BudgetQuery setLabourNoteLike(String value) { this.LabourNoteLike = value; return this; } public ArrayList getLabourNoteBetween() { return LabourNoteBetween; } public JB_BudgetQuery setLabourNoteBetween(ArrayList value) { this.LabourNoteBetween = value; return this; } public ArrayList getLabourNoteIn() { return LabourNoteIn; } public JB_BudgetQuery setLabourNoteIn(ArrayList value) { this.LabourNoteIn = value; return this; } public BigDecimal getCashBookQty() { return CashBookQty; } public JB_BudgetQuery setCashBookQty(BigDecimal value) { this.CashBookQty = value; return this; } public BigDecimal getCashBookQtyGreaterThanOrEqualTo() { return CashBookQtyGreaterThanOrEqualTo; } public JB_BudgetQuery setCashBookQtyGreaterThanOrEqualTo(BigDecimal value) { this.CashBookQtyGreaterThanOrEqualTo = value; return this; } public BigDecimal getCashBookQtyGreaterThan() { return CashBookQtyGreaterThan; } public JB_BudgetQuery setCashBookQtyGreaterThan(BigDecimal value) { this.CashBookQtyGreaterThan = value; return this; } public BigDecimal getCashBookQtyLessThan() { return CashBookQtyLessThan; } public JB_BudgetQuery setCashBookQtyLessThan(BigDecimal value) { this.CashBookQtyLessThan = value; return this; } public BigDecimal getCashBookQtyLessThanOrEqualTo() { return CashBookQtyLessThanOrEqualTo; } public JB_BudgetQuery setCashBookQtyLessThanOrEqualTo(BigDecimal value) { this.CashBookQtyLessThanOrEqualTo = value; return this; } public BigDecimal getCashBookQtyNotEqualTo() { return CashBookQtyNotEqualTo; } public JB_BudgetQuery setCashBookQtyNotEqualTo(BigDecimal value) { this.CashBookQtyNotEqualTo = value; return this; } public ArrayList getCashBookQtyBetween() { return CashBookQtyBetween; } public JB_BudgetQuery setCashBookQtyBetween(ArrayList value) { this.CashBookQtyBetween = value; return this; } public ArrayList getCashBookQtyIn() { return CashBookQtyIn; } public JB_BudgetQuery setCashBookQtyIn(ArrayList value) { this.CashBookQtyIn = value; return this; } public BigDecimal getCashBookCost() { return CashBookCost; } public JB_BudgetQuery setCashBookCost(BigDecimal value) { this.CashBookCost = value; return this; } public BigDecimal getCashBookCostGreaterThanOrEqualTo() { return CashBookCostGreaterThanOrEqualTo; } public JB_BudgetQuery setCashBookCostGreaterThanOrEqualTo(BigDecimal value) { this.CashBookCostGreaterThanOrEqualTo = value; return this; } public BigDecimal getCashBookCostGreaterThan() { return CashBookCostGreaterThan; } public JB_BudgetQuery setCashBookCostGreaterThan(BigDecimal value) { this.CashBookCostGreaterThan = value; return this; } public BigDecimal getCashBookCostLessThan() { return CashBookCostLessThan; } public JB_BudgetQuery setCashBookCostLessThan(BigDecimal value) { this.CashBookCostLessThan = value; return this; } public BigDecimal getCashBookCostLessThanOrEqualTo() { return CashBookCostLessThanOrEqualTo; } public JB_BudgetQuery setCashBookCostLessThanOrEqualTo(BigDecimal value) { this.CashBookCostLessThanOrEqualTo = value; return this; } public BigDecimal getCashBookCostNotEqualTo() { return CashBookCostNotEqualTo; } public JB_BudgetQuery setCashBookCostNotEqualTo(BigDecimal value) { this.CashBookCostNotEqualTo = value; return this; } public ArrayList getCashBookCostBetween() { return CashBookCostBetween; } public JB_BudgetQuery setCashBookCostBetween(ArrayList value) { this.CashBookCostBetween = value; return this; } public ArrayList getCashBookCostIn() { return CashBookCostIn; } public JB_BudgetQuery setCashBookCostIn(ArrayList value) { this.CashBookCostIn = value; return this; } public BigDecimal getCashBookCharge() { return CashBookCharge; } public JB_BudgetQuery setCashBookCharge(BigDecimal value) { this.CashBookCharge = value; return this; } public BigDecimal getCashBookChargeGreaterThanOrEqualTo() { return CashBookChargeGreaterThanOrEqualTo; } public JB_BudgetQuery setCashBookChargeGreaterThanOrEqualTo(BigDecimal value) { this.CashBookChargeGreaterThanOrEqualTo = value; return this; } public BigDecimal getCashBookChargeGreaterThan() { return CashBookChargeGreaterThan; } public JB_BudgetQuery setCashBookChargeGreaterThan(BigDecimal value) { this.CashBookChargeGreaterThan = value; return this; } public BigDecimal getCashBookChargeLessThan() { return CashBookChargeLessThan; } public JB_BudgetQuery setCashBookChargeLessThan(BigDecimal value) { this.CashBookChargeLessThan = value; return this; } public BigDecimal getCashBookChargeLessThanOrEqualTo() { return CashBookChargeLessThanOrEqualTo; } public JB_BudgetQuery setCashBookChargeLessThanOrEqualTo(BigDecimal value) { this.CashBookChargeLessThanOrEqualTo = value; return this; } public BigDecimal getCashBookChargeNotEqualTo() { return CashBookChargeNotEqualTo; } public JB_BudgetQuery setCashBookChargeNotEqualTo(BigDecimal value) { this.CashBookChargeNotEqualTo = value; return this; } public ArrayList getCashBookChargeBetween() { return CashBookChargeBetween; } public JB_BudgetQuery setCashBookChargeBetween(ArrayList value) { this.CashBookChargeBetween = value; return this; } public ArrayList getCashBookChargeIn() { return CashBookChargeIn; } public JB_BudgetQuery setCashBookChargeIn(ArrayList value) { this.CashBookChargeIn = value; return this; } public String getCashBookNote() { return CashBookNote; } public JB_BudgetQuery setCashBookNote(String value) { this.CashBookNote = value; return this; } public String getCashBookNoteStartsWith() { return CashBookNoteStartsWith; } public JB_BudgetQuery setCashBookNoteStartsWith(String value) { this.CashBookNoteStartsWith = value; return this; } public String getCashBookNoteEndsWith() { return CashBookNoteEndsWith; } public JB_BudgetQuery setCashBookNoteEndsWith(String value) { this.CashBookNoteEndsWith = value; return this; } public String getCashBookNoteContains() { return CashBookNoteContains; } public JB_BudgetQuery setCashBookNoteContains(String value) { this.CashBookNoteContains = value; return this; } public String getCashBookNoteLike() { return CashBookNoteLike; } public JB_BudgetQuery setCashBookNoteLike(String value) { this.CashBookNoteLike = value; return this; } public ArrayList getCashBookNoteBetween() { return CashBookNoteBetween; } public JB_BudgetQuery setCashBookNoteBetween(ArrayList value) { this.CashBookNoteBetween = value; return this; } public ArrayList getCashBookNoteIn() { return CashBookNoteIn; } public JB_BudgetQuery setCashBookNoteIn(ArrayList value) { this.CashBookNoteIn = value; return this; } public BigDecimal getResourceQty() { return ResourceQty; } public JB_BudgetQuery setResourceQty(BigDecimal value) { this.ResourceQty = value; return this; } public BigDecimal getResourceQtyGreaterThanOrEqualTo() { return ResourceQtyGreaterThanOrEqualTo; } public JB_BudgetQuery setResourceQtyGreaterThanOrEqualTo(BigDecimal value) { this.ResourceQtyGreaterThanOrEqualTo = value; return this; } public BigDecimal getResourceQtyGreaterThan() { return ResourceQtyGreaterThan; } public JB_BudgetQuery setResourceQtyGreaterThan(BigDecimal value) { this.ResourceQtyGreaterThan = value; return this; } public BigDecimal getResourceQtyLessThan() { return ResourceQtyLessThan; } public JB_BudgetQuery setResourceQtyLessThan(BigDecimal value) { this.ResourceQtyLessThan = value; return this; } public BigDecimal getResourceQtyLessThanOrEqualTo() { return ResourceQtyLessThanOrEqualTo; } public JB_BudgetQuery setResourceQtyLessThanOrEqualTo(BigDecimal value) { this.ResourceQtyLessThanOrEqualTo = value; return this; } public BigDecimal getResourceQtyNotEqualTo() { return ResourceQtyNotEqualTo; } public JB_BudgetQuery setResourceQtyNotEqualTo(BigDecimal value) { this.ResourceQtyNotEqualTo = value; return this; } public ArrayList getResourceQtyBetween() { return ResourceQtyBetween; } public JB_BudgetQuery setResourceQtyBetween(ArrayList value) { this.ResourceQtyBetween = value; return this; } public ArrayList getResourceQtyIn() { return ResourceQtyIn; } public JB_BudgetQuery setResourceQtyIn(ArrayList value) { this.ResourceQtyIn = value; return this; } public BigDecimal getResourceCost() { return ResourceCost; } public JB_BudgetQuery setResourceCost(BigDecimal value) { this.ResourceCost = value; return this; } public BigDecimal getResourceCostGreaterThanOrEqualTo() { return ResourceCostGreaterThanOrEqualTo; } public JB_BudgetQuery setResourceCostGreaterThanOrEqualTo(BigDecimal value) { this.ResourceCostGreaterThanOrEqualTo = value; return this; } public BigDecimal getResourceCostGreaterThan() { return ResourceCostGreaterThan; } public JB_BudgetQuery setResourceCostGreaterThan(BigDecimal value) { this.ResourceCostGreaterThan = value; return this; } public BigDecimal getResourceCostLessThan() { return ResourceCostLessThan; } public JB_BudgetQuery setResourceCostLessThan(BigDecimal value) { this.ResourceCostLessThan = value; return this; } public BigDecimal getResourceCostLessThanOrEqualTo() { return ResourceCostLessThanOrEqualTo; } public JB_BudgetQuery setResourceCostLessThanOrEqualTo(BigDecimal value) { this.ResourceCostLessThanOrEqualTo = value; return this; } public BigDecimal getResourceCostNotEqualTo() { return ResourceCostNotEqualTo; } public JB_BudgetQuery setResourceCostNotEqualTo(BigDecimal value) { this.ResourceCostNotEqualTo = value; return this; } public ArrayList getResourceCostBetween() { return ResourceCostBetween; } public JB_BudgetQuery setResourceCostBetween(ArrayList value) { this.ResourceCostBetween = value; return this; } public ArrayList getResourceCostIn() { return ResourceCostIn; } public JB_BudgetQuery setResourceCostIn(ArrayList value) { this.ResourceCostIn = value; return this; } public BigDecimal getResourceCharge() { return ResourceCharge; } public JB_BudgetQuery setResourceCharge(BigDecimal value) { this.ResourceCharge = value; return this; } public BigDecimal getResourceChargeGreaterThanOrEqualTo() { return ResourceChargeGreaterThanOrEqualTo; } public JB_BudgetQuery setResourceChargeGreaterThanOrEqualTo(BigDecimal value) { this.ResourceChargeGreaterThanOrEqualTo = value; return this; } public BigDecimal getResourceChargeGreaterThan() { return ResourceChargeGreaterThan; } public JB_BudgetQuery setResourceChargeGreaterThan(BigDecimal value) { this.ResourceChargeGreaterThan = value; return this; } public BigDecimal getResourceChargeLessThan() { return ResourceChargeLessThan; } public JB_BudgetQuery setResourceChargeLessThan(BigDecimal value) { this.ResourceChargeLessThan = value; return this; } public BigDecimal getResourceChargeLessThanOrEqualTo() { return ResourceChargeLessThanOrEqualTo; } public JB_BudgetQuery setResourceChargeLessThanOrEqualTo(BigDecimal value) { this.ResourceChargeLessThanOrEqualTo = value; return this; } public BigDecimal getResourceChargeNotEqualTo() { return ResourceChargeNotEqualTo; } public JB_BudgetQuery setResourceChargeNotEqualTo(BigDecimal value) { this.ResourceChargeNotEqualTo = value; return this; } public ArrayList getResourceChargeBetween() { return ResourceChargeBetween; } public JB_BudgetQuery setResourceChargeBetween(ArrayList value) { this.ResourceChargeBetween = value; return this; } public ArrayList getResourceChargeIn() { return ResourceChargeIn; } public JB_BudgetQuery setResourceChargeIn(ArrayList value) { this.ResourceChargeIn = value; return this; } public String getResourceNote() { return ResourceNote; } public JB_BudgetQuery setResourceNote(String value) { this.ResourceNote = value; return this; } public String getResourceNoteStartsWith() { return ResourceNoteStartsWith; } public JB_BudgetQuery setResourceNoteStartsWith(String value) { this.ResourceNoteStartsWith = value; return this; } public String getResourceNoteEndsWith() { return ResourceNoteEndsWith; } public JB_BudgetQuery setResourceNoteEndsWith(String value) { this.ResourceNoteEndsWith = value; return this; } public String getResourceNoteContains() { return ResourceNoteContains; } public JB_BudgetQuery setResourceNoteContains(String value) { this.ResourceNoteContains = value; return this; } public String getResourceNoteLike() { return ResourceNoteLike; } public JB_BudgetQuery setResourceNoteLike(String value) { this.ResourceNoteLike = value; return this; } public ArrayList getResourceNoteBetween() { return ResourceNoteBetween; } public JB_BudgetQuery setResourceNoteBetween(ArrayList value) { this.ResourceNoteBetween = value; return this; } public ArrayList getResourceNoteIn() { return ResourceNoteIn; } public JB_BudgetQuery setResourceNoteIn(ArrayList value) { this.ResourceNoteIn = value; return this; } public BigDecimal getJournalQty() { return JournalQty; } public JB_BudgetQuery setJournalQty(BigDecimal value) { this.JournalQty = value; return this; } public BigDecimal getJournalQtyGreaterThanOrEqualTo() { return JournalQtyGreaterThanOrEqualTo; } public JB_BudgetQuery setJournalQtyGreaterThanOrEqualTo(BigDecimal value) { this.JournalQtyGreaterThanOrEqualTo = value; return this; } public BigDecimal getJournalQtyGreaterThan() { return JournalQtyGreaterThan; } public JB_BudgetQuery setJournalQtyGreaterThan(BigDecimal value) { this.JournalQtyGreaterThan = value; return this; } public BigDecimal getJournalQtyLessThan() { return JournalQtyLessThan; } public JB_BudgetQuery setJournalQtyLessThan(BigDecimal value) { this.JournalQtyLessThan = value; return this; } public BigDecimal getJournalQtyLessThanOrEqualTo() { return JournalQtyLessThanOrEqualTo; } public JB_BudgetQuery setJournalQtyLessThanOrEqualTo(BigDecimal value) { this.JournalQtyLessThanOrEqualTo = value; return this; } public BigDecimal getJournalQtyNotEqualTo() { return JournalQtyNotEqualTo; } public JB_BudgetQuery setJournalQtyNotEqualTo(BigDecimal value) { this.JournalQtyNotEqualTo = value; return this; } public ArrayList getJournalQtyBetween() { return JournalQtyBetween; } public JB_BudgetQuery setJournalQtyBetween(ArrayList value) { this.JournalQtyBetween = value; return this; } public ArrayList getJournalQtyIn() { return JournalQtyIn; } public JB_BudgetQuery setJournalQtyIn(ArrayList value) { this.JournalQtyIn = value; return this; } public BigDecimal getJournalCost() { return JournalCost; } public JB_BudgetQuery setJournalCost(BigDecimal value) { this.JournalCost = value; return this; } public BigDecimal getJournalCostGreaterThanOrEqualTo() { return JournalCostGreaterThanOrEqualTo; } public JB_BudgetQuery setJournalCostGreaterThanOrEqualTo(BigDecimal value) { this.JournalCostGreaterThanOrEqualTo = value; return this; } public BigDecimal getJournalCostGreaterThan() { return JournalCostGreaterThan; } public JB_BudgetQuery setJournalCostGreaterThan(BigDecimal value) { this.JournalCostGreaterThan = value; return this; } public BigDecimal getJournalCostLessThan() { return JournalCostLessThan; } public JB_BudgetQuery setJournalCostLessThan(BigDecimal value) { this.JournalCostLessThan = value; return this; } public BigDecimal getJournalCostLessThanOrEqualTo() { return JournalCostLessThanOrEqualTo; } public JB_BudgetQuery setJournalCostLessThanOrEqualTo(BigDecimal value) { this.JournalCostLessThanOrEqualTo = value; return this; } public BigDecimal getJournalCostNotEqualTo() { return JournalCostNotEqualTo; } public JB_BudgetQuery setJournalCostNotEqualTo(BigDecimal value) { this.JournalCostNotEqualTo = value; return this; } public ArrayList getJournalCostBetween() { return JournalCostBetween; } public JB_BudgetQuery setJournalCostBetween(ArrayList value) { this.JournalCostBetween = value; return this; } public ArrayList getJournalCostIn() { return JournalCostIn; } public JB_BudgetQuery setJournalCostIn(ArrayList value) { this.JournalCostIn = value; return this; } public BigDecimal getJournalCharge() { return JournalCharge; } public JB_BudgetQuery setJournalCharge(BigDecimal value) { this.JournalCharge = value; return this; } public BigDecimal getJournalChargeGreaterThanOrEqualTo() { return JournalChargeGreaterThanOrEqualTo; } public JB_BudgetQuery setJournalChargeGreaterThanOrEqualTo(BigDecimal value) { this.JournalChargeGreaterThanOrEqualTo = value; return this; } public BigDecimal getJournalChargeGreaterThan() { return JournalChargeGreaterThan; } public JB_BudgetQuery setJournalChargeGreaterThan(BigDecimal value) { this.JournalChargeGreaterThan = value; return this; } public BigDecimal getJournalChargeLessThan() { return JournalChargeLessThan; } public JB_BudgetQuery setJournalChargeLessThan(BigDecimal value) { this.JournalChargeLessThan = value; return this; } public BigDecimal getJournalChargeLessThanOrEqualTo() { return JournalChargeLessThanOrEqualTo; } public JB_BudgetQuery setJournalChargeLessThanOrEqualTo(BigDecimal value) { this.JournalChargeLessThanOrEqualTo = value; return this; } public BigDecimal getJournalChargeNotEqualTo() { return JournalChargeNotEqualTo; } public JB_BudgetQuery setJournalChargeNotEqualTo(BigDecimal value) { this.JournalChargeNotEqualTo = value; return this; } public ArrayList getJournalChargeBetween() { return JournalChargeBetween; } public JB_BudgetQuery setJournalChargeBetween(ArrayList value) { this.JournalChargeBetween = value; return this; } public ArrayList getJournalChargeIn() { return JournalChargeIn; } public JB_BudgetQuery setJournalChargeIn(ArrayList value) { this.JournalChargeIn = value; return this; } public String getJournalNote() { return JournalNote; } public JB_BudgetQuery setJournalNote(String value) { this.JournalNote = value; return this; } public String getJournalNoteStartsWith() { return JournalNoteStartsWith; } public JB_BudgetQuery setJournalNoteStartsWith(String value) { this.JournalNoteStartsWith = value; return this; } public String getJournalNoteEndsWith() { return JournalNoteEndsWith; } public JB_BudgetQuery setJournalNoteEndsWith(String value) { this.JournalNoteEndsWith = value; return this; } public String getJournalNoteContains() { return JournalNoteContains; } public JB_BudgetQuery setJournalNoteContains(String value) { this.JournalNoteContains = value; return this; } public String getJournalNoteLike() { return JournalNoteLike; } public JB_BudgetQuery setJournalNoteLike(String value) { this.JournalNoteLike = value; return this; } public ArrayList getJournalNoteBetween() { return JournalNoteBetween; } public JB_BudgetQuery setJournalNoteBetween(ArrayList value) { this.JournalNoteBetween = value; return this; } public ArrayList getJournalNoteIn() { return JournalNoteIn; } public JB_BudgetQuery setJournalNoteIn(ArrayList value) { this.JournalNoteIn = value; return this; } public BigDecimal getMaterialCreditorQty() { return MaterialCreditorQty; } public JB_BudgetQuery setMaterialCreditorQty(BigDecimal value) { this.MaterialCreditorQty = value; return this; } public BigDecimal getMaterialCreditorQtyGreaterThanOrEqualTo() { return MaterialCreditorQtyGreaterThanOrEqualTo; } public JB_BudgetQuery setMaterialCreditorQtyGreaterThanOrEqualTo(BigDecimal value) { this.MaterialCreditorQtyGreaterThanOrEqualTo = value; return this; } public BigDecimal getMaterialCreditorQtyGreaterThan() { return MaterialCreditorQtyGreaterThan; } public JB_BudgetQuery setMaterialCreditorQtyGreaterThan(BigDecimal value) { this.MaterialCreditorQtyGreaterThan = value; return this; } public BigDecimal getMaterialCreditorQtyLessThan() { return MaterialCreditorQtyLessThan; } public JB_BudgetQuery setMaterialCreditorQtyLessThan(BigDecimal value) { this.MaterialCreditorQtyLessThan = value; return this; } public BigDecimal getMaterialCreditorQtyLessThanOrEqualTo() { return MaterialCreditorQtyLessThanOrEqualTo; } public JB_BudgetQuery setMaterialCreditorQtyLessThanOrEqualTo(BigDecimal value) { this.MaterialCreditorQtyLessThanOrEqualTo = value; return this; } public BigDecimal getMaterialCreditorQtyNotEqualTo() { return MaterialCreditorQtyNotEqualTo; } public JB_BudgetQuery setMaterialCreditorQtyNotEqualTo(BigDecimal value) { this.MaterialCreditorQtyNotEqualTo = value; return this; } public ArrayList getMaterialCreditorQtyBetween() { return MaterialCreditorQtyBetween; } public JB_BudgetQuery setMaterialCreditorQtyBetween(ArrayList value) { this.MaterialCreditorQtyBetween = value; return this; } public ArrayList getMaterialCreditorQtyIn() { return MaterialCreditorQtyIn; } public JB_BudgetQuery setMaterialCreditorQtyIn(ArrayList value) { this.MaterialCreditorQtyIn = value; return this; } public BigDecimal getMaterialCreditorCost() { return MaterialCreditorCost; } public JB_BudgetQuery setMaterialCreditorCost(BigDecimal value) { this.MaterialCreditorCost = value; return this; } public BigDecimal getMaterialCreditorCostGreaterThanOrEqualTo() { return MaterialCreditorCostGreaterThanOrEqualTo; } public JB_BudgetQuery setMaterialCreditorCostGreaterThanOrEqualTo(BigDecimal value) { this.MaterialCreditorCostGreaterThanOrEqualTo = value; return this; } public BigDecimal getMaterialCreditorCostGreaterThan() { return MaterialCreditorCostGreaterThan; } public JB_BudgetQuery setMaterialCreditorCostGreaterThan(BigDecimal value) { this.MaterialCreditorCostGreaterThan = value; return this; } public BigDecimal getMaterialCreditorCostLessThan() { return MaterialCreditorCostLessThan; } public JB_BudgetQuery setMaterialCreditorCostLessThan(BigDecimal value) { this.MaterialCreditorCostLessThan = value; return this; } public BigDecimal getMaterialCreditorCostLessThanOrEqualTo() { return MaterialCreditorCostLessThanOrEqualTo; } public JB_BudgetQuery setMaterialCreditorCostLessThanOrEqualTo(BigDecimal value) { this.MaterialCreditorCostLessThanOrEqualTo = value; return this; } public BigDecimal getMaterialCreditorCostNotEqualTo() { return MaterialCreditorCostNotEqualTo; } public JB_BudgetQuery setMaterialCreditorCostNotEqualTo(BigDecimal value) { this.MaterialCreditorCostNotEqualTo = value; return this; } public ArrayList getMaterialCreditorCostBetween() { return MaterialCreditorCostBetween; } public JB_BudgetQuery setMaterialCreditorCostBetween(ArrayList value) { this.MaterialCreditorCostBetween = value; return this; } public ArrayList getMaterialCreditorCostIn() { return MaterialCreditorCostIn; } public JB_BudgetQuery setMaterialCreditorCostIn(ArrayList value) { this.MaterialCreditorCostIn = value; return this; } public BigDecimal getMaterialCreditorCharge() { return MaterialCreditorCharge; } public JB_BudgetQuery setMaterialCreditorCharge(BigDecimal value) { this.MaterialCreditorCharge = value; return this; } public BigDecimal getMaterialCreditorChargeGreaterThanOrEqualTo() { return MaterialCreditorChargeGreaterThanOrEqualTo; } public JB_BudgetQuery setMaterialCreditorChargeGreaterThanOrEqualTo(BigDecimal value) { this.MaterialCreditorChargeGreaterThanOrEqualTo = value; return this; } public BigDecimal getMaterialCreditorChargeGreaterThan() { return MaterialCreditorChargeGreaterThan; } public JB_BudgetQuery setMaterialCreditorChargeGreaterThan(BigDecimal value) { this.MaterialCreditorChargeGreaterThan = value; return this; } public BigDecimal getMaterialCreditorChargeLessThan() { return MaterialCreditorChargeLessThan; } public JB_BudgetQuery setMaterialCreditorChargeLessThan(BigDecimal value) { this.MaterialCreditorChargeLessThan = value; return this; } public BigDecimal getMaterialCreditorChargeLessThanOrEqualTo() { return MaterialCreditorChargeLessThanOrEqualTo; } public JB_BudgetQuery setMaterialCreditorChargeLessThanOrEqualTo(BigDecimal value) { this.MaterialCreditorChargeLessThanOrEqualTo = value; return this; } public BigDecimal getMaterialCreditorChargeNotEqualTo() { return MaterialCreditorChargeNotEqualTo; } public JB_BudgetQuery setMaterialCreditorChargeNotEqualTo(BigDecimal value) { this.MaterialCreditorChargeNotEqualTo = value; return this; } public ArrayList getMaterialCreditorChargeBetween() { return MaterialCreditorChargeBetween; } public JB_BudgetQuery setMaterialCreditorChargeBetween(ArrayList value) { this.MaterialCreditorChargeBetween = value; return this; } public ArrayList getMaterialCreditorChargeIn() { return MaterialCreditorChargeIn; } public JB_BudgetQuery setMaterialCreditorChargeIn(ArrayList value) { this.MaterialCreditorChargeIn = value; return this; } public String getMaterialCreditorNote() { return MaterialCreditorNote; } public JB_BudgetQuery setMaterialCreditorNote(String value) { this.MaterialCreditorNote = value; return this; } public String getMaterialCreditorNoteStartsWith() { return MaterialCreditorNoteStartsWith; } public JB_BudgetQuery setMaterialCreditorNoteStartsWith(String value) { this.MaterialCreditorNoteStartsWith = value; return this; } public String getMaterialCreditorNoteEndsWith() { return MaterialCreditorNoteEndsWith; } public JB_BudgetQuery setMaterialCreditorNoteEndsWith(String value) { this.MaterialCreditorNoteEndsWith = value; return this; } public String getMaterialCreditorNoteContains() { return MaterialCreditorNoteContains; } public JB_BudgetQuery setMaterialCreditorNoteContains(String value) { this.MaterialCreditorNoteContains = value; return this; } public String getMaterialCreditorNoteLike() { return MaterialCreditorNoteLike; } public JB_BudgetQuery setMaterialCreditorNoteLike(String value) { this.MaterialCreditorNoteLike = value; return this; } public ArrayList getMaterialCreditorNoteBetween() { return MaterialCreditorNoteBetween; } public JB_BudgetQuery setMaterialCreditorNoteBetween(ArrayList value) { this.MaterialCreditorNoteBetween = value; return this; } public ArrayList getMaterialCreditorNoteIn() { return MaterialCreditorNoteIn; } public JB_BudgetQuery setMaterialCreditorNoteIn(ArrayList value) { this.MaterialCreditorNoteIn = value; return this; } public ArrayList getRowHash() { return RowHash; } public JB_BudgetQuery setRowHash(ArrayList value) { this.RowHash = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class JB_ClassificationQuery extends QueryDb implements IReturn> { public String ClassificationID = null; public String ClassificationIDStartsWith = null; public String ClassificationIDEndsWith = null; public String ClassificationIDContains = null; public String ClassificationIDLike = null; public ArrayList ClassificationIDBetween = null; public ArrayList ClassificationIDIn = null; public String Description = null; public String DescriptionStartsWith = null; public String DescriptionEndsWith = null; public String DescriptionContains = null; public String DescriptionLike = null; public ArrayList DescriptionBetween = null; public ArrayList DescriptionIn = null; public Date LastSavedDateTime = null; public Date LastSavedDateTimeGreaterThanOrEqualTo = null; public Date LastSavedDateTimeGreaterThan = null; public Date LastSavedDateTimeLessThan = null; public Date LastSavedDateTimeLessThanOrEqualTo = null; public Date LastSavedDateTimeNotEqualTo = null; public ArrayList LastSavedDateTimeBetween = null; public ArrayList LastSavedDateTimeIn = null; public String WIPExpectedAsset = null; public String WIPExpectedAssetStartsWith = null; public String WIPExpectedAssetEndsWith = null; public String WIPExpectedAssetContains = null; public String WIPExpectedAssetLike = null; public ArrayList WIPExpectedAssetBetween = null; public ArrayList WIPExpectedAssetIn = null; public String WIPExpectedLiability = null; public String WIPExpectedLiabilityStartsWith = null; public String WIPExpectedLiabilityEndsWith = null; public String WIPExpectedLiabilityContains = null; public String WIPExpectedLiabilityLike = null; public ArrayList WIPExpectedLiabilityBetween = null; public ArrayList WIPExpectedLiabilityIn = null; public String WIPDeliveredAsett = null; public String WIPDeliveredAsettStartsWith = null; public String WIPDeliveredAsettEndsWith = null; public String WIPDeliveredAsettContains = null; public String WIPDeliveredAsettLike = null; public ArrayList WIPDeliveredAsettBetween = null; public ArrayList WIPDeliveredAsettIn = null; public String WIPDeliveredLiability = null; public String WIPDeliveredLiabilityStartsWith = null; public String WIPDeliveredLiabilityEndsWith = null; public String WIPDeliveredLiabilityContains = null; public String WIPDeliveredLiabilityLike = null; public ArrayList WIPDeliveredLiabilityBetween = null; public ArrayList WIPDeliveredLiabilityIn = null; public String WorkInProgress = null; public String WorkInProgressStartsWith = null; public String WorkInProgressEndsWith = null; public String WorkInProgressContains = null; public String WorkInProgressLike = null; public ArrayList WorkInProgressBetween = null; public ArrayList WorkInProgressIn = null; public String JobRevenue = null; public String JobRevenueStartsWith = null; public String JobRevenueEndsWith = null; public String JobRevenueContains = null; public String JobRevenueLike = null; public ArrayList JobRevenueBetween = null; public ArrayList JobRevenueIn = null; public String JobCostOfGoods = null; public String JobCostOfGoodsStartsWith = null; public String JobCostOfGoodsEndsWith = null; public String JobCostOfGoodsContains = null; public String JobCostOfGoodsLike = null; public ArrayList JobCostOfGoodsBetween = null; public ArrayList JobCostOfGoodsIn = null; public String Wages = null; public String WagesStartsWith = null; public String WagesEndsWith = null; public String WagesContains = null; public String WagesLike = null; public ArrayList WagesBetween = null; public ArrayList WagesIn = null; public String Resources = null; public String ResourcesStartsWith = null; public String ResourcesEndsWith = null; public String ResourcesContains = null; public String ResourcesLike = null; public ArrayList ResourcesBetween = null; public ArrayList ResourcesIn = null; public String WriteOn = null; public String WriteOnStartsWith = null; public String WriteOnEndsWith = null; public String WriteOnContains = null; public String WriteOnLike = null; public ArrayList WriteOnBetween = null; public ArrayList WriteOnIn = null; public String WriteOff = null; public String WriteOffStartsWith = null; public String WriteOffEndsWith = null; public String WriteOffContains = null; public String WriteOffLike = null; public ArrayList WriteOffBetween = null; public ArrayList WriteOffIn = null; public Integer ItemNo = null; public Integer ItemNoGreaterThanOrEqualTo = null; public Integer ItemNoGreaterThan = null; public Integer ItemNoLessThan = null; public Integer ItemNoLessThanOrEqualTo = null; public Integer ItemNoNotEqualTo = null; public ArrayList ItemNoBetween = null; public ArrayList ItemNoIn = null; public ArrayList RowHash = null; public String getClassificationID() { return ClassificationID; } public JB_ClassificationQuery setClassificationID(String value) { this.ClassificationID = value; return this; } public String getClassificationIDStartsWith() { return ClassificationIDStartsWith; } public JB_ClassificationQuery setClassificationIDStartsWith(String value) { this.ClassificationIDStartsWith = value; return this; } public String getClassificationIDEndsWith() { return ClassificationIDEndsWith; } public JB_ClassificationQuery setClassificationIDEndsWith(String value) { this.ClassificationIDEndsWith = value; return this; } public String getClassificationIDContains() { return ClassificationIDContains; } public JB_ClassificationQuery setClassificationIDContains(String value) { this.ClassificationIDContains = value; return this; } public String getClassificationIDLike() { return ClassificationIDLike; } public JB_ClassificationQuery setClassificationIDLike(String value) { this.ClassificationIDLike = value; return this; } public ArrayList getClassificationIDBetween() { return ClassificationIDBetween; } public JB_ClassificationQuery setClassificationIDBetween(ArrayList value) { this.ClassificationIDBetween = value; return this; } public ArrayList getClassificationIDIn() { return ClassificationIDIn; } public JB_ClassificationQuery setClassificationIDIn(ArrayList value) { this.ClassificationIDIn = value; return this; } public String getDescription() { return Description; } public JB_ClassificationQuery setDescription(String value) { this.Description = value; return this; } public String getDescriptionStartsWith() { return DescriptionStartsWith; } public JB_ClassificationQuery setDescriptionStartsWith(String value) { this.DescriptionStartsWith = value; return this; } public String getDescriptionEndsWith() { return DescriptionEndsWith; } public JB_ClassificationQuery setDescriptionEndsWith(String value) { this.DescriptionEndsWith = value; return this; } public String getDescriptionContains() { return DescriptionContains; } public JB_ClassificationQuery setDescriptionContains(String value) { this.DescriptionContains = value; return this; } public String getDescriptionLike() { return DescriptionLike; } public JB_ClassificationQuery setDescriptionLike(String value) { this.DescriptionLike = value; return this; } public ArrayList getDescriptionBetween() { return DescriptionBetween; } public JB_ClassificationQuery setDescriptionBetween(ArrayList value) { this.DescriptionBetween = value; return this; } public ArrayList getDescriptionIn() { return DescriptionIn; } public JB_ClassificationQuery setDescriptionIn(ArrayList value) { this.DescriptionIn = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public JB_ClassificationQuery setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getLastSavedDateTimeGreaterThanOrEqualTo() { return LastSavedDateTimeGreaterThanOrEqualTo; } public JB_ClassificationQuery setLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.LastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeGreaterThan() { return LastSavedDateTimeGreaterThan; } public JB_ClassificationQuery setLastSavedDateTimeGreaterThan(Date value) { this.LastSavedDateTimeGreaterThan = value; return this; } public Date getLastSavedDateTimeLessThan() { return LastSavedDateTimeLessThan; } public JB_ClassificationQuery setLastSavedDateTimeLessThan(Date value) { this.LastSavedDateTimeLessThan = value; return this; } public Date getLastSavedDateTimeLessThanOrEqualTo() { return LastSavedDateTimeLessThanOrEqualTo; } public JB_ClassificationQuery setLastSavedDateTimeLessThanOrEqualTo(Date value) { this.LastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeNotEqualTo() { return LastSavedDateTimeNotEqualTo; } public JB_ClassificationQuery setLastSavedDateTimeNotEqualTo(Date value) { this.LastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getLastSavedDateTimeBetween() { return LastSavedDateTimeBetween; } public JB_ClassificationQuery setLastSavedDateTimeBetween(ArrayList value) { this.LastSavedDateTimeBetween = value; return this; } public ArrayList getLastSavedDateTimeIn() { return LastSavedDateTimeIn; } public JB_ClassificationQuery setLastSavedDateTimeIn(ArrayList value) { this.LastSavedDateTimeIn = value; return this; } public String getWipExpectedAsset() { return WIPExpectedAsset; } public JB_ClassificationQuery setWipExpectedAsset(String value) { this.WIPExpectedAsset = value; return this; } public String getWipExpectedAssetStartsWith() { return WIPExpectedAssetStartsWith; } public JB_ClassificationQuery setWipExpectedAssetStartsWith(String value) { this.WIPExpectedAssetStartsWith = value; return this; } public String getWipExpectedAssetEndsWith() { return WIPExpectedAssetEndsWith; } public JB_ClassificationQuery setWipExpectedAssetEndsWith(String value) { this.WIPExpectedAssetEndsWith = value; return this; } public String getWipExpectedAssetContains() { return WIPExpectedAssetContains; } public JB_ClassificationQuery setWipExpectedAssetContains(String value) { this.WIPExpectedAssetContains = value; return this; } public String getWipExpectedAssetLike() { return WIPExpectedAssetLike; } public JB_ClassificationQuery setWipExpectedAssetLike(String value) { this.WIPExpectedAssetLike = value; return this; } public ArrayList getWipExpectedAssetBetween() { return WIPExpectedAssetBetween; } public JB_ClassificationQuery setWipExpectedAssetBetween(ArrayList value) { this.WIPExpectedAssetBetween = value; return this; } public ArrayList getWipExpectedAssetIn() { return WIPExpectedAssetIn; } public JB_ClassificationQuery setWipExpectedAssetIn(ArrayList value) { this.WIPExpectedAssetIn = value; return this; } public String getWipExpectedLiability() { return WIPExpectedLiability; } public JB_ClassificationQuery setWipExpectedLiability(String value) { this.WIPExpectedLiability = value; return this; } public String getWipExpectedLiabilityStartsWith() { return WIPExpectedLiabilityStartsWith; } public JB_ClassificationQuery setWipExpectedLiabilityStartsWith(String value) { this.WIPExpectedLiabilityStartsWith = value; return this; } public String getWipExpectedLiabilityEndsWith() { return WIPExpectedLiabilityEndsWith; } public JB_ClassificationQuery setWipExpectedLiabilityEndsWith(String value) { this.WIPExpectedLiabilityEndsWith = value; return this; } public String getWipExpectedLiabilityContains() { return WIPExpectedLiabilityContains; } public JB_ClassificationQuery setWipExpectedLiabilityContains(String value) { this.WIPExpectedLiabilityContains = value; return this; } public String getWipExpectedLiabilityLike() { return WIPExpectedLiabilityLike; } public JB_ClassificationQuery setWipExpectedLiabilityLike(String value) { this.WIPExpectedLiabilityLike = value; return this; } public ArrayList getWipExpectedLiabilityBetween() { return WIPExpectedLiabilityBetween; } public JB_ClassificationQuery setWipExpectedLiabilityBetween(ArrayList value) { this.WIPExpectedLiabilityBetween = value; return this; } public ArrayList getWipExpectedLiabilityIn() { return WIPExpectedLiabilityIn; } public JB_ClassificationQuery setWipExpectedLiabilityIn(ArrayList value) { this.WIPExpectedLiabilityIn = value; return this; } public String getWipDeliveredAsett() { return WIPDeliveredAsett; } public JB_ClassificationQuery setWipDeliveredAsett(String value) { this.WIPDeliveredAsett = value; return this; } public String getWipDeliveredAsettStartsWith() { return WIPDeliveredAsettStartsWith; } public JB_ClassificationQuery setWipDeliveredAsettStartsWith(String value) { this.WIPDeliveredAsettStartsWith = value; return this; } public String getWipDeliveredAsettEndsWith() { return WIPDeliveredAsettEndsWith; } public JB_ClassificationQuery setWipDeliveredAsettEndsWith(String value) { this.WIPDeliveredAsettEndsWith = value; return this; } public String getWipDeliveredAsettContains() { return WIPDeliveredAsettContains; } public JB_ClassificationQuery setWipDeliveredAsettContains(String value) { this.WIPDeliveredAsettContains = value; return this; } public String getWipDeliveredAsettLike() { return WIPDeliveredAsettLike; } public JB_ClassificationQuery setWipDeliveredAsettLike(String value) { this.WIPDeliveredAsettLike = value; return this; } public ArrayList getWipDeliveredAsettBetween() { return WIPDeliveredAsettBetween; } public JB_ClassificationQuery setWipDeliveredAsettBetween(ArrayList value) { this.WIPDeliveredAsettBetween = value; return this; } public ArrayList getWipDeliveredAsettIn() { return WIPDeliveredAsettIn; } public JB_ClassificationQuery setWipDeliveredAsettIn(ArrayList value) { this.WIPDeliveredAsettIn = value; return this; } public String getWipDeliveredLiability() { return WIPDeliveredLiability; } public JB_ClassificationQuery setWipDeliveredLiability(String value) { this.WIPDeliveredLiability = value; return this; } public String getWipDeliveredLiabilityStartsWith() { return WIPDeliveredLiabilityStartsWith; } public JB_ClassificationQuery setWipDeliveredLiabilityStartsWith(String value) { this.WIPDeliveredLiabilityStartsWith = value; return this; } public String getWipDeliveredLiabilityEndsWith() { return WIPDeliveredLiabilityEndsWith; } public JB_ClassificationQuery setWipDeliveredLiabilityEndsWith(String value) { this.WIPDeliveredLiabilityEndsWith = value; return this; } public String getWipDeliveredLiabilityContains() { return WIPDeliveredLiabilityContains; } public JB_ClassificationQuery setWipDeliveredLiabilityContains(String value) { this.WIPDeliveredLiabilityContains = value; return this; } public String getWipDeliveredLiabilityLike() { return WIPDeliveredLiabilityLike; } public JB_ClassificationQuery setWipDeliveredLiabilityLike(String value) { this.WIPDeliveredLiabilityLike = value; return this; } public ArrayList getWipDeliveredLiabilityBetween() { return WIPDeliveredLiabilityBetween; } public JB_ClassificationQuery setWipDeliveredLiabilityBetween(ArrayList value) { this.WIPDeliveredLiabilityBetween = value; return this; } public ArrayList getWipDeliveredLiabilityIn() { return WIPDeliveredLiabilityIn; } public JB_ClassificationQuery setWipDeliveredLiabilityIn(ArrayList value) { this.WIPDeliveredLiabilityIn = value; return this; } public String getWorkInProgress() { return WorkInProgress; } public JB_ClassificationQuery setWorkInProgress(String value) { this.WorkInProgress = value; return this; } public String getWorkInProgressStartsWith() { return WorkInProgressStartsWith; } public JB_ClassificationQuery setWorkInProgressStartsWith(String value) { this.WorkInProgressStartsWith = value; return this; } public String getWorkInProgressEndsWith() { return WorkInProgressEndsWith; } public JB_ClassificationQuery setWorkInProgressEndsWith(String value) { this.WorkInProgressEndsWith = value; return this; } public String getWorkInProgressContains() { return WorkInProgressContains; } public JB_ClassificationQuery setWorkInProgressContains(String value) { this.WorkInProgressContains = value; return this; } public String getWorkInProgressLike() { return WorkInProgressLike; } public JB_ClassificationQuery setWorkInProgressLike(String value) { this.WorkInProgressLike = value; return this; } public ArrayList getWorkInProgressBetween() { return WorkInProgressBetween; } public JB_ClassificationQuery setWorkInProgressBetween(ArrayList value) { this.WorkInProgressBetween = value; return this; } public ArrayList getWorkInProgressIn() { return WorkInProgressIn; } public JB_ClassificationQuery setWorkInProgressIn(ArrayList value) { this.WorkInProgressIn = value; return this; } public String getJobRevenue() { return JobRevenue; } public JB_ClassificationQuery setJobRevenue(String value) { this.JobRevenue = value; return this; } public String getJobRevenueStartsWith() { return JobRevenueStartsWith; } public JB_ClassificationQuery setJobRevenueStartsWith(String value) { this.JobRevenueStartsWith = value; return this; } public String getJobRevenueEndsWith() { return JobRevenueEndsWith; } public JB_ClassificationQuery setJobRevenueEndsWith(String value) { this.JobRevenueEndsWith = value; return this; } public String getJobRevenueContains() { return JobRevenueContains; } public JB_ClassificationQuery setJobRevenueContains(String value) { this.JobRevenueContains = value; return this; } public String getJobRevenueLike() { return JobRevenueLike; } public JB_ClassificationQuery setJobRevenueLike(String value) { this.JobRevenueLike = value; return this; } public ArrayList getJobRevenueBetween() { return JobRevenueBetween; } public JB_ClassificationQuery setJobRevenueBetween(ArrayList value) { this.JobRevenueBetween = value; return this; } public ArrayList getJobRevenueIn() { return JobRevenueIn; } public JB_ClassificationQuery setJobRevenueIn(ArrayList value) { this.JobRevenueIn = value; return this; } public String getJobCostOfGoods() { return JobCostOfGoods; } public JB_ClassificationQuery setJobCostOfGoods(String value) { this.JobCostOfGoods = value; return this; } public String getJobCostOfGoodsStartsWith() { return JobCostOfGoodsStartsWith; } public JB_ClassificationQuery setJobCostOfGoodsStartsWith(String value) { this.JobCostOfGoodsStartsWith = value; return this; } public String getJobCostOfGoodsEndsWith() { return JobCostOfGoodsEndsWith; } public JB_ClassificationQuery setJobCostOfGoodsEndsWith(String value) { this.JobCostOfGoodsEndsWith = value; return this; } public String getJobCostOfGoodsContains() { return JobCostOfGoodsContains; } public JB_ClassificationQuery setJobCostOfGoodsContains(String value) { this.JobCostOfGoodsContains = value; return this; } public String getJobCostOfGoodsLike() { return JobCostOfGoodsLike; } public JB_ClassificationQuery setJobCostOfGoodsLike(String value) { this.JobCostOfGoodsLike = value; return this; } public ArrayList getJobCostOfGoodsBetween() { return JobCostOfGoodsBetween; } public JB_ClassificationQuery setJobCostOfGoodsBetween(ArrayList value) { this.JobCostOfGoodsBetween = value; return this; } public ArrayList getJobCostOfGoodsIn() { return JobCostOfGoodsIn; } public JB_ClassificationQuery setJobCostOfGoodsIn(ArrayList value) { this.JobCostOfGoodsIn = value; return this; } public String getWages() { return Wages; } public JB_ClassificationQuery setWages(String value) { this.Wages = value; return this; } public String getWagesStartsWith() { return WagesStartsWith; } public JB_ClassificationQuery setWagesStartsWith(String value) { this.WagesStartsWith = value; return this; } public String getWagesEndsWith() { return WagesEndsWith; } public JB_ClassificationQuery setWagesEndsWith(String value) { this.WagesEndsWith = value; return this; } public String getWagesContains() { return WagesContains; } public JB_ClassificationQuery setWagesContains(String value) { this.WagesContains = value; return this; } public String getWagesLike() { return WagesLike; } public JB_ClassificationQuery setWagesLike(String value) { this.WagesLike = value; return this; } public ArrayList getWagesBetween() { return WagesBetween; } public JB_ClassificationQuery setWagesBetween(ArrayList value) { this.WagesBetween = value; return this; } public ArrayList getWagesIn() { return WagesIn; } public JB_ClassificationQuery setWagesIn(ArrayList value) { this.WagesIn = value; return this; } public String getResources() { return Resources; } public JB_ClassificationQuery setResources(String value) { this.Resources = value; return this; } public String getResourcesStartsWith() { return ResourcesStartsWith; } public JB_ClassificationQuery setResourcesStartsWith(String value) { this.ResourcesStartsWith = value; return this; } public String getResourcesEndsWith() { return ResourcesEndsWith; } public JB_ClassificationQuery setResourcesEndsWith(String value) { this.ResourcesEndsWith = value; return this; } public String getResourcesContains() { return ResourcesContains; } public JB_ClassificationQuery setResourcesContains(String value) { this.ResourcesContains = value; return this; } public String getResourcesLike() { return ResourcesLike; } public JB_ClassificationQuery setResourcesLike(String value) { this.ResourcesLike = value; return this; } public ArrayList getResourcesBetween() { return ResourcesBetween; } public JB_ClassificationQuery setResourcesBetween(ArrayList value) { this.ResourcesBetween = value; return this; } public ArrayList getResourcesIn() { return ResourcesIn; } public JB_ClassificationQuery setResourcesIn(ArrayList value) { this.ResourcesIn = value; return this; } public String getWriteOn() { return WriteOn; } public JB_ClassificationQuery setWriteOn(String value) { this.WriteOn = value; return this; } public String getWriteOnStartsWith() { return WriteOnStartsWith; } public JB_ClassificationQuery setWriteOnStartsWith(String value) { this.WriteOnStartsWith = value; return this; } public String getWriteOnEndsWith() { return WriteOnEndsWith; } public JB_ClassificationQuery setWriteOnEndsWith(String value) { this.WriteOnEndsWith = value; return this; } public String getWriteOnContains() { return WriteOnContains; } public JB_ClassificationQuery setWriteOnContains(String value) { this.WriteOnContains = value; return this; } public String getWriteOnLike() { return WriteOnLike; } public JB_ClassificationQuery setWriteOnLike(String value) { this.WriteOnLike = value; return this; } public ArrayList getWriteOnBetween() { return WriteOnBetween; } public JB_ClassificationQuery setWriteOnBetween(ArrayList value) { this.WriteOnBetween = value; return this; } public ArrayList getWriteOnIn() { return WriteOnIn; } public JB_ClassificationQuery setWriteOnIn(ArrayList value) { this.WriteOnIn = value; return this; } public String getWriteOff() { return WriteOff; } public JB_ClassificationQuery setWriteOff(String value) { this.WriteOff = value; return this; } public String getWriteOffStartsWith() { return WriteOffStartsWith; } public JB_ClassificationQuery setWriteOffStartsWith(String value) { this.WriteOffStartsWith = value; return this; } public String getWriteOffEndsWith() { return WriteOffEndsWith; } public JB_ClassificationQuery setWriteOffEndsWith(String value) { this.WriteOffEndsWith = value; return this; } public String getWriteOffContains() { return WriteOffContains; } public JB_ClassificationQuery setWriteOffContains(String value) { this.WriteOffContains = value; return this; } public String getWriteOffLike() { return WriteOffLike; } public JB_ClassificationQuery setWriteOffLike(String value) { this.WriteOffLike = value; return this; } public ArrayList getWriteOffBetween() { return WriteOffBetween; } public JB_ClassificationQuery setWriteOffBetween(ArrayList value) { this.WriteOffBetween = value; return this; } public ArrayList getWriteOffIn() { return WriteOffIn; } public JB_ClassificationQuery setWriteOffIn(ArrayList value) { this.WriteOffIn = value; return this; } public Integer getItemNo() { return ItemNo; } public JB_ClassificationQuery setItemNo(Integer value) { this.ItemNo = value; return this; } public Integer getItemNoGreaterThanOrEqualTo() { return ItemNoGreaterThanOrEqualTo; } public JB_ClassificationQuery setItemNoGreaterThanOrEqualTo(Integer value) { this.ItemNoGreaterThanOrEqualTo = value; return this; } public Integer getItemNoGreaterThan() { return ItemNoGreaterThan; } public JB_ClassificationQuery setItemNoGreaterThan(Integer value) { this.ItemNoGreaterThan = value; return this; } public Integer getItemNoLessThan() { return ItemNoLessThan; } public JB_ClassificationQuery setItemNoLessThan(Integer value) { this.ItemNoLessThan = value; return this; } public Integer getItemNoLessThanOrEqualTo() { return ItemNoLessThanOrEqualTo; } public JB_ClassificationQuery setItemNoLessThanOrEqualTo(Integer value) { this.ItemNoLessThanOrEqualTo = value; return this; } public Integer getItemNoNotEqualTo() { return ItemNoNotEqualTo; } public JB_ClassificationQuery setItemNoNotEqualTo(Integer value) { this.ItemNoNotEqualTo = value; return this; } public ArrayList getItemNoBetween() { return ItemNoBetween; } public JB_ClassificationQuery setItemNoBetween(ArrayList value) { this.ItemNoBetween = value; return this; } public ArrayList getItemNoIn() { return ItemNoIn; } public JB_ClassificationQuery setItemNoIn(ArrayList value) { this.ItemNoIn = value; return this; } public ArrayList getRowHash() { return RowHash; } public JB_ClassificationQuery setRowHash(ArrayList value) { this.RowHash = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class JB_CostCentresQuery extends QueryDb implements IReturn> { public String RecID = null; public String RecIDStartsWith = null; public String RecIDEndsWith = null; public String RecIDContains = null; public String RecIDLike = null; public ArrayList RecIDBetween = null; public ArrayList RecIDIn = null; public String CostCentreNo = null; public String CostCentreNoStartsWith = null; public String CostCentreNoEndsWith = null; public String CostCentreNoContains = null; public String CostCentreNoLike = null; public ArrayList CostCentreNoBetween = null; public ArrayList CostCentreNoIn = null; public String Name = null; public String NameStartsWith = null; public String NameEndsWith = null; public String NameContains = null; public String NameLike = null; public ArrayList NameBetween = null; public ArrayList NameIn = null; public String Description = null; public String DescriptionStartsWith = null; public String DescriptionEndsWith = null; public String DescriptionContains = null; public String DescriptionLike = null; public ArrayList DescriptionBetween = null; public ArrayList DescriptionIn = null; public Boolean IsEnabled = null; public ArrayList RowHash = null; public String getRecID() { return RecID; } public JB_CostCentresQuery setRecID(String value) { this.RecID = value; return this; } public String getRecIDStartsWith() { return RecIDStartsWith; } public JB_CostCentresQuery setRecIDStartsWith(String value) { this.RecIDStartsWith = value; return this; } public String getRecIDEndsWith() { return RecIDEndsWith; } public JB_CostCentresQuery setRecIDEndsWith(String value) { this.RecIDEndsWith = value; return this; } public String getRecIDContains() { return RecIDContains; } public JB_CostCentresQuery setRecIDContains(String value) { this.RecIDContains = value; return this; } public String getRecIDLike() { return RecIDLike; } public JB_CostCentresQuery setRecIDLike(String value) { this.RecIDLike = value; return this; } public ArrayList getRecIDBetween() { return RecIDBetween; } public JB_CostCentresQuery setRecIDBetween(ArrayList value) { this.RecIDBetween = value; return this; } public ArrayList getRecIDIn() { return RecIDIn; } public JB_CostCentresQuery setRecIDIn(ArrayList value) { this.RecIDIn = value; return this; } public String getCostCentreNo() { return CostCentreNo; } public JB_CostCentresQuery setCostCentreNo(String value) { this.CostCentreNo = value; return this; } public String getCostCentreNoStartsWith() { return CostCentreNoStartsWith; } public JB_CostCentresQuery setCostCentreNoStartsWith(String value) { this.CostCentreNoStartsWith = value; return this; } public String getCostCentreNoEndsWith() { return CostCentreNoEndsWith; } public JB_CostCentresQuery setCostCentreNoEndsWith(String value) { this.CostCentreNoEndsWith = value; return this; } public String getCostCentreNoContains() { return CostCentreNoContains; } public JB_CostCentresQuery setCostCentreNoContains(String value) { this.CostCentreNoContains = value; return this; } public String getCostCentreNoLike() { return CostCentreNoLike; } public JB_CostCentresQuery setCostCentreNoLike(String value) { this.CostCentreNoLike = value; return this; } public ArrayList getCostCentreNoBetween() { return CostCentreNoBetween; } public JB_CostCentresQuery setCostCentreNoBetween(ArrayList value) { this.CostCentreNoBetween = value; return this; } public ArrayList getCostCentreNoIn() { return CostCentreNoIn; } public JB_CostCentresQuery setCostCentreNoIn(ArrayList value) { this.CostCentreNoIn = value; return this; } public String getName() { return Name; } public JB_CostCentresQuery setName(String value) { this.Name = value; return this; } public String getNameStartsWith() { return NameStartsWith; } public JB_CostCentresQuery setNameStartsWith(String value) { this.NameStartsWith = value; return this; } public String getNameEndsWith() { return NameEndsWith; } public JB_CostCentresQuery setNameEndsWith(String value) { this.NameEndsWith = value; return this; } public String getNameContains() { return NameContains; } public JB_CostCentresQuery setNameContains(String value) { this.NameContains = value; return this; } public String getNameLike() { return NameLike; } public JB_CostCentresQuery setNameLike(String value) { this.NameLike = value; return this; } public ArrayList getNameBetween() { return NameBetween; } public JB_CostCentresQuery setNameBetween(ArrayList value) { this.NameBetween = value; return this; } public ArrayList getNameIn() { return NameIn; } public JB_CostCentresQuery setNameIn(ArrayList value) { this.NameIn = value; return this; } public String getDescription() { return Description; } public JB_CostCentresQuery setDescription(String value) { this.Description = value; return this; } public String getDescriptionStartsWith() { return DescriptionStartsWith; } public JB_CostCentresQuery setDescriptionStartsWith(String value) { this.DescriptionStartsWith = value; return this; } public String getDescriptionEndsWith() { return DescriptionEndsWith; } public JB_CostCentresQuery setDescriptionEndsWith(String value) { this.DescriptionEndsWith = value; return this; } public String getDescriptionContains() { return DescriptionContains; } public JB_CostCentresQuery setDescriptionContains(String value) { this.DescriptionContains = value; return this; } public String getDescriptionLike() { return DescriptionLike; } public JB_CostCentresQuery setDescriptionLike(String value) { this.DescriptionLike = value; return this; } public ArrayList getDescriptionBetween() { return DescriptionBetween; } public JB_CostCentresQuery setDescriptionBetween(ArrayList value) { this.DescriptionBetween = value; return this; } public ArrayList getDescriptionIn() { return DescriptionIn; } public JB_CostCentresQuery setDescriptionIn(ArrayList value) { this.DescriptionIn = value; return this; } public Boolean getIsEnabled() { return IsEnabled; } public JB_CostCentresQuery setIsEnabled(Boolean value) { this.IsEnabled = value; return this; } public ArrayList getRowHash() { return RowHash; } public JB_CostCentresQuery setRowHash(ArrayList value) { this.RowHash = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class JB_CostEntryQuery extends QueryDb implements IReturn> { public String RecID = null; public String RecIDStartsWith = null; public String RecIDEndsWith = null; public String RecIDContains = null; public String RecIDLike = null; public ArrayList RecIDBetween = null; public ArrayList RecIDIn = null; public String RecNum = null; public String RecNumStartsWith = null; public String RecNumEndsWith = null; public String RecNumContains = null; public String RecNumLike = null; public ArrayList RecNumBetween = null; public ArrayList RecNumIn = null; public String Reference = null; public String ReferenceStartsWith = null; public String ReferenceEndsWith = null; public String ReferenceContains = null; public String ReferenceLike = null; public ArrayList ReferenceBetween = null; public ArrayList ReferenceIn = null; public String Note = null; public String NoteStartsWith = null; public String NoteEndsWith = null; public String NoteContains = null; public String NoteLike = null; public ArrayList NoteBetween = null; public ArrayList NoteIn = null; public Short Status = null; public Short StatusGreaterThanOrEqualTo = null; public Short StatusGreaterThan = null; public Short StatusLessThan = null; public Short StatusLessThanOrEqualTo = null; public Short StatusNotEqualTo = null; public ArrayList StatusBetween = null; public ArrayList StatusIn = null; public String WarehouseID = null; public String WarehouseIDStartsWith = null; public String WarehouseIDEndsWith = null; public String WarehouseIDContains = null; public String WarehouseIDLike = null; public ArrayList WarehouseIDBetween = null; public ArrayList WarehouseIDIn = null; public Date LastSavedDateTime = null; public Date LastSavedDateTimeGreaterThanOrEqualTo = null; public Date LastSavedDateTimeGreaterThan = null; public Date LastSavedDateTimeLessThan = null; public Date LastSavedDateTimeLessThanOrEqualTo = null; public Date LastSavedDateTimeNotEqualTo = null; public ArrayList LastSavedDateTimeBetween = null; public ArrayList LastSavedDateTimeIn = null; public Short EntryType = null; public Short EntryTypeGreaterThanOrEqualTo = null; public Short EntryTypeGreaterThan = null; public Short EntryTypeLessThan = null; public Short EntryTypeLessThanOrEqualTo = null; public Short EntryTypeNotEqualTo = null; public ArrayList EntryTypeBetween = null; public ArrayList EntryTypeIn = null; public String JobID = null; public String JobIDStartsWith = null; public String JobIDEndsWith = null; public String JobIDContains = null; public String JobIDLike = null; public ArrayList JobIDBetween = null; public ArrayList JobIDIn = null; public String JrnlSetID = null; public String JrnlSetIDStartsWith = null; public String JrnlSetIDEndsWith = null; public String JrnlSetIDContains = null; public String JrnlSetIDLike = null; public ArrayList JrnlSetIDBetween = null; public ArrayList JrnlSetIDIn = null; public String getRecID() { return RecID; } public JB_CostEntryQuery setRecID(String value) { this.RecID = value; return this; } public String getRecIDStartsWith() { return RecIDStartsWith; } public JB_CostEntryQuery setRecIDStartsWith(String value) { this.RecIDStartsWith = value; return this; } public String getRecIDEndsWith() { return RecIDEndsWith; } public JB_CostEntryQuery setRecIDEndsWith(String value) { this.RecIDEndsWith = value; return this; } public String getRecIDContains() { return RecIDContains; } public JB_CostEntryQuery setRecIDContains(String value) { this.RecIDContains = value; return this; } public String getRecIDLike() { return RecIDLike; } public JB_CostEntryQuery setRecIDLike(String value) { this.RecIDLike = value; return this; } public ArrayList getRecIDBetween() { return RecIDBetween; } public JB_CostEntryQuery setRecIDBetween(ArrayList value) { this.RecIDBetween = value; return this; } public ArrayList getRecIDIn() { return RecIDIn; } public JB_CostEntryQuery setRecIDIn(ArrayList value) { this.RecIDIn = value; return this; } public String getRecNum() { return RecNum; } public JB_CostEntryQuery setRecNum(String value) { this.RecNum = value; return this; } public String getRecNumStartsWith() { return RecNumStartsWith; } public JB_CostEntryQuery setRecNumStartsWith(String value) { this.RecNumStartsWith = value; return this; } public String getRecNumEndsWith() { return RecNumEndsWith; } public JB_CostEntryQuery setRecNumEndsWith(String value) { this.RecNumEndsWith = value; return this; } public String getRecNumContains() { return RecNumContains; } public JB_CostEntryQuery setRecNumContains(String value) { this.RecNumContains = value; return this; } public String getRecNumLike() { return RecNumLike; } public JB_CostEntryQuery setRecNumLike(String value) { this.RecNumLike = value; return this; } public ArrayList getRecNumBetween() { return RecNumBetween; } public JB_CostEntryQuery setRecNumBetween(ArrayList value) { this.RecNumBetween = value; return this; } public ArrayList getRecNumIn() { return RecNumIn; } public JB_CostEntryQuery setRecNumIn(ArrayList value) { this.RecNumIn = value; return this; } public String getReference() { return Reference; } public JB_CostEntryQuery setReference(String value) { this.Reference = value; return this; } public String getReferenceStartsWith() { return ReferenceStartsWith; } public JB_CostEntryQuery setReferenceStartsWith(String value) { this.ReferenceStartsWith = value; return this; } public String getReferenceEndsWith() { return ReferenceEndsWith; } public JB_CostEntryQuery setReferenceEndsWith(String value) { this.ReferenceEndsWith = value; return this; } public String getReferenceContains() { return ReferenceContains; } public JB_CostEntryQuery setReferenceContains(String value) { this.ReferenceContains = value; return this; } public String getReferenceLike() { return ReferenceLike; } public JB_CostEntryQuery setReferenceLike(String value) { this.ReferenceLike = value; return this; } public ArrayList getReferenceBetween() { return ReferenceBetween; } public JB_CostEntryQuery setReferenceBetween(ArrayList value) { this.ReferenceBetween = value; return this; } public ArrayList getReferenceIn() { return ReferenceIn; } public JB_CostEntryQuery setReferenceIn(ArrayList value) { this.ReferenceIn = value; return this; } public String getNote() { return Note; } public JB_CostEntryQuery setNote(String value) { this.Note = value; return this; } public String getNoteStartsWith() { return NoteStartsWith; } public JB_CostEntryQuery setNoteStartsWith(String value) { this.NoteStartsWith = value; return this; } public String getNoteEndsWith() { return NoteEndsWith; } public JB_CostEntryQuery setNoteEndsWith(String value) { this.NoteEndsWith = value; return this; } public String getNoteContains() { return NoteContains; } public JB_CostEntryQuery setNoteContains(String value) { this.NoteContains = value; return this; } public String getNoteLike() { return NoteLike; } public JB_CostEntryQuery setNoteLike(String value) { this.NoteLike = value; return this; } public ArrayList getNoteBetween() { return NoteBetween; } public JB_CostEntryQuery setNoteBetween(ArrayList value) { this.NoteBetween = value; return this; } public ArrayList getNoteIn() { return NoteIn; } public JB_CostEntryQuery setNoteIn(ArrayList value) { this.NoteIn = value; return this; } public Short getStatus() { return Status; } public JB_CostEntryQuery setStatus(Short value) { this.Status = value; return this; } public Short getStatusGreaterThanOrEqualTo() { return StatusGreaterThanOrEqualTo; } public JB_CostEntryQuery setStatusGreaterThanOrEqualTo(Short value) { this.StatusGreaterThanOrEqualTo = value; return this; } public Short getStatusGreaterThan() { return StatusGreaterThan; } public JB_CostEntryQuery setStatusGreaterThan(Short value) { this.StatusGreaterThan = value; return this; } public Short getStatusLessThan() { return StatusLessThan; } public JB_CostEntryQuery setStatusLessThan(Short value) { this.StatusLessThan = value; return this; } public Short getStatusLessThanOrEqualTo() { return StatusLessThanOrEqualTo; } public JB_CostEntryQuery setStatusLessThanOrEqualTo(Short value) { this.StatusLessThanOrEqualTo = value; return this; } public Short getStatusNotEqualTo() { return StatusNotEqualTo; } public JB_CostEntryQuery setStatusNotEqualTo(Short value) { this.StatusNotEqualTo = value; return this; } public ArrayList getStatusBetween() { return StatusBetween; } public JB_CostEntryQuery setStatusBetween(ArrayList value) { this.StatusBetween = value; return this; } public ArrayList getStatusIn() { return StatusIn; } public JB_CostEntryQuery setStatusIn(ArrayList value) { this.StatusIn = value; return this; } public String getWarehouseID() { return WarehouseID; } public JB_CostEntryQuery setWarehouseID(String value) { this.WarehouseID = value; return this; } public String getWarehouseIDStartsWith() { return WarehouseIDStartsWith; } public JB_CostEntryQuery setWarehouseIDStartsWith(String value) { this.WarehouseIDStartsWith = value; return this; } public String getWarehouseIDEndsWith() { return WarehouseIDEndsWith; } public JB_CostEntryQuery setWarehouseIDEndsWith(String value) { this.WarehouseIDEndsWith = value; return this; } public String getWarehouseIDContains() { return WarehouseIDContains; } public JB_CostEntryQuery setWarehouseIDContains(String value) { this.WarehouseIDContains = value; return this; } public String getWarehouseIDLike() { return WarehouseIDLike; } public JB_CostEntryQuery setWarehouseIDLike(String value) { this.WarehouseIDLike = value; return this; } public ArrayList getWarehouseIDBetween() { return WarehouseIDBetween; } public JB_CostEntryQuery setWarehouseIDBetween(ArrayList value) { this.WarehouseIDBetween = value; return this; } public ArrayList getWarehouseIDIn() { return WarehouseIDIn; } public JB_CostEntryQuery setWarehouseIDIn(ArrayList value) { this.WarehouseIDIn = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public JB_CostEntryQuery setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getLastSavedDateTimeGreaterThanOrEqualTo() { return LastSavedDateTimeGreaterThanOrEqualTo; } public JB_CostEntryQuery setLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.LastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeGreaterThan() { return LastSavedDateTimeGreaterThan; } public JB_CostEntryQuery setLastSavedDateTimeGreaterThan(Date value) { this.LastSavedDateTimeGreaterThan = value; return this; } public Date getLastSavedDateTimeLessThan() { return LastSavedDateTimeLessThan; } public JB_CostEntryQuery setLastSavedDateTimeLessThan(Date value) { this.LastSavedDateTimeLessThan = value; return this; } public Date getLastSavedDateTimeLessThanOrEqualTo() { return LastSavedDateTimeLessThanOrEqualTo; } public JB_CostEntryQuery setLastSavedDateTimeLessThanOrEqualTo(Date value) { this.LastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeNotEqualTo() { return LastSavedDateTimeNotEqualTo; } public JB_CostEntryQuery setLastSavedDateTimeNotEqualTo(Date value) { this.LastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getLastSavedDateTimeBetween() { return LastSavedDateTimeBetween; } public JB_CostEntryQuery setLastSavedDateTimeBetween(ArrayList value) { this.LastSavedDateTimeBetween = value; return this; } public ArrayList getLastSavedDateTimeIn() { return LastSavedDateTimeIn; } public JB_CostEntryQuery setLastSavedDateTimeIn(ArrayList value) { this.LastSavedDateTimeIn = value; return this; } public Short getEntryType() { return EntryType; } public JB_CostEntryQuery setEntryType(Short value) { this.EntryType = value; return this; } public Short getEntryTypeGreaterThanOrEqualTo() { return EntryTypeGreaterThanOrEqualTo; } public JB_CostEntryQuery setEntryTypeGreaterThanOrEqualTo(Short value) { this.EntryTypeGreaterThanOrEqualTo = value; return this; } public Short getEntryTypeGreaterThan() { return EntryTypeGreaterThan; } public JB_CostEntryQuery setEntryTypeGreaterThan(Short value) { this.EntryTypeGreaterThan = value; return this; } public Short getEntryTypeLessThan() { return EntryTypeLessThan; } public JB_CostEntryQuery setEntryTypeLessThan(Short value) { this.EntryTypeLessThan = value; return this; } public Short getEntryTypeLessThanOrEqualTo() { return EntryTypeLessThanOrEqualTo; } public JB_CostEntryQuery setEntryTypeLessThanOrEqualTo(Short value) { this.EntryTypeLessThanOrEqualTo = value; return this; } public Short getEntryTypeNotEqualTo() { return EntryTypeNotEqualTo; } public JB_CostEntryQuery setEntryTypeNotEqualTo(Short value) { this.EntryTypeNotEqualTo = value; return this; } public ArrayList getEntryTypeBetween() { return EntryTypeBetween; } public JB_CostEntryQuery setEntryTypeBetween(ArrayList value) { this.EntryTypeBetween = value; return this; } public ArrayList getEntryTypeIn() { return EntryTypeIn; } public JB_CostEntryQuery setEntryTypeIn(ArrayList value) { this.EntryTypeIn = value; return this; } public String getJobID() { return JobID; } public JB_CostEntryQuery setJobID(String value) { this.JobID = value; return this; } public String getJobIDStartsWith() { return JobIDStartsWith; } public JB_CostEntryQuery setJobIDStartsWith(String value) { this.JobIDStartsWith = value; return this; } public String getJobIDEndsWith() { return JobIDEndsWith; } public JB_CostEntryQuery setJobIDEndsWith(String value) { this.JobIDEndsWith = value; return this; } public String getJobIDContains() { return JobIDContains; } public JB_CostEntryQuery setJobIDContains(String value) { this.JobIDContains = value; return this; } public String getJobIDLike() { return JobIDLike; } public JB_CostEntryQuery setJobIDLike(String value) { this.JobIDLike = value; return this; } public ArrayList getJobIDBetween() { return JobIDBetween; } public JB_CostEntryQuery setJobIDBetween(ArrayList value) { this.JobIDBetween = value; return this; } public ArrayList getJobIDIn() { return JobIDIn; } public JB_CostEntryQuery setJobIDIn(ArrayList value) { this.JobIDIn = value; return this; } public String getJrnlSetID() { return JrnlSetID; } public JB_CostEntryQuery setJrnlSetID(String value) { this.JrnlSetID = value; return this; } public String getJrnlSetIDStartsWith() { return JrnlSetIDStartsWith; } public JB_CostEntryQuery setJrnlSetIDStartsWith(String value) { this.JrnlSetIDStartsWith = value; return this; } public String getJrnlSetIDEndsWith() { return JrnlSetIDEndsWith; } public JB_CostEntryQuery setJrnlSetIDEndsWith(String value) { this.JrnlSetIDEndsWith = value; return this; } public String getJrnlSetIDContains() { return JrnlSetIDContains; } public JB_CostEntryQuery setJrnlSetIDContains(String value) { this.JrnlSetIDContains = value; return this; } public String getJrnlSetIDLike() { return JrnlSetIDLike; } public JB_CostEntryQuery setJrnlSetIDLike(String value) { this.JrnlSetIDLike = value; return this; } public ArrayList getJrnlSetIDBetween() { return JrnlSetIDBetween; } public JB_CostEntryQuery setJrnlSetIDBetween(ArrayList value) { this.JrnlSetIDBetween = value; return this; } public ArrayList getJrnlSetIDIn() { return JrnlSetIDIn; } public JB_CostEntryQuery setJrnlSetIDIn(ArrayList value) { this.JrnlSetIDIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class JB_CostEntryLinesQuery extends QueryDb implements IReturn> { public String RecID = null; public String RecIDStartsWith = null; public String RecIDEndsWith = null; public String RecIDContains = null; public String RecIDLike = null; public ArrayList RecIDBetween = null; public ArrayList RecIDIn = null; public String JobEntryID = null; public String JobEntryIDStartsWith = null; public String JobEntryIDEndsWith = null; public String JobEntryIDContains = null; public String JobEntryIDLike = null; public ArrayList JobEntryIDBetween = null; public ArrayList JobEntryIDIn = null; public String JobCode = null; public String JobCodeStartsWith = null; public String JobCodeEndsWith = null; public String JobCodeContains = null; public String JobCodeLike = null; public ArrayList JobCodeBetween = null; public ArrayList JobCodeIn = null; public String JobID = null; public String JobIDStartsWith = null; public String JobIDEndsWith = null; public String JobIDContains = null; public String JobIDLike = null; public ArrayList JobIDBetween = null; public ArrayList JobIDIn = null; public String CostCentreID = null; public String CostCentreIDStartsWith = null; public String CostCentreIDEndsWith = null; public String CostCentreIDContains = null; public String CostCentreIDLike = null; public ArrayList CostCentreIDBetween = null; public ArrayList CostCentreIDIn = null; public String StageID = null; public String StageIDStartsWith = null; public String StageIDEndsWith = null; public String StageIDContains = null; public String StageIDLike = null; public ArrayList StageIDBetween = null; public ArrayList StageIDIn = null; public BigDecimal Qty = null; public BigDecimal QtyGreaterThanOrEqualTo = null; public BigDecimal QtyGreaterThan = null; public BigDecimal QtyLessThan = null; public BigDecimal QtyLessThanOrEqualTo = null; public BigDecimal QtyNotEqualTo = null; public ArrayList QtyBetween = null; public ArrayList QtyIn = null; public BigDecimal UnitCost = null; public BigDecimal UnitCostGreaterThanOrEqualTo = null; public BigDecimal UnitCostGreaterThan = null; public BigDecimal UnitCostLessThan = null; public BigDecimal UnitCostLessThanOrEqualTo = null; public BigDecimal UnitCostNotEqualTo = null; public ArrayList UnitCostBetween = null; public ArrayList UnitCostIn = null; public BigDecimal UnitCharge = null; public BigDecimal UnitChargeGreaterThanOrEqualTo = null; public BigDecimal UnitChargeGreaterThan = null; public BigDecimal UnitChargeLessThan = null; public BigDecimal UnitChargeLessThanOrEqualTo = null; public BigDecimal UnitChargeNotEqualTo = null; public ArrayList UnitChargeBetween = null; public ArrayList UnitChargeIn = null; public BigDecimal MarkUp = null; public BigDecimal MarkUpGreaterThanOrEqualTo = null; public BigDecimal MarkUpGreaterThan = null; public BigDecimal MarkUpLessThan = null; public BigDecimal MarkUpLessThanOrEqualTo = null; public BigDecimal MarkUpNotEqualTo = null; public ArrayList MarkUpBetween = null; public ArrayList MarkUpIn = null; public String ComponentID = null; public String ComponentIDStartsWith = null; public String ComponentIDEndsWith = null; public String ComponentIDContains = null; public String ComponentIDLike = null; public ArrayList ComponentIDBetween = null; public ArrayList ComponentIDIn = null; public String ComponentNo = null; public String ComponentNoStartsWith = null; public String ComponentNoEndsWith = null; public String ComponentNoContains = null; public String ComponentNoLike = null; public ArrayList ComponentNoBetween = null; public ArrayList ComponentNoIn = null; public String ComponentDesc = null; public String ComponentDescStartsWith = null; public String ComponentDescEndsWith = null; public String ComponentDescContains = null; public String ComponentDescLike = null; public ArrayList ComponentDescBetween = null; public ArrayList ComponentDescIn = null; public Short ComponentType = null; public Short ComponentTypeGreaterThanOrEqualTo = null; public Short ComponentTypeGreaterThan = null; public Short ComponentTypeLessThan = null; public Short ComponentTypeLessThanOrEqualTo = null; public Short ComponentTypeNotEqualTo = null; public ArrayList ComponentTypeBetween = null; public ArrayList ComponentTypeIn = null; public String InvoiceNo = null; public String InvoiceNoStartsWith = null; public String InvoiceNoEndsWith = null; public String InvoiceNoContains = null; public String InvoiceNoLike = null; public ArrayList InvoiceNoBetween = null; public ArrayList InvoiceNoIn = null; public Short TranType = null; public Short TranTypeGreaterThanOrEqualTo = null; public Short TranTypeGreaterThan = null; public Short TranTypeLessThan = null; public Short TranTypeLessThanOrEqualTo = null; public Short TranTypeNotEqualTo = null; public ArrayList TranTypeBetween = null; public ArrayList TranTypeIn = null; public String TaxID = null; public String TaxIDStartsWith = null; public String TaxIDEndsWith = null; public String TaxIDContains = null; public String TaxIDLike = null; public ArrayList TaxIDBetween = null; public ArrayList TaxIDIn = null; public Short Status = null; public Short StatusGreaterThanOrEqualTo = null; public Short StatusGreaterThan = null; public Short StatusLessThan = null; public Short StatusLessThanOrEqualTo = null; public Short StatusNotEqualTo = null; public ArrayList StatusBetween = null; public ArrayList StatusIn = null; public String LinkID = null; public String LinkIDStartsWith = null; public String LinkIDEndsWith = null; public String LinkIDContains = null; public String LinkIDLike = null; public ArrayList LinkIDBetween = null; public ArrayList LinkIDIn = null; public Date LastSavedDateTime = null; public Date LastSavedDateTimeGreaterThanOrEqualTo = null; public Date LastSavedDateTimeGreaterThan = null; public Date LastSavedDateTimeLessThan = null; public Date LastSavedDateTimeLessThanOrEqualTo = null; public Date LastSavedDateTimeNotEqualTo = null; public ArrayList LastSavedDateTimeBetween = null; public ArrayList LastSavedDateTimeIn = null; public Date TranDate = null; public Date TranDateGreaterThanOrEqualTo = null; public Date TranDateGreaterThan = null; public Date TranDateLessThan = null; public Date TranDateLessThanOrEqualTo = null; public Date TranDateNotEqualTo = null; public ArrayList TranDateBetween = null; public ArrayList TranDateIn = null; public BigDecimal InvoicedAmount = null; public BigDecimal InvoicedAmountGreaterThanOrEqualTo = null; public BigDecimal InvoicedAmountGreaterThan = null; public BigDecimal InvoicedAmountLessThan = null; public BigDecimal InvoicedAmountLessThanOrEqualTo = null; public BigDecimal InvoicedAmountNotEqualTo = null; public ArrayList InvoicedAmountBetween = null; public ArrayList InvoicedAmountIn = null; public String Unit = null; public String UnitStartsWith = null; public String UnitEndsWith = null; public String UnitContains = null; public String UnitLike = null; public ArrayList UnitBetween = null; public ArrayList UnitIn = null; public String Remark = null; public String RemarkStartsWith = null; public String RemarkEndsWith = null; public String RemarkContains = null; public String RemarkLike = null; public ArrayList RemarkBetween = null; public ArrayList RemarkIn = null; public String ServiceNo = null; public String ServiceNoStartsWith = null; public String ServiceNoEndsWith = null; public String ServiceNoContains = null; public String ServiceNoLike = null; public ArrayList ServiceNoBetween = null; public ArrayList ServiceNoIn = null; public BigDecimal BackOrderQty = null; public BigDecimal BackOrderQtyGreaterThanOrEqualTo = null; public BigDecimal BackOrderQtyGreaterThan = null; public BigDecimal BackOrderQtyLessThan = null; public BigDecimal BackOrderQtyLessThanOrEqualTo = null; public BigDecimal BackOrderQtyNotEqualTo = null; public ArrayList BackOrderQtyBetween = null; public ArrayList BackOrderQtyIn = null; public BigDecimal QtyDelivered = null; public BigDecimal QtyDeliveredGreaterThanOrEqualTo = null; public BigDecimal QtyDeliveredGreaterThan = null; public BigDecimal QtyDeliveredLessThan = null; public BigDecimal QtyDeliveredLessThanOrEqualTo = null; public BigDecimal QtyDeliveredNotEqualTo = null; public ArrayList QtyDeliveredBetween = null; public ArrayList QtyDeliveredIn = null; public Short QtyDecimalPlaces = null; public Short QtyDecimalPlacesGreaterThanOrEqualTo = null; public Short QtyDecimalPlacesGreaterThan = null; public Short QtyDecimalPlacesLessThan = null; public Short QtyDecimalPlacesLessThanOrEqualTo = null; public Short QtyDecimalPlacesNotEqualTo = null; public ArrayList QtyDecimalPlacesBetween = null; public ArrayList QtyDecimalPlacesIn = null; public String getRecID() { return RecID; } public JB_CostEntryLinesQuery setRecID(String value) { this.RecID = value; return this; } public String getRecIDStartsWith() { return RecIDStartsWith; } public JB_CostEntryLinesQuery setRecIDStartsWith(String value) { this.RecIDStartsWith = value; return this; } public String getRecIDEndsWith() { return RecIDEndsWith; } public JB_CostEntryLinesQuery setRecIDEndsWith(String value) { this.RecIDEndsWith = value; return this; } public String getRecIDContains() { return RecIDContains; } public JB_CostEntryLinesQuery setRecIDContains(String value) { this.RecIDContains = value; return this; } public String getRecIDLike() { return RecIDLike; } public JB_CostEntryLinesQuery setRecIDLike(String value) { this.RecIDLike = value; return this; } public ArrayList getRecIDBetween() { return RecIDBetween; } public JB_CostEntryLinesQuery setRecIDBetween(ArrayList value) { this.RecIDBetween = value; return this; } public ArrayList getRecIDIn() { return RecIDIn; } public JB_CostEntryLinesQuery setRecIDIn(ArrayList value) { this.RecIDIn = value; return this; } public String getJobEntryID() { return JobEntryID; } public JB_CostEntryLinesQuery setJobEntryID(String value) { this.JobEntryID = value; return this; } public String getJobEntryIDStartsWith() { return JobEntryIDStartsWith; } public JB_CostEntryLinesQuery setJobEntryIDStartsWith(String value) { this.JobEntryIDStartsWith = value; return this; } public String getJobEntryIDEndsWith() { return JobEntryIDEndsWith; } public JB_CostEntryLinesQuery setJobEntryIDEndsWith(String value) { this.JobEntryIDEndsWith = value; return this; } public String getJobEntryIDContains() { return JobEntryIDContains; } public JB_CostEntryLinesQuery setJobEntryIDContains(String value) { this.JobEntryIDContains = value; return this; } public String getJobEntryIDLike() { return JobEntryIDLike; } public JB_CostEntryLinesQuery setJobEntryIDLike(String value) { this.JobEntryIDLike = value; return this; } public ArrayList getJobEntryIDBetween() { return JobEntryIDBetween; } public JB_CostEntryLinesQuery setJobEntryIDBetween(ArrayList value) { this.JobEntryIDBetween = value; return this; } public ArrayList getJobEntryIDIn() { return JobEntryIDIn; } public JB_CostEntryLinesQuery setJobEntryIDIn(ArrayList value) { this.JobEntryIDIn = value; return this; } public String getJobCode() { return JobCode; } public JB_CostEntryLinesQuery setJobCode(String value) { this.JobCode = value; return this; } public String getJobCodeStartsWith() { return JobCodeStartsWith; } public JB_CostEntryLinesQuery setJobCodeStartsWith(String value) { this.JobCodeStartsWith = value; return this; } public String getJobCodeEndsWith() { return JobCodeEndsWith; } public JB_CostEntryLinesQuery setJobCodeEndsWith(String value) { this.JobCodeEndsWith = value; return this; } public String getJobCodeContains() { return JobCodeContains; } public JB_CostEntryLinesQuery setJobCodeContains(String value) { this.JobCodeContains = value; return this; } public String getJobCodeLike() { return JobCodeLike; } public JB_CostEntryLinesQuery setJobCodeLike(String value) { this.JobCodeLike = value; return this; } public ArrayList getJobCodeBetween() { return JobCodeBetween; } public JB_CostEntryLinesQuery setJobCodeBetween(ArrayList value) { this.JobCodeBetween = value; return this; } public ArrayList getJobCodeIn() { return JobCodeIn; } public JB_CostEntryLinesQuery setJobCodeIn(ArrayList value) { this.JobCodeIn = value; return this; } public String getJobID() { return JobID; } public JB_CostEntryLinesQuery setJobID(String value) { this.JobID = value; return this; } public String getJobIDStartsWith() { return JobIDStartsWith; } public JB_CostEntryLinesQuery setJobIDStartsWith(String value) { this.JobIDStartsWith = value; return this; } public String getJobIDEndsWith() { return JobIDEndsWith; } public JB_CostEntryLinesQuery setJobIDEndsWith(String value) { this.JobIDEndsWith = value; return this; } public String getJobIDContains() { return JobIDContains; } public JB_CostEntryLinesQuery setJobIDContains(String value) { this.JobIDContains = value; return this; } public String getJobIDLike() { return JobIDLike; } public JB_CostEntryLinesQuery setJobIDLike(String value) { this.JobIDLike = value; return this; } public ArrayList getJobIDBetween() { return JobIDBetween; } public JB_CostEntryLinesQuery setJobIDBetween(ArrayList value) { this.JobIDBetween = value; return this; } public ArrayList getJobIDIn() { return JobIDIn; } public JB_CostEntryLinesQuery setJobIDIn(ArrayList value) { this.JobIDIn = value; return this; } public String getCostCentreID() { return CostCentreID; } public JB_CostEntryLinesQuery setCostCentreID(String value) { this.CostCentreID = value; return this; } public String getCostCentreIDStartsWith() { return CostCentreIDStartsWith; } public JB_CostEntryLinesQuery setCostCentreIDStartsWith(String value) { this.CostCentreIDStartsWith = value; return this; } public String getCostCentreIDEndsWith() { return CostCentreIDEndsWith; } public JB_CostEntryLinesQuery setCostCentreIDEndsWith(String value) { this.CostCentreIDEndsWith = value; return this; } public String getCostCentreIDContains() { return CostCentreIDContains; } public JB_CostEntryLinesQuery setCostCentreIDContains(String value) { this.CostCentreIDContains = value; return this; } public String getCostCentreIDLike() { return CostCentreIDLike; } public JB_CostEntryLinesQuery setCostCentreIDLike(String value) { this.CostCentreIDLike = value; return this; } public ArrayList getCostCentreIDBetween() { return CostCentreIDBetween; } public JB_CostEntryLinesQuery setCostCentreIDBetween(ArrayList value) { this.CostCentreIDBetween = value; return this; } public ArrayList getCostCentreIDIn() { return CostCentreIDIn; } public JB_CostEntryLinesQuery setCostCentreIDIn(ArrayList value) { this.CostCentreIDIn = value; return this; } public String getStageID() { return StageID; } public JB_CostEntryLinesQuery setStageID(String value) { this.StageID = value; return this; } public String getStageIDStartsWith() { return StageIDStartsWith; } public JB_CostEntryLinesQuery setStageIDStartsWith(String value) { this.StageIDStartsWith = value; return this; } public String getStageIDEndsWith() { return StageIDEndsWith; } public JB_CostEntryLinesQuery setStageIDEndsWith(String value) { this.StageIDEndsWith = value; return this; } public String getStageIDContains() { return StageIDContains; } public JB_CostEntryLinesQuery setStageIDContains(String value) { this.StageIDContains = value; return this; } public String getStageIDLike() { return StageIDLike; } public JB_CostEntryLinesQuery setStageIDLike(String value) { this.StageIDLike = value; return this; } public ArrayList getStageIDBetween() { return StageIDBetween; } public JB_CostEntryLinesQuery setStageIDBetween(ArrayList value) { this.StageIDBetween = value; return this; } public ArrayList getStageIDIn() { return StageIDIn; } public JB_CostEntryLinesQuery setStageIDIn(ArrayList value) { this.StageIDIn = value; return this; } public BigDecimal getQty() { return Qty; } public JB_CostEntryLinesQuery setQty(BigDecimal value) { this.Qty = value; return this; } public BigDecimal getQtyGreaterThanOrEqualTo() { return QtyGreaterThanOrEqualTo; } public JB_CostEntryLinesQuery setQtyGreaterThanOrEqualTo(BigDecimal value) { this.QtyGreaterThanOrEqualTo = value; return this; } public BigDecimal getQtyGreaterThan() { return QtyGreaterThan; } public JB_CostEntryLinesQuery setQtyGreaterThan(BigDecimal value) { this.QtyGreaterThan = value; return this; } public BigDecimal getQtyLessThan() { return QtyLessThan; } public JB_CostEntryLinesQuery setQtyLessThan(BigDecimal value) { this.QtyLessThan = value; return this; } public BigDecimal getQtyLessThanOrEqualTo() { return QtyLessThanOrEqualTo; } public JB_CostEntryLinesQuery setQtyLessThanOrEqualTo(BigDecimal value) { this.QtyLessThanOrEqualTo = value; return this; } public BigDecimal getQtyNotEqualTo() { return QtyNotEqualTo; } public JB_CostEntryLinesQuery setQtyNotEqualTo(BigDecimal value) { this.QtyNotEqualTo = value; return this; } public ArrayList getQtyBetween() { return QtyBetween; } public JB_CostEntryLinesQuery setQtyBetween(ArrayList value) { this.QtyBetween = value; return this; } public ArrayList getQtyIn() { return QtyIn; } public JB_CostEntryLinesQuery setQtyIn(ArrayList value) { this.QtyIn = value; return this; } public BigDecimal getUnitCost() { return UnitCost; } public JB_CostEntryLinesQuery setUnitCost(BigDecimal value) { this.UnitCost = value; return this; } public BigDecimal getUnitCostGreaterThanOrEqualTo() { return UnitCostGreaterThanOrEqualTo; } public JB_CostEntryLinesQuery setUnitCostGreaterThanOrEqualTo(BigDecimal value) { this.UnitCostGreaterThanOrEqualTo = value; return this; } public BigDecimal getUnitCostGreaterThan() { return UnitCostGreaterThan; } public JB_CostEntryLinesQuery setUnitCostGreaterThan(BigDecimal value) { this.UnitCostGreaterThan = value; return this; } public BigDecimal getUnitCostLessThan() { return UnitCostLessThan; } public JB_CostEntryLinesQuery setUnitCostLessThan(BigDecimal value) { this.UnitCostLessThan = value; return this; } public BigDecimal getUnitCostLessThanOrEqualTo() { return UnitCostLessThanOrEqualTo; } public JB_CostEntryLinesQuery setUnitCostLessThanOrEqualTo(BigDecimal value) { this.UnitCostLessThanOrEqualTo = value; return this; } public BigDecimal getUnitCostNotEqualTo() { return UnitCostNotEqualTo; } public JB_CostEntryLinesQuery setUnitCostNotEqualTo(BigDecimal value) { this.UnitCostNotEqualTo = value; return this; } public ArrayList getUnitCostBetween() { return UnitCostBetween; } public JB_CostEntryLinesQuery setUnitCostBetween(ArrayList value) { this.UnitCostBetween = value; return this; } public ArrayList getUnitCostIn() { return UnitCostIn; } public JB_CostEntryLinesQuery setUnitCostIn(ArrayList value) { this.UnitCostIn = value; return this; } public BigDecimal getUnitCharge() { return UnitCharge; } public JB_CostEntryLinesQuery setUnitCharge(BigDecimal value) { this.UnitCharge = value; return this; } public BigDecimal getUnitChargeGreaterThanOrEqualTo() { return UnitChargeGreaterThanOrEqualTo; } public JB_CostEntryLinesQuery setUnitChargeGreaterThanOrEqualTo(BigDecimal value) { this.UnitChargeGreaterThanOrEqualTo = value; return this; } public BigDecimal getUnitChargeGreaterThan() { return UnitChargeGreaterThan; } public JB_CostEntryLinesQuery setUnitChargeGreaterThan(BigDecimal value) { this.UnitChargeGreaterThan = value; return this; } public BigDecimal getUnitChargeLessThan() { return UnitChargeLessThan; } public JB_CostEntryLinesQuery setUnitChargeLessThan(BigDecimal value) { this.UnitChargeLessThan = value; return this; } public BigDecimal getUnitChargeLessThanOrEqualTo() { return UnitChargeLessThanOrEqualTo; } public JB_CostEntryLinesQuery setUnitChargeLessThanOrEqualTo(BigDecimal value) { this.UnitChargeLessThanOrEqualTo = value; return this; } public BigDecimal getUnitChargeNotEqualTo() { return UnitChargeNotEqualTo; } public JB_CostEntryLinesQuery setUnitChargeNotEqualTo(BigDecimal value) { this.UnitChargeNotEqualTo = value; return this; } public ArrayList getUnitChargeBetween() { return UnitChargeBetween; } public JB_CostEntryLinesQuery setUnitChargeBetween(ArrayList value) { this.UnitChargeBetween = value; return this; } public ArrayList getUnitChargeIn() { return UnitChargeIn; } public JB_CostEntryLinesQuery setUnitChargeIn(ArrayList value) { this.UnitChargeIn = value; return this; } public BigDecimal getMarkUp() { return MarkUp; } public JB_CostEntryLinesQuery setMarkUp(BigDecimal value) { this.MarkUp = value; return this; } public BigDecimal getMarkUpGreaterThanOrEqualTo() { return MarkUpGreaterThanOrEqualTo; } public JB_CostEntryLinesQuery setMarkUpGreaterThanOrEqualTo(BigDecimal value) { this.MarkUpGreaterThanOrEqualTo = value; return this; } public BigDecimal getMarkUpGreaterThan() { return MarkUpGreaterThan; } public JB_CostEntryLinesQuery setMarkUpGreaterThan(BigDecimal value) { this.MarkUpGreaterThan = value; return this; } public BigDecimal getMarkUpLessThan() { return MarkUpLessThan; } public JB_CostEntryLinesQuery setMarkUpLessThan(BigDecimal value) { this.MarkUpLessThan = value; return this; } public BigDecimal getMarkUpLessThanOrEqualTo() { return MarkUpLessThanOrEqualTo; } public JB_CostEntryLinesQuery setMarkUpLessThanOrEqualTo(BigDecimal value) { this.MarkUpLessThanOrEqualTo = value; return this; } public BigDecimal getMarkUpNotEqualTo() { return MarkUpNotEqualTo; } public JB_CostEntryLinesQuery setMarkUpNotEqualTo(BigDecimal value) { this.MarkUpNotEqualTo = value; return this; } public ArrayList getMarkUpBetween() { return MarkUpBetween; } public JB_CostEntryLinesQuery setMarkUpBetween(ArrayList value) { this.MarkUpBetween = value; return this; } public ArrayList getMarkUpIn() { return MarkUpIn; } public JB_CostEntryLinesQuery setMarkUpIn(ArrayList value) { this.MarkUpIn = value; return this; } public String getComponentID() { return ComponentID; } public JB_CostEntryLinesQuery setComponentID(String value) { this.ComponentID = value; return this; } public String getComponentIDStartsWith() { return ComponentIDStartsWith; } public JB_CostEntryLinesQuery setComponentIDStartsWith(String value) { this.ComponentIDStartsWith = value; return this; } public String getComponentIDEndsWith() { return ComponentIDEndsWith; } public JB_CostEntryLinesQuery setComponentIDEndsWith(String value) { this.ComponentIDEndsWith = value; return this; } public String getComponentIDContains() { return ComponentIDContains; } public JB_CostEntryLinesQuery setComponentIDContains(String value) { this.ComponentIDContains = value; return this; } public String getComponentIDLike() { return ComponentIDLike; } public JB_CostEntryLinesQuery setComponentIDLike(String value) { this.ComponentIDLike = value; return this; } public ArrayList getComponentIDBetween() { return ComponentIDBetween; } public JB_CostEntryLinesQuery setComponentIDBetween(ArrayList value) { this.ComponentIDBetween = value; return this; } public ArrayList getComponentIDIn() { return ComponentIDIn; } public JB_CostEntryLinesQuery setComponentIDIn(ArrayList value) { this.ComponentIDIn = value; return this; } public String getComponentNo() { return ComponentNo; } public JB_CostEntryLinesQuery setComponentNo(String value) { this.ComponentNo = value; return this; } public String getComponentNoStartsWith() { return ComponentNoStartsWith; } public JB_CostEntryLinesQuery setComponentNoStartsWith(String value) { this.ComponentNoStartsWith = value; return this; } public String getComponentNoEndsWith() { return ComponentNoEndsWith; } public JB_CostEntryLinesQuery setComponentNoEndsWith(String value) { this.ComponentNoEndsWith = value; return this; } public String getComponentNoContains() { return ComponentNoContains; } public JB_CostEntryLinesQuery setComponentNoContains(String value) { this.ComponentNoContains = value; return this; } public String getComponentNoLike() { return ComponentNoLike; } public JB_CostEntryLinesQuery setComponentNoLike(String value) { this.ComponentNoLike = value; return this; } public ArrayList getComponentNoBetween() { return ComponentNoBetween; } public JB_CostEntryLinesQuery setComponentNoBetween(ArrayList value) { this.ComponentNoBetween = value; return this; } public ArrayList getComponentNoIn() { return ComponentNoIn; } public JB_CostEntryLinesQuery setComponentNoIn(ArrayList value) { this.ComponentNoIn = value; return this; } public String getComponentDesc() { return ComponentDesc; } public JB_CostEntryLinesQuery setComponentDesc(String value) { this.ComponentDesc = value; return this; } public String getComponentDescStartsWith() { return ComponentDescStartsWith; } public JB_CostEntryLinesQuery setComponentDescStartsWith(String value) { this.ComponentDescStartsWith = value; return this; } public String getComponentDescEndsWith() { return ComponentDescEndsWith; } public JB_CostEntryLinesQuery setComponentDescEndsWith(String value) { this.ComponentDescEndsWith = value; return this; } public String getComponentDescContains() { return ComponentDescContains; } public JB_CostEntryLinesQuery setComponentDescContains(String value) { this.ComponentDescContains = value; return this; } public String getComponentDescLike() { return ComponentDescLike; } public JB_CostEntryLinesQuery setComponentDescLike(String value) { this.ComponentDescLike = value; return this; } public ArrayList getComponentDescBetween() { return ComponentDescBetween; } public JB_CostEntryLinesQuery setComponentDescBetween(ArrayList value) { this.ComponentDescBetween = value; return this; } public ArrayList getComponentDescIn() { return ComponentDescIn; } public JB_CostEntryLinesQuery setComponentDescIn(ArrayList value) { this.ComponentDescIn = value; return this; } public Short getComponentType() { return ComponentType; } public JB_CostEntryLinesQuery setComponentType(Short value) { this.ComponentType = value; return this; } public Short getComponentTypeGreaterThanOrEqualTo() { return ComponentTypeGreaterThanOrEqualTo; } public JB_CostEntryLinesQuery setComponentTypeGreaterThanOrEqualTo(Short value) { this.ComponentTypeGreaterThanOrEqualTo = value; return this; } public Short getComponentTypeGreaterThan() { return ComponentTypeGreaterThan; } public JB_CostEntryLinesQuery setComponentTypeGreaterThan(Short value) { this.ComponentTypeGreaterThan = value; return this; } public Short getComponentTypeLessThan() { return ComponentTypeLessThan; } public JB_CostEntryLinesQuery setComponentTypeLessThan(Short value) { this.ComponentTypeLessThan = value; return this; } public Short getComponentTypeLessThanOrEqualTo() { return ComponentTypeLessThanOrEqualTo; } public JB_CostEntryLinesQuery setComponentTypeLessThanOrEqualTo(Short value) { this.ComponentTypeLessThanOrEqualTo = value; return this; } public Short getComponentTypeNotEqualTo() { return ComponentTypeNotEqualTo; } public JB_CostEntryLinesQuery setComponentTypeNotEqualTo(Short value) { this.ComponentTypeNotEqualTo = value; return this; } public ArrayList getComponentTypeBetween() { return ComponentTypeBetween; } public JB_CostEntryLinesQuery setComponentTypeBetween(ArrayList value) { this.ComponentTypeBetween = value; return this; } public ArrayList getComponentTypeIn() { return ComponentTypeIn; } public JB_CostEntryLinesQuery setComponentTypeIn(ArrayList value) { this.ComponentTypeIn = value; return this; } public String getInvoiceNo() { return InvoiceNo; } public JB_CostEntryLinesQuery setInvoiceNo(String value) { this.InvoiceNo = value; return this; } public String getInvoiceNoStartsWith() { return InvoiceNoStartsWith; } public JB_CostEntryLinesQuery setInvoiceNoStartsWith(String value) { this.InvoiceNoStartsWith = value; return this; } public String getInvoiceNoEndsWith() { return InvoiceNoEndsWith; } public JB_CostEntryLinesQuery setInvoiceNoEndsWith(String value) { this.InvoiceNoEndsWith = value; return this; } public String getInvoiceNoContains() { return InvoiceNoContains; } public JB_CostEntryLinesQuery setInvoiceNoContains(String value) { this.InvoiceNoContains = value; return this; } public String getInvoiceNoLike() { return InvoiceNoLike; } public JB_CostEntryLinesQuery setInvoiceNoLike(String value) { this.InvoiceNoLike = value; return this; } public ArrayList getInvoiceNoBetween() { return InvoiceNoBetween; } public JB_CostEntryLinesQuery setInvoiceNoBetween(ArrayList value) { this.InvoiceNoBetween = value; return this; } public ArrayList getInvoiceNoIn() { return InvoiceNoIn; } public JB_CostEntryLinesQuery setInvoiceNoIn(ArrayList value) { this.InvoiceNoIn = value; return this; } public Short getTranType() { return TranType; } public JB_CostEntryLinesQuery setTranType(Short value) { this.TranType = value; return this; } public Short getTranTypeGreaterThanOrEqualTo() { return TranTypeGreaterThanOrEqualTo; } public JB_CostEntryLinesQuery setTranTypeGreaterThanOrEqualTo(Short value) { this.TranTypeGreaterThanOrEqualTo = value; return this; } public Short getTranTypeGreaterThan() { return TranTypeGreaterThan; } public JB_CostEntryLinesQuery setTranTypeGreaterThan(Short value) { this.TranTypeGreaterThan = value; return this; } public Short getTranTypeLessThan() { return TranTypeLessThan; } public JB_CostEntryLinesQuery setTranTypeLessThan(Short value) { this.TranTypeLessThan = value; return this; } public Short getTranTypeLessThanOrEqualTo() { return TranTypeLessThanOrEqualTo; } public JB_CostEntryLinesQuery setTranTypeLessThanOrEqualTo(Short value) { this.TranTypeLessThanOrEqualTo = value; return this; } public Short getTranTypeNotEqualTo() { return TranTypeNotEqualTo; } public JB_CostEntryLinesQuery setTranTypeNotEqualTo(Short value) { this.TranTypeNotEqualTo = value; return this; } public ArrayList getTranTypeBetween() { return TranTypeBetween; } public JB_CostEntryLinesQuery setTranTypeBetween(ArrayList value) { this.TranTypeBetween = value; return this; } public ArrayList getTranTypeIn() { return TranTypeIn; } public JB_CostEntryLinesQuery setTranTypeIn(ArrayList value) { this.TranTypeIn = value; return this; } public String getTaxID() { return TaxID; } public JB_CostEntryLinesQuery setTaxID(String value) { this.TaxID = value; return this; } public String getTaxIDStartsWith() { return TaxIDStartsWith; } public JB_CostEntryLinesQuery setTaxIDStartsWith(String value) { this.TaxIDStartsWith = value; return this; } public String getTaxIDEndsWith() { return TaxIDEndsWith; } public JB_CostEntryLinesQuery setTaxIDEndsWith(String value) { this.TaxIDEndsWith = value; return this; } public String getTaxIDContains() { return TaxIDContains; } public JB_CostEntryLinesQuery setTaxIDContains(String value) { this.TaxIDContains = value; return this; } public String getTaxIDLike() { return TaxIDLike; } public JB_CostEntryLinesQuery setTaxIDLike(String value) { this.TaxIDLike = value; return this; } public ArrayList getTaxIDBetween() { return TaxIDBetween; } public JB_CostEntryLinesQuery setTaxIDBetween(ArrayList value) { this.TaxIDBetween = value; return this; } public ArrayList getTaxIDIn() { return TaxIDIn; } public JB_CostEntryLinesQuery setTaxIDIn(ArrayList value) { this.TaxIDIn = value; return this; } public Short getStatus() { return Status; } public JB_CostEntryLinesQuery setStatus(Short value) { this.Status = value; return this; } public Short getStatusGreaterThanOrEqualTo() { return StatusGreaterThanOrEqualTo; } public JB_CostEntryLinesQuery setStatusGreaterThanOrEqualTo(Short value) { this.StatusGreaterThanOrEqualTo = value; return this; } public Short getStatusGreaterThan() { return StatusGreaterThan; } public JB_CostEntryLinesQuery setStatusGreaterThan(Short value) { this.StatusGreaterThan = value; return this; } public Short getStatusLessThan() { return StatusLessThan; } public JB_CostEntryLinesQuery setStatusLessThan(Short value) { this.StatusLessThan = value; return this; } public Short getStatusLessThanOrEqualTo() { return StatusLessThanOrEqualTo; } public JB_CostEntryLinesQuery setStatusLessThanOrEqualTo(Short value) { this.StatusLessThanOrEqualTo = value; return this; } public Short getStatusNotEqualTo() { return StatusNotEqualTo; } public JB_CostEntryLinesQuery setStatusNotEqualTo(Short value) { this.StatusNotEqualTo = value; return this; } public ArrayList getStatusBetween() { return StatusBetween; } public JB_CostEntryLinesQuery setStatusBetween(ArrayList value) { this.StatusBetween = value; return this; } public ArrayList getStatusIn() { return StatusIn; } public JB_CostEntryLinesQuery setStatusIn(ArrayList value) { this.StatusIn = value; return this; } public String getLinkID() { return LinkID; } public JB_CostEntryLinesQuery setLinkID(String value) { this.LinkID = value; return this; } public String getLinkIDStartsWith() { return LinkIDStartsWith; } public JB_CostEntryLinesQuery setLinkIDStartsWith(String value) { this.LinkIDStartsWith = value; return this; } public String getLinkIDEndsWith() { return LinkIDEndsWith; } public JB_CostEntryLinesQuery setLinkIDEndsWith(String value) { this.LinkIDEndsWith = value; return this; } public String getLinkIDContains() { return LinkIDContains; } public JB_CostEntryLinesQuery setLinkIDContains(String value) { this.LinkIDContains = value; return this; } public String getLinkIDLike() { return LinkIDLike; } public JB_CostEntryLinesQuery setLinkIDLike(String value) { this.LinkIDLike = value; return this; } public ArrayList getLinkIDBetween() { return LinkIDBetween; } public JB_CostEntryLinesQuery setLinkIDBetween(ArrayList value) { this.LinkIDBetween = value; return this; } public ArrayList getLinkIDIn() { return LinkIDIn; } public JB_CostEntryLinesQuery setLinkIDIn(ArrayList value) { this.LinkIDIn = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public JB_CostEntryLinesQuery setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getLastSavedDateTimeGreaterThanOrEqualTo() { return LastSavedDateTimeGreaterThanOrEqualTo; } public JB_CostEntryLinesQuery setLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.LastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeGreaterThan() { return LastSavedDateTimeGreaterThan; } public JB_CostEntryLinesQuery setLastSavedDateTimeGreaterThan(Date value) { this.LastSavedDateTimeGreaterThan = value; return this; } public Date getLastSavedDateTimeLessThan() { return LastSavedDateTimeLessThan; } public JB_CostEntryLinesQuery setLastSavedDateTimeLessThan(Date value) { this.LastSavedDateTimeLessThan = value; return this; } public Date getLastSavedDateTimeLessThanOrEqualTo() { return LastSavedDateTimeLessThanOrEqualTo; } public JB_CostEntryLinesQuery setLastSavedDateTimeLessThanOrEqualTo(Date value) { this.LastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeNotEqualTo() { return LastSavedDateTimeNotEqualTo; } public JB_CostEntryLinesQuery setLastSavedDateTimeNotEqualTo(Date value) { this.LastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getLastSavedDateTimeBetween() { return LastSavedDateTimeBetween; } public JB_CostEntryLinesQuery setLastSavedDateTimeBetween(ArrayList value) { this.LastSavedDateTimeBetween = value; return this; } public ArrayList getLastSavedDateTimeIn() { return LastSavedDateTimeIn; } public JB_CostEntryLinesQuery setLastSavedDateTimeIn(ArrayList value) { this.LastSavedDateTimeIn = value; return this; } public Date getTranDate() { return TranDate; } public JB_CostEntryLinesQuery setTranDate(Date value) { this.TranDate = value; return this; } public Date getTranDateGreaterThanOrEqualTo() { return TranDateGreaterThanOrEqualTo; } public JB_CostEntryLinesQuery setTranDateGreaterThanOrEqualTo(Date value) { this.TranDateGreaterThanOrEqualTo = value; return this; } public Date getTranDateGreaterThan() { return TranDateGreaterThan; } public JB_CostEntryLinesQuery setTranDateGreaterThan(Date value) { this.TranDateGreaterThan = value; return this; } public Date getTranDateLessThan() { return TranDateLessThan; } public JB_CostEntryLinesQuery setTranDateLessThan(Date value) { this.TranDateLessThan = value; return this; } public Date getTranDateLessThanOrEqualTo() { return TranDateLessThanOrEqualTo; } public JB_CostEntryLinesQuery setTranDateLessThanOrEqualTo(Date value) { this.TranDateLessThanOrEqualTo = value; return this; } public Date getTranDateNotEqualTo() { return TranDateNotEqualTo; } public JB_CostEntryLinesQuery setTranDateNotEqualTo(Date value) { this.TranDateNotEqualTo = value; return this; } public ArrayList getTranDateBetween() { return TranDateBetween; } public JB_CostEntryLinesQuery setTranDateBetween(ArrayList value) { this.TranDateBetween = value; return this; } public ArrayList getTranDateIn() { return TranDateIn; } public JB_CostEntryLinesQuery setTranDateIn(ArrayList value) { this.TranDateIn = value; return this; } public BigDecimal getInvoicedAmount() { return InvoicedAmount; } public JB_CostEntryLinesQuery setInvoicedAmount(BigDecimal value) { this.InvoicedAmount = value; return this; } public BigDecimal getInvoicedAmountGreaterThanOrEqualTo() { return InvoicedAmountGreaterThanOrEqualTo; } public JB_CostEntryLinesQuery setInvoicedAmountGreaterThanOrEqualTo(BigDecimal value) { this.InvoicedAmountGreaterThanOrEqualTo = value; return this; } public BigDecimal getInvoicedAmountGreaterThan() { return InvoicedAmountGreaterThan; } public JB_CostEntryLinesQuery setInvoicedAmountGreaterThan(BigDecimal value) { this.InvoicedAmountGreaterThan = value; return this; } public BigDecimal getInvoicedAmountLessThan() { return InvoicedAmountLessThan; } public JB_CostEntryLinesQuery setInvoicedAmountLessThan(BigDecimal value) { this.InvoicedAmountLessThan = value; return this; } public BigDecimal getInvoicedAmountLessThanOrEqualTo() { return InvoicedAmountLessThanOrEqualTo; } public JB_CostEntryLinesQuery setInvoicedAmountLessThanOrEqualTo(BigDecimal value) { this.InvoicedAmountLessThanOrEqualTo = value; return this; } public BigDecimal getInvoicedAmountNotEqualTo() { return InvoicedAmountNotEqualTo; } public JB_CostEntryLinesQuery setInvoicedAmountNotEqualTo(BigDecimal value) { this.InvoicedAmountNotEqualTo = value; return this; } public ArrayList getInvoicedAmountBetween() { return InvoicedAmountBetween; } public JB_CostEntryLinesQuery setInvoicedAmountBetween(ArrayList value) { this.InvoicedAmountBetween = value; return this; } public ArrayList getInvoicedAmountIn() { return InvoicedAmountIn; } public JB_CostEntryLinesQuery setInvoicedAmountIn(ArrayList value) { this.InvoicedAmountIn = value; return this; } public String getUnit() { return Unit; } public JB_CostEntryLinesQuery setUnit(String value) { this.Unit = value; return this; } public String getUnitStartsWith() { return UnitStartsWith; } public JB_CostEntryLinesQuery setUnitStartsWith(String value) { this.UnitStartsWith = value; return this; } public String getUnitEndsWith() { return UnitEndsWith; } public JB_CostEntryLinesQuery setUnitEndsWith(String value) { this.UnitEndsWith = value; return this; } public String getUnitContains() { return UnitContains; } public JB_CostEntryLinesQuery setUnitContains(String value) { this.UnitContains = value; return this; } public String getUnitLike() { return UnitLike; } public JB_CostEntryLinesQuery setUnitLike(String value) { this.UnitLike = value; return this; } public ArrayList getUnitBetween() { return UnitBetween; } public JB_CostEntryLinesQuery setUnitBetween(ArrayList value) { this.UnitBetween = value; return this; } public ArrayList getUnitIn() { return UnitIn; } public JB_CostEntryLinesQuery setUnitIn(ArrayList value) { this.UnitIn = value; return this; } public String getRemark() { return Remark; } public JB_CostEntryLinesQuery setRemark(String value) { this.Remark = value; return this; } public String getRemarkStartsWith() { return RemarkStartsWith; } public JB_CostEntryLinesQuery setRemarkStartsWith(String value) { this.RemarkStartsWith = value; return this; } public String getRemarkEndsWith() { return RemarkEndsWith; } public JB_CostEntryLinesQuery setRemarkEndsWith(String value) { this.RemarkEndsWith = value; return this; } public String getRemarkContains() { return RemarkContains; } public JB_CostEntryLinesQuery setRemarkContains(String value) { this.RemarkContains = value; return this; } public String getRemarkLike() { return RemarkLike; } public JB_CostEntryLinesQuery setRemarkLike(String value) { this.RemarkLike = value; return this; } public ArrayList getRemarkBetween() { return RemarkBetween; } public JB_CostEntryLinesQuery setRemarkBetween(ArrayList value) { this.RemarkBetween = value; return this; } public ArrayList getRemarkIn() { return RemarkIn; } public JB_CostEntryLinesQuery setRemarkIn(ArrayList value) { this.RemarkIn = value; return this; } public String getServiceNo() { return ServiceNo; } public JB_CostEntryLinesQuery setServiceNo(String value) { this.ServiceNo = value; return this; } public String getServiceNoStartsWith() { return ServiceNoStartsWith; } public JB_CostEntryLinesQuery setServiceNoStartsWith(String value) { this.ServiceNoStartsWith = value; return this; } public String getServiceNoEndsWith() { return ServiceNoEndsWith; } public JB_CostEntryLinesQuery setServiceNoEndsWith(String value) { this.ServiceNoEndsWith = value; return this; } public String getServiceNoContains() { return ServiceNoContains; } public JB_CostEntryLinesQuery setServiceNoContains(String value) { this.ServiceNoContains = value; return this; } public String getServiceNoLike() { return ServiceNoLike; } public JB_CostEntryLinesQuery setServiceNoLike(String value) { this.ServiceNoLike = value; return this; } public ArrayList getServiceNoBetween() { return ServiceNoBetween; } public JB_CostEntryLinesQuery setServiceNoBetween(ArrayList value) { this.ServiceNoBetween = value; return this; } public ArrayList getServiceNoIn() { return ServiceNoIn; } public JB_CostEntryLinesQuery setServiceNoIn(ArrayList value) { this.ServiceNoIn = value; return this; } public BigDecimal getBackOrderQty() { return BackOrderQty; } public JB_CostEntryLinesQuery setBackOrderQty(BigDecimal value) { this.BackOrderQty = value; return this; } public BigDecimal getBackOrderQtyGreaterThanOrEqualTo() { return BackOrderQtyGreaterThanOrEqualTo; } public JB_CostEntryLinesQuery setBackOrderQtyGreaterThanOrEqualTo(BigDecimal value) { this.BackOrderQtyGreaterThanOrEqualTo = value; return this; } public BigDecimal getBackOrderQtyGreaterThan() { return BackOrderQtyGreaterThan; } public JB_CostEntryLinesQuery setBackOrderQtyGreaterThan(BigDecimal value) { this.BackOrderQtyGreaterThan = value; return this; } public BigDecimal getBackOrderQtyLessThan() { return BackOrderQtyLessThan; } public JB_CostEntryLinesQuery setBackOrderQtyLessThan(BigDecimal value) { this.BackOrderQtyLessThan = value; return this; } public BigDecimal getBackOrderQtyLessThanOrEqualTo() { return BackOrderQtyLessThanOrEqualTo; } public JB_CostEntryLinesQuery setBackOrderQtyLessThanOrEqualTo(BigDecimal value) { this.BackOrderQtyLessThanOrEqualTo = value; return this; } public BigDecimal getBackOrderQtyNotEqualTo() { return BackOrderQtyNotEqualTo; } public JB_CostEntryLinesQuery setBackOrderQtyNotEqualTo(BigDecimal value) { this.BackOrderQtyNotEqualTo = value; return this; } public ArrayList getBackOrderQtyBetween() { return BackOrderQtyBetween; } public JB_CostEntryLinesQuery setBackOrderQtyBetween(ArrayList value) { this.BackOrderQtyBetween = value; return this; } public ArrayList getBackOrderQtyIn() { return BackOrderQtyIn; } public JB_CostEntryLinesQuery setBackOrderQtyIn(ArrayList value) { this.BackOrderQtyIn = value; return this; } public BigDecimal getQtyDelivered() { return QtyDelivered; } public JB_CostEntryLinesQuery setQtyDelivered(BigDecimal value) { this.QtyDelivered = value; return this; } public BigDecimal getQtyDeliveredGreaterThanOrEqualTo() { return QtyDeliveredGreaterThanOrEqualTo; } public JB_CostEntryLinesQuery setQtyDeliveredGreaterThanOrEqualTo(BigDecimal value) { this.QtyDeliveredGreaterThanOrEqualTo = value; return this; } public BigDecimal getQtyDeliveredGreaterThan() { return QtyDeliveredGreaterThan; } public JB_CostEntryLinesQuery setQtyDeliveredGreaterThan(BigDecimal value) { this.QtyDeliveredGreaterThan = value; return this; } public BigDecimal getQtyDeliveredLessThan() { return QtyDeliveredLessThan; } public JB_CostEntryLinesQuery setQtyDeliveredLessThan(BigDecimal value) { this.QtyDeliveredLessThan = value; return this; } public BigDecimal getQtyDeliveredLessThanOrEqualTo() { return QtyDeliveredLessThanOrEqualTo; } public JB_CostEntryLinesQuery setQtyDeliveredLessThanOrEqualTo(BigDecimal value) { this.QtyDeliveredLessThanOrEqualTo = value; return this; } public BigDecimal getQtyDeliveredNotEqualTo() { return QtyDeliveredNotEqualTo; } public JB_CostEntryLinesQuery setQtyDeliveredNotEqualTo(BigDecimal value) { this.QtyDeliveredNotEqualTo = value; return this; } public ArrayList getQtyDeliveredBetween() { return QtyDeliveredBetween; } public JB_CostEntryLinesQuery setQtyDeliveredBetween(ArrayList value) { this.QtyDeliveredBetween = value; return this; } public ArrayList getQtyDeliveredIn() { return QtyDeliveredIn; } public JB_CostEntryLinesQuery setQtyDeliveredIn(ArrayList value) { this.QtyDeliveredIn = value; return this; } public Short getQtyDecimalPlaces() { return QtyDecimalPlaces; } public JB_CostEntryLinesQuery setQtyDecimalPlaces(Short value) { this.QtyDecimalPlaces = value; return this; } public Short getQtyDecimalPlacesGreaterThanOrEqualTo() { return QtyDecimalPlacesGreaterThanOrEqualTo; } public JB_CostEntryLinesQuery setQtyDecimalPlacesGreaterThanOrEqualTo(Short value) { this.QtyDecimalPlacesGreaterThanOrEqualTo = value; return this; } public Short getQtyDecimalPlacesGreaterThan() { return QtyDecimalPlacesGreaterThan; } public JB_CostEntryLinesQuery setQtyDecimalPlacesGreaterThan(Short value) { this.QtyDecimalPlacesGreaterThan = value; return this; } public Short getQtyDecimalPlacesLessThan() { return QtyDecimalPlacesLessThan; } public JB_CostEntryLinesQuery setQtyDecimalPlacesLessThan(Short value) { this.QtyDecimalPlacesLessThan = value; return this; } public Short getQtyDecimalPlacesLessThanOrEqualTo() { return QtyDecimalPlacesLessThanOrEqualTo; } public JB_CostEntryLinesQuery setQtyDecimalPlacesLessThanOrEqualTo(Short value) { this.QtyDecimalPlacesLessThanOrEqualTo = value; return this; } public Short getQtyDecimalPlacesNotEqualTo() { return QtyDecimalPlacesNotEqualTo; } public JB_CostEntryLinesQuery setQtyDecimalPlacesNotEqualTo(Short value) { this.QtyDecimalPlacesNotEqualTo = value; return this; } public ArrayList getQtyDecimalPlacesBetween() { return QtyDecimalPlacesBetween; } public JB_CostEntryLinesQuery setQtyDecimalPlacesBetween(ArrayList value) { this.QtyDecimalPlacesBetween = value; return this; } public ArrayList getQtyDecimalPlacesIn() { return QtyDecimalPlacesIn; } public JB_CostEntryLinesQuery setQtyDecimalPlacesIn(ArrayList value) { this.QtyDecimalPlacesIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class JB_CostLineDetailsQuery extends QueryDb implements IReturn> { public String DetailsLineID = null; public String DetailsLineIDStartsWith = null; public String DetailsLineIDEndsWith = null; public String DetailsLineIDContains = null; public String DetailsLineIDLike = null; public ArrayList DetailsLineIDBetween = null; public ArrayList DetailsLineIDIn = null; public String CostEntryLineID = null; public String CostEntryLineIDStartsWith = null; public String CostEntryLineIDEndsWith = null; public String CostEntryLineIDContains = null; public String CostEntryLineIDLike = null; public ArrayList CostEntryLineIDBetween = null; public ArrayList CostEntryLineIDIn = null; public String SOHID = null; public String SOHIDStartsWith = null; public String SOHIDEndsWith = null; public String SOHIDContains = null; public String SOHIDLike = null; public ArrayList SOHIDBetween = null; public ArrayList SOHIDIn = null; public BigDecimal Cost = null; public BigDecimal CostGreaterThanOrEqualTo = null; public BigDecimal CostGreaterThan = null; public BigDecimal CostLessThan = null; public BigDecimal CostLessThanOrEqualTo = null; public BigDecimal CostNotEqualTo = null; public ArrayList CostBetween = null; public ArrayList CostIn = null; public BigDecimal Quantity = null; public BigDecimal QuantityGreaterThanOrEqualTo = null; public BigDecimal QuantityGreaterThan = null; public BigDecimal QuantityLessThan = null; public BigDecimal QuantityLessThanOrEqualTo = null; public BigDecimal QuantityNotEqualTo = null; public ArrayList QuantityBetween = null; public ArrayList QuantityIn = null; public String SerialNo = null; public String SerialNoStartsWith = null; public String SerialNoEndsWith = null; public String SerialNoContains = null; public String SerialNoLike = null; public ArrayList SerialNoBetween = null; public ArrayList SerialNoIn = null; public Date ExpiryDate = null; public Date ExpiryDateGreaterThanOrEqualTo = null; public Date ExpiryDateGreaterThan = null; public Date ExpiryDateLessThan = null; public Date ExpiryDateLessThanOrEqualTo = null; public Date ExpiryDateNotEqualTo = null; public ArrayList ExpiryDateBetween = null; public ArrayList ExpiryDateIn = null; public String BinLocation = null; public String BinLocationStartsWith = null; public String BinLocationEndsWith = null; public String BinLocationContains = null; public String BinLocationLike = null; public ArrayList BinLocationBetween = null; public ArrayList BinLocationIn = null; public Date DateIn = null; public Date DateInGreaterThanOrEqualTo = null; public Date DateInGreaterThan = null; public Date DateInLessThan = null; public Date DateInLessThanOrEqualTo = null; public Date DateInNotEqualTo = null; public ArrayList DateInBetween = null; public ArrayList DateInIn = null; public Date DeliveredDate = null; public Date DeliveredDateGreaterThanOrEqualTo = null; public Date DeliveredDateGreaterThan = null; public Date DeliveredDateLessThan = null; public Date DeliveredDateLessThanOrEqualTo = null; public Date DeliveredDateNotEqualTo = null; public ArrayList DeliveredDateBetween = null; public ArrayList DeliveredDateIn = null; public String getDetailsLineID() { return DetailsLineID; } public JB_CostLineDetailsQuery setDetailsLineID(String value) { this.DetailsLineID = value; return this; } public String getDetailsLineIDStartsWith() { return DetailsLineIDStartsWith; } public JB_CostLineDetailsQuery setDetailsLineIDStartsWith(String value) { this.DetailsLineIDStartsWith = value; return this; } public String getDetailsLineIDEndsWith() { return DetailsLineIDEndsWith; } public JB_CostLineDetailsQuery setDetailsLineIDEndsWith(String value) { this.DetailsLineIDEndsWith = value; return this; } public String getDetailsLineIDContains() { return DetailsLineIDContains; } public JB_CostLineDetailsQuery setDetailsLineIDContains(String value) { this.DetailsLineIDContains = value; return this; } public String getDetailsLineIDLike() { return DetailsLineIDLike; } public JB_CostLineDetailsQuery setDetailsLineIDLike(String value) { this.DetailsLineIDLike = value; return this; } public ArrayList getDetailsLineIDBetween() { return DetailsLineIDBetween; } public JB_CostLineDetailsQuery setDetailsLineIDBetween(ArrayList value) { this.DetailsLineIDBetween = value; return this; } public ArrayList getDetailsLineIDIn() { return DetailsLineIDIn; } public JB_CostLineDetailsQuery setDetailsLineIDIn(ArrayList value) { this.DetailsLineIDIn = value; return this; } public String getCostEntryLineID() { return CostEntryLineID; } public JB_CostLineDetailsQuery setCostEntryLineID(String value) { this.CostEntryLineID = value; return this; } public String getCostEntryLineIDStartsWith() { return CostEntryLineIDStartsWith; } public JB_CostLineDetailsQuery setCostEntryLineIDStartsWith(String value) { this.CostEntryLineIDStartsWith = value; return this; } public String getCostEntryLineIDEndsWith() { return CostEntryLineIDEndsWith; } public JB_CostLineDetailsQuery setCostEntryLineIDEndsWith(String value) { this.CostEntryLineIDEndsWith = value; return this; } public String getCostEntryLineIDContains() { return CostEntryLineIDContains; } public JB_CostLineDetailsQuery setCostEntryLineIDContains(String value) { this.CostEntryLineIDContains = value; return this; } public String getCostEntryLineIDLike() { return CostEntryLineIDLike; } public JB_CostLineDetailsQuery setCostEntryLineIDLike(String value) { this.CostEntryLineIDLike = value; return this; } public ArrayList getCostEntryLineIDBetween() { return CostEntryLineIDBetween; } public JB_CostLineDetailsQuery setCostEntryLineIDBetween(ArrayList value) { this.CostEntryLineIDBetween = value; return this; } public ArrayList getCostEntryLineIDIn() { return CostEntryLineIDIn; } public JB_CostLineDetailsQuery setCostEntryLineIDIn(ArrayList value) { this.CostEntryLineIDIn = value; return this; } public String getSohid() { return SOHID; } public JB_CostLineDetailsQuery setSohid(String value) { this.SOHID = value; return this; } public String getSohidStartsWith() { return SOHIDStartsWith; } public JB_CostLineDetailsQuery setSohidStartsWith(String value) { this.SOHIDStartsWith = value; return this; } public String getSohidEndsWith() { return SOHIDEndsWith; } public JB_CostLineDetailsQuery setSohidEndsWith(String value) { this.SOHIDEndsWith = value; return this; } public String getSohidContains() { return SOHIDContains; } public JB_CostLineDetailsQuery setSohidContains(String value) { this.SOHIDContains = value; return this; } public String getSohidLike() { return SOHIDLike; } public JB_CostLineDetailsQuery setSohidLike(String value) { this.SOHIDLike = value; return this; } public ArrayList getSohidBetween() { return SOHIDBetween; } public JB_CostLineDetailsQuery setSohidBetween(ArrayList value) { this.SOHIDBetween = value; return this; } public ArrayList getSohidIn() { return SOHIDIn; } public JB_CostLineDetailsQuery setSohidIn(ArrayList value) { this.SOHIDIn = value; return this; } public BigDecimal getCost() { return Cost; } public JB_CostLineDetailsQuery setCost(BigDecimal value) { this.Cost = value; return this; } public BigDecimal getCostGreaterThanOrEqualTo() { return CostGreaterThanOrEqualTo; } public JB_CostLineDetailsQuery setCostGreaterThanOrEqualTo(BigDecimal value) { this.CostGreaterThanOrEqualTo = value; return this; } public BigDecimal getCostGreaterThan() { return CostGreaterThan; } public JB_CostLineDetailsQuery setCostGreaterThan(BigDecimal value) { this.CostGreaterThan = value; return this; } public BigDecimal getCostLessThan() { return CostLessThan; } public JB_CostLineDetailsQuery setCostLessThan(BigDecimal value) { this.CostLessThan = value; return this; } public BigDecimal getCostLessThanOrEqualTo() { return CostLessThanOrEqualTo; } public JB_CostLineDetailsQuery setCostLessThanOrEqualTo(BigDecimal value) { this.CostLessThanOrEqualTo = value; return this; } public BigDecimal getCostNotEqualTo() { return CostNotEqualTo; } public JB_CostLineDetailsQuery setCostNotEqualTo(BigDecimal value) { this.CostNotEqualTo = value; return this; } public ArrayList getCostBetween() { return CostBetween; } public JB_CostLineDetailsQuery setCostBetween(ArrayList value) { this.CostBetween = value; return this; } public ArrayList getCostIn() { return CostIn; } public JB_CostLineDetailsQuery setCostIn(ArrayList value) { this.CostIn = value; return this; } public BigDecimal getQuantity() { return Quantity; } public JB_CostLineDetailsQuery setQuantity(BigDecimal value) { this.Quantity = value; return this; } public BigDecimal getQuantityGreaterThanOrEqualTo() { return QuantityGreaterThanOrEqualTo; } public JB_CostLineDetailsQuery setQuantityGreaterThanOrEqualTo(BigDecimal value) { this.QuantityGreaterThanOrEqualTo = value; return this; } public BigDecimal getQuantityGreaterThan() { return QuantityGreaterThan; } public JB_CostLineDetailsQuery setQuantityGreaterThan(BigDecimal value) { this.QuantityGreaterThan = value; return this; } public BigDecimal getQuantityLessThan() { return QuantityLessThan; } public JB_CostLineDetailsQuery setQuantityLessThan(BigDecimal value) { this.QuantityLessThan = value; return this; } public BigDecimal getQuantityLessThanOrEqualTo() { return QuantityLessThanOrEqualTo; } public JB_CostLineDetailsQuery setQuantityLessThanOrEqualTo(BigDecimal value) { this.QuantityLessThanOrEqualTo = value; return this; } public BigDecimal getQuantityNotEqualTo() { return QuantityNotEqualTo; } public JB_CostLineDetailsQuery setQuantityNotEqualTo(BigDecimal value) { this.QuantityNotEqualTo = value; return this; } public ArrayList getQuantityBetween() { return QuantityBetween; } public JB_CostLineDetailsQuery setQuantityBetween(ArrayList value) { this.QuantityBetween = value; return this; } public ArrayList getQuantityIn() { return QuantityIn; } public JB_CostLineDetailsQuery setQuantityIn(ArrayList value) { this.QuantityIn = value; return this; } public String getSerialNo() { return SerialNo; } public JB_CostLineDetailsQuery setSerialNo(String value) { this.SerialNo = value; return this; } public String getSerialNoStartsWith() { return SerialNoStartsWith; } public JB_CostLineDetailsQuery setSerialNoStartsWith(String value) { this.SerialNoStartsWith = value; return this; } public String getSerialNoEndsWith() { return SerialNoEndsWith; } public JB_CostLineDetailsQuery setSerialNoEndsWith(String value) { this.SerialNoEndsWith = value; return this; } public String getSerialNoContains() { return SerialNoContains; } public JB_CostLineDetailsQuery setSerialNoContains(String value) { this.SerialNoContains = value; return this; } public String getSerialNoLike() { return SerialNoLike; } public JB_CostLineDetailsQuery setSerialNoLike(String value) { this.SerialNoLike = value; return this; } public ArrayList getSerialNoBetween() { return SerialNoBetween; } public JB_CostLineDetailsQuery setSerialNoBetween(ArrayList value) { this.SerialNoBetween = value; return this; } public ArrayList getSerialNoIn() { return SerialNoIn; } public JB_CostLineDetailsQuery setSerialNoIn(ArrayList value) { this.SerialNoIn = value; return this; } public Date getExpiryDate() { return ExpiryDate; } public JB_CostLineDetailsQuery setExpiryDate(Date value) { this.ExpiryDate = value; return this; } public Date getExpiryDateGreaterThanOrEqualTo() { return ExpiryDateGreaterThanOrEqualTo; } public JB_CostLineDetailsQuery setExpiryDateGreaterThanOrEqualTo(Date value) { this.ExpiryDateGreaterThanOrEqualTo = value; return this; } public Date getExpiryDateGreaterThan() { return ExpiryDateGreaterThan; } public JB_CostLineDetailsQuery setExpiryDateGreaterThan(Date value) { this.ExpiryDateGreaterThan = value; return this; } public Date getExpiryDateLessThan() { return ExpiryDateLessThan; } public JB_CostLineDetailsQuery setExpiryDateLessThan(Date value) { this.ExpiryDateLessThan = value; return this; } public Date getExpiryDateLessThanOrEqualTo() { return ExpiryDateLessThanOrEqualTo; } public JB_CostLineDetailsQuery setExpiryDateLessThanOrEqualTo(Date value) { this.ExpiryDateLessThanOrEqualTo = value; return this; } public Date getExpiryDateNotEqualTo() { return ExpiryDateNotEqualTo; } public JB_CostLineDetailsQuery setExpiryDateNotEqualTo(Date value) { this.ExpiryDateNotEqualTo = value; return this; } public ArrayList getExpiryDateBetween() { return ExpiryDateBetween; } public JB_CostLineDetailsQuery setExpiryDateBetween(ArrayList value) { this.ExpiryDateBetween = value; return this; } public ArrayList getExpiryDateIn() { return ExpiryDateIn; } public JB_CostLineDetailsQuery setExpiryDateIn(ArrayList value) { this.ExpiryDateIn = value; return this; } public String getBinLocation() { return BinLocation; } public JB_CostLineDetailsQuery setBinLocation(String value) { this.BinLocation = value; return this; } public String getBinLocationStartsWith() { return BinLocationStartsWith; } public JB_CostLineDetailsQuery setBinLocationStartsWith(String value) { this.BinLocationStartsWith = value; return this; } public String getBinLocationEndsWith() { return BinLocationEndsWith; } public JB_CostLineDetailsQuery setBinLocationEndsWith(String value) { this.BinLocationEndsWith = value; return this; } public String getBinLocationContains() { return BinLocationContains; } public JB_CostLineDetailsQuery setBinLocationContains(String value) { this.BinLocationContains = value; return this; } public String getBinLocationLike() { return BinLocationLike; } public JB_CostLineDetailsQuery setBinLocationLike(String value) { this.BinLocationLike = value; return this; } public ArrayList getBinLocationBetween() { return BinLocationBetween; } public JB_CostLineDetailsQuery setBinLocationBetween(ArrayList value) { this.BinLocationBetween = value; return this; } public ArrayList getBinLocationIn() { return BinLocationIn; } public JB_CostLineDetailsQuery setBinLocationIn(ArrayList value) { this.BinLocationIn = value; return this; } public Date getDateIn() { return DateIn; } public JB_CostLineDetailsQuery setDateIn(Date value) { this.DateIn = value; return this; } public Date getDateInGreaterThanOrEqualTo() { return DateInGreaterThanOrEqualTo; } public JB_CostLineDetailsQuery setDateInGreaterThanOrEqualTo(Date value) { this.DateInGreaterThanOrEqualTo = value; return this; } public Date getDateInGreaterThan() { return DateInGreaterThan; } public JB_CostLineDetailsQuery setDateInGreaterThan(Date value) { this.DateInGreaterThan = value; return this; } public Date getDateInLessThan() { return DateInLessThan; } public JB_CostLineDetailsQuery setDateInLessThan(Date value) { this.DateInLessThan = value; return this; } public Date getDateInLessThanOrEqualTo() { return DateInLessThanOrEqualTo; } public JB_CostLineDetailsQuery setDateInLessThanOrEqualTo(Date value) { this.DateInLessThanOrEqualTo = value; return this; } public Date getDateInNotEqualTo() { return DateInNotEqualTo; } public JB_CostLineDetailsQuery setDateInNotEqualTo(Date value) { this.DateInNotEqualTo = value; return this; } public ArrayList getDateInBetween() { return DateInBetween; } public JB_CostLineDetailsQuery setDateInBetween(ArrayList value) { this.DateInBetween = value; return this; } public ArrayList getDateInIn() { return DateInIn; } public JB_CostLineDetailsQuery setDateInIn(ArrayList value) { this.DateInIn = value; return this; } public Date getDeliveredDate() { return DeliveredDate; } public JB_CostLineDetailsQuery setDeliveredDate(Date value) { this.DeliveredDate = value; return this; } public Date getDeliveredDateGreaterThanOrEqualTo() { return DeliveredDateGreaterThanOrEqualTo; } public JB_CostLineDetailsQuery setDeliveredDateGreaterThanOrEqualTo(Date value) { this.DeliveredDateGreaterThanOrEqualTo = value; return this; } public Date getDeliveredDateGreaterThan() { return DeliveredDateGreaterThan; } public JB_CostLineDetailsQuery setDeliveredDateGreaterThan(Date value) { this.DeliveredDateGreaterThan = value; return this; } public Date getDeliveredDateLessThan() { return DeliveredDateLessThan; } public JB_CostLineDetailsQuery setDeliveredDateLessThan(Date value) { this.DeliveredDateLessThan = value; return this; } public Date getDeliveredDateLessThanOrEqualTo() { return DeliveredDateLessThanOrEqualTo; } public JB_CostLineDetailsQuery setDeliveredDateLessThanOrEqualTo(Date value) { this.DeliveredDateLessThanOrEqualTo = value; return this; } public Date getDeliveredDateNotEqualTo() { return DeliveredDateNotEqualTo; } public JB_CostLineDetailsQuery setDeliveredDateNotEqualTo(Date value) { this.DeliveredDateNotEqualTo = value; return this; } public ArrayList getDeliveredDateBetween() { return DeliveredDateBetween; } public JB_CostLineDetailsQuery setDeliveredDateBetween(ArrayList value) { this.DeliveredDateBetween = value; return this; } public ArrayList getDeliveredDateIn() { return DeliveredDateIn; } public JB_CostLineDetailsQuery setDeliveredDateIn(ArrayList value) { this.DeliveredDateIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class JB_CustomSettingsQuery extends QueryDb implements IReturn> { public String SettingID = null; public String SettingIDStartsWith = null; public String SettingIDEndsWith = null; public String SettingIDContains = null; public String SettingIDLike = null; public ArrayList SettingIDBetween = null; public ArrayList SettingIDIn = null; public Date LastSavedDateTime = null; public Date LastSavedDateTimeGreaterThanOrEqualTo = null; public Date LastSavedDateTimeGreaterThan = null; public Date LastSavedDateTimeLessThan = null; public Date LastSavedDateTimeLessThanOrEqualTo = null; public Date LastSavedDateTimeNotEqualTo = null; public ArrayList LastSavedDateTimeBetween = null; public ArrayList LastSavedDateTimeIn = null; public String SettingDescription = null; public String SettingDescriptionStartsWith = null; public String SettingDescriptionEndsWith = null; public String SettingDescriptionContains = null; public String SettingDescriptionLike = null; public ArrayList SettingDescriptionBetween = null; public ArrayList SettingDescriptionIn = null; public String SettingName = null; public String SettingNameStartsWith = null; public String SettingNameEndsWith = null; public String SettingNameContains = null; public String SettingNameLike = null; public ArrayList SettingNameBetween = null; public ArrayList SettingNameIn = null; public BigDecimal DisplayOrder = null; public BigDecimal DisplayOrderGreaterThanOrEqualTo = null; public BigDecimal DisplayOrderGreaterThan = null; public BigDecimal DisplayOrderLessThan = null; public BigDecimal DisplayOrderLessThanOrEqualTo = null; public BigDecimal DisplayOrderNotEqualTo = null; public ArrayList DisplayOrderBetween = null; public ArrayList DisplayOrderIn = null; public Short CellType = null; public Short CellTypeGreaterThanOrEqualTo = null; public Short CellTypeGreaterThan = null; public Short CellTypeLessThan = null; public Short CellTypeLessThanOrEqualTo = null; public Short CellTypeNotEqualTo = null; public ArrayList CellTypeBetween = null; public ArrayList CellTypeIn = null; public String ScriptFormatCell = null; public String ScriptFormatCellStartsWith = null; public String ScriptFormatCellEndsWith = null; public String ScriptFormatCellContains = null; public String ScriptFormatCellLike = null; public ArrayList ScriptFormatCellBetween = null; public ArrayList ScriptFormatCellIn = null; public String ScriptButtonClicked = null; public String ScriptButtonClickedStartsWith = null; public String ScriptButtonClickedEndsWith = null; public String ScriptButtonClickedContains = null; public String ScriptButtonClickedLike = null; public ArrayList ScriptButtonClickedBetween = null; public ArrayList ScriptButtonClickedIn = null; public String ScriptReadData = null; public String ScriptReadDataStartsWith = null; public String ScriptReadDataEndsWith = null; public String ScriptReadDataContains = null; public String ScriptReadDataLike = null; public ArrayList ScriptReadDataBetween = null; public ArrayList ScriptReadDataIn = null; public String GridHandlerCode = null; public String GridHandlerCodeStartsWith = null; public String GridHandlerCodeEndsWith = null; public String GridHandlerCodeContains = null; public String GridHandlerCodeLike = null; public ArrayList GridHandlerCodeBetween = null; public ArrayList GridHandlerCodeIn = null; public UUID SY_Plugin_RecID = null; public ArrayList SY_Plugin_RecIDIn = null; public String getSettingID() { return SettingID; } public JB_CustomSettingsQuery setSettingID(String value) { this.SettingID = value; return this; } public String getSettingIDStartsWith() { return SettingIDStartsWith; } public JB_CustomSettingsQuery setSettingIDStartsWith(String value) { this.SettingIDStartsWith = value; return this; } public String getSettingIDEndsWith() { return SettingIDEndsWith; } public JB_CustomSettingsQuery setSettingIDEndsWith(String value) { this.SettingIDEndsWith = value; return this; } public String getSettingIDContains() { return SettingIDContains; } public JB_CustomSettingsQuery setSettingIDContains(String value) { this.SettingIDContains = value; return this; } public String getSettingIDLike() { return SettingIDLike; } public JB_CustomSettingsQuery setSettingIDLike(String value) { this.SettingIDLike = value; return this; } public ArrayList getSettingIDBetween() { return SettingIDBetween; } public JB_CustomSettingsQuery setSettingIDBetween(ArrayList value) { this.SettingIDBetween = value; return this; } public ArrayList getSettingIDIn() { return SettingIDIn; } public JB_CustomSettingsQuery setSettingIDIn(ArrayList value) { this.SettingIDIn = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public JB_CustomSettingsQuery setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getLastSavedDateTimeGreaterThanOrEqualTo() { return LastSavedDateTimeGreaterThanOrEqualTo; } public JB_CustomSettingsQuery setLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.LastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeGreaterThan() { return LastSavedDateTimeGreaterThan; } public JB_CustomSettingsQuery setLastSavedDateTimeGreaterThan(Date value) { this.LastSavedDateTimeGreaterThan = value; return this; } public Date getLastSavedDateTimeLessThan() { return LastSavedDateTimeLessThan; } public JB_CustomSettingsQuery setLastSavedDateTimeLessThan(Date value) { this.LastSavedDateTimeLessThan = value; return this; } public Date getLastSavedDateTimeLessThanOrEqualTo() { return LastSavedDateTimeLessThanOrEqualTo; } public JB_CustomSettingsQuery setLastSavedDateTimeLessThanOrEqualTo(Date value) { this.LastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeNotEqualTo() { return LastSavedDateTimeNotEqualTo; } public JB_CustomSettingsQuery setLastSavedDateTimeNotEqualTo(Date value) { this.LastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getLastSavedDateTimeBetween() { return LastSavedDateTimeBetween; } public JB_CustomSettingsQuery setLastSavedDateTimeBetween(ArrayList value) { this.LastSavedDateTimeBetween = value; return this; } public ArrayList getLastSavedDateTimeIn() { return LastSavedDateTimeIn; } public JB_CustomSettingsQuery setLastSavedDateTimeIn(ArrayList value) { this.LastSavedDateTimeIn = value; return this; } public String getSettingDescription() { return SettingDescription; } public JB_CustomSettingsQuery setSettingDescription(String value) { this.SettingDescription = value; return this; } public String getSettingDescriptionStartsWith() { return SettingDescriptionStartsWith; } public JB_CustomSettingsQuery setSettingDescriptionStartsWith(String value) { this.SettingDescriptionStartsWith = value; return this; } public String getSettingDescriptionEndsWith() { return SettingDescriptionEndsWith; } public JB_CustomSettingsQuery setSettingDescriptionEndsWith(String value) { this.SettingDescriptionEndsWith = value; return this; } public String getSettingDescriptionContains() { return SettingDescriptionContains; } public JB_CustomSettingsQuery setSettingDescriptionContains(String value) { this.SettingDescriptionContains = value; return this; } public String getSettingDescriptionLike() { return SettingDescriptionLike; } public JB_CustomSettingsQuery setSettingDescriptionLike(String value) { this.SettingDescriptionLike = value; return this; } public ArrayList getSettingDescriptionBetween() { return SettingDescriptionBetween; } public JB_CustomSettingsQuery setSettingDescriptionBetween(ArrayList value) { this.SettingDescriptionBetween = value; return this; } public ArrayList getSettingDescriptionIn() { return SettingDescriptionIn; } public JB_CustomSettingsQuery setSettingDescriptionIn(ArrayList value) { this.SettingDescriptionIn = value; return this; } public String getSettingName() { return SettingName; } public JB_CustomSettingsQuery setSettingName(String value) { this.SettingName = value; return this; } public String getSettingNameStartsWith() { return SettingNameStartsWith; } public JB_CustomSettingsQuery setSettingNameStartsWith(String value) { this.SettingNameStartsWith = value; return this; } public String getSettingNameEndsWith() { return SettingNameEndsWith; } public JB_CustomSettingsQuery setSettingNameEndsWith(String value) { this.SettingNameEndsWith = value; return this; } public String getSettingNameContains() { return SettingNameContains; } public JB_CustomSettingsQuery setSettingNameContains(String value) { this.SettingNameContains = value; return this; } public String getSettingNameLike() { return SettingNameLike; } public JB_CustomSettingsQuery setSettingNameLike(String value) { this.SettingNameLike = value; return this; } public ArrayList getSettingNameBetween() { return SettingNameBetween; } public JB_CustomSettingsQuery setSettingNameBetween(ArrayList value) { this.SettingNameBetween = value; return this; } public ArrayList getSettingNameIn() { return SettingNameIn; } public JB_CustomSettingsQuery setSettingNameIn(ArrayList value) { this.SettingNameIn = value; return this; } public BigDecimal getDisplayOrder() { return DisplayOrder; } public JB_CustomSettingsQuery setDisplayOrder(BigDecimal value) { this.DisplayOrder = value; return this; } public BigDecimal getDisplayOrderGreaterThanOrEqualTo() { return DisplayOrderGreaterThanOrEqualTo; } public JB_CustomSettingsQuery setDisplayOrderGreaterThanOrEqualTo(BigDecimal value) { this.DisplayOrderGreaterThanOrEqualTo = value; return this; } public BigDecimal getDisplayOrderGreaterThan() { return DisplayOrderGreaterThan; } public JB_CustomSettingsQuery setDisplayOrderGreaterThan(BigDecimal value) { this.DisplayOrderGreaterThan = value; return this; } public BigDecimal getDisplayOrderLessThan() { return DisplayOrderLessThan; } public JB_CustomSettingsQuery setDisplayOrderLessThan(BigDecimal value) { this.DisplayOrderLessThan = value; return this; } public BigDecimal getDisplayOrderLessThanOrEqualTo() { return DisplayOrderLessThanOrEqualTo; } public JB_CustomSettingsQuery setDisplayOrderLessThanOrEqualTo(BigDecimal value) { this.DisplayOrderLessThanOrEqualTo = value; return this; } public BigDecimal getDisplayOrderNotEqualTo() { return DisplayOrderNotEqualTo; } public JB_CustomSettingsQuery setDisplayOrderNotEqualTo(BigDecimal value) { this.DisplayOrderNotEqualTo = value; return this; } public ArrayList getDisplayOrderBetween() { return DisplayOrderBetween; } public JB_CustomSettingsQuery setDisplayOrderBetween(ArrayList value) { this.DisplayOrderBetween = value; return this; } public ArrayList getDisplayOrderIn() { return DisplayOrderIn; } public JB_CustomSettingsQuery setDisplayOrderIn(ArrayList value) { this.DisplayOrderIn = value; return this; } public Short getCellType() { return CellType; } public JB_CustomSettingsQuery setCellType(Short value) { this.CellType = value; return this; } public Short getCellTypeGreaterThanOrEqualTo() { return CellTypeGreaterThanOrEqualTo; } public JB_CustomSettingsQuery setCellTypeGreaterThanOrEqualTo(Short value) { this.CellTypeGreaterThanOrEqualTo = value; return this; } public Short getCellTypeGreaterThan() { return CellTypeGreaterThan; } public JB_CustomSettingsQuery setCellTypeGreaterThan(Short value) { this.CellTypeGreaterThan = value; return this; } public Short getCellTypeLessThan() { return CellTypeLessThan; } public JB_CustomSettingsQuery setCellTypeLessThan(Short value) { this.CellTypeLessThan = value; return this; } public Short getCellTypeLessThanOrEqualTo() { return CellTypeLessThanOrEqualTo; } public JB_CustomSettingsQuery setCellTypeLessThanOrEqualTo(Short value) { this.CellTypeLessThanOrEqualTo = value; return this; } public Short getCellTypeNotEqualTo() { return CellTypeNotEqualTo; } public JB_CustomSettingsQuery setCellTypeNotEqualTo(Short value) { this.CellTypeNotEqualTo = value; return this; } public ArrayList getCellTypeBetween() { return CellTypeBetween; } public JB_CustomSettingsQuery setCellTypeBetween(ArrayList value) { this.CellTypeBetween = value; return this; } public ArrayList getCellTypeIn() { return CellTypeIn; } public JB_CustomSettingsQuery setCellTypeIn(ArrayList value) { this.CellTypeIn = value; return this; } public String getScriptFormatCell() { return ScriptFormatCell; } public JB_CustomSettingsQuery setScriptFormatCell(String value) { this.ScriptFormatCell = value; return this; } public String getScriptFormatCellStartsWith() { return ScriptFormatCellStartsWith; } public JB_CustomSettingsQuery setScriptFormatCellStartsWith(String value) { this.ScriptFormatCellStartsWith = value; return this; } public String getScriptFormatCellEndsWith() { return ScriptFormatCellEndsWith; } public JB_CustomSettingsQuery setScriptFormatCellEndsWith(String value) { this.ScriptFormatCellEndsWith = value; return this; } public String getScriptFormatCellContains() { return ScriptFormatCellContains; } public JB_CustomSettingsQuery setScriptFormatCellContains(String value) { this.ScriptFormatCellContains = value; return this; } public String getScriptFormatCellLike() { return ScriptFormatCellLike; } public JB_CustomSettingsQuery setScriptFormatCellLike(String value) { this.ScriptFormatCellLike = value; return this; } public ArrayList getScriptFormatCellBetween() { return ScriptFormatCellBetween; } public JB_CustomSettingsQuery setScriptFormatCellBetween(ArrayList value) { this.ScriptFormatCellBetween = value; return this; } public ArrayList getScriptFormatCellIn() { return ScriptFormatCellIn; } public JB_CustomSettingsQuery setScriptFormatCellIn(ArrayList value) { this.ScriptFormatCellIn = value; return this; } public String getScriptButtonClicked() { return ScriptButtonClicked; } public JB_CustomSettingsQuery setScriptButtonClicked(String value) { this.ScriptButtonClicked = value; return this; } public String getScriptButtonClickedStartsWith() { return ScriptButtonClickedStartsWith; } public JB_CustomSettingsQuery setScriptButtonClickedStartsWith(String value) { this.ScriptButtonClickedStartsWith = value; return this; } public String getScriptButtonClickedEndsWith() { return ScriptButtonClickedEndsWith; } public JB_CustomSettingsQuery setScriptButtonClickedEndsWith(String value) { this.ScriptButtonClickedEndsWith = value; return this; } public String getScriptButtonClickedContains() { return ScriptButtonClickedContains; } public JB_CustomSettingsQuery setScriptButtonClickedContains(String value) { this.ScriptButtonClickedContains = value; return this; } public String getScriptButtonClickedLike() { return ScriptButtonClickedLike; } public JB_CustomSettingsQuery setScriptButtonClickedLike(String value) { this.ScriptButtonClickedLike = value; return this; } public ArrayList getScriptButtonClickedBetween() { return ScriptButtonClickedBetween; } public JB_CustomSettingsQuery setScriptButtonClickedBetween(ArrayList value) { this.ScriptButtonClickedBetween = value; return this; } public ArrayList getScriptButtonClickedIn() { return ScriptButtonClickedIn; } public JB_CustomSettingsQuery setScriptButtonClickedIn(ArrayList value) { this.ScriptButtonClickedIn = value; return this; } public String getScriptReadData() { return ScriptReadData; } public JB_CustomSettingsQuery setScriptReadData(String value) { this.ScriptReadData = value; return this; } public String getScriptReadDataStartsWith() { return ScriptReadDataStartsWith; } public JB_CustomSettingsQuery setScriptReadDataStartsWith(String value) { this.ScriptReadDataStartsWith = value; return this; } public String getScriptReadDataEndsWith() { return ScriptReadDataEndsWith; } public JB_CustomSettingsQuery setScriptReadDataEndsWith(String value) { this.ScriptReadDataEndsWith = value; return this; } public String getScriptReadDataContains() { return ScriptReadDataContains; } public JB_CustomSettingsQuery setScriptReadDataContains(String value) { this.ScriptReadDataContains = value; return this; } public String getScriptReadDataLike() { return ScriptReadDataLike; } public JB_CustomSettingsQuery setScriptReadDataLike(String value) { this.ScriptReadDataLike = value; return this; } public ArrayList getScriptReadDataBetween() { return ScriptReadDataBetween; } public JB_CustomSettingsQuery setScriptReadDataBetween(ArrayList value) { this.ScriptReadDataBetween = value; return this; } public ArrayList getScriptReadDataIn() { return ScriptReadDataIn; } public JB_CustomSettingsQuery setScriptReadDataIn(ArrayList value) { this.ScriptReadDataIn = value; return this; } public String getGridHandlerCode() { return GridHandlerCode; } public JB_CustomSettingsQuery setGridHandlerCode(String value) { this.GridHandlerCode = value; return this; } public String getGridHandlerCodeStartsWith() { return GridHandlerCodeStartsWith; } public JB_CustomSettingsQuery setGridHandlerCodeStartsWith(String value) { this.GridHandlerCodeStartsWith = value; return this; } public String getGridHandlerCodeEndsWith() { return GridHandlerCodeEndsWith; } public JB_CustomSettingsQuery setGridHandlerCodeEndsWith(String value) { this.GridHandlerCodeEndsWith = value; return this; } public String getGridHandlerCodeContains() { return GridHandlerCodeContains; } public JB_CustomSettingsQuery setGridHandlerCodeContains(String value) { this.GridHandlerCodeContains = value; return this; } public String getGridHandlerCodeLike() { return GridHandlerCodeLike; } public JB_CustomSettingsQuery setGridHandlerCodeLike(String value) { this.GridHandlerCodeLike = value; return this; } public ArrayList getGridHandlerCodeBetween() { return GridHandlerCodeBetween; } public JB_CustomSettingsQuery setGridHandlerCodeBetween(ArrayList value) { this.GridHandlerCodeBetween = value; return this; } public ArrayList getGridHandlerCodeIn() { return GridHandlerCodeIn; } public JB_CustomSettingsQuery setGridHandlerCodeIn(ArrayList value) { this.GridHandlerCodeIn = value; return this; } public UUID getSyPluginRecID() { return SY_Plugin_RecID; } public JB_CustomSettingsQuery setSyPluginRecID(UUID value) { this.SY_Plugin_RecID = value; return this; } public ArrayList getSyPluginRecIDIn() { return SY_Plugin_RecIDIn; } public JB_CustomSettingsQuery setSyPluginRecIDIn(ArrayList value) { this.SY_Plugin_RecIDIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class JB_CustomSettingValuesQuery extends QueryDb implements IReturn> { public String SettingValueID = null; public String SettingValueIDStartsWith = null; public String SettingValueIDEndsWith = null; public String SettingValueIDContains = null; public String SettingValueIDLike = null; public ArrayList SettingValueIDBetween = null; public ArrayList SettingValueIDIn = null; public String SettingID = null; public String SettingIDStartsWith = null; public String SettingIDEndsWith = null; public String SettingIDContains = null; public String SettingIDLike = null; public ArrayList SettingIDBetween = null; public ArrayList SettingIDIn = null; public String JB_Main_RecID = null; public String JB_Main_RecIDStartsWith = null; public String JB_Main_RecIDEndsWith = null; public String JB_Main_RecIDContains = null; public String JB_Main_RecIDLike = null; public ArrayList JB_Main_RecIDBetween = null; public ArrayList JB_Main_RecIDIn = null; public String Contents = null; public String ContentsStartsWith = null; public String ContentsEndsWith = null; public String ContentsContains = null; public String ContentsLike = null; public ArrayList ContentsBetween = null; public ArrayList ContentsIn = null; public Date LastSavedDateTime = null; public Date LastSavedDateTimeGreaterThanOrEqualTo = null; public Date LastSavedDateTimeGreaterThan = null; public Date LastSavedDateTimeLessThan = null; public Date LastSavedDateTimeLessThanOrEqualTo = null; public Date LastSavedDateTimeNotEqualTo = null; public ArrayList LastSavedDateTimeBetween = null; public ArrayList LastSavedDateTimeIn = null; public String getSettingValueID() { return SettingValueID; } public JB_CustomSettingValuesQuery setSettingValueID(String value) { this.SettingValueID = value; return this; } public String getSettingValueIDStartsWith() { return SettingValueIDStartsWith; } public JB_CustomSettingValuesQuery setSettingValueIDStartsWith(String value) { this.SettingValueIDStartsWith = value; return this; } public String getSettingValueIDEndsWith() { return SettingValueIDEndsWith; } public JB_CustomSettingValuesQuery setSettingValueIDEndsWith(String value) { this.SettingValueIDEndsWith = value; return this; } public String getSettingValueIDContains() { return SettingValueIDContains; } public JB_CustomSettingValuesQuery setSettingValueIDContains(String value) { this.SettingValueIDContains = value; return this; } public String getSettingValueIDLike() { return SettingValueIDLike; } public JB_CustomSettingValuesQuery setSettingValueIDLike(String value) { this.SettingValueIDLike = value; return this; } public ArrayList getSettingValueIDBetween() { return SettingValueIDBetween; } public JB_CustomSettingValuesQuery setSettingValueIDBetween(ArrayList value) { this.SettingValueIDBetween = value; return this; } public ArrayList getSettingValueIDIn() { return SettingValueIDIn; } public JB_CustomSettingValuesQuery setSettingValueIDIn(ArrayList value) { this.SettingValueIDIn = value; return this; } public String getSettingID() { return SettingID; } public JB_CustomSettingValuesQuery setSettingID(String value) { this.SettingID = value; return this; } public String getSettingIDStartsWith() { return SettingIDStartsWith; } public JB_CustomSettingValuesQuery setSettingIDStartsWith(String value) { this.SettingIDStartsWith = value; return this; } public String getSettingIDEndsWith() { return SettingIDEndsWith; } public JB_CustomSettingValuesQuery setSettingIDEndsWith(String value) { this.SettingIDEndsWith = value; return this; } public String getSettingIDContains() { return SettingIDContains; } public JB_CustomSettingValuesQuery setSettingIDContains(String value) { this.SettingIDContains = value; return this; } public String getSettingIDLike() { return SettingIDLike; } public JB_CustomSettingValuesQuery setSettingIDLike(String value) { this.SettingIDLike = value; return this; } public ArrayList getSettingIDBetween() { return SettingIDBetween; } public JB_CustomSettingValuesQuery setSettingIDBetween(ArrayList value) { this.SettingIDBetween = value; return this; } public ArrayList getSettingIDIn() { return SettingIDIn; } public JB_CustomSettingValuesQuery setSettingIDIn(ArrayList value) { this.SettingIDIn = value; return this; } public String getJbMainRecID() { return JB_Main_RecID; } public JB_CustomSettingValuesQuery setJbMainRecID(String value) { this.JB_Main_RecID = value; return this; } public String getJbMainRecIDStartsWith() { return JB_Main_RecIDStartsWith; } public JB_CustomSettingValuesQuery setJbMainRecIDStartsWith(String value) { this.JB_Main_RecIDStartsWith = value; return this; } public String getJbMainRecIDEndsWith() { return JB_Main_RecIDEndsWith; } public JB_CustomSettingValuesQuery setJbMainRecIDEndsWith(String value) { this.JB_Main_RecIDEndsWith = value; return this; } public String getJbMainRecIDContains() { return JB_Main_RecIDContains; } public JB_CustomSettingValuesQuery setJbMainRecIDContains(String value) { this.JB_Main_RecIDContains = value; return this; } public String getJbMainRecIDLike() { return JB_Main_RecIDLike; } public JB_CustomSettingValuesQuery setJbMainRecIDLike(String value) { this.JB_Main_RecIDLike = value; return this; } public ArrayList getJbMainRecIDBetween() { return JB_Main_RecIDBetween; } public JB_CustomSettingValuesQuery setJbMainRecIDBetween(ArrayList value) { this.JB_Main_RecIDBetween = value; return this; } public ArrayList getJbMainRecIDIn() { return JB_Main_RecIDIn; } public JB_CustomSettingValuesQuery setJbMainRecIDIn(ArrayList value) { this.JB_Main_RecIDIn = value; return this; } public String getContents() { return Contents; } public JB_CustomSettingValuesQuery setContents(String value) { this.Contents = value; return this; } public String getContentsStartsWith() { return ContentsStartsWith; } public JB_CustomSettingValuesQuery setContentsStartsWith(String value) { this.ContentsStartsWith = value; return this; } public String getContentsEndsWith() { return ContentsEndsWith; } public JB_CustomSettingValuesQuery setContentsEndsWith(String value) { this.ContentsEndsWith = value; return this; } public String getContentsContains() { return ContentsContains; } public JB_CustomSettingValuesQuery setContentsContains(String value) { this.ContentsContains = value; return this; } public String getContentsLike() { return ContentsLike; } public JB_CustomSettingValuesQuery setContentsLike(String value) { this.ContentsLike = value; return this; } public ArrayList getContentsBetween() { return ContentsBetween; } public JB_CustomSettingValuesQuery setContentsBetween(ArrayList value) { this.ContentsBetween = value; return this; } public ArrayList getContentsIn() { return ContentsIn; } public JB_CustomSettingValuesQuery setContentsIn(ArrayList value) { this.ContentsIn = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public JB_CustomSettingValuesQuery setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getLastSavedDateTimeGreaterThanOrEqualTo() { return LastSavedDateTimeGreaterThanOrEqualTo; } public JB_CustomSettingValuesQuery setLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.LastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeGreaterThan() { return LastSavedDateTimeGreaterThan; } public JB_CustomSettingValuesQuery setLastSavedDateTimeGreaterThan(Date value) { this.LastSavedDateTimeGreaterThan = value; return this; } public Date getLastSavedDateTimeLessThan() { return LastSavedDateTimeLessThan; } public JB_CustomSettingValuesQuery setLastSavedDateTimeLessThan(Date value) { this.LastSavedDateTimeLessThan = value; return this; } public Date getLastSavedDateTimeLessThanOrEqualTo() { return LastSavedDateTimeLessThanOrEqualTo; } public JB_CustomSettingValuesQuery setLastSavedDateTimeLessThanOrEqualTo(Date value) { this.LastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeNotEqualTo() { return LastSavedDateTimeNotEqualTo; } public JB_CustomSettingValuesQuery setLastSavedDateTimeNotEqualTo(Date value) { this.LastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getLastSavedDateTimeBetween() { return LastSavedDateTimeBetween; } public JB_CustomSettingValuesQuery setLastSavedDateTimeBetween(ArrayList value) { this.LastSavedDateTimeBetween = value; return this; } public ArrayList getLastSavedDateTimeIn() { return LastSavedDateTimeIn; } public JB_CustomSettingValuesQuery setLastSavedDateTimeIn(ArrayList value) { this.LastSavedDateTimeIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class JB_DocumentsQuery extends QueryDb implements IReturn> { public String RecID = null; public String RecIDStartsWith = null; public String RecIDEndsWith = null; public String RecIDContains = null; public String RecIDLike = null; public ArrayList RecIDBetween = null; public ArrayList RecIDIn = null; public String JB_Main_RecID = null; public String JB_Main_RecIDStartsWith = null; public String JB_Main_RecIDEndsWith = null; public String JB_Main_RecIDContains = null; public String JB_Main_RecIDLike = null; public ArrayList JB_Main_RecIDBetween = null; public ArrayList JB_Main_RecIDIn = null; public String DocumentTypeID = null; public String DocumentTypeIDStartsWith = null; public String DocumentTypeIDEndsWith = null; public String DocumentTypeIDContains = null; public String DocumentTypeIDLike = null; public ArrayList DocumentTypeIDBetween = null; public ArrayList DocumentTypeIDIn = null; public Date LastSavedDateTime = null; public Date LastSavedDateTimeGreaterThanOrEqualTo = null; public Date LastSavedDateTimeGreaterThan = null; public Date LastSavedDateTimeLessThan = null; public Date LastSavedDateTimeLessThanOrEqualTo = null; public Date LastSavedDateTimeNotEqualTo = null; public ArrayList LastSavedDateTimeBetween = null; public ArrayList LastSavedDateTimeIn = null; public String LastSavedByStaffID = null; public String LastSavedByStaffIDStartsWith = null; public String LastSavedByStaffIDEndsWith = null; public String LastSavedByStaffIDContains = null; public String LastSavedByStaffIDLike = null; public ArrayList LastSavedByStaffIDBetween = null; public ArrayList LastSavedByStaffIDIn = null; public ArrayList FileBinary = null; public String Description = null; public String DescriptionStartsWith = null; public String DescriptionEndsWith = null; public String DescriptionContains = null; public String DescriptionLike = null; public ArrayList DescriptionBetween = null; public ArrayList DescriptionIn = null; public String PhysicalFileName = null; public String PhysicalFileNameStartsWith = null; public String PhysicalFileNameEndsWith = null; public String PhysicalFileNameContains = null; public String PhysicalFileNameLike = null; public ArrayList PhysicalFileNameBetween = null; public ArrayList PhysicalFileNameIn = null; public Integer ItemNo = null; public Integer ItemNoGreaterThanOrEqualTo = null; public Integer ItemNoGreaterThan = null; public Integer ItemNoLessThan = null; public Integer ItemNoLessThanOrEqualTo = null; public Integer ItemNoNotEqualTo = null; public ArrayList ItemNoBetween = null; public ArrayList ItemNoIn = null; public String getRecID() { return RecID; } public JB_DocumentsQuery setRecID(String value) { this.RecID = value; return this; } public String getRecIDStartsWith() { return RecIDStartsWith; } public JB_DocumentsQuery setRecIDStartsWith(String value) { this.RecIDStartsWith = value; return this; } public String getRecIDEndsWith() { return RecIDEndsWith; } public JB_DocumentsQuery setRecIDEndsWith(String value) { this.RecIDEndsWith = value; return this; } public String getRecIDContains() { return RecIDContains; } public JB_DocumentsQuery setRecIDContains(String value) { this.RecIDContains = value; return this; } public String getRecIDLike() { return RecIDLike; } public JB_DocumentsQuery setRecIDLike(String value) { this.RecIDLike = value; return this; } public ArrayList getRecIDBetween() { return RecIDBetween; } public JB_DocumentsQuery setRecIDBetween(ArrayList value) { this.RecIDBetween = value; return this; } public ArrayList getRecIDIn() { return RecIDIn; } public JB_DocumentsQuery setRecIDIn(ArrayList value) { this.RecIDIn = value; return this; } public String getJbMainRecID() { return JB_Main_RecID; } public JB_DocumentsQuery setJbMainRecID(String value) { this.JB_Main_RecID = value; return this; } public String getJbMainRecIDStartsWith() { return JB_Main_RecIDStartsWith; } public JB_DocumentsQuery setJbMainRecIDStartsWith(String value) { this.JB_Main_RecIDStartsWith = value; return this; } public String getJbMainRecIDEndsWith() { return JB_Main_RecIDEndsWith; } public JB_DocumentsQuery setJbMainRecIDEndsWith(String value) { this.JB_Main_RecIDEndsWith = value; return this; } public String getJbMainRecIDContains() { return JB_Main_RecIDContains; } public JB_DocumentsQuery setJbMainRecIDContains(String value) { this.JB_Main_RecIDContains = value; return this; } public String getJbMainRecIDLike() { return JB_Main_RecIDLike; } public JB_DocumentsQuery setJbMainRecIDLike(String value) { this.JB_Main_RecIDLike = value; return this; } public ArrayList getJbMainRecIDBetween() { return JB_Main_RecIDBetween; } public JB_DocumentsQuery setJbMainRecIDBetween(ArrayList value) { this.JB_Main_RecIDBetween = value; return this; } public ArrayList getJbMainRecIDIn() { return JB_Main_RecIDIn; } public JB_DocumentsQuery setJbMainRecIDIn(ArrayList value) { this.JB_Main_RecIDIn = value; return this; } public String getDocumentTypeID() { return DocumentTypeID; } public JB_DocumentsQuery setDocumentTypeID(String value) { this.DocumentTypeID = value; return this; } public String getDocumentTypeIDStartsWith() { return DocumentTypeIDStartsWith; } public JB_DocumentsQuery setDocumentTypeIDStartsWith(String value) { this.DocumentTypeIDStartsWith = value; return this; } public String getDocumentTypeIDEndsWith() { return DocumentTypeIDEndsWith; } public JB_DocumentsQuery setDocumentTypeIDEndsWith(String value) { this.DocumentTypeIDEndsWith = value; return this; } public String getDocumentTypeIDContains() { return DocumentTypeIDContains; } public JB_DocumentsQuery setDocumentTypeIDContains(String value) { this.DocumentTypeIDContains = value; return this; } public String getDocumentTypeIDLike() { return DocumentTypeIDLike; } public JB_DocumentsQuery setDocumentTypeIDLike(String value) { this.DocumentTypeIDLike = value; return this; } public ArrayList getDocumentTypeIDBetween() { return DocumentTypeIDBetween; } public JB_DocumentsQuery setDocumentTypeIDBetween(ArrayList value) { this.DocumentTypeIDBetween = value; return this; } public ArrayList getDocumentTypeIDIn() { return DocumentTypeIDIn; } public JB_DocumentsQuery setDocumentTypeIDIn(ArrayList value) { this.DocumentTypeIDIn = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public JB_DocumentsQuery setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getLastSavedDateTimeGreaterThanOrEqualTo() { return LastSavedDateTimeGreaterThanOrEqualTo; } public JB_DocumentsQuery setLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.LastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeGreaterThan() { return LastSavedDateTimeGreaterThan; } public JB_DocumentsQuery setLastSavedDateTimeGreaterThan(Date value) { this.LastSavedDateTimeGreaterThan = value; return this; } public Date getLastSavedDateTimeLessThan() { return LastSavedDateTimeLessThan; } public JB_DocumentsQuery setLastSavedDateTimeLessThan(Date value) { this.LastSavedDateTimeLessThan = value; return this; } public Date getLastSavedDateTimeLessThanOrEqualTo() { return LastSavedDateTimeLessThanOrEqualTo; } public JB_DocumentsQuery setLastSavedDateTimeLessThanOrEqualTo(Date value) { this.LastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeNotEqualTo() { return LastSavedDateTimeNotEqualTo; } public JB_DocumentsQuery setLastSavedDateTimeNotEqualTo(Date value) { this.LastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getLastSavedDateTimeBetween() { return LastSavedDateTimeBetween; } public JB_DocumentsQuery setLastSavedDateTimeBetween(ArrayList value) { this.LastSavedDateTimeBetween = value; return this; } public ArrayList getLastSavedDateTimeIn() { return LastSavedDateTimeIn; } public JB_DocumentsQuery setLastSavedDateTimeIn(ArrayList value) { this.LastSavedDateTimeIn = value; return this; } public String getLastSavedByStaffID() { return LastSavedByStaffID; } public JB_DocumentsQuery setLastSavedByStaffID(String value) { this.LastSavedByStaffID = value; return this; } public String getLastSavedByStaffIDStartsWith() { return LastSavedByStaffIDStartsWith; } public JB_DocumentsQuery setLastSavedByStaffIDStartsWith(String value) { this.LastSavedByStaffIDStartsWith = value; return this; } public String getLastSavedByStaffIDEndsWith() { return LastSavedByStaffIDEndsWith; } public JB_DocumentsQuery setLastSavedByStaffIDEndsWith(String value) { this.LastSavedByStaffIDEndsWith = value; return this; } public String getLastSavedByStaffIDContains() { return LastSavedByStaffIDContains; } public JB_DocumentsQuery setLastSavedByStaffIDContains(String value) { this.LastSavedByStaffIDContains = value; return this; } public String getLastSavedByStaffIDLike() { return LastSavedByStaffIDLike; } public JB_DocumentsQuery setLastSavedByStaffIDLike(String value) { this.LastSavedByStaffIDLike = value; return this; } public ArrayList getLastSavedByStaffIDBetween() { return LastSavedByStaffIDBetween; } public JB_DocumentsQuery setLastSavedByStaffIDBetween(ArrayList value) { this.LastSavedByStaffIDBetween = value; return this; } public ArrayList getLastSavedByStaffIDIn() { return LastSavedByStaffIDIn; } public JB_DocumentsQuery setLastSavedByStaffIDIn(ArrayList value) { this.LastSavedByStaffIDIn = value; return this; } public ArrayList getFileBinary() { return FileBinary; } public JB_DocumentsQuery setFileBinary(ArrayList value) { this.FileBinary = value; return this; } public String getDescription() { return Description; } public JB_DocumentsQuery setDescription(String value) { this.Description = value; return this; } public String getDescriptionStartsWith() { return DescriptionStartsWith; } public JB_DocumentsQuery setDescriptionStartsWith(String value) { this.DescriptionStartsWith = value; return this; } public String getDescriptionEndsWith() { return DescriptionEndsWith; } public JB_DocumentsQuery setDescriptionEndsWith(String value) { this.DescriptionEndsWith = value; return this; } public String getDescriptionContains() { return DescriptionContains; } public JB_DocumentsQuery setDescriptionContains(String value) { this.DescriptionContains = value; return this; } public String getDescriptionLike() { return DescriptionLike; } public JB_DocumentsQuery setDescriptionLike(String value) { this.DescriptionLike = value; return this; } public ArrayList getDescriptionBetween() { return DescriptionBetween; } public JB_DocumentsQuery setDescriptionBetween(ArrayList value) { this.DescriptionBetween = value; return this; } public ArrayList getDescriptionIn() { return DescriptionIn; } public JB_DocumentsQuery setDescriptionIn(ArrayList value) { this.DescriptionIn = value; return this; } public String getPhysicalFileName() { return PhysicalFileName; } public JB_DocumentsQuery setPhysicalFileName(String value) { this.PhysicalFileName = value; return this; } public String getPhysicalFileNameStartsWith() { return PhysicalFileNameStartsWith; } public JB_DocumentsQuery setPhysicalFileNameStartsWith(String value) { this.PhysicalFileNameStartsWith = value; return this; } public String getPhysicalFileNameEndsWith() { return PhysicalFileNameEndsWith; } public JB_DocumentsQuery setPhysicalFileNameEndsWith(String value) { this.PhysicalFileNameEndsWith = value; return this; } public String getPhysicalFileNameContains() { return PhysicalFileNameContains; } public JB_DocumentsQuery setPhysicalFileNameContains(String value) { this.PhysicalFileNameContains = value; return this; } public String getPhysicalFileNameLike() { return PhysicalFileNameLike; } public JB_DocumentsQuery setPhysicalFileNameLike(String value) { this.PhysicalFileNameLike = value; return this; } public ArrayList getPhysicalFileNameBetween() { return PhysicalFileNameBetween; } public JB_DocumentsQuery setPhysicalFileNameBetween(ArrayList value) { this.PhysicalFileNameBetween = value; return this; } public ArrayList getPhysicalFileNameIn() { return PhysicalFileNameIn; } public JB_DocumentsQuery setPhysicalFileNameIn(ArrayList value) { this.PhysicalFileNameIn = value; return this; } public Integer getItemNo() { return ItemNo; } public JB_DocumentsQuery setItemNo(Integer value) { this.ItemNo = value; return this; } public Integer getItemNoGreaterThanOrEqualTo() { return ItemNoGreaterThanOrEqualTo; } public JB_DocumentsQuery setItemNoGreaterThanOrEqualTo(Integer value) { this.ItemNoGreaterThanOrEqualTo = value; return this; } public Integer getItemNoGreaterThan() { return ItemNoGreaterThan; } public JB_DocumentsQuery setItemNoGreaterThan(Integer value) { this.ItemNoGreaterThan = value; return this; } public Integer getItemNoLessThan() { return ItemNoLessThan; } public JB_DocumentsQuery setItemNoLessThan(Integer value) { this.ItemNoLessThan = value; return this; } public Integer getItemNoLessThanOrEqualTo() { return ItemNoLessThanOrEqualTo; } public JB_DocumentsQuery setItemNoLessThanOrEqualTo(Integer value) { this.ItemNoLessThanOrEqualTo = value; return this; } public Integer getItemNoNotEqualTo() { return ItemNoNotEqualTo; } public JB_DocumentsQuery setItemNoNotEqualTo(Integer value) { this.ItemNoNotEqualTo = value; return this; } public ArrayList getItemNoBetween() { return ItemNoBetween; } public JB_DocumentsQuery setItemNoBetween(ArrayList value) { this.ItemNoBetween = value; return this; } public ArrayList getItemNoIn() { return ItemNoIn; } public JB_DocumentsQuery setItemNoIn(ArrayList value) { this.ItemNoIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class JB_EstimateCashBookLinesQuery extends QueryDb implements IReturn> { public String RecID = null; public String RecIDStartsWith = null; public String RecIDEndsWith = null; public String RecIDContains = null; public String RecIDLike = null; public ArrayList RecIDBetween = null; public ArrayList RecIDIn = null; public String JB_JobStages_RecID = null; public String JB_JobStages_RecIDStartsWith = null; public String JB_JobStages_RecIDEndsWith = null; public String JB_JobStages_RecIDContains = null; public String JB_JobStages_RecIDLike = null; public ArrayList JB_JobStages_RecIDBetween = null; public ArrayList JB_JobStages_RecIDIn = null; public String CR_Main_RecID = null; public String CR_Main_RecIDStartsWith = null; public String CR_Main_RecIDEndsWith = null; public String CR_Main_RecIDContains = null; public String CR_Main_RecIDLike = null; public ArrayList CR_Main_RecIDBetween = null; public ArrayList CR_Main_RecIDIn = null; public Date TransactionDate = null; public Date TransactionDateGreaterThanOrEqualTo = null; public Date TransactionDateGreaterThan = null; public Date TransactionDateLessThan = null; public Date TransactionDateLessThanOrEqualTo = null; public Date TransactionDateNotEqualTo = null; public ArrayList TransactionDateBetween = null; public ArrayList TransactionDateIn = null; public BigDecimal Quantity = null; public BigDecimal QuantityGreaterThanOrEqualTo = null; public BigDecimal QuantityGreaterThan = null; public BigDecimal QuantityLessThan = null; public BigDecimal QuantityLessThanOrEqualTo = null; public BigDecimal QuantityNotEqualTo = null; public ArrayList QuantityBetween = null; public ArrayList QuantityIn = null; public BigDecimal UnitCost = null; public BigDecimal UnitCostGreaterThanOrEqualTo = null; public BigDecimal UnitCostGreaterThan = null; public BigDecimal UnitCostLessThan = null; public BigDecimal UnitCostLessThanOrEqualTo = null; public BigDecimal UnitCostNotEqualTo = null; public ArrayList UnitCostBetween = null; public ArrayList UnitCostIn = null; public BigDecimal UnitCharge = null; public BigDecimal UnitChargeGreaterThanOrEqualTo = null; public BigDecimal UnitChargeGreaterThan = null; public BigDecimal UnitChargeLessThan = null; public BigDecimal UnitChargeLessThanOrEqualTo = null; public BigDecimal UnitChargeNotEqualTo = null; public ArrayList UnitChargeBetween = null; public ArrayList UnitChargeIn = null; public String Remark = null; public String RemarkStartsWith = null; public String RemarkEndsWith = null; public String RemarkContains = null; public String RemarkLike = null; public ArrayList RemarkBetween = null; public ArrayList RemarkIn = null; public Date LastSavedDateTime = null; public Date LastSavedDateTimeGreaterThanOrEqualTo = null; public Date LastSavedDateTimeGreaterThan = null; public Date LastSavedDateTimeLessThan = null; public Date LastSavedDateTimeLessThanOrEqualTo = null; public Date LastSavedDateTimeNotEqualTo = null; public ArrayList LastSavedDateTimeBetween = null; public ArrayList LastSavedDateTimeIn = null; public String HR_Staff_RecID = null; public String HR_Staff_RecIDStartsWith = null; public String HR_Staff_RecIDEndsWith = null; public String HR_Staff_RecIDContains = null; public String HR_Staff_RecIDLike = null; public ArrayList HR_Staff_RecIDBetween = null; public ArrayList HR_Staff_RecIDIn = null; public ArrayList RowHash = null; public String Units = null; public String UnitsStartsWith = null; public String UnitsEndsWith = null; public String UnitsContains = null; public String UnitsLike = null; public ArrayList UnitsBetween = null; public ArrayList UnitsIn = null; public String JB_EstimateLines_RecID = null; public String JB_EstimateLines_RecIDStartsWith = null; public String JB_EstimateLines_RecIDEndsWith = null; public String JB_EstimateLines_RecIDContains = null; public String JB_EstimateLines_RecIDLike = null; public ArrayList JB_EstimateLines_RecIDBetween = null; public ArrayList JB_EstimateLines_RecIDIn = null; public String getRecID() { return RecID; } public JB_EstimateCashBookLinesQuery setRecID(String value) { this.RecID = value; return this; } public String getRecIDStartsWith() { return RecIDStartsWith; } public JB_EstimateCashBookLinesQuery setRecIDStartsWith(String value) { this.RecIDStartsWith = value; return this; } public String getRecIDEndsWith() { return RecIDEndsWith; } public JB_EstimateCashBookLinesQuery setRecIDEndsWith(String value) { this.RecIDEndsWith = value; return this; } public String getRecIDContains() { return RecIDContains; } public JB_EstimateCashBookLinesQuery setRecIDContains(String value) { this.RecIDContains = value; return this; } public String getRecIDLike() { return RecIDLike; } public JB_EstimateCashBookLinesQuery setRecIDLike(String value) { this.RecIDLike = value; return this; } public ArrayList getRecIDBetween() { return RecIDBetween; } public JB_EstimateCashBookLinesQuery setRecIDBetween(ArrayList value) { this.RecIDBetween = value; return this; } public ArrayList getRecIDIn() { return RecIDIn; } public JB_EstimateCashBookLinesQuery setRecIDIn(ArrayList value) { this.RecIDIn = value; return this; } public String getJbJobStagesRecID() { return JB_JobStages_RecID; } public JB_EstimateCashBookLinesQuery setJbJobStagesRecID(String value) { this.JB_JobStages_RecID = value; return this; } public String getJbJobStagesRecIDStartsWith() { return JB_JobStages_RecIDStartsWith; } public JB_EstimateCashBookLinesQuery setJbJobStagesRecIDStartsWith(String value) { this.JB_JobStages_RecIDStartsWith = value; return this; } public String getJbJobStagesRecIDEndsWith() { return JB_JobStages_RecIDEndsWith; } public JB_EstimateCashBookLinesQuery setJbJobStagesRecIDEndsWith(String value) { this.JB_JobStages_RecIDEndsWith = value; return this; } public String getJbJobStagesRecIDContains() { return JB_JobStages_RecIDContains; } public JB_EstimateCashBookLinesQuery setJbJobStagesRecIDContains(String value) { this.JB_JobStages_RecIDContains = value; return this; } public String getJbJobStagesRecIDLike() { return JB_JobStages_RecIDLike; } public JB_EstimateCashBookLinesQuery setJbJobStagesRecIDLike(String value) { this.JB_JobStages_RecIDLike = value; return this; } public ArrayList getJbJobStagesRecIDBetween() { return JB_JobStages_RecIDBetween; } public JB_EstimateCashBookLinesQuery setJbJobStagesRecIDBetween(ArrayList value) { this.JB_JobStages_RecIDBetween = value; return this; } public ArrayList getJbJobStagesRecIDIn() { return JB_JobStages_RecIDIn; } public JB_EstimateCashBookLinesQuery setJbJobStagesRecIDIn(ArrayList value) { this.JB_JobStages_RecIDIn = value; return this; } public String getCrMainRecID() { return CR_Main_RecID; } public JB_EstimateCashBookLinesQuery setCrMainRecID(String value) { this.CR_Main_RecID = value; return this; } public String getCrMainRecIDStartsWith() { return CR_Main_RecIDStartsWith; } public JB_EstimateCashBookLinesQuery setCrMainRecIDStartsWith(String value) { this.CR_Main_RecIDStartsWith = value; return this; } public String getCrMainRecIDEndsWith() { return CR_Main_RecIDEndsWith; } public JB_EstimateCashBookLinesQuery setCrMainRecIDEndsWith(String value) { this.CR_Main_RecIDEndsWith = value; return this; } public String getCrMainRecIDContains() { return CR_Main_RecIDContains; } public JB_EstimateCashBookLinesQuery setCrMainRecIDContains(String value) { this.CR_Main_RecIDContains = value; return this; } public String getCrMainRecIDLike() { return CR_Main_RecIDLike; } public JB_EstimateCashBookLinesQuery setCrMainRecIDLike(String value) { this.CR_Main_RecIDLike = value; return this; } public ArrayList getCrMainRecIDBetween() { return CR_Main_RecIDBetween; } public JB_EstimateCashBookLinesQuery setCrMainRecIDBetween(ArrayList value) { this.CR_Main_RecIDBetween = value; return this; } public ArrayList getCrMainRecIDIn() { return CR_Main_RecIDIn; } public JB_EstimateCashBookLinesQuery setCrMainRecIDIn(ArrayList value) { this.CR_Main_RecIDIn = value; return this; } public Date getTransactionDate() { return TransactionDate; } public JB_EstimateCashBookLinesQuery setTransactionDate(Date value) { this.TransactionDate = value; return this; } public Date getTransactionDateGreaterThanOrEqualTo() { return TransactionDateGreaterThanOrEqualTo; } public JB_EstimateCashBookLinesQuery setTransactionDateGreaterThanOrEqualTo(Date value) { this.TransactionDateGreaterThanOrEqualTo = value; return this; } public Date getTransactionDateGreaterThan() { return TransactionDateGreaterThan; } public JB_EstimateCashBookLinesQuery setTransactionDateGreaterThan(Date value) { this.TransactionDateGreaterThan = value; return this; } public Date getTransactionDateLessThan() { return TransactionDateLessThan; } public JB_EstimateCashBookLinesQuery setTransactionDateLessThan(Date value) { this.TransactionDateLessThan = value; return this; } public Date getTransactionDateLessThanOrEqualTo() { return TransactionDateLessThanOrEqualTo; } public JB_EstimateCashBookLinesQuery setTransactionDateLessThanOrEqualTo(Date value) { this.TransactionDateLessThanOrEqualTo = value; return this; } public Date getTransactionDateNotEqualTo() { return TransactionDateNotEqualTo; } public JB_EstimateCashBookLinesQuery setTransactionDateNotEqualTo(Date value) { this.TransactionDateNotEqualTo = value; return this; } public ArrayList getTransactionDateBetween() { return TransactionDateBetween; } public JB_EstimateCashBookLinesQuery setTransactionDateBetween(ArrayList value) { this.TransactionDateBetween = value; return this; } public ArrayList getTransactionDateIn() { return TransactionDateIn; } public JB_EstimateCashBookLinesQuery setTransactionDateIn(ArrayList value) { this.TransactionDateIn = value; return this; } public BigDecimal getQuantity() { return Quantity; } public JB_EstimateCashBookLinesQuery setQuantity(BigDecimal value) { this.Quantity = value; return this; } public BigDecimal getQuantityGreaterThanOrEqualTo() { return QuantityGreaterThanOrEqualTo; } public JB_EstimateCashBookLinesQuery setQuantityGreaterThanOrEqualTo(BigDecimal value) { this.QuantityGreaterThanOrEqualTo = value; return this; } public BigDecimal getQuantityGreaterThan() { return QuantityGreaterThan; } public JB_EstimateCashBookLinesQuery setQuantityGreaterThan(BigDecimal value) { this.QuantityGreaterThan = value; return this; } public BigDecimal getQuantityLessThan() { return QuantityLessThan; } public JB_EstimateCashBookLinesQuery setQuantityLessThan(BigDecimal value) { this.QuantityLessThan = value; return this; } public BigDecimal getQuantityLessThanOrEqualTo() { return QuantityLessThanOrEqualTo; } public JB_EstimateCashBookLinesQuery setQuantityLessThanOrEqualTo(BigDecimal value) { this.QuantityLessThanOrEqualTo = value; return this; } public BigDecimal getQuantityNotEqualTo() { return QuantityNotEqualTo; } public JB_EstimateCashBookLinesQuery setQuantityNotEqualTo(BigDecimal value) { this.QuantityNotEqualTo = value; return this; } public ArrayList getQuantityBetween() { return QuantityBetween; } public JB_EstimateCashBookLinesQuery setQuantityBetween(ArrayList value) { this.QuantityBetween = value; return this; } public ArrayList getQuantityIn() { return QuantityIn; } public JB_EstimateCashBookLinesQuery setQuantityIn(ArrayList value) { this.QuantityIn = value; return this; } public BigDecimal getUnitCost() { return UnitCost; } public JB_EstimateCashBookLinesQuery setUnitCost(BigDecimal value) { this.UnitCost = value; return this; } public BigDecimal getUnitCostGreaterThanOrEqualTo() { return UnitCostGreaterThanOrEqualTo; } public JB_EstimateCashBookLinesQuery setUnitCostGreaterThanOrEqualTo(BigDecimal value) { this.UnitCostGreaterThanOrEqualTo = value; return this; } public BigDecimal getUnitCostGreaterThan() { return UnitCostGreaterThan; } public JB_EstimateCashBookLinesQuery setUnitCostGreaterThan(BigDecimal value) { this.UnitCostGreaterThan = value; return this; } public BigDecimal getUnitCostLessThan() { return UnitCostLessThan; } public JB_EstimateCashBookLinesQuery setUnitCostLessThan(BigDecimal value) { this.UnitCostLessThan = value; return this; } public BigDecimal getUnitCostLessThanOrEqualTo() { return UnitCostLessThanOrEqualTo; } public JB_EstimateCashBookLinesQuery setUnitCostLessThanOrEqualTo(BigDecimal value) { this.UnitCostLessThanOrEqualTo = value; return this; } public BigDecimal getUnitCostNotEqualTo() { return UnitCostNotEqualTo; } public JB_EstimateCashBookLinesQuery setUnitCostNotEqualTo(BigDecimal value) { this.UnitCostNotEqualTo = value; return this; } public ArrayList getUnitCostBetween() { return UnitCostBetween; } public JB_EstimateCashBookLinesQuery setUnitCostBetween(ArrayList value) { this.UnitCostBetween = value; return this; } public ArrayList getUnitCostIn() { return UnitCostIn; } public JB_EstimateCashBookLinesQuery setUnitCostIn(ArrayList value) { this.UnitCostIn = value; return this; } public BigDecimal getUnitCharge() { return UnitCharge; } public JB_EstimateCashBookLinesQuery setUnitCharge(BigDecimal value) { this.UnitCharge = value; return this; } public BigDecimal getUnitChargeGreaterThanOrEqualTo() { return UnitChargeGreaterThanOrEqualTo; } public JB_EstimateCashBookLinesQuery setUnitChargeGreaterThanOrEqualTo(BigDecimal value) { this.UnitChargeGreaterThanOrEqualTo = value; return this; } public BigDecimal getUnitChargeGreaterThan() { return UnitChargeGreaterThan; } public JB_EstimateCashBookLinesQuery setUnitChargeGreaterThan(BigDecimal value) { this.UnitChargeGreaterThan = value; return this; } public BigDecimal getUnitChargeLessThan() { return UnitChargeLessThan; } public JB_EstimateCashBookLinesQuery setUnitChargeLessThan(BigDecimal value) { this.UnitChargeLessThan = value; return this; } public BigDecimal getUnitChargeLessThanOrEqualTo() { return UnitChargeLessThanOrEqualTo; } public JB_EstimateCashBookLinesQuery setUnitChargeLessThanOrEqualTo(BigDecimal value) { this.UnitChargeLessThanOrEqualTo = value; return this; } public BigDecimal getUnitChargeNotEqualTo() { return UnitChargeNotEqualTo; } public JB_EstimateCashBookLinesQuery setUnitChargeNotEqualTo(BigDecimal value) { this.UnitChargeNotEqualTo = value; return this; } public ArrayList getUnitChargeBetween() { return UnitChargeBetween; } public JB_EstimateCashBookLinesQuery setUnitChargeBetween(ArrayList value) { this.UnitChargeBetween = value; return this; } public ArrayList getUnitChargeIn() { return UnitChargeIn; } public JB_EstimateCashBookLinesQuery setUnitChargeIn(ArrayList value) { this.UnitChargeIn = value; return this; } public String getRemark() { return Remark; } public JB_EstimateCashBookLinesQuery setRemark(String value) { this.Remark = value; return this; } public String getRemarkStartsWith() { return RemarkStartsWith; } public JB_EstimateCashBookLinesQuery setRemarkStartsWith(String value) { this.RemarkStartsWith = value; return this; } public String getRemarkEndsWith() { return RemarkEndsWith; } public JB_EstimateCashBookLinesQuery setRemarkEndsWith(String value) { this.RemarkEndsWith = value; return this; } public String getRemarkContains() { return RemarkContains; } public JB_EstimateCashBookLinesQuery setRemarkContains(String value) { this.RemarkContains = value; return this; } public String getRemarkLike() { return RemarkLike; } public JB_EstimateCashBookLinesQuery setRemarkLike(String value) { this.RemarkLike = value; return this; } public ArrayList getRemarkBetween() { return RemarkBetween; } public JB_EstimateCashBookLinesQuery setRemarkBetween(ArrayList value) { this.RemarkBetween = value; return this; } public ArrayList getRemarkIn() { return RemarkIn; } public JB_EstimateCashBookLinesQuery setRemarkIn(ArrayList value) { this.RemarkIn = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public JB_EstimateCashBookLinesQuery setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getLastSavedDateTimeGreaterThanOrEqualTo() { return LastSavedDateTimeGreaterThanOrEqualTo; } public JB_EstimateCashBookLinesQuery setLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.LastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeGreaterThan() { return LastSavedDateTimeGreaterThan; } public JB_EstimateCashBookLinesQuery setLastSavedDateTimeGreaterThan(Date value) { this.LastSavedDateTimeGreaterThan = value; return this; } public Date getLastSavedDateTimeLessThan() { return LastSavedDateTimeLessThan; } public JB_EstimateCashBookLinesQuery setLastSavedDateTimeLessThan(Date value) { this.LastSavedDateTimeLessThan = value; return this; } public Date getLastSavedDateTimeLessThanOrEqualTo() { return LastSavedDateTimeLessThanOrEqualTo; } public JB_EstimateCashBookLinesQuery setLastSavedDateTimeLessThanOrEqualTo(Date value) { this.LastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeNotEqualTo() { return LastSavedDateTimeNotEqualTo; } public JB_EstimateCashBookLinesQuery setLastSavedDateTimeNotEqualTo(Date value) { this.LastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getLastSavedDateTimeBetween() { return LastSavedDateTimeBetween; } public JB_EstimateCashBookLinesQuery setLastSavedDateTimeBetween(ArrayList value) { this.LastSavedDateTimeBetween = value; return this; } public ArrayList getLastSavedDateTimeIn() { return LastSavedDateTimeIn; } public JB_EstimateCashBookLinesQuery setLastSavedDateTimeIn(ArrayList value) { this.LastSavedDateTimeIn = value; return this; } public String getHrStaffRecID() { return HR_Staff_RecID; } public JB_EstimateCashBookLinesQuery setHrStaffRecID(String value) { this.HR_Staff_RecID = value; return this; } public String getHrStaffRecIDStartsWith() { return HR_Staff_RecIDStartsWith; } public JB_EstimateCashBookLinesQuery setHrStaffRecIDStartsWith(String value) { this.HR_Staff_RecIDStartsWith = value; return this; } public String getHrStaffRecIDEndsWith() { return HR_Staff_RecIDEndsWith; } public JB_EstimateCashBookLinesQuery setHrStaffRecIDEndsWith(String value) { this.HR_Staff_RecIDEndsWith = value; return this; } public String getHrStaffRecIDContains() { return HR_Staff_RecIDContains; } public JB_EstimateCashBookLinesQuery setHrStaffRecIDContains(String value) { this.HR_Staff_RecIDContains = value; return this; } public String getHrStaffRecIDLike() { return HR_Staff_RecIDLike; } public JB_EstimateCashBookLinesQuery setHrStaffRecIDLike(String value) { this.HR_Staff_RecIDLike = value; return this; } public ArrayList getHrStaffRecIDBetween() { return HR_Staff_RecIDBetween; } public JB_EstimateCashBookLinesQuery setHrStaffRecIDBetween(ArrayList value) { this.HR_Staff_RecIDBetween = value; return this; } public ArrayList getHrStaffRecIDIn() { return HR_Staff_RecIDIn; } public JB_EstimateCashBookLinesQuery setHrStaffRecIDIn(ArrayList value) { this.HR_Staff_RecIDIn = value; return this; } public ArrayList getRowHash() { return RowHash; } public JB_EstimateCashBookLinesQuery setRowHash(ArrayList value) { this.RowHash = value; return this; } public String getUnits() { return Units; } public JB_EstimateCashBookLinesQuery setUnits(String value) { this.Units = value; return this; } public String getUnitsStartsWith() { return UnitsStartsWith; } public JB_EstimateCashBookLinesQuery setUnitsStartsWith(String value) { this.UnitsStartsWith = value; return this; } public String getUnitsEndsWith() { return UnitsEndsWith; } public JB_EstimateCashBookLinesQuery setUnitsEndsWith(String value) { this.UnitsEndsWith = value; return this; } public String getUnitsContains() { return UnitsContains; } public JB_EstimateCashBookLinesQuery setUnitsContains(String value) { this.UnitsContains = value; return this; } public String getUnitsLike() { return UnitsLike; } public JB_EstimateCashBookLinesQuery setUnitsLike(String value) { this.UnitsLike = value; return this; } public ArrayList getUnitsBetween() { return UnitsBetween; } public JB_EstimateCashBookLinesQuery setUnitsBetween(ArrayList value) { this.UnitsBetween = value; return this; } public ArrayList getUnitsIn() { return UnitsIn; } public JB_EstimateCashBookLinesQuery setUnitsIn(ArrayList value) { this.UnitsIn = value; return this; } public String getJbEstimateLinesRecID() { return JB_EstimateLines_RecID; } public JB_EstimateCashBookLinesQuery setJbEstimateLinesRecID(String value) { this.JB_EstimateLines_RecID = value; return this; } public String getJbEstimateLinesRecIDStartsWith() { return JB_EstimateLines_RecIDStartsWith; } public JB_EstimateCashBookLinesQuery setJbEstimateLinesRecIDStartsWith(String value) { this.JB_EstimateLines_RecIDStartsWith = value; return this; } public String getJbEstimateLinesRecIDEndsWith() { return JB_EstimateLines_RecIDEndsWith; } public JB_EstimateCashBookLinesQuery setJbEstimateLinesRecIDEndsWith(String value) { this.JB_EstimateLines_RecIDEndsWith = value; return this; } public String getJbEstimateLinesRecIDContains() { return JB_EstimateLines_RecIDContains; } public JB_EstimateCashBookLinesQuery setJbEstimateLinesRecIDContains(String value) { this.JB_EstimateLines_RecIDContains = value; return this; } public String getJbEstimateLinesRecIDLike() { return JB_EstimateLines_RecIDLike; } public JB_EstimateCashBookLinesQuery setJbEstimateLinesRecIDLike(String value) { this.JB_EstimateLines_RecIDLike = value; return this; } public ArrayList getJbEstimateLinesRecIDBetween() { return JB_EstimateLines_RecIDBetween; } public JB_EstimateCashBookLinesQuery setJbEstimateLinesRecIDBetween(ArrayList value) { this.JB_EstimateLines_RecIDBetween = value; return this; } public ArrayList getJbEstimateLinesRecIDIn() { return JB_EstimateLines_RecIDIn; } public JB_EstimateCashBookLinesQuery setJbEstimateLinesRecIDIn(ArrayList value) { this.JB_EstimateLines_RecIDIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class JB_EstimateCustomSettingQuery extends QueryDb implements IReturn> { public String SettingID = null; public String SettingIDStartsWith = null; public String SettingIDEndsWith = null; public String SettingIDContains = null; public String SettingIDLike = null; public ArrayList SettingIDBetween = null; public ArrayList SettingIDIn = null; public Date LastSavedDateTime = null; public Date LastSavedDateTimeGreaterThanOrEqualTo = null; public Date LastSavedDateTimeGreaterThan = null; public Date LastSavedDateTimeLessThan = null; public Date LastSavedDateTimeLessThanOrEqualTo = null; public Date LastSavedDateTimeNotEqualTo = null; public ArrayList LastSavedDateTimeBetween = null; public ArrayList LastSavedDateTimeIn = null; public String SettingDescription = null; public String SettingDescriptionStartsWith = null; public String SettingDescriptionEndsWith = null; public String SettingDescriptionContains = null; public String SettingDescriptionLike = null; public ArrayList SettingDescriptionBetween = null; public ArrayList SettingDescriptionIn = null; public String SettingName = null; public String SettingNameStartsWith = null; public String SettingNameEndsWith = null; public String SettingNameContains = null; public String SettingNameLike = null; public ArrayList SettingNameBetween = null; public ArrayList SettingNameIn = null; public Integer DisplayOrder = null; public Integer DisplayOrderGreaterThanOrEqualTo = null; public Integer DisplayOrderGreaterThan = null; public Integer DisplayOrderLessThan = null; public Integer DisplayOrderLessThanOrEqualTo = null; public Integer DisplayOrderNotEqualTo = null; public ArrayList DisplayOrderBetween = null; public ArrayList DisplayOrderIn = null; public Short CellType = null; public Short CellTypeGreaterThanOrEqualTo = null; public Short CellTypeGreaterThan = null; public Short CellTypeLessThan = null; public Short CellTypeLessThanOrEqualTo = null; public Short CellTypeNotEqualTo = null; public ArrayList CellTypeBetween = null; public ArrayList CellTypeIn = null; public String ScriptFormatCell = null; public String ScriptFormatCellStartsWith = null; public String ScriptFormatCellEndsWith = null; public String ScriptFormatCellContains = null; public String ScriptFormatCellLike = null; public ArrayList ScriptFormatCellBetween = null; public ArrayList ScriptFormatCellIn = null; public String ScriptButtonClicked = null; public String ScriptButtonClickedStartsWith = null; public String ScriptButtonClickedEndsWith = null; public String ScriptButtonClickedContains = null; public String ScriptButtonClickedLike = null; public ArrayList ScriptButtonClickedBetween = null; public ArrayList ScriptButtonClickedIn = null; public String ScriptReadData = null; public String ScriptReadDataStartsWith = null; public String ScriptReadDataEndsWith = null; public String ScriptReadDataContains = null; public String ScriptReadDataLike = null; public ArrayList ScriptReadDataBetween = null; public ArrayList ScriptReadDataIn = null; public String GridHandlerCode = null; public String GridHandlerCodeStartsWith = null; public String GridHandlerCodeEndsWith = null; public String GridHandlerCodeContains = null; public String GridHandlerCodeLike = null; public ArrayList GridHandlerCodeBetween = null; public ArrayList GridHandlerCodeIn = null; public UUID SY_Plugin_RecID = null; public ArrayList SY_Plugin_RecIDIn = null; public String getSettingID() { return SettingID; } public JB_EstimateCustomSettingQuery setSettingID(String value) { this.SettingID = value; return this; } public String getSettingIDStartsWith() { return SettingIDStartsWith; } public JB_EstimateCustomSettingQuery setSettingIDStartsWith(String value) { this.SettingIDStartsWith = value; return this; } public String getSettingIDEndsWith() { return SettingIDEndsWith; } public JB_EstimateCustomSettingQuery setSettingIDEndsWith(String value) { this.SettingIDEndsWith = value; return this; } public String getSettingIDContains() { return SettingIDContains; } public JB_EstimateCustomSettingQuery setSettingIDContains(String value) { this.SettingIDContains = value; return this; } public String getSettingIDLike() { return SettingIDLike; } public JB_EstimateCustomSettingQuery setSettingIDLike(String value) { this.SettingIDLike = value; return this; } public ArrayList getSettingIDBetween() { return SettingIDBetween; } public JB_EstimateCustomSettingQuery setSettingIDBetween(ArrayList value) { this.SettingIDBetween = value; return this; } public ArrayList getSettingIDIn() { return SettingIDIn; } public JB_EstimateCustomSettingQuery setSettingIDIn(ArrayList value) { this.SettingIDIn = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public JB_EstimateCustomSettingQuery setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getLastSavedDateTimeGreaterThanOrEqualTo() { return LastSavedDateTimeGreaterThanOrEqualTo; } public JB_EstimateCustomSettingQuery setLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.LastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeGreaterThan() { return LastSavedDateTimeGreaterThan; } public JB_EstimateCustomSettingQuery setLastSavedDateTimeGreaterThan(Date value) { this.LastSavedDateTimeGreaterThan = value; return this; } public Date getLastSavedDateTimeLessThan() { return LastSavedDateTimeLessThan; } public JB_EstimateCustomSettingQuery setLastSavedDateTimeLessThan(Date value) { this.LastSavedDateTimeLessThan = value; return this; } public Date getLastSavedDateTimeLessThanOrEqualTo() { return LastSavedDateTimeLessThanOrEqualTo; } public JB_EstimateCustomSettingQuery setLastSavedDateTimeLessThanOrEqualTo(Date value) { this.LastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeNotEqualTo() { return LastSavedDateTimeNotEqualTo; } public JB_EstimateCustomSettingQuery setLastSavedDateTimeNotEqualTo(Date value) { this.LastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getLastSavedDateTimeBetween() { return LastSavedDateTimeBetween; } public JB_EstimateCustomSettingQuery setLastSavedDateTimeBetween(ArrayList value) { this.LastSavedDateTimeBetween = value; return this; } public ArrayList getLastSavedDateTimeIn() { return LastSavedDateTimeIn; } public JB_EstimateCustomSettingQuery setLastSavedDateTimeIn(ArrayList value) { this.LastSavedDateTimeIn = value; return this; } public String getSettingDescription() { return SettingDescription; } public JB_EstimateCustomSettingQuery setSettingDescription(String value) { this.SettingDescription = value; return this; } public String getSettingDescriptionStartsWith() { return SettingDescriptionStartsWith; } public JB_EstimateCustomSettingQuery setSettingDescriptionStartsWith(String value) { this.SettingDescriptionStartsWith = value; return this; } public String getSettingDescriptionEndsWith() { return SettingDescriptionEndsWith; } public JB_EstimateCustomSettingQuery setSettingDescriptionEndsWith(String value) { this.SettingDescriptionEndsWith = value; return this; } public String getSettingDescriptionContains() { return SettingDescriptionContains; } public JB_EstimateCustomSettingQuery setSettingDescriptionContains(String value) { this.SettingDescriptionContains = value; return this; } public String getSettingDescriptionLike() { return SettingDescriptionLike; } public JB_EstimateCustomSettingQuery setSettingDescriptionLike(String value) { this.SettingDescriptionLike = value; return this; } public ArrayList getSettingDescriptionBetween() { return SettingDescriptionBetween; } public JB_EstimateCustomSettingQuery setSettingDescriptionBetween(ArrayList value) { this.SettingDescriptionBetween = value; return this; } public ArrayList getSettingDescriptionIn() { return SettingDescriptionIn; } public JB_EstimateCustomSettingQuery setSettingDescriptionIn(ArrayList value) { this.SettingDescriptionIn = value; return this; } public String getSettingName() { return SettingName; } public JB_EstimateCustomSettingQuery setSettingName(String value) { this.SettingName = value; return this; } public String getSettingNameStartsWith() { return SettingNameStartsWith; } public JB_EstimateCustomSettingQuery setSettingNameStartsWith(String value) { this.SettingNameStartsWith = value; return this; } public String getSettingNameEndsWith() { return SettingNameEndsWith; } public JB_EstimateCustomSettingQuery setSettingNameEndsWith(String value) { this.SettingNameEndsWith = value; return this; } public String getSettingNameContains() { return SettingNameContains; } public JB_EstimateCustomSettingQuery setSettingNameContains(String value) { this.SettingNameContains = value; return this; } public String getSettingNameLike() { return SettingNameLike; } public JB_EstimateCustomSettingQuery setSettingNameLike(String value) { this.SettingNameLike = value; return this; } public ArrayList getSettingNameBetween() { return SettingNameBetween; } public JB_EstimateCustomSettingQuery setSettingNameBetween(ArrayList value) { this.SettingNameBetween = value; return this; } public ArrayList getSettingNameIn() { return SettingNameIn; } public JB_EstimateCustomSettingQuery setSettingNameIn(ArrayList value) { this.SettingNameIn = value; return this; } public Integer getDisplayOrder() { return DisplayOrder; } public JB_EstimateCustomSettingQuery setDisplayOrder(Integer value) { this.DisplayOrder = value; return this; } public Integer getDisplayOrderGreaterThanOrEqualTo() { return DisplayOrderGreaterThanOrEqualTo; } public JB_EstimateCustomSettingQuery setDisplayOrderGreaterThanOrEqualTo(Integer value) { this.DisplayOrderGreaterThanOrEqualTo = value; return this; } public Integer getDisplayOrderGreaterThan() { return DisplayOrderGreaterThan; } public JB_EstimateCustomSettingQuery setDisplayOrderGreaterThan(Integer value) { this.DisplayOrderGreaterThan = value; return this; } public Integer getDisplayOrderLessThan() { return DisplayOrderLessThan; } public JB_EstimateCustomSettingQuery setDisplayOrderLessThan(Integer value) { this.DisplayOrderLessThan = value; return this; } public Integer getDisplayOrderLessThanOrEqualTo() { return DisplayOrderLessThanOrEqualTo; } public JB_EstimateCustomSettingQuery setDisplayOrderLessThanOrEqualTo(Integer value) { this.DisplayOrderLessThanOrEqualTo = value; return this; } public Integer getDisplayOrderNotEqualTo() { return DisplayOrderNotEqualTo; } public JB_EstimateCustomSettingQuery setDisplayOrderNotEqualTo(Integer value) { this.DisplayOrderNotEqualTo = value; return this; } public ArrayList getDisplayOrderBetween() { return DisplayOrderBetween; } public JB_EstimateCustomSettingQuery setDisplayOrderBetween(ArrayList value) { this.DisplayOrderBetween = value; return this; } public ArrayList getDisplayOrderIn() { return DisplayOrderIn; } public JB_EstimateCustomSettingQuery setDisplayOrderIn(ArrayList value) { this.DisplayOrderIn = value; return this; } public Short getCellType() { return CellType; } public JB_EstimateCustomSettingQuery setCellType(Short value) { this.CellType = value; return this; } public Short getCellTypeGreaterThanOrEqualTo() { return CellTypeGreaterThanOrEqualTo; } public JB_EstimateCustomSettingQuery setCellTypeGreaterThanOrEqualTo(Short value) { this.CellTypeGreaterThanOrEqualTo = value; return this; } public Short getCellTypeGreaterThan() { return CellTypeGreaterThan; } public JB_EstimateCustomSettingQuery setCellTypeGreaterThan(Short value) { this.CellTypeGreaterThan = value; return this; } public Short getCellTypeLessThan() { return CellTypeLessThan; } public JB_EstimateCustomSettingQuery setCellTypeLessThan(Short value) { this.CellTypeLessThan = value; return this; } public Short getCellTypeLessThanOrEqualTo() { return CellTypeLessThanOrEqualTo; } public JB_EstimateCustomSettingQuery setCellTypeLessThanOrEqualTo(Short value) { this.CellTypeLessThanOrEqualTo = value; return this; } public Short getCellTypeNotEqualTo() { return CellTypeNotEqualTo; } public JB_EstimateCustomSettingQuery setCellTypeNotEqualTo(Short value) { this.CellTypeNotEqualTo = value; return this; } public ArrayList getCellTypeBetween() { return CellTypeBetween; } public JB_EstimateCustomSettingQuery setCellTypeBetween(ArrayList value) { this.CellTypeBetween = value; return this; } public ArrayList getCellTypeIn() { return CellTypeIn; } public JB_EstimateCustomSettingQuery setCellTypeIn(ArrayList value) { this.CellTypeIn = value; return this; } public String getScriptFormatCell() { return ScriptFormatCell; } public JB_EstimateCustomSettingQuery setScriptFormatCell(String value) { this.ScriptFormatCell = value; return this; } public String getScriptFormatCellStartsWith() { return ScriptFormatCellStartsWith; } public JB_EstimateCustomSettingQuery setScriptFormatCellStartsWith(String value) { this.ScriptFormatCellStartsWith = value; return this; } public String getScriptFormatCellEndsWith() { return ScriptFormatCellEndsWith; } public JB_EstimateCustomSettingQuery setScriptFormatCellEndsWith(String value) { this.ScriptFormatCellEndsWith = value; return this; } public String getScriptFormatCellContains() { return ScriptFormatCellContains; } public JB_EstimateCustomSettingQuery setScriptFormatCellContains(String value) { this.ScriptFormatCellContains = value; return this; } public String getScriptFormatCellLike() { return ScriptFormatCellLike; } public JB_EstimateCustomSettingQuery setScriptFormatCellLike(String value) { this.ScriptFormatCellLike = value; return this; } public ArrayList getScriptFormatCellBetween() { return ScriptFormatCellBetween; } public JB_EstimateCustomSettingQuery setScriptFormatCellBetween(ArrayList value) { this.ScriptFormatCellBetween = value; return this; } public ArrayList getScriptFormatCellIn() { return ScriptFormatCellIn; } public JB_EstimateCustomSettingQuery setScriptFormatCellIn(ArrayList value) { this.ScriptFormatCellIn = value; return this; } public String getScriptButtonClicked() { return ScriptButtonClicked; } public JB_EstimateCustomSettingQuery setScriptButtonClicked(String value) { this.ScriptButtonClicked = value; return this; } public String getScriptButtonClickedStartsWith() { return ScriptButtonClickedStartsWith; } public JB_EstimateCustomSettingQuery setScriptButtonClickedStartsWith(String value) { this.ScriptButtonClickedStartsWith = value; return this; } public String getScriptButtonClickedEndsWith() { return ScriptButtonClickedEndsWith; } public JB_EstimateCustomSettingQuery setScriptButtonClickedEndsWith(String value) { this.ScriptButtonClickedEndsWith = value; return this; } public String getScriptButtonClickedContains() { return ScriptButtonClickedContains; } public JB_EstimateCustomSettingQuery setScriptButtonClickedContains(String value) { this.ScriptButtonClickedContains = value; return this; } public String getScriptButtonClickedLike() { return ScriptButtonClickedLike; } public JB_EstimateCustomSettingQuery setScriptButtonClickedLike(String value) { this.ScriptButtonClickedLike = value; return this; } public ArrayList getScriptButtonClickedBetween() { return ScriptButtonClickedBetween; } public JB_EstimateCustomSettingQuery setScriptButtonClickedBetween(ArrayList value) { this.ScriptButtonClickedBetween = value; return this; } public ArrayList getScriptButtonClickedIn() { return ScriptButtonClickedIn; } public JB_EstimateCustomSettingQuery setScriptButtonClickedIn(ArrayList value) { this.ScriptButtonClickedIn = value; return this; } public String getScriptReadData() { return ScriptReadData; } public JB_EstimateCustomSettingQuery setScriptReadData(String value) { this.ScriptReadData = value; return this; } public String getScriptReadDataStartsWith() { return ScriptReadDataStartsWith; } public JB_EstimateCustomSettingQuery setScriptReadDataStartsWith(String value) { this.ScriptReadDataStartsWith = value; return this; } public String getScriptReadDataEndsWith() { return ScriptReadDataEndsWith; } public JB_EstimateCustomSettingQuery setScriptReadDataEndsWith(String value) { this.ScriptReadDataEndsWith = value; return this; } public String getScriptReadDataContains() { return ScriptReadDataContains; } public JB_EstimateCustomSettingQuery setScriptReadDataContains(String value) { this.ScriptReadDataContains = value; return this; } public String getScriptReadDataLike() { return ScriptReadDataLike; } public JB_EstimateCustomSettingQuery setScriptReadDataLike(String value) { this.ScriptReadDataLike = value; return this; } public ArrayList getScriptReadDataBetween() { return ScriptReadDataBetween; } public JB_EstimateCustomSettingQuery setScriptReadDataBetween(ArrayList value) { this.ScriptReadDataBetween = value; return this; } public ArrayList getScriptReadDataIn() { return ScriptReadDataIn; } public JB_EstimateCustomSettingQuery setScriptReadDataIn(ArrayList value) { this.ScriptReadDataIn = value; return this; } public String getGridHandlerCode() { return GridHandlerCode; } public JB_EstimateCustomSettingQuery setGridHandlerCode(String value) { this.GridHandlerCode = value; return this; } public String getGridHandlerCodeStartsWith() { return GridHandlerCodeStartsWith; } public JB_EstimateCustomSettingQuery setGridHandlerCodeStartsWith(String value) { this.GridHandlerCodeStartsWith = value; return this; } public String getGridHandlerCodeEndsWith() { return GridHandlerCodeEndsWith; } public JB_EstimateCustomSettingQuery setGridHandlerCodeEndsWith(String value) { this.GridHandlerCodeEndsWith = value; return this; } public String getGridHandlerCodeContains() { return GridHandlerCodeContains; } public JB_EstimateCustomSettingQuery setGridHandlerCodeContains(String value) { this.GridHandlerCodeContains = value; return this; } public String getGridHandlerCodeLike() { return GridHandlerCodeLike; } public JB_EstimateCustomSettingQuery setGridHandlerCodeLike(String value) { this.GridHandlerCodeLike = value; return this; } public ArrayList getGridHandlerCodeBetween() { return GridHandlerCodeBetween; } public JB_EstimateCustomSettingQuery setGridHandlerCodeBetween(ArrayList value) { this.GridHandlerCodeBetween = value; return this; } public ArrayList getGridHandlerCodeIn() { return GridHandlerCodeIn; } public JB_EstimateCustomSettingQuery setGridHandlerCodeIn(ArrayList value) { this.GridHandlerCodeIn = value; return this; } public UUID getSyPluginRecID() { return SY_Plugin_RecID; } public JB_EstimateCustomSettingQuery setSyPluginRecID(UUID value) { this.SY_Plugin_RecID = value; return this; } public ArrayList getSyPluginRecIDIn() { return SY_Plugin_RecIDIn; } public JB_EstimateCustomSettingQuery setSyPluginRecIDIn(ArrayList value) { this.SY_Plugin_RecIDIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class JB_EstimateCustomSettingValuesQuery extends QueryDb implements IReturn> { public String SettingValueID = null; public String SettingValueIDStartsWith = null; public String SettingValueIDEndsWith = null; public String SettingValueIDContains = null; public String SettingValueIDLike = null; public ArrayList SettingValueIDBetween = null; public ArrayList SettingValueIDIn = null; public String SettingID = null; public String SettingIDStartsWith = null; public String SettingIDEndsWith = null; public String SettingIDContains = null; public String SettingIDLike = null; public ArrayList SettingIDBetween = null; public ArrayList SettingIDIn = null; public String JB_Estimates_RecID = null; public String JB_Estimates_RecIDStartsWith = null; public String JB_Estimates_RecIDEndsWith = null; public String JB_Estimates_RecIDContains = null; public String JB_Estimates_RecIDLike = null; public ArrayList JB_Estimates_RecIDBetween = null; public ArrayList JB_Estimates_RecIDIn = null; public String Contents = null; public String ContentsStartsWith = null; public String ContentsEndsWith = null; public String ContentsContains = null; public String ContentsLike = null; public ArrayList ContentsBetween = null; public ArrayList ContentsIn = null; public Date LastSavedDateTime = null; public Date LastSavedDateTimeGreaterThanOrEqualTo = null; public Date LastSavedDateTimeGreaterThan = null; public Date LastSavedDateTimeLessThan = null; public Date LastSavedDateTimeLessThanOrEqualTo = null; public Date LastSavedDateTimeNotEqualTo = null; public ArrayList LastSavedDateTimeBetween = null; public ArrayList LastSavedDateTimeIn = null; public String getSettingValueID() { return SettingValueID; } public JB_EstimateCustomSettingValuesQuery setSettingValueID(String value) { this.SettingValueID = value; return this; } public String getSettingValueIDStartsWith() { return SettingValueIDStartsWith; } public JB_EstimateCustomSettingValuesQuery setSettingValueIDStartsWith(String value) { this.SettingValueIDStartsWith = value; return this; } public String getSettingValueIDEndsWith() { return SettingValueIDEndsWith; } public JB_EstimateCustomSettingValuesQuery setSettingValueIDEndsWith(String value) { this.SettingValueIDEndsWith = value; return this; } public String getSettingValueIDContains() { return SettingValueIDContains; } public JB_EstimateCustomSettingValuesQuery setSettingValueIDContains(String value) { this.SettingValueIDContains = value; return this; } public String getSettingValueIDLike() { return SettingValueIDLike; } public JB_EstimateCustomSettingValuesQuery setSettingValueIDLike(String value) { this.SettingValueIDLike = value; return this; } public ArrayList getSettingValueIDBetween() { return SettingValueIDBetween; } public JB_EstimateCustomSettingValuesQuery setSettingValueIDBetween(ArrayList value) { this.SettingValueIDBetween = value; return this; } public ArrayList getSettingValueIDIn() { return SettingValueIDIn; } public JB_EstimateCustomSettingValuesQuery setSettingValueIDIn(ArrayList value) { this.SettingValueIDIn = value; return this; } public String getSettingID() { return SettingID; } public JB_EstimateCustomSettingValuesQuery setSettingID(String value) { this.SettingID = value; return this; } public String getSettingIDStartsWith() { return SettingIDStartsWith; } public JB_EstimateCustomSettingValuesQuery setSettingIDStartsWith(String value) { this.SettingIDStartsWith = value; return this; } public String getSettingIDEndsWith() { return SettingIDEndsWith; } public JB_EstimateCustomSettingValuesQuery setSettingIDEndsWith(String value) { this.SettingIDEndsWith = value; return this; } public String getSettingIDContains() { return SettingIDContains; } public JB_EstimateCustomSettingValuesQuery setSettingIDContains(String value) { this.SettingIDContains = value; return this; } public String getSettingIDLike() { return SettingIDLike; } public JB_EstimateCustomSettingValuesQuery setSettingIDLike(String value) { this.SettingIDLike = value; return this; } public ArrayList getSettingIDBetween() { return SettingIDBetween; } public JB_EstimateCustomSettingValuesQuery setSettingIDBetween(ArrayList value) { this.SettingIDBetween = value; return this; } public ArrayList getSettingIDIn() { return SettingIDIn; } public JB_EstimateCustomSettingValuesQuery setSettingIDIn(ArrayList value) { this.SettingIDIn = value; return this; } public String getJbEstimatesRecID() { return JB_Estimates_RecID; } public JB_EstimateCustomSettingValuesQuery setJbEstimatesRecID(String value) { this.JB_Estimates_RecID = value; return this; } public String getJbEstimatesRecIDStartsWith() { return JB_Estimates_RecIDStartsWith; } public JB_EstimateCustomSettingValuesQuery setJbEstimatesRecIDStartsWith(String value) { this.JB_Estimates_RecIDStartsWith = value; return this; } public String getJbEstimatesRecIDEndsWith() { return JB_Estimates_RecIDEndsWith; } public JB_EstimateCustomSettingValuesQuery setJbEstimatesRecIDEndsWith(String value) { this.JB_Estimates_RecIDEndsWith = value; return this; } public String getJbEstimatesRecIDContains() { return JB_Estimates_RecIDContains; } public JB_EstimateCustomSettingValuesQuery setJbEstimatesRecIDContains(String value) { this.JB_Estimates_RecIDContains = value; return this; } public String getJbEstimatesRecIDLike() { return JB_Estimates_RecIDLike; } public JB_EstimateCustomSettingValuesQuery setJbEstimatesRecIDLike(String value) { this.JB_Estimates_RecIDLike = value; return this; } public ArrayList getJbEstimatesRecIDBetween() { return JB_Estimates_RecIDBetween; } public JB_EstimateCustomSettingValuesQuery setJbEstimatesRecIDBetween(ArrayList value) { this.JB_Estimates_RecIDBetween = value; return this; } public ArrayList getJbEstimatesRecIDIn() { return JB_Estimates_RecIDIn; } public JB_EstimateCustomSettingValuesQuery setJbEstimatesRecIDIn(ArrayList value) { this.JB_Estimates_RecIDIn = value; return this; } public String getContents() { return Contents; } public JB_EstimateCustomSettingValuesQuery setContents(String value) { this.Contents = value; return this; } public String getContentsStartsWith() { return ContentsStartsWith; } public JB_EstimateCustomSettingValuesQuery setContentsStartsWith(String value) { this.ContentsStartsWith = value; return this; } public String getContentsEndsWith() { return ContentsEndsWith; } public JB_EstimateCustomSettingValuesQuery setContentsEndsWith(String value) { this.ContentsEndsWith = value; return this; } public String getContentsContains() { return ContentsContains; } public JB_EstimateCustomSettingValuesQuery setContentsContains(String value) { this.ContentsContains = value; return this; } public String getContentsLike() { return ContentsLike; } public JB_EstimateCustomSettingValuesQuery setContentsLike(String value) { this.ContentsLike = value; return this; } public ArrayList getContentsBetween() { return ContentsBetween; } public JB_EstimateCustomSettingValuesQuery setContentsBetween(ArrayList value) { this.ContentsBetween = value; return this; } public ArrayList getContentsIn() { return ContentsIn; } public JB_EstimateCustomSettingValuesQuery setContentsIn(ArrayList value) { this.ContentsIn = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public JB_EstimateCustomSettingValuesQuery setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getLastSavedDateTimeGreaterThanOrEqualTo() { return LastSavedDateTimeGreaterThanOrEqualTo; } public JB_EstimateCustomSettingValuesQuery setLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.LastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeGreaterThan() { return LastSavedDateTimeGreaterThan; } public JB_EstimateCustomSettingValuesQuery setLastSavedDateTimeGreaterThan(Date value) { this.LastSavedDateTimeGreaterThan = value; return this; } public Date getLastSavedDateTimeLessThan() { return LastSavedDateTimeLessThan; } public JB_EstimateCustomSettingValuesQuery setLastSavedDateTimeLessThan(Date value) { this.LastSavedDateTimeLessThan = value; return this; } public Date getLastSavedDateTimeLessThanOrEqualTo() { return LastSavedDateTimeLessThanOrEqualTo; } public JB_EstimateCustomSettingValuesQuery setLastSavedDateTimeLessThanOrEqualTo(Date value) { this.LastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeNotEqualTo() { return LastSavedDateTimeNotEqualTo; } public JB_EstimateCustomSettingValuesQuery setLastSavedDateTimeNotEqualTo(Date value) { this.LastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getLastSavedDateTimeBetween() { return LastSavedDateTimeBetween; } public JB_EstimateCustomSettingValuesQuery setLastSavedDateTimeBetween(ArrayList value) { this.LastSavedDateTimeBetween = value; return this; } public ArrayList getLastSavedDateTimeIn() { return LastSavedDateTimeIn; } public JB_EstimateCustomSettingValuesQuery setLastSavedDateTimeIn(ArrayList value) { this.LastSavedDateTimeIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class JB_EstimateFinishedGoodLinesQuery extends QueryDb implements IReturn> { public String RecID = null; public String RecIDStartsWith = null; public String RecIDEndsWith = null; public String RecIDContains = null; public String RecIDLike = null; public ArrayList RecIDBetween = null; public ArrayList RecIDIn = null; public String JB_Estimates_RecID = null; public String JB_Estimates_RecIDStartsWith = null; public String JB_Estimates_RecIDEndsWith = null; public String JB_Estimates_RecIDContains = null; public String JB_Estimates_RecIDLike = null; public ArrayList JB_Estimates_RecIDBetween = null; public ArrayList JB_Estimates_RecIDIn = null; public String JB_JobStages_RecID = null; public String JB_JobStages_RecIDStartsWith = null; public String JB_JobStages_RecIDEndsWith = null; public String JB_JobStages_RecIDContains = null; public String JB_JobStages_RecIDLike = null; public ArrayList JB_JobStages_RecIDBetween = null; public ArrayList JB_JobStages_RecIDIn = null; public String IN_Main_RecID = null; public String IN_Main_RecIDStartsWith = null; public String IN_Main_RecIDEndsWith = null; public String IN_Main_RecIDContains = null; public String IN_Main_RecIDLike = null; public ArrayList IN_Main_RecIDBetween = null; public ArrayList IN_Main_RecIDIn = null; public Date TransactionDate = null; public Date TransactionDateGreaterThanOrEqualTo = null; public Date TransactionDateGreaterThan = null; public Date TransactionDateLessThan = null; public Date TransactionDateLessThanOrEqualTo = null; public Date TransactionDateNotEqualTo = null; public ArrayList TransactionDateBetween = null; public ArrayList TransactionDateIn = null; public BigDecimal Quantity = null; public BigDecimal QuantityGreaterThanOrEqualTo = null; public BigDecimal QuantityGreaterThan = null; public BigDecimal QuantityLessThan = null; public BigDecimal QuantityLessThanOrEqualTo = null; public BigDecimal QuantityNotEqualTo = null; public ArrayList QuantityBetween = null; public ArrayList QuantityIn = null; public String Remark = null; public String RemarkStartsWith = null; public String RemarkEndsWith = null; public String RemarkContains = null; public String RemarkLike = null; public ArrayList RemarkBetween = null; public ArrayList RemarkIn = null; public Integer ItemNo = null; public Integer ItemNoGreaterThanOrEqualTo = null; public Integer ItemNoGreaterThan = null; public Integer ItemNoLessThan = null; public Integer ItemNoLessThanOrEqualTo = null; public Integer ItemNoNotEqualTo = null; public ArrayList ItemNoBetween = null; public ArrayList ItemNoIn = null; public Date LastSavedDateTime = null; public Date LastSavedDateTimeGreaterThanOrEqualTo = null; public Date LastSavedDateTimeGreaterThan = null; public Date LastSavedDateTimeLessThan = null; public Date LastSavedDateTimeLessThanOrEqualTo = null; public Date LastSavedDateTimeNotEqualTo = null; public ArrayList LastSavedDateTimeBetween = null; public ArrayList LastSavedDateTimeIn = null; public String HR_Staff_RecID = null; public String HR_Staff_RecIDStartsWith = null; public String HR_Staff_RecIDEndsWith = null; public String HR_Staff_RecIDContains = null; public String HR_Staff_RecIDLike = null; public ArrayList HR_Staff_RecIDBetween = null; public ArrayList HR_Staff_RecIDIn = null; public ArrayList RowHash = null; public String JB_EstimateLines_RecID = null; public String JB_EstimateLines_RecIDStartsWith = null; public String JB_EstimateLines_RecIDEndsWith = null; public String JB_EstimateLines_RecIDContains = null; public String JB_EstimateLines_RecIDLike = null; public ArrayList JB_EstimateLines_RecIDBetween = null; public ArrayList JB_EstimateLines_RecIDIn = null; public String getRecID() { return RecID; } public JB_EstimateFinishedGoodLinesQuery setRecID(String value) { this.RecID = value; return this; } public String getRecIDStartsWith() { return RecIDStartsWith; } public JB_EstimateFinishedGoodLinesQuery setRecIDStartsWith(String value) { this.RecIDStartsWith = value; return this; } public String getRecIDEndsWith() { return RecIDEndsWith; } public JB_EstimateFinishedGoodLinesQuery setRecIDEndsWith(String value) { this.RecIDEndsWith = value; return this; } public String getRecIDContains() { return RecIDContains; } public JB_EstimateFinishedGoodLinesQuery setRecIDContains(String value) { this.RecIDContains = value; return this; } public String getRecIDLike() { return RecIDLike; } public JB_EstimateFinishedGoodLinesQuery setRecIDLike(String value) { this.RecIDLike = value; return this; } public ArrayList getRecIDBetween() { return RecIDBetween; } public JB_EstimateFinishedGoodLinesQuery setRecIDBetween(ArrayList value) { this.RecIDBetween = value; return this; } public ArrayList getRecIDIn() { return RecIDIn; } public JB_EstimateFinishedGoodLinesQuery setRecIDIn(ArrayList value) { this.RecIDIn = value; return this; } public String getJbEstimatesRecID() { return JB_Estimates_RecID; } public JB_EstimateFinishedGoodLinesQuery setJbEstimatesRecID(String value) { this.JB_Estimates_RecID = value; return this; } public String getJbEstimatesRecIDStartsWith() { return JB_Estimates_RecIDStartsWith; } public JB_EstimateFinishedGoodLinesQuery setJbEstimatesRecIDStartsWith(String value) { this.JB_Estimates_RecIDStartsWith = value; return this; } public String getJbEstimatesRecIDEndsWith() { return JB_Estimates_RecIDEndsWith; } public JB_EstimateFinishedGoodLinesQuery setJbEstimatesRecIDEndsWith(String value) { this.JB_Estimates_RecIDEndsWith = value; return this; } public String getJbEstimatesRecIDContains() { return JB_Estimates_RecIDContains; } public JB_EstimateFinishedGoodLinesQuery setJbEstimatesRecIDContains(String value) { this.JB_Estimates_RecIDContains = value; return this; } public String getJbEstimatesRecIDLike() { return JB_Estimates_RecIDLike; } public JB_EstimateFinishedGoodLinesQuery setJbEstimatesRecIDLike(String value) { this.JB_Estimates_RecIDLike = value; return this; } public ArrayList getJbEstimatesRecIDBetween() { return JB_Estimates_RecIDBetween; } public JB_EstimateFinishedGoodLinesQuery setJbEstimatesRecIDBetween(ArrayList value) { this.JB_Estimates_RecIDBetween = value; return this; } public ArrayList getJbEstimatesRecIDIn() { return JB_Estimates_RecIDIn; } public JB_EstimateFinishedGoodLinesQuery setJbEstimatesRecIDIn(ArrayList value) { this.JB_Estimates_RecIDIn = value; return this; } public String getJbJobStagesRecID() { return JB_JobStages_RecID; } public JB_EstimateFinishedGoodLinesQuery setJbJobStagesRecID(String value) { this.JB_JobStages_RecID = value; return this; } public String getJbJobStagesRecIDStartsWith() { return JB_JobStages_RecIDStartsWith; } public JB_EstimateFinishedGoodLinesQuery setJbJobStagesRecIDStartsWith(String value) { this.JB_JobStages_RecIDStartsWith = value; return this; } public String getJbJobStagesRecIDEndsWith() { return JB_JobStages_RecIDEndsWith; } public JB_EstimateFinishedGoodLinesQuery setJbJobStagesRecIDEndsWith(String value) { this.JB_JobStages_RecIDEndsWith = value; return this; } public String getJbJobStagesRecIDContains() { return JB_JobStages_RecIDContains; } public JB_EstimateFinishedGoodLinesQuery setJbJobStagesRecIDContains(String value) { this.JB_JobStages_RecIDContains = value; return this; } public String getJbJobStagesRecIDLike() { return JB_JobStages_RecIDLike; } public JB_EstimateFinishedGoodLinesQuery setJbJobStagesRecIDLike(String value) { this.JB_JobStages_RecIDLike = value; return this; } public ArrayList getJbJobStagesRecIDBetween() { return JB_JobStages_RecIDBetween; } public JB_EstimateFinishedGoodLinesQuery setJbJobStagesRecIDBetween(ArrayList value) { this.JB_JobStages_RecIDBetween = value; return this; } public ArrayList getJbJobStagesRecIDIn() { return JB_JobStages_RecIDIn; } public JB_EstimateFinishedGoodLinesQuery setJbJobStagesRecIDIn(ArrayList value) { this.JB_JobStages_RecIDIn = value; return this; } public String getInMainRecID() { return IN_Main_RecID; } public JB_EstimateFinishedGoodLinesQuery setInMainRecID(String value) { this.IN_Main_RecID = value; return this; } public String getInMainRecIDStartsWith() { return IN_Main_RecIDStartsWith; } public JB_EstimateFinishedGoodLinesQuery setInMainRecIDStartsWith(String value) { this.IN_Main_RecIDStartsWith = value; return this; } public String getInMainRecIDEndsWith() { return IN_Main_RecIDEndsWith; } public JB_EstimateFinishedGoodLinesQuery setInMainRecIDEndsWith(String value) { this.IN_Main_RecIDEndsWith = value; return this; } public String getInMainRecIDContains() { return IN_Main_RecIDContains; } public JB_EstimateFinishedGoodLinesQuery setInMainRecIDContains(String value) { this.IN_Main_RecIDContains = value; return this; } public String getInMainRecIDLike() { return IN_Main_RecIDLike; } public JB_EstimateFinishedGoodLinesQuery setInMainRecIDLike(String value) { this.IN_Main_RecIDLike = value; return this; } public ArrayList getInMainRecIDBetween() { return IN_Main_RecIDBetween; } public JB_EstimateFinishedGoodLinesQuery setInMainRecIDBetween(ArrayList value) { this.IN_Main_RecIDBetween = value; return this; } public ArrayList getInMainRecIDIn() { return IN_Main_RecIDIn; } public JB_EstimateFinishedGoodLinesQuery setInMainRecIDIn(ArrayList value) { this.IN_Main_RecIDIn = value; return this; } public Date getTransactionDate() { return TransactionDate; } public JB_EstimateFinishedGoodLinesQuery setTransactionDate(Date value) { this.TransactionDate = value; return this; } public Date getTransactionDateGreaterThanOrEqualTo() { return TransactionDateGreaterThanOrEqualTo; } public JB_EstimateFinishedGoodLinesQuery setTransactionDateGreaterThanOrEqualTo(Date value) { this.TransactionDateGreaterThanOrEqualTo = value; return this; } public Date getTransactionDateGreaterThan() { return TransactionDateGreaterThan; } public JB_EstimateFinishedGoodLinesQuery setTransactionDateGreaterThan(Date value) { this.TransactionDateGreaterThan = value; return this; } public Date getTransactionDateLessThan() { return TransactionDateLessThan; } public JB_EstimateFinishedGoodLinesQuery setTransactionDateLessThan(Date value) { this.TransactionDateLessThan = value; return this; } public Date getTransactionDateLessThanOrEqualTo() { return TransactionDateLessThanOrEqualTo; } public JB_EstimateFinishedGoodLinesQuery setTransactionDateLessThanOrEqualTo(Date value) { this.TransactionDateLessThanOrEqualTo = value; return this; } public Date getTransactionDateNotEqualTo() { return TransactionDateNotEqualTo; } public JB_EstimateFinishedGoodLinesQuery setTransactionDateNotEqualTo(Date value) { this.TransactionDateNotEqualTo = value; return this; } public ArrayList getTransactionDateBetween() { return TransactionDateBetween; } public JB_EstimateFinishedGoodLinesQuery setTransactionDateBetween(ArrayList value) { this.TransactionDateBetween = value; return this; } public ArrayList getTransactionDateIn() { return TransactionDateIn; } public JB_EstimateFinishedGoodLinesQuery setTransactionDateIn(ArrayList value) { this.TransactionDateIn = value; return this; } public BigDecimal getQuantity() { return Quantity; } public JB_EstimateFinishedGoodLinesQuery setQuantity(BigDecimal value) { this.Quantity = value; return this; } public BigDecimal getQuantityGreaterThanOrEqualTo() { return QuantityGreaterThanOrEqualTo; } public JB_EstimateFinishedGoodLinesQuery setQuantityGreaterThanOrEqualTo(BigDecimal value) { this.QuantityGreaterThanOrEqualTo = value; return this; } public BigDecimal getQuantityGreaterThan() { return QuantityGreaterThan; } public JB_EstimateFinishedGoodLinesQuery setQuantityGreaterThan(BigDecimal value) { this.QuantityGreaterThan = value; return this; } public BigDecimal getQuantityLessThan() { return QuantityLessThan; } public JB_EstimateFinishedGoodLinesQuery setQuantityLessThan(BigDecimal value) { this.QuantityLessThan = value; return this; } public BigDecimal getQuantityLessThanOrEqualTo() { return QuantityLessThanOrEqualTo; } public JB_EstimateFinishedGoodLinesQuery setQuantityLessThanOrEqualTo(BigDecimal value) { this.QuantityLessThanOrEqualTo = value; return this; } public BigDecimal getQuantityNotEqualTo() { return QuantityNotEqualTo; } public JB_EstimateFinishedGoodLinesQuery setQuantityNotEqualTo(BigDecimal value) { this.QuantityNotEqualTo = value; return this; } public ArrayList getQuantityBetween() { return QuantityBetween; } public JB_EstimateFinishedGoodLinesQuery setQuantityBetween(ArrayList value) { this.QuantityBetween = value; return this; } public ArrayList getQuantityIn() { return QuantityIn; } public JB_EstimateFinishedGoodLinesQuery setQuantityIn(ArrayList value) { this.QuantityIn = value; return this; } public String getRemark() { return Remark; } public JB_EstimateFinishedGoodLinesQuery setRemark(String value) { this.Remark = value; return this; } public String getRemarkStartsWith() { return RemarkStartsWith; } public JB_EstimateFinishedGoodLinesQuery setRemarkStartsWith(String value) { this.RemarkStartsWith = value; return this; } public String getRemarkEndsWith() { return RemarkEndsWith; } public JB_EstimateFinishedGoodLinesQuery setRemarkEndsWith(String value) { this.RemarkEndsWith = value; return this; } public String getRemarkContains() { return RemarkContains; } public JB_EstimateFinishedGoodLinesQuery setRemarkContains(String value) { this.RemarkContains = value; return this; } public String getRemarkLike() { return RemarkLike; } public JB_EstimateFinishedGoodLinesQuery setRemarkLike(String value) { this.RemarkLike = value; return this; } public ArrayList getRemarkBetween() { return RemarkBetween; } public JB_EstimateFinishedGoodLinesQuery setRemarkBetween(ArrayList value) { this.RemarkBetween = value; return this; } public ArrayList getRemarkIn() { return RemarkIn; } public JB_EstimateFinishedGoodLinesQuery setRemarkIn(ArrayList value) { this.RemarkIn = value; return this; } public Integer getItemNo() { return ItemNo; } public JB_EstimateFinishedGoodLinesQuery setItemNo(Integer value) { this.ItemNo = value; return this; } public Integer getItemNoGreaterThanOrEqualTo() { return ItemNoGreaterThanOrEqualTo; } public JB_EstimateFinishedGoodLinesQuery setItemNoGreaterThanOrEqualTo(Integer value) { this.ItemNoGreaterThanOrEqualTo = value; return this; } public Integer getItemNoGreaterThan() { return ItemNoGreaterThan; } public JB_EstimateFinishedGoodLinesQuery setItemNoGreaterThan(Integer value) { this.ItemNoGreaterThan = value; return this; } public Integer getItemNoLessThan() { return ItemNoLessThan; } public JB_EstimateFinishedGoodLinesQuery setItemNoLessThan(Integer value) { this.ItemNoLessThan = value; return this; } public Integer getItemNoLessThanOrEqualTo() { return ItemNoLessThanOrEqualTo; } public JB_EstimateFinishedGoodLinesQuery setItemNoLessThanOrEqualTo(Integer value) { this.ItemNoLessThanOrEqualTo = value; return this; } public Integer getItemNoNotEqualTo() { return ItemNoNotEqualTo; } public JB_EstimateFinishedGoodLinesQuery setItemNoNotEqualTo(Integer value) { this.ItemNoNotEqualTo = value; return this; } public ArrayList getItemNoBetween() { return ItemNoBetween; } public JB_EstimateFinishedGoodLinesQuery setItemNoBetween(ArrayList value) { this.ItemNoBetween = value; return this; } public ArrayList getItemNoIn() { return ItemNoIn; } public JB_EstimateFinishedGoodLinesQuery setItemNoIn(ArrayList value) { this.ItemNoIn = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public JB_EstimateFinishedGoodLinesQuery setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getLastSavedDateTimeGreaterThanOrEqualTo() { return LastSavedDateTimeGreaterThanOrEqualTo; } public JB_EstimateFinishedGoodLinesQuery setLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.LastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeGreaterThan() { return LastSavedDateTimeGreaterThan; } public JB_EstimateFinishedGoodLinesQuery setLastSavedDateTimeGreaterThan(Date value) { this.LastSavedDateTimeGreaterThan = value; return this; } public Date getLastSavedDateTimeLessThan() { return LastSavedDateTimeLessThan; } public JB_EstimateFinishedGoodLinesQuery setLastSavedDateTimeLessThan(Date value) { this.LastSavedDateTimeLessThan = value; return this; } public Date getLastSavedDateTimeLessThanOrEqualTo() { return LastSavedDateTimeLessThanOrEqualTo; } public JB_EstimateFinishedGoodLinesQuery setLastSavedDateTimeLessThanOrEqualTo(Date value) { this.LastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeNotEqualTo() { return LastSavedDateTimeNotEqualTo; } public JB_EstimateFinishedGoodLinesQuery setLastSavedDateTimeNotEqualTo(Date value) { this.LastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getLastSavedDateTimeBetween() { return LastSavedDateTimeBetween; } public JB_EstimateFinishedGoodLinesQuery setLastSavedDateTimeBetween(ArrayList value) { this.LastSavedDateTimeBetween = value; return this; } public ArrayList getLastSavedDateTimeIn() { return LastSavedDateTimeIn; } public JB_EstimateFinishedGoodLinesQuery setLastSavedDateTimeIn(ArrayList value) { this.LastSavedDateTimeIn = value; return this; } public String getHrStaffRecID() { return HR_Staff_RecID; } public JB_EstimateFinishedGoodLinesQuery setHrStaffRecID(String value) { this.HR_Staff_RecID = value; return this; } public String getHrStaffRecIDStartsWith() { return HR_Staff_RecIDStartsWith; } public JB_EstimateFinishedGoodLinesQuery setHrStaffRecIDStartsWith(String value) { this.HR_Staff_RecIDStartsWith = value; return this; } public String getHrStaffRecIDEndsWith() { return HR_Staff_RecIDEndsWith; } public JB_EstimateFinishedGoodLinesQuery setHrStaffRecIDEndsWith(String value) { this.HR_Staff_RecIDEndsWith = value; return this; } public String getHrStaffRecIDContains() { return HR_Staff_RecIDContains; } public JB_EstimateFinishedGoodLinesQuery setHrStaffRecIDContains(String value) { this.HR_Staff_RecIDContains = value; return this; } public String getHrStaffRecIDLike() { return HR_Staff_RecIDLike; } public JB_EstimateFinishedGoodLinesQuery setHrStaffRecIDLike(String value) { this.HR_Staff_RecIDLike = value; return this; } public ArrayList getHrStaffRecIDBetween() { return HR_Staff_RecIDBetween; } public JB_EstimateFinishedGoodLinesQuery setHrStaffRecIDBetween(ArrayList value) { this.HR_Staff_RecIDBetween = value; return this; } public ArrayList getHrStaffRecIDIn() { return HR_Staff_RecIDIn; } public JB_EstimateFinishedGoodLinesQuery setHrStaffRecIDIn(ArrayList value) { this.HR_Staff_RecIDIn = value; return this; } public ArrayList getRowHash() { return RowHash; } public JB_EstimateFinishedGoodLinesQuery setRowHash(ArrayList value) { this.RowHash = value; return this; } public String getJbEstimateLinesRecID() { return JB_EstimateLines_RecID; } public JB_EstimateFinishedGoodLinesQuery setJbEstimateLinesRecID(String value) { this.JB_EstimateLines_RecID = value; return this; } public String getJbEstimateLinesRecIDStartsWith() { return JB_EstimateLines_RecIDStartsWith; } public JB_EstimateFinishedGoodLinesQuery setJbEstimateLinesRecIDStartsWith(String value) { this.JB_EstimateLines_RecIDStartsWith = value; return this; } public String getJbEstimateLinesRecIDEndsWith() { return JB_EstimateLines_RecIDEndsWith; } public JB_EstimateFinishedGoodLinesQuery setJbEstimateLinesRecIDEndsWith(String value) { this.JB_EstimateLines_RecIDEndsWith = value; return this; } public String getJbEstimateLinesRecIDContains() { return JB_EstimateLines_RecIDContains; } public JB_EstimateFinishedGoodLinesQuery setJbEstimateLinesRecIDContains(String value) { this.JB_EstimateLines_RecIDContains = value; return this; } public String getJbEstimateLinesRecIDLike() { return JB_EstimateLines_RecIDLike; } public JB_EstimateFinishedGoodLinesQuery setJbEstimateLinesRecIDLike(String value) { this.JB_EstimateLines_RecIDLike = value; return this; } public ArrayList getJbEstimateLinesRecIDBetween() { return JB_EstimateLines_RecIDBetween; } public JB_EstimateFinishedGoodLinesQuery setJbEstimateLinesRecIDBetween(ArrayList value) { this.JB_EstimateLines_RecIDBetween = value; return this; } public ArrayList getJbEstimateLinesRecIDIn() { return JB_EstimateLines_RecIDIn; } public JB_EstimateFinishedGoodLinesQuery setJbEstimateLinesRecIDIn(ArrayList value) { this.JB_EstimateLines_RecIDIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class JB_EstimateInventoryLinesQuery extends QueryDb implements IReturn> { public String RecID = null; public String RecIDStartsWith = null; public String RecIDEndsWith = null; public String RecIDContains = null; public String RecIDLike = null; public ArrayList RecIDBetween = null; public ArrayList RecIDIn = null; public String JB_JobStages_RecID = null; public String JB_JobStages_RecIDStartsWith = null; public String JB_JobStages_RecIDEndsWith = null; public String JB_JobStages_RecIDContains = null; public String JB_JobStages_RecIDLike = null; public ArrayList JB_JobStages_RecIDBetween = null; public ArrayList JB_JobStages_RecIDIn = null; public String IN_Main_RecID = null; public String IN_Main_RecIDStartsWith = null; public String IN_Main_RecIDEndsWith = null; public String IN_Main_RecIDContains = null; public String IN_Main_RecIDLike = null; public ArrayList IN_Main_RecIDBetween = null; public ArrayList IN_Main_RecIDIn = null; public Date TransactionDate = null; public Date TransactionDateGreaterThanOrEqualTo = null; public Date TransactionDateGreaterThan = null; public Date TransactionDateLessThan = null; public Date TransactionDateLessThanOrEqualTo = null; public Date TransactionDateNotEqualTo = null; public ArrayList TransactionDateBetween = null; public ArrayList TransactionDateIn = null; public BigDecimal Quantity = null; public BigDecimal QuantityGreaterThanOrEqualTo = null; public BigDecimal QuantityGreaterThan = null; public BigDecimal QuantityLessThan = null; public BigDecimal QuantityLessThanOrEqualTo = null; public BigDecimal QuantityNotEqualTo = null; public ArrayList QuantityBetween = null; public ArrayList QuantityIn = null; public BigDecimal UnitCost = null; public BigDecimal UnitCostGreaterThanOrEqualTo = null; public BigDecimal UnitCostGreaterThan = null; public BigDecimal UnitCostLessThan = null; public BigDecimal UnitCostLessThanOrEqualTo = null; public BigDecimal UnitCostNotEqualTo = null; public ArrayList UnitCostBetween = null; public ArrayList UnitCostIn = null; public BigDecimal UnitCharge = null; public BigDecimal UnitChargeGreaterThanOrEqualTo = null; public BigDecimal UnitChargeGreaterThan = null; public BigDecimal UnitChargeLessThan = null; public BigDecimal UnitChargeLessThanOrEqualTo = null; public BigDecimal UnitChargeNotEqualTo = null; public ArrayList UnitChargeBetween = null; public ArrayList UnitChargeIn = null; public String Remark = null; public String RemarkStartsWith = null; public String RemarkEndsWith = null; public String RemarkContains = null; public String RemarkLike = null; public ArrayList RemarkBetween = null; public ArrayList RemarkIn = null; public Date LastSavedDateTime = null; public Date LastSavedDateTimeGreaterThanOrEqualTo = null; public Date LastSavedDateTimeGreaterThan = null; public Date LastSavedDateTimeLessThan = null; public Date LastSavedDateTimeLessThanOrEqualTo = null; public Date LastSavedDateTimeNotEqualTo = null; public ArrayList LastSavedDateTimeBetween = null; public ArrayList LastSavedDateTimeIn = null; public String HR_Staff_RecID = null; public String HR_Staff_RecIDStartsWith = null; public String HR_Staff_RecIDEndsWith = null; public String HR_Staff_RecIDContains = null; public String HR_Staff_RecIDLike = null; public ArrayList HR_Staff_RecIDBetween = null; public ArrayList HR_Staff_RecIDIn = null; public ArrayList RowHash = null; public String Units = null; public String UnitsStartsWith = null; public String UnitsEndsWith = null; public String UnitsContains = null; public String UnitsLike = null; public ArrayList UnitsBetween = null; public ArrayList UnitsIn = null; public String JB_EstimateLines_RecID = null; public String JB_EstimateLines_RecIDStartsWith = null; public String JB_EstimateLines_RecIDEndsWith = null; public String JB_EstimateLines_RecIDContains = null; public String JB_EstimateLines_RecIDLike = null; public ArrayList JB_EstimateLines_RecIDBetween = null; public ArrayList JB_EstimateLines_RecIDIn = null; public String getRecID() { return RecID; } public JB_EstimateInventoryLinesQuery setRecID(String value) { this.RecID = value; return this; } public String getRecIDStartsWith() { return RecIDStartsWith; } public JB_EstimateInventoryLinesQuery setRecIDStartsWith(String value) { this.RecIDStartsWith = value; return this; } public String getRecIDEndsWith() { return RecIDEndsWith; } public JB_EstimateInventoryLinesQuery setRecIDEndsWith(String value) { this.RecIDEndsWith = value; return this; } public String getRecIDContains() { return RecIDContains; } public JB_EstimateInventoryLinesQuery setRecIDContains(String value) { this.RecIDContains = value; return this; } public String getRecIDLike() { return RecIDLike; } public JB_EstimateInventoryLinesQuery setRecIDLike(String value) { this.RecIDLike = value; return this; } public ArrayList getRecIDBetween() { return RecIDBetween; } public JB_EstimateInventoryLinesQuery setRecIDBetween(ArrayList value) { this.RecIDBetween = value; return this; } public ArrayList getRecIDIn() { return RecIDIn; } public JB_EstimateInventoryLinesQuery setRecIDIn(ArrayList value) { this.RecIDIn = value; return this; } public String getJbJobStagesRecID() { return JB_JobStages_RecID; } public JB_EstimateInventoryLinesQuery setJbJobStagesRecID(String value) { this.JB_JobStages_RecID = value; return this; } public String getJbJobStagesRecIDStartsWith() { return JB_JobStages_RecIDStartsWith; } public JB_EstimateInventoryLinesQuery setJbJobStagesRecIDStartsWith(String value) { this.JB_JobStages_RecIDStartsWith = value; return this; } public String getJbJobStagesRecIDEndsWith() { return JB_JobStages_RecIDEndsWith; } public JB_EstimateInventoryLinesQuery setJbJobStagesRecIDEndsWith(String value) { this.JB_JobStages_RecIDEndsWith = value; return this; } public String getJbJobStagesRecIDContains() { return JB_JobStages_RecIDContains; } public JB_EstimateInventoryLinesQuery setJbJobStagesRecIDContains(String value) { this.JB_JobStages_RecIDContains = value; return this; } public String getJbJobStagesRecIDLike() { return JB_JobStages_RecIDLike; } public JB_EstimateInventoryLinesQuery setJbJobStagesRecIDLike(String value) { this.JB_JobStages_RecIDLike = value; return this; } public ArrayList getJbJobStagesRecIDBetween() { return JB_JobStages_RecIDBetween; } public JB_EstimateInventoryLinesQuery setJbJobStagesRecIDBetween(ArrayList value) { this.JB_JobStages_RecIDBetween = value; return this; } public ArrayList getJbJobStagesRecIDIn() { return JB_JobStages_RecIDIn; } public JB_EstimateInventoryLinesQuery setJbJobStagesRecIDIn(ArrayList value) { this.JB_JobStages_RecIDIn = value; return this; } public String getInMainRecID() { return IN_Main_RecID; } public JB_EstimateInventoryLinesQuery setInMainRecID(String value) { this.IN_Main_RecID = value; return this; } public String getInMainRecIDStartsWith() { return IN_Main_RecIDStartsWith; } public JB_EstimateInventoryLinesQuery setInMainRecIDStartsWith(String value) { this.IN_Main_RecIDStartsWith = value; return this; } public String getInMainRecIDEndsWith() { return IN_Main_RecIDEndsWith; } public JB_EstimateInventoryLinesQuery setInMainRecIDEndsWith(String value) { this.IN_Main_RecIDEndsWith = value; return this; } public String getInMainRecIDContains() { return IN_Main_RecIDContains; } public JB_EstimateInventoryLinesQuery setInMainRecIDContains(String value) { this.IN_Main_RecIDContains = value; return this; } public String getInMainRecIDLike() { return IN_Main_RecIDLike; } public JB_EstimateInventoryLinesQuery setInMainRecIDLike(String value) { this.IN_Main_RecIDLike = value; return this; } public ArrayList getInMainRecIDBetween() { return IN_Main_RecIDBetween; } public JB_EstimateInventoryLinesQuery setInMainRecIDBetween(ArrayList value) { this.IN_Main_RecIDBetween = value; return this; } public ArrayList getInMainRecIDIn() { return IN_Main_RecIDIn; } public JB_EstimateInventoryLinesQuery setInMainRecIDIn(ArrayList value) { this.IN_Main_RecIDIn = value; return this; } public Date getTransactionDate() { return TransactionDate; } public JB_EstimateInventoryLinesQuery setTransactionDate(Date value) { this.TransactionDate = value; return this; } public Date getTransactionDateGreaterThanOrEqualTo() { return TransactionDateGreaterThanOrEqualTo; } public JB_EstimateInventoryLinesQuery setTransactionDateGreaterThanOrEqualTo(Date value) { this.TransactionDateGreaterThanOrEqualTo = value; return this; } public Date getTransactionDateGreaterThan() { return TransactionDateGreaterThan; } public JB_EstimateInventoryLinesQuery setTransactionDateGreaterThan(Date value) { this.TransactionDateGreaterThan = value; return this; } public Date getTransactionDateLessThan() { return TransactionDateLessThan; } public JB_EstimateInventoryLinesQuery setTransactionDateLessThan(Date value) { this.TransactionDateLessThan = value; return this; } public Date getTransactionDateLessThanOrEqualTo() { return TransactionDateLessThanOrEqualTo; } public JB_EstimateInventoryLinesQuery setTransactionDateLessThanOrEqualTo(Date value) { this.TransactionDateLessThanOrEqualTo = value; return this; } public Date getTransactionDateNotEqualTo() { return TransactionDateNotEqualTo; } public JB_EstimateInventoryLinesQuery setTransactionDateNotEqualTo(Date value) { this.TransactionDateNotEqualTo = value; return this; } public ArrayList getTransactionDateBetween() { return TransactionDateBetween; } public JB_EstimateInventoryLinesQuery setTransactionDateBetween(ArrayList value) { this.TransactionDateBetween = value; return this; } public ArrayList getTransactionDateIn() { return TransactionDateIn; } public JB_EstimateInventoryLinesQuery setTransactionDateIn(ArrayList value) { this.TransactionDateIn = value; return this; } public BigDecimal getQuantity() { return Quantity; } public JB_EstimateInventoryLinesQuery setQuantity(BigDecimal value) { this.Quantity = value; return this; } public BigDecimal getQuantityGreaterThanOrEqualTo() { return QuantityGreaterThanOrEqualTo; } public JB_EstimateInventoryLinesQuery setQuantityGreaterThanOrEqualTo(BigDecimal value) { this.QuantityGreaterThanOrEqualTo = value; return this; } public BigDecimal getQuantityGreaterThan() { return QuantityGreaterThan; } public JB_EstimateInventoryLinesQuery setQuantityGreaterThan(BigDecimal value) { this.QuantityGreaterThan = value; return this; } public BigDecimal getQuantityLessThan() { return QuantityLessThan; } public JB_EstimateInventoryLinesQuery setQuantityLessThan(BigDecimal value) { this.QuantityLessThan = value; return this; } public BigDecimal getQuantityLessThanOrEqualTo() { return QuantityLessThanOrEqualTo; } public JB_EstimateInventoryLinesQuery setQuantityLessThanOrEqualTo(BigDecimal value) { this.QuantityLessThanOrEqualTo = value; return this; } public BigDecimal getQuantityNotEqualTo() { return QuantityNotEqualTo; } public JB_EstimateInventoryLinesQuery setQuantityNotEqualTo(BigDecimal value) { this.QuantityNotEqualTo = value; return this; } public ArrayList getQuantityBetween() { return QuantityBetween; } public JB_EstimateInventoryLinesQuery setQuantityBetween(ArrayList value) { this.QuantityBetween = value; return this; } public ArrayList getQuantityIn() { return QuantityIn; } public JB_EstimateInventoryLinesQuery setQuantityIn(ArrayList value) { this.QuantityIn = value; return this; } public BigDecimal getUnitCost() { return UnitCost; } public JB_EstimateInventoryLinesQuery setUnitCost(BigDecimal value) { this.UnitCost = value; return this; } public BigDecimal getUnitCostGreaterThanOrEqualTo() { return UnitCostGreaterThanOrEqualTo; } public JB_EstimateInventoryLinesQuery setUnitCostGreaterThanOrEqualTo(BigDecimal value) { this.UnitCostGreaterThanOrEqualTo = value; return this; } public BigDecimal getUnitCostGreaterThan() { return UnitCostGreaterThan; } public JB_EstimateInventoryLinesQuery setUnitCostGreaterThan(BigDecimal value) { this.UnitCostGreaterThan = value; return this; } public BigDecimal getUnitCostLessThan() { return UnitCostLessThan; } public JB_EstimateInventoryLinesQuery setUnitCostLessThan(BigDecimal value) { this.UnitCostLessThan = value; return this; } public BigDecimal getUnitCostLessThanOrEqualTo() { return UnitCostLessThanOrEqualTo; } public JB_EstimateInventoryLinesQuery setUnitCostLessThanOrEqualTo(BigDecimal value) { this.UnitCostLessThanOrEqualTo = value; return this; } public BigDecimal getUnitCostNotEqualTo() { return UnitCostNotEqualTo; } public JB_EstimateInventoryLinesQuery setUnitCostNotEqualTo(BigDecimal value) { this.UnitCostNotEqualTo = value; return this; } public ArrayList getUnitCostBetween() { return UnitCostBetween; } public JB_EstimateInventoryLinesQuery setUnitCostBetween(ArrayList value) { this.UnitCostBetween = value; return this; } public ArrayList getUnitCostIn() { return UnitCostIn; } public JB_EstimateInventoryLinesQuery setUnitCostIn(ArrayList value) { this.UnitCostIn = value; return this; } public BigDecimal getUnitCharge() { return UnitCharge; } public JB_EstimateInventoryLinesQuery setUnitCharge(BigDecimal value) { this.UnitCharge = value; return this; } public BigDecimal getUnitChargeGreaterThanOrEqualTo() { return UnitChargeGreaterThanOrEqualTo; } public JB_EstimateInventoryLinesQuery setUnitChargeGreaterThanOrEqualTo(BigDecimal value) { this.UnitChargeGreaterThanOrEqualTo = value; return this; } public BigDecimal getUnitChargeGreaterThan() { return UnitChargeGreaterThan; } public JB_EstimateInventoryLinesQuery setUnitChargeGreaterThan(BigDecimal value) { this.UnitChargeGreaterThan = value; return this; } public BigDecimal getUnitChargeLessThan() { return UnitChargeLessThan; } public JB_EstimateInventoryLinesQuery setUnitChargeLessThan(BigDecimal value) { this.UnitChargeLessThan = value; return this; } public BigDecimal getUnitChargeLessThanOrEqualTo() { return UnitChargeLessThanOrEqualTo; } public JB_EstimateInventoryLinesQuery setUnitChargeLessThanOrEqualTo(BigDecimal value) { this.UnitChargeLessThanOrEqualTo = value; return this; } public BigDecimal getUnitChargeNotEqualTo() { return UnitChargeNotEqualTo; } public JB_EstimateInventoryLinesQuery setUnitChargeNotEqualTo(BigDecimal value) { this.UnitChargeNotEqualTo = value; return this; } public ArrayList getUnitChargeBetween() { return UnitChargeBetween; } public JB_EstimateInventoryLinesQuery setUnitChargeBetween(ArrayList value) { this.UnitChargeBetween = value; return this; } public ArrayList getUnitChargeIn() { return UnitChargeIn; } public JB_EstimateInventoryLinesQuery setUnitChargeIn(ArrayList value) { this.UnitChargeIn = value; return this; } public String getRemark() { return Remark; } public JB_EstimateInventoryLinesQuery setRemark(String value) { this.Remark = value; return this; } public String getRemarkStartsWith() { return RemarkStartsWith; } public JB_EstimateInventoryLinesQuery setRemarkStartsWith(String value) { this.RemarkStartsWith = value; return this; } public String getRemarkEndsWith() { return RemarkEndsWith; } public JB_EstimateInventoryLinesQuery setRemarkEndsWith(String value) { this.RemarkEndsWith = value; return this; } public String getRemarkContains() { return RemarkContains; } public JB_EstimateInventoryLinesQuery setRemarkContains(String value) { this.RemarkContains = value; return this; } public String getRemarkLike() { return RemarkLike; } public JB_EstimateInventoryLinesQuery setRemarkLike(String value) { this.RemarkLike = value; return this; } public ArrayList getRemarkBetween() { return RemarkBetween; } public JB_EstimateInventoryLinesQuery setRemarkBetween(ArrayList value) { this.RemarkBetween = value; return this; } public ArrayList getRemarkIn() { return RemarkIn; } public JB_EstimateInventoryLinesQuery setRemarkIn(ArrayList value) { this.RemarkIn = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public JB_EstimateInventoryLinesQuery setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getLastSavedDateTimeGreaterThanOrEqualTo() { return LastSavedDateTimeGreaterThanOrEqualTo; } public JB_EstimateInventoryLinesQuery setLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.LastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeGreaterThan() { return LastSavedDateTimeGreaterThan; } public JB_EstimateInventoryLinesQuery setLastSavedDateTimeGreaterThan(Date value) { this.LastSavedDateTimeGreaterThan = value; return this; } public Date getLastSavedDateTimeLessThan() { return LastSavedDateTimeLessThan; } public JB_EstimateInventoryLinesQuery setLastSavedDateTimeLessThan(Date value) { this.LastSavedDateTimeLessThan = value; return this; } public Date getLastSavedDateTimeLessThanOrEqualTo() { return LastSavedDateTimeLessThanOrEqualTo; } public JB_EstimateInventoryLinesQuery setLastSavedDateTimeLessThanOrEqualTo(Date value) { this.LastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeNotEqualTo() { return LastSavedDateTimeNotEqualTo; } public JB_EstimateInventoryLinesQuery setLastSavedDateTimeNotEqualTo(Date value) { this.LastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getLastSavedDateTimeBetween() { return LastSavedDateTimeBetween; } public JB_EstimateInventoryLinesQuery setLastSavedDateTimeBetween(ArrayList value) { this.LastSavedDateTimeBetween = value; return this; } public ArrayList getLastSavedDateTimeIn() { return LastSavedDateTimeIn; } public JB_EstimateInventoryLinesQuery setLastSavedDateTimeIn(ArrayList value) { this.LastSavedDateTimeIn = value; return this; } public String getHrStaffRecID() { return HR_Staff_RecID; } public JB_EstimateInventoryLinesQuery setHrStaffRecID(String value) { this.HR_Staff_RecID = value; return this; } public String getHrStaffRecIDStartsWith() { return HR_Staff_RecIDStartsWith; } public JB_EstimateInventoryLinesQuery setHrStaffRecIDStartsWith(String value) { this.HR_Staff_RecIDStartsWith = value; return this; } public String getHrStaffRecIDEndsWith() { return HR_Staff_RecIDEndsWith; } public JB_EstimateInventoryLinesQuery setHrStaffRecIDEndsWith(String value) { this.HR_Staff_RecIDEndsWith = value; return this; } public String getHrStaffRecIDContains() { return HR_Staff_RecIDContains; } public JB_EstimateInventoryLinesQuery setHrStaffRecIDContains(String value) { this.HR_Staff_RecIDContains = value; return this; } public String getHrStaffRecIDLike() { return HR_Staff_RecIDLike; } public JB_EstimateInventoryLinesQuery setHrStaffRecIDLike(String value) { this.HR_Staff_RecIDLike = value; return this; } public ArrayList getHrStaffRecIDBetween() { return HR_Staff_RecIDBetween; } public JB_EstimateInventoryLinesQuery setHrStaffRecIDBetween(ArrayList value) { this.HR_Staff_RecIDBetween = value; return this; } public ArrayList getHrStaffRecIDIn() { return HR_Staff_RecIDIn; } public JB_EstimateInventoryLinesQuery setHrStaffRecIDIn(ArrayList value) { this.HR_Staff_RecIDIn = value; return this; } public ArrayList getRowHash() { return RowHash; } public JB_EstimateInventoryLinesQuery setRowHash(ArrayList value) { this.RowHash = value; return this; } public String getUnits() { return Units; } public JB_EstimateInventoryLinesQuery setUnits(String value) { this.Units = value; return this; } public String getUnitsStartsWith() { return UnitsStartsWith; } public JB_EstimateInventoryLinesQuery setUnitsStartsWith(String value) { this.UnitsStartsWith = value; return this; } public String getUnitsEndsWith() { return UnitsEndsWith; } public JB_EstimateInventoryLinesQuery setUnitsEndsWith(String value) { this.UnitsEndsWith = value; return this; } public String getUnitsContains() { return UnitsContains; } public JB_EstimateInventoryLinesQuery setUnitsContains(String value) { this.UnitsContains = value; return this; } public String getUnitsLike() { return UnitsLike; } public JB_EstimateInventoryLinesQuery setUnitsLike(String value) { this.UnitsLike = value; return this; } public ArrayList getUnitsBetween() { return UnitsBetween; } public JB_EstimateInventoryLinesQuery setUnitsBetween(ArrayList value) { this.UnitsBetween = value; return this; } public ArrayList getUnitsIn() { return UnitsIn; } public JB_EstimateInventoryLinesQuery setUnitsIn(ArrayList value) { this.UnitsIn = value; return this; } public String getJbEstimateLinesRecID() { return JB_EstimateLines_RecID; } public JB_EstimateInventoryLinesQuery setJbEstimateLinesRecID(String value) { this.JB_EstimateLines_RecID = value; return this; } public String getJbEstimateLinesRecIDStartsWith() { return JB_EstimateLines_RecIDStartsWith; } public JB_EstimateInventoryLinesQuery setJbEstimateLinesRecIDStartsWith(String value) { this.JB_EstimateLines_RecIDStartsWith = value; return this; } public String getJbEstimateLinesRecIDEndsWith() { return JB_EstimateLines_RecIDEndsWith; } public JB_EstimateInventoryLinesQuery setJbEstimateLinesRecIDEndsWith(String value) { this.JB_EstimateLines_RecIDEndsWith = value; return this; } public String getJbEstimateLinesRecIDContains() { return JB_EstimateLines_RecIDContains; } public JB_EstimateInventoryLinesQuery setJbEstimateLinesRecIDContains(String value) { this.JB_EstimateLines_RecIDContains = value; return this; } public String getJbEstimateLinesRecIDLike() { return JB_EstimateLines_RecIDLike; } public JB_EstimateInventoryLinesQuery setJbEstimateLinesRecIDLike(String value) { this.JB_EstimateLines_RecIDLike = value; return this; } public ArrayList getJbEstimateLinesRecIDBetween() { return JB_EstimateLines_RecIDBetween; } public JB_EstimateInventoryLinesQuery setJbEstimateLinesRecIDBetween(ArrayList value) { this.JB_EstimateLines_RecIDBetween = value; return this; } public ArrayList getJbEstimateLinesRecIDIn() { return JB_EstimateLines_RecIDIn; } public JB_EstimateInventoryLinesQuery setJbEstimateLinesRecIDIn(ArrayList value) { this.JB_EstimateLines_RecIDIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class JB_EstimateJournalSetLinesQuery extends QueryDb implements IReturn> { public String RecID = null; public String RecIDStartsWith = null; public String RecIDEndsWith = null; public String RecIDContains = null; public String RecIDLike = null; public ArrayList RecIDBetween = null; public ArrayList RecIDIn = null; public String JB_JobStages_RecID = null; public String JB_JobStages_RecIDStartsWith = null; public String JB_JobStages_RecIDEndsWith = null; public String JB_JobStages_RecIDContains = null; public String JB_JobStages_RecIDLike = null; public ArrayList JB_JobStages_RecIDBetween = null; public ArrayList JB_JobStages_RecIDIn = null; public String GL_Main_RecID = null; public String GL_Main_RecIDStartsWith = null; public String GL_Main_RecIDEndsWith = null; public String GL_Main_RecIDContains = null; public String GL_Main_RecIDLike = null; public ArrayList GL_Main_RecIDBetween = null; public ArrayList GL_Main_RecIDIn = null; public Date TransactionDate = null; public Date TransactionDateGreaterThanOrEqualTo = null; public Date TransactionDateGreaterThan = null; public Date TransactionDateLessThan = null; public Date TransactionDateLessThanOrEqualTo = null; public Date TransactionDateNotEqualTo = null; public ArrayList TransactionDateBetween = null; public ArrayList TransactionDateIn = null; public BigDecimal Quantity = null; public BigDecimal QuantityGreaterThanOrEqualTo = null; public BigDecimal QuantityGreaterThan = null; public BigDecimal QuantityLessThan = null; public BigDecimal QuantityLessThanOrEqualTo = null; public BigDecimal QuantityNotEqualTo = null; public ArrayList QuantityBetween = null; public ArrayList QuantityIn = null; public BigDecimal UnitCost = null; public BigDecimal UnitCostGreaterThanOrEqualTo = null; public BigDecimal UnitCostGreaterThan = null; public BigDecimal UnitCostLessThan = null; public BigDecimal UnitCostLessThanOrEqualTo = null; public BigDecimal UnitCostNotEqualTo = null; public ArrayList UnitCostBetween = null; public ArrayList UnitCostIn = null; public BigDecimal UnitCharge = null; public BigDecimal UnitChargeGreaterThanOrEqualTo = null; public BigDecimal UnitChargeGreaterThan = null; public BigDecimal UnitChargeLessThan = null; public BigDecimal UnitChargeLessThanOrEqualTo = null; public BigDecimal UnitChargeNotEqualTo = null; public ArrayList UnitChargeBetween = null; public ArrayList UnitChargeIn = null; public String Remark = null; public String RemarkStartsWith = null; public String RemarkEndsWith = null; public String RemarkContains = null; public String RemarkLike = null; public ArrayList RemarkBetween = null; public ArrayList RemarkIn = null; public Date LastSavedDateTime = null; public Date LastSavedDateTimeGreaterThanOrEqualTo = null; public Date LastSavedDateTimeGreaterThan = null; public Date LastSavedDateTimeLessThan = null; public Date LastSavedDateTimeLessThanOrEqualTo = null; public Date LastSavedDateTimeNotEqualTo = null; public ArrayList LastSavedDateTimeBetween = null; public ArrayList LastSavedDateTimeIn = null; public String HR_Staff_RecID = null; public String HR_Staff_RecIDStartsWith = null; public String HR_Staff_RecIDEndsWith = null; public String HR_Staff_RecIDContains = null; public String HR_Staff_RecIDLike = null; public ArrayList HR_Staff_RecIDBetween = null; public ArrayList HR_Staff_RecIDIn = null; public ArrayList RowHash = null; public String Units = null; public String UnitsStartsWith = null; public String UnitsEndsWith = null; public String UnitsContains = null; public String UnitsLike = null; public ArrayList UnitsBetween = null; public ArrayList UnitsIn = null; public String JB_EstimateLines_RecID = null; public String JB_EstimateLines_RecIDStartsWith = null; public String JB_EstimateLines_RecIDEndsWith = null; public String JB_EstimateLines_RecIDContains = null; public String JB_EstimateLines_RecIDLike = null; public ArrayList JB_EstimateLines_RecIDBetween = null; public ArrayList JB_EstimateLines_RecIDIn = null; public String getRecID() { return RecID; } public JB_EstimateJournalSetLinesQuery setRecID(String value) { this.RecID = value; return this; } public String getRecIDStartsWith() { return RecIDStartsWith; } public JB_EstimateJournalSetLinesQuery setRecIDStartsWith(String value) { this.RecIDStartsWith = value; return this; } public String getRecIDEndsWith() { return RecIDEndsWith; } public JB_EstimateJournalSetLinesQuery setRecIDEndsWith(String value) { this.RecIDEndsWith = value; return this; } public String getRecIDContains() { return RecIDContains; } public JB_EstimateJournalSetLinesQuery setRecIDContains(String value) { this.RecIDContains = value; return this; } public String getRecIDLike() { return RecIDLike; } public JB_EstimateJournalSetLinesQuery setRecIDLike(String value) { this.RecIDLike = value; return this; } public ArrayList getRecIDBetween() { return RecIDBetween; } public JB_EstimateJournalSetLinesQuery setRecIDBetween(ArrayList value) { this.RecIDBetween = value; return this; } public ArrayList getRecIDIn() { return RecIDIn; } public JB_EstimateJournalSetLinesQuery setRecIDIn(ArrayList value) { this.RecIDIn = value; return this; } public String getJbJobStagesRecID() { return JB_JobStages_RecID; } public JB_EstimateJournalSetLinesQuery setJbJobStagesRecID(String value) { this.JB_JobStages_RecID = value; return this; } public String getJbJobStagesRecIDStartsWith() { return JB_JobStages_RecIDStartsWith; } public JB_EstimateJournalSetLinesQuery setJbJobStagesRecIDStartsWith(String value) { this.JB_JobStages_RecIDStartsWith = value; return this; } public String getJbJobStagesRecIDEndsWith() { return JB_JobStages_RecIDEndsWith; } public JB_EstimateJournalSetLinesQuery setJbJobStagesRecIDEndsWith(String value) { this.JB_JobStages_RecIDEndsWith = value; return this; } public String getJbJobStagesRecIDContains() { return JB_JobStages_RecIDContains; } public JB_EstimateJournalSetLinesQuery setJbJobStagesRecIDContains(String value) { this.JB_JobStages_RecIDContains = value; return this; } public String getJbJobStagesRecIDLike() { return JB_JobStages_RecIDLike; } public JB_EstimateJournalSetLinesQuery setJbJobStagesRecIDLike(String value) { this.JB_JobStages_RecIDLike = value; return this; } public ArrayList getJbJobStagesRecIDBetween() { return JB_JobStages_RecIDBetween; } public JB_EstimateJournalSetLinesQuery setJbJobStagesRecIDBetween(ArrayList value) { this.JB_JobStages_RecIDBetween = value; return this; } public ArrayList getJbJobStagesRecIDIn() { return JB_JobStages_RecIDIn; } public JB_EstimateJournalSetLinesQuery setJbJobStagesRecIDIn(ArrayList value) { this.JB_JobStages_RecIDIn = value; return this; } public String getGlMainRecID() { return GL_Main_RecID; } public JB_EstimateJournalSetLinesQuery setGlMainRecID(String value) { this.GL_Main_RecID = value; return this; } public String getGlMainRecIDStartsWith() { return GL_Main_RecIDStartsWith; } public JB_EstimateJournalSetLinesQuery setGlMainRecIDStartsWith(String value) { this.GL_Main_RecIDStartsWith = value; return this; } public String getGlMainRecIDEndsWith() { return GL_Main_RecIDEndsWith; } public JB_EstimateJournalSetLinesQuery setGlMainRecIDEndsWith(String value) { this.GL_Main_RecIDEndsWith = value; return this; } public String getGlMainRecIDContains() { return GL_Main_RecIDContains; } public JB_EstimateJournalSetLinesQuery setGlMainRecIDContains(String value) { this.GL_Main_RecIDContains = value; return this; } public String getGlMainRecIDLike() { return GL_Main_RecIDLike; } public JB_EstimateJournalSetLinesQuery setGlMainRecIDLike(String value) { this.GL_Main_RecIDLike = value; return this; } public ArrayList getGlMainRecIDBetween() { return GL_Main_RecIDBetween; } public JB_EstimateJournalSetLinesQuery setGlMainRecIDBetween(ArrayList value) { this.GL_Main_RecIDBetween = value; return this; } public ArrayList getGlMainRecIDIn() { return GL_Main_RecIDIn; } public JB_EstimateJournalSetLinesQuery setGlMainRecIDIn(ArrayList value) { this.GL_Main_RecIDIn = value; return this; } public Date getTransactionDate() { return TransactionDate; } public JB_EstimateJournalSetLinesQuery setTransactionDate(Date value) { this.TransactionDate = value; return this; } public Date getTransactionDateGreaterThanOrEqualTo() { return TransactionDateGreaterThanOrEqualTo; } public JB_EstimateJournalSetLinesQuery setTransactionDateGreaterThanOrEqualTo(Date value) { this.TransactionDateGreaterThanOrEqualTo = value; return this; } public Date getTransactionDateGreaterThan() { return TransactionDateGreaterThan; } public JB_EstimateJournalSetLinesQuery setTransactionDateGreaterThan(Date value) { this.TransactionDateGreaterThan = value; return this; } public Date getTransactionDateLessThan() { return TransactionDateLessThan; } public JB_EstimateJournalSetLinesQuery setTransactionDateLessThan(Date value) { this.TransactionDateLessThan = value; return this; } public Date getTransactionDateLessThanOrEqualTo() { return TransactionDateLessThanOrEqualTo; } public JB_EstimateJournalSetLinesQuery setTransactionDateLessThanOrEqualTo(Date value) { this.TransactionDateLessThanOrEqualTo = value; return this; } public Date getTransactionDateNotEqualTo() { return TransactionDateNotEqualTo; } public JB_EstimateJournalSetLinesQuery setTransactionDateNotEqualTo(Date value) { this.TransactionDateNotEqualTo = value; return this; } public ArrayList getTransactionDateBetween() { return TransactionDateBetween; } public JB_EstimateJournalSetLinesQuery setTransactionDateBetween(ArrayList value) { this.TransactionDateBetween = value; return this; } public ArrayList getTransactionDateIn() { return TransactionDateIn; } public JB_EstimateJournalSetLinesQuery setTransactionDateIn(ArrayList value) { this.TransactionDateIn = value; return this; } public BigDecimal getQuantity() { return Quantity; } public JB_EstimateJournalSetLinesQuery setQuantity(BigDecimal value) { this.Quantity = value; return this; } public BigDecimal getQuantityGreaterThanOrEqualTo() { return QuantityGreaterThanOrEqualTo; } public JB_EstimateJournalSetLinesQuery setQuantityGreaterThanOrEqualTo(BigDecimal value) { this.QuantityGreaterThanOrEqualTo = value; return this; } public BigDecimal getQuantityGreaterThan() { return QuantityGreaterThan; } public JB_EstimateJournalSetLinesQuery setQuantityGreaterThan(BigDecimal value) { this.QuantityGreaterThan = value; return this; } public BigDecimal getQuantityLessThan() { return QuantityLessThan; } public JB_EstimateJournalSetLinesQuery setQuantityLessThan(BigDecimal value) { this.QuantityLessThan = value; return this; } public BigDecimal getQuantityLessThanOrEqualTo() { return QuantityLessThanOrEqualTo; } public JB_EstimateJournalSetLinesQuery setQuantityLessThanOrEqualTo(BigDecimal value) { this.QuantityLessThanOrEqualTo = value; return this; } public BigDecimal getQuantityNotEqualTo() { return QuantityNotEqualTo; } public JB_EstimateJournalSetLinesQuery setQuantityNotEqualTo(BigDecimal value) { this.QuantityNotEqualTo = value; return this; } public ArrayList getQuantityBetween() { return QuantityBetween; } public JB_EstimateJournalSetLinesQuery setQuantityBetween(ArrayList value) { this.QuantityBetween = value; return this; } public ArrayList getQuantityIn() { return QuantityIn; } public JB_EstimateJournalSetLinesQuery setQuantityIn(ArrayList value) { this.QuantityIn = value; return this; } public BigDecimal getUnitCost() { return UnitCost; } public JB_EstimateJournalSetLinesQuery setUnitCost(BigDecimal value) { this.UnitCost = value; return this; } public BigDecimal getUnitCostGreaterThanOrEqualTo() { return UnitCostGreaterThanOrEqualTo; } public JB_EstimateJournalSetLinesQuery setUnitCostGreaterThanOrEqualTo(BigDecimal value) { this.UnitCostGreaterThanOrEqualTo = value; return this; } public BigDecimal getUnitCostGreaterThan() { return UnitCostGreaterThan; } public JB_EstimateJournalSetLinesQuery setUnitCostGreaterThan(BigDecimal value) { this.UnitCostGreaterThan = value; return this; } public BigDecimal getUnitCostLessThan() { return UnitCostLessThan; } public JB_EstimateJournalSetLinesQuery setUnitCostLessThan(BigDecimal value) { this.UnitCostLessThan = value; return this; } public BigDecimal getUnitCostLessThanOrEqualTo() { return UnitCostLessThanOrEqualTo; } public JB_EstimateJournalSetLinesQuery setUnitCostLessThanOrEqualTo(BigDecimal value) { this.UnitCostLessThanOrEqualTo = value; return this; } public BigDecimal getUnitCostNotEqualTo() { return UnitCostNotEqualTo; } public JB_EstimateJournalSetLinesQuery setUnitCostNotEqualTo(BigDecimal value) { this.UnitCostNotEqualTo = value; return this; } public ArrayList getUnitCostBetween() { return UnitCostBetween; } public JB_EstimateJournalSetLinesQuery setUnitCostBetween(ArrayList value) { this.UnitCostBetween = value; return this; } public ArrayList getUnitCostIn() { return UnitCostIn; } public JB_EstimateJournalSetLinesQuery setUnitCostIn(ArrayList value) { this.UnitCostIn = value; return this; } public BigDecimal getUnitCharge() { return UnitCharge; } public JB_EstimateJournalSetLinesQuery setUnitCharge(BigDecimal value) { this.UnitCharge = value; return this; } public BigDecimal getUnitChargeGreaterThanOrEqualTo() { return UnitChargeGreaterThanOrEqualTo; } public JB_EstimateJournalSetLinesQuery setUnitChargeGreaterThanOrEqualTo(BigDecimal value) { this.UnitChargeGreaterThanOrEqualTo = value; return this; } public BigDecimal getUnitChargeGreaterThan() { return UnitChargeGreaterThan; } public JB_EstimateJournalSetLinesQuery setUnitChargeGreaterThan(BigDecimal value) { this.UnitChargeGreaterThan = value; return this; } public BigDecimal getUnitChargeLessThan() { return UnitChargeLessThan; } public JB_EstimateJournalSetLinesQuery setUnitChargeLessThan(BigDecimal value) { this.UnitChargeLessThan = value; return this; } public BigDecimal getUnitChargeLessThanOrEqualTo() { return UnitChargeLessThanOrEqualTo; } public JB_EstimateJournalSetLinesQuery setUnitChargeLessThanOrEqualTo(BigDecimal value) { this.UnitChargeLessThanOrEqualTo = value; return this; } public BigDecimal getUnitChargeNotEqualTo() { return UnitChargeNotEqualTo; } public JB_EstimateJournalSetLinesQuery setUnitChargeNotEqualTo(BigDecimal value) { this.UnitChargeNotEqualTo = value; return this; } public ArrayList getUnitChargeBetween() { return UnitChargeBetween; } public JB_EstimateJournalSetLinesQuery setUnitChargeBetween(ArrayList value) { this.UnitChargeBetween = value; return this; } public ArrayList getUnitChargeIn() { return UnitChargeIn; } public JB_EstimateJournalSetLinesQuery setUnitChargeIn(ArrayList value) { this.UnitChargeIn = value; return this; } public String getRemark() { return Remark; } public JB_EstimateJournalSetLinesQuery setRemark(String value) { this.Remark = value; return this; } public String getRemarkStartsWith() { return RemarkStartsWith; } public JB_EstimateJournalSetLinesQuery setRemarkStartsWith(String value) { this.RemarkStartsWith = value; return this; } public String getRemarkEndsWith() { return RemarkEndsWith; } public JB_EstimateJournalSetLinesQuery setRemarkEndsWith(String value) { this.RemarkEndsWith = value; return this; } public String getRemarkContains() { return RemarkContains; } public JB_EstimateJournalSetLinesQuery setRemarkContains(String value) { this.RemarkContains = value; return this; } public String getRemarkLike() { return RemarkLike; } public JB_EstimateJournalSetLinesQuery setRemarkLike(String value) { this.RemarkLike = value; return this; } public ArrayList getRemarkBetween() { return RemarkBetween; } public JB_EstimateJournalSetLinesQuery setRemarkBetween(ArrayList value) { this.RemarkBetween = value; return this; } public ArrayList getRemarkIn() { return RemarkIn; } public JB_EstimateJournalSetLinesQuery setRemarkIn(ArrayList value) { this.RemarkIn = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public JB_EstimateJournalSetLinesQuery setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getLastSavedDateTimeGreaterThanOrEqualTo() { return LastSavedDateTimeGreaterThanOrEqualTo; } public JB_EstimateJournalSetLinesQuery setLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.LastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeGreaterThan() { return LastSavedDateTimeGreaterThan; } public JB_EstimateJournalSetLinesQuery setLastSavedDateTimeGreaterThan(Date value) { this.LastSavedDateTimeGreaterThan = value; return this; } public Date getLastSavedDateTimeLessThan() { return LastSavedDateTimeLessThan; } public JB_EstimateJournalSetLinesQuery setLastSavedDateTimeLessThan(Date value) { this.LastSavedDateTimeLessThan = value; return this; } public Date getLastSavedDateTimeLessThanOrEqualTo() { return LastSavedDateTimeLessThanOrEqualTo; } public JB_EstimateJournalSetLinesQuery setLastSavedDateTimeLessThanOrEqualTo(Date value) { this.LastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeNotEqualTo() { return LastSavedDateTimeNotEqualTo; } public JB_EstimateJournalSetLinesQuery setLastSavedDateTimeNotEqualTo(Date value) { this.LastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getLastSavedDateTimeBetween() { return LastSavedDateTimeBetween; } public JB_EstimateJournalSetLinesQuery setLastSavedDateTimeBetween(ArrayList value) { this.LastSavedDateTimeBetween = value; return this; } public ArrayList getLastSavedDateTimeIn() { return LastSavedDateTimeIn; } public JB_EstimateJournalSetLinesQuery setLastSavedDateTimeIn(ArrayList value) { this.LastSavedDateTimeIn = value; return this; } public String getHrStaffRecID() { return HR_Staff_RecID; } public JB_EstimateJournalSetLinesQuery setHrStaffRecID(String value) { this.HR_Staff_RecID = value; return this; } public String getHrStaffRecIDStartsWith() { return HR_Staff_RecIDStartsWith; } public JB_EstimateJournalSetLinesQuery setHrStaffRecIDStartsWith(String value) { this.HR_Staff_RecIDStartsWith = value; return this; } public String getHrStaffRecIDEndsWith() { return HR_Staff_RecIDEndsWith; } public JB_EstimateJournalSetLinesQuery setHrStaffRecIDEndsWith(String value) { this.HR_Staff_RecIDEndsWith = value; return this; } public String getHrStaffRecIDContains() { return HR_Staff_RecIDContains; } public JB_EstimateJournalSetLinesQuery setHrStaffRecIDContains(String value) { this.HR_Staff_RecIDContains = value; return this; } public String getHrStaffRecIDLike() { return HR_Staff_RecIDLike; } public JB_EstimateJournalSetLinesQuery setHrStaffRecIDLike(String value) { this.HR_Staff_RecIDLike = value; return this; } public ArrayList getHrStaffRecIDBetween() { return HR_Staff_RecIDBetween; } public JB_EstimateJournalSetLinesQuery setHrStaffRecIDBetween(ArrayList value) { this.HR_Staff_RecIDBetween = value; return this; } public ArrayList getHrStaffRecIDIn() { return HR_Staff_RecIDIn; } public JB_EstimateJournalSetLinesQuery setHrStaffRecIDIn(ArrayList value) { this.HR_Staff_RecIDIn = value; return this; } public ArrayList getRowHash() { return RowHash; } public JB_EstimateJournalSetLinesQuery setRowHash(ArrayList value) { this.RowHash = value; return this; } public String getUnits() { return Units; } public JB_EstimateJournalSetLinesQuery setUnits(String value) { this.Units = value; return this; } public String getUnitsStartsWith() { return UnitsStartsWith; } public JB_EstimateJournalSetLinesQuery setUnitsStartsWith(String value) { this.UnitsStartsWith = value; return this; } public String getUnitsEndsWith() { return UnitsEndsWith; } public JB_EstimateJournalSetLinesQuery setUnitsEndsWith(String value) { this.UnitsEndsWith = value; return this; } public String getUnitsContains() { return UnitsContains; } public JB_EstimateJournalSetLinesQuery setUnitsContains(String value) { this.UnitsContains = value; return this; } public String getUnitsLike() { return UnitsLike; } public JB_EstimateJournalSetLinesQuery setUnitsLike(String value) { this.UnitsLike = value; return this; } public ArrayList getUnitsBetween() { return UnitsBetween; } public JB_EstimateJournalSetLinesQuery setUnitsBetween(ArrayList value) { this.UnitsBetween = value; return this; } public ArrayList getUnitsIn() { return UnitsIn; } public JB_EstimateJournalSetLinesQuery setUnitsIn(ArrayList value) { this.UnitsIn = value; return this; } public String getJbEstimateLinesRecID() { return JB_EstimateLines_RecID; } public JB_EstimateJournalSetLinesQuery setJbEstimateLinesRecID(String value) { this.JB_EstimateLines_RecID = value; return this; } public String getJbEstimateLinesRecIDStartsWith() { return JB_EstimateLines_RecIDStartsWith; } public JB_EstimateJournalSetLinesQuery setJbEstimateLinesRecIDStartsWith(String value) { this.JB_EstimateLines_RecIDStartsWith = value; return this; } public String getJbEstimateLinesRecIDEndsWith() { return JB_EstimateLines_RecIDEndsWith; } public JB_EstimateJournalSetLinesQuery setJbEstimateLinesRecIDEndsWith(String value) { this.JB_EstimateLines_RecIDEndsWith = value; return this; } public String getJbEstimateLinesRecIDContains() { return JB_EstimateLines_RecIDContains; } public JB_EstimateJournalSetLinesQuery setJbEstimateLinesRecIDContains(String value) { this.JB_EstimateLines_RecIDContains = value; return this; } public String getJbEstimateLinesRecIDLike() { return JB_EstimateLines_RecIDLike; } public JB_EstimateJournalSetLinesQuery setJbEstimateLinesRecIDLike(String value) { this.JB_EstimateLines_RecIDLike = value; return this; } public ArrayList getJbEstimateLinesRecIDBetween() { return JB_EstimateLines_RecIDBetween; } public JB_EstimateJournalSetLinesQuery setJbEstimateLinesRecIDBetween(ArrayList value) { this.JB_EstimateLines_RecIDBetween = value; return this; } public ArrayList getJbEstimateLinesRecIDIn() { return JB_EstimateLines_RecIDIn; } public JB_EstimateJournalSetLinesQuery setJbEstimateLinesRecIDIn(ArrayList value) { this.JB_EstimateLines_RecIDIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class JB_EstimateLabourLinesQuery extends QueryDb implements IReturn> { public String RecID = null; public String RecIDStartsWith = null; public String RecIDEndsWith = null; public String RecIDContains = null; public String RecIDLike = null; public ArrayList RecIDBetween = null; public ArrayList RecIDIn = null; public String JB_JobStages_RecID = null; public String JB_JobStages_RecIDStartsWith = null; public String JB_JobStages_RecIDEndsWith = null; public String JB_JobStages_RecIDContains = null; public String JB_JobStages_RecIDLike = null; public ArrayList JB_JobStages_RecIDBetween = null; public ArrayList JB_JobStages_RecIDIn = null; public String JB_Staff_RecID = null; public String JB_Staff_RecIDStartsWith = null; public String JB_Staff_RecIDEndsWith = null; public String JB_Staff_RecIDContains = null; public String JB_Staff_RecIDLike = null; public ArrayList JB_Staff_RecIDBetween = null; public ArrayList JB_Staff_RecIDIn = null; public Date TransactionDate = null; public Date TransactionDateGreaterThanOrEqualTo = null; public Date TransactionDateGreaterThan = null; public Date TransactionDateLessThan = null; public Date TransactionDateLessThanOrEqualTo = null; public Date TransactionDateNotEqualTo = null; public ArrayList TransactionDateBetween = null; public ArrayList TransactionDateIn = null; public BigDecimal Quantity = null; public BigDecimal QuantityGreaterThanOrEqualTo = null; public BigDecimal QuantityGreaterThan = null; public BigDecimal QuantityLessThan = null; public BigDecimal QuantityLessThanOrEqualTo = null; public BigDecimal QuantityNotEqualTo = null; public ArrayList QuantityBetween = null; public ArrayList QuantityIn = null; public BigDecimal UnitCost = null; public BigDecimal UnitCostGreaterThanOrEqualTo = null; public BigDecimal UnitCostGreaterThan = null; public BigDecimal UnitCostLessThan = null; public BigDecimal UnitCostLessThanOrEqualTo = null; public BigDecimal UnitCostNotEqualTo = null; public ArrayList UnitCostBetween = null; public ArrayList UnitCostIn = null; public BigDecimal UnitCharge = null; public BigDecimal UnitChargeGreaterThanOrEqualTo = null; public BigDecimal UnitChargeGreaterThan = null; public BigDecimal UnitChargeLessThan = null; public BigDecimal UnitChargeLessThanOrEqualTo = null; public BigDecimal UnitChargeNotEqualTo = null; public ArrayList UnitChargeBetween = null; public ArrayList UnitChargeIn = null; public String Remark = null; public String RemarkStartsWith = null; public String RemarkEndsWith = null; public String RemarkContains = null; public String RemarkLike = null; public ArrayList RemarkBetween = null; public ArrayList RemarkIn = null; public Date LastSavedDateTime = null; public Date LastSavedDateTimeGreaterThanOrEqualTo = null; public Date LastSavedDateTimeGreaterThan = null; public Date LastSavedDateTimeLessThan = null; public Date LastSavedDateTimeLessThanOrEqualTo = null; public Date LastSavedDateTimeNotEqualTo = null; public ArrayList LastSavedDateTimeBetween = null; public ArrayList LastSavedDateTimeIn = null; public String HR_Staff_RecID = null; public String HR_Staff_RecIDStartsWith = null; public String HR_Staff_RecIDEndsWith = null; public String HR_Staff_RecIDContains = null; public String HR_Staff_RecIDLike = null; public ArrayList HR_Staff_RecIDBetween = null; public ArrayList HR_Staff_RecIDIn = null; public ArrayList RowHash = null; public String Units = null; public String UnitsStartsWith = null; public String UnitsEndsWith = null; public String UnitsContains = null; public String UnitsLike = null; public ArrayList UnitsBetween = null; public ArrayList UnitsIn = null; public String JB_EstimateLines_RecID = null; public String JB_EstimateLines_RecIDStartsWith = null; public String JB_EstimateLines_RecIDEndsWith = null; public String JB_EstimateLines_RecIDContains = null; public String JB_EstimateLines_RecIDLike = null; public ArrayList JB_EstimateLines_RecIDBetween = null; public ArrayList JB_EstimateLines_RecIDIn = null; public String getRecID() { return RecID; } public JB_EstimateLabourLinesQuery setRecID(String value) { this.RecID = value; return this; } public String getRecIDStartsWith() { return RecIDStartsWith; } public JB_EstimateLabourLinesQuery setRecIDStartsWith(String value) { this.RecIDStartsWith = value; return this; } public String getRecIDEndsWith() { return RecIDEndsWith; } public JB_EstimateLabourLinesQuery setRecIDEndsWith(String value) { this.RecIDEndsWith = value; return this; } public String getRecIDContains() { return RecIDContains; } public JB_EstimateLabourLinesQuery setRecIDContains(String value) { this.RecIDContains = value; return this; } public String getRecIDLike() { return RecIDLike; } public JB_EstimateLabourLinesQuery setRecIDLike(String value) { this.RecIDLike = value; return this; } public ArrayList getRecIDBetween() { return RecIDBetween; } public JB_EstimateLabourLinesQuery setRecIDBetween(ArrayList value) { this.RecIDBetween = value; return this; } public ArrayList getRecIDIn() { return RecIDIn; } public JB_EstimateLabourLinesQuery setRecIDIn(ArrayList value) { this.RecIDIn = value; return this; } public String getJbJobStagesRecID() { return JB_JobStages_RecID; } public JB_EstimateLabourLinesQuery setJbJobStagesRecID(String value) { this.JB_JobStages_RecID = value; return this; } public String getJbJobStagesRecIDStartsWith() { return JB_JobStages_RecIDStartsWith; } public JB_EstimateLabourLinesQuery setJbJobStagesRecIDStartsWith(String value) { this.JB_JobStages_RecIDStartsWith = value; return this; } public String getJbJobStagesRecIDEndsWith() { return JB_JobStages_RecIDEndsWith; } public JB_EstimateLabourLinesQuery setJbJobStagesRecIDEndsWith(String value) { this.JB_JobStages_RecIDEndsWith = value; return this; } public String getJbJobStagesRecIDContains() { return JB_JobStages_RecIDContains; } public JB_EstimateLabourLinesQuery setJbJobStagesRecIDContains(String value) { this.JB_JobStages_RecIDContains = value; return this; } public String getJbJobStagesRecIDLike() { return JB_JobStages_RecIDLike; } public JB_EstimateLabourLinesQuery setJbJobStagesRecIDLike(String value) { this.JB_JobStages_RecIDLike = value; return this; } public ArrayList getJbJobStagesRecIDBetween() { return JB_JobStages_RecIDBetween; } public JB_EstimateLabourLinesQuery setJbJobStagesRecIDBetween(ArrayList value) { this.JB_JobStages_RecIDBetween = value; return this; } public ArrayList getJbJobStagesRecIDIn() { return JB_JobStages_RecIDIn; } public JB_EstimateLabourLinesQuery setJbJobStagesRecIDIn(ArrayList value) { this.JB_JobStages_RecIDIn = value; return this; } public String getJbStaffRecID() { return JB_Staff_RecID; } public JB_EstimateLabourLinesQuery setJbStaffRecID(String value) { this.JB_Staff_RecID = value; return this; } public String getJbStaffRecIDStartsWith() { return JB_Staff_RecIDStartsWith; } public JB_EstimateLabourLinesQuery setJbStaffRecIDStartsWith(String value) { this.JB_Staff_RecIDStartsWith = value; return this; } public String getJbStaffRecIDEndsWith() { return JB_Staff_RecIDEndsWith; } public JB_EstimateLabourLinesQuery setJbStaffRecIDEndsWith(String value) { this.JB_Staff_RecIDEndsWith = value; return this; } public String getJbStaffRecIDContains() { return JB_Staff_RecIDContains; } public JB_EstimateLabourLinesQuery setJbStaffRecIDContains(String value) { this.JB_Staff_RecIDContains = value; return this; } public String getJbStaffRecIDLike() { return JB_Staff_RecIDLike; } public JB_EstimateLabourLinesQuery setJbStaffRecIDLike(String value) { this.JB_Staff_RecIDLike = value; return this; } public ArrayList getJbStaffRecIDBetween() { return JB_Staff_RecIDBetween; } public JB_EstimateLabourLinesQuery setJbStaffRecIDBetween(ArrayList value) { this.JB_Staff_RecIDBetween = value; return this; } public ArrayList getJbStaffRecIDIn() { return JB_Staff_RecIDIn; } public JB_EstimateLabourLinesQuery setJbStaffRecIDIn(ArrayList value) { this.JB_Staff_RecIDIn = value; return this; } public Date getTransactionDate() { return TransactionDate; } public JB_EstimateLabourLinesQuery setTransactionDate(Date value) { this.TransactionDate = value; return this; } public Date getTransactionDateGreaterThanOrEqualTo() { return TransactionDateGreaterThanOrEqualTo; } public JB_EstimateLabourLinesQuery setTransactionDateGreaterThanOrEqualTo(Date value) { this.TransactionDateGreaterThanOrEqualTo = value; return this; } public Date getTransactionDateGreaterThan() { return TransactionDateGreaterThan; } public JB_EstimateLabourLinesQuery setTransactionDateGreaterThan(Date value) { this.TransactionDateGreaterThan = value; return this; } public Date getTransactionDateLessThan() { return TransactionDateLessThan; } public JB_EstimateLabourLinesQuery setTransactionDateLessThan(Date value) { this.TransactionDateLessThan = value; return this; } public Date getTransactionDateLessThanOrEqualTo() { return TransactionDateLessThanOrEqualTo; } public JB_EstimateLabourLinesQuery setTransactionDateLessThanOrEqualTo(Date value) { this.TransactionDateLessThanOrEqualTo = value; return this; } public Date getTransactionDateNotEqualTo() { return TransactionDateNotEqualTo; } public JB_EstimateLabourLinesQuery setTransactionDateNotEqualTo(Date value) { this.TransactionDateNotEqualTo = value; return this; } public ArrayList getTransactionDateBetween() { return TransactionDateBetween; } public JB_EstimateLabourLinesQuery setTransactionDateBetween(ArrayList value) { this.TransactionDateBetween = value; return this; } public ArrayList getTransactionDateIn() { return TransactionDateIn; } public JB_EstimateLabourLinesQuery setTransactionDateIn(ArrayList value) { this.TransactionDateIn = value; return this; } public BigDecimal getQuantity() { return Quantity; } public JB_EstimateLabourLinesQuery setQuantity(BigDecimal value) { this.Quantity = value; return this; } public BigDecimal getQuantityGreaterThanOrEqualTo() { return QuantityGreaterThanOrEqualTo; } public JB_EstimateLabourLinesQuery setQuantityGreaterThanOrEqualTo(BigDecimal value) { this.QuantityGreaterThanOrEqualTo = value; return this; } public BigDecimal getQuantityGreaterThan() { return QuantityGreaterThan; } public JB_EstimateLabourLinesQuery setQuantityGreaterThan(BigDecimal value) { this.QuantityGreaterThan = value; return this; } public BigDecimal getQuantityLessThan() { return QuantityLessThan; } public JB_EstimateLabourLinesQuery setQuantityLessThan(BigDecimal value) { this.QuantityLessThan = value; return this; } public BigDecimal getQuantityLessThanOrEqualTo() { return QuantityLessThanOrEqualTo; } public JB_EstimateLabourLinesQuery setQuantityLessThanOrEqualTo(BigDecimal value) { this.QuantityLessThanOrEqualTo = value; return this; } public BigDecimal getQuantityNotEqualTo() { return QuantityNotEqualTo; } public JB_EstimateLabourLinesQuery setQuantityNotEqualTo(BigDecimal value) { this.QuantityNotEqualTo = value; return this; } public ArrayList getQuantityBetween() { return QuantityBetween; } public JB_EstimateLabourLinesQuery setQuantityBetween(ArrayList value) { this.QuantityBetween = value; return this; } public ArrayList getQuantityIn() { return QuantityIn; } public JB_EstimateLabourLinesQuery setQuantityIn(ArrayList value) { this.QuantityIn = value; return this; } public BigDecimal getUnitCost() { return UnitCost; } public JB_EstimateLabourLinesQuery setUnitCost(BigDecimal value) { this.UnitCost = value; return this; } public BigDecimal getUnitCostGreaterThanOrEqualTo() { return UnitCostGreaterThanOrEqualTo; } public JB_EstimateLabourLinesQuery setUnitCostGreaterThanOrEqualTo(BigDecimal value) { this.UnitCostGreaterThanOrEqualTo = value; return this; } public BigDecimal getUnitCostGreaterThan() { return UnitCostGreaterThan; } public JB_EstimateLabourLinesQuery setUnitCostGreaterThan(BigDecimal value) { this.UnitCostGreaterThan = value; return this; } public BigDecimal getUnitCostLessThan() { return UnitCostLessThan; } public JB_EstimateLabourLinesQuery setUnitCostLessThan(BigDecimal value) { this.UnitCostLessThan = value; return this; } public BigDecimal getUnitCostLessThanOrEqualTo() { return UnitCostLessThanOrEqualTo; } public JB_EstimateLabourLinesQuery setUnitCostLessThanOrEqualTo(BigDecimal value) { this.UnitCostLessThanOrEqualTo = value; return this; } public BigDecimal getUnitCostNotEqualTo() { return UnitCostNotEqualTo; } public JB_EstimateLabourLinesQuery setUnitCostNotEqualTo(BigDecimal value) { this.UnitCostNotEqualTo = value; return this; } public ArrayList getUnitCostBetween() { return UnitCostBetween; } public JB_EstimateLabourLinesQuery setUnitCostBetween(ArrayList value) { this.UnitCostBetween = value; return this; } public ArrayList getUnitCostIn() { return UnitCostIn; } public JB_EstimateLabourLinesQuery setUnitCostIn(ArrayList value) { this.UnitCostIn = value; return this; } public BigDecimal getUnitCharge() { return UnitCharge; } public JB_EstimateLabourLinesQuery setUnitCharge(BigDecimal value) { this.UnitCharge = value; return this; } public BigDecimal getUnitChargeGreaterThanOrEqualTo() { return UnitChargeGreaterThanOrEqualTo; } public JB_EstimateLabourLinesQuery setUnitChargeGreaterThanOrEqualTo(BigDecimal value) { this.UnitChargeGreaterThanOrEqualTo = value; return this; } public BigDecimal getUnitChargeGreaterThan() { return UnitChargeGreaterThan; } public JB_EstimateLabourLinesQuery setUnitChargeGreaterThan(BigDecimal value) { this.UnitChargeGreaterThan = value; return this; } public BigDecimal getUnitChargeLessThan() { return UnitChargeLessThan; } public JB_EstimateLabourLinesQuery setUnitChargeLessThan(BigDecimal value) { this.UnitChargeLessThan = value; return this; } public BigDecimal getUnitChargeLessThanOrEqualTo() { return UnitChargeLessThanOrEqualTo; } public JB_EstimateLabourLinesQuery setUnitChargeLessThanOrEqualTo(BigDecimal value) { this.UnitChargeLessThanOrEqualTo = value; return this; } public BigDecimal getUnitChargeNotEqualTo() { return UnitChargeNotEqualTo; } public JB_EstimateLabourLinesQuery setUnitChargeNotEqualTo(BigDecimal value) { this.UnitChargeNotEqualTo = value; return this; } public ArrayList getUnitChargeBetween() { return UnitChargeBetween; } public JB_EstimateLabourLinesQuery setUnitChargeBetween(ArrayList value) { this.UnitChargeBetween = value; return this; } public ArrayList getUnitChargeIn() { return UnitChargeIn; } public JB_EstimateLabourLinesQuery setUnitChargeIn(ArrayList value) { this.UnitChargeIn = value; return this; } public String getRemark() { return Remark; } public JB_EstimateLabourLinesQuery setRemark(String value) { this.Remark = value; return this; } public String getRemarkStartsWith() { return RemarkStartsWith; } public JB_EstimateLabourLinesQuery setRemarkStartsWith(String value) { this.RemarkStartsWith = value; return this; } public String getRemarkEndsWith() { return RemarkEndsWith; } public JB_EstimateLabourLinesQuery setRemarkEndsWith(String value) { this.RemarkEndsWith = value; return this; } public String getRemarkContains() { return RemarkContains; } public JB_EstimateLabourLinesQuery setRemarkContains(String value) { this.RemarkContains = value; return this; } public String getRemarkLike() { return RemarkLike; } public JB_EstimateLabourLinesQuery setRemarkLike(String value) { this.RemarkLike = value; return this; } public ArrayList getRemarkBetween() { return RemarkBetween; } public JB_EstimateLabourLinesQuery setRemarkBetween(ArrayList value) { this.RemarkBetween = value; return this; } public ArrayList getRemarkIn() { return RemarkIn; } public JB_EstimateLabourLinesQuery setRemarkIn(ArrayList value) { this.RemarkIn = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public JB_EstimateLabourLinesQuery setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getLastSavedDateTimeGreaterThanOrEqualTo() { return LastSavedDateTimeGreaterThanOrEqualTo; } public JB_EstimateLabourLinesQuery setLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.LastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeGreaterThan() { return LastSavedDateTimeGreaterThan; } public JB_EstimateLabourLinesQuery setLastSavedDateTimeGreaterThan(Date value) { this.LastSavedDateTimeGreaterThan = value; return this; } public Date getLastSavedDateTimeLessThan() { return LastSavedDateTimeLessThan; } public JB_EstimateLabourLinesQuery setLastSavedDateTimeLessThan(Date value) { this.LastSavedDateTimeLessThan = value; return this; } public Date getLastSavedDateTimeLessThanOrEqualTo() { return LastSavedDateTimeLessThanOrEqualTo; } public JB_EstimateLabourLinesQuery setLastSavedDateTimeLessThanOrEqualTo(Date value) { this.LastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeNotEqualTo() { return LastSavedDateTimeNotEqualTo; } public JB_EstimateLabourLinesQuery setLastSavedDateTimeNotEqualTo(Date value) { this.LastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getLastSavedDateTimeBetween() { return LastSavedDateTimeBetween; } public JB_EstimateLabourLinesQuery setLastSavedDateTimeBetween(ArrayList value) { this.LastSavedDateTimeBetween = value; return this; } public ArrayList getLastSavedDateTimeIn() { return LastSavedDateTimeIn; } public JB_EstimateLabourLinesQuery setLastSavedDateTimeIn(ArrayList value) { this.LastSavedDateTimeIn = value; return this; } public String getHrStaffRecID() { return HR_Staff_RecID; } public JB_EstimateLabourLinesQuery setHrStaffRecID(String value) { this.HR_Staff_RecID = value; return this; } public String getHrStaffRecIDStartsWith() { return HR_Staff_RecIDStartsWith; } public JB_EstimateLabourLinesQuery setHrStaffRecIDStartsWith(String value) { this.HR_Staff_RecIDStartsWith = value; return this; } public String getHrStaffRecIDEndsWith() { return HR_Staff_RecIDEndsWith; } public JB_EstimateLabourLinesQuery setHrStaffRecIDEndsWith(String value) { this.HR_Staff_RecIDEndsWith = value; return this; } public String getHrStaffRecIDContains() { return HR_Staff_RecIDContains; } public JB_EstimateLabourLinesQuery setHrStaffRecIDContains(String value) { this.HR_Staff_RecIDContains = value; return this; } public String getHrStaffRecIDLike() { return HR_Staff_RecIDLike; } public JB_EstimateLabourLinesQuery setHrStaffRecIDLike(String value) { this.HR_Staff_RecIDLike = value; return this; } public ArrayList getHrStaffRecIDBetween() { return HR_Staff_RecIDBetween; } public JB_EstimateLabourLinesQuery setHrStaffRecIDBetween(ArrayList value) { this.HR_Staff_RecIDBetween = value; return this; } public ArrayList getHrStaffRecIDIn() { return HR_Staff_RecIDIn; } public JB_EstimateLabourLinesQuery setHrStaffRecIDIn(ArrayList value) { this.HR_Staff_RecIDIn = value; return this; } public ArrayList getRowHash() { return RowHash; } public JB_EstimateLabourLinesQuery setRowHash(ArrayList value) { this.RowHash = value; return this; } public String getUnits() { return Units; } public JB_EstimateLabourLinesQuery setUnits(String value) { this.Units = value; return this; } public String getUnitsStartsWith() { return UnitsStartsWith; } public JB_EstimateLabourLinesQuery setUnitsStartsWith(String value) { this.UnitsStartsWith = value; return this; } public String getUnitsEndsWith() { return UnitsEndsWith; } public JB_EstimateLabourLinesQuery setUnitsEndsWith(String value) { this.UnitsEndsWith = value; return this; } public String getUnitsContains() { return UnitsContains; } public JB_EstimateLabourLinesQuery setUnitsContains(String value) { this.UnitsContains = value; return this; } public String getUnitsLike() { return UnitsLike; } public JB_EstimateLabourLinesQuery setUnitsLike(String value) { this.UnitsLike = value; return this; } public ArrayList getUnitsBetween() { return UnitsBetween; } public JB_EstimateLabourLinesQuery setUnitsBetween(ArrayList value) { this.UnitsBetween = value; return this; } public ArrayList getUnitsIn() { return UnitsIn; } public JB_EstimateLabourLinesQuery setUnitsIn(ArrayList value) { this.UnitsIn = value; return this; } public String getJbEstimateLinesRecID() { return JB_EstimateLines_RecID; } public JB_EstimateLabourLinesQuery setJbEstimateLinesRecID(String value) { this.JB_EstimateLines_RecID = value; return this; } public String getJbEstimateLinesRecIDStartsWith() { return JB_EstimateLines_RecIDStartsWith; } public JB_EstimateLabourLinesQuery setJbEstimateLinesRecIDStartsWith(String value) { this.JB_EstimateLines_RecIDStartsWith = value; return this; } public String getJbEstimateLinesRecIDEndsWith() { return JB_EstimateLines_RecIDEndsWith; } public JB_EstimateLabourLinesQuery setJbEstimateLinesRecIDEndsWith(String value) { this.JB_EstimateLines_RecIDEndsWith = value; return this; } public String getJbEstimateLinesRecIDContains() { return JB_EstimateLines_RecIDContains; } public JB_EstimateLabourLinesQuery setJbEstimateLinesRecIDContains(String value) { this.JB_EstimateLines_RecIDContains = value; return this; } public String getJbEstimateLinesRecIDLike() { return JB_EstimateLines_RecIDLike; } public JB_EstimateLabourLinesQuery setJbEstimateLinesRecIDLike(String value) { this.JB_EstimateLines_RecIDLike = value; return this; } public ArrayList getJbEstimateLinesRecIDBetween() { return JB_EstimateLines_RecIDBetween; } public JB_EstimateLabourLinesQuery setJbEstimateLinesRecIDBetween(ArrayList value) { this.JB_EstimateLines_RecIDBetween = value; return this; } public ArrayList getJbEstimateLinesRecIDIn() { return JB_EstimateLines_RecIDIn; } public JB_EstimateLabourLinesQuery setJbEstimateLinesRecIDIn(ArrayList value) { this.JB_EstimateLines_RecIDIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class JB_EstimateLinesQuery extends QueryDb implements IReturn> { public String RecID = null; public String RecIDStartsWith = null; public String RecIDEndsWith = null; public String RecIDContains = null; public String RecIDLike = null; public ArrayList RecIDBetween = null; public ArrayList RecIDIn = null; public Integer ItemNo = null; public Integer ItemNoGreaterThanOrEqualTo = null; public Integer ItemNoGreaterThan = null; public Integer ItemNoLessThan = null; public Integer ItemNoLessThanOrEqualTo = null; public Integer ItemNoNotEqualTo = null; public ArrayList ItemNoBetween = null; public ArrayList ItemNoIn = null; public String JB_Estimates_RecID = null; public String JB_Estimates_RecIDStartsWith = null; public String JB_Estimates_RecIDEndsWith = null; public String JB_Estimates_RecIDContains = null; public String JB_Estimates_RecIDLike = null; public ArrayList JB_Estimates_RecIDBetween = null; public ArrayList JB_Estimates_RecIDIn = null; public String getRecID() { return RecID; } public JB_EstimateLinesQuery setRecID(String value) { this.RecID = value; return this; } public String getRecIDStartsWith() { return RecIDStartsWith; } public JB_EstimateLinesQuery setRecIDStartsWith(String value) { this.RecIDStartsWith = value; return this; } public String getRecIDEndsWith() { return RecIDEndsWith; } public JB_EstimateLinesQuery setRecIDEndsWith(String value) { this.RecIDEndsWith = value; return this; } public String getRecIDContains() { return RecIDContains; } public JB_EstimateLinesQuery setRecIDContains(String value) { this.RecIDContains = value; return this; } public String getRecIDLike() { return RecIDLike; } public JB_EstimateLinesQuery setRecIDLike(String value) { this.RecIDLike = value; return this; } public ArrayList getRecIDBetween() { return RecIDBetween; } public JB_EstimateLinesQuery setRecIDBetween(ArrayList value) { this.RecIDBetween = value; return this; } public ArrayList getRecIDIn() { return RecIDIn; } public JB_EstimateLinesQuery setRecIDIn(ArrayList value) { this.RecIDIn = value; return this; } public Integer getItemNo() { return ItemNo; } public JB_EstimateLinesQuery setItemNo(Integer value) { this.ItemNo = value; return this; } public Integer getItemNoGreaterThanOrEqualTo() { return ItemNoGreaterThanOrEqualTo; } public JB_EstimateLinesQuery setItemNoGreaterThanOrEqualTo(Integer value) { this.ItemNoGreaterThanOrEqualTo = value; return this; } public Integer getItemNoGreaterThan() { return ItemNoGreaterThan; } public JB_EstimateLinesQuery setItemNoGreaterThan(Integer value) { this.ItemNoGreaterThan = value; return this; } public Integer getItemNoLessThan() { return ItemNoLessThan; } public JB_EstimateLinesQuery setItemNoLessThan(Integer value) { this.ItemNoLessThan = value; return this; } public Integer getItemNoLessThanOrEqualTo() { return ItemNoLessThanOrEqualTo; } public JB_EstimateLinesQuery setItemNoLessThanOrEqualTo(Integer value) { this.ItemNoLessThanOrEqualTo = value; return this; } public Integer getItemNoNotEqualTo() { return ItemNoNotEqualTo; } public JB_EstimateLinesQuery setItemNoNotEqualTo(Integer value) { this.ItemNoNotEqualTo = value; return this; } public ArrayList getItemNoBetween() { return ItemNoBetween; } public JB_EstimateLinesQuery setItemNoBetween(ArrayList value) { this.ItemNoBetween = value; return this; } public ArrayList getItemNoIn() { return ItemNoIn; } public JB_EstimateLinesQuery setItemNoIn(ArrayList value) { this.ItemNoIn = value; return this; } public String getJbEstimatesRecID() { return JB_Estimates_RecID; } public JB_EstimateLinesQuery setJbEstimatesRecID(String value) { this.JB_Estimates_RecID = value; return this; } public String getJbEstimatesRecIDStartsWith() { return JB_Estimates_RecIDStartsWith; } public JB_EstimateLinesQuery setJbEstimatesRecIDStartsWith(String value) { this.JB_Estimates_RecIDStartsWith = value; return this; } public String getJbEstimatesRecIDEndsWith() { return JB_Estimates_RecIDEndsWith; } public JB_EstimateLinesQuery setJbEstimatesRecIDEndsWith(String value) { this.JB_Estimates_RecIDEndsWith = value; return this; } public String getJbEstimatesRecIDContains() { return JB_Estimates_RecIDContains; } public JB_EstimateLinesQuery setJbEstimatesRecIDContains(String value) { this.JB_Estimates_RecIDContains = value; return this; } public String getJbEstimatesRecIDLike() { return JB_Estimates_RecIDLike; } public JB_EstimateLinesQuery setJbEstimatesRecIDLike(String value) { this.JB_Estimates_RecIDLike = value; return this; } public ArrayList getJbEstimatesRecIDBetween() { return JB_Estimates_RecIDBetween; } public JB_EstimateLinesQuery setJbEstimatesRecIDBetween(ArrayList value) { this.JB_Estimates_RecIDBetween = value; return this; } public ArrayList getJbEstimatesRecIDIn() { return JB_Estimates_RecIDIn; } public JB_EstimateLinesQuery setJbEstimatesRecIDIn(ArrayList value) { this.JB_Estimates_RecIDIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class CR_DocumentsQuery extends QueryDb implements IReturn> { public String RecID = null; public String RecIDStartsWith = null; public String RecIDEndsWith = null; public String RecIDContains = null; public String RecIDLike = null; public ArrayList RecIDBetween = null; public ArrayList RecIDIn = null; public String CreditorID = null; public String CreditorIDStartsWith = null; public String CreditorIDEndsWith = null; public String CreditorIDContains = null; public String CreditorIDLike = null; public ArrayList CreditorIDBetween = null; public ArrayList CreditorIDIn = null; public String DocumentTypeID = null; public String DocumentTypeIDStartsWith = null; public String DocumentTypeIDEndsWith = null; public String DocumentTypeIDContains = null; public String DocumentTypeIDLike = null; public ArrayList DocumentTypeIDBetween = null; public ArrayList DocumentTypeIDIn = null; public Date LastSavedDateTime = null; public Date LastSavedDateTimeGreaterThanOrEqualTo = null; public Date LastSavedDateTimeGreaterThan = null; public Date LastSavedDateTimeLessThan = null; public Date LastSavedDateTimeLessThanOrEqualTo = null; public Date LastSavedDateTimeNotEqualTo = null; public ArrayList LastSavedDateTimeBetween = null; public ArrayList LastSavedDateTimeIn = null; public String LastSavedByStaffID = null; public String LastSavedByStaffIDStartsWith = null; public String LastSavedByStaffIDEndsWith = null; public String LastSavedByStaffIDContains = null; public String LastSavedByStaffIDLike = null; public ArrayList LastSavedByStaffIDBetween = null; public ArrayList LastSavedByStaffIDIn = null; public ArrayList FileBinary = null; public String Description = null; public String DescriptionStartsWith = null; public String DescriptionEndsWith = null; public String DescriptionContains = null; public String DescriptionLike = null; public ArrayList DescriptionBetween = null; public ArrayList DescriptionIn = null; public String PhysicalFileName = null; public String PhysicalFileNameStartsWith = null; public String PhysicalFileNameEndsWith = null; public String PhysicalFileNameContains = null; public String PhysicalFileNameLike = null; public ArrayList PhysicalFileNameBetween = null; public ArrayList PhysicalFileNameIn = null; public Integer ItemNo = null; public Integer ItemNoGreaterThanOrEqualTo = null; public Integer ItemNoGreaterThan = null; public Integer ItemNoLessThan = null; public Integer ItemNoLessThanOrEqualTo = null; public Integer ItemNoNotEqualTo = null; public ArrayList ItemNoBetween = null; public ArrayList ItemNoIn = null; public String getRecID() { return RecID; } public CR_DocumentsQuery setRecID(String value) { this.RecID = value; return this; } public String getRecIDStartsWith() { return RecIDStartsWith; } public CR_DocumentsQuery setRecIDStartsWith(String value) { this.RecIDStartsWith = value; return this; } public String getRecIDEndsWith() { return RecIDEndsWith; } public CR_DocumentsQuery setRecIDEndsWith(String value) { this.RecIDEndsWith = value; return this; } public String getRecIDContains() { return RecIDContains; } public CR_DocumentsQuery setRecIDContains(String value) { this.RecIDContains = value; return this; } public String getRecIDLike() { return RecIDLike; } public CR_DocumentsQuery setRecIDLike(String value) { this.RecIDLike = value; return this; } public ArrayList getRecIDBetween() { return RecIDBetween; } public CR_DocumentsQuery setRecIDBetween(ArrayList value) { this.RecIDBetween = value; return this; } public ArrayList getRecIDIn() { return RecIDIn; } public CR_DocumentsQuery setRecIDIn(ArrayList value) { this.RecIDIn = value; return this; } public String getCreditorID() { return CreditorID; } public CR_DocumentsQuery setCreditorID(String value) { this.CreditorID = value; return this; } public String getCreditorIDStartsWith() { return CreditorIDStartsWith; } public CR_DocumentsQuery setCreditorIDStartsWith(String value) { this.CreditorIDStartsWith = value; return this; } public String getCreditorIDEndsWith() { return CreditorIDEndsWith; } public CR_DocumentsQuery setCreditorIDEndsWith(String value) { this.CreditorIDEndsWith = value; return this; } public String getCreditorIDContains() { return CreditorIDContains; } public CR_DocumentsQuery setCreditorIDContains(String value) { this.CreditorIDContains = value; return this; } public String getCreditorIDLike() { return CreditorIDLike; } public CR_DocumentsQuery setCreditorIDLike(String value) { this.CreditorIDLike = value; return this; } public ArrayList getCreditorIDBetween() { return CreditorIDBetween; } public CR_DocumentsQuery setCreditorIDBetween(ArrayList value) { this.CreditorIDBetween = value; return this; } public ArrayList getCreditorIDIn() { return CreditorIDIn; } public CR_DocumentsQuery setCreditorIDIn(ArrayList value) { this.CreditorIDIn = value; return this; } public String getDocumentTypeID() { return DocumentTypeID; } public CR_DocumentsQuery setDocumentTypeID(String value) { this.DocumentTypeID = value; return this; } public String getDocumentTypeIDStartsWith() { return DocumentTypeIDStartsWith; } public CR_DocumentsQuery setDocumentTypeIDStartsWith(String value) { this.DocumentTypeIDStartsWith = value; return this; } public String getDocumentTypeIDEndsWith() { return DocumentTypeIDEndsWith; } public CR_DocumentsQuery setDocumentTypeIDEndsWith(String value) { this.DocumentTypeIDEndsWith = value; return this; } public String getDocumentTypeIDContains() { return DocumentTypeIDContains; } public CR_DocumentsQuery setDocumentTypeIDContains(String value) { this.DocumentTypeIDContains = value; return this; } public String getDocumentTypeIDLike() { return DocumentTypeIDLike; } public CR_DocumentsQuery setDocumentTypeIDLike(String value) { this.DocumentTypeIDLike = value; return this; } public ArrayList getDocumentTypeIDBetween() { return DocumentTypeIDBetween; } public CR_DocumentsQuery setDocumentTypeIDBetween(ArrayList value) { this.DocumentTypeIDBetween = value; return this; } public ArrayList getDocumentTypeIDIn() { return DocumentTypeIDIn; } public CR_DocumentsQuery setDocumentTypeIDIn(ArrayList value) { this.DocumentTypeIDIn = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public CR_DocumentsQuery setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getLastSavedDateTimeGreaterThanOrEqualTo() { return LastSavedDateTimeGreaterThanOrEqualTo; } public CR_DocumentsQuery setLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.LastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeGreaterThan() { return LastSavedDateTimeGreaterThan; } public CR_DocumentsQuery setLastSavedDateTimeGreaterThan(Date value) { this.LastSavedDateTimeGreaterThan = value; return this; } public Date getLastSavedDateTimeLessThan() { return LastSavedDateTimeLessThan; } public CR_DocumentsQuery setLastSavedDateTimeLessThan(Date value) { this.LastSavedDateTimeLessThan = value; return this; } public Date getLastSavedDateTimeLessThanOrEqualTo() { return LastSavedDateTimeLessThanOrEqualTo; } public CR_DocumentsQuery setLastSavedDateTimeLessThanOrEqualTo(Date value) { this.LastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeNotEqualTo() { return LastSavedDateTimeNotEqualTo; } public CR_DocumentsQuery setLastSavedDateTimeNotEqualTo(Date value) { this.LastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getLastSavedDateTimeBetween() { return LastSavedDateTimeBetween; } public CR_DocumentsQuery setLastSavedDateTimeBetween(ArrayList value) { this.LastSavedDateTimeBetween = value; return this; } public ArrayList getLastSavedDateTimeIn() { return LastSavedDateTimeIn; } public CR_DocumentsQuery setLastSavedDateTimeIn(ArrayList value) { this.LastSavedDateTimeIn = value; return this; } public String getLastSavedByStaffID() { return LastSavedByStaffID; } public CR_DocumentsQuery setLastSavedByStaffID(String value) { this.LastSavedByStaffID = value; return this; } public String getLastSavedByStaffIDStartsWith() { return LastSavedByStaffIDStartsWith; } public CR_DocumentsQuery setLastSavedByStaffIDStartsWith(String value) { this.LastSavedByStaffIDStartsWith = value; return this; } public String getLastSavedByStaffIDEndsWith() { return LastSavedByStaffIDEndsWith; } public CR_DocumentsQuery setLastSavedByStaffIDEndsWith(String value) { this.LastSavedByStaffIDEndsWith = value; return this; } public String getLastSavedByStaffIDContains() { return LastSavedByStaffIDContains; } public CR_DocumentsQuery setLastSavedByStaffIDContains(String value) { this.LastSavedByStaffIDContains = value; return this; } public String getLastSavedByStaffIDLike() { return LastSavedByStaffIDLike; } public CR_DocumentsQuery setLastSavedByStaffIDLike(String value) { this.LastSavedByStaffIDLike = value; return this; } public ArrayList getLastSavedByStaffIDBetween() { return LastSavedByStaffIDBetween; } public CR_DocumentsQuery setLastSavedByStaffIDBetween(ArrayList value) { this.LastSavedByStaffIDBetween = value; return this; } public ArrayList getLastSavedByStaffIDIn() { return LastSavedByStaffIDIn; } public CR_DocumentsQuery setLastSavedByStaffIDIn(ArrayList value) { this.LastSavedByStaffIDIn = value; return this; } public ArrayList getFileBinary() { return FileBinary; } public CR_DocumentsQuery setFileBinary(ArrayList value) { this.FileBinary = value; return this; } public String getDescription() { return Description; } public CR_DocumentsQuery setDescription(String value) { this.Description = value; return this; } public String getDescriptionStartsWith() { return DescriptionStartsWith; } public CR_DocumentsQuery setDescriptionStartsWith(String value) { this.DescriptionStartsWith = value; return this; } public String getDescriptionEndsWith() { return DescriptionEndsWith; } public CR_DocumentsQuery setDescriptionEndsWith(String value) { this.DescriptionEndsWith = value; return this; } public String getDescriptionContains() { return DescriptionContains; } public CR_DocumentsQuery setDescriptionContains(String value) { this.DescriptionContains = value; return this; } public String getDescriptionLike() { return DescriptionLike; } public CR_DocumentsQuery setDescriptionLike(String value) { this.DescriptionLike = value; return this; } public ArrayList getDescriptionBetween() { return DescriptionBetween; } public CR_DocumentsQuery setDescriptionBetween(ArrayList value) { this.DescriptionBetween = value; return this; } public ArrayList getDescriptionIn() { return DescriptionIn; } public CR_DocumentsQuery setDescriptionIn(ArrayList value) { this.DescriptionIn = value; return this; } public String getPhysicalFileName() { return PhysicalFileName; } public CR_DocumentsQuery setPhysicalFileName(String value) { this.PhysicalFileName = value; return this; } public String getPhysicalFileNameStartsWith() { return PhysicalFileNameStartsWith; } public CR_DocumentsQuery setPhysicalFileNameStartsWith(String value) { this.PhysicalFileNameStartsWith = value; return this; } public String getPhysicalFileNameEndsWith() { return PhysicalFileNameEndsWith; } public CR_DocumentsQuery setPhysicalFileNameEndsWith(String value) { this.PhysicalFileNameEndsWith = value; return this; } public String getPhysicalFileNameContains() { return PhysicalFileNameContains; } public CR_DocumentsQuery setPhysicalFileNameContains(String value) { this.PhysicalFileNameContains = value; return this; } public String getPhysicalFileNameLike() { return PhysicalFileNameLike; } public CR_DocumentsQuery setPhysicalFileNameLike(String value) { this.PhysicalFileNameLike = value; return this; } public ArrayList getPhysicalFileNameBetween() { return PhysicalFileNameBetween; } public CR_DocumentsQuery setPhysicalFileNameBetween(ArrayList value) { this.PhysicalFileNameBetween = value; return this; } public ArrayList getPhysicalFileNameIn() { return PhysicalFileNameIn; } public CR_DocumentsQuery setPhysicalFileNameIn(ArrayList value) { this.PhysicalFileNameIn = value; return this; } public Integer getItemNo() { return ItemNo; } public CR_DocumentsQuery setItemNo(Integer value) { this.ItemNo = value; return this; } public Integer getItemNoGreaterThanOrEqualTo() { return ItemNoGreaterThanOrEqualTo; } public CR_DocumentsQuery setItemNoGreaterThanOrEqualTo(Integer value) { this.ItemNoGreaterThanOrEqualTo = value; return this; } public Integer getItemNoGreaterThan() { return ItemNoGreaterThan; } public CR_DocumentsQuery setItemNoGreaterThan(Integer value) { this.ItemNoGreaterThan = value; return this; } public Integer getItemNoLessThan() { return ItemNoLessThan; } public CR_DocumentsQuery setItemNoLessThan(Integer value) { this.ItemNoLessThan = value; return this; } public Integer getItemNoLessThanOrEqualTo() { return ItemNoLessThanOrEqualTo; } public CR_DocumentsQuery setItemNoLessThanOrEqualTo(Integer value) { this.ItemNoLessThanOrEqualTo = value; return this; } public Integer getItemNoNotEqualTo() { return ItemNoNotEqualTo; } public CR_DocumentsQuery setItemNoNotEqualTo(Integer value) { this.ItemNoNotEqualTo = value; return this; } public ArrayList getItemNoBetween() { return ItemNoBetween; } public CR_DocumentsQuery setItemNoBetween(ArrayList value) { this.ItemNoBetween = value; return this; } public ArrayList getItemNoIn() { return ItemNoIn; } public CR_DocumentsQuery setItemNoIn(ArrayList value) { this.ItemNoIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class CR_ForwardCoverQuery extends QueryDb implements IReturn> { public String RecID = null; public String RecIDStartsWith = null; public String RecIDEndsWith = null; public String RecIDContains = null; public String RecIDLike = null; public ArrayList RecIDBetween = null; public ArrayList RecIDIn = null; public Date LastSavedDateTime = null; public Date LastSavedDateTimeGreaterThanOrEqualTo = null; public Date LastSavedDateTimeGreaterThan = null; public Date LastSavedDateTimeLessThan = null; public Date LastSavedDateTimeLessThanOrEqualTo = null; public Date LastSavedDateTimeNotEqualTo = null; public ArrayList LastSavedDateTimeBetween = null; public ArrayList LastSavedDateTimeIn = null; public String ContractNo = null; public String ContractNoStartsWith = null; public String ContractNoEndsWith = null; public String ContractNoContains = null; public String ContractNoLike = null; public ArrayList ContractNoBetween = null; public ArrayList ContractNoIn = null; public String Description = null; public String DescriptionStartsWith = null; public String DescriptionEndsWith = null; public String DescriptionContains = null; public String DescriptionLike = null; public ArrayList DescriptionBetween = null; public ArrayList DescriptionIn = null; public String FX_Main_RecID = null; public String FX_Main_RecIDStartsWith = null; public String FX_Main_RecIDEndsWith = null; public String FX_Main_RecIDContains = null; public String FX_Main_RecIDLike = null; public ArrayList FX_Main_RecIDBetween = null; public ArrayList FX_Main_RecIDIn = null; public Short CurrencyDecimalPlaces = null; public Short CurrencyDecimalPlacesGreaterThanOrEqualTo = null; public Short CurrencyDecimalPlacesGreaterThan = null; public Short CurrencyDecimalPlacesLessThan = null; public Short CurrencyDecimalPlacesLessThanOrEqualTo = null; public Short CurrencyDecimalPlacesNotEqualTo = null; public ArrayList CurrencyDecimalPlacesBetween = null; public ArrayList CurrencyDecimalPlacesIn = null; public BigDecimal CurrencyRate = null; public BigDecimal CurrencyRateGreaterThanOrEqualTo = null; public BigDecimal CurrencyRateGreaterThan = null; public BigDecimal CurrencyRateLessThan = null; public BigDecimal CurrencyRateLessThanOrEqualTo = null; public BigDecimal CurrencyRateNotEqualTo = null; public ArrayList CurrencyRateBetween = null; public ArrayList CurrencyRateIn = null; public BigDecimal FXAmount = null; public BigDecimal FXAmountGreaterThanOrEqualTo = null; public BigDecimal FXAmountGreaterThan = null; public BigDecimal FXAmountLessThan = null; public BigDecimal FXAmountLessThanOrEqualTo = null; public BigDecimal FXAmountNotEqualTo = null; public ArrayList FXAmountBetween = null; public ArrayList FXAmountIn = null; public BigDecimal HomeAmount = null; public BigDecimal HomeAmountGreaterThanOrEqualTo = null; public BigDecimal HomeAmountGreaterThan = null; public BigDecimal HomeAmountLessThan = null; public BigDecimal HomeAmountLessThanOrEqualTo = null; public BigDecimal HomeAmountNotEqualTo = null; public ArrayList HomeAmountBetween = null; public ArrayList HomeAmountIn = null; public String Reference = null; public String ReferenceStartsWith = null; public String ReferenceEndsWith = null; public String ReferenceContains = null; public String ReferenceLike = null; public ArrayList ReferenceBetween = null; public ArrayList ReferenceIn = null; public Date InitiatedDate = null; public Date InitiatedDateGreaterThanOrEqualTo = null; public Date InitiatedDateGreaterThan = null; public Date InitiatedDateLessThan = null; public Date InitiatedDateLessThanOrEqualTo = null; public Date InitiatedDateNotEqualTo = null; public ArrayList InitiatedDateBetween = null; public ArrayList InitiatedDateIn = null; public Date StartDate = null; public Date StartDateGreaterThanOrEqualTo = null; public Date StartDateGreaterThan = null; public Date StartDateLessThan = null; public Date StartDateLessThanOrEqualTo = null; public Date StartDateNotEqualTo = null; public ArrayList StartDateBetween = null; public ArrayList StartDateIn = null; public Date EndDate = null; public Date EndDateGreaterThanOrEqualTo = null; public Date EndDateGreaterThan = null; public Date EndDateLessThan = null; public Date EndDateLessThanOrEqualTo = null; public Date EndDateNotEqualTo = null; public ArrayList EndDateBetween = null; public ArrayList EndDateIn = null; public Short Status = null; public Short StatusGreaterThanOrEqualTo = null; public Short StatusGreaterThan = null; public Short StatusLessThan = null; public Short StatusLessThanOrEqualTo = null; public Short StatusNotEqualTo = null; public ArrayList StatusBetween = null; public ArrayList StatusIn = null; public Short AutoCloseContract = null; public Short AutoCloseContractGreaterThanOrEqualTo = null; public Short AutoCloseContractGreaterThan = null; public Short AutoCloseContractLessThan = null; public Short AutoCloseContractLessThanOrEqualTo = null; public Short AutoCloseContractNotEqualTo = null; public ArrayList AutoCloseContractBetween = null; public ArrayList AutoCloseContractIn = null; public String HR_Staff_RecID_CreatedBy = null; public String HR_Staff_RecID_CreatedByStartsWith = null; public String HR_Staff_RecID_CreatedByEndsWith = null; public String HR_Staff_RecID_CreatedByContains = null; public String HR_Staff_RecID_CreatedByLike = null; public ArrayList HR_Staff_RecID_CreatedByBetween = null; public ArrayList HR_Staff_RecID_CreatedByIn = null; public String HR_Staff_RecID_LastSavedBy = null; public String HR_Staff_RecID_LastSavedByStartsWith = null; public String HR_Staff_RecID_LastSavedByEndsWith = null; public String HR_Staff_RecID_LastSavedByContains = null; public String HR_Staff_RecID_LastSavedByLike = null; public ArrayList HR_Staff_RecID_LastSavedByBetween = null; public ArrayList HR_Staff_RecID_LastSavedByIn = null; public ArrayList RowHash = null; public String getRecID() { return RecID; } public CR_ForwardCoverQuery setRecID(String value) { this.RecID = value; return this; } public String getRecIDStartsWith() { return RecIDStartsWith; } public CR_ForwardCoverQuery setRecIDStartsWith(String value) { this.RecIDStartsWith = value; return this; } public String getRecIDEndsWith() { return RecIDEndsWith; } public CR_ForwardCoverQuery setRecIDEndsWith(String value) { this.RecIDEndsWith = value; return this; } public String getRecIDContains() { return RecIDContains; } public CR_ForwardCoverQuery setRecIDContains(String value) { this.RecIDContains = value; return this; } public String getRecIDLike() { return RecIDLike; } public CR_ForwardCoverQuery setRecIDLike(String value) { this.RecIDLike = value; return this; } public ArrayList getRecIDBetween() { return RecIDBetween; } public CR_ForwardCoverQuery setRecIDBetween(ArrayList value) { this.RecIDBetween = value; return this; } public ArrayList getRecIDIn() { return RecIDIn; } public CR_ForwardCoverQuery setRecIDIn(ArrayList value) { this.RecIDIn = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public CR_ForwardCoverQuery setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getLastSavedDateTimeGreaterThanOrEqualTo() { return LastSavedDateTimeGreaterThanOrEqualTo; } public CR_ForwardCoverQuery setLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.LastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeGreaterThan() { return LastSavedDateTimeGreaterThan; } public CR_ForwardCoverQuery setLastSavedDateTimeGreaterThan(Date value) { this.LastSavedDateTimeGreaterThan = value; return this; } public Date getLastSavedDateTimeLessThan() { return LastSavedDateTimeLessThan; } public CR_ForwardCoverQuery setLastSavedDateTimeLessThan(Date value) { this.LastSavedDateTimeLessThan = value; return this; } public Date getLastSavedDateTimeLessThanOrEqualTo() { return LastSavedDateTimeLessThanOrEqualTo; } public CR_ForwardCoverQuery setLastSavedDateTimeLessThanOrEqualTo(Date value) { this.LastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeNotEqualTo() { return LastSavedDateTimeNotEqualTo; } public CR_ForwardCoverQuery setLastSavedDateTimeNotEqualTo(Date value) { this.LastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getLastSavedDateTimeBetween() { return LastSavedDateTimeBetween; } public CR_ForwardCoverQuery setLastSavedDateTimeBetween(ArrayList value) { this.LastSavedDateTimeBetween = value; return this; } public ArrayList getLastSavedDateTimeIn() { return LastSavedDateTimeIn; } public CR_ForwardCoverQuery setLastSavedDateTimeIn(ArrayList value) { this.LastSavedDateTimeIn = value; return this; } public String getContractNo() { return ContractNo; } public CR_ForwardCoverQuery setContractNo(String value) { this.ContractNo = value; return this; } public String getContractNoStartsWith() { return ContractNoStartsWith; } public CR_ForwardCoverQuery setContractNoStartsWith(String value) { this.ContractNoStartsWith = value; return this; } public String getContractNoEndsWith() { return ContractNoEndsWith; } public CR_ForwardCoverQuery setContractNoEndsWith(String value) { this.ContractNoEndsWith = value; return this; } public String getContractNoContains() { return ContractNoContains; } public CR_ForwardCoverQuery setContractNoContains(String value) { this.ContractNoContains = value; return this; } public String getContractNoLike() { return ContractNoLike; } public CR_ForwardCoverQuery setContractNoLike(String value) { this.ContractNoLike = value; return this; } public ArrayList getContractNoBetween() { return ContractNoBetween; } public CR_ForwardCoverQuery setContractNoBetween(ArrayList value) { this.ContractNoBetween = value; return this; } public ArrayList getContractNoIn() { return ContractNoIn; } public CR_ForwardCoverQuery setContractNoIn(ArrayList value) { this.ContractNoIn = value; return this; } public String getDescription() { return Description; } public CR_ForwardCoverQuery setDescription(String value) { this.Description = value; return this; } public String getDescriptionStartsWith() { return DescriptionStartsWith; } public CR_ForwardCoverQuery setDescriptionStartsWith(String value) { this.DescriptionStartsWith = value; return this; } public String getDescriptionEndsWith() { return DescriptionEndsWith; } public CR_ForwardCoverQuery setDescriptionEndsWith(String value) { this.DescriptionEndsWith = value; return this; } public String getDescriptionContains() { return DescriptionContains; } public CR_ForwardCoverQuery setDescriptionContains(String value) { this.DescriptionContains = value; return this; } public String getDescriptionLike() { return DescriptionLike; } public CR_ForwardCoverQuery setDescriptionLike(String value) { this.DescriptionLike = value; return this; } public ArrayList getDescriptionBetween() { return DescriptionBetween; } public CR_ForwardCoverQuery setDescriptionBetween(ArrayList value) { this.DescriptionBetween = value; return this; } public ArrayList getDescriptionIn() { return DescriptionIn; } public CR_ForwardCoverQuery setDescriptionIn(ArrayList value) { this.DescriptionIn = value; return this; } public String getFxMainRecID() { return FX_Main_RecID; } public CR_ForwardCoverQuery setFxMainRecID(String value) { this.FX_Main_RecID = value; return this; } public String getFxMainRecIDStartsWith() { return FX_Main_RecIDStartsWith; } public CR_ForwardCoverQuery setFxMainRecIDStartsWith(String value) { this.FX_Main_RecIDStartsWith = value; return this; } public String getFxMainRecIDEndsWith() { return FX_Main_RecIDEndsWith; } public CR_ForwardCoverQuery setFxMainRecIDEndsWith(String value) { this.FX_Main_RecIDEndsWith = value; return this; } public String getFxMainRecIDContains() { return FX_Main_RecIDContains; } public CR_ForwardCoverQuery setFxMainRecIDContains(String value) { this.FX_Main_RecIDContains = value; return this; } public String getFxMainRecIDLike() { return FX_Main_RecIDLike; } public CR_ForwardCoverQuery setFxMainRecIDLike(String value) { this.FX_Main_RecIDLike = value; return this; } public ArrayList getFxMainRecIDBetween() { return FX_Main_RecIDBetween; } public CR_ForwardCoverQuery setFxMainRecIDBetween(ArrayList value) { this.FX_Main_RecIDBetween = value; return this; } public ArrayList getFxMainRecIDIn() { return FX_Main_RecIDIn; } public CR_ForwardCoverQuery setFxMainRecIDIn(ArrayList value) { this.FX_Main_RecIDIn = value; return this; } public Short getCurrencyDecimalPlaces() { return CurrencyDecimalPlaces; } public CR_ForwardCoverQuery setCurrencyDecimalPlaces(Short value) { this.CurrencyDecimalPlaces = value; return this; } public Short getCurrencyDecimalPlacesGreaterThanOrEqualTo() { return CurrencyDecimalPlacesGreaterThanOrEqualTo; } public CR_ForwardCoverQuery setCurrencyDecimalPlacesGreaterThanOrEqualTo(Short value) { this.CurrencyDecimalPlacesGreaterThanOrEqualTo = value; return this; } public Short getCurrencyDecimalPlacesGreaterThan() { return CurrencyDecimalPlacesGreaterThan; } public CR_ForwardCoverQuery setCurrencyDecimalPlacesGreaterThan(Short value) { this.CurrencyDecimalPlacesGreaterThan = value; return this; } public Short getCurrencyDecimalPlacesLessThan() { return CurrencyDecimalPlacesLessThan; } public CR_ForwardCoverQuery setCurrencyDecimalPlacesLessThan(Short value) { this.CurrencyDecimalPlacesLessThan = value; return this; } public Short getCurrencyDecimalPlacesLessThanOrEqualTo() { return CurrencyDecimalPlacesLessThanOrEqualTo; } public CR_ForwardCoverQuery setCurrencyDecimalPlacesLessThanOrEqualTo(Short value) { this.CurrencyDecimalPlacesLessThanOrEqualTo = value; return this; } public Short getCurrencyDecimalPlacesNotEqualTo() { return CurrencyDecimalPlacesNotEqualTo; } public CR_ForwardCoverQuery setCurrencyDecimalPlacesNotEqualTo(Short value) { this.CurrencyDecimalPlacesNotEqualTo = value; return this; } public ArrayList getCurrencyDecimalPlacesBetween() { return CurrencyDecimalPlacesBetween; } public CR_ForwardCoverQuery setCurrencyDecimalPlacesBetween(ArrayList value) { this.CurrencyDecimalPlacesBetween = value; return this; } public ArrayList getCurrencyDecimalPlacesIn() { return CurrencyDecimalPlacesIn; } public CR_ForwardCoverQuery setCurrencyDecimalPlacesIn(ArrayList value) { this.CurrencyDecimalPlacesIn = value; return this; } public BigDecimal getCurrencyRate() { return CurrencyRate; } public CR_ForwardCoverQuery setCurrencyRate(BigDecimal value) { this.CurrencyRate = value; return this; } public BigDecimal getCurrencyRateGreaterThanOrEqualTo() { return CurrencyRateGreaterThanOrEqualTo; } public CR_ForwardCoverQuery setCurrencyRateGreaterThanOrEqualTo(BigDecimal value) { this.CurrencyRateGreaterThanOrEqualTo = value; return this; } public BigDecimal getCurrencyRateGreaterThan() { return CurrencyRateGreaterThan; } public CR_ForwardCoverQuery setCurrencyRateGreaterThan(BigDecimal value) { this.CurrencyRateGreaterThan = value; return this; } public BigDecimal getCurrencyRateLessThan() { return CurrencyRateLessThan; } public CR_ForwardCoverQuery setCurrencyRateLessThan(BigDecimal value) { this.CurrencyRateLessThan = value; return this; } public BigDecimal getCurrencyRateLessThanOrEqualTo() { return CurrencyRateLessThanOrEqualTo; } public CR_ForwardCoverQuery setCurrencyRateLessThanOrEqualTo(BigDecimal value) { this.CurrencyRateLessThanOrEqualTo = value; return this; } public BigDecimal getCurrencyRateNotEqualTo() { return CurrencyRateNotEqualTo; } public CR_ForwardCoverQuery setCurrencyRateNotEqualTo(BigDecimal value) { this.CurrencyRateNotEqualTo = value; return this; } public ArrayList getCurrencyRateBetween() { return CurrencyRateBetween; } public CR_ForwardCoverQuery setCurrencyRateBetween(ArrayList value) { this.CurrencyRateBetween = value; return this; } public ArrayList getCurrencyRateIn() { return CurrencyRateIn; } public CR_ForwardCoverQuery setCurrencyRateIn(ArrayList value) { this.CurrencyRateIn = value; return this; } public BigDecimal getFxAmount() { return FXAmount; } public CR_ForwardCoverQuery setFxAmount(BigDecimal value) { this.FXAmount = value; return this; } public BigDecimal getFxAmountGreaterThanOrEqualTo() { return FXAmountGreaterThanOrEqualTo; } public CR_ForwardCoverQuery setFxAmountGreaterThanOrEqualTo(BigDecimal value) { this.FXAmountGreaterThanOrEqualTo = value; return this; } public BigDecimal getFxAmountGreaterThan() { return FXAmountGreaterThan; } public CR_ForwardCoverQuery setFxAmountGreaterThan(BigDecimal value) { this.FXAmountGreaterThan = value; return this; } public BigDecimal getFxAmountLessThan() { return FXAmountLessThan; } public CR_ForwardCoverQuery setFxAmountLessThan(BigDecimal value) { this.FXAmountLessThan = value; return this; } public BigDecimal getFxAmountLessThanOrEqualTo() { return FXAmountLessThanOrEqualTo; } public CR_ForwardCoverQuery setFxAmountLessThanOrEqualTo(BigDecimal value) { this.FXAmountLessThanOrEqualTo = value; return this; } public BigDecimal getFxAmountNotEqualTo() { return FXAmountNotEqualTo; } public CR_ForwardCoverQuery setFxAmountNotEqualTo(BigDecimal value) { this.FXAmountNotEqualTo = value; return this; } public ArrayList getFxAmountBetween() { return FXAmountBetween; } public CR_ForwardCoverQuery setFxAmountBetween(ArrayList value) { this.FXAmountBetween = value; return this; } public ArrayList getFxAmountIn() { return FXAmountIn; } public CR_ForwardCoverQuery setFxAmountIn(ArrayList value) { this.FXAmountIn = value; return this; } public BigDecimal getHomeAmount() { return HomeAmount; } public CR_ForwardCoverQuery setHomeAmount(BigDecimal value) { this.HomeAmount = value; return this; } public BigDecimal getHomeAmountGreaterThanOrEqualTo() { return HomeAmountGreaterThanOrEqualTo; } public CR_ForwardCoverQuery setHomeAmountGreaterThanOrEqualTo(BigDecimal value) { this.HomeAmountGreaterThanOrEqualTo = value; return this; } public BigDecimal getHomeAmountGreaterThan() { return HomeAmountGreaterThan; } public CR_ForwardCoverQuery setHomeAmountGreaterThan(BigDecimal value) { this.HomeAmountGreaterThan = value; return this; } public BigDecimal getHomeAmountLessThan() { return HomeAmountLessThan; } public CR_ForwardCoverQuery setHomeAmountLessThan(BigDecimal value) { this.HomeAmountLessThan = value; return this; } public BigDecimal getHomeAmountLessThanOrEqualTo() { return HomeAmountLessThanOrEqualTo; } public CR_ForwardCoverQuery setHomeAmountLessThanOrEqualTo(BigDecimal value) { this.HomeAmountLessThanOrEqualTo = value; return this; } public BigDecimal getHomeAmountNotEqualTo() { return HomeAmountNotEqualTo; } public CR_ForwardCoverQuery setHomeAmountNotEqualTo(BigDecimal value) { this.HomeAmountNotEqualTo = value; return this; } public ArrayList getHomeAmountBetween() { return HomeAmountBetween; } public CR_ForwardCoverQuery setHomeAmountBetween(ArrayList value) { this.HomeAmountBetween = value; return this; } public ArrayList getHomeAmountIn() { return HomeAmountIn; } public CR_ForwardCoverQuery setHomeAmountIn(ArrayList value) { this.HomeAmountIn = value; return this; } public String getReference() { return Reference; } public CR_ForwardCoverQuery setReference(String value) { this.Reference = value; return this; } public String getReferenceStartsWith() { return ReferenceStartsWith; } public CR_ForwardCoverQuery setReferenceStartsWith(String value) { this.ReferenceStartsWith = value; return this; } public String getReferenceEndsWith() { return ReferenceEndsWith; } public CR_ForwardCoverQuery setReferenceEndsWith(String value) { this.ReferenceEndsWith = value; return this; } public String getReferenceContains() { return ReferenceContains; } public CR_ForwardCoverQuery setReferenceContains(String value) { this.ReferenceContains = value; return this; } public String getReferenceLike() { return ReferenceLike; } public CR_ForwardCoverQuery setReferenceLike(String value) { this.ReferenceLike = value; return this; } public ArrayList getReferenceBetween() { return ReferenceBetween; } public CR_ForwardCoverQuery setReferenceBetween(ArrayList value) { this.ReferenceBetween = value; return this; } public ArrayList getReferenceIn() { return ReferenceIn; } public CR_ForwardCoverQuery setReferenceIn(ArrayList value) { this.ReferenceIn = value; return this; } public Date getInitiatedDate() { return InitiatedDate; } public CR_ForwardCoverQuery setInitiatedDate(Date value) { this.InitiatedDate = value; return this; } public Date getInitiatedDateGreaterThanOrEqualTo() { return InitiatedDateGreaterThanOrEqualTo; } public CR_ForwardCoverQuery setInitiatedDateGreaterThanOrEqualTo(Date value) { this.InitiatedDateGreaterThanOrEqualTo = value; return this; } public Date getInitiatedDateGreaterThan() { return InitiatedDateGreaterThan; } public CR_ForwardCoverQuery setInitiatedDateGreaterThan(Date value) { this.InitiatedDateGreaterThan = value; return this; } public Date getInitiatedDateLessThan() { return InitiatedDateLessThan; } public CR_ForwardCoverQuery setInitiatedDateLessThan(Date value) { this.InitiatedDateLessThan = value; return this; } public Date getInitiatedDateLessThanOrEqualTo() { return InitiatedDateLessThanOrEqualTo; } public CR_ForwardCoverQuery setInitiatedDateLessThanOrEqualTo(Date value) { this.InitiatedDateLessThanOrEqualTo = value; return this; } public Date getInitiatedDateNotEqualTo() { return InitiatedDateNotEqualTo; } public CR_ForwardCoverQuery setInitiatedDateNotEqualTo(Date value) { this.InitiatedDateNotEqualTo = value; return this; } public ArrayList getInitiatedDateBetween() { return InitiatedDateBetween; } public CR_ForwardCoverQuery setInitiatedDateBetween(ArrayList value) { this.InitiatedDateBetween = value; return this; } public ArrayList getInitiatedDateIn() { return InitiatedDateIn; } public CR_ForwardCoverQuery setInitiatedDateIn(ArrayList value) { this.InitiatedDateIn = value; return this; } public Date getStartDate() { return StartDate; } public CR_ForwardCoverQuery setStartDate(Date value) { this.StartDate = value; return this; } public Date getStartDateGreaterThanOrEqualTo() { return StartDateGreaterThanOrEqualTo; } public CR_ForwardCoverQuery setStartDateGreaterThanOrEqualTo(Date value) { this.StartDateGreaterThanOrEqualTo = value; return this; } public Date getStartDateGreaterThan() { return StartDateGreaterThan; } public CR_ForwardCoverQuery setStartDateGreaterThan(Date value) { this.StartDateGreaterThan = value; return this; } public Date getStartDateLessThan() { return StartDateLessThan; } public CR_ForwardCoverQuery setStartDateLessThan(Date value) { this.StartDateLessThan = value; return this; } public Date getStartDateLessThanOrEqualTo() { return StartDateLessThanOrEqualTo; } public CR_ForwardCoverQuery setStartDateLessThanOrEqualTo(Date value) { this.StartDateLessThanOrEqualTo = value; return this; } public Date getStartDateNotEqualTo() { return StartDateNotEqualTo; } public CR_ForwardCoverQuery setStartDateNotEqualTo(Date value) { this.StartDateNotEqualTo = value; return this; } public ArrayList getStartDateBetween() { return StartDateBetween; } public CR_ForwardCoverQuery setStartDateBetween(ArrayList value) { this.StartDateBetween = value; return this; } public ArrayList getStartDateIn() { return StartDateIn; } public CR_ForwardCoverQuery setStartDateIn(ArrayList value) { this.StartDateIn = value; return this; } public Date getEndDate() { return EndDate; } public CR_ForwardCoverQuery setEndDate(Date value) { this.EndDate = value; return this; } public Date getEndDateGreaterThanOrEqualTo() { return EndDateGreaterThanOrEqualTo; } public CR_ForwardCoverQuery setEndDateGreaterThanOrEqualTo(Date value) { this.EndDateGreaterThanOrEqualTo = value; return this; } public Date getEndDateGreaterThan() { return EndDateGreaterThan; } public CR_ForwardCoverQuery setEndDateGreaterThan(Date value) { this.EndDateGreaterThan = value; return this; } public Date getEndDateLessThan() { return EndDateLessThan; } public CR_ForwardCoverQuery setEndDateLessThan(Date value) { this.EndDateLessThan = value; return this; } public Date getEndDateLessThanOrEqualTo() { return EndDateLessThanOrEqualTo; } public CR_ForwardCoverQuery setEndDateLessThanOrEqualTo(Date value) { this.EndDateLessThanOrEqualTo = value; return this; } public Date getEndDateNotEqualTo() { return EndDateNotEqualTo; } public CR_ForwardCoverQuery setEndDateNotEqualTo(Date value) { this.EndDateNotEqualTo = value; return this; } public ArrayList getEndDateBetween() { return EndDateBetween; } public CR_ForwardCoverQuery setEndDateBetween(ArrayList value) { this.EndDateBetween = value; return this; } public ArrayList getEndDateIn() { return EndDateIn; } public CR_ForwardCoverQuery setEndDateIn(ArrayList value) { this.EndDateIn = value; return this; } public Short getStatus() { return Status; } public CR_ForwardCoverQuery setStatus(Short value) { this.Status = value; return this; } public Short getStatusGreaterThanOrEqualTo() { return StatusGreaterThanOrEqualTo; } public CR_ForwardCoverQuery setStatusGreaterThanOrEqualTo(Short value) { this.StatusGreaterThanOrEqualTo = value; return this; } public Short getStatusGreaterThan() { return StatusGreaterThan; } public CR_ForwardCoverQuery setStatusGreaterThan(Short value) { this.StatusGreaterThan = value; return this; } public Short getStatusLessThan() { return StatusLessThan; } public CR_ForwardCoverQuery setStatusLessThan(Short value) { this.StatusLessThan = value; return this; } public Short getStatusLessThanOrEqualTo() { return StatusLessThanOrEqualTo; } public CR_ForwardCoverQuery setStatusLessThanOrEqualTo(Short value) { this.StatusLessThanOrEqualTo = value; return this; } public Short getStatusNotEqualTo() { return StatusNotEqualTo; } public CR_ForwardCoverQuery setStatusNotEqualTo(Short value) { this.StatusNotEqualTo = value; return this; } public ArrayList getStatusBetween() { return StatusBetween; } public CR_ForwardCoverQuery setStatusBetween(ArrayList value) { this.StatusBetween = value; return this; } public ArrayList getStatusIn() { return StatusIn; } public CR_ForwardCoverQuery setStatusIn(ArrayList value) { this.StatusIn = value; return this; } public Short getAutoCloseContract() { return AutoCloseContract; } public CR_ForwardCoverQuery setAutoCloseContract(Short value) { this.AutoCloseContract = value; return this; } public Short getAutoCloseContractGreaterThanOrEqualTo() { return AutoCloseContractGreaterThanOrEqualTo; } public CR_ForwardCoverQuery setAutoCloseContractGreaterThanOrEqualTo(Short value) { this.AutoCloseContractGreaterThanOrEqualTo = value; return this; } public Short getAutoCloseContractGreaterThan() { return AutoCloseContractGreaterThan; } public CR_ForwardCoverQuery setAutoCloseContractGreaterThan(Short value) { this.AutoCloseContractGreaterThan = value; return this; } public Short getAutoCloseContractLessThan() { return AutoCloseContractLessThan; } public CR_ForwardCoverQuery setAutoCloseContractLessThan(Short value) { this.AutoCloseContractLessThan = value; return this; } public Short getAutoCloseContractLessThanOrEqualTo() { return AutoCloseContractLessThanOrEqualTo; } public CR_ForwardCoverQuery setAutoCloseContractLessThanOrEqualTo(Short value) { this.AutoCloseContractLessThanOrEqualTo = value; return this; } public Short getAutoCloseContractNotEqualTo() { return AutoCloseContractNotEqualTo; } public CR_ForwardCoverQuery setAutoCloseContractNotEqualTo(Short value) { this.AutoCloseContractNotEqualTo = value; return this; } public ArrayList getAutoCloseContractBetween() { return AutoCloseContractBetween; } public CR_ForwardCoverQuery setAutoCloseContractBetween(ArrayList value) { this.AutoCloseContractBetween = value; return this; } public ArrayList getAutoCloseContractIn() { return AutoCloseContractIn; } public CR_ForwardCoverQuery setAutoCloseContractIn(ArrayList value) { this.AutoCloseContractIn = value; return this; } public String getHrStaffRecIDCreatedBy() { return HR_Staff_RecID_CreatedBy; } public CR_ForwardCoverQuery setHrStaffRecIDCreatedBy(String value) { this.HR_Staff_RecID_CreatedBy = value; return this; } public String getHrStaffRecIDCreatedByStartsWith() { return HR_Staff_RecID_CreatedByStartsWith; } public CR_ForwardCoverQuery setHrStaffRecIDCreatedByStartsWith(String value) { this.HR_Staff_RecID_CreatedByStartsWith = value; return this; } public String getHrStaffRecIDCreatedByEndsWith() { return HR_Staff_RecID_CreatedByEndsWith; } public CR_ForwardCoverQuery setHrStaffRecIDCreatedByEndsWith(String value) { this.HR_Staff_RecID_CreatedByEndsWith = value; return this; } public String getHrStaffRecIDCreatedByContains() { return HR_Staff_RecID_CreatedByContains; } public CR_ForwardCoverQuery setHrStaffRecIDCreatedByContains(String value) { this.HR_Staff_RecID_CreatedByContains = value; return this; } public String getHrStaffRecIDCreatedByLike() { return HR_Staff_RecID_CreatedByLike; } public CR_ForwardCoverQuery setHrStaffRecIDCreatedByLike(String value) { this.HR_Staff_RecID_CreatedByLike = value; return this; } public ArrayList getHrStaffRecIDCreatedByBetween() { return HR_Staff_RecID_CreatedByBetween; } public CR_ForwardCoverQuery setHrStaffRecIDCreatedByBetween(ArrayList value) { this.HR_Staff_RecID_CreatedByBetween = value; return this; } public ArrayList getHrStaffRecIDCreatedByIn() { return HR_Staff_RecID_CreatedByIn; } public CR_ForwardCoverQuery setHrStaffRecIDCreatedByIn(ArrayList value) { this.HR_Staff_RecID_CreatedByIn = value; return this; } public String getHrStaffRecIDLastSavedBy() { return HR_Staff_RecID_LastSavedBy; } public CR_ForwardCoverQuery setHrStaffRecIDLastSavedBy(String value) { this.HR_Staff_RecID_LastSavedBy = value; return this; } public String getHrStaffRecIDLastSavedByStartsWith() { return HR_Staff_RecID_LastSavedByStartsWith; } public CR_ForwardCoverQuery setHrStaffRecIDLastSavedByStartsWith(String value) { this.HR_Staff_RecID_LastSavedByStartsWith = value; return this; } public String getHrStaffRecIDLastSavedByEndsWith() { return HR_Staff_RecID_LastSavedByEndsWith; } public CR_ForwardCoverQuery setHrStaffRecIDLastSavedByEndsWith(String value) { this.HR_Staff_RecID_LastSavedByEndsWith = value; return this; } public String getHrStaffRecIDLastSavedByContains() { return HR_Staff_RecID_LastSavedByContains; } public CR_ForwardCoverQuery setHrStaffRecIDLastSavedByContains(String value) { this.HR_Staff_RecID_LastSavedByContains = value; return this; } public String getHrStaffRecIDLastSavedByLike() { return HR_Staff_RecID_LastSavedByLike; } public CR_ForwardCoverQuery setHrStaffRecIDLastSavedByLike(String value) { this.HR_Staff_RecID_LastSavedByLike = value; return this; } public ArrayList getHrStaffRecIDLastSavedByBetween() { return HR_Staff_RecID_LastSavedByBetween; } public CR_ForwardCoverQuery setHrStaffRecIDLastSavedByBetween(ArrayList value) { this.HR_Staff_RecID_LastSavedByBetween = value; return this; } public ArrayList getHrStaffRecIDLastSavedByIn() { return HR_Staff_RecID_LastSavedByIn; } public CR_ForwardCoverQuery setHrStaffRecIDLastSavedByIn(ArrayList value) { this.HR_Staff_RecID_LastSavedByIn = value; return this; } public ArrayList getRowHash() { return RowHash; } public CR_ForwardCoverQuery setRowHash(ArrayList value) { this.RowHash = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class CR_ForwardCoverNotesQuery extends QueryDb implements IReturn> { public String RecID = null; public String RecIDStartsWith = null; public String RecIDEndsWith = null; public String RecIDContains = null; public String RecIDLike = null; public ArrayList RecIDBetween = null; public ArrayList RecIDIn = null; public String CR_ForwardCover_RecID = null; public String CR_ForwardCover_RecIDStartsWith = null; public String CR_ForwardCover_RecIDEndsWith = null; public String CR_ForwardCover_RecIDContains = null; public String CR_ForwardCover_RecIDLike = null; public ArrayList CR_ForwardCover_RecIDBetween = null; public ArrayList CR_ForwardCover_RecIDIn = null; public String NoteTypeID = null; public String NoteTypeIDStartsWith = null; public String NoteTypeIDEndsWith = null; public String NoteTypeIDContains = null; public String NoteTypeIDLike = null; public ArrayList NoteTypeIDBetween = null; public ArrayList NoteTypeIDIn = null; public Date LastSavedDateTime = null; public Date LastSavedDateTimeGreaterThanOrEqualTo = null; public Date LastSavedDateTimeGreaterThan = null; public Date LastSavedDateTimeLessThan = null; public Date LastSavedDateTimeLessThanOrEqualTo = null; public Date LastSavedDateTimeNotEqualTo = null; public ArrayList LastSavedDateTimeBetween = null; public ArrayList LastSavedDateTimeIn = null; public String LastSavedByStaffID = null; public String LastSavedByStaffIDStartsWith = null; public String LastSavedByStaffIDEndsWith = null; public String LastSavedByStaffIDContains = null; public String LastSavedByStaffIDLike = null; public ArrayList LastSavedByStaffIDBetween = null; public ArrayList LastSavedByStaffIDIn = null; public String NoteText = null; public String NoteTextStartsWith = null; public String NoteTextEndsWith = null; public String NoteTextContains = null; public String NoteTextLike = null; public ArrayList NoteTextBetween = null; public ArrayList NoteTextIn = null; public Integer ItemNo = null; public Integer ItemNoGreaterThanOrEqualTo = null; public Integer ItemNoGreaterThan = null; public Integer ItemNoLessThan = null; public Integer ItemNoLessThanOrEqualTo = null; public Integer ItemNoNotEqualTo = null; public ArrayList ItemNoBetween = null; public ArrayList ItemNoIn = null; public String getRecID() { return RecID; } public CR_ForwardCoverNotesQuery setRecID(String value) { this.RecID = value; return this; } public String getRecIDStartsWith() { return RecIDStartsWith; } public CR_ForwardCoverNotesQuery setRecIDStartsWith(String value) { this.RecIDStartsWith = value; return this; } public String getRecIDEndsWith() { return RecIDEndsWith; } public CR_ForwardCoverNotesQuery setRecIDEndsWith(String value) { this.RecIDEndsWith = value; return this; } public String getRecIDContains() { return RecIDContains; } public CR_ForwardCoverNotesQuery setRecIDContains(String value) { this.RecIDContains = value; return this; } public String getRecIDLike() { return RecIDLike; } public CR_ForwardCoverNotesQuery setRecIDLike(String value) { this.RecIDLike = value; return this; } public ArrayList getRecIDBetween() { return RecIDBetween; } public CR_ForwardCoverNotesQuery setRecIDBetween(ArrayList value) { this.RecIDBetween = value; return this; } public ArrayList getRecIDIn() { return RecIDIn; } public CR_ForwardCoverNotesQuery setRecIDIn(ArrayList value) { this.RecIDIn = value; return this; } public String getCrForwardCoverRecID() { return CR_ForwardCover_RecID; } public CR_ForwardCoverNotesQuery setCrForwardCoverRecID(String value) { this.CR_ForwardCover_RecID = value; return this; } public String getCrForwardCoverRecIDStartsWith() { return CR_ForwardCover_RecIDStartsWith; } public CR_ForwardCoverNotesQuery setCrForwardCoverRecIDStartsWith(String value) { this.CR_ForwardCover_RecIDStartsWith = value; return this; } public String getCrForwardCoverRecIDEndsWith() { return CR_ForwardCover_RecIDEndsWith; } public CR_ForwardCoverNotesQuery setCrForwardCoverRecIDEndsWith(String value) { this.CR_ForwardCover_RecIDEndsWith = value; return this; } public String getCrForwardCoverRecIDContains() { return CR_ForwardCover_RecIDContains; } public CR_ForwardCoverNotesQuery setCrForwardCoverRecIDContains(String value) { this.CR_ForwardCover_RecIDContains = value; return this; } public String getCrForwardCoverRecIDLike() { return CR_ForwardCover_RecIDLike; } public CR_ForwardCoverNotesQuery setCrForwardCoverRecIDLike(String value) { this.CR_ForwardCover_RecIDLike = value; return this; } public ArrayList getCrForwardCoverRecIDBetween() { return CR_ForwardCover_RecIDBetween; } public CR_ForwardCoverNotesQuery setCrForwardCoverRecIDBetween(ArrayList value) { this.CR_ForwardCover_RecIDBetween = value; return this; } public ArrayList getCrForwardCoverRecIDIn() { return CR_ForwardCover_RecIDIn; } public CR_ForwardCoverNotesQuery setCrForwardCoverRecIDIn(ArrayList value) { this.CR_ForwardCover_RecIDIn = value; return this; } public String getNoteTypeID() { return NoteTypeID; } public CR_ForwardCoverNotesQuery setNoteTypeID(String value) { this.NoteTypeID = value; return this; } public String getNoteTypeIDStartsWith() { return NoteTypeIDStartsWith; } public CR_ForwardCoverNotesQuery setNoteTypeIDStartsWith(String value) { this.NoteTypeIDStartsWith = value; return this; } public String getNoteTypeIDEndsWith() { return NoteTypeIDEndsWith; } public CR_ForwardCoverNotesQuery setNoteTypeIDEndsWith(String value) { this.NoteTypeIDEndsWith = value; return this; } public String getNoteTypeIDContains() { return NoteTypeIDContains; } public CR_ForwardCoverNotesQuery setNoteTypeIDContains(String value) { this.NoteTypeIDContains = value; return this; } public String getNoteTypeIDLike() { return NoteTypeIDLike; } public CR_ForwardCoverNotesQuery setNoteTypeIDLike(String value) { this.NoteTypeIDLike = value; return this; } public ArrayList getNoteTypeIDBetween() { return NoteTypeIDBetween; } public CR_ForwardCoverNotesQuery setNoteTypeIDBetween(ArrayList value) { this.NoteTypeIDBetween = value; return this; } public ArrayList getNoteTypeIDIn() { return NoteTypeIDIn; } public CR_ForwardCoverNotesQuery setNoteTypeIDIn(ArrayList value) { this.NoteTypeIDIn = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public CR_ForwardCoverNotesQuery setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getLastSavedDateTimeGreaterThanOrEqualTo() { return LastSavedDateTimeGreaterThanOrEqualTo; } public CR_ForwardCoverNotesQuery setLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.LastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeGreaterThan() { return LastSavedDateTimeGreaterThan; } public CR_ForwardCoverNotesQuery setLastSavedDateTimeGreaterThan(Date value) { this.LastSavedDateTimeGreaterThan = value; return this; } public Date getLastSavedDateTimeLessThan() { return LastSavedDateTimeLessThan; } public CR_ForwardCoverNotesQuery setLastSavedDateTimeLessThan(Date value) { this.LastSavedDateTimeLessThan = value; return this; } public Date getLastSavedDateTimeLessThanOrEqualTo() { return LastSavedDateTimeLessThanOrEqualTo; } public CR_ForwardCoverNotesQuery setLastSavedDateTimeLessThanOrEqualTo(Date value) { this.LastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeNotEqualTo() { return LastSavedDateTimeNotEqualTo; } public CR_ForwardCoverNotesQuery setLastSavedDateTimeNotEqualTo(Date value) { this.LastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getLastSavedDateTimeBetween() { return LastSavedDateTimeBetween; } public CR_ForwardCoverNotesQuery setLastSavedDateTimeBetween(ArrayList value) { this.LastSavedDateTimeBetween = value; return this; } public ArrayList getLastSavedDateTimeIn() { return LastSavedDateTimeIn; } public CR_ForwardCoverNotesQuery setLastSavedDateTimeIn(ArrayList value) { this.LastSavedDateTimeIn = value; return this; } public String getLastSavedByStaffID() { return LastSavedByStaffID; } public CR_ForwardCoverNotesQuery setLastSavedByStaffID(String value) { this.LastSavedByStaffID = value; return this; } public String getLastSavedByStaffIDStartsWith() { return LastSavedByStaffIDStartsWith; } public CR_ForwardCoverNotesQuery setLastSavedByStaffIDStartsWith(String value) { this.LastSavedByStaffIDStartsWith = value; return this; } public String getLastSavedByStaffIDEndsWith() { return LastSavedByStaffIDEndsWith; } public CR_ForwardCoverNotesQuery setLastSavedByStaffIDEndsWith(String value) { this.LastSavedByStaffIDEndsWith = value; return this; } public String getLastSavedByStaffIDContains() { return LastSavedByStaffIDContains; } public CR_ForwardCoverNotesQuery setLastSavedByStaffIDContains(String value) { this.LastSavedByStaffIDContains = value; return this; } public String getLastSavedByStaffIDLike() { return LastSavedByStaffIDLike; } public CR_ForwardCoverNotesQuery setLastSavedByStaffIDLike(String value) { this.LastSavedByStaffIDLike = value; return this; } public ArrayList getLastSavedByStaffIDBetween() { return LastSavedByStaffIDBetween; } public CR_ForwardCoverNotesQuery setLastSavedByStaffIDBetween(ArrayList value) { this.LastSavedByStaffIDBetween = value; return this; } public ArrayList getLastSavedByStaffIDIn() { return LastSavedByStaffIDIn; } public CR_ForwardCoverNotesQuery setLastSavedByStaffIDIn(ArrayList value) { this.LastSavedByStaffIDIn = value; return this; } public String getNoteText() { return NoteText; } public CR_ForwardCoverNotesQuery setNoteText(String value) { this.NoteText = value; return this; } public String getNoteTextStartsWith() { return NoteTextStartsWith; } public CR_ForwardCoverNotesQuery setNoteTextStartsWith(String value) { this.NoteTextStartsWith = value; return this; } public String getNoteTextEndsWith() { return NoteTextEndsWith; } public CR_ForwardCoverNotesQuery setNoteTextEndsWith(String value) { this.NoteTextEndsWith = value; return this; } public String getNoteTextContains() { return NoteTextContains; } public CR_ForwardCoverNotesQuery setNoteTextContains(String value) { this.NoteTextContains = value; return this; } public String getNoteTextLike() { return NoteTextLike; } public CR_ForwardCoverNotesQuery setNoteTextLike(String value) { this.NoteTextLike = value; return this; } public ArrayList getNoteTextBetween() { return NoteTextBetween; } public CR_ForwardCoverNotesQuery setNoteTextBetween(ArrayList value) { this.NoteTextBetween = value; return this; } public ArrayList getNoteTextIn() { return NoteTextIn; } public CR_ForwardCoverNotesQuery setNoteTextIn(ArrayList value) { this.NoteTextIn = value; return this; } public Integer getItemNo() { return ItemNo; } public CR_ForwardCoverNotesQuery setItemNo(Integer value) { this.ItemNo = value; return this; } public Integer getItemNoGreaterThanOrEqualTo() { return ItemNoGreaterThanOrEqualTo; } public CR_ForwardCoverNotesQuery setItemNoGreaterThanOrEqualTo(Integer value) { this.ItemNoGreaterThanOrEqualTo = value; return this; } public Integer getItemNoGreaterThan() { return ItemNoGreaterThan; } public CR_ForwardCoverNotesQuery setItemNoGreaterThan(Integer value) { this.ItemNoGreaterThan = value; return this; } public Integer getItemNoLessThan() { return ItemNoLessThan; } public CR_ForwardCoverNotesQuery setItemNoLessThan(Integer value) { this.ItemNoLessThan = value; return this; } public Integer getItemNoLessThanOrEqualTo() { return ItemNoLessThanOrEqualTo; } public CR_ForwardCoverNotesQuery setItemNoLessThanOrEqualTo(Integer value) { this.ItemNoLessThanOrEqualTo = value; return this; } public Integer getItemNoNotEqualTo() { return ItemNoNotEqualTo; } public CR_ForwardCoverNotesQuery setItemNoNotEqualTo(Integer value) { this.ItemNoNotEqualTo = value; return this; } public ArrayList getItemNoBetween() { return ItemNoBetween; } public CR_ForwardCoverNotesQuery setItemNoBetween(ArrayList value) { this.ItemNoBetween = value; return this; } public ArrayList getItemNoIn() { return ItemNoIn; } public CR_ForwardCoverNotesQuery setItemNoIn(ArrayList value) { this.ItemNoIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class CR_ForwardCoverTransactionsQuery extends QueryDb implements IReturn> { public String RecID = null; public String RecIDStartsWith = null; public String RecIDEndsWith = null; public String RecIDContains = null; public String RecIDLike = null; public ArrayList RecIDBetween = null; public ArrayList RecIDIn = null; public String CR_ForwardCover_RecID = null; public String CR_ForwardCover_RecIDStartsWith = null; public String CR_ForwardCover_RecIDEndsWith = null; public String CR_ForwardCover_RecIDContains = null; public String CR_ForwardCover_RecIDLike = null; public ArrayList CR_ForwardCover_RecIDBetween = null; public ArrayList CR_ForwardCover_RecIDIn = null; public Date LastSavedDateTime = null; public Date LastSavedDateTimeGreaterThanOrEqualTo = null; public Date LastSavedDateTimeGreaterThan = null; public Date LastSavedDateTimeLessThan = null; public Date LastSavedDateTimeLessThanOrEqualTo = null; public Date LastSavedDateTimeNotEqualTo = null; public ArrayList LastSavedDateTimeBetween = null; public ArrayList LastSavedDateTimeIn = null; public Date TransactionDate = null; public Date TransactionDateGreaterThanOrEqualTo = null; public Date TransactionDateGreaterThan = null; public Date TransactionDateLessThan = null; public Date TransactionDateLessThanOrEqualTo = null; public Date TransactionDateNotEqualTo = null; public ArrayList TransactionDateBetween = null; public ArrayList TransactionDateIn = null; public BigDecimal FXAmount = null; public BigDecimal FXAmountGreaterThanOrEqualTo = null; public BigDecimal FXAmountGreaterThan = null; public BigDecimal FXAmountLessThan = null; public BigDecimal FXAmountLessThanOrEqualTo = null; public BigDecimal FXAmountNotEqualTo = null; public ArrayList FXAmountBetween = null; public ArrayList FXAmountIn = null; public BigDecimal HomeAmount = null; public BigDecimal HomeAmountGreaterThanOrEqualTo = null; public BigDecimal HomeAmountGreaterThan = null; public BigDecimal HomeAmountLessThan = null; public BigDecimal HomeAmountLessThanOrEqualTo = null; public BigDecimal HomeAmountNotEqualTo = null; public ArrayList HomeAmountBetween = null; public ArrayList HomeAmountIn = null; public Short SourceType = null; public Short SourceTypeGreaterThanOrEqualTo = null; public Short SourceTypeGreaterThan = null; public Short SourceTypeLessThan = null; public Short SourceTypeLessThanOrEqualTo = null; public Short SourceTypeNotEqualTo = null; public ArrayList SourceTypeBetween = null; public ArrayList SourceTypeIn = null; public String SourceID = null; public String SourceIDStartsWith = null; public String SourceIDEndsWith = null; public String SourceIDContains = null; public String SourceIDLike = null; public ArrayList SourceIDBetween = null; public ArrayList SourceIDIn = null; public String SourceReference = null; public String SourceReferenceStartsWith = null; public String SourceReferenceEndsWith = null; public String SourceReferenceContains = null; public String SourceReferenceLike = null; public ArrayList SourceReferenceBetween = null; public ArrayList SourceReferenceIn = null; public String CRTrans_RecID = null; public String CRTrans_RecIDStartsWith = null; public String CRTrans_RecIDEndsWith = null; public String CRTrans_RecIDContains = null; public String CRTrans_RecIDLike = null; public ArrayList CRTrans_RecIDBetween = null; public ArrayList CRTrans_RecIDIn = null; public Short TransactionType = null; public Short TransactionTypeGreaterThanOrEqualTo = null; public Short TransactionTypeGreaterThan = null; public Short TransactionTypeLessThan = null; public Short TransactionTypeLessThanOrEqualTo = null; public Short TransactionTypeNotEqualTo = null; public ArrayList TransactionTypeBetween = null; public ArrayList TransactionTypeIn = null; public String getRecID() { return RecID; } public CR_ForwardCoverTransactionsQuery setRecID(String value) { this.RecID = value; return this; } public String getRecIDStartsWith() { return RecIDStartsWith; } public CR_ForwardCoverTransactionsQuery setRecIDStartsWith(String value) { this.RecIDStartsWith = value; return this; } public String getRecIDEndsWith() { return RecIDEndsWith; } public CR_ForwardCoverTransactionsQuery setRecIDEndsWith(String value) { this.RecIDEndsWith = value; return this; } public String getRecIDContains() { return RecIDContains; } public CR_ForwardCoverTransactionsQuery setRecIDContains(String value) { this.RecIDContains = value; return this; } public String getRecIDLike() { return RecIDLike; } public CR_ForwardCoverTransactionsQuery setRecIDLike(String value) { this.RecIDLike = value; return this; } public ArrayList getRecIDBetween() { return RecIDBetween; } public CR_ForwardCoverTransactionsQuery setRecIDBetween(ArrayList value) { this.RecIDBetween = value; return this; } public ArrayList getRecIDIn() { return RecIDIn; } public CR_ForwardCoverTransactionsQuery setRecIDIn(ArrayList value) { this.RecIDIn = value; return this; } public String getCrForwardCoverRecID() { return CR_ForwardCover_RecID; } public CR_ForwardCoverTransactionsQuery setCrForwardCoverRecID(String value) { this.CR_ForwardCover_RecID = value; return this; } public String getCrForwardCoverRecIDStartsWith() { return CR_ForwardCover_RecIDStartsWith; } public CR_ForwardCoverTransactionsQuery setCrForwardCoverRecIDStartsWith(String value) { this.CR_ForwardCover_RecIDStartsWith = value; return this; } public String getCrForwardCoverRecIDEndsWith() { return CR_ForwardCover_RecIDEndsWith; } public CR_ForwardCoverTransactionsQuery setCrForwardCoverRecIDEndsWith(String value) { this.CR_ForwardCover_RecIDEndsWith = value; return this; } public String getCrForwardCoverRecIDContains() { return CR_ForwardCover_RecIDContains; } public CR_ForwardCoverTransactionsQuery setCrForwardCoverRecIDContains(String value) { this.CR_ForwardCover_RecIDContains = value; return this; } public String getCrForwardCoverRecIDLike() { return CR_ForwardCover_RecIDLike; } public CR_ForwardCoverTransactionsQuery setCrForwardCoverRecIDLike(String value) { this.CR_ForwardCover_RecIDLike = value; return this; } public ArrayList getCrForwardCoverRecIDBetween() { return CR_ForwardCover_RecIDBetween; } public CR_ForwardCoverTransactionsQuery setCrForwardCoverRecIDBetween(ArrayList value) { this.CR_ForwardCover_RecIDBetween = value; return this; } public ArrayList getCrForwardCoverRecIDIn() { return CR_ForwardCover_RecIDIn; } public CR_ForwardCoverTransactionsQuery setCrForwardCoverRecIDIn(ArrayList value) { this.CR_ForwardCover_RecIDIn = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public CR_ForwardCoverTransactionsQuery setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getLastSavedDateTimeGreaterThanOrEqualTo() { return LastSavedDateTimeGreaterThanOrEqualTo; } public CR_ForwardCoverTransactionsQuery setLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.LastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeGreaterThan() { return LastSavedDateTimeGreaterThan; } public CR_ForwardCoverTransactionsQuery setLastSavedDateTimeGreaterThan(Date value) { this.LastSavedDateTimeGreaterThan = value; return this; } public Date getLastSavedDateTimeLessThan() { return LastSavedDateTimeLessThan; } public CR_ForwardCoverTransactionsQuery setLastSavedDateTimeLessThan(Date value) { this.LastSavedDateTimeLessThan = value; return this; } public Date getLastSavedDateTimeLessThanOrEqualTo() { return LastSavedDateTimeLessThanOrEqualTo; } public CR_ForwardCoverTransactionsQuery setLastSavedDateTimeLessThanOrEqualTo(Date value) { this.LastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeNotEqualTo() { return LastSavedDateTimeNotEqualTo; } public CR_ForwardCoverTransactionsQuery setLastSavedDateTimeNotEqualTo(Date value) { this.LastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getLastSavedDateTimeBetween() { return LastSavedDateTimeBetween; } public CR_ForwardCoverTransactionsQuery setLastSavedDateTimeBetween(ArrayList value) { this.LastSavedDateTimeBetween = value; return this; } public ArrayList getLastSavedDateTimeIn() { return LastSavedDateTimeIn; } public CR_ForwardCoverTransactionsQuery setLastSavedDateTimeIn(ArrayList value) { this.LastSavedDateTimeIn = value; return this; } public Date getTransactionDate() { return TransactionDate; } public CR_ForwardCoverTransactionsQuery setTransactionDate(Date value) { this.TransactionDate = value; return this; } public Date getTransactionDateGreaterThanOrEqualTo() { return TransactionDateGreaterThanOrEqualTo; } public CR_ForwardCoverTransactionsQuery setTransactionDateGreaterThanOrEqualTo(Date value) { this.TransactionDateGreaterThanOrEqualTo = value; return this; } public Date getTransactionDateGreaterThan() { return TransactionDateGreaterThan; } public CR_ForwardCoverTransactionsQuery setTransactionDateGreaterThan(Date value) { this.TransactionDateGreaterThan = value; return this; } public Date getTransactionDateLessThan() { return TransactionDateLessThan; } public CR_ForwardCoverTransactionsQuery setTransactionDateLessThan(Date value) { this.TransactionDateLessThan = value; return this; } public Date getTransactionDateLessThanOrEqualTo() { return TransactionDateLessThanOrEqualTo; } public CR_ForwardCoverTransactionsQuery setTransactionDateLessThanOrEqualTo(Date value) { this.TransactionDateLessThanOrEqualTo = value; return this; } public Date getTransactionDateNotEqualTo() { return TransactionDateNotEqualTo; } public CR_ForwardCoverTransactionsQuery setTransactionDateNotEqualTo(Date value) { this.TransactionDateNotEqualTo = value; return this; } public ArrayList getTransactionDateBetween() { return TransactionDateBetween; } public CR_ForwardCoverTransactionsQuery setTransactionDateBetween(ArrayList value) { this.TransactionDateBetween = value; return this; } public ArrayList getTransactionDateIn() { return TransactionDateIn; } public CR_ForwardCoverTransactionsQuery setTransactionDateIn(ArrayList value) { this.TransactionDateIn = value; return this; } public BigDecimal getFxAmount() { return FXAmount; } public CR_ForwardCoverTransactionsQuery setFxAmount(BigDecimal value) { this.FXAmount = value; return this; } public BigDecimal getFxAmountGreaterThanOrEqualTo() { return FXAmountGreaterThanOrEqualTo; } public CR_ForwardCoverTransactionsQuery setFxAmountGreaterThanOrEqualTo(BigDecimal value) { this.FXAmountGreaterThanOrEqualTo = value; return this; } public BigDecimal getFxAmountGreaterThan() { return FXAmountGreaterThan; } public CR_ForwardCoverTransactionsQuery setFxAmountGreaterThan(BigDecimal value) { this.FXAmountGreaterThan = value; return this; } public BigDecimal getFxAmountLessThan() { return FXAmountLessThan; } public CR_ForwardCoverTransactionsQuery setFxAmountLessThan(BigDecimal value) { this.FXAmountLessThan = value; return this; } public BigDecimal getFxAmountLessThanOrEqualTo() { return FXAmountLessThanOrEqualTo; } public CR_ForwardCoverTransactionsQuery setFxAmountLessThanOrEqualTo(BigDecimal value) { this.FXAmountLessThanOrEqualTo = value; return this; } public BigDecimal getFxAmountNotEqualTo() { return FXAmountNotEqualTo; } public CR_ForwardCoverTransactionsQuery setFxAmountNotEqualTo(BigDecimal value) { this.FXAmountNotEqualTo = value; return this; } public ArrayList getFxAmountBetween() { return FXAmountBetween; } public CR_ForwardCoverTransactionsQuery setFxAmountBetween(ArrayList value) { this.FXAmountBetween = value; return this; } public ArrayList getFxAmountIn() { return FXAmountIn; } public CR_ForwardCoverTransactionsQuery setFxAmountIn(ArrayList value) { this.FXAmountIn = value; return this; } public BigDecimal getHomeAmount() { return HomeAmount; } public CR_ForwardCoverTransactionsQuery setHomeAmount(BigDecimal value) { this.HomeAmount = value; return this; } public BigDecimal getHomeAmountGreaterThanOrEqualTo() { return HomeAmountGreaterThanOrEqualTo; } public CR_ForwardCoverTransactionsQuery setHomeAmountGreaterThanOrEqualTo(BigDecimal value) { this.HomeAmountGreaterThanOrEqualTo = value; return this; } public BigDecimal getHomeAmountGreaterThan() { return HomeAmountGreaterThan; } public CR_ForwardCoverTransactionsQuery setHomeAmountGreaterThan(BigDecimal value) { this.HomeAmountGreaterThan = value; return this; } public BigDecimal getHomeAmountLessThan() { return HomeAmountLessThan; } public CR_ForwardCoverTransactionsQuery setHomeAmountLessThan(BigDecimal value) { this.HomeAmountLessThan = value; return this; } public BigDecimal getHomeAmountLessThanOrEqualTo() { return HomeAmountLessThanOrEqualTo; } public CR_ForwardCoverTransactionsQuery setHomeAmountLessThanOrEqualTo(BigDecimal value) { this.HomeAmountLessThanOrEqualTo = value; return this; } public BigDecimal getHomeAmountNotEqualTo() { return HomeAmountNotEqualTo; } public CR_ForwardCoverTransactionsQuery setHomeAmountNotEqualTo(BigDecimal value) { this.HomeAmountNotEqualTo = value; return this; } public ArrayList getHomeAmountBetween() { return HomeAmountBetween; } public CR_ForwardCoverTransactionsQuery setHomeAmountBetween(ArrayList value) { this.HomeAmountBetween = value; return this; } public ArrayList getHomeAmountIn() { return HomeAmountIn; } public CR_ForwardCoverTransactionsQuery setHomeAmountIn(ArrayList value) { this.HomeAmountIn = value; return this; } public Short getSourceType() { return SourceType; } public CR_ForwardCoverTransactionsQuery setSourceType(Short value) { this.SourceType = value; return this; } public Short getSourceTypeGreaterThanOrEqualTo() { return SourceTypeGreaterThanOrEqualTo; } public CR_ForwardCoverTransactionsQuery setSourceTypeGreaterThanOrEqualTo(Short value) { this.SourceTypeGreaterThanOrEqualTo = value; return this; } public Short getSourceTypeGreaterThan() { return SourceTypeGreaterThan; } public CR_ForwardCoverTransactionsQuery setSourceTypeGreaterThan(Short value) { this.SourceTypeGreaterThan = value; return this; } public Short getSourceTypeLessThan() { return SourceTypeLessThan; } public CR_ForwardCoverTransactionsQuery setSourceTypeLessThan(Short value) { this.SourceTypeLessThan = value; return this; } public Short getSourceTypeLessThanOrEqualTo() { return SourceTypeLessThanOrEqualTo; } public CR_ForwardCoverTransactionsQuery setSourceTypeLessThanOrEqualTo(Short value) { this.SourceTypeLessThanOrEqualTo = value; return this; } public Short getSourceTypeNotEqualTo() { return SourceTypeNotEqualTo; } public CR_ForwardCoverTransactionsQuery setSourceTypeNotEqualTo(Short value) { this.SourceTypeNotEqualTo = value; return this; } public ArrayList getSourceTypeBetween() { return SourceTypeBetween; } public CR_ForwardCoverTransactionsQuery setSourceTypeBetween(ArrayList value) { this.SourceTypeBetween = value; return this; } public ArrayList getSourceTypeIn() { return SourceTypeIn; } public CR_ForwardCoverTransactionsQuery setSourceTypeIn(ArrayList value) { this.SourceTypeIn = value; return this; } public String getSourceID() { return SourceID; } public CR_ForwardCoverTransactionsQuery setSourceID(String value) { this.SourceID = value; return this; } public String getSourceIDStartsWith() { return SourceIDStartsWith; } public CR_ForwardCoverTransactionsQuery setSourceIDStartsWith(String value) { this.SourceIDStartsWith = value; return this; } public String getSourceIDEndsWith() { return SourceIDEndsWith; } public CR_ForwardCoverTransactionsQuery setSourceIDEndsWith(String value) { this.SourceIDEndsWith = value; return this; } public String getSourceIDContains() { return SourceIDContains; } public CR_ForwardCoverTransactionsQuery setSourceIDContains(String value) { this.SourceIDContains = value; return this; } public String getSourceIDLike() { return SourceIDLike; } public CR_ForwardCoverTransactionsQuery setSourceIDLike(String value) { this.SourceIDLike = value; return this; } public ArrayList getSourceIDBetween() { return SourceIDBetween; } public CR_ForwardCoverTransactionsQuery setSourceIDBetween(ArrayList value) { this.SourceIDBetween = value; return this; } public ArrayList getSourceIDIn() { return SourceIDIn; } public CR_ForwardCoverTransactionsQuery setSourceIDIn(ArrayList value) { this.SourceIDIn = value; return this; } public String getSourceReference() { return SourceReference; } public CR_ForwardCoverTransactionsQuery setSourceReference(String value) { this.SourceReference = value; return this; } public String getSourceReferenceStartsWith() { return SourceReferenceStartsWith; } public CR_ForwardCoverTransactionsQuery setSourceReferenceStartsWith(String value) { this.SourceReferenceStartsWith = value; return this; } public String getSourceReferenceEndsWith() { return SourceReferenceEndsWith; } public CR_ForwardCoverTransactionsQuery setSourceReferenceEndsWith(String value) { this.SourceReferenceEndsWith = value; return this; } public String getSourceReferenceContains() { return SourceReferenceContains; } public CR_ForwardCoverTransactionsQuery setSourceReferenceContains(String value) { this.SourceReferenceContains = value; return this; } public String getSourceReferenceLike() { return SourceReferenceLike; } public CR_ForwardCoverTransactionsQuery setSourceReferenceLike(String value) { this.SourceReferenceLike = value; return this; } public ArrayList getSourceReferenceBetween() { return SourceReferenceBetween; } public CR_ForwardCoverTransactionsQuery setSourceReferenceBetween(ArrayList value) { this.SourceReferenceBetween = value; return this; } public ArrayList getSourceReferenceIn() { return SourceReferenceIn; } public CR_ForwardCoverTransactionsQuery setSourceReferenceIn(ArrayList value) { this.SourceReferenceIn = value; return this; } public String getCrTransRecID() { return CRTrans_RecID; } public CR_ForwardCoverTransactionsQuery setCrTransRecID(String value) { this.CRTrans_RecID = value; return this; } public String getCrTransRecIDStartsWith() { return CRTrans_RecIDStartsWith; } public CR_ForwardCoverTransactionsQuery setCrTransRecIDStartsWith(String value) { this.CRTrans_RecIDStartsWith = value; return this; } public String getCrTransRecIDEndsWith() { return CRTrans_RecIDEndsWith; } public CR_ForwardCoverTransactionsQuery setCrTransRecIDEndsWith(String value) { this.CRTrans_RecIDEndsWith = value; return this; } public String getCrTransRecIDContains() { return CRTrans_RecIDContains; } public CR_ForwardCoverTransactionsQuery setCrTransRecIDContains(String value) { this.CRTrans_RecIDContains = value; return this; } public String getCrTransRecIDLike() { return CRTrans_RecIDLike; } public CR_ForwardCoverTransactionsQuery setCrTransRecIDLike(String value) { this.CRTrans_RecIDLike = value; return this; } public ArrayList getCrTransRecIDBetween() { return CRTrans_RecIDBetween; } public CR_ForwardCoverTransactionsQuery setCrTransRecIDBetween(ArrayList value) { this.CRTrans_RecIDBetween = value; return this; } public ArrayList getCrTransRecIDIn() { return CRTrans_RecIDIn; } public CR_ForwardCoverTransactionsQuery setCrTransRecIDIn(ArrayList value) { this.CRTrans_RecIDIn = value; return this; } public Short getTransactionType() { return TransactionType; } public CR_ForwardCoverTransactionsQuery setTransactionType(Short value) { this.TransactionType = value; return this; } public Short getTransactionTypeGreaterThanOrEqualTo() { return TransactionTypeGreaterThanOrEqualTo; } public CR_ForwardCoverTransactionsQuery setTransactionTypeGreaterThanOrEqualTo(Short value) { this.TransactionTypeGreaterThanOrEqualTo = value; return this; } public Short getTransactionTypeGreaterThan() { return TransactionTypeGreaterThan; } public CR_ForwardCoverTransactionsQuery setTransactionTypeGreaterThan(Short value) { this.TransactionTypeGreaterThan = value; return this; } public Short getTransactionTypeLessThan() { return TransactionTypeLessThan; } public CR_ForwardCoverTransactionsQuery setTransactionTypeLessThan(Short value) { this.TransactionTypeLessThan = value; return this; } public Short getTransactionTypeLessThanOrEqualTo() { return TransactionTypeLessThanOrEqualTo; } public CR_ForwardCoverTransactionsQuery setTransactionTypeLessThanOrEqualTo(Short value) { this.TransactionTypeLessThanOrEqualTo = value; return this; } public Short getTransactionTypeNotEqualTo() { return TransactionTypeNotEqualTo; } public CR_ForwardCoverTransactionsQuery setTransactionTypeNotEqualTo(Short value) { this.TransactionTypeNotEqualTo = value; return this; } public ArrayList getTransactionTypeBetween() { return TransactionTypeBetween; } public CR_ForwardCoverTransactionsQuery setTransactionTypeBetween(ArrayList value) { this.TransactionTypeBetween = value; return this; } public ArrayList getTransactionTypeIn() { return TransactionTypeIn; } public CR_ForwardCoverTransactionsQuery setTransactionTypeIn(ArrayList value) { this.TransactionTypeIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class CR_GLAuditQuery extends QueryDb implements IReturn> { public String GLLedgerID = null; public String GLLedgerIDStartsWith = null; public String GLLedgerIDEndsWith = null; public String GLLedgerIDContains = null; public String GLLedgerIDLike = null; public ArrayList GLLedgerIDBetween = null; public ArrayList GLLedgerIDIn = null; public BigDecimal LedgerValue = null; public BigDecimal LedgerValueGreaterThanOrEqualTo = null; public BigDecimal LedgerValueGreaterThan = null; public BigDecimal LedgerValueLessThan = null; public BigDecimal LedgerValueLessThanOrEqualTo = null; public BigDecimal LedgerValueNotEqualTo = null; public ArrayList LedgerValueBetween = null; public ArrayList LedgerValueIn = null; public String ReportGroup = null; public String ReportGroupStartsWith = null; public String ReportGroupEndsWith = null; public String ReportGroupContains = null; public String ReportGroupLike = null; public ArrayList ReportGroupBetween = null; public ArrayList ReportGroupIn = null; public String getGlLedgerID() { return GLLedgerID; } public CR_GLAuditQuery setGlLedgerID(String value) { this.GLLedgerID = value; return this; } public String getGlLedgerIDStartsWith() { return GLLedgerIDStartsWith; } public CR_GLAuditQuery setGlLedgerIDStartsWith(String value) { this.GLLedgerIDStartsWith = value; return this; } public String getGlLedgerIDEndsWith() { return GLLedgerIDEndsWith; } public CR_GLAuditQuery setGlLedgerIDEndsWith(String value) { this.GLLedgerIDEndsWith = value; return this; } public String getGlLedgerIDContains() { return GLLedgerIDContains; } public CR_GLAuditQuery setGlLedgerIDContains(String value) { this.GLLedgerIDContains = value; return this; } public String getGlLedgerIDLike() { return GLLedgerIDLike; } public CR_GLAuditQuery setGlLedgerIDLike(String value) { this.GLLedgerIDLike = value; return this; } public ArrayList getGlLedgerIDBetween() { return GLLedgerIDBetween; } public CR_GLAuditQuery setGlLedgerIDBetween(ArrayList value) { this.GLLedgerIDBetween = value; return this; } public ArrayList getGlLedgerIDIn() { return GLLedgerIDIn; } public CR_GLAuditQuery setGlLedgerIDIn(ArrayList value) { this.GLLedgerIDIn = value; return this; } public BigDecimal getLedgerValue() { return LedgerValue; } public CR_GLAuditQuery setLedgerValue(BigDecimal value) { this.LedgerValue = value; return this; } public BigDecimal getLedgerValueGreaterThanOrEqualTo() { return LedgerValueGreaterThanOrEqualTo; } public CR_GLAuditQuery setLedgerValueGreaterThanOrEqualTo(BigDecimal value) { this.LedgerValueGreaterThanOrEqualTo = value; return this; } public BigDecimal getLedgerValueGreaterThan() { return LedgerValueGreaterThan; } public CR_GLAuditQuery setLedgerValueGreaterThan(BigDecimal value) { this.LedgerValueGreaterThan = value; return this; } public BigDecimal getLedgerValueLessThan() { return LedgerValueLessThan; } public CR_GLAuditQuery setLedgerValueLessThan(BigDecimal value) { this.LedgerValueLessThan = value; return this; } public BigDecimal getLedgerValueLessThanOrEqualTo() { return LedgerValueLessThanOrEqualTo; } public CR_GLAuditQuery setLedgerValueLessThanOrEqualTo(BigDecimal value) { this.LedgerValueLessThanOrEqualTo = value; return this; } public BigDecimal getLedgerValueNotEqualTo() { return LedgerValueNotEqualTo; } public CR_GLAuditQuery setLedgerValueNotEqualTo(BigDecimal value) { this.LedgerValueNotEqualTo = value; return this; } public ArrayList getLedgerValueBetween() { return LedgerValueBetween; } public CR_GLAuditQuery setLedgerValueBetween(ArrayList value) { this.LedgerValueBetween = value; return this; } public ArrayList getLedgerValueIn() { return LedgerValueIn; } public CR_GLAuditQuery setLedgerValueIn(ArrayList value) { this.LedgerValueIn = value; return this; } public String getReportGroup() { return ReportGroup; } public CR_GLAuditQuery setReportGroup(String value) { this.ReportGroup = value; return this; } public String getReportGroupStartsWith() { return ReportGroupStartsWith; } public CR_GLAuditQuery setReportGroupStartsWith(String value) { this.ReportGroupStartsWith = value; return this; } public String getReportGroupEndsWith() { return ReportGroupEndsWith; } public CR_GLAuditQuery setReportGroupEndsWith(String value) { this.ReportGroupEndsWith = value; return this; } public String getReportGroupContains() { return ReportGroupContains; } public CR_GLAuditQuery setReportGroupContains(String value) { this.ReportGroupContains = value; return this; } public String getReportGroupLike() { return ReportGroupLike; } public CR_GLAuditQuery setReportGroupLike(String value) { this.ReportGroupLike = value; return this; } public ArrayList getReportGroupBetween() { return ReportGroupBetween; } public CR_GLAuditQuery setReportGroupBetween(ArrayList value) { this.ReportGroupBetween = value; return this; } public ArrayList getReportGroupIn() { return ReportGroupIn; } public CR_GLAuditQuery setReportGroupIn(ArrayList value) { this.ReportGroupIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @Route(Path="/Queries/CR_Main", Verbs="GET") @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class CR_MainQuery extends QueryDb implements IReturn> { public String CreditorID = null; public String CreditorIDStartsWith = null; public String CreditorIDEndsWith = null; public String CreditorIDContains = null; public String CreditorIDLike = null; public ArrayList CreditorIDBetween = null; public ArrayList CreditorIDIn = null; public Date LastSavedDateTime = null; public Date LastSavedDateTimeGreaterThanOrEqualTo = null; public Date LastSavedDateTimeGreaterThan = null; public Date LastSavedDateTimeLessThan = null; public Date LastSavedDateTimeLessThanOrEqualTo = null; public Date LastSavedDateTimeNotEqualTo = null; public ArrayList LastSavedDateTimeBetween = null; public ArrayList LastSavedDateTimeIn = null; public String AccountNo = null; public String AccountNoStartsWith = null; public String AccountNoEndsWith = null; public String AccountNoContains = null; public String AccountNoLike = null; public ArrayList AccountNoBetween = null; public ArrayList AccountNoIn = null; public String Name = null; public String NameStartsWith = null; public String NameEndsWith = null; public String NameContains = null; public String NameLike = null; public ArrayList NameBetween = null; public ArrayList NameIn = null; public String Address1 = null; public String Address1StartsWith = null; public String Address1EndsWith = null; public String Address1Contains = null; public String Address1Like = null; public ArrayList Address1Between = null; public ArrayList Address1In = null; public String Address2 = null; public String Address2StartsWith = null; public String Address2EndsWith = null; public String Address2Contains = null; public String Address2Like = null; public ArrayList Address2Between = null; public ArrayList Address2In = null; public String Address3 = null; public String Address3StartsWith = null; public String Address3EndsWith = null; public String Address3Contains = null; public String Address3Like = null; public ArrayList Address3Between = null; public ArrayList Address3In = null; public String Address4 = null; public String Address4StartsWith = null; public String Address4EndsWith = null; public String Address4Contains = null; public String Address4Like = null; public ArrayList Address4Between = null; public ArrayList Address4In = null; public String PostCode = null; public String PostCodeStartsWith = null; public String PostCodeEndsWith = null; public String PostCodeContains = null; public String PostCodeLike = null; public ArrayList PostCodeBetween = null; public ArrayList PostCodeIn = null; public String Phone = null; public String PhoneStartsWith = null; public String PhoneEndsWith = null; public String PhoneContains = null; public String PhoneLike = null; public ArrayList PhoneBetween = null; public ArrayList PhoneIn = null; public String Fax = null; public String FaxStartsWith = null; public String FaxEndsWith = null; public String FaxContains = null; public String FaxLike = null; public ArrayList FaxBetween = null; public ArrayList FaxIn = null; public String BankName = null; public String BankNameStartsWith = null; public String BankNameEndsWith = null; public String BankNameContains = null; public String BankNameLike = null; public ArrayList BankNameBetween = null; public ArrayList BankNameIn = null; public String BankAcc = null; public String BankAccStartsWith = null; public String BankAccEndsWith = null; public String BankAccContains = null; public String BankAccLike = null; public ArrayList BankAccBetween = null; public ArrayList BankAccIn = null; public String BSBN = null; public String BSBNStartsWith = null; public String BSBNEndsWith = null; public String BSBNContains = null; public String BSBNLike = null; public ArrayList BSBNBetween = null; public ArrayList BSBNIn = null; public String AccountName = null; public String AccountNameStartsWith = null; public String AccountNameEndsWith = null; public String AccountNameContains = null; public String AccountNameLike = null; public ArrayList AccountNameBetween = null; public ArrayList AccountNameIn = null; public Short DefaultPaymentType = null; public Short DefaultPaymentTypeGreaterThanOrEqualTo = null; public Short DefaultPaymentTypeGreaterThan = null; public Short DefaultPaymentTypeLessThan = null; public Short DefaultPaymentTypeLessThanOrEqualTo = null; public Short DefaultPaymentTypeNotEqualTo = null; public ArrayList DefaultPaymentTypeBetween = null; public ArrayList DefaultPaymentTypeIn = null; public BigDecimal CreditLimit = null; public BigDecimal CreditLimitGreaterThanOrEqualTo = null; public BigDecimal CreditLimitGreaterThan = null; public BigDecimal CreditLimitLessThan = null; public BigDecimal CreditLimitLessThanOrEqualTo = null; public BigDecimal CreditLimitNotEqualTo = null; public ArrayList CreditLimitBetween = null; public ArrayList CreditLimitIn = null; public Short EarlyPayDisOnRemitDays = null; public Short EarlyPayDisOnRemitDaysGreaterThanOrEqualTo = null; public Short EarlyPayDisOnRemitDaysGreaterThan = null; public Short EarlyPayDisOnRemitDaysLessThan = null; public Short EarlyPayDisOnRemitDaysLessThanOrEqualTo = null; public Short EarlyPayDisOnRemitDaysNotEqualTo = null; public ArrayList EarlyPayDisOnRemitDaysBetween = null; public ArrayList EarlyPayDisOnRemitDaysIn = null; public BigDecimal EarlyPayDisOnRemitAmt = null; public BigDecimal EarlyPayDisOnRemitAmtGreaterThanOrEqualTo = null; public BigDecimal EarlyPayDisOnRemitAmtGreaterThan = null; public BigDecimal EarlyPayDisOnRemitAmtLessThan = null; public BigDecimal EarlyPayDisOnRemitAmtLessThanOrEqualTo = null; public BigDecimal EarlyPayDisOnRemitAmtNotEqualTo = null; public ArrayList EarlyPayDisOnRemitAmtBetween = null; public ArrayList EarlyPayDisOnRemitAmtIn = null; public Date LastSaleDate = null; public Date LastSaleDateGreaterThanOrEqualTo = null; public Date LastSaleDateGreaterThan = null; public Date LastSaleDateLessThan = null; public Date LastSaleDateLessThanOrEqualTo = null; public Date LastSaleDateNotEqualTo = null; public ArrayList LastSaleDateBetween = null; public ArrayList LastSaleDateIn = null; public Date LastPaymentDate = null; public Date LastPaymentDateGreaterThanOrEqualTo = null; public Date LastPaymentDateGreaterThan = null; public Date LastPaymentDateLessThan = null; public Date LastPaymentDateLessThanOrEqualTo = null; public Date LastPaymentDateNotEqualTo = null; public ArrayList LastPaymentDateBetween = null; public ArrayList LastPaymentDateIn = null; public String ClassificationID = null; public String ClassificationIDStartsWith = null; public String ClassificationIDEndsWith = null; public String ClassificationIDContains = null; public String ClassificationIDLike = null; public ArrayList ClassificationIDBetween = null; public ArrayList ClassificationIDIn = null; public Boolean AccountOnHold = null; public String EmailAddress = null; public String EmailAddressStartsWith = null; public String EmailAddressEndsWith = null; public String EmailAddressContains = null; public String EmailAddressLike = null; public ArrayList EmailAddressBetween = null; public ArrayList EmailAddressIn = null; public BigDecimal CurrentBalance = null; public BigDecimal CurrentBalanceGreaterThanOrEqualTo = null; public BigDecimal CurrentBalanceGreaterThan = null; public BigDecimal CurrentBalanceLessThan = null; public BigDecimal CurrentBalanceLessThanOrEqualTo = null; public BigDecimal CurrentBalanceNotEqualTo = null; public ArrayList CurrentBalanceBetween = null; public ArrayList CurrentBalanceIn = null; public BigDecimal Period1 = null; public BigDecimal Period1GreaterThanOrEqualTo = null; public BigDecimal Period1GreaterThan = null; public BigDecimal Period1LessThan = null; public BigDecimal Period1LessThanOrEqualTo = null; public BigDecimal Period1NotEqualTo = null; public ArrayList Period1Between = null; public ArrayList Period1In = null; public BigDecimal Period2 = null; public BigDecimal Period2GreaterThanOrEqualTo = null; public BigDecimal Period2GreaterThan = null; public BigDecimal Period2LessThan = null; public BigDecimal Period2LessThanOrEqualTo = null; public BigDecimal Period2NotEqualTo = null; public ArrayList Period2Between = null; public ArrayList Period2In = null; public BigDecimal Period3 = null; public BigDecimal Period3GreaterThanOrEqualTo = null; public BigDecimal Period3GreaterThan = null; public BigDecimal Period3LessThan = null; public BigDecimal Period3LessThanOrEqualTo = null; public BigDecimal Period3NotEqualTo = null; public ArrayList Period3Between = null; public ArrayList Period3In = null; public BigDecimal Period4 = null; public BigDecimal Period4GreaterThanOrEqualTo = null; public BigDecimal Period4GreaterThan = null; public BigDecimal Period4LessThan = null; public BigDecimal Period4LessThanOrEqualTo = null; public BigDecimal Period4NotEqualTo = null; public ArrayList Period4Between = null; public ArrayList Period4In = null; public String AltAccountNo = null; public String AltAccountNoStartsWith = null; public String AltAccountNoEndsWith = null; public String AltAccountNoContains = null; public String AltAccountNoLike = null; public ArrayList AltAccountNoBetween = null; public ArrayList AltAccountNoIn = null; public Date CommenceDate = null; public Date CommenceDateGreaterThanOrEqualTo = null; public Date CommenceDateGreaterThan = null; public Date CommenceDateLessThan = null; public Date CommenceDateLessThanOrEqualTo = null; public Date CommenceDateNotEqualTo = null; public ArrayList CommenceDateBetween = null; public ArrayList CommenceDateIn = null; public Short TermsDays = null; public Short TermsDaysGreaterThanOrEqualTo = null; public Short TermsDaysGreaterThan = null; public Short TermsDaysLessThan = null; public Short TermsDaysLessThanOrEqualTo = null; public Short TermsDaysNotEqualTo = null; public ArrayList TermsDaysBetween = null; public ArrayList TermsDaysIn = null; public String ACN = null; public String ACNStartsWith = null; public String ACNEndsWith = null; public String ACNContains = null; public String ACNLike = null; public ArrayList ACNBetween = null; public ArrayList ACNIn = null; public String CurrencyID = null; public String CurrencyIDStartsWith = null; public String CurrencyIDEndsWith = null; public String CurrencyIDContains = null; public String CurrencyIDLike = null; public ArrayList CurrencyIDBetween = null; public ArrayList CurrencyIDIn = null; public Boolean UsesFX = null; public String ABN = null; public String ABNStartsWith = null; public String ABNEndsWith = null; public String ABNContains = null; public String ABNLike = null; public ArrayList ABNBetween = null; public ArrayList ABNIn = null; public Short TermsType = null; public Short TermsTypeGreaterThanOrEqualTo = null; public Short TermsTypeGreaterThan = null; public Short TermsTypeLessThan = null; public Short TermsTypeLessThanOrEqualTo = null; public Short TermsTypeNotEqualTo = null; public ArrayList TermsTypeBetween = null; public ArrayList TermsTypeIn = null; public String AustPostDPID = null; public String AustPostDPIDStartsWith = null; public String AustPostDPIDEndsWith = null; public String AustPostDPIDContains = null; public String AustPostDPIDLike = null; public ArrayList AustPostDPIDBetween = null; public ArrayList AustPostDPIDIn = null; public String AustPostBCSP = null; public String AustPostBCSPStartsWith = null; public String AustPostBCSPEndsWith = null; public String AustPostBCSPContains = null; public String AustPostBCSPLike = null; public ArrayList AustPostBCSPBetween = null; public ArrayList AustPostBCSPIn = null; public BigDecimal MinPOValue = null; public BigDecimal MinPOValueGreaterThanOrEqualTo = null; public BigDecimal MinPOValueGreaterThan = null; public BigDecimal MinPOValueLessThan = null; public BigDecimal MinPOValueLessThanOrEqualTo = null; public BigDecimal MinPOValueNotEqualTo = null; public ArrayList MinPOValueBetween = null; public ArrayList MinPOValueIn = null; public BigDecimal MaxPOValue = null; public BigDecimal MaxPOValueGreaterThanOrEqualTo = null; public BigDecimal MaxPOValueGreaterThan = null; public BigDecimal MaxPOValueLessThan = null; public BigDecimal MaxPOValueLessThanOrEqualTo = null; public BigDecimal MaxPOValueNotEqualTo = null; public ArrayList MaxPOValueBetween = null; public ArrayList MaxPOValueIn = null; public Short PeriodType = null; public Short PeriodTypeGreaterThanOrEqualTo = null; public Short PeriodTypeGreaterThan = null; public Short PeriodTypeLessThan = null; public Short PeriodTypeLessThanOrEqualTo = null; public Short PeriodTypeNotEqualTo = null; public ArrayList PeriodTypeBetween = null; public ArrayList PeriodTypeIn = null; public String TradingName = null; public String TradingNameStartsWith = null; public String TradingNameEndsWith = null; public String TradingNameContains = null; public String TradingNameLike = null; public ArrayList TradingNameBetween = null; public ArrayList TradingNameIn = null; public String CompanyName = null; public String CompanyNameStartsWith = null; public String CompanyNameEndsWith = null; public String CompanyNameContains = null; public String CompanyNameLike = null; public ArrayList CompanyNameBetween = null; public ArrayList CompanyNameIn = null; public String ProprietorName = null; public String ProprietorNameStartsWith = null; public String ProprietorNameEndsWith = null; public String ProprietorNameContains = null; public String ProprietorNameLike = null; public ArrayList ProprietorNameBetween = null; public ArrayList ProprietorNameIn = null; public BigDecimal FXCurrentBalance = null; public BigDecimal FXCurrentBalanceGreaterThanOrEqualTo = null; public BigDecimal FXCurrentBalanceGreaterThan = null; public BigDecimal FXCurrentBalanceLessThan = null; public BigDecimal FXCurrentBalanceLessThanOrEqualTo = null; public BigDecimal FXCurrentBalanceNotEqualTo = null; public ArrayList FXCurrentBalanceBetween = null; public ArrayList FXCurrentBalanceIn = null; public BigDecimal FXPeriod1 = null; public BigDecimal FXPeriod1GreaterThanOrEqualTo = null; public BigDecimal FXPeriod1GreaterThan = null; public BigDecimal FXPeriod1LessThan = null; public BigDecimal FXPeriod1LessThanOrEqualTo = null; public BigDecimal FXPeriod1NotEqualTo = null; public ArrayList FXPeriod1Between = null; public ArrayList FXPeriod1In = null; public BigDecimal FXPeriod2 = null; public BigDecimal FXPeriod2GreaterThanOrEqualTo = null; public BigDecimal FXPeriod2GreaterThan = null; public BigDecimal FXPeriod2LessThan = null; public BigDecimal FXPeriod2LessThanOrEqualTo = null; public BigDecimal FXPeriod2NotEqualTo = null; public ArrayList FXPeriod2Between = null; public ArrayList FXPeriod2In = null; public BigDecimal FXPeriod3 = null; public BigDecimal FXPeriod3GreaterThanOrEqualTo = null; public BigDecimal FXPeriod3GreaterThan = null; public BigDecimal FXPeriod3LessThan = null; public BigDecimal FXPeriod3LessThanOrEqualTo = null; public BigDecimal FXPeriod3NotEqualTo = null; public ArrayList FXPeriod3Between = null; public ArrayList FXPeriod3In = null; public BigDecimal FXPeriod4 = null; public BigDecimal FXPeriod4GreaterThanOrEqualTo = null; public BigDecimal FXPeriod4GreaterThan = null; public BigDecimal FXPeriod4LessThan = null; public BigDecimal FXPeriod4LessThanOrEqualTo = null; public BigDecimal FXPeriod4NotEqualTo = null; public ArrayList FXPeriod4Between = null; public ArrayList FXPeriod4In = null; public Short TradingStatus = null; public Short TradingStatusGreaterThanOrEqualTo = null; public Short TradingStatusGreaterThan = null; public Short TradingStatusLessThan = null; public Short TradingStatusLessThanOrEqualTo = null; public Short TradingStatusNotEqualTo = null; public ArrayList TradingStatusBetween = null; public ArrayList TradingStatusIn = null; public String LedgerIDCreditorControl = null; public String LedgerIDCreditorControlStartsWith = null; public String LedgerIDCreditorControlEndsWith = null; public String LedgerIDCreditorControlContains = null; public String LedgerIDCreditorControlLike = null; public ArrayList LedgerIDCreditorControlBetween = null; public ArrayList LedgerIDCreditorControlIn = null; public String LedgerIDCreditorPurchases = null; public String LedgerIDCreditorPurchasesStartsWith = null; public String LedgerIDCreditorPurchasesEndsWith = null; public String LedgerIDCreditorPurchasesContains = null; public String LedgerIDCreditorPurchasesLike = null; public ArrayList LedgerIDCreditorPurchasesBetween = null; public ArrayList LedgerIDCreditorPurchasesIn = null; public String LedgerIDCreditorDiscounts = null; public String LedgerIDCreditorDiscountsStartsWith = null; public String LedgerIDCreditorDiscountsEndsWith = null; public String LedgerIDCreditorDiscountsContains = null; public String LedgerIDCreditorDiscountsLike = null; public ArrayList LedgerIDCreditorDiscountsBetween = null; public ArrayList LedgerIDCreditorDiscountsIn = null; public String LedgerIDCreditorSourcedPayments = null; public String LedgerIDCreditorSourcedPaymentsStartsWith = null; public String LedgerIDCreditorSourcedPaymentsEndsWith = null; public String LedgerIDCreditorSourcedPaymentsContains = null; public String LedgerIDCreditorSourcedPaymentsLike = null; public ArrayList LedgerIDCreditorSourcedPaymentsBetween = null; public ArrayList LedgerIDCreditorSourcedPaymentsIn = null; public String LedgerIDCreditorSourcedDebitAdjustment = null; public String LedgerIDCreditorSourcedDebitAdjustmentStartsWith = null; public String LedgerIDCreditorSourcedDebitAdjustmentEndsWith = null; public String LedgerIDCreditorSourcedDebitAdjustmentContains = null; public String LedgerIDCreditorSourcedDebitAdjustmentLike = null; public ArrayList LedgerIDCreditorSourcedDebitAdjustmentBetween = null; public ArrayList LedgerIDCreditorSourcedDebitAdjustmentIn = null; public String LedgerIDCreditorSourcedPurchase = null; public String LedgerIDCreditorSourcedPurchaseStartsWith = null; public String LedgerIDCreditorSourcedPurchaseEndsWith = null; public String LedgerIDCreditorSourcedPurchaseContains = null; public String LedgerIDCreditorSourcedPurchaseLike = null; public ArrayList LedgerIDCreditorSourcedPurchaseBetween = null; public ArrayList LedgerIDCreditorSourcedPurchaseIn = null; public String LedgerIDCreditorSourcedCreditAdjustment = null; public String LedgerIDCreditorSourcedCreditAdjustmentStartsWith = null; public String LedgerIDCreditorSourcedCreditAdjustmentEndsWith = null; public String LedgerIDCreditorSourcedCreditAdjustmentContains = null; public String LedgerIDCreditorSourcedCreditAdjustmentLike = null; public ArrayList LedgerIDCreditorSourcedCreditAdjustmentBetween = null; public ArrayList LedgerIDCreditorSourcedCreditAdjustmentIn = null; public String LedgerIDCreditorFreight = null; public String LedgerIDCreditorFreightStartsWith = null; public String LedgerIDCreditorFreightEndsWith = null; public String LedgerIDCreditorFreightContains = null; public String LedgerIDCreditorFreightLike = null; public ArrayList LedgerIDCreditorFreightBetween = null; public ArrayList LedgerIDCreditorFreightIn = null; public String LedgerIDCreditorInsurance = null; public String LedgerIDCreditorInsuranceStartsWith = null; public String LedgerIDCreditorInsuranceEndsWith = null; public String LedgerIDCreditorInsuranceContains = null; public String LedgerIDCreditorInsuranceLike = null; public ArrayList LedgerIDCreditorInsuranceBetween = null; public ArrayList LedgerIDCreditorInsuranceIn = null; public String LedgerIDCreditorDuty = null; public String LedgerIDCreditorDutyStartsWith = null; public String LedgerIDCreditorDutyEndsWith = null; public String LedgerIDCreditorDutyContains = null; public String LedgerIDCreditorDutyLike = null; public ArrayList LedgerIDCreditorDutyBetween = null; public ArrayList LedgerIDCreditorDutyIn = null; public String LedgerIDCreditorRealisedGainLoss = null; public String LedgerIDCreditorRealisedGainLossStartsWith = null; public String LedgerIDCreditorRealisedGainLossEndsWith = null; public String LedgerIDCreditorRealisedGainLossContains = null; public String LedgerIDCreditorRealisedGainLossLike = null; public ArrayList LedgerIDCreditorRealisedGainLossBetween = null; public ArrayList LedgerIDCreditorRealisedGainLossIn = null; public String LedgerIDCreditorUnRealisedGainLoss = null; public String LedgerIDCreditorUnRealisedGainLossStartsWith = null; public String LedgerIDCreditorUnRealisedGainLossEndsWith = null; public String LedgerIDCreditorUnRealisedGainLossContains = null; public String LedgerIDCreditorUnRealisedGainLossLike = null; public ArrayList LedgerIDCreditorUnRealisedGainLossBetween = null; public ArrayList LedgerIDCreditorUnRealisedGainLossIn = null; public String PO_Workflows_RecID = null; public String PO_Workflows_RecIDStartsWith = null; public String PO_Workflows_RecIDEndsWith = null; public String PO_Workflows_RecIDContains = null; public String PO_Workflows_RecIDLike = null; public ArrayList PO_Workflows_RecIDBetween = null; public ArrayList PO_Workflows_RecIDIn = null; public String Country = null; public String CountryStartsWith = null; public String CountryEndsWith = null; public String CountryContains = null; public String CountryLike = null; public ArrayList CountryBetween = null; public ArrayList CountryIn = null; public String getCreditorID() { return CreditorID; } public CR_MainQuery setCreditorID(String value) { this.CreditorID = value; return this; } public String getCreditorIDStartsWith() { return CreditorIDStartsWith; } public CR_MainQuery setCreditorIDStartsWith(String value) { this.CreditorIDStartsWith = value; return this; } public String getCreditorIDEndsWith() { return CreditorIDEndsWith; } public CR_MainQuery setCreditorIDEndsWith(String value) { this.CreditorIDEndsWith = value; return this; } public String getCreditorIDContains() { return CreditorIDContains; } public CR_MainQuery setCreditorIDContains(String value) { this.CreditorIDContains = value; return this; } public String getCreditorIDLike() { return CreditorIDLike; } public CR_MainQuery setCreditorIDLike(String value) { this.CreditorIDLike = value; return this; } public ArrayList getCreditorIDBetween() { return CreditorIDBetween; } public CR_MainQuery setCreditorIDBetween(ArrayList value) { this.CreditorIDBetween = value; return this; } public ArrayList getCreditorIDIn() { return CreditorIDIn; } public CR_MainQuery setCreditorIDIn(ArrayList value) { this.CreditorIDIn = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public CR_MainQuery setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getLastSavedDateTimeGreaterThanOrEqualTo() { return LastSavedDateTimeGreaterThanOrEqualTo; } public CR_MainQuery setLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.LastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeGreaterThan() { return LastSavedDateTimeGreaterThan; } public CR_MainQuery setLastSavedDateTimeGreaterThan(Date value) { this.LastSavedDateTimeGreaterThan = value; return this; } public Date getLastSavedDateTimeLessThan() { return LastSavedDateTimeLessThan; } public CR_MainQuery setLastSavedDateTimeLessThan(Date value) { this.LastSavedDateTimeLessThan = value; return this; } public Date getLastSavedDateTimeLessThanOrEqualTo() { return LastSavedDateTimeLessThanOrEqualTo; } public CR_MainQuery setLastSavedDateTimeLessThanOrEqualTo(Date value) { this.LastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeNotEqualTo() { return LastSavedDateTimeNotEqualTo; } public CR_MainQuery setLastSavedDateTimeNotEqualTo(Date value) { this.LastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getLastSavedDateTimeBetween() { return LastSavedDateTimeBetween; } public CR_MainQuery setLastSavedDateTimeBetween(ArrayList value) { this.LastSavedDateTimeBetween = value; return this; } public ArrayList getLastSavedDateTimeIn() { return LastSavedDateTimeIn; } public CR_MainQuery setLastSavedDateTimeIn(ArrayList value) { this.LastSavedDateTimeIn = value; return this; } public String getAccountNo() { return AccountNo; } public CR_MainQuery setAccountNo(String value) { this.AccountNo = value; return this; } public String getAccountNoStartsWith() { return AccountNoStartsWith; } public CR_MainQuery setAccountNoStartsWith(String value) { this.AccountNoStartsWith = value; return this; } public String getAccountNoEndsWith() { return AccountNoEndsWith; } public CR_MainQuery setAccountNoEndsWith(String value) { this.AccountNoEndsWith = value; return this; } public String getAccountNoContains() { return AccountNoContains; } public CR_MainQuery setAccountNoContains(String value) { this.AccountNoContains = value; return this; } public String getAccountNoLike() { return AccountNoLike; } public CR_MainQuery setAccountNoLike(String value) { this.AccountNoLike = value; return this; } public ArrayList getAccountNoBetween() { return AccountNoBetween; } public CR_MainQuery setAccountNoBetween(ArrayList value) { this.AccountNoBetween = value; return this; } public ArrayList getAccountNoIn() { return AccountNoIn; } public CR_MainQuery setAccountNoIn(ArrayList value) { this.AccountNoIn = value; return this; } public String getName() { return Name; } public CR_MainQuery setName(String value) { this.Name = value; return this; } public String getNameStartsWith() { return NameStartsWith; } public CR_MainQuery setNameStartsWith(String value) { this.NameStartsWith = value; return this; } public String getNameEndsWith() { return NameEndsWith; } public CR_MainQuery setNameEndsWith(String value) { this.NameEndsWith = value; return this; } public String getNameContains() { return NameContains; } public CR_MainQuery setNameContains(String value) { this.NameContains = value; return this; } public String getNameLike() { return NameLike; } public CR_MainQuery setNameLike(String value) { this.NameLike = value; return this; } public ArrayList getNameBetween() { return NameBetween; } public CR_MainQuery setNameBetween(ArrayList value) { this.NameBetween = value; return this; } public ArrayList getNameIn() { return NameIn; } public CR_MainQuery setNameIn(ArrayList value) { this.NameIn = value; return this; } public String getAddress1() { return Address1; } public CR_MainQuery setAddress1(String value) { this.Address1 = value; return this; } public String getAddress1StartsWith() { return Address1StartsWith; } public CR_MainQuery setAddress1StartsWith(String value) { this.Address1StartsWith = value; return this; } public String getAddress1EndsWith() { return Address1EndsWith; } public CR_MainQuery setAddress1EndsWith(String value) { this.Address1EndsWith = value; return this; } public String getAddress1Contains() { return Address1Contains; } public CR_MainQuery setAddress1Contains(String value) { this.Address1Contains = value; return this; } public String getAddress1Like() { return Address1Like; } public CR_MainQuery setAddress1Like(String value) { this.Address1Like = value; return this; } public ArrayList getAddress1Between() { return Address1Between; } public CR_MainQuery setAddress1Between(ArrayList value) { this.Address1Between = value; return this; } public ArrayList getAddress1In() { return Address1In; } public CR_MainQuery setAddress1In(ArrayList value) { this.Address1In = value; return this; } public String getAddress2() { return Address2; } public CR_MainQuery setAddress2(String value) { this.Address2 = value; return this; } public String getAddress2StartsWith() { return Address2StartsWith; } public CR_MainQuery setAddress2StartsWith(String value) { this.Address2StartsWith = value; return this; } public String getAddress2EndsWith() { return Address2EndsWith; } public CR_MainQuery setAddress2EndsWith(String value) { this.Address2EndsWith = value; return this; } public String getAddress2Contains() { return Address2Contains; } public CR_MainQuery setAddress2Contains(String value) { this.Address2Contains = value; return this; } public String getAddress2Like() { return Address2Like; } public CR_MainQuery setAddress2Like(String value) { this.Address2Like = value; return this; } public ArrayList getAddress2Between() { return Address2Between; } public CR_MainQuery setAddress2Between(ArrayList value) { this.Address2Between = value; return this; } public ArrayList getAddress2In() { return Address2In; } public CR_MainQuery setAddress2In(ArrayList value) { this.Address2In = value; return this; } public String getAddress3() { return Address3; } public CR_MainQuery setAddress3(String value) { this.Address3 = value; return this; } public String getAddress3StartsWith() { return Address3StartsWith; } public CR_MainQuery setAddress3StartsWith(String value) { this.Address3StartsWith = value; return this; } public String getAddress3EndsWith() { return Address3EndsWith; } public CR_MainQuery setAddress3EndsWith(String value) { this.Address3EndsWith = value; return this; } public String getAddress3Contains() { return Address3Contains; } public CR_MainQuery setAddress3Contains(String value) { this.Address3Contains = value; return this; } public String getAddress3Like() { return Address3Like; } public CR_MainQuery setAddress3Like(String value) { this.Address3Like = value; return this; } public ArrayList getAddress3Between() { return Address3Between; } public CR_MainQuery setAddress3Between(ArrayList value) { this.Address3Between = value; return this; } public ArrayList getAddress3In() { return Address3In; } public CR_MainQuery setAddress3In(ArrayList value) { this.Address3In = value; return this; } public String getAddress4() { return Address4; } public CR_MainQuery setAddress4(String value) { this.Address4 = value; return this; } public String getAddress4StartsWith() { return Address4StartsWith; } public CR_MainQuery setAddress4StartsWith(String value) { this.Address4StartsWith = value; return this; } public String getAddress4EndsWith() { return Address4EndsWith; } public CR_MainQuery setAddress4EndsWith(String value) { this.Address4EndsWith = value; return this; } public String getAddress4Contains() { return Address4Contains; } public CR_MainQuery setAddress4Contains(String value) { this.Address4Contains = value; return this; } public String getAddress4Like() { return Address4Like; } public CR_MainQuery setAddress4Like(String value) { this.Address4Like = value; return this; } public ArrayList getAddress4Between() { return Address4Between; } public CR_MainQuery setAddress4Between(ArrayList value) { this.Address4Between = value; return this; } public ArrayList getAddress4In() { return Address4In; } public CR_MainQuery setAddress4In(ArrayList value) { this.Address4In = value; return this; } public String getPostCode() { return PostCode; } public CR_MainQuery setPostCode(String value) { this.PostCode = value; return this; } public String getPostCodeStartsWith() { return PostCodeStartsWith; } public CR_MainQuery setPostCodeStartsWith(String value) { this.PostCodeStartsWith = value; return this; } public String getPostCodeEndsWith() { return PostCodeEndsWith; } public CR_MainQuery setPostCodeEndsWith(String value) { this.PostCodeEndsWith = value; return this; } public String getPostCodeContains() { return PostCodeContains; } public CR_MainQuery setPostCodeContains(String value) { this.PostCodeContains = value; return this; } public String getPostCodeLike() { return PostCodeLike; } public CR_MainQuery setPostCodeLike(String value) { this.PostCodeLike = value; return this; } public ArrayList getPostCodeBetween() { return PostCodeBetween; } public CR_MainQuery setPostCodeBetween(ArrayList value) { this.PostCodeBetween = value; return this; } public ArrayList getPostCodeIn() { return PostCodeIn; } public CR_MainQuery setPostCodeIn(ArrayList value) { this.PostCodeIn = value; return this; } public String getPhone() { return Phone; } public CR_MainQuery setPhone(String value) { this.Phone = value; return this; } public String getPhoneStartsWith() { return PhoneStartsWith; } public CR_MainQuery setPhoneStartsWith(String value) { this.PhoneStartsWith = value; return this; } public String getPhoneEndsWith() { return PhoneEndsWith; } public CR_MainQuery setPhoneEndsWith(String value) { this.PhoneEndsWith = value; return this; } public String getPhoneContains() { return PhoneContains; } public CR_MainQuery setPhoneContains(String value) { this.PhoneContains = value; return this; } public String getPhoneLike() { return PhoneLike; } public CR_MainQuery setPhoneLike(String value) { this.PhoneLike = value; return this; } public ArrayList getPhoneBetween() { return PhoneBetween; } public CR_MainQuery setPhoneBetween(ArrayList value) { this.PhoneBetween = value; return this; } public ArrayList getPhoneIn() { return PhoneIn; } public CR_MainQuery setPhoneIn(ArrayList value) { this.PhoneIn = value; return this; } public String getFax() { return Fax; } public CR_MainQuery setFax(String value) { this.Fax = value; return this; } public String getFaxStartsWith() { return FaxStartsWith; } public CR_MainQuery setFaxStartsWith(String value) { this.FaxStartsWith = value; return this; } public String getFaxEndsWith() { return FaxEndsWith; } public CR_MainQuery setFaxEndsWith(String value) { this.FaxEndsWith = value; return this; } public String getFaxContains() { return FaxContains; } public CR_MainQuery setFaxContains(String value) { this.FaxContains = value; return this; } public String getFaxLike() { return FaxLike; } public CR_MainQuery setFaxLike(String value) { this.FaxLike = value; return this; } public ArrayList getFaxBetween() { return FaxBetween; } public CR_MainQuery setFaxBetween(ArrayList value) { this.FaxBetween = value; return this; } public ArrayList getFaxIn() { return FaxIn; } public CR_MainQuery setFaxIn(ArrayList value) { this.FaxIn = value; return this; } public String getBankName() { return BankName; } public CR_MainQuery setBankName(String value) { this.BankName = value; return this; } public String getBankNameStartsWith() { return BankNameStartsWith; } public CR_MainQuery setBankNameStartsWith(String value) { this.BankNameStartsWith = value; return this; } public String getBankNameEndsWith() { return BankNameEndsWith; } public CR_MainQuery setBankNameEndsWith(String value) { this.BankNameEndsWith = value; return this; } public String getBankNameContains() { return BankNameContains; } public CR_MainQuery setBankNameContains(String value) { this.BankNameContains = value; return this; } public String getBankNameLike() { return BankNameLike; } public CR_MainQuery setBankNameLike(String value) { this.BankNameLike = value; return this; } public ArrayList getBankNameBetween() { return BankNameBetween; } public CR_MainQuery setBankNameBetween(ArrayList value) { this.BankNameBetween = value; return this; } public ArrayList getBankNameIn() { return BankNameIn; } public CR_MainQuery setBankNameIn(ArrayList value) { this.BankNameIn = value; return this; } public String getBankAcc() { return BankAcc; } public CR_MainQuery setBankAcc(String value) { this.BankAcc = value; return this; } public String getBankAccStartsWith() { return BankAccStartsWith; } public CR_MainQuery setBankAccStartsWith(String value) { this.BankAccStartsWith = value; return this; } public String getBankAccEndsWith() { return BankAccEndsWith; } public CR_MainQuery setBankAccEndsWith(String value) { this.BankAccEndsWith = value; return this; } public String getBankAccContains() { return BankAccContains; } public CR_MainQuery setBankAccContains(String value) { this.BankAccContains = value; return this; } public String getBankAccLike() { return BankAccLike; } public CR_MainQuery setBankAccLike(String value) { this.BankAccLike = value; return this; } public ArrayList getBankAccBetween() { return BankAccBetween; } public CR_MainQuery setBankAccBetween(ArrayList value) { this.BankAccBetween = value; return this; } public ArrayList getBankAccIn() { return BankAccIn; } public CR_MainQuery setBankAccIn(ArrayList value) { this.BankAccIn = value; return this; } public String getBsbn() { return BSBN; } public CR_MainQuery setBsbn(String value) { this.BSBN = value; return this; } public String getBsbnStartsWith() { return BSBNStartsWith; } public CR_MainQuery setBsbnStartsWith(String value) { this.BSBNStartsWith = value; return this; } public String getBsbnEndsWith() { return BSBNEndsWith; } public CR_MainQuery setBsbnEndsWith(String value) { this.BSBNEndsWith = value; return this; } public String getBsbnContains() { return BSBNContains; } public CR_MainQuery setBsbnContains(String value) { this.BSBNContains = value; return this; } public String getBsbnLike() { return BSBNLike; } public CR_MainQuery setBsbnLike(String value) { this.BSBNLike = value; return this; } public ArrayList getBsbnBetween() { return BSBNBetween; } public CR_MainQuery setBsbnBetween(ArrayList value) { this.BSBNBetween = value; return this; } public ArrayList getBsbnIn() { return BSBNIn; } public CR_MainQuery setBsbnIn(ArrayList value) { this.BSBNIn = value; return this; } public String getAccountName() { return AccountName; } public CR_MainQuery setAccountName(String value) { this.AccountName = value; return this; } public String getAccountNameStartsWith() { return AccountNameStartsWith; } public CR_MainQuery setAccountNameStartsWith(String value) { this.AccountNameStartsWith = value; return this; } public String getAccountNameEndsWith() { return AccountNameEndsWith; } public CR_MainQuery setAccountNameEndsWith(String value) { this.AccountNameEndsWith = value; return this; } public String getAccountNameContains() { return AccountNameContains; } public CR_MainQuery setAccountNameContains(String value) { this.AccountNameContains = value; return this; } public String getAccountNameLike() { return AccountNameLike; } public CR_MainQuery setAccountNameLike(String value) { this.AccountNameLike = value; return this; } public ArrayList getAccountNameBetween() { return AccountNameBetween; } public CR_MainQuery setAccountNameBetween(ArrayList value) { this.AccountNameBetween = value; return this; } public ArrayList getAccountNameIn() { return AccountNameIn; } public CR_MainQuery setAccountNameIn(ArrayList value) { this.AccountNameIn = value; return this; } public Short getDefaultPaymentType() { return DefaultPaymentType; } public CR_MainQuery setDefaultPaymentType(Short value) { this.DefaultPaymentType = value; return this; } public Short getDefaultPaymentTypeGreaterThanOrEqualTo() { return DefaultPaymentTypeGreaterThanOrEqualTo; } public CR_MainQuery setDefaultPaymentTypeGreaterThanOrEqualTo(Short value) { this.DefaultPaymentTypeGreaterThanOrEqualTo = value; return this; } public Short getDefaultPaymentTypeGreaterThan() { return DefaultPaymentTypeGreaterThan; } public CR_MainQuery setDefaultPaymentTypeGreaterThan(Short value) { this.DefaultPaymentTypeGreaterThan = value; return this; } public Short getDefaultPaymentTypeLessThan() { return DefaultPaymentTypeLessThan; } public CR_MainQuery setDefaultPaymentTypeLessThan(Short value) { this.DefaultPaymentTypeLessThan = value; return this; } public Short getDefaultPaymentTypeLessThanOrEqualTo() { return DefaultPaymentTypeLessThanOrEqualTo; } public CR_MainQuery setDefaultPaymentTypeLessThanOrEqualTo(Short value) { this.DefaultPaymentTypeLessThanOrEqualTo = value; return this; } public Short getDefaultPaymentTypeNotEqualTo() { return DefaultPaymentTypeNotEqualTo; } public CR_MainQuery setDefaultPaymentTypeNotEqualTo(Short value) { this.DefaultPaymentTypeNotEqualTo = value; return this; } public ArrayList getDefaultPaymentTypeBetween() { return DefaultPaymentTypeBetween; } public CR_MainQuery setDefaultPaymentTypeBetween(ArrayList value) { this.DefaultPaymentTypeBetween = value; return this; } public ArrayList getDefaultPaymentTypeIn() { return DefaultPaymentTypeIn; } public CR_MainQuery setDefaultPaymentTypeIn(ArrayList value) { this.DefaultPaymentTypeIn = value; return this; } public BigDecimal getCreditLimit() { return CreditLimit; } public CR_MainQuery setCreditLimit(BigDecimal value) { this.CreditLimit = value; return this; } public BigDecimal getCreditLimitGreaterThanOrEqualTo() { return CreditLimitGreaterThanOrEqualTo; } public CR_MainQuery setCreditLimitGreaterThanOrEqualTo(BigDecimal value) { this.CreditLimitGreaterThanOrEqualTo = value; return this; } public BigDecimal getCreditLimitGreaterThan() { return CreditLimitGreaterThan; } public CR_MainQuery setCreditLimitGreaterThan(BigDecimal value) { this.CreditLimitGreaterThan = value; return this; } public BigDecimal getCreditLimitLessThan() { return CreditLimitLessThan; } public CR_MainQuery setCreditLimitLessThan(BigDecimal value) { this.CreditLimitLessThan = value; return this; } public BigDecimal getCreditLimitLessThanOrEqualTo() { return CreditLimitLessThanOrEqualTo; } public CR_MainQuery setCreditLimitLessThanOrEqualTo(BigDecimal value) { this.CreditLimitLessThanOrEqualTo = value; return this; } public BigDecimal getCreditLimitNotEqualTo() { return CreditLimitNotEqualTo; } public CR_MainQuery setCreditLimitNotEqualTo(BigDecimal value) { this.CreditLimitNotEqualTo = value; return this; } public ArrayList getCreditLimitBetween() { return CreditLimitBetween; } public CR_MainQuery setCreditLimitBetween(ArrayList value) { this.CreditLimitBetween = value; return this; } public ArrayList getCreditLimitIn() { return CreditLimitIn; } public CR_MainQuery setCreditLimitIn(ArrayList value) { this.CreditLimitIn = value; return this; } public Short getEarlyPayDisOnRemitDays() { return EarlyPayDisOnRemitDays; } public CR_MainQuery setEarlyPayDisOnRemitDays(Short value) { this.EarlyPayDisOnRemitDays = value; return this; } public Short getEarlyPayDisOnRemitDaysGreaterThanOrEqualTo() { return EarlyPayDisOnRemitDaysGreaterThanOrEqualTo; } public CR_MainQuery setEarlyPayDisOnRemitDaysGreaterThanOrEqualTo(Short value) { this.EarlyPayDisOnRemitDaysGreaterThanOrEqualTo = value; return this; } public Short getEarlyPayDisOnRemitDaysGreaterThan() { return EarlyPayDisOnRemitDaysGreaterThan; } public CR_MainQuery setEarlyPayDisOnRemitDaysGreaterThan(Short value) { this.EarlyPayDisOnRemitDaysGreaterThan = value; return this; } public Short getEarlyPayDisOnRemitDaysLessThan() { return EarlyPayDisOnRemitDaysLessThan; } public CR_MainQuery setEarlyPayDisOnRemitDaysLessThan(Short value) { this.EarlyPayDisOnRemitDaysLessThan = value; return this; } public Short getEarlyPayDisOnRemitDaysLessThanOrEqualTo() { return EarlyPayDisOnRemitDaysLessThanOrEqualTo; } public CR_MainQuery setEarlyPayDisOnRemitDaysLessThanOrEqualTo(Short value) { this.EarlyPayDisOnRemitDaysLessThanOrEqualTo = value; return this; } public Short getEarlyPayDisOnRemitDaysNotEqualTo() { return EarlyPayDisOnRemitDaysNotEqualTo; } public CR_MainQuery setEarlyPayDisOnRemitDaysNotEqualTo(Short value) { this.EarlyPayDisOnRemitDaysNotEqualTo = value; return this; } public ArrayList getEarlyPayDisOnRemitDaysBetween() { return EarlyPayDisOnRemitDaysBetween; } public CR_MainQuery setEarlyPayDisOnRemitDaysBetween(ArrayList value) { this.EarlyPayDisOnRemitDaysBetween = value; return this; } public ArrayList getEarlyPayDisOnRemitDaysIn() { return EarlyPayDisOnRemitDaysIn; } public CR_MainQuery setEarlyPayDisOnRemitDaysIn(ArrayList value) { this.EarlyPayDisOnRemitDaysIn = value; return this; } public BigDecimal getEarlyPayDisOnRemitAmt() { return EarlyPayDisOnRemitAmt; } public CR_MainQuery setEarlyPayDisOnRemitAmt(BigDecimal value) { this.EarlyPayDisOnRemitAmt = value; return this; } public BigDecimal getEarlyPayDisOnRemitAmtGreaterThanOrEqualTo() { return EarlyPayDisOnRemitAmtGreaterThanOrEqualTo; } public CR_MainQuery setEarlyPayDisOnRemitAmtGreaterThanOrEqualTo(BigDecimal value) { this.EarlyPayDisOnRemitAmtGreaterThanOrEqualTo = value; return this; } public BigDecimal getEarlyPayDisOnRemitAmtGreaterThan() { return EarlyPayDisOnRemitAmtGreaterThan; } public CR_MainQuery setEarlyPayDisOnRemitAmtGreaterThan(BigDecimal value) { this.EarlyPayDisOnRemitAmtGreaterThan = value; return this; } public BigDecimal getEarlyPayDisOnRemitAmtLessThan() { return EarlyPayDisOnRemitAmtLessThan; } public CR_MainQuery setEarlyPayDisOnRemitAmtLessThan(BigDecimal value) { this.EarlyPayDisOnRemitAmtLessThan = value; return this; } public BigDecimal getEarlyPayDisOnRemitAmtLessThanOrEqualTo() { return EarlyPayDisOnRemitAmtLessThanOrEqualTo; } public CR_MainQuery setEarlyPayDisOnRemitAmtLessThanOrEqualTo(BigDecimal value) { this.EarlyPayDisOnRemitAmtLessThanOrEqualTo = value; return this; } public BigDecimal getEarlyPayDisOnRemitAmtNotEqualTo() { return EarlyPayDisOnRemitAmtNotEqualTo; } public CR_MainQuery setEarlyPayDisOnRemitAmtNotEqualTo(BigDecimal value) { this.EarlyPayDisOnRemitAmtNotEqualTo = value; return this; } public ArrayList getEarlyPayDisOnRemitAmtBetween() { return EarlyPayDisOnRemitAmtBetween; } public CR_MainQuery setEarlyPayDisOnRemitAmtBetween(ArrayList value) { this.EarlyPayDisOnRemitAmtBetween = value; return this; } public ArrayList getEarlyPayDisOnRemitAmtIn() { return EarlyPayDisOnRemitAmtIn; } public CR_MainQuery setEarlyPayDisOnRemitAmtIn(ArrayList value) { this.EarlyPayDisOnRemitAmtIn = value; return this; } public Date getLastSaleDate() { return LastSaleDate; } public CR_MainQuery setLastSaleDate(Date value) { this.LastSaleDate = value; return this; } public Date getLastSaleDateGreaterThanOrEqualTo() { return LastSaleDateGreaterThanOrEqualTo; } public CR_MainQuery setLastSaleDateGreaterThanOrEqualTo(Date value) { this.LastSaleDateGreaterThanOrEqualTo = value; return this; } public Date getLastSaleDateGreaterThan() { return LastSaleDateGreaterThan; } public CR_MainQuery setLastSaleDateGreaterThan(Date value) { this.LastSaleDateGreaterThan = value; return this; } public Date getLastSaleDateLessThan() { return LastSaleDateLessThan; } public CR_MainQuery setLastSaleDateLessThan(Date value) { this.LastSaleDateLessThan = value; return this; } public Date getLastSaleDateLessThanOrEqualTo() { return LastSaleDateLessThanOrEqualTo; } public CR_MainQuery setLastSaleDateLessThanOrEqualTo(Date value) { this.LastSaleDateLessThanOrEqualTo = value; return this; } public Date getLastSaleDateNotEqualTo() { return LastSaleDateNotEqualTo; } public CR_MainQuery setLastSaleDateNotEqualTo(Date value) { this.LastSaleDateNotEqualTo = value; return this; } public ArrayList getLastSaleDateBetween() { return LastSaleDateBetween; } public CR_MainQuery setLastSaleDateBetween(ArrayList value) { this.LastSaleDateBetween = value; return this; } public ArrayList getLastSaleDateIn() { return LastSaleDateIn; } public CR_MainQuery setLastSaleDateIn(ArrayList value) { this.LastSaleDateIn = value; return this; } public Date getLastPaymentDate() { return LastPaymentDate; } public CR_MainQuery setLastPaymentDate(Date value) { this.LastPaymentDate = value; return this; } public Date getLastPaymentDateGreaterThanOrEqualTo() { return LastPaymentDateGreaterThanOrEqualTo; } public CR_MainQuery setLastPaymentDateGreaterThanOrEqualTo(Date value) { this.LastPaymentDateGreaterThanOrEqualTo = value; return this; } public Date getLastPaymentDateGreaterThan() { return LastPaymentDateGreaterThan; } public CR_MainQuery setLastPaymentDateGreaterThan(Date value) { this.LastPaymentDateGreaterThan = value; return this; } public Date getLastPaymentDateLessThan() { return LastPaymentDateLessThan; } public CR_MainQuery setLastPaymentDateLessThan(Date value) { this.LastPaymentDateLessThan = value; return this; } public Date getLastPaymentDateLessThanOrEqualTo() { return LastPaymentDateLessThanOrEqualTo; } public CR_MainQuery setLastPaymentDateLessThanOrEqualTo(Date value) { this.LastPaymentDateLessThanOrEqualTo = value; return this; } public Date getLastPaymentDateNotEqualTo() { return LastPaymentDateNotEqualTo; } public CR_MainQuery setLastPaymentDateNotEqualTo(Date value) { this.LastPaymentDateNotEqualTo = value; return this; } public ArrayList getLastPaymentDateBetween() { return LastPaymentDateBetween; } public CR_MainQuery setLastPaymentDateBetween(ArrayList value) { this.LastPaymentDateBetween = value; return this; } public ArrayList getLastPaymentDateIn() { return LastPaymentDateIn; } public CR_MainQuery setLastPaymentDateIn(ArrayList value) { this.LastPaymentDateIn = value; return this; } public String getClassificationID() { return ClassificationID; } public CR_MainQuery setClassificationID(String value) { this.ClassificationID = value; return this; } public String getClassificationIDStartsWith() { return ClassificationIDStartsWith; } public CR_MainQuery setClassificationIDStartsWith(String value) { this.ClassificationIDStartsWith = value; return this; } public String getClassificationIDEndsWith() { return ClassificationIDEndsWith; } public CR_MainQuery setClassificationIDEndsWith(String value) { this.ClassificationIDEndsWith = value; return this; } public String getClassificationIDContains() { return ClassificationIDContains; } public CR_MainQuery setClassificationIDContains(String value) { this.ClassificationIDContains = value; return this; } public String getClassificationIDLike() { return ClassificationIDLike; } public CR_MainQuery setClassificationIDLike(String value) { this.ClassificationIDLike = value; return this; } public ArrayList getClassificationIDBetween() { return ClassificationIDBetween; } public CR_MainQuery setClassificationIDBetween(ArrayList value) { this.ClassificationIDBetween = value; return this; } public ArrayList getClassificationIDIn() { return ClassificationIDIn; } public CR_MainQuery setClassificationIDIn(ArrayList value) { this.ClassificationIDIn = value; return this; } public Boolean isAccountOnHold() { return AccountOnHold; } public CR_MainQuery setAccountOnHold(Boolean value) { this.AccountOnHold = value; return this; } public String getEmailAddress() { return EmailAddress; } public CR_MainQuery setEmailAddress(String value) { this.EmailAddress = value; return this; } public String getEmailAddressStartsWith() { return EmailAddressStartsWith; } public CR_MainQuery setEmailAddressStartsWith(String value) { this.EmailAddressStartsWith = value; return this; } public String getEmailAddressEndsWith() { return EmailAddressEndsWith; } public CR_MainQuery setEmailAddressEndsWith(String value) { this.EmailAddressEndsWith = value; return this; } public String getEmailAddressContains() { return EmailAddressContains; } public CR_MainQuery setEmailAddressContains(String value) { this.EmailAddressContains = value; return this; } public String getEmailAddressLike() { return EmailAddressLike; } public CR_MainQuery setEmailAddressLike(String value) { this.EmailAddressLike = value; return this; } public ArrayList getEmailAddressBetween() { return EmailAddressBetween; } public CR_MainQuery setEmailAddressBetween(ArrayList value) { this.EmailAddressBetween = value; return this; } public ArrayList getEmailAddressIn() { return EmailAddressIn; } public CR_MainQuery setEmailAddressIn(ArrayList value) { this.EmailAddressIn = value; return this; } public BigDecimal getCurrentBalance() { return CurrentBalance; } public CR_MainQuery setCurrentBalance(BigDecimal value) { this.CurrentBalance = value; return this; } public BigDecimal getCurrentBalanceGreaterThanOrEqualTo() { return CurrentBalanceGreaterThanOrEqualTo; } public CR_MainQuery setCurrentBalanceGreaterThanOrEqualTo(BigDecimal value) { this.CurrentBalanceGreaterThanOrEqualTo = value; return this; } public BigDecimal getCurrentBalanceGreaterThan() { return CurrentBalanceGreaterThan; } public CR_MainQuery setCurrentBalanceGreaterThan(BigDecimal value) { this.CurrentBalanceGreaterThan = value; return this; } public BigDecimal getCurrentBalanceLessThan() { return CurrentBalanceLessThan; } public CR_MainQuery setCurrentBalanceLessThan(BigDecimal value) { this.CurrentBalanceLessThan = value; return this; } public BigDecimal getCurrentBalanceLessThanOrEqualTo() { return CurrentBalanceLessThanOrEqualTo; } public CR_MainQuery setCurrentBalanceLessThanOrEqualTo(BigDecimal value) { this.CurrentBalanceLessThanOrEqualTo = value; return this; } public BigDecimal getCurrentBalanceNotEqualTo() { return CurrentBalanceNotEqualTo; } public CR_MainQuery setCurrentBalanceNotEqualTo(BigDecimal value) { this.CurrentBalanceNotEqualTo = value; return this; } public ArrayList getCurrentBalanceBetween() { return CurrentBalanceBetween; } public CR_MainQuery setCurrentBalanceBetween(ArrayList value) { this.CurrentBalanceBetween = value; return this; } public ArrayList getCurrentBalanceIn() { return CurrentBalanceIn; } public CR_MainQuery setCurrentBalanceIn(ArrayList value) { this.CurrentBalanceIn = value; return this; } public BigDecimal getPeriod1() { return Period1; } public CR_MainQuery setPeriod1(BigDecimal value) { this.Period1 = value; return this; } public BigDecimal getPeriod1GreaterThanOrEqualTo() { return Period1GreaterThanOrEqualTo; } public CR_MainQuery setPeriod1GreaterThanOrEqualTo(BigDecimal value) { this.Period1GreaterThanOrEqualTo = value; return this; } public BigDecimal getPeriod1GreaterThan() { return Period1GreaterThan; } public CR_MainQuery setPeriod1GreaterThan(BigDecimal value) { this.Period1GreaterThan = value; return this; } public BigDecimal getPeriod1LessThan() { return Period1LessThan; } public CR_MainQuery setPeriod1LessThan(BigDecimal value) { this.Period1LessThan = value; return this; } public BigDecimal getPeriod1LessThanOrEqualTo() { return Period1LessThanOrEqualTo; } public CR_MainQuery setPeriod1LessThanOrEqualTo(BigDecimal value) { this.Period1LessThanOrEqualTo = value; return this; } public BigDecimal getPeriod1NotEqualTo() { return Period1NotEqualTo; } public CR_MainQuery setPeriod1NotEqualTo(BigDecimal value) { this.Period1NotEqualTo = value; return this; } public ArrayList getPeriod1Between() { return Period1Between; } public CR_MainQuery setPeriod1Between(ArrayList value) { this.Period1Between = value; return this; } public ArrayList getPeriod1In() { return Period1In; } public CR_MainQuery setPeriod1In(ArrayList value) { this.Period1In = value; return this; } public BigDecimal getPeriod2() { return Period2; } public CR_MainQuery setPeriod2(BigDecimal value) { this.Period2 = value; return this; } public BigDecimal getPeriod2GreaterThanOrEqualTo() { return Period2GreaterThanOrEqualTo; } public CR_MainQuery setPeriod2GreaterThanOrEqualTo(BigDecimal value) { this.Period2GreaterThanOrEqualTo = value; return this; } public BigDecimal getPeriod2GreaterThan() { return Period2GreaterThan; } public CR_MainQuery setPeriod2GreaterThan(BigDecimal value) { this.Period2GreaterThan = value; return this; } public BigDecimal getPeriod2LessThan() { return Period2LessThan; } public CR_MainQuery setPeriod2LessThan(BigDecimal value) { this.Period2LessThan = value; return this; } public BigDecimal getPeriod2LessThanOrEqualTo() { return Period2LessThanOrEqualTo; } public CR_MainQuery setPeriod2LessThanOrEqualTo(BigDecimal value) { this.Period2LessThanOrEqualTo = value; return this; } public BigDecimal getPeriod2NotEqualTo() { return Period2NotEqualTo; } public CR_MainQuery setPeriod2NotEqualTo(BigDecimal value) { this.Period2NotEqualTo = value; return this; } public ArrayList getPeriod2Between() { return Period2Between; } public CR_MainQuery setPeriod2Between(ArrayList value) { this.Period2Between = value; return this; } public ArrayList getPeriod2In() { return Period2In; } public CR_MainQuery setPeriod2In(ArrayList value) { this.Period2In = value; return this; } public BigDecimal getPeriod3() { return Period3; } public CR_MainQuery setPeriod3(BigDecimal value) { this.Period3 = value; return this; } public BigDecimal getPeriod3GreaterThanOrEqualTo() { return Period3GreaterThanOrEqualTo; } public CR_MainQuery setPeriod3GreaterThanOrEqualTo(BigDecimal value) { this.Period3GreaterThanOrEqualTo = value; return this; } public BigDecimal getPeriod3GreaterThan() { return Period3GreaterThan; } public CR_MainQuery setPeriod3GreaterThan(BigDecimal value) { this.Period3GreaterThan = value; return this; } public BigDecimal getPeriod3LessThan() { return Period3LessThan; } public CR_MainQuery setPeriod3LessThan(BigDecimal value) { this.Period3LessThan = value; return this; } public BigDecimal getPeriod3LessThanOrEqualTo() { return Period3LessThanOrEqualTo; } public CR_MainQuery setPeriod3LessThanOrEqualTo(BigDecimal value) { this.Period3LessThanOrEqualTo = value; return this; } public BigDecimal getPeriod3NotEqualTo() { return Period3NotEqualTo; } public CR_MainQuery setPeriod3NotEqualTo(BigDecimal value) { this.Period3NotEqualTo = value; return this; } public ArrayList getPeriod3Between() { return Period3Between; } public CR_MainQuery setPeriod3Between(ArrayList value) { this.Period3Between = value; return this; } public ArrayList getPeriod3In() { return Period3In; } public CR_MainQuery setPeriod3In(ArrayList value) { this.Period3In = value; return this; } public BigDecimal getPeriod4() { return Period4; } public CR_MainQuery setPeriod4(BigDecimal value) { this.Period4 = value; return this; } public BigDecimal getPeriod4GreaterThanOrEqualTo() { return Period4GreaterThanOrEqualTo; } public CR_MainQuery setPeriod4GreaterThanOrEqualTo(BigDecimal value) { this.Period4GreaterThanOrEqualTo = value; return this; } public BigDecimal getPeriod4GreaterThan() { return Period4GreaterThan; } public CR_MainQuery setPeriod4GreaterThan(BigDecimal value) { this.Period4GreaterThan = value; return this; } public BigDecimal getPeriod4LessThan() { return Period4LessThan; } public CR_MainQuery setPeriod4LessThan(BigDecimal value) { this.Period4LessThan = value; return this; } public BigDecimal getPeriod4LessThanOrEqualTo() { return Period4LessThanOrEqualTo; } public CR_MainQuery setPeriod4LessThanOrEqualTo(BigDecimal value) { this.Period4LessThanOrEqualTo = value; return this; } public BigDecimal getPeriod4NotEqualTo() { return Period4NotEqualTo; } public CR_MainQuery setPeriod4NotEqualTo(BigDecimal value) { this.Period4NotEqualTo = value; return this; } public ArrayList getPeriod4Between() { return Period4Between; } public CR_MainQuery setPeriod4Between(ArrayList value) { this.Period4Between = value; return this; } public ArrayList getPeriod4In() { return Period4In; } public CR_MainQuery setPeriod4In(ArrayList value) { this.Period4In = value; return this; } public String getAltAccountNo() { return AltAccountNo; } public CR_MainQuery setAltAccountNo(String value) { this.AltAccountNo = value; return this; } public String getAltAccountNoStartsWith() { return AltAccountNoStartsWith; } public CR_MainQuery setAltAccountNoStartsWith(String value) { this.AltAccountNoStartsWith = value; return this; } public String getAltAccountNoEndsWith() { return AltAccountNoEndsWith; } public CR_MainQuery setAltAccountNoEndsWith(String value) { this.AltAccountNoEndsWith = value; return this; } public String getAltAccountNoContains() { return AltAccountNoContains; } public CR_MainQuery setAltAccountNoContains(String value) { this.AltAccountNoContains = value; return this; } public String getAltAccountNoLike() { return AltAccountNoLike; } public CR_MainQuery setAltAccountNoLike(String value) { this.AltAccountNoLike = value; return this; } public ArrayList getAltAccountNoBetween() { return AltAccountNoBetween; } public CR_MainQuery setAltAccountNoBetween(ArrayList value) { this.AltAccountNoBetween = value; return this; } public ArrayList getAltAccountNoIn() { return AltAccountNoIn; } public CR_MainQuery setAltAccountNoIn(ArrayList value) { this.AltAccountNoIn = value; return this; } public Date getCommenceDate() { return CommenceDate; } public CR_MainQuery setCommenceDate(Date value) { this.CommenceDate = value; return this; } public Date getCommenceDateGreaterThanOrEqualTo() { return CommenceDateGreaterThanOrEqualTo; } public CR_MainQuery setCommenceDateGreaterThanOrEqualTo(Date value) { this.CommenceDateGreaterThanOrEqualTo = value; return this; } public Date getCommenceDateGreaterThan() { return CommenceDateGreaterThan; } public CR_MainQuery setCommenceDateGreaterThan(Date value) { this.CommenceDateGreaterThan = value; return this; } public Date getCommenceDateLessThan() { return CommenceDateLessThan; } public CR_MainQuery setCommenceDateLessThan(Date value) { this.CommenceDateLessThan = value; return this; } public Date getCommenceDateLessThanOrEqualTo() { return CommenceDateLessThanOrEqualTo; } public CR_MainQuery setCommenceDateLessThanOrEqualTo(Date value) { this.CommenceDateLessThanOrEqualTo = value; return this; } public Date getCommenceDateNotEqualTo() { return CommenceDateNotEqualTo; } public CR_MainQuery setCommenceDateNotEqualTo(Date value) { this.CommenceDateNotEqualTo = value; return this; } public ArrayList getCommenceDateBetween() { return CommenceDateBetween; } public CR_MainQuery setCommenceDateBetween(ArrayList value) { this.CommenceDateBetween = value; return this; } public ArrayList getCommenceDateIn() { return CommenceDateIn; } public CR_MainQuery setCommenceDateIn(ArrayList value) { this.CommenceDateIn = value; return this; } public Short getTermsDays() { return TermsDays; } public CR_MainQuery setTermsDays(Short value) { this.TermsDays = value; return this; } public Short getTermsDaysGreaterThanOrEqualTo() { return TermsDaysGreaterThanOrEqualTo; } public CR_MainQuery setTermsDaysGreaterThanOrEqualTo(Short value) { this.TermsDaysGreaterThanOrEqualTo = value; return this; } public Short getTermsDaysGreaterThan() { return TermsDaysGreaterThan; } public CR_MainQuery setTermsDaysGreaterThan(Short value) { this.TermsDaysGreaterThan = value; return this; } public Short getTermsDaysLessThan() { return TermsDaysLessThan; } public CR_MainQuery setTermsDaysLessThan(Short value) { this.TermsDaysLessThan = value; return this; } public Short getTermsDaysLessThanOrEqualTo() { return TermsDaysLessThanOrEqualTo; } public CR_MainQuery setTermsDaysLessThanOrEqualTo(Short value) { this.TermsDaysLessThanOrEqualTo = value; return this; } public Short getTermsDaysNotEqualTo() { return TermsDaysNotEqualTo; } public CR_MainQuery setTermsDaysNotEqualTo(Short value) { this.TermsDaysNotEqualTo = value; return this; } public ArrayList getTermsDaysBetween() { return TermsDaysBetween; } public CR_MainQuery setTermsDaysBetween(ArrayList value) { this.TermsDaysBetween = value; return this; } public ArrayList getTermsDaysIn() { return TermsDaysIn; } public CR_MainQuery setTermsDaysIn(ArrayList value) { this.TermsDaysIn = value; return this; } public String getAcn() { return ACN; } public CR_MainQuery setAcn(String value) { this.ACN = value; return this; } public String getAcnStartsWith() { return ACNStartsWith; } public CR_MainQuery setAcnStartsWith(String value) { this.ACNStartsWith = value; return this; } public String getAcnEndsWith() { return ACNEndsWith; } public CR_MainQuery setAcnEndsWith(String value) { this.ACNEndsWith = value; return this; } public String getAcnContains() { return ACNContains; } public CR_MainQuery setAcnContains(String value) { this.ACNContains = value; return this; } public String getAcnLike() { return ACNLike; } public CR_MainQuery setAcnLike(String value) { this.ACNLike = value; return this; } public ArrayList getAcnBetween() { return ACNBetween; } public CR_MainQuery setAcnBetween(ArrayList value) { this.ACNBetween = value; return this; } public ArrayList getAcnIn() { return ACNIn; } public CR_MainQuery setAcnIn(ArrayList value) { this.ACNIn = value; return this; } public String getCurrencyID() { return CurrencyID; } public CR_MainQuery setCurrencyID(String value) { this.CurrencyID = value; return this; } public String getCurrencyIDStartsWith() { return CurrencyIDStartsWith; } public CR_MainQuery setCurrencyIDStartsWith(String value) { this.CurrencyIDStartsWith = value; return this; } public String getCurrencyIDEndsWith() { return CurrencyIDEndsWith; } public CR_MainQuery setCurrencyIDEndsWith(String value) { this.CurrencyIDEndsWith = value; return this; } public String getCurrencyIDContains() { return CurrencyIDContains; } public CR_MainQuery setCurrencyIDContains(String value) { this.CurrencyIDContains = value; return this; } public String getCurrencyIDLike() { return CurrencyIDLike; } public CR_MainQuery setCurrencyIDLike(String value) { this.CurrencyIDLike = value; return this; } public ArrayList getCurrencyIDBetween() { return CurrencyIDBetween; } public CR_MainQuery setCurrencyIDBetween(ArrayList value) { this.CurrencyIDBetween = value; return this; } public ArrayList getCurrencyIDIn() { return CurrencyIDIn; } public CR_MainQuery setCurrencyIDIn(ArrayList value) { this.CurrencyIDIn = value; return this; } public Boolean isUsesFX() { return UsesFX; } public CR_MainQuery setUsesFX(Boolean value) { this.UsesFX = value; return this; } public String getAbn() { return ABN; } public CR_MainQuery setAbn(String value) { this.ABN = value; return this; } public String getAbnStartsWith() { return ABNStartsWith; } public CR_MainQuery setAbnStartsWith(String value) { this.ABNStartsWith = value; return this; } public String getAbnEndsWith() { return ABNEndsWith; } public CR_MainQuery setAbnEndsWith(String value) { this.ABNEndsWith = value; return this; } public String getAbnContains() { return ABNContains; } public CR_MainQuery setAbnContains(String value) { this.ABNContains = value; return this; } public String getAbnLike() { return ABNLike; } public CR_MainQuery setAbnLike(String value) { this.ABNLike = value; return this; } public ArrayList getAbnBetween() { return ABNBetween; } public CR_MainQuery setAbnBetween(ArrayList value) { this.ABNBetween = value; return this; } public ArrayList getAbnIn() { return ABNIn; } public CR_MainQuery setAbnIn(ArrayList value) { this.ABNIn = value; return this; } public Short getTermsType() { return TermsType; } public CR_MainQuery setTermsType(Short value) { this.TermsType = value; return this; } public Short getTermsTypeGreaterThanOrEqualTo() { return TermsTypeGreaterThanOrEqualTo; } public CR_MainQuery setTermsTypeGreaterThanOrEqualTo(Short value) { this.TermsTypeGreaterThanOrEqualTo = value; return this; } public Short getTermsTypeGreaterThan() { return TermsTypeGreaterThan; } public CR_MainQuery setTermsTypeGreaterThan(Short value) { this.TermsTypeGreaterThan = value; return this; } public Short getTermsTypeLessThan() { return TermsTypeLessThan; } public CR_MainQuery setTermsTypeLessThan(Short value) { this.TermsTypeLessThan = value; return this; } public Short getTermsTypeLessThanOrEqualTo() { return TermsTypeLessThanOrEqualTo; } public CR_MainQuery setTermsTypeLessThanOrEqualTo(Short value) { this.TermsTypeLessThanOrEqualTo = value; return this; } public Short getTermsTypeNotEqualTo() { return TermsTypeNotEqualTo; } public CR_MainQuery setTermsTypeNotEqualTo(Short value) { this.TermsTypeNotEqualTo = value; return this; } public ArrayList getTermsTypeBetween() { return TermsTypeBetween; } public CR_MainQuery setTermsTypeBetween(ArrayList value) { this.TermsTypeBetween = value; return this; } public ArrayList getTermsTypeIn() { return TermsTypeIn; } public CR_MainQuery setTermsTypeIn(ArrayList value) { this.TermsTypeIn = value; return this; } public String getAustPostDPID() { return AustPostDPID; } public CR_MainQuery setAustPostDPID(String value) { this.AustPostDPID = value; return this; } public String getAustPostDPIDStartsWith() { return AustPostDPIDStartsWith; } public CR_MainQuery setAustPostDPIDStartsWith(String value) { this.AustPostDPIDStartsWith = value; return this; } public String getAustPostDPIDEndsWith() { return AustPostDPIDEndsWith; } public CR_MainQuery setAustPostDPIDEndsWith(String value) { this.AustPostDPIDEndsWith = value; return this; } public String getAustPostDPIDContains() { return AustPostDPIDContains; } public CR_MainQuery setAustPostDPIDContains(String value) { this.AustPostDPIDContains = value; return this; } public String getAustPostDPIDLike() { return AustPostDPIDLike; } public CR_MainQuery setAustPostDPIDLike(String value) { this.AustPostDPIDLike = value; return this; } public ArrayList getAustPostDPIDBetween() { return AustPostDPIDBetween; } public CR_MainQuery setAustPostDPIDBetween(ArrayList value) { this.AustPostDPIDBetween = value; return this; } public ArrayList getAustPostDPIDIn() { return AustPostDPIDIn; } public CR_MainQuery setAustPostDPIDIn(ArrayList value) { this.AustPostDPIDIn = value; return this; } public String getAustPostBCSP() { return AustPostBCSP; } public CR_MainQuery setAustPostBCSP(String value) { this.AustPostBCSP = value; return this; } public String getAustPostBCSPStartsWith() { return AustPostBCSPStartsWith; } public CR_MainQuery setAustPostBCSPStartsWith(String value) { this.AustPostBCSPStartsWith = value; return this; } public String getAustPostBCSPEndsWith() { return AustPostBCSPEndsWith; } public CR_MainQuery setAustPostBCSPEndsWith(String value) { this.AustPostBCSPEndsWith = value; return this; } public String getAustPostBCSPContains() { return AustPostBCSPContains; } public CR_MainQuery setAustPostBCSPContains(String value) { this.AustPostBCSPContains = value; return this; } public String getAustPostBCSPLike() { return AustPostBCSPLike; } public CR_MainQuery setAustPostBCSPLike(String value) { this.AustPostBCSPLike = value; return this; } public ArrayList getAustPostBCSPBetween() { return AustPostBCSPBetween; } public CR_MainQuery setAustPostBCSPBetween(ArrayList value) { this.AustPostBCSPBetween = value; return this; } public ArrayList getAustPostBCSPIn() { return AustPostBCSPIn; } public CR_MainQuery setAustPostBCSPIn(ArrayList value) { this.AustPostBCSPIn = value; return this; } public BigDecimal getMinPOValue() { return MinPOValue; } public CR_MainQuery setMinPOValue(BigDecimal value) { this.MinPOValue = value; return this; } public BigDecimal getMinPOValueGreaterThanOrEqualTo() { return MinPOValueGreaterThanOrEqualTo; } public CR_MainQuery setMinPOValueGreaterThanOrEqualTo(BigDecimal value) { this.MinPOValueGreaterThanOrEqualTo = value; return this; } public BigDecimal getMinPOValueGreaterThan() { return MinPOValueGreaterThan; } public CR_MainQuery setMinPOValueGreaterThan(BigDecimal value) { this.MinPOValueGreaterThan = value; return this; } public BigDecimal getMinPOValueLessThan() { return MinPOValueLessThan; } public CR_MainQuery setMinPOValueLessThan(BigDecimal value) { this.MinPOValueLessThan = value; return this; } public BigDecimal getMinPOValueLessThanOrEqualTo() { return MinPOValueLessThanOrEqualTo; } public CR_MainQuery setMinPOValueLessThanOrEqualTo(BigDecimal value) { this.MinPOValueLessThanOrEqualTo = value; return this; } public BigDecimal getMinPOValueNotEqualTo() { return MinPOValueNotEqualTo; } public CR_MainQuery setMinPOValueNotEqualTo(BigDecimal value) { this.MinPOValueNotEqualTo = value; return this; } public ArrayList getMinPOValueBetween() { return MinPOValueBetween; } public CR_MainQuery setMinPOValueBetween(ArrayList value) { this.MinPOValueBetween = value; return this; } public ArrayList getMinPOValueIn() { return MinPOValueIn; } public CR_MainQuery setMinPOValueIn(ArrayList value) { this.MinPOValueIn = value; return this; } public BigDecimal getMaxPOValue() { return MaxPOValue; } public CR_MainQuery setMaxPOValue(BigDecimal value) { this.MaxPOValue = value; return this; } public BigDecimal getMaxPOValueGreaterThanOrEqualTo() { return MaxPOValueGreaterThanOrEqualTo; } public CR_MainQuery setMaxPOValueGreaterThanOrEqualTo(BigDecimal value) { this.MaxPOValueGreaterThanOrEqualTo = value; return this; } public BigDecimal getMaxPOValueGreaterThan() { return MaxPOValueGreaterThan; } public CR_MainQuery setMaxPOValueGreaterThan(BigDecimal value) { this.MaxPOValueGreaterThan = value; return this; } public BigDecimal getMaxPOValueLessThan() { return MaxPOValueLessThan; } public CR_MainQuery setMaxPOValueLessThan(BigDecimal value) { this.MaxPOValueLessThan = value; return this; } public BigDecimal getMaxPOValueLessThanOrEqualTo() { return MaxPOValueLessThanOrEqualTo; } public CR_MainQuery setMaxPOValueLessThanOrEqualTo(BigDecimal value) { this.MaxPOValueLessThanOrEqualTo = value; return this; } public BigDecimal getMaxPOValueNotEqualTo() { return MaxPOValueNotEqualTo; } public CR_MainQuery setMaxPOValueNotEqualTo(BigDecimal value) { this.MaxPOValueNotEqualTo = value; return this; } public ArrayList getMaxPOValueBetween() { return MaxPOValueBetween; } public CR_MainQuery setMaxPOValueBetween(ArrayList value) { this.MaxPOValueBetween = value; return this; } public ArrayList getMaxPOValueIn() { return MaxPOValueIn; } public CR_MainQuery setMaxPOValueIn(ArrayList value) { this.MaxPOValueIn = value; return this; } public Short getPeriodType() { return PeriodType; } public CR_MainQuery setPeriodType(Short value) { this.PeriodType = value; return this; } public Short getPeriodTypeGreaterThanOrEqualTo() { return PeriodTypeGreaterThanOrEqualTo; } public CR_MainQuery setPeriodTypeGreaterThanOrEqualTo(Short value) { this.PeriodTypeGreaterThanOrEqualTo = value; return this; } public Short getPeriodTypeGreaterThan() { return PeriodTypeGreaterThan; } public CR_MainQuery setPeriodTypeGreaterThan(Short value) { this.PeriodTypeGreaterThan = value; return this; } public Short getPeriodTypeLessThan() { return PeriodTypeLessThan; } public CR_MainQuery setPeriodTypeLessThan(Short value) { this.PeriodTypeLessThan = value; return this; } public Short getPeriodTypeLessThanOrEqualTo() { return PeriodTypeLessThanOrEqualTo; } public CR_MainQuery setPeriodTypeLessThanOrEqualTo(Short value) { this.PeriodTypeLessThanOrEqualTo = value; return this; } public Short getPeriodTypeNotEqualTo() { return PeriodTypeNotEqualTo; } public CR_MainQuery setPeriodTypeNotEqualTo(Short value) { this.PeriodTypeNotEqualTo = value; return this; } public ArrayList getPeriodTypeBetween() { return PeriodTypeBetween; } public CR_MainQuery setPeriodTypeBetween(ArrayList value) { this.PeriodTypeBetween = value; return this; } public ArrayList getPeriodTypeIn() { return PeriodTypeIn; } public CR_MainQuery setPeriodTypeIn(ArrayList value) { this.PeriodTypeIn = value; return this; } public String getTradingName() { return TradingName; } public CR_MainQuery setTradingName(String value) { this.TradingName = value; return this; } public String getTradingNameStartsWith() { return TradingNameStartsWith; } public CR_MainQuery setTradingNameStartsWith(String value) { this.TradingNameStartsWith = value; return this; } public String getTradingNameEndsWith() { return TradingNameEndsWith; } public CR_MainQuery setTradingNameEndsWith(String value) { this.TradingNameEndsWith = value; return this; } public String getTradingNameContains() { return TradingNameContains; } public CR_MainQuery setTradingNameContains(String value) { this.TradingNameContains = value; return this; } public String getTradingNameLike() { return TradingNameLike; } public CR_MainQuery setTradingNameLike(String value) { this.TradingNameLike = value; return this; } public ArrayList getTradingNameBetween() { return TradingNameBetween; } public CR_MainQuery setTradingNameBetween(ArrayList value) { this.TradingNameBetween = value; return this; } public ArrayList getTradingNameIn() { return TradingNameIn; } public CR_MainQuery setTradingNameIn(ArrayList value) { this.TradingNameIn = value; return this; } public String getCompanyName() { return CompanyName; } public CR_MainQuery setCompanyName(String value) { this.CompanyName = value; return this; } public String getCompanyNameStartsWith() { return CompanyNameStartsWith; } public CR_MainQuery setCompanyNameStartsWith(String value) { this.CompanyNameStartsWith = value; return this; } public String getCompanyNameEndsWith() { return CompanyNameEndsWith; } public CR_MainQuery setCompanyNameEndsWith(String value) { this.CompanyNameEndsWith = value; return this; } public String getCompanyNameContains() { return CompanyNameContains; } public CR_MainQuery setCompanyNameContains(String value) { this.CompanyNameContains = value; return this; } public String getCompanyNameLike() { return CompanyNameLike; } public CR_MainQuery setCompanyNameLike(String value) { this.CompanyNameLike = value; return this; } public ArrayList getCompanyNameBetween() { return CompanyNameBetween; } public CR_MainQuery setCompanyNameBetween(ArrayList value) { this.CompanyNameBetween = value; return this; } public ArrayList getCompanyNameIn() { return CompanyNameIn; } public CR_MainQuery setCompanyNameIn(ArrayList value) { this.CompanyNameIn = value; return this; } public String getProprietorName() { return ProprietorName; } public CR_MainQuery setProprietorName(String value) { this.ProprietorName = value; return this; } public String getProprietorNameStartsWith() { return ProprietorNameStartsWith; } public CR_MainQuery setProprietorNameStartsWith(String value) { this.ProprietorNameStartsWith = value; return this; } public String getProprietorNameEndsWith() { return ProprietorNameEndsWith; } public CR_MainQuery setProprietorNameEndsWith(String value) { this.ProprietorNameEndsWith = value; return this; } public String getProprietorNameContains() { return ProprietorNameContains; } public CR_MainQuery setProprietorNameContains(String value) { this.ProprietorNameContains = value; return this; } public String getProprietorNameLike() { return ProprietorNameLike; } public CR_MainQuery setProprietorNameLike(String value) { this.ProprietorNameLike = value; return this; } public ArrayList getProprietorNameBetween() { return ProprietorNameBetween; } public CR_MainQuery setProprietorNameBetween(ArrayList value) { this.ProprietorNameBetween = value; return this; } public ArrayList getProprietorNameIn() { return ProprietorNameIn; } public CR_MainQuery setProprietorNameIn(ArrayList value) { this.ProprietorNameIn = value; return this; } public BigDecimal getFxCurrentBalance() { return FXCurrentBalance; } public CR_MainQuery setFxCurrentBalance(BigDecimal value) { this.FXCurrentBalance = value; return this; } public BigDecimal getFxCurrentBalanceGreaterThanOrEqualTo() { return FXCurrentBalanceGreaterThanOrEqualTo; } public CR_MainQuery setFxCurrentBalanceGreaterThanOrEqualTo(BigDecimal value) { this.FXCurrentBalanceGreaterThanOrEqualTo = value; return this; } public BigDecimal getFxCurrentBalanceGreaterThan() { return FXCurrentBalanceGreaterThan; } public CR_MainQuery setFxCurrentBalanceGreaterThan(BigDecimal value) { this.FXCurrentBalanceGreaterThan = value; return this; } public BigDecimal getFxCurrentBalanceLessThan() { return FXCurrentBalanceLessThan; } public CR_MainQuery setFxCurrentBalanceLessThan(BigDecimal value) { this.FXCurrentBalanceLessThan = value; return this; } public BigDecimal getFxCurrentBalanceLessThanOrEqualTo() { return FXCurrentBalanceLessThanOrEqualTo; } public CR_MainQuery setFxCurrentBalanceLessThanOrEqualTo(BigDecimal value) { this.FXCurrentBalanceLessThanOrEqualTo = value; return this; } public BigDecimal getFxCurrentBalanceNotEqualTo() { return FXCurrentBalanceNotEqualTo; } public CR_MainQuery setFxCurrentBalanceNotEqualTo(BigDecimal value) { this.FXCurrentBalanceNotEqualTo = value; return this; } public ArrayList getFxCurrentBalanceBetween() { return FXCurrentBalanceBetween; } public CR_MainQuery setFxCurrentBalanceBetween(ArrayList value) { this.FXCurrentBalanceBetween = value; return this; } public ArrayList getFxCurrentBalanceIn() { return FXCurrentBalanceIn; } public CR_MainQuery setFxCurrentBalanceIn(ArrayList value) { this.FXCurrentBalanceIn = value; return this; } public BigDecimal getFxPeriod1() { return FXPeriod1; } public CR_MainQuery setFxPeriod1(BigDecimal value) { this.FXPeriod1 = value; return this; } public BigDecimal getFxPeriod1GreaterThanOrEqualTo() { return FXPeriod1GreaterThanOrEqualTo; } public CR_MainQuery setFxPeriod1GreaterThanOrEqualTo(BigDecimal value) { this.FXPeriod1GreaterThanOrEqualTo = value; return this; } public BigDecimal getFxPeriod1GreaterThan() { return FXPeriod1GreaterThan; } public CR_MainQuery setFxPeriod1GreaterThan(BigDecimal value) { this.FXPeriod1GreaterThan = value; return this; } public BigDecimal getFxPeriod1LessThan() { return FXPeriod1LessThan; } public CR_MainQuery setFxPeriod1LessThan(BigDecimal value) { this.FXPeriod1LessThan = value; return this; } public BigDecimal getFxPeriod1LessThanOrEqualTo() { return FXPeriod1LessThanOrEqualTo; } public CR_MainQuery setFxPeriod1LessThanOrEqualTo(BigDecimal value) { this.FXPeriod1LessThanOrEqualTo = value; return this; } public BigDecimal getFxPeriod1NotEqualTo() { return FXPeriod1NotEqualTo; } public CR_MainQuery setFxPeriod1NotEqualTo(BigDecimal value) { this.FXPeriod1NotEqualTo = value; return this; } public ArrayList getFxPeriod1Between() { return FXPeriod1Between; } public CR_MainQuery setFxPeriod1Between(ArrayList value) { this.FXPeriod1Between = value; return this; } public ArrayList getFxPeriod1In() { return FXPeriod1In; } public CR_MainQuery setFxPeriod1In(ArrayList value) { this.FXPeriod1In = value; return this; } public BigDecimal getFxPeriod2() { return FXPeriod2; } public CR_MainQuery setFxPeriod2(BigDecimal value) { this.FXPeriod2 = value; return this; } public BigDecimal getFxPeriod2GreaterThanOrEqualTo() { return FXPeriod2GreaterThanOrEqualTo; } public CR_MainQuery setFxPeriod2GreaterThanOrEqualTo(BigDecimal value) { this.FXPeriod2GreaterThanOrEqualTo = value; return this; } public BigDecimal getFxPeriod2GreaterThan() { return FXPeriod2GreaterThan; } public CR_MainQuery setFxPeriod2GreaterThan(BigDecimal value) { this.FXPeriod2GreaterThan = value; return this; } public BigDecimal getFxPeriod2LessThan() { return FXPeriod2LessThan; } public CR_MainQuery setFxPeriod2LessThan(BigDecimal value) { this.FXPeriod2LessThan = value; return this; } public BigDecimal getFxPeriod2LessThanOrEqualTo() { return FXPeriod2LessThanOrEqualTo; } public CR_MainQuery setFxPeriod2LessThanOrEqualTo(BigDecimal value) { this.FXPeriod2LessThanOrEqualTo = value; return this; } public BigDecimal getFxPeriod2NotEqualTo() { return FXPeriod2NotEqualTo; } public CR_MainQuery setFxPeriod2NotEqualTo(BigDecimal value) { this.FXPeriod2NotEqualTo = value; return this; } public ArrayList getFxPeriod2Between() { return FXPeriod2Between; } public CR_MainQuery setFxPeriod2Between(ArrayList value) { this.FXPeriod2Between = value; return this; } public ArrayList getFxPeriod2In() { return FXPeriod2In; } public CR_MainQuery setFxPeriod2In(ArrayList value) { this.FXPeriod2In = value; return this; } public BigDecimal getFxPeriod3() { return FXPeriod3; } public CR_MainQuery setFxPeriod3(BigDecimal value) { this.FXPeriod3 = value; return this; } public BigDecimal getFxPeriod3GreaterThanOrEqualTo() { return FXPeriod3GreaterThanOrEqualTo; } public CR_MainQuery setFxPeriod3GreaterThanOrEqualTo(BigDecimal value) { this.FXPeriod3GreaterThanOrEqualTo = value; return this; } public BigDecimal getFxPeriod3GreaterThan() { return FXPeriod3GreaterThan; } public CR_MainQuery setFxPeriod3GreaterThan(BigDecimal value) { this.FXPeriod3GreaterThan = value; return this; } public BigDecimal getFxPeriod3LessThan() { return FXPeriod3LessThan; } public CR_MainQuery setFxPeriod3LessThan(BigDecimal value) { this.FXPeriod3LessThan = value; return this; } public BigDecimal getFxPeriod3LessThanOrEqualTo() { return FXPeriod3LessThanOrEqualTo; } public CR_MainQuery setFxPeriod3LessThanOrEqualTo(BigDecimal value) { this.FXPeriod3LessThanOrEqualTo = value; return this; } public BigDecimal getFxPeriod3NotEqualTo() { return FXPeriod3NotEqualTo; } public CR_MainQuery setFxPeriod3NotEqualTo(BigDecimal value) { this.FXPeriod3NotEqualTo = value; return this; } public ArrayList getFxPeriod3Between() { return FXPeriod3Between; } public CR_MainQuery setFxPeriod3Between(ArrayList value) { this.FXPeriod3Between = value; return this; } public ArrayList getFxPeriod3In() { return FXPeriod3In; } public CR_MainQuery setFxPeriod3In(ArrayList value) { this.FXPeriod3In = value; return this; } public BigDecimal getFxPeriod4() { return FXPeriod4; } public CR_MainQuery setFxPeriod4(BigDecimal value) { this.FXPeriod4 = value; return this; } public BigDecimal getFxPeriod4GreaterThanOrEqualTo() { return FXPeriod4GreaterThanOrEqualTo; } public CR_MainQuery setFxPeriod4GreaterThanOrEqualTo(BigDecimal value) { this.FXPeriod4GreaterThanOrEqualTo = value; return this; } public BigDecimal getFxPeriod4GreaterThan() { return FXPeriod4GreaterThan; } public CR_MainQuery setFxPeriod4GreaterThan(BigDecimal value) { this.FXPeriod4GreaterThan = value; return this; } public BigDecimal getFxPeriod4LessThan() { return FXPeriod4LessThan; } public CR_MainQuery setFxPeriod4LessThan(BigDecimal value) { this.FXPeriod4LessThan = value; return this; } public BigDecimal getFxPeriod4LessThanOrEqualTo() { return FXPeriod4LessThanOrEqualTo; } public CR_MainQuery setFxPeriod4LessThanOrEqualTo(BigDecimal value) { this.FXPeriod4LessThanOrEqualTo = value; return this; } public BigDecimal getFxPeriod4NotEqualTo() { return FXPeriod4NotEqualTo; } public CR_MainQuery setFxPeriod4NotEqualTo(BigDecimal value) { this.FXPeriod4NotEqualTo = value; return this; } public ArrayList getFxPeriod4Between() { return FXPeriod4Between; } public CR_MainQuery setFxPeriod4Between(ArrayList value) { this.FXPeriod4Between = value; return this; } public ArrayList getFxPeriod4In() { return FXPeriod4In; } public CR_MainQuery setFxPeriod4In(ArrayList value) { this.FXPeriod4In = value; return this; } public Short getTradingStatus() { return TradingStatus; } public CR_MainQuery setTradingStatus(Short value) { this.TradingStatus = value; return this; } public Short getTradingStatusGreaterThanOrEqualTo() { return TradingStatusGreaterThanOrEqualTo; } public CR_MainQuery setTradingStatusGreaterThanOrEqualTo(Short value) { this.TradingStatusGreaterThanOrEqualTo = value; return this; } public Short getTradingStatusGreaterThan() { return TradingStatusGreaterThan; } public CR_MainQuery setTradingStatusGreaterThan(Short value) { this.TradingStatusGreaterThan = value; return this; } public Short getTradingStatusLessThan() { return TradingStatusLessThan; } public CR_MainQuery setTradingStatusLessThan(Short value) { this.TradingStatusLessThan = value; return this; } public Short getTradingStatusLessThanOrEqualTo() { return TradingStatusLessThanOrEqualTo; } public CR_MainQuery setTradingStatusLessThanOrEqualTo(Short value) { this.TradingStatusLessThanOrEqualTo = value; return this; } public Short getTradingStatusNotEqualTo() { return TradingStatusNotEqualTo; } public CR_MainQuery setTradingStatusNotEqualTo(Short value) { this.TradingStatusNotEqualTo = value; return this; } public ArrayList getTradingStatusBetween() { return TradingStatusBetween; } public CR_MainQuery setTradingStatusBetween(ArrayList value) { this.TradingStatusBetween = value; return this; } public ArrayList getTradingStatusIn() { return TradingStatusIn; } public CR_MainQuery setTradingStatusIn(ArrayList value) { this.TradingStatusIn = value; return this; } public String getLedgerIDCreditorControl() { return LedgerIDCreditorControl; } public CR_MainQuery setLedgerIDCreditorControl(String value) { this.LedgerIDCreditorControl = value; return this; } public String getLedgerIDCreditorControlStartsWith() { return LedgerIDCreditorControlStartsWith; } public CR_MainQuery setLedgerIDCreditorControlStartsWith(String value) { this.LedgerIDCreditorControlStartsWith = value; return this; } public String getLedgerIDCreditorControlEndsWith() { return LedgerIDCreditorControlEndsWith; } public CR_MainQuery setLedgerIDCreditorControlEndsWith(String value) { this.LedgerIDCreditorControlEndsWith = value; return this; } public String getLedgerIDCreditorControlContains() { return LedgerIDCreditorControlContains; } public CR_MainQuery setLedgerIDCreditorControlContains(String value) { this.LedgerIDCreditorControlContains = value; return this; } public String getLedgerIDCreditorControlLike() { return LedgerIDCreditorControlLike; } public CR_MainQuery setLedgerIDCreditorControlLike(String value) { this.LedgerIDCreditorControlLike = value; return this; } public ArrayList getLedgerIDCreditorControlBetween() { return LedgerIDCreditorControlBetween; } public CR_MainQuery setLedgerIDCreditorControlBetween(ArrayList value) { this.LedgerIDCreditorControlBetween = value; return this; } public ArrayList getLedgerIDCreditorControlIn() { return LedgerIDCreditorControlIn; } public CR_MainQuery setLedgerIDCreditorControlIn(ArrayList value) { this.LedgerIDCreditorControlIn = value; return this; } public String getLedgerIDCreditorPurchases() { return LedgerIDCreditorPurchases; } public CR_MainQuery setLedgerIDCreditorPurchases(String value) { this.LedgerIDCreditorPurchases = value; return this; } public String getLedgerIDCreditorPurchasesStartsWith() { return LedgerIDCreditorPurchasesStartsWith; } public CR_MainQuery setLedgerIDCreditorPurchasesStartsWith(String value) { this.LedgerIDCreditorPurchasesStartsWith = value; return this; } public String getLedgerIDCreditorPurchasesEndsWith() { return LedgerIDCreditorPurchasesEndsWith; } public CR_MainQuery setLedgerIDCreditorPurchasesEndsWith(String value) { this.LedgerIDCreditorPurchasesEndsWith = value; return this; } public String getLedgerIDCreditorPurchasesContains() { return LedgerIDCreditorPurchasesContains; } public CR_MainQuery setLedgerIDCreditorPurchasesContains(String value) { this.LedgerIDCreditorPurchasesContains = value; return this; } public String getLedgerIDCreditorPurchasesLike() { return LedgerIDCreditorPurchasesLike; } public CR_MainQuery setLedgerIDCreditorPurchasesLike(String value) { this.LedgerIDCreditorPurchasesLike = value; return this; } public ArrayList getLedgerIDCreditorPurchasesBetween() { return LedgerIDCreditorPurchasesBetween; } public CR_MainQuery setLedgerIDCreditorPurchasesBetween(ArrayList value) { this.LedgerIDCreditorPurchasesBetween = value; return this; } public ArrayList getLedgerIDCreditorPurchasesIn() { return LedgerIDCreditorPurchasesIn; } public CR_MainQuery setLedgerIDCreditorPurchasesIn(ArrayList value) { this.LedgerIDCreditorPurchasesIn = value; return this; } public String getLedgerIDCreditorDiscounts() { return LedgerIDCreditorDiscounts; } public CR_MainQuery setLedgerIDCreditorDiscounts(String value) { this.LedgerIDCreditorDiscounts = value; return this; } public String getLedgerIDCreditorDiscountsStartsWith() { return LedgerIDCreditorDiscountsStartsWith; } public CR_MainQuery setLedgerIDCreditorDiscountsStartsWith(String value) { this.LedgerIDCreditorDiscountsStartsWith = value; return this; } public String getLedgerIDCreditorDiscountsEndsWith() { return LedgerIDCreditorDiscountsEndsWith; } public CR_MainQuery setLedgerIDCreditorDiscountsEndsWith(String value) { this.LedgerIDCreditorDiscountsEndsWith = value; return this; } public String getLedgerIDCreditorDiscountsContains() { return LedgerIDCreditorDiscountsContains; } public CR_MainQuery setLedgerIDCreditorDiscountsContains(String value) { this.LedgerIDCreditorDiscountsContains = value; return this; } public String getLedgerIDCreditorDiscountsLike() { return LedgerIDCreditorDiscountsLike; } public CR_MainQuery setLedgerIDCreditorDiscountsLike(String value) { this.LedgerIDCreditorDiscountsLike = value; return this; } public ArrayList getLedgerIDCreditorDiscountsBetween() { return LedgerIDCreditorDiscountsBetween; } public CR_MainQuery setLedgerIDCreditorDiscountsBetween(ArrayList value) { this.LedgerIDCreditorDiscountsBetween = value; return this; } public ArrayList getLedgerIDCreditorDiscountsIn() { return LedgerIDCreditorDiscountsIn; } public CR_MainQuery setLedgerIDCreditorDiscountsIn(ArrayList value) { this.LedgerIDCreditorDiscountsIn = value; return this; } public String getLedgerIDCreditorSourcedPayments() { return LedgerIDCreditorSourcedPayments; } public CR_MainQuery setLedgerIDCreditorSourcedPayments(String value) { this.LedgerIDCreditorSourcedPayments = value; return this; } public String getLedgerIDCreditorSourcedPaymentsStartsWith() { return LedgerIDCreditorSourcedPaymentsStartsWith; } public CR_MainQuery setLedgerIDCreditorSourcedPaymentsStartsWith(String value) { this.LedgerIDCreditorSourcedPaymentsStartsWith = value; return this; } public String getLedgerIDCreditorSourcedPaymentsEndsWith() { return LedgerIDCreditorSourcedPaymentsEndsWith; } public CR_MainQuery setLedgerIDCreditorSourcedPaymentsEndsWith(String value) { this.LedgerIDCreditorSourcedPaymentsEndsWith = value; return this; } public String getLedgerIDCreditorSourcedPaymentsContains() { return LedgerIDCreditorSourcedPaymentsContains; } public CR_MainQuery setLedgerIDCreditorSourcedPaymentsContains(String value) { this.LedgerIDCreditorSourcedPaymentsContains = value; return this; } public String getLedgerIDCreditorSourcedPaymentsLike() { return LedgerIDCreditorSourcedPaymentsLike; } public CR_MainQuery setLedgerIDCreditorSourcedPaymentsLike(String value) { this.LedgerIDCreditorSourcedPaymentsLike = value; return this; } public ArrayList getLedgerIDCreditorSourcedPaymentsBetween() { return LedgerIDCreditorSourcedPaymentsBetween; } public CR_MainQuery setLedgerIDCreditorSourcedPaymentsBetween(ArrayList value) { this.LedgerIDCreditorSourcedPaymentsBetween = value; return this; } public ArrayList getLedgerIDCreditorSourcedPaymentsIn() { return LedgerIDCreditorSourcedPaymentsIn; } public CR_MainQuery setLedgerIDCreditorSourcedPaymentsIn(ArrayList value) { this.LedgerIDCreditorSourcedPaymentsIn = value; return this; } public String getLedgerIDCreditorSourcedDebitAdjustment() { return LedgerIDCreditorSourcedDebitAdjustment; } public CR_MainQuery setLedgerIDCreditorSourcedDebitAdjustment(String value) { this.LedgerIDCreditorSourcedDebitAdjustment = value; return this; } public String getLedgerIDCreditorSourcedDebitAdjustmentStartsWith() { return LedgerIDCreditorSourcedDebitAdjustmentStartsWith; } public CR_MainQuery setLedgerIDCreditorSourcedDebitAdjustmentStartsWith(String value) { this.LedgerIDCreditorSourcedDebitAdjustmentStartsWith = value; return this; } public String getLedgerIDCreditorSourcedDebitAdjustmentEndsWith() { return LedgerIDCreditorSourcedDebitAdjustmentEndsWith; } public CR_MainQuery setLedgerIDCreditorSourcedDebitAdjustmentEndsWith(String value) { this.LedgerIDCreditorSourcedDebitAdjustmentEndsWith = value; return this; } public String getLedgerIDCreditorSourcedDebitAdjustmentContains() { return LedgerIDCreditorSourcedDebitAdjustmentContains; } public CR_MainQuery setLedgerIDCreditorSourcedDebitAdjustmentContains(String value) { this.LedgerIDCreditorSourcedDebitAdjustmentContains = value; return this; } public String getLedgerIDCreditorSourcedDebitAdjustmentLike() { return LedgerIDCreditorSourcedDebitAdjustmentLike; } public CR_MainQuery setLedgerIDCreditorSourcedDebitAdjustmentLike(String value) { this.LedgerIDCreditorSourcedDebitAdjustmentLike = value; return this; } public ArrayList getLedgerIDCreditorSourcedDebitAdjustmentBetween() { return LedgerIDCreditorSourcedDebitAdjustmentBetween; } public CR_MainQuery setLedgerIDCreditorSourcedDebitAdjustmentBetween(ArrayList value) { this.LedgerIDCreditorSourcedDebitAdjustmentBetween = value; return this; } public ArrayList getLedgerIDCreditorSourcedDebitAdjustmentIn() { return LedgerIDCreditorSourcedDebitAdjustmentIn; } public CR_MainQuery setLedgerIDCreditorSourcedDebitAdjustmentIn(ArrayList value) { this.LedgerIDCreditorSourcedDebitAdjustmentIn = value; return this; } public String getLedgerIDCreditorSourcedPurchase() { return LedgerIDCreditorSourcedPurchase; } public CR_MainQuery setLedgerIDCreditorSourcedPurchase(String value) { this.LedgerIDCreditorSourcedPurchase = value; return this; } public String getLedgerIDCreditorSourcedPurchaseStartsWith() { return LedgerIDCreditorSourcedPurchaseStartsWith; } public CR_MainQuery setLedgerIDCreditorSourcedPurchaseStartsWith(String value) { this.LedgerIDCreditorSourcedPurchaseStartsWith = value; return this; } public String getLedgerIDCreditorSourcedPurchaseEndsWith() { return LedgerIDCreditorSourcedPurchaseEndsWith; } public CR_MainQuery setLedgerIDCreditorSourcedPurchaseEndsWith(String value) { this.LedgerIDCreditorSourcedPurchaseEndsWith = value; return this; } public String getLedgerIDCreditorSourcedPurchaseContains() { return LedgerIDCreditorSourcedPurchaseContains; } public CR_MainQuery setLedgerIDCreditorSourcedPurchaseContains(String value) { this.LedgerIDCreditorSourcedPurchaseContains = value; return this; } public String getLedgerIDCreditorSourcedPurchaseLike() { return LedgerIDCreditorSourcedPurchaseLike; } public CR_MainQuery setLedgerIDCreditorSourcedPurchaseLike(String value) { this.LedgerIDCreditorSourcedPurchaseLike = value; return this; } public ArrayList getLedgerIDCreditorSourcedPurchaseBetween() { return LedgerIDCreditorSourcedPurchaseBetween; } public CR_MainQuery setLedgerIDCreditorSourcedPurchaseBetween(ArrayList value) { this.LedgerIDCreditorSourcedPurchaseBetween = value; return this; } public ArrayList getLedgerIDCreditorSourcedPurchaseIn() { return LedgerIDCreditorSourcedPurchaseIn; } public CR_MainQuery setLedgerIDCreditorSourcedPurchaseIn(ArrayList value) { this.LedgerIDCreditorSourcedPurchaseIn = value; return this; } public String getLedgerIDCreditorSourcedCreditAdjustment() { return LedgerIDCreditorSourcedCreditAdjustment; } public CR_MainQuery setLedgerIDCreditorSourcedCreditAdjustment(String value) { this.LedgerIDCreditorSourcedCreditAdjustment = value; return this; } public String getLedgerIDCreditorSourcedCreditAdjustmentStartsWith() { return LedgerIDCreditorSourcedCreditAdjustmentStartsWith; } public CR_MainQuery setLedgerIDCreditorSourcedCreditAdjustmentStartsWith(String value) { this.LedgerIDCreditorSourcedCreditAdjustmentStartsWith = value; return this; } public String getLedgerIDCreditorSourcedCreditAdjustmentEndsWith() { return LedgerIDCreditorSourcedCreditAdjustmentEndsWith; } public CR_MainQuery setLedgerIDCreditorSourcedCreditAdjustmentEndsWith(String value) { this.LedgerIDCreditorSourcedCreditAdjustmentEndsWith = value; return this; } public String getLedgerIDCreditorSourcedCreditAdjustmentContains() { return LedgerIDCreditorSourcedCreditAdjustmentContains; } public CR_MainQuery setLedgerIDCreditorSourcedCreditAdjustmentContains(String value) { this.LedgerIDCreditorSourcedCreditAdjustmentContains = value; return this; } public String getLedgerIDCreditorSourcedCreditAdjustmentLike() { return LedgerIDCreditorSourcedCreditAdjustmentLike; } public CR_MainQuery setLedgerIDCreditorSourcedCreditAdjustmentLike(String value) { this.LedgerIDCreditorSourcedCreditAdjustmentLike = value; return this; } public ArrayList getLedgerIDCreditorSourcedCreditAdjustmentBetween() { return LedgerIDCreditorSourcedCreditAdjustmentBetween; } public CR_MainQuery setLedgerIDCreditorSourcedCreditAdjustmentBetween(ArrayList value) { this.LedgerIDCreditorSourcedCreditAdjustmentBetween = value; return this; } public ArrayList getLedgerIDCreditorSourcedCreditAdjustmentIn() { return LedgerIDCreditorSourcedCreditAdjustmentIn; } public CR_MainQuery setLedgerIDCreditorSourcedCreditAdjustmentIn(ArrayList value) { this.LedgerIDCreditorSourcedCreditAdjustmentIn = value; return this; } public String getLedgerIDCreditorFreight() { return LedgerIDCreditorFreight; } public CR_MainQuery setLedgerIDCreditorFreight(String value) { this.LedgerIDCreditorFreight = value; return this; } public String getLedgerIDCreditorFreightStartsWith() { return LedgerIDCreditorFreightStartsWith; } public CR_MainQuery setLedgerIDCreditorFreightStartsWith(String value) { this.LedgerIDCreditorFreightStartsWith = value; return this; } public String getLedgerIDCreditorFreightEndsWith() { return LedgerIDCreditorFreightEndsWith; } public CR_MainQuery setLedgerIDCreditorFreightEndsWith(String value) { this.LedgerIDCreditorFreightEndsWith = value; return this; } public String getLedgerIDCreditorFreightContains() { return LedgerIDCreditorFreightContains; } public CR_MainQuery setLedgerIDCreditorFreightContains(String value) { this.LedgerIDCreditorFreightContains = value; return this; } public String getLedgerIDCreditorFreightLike() { return LedgerIDCreditorFreightLike; } public CR_MainQuery setLedgerIDCreditorFreightLike(String value) { this.LedgerIDCreditorFreightLike = value; return this; } public ArrayList getLedgerIDCreditorFreightBetween() { return LedgerIDCreditorFreightBetween; } public CR_MainQuery setLedgerIDCreditorFreightBetween(ArrayList value) { this.LedgerIDCreditorFreightBetween = value; return this; } public ArrayList getLedgerIDCreditorFreightIn() { return LedgerIDCreditorFreightIn; } public CR_MainQuery setLedgerIDCreditorFreightIn(ArrayList value) { this.LedgerIDCreditorFreightIn = value; return this; } public String getLedgerIDCreditorInsurance() { return LedgerIDCreditorInsurance; } public CR_MainQuery setLedgerIDCreditorInsurance(String value) { this.LedgerIDCreditorInsurance = value; return this; } public String getLedgerIDCreditorInsuranceStartsWith() { return LedgerIDCreditorInsuranceStartsWith; } public CR_MainQuery setLedgerIDCreditorInsuranceStartsWith(String value) { this.LedgerIDCreditorInsuranceStartsWith = value; return this; } public String getLedgerIDCreditorInsuranceEndsWith() { return LedgerIDCreditorInsuranceEndsWith; } public CR_MainQuery setLedgerIDCreditorInsuranceEndsWith(String value) { this.LedgerIDCreditorInsuranceEndsWith = value; return this; } public String getLedgerIDCreditorInsuranceContains() { return LedgerIDCreditorInsuranceContains; } public CR_MainQuery setLedgerIDCreditorInsuranceContains(String value) { this.LedgerIDCreditorInsuranceContains = value; return this; } public String getLedgerIDCreditorInsuranceLike() { return LedgerIDCreditorInsuranceLike; } public CR_MainQuery setLedgerIDCreditorInsuranceLike(String value) { this.LedgerIDCreditorInsuranceLike = value; return this; } public ArrayList getLedgerIDCreditorInsuranceBetween() { return LedgerIDCreditorInsuranceBetween; } public CR_MainQuery setLedgerIDCreditorInsuranceBetween(ArrayList value) { this.LedgerIDCreditorInsuranceBetween = value; return this; } public ArrayList getLedgerIDCreditorInsuranceIn() { return LedgerIDCreditorInsuranceIn; } public CR_MainQuery setLedgerIDCreditorInsuranceIn(ArrayList value) { this.LedgerIDCreditorInsuranceIn = value; return this; } public String getLedgerIDCreditorDuty() { return LedgerIDCreditorDuty; } public CR_MainQuery setLedgerIDCreditorDuty(String value) { this.LedgerIDCreditorDuty = value; return this; } public String getLedgerIDCreditorDutyStartsWith() { return LedgerIDCreditorDutyStartsWith; } public CR_MainQuery setLedgerIDCreditorDutyStartsWith(String value) { this.LedgerIDCreditorDutyStartsWith = value; return this; } public String getLedgerIDCreditorDutyEndsWith() { return LedgerIDCreditorDutyEndsWith; } public CR_MainQuery setLedgerIDCreditorDutyEndsWith(String value) { this.LedgerIDCreditorDutyEndsWith = value; return this; } public String getLedgerIDCreditorDutyContains() { return LedgerIDCreditorDutyContains; } public CR_MainQuery setLedgerIDCreditorDutyContains(String value) { this.LedgerIDCreditorDutyContains = value; return this; } public String getLedgerIDCreditorDutyLike() { return LedgerIDCreditorDutyLike; } public CR_MainQuery setLedgerIDCreditorDutyLike(String value) { this.LedgerIDCreditorDutyLike = value; return this; } public ArrayList getLedgerIDCreditorDutyBetween() { return LedgerIDCreditorDutyBetween; } public CR_MainQuery setLedgerIDCreditorDutyBetween(ArrayList value) { this.LedgerIDCreditorDutyBetween = value; return this; } public ArrayList getLedgerIDCreditorDutyIn() { return LedgerIDCreditorDutyIn; } public CR_MainQuery setLedgerIDCreditorDutyIn(ArrayList value) { this.LedgerIDCreditorDutyIn = value; return this; } public String getLedgerIDCreditorRealisedGainLoss() { return LedgerIDCreditorRealisedGainLoss; } public CR_MainQuery setLedgerIDCreditorRealisedGainLoss(String value) { this.LedgerIDCreditorRealisedGainLoss = value; return this; } public String getLedgerIDCreditorRealisedGainLossStartsWith() { return LedgerIDCreditorRealisedGainLossStartsWith; } public CR_MainQuery setLedgerIDCreditorRealisedGainLossStartsWith(String value) { this.LedgerIDCreditorRealisedGainLossStartsWith = value; return this; } public String getLedgerIDCreditorRealisedGainLossEndsWith() { return LedgerIDCreditorRealisedGainLossEndsWith; } public CR_MainQuery setLedgerIDCreditorRealisedGainLossEndsWith(String value) { this.LedgerIDCreditorRealisedGainLossEndsWith = value; return this; } public String getLedgerIDCreditorRealisedGainLossContains() { return LedgerIDCreditorRealisedGainLossContains; } public CR_MainQuery setLedgerIDCreditorRealisedGainLossContains(String value) { this.LedgerIDCreditorRealisedGainLossContains = value; return this; } public String getLedgerIDCreditorRealisedGainLossLike() { return LedgerIDCreditorRealisedGainLossLike; } public CR_MainQuery setLedgerIDCreditorRealisedGainLossLike(String value) { this.LedgerIDCreditorRealisedGainLossLike = value; return this; } public ArrayList getLedgerIDCreditorRealisedGainLossBetween() { return LedgerIDCreditorRealisedGainLossBetween; } public CR_MainQuery setLedgerIDCreditorRealisedGainLossBetween(ArrayList value) { this.LedgerIDCreditorRealisedGainLossBetween = value; return this; } public ArrayList getLedgerIDCreditorRealisedGainLossIn() { return LedgerIDCreditorRealisedGainLossIn; } public CR_MainQuery setLedgerIDCreditorRealisedGainLossIn(ArrayList value) { this.LedgerIDCreditorRealisedGainLossIn = value; return this; } public String getLedgerIDCreditorUnRealisedGainLoss() { return LedgerIDCreditorUnRealisedGainLoss; } public CR_MainQuery setLedgerIDCreditorUnRealisedGainLoss(String value) { this.LedgerIDCreditorUnRealisedGainLoss = value; return this; } public String getLedgerIDCreditorUnRealisedGainLossStartsWith() { return LedgerIDCreditorUnRealisedGainLossStartsWith; } public CR_MainQuery setLedgerIDCreditorUnRealisedGainLossStartsWith(String value) { this.LedgerIDCreditorUnRealisedGainLossStartsWith = value; return this; } public String getLedgerIDCreditorUnRealisedGainLossEndsWith() { return LedgerIDCreditorUnRealisedGainLossEndsWith; } public CR_MainQuery setLedgerIDCreditorUnRealisedGainLossEndsWith(String value) { this.LedgerIDCreditorUnRealisedGainLossEndsWith = value; return this; } public String getLedgerIDCreditorUnRealisedGainLossContains() { return LedgerIDCreditorUnRealisedGainLossContains; } public CR_MainQuery setLedgerIDCreditorUnRealisedGainLossContains(String value) { this.LedgerIDCreditorUnRealisedGainLossContains = value; return this; } public String getLedgerIDCreditorUnRealisedGainLossLike() { return LedgerIDCreditorUnRealisedGainLossLike; } public CR_MainQuery setLedgerIDCreditorUnRealisedGainLossLike(String value) { this.LedgerIDCreditorUnRealisedGainLossLike = value; return this; } public ArrayList getLedgerIDCreditorUnRealisedGainLossBetween() { return LedgerIDCreditorUnRealisedGainLossBetween; } public CR_MainQuery setLedgerIDCreditorUnRealisedGainLossBetween(ArrayList value) { this.LedgerIDCreditorUnRealisedGainLossBetween = value; return this; } public ArrayList getLedgerIDCreditorUnRealisedGainLossIn() { return LedgerIDCreditorUnRealisedGainLossIn; } public CR_MainQuery setLedgerIDCreditorUnRealisedGainLossIn(ArrayList value) { this.LedgerIDCreditorUnRealisedGainLossIn = value; return this; } public String getPoWorkflowsRecID() { return PO_Workflows_RecID; } public CR_MainQuery setPoWorkflowsRecID(String value) { this.PO_Workflows_RecID = value; return this; } public String getPoWorkflowsRecIDStartsWith() { return PO_Workflows_RecIDStartsWith; } public CR_MainQuery setPoWorkflowsRecIDStartsWith(String value) { this.PO_Workflows_RecIDStartsWith = value; return this; } public String getPoWorkflowsRecIDEndsWith() { return PO_Workflows_RecIDEndsWith; } public CR_MainQuery setPoWorkflowsRecIDEndsWith(String value) { this.PO_Workflows_RecIDEndsWith = value; return this; } public String getPoWorkflowsRecIDContains() { return PO_Workflows_RecIDContains; } public CR_MainQuery setPoWorkflowsRecIDContains(String value) { this.PO_Workflows_RecIDContains = value; return this; } public String getPoWorkflowsRecIDLike() { return PO_Workflows_RecIDLike; } public CR_MainQuery setPoWorkflowsRecIDLike(String value) { this.PO_Workflows_RecIDLike = value; return this; } public ArrayList getPoWorkflowsRecIDBetween() { return PO_Workflows_RecIDBetween; } public CR_MainQuery setPoWorkflowsRecIDBetween(ArrayList value) { this.PO_Workflows_RecIDBetween = value; return this; } public ArrayList getPoWorkflowsRecIDIn() { return PO_Workflows_RecIDIn; } public CR_MainQuery setPoWorkflowsRecIDIn(ArrayList value) { this.PO_Workflows_RecIDIn = value; return this; } public String getCountry() { return Country; } public CR_MainQuery setCountry(String value) { this.Country = value; return this; } public String getCountryStartsWith() { return CountryStartsWith; } public CR_MainQuery setCountryStartsWith(String value) { this.CountryStartsWith = value; return this; } public String getCountryEndsWith() { return CountryEndsWith; } public CR_MainQuery setCountryEndsWith(String value) { this.CountryEndsWith = value; return this; } public String getCountryContains() { return CountryContains; } public CR_MainQuery setCountryContains(String value) { this.CountryContains = value; return this; } public String getCountryLike() { return CountryLike; } public CR_MainQuery setCountryLike(String value) { this.CountryLike = value; return this; } public ArrayList getCountryBetween() { return CountryBetween; } public CR_MainQuery setCountryBetween(ArrayList value) { this.CountryBetween = value; return this; } public ArrayList getCountryIn() { return CountryIn; } public CR_MainQuery setCountryIn(ArrayList value) { this.CountryIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class CR_Main1Query extends QueryDb implements IReturn> { public String CreditorID = null; public String CreditorIDStartsWith = null; public String CreditorIDEndsWith = null; public String CreditorIDContains = null; public String CreditorIDLike = null; public ArrayList CreditorIDBetween = null; public ArrayList CreditorIDIn = null; public Date LastSavedDateTime = null; public Date LastSavedDateTimeGreaterThanOrEqualTo = null; public Date LastSavedDateTimeGreaterThan = null; public Date LastSavedDateTimeLessThan = null; public Date LastSavedDateTimeLessThanOrEqualTo = null; public Date LastSavedDateTimeNotEqualTo = null; public ArrayList LastSavedDateTimeBetween = null; public ArrayList LastSavedDateTimeIn = null; public String AccountNo = null; public String AccountNoStartsWith = null; public String AccountNoEndsWith = null; public String AccountNoContains = null; public String AccountNoLike = null; public ArrayList AccountNoBetween = null; public ArrayList AccountNoIn = null; public String Name = null; public String NameStartsWith = null; public String NameEndsWith = null; public String NameContains = null; public String NameLike = null; public ArrayList NameBetween = null; public ArrayList NameIn = null; public String Address1 = null; public String Address1StartsWith = null; public String Address1EndsWith = null; public String Address1Contains = null; public String Address1Like = null; public ArrayList Address1Between = null; public ArrayList Address1In = null; public String Address2 = null; public String Address2StartsWith = null; public String Address2EndsWith = null; public String Address2Contains = null; public String Address2Like = null; public ArrayList Address2Between = null; public ArrayList Address2In = null; public String Address3 = null; public String Address3StartsWith = null; public String Address3EndsWith = null; public String Address3Contains = null; public String Address3Like = null; public ArrayList Address3Between = null; public ArrayList Address3In = null; public String Address4 = null; public String Address4StartsWith = null; public String Address4EndsWith = null; public String Address4Contains = null; public String Address4Like = null; public ArrayList Address4Between = null; public ArrayList Address4In = null; public String PostCode = null; public String PostCodeStartsWith = null; public String PostCodeEndsWith = null; public String PostCodeContains = null; public String PostCodeLike = null; public ArrayList PostCodeBetween = null; public ArrayList PostCodeIn = null; public String Phone = null; public String PhoneStartsWith = null; public String PhoneEndsWith = null; public String PhoneContains = null; public String PhoneLike = null; public ArrayList PhoneBetween = null; public ArrayList PhoneIn = null; public String Fax = null; public String FaxStartsWith = null; public String FaxEndsWith = null; public String FaxContains = null; public String FaxLike = null; public ArrayList FaxBetween = null; public ArrayList FaxIn = null; public String BankName = null; public String BankNameStartsWith = null; public String BankNameEndsWith = null; public String BankNameContains = null; public String BankNameLike = null; public ArrayList BankNameBetween = null; public ArrayList BankNameIn = null; public String BankAcc = null; public String BankAccStartsWith = null; public String BankAccEndsWith = null; public String BankAccContains = null; public String BankAccLike = null; public ArrayList BankAccBetween = null; public ArrayList BankAccIn = null; public String BSBN = null; public String BSBNStartsWith = null; public String BSBNEndsWith = null; public String BSBNContains = null; public String BSBNLike = null; public ArrayList BSBNBetween = null; public ArrayList BSBNIn = null; public String AccountName = null; public String AccountNameStartsWith = null; public String AccountNameEndsWith = null; public String AccountNameContains = null; public String AccountNameLike = null; public ArrayList AccountNameBetween = null; public ArrayList AccountNameIn = null; public Short DefaultPaymentType = null; public Short DefaultPaymentTypeGreaterThanOrEqualTo = null; public Short DefaultPaymentTypeGreaterThan = null; public Short DefaultPaymentTypeLessThan = null; public Short DefaultPaymentTypeLessThanOrEqualTo = null; public Short DefaultPaymentTypeNotEqualTo = null; public ArrayList DefaultPaymentTypeBetween = null; public ArrayList DefaultPaymentTypeIn = null; public BigDecimal CreditLimit = null; public BigDecimal CreditLimitGreaterThanOrEqualTo = null; public BigDecimal CreditLimitGreaterThan = null; public BigDecimal CreditLimitLessThan = null; public BigDecimal CreditLimitLessThanOrEqualTo = null; public BigDecimal CreditLimitNotEqualTo = null; public ArrayList CreditLimitBetween = null; public ArrayList CreditLimitIn = null; public Short EarlyPayDisOnRemitDays = null; public Short EarlyPayDisOnRemitDaysGreaterThanOrEqualTo = null; public Short EarlyPayDisOnRemitDaysGreaterThan = null; public Short EarlyPayDisOnRemitDaysLessThan = null; public Short EarlyPayDisOnRemitDaysLessThanOrEqualTo = null; public Short EarlyPayDisOnRemitDaysNotEqualTo = null; public ArrayList EarlyPayDisOnRemitDaysBetween = null; public ArrayList EarlyPayDisOnRemitDaysIn = null; public BigDecimal EarlyPayDisOnRemitAmt = null; public BigDecimal EarlyPayDisOnRemitAmtGreaterThanOrEqualTo = null; public BigDecimal EarlyPayDisOnRemitAmtGreaterThan = null; public BigDecimal EarlyPayDisOnRemitAmtLessThan = null; public BigDecimal EarlyPayDisOnRemitAmtLessThanOrEqualTo = null; public BigDecimal EarlyPayDisOnRemitAmtNotEqualTo = null; public ArrayList EarlyPayDisOnRemitAmtBetween = null; public ArrayList EarlyPayDisOnRemitAmtIn = null; public Date LastSaleDate = null; public Date LastSaleDateGreaterThanOrEqualTo = null; public Date LastSaleDateGreaterThan = null; public Date LastSaleDateLessThan = null; public Date LastSaleDateLessThanOrEqualTo = null; public Date LastSaleDateNotEqualTo = null; public ArrayList LastSaleDateBetween = null; public ArrayList LastSaleDateIn = null; public Date LastPaymentDate = null; public Date LastPaymentDateGreaterThanOrEqualTo = null; public Date LastPaymentDateGreaterThan = null; public Date LastPaymentDateLessThan = null; public Date LastPaymentDateLessThanOrEqualTo = null; public Date LastPaymentDateNotEqualTo = null; public ArrayList LastPaymentDateBetween = null; public ArrayList LastPaymentDateIn = null; public String ClassificationID = null; public String ClassificationIDStartsWith = null; public String ClassificationIDEndsWith = null; public String ClassificationIDContains = null; public String ClassificationIDLike = null; public ArrayList ClassificationIDBetween = null; public ArrayList ClassificationIDIn = null; public Boolean AccountOnHold = null; public String EmailAddress = null; public String EmailAddressStartsWith = null; public String EmailAddressEndsWith = null; public String EmailAddressContains = null; public String EmailAddressLike = null; public ArrayList EmailAddressBetween = null; public ArrayList EmailAddressIn = null; public BigDecimal CurrentBalance = null; public BigDecimal CurrentBalanceGreaterThanOrEqualTo = null; public BigDecimal CurrentBalanceGreaterThan = null; public BigDecimal CurrentBalanceLessThan = null; public BigDecimal CurrentBalanceLessThanOrEqualTo = null; public BigDecimal CurrentBalanceNotEqualTo = null; public ArrayList CurrentBalanceBetween = null; public ArrayList CurrentBalanceIn = null; public BigDecimal Period1 = null; public BigDecimal Period1GreaterThanOrEqualTo = null; public BigDecimal Period1GreaterThan = null; public BigDecimal Period1LessThan = null; public BigDecimal Period1LessThanOrEqualTo = null; public BigDecimal Period1NotEqualTo = null; public ArrayList Period1Between = null; public ArrayList Period1In = null; public BigDecimal Period2 = null; public BigDecimal Period2GreaterThanOrEqualTo = null; public BigDecimal Period2GreaterThan = null; public BigDecimal Period2LessThan = null; public BigDecimal Period2LessThanOrEqualTo = null; public BigDecimal Period2NotEqualTo = null; public ArrayList Period2Between = null; public ArrayList Period2In = null; public BigDecimal Period3 = null; public BigDecimal Period3GreaterThanOrEqualTo = null; public BigDecimal Period3GreaterThan = null; public BigDecimal Period3LessThan = null; public BigDecimal Period3LessThanOrEqualTo = null; public BigDecimal Period3NotEqualTo = null; public ArrayList Period3Between = null; public ArrayList Period3In = null; public BigDecimal Period4 = null; public BigDecimal Period4GreaterThanOrEqualTo = null; public BigDecimal Period4GreaterThan = null; public BigDecimal Period4LessThan = null; public BigDecimal Period4LessThanOrEqualTo = null; public BigDecimal Period4NotEqualTo = null; public ArrayList Period4Between = null; public ArrayList Period4In = null; public String AltAccountNo = null; public String AltAccountNoStartsWith = null; public String AltAccountNoEndsWith = null; public String AltAccountNoContains = null; public String AltAccountNoLike = null; public ArrayList AltAccountNoBetween = null; public ArrayList AltAccountNoIn = null; public Date CommenceDate = null; public Date CommenceDateGreaterThanOrEqualTo = null; public Date CommenceDateGreaterThan = null; public Date CommenceDateLessThan = null; public Date CommenceDateLessThanOrEqualTo = null; public Date CommenceDateNotEqualTo = null; public ArrayList CommenceDateBetween = null; public ArrayList CommenceDateIn = null; public Integer ContactType = null; public Integer ContactTypeGreaterThanOrEqualTo = null; public Integer ContactTypeGreaterThan = null; public Integer ContactTypeLessThan = null; public Integer ContactTypeLessThanOrEqualTo = null; public Integer ContactTypeNotEqualTo = null; public ArrayList ContactTypeBetween = null; public ArrayList ContactTypeIn = null; public Short TermsDays = null; public Short TermsDaysGreaterThanOrEqualTo = null; public Short TermsDaysGreaterThan = null; public Short TermsDaysLessThan = null; public Short TermsDaysLessThanOrEqualTo = null; public Short TermsDaysNotEqualTo = null; public ArrayList TermsDaysBetween = null; public ArrayList TermsDaysIn = null; public String ACN = null; public String ACNStartsWith = null; public String ACNEndsWith = null; public String ACNContains = null; public String ACNLike = null; public ArrayList ACNBetween = null; public ArrayList ACNIn = null; public String CurrencyID = null; public String CurrencyIDStartsWith = null; public String CurrencyIDEndsWith = null; public String CurrencyIDContains = null; public String CurrencyIDLike = null; public ArrayList CurrencyIDBetween = null; public ArrayList CurrencyIDIn = null; public Boolean UsesFX = null; public String ABN = null; public String ABNStartsWith = null; public String ABNEndsWith = null; public String ABNContains = null; public String ABNLike = null; public ArrayList ABNBetween = null; public ArrayList ABNIn = null; public Short TermsType = null; public Short TermsTypeGreaterThanOrEqualTo = null; public Short TermsTypeGreaterThan = null; public Short TermsTypeLessThan = null; public Short TermsTypeLessThanOrEqualTo = null; public Short TermsTypeNotEqualTo = null; public ArrayList TermsTypeBetween = null; public ArrayList TermsTypeIn = null; public String AustPostDPID = null; public String AustPostDPIDStartsWith = null; public String AustPostDPIDEndsWith = null; public String AustPostDPIDContains = null; public String AustPostDPIDLike = null; public ArrayList AustPostDPIDBetween = null; public ArrayList AustPostDPIDIn = null; public String AustPostBCSP = null; public String AustPostBCSPStartsWith = null; public String AustPostBCSPEndsWith = null; public String AustPostBCSPContains = null; public String AustPostBCSPLike = null; public ArrayList AustPostBCSPBetween = null; public ArrayList AustPostBCSPIn = null; public BigDecimal MinPOValue = null; public BigDecimal MinPOValueGreaterThanOrEqualTo = null; public BigDecimal MinPOValueGreaterThan = null; public BigDecimal MinPOValueLessThan = null; public BigDecimal MinPOValueLessThanOrEqualTo = null; public BigDecimal MinPOValueNotEqualTo = null; public ArrayList MinPOValueBetween = null; public ArrayList MinPOValueIn = null; public BigDecimal MaxPOValue = null; public BigDecimal MaxPOValueGreaterThanOrEqualTo = null; public BigDecimal MaxPOValueGreaterThan = null; public BigDecimal MaxPOValueLessThan = null; public BigDecimal MaxPOValueLessThanOrEqualTo = null; public BigDecimal MaxPOValueNotEqualTo = null; public ArrayList MaxPOValueBetween = null; public ArrayList MaxPOValueIn = null; public String getCreditorID() { return CreditorID; } public CR_Main1Query setCreditorID(String value) { this.CreditorID = value; return this; } public String getCreditorIDStartsWith() { return CreditorIDStartsWith; } public CR_Main1Query setCreditorIDStartsWith(String value) { this.CreditorIDStartsWith = value; return this; } public String getCreditorIDEndsWith() { return CreditorIDEndsWith; } public CR_Main1Query setCreditorIDEndsWith(String value) { this.CreditorIDEndsWith = value; return this; } public String getCreditorIDContains() { return CreditorIDContains; } public CR_Main1Query setCreditorIDContains(String value) { this.CreditorIDContains = value; return this; } public String getCreditorIDLike() { return CreditorIDLike; } public CR_Main1Query setCreditorIDLike(String value) { this.CreditorIDLike = value; return this; } public ArrayList getCreditorIDBetween() { return CreditorIDBetween; } public CR_Main1Query setCreditorIDBetween(ArrayList value) { this.CreditorIDBetween = value; return this; } public ArrayList getCreditorIDIn() { return CreditorIDIn; } public CR_Main1Query setCreditorIDIn(ArrayList value) { this.CreditorIDIn = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public CR_Main1Query setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getLastSavedDateTimeGreaterThanOrEqualTo() { return LastSavedDateTimeGreaterThanOrEqualTo; } public CR_Main1Query setLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.LastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeGreaterThan() { return LastSavedDateTimeGreaterThan; } public CR_Main1Query setLastSavedDateTimeGreaterThan(Date value) { this.LastSavedDateTimeGreaterThan = value; return this; } public Date getLastSavedDateTimeLessThan() { return LastSavedDateTimeLessThan; } public CR_Main1Query setLastSavedDateTimeLessThan(Date value) { this.LastSavedDateTimeLessThan = value; return this; } public Date getLastSavedDateTimeLessThanOrEqualTo() { return LastSavedDateTimeLessThanOrEqualTo; } public CR_Main1Query setLastSavedDateTimeLessThanOrEqualTo(Date value) { this.LastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeNotEqualTo() { return LastSavedDateTimeNotEqualTo; } public CR_Main1Query setLastSavedDateTimeNotEqualTo(Date value) { this.LastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getLastSavedDateTimeBetween() { return LastSavedDateTimeBetween; } public CR_Main1Query setLastSavedDateTimeBetween(ArrayList value) { this.LastSavedDateTimeBetween = value; return this; } public ArrayList getLastSavedDateTimeIn() { return LastSavedDateTimeIn; } public CR_Main1Query setLastSavedDateTimeIn(ArrayList value) { this.LastSavedDateTimeIn = value; return this; } public String getAccountNo() { return AccountNo; } public CR_Main1Query setAccountNo(String value) { this.AccountNo = value; return this; } public String getAccountNoStartsWith() { return AccountNoStartsWith; } public CR_Main1Query setAccountNoStartsWith(String value) { this.AccountNoStartsWith = value; return this; } public String getAccountNoEndsWith() { return AccountNoEndsWith; } public CR_Main1Query setAccountNoEndsWith(String value) { this.AccountNoEndsWith = value; return this; } public String getAccountNoContains() { return AccountNoContains; } public CR_Main1Query setAccountNoContains(String value) { this.AccountNoContains = value; return this; } public String getAccountNoLike() { return AccountNoLike; } public CR_Main1Query setAccountNoLike(String value) { this.AccountNoLike = value; return this; } public ArrayList getAccountNoBetween() { return AccountNoBetween; } public CR_Main1Query setAccountNoBetween(ArrayList value) { this.AccountNoBetween = value; return this; } public ArrayList getAccountNoIn() { return AccountNoIn; } public CR_Main1Query setAccountNoIn(ArrayList value) { this.AccountNoIn = value; return this; } public String getName() { return Name; } public CR_Main1Query setName(String value) { this.Name = value; return this; } public String getNameStartsWith() { return NameStartsWith; } public CR_Main1Query setNameStartsWith(String value) { this.NameStartsWith = value; return this; } public String getNameEndsWith() { return NameEndsWith; } public CR_Main1Query setNameEndsWith(String value) { this.NameEndsWith = value; return this; } public String getNameContains() { return NameContains; } public CR_Main1Query setNameContains(String value) { this.NameContains = value; return this; } public String getNameLike() { return NameLike; } public CR_Main1Query setNameLike(String value) { this.NameLike = value; return this; } public ArrayList getNameBetween() { return NameBetween; } public CR_Main1Query setNameBetween(ArrayList value) { this.NameBetween = value; return this; } public ArrayList getNameIn() { return NameIn; } public CR_Main1Query setNameIn(ArrayList value) { this.NameIn = value; return this; } public String getAddress1() { return Address1; } public CR_Main1Query setAddress1(String value) { this.Address1 = value; return this; } public String getAddress1StartsWith() { return Address1StartsWith; } public CR_Main1Query setAddress1StartsWith(String value) { this.Address1StartsWith = value; return this; } public String getAddress1EndsWith() { return Address1EndsWith; } public CR_Main1Query setAddress1EndsWith(String value) { this.Address1EndsWith = value; return this; } public String getAddress1Contains() { return Address1Contains; } public CR_Main1Query setAddress1Contains(String value) { this.Address1Contains = value; return this; } public String getAddress1Like() { return Address1Like; } public CR_Main1Query setAddress1Like(String value) { this.Address1Like = value; return this; } public ArrayList getAddress1Between() { return Address1Between; } public CR_Main1Query setAddress1Between(ArrayList value) { this.Address1Between = value; return this; } public ArrayList getAddress1In() { return Address1In; } public CR_Main1Query setAddress1In(ArrayList value) { this.Address1In = value; return this; } public String getAddress2() { return Address2; } public CR_Main1Query setAddress2(String value) { this.Address2 = value; return this; } public String getAddress2StartsWith() { return Address2StartsWith; } public CR_Main1Query setAddress2StartsWith(String value) { this.Address2StartsWith = value; return this; } public String getAddress2EndsWith() { return Address2EndsWith; } public CR_Main1Query setAddress2EndsWith(String value) { this.Address2EndsWith = value; return this; } public String getAddress2Contains() { return Address2Contains; } public CR_Main1Query setAddress2Contains(String value) { this.Address2Contains = value; return this; } public String getAddress2Like() { return Address2Like; } public CR_Main1Query setAddress2Like(String value) { this.Address2Like = value; return this; } public ArrayList getAddress2Between() { return Address2Between; } public CR_Main1Query setAddress2Between(ArrayList value) { this.Address2Between = value; return this; } public ArrayList getAddress2In() { return Address2In; } public CR_Main1Query setAddress2In(ArrayList value) { this.Address2In = value; return this; } public String getAddress3() { return Address3; } public CR_Main1Query setAddress3(String value) { this.Address3 = value; return this; } public String getAddress3StartsWith() { return Address3StartsWith; } public CR_Main1Query setAddress3StartsWith(String value) { this.Address3StartsWith = value; return this; } public String getAddress3EndsWith() { return Address3EndsWith; } public CR_Main1Query setAddress3EndsWith(String value) { this.Address3EndsWith = value; return this; } public String getAddress3Contains() { return Address3Contains; } public CR_Main1Query setAddress3Contains(String value) { this.Address3Contains = value; return this; } public String getAddress3Like() { return Address3Like; } public CR_Main1Query setAddress3Like(String value) { this.Address3Like = value; return this; } public ArrayList getAddress3Between() { return Address3Between; } public CR_Main1Query setAddress3Between(ArrayList value) { this.Address3Between = value; return this; } public ArrayList getAddress3In() { return Address3In; } public CR_Main1Query setAddress3In(ArrayList value) { this.Address3In = value; return this; } public String getAddress4() { return Address4; } public CR_Main1Query setAddress4(String value) { this.Address4 = value; return this; } public String getAddress4StartsWith() { return Address4StartsWith; } public CR_Main1Query setAddress4StartsWith(String value) { this.Address4StartsWith = value; return this; } public String getAddress4EndsWith() { return Address4EndsWith; } public CR_Main1Query setAddress4EndsWith(String value) { this.Address4EndsWith = value; return this; } public String getAddress4Contains() { return Address4Contains; } public CR_Main1Query setAddress4Contains(String value) { this.Address4Contains = value; return this; } public String getAddress4Like() { return Address4Like; } public CR_Main1Query setAddress4Like(String value) { this.Address4Like = value; return this; } public ArrayList getAddress4Between() { return Address4Between; } public CR_Main1Query setAddress4Between(ArrayList value) { this.Address4Between = value; return this; } public ArrayList getAddress4In() { return Address4In; } public CR_Main1Query setAddress4In(ArrayList value) { this.Address4In = value; return this; } public String getPostCode() { return PostCode; } public CR_Main1Query setPostCode(String value) { this.PostCode = value; return this; } public String getPostCodeStartsWith() { return PostCodeStartsWith; } public CR_Main1Query setPostCodeStartsWith(String value) { this.PostCodeStartsWith = value; return this; } public String getPostCodeEndsWith() { return PostCodeEndsWith; } public CR_Main1Query setPostCodeEndsWith(String value) { this.PostCodeEndsWith = value; return this; } public String getPostCodeContains() { return PostCodeContains; } public CR_Main1Query setPostCodeContains(String value) { this.PostCodeContains = value; return this; } public String getPostCodeLike() { return PostCodeLike; } public CR_Main1Query setPostCodeLike(String value) { this.PostCodeLike = value; return this; } public ArrayList getPostCodeBetween() { return PostCodeBetween; } public CR_Main1Query setPostCodeBetween(ArrayList value) { this.PostCodeBetween = value; return this; } public ArrayList getPostCodeIn() { return PostCodeIn; } public CR_Main1Query setPostCodeIn(ArrayList value) { this.PostCodeIn = value; return this; } public String getPhone() { return Phone; } public CR_Main1Query setPhone(String value) { this.Phone = value; return this; } public String getPhoneStartsWith() { return PhoneStartsWith; } public CR_Main1Query setPhoneStartsWith(String value) { this.PhoneStartsWith = value; return this; } public String getPhoneEndsWith() { return PhoneEndsWith; } public CR_Main1Query setPhoneEndsWith(String value) { this.PhoneEndsWith = value; return this; } public String getPhoneContains() { return PhoneContains; } public CR_Main1Query setPhoneContains(String value) { this.PhoneContains = value; return this; } public String getPhoneLike() { return PhoneLike; } public CR_Main1Query setPhoneLike(String value) { this.PhoneLike = value; return this; } public ArrayList getPhoneBetween() { return PhoneBetween; } public CR_Main1Query setPhoneBetween(ArrayList value) { this.PhoneBetween = value; return this; } public ArrayList getPhoneIn() { return PhoneIn; } public CR_Main1Query setPhoneIn(ArrayList value) { this.PhoneIn = value; return this; } public String getFax() { return Fax; } public CR_Main1Query setFax(String value) { this.Fax = value; return this; } public String getFaxStartsWith() { return FaxStartsWith; } public CR_Main1Query setFaxStartsWith(String value) { this.FaxStartsWith = value; return this; } public String getFaxEndsWith() { return FaxEndsWith; } public CR_Main1Query setFaxEndsWith(String value) { this.FaxEndsWith = value; return this; } public String getFaxContains() { return FaxContains; } public CR_Main1Query setFaxContains(String value) { this.FaxContains = value; return this; } public String getFaxLike() { return FaxLike; } public CR_Main1Query setFaxLike(String value) { this.FaxLike = value; return this; } public ArrayList getFaxBetween() { return FaxBetween; } public CR_Main1Query setFaxBetween(ArrayList value) { this.FaxBetween = value; return this; } public ArrayList getFaxIn() { return FaxIn; } public CR_Main1Query setFaxIn(ArrayList value) { this.FaxIn = value; return this; } public String getBankName() { return BankName; } public CR_Main1Query setBankName(String value) { this.BankName = value; return this; } public String getBankNameStartsWith() { return BankNameStartsWith; } public CR_Main1Query setBankNameStartsWith(String value) { this.BankNameStartsWith = value; return this; } public String getBankNameEndsWith() { return BankNameEndsWith; } public CR_Main1Query setBankNameEndsWith(String value) { this.BankNameEndsWith = value; return this; } public String getBankNameContains() { return BankNameContains; } public CR_Main1Query setBankNameContains(String value) { this.BankNameContains = value; return this; } public String getBankNameLike() { return BankNameLike; } public CR_Main1Query setBankNameLike(String value) { this.BankNameLike = value; return this; } public ArrayList getBankNameBetween() { return BankNameBetween; } public CR_Main1Query setBankNameBetween(ArrayList value) { this.BankNameBetween = value; return this; } public ArrayList getBankNameIn() { return BankNameIn; } public CR_Main1Query setBankNameIn(ArrayList value) { this.BankNameIn = value; return this; } public String getBankAcc() { return BankAcc; } public CR_Main1Query setBankAcc(String value) { this.BankAcc = value; return this; } public String getBankAccStartsWith() { return BankAccStartsWith; } public CR_Main1Query setBankAccStartsWith(String value) { this.BankAccStartsWith = value; return this; } public String getBankAccEndsWith() { return BankAccEndsWith; } public CR_Main1Query setBankAccEndsWith(String value) { this.BankAccEndsWith = value; return this; } public String getBankAccContains() { return BankAccContains; } public CR_Main1Query setBankAccContains(String value) { this.BankAccContains = value; return this; } public String getBankAccLike() { return BankAccLike; } public CR_Main1Query setBankAccLike(String value) { this.BankAccLike = value; return this; } public ArrayList getBankAccBetween() { return BankAccBetween; } public CR_Main1Query setBankAccBetween(ArrayList value) { this.BankAccBetween = value; return this; } public ArrayList getBankAccIn() { return BankAccIn; } public CR_Main1Query setBankAccIn(ArrayList value) { this.BankAccIn = value; return this; } public String getBsbn() { return BSBN; } public CR_Main1Query setBsbn(String value) { this.BSBN = value; return this; } public String getBsbnStartsWith() { return BSBNStartsWith; } public CR_Main1Query setBsbnStartsWith(String value) { this.BSBNStartsWith = value; return this; } public String getBsbnEndsWith() { return BSBNEndsWith; } public CR_Main1Query setBsbnEndsWith(String value) { this.BSBNEndsWith = value; return this; } public String getBsbnContains() { return BSBNContains; } public CR_Main1Query setBsbnContains(String value) { this.BSBNContains = value; return this; } public String getBsbnLike() { return BSBNLike; } public CR_Main1Query setBsbnLike(String value) { this.BSBNLike = value; return this; } public ArrayList getBsbnBetween() { return BSBNBetween; } public CR_Main1Query setBsbnBetween(ArrayList value) { this.BSBNBetween = value; return this; } public ArrayList getBsbnIn() { return BSBNIn; } public CR_Main1Query setBsbnIn(ArrayList value) { this.BSBNIn = value; return this; } public String getAccountName() { return AccountName; } public CR_Main1Query setAccountName(String value) { this.AccountName = value; return this; } public String getAccountNameStartsWith() { return AccountNameStartsWith; } public CR_Main1Query setAccountNameStartsWith(String value) { this.AccountNameStartsWith = value; return this; } public String getAccountNameEndsWith() { return AccountNameEndsWith; } public CR_Main1Query setAccountNameEndsWith(String value) { this.AccountNameEndsWith = value; return this; } public String getAccountNameContains() { return AccountNameContains; } public CR_Main1Query setAccountNameContains(String value) { this.AccountNameContains = value; return this; } public String getAccountNameLike() { return AccountNameLike; } public CR_Main1Query setAccountNameLike(String value) { this.AccountNameLike = value; return this; } public ArrayList getAccountNameBetween() { return AccountNameBetween; } public CR_Main1Query setAccountNameBetween(ArrayList value) { this.AccountNameBetween = value; return this; } public ArrayList getAccountNameIn() { return AccountNameIn; } public CR_Main1Query setAccountNameIn(ArrayList value) { this.AccountNameIn = value; return this; } public Short getDefaultPaymentType() { return DefaultPaymentType; } public CR_Main1Query setDefaultPaymentType(Short value) { this.DefaultPaymentType = value; return this; } public Short getDefaultPaymentTypeGreaterThanOrEqualTo() { return DefaultPaymentTypeGreaterThanOrEqualTo; } public CR_Main1Query setDefaultPaymentTypeGreaterThanOrEqualTo(Short value) { this.DefaultPaymentTypeGreaterThanOrEqualTo = value; return this; } public Short getDefaultPaymentTypeGreaterThan() { return DefaultPaymentTypeGreaterThan; } public CR_Main1Query setDefaultPaymentTypeGreaterThan(Short value) { this.DefaultPaymentTypeGreaterThan = value; return this; } public Short getDefaultPaymentTypeLessThan() { return DefaultPaymentTypeLessThan; } public CR_Main1Query setDefaultPaymentTypeLessThan(Short value) { this.DefaultPaymentTypeLessThan = value; return this; } public Short getDefaultPaymentTypeLessThanOrEqualTo() { return DefaultPaymentTypeLessThanOrEqualTo; } public CR_Main1Query setDefaultPaymentTypeLessThanOrEqualTo(Short value) { this.DefaultPaymentTypeLessThanOrEqualTo = value; return this; } public Short getDefaultPaymentTypeNotEqualTo() { return DefaultPaymentTypeNotEqualTo; } public CR_Main1Query setDefaultPaymentTypeNotEqualTo(Short value) { this.DefaultPaymentTypeNotEqualTo = value; return this; } public ArrayList getDefaultPaymentTypeBetween() { return DefaultPaymentTypeBetween; } public CR_Main1Query setDefaultPaymentTypeBetween(ArrayList value) { this.DefaultPaymentTypeBetween = value; return this; } public ArrayList getDefaultPaymentTypeIn() { return DefaultPaymentTypeIn; } public CR_Main1Query setDefaultPaymentTypeIn(ArrayList value) { this.DefaultPaymentTypeIn = value; return this; } public BigDecimal getCreditLimit() { return CreditLimit; } public CR_Main1Query setCreditLimit(BigDecimal value) { this.CreditLimit = value; return this; } public BigDecimal getCreditLimitGreaterThanOrEqualTo() { return CreditLimitGreaterThanOrEqualTo; } public CR_Main1Query setCreditLimitGreaterThanOrEqualTo(BigDecimal value) { this.CreditLimitGreaterThanOrEqualTo = value; return this; } public BigDecimal getCreditLimitGreaterThan() { return CreditLimitGreaterThan; } public CR_Main1Query setCreditLimitGreaterThan(BigDecimal value) { this.CreditLimitGreaterThan = value; return this; } public BigDecimal getCreditLimitLessThan() { return CreditLimitLessThan; } public CR_Main1Query setCreditLimitLessThan(BigDecimal value) { this.CreditLimitLessThan = value; return this; } public BigDecimal getCreditLimitLessThanOrEqualTo() { return CreditLimitLessThanOrEqualTo; } public CR_Main1Query setCreditLimitLessThanOrEqualTo(BigDecimal value) { this.CreditLimitLessThanOrEqualTo = value; return this; } public BigDecimal getCreditLimitNotEqualTo() { return CreditLimitNotEqualTo; } public CR_Main1Query setCreditLimitNotEqualTo(BigDecimal value) { this.CreditLimitNotEqualTo = value; return this; } public ArrayList getCreditLimitBetween() { return CreditLimitBetween; } public CR_Main1Query setCreditLimitBetween(ArrayList value) { this.CreditLimitBetween = value; return this; } public ArrayList getCreditLimitIn() { return CreditLimitIn; } public CR_Main1Query setCreditLimitIn(ArrayList value) { this.CreditLimitIn = value; return this; } public Short getEarlyPayDisOnRemitDays() { return EarlyPayDisOnRemitDays; } public CR_Main1Query setEarlyPayDisOnRemitDays(Short value) { this.EarlyPayDisOnRemitDays = value; return this; } public Short getEarlyPayDisOnRemitDaysGreaterThanOrEqualTo() { return EarlyPayDisOnRemitDaysGreaterThanOrEqualTo; } public CR_Main1Query setEarlyPayDisOnRemitDaysGreaterThanOrEqualTo(Short value) { this.EarlyPayDisOnRemitDaysGreaterThanOrEqualTo = value; return this; } public Short getEarlyPayDisOnRemitDaysGreaterThan() { return EarlyPayDisOnRemitDaysGreaterThan; } public CR_Main1Query setEarlyPayDisOnRemitDaysGreaterThan(Short value) { this.EarlyPayDisOnRemitDaysGreaterThan = value; return this; } public Short getEarlyPayDisOnRemitDaysLessThan() { return EarlyPayDisOnRemitDaysLessThan; } public CR_Main1Query setEarlyPayDisOnRemitDaysLessThan(Short value) { this.EarlyPayDisOnRemitDaysLessThan = value; return this; } public Short getEarlyPayDisOnRemitDaysLessThanOrEqualTo() { return EarlyPayDisOnRemitDaysLessThanOrEqualTo; } public CR_Main1Query setEarlyPayDisOnRemitDaysLessThanOrEqualTo(Short value) { this.EarlyPayDisOnRemitDaysLessThanOrEqualTo = value; return this; } public Short getEarlyPayDisOnRemitDaysNotEqualTo() { return EarlyPayDisOnRemitDaysNotEqualTo; } public CR_Main1Query setEarlyPayDisOnRemitDaysNotEqualTo(Short value) { this.EarlyPayDisOnRemitDaysNotEqualTo = value; return this; } public ArrayList getEarlyPayDisOnRemitDaysBetween() { return EarlyPayDisOnRemitDaysBetween; } public CR_Main1Query setEarlyPayDisOnRemitDaysBetween(ArrayList value) { this.EarlyPayDisOnRemitDaysBetween = value; return this; } public ArrayList getEarlyPayDisOnRemitDaysIn() { return EarlyPayDisOnRemitDaysIn; } public CR_Main1Query setEarlyPayDisOnRemitDaysIn(ArrayList value) { this.EarlyPayDisOnRemitDaysIn = value; return this; } public BigDecimal getEarlyPayDisOnRemitAmt() { return EarlyPayDisOnRemitAmt; } public CR_Main1Query setEarlyPayDisOnRemitAmt(BigDecimal value) { this.EarlyPayDisOnRemitAmt = value; return this; } public BigDecimal getEarlyPayDisOnRemitAmtGreaterThanOrEqualTo() { return EarlyPayDisOnRemitAmtGreaterThanOrEqualTo; } public CR_Main1Query setEarlyPayDisOnRemitAmtGreaterThanOrEqualTo(BigDecimal value) { this.EarlyPayDisOnRemitAmtGreaterThanOrEqualTo = value; return this; } public BigDecimal getEarlyPayDisOnRemitAmtGreaterThan() { return EarlyPayDisOnRemitAmtGreaterThan; } public CR_Main1Query setEarlyPayDisOnRemitAmtGreaterThan(BigDecimal value) { this.EarlyPayDisOnRemitAmtGreaterThan = value; return this; } public BigDecimal getEarlyPayDisOnRemitAmtLessThan() { return EarlyPayDisOnRemitAmtLessThan; } public CR_Main1Query setEarlyPayDisOnRemitAmtLessThan(BigDecimal value) { this.EarlyPayDisOnRemitAmtLessThan = value; return this; } public BigDecimal getEarlyPayDisOnRemitAmtLessThanOrEqualTo() { return EarlyPayDisOnRemitAmtLessThanOrEqualTo; } public CR_Main1Query setEarlyPayDisOnRemitAmtLessThanOrEqualTo(BigDecimal value) { this.EarlyPayDisOnRemitAmtLessThanOrEqualTo = value; return this; } public BigDecimal getEarlyPayDisOnRemitAmtNotEqualTo() { return EarlyPayDisOnRemitAmtNotEqualTo; } public CR_Main1Query setEarlyPayDisOnRemitAmtNotEqualTo(BigDecimal value) { this.EarlyPayDisOnRemitAmtNotEqualTo = value; return this; } public ArrayList getEarlyPayDisOnRemitAmtBetween() { return EarlyPayDisOnRemitAmtBetween; } public CR_Main1Query setEarlyPayDisOnRemitAmtBetween(ArrayList value) { this.EarlyPayDisOnRemitAmtBetween = value; return this; } public ArrayList getEarlyPayDisOnRemitAmtIn() { return EarlyPayDisOnRemitAmtIn; } public CR_Main1Query setEarlyPayDisOnRemitAmtIn(ArrayList value) { this.EarlyPayDisOnRemitAmtIn = value; return this; } public Date getLastSaleDate() { return LastSaleDate; } public CR_Main1Query setLastSaleDate(Date value) { this.LastSaleDate = value; return this; } public Date getLastSaleDateGreaterThanOrEqualTo() { return LastSaleDateGreaterThanOrEqualTo; } public CR_Main1Query setLastSaleDateGreaterThanOrEqualTo(Date value) { this.LastSaleDateGreaterThanOrEqualTo = value; return this; } public Date getLastSaleDateGreaterThan() { return LastSaleDateGreaterThan; } public CR_Main1Query setLastSaleDateGreaterThan(Date value) { this.LastSaleDateGreaterThan = value; return this; } public Date getLastSaleDateLessThan() { return LastSaleDateLessThan; } public CR_Main1Query setLastSaleDateLessThan(Date value) { this.LastSaleDateLessThan = value; return this; } public Date getLastSaleDateLessThanOrEqualTo() { return LastSaleDateLessThanOrEqualTo; } public CR_Main1Query setLastSaleDateLessThanOrEqualTo(Date value) { this.LastSaleDateLessThanOrEqualTo = value; return this; } public Date getLastSaleDateNotEqualTo() { return LastSaleDateNotEqualTo; } public CR_Main1Query setLastSaleDateNotEqualTo(Date value) { this.LastSaleDateNotEqualTo = value; return this; } public ArrayList getLastSaleDateBetween() { return LastSaleDateBetween; } public CR_Main1Query setLastSaleDateBetween(ArrayList value) { this.LastSaleDateBetween = value; return this; } public ArrayList getLastSaleDateIn() { return LastSaleDateIn; } public CR_Main1Query setLastSaleDateIn(ArrayList value) { this.LastSaleDateIn = value; return this; } public Date getLastPaymentDate() { return LastPaymentDate; } public CR_Main1Query setLastPaymentDate(Date value) { this.LastPaymentDate = value; return this; } public Date getLastPaymentDateGreaterThanOrEqualTo() { return LastPaymentDateGreaterThanOrEqualTo; } public CR_Main1Query setLastPaymentDateGreaterThanOrEqualTo(Date value) { this.LastPaymentDateGreaterThanOrEqualTo = value; return this; } public Date getLastPaymentDateGreaterThan() { return LastPaymentDateGreaterThan; } public CR_Main1Query setLastPaymentDateGreaterThan(Date value) { this.LastPaymentDateGreaterThan = value; return this; } public Date getLastPaymentDateLessThan() { return LastPaymentDateLessThan; } public CR_Main1Query setLastPaymentDateLessThan(Date value) { this.LastPaymentDateLessThan = value; return this; } public Date getLastPaymentDateLessThanOrEqualTo() { return LastPaymentDateLessThanOrEqualTo; } public CR_Main1Query setLastPaymentDateLessThanOrEqualTo(Date value) { this.LastPaymentDateLessThanOrEqualTo = value; return this; } public Date getLastPaymentDateNotEqualTo() { return LastPaymentDateNotEqualTo; } public CR_Main1Query setLastPaymentDateNotEqualTo(Date value) { this.LastPaymentDateNotEqualTo = value; return this; } public ArrayList getLastPaymentDateBetween() { return LastPaymentDateBetween; } public CR_Main1Query setLastPaymentDateBetween(ArrayList value) { this.LastPaymentDateBetween = value; return this; } public ArrayList getLastPaymentDateIn() { return LastPaymentDateIn; } public CR_Main1Query setLastPaymentDateIn(ArrayList value) { this.LastPaymentDateIn = value; return this; } public String getClassificationID() { return ClassificationID; } public CR_Main1Query setClassificationID(String value) { this.ClassificationID = value; return this; } public String getClassificationIDStartsWith() { return ClassificationIDStartsWith; } public CR_Main1Query setClassificationIDStartsWith(String value) { this.ClassificationIDStartsWith = value; return this; } public String getClassificationIDEndsWith() { return ClassificationIDEndsWith; } public CR_Main1Query setClassificationIDEndsWith(String value) { this.ClassificationIDEndsWith = value; return this; } public String getClassificationIDContains() { return ClassificationIDContains; } public CR_Main1Query setClassificationIDContains(String value) { this.ClassificationIDContains = value; return this; } public String getClassificationIDLike() { return ClassificationIDLike; } public CR_Main1Query setClassificationIDLike(String value) { this.ClassificationIDLike = value; return this; } public ArrayList getClassificationIDBetween() { return ClassificationIDBetween; } public CR_Main1Query setClassificationIDBetween(ArrayList value) { this.ClassificationIDBetween = value; return this; } public ArrayList getClassificationIDIn() { return ClassificationIDIn; } public CR_Main1Query setClassificationIDIn(ArrayList value) { this.ClassificationIDIn = value; return this; } public Boolean isAccountOnHold() { return AccountOnHold; } public CR_Main1Query setAccountOnHold(Boolean value) { this.AccountOnHold = value; return this; } public String getEmailAddress() { return EmailAddress; } public CR_Main1Query setEmailAddress(String value) { this.EmailAddress = value; return this; } public String getEmailAddressStartsWith() { return EmailAddressStartsWith; } public CR_Main1Query setEmailAddressStartsWith(String value) { this.EmailAddressStartsWith = value; return this; } public String getEmailAddressEndsWith() { return EmailAddressEndsWith; } public CR_Main1Query setEmailAddressEndsWith(String value) { this.EmailAddressEndsWith = value; return this; } public String getEmailAddressContains() { return EmailAddressContains; } public CR_Main1Query setEmailAddressContains(String value) { this.EmailAddressContains = value; return this; } public String getEmailAddressLike() { return EmailAddressLike; } public CR_Main1Query setEmailAddressLike(String value) { this.EmailAddressLike = value; return this; } public ArrayList getEmailAddressBetween() { return EmailAddressBetween; } public CR_Main1Query setEmailAddressBetween(ArrayList value) { this.EmailAddressBetween = value; return this; } public ArrayList getEmailAddressIn() { return EmailAddressIn; } public CR_Main1Query setEmailAddressIn(ArrayList value) { this.EmailAddressIn = value; return this; } public BigDecimal getCurrentBalance() { return CurrentBalance; } public CR_Main1Query setCurrentBalance(BigDecimal value) { this.CurrentBalance = value; return this; } public BigDecimal getCurrentBalanceGreaterThanOrEqualTo() { return CurrentBalanceGreaterThanOrEqualTo; } public CR_Main1Query setCurrentBalanceGreaterThanOrEqualTo(BigDecimal value) { this.CurrentBalanceGreaterThanOrEqualTo = value; return this; } public BigDecimal getCurrentBalanceGreaterThan() { return CurrentBalanceGreaterThan; } public CR_Main1Query setCurrentBalanceGreaterThan(BigDecimal value) { this.CurrentBalanceGreaterThan = value; return this; } public BigDecimal getCurrentBalanceLessThan() { return CurrentBalanceLessThan; } public CR_Main1Query setCurrentBalanceLessThan(BigDecimal value) { this.CurrentBalanceLessThan = value; return this; } public BigDecimal getCurrentBalanceLessThanOrEqualTo() { return CurrentBalanceLessThanOrEqualTo; } public CR_Main1Query setCurrentBalanceLessThanOrEqualTo(BigDecimal value) { this.CurrentBalanceLessThanOrEqualTo = value; return this; } public BigDecimal getCurrentBalanceNotEqualTo() { return CurrentBalanceNotEqualTo; } public CR_Main1Query setCurrentBalanceNotEqualTo(BigDecimal value) { this.CurrentBalanceNotEqualTo = value; return this; } public ArrayList getCurrentBalanceBetween() { return CurrentBalanceBetween; } public CR_Main1Query setCurrentBalanceBetween(ArrayList value) { this.CurrentBalanceBetween = value; return this; } public ArrayList getCurrentBalanceIn() { return CurrentBalanceIn; } public CR_Main1Query setCurrentBalanceIn(ArrayList value) { this.CurrentBalanceIn = value; return this; } public BigDecimal getPeriod1() { return Period1; } public CR_Main1Query setPeriod1(BigDecimal value) { this.Period1 = value; return this; } public BigDecimal getPeriod1GreaterThanOrEqualTo() { return Period1GreaterThanOrEqualTo; } public CR_Main1Query setPeriod1GreaterThanOrEqualTo(BigDecimal value) { this.Period1GreaterThanOrEqualTo = value; return this; } public BigDecimal getPeriod1GreaterThan() { return Period1GreaterThan; } public CR_Main1Query setPeriod1GreaterThan(BigDecimal value) { this.Period1GreaterThan = value; return this; } public BigDecimal getPeriod1LessThan() { return Period1LessThan; } public CR_Main1Query setPeriod1LessThan(BigDecimal value) { this.Period1LessThan = value; return this; } public BigDecimal getPeriod1LessThanOrEqualTo() { return Period1LessThanOrEqualTo; } public CR_Main1Query setPeriod1LessThanOrEqualTo(BigDecimal value) { this.Period1LessThanOrEqualTo = value; return this; } public BigDecimal getPeriod1NotEqualTo() { return Period1NotEqualTo; } public CR_Main1Query setPeriod1NotEqualTo(BigDecimal value) { this.Period1NotEqualTo = value; return this; } public ArrayList getPeriod1Between() { return Period1Between; } public CR_Main1Query setPeriod1Between(ArrayList value) { this.Period1Between = value; return this; } public ArrayList getPeriod1In() { return Period1In; } public CR_Main1Query setPeriod1In(ArrayList value) { this.Period1In = value; return this; } public BigDecimal getPeriod2() { return Period2; } public CR_Main1Query setPeriod2(BigDecimal value) { this.Period2 = value; return this; } public BigDecimal getPeriod2GreaterThanOrEqualTo() { return Period2GreaterThanOrEqualTo; } public CR_Main1Query setPeriod2GreaterThanOrEqualTo(BigDecimal value) { this.Period2GreaterThanOrEqualTo = value; return this; } public BigDecimal getPeriod2GreaterThan() { return Period2GreaterThan; } public CR_Main1Query setPeriod2GreaterThan(BigDecimal value) { this.Period2GreaterThan = value; return this; } public BigDecimal getPeriod2LessThan() { return Period2LessThan; } public CR_Main1Query setPeriod2LessThan(BigDecimal value) { this.Period2LessThan = value; return this; } public BigDecimal getPeriod2LessThanOrEqualTo() { return Period2LessThanOrEqualTo; } public CR_Main1Query setPeriod2LessThanOrEqualTo(BigDecimal value) { this.Period2LessThanOrEqualTo = value; return this; } public BigDecimal getPeriod2NotEqualTo() { return Period2NotEqualTo; } public CR_Main1Query setPeriod2NotEqualTo(BigDecimal value) { this.Period2NotEqualTo = value; return this; } public ArrayList getPeriod2Between() { return Period2Between; } public CR_Main1Query setPeriod2Between(ArrayList value) { this.Period2Between = value; return this; } public ArrayList getPeriod2In() { return Period2In; } public CR_Main1Query setPeriod2In(ArrayList value) { this.Period2In = value; return this; } public BigDecimal getPeriod3() { return Period3; } public CR_Main1Query setPeriod3(BigDecimal value) { this.Period3 = value; return this; } public BigDecimal getPeriod3GreaterThanOrEqualTo() { return Period3GreaterThanOrEqualTo; } public CR_Main1Query setPeriod3GreaterThanOrEqualTo(BigDecimal value) { this.Period3GreaterThanOrEqualTo = value; return this; } public BigDecimal getPeriod3GreaterThan() { return Period3GreaterThan; } public CR_Main1Query setPeriod3GreaterThan(BigDecimal value) { this.Period3GreaterThan = value; return this; } public BigDecimal getPeriod3LessThan() { return Period3LessThan; } public CR_Main1Query setPeriod3LessThan(BigDecimal value) { this.Period3LessThan = value; return this; } public BigDecimal getPeriod3LessThanOrEqualTo() { return Period3LessThanOrEqualTo; } public CR_Main1Query setPeriod3LessThanOrEqualTo(BigDecimal value) { this.Period3LessThanOrEqualTo = value; return this; } public BigDecimal getPeriod3NotEqualTo() { return Period3NotEqualTo; } public CR_Main1Query setPeriod3NotEqualTo(BigDecimal value) { this.Period3NotEqualTo = value; return this; } public ArrayList getPeriod3Between() { return Period3Between; } public CR_Main1Query setPeriod3Between(ArrayList value) { this.Period3Between = value; return this; } public ArrayList getPeriod3In() { return Period3In; } public CR_Main1Query setPeriod3In(ArrayList value) { this.Period3In = value; return this; } public BigDecimal getPeriod4() { return Period4; } public CR_Main1Query setPeriod4(BigDecimal value) { this.Period4 = value; return this; } public BigDecimal getPeriod4GreaterThanOrEqualTo() { return Period4GreaterThanOrEqualTo; } public CR_Main1Query setPeriod4GreaterThanOrEqualTo(BigDecimal value) { this.Period4GreaterThanOrEqualTo = value; return this; } public BigDecimal getPeriod4GreaterThan() { return Period4GreaterThan; } public CR_Main1Query setPeriod4GreaterThan(BigDecimal value) { this.Period4GreaterThan = value; return this; } public BigDecimal getPeriod4LessThan() { return Period4LessThan; } public CR_Main1Query setPeriod4LessThan(BigDecimal value) { this.Period4LessThan = value; return this; } public BigDecimal getPeriod4LessThanOrEqualTo() { return Period4LessThanOrEqualTo; } public CR_Main1Query setPeriod4LessThanOrEqualTo(BigDecimal value) { this.Period4LessThanOrEqualTo = value; return this; } public BigDecimal getPeriod4NotEqualTo() { return Period4NotEqualTo; } public CR_Main1Query setPeriod4NotEqualTo(BigDecimal value) { this.Period4NotEqualTo = value; return this; } public ArrayList getPeriod4Between() { return Period4Between; } public CR_Main1Query setPeriod4Between(ArrayList value) { this.Period4Between = value; return this; } public ArrayList getPeriod4In() { return Period4In; } public CR_Main1Query setPeriod4In(ArrayList value) { this.Period4In = value; return this; } public String getAltAccountNo() { return AltAccountNo; } public CR_Main1Query setAltAccountNo(String value) { this.AltAccountNo = value; return this; } public String getAltAccountNoStartsWith() { return AltAccountNoStartsWith; } public CR_Main1Query setAltAccountNoStartsWith(String value) { this.AltAccountNoStartsWith = value; return this; } public String getAltAccountNoEndsWith() { return AltAccountNoEndsWith; } public CR_Main1Query setAltAccountNoEndsWith(String value) { this.AltAccountNoEndsWith = value; return this; } public String getAltAccountNoContains() { return AltAccountNoContains; } public CR_Main1Query setAltAccountNoContains(String value) { this.AltAccountNoContains = value; return this; } public String getAltAccountNoLike() { return AltAccountNoLike; } public CR_Main1Query setAltAccountNoLike(String value) { this.AltAccountNoLike = value; return this; } public ArrayList getAltAccountNoBetween() { return AltAccountNoBetween; } public CR_Main1Query setAltAccountNoBetween(ArrayList value) { this.AltAccountNoBetween = value; return this; } public ArrayList getAltAccountNoIn() { return AltAccountNoIn; } public CR_Main1Query setAltAccountNoIn(ArrayList value) { this.AltAccountNoIn = value; return this; } public Date getCommenceDate() { return CommenceDate; } public CR_Main1Query setCommenceDate(Date value) { this.CommenceDate = value; return this; } public Date getCommenceDateGreaterThanOrEqualTo() { return CommenceDateGreaterThanOrEqualTo; } public CR_Main1Query setCommenceDateGreaterThanOrEqualTo(Date value) { this.CommenceDateGreaterThanOrEqualTo = value; return this; } public Date getCommenceDateGreaterThan() { return CommenceDateGreaterThan; } public CR_Main1Query setCommenceDateGreaterThan(Date value) { this.CommenceDateGreaterThan = value; return this; } public Date getCommenceDateLessThan() { return CommenceDateLessThan; } public CR_Main1Query setCommenceDateLessThan(Date value) { this.CommenceDateLessThan = value; return this; } public Date getCommenceDateLessThanOrEqualTo() { return CommenceDateLessThanOrEqualTo; } public CR_Main1Query setCommenceDateLessThanOrEqualTo(Date value) { this.CommenceDateLessThanOrEqualTo = value; return this; } public Date getCommenceDateNotEqualTo() { return CommenceDateNotEqualTo; } public CR_Main1Query setCommenceDateNotEqualTo(Date value) { this.CommenceDateNotEqualTo = value; return this; } public ArrayList getCommenceDateBetween() { return CommenceDateBetween; } public CR_Main1Query setCommenceDateBetween(ArrayList value) { this.CommenceDateBetween = value; return this; } public ArrayList getCommenceDateIn() { return CommenceDateIn; } public CR_Main1Query setCommenceDateIn(ArrayList value) { this.CommenceDateIn = value; return this; } public Integer getContactType() { return ContactType; } public CR_Main1Query setContactType(Integer value) { this.ContactType = value; return this; } public Integer getContactTypeGreaterThanOrEqualTo() { return ContactTypeGreaterThanOrEqualTo; } public CR_Main1Query setContactTypeGreaterThanOrEqualTo(Integer value) { this.ContactTypeGreaterThanOrEqualTo = value; return this; } public Integer getContactTypeGreaterThan() { return ContactTypeGreaterThan; } public CR_Main1Query setContactTypeGreaterThan(Integer value) { this.ContactTypeGreaterThan = value; return this; } public Integer getContactTypeLessThan() { return ContactTypeLessThan; } public CR_Main1Query setContactTypeLessThan(Integer value) { this.ContactTypeLessThan = value; return this; } public Integer getContactTypeLessThanOrEqualTo() { return ContactTypeLessThanOrEqualTo; } public CR_Main1Query setContactTypeLessThanOrEqualTo(Integer value) { this.ContactTypeLessThanOrEqualTo = value; return this; } public Integer getContactTypeNotEqualTo() { return ContactTypeNotEqualTo; } public CR_Main1Query setContactTypeNotEqualTo(Integer value) { this.ContactTypeNotEqualTo = value; return this; } public ArrayList getContactTypeBetween() { return ContactTypeBetween; } public CR_Main1Query setContactTypeBetween(ArrayList value) { this.ContactTypeBetween = value; return this; } public ArrayList getContactTypeIn() { return ContactTypeIn; } public CR_Main1Query setContactTypeIn(ArrayList value) { this.ContactTypeIn = value; return this; } public Short getTermsDays() { return TermsDays; } public CR_Main1Query setTermsDays(Short value) { this.TermsDays = value; return this; } public Short getTermsDaysGreaterThanOrEqualTo() { return TermsDaysGreaterThanOrEqualTo; } public CR_Main1Query setTermsDaysGreaterThanOrEqualTo(Short value) { this.TermsDaysGreaterThanOrEqualTo = value; return this; } public Short getTermsDaysGreaterThan() { return TermsDaysGreaterThan; } public CR_Main1Query setTermsDaysGreaterThan(Short value) { this.TermsDaysGreaterThan = value; return this; } public Short getTermsDaysLessThan() { return TermsDaysLessThan; } public CR_Main1Query setTermsDaysLessThan(Short value) { this.TermsDaysLessThan = value; return this; } public Short getTermsDaysLessThanOrEqualTo() { return TermsDaysLessThanOrEqualTo; } public CR_Main1Query setTermsDaysLessThanOrEqualTo(Short value) { this.TermsDaysLessThanOrEqualTo = value; return this; } public Short getTermsDaysNotEqualTo() { return TermsDaysNotEqualTo; } public CR_Main1Query setTermsDaysNotEqualTo(Short value) { this.TermsDaysNotEqualTo = value; return this; } public ArrayList getTermsDaysBetween() { return TermsDaysBetween; } public CR_Main1Query setTermsDaysBetween(ArrayList value) { this.TermsDaysBetween = value; return this; } public ArrayList getTermsDaysIn() { return TermsDaysIn; } public CR_Main1Query setTermsDaysIn(ArrayList value) { this.TermsDaysIn = value; return this; } public String getAcn() { return ACN; } public CR_Main1Query setAcn(String value) { this.ACN = value; return this; } public String getAcnStartsWith() { return ACNStartsWith; } public CR_Main1Query setAcnStartsWith(String value) { this.ACNStartsWith = value; return this; } public String getAcnEndsWith() { return ACNEndsWith; } public CR_Main1Query setAcnEndsWith(String value) { this.ACNEndsWith = value; return this; } public String getAcnContains() { return ACNContains; } public CR_Main1Query setAcnContains(String value) { this.ACNContains = value; return this; } public String getAcnLike() { return ACNLike; } public CR_Main1Query setAcnLike(String value) { this.ACNLike = value; return this; } public ArrayList getAcnBetween() { return ACNBetween; } public CR_Main1Query setAcnBetween(ArrayList value) { this.ACNBetween = value; return this; } public ArrayList getAcnIn() { return ACNIn; } public CR_Main1Query setAcnIn(ArrayList value) { this.ACNIn = value; return this; } public String getCurrencyID() { return CurrencyID; } public CR_Main1Query setCurrencyID(String value) { this.CurrencyID = value; return this; } public String getCurrencyIDStartsWith() { return CurrencyIDStartsWith; } public CR_Main1Query setCurrencyIDStartsWith(String value) { this.CurrencyIDStartsWith = value; return this; } public String getCurrencyIDEndsWith() { return CurrencyIDEndsWith; } public CR_Main1Query setCurrencyIDEndsWith(String value) { this.CurrencyIDEndsWith = value; return this; } public String getCurrencyIDContains() { return CurrencyIDContains; } public CR_Main1Query setCurrencyIDContains(String value) { this.CurrencyIDContains = value; return this; } public String getCurrencyIDLike() { return CurrencyIDLike; } public CR_Main1Query setCurrencyIDLike(String value) { this.CurrencyIDLike = value; return this; } public ArrayList getCurrencyIDBetween() { return CurrencyIDBetween; } public CR_Main1Query setCurrencyIDBetween(ArrayList value) { this.CurrencyIDBetween = value; return this; } public ArrayList getCurrencyIDIn() { return CurrencyIDIn; } public CR_Main1Query setCurrencyIDIn(ArrayList value) { this.CurrencyIDIn = value; return this; } public Boolean isUsesFX() { return UsesFX; } public CR_Main1Query setUsesFX(Boolean value) { this.UsesFX = value; return this; } public String getAbn() { return ABN; } public CR_Main1Query setAbn(String value) { this.ABN = value; return this; } public String getAbnStartsWith() { return ABNStartsWith; } public CR_Main1Query setAbnStartsWith(String value) { this.ABNStartsWith = value; return this; } public String getAbnEndsWith() { return ABNEndsWith; } public CR_Main1Query setAbnEndsWith(String value) { this.ABNEndsWith = value; return this; } public String getAbnContains() { return ABNContains; } public CR_Main1Query setAbnContains(String value) { this.ABNContains = value; return this; } public String getAbnLike() { return ABNLike; } public CR_Main1Query setAbnLike(String value) { this.ABNLike = value; return this; } public ArrayList getAbnBetween() { return ABNBetween; } public CR_Main1Query setAbnBetween(ArrayList value) { this.ABNBetween = value; return this; } public ArrayList getAbnIn() { return ABNIn; } public CR_Main1Query setAbnIn(ArrayList value) { this.ABNIn = value; return this; } public Short getTermsType() { return TermsType; } public CR_Main1Query setTermsType(Short value) { this.TermsType = value; return this; } public Short getTermsTypeGreaterThanOrEqualTo() { return TermsTypeGreaterThanOrEqualTo; } public CR_Main1Query setTermsTypeGreaterThanOrEqualTo(Short value) { this.TermsTypeGreaterThanOrEqualTo = value; return this; } public Short getTermsTypeGreaterThan() { return TermsTypeGreaterThan; } public CR_Main1Query setTermsTypeGreaterThan(Short value) { this.TermsTypeGreaterThan = value; return this; } public Short getTermsTypeLessThan() { return TermsTypeLessThan; } public CR_Main1Query setTermsTypeLessThan(Short value) { this.TermsTypeLessThan = value; return this; } public Short getTermsTypeLessThanOrEqualTo() { return TermsTypeLessThanOrEqualTo; } public CR_Main1Query setTermsTypeLessThanOrEqualTo(Short value) { this.TermsTypeLessThanOrEqualTo = value; return this; } public Short getTermsTypeNotEqualTo() { return TermsTypeNotEqualTo; } public CR_Main1Query setTermsTypeNotEqualTo(Short value) { this.TermsTypeNotEqualTo = value; return this; } public ArrayList getTermsTypeBetween() { return TermsTypeBetween; } public CR_Main1Query setTermsTypeBetween(ArrayList value) { this.TermsTypeBetween = value; return this; } public ArrayList getTermsTypeIn() { return TermsTypeIn; } public CR_Main1Query setTermsTypeIn(ArrayList value) { this.TermsTypeIn = value; return this; } public String getAustPostDPID() { return AustPostDPID; } public CR_Main1Query setAustPostDPID(String value) { this.AustPostDPID = value; return this; } public String getAustPostDPIDStartsWith() { return AustPostDPIDStartsWith; } public CR_Main1Query setAustPostDPIDStartsWith(String value) { this.AustPostDPIDStartsWith = value; return this; } public String getAustPostDPIDEndsWith() { return AustPostDPIDEndsWith; } public CR_Main1Query setAustPostDPIDEndsWith(String value) { this.AustPostDPIDEndsWith = value; return this; } public String getAustPostDPIDContains() { return AustPostDPIDContains; } public CR_Main1Query setAustPostDPIDContains(String value) { this.AustPostDPIDContains = value; return this; } public String getAustPostDPIDLike() { return AustPostDPIDLike; } public CR_Main1Query setAustPostDPIDLike(String value) { this.AustPostDPIDLike = value; return this; } public ArrayList getAustPostDPIDBetween() { return AustPostDPIDBetween; } public CR_Main1Query setAustPostDPIDBetween(ArrayList value) { this.AustPostDPIDBetween = value; return this; } public ArrayList getAustPostDPIDIn() { return AustPostDPIDIn; } public CR_Main1Query setAustPostDPIDIn(ArrayList value) { this.AustPostDPIDIn = value; return this; } public String getAustPostBCSP() { return AustPostBCSP; } public CR_Main1Query setAustPostBCSP(String value) { this.AustPostBCSP = value; return this; } public String getAustPostBCSPStartsWith() { return AustPostBCSPStartsWith; } public CR_Main1Query setAustPostBCSPStartsWith(String value) { this.AustPostBCSPStartsWith = value; return this; } public String getAustPostBCSPEndsWith() { return AustPostBCSPEndsWith; } public CR_Main1Query setAustPostBCSPEndsWith(String value) { this.AustPostBCSPEndsWith = value; return this; } public String getAustPostBCSPContains() { return AustPostBCSPContains; } public CR_Main1Query setAustPostBCSPContains(String value) { this.AustPostBCSPContains = value; return this; } public String getAustPostBCSPLike() { return AustPostBCSPLike; } public CR_Main1Query setAustPostBCSPLike(String value) { this.AustPostBCSPLike = value; return this; } public ArrayList getAustPostBCSPBetween() { return AustPostBCSPBetween; } public CR_Main1Query setAustPostBCSPBetween(ArrayList value) { this.AustPostBCSPBetween = value; return this; } public ArrayList getAustPostBCSPIn() { return AustPostBCSPIn; } public CR_Main1Query setAustPostBCSPIn(ArrayList value) { this.AustPostBCSPIn = value; return this; } public BigDecimal getMinPOValue() { return MinPOValue; } public CR_Main1Query setMinPOValue(BigDecimal value) { this.MinPOValue = value; return this; } public BigDecimal getMinPOValueGreaterThanOrEqualTo() { return MinPOValueGreaterThanOrEqualTo; } public CR_Main1Query setMinPOValueGreaterThanOrEqualTo(BigDecimal value) { this.MinPOValueGreaterThanOrEqualTo = value; return this; } public BigDecimal getMinPOValueGreaterThan() { return MinPOValueGreaterThan; } public CR_Main1Query setMinPOValueGreaterThan(BigDecimal value) { this.MinPOValueGreaterThan = value; return this; } public BigDecimal getMinPOValueLessThan() { return MinPOValueLessThan; } public CR_Main1Query setMinPOValueLessThan(BigDecimal value) { this.MinPOValueLessThan = value; return this; } public BigDecimal getMinPOValueLessThanOrEqualTo() { return MinPOValueLessThanOrEqualTo; } public CR_Main1Query setMinPOValueLessThanOrEqualTo(BigDecimal value) { this.MinPOValueLessThanOrEqualTo = value; return this; } public BigDecimal getMinPOValueNotEqualTo() { return MinPOValueNotEqualTo; } public CR_Main1Query setMinPOValueNotEqualTo(BigDecimal value) { this.MinPOValueNotEqualTo = value; return this; } public ArrayList getMinPOValueBetween() { return MinPOValueBetween; } public CR_Main1Query setMinPOValueBetween(ArrayList value) { this.MinPOValueBetween = value; return this; } public ArrayList getMinPOValueIn() { return MinPOValueIn; } public CR_Main1Query setMinPOValueIn(ArrayList value) { this.MinPOValueIn = value; return this; } public BigDecimal getMaxPOValue() { return MaxPOValue; } public CR_Main1Query setMaxPOValue(BigDecimal value) { this.MaxPOValue = value; return this; } public BigDecimal getMaxPOValueGreaterThanOrEqualTo() { return MaxPOValueGreaterThanOrEqualTo; } public CR_Main1Query setMaxPOValueGreaterThanOrEqualTo(BigDecimal value) { this.MaxPOValueGreaterThanOrEqualTo = value; return this; } public BigDecimal getMaxPOValueGreaterThan() { return MaxPOValueGreaterThan; } public CR_Main1Query setMaxPOValueGreaterThan(BigDecimal value) { this.MaxPOValueGreaterThan = value; return this; } public BigDecimal getMaxPOValueLessThan() { return MaxPOValueLessThan; } public CR_Main1Query setMaxPOValueLessThan(BigDecimal value) { this.MaxPOValueLessThan = value; return this; } public BigDecimal getMaxPOValueLessThanOrEqualTo() { return MaxPOValueLessThanOrEqualTo; } public CR_Main1Query setMaxPOValueLessThanOrEqualTo(BigDecimal value) { this.MaxPOValueLessThanOrEqualTo = value; return this; } public BigDecimal getMaxPOValueNotEqualTo() { return MaxPOValueNotEqualTo; } public CR_Main1Query setMaxPOValueNotEqualTo(BigDecimal value) { this.MaxPOValueNotEqualTo = value; return this; } public ArrayList getMaxPOValueBetween() { return MaxPOValueBetween; } public CR_Main1Query setMaxPOValueBetween(ArrayList value) { this.MaxPOValueBetween = value; return this; } public ArrayList getMaxPOValueIn() { return MaxPOValueIn; } public CR_Main1Query setMaxPOValueIn(ArrayList value) { this.MaxPOValueIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class CR_Main2Query extends QueryDb implements IReturn> { public String CreditorID = null; public String CreditorIDStartsWith = null; public String CreditorIDEndsWith = null; public String CreditorIDContains = null; public String CreditorIDLike = null; public ArrayList CreditorIDBetween = null; public ArrayList CreditorIDIn = null; public Date LastSavedDateTime = null; public Date LastSavedDateTimeGreaterThanOrEqualTo = null; public Date LastSavedDateTimeGreaterThan = null; public Date LastSavedDateTimeLessThan = null; public Date LastSavedDateTimeLessThanOrEqualTo = null; public Date LastSavedDateTimeNotEqualTo = null; public ArrayList LastSavedDateTimeBetween = null; public ArrayList LastSavedDateTimeIn = null; public String C1 = null; public String C1StartsWith = null; public String C1EndsWith = null; public String C1Contains = null; public String C1Like = null; public ArrayList C1Between = null; public ArrayList C1In = null; public String C2 = null; public String C2StartsWith = null; public String C2EndsWith = null; public String C2Contains = null; public String C2Like = null; public ArrayList C2Between = null; public ArrayList C2In = null; public String C3 = null; public String C3StartsWith = null; public String C3EndsWith = null; public String C3Contains = null; public String C3Like = null; public ArrayList C3Between = null; public ArrayList C3In = null; public String C4 = null; public String C4StartsWith = null; public String C4EndsWith = null; public String C4Contains = null; public String C4Like = null; public ArrayList C4Between = null; public ArrayList C4In = null; public String C5 = null; public String C5StartsWith = null; public String C5EndsWith = null; public String C5Contains = null; public String C5Like = null; public ArrayList C5Between = null; public ArrayList C5In = null; public String C7 = null; public String C7StartsWith = null; public String C7EndsWith = null; public String C7Contains = null; public String C7Like = null; public ArrayList C7Between = null; public ArrayList C7In = null; public String C8 = null; public String C8StartsWith = null; public String C8EndsWith = null; public String C8Contains = null; public String C8Like = null; public ArrayList C8Between = null; public ArrayList C8In = null; public String C10 = null; public String C10StartsWith = null; public String C10EndsWith = null; public String C10Contains = null; public String C10Like = null; public ArrayList C10Between = null; public ArrayList C10In = null; public String C11 = null; public String C11StartsWith = null; public String C11EndsWith = null; public String C11Contains = null; public String C11Like = null; public ArrayList C11Between = null; public ArrayList C11In = null; public String C12 = null; public String C12StartsWith = null; public String C12EndsWith = null; public String C12Contains = null; public String C12Like = null; public ArrayList C12Between = null; public ArrayList C12In = null; public Integer OpeningBal1 = null; public Integer OpeningBal1GreaterThanOrEqualTo = null; public Integer OpeningBal1GreaterThan = null; public Integer OpeningBal1LessThan = null; public Integer OpeningBal1LessThanOrEqualTo = null; public Integer OpeningBal1NotEqualTo = null; public ArrayList OpeningBal1Between = null; public ArrayList OpeningBal1In = null; public Integer OpeningBal2 = null; public Integer OpeningBal2GreaterThanOrEqualTo = null; public Integer OpeningBal2GreaterThan = null; public Integer OpeningBal2LessThan = null; public Integer OpeningBal2LessThanOrEqualTo = null; public Integer OpeningBal2NotEqualTo = null; public ArrayList OpeningBal2Between = null; public ArrayList OpeningBal2In = null; public Integer OpeningBal3 = null; public Integer OpeningBal3GreaterThanOrEqualTo = null; public Integer OpeningBal3GreaterThan = null; public Integer OpeningBal3LessThan = null; public Integer OpeningBal3LessThanOrEqualTo = null; public Integer OpeningBal3NotEqualTo = null; public ArrayList OpeningBal3Between = null; public ArrayList OpeningBal3In = null; public Integer OpeningBal4 = null; public Integer OpeningBal4GreaterThanOrEqualTo = null; public Integer OpeningBal4GreaterThan = null; public Integer OpeningBal4LessThan = null; public Integer OpeningBal4LessThanOrEqualTo = null; public Integer OpeningBal4NotEqualTo = null; public ArrayList OpeningBal4Between = null; public ArrayList OpeningBal4In = null; public Integer OpeningBal5 = null; public Integer OpeningBal5GreaterThanOrEqualTo = null; public Integer OpeningBal5GreaterThan = null; public Integer OpeningBal5LessThan = null; public Integer OpeningBal5LessThanOrEqualTo = null; public Integer OpeningBal5NotEqualTo = null; public ArrayList OpeningBal5Between = null; public ArrayList OpeningBal5In = null; public Integer OpeningBal6 = null; public Integer OpeningBal6GreaterThanOrEqualTo = null; public Integer OpeningBal6GreaterThan = null; public Integer OpeningBal6LessThan = null; public Integer OpeningBal6LessThanOrEqualTo = null; public Integer OpeningBal6NotEqualTo = null; public ArrayList OpeningBal6Between = null; public ArrayList OpeningBal6In = null; public Integer OpeningBal7 = null; public Integer OpeningBal7GreaterThanOrEqualTo = null; public Integer OpeningBal7GreaterThan = null; public Integer OpeningBal7LessThan = null; public Integer OpeningBal7LessThanOrEqualTo = null; public Integer OpeningBal7NotEqualTo = null; public ArrayList OpeningBal7Between = null; public ArrayList OpeningBal7In = null; public Integer OpeningBal8 = null; public Integer OpeningBal8GreaterThanOrEqualTo = null; public Integer OpeningBal8GreaterThan = null; public Integer OpeningBal8LessThan = null; public Integer OpeningBal8LessThanOrEqualTo = null; public Integer OpeningBal8NotEqualTo = null; public ArrayList OpeningBal8Between = null; public ArrayList OpeningBal8In = null; public Integer OpeningBal9 = null; public Integer OpeningBal9GreaterThanOrEqualTo = null; public Integer OpeningBal9GreaterThan = null; public Integer OpeningBal9LessThan = null; public Integer OpeningBal9LessThanOrEqualTo = null; public Integer OpeningBal9NotEqualTo = null; public ArrayList OpeningBal9Between = null; public ArrayList OpeningBal9In = null; public Integer OpeningBal10 = null; public Integer OpeningBal10GreaterThanOrEqualTo = null; public Integer OpeningBal10GreaterThan = null; public Integer OpeningBal10LessThan = null; public Integer OpeningBal10LessThanOrEqualTo = null; public Integer OpeningBal10NotEqualTo = null; public ArrayList OpeningBal10Between = null; public ArrayList OpeningBal10In = null; public Integer OpeningBal11 = null; public Integer OpeningBal11GreaterThanOrEqualTo = null; public Integer OpeningBal11GreaterThan = null; public Integer OpeningBal11LessThan = null; public Integer OpeningBal11LessThanOrEqualTo = null; public Integer OpeningBal11NotEqualTo = null; public ArrayList OpeningBal11Between = null; public ArrayList OpeningBal11In = null; public Integer OpeningBal12 = null; public Integer OpeningBal12GreaterThanOrEqualTo = null; public Integer OpeningBal12GreaterThan = null; public Integer OpeningBal12LessThan = null; public Integer OpeningBal12LessThanOrEqualTo = null; public Integer OpeningBal12NotEqualTo = null; public ArrayList OpeningBal12Between = null; public ArrayList OpeningBal12In = null; public Integer OpeningBal14 = null; public Integer OpeningBal14GreaterThanOrEqualTo = null; public Integer OpeningBal14GreaterThan = null; public Integer OpeningBal14LessThan = null; public Integer OpeningBal14LessThanOrEqualTo = null; public Integer OpeningBal14NotEqualTo = null; public ArrayList OpeningBal14Between = null; public ArrayList OpeningBal14In = null; public Integer OpeningBal15 = null; public Integer OpeningBal15GreaterThanOrEqualTo = null; public Integer OpeningBal15GreaterThan = null; public Integer OpeningBal15LessThan = null; public Integer OpeningBal15LessThanOrEqualTo = null; public Integer OpeningBal15NotEqualTo = null; public ArrayList OpeningBal15Between = null; public ArrayList OpeningBal15In = null; public Integer OpeningBal13 = null; public Integer OpeningBal13GreaterThanOrEqualTo = null; public Integer OpeningBal13GreaterThan = null; public Integer OpeningBal13LessThan = null; public Integer OpeningBal13LessThanOrEqualTo = null; public Integer OpeningBal13NotEqualTo = null; public ArrayList OpeningBal13Between = null; public ArrayList OpeningBal13In = null; public Integer OpeningBal16 = null; public Integer OpeningBal16GreaterThanOrEqualTo = null; public Integer OpeningBal16GreaterThan = null; public Integer OpeningBal16LessThan = null; public Integer OpeningBal16LessThanOrEqualTo = null; public Integer OpeningBal16NotEqualTo = null; public ArrayList OpeningBal16Between = null; public ArrayList OpeningBal16In = null; public Integer OpeningBal17 = null; public Integer OpeningBal17GreaterThanOrEqualTo = null; public Integer OpeningBal17GreaterThan = null; public Integer OpeningBal17LessThan = null; public Integer OpeningBal17LessThanOrEqualTo = null; public Integer OpeningBal17NotEqualTo = null; public ArrayList OpeningBal17Between = null; public ArrayList OpeningBal17In = null; public Integer OpeningBal18 = null; public Integer OpeningBal18GreaterThanOrEqualTo = null; public Integer OpeningBal18GreaterThan = null; public Integer OpeningBal18LessThan = null; public Integer OpeningBal18LessThanOrEqualTo = null; public Integer OpeningBal18NotEqualTo = null; public ArrayList OpeningBal18Between = null; public ArrayList OpeningBal18In = null; public Integer OpeningBal19 = null; public Integer OpeningBal19GreaterThanOrEqualTo = null; public Integer OpeningBal19GreaterThan = null; public Integer OpeningBal19LessThan = null; public Integer OpeningBal19LessThanOrEqualTo = null; public Integer OpeningBal19NotEqualTo = null; public ArrayList OpeningBal19Between = null; public ArrayList OpeningBal19In = null; public Integer OpeningBal20 = null; public Integer OpeningBal20GreaterThanOrEqualTo = null; public Integer OpeningBal20GreaterThan = null; public Integer OpeningBal20LessThan = null; public Integer OpeningBal20LessThanOrEqualTo = null; public Integer OpeningBal20NotEqualTo = null; public ArrayList OpeningBal20Between = null; public ArrayList OpeningBal20In = null; public Integer OpeningBal21 = null; public Integer OpeningBal21GreaterThanOrEqualTo = null; public Integer OpeningBal21GreaterThan = null; public Integer OpeningBal21LessThan = null; public Integer OpeningBal21LessThanOrEqualTo = null; public Integer OpeningBal21NotEqualTo = null; public ArrayList OpeningBal21Between = null; public ArrayList OpeningBal21In = null; public Integer OpeningBal22 = null; public Integer OpeningBal22GreaterThanOrEqualTo = null; public Integer OpeningBal22GreaterThan = null; public Integer OpeningBal22LessThan = null; public Integer OpeningBal22LessThanOrEqualTo = null; public Integer OpeningBal22NotEqualTo = null; public ArrayList OpeningBal22Between = null; public ArrayList OpeningBal22In = null; public Integer OpeningBal23 = null; public Integer OpeningBal23GreaterThanOrEqualTo = null; public Integer OpeningBal23GreaterThan = null; public Integer OpeningBal23LessThan = null; public Integer OpeningBal23LessThanOrEqualTo = null; public Integer OpeningBal23NotEqualTo = null; public ArrayList OpeningBal23Between = null; public ArrayList OpeningBal23In = null; public Integer OpeningBal24 = null; public Integer OpeningBal24GreaterThanOrEqualTo = null; public Integer OpeningBal24GreaterThan = null; public Integer OpeningBal24LessThan = null; public Integer OpeningBal24LessThanOrEqualTo = null; public Integer OpeningBal24NotEqualTo = null; public ArrayList OpeningBal24Between = null; public ArrayList OpeningBal24In = null; public Integer OpeningBal25 = null; public Integer OpeningBal25GreaterThanOrEqualTo = null; public Integer OpeningBal25GreaterThan = null; public Integer OpeningBal25LessThan = null; public Integer OpeningBal25LessThanOrEqualTo = null; public Integer OpeningBal25NotEqualTo = null; public ArrayList OpeningBal25Between = null; public ArrayList OpeningBal25In = null; public Integer OpeningBal26 = null; public Integer OpeningBal26GreaterThanOrEqualTo = null; public Integer OpeningBal26GreaterThan = null; public Integer OpeningBal26LessThan = null; public Integer OpeningBal26LessThanOrEqualTo = null; public Integer OpeningBal26NotEqualTo = null; public ArrayList OpeningBal26Between = null; public ArrayList OpeningBal26In = null; public Integer OpeningBal27 = null; public Integer OpeningBal27GreaterThanOrEqualTo = null; public Integer OpeningBal27GreaterThan = null; public Integer OpeningBal27LessThan = null; public Integer OpeningBal27LessThanOrEqualTo = null; public Integer OpeningBal27NotEqualTo = null; public ArrayList OpeningBal27Between = null; public ArrayList OpeningBal27In = null; public Integer OpeningBal28 = null; public Integer OpeningBal28GreaterThanOrEqualTo = null; public Integer OpeningBal28GreaterThan = null; public Integer OpeningBal28LessThan = null; public Integer OpeningBal28LessThanOrEqualTo = null; public Integer OpeningBal28NotEqualTo = null; public ArrayList OpeningBal28Between = null; public ArrayList OpeningBal28In = null; public Integer OpeningBal29 = null; public Integer OpeningBal29GreaterThanOrEqualTo = null; public Integer OpeningBal29GreaterThan = null; public Integer OpeningBal29LessThan = null; public Integer OpeningBal29LessThanOrEqualTo = null; public Integer OpeningBal29NotEqualTo = null; public ArrayList OpeningBal29Between = null; public ArrayList OpeningBal29In = null; public Integer OpeningBal30 = null; public Integer OpeningBal30GreaterThanOrEqualTo = null; public Integer OpeningBal30GreaterThan = null; public Integer OpeningBal30LessThan = null; public Integer OpeningBal30LessThanOrEqualTo = null; public Integer OpeningBal30NotEqualTo = null; public ArrayList OpeningBal30Between = null; public ArrayList OpeningBal30In = null; public Integer OpeningBal31 = null; public Integer OpeningBal31GreaterThanOrEqualTo = null; public Integer OpeningBal31GreaterThan = null; public Integer OpeningBal31LessThan = null; public Integer OpeningBal31LessThanOrEqualTo = null; public Integer OpeningBal31NotEqualTo = null; public ArrayList OpeningBal31Between = null; public ArrayList OpeningBal31In = null; public Integer OpeningBal32 = null; public Integer OpeningBal32GreaterThanOrEqualTo = null; public Integer OpeningBal32GreaterThan = null; public Integer OpeningBal32LessThan = null; public Integer OpeningBal32LessThanOrEqualTo = null; public Integer OpeningBal32NotEqualTo = null; public ArrayList OpeningBal32Between = null; public ArrayList OpeningBal32In = null; public Integer OpeningBal33 = null; public Integer OpeningBal33GreaterThanOrEqualTo = null; public Integer OpeningBal33GreaterThan = null; public Integer OpeningBal33LessThan = null; public Integer OpeningBal33LessThanOrEqualTo = null; public Integer OpeningBal33NotEqualTo = null; public ArrayList OpeningBal33Between = null; public ArrayList OpeningBal33In = null; public Integer OpeningBal34 = null; public Integer OpeningBal34GreaterThanOrEqualTo = null; public Integer OpeningBal34GreaterThan = null; public Integer OpeningBal34LessThan = null; public Integer OpeningBal34LessThanOrEqualTo = null; public Integer OpeningBal34NotEqualTo = null; public ArrayList OpeningBal34Between = null; public ArrayList OpeningBal34In = null; public Integer OpeningBal35 = null; public Integer OpeningBal35GreaterThanOrEqualTo = null; public Integer OpeningBal35GreaterThan = null; public Integer OpeningBal35LessThan = null; public Integer OpeningBal35LessThanOrEqualTo = null; public Integer OpeningBal35NotEqualTo = null; public ArrayList OpeningBal35Between = null; public ArrayList OpeningBal35In = null; public Integer OpeningBal36 = null; public Integer OpeningBal36GreaterThanOrEqualTo = null; public Integer OpeningBal36GreaterThan = null; public Integer OpeningBal36LessThan = null; public Integer OpeningBal36LessThanOrEqualTo = null; public Integer OpeningBal36NotEqualTo = null; public ArrayList OpeningBal36Between = null; public ArrayList OpeningBal36In = null; public Integer OpeningBal37 = null; public Integer OpeningBal37GreaterThanOrEqualTo = null; public Integer OpeningBal37GreaterThan = null; public Integer OpeningBal37LessThan = null; public Integer OpeningBal37LessThanOrEqualTo = null; public Integer OpeningBal37NotEqualTo = null; public ArrayList OpeningBal37Between = null; public ArrayList OpeningBal37In = null; public Integer OpeningBal38 = null; public Integer OpeningBal38GreaterThanOrEqualTo = null; public Integer OpeningBal38GreaterThan = null; public Integer OpeningBal38LessThan = null; public Integer OpeningBal38LessThanOrEqualTo = null; public Integer OpeningBal38NotEqualTo = null; public ArrayList OpeningBal38Between = null; public ArrayList OpeningBal38In = null; public Integer OpeningBal39 = null; public Integer OpeningBal39GreaterThanOrEqualTo = null; public Integer OpeningBal39GreaterThan = null; public Integer OpeningBal39LessThan = null; public Integer OpeningBal39LessThanOrEqualTo = null; public Integer OpeningBal39NotEqualTo = null; public ArrayList OpeningBal39Between = null; public ArrayList OpeningBal39In = null; public Integer OpeningBal40 = null; public Integer OpeningBal40GreaterThanOrEqualTo = null; public Integer OpeningBal40GreaterThan = null; public Integer OpeningBal40LessThan = null; public Integer OpeningBal40LessThanOrEqualTo = null; public Integer OpeningBal40NotEqualTo = null; public ArrayList OpeningBal40Between = null; public ArrayList OpeningBal40In = null; public Integer OpeningBal41 = null; public Integer OpeningBal41GreaterThanOrEqualTo = null; public Integer OpeningBal41GreaterThan = null; public Integer OpeningBal41LessThan = null; public Integer OpeningBal41LessThanOrEqualTo = null; public Integer OpeningBal41NotEqualTo = null; public ArrayList OpeningBal41Between = null; public ArrayList OpeningBal41In = null; public Integer OpeningBal42 = null; public Integer OpeningBal42GreaterThanOrEqualTo = null; public Integer OpeningBal42GreaterThan = null; public Integer OpeningBal42LessThan = null; public Integer OpeningBal42LessThanOrEqualTo = null; public Integer OpeningBal42NotEqualTo = null; public ArrayList OpeningBal42Between = null; public ArrayList OpeningBal42In = null; public Integer OpeningBal43 = null; public Integer OpeningBal43GreaterThanOrEqualTo = null; public Integer OpeningBal43GreaterThan = null; public Integer OpeningBal43LessThan = null; public Integer OpeningBal43LessThanOrEqualTo = null; public Integer OpeningBal43NotEqualTo = null; public ArrayList OpeningBal43Between = null; public ArrayList OpeningBal43In = null; public Integer OpeningBal44 = null; public Integer OpeningBal44GreaterThanOrEqualTo = null; public Integer OpeningBal44GreaterThan = null; public Integer OpeningBal44LessThan = null; public Integer OpeningBal44LessThanOrEqualTo = null; public Integer OpeningBal44NotEqualTo = null; public ArrayList OpeningBal44Between = null; public ArrayList OpeningBal44In = null; public Integer OpeningBal45 = null; public Integer OpeningBal45GreaterThanOrEqualTo = null; public Integer OpeningBal45GreaterThan = null; public Integer OpeningBal45LessThan = null; public Integer OpeningBal45LessThanOrEqualTo = null; public Integer OpeningBal45NotEqualTo = null; public ArrayList OpeningBal45Between = null; public ArrayList OpeningBal45In = null; public Integer OpeningBal46 = null; public Integer OpeningBal46GreaterThanOrEqualTo = null; public Integer OpeningBal46GreaterThan = null; public Integer OpeningBal46LessThan = null; public Integer OpeningBal46LessThanOrEqualTo = null; public Integer OpeningBal46NotEqualTo = null; public ArrayList OpeningBal46Between = null; public ArrayList OpeningBal46In = null; public Integer OpeningBal47 = null; public Integer OpeningBal47GreaterThanOrEqualTo = null; public Integer OpeningBal47GreaterThan = null; public Integer OpeningBal47LessThan = null; public Integer OpeningBal47LessThanOrEqualTo = null; public Integer OpeningBal47NotEqualTo = null; public ArrayList OpeningBal47Between = null; public ArrayList OpeningBal47In = null; public Integer OpeningBal48 = null; public Integer OpeningBal48GreaterThanOrEqualTo = null; public Integer OpeningBal48GreaterThan = null; public Integer OpeningBal48LessThan = null; public Integer OpeningBal48LessThanOrEqualTo = null; public Integer OpeningBal48NotEqualTo = null; public ArrayList OpeningBal48Between = null; public ArrayList OpeningBal48In = null; public Integer OpeningBal49 = null; public Integer OpeningBal49GreaterThanOrEqualTo = null; public Integer OpeningBal49GreaterThan = null; public Integer OpeningBal49LessThan = null; public Integer OpeningBal49LessThanOrEqualTo = null; public Integer OpeningBal49NotEqualTo = null; public ArrayList OpeningBal49Between = null; public ArrayList OpeningBal49In = null; public Integer OpeningBal50 = null; public Integer OpeningBal50GreaterThanOrEqualTo = null; public Integer OpeningBal50GreaterThan = null; public Integer OpeningBal50LessThan = null; public Integer OpeningBal50LessThanOrEqualTo = null; public Integer OpeningBal50NotEqualTo = null; public ArrayList OpeningBal50Between = null; public ArrayList OpeningBal50In = null; public Integer OpeningBal51 = null; public Integer OpeningBal51GreaterThanOrEqualTo = null; public Integer OpeningBal51GreaterThan = null; public Integer OpeningBal51LessThan = null; public Integer OpeningBal51LessThanOrEqualTo = null; public Integer OpeningBal51NotEqualTo = null; public ArrayList OpeningBal51Between = null; public ArrayList OpeningBal51In = null; public Integer OpeningBal52 = null; public Integer OpeningBal52GreaterThanOrEqualTo = null; public Integer OpeningBal52GreaterThan = null; public Integer OpeningBal52LessThan = null; public Integer OpeningBal52LessThanOrEqualTo = null; public Integer OpeningBal52NotEqualTo = null; public ArrayList OpeningBal52Between = null; public ArrayList OpeningBal52In = null; public Integer OpeningBal53 = null; public Integer OpeningBal53GreaterThanOrEqualTo = null; public Integer OpeningBal53GreaterThan = null; public Integer OpeningBal53LessThan = null; public Integer OpeningBal53LessThanOrEqualTo = null; public Integer OpeningBal53NotEqualTo = null; public ArrayList OpeningBal53Between = null; public ArrayList OpeningBal53In = null; public Short PeriodType = null; public Short PeriodTypeGreaterThanOrEqualTo = null; public Short PeriodTypeGreaterThan = null; public Short PeriodTypeLessThan = null; public Short PeriodTypeLessThanOrEqualTo = null; public Short PeriodTypeNotEqualTo = null; public ArrayList PeriodTypeBetween = null; public ArrayList PeriodTypeIn = null; public String FXGainLossLedgerID = null; public String FXGainLossLedgerIDStartsWith = null; public String FXGainLossLedgerIDEndsWith = null; public String FXGainLossLedgerIDContains = null; public String FXGainLossLedgerIDLike = null; public ArrayList FXGainLossLedgerIDBetween = null; public ArrayList FXGainLossLedgerIDIn = null; public String FXUnRealizedLedgerID = null; public String FXUnRealizedLedgerIDStartsWith = null; public String FXUnRealizedLedgerIDEndsWith = null; public String FXUnRealizedLedgerIDContains = null; public String FXUnRealizedLedgerIDLike = null; public ArrayList FXUnRealizedLedgerIDBetween = null; public ArrayList FXUnRealizedLedgerIDIn = null; public String CustomField1 = null; public String CustomField1StartsWith = null; public String CustomField1EndsWith = null; public String CustomField1Contains = null; public String CustomField1Like = null; public ArrayList CustomField1Between = null; public ArrayList CustomField1In = null; public String CustomField2 = null; public String CustomField2StartsWith = null; public String CustomField2EndsWith = null; public String CustomField2Contains = null; public String CustomField2Like = null; public ArrayList CustomField2Between = null; public ArrayList CustomField2In = null; public String CustomField3 = null; public String CustomField3StartsWith = null; public String CustomField3EndsWith = null; public String CustomField3Contains = null; public String CustomField3Like = null; public ArrayList CustomField3Between = null; public ArrayList CustomField3In = null; public String CustomField4 = null; public String CustomField4StartsWith = null; public String CustomField4EndsWith = null; public String CustomField4Contains = null; public String CustomField4Like = null; public ArrayList CustomField4Between = null; public ArrayList CustomField4In = null; public String getCreditorID() { return CreditorID; } public CR_Main2Query setCreditorID(String value) { this.CreditorID = value; return this; } public String getCreditorIDStartsWith() { return CreditorIDStartsWith; } public CR_Main2Query setCreditorIDStartsWith(String value) { this.CreditorIDStartsWith = value; return this; } public String getCreditorIDEndsWith() { return CreditorIDEndsWith; } public CR_Main2Query setCreditorIDEndsWith(String value) { this.CreditorIDEndsWith = value; return this; } public String getCreditorIDContains() { return CreditorIDContains; } public CR_Main2Query setCreditorIDContains(String value) { this.CreditorIDContains = value; return this; } public String getCreditorIDLike() { return CreditorIDLike; } public CR_Main2Query setCreditorIDLike(String value) { this.CreditorIDLike = value; return this; } public ArrayList getCreditorIDBetween() { return CreditorIDBetween; } public CR_Main2Query setCreditorIDBetween(ArrayList value) { this.CreditorIDBetween = value; return this; } public ArrayList getCreditorIDIn() { return CreditorIDIn; } public CR_Main2Query setCreditorIDIn(ArrayList value) { this.CreditorIDIn = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public CR_Main2Query setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getLastSavedDateTimeGreaterThanOrEqualTo() { return LastSavedDateTimeGreaterThanOrEqualTo; } public CR_Main2Query setLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.LastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeGreaterThan() { return LastSavedDateTimeGreaterThan; } public CR_Main2Query setLastSavedDateTimeGreaterThan(Date value) { this.LastSavedDateTimeGreaterThan = value; return this; } public Date getLastSavedDateTimeLessThan() { return LastSavedDateTimeLessThan; } public CR_Main2Query setLastSavedDateTimeLessThan(Date value) { this.LastSavedDateTimeLessThan = value; return this; } public Date getLastSavedDateTimeLessThanOrEqualTo() { return LastSavedDateTimeLessThanOrEqualTo; } public CR_Main2Query setLastSavedDateTimeLessThanOrEqualTo(Date value) { this.LastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeNotEqualTo() { return LastSavedDateTimeNotEqualTo; } public CR_Main2Query setLastSavedDateTimeNotEqualTo(Date value) { this.LastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getLastSavedDateTimeBetween() { return LastSavedDateTimeBetween; } public CR_Main2Query setLastSavedDateTimeBetween(ArrayList value) { this.LastSavedDateTimeBetween = value; return this; } public ArrayList getLastSavedDateTimeIn() { return LastSavedDateTimeIn; } public CR_Main2Query setLastSavedDateTimeIn(ArrayList value) { this.LastSavedDateTimeIn = value; return this; } public String getC1() { return C1; } public CR_Main2Query setC1(String value) { this.C1 = value; return this; } public String getC1StartsWith() { return C1StartsWith; } public CR_Main2Query setC1StartsWith(String value) { this.C1StartsWith = value; return this; } public String getC1EndsWith() { return C1EndsWith; } public CR_Main2Query setC1EndsWith(String value) { this.C1EndsWith = value; return this; } public String getC1Contains() { return C1Contains; } public CR_Main2Query setC1Contains(String value) { this.C1Contains = value; return this; } public String getC1Like() { return C1Like; } public CR_Main2Query setC1Like(String value) { this.C1Like = value; return this; } public ArrayList getC1Between() { return C1Between; } public CR_Main2Query setC1Between(ArrayList value) { this.C1Between = value; return this; } public ArrayList getC1In() { return C1In; } public CR_Main2Query setC1In(ArrayList value) { this.C1In = value; return this; } public String getC2() { return C2; } public CR_Main2Query setC2(String value) { this.C2 = value; return this; } public String getC2StartsWith() { return C2StartsWith; } public CR_Main2Query setC2StartsWith(String value) { this.C2StartsWith = value; return this; } public String getC2EndsWith() { return C2EndsWith; } public CR_Main2Query setC2EndsWith(String value) { this.C2EndsWith = value; return this; } public String getC2Contains() { return C2Contains; } public CR_Main2Query setC2Contains(String value) { this.C2Contains = value; return this; } public String getC2Like() { return C2Like; } public CR_Main2Query setC2Like(String value) { this.C2Like = value; return this; } public ArrayList getC2Between() { return C2Between; } public CR_Main2Query setC2Between(ArrayList value) { this.C2Between = value; return this; } public ArrayList getC2In() { return C2In; } public CR_Main2Query setC2In(ArrayList value) { this.C2In = value; return this; } public String getC3() { return C3; } public CR_Main2Query setC3(String value) { this.C3 = value; return this; } public String getC3StartsWith() { return C3StartsWith; } public CR_Main2Query setC3StartsWith(String value) { this.C3StartsWith = value; return this; } public String getC3EndsWith() { return C3EndsWith; } public CR_Main2Query setC3EndsWith(String value) { this.C3EndsWith = value; return this; } public String getC3Contains() { return C3Contains; } public CR_Main2Query setC3Contains(String value) { this.C3Contains = value; return this; } public String getC3Like() { return C3Like; } public CR_Main2Query setC3Like(String value) { this.C3Like = value; return this; } public ArrayList getC3Between() { return C3Between; } public CR_Main2Query setC3Between(ArrayList value) { this.C3Between = value; return this; } public ArrayList getC3In() { return C3In; } public CR_Main2Query setC3In(ArrayList value) { this.C3In = value; return this; } public String getC4() { return C4; } public CR_Main2Query setC4(String value) { this.C4 = value; return this; } public String getC4StartsWith() { return C4StartsWith; } public CR_Main2Query setC4StartsWith(String value) { this.C4StartsWith = value; return this; } public String getC4EndsWith() { return C4EndsWith; } public CR_Main2Query setC4EndsWith(String value) { this.C4EndsWith = value; return this; } public String getC4Contains() { return C4Contains; } public CR_Main2Query setC4Contains(String value) { this.C4Contains = value; return this; } public String getC4Like() { return C4Like; } public CR_Main2Query setC4Like(String value) { this.C4Like = value; return this; } public ArrayList getC4Between() { return C4Between; } public CR_Main2Query setC4Between(ArrayList value) { this.C4Between = value; return this; } public ArrayList getC4In() { return C4In; } public CR_Main2Query setC4In(ArrayList value) { this.C4In = value; return this; } public String getC5() { return C5; } public CR_Main2Query setC5(String value) { this.C5 = value; return this; } public String getC5StartsWith() { return C5StartsWith; } public CR_Main2Query setC5StartsWith(String value) { this.C5StartsWith = value; return this; } public String getC5EndsWith() { return C5EndsWith; } public CR_Main2Query setC5EndsWith(String value) { this.C5EndsWith = value; return this; } public String getC5Contains() { return C5Contains; } public CR_Main2Query setC5Contains(String value) { this.C5Contains = value; return this; } public String getC5Like() { return C5Like; } public CR_Main2Query setC5Like(String value) { this.C5Like = value; return this; } public ArrayList getC5Between() { return C5Between; } public CR_Main2Query setC5Between(ArrayList value) { this.C5Between = value; return this; } public ArrayList getC5In() { return C5In; } public CR_Main2Query setC5In(ArrayList value) { this.C5In = value; return this; } public String getC7() { return C7; } public CR_Main2Query setC7(String value) { this.C7 = value; return this; } public String getC7StartsWith() { return C7StartsWith; } public CR_Main2Query setC7StartsWith(String value) { this.C7StartsWith = value; return this; } public String getC7EndsWith() { return C7EndsWith; } public CR_Main2Query setC7EndsWith(String value) { this.C7EndsWith = value; return this; } public String getC7Contains() { return C7Contains; } public CR_Main2Query setC7Contains(String value) { this.C7Contains = value; return this; } public String getC7Like() { return C7Like; } public CR_Main2Query setC7Like(String value) { this.C7Like = value; return this; } public ArrayList getC7Between() { return C7Between; } public CR_Main2Query setC7Between(ArrayList value) { this.C7Between = value; return this; } public ArrayList getC7In() { return C7In; } public CR_Main2Query setC7In(ArrayList value) { this.C7In = value; return this; } public String getC8() { return C8; } public CR_Main2Query setC8(String value) { this.C8 = value; return this; } public String getC8StartsWith() { return C8StartsWith; } public CR_Main2Query setC8StartsWith(String value) { this.C8StartsWith = value; return this; } public String getC8EndsWith() { return C8EndsWith; } public CR_Main2Query setC8EndsWith(String value) { this.C8EndsWith = value; return this; } public String getC8Contains() { return C8Contains; } public CR_Main2Query setC8Contains(String value) { this.C8Contains = value; return this; } public String getC8Like() { return C8Like; } public CR_Main2Query setC8Like(String value) { this.C8Like = value; return this; } public ArrayList getC8Between() { return C8Between; } public CR_Main2Query setC8Between(ArrayList value) { this.C8Between = value; return this; } public ArrayList getC8In() { return C8In; } public CR_Main2Query setC8In(ArrayList value) { this.C8In = value; return this; } public String getC10() { return C10; } public CR_Main2Query setC10(String value) { this.C10 = value; return this; } public String getC10StartsWith() { return C10StartsWith; } public CR_Main2Query setC10StartsWith(String value) { this.C10StartsWith = value; return this; } public String getC10EndsWith() { return C10EndsWith; } public CR_Main2Query setC10EndsWith(String value) { this.C10EndsWith = value; return this; } public String getC10Contains() { return C10Contains; } public CR_Main2Query setC10Contains(String value) { this.C10Contains = value; return this; } public String getC10Like() { return C10Like; } public CR_Main2Query setC10Like(String value) { this.C10Like = value; return this; } public ArrayList getC10Between() { return C10Between; } public CR_Main2Query setC10Between(ArrayList value) { this.C10Between = value; return this; } public ArrayList getC10In() { return C10In; } public CR_Main2Query setC10In(ArrayList value) { this.C10In = value; return this; } public String getC11() { return C11; } public CR_Main2Query setC11(String value) { this.C11 = value; return this; } public String getC11StartsWith() { return C11StartsWith; } public CR_Main2Query setC11StartsWith(String value) { this.C11StartsWith = value; return this; } public String getC11EndsWith() { return C11EndsWith; } public CR_Main2Query setC11EndsWith(String value) { this.C11EndsWith = value; return this; } public String getC11Contains() { return C11Contains; } public CR_Main2Query setC11Contains(String value) { this.C11Contains = value; return this; } public String getC11Like() { return C11Like; } public CR_Main2Query setC11Like(String value) { this.C11Like = value; return this; } public ArrayList getC11Between() { return C11Between; } public CR_Main2Query setC11Between(ArrayList value) { this.C11Between = value; return this; } public ArrayList getC11In() { return C11In; } public CR_Main2Query setC11In(ArrayList value) { this.C11In = value; return this; } public String getC12() { return C12; } public CR_Main2Query setC12(String value) { this.C12 = value; return this; } public String getC12StartsWith() { return C12StartsWith; } public CR_Main2Query setC12StartsWith(String value) { this.C12StartsWith = value; return this; } public String getC12EndsWith() { return C12EndsWith; } public CR_Main2Query setC12EndsWith(String value) { this.C12EndsWith = value; return this; } public String getC12Contains() { return C12Contains; } public CR_Main2Query setC12Contains(String value) { this.C12Contains = value; return this; } public String getC12Like() { return C12Like; } public CR_Main2Query setC12Like(String value) { this.C12Like = value; return this; } public ArrayList getC12Between() { return C12Between; } public CR_Main2Query setC12Between(ArrayList value) { this.C12Between = value; return this; } public ArrayList getC12In() { return C12In; } public CR_Main2Query setC12In(ArrayList value) { this.C12In = value; return this; } public Integer getOpeningBal1() { return OpeningBal1; } public CR_Main2Query setOpeningBal1(Integer value) { this.OpeningBal1 = value; return this; } public Integer getOpeningBal1GreaterThanOrEqualTo() { return OpeningBal1GreaterThanOrEqualTo; } public CR_Main2Query setOpeningBal1GreaterThanOrEqualTo(Integer value) { this.OpeningBal1GreaterThanOrEqualTo = value; return this; } public Integer getOpeningBal1GreaterThan() { return OpeningBal1GreaterThan; } public CR_Main2Query setOpeningBal1GreaterThan(Integer value) { this.OpeningBal1GreaterThan = value; return this; } public Integer getOpeningBal1LessThan() { return OpeningBal1LessThan; } public CR_Main2Query setOpeningBal1LessThan(Integer value) { this.OpeningBal1LessThan = value; return this; } public Integer getOpeningBal1LessThanOrEqualTo() { return OpeningBal1LessThanOrEqualTo; } public CR_Main2Query setOpeningBal1LessThanOrEqualTo(Integer value) { this.OpeningBal1LessThanOrEqualTo = value; return this; } public Integer getOpeningBal1NotEqualTo() { return OpeningBal1NotEqualTo; } public CR_Main2Query setOpeningBal1NotEqualTo(Integer value) { this.OpeningBal1NotEqualTo = value; return this; } public ArrayList getOpeningBal1Between() { return OpeningBal1Between; } public CR_Main2Query setOpeningBal1Between(ArrayList value) { this.OpeningBal1Between = value; return this; } public ArrayList getOpeningBal1In() { return OpeningBal1In; } public CR_Main2Query setOpeningBal1In(ArrayList value) { this.OpeningBal1In = value; return this; } public Integer getOpeningBal2() { return OpeningBal2; } public CR_Main2Query setOpeningBal2(Integer value) { this.OpeningBal2 = value; return this; } public Integer getOpeningBal2GreaterThanOrEqualTo() { return OpeningBal2GreaterThanOrEqualTo; } public CR_Main2Query setOpeningBal2GreaterThanOrEqualTo(Integer value) { this.OpeningBal2GreaterThanOrEqualTo = value; return this; } public Integer getOpeningBal2GreaterThan() { return OpeningBal2GreaterThan; } public CR_Main2Query setOpeningBal2GreaterThan(Integer value) { this.OpeningBal2GreaterThan = value; return this; } public Integer getOpeningBal2LessThan() { return OpeningBal2LessThan; } public CR_Main2Query setOpeningBal2LessThan(Integer value) { this.OpeningBal2LessThan = value; return this; } public Integer getOpeningBal2LessThanOrEqualTo() { return OpeningBal2LessThanOrEqualTo; } public CR_Main2Query setOpeningBal2LessThanOrEqualTo(Integer value) { this.OpeningBal2LessThanOrEqualTo = value; return this; } public Integer getOpeningBal2NotEqualTo() { return OpeningBal2NotEqualTo; } public CR_Main2Query setOpeningBal2NotEqualTo(Integer value) { this.OpeningBal2NotEqualTo = value; return this; } public ArrayList getOpeningBal2Between() { return OpeningBal2Between; } public CR_Main2Query setOpeningBal2Between(ArrayList value) { this.OpeningBal2Between = value; return this; } public ArrayList getOpeningBal2In() { return OpeningBal2In; } public CR_Main2Query setOpeningBal2In(ArrayList value) { this.OpeningBal2In = value; return this; } public Integer getOpeningBal3() { return OpeningBal3; } public CR_Main2Query setOpeningBal3(Integer value) { this.OpeningBal3 = value; return this; } public Integer getOpeningBal3GreaterThanOrEqualTo() { return OpeningBal3GreaterThanOrEqualTo; } public CR_Main2Query setOpeningBal3GreaterThanOrEqualTo(Integer value) { this.OpeningBal3GreaterThanOrEqualTo = value; return this; } public Integer getOpeningBal3GreaterThan() { return OpeningBal3GreaterThan; } public CR_Main2Query setOpeningBal3GreaterThan(Integer value) { this.OpeningBal3GreaterThan = value; return this; } public Integer getOpeningBal3LessThan() { return OpeningBal3LessThan; } public CR_Main2Query setOpeningBal3LessThan(Integer value) { this.OpeningBal3LessThan = value; return this; } public Integer getOpeningBal3LessThanOrEqualTo() { return OpeningBal3LessThanOrEqualTo; } public CR_Main2Query setOpeningBal3LessThanOrEqualTo(Integer value) { this.OpeningBal3LessThanOrEqualTo = value; return this; } public Integer getOpeningBal3NotEqualTo() { return OpeningBal3NotEqualTo; } public CR_Main2Query setOpeningBal3NotEqualTo(Integer value) { this.OpeningBal3NotEqualTo = value; return this; } public ArrayList getOpeningBal3Between() { return OpeningBal3Between; } public CR_Main2Query setOpeningBal3Between(ArrayList value) { this.OpeningBal3Between = value; return this; } public ArrayList getOpeningBal3In() { return OpeningBal3In; } public CR_Main2Query setOpeningBal3In(ArrayList value) { this.OpeningBal3In = value; return this; } public Integer getOpeningBal4() { return OpeningBal4; } public CR_Main2Query setOpeningBal4(Integer value) { this.OpeningBal4 = value; return this; } public Integer getOpeningBal4GreaterThanOrEqualTo() { return OpeningBal4GreaterThanOrEqualTo; } public CR_Main2Query setOpeningBal4GreaterThanOrEqualTo(Integer value) { this.OpeningBal4GreaterThanOrEqualTo = value; return this; } public Integer getOpeningBal4GreaterThan() { return OpeningBal4GreaterThan; } public CR_Main2Query setOpeningBal4GreaterThan(Integer value) { this.OpeningBal4GreaterThan = value; return this; } public Integer getOpeningBal4LessThan() { return OpeningBal4LessThan; } public CR_Main2Query setOpeningBal4LessThan(Integer value) { this.OpeningBal4LessThan = value; return this; } public Integer getOpeningBal4LessThanOrEqualTo() { return OpeningBal4LessThanOrEqualTo; } public CR_Main2Query setOpeningBal4LessThanOrEqualTo(Integer value) { this.OpeningBal4LessThanOrEqualTo = value; return this; } public Integer getOpeningBal4NotEqualTo() { return OpeningBal4NotEqualTo; } public CR_Main2Query setOpeningBal4NotEqualTo(Integer value) { this.OpeningBal4NotEqualTo = value; return this; } public ArrayList getOpeningBal4Between() { return OpeningBal4Between; } public CR_Main2Query setOpeningBal4Between(ArrayList value) { this.OpeningBal4Between = value; return this; } public ArrayList getOpeningBal4In() { return OpeningBal4In; } public CR_Main2Query setOpeningBal4In(ArrayList value) { this.OpeningBal4In = value; return this; } public Integer getOpeningBal5() { return OpeningBal5; } public CR_Main2Query setOpeningBal5(Integer value) { this.OpeningBal5 = value; return this; } public Integer getOpeningBal5GreaterThanOrEqualTo() { return OpeningBal5GreaterThanOrEqualTo; } public CR_Main2Query setOpeningBal5GreaterThanOrEqualTo(Integer value) { this.OpeningBal5GreaterThanOrEqualTo = value; return this; } public Integer getOpeningBal5GreaterThan() { return OpeningBal5GreaterThan; } public CR_Main2Query setOpeningBal5GreaterThan(Integer value) { this.OpeningBal5GreaterThan = value; return this; } public Integer getOpeningBal5LessThan() { return OpeningBal5LessThan; } public CR_Main2Query setOpeningBal5LessThan(Integer value) { this.OpeningBal5LessThan = value; return this; } public Integer getOpeningBal5LessThanOrEqualTo() { return OpeningBal5LessThanOrEqualTo; } public CR_Main2Query setOpeningBal5LessThanOrEqualTo(Integer value) { this.OpeningBal5LessThanOrEqualTo = value; return this; } public Integer getOpeningBal5NotEqualTo() { return OpeningBal5NotEqualTo; } public CR_Main2Query setOpeningBal5NotEqualTo(Integer value) { this.OpeningBal5NotEqualTo = value; return this; } public ArrayList getOpeningBal5Between() { return OpeningBal5Between; } public CR_Main2Query setOpeningBal5Between(ArrayList value) { this.OpeningBal5Between = value; return this; } public ArrayList getOpeningBal5In() { return OpeningBal5In; } public CR_Main2Query setOpeningBal5In(ArrayList value) { this.OpeningBal5In = value; return this; } public Integer getOpeningBal6() { return OpeningBal6; } public CR_Main2Query setOpeningBal6(Integer value) { this.OpeningBal6 = value; return this; } public Integer getOpeningBal6GreaterThanOrEqualTo() { return OpeningBal6GreaterThanOrEqualTo; } public CR_Main2Query setOpeningBal6GreaterThanOrEqualTo(Integer value) { this.OpeningBal6GreaterThanOrEqualTo = value; return this; } public Integer getOpeningBal6GreaterThan() { return OpeningBal6GreaterThan; } public CR_Main2Query setOpeningBal6GreaterThan(Integer value) { this.OpeningBal6GreaterThan = value; return this; } public Integer getOpeningBal6LessThan() { return OpeningBal6LessThan; } public CR_Main2Query setOpeningBal6LessThan(Integer value) { this.OpeningBal6LessThan = value; return this; } public Integer getOpeningBal6LessThanOrEqualTo() { return OpeningBal6LessThanOrEqualTo; } public CR_Main2Query setOpeningBal6LessThanOrEqualTo(Integer value) { this.OpeningBal6LessThanOrEqualTo = value; return this; } public Integer getOpeningBal6NotEqualTo() { return OpeningBal6NotEqualTo; } public CR_Main2Query setOpeningBal6NotEqualTo(Integer value) { this.OpeningBal6NotEqualTo = value; return this; } public ArrayList getOpeningBal6Between() { return OpeningBal6Between; } public CR_Main2Query setOpeningBal6Between(ArrayList value) { this.OpeningBal6Between = value; return this; } public ArrayList getOpeningBal6In() { return OpeningBal6In; } public CR_Main2Query setOpeningBal6In(ArrayList value) { this.OpeningBal6In = value; return this; } public Integer getOpeningBal7() { return OpeningBal7; } public CR_Main2Query setOpeningBal7(Integer value) { this.OpeningBal7 = value; return this; } public Integer getOpeningBal7GreaterThanOrEqualTo() { return OpeningBal7GreaterThanOrEqualTo; } public CR_Main2Query setOpeningBal7GreaterThanOrEqualTo(Integer value) { this.OpeningBal7GreaterThanOrEqualTo = value; return this; } public Integer getOpeningBal7GreaterThan() { return OpeningBal7GreaterThan; } public CR_Main2Query setOpeningBal7GreaterThan(Integer value) { this.OpeningBal7GreaterThan = value; return this; } public Integer getOpeningBal7LessThan() { return OpeningBal7LessThan; } public CR_Main2Query setOpeningBal7LessThan(Integer value) { this.OpeningBal7LessThan = value; return this; } public Integer getOpeningBal7LessThanOrEqualTo() { return OpeningBal7LessThanOrEqualTo; } public CR_Main2Query setOpeningBal7LessThanOrEqualTo(Integer value) { this.OpeningBal7LessThanOrEqualTo = value; return this; } public Integer getOpeningBal7NotEqualTo() { return OpeningBal7NotEqualTo; } public CR_Main2Query setOpeningBal7NotEqualTo(Integer value) { this.OpeningBal7NotEqualTo = value; return this; } public ArrayList getOpeningBal7Between() { return OpeningBal7Between; } public CR_Main2Query setOpeningBal7Between(ArrayList value) { this.OpeningBal7Between = value; return this; } public ArrayList getOpeningBal7In() { return OpeningBal7In; } public CR_Main2Query setOpeningBal7In(ArrayList value) { this.OpeningBal7In = value; return this; } public Integer getOpeningBal8() { return OpeningBal8; } public CR_Main2Query setOpeningBal8(Integer value) { this.OpeningBal8 = value; return this; } public Integer getOpeningBal8GreaterThanOrEqualTo() { return OpeningBal8GreaterThanOrEqualTo; } public CR_Main2Query setOpeningBal8GreaterThanOrEqualTo(Integer value) { this.OpeningBal8GreaterThanOrEqualTo = value; return this; } public Integer getOpeningBal8GreaterThan() { return OpeningBal8GreaterThan; } public CR_Main2Query setOpeningBal8GreaterThan(Integer value) { this.OpeningBal8GreaterThan = value; return this; } public Integer getOpeningBal8LessThan() { return OpeningBal8LessThan; } public CR_Main2Query setOpeningBal8LessThan(Integer value) { this.OpeningBal8LessThan = value; return this; } public Integer getOpeningBal8LessThanOrEqualTo() { return OpeningBal8LessThanOrEqualTo; } public CR_Main2Query setOpeningBal8LessThanOrEqualTo(Integer value) { this.OpeningBal8LessThanOrEqualTo = value; return this; } public Integer getOpeningBal8NotEqualTo() { return OpeningBal8NotEqualTo; } public CR_Main2Query setOpeningBal8NotEqualTo(Integer value) { this.OpeningBal8NotEqualTo = value; return this; } public ArrayList getOpeningBal8Between() { return OpeningBal8Between; } public CR_Main2Query setOpeningBal8Between(ArrayList value) { this.OpeningBal8Between = value; return this; } public ArrayList getOpeningBal8In() { return OpeningBal8In; } public CR_Main2Query setOpeningBal8In(ArrayList value) { this.OpeningBal8In = value; return this; } public Integer getOpeningBal9() { return OpeningBal9; } public CR_Main2Query setOpeningBal9(Integer value) { this.OpeningBal9 = value; return this; } public Integer getOpeningBal9GreaterThanOrEqualTo() { return OpeningBal9GreaterThanOrEqualTo; } public CR_Main2Query setOpeningBal9GreaterThanOrEqualTo(Integer value) { this.OpeningBal9GreaterThanOrEqualTo = value; return this; } public Integer getOpeningBal9GreaterThan() { return OpeningBal9GreaterThan; } public CR_Main2Query setOpeningBal9GreaterThan(Integer value) { this.OpeningBal9GreaterThan = value; return this; } public Integer getOpeningBal9LessThan() { return OpeningBal9LessThan; } public CR_Main2Query setOpeningBal9LessThan(Integer value) { this.OpeningBal9LessThan = value; return this; } public Integer getOpeningBal9LessThanOrEqualTo() { return OpeningBal9LessThanOrEqualTo; } public CR_Main2Query setOpeningBal9LessThanOrEqualTo(Integer value) { this.OpeningBal9LessThanOrEqualTo = value; return this; } public Integer getOpeningBal9NotEqualTo() { return OpeningBal9NotEqualTo; } public CR_Main2Query setOpeningBal9NotEqualTo(Integer value) { this.OpeningBal9NotEqualTo = value; return this; } public ArrayList getOpeningBal9Between() { return OpeningBal9Between; } public CR_Main2Query setOpeningBal9Between(ArrayList value) { this.OpeningBal9Between = value; return this; } public ArrayList getOpeningBal9In() { return OpeningBal9In; } public CR_Main2Query setOpeningBal9In(ArrayList value) { this.OpeningBal9In = value; return this; } public Integer getOpeningBal10() { return OpeningBal10; } public CR_Main2Query setOpeningBal10(Integer value) { this.OpeningBal10 = value; return this; } public Integer getOpeningBal10GreaterThanOrEqualTo() { return OpeningBal10GreaterThanOrEqualTo; } public CR_Main2Query setOpeningBal10GreaterThanOrEqualTo(Integer value) { this.OpeningBal10GreaterThanOrEqualTo = value; return this; } public Integer getOpeningBal10GreaterThan() { return OpeningBal10GreaterThan; } public CR_Main2Query setOpeningBal10GreaterThan(Integer value) { this.OpeningBal10GreaterThan = value; return this; } public Integer getOpeningBal10LessThan() { return OpeningBal10LessThan; } public CR_Main2Query setOpeningBal10LessThan(Integer value) { this.OpeningBal10LessThan = value; return this; } public Integer getOpeningBal10LessThanOrEqualTo() { return OpeningBal10LessThanOrEqualTo; } public CR_Main2Query setOpeningBal10LessThanOrEqualTo(Integer value) { this.OpeningBal10LessThanOrEqualTo = value; return this; } public Integer getOpeningBal10NotEqualTo() { return OpeningBal10NotEqualTo; } public CR_Main2Query setOpeningBal10NotEqualTo(Integer value) { this.OpeningBal10NotEqualTo = value; return this; } public ArrayList getOpeningBal10Between() { return OpeningBal10Between; } public CR_Main2Query setOpeningBal10Between(ArrayList value) { this.OpeningBal10Between = value; return this; } public ArrayList getOpeningBal10In() { return OpeningBal10In; } public CR_Main2Query setOpeningBal10In(ArrayList value) { this.OpeningBal10In = value; return this; } public Integer getOpeningBal11() { return OpeningBal11; } public CR_Main2Query setOpeningBal11(Integer value) { this.OpeningBal11 = value; return this; } public Integer getOpeningBal11GreaterThanOrEqualTo() { return OpeningBal11GreaterThanOrEqualTo; } public CR_Main2Query setOpeningBal11GreaterThanOrEqualTo(Integer value) { this.OpeningBal11GreaterThanOrEqualTo = value; return this; } public Integer getOpeningBal11GreaterThan() { return OpeningBal11GreaterThan; } public CR_Main2Query setOpeningBal11GreaterThan(Integer value) { this.OpeningBal11GreaterThan = value; return this; } public Integer getOpeningBal11LessThan() { return OpeningBal11LessThan; } public CR_Main2Query setOpeningBal11LessThan(Integer value) { this.OpeningBal11LessThan = value; return this; } public Integer getOpeningBal11LessThanOrEqualTo() { return OpeningBal11LessThanOrEqualTo; } public CR_Main2Query setOpeningBal11LessThanOrEqualTo(Integer value) { this.OpeningBal11LessThanOrEqualTo = value; return this; } public Integer getOpeningBal11NotEqualTo() { return OpeningBal11NotEqualTo; } public CR_Main2Query setOpeningBal11NotEqualTo(Integer value) { this.OpeningBal11NotEqualTo = value; return this; } public ArrayList getOpeningBal11Between() { return OpeningBal11Between; } public CR_Main2Query setOpeningBal11Between(ArrayList value) { this.OpeningBal11Between = value; return this; } public ArrayList getOpeningBal11In() { return OpeningBal11In; } public CR_Main2Query setOpeningBal11In(ArrayList value) { this.OpeningBal11In = value; return this; } public Integer getOpeningBal12() { return OpeningBal12; } public CR_Main2Query setOpeningBal12(Integer value) { this.OpeningBal12 = value; return this; } public Integer getOpeningBal12GreaterThanOrEqualTo() { return OpeningBal12GreaterThanOrEqualTo; } public CR_Main2Query setOpeningBal12GreaterThanOrEqualTo(Integer value) { this.OpeningBal12GreaterThanOrEqualTo = value; return this; } public Integer getOpeningBal12GreaterThan() { return OpeningBal12GreaterThan; } public CR_Main2Query setOpeningBal12GreaterThan(Integer value) { this.OpeningBal12GreaterThan = value; return this; } public Integer getOpeningBal12LessThan() { return OpeningBal12LessThan; } public CR_Main2Query setOpeningBal12LessThan(Integer value) { this.OpeningBal12LessThan = value; return this; } public Integer getOpeningBal12LessThanOrEqualTo() { return OpeningBal12LessThanOrEqualTo; } public CR_Main2Query setOpeningBal12LessThanOrEqualTo(Integer value) { this.OpeningBal12LessThanOrEqualTo = value; return this; } public Integer getOpeningBal12NotEqualTo() { return OpeningBal12NotEqualTo; } public CR_Main2Query setOpeningBal12NotEqualTo(Integer value) { this.OpeningBal12NotEqualTo = value; return this; } public ArrayList getOpeningBal12Between() { return OpeningBal12Between; } public CR_Main2Query setOpeningBal12Between(ArrayList value) { this.OpeningBal12Between = value; return this; } public ArrayList getOpeningBal12In() { return OpeningBal12In; } public CR_Main2Query setOpeningBal12In(ArrayList value) { this.OpeningBal12In = value; return this; } public Integer getOpeningBal14() { return OpeningBal14; } public CR_Main2Query setOpeningBal14(Integer value) { this.OpeningBal14 = value; return this; } public Integer getOpeningBal14GreaterThanOrEqualTo() { return OpeningBal14GreaterThanOrEqualTo; } public CR_Main2Query setOpeningBal14GreaterThanOrEqualTo(Integer value) { this.OpeningBal14GreaterThanOrEqualTo = value; return this; } public Integer getOpeningBal14GreaterThan() { return OpeningBal14GreaterThan; } public CR_Main2Query setOpeningBal14GreaterThan(Integer value) { this.OpeningBal14GreaterThan = value; return this; } public Integer getOpeningBal14LessThan() { return OpeningBal14LessThan; } public CR_Main2Query setOpeningBal14LessThan(Integer value) { this.OpeningBal14LessThan = value; return this; } public Integer getOpeningBal14LessThanOrEqualTo() { return OpeningBal14LessThanOrEqualTo; } public CR_Main2Query setOpeningBal14LessThanOrEqualTo(Integer value) { this.OpeningBal14LessThanOrEqualTo = value; return this; } public Integer getOpeningBal14NotEqualTo() { return OpeningBal14NotEqualTo; } public CR_Main2Query setOpeningBal14NotEqualTo(Integer value) { this.OpeningBal14NotEqualTo = value; return this; } public ArrayList getOpeningBal14Between() { return OpeningBal14Between; } public CR_Main2Query setOpeningBal14Between(ArrayList value) { this.OpeningBal14Between = value; return this; } public ArrayList getOpeningBal14In() { return OpeningBal14In; } public CR_Main2Query setOpeningBal14In(ArrayList value) { this.OpeningBal14In = value; return this; } public Integer getOpeningBal15() { return OpeningBal15; } public CR_Main2Query setOpeningBal15(Integer value) { this.OpeningBal15 = value; return this; } public Integer getOpeningBal15GreaterThanOrEqualTo() { return OpeningBal15GreaterThanOrEqualTo; } public CR_Main2Query setOpeningBal15GreaterThanOrEqualTo(Integer value) { this.OpeningBal15GreaterThanOrEqualTo = value; return this; } public Integer getOpeningBal15GreaterThan() { return OpeningBal15GreaterThan; } public CR_Main2Query setOpeningBal15GreaterThan(Integer value) { this.OpeningBal15GreaterThan = value; return this; } public Integer getOpeningBal15LessThan() { return OpeningBal15LessThan; } public CR_Main2Query setOpeningBal15LessThan(Integer value) { this.OpeningBal15LessThan = value; return this; } public Integer getOpeningBal15LessThanOrEqualTo() { return OpeningBal15LessThanOrEqualTo; } public CR_Main2Query setOpeningBal15LessThanOrEqualTo(Integer value) { this.OpeningBal15LessThanOrEqualTo = value; return this; } public Integer getOpeningBal15NotEqualTo() { return OpeningBal15NotEqualTo; } public CR_Main2Query setOpeningBal15NotEqualTo(Integer value) { this.OpeningBal15NotEqualTo = value; return this; } public ArrayList getOpeningBal15Between() { return OpeningBal15Between; } public CR_Main2Query setOpeningBal15Between(ArrayList value) { this.OpeningBal15Between = value; return this; } public ArrayList getOpeningBal15In() { return OpeningBal15In; } public CR_Main2Query setOpeningBal15In(ArrayList value) { this.OpeningBal15In = value; return this; } public Integer getOpeningBal13() { return OpeningBal13; } public CR_Main2Query setOpeningBal13(Integer value) { this.OpeningBal13 = value; return this; } public Integer getOpeningBal13GreaterThanOrEqualTo() { return OpeningBal13GreaterThanOrEqualTo; } public CR_Main2Query setOpeningBal13GreaterThanOrEqualTo(Integer value) { this.OpeningBal13GreaterThanOrEqualTo = value; return this; } public Integer getOpeningBal13GreaterThan() { return OpeningBal13GreaterThan; } public CR_Main2Query setOpeningBal13GreaterThan(Integer value) { this.OpeningBal13GreaterThan = value; return this; } public Integer getOpeningBal13LessThan() { return OpeningBal13LessThan; } public CR_Main2Query setOpeningBal13LessThan(Integer value) { this.OpeningBal13LessThan = value; return this; } public Integer getOpeningBal13LessThanOrEqualTo() { return OpeningBal13LessThanOrEqualTo; } public CR_Main2Query setOpeningBal13LessThanOrEqualTo(Integer value) { this.OpeningBal13LessThanOrEqualTo = value; return this; } public Integer getOpeningBal13NotEqualTo() { return OpeningBal13NotEqualTo; } public CR_Main2Query setOpeningBal13NotEqualTo(Integer value) { this.OpeningBal13NotEqualTo = value; return this; } public ArrayList getOpeningBal13Between() { return OpeningBal13Between; } public CR_Main2Query setOpeningBal13Between(ArrayList value) { this.OpeningBal13Between = value; return this; } public ArrayList getOpeningBal13In() { return OpeningBal13In; } public CR_Main2Query setOpeningBal13In(ArrayList value) { this.OpeningBal13In = value; return this; } public Integer getOpeningBal16() { return OpeningBal16; } public CR_Main2Query setOpeningBal16(Integer value) { this.OpeningBal16 = value; return this; } public Integer getOpeningBal16GreaterThanOrEqualTo() { return OpeningBal16GreaterThanOrEqualTo; } public CR_Main2Query setOpeningBal16GreaterThanOrEqualTo(Integer value) { this.OpeningBal16GreaterThanOrEqualTo = value; return this; } public Integer getOpeningBal16GreaterThan() { return OpeningBal16GreaterThan; } public CR_Main2Query setOpeningBal16GreaterThan(Integer value) { this.OpeningBal16GreaterThan = value; return this; } public Integer getOpeningBal16LessThan() { return OpeningBal16LessThan; } public CR_Main2Query setOpeningBal16LessThan(Integer value) { this.OpeningBal16LessThan = value; return this; } public Integer getOpeningBal16LessThanOrEqualTo() { return OpeningBal16LessThanOrEqualTo; } public CR_Main2Query setOpeningBal16LessThanOrEqualTo(Integer value) { this.OpeningBal16LessThanOrEqualTo = value; return this; } public Integer getOpeningBal16NotEqualTo() { return OpeningBal16NotEqualTo; } public CR_Main2Query setOpeningBal16NotEqualTo(Integer value) { this.OpeningBal16NotEqualTo = value; return this; } public ArrayList getOpeningBal16Between() { return OpeningBal16Between; } public CR_Main2Query setOpeningBal16Between(ArrayList value) { this.OpeningBal16Between = value; return this; } public ArrayList getOpeningBal16In() { return OpeningBal16In; } public CR_Main2Query setOpeningBal16In(ArrayList value) { this.OpeningBal16In = value; return this; } public Integer getOpeningBal17() { return OpeningBal17; } public CR_Main2Query setOpeningBal17(Integer value) { this.OpeningBal17 = value; return this; } public Integer getOpeningBal17GreaterThanOrEqualTo() { return OpeningBal17GreaterThanOrEqualTo; } public CR_Main2Query setOpeningBal17GreaterThanOrEqualTo(Integer value) { this.OpeningBal17GreaterThanOrEqualTo = value; return this; } public Integer getOpeningBal17GreaterThan() { return OpeningBal17GreaterThan; } public CR_Main2Query setOpeningBal17GreaterThan(Integer value) { this.OpeningBal17GreaterThan = value; return this; } public Integer getOpeningBal17LessThan() { return OpeningBal17LessThan; } public CR_Main2Query setOpeningBal17LessThan(Integer value) { this.OpeningBal17LessThan = value; return this; } public Integer getOpeningBal17LessThanOrEqualTo() { return OpeningBal17LessThanOrEqualTo; } public CR_Main2Query setOpeningBal17LessThanOrEqualTo(Integer value) { this.OpeningBal17LessThanOrEqualTo = value; return this; } public Integer getOpeningBal17NotEqualTo() { return OpeningBal17NotEqualTo; } public CR_Main2Query setOpeningBal17NotEqualTo(Integer value) { this.OpeningBal17NotEqualTo = value; return this; } public ArrayList getOpeningBal17Between() { return OpeningBal17Between; } public CR_Main2Query setOpeningBal17Between(ArrayList value) { this.OpeningBal17Between = value; return this; } public ArrayList getOpeningBal17In() { return OpeningBal17In; } public CR_Main2Query setOpeningBal17In(ArrayList value) { this.OpeningBal17In = value; return this; } public Integer getOpeningBal18() { return OpeningBal18; } public CR_Main2Query setOpeningBal18(Integer value) { this.OpeningBal18 = value; return this; } public Integer getOpeningBal18GreaterThanOrEqualTo() { return OpeningBal18GreaterThanOrEqualTo; } public CR_Main2Query setOpeningBal18GreaterThanOrEqualTo(Integer value) { this.OpeningBal18GreaterThanOrEqualTo = value; return this; } public Integer getOpeningBal18GreaterThan() { return OpeningBal18GreaterThan; } public CR_Main2Query setOpeningBal18GreaterThan(Integer value) { this.OpeningBal18GreaterThan = value; return this; } public Integer getOpeningBal18LessThan() { return OpeningBal18LessThan; } public CR_Main2Query setOpeningBal18LessThan(Integer value) { this.OpeningBal18LessThan = value; return this; } public Integer getOpeningBal18LessThanOrEqualTo() { return OpeningBal18LessThanOrEqualTo; } public CR_Main2Query setOpeningBal18LessThanOrEqualTo(Integer value) { this.OpeningBal18LessThanOrEqualTo = value; return this; } public Integer getOpeningBal18NotEqualTo() { return OpeningBal18NotEqualTo; } public CR_Main2Query setOpeningBal18NotEqualTo(Integer value) { this.OpeningBal18NotEqualTo = value; return this; } public ArrayList getOpeningBal18Between() { return OpeningBal18Between; } public CR_Main2Query setOpeningBal18Between(ArrayList value) { this.OpeningBal18Between = value; return this; } public ArrayList getOpeningBal18In() { return OpeningBal18In; } public CR_Main2Query setOpeningBal18In(ArrayList value) { this.OpeningBal18In = value; return this; } public Integer getOpeningBal19() { return OpeningBal19; } public CR_Main2Query setOpeningBal19(Integer value) { this.OpeningBal19 = value; return this; } public Integer getOpeningBal19GreaterThanOrEqualTo() { return OpeningBal19GreaterThanOrEqualTo; } public CR_Main2Query setOpeningBal19GreaterThanOrEqualTo(Integer value) { this.OpeningBal19GreaterThanOrEqualTo = value; return this; } public Integer getOpeningBal19GreaterThan() { return OpeningBal19GreaterThan; } public CR_Main2Query setOpeningBal19GreaterThan(Integer value) { this.OpeningBal19GreaterThan = value; return this; } public Integer getOpeningBal19LessThan() { return OpeningBal19LessThan; } public CR_Main2Query setOpeningBal19LessThan(Integer value) { this.OpeningBal19LessThan = value; return this; } public Integer getOpeningBal19LessThanOrEqualTo() { return OpeningBal19LessThanOrEqualTo; } public CR_Main2Query setOpeningBal19LessThanOrEqualTo(Integer value) { this.OpeningBal19LessThanOrEqualTo = value; return this; } public Integer getOpeningBal19NotEqualTo() { return OpeningBal19NotEqualTo; } public CR_Main2Query setOpeningBal19NotEqualTo(Integer value) { this.OpeningBal19NotEqualTo = value; return this; } public ArrayList getOpeningBal19Between() { return OpeningBal19Between; } public CR_Main2Query setOpeningBal19Between(ArrayList value) { this.OpeningBal19Between = value; return this; } public ArrayList getOpeningBal19In() { return OpeningBal19In; } public CR_Main2Query setOpeningBal19In(ArrayList value) { this.OpeningBal19In = value; return this; } public Integer getOpeningBal20() { return OpeningBal20; } public CR_Main2Query setOpeningBal20(Integer value) { this.OpeningBal20 = value; return this; } public Integer getOpeningBal20GreaterThanOrEqualTo() { return OpeningBal20GreaterThanOrEqualTo; } public CR_Main2Query setOpeningBal20GreaterThanOrEqualTo(Integer value) { this.OpeningBal20GreaterThanOrEqualTo = value; return this; } public Integer getOpeningBal20GreaterThan() { return OpeningBal20GreaterThan; } public CR_Main2Query setOpeningBal20GreaterThan(Integer value) { this.OpeningBal20GreaterThan = value; return this; } public Integer getOpeningBal20LessThan() { return OpeningBal20LessThan; } public CR_Main2Query setOpeningBal20LessThan(Integer value) { this.OpeningBal20LessThan = value; return this; } public Integer getOpeningBal20LessThanOrEqualTo() { return OpeningBal20LessThanOrEqualTo; } public CR_Main2Query setOpeningBal20LessThanOrEqualTo(Integer value) { this.OpeningBal20LessThanOrEqualTo = value; return this; } public Integer getOpeningBal20NotEqualTo() { return OpeningBal20NotEqualTo; } public CR_Main2Query setOpeningBal20NotEqualTo(Integer value) { this.OpeningBal20NotEqualTo = value; return this; } public ArrayList getOpeningBal20Between() { return OpeningBal20Between; } public CR_Main2Query setOpeningBal20Between(ArrayList value) { this.OpeningBal20Between = value; return this; } public ArrayList getOpeningBal20In() { return OpeningBal20In; } public CR_Main2Query setOpeningBal20In(ArrayList value) { this.OpeningBal20In = value; return this; } public Integer getOpeningBal21() { return OpeningBal21; } public CR_Main2Query setOpeningBal21(Integer value) { this.OpeningBal21 = value; return this; } public Integer getOpeningBal21GreaterThanOrEqualTo() { return OpeningBal21GreaterThanOrEqualTo; } public CR_Main2Query setOpeningBal21GreaterThanOrEqualTo(Integer value) { this.OpeningBal21GreaterThanOrEqualTo = value; return this; } public Integer getOpeningBal21GreaterThan() { return OpeningBal21GreaterThan; } public CR_Main2Query setOpeningBal21GreaterThan(Integer value) { this.OpeningBal21GreaterThan = value; return this; } public Integer getOpeningBal21LessThan() { return OpeningBal21LessThan; } public CR_Main2Query setOpeningBal21LessThan(Integer value) { this.OpeningBal21LessThan = value; return this; } public Integer getOpeningBal21LessThanOrEqualTo() { return OpeningBal21LessThanOrEqualTo; } public CR_Main2Query setOpeningBal21LessThanOrEqualTo(Integer value) { this.OpeningBal21LessThanOrEqualTo = value; return this; } public Integer getOpeningBal21NotEqualTo() { return OpeningBal21NotEqualTo; } public CR_Main2Query setOpeningBal21NotEqualTo(Integer value) { this.OpeningBal21NotEqualTo = value; return this; } public ArrayList getOpeningBal21Between() { return OpeningBal21Between; } public CR_Main2Query setOpeningBal21Between(ArrayList value) { this.OpeningBal21Between = value; return this; } public ArrayList getOpeningBal21In() { return OpeningBal21In; } public CR_Main2Query setOpeningBal21In(ArrayList value) { this.OpeningBal21In = value; return this; } public Integer getOpeningBal22() { return OpeningBal22; } public CR_Main2Query setOpeningBal22(Integer value) { this.OpeningBal22 = value; return this; } public Integer getOpeningBal22GreaterThanOrEqualTo() { return OpeningBal22GreaterThanOrEqualTo; } public CR_Main2Query setOpeningBal22GreaterThanOrEqualTo(Integer value) { this.OpeningBal22GreaterThanOrEqualTo = value; return this; } public Integer getOpeningBal22GreaterThan() { return OpeningBal22GreaterThan; } public CR_Main2Query setOpeningBal22GreaterThan(Integer value) { this.OpeningBal22GreaterThan = value; return this; } public Integer getOpeningBal22LessThan() { return OpeningBal22LessThan; } public CR_Main2Query setOpeningBal22LessThan(Integer value) { this.OpeningBal22LessThan = value; return this; } public Integer getOpeningBal22LessThanOrEqualTo() { return OpeningBal22LessThanOrEqualTo; } public CR_Main2Query setOpeningBal22LessThanOrEqualTo(Integer value) { this.OpeningBal22LessThanOrEqualTo = value; return this; } public Integer getOpeningBal22NotEqualTo() { return OpeningBal22NotEqualTo; } public CR_Main2Query setOpeningBal22NotEqualTo(Integer value) { this.OpeningBal22NotEqualTo = value; return this; } public ArrayList getOpeningBal22Between() { return OpeningBal22Between; } public CR_Main2Query setOpeningBal22Between(ArrayList value) { this.OpeningBal22Between = value; return this; } public ArrayList getOpeningBal22In() { return OpeningBal22In; } public CR_Main2Query setOpeningBal22In(ArrayList value) { this.OpeningBal22In = value; return this; } public Integer getOpeningBal23() { return OpeningBal23; } public CR_Main2Query setOpeningBal23(Integer value) { this.OpeningBal23 = value; return this; } public Integer getOpeningBal23GreaterThanOrEqualTo() { return OpeningBal23GreaterThanOrEqualTo; } public CR_Main2Query setOpeningBal23GreaterThanOrEqualTo(Integer value) { this.OpeningBal23GreaterThanOrEqualTo = value; return this; } public Integer getOpeningBal23GreaterThan() { return OpeningBal23GreaterThan; } public CR_Main2Query setOpeningBal23GreaterThan(Integer value) { this.OpeningBal23GreaterThan = value; return this; } public Integer getOpeningBal23LessThan() { return OpeningBal23LessThan; } public CR_Main2Query setOpeningBal23LessThan(Integer value) { this.OpeningBal23LessThan = value; return this; } public Integer getOpeningBal23LessThanOrEqualTo() { return OpeningBal23LessThanOrEqualTo; } public CR_Main2Query setOpeningBal23LessThanOrEqualTo(Integer value) { this.OpeningBal23LessThanOrEqualTo = value; return this; } public Integer getOpeningBal23NotEqualTo() { return OpeningBal23NotEqualTo; } public CR_Main2Query setOpeningBal23NotEqualTo(Integer value) { this.OpeningBal23NotEqualTo = value; return this; } public ArrayList getOpeningBal23Between() { return OpeningBal23Between; } public CR_Main2Query setOpeningBal23Between(ArrayList value) { this.OpeningBal23Between = value; return this; } public ArrayList getOpeningBal23In() { return OpeningBal23In; } public CR_Main2Query setOpeningBal23In(ArrayList value) { this.OpeningBal23In = value; return this; } public Integer getOpeningBal24() { return OpeningBal24; } public CR_Main2Query setOpeningBal24(Integer value) { this.OpeningBal24 = value; return this; } public Integer getOpeningBal24GreaterThanOrEqualTo() { return OpeningBal24GreaterThanOrEqualTo; } public CR_Main2Query setOpeningBal24GreaterThanOrEqualTo(Integer value) { this.OpeningBal24GreaterThanOrEqualTo = value; return this; } public Integer getOpeningBal24GreaterThan() { return OpeningBal24GreaterThan; } public CR_Main2Query setOpeningBal24GreaterThan(Integer value) { this.OpeningBal24GreaterThan = value; return this; } public Integer getOpeningBal24LessThan() { return OpeningBal24LessThan; } public CR_Main2Query setOpeningBal24LessThan(Integer value) { this.OpeningBal24LessThan = value; return this; } public Integer getOpeningBal24LessThanOrEqualTo() { return OpeningBal24LessThanOrEqualTo; } public CR_Main2Query setOpeningBal24LessThanOrEqualTo(Integer value) { this.OpeningBal24LessThanOrEqualTo = value; return this; } public Integer getOpeningBal24NotEqualTo() { return OpeningBal24NotEqualTo; } public CR_Main2Query setOpeningBal24NotEqualTo(Integer value) { this.OpeningBal24NotEqualTo = value; return this; } public ArrayList getOpeningBal24Between() { return OpeningBal24Between; } public CR_Main2Query setOpeningBal24Between(ArrayList value) { this.OpeningBal24Between = value; return this; } public ArrayList getOpeningBal24In() { return OpeningBal24In; } public CR_Main2Query setOpeningBal24In(ArrayList value) { this.OpeningBal24In = value; return this; } public Integer getOpeningBal25() { return OpeningBal25; } public CR_Main2Query setOpeningBal25(Integer value) { this.OpeningBal25 = value; return this; } public Integer getOpeningBal25GreaterThanOrEqualTo() { return OpeningBal25GreaterThanOrEqualTo; } public CR_Main2Query setOpeningBal25GreaterThanOrEqualTo(Integer value) { this.OpeningBal25GreaterThanOrEqualTo = value; return this; } public Integer getOpeningBal25GreaterThan() { return OpeningBal25GreaterThan; } public CR_Main2Query setOpeningBal25GreaterThan(Integer value) { this.OpeningBal25GreaterThan = value; return this; } public Integer getOpeningBal25LessThan() { return OpeningBal25LessThan; } public CR_Main2Query setOpeningBal25LessThan(Integer value) { this.OpeningBal25LessThan = value; return this; } public Integer getOpeningBal25LessThanOrEqualTo() { return OpeningBal25LessThanOrEqualTo; } public CR_Main2Query setOpeningBal25LessThanOrEqualTo(Integer value) { this.OpeningBal25LessThanOrEqualTo = value; return this; } public Integer getOpeningBal25NotEqualTo() { return OpeningBal25NotEqualTo; } public CR_Main2Query setOpeningBal25NotEqualTo(Integer value) { this.OpeningBal25NotEqualTo = value; return this; } public ArrayList getOpeningBal25Between() { return OpeningBal25Between; } public CR_Main2Query setOpeningBal25Between(ArrayList value) { this.OpeningBal25Between = value; return this; } public ArrayList getOpeningBal25In() { return OpeningBal25In; } public CR_Main2Query setOpeningBal25In(ArrayList value) { this.OpeningBal25In = value; return this; } public Integer getOpeningBal26() { return OpeningBal26; } public CR_Main2Query setOpeningBal26(Integer value) { this.OpeningBal26 = value; return this; } public Integer getOpeningBal26GreaterThanOrEqualTo() { return OpeningBal26GreaterThanOrEqualTo; } public CR_Main2Query setOpeningBal26GreaterThanOrEqualTo(Integer value) { this.OpeningBal26GreaterThanOrEqualTo = value; return this; } public Integer getOpeningBal26GreaterThan() { return OpeningBal26GreaterThan; } public CR_Main2Query setOpeningBal26GreaterThan(Integer value) { this.OpeningBal26GreaterThan = value; return this; } public Integer getOpeningBal26LessThan() { return OpeningBal26LessThan; } public CR_Main2Query setOpeningBal26LessThan(Integer value) { this.OpeningBal26LessThan = value; return this; } public Integer getOpeningBal26LessThanOrEqualTo() { return OpeningBal26LessThanOrEqualTo; } public CR_Main2Query setOpeningBal26LessThanOrEqualTo(Integer value) { this.OpeningBal26LessThanOrEqualTo = value; return this; } public Integer getOpeningBal26NotEqualTo() { return OpeningBal26NotEqualTo; } public CR_Main2Query setOpeningBal26NotEqualTo(Integer value) { this.OpeningBal26NotEqualTo = value; return this; } public ArrayList getOpeningBal26Between() { return OpeningBal26Between; } public CR_Main2Query setOpeningBal26Between(ArrayList value) { this.OpeningBal26Between = value; return this; } public ArrayList getOpeningBal26In() { return OpeningBal26In; } public CR_Main2Query setOpeningBal26In(ArrayList value) { this.OpeningBal26In = value; return this; } public Integer getOpeningBal27() { return OpeningBal27; } public CR_Main2Query setOpeningBal27(Integer value) { this.OpeningBal27 = value; return this; } public Integer getOpeningBal27GreaterThanOrEqualTo() { return OpeningBal27GreaterThanOrEqualTo; } public CR_Main2Query setOpeningBal27GreaterThanOrEqualTo(Integer value) { this.OpeningBal27GreaterThanOrEqualTo = value; return this; } public Integer getOpeningBal27GreaterThan() { return OpeningBal27GreaterThan; } public CR_Main2Query setOpeningBal27GreaterThan(Integer value) { this.OpeningBal27GreaterThan = value; return this; } public Integer getOpeningBal27LessThan() { return OpeningBal27LessThan; } public CR_Main2Query setOpeningBal27LessThan(Integer value) { this.OpeningBal27LessThan = value; return this; } public Integer getOpeningBal27LessThanOrEqualTo() { return OpeningBal27LessThanOrEqualTo; } public CR_Main2Query setOpeningBal27LessThanOrEqualTo(Integer value) { this.OpeningBal27LessThanOrEqualTo = value; return this; } public Integer getOpeningBal27NotEqualTo() { return OpeningBal27NotEqualTo; } public CR_Main2Query setOpeningBal27NotEqualTo(Integer value) { this.OpeningBal27NotEqualTo = value; return this; } public ArrayList getOpeningBal27Between() { return OpeningBal27Between; } public CR_Main2Query setOpeningBal27Between(ArrayList value) { this.OpeningBal27Between = value; return this; } public ArrayList getOpeningBal27In() { return OpeningBal27In; } public CR_Main2Query setOpeningBal27In(ArrayList value) { this.OpeningBal27In = value; return this; } public Integer getOpeningBal28() { return OpeningBal28; } public CR_Main2Query setOpeningBal28(Integer value) { this.OpeningBal28 = value; return this; } public Integer getOpeningBal28GreaterThanOrEqualTo() { return OpeningBal28GreaterThanOrEqualTo; } public CR_Main2Query setOpeningBal28GreaterThanOrEqualTo(Integer value) { this.OpeningBal28GreaterThanOrEqualTo = value; return this; } public Integer getOpeningBal28GreaterThan() { return OpeningBal28GreaterThan; } public CR_Main2Query setOpeningBal28GreaterThan(Integer value) { this.OpeningBal28GreaterThan = value; return this; } public Integer getOpeningBal28LessThan() { return OpeningBal28LessThan; } public CR_Main2Query setOpeningBal28LessThan(Integer value) { this.OpeningBal28LessThan = value; return this; } public Integer getOpeningBal28LessThanOrEqualTo() { return OpeningBal28LessThanOrEqualTo; } public CR_Main2Query setOpeningBal28LessThanOrEqualTo(Integer value) { this.OpeningBal28LessThanOrEqualTo = value; return this; } public Integer getOpeningBal28NotEqualTo() { return OpeningBal28NotEqualTo; } public CR_Main2Query setOpeningBal28NotEqualTo(Integer value) { this.OpeningBal28NotEqualTo = value; return this; } public ArrayList getOpeningBal28Between() { return OpeningBal28Between; } public CR_Main2Query setOpeningBal28Between(ArrayList value) { this.OpeningBal28Between = value; return this; } public ArrayList getOpeningBal28In() { return OpeningBal28In; } public CR_Main2Query setOpeningBal28In(ArrayList value) { this.OpeningBal28In = value; return this; } public Integer getOpeningBal29() { return OpeningBal29; } public CR_Main2Query setOpeningBal29(Integer value) { this.OpeningBal29 = value; return this; } public Integer getOpeningBal29GreaterThanOrEqualTo() { return OpeningBal29GreaterThanOrEqualTo; } public CR_Main2Query setOpeningBal29GreaterThanOrEqualTo(Integer value) { this.OpeningBal29GreaterThanOrEqualTo = value; return this; } public Integer getOpeningBal29GreaterThan() { return OpeningBal29GreaterThan; } public CR_Main2Query setOpeningBal29GreaterThan(Integer value) { this.OpeningBal29GreaterThan = value; return this; } public Integer getOpeningBal29LessThan() { return OpeningBal29LessThan; } public CR_Main2Query setOpeningBal29LessThan(Integer value) { this.OpeningBal29LessThan = value; return this; } public Integer getOpeningBal29LessThanOrEqualTo() { return OpeningBal29LessThanOrEqualTo; } public CR_Main2Query setOpeningBal29LessThanOrEqualTo(Integer value) { this.OpeningBal29LessThanOrEqualTo = value; return this; } public Integer getOpeningBal29NotEqualTo() { return OpeningBal29NotEqualTo; } public CR_Main2Query setOpeningBal29NotEqualTo(Integer value) { this.OpeningBal29NotEqualTo = value; return this; } public ArrayList getOpeningBal29Between() { return OpeningBal29Between; } public CR_Main2Query setOpeningBal29Between(ArrayList value) { this.OpeningBal29Between = value; return this; } public ArrayList getOpeningBal29In() { return OpeningBal29In; } public CR_Main2Query setOpeningBal29In(ArrayList value) { this.OpeningBal29In = value; return this; } public Integer getOpeningBal30() { return OpeningBal30; } public CR_Main2Query setOpeningBal30(Integer value) { this.OpeningBal30 = value; return this; } public Integer getOpeningBal30GreaterThanOrEqualTo() { return OpeningBal30GreaterThanOrEqualTo; } public CR_Main2Query setOpeningBal30GreaterThanOrEqualTo(Integer value) { this.OpeningBal30GreaterThanOrEqualTo = value; return this; } public Integer getOpeningBal30GreaterThan() { return OpeningBal30GreaterThan; } public CR_Main2Query setOpeningBal30GreaterThan(Integer value) { this.OpeningBal30GreaterThan = value; return this; } public Integer getOpeningBal30LessThan() { return OpeningBal30LessThan; } public CR_Main2Query setOpeningBal30LessThan(Integer value) { this.OpeningBal30LessThan = value; return this; } public Integer getOpeningBal30LessThanOrEqualTo() { return OpeningBal30LessThanOrEqualTo; } public CR_Main2Query setOpeningBal30LessThanOrEqualTo(Integer value) { this.OpeningBal30LessThanOrEqualTo = value; return this; } public Integer getOpeningBal30NotEqualTo() { return OpeningBal30NotEqualTo; } public CR_Main2Query setOpeningBal30NotEqualTo(Integer value) { this.OpeningBal30NotEqualTo = value; return this; } public ArrayList getOpeningBal30Between() { return OpeningBal30Between; } public CR_Main2Query setOpeningBal30Between(ArrayList value) { this.OpeningBal30Between = value; return this; } public ArrayList getOpeningBal30In() { return OpeningBal30In; } public CR_Main2Query setOpeningBal30In(ArrayList value) { this.OpeningBal30In = value; return this; } public Integer getOpeningBal31() { return OpeningBal31; } public CR_Main2Query setOpeningBal31(Integer value) { this.OpeningBal31 = value; return this; } public Integer getOpeningBal31GreaterThanOrEqualTo() { return OpeningBal31GreaterThanOrEqualTo; } public CR_Main2Query setOpeningBal31GreaterThanOrEqualTo(Integer value) { this.OpeningBal31GreaterThanOrEqualTo = value; return this; } public Integer getOpeningBal31GreaterThan() { return OpeningBal31GreaterThan; } public CR_Main2Query setOpeningBal31GreaterThan(Integer value) { this.OpeningBal31GreaterThan = value; return this; } public Integer getOpeningBal31LessThan() { return OpeningBal31LessThan; } public CR_Main2Query setOpeningBal31LessThan(Integer value) { this.OpeningBal31LessThan = value; return this; } public Integer getOpeningBal31LessThanOrEqualTo() { return OpeningBal31LessThanOrEqualTo; } public CR_Main2Query setOpeningBal31LessThanOrEqualTo(Integer value) { this.OpeningBal31LessThanOrEqualTo = value; return this; } public Integer getOpeningBal31NotEqualTo() { return OpeningBal31NotEqualTo; } public CR_Main2Query setOpeningBal31NotEqualTo(Integer value) { this.OpeningBal31NotEqualTo = value; return this; } public ArrayList getOpeningBal31Between() { return OpeningBal31Between; } public CR_Main2Query setOpeningBal31Between(ArrayList value) { this.OpeningBal31Between = value; return this; } public ArrayList getOpeningBal31In() { return OpeningBal31In; } public CR_Main2Query setOpeningBal31In(ArrayList value) { this.OpeningBal31In = value; return this; } public Integer getOpeningBal32() { return OpeningBal32; } public CR_Main2Query setOpeningBal32(Integer value) { this.OpeningBal32 = value; return this; } public Integer getOpeningBal32GreaterThanOrEqualTo() { return OpeningBal32GreaterThanOrEqualTo; } public CR_Main2Query setOpeningBal32GreaterThanOrEqualTo(Integer value) { this.OpeningBal32GreaterThanOrEqualTo = value; return this; } public Integer getOpeningBal32GreaterThan() { return OpeningBal32GreaterThan; } public CR_Main2Query setOpeningBal32GreaterThan(Integer value) { this.OpeningBal32GreaterThan = value; return this; } public Integer getOpeningBal32LessThan() { return OpeningBal32LessThan; } public CR_Main2Query setOpeningBal32LessThan(Integer value) { this.OpeningBal32LessThan = value; return this; } public Integer getOpeningBal32LessThanOrEqualTo() { return OpeningBal32LessThanOrEqualTo; } public CR_Main2Query setOpeningBal32LessThanOrEqualTo(Integer value) { this.OpeningBal32LessThanOrEqualTo = value; return this; } public Integer getOpeningBal32NotEqualTo() { return OpeningBal32NotEqualTo; } public CR_Main2Query setOpeningBal32NotEqualTo(Integer value) { this.OpeningBal32NotEqualTo = value; return this; } public ArrayList getOpeningBal32Between() { return OpeningBal32Between; } public CR_Main2Query setOpeningBal32Between(ArrayList value) { this.OpeningBal32Between = value; return this; } public ArrayList getOpeningBal32In() { return OpeningBal32In; } public CR_Main2Query setOpeningBal32In(ArrayList value) { this.OpeningBal32In = value; return this; } public Integer getOpeningBal33() { return OpeningBal33; } public CR_Main2Query setOpeningBal33(Integer value) { this.OpeningBal33 = value; return this; } public Integer getOpeningBal33GreaterThanOrEqualTo() { return OpeningBal33GreaterThanOrEqualTo; } public CR_Main2Query setOpeningBal33GreaterThanOrEqualTo(Integer value) { this.OpeningBal33GreaterThanOrEqualTo = value; return this; } public Integer getOpeningBal33GreaterThan() { return OpeningBal33GreaterThan; } public CR_Main2Query setOpeningBal33GreaterThan(Integer value) { this.OpeningBal33GreaterThan = value; return this; } public Integer getOpeningBal33LessThan() { return OpeningBal33LessThan; } public CR_Main2Query setOpeningBal33LessThan(Integer value) { this.OpeningBal33LessThan = value; return this; } public Integer getOpeningBal33LessThanOrEqualTo() { return OpeningBal33LessThanOrEqualTo; } public CR_Main2Query setOpeningBal33LessThanOrEqualTo(Integer value) { this.OpeningBal33LessThanOrEqualTo = value; return this; } public Integer getOpeningBal33NotEqualTo() { return OpeningBal33NotEqualTo; } public CR_Main2Query setOpeningBal33NotEqualTo(Integer value) { this.OpeningBal33NotEqualTo = value; return this; } public ArrayList getOpeningBal33Between() { return OpeningBal33Between; } public CR_Main2Query setOpeningBal33Between(ArrayList value) { this.OpeningBal33Between = value; return this; } public ArrayList getOpeningBal33In() { return OpeningBal33In; } public CR_Main2Query setOpeningBal33In(ArrayList value) { this.OpeningBal33In = value; return this; } public Integer getOpeningBal34() { return OpeningBal34; } public CR_Main2Query setOpeningBal34(Integer value) { this.OpeningBal34 = value; return this; } public Integer getOpeningBal34GreaterThanOrEqualTo() { return OpeningBal34GreaterThanOrEqualTo; } public CR_Main2Query setOpeningBal34GreaterThanOrEqualTo(Integer value) { this.OpeningBal34GreaterThanOrEqualTo = value; return this; } public Integer getOpeningBal34GreaterThan() { return OpeningBal34GreaterThan; } public CR_Main2Query setOpeningBal34GreaterThan(Integer value) { this.OpeningBal34GreaterThan = value; return this; } public Integer getOpeningBal34LessThan() { return OpeningBal34LessThan; } public CR_Main2Query setOpeningBal34LessThan(Integer value) { this.OpeningBal34LessThan = value; return this; } public Integer getOpeningBal34LessThanOrEqualTo() { return OpeningBal34LessThanOrEqualTo; } public CR_Main2Query setOpeningBal34LessThanOrEqualTo(Integer value) { this.OpeningBal34LessThanOrEqualTo = value; return this; } public Integer getOpeningBal34NotEqualTo() { return OpeningBal34NotEqualTo; } public CR_Main2Query setOpeningBal34NotEqualTo(Integer value) { this.OpeningBal34NotEqualTo = value; return this; } public ArrayList getOpeningBal34Between() { return OpeningBal34Between; } public CR_Main2Query setOpeningBal34Between(ArrayList value) { this.OpeningBal34Between = value; return this; } public ArrayList getOpeningBal34In() { return OpeningBal34In; } public CR_Main2Query setOpeningBal34In(ArrayList value) { this.OpeningBal34In = value; return this; } public Integer getOpeningBal35() { return OpeningBal35; } public CR_Main2Query setOpeningBal35(Integer value) { this.OpeningBal35 = value; return this; } public Integer getOpeningBal35GreaterThanOrEqualTo() { return OpeningBal35GreaterThanOrEqualTo; } public CR_Main2Query setOpeningBal35GreaterThanOrEqualTo(Integer value) { this.OpeningBal35GreaterThanOrEqualTo = value; return this; } public Integer getOpeningBal35GreaterThan() { return OpeningBal35GreaterThan; } public CR_Main2Query setOpeningBal35GreaterThan(Integer value) { this.OpeningBal35GreaterThan = value; return this; } public Integer getOpeningBal35LessThan() { return OpeningBal35LessThan; } public CR_Main2Query setOpeningBal35LessThan(Integer value) { this.OpeningBal35LessThan = value; return this; } public Integer getOpeningBal35LessThanOrEqualTo() { return OpeningBal35LessThanOrEqualTo; } public CR_Main2Query setOpeningBal35LessThanOrEqualTo(Integer value) { this.OpeningBal35LessThanOrEqualTo = value; return this; } public Integer getOpeningBal35NotEqualTo() { return OpeningBal35NotEqualTo; } public CR_Main2Query setOpeningBal35NotEqualTo(Integer value) { this.OpeningBal35NotEqualTo = value; return this; } public ArrayList getOpeningBal35Between() { return OpeningBal35Between; } public CR_Main2Query setOpeningBal35Between(ArrayList value) { this.OpeningBal35Between = value; return this; } public ArrayList getOpeningBal35In() { return OpeningBal35In; } public CR_Main2Query setOpeningBal35In(ArrayList value) { this.OpeningBal35In = value; return this; } public Integer getOpeningBal36() { return OpeningBal36; } public CR_Main2Query setOpeningBal36(Integer value) { this.OpeningBal36 = value; return this; } public Integer getOpeningBal36GreaterThanOrEqualTo() { return OpeningBal36GreaterThanOrEqualTo; } public CR_Main2Query setOpeningBal36GreaterThanOrEqualTo(Integer value) { this.OpeningBal36GreaterThanOrEqualTo = value; return this; } public Integer getOpeningBal36GreaterThan() { return OpeningBal36GreaterThan; } public CR_Main2Query setOpeningBal36GreaterThan(Integer value) { this.OpeningBal36GreaterThan = value; return this; } public Integer getOpeningBal36LessThan() { return OpeningBal36LessThan; } public CR_Main2Query setOpeningBal36LessThan(Integer value) { this.OpeningBal36LessThan = value; return this; } public Integer getOpeningBal36LessThanOrEqualTo() { return OpeningBal36LessThanOrEqualTo; } public CR_Main2Query setOpeningBal36LessThanOrEqualTo(Integer value) { this.OpeningBal36LessThanOrEqualTo = value; return this; } public Integer getOpeningBal36NotEqualTo() { return OpeningBal36NotEqualTo; } public CR_Main2Query setOpeningBal36NotEqualTo(Integer value) { this.OpeningBal36NotEqualTo = value; return this; } public ArrayList getOpeningBal36Between() { return OpeningBal36Between; } public CR_Main2Query setOpeningBal36Between(ArrayList value) { this.OpeningBal36Between = value; return this; } public ArrayList getOpeningBal36In() { return OpeningBal36In; } public CR_Main2Query setOpeningBal36In(ArrayList value) { this.OpeningBal36In = value; return this; } public Integer getOpeningBal37() { return OpeningBal37; } public CR_Main2Query setOpeningBal37(Integer value) { this.OpeningBal37 = value; return this; } public Integer getOpeningBal37GreaterThanOrEqualTo() { return OpeningBal37GreaterThanOrEqualTo; } public CR_Main2Query setOpeningBal37GreaterThanOrEqualTo(Integer value) { this.OpeningBal37GreaterThanOrEqualTo = value; return this; } public Integer getOpeningBal37GreaterThan() { return OpeningBal37GreaterThan; } public CR_Main2Query setOpeningBal37GreaterThan(Integer value) { this.OpeningBal37GreaterThan = value; return this; } public Integer getOpeningBal37LessThan() { return OpeningBal37LessThan; } public CR_Main2Query setOpeningBal37LessThan(Integer value) { this.OpeningBal37LessThan = value; return this; } public Integer getOpeningBal37LessThanOrEqualTo() { return OpeningBal37LessThanOrEqualTo; } public CR_Main2Query setOpeningBal37LessThanOrEqualTo(Integer value) { this.OpeningBal37LessThanOrEqualTo = value; return this; } public Integer getOpeningBal37NotEqualTo() { return OpeningBal37NotEqualTo; } public CR_Main2Query setOpeningBal37NotEqualTo(Integer value) { this.OpeningBal37NotEqualTo = value; return this; } public ArrayList getOpeningBal37Between() { return OpeningBal37Between; } public CR_Main2Query setOpeningBal37Between(ArrayList value) { this.OpeningBal37Between = value; return this; } public ArrayList getOpeningBal37In() { return OpeningBal37In; } public CR_Main2Query setOpeningBal37In(ArrayList value) { this.OpeningBal37In = value; return this; } public Integer getOpeningBal38() { return OpeningBal38; } public CR_Main2Query setOpeningBal38(Integer value) { this.OpeningBal38 = value; return this; } public Integer getOpeningBal38GreaterThanOrEqualTo() { return OpeningBal38GreaterThanOrEqualTo; } public CR_Main2Query setOpeningBal38GreaterThanOrEqualTo(Integer value) { this.OpeningBal38GreaterThanOrEqualTo = value; return this; } public Integer getOpeningBal38GreaterThan() { return OpeningBal38GreaterThan; } public CR_Main2Query setOpeningBal38GreaterThan(Integer value) { this.OpeningBal38GreaterThan = value; return this; } public Integer getOpeningBal38LessThan() { return OpeningBal38LessThan; } public CR_Main2Query setOpeningBal38LessThan(Integer value) { this.OpeningBal38LessThan = value; return this; } public Integer getOpeningBal38LessThanOrEqualTo() { return OpeningBal38LessThanOrEqualTo; } public CR_Main2Query setOpeningBal38LessThanOrEqualTo(Integer value) { this.OpeningBal38LessThanOrEqualTo = value; return this; } public Integer getOpeningBal38NotEqualTo() { return OpeningBal38NotEqualTo; } public CR_Main2Query setOpeningBal38NotEqualTo(Integer value) { this.OpeningBal38NotEqualTo = value; return this; } public ArrayList getOpeningBal38Between() { return OpeningBal38Between; } public CR_Main2Query setOpeningBal38Between(ArrayList value) { this.OpeningBal38Between = value; return this; } public ArrayList getOpeningBal38In() { return OpeningBal38In; } public CR_Main2Query setOpeningBal38In(ArrayList value) { this.OpeningBal38In = value; return this; } public Integer getOpeningBal39() { return OpeningBal39; } public CR_Main2Query setOpeningBal39(Integer value) { this.OpeningBal39 = value; return this; } public Integer getOpeningBal39GreaterThanOrEqualTo() { return OpeningBal39GreaterThanOrEqualTo; } public CR_Main2Query setOpeningBal39GreaterThanOrEqualTo(Integer value) { this.OpeningBal39GreaterThanOrEqualTo = value; return this; } public Integer getOpeningBal39GreaterThan() { return OpeningBal39GreaterThan; } public CR_Main2Query setOpeningBal39GreaterThan(Integer value) { this.OpeningBal39GreaterThan = value; return this; } public Integer getOpeningBal39LessThan() { return OpeningBal39LessThan; } public CR_Main2Query setOpeningBal39LessThan(Integer value) { this.OpeningBal39LessThan = value; return this; } public Integer getOpeningBal39LessThanOrEqualTo() { return OpeningBal39LessThanOrEqualTo; } public CR_Main2Query setOpeningBal39LessThanOrEqualTo(Integer value) { this.OpeningBal39LessThanOrEqualTo = value; return this; } public Integer getOpeningBal39NotEqualTo() { return OpeningBal39NotEqualTo; } public CR_Main2Query setOpeningBal39NotEqualTo(Integer value) { this.OpeningBal39NotEqualTo = value; return this; } public ArrayList getOpeningBal39Between() { return OpeningBal39Between; } public CR_Main2Query setOpeningBal39Between(ArrayList value) { this.OpeningBal39Between = value; return this; } public ArrayList getOpeningBal39In() { return OpeningBal39In; } public CR_Main2Query setOpeningBal39In(ArrayList value) { this.OpeningBal39In = value; return this; } public Integer getOpeningBal40() { return OpeningBal40; } public CR_Main2Query setOpeningBal40(Integer value) { this.OpeningBal40 = value; return this; } public Integer getOpeningBal40GreaterThanOrEqualTo() { return OpeningBal40GreaterThanOrEqualTo; } public CR_Main2Query setOpeningBal40GreaterThanOrEqualTo(Integer value) { this.OpeningBal40GreaterThanOrEqualTo = value; return this; } public Integer getOpeningBal40GreaterThan() { return OpeningBal40GreaterThan; } public CR_Main2Query setOpeningBal40GreaterThan(Integer value) { this.OpeningBal40GreaterThan = value; return this; } public Integer getOpeningBal40LessThan() { return OpeningBal40LessThan; } public CR_Main2Query setOpeningBal40LessThan(Integer value) { this.OpeningBal40LessThan = value; return this; } public Integer getOpeningBal40LessThanOrEqualTo() { return OpeningBal40LessThanOrEqualTo; } public CR_Main2Query setOpeningBal40LessThanOrEqualTo(Integer value) { this.OpeningBal40LessThanOrEqualTo = value; return this; } public Integer getOpeningBal40NotEqualTo() { return OpeningBal40NotEqualTo; } public CR_Main2Query setOpeningBal40NotEqualTo(Integer value) { this.OpeningBal40NotEqualTo = value; return this; } public ArrayList getOpeningBal40Between() { return OpeningBal40Between; } public CR_Main2Query setOpeningBal40Between(ArrayList value) { this.OpeningBal40Between = value; return this; } public ArrayList getOpeningBal40In() { return OpeningBal40In; } public CR_Main2Query setOpeningBal40In(ArrayList value) { this.OpeningBal40In = value; return this; } public Integer getOpeningBal41() { return OpeningBal41; } public CR_Main2Query setOpeningBal41(Integer value) { this.OpeningBal41 = value; return this; } public Integer getOpeningBal41GreaterThanOrEqualTo() { return OpeningBal41GreaterThanOrEqualTo; } public CR_Main2Query setOpeningBal41GreaterThanOrEqualTo(Integer value) { this.OpeningBal41GreaterThanOrEqualTo = value; return this; } public Integer getOpeningBal41GreaterThan() { return OpeningBal41GreaterThan; } public CR_Main2Query setOpeningBal41GreaterThan(Integer value) { this.OpeningBal41GreaterThan = value; return this; } public Integer getOpeningBal41LessThan() { return OpeningBal41LessThan; } public CR_Main2Query setOpeningBal41LessThan(Integer value) { this.OpeningBal41LessThan = value; return this; } public Integer getOpeningBal41LessThanOrEqualTo() { return OpeningBal41LessThanOrEqualTo; } public CR_Main2Query setOpeningBal41LessThanOrEqualTo(Integer value) { this.OpeningBal41LessThanOrEqualTo = value; return this; } public Integer getOpeningBal41NotEqualTo() { return OpeningBal41NotEqualTo; } public CR_Main2Query setOpeningBal41NotEqualTo(Integer value) { this.OpeningBal41NotEqualTo = value; return this; } public ArrayList getOpeningBal41Between() { return OpeningBal41Between; } public CR_Main2Query setOpeningBal41Between(ArrayList value) { this.OpeningBal41Between = value; return this; } public ArrayList getOpeningBal41In() { return OpeningBal41In; } public CR_Main2Query setOpeningBal41In(ArrayList value) { this.OpeningBal41In = value; return this; } public Integer getOpeningBal42() { return OpeningBal42; } public CR_Main2Query setOpeningBal42(Integer value) { this.OpeningBal42 = value; return this; } public Integer getOpeningBal42GreaterThanOrEqualTo() { return OpeningBal42GreaterThanOrEqualTo; } public CR_Main2Query setOpeningBal42GreaterThanOrEqualTo(Integer value) { this.OpeningBal42GreaterThanOrEqualTo = value; return this; } public Integer getOpeningBal42GreaterThan() { return OpeningBal42GreaterThan; } public CR_Main2Query setOpeningBal42GreaterThan(Integer value) { this.OpeningBal42GreaterThan = value; return this; } public Integer getOpeningBal42LessThan() { return OpeningBal42LessThan; } public CR_Main2Query setOpeningBal42LessThan(Integer value) { this.OpeningBal42LessThan = value; return this; } public Integer getOpeningBal42LessThanOrEqualTo() { return OpeningBal42LessThanOrEqualTo; } public CR_Main2Query setOpeningBal42LessThanOrEqualTo(Integer value) { this.OpeningBal42LessThanOrEqualTo = value; return this; } public Integer getOpeningBal42NotEqualTo() { return OpeningBal42NotEqualTo; } public CR_Main2Query setOpeningBal42NotEqualTo(Integer value) { this.OpeningBal42NotEqualTo = value; return this; } public ArrayList getOpeningBal42Between() { return OpeningBal42Between; } public CR_Main2Query setOpeningBal42Between(ArrayList value) { this.OpeningBal42Between = value; return this; } public ArrayList getOpeningBal42In() { return OpeningBal42In; } public CR_Main2Query setOpeningBal42In(ArrayList value) { this.OpeningBal42In = value; return this; } public Integer getOpeningBal43() { return OpeningBal43; } public CR_Main2Query setOpeningBal43(Integer value) { this.OpeningBal43 = value; return this; } public Integer getOpeningBal43GreaterThanOrEqualTo() { return OpeningBal43GreaterThanOrEqualTo; } public CR_Main2Query setOpeningBal43GreaterThanOrEqualTo(Integer value) { this.OpeningBal43GreaterThanOrEqualTo = value; return this; } public Integer getOpeningBal43GreaterThan() { return OpeningBal43GreaterThan; } public CR_Main2Query setOpeningBal43GreaterThan(Integer value) { this.OpeningBal43GreaterThan = value; return this; } public Integer getOpeningBal43LessThan() { return OpeningBal43LessThan; } public CR_Main2Query setOpeningBal43LessThan(Integer value) { this.OpeningBal43LessThan = value; return this; } public Integer getOpeningBal43LessThanOrEqualTo() { return OpeningBal43LessThanOrEqualTo; } public CR_Main2Query setOpeningBal43LessThanOrEqualTo(Integer value) { this.OpeningBal43LessThanOrEqualTo = value; return this; } public Integer getOpeningBal43NotEqualTo() { return OpeningBal43NotEqualTo; } public CR_Main2Query setOpeningBal43NotEqualTo(Integer value) { this.OpeningBal43NotEqualTo = value; return this; } public ArrayList getOpeningBal43Between() { return OpeningBal43Between; } public CR_Main2Query setOpeningBal43Between(ArrayList value) { this.OpeningBal43Between = value; return this; } public ArrayList getOpeningBal43In() { return OpeningBal43In; } public CR_Main2Query setOpeningBal43In(ArrayList value) { this.OpeningBal43In = value; return this; } public Integer getOpeningBal44() { return OpeningBal44; } public CR_Main2Query setOpeningBal44(Integer value) { this.OpeningBal44 = value; return this; } public Integer getOpeningBal44GreaterThanOrEqualTo() { return OpeningBal44GreaterThanOrEqualTo; } public CR_Main2Query setOpeningBal44GreaterThanOrEqualTo(Integer value) { this.OpeningBal44GreaterThanOrEqualTo = value; return this; } public Integer getOpeningBal44GreaterThan() { return OpeningBal44GreaterThan; } public CR_Main2Query setOpeningBal44GreaterThan(Integer value) { this.OpeningBal44GreaterThan = value; return this; } public Integer getOpeningBal44LessThan() { return OpeningBal44LessThan; } public CR_Main2Query setOpeningBal44LessThan(Integer value) { this.OpeningBal44LessThan = value; return this; } public Integer getOpeningBal44LessThanOrEqualTo() { return OpeningBal44LessThanOrEqualTo; } public CR_Main2Query setOpeningBal44LessThanOrEqualTo(Integer value) { this.OpeningBal44LessThanOrEqualTo = value; return this; } public Integer getOpeningBal44NotEqualTo() { return OpeningBal44NotEqualTo; } public CR_Main2Query setOpeningBal44NotEqualTo(Integer value) { this.OpeningBal44NotEqualTo = value; return this; } public ArrayList getOpeningBal44Between() { return OpeningBal44Between; } public CR_Main2Query setOpeningBal44Between(ArrayList value) { this.OpeningBal44Between = value; return this; } public ArrayList getOpeningBal44In() { return OpeningBal44In; } public CR_Main2Query setOpeningBal44In(ArrayList value) { this.OpeningBal44In = value; return this; } public Integer getOpeningBal45() { return OpeningBal45; } public CR_Main2Query setOpeningBal45(Integer value) { this.OpeningBal45 = value; return this; } public Integer getOpeningBal45GreaterThanOrEqualTo() { return OpeningBal45GreaterThanOrEqualTo; } public CR_Main2Query setOpeningBal45GreaterThanOrEqualTo(Integer value) { this.OpeningBal45GreaterThanOrEqualTo = value; return this; } public Integer getOpeningBal45GreaterThan() { return OpeningBal45GreaterThan; } public CR_Main2Query setOpeningBal45GreaterThan(Integer value) { this.OpeningBal45GreaterThan = value; return this; } public Integer getOpeningBal45LessThan() { return OpeningBal45LessThan; } public CR_Main2Query setOpeningBal45LessThan(Integer value) { this.OpeningBal45LessThan = value; return this; } public Integer getOpeningBal45LessThanOrEqualTo() { return OpeningBal45LessThanOrEqualTo; } public CR_Main2Query setOpeningBal45LessThanOrEqualTo(Integer value) { this.OpeningBal45LessThanOrEqualTo = value; return this; } public Integer getOpeningBal45NotEqualTo() { return OpeningBal45NotEqualTo; } public CR_Main2Query setOpeningBal45NotEqualTo(Integer value) { this.OpeningBal45NotEqualTo = value; return this; } public ArrayList getOpeningBal45Between() { return OpeningBal45Between; } public CR_Main2Query setOpeningBal45Between(ArrayList value) { this.OpeningBal45Between = value; return this; } public ArrayList getOpeningBal45In() { return OpeningBal45In; } public CR_Main2Query setOpeningBal45In(ArrayList value) { this.OpeningBal45In = value; return this; } public Integer getOpeningBal46() { return OpeningBal46; } public CR_Main2Query setOpeningBal46(Integer value) { this.OpeningBal46 = value; return this; } public Integer getOpeningBal46GreaterThanOrEqualTo() { return OpeningBal46GreaterThanOrEqualTo; } public CR_Main2Query setOpeningBal46GreaterThanOrEqualTo(Integer value) { this.OpeningBal46GreaterThanOrEqualTo = value; return this; } public Integer getOpeningBal46GreaterThan() { return OpeningBal46GreaterThan; } public CR_Main2Query setOpeningBal46GreaterThan(Integer value) { this.OpeningBal46GreaterThan = value; return this; } public Integer getOpeningBal46LessThan() { return OpeningBal46LessThan; } public CR_Main2Query setOpeningBal46LessThan(Integer value) { this.OpeningBal46LessThan = value; return this; } public Integer getOpeningBal46LessThanOrEqualTo() { return OpeningBal46LessThanOrEqualTo; } public CR_Main2Query setOpeningBal46LessThanOrEqualTo(Integer value) { this.OpeningBal46LessThanOrEqualTo = value; return this; } public Integer getOpeningBal46NotEqualTo() { return OpeningBal46NotEqualTo; } public CR_Main2Query setOpeningBal46NotEqualTo(Integer value) { this.OpeningBal46NotEqualTo = value; return this; } public ArrayList getOpeningBal46Between() { return OpeningBal46Between; } public CR_Main2Query setOpeningBal46Between(ArrayList value) { this.OpeningBal46Between = value; return this; } public ArrayList getOpeningBal46In() { return OpeningBal46In; } public CR_Main2Query setOpeningBal46In(ArrayList value) { this.OpeningBal46In = value; return this; } public Integer getOpeningBal47() { return OpeningBal47; } public CR_Main2Query setOpeningBal47(Integer value) { this.OpeningBal47 = value; return this; } public Integer getOpeningBal47GreaterThanOrEqualTo() { return OpeningBal47GreaterThanOrEqualTo; } public CR_Main2Query setOpeningBal47GreaterThanOrEqualTo(Integer value) { this.OpeningBal47GreaterThanOrEqualTo = value; return this; } public Integer getOpeningBal47GreaterThan() { return OpeningBal47GreaterThan; } public CR_Main2Query setOpeningBal47GreaterThan(Integer value) { this.OpeningBal47GreaterThan = value; return this; } public Integer getOpeningBal47LessThan() { return OpeningBal47LessThan; } public CR_Main2Query setOpeningBal47LessThan(Integer value) { this.OpeningBal47LessThan = value; return this; } public Integer getOpeningBal47LessThanOrEqualTo() { return OpeningBal47LessThanOrEqualTo; } public CR_Main2Query setOpeningBal47LessThanOrEqualTo(Integer value) { this.OpeningBal47LessThanOrEqualTo = value; return this; } public Integer getOpeningBal47NotEqualTo() { return OpeningBal47NotEqualTo; } public CR_Main2Query setOpeningBal47NotEqualTo(Integer value) { this.OpeningBal47NotEqualTo = value; return this; } public ArrayList getOpeningBal47Between() { return OpeningBal47Between; } public CR_Main2Query setOpeningBal47Between(ArrayList value) { this.OpeningBal47Between = value; return this; } public ArrayList getOpeningBal47In() { return OpeningBal47In; } public CR_Main2Query setOpeningBal47In(ArrayList value) { this.OpeningBal47In = value; return this; } public Integer getOpeningBal48() { return OpeningBal48; } public CR_Main2Query setOpeningBal48(Integer value) { this.OpeningBal48 = value; return this; } public Integer getOpeningBal48GreaterThanOrEqualTo() { return OpeningBal48GreaterThanOrEqualTo; } public CR_Main2Query setOpeningBal48GreaterThanOrEqualTo(Integer value) { this.OpeningBal48GreaterThanOrEqualTo = value; return this; } public Integer getOpeningBal48GreaterThan() { return OpeningBal48GreaterThan; } public CR_Main2Query setOpeningBal48GreaterThan(Integer value) { this.OpeningBal48GreaterThan = value; return this; } public Integer getOpeningBal48LessThan() { return OpeningBal48LessThan; } public CR_Main2Query setOpeningBal48LessThan(Integer value) { this.OpeningBal48LessThan = value; return this; } public Integer getOpeningBal48LessThanOrEqualTo() { return OpeningBal48LessThanOrEqualTo; } public CR_Main2Query setOpeningBal48LessThanOrEqualTo(Integer value) { this.OpeningBal48LessThanOrEqualTo = value; return this; } public Integer getOpeningBal48NotEqualTo() { return OpeningBal48NotEqualTo; } public CR_Main2Query setOpeningBal48NotEqualTo(Integer value) { this.OpeningBal48NotEqualTo = value; return this; } public ArrayList getOpeningBal48Between() { return OpeningBal48Between; } public CR_Main2Query setOpeningBal48Between(ArrayList value) { this.OpeningBal48Between = value; return this; } public ArrayList getOpeningBal48In() { return OpeningBal48In; } public CR_Main2Query setOpeningBal48In(ArrayList value) { this.OpeningBal48In = value; return this; } public Integer getOpeningBal49() { return OpeningBal49; } public CR_Main2Query setOpeningBal49(Integer value) { this.OpeningBal49 = value; return this; } public Integer getOpeningBal49GreaterThanOrEqualTo() { return OpeningBal49GreaterThanOrEqualTo; } public CR_Main2Query setOpeningBal49GreaterThanOrEqualTo(Integer value) { this.OpeningBal49GreaterThanOrEqualTo = value; return this; } public Integer getOpeningBal49GreaterThan() { return OpeningBal49GreaterThan; } public CR_Main2Query setOpeningBal49GreaterThan(Integer value) { this.OpeningBal49GreaterThan = value; return this; } public Integer getOpeningBal49LessThan() { return OpeningBal49LessThan; } public CR_Main2Query setOpeningBal49LessThan(Integer value) { this.OpeningBal49LessThan = value; return this; } public Integer getOpeningBal49LessThanOrEqualTo() { return OpeningBal49LessThanOrEqualTo; } public CR_Main2Query setOpeningBal49LessThanOrEqualTo(Integer value) { this.OpeningBal49LessThanOrEqualTo = value; return this; } public Integer getOpeningBal49NotEqualTo() { return OpeningBal49NotEqualTo; } public CR_Main2Query setOpeningBal49NotEqualTo(Integer value) { this.OpeningBal49NotEqualTo = value; return this; } public ArrayList getOpeningBal49Between() { return OpeningBal49Between; } public CR_Main2Query setOpeningBal49Between(ArrayList value) { this.OpeningBal49Between = value; return this; } public ArrayList getOpeningBal49In() { return OpeningBal49In; } public CR_Main2Query setOpeningBal49In(ArrayList value) { this.OpeningBal49In = value; return this; } public Integer getOpeningBal50() { return OpeningBal50; } public CR_Main2Query setOpeningBal50(Integer value) { this.OpeningBal50 = value; return this; } public Integer getOpeningBal50GreaterThanOrEqualTo() { return OpeningBal50GreaterThanOrEqualTo; } public CR_Main2Query setOpeningBal50GreaterThanOrEqualTo(Integer value) { this.OpeningBal50GreaterThanOrEqualTo = value; return this; } public Integer getOpeningBal50GreaterThan() { return OpeningBal50GreaterThan; } public CR_Main2Query setOpeningBal50GreaterThan(Integer value) { this.OpeningBal50GreaterThan = value; return this; } public Integer getOpeningBal50LessThan() { return OpeningBal50LessThan; } public CR_Main2Query setOpeningBal50LessThan(Integer value) { this.OpeningBal50LessThan = value; return this; } public Integer getOpeningBal50LessThanOrEqualTo() { return OpeningBal50LessThanOrEqualTo; } public CR_Main2Query setOpeningBal50LessThanOrEqualTo(Integer value) { this.OpeningBal50LessThanOrEqualTo = value; return this; } public Integer getOpeningBal50NotEqualTo() { return OpeningBal50NotEqualTo; } public CR_Main2Query setOpeningBal50NotEqualTo(Integer value) { this.OpeningBal50NotEqualTo = value; return this; } public ArrayList getOpeningBal50Between() { return OpeningBal50Between; } public CR_Main2Query setOpeningBal50Between(ArrayList value) { this.OpeningBal50Between = value; return this; } public ArrayList getOpeningBal50In() { return OpeningBal50In; } public CR_Main2Query setOpeningBal50In(ArrayList value) { this.OpeningBal50In = value; return this; } public Integer getOpeningBal51() { return OpeningBal51; } public CR_Main2Query setOpeningBal51(Integer value) { this.OpeningBal51 = value; return this; } public Integer getOpeningBal51GreaterThanOrEqualTo() { return OpeningBal51GreaterThanOrEqualTo; } public CR_Main2Query setOpeningBal51GreaterThanOrEqualTo(Integer value) { this.OpeningBal51GreaterThanOrEqualTo = value; return this; } public Integer getOpeningBal51GreaterThan() { return OpeningBal51GreaterThan; } public CR_Main2Query setOpeningBal51GreaterThan(Integer value) { this.OpeningBal51GreaterThan = value; return this; } public Integer getOpeningBal51LessThan() { return OpeningBal51LessThan; } public CR_Main2Query setOpeningBal51LessThan(Integer value) { this.OpeningBal51LessThan = value; return this; } public Integer getOpeningBal51LessThanOrEqualTo() { return OpeningBal51LessThanOrEqualTo; } public CR_Main2Query setOpeningBal51LessThanOrEqualTo(Integer value) { this.OpeningBal51LessThanOrEqualTo = value; return this; } public Integer getOpeningBal51NotEqualTo() { return OpeningBal51NotEqualTo; } public CR_Main2Query setOpeningBal51NotEqualTo(Integer value) { this.OpeningBal51NotEqualTo = value; return this; } public ArrayList getOpeningBal51Between() { return OpeningBal51Between; } public CR_Main2Query setOpeningBal51Between(ArrayList value) { this.OpeningBal51Between = value; return this; } public ArrayList getOpeningBal51In() { return OpeningBal51In; } public CR_Main2Query setOpeningBal51In(ArrayList value) { this.OpeningBal51In = value; return this; } public Integer getOpeningBal52() { return OpeningBal52; } public CR_Main2Query setOpeningBal52(Integer value) { this.OpeningBal52 = value; return this; } public Integer getOpeningBal52GreaterThanOrEqualTo() { return OpeningBal52GreaterThanOrEqualTo; } public CR_Main2Query setOpeningBal52GreaterThanOrEqualTo(Integer value) { this.OpeningBal52GreaterThanOrEqualTo = value; return this; } public Integer getOpeningBal52GreaterThan() { return OpeningBal52GreaterThan; } public CR_Main2Query setOpeningBal52GreaterThan(Integer value) { this.OpeningBal52GreaterThan = value; return this; } public Integer getOpeningBal52LessThan() { return OpeningBal52LessThan; } public CR_Main2Query setOpeningBal52LessThan(Integer value) { this.OpeningBal52LessThan = value; return this; } public Integer getOpeningBal52LessThanOrEqualTo() { return OpeningBal52LessThanOrEqualTo; } public CR_Main2Query setOpeningBal52LessThanOrEqualTo(Integer value) { this.OpeningBal52LessThanOrEqualTo = value; return this; } public Integer getOpeningBal52NotEqualTo() { return OpeningBal52NotEqualTo; } public CR_Main2Query setOpeningBal52NotEqualTo(Integer value) { this.OpeningBal52NotEqualTo = value; return this; } public ArrayList getOpeningBal52Between() { return OpeningBal52Between; } public CR_Main2Query setOpeningBal52Between(ArrayList value) { this.OpeningBal52Between = value; return this; } public ArrayList getOpeningBal52In() { return OpeningBal52In; } public CR_Main2Query setOpeningBal52In(ArrayList value) { this.OpeningBal52In = value; return this; } public Integer getOpeningBal53() { return OpeningBal53; } public CR_Main2Query setOpeningBal53(Integer value) { this.OpeningBal53 = value; return this; } public Integer getOpeningBal53GreaterThanOrEqualTo() { return OpeningBal53GreaterThanOrEqualTo; } public CR_Main2Query setOpeningBal53GreaterThanOrEqualTo(Integer value) { this.OpeningBal53GreaterThanOrEqualTo = value; return this; } public Integer getOpeningBal53GreaterThan() { return OpeningBal53GreaterThan; } public CR_Main2Query setOpeningBal53GreaterThan(Integer value) { this.OpeningBal53GreaterThan = value; return this; } public Integer getOpeningBal53LessThan() { return OpeningBal53LessThan; } public CR_Main2Query setOpeningBal53LessThan(Integer value) { this.OpeningBal53LessThan = value; return this; } public Integer getOpeningBal53LessThanOrEqualTo() { return OpeningBal53LessThanOrEqualTo; } public CR_Main2Query setOpeningBal53LessThanOrEqualTo(Integer value) { this.OpeningBal53LessThanOrEqualTo = value; return this; } public Integer getOpeningBal53NotEqualTo() { return OpeningBal53NotEqualTo; } public CR_Main2Query setOpeningBal53NotEqualTo(Integer value) { this.OpeningBal53NotEqualTo = value; return this; } public ArrayList getOpeningBal53Between() { return OpeningBal53Between; } public CR_Main2Query setOpeningBal53Between(ArrayList value) { this.OpeningBal53Between = value; return this; } public ArrayList getOpeningBal53In() { return OpeningBal53In; } public CR_Main2Query setOpeningBal53In(ArrayList value) { this.OpeningBal53In = value; return this; } public Short getPeriodType() { return PeriodType; } public CR_Main2Query setPeriodType(Short value) { this.PeriodType = value; return this; } public Short getPeriodTypeGreaterThanOrEqualTo() { return PeriodTypeGreaterThanOrEqualTo; } public CR_Main2Query setPeriodTypeGreaterThanOrEqualTo(Short value) { this.PeriodTypeGreaterThanOrEqualTo = value; return this; } public Short getPeriodTypeGreaterThan() { return PeriodTypeGreaterThan; } public CR_Main2Query setPeriodTypeGreaterThan(Short value) { this.PeriodTypeGreaterThan = value; return this; } public Short getPeriodTypeLessThan() { return PeriodTypeLessThan; } public CR_Main2Query setPeriodTypeLessThan(Short value) { this.PeriodTypeLessThan = value; return this; } public Short getPeriodTypeLessThanOrEqualTo() { return PeriodTypeLessThanOrEqualTo; } public CR_Main2Query setPeriodTypeLessThanOrEqualTo(Short value) { this.PeriodTypeLessThanOrEqualTo = value; return this; } public Short getPeriodTypeNotEqualTo() { return PeriodTypeNotEqualTo; } public CR_Main2Query setPeriodTypeNotEqualTo(Short value) { this.PeriodTypeNotEqualTo = value; return this; } public ArrayList getPeriodTypeBetween() { return PeriodTypeBetween; } public CR_Main2Query setPeriodTypeBetween(ArrayList value) { this.PeriodTypeBetween = value; return this; } public ArrayList getPeriodTypeIn() { return PeriodTypeIn; } public CR_Main2Query setPeriodTypeIn(ArrayList value) { this.PeriodTypeIn = value; return this; } public String getFxGainLossLedgerID() { return FXGainLossLedgerID; } public CR_Main2Query setFxGainLossLedgerID(String value) { this.FXGainLossLedgerID = value; return this; } public String getFxGainLossLedgerIDStartsWith() { return FXGainLossLedgerIDStartsWith; } public CR_Main2Query setFxGainLossLedgerIDStartsWith(String value) { this.FXGainLossLedgerIDStartsWith = value; return this; } public String getFxGainLossLedgerIDEndsWith() { return FXGainLossLedgerIDEndsWith; } public CR_Main2Query setFxGainLossLedgerIDEndsWith(String value) { this.FXGainLossLedgerIDEndsWith = value; return this; } public String getFxGainLossLedgerIDContains() { return FXGainLossLedgerIDContains; } public CR_Main2Query setFxGainLossLedgerIDContains(String value) { this.FXGainLossLedgerIDContains = value; return this; } public String getFxGainLossLedgerIDLike() { return FXGainLossLedgerIDLike; } public CR_Main2Query setFxGainLossLedgerIDLike(String value) { this.FXGainLossLedgerIDLike = value; return this; } public ArrayList getFxGainLossLedgerIDBetween() { return FXGainLossLedgerIDBetween; } public CR_Main2Query setFxGainLossLedgerIDBetween(ArrayList value) { this.FXGainLossLedgerIDBetween = value; return this; } public ArrayList getFxGainLossLedgerIDIn() { return FXGainLossLedgerIDIn; } public CR_Main2Query setFxGainLossLedgerIDIn(ArrayList value) { this.FXGainLossLedgerIDIn = value; return this; } public String getFxUnRealizedLedgerID() { return FXUnRealizedLedgerID; } public CR_Main2Query setFxUnRealizedLedgerID(String value) { this.FXUnRealizedLedgerID = value; return this; } public String getFxUnRealizedLedgerIDStartsWith() { return FXUnRealizedLedgerIDStartsWith; } public CR_Main2Query setFxUnRealizedLedgerIDStartsWith(String value) { this.FXUnRealizedLedgerIDStartsWith = value; return this; } public String getFxUnRealizedLedgerIDEndsWith() { return FXUnRealizedLedgerIDEndsWith; } public CR_Main2Query setFxUnRealizedLedgerIDEndsWith(String value) { this.FXUnRealizedLedgerIDEndsWith = value; return this; } public String getFxUnRealizedLedgerIDContains() { return FXUnRealizedLedgerIDContains; } public CR_Main2Query setFxUnRealizedLedgerIDContains(String value) { this.FXUnRealizedLedgerIDContains = value; return this; } public String getFxUnRealizedLedgerIDLike() { return FXUnRealizedLedgerIDLike; } public CR_Main2Query setFxUnRealizedLedgerIDLike(String value) { this.FXUnRealizedLedgerIDLike = value; return this; } public ArrayList getFxUnRealizedLedgerIDBetween() { return FXUnRealizedLedgerIDBetween; } public CR_Main2Query setFxUnRealizedLedgerIDBetween(ArrayList value) { this.FXUnRealizedLedgerIDBetween = value; return this; } public ArrayList getFxUnRealizedLedgerIDIn() { return FXUnRealizedLedgerIDIn; } public CR_Main2Query setFxUnRealizedLedgerIDIn(ArrayList value) { this.FXUnRealizedLedgerIDIn = value; return this; } public String getCustomField1() { return CustomField1; } public CR_Main2Query setCustomField1(String value) { this.CustomField1 = value; return this; } public String getCustomField1StartsWith() { return CustomField1StartsWith; } public CR_Main2Query setCustomField1StartsWith(String value) { this.CustomField1StartsWith = value; return this; } public String getCustomField1EndsWith() { return CustomField1EndsWith; } public CR_Main2Query setCustomField1EndsWith(String value) { this.CustomField1EndsWith = value; return this; } public String getCustomField1Contains() { return CustomField1Contains; } public CR_Main2Query setCustomField1Contains(String value) { this.CustomField1Contains = value; return this; } public String getCustomField1Like() { return CustomField1Like; } public CR_Main2Query setCustomField1Like(String value) { this.CustomField1Like = value; return this; } public ArrayList getCustomField1Between() { return CustomField1Between; } public CR_Main2Query setCustomField1Between(ArrayList value) { this.CustomField1Between = value; return this; } public ArrayList getCustomField1In() { return CustomField1In; } public CR_Main2Query setCustomField1In(ArrayList value) { this.CustomField1In = value; return this; } public String getCustomField2() { return CustomField2; } public CR_Main2Query setCustomField2(String value) { this.CustomField2 = value; return this; } public String getCustomField2StartsWith() { return CustomField2StartsWith; } public CR_Main2Query setCustomField2StartsWith(String value) { this.CustomField2StartsWith = value; return this; } public String getCustomField2EndsWith() { return CustomField2EndsWith; } public CR_Main2Query setCustomField2EndsWith(String value) { this.CustomField2EndsWith = value; return this; } public String getCustomField2Contains() { return CustomField2Contains; } public CR_Main2Query setCustomField2Contains(String value) { this.CustomField2Contains = value; return this; } public String getCustomField2Like() { return CustomField2Like; } public CR_Main2Query setCustomField2Like(String value) { this.CustomField2Like = value; return this; } public ArrayList getCustomField2Between() { return CustomField2Between; } public CR_Main2Query setCustomField2Between(ArrayList value) { this.CustomField2Between = value; return this; } public ArrayList getCustomField2In() { return CustomField2In; } public CR_Main2Query setCustomField2In(ArrayList value) { this.CustomField2In = value; return this; } public String getCustomField3() { return CustomField3; } public CR_Main2Query setCustomField3(String value) { this.CustomField3 = value; return this; } public String getCustomField3StartsWith() { return CustomField3StartsWith; } public CR_Main2Query setCustomField3StartsWith(String value) { this.CustomField3StartsWith = value; return this; } public String getCustomField3EndsWith() { return CustomField3EndsWith; } public CR_Main2Query setCustomField3EndsWith(String value) { this.CustomField3EndsWith = value; return this; } public String getCustomField3Contains() { return CustomField3Contains; } public CR_Main2Query setCustomField3Contains(String value) { this.CustomField3Contains = value; return this; } public String getCustomField3Like() { return CustomField3Like; } public CR_Main2Query setCustomField3Like(String value) { this.CustomField3Like = value; return this; } public ArrayList getCustomField3Between() { return CustomField3Between; } public CR_Main2Query setCustomField3Between(ArrayList value) { this.CustomField3Between = value; return this; } public ArrayList getCustomField3In() { return CustomField3In; } public CR_Main2Query setCustomField3In(ArrayList value) { this.CustomField3In = value; return this; } public String getCustomField4() { return CustomField4; } public CR_Main2Query setCustomField4(String value) { this.CustomField4 = value; return this; } public String getCustomField4StartsWith() { return CustomField4StartsWith; } public CR_Main2Query setCustomField4StartsWith(String value) { this.CustomField4StartsWith = value; return this; } public String getCustomField4EndsWith() { return CustomField4EndsWith; } public CR_Main2Query setCustomField4EndsWith(String value) { this.CustomField4EndsWith = value; return this; } public String getCustomField4Contains() { return CustomField4Contains; } public CR_Main2Query setCustomField4Contains(String value) { this.CustomField4Contains = value; return this; } public String getCustomField4Like() { return CustomField4Like; } public CR_Main2Query setCustomField4Like(String value) { this.CustomField4Like = value; return this; } public ArrayList getCustomField4Between() { return CustomField4Between; } public CR_Main2Query setCustomField4Between(ArrayList value) { this.CustomField4Between = value; return this; } public ArrayList getCustomField4In() { return CustomField4In; } public CR_Main2Query setCustomField4In(ArrayList value) { this.CustomField4In = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class CR_NotesQuery extends QueryDb implements IReturn> { public String RecID = null; public String RecIDStartsWith = null; public String RecIDEndsWith = null; public String RecIDContains = null; public String RecIDLike = null; public ArrayList RecIDBetween = null; public ArrayList RecIDIn = null; public String CreditorID = null; public String CreditorIDStartsWith = null; public String CreditorIDEndsWith = null; public String CreditorIDContains = null; public String CreditorIDLike = null; public ArrayList CreditorIDBetween = null; public ArrayList CreditorIDIn = null; public String NoteTypeID = null; public String NoteTypeIDStartsWith = null; public String NoteTypeIDEndsWith = null; public String NoteTypeIDContains = null; public String NoteTypeIDLike = null; public ArrayList NoteTypeIDBetween = null; public ArrayList NoteTypeIDIn = null; public Date LastSavedDateTime = null; public Date LastSavedDateTimeGreaterThanOrEqualTo = null; public Date LastSavedDateTimeGreaterThan = null; public Date LastSavedDateTimeLessThan = null; public Date LastSavedDateTimeLessThanOrEqualTo = null; public Date LastSavedDateTimeNotEqualTo = null; public ArrayList LastSavedDateTimeBetween = null; public ArrayList LastSavedDateTimeIn = null; public String LastSavedByStaffID = null; public String LastSavedByStaffIDStartsWith = null; public String LastSavedByStaffIDEndsWith = null; public String LastSavedByStaffIDContains = null; public String LastSavedByStaffIDLike = null; public ArrayList LastSavedByStaffIDBetween = null; public ArrayList LastSavedByStaffIDIn = null; public String NoteText = null; public String NoteTextStartsWith = null; public String NoteTextEndsWith = null; public String NoteTextContains = null; public String NoteTextLike = null; public ArrayList NoteTextBetween = null; public ArrayList NoteTextIn = null; public Integer ItemNo = null; public Integer ItemNoGreaterThanOrEqualTo = null; public Integer ItemNoGreaterThan = null; public Integer ItemNoLessThan = null; public Integer ItemNoLessThanOrEqualTo = null; public Integer ItemNoNotEqualTo = null; public ArrayList ItemNoBetween = null; public ArrayList ItemNoIn = null; public String getRecID() { return RecID; } public CR_NotesQuery setRecID(String value) { this.RecID = value; return this; } public String getRecIDStartsWith() { return RecIDStartsWith; } public CR_NotesQuery setRecIDStartsWith(String value) { this.RecIDStartsWith = value; return this; } public String getRecIDEndsWith() { return RecIDEndsWith; } public CR_NotesQuery setRecIDEndsWith(String value) { this.RecIDEndsWith = value; return this; } public String getRecIDContains() { return RecIDContains; } public CR_NotesQuery setRecIDContains(String value) { this.RecIDContains = value; return this; } public String getRecIDLike() { return RecIDLike; } public CR_NotesQuery setRecIDLike(String value) { this.RecIDLike = value; return this; } public ArrayList getRecIDBetween() { return RecIDBetween; } public CR_NotesQuery setRecIDBetween(ArrayList value) { this.RecIDBetween = value; return this; } public ArrayList getRecIDIn() { return RecIDIn; } public CR_NotesQuery setRecIDIn(ArrayList value) { this.RecIDIn = value; return this; } public String getCreditorID() { return CreditorID; } public CR_NotesQuery setCreditorID(String value) { this.CreditorID = value; return this; } public String getCreditorIDStartsWith() { return CreditorIDStartsWith; } public CR_NotesQuery setCreditorIDStartsWith(String value) { this.CreditorIDStartsWith = value; return this; } public String getCreditorIDEndsWith() { return CreditorIDEndsWith; } public CR_NotesQuery setCreditorIDEndsWith(String value) { this.CreditorIDEndsWith = value; return this; } public String getCreditorIDContains() { return CreditorIDContains; } public CR_NotesQuery setCreditorIDContains(String value) { this.CreditorIDContains = value; return this; } public String getCreditorIDLike() { return CreditorIDLike; } public CR_NotesQuery setCreditorIDLike(String value) { this.CreditorIDLike = value; return this; } public ArrayList getCreditorIDBetween() { return CreditorIDBetween; } public CR_NotesQuery setCreditorIDBetween(ArrayList value) { this.CreditorIDBetween = value; return this; } public ArrayList getCreditorIDIn() { return CreditorIDIn; } public CR_NotesQuery setCreditorIDIn(ArrayList value) { this.CreditorIDIn = value; return this; } public String getNoteTypeID() { return NoteTypeID; } public CR_NotesQuery setNoteTypeID(String value) { this.NoteTypeID = value; return this; } public String getNoteTypeIDStartsWith() { return NoteTypeIDStartsWith; } public CR_NotesQuery setNoteTypeIDStartsWith(String value) { this.NoteTypeIDStartsWith = value; return this; } public String getNoteTypeIDEndsWith() { return NoteTypeIDEndsWith; } public CR_NotesQuery setNoteTypeIDEndsWith(String value) { this.NoteTypeIDEndsWith = value; return this; } public String getNoteTypeIDContains() { return NoteTypeIDContains; } public CR_NotesQuery setNoteTypeIDContains(String value) { this.NoteTypeIDContains = value; return this; } public String getNoteTypeIDLike() { return NoteTypeIDLike; } public CR_NotesQuery setNoteTypeIDLike(String value) { this.NoteTypeIDLike = value; return this; } public ArrayList getNoteTypeIDBetween() { return NoteTypeIDBetween; } public CR_NotesQuery setNoteTypeIDBetween(ArrayList value) { this.NoteTypeIDBetween = value; return this; } public ArrayList getNoteTypeIDIn() { return NoteTypeIDIn; } public CR_NotesQuery setNoteTypeIDIn(ArrayList value) { this.NoteTypeIDIn = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public CR_NotesQuery setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getLastSavedDateTimeGreaterThanOrEqualTo() { return LastSavedDateTimeGreaterThanOrEqualTo; } public CR_NotesQuery setLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.LastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeGreaterThan() { return LastSavedDateTimeGreaterThan; } public CR_NotesQuery setLastSavedDateTimeGreaterThan(Date value) { this.LastSavedDateTimeGreaterThan = value; return this; } public Date getLastSavedDateTimeLessThan() { return LastSavedDateTimeLessThan; } public CR_NotesQuery setLastSavedDateTimeLessThan(Date value) { this.LastSavedDateTimeLessThan = value; return this; } public Date getLastSavedDateTimeLessThanOrEqualTo() { return LastSavedDateTimeLessThanOrEqualTo; } public CR_NotesQuery setLastSavedDateTimeLessThanOrEqualTo(Date value) { this.LastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeNotEqualTo() { return LastSavedDateTimeNotEqualTo; } public CR_NotesQuery setLastSavedDateTimeNotEqualTo(Date value) { this.LastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getLastSavedDateTimeBetween() { return LastSavedDateTimeBetween; } public CR_NotesQuery setLastSavedDateTimeBetween(ArrayList value) { this.LastSavedDateTimeBetween = value; return this; } public ArrayList getLastSavedDateTimeIn() { return LastSavedDateTimeIn; } public CR_NotesQuery setLastSavedDateTimeIn(ArrayList value) { this.LastSavedDateTimeIn = value; return this; } public String getLastSavedByStaffID() { return LastSavedByStaffID; } public CR_NotesQuery setLastSavedByStaffID(String value) { this.LastSavedByStaffID = value; return this; } public String getLastSavedByStaffIDStartsWith() { return LastSavedByStaffIDStartsWith; } public CR_NotesQuery setLastSavedByStaffIDStartsWith(String value) { this.LastSavedByStaffIDStartsWith = value; return this; } public String getLastSavedByStaffIDEndsWith() { return LastSavedByStaffIDEndsWith; } public CR_NotesQuery setLastSavedByStaffIDEndsWith(String value) { this.LastSavedByStaffIDEndsWith = value; return this; } public String getLastSavedByStaffIDContains() { return LastSavedByStaffIDContains; } public CR_NotesQuery setLastSavedByStaffIDContains(String value) { this.LastSavedByStaffIDContains = value; return this; } public String getLastSavedByStaffIDLike() { return LastSavedByStaffIDLike; } public CR_NotesQuery setLastSavedByStaffIDLike(String value) { this.LastSavedByStaffIDLike = value; return this; } public ArrayList getLastSavedByStaffIDBetween() { return LastSavedByStaffIDBetween; } public CR_NotesQuery setLastSavedByStaffIDBetween(ArrayList value) { this.LastSavedByStaffIDBetween = value; return this; } public ArrayList getLastSavedByStaffIDIn() { return LastSavedByStaffIDIn; } public CR_NotesQuery setLastSavedByStaffIDIn(ArrayList value) { this.LastSavedByStaffIDIn = value; return this; } public String getNoteText() { return NoteText; } public CR_NotesQuery setNoteText(String value) { this.NoteText = value; return this; } public String getNoteTextStartsWith() { return NoteTextStartsWith; } public CR_NotesQuery setNoteTextStartsWith(String value) { this.NoteTextStartsWith = value; return this; } public String getNoteTextEndsWith() { return NoteTextEndsWith; } public CR_NotesQuery setNoteTextEndsWith(String value) { this.NoteTextEndsWith = value; return this; } public String getNoteTextContains() { return NoteTextContains; } public CR_NotesQuery setNoteTextContains(String value) { this.NoteTextContains = value; return this; } public String getNoteTextLike() { return NoteTextLike; } public CR_NotesQuery setNoteTextLike(String value) { this.NoteTextLike = value; return this; } public ArrayList getNoteTextBetween() { return NoteTextBetween; } public CR_NotesQuery setNoteTextBetween(ArrayList value) { this.NoteTextBetween = value; return this; } public ArrayList getNoteTextIn() { return NoteTextIn; } public CR_NotesQuery setNoteTextIn(ArrayList value) { this.NoteTextIn = value; return this; } public Integer getItemNo() { return ItemNo; } public CR_NotesQuery setItemNo(Integer value) { this.ItemNo = value; return this; } public Integer getItemNoGreaterThanOrEqualTo() { return ItemNoGreaterThanOrEqualTo; } public CR_NotesQuery setItemNoGreaterThanOrEqualTo(Integer value) { this.ItemNoGreaterThanOrEqualTo = value; return this; } public Integer getItemNoGreaterThan() { return ItemNoGreaterThan; } public CR_NotesQuery setItemNoGreaterThan(Integer value) { this.ItemNoGreaterThan = value; return this; } public Integer getItemNoLessThan() { return ItemNoLessThan; } public CR_NotesQuery setItemNoLessThan(Integer value) { this.ItemNoLessThan = value; return this; } public Integer getItemNoLessThanOrEqualTo() { return ItemNoLessThanOrEqualTo; } public CR_NotesQuery setItemNoLessThanOrEqualTo(Integer value) { this.ItemNoLessThanOrEqualTo = value; return this; } public Integer getItemNoNotEqualTo() { return ItemNoNotEqualTo; } public CR_NotesQuery setItemNoNotEqualTo(Integer value) { this.ItemNoNotEqualTo = value; return this; } public ArrayList getItemNoBetween() { return ItemNoBetween; } public CR_NotesQuery setItemNoBetween(ArrayList value) { this.ItemNoBetween = value; return this; } public ArrayList getItemNoIn() { return ItemNoIn; } public CR_NotesQuery setItemNoIn(ArrayList value) { this.ItemNoIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class CR_PaymentCustomSettingQuery extends QueryDb implements IReturn> { public String SettingID = null; public String SettingIDStartsWith = null; public String SettingIDEndsWith = null; public String SettingIDContains = null; public String SettingIDLike = null; public ArrayList SettingIDBetween = null; public ArrayList SettingIDIn = null; public Date LastSavedDateTime = null; public Date LastSavedDateTimeGreaterThanOrEqualTo = null; public Date LastSavedDateTimeGreaterThan = null; public Date LastSavedDateTimeLessThan = null; public Date LastSavedDateTimeLessThanOrEqualTo = null; public Date LastSavedDateTimeNotEqualTo = null; public ArrayList LastSavedDateTimeBetween = null; public ArrayList LastSavedDateTimeIn = null; public String SettingDescription = null; public String SettingDescriptionStartsWith = null; public String SettingDescriptionEndsWith = null; public String SettingDescriptionContains = null; public String SettingDescriptionLike = null; public ArrayList SettingDescriptionBetween = null; public ArrayList SettingDescriptionIn = null; public String SettingName = null; public String SettingNameStartsWith = null; public String SettingNameEndsWith = null; public String SettingNameContains = null; public String SettingNameLike = null; public ArrayList SettingNameBetween = null; public ArrayList SettingNameIn = null; public Integer DisplayOrder = null; public Integer DisplayOrderGreaterThanOrEqualTo = null; public Integer DisplayOrderGreaterThan = null; public Integer DisplayOrderLessThan = null; public Integer DisplayOrderLessThanOrEqualTo = null; public Integer DisplayOrderNotEqualTo = null; public ArrayList DisplayOrderBetween = null; public ArrayList DisplayOrderIn = null; public Short CellType = null; public Short CellTypeGreaterThanOrEqualTo = null; public Short CellTypeGreaterThan = null; public Short CellTypeLessThan = null; public Short CellTypeLessThanOrEqualTo = null; public Short CellTypeNotEqualTo = null; public ArrayList CellTypeBetween = null; public ArrayList CellTypeIn = null; public String ScriptFormatCell = null; public String ScriptFormatCellStartsWith = null; public String ScriptFormatCellEndsWith = null; public String ScriptFormatCellContains = null; public String ScriptFormatCellLike = null; public ArrayList ScriptFormatCellBetween = null; public ArrayList ScriptFormatCellIn = null; public String ScriptButtonClicked = null; public String ScriptButtonClickedStartsWith = null; public String ScriptButtonClickedEndsWith = null; public String ScriptButtonClickedContains = null; public String ScriptButtonClickedLike = null; public ArrayList ScriptButtonClickedBetween = null; public ArrayList ScriptButtonClickedIn = null; public String ScriptReadData = null; public String ScriptReadDataStartsWith = null; public String ScriptReadDataEndsWith = null; public String ScriptReadDataContains = null; public String ScriptReadDataLike = null; public ArrayList ScriptReadDataBetween = null; public ArrayList ScriptReadDataIn = null; public String GridHandlerCode = null; public String GridHandlerCodeStartsWith = null; public String GridHandlerCodeEndsWith = null; public String GridHandlerCodeContains = null; public String GridHandlerCodeLike = null; public ArrayList GridHandlerCodeBetween = null; public ArrayList GridHandlerCodeIn = null; public UUID SY_Plugin_RecID = null; public ArrayList SY_Plugin_RecIDIn = null; public String getSettingID() { return SettingID; } public CR_PaymentCustomSettingQuery setSettingID(String value) { this.SettingID = value; return this; } public String getSettingIDStartsWith() { return SettingIDStartsWith; } public CR_PaymentCustomSettingQuery setSettingIDStartsWith(String value) { this.SettingIDStartsWith = value; return this; } public String getSettingIDEndsWith() { return SettingIDEndsWith; } public CR_PaymentCustomSettingQuery setSettingIDEndsWith(String value) { this.SettingIDEndsWith = value; return this; } public String getSettingIDContains() { return SettingIDContains; } public CR_PaymentCustomSettingQuery setSettingIDContains(String value) { this.SettingIDContains = value; return this; } public String getSettingIDLike() { return SettingIDLike; } public CR_PaymentCustomSettingQuery setSettingIDLike(String value) { this.SettingIDLike = value; return this; } public ArrayList getSettingIDBetween() { return SettingIDBetween; } public CR_PaymentCustomSettingQuery setSettingIDBetween(ArrayList value) { this.SettingIDBetween = value; return this; } public ArrayList getSettingIDIn() { return SettingIDIn; } public CR_PaymentCustomSettingQuery setSettingIDIn(ArrayList value) { this.SettingIDIn = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public CR_PaymentCustomSettingQuery setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getLastSavedDateTimeGreaterThanOrEqualTo() { return LastSavedDateTimeGreaterThanOrEqualTo; } public CR_PaymentCustomSettingQuery setLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.LastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeGreaterThan() { return LastSavedDateTimeGreaterThan; } public CR_PaymentCustomSettingQuery setLastSavedDateTimeGreaterThan(Date value) { this.LastSavedDateTimeGreaterThan = value; return this; } public Date getLastSavedDateTimeLessThan() { return LastSavedDateTimeLessThan; } public CR_PaymentCustomSettingQuery setLastSavedDateTimeLessThan(Date value) { this.LastSavedDateTimeLessThan = value; return this; } public Date getLastSavedDateTimeLessThanOrEqualTo() { return LastSavedDateTimeLessThanOrEqualTo; } public CR_PaymentCustomSettingQuery setLastSavedDateTimeLessThanOrEqualTo(Date value) { this.LastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeNotEqualTo() { return LastSavedDateTimeNotEqualTo; } public CR_PaymentCustomSettingQuery setLastSavedDateTimeNotEqualTo(Date value) { this.LastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getLastSavedDateTimeBetween() { return LastSavedDateTimeBetween; } public CR_PaymentCustomSettingQuery setLastSavedDateTimeBetween(ArrayList value) { this.LastSavedDateTimeBetween = value; return this; } public ArrayList getLastSavedDateTimeIn() { return LastSavedDateTimeIn; } public CR_PaymentCustomSettingQuery setLastSavedDateTimeIn(ArrayList value) { this.LastSavedDateTimeIn = value; return this; } public String getSettingDescription() { return SettingDescription; } public CR_PaymentCustomSettingQuery setSettingDescription(String value) { this.SettingDescription = value; return this; } public String getSettingDescriptionStartsWith() { return SettingDescriptionStartsWith; } public CR_PaymentCustomSettingQuery setSettingDescriptionStartsWith(String value) { this.SettingDescriptionStartsWith = value; return this; } public String getSettingDescriptionEndsWith() { return SettingDescriptionEndsWith; } public CR_PaymentCustomSettingQuery setSettingDescriptionEndsWith(String value) { this.SettingDescriptionEndsWith = value; return this; } public String getSettingDescriptionContains() { return SettingDescriptionContains; } public CR_PaymentCustomSettingQuery setSettingDescriptionContains(String value) { this.SettingDescriptionContains = value; return this; } public String getSettingDescriptionLike() { return SettingDescriptionLike; } public CR_PaymentCustomSettingQuery setSettingDescriptionLike(String value) { this.SettingDescriptionLike = value; return this; } public ArrayList getSettingDescriptionBetween() { return SettingDescriptionBetween; } public CR_PaymentCustomSettingQuery setSettingDescriptionBetween(ArrayList value) { this.SettingDescriptionBetween = value; return this; } public ArrayList getSettingDescriptionIn() { return SettingDescriptionIn; } public CR_PaymentCustomSettingQuery setSettingDescriptionIn(ArrayList value) { this.SettingDescriptionIn = value; return this; } public String getSettingName() { return SettingName; } public CR_PaymentCustomSettingQuery setSettingName(String value) { this.SettingName = value; return this; } public String getSettingNameStartsWith() { return SettingNameStartsWith; } public CR_PaymentCustomSettingQuery setSettingNameStartsWith(String value) { this.SettingNameStartsWith = value; return this; } public String getSettingNameEndsWith() { return SettingNameEndsWith; } public CR_PaymentCustomSettingQuery setSettingNameEndsWith(String value) { this.SettingNameEndsWith = value; return this; } public String getSettingNameContains() { return SettingNameContains; } public CR_PaymentCustomSettingQuery setSettingNameContains(String value) { this.SettingNameContains = value; return this; } public String getSettingNameLike() { return SettingNameLike; } public CR_PaymentCustomSettingQuery setSettingNameLike(String value) { this.SettingNameLike = value; return this; } public ArrayList getSettingNameBetween() { return SettingNameBetween; } public CR_PaymentCustomSettingQuery setSettingNameBetween(ArrayList value) { this.SettingNameBetween = value; return this; } public ArrayList getSettingNameIn() { return SettingNameIn; } public CR_PaymentCustomSettingQuery setSettingNameIn(ArrayList value) { this.SettingNameIn = value; return this; } public Integer getDisplayOrder() { return DisplayOrder; } public CR_PaymentCustomSettingQuery setDisplayOrder(Integer value) { this.DisplayOrder = value; return this; } public Integer getDisplayOrderGreaterThanOrEqualTo() { return DisplayOrderGreaterThanOrEqualTo; } public CR_PaymentCustomSettingQuery setDisplayOrderGreaterThanOrEqualTo(Integer value) { this.DisplayOrderGreaterThanOrEqualTo = value; return this; } public Integer getDisplayOrderGreaterThan() { return DisplayOrderGreaterThan; } public CR_PaymentCustomSettingQuery setDisplayOrderGreaterThan(Integer value) { this.DisplayOrderGreaterThan = value; return this; } public Integer getDisplayOrderLessThan() { return DisplayOrderLessThan; } public CR_PaymentCustomSettingQuery setDisplayOrderLessThan(Integer value) { this.DisplayOrderLessThan = value; return this; } public Integer getDisplayOrderLessThanOrEqualTo() { return DisplayOrderLessThanOrEqualTo; } public CR_PaymentCustomSettingQuery setDisplayOrderLessThanOrEqualTo(Integer value) { this.DisplayOrderLessThanOrEqualTo = value; return this; } public Integer getDisplayOrderNotEqualTo() { return DisplayOrderNotEqualTo; } public CR_PaymentCustomSettingQuery setDisplayOrderNotEqualTo(Integer value) { this.DisplayOrderNotEqualTo = value; return this; } public ArrayList getDisplayOrderBetween() { return DisplayOrderBetween; } public CR_PaymentCustomSettingQuery setDisplayOrderBetween(ArrayList value) { this.DisplayOrderBetween = value; return this; } public ArrayList getDisplayOrderIn() { return DisplayOrderIn; } public CR_PaymentCustomSettingQuery setDisplayOrderIn(ArrayList value) { this.DisplayOrderIn = value; return this; } public Short getCellType() { return CellType; } public CR_PaymentCustomSettingQuery setCellType(Short value) { this.CellType = value; return this; } public Short getCellTypeGreaterThanOrEqualTo() { return CellTypeGreaterThanOrEqualTo; } public CR_PaymentCustomSettingQuery setCellTypeGreaterThanOrEqualTo(Short value) { this.CellTypeGreaterThanOrEqualTo = value; return this; } public Short getCellTypeGreaterThan() { return CellTypeGreaterThan; } public CR_PaymentCustomSettingQuery setCellTypeGreaterThan(Short value) { this.CellTypeGreaterThan = value; return this; } public Short getCellTypeLessThan() { return CellTypeLessThan; } public CR_PaymentCustomSettingQuery setCellTypeLessThan(Short value) { this.CellTypeLessThan = value; return this; } public Short getCellTypeLessThanOrEqualTo() { return CellTypeLessThanOrEqualTo; } public CR_PaymentCustomSettingQuery setCellTypeLessThanOrEqualTo(Short value) { this.CellTypeLessThanOrEqualTo = value; return this; } public Short getCellTypeNotEqualTo() { return CellTypeNotEqualTo; } public CR_PaymentCustomSettingQuery setCellTypeNotEqualTo(Short value) { this.CellTypeNotEqualTo = value; return this; } public ArrayList getCellTypeBetween() { return CellTypeBetween; } public CR_PaymentCustomSettingQuery setCellTypeBetween(ArrayList value) { this.CellTypeBetween = value; return this; } public ArrayList getCellTypeIn() { return CellTypeIn; } public CR_PaymentCustomSettingQuery setCellTypeIn(ArrayList value) { this.CellTypeIn = value; return this; } public String getScriptFormatCell() { return ScriptFormatCell; } public CR_PaymentCustomSettingQuery setScriptFormatCell(String value) { this.ScriptFormatCell = value; return this; } public String getScriptFormatCellStartsWith() { return ScriptFormatCellStartsWith; } public CR_PaymentCustomSettingQuery setScriptFormatCellStartsWith(String value) { this.ScriptFormatCellStartsWith = value; return this; } public String getScriptFormatCellEndsWith() { return ScriptFormatCellEndsWith; } public CR_PaymentCustomSettingQuery setScriptFormatCellEndsWith(String value) { this.ScriptFormatCellEndsWith = value; return this; } public String getScriptFormatCellContains() { return ScriptFormatCellContains; } public CR_PaymentCustomSettingQuery setScriptFormatCellContains(String value) { this.ScriptFormatCellContains = value; return this; } public String getScriptFormatCellLike() { return ScriptFormatCellLike; } public CR_PaymentCustomSettingQuery setScriptFormatCellLike(String value) { this.ScriptFormatCellLike = value; return this; } public ArrayList getScriptFormatCellBetween() { return ScriptFormatCellBetween; } public CR_PaymentCustomSettingQuery setScriptFormatCellBetween(ArrayList value) { this.ScriptFormatCellBetween = value; return this; } public ArrayList getScriptFormatCellIn() { return ScriptFormatCellIn; } public CR_PaymentCustomSettingQuery setScriptFormatCellIn(ArrayList value) { this.ScriptFormatCellIn = value; return this; } public String getScriptButtonClicked() { return ScriptButtonClicked; } public CR_PaymentCustomSettingQuery setScriptButtonClicked(String value) { this.ScriptButtonClicked = value; return this; } public String getScriptButtonClickedStartsWith() { return ScriptButtonClickedStartsWith; } public CR_PaymentCustomSettingQuery setScriptButtonClickedStartsWith(String value) { this.ScriptButtonClickedStartsWith = value; return this; } public String getScriptButtonClickedEndsWith() { return ScriptButtonClickedEndsWith; } public CR_PaymentCustomSettingQuery setScriptButtonClickedEndsWith(String value) { this.ScriptButtonClickedEndsWith = value; return this; } public String getScriptButtonClickedContains() { return ScriptButtonClickedContains; } public CR_PaymentCustomSettingQuery setScriptButtonClickedContains(String value) { this.ScriptButtonClickedContains = value; return this; } public String getScriptButtonClickedLike() { return ScriptButtonClickedLike; } public CR_PaymentCustomSettingQuery setScriptButtonClickedLike(String value) { this.ScriptButtonClickedLike = value; return this; } public ArrayList getScriptButtonClickedBetween() { return ScriptButtonClickedBetween; } public CR_PaymentCustomSettingQuery setScriptButtonClickedBetween(ArrayList value) { this.ScriptButtonClickedBetween = value; return this; } public ArrayList getScriptButtonClickedIn() { return ScriptButtonClickedIn; } public CR_PaymentCustomSettingQuery setScriptButtonClickedIn(ArrayList value) { this.ScriptButtonClickedIn = value; return this; } public String getScriptReadData() { return ScriptReadData; } public CR_PaymentCustomSettingQuery setScriptReadData(String value) { this.ScriptReadData = value; return this; } public String getScriptReadDataStartsWith() { return ScriptReadDataStartsWith; } public CR_PaymentCustomSettingQuery setScriptReadDataStartsWith(String value) { this.ScriptReadDataStartsWith = value; return this; } public String getScriptReadDataEndsWith() { return ScriptReadDataEndsWith; } public CR_PaymentCustomSettingQuery setScriptReadDataEndsWith(String value) { this.ScriptReadDataEndsWith = value; return this; } public String getScriptReadDataContains() { return ScriptReadDataContains; } public CR_PaymentCustomSettingQuery setScriptReadDataContains(String value) { this.ScriptReadDataContains = value; return this; } public String getScriptReadDataLike() { return ScriptReadDataLike; } public CR_PaymentCustomSettingQuery setScriptReadDataLike(String value) { this.ScriptReadDataLike = value; return this; } public ArrayList getScriptReadDataBetween() { return ScriptReadDataBetween; } public CR_PaymentCustomSettingQuery setScriptReadDataBetween(ArrayList value) { this.ScriptReadDataBetween = value; return this; } public ArrayList getScriptReadDataIn() { return ScriptReadDataIn; } public CR_PaymentCustomSettingQuery setScriptReadDataIn(ArrayList value) { this.ScriptReadDataIn = value; return this; } public String getGridHandlerCode() { return GridHandlerCode; } public CR_PaymentCustomSettingQuery setGridHandlerCode(String value) { this.GridHandlerCode = value; return this; } public String getGridHandlerCodeStartsWith() { return GridHandlerCodeStartsWith; } public CR_PaymentCustomSettingQuery setGridHandlerCodeStartsWith(String value) { this.GridHandlerCodeStartsWith = value; return this; } public String getGridHandlerCodeEndsWith() { return GridHandlerCodeEndsWith; } public CR_PaymentCustomSettingQuery setGridHandlerCodeEndsWith(String value) { this.GridHandlerCodeEndsWith = value; return this; } public String getGridHandlerCodeContains() { return GridHandlerCodeContains; } public CR_PaymentCustomSettingQuery setGridHandlerCodeContains(String value) { this.GridHandlerCodeContains = value; return this; } public String getGridHandlerCodeLike() { return GridHandlerCodeLike; } public CR_PaymentCustomSettingQuery setGridHandlerCodeLike(String value) { this.GridHandlerCodeLike = value; return this; } public ArrayList getGridHandlerCodeBetween() { return GridHandlerCodeBetween; } public CR_PaymentCustomSettingQuery setGridHandlerCodeBetween(ArrayList value) { this.GridHandlerCodeBetween = value; return this; } public ArrayList getGridHandlerCodeIn() { return GridHandlerCodeIn; } public CR_PaymentCustomSettingQuery setGridHandlerCodeIn(ArrayList value) { this.GridHandlerCodeIn = value; return this; } public UUID getSyPluginRecID() { return SY_Plugin_RecID; } public CR_PaymentCustomSettingQuery setSyPluginRecID(UUID value) { this.SY_Plugin_RecID = value; return this; } public ArrayList getSyPluginRecIDIn() { return SY_Plugin_RecIDIn; } public CR_PaymentCustomSettingQuery setSyPluginRecIDIn(ArrayList value) { this.SY_Plugin_RecIDIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class CR_PaymentCustomSettingValuesQuery extends QueryDb implements IReturn> { public String SettingValueID = null; public String SettingValueIDStartsWith = null; public String SettingValueIDEndsWith = null; public String SettingValueIDContains = null; public String SettingValueIDLike = null; public ArrayList SettingValueIDBetween = null; public ArrayList SettingValueIDIn = null; public String SettingID = null; public String SettingIDStartsWith = null; public String SettingIDEndsWith = null; public String SettingIDContains = null; public String SettingIDLike = null; public ArrayList SettingIDBetween = null; public ArrayList SettingIDIn = null; public String CR_BatchTrans_ReceiptID = null; public String CR_BatchTrans_ReceiptIDStartsWith = null; public String CR_BatchTrans_ReceiptIDEndsWith = null; public String CR_BatchTrans_ReceiptIDContains = null; public String CR_BatchTrans_ReceiptIDLike = null; public ArrayList CR_BatchTrans_ReceiptIDBetween = null; public ArrayList CR_BatchTrans_ReceiptIDIn = null; public String Contents = null; public String ContentsStartsWith = null; public String ContentsEndsWith = null; public String ContentsContains = null; public String ContentsLike = null; public ArrayList ContentsBetween = null; public ArrayList ContentsIn = null; public Date LastSavedDateTime = null; public Date LastSavedDateTimeGreaterThanOrEqualTo = null; public Date LastSavedDateTimeGreaterThan = null; public Date LastSavedDateTimeLessThan = null; public Date LastSavedDateTimeLessThanOrEqualTo = null; public Date LastSavedDateTimeNotEqualTo = null; public ArrayList LastSavedDateTimeBetween = null; public ArrayList LastSavedDateTimeIn = null; public String getSettingValueID() { return SettingValueID; } public CR_PaymentCustomSettingValuesQuery setSettingValueID(String value) { this.SettingValueID = value; return this; } public String getSettingValueIDStartsWith() { return SettingValueIDStartsWith; } public CR_PaymentCustomSettingValuesQuery setSettingValueIDStartsWith(String value) { this.SettingValueIDStartsWith = value; return this; } public String getSettingValueIDEndsWith() { return SettingValueIDEndsWith; } public CR_PaymentCustomSettingValuesQuery setSettingValueIDEndsWith(String value) { this.SettingValueIDEndsWith = value; return this; } public String getSettingValueIDContains() { return SettingValueIDContains; } public CR_PaymentCustomSettingValuesQuery setSettingValueIDContains(String value) { this.SettingValueIDContains = value; return this; } public String getSettingValueIDLike() { return SettingValueIDLike; } public CR_PaymentCustomSettingValuesQuery setSettingValueIDLike(String value) { this.SettingValueIDLike = value; return this; } public ArrayList getSettingValueIDBetween() { return SettingValueIDBetween; } public CR_PaymentCustomSettingValuesQuery setSettingValueIDBetween(ArrayList value) { this.SettingValueIDBetween = value; return this; } public ArrayList getSettingValueIDIn() { return SettingValueIDIn; } public CR_PaymentCustomSettingValuesQuery setSettingValueIDIn(ArrayList value) { this.SettingValueIDIn = value; return this; } public String getSettingID() { return SettingID; } public CR_PaymentCustomSettingValuesQuery setSettingID(String value) { this.SettingID = value; return this; } public String getSettingIDStartsWith() { return SettingIDStartsWith; } public CR_PaymentCustomSettingValuesQuery setSettingIDStartsWith(String value) { this.SettingIDStartsWith = value; return this; } public String getSettingIDEndsWith() { return SettingIDEndsWith; } public CR_PaymentCustomSettingValuesQuery setSettingIDEndsWith(String value) { this.SettingIDEndsWith = value; return this; } public String getSettingIDContains() { return SettingIDContains; } public CR_PaymentCustomSettingValuesQuery setSettingIDContains(String value) { this.SettingIDContains = value; return this; } public String getSettingIDLike() { return SettingIDLike; } public CR_PaymentCustomSettingValuesQuery setSettingIDLike(String value) { this.SettingIDLike = value; return this; } public ArrayList getSettingIDBetween() { return SettingIDBetween; } public CR_PaymentCustomSettingValuesQuery setSettingIDBetween(ArrayList value) { this.SettingIDBetween = value; return this; } public ArrayList getSettingIDIn() { return SettingIDIn; } public CR_PaymentCustomSettingValuesQuery setSettingIDIn(ArrayList value) { this.SettingIDIn = value; return this; } public String getCrBatchTransReceiptID() { return CR_BatchTrans_ReceiptID; } public CR_PaymentCustomSettingValuesQuery setCrBatchTransReceiptID(String value) { this.CR_BatchTrans_ReceiptID = value; return this; } public String getCrBatchTransReceiptIDStartsWith() { return CR_BatchTrans_ReceiptIDStartsWith; } public CR_PaymentCustomSettingValuesQuery setCrBatchTransReceiptIDStartsWith(String value) { this.CR_BatchTrans_ReceiptIDStartsWith = value; return this; } public String getCrBatchTransReceiptIDEndsWith() { return CR_BatchTrans_ReceiptIDEndsWith; } public CR_PaymentCustomSettingValuesQuery setCrBatchTransReceiptIDEndsWith(String value) { this.CR_BatchTrans_ReceiptIDEndsWith = value; return this; } public String getCrBatchTransReceiptIDContains() { return CR_BatchTrans_ReceiptIDContains; } public CR_PaymentCustomSettingValuesQuery setCrBatchTransReceiptIDContains(String value) { this.CR_BatchTrans_ReceiptIDContains = value; return this; } public String getCrBatchTransReceiptIDLike() { return CR_BatchTrans_ReceiptIDLike; } public CR_PaymentCustomSettingValuesQuery setCrBatchTransReceiptIDLike(String value) { this.CR_BatchTrans_ReceiptIDLike = value; return this; } public ArrayList getCrBatchTransReceiptIDBetween() { return CR_BatchTrans_ReceiptIDBetween; } public CR_PaymentCustomSettingValuesQuery setCrBatchTransReceiptIDBetween(ArrayList value) { this.CR_BatchTrans_ReceiptIDBetween = value; return this; } public ArrayList getCrBatchTransReceiptIDIn() { return CR_BatchTrans_ReceiptIDIn; } public CR_PaymentCustomSettingValuesQuery setCrBatchTransReceiptIDIn(ArrayList value) { this.CR_BatchTrans_ReceiptIDIn = value; return this; } public String getContents() { return Contents; } public CR_PaymentCustomSettingValuesQuery setContents(String value) { this.Contents = value; return this; } public String getContentsStartsWith() { return ContentsStartsWith; } public CR_PaymentCustomSettingValuesQuery setContentsStartsWith(String value) { this.ContentsStartsWith = value; return this; } public String getContentsEndsWith() { return ContentsEndsWith; } public CR_PaymentCustomSettingValuesQuery setContentsEndsWith(String value) { this.ContentsEndsWith = value; return this; } public String getContentsContains() { return ContentsContains; } public CR_PaymentCustomSettingValuesQuery setContentsContains(String value) { this.ContentsContains = value; return this; } public String getContentsLike() { return ContentsLike; } public CR_PaymentCustomSettingValuesQuery setContentsLike(String value) { this.ContentsLike = value; return this; } public ArrayList getContentsBetween() { return ContentsBetween; } public CR_PaymentCustomSettingValuesQuery setContentsBetween(ArrayList value) { this.ContentsBetween = value; return this; } public ArrayList getContentsIn() { return ContentsIn; } public CR_PaymentCustomSettingValuesQuery setContentsIn(ArrayList value) { this.ContentsIn = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public CR_PaymentCustomSettingValuesQuery setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getLastSavedDateTimeGreaterThanOrEqualTo() { return LastSavedDateTimeGreaterThanOrEqualTo; } public CR_PaymentCustomSettingValuesQuery setLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.LastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeGreaterThan() { return LastSavedDateTimeGreaterThan; } public CR_PaymentCustomSettingValuesQuery setLastSavedDateTimeGreaterThan(Date value) { this.LastSavedDateTimeGreaterThan = value; return this; } public Date getLastSavedDateTimeLessThan() { return LastSavedDateTimeLessThan; } public CR_PaymentCustomSettingValuesQuery setLastSavedDateTimeLessThan(Date value) { this.LastSavedDateTimeLessThan = value; return this; } public Date getLastSavedDateTimeLessThanOrEqualTo() { return LastSavedDateTimeLessThanOrEqualTo; } public CR_PaymentCustomSettingValuesQuery setLastSavedDateTimeLessThanOrEqualTo(Date value) { this.LastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeNotEqualTo() { return LastSavedDateTimeNotEqualTo; } public CR_PaymentCustomSettingValuesQuery setLastSavedDateTimeNotEqualTo(Date value) { this.LastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getLastSavedDateTimeBetween() { return LastSavedDateTimeBetween; } public CR_PaymentCustomSettingValuesQuery setLastSavedDateTimeBetween(ArrayList value) { this.LastSavedDateTimeBetween = value; return this; } public ArrayList getLastSavedDateTimeIn() { return LastSavedDateTimeIn; } public CR_PaymentCustomSettingValuesQuery setLastSavedDateTimeIn(ArrayList value) { this.LastSavedDateTimeIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class CR_PurchaseCustomSettingQuery extends QueryDb implements IReturn> { public String SettingID = null; public String SettingIDStartsWith = null; public String SettingIDEndsWith = null; public String SettingIDContains = null; public String SettingIDLike = null; public ArrayList SettingIDBetween = null; public ArrayList SettingIDIn = null; public Date LastSavedDateTime = null; public Date LastSavedDateTimeGreaterThanOrEqualTo = null; public Date LastSavedDateTimeGreaterThan = null; public Date LastSavedDateTimeLessThan = null; public Date LastSavedDateTimeLessThanOrEqualTo = null; public Date LastSavedDateTimeNotEqualTo = null; public ArrayList LastSavedDateTimeBetween = null; public ArrayList LastSavedDateTimeIn = null; public String SettingDescription = null; public String SettingDescriptionStartsWith = null; public String SettingDescriptionEndsWith = null; public String SettingDescriptionContains = null; public String SettingDescriptionLike = null; public ArrayList SettingDescriptionBetween = null; public ArrayList SettingDescriptionIn = null; public String SettingName = null; public String SettingNameStartsWith = null; public String SettingNameEndsWith = null; public String SettingNameContains = null; public String SettingNameLike = null; public ArrayList SettingNameBetween = null; public ArrayList SettingNameIn = null; public Integer DisplayOrder = null; public Integer DisplayOrderGreaterThanOrEqualTo = null; public Integer DisplayOrderGreaterThan = null; public Integer DisplayOrderLessThan = null; public Integer DisplayOrderLessThanOrEqualTo = null; public Integer DisplayOrderNotEqualTo = null; public ArrayList DisplayOrderBetween = null; public ArrayList DisplayOrderIn = null; public Short CellType = null; public Short CellTypeGreaterThanOrEqualTo = null; public Short CellTypeGreaterThan = null; public Short CellTypeLessThan = null; public Short CellTypeLessThanOrEqualTo = null; public Short CellTypeNotEqualTo = null; public ArrayList CellTypeBetween = null; public ArrayList CellTypeIn = null; public String ScriptFormatCell = null; public String ScriptFormatCellStartsWith = null; public String ScriptFormatCellEndsWith = null; public String ScriptFormatCellContains = null; public String ScriptFormatCellLike = null; public ArrayList ScriptFormatCellBetween = null; public ArrayList ScriptFormatCellIn = null; public String ScriptButtonClicked = null; public String ScriptButtonClickedStartsWith = null; public String ScriptButtonClickedEndsWith = null; public String ScriptButtonClickedContains = null; public String ScriptButtonClickedLike = null; public ArrayList ScriptButtonClickedBetween = null; public ArrayList ScriptButtonClickedIn = null; public String ScriptReadData = null; public String ScriptReadDataStartsWith = null; public String ScriptReadDataEndsWith = null; public String ScriptReadDataContains = null; public String ScriptReadDataLike = null; public ArrayList ScriptReadDataBetween = null; public ArrayList ScriptReadDataIn = null; public String GridHandlerCode = null; public String GridHandlerCodeStartsWith = null; public String GridHandlerCodeEndsWith = null; public String GridHandlerCodeContains = null; public String GridHandlerCodeLike = null; public ArrayList GridHandlerCodeBetween = null; public ArrayList GridHandlerCodeIn = null; public UUID SY_Plugin_RecID = null; public ArrayList SY_Plugin_RecIDIn = null; public String getSettingID() { return SettingID; } public CR_PurchaseCustomSettingQuery setSettingID(String value) { this.SettingID = value; return this; } public String getSettingIDStartsWith() { return SettingIDStartsWith; } public CR_PurchaseCustomSettingQuery setSettingIDStartsWith(String value) { this.SettingIDStartsWith = value; return this; } public String getSettingIDEndsWith() { return SettingIDEndsWith; } public CR_PurchaseCustomSettingQuery setSettingIDEndsWith(String value) { this.SettingIDEndsWith = value; return this; } public String getSettingIDContains() { return SettingIDContains; } public CR_PurchaseCustomSettingQuery setSettingIDContains(String value) { this.SettingIDContains = value; return this; } public String getSettingIDLike() { return SettingIDLike; } public CR_PurchaseCustomSettingQuery setSettingIDLike(String value) { this.SettingIDLike = value; return this; } public ArrayList getSettingIDBetween() { return SettingIDBetween; } public CR_PurchaseCustomSettingQuery setSettingIDBetween(ArrayList value) { this.SettingIDBetween = value; return this; } public ArrayList getSettingIDIn() { return SettingIDIn; } public CR_PurchaseCustomSettingQuery setSettingIDIn(ArrayList value) { this.SettingIDIn = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public CR_PurchaseCustomSettingQuery setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getLastSavedDateTimeGreaterThanOrEqualTo() { return LastSavedDateTimeGreaterThanOrEqualTo; } public CR_PurchaseCustomSettingQuery setLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.LastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeGreaterThan() { return LastSavedDateTimeGreaterThan; } public CR_PurchaseCustomSettingQuery setLastSavedDateTimeGreaterThan(Date value) { this.LastSavedDateTimeGreaterThan = value; return this; } public Date getLastSavedDateTimeLessThan() { return LastSavedDateTimeLessThan; } public CR_PurchaseCustomSettingQuery setLastSavedDateTimeLessThan(Date value) { this.LastSavedDateTimeLessThan = value; return this; } public Date getLastSavedDateTimeLessThanOrEqualTo() { return LastSavedDateTimeLessThanOrEqualTo; } public CR_PurchaseCustomSettingQuery setLastSavedDateTimeLessThanOrEqualTo(Date value) { this.LastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeNotEqualTo() { return LastSavedDateTimeNotEqualTo; } public CR_PurchaseCustomSettingQuery setLastSavedDateTimeNotEqualTo(Date value) { this.LastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getLastSavedDateTimeBetween() { return LastSavedDateTimeBetween; } public CR_PurchaseCustomSettingQuery setLastSavedDateTimeBetween(ArrayList value) { this.LastSavedDateTimeBetween = value; return this; } public ArrayList getLastSavedDateTimeIn() { return LastSavedDateTimeIn; } public CR_PurchaseCustomSettingQuery setLastSavedDateTimeIn(ArrayList value) { this.LastSavedDateTimeIn = value; return this; } public String getSettingDescription() { return SettingDescription; } public CR_PurchaseCustomSettingQuery setSettingDescription(String value) { this.SettingDescription = value; return this; } public String getSettingDescriptionStartsWith() { return SettingDescriptionStartsWith; } public CR_PurchaseCustomSettingQuery setSettingDescriptionStartsWith(String value) { this.SettingDescriptionStartsWith = value; return this; } public String getSettingDescriptionEndsWith() { return SettingDescriptionEndsWith; } public CR_PurchaseCustomSettingQuery setSettingDescriptionEndsWith(String value) { this.SettingDescriptionEndsWith = value; return this; } public String getSettingDescriptionContains() { return SettingDescriptionContains; } public CR_PurchaseCustomSettingQuery setSettingDescriptionContains(String value) { this.SettingDescriptionContains = value; return this; } public String getSettingDescriptionLike() { return SettingDescriptionLike; } public CR_PurchaseCustomSettingQuery setSettingDescriptionLike(String value) { this.SettingDescriptionLike = value; return this; } public ArrayList getSettingDescriptionBetween() { return SettingDescriptionBetween; } public CR_PurchaseCustomSettingQuery setSettingDescriptionBetween(ArrayList value) { this.SettingDescriptionBetween = value; return this; } public ArrayList getSettingDescriptionIn() { return SettingDescriptionIn; } public CR_PurchaseCustomSettingQuery setSettingDescriptionIn(ArrayList value) { this.SettingDescriptionIn = value; return this; } public String getSettingName() { return SettingName; } public CR_PurchaseCustomSettingQuery setSettingName(String value) { this.SettingName = value; return this; } public String getSettingNameStartsWith() { return SettingNameStartsWith; } public CR_PurchaseCustomSettingQuery setSettingNameStartsWith(String value) { this.SettingNameStartsWith = value; return this; } public String getSettingNameEndsWith() { return SettingNameEndsWith; } public CR_PurchaseCustomSettingQuery setSettingNameEndsWith(String value) { this.SettingNameEndsWith = value; return this; } public String getSettingNameContains() { return SettingNameContains; } public CR_PurchaseCustomSettingQuery setSettingNameContains(String value) { this.SettingNameContains = value; return this; } public String getSettingNameLike() { return SettingNameLike; } public CR_PurchaseCustomSettingQuery setSettingNameLike(String value) { this.SettingNameLike = value; return this; } public ArrayList getSettingNameBetween() { return SettingNameBetween; } public CR_PurchaseCustomSettingQuery setSettingNameBetween(ArrayList value) { this.SettingNameBetween = value; return this; } public ArrayList getSettingNameIn() { return SettingNameIn; } public CR_PurchaseCustomSettingQuery setSettingNameIn(ArrayList value) { this.SettingNameIn = value; return this; } public Integer getDisplayOrder() { return DisplayOrder; } public CR_PurchaseCustomSettingQuery setDisplayOrder(Integer value) { this.DisplayOrder = value; return this; } public Integer getDisplayOrderGreaterThanOrEqualTo() { return DisplayOrderGreaterThanOrEqualTo; } public CR_PurchaseCustomSettingQuery setDisplayOrderGreaterThanOrEqualTo(Integer value) { this.DisplayOrderGreaterThanOrEqualTo = value; return this; } public Integer getDisplayOrderGreaterThan() { return DisplayOrderGreaterThan; } public CR_PurchaseCustomSettingQuery setDisplayOrderGreaterThan(Integer value) { this.DisplayOrderGreaterThan = value; return this; } public Integer getDisplayOrderLessThan() { return DisplayOrderLessThan; } public CR_PurchaseCustomSettingQuery setDisplayOrderLessThan(Integer value) { this.DisplayOrderLessThan = value; return this; } public Integer getDisplayOrderLessThanOrEqualTo() { return DisplayOrderLessThanOrEqualTo; } public CR_PurchaseCustomSettingQuery setDisplayOrderLessThanOrEqualTo(Integer value) { this.DisplayOrderLessThanOrEqualTo = value; return this; } public Integer getDisplayOrderNotEqualTo() { return DisplayOrderNotEqualTo; } public CR_PurchaseCustomSettingQuery setDisplayOrderNotEqualTo(Integer value) { this.DisplayOrderNotEqualTo = value; return this; } public ArrayList getDisplayOrderBetween() { return DisplayOrderBetween; } public CR_PurchaseCustomSettingQuery setDisplayOrderBetween(ArrayList value) { this.DisplayOrderBetween = value; return this; } public ArrayList getDisplayOrderIn() { return DisplayOrderIn; } public CR_PurchaseCustomSettingQuery setDisplayOrderIn(ArrayList value) { this.DisplayOrderIn = value; return this; } public Short getCellType() { return CellType; } public CR_PurchaseCustomSettingQuery setCellType(Short value) { this.CellType = value; return this; } public Short getCellTypeGreaterThanOrEqualTo() { return CellTypeGreaterThanOrEqualTo; } public CR_PurchaseCustomSettingQuery setCellTypeGreaterThanOrEqualTo(Short value) { this.CellTypeGreaterThanOrEqualTo = value; return this; } public Short getCellTypeGreaterThan() { return CellTypeGreaterThan; } public CR_PurchaseCustomSettingQuery setCellTypeGreaterThan(Short value) { this.CellTypeGreaterThan = value; return this; } public Short getCellTypeLessThan() { return CellTypeLessThan; } public CR_PurchaseCustomSettingQuery setCellTypeLessThan(Short value) { this.CellTypeLessThan = value; return this; } public Short getCellTypeLessThanOrEqualTo() { return CellTypeLessThanOrEqualTo; } public CR_PurchaseCustomSettingQuery setCellTypeLessThanOrEqualTo(Short value) { this.CellTypeLessThanOrEqualTo = value; return this; } public Short getCellTypeNotEqualTo() { return CellTypeNotEqualTo; } public CR_PurchaseCustomSettingQuery setCellTypeNotEqualTo(Short value) { this.CellTypeNotEqualTo = value; return this; } public ArrayList getCellTypeBetween() { return CellTypeBetween; } public CR_PurchaseCustomSettingQuery setCellTypeBetween(ArrayList value) { this.CellTypeBetween = value; return this; } public ArrayList getCellTypeIn() { return CellTypeIn; } public CR_PurchaseCustomSettingQuery setCellTypeIn(ArrayList value) { this.CellTypeIn = value; return this; } public String getScriptFormatCell() { return ScriptFormatCell; } public CR_PurchaseCustomSettingQuery setScriptFormatCell(String value) { this.ScriptFormatCell = value; return this; } public String getScriptFormatCellStartsWith() { return ScriptFormatCellStartsWith; } public CR_PurchaseCustomSettingQuery setScriptFormatCellStartsWith(String value) { this.ScriptFormatCellStartsWith = value; return this; } public String getScriptFormatCellEndsWith() { return ScriptFormatCellEndsWith; } public CR_PurchaseCustomSettingQuery setScriptFormatCellEndsWith(String value) { this.ScriptFormatCellEndsWith = value; return this; } public String getScriptFormatCellContains() { return ScriptFormatCellContains; } public CR_PurchaseCustomSettingQuery setScriptFormatCellContains(String value) { this.ScriptFormatCellContains = value; return this; } public String getScriptFormatCellLike() { return ScriptFormatCellLike; } public CR_PurchaseCustomSettingQuery setScriptFormatCellLike(String value) { this.ScriptFormatCellLike = value; return this; } public ArrayList getScriptFormatCellBetween() { return ScriptFormatCellBetween; } public CR_PurchaseCustomSettingQuery setScriptFormatCellBetween(ArrayList value) { this.ScriptFormatCellBetween = value; return this; } public ArrayList getScriptFormatCellIn() { return ScriptFormatCellIn; } public CR_PurchaseCustomSettingQuery setScriptFormatCellIn(ArrayList value) { this.ScriptFormatCellIn = value; return this; } public String getScriptButtonClicked() { return ScriptButtonClicked; } public CR_PurchaseCustomSettingQuery setScriptButtonClicked(String value) { this.ScriptButtonClicked = value; return this; } public String getScriptButtonClickedStartsWith() { return ScriptButtonClickedStartsWith; } public CR_PurchaseCustomSettingQuery setScriptButtonClickedStartsWith(String value) { this.ScriptButtonClickedStartsWith = value; return this; } public String getScriptButtonClickedEndsWith() { return ScriptButtonClickedEndsWith; } public CR_PurchaseCustomSettingQuery setScriptButtonClickedEndsWith(String value) { this.ScriptButtonClickedEndsWith = value; return this; } public String getScriptButtonClickedContains() { return ScriptButtonClickedContains; } public CR_PurchaseCustomSettingQuery setScriptButtonClickedContains(String value) { this.ScriptButtonClickedContains = value; return this; } public String getScriptButtonClickedLike() { return ScriptButtonClickedLike; } public CR_PurchaseCustomSettingQuery setScriptButtonClickedLike(String value) { this.ScriptButtonClickedLike = value; return this; } public ArrayList getScriptButtonClickedBetween() { return ScriptButtonClickedBetween; } public CR_PurchaseCustomSettingQuery setScriptButtonClickedBetween(ArrayList value) { this.ScriptButtonClickedBetween = value; return this; } public ArrayList getScriptButtonClickedIn() { return ScriptButtonClickedIn; } public CR_PurchaseCustomSettingQuery setScriptButtonClickedIn(ArrayList value) { this.ScriptButtonClickedIn = value; return this; } public String getScriptReadData() { return ScriptReadData; } public CR_PurchaseCustomSettingQuery setScriptReadData(String value) { this.ScriptReadData = value; return this; } public String getScriptReadDataStartsWith() { return ScriptReadDataStartsWith; } public CR_PurchaseCustomSettingQuery setScriptReadDataStartsWith(String value) { this.ScriptReadDataStartsWith = value; return this; } public String getScriptReadDataEndsWith() { return ScriptReadDataEndsWith; } public CR_PurchaseCustomSettingQuery setScriptReadDataEndsWith(String value) { this.ScriptReadDataEndsWith = value; return this; } public String getScriptReadDataContains() { return ScriptReadDataContains; } public CR_PurchaseCustomSettingQuery setScriptReadDataContains(String value) { this.ScriptReadDataContains = value; return this; } public String getScriptReadDataLike() { return ScriptReadDataLike; } public CR_PurchaseCustomSettingQuery setScriptReadDataLike(String value) { this.ScriptReadDataLike = value; return this; } public ArrayList getScriptReadDataBetween() { return ScriptReadDataBetween; } public CR_PurchaseCustomSettingQuery setScriptReadDataBetween(ArrayList value) { this.ScriptReadDataBetween = value; return this; } public ArrayList getScriptReadDataIn() { return ScriptReadDataIn; } public CR_PurchaseCustomSettingQuery setScriptReadDataIn(ArrayList value) { this.ScriptReadDataIn = value; return this; } public String getGridHandlerCode() { return GridHandlerCode; } public CR_PurchaseCustomSettingQuery setGridHandlerCode(String value) { this.GridHandlerCode = value; return this; } public String getGridHandlerCodeStartsWith() { return GridHandlerCodeStartsWith; } public CR_PurchaseCustomSettingQuery setGridHandlerCodeStartsWith(String value) { this.GridHandlerCodeStartsWith = value; return this; } public String getGridHandlerCodeEndsWith() { return GridHandlerCodeEndsWith; } public CR_PurchaseCustomSettingQuery setGridHandlerCodeEndsWith(String value) { this.GridHandlerCodeEndsWith = value; return this; } public String getGridHandlerCodeContains() { return GridHandlerCodeContains; } public CR_PurchaseCustomSettingQuery setGridHandlerCodeContains(String value) { this.GridHandlerCodeContains = value; return this; } public String getGridHandlerCodeLike() { return GridHandlerCodeLike; } public CR_PurchaseCustomSettingQuery setGridHandlerCodeLike(String value) { this.GridHandlerCodeLike = value; return this; } public ArrayList getGridHandlerCodeBetween() { return GridHandlerCodeBetween; } public CR_PurchaseCustomSettingQuery setGridHandlerCodeBetween(ArrayList value) { this.GridHandlerCodeBetween = value; return this; } public ArrayList getGridHandlerCodeIn() { return GridHandlerCodeIn; } public CR_PurchaseCustomSettingQuery setGridHandlerCodeIn(ArrayList value) { this.GridHandlerCodeIn = value; return this; } public UUID getSyPluginRecID() { return SY_Plugin_RecID; } public CR_PurchaseCustomSettingQuery setSyPluginRecID(UUID value) { this.SY_Plugin_RecID = value; return this; } public ArrayList getSyPluginRecIDIn() { return SY_Plugin_RecIDIn; } public CR_PurchaseCustomSettingQuery setSyPluginRecIDIn(ArrayList value) { this.SY_Plugin_RecIDIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class CR_PurchaseCustomSettingValuesQuery extends QueryDb implements IReturn> { public String SettingValueID = null; public String SettingValueIDStartsWith = null; public String SettingValueIDEndsWith = null; public String SettingValueIDContains = null; public String SettingValueIDLike = null; public ArrayList SettingValueIDBetween = null; public ArrayList SettingValueIDIn = null; public String SettingID = null; public String SettingIDStartsWith = null; public String SettingIDEndsWith = null; public String SettingIDContains = null; public String SettingIDLike = null; public ArrayList SettingIDBetween = null; public ArrayList SettingIDIn = null; public String CR_BatchTrans_ReceiptID = null; public String CR_BatchTrans_ReceiptIDStartsWith = null; public String CR_BatchTrans_ReceiptIDEndsWith = null; public String CR_BatchTrans_ReceiptIDContains = null; public String CR_BatchTrans_ReceiptIDLike = null; public ArrayList CR_BatchTrans_ReceiptIDBetween = null; public ArrayList CR_BatchTrans_ReceiptIDIn = null; public String Contents = null; public String ContentsStartsWith = null; public String ContentsEndsWith = null; public String ContentsContains = null; public String ContentsLike = null; public ArrayList ContentsBetween = null; public ArrayList ContentsIn = null; public Date LastSavedDateTime = null; public Date LastSavedDateTimeGreaterThanOrEqualTo = null; public Date LastSavedDateTimeGreaterThan = null; public Date LastSavedDateTimeLessThan = null; public Date LastSavedDateTimeLessThanOrEqualTo = null; public Date LastSavedDateTimeNotEqualTo = null; public ArrayList LastSavedDateTimeBetween = null; public ArrayList LastSavedDateTimeIn = null; public String getSettingValueID() { return SettingValueID; } public CR_PurchaseCustomSettingValuesQuery setSettingValueID(String value) { this.SettingValueID = value; return this; } public String getSettingValueIDStartsWith() { return SettingValueIDStartsWith; } public CR_PurchaseCustomSettingValuesQuery setSettingValueIDStartsWith(String value) { this.SettingValueIDStartsWith = value; return this; } public String getSettingValueIDEndsWith() { return SettingValueIDEndsWith; } public CR_PurchaseCustomSettingValuesQuery setSettingValueIDEndsWith(String value) { this.SettingValueIDEndsWith = value; return this; } public String getSettingValueIDContains() { return SettingValueIDContains; } public CR_PurchaseCustomSettingValuesQuery setSettingValueIDContains(String value) { this.SettingValueIDContains = value; return this; } public String getSettingValueIDLike() { return SettingValueIDLike; } public CR_PurchaseCustomSettingValuesQuery setSettingValueIDLike(String value) { this.SettingValueIDLike = value; return this; } public ArrayList getSettingValueIDBetween() { return SettingValueIDBetween; } public CR_PurchaseCustomSettingValuesQuery setSettingValueIDBetween(ArrayList value) { this.SettingValueIDBetween = value; return this; } public ArrayList getSettingValueIDIn() { return SettingValueIDIn; } public CR_PurchaseCustomSettingValuesQuery setSettingValueIDIn(ArrayList value) { this.SettingValueIDIn = value; return this; } public String getSettingID() { return SettingID; } public CR_PurchaseCustomSettingValuesQuery setSettingID(String value) { this.SettingID = value; return this; } public String getSettingIDStartsWith() { return SettingIDStartsWith; } public CR_PurchaseCustomSettingValuesQuery setSettingIDStartsWith(String value) { this.SettingIDStartsWith = value; return this; } public String getSettingIDEndsWith() { return SettingIDEndsWith; } public CR_PurchaseCustomSettingValuesQuery setSettingIDEndsWith(String value) { this.SettingIDEndsWith = value; return this; } public String getSettingIDContains() { return SettingIDContains; } public CR_PurchaseCustomSettingValuesQuery setSettingIDContains(String value) { this.SettingIDContains = value; return this; } public String getSettingIDLike() { return SettingIDLike; } public CR_PurchaseCustomSettingValuesQuery setSettingIDLike(String value) { this.SettingIDLike = value; return this; } public ArrayList getSettingIDBetween() { return SettingIDBetween; } public CR_PurchaseCustomSettingValuesQuery setSettingIDBetween(ArrayList value) { this.SettingIDBetween = value; return this; } public ArrayList getSettingIDIn() { return SettingIDIn; } public CR_PurchaseCustomSettingValuesQuery setSettingIDIn(ArrayList value) { this.SettingIDIn = value; return this; } public String getCrBatchTransReceiptID() { return CR_BatchTrans_ReceiptID; } public CR_PurchaseCustomSettingValuesQuery setCrBatchTransReceiptID(String value) { this.CR_BatchTrans_ReceiptID = value; return this; } public String getCrBatchTransReceiptIDStartsWith() { return CR_BatchTrans_ReceiptIDStartsWith; } public CR_PurchaseCustomSettingValuesQuery setCrBatchTransReceiptIDStartsWith(String value) { this.CR_BatchTrans_ReceiptIDStartsWith = value; return this; } public String getCrBatchTransReceiptIDEndsWith() { return CR_BatchTrans_ReceiptIDEndsWith; } public CR_PurchaseCustomSettingValuesQuery setCrBatchTransReceiptIDEndsWith(String value) { this.CR_BatchTrans_ReceiptIDEndsWith = value; return this; } public String getCrBatchTransReceiptIDContains() { return CR_BatchTrans_ReceiptIDContains; } public CR_PurchaseCustomSettingValuesQuery setCrBatchTransReceiptIDContains(String value) { this.CR_BatchTrans_ReceiptIDContains = value; return this; } public String getCrBatchTransReceiptIDLike() { return CR_BatchTrans_ReceiptIDLike; } public CR_PurchaseCustomSettingValuesQuery setCrBatchTransReceiptIDLike(String value) { this.CR_BatchTrans_ReceiptIDLike = value; return this; } public ArrayList getCrBatchTransReceiptIDBetween() { return CR_BatchTrans_ReceiptIDBetween; } public CR_PurchaseCustomSettingValuesQuery setCrBatchTransReceiptIDBetween(ArrayList value) { this.CR_BatchTrans_ReceiptIDBetween = value; return this; } public ArrayList getCrBatchTransReceiptIDIn() { return CR_BatchTrans_ReceiptIDIn; } public CR_PurchaseCustomSettingValuesQuery setCrBatchTransReceiptIDIn(ArrayList value) { this.CR_BatchTrans_ReceiptIDIn = value; return this; } public String getContents() { return Contents; } public CR_PurchaseCustomSettingValuesQuery setContents(String value) { this.Contents = value; return this; } public String getContentsStartsWith() { return ContentsStartsWith; } public CR_PurchaseCustomSettingValuesQuery setContentsStartsWith(String value) { this.ContentsStartsWith = value; return this; } public String getContentsEndsWith() { return ContentsEndsWith; } public CR_PurchaseCustomSettingValuesQuery setContentsEndsWith(String value) { this.ContentsEndsWith = value; return this; } public String getContentsContains() { return ContentsContains; } public CR_PurchaseCustomSettingValuesQuery setContentsContains(String value) { this.ContentsContains = value; return this; } public String getContentsLike() { return ContentsLike; } public CR_PurchaseCustomSettingValuesQuery setContentsLike(String value) { this.ContentsLike = value; return this; } public ArrayList getContentsBetween() { return ContentsBetween; } public CR_PurchaseCustomSettingValuesQuery setContentsBetween(ArrayList value) { this.ContentsBetween = value; return this; } public ArrayList getContentsIn() { return ContentsIn; } public CR_PurchaseCustomSettingValuesQuery setContentsIn(ArrayList value) { this.ContentsIn = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public CR_PurchaseCustomSettingValuesQuery setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getLastSavedDateTimeGreaterThanOrEqualTo() { return LastSavedDateTimeGreaterThanOrEqualTo; } public CR_PurchaseCustomSettingValuesQuery setLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.LastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeGreaterThan() { return LastSavedDateTimeGreaterThan; } public CR_PurchaseCustomSettingValuesQuery setLastSavedDateTimeGreaterThan(Date value) { this.LastSavedDateTimeGreaterThan = value; return this; } public Date getLastSavedDateTimeLessThan() { return LastSavedDateTimeLessThan; } public CR_PurchaseCustomSettingValuesQuery setLastSavedDateTimeLessThan(Date value) { this.LastSavedDateTimeLessThan = value; return this; } public Date getLastSavedDateTimeLessThanOrEqualTo() { return LastSavedDateTimeLessThanOrEqualTo; } public CR_PurchaseCustomSettingValuesQuery setLastSavedDateTimeLessThanOrEqualTo(Date value) { this.LastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeNotEqualTo() { return LastSavedDateTimeNotEqualTo; } public CR_PurchaseCustomSettingValuesQuery setLastSavedDateTimeNotEqualTo(Date value) { this.LastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getLastSavedDateTimeBetween() { return LastSavedDateTimeBetween; } public CR_PurchaseCustomSettingValuesQuery setLastSavedDateTimeBetween(ArrayList value) { this.LastSavedDateTimeBetween = value; return this; } public ArrayList getLastSavedDateTimeIn() { return LastSavedDateTimeIn; } public CR_PurchaseCustomSettingValuesQuery setLastSavedDateTimeIn(ArrayList value) { this.LastSavedDateTimeIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class CR_PurchasesQuery extends QueryDb implements IReturn> { public String CR_PurchID = null; public String CR_PurchIDStartsWith = null; public String CR_PurchIDEndsWith = null; public String CR_PurchIDContains = null; public String CR_PurchIDLike = null; public ArrayList CR_PurchIDBetween = null; public ArrayList CR_PurchIDIn = null; public Date DateRun = null; public Date DateRunGreaterThanOrEqualTo = null; public Date DateRunGreaterThan = null; public Date DateRunLessThan = null; public Date DateRunLessThanOrEqualTo = null; public Date DateRunNotEqualTo = null; public ArrayList DateRunBetween = null; public ArrayList DateRunIn = null; public Date InvoiceDate = null; public Date InvoiceDateGreaterThanOrEqualTo = null; public Date InvoiceDateGreaterThan = null; public Date InvoiceDateLessThan = null; public Date InvoiceDateLessThanOrEqualTo = null; public Date InvoiceDateNotEqualTo = null; public ArrayList InvoiceDateBetween = null; public ArrayList InvoiceDateIn = null; public String CreditorID = null; public String CreditorIDStartsWith = null; public String CreditorIDEndsWith = null; public String CreditorIDContains = null; public String CreditorIDLike = null; public ArrayList CreditorIDBetween = null; public ArrayList CreditorIDIn = null; public String InvoiceNo = null; public String InvoiceNoStartsWith = null; public String InvoiceNoEndsWith = null; public String InvoiceNoContains = null; public String InvoiceNoLike = null; public ArrayList InvoiceNoBetween = null; public ArrayList InvoiceNoIn = null; public String PartNo = null; public String PartNoStartsWith = null; public String PartNoEndsWith = null; public String PartNoContains = null; public String PartNoLike = null; public ArrayList PartNoBetween = null; public ArrayList PartNoIn = null; public String Description = null; public String DescriptionStartsWith = null; public String DescriptionEndsWith = null; public String DescriptionContains = null; public String DescriptionLike = null; public ArrayList DescriptionBetween = null; public ArrayList DescriptionIn = null; public String ClassDescription = null; public String ClassDescriptionStartsWith = null; public String ClassDescriptionEndsWith = null; public String ClassDescriptionContains = null; public String ClassDescriptionLike = null; public ArrayList ClassDescriptionBetween = null; public ArrayList ClassDescriptionIn = null; public BigDecimal Quantity = null; public BigDecimal QuantityGreaterThanOrEqualTo = null; public BigDecimal QuantityGreaterThan = null; public BigDecimal QuantityLessThan = null; public BigDecimal QuantityLessThanOrEqualTo = null; public BigDecimal QuantityNotEqualTo = null; public ArrayList QuantityBetween = null; public ArrayList QuantityIn = null; public BigDecimal UnitCost = null; public BigDecimal UnitCostGreaterThanOrEqualTo = null; public BigDecimal UnitCostGreaterThan = null; public BigDecimal UnitCostLessThan = null; public BigDecimal UnitCostLessThanOrEqualTo = null; public BigDecimal UnitCostNotEqualTo = null; public ArrayList UnitCostBetween = null; public ArrayList UnitCostIn = null; public BigDecimal LineTotal = null; public BigDecimal LineTotalGreaterThanOrEqualTo = null; public BigDecimal LineTotalGreaterThan = null; public BigDecimal LineTotalLessThan = null; public BigDecimal LineTotalLessThanOrEqualTo = null; public BigDecimal LineTotalNotEqualTo = null; public ArrayList LineTotalBetween = null; public ArrayList LineTotalIn = null; public String InvoiceID = null; public String InvoiceIDStartsWith = null; public String InvoiceIDEndsWith = null; public String InvoiceIDContains = null; public String InvoiceIDLike = null; public ArrayList InvoiceIDBetween = null; public ArrayList InvoiceIDIn = null; public String InventoryID = null; public String InventoryIDStartsWith = null; public String InventoryIDEndsWith = null; public String InventoryIDContains = null; public String InventoryIDLike = null; public ArrayList InventoryIDBetween = null; public ArrayList InventoryIDIn = null; public Short MonthNo = null; public Short MonthNoGreaterThanOrEqualTo = null; public Short MonthNoGreaterThan = null; public Short MonthNoLessThan = null; public Short MonthNoLessThanOrEqualTo = null; public Short MonthNoNotEqualTo = null; public ArrayList MonthNoBetween = null; public ArrayList MonthNoIn = null; public Short YearNo = null; public Short YearNoGreaterThanOrEqualTo = null; public Short YearNoGreaterThan = null; public Short YearNoLessThan = null; public Short YearNoLessThanOrEqualTo = null; public Short YearNoNotEqualTo = null; public ArrayList YearNoBetween = null; public ArrayList YearNoIn = null; public String IN_LogicalID = null; public String IN_LogicalIDStartsWith = null; public String IN_LogicalIDEndsWith = null; public String IN_LogicalIDContains = null; public String IN_LogicalIDLike = null; public ArrayList IN_LogicalIDBetween = null; public ArrayList IN_LogicalIDIn = null; public String getCrPurchID() { return CR_PurchID; } public CR_PurchasesQuery setCrPurchID(String value) { this.CR_PurchID = value; return this; } public String getCrPurchIDStartsWith() { return CR_PurchIDStartsWith; } public CR_PurchasesQuery setCrPurchIDStartsWith(String value) { this.CR_PurchIDStartsWith = value; return this; } public String getCrPurchIDEndsWith() { return CR_PurchIDEndsWith; } public CR_PurchasesQuery setCrPurchIDEndsWith(String value) { this.CR_PurchIDEndsWith = value; return this; } public String getCrPurchIDContains() { return CR_PurchIDContains; } public CR_PurchasesQuery setCrPurchIDContains(String value) { this.CR_PurchIDContains = value; return this; } public String getCrPurchIDLike() { return CR_PurchIDLike; } public CR_PurchasesQuery setCrPurchIDLike(String value) { this.CR_PurchIDLike = value; return this; } public ArrayList getCrPurchIDBetween() { return CR_PurchIDBetween; } public CR_PurchasesQuery setCrPurchIDBetween(ArrayList value) { this.CR_PurchIDBetween = value; return this; } public ArrayList getCrPurchIDIn() { return CR_PurchIDIn; } public CR_PurchasesQuery setCrPurchIDIn(ArrayList value) { this.CR_PurchIDIn = value; return this; } public Date getDateRun() { return DateRun; } public CR_PurchasesQuery setDateRun(Date value) { this.DateRun = value; return this; } public Date getDateRunGreaterThanOrEqualTo() { return DateRunGreaterThanOrEqualTo; } public CR_PurchasesQuery setDateRunGreaterThanOrEqualTo(Date value) { this.DateRunGreaterThanOrEqualTo = value; return this; } public Date getDateRunGreaterThan() { return DateRunGreaterThan; } public CR_PurchasesQuery setDateRunGreaterThan(Date value) { this.DateRunGreaterThan = value; return this; } public Date getDateRunLessThan() { return DateRunLessThan; } public CR_PurchasesQuery setDateRunLessThan(Date value) { this.DateRunLessThan = value; return this; } public Date getDateRunLessThanOrEqualTo() { return DateRunLessThanOrEqualTo; } public CR_PurchasesQuery setDateRunLessThanOrEqualTo(Date value) { this.DateRunLessThanOrEqualTo = value; return this; } public Date getDateRunNotEqualTo() { return DateRunNotEqualTo; } public CR_PurchasesQuery setDateRunNotEqualTo(Date value) { this.DateRunNotEqualTo = value; return this; } public ArrayList getDateRunBetween() { return DateRunBetween; } public CR_PurchasesQuery setDateRunBetween(ArrayList value) { this.DateRunBetween = value; return this; } public ArrayList getDateRunIn() { return DateRunIn; } public CR_PurchasesQuery setDateRunIn(ArrayList value) { this.DateRunIn = value; return this; } public Date getInvoiceDate() { return InvoiceDate; } public CR_PurchasesQuery setInvoiceDate(Date value) { this.InvoiceDate = value; return this; } public Date getInvoiceDateGreaterThanOrEqualTo() { return InvoiceDateGreaterThanOrEqualTo; } public CR_PurchasesQuery setInvoiceDateGreaterThanOrEqualTo(Date value) { this.InvoiceDateGreaterThanOrEqualTo = value; return this; } public Date getInvoiceDateGreaterThan() { return InvoiceDateGreaterThan; } public CR_PurchasesQuery setInvoiceDateGreaterThan(Date value) { this.InvoiceDateGreaterThan = value; return this; } public Date getInvoiceDateLessThan() { return InvoiceDateLessThan; } public CR_PurchasesQuery setInvoiceDateLessThan(Date value) { this.InvoiceDateLessThan = value; return this; } public Date getInvoiceDateLessThanOrEqualTo() { return InvoiceDateLessThanOrEqualTo; } public CR_PurchasesQuery setInvoiceDateLessThanOrEqualTo(Date value) { this.InvoiceDateLessThanOrEqualTo = value; return this; } public Date getInvoiceDateNotEqualTo() { return InvoiceDateNotEqualTo; } public CR_PurchasesQuery setInvoiceDateNotEqualTo(Date value) { this.InvoiceDateNotEqualTo = value; return this; } public ArrayList getInvoiceDateBetween() { return InvoiceDateBetween; } public CR_PurchasesQuery setInvoiceDateBetween(ArrayList value) { this.InvoiceDateBetween = value; return this; } public ArrayList getInvoiceDateIn() { return InvoiceDateIn; } public CR_PurchasesQuery setInvoiceDateIn(ArrayList value) { this.InvoiceDateIn = value; return this; } public String getCreditorID() { return CreditorID; } public CR_PurchasesQuery setCreditorID(String value) { this.CreditorID = value; return this; } public String getCreditorIDStartsWith() { return CreditorIDStartsWith; } public CR_PurchasesQuery setCreditorIDStartsWith(String value) { this.CreditorIDStartsWith = value; return this; } public String getCreditorIDEndsWith() { return CreditorIDEndsWith; } public CR_PurchasesQuery setCreditorIDEndsWith(String value) { this.CreditorIDEndsWith = value; return this; } public String getCreditorIDContains() { return CreditorIDContains; } public CR_PurchasesQuery setCreditorIDContains(String value) { this.CreditorIDContains = value; return this; } public String getCreditorIDLike() { return CreditorIDLike; } public CR_PurchasesQuery setCreditorIDLike(String value) { this.CreditorIDLike = value; return this; } public ArrayList getCreditorIDBetween() { return CreditorIDBetween; } public CR_PurchasesQuery setCreditorIDBetween(ArrayList value) { this.CreditorIDBetween = value; return this; } public ArrayList getCreditorIDIn() { return CreditorIDIn; } public CR_PurchasesQuery setCreditorIDIn(ArrayList value) { this.CreditorIDIn = value; return this; } public String getInvoiceNo() { return InvoiceNo; } public CR_PurchasesQuery setInvoiceNo(String value) { this.InvoiceNo = value; return this; } public String getInvoiceNoStartsWith() { return InvoiceNoStartsWith; } public CR_PurchasesQuery setInvoiceNoStartsWith(String value) { this.InvoiceNoStartsWith = value; return this; } public String getInvoiceNoEndsWith() { return InvoiceNoEndsWith; } public CR_PurchasesQuery setInvoiceNoEndsWith(String value) { this.InvoiceNoEndsWith = value; return this; } public String getInvoiceNoContains() { return InvoiceNoContains; } public CR_PurchasesQuery setInvoiceNoContains(String value) { this.InvoiceNoContains = value; return this; } public String getInvoiceNoLike() { return InvoiceNoLike; } public CR_PurchasesQuery setInvoiceNoLike(String value) { this.InvoiceNoLike = value; return this; } public ArrayList getInvoiceNoBetween() { return InvoiceNoBetween; } public CR_PurchasesQuery setInvoiceNoBetween(ArrayList value) { this.InvoiceNoBetween = value; return this; } public ArrayList getInvoiceNoIn() { return InvoiceNoIn; } public CR_PurchasesQuery setInvoiceNoIn(ArrayList value) { this.InvoiceNoIn = value; return this; } public String getPartNo() { return PartNo; } public CR_PurchasesQuery setPartNo(String value) { this.PartNo = value; return this; } public String getPartNoStartsWith() { return PartNoStartsWith; } public CR_PurchasesQuery setPartNoStartsWith(String value) { this.PartNoStartsWith = value; return this; } public String getPartNoEndsWith() { return PartNoEndsWith; } public CR_PurchasesQuery setPartNoEndsWith(String value) { this.PartNoEndsWith = value; return this; } public String getPartNoContains() { return PartNoContains; } public CR_PurchasesQuery setPartNoContains(String value) { this.PartNoContains = value; return this; } public String getPartNoLike() { return PartNoLike; } public CR_PurchasesQuery setPartNoLike(String value) { this.PartNoLike = value; return this; } public ArrayList getPartNoBetween() { return PartNoBetween; } public CR_PurchasesQuery setPartNoBetween(ArrayList value) { this.PartNoBetween = value; return this; } public ArrayList getPartNoIn() { return PartNoIn; } public CR_PurchasesQuery setPartNoIn(ArrayList value) { this.PartNoIn = value; return this; } public String getDescription() { return Description; } public CR_PurchasesQuery setDescription(String value) { this.Description = value; return this; } public String getDescriptionStartsWith() { return DescriptionStartsWith; } public CR_PurchasesQuery setDescriptionStartsWith(String value) { this.DescriptionStartsWith = value; return this; } public String getDescriptionEndsWith() { return DescriptionEndsWith; } public CR_PurchasesQuery setDescriptionEndsWith(String value) { this.DescriptionEndsWith = value; return this; } public String getDescriptionContains() { return DescriptionContains; } public CR_PurchasesQuery setDescriptionContains(String value) { this.DescriptionContains = value; return this; } public String getDescriptionLike() { return DescriptionLike; } public CR_PurchasesQuery setDescriptionLike(String value) { this.DescriptionLike = value; return this; } public ArrayList getDescriptionBetween() { return DescriptionBetween; } public CR_PurchasesQuery setDescriptionBetween(ArrayList value) { this.DescriptionBetween = value; return this; } public ArrayList getDescriptionIn() { return DescriptionIn; } public CR_PurchasesQuery setDescriptionIn(ArrayList value) { this.DescriptionIn = value; return this; } public String getClassDescription() { return ClassDescription; } public CR_PurchasesQuery setClassDescription(String value) { this.ClassDescription = value; return this; } public String getClassDescriptionStartsWith() { return ClassDescriptionStartsWith; } public CR_PurchasesQuery setClassDescriptionStartsWith(String value) { this.ClassDescriptionStartsWith = value; return this; } public String getClassDescriptionEndsWith() { return ClassDescriptionEndsWith; } public CR_PurchasesQuery setClassDescriptionEndsWith(String value) { this.ClassDescriptionEndsWith = value; return this; } public String getClassDescriptionContains() { return ClassDescriptionContains; } public CR_PurchasesQuery setClassDescriptionContains(String value) { this.ClassDescriptionContains = value; return this; } public String getClassDescriptionLike() { return ClassDescriptionLike; } public CR_PurchasesQuery setClassDescriptionLike(String value) { this.ClassDescriptionLike = value; return this; } public ArrayList getClassDescriptionBetween() { return ClassDescriptionBetween; } public CR_PurchasesQuery setClassDescriptionBetween(ArrayList value) { this.ClassDescriptionBetween = value; return this; } public ArrayList getClassDescriptionIn() { return ClassDescriptionIn; } public CR_PurchasesQuery setClassDescriptionIn(ArrayList value) { this.ClassDescriptionIn = value; return this; } public BigDecimal getQuantity() { return Quantity; } public CR_PurchasesQuery setQuantity(BigDecimal value) { this.Quantity = value; return this; } public BigDecimal getQuantityGreaterThanOrEqualTo() { return QuantityGreaterThanOrEqualTo; } public CR_PurchasesQuery setQuantityGreaterThanOrEqualTo(BigDecimal value) { this.QuantityGreaterThanOrEqualTo = value; return this; } public BigDecimal getQuantityGreaterThan() { return QuantityGreaterThan; } public CR_PurchasesQuery setQuantityGreaterThan(BigDecimal value) { this.QuantityGreaterThan = value; return this; } public BigDecimal getQuantityLessThan() { return QuantityLessThan; } public CR_PurchasesQuery setQuantityLessThan(BigDecimal value) { this.QuantityLessThan = value; return this; } public BigDecimal getQuantityLessThanOrEqualTo() { return QuantityLessThanOrEqualTo; } public CR_PurchasesQuery setQuantityLessThanOrEqualTo(BigDecimal value) { this.QuantityLessThanOrEqualTo = value; return this; } public BigDecimal getQuantityNotEqualTo() { return QuantityNotEqualTo; } public CR_PurchasesQuery setQuantityNotEqualTo(BigDecimal value) { this.QuantityNotEqualTo = value; return this; } public ArrayList getQuantityBetween() { return QuantityBetween; } public CR_PurchasesQuery setQuantityBetween(ArrayList value) { this.QuantityBetween = value; return this; } public ArrayList getQuantityIn() { return QuantityIn; } public CR_PurchasesQuery setQuantityIn(ArrayList value) { this.QuantityIn = value; return this; } public BigDecimal getUnitCost() { return UnitCost; } public CR_PurchasesQuery setUnitCost(BigDecimal value) { this.UnitCost = value; return this; } public BigDecimal getUnitCostGreaterThanOrEqualTo() { return UnitCostGreaterThanOrEqualTo; } public CR_PurchasesQuery setUnitCostGreaterThanOrEqualTo(BigDecimal value) { this.UnitCostGreaterThanOrEqualTo = value; return this; } public BigDecimal getUnitCostGreaterThan() { return UnitCostGreaterThan; } public CR_PurchasesQuery setUnitCostGreaterThan(BigDecimal value) { this.UnitCostGreaterThan = value; return this; } public BigDecimal getUnitCostLessThan() { return UnitCostLessThan; } public CR_PurchasesQuery setUnitCostLessThan(BigDecimal value) { this.UnitCostLessThan = value; return this; } public BigDecimal getUnitCostLessThanOrEqualTo() { return UnitCostLessThanOrEqualTo; } public CR_PurchasesQuery setUnitCostLessThanOrEqualTo(BigDecimal value) { this.UnitCostLessThanOrEqualTo = value; return this; } public BigDecimal getUnitCostNotEqualTo() { return UnitCostNotEqualTo; } public CR_PurchasesQuery setUnitCostNotEqualTo(BigDecimal value) { this.UnitCostNotEqualTo = value; return this; } public ArrayList getUnitCostBetween() { return UnitCostBetween; } public CR_PurchasesQuery setUnitCostBetween(ArrayList value) { this.UnitCostBetween = value; return this; } public ArrayList getUnitCostIn() { return UnitCostIn; } public CR_PurchasesQuery setUnitCostIn(ArrayList value) { this.UnitCostIn = value; return this; } public BigDecimal getLineTotal() { return LineTotal; } public CR_PurchasesQuery setLineTotal(BigDecimal value) { this.LineTotal = value; return this; } public BigDecimal getLineTotalGreaterThanOrEqualTo() { return LineTotalGreaterThanOrEqualTo; } public CR_PurchasesQuery setLineTotalGreaterThanOrEqualTo(BigDecimal value) { this.LineTotalGreaterThanOrEqualTo = value; return this; } public BigDecimal getLineTotalGreaterThan() { return LineTotalGreaterThan; } public CR_PurchasesQuery setLineTotalGreaterThan(BigDecimal value) { this.LineTotalGreaterThan = value; return this; } public BigDecimal getLineTotalLessThan() { return LineTotalLessThan; } public CR_PurchasesQuery setLineTotalLessThan(BigDecimal value) { this.LineTotalLessThan = value; return this; } public BigDecimal getLineTotalLessThanOrEqualTo() { return LineTotalLessThanOrEqualTo; } public CR_PurchasesQuery setLineTotalLessThanOrEqualTo(BigDecimal value) { this.LineTotalLessThanOrEqualTo = value; return this; } public BigDecimal getLineTotalNotEqualTo() { return LineTotalNotEqualTo; } public CR_PurchasesQuery setLineTotalNotEqualTo(BigDecimal value) { this.LineTotalNotEqualTo = value; return this; } public ArrayList getLineTotalBetween() { return LineTotalBetween; } public CR_PurchasesQuery setLineTotalBetween(ArrayList value) { this.LineTotalBetween = value; return this; } public ArrayList getLineTotalIn() { return LineTotalIn; } public CR_PurchasesQuery setLineTotalIn(ArrayList value) { this.LineTotalIn = value; return this; } public String getInvoiceID() { return InvoiceID; } public CR_PurchasesQuery setInvoiceID(String value) { this.InvoiceID = value; return this; } public String getInvoiceIDStartsWith() { return InvoiceIDStartsWith; } public CR_PurchasesQuery setInvoiceIDStartsWith(String value) { this.InvoiceIDStartsWith = value; return this; } public String getInvoiceIDEndsWith() { return InvoiceIDEndsWith; } public CR_PurchasesQuery setInvoiceIDEndsWith(String value) { this.InvoiceIDEndsWith = value; return this; } public String getInvoiceIDContains() { return InvoiceIDContains; } public CR_PurchasesQuery setInvoiceIDContains(String value) { this.InvoiceIDContains = value; return this; } public String getInvoiceIDLike() { return InvoiceIDLike; } public CR_PurchasesQuery setInvoiceIDLike(String value) { this.InvoiceIDLike = value; return this; } public ArrayList getInvoiceIDBetween() { return InvoiceIDBetween; } public CR_PurchasesQuery setInvoiceIDBetween(ArrayList value) { this.InvoiceIDBetween = value; return this; } public ArrayList getInvoiceIDIn() { return InvoiceIDIn; } public CR_PurchasesQuery setInvoiceIDIn(ArrayList value) { this.InvoiceIDIn = value; return this; } public String getInventoryID() { return InventoryID; } public CR_PurchasesQuery setInventoryID(String value) { this.InventoryID = value; return this; } public String getInventoryIDStartsWith() { return InventoryIDStartsWith; } public CR_PurchasesQuery setInventoryIDStartsWith(String value) { this.InventoryIDStartsWith = value; return this; } public String getInventoryIDEndsWith() { return InventoryIDEndsWith; } public CR_PurchasesQuery setInventoryIDEndsWith(String value) { this.InventoryIDEndsWith = value; return this; } public String getInventoryIDContains() { return InventoryIDContains; } public CR_PurchasesQuery setInventoryIDContains(String value) { this.InventoryIDContains = value; return this; } public String getInventoryIDLike() { return InventoryIDLike; } public CR_PurchasesQuery setInventoryIDLike(String value) { this.InventoryIDLike = value; return this; } public ArrayList getInventoryIDBetween() { return InventoryIDBetween; } public CR_PurchasesQuery setInventoryIDBetween(ArrayList value) { this.InventoryIDBetween = value; return this; } public ArrayList getInventoryIDIn() { return InventoryIDIn; } public CR_PurchasesQuery setInventoryIDIn(ArrayList value) { this.InventoryIDIn = value; return this; } public Short getMonthNo() { return MonthNo; } public CR_PurchasesQuery setMonthNo(Short value) { this.MonthNo = value; return this; } public Short getMonthNoGreaterThanOrEqualTo() { return MonthNoGreaterThanOrEqualTo; } public CR_PurchasesQuery setMonthNoGreaterThanOrEqualTo(Short value) { this.MonthNoGreaterThanOrEqualTo = value; return this; } public Short getMonthNoGreaterThan() { return MonthNoGreaterThan; } public CR_PurchasesQuery setMonthNoGreaterThan(Short value) { this.MonthNoGreaterThan = value; return this; } public Short getMonthNoLessThan() { return MonthNoLessThan; } public CR_PurchasesQuery setMonthNoLessThan(Short value) { this.MonthNoLessThan = value; return this; } public Short getMonthNoLessThanOrEqualTo() { return MonthNoLessThanOrEqualTo; } public CR_PurchasesQuery setMonthNoLessThanOrEqualTo(Short value) { this.MonthNoLessThanOrEqualTo = value; return this; } public Short getMonthNoNotEqualTo() { return MonthNoNotEqualTo; } public CR_PurchasesQuery setMonthNoNotEqualTo(Short value) { this.MonthNoNotEqualTo = value; return this; } public ArrayList getMonthNoBetween() { return MonthNoBetween; } public CR_PurchasesQuery setMonthNoBetween(ArrayList value) { this.MonthNoBetween = value; return this; } public ArrayList getMonthNoIn() { return MonthNoIn; } public CR_PurchasesQuery setMonthNoIn(ArrayList value) { this.MonthNoIn = value; return this; } public Short getYearNo() { return YearNo; } public CR_PurchasesQuery setYearNo(Short value) { this.YearNo = value; return this; } public Short getYearNoGreaterThanOrEqualTo() { return YearNoGreaterThanOrEqualTo; } public CR_PurchasesQuery setYearNoGreaterThanOrEqualTo(Short value) { this.YearNoGreaterThanOrEqualTo = value; return this; } public Short getYearNoGreaterThan() { return YearNoGreaterThan; } public CR_PurchasesQuery setYearNoGreaterThan(Short value) { this.YearNoGreaterThan = value; return this; } public Short getYearNoLessThan() { return YearNoLessThan; } public CR_PurchasesQuery setYearNoLessThan(Short value) { this.YearNoLessThan = value; return this; } public Short getYearNoLessThanOrEqualTo() { return YearNoLessThanOrEqualTo; } public CR_PurchasesQuery setYearNoLessThanOrEqualTo(Short value) { this.YearNoLessThanOrEqualTo = value; return this; } public Short getYearNoNotEqualTo() { return YearNoNotEqualTo; } public CR_PurchasesQuery setYearNoNotEqualTo(Short value) { this.YearNoNotEqualTo = value; return this; } public ArrayList getYearNoBetween() { return YearNoBetween; } public CR_PurchasesQuery setYearNoBetween(ArrayList value) { this.YearNoBetween = value; return this; } public ArrayList getYearNoIn() { return YearNoIn; } public CR_PurchasesQuery setYearNoIn(ArrayList value) { this.YearNoIn = value; return this; } public String getInLogicalID() { return IN_LogicalID; } public CR_PurchasesQuery setInLogicalID(String value) { this.IN_LogicalID = value; return this; } public String getInLogicalIDStartsWith() { return IN_LogicalIDStartsWith; } public CR_PurchasesQuery setInLogicalIDStartsWith(String value) { this.IN_LogicalIDStartsWith = value; return this; } public String getInLogicalIDEndsWith() { return IN_LogicalIDEndsWith; } public CR_PurchasesQuery setInLogicalIDEndsWith(String value) { this.IN_LogicalIDEndsWith = value; return this; } public String getInLogicalIDContains() { return IN_LogicalIDContains; } public CR_PurchasesQuery setInLogicalIDContains(String value) { this.IN_LogicalIDContains = value; return this; } public String getInLogicalIDLike() { return IN_LogicalIDLike; } public CR_PurchasesQuery setInLogicalIDLike(String value) { this.IN_LogicalIDLike = value; return this; } public ArrayList getInLogicalIDBetween() { return IN_LogicalIDBetween; } public CR_PurchasesQuery setInLogicalIDBetween(ArrayList value) { this.IN_LogicalIDBetween = value; return this; } public ArrayList getInLogicalIDIn() { return IN_LogicalIDIn; } public CR_PurchasesQuery setInLogicalIDIn(ArrayList value) { this.IN_LogicalIDIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class CR_TransQuery extends QueryDb implements IReturn> { public String TransID = null; public String TransIDStartsWith = null; public String TransIDEndsWith = null; public String TransIDContains = null; public String TransIDLike = null; public ArrayList TransIDBetween = null; public ArrayList TransIDIn = null; public String CreditorID = null; public String CreditorIDStartsWith = null; public String CreditorIDEndsWith = null; public String CreditorIDContains = null; public String CreditorIDLike = null; public ArrayList CreditorIDBetween = null; public ArrayList CreditorIDIn = null; public Boolean DebitCredit = null; public String Ref = null; public String RefStartsWith = null; public String RefEndsWith = null; public String RefContains = null; public String RefLike = null; public ArrayList RefBetween = null; public ArrayList RefIn = null; public String Remark = null; public String RemarkStartsWith = null; public String RemarkEndsWith = null; public String RemarkContains = null; public String RemarkLike = null; public ArrayList RemarkBetween = null; public ArrayList RemarkIn = null; public Date TranDate = null; public Date TranDateGreaterThanOrEqualTo = null; public Date TranDateGreaterThan = null; public Date TranDateLessThan = null; public Date TranDateLessThanOrEqualTo = null; public Date TranDateNotEqualTo = null; public ArrayList TranDateBetween = null; public ArrayList TranDateIn = null; public String InvRemitNo = null; public String InvRemitNoStartsWith = null; public String InvRemitNoEndsWith = null; public String InvRemitNoContains = null; public String InvRemitNoLike = null; public ArrayList InvRemitNoBetween = null; public ArrayList InvRemitNoIn = null; public BigDecimal FXAmount = null; public BigDecimal FXAmountGreaterThanOrEqualTo = null; public BigDecimal FXAmountGreaterThan = null; public BigDecimal FXAmountLessThan = null; public BigDecimal FXAmountLessThanOrEqualTo = null; public BigDecimal FXAmountNotEqualTo = null; public ArrayList FXAmountBetween = null; public ArrayList FXAmountIn = null; public BigDecimal DiscountedAmount = null; public BigDecimal DiscountedAmountGreaterThanOrEqualTo = null; public BigDecimal DiscountedAmountGreaterThan = null; public BigDecimal DiscountedAmountLessThan = null; public BigDecimal DiscountedAmountLessThanOrEqualTo = null; public BigDecimal DiscountedAmountNotEqualTo = null; public ArrayList DiscountedAmountBetween = null; public ArrayList DiscountedAmountIn = null; public Boolean AgedOut = null; public String SourceID = null; public String SourceIDStartsWith = null; public String SourceIDEndsWith = null; public String SourceIDContains = null; public String SourceIDLike = null; public ArrayList SourceIDBetween = null; public ArrayList SourceIDIn = null; public BigDecimal AllocatedAmount = null; public BigDecimal AllocatedAmountGreaterThanOrEqualTo = null; public BigDecimal AllocatedAmountGreaterThan = null; public BigDecimal AllocatedAmountLessThan = null; public BigDecimal AllocatedAmountLessThanOrEqualTo = null; public BigDecimal AllocatedAmountNotEqualTo = null; public ArrayList AllocatedAmountBetween = null; public ArrayList AllocatedAmountIn = null; public Date InitDateTime = null; public Date InitDateTimeGreaterThanOrEqualTo = null; public Date InitDateTimeGreaterThan = null; public Date InitDateTimeLessThan = null; public Date InitDateTimeLessThanOrEqualTo = null; public Date InitDateTimeNotEqualTo = null; public ArrayList InitDateTimeBetween = null; public ArrayList InitDateTimeIn = null; public Date LastSavedDateTime = null; public Date LastSavedDateTimeGreaterThanOrEqualTo = null; public Date LastSavedDateTimeGreaterThan = null; public Date LastSavedDateTimeLessThan = null; public Date LastSavedDateTimeLessThanOrEqualTo = null; public Date LastSavedDateTimeNotEqualTo = null; public ArrayList LastSavedDateTimeBetween = null; public ArrayList LastSavedDateTimeIn = null; public String BatchNo = null; public String BatchNoStartsWith = null; public String BatchNoEndsWith = null; public String BatchNoContains = null; public String BatchNoLike = null; public ArrayList BatchNoBetween = null; public ArrayList BatchNoIn = null; public Boolean ChequePrinting = null; public String ChequeRunID = null; public String ChequeRunIDStartsWith = null; public String ChequeRunIDEndsWith = null; public String ChequeRunIDContains = null; public String ChequeRunIDLike = null; public ArrayList ChequeRunIDBetween = null; public ArrayList ChequeRunIDIn = null; public Date DueDate = null; public Date DueDateGreaterThanOrEqualTo = null; public Date DueDateGreaterThan = null; public Date DueDateLessThan = null; public Date DueDateLessThanOrEqualTo = null; public Date DueDateNotEqualTo = null; public ArrayList DueDateBetween = null; public ArrayList DueDateIn = null; public BigDecimal Amount = null; public BigDecimal AmountGreaterThanOrEqualTo = null; public BigDecimal AmountGreaterThan = null; public BigDecimal AmountLessThan = null; public BigDecimal AmountLessThanOrEqualTo = null; public BigDecimal AmountNotEqualTo = null; public ArrayList AmountBetween = null; public ArrayList AmountIn = null; public BigDecimal CurrencyRateUsed = null; public BigDecimal CurrencyRateUsedGreaterThanOrEqualTo = null; public BigDecimal CurrencyRateUsedGreaterThan = null; public BigDecimal CurrencyRateUsedLessThan = null; public BigDecimal CurrencyRateUsedLessThanOrEqualTo = null; public BigDecimal CurrencyRateUsedNotEqualTo = null; public ArrayList CurrencyRateUsedBetween = null; public ArrayList CurrencyRateUsedIn = null; public BigDecimal FXAllocAmount = null; public BigDecimal FXAllocAmountGreaterThanOrEqualTo = null; public BigDecimal FXAllocAmountGreaterThan = null; public BigDecimal FXAllocAmountLessThan = null; public BigDecimal FXAllocAmountLessThanOrEqualTo = null; public BigDecimal FXAllocAmountNotEqualTo = null; public ArrayList FXAllocAmountBetween = null; public ArrayList FXAllocAmountIn = null; public BigDecimal GSTAmount = null; public BigDecimal GSTAmountGreaterThanOrEqualTo = null; public BigDecimal GSTAmountGreaterThan = null; public BigDecimal GSTAmountLessThan = null; public BigDecimal GSTAmountLessThanOrEqualTo = null; public BigDecimal GSTAmountNotEqualTo = null; public ArrayList GSTAmountBetween = null; public ArrayList GSTAmountIn = null; public BigDecimal RealisedGainLoss = null; public BigDecimal RealisedGainLossGreaterThanOrEqualTo = null; public BigDecimal RealisedGainLossGreaterThan = null; public BigDecimal RealisedGainLossLessThan = null; public BigDecimal RealisedGainLossLessThanOrEqualTo = null; public BigDecimal RealisedGainLossNotEqualTo = null; public ArrayList RealisedGainLossBetween = null; public ArrayList RealisedGainLossIn = null; public BigDecimal UnRealisedGainLoss = null; public BigDecimal UnRealisedGainLossGreaterThanOrEqualTo = null; public BigDecimal UnRealisedGainLossGreaterThan = null; public BigDecimal UnRealisedGainLossLessThan = null; public BigDecimal UnRealisedGainLossLessThanOrEqualTo = null; public BigDecimal UnRealisedGainLossNotEqualTo = null; public ArrayList UnRealisedGainLossBetween = null; public ArrayList UnRealisedGainLossIn = null; public Short FXDecimalPlaces = null; public Short FXDecimalPlacesGreaterThanOrEqualTo = null; public Short FXDecimalPlacesGreaterThan = null; public Short FXDecimalPlacesLessThan = null; public Short FXDecimalPlacesLessThanOrEqualTo = null; public Short FXDecimalPlacesNotEqualTo = null; public ArrayList FXDecimalPlacesBetween = null; public ArrayList FXDecimalPlacesIn = null; public Short DecimalPlaces = null; public Short DecimalPlacesGreaterThanOrEqualTo = null; public Short DecimalPlacesGreaterThan = null; public Short DecimalPlacesLessThan = null; public Short DecimalPlacesLessThanOrEqualTo = null; public Short DecimalPlacesNotEqualTo = null; public ArrayList DecimalPlacesBetween = null; public ArrayList DecimalPlacesIn = null; public String CurrencyID = null; public String CurrencyIDStartsWith = null; public String CurrencyIDEndsWith = null; public String CurrencyIDContains = null; public String CurrencyIDLike = null; public ArrayList CurrencyIDBetween = null; public ArrayList CurrencyIDIn = null; public String Source = null; public String SourceStartsWith = null; public String SourceEndsWith = null; public String SourceContains = null; public String SourceLike = null; public ArrayList SourceBetween = null; public ArrayList SourceIn = null; public String Note = null; public String NoteStartsWith = null; public String NoteEndsWith = null; public String NoteContains = null; public String NoteLike = null; public ArrayList NoteBetween = null; public ArrayList NoteIn = null; public String getTransID() { return TransID; } public CR_TransQuery setTransID(String value) { this.TransID = value; return this; } public String getTransIDStartsWith() { return TransIDStartsWith; } public CR_TransQuery setTransIDStartsWith(String value) { this.TransIDStartsWith = value; return this; } public String getTransIDEndsWith() { return TransIDEndsWith; } public CR_TransQuery setTransIDEndsWith(String value) { this.TransIDEndsWith = value; return this; } public String getTransIDContains() { return TransIDContains; } public CR_TransQuery setTransIDContains(String value) { this.TransIDContains = value; return this; } public String getTransIDLike() { return TransIDLike; } public CR_TransQuery setTransIDLike(String value) { this.TransIDLike = value; return this; } public ArrayList getTransIDBetween() { return TransIDBetween; } public CR_TransQuery setTransIDBetween(ArrayList value) { this.TransIDBetween = value; return this; } public ArrayList getTransIDIn() { return TransIDIn; } public CR_TransQuery setTransIDIn(ArrayList value) { this.TransIDIn = value; return this; } public String getCreditorID() { return CreditorID; } public CR_TransQuery setCreditorID(String value) { this.CreditorID = value; return this; } public String getCreditorIDStartsWith() { return CreditorIDStartsWith; } public CR_TransQuery setCreditorIDStartsWith(String value) { this.CreditorIDStartsWith = value; return this; } public String getCreditorIDEndsWith() { return CreditorIDEndsWith; } public CR_TransQuery setCreditorIDEndsWith(String value) { this.CreditorIDEndsWith = value; return this; } public String getCreditorIDContains() { return CreditorIDContains; } public CR_TransQuery setCreditorIDContains(String value) { this.CreditorIDContains = value; return this; } public String getCreditorIDLike() { return CreditorIDLike; } public CR_TransQuery setCreditorIDLike(String value) { this.CreditorIDLike = value; return this; } public ArrayList getCreditorIDBetween() { return CreditorIDBetween; } public CR_TransQuery setCreditorIDBetween(ArrayList value) { this.CreditorIDBetween = value; return this; } public ArrayList getCreditorIDIn() { return CreditorIDIn; } public CR_TransQuery setCreditorIDIn(ArrayList value) { this.CreditorIDIn = value; return this; } public Boolean isDebitCredit() { return DebitCredit; } public CR_TransQuery setDebitCredit(Boolean value) { this.DebitCredit = value; return this; } public String getRef() { return Ref; } public CR_TransQuery setRef(String value) { this.Ref = value; return this; } public String getRefStartsWith() { return RefStartsWith; } public CR_TransQuery setRefStartsWith(String value) { this.RefStartsWith = value; return this; } public String getRefEndsWith() { return RefEndsWith; } public CR_TransQuery setRefEndsWith(String value) { this.RefEndsWith = value; return this; } public String getRefContains() { return RefContains; } public CR_TransQuery setRefContains(String value) { this.RefContains = value; return this; } public String getRefLike() { return RefLike; } public CR_TransQuery setRefLike(String value) { this.RefLike = value; return this; } public ArrayList getRefBetween() { return RefBetween; } public CR_TransQuery setRefBetween(ArrayList value) { this.RefBetween = value; return this; } public ArrayList getRefIn() { return RefIn; } public CR_TransQuery setRefIn(ArrayList value) { this.RefIn = value; return this; } public String getRemark() { return Remark; } public CR_TransQuery setRemark(String value) { this.Remark = value; return this; } public String getRemarkStartsWith() { return RemarkStartsWith; } public CR_TransQuery setRemarkStartsWith(String value) { this.RemarkStartsWith = value; return this; } public String getRemarkEndsWith() { return RemarkEndsWith; } public CR_TransQuery setRemarkEndsWith(String value) { this.RemarkEndsWith = value; return this; } public String getRemarkContains() { return RemarkContains; } public CR_TransQuery setRemarkContains(String value) { this.RemarkContains = value; return this; } public String getRemarkLike() { return RemarkLike; } public CR_TransQuery setRemarkLike(String value) { this.RemarkLike = value; return this; } public ArrayList getRemarkBetween() { return RemarkBetween; } public CR_TransQuery setRemarkBetween(ArrayList value) { this.RemarkBetween = value; return this; } public ArrayList getRemarkIn() { return RemarkIn; } public CR_TransQuery setRemarkIn(ArrayList value) { this.RemarkIn = value; return this; } public Date getTranDate() { return TranDate; } public CR_TransQuery setTranDate(Date value) { this.TranDate = value; return this; } public Date getTranDateGreaterThanOrEqualTo() { return TranDateGreaterThanOrEqualTo; } public CR_TransQuery setTranDateGreaterThanOrEqualTo(Date value) { this.TranDateGreaterThanOrEqualTo = value; return this; } public Date getTranDateGreaterThan() { return TranDateGreaterThan; } public CR_TransQuery setTranDateGreaterThan(Date value) { this.TranDateGreaterThan = value; return this; } public Date getTranDateLessThan() { return TranDateLessThan; } public CR_TransQuery setTranDateLessThan(Date value) { this.TranDateLessThan = value; return this; } public Date getTranDateLessThanOrEqualTo() { return TranDateLessThanOrEqualTo; } public CR_TransQuery setTranDateLessThanOrEqualTo(Date value) { this.TranDateLessThanOrEqualTo = value; return this; } public Date getTranDateNotEqualTo() { return TranDateNotEqualTo; } public CR_TransQuery setTranDateNotEqualTo(Date value) { this.TranDateNotEqualTo = value; return this; } public ArrayList getTranDateBetween() { return TranDateBetween; } public CR_TransQuery setTranDateBetween(ArrayList value) { this.TranDateBetween = value; return this; } public ArrayList getTranDateIn() { return TranDateIn; } public CR_TransQuery setTranDateIn(ArrayList value) { this.TranDateIn = value; return this; } public String getInvRemitNo() { return InvRemitNo; } public CR_TransQuery setInvRemitNo(String value) { this.InvRemitNo = value; return this; } public String getInvRemitNoStartsWith() { return InvRemitNoStartsWith; } public CR_TransQuery setInvRemitNoStartsWith(String value) { this.InvRemitNoStartsWith = value; return this; } public String getInvRemitNoEndsWith() { return InvRemitNoEndsWith; } public CR_TransQuery setInvRemitNoEndsWith(String value) { this.InvRemitNoEndsWith = value; return this; } public String getInvRemitNoContains() { return InvRemitNoContains; } public CR_TransQuery setInvRemitNoContains(String value) { this.InvRemitNoContains = value; return this; } public String getInvRemitNoLike() { return InvRemitNoLike; } public CR_TransQuery setInvRemitNoLike(String value) { this.InvRemitNoLike = value; return this; } public ArrayList getInvRemitNoBetween() { return InvRemitNoBetween; } public CR_TransQuery setInvRemitNoBetween(ArrayList value) { this.InvRemitNoBetween = value; return this; } public ArrayList getInvRemitNoIn() { return InvRemitNoIn; } public CR_TransQuery setInvRemitNoIn(ArrayList value) { this.InvRemitNoIn = value; return this; } public BigDecimal getFxAmount() { return FXAmount; } public CR_TransQuery setFxAmount(BigDecimal value) { this.FXAmount = value; return this; } public BigDecimal getFxAmountGreaterThanOrEqualTo() { return FXAmountGreaterThanOrEqualTo; } public CR_TransQuery setFxAmountGreaterThanOrEqualTo(BigDecimal value) { this.FXAmountGreaterThanOrEqualTo = value; return this; } public BigDecimal getFxAmountGreaterThan() { return FXAmountGreaterThan; } public CR_TransQuery setFxAmountGreaterThan(BigDecimal value) { this.FXAmountGreaterThan = value; return this; } public BigDecimal getFxAmountLessThan() { return FXAmountLessThan; } public CR_TransQuery setFxAmountLessThan(BigDecimal value) { this.FXAmountLessThan = value; return this; } public BigDecimal getFxAmountLessThanOrEqualTo() { return FXAmountLessThanOrEqualTo; } public CR_TransQuery setFxAmountLessThanOrEqualTo(BigDecimal value) { this.FXAmountLessThanOrEqualTo = value; return this; } public BigDecimal getFxAmountNotEqualTo() { return FXAmountNotEqualTo; } public CR_TransQuery setFxAmountNotEqualTo(BigDecimal value) { this.FXAmountNotEqualTo = value; return this; } public ArrayList getFxAmountBetween() { return FXAmountBetween; } public CR_TransQuery setFxAmountBetween(ArrayList value) { this.FXAmountBetween = value; return this; } public ArrayList getFxAmountIn() { return FXAmountIn; } public CR_TransQuery setFxAmountIn(ArrayList value) { this.FXAmountIn = value; return this; } public BigDecimal getDiscountedAmount() { return DiscountedAmount; } public CR_TransQuery setDiscountedAmount(BigDecimal value) { this.DiscountedAmount = value; return this; } public BigDecimal getDiscountedAmountGreaterThanOrEqualTo() { return DiscountedAmountGreaterThanOrEqualTo; } public CR_TransQuery setDiscountedAmountGreaterThanOrEqualTo(BigDecimal value) { this.DiscountedAmountGreaterThanOrEqualTo = value; return this; } public BigDecimal getDiscountedAmountGreaterThan() { return DiscountedAmountGreaterThan; } public CR_TransQuery setDiscountedAmountGreaterThan(BigDecimal value) { this.DiscountedAmountGreaterThan = value; return this; } public BigDecimal getDiscountedAmountLessThan() { return DiscountedAmountLessThan; } public CR_TransQuery setDiscountedAmountLessThan(BigDecimal value) { this.DiscountedAmountLessThan = value; return this; } public BigDecimal getDiscountedAmountLessThanOrEqualTo() { return DiscountedAmountLessThanOrEqualTo; } public CR_TransQuery setDiscountedAmountLessThanOrEqualTo(BigDecimal value) { this.DiscountedAmountLessThanOrEqualTo = value; return this; } public BigDecimal getDiscountedAmountNotEqualTo() { return DiscountedAmountNotEqualTo; } public CR_TransQuery setDiscountedAmountNotEqualTo(BigDecimal value) { this.DiscountedAmountNotEqualTo = value; return this; } public ArrayList getDiscountedAmountBetween() { return DiscountedAmountBetween; } public CR_TransQuery setDiscountedAmountBetween(ArrayList value) { this.DiscountedAmountBetween = value; return this; } public ArrayList getDiscountedAmountIn() { return DiscountedAmountIn; } public CR_TransQuery setDiscountedAmountIn(ArrayList value) { this.DiscountedAmountIn = value; return this; } public Boolean isAgedOut() { return AgedOut; } public CR_TransQuery setAgedOut(Boolean value) { this.AgedOut = value; return this; } public String getSourceID() { return SourceID; } public CR_TransQuery setSourceID(String value) { this.SourceID = value; return this; } public String getSourceIDStartsWith() { return SourceIDStartsWith; } public CR_TransQuery setSourceIDStartsWith(String value) { this.SourceIDStartsWith = value; return this; } public String getSourceIDEndsWith() { return SourceIDEndsWith; } public CR_TransQuery setSourceIDEndsWith(String value) { this.SourceIDEndsWith = value; return this; } public String getSourceIDContains() { return SourceIDContains; } public CR_TransQuery setSourceIDContains(String value) { this.SourceIDContains = value; return this; } public String getSourceIDLike() { return SourceIDLike; } public CR_TransQuery setSourceIDLike(String value) { this.SourceIDLike = value; return this; } public ArrayList getSourceIDBetween() { return SourceIDBetween; } public CR_TransQuery setSourceIDBetween(ArrayList value) { this.SourceIDBetween = value; return this; } public ArrayList getSourceIDIn() { return SourceIDIn; } public CR_TransQuery setSourceIDIn(ArrayList value) { this.SourceIDIn = value; return this; } public BigDecimal getAllocatedAmount() { return AllocatedAmount; } public CR_TransQuery setAllocatedAmount(BigDecimal value) { this.AllocatedAmount = value; return this; } public BigDecimal getAllocatedAmountGreaterThanOrEqualTo() { return AllocatedAmountGreaterThanOrEqualTo; } public CR_TransQuery setAllocatedAmountGreaterThanOrEqualTo(BigDecimal value) { this.AllocatedAmountGreaterThanOrEqualTo = value; return this; } public BigDecimal getAllocatedAmountGreaterThan() { return AllocatedAmountGreaterThan; } public CR_TransQuery setAllocatedAmountGreaterThan(BigDecimal value) { this.AllocatedAmountGreaterThan = value; return this; } public BigDecimal getAllocatedAmountLessThan() { return AllocatedAmountLessThan; } public CR_TransQuery setAllocatedAmountLessThan(BigDecimal value) { this.AllocatedAmountLessThan = value; return this; } public BigDecimal getAllocatedAmountLessThanOrEqualTo() { return AllocatedAmountLessThanOrEqualTo; } public CR_TransQuery setAllocatedAmountLessThanOrEqualTo(BigDecimal value) { this.AllocatedAmountLessThanOrEqualTo = value; return this; } public BigDecimal getAllocatedAmountNotEqualTo() { return AllocatedAmountNotEqualTo; } public CR_TransQuery setAllocatedAmountNotEqualTo(BigDecimal value) { this.AllocatedAmountNotEqualTo = value; return this; } public ArrayList getAllocatedAmountBetween() { return AllocatedAmountBetween; } public CR_TransQuery setAllocatedAmountBetween(ArrayList value) { this.AllocatedAmountBetween = value; return this; } public ArrayList getAllocatedAmountIn() { return AllocatedAmountIn; } public CR_TransQuery setAllocatedAmountIn(ArrayList value) { this.AllocatedAmountIn = value; return this; } public Date getInitDateTime() { return InitDateTime; } public CR_TransQuery setInitDateTime(Date value) { this.InitDateTime = value; return this; } public Date getInitDateTimeGreaterThanOrEqualTo() { return InitDateTimeGreaterThanOrEqualTo; } public CR_TransQuery setInitDateTimeGreaterThanOrEqualTo(Date value) { this.InitDateTimeGreaterThanOrEqualTo = value; return this; } public Date getInitDateTimeGreaterThan() { return InitDateTimeGreaterThan; } public CR_TransQuery setInitDateTimeGreaterThan(Date value) { this.InitDateTimeGreaterThan = value; return this; } public Date getInitDateTimeLessThan() { return InitDateTimeLessThan; } public CR_TransQuery setInitDateTimeLessThan(Date value) { this.InitDateTimeLessThan = value; return this; } public Date getInitDateTimeLessThanOrEqualTo() { return InitDateTimeLessThanOrEqualTo; } public CR_TransQuery setInitDateTimeLessThanOrEqualTo(Date value) { this.InitDateTimeLessThanOrEqualTo = value; return this; } public Date getInitDateTimeNotEqualTo() { return InitDateTimeNotEqualTo; } public CR_TransQuery setInitDateTimeNotEqualTo(Date value) { this.InitDateTimeNotEqualTo = value; return this; } public ArrayList getInitDateTimeBetween() { return InitDateTimeBetween; } public CR_TransQuery setInitDateTimeBetween(ArrayList value) { this.InitDateTimeBetween = value; return this; } public ArrayList getInitDateTimeIn() { return InitDateTimeIn; } public CR_TransQuery setInitDateTimeIn(ArrayList value) { this.InitDateTimeIn = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public CR_TransQuery setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getLastSavedDateTimeGreaterThanOrEqualTo() { return LastSavedDateTimeGreaterThanOrEqualTo; } public CR_TransQuery setLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.LastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeGreaterThan() { return LastSavedDateTimeGreaterThan; } public CR_TransQuery setLastSavedDateTimeGreaterThan(Date value) { this.LastSavedDateTimeGreaterThan = value; return this; } public Date getLastSavedDateTimeLessThan() { return LastSavedDateTimeLessThan; } public CR_TransQuery setLastSavedDateTimeLessThan(Date value) { this.LastSavedDateTimeLessThan = value; return this; } public Date getLastSavedDateTimeLessThanOrEqualTo() { return LastSavedDateTimeLessThanOrEqualTo; } public CR_TransQuery setLastSavedDateTimeLessThanOrEqualTo(Date value) { this.LastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeNotEqualTo() { return LastSavedDateTimeNotEqualTo; } public CR_TransQuery setLastSavedDateTimeNotEqualTo(Date value) { this.LastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getLastSavedDateTimeBetween() { return LastSavedDateTimeBetween; } public CR_TransQuery setLastSavedDateTimeBetween(ArrayList value) { this.LastSavedDateTimeBetween = value; return this; } public ArrayList getLastSavedDateTimeIn() { return LastSavedDateTimeIn; } public CR_TransQuery setLastSavedDateTimeIn(ArrayList value) { this.LastSavedDateTimeIn = value; return this; } public String getBatchNo() { return BatchNo; } public CR_TransQuery setBatchNo(String value) { this.BatchNo = value; return this; } public String getBatchNoStartsWith() { return BatchNoStartsWith; } public CR_TransQuery setBatchNoStartsWith(String value) { this.BatchNoStartsWith = value; return this; } public String getBatchNoEndsWith() { return BatchNoEndsWith; } public CR_TransQuery setBatchNoEndsWith(String value) { this.BatchNoEndsWith = value; return this; } public String getBatchNoContains() { return BatchNoContains; } public CR_TransQuery setBatchNoContains(String value) { this.BatchNoContains = value; return this; } public String getBatchNoLike() { return BatchNoLike; } public CR_TransQuery setBatchNoLike(String value) { this.BatchNoLike = value; return this; } public ArrayList getBatchNoBetween() { return BatchNoBetween; } public CR_TransQuery setBatchNoBetween(ArrayList value) { this.BatchNoBetween = value; return this; } public ArrayList getBatchNoIn() { return BatchNoIn; } public CR_TransQuery setBatchNoIn(ArrayList value) { this.BatchNoIn = value; return this; } public Boolean isChequePrinting() { return ChequePrinting; } public CR_TransQuery setChequePrinting(Boolean value) { this.ChequePrinting = value; return this; } public String getChequeRunID() { return ChequeRunID; } public CR_TransQuery setChequeRunID(String value) { this.ChequeRunID = value; return this; } public String getChequeRunIDStartsWith() { return ChequeRunIDStartsWith; } public CR_TransQuery setChequeRunIDStartsWith(String value) { this.ChequeRunIDStartsWith = value; return this; } public String getChequeRunIDEndsWith() { return ChequeRunIDEndsWith; } public CR_TransQuery setChequeRunIDEndsWith(String value) { this.ChequeRunIDEndsWith = value; return this; } public String getChequeRunIDContains() { return ChequeRunIDContains; } public CR_TransQuery setChequeRunIDContains(String value) { this.ChequeRunIDContains = value; return this; } public String getChequeRunIDLike() { return ChequeRunIDLike; } public CR_TransQuery setChequeRunIDLike(String value) { this.ChequeRunIDLike = value; return this; } public ArrayList getChequeRunIDBetween() { return ChequeRunIDBetween; } public CR_TransQuery setChequeRunIDBetween(ArrayList value) { this.ChequeRunIDBetween = value; return this; } public ArrayList getChequeRunIDIn() { return ChequeRunIDIn; } public CR_TransQuery setChequeRunIDIn(ArrayList value) { this.ChequeRunIDIn = value; return this; } public Date getDueDate() { return DueDate; } public CR_TransQuery setDueDate(Date value) { this.DueDate = value; return this; } public Date getDueDateGreaterThanOrEqualTo() { return DueDateGreaterThanOrEqualTo; } public CR_TransQuery setDueDateGreaterThanOrEqualTo(Date value) { this.DueDateGreaterThanOrEqualTo = value; return this; } public Date getDueDateGreaterThan() { return DueDateGreaterThan; } public CR_TransQuery setDueDateGreaterThan(Date value) { this.DueDateGreaterThan = value; return this; } public Date getDueDateLessThan() { return DueDateLessThan; } public CR_TransQuery setDueDateLessThan(Date value) { this.DueDateLessThan = value; return this; } public Date getDueDateLessThanOrEqualTo() { return DueDateLessThanOrEqualTo; } public CR_TransQuery setDueDateLessThanOrEqualTo(Date value) { this.DueDateLessThanOrEqualTo = value; return this; } public Date getDueDateNotEqualTo() { return DueDateNotEqualTo; } public CR_TransQuery setDueDateNotEqualTo(Date value) { this.DueDateNotEqualTo = value; return this; } public ArrayList getDueDateBetween() { return DueDateBetween; } public CR_TransQuery setDueDateBetween(ArrayList value) { this.DueDateBetween = value; return this; } public ArrayList getDueDateIn() { return DueDateIn; } public CR_TransQuery setDueDateIn(ArrayList value) { this.DueDateIn = value; return this; } public BigDecimal getAmount() { return Amount; } public CR_TransQuery setAmount(BigDecimal value) { this.Amount = value; return this; } public BigDecimal getAmountGreaterThanOrEqualTo() { return AmountGreaterThanOrEqualTo; } public CR_TransQuery setAmountGreaterThanOrEqualTo(BigDecimal value) { this.AmountGreaterThanOrEqualTo = value; return this; } public BigDecimal getAmountGreaterThan() { return AmountGreaterThan; } public CR_TransQuery setAmountGreaterThan(BigDecimal value) { this.AmountGreaterThan = value; return this; } public BigDecimal getAmountLessThan() { return AmountLessThan; } public CR_TransQuery setAmountLessThan(BigDecimal value) { this.AmountLessThan = value; return this; } public BigDecimal getAmountLessThanOrEqualTo() { return AmountLessThanOrEqualTo; } public CR_TransQuery setAmountLessThanOrEqualTo(BigDecimal value) { this.AmountLessThanOrEqualTo = value; return this; } public BigDecimal getAmountNotEqualTo() { return AmountNotEqualTo; } public CR_TransQuery setAmountNotEqualTo(BigDecimal value) { this.AmountNotEqualTo = value; return this; } public ArrayList getAmountBetween() { return AmountBetween; } public CR_TransQuery setAmountBetween(ArrayList value) { this.AmountBetween = value; return this; } public ArrayList getAmountIn() { return AmountIn; } public CR_TransQuery setAmountIn(ArrayList value) { this.AmountIn = value; return this; } public BigDecimal getCurrencyRateUsed() { return CurrencyRateUsed; } public CR_TransQuery setCurrencyRateUsed(BigDecimal value) { this.CurrencyRateUsed = value; return this; } public BigDecimal getCurrencyRateUsedGreaterThanOrEqualTo() { return CurrencyRateUsedGreaterThanOrEqualTo; } public CR_TransQuery setCurrencyRateUsedGreaterThanOrEqualTo(BigDecimal value) { this.CurrencyRateUsedGreaterThanOrEqualTo = value; return this; } public BigDecimal getCurrencyRateUsedGreaterThan() { return CurrencyRateUsedGreaterThan; } public CR_TransQuery setCurrencyRateUsedGreaterThan(BigDecimal value) { this.CurrencyRateUsedGreaterThan = value; return this; } public BigDecimal getCurrencyRateUsedLessThan() { return CurrencyRateUsedLessThan; } public CR_TransQuery setCurrencyRateUsedLessThan(BigDecimal value) { this.CurrencyRateUsedLessThan = value; return this; } public BigDecimal getCurrencyRateUsedLessThanOrEqualTo() { return CurrencyRateUsedLessThanOrEqualTo; } public CR_TransQuery setCurrencyRateUsedLessThanOrEqualTo(BigDecimal value) { this.CurrencyRateUsedLessThanOrEqualTo = value; return this; } public BigDecimal getCurrencyRateUsedNotEqualTo() { return CurrencyRateUsedNotEqualTo; } public CR_TransQuery setCurrencyRateUsedNotEqualTo(BigDecimal value) { this.CurrencyRateUsedNotEqualTo = value; return this; } public ArrayList getCurrencyRateUsedBetween() { return CurrencyRateUsedBetween; } public CR_TransQuery setCurrencyRateUsedBetween(ArrayList value) { this.CurrencyRateUsedBetween = value; return this; } public ArrayList getCurrencyRateUsedIn() { return CurrencyRateUsedIn; } public CR_TransQuery setCurrencyRateUsedIn(ArrayList value) { this.CurrencyRateUsedIn = value; return this; } public BigDecimal getFxAllocAmount() { return FXAllocAmount; } public CR_TransQuery setFxAllocAmount(BigDecimal value) { this.FXAllocAmount = value; return this; } public BigDecimal getFxAllocAmountGreaterThanOrEqualTo() { return FXAllocAmountGreaterThanOrEqualTo; } public CR_TransQuery setFxAllocAmountGreaterThanOrEqualTo(BigDecimal value) { this.FXAllocAmountGreaterThanOrEqualTo = value; return this; } public BigDecimal getFxAllocAmountGreaterThan() { return FXAllocAmountGreaterThan; } public CR_TransQuery setFxAllocAmountGreaterThan(BigDecimal value) { this.FXAllocAmountGreaterThan = value; return this; } public BigDecimal getFxAllocAmountLessThan() { return FXAllocAmountLessThan; } public CR_TransQuery setFxAllocAmountLessThan(BigDecimal value) { this.FXAllocAmountLessThan = value; return this; } public BigDecimal getFxAllocAmountLessThanOrEqualTo() { return FXAllocAmountLessThanOrEqualTo; } public CR_TransQuery setFxAllocAmountLessThanOrEqualTo(BigDecimal value) { this.FXAllocAmountLessThanOrEqualTo = value; return this; } public BigDecimal getFxAllocAmountNotEqualTo() { return FXAllocAmountNotEqualTo; } public CR_TransQuery setFxAllocAmountNotEqualTo(BigDecimal value) { this.FXAllocAmountNotEqualTo = value; return this; } public ArrayList getFxAllocAmountBetween() { return FXAllocAmountBetween; } public CR_TransQuery setFxAllocAmountBetween(ArrayList value) { this.FXAllocAmountBetween = value; return this; } public ArrayList getFxAllocAmountIn() { return FXAllocAmountIn; } public CR_TransQuery setFxAllocAmountIn(ArrayList value) { this.FXAllocAmountIn = value; return this; } public BigDecimal getGstAmount() { return GSTAmount; } public CR_TransQuery setGstAmount(BigDecimal value) { this.GSTAmount = value; return this; } public BigDecimal getGstAmountGreaterThanOrEqualTo() { return GSTAmountGreaterThanOrEqualTo; } public CR_TransQuery setGstAmountGreaterThanOrEqualTo(BigDecimal value) { this.GSTAmountGreaterThanOrEqualTo = value; return this; } public BigDecimal getGstAmountGreaterThan() { return GSTAmountGreaterThan; } public CR_TransQuery setGstAmountGreaterThan(BigDecimal value) { this.GSTAmountGreaterThan = value; return this; } public BigDecimal getGstAmountLessThan() { return GSTAmountLessThan; } public CR_TransQuery setGstAmountLessThan(BigDecimal value) { this.GSTAmountLessThan = value; return this; } public BigDecimal getGstAmountLessThanOrEqualTo() { return GSTAmountLessThanOrEqualTo; } public CR_TransQuery setGstAmountLessThanOrEqualTo(BigDecimal value) { this.GSTAmountLessThanOrEqualTo = value; return this; } public BigDecimal getGstAmountNotEqualTo() { return GSTAmountNotEqualTo; } public CR_TransQuery setGstAmountNotEqualTo(BigDecimal value) { this.GSTAmountNotEqualTo = value; return this; } public ArrayList getGstAmountBetween() { return GSTAmountBetween; } public CR_TransQuery setGstAmountBetween(ArrayList value) { this.GSTAmountBetween = value; return this; } public ArrayList getGstAmountIn() { return GSTAmountIn; } public CR_TransQuery setGstAmountIn(ArrayList value) { this.GSTAmountIn = value; return this; } public BigDecimal getRealisedGainLoss() { return RealisedGainLoss; } public CR_TransQuery setRealisedGainLoss(BigDecimal value) { this.RealisedGainLoss = value; return this; } public BigDecimal getRealisedGainLossGreaterThanOrEqualTo() { return RealisedGainLossGreaterThanOrEqualTo; } public CR_TransQuery setRealisedGainLossGreaterThanOrEqualTo(BigDecimal value) { this.RealisedGainLossGreaterThanOrEqualTo = value; return this; } public BigDecimal getRealisedGainLossGreaterThan() { return RealisedGainLossGreaterThan; } public CR_TransQuery setRealisedGainLossGreaterThan(BigDecimal value) { this.RealisedGainLossGreaterThan = value; return this; } public BigDecimal getRealisedGainLossLessThan() { return RealisedGainLossLessThan; } public CR_TransQuery setRealisedGainLossLessThan(BigDecimal value) { this.RealisedGainLossLessThan = value; return this; } public BigDecimal getRealisedGainLossLessThanOrEqualTo() { return RealisedGainLossLessThanOrEqualTo; } public CR_TransQuery setRealisedGainLossLessThanOrEqualTo(BigDecimal value) { this.RealisedGainLossLessThanOrEqualTo = value; return this; } public BigDecimal getRealisedGainLossNotEqualTo() { return RealisedGainLossNotEqualTo; } public CR_TransQuery setRealisedGainLossNotEqualTo(BigDecimal value) { this.RealisedGainLossNotEqualTo = value; return this; } public ArrayList getRealisedGainLossBetween() { return RealisedGainLossBetween; } public CR_TransQuery setRealisedGainLossBetween(ArrayList value) { this.RealisedGainLossBetween = value; return this; } public ArrayList getRealisedGainLossIn() { return RealisedGainLossIn; } public CR_TransQuery setRealisedGainLossIn(ArrayList value) { this.RealisedGainLossIn = value; return this; } public BigDecimal getUnRealisedGainLoss() { return UnRealisedGainLoss; } public CR_TransQuery setUnRealisedGainLoss(BigDecimal value) { this.UnRealisedGainLoss = value; return this; } public BigDecimal getUnRealisedGainLossGreaterThanOrEqualTo() { return UnRealisedGainLossGreaterThanOrEqualTo; } public CR_TransQuery setUnRealisedGainLossGreaterThanOrEqualTo(BigDecimal value) { this.UnRealisedGainLossGreaterThanOrEqualTo = value; return this; } public BigDecimal getUnRealisedGainLossGreaterThan() { return UnRealisedGainLossGreaterThan; } public CR_TransQuery setUnRealisedGainLossGreaterThan(BigDecimal value) { this.UnRealisedGainLossGreaterThan = value; return this; } public BigDecimal getUnRealisedGainLossLessThan() { return UnRealisedGainLossLessThan; } public CR_TransQuery setUnRealisedGainLossLessThan(BigDecimal value) { this.UnRealisedGainLossLessThan = value; return this; } public BigDecimal getUnRealisedGainLossLessThanOrEqualTo() { return UnRealisedGainLossLessThanOrEqualTo; } public CR_TransQuery setUnRealisedGainLossLessThanOrEqualTo(BigDecimal value) { this.UnRealisedGainLossLessThanOrEqualTo = value; return this; } public BigDecimal getUnRealisedGainLossNotEqualTo() { return UnRealisedGainLossNotEqualTo; } public CR_TransQuery setUnRealisedGainLossNotEqualTo(BigDecimal value) { this.UnRealisedGainLossNotEqualTo = value; return this; } public ArrayList getUnRealisedGainLossBetween() { return UnRealisedGainLossBetween; } public CR_TransQuery setUnRealisedGainLossBetween(ArrayList value) { this.UnRealisedGainLossBetween = value; return this; } public ArrayList getUnRealisedGainLossIn() { return UnRealisedGainLossIn; } public CR_TransQuery setUnRealisedGainLossIn(ArrayList value) { this.UnRealisedGainLossIn = value; return this; } public Short getFxDecimalPlaces() { return FXDecimalPlaces; } public CR_TransQuery setFxDecimalPlaces(Short value) { this.FXDecimalPlaces = value; return this; } public Short getFxDecimalPlacesGreaterThanOrEqualTo() { return FXDecimalPlacesGreaterThanOrEqualTo; } public CR_TransQuery setFxDecimalPlacesGreaterThanOrEqualTo(Short value) { this.FXDecimalPlacesGreaterThanOrEqualTo = value; return this; } public Short getFxDecimalPlacesGreaterThan() { return FXDecimalPlacesGreaterThan; } public CR_TransQuery setFxDecimalPlacesGreaterThan(Short value) { this.FXDecimalPlacesGreaterThan = value; return this; } public Short getFxDecimalPlacesLessThan() { return FXDecimalPlacesLessThan; } public CR_TransQuery setFxDecimalPlacesLessThan(Short value) { this.FXDecimalPlacesLessThan = value; return this; } public Short getFxDecimalPlacesLessThanOrEqualTo() { return FXDecimalPlacesLessThanOrEqualTo; } public CR_TransQuery setFxDecimalPlacesLessThanOrEqualTo(Short value) { this.FXDecimalPlacesLessThanOrEqualTo = value; return this; } public Short getFxDecimalPlacesNotEqualTo() { return FXDecimalPlacesNotEqualTo; } public CR_TransQuery setFxDecimalPlacesNotEqualTo(Short value) { this.FXDecimalPlacesNotEqualTo = value; return this; } public ArrayList getFxDecimalPlacesBetween() { return FXDecimalPlacesBetween; } public CR_TransQuery setFxDecimalPlacesBetween(ArrayList value) { this.FXDecimalPlacesBetween = value; return this; } public ArrayList getFxDecimalPlacesIn() { return FXDecimalPlacesIn; } public CR_TransQuery setFxDecimalPlacesIn(ArrayList value) { this.FXDecimalPlacesIn = value; return this; } public Short getDecimalPlaces() { return DecimalPlaces; } public CR_TransQuery setDecimalPlaces(Short value) { this.DecimalPlaces = value; return this; } public Short getDecimalPlacesGreaterThanOrEqualTo() { return DecimalPlacesGreaterThanOrEqualTo; } public CR_TransQuery setDecimalPlacesGreaterThanOrEqualTo(Short value) { this.DecimalPlacesGreaterThanOrEqualTo = value; return this; } public Short getDecimalPlacesGreaterThan() { return DecimalPlacesGreaterThan; } public CR_TransQuery setDecimalPlacesGreaterThan(Short value) { this.DecimalPlacesGreaterThan = value; return this; } public Short getDecimalPlacesLessThan() { return DecimalPlacesLessThan; } public CR_TransQuery setDecimalPlacesLessThan(Short value) { this.DecimalPlacesLessThan = value; return this; } public Short getDecimalPlacesLessThanOrEqualTo() { return DecimalPlacesLessThanOrEqualTo; } public CR_TransQuery setDecimalPlacesLessThanOrEqualTo(Short value) { this.DecimalPlacesLessThanOrEqualTo = value; return this; } public Short getDecimalPlacesNotEqualTo() { return DecimalPlacesNotEqualTo; } public CR_TransQuery setDecimalPlacesNotEqualTo(Short value) { this.DecimalPlacesNotEqualTo = value; return this; } public ArrayList getDecimalPlacesBetween() { return DecimalPlacesBetween; } public CR_TransQuery setDecimalPlacesBetween(ArrayList value) { this.DecimalPlacesBetween = value; return this; } public ArrayList getDecimalPlacesIn() { return DecimalPlacesIn; } public CR_TransQuery setDecimalPlacesIn(ArrayList value) { this.DecimalPlacesIn = value; return this; } public String getCurrencyID() { return CurrencyID; } public CR_TransQuery setCurrencyID(String value) { this.CurrencyID = value; return this; } public String getCurrencyIDStartsWith() { return CurrencyIDStartsWith; } public CR_TransQuery setCurrencyIDStartsWith(String value) { this.CurrencyIDStartsWith = value; return this; } public String getCurrencyIDEndsWith() { return CurrencyIDEndsWith; } public CR_TransQuery setCurrencyIDEndsWith(String value) { this.CurrencyIDEndsWith = value; return this; } public String getCurrencyIDContains() { return CurrencyIDContains; } public CR_TransQuery setCurrencyIDContains(String value) { this.CurrencyIDContains = value; return this; } public String getCurrencyIDLike() { return CurrencyIDLike; } public CR_TransQuery setCurrencyIDLike(String value) { this.CurrencyIDLike = value; return this; } public ArrayList getCurrencyIDBetween() { return CurrencyIDBetween; } public CR_TransQuery setCurrencyIDBetween(ArrayList value) { this.CurrencyIDBetween = value; return this; } public ArrayList getCurrencyIDIn() { return CurrencyIDIn; } public CR_TransQuery setCurrencyIDIn(ArrayList value) { this.CurrencyIDIn = value; return this; } public String getSource() { return Source; } public CR_TransQuery setSource(String value) { this.Source = value; return this; } public String getSourceStartsWith() { return SourceStartsWith; } public CR_TransQuery setSourceStartsWith(String value) { this.SourceStartsWith = value; return this; } public String getSourceEndsWith() { return SourceEndsWith; } public CR_TransQuery setSourceEndsWith(String value) { this.SourceEndsWith = value; return this; } public String getSourceContains() { return SourceContains; } public CR_TransQuery setSourceContains(String value) { this.SourceContains = value; return this; } public String getSourceLike() { return SourceLike; } public CR_TransQuery setSourceLike(String value) { this.SourceLike = value; return this; } public ArrayList getSourceBetween() { return SourceBetween; } public CR_TransQuery setSourceBetween(ArrayList value) { this.SourceBetween = value; return this; } public ArrayList getSourceIn() { return SourceIn; } public CR_TransQuery setSourceIn(ArrayList value) { this.SourceIn = value; return this; } public String getNote() { return Note; } public CR_TransQuery setNote(String value) { this.Note = value; return this; } public String getNoteStartsWith() { return NoteStartsWith; } public CR_TransQuery setNoteStartsWith(String value) { this.NoteStartsWith = value; return this; } public String getNoteEndsWith() { return NoteEndsWith; } public CR_TransQuery setNoteEndsWith(String value) { this.NoteEndsWith = value; return this; } public String getNoteContains() { return NoteContains; } public CR_TransQuery setNoteContains(String value) { this.NoteContains = value; return this; } public String getNoteLike() { return NoteLike; } public CR_TransQuery setNoteLike(String value) { this.NoteLike = value; return this; } public ArrayList getNoteBetween() { return NoteBetween; } public CR_TransQuery setNoteBetween(ArrayList value) { this.NoteBetween = value; return this; } public ArrayList getNoteIn() { return NoteIn; } public CR_TransQuery setNoteIn(ArrayList value) { this.NoteIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class CR_TransAllocQuery extends QueryDb implements IReturn> { public String AllocID = null; public String AllocIDStartsWith = null; public String AllocIDEndsWith = null; public String AllocIDContains = null; public String AllocIDLike = null; public ArrayList AllocIDBetween = null; public ArrayList AllocIDIn = null; public String CreditorID = null; public String CreditorIDStartsWith = null; public String CreditorIDEndsWith = null; public String CreditorIDContains = null; public String CreditorIDLike = null; public ArrayList CreditorIDBetween = null; public ArrayList CreditorIDIn = null; public String DebitTransID = null; public String DebitTransIDStartsWith = null; public String DebitTransIDEndsWith = null; public String DebitTransIDContains = null; public String DebitTransIDLike = null; public ArrayList DebitTransIDBetween = null; public ArrayList DebitTransIDIn = null; public String CreditTransID = null; public String CreditTransIDStartsWith = null; public String CreditTransIDEndsWith = null; public String CreditTransIDContains = null; public String CreditTransIDLike = null; public ArrayList CreditTransIDBetween = null; public ArrayList CreditTransIDIn = null; public BigDecimal FXAmount = null; public BigDecimal FXAmountGreaterThanOrEqualTo = null; public BigDecimal FXAmountGreaterThan = null; public BigDecimal FXAmountLessThan = null; public BigDecimal FXAmountLessThanOrEqualTo = null; public BigDecimal FXAmountNotEqualTo = null; public ArrayList FXAmountBetween = null; public ArrayList FXAmountIn = null; public BigDecimal DebitAmount = null; public BigDecimal DebitAmountGreaterThanOrEqualTo = null; public BigDecimal DebitAmountGreaterThan = null; public BigDecimal DebitAmountLessThan = null; public BigDecimal DebitAmountLessThanOrEqualTo = null; public BigDecimal DebitAmountNotEqualTo = null; public ArrayList DebitAmountBetween = null; public ArrayList DebitAmountIn = null; public BigDecimal CreditAmount = null; public BigDecimal CreditAmountGreaterThanOrEqualTo = null; public BigDecimal CreditAmountGreaterThan = null; public BigDecimal CreditAmountLessThan = null; public BigDecimal CreditAmountLessThanOrEqualTo = null; public BigDecimal CreditAmountNotEqualTo = null; public ArrayList CreditAmountBetween = null; public ArrayList CreditAmountIn = null; public Boolean DebitAged = null; public Boolean CreditAged = null; public Date DateAlloc = null; public Date DateAllocGreaterThanOrEqualTo = null; public Date DateAllocGreaterThan = null; public Date DateAllocLessThan = null; public Date DateAllocLessThanOrEqualTo = null; public Date DateAllocNotEqualTo = null; public ArrayList DateAllocBetween = null; public ArrayList DateAllocIn = null; public Integer Version = null; public Integer VersionGreaterThanOrEqualTo = null; public Integer VersionGreaterThan = null; public Integer VersionLessThan = null; public Integer VersionLessThanOrEqualTo = null; public Integer VersionNotEqualTo = null; public ArrayList VersionBetween = null; public ArrayList VersionIn = null; public String getAllocID() { return AllocID; } public CR_TransAllocQuery setAllocID(String value) { this.AllocID = value; return this; } public String getAllocIDStartsWith() { return AllocIDStartsWith; } public CR_TransAllocQuery setAllocIDStartsWith(String value) { this.AllocIDStartsWith = value; return this; } public String getAllocIDEndsWith() { return AllocIDEndsWith; } public CR_TransAllocQuery setAllocIDEndsWith(String value) { this.AllocIDEndsWith = value; return this; } public String getAllocIDContains() { return AllocIDContains; } public CR_TransAllocQuery setAllocIDContains(String value) { this.AllocIDContains = value; return this; } public String getAllocIDLike() { return AllocIDLike; } public CR_TransAllocQuery setAllocIDLike(String value) { this.AllocIDLike = value; return this; } public ArrayList getAllocIDBetween() { return AllocIDBetween; } public CR_TransAllocQuery setAllocIDBetween(ArrayList value) { this.AllocIDBetween = value; return this; } public ArrayList getAllocIDIn() { return AllocIDIn; } public CR_TransAllocQuery setAllocIDIn(ArrayList value) { this.AllocIDIn = value; return this; } public String getCreditorID() { return CreditorID; } public CR_TransAllocQuery setCreditorID(String value) { this.CreditorID = value; return this; } public String getCreditorIDStartsWith() { return CreditorIDStartsWith; } public CR_TransAllocQuery setCreditorIDStartsWith(String value) { this.CreditorIDStartsWith = value; return this; } public String getCreditorIDEndsWith() { return CreditorIDEndsWith; } public CR_TransAllocQuery setCreditorIDEndsWith(String value) { this.CreditorIDEndsWith = value; return this; } public String getCreditorIDContains() { return CreditorIDContains; } public CR_TransAllocQuery setCreditorIDContains(String value) { this.CreditorIDContains = value; return this; } public String getCreditorIDLike() { return CreditorIDLike; } public CR_TransAllocQuery setCreditorIDLike(String value) { this.CreditorIDLike = value; return this; } public ArrayList getCreditorIDBetween() { return CreditorIDBetween; } public CR_TransAllocQuery setCreditorIDBetween(ArrayList value) { this.CreditorIDBetween = value; return this; } public ArrayList getCreditorIDIn() { return CreditorIDIn; } public CR_TransAllocQuery setCreditorIDIn(ArrayList value) { this.CreditorIDIn = value; return this; } public String getDebitTransID() { return DebitTransID; } public CR_TransAllocQuery setDebitTransID(String value) { this.DebitTransID = value; return this; } public String getDebitTransIDStartsWith() { return DebitTransIDStartsWith; } public CR_TransAllocQuery setDebitTransIDStartsWith(String value) { this.DebitTransIDStartsWith = value; return this; } public String getDebitTransIDEndsWith() { return DebitTransIDEndsWith; } public CR_TransAllocQuery setDebitTransIDEndsWith(String value) { this.DebitTransIDEndsWith = value; return this; } public String getDebitTransIDContains() { return DebitTransIDContains; } public CR_TransAllocQuery setDebitTransIDContains(String value) { this.DebitTransIDContains = value; return this; } public String getDebitTransIDLike() { return DebitTransIDLike; } public CR_TransAllocQuery setDebitTransIDLike(String value) { this.DebitTransIDLike = value; return this; } public ArrayList getDebitTransIDBetween() { return DebitTransIDBetween; } public CR_TransAllocQuery setDebitTransIDBetween(ArrayList value) { this.DebitTransIDBetween = value; return this; } public ArrayList getDebitTransIDIn() { return DebitTransIDIn; } public CR_TransAllocQuery setDebitTransIDIn(ArrayList value) { this.DebitTransIDIn = value; return this; } public String getCreditTransID() { return CreditTransID; } public CR_TransAllocQuery setCreditTransID(String value) { this.CreditTransID = value; return this; } public String getCreditTransIDStartsWith() { return CreditTransIDStartsWith; } public CR_TransAllocQuery setCreditTransIDStartsWith(String value) { this.CreditTransIDStartsWith = value; return this; } public String getCreditTransIDEndsWith() { return CreditTransIDEndsWith; } public CR_TransAllocQuery setCreditTransIDEndsWith(String value) { this.CreditTransIDEndsWith = value; return this; } public String getCreditTransIDContains() { return CreditTransIDContains; } public CR_TransAllocQuery setCreditTransIDContains(String value) { this.CreditTransIDContains = value; return this; } public String getCreditTransIDLike() { return CreditTransIDLike; } public CR_TransAllocQuery setCreditTransIDLike(String value) { this.CreditTransIDLike = value; return this; } public ArrayList getCreditTransIDBetween() { return CreditTransIDBetween; } public CR_TransAllocQuery setCreditTransIDBetween(ArrayList value) { this.CreditTransIDBetween = value; return this; } public ArrayList getCreditTransIDIn() { return CreditTransIDIn; } public CR_TransAllocQuery setCreditTransIDIn(ArrayList value) { this.CreditTransIDIn = value; return this; } public BigDecimal getFxAmount() { return FXAmount; } public CR_TransAllocQuery setFxAmount(BigDecimal value) { this.FXAmount = value; return this; } public BigDecimal getFxAmountGreaterThanOrEqualTo() { return FXAmountGreaterThanOrEqualTo; } public CR_TransAllocQuery setFxAmountGreaterThanOrEqualTo(BigDecimal value) { this.FXAmountGreaterThanOrEqualTo = value; return this; } public BigDecimal getFxAmountGreaterThan() { return FXAmountGreaterThan; } public CR_TransAllocQuery setFxAmountGreaterThan(BigDecimal value) { this.FXAmountGreaterThan = value; return this; } public BigDecimal getFxAmountLessThan() { return FXAmountLessThan; } public CR_TransAllocQuery setFxAmountLessThan(BigDecimal value) { this.FXAmountLessThan = value; return this; } public BigDecimal getFxAmountLessThanOrEqualTo() { return FXAmountLessThanOrEqualTo; } public CR_TransAllocQuery setFxAmountLessThanOrEqualTo(BigDecimal value) { this.FXAmountLessThanOrEqualTo = value; return this; } public BigDecimal getFxAmountNotEqualTo() { return FXAmountNotEqualTo; } public CR_TransAllocQuery setFxAmountNotEqualTo(BigDecimal value) { this.FXAmountNotEqualTo = value; return this; } public ArrayList getFxAmountBetween() { return FXAmountBetween; } public CR_TransAllocQuery setFxAmountBetween(ArrayList value) { this.FXAmountBetween = value; return this; } public ArrayList getFxAmountIn() { return FXAmountIn; } public CR_TransAllocQuery setFxAmountIn(ArrayList value) { this.FXAmountIn = value; return this; } public BigDecimal getDebitAmount() { return DebitAmount; } public CR_TransAllocQuery setDebitAmount(BigDecimal value) { this.DebitAmount = value; return this; } public BigDecimal getDebitAmountGreaterThanOrEqualTo() { return DebitAmountGreaterThanOrEqualTo; } public CR_TransAllocQuery setDebitAmountGreaterThanOrEqualTo(BigDecimal value) { this.DebitAmountGreaterThanOrEqualTo = value; return this; } public BigDecimal getDebitAmountGreaterThan() { return DebitAmountGreaterThan; } public CR_TransAllocQuery setDebitAmountGreaterThan(BigDecimal value) { this.DebitAmountGreaterThan = value; return this; } public BigDecimal getDebitAmountLessThan() { return DebitAmountLessThan; } public CR_TransAllocQuery setDebitAmountLessThan(BigDecimal value) { this.DebitAmountLessThan = value; return this; } public BigDecimal getDebitAmountLessThanOrEqualTo() { return DebitAmountLessThanOrEqualTo; } public CR_TransAllocQuery setDebitAmountLessThanOrEqualTo(BigDecimal value) { this.DebitAmountLessThanOrEqualTo = value; return this; } public BigDecimal getDebitAmountNotEqualTo() { return DebitAmountNotEqualTo; } public CR_TransAllocQuery setDebitAmountNotEqualTo(BigDecimal value) { this.DebitAmountNotEqualTo = value; return this; } public ArrayList getDebitAmountBetween() { return DebitAmountBetween; } public CR_TransAllocQuery setDebitAmountBetween(ArrayList value) { this.DebitAmountBetween = value; return this; } public ArrayList getDebitAmountIn() { return DebitAmountIn; } public CR_TransAllocQuery setDebitAmountIn(ArrayList value) { this.DebitAmountIn = value; return this; } public BigDecimal getCreditAmount() { return CreditAmount; } public CR_TransAllocQuery setCreditAmount(BigDecimal value) { this.CreditAmount = value; return this; } public BigDecimal getCreditAmountGreaterThanOrEqualTo() { return CreditAmountGreaterThanOrEqualTo; } public CR_TransAllocQuery setCreditAmountGreaterThanOrEqualTo(BigDecimal value) { this.CreditAmountGreaterThanOrEqualTo = value; return this; } public BigDecimal getCreditAmountGreaterThan() { return CreditAmountGreaterThan; } public CR_TransAllocQuery setCreditAmountGreaterThan(BigDecimal value) { this.CreditAmountGreaterThan = value; return this; } public BigDecimal getCreditAmountLessThan() { return CreditAmountLessThan; } public CR_TransAllocQuery setCreditAmountLessThan(BigDecimal value) { this.CreditAmountLessThan = value; return this; } public BigDecimal getCreditAmountLessThanOrEqualTo() { return CreditAmountLessThanOrEqualTo; } public CR_TransAllocQuery setCreditAmountLessThanOrEqualTo(BigDecimal value) { this.CreditAmountLessThanOrEqualTo = value; return this; } public BigDecimal getCreditAmountNotEqualTo() { return CreditAmountNotEqualTo; } public CR_TransAllocQuery setCreditAmountNotEqualTo(BigDecimal value) { this.CreditAmountNotEqualTo = value; return this; } public ArrayList getCreditAmountBetween() { return CreditAmountBetween; } public CR_TransAllocQuery setCreditAmountBetween(ArrayList value) { this.CreditAmountBetween = value; return this; } public ArrayList getCreditAmountIn() { return CreditAmountIn; } public CR_TransAllocQuery setCreditAmountIn(ArrayList value) { this.CreditAmountIn = value; return this; } public Boolean isDebitAged() { return DebitAged; } public CR_TransAllocQuery setDebitAged(Boolean value) { this.DebitAged = value; return this; } public Boolean isCreditAged() { return CreditAged; } public CR_TransAllocQuery setCreditAged(Boolean value) { this.CreditAged = value; return this; } public Date getDateAlloc() { return DateAlloc; } public CR_TransAllocQuery setDateAlloc(Date value) { this.DateAlloc = value; return this; } public Date getDateAllocGreaterThanOrEqualTo() { return DateAllocGreaterThanOrEqualTo; } public CR_TransAllocQuery setDateAllocGreaterThanOrEqualTo(Date value) { this.DateAllocGreaterThanOrEqualTo = value; return this; } public Date getDateAllocGreaterThan() { return DateAllocGreaterThan; } public CR_TransAllocQuery setDateAllocGreaterThan(Date value) { this.DateAllocGreaterThan = value; return this; } public Date getDateAllocLessThan() { return DateAllocLessThan; } public CR_TransAllocQuery setDateAllocLessThan(Date value) { this.DateAllocLessThan = value; return this; } public Date getDateAllocLessThanOrEqualTo() { return DateAllocLessThanOrEqualTo; } public CR_TransAllocQuery setDateAllocLessThanOrEqualTo(Date value) { this.DateAllocLessThanOrEqualTo = value; return this; } public Date getDateAllocNotEqualTo() { return DateAllocNotEqualTo; } public CR_TransAllocQuery setDateAllocNotEqualTo(Date value) { this.DateAllocNotEqualTo = value; return this; } public ArrayList getDateAllocBetween() { return DateAllocBetween; } public CR_TransAllocQuery setDateAllocBetween(ArrayList value) { this.DateAllocBetween = value; return this; } public ArrayList getDateAllocIn() { return DateAllocIn; } public CR_TransAllocQuery setDateAllocIn(ArrayList value) { this.DateAllocIn = value; return this; } public Integer getVersion() { return Version; } public CR_TransAllocQuery setVersion(Integer value) { this.Version = value; return this; } public Integer getVersionGreaterThanOrEqualTo() { return VersionGreaterThanOrEqualTo; } public CR_TransAllocQuery setVersionGreaterThanOrEqualTo(Integer value) { this.VersionGreaterThanOrEqualTo = value; return this; } public Integer getVersionGreaterThan() { return VersionGreaterThan; } public CR_TransAllocQuery setVersionGreaterThan(Integer value) { this.VersionGreaterThan = value; return this; } public Integer getVersionLessThan() { return VersionLessThan; } public CR_TransAllocQuery setVersionLessThan(Integer value) { this.VersionLessThan = value; return this; } public Integer getVersionLessThanOrEqualTo() { return VersionLessThanOrEqualTo; } public CR_TransAllocQuery setVersionLessThanOrEqualTo(Integer value) { this.VersionLessThanOrEqualTo = value; return this; } public Integer getVersionNotEqualTo() { return VersionNotEqualTo; } public CR_TransAllocQuery setVersionNotEqualTo(Integer value) { this.VersionNotEqualTo = value; return this; } public ArrayList getVersionBetween() { return VersionBetween; } public CR_TransAllocQuery setVersionBetween(ArrayList value) { this.VersionBetween = value; return this; } public ArrayList getVersionIn() { return VersionIn; } public CR_TransAllocQuery setVersionIn(ArrayList value) { this.VersionIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class CR_TransCustomFieldsQuery extends QueryDb implements IReturn> { public String RecID = null; public String RecIDStartsWith = null; public String RecIDEndsWith = null; public String RecIDContains = null; public String RecIDLike = null; public ArrayList RecIDBetween = null; public ArrayList RecIDIn = null; public String SettingName = null; public String SettingNameStartsWith = null; public String SettingNameEndsWith = null; public String SettingNameContains = null; public String SettingNameLike = null; public ArrayList SettingNameBetween = null; public ArrayList SettingNameIn = null; public String SettingDescription = null; public String SettingDescriptionStartsWith = null; public String SettingDescriptionEndsWith = null; public String SettingDescriptionContains = null; public String SettingDescriptionLike = null; public ArrayList SettingDescriptionBetween = null; public ArrayList SettingDescriptionIn = null; public Integer CellType = null; public Integer CellTypeGreaterThanOrEqualTo = null; public Integer CellTypeGreaterThan = null; public Integer CellTypeLessThan = null; public Integer CellTypeLessThanOrEqualTo = null; public Integer CellTypeNotEqualTo = null; public ArrayList CellTypeBetween = null; public ArrayList CellTypeIn = null; public String FieldParameter = null; public String FieldParameterStartsWith = null; public String FieldParameterEndsWith = null; public String FieldParameterContains = null; public String FieldParameterLike = null; public ArrayList FieldParameterBetween = null; public ArrayList FieldParameterIn = null; public UUID SY_Plugin_RecID = null; public ArrayList SY_Plugin_RecIDIn = null; public Date LastSavedDateTime = null; public Date LastSavedDateTimeGreaterThanOrEqualTo = null; public Date LastSavedDateTimeGreaterThan = null; public Date LastSavedDateTimeLessThan = null; public Date LastSavedDateTimeLessThanOrEqualTo = null; public Date LastSavedDateTimeNotEqualTo = null; public ArrayList LastSavedDateTimeBetween = null; public ArrayList LastSavedDateTimeIn = null; public Integer DisplayOrder = null; public Integer DisplayOrderGreaterThanOrEqualTo = null; public Integer DisplayOrderGreaterThan = null; public Integer DisplayOrderLessThan = null; public Integer DisplayOrderLessThanOrEqualTo = null; public Integer DisplayOrderNotEqualTo = null; public ArrayList DisplayOrderBetween = null; public ArrayList DisplayOrderIn = null; public String getRecID() { return RecID; } public CR_TransCustomFieldsQuery setRecID(String value) { this.RecID = value; return this; } public String getRecIDStartsWith() { return RecIDStartsWith; } public CR_TransCustomFieldsQuery setRecIDStartsWith(String value) { this.RecIDStartsWith = value; return this; } public String getRecIDEndsWith() { return RecIDEndsWith; } public CR_TransCustomFieldsQuery setRecIDEndsWith(String value) { this.RecIDEndsWith = value; return this; } public String getRecIDContains() { return RecIDContains; } public CR_TransCustomFieldsQuery setRecIDContains(String value) { this.RecIDContains = value; return this; } public String getRecIDLike() { return RecIDLike; } public CR_TransCustomFieldsQuery setRecIDLike(String value) { this.RecIDLike = value; return this; } public ArrayList getRecIDBetween() { return RecIDBetween; } public CR_TransCustomFieldsQuery setRecIDBetween(ArrayList value) { this.RecIDBetween = value; return this; } public ArrayList getRecIDIn() { return RecIDIn; } public CR_TransCustomFieldsQuery setRecIDIn(ArrayList value) { this.RecIDIn = value; return this; } public String getSettingName() { return SettingName; } public CR_TransCustomFieldsQuery setSettingName(String value) { this.SettingName = value; return this; } public String getSettingNameStartsWith() { return SettingNameStartsWith; } public CR_TransCustomFieldsQuery setSettingNameStartsWith(String value) { this.SettingNameStartsWith = value; return this; } public String getSettingNameEndsWith() { return SettingNameEndsWith; } public CR_TransCustomFieldsQuery setSettingNameEndsWith(String value) { this.SettingNameEndsWith = value; return this; } public String getSettingNameContains() { return SettingNameContains; } public CR_TransCustomFieldsQuery setSettingNameContains(String value) { this.SettingNameContains = value; return this; } public String getSettingNameLike() { return SettingNameLike; } public CR_TransCustomFieldsQuery setSettingNameLike(String value) { this.SettingNameLike = value; return this; } public ArrayList getSettingNameBetween() { return SettingNameBetween; } public CR_TransCustomFieldsQuery setSettingNameBetween(ArrayList value) { this.SettingNameBetween = value; return this; } public ArrayList getSettingNameIn() { return SettingNameIn; } public CR_TransCustomFieldsQuery setSettingNameIn(ArrayList value) { this.SettingNameIn = value; return this; } public String getSettingDescription() { return SettingDescription; } public CR_TransCustomFieldsQuery setSettingDescription(String value) { this.SettingDescription = value; return this; } public String getSettingDescriptionStartsWith() { return SettingDescriptionStartsWith; } public CR_TransCustomFieldsQuery setSettingDescriptionStartsWith(String value) { this.SettingDescriptionStartsWith = value; return this; } public String getSettingDescriptionEndsWith() { return SettingDescriptionEndsWith; } public CR_TransCustomFieldsQuery setSettingDescriptionEndsWith(String value) { this.SettingDescriptionEndsWith = value; return this; } public String getSettingDescriptionContains() { return SettingDescriptionContains; } public CR_TransCustomFieldsQuery setSettingDescriptionContains(String value) { this.SettingDescriptionContains = value; return this; } public String getSettingDescriptionLike() { return SettingDescriptionLike; } public CR_TransCustomFieldsQuery setSettingDescriptionLike(String value) { this.SettingDescriptionLike = value; return this; } public ArrayList getSettingDescriptionBetween() { return SettingDescriptionBetween; } public CR_TransCustomFieldsQuery setSettingDescriptionBetween(ArrayList value) { this.SettingDescriptionBetween = value; return this; } public ArrayList getSettingDescriptionIn() { return SettingDescriptionIn; } public CR_TransCustomFieldsQuery setSettingDescriptionIn(ArrayList value) { this.SettingDescriptionIn = value; return this; } public Integer getCellType() { return CellType; } public CR_TransCustomFieldsQuery setCellType(Integer value) { this.CellType = value; return this; } public Integer getCellTypeGreaterThanOrEqualTo() { return CellTypeGreaterThanOrEqualTo; } public CR_TransCustomFieldsQuery setCellTypeGreaterThanOrEqualTo(Integer value) { this.CellTypeGreaterThanOrEqualTo = value; return this; } public Integer getCellTypeGreaterThan() { return CellTypeGreaterThan; } public CR_TransCustomFieldsQuery setCellTypeGreaterThan(Integer value) { this.CellTypeGreaterThan = value; return this; } public Integer getCellTypeLessThan() { return CellTypeLessThan; } public CR_TransCustomFieldsQuery setCellTypeLessThan(Integer value) { this.CellTypeLessThan = value; return this; } public Integer getCellTypeLessThanOrEqualTo() { return CellTypeLessThanOrEqualTo; } public CR_TransCustomFieldsQuery setCellTypeLessThanOrEqualTo(Integer value) { this.CellTypeLessThanOrEqualTo = value; return this; } public Integer getCellTypeNotEqualTo() { return CellTypeNotEqualTo; } public CR_TransCustomFieldsQuery setCellTypeNotEqualTo(Integer value) { this.CellTypeNotEqualTo = value; return this; } public ArrayList getCellTypeBetween() { return CellTypeBetween; } public CR_TransCustomFieldsQuery setCellTypeBetween(ArrayList value) { this.CellTypeBetween = value; return this; } public ArrayList getCellTypeIn() { return CellTypeIn; } public CR_TransCustomFieldsQuery setCellTypeIn(ArrayList value) { this.CellTypeIn = value; return this; } public String getFieldParameter() { return FieldParameter; } public CR_TransCustomFieldsQuery setFieldParameter(String value) { this.FieldParameter = value; return this; } public String getFieldParameterStartsWith() { return FieldParameterStartsWith; } public CR_TransCustomFieldsQuery setFieldParameterStartsWith(String value) { this.FieldParameterStartsWith = value; return this; } public String getFieldParameterEndsWith() { return FieldParameterEndsWith; } public CR_TransCustomFieldsQuery setFieldParameterEndsWith(String value) { this.FieldParameterEndsWith = value; return this; } public String getFieldParameterContains() { return FieldParameterContains; } public CR_TransCustomFieldsQuery setFieldParameterContains(String value) { this.FieldParameterContains = value; return this; } public String getFieldParameterLike() { return FieldParameterLike; } public CR_TransCustomFieldsQuery setFieldParameterLike(String value) { this.FieldParameterLike = value; return this; } public ArrayList getFieldParameterBetween() { return FieldParameterBetween; } public CR_TransCustomFieldsQuery setFieldParameterBetween(ArrayList value) { this.FieldParameterBetween = value; return this; } public ArrayList getFieldParameterIn() { return FieldParameterIn; } public CR_TransCustomFieldsQuery setFieldParameterIn(ArrayList value) { this.FieldParameterIn = value; return this; } public UUID getSyPluginRecID() { return SY_Plugin_RecID; } public CR_TransCustomFieldsQuery setSyPluginRecID(UUID value) { this.SY_Plugin_RecID = value; return this; } public ArrayList getSyPluginRecIDIn() { return SY_Plugin_RecIDIn; } public CR_TransCustomFieldsQuery setSyPluginRecIDIn(ArrayList value) { this.SY_Plugin_RecIDIn = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public CR_TransCustomFieldsQuery setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getLastSavedDateTimeGreaterThanOrEqualTo() { return LastSavedDateTimeGreaterThanOrEqualTo; } public CR_TransCustomFieldsQuery setLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.LastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeGreaterThan() { return LastSavedDateTimeGreaterThan; } public CR_TransCustomFieldsQuery setLastSavedDateTimeGreaterThan(Date value) { this.LastSavedDateTimeGreaterThan = value; return this; } public Date getLastSavedDateTimeLessThan() { return LastSavedDateTimeLessThan; } public CR_TransCustomFieldsQuery setLastSavedDateTimeLessThan(Date value) { this.LastSavedDateTimeLessThan = value; return this; } public Date getLastSavedDateTimeLessThanOrEqualTo() { return LastSavedDateTimeLessThanOrEqualTo; } public CR_TransCustomFieldsQuery setLastSavedDateTimeLessThanOrEqualTo(Date value) { this.LastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeNotEqualTo() { return LastSavedDateTimeNotEqualTo; } public CR_TransCustomFieldsQuery setLastSavedDateTimeNotEqualTo(Date value) { this.LastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getLastSavedDateTimeBetween() { return LastSavedDateTimeBetween; } public CR_TransCustomFieldsQuery setLastSavedDateTimeBetween(ArrayList value) { this.LastSavedDateTimeBetween = value; return this; } public ArrayList getLastSavedDateTimeIn() { return LastSavedDateTimeIn; } public CR_TransCustomFieldsQuery setLastSavedDateTimeIn(ArrayList value) { this.LastSavedDateTimeIn = value; return this; } public Integer getDisplayOrder() { return DisplayOrder; } public CR_TransCustomFieldsQuery setDisplayOrder(Integer value) { this.DisplayOrder = value; return this; } public Integer getDisplayOrderGreaterThanOrEqualTo() { return DisplayOrderGreaterThanOrEqualTo; } public CR_TransCustomFieldsQuery setDisplayOrderGreaterThanOrEqualTo(Integer value) { this.DisplayOrderGreaterThanOrEqualTo = value; return this; } public Integer getDisplayOrderGreaterThan() { return DisplayOrderGreaterThan; } public CR_TransCustomFieldsQuery setDisplayOrderGreaterThan(Integer value) { this.DisplayOrderGreaterThan = value; return this; } public Integer getDisplayOrderLessThan() { return DisplayOrderLessThan; } public CR_TransCustomFieldsQuery setDisplayOrderLessThan(Integer value) { this.DisplayOrderLessThan = value; return this; } public Integer getDisplayOrderLessThanOrEqualTo() { return DisplayOrderLessThanOrEqualTo; } public CR_TransCustomFieldsQuery setDisplayOrderLessThanOrEqualTo(Integer value) { this.DisplayOrderLessThanOrEqualTo = value; return this; } public Integer getDisplayOrderNotEqualTo() { return DisplayOrderNotEqualTo; } public CR_TransCustomFieldsQuery setDisplayOrderNotEqualTo(Integer value) { this.DisplayOrderNotEqualTo = value; return this; } public ArrayList getDisplayOrderBetween() { return DisplayOrderBetween; } public CR_TransCustomFieldsQuery setDisplayOrderBetween(ArrayList value) { this.DisplayOrderBetween = value; return this; } public ArrayList getDisplayOrderIn() { return DisplayOrderIn; } public CR_TransCustomFieldsQuery setDisplayOrderIn(ArrayList value) { this.DisplayOrderIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class CR_TransCustomFieldValuesQuery extends QueryDb implements IReturn> { public String RecID = null; public String RecIDStartsWith = null; public String RecIDEndsWith = null; public String RecIDContains = null; public String RecIDLike = null; public ArrayList RecIDBetween = null; public ArrayList RecIDIn = null; public String CR_Trans_TransID = null; public String CR_Trans_TransIDStartsWith = null; public String CR_Trans_TransIDEndsWith = null; public String CR_Trans_TransIDContains = null; public String CR_Trans_TransIDLike = null; public ArrayList CR_Trans_TransIDBetween = null; public ArrayList CR_Trans_TransIDIn = null; public String CR_TransCustomFields_RecID = null; public String CR_TransCustomFields_RecIDStartsWith = null; public String CR_TransCustomFields_RecIDEndsWith = null; public String CR_TransCustomFields_RecIDContains = null; public String CR_TransCustomFields_RecIDLike = null; public ArrayList CR_TransCustomFields_RecIDBetween = null; public ArrayList CR_TransCustomFields_RecIDIn = null; public String Contents = null; public String ContentsStartsWith = null; public String ContentsEndsWith = null; public String ContentsContains = null; public String ContentsLike = null; public ArrayList ContentsBetween = null; public ArrayList ContentsIn = null; public Date LastSavedDateTime = null; public Date LastSavedDateTimeGreaterThanOrEqualTo = null; public Date LastSavedDateTimeGreaterThan = null; public Date LastSavedDateTimeLessThan = null; public Date LastSavedDateTimeLessThanOrEqualTo = null; public Date LastSavedDateTimeNotEqualTo = null; public ArrayList LastSavedDateTimeBetween = null; public ArrayList LastSavedDateTimeIn = null; public String getRecID() { return RecID; } public CR_TransCustomFieldValuesQuery setRecID(String value) { this.RecID = value; return this; } public String getRecIDStartsWith() { return RecIDStartsWith; } public CR_TransCustomFieldValuesQuery setRecIDStartsWith(String value) { this.RecIDStartsWith = value; return this; } public String getRecIDEndsWith() { return RecIDEndsWith; } public CR_TransCustomFieldValuesQuery setRecIDEndsWith(String value) { this.RecIDEndsWith = value; return this; } public String getRecIDContains() { return RecIDContains; } public CR_TransCustomFieldValuesQuery setRecIDContains(String value) { this.RecIDContains = value; return this; } public String getRecIDLike() { return RecIDLike; } public CR_TransCustomFieldValuesQuery setRecIDLike(String value) { this.RecIDLike = value; return this; } public ArrayList getRecIDBetween() { return RecIDBetween; } public CR_TransCustomFieldValuesQuery setRecIDBetween(ArrayList value) { this.RecIDBetween = value; return this; } public ArrayList getRecIDIn() { return RecIDIn; } public CR_TransCustomFieldValuesQuery setRecIDIn(ArrayList value) { this.RecIDIn = value; return this; } public String getCrTransTransID() { return CR_Trans_TransID; } public CR_TransCustomFieldValuesQuery setCrTransTransID(String value) { this.CR_Trans_TransID = value; return this; } public String getCrTransTransIDStartsWith() { return CR_Trans_TransIDStartsWith; } public CR_TransCustomFieldValuesQuery setCrTransTransIDStartsWith(String value) { this.CR_Trans_TransIDStartsWith = value; return this; } public String getCrTransTransIDEndsWith() { return CR_Trans_TransIDEndsWith; } public CR_TransCustomFieldValuesQuery setCrTransTransIDEndsWith(String value) { this.CR_Trans_TransIDEndsWith = value; return this; } public String getCrTransTransIDContains() { return CR_Trans_TransIDContains; } public CR_TransCustomFieldValuesQuery setCrTransTransIDContains(String value) { this.CR_Trans_TransIDContains = value; return this; } public String getCrTransTransIDLike() { return CR_Trans_TransIDLike; } public CR_TransCustomFieldValuesQuery setCrTransTransIDLike(String value) { this.CR_Trans_TransIDLike = value; return this; } public ArrayList getCrTransTransIDBetween() { return CR_Trans_TransIDBetween; } public CR_TransCustomFieldValuesQuery setCrTransTransIDBetween(ArrayList value) { this.CR_Trans_TransIDBetween = value; return this; } public ArrayList getCrTransTransIDIn() { return CR_Trans_TransIDIn; } public CR_TransCustomFieldValuesQuery setCrTransTransIDIn(ArrayList value) { this.CR_Trans_TransIDIn = value; return this; } public String getCrTransCustomFieldsRecID() { return CR_TransCustomFields_RecID; } public CR_TransCustomFieldValuesQuery setCrTransCustomFieldsRecID(String value) { this.CR_TransCustomFields_RecID = value; return this; } public String getCrTransCustomFieldsRecIDStartsWith() { return CR_TransCustomFields_RecIDStartsWith; } public CR_TransCustomFieldValuesQuery setCrTransCustomFieldsRecIDStartsWith(String value) { this.CR_TransCustomFields_RecIDStartsWith = value; return this; } public String getCrTransCustomFieldsRecIDEndsWith() { return CR_TransCustomFields_RecIDEndsWith; } public CR_TransCustomFieldValuesQuery setCrTransCustomFieldsRecIDEndsWith(String value) { this.CR_TransCustomFields_RecIDEndsWith = value; return this; } public String getCrTransCustomFieldsRecIDContains() { return CR_TransCustomFields_RecIDContains; } public CR_TransCustomFieldValuesQuery setCrTransCustomFieldsRecIDContains(String value) { this.CR_TransCustomFields_RecIDContains = value; return this; } public String getCrTransCustomFieldsRecIDLike() { return CR_TransCustomFields_RecIDLike; } public CR_TransCustomFieldValuesQuery setCrTransCustomFieldsRecIDLike(String value) { this.CR_TransCustomFields_RecIDLike = value; return this; } public ArrayList getCrTransCustomFieldsRecIDBetween() { return CR_TransCustomFields_RecIDBetween; } public CR_TransCustomFieldValuesQuery setCrTransCustomFieldsRecIDBetween(ArrayList value) { this.CR_TransCustomFields_RecIDBetween = value; return this; } public ArrayList getCrTransCustomFieldsRecIDIn() { return CR_TransCustomFields_RecIDIn; } public CR_TransCustomFieldValuesQuery setCrTransCustomFieldsRecIDIn(ArrayList value) { this.CR_TransCustomFields_RecIDIn = value; return this; } public String getContents() { return Contents; } public CR_TransCustomFieldValuesQuery setContents(String value) { this.Contents = value; return this; } public String getContentsStartsWith() { return ContentsStartsWith; } public CR_TransCustomFieldValuesQuery setContentsStartsWith(String value) { this.ContentsStartsWith = value; return this; } public String getContentsEndsWith() { return ContentsEndsWith; } public CR_TransCustomFieldValuesQuery setContentsEndsWith(String value) { this.ContentsEndsWith = value; return this; } public String getContentsContains() { return ContentsContains; } public CR_TransCustomFieldValuesQuery setContentsContains(String value) { this.ContentsContains = value; return this; } public String getContentsLike() { return ContentsLike; } public CR_TransCustomFieldValuesQuery setContentsLike(String value) { this.ContentsLike = value; return this; } public ArrayList getContentsBetween() { return ContentsBetween; } public CR_TransCustomFieldValuesQuery setContentsBetween(ArrayList value) { this.ContentsBetween = value; return this; } public ArrayList getContentsIn() { return ContentsIn; } public CR_TransCustomFieldValuesQuery setContentsIn(ArrayList value) { this.ContentsIn = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public CR_TransCustomFieldValuesQuery setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getLastSavedDateTimeGreaterThanOrEqualTo() { return LastSavedDateTimeGreaterThanOrEqualTo; } public CR_TransCustomFieldValuesQuery setLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.LastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeGreaterThan() { return LastSavedDateTimeGreaterThan; } public CR_TransCustomFieldValuesQuery setLastSavedDateTimeGreaterThan(Date value) { this.LastSavedDateTimeGreaterThan = value; return this; } public Date getLastSavedDateTimeLessThan() { return LastSavedDateTimeLessThan; } public CR_TransCustomFieldValuesQuery setLastSavedDateTimeLessThan(Date value) { this.LastSavedDateTimeLessThan = value; return this; } public Date getLastSavedDateTimeLessThanOrEqualTo() { return LastSavedDateTimeLessThanOrEqualTo; } public CR_TransCustomFieldValuesQuery setLastSavedDateTimeLessThanOrEqualTo(Date value) { this.LastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeNotEqualTo() { return LastSavedDateTimeNotEqualTo; } public CR_TransCustomFieldValuesQuery setLastSavedDateTimeNotEqualTo(Date value) { this.LastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getLastSavedDateTimeBetween() { return LastSavedDateTimeBetween; } public CR_TransCustomFieldValuesQuery setLastSavedDateTimeBetween(ArrayList value) { this.LastSavedDateTimeBetween = value; return this; } public ArrayList getLastSavedDateTimeIn() { return LastSavedDateTimeIn; } public CR_TransCustomFieldValuesQuery setLastSavedDateTimeIn(ArrayList value) { this.LastSavedDateTimeIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @Route(Path="/Queries/CR_Warehouse", Verbs="GET") @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class CR_WarehouseQuery extends QueryDb implements IReturn> { public String WarehouseID = null; public String WarehouseIDStartsWith = null; public String WarehouseIDEndsWith = null; public String WarehouseIDContains = null; public String WarehouseIDLike = null; public ArrayList WarehouseIDBetween = null; public ArrayList WarehouseIDIn = null; public String CreditorID = null; public String CreditorIDStartsWith = null; public String CreditorIDEndsWith = null; public String CreditorIDContains = null; public String CreditorIDLike = null; public ArrayList CreditorIDBetween = null; public ArrayList CreditorIDIn = null; public String Description = null; public String DescriptionStartsWith = null; public String DescriptionEndsWith = null; public String DescriptionContains = null; public String DescriptionLike = null; public ArrayList DescriptionBetween = null; public ArrayList DescriptionIn = null; public String Address1 = null; public String Address1StartsWith = null; public String Address1EndsWith = null; public String Address1Contains = null; public String Address1Like = null; public ArrayList Address1Between = null; public ArrayList Address1In = null; public String Address2 = null; public String Address2StartsWith = null; public String Address2EndsWith = null; public String Address2Contains = null; public String Address2Like = null; public ArrayList Address2Between = null; public ArrayList Address2In = null; public String Address3 = null; public String Address3StartsWith = null; public String Address3EndsWith = null; public String Address3Contains = null; public String Address3Like = null; public ArrayList Address3Between = null; public ArrayList Address3In = null; public String Address4 = null; public String Address4StartsWith = null; public String Address4EndsWith = null; public String Address4Contains = null; public String Address4Like = null; public ArrayList Address4Between = null; public ArrayList Address4In = null; public String PostCode = null; public String PostCodeStartsWith = null; public String PostCodeEndsWith = null; public String PostCodeContains = null; public String PostCodeLike = null; public ArrayList PostCodeBetween = null; public ArrayList PostCodeIn = null; public String Notes = null; public String NotesStartsWith = null; public String NotesEndsWith = null; public String NotesContains = null; public String NotesLike = null; public ArrayList NotesBetween = null; public ArrayList NotesIn = null; public String CourierDetails = null; public String CourierDetailsStartsWith = null; public String CourierDetailsEndsWith = null; public String CourierDetailsContains = null; public String CourierDetailsLike = null; public ArrayList CourierDetailsBetween = null; public ArrayList CourierDetailsIn = null; public Boolean DefaultItem = null; public Short DefaultDelDays = null; public Short DefaultDelDaysGreaterThanOrEqualTo = null; public Short DefaultDelDaysGreaterThan = null; public Short DefaultDelDaysLessThan = null; public Short DefaultDelDaysLessThanOrEqualTo = null; public Short DefaultDelDaysNotEqualTo = null; public ArrayList DefaultDelDaysBetween = null; public ArrayList DefaultDelDaysIn = null; public String Country = null; public String CountryStartsWith = null; public String CountryEndsWith = null; public String CountryContains = null; public String CountryLike = null; public ArrayList CountryBetween = null; public ArrayList CountryIn = null; public String getWarehouseID() { return WarehouseID; } public CR_WarehouseQuery setWarehouseID(String value) { this.WarehouseID = value; return this; } public String getWarehouseIDStartsWith() { return WarehouseIDStartsWith; } public CR_WarehouseQuery setWarehouseIDStartsWith(String value) { this.WarehouseIDStartsWith = value; return this; } public String getWarehouseIDEndsWith() { return WarehouseIDEndsWith; } public CR_WarehouseQuery setWarehouseIDEndsWith(String value) { this.WarehouseIDEndsWith = value; return this; } public String getWarehouseIDContains() { return WarehouseIDContains; } public CR_WarehouseQuery setWarehouseIDContains(String value) { this.WarehouseIDContains = value; return this; } public String getWarehouseIDLike() { return WarehouseIDLike; } public CR_WarehouseQuery setWarehouseIDLike(String value) { this.WarehouseIDLike = value; return this; } public ArrayList getWarehouseIDBetween() { return WarehouseIDBetween; } public CR_WarehouseQuery setWarehouseIDBetween(ArrayList value) { this.WarehouseIDBetween = value; return this; } public ArrayList getWarehouseIDIn() { return WarehouseIDIn; } public CR_WarehouseQuery setWarehouseIDIn(ArrayList value) { this.WarehouseIDIn = value; return this; } public String getCreditorID() { return CreditorID; } public CR_WarehouseQuery setCreditorID(String value) { this.CreditorID = value; return this; } public String getCreditorIDStartsWith() { return CreditorIDStartsWith; } public CR_WarehouseQuery setCreditorIDStartsWith(String value) { this.CreditorIDStartsWith = value; return this; } public String getCreditorIDEndsWith() { return CreditorIDEndsWith; } public CR_WarehouseQuery setCreditorIDEndsWith(String value) { this.CreditorIDEndsWith = value; return this; } public String getCreditorIDContains() { return CreditorIDContains; } public CR_WarehouseQuery setCreditorIDContains(String value) { this.CreditorIDContains = value; return this; } public String getCreditorIDLike() { return CreditorIDLike; } public CR_WarehouseQuery setCreditorIDLike(String value) { this.CreditorIDLike = value; return this; } public ArrayList getCreditorIDBetween() { return CreditorIDBetween; } public CR_WarehouseQuery setCreditorIDBetween(ArrayList value) { this.CreditorIDBetween = value; return this; } public ArrayList getCreditorIDIn() { return CreditorIDIn; } public CR_WarehouseQuery setCreditorIDIn(ArrayList value) { this.CreditorIDIn = value; return this; } public String getDescription() { return Description; } public CR_WarehouseQuery setDescription(String value) { this.Description = value; return this; } public String getDescriptionStartsWith() { return DescriptionStartsWith; } public CR_WarehouseQuery setDescriptionStartsWith(String value) { this.DescriptionStartsWith = value; return this; } public String getDescriptionEndsWith() { return DescriptionEndsWith; } public CR_WarehouseQuery setDescriptionEndsWith(String value) { this.DescriptionEndsWith = value; return this; } public String getDescriptionContains() { return DescriptionContains; } public CR_WarehouseQuery setDescriptionContains(String value) { this.DescriptionContains = value; return this; } public String getDescriptionLike() { return DescriptionLike; } public CR_WarehouseQuery setDescriptionLike(String value) { this.DescriptionLike = value; return this; } public ArrayList getDescriptionBetween() { return DescriptionBetween; } public CR_WarehouseQuery setDescriptionBetween(ArrayList value) { this.DescriptionBetween = value; return this; } public ArrayList getDescriptionIn() { return DescriptionIn; } public CR_WarehouseQuery setDescriptionIn(ArrayList value) { this.DescriptionIn = value; return this; } public String getAddress1() { return Address1; } public CR_WarehouseQuery setAddress1(String value) { this.Address1 = value; return this; } public String getAddress1StartsWith() { return Address1StartsWith; } public CR_WarehouseQuery setAddress1StartsWith(String value) { this.Address1StartsWith = value; return this; } public String getAddress1EndsWith() { return Address1EndsWith; } public CR_WarehouseQuery setAddress1EndsWith(String value) { this.Address1EndsWith = value; return this; } public String getAddress1Contains() { return Address1Contains; } public CR_WarehouseQuery setAddress1Contains(String value) { this.Address1Contains = value; return this; } public String getAddress1Like() { return Address1Like; } public CR_WarehouseQuery setAddress1Like(String value) { this.Address1Like = value; return this; } public ArrayList getAddress1Between() { return Address1Between; } public CR_WarehouseQuery setAddress1Between(ArrayList value) { this.Address1Between = value; return this; } public ArrayList getAddress1In() { return Address1In; } public CR_WarehouseQuery setAddress1In(ArrayList value) { this.Address1In = value; return this; } public String getAddress2() { return Address2; } public CR_WarehouseQuery setAddress2(String value) { this.Address2 = value; return this; } public String getAddress2StartsWith() { return Address2StartsWith; } public CR_WarehouseQuery setAddress2StartsWith(String value) { this.Address2StartsWith = value; return this; } public String getAddress2EndsWith() { return Address2EndsWith; } public CR_WarehouseQuery setAddress2EndsWith(String value) { this.Address2EndsWith = value; return this; } public String getAddress2Contains() { return Address2Contains; } public CR_WarehouseQuery setAddress2Contains(String value) { this.Address2Contains = value; return this; } public String getAddress2Like() { return Address2Like; } public CR_WarehouseQuery setAddress2Like(String value) { this.Address2Like = value; return this; } public ArrayList getAddress2Between() { return Address2Between; } public CR_WarehouseQuery setAddress2Between(ArrayList value) { this.Address2Between = value; return this; } public ArrayList getAddress2In() { return Address2In; } public CR_WarehouseQuery setAddress2In(ArrayList value) { this.Address2In = value; return this; } public String getAddress3() { return Address3; } public CR_WarehouseQuery setAddress3(String value) { this.Address3 = value; return this; } public String getAddress3StartsWith() { return Address3StartsWith; } public CR_WarehouseQuery setAddress3StartsWith(String value) { this.Address3StartsWith = value; return this; } public String getAddress3EndsWith() { return Address3EndsWith; } public CR_WarehouseQuery setAddress3EndsWith(String value) { this.Address3EndsWith = value; return this; } public String getAddress3Contains() { return Address3Contains; } public CR_WarehouseQuery setAddress3Contains(String value) { this.Address3Contains = value; return this; } public String getAddress3Like() { return Address3Like; } public CR_WarehouseQuery setAddress3Like(String value) { this.Address3Like = value; return this; } public ArrayList getAddress3Between() { return Address3Between; } public CR_WarehouseQuery setAddress3Between(ArrayList value) { this.Address3Between = value; return this; } public ArrayList getAddress3In() { return Address3In; } public CR_WarehouseQuery setAddress3In(ArrayList value) { this.Address3In = value; return this; } public String getAddress4() { return Address4; } public CR_WarehouseQuery setAddress4(String value) { this.Address4 = value; return this; } public String getAddress4StartsWith() { return Address4StartsWith; } public CR_WarehouseQuery setAddress4StartsWith(String value) { this.Address4StartsWith = value; return this; } public String getAddress4EndsWith() { return Address4EndsWith; } public CR_WarehouseQuery setAddress4EndsWith(String value) { this.Address4EndsWith = value; return this; } public String getAddress4Contains() { return Address4Contains; } public CR_WarehouseQuery setAddress4Contains(String value) { this.Address4Contains = value; return this; } public String getAddress4Like() { return Address4Like; } public CR_WarehouseQuery setAddress4Like(String value) { this.Address4Like = value; return this; } public ArrayList getAddress4Between() { return Address4Between; } public CR_WarehouseQuery setAddress4Between(ArrayList value) { this.Address4Between = value; return this; } public ArrayList getAddress4In() { return Address4In; } public CR_WarehouseQuery setAddress4In(ArrayList value) { this.Address4In = value; return this; } public String getPostCode() { return PostCode; } public CR_WarehouseQuery setPostCode(String value) { this.PostCode = value; return this; } public String getPostCodeStartsWith() { return PostCodeStartsWith; } public CR_WarehouseQuery setPostCodeStartsWith(String value) { this.PostCodeStartsWith = value; return this; } public String getPostCodeEndsWith() { return PostCodeEndsWith; } public CR_WarehouseQuery setPostCodeEndsWith(String value) { this.PostCodeEndsWith = value; return this; } public String getPostCodeContains() { return PostCodeContains; } public CR_WarehouseQuery setPostCodeContains(String value) { this.PostCodeContains = value; return this; } public String getPostCodeLike() { return PostCodeLike; } public CR_WarehouseQuery setPostCodeLike(String value) { this.PostCodeLike = value; return this; } public ArrayList getPostCodeBetween() { return PostCodeBetween; } public CR_WarehouseQuery setPostCodeBetween(ArrayList value) { this.PostCodeBetween = value; return this; } public ArrayList getPostCodeIn() { return PostCodeIn; } public CR_WarehouseQuery setPostCodeIn(ArrayList value) { this.PostCodeIn = value; return this; } public String getNotes() { return Notes; } public CR_WarehouseQuery setNotes(String value) { this.Notes = value; return this; } public String getNotesStartsWith() { return NotesStartsWith; } public CR_WarehouseQuery setNotesStartsWith(String value) { this.NotesStartsWith = value; return this; } public String getNotesEndsWith() { return NotesEndsWith; } public CR_WarehouseQuery setNotesEndsWith(String value) { this.NotesEndsWith = value; return this; } public String getNotesContains() { return NotesContains; } public CR_WarehouseQuery setNotesContains(String value) { this.NotesContains = value; return this; } public String getNotesLike() { return NotesLike; } public CR_WarehouseQuery setNotesLike(String value) { this.NotesLike = value; return this; } public ArrayList getNotesBetween() { return NotesBetween; } public CR_WarehouseQuery setNotesBetween(ArrayList value) { this.NotesBetween = value; return this; } public ArrayList getNotesIn() { return NotesIn; } public CR_WarehouseQuery setNotesIn(ArrayList value) { this.NotesIn = value; return this; } public String getCourierDetails() { return CourierDetails; } public CR_WarehouseQuery setCourierDetails(String value) { this.CourierDetails = value; return this; } public String getCourierDetailsStartsWith() { return CourierDetailsStartsWith; } public CR_WarehouseQuery setCourierDetailsStartsWith(String value) { this.CourierDetailsStartsWith = value; return this; } public String getCourierDetailsEndsWith() { return CourierDetailsEndsWith; } public CR_WarehouseQuery setCourierDetailsEndsWith(String value) { this.CourierDetailsEndsWith = value; return this; } public String getCourierDetailsContains() { return CourierDetailsContains; } public CR_WarehouseQuery setCourierDetailsContains(String value) { this.CourierDetailsContains = value; return this; } public String getCourierDetailsLike() { return CourierDetailsLike; } public CR_WarehouseQuery setCourierDetailsLike(String value) { this.CourierDetailsLike = value; return this; } public ArrayList getCourierDetailsBetween() { return CourierDetailsBetween; } public CR_WarehouseQuery setCourierDetailsBetween(ArrayList value) { this.CourierDetailsBetween = value; return this; } public ArrayList getCourierDetailsIn() { return CourierDetailsIn; } public CR_WarehouseQuery setCourierDetailsIn(ArrayList value) { this.CourierDetailsIn = value; return this; } public Boolean isDefaultItem() { return DefaultItem; } public CR_WarehouseQuery setDefaultItem(Boolean value) { this.DefaultItem = value; return this; } public Short getDefaultDelDays() { return DefaultDelDays; } public CR_WarehouseQuery setDefaultDelDays(Short value) { this.DefaultDelDays = value; return this; } public Short getDefaultDelDaysGreaterThanOrEqualTo() { return DefaultDelDaysGreaterThanOrEqualTo; } public CR_WarehouseQuery setDefaultDelDaysGreaterThanOrEqualTo(Short value) { this.DefaultDelDaysGreaterThanOrEqualTo = value; return this; } public Short getDefaultDelDaysGreaterThan() { return DefaultDelDaysGreaterThan; } public CR_WarehouseQuery setDefaultDelDaysGreaterThan(Short value) { this.DefaultDelDaysGreaterThan = value; return this; } public Short getDefaultDelDaysLessThan() { return DefaultDelDaysLessThan; } public CR_WarehouseQuery setDefaultDelDaysLessThan(Short value) { this.DefaultDelDaysLessThan = value; return this; } public Short getDefaultDelDaysLessThanOrEqualTo() { return DefaultDelDaysLessThanOrEqualTo; } public CR_WarehouseQuery setDefaultDelDaysLessThanOrEqualTo(Short value) { this.DefaultDelDaysLessThanOrEqualTo = value; return this; } public Short getDefaultDelDaysNotEqualTo() { return DefaultDelDaysNotEqualTo; } public CR_WarehouseQuery setDefaultDelDaysNotEqualTo(Short value) { this.DefaultDelDaysNotEqualTo = value; return this; } public ArrayList getDefaultDelDaysBetween() { return DefaultDelDaysBetween; } public CR_WarehouseQuery setDefaultDelDaysBetween(ArrayList value) { this.DefaultDelDaysBetween = value; return this; } public ArrayList getDefaultDelDaysIn() { return DefaultDelDaysIn; } public CR_WarehouseQuery setDefaultDelDaysIn(ArrayList value) { this.DefaultDelDaysIn = value; return this; } public String getCountry() { return Country; } public CR_WarehouseQuery setCountry(String value) { this.Country = value; return this; } public String getCountryStartsWith() { return CountryStartsWith; } public CR_WarehouseQuery setCountryStartsWith(String value) { this.CountryStartsWith = value; return this; } public String getCountryEndsWith() { return CountryEndsWith; } public CR_WarehouseQuery setCountryEndsWith(String value) { this.CountryEndsWith = value; return this; } public String getCountryContains() { return CountryContains; } public CR_WarehouseQuery setCountryContains(String value) { this.CountryContains = value; return this; } public String getCountryLike() { return CountryLike; } public CR_WarehouseQuery setCountryLike(String value) { this.CountryLike = value; return this; } public ArrayList getCountryBetween() { return CountryBetween; } public CR_WarehouseQuery setCountryBetween(ArrayList value) { this.CountryBetween = value; return this; } public ArrayList getCountryIn() { return CountryIn; } public CR_WarehouseQuery setCountryIn(ArrayList value) { this.CountryIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class CurrYearProfitQuery extends QueryDb implements IReturn> { public BigDecimal Profit = null; public BigDecimal ProfitGreaterThanOrEqualTo = null; public BigDecimal ProfitGreaterThan = null; public BigDecimal ProfitLessThan = null; public BigDecimal ProfitLessThanOrEqualTo = null; public BigDecimal ProfitNotEqualTo = null; public ArrayList ProfitBetween = null; public ArrayList ProfitIn = null; public BigDecimal getProfit() { return Profit; } public CurrYearProfitQuery setProfit(BigDecimal value) { this.Profit = value; return this; } public BigDecimal getProfitGreaterThanOrEqualTo() { return ProfitGreaterThanOrEqualTo; } public CurrYearProfitQuery setProfitGreaterThanOrEqualTo(BigDecimal value) { this.ProfitGreaterThanOrEqualTo = value; return this; } public BigDecimal getProfitGreaterThan() { return ProfitGreaterThan; } public CurrYearProfitQuery setProfitGreaterThan(BigDecimal value) { this.ProfitGreaterThan = value; return this; } public BigDecimal getProfitLessThan() { return ProfitLessThan; } public CurrYearProfitQuery setProfitLessThan(BigDecimal value) { this.ProfitLessThan = value; return this; } public BigDecimal getProfitLessThanOrEqualTo() { return ProfitLessThanOrEqualTo; } public CurrYearProfitQuery setProfitLessThanOrEqualTo(BigDecimal value) { this.ProfitLessThanOrEqualTo = value; return this; } public BigDecimal getProfitNotEqualTo() { return ProfitNotEqualTo; } public CurrYearProfitQuery setProfitNotEqualTo(BigDecimal value) { this.ProfitNotEqualTo = value; return this; } public ArrayList getProfitBetween() { return ProfitBetween; } public CurrYearProfitQuery setProfitBetween(ArrayList value) { this.ProfitBetween = value; return this; } public ArrayList getProfitIn() { return ProfitIn; } public CurrYearProfitQuery setProfitIn(ArrayList value) { this.ProfitIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class DB_AdjustmentLinesQuery extends QueryDb implements IReturn> { public String RecID = null; public String RecIDStartsWith = null; public String RecIDEndsWith = null; public String RecIDContains = null; public String RecIDLike = null; public ArrayList RecIDBetween = null; public ArrayList RecIDIn = null; public String DB_Adjustments_RecID = null; public String DB_Adjustments_RecIDStartsWith = null; public String DB_Adjustments_RecIDEndsWith = null; public String DB_Adjustments_RecIDContains = null; public String DB_Adjustments_RecIDLike = null; public ArrayList DB_Adjustments_RecIDBetween = null; public ArrayList DB_Adjustments_RecIDIn = null; public Integer ItemNo = null; public Integer ItemNoGreaterThanOrEqualTo = null; public Integer ItemNoGreaterThan = null; public Integer ItemNoLessThan = null; public Integer ItemNoLessThanOrEqualTo = null; public Integer ItemNoNotEqualTo = null; public ArrayList ItemNoBetween = null; public ArrayList ItemNoIn = null; public Date DueDate = null; public Date DueDateGreaterThanOrEqualTo = null; public Date DueDateGreaterThan = null; public Date DueDateLessThan = null; public Date DueDateLessThanOrEqualTo = null; public Date DueDateNotEqualTo = null; public ArrayList DueDateBetween = null; public ArrayList DueDateIn = null; public String DB_Main_RecID = null; public String DB_Main_RecIDStartsWith = null; public String DB_Main_RecIDEndsWith = null; public String DB_Main_RecIDContains = null; public String DB_Main_RecIDLike = null; public ArrayList DB_Main_RecIDBetween = null; public ArrayList DB_Main_RecIDIn = null; public String GL_Ledger_RecID_DebtorsControl = null; public String GL_Ledger_RecID_DebtorsControlStartsWith = null; public String GL_Ledger_RecID_DebtorsControlEndsWith = null; public String GL_Ledger_RecID_DebtorsControlContains = null; public String GL_Ledger_RecID_DebtorsControlLike = null; public ArrayList GL_Ledger_RecID_DebtorsControlBetween = null; public ArrayList GL_Ledger_RecID_DebtorsControlIn = null; public String InvoiceRemittanceNo = null; public String InvoiceRemittanceNoStartsWith = null; public String InvoiceRemittanceNoEndsWith = null; public String InvoiceRemittanceNoContains = null; public String InvoiceRemittanceNoLike = null; public ArrayList InvoiceRemittanceNoBetween = null; public ArrayList InvoiceRemittanceNoIn = null; public BigDecimal WriteOnAmount = null; public BigDecimal WriteOnAmountGreaterThanOrEqualTo = null; public BigDecimal WriteOnAmountGreaterThan = null; public BigDecimal WriteOnAmountLessThan = null; public BigDecimal WriteOnAmountLessThanOrEqualTo = null; public BigDecimal WriteOnAmountNotEqualTo = null; public ArrayList WriteOnAmountBetween = null; public ArrayList WriteOnAmountIn = null; public BigDecimal WriteOffAmount = null; public BigDecimal WriteOffAmountGreaterThanOrEqualTo = null; public BigDecimal WriteOffAmountGreaterThan = null; public BigDecimal WriteOffAmountLessThan = null; public BigDecimal WriteOffAmountLessThanOrEqualTo = null; public BigDecimal WriteOffAmountNotEqualTo = null; public ArrayList WriteOffAmountBetween = null; public ArrayList WriteOffAmountIn = null; public String GL_Ledger_RecID_OtherLedger = null; public String GL_Ledger_RecID_OtherLedgerStartsWith = null; public String GL_Ledger_RecID_OtherLedgerEndsWith = null; public String GL_Ledger_RecID_OtherLedgerContains = null; public String GL_Ledger_RecID_OtherLedgerLike = null; public ArrayList GL_Ledger_RecID_OtherLedgerBetween = null; public ArrayList GL_Ledger_RecID_OtherLedgerIn = null; public String Reference = null; public String ReferenceStartsWith = null; public String ReferenceEndsWith = null; public String ReferenceContains = null; public String ReferenceLike = null; public ArrayList ReferenceBetween = null; public ArrayList ReferenceIn = null; public String Remark = null; public String RemarkStartsWith = null; public String RemarkEndsWith = null; public String RemarkContains = null; public String RemarkLike = null; public ArrayList RemarkBetween = null; public ArrayList RemarkIn = null; public String DB_Trans_RecID = null; public String DB_Trans_RecIDStartsWith = null; public String DB_Trans_RecIDEndsWith = null; public String DB_Trans_RecIDContains = null; public String DB_Trans_RecIDLike = null; public ArrayList DB_Trans_RecIDBetween = null; public ArrayList DB_Trans_RecIDIn = null; public String TX_Main_RecID = null; public String TX_Main_RecIDStartsWith = null; public String TX_Main_RecIDEndsWith = null; public String TX_Main_RecIDContains = null; public String TX_Main_RecIDLike = null; public ArrayList TX_Main_RecIDBetween = null; public ArrayList TX_Main_RecIDIn = null; public BigDecimal TaxRate = null; public BigDecimal TaxRateGreaterThanOrEqualTo = null; public BigDecimal TaxRateGreaterThan = null; public BigDecimal TaxRateLessThan = null; public BigDecimal TaxRateLessThanOrEqualTo = null; public BigDecimal TaxRateNotEqualTo = null; public ArrayList TaxRateBetween = null; public ArrayList TaxRateIn = null; public BigDecimal TaxAmount = null; public BigDecimal TaxAmountGreaterThanOrEqualTo = null; public BigDecimal TaxAmountGreaterThan = null; public BigDecimal TaxAmountLessThan = null; public BigDecimal TaxAmountLessThanOrEqualTo = null; public BigDecimal TaxAmountNotEqualTo = null; public ArrayList TaxAmountBetween = null; public ArrayList TaxAmountIn = null; public Date LastSavedDateTime = null; public Date LastSavedDateTimeGreaterThanOrEqualTo = null; public Date LastSavedDateTimeGreaterThan = null; public Date LastSavedDateTimeLessThan = null; public Date LastSavedDateTimeLessThanOrEqualTo = null; public Date LastSavedDateTimeNotEqualTo = null; public ArrayList LastSavedDateTimeBetween = null; public ArrayList LastSavedDateTimeIn = null; public ArrayList RowHash = null; public Date AdjustmentDate = null; public Date AdjustmentDateGreaterThanOrEqualTo = null; public Date AdjustmentDateGreaterThan = null; public Date AdjustmentDateLessThan = null; public Date AdjustmentDateLessThanOrEqualTo = null; public Date AdjustmentDateNotEqualTo = null; public ArrayList AdjustmentDateBetween = null; public ArrayList AdjustmentDateIn = null; public String getRecID() { return RecID; } public DB_AdjustmentLinesQuery setRecID(String value) { this.RecID = value; return this; } public String getRecIDStartsWith() { return RecIDStartsWith; } public DB_AdjustmentLinesQuery setRecIDStartsWith(String value) { this.RecIDStartsWith = value; return this; } public String getRecIDEndsWith() { return RecIDEndsWith; } public DB_AdjustmentLinesQuery setRecIDEndsWith(String value) { this.RecIDEndsWith = value; return this; } public String getRecIDContains() { return RecIDContains; } public DB_AdjustmentLinesQuery setRecIDContains(String value) { this.RecIDContains = value; return this; } public String getRecIDLike() { return RecIDLike; } public DB_AdjustmentLinesQuery setRecIDLike(String value) { this.RecIDLike = value; return this; } public ArrayList getRecIDBetween() { return RecIDBetween; } public DB_AdjustmentLinesQuery setRecIDBetween(ArrayList value) { this.RecIDBetween = value; return this; } public ArrayList getRecIDIn() { return RecIDIn; } public DB_AdjustmentLinesQuery setRecIDIn(ArrayList value) { this.RecIDIn = value; return this; } public String getDbAdjustmentsRecID() { return DB_Adjustments_RecID; } public DB_AdjustmentLinesQuery setDbAdjustmentsRecID(String value) { this.DB_Adjustments_RecID = value; return this; } public String getDbAdjustmentsRecIDStartsWith() { return DB_Adjustments_RecIDStartsWith; } public DB_AdjustmentLinesQuery setDbAdjustmentsRecIDStartsWith(String value) { this.DB_Adjustments_RecIDStartsWith = value; return this; } public String getDbAdjustmentsRecIDEndsWith() { return DB_Adjustments_RecIDEndsWith; } public DB_AdjustmentLinesQuery setDbAdjustmentsRecIDEndsWith(String value) { this.DB_Adjustments_RecIDEndsWith = value; return this; } public String getDbAdjustmentsRecIDContains() { return DB_Adjustments_RecIDContains; } public DB_AdjustmentLinesQuery setDbAdjustmentsRecIDContains(String value) { this.DB_Adjustments_RecIDContains = value; return this; } public String getDbAdjustmentsRecIDLike() { return DB_Adjustments_RecIDLike; } public DB_AdjustmentLinesQuery setDbAdjustmentsRecIDLike(String value) { this.DB_Adjustments_RecIDLike = value; return this; } public ArrayList getDbAdjustmentsRecIDBetween() { return DB_Adjustments_RecIDBetween; } public DB_AdjustmentLinesQuery setDbAdjustmentsRecIDBetween(ArrayList value) { this.DB_Adjustments_RecIDBetween = value; return this; } public ArrayList getDbAdjustmentsRecIDIn() { return DB_Adjustments_RecIDIn; } public DB_AdjustmentLinesQuery setDbAdjustmentsRecIDIn(ArrayList value) { this.DB_Adjustments_RecIDIn = value; return this; } public Integer getItemNo() { return ItemNo; } public DB_AdjustmentLinesQuery setItemNo(Integer value) { this.ItemNo = value; return this; } public Integer getItemNoGreaterThanOrEqualTo() { return ItemNoGreaterThanOrEqualTo; } public DB_AdjustmentLinesQuery setItemNoGreaterThanOrEqualTo(Integer value) { this.ItemNoGreaterThanOrEqualTo = value; return this; } public Integer getItemNoGreaterThan() { return ItemNoGreaterThan; } public DB_AdjustmentLinesQuery setItemNoGreaterThan(Integer value) { this.ItemNoGreaterThan = value; return this; } public Integer getItemNoLessThan() { return ItemNoLessThan; } public DB_AdjustmentLinesQuery setItemNoLessThan(Integer value) { this.ItemNoLessThan = value; return this; } public Integer getItemNoLessThanOrEqualTo() { return ItemNoLessThanOrEqualTo; } public DB_AdjustmentLinesQuery setItemNoLessThanOrEqualTo(Integer value) { this.ItemNoLessThanOrEqualTo = value; return this; } public Integer getItemNoNotEqualTo() { return ItemNoNotEqualTo; } public DB_AdjustmentLinesQuery setItemNoNotEqualTo(Integer value) { this.ItemNoNotEqualTo = value; return this; } public ArrayList getItemNoBetween() { return ItemNoBetween; } public DB_AdjustmentLinesQuery setItemNoBetween(ArrayList value) { this.ItemNoBetween = value; return this; } public ArrayList getItemNoIn() { return ItemNoIn; } public DB_AdjustmentLinesQuery setItemNoIn(ArrayList value) { this.ItemNoIn = value; return this; } public Date getDueDate() { return DueDate; } public DB_AdjustmentLinesQuery setDueDate(Date value) { this.DueDate = value; return this; } public Date getDueDateGreaterThanOrEqualTo() { return DueDateGreaterThanOrEqualTo; } public DB_AdjustmentLinesQuery setDueDateGreaterThanOrEqualTo(Date value) { this.DueDateGreaterThanOrEqualTo = value; return this; } public Date getDueDateGreaterThan() { return DueDateGreaterThan; } public DB_AdjustmentLinesQuery setDueDateGreaterThan(Date value) { this.DueDateGreaterThan = value; return this; } public Date getDueDateLessThan() { return DueDateLessThan; } public DB_AdjustmentLinesQuery setDueDateLessThan(Date value) { this.DueDateLessThan = value; return this; } public Date getDueDateLessThanOrEqualTo() { return DueDateLessThanOrEqualTo; } public DB_AdjustmentLinesQuery setDueDateLessThanOrEqualTo(Date value) { this.DueDateLessThanOrEqualTo = value; return this; } public Date getDueDateNotEqualTo() { return DueDateNotEqualTo; } public DB_AdjustmentLinesQuery setDueDateNotEqualTo(Date value) { this.DueDateNotEqualTo = value; return this; } public ArrayList getDueDateBetween() { return DueDateBetween; } public DB_AdjustmentLinesQuery setDueDateBetween(ArrayList value) { this.DueDateBetween = value; return this; } public ArrayList getDueDateIn() { return DueDateIn; } public DB_AdjustmentLinesQuery setDueDateIn(ArrayList value) { this.DueDateIn = value; return this; } public String getDbMainRecID() { return DB_Main_RecID; } public DB_AdjustmentLinesQuery setDbMainRecID(String value) { this.DB_Main_RecID = value; return this; } public String getDbMainRecIDStartsWith() { return DB_Main_RecIDStartsWith; } public DB_AdjustmentLinesQuery setDbMainRecIDStartsWith(String value) { this.DB_Main_RecIDStartsWith = value; return this; } public String getDbMainRecIDEndsWith() { return DB_Main_RecIDEndsWith; } public DB_AdjustmentLinesQuery setDbMainRecIDEndsWith(String value) { this.DB_Main_RecIDEndsWith = value; return this; } public String getDbMainRecIDContains() { return DB_Main_RecIDContains; } public DB_AdjustmentLinesQuery setDbMainRecIDContains(String value) { this.DB_Main_RecIDContains = value; return this; } public String getDbMainRecIDLike() { return DB_Main_RecIDLike; } public DB_AdjustmentLinesQuery setDbMainRecIDLike(String value) { this.DB_Main_RecIDLike = value; return this; } public ArrayList getDbMainRecIDBetween() { return DB_Main_RecIDBetween; } public DB_AdjustmentLinesQuery setDbMainRecIDBetween(ArrayList value) { this.DB_Main_RecIDBetween = value; return this; } public ArrayList getDbMainRecIDIn() { return DB_Main_RecIDIn; } public DB_AdjustmentLinesQuery setDbMainRecIDIn(ArrayList value) { this.DB_Main_RecIDIn = value; return this; } public String getGlLedgerRecIDDebtorsControl() { return GL_Ledger_RecID_DebtorsControl; } public DB_AdjustmentLinesQuery setGlLedgerRecIDDebtorsControl(String value) { this.GL_Ledger_RecID_DebtorsControl = value; return this; } public String getGlLedgerRecIDDebtorsControlStartsWith() { return GL_Ledger_RecID_DebtorsControlStartsWith; } public DB_AdjustmentLinesQuery setGlLedgerRecIDDebtorsControlStartsWith(String value) { this.GL_Ledger_RecID_DebtorsControlStartsWith = value; return this; } public String getGlLedgerRecIDDebtorsControlEndsWith() { return GL_Ledger_RecID_DebtorsControlEndsWith; } public DB_AdjustmentLinesQuery setGlLedgerRecIDDebtorsControlEndsWith(String value) { this.GL_Ledger_RecID_DebtorsControlEndsWith = value; return this; } public String getGlLedgerRecIDDebtorsControlContains() { return GL_Ledger_RecID_DebtorsControlContains; } public DB_AdjustmentLinesQuery setGlLedgerRecIDDebtorsControlContains(String value) { this.GL_Ledger_RecID_DebtorsControlContains = value; return this; } public String getGlLedgerRecIDDebtorsControlLike() { return GL_Ledger_RecID_DebtorsControlLike; } public DB_AdjustmentLinesQuery setGlLedgerRecIDDebtorsControlLike(String value) { this.GL_Ledger_RecID_DebtorsControlLike = value; return this; } public ArrayList getGlLedgerRecIDDebtorsControlBetween() { return GL_Ledger_RecID_DebtorsControlBetween; } public DB_AdjustmentLinesQuery setGlLedgerRecIDDebtorsControlBetween(ArrayList value) { this.GL_Ledger_RecID_DebtorsControlBetween = value; return this; } public ArrayList getGlLedgerRecIDDebtorsControlIn() { return GL_Ledger_RecID_DebtorsControlIn; } public DB_AdjustmentLinesQuery setGlLedgerRecIDDebtorsControlIn(ArrayList value) { this.GL_Ledger_RecID_DebtorsControlIn = value; return this; } public String getInvoiceRemittanceNo() { return InvoiceRemittanceNo; } public DB_AdjustmentLinesQuery setInvoiceRemittanceNo(String value) { this.InvoiceRemittanceNo = value; return this; } public String getInvoiceRemittanceNoStartsWith() { return InvoiceRemittanceNoStartsWith; } public DB_AdjustmentLinesQuery setInvoiceRemittanceNoStartsWith(String value) { this.InvoiceRemittanceNoStartsWith = value; return this; } public String getInvoiceRemittanceNoEndsWith() { return InvoiceRemittanceNoEndsWith; } public DB_AdjustmentLinesQuery setInvoiceRemittanceNoEndsWith(String value) { this.InvoiceRemittanceNoEndsWith = value; return this; } public String getInvoiceRemittanceNoContains() { return InvoiceRemittanceNoContains; } public DB_AdjustmentLinesQuery setInvoiceRemittanceNoContains(String value) { this.InvoiceRemittanceNoContains = value; return this; } public String getInvoiceRemittanceNoLike() { return InvoiceRemittanceNoLike; } public DB_AdjustmentLinesQuery setInvoiceRemittanceNoLike(String value) { this.InvoiceRemittanceNoLike = value; return this; } public ArrayList getInvoiceRemittanceNoBetween() { return InvoiceRemittanceNoBetween; } public DB_AdjustmentLinesQuery setInvoiceRemittanceNoBetween(ArrayList value) { this.InvoiceRemittanceNoBetween = value; return this; } public ArrayList getInvoiceRemittanceNoIn() { return InvoiceRemittanceNoIn; } public DB_AdjustmentLinesQuery setInvoiceRemittanceNoIn(ArrayList value) { this.InvoiceRemittanceNoIn = value; return this; } public BigDecimal getWriteOnAmount() { return WriteOnAmount; } public DB_AdjustmentLinesQuery setWriteOnAmount(BigDecimal value) { this.WriteOnAmount = value; return this; } public BigDecimal getWriteOnAmountGreaterThanOrEqualTo() { return WriteOnAmountGreaterThanOrEqualTo; } public DB_AdjustmentLinesQuery setWriteOnAmountGreaterThanOrEqualTo(BigDecimal value) { this.WriteOnAmountGreaterThanOrEqualTo = value; return this; } public BigDecimal getWriteOnAmountGreaterThan() { return WriteOnAmountGreaterThan; } public DB_AdjustmentLinesQuery setWriteOnAmountGreaterThan(BigDecimal value) { this.WriteOnAmountGreaterThan = value; return this; } public BigDecimal getWriteOnAmountLessThan() { return WriteOnAmountLessThan; } public DB_AdjustmentLinesQuery setWriteOnAmountLessThan(BigDecimal value) { this.WriteOnAmountLessThan = value; return this; } public BigDecimal getWriteOnAmountLessThanOrEqualTo() { return WriteOnAmountLessThanOrEqualTo; } public DB_AdjustmentLinesQuery setWriteOnAmountLessThanOrEqualTo(BigDecimal value) { this.WriteOnAmountLessThanOrEqualTo = value; return this; } public BigDecimal getWriteOnAmountNotEqualTo() { return WriteOnAmountNotEqualTo; } public DB_AdjustmentLinesQuery setWriteOnAmountNotEqualTo(BigDecimal value) { this.WriteOnAmountNotEqualTo = value; return this; } public ArrayList getWriteOnAmountBetween() { return WriteOnAmountBetween; } public DB_AdjustmentLinesQuery setWriteOnAmountBetween(ArrayList value) { this.WriteOnAmountBetween = value; return this; } public ArrayList getWriteOnAmountIn() { return WriteOnAmountIn; } public DB_AdjustmentLinesQuery setWriteOnAmountIn(ArrayList value) { this.WriteOnAmountIn = value; return this; } public BigDecimal getWriteOffAmount() { return WriteOffAmount; } public DB_AdjustmentLinesQuery setWriteOffAmount(BigDecimal value) { this.WriteOffAmount = value; return this; } public BigDecimal getWriteOffAmountGreaterThanOrEqualTo() { return WriteOffAmountGreaterThanOrEqualTo; } public DB_AdjustmentLinesQuery setWriteOffAmountGreaterThanOrEqualTo(BigDecimal value) { this.WriteOffAmountGreaterThanOrEqualTo = value; return this; } public BigDecimal getWriteOffAmountGreaterThan() { return WriteOffAmountGreaterThan; } public DB_AdjustmentLinesQuery setWriteOffAmountGreaterThan(BigDecimal value) { this.WriteOffAmountGreaterThan = value; return this; } public BigDecimal getWriteOffAmountLessThan() { return WriteOffAmountLessThan; } public DB_AdjustmentLinesQuery setWriteOffAmountLessThan(BigDecimal value) { this.WriteOffAmountLessThan = value; return this; } public BigDecimal getWriteOffAmountLessThanOrEqualTo() { return WriteOffAmountLessThanOrEqualTo; } public DB_AdjustmentLinesQuery setWriteOffAmountLessThanOrEqualTo(BigDecimal value) { this.WriteOffAmountLessThanOrEqualTo = value; return this; } public BigDecimal getWriteOffAmountNotEqualTo() { return WriteOffAmountNotEqualTo; } public DB_AdjustmentLinesQuery setWriteOffAmountNotEqualTo(BigDecimal value) { this.WriteOffAmountNotEqualTo = value; return this; } public ArrayList getWriteOffAmountBetween() { return WriteOffAmountBetween; } public DB_AdjustmentLinesQuery setWriteOffAmountBetween(ArrayList value) { this.WriteOffAmountBetween = value; return this; } public ArrayList getWriteOffAmountIn() { return WriteOffAmountIn; } public DB_AdjustmentLinesQuery setWriteOffAmountIn(ArrayList value) { this.WriteOffAmountIn = value; return this; } public String getGlLedgerRecIDOtherLedger() { return GL_Ledger_RecID_OtherLedger; } public DB_AdjustmentLinesQuery setGlLedgerRecIDOtherLedger(String value) { this.GL_Ledger_RecID_OtherLedger = value; return this; } public String getGlLedgerRecIDOtherLedgerStartsWith() { return GL_Ledger_RecID_OtherLedgerStartsWith; } public DB_AdjustmentLinesQuery setGlLedgerRecIDOtherLedgerStartsWith(String value) { this.GL_Ledger_RecID_OtherLedgerStartsWith = value; return this; } public String getGlLedgerRecIDOtherLedgerEndsWith() { return GL_Ledger_RecID_OtherLedgerEndsWith; } public DB_AdjustmentLinesQuery setGlLedgerRecIDOtherLedgerEndsWith(String value) { this.GL_Ledger_RecID_OtherLedgerEndsWith = value; return this; } public String getGlLedgerRecIDOtherLedgerContains() { return GL_Ledger_RecID_OtherLedgerContains; } public DB_AdjustmentLinesQuery setGlLedgerRecIDOtherLedgerContains(String value) { this.GL_Ledger_RecID_OtherLedgerContains = value; return this; } public String getGlLedgerRecIDOtherLedgerLike() { return GL_Ledger_RecID_OtherLedgerLike; } public DB_AdjustmentLinesQuery setGlLedgerRecIDOtherLedgerLike(String value) { this.GL_Ledger_RecID_OtherLedgerLike = value; return this; } public ArrayList getGlLedgerRecIDOtherLedgerBetween() { return GL_Ledger_RecID_OtherLedgerBetween; } public DB_AdjustmentLinesQuery setGlLedgerRecIDOtherLedgerBetween(ArrayList value) { this.GL_Ledger_RecID_OtherLedgerBetween = value; return this; } public ArrayList getGlLedgerRecIDOtherLedgerIn() { return GL_Ledger_RecID_OtherLedgerIn; } public DB_AdjustmentLinesQuery setGlLedgerRecIDOtherLedgerIn(ArrayList value) { this.GL_Ledger_RecID_OtherLedgerIn = value; return this; } public String getReference() { return Reference; } public DB_AdjustmentLinesQuery setReference(String value) { this.Reference = value; return this; } public String getReferenceStartsWith() { return ReferenceStartsWith; } public DB_AdjustmentLinesQuery setReferenceStartsWith(String value) { this.ReferenceStartsWith = value; return this; } public String getReferenceEndsWith() { return ReferenceEndsWith; } public DB_AdjustmentLinesQuery setReferenceEndsWith(String value) { this.ReferenceEndsWith = value; return this; } public String getReferenceContains() { return ReferenceContains; } public DB_AdjustmentLinesQuery setReferenceContains(String value) { this.ReferenceContains = value; return this; } public String getReferenceLike() { return ReferenceLike; } public DB_AdjustmentLinesQuery setReferenceLike(String value) { this.ReferenceLike = value; return this; } public ArrayList getReferenceBetween() { return ReferenceBetween; } public DB_AdjustmentLinesQuery setReferenceBetween(ArrayList value) { this.ReferenceBetween = value; return this; } public ArrayList getReferenceIn() { return ReferenceIn; } public DB_AdjustmentLinesQuery setReferenceIn(ArrayList value) { this.ReferenceIn = value; return this; } public String getRemark() { return Remark; } public DB_AdjustmentLinesQuery setRemark(String value) { this.Remark = value; return this; } public String getRemarkStartsWith() { return RemarkStartsWith; } public DB_AdjustmentLinesQuery setRemarkStartsWith(String value) { this.RemarkStartsWith = value; return this; } public String getRemarkEndsWith() { return RemarkEndsWith; } public DB_AdjustmentLinesQuery setRemarkEndsWith(String value) { this.RemarkEndsWith = value; return this; } public String getRemarkContains() { return RemarkContains; } public DB_AdjustmentLinesQuery setRemarkContains(String value) { this.RemarkContains = value; return this; } public String getRemarkLike() { return RemarkLike; } public DB_AdjustmentLinesQuery setRemarkLike(String value) { this.RemarkLike = value; return this; } public ArrayList getRemarkBetween() { return RemarkBetween; } public DB_AdjustmentLinesQuery setRemarkBetween(ArrayList value) { this.RemarkBetween = value; return this; } public ArrayList getRemarkIn() { return RemarkIn; } public DB_AdjustmentLinesQuery setRemarkIn(ArrayList value) { this.RemarkIn = value; return this; } public String getDbTransRecID() { return DB_Trans_RecID; } public DB_AdjustmentLinesQuery setDbTransRecID(String value) { this.DB_Trans_RecID = value; return this; } public String getDbTransRecIDStartsWith() { return DB_Trans_RecIDStartsWith; } public DB_AdjustmentLinesQuery setDbTransRecIDStartsWith(String value) { this.DB_Trans_RecIDStartsWith = value; return this; } public String getDbTransRecIDEndsWith() { return DB_Trans_RecIDEndsWith; } public DB_AdjustmentLinesQuery setDbTransRecIDEndsWith(String value) { this.DB_Trans_RecIDEndsWith = value; return this; } public String getDbTransRecIDContains() { return DB_Trans_RecIDContains; } public DB_AdjustmentLinesQuery setDbTransRecIDContains(String value) { this.DB_Trans_RecIDContains = value; return this; } public String getDbTransRecIDLike() { return DB_Trans_RecIDLike; } public DB_AdjustmentLinesQuery setDbTransRecIDLike(String value) { this.DB_Trans_RecIDLike = value; return this; } public ArrayList getDbTransRecIDBetween() { return DB_Trans_RecIDBetween; } public DB_AdjustmentLinesQuery setDbTransRecIDBetween(ArrayList value) { this.DB_Trans_RecIDBetween = value; return this; } public ArrayList getDbTransRecIDIn() { return DB_Trans_RecIDIn; } public DB_AdjustmentLinesQuery setDbTransRecIDIn(ArrayList value) { this.DB_Trans_RecIDIn = value; return this; } public String getTxMainRecID() { return TX_Main_RecID; } public DB_AdjustmentLinesQuery setTxMainRecID(String value) { this.TX_Main_RecID = value; return this; } public String getTxMainRecIDStartsWith() { return TX_Main_RecIDStartsWith; } public DB_AdjustmentLinesQuery setTxMainRecIDStartsWith(String value) { this.TX_Main_RecIDStartsWith = value; return this; } public String getTxMainRecIDEndsWith() { return TX_Main_RecIDEndsWith; } public DB_AdjustmentLinesQuery setTxMainRecIDEndsWith(String value) { this.TX_Main_RecIDEndsWith = value; return this; } public String getTxMainRecIDContains() { return TX_Main_RecIDContains; } public DB_AdjustmentLinesQuery setTxMainRecIDContains(String value) { this.TX_Main_RecIDContains = value; return this; } public String getTxMainRecIDLike() { return TX_Main_RecIDLike; } public DB_AdjustmentLinesQuery setTxMainRecIDLike(String value) { this.TX_Main_RecIDLike = value; return this; } public ArrayList getTxMainRecIDBetween() { return TX_Main_RecIDBetween; } public DB_AdjustmentLinesQuery setTxMainRecIDBetween(ArrayList value) { this.TX_Main_RecIDBetween = value; return this; } public ArrayList getTxMainRecIDIn() { return TX_Main_RecIDIn; } public DB_AdjustmentLinesQuery setTxMainRecIDIn(ArrayList value) { this.TX_Main_RecIDIn = value; return this; } public BigDecimal getTaxRate() { return TaxRate; } public DB_AdjustmentLinesQuery setTaxRate(BigDecimal value) { this.TaxRate = value; return this; } public BigDecimal getTaxRateGreaterThanOrEqualTo() { return TaxRateGreaterThanOrEqualTo; } public DB_AdjustmentLinesQuery setTaxRateGreaterThanOrEqualTo(BigDecimal value) { this.TaxRateGreaterThanOrEqualTo = value; return this; } public BigDecimal getTaxRateGreaterThan() { return TaxRateGreaterThan; } public DB_AdjustmentLinesQuery setTaxRateGreaterThan(BigDecimal value) { this.TaxRateGreaterThan = value; return this; } public BigDecimal getTaxRateLessThan() { return TaxRateLessThan; } public DB_AdjustmentLinesQuery setTaxRateLessThan(BigDecimal value) { this.TaxRateLessThan = value; return this; } public BigDecimal getTaxRateLessThanOrEqualTo() { return TaxRateLessThanOrEqualTo; } public DB_AdjustmentLinesQuery setTaxRateLessThanOrEqualTo(BigDecimal value) { this.TaxRateLessThanOrEqualTo = value; return this; } public BigDecimal getTaxRateNotEqualTo() { return TaxRateNotEqualTo; } public DB_AdjustmentLinesQuery setTaxRateNotEqualTo(BigDecimal value) { this.TaxRateNotEqualTo = value; return this; } public ArrayList getTaxRateBetween() { return TaxRateBetween; } public DB_AdjustmentLinesQuery setTaxRateBetween(ArrayList value) { this.TaxRateBetween = value; return this; } public ArrayList getTaxRateIn() { return TaxRateIn; } public DB_AdjustmentLinesQuery setTaxRateIn(ArrayList value) { this.TaxRateIn = value; return this; } public BigDecimal getTaxAmount() { return TaxAmount; } public DB_AdjustmentLinesQuery setTaxAmount(BigDecimal value) { this.TaxAmount = value; return this; } public BigDecimal getTaxAmountGreaterThanOrEqualTo() { return TaxAmountGreaterThanOrEqualTo; } public DB_AdjustmentLinesQuery setTaxAmountGreaterThanOrEqualTo(BigDecimal value) { this.TaxAmountGreaterThanOrEqualTo = value; return this; } public BigDecimal getTaxAmountGreaterThan() { return TaxAmountGreaterThan; } public DB_AdjustmentLinesQuery setTaxAmountGreaterThan(BigDecimal value) { this.TaxAmountGreaterThan = value; return this; } public BigDecimal getTaxAmountLessThan() { return TaxAmountLessThan; } public DB_AdjustmentLinesQuery setTaxAmountLessThan(BigDecimal value) { this.TaxAmountLessThan = value; return this; } public BigDecimal getTaxAmountLessThanOrEqualTo() { return TaxAmountLessThanOrEqualTo; } public DB_AdjustmentLinesQuery setTaxAmountLessThanOrEqualTo(BigDecimal value) { this.TaxAmountLessThanOrEqualTo = value; return this; } public BigDecimal getTaxAmountNotEqualTo() { return TaxAmountNotEqualTo; } public DB_AdjustmentLinesQuery setTaxAmountNotEqualTo(BigDecimal value) { this.TaxAmountNotEqualTo = value; return this; } public ArrayList getTaxAmountBetween() { return TaxAmountBetween; } public DB_AdjustmentLinesQuery setTaxAmountBetween(ArrayList value) { this.TaxAmountBetween = value; return this; } public ArrayList getTaxAmountIn() { return TaxAmountIn; } public DB_AdjustmentLinesQuery setTaxAmountIn(ArrayList value) { this.TaxAmountIn = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public DB_AdjustmentLinesQuery setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getLastSavedDateTimeGreaterThanOrEqualTo() { return LastSavedDateTimeGreaterThanOrEqualTo; } public DB_AdjustmentLinesQuery setLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.LastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeGreaterThan() { return LastSavedDateTimeGreaterThan; } public DB_AdjustmentLinesQuery setLastSavedDateTimeGreaterThan(Date value) { this.LastSavedDateTimeGreaterThan = value; return this; } public Date getLastSavedDateTimeLessThan() { return LastSavedDateTimeLessThan; } public DB_AdjustmentLinesQuery setLastSavedDateTimeLessThan(Date value) { this.LastSavedDateTimeLessThan = value; return this; } public Date getLastSavedDateTimeLessThanOrEqualTo() { return LastSavedDateTimeLessThanOrEqualTo; } public DB_AdjustmentLinesQuery setLastSavedDateTimeLessThanOrEqualTo(Date value) { this.LastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeNotEqualTo() { return LastSavedDateTimeNotEqualTo; } public DB_AdjustmentLinesQuery setLastSavedDateTimeNotEqualTo(Date value) { this.LastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getLastSavedDateTimeBetween() { return LastSavedDateTimeBetween; } public DB_AdjustmentLinesQuery setLastSavedDateTimeBetween(ArrayList value) { this.LastSavedDateTimeBetween = value; return this; } public ArrayList getLastSavedDateTimeIn() { return LastSavedDateTimeIn; } public DB_AdjustmentLinesQuery setLastSavedDateTimeIn(ArrayList value) { this.LastSavedDateTimeIn = value; return this; } public ArrayList getRowHash() { return RowHash; } public DB_AdjustmentLinesQuery setRowHash(ArrayList value) { this.RowHash = value; return this; } public Date getAdjustmentDate() { return AdjustmentDate; } public DB_AdjustmentLinesQuery setAdjustmentDate(Date value) { this.AdjustmentDate = value; return this; } public Date getAdjustmentDateGreaterThanOrEqualTo() { return AdjustmentDateGreaterThanOrEqualTo; } public DB_AdjustmentLinesQuery setAdjustmentDateGreaterThanOrEqualTo(Date value) { this.AdjustmentDateGreaterThanOrEqualTo = value; return this; } public Date getAdjustmentDateGreaterThan() { return AdjustmentDateGreaterThan; } public DB_AdjustmentLinesQuery setAdjustmentDateGreaterThan(Date value) { this.AdjustmentDateGreaterThan = value; return this; } public Date getAdjustmentDateLessThan() { return AdjustmentDateLessThan; } public DB_AdjustmentLinesQuery setAdjustmentDateLessThan(Date value) { this.AdjustmentDateLessThan = value; return this; } public Date getAdjustmentDateLessThanOrEqualTo() { return AdjustmentDateLessThanOrEqualTo; } public DB_AdjustmentLinesQuery setAdjustmentDateLessThanOrEqualTo(Date value) { this.AdjustmentDateLessThanOrEqualTo = value; return this; } public Date getAdjustmentDateNotEqualTo() { return AdjustmentDateNotEqualTo; } public DB_AdjustmentLinesQuery setAdjustmentDateNotEqualTo(Date value) { this.AdjustmentDateNotEqualTo = value; return this; } public ArrayList getAdjustmentDateBetween() { return AdjustmentDateBetween; } public DB_AdjustmentLinesQuery setAdjustmentDateBetween(ArrayList value) { this.AdjustmentDateBetween = value; return this; } public ArrayList getAdjustmentDateIn() { return AdjustmentDateIn; } public DB_AdjustmentLinesQuery setAdjustmentDateIn(ArrayList value) { this.AdjustmentDateIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class DB_AdjustmentsQuery extends QueryDb implements IReturn> { public String RecID = null; public String RecIDStartsWith = null; public String RecIDEndsWith = null; public String RecIDContains = null; public String RecIDLike = null; public ArrayList RecIDBetween = null; public ArrayList RecIDIn = null; public String BatchNo = null; public String BatchNoStartsWith = null; public String BatchNoEndsWith = null; public String BatchNoContains = null; public String BatchNoLike = null; public ArrayList BatchNoBetween = null; public ArrayList BatchNoIn = null; public Date BatchDate = null; public Date BatchDateGreaterThanOrEqualTo = null; public Date BatchDateGreaterThan = null; public Date BatchDateLessThan = null; public Date BatchDateLessThanOrEqualTo = null; public Date BatchDateNotEqualTo = null; public ArrayList BatchDateBetween = null; public ArrayList BatchDateIn = null; public Short Status = null; public Short StatusGreaterThanOrEqualTo = null; public Short StatusGreaterThan = null; public Short StatusLessThan = null; public Short StatusLessThanOrEqualTo = null; public Short StatusNotEqualTo = null; public ArrayList StatusBetween = null; public ArrayList StatusIn = null; public String LastSavedBy_HR_Staff_RecID = null; public String LastSavedBy_HR_Staff_RecIDStartsWith = null; public String LastSavedBy_HR_Staff_RecIDEndsWith = null; public String LastSavedBy_HR_Staff_RecIDContains = null; public String LastSavedBy_HR_Staff_RecIDLike = null; public ArrayList LastSavedBy_HR_Staff_RecIDBetween = null; public ArrayList LastSavedBy_HR_Staff_RecIDIn = null; public Date LastSavedDateTime = null; public Date LastSavedDateTimeGreaterThanOrEqualTo = null; public Date LastSavedDateTimeGreaterThan = null; public Date LastSavedDateTimeLessThan = null; public Date LastSavedDateTimeLessThanOrEqualTo = null; public Date LastSavedDateTimeNotEqualTo = null; public ArrayList LastSavedDateTimeBetween = null; public ArrayList LastSavedDateTimeIn = null; public String Description = null; public String DescriptionStartsWith = null; public String DescriptionEndsWith = null; public String DescriptionContains = null; public String DescriptionLike = null; public ArrayList DescriptionBetween = null; public ArrayList DescriptionIn = null; public ArrayList RowHash = null; public String getRecID() { return RecID; } public DB_AdjustmentsQuery setRecID(String value) { this.RecID = value; return this; } public String getRecIDStartsWith() { return RecIDStartsWith; } public DB_AdjustmentsQuery setRecIDStartsWith(String value) { this.RecIDStartsWith = value; return this; } public String getRecIDEndsWith() { return RecIDEndsWith; } public DB_AdjustmentsQuery setRecIDEndsWith(String value) { this.RecIDEndsWith = value; return this; } public String getRecIDContains() { return RecIDContains; } public DB_AdjustmentsQuery setRecIDContains(String value) { this.RecIDContains = value; return this; } public String getRecIDLike() { return RecIDLike; } public DB_AdjustmentsQuery setRecIDLike(String value) { this.RecIDLike = value; return this; } public ArrayList getRecIDBetween() { return RecIDBetween; } public DB_AdjustmentsQuery setRecIDBetween(ArrayList value) { this.RecIDBetween = value; return this; } public ArrayList getRecIDIn() { return RecIDIn; } public DB_AdjustmentsQuery setRecIDIn(ArrayList value) { this.RecIDIn = value; return this; } public String getBatchNo() { return BatchNo; } public DB_AdjustmentsQuery setBatchNo(String value) { this.BatchNo = value; return this; } public String getBatchNoStartsWith() { return BatchNoStartsWith; } public DB_AdjustmentsQuery setBatchNoStartsWith(String value) { this.BatchNoStartsWith = value; return this; } public String getBatchNoEndsWith() { return BatchNoEndsWith; } public DB_AdjustmentsQuery setBatchNoEndsWith(String value) { this.BatchNoEndsWith = value; return this; } public String getBatchNoContains() { return BatchNoContains; } public DB_AdjustmentsQuery setBatchNoContains(String value) { this.BatchNoContains = value; return this; } public String getBatchNoLike() { return BatchNoLike; } public DB_AdjustmentsQuery setBatchNoLike(String value) { this.BatchNoLike = value; return this; } public ArrayList getBatchNoBetween() { return BatchNoBetween; } public DB_AdjustmentsQuery setBatchNoBetween(ArrayList value) { this.BatchNoBetween = value; return this; } public ArrayList getBatchNoIn() { return BatchNoIn; } public DB_AdjustmentsQuery setBatchNoIn(ArrayList value) { this.BatchNoIn = value; return this; } public Date getBatchDate() { return BatchDate; } public DB_AdjustmentsQuery setBatchDate(Date value) { this.BatchDate = value; return this; } public Date getBatchDateGreaterThanOrEqualTo() { return BatchDateGreaterThanOrEqualTo; } public DB_AdjustmentsQuery setBatchDateGreaterThanOrEqualTo(Date value) { this.BatchDateGreaterThanOrEqualTo = value; return this; } public Date getBatchDateGreaterThan() { return BatchDateGreaterThan; } public DB_AdjustmentsQuery setBatchDateGreaterThan(Date value) { this.BatchDateGreaterThan = value; return this; } public Date getBatchDateLessThan() { return BatchDateLessThan; } public DB_AdjustmentsQuery setBatchDateLessThan(Date value) { this.BatchDateLessThan = value; return this; } public Date getBatchDateLessThanOrEqualTo() { return BatchDateLessThanOrEqualTo; } public DB_AdjustmentsQuery setBatchDateLessThanOrEqualTo(Date value) { this.BatchDateLessThanOrEqualTo = value; return this; } public Date getBatchDateNotEqualTo() { return BatchDateNotEqualTo; } public DB_AdjustmentsQuery setBatchDateNotEqualTo(Date value) { this.BatchDateNotEqualTo = value; return this; } public ArrayList getBatchDateBetween() { return BatchDateBetween; } public DB_AdjustmentsQuery setBatchDateBetween(ArrayList value) { this.BatchDateBetween = value; return this; } public ArrayList getBatchDateIn() { return BatchDateIn; } public DB_AdjustmentsQuery setBatchDateIn(ArrayList value) { this.BatchDateIn = value; return this; } public Short getStatus() { return Status; } public DB_AdjustmentsQuery setStatus(Short value) { this.Status = value; return this; } public Short getStatusGreaterThanOrEqualTo() { return StatusGreaterThanOrEqualTo; } public DB_AdjustmentsQuery setStatusGreaterThanOrEqualTo(Short value) { this.StatusGreaterThanOrEqualTo = value; return this; } public Short getStatusGreaterThan() { return StatusGreaterThan; } public DB_AdjustmentsQuery setStatusGreaterThan(Short value) { this.StatusGreaterThan = value; return this; } public Short getStatusLessThan() { return StatusLessThan; } public DB_AdjustmentsQuery setStatusLessThan(Short value) { this.StatusLessThan = value; return this; } public Short getStatusLessThanOrEqualTo() { return StatusLessThanOrEqualTo; } public DB_AdjustmentsQuery setStatusLessThanOrEqualTo(Short value) { this.StatusLessThanOrEqualTo = value; return this; } public Short getStatusNotEqualTo() { return StatusNotEqualTo; } public DB_AdjustmentsQuery setStatusNotEqualTo(Short value) { this.StatusNotEqualTo = value; return this; } public ArrayList getStatusBetween() { return StatusBetween; } public DB_AdjustmentsQuery setStatusBetween(ArrayList value) { this.StatusBetween = value; return this; } public ArrayList getStatusIn() { return StatusIn; } public DB_AdjustmentsQuery setStatusIn(ArrayList value) { this.StatusIn = value; return this; } public String getLastSavedByHrStaffRecID() { return LastSavedBy_HR_Staff_RecID; } public DB_AdjustmentsQuery setLastSavedByHrStaffRecID(String value) { this.LastSavedBy_HR_Staff_RecID = value; return this; } public String getLastSavedByHrStaffRecIDStartsWith() { return LastSavedBy_HR_Staff_RecIDStartsWith; } public DB_AdjustmentsQuery setLastSavedByHrStaffRecIDStartsWith(String value) { this.LastSavedBy_HR_Staff_RecIDStartsWith = value; return this; } public String getLastSavedByHrStaffRecIDEndsWith() { return LastSavedBy_HR_Staff_RecIDEndsWith; } public DB_AdjustmentsQuery setLastSavedByHrStaffRecIDEndsWith(String value) { this.LastSavedBy_HR_Staff_RecIDEndsWith = value; return this; } public String getLastSavedByHrStaffRecIDContains() { return LastSavedBy_HR_Staff_RecIDContains; } public DB_AdjustmentsQuery setLastSavedByHrStaffRecIDContains(String value) { this.LastSavedBy_HR_Staff_RecIDContains = value; return this; } public String getLastSavedByHrStaffRecIDLike() { return LastSavedBy_HR_Staff_RecIDLike; } public DB_AdjustmentsQuery setLastSavedByHrStaffRecIDLike(String value) { this.LastSavedBy_HR_Staff_RecIDLike = value; return this; } public ArrayList getLastSavedByHrStaffRecIDBetween() { return LastSavedBy_HR_Staff_RecIDBetween; } public DB_AdjustmentsQuery setLastSavedByHrStaffRecIDBetween(ArrayList value) { this.LastSavedBy_HR_Staff_RecIDBetween = value; return this; } public ArrayList getLastSavedByHrStaffRecIDIn() { return LastSavedBy_HR_Staff_RecIDIn; } public DB_AdjustmentsQuery setLastSavedByHrStaffRecIDIn(ArrayList value) { this.LastSavedBy_HR_Staff_RecIDIn = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public DB_AdjustmentsQuery setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getLastSavedDateTimeGreaterThanOrEqualTo() { return LastSavedDateTimeGreaterThanOrEqualTo; } public DB_AdjustmentsQuery setLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.LastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeGreaterThan() { return LastSavedDateTimeGreaterThan; } public DB_AdjustmentsQuery setLastSavedDateTimeGreaterThan(Date value) { this.LastSavedDateTimeGreaterThan = value; return this; } public Date getLastSavedDateTimeLessThan() { return LastSavedDateTimeLessThan; } public DB_AdjustmentsQuery setLastSavedDateTimeLessThan(Date value) { this.LastSavedDateTimeLessThan = value; return this; } public Date getLastSavedDateTimeLessThanOrEqualTo() { return LastSavedDateTimeLessThanOrEqualTo; } public DB_AdjustmentsQuery setLastSavedDateTimeLessThanOrEqualTo(Date value) { this.LastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeNotEqualTo() { return LastSavedDateTimeNotEqualTo; } public DB_AdjustmentsQuery setLastSavedDateTimeNotEqualTo(Date value) { this.LastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getLastSavedDateTimeBetween() { return LastSavedDateTimeBetween; } public DB_AdjustmentsQuery setLastSavedDateTimeBetween(ArrayList value) { this.LastSavedDateTimeBetween = value; return this; } public ArrayList getLastSavedDateTimeIn() { return LastSavedDateTimeIn; } public DB_AdjustmentsQuery setLastSavedDateTimeIn(ArrayList value) { this.LastSavedDateTimeIn = value; return this; } public String getDescription() { return Description; } public DB_AdjustmentsQuery setDescription(String value) { this.Description = value; return this; } public String getDescriptionStartsWith() { return DescriptionStartsWith; } public DB_AdjustmentsQuery setDescriptionStartsWith(String value) { this.DescriptionStartsWith = value; return this; } public String getDescriptionEndsWith() { return DescriptionEndsWith; } public DB_AdjustmentsQuery setDescriptionEndsWith(String value) { this.DescriptionEndsWith = value; return this; } public String getDescriptionContains() { return DescriptionContains; } public DB_AdjustmentsQuery setDescriptionContains(String value) { this.DescriptionContains = value; return this; } public String getDescriptionLike() { return DescriptionLike; } public DB_AdjustmentsQuery setDescriptionLike(String value) { this.DescriptionLike = value; return this; } public ArrayList getDescriptionBetween() { return DescriptionBetween; } public DB_AdjustmentsQuery setDescriptionBetween(ArrayList value) { this.DescriptionBetween = value; return this; } public ArrayList getDescriptionIn() { return DescriptionIn; } public DB_AdjustmentsQuery setDescriptionIn(ArrayList value) { this.DescriptionIn = value; return this; } public ArrayList getRowHash() { return RowHash; } public DB_AdjustmentsQuery setRowHash(ArrayList value) { this.RowHash = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class DB_APIKeyQuery extends QueryDb implements IReturn> { public UUID RecID = null; public ArrayList RecIDIn = null; public String Name = null; public String NameStartsWith = null; public String NameEndsWith = null; public String NameContains = null; public String NameLike = null; public ArrayList NameBetween = null; public ArrayList NameIn = null; public String DB_Main_DebtorID = null; public String DB_Main_DebtorIDStartsWith = null; public String DB_Main_DebtorIDEndsWith = null; public String DB_Main_DebtorIDContains = null; public String DB_Main_DebtorIDLike = null; public ArrayList DB_Main_DebtorIDBetween = null; public ArrayList DB_Main_DebtorIDIn = null; public String HR_Staff_StaffID = null; public String HR_Staff_StaffIDStartsWith = null; public String HR_Staff_StaffIDEndsWith = null; public String HR_Staff_StaffIDContains = null; public String HR_Staff_StaffIDLike = null; public ArrayList HR_Staff_StaffIDBetween = null; public ArrayList HR_Staff_StaffIDIn = null; public Date CreatedDateTime = null; public Date CreatedDateTimeGreaterThanOrEqualTo = null; public Date CreatedDateTimeGreaterThan = null; public Date CreatedDateTimeLessThan = null; public Date CreatedDateTimeLessThanOrEqualTo = null; public Date CreatedDateTimeNotEqualTo = null; public ArrayList CreatedDateTimeBetween = null; public ArrayList CreatedDateTimeIn = null; public Date ExpiryDateTime = null; public Date ExpiryDateTimeGreaterThanOrEqualTo = null; public Date ExpiryDateTimeGreaterThan = null; public Date ExpiryDateTimeLessThan = null; public Date ExpiryDateTimeLessThanOrEqualTo = null; public Date ExpiryDateTimeNotEqualTo = null; public ArrayList ExpiryDateTimeBetween = null; public ArrayList ExpiryDateTimeIn = null; public Date CancelledDateTime = null; public Date CancelledDateTimeGreaterThanOrEqualTo = null; public Date CancelledDateTimeGreaterThan = null; public Date CancelledDateTimeLessThan = null; public Date CancelledDateTimeLessThanOrEqualTo = null; public Date CancelledDateTimeNotEqualTo = null; public ArrayList CancelledDateTimeBetween = null; public ArrayList CancelledDateTimeIn = null; public Date LastSavedDateTime = null; public Date LastSavedDateTimeGreaterThanOrEqualTo = null; public Date LastSavedDateTimeGreaterThan = null; public Date LastSavedDateTimeLessThan = null; public Date LastSavedDateTimeLessThanOrEqualTo = null; public Date LastSavedDateTimeNotEqualTo = null; public ArrayList LastSavedDateTimeBetween = null; public ArrayList LastSavedDateTimeIn = null; public String KeyValue = null; public String KeyValueStartsWith = null; public String KeyValueEndsWith = null; public String KeyValueContains = null; public String KeyValueLike = null; public ArrayList KeyValueBetween = null; public ArrayList KeyValueIn = null; public Boolean IsEnabled = null; public Integer ItemNo = null; public Integer ItemNoGreaterThanOrEqualTo = null; public Integer ItemNoGreaterThan = null; public Integer ItemNoLessThan = null; public Integer ItemNoLessThanOrEqualTo = null; public Integer ItemNoNotEqualTo = null; public ArrayList ItemNoBetween = null; public ArrayList ItemNoIn = null; public ArrayList RowHash = null; public UUID getRecID() { return RecID; } public DB_APIKeyQuery setRecID(UUID value) { this.RecID = value; return this; } public ArrayList getRecIDIn() { return RecIDIn; } public DB_APIKeyQuery setRecIDIn(ArrayList value) { this.RecIDIn = value; return this; } public String getName() { return Name; } public DB_APIKeyQuery setName(String value) { this.Name = value; return this; } public String getNameStartsWith() { return NameStartsWith; } public DB_APIKeyQuery setNameStartsWith(String value) { this.NameStartsWith = value; return this; } public String getNameEndsWith() { return NameEndsWith; } public DB_APIKeyQuery setNameEndsWith(String value) { this.NameEndsWith = value; return this; } public String getNameContains() { return NameContains; } public DB_APIKeyQuery setNameContains(String value) { this.NameContains = value; return this; } public String getNameLike() { return NameLike; } public DB_APIKeyQuery setNameLike(String value) { this.NameLike = value; return this; } public ArrayList getNameBetween() { return NameBetween; } public DB_APIKeyQuery setNameBetween(ArrayList value) { this.NameBetween = value; return this; } public ArrayList getNameIn() { return NameIn; } public DB_APIKeyQuery setNameIn(ArrayList value) { this.NameIn = value; return this; } public String getDbMainDebtorID() { return DB_Main_DebtorID; } public DB_APIKeyQuery setDbMainDebtorID(String value) { this.DB_Main_DebtorID = value; return this; } public String getDbMainDebtorIDStartsWith() { return DB_Main_DebtorIDStartsWith; } public DB_APIKeyQuery setDbMainDebtorIDStartsWith(String value) { this.DB_Main_DebtorIDStartsWith = value; return this; } public String getDbMainDebtorIDEndsWith() { return DB_Main_DebtorIDEndsWith; } public DB_APIKeyQuery setDbMainDebtorIDEndsWith(String value) { this.DB_Main_DebtorIDEndsWith = value; return this; } public String getDbMainDebtorIDContains() { return DB_Main_DebtorIDContains; } public DB_APIKeyQuery setDbMainDebtorIDContains(String value) { this.DB_Main_DebtorIDContains = value; return this; } public String getDbMainDebtorIDLike() { return DB_Main_DebtorIDLike; } public DB_APIKeyQuery setDbMainDebtorIDLike(String value) { this.DB_Main_DebtorIDLike = value; return this; } public ArrayList getDbMainDebtorIDBetween() { return DB_Main_DebtorIDBetween; } public DB_APIKeyQuery setDbMainDebtorIDBetween(ArrayList value) { this.DB_Main_DebtorIDBetween = value; return this; } public ArrayList getDbMainDebtorIDIn() { return DB_Main_DebtorIDIn; } public DB_APIKeyQuery setDbMainDebtorIDIn(ArrayList value) { this.DB_Main_DebtorIDIn = value; return this; } public String getHrStaffStaffID() { return HR_Staff_StaffID; } public DB_APIKeyQuery setHrStaffStaffID(String value) { this.HR_Staff_StaffID = value; return this; } public String getHrStaffStaffIDStartsWith() { return HR_Staff_StaffIDStartsWith; } public DB_APIKeyQuery setHrStaffStaffIDStartsWith(String value) { this.HR_Staff_StaffIDStartsWith = value; return this; } public String getHrStaffStaffIDEndsWith() { return HR_Staff_StaffIDEndsWith; } public DB_APIKeyQuery setHrStaffStaffIDEndsWith(String value) { this.HR_Staff_StaffIDEndsWith = value; return this; } public String getHrStaffStaffIDContains() { return HR_Staff_StaffIDContains; } public DB_APIKeyQuery setHrStaffStaffIDContains(String value) { this.HR_Staff_StaffIDContains = value; return this; } public String getHrStaffStaffIDLike() { return HR_Staff_StaffIDLike; } public DB_APIKeyQuery setHrStaffStaffIDLike(String value) { this.HR_Staff_StaffIDLike = value; return this; } public ArrayList getHrStaffStaffIDBetween() { return HR_Staff_StaffIDBetween; } public DB_APIKeyQuery setHrStaffStaffIDBetween(ArrayList value) { this.HR_Staff_StaffIDBetween = value; return this; } public ArrayList getHrStaffStaffIDIn() { return HR_Staff_StaffIDIn; } public DB_APIKeyQuery setHrStaffStaffIDIn(ArrayList value) { this.HR_Staff_StaffIDIn = value; return this; } public Date getCreatedDateTime() { return CreatedDateTime; } public DB_APIKeyQuery setCreatedDateTime(Date value) { this.CreatedDateTime = value; return this; } public Date getCreatedDateTimeGreaterThanOrEqualTo() { return CreatedDateTimeGreaterThanOrEqualTo; } public DB_APIKeyQuery setCreatedDateTimeGreaterThanOrEqualTo(Date value) { this.CreatedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getCreatedDateTimeGreaterThan() { return CreatedDateTimeGreaterThan; } public DB_APIKeyQuery setCreatedDateTimeGreaterThan(Date value) { this.CreatedDateTimeGreaterThan = value; return this; } public Date getCreatedDateTimeLessThan() { return CreatedDateTimeLessThan; } public DB_APIKeyQuery setCreatedDateTimeLessThan(Date value) { this.CreatedDateTimeLessThan = value; return this; } public Date getCreatedDateTimeLessThanOrEqualTo() { return CreatedDateTimeLessThanOrEqualTo; } public DB_APIKeyQuery setCreatedDateTimeLessThanOrEqualTo(Date value) { this.CreatedDateTimeLessThanOrEqualTo = value; return this; } public Date getCreatedDateTimeNotEqualTo() { return CreatedDateTimeNotEqualTo; } public DB_APIKeyQuery setCreatedDateTimeNotEqualTo(Date value) { this.CreatedDateTimeNotEqualTo = value; return this; } public ArrayList getCreatedDateTimeBetween() { return CreatedDateTimeBetween; } public DB_APIKeyQuery setCreatedDateTimeBetween(ArrayList value) { this.CreatedDateTimeBetween = value; return this; } public ArrayList getCreatedDateTimeIn() { return CreatedDateTimeIn; } public DB_APIKeyQuery setCreatedDateTimeIn(ArrayList value) { this.CreatedDateTimeIn = value; return this; } public Date getExpiryDateTime() { return ExpiryDateTime; } public DB_APIKeyQuery setExpiryDateTime(Date value) { this.ExpiryDateTime = value; return this; } public Date getExpiryDateTimeGreaterThanOrEqualTo() { return ExpiryDateTimeGreaterThanOrEqualTo; } public DB_APIKeyQuery setExpiryDateTimeGreaterThanOrEqualTo(Date value) { this.ExpiryDateTimeGreaterThanOrEqualTo = value; return this; } public Date getExpiryDateTimeGreaterThan() { return ExpiryDateTimeGreaterThan; } public DB_APIKeyQuery setExpiryDateTimeGreaterThan(Date value) { this.ExpiryDateTimeGreaterThan = value; return this; } public Date getExpiryDateTimeLessThan() { return ExpiryDateTimeLessThan; } public DB_APIKeyQuery setExpiryDateTimeLessThan(Date value) { this.ExpiryDateTimeLessThan = value; return this; } public Date getExpiryDateTimeLessThanOrEqualTo() { return ExpiryDateTimeLessThanOrEqualTo; } public DB_APIKeyQuery setExpiryDateTimeLessThanOrEqualTo(Date value) { this.ExpiryDateTimeLessThanOrEqualTo = value; return this; } public Date getExpiryDateTimeNotEqualTo() { return ExpiryDateTimeNotEqualTo; } public DB_APIKeyQuery setExpiryDateTimeNotEqualTo(Date value) { this.ExpiryDateTimeNotEqualTo = value; return this; } public ArrayList getExpiryDateTimeBetween() { return ExpiryDateTimeBetween; } public DB_APIKeyQuery setExpiryDateTimeBetween(ArrayList value) { this.ExpiryDateTimeBetween = value; return this; } public ArrayList getExpiryDateTimeIn() { return ExpiryDateTimeIn; } public DB_APIKeyQuery setExpiryDateTimeIn(ArrayList value) { this.ExpiryDateTimeIn = value; return this; } public Date getCancelledDateTime() { return CancelledDateTime; } public DB_APIKeyQuery setCancelledDateTime(Date value) { this.CancelledDateTime = value; return this; } public Date getCancelledDateTimeGreaterThanOrEqualTo() { return CancelledDateTimeGreaterThanOrEqualTo; } public DB_APIKeyQuery setCancelledDateTimeGreaterThanOrEqualTo(Date value) { this.CancelledDateTimeGreaterThanOrEqualTo = value; return this; } public Date getCancelledDateTimeGreaterThan() { return CancelledDateTimeGreaterThan; } public DB_APIKeyQuery setCancelledDateTimeGreaterThan(Date value) { this.CancelledDateTimeGreaterThan = value; return this; } public Date getCancelledDateTimeLessThan() { return CancelledDateTimeLessThan; } public DB_APIKeyQuery setCancelledDateTimeLessThan(Date value) { this.CancelledDateTimeLessThan = value; return this; } public Date getCancelledDateTimeLessThanOrEqualTo() { return CancelledDateTimeLessThanOrEqualTo; } public DB_APIKeyQuery setCancelledDateTimeLessThanOrEqualTo(Date value) { this.CancelledDateTimeLessThanOrEqualTo = value; return this; } public Date getCancelledDateTimeNotEqualTo() { return CancelledDateTimeNotEqualTo; } public DB_APIKeyQuery setCancelledDateTimeNotEqualTo(Date value) { this.CancelledDateTimeNotEqualTo = value; return this; } public ArrayList getCancelledDateTimeBetween() { return CancelledDateTimeBetween; } public DB_APIKeyQuery setCancelledDateTimeBetween(ArrayList value) { this.CancelledDateTimeBetween = value; return this; } public ArrayList getCancelledDateTimeIn() { return CancelledDateTimeIn; } public DB_APIKeyQuery setCancelledDateTimeIn(ArrayList value) { this.CancelledDateTimeIn = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public DB_APIKeyQuery setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getLastSavedDateTimeGreaterThanOrEqualTo() { return LastSavedDateTimeGreaterThanOrEqualTo; } public DB_APIKeyQuery setLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.LastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeGreaterThan() { return LastSavedDateTimeGreaterThan; } public DB_APIKeyQuery setLastSavedDateTimeGreaterThan(Date value) { this.LastSavedDateTimeGreaterThan = value; return this; } public Date getLastSavedDateTimeLessThan() { return LastSavedDateTimeLessThan; } public DB_APIKeyQuery setLastSavedDateTimeLessThan(Date value) { this.LastSavedDateTimeLessThan = value; return this; } public Date getLastSavedDateTimeLessThanOrEqualTo() { return LastSavedDateTimeLessThanOrEqualTo; } public DB_APIKeyQuery setLastSavedDateTimeLessThanOrEqualTo(Date value) { this.LastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeNotEqualTo() { return LastSavedDateTimeNotEqualTo; } public DB_APIKeyQuery setLastSavedDateTimeNotEqualTo(Date value) { this.LastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getLastSavedDateTimeBetween() { return LastSavedDateTimeBetween; } public DB_APIKeyQuery setLastSavedDateTimeBetween(ArrayList value) { this.LastSavedDateTimeBetween = value; return this; } public ArrayList getLastSavedDateTimeIn() { return LastSavedDateTimeIn; } public DB_APIKeyQuery setLastSavedDateTimeIn(ArrayList value) { this.LastSavedDateTimeIn = value; return this; } public String getKeyValue() { return KeyValue; } public DB_APIKeyQuery setKeyValue(String value) { this.KeyValue = value; return this; } public String getKeyValueStartsWith() { return KeyValueStartsWith; } public DB_APIKeyQuery setKeyValueStartsWith(String value) { this.KeyValueStartsWith = value; return this; } public String getKeyValueEndsWith() { return KeyValueEndsWith; } public DB_APIKeyQuery setKeyValueEndsWith(String value) { this.KeyValueEndsWith = value; return this; } public String getKeyValueContains() { return KeyValueContains; } public DB_APIKeyQuery setKeyValueContains(String value) { this.KeyValueContains = value; return this; } public String getKeyValueLike() { return KeyValueLike; } public DB_APIKeyQuery setKeyValueLike(String value) { this.KeyValueLike = value; return this; } public ArrayList getKeyValueBetween() { return KeyValueBetween; } public DB_APIKeyQuery setKeyValueBetween(ArrayList value) { this.KeyValueBetween = value; return this; } public ArrayList getKeyValueIn() { return KeyValueIn; } public DB_APIKeyQuery setKeyValueIn(ArrayList value) { this.KeyValueIn = value; return this; } public Boolean getIsEnabled() { return IsEnabled; } public DB_APIKeyQuery setIsEnabled(Boolean value) { this.IsEnabled = value; return this; } public Integer getItemNo() { return ItemNo; } public DB_APIKeyQuery setItemNo(Integer value) { this.ItemNo = value; return this; } public Integer getItemNoGreaterThanOrEqualTo() { return ItemNoGreaterThanOrEqualTo; } public DB_APIKeyQuery setItemNoGreaterThanOrEqualTo(Integer value) { this.ItemNoGreaterThanOrEqualTo = value; return this; } public Integer getItemNoGreaterThan() { return ItemNoGreaterThan; } public DB_APIKeyQuery setItemNoGreaterThan(Integer value) { this.ItemNoGreaterThan = value; return this; } public Integer getItemNoLessThan() { return ItemNoLessThan; } public DB_APIKeyQuery setItemNoLessThan(Integer value) { this.ItemNoLessThan = value; return this; } public Integer getItemNoLessThanOrEqualTo() { return ItemNoLessThanOrEqualTo; } public DB_APIKeyQuery setItemNoLessThanOrEqualTo(Integer value) { this.ItemNoLessThanOrEqualTo = value; return this; } public Integer getItemNoNotEqualTo() { return ItemNoNotEqualTo; } public DB_APIKeyQuery setItemNoNotEqualTo(Integer value) { this.ItemNoNotEqualTo = value; return this; } public ArrayList getItemNoBetween() { return ItemNoBetween; } public DB_APIKeyQuery setItemNoBetween(ArrayList value) { this.ItemNoBetween = value; return this; } public ArrayList getItemNoIn() { return ItemNoIn; } public DB_APIKeyQuery setItemNoIn(ArrayList value) { this.ItemNoIn = value; return this; } public ArrayList getRowHash() { return RowHash; } public DB_APIKeyQuery setRowHash(ArrayList value) { this.RowHash = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class DB_AuditQuery extends QueryDb implements IReturn> { public String DebtorID = null; public String DebtorIDStartsWith = null; public String DebtorIDEndsWith = null; public String DebtorIDContains = null; public String DebtorIDLike = null; public ArrayList DebtorIDBetween = null; public ArrayList DebtorIDIn = null; public BigDecimal DebtorTotal = null; public BigDecimal DebtorTotalGreaterThanOrEqualTo = null; public BigDecimal DebtorTotalGreaterThan = null; public BigDecimal DebtorTotalLessThan = null; public BigDecimal DebtorTotalLessThanOrEqualTo = null; public BigDecimal DebtorTotalNotEqualTo = null; public ArrayList DebtorTotalBetween = null; public ArrayList DebtorTotalIn = null; public String ReportGroup = null; public String ReportGroupStartsWith = null; public String ReportGroupEndsWith = null; public String ReportGroupContains = null; public String ReportGroupLike = null; public ArrayList ReportGroupBetween = null; public ArrayList ReportGroupIn = null; public String getDebtorID() { return DebtorID; } public DB_AuditQuery setDebtorID(String value) { this.DebtorID = value; return this; } public String getDebtorIDStartsWith() { return DebtorIDStartsWith; } public DB_AuditQuery setDebtorIDStartsWith(String value) { this.DebtorIDStartsWith = value; return this; } public String getDebtorIDEndsWith() { return DebtorIDEndsWith; } public DB_AuditQuery setDebtorIDEndsWith(String value) { this.DebtorIDEndsWith = value; return this; } public String getDebtorIDContains() { return DebtorIDContains; } public DB_AuditQuery setDebtorIDContains(String value) { this.DebtorIDContains = value; return this; } public String getDebtorIDLike() { return DebtorIDLike; } public DB_AuditQuery setDebtorIDLike(String value) { this.DebtorIDLike = value; return this; } public ArrayList getDebtorIDBetween() { return DebtorIDBetween; } public DB_AuditQuery setDebtorIDBetween(ArrayList value) { this.DebtorIDBetween = value; return this; } public ArrayList getDebtorIDIn() { return DebtorIDIn; } public DB_AuditQuery setDebtorIDIn(ArrayList value) { this.DebtorIDIn = value; return this; } public BigDecimal getDebtorTotal() { return DebtorTotal; } public DB_AuditQuery setDebtorTotal(BigDecimal value) { this.DebtorTotal = value; return this; } public BigDecimal getDebtorTotalGreaterThanOrEqualTo() { return DebtorTotalGreaterThanOrEqualTo; } public DB_AuditQuery setDebtorTotalGreaterThanOrEqualTo(BigDecimal value) { this.DebtorTotalGreaterThanOrEqualTo = value; return this; } public BigDecimal getDebtorTotalGreaterThan() { return DebtorTotalGreaterThan; } public DB_AuditQuery setDebtorTotalGreaterThan(BigDecimal value) { this.DebtorTotalGreaterThan = value; return this; } public BigDecimal getDebtorTotalLessThan() { return DebtorTotalLessThan; } public DB_AuditQuery setDebtorTotalLessThan(BigDecimal value) { this.DebtorTotalLessThan = value; return this; } public BigDecimal getDebtorTotalLessThanOrEqualTo() { return DebtorTotalLessThanOrEqualTo; } public DB_AuditQuery setDebtorTotalLessThanOrEqualTo(BigDecimal value) { this.DebtorTotalLessThanOrEqualTo = value; return this; } public BigDecimal getDebtorTotalNotEqualTo() { return DebtorTotalNotEqualTo; } public DB_AuditQuery setDebtorTotalNotEqualTo(BigDecimal value) { this.DebtorTotalNotEqualTo = value; return this; } public ArrayList getDebtorTotalBetween() { return DebtorTotalBetween; } public DB_AuditQuery setDebtorTotalBetween(ArrayList value) { this.DebtorTotalBetween = value; return this; } public ArrayList getDebtorTotalIn() { return DebtorTotalIn; } public DB_AuditQuery setDebtorTotalIn(ArrayList value) { this.DebtorTotalIn = value; return this; } public String getReportGroup() { return ReportGroup; } public DB_AuditQuery setReportGroup(String value) { this.ReportGroup = value; return this; } public String getReportGroupStartsWith() { return ReportGroupStartsWith; } public DB_AuditQuery setReportGroupStartsWith(String value) { this.ReportGroupStartsWith = value; return this; } public String getReportGroupEndsWith() { return ReportGroupEndsWith; } public DB_AuditQuery setReportGroupEndsWith(String value) { this.ReportGroupEndsWith = value; return this; } public String getReportGroupContains() { return ReportGroupContains; } public DB_AuditQuery setReportGroupContains(String value) { this.ReportGroupContains = value; return this; } public String getReportGroupLike() { return ReportGroupLike; } public DB_AuditQuery setReportGroupLike(String value) { this.ReportGroupLike = value; return this; } public ArrayList getReportGroupBetween() { return ReportGroupBetween; } public DB_AuditQuery setReportGroupBetween(ArrayList value) { this.ReportGroupBetween = value; return this; } public ArrayList getReportGroupIn() { return ReportGroupIn; } public DB_AuditQuery setReportGroupIn(ArrayList value) { this.ReportGroupIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class DB_AutoTranQuery extends QueryDb implements IReturn> { public String DBAutoTranID = null; public String DBAutoTranIDStartsWith = null; public String DBAutoTranIDEndsWith = null; public String DBAutoTranIDContains = null; public String DBAutoTranIDLike = null; public ArrayList DBAutoTranIDBetween = null; public ArrayList DBAutoTranIDIn = null; public Date LastSavedDateTime = null; public Date LastSavedDateTimeGreaterThanOrEqualTo = null; public Date LastSavedDateTimeGreaterThan = null; public Date LastSavedDateTimeLessThan = null; public Date LastSavedDateTimeLessThanOrEqualTo = null; public Date LastSavedDateTimeNotEqualTo = null; public ArrayList LastSavedDateTimeBetween = null; public ArrayList LastSavedDateTimeIn = null; public Date RunDateTime = null; public Date RunDateTimeGreaterThanOrEqualTo = null; public Date RunDateTimeGreaterThan = null; public Date RunDateTimeLessThan = null; public Date RunDateTimeLessThanOrEqualTo = null; public Date RunDateTimeNotEqualTo = null; public ArrayList RunDateTimeBetween = null; public ArrayList RunDateTimeIn = null; public String UserName = null; public String UserNameStartsWith = null; public String UserNameEndsWith = null; public String UserNameContains = null; public String UserNameLike = null; public ArrayList UserNameBetween = null; public ArrayList UserNameIn = null; public String RunNo = null; public String RunNoStartsWith = null; public String RunNoEndsWith = null; public String RunNoContains = null; public String RunNoLike = null; public ArrayList RunNoBetween = null; public ArrayList RunNoIn = null; public String getDbAutoTranID() { return DBAutoTranID; } public DB_AutoTranQuery setDbAutoTranID(String value) { this.DBAutoTranID = value; return this; } public String getDbAutoTranIDStartsWith() { return DBAutoTranIDStartsWith; } public DB_AutoTranQuery setDbAutoTranIDStartsWith(String value) { this.DBAutoTranIDStartsWith = value; return this; } public String getDbAutoTranIDEndsWith() { return DBAutoTranIDEndsWith; } public DB_AutoTranQuery setDbAutoTranIDEndsWith(String value) { this.DBAutoTranIDEndsWith = value; return this; } public String getDbAutoTranIDContains() { return DBAutoTranIDContains; } public DB_AutoTranQuery setDbAutoTranIDContains(String value) { this.DBAutoTranIDContains = value; return this; } public String getDbAutoTranIDLike() { return DBAutoTranIDLike; } public DB_AutoTranQuery setDbAutoTranIDLike(String value) { this.DBAutoTranIDLike = value; return this; } public ArrayList getDbAutoTranIDBetween() { return DBAutoTranIDBetween; } public DB_AutoTranQuery setDbAutoTranIDBetween(ArrayList value) { this.DBAutoTranIDBetween = value; return this; } public ArrayList getDbAutoTranIDIn() { return DBAutoTranIDIn; } public DB_AutoTranQuery setDbAutoTranIDIn(ArrayList value) { this.DBAutoTranIDIn = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public DB_AutoTranQuery setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getLastSavedDateTimeGreaterThanOrEqualTo() { return LastSavedDateTimeGreaterThanOrEqualTo; } public DB_AutoTranQuery setLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.LastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeGreaterThan() { return LastSavedDateTimeGreaterThan; } public DB_AutoTranQuery setLastSavedDateTimeGreaterThan(Date value) { this.LastSavedDateTimeGreaterThan = value; return this; } public Date getLastSavedDateTimeLessThan() { return LastSavedDateTimeLessThan; } public DB_AutoTranQuery setLastSavedDateTimeLessThan(Date value) { this.LastSavedDateTimeLessThan = value; return this; } public Date getLastSavedDateTimeLessThanOrEqualTo() { return LastSavedDateTimeLessThanOrEqualTo; } public DB_AutoTranQuery setLastSavedDateTimeLessThanOrEqualTo(Date value) { this.LastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeNotEqualTo() { return LastSavedDateTimeNotEqualTo; } public DB_AutoTranQuery setLastSavedDateTimeNotEqualTo(Date value) { this.LastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getLastSavedDateTimeBetween() { return LastSavedDateTimeBetween; } public DB_AutoTranQuery setLastSavedDateTimeBetween(ArrayList value) { this.LastSavedDateTimeBetween = value; return this; } public ArrayList getLastSavedDateTimeIn() { return LastSavedDateTimeIn; } public DB_AutoTranQuery setLastSavedDateTimeIn(ArrayList value) { this.LastSavedDateTimeIn = value; return this; } public Date getRunDateTime() { return RunDateTime; } public DB_AutoTranQuery setRunDateTime(Date value) { this.RunDateTime = value; return this; } public Date getRunDateTimeGreaterThanOrEqualTo() { return RunDateTimeGreaterThanOrEqualTo; } public DB_AutoTranQuery setRunDateTimeGreaterThanOrEqualTo(Date value) { this.RunDateTimeGreaterThanOrEqualTo = value; return this; } public Date getRunDateTimeGreaterThan() { return RunDateTimeGreaterThan; } public DB_AutoTranQuery setRunDateTimeGreaterThan(Date value) { this.RunDateTimeGreaterThan = value; return this; } public Date getRunDateTimeLessThan() { return RunDateTimeLessThan; } public DB_AutoTranQuery setRunDateTimeLessThan(Date value) { this.RunDateTimeLessThan = value; return this; } public Date getRunDateTimeLessThanOrEqualTo() { return RunDateTimeLessThanOrEqualTo; } public DB_AutoTranQuery setRunDateTimeLessThanOrEqualTo(Date value) { this.RunDateTimeLessThanOrEqualTo = value; return this; } public Date getRunDateTimeNotEqualTo() { return RunDateTimeNotEqualTo; } public DB_AutoTranQuery setRunDateTimeNotEqualTo(Date value) { this.RunDateTimeNotEqualTo = value; return this; } public ArrayList getRunDateTimeBetween() { return RunDateTimeBetween; } public DB_AutoTranQuery setRunDateTimeBetween(ArrayList value) { this.RunDateTimeBetween = value; return this; } public ArrayList getRunDateTimeIn() { return RunDateTimeIn; } public DB_AutoTranQuery setRunDateTimeIn(ArrayList value) { this.RunDateTimeIn = value; return this; } public String getUserName() { return UserName; } public DB_AutoTranQuery setUserName(String value) { this.UserName = value; return this; } public String getUserNameStartsWith() { return UserNameStartsWith; } public DB_AutoTranQuery setUserNameStartsWith(String value) { this.UserNameStartsWith = value; return this; } public String getUserNameEndsWith() { return UserNameEndsWith; } public DB_AutoTranQuery setUserNameEndsWith(String value) { this.UserNameEndsWith = value; return this; } public String getUserNameContains() { return UserNameContains; } public DB_AutoTranQuery setUserNameContains(String value) { this.UserNameContains = value; return this; } public String getUserNameLike() { return UserNameLike; } public DB_AutoTranQuery setUserNameLike(String value) { this.UserNameLike = value; return this; } public ArrayList getUserNameBetween() { return UserNameBetween; } public DB_AutoTranQuery setUserNameBetween(ArrayList value) { this.UserNameBetween = value; return this; } public ArrayList getUserNameIn() { return UserNameIn; } public DB_AutoTranQuery setUserNameIn(ArrayList value) { this.UserNameIn = value; return this; } public String getRunNo() { return RunNo; } public DB_AutoTranQuery setRunNo(String value) { this.RunNo = value; return this; } public String getRunNoStartsWith() { return RunNoStartsWith; } public DB_AutoTranQuery setRunNoStartsWith(String value) { this.RunNoStartsWith = value; return this; } public String getRunNoEndsWith() { return RunNoEndsWith; } public DB_AutoTranQuery setRunNoEndsWith(String value) { this.RunNoEndsWith = value; return this; } public String getRunNoContains() { return RunNoContains; } public DB_AutoTranQuery setRunNoContains(String value) { this.RunNoContains = value; return this; } public String getRunNoLike() { return RunNoLike; } public DB_AutoTranQuery setRunNoLike(String value) { this.RunNoLike = value; return this; } public ArrayList getRunNoBetween() { return RunNoBetween; } public DB_AutoTranQuery setRunNoBetween(ArrayList value) { this.RunNoBetween = value; return this; } public ArrayList getRunNoIn() { return RunNoIn; } public DB_AutoTranQuery setRunNoIn(ArrayList value) { this.RunNoIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class DB_AutoTranLinesQuery extends QueryDb implements IReturn> { public String DBAutoTranLineID = null; public String DBAutoTranLineIDStartsWith = null; public String DBAutoTranLineIDEndsWith = null; public String DBAutoTranLineIDContains = null; public String DBAutoTranLineIDLike = null; public ArrayList DBAutoTranLineIDBetween = null; public ArrayList DBAutoTranLineIDIn = null; public String DBAutoTranID = null; public String DBAutoTranIDStartsWith = null; public String DBAutoTranIDEndsWith = null; public String DBAutoTranIDContains = null; public String DBAutoTranIDLike = null; public ArrayList DBAutoTranIDBetween = null; public ArrayList DBAutoTranIDIn = null; public String SourceDBBatchID = null; public String SourceDBBatchIDStartsWith = null; public String SourceDBBatchIDEndsWith = null; public String SourceDBBatchIDContains = null; public String SourceDBBatchIDLike = null; public ArrayList SourceDBBatchIDBetween = null; public ArrayList SourceDBBatchIDIn = null; public String SourceBatchNo = null; public String SourceBatchNoStartsWith = null; public String SourceBatchNoEndsWith = null; public String SourceBatchNoContains = null; public String SourceBatchNoLike = null; public ArrayList SourceBatchNoBetween = null; public ArrayList SourceBatchNoIn = null; public Short SourceReceiptType = null; public Short SourceReceiptTypeGreaterThanOrEqualTo = null; public Short SourceReceiptTypeGreaterThan = null; public Short SourceReceiptTypeLessThan = null; public Short SourceReceiptTypeLessThanOrEqualTo = null; public Short SourceReceiptTypeNotEqualTo = null; public ArrayList SourceReceiptTypeBetween = null; public ArrayList SourceReceiptTypeIn = null; public String SourceDesc = null; public String SourceDescStartsWith = null; public String SourceDescEndsWith = null; public String SourceDescContains = null; public String SourceDescLike = null; public ArrayList SourceDescBetween = null; public ArrayList SourceDescIn = null; public Date PostingDue = null; public Date PostingDueGreaterThanOrEqualTo = null; public Date PostingDueGreaterThan = null; public Date PostingDueLessThan = null; public Date PostingDueLessThanOrEqualTo = null; public Date PostingDueNotEqualTo = null; public ArrayList PostingDueBetween = null; public ArrayList PostingDueIn = null; public String Reason = null; public String ReasonStartsWith = null; public String ReasonEndsWith = null; public String ReasonContains = null; public String ReasonLike = null; public ArrayList ReasonBetween = null; public ArrayList ReasonIn = null; public String DestDBBatchID = null; public String DestDBBatchIDStartsWith = null; public String DestDBBatchIDEndsWith = null; public String DestDBBatchIDContains = null; public String DestDBBatchIDLike = null; public ArrayList DestDBBatchIDBetween = null; public ArrayList DestDBBatchIDIn = null; public String DestBatchNo = null; public String DestBatchNoStartsWith = null; public String DestBatchNoEndsWith = null; public String DestBatchNoContains = null; public String DestBatchNoLike = null; public ArrayList DestBatchNoBetween = null; public ArrayList DestBatchNoIn = null; public Short LineNum = null; public Short LineNumGreaterThanOrEqualTo = null; public Short LineNumGreaterThan = null; public Short LineNumLessThan = null; public Short LineNumLessThanOrEqualTo = null; public Short LineNumNotEqualTo = null; public ArrayList LineNumBetween = null; public ArrayList LineNumIn = null; public Date LastSavedDateTime = null; public Date LastSavedDateTimeGreaterThanOrEqualTo = null; public Date LastSavedDateTimeGreaterThan = null; public Date LastSavedDateTimeLessThan = null; public Date LastSavedDateTimeLessThanOrEqualTo = null; public Date LastSavedDateTimeNotEqualTo = null; public ArrayList LastSavedDateTimeBetween = null; public ArrayList LastSavedDateTimeIn = null; public String getDbAutoTranLineID() { return DBAutoTranLineID; } public DB_AutoTranLinesQuery setDbAutoTranLineID(String value) { this.DBAutoTranLineID = value; return this; } public String getDbAutoTranLineIDStartsWith() { return DBAutoTranLineIDStartsWith; } public DB_AutoTranLinesQuery setDbAutoTranLineIDStartsWith(String value) { this.DBAutoTranLineIDStartsWith = value; return this; } public String getDbAutoTranLineIDEndsWith() { return DBAutoTranLineIDEndsWith; } public DB_AutoTranLinesQuery setDbAutoTranLineIDEndsWith(String value) { this.DBAutoTranLineIDEndsWith = value; return this; } public String getDbAutoTranLineIDContains() { return DBAutoTranLineIDContains; } public DB_AutoTranLinesQuery setDbAutoTranLineIDContains(String value) { this.DBAutoTranLineIDContains = value; return this; } public String getDbAutoTranLineIDLike() { return DBAutoTranLineIDLike; } public DB_AutoTranLinesQuery setDbAutoTranLineIDLike(String value) { this.DBAutoTranLineIDLike = value; return this; } public ArrayList getDbAutoTranLineIDBetween() { return DBAutoTranLineIDBetween; } public DB_AutoTranLinesQuery setDbAutoTranLineIDBetween(ArrayList value) { this.DBAutoTranLineIDBetween = value; return this; } public ArrayList getDbAutoTranLineIDIn() { return DBAutoTranLineIDIn; } public DB_AutoTranLinesQuery setDbAutoTranLineIDIn(ArrayList value) { this.DBAutoTranLineIDIn = value; return this; } public String getDbAutoTranID() { return DBAutoTranID; } public DB_AutoTranLinesQuery setDbAutoTranID(String value) { this.DBAutoTranID = value; return this; } public String getDbAutoTranIDStartsWith() { return DBAutoTranIDStartsWith; } public DB_AutoTranLinesQuery setDbAutoTranIDStartsWith(String value) { this.DBAutoTranIDStartsWith = value; return this; } public String getDbAutoTranIDEndsWith() { return DBAutoTranIDEndsWith; } public DB_AutoTranLinesQuery setDbAutoTranIDEndsWith(String value) { this.DBAutoTranIDEndsWith = value; return this; } public String getDbAutoTranIDContains() { return DBAutoTranIDContains; } public DB_AutoTranLinesQuery setDbAutoTranIDContains(String value) { this.DBAutoTranIDContains = value; return this; } public String getDbAutoTranIDLike() { return DBAutoTranIDLike; } public DB_AutoTranLinesQuery setDbAutoTranIDLike(String value) { this.DBAutoTranIDLike = value; return this; } public ArrayList getDbAutoTranIDBetween() { return DBAutoTranIDBetween; } public DB_AutoTranLinesQuery setDbAutoTranIDBetween(ArrayList value) { this.DBAutoTranIDBetween = value; return this; } public ArrayList getDbAutoTranIDIn() { return DBAutoTranIDIn; } public DB_AutoTranLinesQuery setDbAutoTranIDIn(ArrayList value) { this.DBAutoTranIDIn = value; return this; } public String getSourceDBBatchID() { return SourceDBBatchID; } public DB_AutoTranLinesQuery setSourceDBBatchID(String value) { this.SourceDBBatchID = value; return this; } public String getSourceDBBatchIDStartsWith() { return SourceDBBatchIDStartsWith; } public DB_AutoTranLinesQuery setSourceDBBatchIDStartsWith(String value) { this.SourceDBBatchIDStartsWith = value; return this; } public String getSourceDBBatchIDEndsWith() { return SourceDBBatchIDEndsWith; } public DB_AutoTranLinesQuery setSourceDBBatchIDEndsWith(String value) { this.SourceDBBatchIDEndsWith = value; return this; } public String getSourceDBBatchIDContains() { return SourceDBBatchIDContains; } public DB_AutoTranLinesQuery setSourceDBBatchIDContains(String value) { this.SourceDBBatchIDContains = value; return this; } public String getSourceDBBatchIDLike() { return SourceDBBatchIDLike; } public DB_AutoTranLinesQuery setSourceDBBatchIDLike(String value) { this.SourceDBBatchIDLike = value; return this; } public ArrayList getSourceDBBatchIDBetween() { return SourceDBBatchIDBetween; } public DB_AutoTranLinesQuery setSourceDBBatchIDBetween(ArrayList value) { this.SourceDBBatchIDBetween = value; return this; } public ArrayList getSourceDBBatchIDIn() { return SourceDBBatchIDIn; } public DB_AutoTranLinesQuery setSourceDBBatchIDIn(ArrayList value) { this.SourceDBBatchIDIn = value; return this; } public String getSourceBatchNo() { return SourceBatchNo; } public DB_AutoTranLinesQuery setSourceBatchNo(String value) { this.SourceBatchNo = value; return this; } public String getSourceBatchNoStartsWith() { return SourceBatchNoStartsWith; } public DB_AutoTranLinesQuery setSourceBatchNoStartsWith(String value) { this.SourceBatchNoStartsWith = value; return this; } public String getSourceBatchNoEndsWith() { return SourceBatchNoEndsWith; } public DB_AutoTranLinesQuery setSourceBatchNoEndsWith(String value) { this.SourceBatchNoEndsWith = value; return this; } public String getSourceBatchNoContains() { return SourceBatchNoContains; } public DB_AutoTranLinesQuery setSourceBatchNoContains(String value) { this.SourceBatchNoContains = value; return this; } public String getSourceBatchNoLike() { return SourceBatchNoLike; } public DB_AutoTranLinesQuery setSourceBatchNoLike(String value) { this.SourceBatchNoLike = value; return this; } public ArrayList getSourceBatchNoBetween() { return SourceBatchNoBetween; } public DB_AutoTranLinesQuery setSourceBatchNoBetween(ArrayList value) { this.SourceBatchNoBetween = value; return this; } public ArrayList getSourceBatchNoIn() { return SourceBatchNoIn; } public DB_AutoTranLinesQuery setSourceBatchNoIn(ArrayList value) { this.SourceBatchNoIn = value; return this; } public Short getSourceReceiptType() { return SourceReceiptType; } public DB_AutoTranLinesQuery setSourceReceiptType(Short value) { this.SourceReceiptType = value; return this; } public Short getSourceReceiptTypeGreaterThanOrEqualTo() { return SourceReceiptTypeGreaterThanOrEqualTo; } public DB_AutoTranLinesQuery setSourceReceiptTypeGreaterThanOrEqualTo(Short value) { this.SourceReceiptTypeGreaterThanOrEqualTo = value; return this; } public Short getSourceReceiptTypeGreaterThan() { return SourceReceiptTypeGreaterThan; } public DB_AutoTranLinesQuery setSourceReceiptTypeGreaterThan(Short value) { this.SourceReceiptTypeGreaterThan = value; return this; } public Short getSourceReceiptTypeLessThan() { return SourceReceiptTypeLessThan; } public DB_AutoTranLinesQuery setSourceReceiptTypeLessThan(Short value) { this.SourceReceiptTypeLessThan = value; return this; } public Short getSourceReceiptTypeLessThanOrEqualTo() { return SourceReceiptTypeLessThanOrEqualTo; } public DB_AutoTranLinesQuery setSourceReceiptTypeLessThanOrEqualTo(Short value) { this.SourceReceiptTypeLessThanOrEqualTo = value; return this; } public Short getSourceReceiptTypeNotEqualTo() { return SourceReceiptTypeNotEqualTo; } public DB_AutoTranLinesQuery setSourceReceiptTypeNotEqualTo(Short value) { this.SourceReceiptTypeNotEqualTo = value; return this; } public ArrayList getSourceReceiptTypeBetween() { return SourceReceiptTypeBetween; } public DB_AutoTranLinesQuery setSourceReceiptTypeBetween(ArrayList value) { this.SourceReceiptTypeBetween = value; return this; } public ArrayList getSourceReceiptTypeIn() { return SourceReceiptTypeIn; } public DB_AutoTranLinesQuery setSourceReceiptTypeIn(ArrayList value) { this.SourceReceiptTypeIn = value; return this; } public String getSourceDesc() { return SourceDesc; } public DB_AutoTranLinesQuery setSourceDesc(String value) { this.SourceDesc = value; return this; } public String getSourceDescStartsWith() { return SourceDescStartsWith; } public DB_AutoTranLinesQuery setSourceDescStartsWith(String value) { this.SourceDescStartsWith = value; return this; } public String getSourceDescEndsWith() { return SourceDescEndsWith; } public DB_AutoTranLinesQuery setSourceDescEndsWith(String value) { this.SourceDescEndsWith = value; return this; } public String getSourceDescContains() { return SourceDescContains; } public DB_AutoTranLinesQuery setSourceDescContains(String value) { this.SourceDescContains = value; return this; } public String getSourceDescLike() { return SourceDescLike; } public DB_AutoTranLinesQuery setSourceDescLike(String value) { this.SourceDescLike = value; return this; } public ArrayList getSourceDescBetween() { return SourceDescBetween; } public DB_AutoTranLinesQuery setSourceDescBetween(ArrayList value) { this.SourceDescBetween = value; return this; } public ArrayList getSourceDescIn() { return SourceDescIn; } public DB_AutoTranLinesQuery setSourceDescIn(ArrayList value) { this.SourceDescIn = value; return this; } public Date getPostingDue() { return PostingDue; } public DB_AutoTranLinesQuery setPostingDue(Date value) { this.PostingDue = value; return this; } public Date getPostingDueGreaterThanOrEqualTo() { return PostingDueGreaterThanOrEqualTo; } public DB_AutoTranLinesQuery setPostingDueGreaterThanOrEqualTo(Date value) { this.PostingDueGreaterThanOrEqualTo = value; return this; } public Date getPostingDueGreaterThan() { return PostingDueGreaterThan; } public DB_AutoTranLinesQuery setPostingDueGreaterThan(Date value) { this.PostingDueGreaterThan = value; return this; } public Date getPostingDueLessThan() { return PostingDueLessThan; } public DB_AutoTranLinesQuery setPostingDueLessThan(Date value) { this.PostingDueLessThan = value; return this; } public Date getPostingDueLessThanOrEqualTo() { return PostingDueLessThanOrEqualTo; } public DB_AutoTranLinesQuery setPostingDueLessThanOrEqualTo(Date value) { this.PostingDueLessThanOrEqualTo = value; return this; } public Date getPostingDueNotEqualTo() { return PostingDueNotEqualTo; } public DB_AutoTranLinesQuery setPostingDueNotEqualTo(Date value) { this.PostingDueNotEqualTo = value; return this; } public ArrayList getPostingDueBetween() { return PostingDueBetween; } public DB_AutoTranLinesQuery setPostingDueBetween(ArrayList value) { this.PostingDueBetween = value; return this; } public ArrayList getPostingDueIn() { return PostingDueIn; } public DB_AutoTranLinesQuery setPostingDueIn(ArrayList value) { this.PostingDueIn = value; return this; } public String getReason() { return Reason; } public DB_AutoTranLinesQuery setReason(String value) { this.Reason = value; return this; } public String getReasonStartsWith() { return ReasonStartsWith; } public DB_AutoTranLinesQuery setReasonStartsWith(String value) { this.ReasonStartsWith = value; return this; } public String getReasonEndsWith() { return ReasonEndsWith; } public DB_AutoTranLinesQuery setReasonEndsWith(String value) { this.ReasonEndsWith = value; return this; } public String getReasonContains() { return ReasonContains; } public DB_AutoTranLinesQuery setReasonContains(String value) { this.ReasonContains = value; return this; } public String getReasonLike() { return ReasonLike; } public DB_AutoTranLinesQuery setReasonLike(String value) { this.ReasonLike = value; return this; } public ArrayList getReasonBetween() { return ReasonBetween; } public DB_AutoTranLinesQuery setReasonBetween(ArrayList value) { this.ReasonBetween = value; return this; } public ArrayList getReasonIn() { return ReasonIn; } public DB_AutoTranLinesQuery setReasonIn(ArrayList value) { this.ReasonIn = value; return this; } public String getDestDBBatchID() { return DestDBBatchID; } public DB_AutoTranLinesQuery setDestDBBatchID(String value) { this.DestDBBatchID = value; return this; } public String getDestDBBatchIDStartsWith() { return DestDBBatchIDStartsWith; } public DB_AutoTranLinesQuery setDestDBBatchIDStartsWith(String value) { this.DestDBBatchIDStartsWith = value; return this; } public String getDestDBBatchIDEndsWith() { return DestDBBatchIDEndsWith; } public DB_AutoTranLinesQuery setDestDBBatchIDEndsWith(String value) { this.DestDBBatchIDEndsWith = value; return this; } public String getDestDBBatchIDContains() { return DestDBBatchIDContains; } public DB_AutoTranLinesQuery setDestDBBatchIDContains(String value) { this.DestDBBatchIDContains = value; return this; } public String getDestDBBatchIDLike() { return DestDBBatchIDLike; } public DB_AutoTranLinesQuery setDestDBBatchIDLike(String value) { this.DestDBBatchIDLike = value; return this; } public ArrayList getDestDBBatchIDBetween() { return DestDBBatchIDBetween; } public DB_AutoTranLinesQuery setDestDBBatchIDBetween(ArrayList value) { this.DestDBBatchIDBetween = value; return this; } public ArrayList getDestDBBatchIDIn() { return DestDBBatchIDIn; } public DB_AutoTranLinesQuery setDestDBBatchIDIn(ArrayList value) { this.DestDBBatchIDIn = value; return this; } public String getDestBatchNo() { return DestBatchNo; } public DB_AutoTranLinesQuery setDestBatchNo(String value) { this.DestBatchNo = value; return this; } public String getDestBatchNoStartsWith() { return DestBatchNoStartsWith; } public DB_AutoTranLinesQuery setDestBatchNoStartsWith(String value) { this.DestBatchNoStartsWith = value; return this; } public String getDestBatchNoEndsWith() { return DestBatchNoEndsWith; } public DB_AutoTranLinesQuery setDestBatchNoEndsWith(String value) { this.DestBatchNoEndsWith = value; return this; } public String getDestBatchNoContains() { return DestBatchNoContains; } public DB_AutoTranLinesQuery setDestBatchNoContains(String value) { this.DestBatchNoContains = value; return this; } public String getDestBatchNoLike() { return DestBatchNoLike; } public DB_AutoTranLinesQuery setDestBatchNoLike(String value) { this.DestBatchNoLike = value; return this; } public ArrayList getDestBatchNoBetween() { return DestBatchNoBetween; } public DB_AutoTranLinesQuery setDestBatchNoBetween(ArrayList value) { this.DestBatchNoBetween = value; return this; } public ArrayList getDestBatchNoIn() { return DestBatchNoIn; } public DB_AutoTranLinesQuery setDestBatchNoIn(ArrayList value) { this.DestBatchNoIn = value; return this; } public Short getLineNum() { return LineNum; } public DB_AutoTranLinesQuery setLineNum(Short value) { this.LineNum = value; return this; } public Short getLineNumGreaterThanOrEqualTo() { return LineNumGreaterThanOrEqualTo; } public DB_AutoTranLinesQuery setLineNumGreaterThanOrEqualTo(Short value) { this.LineNumGreaterThanOrEqualTo = value; return this; } public Short getLineNumGreaterThan() { return LineNumGreaterThan; } public DB_AutoTranLinesQuery setLineNumGreaterThan(Short value) { this.LineNumGreaterThan = value; return this; } public Short getLineNumLessThan() { return LineNumLessThan; } public DB_AutoTranLinesQuery setLineNumLessThan(Short value) { this.LineNumLessThan = value; return this; } public Short getLineNumLessThanOrEqualTo() { return LineNumLessThanOrEqualTo; } public DB_AutoTranLinesQuery setLineNumLessThanOrEqualTo(Short value) { this.LineNumLessThanOrEqualTo = value; return this; } public Short getLineNumNotEqualTo() { return LineNumNotEqualTo; } public DB_AutoTranLinesQuery setLineNumNotEqualTo(Short value) { this.LineNumNotEqualTo = value; return this; } public ArrayList getLineNumBetween() { return LineNumBetween; } public DB_AutoTranLinesQuery setLineNumBetween(ArrayList value) { this.LineNumBetween = value; return this; } public ArrayList getLineNumIn() { return LineNumIn; } public DB_AutoTranLinesQuery setLineNumIn(ArrayList value) { this.LineNumIn = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public DB_AutoTranLinesQuery setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getLastSavedDateTimeGreaterThanOrEqualTo() { return LastSavedDateTimeGreaterThanOrEqualTo; } public DB_AutoTranLinesQuery setLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.LastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeGreaterThan() { return LastSavedDateTimeGreaterThan; } public DB_AutoTranLinesQuery setLastSavedDateTimeGreaterThan(Date value) { this.LastSavedDateTimeGreaterThan = value; return this; } public Date getLastSavedDateTimeLessThan() { return LastSavedDateTimeLessThan; } public DB_AutoTranLinesQuery setLastSavedDateTimeLessThan(Date value) { this.LastSavedDateTimeLessThan = value; return this; } public Date getLastSavedDateTimeLessThanOrEqualTo() { return LastSavedDateTimeLessThanOrEqualTo; } public DB_AutoTranLinesQuery setLastSavedDateTimeLessThanOrEqualTo(Date value) { this.LastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeNotEqualTo() { return LastSavedDateTimeNotEqualTo; } public DB_AutoTranLinesQuery setLastSavedDateTimeNotEqualTo(Date value) { this.LastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getLastSavedDateTimeBetween() { return LastSavedDateTimeBetween; } public DB_AutoTranLinesQuery setLastSavedDateTimeBetween(ArrayList value) { this.LastSavedDateTimeBetween = value; return this; } public ArrayList getLastSavedDateTimeIn() { return LastSavedDateTimeIn; } public DB_AutoTranLinesQuery setLastSavedDateTimeIn(ArrayList value) { this.LastSavedDateTimeIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class DB_BatchTranLinesQuery extends QueryDb implements IReturn> { public String ReceiptLineID = null; public String ReceiptLineIDStartsWith = null; public String ReceiptLineIDEndsWith = null; public String ReceiptLineIDContains = null; public String ReceiptLineIDLike = null; public ArrayList ReceiptLineIDBetween = null; public ArrayList ReceiptLineIDIn = null; public String ReceiptID = null; public String ReceiptIDStartsWith = null; public String ReceiptIDEndsWith = null; public String ReceiptIDContains = null; public String ReceiptIDLike = null; public ArrayList ReceiptIDBetween = null; public ArrayList ReceiptIDIn = null; public Date LastSavedDateTime = null; public Date LastSavedDateTimeGreaterThanOrEqualTo = null; public Date LastSavedDateTimeGreaterThan = null; public Date LastSavedDateTimeLessThan = null; public Date LastSavedDateTimeLessThanOrEqualTo = null; public Date LastSavedDateTimeNotEqualTo = null; public ArrayList LastSavedDateTimeBetween = null; public ArrayList LastSavedDateTimeIn = null; public String AccountID = null; public String AccountIDStartsWith = null; public String AccountIDEndsWith = null; public String AccountIDContains = null; public String AccountIDLike = null; public ArrayList AccountIDBetween = null; public ArrayList AccountIDIn = null; public String LedgerID = null; public String LedgerIDStartsWith = null; public String LedgerIDEndsWith = null; public String LedgerIDContains = null; public String LedgerIDLike = null; public ArrayList LedgerIDBetween = null; public ArrayList LedgerIDIn = null; public String LineReference = null; public String LineReferenceStartsWith = null; public String LineReferenceEndsWith = null; public String LineReferenceContains = null; public String LineReferenceLike = null; public ArrayList LineReferenceBetween = null; public ArrayList LineReferenceIn = null; public String Remark = null; public String RemarkStartsWith = null; public String RemarkEndsWith = null; public String RemarkContains = null; public String RemarkLike = null; public ArrayList RemarkBetween = null; public ArrayList RemarkIn = null; public String RemitNo = null; public String RemitNoStartsWith = null; public String RemitNoEndsWith = null; public String RemitNoContains = null; public String RemitNoLike = null; public ArrayList RemitNoBetween = null; public ArrayList RemitNoIn = null; public BigDecimal Amount = null; public BigDecimal AmountGreaterThanOrEqualTo = null; public BigDecimal AmountGreaterThan = null; public BigDecimal AmountLessThan = null; public BigDecimal AmountLessThanOrEqualTo = null; public BigDecimal AmountNotEqualTo = null; public ArrayList AmountBetween = null; public ArrayList AmountIn = null; public String DBTransID = null; public String DBTransIDStartsWith = null; public String DBTransIDEndsWith = null; public String DBTransIDContains = null; public String DBTransIDLike = null; public ArrayList DBTransIDBetween = null; public ArrayList DBTransIDIn = null; public Integer LineNum = null; public Integer LineNumGreaterThanOrEqualTo = null; public Integer LineNumGreaterThan = null; public Integer LineNumLessThan = null; public Integer LineNumLessThanOrEqualTo = null; public Integer LineNumNotEqualTo = null; public ArrayList LineNumBetween = null; public ArrayList LineNumIn = null; public String OtherLedgerID = null; public String OtherLedgerIDStartsWith = null; public String OtherLedgerIDEndsWith = null; public String OtherLedgerIDContains = null; public String OtherLedgerIDLike = null; public ArrayList OtherLedgerIDBetween = null; public ArrayList OtherLedgerIDIn = null; public BigDecimal OtherAmount = null; public BigDecimal OtherAmountGreaterThanOrEqualTo = null; public BigDecimal OtherAmountGreaterThan = null; public BigDecimal OtherAmountLessThan = null; public BigDecimal OtherAmountLessThanOrEqualTo = null; public BigDecimal OtherAmountNotEqualTo = null; public ArrayList OtherAmountBetween = null; public ArrayList OtherAmountIn = null; public Date ReceiptDate = null; public Date ReceiptDateGreaterThanOrEqualTo = null; public Date ReceiptDateGreaterThan = null; public Date ReceiptDateLessThan = null; public Date ReceiptDateLessThanOrEqualTo = null; public Date ReceiptDateNotEqualTo = null; public ArrayList ReceiptDateBetween = null; public ArrayList ReceiptDateIn = null; public String BankName = null; public String BankNameStartsWith = null; public String BankNameEndsWith = null; public String BankNameContains = null; public String BankNameLike = null; public ArrayList BankNameBetween = null; public ArrayList BankNameIn = null; public String BankAcc = null; public String BankAccStartsWith = null; public String BankAccEndsWith = null; public String BankAccContains = null; public String BankAccLike = null; public ArrayList BankAccBetween = null; public ArrayList BankAccIn = null; public String BSBN = null; public String BSBNStartsWith = null; public String BSBNEndsWith = null; public String BSBNContains = null; public String BSBNLike = null; public ArrayList BSBNBetween = null; public ArrayList BSBNIn = null; public String AccountName = null; public String AccountNameStartsWith = null; public String AccountNameEndsWith = null; public String AccountNameContains = null; public String AccountNameLike = null; public ArrayList AccountNameBetween = null; public ArrayList AccountNameIn = null; public String ParentAccountID = null; public String ParentAccountIDStartsWith = null; public String ParentAccountIDEndsWith = null; public String ParentAccountIDContains = null; public String ParentAccountIDLike = null; public ArrayList ParentAccountIDBetween = null; public ArrayList ParentAccountIDIn = null; public String TaxID = null; public String TaxIDStartsWith = null; public String TaxIDEndsWith = null; public String TaxIDContains = null; public String TaxIDLike = null; public ArrayList TaxIDBetween = null; public ArrayList TaxIDIn = null; public BigDecimal TaxRate = null; public BigDecimal TaxRateGreaterThanOrEqualTo = null; public BigDecimal TaxRateGreaterThan = null; public BigDecimal TaxRateLessThan = null; public BigDecimal TaxRateLessThanOrEqualTo = null; public BigDecimal TaxRateNotEqualTo = null; public ArrayList TaxRateBetween = null; public ArrayList TaxRateIn = null; public BigDecimal TaxAmount = null; public BigDecimal TaxAmountGreaterThanOrEqualTo = null; public BigDecimal TaxAmountGreaterThan = null; public BigDecimal TaxAmountLessThan = null; public BigDecimal TaxAmountLessThanOrEqualTo = null; public BigDecimal TaxAmountNotEqualTo = null; public ArrayList TaxAmountBetween = null; public ArrayList TaxAmountIn = null; public String TaxLedgerID = null; public String TaxLedgerIDStartsWith = null; public String TaxLedgerIDEndsWith = null; public String TaxLedgerIDContains = null; public String TaxLedgerIDLike = null; public ArrayList TaxLedgerIDBetween = null; public ArrayList TaxLedgerIDIn = null; public BigDecimal DiscountAmount = null; public BigDecimal DiscountAmountGreaterThanOrEqualTo = null; public BigDecimal DiscountAmountGreaterThan = null; public BigDecimal DiscountAmountLessThan = null; public BigDecimal DiscountAmountLessThanOrEqualTo = null; public BigDecimal DiscountAmountNotEqualTo = null; public ArrayList DiscountAmountBetween = null; public ArrayList DiscountAmountIn = null; public String DiscountLedgerID = null; public String DiscountLedgerIDStartsWith = null; public String DiscountLedgerIDEndsWith = null; public String DiscountLedgerIDContains = null; public String DiscountLedgerIDLike = null; public ArrayList DiscountLedgerIDBetween = null; public ArrayList DiscountLedgerIDIn = null; public String DiscountTransID = null; public String DiscountTransIDStartsWith = null; public String DiscountTransIDEndsWith = null; public String DiscountTransIDContains = null; public String DiscountTransIDLike = null; public ArrayList DiscountTransIDBetween = null; public ArrayList DiscountTransIDIn = null; public String HomeTaxID = null; public String HomeTaxIDStartsWith = null; public String HomeTaxIDEndsWith = null; public String HomeTaxIDContains = null; public String HomeTaxIDLike = null; public ArrayList HomeTaxIDBetween = null; public ArrayList HomeTaxIDIn = null; public BigDecimal HomeTaxRate = null; public BigDecimal HomeTaxRateGreaterThanOrEqualTo = null; public BigDecimal HomeTaxRateGreaterThan = null; public BigDecimal HomeTaxRateLessThan = null; public BigDecimal HomeTaxRateLessThanOrEqualTo = null; public BigDecimal HomeTaxRateNotEqualTo = null; public ArrayList HomeTaxRateBetween = null; public ArrayList HomeTaxRateIn = null; public BigDecimal HomeTaxAmount = null; public BigDecimal HomeTaxAmountGreaterThanOrEqualTo = null; public BigDecimal HomeTaxAmountGreaterThan = null; public BigDecimal HomeTaxAmountLessThan = null; public BigDecimal HomeTaxAmountLessThanOrEqualTo = null; public BigDecimal HomeTaxAmountNotEqualTo = null; public ArrayList HomeTaxAmountBetween = null; public ArrayList HomeTaxAmountIn = null; public String DiscountTaxID = null; public String DiscountTaxIDStartsWith = null; public String DiscountTaxIDEndsWith = null; public String DiscountTaxIDContains = null; public String DiscountTaxIDLike = null; public ArrayList DiscountTaxIDBetween = null; public ArrayList DiscountTaxIDIn = null; public BigDecimal DiscountTaxRate = null; public BigDecimal DiscountTaxRateGreaterThanOrEqualTo = null; public BigDecimal DiscountTaxRateGreaterThan = null; public BigDecimal DiscountTaxRateLessThan = null; public BigDecimal DiscountTaxRateLessThanOrEqualTo = null; public BigDecimal DiscountTaxRateNotEqualTo = null; public ArrayList DiscountTaxRateBetween = null; public ArrayList DiscountTaxRateIn = null; public BigDecimal DiscountTaxAmount = null; public BigDecimal DiscountTaxAmountGreaterThanOrEqualTo = null; public BigDecimal DiscountTaxAmountGreaterThan = null; public BigDecimal DiscountTaxAmountLessThan = null; public BigDecimal DiscountTaxAmountLessThanOrEqualTo = null; public BigDecimal DiscountTaxAmountNotEqualTo = null; public ArrayList DiscountTaxAmountBetween = null; public ArrayList DiscountTaxAmountIn = null; public Date DueDate = null; public Date DueDateGreaterThanOrEqualTo = null; public Date DueDateGreaterThan = null; public Date DueDateLessThan = null; public Date DueDateLessThanOrEqualTo = null; public Date DueDateNotEqualTo = null; public ArrayList DueDateBetween = null; public ArrayList DueDateIn = null; public String getReceiptLineID() { return ReceiptLineID; } public DB_BatchTranLinesQuery setReceiptLineID(String value) { this.ReceiptLineID = value; return this; } public String getReceiptLineIDStartsWith() { return ReceiptLineIDStartsWith; } public DB_BatchTranLinesQuery setReceiptLineIDStartsWith(String value) { this.ReceiptLineIDStartsWith = value; return this; } public String getReceiptLineIDEndsWith() { return ReceiptLineIDEndsWith; } public DB_BatchTranLinesQuery setReceiptLineIDEndsWith(String value) { this.ReceiptLineIDEndsWith = value; return this; } public String getReceiptLineIDContains() { return ReceiptLineIDContains; } public DB_BatchTranLinesQuery setReceiptLineIDContains(String value) { this.ReceiptLineIDContains = value; return this; } public String getReceiptLineIDLike() { return ReceiptLineIDLike; } public DB_BatchTranLinesQuery setReceiptLineIDLike(String value) { this.ReceiptLineIDLike = value; return this; } public ArrayList getReceiptLineIDBetween() { return ReceiptLineIDBetween; } public DB_BatchTranLinesQuery setReceiptLineIDBetween(ArrayList value) { this.ReceiptLineIDBetween = value; return this; } public ArrayList getReceiptLineIDIn() { return ReceiptLineIDIn; } public DB_BatchTranLinesQuery setReceiptLineIDIn(ArrayList value) { this.ReceiptLineIDIn = value; return this; } public String getReceiptID() { return ReceiptID; } public DB_BatchTranLinesQuery setReceiptID(String value) { this.ReceiptID = value; return this; } public String getReceiptIDStartsWith() { return ReceiptIDStartsWith; } public DB_BatchTranLinesQuery setReceiptIDStartsWith(String value) { this.ReceiptIDStartsWith = value; return this; } public String getReceiptIDEndsWith() { return ReceiptIDEndsWith; } public DB_BatchTranLinesQuery setReceiptIDEndsWith(String value) { this.ReceiptIDEndsWith = value; return this; } public String getReceiptIDContains() { return ReceiptIDContains; } public DB_BatchTranLinesQuery setReceiptIDContains(String value) { this.ReceiptIDContains = value; return this; } public String getReceiptIDLike() { return ReceiptIDLike; } public DB_BatchTranLinesQuery setReceiptIDLike(String value) { this.ReceiptIDLike = value; return this; } public ArrayList getReceiptIDBetween() { return ReceiptIDBetween; } public DB_BatchTranLinesQuery setReceiptIDBetween(ArrayList value) { this.ReceiptIDBetween = value; return this; } public ArrayList getReceiptIDIn() { return ReceiptIDIn; } public DB_BatchTranLinesQuery setReceiptIDIn(ArrayList value) { this.ReceiptIDIn = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public DB_BatchTranLinesQuery setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getLastSavedDateTimeGreaterThanOrEqualTo() { return LastSavedDateTimeGreaterThanOrEqualTo; } public DB_BatchTranLinesQuery setLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.LastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeGreaterThan() { return LastSavedDateTimeGreaterThan; } public DB_BatchTranLinesQuery setLastSavedDateTimeGreaterThan(Date value) { this.LastSavedDateTimeGreaterThan = value; return this; } public Date getLastSavedDateTimeLessThan() { return LastSavedDateTimeLessThan; } public DB_BatchTranLinesQuery setLastSavedDateTimeLessThan(Date value) { this.LastSavedDateTimeLessThan = value; return this; } public Date getLastSavedDateTimeLessThanOrEqualTo() { return LastSavedDateTimeLessThanOrEqualTo; } public DB_BatchTranLinesQuery setLastSavedDateTimeLessThanOrEqualTo(Date value) { this.LastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeNotEqualTo() { return LastSavedDateTimeNotEqualTo; } public DB_BatchTranLinesQuery setLastSavedDateTimeNotEqualTo(Date value) { this.LastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getLastSavedDateTimeBetween() { return LastSavedDateTimeBetween; } public DB_BatchTranLinesQuery setLastSavedDateTimeBetween(ArrayList value) { this.LastSavedDateTimeBetween = value; return this; } public ArrayList getLastSavedDateTimeIn() { return LastSavedDateTimeIn; } public DB_BatchTranLinesQuery setLastSavedDateTimeIn(ArrayList value) { this.LastSavedDateTimeIn = value; return this; } public String getAccountID() { return AccountID; } public DB_BatchTranLinesQuery setAccountID(String value) { this.AccountID = value; return this; } public String getAccountIDStartsWith() { return AccountIDStartsWith; } public DB_BatchTranLinesQuery setAccountIDStartsWith(String value) { this.AccountIDStartsWith = value; return this; } public String getAccountIDEndsWith() { return AccountIDEndsWith; } public DB_BatchTranLinesQuery setAccountIDEndsWith(String value) { this.AccountIDEndsWith = value; return this; } public String getAccountIDContains() { return AccountIDContains; } public DB_BatchTranLinesQuery setAccountIDContains(String value) { this.AccountIDContains = value; return this; } public String getAccountIDLike() { return AccountIDLike; } public DB_BatchTranLinesQuery setAccountIDLike(String value) { this.AccountIDLike = value; return this; } public ArrayList getAccountIDBetween() { return AccountIDBetween; } public DB_BatchTranLinesQuery setAccountIDBetween(ArrayList value) { this.AccountIDBetween = value; return this; } public ArrayList getAccountIDIn() { return AccountIDIn; } public DB_BatchTranLinesQuery setAccountIDIn(ArrayList value) { this.AccountIDIn = value; return this; } public String getLedgerID() { return LedgerID; } public DB_BatchTranLinesQuery setLedgerID(String value) { this.LedgerID = value; return this; } public String getLedgerIDStartsWith() { return LedgerIDStartsWith; } public DB_BatchTranLinesQuery setLedgerIDStartsWith(String value) { this.LedgerIDStartsWith = value; return this; } public String getLedgerIDEndsWith() { return LedgerIDEndsWith; } public DB_BatchTranLinesQuery setLedgerIDEndsWith(String value) { this.LedgerIDEndsWith = value; return this; } public String getLedgerIDContains() { return LedgerIDContains; } public DB_BatchTranLinesQuery setLedgerIDContains(String value) { this.LedgerIDContains = value; return this; } public String getLedgerIDLike() { return LedgerIDLike; } public DB_BatchTranLinesQuery setLedgerIDLike(String value) { this.LedgerIDLike = value; return this; } public ArrayList getLedgerIDBetween() { return LedgerIDBetween; } public DB_BatchTranLinesQuery setLedgerIDBetween(ArrayList value) { this.LedgerIDBetween = value; return this; } public ArrayList getLedgerIDIn() { return LedgerIDIn; } public DB_BatchTranLinesQuery setLedgerIDIn(ArrayList value) { this.LedgerIDIn = value; return this; } public String getLineReference() { return LineReference; } public DB_BatchTranLinesQuery setLineReference(String value) { this.LineReference = value; return this; } public String getLineReferenceStartsWith() { return LineReferenceStartsWith; } public DB_BatchTranLinesQuery setLineReferenceStartsWith(String value) { this.LineReferenceStartsWith = value; return this; } public String getLineReferenceEndsWith() { return LineReferenceEndsWith; } public DB_BatchTranLinesQuery setLineReferenceEndsWith(String value) { this.LineReferenceEndsWith = value; return this; } public String getLineReferenceContains() { return LineReferenceContains; } public DB_BatchTranLinesQuery setLineReferenceContains(String value) { this.LineReferenceContains = value; return this; } public String getLineReferenceLike() { return LineReferenceLike; } public DB_BatchTranLinesQuery setLineReferenceLike(String value) { this.LineReferenceLike = value; return this; } public ArrayList getLineReferenceBetween() { return LineReferenceBetween; } public DB_BatchTranLinesQuery setLineReferenceBetween(ArrayList value) { this.LineReferenceBetween = value; return this; } public ArrayList getLineReferenceIn() { return LineReferenceIn; } public DB_BatchTranLinesQuery setLineReferenceIn(ArrayList value) { this.LineReferenceIn = value; return this; } public String getRemark() { return Remark; } public DB_BatchTranLinesQuery setRemark(String value) { this.Remark = value; return this; } public String getRemarkStartsWith() { return RemarkStartsWith; } public DB_BatchTranLinesQuery setRemarkStartsWith(String value) { this.RemarkStartsWith = value; return this; } public String getRemarkEndsWith() { return RemarkEndsWith; } public DB_BatchTranLinesQuery setRemarkEndsWith(String value) { this.RemarkEndsWith = value; return this; } public String getRemarkContains() { return RemarkContains; } public DB_BatchTranLinesQuery setRemarkContains(String value) { this.RemarkContains = value; return this; } public String getRemarkLike() { return RemarkLike; } public DB_BatchTranLinesQuery setRemarkLike(String value) { this.RemarkLike = value; return this; } public ArrayList getRemarkBetween() { return RemarkBetween; } public DB_BatchTranLinesQuery setRemarkBetween(ArrayList value) { this.RemarkBetween = value; return this; } public ArrayList getRemarkIn() { return RemarkIn; } public DB_BatchTranLinesQuery setRemarkIn(ArrayList value) { this.RemarkIn = value; return this; } public String getRemitNo() { return RemitNo; } public DB_BatchTranLinesQuery setRemitNo(String value) { this.RemitNo = value; return this; } public String getRemitNoStartsWith() { return RemitNoStartsWith; } public DB_BatchTranLinesQuery setRemitNoStartsWith(String value) { this.RemitNoStartsWith = value; return this; } public String getRemitNoEndsWith() { return RemitNoEndsWith; } public DB_BatchTranLinesQuery setRemitNoEndsWith(String value) { this.RemitNoEndsWith = value; return this; } public String getRemitNoContains() { return RemitNoContains; } public DB_BatchTranLinesQuery setRemitNoContains(String value) { this.RemitNoContains = value; return this; } public String getRemitNoLike() { return RemitNoLike; } public DB_BatchTranLinesQuery setRemitNoLike(String value) { this.RemitNoLike = value; return this; } public ArrayList getRemitNoBetween() { return RemitNoBetween; } public DB_BatchTranLinesQuery setRemitNoBetween(ArrayList value) { this.RemitNoBetween = value; return this; } public ArrayList getRemitNoIn() { return RemitNoIn; } public DB_BatchTranLinesQuery setRemitNoIn(ArrayList value) { this.RemitNoIn = value; return this; } public BigDecimal getAmount() { return Amount; } public DB_BatchTranLinesQuery setAmount(BigDecimal value) { this.Amount = value; return this; } public BigDecimal getAmountGreaterThanOrEqualTo() { return AmountGreaterThanOrEqualTo; } public DB_BatchTranLinesQuery setAmountGreaterThanOrEqualTo(BigDecimal value) { this.AmountGreaterThanOrEqualTo = value; return this; } public BigDecimal getAmountGreaterThan() { return AmountGreaterThan; } public DB_BatchTranLinesQuery setAmountGreaterThan(BigDecimal value) { this.AmountGreaterThan = value; return this; } public BigDecimal getAmountLessThan() { return AmountLessThan; } public DB_BatchTranLinesQuery setAmountLessThan(BigDecimal value) { this.AmountLessThan = value; return this; } public BigDecimal getAmountLessThanOrEqualTo() { return AmountLessThanOrEqualTo; } public DB_BatchTranLinesQuery setAmountLessThanOrEqualTo(BigDecimal value) { this.AmountLessThanOrEqualTo = value; return this; } public BigDecimal getAmountNotEqualTo() { return AmountNotEqualTo; } public DB_BatchTranLinesQuery setAmountNotEqualTo(BigDecimal value) { this.AmountNotEqualTo = value; return this; } public ArrayList getAmountBetween() { return AmountBetween; } public DB_BatchTranLinesQuery setAmountBetween(ArrayList value) { this.AmountBetween = value; return this; } public ArrayList getAmountIn() { return AmountIn; } public DB_BatchTranLinesQuery setAmountIn(ArrayList value) { this.AmountIn = value; return this; } public String getDbTransID() { return DBTransID; } public DB_BatchTranLinesQuery setDbTransID(String value) { this.DBTransID = value; return this; } public String getDbTransIDStartsWith() { return DBTransIDStartsWith; } public DB_BatchTranLinesQuery setDbTransIDStartsWith(String value) { this.DBTransIDStartsWith = value; return this; } public String getDbTransIDEndsWith() { return DBTransIDEndsWith; } public DB_BatchTranLinesQuery setDbTransIDEndsWith(String value) { this.DBTransIDEndsWith = value; return this; } public String getDbTransIDContains() { return DBTransIDContains; } public DB_BatchTranLinesQuery setDbTransIDContains(String value) { this.DBTransIDContains = value; return this; } public String getDbTransIDLike() { return DBTransIDLike; } public DB_BatchTranLinesQuery setDbTransIDLike(String value) { this.DBTransIDLike = value; return this; } public ArrayList getDbTransIDBetween() { return DBTransIDBetween; } public DB_BatchTranLinesQuery setDbTransIDBetween(ArrayList value) { this.DBTransIDBetween = value; return this; } public ArrayList getDbTransIDIn() { return DBTransIDIn; } public DB_BatchTranLinesQuery setDbTransIDIn(ArrayList value) { this.DBTransIDIn = value; return this; } public Integer getLineNum() { return LineNum; } public DB_BatchTranLinesQuery setLineNum(Integer value) { this.LineNum = value; return this; } public Integer getLineNumGreaterThanOrEqualTo() { return LineNumGreaterThanOrEqualTo; } public DB_BatchTranLinesQuery setLineNumGreaterThanOrEqualTo(Integer value) { this.LineNumGreaterThanOrEqualTo = value; return this; } public Integer getLineNumGreaterThan() { return LineNumGreaterThan; } public DB_BatchTranLinesQuery setLineNumGreaterThan(Integer value) { this.LineNumGreaterThan = value; return this; } public Integer getLineNumLessThan() { return LineNumLessThan; } public DB_BatchTranLinesQuery setLineNumLessThan(Integer value) { this.LineNumLessThan = value; return this; } public Integer getLineNumLessThanOrEqualTo() { return LineNumLessThanOrEqualTo; } public DB_BatchTranLinesQuery setLineNumLessThanOrEqualTo(Integer value) { this.LineNumLessThanOrEqualTo = value; return this; } public Integer getLineNumNotEqualTo() { return LineNumNotEqualTo; } public DB_BatchTranLinesQuery setLineNumNotEqualTo(Integer value) { this.LineNumNotEqualTo = value; return this; } public ArrayList getLineNumBetween() { return LineNumBetween; } public DB_BatchTranLinesQuery setLineNumBetween(ArrayList value) { this.LineNumBetween = value; return this; } public ArrayList getLineNumIn() { return LineNumIn; } public DB_BatchTranLinesQuery setLineNumIn(ArrayList value) { this.LineNumIn = value; return this; } public String getOtherLedgerID() { return OtherLedgerID; } public DB_BatchTranLinesQuery setOtherLedgerID(String value) { this.OtherLedgerID = value; return this; } public String getOtherLedgerIDStartsWith() { return OtherLedgerIDStartsWith; } public DB_BatchTranLinesQuery setOtherLedgerIDStartsWith(String value) { this.OtherLedgerIDStartsWith = value; return this; } public String getOtherLedgerIDEndsWith() { return OtherLedgerIDEndsWith; } public DB_BatchTranLinesQuery setOtherLedgerIDEndsWith(String value) { this.OtherLedgerIDEndsWith = value; return this; } public String getOtherLedgerIDContains() { return OtherLedgerIDContains; } public DB_BatchTranLinesQuery setOtherLedgerIDContains(String value) { this.OtherLedgerIDContains = value; return this; } public String getOtherLedgerIDLike() { return OtherLedgerIDLike; } public DB_BatchTranLinesQuery setOtherLedgerIDLike(String value) { this.OtherLedgerIDLike = value; return this; } public ArrayList getOtherLedgerIDBetween() { return OtherLedgerIDBetween; } public DB_BatchTranLinesQuery setOtherLedgerIDBetween(ArrayList value) { this.OtherLedgerIDBetween = value; return this; } public ArrayList getOtherLedgerIDIn() { return OtherLedgerIDIn; } public DB_BatchTranLinesQuery setOtherLedgerIDIn(ArrayList value) { this.OtherLedgerIDIn = value; return this; } public BigDecimal getOtherAmount() { return OtherAmount; } public DB_BatchTranLinesQuery setOtherAmount(BigDecimal value) { this.OtherAmount = value; return this; } public BigDecimal getOtherAmountGreaterThanOrEqualTo() { return OtherAmountGreaterThanOrEqualTo; } public DB_BatchTranLinesQuery setOtherAmountGreaterThanOrEqualTo(BigDecimal value) { this.OtherAmountGreaterThanOrEqualTo = value; return this; } public BigDecimal getOtherAmountGreaterThan() { return OtherAmountGreaterThan; } public DB_BatchTranLinesQuery setOtherAmountGreaterThan(BigDecimal value) { this.OtherAmountGreaterThan = value; return this; } public BigDecimal getOtherAmountLessThan() { return OtherAmountLessThan; } public DB_BatchTranLinesQuery setOtherAmountLessThan(BigDecimal value) { this.OtherAmountLessThan = value; return this; } public BigDecimal getOtherAmountLessThanOrEqualTo() { return OtherAmountLessThanOrEqualTo; } public DB_BatchTranLinesQuery setOtherAmountLessThanOrEqualTo(BigDecimal value) { this.OtherAmountLessThanOrEqualTo = value; return this; } public BigDecimal getOtherAmountNotEqualTo() { return OtherAmountNotEqualTo; } public DB_BatchTranLinesQuery setOtherAmountNotEqualTo(BigDecimal value) { this.OtherAmountNotEqualTo = value; return this; } public ArrayList getOtherAmountBetween() { return OtherAmountBetween; } public DB_BatchTranLinesQuery setOtherAmountBetween(ArrayList value) { this.OtherAmountBetween = value; return this; } public ArrayList getOtherAmountIn() { return OtherAmountIn; } public DB_BatchTranLinesQuery setOtherAmountIn(ArrayList value) { this.OtherAmountIn = value; return this; } public Date getReceiptDate() { return ReceiptDate; } public DB_BatchTranLinesQuery setReceiptDate(Date value) { this.ReceiptDate = value; return this; } public Date getReceiptDateGreaterThanOrEqualTo() { return ReceiptDateGreaterThanOrEqualTo; } public DB_BatchTranLinesQuery setReceiptDateGreaterThanOrEqualTo(Date value) { this.ReceiptDateGreaterThanOrEqualTo = value; return this; } public Date getReceiptDateGreaterThan() { return ReceiptDateGreaterThan; } public DB_BatchTranLinesQuery setReceiptDateGreaterThan(Date value) { this.ReceiptDateGreaterThan = value; return this; } public Date getReceiptDateLessThan() { return ReceiptDateLessThan; } public DB_BatchTranLinesQuery setReceiptDateLessThan(Date value) { this.ReceiptDateLessThan = value; return this; } public Date getReceiptDateLessThanOrEqualTo() { return ReceiptDateLessThanOrEqualTo; } public DB_BatchTranLinesQuery setReceiptDateLessThanOrEqualTo(Date value) { this.ReceiptDateLessThanOrEqualTo = value; return this; } public Date getReceiptDateNotEqualTo() { return ReceiptDateNotEqualTo; } public DB_BatchTranLinesQuery setReceiptDateNotEqualTo(Date value) { this.ReceiptDateNotEqualTo = value; return this; } public ArrayList getReceiptDateBetween() { return ReceiptDateBetween; } public DB_BatchTranLinesQuery setReceiptDateBetween(ArrayList value) { this.ReceiptDateBetween = value; return this; } public ArrayList getReceiptDateIn() { return ReceiptDateIn; } public DB_BatchTranLinesQuery setReceiptDateIn(ArrayList value) { this.ReceiptDateIn = value; return this; } public String getBankName() { return BankName; } public DB_BatchTranLinesQuery setBankName(String value) { this.BankName = value; return this; } public String getBankNameStartsWith() { return BankNameStartsWith; } public DB_BatchTranLinesQuery setBankNameStartsWith(String value) { this.BankNameStartsWith = value; return this; } public String getBankNameEndsWith() { return BankNameEndsWith; } public DB_BatchTranLinesQuery setBankNameEndsWith(String value) { this.BankNameEndsWith = value; return this; } public String getBankNameContains() { return BankNameContains; } public DB_BatchTranLinesQuery setBankNameContains(String value) { this.BankNameContains = value; return this; } public String getBankNameLike() { return BankNameLike; } public DB_BatchTranLinesQuery setBankNameLike(String value) { this.BankNameLike = value; return this; } public ArrayList getBankNameBetween() { return BankNameBetween; } public DB_BatchTranLinesQuery setBankNameBetween(ArrayList value) { this.BankNameBetween = value; return this; } public ArrayList getBankNameIn() { return BankNameIn; } public DB_BatchTranLinesQuery setBankNameIn(ArrayList value) { this.BankNameIn = value; return this; } public String getBankAcc() { return BankAcc; } public DB_BatchTranLinesQuery setBankAcc(String value) { this.BankAcc = value; return this; } public String getBankAccStartsWith() { return BankAccStartsWith; } public DB_BatchTranLinesQuery setBankAccStartsWith(String value) { this.BankAccStartsWith = value; return this; } public String getBankAccEndsWith() { return BankAccEndsWith; } public DB_BatchTranLinesQuery setBankAccEndsWith(String value) { this.BankAccEndsWith = value; return this; } public String getBankAccContains() { return BankAccContains; } public DB_BatchTranLinesQuery setBankAccContains(String value) { this.BankAccContains = value; return this; } public String getBankAccLike() { return BankAccLike; } public DB_BatchTranLinesQuery setBankAccLike(String value) { this.BankAccLike = value; return this; } public ArrayList getBankAccBetween() { return BankAccBetween; } public DB_BatchTranLinesQuery setBankAccBetween(ArrayList value) { this.BankAccBetween = value; return this; } public ArrayList getBankAccIn() { return BankAccIn; } public DB_BatchTranLinesQuery setBankAccIn(ArrayList value) { this.BankAccIn = value; return this; } public String getBsbn() { return BSBN; } public DB_BatchTranLinesQuery setBsbn(String value) { this.BSBN = value; return this; } public String getBsbnStartsWith() { return BSBNStartsWith; } public DB_BatchTranLinesQuery setBsbnStartsWith(String value) { this.BSBNStartsWith = value; return this; } public String getBsbnEndsWith() { return BSBNEndsWith; } public DB_BatchTranLinesQuery setBsbnEndsWith(String value) { this.BSBNEndsWith = value; return this; } public String getBsbnContains() { return BSBNContains; } public DB_BatchTranLinesQuery setBsbnContains(String value) { this.BSBNContains = value; return this; } public String getBsbnLike() { return BSBNLike; } public DB_BatchTranLinesQuery setBsbnLike(String value) { this.BSBNLike = value; return this; } public ArrayList getBsbnBetween() { return BSBNBetween; } public DB_BatchTranLinesQuery setBsbnBetween(ArrayList value) { this.BSBNBetween = value; return this; } public ArrayList getBsbnIn() { return BSBNIn; } public DB_BatchTranLinesQuery setBsbnIn(ArrayList value) { this.BSBNIn = value; return this; } public String getAccountName() { return AccountName; } public DB_BatchTranLinesQuery setAccountName(String value) { this.AccountName = value; return this; } public String getAccountNameStartsWith() { return AccountNameStartsWith; } public DB_BatchTranLinesQuery setAccountNameStartsWith(String value) { this.AccountNameStartsWith = value; return this; } public String getAccountNameEndsWith() { return AccountNameEndsWith; } public DB_BatchTranLinesQuery setAccountNameEndsWith(String value) { this.AccountNameEndsWith = value; return this; } public String getAccountNameContains() { return AccountNameContains; } public DB_BatchTranLinesQuery setAccountNameContains(String value) { this.AccountNameContains = value; return this; } public String getAccountNameLike() { return AccountNameLike; } public DB_BatchTranLinesQuery setAccountNameLike(String value) { this.AccountNameLike = value; return this; } public ArrayList getAccountNameBetween() { return AccountNameBetween; } public DB_BatchTranLinesQuery setAccountNameBetween(ArrayList value) { this.AccountNameBetween = value; return this; } public ArrayList getAccountNameIn() { return AccountNameIn; } public DB_BatchTranLinesQuery setAccountNameIn(ArrayList value) { this.AccountNameIn = value; return this; } public String getParentAccountID() { return ParentAccountID; } public DB_BatchTranLinesQuery setParentAccountID(String value) { this.ParentAccountID = value; return this; } public String getParentAccountIDStartsWith() { return ParentAccountIDStartsWith; } public DB_BatchTranLinesQuery setParentAccountIDStartsWith(String value) { this.ParentAccountIDStartsWith = value; return this; } public String getParentAccountIDEndsWith() { return ParentAccountIDEndsWith; } public DB_BatchTranLinesQuery setParentAccountIDEndsWith(String value) { this.ParentAccountIDEndsWith = value; return this; } public String getParentAccountIDContains() { return ParentAccountIDContains; } public DB_BatchTranLinesQuery setParentAccountIDContains(String value) { this.ParentAccountIDContains = value; return this; } public String getParentAccountIDLike() { return ParentAccountIDLike; } public DB_BatchTranLinesQuery setParentAccountIDLike(String value) { this.ParentAccountIDLike = value; return this; } public ArrayList getParentAccountIDBetween() { return ParentAccountIDBetween; } public DB_BatchTranLinesQuery setParentAccountIDBetween(ArrayList value) { this.ParentAccountIDBetween = value; return this; } public ArrayList getParentAccountIDIn() { return ParentAccountIDIn; } public DB_BatchTranLinesQuery setParentAccountIDIn(ArrayList value) { this.ParentAccountIDIn = value; return this; } public String getTaxID() { return TaxID; } public DB_BatchTranLinesQuery setTaxID(String value) { this.TaxID = value; return this; } public String getTaxIDStartsWith() { return TaxIDStartsWith; } public DB_BatchTranLinesQuery setTaxIDStartsWith(String value) { this.TaxIDStartsWith = value; return this; } public String getTaxIDEndsWith() { return TaxIDEndsWith; } public DB_BatchTranLinesQuery setTaxIDEndsWith(String value) { this.TaxIDEndsWith = value; return this; } public String getTaxIDContains() { return TaxIDContains; } public DB_BatchTranLinesQuery setTaxIDContains(String value) { this.TaxIDContains = value; return this; } public String getTaxIDLike() { return TaxIDLike; } public DB_BatchTranLinesQuery setTaxIDLike(String value) { this.TaxIDLike = value; return this; } public ArrayList getTaxIDBetween() { return TaxIDBetween; } public DB_BatchTranLinesQuery setTaxIDBetween(ArrayList value) { this.TaxIDBetween = value; return this; } public ArrayList getTaxIDIn() { return TaxIDIn; } public DB_BatchTranLinesQuery setTaxIDIn(ArrayList value) { this.TaxIDIn = value; return this; } public BigDecimal getTaxRate() { return TaxRate; } public DB_BatchTranLinesQuery setTaxRate(BigDecimal value) { this.TaxRate = value; return this; } public BigDecimal getTaxRateGreaterThanOrEqualTo() { return TaxRateGreaterThanOrEqualTo; } public DB_BatchTranLinesQuery setTaxRateGreaterThanOrEqualTo(BigDecimal value) { this.TaxRateGreaterThanOrEqualTo = value; return this; } public BigDecimal getTaxRateGreaterThan() { return TaxRateGreaterThan; } public DB_BatchTranLinesQuery setTaxRateGreaterThan(BigDecimal value) { this.TaxRateGreaterThan = value; return this; } public BigDecimal getTaxRateLessThan() { return TaxRateLessThan; } public DB_BatchTranLinesQuery setTaxRateLessThan(BigDecimal value) { this.TaxRateLessThan = value; return this; } public BigDecimal getTaxRateLessThanOrEqualTo() { return TaxRateLessThanOrEqualTo; } public DB_BatchTranLinesQuery setTaxRateLessThanOrEqualTo(BigDecimal value) { this.TaxRateLessThanOrEqualTo = value; return this; } public BigDecimal getTaxRateNotEqualTo() { return TaxRateNotEqualTo; } public DB_BatchTranLinesQuery setTaxRateNotEqualTo(BigDecimal value) { this.TaxRateNotEqualTo = value; return this; } public ArrayList getTaxRateBetween() { return TaxRateBetween; } public DB_BatchTranLinesQuery setTaxRateBetween(ArrayList value) { this.TaxRateBetween = value; return this; } public ArrayList getTaxRateIn() { return TaxRateIn; } public DB_BatchTranLinesQuery setTaxRateIn(ArrayList value) { this.TaxRateIn = value; return this; } public BigDecimal getTaxAmount() { return TaxAmount; } public DB_BatchTranLinesQuery setTaxAmount(BigDecimal value) { this.TaxAmount = value; return this; } public BigDecimal getTaxAmountGreaterThanOrEqualTo() { return TaxAmountGreaterThanOrEqualTo; } public DB_BatchTranLinesQuery setTaxAmountGreaterThanOrEqualTo(BigDecimal value) { this.TaxAmountGreaterThanOrEqualTo = value; return this; } public BigDecimal getTaxAmountGreaterThan() { return TaxAmountGreaterThan; } public DB_BatchTranLinesQuery setTaxAmountGreaterThan(BigDecimal value) { this.TaxAmountGreaterThan = value; return this; } public BigDecimal getTaxAmountLessThan() { return TaxAmountLessThan; } public DB_BatchTranLinesQuery setTaxAmountLessThan(BigDecimal value) { this.TaxAmountLessThan = value; return this; } public BigDecimal getTaxAmountLessThanOrEqualTo() { return TaxAmountLessThanOrEqualTo; } public DB_BatchTranLinesQuery setTaxAmountLessThanOrEqualTo(BigDecimal value) { this.TaxAmountLessThanOrEqualTo = value; return this; } public BigDecimal getTaxAmountNotEqualTo() { return TaxAmountNotEqualTo; } public DB_BatchTranLinesQuery setTaxAmountNotEqualTo(BigDecimal value) { this.TaxAmountNotEqualTo = value; return this; } public ArrayList getTaxAmountBetween() { return TaxAmountBetween; } public DB_BatchTranLinesQuery setTaxAmountBetween(ArrayList value) { this.TaxAmountBetween = value; return this; } public ArrayList getTaxAmountIn() { return TaxAmountIn; } public DB_BatchTranLinesQuery setTaxAmountIn(ArrayList value) { this.TaxAmountIn = value; return this; } public String getTaxLedgerID() { return TaxLedgerID; } public DB_BatchTranLinesQuery setTaxLedgerID(String value) { this.TaxLedgerID = value; return this; } public String getTaxLedgerIDStartsWith() { return TaxLedgerIDStartsWith; } public DB_BatchTranLinesQuery setTaxLedgerIDStartsWith(String value) { this.TaxLedgerIDStartsWith = value; return this; } public String getTaxLedgerIDEndsWith() { return TaxLedgerIDEndsWith; } public DB_BatchTranLinesQuery setTaxLedgerIDEndsWith(String value) { this.TaxLedgerIDEndsWith = value; return this; } public String getTaxLedgerIDContains() { return TaxLedgerIDContains; } public DB_BatchTranLinesQuery setTaxLedgerIDContains(String value) { this.TaxLedgerIDContains = value; return this; } public String getTaxLedgerIDLike() { return TaxLedgerIDLike; } public DB_BatchTranLinesQuery setTaxLedgerIDLike(String value) { this.TaxLedgerIDLike = value; return this; } public ArrayList getTaxLedgerIDBetween() { return TaxLedgerIDBetween; } public DB_BatchTranLinesQuery setTaxLedgerIDBetween(ArrayList value) { this.TaxLedgerIDBetween = value; return this; } public ArrayList getTaxLedgerIDIn() { return TaxLedgerIDIn; } public DB_BatchTranLinesQuery setTaxLedgerIDIn(ArrayList value) { this.TaxLedgerIDIn = value; return this; } public BigDecimal getDiscountAmount() { return DiscountAmount; } public DB_BatchTranLinesQuery setDiscountAmount(BigDecimal value) { this.DiscountAmount = value; return this; } public BigDecimal getDiscountAmountGreaterThanOrEqualTo() { return DiscountAmountGreaterThanOrEqualTo; } public DB_BatchTranLinesQuery setDiscountAmountGreaterThanOrEqualTo(BigDecimal value) { this.DiscountAmountGreaterThanOrEqualTo = value; return this; } public BigDecimal getDiscountAmountGreaterThan() { return DiscountAmountGreaterThan; } public DB_BatchTranLinesQuery setDiscountAmountGreaterThan(BigDecimal value) { this.DiscountAmountGreaterThan = value; return this; } public BigDecimal getDiscountAmountLessThan() { return DiscountAmountLessThan; } public DB_BatchTranLinesQuery setDiscountAmountLessThan(BigDecimal value) { this.DiscountAmountLessThan = value; return this; } public BigDecimal getDiscountAmountLessThanOrEqualTo() { return DiscountAmountLessThanOrEqualTo; } public DB_BatchTranLinesQuery setDiscountAmountLessThanOrEqualTo(BigDecimal value) { this.DiscountAmountLessThanOrEqualTo = value; return this; } public BigDecimal getDiscountAmountNotEqualTo() { return DiscountAmountNotEqualTo; } public DB_BatchTranLinesQuery setDiscountAmountNotEqualTo(BigDecimal value) { this.DiscountAmountNotEqualTo = value; return this; } public ArrayList getDiscountAmountBetween() { return DiscountAmountBetween; } public DB_BatchTranLinesQuery setDiscountAmountBetween(ArrayList value) { this.DiscountAmountBetween = value; return this; } public ArrayList getDiscountAmountIn() { return DiscountAmountIn; } public DB_BatchTranLinesQuery setDiscountAmountIn(ArrayList value) { this.DiscountAmountIn = value; return this; } public String getDiscountLedgerID() { return DiscountLedgerID; } public DB_BatchTranLinesQuery setDiscountLedgerID(String value) { this.DiscountLedgerID = value; return this; } public String getDiscountLedgerIDStartsWith() { return DiscountLedgerIDStartsWith; } public DB_BatchTranLinesQuery setDiscountLedgerIDStartsWith(String value) { this.DiscountLedgerIDStartsWith = value; return this; } public String getDiscountLedgerIDEndsWith() { return DiscountLedgerIDEndsWith; } public DB_BatchTranLinesQuery setDiscountLedgerIDEndsWith(String value) { this.DiscountLedgerIDEndsWith = value; return this; } public String getDiscountLedgerIDContains() { return DiscountLedgerIDContains; } public DB_BatchTranLinesQuery setDiscountLedgerIDContains(String value) { this.DiscountLedgerIDContains = value; return this; } public String getDiscountLedgerIDLike() { return DiscountLedgerIDLike; } public DB_BatchTranLinesQuery setDiscountLedgerIDLike(String value) { this.DiscountLedgerIDLike = value; return this; } public ArrayList getDiscountLedgerIDBetween() { return DiscountLedgerIDBetween; } public DB_BatchTranLinesQuery setDiscountLedgerIDBetween(ArrayList value) { this.DiscountLedgerIDBetween = value; return this; } public ArrayList getDiscountLedgerIDIn() { return DiscountLedgerIDIn; } public DB_BatchTranLinesQuery setDiscountLedgerIDIn(ArrayList value) { this.DiscountLedgerIDIn = value; return this; } public String getDiscountTransID() { return DiscountTransID; } public DB_BatchTranLinesQuery setDiscountTransID(String value) { this.DiscountTransID = value; return this; } public String getDiscountTransIDStartsWith() { return DiscountTransIDStartsWith; } public DB_BatchTranLinesQuery setDiscountTransIDStartsWith(String value) { this.DiscountTransIDStartsWith = value; return this; } public String getDiscountTransIDEndsWith() { return DiscountTransIDEndsWith; } public DB_BatchTranLinesQuery setDiscountTransIDEndsWith(String value) { this.DiscountTransIDEndsWith = value; return this; } public String getDiscountTransIDContains() { return DiscountTransIDContains; } public DB_BatchTranLinesQuery setDiscountTransIDContains(String value) { this.DiscountTransIDContains = value; return this; } public String getDiscountTransIDLike() { return DiscountTransIDLike; } public DB_BatchTranLinesQuery setDiscountTransIDLike(String value) { this.DiscountTransIDLike = value; return this; } public ArrayList getDiscountTransIDBetween() { return DiscountTransIDBetween; } public DB_BatchTranLinesQuery setDiscountTransIDBetween(ArrayList value) { this.DiscountTransIDBetween = value; return this; } public ArrayList getDiscountTransIDIn() { return DiscountTransIDIn; } public DB_BatchTranLinesQuery setDiscountTransIDIn(ArrayList value) { this.DiscountTransIDIn = value; return this; } public String getHomeTaxID() { return HomeTaxID; } public DB_BatchTranLinesQuery setHomeTaxID(String value) { this.HomeTaxID = value; return this; } public String getHomeTaxIDStartsWith() { return HomeTaxIDStartsWith; } public DB_BatchTranLinesQuery setHomeTaxIDStartsWith(String value) { this.HomeTaxIDStartsWith = value; return this; } public String getHomeTaxIDEndsWith() { return HomeTaxIDEndsWith; } public DB_BatchTranLinesQuery setHomeTaxIDEndsWith(String value) { this.HomeTaxIDEndsWith = value; return this; } public String getHomeTaxIDContains() { return HomeTaxIDContains; } public DB_BatchTranLinesQuery setHomeTaxIDContains(String value) { this.HomeTaxIDContains = value; return this; } public String getHomeTaxIDLike() { return HomeTaxIDLike; } public DB_BatchTranLinesQuery setHomeTaxIDLike(String value) { this.HomeTaxIDLike = value; return this; } public ArrayList getHomeTaxIDBetween() { return HomeTaxIDBetween; } public DB_BatchTranLinesQuery setHomeTaxIDBetween(ArrayList value) { this.HomeTaxIDBetween = value; return this; } public ArrayList getHomeTaxIDIn() { return HomeTaxIDIn; } public DB_BatchTranLinesQuery setHomeTaxIDIn(ArrayList value) { this.HomeTaxIDIn = value; return this; } public BigDecimal getHomeTaxRate() { return HomeTaxRate; } public DB_BatchTranLinesQuery setHomeTaxRate(BigDecimal value) { this.HomeTaxRate = value; return this; } public BigDecimal getHomeTaxRateGreaterThanOrEqualTo() { return HomeTaxRateGreaterThanOrEqualTo; } public DB_BatchTranLinesQuery setHomeTaxRateGreaterThanOrEqualTo(BigDecimal value) { this.HomeTaxRateGreaterThanOrEqualTo = value; return this; } public BigDecimal getHomeTaxRateGreaterThan() { return HomeTaxRateGreaterThan; } public DB_BatchTranLinesQuery setHomeTaxRateGreaterThan(BigDecimal value) { this.HomeTaxRateGreaterThan = value; return this; } public BigDecimal getHomeTaxRateLessThan() { return HomeTaxRateLessThan; } public DB_BatchTranLinesQuery setHomeTaxRateLessThan(BigDecimal value) { this.HomeTaxRateLessThan = value; return this; } public BigDecimal getHomeTaxRateLessThanOrEqualTo() { return HomeTaxRateLessThanOrEqualTo; } public DB_BatchTranLinesQuery setHomeTaxRateLessThanOrEqualTo(BigDecimal value) { this.HomeTaxRateLessThanOrEqualTo = value; return this; } public BigDecimal getHomeTaxRateNotEqualTo() { return HomeTaxRateNotEqualTo; } public DB_BatchTranLinesQuery setHomeTaxRateNotEqualTo(BigDecimal value) { this.HomeTaxRateNotEqualTo = value; return this; } public ArrayList getHomeTaxRateBetween() { return HomeTaxRateBetween; } public DB_BatchTranLinesQuery setHomeTaxRateBetween(ArrayList value) { this.HomeTaxRateBetween = value; return this; } public ArrayList getHomeTaxRateIn() { return HomeTaxRateIn; } public DB_BatchTranLinesQuery setHomeTaxRateIn(ArrayList value) { this.HomeTaxRateIn = value; return this; } public BigDecimal getHomeTaxAmount() { return HomeTaxAmount; } public DB_BatchTranLinesQuery setHomeTaxAmount(BigDecimal value) { this.HomeTaxAmount = value; return this; } public BigDecimal getHomeTaxAmountGreaterThanOrEqualTo() { return HomeTaxAmountGreaterThanOrEqualTo; } public DB_BatchTranLinesQuery setHomeTaxAmountGreaterThanOrEqualTo(BigDecimal value) { this.HomeTaxAmountGreaterThanOrEqualTo = value; return this; } public BigDecimal getHomeTaxAmountGreaterThan() { return HomeTaxAmountGreaterThan; } public DB_BatchTranLinesQuery setHomeTaxAmountGreaterThan(BigDecimal value) { this.HomeTaxAmountGreaterThan = value; return this; } public BigDecimal getHomeTaxAmountLessThan() { return HomeTaxAmountLessThan; } public DB_BatchTranLinesQuery setHomeTaxAmountLessThan(BigDecimal value) { this.HomeTaxAmountLessThan = value; return this; } public BigDecimal getHomeTaxAmountLessThanOrEqualTo() { return HomeTaxAmountLessThanOrEqualTo; } public DB_BatchTranLinesQuery setHomeTaxAmountLessThanOrEqualTo(BigDecimal value) { this.HomeTaxAmountLessThanOrEqualTo = value; return this; } public BigDecimal getHomeTaxAmountNotEqualTo() { return HomeTaxAmountNotEqualTo; } public DB_BatchTranLinesQuery setHomeTaxAmountNotEqualTo(BigDecimal value) { this.HomeTaxAmountNotEqualTo = value; return this; } public ArrayList getHomeTaxAmountBetween() { return HomeTaxAmountBetween; } public DB_BatchTranLinesQuery setHomeTaxAmountBetween(ArrayList value) { this.HomeTaxAmountBetween = value; return this; } public ArrayList getHomeTaxAmountIn() { return HomeTaxAmountIn; } public DB_BatchTranLinesQuery setHomeTaxAmountIn(ArrayList value) { this.HomeTaxAmountIn = value; return this; } public String getDiscountTaxID() { return DiscountTaxID; } public DB_BatchTranLinesQuery setDiscountTaxID(String value) { this.DiscountTaxID = value; return this; } public String getDiscountTaxIDStartsWith() { return DiscountTaxIDStartsWith; } public DB_BatchTranLinesQuery setDiscountTaxIDStartsWith(String value) { this.DiscountTaxIDStartsWith = value; return this; } public String getDiscountTaxIDEndsWith() { return DiscountTaxIDEndsWith; } public DB_BatchTranLinesQuery setDiscountTaxIDEndsWith(String value) { this.DiscountTaxIDEndsWith = value; return this; } public String getDiscountTaxIDContains() { return DiscountTaxIDContains; } public DB_BatchTranLinesQuery setDiscountTaxIDContains(String value) { this.DiscountTaxIDContains = value; return this; } public String getDiscountTaxIDLike() { return DiscountTaxIDLike; } public DB_BatchTranLinesQuery setDiscountTaxIDLike(String value) { this.DiscountTaxIDLike = value; return this; } public ArrayList getDiscountTaxIDBetween() { return DiscountTaxIDBetween; } public DB_BatchTranLinesQuery setDiscountTaxIDBetween(ArrayList value) { this.DiscountTaxIDBetween = value; return this; } public ArrayList getDiscountTaxIDIn() { return DiscountTaxIDIn; } public DB_BatchTranLinesQuery setDiscountTaxIDIn(ArrayList value) { this.DiscountTaxIDIn = value; return this; } public BigDecimal getDiscountTaxRate() { return DiscountTaxRate; } public DB_BatchTranLinesQuery setDiscountTaxRate(BigDecimal value) { this.DiscountTaxRate = value; return this; } public BigDecimal getDiscountTaxRateGreaterThanOrEqualTo() { return DiscountTaxRateGreaterThanOrEqualTo; } public DB_BatchTranLinesQuery setDiscountTaxRateGreaterThanOrEqualTo(BigDecimal value) { this.DiscountTaxRateGreaterThanOrEqualTo = value; return this; } public BigDecimal getDiscountTaxRateGreaterThan() { return DiscountTaxRateGreaterThan; } public DB_BatchTranLinesQuery setDiscountTaxRateGreaterThan(BigDecimal value) { this.DiscountTaxRateGreaterThan = value; return this; } public BigDecimal getDiscountTaxRateLessThan() { return DiscountTaxRateLessThan; } public DB_BatchTranLinesQuery setDiscountTaxRateLessThan(BigDecimal value) { this.DiscountTaxRateLessThan = value; return this; } public BigDecimal getDiscountTaxRateLessThanOrEqualTo() { return DiscountTaxRateLessThanOrEqualTo; } public DB_BatchTranLinesQuery setDiscountTaxRateLessThanOrEqualTo(BigDecimal value) { this.DiscountTaxRateLessThanOrEqualTo = value; return this; } public BigDecimal getDiscountTaxRateNotEqualTo() { return DiscountTaxRateNotEqualTo; } public DB_BatchTranLinesQuery setDiscountTaxRateNotEqualTo(BigDecimal value) { this.DiscountTaxRateNotEqualTo = value; return this; } public ArrayList getDiscountTaxRateBetween() { return DiscountTaxRateBetween; } public DB_BatchTranLinesQuery setDiscountTaxRateBetween(ArrayList value) { this.DiscountTaxRateBetween = value; return this; } public ArrayList getDiscountTaxRateIn() { return DiscountTaxRateIn; } public DB_BatchTranLinesQuery setDiscountTaxRateIn(ArrayList value) { this.DiscountTaxRateIn = value; return this; } public BigDecimal getDiscountTaxAmount() { return DiscountTaxAmount; } public DB_BatchTranLinesQuery setDiscountTaxAmount(BigDecimal value) { this.DiscountTaxAmount = value; return this; } public BigDecimal getDiscountTaxAmountGreaterThanOrEqualTo() { return DiscountTaxAmountGreaterThanOrEqualTo; } public DB_BatchTranLinesQuery setDiscountTaxAmountGreaterThanOrEqualTo(BigDecimal value) { this.DiscountTaxAmountGreaterThanOrEqualTo = value; return this; } public BigDecimal getDiscountTaxAmountGreaterThan() { return DiscountTaxAmountGreaterThan; } public DB_BatchTranLinesQuery setDiscountTaxAmountGreaterThan(BigDecimal value) { this.DiscountTaxAmountGreaterThan = value; return this; } public BigDecimal getDiscountTaxAmountLessThan() { return DiscountTaxAmountLessThan; } public DB_BatchTranLinesQuery setDiscountTaxAmountLessThan(BigDecimal value) { this.DiscountTaxAmountLessThan = value; return this; } public BigDecimal getDiscountTaxAmountLessThanOrEqualTo() { return DiscountTaxAmountLessThanOrEqualTo; } public DB_BatchTranLinesQuery setDiscountTaxAmountLessThanOrEqualTo(BigDecimal value) { this.DiscountTaxAmountLessThanOrEqualTo = value; return this; } public BigDecimal getDiscountTaxAmountNotEqualTo() { return DiscountTaxAmountNotEqualTo; } public DB_BatchTranLinesQuery setDiscountTaxAmountNotEqualTo(BigDecimal value) { this.DiscountTaxAmountNotEqualTo = value; return this; } public ArrayList getDiscountTaxAmountBetween() { return DiscountTaxAmountBetween; } public DB_BatchTranLinesQuery setDiscountTaxAmountBetween(ArrayList value) { this.DiscountTaxAmountBetween = value; return this; } public ArrayList getDiscountTaxAmountIn() { return DiscountTaxAmountIn; } public DB_BatchTranLinesQuery setDiscountTaxAmountIn(ArrayList value) { this.DiscountTaxAmountIn = value; return this; } public Date getDueDate() { return DueDate; } public DB_BatchTranLinesQuery setDueDate(Date value) { this.DueDate = value; return this; } public Date getDueDateGreaterThanOrEqualTo() { return DueDateGreaterThanOrEqualTo; } public DB_BatchTranLinesQuery setDueDateGreaterThanOrEqualTo(Date value) { this.DueDateGreaterThanOrEqualTo = value; return this; } public Date getDueDateGreaterThan() { return DueDateGreaterThan; } public DB_BatchTranLinesQuery setDueDateGreaterThan(Date value) { this.DueDateGreaterThan = value; return this; } public Date getDueDateLessThan() { return DueDateLessThan; } public DB_BatchTranLinesQuery setDueDateLessThan(Date value) { this.DueDateLessThan = value; return this; } public Date getDueDateLessThanOrEqualTo() { return DueDateLessThanOrEqualTo; } public DB_BatchTranLinesQuery setDueDateLessThanOrEqualTo(Date value) { this.DueDateLessThanOrEqualTo = value; return this; } public Date getDueDateNotEqualTo() { return DueDateNotEqualTo; } public DB_BatchTranLinesQuery setDueDateNotEqualTo(Date value) { this.DueDateNotEqualTo = value; return this; } public ArrayList getDueDateBetween() { return DueDateBetween; } public DB_BatchTranLinesQuery setDueDateBetween(ArrayList value) { this.DueDateBetween = value; return this; } public ArrayList getDueDateIn() { return DueDateIn; } public DB_BatchTranLinesQuery setDueDateIn(ArrayList value) { this.DueDateIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class DB_BatchTransQuery extends QueryDb implements IReturn> { public String ReceiptID = null; public String ReceiptIDStartsWith = null; public String ReceiptIDEndsWith = null; public String ReceiptIDContains = null; public String ReceiptIDLike = null; public ArrayList ReceiptIDBetween = null; public ArrayList ReceiptIDIn = null; public Date LastSavedDateTime = null; public Date LastSavedDateTimeGreaterThanOrEqualTo = null; public Date LastSavedDateTimeGreaterThan = null; public Date LastSavedDateTimeLessThan = null; public Date LastSavedDateTimeLessThanOrEqualTo = null; public Date LastSavedDateTimeNotEqualTo = null; public ArrayList LastSavedDateTimeBetween = null; public ArrayList LastSavedDateTimeIn = null; public String JiwaUser = null; public String JiwaUserStartsWith = null; public String JiwaUserEndsWith = null; public String JiwaUserContains = null; public String JiwaUserLike = null; public ArrayList JiwaUserBetween = null; public ArrayList JiwaUserIn = null; public Date ReceiptDate = null; public Date ReceiptDateGreaterThanOrEqualTo = null; public Date ReceiptDateGreaterThan = null; public Date ReceiptDateLessThan = null; public Date ReceiptDateLessThanOrEqualTo = null; public Date ReceiptDateNotEqualTo = null; public ArrayList ReceiptDateBetween = null; public ArrayList ReceiptDateIn = null; public String BatchNum = null; public String BatchNumStartsWith = null; public String BatchNumEndsWith = null; public String BatchNumContains = null; public String BatchNumLike = null; public ArrayList BatchNumBetween = null; public ArrayList BatchNumIn = null; public Short ReceiptType = null; public Short ReceiptTypeGreaterThanOrEqualTo = null; public Short ReceiptTypeGreaterThan = null; public Short ReceiptTypeLessThan = null; public Short ReceiptTypeLessThanOrEqualTo = null; public Short ReceiptTypeNotEqualTo = null; public ArrayList ReceiptTypeBetween = null; public ArrayList ReceiptTypeIn = null; public Short ReceiptStatus = null; public Short ReceiptStatusGreaterThanOrEqualTo = null; public Short ReceiptStatusGreaterThan = null; public Short ReceiptStatusLessThan = null; public Short ReceiptStatusLessThanOrEqualTo = null; public Short ReceiptStatusNotEqualTo = null; public ArrayList ReceiptStatusBetween = null; public ArrayList ReceiptStatusIn = null; public Short BatchType = null; public Short BatchTypeGreaterThanOrEqualTo = null; public Short BatchTypeGreaterThan = null; public Short BatchTypeLessThan = null; public Short BatchTypeLessThanOrEqualTo = null; public Short BatchTypeNotEqualTo = null; public ArrayList BatchTypeBetween = null; public ArrayList BatchTypeIn = null; public Short RepeatingType = null; public Short RepeatingTypeGreaterThanOrEqualTo = null; public Short RepeatingTypeGreaterThan = null; public Short RepeatingTypeLessThan = null; public Short RepeatingTypeLessThanOrEqualTo = null; public Short RepeatingTypeNotEqualTo = null; public ArrayList RepeatingTypeBetween = null; public ArrayList RepeatingTypeIn = null; public Short RepeatingUnits = null; public Short RepeatingUnitsGreaterThanOrEqualTo = null; public Short RepeatingUnitsGreaterThan = null; public Short RepeatingUnitsLessThan = null; public Short RepeatingUnitsLessThanOrEqualTo = null; public Short RepeatingUnitsNotEqualTo = null; public ArrayList RepeatingUnitsBetween = null; public ArrayList RepeatingUnitsIn = null; public Date NextRepeatingDate = null; public Date NextRepeatingDateGreaterThanOrEqualTo = null; public Date NextRepeatingDateGreaterThan = null; public Date NextRepeatingDateLessThan = null; public Date NextRepeatingDateLessThanOrEqualTo = null; public Date NextRepeatingDateNotEqualTo = null; public ArrayList NextRepeatingDateBetween = null; public ArrayList NextRepeatingDateIn = null; public Boolean RepeatingWillEnd = null; public Date RepeatingEndDate = null; public Date RepeatingEndDateGreaterThanOrEqualTo = null; public Date RepeatingEndDateGreaterThan = null; public Date RepeatingEndDateLessThan = null; public Date RepeatingEndDateLessThanOrEqualTo = null; public Date RepeatingEndDateNotEqualTo = null; public ArrayList RepeatingEndDateBetween = null; public ArrayList RepeatingEndDateIn = null; public String Description = null; public String DescriptionStartsWith = null; public String DescriptionEndsWith = null; public String DescriptionContains = null; public String DescriptionLike = null; public ArrayList DescriptionBetween = null; public ArrayList DescriptionIn = null; public String LastSaved_HR_Staff_RecID = null; public String LastSaved_HR_Staff_RecIDStartsWith = null; public String LastSaved_HR_Staff_RecIDEndsWith = null; public String LastSaved_HR_Staff_RecIDContains = null; public String LastSaved_HR_Staff_RecIDLike = null; public ArrayList LastSaved_HR_Staff_RecIDBetween = null; public ArrayList LastSaved_HR_Staff_RecIDIn = null; public String getReceiptID() { return ReceiptID; } public DB_BatchTransQuery setReceiptID(String value) { this.ReceiptID = value; return this; } public String getReceiptIDStartsWith() { return ReceiptIDStartsWith; } public DB_BatchTransQuery setReceiptIDStartsWith(String value) { this.ReceiptIDStartsWith = value; return this; } public String getReceiptIDEndsWith() { return ReceiptIDEndsWith; } public DB_BatchTransQuery setReceiptIDEndsWith(String value) { this.ReceiptIDEndsWith = value; return this; } public String getReceiptIDContains() { return ReceiptIDContains; } public DB_BatchTransQuery setReceiptIDContains(String value) { this.ReceiptIDContains = value; return this; } public String getReceiptIDLike() { return ReceiptIDLike; } public DB_BatchTransQuery setReceiptIDLike(String value) { this.ReceiptIDLike = value; return this; } public ArrayList getReceiptIDBetween() { return ReceiptIDBetween; } public DB_BatchTransQuery setReceiptIDBetween(ArrayList value) { this.ReceiptIDBetween = value; return this; } public ArrayList getReceiptIDIn() { return ReceiptIDIn; } public DB_BatchTransQuery setReceiptIDIn(ArrayList value) { this.ReceiptIDIn = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public DB_BatchTransQuery setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getLastSavedDateTimeGreaterThanOrEqualTo() { return LastSavedDateTimeGreaterThanOrEqualTo; } public DB_BatchTransQuery setLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.LastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeGreaterThan() { return LastSavedDateTimeGreaterThan; } public DB_BatchTransQuery setLastSavedDateTimeGreaterThan(Date value) { this.LastSavedDateTimeGreaterThan = value; return this; } public Date getLastSavedDateTimeLessThan() { return LastSavedDateTimeLessThan; } public DB_BatchTransQuery setLastSavedDateTimeLessThan(Date value) { this.LastSavedDateTimeLessThan = value; return this; } public Date getLastSavedDateTimeLessThanOrEqualTo() { return LastSavedDateTimeLessThanOrEqualTo; } public DB_BatchTransQuery setLastSavedDateTimeLessThanOrEqualTo(Date value) { this.LastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeNotEqualTo() { return LastSavedDateTimeNotEqualTo; } public DB_BatchTransQuery setLastSavedDateTimeNotEqualTo(Date value) { this.LastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getLastSavedDateTimeBetween() { return LastSavedDateTimeBetween; } public DB_BatchTransQuery setLastSavedDateTimeBetween(ArrayList value) { this.LastSavedDateTimeBetween = value; return this; } public ArrayList getLastSavedDateTimeIn() { return LastSavedDateTimeIn; } public DB_BatchTransQuery setLastSavedDateTimeIn(ArrayList value) { this.LastSavedDateTimeIn = value; return this; } public String getJiwaUser() { return JiwaUser; } public DB_BatchTransQuery setJiwaUser(String value) { this.JiwaUser = value; return this; } public String getJiwaUserStartsWith() { return JiwaUserStartsWith; } public DB_BatchTransQuery setJiwaUserStartsWith(String value) { this.JiwaUserStartsWith = value; return this; } public String getJiwaUserEndsWith() { return JiwaUserEndsWith; } public DB_BatchTransQuery setJiwaUserEndsWith(String value) { this.JiwaUserEndsWith = value; return this; } public String getJiwaUserContains() { return JiwaUserContains; } public DB_BatchTransQuery setJiwaUserContains(String value) { this.JiwaUserContains = value; return this; } public String getJiwaUserLike() { return JiwaUserLike; } public DB_BatchTransQuery setJiwaUserLike(String value) { this.JiwaUserLike = value; return this; } public ArrayList getJiwaUserBetween() { return JiwaUserBetween; } public DB_BatchTransQuery setJiwaUserBetween(ArrayList value) { this.JiwaUserBetween = value; return this; } public ArrayList getJiwaUserIn() { return JiwaUserIn; } public DB_BatchTransQuery setJiwaUserIn(ArrayList value) { this.JiwaUserIn = value; return this; } public Date getReceiptDate() { return ReceiptDate; } public DB_BatchTransQuery setReceiptDate(Date value) { this.ReceiptDate = value; return this; } public Date getReceiptDateGreaterThanOrEqualTo() { return ReceiptDateGreaterThanOrEqualTo; } public DB_BatchTransQuery setReceiptDateGreaterThanOrEqualTo(Date value) { this.ReceiptDateGreaterThanOrEqualTo = value; return this; } public Date getReceiptDateGreaterThan() { return ReceiptDateGreaterThan; } public DB_BatchTransQuery setReceiptDateGreaterThan(Date value) { this.ReceiptDateGreaterThan = value; return this; } public Date getReceiptDateLessThan() { return ReceiptDateLessThan; } public DB_BatchTransQuery setReceiptDateLessThan(Date value) { this.ReceiptDateLessThan = value; return this; } public Date getReceiptDateLessThanOrEqualTo() { return ReceiptDateLessThanOrEqualTo; } public DB_BatchTransQuery setReceiptDateLessThanOrEqualTo(Date value) { this.ReceiptDateLessThanOrEqualTo = value; return this; } public Date getReceiptDateNotEqualTo() { return ReceiptDateNotEqualTo; } public DB_BatchTransQuery setReceiptDateNotEqualTo(Date value) { this.ReceiptDateNotEqualTo = value; return this; } public ArrayList getReceiptDateBetween() { return ReceiptDateBetween; } public DB_BatchTransQuery setReceiptDateBetween(ArrayList value) { this.ReceiptDateBetween = value; return this; } public ArrayList getReceiptDateIn() { return ReceiptDateIn; } public DB_BatchTransQuery setReceiptDateIn(ArrayList value) { this.ReceiptDateIn = value; return this; } public String getBatchNum() { return BatchNum; } public DB_BatchTransQuery setBatchNum(String value) { this.BatchNum = value; return this; } public String getBatchNumStartsWith() { return BatchNumStartsWith; } public DB_BatchTransQuery setBatchNumStartsWith(String value) { this.BatchNumStartsWith = value; return this; } public String getBatchNumEndsWith() { return BatchNumEndsWith; } public DB_BatchTransQuery setBatchNumEndsWith(String value) { this.BatchNumEndsWith = value; return this; } public String getBatchNumContains() { return BatchNumContains; } public DB_BatchTransQuery setBatchNumContains(String value) { this.BatchNumContains = value; return this; } public String getBatchNumLike() { return BatchNumLike; } public DB_BatchTransQuery setBatchNumLike(String value) { this.BatchNumLike = value; return this; } public ArrayList getBatchNumBetween() { return BatchNumBetween; } public DB_BatchTransQuery setBatchNumBetween(ArrayList value) { this.BatchNumBetween = value; return this; } public ArrayList getBatchNumIn() { return BatchNumIn; } public DB_BatchTransQuery setBatchNumIn(ArrayList value) { this.BatchNumIn = value; return this; } public Short getReceiptType() { return ReceiptType; } public DB_BatchTransQuery setReceiptType(Short value) { this.ReceiptType = value; return this; } public Short getReceiptTypeGreaterThanOrEqualTo() { return ReceiptTypeGreaterThanOrEqualTo; } public DB_BatchTransQuery setReceiptTypeGreaterThanOrEqualTo(Short value) { this.ReceiptTypeGreaterThanOrEqualTo = value; return this; } public Short getReceiptTypeGreaterThan() { return ReceiptTypeGreaterThan; } public DB_BatchTransQuery setReceiptTypeGreaterThan(Short value) { this.ReceiptTypeGreaterThan = value; return this; } public Short getReceiptTypeLessThan() { return ReceiptTypeLessThan; } public DB_BatchTransQuery setReceiptTypeLessThan(Short value) { this.ReceiptTypeLessThan = value; return this; } public Short getReceiptTypeLessThanOrEqualTo() { return ReceiptTypeLessThanOrEqualTo; } public DB_BatchTransQuery setReceiptTypeLessThanOrEqualTo(Short value) { this.ReceiptTypeLessThanOrEqualTo = value; return this; } public Short getReceiptTypeNotEqualTo() { return ReceiptTypeNotEqualTo; } public DB_BatchTransQuery setReceiptTypeNotEqualTo(Short value) { this.ReceiptTypeNotEqualTo = value; return this; } public ArrayList getReceiptTypeBetween() { return ReceiptTypeBetween; } public DB_BatchTransQuery setReceiptTypeBetween(ArrayList value) { this.ReceiptTypeBetween = value; return this; } public ArrayList getReceiptTypeIn() { return ReceiptTypeIn; } public DB_BatchTransQuery setReceiptTypeIn(ArrayList value) { this.ReceiptTypeIn = value; return this; } public Short getReceiptStatus() { return ReceiptStatus; } public DB_BatchTransQuery setReceiptStatus(Short value) { this.ReceiptStatus = value; return this; } public Short getReceiptStatusGreaterThanOrEqualTo() { return ReceiptStatusGreaterThanOrEqualTo; } public DB_BatchTransQuery setReceiptStatusGreaterThanOrEqualTo(Short value) { this.ReceiptStatusGreaterThanOrEqualTo = value; return this; } public Short getReceiptStatusGreaterThan() { return ReceiptStatusGreaterThan; } public DB_BatchTransQuery setReceiptStatusGreaterThan(Short value) { this.ReceiptStatusGreaterThan = value; return this; } public Short getReceiptStatusLessThan() { return ReceiptStatusLessThan; } public DB_BatchTransQuery setReceiptStatusLessThan(Short value) { this.ReceiptStatusLessThan = value; return this; } public Short getReceiptStatusLessThanOrEqualTo() { return ReceiptStatusLessThanOrEqualTo; } public DB_BatchTransQuery setReceiptStatusLessThanOrEqualTo(Short value) { this.ReceiptStatusLessThanOrEqualTo = value; return this; } public Short getReceiptStatusNotEqualTo() { return ReceiptStatusNotEqualTo; } public DB_BatchTransQuery setReceiptStatusNotEqualTo(Short value) { this.ReceiptStatusNotEqualTo = value; return this; } public ArrayList getReceiptStatusBetween() { return ReceiptStatusBetween; } public DB_BatchTransQuery setReceiptStatusBetween(ArrayList value) { this.ReceiptStatusBetween = value; return this; } public ArrayList getReceiptStatusIn() { return ReceiptStatusIn; } public DB_BatchTransQuery setReceiptStatusIn(ArrayList value) { this.ReceiptStatusIn = value; return this; } public Short getBatchType() { return BatchType; } public DB_BatchTransQuery setBatchType(Short value) { this.BatchType = value; return this; } public Short getBatchTypeGreaterThanOrEqualTo() { return BatchTypeGreaterThanOrEqualTo; } public DB_BatchTransQuery setBatchTypeGreaterThanOrEqualTo(Short value) { this.BatchTypeGreaterThanOrEqualTo = value; return this; } public Short getBatchTypeGreaterThan() { return BatchTypeGreaterThan; } public DB_BatchTransQuery setBatchTypeGreaterThan(Short value) { this.BatchTypeGreaterThan = value; return this; } public Short getBatchTypeLessThan() { return BatchTypeLessThan; } public DB_BatchTransQuery setBatchTypeLessThan(Short value) { this.BatchTypeLessThan = value; return this; } public Short getBatchTypeLessThanOrEqualTo() { return BatchTypeLessThanOrEqualTo; } public DB_BatchTransQuery setBatchTypeLessThanOrEqualTo(Short value) { this.BatchTypeLessThanOrEqualTo = value; return this; } public Short getBatchTypeNotEqualTo() { return BatchTypeNotEqualTo; } public DB_BatchTransQuery setBatchTypeNotEqualTo(Short value) { this.BatchTypeNotEqualTo = value; return this; } public ArrayList getBatchTypeBetween() { return BatchTypeBetween; } public DB_BatchTransQuery setBatchTypeBetween(ArrayList value) { this.BatchTypeBetween = value; return this; } public ArrayList getBatchTypeIn() { return BatchTypeIn; } public DB_BatchTransQuery setBatchTypeIn(ArrayList value) { this.BatchTypeIn = value; return this; } public Short getRepeatingType() { return RepeatingType; } public DB_BatchTransQuery setRepeatingType(Short value) { this.RepeatingType = value; return this; } public Short getRepeatingTypeGreaterThanOrEqualTo() { return RepeatingTypeGreaterThanOrEqualTo; } public DB_BatchTransQuery setRepeatingTypeGreaterThanOrEqualTo(Short value) { this.RepeatingTypeGreaterThanOrEqualTo = value; return this; } public Short getRepeatingTypeGreaterThan() { return RepeatingTypeGreaterThan; } public DB_BatchTransQuery setRepeatingTypeGreaterThan(Short value) { this.RepeatingTypeGreaterThan = value; return this; } public Short getRepeatingTypeLessThan() { return RepeatingTypeLessThan; } public DB_BatchTransQuery setRepeatingTypeLessThan(Short value) { this.RepeatingTypeLessThan = value; return this; } public Short getRepeatingTypeLessThanOrEqualTo() { return RepeatingTypeLessThanOrEqualTo; } public DB_BatchTransQuery setRepeatingTypeLessThanOrEqualTo(Short value) { this.RepeatingTypeLessThanOrEqualTo = value; return this; } public Short getRepeatingTypeNotEqualTo() { return RepeatingTypeNotEqualTo; } public DB_BatchTransQuery setRepeatingTypeNotEqualTo(Short value) { this.RepeatingTypeNotEqualTo = value; return this; } public ArrayList getRepeatingTypeBetween() { return RepeatingTypeBetween; } public DB_BatchTransQuery setRepeatingTypeBetween(ArrayList value) { this.RepeatingTypeBetween = value; return this; } public ArrayList getRepeatingTypeIn() { return RepeatingTypeIn; } public DB_BatchTransQuery setRepeatingTypeIn(ArrayList value) { this.RepeatingTypeIn = value; return this; } public Short getRepeatingUnits() { return RepeatingUnits; } public DB_BatchTransQuery setRepeatingUnits(Short value) { this.RepeatingUnits = value; return this; } public Short getRepeatingUnitsGreaterThanOrEqualTo() { return RepeatingUnitsGreaterThanOrEqualTo; } public DB_BatchTransQuery setRepeatingUnitsGreaterThanOrEqualTo(Short value) { this.RepeatingUnitsGreaterThanOrEqualTo = value; return this; } public Short getRepeatingUnitsGreaterThan() { return RepeatingUnitsGreaterThan; } public DB_BatchTransQuery setRepeatingUnitsGreaterThan(Short value) { this.RepeatingUnitsGreaterThan = value; return this; } public Short getRepeatingUnitsLessThan() { return RepeatingUnitsLessThan; } public DB_BatchTransQuery setRepeatingUnitsLessThan(Short value) { this.RepeatingUnitsLessThan = value; return this; } public Short getRepeatingUnitsLessThanOrEqualTo() { return RepeatingUnitsLessThanOrEqualTo; } public DB_BatchTransQuery setRepeatingUnitsLessThanOrEqualTo(Short value) { this.RepeatingUnitsLessThanOrEqualTo = value; return this; } public Short getRepeatingUnitsNotEqualTo() { return RepeatingUnitsNotEqualTo; } public DB_BatchTransQuery setRepeatingUnitsNotEqualTo(Short value) { this.RepeatingUnitsNotEqualTo = value; return this; } public ArrayList getRepeatingUnitsBetween() { return RepeatingUnitsBetween; } public DB_BatchTransQuery setRepeatingUnitsBetween(ArrayList value) { this.RepeatingUnitsBetween = value; return this; } public ArrayList getRepeatingUnitsIn() { return RepeatingUnitsIn; } public DB_BatchTransQuery setRepeatingUnitsIn(ArrayList value) { this.RepeatingUnitsIn = value; return this; } public Date getNextRepeatingDate() { return NextRepeatingDate; } public DB_BatchTransQuery setNextRepeatingDate(Date value) { this.NextRepeatingDate = value; return this; } public Date getNextRepeatingDateGreaterThanOrEqualTo() { return NextRepeatingDateGreaterThanOrEqualTo; } public DB_BatchTransQuery setNextRepeatingDateGreaterThanOrEqualTo(Date value) { this.NextRepeatingDateGreaterThanOrEqualTo = value; return this; } public Date getNextRepeatingDateGreaterThan() { return NextRepeatingDateGreaterThan; } public DB_BatchTransQuery setNextRepeatingDateGreaterThan(Date value) { this.NextRepeatingDateGreaterThan = value; return this; } public Date getNextRepeatingDateLessThan() { return NextRepeatingDateLessThan; } public DB_BatchTransQuery setNextRepeatingDateLessThan(Date value) { this.NextRepeatingDateLessThan = value; return this; } public Date getNextRepeatingDateLessThanOrEqualTo() { return NextRepeatingDateLessThanOrEqualTo; } public DB_BatchTransQuery setNextRepeatingDateLessThanOrEqualTo(Date value) { this.NextRepeatingDateLessThanOrEqualTo = value; return this; } public Date getNextRepeatingDateNotEqualTo() { return NextRepeatingDateNotEqualTo; } public DB_BatchTransQuery setNextRepeatingDateNotEqualTo(Date value) { this.NextRepeatingDateNotEqualTo = value; return this; } public ArrayList getNextRepeatingDateBetween() { return NextRepeatingDateBetween; } public DB_BatchTransQuery setNextRepeatingDateBetween(ArrayList value) { this.NextRepeatingDateBetween = value; return this; } public ArrayList getNextRepeatingDateIn() { return NextRepeatingDateIn; } public DB_BatchTransQuery setNextRepeatingDateIn(ArrayList value) { this.NextRepeatingDateIn = value; return this; } public Boolean isRepeatingWillEnd() { return RepeatingWillEnd; } public DB_BatchTransQuery setRepeatingWillEnd(Boolean value) { this.RepeatingWillEnd = value; return this; } public Date getRepeatingEndDate() { return RepeatingEndDate; } public DB_BatchTransQuery setRepeatingEndDate(Date value) { this.RepeatingEndDate = value; return this; } public Date getRepeatingEndDateGreaterThanOrEqualTo() { return RepeatingEndDateGreaterThanOrEqualTo; } public DB_BatchTransQuery setRepeatingEndDateGreaterThanOrEqualTo(Date value) { this.RepeatingEndDateGreaterThanOrEqualTo = value; return this; } public Date getRepeatingEndDateGreaterThan() { return RepeatingEndDateGreaterThan; } public DB_BatchTransQuery setRepeatingEndDateGreaterThan(Date value) { this.RepeatingEndDateGreaterThan = value; return this; } public Date getRepeatingEndDateLessThan() { return RepeatingEndDateLessThan; } public DB_BatchTransQuery setRepeatingEndDateLessThan(Date value) { this.RepeatingEndDateLessThan = value; return this; } public Date getRepeatingEndDateLessThanOrEqualTo() { return RepeatingEndDateLessThanOrEqualTo; } public DB_BatchTransQuery setRepeatingEndDateLessThanOrEqualTo(Date value) { this.RepeatingEndDateLessThanOrEqualTo = value; return this; } public Date getRepeatingEndDateNotEqualTo() { return RepeatingEndDateNotEqualTo; } public DB_BatchTransQuery setRepeatingEndDateNotEqualTo(Date value) { this.RepeatingEndDateNotEqualTo = value; return this; } public ArrayList getRepeatingEndDateBetween() { return RepeatingEndDateBetween; } public DB_BatchTransQuery setRepeatingEndDateBetween(ArrayList value) { this.RepeatingEndDateBetween = value; return this; } public ArrayList getRepeatingEndDateIn() { return RepeatingEndDateIn; } public DB_BatchTransQuery setRepeatingEndDateIn(ArrayList value) { this.RepeatingEndDateIn = value; return this; } public String getDescription() { return Description; } public DB_BatchTransQuery setDescription(String value) { this.Description = value; return this; } public String getDescriptionStartsWith() { return DescriptionStartsWith; } public DB_BatchTransQuery setDescriptionStartsWith(String value) { this.DescriptionStartsWith = value; return this; } public String getDescriptionEndsWith() { return DescriptionEndsWith; } public DB_BatchTransQuery setDescriptionEndsWith(String value) { this.DescriptionEndsWith = value; return this; } public String getDescriptionContains() { return DescriptionContains; } public DB_BatchTransQuery setDescriptionContains(String value) { this.DescriptionContains = value; return this; } public String getDescriptionLike() { return DescriptionLike; } public DB_BatchTransQuery setDescriptionLike(String value) { this.DescriptionLike = value; return this; } public ArrayList getDescriptionBetween() { return DescriptionBetween; } public DB_BatchTransQuery setDescriptionBetween(ArrayList value) { this.DescriptionBetween = value; return this; } public ArrayList getDescriptionIn() { return DescriptionIn; } public DB_BatchTransQuery setDescriptionIn(ArrayList value) { this.DescriptionIn = value; return this; } public String getLastSavedHrStaffRecID() { return LastSaved_HR_Staff_RecID; } public DB_BatchTransQuery setLastSavedHrStaffRecID(String value) { this.LastSaved_HR_Staff_RecID = value; return this; } public String getLastSavedHrStaffRecIDStartsWith() { return LastSaved_HR_Staff_RecIDStartsWith; } public DB_BatchTransQuery setLastSavedHrStaffRecIDStartsWith(String value) { this.LastSaved_HR_Staff_RecIDStartsWith = value; return this; } public String getLastSavedHrStaffRecIDEndsWith() { return LastSaved_HR_Staff_RecIDEndsWith; } public DB_BatchTransQuery setLastSavedHrStaffRecIDEndsWith(String value) { this.LastSaved_HR_Staff_RecIDEndsWith = value; return this; } public String getLastSavedHrStaffRecIDContains() { return LastSaved_HR_Staff_RecIDContains; } public DB_BatchTransQuery setLastSavedHrStaffRecIDContains(String value) { this.LastSaved_HR_Staff_RecIDContains = value; return this; } public String getLastSavedHrStaffRecIDLike() { return LastSaved_HR_Staff_RecIDLike; } public DB_BatchTransQuery setLastSavedHrStaffRecIDLike(String value) { this.LastSaved_HR_Staff_RecIDLike = value; return this; } public ArrayList getLastSavedHrStaffRecIDBetween() { return LastSaved_HR_Staff_RecIDBetween; } public DB_BatchTransQuery setLastSavedHrStaffRecIDBetween(ArrayList value) { this.LastSaved_HR_Staff_RecIDBetween = value; return this; } public ArrayList getLastSavedHrStaffRecIDIn() { return LastSaved_HR_Staff_RecIDIn; } public DB_BatchTransQuery setLastSavedHrStaffRecIDIn(ArrayList value) { this.LastSaved_HR_Staff_RecIDIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class DB_BudgetQuery extends QueryDb implements IReturn> { public String BudgetID = null; public String BudgetIDStartsWith = null; public String BudgetIDEndsWith = null; public String BudgetIDContains = null; public String BudgetIDLike = null; public ArrayList BudgetIDBetween = null; public ArrayList BudgetIDIn = null; public String DebtorID = null; public String DebtorIDStartsWith = null; public String DebtorIDEndsWith = null; public String DebtorIDContains = null; public String DebtorIDLike = null; public ArrayList DebtorIDBetween = null; public ArrayList DebtorIDIn = null; public BigDecimal LastBudget1 = null; public BigDecimal LastBudget1GreaterThanOrEqualTo = null; public BigDecimal LastBudget1GreaterThan = null; public BigDecimal LastBudget1LessThan = null; public BigDecimal LastBudget1LessThanOrEqualTo = null; public BigDecimal LastBudget1NotEqualTo = null; public ArrayList LastBudget1Between = null; public ArrayList LastBudget1In = null; public BigDecimal LastBudget2 = null; public BigDecimal LastBudget2GreaterThanOrEqualTo = null; public BigDecimal LastBudget2GreaterThan = null; public BigDecimal LastBudget2LessThan = null; public BigDecimal LastBudget2LessThanOrEqualTo = null; public BigDecimal LastBudget2NotEqualTo = null; public ArrayList LastBudget2Between = null; public ArrayList LastBudget2In = null; public BigDecimal LastBudget3 = null; public BigDecimal LastBudget3GreaterThanOrEqualTo = null; public BigDecimal LastBudget3GreaterThan = null; public BigDecimal LastBudget3LessThan = null; public BigDecimal LastBudget3LessThanOrEqualTo = null; public BigDecimal LastBudget3NotEqualTo = null; public ArrayList LastBudget3Between = null; public ArrayList LastBudget3In = null; public BigDecimal LastBudget4 = null; public BigDecimal LastBudget4GreaterThanOrEqualTo = null; public BigDecimal LastBudget4GreaterThan = null; public BigDecimal LastBudget4LessThan = null; public BigDecimal LastBudget4LessThanOrEqualTo = null; public BigDecimal LastBudget4NotEqualTo = null; public ArrayList LastBudget4Between = null; public ArrayList LastBudget4In = null; public BigDecimal LastBudget5 = null; public BigDecimal LastBudget5GreaterThanOrEqualTo = null; public BigDecimal LastBudget5GreaterThan = null; public BigDecimal LastBudget5LessThan = null; public BigDecimal LastBudget5LessThanOrEqualTo = null; public BigDecimal LastBudget5NotEqualTo = null; public ArrayList LastBudget5Between = null; public ArrayList LastBudget5In = null; public BigDecimal LastBudget6 = null; public BigDecimal LastBudget6GreaterThanOrEqualTo = null; public BigDecimal LastBudget6GreaterThan = null; public BigDecimal LastBudget6LessThan = null; public BigDecimal LastBudget6LessThanOrEqualTo = null; public BigDecimal LastBudget6NotEqualTo = null; public ArrayList LastBudget6Between = null; public ArrayList LastBudget6In = null; public BigDecimal LastBudget7 = null; public BigDecimal LastBudget7GreaterThanOrEqualTo = null; public BigDecimal LastBudget7GreaterThan = null; public BigDecimal LastBudget7LessThan = null; public BigDecimal LastBudget7LessThanOrEqualTo = null; public BigDecimal LastBudget7NotEqualTo = null; public ArrayList LastBudget7Between = null; public ArrayList LastBudget7In = null; public BigDecimal LastBudget8 = null; public BigDecimal LastBudget8GreaterThanOrEqualTo = null; public BigDecimal LastBudget8GreaterThan = null; public BigDecimal LastBudget8LessThan = null; public BigDecimal LastBudget8LessThanOrEqualTo = null; public BigDecimal LastBudget8NotEqualTo = null; public ArrayList LastBudget8Between = null; public ArrayList LastBudget8In = null; public BigDecimal LastBudget9 = null; public BigDecimal LastBudget9GreaterThanOrEqualTo = null; public BigDecimal LastBudget9GreaterThan = null; public BigDecimal LastBudget9LessThan = null; public BigDecimal LastBudget9LessThanOrEqualTo = null; public BigDecimal LastBudget9NotEqualTo = null; public ArrayList LastBudget9Between = null; public ArrayList LastBudget9In = null; public BigDecimal LastBudget10 = null; public BigDecimal LastBudget10GreaterThanOrEqualTo = null; public BigDecimal LastBudget10GreaterThan = null; public BigDecimal LastBudget10LessThan = null; public BigDecimal LastBudget10LessThanOrEqualTo = null; public BigDecimal LastBudget10NotEqualTo = null; public ArrayList LastBudget10Between = null; public ArrayList LastBudget10In = null; public BigDecimal LastBudget11 = null; public BigDecimal LastBudget11GreaterThanOrEqualTo = null; public BigDecimal LastBudget11GreaterThan = null; public BigDecimal LastBudget11LessThan = null; public BigDecimal LastBudget11LessThanOrEqualTo = null; public BigDecimal LastBudget11NotEqualTo = null; public ArrayList LastBudget11Between = null; public ArrayList LastBudget11In = null; public BigDecimal LastBudget12 = null; public BigDecimal LastBudget12GreaterThanOrEqualTo = null; public BigDecimal LastBudget12GreaterThan = null; public BigDecimal LastBudget12LessThan = null; public BigDecimal LastBudget12LessThanOrEqualTo = null; public BigDecimal LastBudget12NotEqualTo = null; public ArrayList LastBudget12Between = null; public ArrayList LastBudget12In = null; public BigDecimal CurrBudget1 = null; public BigDecimal CurrBudget1GreaterThanOrEqualTo = null; public BigDecimal CurrBudget1GreaterThan = null; public BigDecimal CurrBudget1LessThan = null; public BigDecimal CurrBudget1LessThanOrEqualTo = null; public BigDecimal CurrBudget1NotEqualTo = null; public ArrayList CurrBudget1Between = null; public ArrayList CurrBudget1In = null; public BigDecimal CurrBudget2 = null; public BigDecimal CurrBudget2GreaterThanOrEqualTo = null; public BigDecimal CurrBudget2GreaterThan = null; public BigDecimal CurrBudget2LessThan = null; public BigDecimal CurrBudget2LessThanOrEqualTo = null; public BigDecimal CurrBudget2NotEqualTo = null; public ArrayList CurrBudget2Between = null; public ArrayList CurrBudget2In = null; public BigDecimal CurrBudget3 = null; public BigDecimal CurrBudget3GreaterThanOrEqualTo = null; public BigDecimal CurrBudget3GreaterThan = null; public BigDecimal CurrBudget3LessThan = null; public BigDecimal CurrBudget3LessThanOrEqualTo = null; public BigDecimal CurrBudget3NotEqualTo = null; public ArrayList CurrBudget3Between = null; public ArrayList CurrBudget3In = null; public BigDecimal CurrBudget4 = null; public BigDecimal CurrBudget4GreaterThanOrEqualTo = null; public BigDecimal CurrBudget4GreaterThan = null; public BigDecimal CurrBudget4LessThan = null; public BigDecimal CurrBudget4LessThanOrEqualTo = null; public BigDecimal CurrBudget4NotEqualTo = null; public ArrayList CurrBudget4Between = null; public ArrayList CurrBudget4In = null; public BigDecimal CurrBudget5 = null; public BigDecimal CurrBudget5GreaterThanOrEqualTo = null; public BigDecimal CurrBudget5GreaterThan = null; public BigDecimal CurrBudget5LessThan = null; public BigDecimal CurrBudget5LessThanOrEqualTo = null; public BigDecimal CurrBudget5NotEqualTo = null; public ArrayList CurrBudget5Between = null; public ArrayList CurrBudget5In = null; public BigDecimal CurrBudget6 = null; public BigDecimal CurrBudget6GreaterThanOrEqualTo = null; public BigDecimal CurrBudget6GreaterThan = null; public BigDecimal CurrBudget6LessThan = null; public BigDecimal CurrBudget6LessThanOrEqualTo = null; public BigDecimal CurrBudget6NotEqualTo = null; public ArrayList CurrBudget6Between = null; public ArrayList CurrBudget6In = null; public BigDecimal CurrBudget7 = null; public BigDecimal CurrBudget7GreaterThanOrEqualTo = null; public BigDecimal CurrBudget7GreaterThan = null; public BigDecimal CurrBudget7LessThan = null; public BigDecimal CurrBudget7LessThanOrEqualTo = null; public BigDecimal CurrBudget7NotEqualTo = null; public ArrayList CurrBudget7Between = null; public ArrayList CurrBudget7In = null; public BigDecimal CurrBudget8 = null; public BigDecimal CurrBudget8GreaterThanOrEqualTo = null; public BigDecimal CurrBudget8GreaterThan = null; public BigDecimal CurrBudget8LessThan = null; public BigDecimal CurrBudget8LessThanOrEqualTo = null; public BigDecimal CurrBudget8NotEqualTo = null; public ArrayList CurrBudget8Between = null; public ArrayList CurrBudget8In = null; public BigDecimal CurrBudget9 = null; public BigDecimal CurrBudget9GreaterThanOrEqualTo = null; public BigDecimal CurrBudget9GreaterThan = null; public BigDecimal CurrBudget9LessThan = null; public BigDecimal CurrBudget9LessThanOrEqualTo = null; public BigDecimal CurrBudget9NotEqualTo = null; public ArrayList CurrBudget9Between = null; public ArrayList CurrBudget9In = null; public BigDecimal CurrBudget10 = null; public BigDecimal CurrBudget10GreaterThanOrEqualTo = null; public BigDecimal CurrBudget10GreaterThan = null; public BigDecimal CurrBudget10LessThan = null; public BigDecimal CurrBudget10LessThanOrEqualTo = null; public BigDecimal CurrBudget10NotEqualTo = null; public ArrayList CurrBudget10Between = null; public ArrayList CurrBudget10In = null; public BigDecimal CurrBudget11 = null; public BigDecimal CurrBudget11GreaterThanOrEqualTo = null; public BigDecimal CurrBudget11GreaterThan = null; public BigDecimal CurrBudget11LessThan = null; public BigDecimal CurrBudget11LessThanOrEqualTo = null; public BigDecimal CurrBudget11NotEqualTo = null; public ArrayList CurrBudget11Between = null; public ArrayList CurrBudget11In = null; public BigDecimal CurrBudget12 = null; public BigDecimal CurrBudget12GreaterThanOrEqualTo = null; public BigDecimal CurrBudget12GreaterThan = null; public BigDecimal CurrBudget12LessThan = null; public BigDecimal CurrBudget12LessThanOrEqualTo = null; public BigDecimal CurrBudget12NotEqualTo = null; public ArrayList CurrBudget12Between = null; public ArrayList CurrBudget12In = null; public BigDecimal NextBudget1 = null; public BigDecimal NextBudget1GreaterThanOrEqualTo = null; public BigDecimal NextBudget1GreaterThan = null; public BigDecimal NextBudget1LessThan = null; public BigDecimal NextBudget1LessThanOrEqualTo = null; public BigDecimal NextBudget1NotEqualTo = null; public ArrayList NextBudget1Between = null; public ArrayList NextBudget1In = null; public BigDecimal NextBudget2 = null; public BigDecimal NextBudget2GreaterThanOrEqualTo = null; public BigDecimal NextBudget2GreaterThan = null; public BigDecimal NextBudget2LessThan = null; public BigDecimal NextBudget2LessThanOrEqualTo = null; public BigDecimal NextBudget2NotEqualTo = null; public ArrayList NextBudget2Between = null; public ArrayList NextBudget2In = null; public BigDecimal NextBudget3 = null; public BigDecimal NextBudget3GreaterThanOrEqualTo = null; public BigDecimal NextBudget3GreaterThan = null; public BigDecimal NextBudget3LessThan = null; public BigDecimal NextBudget3LessThanOrEqualTo = null; public BigDecimal NextBudget3NotEqualTo = null; public ArrayList NextBudget3Between = null; public ArrayList NextBudget3In = null; public BigDecimal NextBudget4 = null; public BigDecimal NextBudget4GreaterThanOrEqualTo = null; public BigDecimal NextBudget4GreaterThan = null; public BigDecimal NextBudget4LessThan = null; public BigDecimal NextBudget4LessThanOrEqualTo = null; public BigDecimal NextBudget4NotEqualTo = null; public ArrayList NextBudget4Between = null; public ArrayList NextBudget4In = null; public BigDecimal NextBudget5 = null; public BigDecimal NextBudget5GreaterThanOrEqualTo = null; public BigDecimal NextBudget5GreaterThan = null; public BigDecimal NextBudget5LessThan = null; public BigDecimal NextBudget5LessThanOrEqualTo = null; public BigDecimal NextBudget5NotEqualTo = null; public ArrayList NextBudget5Between = null; public ArrayList NextBudget5In = null; public BigDecimal NextBudget6 = null; public BigDecimal NextBudget6GreaterThanOrEqualTo = null; public BigDecimal NextBudget6GreaterThan = null; public BigDecimal NextBudget6LessThan = null; public BigDecimal NextBudget6LessThanOrEqualTo = null; public BigDecimal NextBudget6NotEqualTo = null; public ArrayList NextBudget6Between = null; public ArrayList NextBudget6In = null; public BigDecimal NextBudget7 = null; public BigDecimal NextBudget7GreaterThanOrEqualTo = null; public BigDecimal NextBudget7GreaterThan = null; public BigDecimal NextBudget7LessThan = null; public BigDecimal NextBudget7LessThanOrEqualTo = null; public BigDecimal NextBudget7NotEqualTo = null; public ArrayList NextBudget7Between = null; public ArrayList NextBudget7In = null; public BigDecimal NextBudget8 = null; public BigDecimal NextBudget8GreaterThanOrEqualTo = null; public BigDecimal NextBudget8GreaterThan = null; public BigDecimal NextBudget8LessThan = null; public BigDecimal NextBudget8LessThanOrEqualTo = null; public BigDecimal NextBudget8NotEqualTo = null; public ArrayList NextBudget8Between = null; public ArrayList NextBudget8In = null; public BigDecimal NextBudget9 = null; public BigDecimal NextBudget9GreaterThanOrEqualTo = null; public BigDecimal NextBudget9GreaterThan = null; public BigDecimal NextBudget9LessThan = null; public BigDecimal NextBudget9LessThanOrEqualTo = null; public BigDecimal NextBudget9NotEqualTo = null; public ArrayList NextBudget9Between = null; public ArrayList NextBudget9In = null; public BigDecimal NextBudget10 = null; public BigDecimal NextBudget10GreaterThanOrEqualTo = null; public BigDecimal NextBudget10GreaterThan = null; public BigDecimal NextBudget10LessThan = null; public BigDecimal NextBudget10LessThanOrEqualTo = null; public BigDecimal NextBudget10NotEqualTo = null; public ArrayList NextBudget10Between = null; public ArrayList NextBudget10In = null; public BigDecimal NextBudget11 = null; public BigDecimal NextBudget11GreaterThanOrEqualTo = null; public BigDecimal NextBudget11GreaterThan = null; public BigDecimal NextBudget11LessThan = null; public BigDecimal NextBudget11LessThanOrEqualTo = null; public BigDecimal NextBudget11NotEqualTo = null; public ArrayList NextBudget11Between = null; public ArrayList NextBudget11In = null; public BigDecimal NextBudget12 = null; public BigDecimal NextBudget12GreaterThanOrEqualTo = null; public BigDecimal NextBudget12GreaterThan = null; public BigDecimal NextBudget12LessThan = null; public BigDecimal NextBudget12LessThanOrEqualTo = null; public BigDecimal NextBudget12NotEqualTo = null; public ArrayList NextBudget12Between = null; public ArrayList NextBudget12In = null; public String getBudgetID() { return BudgetID; } public DB_BudgetQuery setBudgetID(String value) { this.BudgetID = value; return this; } public String getBudgetIDStartsWith() { return BudgetIDStartsWith; } public DB_BudgetQuery setBudgetIDStartsWith(String value) { this.BudgetIDStartsWith = value; return this; } public String getBudgetIDEndsWith() { return BudgetIDEndsWith; } public DB_BudgetQuery setBudgetIDEndsWith(String value) { this.BudgetIDEndsWith = value; return this; } public String getBudgetIDContains() { return BudgetIDContains; } public DB_BudgetQuery setBudgetIDContains(String value) { this.BudgetIDContains = value; return this; } public String getBudgetIDLike() { return BudgetIDLike; } public DB_BudgetQuery setBudgetIDLike(String value) { this.BudgetIDLike = value; return this; } public ArrayList getBudgetIDBetween() { return BudgetIDBetween; } public DB_BudgetQuery setBudgetIDBetween(ArrayList value) { this.BudgetIDBetween = value; return this; } public ArrayList getBudgetIDIn() { return BudgetIDIn; } public DB_BudgetQuery setBudgetIDIn(ArrayList value) { this.BudgetIDIn = value; return this; } public String getDebtorID() { return DebtorID; } public DB_BudgetQuery setDebtorID(String value) { this.DebtorID = value; return this; } public String getDebtorIDStartsWith() { return DebtorIDStartsWith; } public DB_BudgetQuery setDebtorIDStartsWith(String value) { this.DebtorIDStartsWith = value; return this; } public String getDebtorIDEndsWith() { return DebtorIDEndsWith; } public DB_BudgetQuery setDebtorIDEndsWith(String value) { this.DebtorIDEndsWith = value; return this; } public String getDebtorIDContains() { return DebtorIDContains; } public DB_BudgetQuery setDebtorIDContains(String value) { this.DebtorIDContains = value; return this; } public String getDebtorIDLike() { return DebtorIDLike; } public DB_BudgetQuery setDebtorIDLike(String value) { this.DebtorIDLike = value; return this; } public ArrayList getDebtorIDBetween() { return DebtorIDBetween; } public DB_BudgetQuery setDebtorIDBetween(ArrayList value) { this.DebtorIDBetween = value; return this; } public ArrayList getDebtorIDIn() { return DebtorIDIn; } public DB_BudgetQuery setDebtorIDIn(ArrayList value) { this.DebtorIDIn = value; return this; } public BigDecimal getLastBudget1() { return LastBudget1; } public DB_BudgetQuery setLastBudget1(BigDecimal value) { this.LastBudget1 = value; return this; } public BigDecimal getLastBudget1GreaterThanOrEqualTo() { return LastBudget1GreaterThanOrEqualTo; } public DB_BudgetQuery setLastBudget1GreaterThanOrEqualTo(BigDecimal value) { this.LastBudget1GreaterThanOrEqualTo = value; return this; } public BigDecimal getLastBudget1GreaterThan() { return LastBudget1GreaterThan; } public DB_BudgetQuery setLastBudget1GreaterThan(BigDecimal value) { this.LastBudget1GreaterThan = value; return this; } public BigDecimal getLastBudget1LessThan() { return LastBudget1LessThan; } public DB_BudgetQuery setLastBudget1LessThan(BigDecimal value) { this.LastBudget1LessThan = value; return this; } public BigDecimal getLastBudget1LessThanOrEqualTo() { return LastBudget1LessThanOrEqualTo; } public DB_BudgetQuery setLastBudget1LessThanOrEqualTo(BigDecimal value) { this.LastBudget1LessThanOrEqualTo = value; return this; } public BigDecimal getLastBudget1NotEqualTo() { return LastBudget1NotEqualTo; } public DB_BudgetQuery setLastBudget1NotEqualTo(BigDecimal value) { this.LastBudget1NotEqualTo = value; return this; } public ArrayList getLastBudget1Between() { return LastBudget1Between; } public DB_BudgetQuery setLastBudget1Between(ArrayList value) { this.LastBudget1Between = value; return this; } public ArrayList getLastBudget1In() { return LastBudget1In; } public DB_BudgetQuery setLastBudget1In(ArrayList value) { this.LastBudget1In = value; return this; } public BigDecimal getLastBudget2() { return LastBudget2; } public DB_BudgetQuery setLastBudget2(BigDecimal value) { this.LastBudget2 = value; return this; } public BigDecimal getLastBudget2GreaterThanOrEqualTo() { return LastBudget2GreaterThanOrEqualTo; } public DB_BudgetQuery setLastBudget2GreaterThanOrEqualTo(BigDecimal value) { this.LastBudget2GreaterThanOrEqualTo = value; return this; } public BigDecimal getLastBudget2GreaterThan() { return LastBudget2GreaterThan; } public DB_BudgetQuery setLastBudget2GreaterThan(BigDecimal value) { this.LastBudget2GreaterThan = value; return this; } public BigDecimal getLastBudget2LessThan() { return LastBudget2LessThan; } public DB_BudgetQuery setLastBudget2LessThan(BigDecimal value) { this.LastBudget2LessThan = value; return this; } public BigDecimal getLastBudget2LessThanOrEqualTo() { return LastBudget2LessThanOrEqualTo; } public DB_BudgetQuery setLastBudget2LessThanOrEqualTo(BigDecimal value) { this.LastBudget2LessThanOrEqualTo = value; return this; } public BigDecimal getLastBudget2NotEqualTo() { return LastBudget2NotEqualTo; } public DB_BudgetQuery setLastBudget2NotEqualTo(BigDecimal value) { this.LastBudget2NotEqualTo = value; return this; } public ArrayList getLastBudget2Between() { return LastBudget2Between; } public DB_BudgetQuery setLastBudget2Between(ArrayList value) { this.LastBudget2Between = value; return this; } public ArrayList getLastBudget2In() { return LastBudget2In; } public DB_BudgetQuery setLastBudget2In(ArrayList value) { this.LastBudget2In = value; return this; } public BigDecimal getLastBudget3() { return LastBudget3; } public DB_BudgetQuery setLastBudget3(BigDecimal value) { this.LastBudget3 = value; return this; } public BigDecimal getLastBudget3GreaterThanOrEqualTo() { return LastBudget3GreaterThanOrEqualTo; } public DB_BudgetQuery setLastBudget3GreaterThanOrEqualTo(BigDecimal value) { this.LastBudget3GreaterThanOrEqualTo = value; return this; } public BigDecimal getLastBudget3GreaterThan() { return LastBudget3GreaterThan; } public DB_BudgetQuery setLastBudget3GreaterThan(BigDecimal value) { this.LastBudget3GreaterThan = value; return this; } public BigDecimal getLastBudget3LessThan() { return LastBudget3LessThan; } public DB_BudgetQuery setLastBudget3LessThan(BigDecimal value) { this.LastBudget3LessThan = value; return this; } public BigDecimal getLastBudget3LessThanOrEqualTo() { return LastBudget3LessThanOrEqualTo; } public DB_BudgetQuery setLastBudget3LessThanOrEqualTo(BigDecimal value) { this.LastBudget3LessThanOrEqualTo = value; return this; } public BigDecimal getLastBudget3NotEqualTo() { return LastBudget3NotEqualTo; } public DB_BudgetQuery setLastBudget3NotEqualTo(BigDecimal value) { this.LastBudget3NotEqualTo = value; return this; } public ArrayList getLastBudget3Between() { return LastBudget3Between; } public DB_BudgetQuery setLastBudget3Between(ArrayList value) { this.LastBudget3Between = value; return this; } public ArrayList getLastBudget3In() { return LastBudget3In; } public DB_BudgetQuery setLastBudget3In(ArrayList value) { this.LastBudget3In = value; return this; } public BigDecimal getLastBudget4() { return LastBudget4; } public DB_BudgetQuery setLastBudget4(BigDecimal value) { this.LastBudget4 = value; return this; } public BigDecimal getLastBudget4GreaterThanOrEqualTo() { return LastBudget4GreaterThanOrEqualTo; } public DB_BudgetQuery setLastBudget4GreaterThanOrEqualTo(BigDecimal value) { this.LastBudget4GreaterThanOrEqualTo = value; return this; } public BigDecimal getLastBudget4GreaterThan() { return LastBudget4GreaterThan; } public DB_BudgetQuery setLastBudget4GreaterThan(BigDecimal value) { this.LastBudget4GreaterThan = value; return this; } public BigDecimal getLastBudget4LessThan() { return LastBudget4LessThan; } public DB_BudgetQuery setLastBudget4LessThan(BigDecimal value) { this.LastBudget4LessThan = value; return this; } public BigDecimal getLastBudget4LessThanOrEqualTo() { return LastBudget4LessThanOrEqualTo; } public DB_BudgetQuery setLastBudget4LessThanOrEqualTo(BigDecimal value) { this.LastBudget4LessThanOrEqualTo = value; return this; } public BigDecimal getLastBudget4NotEqualTo() { return LastBudget4NotEqualTo; } public DB_BudgetQuery setLastBudget4NotEqualTo(BigDecimal value) { this.LastBudget4NotEqualTo = value; return this; } public ArrayList getLastBudget4Between() { return LastBudget4Between; } public DB_BudgetQuery setLastBudget4Between(ArrayList value) { this.LastBudget4Between = value; return this; } public ArrayList getLastBudget4In() { return LastBudget4In; } public DB_BudgetQuery setLastBudget4In(ArrayList value) { this.LastBudget4In = value; return this; } public BigDecimal getLastBudget5() { return LastBudget5; } public DB_BudgetQuery setLastBudget5(BigDecimal value) { this.LastBudget5 = value; return this; } public BigDecimal getLastBudget5GreaterThanOrEqualTo() { return LastBudget5GreaterThanOrEqualTo; } public DB_BudgetQuery setLastBudget5GreaterThanOrEqualTo(BigDecimal value) { this.LastBudget5GreaterThanOrEqualTo = value; return this; } public BigDecimal getLastBudget5GreaterThan() { return LastBudget5GreaterThan; } public DB_BudgetQuery setLastBudget5GreaterThan(BigDecimal value) { this.LastBudget5GreaterThan = value; return this; } public BigDecimal getLastBudget5LessThan() { return LastBudget5LessThan; } public DB_BudgetQuery setLastBudget5LessThan(BigDecimal value) { this.LastBudget5LessThan = value; return this; } public BigDecimal getLastBudget5LessThanOrEqualTo() { return LastBudget5LessThanOrEqualTo; } public DB_BudgetQuery setLastBudget5LessThanOrEqualTo(BigDecimal value) { this.LastBudget5LessThanOrEqualTo = value; return this; } public BigDecimal getLastBudget5NotEqualTo() { return LastBudget5NotEqualTo; } public DB_BudgetQuery setLastBudget5NotEqualTo(BigDecimal value) { this.LastBudget5NotEqualTo = value; return this; } public ArrayList getLastBudget5Between() { return LastBudget5Between; } public DB_BudgetQuery setLastBudget5Between(ArrayList value) { this.LastBudget5Between = value; return this; } public ArrayList getLastBudget5In() { return LastBudget5In; } public DB_BudgetQuery setLastBudget5In(ArrayList value) { this.LastBudget5In = value; return this; } public BigDecimal getLastBudget6() { return LastBudget6; } public DB_BudgetQuery setLastBudget6(BigDecimal value) { this.LastBudget6 = value; return this; } public BigDecimal getLastBudget6GreaterThanOrEqualTo() { return LastBudget6GreaterThanOrEqualTo; } public DB_BudgetQuery setLastBudget6GreaterThanOrEqualTo(BigDecimal value) { this.LastBudget6GreaterThanOrEqualTo = value; return this; } public BigDecimal getLastBudget6GreaterThan() { return LastBudget6GreaterThan; } public DB_BudgetQuery setLastBudget6GreaterThan(BigDecimal value) { this.LastBudget6GreaterThan = value; return this; } public BigDecimal getLastBudget6LessThan() { return LastBudget6LessThan; } public DB_BudgetQuery setLastBudget6LessThan(BigDecimal value) { this.LastBudget6LessThan = value; return this; } public BigDecimal getLastBudget6LessThanOrEqualTo() { return LastBudget6LessThanOrEqualTo; } public DB_BudgetQuery setLastBudget6LessThanOrEqualTo(BigDecimal value) { this.LastBudget6LessThanOrEqualTo = value; return this; } public BigDecimal getLastBudget6NotEqualTo() { return LastBudget6NotEqualTo; } public DB_BudgetQuery setLastBudget6NotEqualTo(BigDecimal value) { this.LastBudget6NotEqualTo = value; return this; } public ArrayList getLastBudget6Between() { return LastBudget6Between; } public DB_BudgetQuery setLastBudget6Between(ArrayList value) { this.LastBudget6Between = value; return this; } public ArrayList getLastBudget6In() { return LastBudget6In; } public DB_BudgetQuery setLastBudget6In(ArrayList value) { this.LastBudget6In = value; return this; } public BigDecimal getLastBudget7() { return LastBudget7; } public DB_BudgetQuery setLastBudget7(BigDecimal value) { this.LastBudget7 = value; return this; } public BigDecimal getLastBudget7GreaterThanOrEqualTo() { return LastBudget7GreaterThanOrEqualTo; } public DB_BudgetQuery setLastBudget7GreaterThanOrEqualTo(BigDecimal value) { this.LastBudget7GreaterThanOrEqualTo = value; return this; } public BigDecimal getLastBudget7GreaterThan() { return LastBudget7GreaterThan; } public DB_BudgetQuery setLastBudget7GreaterThan(BigDecimal value) { this.LastBudget7GreaterThan = value; return this; } public BigDecimal getLastBudget7LessThan() { return LastBudget7LessThan; } public DB_BudgetQuery setLastBudget7LessThan(BigDecimal value) { this.LastBudget7LessThan = value; return this; } public BigDecimal getLastBudget7LessThanOrEqualTo() { return LastBudget7LessThanOrEqualTo; } public DB_BudgetQuery setLastBudget7LessThanOrEqualTo(BigDecimal value) { this.LastBudget7LessThanOrEqualTo = value; return this; } public BigDecimal getLastBudget7NotEqualTo() { return LastBudget7NotEqualTo; } public DB_BudgetQuery setLastBudget7NotEqualTo(BigDecimal value) { this.LastBudget7NotEqualTo = value; return this; } public ArrayList getLastBudget7Between() { return LastBudget7Between; } public DB_BudgetQuery setLastBudget7Between(ArrayList value) { this.LastBudget7Between = value; return this; } public ArrayList getLastBudget7In() { return LastBudget7In; } public DB_BudgetQuery setLastBudget7In(ArrayList value) { this.LastBudget7In = value; return this; } public BigDecimal getLastBudget8() { return LastBudget8; } public DB_BudgetQuery setLastBudget8(BigDecimal value) { this.LastBudget8 = value; return this; } public BigDecimal getLastBudget8GreaterThanOrEqualTo() { return LastBudget8GreaterThanOrEqualTo; } public DB_BudgetQuery setLastBudget8GreaterThanOrEqualTo(BigDecimal value) { this.LastBudget8GreaterThanOrEqualTo = value; return this; } public BigDecimal getLastBudget8GreaterThan() { return LastBudget8GreaterThan; } public DB_BudgetQuery setLastBudget8GreaterThan(BigDecimal value) { this.LastBudget8GreaterThan = value; return this; } public BigDecimal getLastBudget8LessThan() { return LastBudget8LessThan; } public DB_BudgetQuery setLastBudget8LessThan(BigDecimal value) { this.LastBudget8LessThan = value; return this; } public BigDecimal getLastBudget8LessThanOrEqualTo() { return LastBudget8LessThanOrEqualTo; } public DB_BudgetQuery setLastBudget8LessThanOrEqualTo(BigDecimal value) { this.LastBudget8LessThanOrEqualTo = value; return this; } public BigDecimal getLastBudget8NotEqualTo() { return LastBudget8NotEqualTo; } public DB_BudgetQuery setLastBudget8NotEqualTo(BigDecimal value) { this.LastBudget8NotEqualTo = value; return this; } public ArrayList getLastBudget8Between() { return LastBudget8Between; } public DB_BudgetQuery setLastBudget8Between(ArrayList value) { this.LastBudget8Between = value; return this; } public ArrayList getLastBudget8In() { return LastBudget8In; } public DB_BudgetQuery setLastBudget8In(ArrayList value) { this.LastBudget8In = value; return this; } public BigDecimal getLastBudget9() { return LastBudget9; } public DB_BudgetQuery setLastBudget9(BigDecimal value) { this.LastBudget9 = value; return this; } public BigDecimal getLastBudget9GreaterThanOrEqualTo() { return LastBudget9GreaterThanOrEqualTo; } public DB_BudgetQuery setLastBudget9GreaterThanOrEqualTo(BigDecimal value) { this.LastBudget9GreaterThanOrEqualTo = value; return this; } public BigDecimal getLastBudget9GreaterThan() { return LastBudget9GreaterThan; } public DB_BudgetQuery setLastBudget9GreaterThan(BigDecimal value) { this.LastBudget9GreaterThan = value; return this; } public BigDecimal getLastBudget9LessThan() { return LastBudget9LessThan; } public DB_BudgetQuery setLastBudget9LessThan(BigDecimal value) { this.LastBudget9LessThan = value; return this; } public BigDecimal getLastBudget9LessThanOrEqualTo() { return LastBudget9LessThanOrEqualTo; } public DB_BudgetQuery setLastBudget9LessThanOrEqualTo(BigDecimal value) { this.LastBudget9LessThanOrEqualTo = value; return this; } public BigDecimal getLastBudget9NotEqualTo() { return LastBudget9NotEqualTo; } public DB_BudgetQuery setLastBudget9NotEqualTo(BigDecimal value) { this.LastBudget9NotEqualTo = value; return this; } public ArrayList getLastBudget9Between() { return LastBudget9Between; } public DB_BudgetQuery setLastBudget9Between(ArrayList value) { this.LastBudget9Between = value; return this; } public ArrayList getLastBudget9In() { return LastBudget9In; } public DB_BudgetQuery setLastBudget9In(ArrayList value) { this.LastBudget9In = value; return this; } public BigDecimal getLastBudget10() { return LastBudget10; } public DB_BudgetQuery setLastBudget10(BigDecimal value) { this.LastBudget10 = value; return this; } public BigDecimal getLastBudget10GreaterThanOrEqualTo() { return LastBudget10GreaterThanOrEqualTo; } public DB_BudgetQuery setLastBudget10GreaterThanOrEqualTo(BigDecimal value) { this.LastBudget10GreaterThanOrEqualTo = value; return this; } public BigDecimal getLastBudget10GreaterThan() { return LastBudget10GreaterThan; } public DB_BudgetQuery setLastBudget10GreaterThan(BigDecimal value) { this.LastBudget10GreaterThan = value; return this; } public BigDecimal getLastBudget10LessThan() { return LastBudget10LessThan; } public DB_BudgetQuery setLastBudget10LessThan(BigDecimal value) { this.LastBudget10LessThan = value; return this; } public BigDecimal getLastBudget10LessThanOrEqualTo() { return LastBudget10LessThanOrEqualTo; } public DB_BudgetQuery setLastBudget10LessThanOrEqualTo(BigDecimal value) { this.LastBudget10LessThanOrEqualTo = value; return this; } public BigDecimal getLastBudget10NotEqualTo() { return LastBudget10NotEqualTo; } public DB_BudgetQuery setLastBudget10NotEqualTo(BigDecimal value) { this.LastBudget10NotEqualTo = value; return this; } public ArrayList getLastBudget10Between() { return LastBudget10Between; } public DB_BudgetQuery setLastBudget10Between(ArrayList value) { this.LastBudget10Between = value; return this; } public ArrayList getLastBudget10In() { return LastBudget10In; } public DB_BudgetQuery setLastBudget10In(ArrayList value) { this.LastBudget10In = value; return this; } public BigDecimal getLastBudget11() { return LastBudget11; } public DB_BudgetQuery setLastBudget11(BigDecimal value) { this.LastBudget11 = value; return this; } public BigDecimal getLastBudget11GreaterThanOrEqualTo() { return LastBudget11GreaterThanOrEqualTo; } public DB_BudgetQuery setLastBudget11GreaterThanOrEqualTo(BigDecimal value) { this.LastBudget11GreaterThanOrEqualTo = value; return this; } public BigDecimal getLastBudget11GreaterThan() { return LastBudget11GreaterThan; } public DB_BudgetQuery setLastBudget11GreaterThan(BigDecimal value) { this.LastBudget11GreaterThan = value; return this; } public BigDecimal getLastBudget11LessThan() { return LastBudget11LessThan; } public DB_BudgetQuery setLastBudget11LessThan(BigDecimal value) { this.LastBudget11LessThan = value; return this; } public BigDecimal getLastBudget11LessThanOrEqualTo() { return LastBudget11LessThanOrEqualTo; } public DB_BudgetQuery setLastBudget11LessThanOrEqualTo(BigDecimal value) { this.LastBudget11LessThanOrEqualTo = value; return this; } public BigDecimal getLastBudget11NotEqualTo() { return LastBudget11NotEqualTo; } public DB_BudgetQuery setLastBudget11NotEqualTo(BigDecimal value) { this.LastBudget11NotEqualTo = value; return this; } public ArrayList getLastBudget11Between() { return LastBudget11Between; } public DB_BudgetQuery setLastBudget11Between(ArrayList value) { this.LastBudget11Between = value; return this; } public ArrayList getLastBudget11In() { return LastBudget11In; } public DB_BudgetQuery setLastBudget11In(ArrayList value) { this.LastBudget11In = value; return this; } public BigDecimal getLastBudget12() { return LastBudget12; } public DB_BudgetQuery setLastBudget12(BigDecimal value) { this.LastBudget12 = value; return this; } public BigDecimal getLastBudget12GreaterThanOrEqualTo() { return LastBudget12GreaterThanOrEqualTo; } public DB_BudgetQuery setLastBudget12GreaterThanOrEqualTo(BigDecimal value) { this.LastBudget12GreaterThanOrEqualTo = value; return this; } public BigDecimal getLastBudget12GreaterThan() { return LastBudget12GreaterThan; } public DB_BudgetQuery setLastBudget12GreaterThan(BigDecimal value) { this.LastBudget12GreaterThan = value; return this; } public BigDecimal getLastBudget12LessThan() { return LastBudget12LessThan; } public DB_BudgetQuery setLastBudget12LessThan(BigDecimal value) { this.LastBudget12LessThan = value; return this; } public BigDecimal getLastBudget12LessThanOrEqualTo() { return LastBudget12LessThanOrEqualTo; } public DB_BudgetQuery setLastBudget12LessThanOrEqualTo(BigDecimal value) { this.LastBudget12LessThanOrEqualTo = value; return this; } public BigDecimal getLastBudget12NotEqualTo() { return LastBudget12NotEqualTo; } public DB_BudgetQuery setLastBudget12NotEqualTo(BigDecimal value) { this.LastBudget12NotEqualTo = value; return this; } public ArrayList getLastBudget12Between() { return LastBudget12Between; } public DB_BudgetQuery setLastBudget12Between(ArrayList value) { this.LastBudget12Between = value; return this; } public ArrayList getLastBudget12In() { return LastBudget12In; } public DB_BudgetQuery setLastBudget12In(ArrayList value) { this.LastBudget12In = value; return this; } public BigDecimal getCurrBudget1() { return CurrBudget1; } public DB_BudgetQuery setCurrBudget1(BigDecimal value) { this.CurrBudget1 = value; return this; } public BigDecimal getCurrBudget1GreaterThanOrEqualTo() { return CurrBudget1GreaterThanOrEqualTo; } public DB_BudgetQuery setCurrBudget1GreaterThanOrEqualTo(BigDecimal value) { this.CurrBudget1GreaterThanOrEqualTo = value; return this; } public BigDecimal getCurrBudget1GreaterThan() { return CurrBudget1GreaterThan; } public DB_BudgetQuery setCurrBudget1GreaterThan(BigDecimal value) { this.CurrBudget1GreaterThan = value; return this; } public BigDecimal getCurrBudget1LessThan() { return CurrBudget1LessThan; } public DB_BudgetQuery setCurrBudget1LessThan(BigDecimal value) { this.CurrBudget1LessThan = value; return this; } public BigDecimal getCurrBudget1LessThanOrEqualTo() { return CurrBudget1LessThanOrEqualTo; } public DB_BudgetQuery setCurrBudget1LessThanOrEqualTo(BigDecimal value) { this.CurrBudget1LessThanOrEqualTo = value; return this; } public BigDecimal getCurrBudget1NotEqualTo() { return CurrBudget1NotEqualTo; } public DB_BudgetQuery setCurrBudget1NotEqualTo(BigDecimal value) { this.CurrBudget1NotEqualTo = value; return this; } public ArrayList getCurrBudget1Between() { return CurrBudget1Between; } public DB_BudgetQuery setCurrBudget1Between(ArrayList value) { this.CurrBudget1Between = value; return this; } public ArrayList getCurrBudget1In() { return CurrBudget1In; } public DB_BudgetQuery setCurrBudget1In(ArrayList value) { this.CurrBudget1In = value; return this; } public BigDecimal getCurrBudget2() { return CurrBudget2; } public DB_BudgetQuery setCurrBudget2(BigDecimal value) { this.CurrBudget2 = value; return this; } public BigDecimal getCurrBudget2GreaterThanOrEqualTo() { return CurrBudget2GreaterThanOrEqualTo; } public DB_BudgetQuery setCurrBudget2GreaterThanOrEqualTo(BigDecimal value) { this.CurrBudget2GreaterThanOrEqualTo = value; return this; } public BigDecimal getCurrBudget2GreaterThan() { return CurrBudget2GreaterThan; } public DB_BudgetQuery setCurrBudget2GreaterThan(BigDecimal value) { this.CurrBudget2GreaterThan = value; return this; } public BigDecimal getCurrBudget2LessThan() { return CurrBudget2LessThan; } public DB_BudgetQuery setCurrBudget2LessThan(BigDecimal value) { this.CurrBudget2LessThan = value; return this; } public BigDecimal getCurrBudget2LessThanOrEqualTo() { return CurrBudget2LessThanOrEqualTo; } public DB_BudgetQuery setCurrBudget2LessThanOrEqualTo(BigDecimal value) { this.CurrBudget2LessThanOrEqualTo = value; return this; } public BigDecimal getCurrBudget2NotEqualTo() { return CurrBudget2NotEqualTo; } public DB_BudgetQuery setCurrBudget2NotEqualTo(BigDecimal value) { this.CurrBudget2NotEqualTo = value; return this; } public ArrayList getCurrBudget2Between() { return CurrBudget2Between; } public DB_BudgetQuery setCurrBudget2Between(ArrayList value) { this.CurrBudget2Between = value; return this; } public ArrayList getCurrBudget2In() { return CurrBudget2In; } public DB_BudgetQuery setCurrBudget2In(ArrayList value) { this.CurrBudget2In = value; return this; } public BigDecimal getCurrBudget3() { return CurrBudget3; } public DB_BudgetQuery setCurrBudget3(BigDecimal value) { this.CurrBudget3 = value; return this; } public BigDecimal getCurrBudget3GreaterThanOrEqualTo() { return CurrBudget3GreaterThanOrEqualTo; } public DB_BudgetQuery setCurrBudget3GreaterThanOrEqualTo(BigDecimal value) { this.CurrBudget3GreaterThanOrEqualTo = value; return this; } public BigDecimal getCurrBudget3GreaterThan() { return CurrBudget3GreaterThan; } public DB_BudgetQuery setCurrBudget3GreaterThan(BigDecimal value) { this.CurrBudget3GreaterThan = value; return this; } public BigDecimal getCurrBudget3LessThan() { return CurrBudget3LessThan; } public DB_BudgetQuery setCurrBudget3LessThan(BigDecimal value) { this.CurrBudget3LessThan = value; return this; } public BigDecimal getCurrBudget3LessThanOrEqualTo() { return CurrBudget3LessThanOrEqualTo; } public DB_BudgetQuery setCurrBudget3LessThanOrEqualTo(BigDecimal value) { this.CurrBudget3LessThanOrEqualTo = value; return this; } public BigDecimal getCurrBudget3NotEqualTo() { return CurrBudget3NotEqualTo; } public DB_BudgetQuery setCurrBudget3NotEqualTo(BigDecimal value) { this.CurrBudget3NotEqualTo = value; return this; } public ArrayList getCurrBudget3Between() { return CurrBudget3Between; } public DB_BudgetQuery setCurrBudget3Between(ArrayList value) { this.CurrBudget3Between = value; return this; } public ArrayList getCurrBudget3In() { return CurrBudget3In; } public DB_BudgetQuery setCurrBudget3In(ArrayList value) { this.CurrBudget3In = value; return this; } public BigDecimal getCurrBudget4() { return CurrBudget4; } public DB_BudgetQuery setCurrBudget4(BigDecimal value) { this.CurrBudget4 = value; return this; } public BigDecimal getCurrBudget4GreaterThanOrEqualTo() { return CurrBudget4GreaterThanOrEqualTo; } public DB_BudgetQuery setCurrBudget4GreaterThanOrEqualTo(BigDecimal value) { this.CurrBudget4GreaterThanOrEqualTo = value; return this; } public BigDecimal getCurrBudget4GreaterThan() { return CurrBudget4GreaterThan; } public DB_BudgetQuery setCurrBudget4GreaterThan(BigDecimal value) { this.CurrBudget4GreaterThan = value; return this; } public BigDecimal getCurrBudget4LessThan() { return CurrBudget4LessThan; } public DB_BudgetQuery setCurrBudget4LessThan(BigDecimal value) { this.CurrBudget4LessThan = value; return this; } public BigDecimal getCurrBudget4LessThanOrEqualTo() { return CurrBudget4LessThanOrEqualTo; } public DB_BudgetQuery setCurrBudget4LessThanOrEqualTo(BigDecimal value) { this.CurrBudget4LessThanOrEqualTo = value; return this; } public BigDecimal getCurrBudget4NotEqualTo() { return CurrBudget4NotEqualTo; } public DB_BudgetQuery setCurrBudget4NotEqualTo(BigDecimal value) { this.CurrBudget4NotEqualTo = value; return this; } public ArrayList getCurrBudget4Between() { return CurrBudget4Between; } public DB_BudgetQuery setCurrBudget4Between(ArrayList value) { this.CurrBudget4Between = value; return this; } public ArrayList getCurrBudget4In() { return CurrBudget4In; } public DB_BudgetQuery setCurrBudget4In(ArrayList value) { this.CurrBudget4In = value; return this; } public BigDecimal getCurrBudget5() { return CurrBudget5; } public DB_BudgetQuery setCurrBudget5(BigDecimal value) { this.CurrBudget5 = value; return this; } public BigDecimal getCurrBudget5GreaterThanOrEqualTo() { return CurrBudget5GreaterThanOrEqualTo; } public DB_BudgetQuery setCurrBudget5GreaterThanOrEqualTo(BigDecimal value) { this.CurrBudget5GreaterThanOrEqualTo = value; return this; } public BigDecimal getCurrBudget5GreaterThan() { return CurrBudget5GreaterThan; } public DB_BudgetQuery setCurrBudget5GreaterThan(BigDecimal value) { this.CurrBudget5GreaterThan = value; return this; } public BigDecimal getCurrBudget5LessThan() { return CurrBudget5LessThan; } public DB_BudgetQuery setCurrBudget5LessThan(BigDecimal value) { this.CurrBudget5LessThan = value; return this; } public BigDecimal getCurrBudget5LessThanOrEqualTo() { return CurrBudget5LessThanOrEqualTo; } public DB_BudgetQuery setCurrBudget5LessThanOrEqualTo(BigDecimal value) { this.CurrBudget5LessThanOrEqualTo = value; return this; } public BigDecimal getCurrBudget5NotEqualTo() { return CurrBudget5NotEqualTo; } public DB_BudgetQuery setCurrBudget5NotEqualTo(BigDecimal value) { this.CurrBudget5NotEqualTo = value; return this; } public ArrayList getCurrBudget5Between() { return CurrBudget5Between; } public DB_BudgetQuery setCurrBudget5Between(ArrayList value) { this.CurrBudget5Between = value; return this; } public ArrayList getCurrBudget5In() { return CurrBudget5In; } public DB_BudgetQuery setCurrBudget5In(ArrayList value) { this.CurrBudget5In = value; return this; } public BigDecimal getCurrBudget6() { return CurrBudget6; } public DB_BudgetQuery setCurrBudget6(BigDecimal value) { this.CurrBudget6 = value; return this; } public BigDecimal getCurrBudget6GreaterThanOrEqualTo() { return CurrBudget6GreaterThanOrEqualTo; } public DB_BudgetQuery setCurrBudget6GreaterThanOrEqualTo(BigDecimal value) { this.CurrBudget6GreaterThanOrEqualTo = value; return this; } public BigDecimal getCurrBudget6GreaterThan() { return CurrBudget6GreaterThan; } public DB_BudgetQuery setCurrBudget6GreaterThan(BigDecimal value) { this.CurrBudget6GreaterThan = value; return this; } public BigDecimal getCurrBudget6LessThan() { return CurrBudget6LessThan; } public DB_BudgetQuery setCurrBudget6LessThan(BigDecimal value) { this.CurrBudget6LessThan = value; return this; } public BigDecimal getCurrBudget6LessThanOrEqualTo() { return CurrBudget6LessThanOrEqualTo; } public DB_BudgetQuery setCurrBudget6LessThanOrEqualTo(BigDecimal value) { this.CurrBudget6LessThanOrEqualTo = value; return this; } public BigDecimal getCurrBudget6NotEqualTo() { return CurrBudget6NotEqualTo; } public DB_BudgetQuery setCurrBudget6NotEqualTo(BigDecimal value) { this.CurrBudget6NotEqualTo = value; return this; } public ArrayList getCurrBudget6Between() { return CurrBudget6Between; } public DB_BudgetQuery setCurrBudget6Between(ArrayList value) { this.CurrBudget6Between = value; return this; } public ArrayList getCurrBudget6In() { return CurrBudget6In; } public DB_BudgetQuery setCurrBudget6In(ArrayList value) { this.CurrBudget6In = value; return this; } public BigDecimal getCurrBudget7() { return CurrBudget7; } public DB_BudgetQuery setCurrBudget7(BigDecimal value) { this.CurrBudget7 = value; return this; } public BigDecimal getCurrBudget7GreaterThanOrEqualTo() { return CurrBudget7GreaterThanOrEqualTo; } public DB_BudgetQuery setCurrBudget7GreaterThanOrEqualTo(BigDecimal value) { this.CurrBudget7GreaterThanOrEqualTo = value; return this; } public BigDecimal getCurrBudget7GreaterThan() { return CurrBudget7GreaterThan; } public DB_BudgetQuery setCurrBudget7GreaterThan(BigDecimal value) { this.CurrBudget7GreaterThan = value; return this; } public BigDecimal getCurrBudget7LessThan() { return CurrBudget7LessThan; } public DB_BudgetQuery setCurrBudget7LessThan(BigDecimal value) { this.CurrBudget7LessThan = value; return this; } public BigDecimal getCurrBudget7LessThanOrEqualTo() { return CurrBudget7LessThanOrEqualTo; } public DB_BudgetQuery setCurrBudget7LessThanOrEqualTo(BigDecimal value) { this.CurrBudget7LessThanOrEqualTo = value; return this; } public BigDecimal getCurrBudget7NotEqualTo() { return CurrBudget7NotEqualTo; } public DB_BudgetQuery setCurrBudget7NotEqualTo(BigDecimal value) { this.CurrBudget7NotEqualTo = value; return this; } public ArrayList getCurrBudget7Between() { return CurrBudget7Between; } public DB_BudgetQuery setCurrBudget7Between(ArrayList value) { this.CurrBudget7Between = value; return this; } public ArrayList getCurrBudget7In() { return CurrBudget7In; } public DB_BudgetQuery setCurrBudget7In(ArrayList value) { this.CurrBudget7In = value; return this; } public BigDecimal getCurrBudget8() { return CurrBudget8; } public DB_BudgetQuery setCurrBudget8(BigDecimal value) { this.CurrBudget8 = value; return this; } public BigDecimal getCurrBudget8GreaterThanOrEqualTo() { return CurrBudget8GreaterThanOrEqualTo; } public DB_BudgetQuery setCurrBudget8GreaterThanOrEqualTo(BigDecimal value) { this.CurrBudget8GreaterThanOrEqualTo = value; return this; } public BigDecimal getCurrBudget8GreaterThan() { return CurrBudget8GreaterThan; } public DB_BudgetQuery setCurrBudget8GreaterThan(BigDecimal value) { this.CurrBudget8GreaterThan = value; return this; } public BigDecimal getCurrBudget8LessThan() { return CurrBudget8LessThan; } public DB_BudgetQuery setCurrBudget8LessThan(BigDecimal value) { this.CurrBudget8LessThan = value; return this; } public BigDecimal getCurrBudget8LessThanOrEqualTo() { return CurrBudget8LessThanOrEqualTo; } public DB_BudgetQuery setCurrBudget8LessThanOrEqualTo(BigDecimal value) { this.CurrBudget8LessThanOrEqualTo = value; return this; } public BigDecimal getCurrBudget8NotEqualTo() { return CurrBudget8NotEqualTo; } public DB_BudgetQuery setCurrBudget8NotEqualTo(BigDecimal value) { this.CurrBudget8NotEqualTo = value; return this; } public ArrayList getCurrBudget8Between() { return CurrBudget8Between; } public DB_BudgetQuery setCurrBudget8Between(ArrayList value) { this.CurrBudget8Between = value; return this; } public ArrayList getCurrBudget8In() { return CurrBudget8In; } public DB_BudgetQuery setCurrBudget8In(ArrayList value) { this.CurrBudget8In = value; return this; } public BigDecimal getCurrBudget9() { return CurrBudget9; } public DB_BudgetQuery setCurrBudget9(BigDecimal value) { this.CurrBudget9 = value; return this; } public BigDecimal getCurrBudget9GreaterThanOrEqualTo() { return CurrBudget9GreaterThanOrEqualTo; } public DB_BudgetQuery setCurrBudget9GreaterThanOrEqualTo(BigDecimal value) { this.CurrBudget9GreaterThanOrEqualTo = value; return this; } public BigDecimal getCurrBudget9GreaterThan() { return CurrBudget9GreaterThan; } public DB_BudgetQuery setCurrBudget9GreaterThan(BigDecimal value) { this.CurrBudget9GreaterThan = value; return this; } public BigDecimal getCurrBudget9LessThan() { return CurrBudget9LessThan; } public DB_BudgetQuery setCurrBudget9LessThan(BigDecimal value) { this.CurrBudget9LessThan = value; return this; } public BigDecimal getCurrBudget9LessThanOrEqualTo() { return CurrBudget9LessThanOrEqualTo; } public DB_BudgetQuery setCurrBudget9LessThanOrEqualTo(BigDecimal value) { this.CurrBudget9LessThanOrEqualTo = value; return this; } public BigDecimal getCurrBudget9NotEqualTo() { return CurrBudget9NotEqualTo; } public DB_BudgetQuery setCurrBudget9NotEqualTo(BigDecimal value) { this.CurrBudget9NotEqualTo = value; return this; } public ArrayList getCurrBudget9Between() { return CurrBudget9Between; } public DB_BudgetQuery setCurrBudget9Between(ArrayList value) { this.CurrBudget9Between = value; return this; } public ArrayList getCurrBudget9In() { return CurrBudget9In; } public DB_BudgetQuery setCurrBudget9In(ArrayList value) { this.CurrBudget9In = value; return this; } public BigDecimal getCurrBudget10() { return CurrBudget10; } public DB_BudgetQuery setCurrBudget10(BigDecimal value) { this.CurrBudget10 = value; return this; } public BigDecimal getCurrBudget10GreaterThanOrEqualTo() { return CurrBudget10GreaterThanOrEqualTo; } public DB_BudgetQuery setCurrBudget10GreaterThanOrEqualTo(BigDecimal value) { this.CurrBudget10GreaterThanOrEqualTo = value; return this; } public BigDecimal getCurrBudget10GreaterThan() { return CurrBudget10GreaterThan; } public DB_BudgetQuery setCurrBudget10GreaterThan(BigDecimal value) { this.CurrBudget10GreaterThan = value; return this; } public BigDecimal getCurrBudget10LessThan() { return CurrBudget10LessThan; } public DB_BudgetQuery setCurrBudget10LessThan(BigDecimal value) { this.CurrBudget10LessThan = value; return this; } public BigDecimal getCurrBudget10LessThanOrEqualTo() { return CurrBudget10LessThanOrEqualTo; } public DB_BudgetQuery setCurrBudget10LessThanOrEqualTo(BigDecimal value) { this.CurrBudget10LessThanOrEqualTo = value; return this; } public BigDecimal getCurrBudget10NotEqualTo() { return CurrBudget10NotEqualTo; } public DB_BudgetQuery setCurrBudget10NotEqualTo(BigDecimal value) { this.CurrBudget10NotEqualTo = value; return this; } public ArrayList getCurrBudget10Between() { return CurrBudget10Between; } public DB_BudgetQuery setCurrBudget10Between(ArrayList value) { this.CurrBudget10Between = value; return this; } public ArrayList getCurrBudget10In() { return CurrBudget10In; } public DB_BudgetQuery setCurrBudget10In(ArrayList value) { this.CurrBudget10In = value; return this; } public BigDecimal getCurrBudget11() { return CurrBudget11; } public DB_BudgetQuery setCurrBudget11(BigDecimal value) { this.CurrBudget11 = value; return this; } public BigDecimal getCurrBudget11GreaterThanOrEqualTo() { return CurrBudget11GreaterThanOrEqualTo; } public DB_BudgetQuery setCurrBudget11GreaterThanOrEqualTo(BigDecimal value) { this.CurrBudget11GreaterThanOrEqualTo = value; return this; } public BigDecimal getCurrBudget11GreaterThan() { return CurrBudget11GreaterThan; } public DB_BudgetQuery setCurrBudget11GreaterThan(BigDecimal value) { this.CurrBudget11GreaterThan = value; return this; } public BigDecimal getCurrBudget11LessThan() { return CurrBudget11LessThan; } public DB_BudgetQuery setCurrBudget11LessThan(BigDecimal value) { this.CurrBudget11LessThan = value; return this; } public BigDecimal getCurrBudget11LessThanOrEqualTo() { return CurrBudget11LessThanOrEqualTo; } public DB_BudgetQuery setCurrBudget11LessThanOrEqualTo(BigDecimal value) { this.CurrBudget11LessThanOrEqualTo = value; return this; } public BigDecimal getCurrBudget11NotEqualTo() { return CurrBudget11NotEqualTo; } public DB_BudgetQuery setCurrBudget11NotEqualTo(BigDecimal value) { this.CurrBudget11NotEqualTo = value; return this; } public ArrayList getCurrBudget11Between() { return CurrBudget11Between; } public DB_BudgetQuery setCurrBudget11Between(ArrayList value) { this.CurrBudget11Between = value; return this; } public ArrayList getCurrBudget11In() { return CurrBudget11In; } public DB_BudgetQuery setCurrBudget11In(ArrayList value) { this.CurrBudget11In = value; return this; } public BigDecimal getCurrBudget12() { return CurrBudget12; } public DB_BudgetQuery setCurrBudget12(BigDecimal value) { this.CurrBudget12 = value; return this; } public BigDecimal getCurrBudget12GreaterThanOrEqualTo() { return CurrBudget12GreaterThanOrEqualTo; } public DB_BudgetQuery setCurrBudget12GreaterThanOrEqualTo(BigDecimal value) { this.CurrBudget12GreaterThanOrEqualTo = value; return this; } public BigDecimal getCurrBudget12GreaterThan() { return CurrBudget12GreaterThan; } public DB_BudgetQuery setCurrBudget12GreaterThan(BigDecimal value) { this.CurrBudget12GreaterThan = value; return this; } public BigDecimal getCurrBudget12LessThan() { return CurrBudget12LessThan; } public DB_BudgetQuery setCurrBudget12LessThan(BigDecimal value) { this.CurrBudget12LessThan = value; return this; } public BigDecimal getCurrBudget12LessThanOrEqualTo() { return CurrBudget12LessThanOrEqualTo; } public DB_BudgetQuery setCurrBudget12LessThanOrEqualTo(BigDecimal value) { this.CurrBudget12LessThanOrEqualTo = value; return this; } public BigDecimal getCurrBudget12NotEqualTo() { return CurrBudget12NotEqualTo; } public DB_BudgetQuery setCurrBudget12NotEqualTo(BigDecimal value) { this.CurrBudget12NotEqualTo = value; return this; } public ArrayList getCurrBudget12Between() { return CurrBudget12Between; } public DB_BudgetQuery setCurrBudget12Between(ArrayList value) { this.CurrBudget12Between = value; return this; } public ArrayList getCurrBudget12In() { return CurrBudget12In; } public DB_BudgetQuery setCurrBudget12In(ArrayList value) { this.CurrBudget12In = value; return this; } public BigDecimal getNextBudget1() { return NextBudget1; } public DB_BudgetQuery setNextBudget1(BigDecimal value) { this.NextBudget1 = value; return this; } public BigDecimal getNextBudget1GreaterThanOrEqualTo() { return NextBudget1GreaterThanOrEqualTo; } public DB_BudgetQuery setNextBudget1GreaterThanOrEqualTo(BigDecimal value) { this.NextBudget1GreaterThanOrEqualTo = value; return this; } public BigDecimal getNextBudget1GreaterThan() { return NextBudget1GreaterThan; } public DB_BudgetQuery setNextBudget1GreaterThan(BigDecimal value) { this.NextBudget1GreaterThan = value; return this; } public BigDecimal getNextBudget1LessThan() { return NextBudget1LessThan; } public DB_BudgetQuery setNextBudget1LessThan(BigDecimal value) { this.NextBudget1LessThan = value; return this; } public BigDecimal getNextBudget1LessThanOrEqualTo() { return NextBudget1LessThanOrEqualTo; } public DB_BudgetQuery setNextBudget1LessThanOrEqualTo(BigDecimal value) { this.NextBudget1LessThanOrEqualTo = value; return this; } public BigDecimal getNextBudget1NotEqualTo() { return NextBudget1NotEqualTo; } public DB_BudgetQuery setNextBudget1NotEqualTo(BigDecimal value) { this.NextBudget1NotEqualTo = value; return this; } public ArrayList getNextBudget1Between() { return NextBudget1Between; } public DB_BudgetQuery setNextBudget1Between(ArrayList value) { this.NextBudget1Between = value; return this; } public ArrayList getNextBudget1In() { return NextBudget1In; } public DB_BudgetQuery setNextBudget1In(ArrayList value) { this.NextBudget1In = value; return this; } public BigDecimal getNextBudget2() { return NextBudget2; } public DB_BudgetQuery setNextBudget2(BigDecimal value) { this.NextBudget2 = value; return this; } public BigDecimal getNextBudget2GreaterThanOrEqualTo() { return NextBudget2GreaterThanOrEqualTo; } public DB_BudgetQuery setNextBudget2GreaterThanOrEqualTo(BigDecimal value) { this.NextBudget2GreaterThanOrEqualTo = value; return this; } public BigDecimal getNextBudget2GreaterThan() { return NextBudget2GreaterThan; } public DB_BudgetQuery setNextBudget2GreaterThan(BigDecimal value) { this.NextBudget2GreaterThan = value; return this; } public BigDecimal getNextBudget2LessThan() { return NextBudget2LessThan; } public DB_BudgetQuery setNextBudget2LessThan(BigDecimal value) { this.NextBudget2LessThan = value; return this; } public BigDecimal getNextBudget2LessThanOrEqualTo() { return NextBudget2LessThanOrEqualTo; } public DB_BudgetQuery setNextBudget2LessThanOrEqualTo(BigDecimal value) { this.NextBudget2LessThanOrEqualTo = value; return this; } public BigDecimal getNextBudget2NotEqualTo() { return NextBudget2NotEqualTo; } public DB_BudgetQuery setNextBudget2NotEqualTo(BigDecimal value) { this.NextBudget2NotEqualTo = value; return this; } public ArrayList getNextBudget2Between() { return NextBudget2Between; } public DB_BudgetQuery setNextBudget2Between(ArrayList value) { this.NextBudget2Between = value; return this; } public ArrayList getNextBudget2In() { return NextBudget2In; } public DB_BudgetQuery setNextBudget2In(ArrayList value) { this.NextBudget2In = value; return this; } public BigDecimal getNextBudget3() { return NextBudget3; } public DB_BudgetQuery setNextBudget3(BigDecimal value) { this.NextBudget3 = value; return this; } public BigDecimal getNextBudget3GreaterThanOrEqualTo() { return NextBudget3GreaterThanOrEqualTo; } public DB_BudgetQuery setNextBudget3GreaterThanOrEqualTo(BigDecimal value) { this.NextBudget3GreaterThanOrEqualTo = value; return this; } public BigDecimal getNextBudget3GreaterThan() { return NextBudget3GreaterThan; } public DB_BudgetQuery setNextBudget3GreaterThan(BigDecimal value) { this.NextBudget3GreaterThan = value; return this; } public BigDecimal getNextBudget3LessThan() { return NextBudget3LessThan; } public DB_BudgetQuery setNextBudget3LessThan(BigDecimal value) { this.NextBudget3LessThan = value; return this; } public BigDecimal getNextBudget3LessThanOrEqualTo() { return NextBudget3LessThanOrEqualTo; } public DB_BudgetQuery setNextBudget3LessThanOrEqualTo(BigDecimal value) { this.NextBudget3LessThanOrEqualTo = value; return this; } public BigDecimal getNextBudget3NotEqualTo() { return NextBudget3NotEqualTo; } public DB_BudgetQuery setNextBudget3NotEqualTo(BigDecimal value) { this.NextBudget3NotEqualTo = value; return this; } public ArrayList getNextBudget3Between() { return NextBudget3Between; } public DB_BudgetQuery setNextBudget3Between(ArrayList value) { this.NextBudget3Between = value; return this; } public ArrayList getNextBudget3In() { return NextBudget3In; } public DB_BudgetQuery setNextBudget3In(ArrayList value) { this.NextBudget3In = value; return this; } public BigDecimal getNextBudget4() { return NextBudget4; } public DB_BudgetQuery setNextBudget4(BigDecimal value) { this.NextBudget4 = value; return this; } public BigDecimal getNextBudget4GreaterThanOrEqualTo() { return NextBudget4GreaterThanOrEqualTo; } public DB_BudgetQuery setNextBudget4GreaterThanOrEqualTo(BigDecimal value) { this.NextBudget4GreaterThanOrEqualTo = value; return this; } public BigDecimal getNextBudget4GreaterThan() { return NextBudget4GreaterThan; } public DB_BudgetQuery setNextBudget4GreaterThan(BigDecimal value) { this.NextBudget4GreaterThan = value; return this; } public BigDecimal getNextBudget4LessThan() { return NextBudget4LessThan; } public DB_BudgetQuery setNextBudget4LessThan(BigDecimal value) { this.NextBudget4LessThan = value; return this; } public BigDecimal getNextBudget4LessThanOrEqualTo() { return NextBudget4LessThanOrEqualTo; } public DB_BudgetQuery setNextBudget4LessThanOrEqualTo(BigDecimal value) { this.NextBudget4LessThanOrEqualTo = value; return this; } public BigDecimal getNextBudget4NotEqualTo() { return NextBudget4NotEqualTo; } public DB_BudgetQuery setNextBudget4NotEqualTo(BigDecimal value) { this.NextBudget4NotEqualTo = value; return this; } public ArrayList getNextBudget4Between() { return NextBudget4Between; } public DB_BudgetQuery setNextBudget4Between(ArrayList value) { this.NextBudget4Between = value; return this; } public ArrayList getNextBudget4In() { return NextBudget4In; } public DB_BudgetQuery setNextBudget4In(ArrayList value) { this.NextBudget4In = value; return this; } public BigDecimal getNextBudget5() { return NextBudget5; } public DB_BudgetQuery setNextBudget5(BigDecimal value) { this.NextBudget5 = value; return this; } public BigDecimal getNextBudget5GreaterThanOrEqualTo() { return NextBudget5GreaterThanOrEqualTo; } public DB_BudgetQuery setNextBudget5GreaterThanOrEqualTo(BigDecimal value) { this.NextBudget5GreaterThanOrEqualTo = value; return this; } public BigDecimal getNextBudget5GreaterThan() { return NextBudget5GreaterThan; } public DB_BudgetQuery setNextBudget5GreaterThan(BigDecimal value) { this.NextBudget5GreaterThan = value; return this; } public BigDecimal getNextBudget5LessThan() { return NextBudget5LessThan; } public DB_BudgetQuery setNextBudget5LessThan(BigDecimal value) { this.NextBudget5LessThan = value; return this; } public BigDecimal getNextBudget5LessThanOrEqualTo() { return NextBudget5LessThanOrEqualTo; } public DB_BudgetQuery setNextBudget5LessThanOrEqualTo(BigDecimal value) { this.NextBudget5LessThanOrEqualTo = value; return this; } public BigDecimal getNextBudget5NotEqualTo() { return NextBudget5NotEqualTo; } public DB_BudgetQuery setNextBudget5NotEqualTo(BigDecimal value) { this.NextBudget5NotEqualTo = value; return this; } public ArrayList getNextBudget5Between() { return NextBudget5Between; } public DB_BudgetQuery setNextBudget5Between(ArrayList value) { this.NextBudget5Between = value; return this; } public ArrayList getNextBudget5In() { return NextBudget5In; } public DB_BudgetQuery setNextBudget5In(ArrayList value) { this.NextBudget5In = value; return this; } public BigDecimal getNextBudget6() { return NextBudget6; } public DB_BudgetQuery setNextBudget6(BigDecimal value) { this.NextBudget6 = value; return this; } public BigDecimal getNextBudget6GreaterThanOrEqualTo() { return NextBudget6GreaterThanOrEqualTo; } public DB_BudgetQuery setNextBudget6GreaterThanOrEqualTo(BigDecimal value) { this.NextBudget6GreaterThanOrEqualTo = value; return this; } public BigDecimal getNextBudget6GreaterThan() { return NextBudget6GreaterThan; } public DB_BudgetQuery setNextBudget6GreaterThan(BigDecimal value) { this.NextBudget6GreaterThan = value; return this; } public BigDecimal getNextBudget6LessThan() { return NextBudget6LessThan; } public DB_BudgetQuery setNextBudget6LessThan(BigDecimal value) { this.NextBudget6LessThan = value; return this; } public BigDecimal getNextBudget6LessThanOrEqualTo() { return NextBudget6LessThanOrEqualTo; } public DB_BudgetQuery setNextBudget6LessThanOrEqualTo(BigDecimal value) { this.NextBudget6LessThanOrEqualTo = value; return this; } public BigDecimal getNextBudget6NotEqualTo() { return NextBudget6NotEqualTo; } public DB_BudgetQuery setNextBudget6NotEqualTo(BigDecimal value) { this.NextBudget6NotEqualTo = value; return this; } public ArrayList getNextBudget6Between() { return NextBudget6Between; } public DB_BudgetQuery setNextBudget6Between(ArrayList value) { this.NextBudget6Between = value; return this; } public ArrayList getNextBudget6In() { return NextBudget6In; } public DB_BudgetQuery setNextBudget6In(ArrayList value) { this.NextBudget6In = value; return this; } public BigDecimal getNextBudget7() { return NextBudget7; } public DB_BudgetQuery setNextBudget7(BigDecimal value) { this.NextBudget7 = value; return this; } public BigDecimal getNextBudget7GreaterThanOrEqualTo() { return NextBudget7GreaterThanOrEqualTo; } public DB_BudgetQuery setNextBudget7GreaterThanOrEqualTo(BigDecimal value) { this.NextBudget7GreaterThanOrEqualTo = value; return this; } public BigDecimal getNextBudget7GreaterThan() { return NextBudget7GreaterThan; } public DB_BudgetQuery setNextBudget7GreaterThan(BigDecimal value) { this.NextBudget7GreaterThan = value; return this; } public BigDecimal getNextBudget7LessThan() { return NextBudget7LessThan; } public DB_BudgetQuery setNextBudget7LessThan(BigDecimal value) { this.NextBudget7LessThan = value; return this; } public BigDecimal getNextBudget7LessThanOrEqualTo() { return NextBudget7LessThanOrEqualTo; } public DB_BudgetQuery setNextBudget7LessThanOrEqualTo(BigDecimal value) { this.NextBudget7LessThanOrEqualTo = value; return this; } public BigDecimal getNextBudget7NotEqualTo() { return NextBudget7NotEqualTo; } public DB_BudgetQuery setNextBudget7NotEqualTo(BigDecimal value) { this.NextBudget7NotEqualTo = value; return this; } public ArrayList getNextBudget7Between() { return NextBudget7Between; } public DB_BudgetQuery setNextBudget7Between(ArrayList value) { this.NextBudget7Between = value; return this; } public ArrayList getNextBudget7In() { return NextBudget7In; } public DB_BudgetQuery setNextBudget7In(ArrayList value) { this.NextBudget7In = value; return this; } public BigDecimal getNextBudget8() { return NextBudget8; } public DB_BudgetQuery setNextBudget8(BigDecimal value) { this.NextBudget8 = value; return this; } public BigDecimal getNextBudget8GreaterThanOrEqualTo() { return NextBudget8GreaterThanOrEqualTo; } public DB_BudgetQuery setNextBudget8GreaterThanOrEqualTo(BigDecimal value) { this.NextBudget8GreaterThanOrEqualTo = value; return this; } public BigDecimal getNextBudget8GreaterThan() { return NextBudget8GreaterThan; } public DB_BudgetQuery setNextBudget8GreaterThan(BigDecimal value) { this.NextBudget8GreaterThan = value; return this; } public BigDecimal getNextBudget8LessThan() { return NextBudget8LessThan; } public DB_BudgetQuery setNextBudget8LessThan(BigDecimal value) { this.NextBudget8LessThan = value; return this; } public BigDecimal getNextBudget8LessThanOrEqualTo() { return NextBudget8LessThanOrEqualTo; } public DB_BudgetQuery setNextBudget8LessThanOrEqualTo(BigDecimal value) { this.NextBudget8LessThanOrEqualTo = value; return this; } public BigDecimal getNextBudget8NotEqualTo() { return NextBudget8NotEqualTo; } public DB_BudgetQuery setNextBudget8NotEqualTo(BigDecimal value) { this.NextBudget8NotEqualTo = value; return this; } public ArrayList getNextBudget8Between() { return NextBudget8Between; } public DB_BudgetQuery setNextBudget8Between(ArrayList value) { this.NextBudget8Between = value; return this; } public ArrayList getNextBudget8In() { return NextBudget8In; } public DB_BudgetQuery setNextBudget8In(ArrayList value) { this.NextBudget8In = value; return this; } public BigDecimal getNextBudget9() { return NextBudget9; } public DB_BudgetQuery setNextBudget9(BigDecimal value) { this.NextBudget9 = value; return this; } public BigDecimal getNextBudget9GreaterThanOrEqualTo() { return NextBudget9GreaterThanOrEqualTo; } public DB_BudgetQuery setNextBudget9GreaterThanOrEqualTo(BigDecimal value) { this.NextBudget9GreaterThanOrEqualTo = value; return this; } public BigDecimal getNextBudget9GreaterThan() { return NextBudget9GreaterThan; } public DB_BudgetQuery setNextBudget9GreaterThan(BigDecimal value) { this.NextBudget9GreaterThan = value; return this; } public BigDecimal getNextBudget9LessThan() { return NextBudget9LessThan; } public DB_BudgetQuery setNextBudget9LessThan(BigDecimal value) { this.NextBudget9LessThan = value; return this; } public BigDecimal getNextBudget9LessThanOrEqualTo() { return NextBudget9LessThanOrEqualTo; } public DB_BudgetQuery setNextBudget9LessThanOrEqualTo(BigDecimal value) { this.NextBudget9LessThanOrEqualTo = value; return this; } public BigDecimal getNextBudget9NotEqualTo() { return NextBudget9NotEqualTo; } public DB_BudgetQuery setNextBudget9NotEqualTo(BigDecimal value) { this.NextBudget9NotEqualTo = value; return this; } public ArrayList getNextBudget9Between() { return NextBudget9Between; } public DB_BudgetQuery setNextBudget9Between(ArrayList value) { this.NextBudget9Between = value; return this; } public ArrayList getNextBudget9In() { return NextBudget9In; } public DB_BudgetQuery setNextBudget9In(ArrayList value) { this.NextBudget9In = value; return this; } public BigDecimal getNextBudget10() { return NextBudget10; } public DB_BudgetQuery setNextBudget10(BigDecimal value) { this.NextBudget10 = value; return this; } public BigDecimal getNextBudget10GreaterThanOrEqualTo() { return NextBudget10GreaterThanOrEqualTo; } public DB_BudgetQuery setNextBudget10GreaterThanOrEqualTo(BigDecimal value) { this.NextBudget10GreaterThanOrEqualTo = value; return this; } public BigDecimal getNextBudget10GreaterThan() { return NextBudget10GreaterThan; } public DB_BudgetQuery setNextBudget10GreaterThan(BigDecimal value) { this.NextBudget10GreaterThan = value; return this; } public BigDecimal getNextBudget10LessThan() { return NextBudget10LessThan; } public DB_BudgetQuery setNextBudget10LessThan(BigDecimal value) { this.NextBudget10LessThan = value; return this; } public BigDecimal getNextBudget10LessThanOrEqualTo() { return NextBudget10LessThanOrEqualTo; } public DB_BudgetQuery setNextBudget10LessThanOrEqualTo(BigDecimal value) { this.NextBudget10LessThanOrEqualTo = value; return this; } public BigDecimal getNextBudget10NotEqualTo() { return NextBudget10NotEqualTo; } public DB_BudgetQuery setNextBudget10NotEqualTo(BigDecimal value) { this.NextBudget10NotEqualTo = value; return this; } public ArrayList getNextBudget10Between() { return NextBudget10Between; } public DB_BudgetQuery setNextBudget10Between(ArrayList value) { this.NextBudget10Between = value; return this; } public ArrayList getNextBudget10In() { return NextBudget10In; } public DB_BudgetQuery setNextBudget10In(ArrayList value) { this.NextBudget10In = value; return this; } public BigDecimal getNextBudget11() { return NextBudget11; } public DB_BudgetQuery setNextBudget11(BigDecimal value) { this.NextBudget11 = value; return this; } public BigDecimal getNextBudget11GreaterThanOrEqualTo() { return NextBudget11GreaterThanOrEqualTo; } public DB_BudgetQuery setNextBudget11GreaterThanOrEqualTo(BigDecimal value) { this.NextBudget11GreaterThanOrEqualTo = value; return this; } public BigDecimal getNextBudget11GreaterThan() { return NextBudget11GreaterThan; } public DB_BudgetQuery setNextBudget11GreaterThan(BigDecimal value) { this.NextBudget11GreaterThan = value; return this; } public BigDecimal getNextBudget11LessThan() { return NextBudget11LessThan; } public DB_BudgetQuery setNextBudget11LessThan(BigDecimal value) { this.NextBudget11LessThan = value; return this; } public BigDecimal getNextBudget11LessThanOrEqualTo() { return NextBudget11LessThanOrEqualTo; } public DB_BudgetQuery setNextBudget11LessThanOrEqualTo(BigDecimal value) { this.NextBudget11LessThanOrEqualTo = value; return this; } public BigDecimal getNextBudget11NotEqualTo() { return NextBudget11NotEqualTo; } public DB_BudgetQuery setNextBudget11NotEqualTo(BigDecimal value) { this.NextBudget11NotEqualTo = value; return this; } public ArrayList getNextBudget11Between() { return NextBudget11Between; } public DB_BudgetQuery setNextBudget11Between(ArrayList value) { this.NextBudget11Between = value; return this; } public ArrayList getNextBudget11In() { return NextBudget11In; } public DB_BudgetQuery setNextBudget11In(ArrayList value) { this.NextBudget11In = value; return this; } public BigDecimal getNextBudget12() { return NextBudget12; } public DB_BudgetQuery setNextBudget12(BigDecimal value) { this.NextBudget12 = value; return this; } public BigDecimal getNextBudget12GreaterThanOrEqualTo() { return NextBudget12GreaterThanOrEqualTo; } public DB_BudgetQuery setNextBudget12GreaterThanOrEqualTo(BigDecimal value) { this.NextBudget12GreaterThanOrEqualTo = value; return this; } public BigDecimal getNextBudget12GreaterThan() { return NextBudget12GreaterThan; } public DB_BudgetQuery setNextBudget12GreaterThan(BigDecimal value) { this.NextBudget12GreaterThan = value; return this; } public BigDecimal getNextBudget12LessThan() { return NextBudget12LessThan; } public DB_BudgetQuery setNextBudget12LessThan(BigDecimal value) { this.NextBudget12LessThan = value; return this; } public BigDecimal getNextBudget12LessThanOrEqualTo() { return NextBudget12LessThanOrEqualTo; } public DB_BudgetQuery setNextBudget12LessThanOrEqualTo(BigDecimal value) { this.NextBudget12LessThanOrEqualTo = value; return this; } public BigDecimal getNextBudget12NotEqualTo() { return NextBudget12NotEqualTo; } public DB_BudgetQuery setNextBudget12NotEqualTo(BigDecimal value) { this.NextBudget12NotEqualTo = value; return this; } public ArrayList getNextBudget12Between() { return NextBudget12Between; } public DB_BudgetQuery setNextBudget12Between(ArrayList value) { this.NextBudget12Between = value; return this; } public ArrayList getNextBudget12In() { return NextBudget12In; } public DB_BudgetQuery setNextBudget12In(ArrayList value) { this.NextBudget12In = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @Route(Path="/Queries/DB_Categories", Verbs="GET") @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class DB_CategoriesQuery extends QueryDb implements IReturn> { public Integer CategoryNo = null; public Integer CategoryNoGreaterThanOrEqualTo = null; public Integer CategoryNoGreaterThan = null; public Integer CategoryNoLessThan = null; public Integer CategoryNoLessThanOrEqualTo = null; public Integer CategoryNoNotEqualTo = null; public ArrayList CategoryNoBetween = null; public ArrayList CategoryNoIn = null; public String CategoryID = null; public String CategoryIDStartsWith = null; public String CategoryIDEndsWith = null; public String CategoryIDContains = null; public String CategoryIDLike = null; public ArrayList CategoryIDBetween = null; public ArrayList CategoryIDIn = null; public String Description = null; public String DescriptionStartsWith = null; public String DescriptionEndsWith = null; public String DescriptionContains = null; public String DescriptionLike = null; public ArrayList DescriptionBetween = null; public ArrayList DescriptionIn = null; public Boolean DefaultCategory = null; public Date LastSavedDateTime = null; public Date LastSavedDateTimeGreaterThanOrEqualTo = null; public Date LastSavedDateTimeGreaterThan = null; public Date LastSavedDateTimeLessThan = null; public Date LastSavedDateTimeLessThanOrEqualTo = null; public Date LastSavedDateTimeNotEqualTo = null; public ArrayList LastSavedDateTimeBetween = null; public ArrayList LastSavedDateTimeIn = null; public Integer getCategoryNo() { return CategoryNo; } public DB_CategoriesQuery setCategoryNo(Integer value) { this.CategoryNo = value; return this; } public Integer getCategoryNoGreaterThanOrEqualTo() { return CategoryNoGreaterThanOrEqualTo; } public DB_CategoriesQuery setCategoryNoGreaterThanOrEqualTo(Integer value) { this.CategoryNoGreaterThanOrEqualTo = value; return this; } public Integer getCategoryNoGreaterThan() { return CategoryNoGreaterThan; } public DB_CategoriesQuery setCategoryNoGreaterThan(Integer value) { this.CategoryNoGreaterThan = value; return this; } public Integer getCategoryNoLessThan() { return CategoryNoLessThan; } public DB_CategoriesQuery setCategoryNoLessThan(Integer value) { this.CategoryNoLessThan = value; return this; } public Integer getCategoryNoLessThanOrEqualTo() { return CategoryNoLessThanOrEqualTo; } public DB_CategoriesQuery setCategoryNoLessThanOrEqualTo(Integer value) { this.CategoryNoLessThanOrEqualTo = value; return this; } public Integer getCategoryNoNotEqualTo() { return CategoryNoNotEqualTo; } public DB_CategoriesQuery setCategoryNoNotEqualTo(Integer value) { this.CategoryNoNotEqualTo = value; return this; } public ArrayList getCategoryNoBetween() { return CategoryNoBetween; } public DB_CategoriesQuery setCategoryNoBetween(ArrayList value) { this.CategoryNoBetween = value; return this; } public ArrayList getCategoryNoIn() { return CategoryNoIn; } public DB_CategoriesQuery setCategoryNoIn(ArrayList value) { this.CategoryNoIn = value; return this; } public String getCategoryID() { return CategoryID; } public DB_CategoriesQuery setCategoryID(String value) { this.CategoryID = value; return this; } public String getCategoryIDStartsWith() { return CategoryIDStartsWith; } public DB_CategoriesQuery setCategoryIDStartsWith(String value) { this.CategoryIDStartsWith = value; return this; } public String getCategoryIDEndsWith() { return CategoryIDEndsWith; } public DB_CategoriesQuery setCategoryIDEndsWith(String value) { this.CategoryIDEndsWith = value; return this; } public String getCategoryIDContains() { return CategoryIDContains; } public DB_CategoriesQuery setCategoryIDContains(String value) { this.CategoryIDContains = value; return this; } public String getCategoryIDLike() { return CategoryIDLike; } public DB_CategoriesQuery setCategoryIDLike(String value) { this.CategoryIDLike = value; return this; } public ArrayList getCategoryIDBetween() { return CategoryIDBetween; } public DB_CategoriesQuery setCategoryIDBetween(ArrayList value) { this.CategoryIDBetween = value; return this; } public ArrayList getCategoryIDIn() { return CategoryIDIn; } public DB_CategoriesQuery setCategoryIDIn(ArrayList value) { this.CategoryIDIn = value; return this; } public String getDescription() { return Description; } public DB_CategoriesQuery setDescription(String value) { this.Description = value; return this; } public String getDescriptionStartsWith() { return DescriptionStartsWith; } public DB_CategoriesQuery setDescriptionStartsWith(String value) { this.DescriptionStartsWith = value; return this; } public String getDescriptionEndsWith() { return DescriptionEndsWith; } public DB_CategoriesQuery setDescriptionEndsWith(String value) { this.DescriptionEndsWith = value; return this; } public String getDescriptionContains() { return DescriptionContains; } public DB_CategoriesQuery setDescriptionContains(String value) { this.DescriptionContains = value; return this; } public String getDescriptionLike() { return DescriptionLike; } public DB_CategoriesQuery setDescriptionLike(String value) { this.DescriptionLike = value; return this; } public ArrayList getDescriptionBetween() { return DescriptionBetween; } public DB_CategoriesQuery setDescriptionBetween(ArrayList value) { this.DescriptionBetween = value; return this; } public ArrayList getDescriptionIn() { return DescriptionIn; } public DB_CategoriesQuery setDescriptionIn(ArrayList value) { this.DescriptionIn = value; return this; } public Boolean isDefaultCategory() { return DefaultCategory; } public DB_CategoriesQuery setDefaultCategory(Boolean value) { this.DefaultCategory = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public DB_CategoriesQuery setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getLastSavedDateTimeGreaterThanOrEqualTo() { return LastSavedDateTimeGreaterThanOrEqualTo; } public DB_CategoriesQuery setLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.LastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeGreaterThan() { return LastSavedDateTimeGreaterThan; } public DB_CategoriesQuery setLastSavedDateTimeGreaterThan(Date value) { this.LastSavedDateTimeGreaterThan = value; return this; } public Date getLastSavedDateTimeLessThan() { return LastSavedDateTimeLessThan; } public DB_CategoriesQuery setLastSavedDateTimeLessThan(Date value) { this.LastSavedDateTimeLessThan = value; return this; } public Date getLastSavedDateTimeLessThanOrEqualTo() { return LastSavedDateTimeLessThanOrEqualTo; } public DB_CategoriesQuery setLastSavedDateTimeLessThanOrEqualTo(Date value) { this.LastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeNotEqualTo() { return LastSavedDateTimeNotEqualTo; } public DB_CategoriesQuery setLastSavedDateTimeNotEqualTo(Date value) { this.LastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getLastSavedDateTimeBetween() { return LastSavedDateTimeBetween; } public DB_CategoriesQuery setLastSavedDateTimeBetween(ArrayList value) { this.LastSavedDateTimeBetween = value; return this; } public ArrayList getLastSavedDateTimeIn() { return LastSavedDateTimeIn; } public DB_CategoriesQuery setLastSavedDateTimeIn(ArrayList value) { this.LastSavedDateTimeIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @Route(Path="/Queries/DB_Category1", Verbs="GET") @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class DB_Category1Query extends QueryDb implements IReturn> { public String Category1ID = null; public String Category1IDStartsWith = null; public String Category1IDEndsWith = null; public String Category1IDContains = null; public String Category1IDLike = null; public ArrayList Category1IDBetween = null; public ArrayList Category1IDIn = null; public String Description = null; public String DescriptionStartsWith = null; public String DescriptionEndsWith = null; public String DescriptionContains = null; public String DescriptionLike = null; public ArrayList DescriptionBetween = null; public ArrayList DescriptionIn = null; public Boolean DefaultCategory = null; public Date LastSavedDateTime = null; public Date LastSavedDateTimeGreaterThanOrEqualTo = null; public Date LastSavedDateTimeGreaterThan = null; public Date LastSavedDateTimeLessThan = null; public Date LastSavedDateTimeLessThanOrEqualTo = null; public Date LastSavedDateTimeNotEqualTo = null; public ArrayList LastSavedDateTimeBetween = null; public ArrayList LastSavedDateTimeIn = null; public String getCategory1ID() { return Category1ID; } public DB_Category1Query setCategory1ID(String value) { this.Category1ID = value; return this; } public String getCategory1IDStartsWith() { return Category1IDStartsWith; } public DB_Category1Query setCategory1IDStartsWith(String value) { this.Category1IDStartsWith = value; return this; } public String getCategory1IDEndsWith() { return Category1IDEndsWith; } public DB_Category1Query setCategory1IDEndsWith(String value) { this.Category1IDEndsWith = value; return this; } public String getCategory1IDContains() { return Category1IDContains; } public DB_Category1Query setCategory1IDContains(String value) { this.Category1IDContains = value; return this; } public String getCategory1IDLike() { return Category1IDLike; } public DB_Category1Query setCategory1IDLike(String value) { this.Category1IDLike = value; return this; } public ArrayList getCategory1IDBetween() { return Category1IDBetween; } public DB_Category1Query setCategory1IDBetween(ArrayList value) { this.Category1IDBetween = value; return this; } public ArrayList getCategory1IDIn() { return Category1IDIn; } public DB_Category1Query setCategory1IDIn(ArrayList value) { this.Category1IDIn = value; return this; } public String getDescription() { return Description; } public DB_Category1Query setDescription(String value) { this.Description = value; return this; } public String getDescriptionStartsWith() { return DescriptionStartsWith; } public DB_Category1Query setDescriptionStartsWith(String value) { this.DescriptionStartsWith = value; return this; } public String getDescriptionEndsWith() { return DescriptionEndsWith; } public DB_Category1Query setDescriptionEndsWith(String value) { this.DescriptionEndsWith = value; return this; } public String getDescriptionContains() { return DescriptionContains; } public DB_Category1Query setDescriptionContains(String value) { this.DescriptionContains = value; return this; } public String getDescriptionLike() { return DescriptionLike; } public DB_Category1Query setDescriptionLike(String value) { this.DescriptionLike = value; return this; } public ArrayList getDescriptionBetween() { return DescriptionBetween; } public DB_Category1Query setDescriptionBetween(ArrayList value) { this.DescriptionBetween = value; return this; } public ArrayList getDescriptionIn() { return DescriptionIn; } public DB_Category1Query setDescriptionIn(ArrayList value) { this.DescriptionIn = value; return this; } public Boolean isDefaultCategory() { return DefaultCategory; } public DB_Category1Query setDefaultCategory(Boolean value) { this.DefaultCategory = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public DB_Category1Query setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getLastSavedDateTimeGreaterThanOrEqualTo() { return LastSavedDateTimeGreaterThanOrEqualTo; } public DB_Category1Query setLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.LastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeGreaterThan() { return LastSavedDateTimeGreaterThan; } public DB_Category1Query setLastSavedDateTimeGreaterThan(Date value) { this.LastSavedDateTimeGreaterThan = value; return this; } public Date getLastSavedDateTimeLessThan() { return LastSavedDateTimeLessThan; } public DB_Category1Query setLastSavedDateTimeLessThan(Date value) { this.LastSavedDateTimeLessThan = value; return this; } public Date getLastSavedDateTimeLessThanOrEqualTo() { return LastSavedDateTimeLessThanOrEqualTo; } public DB_Category1Query setLastSavedDateTimeLessThanOrEqualTo(Date value) { this.LastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeNotEqualTo() { return LastSavedDateTimeNotEqualTo; } public DB_Category1Query setLastSavedDateTimeNotEqualTo(Date value) { this.LastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getLastSavedDateTimeBetween() { return LastSavedDateTimeBetween; } public DB_Category1Query setLastSavedDateTimeBetween(ArrayList value) { this.LastSavedDateTimeBetween = value; return this; } public ArrayList getLastSavedDateTimeIn() { return LastSavedDateTimeIn; } public DB_Category1Query setLastSavedDateTimeIn(ArrayList value) { this.LastSavedDateTimeIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @Route(Path="/Queries/DB_Category2", Verbs="GET") @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class DB_Category2Query extends QueryDb implements IReturn> { public String Category2ID = null; public String Category2IDStartsWith = null; public String Category2IDEndsWith = null; public String Category2IDContains = null; public String Category2IDLike = null; public ArrayList Category2IDBetween = null; public ArrayList Category2IDIn = null; public String Description = null; public String DescriptionStartsWith = null; public String DescriptionEndsWith = null; public String DescriptionContains = null; public String DescriptionLike = null; public ArrayList DescriptionBetween = null; public ArrayList DescriptionIn = null; public Boolean DefaultCategory = null; public Date LastSavedDateTime = null; public Date LastSavedDateTimeGreaterThanOrEqualTo = null; public Date LastSavedDateTimeGreaterThan = null; public Date LastSavedDateTimeLessThan = null; public Date LastSavedDateTimeLessThanOrEqualTo = null; public Date LastSavedDateTimeNotEqualTo = null; public ArrayList LastSavedDateTimeBetween = null; public ArrayList LastSavedDateTimeIn = null; public String getCategory2ID() { return Category2ID; } public DB_Category2Query setCategory2ID(String value) { this.Category2ID = value; return this; } public String getCategory2IDStartsWith() { return Category2IDStartsWith; } public DB_Category2Query setCategory2IDStartsWith(String value) { this.Category2IDStartsWith = value; return this; } public String getCategory2IDEndsWith() { return Category2IDEndsWith; } public DB_Category2Query setCategory2IDEndsWith(String value) { this.Category2IDEndsWith = value; return this; } public String getCategory2IDContains() { return Category2IDContains; } public DB_Category2Query setCategory2IDContains(String value) { this.Category2IDContains = value; return this; } public String getCategory2IDLike() { return Category2IDLike; } public DB_Category2Query setCategory2IDLike(String value) { this.Category2IDLike = value; return this; } public ArrayList getCategory2IDBetween() { return Category2IDBetween; } public DB_Category2Query setCategory2IDBetween(ArrayList value) { this.Category2IDBetween = value; return this; } public ArrayList getCategory2IDIn() { return Category2IDIn; } public DB_Category2Query setCategory2IDIn(ArrayList value) { this.Category2IDIn = value; return this; } public String getDescription() { return Description; } public DB_Category2Query setDescription(String value) { this.Description = value; return this; } public String getDescriptionStartsWith() { return DescriptionStartsWith; } public DB_Category2Query setDescriptionStartsWith(String value) { this.DescriptionStartsWith = value; return this; } public String getDescriptionEndsWith() { return DescriptionEndsWith; } public DB_Category2Query setDescriptionEndsWith(String value) { this.DescriptionEndsWith = value; return this; } public String getDescriptionContains() { return DescriptionContains; } public DB_Category2Query setDescriptionContains(String value) { this.DescriptionContains = value; return this; } public String getDescriptionLike() { return DescriptionLike; } public DB_Category2Query setDescriptionLike(String value) { this.DescriptionLike = value; return this; } public ArrayList getDescriptionBetween() { return DescriptionBetween; } public DB_Category2Query setDescriptionBetween(ArrayList value) { this.DescriptionBetween = value; return this; } public ArrayList getDescriptionIn() { return DescriptionIn; } public DB_Category2Query setDescriptionIn(ArrayList value) { this.DescriptionIn = value; return this; } public Boolean isDefaultCategory() { return DefaultCategory; } public DB_Category2Query setDefaultCategory(Boolean value) { this.DefaultCategory = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public DB_Category2Query setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getLastSavedDateTimeGreaterThanOrEqualTo() { return LastSavedDateTimeGreaterThanOrEqualTo; } public DB_Category2Query setLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.LastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeGreaterThan() { return LastSavedDateTimeGreaterThan; } public DB_Category2Query setLastSavedDateTimeGreaterThan(Date value) { this.LastSavedDateTimeGreaterThan = value; return this; } public Date getLastSavedDateTimeLessThan() { return LastSavedDateTimeLessThan; } public DB_Category2Query setLastSavedDateTimeLessThan(Date value) { this.LastSavedDateTimeLessThan = value; return this; } public Date getLastSavedDateTimeLessThanOrEqualTo() { return LastSavedDateTimeLessThanOrEqualTo; } public DB_Category2Query setLastSavedDateTimeLessThanOrEqualTo(Date value) { this.LastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeNotEqualTo() { return LastSavedDateTimeNotEqualTo; } public DB_Category2Query setLastSavedDateTimeNotEqualTo(Date value) { this.LastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getLastSavedDateTimeBetween() { return LastSavedDateTimeBetween; } public DB_Category2Query setLastSavedDateTimeBetween(ArrayList value) { this.LastSavedDateTimeBetween = value; return this; } public ArrayList getLastSavedDateTimeIn() { return LastSavedDateTimeIn; } public DB_Category2Query setLastSavedDateTimeIn(ArrayList value) { this.LastSavedDateTimeIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class DB_Category3Query extends QueryDb implements IReturn> { public String Category3ID = null; public String Category3IDStartsWith = null; public String Category3IDEndsWith = null; public String Category3IDContains = null; public String Category3IDLike = null; public ArrayList Category3IDBetween = null; public ArrayList Category3IDIn = null; public String Description = null; public String DescriptionStartsWith = null; public String DescriptionEndsWith = null; public String DescriptionContains = null; public String DescriptionLike = null; public ArrayList DescriptionBetween = null; public ArrayList DescriptionIn = null; public Boolean DefaultCategory = null; public Date LastSavedDateTime = null; public Date LastSavedDateTimeGreaterThanOrEqualTo = null; public Date LastSavedDateTimeGreaterThan = null; public Date LastSavedDateTimeLessThan = null; public Date LastSavedDateTimeLessThanOrEqualTo = null; public Date LastSavedDateTimeNotEqualTo = null; public ArrayList LastSavedDateTimeBetween = null; public ArrayList LastSavedDateTimeIn = null; public String getCategory3ID() { return Category3ID; } public DB_Category3Query setCategory3ID(String value) { this.Category3ID = value; return this; } public String getCategory3IDStartsWith() { return Category3IDStartsWith; } public DB_Category3Query setCategory3IDStartsWith(String value) { this.Category3IDStartsWith = value; return this; } public String getCategory3IDEndsWith() { return Category3IDEndsWith; } public DB_Category3Query setCategory3IDEndsWith(String value) { this.Category3IDEndsWith = value; return this; } public String getCategory3IDContains() { return Category3IDContains; } public DB_Category3Query setCategory3IDContains(String value) { this.Category3IDContains = value; return this; } public String getCategory3IDLike() { return Category3IDLike; } public DB_Category3Query setCategory3IDLike(String value) { this.Category3IDLike = value; return this; } public ArrayList getCategory3IDBetween() { return Category3IDBetween; } public DB_Category3Query setCategory3IDBetween(ArrayList value) { this.Category3IDBetween = value; return this; } public ArrayList getCategory3IDIn() { return Category3IDIn; } public DB_Category3Query setCategory3IDIn(ArrayList value) { this.Category3IDIn = value; return this; } public String getDescription() { return Description; } public DB_Category3Query setDescription(String value) { this.Description = value; return this; } public String getDescriptionStartsWith() { return DescriptionStartsWith; } public DB_Category3Query setDescriptionStartsWith(String value) { this.DescriptionStartsWith = value; return this; } public String getDescriptionEndsWith() { return DescriptionEndsWith; } public DB_Category3Query setDescriptionEndsWith(String value) { this.DescriptionEndsWith = value; return this; } public String getDescriptionContains() { return DescriptionContains; } public DB_Category3Query setDescriptionContains(String value) { this.DescriptionContains = value; return this; } public String getDescriptionLike() { return DescriptionLike; } public DB_Category3Query setDescriptionLike(String value) { this.DescriptionLike = value; return this; } public ArrayList getDescriptionBetween() { return DescriptionBetween; } public DB_Category3Query setDescriptionBetween(ArrayList value) { this.DescriptionBetween = value; return this; } public ArrayList getDescriptionIn() { return DescriptionIn; } public DB_Category3Query setDescriptionIn(ArrayList value) { this.DescriptionIn = value; return this; } public Boolean isDefaultCategory() { return DefaultCategory; } public DB_Category3Query setDefaultCategory(Boolean value) { this.DefaultCategory = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public DB_Category3Query setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getLastSavedDateTimeGreaterThanOrEqualTo() { return LastSavedDateTimeGreaterThanOrEqualTo; } public DB_Category3Query setLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.LastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeGreaterThan() { return LastSavedDateTimeGreaterThan; } public DB_Category3Query setLastSavedDateTimeGreaterThan(Date value) { this.LastSavedDateTimeGreaterThan = value; return this; } public Date getLastSavedDateTimeLessThan() { return LastSavedDateTimeLessThan; } public DB_Category3Query setLastSavedDateTimeLessThan(Date value) { this.LastSavedDateTimeLessThan = value; return this; } public Date getLastSavedDateTimeLessThanOrEqualTo() { return LastSavedDateTimeLessThanOrEqualTo; } public DB_Category3Query setLastSavedDateTimeLessThanOrEqualTo(Date value) { this.LastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeNotEqualTo() { return LastSavedDateTimeNotEqualTo; } public DB_Category3Query setLastSavedDateTimeNotEqualTo(Date value) { this.LastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getLastSavedDateTimeBetween() { return LastSavedDateTimeBetween; } public DB_Category3Query setLastSavedDateTimeBetween(ArrayList value) { this.LastSavedDateTimeBetween = value; return this; } public ArrayList getLastSavedDateTimeIn() { return LastSavedDateTimeIn; } public DB_Category3Query setLastSavedDateTimeIn(ArrayList value) { this.LastSavedDateTimeIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class DB_Category4Query extends QueryDb implements IReturn> { public String Category4ID = null; public String Category4IDStartsWith = null; public String Category4IDEndsWith = null; public String Category4IDContains = null; public String Category4IDLike = null; public ArrayList Category4IDBetween = null; public ArrayList Category4IDIn = null; public String Description = null; public String DescriptionStartsWith = null; public String DescriptionEndsWith = null; public String DescriptionContains = null; public String DescriptionLike = null; public ArrayList DescriptionBetween = null; public ArrayList DescriptionIn = null; public Boolean DefaultCategory = null; public Date LastSavedDateTime = null; public Date LastSavedDateTimeGreaterThanOrEqualTo = null; public Date LastSavedDateTimeGreaterThan = null; public Date LastSavedDateTimeLessThan = null; public Date LastSavedDateTimeLessThanOrEqualTo = null; public Date LastSavedDateTimeNotEqualTo = null; public ArrayList LastSavedDateTimeBetween = null; public ArrayList LastSavedDateTimeIn = null; public String getCategory4ID() { return Category4ID; } public DB_Category4Query setCategory4ID(String value) { this.Category4ID = value; return this; } public String getCategory4IDStartsWith() { return Category4IDStartsWith; } public DB_Category4Query setCategory4IDStartsWith(String value) { this.Category4IDStartsWith = value; return this; } public String getCategory4IDEndsWith() { return Category4IDEndsWith; } public DB_Category4Query setCategory4IDEndsWith(String value) { this.Category4IDEndsWith = value; return this; } public String getCategory4IDContains() { return Category4IDContains; } public DB_Category4Query setCategory4IDContains(String value) { this.Category4IDContains = value; return this; } public String getCategory4IDLike() { return Category4IDLike; } public DB_Category4Query setCategory4IDLike(String value) { this.Category4IDLike = value; return this; } public ArrayList getCategory4IDBetween() { return Category4IDBetween; } public DB_Category4Query setCategory4IDBetween(ArrayList value) { this.Category4IDBetween = value; return this; } public ArrayList getCategory4IDIn() { return Category4IDIn; } public DB_Category4Query setCategory4IDIn(ArrayList value) { this.Category4IDIn = value; return this; } public String getDescription() { return Description; } public DB_Category4Query setDescription(String value) { this.Description = value; return this; } public String getDescriptionStartsWith() { return DescriptionStartsWith; } public DB_Category4Query setDescriptionStartsWith(String value) { this.DescriptionStartsWith = value; return this; } public String getDescriptionEndsWith() { return DescriptionEndsWith; } public DB_Category4Query setDescriptionEndsWith(String value) { this.DescriptionEndsWith = value; return this; } public String getDescriptionContains() { return DescriptionContains; } public DB_Category4Query setDescriptionContains(String value) { this.DescriptionContains = value; return this; } public String getDescriptionLike() { return DescriptionLike; } public DB_Category4Query setDescriptionLike(String value) { this.DescriptionLike = value; return this; } public ArrayList getDescriptionBetween() { return DescriptionBetween; } public DB_Category4Query setDescriptionBetween(ArrayList value) { this.DescriptionBetween = value; return this; } public ArrayList getDescriptionIn() { return DescriptionIn; } public DB_Category4Query setDescriptionIn(ArrayList value) { this.DescriptionIn = value; return this; } public Boolean isDefaultCategory() { return DefaultCategory; } public DB_Category4Query setDefaultCategory(Boolean value) { this.DefaultCategory = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public DB_Category4Query setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getLastSavedDateTimeGreaterThanOrEqualTo() { return LastSavedDateTimeGreaterThanOrEqualTo; } public DB_Category4Query setLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.LastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeGreaterThan() { return LastSavedDateTimeGreaterThan; } public DB_Category4Query setLastSavedDateTimeGreaterThan(Date value) { this.LastSavedDateTimeGreaterThan = value; return this; } public Date getLastSavedDateTimeLessThan() { return LastSavedDateTimeLessThan; } public DB_Category4Query setLastSavedDateTimeLessThan(Date value) { this.LastSavedDateTimeLessThan = value; return this; } public Date getLastSavedDateTimeLessThanOrEqualTo() { return LastSavedDateTimeLessThanOrEqualTo; } public DB_Category4Query setLastSavedDateTimeLessThanOrEqualTo(Date value) { this.LastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeNotEqualTo() { return LastSavedDateTimeNotEqualTo; } public DB_Category4Query setLastSavedDateTimeNotEqualTo(Date value) { this.LastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getLastSavedDateTimeBetween() { return LastSavedDateTimeBetween; } public DB_Category4Query setLastSavedDateTimeBetween(ArrayList value) { this.LastSavedDateTimeBetween = value; return this; } public ArrayList getLastSavedDateTimeIn() { return LastSavedDateTimeIn; } public DB_Category4Query setLastSavedDateTimeIn(ArrayList value) { this.LastSavedDateTimeIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class DB_Category5Query extends QueryDb implements IReturn> { public String Category5ID = null; public String Category5IDStartsWith = null; public String Category5IDEndsWith = null; public String Category5IDContains = null; public String Category5IDLike = null; public ArrayList Category5IDBetween = null; public ArrayList Category5IDIn = null; public String Description = null; public String DescriptionStartsWith = null; public String DescriptionEndsWith = null; public String DescriptionContains = null; public String DescriptionLike = null; public ArrayList DescriptionBetween = null; public ArrayList DescriptionIn = null; public Boolean DefaultCategory = null; public Date LastSavedDateTime = null; public Date LastSavedDateTimeGreaterThanOrEqualTo = null; public Date LastSavedDateTimeGreaterThan = null; public Date LastSavedDateTimeLessThan = null; public Date LastSavedDateTimeLessThanOrEqualTo = null; public Date LastSavedDateTimeNotEqualTo = null; public ArrayList LastSavedDateTimeBetween = null; public ArrayList LastSavedDateTimeIn = null; public String getCategory5ID() { return Category5ID; } public DB_Category5Query setCategory5ID(String value) { this.Category5ID = value; return this; } public String getCategory5IDStartsWith() { return Category5IDStartsWith; } public DB_Category5Query setCategory5IDStartsWith(String value) { this.Category5IDStartsWith = value; return this; } public String getCategory5IDEndsWith() { return Category5IDEndsWith; } public DB_Category5Query setCategory5IDEndsWith(String value) { this.Category5IDEndsWith = value; return this; } public String getCategory5IDContains() { return Category5IDContains; } public DB_Category5Query setCategory5IDContains(String value) { this.Category5IDContains = value; return this; } public String getCategory5IDLike() { return Category5IDLike; } public DB_Category5Query setCategory5IDLike(String value) { this.Category5IDLike = value; return this; } public ArrayList getCategory5IDBetween() { return Category5IDBetween; } public DB_Category5Query setCategory5IDBetween(ArrayList value) { this.Category5IDBetween = value; return this; } public ArrayList getCategory5IDIn() { return Category5IDIn; } public DB_Category5Query setCategory5IDIn(ArrayList value) { this.Category5IDIn = value; return this; } public String getDescription() { return Description; } public DB_Category5Query setDescription(String value) { this.Description = value; return this; } public String getDescriptionStartsWith() { return DescriptionStartsWith; } public DB_Category5Query setDescriptionStartsWith(String value) { this.DescriptionStartsWith = value; return this; } public String getDescriptionEndsWith() { return DescriptionEndsWith; } public DB_Category5Query setDescriptionEndsWith(String value) { this.DescriptionEndsWith = value; return this; } public String getDescriptionContains() { return DescriptionContains; } public DB_Category5Query setDescriptionContains(String value) { this.DescriptionContains = value; return this; } public String getDescriptionLike() { return DescriptionLike; } public DB_Category5Query setDescriptionLike(String value) { this.DescriptionLike = value; return this; } public ArrayList getDescriptionBetween() { return DescriptionBetween; } public DB_Category5Query setDescriptionBetween(ArrayList value) { this.DescriptionBetween = value; return this; } public ArrayList getDescriptionIn() { return DescriptionIn; } public DB_Category5Query setDescriptionIn(ArrayList value) { this.DescriptionIn = value; return this; } public Boolean isDefaultCategory() { return DefaultCategory; } public DB_Category5Query setDefaultCategory(Boolean value) { this.DefaultCategory = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public DB_Category5Query setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getLastSavedDateTimeGreaterThanOrEqualTo() { return LastSavedDateTimeGreaterThanOrEqualTo; } public DB_Category5Query setLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.LastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeGreaterThan() { return LastSavedDateTimeGreaterThan; } public DB_Category5Query setLastSavedDateTimeGreaterThan(Date value) { this.LastSavedDateTimeGreaterThan = value; return this; } public Date getLastSavedDateTimeLessThan() { return LastSavedDateTimeLessThan; } public DB_Category5Query setLastSavedDateTimeLessThan(Date value) { this.LastSavedDateTimeLessThan = value; return this; } public Date getLastSavedDateTimeLessThanOrEqualTo() { return LastSavedDateTimeLessThanOrEqualTo; } public DB_Category5Query setLastSavedDateTimeLessThanOrEqualTo(Date value) { this.LastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeNotEqualTo() { return LastSavedDateTimeNotEqualTo; } public DB_Category5Query setLastSavedDateTimeNotEqualTo(Date value) { this.LastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getLastSavedDateTimeBetween() { return LastSavedDateTimeBetween; } public DB_Category5Query setLastSavedDateTimeBetween(ArrayList value) { this.LastSavedDateTimeBetween = value; return this; } public ArrayList getLastSavedDateTimeIn() { return LastSavedDateTimeIn; } public DB_Category5Query setLastSavedDateTimeIn(ArrayList value) { this.LastSavedDateTimeIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class DB_ClassQuery extends QueryDb implements IReturn> { public String Class = null; public String ClassStartsWith = null; public String ClassEndsWith = null; public String ClassContains = null; public String ClassLike = null; public ArrayList ClassBetween = null; public ArrayList ClassIn = null; public String getClass() { return Class; } public DB_ClassQuery setClass(String value) { this.Class = value; return this; } public String getClassStartsWith() { return ClassStartsWith; } public DB_ClassQuery setClassStartsWith(String value) { this.ClassStartsWith = value; return this; } public String getClassEndsWith() { return ClassEndsWith; } public DB_ClassQuery setClassEndsWith(String value) { this.ClassEndsWith = value; return this; } public String getClassContains() { return ClassContains; } public DB_ClassQuery setClassContains(String value) { this.ClassContains = value; return this; } public String getClassLike() { return ClassLike; } public DB_ClassQuery setClassLike(String value) { this.ClassLike = value; return this; } public ArrayList getClassBetween() { return ClassBetween; } public DB_ClassQuery setClassBetween(ArrayList value) { this.ClassBetween = value; return this; } public ArrayList getClassIn() { return ClassIn; } public DB_ClassQuery setClassIn(ArrayList value) { this.ClassIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @Route(Path="/Queries/DB_Classification", Verbs="GET") @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class DB_ClassificationQuery extends QueryDb implements IReturn> { public String DebtorClassificationID = null; public String DebtorClassificationIDStartsWith = null; public String DebtorClassificationIDEndsWith = null; public String DebtorClassificationIDContains = null; public String DebtorClassificationIDLike = null; public ArrayList DebtorClassificationIDBetween = null; public ArrayList DebtorClassificationIDIn = null; public Date LastSavedDateTime = null; public Date LastSavedDateTimeGreaterThanOrEqualTo = null; public Date LastSavedDateTimeGreaterThan = null; public Date LastSavedDateTimeLessThan = null; public Date LastSavedDateTimeLessThanOrEqualTo = null; public Date LastSavedDateTimeNotEqualTo = null; public ArrayList LastSavedDateTimeBetween = null; public ArrayList LastSavedDateTimeIn = null; public String Description = null; public String DescriptionStartsWith = null; public String DescriptionEndsWith = null; public String DescriptionContains = null; public String DescriptionLike = null; public ArrayList DescriptionBetween = null; public ArrayList DescriptionIn = null; public String LedgerIDDebtorControl = null; public String LedgerIDDebtorControlStartsWith = null; public String LedgerIDDebtorControlEndsWith = null; public String LedgerIDDebtorControlContains = null; public String LedgerIDDebtorControlLike = null; public ArrayList LedgerIDDebtorControlBetween = null; public ArrayList LedgerIDDebtorControlIn = null; public String LedgerIDDebtorSales = null; public String LedgerIDDebtorSalesStartsWith = null; public String LedgerIDDebtorSalesEndsWith = null; public String LedgerIDDebtorSalesContains = null; public String LedgerIDDebtorSalesLike = null; public ArrayList LedgerIDDebtorSalesBetween = null; public ArrayList LedgerIDDebtorSalesIn = null; public String LedgerIDDebtorDiscounts = null; public String LedgerIDDebtorDiscountsStartsWith = null; public String LedgerIDDebtorDiscountsEndsWith = null; public String LedgerIDDebtorDiscountsContains = null; public String LedgerIDDebtorDiscountsLike = null; public ArrayList LedgerIDDebtorDiscountsBetween = null; public ArrayList LedgerIDDebtorDiscountsIn = null; public String LedgerIDDebtorSourcedInvoices = null; public String LedgerIDDebtorSourcedInvoicesStartsWith = null; public String LedgerIDDebtorSourcedInvoicesEndsWith = null; public String LedgerIDDebtorSourcedInvoicesContains = null; public String LedgerIDDebtorSourcedInvoicesLike = null; public ArrayList LedgerIDDebtorSourcedInvoicesBetween = null; public ArrayList LedgerIDDebtorSourcedInvoicesIn = null; public String LedgerIDDebtorDebitAdjustment = null; public String LedgerIDDebtorDebitAdjustmentStartsWith = null; public String LedgerIDDebtorDebitAdjustmentEndsWith = null; public String LedgerIDDebtorDebitAdjustmentContains = null; public String LedgerIDDebtorDebitAdjustmentLike = null; public ArrayList LedgerIDDebtorDebitAdjustmentBetween = null; public ArrayList LedgerIDDebtorDebitAdjustmentIn = null; public String LedgerIDDebtorSourcedReceipts = null; public String LedgerIDDebtorSourcedReceiptsStartsWith = null; public String LedgerIDDebtorSourcedReceiptsEndsWith = null; public String LedgerIDDebtorSourcedReceiptsContains = null; public String LedgerIDDebtorSourcedReceiptsLike = null; public ArrayList LedgerIDDebtorSourcedReceiptsBetween = null; public ArrayList LedgerIDDebtorSourcedReceiptsIn = null; public String LedgerIDDebtorCreditAdjustment = null; public String LedgerIDDebtorCreditAdjustmentStartsWith = null; public String LedgerIDDebtorCreditAdjustmentEndsWith = null; public String LedgerIDDebtorCreditAdjustmentContains = null; public String LedgerIDDebtorCreditAdjustmentLike = null; public ArrayList LedgerIDDebtorCreditAdjustmentBetween = null; public ArrayList LedgerIDDebtorCreditAdjustmentIn = null; public String LedgerIDDebtorFreight = null; public String LedgerIDDebtorFreightStartsWith = null; public String LedgerIDDebtorFreightEndsWith = null; public String LedgerIDDebtorFreightContains = null; public String LedgerIDDebtorFreightLike = null; public ArrayList LedgerIDDebtorFreightBetween = null; public ArrayList LedgerIDDebtorFreightIn = null; public String LedgerIDDebtorInsurance = null; public String LedgerIDDebtorInsuranceStartsWith = null; public String LedgerIDDebtorInsuranceEndsWith = null; public String LedgerIDDebtorInsuranceContains = null; public String LedgerIDDebtorInsuranceLike = null; public ArrayList LedgerIDDebtorInsuranceBetween = null; public ArrayList LedgerIDDebtorInsuranceIn = null; public Short TermsDays = null; public Short TermsDaysGreaterThanOrEqualTo = null; public Short TermsDaysGreaterThan = null; public Short TermsDaysLessThan = null; public Short TermsDaysLessThanOrEqualTo = null; public Short TermsDaysNotEqualTo = null; public ArrayList TermsDaysBetween = null; public ArrayList TermsDaysIn = null; public Short TermsType = null; public Short TermsTypeGreaterThanOrEqualTo = null; public Short TermsTypeGreaterThan = null; public Short TermsTypeLessThan = null; public Short TermsTypeLessThanOrEqualTo = null; public Short TermsTypeNotEqualTo = null; public ArrayList TermsTypeBetween = null; public ArrayList TermsTypeIn = null; public String PriceSchemeID = null; public String PriceSchemeIDStartsWith = null; public String PriceSchemeIDEndsWith = null; public String PriceSchemeIDContains = null; public String PriceSchemeIDLike = null; public ArrayList PriceSchemeIDBetween = null; public ArrayList PriceSchemeIDIn = null; public String PricingGroupID = null; public String PricingGroupIDStartsWith = null; public String PricingGroupIDEndsWith = null; public String PricingGroupIDContains = null; public String PricingGroupIDLike = null; public ArrayList PricingGroupIDBetween = null; public ArrayList PricingGroupIDIn = null; public String LedgerIDDebtorRealisedGainLoss = null; public String LedgerIDDebtorRealisedGainLossStartsWith = null; public String LedgerIDDebtorRealisedGainLossEndsWith = null; public String LedgerIDDebtorRealisedGainLossContains = null; public String LedgerIDDebtorRealisedGainLossLike = null; public ArrayList LedgerIDDebtorRealisedGainLossBetween = null; public ArrayList LedgerIDDebtorRealisedGainLossIn = null; public String LedgerIDDebtorUnRealisedGainLoss = null; public String LedgerIDDebtorUnRealisedGainLossStartsWith = null; public String LedgerIDDebtorUnRealisedGainLossEndsWith = null; public String LedgerIDDebtorUnRealisedGainLossContains = null; public String LedgerIDDebtorUnRealisedGainLossLike = null; public ArrayList LedgerIDDebtorUnRealisedGainLossBetween = null; public ArrayList LedgerIDDebtorUnRealisedGainLossIn = null; public Boolean IsDefault = null; public String getDebtorClassificationID() { return DebtorClassificationID; } public DB_ClassificationQuery setDebtorClassificationID(String value) { this.DebtorClassificationID = value; return this; } public String getDebtorClassificationIDStartsWith() { return DebtorClassificationIDStartsWith; } public DB_ClassificationQuery setDebtorClassificationIDStartsWith(String value) { this.DebtorClassificationIDStartsWith = value; return this; } public String getDebtorClassificationIDEndsWith() { return DebtorClassificationIDEndsWith; } public DB_ClassificationQuery setDebtorClassificationIDEndsWith(String value) { this.DebtorClassificationIDEndsWith = value; return this; } public String getDebtorClassificationIDContains() { return DebtorClassificationIDContains; } public DB_ClassificationQuery setDebtorClassificationIDContains(String value) { this.DebtorClassificationIDContains = value; return this; } public String getDebtorClassificationIDLike() { return DebtorClassificationIDLike; } public DB_ClassificationQuery setDebtorClassificationIDLike(String value) { this.DebtorClassificationIDLike = value; return this; } public ArrayList getDebtorClassificationIDBetween() { return DebtorClassificationIDBetween; } public DB_ClassificationQuery setDebtorClassificationIDBetween(ArrayList value) { this.DebtorClassificationIDBetween = value; return this; } public ArrayList getDebtorClassificationIDIn() { return DebtorClassificationIDIn; } public DB_ClassificationQuery setDebtorClassificationIDIn(ArrayList value) { this.DebtorClassificationIDIn = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public DB_ClassificationQuery setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getLastSavedDateTimeGreaterThanOrEqualTo() { return LastSavedDateTimeGreaterThanOrEqualTo; } public DB_ClassificationQuery setLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.LastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeGreaterThan() { return LastSavedDateTimeGreaterThan; } public DB_ClassificationQuery setLastSavedDateTimeGreaterThan(Date value) { this.LastSavedDateTimeGreaterThan = value; return this; } public Date getLastSavedDateTimeLessThan() { return LastSavedDateTimeLessThan; } public DB_ClassificationQuery setLastSavedDateTimeLessThan(Date value) { this.LastSavedDateTimeLessThan = value; return this; } public Date getLastSavedDateTimeLessThanOrEqualTo() { return LastSavedDateTimeLessThanOrEqualTo; } public DB_ClassificationQuery setLastSavedDateTimeLessThanOrEqualTo(Date value) { this.LastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeNotEqualTo() { return LastSavedDateTimeNotEqualTo; } public DB_ClassificationQuery setLastSavedDateTimeNotEqualTo(Date value) { this.LastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getLastSavedDateTimeBetween() { return LastSavedDateTimeBetween; } public DB_ClassificationQuery setLastSavedDateTimeBetween(ArrayList value) { this.LastSavedDateTimeBetween = value; return this; } public ArrayList getLastSavedDateTimeIn() { return LastSavedDateTimeIn; } public DB_ClassificationQuery setLastSavedDateTimeIn(ArrayList value) { this.LastSavedDateTimeIn = value; return this; } public String getDescription() { return Description; } public DB_ClassificationQuery setDescription(String value) { this.Description = value; return this; } public String getDescriptionStartsWith() { return DescriptionStartsWith; } public DB_ClassificationQuery setDescriptionStartsWith(String value) { this.DescriptionStartsWith = value; return this; } public String getDescriptionEndsWith() { return DescriptionEndsWith; } public DB_ClassificationQuery setDescriptionEndsWith(String value) { this.DescriptionEndsWith = value; return this; } public String getDescriptionContains() { return DescriptionContains; } public DB_ClassificationQuery setDescriptionContains(String value) { this.DescriptionContains = value; return this; } public String getDescriptionLike() { return DescriptionLike; } public DB_ClassificationQuery setDescriptionLike(String value) { this.DescriptionLike = value; return this; } public ArrayList getDescriptionBetween() { return DescriptionBetween; } public DB_ClassificationQuery setDescriptionBetween(ArrayList value) { this.DescriptionBetween = value; return this; } public ArrayList getDescriptionIn() { return DescriptionIn; } public DB_ClassificationQuery setDescriptionIn(ArrayList value) { this.DescriptionIn = value; return this; } public String getLedgerIDDebtorControl() { return LedgerIDDebtorControl; } public DB_ClassificationQuery setLedgerIDDebtorControl(String value) { this.LedgerIDDebtorControl = value; return this; } public String getLedgerIDDebtorControlStartsWith() { return LedgerIDDebtorControlStartsWith; } public DB_ClassificationQuery setLedgerIDDebtorControlStartsWith(String value) { this.LedgerIDDebtorControlStartsWith = value; return this; } public String getLedgerIDDebtorControlEndsWith() { return LedgerIDDebtorControlEndsWith; } public DB_ClassificationQuery setLedgerIDDebtorControlEndsWith(String value) { this.LedgerIDDebtorControlEndsWith = value; return this; } public String getLedgerIDDebtorControlContains() { return LedgerIDDebtorControlContains; } public DB_ClassificationQuery setLedgerIDDebtorControlContains(String value) { this.LedgerIDDebtorControlContains = value; return this; } public String getLedgerIDDebtorControlLike() { return LedgerIDDebtorControlLike; } public DB_ClassificationQuery setLedgerIDDebtorControlLike(String value) { this.LedgerIDDebtorControlLike = value; return this; } public ArrayList getLedgerIDDebtorControlBetween() { return LedgerIDDebtorControlBetween; } public DB_ClassificationQuery setLedgerIDDebtorControlBetween(ArrayList value) { this.LedgerIDDebtorControlBetween = value; return this; } public ArrayList getLedgerIDDebtorControlIn() { return LedgerIDDebtorControlIn; } public DB_ClassificationQuery setLedgerIDDebtorControlIn(ArrayList value) { this.LedgerIDDebtorControlIn = value; return this; } public String getLedgerIDDebtorSales() { return LedgerIDDebtorSales; } public DB_ClassificationQuery setLedgerIDDebtorSales(String value) { this.LedgerIDDebtorSales = value; return this; } public String getLedgerIDDebtorSalesStartsWith() { return LedgerIDDebtorSalesStartsWith; } public DB_ClassificationQuery setLedgerIDDebtorSalesStartsWith(String value) { this.LedgerIDDebtorSalesStartsWith = value; return this; } public String getLedgerIDDebtorSalesEndsWith() { return LedgerIDDebtorSalesEndsWith; } public DB_ClassificationQuery setLedgerIDDebtorSalesEndsWith(String value) { this.LedgerIDDebtorSalesEndsWith = value; return this; } public String getLedgerIDDebtorSalesContains() { return LedgerIDDebtorSalesContains; } public DB_ClassificationQuery setLedgerIDDebtorSalesContains(String value) { this.LedgerIDDebtorSalesContains = value; return this; } public String getLedgerIDDebtorSalesLike() { return LedgerIDDebtorSalesLike; } public DB_ClassificationQuery setLedgerIDDebtorSalesLike(String value) { this.LedgerIDDebtorSalesLike = value; return this; } public ArrayList getLedgerIDDebtorSalesBetween() { return LedgerIDDebtorSalesBetween; } public DB_ClassificationQuery setLedgerIDDebtorSalesBetween(ArrayList value) { this.LedgerIDDebtorSalesBetween = value; return this; } public ArrayList getLedgerIDDebtorSalesIn() { return LedgerIDDebtorSalesIn; } public DB_ClassificationQuery setLedgerIDDebtorSalesIn(ArrayList value) { this.LedgerIDDebtorSalesIn = value; return this; } public String getLedgerIDDebtorDiscounts() { return LedgerIDDebtorDiscounts; } public DB_ClassificationQuery setLedgerIDDebtorDiscounts(String value) { this.LedgerIDDebtorDiscounts = value; return this; } public String getLedgerIDDebtorDiscountsStartsWith() { return LedgerIDDebtorDiscountsStartsWith; } public DB_ClassificationQuery setLedgerIDDebtorDiscountsStartsWith(String value) { this.LedgerIDDebtorDiscountsStartsWith = value; return this; } public String getLedgerIDDebtorDiscountsEndsWith() { return LedgerIDDebtorDiscountsEndsWith; } public DB_ClassificationQuery setLedgerIDDebtorDiscountsEndsWith(String value) { this.LedgerIDDebtorDiscountsEndsWith = value; return this; } public String getLedgerIDDebtorDiscountsContains() { return LedgerIDDebtorDiscountsContains; } public DB_ClassificationQuery setLedgerIDDebtorDiscountsContains(String value) { this.LedgerIDDebtorDiscountsContains = value; return this; } public String getLedgerIDDebtorDiscountsLike() { return LedgerIDDebtorDiscountsLike; } public DB_ClassificationQuery setLedgerIDDebtorDiscountsLike(String value) { this.LedgerIDDebtorDiscountsLike = value; return this; } public ArrayList getLedgerIDDebtorDiscountsBetween() { return LedgerIDDebtorDiscountsBetween; } public DB_ClassificationQuery setLedgerIDDebtorDiscountsBetween(ArrayList value) { this.LedgerIDDebtorDiscountsBetween = value; return this; } public ArrayList getLedgerIDDebtorDiscountsIn() { return LedgerIDDebtorDiscountsIn; } public DB_ClassificationQuery setLedgerIDDebtorDiscountsIn(ArrayList value) { this.LedgerIDDebtorDiscountsIn = value; return this; } public String getLedgerIDDebtorSourcedInvoices() { return LedgerIDDebtorSourcedInvoices; } public DB_ClassificationQuery setLedgerIDDebtorSourcedInvoices(String value) { this.LedgerIDDebtorSourcedInvoices = value; return this; } public String getLedgerIDDebtorSourcedInvoicesStartsWith() { return LedgerIDDebtorSourcedInvoicesStartsWith; } public DB_ClassificationQuery setLedgerIDDebtorSourcedInvoicesStartsWith(String value) { this.LedgerIDDebtorSourcedInvoicesStartsWith = value; return this; } public String getLedgerIDDebtorSourcedInvoicesEndsWith() { return LedgerIDDebtorSourcedInvoicesEndsWith; } public DB_ClassificationQuery setLedgerIDDebtorSourcedInvoicesEndsWith(String value) { this.LedgerIDDebtorSourcedInvoicesEndsWith = value; return this; } public String getLedgerIDDebtorSourcedInvoicesContains() { return LedgerIDDebtorSourcedInvoicesContains; } public DB_ClassificationQuery setLedgerIDDebtorSourcedInvoicesContains(String value) { this.LedgerIDDebtorSourcedInvoicesContains = value; return this; } public String getLedgerIDDebtorSourcedInvoicesLike() { return LedgerIDDebtorSourcedInvoicesLike; } public DB_ClassificationQuery setLedgerIDDebtorSourcedInvoicesLike(String value) { this.LedgerIDDebtorSourcedInvoicesLike = value; return this; } public ArrayList getLedgerIDDebtorSourcedInvoicesBetween() { return LedgerIDDebtorSourcedInvoicesBetween; } public DB_ClassificationQuery setLedgerIDDebtorSourcedInvoicesBetween(ArrayList value) { this.LedgerIDDebtorSourcedInvoicesBetween = value; return this; } public ArrayList getLedgerIDDebtorSourcedInvoicesIn() { return LedgerIDDebtorSourcedInvoicesIn; } public DB_ClassificationQuery setLedgerIDDebtorSourcedInvoicesIn(ArrayList value) { this.LedgerIDDebtorSourcedInvoicesIn = value; return this; } public String getLedgerIDDebtorDebitAdjustment() { return LedgerIDDebtorDebitAdjustment; } public DB_ClassificationQuery setLedgerIDDebtorDebitAdjustment(String value) { this.LedgerIDDebtorDebitAdjustment = value; return this; } public String getLedgerIDDebtorDebitAdjustmentStartsWith() { return LedgerIDDebtorDebitAdjustmentStartsWith; } public DB_ClassificationQuery setLedgerIDDebtorDebitAdjustmentStartsWith(String value) { this.LedgerIDDebtorDebitAdjustmentStartsWith = value; return this; } public String getLedgerIDDebtorDebitAdjustmentEndsWith() { return LedgerIDDebtorDebitAdjustmentEndsWith; } public DB_ClassificationQuery setLedgerIDDebtorDebitAdjustmentEndsWith(String value) { this.LedgerIDDebtorDebitAdjustmentEndsWith = value; return this; } public String getLedgerIDDebtorDebitAdjustmentContains() { return LedgerIDDebtorDebitAdjustmentContains; } public DB_ClassificationQuery setLedgerIDDebtorDebitAdjustmentContains(String value) { this.LedgerIDDebtorDebitAdjustmentContains = value; return this; } public String getLedgerIDDebtorDebitAdjustmentLike() { return LedgerIDDebtorDebitAdjustmentLike; } public DB_ClassificationQuery setLedgerIDDebtorDebitAdjustmentLike(String value) { this.LedgerIDDebtorDebitAdjustmentLike = value; return this; } public ArrayList getLedgerIDDebtorDebitAdjustmentBetween() { return LedgerIDDebtorDebitAdjustmentBetween; } public DB_ClassificationQuery setLedgerIDDebtorDebitAdjustmentBetween(ArrayList value) { this.LedgerIDDebtorDebitAdjustmentBetween = value; return this; } public ArrayList getLedgerIDDebtorDebitAdjustmentIn() { return LedgerIDDebtorDebitAdjustmentIn; } public DB_ClassificationQuery setLedgerIDDebtorDebitAdjustmentIn(ArrayList value) { this.LedgerIDDebtorDebitAdjustmentIn = value; return this; } public String getLedgerIDDebtorSourcedReceipts() { return LedgerIDDebtorSourcedReceipts; } public DB_ClassificationQuery setLedgerIDDebtorSourcedReceipts(String value) { this.LedgerIDDebtorSourcedReceipts = value; return this; } public String getLedgerIDDebtorSourcedReceiptsStartsWith() { return LedgerIDDebtorSourcedReceiptsStartsWith; } public DB_ClassificationQuery setLedgerIDDebtorSourcedReceiptsStartsWith(String value) { this.LedgerIDDebtorSourcedReceiptsStartsWith = value; return this; } public String getLedgerIDDebtorSourcedReceiptsEndsWith() { return LedgerIDDebtorSourcedReceiptsEndsWith; } public DB_ClassificationQuery setLedgerIDDebtorSourcedReceiptsEndsWith(String value) { this.LedgerIDDebtorSourcedReceiptsEndsWith = value; return this; } public String getLedgerIDDebtorSourcedReceiptsContains() { return LedgerIDDebtorSourcedReceiptsContains; } public DB_ClassificationQuery setLedgerIDDebtorSourcedReceiptsContains(String value) { this.LedgerIDDebtorSourcedReceiptsContains = value; return this; } public String getLedgerIDDebtorSourcedReceiptsLike() { return LedgerIDDebtorSourcedReceiptsLike; } public DB_ClassificationQuery setLedgerIDDebtorSourcedReceiptsLike(String value) { this.LedgerIDDebtorSourcedReceiptsLike = value; return this; } public ArrayList getLedgerIDDebtorSourcedReceiptsBetween() { return LedgerIDDebtorSourcedReceiptsBetween; } public DB_ClassificationQuery setLedgerIDDebtorSourcedReceiptsBetween(ArrayList value) { this.LedgerIDDebtorSourcedReceiptsBetween = value; return this; } public ArrayList getLedgerIDDebtorSourcedReceiptsIn() { return LedgerIDDebtorSourcedReceiptsIn; } public DB_ClassificationQuery setLedgerIDDebtorSourcedReceiptsIn(ArrayList value) { this.LedgerIDDebtorSourcedReceiptsIn = value; return this; } public String getLedgerIDDebtorCreditAdjustment() { return LedgerIDDebtorCreditAdjustment; } public DB_ClassificationQuery setLedgerIDDebtorCreditAdjustment(String value) { this.LedgerIDDebtorCreditAdjustment = value; return this; } public String getLedgerIDDebtorCreditAdjustmentStartsWith() { return LedgerIDDebtorCreditAdjustmentStartsWith; } public DB_ClassificationQuery setLedgerIDDebtorCreditAdjustmentStartsWith(String value) { this.LedgerIDDebtorCreditAdjustmentStartsWith = value; return this; } public String getLedgerIDDebtorCreditAdjustmentEndsWith() { return LedgerIDDebtorCreditAdjustmentEndsWith; } public DB_ClassificationQuery setLedgerIDDebtorCreditAdjustmentEndsWith(String value) { this.LedgerIDDebtorCreditAdjustmentEndsWith = value; return this; } public String getLedgerIDDebtorCreditAdjustmentContains() { return LedgerIDDebtorCreditAdjustmentContains; } public DB_ClassificationQuery setLedgerIDDebtorCreditAdjustmentContains(String value) { this.LedgerIDDebtorCreditAdjustmentContains = value; return this; } public String getLedgerIDDebtorCreditAdjustmentLike() { return LedgerIDDebtorCreditAdjustmentLike; } public DB_ClassificationQuery setLedgerIDDebtorCreditAdjustmentLike(String value) { this.LedgerIDDebtorCreditAdjustmentLike = value; return this; } public ArrayList getLedgerIDDebtorCreditAdjustmentBetween() { return LedgerIDDebtorCreditAdjustmentBetween; } public DB_ClassificationQuery setLedgerIDDebtorCreditAdjustmentBetween(ArrayList value) { this.LedgerIDDebtorCreditAdjustmentBetween = value; return this; } public ArrayList getLedgerIDDebtorCreditAdjustmentIn() { return LedgerIDDebtorCreditAdjustmentIn; } public DB_ClassificationQuery setLedgerIDDebtorCreditAdjustmentIn(ArrayList value) { this.LedgerIDDebtorCreditAdjustmentIn = value; return this; } public String getLedgerIDDebtorFreight() { return LedgerIDDebtorFreight; } public DB_ClassificationQuery setLedgerIDDebtorFreight(String value) { this.LedgerIDDebtorFreight = value; return this; } public String getLedgerIDDebtorFreightStartsWith() { return LedgerIDDebtorFreightStartsWith; } public DB_ClassificationQuery setLedgerIDDebtorFreightStartsWith(String value) { this.LedgerIDDebtorFreightStartsWith = value; return this; } public String getLedgerIDDebtorFreightEndsWith() { return LedgerIDDebtorFreightEndsWith; } public DB_ClassificationQuery setLedgerIDDebtorFreightEndsWith(String value) { this.LedgerIDDebtorFreightEndsWith = value; return this; } public String getLedgerIDDebtorFreightContains() { return LedgerIDDebtorFreightContains; } public DB_ClassificationQuery setLedgerIDDebtorFreightContains(String value) { this.LedgerIDDebtorFreightContains = value; return this; } public String getLedgerIDDebtorFreightLike() { return LedgerIDDebtorFreightLike; } public DB_ClassificationQuery setLedgerIDDebtorFreightLike(String value) { this.LedgerIDDebtorFreightLike = value; return this; } public ArrayList getLedgerIDDebtorFreightBetween() { return LedgerIDDebtorFreightBetween; } public DB_ClassificationQuery setLedgerIDDebtorFreightBetween(ArrayList value) { this.LedgerIDDebtorFreightBetween = value; return this; } public ArrayList getLedgerIDDebtorFreightIn() { return LedgerIDDebtorFreightIn; } public DB_ClassificationQuery setLedgerIDDebtorFreightIn(ArrayList value) { this.LedgerIDDebtorFreightIn = value; return this; } public String getLedgerIDDebtorInsurance() { return LedgerIDDebtorInsurance; } public DB_ClassificationQuery setLedgerIDDebtorInsurance(String value) { this.LedgerIDDebtorInsurance = value; return this; } public String getLedgerIDDebtorInsuranceStartsWith() { return LedgerIDDebtorInsuranceStartsWith; } public DB_ClassificationQuery setLedgerIDDebtorInsuranceStartsWith(String value) { this.LedgerIDDebtorInsuranceStartsWith = value; return this; } public String getLedgerIDDebtorInsuranceEndsWith() { return LedgerIDDebtorInsuranceEndsWith; } public DB_ClassificationQuery setLedgerIDDebtorInsuranceEndsWith(String value) { this.LedgerIDDebtorInsuranceEndsWith = value; return this; } public String getLedgerIDDebtorInsuranceContains() { return LedgerIDDebtorInsuranceContains; } public DB_ClassificationQuery setLedgerIDDebtorInsuranceContains(String value) { this.LedgerIDDebtorInsuranceContains = value; return this; } public String getLedgerIDDebtorInsuranceLike() { return LedgerIDDebtorInsuranceLike; } public DB_ClassificationQuery setLedgerIDDebtorInsuranceLike(String value) { this.LedgerIDDebtorInsuranceLike = value; return this; } public ArrayList getLedgerIDDebtorInsuranceBetween() { return LedgerIDDebtorInsuranceBetween; } public DB_ClassificationQuery setLedgerIDDebtorInsuranceBetween(ArrayList value) { this.LedgerIDDebtorInsuranceBetween = value; return this; } public ArrayList getLedgerIDDebtorInsuranceIn() { return LedgerIDDebtorInsuranceIn; } public DB_ClassificationQuery setLedgerIDDebtorInsuranceIn(ArrayList value) { this.LedgerIDDebtorInsuranceIn = value; return this; } public Short getTermsDays() { return TermsDays; } public DB_ClassificationQuery setTermsDays(Short value) { this.TermsDays = value; return this; } public Short getTermsDaysGreaterThanOrEqualTo() { return TermsDaysGreaterThanOrEqualTo; } public DB_ClassificationQuery setTermsDaysGreaterThanOrEqualTo(Short value) { this.TermsDaysGreaterThanOrEqualTo = value; return this; } public Short getTermsDaysGreaterThan() { return TermsDaysGreaterThan; } public DB_ClassificationQuery setTermsDaysGreaterThan(Short value) { this.TermsDaysGreaterThan = value; return this; } public Short getTermsDaysLessThan() { return TermsDaysLessThan; } public DB_ClassificationQuery setTermsDaysLessThan(Short value) { this.TermsDaysLessThan = value; return this; } public Short getTermsDaysLessThanOrEqualTo() { return TermsDaysLessThanOrEqualTo; } public DB_ClassificationQuery setTermsDaysLessThanOrEqualTo(Short value) { this.TermsDaysLessThanOrEqualTo = value; return this; } public Short getTermsDaysNotEqualTo() { return TermsDaysNotEqualTo; } public DB_ClassificationQuery setTermsDaysNotEqualTo(Short value) { this.TermsDaysNotEqualTo = value; return this; } public ArrayList getTermsDaysBetween() { return TermsDaysBetween; } public DB_ClassificationQuery setTermsDaysBetween(ArrayList value) { this.TermsDaysBetween = value; return this; } public ArrayList getTermsDaysIn() { return TermsDaysIn; } public DB_ClassificationQuery setTermsDaysIn(ArrayList value) { this.TermsDaysIn = value; return this; } public Short getTermsType() { return TermsType; } public DB_ClassificationQuery setTermsType(Short value) { this.TermsType = value; return this; } public Short getTermsTypeGreaterThanOrEqualTo() { return TermsTypeGreaterThanOrEqualTo; } public DB_ClassificationQuery setTermsTypeGreaterThanOrEqualTo(Short value) { this.TermsTypeGreaterThanOrEqualTo = value; return this; } public Short getTermsTypeGreaterThan() { return TermsTypeGreaterThan; } public DB_ClassificationQuery setTermsTypeGreaterThan(Short value) { this.TermsTypeGreaterThan = value; return this; } public Short getTermsTypeLessThan() { return TermsTypeLessThan; } public DB_ClassificationQuery setTermsTypeLessThan(Short value) { this.TermsTypeLessThan = value; return this; } public Short getTermsTypeLessThanOrEqualTo() { return TermsTypeLessThanOrEqualTo; } public DB_ClassificationQuery setTermsTypeLessThanOrEqualTo(Short value) { this.TermsTypeLessThanOrEqualTo = value; return this; } public Short getTermsTypeNotEqualTo() { return TermsTypeNotEqualTo; } public DB_ClassificationQuery setTermsTypeNotEqualTo(Short value) { this.TermsTypeNotEqualTo = value; return this; } public ArrayList getTermsTypeBetween() { return TermsTypeBetween; } public DB_ClassificationQuery setTermsTypeBetween(ArrayList value) { this.TermsTypeBetween = value; return this; } public ArrayList getTermsTypeIn() { return TermsTypeIn; } public DB_ClassificationQuery setTermsTypeIn(ArrayList value) { this.TermsTypeIn = value; return this; } public String getPriceSchemeID() { return PriceSchemeID; } public DB_ClassificationQuery setPriceSchemeID(String value) { this.PriceSchemeID = value; return this; } public String getPriceSchemeIDStartsWith() { return PriceSchemeIDStartsWith; } public DB_ClassificationQuery setPriceSchemeIDStartsWith(String value) { this.PriceSchemeIDStartsWith = value; return this; } public String getPriceSchemeIDEndsWith() { return PriceSchemeIDEndsWith; } public DB_ClassificationQuery setPriceSchemeIDEndsWith(String value) { this.PriceSchemeIDEndsWith = value; return this; } public String getPriceSchemeIDContains() { return PriceSchemeIDContains; } public DB_ClassificationQuery setPriceSchemeIDContains(String value) { this.PriceSchemeIDContains = value; return this; } public String getPriceSchemeIDLike() { return PriceSchemeIDLike; } public DB_ClassificationQuery setPriceSchemeIDLike(String value) { this.PriceSchemeIDLike = value; return this; } public ArrayList getPriceSchemeIDBetween() { return PriceSchemeIDBetween; } public DB_ClassificationQuery setPriceSchemeIDBetween(ArrayList value) { this.PriceSchemeIDBetween = value; return this; } public ArrayList getPriceSchemeIDIn() { return PriceSchemeIDIn; } public DB_ClassificationQuery setPriceSchemeIDIn(ArrayList value) { this.PriceSchemeIDIn = value; return this; } public String getPricingGroupID() { return PricingGroupID; } public DB_ClassificationQuery setPricingGroupID(String value) { this.PricingGroupID = value; return this; } public String getPricingGroupIDStartsWith() { return PricingGroupIDStartsWith; } public DB_ClassificationQuery setPricingGroupIDStartsWith(String value) { this.PricingGroupIDStartsWith = value; return this; } public String getPricingGroupIDEndsWith() { return PricingGroupIDEndsWith; } public DB_ClassificationQuery setPricingGroupIDEndsWith(String value) { this.PricingGroupIDEndsWith = value; return this; } public String getPricingGroupIDContains() { return PricingGroupIDContains; } public DB_ClassificationQuery setPricingGroupIDContains(String value) { this.PricingGroupIDContains = value; return this; } public String getPricingGroupIDLike() { return PricingGroupIDLike; } public DB_ClassificationQuery setPricingGroupIDLike(String value) { this.PricingGroupIDLike = value; return this; } public ArrayList getPricingGroupIDBetween() { return PricingGroupIDBetween; } public DB_ClassificationQuery setPricingGroupIDBetween(ArrayList value) { this.PricingGroupIDBetween = value; return this; } public ArrayList getPricingGroupIDIn() { return PricingGroupIDIn; } public DB_ClassificationQuery setPricingGroupIDIn(ArrayList value) { this.PricingGroupIDIn = value; return this; } public String getLedgerIDDebtorRealisedGainLoss() { return LedgerIDDebtorRealisedGainLoss; } public DB_ClassificationQuery setLedgerIDDebtorRealisedGainLoss(String value) { this.LedgerIDDebtorRealisedGainLoss = value; return this; } public String getLedgerIDDebtorRealisedGainLossStartsWith() { return LedgerIDDebtorRealisedGainLossStartsWith; } public DB_ClassificationQuery setLedgerIDDebtorRealisedGainLossStartsWith(String value) { this.LedgerIDDebtorRealisedGainLossStartsWith = value; return this; } public String getLedgerIDDebtorRealisedGainLossEndsWith() { return LedgerIDDebtorRealisedGainLossEndsWith; } public DB_ClassificationQuery setLedgerIDDebtorRealisedGainLossEndsWith(String value) { this.LedgerIDDebtorRealisedGainLossEndsWith = value; return this; } public String getLedgerIDDebtorRealisedGainLossContains() { return LedgerIDDebtorRealisedGainLossContains; } public DB_ClassificationQuery setLedgerIDDebtorRealisedGainLossContains(String value) { this.LedgerIDDebtorRealisedGainLossContains = value; return this; } public String getLedgerIDDebtorRealisedGainLossLike() { return LedgerIDDebtorRealisedGainLossLike; } public DB_ClassificationQuery setLedgerIDDebtorRealisedGainLossLike(String value) { this.LedgerIDDebtorRealisedGainLossLike = value; return this; } public ArrayList getLedgerIDDebtorRealisedGainLossBetween() { return LedgerIDDebtorRealisedGainLossBetween; } public DB_ClassificationQuery setLedgerIDDebtorRealisedGainLossBetween(ArrayList value) { this.LedgerIDDebtorRealisedGainLossBetween = value; return this; } public ArrayList getLedgerIDDebtorRealisedGainLossIn() { return LedgerIDDebtorRealisedGainLossIn; } public DB_ClassificationQuery setLedgerIDDebtorRealisedGainLossIn(ArrayList value) { this.LedgerIDDebtorRealisedGainLossIn = value; return this; } public String getLedgerIDDebtorUnRealisedGainLoss() { return LedgerIDDebtorUnRealisedGainLoss; } public DB_ClassificationQuery setLedgerIDDebtorUnRealisedGainLoss(String value) { this.LedgerIDDebtorUnRealisedGainLoss = value; return this; } public String getLedgerIDDebtorUnRealisedGainLossStartsWith() { return LedgerIDDebtorUnRealisedGainLossStartsWith; } public DB_ClassificationQuery setLedgerIDDebtorUnRealisedGainLossStartsWith(String value) { this.LedgerIDDebtorUnRealisedGainLossStartsWith = value; return this; } public String getLedgerIDDebtorUnRealisedGainLossEndsWith() { return LedgerIDDebtorUnRealisedGainLossEndsWith; } public DB_ClassificationQuery setLedgerIDDebtorUnRealisedGainLossEndsWith(String value) { this.LedgerIDDebtorUnRealisedGainLossEndsWith = value; return this; } public String getLedgerIDDebtorUnRealisedGainLossContains() { return LedgerIDDebtorUnRealisedGainLossContains; } public DB_ClassificationQuery setLedgerIDDebtorUnRealisedGainLossContains(String value) { this.LedgerIDDebtorUnRealisedGainLossContains = value; return this; } public String getLedgerIDDebtorUnRealisedGainLossLike() { return LedgerIDDebtorUnRealisedGainLossLike; } public DB_ClassificationQuery setLedgerIDDebtorUnRealisedGainLossLike(String value) { this.LedgerIDDebtorUnRealisedGainLossLike = value; return this; } public ArrayList getLedgerIDDebtorUnRealisedGainLossBetween() { return LedgerIDDebtorUnRealisedGainLossBetween; } public DB_ClassificationQuery setLedgerIDDebtorUnRealisedGainLossBetween(ArrayList value) { this.LedgerIDDebtorUnRealisedGainLossBetween = value; return this; } public ArrayList getLedgerIDDebtorUnRealisedGainLossIn() { return LedgerIDDebtorUnRealisedGainLossIn; } public DB_ClassificationQuery setLedgerIDDebtorUnRealisedGainLossIn(ArrayList value) { this.LedgerIDDebtorUnRealisedGainLossIn = value; return this; } public Boolean getIsDefault() { return IsDefault; } public DB_ClassificationQuery setIsDefault(Boolean value) { this.IsDefault = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class DB_CreditNotesQuery extends QueryDb implements IReturn> { public String RecID = null; public String RecIDStartsWith = null; public String RecIDEndsWith = null; public String RecIDContains = null; public String RecIDLike = null; public ArrayList RecIDBetween = null; public ArrayList RecIDIn = null; public String DebtorID = null; public String DebtorIDStartsWith = null; public String DebtorIDEndsWith = null; public String DebtorIDContains = null; public String DebtorIDLike = null; public ArrayList DebtorIDBetween = null; public ArrayList DebtorIDIn = null; public String NoteTypeID = null; public String NoteTypeIDStartsWith = null; public String NoteTypeIDEndsWith = null; public String NoteTypeIDContains = null; public String NoteTypeIDLike = null; public ArrayList NoteTypeIDBetween = null; public ArrayList NoteTypeIDIn = null; public Date LastSavedDateTime = null; public Date LastSavedDateTimeGreaterThanOrEqualTo = null; public Date LastSavedDateTimeGreaterThan = null; public Date LastSavedDateTimeLessThan = null; public Date LastSavedDateTimeLessThanOrEqualTo = null; public Date LastSavedDateTimeNotEqualTo = null; public ArrayList LastSavedDateTimeBetween = null; public ArrayList LastSavedDateTimeIn = null; public String LastSavedByStaffID = null; public String LastSavedByStaffIDStartsWith = null; public String LastSavedByStaffIDEndsWith = null; public String LastSavedByStaffIDContains = null; public String LastSavedByStaffIDLike = null; public ArrayList LastSavedByStaffIDBetween = null; public ArrayList LastSavedByStaffIDIn = null; public String NoteText = null; public String NoteTextStartsWith = null; public String NoteTextEndsWith = null; public String NoteTextContains = null; public String NoteTextLike = null; public ArrayList NoteTextBetween = null; public ArrayList NoteTextIn = null; public Integer ItemNo = null; public Integer ItemNoGreaterThanOrEqualTo = null; public Integer ItemNoGreaterThan = null; public Integer ItemNoLessThan = null; public Integer ItemNoLessThanOrEqualTo = null; public Integer ItemNoNotEqualTo = null; public ArrayList ItemNoBetween = null; public ArrayList ItemNoIn = null; public String getRecID() { return RecID; } public DB_CreditNotesQuery setRecID(String value) { this.RecID = value; return this; } public String getRecIDStartsWith() { return RecIDStartsWith; } public DB_CreditNotesQuery setRecIDStartsWith(String value) { this.RecIDStartsWith = value; return this; } public String getRecIDEndsWith() { return RecIDEndsWith; } public DB_CreditNotesQuery setRecIDEndsWith(String value) { this.RecIDEndsWith = value; return this; } public String getRecIDContains() { return RecIDContains; } public DB_CreditNotesQuery setRecIDContains(String value) { this.RecIDContains = value; return this; } public String getRecIDLike() { return RecIDLike; } public DB_CreditNotesQuery setRecIDLike(String value) { this.RecIDLike = value; return this; } public ArrayList getRecIDBetween() { return RecIDBetween; } public DB_CreditNotesQuery setRecIDBetween(ArrayList value) { this.RecIDBetween = value; return this; } public ArrayList getRecIDIn() { return RecIDIn; } public DB_CreditNotesQuery setRecIDIn(ArrayList value) { this.RecIDIn = value; return this; } public String getDebtorID() { return DebtorID; } public DB_CreditNotesQuery setDebtorID(String value) { this.DebtorID = value; return this; } public String getDebtorIDStartsWith() { return DebtorIDStartsWith; } public DB_CreditNotesQuery setDebtorIDStartsWith(String value) { this.DebtorIDStartsWith = value; return this; } public String getDebtorIDEndsWith() { return DebtorIDEndsWith; } public DB_CreditNotesQuery setDebtorIDEndsWith(String value) { this.DebtorIDEndsWith = value; return this; } public String getDebtorIDContains() { return DebtorIDContains; } public DB_CreditNotesQuery setDebtorIDContains(String value) { this.DebtorIDContains = value; return this; } public String getDebtorIDLike() { return DebtorIDLike; } public DB_CreditNotesQuery setDebtorIDLike(String value) { this.DebtorIDLike = value; return this; } public ArrayList getDebtorIDBetween() { return DebtorIDBetween; } public DB_CreditNotesQuery setDebtorIDBetween(ArrayList value) { this.DebtorIDBetween = value; return this; } public ArrayList getDebtorIDIn() { return DebtorIDIn; } public DB_CreditNotesQuery setDebtorIDIn(ArrayList value) { this.DebtorIDIn = value; return this; } public String getNoteTypeID() { return NoteTypeID; } public DB_CreditNotesQuery setNoteTypeID(String value) { this.NoteTypeID = value; return this; } public String getNoteTypeIDStartsWith() { return NoteTypeIDStartsWith; } public DB_CreditNotesQuery setNoteTypeIDStartsWith(String value) { this.NoteTypeIDStartsWith = value; return this; } public String getNoteTypeIDEndsWith() { return NoteTypeIDEndsWith; } public DB_CreditNotesQuery setNoteTypeIDEndsWith(String value) { this.NoteTypeIDEndsWith = value; return this; } public String getNoteTypeIDContains() { return NoteTypeIDContains; } public DB_CreditNotesQuery setNoteTypeIDContains(String value) { this.NoteTypeIDContains = value; return this; } public String getNoteTypeIDLike() { return NoteTypeIDLike; } public DB_CreditNotesQuery setNoteTypeIDLike(String value) { this.NoteTypeIDLike = value; return this; } public ArrayList getNoteTypeIDBetween() { return NoteTypeIDBetween; } public DB_CreditNotesQuery setNoteTypeIDBetween(ArrayList value) { this.NoteTypeIDBetween = value; return this; } public ArrayList getNoteTypeIDIn() { return NoteTypeIDIn; } public DB_CreditNotesQuery setNoteTypeIDIn(ArrayList value) { this.NoteTypeIDIn = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public DB_CreditNotesQuery setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getLastSavedDateTimeGreaterThanOrEqualTo() { return LastSavedDateTimeGreaterThanOrEqualTo; } public DB_CreditNotesQuery setLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.LastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeGreaterThan() { return LastSavedDateTimeGreaterThan; } public DB_CreditNotesQuery setLastSavedDateTimeGreaterThan(Date value) { this.LastSavedDateTimeGreaterThan = value; return this; } public Date getLastSavedDateTimeLessThan() { return LastSavedDateTimeLessThan; } public DB_CreditNotesQuery setLastSavedDateTimeLessThan(Date value) { this.LastSavedDateTimeLessThan = value; return this; } public Date getLastSavedDateTimeLessThanOrEqualTo() { return LastSavedDateTimeLessThanOrEqualTo; } public DB_CreditNotesQuery setLastSavedDateTimeLessThanOrEqualTo(Date value) { this.LastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeNotEqualTo() { return LastSavedDateTimeNotEqualTo; } public DB_CreditNotesQuery setLastSavedDateTimeNotEqualTo(Date value) { this.LastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getLastSavedDateTimeBetween() { return LastSavedDateTimeBetween; } public DB_CreditNotesQuery setLastSavedDateTimeBetween(ArrayList value) { this.LastSavedDateTimeBetween = value; return this; } public ArrayList getLastSavedDateTimeIn() { return LastSavedDateTimeIn; } public DB_CreditNotesQuery setLastSavedDateTimeIn(ArrayList value) { this.LastSavedDateTimeIn = value; return this; } public String getLastSavedByStaffID() { return LastSavedByStaffID; } public DB_CreditNotesQuery setLastSavedByStaffID(String value) { this.LastSavedByStaffID = value; return this; } public String getLastSavedByStaffIDStartsWith() { return LastSavedByStaffIDStartsWith; } public DB_CreditNotesQuery setLastSavedByStaffIDStartsWith(String value) { this.LastSavedByStaffIDStartsWith = value; return this; } public String getLastSavedByStaffIDEndsWith() { return LastSavedByStaffIDEndsWith; } public DB_CreditNotesQuery setLastSavedByStaffIDEndsWith(String value) { this.LastSavedByStaffIDEndsWith = value; return this; } public String getLastSavedByStaffIDContains() { return LastSavedByStaffIDContains; } public DB_CreditNotesQuery setLastSavedByStaffIDContains(String value) { this.LastSavedByStaffIDContains = value; return this; } public String getLastSavedByStaffIDLike() { return LastSavedByStaffIDLike; } public DB_CreditNotesQuery setLastSavedByStaffIDLike(String value) { this.LastSavedByStaffIDLike = value; return this; } public ArrayList getLastSavedByStaffIDBetween() { return LastSavedByStaffIDBetween; } public DB_CreditNotesQuery setLastSavedByStaffIDBetween(ArrayList value) { this.LastSavedByStaffIDBetween = value; return this; } public ArrayList getLastSavedByStaffIDIn() { return LastSavedByStaffIDIn; } public DB_CreditNotesQuery setLastSavedByStaffIDIn(ArrayList value) { this.LastSavedByStaffIDIn = value; return this; } public String getNoteText() { return NoteText; } public DB_CreditNotesQuery setNoteText(String value) { this.NoteText = value; return this; } public String getNoteTextStartsWith() { return NoteTextStartsWith; } public DB_CreditNotesQuery setNoteTextStartsWith(String value) { this.NoteTextStartsWith = value; return this; } public String getNoteTextEndsWith() { return NoteTextEndsWith; } public DB_CreditNotesQuery setNoteTextEndsWith(String value) { this.NoteTextEndsWith = value; return this; } public String getNoteTextContains() { return NoteTextContains; } public DB_CreditNotesQuery setNoteTextContains(String value) { this.NoteTextContains = value; return this; } public String getNoteTextLike() { return NoteTextLike; } public DB_CreditNotesQuery setNoteTextLike(String value) { this.NoteTextLike = value; return this; } public ArrayList getNoteTextBetween() { return NoteTextBetween; } public DB_CreditNotesQuery setNoteTextBetween(ArrayList value) { this.NoteTextBetween = value; return this; } public ArrayList getNoteTextIn() { return NoteTextIn; } public DB_CreditNotesQuery setNoteTextIn(ArrayList value) { this.NoteTextIn = value; return this; } public Integer getItemNo() { return ItemNo; } public DB_CreditNotesQuery setItemNo(Integer value) { this.ItemNo = value; return this; } public Integer getItemNoGreaterThanOrEqualTo() { return ItemNoGreaterThanOrEqualTo; } public DB_CreditNotesQuery setItemNoGreaterThanOrEqualTo(Integer value) { this.ItemNoGreaterThanOrEqualTo = value; return this; } public Integer getItemNoGreaterThan() { return ItemNoGreaterThan; } public DB_CreditNotesQuery setItemNoGreaterThan(Integer value) { this.ItemNoGreaterThan = value; return this; } public Integer getItemNoLessThan() { return ItemNoLessThan; } public DB_CreditNotesQuery setItemNoLessThan(Integer value) { this.ItemNoLessThan = value; return this; } public Integer getItemNoLessThanOrEqualTo() { return ItemNoLessThanOrEqualTo; } public DB_CreditNotesQuery setItemNoLessThanOrEqualTo(Integer value) { this.ItemNoLessThanOrEqualTo = value; return this; } public Integer getItemNoNotEqualTo() { return ItemNoNotEqualTo; } public DB_CreditNotesQuery setItemNoNotEqualTo(Integer value) { this.ItemNoNotEqualTo = value; return this; } public ArrayList getItemNoBetween() { return ItemNoBetween; } public DB_CreditNotesQuery setItemNoBetween(ArrayList value) { this.ItemNoBetween = value; return this; } public ArrayList getItemNoIn() { return ItemNoIn; } public DB_CreditNotesQuery setItemNoIn(ArrayList value) { this.ItemNoIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class DB_CustomSettingQuery extends QueryDb implements IReturn> { public String SettingID = null; public String SettingIDStartsWith = null; public String SettingIDEndsWith = null; public String SettingIDContains = null; public String SettingIDLike = null; public ArrayList SettingIDBetween = null; public ArrayList SettingIDIn = null; public Date LastSavedDateTime = null; public Date LastSavedDateTimeGreaterThanOrEqualTo = null; public Date LastSavedDateTimeGreaterThan = null; public Date LastSavedDateTimeLessThan = null; public Date LastSavedDateTimeLessThanOrEqualTo = null; public Date LastSavedDateTimeNotEqualTo = null; public ArrayList LastSavedDateTimeBetween = null; public ArrayList LastSavedDateTimeIn = null; public String SettingDescription = null; public String SettingDescriptionStartsWith = null; public String SettingDescriptionEndsWith = null; public String SettingDescriptionContains = null; public String SettingDescriptionLike = null; public ArrayList SettingDescriptionBetween = null; public ArrayList SettingDescriptionIn = null; public String SettingName = null; public String SettingNameStartsWith = null; public String SettingNameEndsWith = null; public String SettingNameContains = null; public String SettingNameLike = null; public ArrayList SettingNameBetween = null; public ArrayList SettingNameIn = null; public Integer DisplayOrder = null; public Integer DisplayOrderGreaterThanOrEqualTo = null; public Integer DisplayOrderGreaterThan = null; public Integer DisplayOrderLessThan = null; public Integer DisplayOrderLessThanOrEqualTo = null; public Integer DisplayOrderNotEqualTo = null; public ArrayList DisplayOrderBetween = null; public ArrayList DisplayOrderIn = null; public Short CellType = null; public Short CellTypeGreaterThanOrEqualTo = null; public Short CellTypeGreaterThan = null; public Short CellTypeLessThan = null; public Short CellTypeLessThanOrEqualTo = null; public Short CellTypeNotEqualTo = null; public ArrayList CellTypeBetween = null; public ArrayList CellTypeIn = null; public String ScriptFormatCell = null; public String ScriptFormatCellStartsWith = null; public String ScriptFormatCellEndsWith = null; public String ScriptFormatCellContains = null; public String ScriptFormatCellLike = null; public ArrayList ScriptFormatCellBetween = null; public ArrayList ScriptFormatCellIn = null; public String ScriptButtonClicked = null; public String ScriptButtonClickedStartsWith = null; public String ScriptButtonClickedEndsWith = null; public String ScriptButtonClickedContains = null; public String ScriptButtonClickedLike = null; public ArrayList ScriptButtonClickedBetween = null; public ArrayList ScriptButtonClickedIn = null; public String ScriptReadData = null; public String ScriptReadDataStartsWith = null; public String ScriptReadDataEndsWith = null; public String ScriptReadDataContains = null; public String ScriptReadDataLike = null; public ArrayList ScriptReadDataBetween = null; public ArrayList ScriptReadDataIn = null; public String GridHandlerCode = null; public String GridHandlerCodeStartsWith = null; public String GridHandlerCodeEndsWith = null; public String GridHandlerCodeContains = null; public String GridHandlerCodeLike = null; public ArrayList GridHandlerCodeBetween = null; public ArrayList GridHandlerCodeIn = null; public UUID SY_Plugin_RecID = null; public ArrayList SY_Plugin_RecIDIn = null; public String getSettingID() { return SettingID; } public DB_CustomSettingQuery setSettingID(String value) { this.SettingID = value; return this; } public String getSettingIDStartsWith() { return SettingIDStartsWith; } public DB_CustomSettingQuery setSettingIDStartsWith(String value) { this.SettingIDStartsWith = value; return this; } public String getSettingIDEndsWith() { return SettingIDEndsWith; } public DB_CustomSettingQuery setSettingIDEndsWith(String value) { this.SettingIDEndsWith = value; return this; } public String getSettingIDContains() { return SettingIDContains; } public DB_CustomSettingQuery setSettingIDContains(String value) { this.SettingIDContains = value; return this; } public String getSettingIDLike() { return SettingIDLike; } public DB_CustomSettingQuery setSettingIDLike(String value) { this.SettingIDLike = value; return this; } public ArrayList getSettingIDBetween() { return SettingIDBetween; } public DB_CustomSettingQuery setSettingIDBetween(ArrayList value) { this.SettingIDBetween = value; return this; } public ArrayList getSettingIDIn() { return SettingIDIn; } public DB_CustomSettingQuery setSettingIDIn(ArrayList value) { this.SettingIDIn = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public DB_CustomSettingQuery setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getLastSavedDateTimeGreaterThanOrEqualTo() { return LastSavedDateTimeGreaterThanOrEqualTo; } public DB_CustomSettingQuery setLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.LastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeGreaterThan() { return LastSavedDateTimeGreaterThan; } public DB_CustomSettingQuery setLastSavedDateTimeGreaterThan(Date value) { this.LastSavedDateTimeGreaterThan = value; return this; } public Date getLastSavedDateTimeLessThan() { return LastSavedDateTimeLessThan; } public DB_CustomSettingQuery setLastSavedDateTimeLessThan(Date value) { this.LastSavedDateTimeLessThan = value; return this; } public Date getLastSavedDateTimeLessThanOrEqualTo() { return LastSavedDateTimeLessThanOrEqualTo; } public DB_CustomSettingQuery setLastSavedDateTimeLessThanOrEqualTo(Date value) { this.LastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeNotEqualTo() { return LastSavedDateTimeNotEqualTo; } public DB_CustomSettingQuery setLastSavedDateTimeNotEqualTo(Date value) { this.LastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getLastSavedDateTimeBetween() { return LastSavedDateTimeBetween; } public DB_CustomSettingQuery setLastSavedDateTimeBetween(ArrayList value) { this.LastSavedDateTimeBetween = value; return this; } public ArrayList getLastSavedDateTimeIn() { return LastSavedDateTimeIn; } public DB_CustomSettingQuery setLastSavedDateTimeIn(ArrayList value) { this.LastSavedDateTimeIn = value; return this; } public String getSettingDescription() { return SettingDescription; } public DB_CustomSettingQuery setSettingDescription(String value) { this.SettingDescription = value; return this; } public String getSettingDescriptionStartsWith() { return SettingDescriptionStartsWith; } public DB_CustomSettingQuery setSettingDescriptionStartsWith(String value) { this.SettingDescriptionStartsWith = value; return this; } public String getSettingDescriptionEndsWith() { return SettingDescriptionEndsWith; } public DB_CustomSettingQuery setSettingDescriptionEndsWith(String value) { this.SettingDescriptionEndsWith = value; return this; } public String getSettingDescriptionContains() { return SettingDescriptionContains; } public DB_CustomSettingQuery setSettingDescriptionContains(String value) { this.SettingDescriptionContains = value; return this; } public String getSettingDescriptionLike() { return SettingDescriptionLike; } public DB_CustomSettingQuery setSettingDescriptionLike(String value) { this.SettingDescriptionLike = value; return this; } public ArrayList getSettingDescriptionBetween() { return SettingDescriptionBetween; } public DB_CustomSettingQuery setSettingDescriptionBetween(ArrayList value) { this.SettingDescriptionBetween = value; return this; } public ArrayList getSettingDescriptionIn() { return SettingDescriptionIn; } public DB_CustomSettingQuery setSettingDescriptionIn(ArrayList value) { this.SettingDescriptionIn = value; return this; } public String getSettingName() { return SettingName; } public DB_CustomSettingQuery setSettingName(String value) { this.SettingName = value; return this; } public String getSettingNameStartsWith() { return SettingNameStartsWith; } public DB_CustomSettingQuery setSettingNameStartsWith(String value) { this.SettingNameStartsWith = value; return this; } public String getSettingNameEndsWith() { return SettingNameEndsWith; } public DB_CustomSettingQuery setSettingNameEndsWith(String value) { this.SettingNameEndsWith = value; return this; } public String getSettingNameContains() { return SettingNameContains; } public DB_CustomSettingQuery setSettingNameContains(String value) { this.SettingNameContains = value; return this; } public String getSettingNameLike() { return SettingNameLike; } public DB_CustomSettingQuery setSettingNameLike(String value) { this.SettingNameLike = value; return this; } public ArrayList getSettingNameBetween() { return SettingNameBetween; } public DB_CustomSettingQuery setSettingNameBetween(ArrayList value) { this.SettingNameBetween = value; return this; } public ArrayList getSettingNameIn() { return SettingNameIn; } public DB_CustomSettingQuery setSettingNameIn(ArrayList value) { this.SettingNameIn = value; return this; } public Integer getDisplayOrder() { return DisplayOrder; } public DB_CustomSettingQuery setDisplayOrder(Integer value) { this.DisplayOrder = value; return this; } public Integer getDisplayOrderGreaterThanOrEqualTo() { return DisplayOrderGreaterThanOrEqualTo; } public DB_CustomSettingQuery setDisplayOrderGreaterThanOrEqualTo(Integer value) { this.DisplayOrderGreaterThanOrEqualTo = value; return this; } public Integer getDisplayOrderGreaterThan() { return DisplayOrderGreaterThan; } public DB_CustomSettingQuery setDisplayOrderGreaterThan(Integer value) { this.DisplayOrderGreaterThan = value; return this; } public Integer getDisplayOrderLessThan() { return DisplayOrderLessThan; } public DB_CustomSettingQuery setDisplayOrderLessThan(Integer value) { this.DisplayOrderLessThan = value; return this; } public Integer getDisplayOrderLessThanOrEqualTo() { return DisplayOrderLessThanOrEqualTo; } public DB_CustomSettingQuery setDisplayOrderLessThanOrEqualTo(Integer value) { this.DisplayOrderLessThanOrEqualTo = value; return this; } public Integer getDisplayOrderNotEqualTo() { return DisplayOrderNotEqualTo; } public DB_CustomSettingQuery setDisplayOrderNotEqualTo(Integer value) { this.DisplayOrderNotEqualTo = value; return this; } public ArrayList getDisplayOrderBetween() { return DisplayOrderBetween; } public DB_CustomSettingQuery setDisplayOrderBetween(ArrayList value) { this.DisplayOrderBetween = value; return this; } public ArrayList getDisplayOrderIn() { return DisplayOrderIn; } public DB_CustomSettingQuery setDisplayOrderIn(ArrayList value) { this.DisplayOrderIn = value; return this; } public Short getCellType() { return CellType; } public DB_CustomSettingQuery setCellType(Short value) { this.CellType = value; return this; } public Short getCellTypeGreaterThanOrEqualTo() { return CellTypeGreaterThanOrEqualTo; } public DB_CustomSettingQuery setCellTypeGreaterThanOrEqualTo(Short value) { this.CellTypeGreaterThanOrEqualTo = value; return this; } public Short getCellTypeGreaterThan() { return CellTypeGreaterThan; } public DB_CustomSettingQuery setCellTypeGreaterThan(Short value) { this.CellTypeGreaterThan = value; return this; } public Short getCellTypeLessThan() { return CellTypeLessThan; } public DB_CustomSettingQuery setCellTypeLessThan(Short value) { this.CellTypeLessThan = value; return this; } public Short getCellTypeLessThanOrEqualTo() { return CellTypeLessThanOrEqualTo; } public DB_CustomSettingQuery setCellTypeLessThanOrEqualTo(Short value) { this.CellTypeLessThanOrEqualTo = value; return this; } public Short getCellTypeNotEqualTo() { return CellTypeNotEqualTo; } public DB_CustomSettingQuery setCellTypeNotEqualTo(Short value) { this.CellTypeNotEqualTo = value; return this; } public ArrayList getCellTypeBetween() { return CellTypeBetween; } public DB_CustomSettingQuery setCellTypeBetween(ArrayList value) { this.CellTypeBetween = value; return this; } public ArrayList getCellTypeIn() { return CellTypeIn; } public DB_CustomSettingQuery setCellTypeIn(ArrayList value) { this.CellTypeIn = value; return this; } public String getScriptFormatCell() { return ScriptFormatCell; } public DB_CustomSettingQuery setScriptFormatCell(String value) { this.ScriptFormatCell = value; return this; } public String getScriptFormatCellStartsWith() { return ScriptFormatCellStartsWith; } public DB_CustomSettingQuery setScriptFormatCellStartsWith(String value) { this.ScriptFormatCellStartsWith = value; return this; } public String getScriptFormatCellEndsWith() { return ScriptFormatCellEndsWith; } public DB_CustomSettingQuery setScriptFormatCellEndsWith(String value) { this.ScriptFormatCellEndsWith = value; return this; } public String getScriptFormatCellContains() { return ScriptFormatCellContains; } public DB_CustomSettingQuery setScriptFormatCellContains(String value) { this.ScriptFormatCellContains = value; return this; } public String getScriptFormatCellLike() { return ScriptFormatCellLike; } public DB_CustomSettingQuery setScriptFormatCellLike(String value) { this.ScriptFormatCellLike = value; return this; } public ArrayList getScriptFormatCellBetween() { return ScriptFormatCellBetween; } public DB_CustomSettingQuery setScriptFormatCellBetween(ArrayList value) { this.ScriptFormatCellBetween = value; return this; } public ArrayList getScriptFormatCellIn() { return ScriptFormatCellIn; } public DB_CustomSettingQuery setScriptFormatCellIn(ArrayList value) { this.ScriptFormatCellIn = value; return this; } public String getScriptButtonClicked() { return ScriptButtonClicked; } public DB_CustomSettingQuery setScriptButtonClicked(String value) { this.ScriptButtonClicked = value; return this; } public String getScriptButtonClickedStartsWith() { return ScriptButtonClickedStartsWith; } public DB_CustomSettingQuery setScriptButtonClickedStartsWith(String value) { this.ScriptButtonClickedStartsWith = value; return this; } public String getScriptButtonClickedEndsWith() { return ScriptButtonClickedEndsWith; } public DB_CustomSettingQuery setScriptButtonClickedEndsWith(String value) { this.ScriptButtonClickedEndsWith = value; return this; } public String getScriptButtonClickedContains() { return ScriptButtonClickedContains; } public DB_CustomSettingQuery setScriptButtonClickedContains(String value) { this.ScriptButtonClickedContains = value; return this; } public String getScriptButtonClickedLike() { return ScriptButtonClickedLike; } public DB_CustomSettingQuery setScriptButtonClickedLike(String value) { this.ScriptButtonClickedLike = value; return this; } public ArrayList getScriptButtonClickedBetween() { return ScriptButtonClickedBetween; } public DB_CustomSettingQuery setScriptButtonClickedBetween(ArrayList value) { this.ScriptButtonClickedBetween = value; return this; } public ArrayList getScriptButtonClickedIn() { return ScriptButtonClickedIn; } public DB_CustomSettingQuery setScriptButtonClickedIn(ArrayList value) { this.ScriptButtonClickedIn = value; return this; } public String getScriptReadData() { return ScriptReadData; } public DB_CustomSettingQuery setScriptReadData(String value) { this.ScriptReadData = value; return this; } public String getScriptReadDataStartsWith() { return ScriptReadDataStartsWith; } public DB_CustomSettingQuery setScriptReadDataStartsWith(String value) { this.ScriptReadDataStartsWith = value; return this; } public String getScriptReadDataEndsWith() { return ScriptReadDataEndsWith; } public DB_CustomSettingQuery setScriptReadDataEndsWith(String value) { this.ScriptReadDataEndsWith = value; return this; } public String getScriptReadDataContains() { return ScriptReadDataContains; } public DB_CustomSettingQuery setScriptReadDataContains(String value) { this.ScriptReadDataContains = value; return this; } public String getScriptReadDataLike() { return ScriptReadDataLike; } public DB_CustomSettingQuery setScriptReadDataLike(String value) { this.ScriptReadDataLike = value; return this; } public ArrayList getScriptReadDataBetween() { return ScriptReadDataBetween; } public DB_CustomSettingQuery setScriptReadDataBetween(ArrayList value) { this.ScriptReadDataBetween = value; return this; } public ArrayList getScriptReadDataIn() { return ScriptReadDataIn; } public DB_CustomSettingQuery setScriptReadDataIn(ArrayList value) { this.ScriptReadDataIn = value; return this; } public String getGridHandlerCode() { return GridHandlerCode; } public DB_CustomSettingQuery setGridHandlerCode(String value) { this.GridHandlerCode = value; return this; } public String getGridHandlerCodeStartsWith() { return GridHandlerCodeStartsWith; } public DB_CustomSettingQuery setGridHandlerCodeStartsWith(String value) { this.GridHandlerCodeStartsWith = value; return this; } public String getGridHandlerCodeEndsWith() { return GridHandlerCodeEndsWith; } public DB_CustomSettingQuery setGridHandlerCodeEndsWith(String value) { this.GridHandlerCodeEndsWith = value; return this; } public String getGridHandlerCodeContains() { return GridHandlerCodeContains; } public DB_CustomSettingQuery setGridHandlerCodeContains(String value) { this.GridHandlerCodeContains = value; return this; } public String getGridHandlerCodeLike() { return GridHandlerCodeLike; } public DB_CustomSettingQuery setGridHandlerCodeLike(String value) { this.GridHandlerCodeLike = value; return this; } public ArrayList getGridHandlerCodeBetween() { return GridHandlerCodeBetween; } public DB_CustomSettingQuery setGridHandlerCodeBetween(ArrayList value) { this.GridHandlerCodeBetween = value; return this; } public ArrayList getGridHandlerCodeIn() { return GridHandlerCodeIn; } public DB_CustomSettingQuery setGridHandlerCodeIn(ArrayList value) { this.GridHandlerCodeIn = value; return this; } public UUID getSyPluginRecID() { return SY_Plugin_RecID; } public DB_CustomSettingQuery setSyPluginRecID(UUID value) { this.SY_Plugin_RecID = value; return this; } public ArrayList getSyPluginRecIDIn() { return SY_Plugin_RecIDIn; } public DB_CustomSettingQuery setSyPluginRecIDIn(ArrayList value) { this.SY_Plugin_RecIDIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class DB_CustomSettingValuesQuery extends QueryDb implements IReturn> { public String SettingValueID = null; public String SettingValueIDStartsWith = null; public String SettingValueIDEndsWith = null; public String SettingValueIDContains = null; public String SettingValueIDLike = null; public ArrayList SettingValueIDBetween = null; public ArrayList SettingValueIDIn = null; public String SettingID = null; public String SettingIDStartsWith = null; public String SettingIDEndsWith = null; public String SettingIDContains = null; public String SettingIDLike = null; public ArrayList SettingIDBetween = null; public ArrayList SettingIDIn = null; public String DebtorID = null; public String DebtorIDStartsWith = null; public String DebtorIDEndsWith = null; public String DebtorIDContains = null; public String DebtorIDLike = null; public ArrayList DebtorIDBetween = null; public ArrayList DebtorIDIn = null; public String Contents = null; public String ContentsStartsWith = null; public String ContentsEndsWith = null; public String ContentsContains = null; public String ContentsLike = null; public ArrayList ContentsBetween = null; public ArrayList ContentsIn = null; public Date LastSavedDateTime = null; public Date LastSavedDateTimeGreaterThanOrEqualTo = null; public Date LastSavedDateTimeGreaterThan = null; public Date LastSavedDateTimeLessThan = null; public Date LastSavedDateTimeLessThanOrEqualTo = null; public Date LastSavedDateTimeNotEqualTo = null; public ArrayList LastSavedDateTimeBetween = null; public ArrayList LastSavedDateTimeIn = null; public String getSettingValueID() { return SettingValueID; } public DB_CustomSettingValuesQuery setSettingValueID(String value) { this.SettingValueID = value; return this; } public String getSettingValueIDStartsWith() { return SettingValueIDStartsWith; } public DB_CustomSettingValuesQuery setSettingValueIDStartsWith(String value) { this.SettingValueIDStartsWith = value; return this; } public String getSettingValueIDEndsWith() { return SettingValueIDEndsWith; } public DB_CustomSettingValuesQuery setSettingValueIDEndsWith(String value) { this.SettingValueIDEndsWith = value; return this; } public String getSettingValueIDContains() { return SettingValueIDContains; } public DB_CustomSettingValuesQuery setSettingValueIDContains(String value) { this.SettingValueIDContains = value; return this; } public String getSettingValueIDLike() { return SettingValueIDLike; } public DB_CustomSettingValuesQuery setSettingValueIDLike(String value) { this.SettingValueIDLike = value; return this; } public ArrayList getSettingValueIDBetween() { return SettingValueIDBetween; } public DB_CustomSettingValuesQuery setSettingValueIDBetween(ArrayList value) { this.SettingValueIDBetween = value; return this; } public ArrayList getSettingValueIDIn() { return SettingValueIDIn; } public DB_CustomSettingValuesQuery setSettingValueIDIn(ArrayList value) { this.SettingValueIDIn = value; return this; } public String getSettingID() { return SettingID; } public DB_CustomSettingValuesQuery setSettingID(String value) { this.SettingID = value; return this; } public String getSettingIDStartsWith() { return SettingIDStartsWith; } public DB_CustomSettingValuesQuery setSettingIDStartsWith(String value) { this.SettingIDStartsWith = value; return this; } public String getSettingIDEndsWith() { return SettingIDEndsWith; } public DB_CustomSettingValuesQuery setSettingIDEndsWith(String value) { this.SettingIDEndsWith = value; return this; } public String getSettingIDContains() { return SettingIDContains; } public DB_CustomSettingValuesQuery setSettingIDContains(String value) { this.SettingIDContains = value; return this; } public String getSettingIDLike() { return SettingIDLike; } public DB_CustomSettingValuesQuery setSettingIDLike(String value) { this.SettingIDLike = value; return this; } public ArrayList getSettingIDBetween() { return SettingIDBetween; } public DB_CustomSettingValuesQuery setSettingIDBetween(ArrayList value) { this.SettingIDBetween = value; return this; } public ArrayList getSettingIDIn() { return SettingIDIn; } public DB_CustomSettingValuesQuery setSettingIDIn(ArrayList value) { this.SettingIDIn = value; return this; } public String getDebtorID() { return DebtorID; } public DB_CustomSettingValuesQuery setDebtorID(String value) { this.DebtorID = value; return this; } public String getDebtorIDStartsWith() { return DebtorIDStartsWith; } public DB_CustomSettingValuesQuery setDebtorIDStartsWith(String value) { this.DebtorIDStartsWith = value; return this; } public String getDebtorIDEndsWith() { return DebtorIDEndsWith; } public DB_CustomSettingValuesQuery setDebtorIDEndsWith(String value) { this.DebtorIDEndsWith = value; return this; } public String getDebtorIDContains() { return DebtorIDContains; } public DB_CustomSettingValuesQuery setDebtorIDContains(String value) { this.DebtorIDContains = value; return this; } public String getDebtorIDLike() { return DebtorIDLike; } public DB_CustomSettingValuesQuery setDebtorIDLike(String value) { this.DebtorIDLike = value; return this; } public ArrayList getDebtorIDBetween() { return DebtorIDBetween; } public DB_CustomSettingValuesQuery setDebtorIDBetween(ArrayList value) { this.DebtorIDBetween = value; return this; } public ArrayList getDebtorIDIn() { return DebtorIDIn; } public DB_CustomSettingValuesQuery setDebtorIDIn(ArrayList value) { this.DebtorIDIn = value; return this; } public String getContents() { return Contents; } public DB_CustomSettingValuesQuery setContents(String value) { this.Contents = value; return this; } public String getContentsStartsWith() { return ContentsStartsWith; } public DB_CustomSettingValuesQuery setContentsStartsWith(String value) { this.ContentsStartsWith = value; return this; } public String getContentsEndsWith() { return ContentsEndsWith; } public DB_CustomSettingValuesQuery setContentsEndsWith(String value) { this.ContentsEndsWith = value; return this; } public String getContentsContains() { return ContentsContains; } public DB_CustomSettingValuesQuery setContentsContains(String value) { this.ContentsContains = value; return this; } public String getContentsLike() { return ContentsLike; } public DB_CustomSettingValuesQuery setContentsLike(String value) { this.ContentsLike = value; return this; } public ArrayList getContentsBetween() { return ContentsBetween; } public DB_CustomSettingValuesQuery setContentsBetween(ArrayList value) { this.ContentsBetween = value; return this; } public ArrayList getContentsIn() { return ContentsIn; } public DB_CustomSettingValuesQuery setContentsIn(ArrayList value) { this.ContentsIn = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public DB_CustomSettingValuesQuery setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getLastSavedDateTimeGreaterThanOrEqualTo() { return LastSavedDateTimeGreaterThanOrEqualTo; } public DB_CustomSettingValuesQuery setLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.LastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeGreaterThan() { return LastSavedDateTimeGreaterThan; } public DB_CustomSettingValuesQuery setLastSavedDateTimeGreaterThan(Date value) { this.LastSavedDateTimeGreaterThan = value; return this; } public Date getLastSavedDateTimeLessThan() { return LastSavedDateTimeLessThan; } public DB_CustomSettingValuesQuery setLastSavedDateTimeLessThan(Date value) { this.LastSavedDateTimeLessThan = value; return this; } public Date getLastSavedDateTimeLessThanOrEqualTo() { return LastSavedDateTimeLessThanOrEqualTo; } public DB_CustomSettingValuesQuery setLastSavedDateTimeLessThanOrEqualTo(Date value) { this.LastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeNotEqualTo() { return LastSavedDateTimeNotEqualTo; } public DB_CustomSettingValuesQuery setLastSavedDateTimeNotEqualTo(Date value) { this.LastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getLastSavedDateTimeBetween() { return LastSavedDateTimeBetween; } public DB_CustomSettingValuesQuery setLastSavedDateTimeBetween(ArrayList value) { this.LastSavedDateTimeBetween = value; return this; } public ArrayList getLastSavedDateTimeIn() { return LastSavedDateTimeIn; } public DB_CustomSettingValuesQuery setLastSavedDateTimeIn(ArrayList value) { this.LastSavedDateTimeIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class DB_DebtorSystemFieldValuesQuery extends QueryDb implements IReturn> { public String RecID = null; public String RecIDStartsWith = null; public String RecIDEndsWith = null; public String RecIDContains = null; public String RecIDLike = null; public ArrayList RecIDBetween = null; public ArrayList RecIDIn = null; public String DB_DebtorSystemTemplateFields_RecID = null; public String DB_DebtorSystemTemplateFields_RecIDStartsWith = null; public String DB_DebtorSystemTemplateFields_RecIDEndsWith = null; public String DB_DebtorSystemTemplateFields_RecIDContains = null; public String DB_DebtorSystemTemplateFields_RecIDLike = null; public ArrayList DB_DebtorSystemTemplateFields_RecIDBetween = null; public ArrayList DB_DebtorSystemTemplateFields_RecIDIn = null; public String DB_DebtorSystems_RecID = null; public String DB_DebtorSystems_RecIDStartsWith = null; public String DB_DebtorSystems_RecIDEndsWith = null; public String DB_DebtorSystems_RecIDContains = null; public String DB_DebtorSystems_RecIDLike = null; public ArrayList DB_DebtorSystems_RecIDBetween = null; public ArrayList DB_DebtorSystems_RecIDIn = null; public Date LastSavedDateTime = null; public Date LastSavedDateTimeGreaterThanOrEqualTo = null; public Date LastSavedDateTimeGreaterThan = null; public Date LastSavedDateTimeLessThan = null; public Date LastSavedDateTimeLessThanOrEqualTo = null; public Date LastSavedDateTimeNotEqualTo = null; public ArrayList LastSavedDateTimeBetween = null; public ArrayList LastSavedDateTimeIn = null; public String Contents = null; public String ContentsStartsWith = null; public String ContentsEndsWith = null; public String ContentsContains = null; public String ContentsLike = null; public ArrayList ContentsBetween = null; public ArrayList ContentsIn = null; public String getRecID() { return RecID; } public DB_DebtorSystemFieldValuesQuery setRecID(String value) { this.RecID = value; return this; } public String getRecIDStartsWith() { return RecIDStartsWith; } public DB_DebtorSystemFieldValuesQuery setRecIDStartsWith(String value) { this.RecIDStartsWith = value; return this; } public String getRecIDEndsWith() { return RecIDEndsWith; } public DB_DebtorSystemFieldValuesQuery setRecIDEndsWith(String value) { this.RecIDEndsWith = value; return this; } public String getRecIDContains() { return RecIDContains; } public DB_DebtorSystemFieldValuesQuery setRecIDContains(String value) { this.RecIDContains = value; return this; } public String getRecIDLike() { return RecIDLike; } public DB_DebtorSystemFieldValuesQuery setRecIDLike(String value) { this.RecIDLike = value; return this; } public ArrayList getRecIDBetween() { return RecIDBetween; } public DB_DebtorSystemFieldValuesQuery setRecIDBetween(ArrayList value) { this.RecIDBetween = value; return this; } public ArrayList getRecIDIn() { return RecIDIn; } public DB_DebtorSystemFieldValuesQuery setRecIDIn(ArrayList value) { this.RecIDIn = value; return this; } public String getDbDebtorSystemTemplateFieldsRecID() { return DB_DebtorSystemTemplateFields_RecID; } public DB_DebtorSystemFieldValuesQuery setDbDebtorSystemTemplateFieldsRecID(String value) { this.DB_DebtorSystemTemplateFields_RecID = value; return this; } public String getDbDebtorSystemTemplateFieldsRecIDStartsWith() { return DB_DebtorSystemTemplateFields_RecIDStartsWith; } public DB_DebtorSystemFieldValuesQuery setDbDebtorSystemTemplateFieldsRecIDStartsWith(String value) { this.DB_DebtorSystemTemplateFields_RecIDStartsWith = value; return this; } public String getDbDebtorSystemTemplateFieldsRecIDEndsWith() { return DB_DebtorSystemTemplateFields_RecIDEndsWith; } public DB_DebtorSystemFieldValuesQuery setDbDebtorSystemTemplateFieldsRecIDEndsWith(String value) { this.DB_DebtorSystemTemplateFields_RecIDEndsWith = value; return this; } public String getDbDebtorSystemTemplateFieldsRecIDContains() { return DB_DebtorSystemTemplateFields_RecIDContains; } public DB_DebtorSystemFieldValuesQuery setDbDebtorSystemTemplateFieldsRecIDContains(String value) { this.DB_DebtorSystemTemplateFields_RecIDContains = value; return this; } public String getDbDebtorSystemTemplateFieldsRecIDLike() { return DB_DebtorSystemTemplateFields_RecIDLike; } public DB_DebtorSystemFieldValuesQuery setDbDebtorSystemTemplateFieldsRecIDLike(String value) { this.DB_DebtorSystemTemplateFields_RecIDLike = value; return this; } public ArrayList getDbDebtorSystemTemplateFieldsRecIDBetween() { return DB_DebtorSystemTemplateFields_RecIDBetween; } public DB_DebtorSystemFieldValuesQuery setDbDebtorSystemTemplateFieldsRecIDBetween(ArrayList value) { this.DB_DebtorSystemTemplateFields_RecIDBetween = value; return this; } public ArrayList getDbDebtorSystemTemplateFieldsRecIDIn() { return DB_DebtorSystemTemplateFields_RecIDIn; } public DB_DebtorSystemFieldValuesQuery setDbDebtorSystemTemplateFieldsRecIDIn(ArrayList value) { this.DB_DebtorSystemTemplateFields_RecIDIn = value; return this; } public String getDbDebtorSystemsRecID() { return DB_DebtorSystems_RecID; } public DB_DebtorSystemFieldValuesQuery setDbDebtorSystemsRecID(String value) { this.DB_DebtorSystems_RecID = value; return this; } public String getDbDebtorSystemsRecIDStartsWith() { return DB_DebtorSystems_RecIDStartsWith; } public DB_DebtorSystemFieldValuesQuery setDbDebtorSystemsRecIDStartsWith(String value) { this.DB_DebtorSystems_RecIDStartsWith = value; return this; } public String getDbDebtorSystemsRecIDEndsWith() { return DB_DebtorSystems_RecIDEndsWith; } public DB_DebtorSystemFieldValuesQuery setDbDebtorSystemsRecIDEndsWith(String value) { this.DB_DebtorSystems_RecIDEndsWith = value; return this; } public String getDbDebtorSystemsRecIDContains() { return DB_DebtorSystems_RecIDContains; } public DB_DebtorSystemFieldValuesQuery setDbDebtorSystemsRecIDContains(String value) { this.DB_DebtorSystems_RecIDContains = value; return this; } public String getDbDebtorSystemsRecIDLike() { return DB_DebtorSystems_RecIDLike; } public DB_DebtorSystemFieldValuesQuery setDbDebtorSystemsRecIDLike(String value) { this.DB_DebtorSystems_RecIDLike = value; return this; } public ArrayList getDbDebtorSystemsRecIDBetween() { return DB_DebtorSystems_RecIDBetween; } public DB_DebtorSystemFieldValuesQuery setDbDebtorSystemsRecIDBetween(ArrayList value) { this.DB_DebtorSystems_RecIDBetween = value; return this; } public ArrayList getDbDebtorSystemsRecIDIn() { return DB_DebtorSystems_RecIDIn; } public DB_DebtorSystemFieldValuesQuery setDbDebtorSystemsRecIDIn(ArrayList value) { this.DB_DebtorSystems_RecIDIn = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public DB_DebtorSystemFieldValuesQuery setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getLastSavedDateTimeGreaterThanOrEqualTo() { return LastSavedDateTimeGreaterThanOrEqualTo; } public DB_DebtorSystemFieldValuesQuery setLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.LastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeGreaterThan() { return LastSavedDateTimeGreaterThan; } public DB_DebtorSystemFieldValuesQuery setLastSavedDateTimeGreaterThan(Date value) { this.LastSavedDateTimeGreaterThan = value; return this; } public Date getLastSavedDateTimeLessThan() { return LastSavedDateTimeLessThan; } public DB_DebtorSystemFieldValuesQuery setLastSavedDateTimeLessThan(Date value) { this.LastSavedDateTimeLessThan = value; return this; } public Date getLastSavedDateTimeLessThanOrEqualTo() { return LastSavedDateTimeLessThanOrEqualTo; } public DB_DebtorSystemFieldValuesQuery setLastSavedDateTimeLessThanOrEqualTo(Date value) { this.LastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeNotEqualTo() { return LastSavedDateTimeNotEqualTo; } public DB_DebtorSystemFieldValuesQuery setLastSavedDateTimeNotEqualTo(Date value) { this.LastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getLastSavedDateTimeBetween() { return LastSavedDateTimeBetween; } public DB_DebtorSystemFieldValuesQuery setLastSavedDateTimeBetween(ArrayList value) { this.LastSavedDateTimeBetween = value; return this; } public ArrayList getLastSavedDateTimeIn() { return LastSavedDateTimeIn; } public DB_DebtorSystemFieldValuesQuery setLastSavedDateTimeIn(ArrayList value) { this.LastSavedDateTimeIn = value; return this; } public String getContents() { return Contents; } public DB_DebtorSystemFieldValuesQuery setContents(String value) { this.Contents = value; return this; } public String getContentsStartsWith() { return ContentsStartsWith; } public DB_DebtorSystemFieldValuesQuery setContentsStartsWith(String value) { this.ContentsStartsWith = value; return this; } public String getContentsEndsWith() { return ContentsEndsWith; } public DB_DebtorSystemFieldValuesQuery setContentsEndsWith(String value) { this.ContentsEndsWith = value; return this; } public String getContentsContains() { return ContentsContains; } public DB_DebtorSystemFieldValuesQuery setContentsContains(String value) { this.ContentsContains = value; return this; } public String getContentsLike() { return ContentsLike; } public DB_DebtorSystemFieldValuesQuery setContentsLike(String value) { this.ContentsLike = value; return this; } public ArrayList getContentsBetween() { return ContentsBetween; } public DB_DebtorSystemFieldValuesQuery setContentsBetween(ArrayList value) { this.ContentsBetween = value; return this; } public ArrayList getContentsIn() { return ContentsIn; } public DB_DebtorSystemFieldValuesQuery setContentsIn(ArrayList value) { this.ContentsIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class DB_DebtorSystemsQuery extends QueryDb implements IReturn> { public String RecID = null; public String RecIDStartsWith = null; public String RecIDEndsWith = null; public String RecIDContains = null; public String RecIDLike = null; public ArrayList RecIDBetween = null; public ArrayList RecIDIn = null; public String DB_DebtorSystemTemplates_RecID = null; public String DB_DebtorSystemTemplates_RecIDStartsWith = null; public String DB_DebtorSystemTemplates_RecIDEndsWith = null; public String DB_DebtorSystemTemplates_RecIDContains = null; public String DB_DebtorSystemTemplates_RecIDLike = null; public ArrayList DB_DebtorSystemTemplates_RecIDBetween = null; public ArrayList DB_DebtorSystemTemplates_RecIDIn = null; public String DebtorID = null; public String DebtorIDStartsWith = null; public String DebtorIDEndsWith = null; public String DebtorIDContains = null; public String DebtorIDLike = null; public ArrayList DebtorIDBetween = null; public ArrayList DebtorIDIn = null; public Date LastSavedDateTime = null; public Date LastSavedDateTimeGreaterThanOrEqualTo = null; public Date LastSavedDateTimeGreaterThan = null; public Date LastSavedDateTimeLessThan = null; public Date LastSavedDateTimeLessThanOrEqualTo = null; public Date LastSavedDateTimeNotEqualTo = null; public ArrayList LastSavedDateTimeBetween = null; public ArrayList LastSavedDateTimeIn = null; public String Description = null; public String DescriptionStartsWith = null; public String DescriptionEndsWith = null; public String DescriptionContains = null; public String DescriptionLike = null; public ArrayList DescriptionBetween = null; public ArrayList DescriptionIn = null; public ArrayList RowHash = null; public String getRecID() { return RecID; } public DB_DebtorSystemsQuery setRecID(String value) { this.RecID = value; return this; } public String getRecIDStartsWith() { return RecIDStartsWith; } public DB_DebtorSystemsQuery setRecIDStartsWith(String value) { this.RecIDStartsWith = value; return this; } public String getRecIDEndsWith() { return RecIDEndsWith; } public DB_DebtorSystemsQuery setRecIDEndsWith(String value) { this.RecIDEndsWith = value; return this; } public String getRecIDContains() { return RecIDContains; } public DB_DebtorSystemsQuery setRecIDContains(String value) { this.RecIDContains = value; return this; } public String getRecIDLike() { return RecIDLike; } public DB_DebtorSystemsQuery setRecIDLike(String value) { this.RecIDLike = value; return this; } public ArrayList getRecIDBetween() { return RecIDBetween; } public DB_DebtorSystemsQuery setRecIDBetween(ArrayList value) { this.RecIDBetween = value; return this; } public ArrayList getRecIDIn() { return RecIDIn; } public DB_DebtorSystemsQuery setRecIDIn(ArrayList value) { this.RecIDIn = value; return this; } public String getDbDebtorSystemTemplatesRecID() { return DB_DebtorSystemTemplates_RecID; } public DB_DebtorSystemsQuery setDbDebtorSystemTemplatesRecID(String value) { this.DB_DebtorSystemTemplates_RecID = value; return this; } public String getDbDebtorSystemTemplatesRecIDStartsWith() { return DB_DebtorSystemTemplates_RecIDStartsWith; } public DB_DebtorSystemsQuery setDbDebtorSystemTemplatesRecIDStartsWith(String value) { this.DB_DebtorSystemTemplates_RecIDStartsWith = value; return this; } public String getDbDebtorSystemTemplatesRecIDEndsWith() { return DB_DebtorSystemTemplates_RecIDEndsWith; } public DB_DebtorSystemsQuery setDbDebtorSystemTemplatesRecIDEndsWith(String value) { this.DB_DebtorSystemTemplates_RecIDEndsWith = value; return this; } public String getDbDebtorSystemTemplatesRecIDContains() { return DB_DebtorSystemTemplates_RecIDContains; } public DB_DebtorSystemsQuery setDbDebtorSystemTemplatesRecIDContains(String value) { this.DB_DebtorSystemTemplates_RecIDContains = value; return this; } public String getDbDebtorSystemTemplatesRecIDLike() { return DB_DebtorSystemTemplates_RecIDLike; } public DB_DebtorSystemsQuery setDbDebtorSystemTemplatesRecIDLike(String value) { this.DB_DebtorSystemTemplates_RecIDLike = value; return this; } public ArrayList getDbDebtorSystemTemplatesRecIDBetween() { return DB_DebtorSystemTemplates_RecIDBetween; } public DB_DebtorSystemsQuery setDbDebtorSystemTemplatesRecIDBetween(ArrayList value) { this.DB_DebtorSystemTemplates_RecIDBetween = value; return this; } public ArrayList getDbDebtorSystemTemplatesRecIDIn() { return DB_DebtorSystemTemplates_RecIDIn; } public DB_DebtorSystemsQuery setDbDebtorSystemTemplatesRecIDIn(ArrayList value) { this.DB_DebtorSystemTemplates_RecIDIn = value; return this; } public String getDebtorID() { return DebtorID; } public DB_DebtorSystemsQuery setDebtorID(String value) { this.DebtorID = value; return this; } public String getDebtorIDStartsWith() { return DebtorIDStartsWith; } public DB_DebtorSystemsQuery setDebtorIDStartsWith(String value) { this.DebtorIDStartsWith = value; return this; } public String getDebtorIDEndsWith() { return DebtorIDEndsWith; } public DB_DebtorSystemsQuery setDebtorIDEndsWith(String value) { this.DebtorIDEndsWith = value; return this; } public String getDebtorIDContains() { return DebtorIDContains; } public DB_DebtorSystemsQuery setDebtorIDContains(String value) { this.DebtorIDContains = value; return this; } public String getDebtorIDLike() { return DebtorIDLike; } public DB_DebtorSystemsQuery setDebtorIDLike(String value) { this.DebtorIDLike = value; return this; } public ArrayList getDebtorIDBetween() { return DebtorIDBetween; } public DB_DebtorSystemsQuery setDebtorIDBetween(ArrayList value) { this.DebtorIDBetween = value; return this; } public ArrayList getDebtorIDIn() { return DebtorIDIn; } public DB_DebtorSystemsQuery setDebtorIDIn(ArrayList value) { this.DebtorIDIn = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public DB_DebtorSystemsQuery setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getLastSavedDateTimeGreaterThanOrEqualTo() { return LastSavedDateTimeGreaterThanOrEqualTo; } public DB_DebtorSystemsQuery setLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.LastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeGreaterThan() { return LastSavedDateTimeGreaterThan; } public DB_DebtorSystemsQuery setLastSavedDateTimeGreaterThan(Date value) { this.LastSavedDateTimeGreaterThan = value; return this; } public Date getLastSavedDateTimeLessThan() { return LastSavedDateTimeLessThan; } public DB_DebtorSystemsQuery setLastSavedDateTimeLessThan(Date value) { this.LastSavedDateTimeLessThan = value; return this; } public Date getLastSavedDateTimeLessThanOrEqualTo() { return LastSavedDateTimeLessThanOrEqualTo; } public DB_DebtorSystemsQuery setLastSavedDateTimeLessThanOrEqualTo(Date value) { this.LastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeNotEqualTo() { return LastSavedDateTimeNotEqualTo; } public DB_DebtorSystemsQuery setLastSavedDateTimeNotEqualTo(Date value) { this.LastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getLastSavedDateTimeBetween() { return LastSavedDateTimeBetween; } public DB_DebtorSystemsQuery setLastSavedDateTimeBetween(ArrayList value) { this.LastSavedDateTimeBetween = value; return this; } public ArrayList getLastSavedDateTimeIn() { return LastSavedDateTimeIn; } public DB_DebtorSystemsQuery setLastSavedDateTimeIn(ArrayList value) { this.LastSavedDateTimeIn = value; return this; } public String getDescription() { return Description; } public DB_DebtorSystemsQuery setDescription(String value) { this.Description = value; return this; } public String getDescriptionStartsWith() { return DescriptionStartsWith; } public DB_DebtorSystemsQuery setDescriptionStartsWith(String value) { this.DescriptionStartsWith = value; return this; } public String getDescriptionEndsWith() { return DescriptionEndsWith; } public DB_DebtorSystemsQuery setDescriptionEndsWith(String value) { this.DescriptionEndsWith = value; return this; } public String getDescriptionContains() { return DescriptionContains; } public DB_DebtorSystemsQuery setDescriptionContains(String value) { this.DescriptionContains = value; return this; } public String getDescriptionLike() { return DescriptionLike; } public DB_DebtorSystemsQuery setDescriptionLike(String value) { this.DescriptionLike = value; return this; } public ArrayList getDescriptionBetween() { return DescriptionBetween; } public DB_DebtorSystemsQuery setDescriptionBetween(ArrayList value) { this.DescriptionBetween = value; return this; } public ArrayList getDescriptionIn() { return DescriptionIn; } public DB_DebtorSystemsQuery setDescriptionIn(ArrayList value) { this.DescriptionIn = value; return this; } public ArrayList getRowHash() { return RowHash; } public DB_DebtorSystemsQuery setRowHash(ArrayList value) { this.RowHash = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class DB_DebtorSystemTemplateDefaultReferenceQuery extends QueryDb implements IReturn> { public UUID RecID = null; public ArrayList RecIDIn = null; public String AssemblyFullName = null; public String AssemblyFullNameStartsWith = null; public String AssemblyFullNameEndsWith = null; public String AssemblyFullNameContains = null; public String AssemblyFullNameLike = null; public ArrayList AssemblyFullNameBetween = null; public ArrayList AssemblyFullNameIn = null; public Integer ItemNo = null; public Integer ItemNoGreaterThanOrEqualTo = null; public Integer ItemNoGreaterThan = null; public Integer ItemNoLessThan = null; public Integer ItemNoLessThanOrEqualTo = null; public Integer ItemNoNotEqualTo = null; public ArrayList ItemNoBetween = null; public ArrayList ItemNoIn = null; public ArrayList RowHash = null; public UUID getRecID() { return RecID; } public DB_DebtorSystemTemplateDefaultReferenceQuery setRecID(UUID value) { this.RecID = value; return this; } public ArrayList getRecIDIn() { return RecIDIn; } public DB_DebtorSystemTemplateDefaultReferenceQuery setRecIDIn(ArrayList value) { this.RecIDIn = value; return this; } public String getAssemblyFullName() { return AssemblyFullName; } public DB_DebtorSystemTemplateDefaultReferenceQuery setAssemblyFullName(String value) { this.AssemblyFullName = value; return this; } public String getAssemblyFullNameStartsWith() { return AssemblyFullNameStartsWith; } public DB_DebtorSystemTemplateDefaultReferenceQuery setAssemblyFullNameStartsWith(String value) { this.AssemblyFullNameStartsWith = value; return this; } public String getAssemblyFullNameEndsWith() { return AssemblyFullNameEndsWith; } public DB_DebtorSystemTemplateDefaultReferenceQuery setAssemblyFullNameEndsWith(String value) { this.AssemblyFullNameEndsWith = value; return this; } public String getAssemblyFullNameContains() { return AssemblyFullNameContains; } public DB_DebtorSystemTemplateDefaultReferenceQuery setAssemblyFullNameContains(String value) { this.AssemblyFullNameContains = value; return this; } public String getAssemblyFullNameLike() { return AssemblyFullNameLike; } public DB_DebtorSystemTemplateDefaultReferenceQuery setAssemblyFullNameLike(String value) { this.AssemblyFullNameLike = value; return this; } public ArrayList getAssemblyFullNameBetween() { return AssemblyFullNameBetween; } public DB_DebtorSystemTemplateDefaultReferenceQuery setAssemblyFullNameBetween(ArrayList value) { this.AssemblyFullNameBetween = value; return this; } public ArrayList getAssemblyFullNameIn() { return AssemblyFullNameIn; } public DB_DebtorSystemTemplateDefaultReferenceQuery setAssemblyFullNameIn(ArrayList value) { this.AssemblyFullNameIn = value; return this; } public Integer getItemNo() { return ItemNo; } public DB_DebtorSystemTemplateDefaultReferenceQuery setItemNo(Integer value) { this.ItemNo = value; return this; } public Integer getItemNoGreaterThanOrEqualTo() { return ItemNoGreaterThanOrEqualTo; } public DB_DebtorSystemTemplateDefaultReferenceQuery setItemNoGreaterThanOrEqualTo(Integer value) { this.ItemNoGreaterThanOrEqualTo = value; return this; } public Integer getItemNoGreaterThan() { return ItemNoGreaterThan; } public DB_DebtorSystemTemplateDefaultReferenceQuery setItemNoGreaterThan(Integer value) { this.ItemNoGreaterThan = value; return this; } public Integer getItemNoLessThan() { return ItemNoLessThan; } public DB_DebtorSystemTemplateDefaultReferenceQuery setItemNoLessThan(Integer value) { this.ItemNoLessThan = value; return this; } public Integer getItemNoLessThanOrEqualTo() { return ItemNoLessThanOrEqualTo; } public DB_DebtorSystemTemplateDefaultReferenceQuery setItemNoLessThanOrEqualTo(Integer value) { this.ItemNoLessThanOrEqualTo = value; return this; } public Integer getItemNoNotEqualTo() { return ItemNoNotEqualTo; } public DB_DebtorSystemTemplateDefaultReferenceQuery setItemNoNotEqualTo(Integer value) { this.ItemNoNotEqualTo = value; return this; } public ArrayList getItemNoBetween() { return ItemNoBetween; } public DB_DebtorSystemTemplateDefaultReferenceQuery setItemNoBetween(ArrayList value) { this.ItemNoBetween = value; return this; } public ArrayList getItemNoIn() { return ItemNoIn; } public DB_DebtorSystemTemplateDefaultReferenceQuery setItemNoIn(ArrayList value) { this.ItemNoIn = value; return this; } public ArrayList getRowHash() { return RowHash; } public DB_DebtorSystemTemplateDefaultReferenceQuery setRowHash(ArrayList value) { this.RowHash = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class DB_DebtorSystemTemplateFieldsQuery extends QueryDb implements IReturn> { public String RecID = null; public String RecIDStartsWith = null; public String RecIDEndsWith = null; public String RecIDContains = null; public String RecIDLike = null; public ArrayList RecIDBetween = null; public ArrayList RecIDIn = null; public String DB_DebtorSystemTemplates_RecID = null; public String DB_DebtorSystemTemplates_RecIDStartsWith = null; public String DB_DebtorSystemTemplates_RecIDEndsWith = null; public String DB_DebtorSystemTemplates_RecIDContains = null; public String DB_DebtorSystemTemplates_RecIDLike = null; public ArrayList DB_DebtorSystemTemplates_RecIDBetween = null; public ArrayList DB_DebtorSystemTemplates_RecIDIn = null; public Date LastSavedDateTime = null; public Date LastSavedDateTimeGreaterThanOrEqualTo = null; public Date LastSavedDateTimeGreaterThan = null; public Date LastSavedDateTimeLessThan = null; public Date LastSavedDateTimeLessThanOrEqualTo = null; public Date LastSavedDateTimeNotEqualTo = null; public ArrayList LastSavedDateTimeBetween = null; public ArrayList LastSavedDateTimeIn = null; public String Name = null; public String NameStartsWith = null; public String NameEndsWith = null; public String NameContains = null; public String NameLike = null; public ArrayList NameBetween = null; public ArrayList NameIn = null; public Short FieldType = null; public Short FieldTypeGreaterThanOrEqualTo = null; public Short FieldTypeGreaterThan = null; public Short FieldTypeLessThan = null; public Short FieldTypeLessThanOrEqualTo = null; public Short FieldTypeNotEqualTo = null; public ArrayList FieldTypeBetween = null; public ArrayList FieldTypeIn = null; public String ComboText = null; public String ComboTextStartsWith = null; public String ComboTextEndsWith = null; public String ComboTextContains = null; public String ComboTextLike = null; public ArrayList ComboTextBetween = null; public ArrayList ComboTextIn = null; public String DefaultValue = null; public String DefaultValueStartsWith = null; public String DefaultValueEndsWith = null; public String DefaultValueContains = null; public String DefaultValueLike = null; public ArrayList DefaultValueBetween = null; public ArrayList DefaultValueIn = null; public Integer ItemNo = null; public Integer ItemNoGreaterThanOrEqualTo = null; public Integer ItemNoGreaterThan = null; public Integer ItemNoLessThan = null; public Integer ItemNoLessThanOrEqualTo = null; public Integer ItemNoNotEqualTo = null; public ArrayList ItemNoBetween = null; public ArrayList ItemNoIn = null; public ArrayList RowHash = null; public String getRecID() { return RecID; } public DB_DebtorSystemTemplateFieldsQuery setRecID(String value) { this.RecID = value; return this; } public String getRecIDStartsWith() { return RecIDStartsWith; } public DB_DebtorSystemTemplateFieldsQuery setRecIDStartsWith(String value) { this.RecIDStartsWith = value; return this; } public String getRecIDEndsWith() { return RecIDEndsWith; } public DB_DebtorSystemTemplateFieldsQuery setRecIDEndsWith(String value) { this.RecIDEndsWith = value; return this; } public String getRecIDContains() { return RecIDContains; } public DB_DebtorSystemTemplateFieldsQuery setRecIDContains(String value) { this.RecIDContains = value; return this; } public String getRecIDLike() { return RecIDLike; } public DB_DebtorSystemTemplateFieldsQuery setRecIDLike(String value) { this.RecIDLike = value; return this; } public ArrayList getRecIDBetween() { return RecIDBetween; } public DB_DebtorSystemTemplateFieldsQuery setRecIDBetween(ArrayList value) { this.RecIDBetween = value; return this; } public ArrayList getRecIDIn() { return RecIDIn; } public DB_DebtorSystemTemplateFieldsQuery setRecIDIn(ArrayList value) { this.RecIDIn = value; return this; } public String getDbDebtorSystemTemplatesRecID() { return DB_DebtorSystemTemplates_RecID; } public DB_DebtorSystemTemplateFieldsQuery setDbDebtorSystemTemplatesRecID(String value) { this.DB_DebtorSystemTemplates_RecID = value; return this; } public String getDbDebtorSystemTemplatesRecIDStartsWith() { return DB_DebtorSystemTemplates_RecIDStartsWith; } public DB_DebtorSystemTemplateFieldsQuery setDbDebtorSystemTemplatesRecIDStartsWith(String value) { this.DB_DebtorSystemTemplates_RecIDStartsWith = value; return this; } public String getDbDebtorSystemTemplatesRecIDEndsWith() { return DB_DebtorSystemTemplates_RecIDEndsWith; } public DB_DebtorSystemTemplateFieldsQuery setDbDebtorSystemTemplatesRecIDEndsWith(String value) { this.DB_DebtorSystemTemplates_RecIDEndsWith = value; return this; } public String getDbDebtorSystemTemplatesRecIDContains() { return DB_DebtorSystemTemplates_RecIDContains; } public DB_DebtorSystemTemplateFieldsQuery setDbDebtorSystemTemplatesRecIDContains(String value) { this.DB_DebtorSystemTemplates_RecIDContains = value; return this; } public String getDbDebtorSystemTemplatesRecIDLike() { return DB_DebtorSystemTemplates_RecIDLike; } public DB_DebtorSystemTemplateFieldsQuery setDbDebtorSystemTemplatesRecIDLike(String value) { this.DB_DebtorSystemTemplates_RecIDLike = value; return this; } public ArrayList getDbDebtorSystemTemplatesRecIDBetween() { return DB_DebtorSystemTemplates_RecIDBetween; } public DB_DebtorSystemTemplateFieldsQuery setDbDebtorSystemTemplatesRecIDBetween(ArrayList value) { this.DB_DebtorSystemTemplates_RecIDBetween = value; return this; } public ArrayList getDbDebtorSystemTemplatesRecIDIn() { return DB_DebtorSystemTemplates_RecIDIn; } public DB_DebtorSystemTemplateFieldsQuery setDbDebtorSystemTemplatesRecIDIn(ArrayList value) { this.DB_DebtorSystemTemplates_RecIDIn = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public DB_DebtorSystemTemplateFieldsQuery setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getLastSavedDateTimeGreaterThanOrEqualTo() { return LastSavedDateTimeGreaterThanOrEqualTo; } public DB_DebtorSystemTemplateFieldsQuery setLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.LastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeGreaterThan() { return LastSavedDateTimeGreaterThan; } public DB_DebtorSystemTemplateFieldsQuery setLastSavedDateTimeGreaterThan(Date value) { this.LastSavedDateTimeGreaterThan = value; return this; } public Date getLastSavedDateTimeLessThan() { return LastSavedDateTimeLessThan; } public DB_DebtorSystemTemplateFieldsQuery setLastSavedDateTimeLessThan(Date value) { this.LastSavedDateTimeLessThan = value; return this; } public Date getLastSavedDateTimeLessThanOrEqualTo() { return LastSavedDateTimeLessThanOrEqualTo; } public DB_DebtorSystemTemplateFieldsQuery setLastSavedDateTimeLessThanOrEqualTo(Date value) { this.LastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeNotEqualTo() { return LastSavedDateTimeNotEqualTo; } public DB_DebtorSystemTemplateFieldsQuery setLastSavedDateTimeNotEqualTo(Date value) { this.LastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getLastSavedDateTimeBetween() { return LastSavedDateTimeBetween; } public DB_DebtorSystemTemplateFieldsQuery setLastSavedDateTimeBetween(ArrayList value) { this.LastSavedDateTimeBetween = value; return this; } public ArrayList getLastSavedDateTimeIn() { return LastSavedDateTimeIn; } public DB_DebtorSystemTemplateFieldsQuery setLastSavedDateTimeIn(ArrayList value) { this.LastSavedDateTimeIn = value; return this; } public String getName() { return Name; } public DB_DebtorSystemTemplateFieldsQuery setName(String value) { this.Name = value; return this; } public String getNameStartsWith() { return NameStartsWith; } public DB_DebtorSystemTemplateFieldsQuery setNameStartsWith(String value) { this.NameStartsWith = value; return this; } public String getNameEndsWith() { return NameEndsWith; } public DB_DebtorSystemTemplateFieldsQuery setNameEndsWith(String value) { this.NameEndsWith = value; return this; } public String getNameContains() { return NameContains; } public DB_DebtorSystemTemplateFieldsQuery setNameContains(String value) { this.NameContains = value; return this; } public String getNameLike() { return NameLike; } public DB_DebtorSystemTemplateFieldsQuery setNameLike(String value) { this.NameLike = value; return this; } public ArrayList getNameBetween() { return NameBetween; } public DB_DebtorSystemTemplateFieldsQuery setNameBetween(ArrayList value) { this.NameBetween = value; return this; } public ArrayList getNameIn() { return NameIn; } public DB_DebtorSystemTemplateFieldsQuery setNameIn(ArrayList value) { this.NameIn = value; return this; } public Short getFieldType() { return FieldType; } public DB_DebtorSystemTemplateFieldsQuery setFieldType(Short value) { this.FieldType = value; return this; } public Short getFieldTypeGreaterThanOrEqualTo() { return FieldTypeGreaterThanOrEqualTo; } public DB_DebtorSystemTemplateFieldsQuery setFieldTypeGreaterThanOrEqualTo(Short value) { this.FieldTypeGreaterThanOrEqualTo = value; return this; } public Short getFieldTypeGreaterThan() { return FieldTypeGreaterThan; } public DB_DebtorSystemTemplateFieldsQuery setFieldTypeGreaterThan(Short value) { this.FieldTypeGreaterThan = value; return this; } public Short getFieldTypeLessThan() { return FieldTypeLessThan; } public DB_DebtorSystemTemplateFieldsQuery setFieldTypeLessThan(Short value) { this.FieldTypeLessThan = value; return this; } public Short getFieldTypeLessThanOrEqualTo() { return FieldTypeLessThanOrEqualTo; } public DB_DebtorSystemTemplateFieldsQuery setFieldTypeLessThanOrEqualTo(Short value) { this.FieldTypeLessThanOrEqualTo = value; return this; } public Short getFieldTypeNotEqualTo() { return FieldTypeNotEqualTo; } public DB_DebtorSystemTemplateFieldsQuery setFieldTypeNotEqualTo(Short value) { this.FieldTypeNotEqualTo = value; return this; } public ArrayList getFieldTypeBetween() { return FieldTypeBetween; } public DB_DebtorSystemTemplateFieldsQuery setFieldTypeBetween(ArrayList value) { this.FieldTypeBetween = value; return this; } public ArrayList getFieldTypeIn() { return FieldTypeIn; } public DB_DebtorSystemTemplateFieldsQuery setFieldTypeIn(ArrayList value) { this.FieldTypeIn = value; return this; } public String getComboText() { return ComboText; } public DB_DebtorSystemTemplateFieldsQuery setComboText(String value) { this.ComboText = value; return this; } public String getComboTextStartsWith() { return ComboTextStartsWith; } public DB_DebtorSystemTemplateFieldsQuery setComboTextStartsWith(String value) { this.ComboTextStartsWith = value; return this; } public String getComboTextEndsWith() { return ComboTextEndsWith; } public DB_DebtorSystemTemplateFieldsQuery setComboTextEndsWith(String value) { this.ComboTextEndsWith = value; return this; } public String getComboTextContains() { return ComboTextContains; } public DB_DebtorSystemTemplateFieldsQuery setComboTextContains(String value) { this.ComboTextContains = value; return this; } public String getComboTextLike() { return ComboTextLike; } public DB_DebtorSystemTemplateFieldsQuery setComboTextLike(String value) { this.ComboTextLike = value; return this; } public ArrayList getComboTextBetween() { return ComboTextBetween; } public DB_DebtorSystemTemplateFieldsQuery setComboTextBetween(ArrayList value) { this.ComboTextBetween = value; return this; } public ArrayList getComboTextIn() { return ComboTextIn; } public DB_DebtorSystemTemplateFieldsQuery setComboTextIn(ArrayList value) { this.ComboTextIn = value; return this; } public String getDefaultValue() { return DefaultValue; } public DB_DebtorSystemTemplateFieldsQuery setDefaultValue(String value) { this.DefaultValue = value; return this; } public String getDefaultValueStartsWith() { return DefaultValueStartsWith; } public DB_DebtorSystemTemplateFieldsQuery setDefaultValueStartsWith(String value) { this.DefaultValueStartsWith = value; return this; } public String getDefaultValueEndsWith() { return DefaultValueEndsWith; } public DB_DebtorSystemTemplateFieldsQuery setDefaultValueEndsWith(String value) { this.DefaultValueEndsWith = value; return this; } public String getDefaultValueContains() { return DefaultValueContains; } public DB_DebtorSystemTemplateFieldsQuery setDefaultValueContains(String value) { this.DefaultValueContains = value; return this; } public String getDefaultValueLike() { return DefaultValueLike; } public DB_DebtorSystemTemplateFieldsQuery setDefaultValueLike(String value) { this.DefaultValueLike = value; return this; } public ArrayList getDefaultValueBetween() { return DefaultValueBetween; } public DB_DebtorSystemTemplateFieldsQuery setDefaultValueBetween(ArrayList value) { this.DefaultValueBetween = value; return this; } public ArrayList getDefaultValueIn() { return DefaultValueIn; } public DB_DebtorSystemTemplateFieldsQuery setDefaultValueIn(ArrayList value) { this.DefaultValueIn = value; return this; } public Integer getItemNo() { return ItemNo; } public DB_DebtorSystemTemplateFieldsQuery setItemNo(Integer value) { this.ItemNo = value; return this; } public Integer getItemNoGreaterThanOrEqualTo() { return ItemNoGreaterThanOrEqualTo; } public DB_DebtorSystemTemplateFieldsQuery setItemNoGreaterThanOrEqualTo(Integer value) { this.ItemNoGreaterThanOrEqualTo = value; return this; } public Integer getItemNoGreaterThan() { return ItemNoGreaterThan; } public DB_DebtorSystemTemplateFieldsQuery setItemNoGreaterThan(Integer value) { this.ItemNoGreaterThan = value; return this; } public Integer getItemNoLessThan() { return ItemNoLessThan; } public DB_DebtorSystemTemplateFieldsQuery setItemNoLessThan(Integer value) { this.ItemNoLessThan = value; return this; } public Integer getItemNoLessThanOrEqualTo() { return ItemNoLessThanOrEqualTo; } public DB_DebtorSystemTemplateFieldsQuery setItemNoLessThanOrEqualTo(Integer value) { this.ItemNoLessThanOrEqualTo = value; return this; } public Integer getItemNoNotEqualTo() { return ItemNoNotEqualTo; } public DB_DebtorSystemTemplateFieldsQuery setItemNoNotEqualTo(Integer value) { this.ItemNoNotEqualTo = value; return this; } public ArrayList getItemNoBetween() { return ItemNoBetween; } public DB_DebtorSystemTemplateFieldsQuery setItemNoBetween(ArrayList value) { this.ItemNoBetween = value; return this; } public ArrayList getItemNoIn() { return ItemNoIn; } public DB_DebtorSystemTemplateFieldsQuery setItemNoIn(ArrayList value) { this.ItemNoIn = value; return this; } public ArrayList getRowHash() { return RowHash; } public DB_DebtorSystemTemplateFieldsQuery setRowHash(ArrayList value) { this.RowHash = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class DB_DebtorSystemTemplateFieldsReferencesQuery extends QueryDb implements IReturn> { public UUID RecID = null; public ArrayList RecIDIn = null; public String DebtorSystemTemplateFieldID = null; public String DebtorSystemTemplateFieldIDStartsWith = null; public String DebtorSystemTemplateFieldIDEndsWith = null; public String DebtorSystemTemplateFieldIDContains = null; public String DebtorSystemTemplateFieldIDLike = null; public ArrayList DebtorSystemTemplateFieldIDBetween = null; public ArrayList DebtorSystemTemplateFieldIDIn = null; public String AssemblyFullName = null; public String AssemblyFullNameStartsWith = null; public String AssemblyFullNameEndsWith = null; public String AssemblyFullNameContains = null; public String AssemblyFullNameLike = null; public ArrayList AssemblyFullNameBetween = null; public ArrayList AssemblyFullNameIn = null; public String AssemblyName = null; public String AssemblyNameStartsWith = null; public String AssemblyNameEndsWith = null; public String AssemblyNameContains = null; public String AssemblyNameLike = null; public ArrayList AssemblyNameBetween = null; public ArrayList AssemblyNameIn = null; public Integer ItemNo = null; public Integer ItemNoGreaterThanOrEqualTo = null; public Integer ItemNoGreaterThan = null; public Integer ItemNoLessThan = null; public Integer ItemNoLessThanOrEqualTo = null; public Integer ItemNoNotEqualTo = null; public ArrayList ItemNoBetween = null; public ArrayList ItemNoIn = null; public ArrayList RowHash = null; public UUID getRecID() { return RecID; } public DB_DebtorSystemTemplateFieldsReferencesQuery setRecID(UUID value) { this.RecID = value; return this; } public ArrayList getRecIDIn() { return RecIDIn; } public DB_DebtorSystemTemplateFieldsReferencesQuery setRecIDIn(ArrayList value) { this.RecIDIn = value; return this; } public String getDebtorSystemTemplateFieldID() { return DebtorSystemTemplateFieldID; } public DB_DebtorSystemTemplateFieldsReferencesQuery setDebtorSystemTemplateFieldID(String value) { this.DebtorSystemTemplateFieldID = value; return this; } public String getDebtorSystemTemplateFieldIDStartsWith() { return DebtorSystemTemplateFieldIDStartsWith; } public DB_DebtorSystemTemplateFieldsReferencesQuery setDebtorSystemTemplateFieldIDStartsWith(String value) { this.DebtorSystemTemplateFieldIDStartsWith = value; return this; } public String getDebtorSystemTemplateFieldIDEndsWith() { return DebtorSystemTemplateFieldIDEndsWith; } public DB_DebtorSystemTemplateFieldsReferencesQuery setDebtorSystemTemplateFieldIDEndsWith(String value) { this.DebtorSystemTemplateFieldIDEndsWith = value; return this; } public String getDebtorSystemTemplateFieldIDContains() { return DebtorSystemTemplateFieldIDContains; } public DB_DebtorSystemTemplateFieldsReferencesQuery setDebtorSystemTemplateFieldIDContains(String value) { this.DebtorSystemTemplateFieldIDContains = value; return this; } public String getDebtorSystemTemplateFieldIDLike() { return DebtorSystemTemplateFieldIDLike; } public DB_DebtorSystemTemplateFieldsReferencesQuery setDebtorSystemTemplateFieldIDLike(String value) { this.DebtorSystemTemplateFieldIDLike = value; return this; } public ArrayList getDebtorSystemTemplateFieldIDBetween() { return DebtorSystemTemplateFieldIDBetween; } public DB_DebtorSystemTemplateFieldsReferencesQuery setDebtorSystemTemplateFieldIDBetween(ArrayList value) { this.DebtorSystemTemplateFieldIDBetween = value; return this; } public ArrayList getDebtorSystemTemplateFieldIDIn() { return DebtorSystemTemplateFieldIDIn; } public DB_DebtorSystemTemplateFieldsReferencesQuery setDebtorSystemTemplateFieldIDIn(ArrayList value) { this.DebtorSystemTemplateFieldIDIn = value; return this; } public String getAssemblyFullName() { return AssemblyFullName; } public DB_DebtorSystemTemplateFieldsReferencesQuery setAssemblyFullName(String value) { this.AssemblyFullName = value; return this; } public String getAssemblyFullNameStartsWith() { return AssemblyFullNameStartsWith; } public DB_DebtorSystemTemplateFieldsReferencesQuery setAssemblyFullNameStartsWith(String value) { this.AssemblyFullNameStartsWith = value; return this; } public String getAssemblyFullNameEndsWith() { return AssemblyFullNameEndsWith; } public DB_DebtorSystemTemplateFieldsReferencesQuery setAssemblyFullNameEndsWith(String value) { this.AssemblyFullNameEndsWith = value; return this; } public String getAssemblyFullNameContains() { return AssemblyFullNameContains; } public DB_DebtorSystemTemplateFieldsReferencesQuery setAssemblyFullNameContains(String value) { this.AssemblyFullNameContains = value; return this; } public String getAssemblyFullNameLike() { return AssemblyFullNameLike; } public DB_DebtorSystemTemplateFieldsReferencesQuery setAssemblyFullNameLike(String value) { this.AssemblyFullNameLike = value; return this; } public ArrayList getAssemblyFullNameBetween() { return AssemblyFullNameBetween; } public DB_DebtorSystemTemplateFieldsReferencesQuery setAssemblyFullNameBetween(ArrayList value) { this.AssemblyFullNameBetween = value; return this; } public ArrayList getAssemblyFullNameIn() { return AssemblyFullNameIn; } public DB_DebtorSystemTemplateFieldsReferencesQuery setAssemblyFullNameIn(ArrayList value) { this.AssemblyFullNameIn = value; return this; } public String getAssemblyName() { return AssemblyName; } public DB_DebtorSystemTemplateFieldsReferencesQuery setAssemblyName(String value) { this.AssemblyName = value; return this; } public String getAssemblyNameStartsWith() { return AssemblyNameStartsWith; } public DB_DebtorSystemTemplateFieldsReferencesQuery setAssemblyNameStartsWith(String value) { this.AssemblyNameStartsWith = value; return this; } public String getAssemblyNameEndsWith() { return AssemblyNameEndsWith; } public DB_DebtorSystemTemplateFieldsReferencesQuery setAssemblyNameEndsWith(String value) { this.AssemblyNameEndsWith = value; return this; } public String getAssemblyNameContains() { return AssemblyNameContains; } public DB_DebtorSystemTemplateFieldsReferencesQuery setAssemblyNameContains(String value) { this.AssemblyNameContains = value; return this; } public String getAssemblyNameLike() { return AssemblyNameLike; } public DB_DebtorSystemTemplateFieldsReferencesQuery setAssemblyNameLike(String value) { this.AssemblyNameLike = value; return this; } public ArrayList getAssemblyNameBetween() { return AssemblyNameBetween; } public DB_DebtorSystemTemplateFieldsReferencesQuery setAssemblyNameBetween(ArrayList value) { this.AssemblyNameBetween = value; return this; } public ArrayList getAssemblyNameIn() { return AssemblyNameIn; } public DB_DebtorSystemTemplateFieldsReferencesQuery setAssemblyNameIn(ArrayList value) { this.AssemblyNameIn = value; return this; } public Integer getItemNo() { return ItemNo; } public DB_DebtorSystemTemplateFieldsReferencesQuery setItemNo(Integer value) { this.ItemNo = value; return this; } public Integer getItemNoGreaterThanOrEqualTo() { return ItemNoGreaterThanOrEqualTo; } public DB_DebtorSystemTemplateFieldsReferencesQuery setItemNoGreaterThanOrEqualTo(Integer value) { this.ItemNoGreaterThanOrEqualTo = value; return this; } public Integer getItemNoGreaterThan() { return ItemNoGreaterThan; } public DB_DebtorSystemTemplateFieldsReferencesQuery setItemNoGreaterThan(Integer value) { this.ItemNoGreaterThan = value; return this; } public Integer getItemNoLessThan() { return ItemNoLessThan; } public DB_DebtorSystemTemplateFieldsReferencesQuery setItemNoLessThan(Integer value) { this.ItemNoLessThan = value; return this; } public Integer getItemNoLessThanOrEqualTo() { return ItemNoLessThanOrEqualTo; } public DB_DebtorSystemTemplateFieldsReferencesQuery setItemNoLessThanOrEqualTo(Integer value) { this.ItemNoLessThanOrEqualTo = value; return this; } public Integer getItemNoNotEqualTo() { return ItemNoNotEqualTo; } public DB_DebtorSystemTemplateFieldsReferencesQuery setItemNoNotEqualTo(Integer value) { this.ItemNoNotEqualTo = value; return this; } public ArrayList getItemNoBetween() { return ItemNoBetween; } public DB_DebtorSystemTemplateFieldsReferencesQuery setItemNoBetween(ArrayList value) { this.ItemNoBetween = value; return this; } public ArrayList getItemNoIn() { return ItemNoIn; } public DB_DebtorSystemTemplateFieldsReferencesQuery setItemNoIn(ArrayList value) { this.ItemNoIn = value; return this; } public ArrayList getRowHash() { return RowHash; } public DB_DebtorSystemTemplateFieldsReferencesQuery setRowHash(ArrayList value) { this.RowHash = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class DB_DebtorSystemTemplateReferenceQuery extends QueryDb implements IReturn> { public UUID RecID = null; public ArrayList RecIDIn = null; public String DB_DebtorSystemTemplates_RecID = null; public String DB_DebtorSystemTemplates_RecIDStartsWith = null; public String DB_DebtorSystemTemplates_RecIDEndsWith = null; public String DB_DebtorSystemTemplates_RecIDContains = null; public String DB_DebtorSystemTemplates_RecIDLike = null; public ArrayList DB_DebtorSystemTemplates_RecIDBetween = null; public ArrayList DB_DebtorSystemTemplates_RecIDIn = null; public String AssemblyFullName = null; public String AssemblyFullNameStartsWith = null; public String AssemblyFullNameEndsWith = null; public String AssemblyFullNameContains = null; public String AssemblyFullNameLike = null; public ArrayList AssemblyFullNameBetween = null; public ArrayList AssemblyFullNameIn = null; public String AssemblyName = null; public String AssemblyNameStartsWith = null; public String AssemblyNameEndsWith = null; public String AssemblyNameContains = null; public String AssemblyNameLike = null; public ArrayList AssemblyNameBetween = null; public ArrayList AssemblyNameIn = null; public Integer ItemNo = null; public Integer ItemNoGreaterThanOrEqualTo = null; public Integer ItemNoGreaterThan = null; public Integer ItemNoLessThan = null; public Integer ItemNoLessThanOrEqualTo = null; public Integer ItemNoNotEqualTo = null; public ArrayList ItemNoBetween = null; public ArrayList ItemNoIn = null; public ArrayList RowHash = null; public UUID getRecID() { return RecID; } public DB_DebtorSystemTemplateReferenceQuery setRecID(UUID value) { this.RecID = value; return this; } public ArrayList getRecIDIn() { return RecIDIn; } public DB_DebtorSystemTemplateReferenceQuery setRecIDIn(ArrayList value) { this.RecIDIn = value; return this; } public String getDbDebtorSystemTemplatesRecID() { return DB_DebtorSystemTemplates_RecID; } public DB_DebtorSystemTemplateReferenceQuery setDbDebtorSystemTemplatesRecID(String value) { this.DB_DebtorSystemTemplates_RecID = value; return this; } public String getDbDebtorSystemTemplatesRecIDStartsWith() { return DB_DebtorSystemTemplates_RecIDStartsWith; } public DB_DebtorSystemTemplateReferenceQuery setDbDebtorSystemTemplatesRecIDStartsWith(String value) { this.DB_DebtorSystemTemplates_RecIDStartsWith = value; return this; } public String getDbDebtorSystemTemplatesRecIDEndsWith() { return DB_DebtorSystemTemplates_RecIDEndsWith; } public DB_DebtorSystemTemplateReferenceQuery setDbDebtorSystemTemplatesRecIDEndsWith(String value) { this.DB_DebtorSystemTemplates_RecIDEndsWith = value; return this; } public String getDbDebtorSystemTemplatesRecIDContains() { return DB_DebtorSystemTemplates_RecIDContains; } public DB_DebtorSystemTemplateReferenceQuery setDbDebtorSystemTemplatesRecIDContains(String value) { this.DB_DebtorSystemTemplates_RecIDContains = value; return this; } public String getDbDebtorSystemTemplatesRecIDLike() { return DB_DebtorSystemTemplates_RecIDLike; } public DB_DebtorSystemTemplateReferenceQuery setDbDebtorSystemTemplatesRecIDLike(String value) { this.DB_DebtorSystemTemplates_RecIDLike = value; return this; } public ArrayList getDbDebtorSystemTemplatesRecIDBetween() { return DB_DebtorSystemTemplates_RecIDBetween; } public DB_DebtorSystemTemplateReferenceQuery setDbDebtorSystemTemplatesRecIDBetween(ArrayList value) { this.DB_DebtorSystemTemplates_RecIDBetween = value; return this; } public ArrayList getDbDebtorSystemTemplatesRecIDIn() { return DB_DebtorSystemTemplates_RecIDIn; } public DB_DebtorSystemTemplateReferenceQuery setDbDebtorSystemTemplatesRecIDIn(ArrayList value) { this.DB_DebtorSystemTemplates_RecIDIn = value; return this; } public String getAssemblyFullName() { return AssemblyFullName; } public DB_DebtorSystemTemplateReferenceQuery setAssemblyFullName(String value) { this.AssemblyFullName = value; return this; } public String getAssemblyFullNameStartsWith() { return AssemblyFullNameStartsWith; } public DB_DebtorSystemTemplateReferenceQuery setAssemblyFullNameStartsWith(String value) { this.AssemblyFullNameStartsWith = value; return this; } public String getAssemblyFullNameEndsWith() { return AssemblyFullNameEndsWith; } public DB_DebtorSystemTemplateReferenceQuery setAssemblyFullNameEndsWith(String value) { this.AssemblyFullNameEndsWith = value; return this; } public String getAssemblyFullNameContains() { return AssemblyFullNameContains; } public DB_DebtorSystemTemplateReferenceQuery setAssemblyFullNameContains(String value) { this.AssemblyFullNameContains = value; return this; } public String getAssemblyFullNameLike() { return AssemblyFullNameLike; } public DB_DebtorSystemTemplateReferenceQuery setAssemblyFullNameLike(String value) { this.AssemblyFullNameLike = value; return this; } public ArrayList getAssemblyFullNameBetween() { return AssemblyFullNameBetween; } public DB_DebtorSystemTemplateReferenceQuery setAssemblyFullNameBetween(ArrayList value) { this.AssemblyFullNameBetween = value; return this; } public ArrayList getAssemblyFullNameIn() { return AssemblyFullNameIn; } public DB_DebtorSystemTemplateReferenceQuery setAssemblyFullNameIn(ArrayList value) { this.AssemblyFullNameIn = value; return this; } public String getAssemblyName() { return AssemblyName; } public DB_DebtorSystemTemplateReferenceQuery setAssemblyName(String value) { this.AssemblyName = value; return this; } public String getAssemblyNameStartsWith() { return AssemblyNameStartsWith; } public DB_DebtorSystemTemplateReferenceQuery setAssemblyNameStartsWith(String value) { this.AssemblyNameStartsWith = value; return this; } public String getAssemblyNameEndsWith() { return AssemblyNameEndsWith; } public DB_DebtorSystemTemplateReferenceQuery setAssemblyNameEndsWith(String value) { this.AssemblyNameEndsWith = value; return this; } public String getAssemblyNameContains() { return AssemblyNameContains; } public DB_DebtorSystemTemplateReferenceQuery setAssemblyNameContains(String value) { this.AssemblyNameContains = value; return this; } public String getAssemblyNameLike() { return AssemblyNameLike; } public DB_DebtorSystemTemplateReferenceQuery setAssemblyNameLike(String value) { this.AssemblyNameLike = value; return this; } public ArrayList getAssemblyNameBetween() { return AssemblyNameBetween; } public DB_DebtorSystemTemplateReferenceQuery setAssemblyNameBetween(ArrayList value) { this.AssemblyNameBetween = value; return this; } public ArrayList getAssemblyNameIn() { return AssemblyNameIn; } public DB_DebtorSystemTemplateReferenceQuery setAssemblyNameIn(ArrayList value) { this.AssemblyNameIn = value; return this; } public Integer getItemNo() { return ItemNo; } public DB_DebtorSystemTemplateReferenceQuery setItemNo(Integer value) { this.ItemNo = value; return this; } public Integer getItemNoGreaterThanOrEqualTo() { return ItemNoGreaterThanOrEqualTo; } public DB_DebtorSystemTemplateReferenceQuery setItemNoGreaterThanOrEqualTo(Integer value) { this.ItemNoGreaterThanOrEqualTo = value; return this; } public Integer getItemNoGreaterThan() { return ItemNoGreaterThan; } public DB_DebtorSystemTemplateReferenceQuery setItemNoGreaterThan(Integer value) { this.ItemNoGreaterThan = value; return this; } public Integer getItemNoLessThan() { return ItemNoLessThan; } public DB_DebtorSystemTemplateReferenceQuery setItemNoLessThan(Integer value) { this.ItemNoLessThan = value; return this; } public Integer getItemNoLessThanOrEqualTo() { return ItemNoLessThanOrEqualTo; } public DB_DebtorSystemTemplateReferenceQuery setItemNoLessThanOrEqualTo(Integer value) { this.ItemNoLessThanOrEqualTo = value; return this; } public Integer getItemNoNotEqualTo() { return ItemNoNotEqualTo; } public DB_DebtorSystemTemplateReferenceQuery setItemNoNotEqualTo(Integer value) { this.ItemNoNotEqualTo = value; return this; } public ArrayList getItemNoBetween() { return ItemNoBetween; } public DB_DebtorSystemTemplateReferenceQuery setItemNoBetween(ArrayList value) { this.ItemNoBetween = value; return this; } public ArrayList getItemNoIn() { return ItemNoIn; } public DB_DebtorSystemTemplateReferenceQuery setItemNoIn(ArrayList value) { this.ItemNoIn = value; return this; } public ArrayList getRowHash() { return RowHash; } public DB_DebtorSystemTemplateReferenceQuery setRowHash(ArrayList value) { this.RowHash = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class DB_DebtorSystemTemplatesQuery extends QueryDb implements IReturn> { public String RecID = null; public String RecIDStartsWith = null; public String RecIDEndsWith = null; public String RecIDContains = null; public String RecIDLike = null; public ArrayList RecIDBetween = null; public ArrayList RecIDIn = null; public Date LastSavedDateTime = null; public Date LastSavedDateTimeGreaterThanOrEqualTo = null; public Date LastSavedDateTimeGreaterThan = null; public Date LastSavedDateTimeLessThan = null; public Date LastSavedDateTimeLessThanOrEqualTo = null; public Date LastSavedDateTimeNotEqualTo = null; public ArrayList LastSavedDateTimeBetween = null; public ArrayList LastSavedDateTimeIn = null; public Boolean Enabled = null; public String Name = null; public String NameStartsWith = null; public String NameEndsWith = null; public String NameContains = null; public String NameLike = null; public ArrayList NameBetween = null; public ArrayList NameIn = null; public String Code = null; public String CodeStartsWith = null; public String CodeEndsWith = null; public String CodeContains = null; public String CodeLike = null; public ArrayList CodeBetween = null; public ArrayList CodeIn = null; public ArrayList RowHash = null; public String getRecID() { return RecID; } public DB_DebtorSystemTemplatesQuery setRecID(String value) { this.RecID = value; return this; } public String getRecIDStartsWith() { return RecIDStartsWith; } public DB_DebtorSystemTemplatesQuery setRecIDStartsWith(String value) { this.RecIDStartsWith = value; return this; } public String getRecIDEndsWith() { return RecIDEndsWith; } public DB_DebtorSystemTemplatesQuery setRecIDEndsWith(String value) { this.RecIDEndsWith = value; return this; } public String getRecIDContains() { return RecIDContains; } public DB_DebtorSystemTemplatesQuery setRecIDContains(String value) { this.RecIDContains = value; return this; } public String getRecIDLike() { return RecIDLike; } public DB_DebtorSystemTemplatesQuery setRecIDLike(String value) { this.RecIDLike = value; return this; } public ArrayList getRecIDBetween() { return RecIDBetween; } public DB_DebtorSystemTemplatesQuery setRecIDBetween(ArrayList value) { this.RecIDBetween = value; return this; } public ArrayList getRecIDIn() { return RecIDIn; } public DB_DebtorSystemTemplatesQuery setRecIDIn(ArrayList value) { this.RecIDIn = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public DB_DebtorSystemTemplatesQuery setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getLastSavedDateTimeGreaterThanOrEqualTo() { return LastSavedDateTimeGreaterThanOrEqualTo; } public DB_DebtorSystemTemplatesQuery setLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.LastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeGreaterThan() { return LastSavedDateTimeGreaterThan; } public DB_DebtorSystemTemplatesQuery setLastSavedDateTimeGreaterThan(Date value) { this.LastSavedDateTimeGreaterThan = value; return this; } public Date getLastSavedDateTimeLessThan() { return LastSavedDateTimeLessThan; } public DB_DebtorSystemTemplatesQuery setLastSavedDateTimeLessThan(Date value) { this.LastSavedDateTimeLessThan = value; return this; } public Date getLastSavedDateTimeLessThanOrEqualTo() { return LastSavedDateTimeLessThanOrEqualTo; } public DB_DebtorSystemTemplatesQuery setLastSavedDateTimeLessThanOrEqualTo(Date value) { this.LastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeNotEqualTo() { return LastSavedDateTimeNotEqualTo; } public DB_DebtorSystemTemplatesQuery setLastSavedDateTimeNotEqualTo(Date value) { this.LastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getLastSavedDateTimeBetween() { return LastSavedDateTimeBetween; } public DB_DebtorSystemTemplatesQuery setLastSavedDateTimeBetween(ArrayList value) { this.LastSavedDateTimeBetween = value; return this; } public ArrayList getLastSavedDateTimeIn() { return LastSavedDateTimeIn; } public DB_DebtorSystemTemplatesQuery setLastSavedDateTimeIn(ArrayList value) { this.LastSavedDateTimeIn = value; return this; } public Boolean isEnabled() { return Enabled; } public DB_DebtorSystemTemplatesQuery setEnabled(Boolean value) { this.Enabled = value; return this; } public String getName() { return Name; } public DB_DebtorSystemTemplatesQuery setName(String value) { this.Name = value; return this; } public String getNameStartsWith() { return NameStartsWith; } public DB_DebtorSystemTemplatesQuery setNameStartsWith(String value) { this.NameStartsWith = value; return this; } public String getNameEndsWith() { return NameEndsWith; } public DB_DebtorSystemTemplatesQuery setNameEndsWith(String value) { this.NameEndsWith = value; return this; } public String getNameContains() { return NameContains; } public DB_DebtorSystemTemplatesQuery setNameContains(String value) { this.NameContains = value; return this; } public String getNameLike() { return NameLike; } public DB_DebtorSystemTemplatesQuery setNameLike(String value) { this.NameLike = value; return this; } public ArrayList getNameBetween() { return NameBetween; } public DB_DebtorSystemTemplatesQuery setNameBetween(ArrayList value) { this.NameBetween = value; return this; } public ArrayList getNameIn() { return NameIn; } public DB_DebtorSystemTemplatesQuery setNameIn(ArrayList value) { this.NameIn = value; return this; } public String getCode() { return Code; } public DB_DebtorSystemTemplatesQuery setCode(String value) { this.Code = value; return this; } public String getCodeStartsWith() { return CodeStartsWith; } public DB_DebtorSystemTemplatesQuery setCodeStartsWith(String value) { this.CodeStartsWith = value; return this; } public String getCodeEndsWith() { return CodeEndsWith; } public DB_DebtorSystemTemplatesQuery setCodeEndsWith(String value) { this.CodeEndsWith = value; return this; } public String getCodeContains() { return CodeContains; } public DB_DebtorSystemTemplatesQuery setCodeContains(String value) { this.CodeContains = value; return this; } public String getCodeLike() { return CodeLike; } public DB_DebtorSystemTemplatesQuery setCodeLike(String value) { this.CodeLike = value; return this; } public ArrayList getCodeBetween() { return CodeBetween; } public DB_DebtorSystemTemplatesQuery setCodeBetween(ArrayList value) { this.CodeBetween = value; return this; } public ArrayList getCodeIn() { return CodeIn; } public DB_DebtorSystemTemplatesQuery setCodeIn(ArrayList value) { this.CodeIn = value; return this; } public ArrayList getRowHash() { return RowHash; } public DB_DebtorSystemTemplatesQuery setRowHash(ArrayList value) { this.RowHash = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class DB_DeliveryAddressQuery extends QueryDb implements IReturn> { public String DeliveryID = null; public String DeliveryIDStartsWith = null; public String DeliveryIDEndsWith = null; public String DeliveryIDContains = null; public String DeliveryIDLike = null; public ArrayList DeliveryIDBetween = null; public ArrayList DeliveryIDIn = null; public String DebtorID = null; public String DebtorIDStartsWith = null; public String DebtorIDEndsWith = null; public String DebtorIDContains = null; public String DebtorIDLike = null; public ArrayList DebtorIDBetween = null; public ArrayList DebtorIDIn = null; public String Address1 = null; public String Address1StartsWith = null; public String Address1EndsWith = null; public String Address1Contains = null; public String Address1Like = null; public ArrayList Address1Between = null; public ArrayList Address1In = null; public String Address2 = null; public String Address2StartsWith = null; public String Address2EndsWith = null; public String Address2Contains = null; public String Address2Like = null; public ArrayList Address2Between = null; public ArrayList Address2In = null; public String Address3 = null; public String Address3StartsWith = null; public String Address3EndsWith = null; public String Address3Contains = null; public String Address3Like = null; public ArrayList Address3Between = null; public ArrayList Address3In = null; public String Address4 = null; public String Address4StartsWith = null; public String Address4EndsWith = null; public String Address4Contains = null; public String Address4Like = null; public ArrayList Address4Between = null; public ArrayList Address4In = null; public String PostCode = null; public String PostCodeStartsWith = null; public String PostCodeEndsWith = null; public String PostCodeContains = null; public String PostCodeLike = null; public ArrayList PostCodeBetween = null; public ArrayList PostCodeIn = null; public String Notes = null; public String NotesStartsWith = null; public String NotesEndsWith = null; public String NotesContains = null; public String NotesLike = null; public ArrayList NotesBetween = null; public ArrayList NotesIn = null; public String CourierDetails = null; public String CourierDetailsStartsWith = null; public String CourierDetailsEndsWith = null; public String CourierDetailsContains = null; public String CourierDetailsLike = null; public ArrayList CourierDetailsBetween = null; public ArrayList CourierDetailsIn = null; public Boolean DefaultItem = null; public Integer LineNum = null; public Integer LineNumGreaterThanOrEqualTo = null; public Integer LineNumGreaterThan = null; public Integer LineNumLessThan = null; public Integer LineNumLessThanOrEqualTo = null; public Integer LineNumNotEqualTo = null; public ArrayList LineNumBetween = null; public ArrayList LineNumIn = null; public String EDIStoreLocationCode = null; public String EDIStoreLocationCodeStartsWith = null; public String EDIStoreLocationCodeEndsWith = null; public String EDIStoreLocationCodeContains = null; public String EDIStoreLocationCodeLike = null; public ArrayList EDIStoreLocationCodeBetween = null; public ArrayList EDIStoreLocationCodeIn = null; public String DeliveryAddressCode = null; public String DeliveryAddressCodeStartsWith = null; public String DeliveryAddressCodeEndsWith = null; public String DeliveryAddressCodeContains = null; public String DeliveryAddressCodeLike = null; public ArrayList DeliveryAddressCodeBetween = null; public ArrayList DeliveryAddressCodeIn = null; public String DeliveryAddressName = null; public String DeliveryAddressNameStartsWith = null; public String DeliveryAddressNameEndsWith = null; public String DeliveryAddressNameContains = null; public String DeliveryAddressNameLike = null; public ArrayList DeliveryAddressNameBetween = null; public ArrayList DeliveryAddressNameIn = null; public String Country = null; public String CountryStartsWith = null; public String CountryEndsWith = null; public String CountryContains = null; public String CountryLike = null; public ArrayList CountryBetween = null; public ArrayList CountryIn = null; public String getDeliveryID() { return DeliveryID; } public DB_DeliveryAddressQuery setDeliveryID(String value) { this.DeliveryID = value; return this; } public String getDeliveryIDStartsWith() { return DeliveryIDStartsWith; } public DB_DeliveryAddressQuery setDeliveryIDStartsWith(String value) { this.DeliveryIDStartsWith = value; return this; } public String getDeliveryIDEndsWith() { return DeliveryIDEndsWith; } public DB_DeliveryAddressQuery setDeliveryIDEndsWith(String value) { this.DeliveryIDEndsWith = value; return this; } public String getDeliveryIDContains() { return DeliveryIDContains; } public DB_DeliveryAddressQuery setDeliveryIDContains(String value) { this.DeliveryIDContains = value; return this; } public String getDeliveryIDLike() { return DeliveryIDLike; } public DB_DeliveryAddressQuery setDeliveryIDLike(String value) { this.DeliveryIDLike = value; return this; } public ArrayList getDeliveryIDBetween() { return DeliveryIDBetween; } public DB_DeliveryAddressQuery setDeliveryIDBetween(ArrayList value) { this.DeliveryIDBetween = value; return this; } public ArrayList getDeliveryIDIn() { return DeliveryIDIn; } public DB_DeliveryAddressQuery setDeliveryIDIn(ArrayList value) { this.DeliveryIDIn = value; return this; } public String getDebtorID() { return DebtorID; } public DB_DeliveryAddressQuery setDebtorID(String value) { this.DebtorID = value; return this; } public String getDebtorIDStartsWith() { return DebtorIDStartsWith; } public DB_DeliveryAddressQuery setDebtorIDStartsWith(String value) { this.DebtorIDStartsWith = value; return this; } public String getDebtorIDEndsWith() { return DebtorIDEndsWith; } public DB_DeliveryAddressQuery setDebtorIDEndsWith(String value) { this.DebtorIDEndsWith = value; return this; } public String getDebtorIDContains() { return DebtorIDContains; } public DB_DeliveryAddressQuery setDebtorIDContains(String value) { this.DebtorIDContains = value; return this; } public String getDebtorIDLike() { return DebtorIDLike; } public DB_DeliveryAddressQuery setDebtorIDLike(String value) { this.DebtorIDLike = value; return this; } public ArrayList getDebtorIDBetween() { return DebtorIDBetween; } public DB_DeliveryAddressQuery setDebtorIDBetween(ArrayList value) { this.DebtorIDBetween = value; return this; } public ArrayList getDebtorIDIn() { return DebtorIDIn; } public DB_DeliveryAddressQuery setDebtorIDIn(ArrayList value) { this.DebtorIDIn = value; return this; } public String getAddress1() { return Address1; } public DB_DeliveryAddressQuery setAddress1(String value) { this.Address1 = value; return this; } public String getAddress1StartsWith() { return Address1StartsWith; } public DB_DeliveryAddressQuery setAddress1StartsWith(String value) { this.Address1StartsWith = value; return this; } public String getAddress1EndsWith() { return Address1EndsWith; } public DB_DeliveryAddressQuery setAddress1EndsWith(String value) { this.Address1EndsWith = value; return this; } public String getAddress1Contains() { return Address1Contains; } public DB_DeliveryAddressQuery setAddress1Contains(String value) { this.Address1Contains = value; return this; } public String getAddress1Like() { return Address1Like; } public DB_DeliveryAddressQuery setAddress1Like(String value) { this.Address1Like = value; return this; } public ArrayList getAddress1Between() { return Address1Between; } public DB_DeliveryAddressQuery setAddress1Between(ArrayList value) { this.Address1Between = value; return this; } public ArrayList getAddress1In() { return Address1In; } public DB_DeliveryAddressQuery setAddress1In(ArrayList value) { this.Address1In = value; return this; } public String getAddress2() { return Address2; } public DB_DeliveryAddressQuery setAddress2(String value) { this.Address2 = value; return this; } public String getAddress2StartsWith() { return Address2StartsWith; } public DB_DeliveryAddressQuery setAddress2StartsWith(String value) { this.Address2StartsWith = value; return this; } public String getAddress2EndsWith() { return Address2EndsWith; } public DB_DeliveryAddressQuery setAddress2EndsWith(String value) { this.Address2EndsWith = value; return this; } public String getAddress2Contains() { return Address2Contains; } public DB_DeliveryAddressQuery setAddress2Contains(String value) { this.Address2Contains = value; return this; } public String getAddress2Like() { return Address2Like; } public DB_DeliveryAddressQuery setAddress2Like(String value) { this.Address2Like = value; return this; } public ArrayList getAddress2Between() { return Address2Between; } public DB_DeliveryAddressQuery setAddress2Between(ArrayList value) { this.Address2Between = value; return this; } public ArrayList getAddress2In() { return Address2In; } public DB_DeliveryAddressQuery setAddress2In(ArrayList value) { this.Address2In = value; return this; } public String getAddress3() { return Address3; } public DB_DeliveryAddressQuery setAddress3(String value) { this.Address3 = value; return this; } public String getAddress3StartsWith() { return Address3StartsWith; } public DB_DeliveryAddressQuery setAddress3StartsWith(String value) { this.Address3StartsWith = value; return this; } public String getAddress3EndsWith() { return Address3EndsWith; } public DB_DeliveryAddressQuery setAddress3EndsWith(String value) { this.Address3EndsWith = value; return this; } public String getAddress3Contains() { return Address3Contains; } public DB_DeliveryAddressQuery setAddress3Contains(String value) { this.Address3Contains = value; return this; } public String getAddress3Like() { return Address3Like; } public DB_DeliveryAddressQuery setAddress3Like(String value) { this.Address3Like = value; return this; } public ArrayList getAddress3Between() { return Address3Between; } public DB_DeliveryAddressQuery setAddress3Between(ArrayList value) { this.Address3Between = value; return this; } public ArrayList getAddress3In() { return Address3In; } public DB_DeliveryAddressQuery setAddress3In(ArrayList value) { this.Address3In = value; return this; } public String getAddress4() { return Address4; } public DB_DeliveryAddressQuery setAddress4(String value) { this.Address4 = value; return this; } public String getAddress4StartsWith() { return Address4StartsWith; } public DB_DeliveryAddressQuery setAddress4StartsWith(String value) { this.Address4StartsWith = value; return this; } public String getAddress4EndsWith() { return Address4EndsWith; } public DB_DeliveryAddressQuery setAddress4EndsWith(String value) { this.Address4EndsWith = value; return this; } public String getAddress4Contains() { return Address4Contains; } public DB_DeliveryAddressQuery setAddress4Contains(String value) { this.Address4Contains = value; return this; } public String getAddress4Like() { return Address4Like; } public DB_DeliveryAddressQuery setAddress4Like(String value) { this.Address4Like = value; return this; } public ArrayList getAddress4Between() { return Address4Between; } public DB_DeliveryAddressQuery setAddress4Between(ArrayList value) { this.Address4Between = value; return this; } public ArrayList getAddress4In() { return Address4In; } public DB_DeliveryAddressQuery setAddress4In(ArrayList value) { this.Address4In = value; return this; } public String getPostCode() { return PostCode; } public DB_DeliveryAddressQuery setPostCode(String value) { this.PostCode = value; return this; } public String getPostCodeStartsWith() { return PostCodeStartsWith; } public DB_DeliveryAddressQuery setPostCodeStartsWith(String value) { this.PostCodeStartsWith = value; return this; } public String getPostCodeEndsWith() { return PostCodeEndsWith; } public DB_DeliveryAddressQuery setPostCodeEndsWith(String value) { this.PostCodeEndsWith = value; return this; } public String getPostCodeContains() { return PostCodeContains; } public DB_DeliveryAddressQuery setPostCodeContains(String value) { this.PostCodeContains = value; return this; } public String getPostCodeLike() { return PostCodeLike; } public DB_DeliveryAddressQuery setPostCodeLike(String value) { this.PostCodeLike = value; return this; } public ArrayList getPostCodeBetween() { return PostCodeBetween; } public DB_DeliveryAddressQuery setPostCodeBetween(ArrayList value) { this.PostCodeBetween = value; return this; } public ArrayList getPostCodeIn() { return PostCodeIn; } public DB_DeliveryAddressQuery setPostCodeIn(ArrayList value) { this.PostCodeIn = value; return this; } public String getNotes() { return Notes; } public DB_DeliveryAddressQuery setNotes(String value) { this.Notes = value; return this; } public String getNotesStartsWith() { return NotesStartsWith; } public DB_DeliveryAddressQuery setNotesStartsWith(String value) { this.NotesStartsWith = value; return this; } public String getNotesEndsWith() { return NotesEndsWith; } public DB_DeliveryAddressQuery setNotesEndsWith(String value) { this.NotesEndsWith = value; return this; } public String getNotesContains() { return NotesContains; } public DB_DeliveryAddressQuery setNotesContains(String value) { this.NotesContains = value; return this; } public String getNotesLike() { return NotesLike; } public DB_DeliveryAddressQuery setNotesLike(String value) { this.NotesLike = value; return this; } public ArrayList getNotesBetween() { return NotesBetween; } public DB_DeliveryAddressQuery setNotesBetween(ArrayList value) { this.NotesBetween = value; return this; } public ArrayList getNotesIn() { return NotesIn; } public DB_DeliveryAddressQuery setNotesIn(ArrayList value) { this.NotesIn = value; return this; } public String getCourierDetails() { return CourierDetails; } public DB_DeliveryAddressQuery setCourierDetails(String value) { this.CourierDetails = value; return this; } public String getCourierDetailsStartsWith() { return CourierDetailsStartsWith; } public DB_DeliveryAddressQuery setCourierDetailsStartsWith(String value) { this.CourierDetailsStartsWith = value; return this; } public String getCourierDetailsEndsWith() { return CourierDetailsEndsWith; } public DB_DeliveryAddressQuery setCourierDetailsEndsWith(String value) { this.CourierDetailsEndsWith = value; return this; } public String getCourierDetailsContains() { return CourierDetailsContains; } public DB_DeliveryAddressQuery setCourierDetailsContains(String value) { this.CourierDetailsContains = value; return this; } public String getCourierDetailsLike() { return CourierDetailsLike; } public DB_DeliveryAddressQuery setCourierDetailsLike(String value) { this.CourierDetailsLike = value; return this; } public ArrayList getCourierDetailsBetween() { return CourierDetailsBetween; } public DB_DeliveryAddressQuery setCourierDetailsBetween(ArrayList value) { this.CourierDetailsBetween = value; return this; } public ArrayList getCourierDetailsIn() { return CourierDetailsIn; } public DB_DeliveryAddressQuery setCourierDetailsIn(ArrayList value) { this.CourierDetailsIn = value; return this; } public Boolean isDefaultItem() { return DefaultItem; } public DB_DeliveryAddressQuery setDefaultItem(Boolean value) { this.DefaultItem = value; return this; } public Integer getLineNum() { return LineNum; } public DB_DeliveryAddressQuery setLineNum(Integer value) { this.LineNum = value; return this; } public Integer getLineNumGreaterThanOrEqualTo() { return LineNumGreaterThanOrEqualTo; } public DB_DeliveryAddressQuery setLineNumGreaterThanOrEqualTo(Integer value) { this.LineNumGreaterThanOrEqualTo = value; return this; } public Integer getLineNumGreaterThan() { return LineNumGreaterThan; } public DB_DeliveryAddressQuery setLineNumGreaterThan(Integer value) { this.LineNumGreaterThan = value; return this; } public Integer getLineNumLessThan() { return LineNumLessThan; } public DB_DeliveryAddressQuery setLineNumLessThan(Integer value) { this.LineNumLessThan = value; return this; } public Integer getLineNumLessThanOrEqualTo() { return LineNumLessThanOrEqualTo; } public DB_DeliveryAddressQuery setLineNumLessThanOrEqualTo(Integer value) { this.LineNumLessThanOrEqualTo = value; return this; } public Integer getLineNumNotEqualTo() { return LineNumNotEqualTo; } public DB_DeliveryAddressQuery setLineNumNotEqualTo(Integer value) { this.LineNumNotEqualTo = value; return this; } public ArrayList getLineNumBetween() { return LineNumBetween; } public DB_DeliveryAddressQuery setLineNumBetween(ArrayList value) { this.LineNumBetween = value; return this; } public ArrayList getLineNumIn() { return LineNumIn; } public DB_DeliveryAddressQuery setLineNumIn(ArrayList value) { this.LineNumIn = value; return this; } public String getEdiStoreLocationCode() { return EDIStoreLocationCode; } public DB_DeliveryAddressQuery setEdiStoreLocationCode(String value) { this.EDIStoreLocationCode = value; return this; } public String getEdiStoreLocationCodeStartsWith() { return EDIStoreLocationCodeStartsWith; } public DB_DeliveryAddressQuery setEdiStoreLocationCodeStartsWith(String value) { this.EDIStoreLocationCodeStartsWith = value; return this; } public String getEdiStoreLocationCodeEndsWith() { return EDIStoreLocationCodeEndsWith; } public DB_DeliveryAddressQuery setEdiStoreLocationCodeEndsWith(String value) { this.EDIStoreLocationCodeEndsWith = value; return this; } public String getEdiStoreLocationCodeContains() { return EDIStoreLocationCodeContains; } public DB_DeliveryAddressQuery setEdiStoreLocationCodeContains(String value) { this.EDIStoreLocationCodeContains = value; return this; } public String getEdiStoreLocationCodeLike() { return EDIStoreLocationCodeLike; } public DB_DeliveryAddressQuery setEdiStoreLocationCodeLike(String value) { this.EDIStoreLocationCodeLike = value; return this; } public ArrayList getEdiStoreLocationCodeBetween() { return EDIStoreLocationCodeBetween; } public DB_DeliveryAddressQuery setEdiStoreLocationCodeBetween(ArrayList value) { this.EDIStoreLocationCodeBetween = value; return this; } public ArrayList getEdiStoreLocationCodeIn() { return EDIStoreLocationCodeIn; } public DB_DeliveryAddressQuery setEdiStoreLocationCodeIn(ArrayList value) { this.EDIStoreLocationCodeIn = value; return this; } public String getDeliveryAddressCode() { return DeliveryAddressCode; } public DB_DeliveryAddressQuery setDeliveryAddressCode(String value) { this.DeliveryAddressCode = value; return this; } public String getDeliveryAddressCodeStartsWith() { return DeliveryAddressCodeStartsWith; } public DB_DeliveryAddressQuery setDeliveryAddressCodeStartsWith(String value) { this.DeliveryAddressCodeStartsWith = value; return this; } public String getDeliveryAddressCodeEndsWith() { return DeliveryAddressCodeEndsWith; } public DB_DeliveryAddressQuery setDeliveryAddressCodeEndsWith(String value) { this.DeliveryAddressCodeEndsWith = value; return this; } public String getDeliveryAddressCodeContains() { return DeliveryAddressCodeContains; } public DB_DeliveryAddressQuery setDeliveryAddressCodeContains(String value) { this.DeliveryAddressCodeContains = value; return this; } public String getDeliveryAddressCodeLike() { return DeliveryAddressCodeLike; } public DB_DeliveryAddressQuery setDeliveryAddressCodeLike(String value) { this.DeliveryAddressCodeLike = value; return this; } public ArrayList getDeliveryAddressCodeBetween() { return DeliveryAddressCodeBetween; } public DB_DeliveryAddressQuery setDeliveryAddressCodeBetween(ArrayList value) { this.DeliveryAddressCodeBetween = value; return this; } public ArrayList getDeliveryAddressCodeIn() { return DeliveryAddressCodeIn; } public DB_DeliveryAddressQuery setDeliveryAddressCodeIn(ArrayList value) { this.DeliveryAddressCodeIn = value; return this; } public String getDeliveryAddressName() { return DeliveryAddressName; } public DB_DeliveryAddressQuery setDeliveryAddressName(String value) { this.DeliveryAddressName = value; return this; } public String getDeliveryAddressNameStartsWith() { return DeliveryAddressNameStartsWith; } public DB_DeliveryAddressQuery setDeliveryAddressNameStartsWith(String value) { this.DeliveryAddressNameStartsWith = value; return this; } public String getDeliveryAddressNameEndsWith() { return DeliveryAddressNameEndsWith; } public DB_DeliveryAddressQuery setDeliveryAddressNameEndsWith(String value) { this.DeliveryAddressNameEndsWith = value; return this; } public String getDeliveryAddressNameContains() { return DeliveryAddressNameContains; } public DB_DeliveryAddressQuery setDeliveryAddressNameContains(String value) { this.DeliveryAddressNameContains = value; return this; } public String getDeliveryAddressNameLike() { return DeliveryAddressNameLike; } public DB_DeliveryAddressQuery setDeliveryAddressNameLike(String value) { this.DeliveryAddressNameLike = value; return this; } public ArrayList getDeliveryAddressNameBetween() { return DeliveryAddressNameBetween; } public DB_DeliveryAddressQuery setDeliveryAddressNameBetween(ArrayList value) { this.DeliveryAddressNameBetween = value; return this; } public ArrayList getDeliveryAddressNameIn() { return DeliveryAddressNameIn; } public DB_DeliveryAddressQuery setDeliveryAddressNameIn(ArrayList value) { this.DeliveryAddressNameIn = value; return this; } public String getCountry() { return Country; } public DB_DeliveryAddressQuery setCountry(String value) { this.Country = value; return this; } public String getCountryStartsWith() { return CountryStartsWith; } public DB_DeliveryAddressQuery setCountryStartsWith(String value) { this.CountryStartsWith = value; return this; } public String getCountryEndsWith() { return CountryEndsWith; } public DB_DeliveryAddressQuery setCountryEndsWith(String value) { this.CountryEndsWith = value; return this; } public String getCountryContains() { return CountryContains; } public DB_DeliveryAddressQuery setCountryContains(String value) { this.CountryContains = value; return this; } public String getCountryLike() { return CountryLike; } public DB_DeliveryAddressQuery setCountryLike(String value) { this.CountryLike = value; return this; } public ArrayList getCountryBetween() { return CountryBetween; } public DB_DeliveryAddressQuery setCountryBetween(ArrayList value) { this.CountryBetween = value; return this; } public ArrayList getCountryIn() { return CountryIn; } public DB_DeliveryAddressQuery setCountryIn(ArrayList value) { this.CountryIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class DB_DetailedGLAuditQuery extends QueryDb implements IReturn> { public String ReceiptID = null; public String ReceiptIDStartsWith = null; public String ReceiptIDEndsWith = null; public String ReceiptIDContains = null; public String ReceiptIDLike = null; public ArrayList ReceiptIDBetween = null; public ArrayList ReceiptIDIn = null; public String AccountID = null; public String AccountIDStartsWith = null; public String AccountIDEndsWith = null; public String AccountIDContains = null; public String AccountIDLike = null; public ArrayList AccountIDBetween = null; public ArrayList AccountIDIn = null; public String DBAccountNo = null; public String DBAccountNoStartsWith = null; public String DBAccountNoEndsWith = null; public String DBAccountNoContains = null; public String DBAccountNoLike = null; public ArrayList DBAccountNoBetween = null; public ArrayList DBAccountNoIn = null; public String RemitNo = null; public String RemitNoStartsWith = null; public String RemitNoEndsWith = null; public String RemitNoContains = null; public String RemitNoLike = null; public ArrayList RemitNoBetween = null; public ArrayList RemitNoIn = null; public Date ReceiptDate = null; public Date ReceiptDateGreaterThanOrEqualTo = null; public Date ReceiptDateGreaterThan = null; public Date ReceiptDateLessThan = null; public Date ReceiptDateLessThanOrEqualTo = null; public Date ReceiptDateNotEqualTo = null; public ArrayList ReceiptDateBetween = null; public ArrayList ReceiptDateIn = null; public BigDecimal Amount = null; public BigDecimal AmountGreaterThanOrEqualTo = null; public BigDecimal AmountGreaterThan = null; public BigDecimal AmountLessThan = null; public BigDecimal AmountLessThanOrEqualTo = null; public BigDecimal AmountNotEqualTo = null; public ArrayList AmountBetween = null; public ArrayList AmountIn = null; public String SourceID = null; public String SourceIDStartsWith = null; public String SourceIDEndsWith = null; public String SourceIDContains = null; public String SourceIDLike = null; public ArrayList SourceIDBetween = null; public ArrayList SourceIDIn = null; public Short SetType = null; public Short SetTypeGreaterThanOrEqualTo = null; public Short SetTypeGreaterThan = null; public Short SetTypeLessThan = null; public Short SetTypeLessThanOrEqualTo = null; public Short SetTypeNotEqualTo = null; public ArrayList SetTypeBetween = null; public ArrayList SetTypeIn = null; public String GLSetID = null; public String GLSetIDStartsWith = null; public String GLSetIDEndsWith = null; public String GLSetIDContains = null; public String GLSetIDLike = null; public ArrayList GLSetIDBetween = null; public ArrayList GLSetIDIn = null; public String GLAccountNo = null; public String GLAccountNoStartsWith = null; public String GLAccountNoEndsWith = null; public String GLAccountNoContains = null; public String GLAccountNoLike = null; public ArrayList GLAccountNoBetween = null; public ArrayList GLAccountNoIn = null; public String Ref = null; public String RefStartsWith = null; public String RefEndsWith = null; public String RefContains = null; public String RefLike = null; public ArrayList RefBetween = null; public ArrayList RefIn = null; public BigDecimal GLTransAmount = null; public BigDecimal GLTransAmountGreaterThanOrEqualTo = null; public BigDecimal GLTransAmountGreaterThan = null; public BigDecimal GLTransAmountLessThan = null; public BigDecimal GLTransAmountLessThanOrEqualTo = null; public BigDecimal GLTransAmountNotEqualTo = null; public ArrayList GLTransAmountBetween = null; public ArrayList GLTransAmountIn = null; public String getReceiptID() { return ReceiptID; } public DB_DetailedGLAuditQuery setReceiptID(String value) { this.ReceiptID = value; return this; } public String getReceiptIDStartsWith() { return ReceiptIDStartsWith; } public DB_DetailedGLAuditQuery setReceiptIDStartsWith(String value) { this.ReceiptIDStartsWith = value; return this; } public String getReceiptIDEndsWith() { return ReceiptIDEndsWith; } public DB_DetailedGLAuditQuery setReceiptIDEndsWith(String value) { this.ReceiptIDEndsWith = value; return this; } public String getReceiptIDContains() { return ReceiptIDContains; } public DB_DetailedGLAuditQuery setReceiptIDContains(String value) { this.ReceiptIDContains = value; return this; } public String getReceiptIDLike() { return ReceiptIDLike; } public DB_DetailedGLAuditQuery setReceiptIDLike(String value) { this.ReceiptIDLike = value; return this; } public ArrayList getReceiptIDBetween() { return ReceiptIDBetween; } public DB_DetailedGLAuditQuery setReceiptIDBetween(ArrayList value) { this.ReceiptIDBetween = value; return this; } public ArrayList getReceiptIDIn() { return ReceiptIDIn; } public DB_DetailedGLAuditQuery setReceiptIDIn(ArrayList value) { this.ReceiptIDIn = value; return this; } public String getAccountID() { return AccountID; } public DB_DetailedGLAuditQuery setAccountID(String value) { this.AccountID = value; return this; } public String getAccountIDStartsWith() { return AccountIDStartsWith; } public DB_DetailedGLAuditQuery setAccountIDStartsWith(String value) { this.AccountIDStartsWith = value; return this; } public String getAccountIDEndsWith() { return AccountIDEndsWith; } public DB_DetailedGLAuditQuery setAccountIDEndsWith(String value) { this.AccountIDEndsWith = value; return this; } public String getAccountIDContains() { return AccountIDContains; } public DB_DetailedGLAuditQuery setAccountIDContains(String value) { this.AccountIDContains = value; return this; } public String getAccountIDLike() { return AccountIDLike; } public DB_DetailedGLAuditQuery setAccountIDLike(String value) { this.AccountIDLike = value; return this; } public ArrayList getAccountIDBetween() { return AccountIDBetween; } public DB_DetailedGLAuditQuery setAccountIDBetween(ArrayList value) { this.AccountIDBetween = value; return this; } public ArrayList getAccountIDIn() { return AccountIDIn; } public DB_DetailedGLAuditQuery setAccountIDIn(ArrayList value) { this.AccountIDIn = value; return this; } public String getDbAccountNo() { return DBAccountNo; } public DB_DetailedGLAuditQuery setDbAccountNo(String value) { this.DBAccountNo = value; return this; } public String getDbAccountNoStartsWith() { return DBAccountNoStartsWith; } public DB_DetailedGLAuditQuery setDbAccountNoStartsWith(String value) { this.DBAccountNoStartsWith = value; return this; } public String getDbAccountNoEndsWith() { return DBAccountNoEndsWith; } public DB_DetailedGLAuditQuery setDbAccountNoEndsWith(String value) { this.DBAccountNoEndsWith = value; return this; } public String getDbAccountNoContains() { return DBAccountNoContains; } public DB_DetailedGLAuditQuery setDbAccountNoContains(String value) { this.DBAccountNoContains = value; return this; } public String getDbAccountNoLike() { return DBAccountNoLike; } public DB_DetailedGLAuditQuery setDbAccountNoLike(String value) { this.DBAccountNoLike = value; return this; } public ArrayList getDbAccountNoBetween() { return DBAccountNoBetween; } public DB_DetailedGLAuditQuery setDbAccountNoBetween(ArrayList value) { this.DBAccountNoBetween = value; return this; } public ArrayList getDbAccountNoIn() { return DBAccountNoIn; } public DB_DetailedGLAuditQuery setDbAccountNoIn(ArrayList value) { this.DBAccountNoIn = value; return this; } public String getRemitNo() { return RemitNo; } public DB_DetailedGLAuditQuery setRemitNo(String value) { this.RemitNo = value; return this; } public String getRemitNoStartsWith() { return RemitNoStartsWith; } public DB_DetailedGLAuditQuery setRemitNoStartsWith(String value) { this.RemitNoStartsWith = value; return this; } public String getRemitNoEndsWith() { return RemitNoEndsWith; } public DB_DetailedGLAuditQuery setRemitNoEndsWith(String value) { this.RemitNoEndsWith = value; return this; } public String getRemitNoContains() { return RemitNoContains; } public DB_DetailedGLAuditQuery setRemitNoContains(String value) { this.RemitNoContains = value; return this; } public String getRemitNoLike() { return RemitNoLike; } public DB_DetailedGLAuditQuery setRemitNoLike(String value) { this.RemitNoLike = value; return this; } public ArrayList getRemitNoBetween() { return RemitNoBetween; } public DB_DetailedGLAuditQuery setRemitNoBetween(ArrayList value) { this.RemitNoBetween = value; return this; } public ArrayList getRemitNoIn() { return RemitNoIn; } public DB_DetailedGLAuditQuery setRemitNoIn(ArrayList value) { this.RemitNoIn = value; return this; } public Date getReceiptDate() { return ReceiptDate; } public DB_DetailedGLAuditQuery setReceiptDate(Date value) { this.ReceiptDate = value; return this; } public Date getReceiptDateGreaterThanOrEqualTo() { return ReceiptDateGreaterThanOrEqualTo; } public DB_DetailedGLAuditQuery setReceiptDateGreaterThanOrEqualTo(Date value) { this.ReceiptDateGreaterThanOrEqualTo = value; return this; } public Date getReceiptDateGreaterThan() { return ReceiptDateGreaterThan; } public DB_DetailedGLAuditQuery setReceiptDateGreaterThan(Date value) { this.ReceiptDateGreaterThan = value; return this; } public Date getReceiptDateLessThan() { return ReceiptDateLessThan; } public DB_DetailedGLAuditQuery setReceiptDateLessThan(Date value) { this.ReceiptDateLessThan = value; return this; } public Date getReceiptDateLessThanOrEqualTo() { return ReceiptDateLessThanOrEqualTo; } public DB_DetailedGLAuditQuery setReceiptDateLessThanOrEqualTo(Date value) { this.ReceiptDateLessThanOrEqualTo = value; return this; } public Date getReceiptDateNotEqualTo() { return ReceiptDateNotEqualTo; } public DB_DetailedGLAuditQuery setReceiptDateNotEqualTo(Date value) { this.ReceiptDateNotEqualTo = value; return this; } public ArrayList getReceiptDateBetween() { return ReceiptDateBetween; } public DB_DetailedGLAuditQuery setReceiptDateBetween(ArrayList value) { this.ReceiptDateBetween = value; return this; } public ArrayList getReceiptDateIn() { return ReceiptDateIn; } public DB_DetailedGLAuditQuery setReceiptDateIn(ArrayList value) { this.ReceiptDateIn = value; return this; } public BigDecimal getAmount() { return Amount; } public DB_DetailedGLAuditQuery setAmount(BigDecimal value) { this.Amount = value; return this; } public BigDecimal getAmountGreaterThanOrEqualTo() { return AmountGreaterThanOrEqualTo; } public DB_DetailedGLAuditQuery setAmountGreaterThanOrEqualTo(BigDecimal value) { this.AmountGreaterThanOrEqualTo = value; return this; } public BigDecimal getAmountGreaterThan() { return AmountGreaterThan; } public DB_DetailedGLAuditQuery setAmountGreaterThan(BigDecimal value) { this.AmountGreaterThan = value; return this; } public BigDecimal getAmountLessThan() { return AmountLessThan; } public DB_DetailedGLAuditQuery setAmountLessThan(BigDecimal value) { this.AmountLessThan = value; return this; } public BigDecimal getAmountLessThanOrEqualTo() { return AmountLessThanOrEqualTo; } public DB_DetailedGLAuditQuery setAmountLessThanOrEqualTo(BigDecimal value) { this.AmountLessThanOrEqualTo = value; return this; } public BigDecimal getAmountNotEqualTo() { return AmountNotEqualTo; } public DB_DetailedGLAuditQuery setAmountNotEqualTo(BigDecimal value) { this.AmountNotEqualTo = value; return this; } public ArrayList getAmountBetween() { return AmountBetween; } public DB_DetailedGLAuditQuery setAmountBetween(ArrayList value) { this.AmountBetween = value; return this; } public ArrayList getAmountIn() { return AmountIn; } public DB_DetailedGLAuditQuery setAmountIn(ArrayList value) { this.AmountIn = value; return this; } public String getSourceID() { return SourceID; } public DB_DetailedGLAuditQuery setSourceID(String value) { this.SourceID = value; return this; } public String getSourceIDStartsWith() { return SourceIDStartsWith; } public DB_DetailedGLAuditQuery setSourceIDStartsWith(String value) { this.SourceIDStartsWith = value; return this; } public String getSourceIDEndsWith() { return SourceIDEndsWith; } public DB_DetailedGLAuditQuery setSourceIDEndsWith(String value) { this.SourceIDEndsWith = value; return this; } public String getSourceIDContains() { return SourceIDContains; } public DB_DetailedGLAuditQuery setSourceIDContains(String value) { this.SourceIDContains = value; return this; } public String getSourceIDLike() { return SourceIDLike; } public DB_DetailedGLAuditQuery setSourceIDLike(String value) { this.SourceIDLike = value; return this; } public ArrayList getSourceIDBetween() { return SourceIDBetween; } public DB_DetailedGLAuditQuery setSourceIDBetween(ArrayList value) { this.SourceIDBetween = value; return this; } public ArrayList getSourceIDIn() { return SourceIDIn; } public DB_DetailedGLAuditQuery setSourceIDIn(ArrayList value) { this.SourceIDIn = value; return this; } public Short getSetType() { return SetType; } public DB_DetailedGLAuditQuery setSetType(Short value) { this.SetType = value; return this; } public Short getSetTypeGreaterThanOrEqualTo() { return SetTypeGreaterThanOrEqualTo; } public DB_DetailedGLAuditQuery setSetTypeGreaterThanOrEqualTo(Short value) { this.SetTypeGreaterThanOrEqualTo = value; return this; } public Short getSetTypeGreaterThan() { return SetTypeGreaterThan; } public DB_DetailedGLAuditQuery setSetTypeGreaterThan(Short value) { this.SetTypeGreaterThan = value; return this; } public Short getSetTypeLessThan() { return SetTypeLessThan; } public DB_DetailedGLAuditQuery setSetTypeLessThan(Short value) { this.SetTypeLessThan = value; return this; } public Short getSetTypeLessThanOrEqualTo() { return SetTypeLessThanOrEqualTo; } public DB_DetailedGLAuditQuery setSetTypeLessThanOrEqualTo(Short value) { this.SetTypeLessThanOrEqualTo = value; return this; } public Short getSetTypeNotEqualTo() { return SetTypeNotEqualTo; } public DB_DetailedGLAuditQuery setSetTypeNotEqualTo(Short value) { this.SetTypeNotEqualTo = value; return this; } public ArrayList getSetTypeBetween() { return SetTypeBetween; } public DB_DetailedGLAuditQuery setSetTypeBetween(ArrayList value) { this.SetTypeBetween = value; return this; } public ArrayList getSetTypeIn() { return SetTypeIn; } public DB_DetailedGLAuditQuery setSetTypeIn(ArrayList value) { this.SetTypeIn = value; return this; } public String getGlSetID() { return GLSetID; } public DB_DetailedGLAuditQuery setGlSetID(String value) { this.GLSetID = value; return this; } public String getGlSetIDStartsWith() { return GLSetIDStartsWith; } public DB_DetailedGLAuditQuery setGlSetIDStartsWith(String value) { this.GLSetIDStartsWith = value; return this; } public String getGlSetIDEndsWith() { return GLSetIDEndsWith; } public DB_DetailedGLAuditQuery setGlSetIDEndsWith(String value) { this.GLSetIDEndsWith = value; return this; } public String getGlSetIDContains() { return GLSetIDContains; } public DB_DetailedGLAuditQuery setGlSetIDContains(String value) { this.GLSetIDContains = value; return this; } public String getGlSetIDLike() { return GLSetIDLike; } public DB_DetailedGLAuditQuery setGlSetIDLike(String value) { this.GLSetIDLike = value; return this; } public ArrayList getGlSetIDBetween() { return GLSetIDBetween; } public DB_DetailedGLAuditQuery setGlSetIDBetween(ArrayList value) { this.GLSetIDBetween = value; return this; } public ArrayList getGlSetIDIn() { return GLSetIDIn; } public DB_DetailedGLAuditQuery setGlSetIDIn(ArrayList value) { this.GLSetIDIn = value; return this; } public String getGlAccountNo() { return GLAccountNo; } public DB_DetailedGLAuditQuery setGlAccountNo(String value) { this.GLAccountNo = value; return this; } public String getGlAccountNoStartsWith() { return GLAccountNoStartsWith; } public DB_DetailedGLAuditQuery setGlAccountNoStartsWith(String value) { this.GLAccountNoStartsWith = value; return this; } public String getGlAccountNoEndsWith() { return GLAccountNoEndsWith; } public DB_DetailedGLAuditQuery setGlAccountNoEndsWith(String value) { this.GLAccountNoEndsWith = value; return this; } public String getGlAccountNoContains() { return GLAccountNoContains; } public DB_DetailedGLAuditQuery setGlAccountNoContains(String value) { this.GLAccountNoContains = value; return this; } public String getGlAccountNoLike() { return GLAccountNoLike; } public DB_DetailedGLAuditQuery setGlAccountNoLike(String value) { this.GLAccountNoLike = value; return this; } public ArrayList getGlAccountNoBetween() { return GLAccountNoBetween; } public DB_DetailedGLAuditQuery setGlAccountNoBetween(ArrayList value) { this.GLAccountNoBetween = value; return this; } public ArrayList getGlAccountNoIn() { return GLAccountNoIn; } public DB_DetailedGLAuditQuery setGlAccountNoIn(ArrayList value) { this.GLAccountNoIn = value; return this; } public String getRef() { return Ref; } public DB_DetailedGLAuditQuery setRef(String value) { this.Ref = value; return this; } public String getRefStartsWith() { return RefStartsWith; } public DB_DetailedGLAuditQuery setRefStartsWith(String value) { this.RefStartsWith = value; return this; } public String getRefEndsWith() { return RefEndsWith; } public DB_DetailedGLAuditQuery setRefEndsWith(String value) { this.RefEndsWith = value; return this; } public String getRefContains() { return RefContains; } public DB_DetailedGLAuditQuery setRefContains(String value) { this.RefContains = value; return this; } public String getRefLike() { return RefLike; } public DB_DetailedGLAuditQuery setRefLike(String value) { this.RefLike = value; return this; } public ArrayList getRefBetween() { return RefBetween; } public DB_DetailedGLAuditQuery setRefBetween(ArrayList value) { this.RefBetween = value; return this; } public ArrayList getRefIn() { return RefIn; } public DB_DetailedGLAuditQuery setRefIn(ArrayList value) { this.RefIn = value; return this; } public BigDecimal getGlTransAmount() { return GLTransAmount; } public DB_DetailedGLAuditQuery setGlTransAmount(BigDecimal value) { this.GLTransAmount = value; return this; } public BigDecimal getGlTransAmountGreaterThanOrEqualTo() { return GLTransAmountGreaterThanOrEqualTo; } public DB_DetailedGLAuditQuery setGlTransAmountGreaterThanOrEqualTo(BigDecimal value) { this.GLTransAmountGreaterThanOrEqualTo = value; return this; } public BigDecimal getGlTransAmountGreaterThan() { return GLTransAmountGreaterThan; } public DB_DetailedGLAuditQuery setGlTransAmountGreaterThan(BigDecimal value) { this.GLTransAmountGreaterThan = value; return this; } public BigDecimal getGlTransAmountLessThan() { return GLTransAmountLessThan; } public DB_DetailedGLAuditQuery setGlTransAmountLessThan(BigDecimal value) { this.GLTransAmountLessThan = value; return this; } public BigDecimal getGlTransAmountLessThanOrEqualTo() { return GLTransAmountLessThanOrEqualTo; } public DB_DetailedGLAuditQuery setGlTransAmountLessThanOrEqualTo(BigDecimal value) { this.GLTransAmountLessThanOrEqualTo = value; return this; } public BigDecimal getGlTransAmountNotEqualTo() { return GLTransAmountNotEqualTo; } public DB_DetailedGLAuditQuery setGlTransAmountNotEqualTo(BigDecimal value) { this.GLTransAmountNotEqualTo = value; return this; } public ArrayList getGlTransAmountBetween() { return GLTransAmountBetween; } public DB_DetailedGLAuditQuery setGlTransAmountBetween(ArrayList value) { this.GLTransAmountBetween = value; return this; } public ArrayList getGlTransAmountIn() { return GLTransAmountIn; } public DB_DetailedGLAuditQuery setGlTransAmountIn(ArrayList value) { this.GLTransAmountIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class DB_DirectorsQuery extends QueryDb implements IReturn> { public String DirectorID = null; public String DirectorIDStartsWith = null; public String DirectorIDEndsWith = null; public String DirectorIDContains = null; public String DirectorIDLike = null; public ArrayList DirectorIDBetween = null; public ArrayList DirectorIDIn = null; public String DebtorID = null; public String DebtorIDStartsWith = null; public String DebtorIDEndsWith = null; public String DebtorIDContains = null; public String DebtorIDLike = null; public ArrayList DebtorIDBetween = null; public ArrayList DebtorIDIn = null; public String DirectorName = null; public String DirectorNameStartsWith = null; public String DirectorNameEndsWith = null; public String DirectorNameContains = null; public String DirectorNameLike = null; public ArrayList DirectorNameBetween = null; public ArrayList DirectorNameIn = null; public String Address = null; public String AddressStartsWith = null; public String AddressEndsWith = null; public String AddressContains = null; public String AddressLike = null; public ArrayList AddressBetween = null; public ArrayList AddressIn = null; public String OfficeHeld = null; public String OfficeHeldStartsWith = null; public String OfficeHeldEndsWith = null; public String OfficeHeldContains = null; public String OfficeHeldLike = null; public ArrayList OfficeHeldBetween = null; public ArrayList OfficeHeldIn = null; public String getDirectorID() { return DirectorID; } public DB_DirectorsQuery setDirectorID(String value) { this.DirectorID = value; return this; } public String getDirectorIDStartsWith() { return DirectorIDStartsWith; } public DB_DirectorsQuery setDirectorIDStartsWith(String value) { this.DirectorIDStartsWith = value; return this; } public String getDirectorIDEndsWith() { return DirectorIDEndsWith; } public DB_DirectorsQuery setDirectorIDEndsWith(String value) { this.DirectorIDEndsWith = value; return this; } public String getDirectorIDContains() { return DirectorIDContains; } public DB_DirectorsQuery setDirectorIDContains(String value) { this.DirectorIDContains = value; return this; } public String getDirectorIDLike() { return DirectorIDLike; } public DB_DirectorsQuery setDirectorIDLike(String value) { this.DirectorIDLike = value; return this; } public ArrayList getDirectorIDBetween() { return DirectorIDBetween; } public DB_DirectorsQuery setDirectorIDBetween(ArrayList value) { this.DirectorIDBetween = value; return this; } public ArrayList getDirectorIDIn() { return DirectorIDIn; } public DB_DirectorsQuery setDirectorIDIn(ArrayList value) { this.DirectorIDIn = value; return this; } public String getDebtorID() { return DebtorID; } public DB_DirectorsQuery setDebtorID(String value) { this.DebtorID = value; return this; } public String getDebtorIDStartsWith() { return DebtorIDStartsWith; } public DB_DirectorsQuery setDebtorIDStartsWith(String value) { this.DebtorIDStartsWith = value; return this; } public String getDebtorIDEndsWith() { return DebtorIDEndsWith; } public DB_DirectorsQuery setDebtorIDEndsWith(String value) { this.DebtorIDEndsWith = value; return this; } public String getDebtorIDContains() { return DebtorIDContains; } public DB_DirectorsQuery setDebtorIDContains(String value) { this.DebtorIDContains = value; return this; } public String getDebtorIDLike() { return DebtorIDLike; } public DB_DirectorsQuery setDebtorIDLike(String value) { this.DebtorIDLike = value; return this; } public ArrayList getDebtorIDBetween() { return DebtorIDBetween; } public DB_DirectorsQuery setDebtorIDBetween(ArrayList value) { this.DebtorIDBetween = value; return this; } public ArrayList getDebtorIDIn() { return DebtorIDIn; } public DB_DirectorsQuery setDebtorIDIn(ArrayList value) { this.DebtorIDIn = value; return this; } public String getDirectorName() { return DirectorName; } public DB_DirectorsQuery setDirectorName(String value) { this.DirectorName = value; return this; } public String getDirectorNameStartsWith() { return DirectorNameStartsWith; } public DB_DirectorsQuery setDirectorNameStartsWith(String value) { this.DirectorNameStartsWith = value; return this; } public String getDirectorNameEndsWith() { return DirectorNameEndsWith; } public DB_DirectorsQuery setDirectorNameEndsWith(String value) { this.DirectorNameEndsWith = value; return this; } public String getDirectorNameContains() { return DirectorNameContains; } public DB_DirectorsQuery setDirectorNameContains(String value) { this.DirectorNameContains = value; return this; } public String getDirectorNameLike() { return DirectorNameLike; } public DB_DirectorsQuery setDirectorNameLike(String value) { this.DirectorNameLike = value; return this; } public ArrayList getDirectorNameBetween() { return DirectorNameBetween; } public DB_DirectorsQuery setDirectorNameBetween(ArrayList value) { this.DirectorNameBetween = value; return this; } public ArrayList getDirectorNameIn() { return DirectorNameIn; } public DB_DirectorsQuery setDirectorNameIn(ArrayList value) { this.DirectorNameIn = value; return this; } public String getAddress() { return Address; } public DB_DirectorsQuery setAddress(String value) { this.Address = value; return this; } public String getAddressStartsWith() { return AddressStartsWith; } public DB_DirectorsQuery setAddressStartsWith(String value) { this.AddressStartsWith = value; return this; } public String getAddressEndsWith() { return AddressEndsWith; } public DB_DirectorsQuery setAddressEndsWith(String value) { this.AddressEndsWith = value; return this; } public String getAddressContains() { return AddressContains; } public DB_DirectorsQuery setAddressContains(String value) { this.AddressContains = value; return this; } public String getAddressLike() { return AddressLike; } public DB_DirectorsQuery setAddressLike(String value) { this.AddressLike = value; return this; } public ArrayList getAddressBetween() { return AddressBetween; } public DB_DirectorsQuery setAddressBetween(ArrayList value) { this.AddressBetween = value; return this; } public ArrayList getAddressIn() { return AddressIn; } public DB_DirectorsQuery setAddressIn(ArrayList value) { this.AddressIn = value; return this; } public String getOfficeHeld() { return OfficeHeld; } public DB_DirectorsQuery setOfficeHeld(String value) { this.OfficeHeld = value; return this; } public String getOfficeHeldStartsWith() { return OfficeHeldStartsWith; } public DB_DirectorsQuery setOfficeHeldStartsWith(String value) { this.OfficeHeldStartsWith = value; return this; } public String getOfficeHeldEndsWith() { return OfficeHeldEndsWith; } public DB_DirectorsQuery setOfficeHeldEndsWith(String value) { this.OfficeHeldEndsWith = value; return this; } public String getOfficeHeldContains() { return OfficeHeldContains; } public DB_DirectorsQuery setOfficeHeldContains(String value) { this.OfficeHeldContains = value; return this; } public String getOfficeHeldLike() { return OfficeHeldLike; } public DB_DirectorsQuery setOfficeHeldLike(String value) { this.OfficeHeldLike = value; return this; } public ArrayList getOfficeHeldBetween() { return OfficeHeldBetween; } public DB_DirectorsQuery setOfficeHeldBetween(ArrayList value) { this.OfficeHeldBetween = value; return this; } public ArrayList getOfficeHeldIn() { return OfficeHeldIn; } public DB_DirectorsQuery setOfficeHeldIn(ArrayList value) { this.OfficeHeldIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class DB_DocumentsQuery extends QueryDb implements IReturn> { public String RecID = null; public String RecIDStartsWith = null; public String RecIDEndsWith = null; public String RecIDContains = null; public String RecIDLike = null; public ArrayList RecIDBetween = null; public ArrayList RecIDIn = null; public String DebtorID = null; public String DebtorIDStartsWith = null; public String DebtorIDEndsWith = null; public String DebtorIDContains = null; public String DebtorIDLike = null; public ArrayList DebtorIDBetween = null; public ArrayList DebtorIDIn = null; public String DocumentTypeID = null; public String DocumentTypeIDStartsWith = null; public String DocumentTypeIDEndsWith = null; public String DocumentTypeIDContains = null; public String DocumentTypeIDLike = null; public ArrayList DocumentTypeIDBetween = null; public ArrayList DocumentTypeIDIn = null; public Date LastSavedDateTime = null; public Date LastSavedDateTimeGreaterThanOrEqualTo = null; public Date LastSavedDateTimeGreaterThan = null; public Date LastSavedDateTimeLessThan = null; public Date LastSavedDateTimeLessThanOrEqualTo = null; public Date LastSavedDateTimeNotEqualTo = null; public ArrayList LastSavedDateTimeBetween = null; public ArrayList LastSavedDateTimeIn = null; public String LastSavedByStaffID = null; public String LastSavedByStaffIDStartsWith = null; public String LastSavedByStaffIDEndsWith = null; public String LastSavedByStaffIDContains = null; public String LastSavedByStaffIDLike = null; public ArrayList LastSavedByStaffIDBetween = null; public ArrayList LastSavedByStaffIDIn = null; public ArrayList FileBinary = null; public String Description = null; public String DescriptionStartsWith = null; public String DescriptionEndsWith = null; public String DescriptionContains = null; public String DescriptionLike = null; public ArrayList DescriptionBetween = null; public ArrayList DescriptionIn = null; public String PhysicalFileName = null; public String PhysicalFileNameStartsWith = null; public String PhysicalFileNameEndsWith = null; public String PhysicalFileNameContains = null; public String PhysicalFileNameLike = null; public ArrayList PhysicalFileNameBetween = null; public ArrayList PhysicalFileNameIn = null; public Integer ItemNo = null; public Integer ItemNoGreaterThanOrEqualTo = null; public Integer ItemNoGreaterThan = null; public Integer ItemNoLessThan = null; public Integer ItemNoLessThanOrEqualTo = null; public Integer ItemNoNotEqualTo = null; public ArrayList ItemNoBetween = null; public ArrayList ItemNoIn = null; public String getRecID() { return RecID; } public DB_DocumentsQuery setRecID(String value) { this.RecID = value; return this; } public String getRecIDStartsWith() { return RecIDStartsWith; } public DB_DocumentsQuery setRecIDStartsWith(String value) { this.RecIDStartsWith = value; return this; } public String getRecIDEndsWith() { return RecIDEndsWith; } public DB_DocumentsQuery setRecIDEndsWith(String value) { this.RecIDEndsWith = value; return this; } public String getRecIDContains() { return RecIDContains; } public DB_DocumentsQuery setRecIDContains(String value) { this.RecIDContains = value; return this; } public String getRecIDLike() { return RecIDLike; } public DB_DocumentsQuery setRecIDLike(String value) { this.RecIDLike = value; return this; } public ArrayList getRecIDBetween() { return RecIDBetween; } public DB_DocumentsQuery setRecIDBetween(ArrayList value) { this.RecIDBetween = value; return this; } public ArrayList getRecIDIn() { return RecIDIn; } public DB_DocumentsQuery setRecIDIn(ArrayList value) { this.RecIDIn = value; return this; } public String getDebtorID() { return DebtorID; } public DB_DocumentsQuery setDebtorID(String value) { this.DebtorID = value; return this; } public String getDebtorIDStartsWith() { return DebtorIDStartsWith; } public DB_DocumentsQuery setDebtorIDStartsWith(String value) { this.DebtorIDStartsWith = value; return this; } public String getDebtorIDEndsWith() { return DebtorIDEndsWith; } public DB_DocumentsQuery setDebtorIDEndsWith(String value) { this.DebtorIDEndsWith = value; return this; } public String getDebtorIDContains() { return DebtorIDContains; } public DB_DocumentsQuery setDebtorIDContains(String value) { this.DebtorIDContains = value; return this; } public String getDebtorIDLike() { return DebtorIDLike; } public DB_DocumentsQuery setDebtorIDLike(String value) { this.DebtorIDLike = value; return this; } public ArrayList getDebtorIDBetween() { return DebtorIDBetween; } public DB_DocumentsQuery setDebtorIDBetween(ArrayList value) { this.DebtorIDBetween = value; return this; } public ArrayList getDebtorIDIn() { return DebtorIDIn; } public DB_DocumentsQuery setDebtorIDIn(ArrayList value) { this.DebtorIDIn = value; return this; } public String getDocumentTypeID() { return DocumentTypeID; } public DB_DocumentsQuery setDocumentTypeID(String value) { this.DocumentTypeID = value; return this; } public String getDocumentTypeIDStartsWith() { return DocumentTypeIDStartsWith; } public DB_DocumentsQuery setDocumentTypeIDStartsWith(String value) { this.DocumentTypeIDStartsWith = value; return this; } public String getDocumentTypeIDEndsWith() { return DocumentTypeIDEndsWith; } public DB_DocumentsQuery setDocumentTypeIDEndsWith(String value) { this.DocumentTypeIDEndsWith = value; return this; } public String getDocumentTypeIDContains() { return DocumentTypeIDContains; } public DB_DocumentsQuery setDocumentTypeIDContains(String value) { this.DocumentTypeIDContains = value; return this; } public String getDocumentTypeIDLike() { return DocumentTypeIDLike; } public DB_DocumentsQuery setDocumentTypeIDLike(String value) { this.DocumentTypeIDLike = value; return this; } public ArrayList getDocumentTypeIDBetween() { return DocumentTypeIDBetween; } public DB_DocumentsQuery setDocumentTypeIDBetween(ArrayList value) { this.DocumentTypeIDBetween = value; return this; } public ArrayList getDocumentTypeIDIn() { return DocumentTypeIDIn; } public DB_DocumentsQuery setDocumentTypeIDIn(ArrayList value) { this.DocumentTypeIDIn = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public DB_DocumentsQuery setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getLastSavedDateTimeGreaterThanOrEqualTo() { return LastSavedDateTimeGreaterThanOrEqualTo; } public DB_DocumentsQuery setLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.LastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeGreaterThan() { return LastSavedDateTimeGreaterThan; } public DB_DocumentsQuery setLastSavedDateTimeGreaterThan(Date value) { this.LastSavedDateTimeGreaterThan = value; return this; } public Date getLastSavedDateTimeLessThan() { return LastSavedDateTimeLessThan; } public DB_DocumentsQuery setLastSavedDateTimeLessThan(Date value) { this.LastSavedDateTimeLessThan = value; return this; } public Date getLastSavedDateTimeLessThanOrEqualTo() { return LastSavedDateTimeLessThanOrEqualTo; } public DB_DocumentsQuery setLastSavedDateTimeLessThanOrEqualTo(Date value) { this.LastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeNotEqualTo() { return LastSavedDateTimeNotEqualTo; } public DB_DocumentsQuery setLastSavedDateTimeNotEqualTo(Date value) { this.LastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getLastSavedDateTimeBetween() { return LastSavedDateTimeBetween; } public DB_DocumentsQuery setLastSavedDateTimeBetween(ArrayList value) { this.LastSavedDateTimeBetween = value; return this; } public ArrayList getLastSavedDateTimeIn() { return LastSavedDateTimeIn; } public DB_DocumentsQuery setLastSavedDateTimeIn(ArrayList value) { this.LastSavedDateTimeIn = value; return this; } public String getLastSavedByStaffID() { return LastSavedByStaffID; } public DB_DocumentsQuery setLastSavedByStaffID(String value) { this.LastSavedByStaffID = value; return this; } public String getLastSavedByStaffIDStartsWith() { return LastSavedByStaffIDStartsWith; } public DB_DocumentsQuery setLastSavedByStaffIDStartsWith(String value) { this.LastSavedByStaffIDStartsWith = value; return this; } public String getLastSavedByStaffIDEndsWith() { return LastSavedByStaffIDEndsWith; } public DB_DocumentsQuery setLastSavedByStaffIDEndsWith(String value) { this.LastSavedByStaffIDEndsWith = value; return this; } public String getLastSavedByStaffIDContains() { return LastSavedByStaffIDContains; } public DB_DocumentsQuery setLastSavedByStaffIDContains(String value) { this.LastSavedByStaffIDContains = value; return this; } public String getLastSavedByStaffIDLike() { return LastSavedByStaffIDLike; } public DB_DocumentsQuery setLastSavedByStaffIDLike(String value) { this.LastSavedByStaffIDLike = value; return this; } public ArrayList getLastSavedByStaffIDBetween() { return LastSavedByStaffIDBetween; } public DB_DocumentsQuery setLastSavedByStaffIDBetween(ArrayList value) { this.LastSavedByStaffIDBetween = value; return this; } public ArrayList getLastSavedByStaffIDIn() { return LastSavedByStaffIDIn; } public DB_DocumentsQuery setLastSavedByStaffIDIn(ArrayList value) { this.LastSavedByStaffIDIn = value; return this; } public ArrayList getFileBinary() { return FileBinary; } public DB_DocumentsQuery setFileBinary(ArrayList value) { this.FileBinary = value; return this; } public String getDescription() { return Description; } public DB_DocumentsQuery setDescription(String value) { this.Description = value; return this; } public String getDescriptionStartsWith() { return DescriptionStartsWith; } public DB_DocumentsQuery setDescriptionStartsWith(String value) { this.DescriptionStartsWith = value; return this; } public String getDescriptionEndsWith() { return DescriptionEndsWith; } public DB_DocumentsQuery setDescriptionEndsWith(String value) { this.DescriptionEndsWith = value; return this; } public String getDescriptionContains() { return DescriptionContains; } public DB_DocumentsQuery setDescriptionContains(String value) { this.DescriptionContains = value; return this; } public String getDescriptionLike() { return DescriptionLike; } public DB_DocumentsQuery setDescriptionLike(String value) { this.DescriptionLike = value; return this; } public ArrayList getDescriptionBetween() { return DescriptionBetween; } public DB_DocumentsQuery setDescriptionBetween(ArrayList value) { this.DescriptionBetween = value; return this; } public ArrayList getDescriptionIn() { return DescriptionIn; } public DB_DocumentsQuery setDescriptionIn(ArrayList value) { this.DescriptionIn = value; return this; } public String getPhysicalFileName() { return PhysicalFileName; } public DB_DocumentsQuery setPhysicalFileName(String value) { this.PhysicalFileName = value; return this; } public String getPhysicalFileNameStartsWith() { return PhysicalFileNameStartsWith; } public DB_DocumentsQuery setPhysicalFileNameStartsWith(String value) { this.PhysicalFileNameStartsWith = value; return this; } public String getPhysicalFileNameEndsWith() { return PhysicalFileNameEndsWith; } public DB_DocumentsQuery setPhysicalFileNameEndsWith(String value) { this.PhysicalFileNameEndsWith = value; return this; } public String getPhysicalFileNameContains() { return PhysicalFileNameContains; } public DB_DocumentsQuery setPhysicalFileNameContains(String value) { this.PhysicalFileNameContains = value; return this; } public String getPhysicalFileNameLike() { return PhysicalFileNameLike; } public DB_DocumentsQuery setPhysicalFileNameLike(String value) { this.PhysicalFileNameLike = value; return this; } public ArrayList getPhysicalFileNameBetween() { return PhysicalFileNameBetween; } public DB_DocumentsQuery setPhysicalFileNameBetween(ArrayList value) { this.PhysicalFileNameBetween = value; return this; } public ArrayList getPhysicalFileNameIn() { return PhysicalFileNameIn; } public DB_DocumentsQuery setPhysicalFileNameIn(ArrayList value) { this.PhysicalFileNameIn = value; return this; } public Integer getItemNo() { return ItemNo; } public DB_DocumentsQuery setItemNo(Integer value) { this.ItemNo = value; return this; } public Integer getItemNoGreaterThanOrEqualTo() { return ItemNoGreaterThanOrEqualTo; } public DB_DocumentsQuery setItemNoGreaterThanOrEqualTo(Integer value) { this.ItemNoGreaterThanOrEqualTo = value; return this; } public Integer getItemNoGreaterThan() { return ItemNoGreaterThan; } public DB_DocumentsQuery setItemNoGreaterThan(Integer value) { this.ItemNoGreaterThan = value; return this; } public Integer getItemNoLessThan() { return ItemNoLessThan; } public DB_DocumentsQuery setItemNoLessThan(Integer value) { this.ItemNoLessThan = value; return this; } public Integer getItemNoLessThanOrEqualTo() { return ItemNoLessThanOrEqualTo; } public DB_DocumentsQuery setItemNoLessThanOrEqualTo(Integer value) { this.ItemNoLessThanOrEqualTo = value; return this; } public Integer getItemNoNotEqualTo() { return ItemNoNotEqualTo; } public DB_DocumentsQuery setItemNoNotEqualTo(Integer value) { this.ItemNoNotEqualTo = value; return this; } public ArrayList getItemNoBetween() { return ItemNoBetween; } public DB_DocumentsQuery setItemNoBetween(ArrayList value) { this.ItemNoBetween = value; return this; } public ArrayList getItemNoIn() { return ItemNoIn; } public DB_DocumentsQuery setItemNoIn(ArrayList value) { this.ItemNoIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class DB_EDIMainQuery extends QueryDb implements IReturn> { public String DebtorID = null; public String DebtorIDStartsWith = null; public String DebtorIDEndsWith = null; public String DebtorIDContains = null; public String DebtorIDLike = null; public ArrayList DebtorIDBetween = null; public ArrayList DebtorIDIn = null; public Boolean EDIEnabled = null; public String EDIAddress = null; public String EDIAddressStartsWith = null; public String EDIAddressEndsWith = null; public String EDIAddressContains = null; public String EDIAddressLike = null; public ArrayList EDIAddressBetween = null; public ArrayList EDIAddressIn = null; public Short EDIOrderType = null; public Short EDIOrderTypeGreaterThanOrEqualTo = null; public Short EDIOrderTypeGreaterThan = null; public Short EDIOrderTypeLessThan = null; public Short EDIOrderTypeLessThanOrEqualTo = null; public Short EDIOrderTypeNotEqualTo = null; public ArrayList EDIOrderTypeBetween = null; public ArrayList EDIOrderTypeIn = null; public Boolean EDIPricesIncludeTax = null; public String getDebtorID() { return DebtorID; } public DB_EDIMainQuery setDebtorID(String value) { this.DebtorID = value; return this; } public String getDebtorIDStartsWith() { return DebtorIDStartsWith; } public DB_EDIMainQuery setDebtorIDStartsWith(String value) { this.DebtorIDStartsWith = value; return this; } public String getDebtorIDEndsWith() { return DebtorIDEndsWith; } public DB_EDIMainQuery setDebtorIDEndsWith(String value) { this.DebtorIDEndsWith = value; return this; } public String getDebtorIDContains() { return DebtorIDContains; } public DB_EDIMainQuery setDebtorIDContains(String value) { this.DebtorIDContains = value; return this; } public String getDebtorIDLike() { return DebtorIDLike; } public DB_EDIMainQuery setDebtorIDLike(String value) { this.DebtorIDLike = value; return this; } public ArrayList getDebtorIDBetween() { return DebtorIDBetween; } public DB_EDIMainQuery setDebtorIDBetween(ArrayList value) { this.DebtorIDBetween = value; return this; } public ArrayList getDebtorIDIn() { return DebtorIDIn; } public DB_EDIMainQuery setDebtorIDIn(ArrayList value) { this.DebtorIDIn = value; return this; } public Boolean isEdiEnabled() { return EDIEnabled; } public DB_EDIMainQuery setEdiEnabled(Boolean value) { this.EDIEnabled = value; return this; } public String getEdiAddress() { return EDIAddress; } public DB_EDIMainQuery setEdiAddress(String value) { this.EDIAddress = value; return this; } public String getEdiAddressStartsWith() { return EDIAddressStartsWith; } public DB_EDIMainQuery setEdiAddressStartsWith(String value) { this.EDIAddressStartsWith = value; return this; } public String getEdiAddressEndsWith() { return EDIAddressEndsWith; } public DB_EDIMainQuery setEdiAddressEndsWith(String value) { this.EDIAddressEndsWith = value; return this; } public String getEdiAddressContains() { return EDIAddressContains; } public DB_EDIMainQuery setEdiAddressContains(String value) { this.EDIAddressContains = value; return this; } public String getEdiAddressLike() { return EDIAddressLike; } public DB_EDIMainQuery setEdiAddressLike(String value) { this.EDIAddressLike = value; return this; } public ArrayList getEdiAddressBetween() { return EDIAddressBetween; } public DB_EDIMainQuery setEdiAddressBetween(ArrayList value) { this.EDIAddressBetween = value; return this; } public ArrayList getEdiAddressIn() { return EDIAddressIn; } public DB_EDIMainQuery setEdiAddressIn(ArrayList value) { this.EDIAddressIn = value; return this; } public Short getEdiOrderType() { return EDIOrderType; } public DB_EDIMainQuery setEdiOrderType(Short value) { this.EDIOrderType = value; return this; } public Short getEdiOrderTypeGreaterThanOrEqualTo() { return EDIOrderTypeGreaterThanOrEqualTo; } public DB_EDIMainQuery setEdiOrderTypeGreaterThanOrEqualTo(Short value) { this.EDIOrderTypeGreaterThanOrEqualTo = value; return this; } public Short getEdiOrderTypeGreaterThan() { return EDIOrderTypeGreaterThan; } public DB_EDIMainQuery setEdiOrderTypeGreaterThan(Short value) { this.EDIOrderTypeGreaterThan = value; return this; } public Short getEdiOrderTypeLessThan() { return EDIOrderTypeLessThan; } public DB_EDIMainQuery setEdiOrderTypeLessThan(Short value) { this.EDIOrderTypeLessThan = value; return this; } public Short getEdiOrderTypeLessThanOrEqualTo() { return EDIOrderTypeLessThanOrEqualTo; } public DB_EDIMainQuery setEdiOrderTypeLessThanOrEqualTo(Short value) { this.EDIOrderTypeLessThanOrEqualTo = value; return this; } public Short getEdiOrderTypeNotEqualTo() { return EDIOrderTypeNotEqualTo; } public DB_EDIMainQuery setEdiOrderTypeNotEqualTo(Short value) { this.EDIOrderTypeNotEqualTo = value; return this; } public ArrayList getEdiOrderTypeBetween() { return EDIOrderTypeBetween; } public DB_EDIMainQuery setEdiOrderTypeBetween(ArrayList value) { this.EDIOrderTypeBetween = value; return this; } public ArrayList getEdiOrderTypeIn() { return EDIOrderTypeIn; } public DB_EDIMainQuery setEdiOrderTypeIn(ArrayList value) { this.EDIOrderTypeIn = value; return this; } public Boolean isEdiPricesIncludeTax() { return EDIPricesIncludeTax; } public DB_EDIMainQuery setEdiPricesIncludeTax(Boolean value) { this.EDIPricesIncludeTax = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class DB_FreightForwardAddressQuery extends QueryDb implements IReturn> { public String FreightForwardID = null; public String FreightForwardIDStartsWith = null; public String FreightForwardIDEndsWith = null; public String FreightForwardIDContains = null; public String FreightForwardIDLike = null; public ArrayList FreightForwardIDBetween = null; public ArrayList FreightForwardIDIn = null; public String DebtorID = null; public String DebtorIDStartsWith = null; public String DebtorIDEndsWith = null; public String DebtorIDContains = null; public String DebtorIDLike = null; public ArrayList DebtorIDBetween = null; public ArrayList DebtorIDIn = null; public String Address1 = null; public String Address1StartsWith = null; public String Address1EndsWith = null; public String Address1Contains = null; public String Address1Like = null; public ArrayList Address1Between = null; public ArrayList Address1In = null; public String Address2 = null; public String Address2StartsWith = null; public String Address2EndsWith = null; public String Address2Contains = null; public String Address2Like = null; public ArrayList Address2Between = null; public ArrayList Address2In = null; public String Address3 = null; public String Address3StartsWith = null; public String Address3EndsWith = null; public String Address3Contains = null; public String Address3Like = null; public ArrayList Address3Between = null; public ArrayList Address3In = null; public String Address4 = null; public String Address4StartsWith = null; public String Address4EndsWith = null; public String Address4Contains = null; public String Address4Like = null; public ArrayList Address4Between = null; public ArrayList Address4In = null; public String Notes = null; public String NotesStartsWith = null; public String NotesEndsWith = null; public String NotesContains = null; public String NotesLike = null; public ArrayList NotesBetween = null; public ArrayList NotesIn = null; public Boolean DefaultItem = null; public Integer LineNum = null; public Integer LineNumGreaterThanOrEqualTo = null; public Integer LineNumGreaterThan = null; public Integer LineNumLessThan = null; public Integer LineNumLessThanOrEqualTo = null; public Integer LineNumNotEqualTo = null; public ArrayList LineNumBetween = null; public ArrayList LineNumIn = null; public String Country = null; public String CountryStartsWith = null; public String CountryEndsWith = null; public String CountryContains = null; public String CountryLike = null; public ArrayList CountryBetween = null; public ArrayList CountryIn = null; public String getFreightForwardID() { return FreightForwardID; } public DB_FreightForwardAddressQuery setFreightForwardID(String value) { this.FreightForwardID = value; return this; } public String getFreightForwardIDStartsWith() { return FreightForwardIDStartsWith; } public DB_FreightForwardAddressQuery setFreightForwardIDStartsWith(String value) { this.FreightForwardIDStartsWith = value; return this; } public String getFreightForwardIDEndsWith() { return FreightForwardIDEndsWith; } public DB_FreightForwardAddressQuery setFreightForwardIDEndsWith(String value) { this.FreightForwardIDEndsWith = value; return this; } public String getFreightForwardIDContains() { return FreightForwardIDContains; } public DB_FreightForwardAddressQuery setFreightForwardIDContains(String value) { this.FreightForwardIDContains = value; return this; } public String getFreightForwardIDLike() { return FreightForwardIDLike; } public DB_FreightForwardAddressQuery setFreightForwardIDLike(String value) { this.FreightForwardIDLike = value; return this; } public ArrayList getFreightForwardIDBetween() { return FreightForwardIDBetween; } public DB_FreightForwardAddressQuery setFreightForwardIDBetween(ArrayList value) { this.FreightForwardIDBetween = value; return this; } public ArrayList getFreightForwardIDIn() { return FreightForwardIDIn; } public DB_FreightForwardAddressQuery setFreightForwardIDIn(ArrayList value) { this.FreightForwardIDIn = value; return this; } public String getDebtorID() { return DebtorID; } public DB_FreightForwardAddressQuery setDebtorID(String value) { this.DebtorID = value; return this; } public String getDebtorIDStartsWith() { return DebtorIDStartsWith; } public DB_FreightForwardAddressQuery setDebtorIDStartsWith(String value) { this.DebtorIDStartsWith = value; return this; } public String getDebtorIDEndsWith() { return DebtorIDEndsWith; } public DB_FreightForwardAddressQuery setDebtorIDEndsWith(String value) { this.DebtorIDEndsWith = value; return this; } public String getDebtorIDContains() { return DebtorIDContains; } public DB_FreightForwardAddressQuery setDebtorIDContains(String value) { this.DebtorIDContains = value; return this; } public String getDebtorIDLike() { return DebtorIDLike; } public DB_FreightForwardAddressQuery setDebtorIDLike(String value) { this.DebtorIDLike = value; return this; } public ArrayList getDebtorIDBetween() { return DebtorIDBetween; } public DB_FreightForwardAddressQuery setDebtorIDBetween(ArrayList value) { this.DebtorIDBetween = value; return this; } public ArrayList getDebtorIDIn() { return DebtorIDIn; } public DB_FreightForwardAddressQuery setDebtorIDIn(ArrayList value) { this.DebtorIDIn = value; return this; } public String getAddress1() { return Address1; } public DB_FreightForwardAddressQuery setAddress1(String value) { this.Address1 = value; return this; } public String getAddress1StartsWith() { return Address1StartsWith; } public DB_FreightForwardAddressQuery setAddress1StartsWith(String value) { this.Address1StartsWith = value; return this; } public String getAddress1EndsWith() { return Address1EndsWith; } public DB_FreightForwardAddressQuery setAddress1EndsWith(String value) { this.Address1EndsWith = value; return this; } public String getAddress1Contains() { return Address1Contains; } public DB_FreightForwardAddressQuery setAddress1Contains(String value) { this.Address1Contains = value; return this; } public String getAddress1Like() { return Address1Like; } public DB_FreightForwardAddressQuery setAddress1Like(String value) { this.Address1Like = value; return this; } public ArrayList getAddress1Between() { return Address1Between; } public DB_FreightForwardAddressQuery setAddress1Between(ArrayList value) { this.Address1Between = value; return this; } public ArrayList getAddress1In() { return Address1In; } public DB_FreightForwardAddressQuery setAddress1In(ArrayList value) { this.Address1In = value; return this; } public String getAddress2() { return Address2; } public DB_FreightForwardAddressQuery setAddress2(String value) { this.Address2 = value; return this; } public String getAddress2StartsWith() { return Address2StartsWith; } public DB_FreightForwardAddressQuery setAddress2StartsWith(String value) { this.Address2StartsWith = value; return this; } public String getAddress2EndsWith() { return Address2EndsWith; } public DB_FreightForwardAddressQuery setAddress2EndsWith(String value) { this.Address2EndsWith = value; return this; } public String getAddress2Contains() { return Address2Contains; } public DB_FreightForwardAddressQuery setAddress2Contains(String value) { this.Address2Contains = value; return this; } public String getAddress2Like() { return Address2Like; } public DB_FreightForwardAddressQuery setAddress2Like(String value) { this.Address2Like = value; return this; } public ArrayList getAddress2Between() { return Address2Between; } public DB_FreightForwardAddressQuery setAddress2Between(ArrayList value) { this.Address2Between = value; return this; } public ArrayList getAddress2In() { return Address2In; } public DB_FreightForwardAddressQuery setAddress2In(ArrayList value) { this.Address2In = value; return this; } public String getAddress3() { return Address3; } public DB_FreightForwardAddressQuery setAddress3(String value) { this.Address3 = value; return this; } public String getAddress3StartsWith() { return Address3StartsWith; } public DB_FreightForwardAddressQuery setAddress3StartsWith(String value) { this.Address3StartsWith = value; return this; } public String getAddress3EndsWith() { return Address3EndsWith; } public DB_FreightForwardAddressQuery setAddress3EndsWith(String value) { this.Address3EndsWith = value; return this; } public String getAddress3Contains() { return Address3Contains; } public DB_FreightForwardAddressQuery setAddress3Contains(String value) { this.Address3Contains = value; return this; } public String getAddress3Like() { return Address3Like; } public DB_FreightForwardAddressQuery setAddress3Like(String value) { this.Address3Like = value; return this; } public ArrayList getAddress3Between() { return Address3Between; } public DB_FreightForwardAddressQuery setAddress3Between(ArrayList value) { this.Address3Between = value; return this; } public ArrayList getAddress3In() { return Address3In; } public DB_FreightForwardAddressQuery setAddress3In(ArrayList value) { this.Address3In = value; return this; } public String getAddress4() { return Address4; } public DB_FreightForwardAddressQuery setAddress4(String value) { this.Address4 = value; return this; } public String getAddress4StartsWith() { return Address4StartsWith; } public DB_FreightForwardAddressQuery setAddress4StartsWith(String value) { this.Address4StartsWith = value; return this; } public String getAddress4EndsWith() { return Address4EndsWith; } public DB_FreightForwardAddressQuery setAddress4EndsWith(String value) { this.Address4EndsWith = value; return this; } public String getAddress4Contains() { return Address4Contains; } public DB_FreightForwardAddressQuery setAddress4Contains(String value) { this.Address4Contains = value; return this; } public String getAddress4Like() { return Address4Like; } public DB_FreightForwardAddressQuery setAddress4Like(String value) { this.Address4Like = value; return this; } public ArrayList getAddress4Between() { return Address4Between; } public DB_FreightForwardAddressQuery setAddress4Between(ArrayList value) { this.Address4Between = value; return this; } public ArrayList getAddress4In() { return Address4In; } public DB_FreightForwardAddressQuery setAddress4In(ArrayList value) { this.Address4In = value; return this; } public String getNotes() { return Notes; } public DB_FreightForwardAddressQuery setNotes(String value) { this.Notes = value; return this; } public String getNotesStartsWith() { return NotesStartsWith; } public DB_FreightForwardAddressQuery setNotesStartsWith(String value) { this.NotesStartsWith = value; return this; } public String getNotesEndsWith() { return NotesEndsWith; } public DB_FreightForwardAddressQuery setNotesEndsWith(String value) { this.NotesEndsWith = value; return this; } public String getNotesContains() { return NotesContains; } public DB_FreightForwardAddressQuery setNotesContains(String value) { this.NotesContains = value; return this; } public String getNotesLike() { return NotesLike; } public DB_FreightForwardAddressQuery setNotesLike(String value) { this.NotesLike = value; return this; } public ArrayList getNotesBetween() { return NotesBetween; } public DB_FreightForwardAddressQuery setNotesBetween(ArrayList value) { this.NotesBetween = value; return this; } public ArrayList getNotesIn() { return NotesIn; } public DB_FreightForwardAddressQuery setNotesIn(ArrayList value) { this.NotesIn = value; return this; } public Boolean isDefaultItem() { return DefaultItem; } public DB_FreightForwardAddressQuery setDefaultItem(Boolean value) { this.DefaultItem = value; return this; } public Integer getLineNum() { return LineNum; } public DB_FreightForwardAddressQuery setLineNum(Integer value) { this.LineNum = value; return this; } public Integer getLineNumGreaterThanOrEqualTo() { return LineNumGreaterThanOrEqualTo; } public DB_FreightForwardAddressQuery setLineNumGreaterThanOrEqualTo(Integer value) { this.LineNumGreaterThanOrEqualTo = value; return this; } public Integer getLineNumGreaterThan() { return LineNumGreaterThan; } public DB_FreightForwardAddressQuery setLineNumGreaterThan(Integer value) { this.LineNumGreaterThan = value; return this; } public Integer getLineNumLessThan() { return LineNumLessThan; } public DB_FreightForwardAddressQuery setLineNumLessThan(Integer value) { this.LineNumLessThan = value; return this; } public Integer getLineNumLessThanOrEqualTo() { return LineNumLessThanOrEqualTo; } public DB_FreightForwardAddressQuery setLineNumLessThanOrEqualTo(Integer value) { this.LineNumLessThanOrEqualTo = value; return this; } public Integer getLineNumNotEqualTo() { return LineNumNotEqualTo; } public DB_FreightForwardAddressQuery setLineNumNotEqualTo(Integer value) { this.LineNumNotEqualTo = value; return this; } public ArrayList getLineNumBetween() { return LineNumBetween; } public DB_FreightForwardAddressQuery setLineNumBetween(ArrayList value) { this.LineNumBetween = value; return this; } public ArrayList getLineNumIn() { return LineNumIn; } public DB_FreightForwardAddressQuery setLineNumIn(ArrayList value) { this.LineNumIn = value; return this; } public String getCountry() { return Country; } public DB_FreightForwardAddressQuery setCountry(String value) { this.Country = value; return this; } public String getCountryStartsWith() { return CountryStartsWith; } public DB_FreightForwardAddressQuery setCountryStartsWith(String value) { this.CountryStartsWith = value; return this; } public String getCountryEndsWith() { return CountryEndsWith; } public DB_FreightForwardAddressQuery setCountryEndsWith(String value) { this.CountryEndsWith = value; return this; } public String getCountryContains() { return CountryContains; } public DB_FreightForwardAddressQuery setCountryContains(String value) { this.CountryContains = value; return this; } public String getCountryLike() { return CountryLike; } public DB_FreightForwardAddressQuery setCountryLike(String value) { this.CountryLike = value; return this; } public ArrayList getCountryBetween() { return CountryBetween; } public DB_FreightForwardAddressQuery setCountryBetween(ArrayList value) { this.CountryBetween = value; return this; } public ArrayList getCountryIn() { return CountryIn; } public DB_FreightForwardAddressQuery setCountryIn(ArrayList value) { this.CountryIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class DB_GLAuditQuery extends QueryDb implements IReturn> { public String GLLedgerID = null; public String GLLedgerIDStartsWith = null; public String GLLedgerIDEndsWith = null; public String GLLedgerIDContains = null; public String GLLedgerIDLike = null; public ArrayList GLLedgerIDBetween = null; public ArrayList GLLedgerIDIn = null; public BigDecimal LedgerValue = null; public BigDecimal LedgerValueGreaterThanOrEqualTo = null; public BigDecimal LedgerValueGreaterThan = null; public BigDecimal LedgerValueLessThan = null; public BigDecimal LedgerValueLessThanOrEqualTo = null; public BigDecimal LedgerValueNotEqualTo = null; public ArrayList LedgerValueBetween = null; public ArrayList LedgerValueIn = null; public String ReportGroup = null; public String ReportGroupStartsWith = null; public String ReportGroupEndsWith = null; public String ReportGroupContains = null; public String ReportGroupLike = null; public ArrayList ReportGroupBetween = null; public ArrayList ReportGroupIn = null; public String getGlLedgerID() { return GLLedgerID; } public DB_GLAuditQuery setGlLedgerID(String value) { this.GLLedgerID = value; return this; } public String getGlLedgerIDStartsWith() { return GLLedgerIDStartsWith; } public DB_GLAuditQuery setGlLedgerIDStartsWith(String value) { this.GLLedgerIDStartsWith = value; return this; } public String getGlLedgerIDEndsWith() { return GLLedgerIDEndsWith; } public DB_GLAuditQuery setGlLedgerIDEndsWith(String value) { this.GLLedgerIDEndsWith = value; return this; } public String getGlLedgerIDContains() { return GLLedgerIDContains; } public DB_GLAuditQuery setGlLedgerIDContains(String value) { this.GLLedgerIDContains = value; return this; } public String getGlLedgerIDLike() { return GLLedgerIDLike; } public DB_GLAuditQuery setGlLedgerIDLike(String value) { this.GLLedgerIDLike = value; return this; } public ArrayList getGlLedgerIDBetween() { return GLLedgerIDBetween; } public DB_GLAuditQuery setGlLedgerIDBetween(ArrayList value) { this.GLLedgerIDBetween = value; return this; } public ArrayList getGlLedgerIDIn() { return GLLedgerIDIn; } public DB_GLAuditQuery setGlLedgerIDIn(ArrayList value) { this.GLLedgerIDIn = value; return this; } public BigDecimal getLedgerValue() { return LedgerValue; } public DB_GLAuditQuery setLedgerValue(BigDecimal value) { this.LedgerValue = value; return this; } public BigDecimal getLedgerValueGreaterThanOrEqualTo() { return LedgerValueGreaterThanOrEqualTo; } public DB_GLAuditQuery setLedgerValueGreaterThanOrEqualTo(BigDecimal value) { this.LedgerValueGreaterThanOrEqualTo = value; return this; } public BigDecimal getLedgerValueGreaterThan() { return LedgerValueGreaterThan; } public DB_GLAuditQuery setLedgerValueGreaterThan(BigDecimal value) { this.LedgerValueGreaterThan = value; return this; } public BigDecimal getLedgerValueLessThan() { return LedgerValueLessThan; } public DB_GLAuditQuery setLedgerValueLessThan(BigDecimal value) { this.LedgerValueLessThan = value; return this; } public BigDecimal getLedgerValueLessThanOrEqualTo() { return LedgerValueLessThanOrEqualTo; } public DB_GLAuditQuery setLedgerValueLessThanOrEqualTo(BigDecimal value) { this.LedgerValueLessThanOrEqualTo = value; return this; } public BigDecimal getLedgerValueNotEqualTo() { return LedgerValueNotEqualTo; } public DB_GLAuditQuery setLedgerValueNotEqualTo(BigDecimal value) { this.LedgerValueNotEqualTo = value; return this; } public ArrayList getLedgerValueBetween() { return LedgerValueBetween; } public DB_GLAuditQuery setLedgerValueBetween(ArrayList value) { this.LedgerValueBetween = value; return this; } public ArrayList getLedgerValueIn() { return LedgerValueIn; } public DB_GLAuditQuery setLedgerValueIn(ArrayList value) { this.LedgerValueIn = value; return this; } public String getReportGroup() { return ReportGroup; } public DB_GLAuditQuery setReportGroup(String value) { this.ReportGroup = value; return this; } public String getReportGroupStartsWith() { return ReportGroupStartsWith; } public DB_GLAuditQuery setReportGroupStartsWith(String value) { this.ReportGroupStartsWith = value; return this; } public String getReportGroupEndsWith() { return ReportGroupEndsWith; } public DB_GLAuditQuery setReportGroupEndsWith(String value) { this.ReportGroupEndsWith = value; return this; } public String getReportGroupContains() { return ReportGroupContains; } public DB_GLAuditQuery setReportGroupContains(String value) { this.ReportGroupContains = value; return this; } public String getReportGroupLike() { return ReportGroupLike; } public DB_GLAuditQuery setReportGroupLike(String value) { this.ReportGroupLike = value; return this; } public ArrayList getReportGroupBetween() { return ReportGroupBetween; } public DB_GLAuditQuery setReportGroupBetween(ArrayList value) { this.ReportGroupBetween = value; return this; } public ArrayList getReportGroupIn() { return ReportGroupIn; } public DB_GLAuditQuery setReportGroupIn(ArrayList value) { this.ReportGroupIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @Route(Path="/Queries/DB_Main", Verbs="GET") @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class DB_MainQuery extends QueryDb implements IReturn> { public String DebtorID = null; public String DebtorIDStartsWith = null; public String DebtorIDEndsWith = null; public String DebtorIDContains = null; public String DebtorIDLike = null; public ArrayList DebtorIDBetween = null; public ArrayList DebtorIDIn = null; public Date LastSavedDateTime = null; public Date LastSavedDateTimeGreaterThanOrEqualTo = null; public Date LastSavedDateTimeGreaterThan = null; public Date LastSavedDateTimeLessThan = null; public Date LastSavedDateTimeLessThanOrEqualTo = null; public Date LastSavedDateTimeNotEqualTo = null; public ArrayList LastSavedDateTimeBetween = null; public ArrayList LastSavedDateTimeIn = null; public String AccountNo = null; public String AccountNoStartsWith = null; public String AccountNoEndsWith = null; public String AccountNoContains = null; public String AccountNoLike = null; public ArrayList AccountNoBetween = null; public ArrayList AccountNoIn = null; public String Name = null; public String NameStartsWith = null; public String NameEndsWith = null; public String NameContains = null; public String NameLike = null; public ArrayList NameBetween = null; public ArrayList NameIn = null; public String Address1 = null; public String Address1StartsWith = null; public String Address1EndsWith = null; public String Address1Contains = null; public String Address1Like = null; public ArrayList Address1Between = null; public ArrayList Address1In = null; public String Address2 = null; public String Address2StartsWith = null; public String Address2EndsWith = null; public String Address2Contains = null; public String Address2Like = null; public ArrayList Address2Between = null; public ArrayList Address2In = null; public String Address3 = null; public String Address3StartsWith = null; public String Address3EndsWith = null; public String Address3Contains = null; public String Address3Like = null; public ArrayList Address3Between = null; public ArrayList Address3In = null; public String Address4 = null; public String Address4StartsWith = null; public String Address4EndsWith = null; public String Address4Contains = null; public String Address4Like = null; public ArrayList Address4Between = null; public ArrayList Address4In = null; public String PostCode = null; public String PostCodeStartsWith = null; public String PostCodeEndsWith = null; public String PostCodeContains = null; public String PostCodeLike = null; public ArrayList PostCodeBetween = null; public ArrayList PostCodeIn = null; public String Phone = null; public String PhoneStartsWith = null; public String PhoneEndsWith = null; public String PhoneContains = null; public String PhoneLike = null; public ArrayList PhoneBetween = null; public ArrayList PhoneIn = null; public String Fax = null; public String FaxStartsWith = null; public String FaxEndsWith = null; public String FaxContains = null; public String FaxLike = null; public ArrayList FaxBetween = null; public ArrayList FaxIn = null; public String BankName = null; public String BankNameStartsWith = null; public String BankNameEndsWith = null; public String BankNameContains = null; public String BankNameLike = null; public ArrayList BankNameBetween = null; public ArrayList BankNameIn = null; public String BankAcc = null; public String BankAccStartsWith = null; public String BankAccEndsWith = null; public String BankAccContains = null; public String BankAccLike = null; public ArrayList BankAccBetween = null; public ArrayList BankAccIn = null; public String BSBN = null; public String BSBNStartsWith = null; public String BSBNEndsWith = null; public String BSBNContains = null; public String BSBNLike = null; public ArrayList BSBNBetween = null; public ArrayList BSBNIn = null; public String AccountName = null; public String AccountNameStartsWith = null; public String AccountNameEndsWith = null; public String AccountNameContains = null; public String AccountNameLike = null; public ArrayList AccountNameBetween = null; public ArrayList AccountNameIn = null; public String TaxExemptNo = null; public String TaxExemptNoStartsWith = null; public String TaxExemptNoEndsWith = null; public String TaxExemptNoContains = null; public String TaxExemptNoLike = null; public ArrayList TaxExemptNoBetween = null; public ArrayList TaxExemptNoIn = null; public BigDecimal CreditLimit = null; public BigDecimal CreditLimitGreaterThanOrEqualTo = null; public BigDecimal CreditLimitGreaterThan = null; public BigDecimal CreditLimitLessThan = null; public BigDecimal CreditLimitLessThanOrEqualTo = null; public BigDecimal CreditLimitNotEqualTo = null; public ArrayList CreditLimitBetween = null; public ArrayList CreditLimitIn = null; public Short EarlyPayDisOnStatsDays = null; public Short EarlyPayDisOnStatsDaysGreaterThanOrEqualTo = null; public Short EarlyPayDisOnStatsDaysGreaterThan = null; public Short EarlyPayDisOnStatsDaysLessThan = null; public Short EarlyPayDisOnStatsDaysLessThanOrEqualTo = null; public Short EarlyPayDisOnStatsDaysNotEqualTo = null; public ArrayList EarlyPayDisOnStatsDaysBetween = null; public ArrayList EarlyPayDisOnStatsDaysIn = null; public BigDecimal EarlyPayDisOnStatsAmt = null; public BigDecimal EarlyPayDisOnStatsAmtGreaterThanOrEqualTo = null; public BigDecimal EarlyPayDisOnStatsAmtGreaterThan = null; public BigDecimal EarlyPayDisOnStatsAmtLessThan = null; public BigDecimal EarlyPayDisOnStatsAmtLessThanOrEqualTo = null; public BigDecimal EarlyPayDisOnStatsAmtNotEqualTo = null; public ArrayList EarlyPayDisOnStatsAmtBetween = null; public ArrayList EarlyPayDisOnStatsAmtIn = null; public Date LastPurchaseDate = null; public Date LastPurchaseDateGreaterThanOrEqualTo = null; public Date LastPurchaseDateGreaterThan = null; public Date LastPurchaseDateLessThan = null; public Date LastPurchaseDateLessThanOrEqualTo = null; public Date LastPurchaseDateNotEqualTo = null; public ArrayList LastPurchaseDateBetween = null; public ArrayList LastPurchaseDateIn = null; public Date LastPaymentDate = null; public Date LastPaymentDateGreaterThanOrEqualTo = null; public Date LastPaymentDateGreaterThan = null; public Date LastPaymentDateLessThan = null; public Date LastPaymentDateLessThanOrEqualTo = null; public Date LastPaymentDateNotEqualTo = null; public ArrayList LastPaymentDateBetween = null; public ArrayList LastPaymentDateIn = null; public BigDecimal StandingDisOnInvoices = null; public BigDecimal StandingDisOnInvoicesGreaterThanOrEqualTo = null; public BigDecimal StandingDisOnInvoicesGreaterThan = null; public BigDecimal StandingDisOnInvoicesLessThan = null; public BigDecimal StandingDisOnInvoicesLessThanOrEqualTo = null; public BigDecimal StandingDisOnInvoicesNotEqualTo = null; public ArrayList StandingDisOnInvoicesBetween = null; public ArrayList StandingDisOnInvoicesIn = null; public String ClassificationID = null; public String ClassificationIDStartsWith = null; public String ClassificationIDEndsWith = null; public String ClassificationIDContains = null; public String ClassificationIDLike = null; public ArrayList ClassificationIDBetween = null; public ArrayList ClassificationIDIn = null; public Boolean AccountOnHold = null; public String EmailAddress = null; public String EmailAddressStartsWith = null; public String EmailAddressEndsWith = null; public String EmailAddressContains = null; public String EmailAddressLike = null; public ArrayList EmailAddressBetween = null; public ArrayList EmailAddressIn = null; public BigDecimal CurrentBalance = null; public BigDecimal CurrentBalanceGreaterThanOrEqualTo = null; public BigDecimal CurrentBalanceGreaterThan = null; public BigDecimal CurrentBalanceLessThan = null; public BigDecimal CurrentBalanceLessThanOrEqualTo = null; public BigDecimal CurrentBalanceNotEqualTo = null; public ArrayList CurrentBalanceBetween = null; public ArrayList CurrentBalanceIn = null; public BigDecimal Period1 = null; public BigDecimal Period1GreaterThanOrEqualTo = null; public BigDecimal Period1GreaterThan = null; public BigDecimal Period1LessThan = null; public BigDecimal Period1LessThanOrEqualTo = null; public BigDecimal Period1NotEqualTo = null; public ArrayList Period1Between = null; public ArrayList Period1In = null; public BigDecimal Period2 = null; public BigDecimal Period2GreaterThanOrEqualTo = null; public BigDecimal Period2GreaterThan = null; public BigDecimal Period2LessThan = null; public BigDecimal Period2LessThanOrEqualTo = null; public BigDecimal Period2NotEqualTo = null; public ArrayList Period2Between = null; public ArrayList Period2In = null; public BigDecimal Period3 = null; public BigDecimal Period3GreaterThanOrEqualTo = null; public BigDecimal Period3GreaterThan = null; public BigDecimal Period3LessThan = null; public BigDecimal Period3LessThanOrEqualTo = null; public BigDecimal Period3NotEqualTo = null; public ArrayList Period3Between = null; public ArrayList Period3In = null; public BigDecimal Period4 = null; public BigDecimal Period4GreaterThanOrEqualTo = null; public BigDecimal Period4GreaterThan = null; public BigDecimal Period4LessThan = null; public BigDecimal Period4LessThanOrEqualTo = null; public BigDecimal Period4NotEqualTo = null; public ArrayList Period4Between = null; public ArrayList Period4In = null; public String AltAccountNo = null; public String AltAccountNoStartsWith = null; public String AltAccountNoEndsWith = null; public String AltAccountNoContains = null; public String AltAccountNoLike = null; public ArrayList AltAccountNoBetween = null; public ArrayList AltAccountNoIn = null; public Boolean NotifyRequired = null; public String NotifyAddress = null; public String NotifyAddressStartsWith = null; public String NotifyAddressEndsWith = null; public String NotifyAddressContains = null; public String NotifyAddressLike = null; public ArrayList NotifyAddressBetween = null; public ArrayList NotifyAddressIn = null; public Date CommenceDate = null; public Date CommenceDateGreaterThanOrEqualTo = null; public Date CommenceDateGreaterThan = null; public Date CommenceDateLessThan = null; public Date CommenceDateLessThanOrEqualTo = null; public Date CommenceDateNotEqualTo = null; public ArrayList CommenceDateBetween = null; public ArrayList CommenceDateIn = null; public Boolean WebAccess = null; public String ParentDebtorID = null; public String ParentDebtorIDStartsWith = null; public String ParentDebtorIDEndsWith = null; public String ParentDebtorIDContains = null; public String ParentDebtorIDLike = null; public ArrayList ParentDebtorIDBetween = null; public ArrayList ParentDebtorIDIn = null; public Date AllocLastSavedDateTime = null; public Date AllocLastSavedDateTimeGreaterThanOrEqualTo = null; public Date AllocLastSavedDateTimeGreaterThan = null; public Date AllocLastSavedDateTimeLessThan = null; public Date AllocLastSavedDateTimeLessThanOrEqualTo = null; public Date AllocLastSavedDateTimeNotEqualTo = null; public ArrayList AllocLastSavedDateTimeBetween = null; public ArrayList AllocLastSavedDateTimeIn = null; public String PriceSchemeID = null; public String PriceSchemeIDStartsWith = null; public String PriceSchemeIDEndsWith = null; public String PriceSchemeIDContains = null; public String PriceSchemeIDLike = null; public ArrayList PriceSchemeIDBetween = null; public ArrayList PriceSchemeIDIn = null; public String AustPostDPID = null; public String AustPostDPIDStartsWith = null; public String AustPostDPIDEndsWith = null; public String AustPostDPIDContains = null; public String AustPostDPIDLike = null; public ArrayList AustPostDPIDBetween = null; public ArrayList AustPostDPIDIn = null; public String AustPostBCSP = null; public String AustPostBCSPStartsWith = null; public String AustPostBCSPEndsWith = null; public String AustPostBCSPContains = null; public String AustPostBCSPLike = null; public ArrayList AustPostBCSPBetween = null; public ArrayList AustPostBCSPIn = null; public String TradingName = null; public String TradingNameStartsWith = null; public String TradingNameEndsWith = null; public String TradingNameContains = null; public String TradingNameLike = null; public ArrayList TradingNameBetween = null; public ArrayList TradingNameIn = null; public String CompanyName = null; public String CompanyNameStartsWith = null; public String CompanyNameEndsWith = null; public String CompanyNameContains = null; public String CompanyNameLike = null; public ArrayList CompanyNameBetween = null; public ArrayList CompanyNameIn = null; public String ACN = null; public String ACNStartsWith = null; public String ACNEndsWith = null; public String ACNContains = null; public String ACNLike = null; public ArrayList ACNBetween = null; public ArrayList ACNIn = null; public String ProprietorsName = null; public String ProprietorsNameStartsWith = null; public String ProprietorsNameEndsWith = null; public String ProprietorsNameContains = null; public String ProprietorsNameLike = null; public ArrayList ProprietorsNameBetween = null; public ArrayList ProprietorsNameIn = null; public String FaxHeader = null; public String FaxHeaderStartsWith = null; public String FaxHeaderEndsWith = null; public String FaxHeaderContains = null; public String FaxHeaderLike = null; public ArrayList FaxHeaderBetween = null; public ArrayList FaxHeaderIn = null; public String LedgerIDDebtorControl = null; public String LedgerIDDebtorControlStartsWith = null; public String LedgerIDDebtorControlEndsWith = null; public String LedgerIDDebtorControlContains = null; public String LedgerIDDebtorControlLike = null; public ArrayList LedgerIDDebtorControlBetween = null; public ArrayList LedgerIDDebtorControlIn = null; public String LedgerIDDebtorSales = null; public String LedgerIDDebtorSalesStartsWith = null; public String LedgerIDDebtorSalesEndsWith = null; public String LedgerIDDebtorSalesContains = null; public String LedgerIDDebtorSalesLike = null; public ArrayList LedgerIDDebtorSalesBetween = null; public ArrayList LedgerIDDebtorSalesIn = null; public String LedgerIDDebtorDiscounts = null; public String LedgerIDDebtorDiscountsStartsWith = null; public String LedgerIDDebtorDiscountsEndsWith = null; public String LedgerIDDebtorDiscountsContains = null; public String LedgerIDDebtorDiscountsLike = null; public ArrayList LedgerIDDebtorDiscountsBetween = null; public ArrayList LedgerIDDebtorDiscountsIn = null; public String LedgerIDDebtorSourcedInvoices = null; public String LedgerIDDebtorSourcedInvoicesStartsWith = null; public String LedgerIDDebtorSourcedInvoicesEndsWith = null; public String LedgerIDDebtorSourcedInvoicesContains = null; public String LedgerIDDebtorSourcedInvoicesLike = null; public ArrayList LedgerIDDebtorSourcedInvoicesBetween = null; public ArrayList LedgerIDDebtorSourcedInvoicesIn = null; public String LedgerIDDebtorDebitAdjustment = null; public String LedgerIDDebtorDebitAdjustmentStartsWith = null; public String LedgerIDDebtorDebitAdjustmentEndsWith = null; public String LedgerIDDebtorDebitAdjustmentContains = null; public String LedgerIDDebtorDebitAdjustmentLike = null; public ArrayList LedgerIDDebtorDebitAdjustmentBetween = null; public ArrayList LedgerIDDebtorDebitAdjustmentIn = null; public String LedgerIDDebtorSourcedReceipts = null; public String LedgerIDDebtorSourcedReceiptsStartsWith = null; public String LedgerIDDebtorSourcedReceiptsEndsWith = null; public String LedgerIDDebtorSourcedReceiptsContains = null; public String LedgerIDDebtorSourcedReceiptsLike = null; public ArrayList LedgerIDDebtorSourcedReceiptsBetween = null; public ArrayList LedgerIDDebtorSourcedReceiptsIn = null; public String LedgerIDDebtorCreditAdjustment = null; public String LedgerIDDebtorCreditAdjustmentStartsWith = null; public String LedgerIDDebtorCreditAdjustmentEndsWith = null; public String LedgerIDDebtorCreditAdjustmentContains = null; public String LedgerIDDebtorCreditAdjustmentLike = null; public ArrayList LedgerIDDebtorCreditAdjustmentBetween = null; public ArrayList LedgerIDDebtorCreditAdjustmentIn = null; public String LedgerIDDebtorFreight = null; public String LedgerIDDebtorFreightStartsWith = null; public String LedgerIDDebtorFreightEndsWith = null; public String LedgerIDDebtorFreightContains = null; public String LedgerIDDebtorFreightLike = null; public ArrayList LedgerIDDebtorFreightBetween = null; public ArrayList LedgerIDDebtorFreightIn = null; public String LedgerIDDebtorInsurance = null; public String LedgerIDDebtorInsuranceStartsWith = null; public String LedgerIDDebtorInsuranceEndsWith = null; public String LedgerIDDebtorInsuranceContains = null; public String LedgerIDDebtorInsuranceLike = null; public ArrayList LedgerIDDebtorInsuranceBetween = null; public ArrayList LedgerIDDebtorInsuranceIn = null; public String LedgerIDDebtorRealisedGainLoss = null; public String LedgerIDDebtorRealisedGainLossStartsWith = null; public String LedgerIDDebtorRealisedGainLossEndsWith = null; public String LedgerIDDebtorRealisedGainLossContains = null; public String LedgerIDDebtorRealisedGainLossLike = null; public ArrayList LedgerIDDebtorRealisedGainLossBetween = null; public ArrayList LedgerIDDebtorRealisedGainLossIn = null; public String LedgerIDDebtorUnRealisedGainLoss = null; public String LedgerIDDebtorUnRealisedGainLossStartsWith = null; public String LedgerIDDebtorUnRealisedGainLossEndsWith = null; public String LedgerIDDebtorUnRealisedGainLossContains = null; public String LedgerIDDebtorUnRealisedGainLossLike = null; public ArrayList LedgerIDDebtorUnRealisedGainLossBetween = null; public ArrayList LedgerIDDebtorUnRealisedGainLossIn = null; public Short PeriodType = null; public Short PeriodTypeGreaterThanOrEqualTo = null; public Short PeriodTypeGreaterThan = null; public Short PeriodTypeLessThan = null; public Short PeriodTypeLessThanOrEqualTo = null; public Short PeriodTypeNotEqualTo = null; public ArrayList PeriodTypeBetween = null; public ArrayList PeriodTypeIn = null; public Short TermsDays = null; public Short TermsDaysGreaterThanOrEqualTo = null; public Short TermsDaysGreaterThan = null; public Short TermsDaysLessThan = null; public Short TermsDaysLessThanOrEqualTo = null; public Short TermsDaysNotEqualTo = null; public ArrayList TermsDaysBetween = null; public ArrayList TermsDaysIn = null; public Short TermsType = null; public Short TermsTypeGreaterThanOrEqualTo = null; public Short TermsTypeGreaterThan = null; public Short TermsTypeLessThan = null; public Short TermsTypeLessThanOrEqualTo = null; public Short TermsTypeNotEqualTo = null; public ArrayList TermsTypeBetween = null; public ArrayList TermsTypeIn = null; public String ABN = null; public String ABNStartsWith = null; public String ABNEndsWith = null; public String ABNContains = null; public String ABNLike = null; public ArrayList ABNBetween = null; public ArrayList ABNIn = null; public Boolean ExcludeFromAging = null; public String BPayReference = null; public String BPayReferenceStartsWith = null; public String BPayReferenceEndsWith = null; public String BPayReferenceContains = null; public String BPayReferenceLike = null; public ArrayList BPayReferenceBetween = null; public ArrayList BPayReferenceIn = null; public Boolean UsesFX = null; public String FXCurrencyID = null; public String FXCurrencyIDStartsWith = null; public String FXCurrencyIDEndsWith = null; public String FXCurrencyIDContains = null; public String FXCurrencyIDLike = null; public ArrayList FXCurrencyIDBetween = null; public ArrayList FXCurrencyIDIn = null; public BigDecimal FXCurrentBalance = null; public BigDecimal FXCurrentBalanceGreaterThanOrEqualTo = null; public BigDecimal FXCurrentBalanceGreaterThan = null; public BigDecimal FXCurrentBalanceLessThan = null; public BigDecimal FXCurrentBalanceLessThanOrEqualTo = null; public BigDecimal FXCurrentBalanceNotEqualTo = null; public ArrayList FXCurrentBalanceBetween = null; public ArrayList FXCurrentBalanceIn = null; public BigDecimal FXPeriod1 = null; public BigDecimal FXPeriod1GreaterThanOrEqualTo = null; public BigDecimal FXPeriod1GreaterThan = null; public BigDecimal FXPeriod1LessThan = null; public BigDecimal FXPeriod1LessThanOrEqualTo = null; public BigDecimal FXPeriod1NotEqualTo = null; public ArrayList FXPeriod1Between = null; public ArrayList FXPeriod1In = null; public BigDecimal FXPeriod2 = null; public BigDecimal FXPeriod2GreaterThanOrEqualTo = null; public BigDecimal FXPeriod2GreaterThan = null; public BigDecimal FXPeriod2LessThan = null; public BigDecimal FXPeriod2LessThanOrEqualTo = null; public BigDecimal FXPeriod2NotEqualTo = null; public ArrayList FXPeriod2Between = null; public ArrayList FXPeriod2In = null; public BigDecimal FXPeriod3 = null; public BigDecimal FXPeriod3GreaterThanOrEqualTo = null; public BigDecimal FXPeriod3GreaterThan = null; public BigDecimal FXPeriod3LessThan = null; public BigDecimal FXPeriod3LessThanOrEqualTo = null; public BigDecimal FXPeriod3NotEqualTo = null; public ArrayList FXPeriod3Between = null; public ArrayList FXPeriod3In = null; public BigDecimal FXPeriod4 = null; public BigDecimal FXPeriod4GreaterThanOrEqualTo = null; public BigDecimal FXPeriod4GreaterThan = null; public BigDecimal FXPeriod4LessThan = null; public BigDecimal FXPeriod4LessThanOrEqualTo = null; public BigDecimal FXPeriod4NotEqualTo = null; public ArrayList FXPeriod4Between = null; public ArrayList FXPeriod4In = null; public Short TradingStatus = null; public Short TradingStatusGreaterThanOrEqualTo = null; public Short TradingStatusGreaterThan = null; public Short TradingStatusLessThan = null; public Short TradingStatusLessThanOrEqualTo = null; public Short TradingStatusNotEqualTo = null; public ArrayList TradingStatusBetween = null; public ArrayList TradingStatusIn = null; public String Category1ID = null; public String Category1IDStartsWith = null; public String Category1IDEndsWith = null; public String Category1IDContains = null; public String Category1IDLike = null; public ArrayList Category1IDBetween = null; public ArrayList Category1IDIn = null; public String Category2ID = null; public String Category2IDStartsWith = null; public String Category2IDEndsWith = null; public String Category2IDContains = null; public String Category2IDLike = null; public ArrayList Category2IDBetween = null; public ArrayList Category2IDIn = null; public String Category3ID = null; public String Category3IDStartsWith = null; public String Category3IDEndsWith = null; public String Category3IDContains = null; public String Category3IDLike = null; public ArrayList Category3IDBetween = null; public ArrayList Category3IDIn = null; public String Category4ID = null; public String Category4IDStartsWith = null; public String Category4IDEndsWith = null; public String Category4IDContains = null; public String Category4IDLike = null; public ArrayList Category4IDBetween = null; public ArrayList Category4IDIn = null; public String Category5ID = null; public String Category5IDStartsWith = null; public String Category5IDEndsWith = null; public String Category5IDContains = null; public String Category5IDLike = null; public ArrayList Category5IDBetween = null; public ArrayList Category5IDIn = null; public String BO_Priorities_RecID = null; public String BO_Priorities_RecIDStartsWith = null; public String BO_Priorities_RecIDEndsWith = null; public String BO_Priorities_RecIDContains = null; public String BO_Priorities_RecIDLike = null; public ArrayList BO_Priorities_RecIDBetween = null; public ArrayList BO_Priorities_RecIDIn = null; public String PricingGroupID = null; public String PricingGroupIDStartsWith = null; public String PricingGroupIDEndsWith = null; public String PricingGroupIDContains = null; public String PricingGroupIDLike = null; public ArrayList PricingGroupIDBetween = null; public ArrayList PricingGroupIDIn = null; public BigDecimal BudgetedGPPercentage = null; public BigDecimal BudgetedGPPercentageGreaterThanOrEqualTo = null; public BigDecimal BudgetedGPPercentageGreaterThan = null; public BigDecimal BudgetedGPPercentageLessThan = null; public BigDecimal BudgetedGPPercentageLessThanOrEqualTo = null; public BigDecimal BudgetedGPPercentageNotEqualTo = null; public ArrayList BudgetedGPPercentageBetween = null; public ArrayList BudgetedGPPercentageIn = null; public String Country = null; public String CountryStartsWith = null; public String CountryEndsWith = null; public String CountryContains = null; public String CountryLike = null; public ArrayList CountryBetween = null; public ArrayList CountryIn = null; public String FR_Carriers_RecID = null; public String FR_Carriers_RecIDStartsWith = null; public String FR_Carriers_RecIDEndsWith = null; public String FR_Carriers_RecIDContains = null; public String FR_Carriers_RecIDLike = null; public ArrayList FR_Carriers_RecIDBetween = null; public ArrayList FR_Carriers_RecIDIn = null; public String FR_CarrierServices_RecID = null; public String FR_CarrierServices_RecIDStartsWith = null; public String FR_CarrierServices_RecIDEndsWith = null; public String FR_CarrierServices_RecIDContains = null; public String FR_CarrierServices_RecIDLike = null; public ArrayList FR_CarrierServices_RecIDBetween = null; public ArrayList FR_CarrierServices_RecIDIn = null; public String CarrierAccountNo = null; public String CarrierAccountNoStartsWith = null; public String CarrierAccountNoEndsWith = null; public String CarrierAccountNoContains = null; public String CarrierAccountNoLike = null; public ArrayList CarrierAccountNoBetween = null; public ArrayList CarrierAccountNoIn = null; public Short ChargeTo = null; public Short ChargeToGreaterThanOrEqualTo = null; public Short ChargeToGreaterThan = null; public Short ChargeToLessThan = null; public Short ChargeToLessThanOrEqualTo = null; public Short ChargeToNotEqualTo = null; public ArrayList ChargeToBetween = null; public ArrayList ChargeToIn = null; public Boolean IsCashOnly = null; public String getDebtorID() { return DebtorID; } public DB_MainQuery setDebtorID(String value) { this.DebtorID = value; return this; } public String getDebtorIDStartsWith() { return DebtorIDStartsWith; } public DB_MainQuery setDebtorIDStartsWith(String value) { this.DebtorIDStartsWith = value; return this; } public String getDebtorIDEndsWith() { return DebtorIDEndsWith; } public DB_MainQuery setDebtorIDEndsWith(String value) { this.DebtorIDEndsWith = value; return this; } public String getDebtorIDContains() { return DebtorIDContains; } public DB_MainQuery setDebtorIDContains(String value) { this.DebtorIDContains = value; return this; } public String getDebtorIDLike() { return DebtorIDLike; } public DB_MainQuery setDebtorIDLike(String value) { this.DebtorIDLike = value; return this; } public ArrayList getDebtorIDBetween() { return DebtorIDBetween; } public DB_MainQuery setDebtorIDBetween(ArrayList value) { this.DebtorIDBetween = value; return this; } public ArrayList getDebtorIDIn() { return DebtorIDIn; } public DB_MainQuery setDebtorIDIn(ArrayList value) { this.DebtorIDIn = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public DB_MainQuery setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getLastSavedDateTimeGreaterThanOrEqualTo() { return LastSavedDateTimeGreaterThanOrEqualTo; } public DB_MainQuery setLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.LastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeGreaterThan() { return LastSavedDateTimeGreaterThan; } public DB_MainQuery setLastSavedDateTimeGreaterThan(Date value) { this.LastSavedDateTimeGreaterThan = value; return this; } public Date getLastSavedDateTimeLessThan() { return LastSavedDateTimeLessThan; } public DB_MainQuery setLastSavedDateTimeLessThan(Date value) { this.LastSavedDateTimeLessThan = value; return this; } public Date getLastSavedDateTimeLessThanOrEqualTo() { return LastSavedDateTimeLessThanOrEqualTo; } public DB_MainQuery setLastSavedDateTimeLessThanOrEqualTo(Date value) { this.LastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeNotEqualTo() { return LastSavedDateTimeNotEqualTo; } public DB_MainQuery setLastSavedDateTimeNotEqualTo(Date value) { this.LastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getLastSavedDateTimeBetween() { return LastSavedDateTimeBetween; } public DB_MainQuery setLastSavedDateTimeBetween(ArrayList value) { this.LastSavedDateTimeBetween = value; return this; } public ArrayList getLastSavedDateTimeIn() { return LastSavedDateTimeIn; } public DB_MainQuery setLastSavedDateTimeIn(ArrayList value) { this.LastSavedDateTimeIn = value; return this; } public String getAccountNo() { return AccountNo; } public DB_MainQuery setAccountNo(String value) { this.AccountNo = value; return this; } public String getAccountNoStartsWith() { return AccountNoStartsWith; } public DB_MainQuery setAccountNoStartsWith(String value) { this.AccountNoStartsWith = value; return this; } public String getAccountNoEndsWith() { return AccountNoEndsWith; } public DB_MainQuery setAccountNoEndsWith(String value) { this.AccountNoEndsWith = value; return this; } public String getAccountNoContains() { return AccountNoContains; } public DB_MainQuery setAccountNoContains(String value) { this.AccountNoContains = value; return this; } public String getAccountNoLike() { return AccountNoLike; } public DB_MainQuery setAccountNoLike(String value) { this.AccountNoLike = value; return this; } public ArrayList getAccountNoBetween() { return AccountNoBetween; } public DB_MainQuery setAccountNoBetween(ArrayList value) { this.AccountNoBetween = value; return this; } public ArrayList getAccountNoIn() { return AccountNoIn; } public DB_MainQuery setAccountNoIn(ArrayList value) { this.AccountNoIn = value; return this; } public String getName() { return Name; } public DB_MainQuery setName(String value) { this.Name = value; return this; } public String getNameStartsWith() { return NameStartsWith; } public DB_MainQuery setNameStartsWith(String value) { this.NameStartsWith = value; return this; } public String getNameEndsWith() { return NameEndsWith; } public DB_MainQuery setNameEndsWith(String value) { this.NameEndsWith = value; return this; } public String getNameContains() { return NameContains; } public DB_MainQuery setNameContains(String value) { this.NameContains = value; return this; } public String getNameLike() { return NameLike; } public DB_MainQuery setNameLike(String value) { this.NameLike = value; return this; } public ArrayList getNameBetween() { return NameBetween; } public DB_MainQuery setNameBetween(ArrayList value) { this.NameBetween = value; return this; } public ArrayList getNameIn() { return NameIn; } public DB_MainQuery setNameIn(ArrayList value) { this.NameIn = value; return this; } public String getAddress1() { return Address1; } public DB_MainQuery setAddress1(String value) { this.Address1 = value; return this; } public String getAddress1StartsWith() { return Address1StartsWith; } public DB_MainQuery setAddress1StartsWith(String value) { this.Address1StartsWith = value; return this; } public String getAddress1EndsWith() { return Address1EndsWith; } public DB_MainQuery setAddress1EndsWith(String value) { this.Address1EndsWith = value; return this; } public String getAddress1Contains() { return Address1Contains; } public DB_MainQuery setAddress1Contains(String value) { this.Address1Contains = value; return this; } public String getAddress1Like() { return Address1Like; } public DB_MainQuery setAddress1Like(String value) { this.Address1Like = value; return this; } public ArrayList getAddress1Between() { return Address1Between; } public DB_MainQuery setAddress1Between(ArrayList value) { this.Address1Between = value; return this; } public ArrayList getAddress1In() { return Address1In; } public DB_MainQuery setAddress1In(ArrayList value) { this.Address1In = value; return this; } public String getAddress2() { return Address2; } public DB_MainQuery setAddress2(String value) { this.Address2 = value; return this; } public String getAddress2StartsWith() { return Address2StartsWith; } public DB_MainQuery setAddress2StartsWith(String value) { this.Address2StartsWith = value; return this; } public String getAddress2EndsWith() { return Address2EndsWith; } public DB_MainQuery setAddress2EndsWith(String value) { this.Address2EndsWith = value; return this; } public String getAddress2Contains() { return Address2Contains; } public DB_MainQuery setAddress2Contains(String value) { this.Address2Contains = value; return this; } public String getAddress2Like() { return Address2Like; } public DB_MainQuery setAddress2Like(String value) { this.Address2Like = value; return this; } public ArrayList getAddress2Between() { return Address2Between; } public DB_MainQuery setAddress2Between(ArrayList value) { this.Address2Between = value; return this; } public ArrayList getAddress2In() { return Address2In; } public DB_MainQuery setAddress2In(ArrayList value) { this.Address2In = value; return this; } public String getAddress3() { return Address3; } public DB_MainQuery setAddress3(String value) { this.Address3 = value; return this; } public String getAddress3StartsWith() { return Address3StartsWith; } public DB_MainQuery setAddress3StartsWith(String value) { this.Address3StartsWith = value; return this; } public String getAddress3EndsWith() { return Address3EndsWith; } public DB_MainQuery setAddress3EndsWith(String value) { this.Address3EndsWith = value; return this; } public String getAddress3Contains() { return Address3Contains; } public DB_MainQuery setAddress3Contains(String value) { this.Address3Contains = value; return this; } public String getAddress3Like() { return Address3Like; } public DB_MainQuery setAddress3Like(String value) { this.Address3Like = value; return this; } public ArrayList getAddress3Between() { return Address3Between; } public DB_MainQuery setAddress3Between(ArrayList value) { this.Address3Between = value; return this; } public ArrayList getAddress3In() { return Address3In; } public DB_MainQuery setAddress3In(ArrayList value) { this.Address3In = value; return this; } public String getAddress4() { return Address4; } public DB_MainQuery setAddress4(String value) { this.Address4 = value; return this; } public String getAddress4StartsWith() { return Address4StartsWith; } public DB_MainQuery setAddress4StartsWith(String value) { this.Address4StartsWith = value; return this; } public String getAddress4EndsWith() { return Address4EndsWith; } public DB_MainQuery setAddress4EndsWith(String value) { this.Address4EndsWith = value; return this; } public String getAddress4Contains() { return Address4Contains; } public DB_MainQuery setAddress4Contains(String value) { this.Address4Contains = value; return this; } public String getAddress4Like() { return Address4Like; } public DB_MainQuery setAddress4Like(String value) { this.Address4Like = value; return this; } public ArrayList getAddress4Between() { return Address4Between; } public DB_MainQuery setAddress4Between(ArrayList value) { this.Address4Between = value; return this; } public ArrayList getAddress4In() { return Address4In; } public DB_MainQuery setAddress4In(ArrayList value) { this.Address4In = value; return this; } public String getPostCode() { return PostCode; } public DB_MainQuery setPostCode(String value) { this.PostCode = value; return this; } public String getPostCodeStartsWith() { return PostCodeStartsWith; } public DB_MainQuery setPostCodeStartsWith(String value) { this.PostCodeStartsWith = value; return this; } public String getPostCodeEndsWith() { return PostCodeEndsWith; } public DB_MainQuery setPostCodeEndsWith(String value) { this.PostCodeEndsWith = value; return this; } public String getPostCodeContains() { return PostCodeContains; } public DB_MainQuery setPostCodeContains(String value) { this.PostCodeContains = value; return this; } public String getPostCodeLike() { return PostCodeLike; } public DB_MainQuery setPostCodeLike(String value) { this.PostCodeLike = value; return this; } public ArrayList getPostCodeBetween() { return PostCodeBetween; } public DB_MainQuery setPostCodeBetween(ArrayList value) { this.PostCodeBetween = value; return this; } public ArrayList getPostCodeIn() { return PostCodeIn; } public DB_MainQuery setPostCodeIn(ArrayList value) { this.PostCodeIn = value; return this; } public String getPhone() { return Phone; } public DB_MainQuery setPhone(String value) { this.Phone = value; return this; } public String getPhoneStartsWith() { return PhoneStartsWith; } public DB_MainQuery setPhoneStartsWith(String value) { this.PhoneStartsWith = value; return this; } public String getPhoneEndsWith() { return PhoneEndsWith; } public DB_MainQuery setPhoneEndsWith(String value) { this.PhoneEndsWith = value; return this; } public String getPhoneContains() { return PhoneContains; } public DB_MainQuery setPhoneContains(String value) { this.PhoneContains = value; return this; } public String getPhoneLike() { return PhoneLike; } public DB_MainQuery setPhoneLike(String value) { this.PhoneLike = value; return this; } public ArrayList getPhoneBetween() { return PhoneBetween; } public DB_MainQuery setPhoneBetween(ArrayList value) { this.PhoneBetween = value; return this; } public ArrayList getPhoneIn() { return PhoneIn; } public DB_MainQuery setPhoneIn(ArrayList value) { this.PhoneIn = value; return this; } public String getFax() { return Fax; } public DB_MainQuery setFax(String value) { this.Fax = value; return this; } public String getFaxStartsWith() { return FaxStartsWith; } public DB_MainQuery setFaxStartsWith(String value) { this.FaxStartsWith = value; return this; } public String getFaxEndsWith() { return FaxEndsWith; } public DB_MainQuery setFaxEndsWith(String value) { this.FaxEndsWith = value; return this; } public String getFaxContains() { return FaxContains; } public DB_MainQuery setFaxContains(String value) { this.FaxContains = value; return this; } public String getFaxLike() { return FaxLike; } public DB_MainQuery setFaxLike(String value) { this.FaxLike = value; return this; } public ArrayList getFaxBetween() { return FaxBetween; } public DB_MainQuery setFaxBetween(ArrayList value) { this.FaxBetween = value; return this; } public ArrayList getFaxIn() { return FaxIn; } public DB_MainQuery setFaxIn(ArrayList value) { this.FaxIn = value; return this; } public String getBankName() { return BankName; } public DB_MainQuery setBankName(String value) { this.BankName = value; return this; } public String getBankNameStartsWith() { return BankNameStartsWith; } public DB_MainQuery setBankNameStartsWith(String value) { this.BankNameStartsWith = value; return this; } public String getBankNameEndsWith() { return BankNameEndsWith; } public DB_MainQuery setBankNameEndsWith(String value) { this.BankNameEndsWith = value; return this; } public String getBankNameContains() { return BankNameContains; } public DB_MainQuery setBankNameContains(String value) { this.BankNameContains = value; return this; } public String getBankNameLike() { return BankNameLike; } public DB_MainQuery setBankNameLike(String value) { this.BankNameLike = value; return this; } public ArrayList getBankNameBetween() { return BankNameBetween; } public DB_MainQuery setBankNameBetween(ArrayList value) { this.BankNameBetween = value; return this; } public ArrayList getBankNameIn() { return BankNameIn; } public DB_MainQuery setBankNameIn(ArrayList value) { this.BankNameIn = value; return this; } public String getBankAcc() { return BankAcc; } public DB_MainQuery setBankAcc(String value) { this.BankAcc = value; return this; } public String getBankAccStartsWith() { return BankAccStartsWith; } public DB_MainQuery setBankAccStartsWith(String value) { this.BankAccStartsWith = value; return this; } public String getBankAccEndsWith() { return BankAccEndsWith; } public DB_MainQuery setBankAccEndsWith(String value) { this.BankAccEndsWith = value; return this; } public String getBankAccContains() { return BankAccContains; } public DB_MainQuery setBankAccContains(String value) { this.BankAccContains = value; return this; } public String getBankAccLike() { return BankAccLike; } public DB_MainQuery setBankAccLike(String value) { this.BankAccLike = value; return this; } public ArrayList getBankAccBetween() { return BankAccBetween; } public DB_MainQuery setBankAccBetween(ArrayList value) { this.BankAccBetween = value; return this; } public ArrayList getBankAccIn() { return BankAccIn; } public DB_MainQuery setBankAccIn(ArrayList value) { this.BankAccIn = value; return this; } public String getBsbn() { return BSBN; } public DB_MainQuery setBsbn(String value) { this.BSBN = value; return this; } public String getBsbnStartsWith() { return BSBNStartsWith; } public DB_MainQuery setBsbnStartsWith(String value) { this.BSBNStartsWith = value; return this; } public String getBsbnEndsWith() { return BSBNEndsWith; } public DB_MainQuery setBsbnEndsWith(String value) { this.BSBNEndsWith = value; return this; } public String getBsbnContains() { return BSBNContains; } public DB_MainQuery setBsbnContains(String value) { this.BSBNContains = value; return this; } public String getBsbnLike() { return BSBNLike; } public DB_MainQuery setBsbnLike(String value) { this.BSBNLike = value; return this; } public ArrayList getBsbnBetween() { return BSBNBetween; } public DB_MainQuery setBsbnBetween(ArrayList value) { this.BSBNBetween = value; return this; } public ArrayList getBsbnIn() { return BSBNIn; } public DB_MainQuery setBsbnIn(ArrayList value) { this.BSBNIn = value; return this; } public String getAccountName() { return AccountName; } public DB_MainQuery setAccountName(String value) { this.AccountName = value; return this; } public String getAccountNameStartsWith() { return AccountNameStartsWith; } public DB_MainQuery setAccountNameStartsWith(String value) { this.AccountNameStartsWith = value; return this; } public String getAccountNameEndsWith() { return AccountNameEndsWith; } public DB_MainQuery setAccountNameEndsWith(String value) { this.AccountNameEndsWith = value; return this; } public String getAccountNameContains() { return AccountNameContains; } public DB_MainQuery setAccountNameContains(String value) { this.AccountNameContains = value; return this; } public String getAccountNameLike() { return AccountNameLike; } public DB_MainQuery setAccountNameLike(String value) { this.AccountNameLike = value; return this; } public ArrayList getAccountNameBetween() { return AccountNameBetween; } public DB_MainQuery setAccountNameBetween(ArrayList value) { this.AccountNameBetween = value; return this; } public ArrayList getAccountNameIn() { return AccountNameIn; } public DB_MainQuery setAccountNameIn(ArrayList value) { this.AccountNameIn = value; return this; } public String getTaxExemptNo() { return TaxExemptNo; } public DB_MainQuery setTaxExemptNo(String value) { this.TaxExemptNo = value; return this; } public String getTaxExemptNoStartsWith() { return TaxExemptNoStartsWith; } public DB_MainQuery setTaxExemptNoStartsWith(String value) { this.TaxExemptNoStartsWith = value; return this; } public String getTaxExemptNoEndsWith() { return TaxExemptNoEndsWith; } public DB_MainQuery setTaxExemptNoEndsWith(String value) { this.TaxExemptNoEndsWith = value; return this; } public String getTaxExemptNoContains() { return TaxExemptNoContains; } public DB_MainQuery setTaxExemptNoContains(String value) { this.TaxExemptNoContains = value; return this; } public String getTaxExemptNoLike() { return TaxExemptNoLike; } public DB_MainQuery setTaxExemptNoLike(String value) { this.TaxExemptNoLike = value; return this; } public ArrayList getTaxExemptNoBetween() { return TaxExemptNoBetween; } public DB_MainQuery setTaxExemptNoBetween(ArrayList value) { this.TaxExemptNoBetween = value; return this; } public ArrayList getTaxExemptNoIn() { return TaxExemptNoIn; } public DB_MainQuery setTaxExemptNoIn(ArrayList value) { this.TaxExemptNoIn = value; return this; } public BigDecimal getCreditLimit() { return CreditLimit; } public DB_MainQuery setCreditLimit(BigDecimal value) { this.CreditLimit = value; return this; } public BigDecimal getCreditLimitGreaterThanOrEqualTo() { return CreditLimitGreaterThanOrEqualTo; } public DB_MainQuery setCreditLimitGreaterThanOrEqualTo(BigDecimal value) { this.CreditLimitGreaterThanOrEqualTo = value; return this; } public BigDecimal getCreditLimitGreaterThan() { return CreditLimitGreaterThan; } public DB_MainQuery setCreditLimitGreaterThan(BigDecimal value) { this.CreditLimitGreaterThan = value; return this; } public BigDecimal getCreditLimitLessThan() { return CreditLimitLessThan; } public DB_MainQuery setCreditLimitLessThan(BigDecimal value) { this.CreditLimitLessThan = value; return this; } public BigDecimal getCreditLimitLessThanOrEqualTo() { return CreditLimitLessThanOrEqualTo; } public DB_MainQuery setCreditLimitLessThanOrEqualTo(BigDecimal value) { this.CreditLimitLessThanOrEqualTo = value; return this; } public BigDecimal getCreditLimitNotEqualTo() { return CreditLimitNotEqualTo; } public DB_MainQuery setCreditLimitNotEqualTo(BigDecimal value) { this.CreditLimitNotEqualTo = value; return this; } public ArrayList getCreditLimitBetween() { return CreditLimitBetween; } public DB_MainQuery setCreditLimitBetween(ArrayList value) { this.CreditLimitBetween = value; return this; } public ArrayList getCreditLimitIn() { return CreditLimitIn; } public DB_MainQuery setCreditLimitIn(ArrayList value) { this.CreditLimitIn = value; return this; } public Short getEarlyPayDisOnStatsDays() { return EarlyPayDisOnStatsDays; } public DB_MainQuery setEarlyPayDisOnStatsDays(Short value) { this.EarlyPayDisOnStatsDays = value; return this; } public Short getEarlyPayDisOnStatsDaysGreaterThanOrEqualTo() { return EarlyPayDisOnStatsDaysGreaterThanOrEqualTo; } public DB_MainQuery setEarlyPayDisOnStatsDaysGreaterThanOrEqualTo(Short value) { this.EarlyPayDisOnStatsDaysGreaterThanOrEqualTo = value; return this; } public Short getEarlyPayDisOnStatsDaysGreaterThan() { return EarlyPayDisOnStatsDaysGreaterThan; } public DB_MainQuery setEarlyPayDisOnStatsDaysGreaterThan(Short value) { this.EarlyPayDisOnStatsDaysGreaterThan = value; return this; } public Short getEarlyPayDisOnStatsDaysLessThan() { return EarlyPayDisOnStatsDaysLessThan; } public DB_MainQuery setEarlyPayDisOnStatsDaysLessThan(Short value) { this.EarlyPayDisOnStatsDaysLessThan = value; return this; } public Short getEarlyPayDisOnStatsDaysLessThanOrEqualTo() { return EarlyPayDisOnStatsDaysLessThanOrEqualTo; } public DB_MainQuery setEarlyPayDisOnStatsDaysLessThanOrEqualTo(Short value) { this.EarlyPayDisOnStatsDaysLessThanOrEqualTo = value; return this; } public Short getEarlyPayDisOnStatsDaysNotEqualTo() { return EarlyPayDisOnStatsDaysNotEqualTo; } public DB_MainQuery setEarlyPayDisOnStatsDaysNotEqualTo(Short value) { this.EarlyPayDisOnStatsDaysNotEqualTo = value; return this; } public ArrayList getEarlyPayDisOnStatsDaysBetween() { return EarlyPayDisOnStatsDaysBetween; } public DB_MainQuery setEarlyPayDisOnStatsDaysBetween(ArrayList value) { this.EarlyPayDisOnStatsDaysBetween = value; return this; } public ArrayList getEarlyPayDisOnStatsDaysIn() { return EarlyPayDisOnStatsDaysIn; } public DB_MainQuery setEarlyPayDisOnStatsDaysIn(ArrayList value) { this.EarlyPayDisOnStatsDaysIn = value; return this; } public BigDecimal getEarlyPayDisOnStatsAmt() { return EarlyPayDisOnStatsAmt; } public DB_MainQuery setEarlyPayDisOnStatsAmt(BigDecimal value) { this.EarlyPayDisOnStatsAmt = value; return this; } public BigDecimal getEarlyPayDisOnStatsAmtGreaterThanOrEqualTo() { return EarlyPayDisOnStatsAmtGreaterThanOrEqualTo; } public DB_MainQuery setEarlyPayDisOnStatsAmtGreaterThanOrEqualTo(BigDecimal value) { this.EarlyPayDisOnStatsAmtGreaterThanOrEqualTo = value; return this; } public BigDecimal getEarlyPayDisOnStatsAmtGreaterThan() { return EarlyPayDisOnStatsAmtGreaterThan; } public DB_MainQuery setEarlyPayDisOnStatsAmtGreaterThan(BigDecimal value) { this.EarlyPayDisOnStatsAmtGreaterThan = value; return this; } public BigDecimal getEarlyPayDisOnStatsAmtLessThan() { return EarlyPayDisOnStatsAmtLessThan; } public DB_MainQuery setEarlyPayDisOnStatsAmtLessThan(BigDecimal value) { this.EarlyPayDisOnStatsAmtLessThan = value; return this; } public BigDecimal getEarlyPayDisOnStatsAmtLessThanOrEqualTo() { return EarlyPayDisOnStatsAmtLessThanOrEqualTo; } public DB_MainQuery setEarlyPayDisOnStatsAmtLessThanOrEqualTo(BigDecimal value) { this.EarlyPayDisOnStatsAmtLessThanOrEqualTo = value; return this; } public BigDecimal getEarlyPayDisOnStatsAmtNotEqualTo() { return EarlyPayDisOnStatsAmtNotEqualTo; } public DB_MainQuery setEarlyPayDisOnStatsAmtNotEqualTo(BigDecimal value) { this.EarlyPayDisOnStatsAmtNotEqualTo = value; return this; } public ArrayList getEarlyPayDisOnStatsAmtBetween() { return EarlyPayDisOnStatsAmtBetween; } public DB_MainQuery setEarlyPayDisOnStatsAmtBetween(ArrayList value) { this.EarlyPayDisOnStatsAmtBetween = value; return this; } public ArrayList getEarlyPayDisOnStatsAmtIn() { return EarlyPayDisOnStatsAmtIn; } public DB_MainQuery setEarlyPayDisOnStatsAmtIn(ArrayList value) { this.EarlyPayDisOnStatsAmtIn = value; return this; } public Date getLastPurchaseDate() { return LastPurchaseDate; } public DB_MainQuery setLastPurchaseDate(Date value) { this.LastPurchaseDate = value; return this; } public Date getLastPurchaseDateGreaterThanOrEqualTo() { return LastPurchaseDateGreaterThanOrEqualTo; } public DB_MainQuery setLastPurchaseDateGreaterThanOrEqualTo(Date value) { this.LastPurchaseDateGreaterThanOrEqualTo = value; return this; } public Date getLastPurchaseDateGreaterThan() { return LastPurchaseDateGreaterThan; } public DB_MainQuery setLastPurchaseDateGreaterThan(Date value) { this.LastPurchaseDateGreaterThan = value; return this; } public Date getLastPurchaseDateLessThan() { return LastPurchaseDateLessThan; } public DB_MainQuery setLastPurchaseDateLessThan(Date value) { this.LastPurchaseDateLessThan = value; return this; } public Date getLastPurchaseDateLessThanOrEqualTo() { return LastPurchaseDateLessThanOrEqualTo; } public DB_MainQuery setLastPurchaseDateLessThanOrEqualTo(Date value) { this.LastPurchaseDateLessThanOrEqualTo = value; return this; } public Date getLastPurchaseDateNotEqualTo() { return LastPurchaseDateNotEqualTo; } public DB_MainQuery setLastPurchaseDateNotEqualTo(Date value) { this.LastPurchaseDateNotEqualTo = value; return this; } public ArrayList getLastPurchaseDateBetween() { return LastPurchaseDateBetween; } public DB_MainQuery setLastPurchaseDateBetween(ArrayList value) { this.LastPurchaseDateBetween = value; return this; } public ArrayList getLastPurchaseDateIn() { return LastPurchaseDateIn; } public DB_MainQuery setLastPurchaseDateIn(ArrayList value) { this.LastPurchaseDateIn = value; return this; } public Date getLastPaymentDate() { return LastPaymentDate; } public DB_MainQuery setLastPaymentDate(Date value) { this.LastPaymentDate = value; return this; } public Date getLastPaymentDateGreaterThanOrEqualTo() { return LastPaymentDateGreaterThanOrEqualTo; } public DB_MainQuery setLastPaymentDateGreaterThanOrEqualTo(Date value) { this.LastPaymentDateGreaterThanOrEqualTo = value; return this; } public Date getLastPaymentDateGreaterThan() { return LastPaymentDateGreaterThan; } public DB_MainQuery setLastPaymentDateGreaterThan(Date value) { this.LastPaymentDateGreaterThan = value; return this; } public Date getLastPaymentDateLessThan() { return LastPaymentDateLessThan; } public DB_MainQuery setLastPaymentDateLessThan(Date value) { this.LastPaymentDateLessThan = value; return this; } public Date getLastPaymentDateLessThanOrEqualTo() { return LastPaymentDateLessThanOrEqualTo; } public DB_MainQuery setLastPaymentDateLessThanOrEqualTo(Date value) { this.LastPaymentDateLessThanOrEqualTo = value; return this; } public Date getLastPaymentDateNotEqualTo() { return LastPaymentDateNotEqualTo; } public DB_MainQuery setLastPaymentDateNotEqualTo(Date value) { this.LastPaymentDateNotEqualTo = value; return this; } public ArrayList getLastPaymentDateBetween() { return LastPaymentDateBetween; } public DB_MainQuery setLastPaymentDateBetween(ArrayList value) { this.LastPaymentDateBetween = value; return this; } public ArrayList getLastPaymentDateIn() { return LastPaymentDateIn; } public DB_MainQuery setLastPaymentDateIn(ArrayList value) { this.LastPaymentDateIn = value; return this; } public BigDecimal getStandingDisOnInvoices() { return StandingDisOnInvoices; } public DB_MainQuery setStandingDisOnInvoices(BigDecimal value) { this.StandingDisOnInvoices = value; return this; } public BigDecimal getStandingDisOnInvoicesGreaterThanOrEqualTo() { return StandingDisOnInvoicesGreaterThanOrEqualTo; } public DB_MainQuery setStandingDisOnInvoicesGreaterThanOrEqualTo(BigDecimal value) { this.StandingDisOnInvoicesGreaterThanOrEqualTo = value; return this; } public BigDecimal getStandingDisOnInvoicesGreaterThan() { return StandingDisOnInvoicesGreaterThan; } public DB_MainQuery setStandingDisOnInvoicesGreaterThan(BigDecimal value) { this.StandingDisOnInvoicesGreaterThan = value; return this; } public BigDecimal getStandingDisOnInvoicesLessThan() { return StandingDisOnInvoicesLessThan; } public DB_MainQuery setStandingDisOnInvoicesLessThan(BigDecimal value) { this.StandingDisOnInvoicesLessThan = value; return this; } public BigDecimal getStandingDisOnInvoicesLessThanOrEqualTo() { return StandingDisOnInvoicesLessThanOrEqualTo; } public DB_MainQuery setStandingDisOnInvoicesLessThanOrEqualTo(BigDecimal value) { this.StandingDisOnInvoicesLessThanOrEqualTo = value; return this; } public BigDecimal getStandingDisOnInvoicesNotEqualTo() { return StandingDisOnInvoicesNotEqualTo; } public DB_MainQuery setStandingDisOnInvoicesNotEqualTo(BigDecimal value) { this.StandingDisOnInvoicesNotEqualTo = value; return this; } public ArrayList getStandingDisOnInvoicesBetween() { return StandingDisOnInvoicesBetween; } public DB_MainQuery setStandingDisOnInvoicesBetween(ArrayList value) { this.StandingDisOnInvoicesBetween = value; return this; } public ArrayList getStandingDisOnInvoicesIn() { return StandingDisOnInvoicesIn; } public DB_MainQuery setStandingDisOnInvoicesIn(ArrayList value) { this.StandingDisOnInvoicesIn = value; return this; } public String getClassificationID() { return ClassificationID; } public DB_MainQuery setClassificationID(String value) { this.ClassificationID = value; return this; } public String getClassificationIDStartsWith() { return ClassificationIDStartsWith; } public DB_MainQuery setClassificationIDStartsWith(String value) { this.ClassificationIDStartsWith = value; return this; } public String getClassificationIDEndsWith() { return ClassificationIDEndsWith; } public DB_MainQuery setClassificationIDEndsWith(String value) { this.ClassificationIDEndsWith = value; return this; } public String getClassificationIDContains() { return ClassificationIDContains; } public DB_MainQuery setClassificationIDContains(String value) { this.ClassificationIDContains = value; return this; } public String getClassificationIDLike() { return ClassificationIDLike; } public DB_MainQuery setClassificationIDLike(String value) { this.ClassificationIDLike = value; return this; } public ArrayList getClassificationIDBetween() { return ClassificationIDBetween; } public DB_MainQuery setClassificationIDBetween(ArrayList value) { this.ClassificationIDBetween = value; return this; } public ArrayList getClassificationIDIn() { return ClassificationIDIn; } public DB_MainQuery setClassificationIDIn(ArrayList value) { this.ClassificationIDIn = value; return this; } public Boolean isAccountOnHold() { return AccountOnHold; } public DB_MainQuery setAccountOnHold(Boolean value) { this.AccountOnHold = value; return this; } public String getEmailAddress() { return EmailAddress; } public DB_MainQuery setEmailAddress(String value) { this.EmailAddress = value; return this; } public String getEmailAddressStartsWith() { return EmailAddressStartsWith; } public DB_MainQuery setEmailAddressStartsWith(String value) { this.EmailAddressStartsWith = value; return this; } public String getEmailAddressEndsWith() { return EmailAddressEndsWith; } public DB_MainQuery setEmailAddressEndsWith(String value) { this.EmailAddressEndsWith = value; return this; } public String getEmailAddressContains() { return EmailAddressContains; } public DB_MainQuery setEmailAddressContains(String value) { this.EmailAddressContains = value; return this; } public String getEmailAddressLike() { return EmailAddressLike; } public DB_MainQuery setEmailAddressLike(String value) { this.EmailAddressLike = value; return this; } public ArrayList getEmailAddressBetween() { return EmailAddressBetween; } public DB_MainQuery setEmailAddressBetween(ArrayList value) { this.EmailAddressBetween = value; return this; } public ArrayList getEmailAddressIn() { return EmailAddressIn; } public DB_MainQuery setEmailAddressIn(ArrayList value) { this.EmailAddressIn = value; return this; } public BigDecimal getCurrentBalance() { return CurrentBalance; } public DB_MainQuery setCurrentBalance(BigDecimal value) { this.CurrentBalance = value; return this; } public BigDecimal getCurrentBalanceGreaterThanOrEqualTo() { return CurrentBalanceGreaterThanOrEqualTo; } public DB_MainQuery setCurrentBalanceGreaterThanOrEqualTo(BigDecimal value) { this.CurrentBalanceGreaterThanOrEqualTo = value; return this; } public BigDecimal getCurrentBalanceGreaterThan() { return CurrentBalanceGreaterThan; } public DB_MainQuery setCurrentBalanceGreaterThan(BigDecimal value) { this.CurrentBalanceGreaterThan = value; return this; } public BigDecimal getCurrentBalanceLessThan() { return CurrentBalanceLessThan; } public DB_MainQuery setCurrentBalanceLessThan(BigDecimal value) { this.CurrentBalanceLessThan = value; return this; } public BigDecimal getCurrentBalanceLessThanOrEqualTo() { return CurrentBalanceLessThanOrEqualTo; } public DB_MainQuery setCurrentBalanceLessThanOrEqualTo(BigDecimal value) { this.CurrentBalanceLessThanOrEqualTo = value; return this; } public BigDecimal getCurrentBalanceNotEqualTo() { return CurrentBalanceNotEqualTo; } public DB_MainQuery setCurrentBalanceNotEqualTo(BigDecimal value) { this.CurrentBalanceNotEqualTo = value; return this; } public ArrayList getCurrentBalanceBetween() { return CurrentBalanceBetween; } public DB_MainQuery setCurrentBalanceBetween(ArrayList value) { this.CurrentBalanceBetween = value; return this; } public ArrayList getCurrentBalanceIn() { return CurrentBalanceIn; } public DB_MainQuery setCurrentBalanceIn(ArrayList value) { this.CurrentBalanceIn = value; return this; } public BigDecimal getPeriod1() { return Period1; } public DB_MainQuery setPeriod1(BigDecimal value) { this.Period1 = value; return this; } public BigDecimal getPeriod1GreaterThanOrEqualTo() { return Period1GreaterThanOrEqualTo; } public DB_MainQuery setPeriod1GreaterThanOrEqualTo(BigDecimal value) { this.Period1GreaterThanOrEqualTo = value; return this; } public BigDecimal getPeriod1GreaterThan() { return Period1GreaterThan; } public DB_MainQuery setPeriod1GreaterThan(BigDecimal value) { this.Period1GreaterThan = value; return this; } public BigDecimal getPeriod1LessThan() { return Period1LessThan; } public DB_MainQuery setPeriod1LessThan(BigDecimal value) { this.Period1LessThan = value; return this; } public BigDecimal getPeriod1LessThanOrEqualTo() { return Period1LessThanOrEqualTo; } public DB_MainQuery setPeriod1LessThanOrEqualTo(BigDecimal value) { this.Period1LessThanOrEqualTo = value; return this; } public BigDecimal getPeriod1NotEqualTo() { return Period1NotEqualTo; } public DB_MainQuery setPeriod1NotEqualTo(BigDecimal value) { this.Period1NotEqualTo = value; return this; } public ArrayList getPeriod1Between() { return Period1Between; } public DB_MainQuery setPeriod1Between(ArrayList value) { this.Period1Between = value; return this; } public ArrayList getPeriod1In() { return Period1In; } public DB_MainQuery setPeriod1In(ArrayList value) { this.Period1In = value; return this; } public BigDecimal getPeriod2() { return Period2; } public DB_MainQuery setPeriod2(BigDecimal value) { this.Period2 = value; return this; } public BigDecimal getPeriod2GreaterThanOrEqualTo() { return Period2GreaterThanOrEqualTo; } public DB_MainQuery setPeriod2GreaterThanOrEqualTo(BigDecimal value) { this.Period2GreaterThanOrEqualTo = value; return this; } public BigDecimal getPeriod2GreaterThan() { return Period2GreaterThan; } public DB_MainQuery setPeriod2GreaterThan(BigDecimal value) { this.Period2GreaterThan = value; return this; } public BigDecimal getPeriod2LessThan() { return Period2LessThan; } public DB_MainQuery setPeriod2LessThan(BigDecimal value) { this.Period2LessThan = value; return this; } public BigDecimal getPeriod2LessThanOrEqualTo() { return Period2LessThanOrEqualTo; } public DB_MainQuery setPeriod2LessThanOrEqualTo(BigDecimal value) { this.Period2LessThanOrEqualTo = value; return this; } public BigDecimal getPeriod2NotEqualTo() { return Period2NotEqualTo; } public DB_MainQuery setPeriod2NotEqualTo(BigDecimal value) { this.Period2NotEqualTo = value; return this; } public ArrayList getPeriod2Between() { return Period2Between; } public DB_MainQuery setPeriod2Between(ArrayList value) { this.Period2Between = value; return this; } public ArrayList getPeriod2In() { return Period2In; } public DB_MainQuery setPeriod2In(ArrayList value) { this.Period2In = value; return this; } public BigDecimal getPeriod3() { return Period3; } public DB_MainQuery setPeriod3(BigDecimal value) { this.Period3 = value; return this; } public BigDecimal getPeriod3GreaterThanOrEqualTo() { return Period3GreaterThanOrEqualTo; } public DB_MainQuery setPeriod3GreaterThanOrEqualTo(BigDecimal value) { this.Period3GreaterThanOrEqualTo = value; return this; } public BigDecimal getPeriod3GreaterThan() { return Period3GreaterThan; } public DB_MainQuery setPeriod3GreaterThan(BigDecimal value) { this.Period3GreaterThan = value; return this; } public BigDecimal getPeriod3LessThan() { return Period3LessThan; } public DB_MainQuery setPeriod3LessThan(BigDecimal value) { this.Period3LessThan = value; return this; } public BigDecimal getPeriod3LessThanOrEqualTo() { return Period3LessThanOrEqualTo; } public DB_MainQuery setPeriod3LessThanOrEqualTo(BigDecimal value) { this.Period3LessThanOrEqualTo = value; return this; } public BigDecimal getPeriod3NotEqualTo() { return Period3NotEqualTo; } public DB_MainQuery setPeriod3NotEqualTo(BigDecimal value) { this.Period3NotEqualTo = value; return this; } public ArrayList getPeriod3Between() { return Period3Between; } public DB_MainQuery setPeriod3Between(ArrayList value) { this.Period3Between = value; return this; } public ArrayList getPeriod3In() { return Period3In; } public DB_MainQuery setPeriod3In(ArrayList value) { this.Period3In = value; return this; } public BigDecimal getPeriod4() { return Period4; } public DB_MainQuery setPeriod4(BigDecimal value) { this.Period4 = value; return this; } public BigDecimal getPeriod4GreaterThanOrEqualTo() { return Period4GreaterThanOrEqualTo; } public DB_MainQuery setPeriod4GreaterThanOrEqualTo(BigDecimal value) { this.Period4GreaterThanOrEqualTo = value; return this; } public BigDecimal getPeriod4GreaterThan() { return Period4GreaterThan; } public DB_MainQuery setPeriod4GreaterThan(BigDecimal value) { this.Period4GreaterThan = value; return this; } public BigDecimal getPeriod4LessThan() { return Period4LessThan; } public DB_MainQuery setPeriod4LessThan(BigDecimal value) { this.Period4LessThan = value; return this; } public BigDecimal getPeriod4LessThanOrEqualTo() { return Period4LessThanOrEqualTo; } public DB_MainQuery setPeriod4LessThanOrEqualTo(BigDecimal value) { this.Period4LessThanOrEqualTo = value; return this; } public BigDecimal getPeriod4NotEqualTo() { return Period4NotEqualTo; } public DB_MainQuery setPeriod4NotEqualTo(BigDecimal value) { this.Period4NotEqualTo = value; return this; } public ArrayList getPeriod4Between() { return Period4Between; } public DB_MainQuery setPeriod4Between(ArrayList value) { this.Period4Between = value; return this; } public ArrayList getPeriod4In() { return Period4In; } public DB_MainQuery setPeriod4In(ArrayList value) { this.Period4In = value; return this; } public String getAltAccountNo() { return AltAccountNo; } public DB_MainQuery setAltAccountNo(String value) { this.AltAccountNo = value; return this; } public String getAltAccountNoStartsWith() { return AltAccountNoStartsWith; } public DB_MainQuery setAltAccountNoStartsWith(String value) { this.AltAccountNoStartsWith = value; return this; } public String getAltAccountNoEndsWith() { return AltAccountNoEndsWith; } public DB_MainQuery setAltAccountNoEndsWith(String value) { this.AltAccountNoEndsWith = value; return this; } public String getAltAccountNoContains() { return AltAccountNoContains; } public DB_MainQuery setAltAccountNoContains(String value) { this.AltAccountNoContains = value; return this; } public String getAltAccountNoLike() { return AltAccountNoLike; } public DB_MainQuery setAltAccountNoLike(String value) { this.AltAccountNoLike = value; return this; } public ArrayList getAltAccountNoBetween() { return AltAccountNoBetween; } public DB_MainQuery setAltAccountNoBetween(ArrayList value) { this.AltAccountNoBetween = value; return this; } public ArrayList getAltAccountNoIn() { return AltAccountNoIn; } public DB_MainQuery setAltAccountNoIn(ArrayList value) { this.AltAccountNoIn = value; return this; } public Boolean isNotifyRequired() { return NotifyRequired; } public DB_MainQuery setNotifyRequired(Boolean value) { this.NotifyRequired = value; return this; } public String getNotifyAddress() { return NotifyAddress; } public DB_MainQuery setNotifyAddress(String value) { this.NotifyAddress = value; return this; } public String getNotifyAddressStartsWith() { return NotifyAddressStartsWith; } public DB_MainQuery setNotifyAddressStartsWith(String value) { this.NotifyAddressStartsWith = value; return this; } public String getNotifyAddressEndsWith() { return NotifyAddressEndsWith; } public DB_MainQuery setNotifyAddressEndsWith(String value) { this.NotifyAddressEndsWith = value; return this; } public String getNotifyAddressContains() { return NotifyAddressContains; } public DB_MainQuery setNotifyAddressContains(String value) { this.NotifyAddressContains = value; return this; } public String getNotifyAddressLike() { return NotifyAddressLike; } public DB_MainQuery setNotifyAddressLike(String value) { this.NotifyAddressLike = value; return this; } public ArrayList getNotifyAddressBetween() { return NotifyAddressBetween; } public DB_MainQuery setNotifyAddressBetween(ArrayList value) { this.NotifyAddressBetween = value; return this; } public ArrayList getNotifyAddressIn() { return NotifyAddressIn; } public DB_MainQuery setNotifyAddressIn(ArrayList value) { this.NotifyAddressIn = value; return this; } public Date getCommenceDate() { return CommenceDate; } public DB_MainQuery setCommenceDate(Date value) { this.CommenceDate = value; return this; } public Date getCommenceDateGreaterThanOrEqualTo() { return CommenceDateGreaterThanOrEqualTo; } public DB_MainQuery setCommenceDateGreaterThanOrEqualTo(Date value) { this.CommenceDateGreaterThanOrEqualTo = value; return this; } public Date getCommenceDateGreaterThan() { return CommenceDateGreaterThan; } public DB_MainQuery setCommenceDateGreaterThan(Date value) { this.CommenceDateGreaterThan = value; return this; } public Date getCommenceDateLessThan() { return CommenceDateLessThan; } public DB_MainQuery setCommenceDateLessThan(Date value) { this.CommenceDateLessThan = value; return this; } public Date getCommenceDateLessThanOrEqualTo() { return CommenceDateLessThanOrEqualTo; } public DB_MainQuery setCommenceDateLessThanOrEqualTo(Date value) { this.CommenceDateLessThanOrEqualTo = value; return this; } public Date getCommenceDateNotEqualTo() { return CommenceDateNotEqualTo; } public DB_MainQuery setCommenceDateNotEqualTo(Date value) { this.CommenceDateNotEqualTo = value; return this; } public ArrayList getCommenceDateBetween() { return CommenceDateBetween; } public DB_MainQuery setCommenceDateBetween(ArrayList value) { this.CommenceDateBetween = value; return this; } public ArrayList getCommenceDateIn() { return CommenceDateIn; } public DB_MainQuery setCommenceDateIn(ArrayList value) { this.CommenceDateIn = value; return this; } public Boolean isWebAccess() { return WebAccess; } public DB_MainQuery setWebAccess(Boolean value) { this.WebAccess = value; return this; } public String getParentDebtorID() { return ParentDebtorID; } public DB_MainQuery setParentDebtorID(String value) { this.ParentDebtorID = value; return this; } public String getParentDebtorIDStartsWith() { return ParentDebtorIDStartsWith; } public DB_MainQuery setParentDebtorIDStartsWith(String value) { this.ParentDebtorIDStartsWith = value; return this; } public String getParentDebtorIDEndsWith() { return ParentDebtorIDEndsWith; } public DB_MainQuery setParentDebtorIDEndsWith(String value) { this.ParentDebtorIDEndsWith = value; return this; } public String getParentDebtorIDContains() { return ParentDebtorIDContains; } public DB_MainQuery setParentDebtorIDContains(String value) { this.ParentDebtorIDContains = value; return this; } public String getParentDebtorIDLike() { return ParentDebtorIDLike; } public DB_MainQuery setParentDebtorIDLike(String value) { this.ParentDebtorIDLike = value; return this; } public ArrayList getParentDebtorIDBetween() { return ParentDebtorIDBetween; } public DB_MainQuery setParentDebtorIDBetween(ArrayList value) { this.ParentDebtorIDBetween = value; return this; } public ArrayList getParentDebtorIDIn() { return ParentDebtorIDIn; } public DB_MainQuery setParentDebtorIDIn(ArrayList value) { this.ParentDebtorIDIn = value; return this; } public Date getAllocLastSavedDateTime() { return AllocLastSavedDateTime; } public DB_MainQuery setAllocLastSavedDateTime(Date value) { this.AllocLastSavedDateTime = value; return this; } public Date getAllocLastSavedDateTimeGreaterThanOrEqualTo() { return AllocLastSavedDateTimeGreaterThanOrEqualTo; } public DB_MainQuery setAllocLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.AllocLastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getAllocLastSavedDateTimeGreaterThan() { return AllocLastSavedDateTimeGreaterThan; } public DB_MainQuery setAllocLastSavedDateTimeGreaterThan(Date value) { this.AllocLastSavedDateTimeGreaterThan = value; return this; } public Date getAllocLastSavedDateTimeLessThan() { return AllocLastSavedDateTimeLessThan; } public DB_MainQuery setAllocLastSavedDateTimeLessThan(Date value) { this.AllocLastSavedDateTimeLessThan = value; return this; } public Date getAllocLastSavedDateTimeLessThanOrEqualTo() { return AllocLastSavedDateTimeLessThanOrEqualTo; } public DB_MainQuery setAllocLastSavedDateTimeLessThanOrEqualTo(Date value) { this.AllocLastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getAllocLastSavedDateTimeNotEqualTo() { return AllocLastSavedDateTimeNotEqualTo; } public DB_MainQuery setAllocLastSavedDateTimeNotEqualTo(Date value) { this.AllocLastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getAllocLastSavedDateTimeBetween() { return AllocLastSavedDateTimeBetween; } public DB_MainQuery setAllocLastSavedDateTimeBetween(ArrayList value) { this.AllocLastSavedDateTimeBetween = value; return this; } public ArrayList getAllocLastSavedDateTimeIn() { return AllocLastSavedDateTimeIn; } public DB_MainQuery setAllocLastSavedDateTimeIn(ArrayList value) { this.AllocLastSavedDateTimeIn = value; return this; } public String getPriceSchemeID() { return PriceSchemeID; } public DB_MainQuery setPriceSchemeID(String value) { this.PriceSchemeID = value; return this; } public String getPriceSchemeIDStartsWith() { return PriceSchemeIDStartsWith; } public DB_MainQuery setPriceSchemeIDStartsWith(String value) { this.PriceSchemeIDStartsWith = value; return this; } public String getPriceSchemeIDEndsWith() { return PriceSchemeIDEndsWith; } public DB_MainQuery setPriceSchemeIDEndsWith(String value) { this.PriceSchemeIDEndsWith = value; return this; } public String getPriceSchemeIDContains() { return PriceSchemeIDContains; } public DB_MainQuery setPriceSchemeIDContains(String value) { this.PriceSchemeIDContains = value; return this; } public String getPriceSchemeIDLike() { return PriceSchemeIDLike; } public DB_MainQuery setPriceSchemeIDLike(String value) { this.PriceSchemeIDLike = value; return this; } public ArrayList getPriceSchemeIDBetween() { return PriceSchemeIDBetween; } public DB_MainQuery setPriceSchemeIDBetween(ArrayList value) { this.PriceSchemeIDBetween = value; return this; } public ArrayList getPriceSchemeIDIn() { return PriceSchemeIDIn; } public DB_MainQuery setPriceSchemeIDIn(ArrayList value) { this.PriceSchemeIDIn = value; return this; } public String getAustPostDPID() { return AustPostDPID; } public DB_MainQuery setAustPostDPID(String value) { this.AustPostDPID = value; return this; } public String getAustPostDPIDStartsWith() { return AustPostDPIDStartsWith; } public DB_MainQuery setAustPostDPIDStartsWith(String value) { this.AustPostDPIDStartsWith = value; return this; } public String getAustPostDPIDEndsWith() { return AustPostDPIDEndsWith; } public DB_MainQuery setAustPostDPIDEndsWith(String value) { this.AustPostDPIDEndsWith = value; return this; } public String getAustPostDPIDContains() { return AustPostDPIDContains; } public DB_MainQuery setAustPostDPIDContains(String value) { this.AustPostDPIDContains = value; return this; } public String getAustPostDPIDLike() { return AustPostDPIDLike; } public DB_MainQuery setAustPostDPIDLike(String value) { this.AustPostDPIDLike = value; return this; } public ArrayList getAustPostDPIDBetween() { return AustPostDPIDBetween; } public DB_MainQuery setAustPostDPIDBetween(ArrayList value) { this.AustPostDPIDBetween = value; return this; } public ArrayList getAustPostDPIDIn() { return AustPostDPIDIn; } public DB_MainQuery setAustPostDPIDIn(ArrayList value) { this.AustPostDPIDIn = value; return this; } public String getAustPostBCSP() { return AustPostBCSP; } public DB_MainQuery setAustPostBCSP(String value) { this.AustPostBCSP = value; return this; } public String getAustPostBCSPStartsWith() { return AustPostBCSPStartsWith; } public DB_MainQuery setAustPostBCSPStartsWith(String value) { this.AustPostBCSPStartsWith = value; return this; } public String getAustPostBCSPEndsWith() { return AustPostBCSPEndsWith; } public DB_MainQuery setAustPostBCSPEndsWith(String value) { this.AustPostBCSPEndsWith = value; return this; } public String getAustPostBCSPContains() { return AustPostBCSPContains; } public DB_MainQuery setAustPostBCSPContains(String value) { this.AustPostBCSPContains = value; return this; } public String getAustPostBCSPLike() { return AustPostBCSPLike; } public DB_MainQuery setAustPostBCSPLike(String value) { this.AustPostBCSPLike = value; return this; } public ArrayList getAustPostBCSPBetween() { return AustPostBCSPBetween; } public DB_MainQuery setAustPostBCSPBetween(ArrayList value) { this.AustPostBCSPBetween = value; return this; } public ArrayList getAustPostBCSPIn() { return AustPostBCSPIn; } public DB_MainQuery setAustPostBCSPIn(ArrayList value) { this.AustPostBCSPIn = value; return this; } public String getTradingName() { return TradingName; } public DB_MainQuery setTradingName(String value) { this.TradingName = value; return this; } public String getTradingNameStartsWith() { return TradingNameStartsWith; } public DB_MainQuery setTradingNameStartsWith(String value) { this.TradingNameStartsWith = value; return this; } public String getTradingNameEndsWith() { return TradingNameEndsWith; } public DB_MainQuery setTradingNameEndsWith(String value) { this.TradingNameEndsWith = value; return this; } public String getTradingNameContains() { return TradingNameContains; } public DB_MainQuery setTradingNameContains(String value) { this.TradingNameContains = value; return this; } public String getTradingNameLike() { return TradingNameLike; } public DB_MainQuery setTradingNameLike(String value) { this.TradingNameLike = value; return this; } public ArrayList getTradingNameBetween() { return TradingNameBetween; } public DB_MainQuery setTradingNameBetween(ArrayList value) { this.TradingNameBetween = value; return this; } public ArrayList getTradingNameIn() { return TradingNameIn; } public DB_MainQuery setTradingNameIn(ArrayList value) { this.TradingNameIn = value; return this; } public String getCompanyName() { return CompanyName; } public DB_MainQuery setCompanyName(String value) { this.CompanyName = value; return this; } public String getCompanyNameStartsWith() { return CompanyNameStartsWith; } public DB_MainQuery setCompanyNameStartsWith(String value) { this.CompanyNameStartsWith = value; return this; } public String getCompanyNameEndsWith() { return CompanyNameEndsWith; } public DB_MainQuery setCompanyNameEndsWith(String value) { this.CompanyNameEndsWith = value; return this; } public String getCompanyNameContains() { return CompanyNameContains; } public DB_MainQuery setCompanyNameContains(String value) { this.CompanyNameContains = value; return this; } public String getCompanyNameLike() { return CompanyNameLike; } public DB_MainQuery setCompanyNameLike(String value) { this.CompanyNameLike = value; return this; } public ArrayList getCompanyNameBetween() { return CompanyNameBetween; } public DB_MainQuery setCompanyNameBetween(ArrayList value) { this.CompanyNameBetween = value; return this; } public ArrayList getCompanyNameIn() { return CompanyNameIn; } public DB_MainQuery setCompanyNameIn(ArrayList value) { this.CompanyNameIn = value; return this; } public String getAcn() { return ACN; } public DB_MainQuery setAcn(String value) { this.ACN = value; return this; } public String getAcnStartsWith() { return ACNStartsWith; } public DB_MainQuery setAcnStartsWith(String value) { this.ACNStartsWith = value; return this; } public String getAcnEndsWith() { return ACNEndsWith; } public DB_MainQuery setAcnEndsWith(String value) { this.ACNEndsWith = value; return this; } public String getAcnContains() { return ACNContains; } public DB_MainQuery setAcnContains(String value) { this.ACNContains = value; return this; } public String getAcnLike() { return ACNLike; } public DB_MainQuery setAcnLike(String value) { this.ACNLike = value; return this; } public ArrayList getAcnBetween() { return ACNBetween; } public DB_MainQuery setAcnBetween(ArrayList value) { this.ACNBetween = value; return this; } public ArrayList getAcnIn() { return ACNIn; } public DB_MainQuery setAcnIn(ArrayList value) { this.ACNIn = value; return this; } public String getProprietorsName() { return ProprietorsName; } public DB_MainQuery setProprietorsName(String value) { this.ProprietorsName = value; return this; } public String getProprietorsNameStartsWith() { return ProprietorsNameStartsWith; } public DB_MainQuery setProprietorsNameStartsWith(String value) { this.ProprietorsNameStartsWith = value; return this; } public String getProprietorsNameEndsWith() { return ProprietorsNameEndsWith; } public DB_MainQuery setProprietorsNameEndsWith(String value) { this.ProprietorsNameEndsWith = value; return this; } public String getProprietorsNameContains() { return ProprietorsNameContains; } public DB_MainQuery setProprietorsNameContains(String value) { this.ProprietorsNameContains = value; return this; } public String getProprietorsNameLike() { return ProprietorsNameLike; } public DB_MainQuery setProprietorsNameLike(String value) { this.ProprietorsNameLike = value; return this; } public ArrayList getProprietorsNameBetween() { return ProprietorsNameBetween; } public DB_MainQuery setProprietorsNameBetween(ArrayList value) { this.ProprietorsNameBetween = value; return this; } public ArrayList getProprietorsNameIn() { return ProprietorsNameIn; } public DB_MainQuery setProprietorsNameIn(ArrayList value) { this.ProprietorsNameIn = value; return this; } public String getFaxHeader() { return FaxHeader; } public DB_MainQuery setFaxHeader(String value) { this.FaxHeader = value; return this; } public String getFaxHeaderStartsWith() { return FaxHeaderStartsWith; } public DB_MainQuery setFaxHeaderStartsWith(String value) { this.FaxHeaderStartsWith = value; return this; } public String getFaxHeaderEndsWith() { return FaxHeaderEndsWith; } public DB_MainQuery setFaxHeaderEndsWith(String value) { this.FaxHeaderEndsWith = value; return this; } public String getFaxHeaderContains() { return FaxHeaderContains; } public DB_MainQuery setFaxHeaderContains(String value) { this.FaxHeaderContains = value; return this; } public String getFaxHeaderLike() { return FaxHeaderLike; } public DB_MainQuery setFaxHeaderLike(String value) { this.FaxHeaderLike = value; return this; } public ArrayList getFaxHeaderBetween() { return FaxHeaderBetween; } public DB_MainQuery setFaxHeaderBetween(ArrayList value) { this.FaxHeaderBetween = value; return this; } public ArrayList getFaxHeaderIn() { return FaxHeaderIn; } public DB_MainQuery setFaxHeaderIn(ArrayList value) { this.FaxHeaderIn = value; return this; } public String getLedgerIDDebtorControl() { return LedgerIDDebtorControl; } public DB_MainQuery setLedgerIDDebtorControl(String value) { this.LedgerIDDebtorControl = value; return this; } public String getLedgerIDDebtorControlStartsWith() { return LedgerIDDebtorControlStartsWith; } public DB_MainQuery setLedgerIDDebtorControlStartsWith(String value) { this.LedgerIDDebtorControlStartsWith = value; return this; } public String getLedgerIDDebtorControlEndsWith() { return LedgerIDDebtorControlEndsWith; } public DB_MainQuery setLedgerIDDebtorControlEndsWith(String value) { this.LedgerIDDebtorControlEndsWith = value; return this; } public String getLedgerIDDebtorControlContains() { return LedgerIDDebtorControlContains; } public DB_MainQuery setLedgerIDDebtorControlContains(String value) { this.LedgerIDDebtorControlContains = value; return this; } public String getLedgerIDDebtorControlLike() { return LedgerIDDebtorControlLike; } public DB_MainQuery setLedgerIDDebtorControlLike(String value) { this.LedgerIDDebtorControlLike = value; return this; } public ArrayList getLedgerIDDebtorControlBetween() { return LedgerIDDebtorControlBetween; } public DB_MainQuery setLedgerIDDebtorControlBetween(ArrayList value) { this.LedgerIDDebtorControlBetween = value; return this; } public ArrayList getLedgerIDDebtorControlIn() { return LedgerIDDebtorControlIn; } public DB_MainQuery setLedgerIDDebtorControlIn(ArrayList value) { this.LedgerIDDebtorControlIn = value; return this; } public String getLedgerIDDebtorSales() { return LedgerIDDebtorSales; } public DB_MainQuery setLedgerIDDebtorSales(String value) { this.LedgerIDDebtorSales = value; return this; } public String getLedgerIDDebtorSalesStartsWith() { return LedgerIDDebtorSalesStartsWith; } public DB_MainQuery setLedgerIDDebtorSalesStartsWith(String value) { this.LedgerIDDebtorSalesStartsWith = value; return this; } public String getLedgerIDDebtorSalesEndsWith() { return LedgerIDDebtorSalesEndsWith; } public DB_MainQuery setLedgerIDDebtorSalesEndsWith(String value) { this.LedgerIDDebtorSalesEndsWith = value; return this; } public String getLedgerIDDebtorSalesContains() { return LedgerIDDebtorSalesContains; } public DB_MainQuery setLedgerIDDebtorSalesContains(String value) { this.LedgerIDDebtorSalesContains = value; return this; } public String getLedgerIDDebtorSalesLike() { return LedgerIDDebtorSalesLike; } public DB_MainQuery setLedgerIDDebtorSalesLike(String value) { this.LedgerIDDebtorSalesLike = value; return this; } public ArrayList getLedgerIDDebtorSalesBetween() { return LedgerIDDebtorSalesBetween; } public DB_MainQuery setLedgerIDDebtorSalesBetween(ArrayList value) { this.LedgerIDDebtorSalesBetween = value; return this; } public ArrayList getLedgerIDDebtorSalesIn() { return LedgerIDDebtorSalesIn; } public DB_MainQuery setLedgerIDDebtorSalesIn(ArrayList value) { this.LedgerIDDebtorSalesIn = value; return this; } public String getLedgerIDDebtorDiscounts() { return LedgerIDDebtorDiscounts; } public DB_MainQuery setLedgerIDDebtorDiscounts(String value) { this.LedgerIDDebtorDiscounts = value; return this; } public String getLedgerIDDebtorDiscountsStartsWith() { return LedgerIDDebtorDiscountsStartsWith; } public DB_MainQuery setLedgerIDDebtorDiscountsStartsWith(String value) { this.LedgerIDDebtorDiscountsStartsWith = value; return this; } public String getLedgerIDDebtorDiscountsEndsWith() { return LedgerIDDebtorDiscountsEndsWith; } public DB_MainQuery setLedgerIDDebtorDiscountsEndsWith(String value) { this.LedgerIDDebtorDiscountsEndsWith = value; return this; } public String getLedgerIDDebtorDiscountsContains() { return LedgerIDDebtorDiscountsContains; } public DB_MainQuery setLedgerIDDebtorDiscountsContains(String value) { this.LedgerIDDebtorDiscountsContains = value; return this; } public String getLedgerIDDebtorDiscountsLike() { return LedgerIDDebtorDiscountsLike; } public DB_MainQuery setLedgerIDDebtorDiscountsLike(String value) { this.LedgerIDDebtorDiscountsLike = value; return this; } public ArrayList getLedgerIDDebtorDiscountsBetween() { return LedgerIDDebtorDiscountsBetween; } public DB_MainQuery setLedgerIDDebtorDiscountsBetween(ArrayList value) { this.LedgerIDDebtorDiscountsBetween = value; return this; } public ArrayList getLedgerIDDebtorDiscountsIn() { return LedgerIDDebtorDiscountsIn; } public DB_MainQuery setLedgerIDDebtorDiscountsIn(ArrayList value) { this.LedgerIDDebtorDiscountsIn = value; return this; } public String getLedgerIDDebtorSourcedInvoices() { return LedgerIDDebtorSourcedInvoices; } public DB_MainQuery setLedgerIDDebtorSourcedInvoices(String value) { this.LedgerIDDebtorSourcedInvoices = value; return this; } public String getLedgerIDDebtorSourcedInvoicesStartsWith() { return LedgerIDDebtorSourcedInvoicesStartsWith; } public DB_MainQuery setLedgerIDDebtorSourcedInvoicesStartsWith(String value) { this.LedgerIDDebtorSourcedInvoicesStartsWith = value; return this; } public String getLedgerIDDebtorSourcedInvoicesEndsWith() { return LedgerIDDebtorSourcedInvoicesEndsWith; } public DB_MainQuery setLedgerIDDebtorSourcedInvoicesEndsWith(String value) { this.LedgerIDDebtorSourcedInvoicesEndsWith = value; return this; } public String getLedgerIDDebtorSourcedInvoicesContains() { return LedgerIDDebtorSourcedInvoicesContains; } public DB_MainQuery setLedgerIDDebtorSourcedInvoicesContains(String value) { this.LedgerIDDebtorSourcedInvoicesContains = value; return this; } public String getLedgerIDDebtorSourcedInvoicesLike() { return LedgerIDDebtorSourcedInvoicesLike; } public DB_MainQuery setLedgerIDDebtorSourcedInvoicesLike(String value) { this.LedgerIDDebtorSourcedInvoicesLike = value; return this; } public ArrayList getLedgerIDDebtorSourcedInvoicesBetween() { return LedgerIDDebtorSourcedInvoicesBetween; } public DB_MainQuery setLedgerIDDebtorSourcedInvoicesBetween(ArrayList value) { this.LedgerIDDebtorSourcedInvoicesBetween = value; return this; } public ArrayList getLedgerIDDebtorSourcedInvoicesIn() { return LedgerIDDebtorSourcedInvoicesIn; } public DB_MainQuery setLedgerIDDebtorSourcedInvoicesIn(ArrayList value) { this.LedgerIDDebtorSourcedInvoicesIn = value; return this; } public String getLedgerIDDebtorDebitAdjustment() { return LedgerIDDebtorDebitAdjustment; } public DB_MainQuery setLedgerIDDebtorDebitAdjustment(String value) { this.LedgerIDDebtorDebitAdjustment = value; return this; } public String getLedgerIDDebtorDebitAdjustmentStartsWith() { return LedgerIDDebtorDebitAdjustmentStartsWith; } public DB_MainQuery setLedgerIDDebtorDebitAdjustmentStartsWith(String value) { this.LedgerIDDebtorDebitAdjustmentStartsWith = value; return this; } public String getLedgerIDDebtorDebitAdjustmentEndsWith() { return LedgerIDDebtorDebitAdjustmentEndsWith; } public DB_MainQuery setLedgerIDDebtorDebitAdjustmentEndsWith(String value) { this.LedgerIDDebtorDebitAdjustmentEndsWith = value; return this; } public String getLedgerIDDebtorDebitAdjustmentContains() { return LedgerIDDebtorDebitAdjustmentContains; } public DB_MainQuery setLedgerIDDebtorDebitAdjustmentContains(String value) { this.LedgerIDDebtorDebitAdjustmentContains = value; return this; } public String getLedgerIDDebtorDebitAdjustmentLike() { return LedgerIDDebtorDebitAdjustmentLike; } public DB_MainQuery setLedgerIDDebtorDebitAdjustmentLike(String value) { this.LedgerIDDebtorDebitAdjustmentLike = value; return this; } public ArrayList getLedgerIDDebtorDebitAdjustmentBetween() { return LedgerIDDebtorDebitAdjustmentBetween; } public DB_MainQuery setLedgerIDDebtorDebitAdjustmentBetween(ArrayList value) { this.LedgerIDDebtorDebitAdjustmentBetween = value; return this; } public ArrayList getLedgerIDDebtorDebitAdjustmentIn() { return LedgerIDDebtorDebitAdjustmentIn; } public DB_MainQuery setLedgerIDDebtorDebitAdjustmentIn(ArrayList value) { this.LedgerIDDebtorDebitAdjustmentIn = value; return this; } public String getLedgerIDDebtorSourcedReceipts() { return LedgerIDDebtorSourcedReceipts; } public DB_MainQuery setLedgerIDDebtorSourcedReceipts(String value) { this.LedgerIDDebtorSourcedReceipts = value; return this; } public String getLedgerIDDebtorSourcedReceiptsStartsWith() { return LedgerIDDebtorSourcedReceiptsStartsWith; } public DB_MainQuery setLedgerIDDebtorSourcedReceiptsStartsWith(String value) { this.LedgerIDDebtorSourcedReceiptsStartsWith = value; return this; } public String getLedgerIDDebtorSourcedReceiptsEndsWith() { return LedgerIDDebtorSourcedReceiptsEndsWith; } public DB_MainQuery setLedgerIDDebtorSourcedReceiptsEndsWith(String value) { this.LedgerIDDebtorSourcedReceiptsEndsWith = value; return this; } public String getLedgerIDDebtorSourcedReceiptsContains() { return LedgerIDDebtorSourcedReceiptsContains; } public DB_MainQuery setLedgerIDDebtorSourcedReceiptsContains(String value) { this.LedgerIDDebtorSourcedReceiptsContains = value; return this; } public String getLedgerIDDebtorSourcedReceiptsLike() { return LedgerIDDebtorSourcedReceiptsLike; } public DB_MainQuery setLedgerIDDebtorSourcedReceiptsLike(String value) { this.LedgerIDDebtorSourcedReceiptsLike = value; return this; } public ArrayList getLedgerIDDebtorSourcedReceiptsBetween() { return LedgerIDDebtorSourcedReceiptsBetween; } public DB_MainQuery setLedgerIDDebtorSourcedReceiptsBetween(ArrayList value) { this.LedgerIDDebtorSourcedReceiptsBetween = value; return this; } public ArrayList getLedgerIDDebtorSourcedReceiptsIn() { return LedgerIDDebtorSourcedReceiptsIn; } public DB_MainQuery setLedgerIDDebtorSourcedReceiptsIn(ArrayList value) { this.LedgerIDDebtorSourcedReceiptsIn = value; return this; } public String getLedgerIDDebtorCreditAdjustment() { return LedgerIDDebtorCreditAdjustment; } public DB_MainQuery setLedgerIDDebtorCreditAdjustment(String value) { this.LedgerIDDebtorCreditAdjustment = value; return this; } public String getLedgerIDDebtorCreditAdjustmentStartsWith() { return LedgerIDDebtorCreditAdjustmentStartsWith; } public DB_MainQuery setLedgerIDDebtorCreditAdjustmentStartsWith(String value) { this.LedgerIDDebtorCreditAdjustmentStartsWith = value; return this; } public String getLedgerIDDebtorCreditAdjustmentEndsWith() { return LedgerIDDebtorCreditAdjustmentEndsWith; } public DB_MainQuery setLedgerIDDebtorCreditAdjustmentEndsWith(String value) { this.LedgerIDDebtorCreditAdjustmentEndsWith = value; return this; } public String getLedgerIDDebtorCreditAdjustmentContains() { return LedgerIDDebtorCreditAdjustmentContains; } public DB_MainQuery setLedgerIDDebtorCreditAdjustmentContains(String value) { this.LedgerIDDebtorCreditAdjustmentContains = value; return this; } public String getLedgerIDDebtorCreditAdjustmentLike() { return LedgerIDDebtorCreditAdjustmentLike; } public DB_MainQuery setLedgerIDDebtorCreditAdjustmentLike(String value) { this.LedgerIDDebtorCreditAdjustmentLike = value; return this; } public ArrayList getLedgerIDDebtorCreditAdjustmentBetween() { return LedgerIDDebtorCreditAdjustmentBetween; } public DB_MainQuery setLedgerIDDebtorCreditAdjustmentBetween(ArrayList value) { this.LedgerIDDebtorCreditAdjustmentBetween = value; return this; } public ArrayList getLedgerIDDebtorCreditAdjustmentIn() { return LedgerIDDebtorCreditAdjustmentIn; } public DB_MainQuery setLedgerIDDebtorCreditAdjustmentIn(ArrayList value) { this.LedgerIDDebtorCreditAdjustmentIn = value; return this; } public String getLedgerIDDebtorFreight() { return LedgerIDDebtorFreight; } public DB_MainQuery setLedgerIDDebtorFreight(String value) { this.LedgerIDDebtorFreight = value; return this; } public String getLedgerIDDebtorFreightStartsWith() { return LedgerIDDebtorFreightStartsWith; } public DB_MainQuery setLedgerIDDebtorFreightStartsWith(String value) { this.LedgerIDDebtorFreightStartsWith = value; return this; } public String getLedgerIDDebtorFreightEndsWith() { return LedgerIDDebtorFreightEndsWith; } public DB_MainQuery setLedgerIDDebtorFreightEndsWith(String value) { this.LedgerIDDebtorFreightEndsWith = value; return this; } public String getLedgerIDDebtorFreightContains() { return LedgerIDDebtorFreightContains; } public DB_MainQuery setLedgerIDDebtorFreightContains(String value) { this.LedgerIDDebtorFreightContains = value; return this; } public String getLedgerIDDebtorFreightLike() { return LedgerIDDebtorFreightLike; } public DB_MainQuery setLedgerIDDebtorFreightLike(String value) { this.LedgerIDDebtorFreightLike = value; return this; } public ArrayList getLedgerIDDebtorFreightBetween() { return LedgerIDDebtorFreightBetween; } public DB_MainQuery setLedgerIDDebtorFreightBetween(ArrayList value) { this.LedgerIDDebtorFreightBetween = value; return this; } public ArrayList getLedgerIDDebtorFreightIn() { return LedgerIDDebtorFreightIn; } public DB_MainQuery setLedgerIDDebtorFreightIn(ArrayList value) { this.LedgerIDDebtorFreightIn = value; return this; } public String getLedgerIDDebtorInsurance() { return LedgerIDDebtorInsurance; } public DB_MainQuery setLedgerIDDebtorInsurance(String value) { this.LedgerIDDebtorInsurance = value; return this; } public String getLedgerIDDebtorInsuranceStartsWith() { return LedgerIDDebtorInsuranceStartsWith; } public DB_MainQuery setLedgerIDDebtorInsuranceStartsWith(String value) { this.LedgerIDDebtorInsuranceStartsWith = value; return this; } public String getLedgerIDDebtorInsuranceEndsWith() { return LedgerIDDebtorInsuranceEndsWith; } public DB_MainQuery setLedgerIDDebtorInsuranceEndsWith(String value) { this.LedgerIDDebtorInsuranceEndsWith = value; return this; } public String getLedgerIDDebtorInsuranceContains() { return LedgerIDDebtorInsuranceContains; } public DB_MainQuery setLedgerIDDebtorInsuranceContains(String value) { this.LedgerIDDebtorInsuranceContains = value; return this; } public String getLedgerIDDebtorInsuranceLike() { return LedgerIDDebtorInsuranceLike; } public DB_MainQuery setLedgerIDDebtorInsuranceLike(String value) { this.LedgerIDDebtorInsuranceLike = value; return this; } public ArrayList getLedgerIDDebtorInsuranceBetween() { return LedgerIDDebtorInsuranceBetween; } public DB_MainQuery setLedgerIDDebtorInsuranceBetween(ArrayList value) { this.LedgerIDDebtorInsuranceBetween = value; return this; } public ArrayList getLedgerIDDebtorInsuranceIn() { return LedgerIDDebtorInsuranceIn; } public DB_MainQuery setLedgerIDDebtorInsuranceIn(ArrayList value) { this.LedgerIDDebtorInsuranceIn = value; return this; } public String getLedgerIDDebtorRealisedGainLoss() { return LedgerIDDebtorRealisedGainLoss; } public DB_MainQuery setLedgerIDDebtorRealisedGainLoss(String value) { this.LedgerIDDebtorRealisedGainLoss = value; return this; } public String getLedgerIDDebtorRealisedGainLossStartsWith() { return LedgerIDDebtorRealisedGainLossStartsWith; } public DB_MainQuery setLedgerIDDebtorRealisedGainLossStartsWith(String value) { this.LedgerIDDebtorRealisedGainLossStartsWith = value; return this; } public String getLedgerIDDebtorRealisedGainLossEndsWith() { return LedgerIDDebtorRealisedGainLossEndsWith; } public DB_MainQuery setLedgerIDDebtorRealisedGainLossEndsWith(String value) { this.LedgerIDDebtorRealisedGainLossEndsWith = value; return this; } public String getLedgerIDDebtorRealisedGainLossContains() { return LedgerIDDebtorRealisedGainLossContains; } public DB_MainQuery setLedgerIDDebtorRealisedGainLossContains(String value) { this.LedgerIDDebtorRealisedGainLossContains = value; return this; } public String getLedgerIDDebtorRealisedGainLossLike() { return LedgerIDDebtorRealisedGainLossLike; } public DB_MainQuery setLedgerIDDebtorRealisedGainLossLike(String value) { this.LedgerIDDebtorRealisedGainLossLike = value; return this; } public ArrayList getLedgerIDDebtorRealisedGainLossBetween() { return LedgerIDDebtorRealisedGainLossBetween; } public DB_MainQuery setLedgerIDDebtorRealisedGainLossBetween(ArrayList value) { this.LedgerIDDebtorRealisedGainLossBetween = value; return this; } public ArrayList getLedgerIDDebtorRealisedGainLossIn() { return LedgerIDDebtorRealisedGainLossIn; } public DB_MainQuery setLedgerIDDebtorRealisedGainLossIn(ArrayList value) { this.LedgerIDDebtorRealisedGainLossIn = value; return this; } public String getLedgerIDDebtorUnRealisedGainLoss() { return LedgerIDDebtorUnRealisedGainLoss; } public DB_MainQuery setLedgerIDDebtorUnRealisedGainLoss(String value) { this.LedgerIDDebtorUnRealisedGainLoss = value; return this; } public String getLedgerIDDebtorUnRealisedGainLossStartsWith() { return LedgerIDDebtorUnRealisedGainLossStartsWith; } public DB_MainQuery setLedgerIDDebtorUnRealisedGainLossStartsWith(String value) { this.LedgerIDDebtorUnRealisedGainLossStartsWith = value; return this; } public String getLedgerIDDebtorUnRealisedGainLossEndsWith() { return LedgerIDDebtorUnRealisedGainLossEndsWith; } public DB_MainQuery setLedgerIDDebtorUnRealisedGainLossEndsWith(String value) { this.LedgerIDDebtorUnRealisedGainLossEndsWith = value; return this; } public String getLedgerIDDebtorUnRealisedGainLossContains() { return LedgerIDDebtorUnRealisedGainLossContains; } public DB_MainQuery setLedgerIDDebtorUnRealisedGainLossContains(String value) { this.LedgerIDDebtorUnRealisedGainLossContains = value; return this; } public String getLedgerIDDebtorUnRealisedGainLossLike() { return LedgerIDDebtorUnRealisedGainLossLike; } public DB_MainQuery setLedgerIDDebtorUnRealisedGainLossLike(String value) { this.LedgerIDDebtorUnRealisedGainLossLike = value; return this; } public ArrayList getLedgerIDDebtorUnRealisedGainLossBetween() { return LedgerIDDebtorUnRealisedGainLossBetween; } public DB_MainQuery setLedgerIDDebtorUnRealisedGainLossBetween(ArrayList value) { this.LedgerIDDebtorUnRealisedGainLossBetween = value; return this; } public ArrayList getLedgerIDDebtorUnRealisedGainLossIn() { return LedgerIDDebtorUnRealisedGainLossIn; } public DB_MainQuery setLedgerIDDebtorUnRealisedGainLossIn(ArrayList value) { this.LedgerIDDebtorUnRealisedGainLossIn = value; return this; } public Short getPeriodType() { return PeriodType; } public DB_MainQuery setPeriodType(Short value) { this.PeriodType = value; return this; } public Short getPeriodTypeGreaterThanOrEqualTo() { return PeriodTypeGreaterThanOrEqualTo; } public DB_MainQuery setPeriodTypeGreaterThanOrEqualTo(Short value) { this.PeriodTypeGreaterThanOrEqualTo = value; return this; } public Short getPeriodTypeGreaterThan() { return PeriodTypeGreaterThan; } public DB_MainQuery setPeriodTypeGreaterThan(Short value) { this.PeriodTypeGreaterThan = value; return this; } public Short getPeriodTypeLessThan() { return PeriodTypeLessThan; } public DB_MainQuery setPeriodTypeLessThan(Short value) { this.PeriodTypeLessThan = value; return this; } public Short getPeriodTypeLessThanOrEqualTo() { return PeriodTypeLessThanOrEqualTo; } public DB_MainQuery setPeriodTypeLessThanOrEqualTo(Short value) { this.PeriodTypeLessThanOrEqualTo = value; return this; } public Short getPeriodTypeNotEqualTo() { return PeriodTypeNotEqualTo; } public DB_MainQuery setPeriodTypeNotEqualTo(Short value) { this.PeriodTypeNotEqualTo = value; return this; } public ArrayList getPeriodTypeBetween() { return PeriodTypeBetween; } public DB_MainQuery setPeriodTypeBetween(ArrayList value) { this.PeriodTypeBetween = value; return this; } public ArrayList getPeriodTypeIn() { return PeriodTypeIn; } public DB_MainQuery setPeriodTypeIn(ArrayList value) { this.PeriodTypeIn = value; return this; } public Short getTermsDays() { return TermsDays; } public DB_MainQuery setTermsDays(Short value) { this.TermsDays = value; return this; } public Short getTermsDaysGreaterThanOrEqualTo() { return TermsDaysGreaterThanOrEqualTo; } public DB_MainQuery setTermsDaysGreaterThanOrEqualTo(Short value) { this.TermsDaysGreaterThanOrEqualTo = value; return this; } public Short getTermsDaysGreaterThan() { return TermsDaysGreaterThan; } public DB_MainQuery setTermsDaysGreaterThan(Short value) { this.TermsDaysGreaterThan = value; return this; } public Short getTermsDaysLessThan() { return TermsDaysLessThan; } public DB_MainQuery setTermsDaysLessThan(Short value) { this.TermsDaysLessThan = value; return this; } public Short getTermsDaysLessThanOrEqualTo() { return TermsDaysLessThanOrEqualTo; } public DB_MainQuery setTermsDaysLessThanOrEqualTo(Short value) { this.TermsDaysLessThanOrEqualTo = value; return this; } public Short getTermsDaysNotEqualTo() { return TermsDaysNotEqualTo; } public DB_MainQuery setTermsDaysNotEqualTo(Short value) { this.TermsDaysNotEqualTo = value; return this; } public ArrayList getTermsDaysBetween() { return TermsDaysBetween; } public DB_MainQuery setTermsDaysBetween(ArrayList value) { this.TermsDaysBetween = value; return this; } public ArrayList getTermsDaysIn() { return TermsDaysIn; } public DB_MainQuery setTermsDaysIn(ArrayList value) { this.TermsDaysIn = value; return this; } public Short getTermsType() { return TermsType; } public DB_MainQuery setTermsType(Short value) { this.TermsType = value; return this; } public Short getTermsTypeGreaterThanOrEqualTo() { return TermsTypeGreaterThanOrEqualTo; } public DB_MainQuery setTermsTypeGreaterThanOrEqualTo(Short value) { this.TermsTypeGreaterThanOrEqualTo = value; return this; } public Short getTermsTypeGreaterThan() { return TermsTypeGreaterThan; } public DB_MainQuery setTermsTypeGreaterThan(Short value) { this.TermsTypeGreaterThan = value; return this; } public Short getTermsTypeLessThan() { return TermsTypeLessThan; } public DB_MainQuery setTermsTypeLessThan(Short value) { this.TermsTypeLessThan = value; return this; } public Short getTermsTypeLessThanOrEqualTo() { return TermsTypeLessThanOrEqualTo; } public DB_MainQuery setTermsTypeLessThanOrEqualTo(Short value) { this.TermsTypeLessThanOrEqualTo = value; return this; } public Short getTermsTypeNotEqualTo() { return TermsTypeNotEqualTo; } public DB_MainQuery setTermsTypeNotEqualTo(Short value) { this.TermsTypeNotEqualTo = value; return this; } public ArrayList getTermsTypeBetween() { return TermsTypeBetween; } public DB_MainQuery setTermsTypeBetween(ArrayList value) { this.TermsTypeBetween = value; return this; } public ArrayList getTermsTypeIn() { return TermsTypeIn; } public DB_MainQuery setTermsTypeIn(ArrayList value) { this.TermsTypeIn = value; return this; } public String getAbn() { return ABN; } public DB_MainQuery setAbn(String value) { this.ABN = value; return this; } public String getAbnStartsWith() { return ABNStartsWith; } public DB_MainQuery setAbnStartsWith(String value) { this.ABNStartsWith = value; return this; } public String getAbnEndsWith() { return ABNEndsWith; } public DB_MainQuery setAbnEndsWith(String value) { this.ABNEndsWith = value; return this; } public String getAbnContains() { return ABNContains; } public DB_MainQuery setAbnContains(String value) { this.ABNContains = value; return this; } public String getAbnLike() { return ABNLike; } public DB_MainQuery setAbnLike(String value) { this.ABNLike = value; return this; } public ArrayList getAbnBetween() { return ABNBetween; } public DB_MainQuery setAbnBetween(ArrayList value) { this.ABNBetween = value; return this; } public ArrayList getAbnIn() { return ABNIn; } public DB_MainQuery setAbnIn(ArrayList value) { this.ABNIn = value; return this; } public Boolean isExcludeFromAging() { return ExcludeFromAging; } public DB_MainQuery setExcludeFromAging(Boolean value) { this.ExcludeFromAging = value; return this; } public String getBPayReference() { return BPayReference; } public DB_MainQuery setBPayReference(String value) { this.BPayReference = value; return this; } public String getBPayReferenceStartsWith() { return BPayReferenceStartsWith; } public DB_MainQuery setBPayReferenceStartsWith(String value) { this.BPayReferenceStartsWith = value; return this; } public String getBPayReferenceEndsWith() { return BPayReferenceEndsWith; } public DB_MainQuery setBPayReferenceEndsWith(String value) { this.BPayReferenceEndsWith = value; return this; } public String getBPayReferenceContains() { return BPayReferenceContains; } public DB_MainQuery setBPayReferenceContains(String value) { this.BPayReferenceContains = value; return this; } public String getBPayReferenceLike() { return BPayReferenceLike; } public DB_MainQuery setBPayReferenceLike(String value) { this.BPayReferenceLike = value; return this; } public ArrayList getBPayReferenceBetween() { return BPayReferenceBetween; } public DB_MainQuery setBPayReferenceBetween(ArrayList value) { this.BPayReferenceBetween = value; return this; } public ArrayList getBPayReferenceIn() { return BPayReferenceIn; } public DB_MainQuery setBPayReferenceIn(ArrayList value) { this.BPayReferenceIn = value; return this; } public Boolean isUsesFX() { return UsesFX; } public DB_MainQuery setUsesFX(Boolean value) { this.UsesFX = value; return this; } public String getFxCurrencyID() { return FXCurrencyID; } public DB_MainQuery setFxCurrencyID(String value) { this.FXCurrencyID = value; return this; } public String getFxCurrencyIDStartsWith() { return FXCurrencyIDStartsWith; } public DB_MainQuery setFxCurrencyIDStartsWith(String value) { this.FXCurrencyIDStartsWith = value; return this; } public String getFxCurrencyIDEndsWith() { return FXCurrencyIDEndsWith; } public DB_MainQuery setFxCurrencyIDEndsWith(String value) { this.FXCurrencyIDEndsWith = value; return this; } public String getFxCurrencyIDContains() { return FXCurrencyIDContains; } public DB_MainQuery setFxCurrencyIDContains(String value) { this.FXCurrencyIDContains = value; return this; } public String getFxCurrencyIDLike() { return FXCurrencyIDLike; } public DB_MainQuery setFxCurrencyIDLike(String value) { this.FXCurrencyIDLike = value; return this; } public ArrayList getFxCurrencyIDBetween() { return FXCurrencyIDBetween; } public DB_MainQuery setFxCurrencyIDBetween(ArrayList value) { this.FXCurrencyIDBetween = value; return this; } public ArrayList getFxCurrencyIDIn() { return FXCurrencyIDIn; } public DB_MainQuery setFxCurrencyIDIn(ArrayList value) { this.FXCurrencyIDIn = value; return this; } public BigDecimal getFxCurrentBalance() { return FXCurrentBalance; } public DB_MainQuery setFxCurrentBalance(BigDecimal value) { this.FXCurrentBalance = value; return this; } public BigDecimal getFxCurrentBalanceGreaterThanOrEqualTo() { return FXCurrentBalanceGreaterThanOrEqualTo; } public DB_MainQuery setFxCurrentBalanceGreaterThanOrEqualTo(BigDecimal value) { this.FXCurrentBalanceGreaterThanOrEqualTo = value; return this; } public BigDecimal getFxCurrentBalanceGreaterThan() { return FXCurrentBalanceGreaterThan; } public DB_MainQuery setFxCurrentBalanceGreaterThan(BigDecimal value) { this.FXCurrentBalanceGreaterThan = value; return this; } public BigDecimal getFxCurrentBalanceLessThan() { return FXCurrentBalanceLessThan; } public DB_MainQuery setFxCurrentBalanceLessThan(BigDecimal value) { this.FXCurrentBalanceLessThan = value; return this; } public BigDecimal getFxCurrentBalanceLessThanOrEqualTo() { return FXCurrentBalanceLessThanOrEqualTo; } public DB_MainQuery setFxCurrentBalanceLessThanOrEqualTo(BigDecimal value) { this.FXCurrentBalanceLessThanOrEqualTo = value; return this; } public BigDecimal getFxCurrentBalanceNotEqualTo() { return FXCurrentBalanceNotEqualTo; } public DB_MainQuery setFxCurrentBalanceNotEqualTo(BigDecimal value) { this.FXCurrentBalanceNotEqualTo = value; return this; } public ArrayList getFxCurrentBalanceBetween() { return FXCurrentBalanceBetween; } public DB_MainQuery setFxCurrentBalanceBetween(ArrayList value) { this.FXCurrentBalanceBetween = value; return this; } public ArrayList getFxCurrentBalanceIn() { return FXCurrentBalanceIn; } public DB_MainQuery setFxCurrentBalanceIn(ArrayList value) { this.FXCurrentBalanceIn = value; return this; } public BigDecimal getFxPeriod1() { return FXPeriod1; } public DB_MainQuery setFxPeriod1(BigDecimal value) { this.FXPeriod1 = value; return this; } public BigDecimal getFxPeriod1GreaterThanOrEqualTo() { return FXPeriod1GreaterThanOrEqualTo; } public DB_MainQuery setFxPeriod1GreaterThanOrEqualTo(BigDecimal value) { this.FXPeriod1GreaterThanOrEqualTo = value; return this; } public BigDecimal getFxPeriod1GreaterThan() { return FXPeriod1GreaterThan; } public DB_MainQuery setFxPeriod1GreaterThan(BigDecimal value) { this.FXPeriod1GreaterThan = value; return this; } public BigDecimal getFxPeriod1LessThan() { return FXPeriod1LessThan; } public DB_MainQuery setFxPeriod1LessThan(BigDecimal value) { this.FXPeriod1LessThan = value; return this; } public BigDecimal getFxPeriod1LessThanOrEqualTo() { return FXPeriod1LessThanOrEqualTo; } public DB_MainQuery setFxPeriod1LessThanOrEqualTo(BigDecimal value) { this.FXPeriod1LessThanOrEqualTo = value; return this; } public BigDecimal getFxPeriod1NotEqualTo() { return FXPeriod1NotEqualTo; } public DB_MainQuery setFxPeriod1NotEqualTo(BigDecimal value) { this.FXPeriod1NotEqualTo = value; return this; } public ArrayList getFxPeriod1Between() { return FXPeriod1Between; } public DB_MainQuery setFxPeriod1Between(ArrayList value) { this.FXPeriod1Between = value; return this; } public ArrayList getFxPeriod1In() { return FXPeriod1In; } public DB_MainQuery setFxPeriod1In(ArrayList value) { this.FXPeriod1In = value; return this; } public BigDecimal getFxPeriod2() { return FXPeriod2; } public DB_MainQuery setFxPeriod2(BigDecimal value) { this.FXPeriod2 = value; return this; } public BigDecimal getFxPeriod2GreaterThanOrEqualTo() { return FXPeriod2GreaterThanOrEqualTo; } public DB_MainQuery setFxPeriod2GreaterThanOrEqualTo(BigDecimal value) { this.FXPeriod2GreaterThanOrEqualTo = value; return this; } public BigDecimal getFxPeriod2GreaterThan() { return FXPeriod2GreaterThan; } public DB_MainQuery setFxPeriod2GreaterThan(BigDecimal value) { this.FXPeriod2GreaterThan = value; return this; } public BigDecimal getFxPeriod2LessThan() { return FXPeriod2LessThan; } public DB_MainQuery setFxPeriod2LessThan(BigDecimal value) { this.FXPeriod2LessThan = value; return this; } public BigDecimal getFxPeriod2LessThanOrEqualTo() { return FXPeriod2LessThanOrEqualTo; } public DB_MainQuery setFxPeriod2LessThanOrEqualTo(BigDecimal value) { this.FXPeriod2LessThanOrEqualTo = value; return this; } public BigDecimal getFxPeriod2NotEqualTo() { return FXPeriod2NotEqualTo; } public DB_MainQuery setFxPeriod2NotEqualTo(BigDecimal value) { this.FXPeriod2NotEqualTo = value; return this; } public ArrayList getFxPeriod2Between() { return FXPeriod2Between; } public DB_MainQuery setFxPeriod2Between(ArrayList value) { this.FXPeriod2Between = value; return this; } public ArrayList getFxPeriod2In() { return FXPeriod2In; } public DB_MainQuery setFxPeriod2In(ArrayList value) { this.FXPeriod2In = value; return this; } public BigDecimal getFxPeriod3() { return FXPeriod3; } public DB_MainQuery setFxPeriod3(BigDecimal value) { this.FXPeriod3 = value; return this; } public BigDecimal getFxPeriod3GreaterThanOrEqualTo() { return FXPeriod3GreaterThanOrEqualTo; } public DB_MainQuery setFxPeriod3GreaterThanOrEqualTo(BigDecimal value) { this.FXPeriod3GreaterThanOrEqualTo = value; return this; } public BigDecimal getFxPeriod3GreaterThan() { return FXPeriod3GreaterThan; } public DB_MainQuery setFxPeriod3GreaterThan(BigDecimal value) { this.FXPeriod3GreaterThan = value; return this; } public BigDecimal getFxPeriod3LessThan() { return FXPeriod3LessThan; } public DB_MainQuery setFxPeriod3LessThan(BigDecimal value) { this.FXPeriod3LessThan = value; return this; } public BigDecimal getFxPeriod3LessThanOrEqualTo() { return FXPeriod3LessThanOrEqualTo; } public DB_MainQuery setFxPeriod3LessThanOrEqualTo(BigDecimal value) { this.FXPeriod3LessThanOrEqualTo = value; return this; } public BigDecimal getFxPeriod3NotEqualTo() { return FXPeriod3NotEqualTo; } public DB_MainQuery setFxPeriod3NotEqualTo(BigDecimal value) { this.FXPeriod3NotEqualTo = value; return this; } public ArrayList getFxPeriod3Between() { return FXPeriod3Between; } public DB_MainQuery setFxPeriod3Between(ArrayList value) { this.FXPeriod3Between = value; return this; } public ArrayList getFxPeriod3In() { return FXPeriod3In; } public DB_MainQuery setFxPeriod3In(ArrayList value) { this.FXPeriod3In = value; return this; } public BigDecimal getFxPeriod4() { return FXPeriod4; } public DB_MainQuery setFxPeriod4(BigDecimal value) { this.FXPeriod4 = value; return this; } public BigDecimal getFxPeriod4GreaterThanOrEqualTo() { return FXPeriod4GreaterThanOrEqualTo; } public DB_MainQuery setFxPeriod4GreaterThanOrEqualTo(BigDecimal value) { this.FXPeriod4GreaterThanOrEqualTo = value; return this; } public BigDecimal getFxPeriod4GreaterThan() { return FXPeriod4GreaterThan; } public DB_MainQuery setFxPeriod4GreaterThan(BigDecimal value) { this.FXPeriod4GreaterThan = value; return this; } public BigDecimal getFxPeriod4LessThan() { return FXPeriod4LessThan; } public DB_MainQuery setFxPeriod4LessThan(BigDecimal value) { this.FXPeriod4LessThan = value; return this; } public BigDecimal getFxPeriod4LessThanOrEqualTo() { return FXPeriod4LessThanOrEqualTo; } public DB_MainQuery setFxPeriod4LessThanOrEqualTo(BigDecimal value) { this.FXPeriod4LessThanOrEqualTo = value; return this; } public BigDecimal getFxPeriod4NotEqualTo() { return FXPeriod4NotEqualTo; } public DB_MainQuery setFxPeriod4NotEqualTo(BigDecimal value) { this.FXPeriod4NotEqualTo = value; return this; } public ArrayList getFxPeriod4Between() { return FXPeriod4Between; } public DB_MainQuery setFxPeriod4Between(ArrayList value) { this.FXPeriod4Between = value; return this; } public ArrayList getFxPeriod4In() { return FXPeriod4In; } public DB_MainQuery setFxPeriod4In(ArrayList value) { this.FXPeriod4In = value; return this; } public Short getTradingStatus() { return TradingStatus; } public DB_MainQuery setTradingStatus(Short value) { this.TradingStatus = value; return this; } public Short getTradingStatusGreaterThanOrEqualTo() { return TradingStatusGreaterThanOrEqualTo; } public DB_MainQuery setTradingStatusGreaterThanOrEqualTo(Short value) { this.TradingStatusGreaterThanOrEqualTo = value; return this; } public Short getTradingStatusGreaterThan() { return TradingStatusGreaterThan; } public DB_MainQuery setTradingStatusGreaterThan(Short value) { this.TradingStatusGreaterThan = value; return this; } public Short getTradingStatusLessThan() { return TradingStatusLessThan; } public DB_MainQuery setTradingStatusLessThan(Short value) { this.TradingStatusLessThan = value; return this; } public Short getTradingStatusLessThanOrEqualTo() { return TradingStatusLessThanOrEqualTo; } public DB_MainQuery setTradingStatusLessThanOrEqualTo(Short value) { this.TradingStatusLessThanOrEqualTo = value; return this; } public Short getTradingStatusNotEqualTo() { return TradingStatusNotEqualTo; } public DB_MainQuery setTradingStatusNotEqualTo(Short value) { this.TradingStatusNotEqualTo = value; return this; } public ArrayList getTradingStatusBetween() { return TradingStatusBetween; } public DB_MainQuery setTradingStatusBetween(ArrayList value) { this.TradingStatusBetween = value; return this; } public ArrayList getTradingStatusIn() { return TradingStatusIn; } public DB_MainQuery setTradingStatusIn(ArrayList value) { this.TradingStatusIn = value; return this; } public String getCategory1ID() { return Category1ID; } public DB_MainQuery setCategory1ID(String value) { this.Category1ID = value; return this; } public String getCategory1IDStartsWith() { return Category1IDStartsWith; } public DB_MainQuery setCategory1IDStartsWith(String value) { this.Category1IDStartsWith = value; return this; } public String getCategory1IDEndsWith() { return Category1IDEndsWith; } public DB_MainQuery setCategory1IDEndsWith(String value) { this.Category1IDEndsWith = value; return this; } public String getCategory1IDContains() { return Category1IDContains; } public DB_MainQuery setCategory1IDContains(String value) { this.Category1IDContains = value; return this; } public String getCategory1IDLike() { return Category1IDLike; } public DB_MainQuery setCategory1IDLike(String value) { this.Category1IDLike = value; return this; } public ArrayList getCategory1IDBetween() { return Category1IDBetween; } public DB_MainQuery setCategory1IDBetween(ArrayList value) { this.Category1IDBetween = value; return this; } public ArrayList getCategory1IDIn() { return Category1IDIn; } public DB_MainQuery setCategory1IDIn(ArrayList value) { this.Category1IDIn = value; return this; } public String getCategory2ID() { return Category2ID; } public DB_MainQuery setCategory2ID(String value) { this.Category2ID = value; return this; } public String getCategory2IDStartsWith() { return Category2IDStartsWith; } public DB_MainQuery setCategory2IDStartsWith(String value) { this.Category2IDStartsWith = value; return this; } public String getCategory2IDEndsWith() { return Category2IDEndsWith; } public DB_MainQuery setCategory2IDEndsWith(String value) { this.Category2IDEndsWith = value; return this; } public String getCategory2IDContains() { return Category2IDContains; } public DB_MainQuery setCategory2IDContains(String value) { this.Category2IDContains = value; return this; } public String getCategory2IDLike() { return Category2IDLike; } public DB_MainQuery setCategory2IDLike(String value) { this.Category2IDLike = value; return this; } public ArrayList getCategory2IDBetween() { return Category2IDBetween; } public DB_MainQuery setCategory2IDBetween(ArrayList value) { this.Category2IDBetween = value; return this; } public ArrayList getCategory2IDIn() { return Category2IDIn; } public DB_MainQuery setCategory2IDIn(ArrayList value) { this.Category2IDIn = value; return this; } public String getCategory3ID() { return Category3ID; } public DB_MainQuery setCategory3ID(String value) { this.Category3ID = value; return this; } public String getCategory3IDStartsWith() { return Category3IDStartsWith; } public DB_MainQuery setCategory3IDStartsWith(String value) { this.Category3IDStartsWith = value; return this; } public String getCategory3IDEndsWith() { return Category3IDEndsWith; } public DB_MainQuery setCategory3IDEndsWith(String value) { this.Category3IDEndsWith = value; return this; } public String getCategory3IDContains() { return Category3IDContains; } public DB_MainQuery setCategory3IDContains(String value) { this.Category3IDContains = value; return this; } public String getCategory3IDLike() { return Category3IDLike; } public DB_MainQuery setCategory3IDLike(String value) { this.Category3IDLike = value; return this; } public ArrayList getCategory3IDBetween() { return Category3IDBetween; } public DB_MainQuery setCategory3IDBetween(ArrayList value) { this.Category3IDBetween = value; return this; } public ArrayList getCategory3IDIn() { return Category3IDIn; } public DB_MainQuery setCategory3IDIn(ArrayList value) { this.Category3IDIn = value; return this; } public String getCategory4ID() { return Category4ID; } public DB_MainQuery setCategory4ID(String value) { this.Category4ID = value; return this; } public String getCategory4IDStartsWith() { return Category4IDStartsWith; } public DB_MainQuery setCategory4IDStartsWith(String value) { this.Category4IDStartsWith = value; return this; } public String getCategory4IDEndsWith() { return Category4IDEndsWith; } public DB_MainQuery setCategory4IDEndsWith(String value) { this.Category4IDEndsWith = value; return this; } public String getCategory4IDContains() { return Category4IDContains; } public DB_MainQuery setCategory4IDContains(String value) { this.Category4IDContains = value; return this; } public String getCategory4IDLike() { return Category4IDLike; } public DB_MainQuery setCategory4IDLike(String value) { this.Category4IDLike = value; return this; } public ArrayList getCategory4IDBetween() { return Category4IDBetween; } public DB_MainQuery setCategory4IDBetween(ArrayList value) { this.Category4IDBetween = value; return this; } public ArrayList getCategory4IDIn() { return Category4IDIn; } public DB_MainQuery setCategory4IDIn(ArrayList value) { this.Category4IDIn = value; return this; } public String getCategory5ID() { return Category5ID; } public DB_MainQuery setCategory5ID(String value) { this.Category5ID = value; return this; } public String getCategory5IDStartsWith() { return Category5IDStartsWith; } public DB_MainQuery setCategory5IDStartsWith(String value) { this.Category5IDStartsWith = value; return this; } public String getCategory5IDEndsWith() { return Category5IDEndsWith; } public DB_MainQuery setCategory5IDEndsWith(String value) { this.Category5IDEndsWith = value; return this; } public String getCategory5IDContains() { return Category5IDContains; } public DB_MainQuery setCategory5IDContains(String value) { this.Category5IDContains = value; return this; } public String getCategory5IDLike() { return Category5IDLike; } public DB_MainQuery setCategory5IDLike(String value) { this.Category5IDLike = value; return this; } public ArrayList getCategory5IDBetween() { return Category5IDBetween; } public DB_MainQuery setCategory5IDBetween(ArrayList value) { this.Category5IDBetween = value; return this; } public ArrayList getCategory5IDIn() { return Category5IDIn; } public DB_MainQuery setCategory5IDIn(ArrayList value) { this.Category5IDIn = value; return this; } public String getBoPrioritiesRecID() { return BO_Priorities_RecID; } public DB_MainQuery setBoPrioritiesRecID(String value) { this.BO_Priorities_RecID = value; return this; } public String getBoPrioritiesRecIDStartsWith() { return BO_Priorities_RecIDStartsWith; } public DB_MainQuery setBoPrioritiesRecIDStartsWith(String value) { this.BO_Priorities_RecIDStartsWith = value; return this; } public String getBoPrioritiesRecIDEndsWith() { return BO_Priorities_RecIDEndsWith; } public DB_MainQuery setBoPrioritiesRecIDEndsWith(String value) { this.BO_Priorities_RecIDEndsWith = value; return this; } public String getBoPrioritiesRecIDContains() { return BO_Priorities_RecIDContains; } public DB_MainQuery setBoPrioritiesRecIDContains(String value) { this.BO_Priorities_RecIDContains = value; return this; } public String getBoPrioritiesRecIDLike() { return BO_Priorities_RecIDLike; } public DB_MainQuery setBoPrioritiesRecIDLike(String value) { this.BO_Priorities_RecIDLike = value; return this; } public ArrayList getBoPrioritiesRecIDBetween() { return BO_Priorities_RecIDBetween; } public DB_MainQuery setBoPrioritiesRecIDBetween(ArrayList value) { this.BO_Priorities_RecIDBetween = value; return this; } public ArrayList getBoPrioritiesRecIDIn() { return BO_Priorities_RecIDIn; } public DB_MainQuery setBoPrioritiesRecIDIn(ArrayList value) { this.BO_Priorities_RecIDIn = value; return this; } public String getPricingGroupID() { return PricingGroupID; } public DB_MainQuery setPricingGroupID(String value) { this.PricingGroupID = value; return this; } public String getPricingGroupIDStartsWith() { return PricingGroupIDStartsWith; } public DB_MainQuery setPricingGroupIDStartsWith(String value) { this.PricingGroupIDStartsWith = value; return this; } public String getPricingGroupIDEndsWith() { return PricingGroupIDEndsWith; } public DB_MainQuery setPricingGroupIDEndsWith(String value) { this.PricingGroupIDEndsWith = value; return this; } public String getPricingGroupIDContains() { return PricingGroupIDContains; } public DB_MainQuery setPricingGroupIDContains(String value) { this.PricingGroupIDContains = value; return this; } public String getPricingGroupIDLike() { return PricingGroupIDLike; } public DB_MainQuery setPricingGroupIDLike(String value) { this.PricingGroupIDLike = value; return this; } public ArrayList getPricingGroupIDBetween() { return PricingGroupIDBetween; } public DB_MainQuery setPricingGroupIDBetween(ArrayList value) { this.PricingGroupIDBetween = value; return this; } public ArrayList getPricingGroupIDIn() { return PricingGroupIDIn; } public DB_MainQuery setPricingGroupIDIn(ArrayList value) { this.PricingGroupIDIn = value; return this; } public BigDecimal getBudgetedGPPercentage() { return BudgetedGPPercentage; } public DB_MainQuery setBudgetedGPPercentage(BigDecimal value) { this.BudgetedGPPercentage = value; return this; } public BigDecimal getBudgetedGPPercentageGreaterThanOrEqualTo() { return BudgetedGPPercentageGreaterThanOrEqualTo; } public DB_MainQuery setBudgetedGPPercentageGreaterThanOrEqualTo(BigDecimal value) { this.BudgetedGPPercentageGreaterThanOrEqualTo = value; return this; } public BigDecimal getBudgetedGPPercentageGreaterThan() { return BudgetedGPPercentageGreaterThan; } public DB_MainQuery setBudgetedGPPercentageGreaterThan(BigDecimal value) { this.BudgetedGPPercentageGreaterThan = value; return this; } public BigDecimal getBudgetedGPPercentageLessThan() { return BudgetedGPPercentageLessThan; } public DB_MainQuery setBudgetedGPPercentageLessThan(BigDecimal value) { this.BudgetedGPPercentageLessThan = value; return this; } public BigDecimal getBudgetedGPPercentageLessThanOrEqualTo() { return BudgetedGPPercentageLessThanOrEqualTo; } public DB_MainQuery setBudgetedGPPercentageLessThanOrEqualTo(BigDecimal value) { this.BudgetedGPPercentageLessThanOrEqualTo = value; return this; } public BigDecimal getBudgetedGPPercentageNotEqualTo() { return BudgetedGPPercentageNotEqualTo; } public DB_MainQuery setBudgetedGPPercentageNotEqualTo(BigDecimal value) { this.BudgetedGPPercentageNotEqualTo = value; return this; } public ArrayList getBudgetedGPPercentageBetween() { return BudgetedGPPercentageBetween; } public DB_MainQuery setBudgetedGPPercentageBetween(ArrayList value) { this.BudgetedGPPercentageBetween = value; return this; } public ArrayList getBudgetedGPPercentageIn() { return BudgetedGPPercentageIn; } public DB_MainQuery setBudgetedGPPercentageIn(ArrayList value) { this.BudgetedGPPercentageIn = value; return this; } public String getCountry() { return Country; } public DB_MainQuery setCountry(String value) { this.Country = value; return this; } public String getCountryStartsWith() { return CountryStartsWith; } public DB_MainQuery setCountryStartsWith(String value) { this.CountryStartsWith = value; return this; } public String getCountryEndsWith() { return CountryEndsWith; } public DB_MainQuery setCountryEndsWith(String value) { this.CountryEndsWith = value; return this; } public String getCountryContains() { return CountryContains; } public DB_MainQuery setCountryContains(String value) { this.CountryContains = value; return this; } public String getCountryLike() { return CountryLike; } public DB_MainQuery setCountryLike(String value) { this.CountryLike = value; return this; } public ArrayList getCountryBetween() { return CountryBetween; } public DB_MainQuery setCountryBetween(ArrayList value) { this.CountryBetween = value; return this; } public ArrayList getCountryIn() { return CountryIn; } public DB_MainQuery setCountryIn(ArrayList value) { this.CountryIn = value; return this; } public String getFrCarriersRecID() { return FR_Carriers_RecID; } public DB_MainQuery setFrCarriersRecID(String value) { this.FR_Carriers_RecID = value; return this; } public String getFrCarriersRecIDStartsWith() { return FR_Carriers_RecIDStartsWith; } public DB_MainQuery setFrCarriersRecIDStartsWith(String value) { this.FR_Carriers_RecIDStartsWith = value; return this; } public String getFrCarriersRecIDEndsWith() { return FR_Carriers_RecIDEndsWith; } public DB_MainQuery setFrCarriersRecIDEndsWith(String value) { this.FR_Carriers_RecIDEndsWith = value; return this; } public String getFrCarriersRecIDContains() { return FR_Carriers_RecIDContains; } public DB_MainQuery setFrCarriersRecIDContains(String value) { this.FR_Carriers_RecIDContains = value; return this; } public String getFrCarriersRecIDLike() { return FR_Carriers_RecIDLike; } public DB_MainQuery setFrCarriersRecIDLike(String value) { this.FR_Carriers_RecIDLike = value; return this; } public ArrayList getFrCarriersRecIDBetween() { return FR_Carriers_RecIDBetween; } public DB_MainQuery setFrCarriersRecIDBetween(ArrayList value) { this.FR_Carriers_RecIDBetween = value; return this; } public ArrayList getFrCarriersRecIDIn() { return FR_Carriers_RecIDIn; } public DB_MainQuery setFrCarriersRecIDIn(ArrayList value) { this.FR_Carriers_RecIDIn = value; return this; } public String getFrCarrierServicesRecID() { return FR_CarrierServices_RecID; } public DB_MainQuery setFrCarrierServicesRecID(String value) { this.FR_CarrierServices_RecID = value; return this; } public String getFrCarrierServicesRecIDStartsWith() { return FR_CarrierServices_RecIDStartsWith; } public DB_MainQuery setFrCarrierServicesRecIDStartsWith(String value) { this.FR_CarrierServices_RecIDStartsWith = value; return this; } public String getFrCarrierServicesRecIDEndsWith() { return FR_CarrierServices_RecIDEndsWith; } public DB_MainQuery setFrCarrierServicesRecIDEndsWith(String value) { this.FR_CarrierServices_RecIDEndsWith = value; return this; } public String getFrCarrierServicesRecIDContains() { return FR_CarrierServices_RecIDContains; } public DB_MainQuery setFrCarrierServicesRecIDContains(String value) { this.FR_CarrierServices_RecIDContains = value; return this; } public String getFrCarrierServicesRecIDLike() { return FR_CarrierServices_RecIDLike; } public DB_MainQuery setFrCarrierServicesRecIDLike(String value) { this.FR_CarrierServices_RecIDLike = value; return this; } public ArrayList getFrCarrierServicesRecIDBetween() { return FR_CarrierServices_RecIDBetween; } public DB_MainQuery setFrCarrierServicesRecIDBetween(ArrayList value) { this.FR_CarrierServices_RecIDBetween = value; return this; } public ArrayList getFrCarrierServicesRecIDIn() { return FR_CarrierServices_RecIDIn; } public DB_MainQuery setFrCarrierServicesRecIDIn(ArrayList value) { this.FR_CarrierServices_RecIDIn = value; return this; } public String getCarrierAccountNo() { return CarrierAccountNo; } public DB_MainQuery setCarrierAccountNo(String value) { this.CarrierAccountNo = value; return this; } public String getCarrierAccountNoStartsWith() { return CarrierAccountNoStartsWith; } public DB_MainQuery setCarrierAccountNoStartsWith(String value) { this.CarrierAccountNoStartsWith = value; return this; } public String getCarrierAccountNoEndsWith() { return CarrierAccountNoEndsWith; } public DB_MainQuery setCarrierAccountNoEndsWith(String value) { this.CarrierAccountNoEndsWith = value; return this; } public String getCarrierAccountNoContains() { return CarrierAccountNoContains; } public DB_MainQuery setCarrierAccountNoContains(String value) { this.CarrierAccountNoContains = value; return this; } public String getCarrierAccountNoLike() { return CarrierAccountNoLike; } public DB_MainQuery setCarrierAccountNoLike(String value) { this.CarrierAccountNoLike = value; return this; } public ArrayList getCarrierAccountNoBetween() { return CarrierAccountNoBetween; } public DB_MainQuery setCarrierAccountNoBetween(ArrayList value) { this.CarrierAccountNoBetween = value; return this; } public ArrayList getCarrierAccountNoIn() { return CarrierAccountNoIn; } public DB_MainQuery setCarrierAccountNoIn(ArrayList value) { this.CarrierAccountNoIn = value; return this; } public Short getChargeTo() { return ChargeTo; } public DB_MainQuery setChargeTo(Short value) { this.ChargeTo = value; return this; } public Short getChargeToGreaterThanOrEqualTo() { return ChargeToGreaterThanOrEqualTo; } public DB_MainQuery setChargeToGreaterThanOrEqualTo(Short value) { this.ChargeToGreaterThanOrEqualTo = value; return this; } public Short getChargeToGreaterThan() { return ChargeToGreaterThan; } public DB_MainQuery setChargeToGreaterThan(Short value) { this.ChargeToGreaterThan = value; return this; } public Short getChargeToLessThan() { return ChargeToLessThan; } public DB_MainQuery setChargeToLessThan(Short value) { this.ChargeToLessThan = value; return this; } public Short getChargeToLessThanOrEqualTo() { return ChargeToLessThanOrEqualTo; } public DB_MainQuery setChargeToLessThanOrEqualTo(Short value) { this.ChargeToLessThanOrEqualTo = value; return this; } public Short getChargeToNotEqualTo() { return ChargeToNotEqualTo; } public DB_MainQuery setChargeToNotEqualTo(Short value) { this.ChargeToNotEqualTo = value; return this; } public ArrayList getChargeToBetween() { return ChargeToBetween; } public DB_MainQuery setChargeToBetween(ArrayList value) { this.ChargeToBetween = value; return this; } public ArrayList getChargeToIn() { return ChargeToIn; } public DB_MainQuery setChargeToIn(ArrayList value) { this.ChargeToIn = value; return this; } public Boolean getIsCashOnly() { return IsCashOnly; } public DB_MainQuery setIsCashOnly(Boolean value) { this.IsCashOnly = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class DB_Main1Query extends QueryDb implements IReturn> { public String DebtorID = null; public String DebtorIDStartsWith = null; public String DebtorIDEndsWith = null; public String DebtorIDContains = null; public String DebtorIDLike = null; public ArrayList DebtorIDBetween = null; public ArrayList DebtorIDIn = null; public Date LastSavedDateTime = null; public Date LastSavedDateTimeGreaterThanOrEqualTo = null; public Date LastSavedDateTimeGreaterThan = null; public Date LastSavedDateTimeLessThan = null; public Date LastSavedDateTimeLessThanOrEqualTo = null; public Date LastSavedDateTimeNotEqualTo = null; public ArrayList LastSavedDateTimeBetween = null; public ArrayList LastSavedDateTimeIn = null; public String AccountNo = null; public String AccountNoStartsWith = null; public String AccountNoEndsWith = null; public String AccountNoContains = null; public String AccountNoLike = null; public ArrayList AccountNoBetween = null; public ArrayList AccountNoIn = null; public String Name = null; public String NameStartsWith = null; public String NameEndsWith = null; public String NameContains = null; public String NameLike = null; public ArrayList NameBetween = null; public ArrayList NameIn = null; public String Address1 = null; public String Address1StartsWith = null; public String Address1EndsWith = null; public String Address1Contains = null; public String Address1Like = null; public ArrayList Address1Between = null; public ArrayList Address1In = null; public String Address2 = null; public String Address2StartsWith = null; public String Address2EndsWith = null; public String Address2Contains = null; public String Address2Like = null; public ArrayList Address2Between = null; public ArrayList Address2In = null; public String Address3 = null; public String Address3StartsWith = null; public String Address3EndsWith = null; public String Address3Contains = null; public String Address3Like = null; public ArrayList Address3Between = null; public ArrayList Address3In = null; public String Address4 = null; public String Address4StartsWith = null; public String Address4EndsWith = null; public String Address4Contains = null; public String Address4Like = null; public ArrayList Address4Between = null; public ArrayList Address4In = null; public String PostCode = null; public String PostCodeStartsWith = null; public String PostCodeEndsWith = null; public String PostCodeContains = null; public String PostCodeLike = null; public ArrayList PostCodeBetween = null; public ArrayList PostCodeIn = null; public String Phone = null; public String PhoneStartsWith = null; public String PhoneEndsWith = null; public String PhoneContains = null; public String PhoneLike = null; public ArrayList PhoneBetween = null; public ArrayList PhoneIn = null; public String Fax = null; public String FaxStartsWith = null; public String FaxEndsWith = null; public String FaxContains = null; public String FaxLike = null; public ArrayList FaxBetween = null; public ArrayList FaxIn = null; public String BankName = null; public String BankNameStartsWith = null; public String BankNameEndsWith = null; public String BankNameContains = null; public String BankNameLike = null; public ArrayList BankNameBetween = null; public ArrayList BankNameIn = null; public String BankAcc = null; public String BankAccStartsWith = null; public String BankAccEndsWith = null; public String BankAccContains = null; public String BankAccLike = null; public ArrayList BankAccBetween = null; public ArrayList BankAccIn = null; public String BSBN = null; public String BSBNStartsWith = null; public String BSBNEndsWith = null; public String BSBNContains = null; public String BSBNLike = null; public ArrayList BSBNBetween = null; public ArrayList BSBNIn = null; public String AccountName = null; public String AccountNameStartsWith = null; public String AccountNameEndsWith = null; public String AccountNameContains = null; public String AccountNameLike = null; public ArrayList AccountNameBetween = null; public ArrayList AccountNameIn = null; public String TaxExemptNo = null; public String TaxExemptNoStartsWith = null; public String TaxExemptNoEndsWith = null; public String TaxExemptNoContains = null; public String TaxExemptNoLike = null; public ArrayList TaxExemptNoBetween = null; public ArrayList TaxExemptNoIn = null; public Integer AccountType = null; public Integer AccountTypeGreaterThanOrEqualTo = null; public Integer AccountTypeGreaterThan = null; public Integer AccountTypeLessThan = null; public Integer AccountTypeLessThanOrEqualTo = null; public Integer AccountTypeNotEqualTo = null; public ArrayList AccountTypeBetween = null; public ArrayList AccountTypeIn = null; public BigDecimal CreditLimit = null; public BigDecimal CreditLimitGreaterThanOrEqualTo = null; public BigDecimal CreditLimitGreaterThan = null; public BigDecimal CreditLimitLessThan = null; public BigDecimal CreditLimitLessThanOrEqualTo = null; public BigDecimal CreditLimitNotEqualTo = null; public ArrayList CreditLimitBetween = null; public ArrayList CreditLimitIn = null; public Short EarlyPayDisOnStatsDays = null; public Short EarlyPayDisOnStatsDaysGreaterThanOrEqualTo = null; public Short EarlyPayDisOnStatsDaysGreaterThan = null; public Short EarlyPayDisOnStatsDaysLessThan = null; public Short EarlyPayDisOnStatsDaysLessThanOrEqualTo = null; public Short EarlyPayDisOnStatsDaysNotEqualTo = null; public ArrayList EarlyPayDisOnStatsDaysBetween = null; public ArrayList EarlyPayDisOnStatsDaysIn = null; public BigDecimal EarlyPayDisOnStatsAmt = null; public BigDecimal EarlyPayDisOnStatsAmtGreaterThanOrEqualTo = null; public BigDecimal EarlyPayDisOnStatsAmtGreaterThan = null; public BigDecimal EarlyPayDisOnStatsAmtLessThan = null; public BigDecimal EarlyPayDisOnStatsAmtLessThanOrEqualTo = null; public BigDecimal EarlyPayDisOnStatsAmtNotEqualTo = null; public ArrayList EarlyPayDisOnStatsAmtBetween = null; public ArrayList EarlyPayDisOnStatsAmtIn = null; public Date LastPurchaseDate = null; public Date LastPurchaseDateGreaterThanOrEqualTo = null; public Date LastPurchaseDateGreaterThan = null; public Date LastPurchaseDateLessThan = null; public Date LastPurchaseDateLessThanOrEqualTo = null; public Date LastPurchaseDateNotEqualTo = null; public ArrayList LastPurchaseDateBetween = null; public ArrayList LastPurchaseDateIn = null; public Date LastPaymentDate = null; public Date LastPaymentDateGreaterThanOrEqualTo = null; public Date LastPaymentDateGreaterThan = null; public Date LastPaymentDateLessThan = null; public Date LastPaymentDateLessThanOrEqualTo = null; public Date LastPaymentDateNotEqualTo = null; public ArrayList LastPaymentDateBetween = null; public ArrayList LastPaymentDateIn = null; public BigDecimal StandingDisOnInvoices = null; public BigDecimal StandingDisOnInvoicesGreaterThanOrEqualTo = null; public BigDecimal StandingDisOnInvoicesGreaterThan = null; public BigDecimal StandingDisOnInvoicesLessThan = null; public BigDecimal StandingDisOnInvoicesLessThanOrEqualTo = null; public BigDecimal StandingDisOnInvoicesNotEqualTo = null; public ArrayList StandingDisOnInvoicesBetween = null; public ArrayList StandingDisOnInvoicesIn = null; public String ClassificationID = null; public String ClassificationIDStartsWith = null; public String ClassificationIDEndsWith = null; public String ClassificationIDContains = null; public String ClassificationIDLike = null; public ArrayList ClassificationIDBetween = null; public ArrayList ClassificationIDIn = null; public Boolean AccountOnHold = null; public String EmailAddress = null; public String EmailAddressStartsWith = null; public String EmailAddressEndsWith = null; public String EmailAddressContains = null; public String EmailAddressLike = null; public ArrayList EmailAddressBetween = null; public ArrayList EmailAddressIn = null; public BigDecimal CurrentBalance = null; public BigDecimal CurrentBalanceGreaterThanOrEqualTo = null; public BigDecimal CurrentBalanceGreaterThan = null; public BigDecimal CurrentBalanceLessThan = null; public BigDecimal CurrentBalanceLessThanOrEqualTo = null; public BigDecimal CurrentBalanceNotEqualTo = null; public ArrayList CurrentBalanceBetween = null; public ArrayList CurrentBalanceIn = null; public BigDecimal Period1 = null; public BigDecimal Period1GreaterThanOrEqualTo = null; public BigDecimal Period1GreaterThan = null; public BigDecimal Period1LessThan = null; public BigDecimal Period1LessThanOrEqualTo = null; public BigDecimal Period1NotEqualTo = null; public ArrayList Period1Between = null; public ArrayList Period1In = null; public BigDecimal Period2 = null; public BigDecimal Period2GreaterThanOrEqualTo = null; public BigDecimal Period2GreaterThan = null; public BigDecimal Period2LessThan = null; public BigDecimal Period2LessThanOrEqualTo = null; public BigDecimal Period2NotEqualTo = null; public ArrayList Period2Between = null; public ArrayList Period2In = null; public BigDecimal Period3 = null; public BigDecimal Period3GreaterThanOrEqualTo = null; public BigDecimal Period3GreaterThan = null; public BigDecimal Period3LessThan = null; public BigDecimal Period3LessThanOrEqualTo = null; public BigDecimal Period3NotEqualTo = null; public ArrayList Period3Between = null; public ArrayList Period3In = null; public BigDecimal Period4 = null; public BigDecimal Period4GreaterThanOrEqualTo = null; public BigDecimal Period4GreaterThan = null; public BigDecimal Period4LessThan = null; public BigDecimal Period4LessThanOrEqualTo = null; public BigDecimal Period4NotEqualTo = null; public ArrayList Period4Between = null; public ArrayList Period4In = null; public Integer Period5 = null; public Integer Period5GreaterThanOrEqualTo = null; public Integer Period5GreaterThan = null; public Integer Period5LessThan = null; public Integer Period5LessThanOrEqualTo = null; public Integer Period5NotEqualTo = null; public ArrayList Period5Between = null; public ArrayList Period5In = null; public Integer Period6 = null; public Integer Period6GreaterThanOrEqualTo = null; public Integer Period6GreaterThan = null; public Integer Period6LessThan = null; public Integer Period6LessThanOrEqualTo = null; public Integer Period6NotEqualTo = null; public ArrayList Period6Between = null; public ArrayList Period6In = null; public Integer Period7 = null; public Integer Period7GreaterThanOrEqualTo = null; public Integer Period7GreaterThan = null; public Integer Period7LessThan = null; public Integer Period7LessThanOrEqualTo = null; public Integer Period7NotEqualTo = null; public ArrayList Period7Between = null; public ArrayList Period7In = null; public Integer Period8 = null; public Integer Period8GreaterThanOrEqualTo = null; public Integer Period8GreaterThan = null; public Integer Period8LessThan = null; public Integer Period8LessThanOrEqualTo = null; public Integer Period8NotEqualTo = null; public ArrayList Period8Between = null; public ArrayList Period8In = null; public String AltAccountNo = null; public String AltAccountNoStartsWith = null; public String AltAccountNoEndsWith = null; public String AltAccountNoContains = null; public String AltAccountNoLike = null; public ArrayList AltAccountNoBetween = null; public ArrayList AltAccountNoIn = null; public Boolean NotifyRequired = null; public String NotifyAddress = null; public String NotifyAddressStartsWith = null; public String NotifyAddressEndsWith = null; public String NotifyAddressContains = null; public String NotifyAddressLike = null; public ArrayList NotifyAddressBetween = null; public ArrayList NotifyAddressIn = null; public Date CommenceDate = null; public Date CommenceDateGreaterThanOrEqualTo = null; public Date CommenceDateGreaterThan = null; public Date CommenceDateLessThan = null; public Date CommenceDateLessThanOrEqualTo = null; public Date CommenceDateNotEqualTo = null; public ArrayList CommenceDateBetween = null; public ArrayList CommenceDateIn = null; public Boolean WebAccess = null; public String ParentDebtorID = null; public String ParentDebtorIDStartsWith = null; public String ParentDebtorIDEndsWith = null; public String ParentDebtorIDContains = null; public String ParentDebtorIDLike = null; public ArrayList ParentDebtorIDBetween = null; public ArrayList ParentDebtorIDIn = null; public Date AllocLastSavedDateTime = null; public Date AllocLastSavedDateTimeGreaterThanOrEqualTo = null; public Date AllocLastSavedDateTimeGreaterThan = null; public Date AllocLastSavedDateTimeLessThan = null; public Date AllocLastSavedDateTimeLessThanOrEqualTo = null; public Date AllocLastSavedDateTimeNotEqualTo = null; public ArrayList AllocLastSavedDateTimeBetween = null; public ArrayList AllocLastSavedDateTimeIn = null; public String PriceSchemeID = null; public String PriceSchemeIDStartsWith = null; public String PriceSchemeIDEndsWith = null; public String PriceSchemeIDContains = null; public String PriceSchemeIDLike = null; public ArrayList PriceSchemeIDBetween = null; public ArrayList PriceSchemeIDIn = null; public String AustPostDPID = null; public String AustPostDPIDStartsWith = null; public String AustPostDPIDEndsWith = null; public String AustPostDPIDContains = null; public String AustPostDPIDLike = null; public ArrayList AustPostDPIDBetween = null; public ArrayList AustPostDPIDIn = null; public String AustPostBCSP = null; public String AustPostBCSPStartsWith = null; public String AustPostBCSPEndsWith = null; public String AustPostBCSPContains = null; public String AustPostBCSPLike = null; public ArrayList AustPostBCSPBetween = null; public ArrayList AustPostBCSPIn = null; public String getDebtorID() { return DebtorID; } public DB_Main1Query setDebtorID(String value) { this.DebtorID = value; return this; } public String getDebtorIDStartsWith() { return DebtorIDStartsWith; } public DB_Main1Query setDebtorIDStartsWith(String value) { this.DebtorIDStartsWith = value; return this; } public String getDebtorIDEndsWith() { return DebtorIDEndsWith; } public DB_Main1Query setDebtorIDEndsWith(String value) { this.DebtorIDEndsWith = value; return this; } public String getDebtorIDContains() { return DebtorIDContains; } public DB_Main1Query setDebtorIDContains(String value) { this.DebtorIDContains = value; return this; } public String getDebtorIDLike() { return DebtorIDLike; } public DB_Main1Query setDebtorIDLike(String value) { this.DebtorIDLike = value; return this; } public ArrayList getDebtorIDBetween() { return DebtorIDBetween; } public DB_Main1Query setDebtorIDBetween(ArrayList value) { this.DebtorIDBetween = value; return this; } public ArrayList getDebtorIDIn() { return DebtorIDIn; } public DB_Main1Query setDebtorIDIn(ArrayList value) { this.DebtorIDIn = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public DB_Main1Query setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getLastSavedDateTimeGreaterThanOrEqualTo() { return LastSavedDateTimeGreaterThanOrEqualTo; } public DB_Main1Query setLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.LastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeGreaterThan() { return LastSavedDateTimeGreaterThan; } public DB_Main1Query setLastSavedDateTimeGreaterThan(Date value) { this.LastSavedDateTimeGreaterThan = value; return this; } public Date getLastSavedDateTimeLessThan() { return LastSavedDateTimeLessThan; } public DB_Main1Query setLastSavedDateTimeLessThan(Date value) { this.LastSavedDateTimeLessThan = value; return this; } public Date getLastSavedDateTimeLessThanOrEqualTo() { return LastSavedDateTimeLessThanOrEqualTo; } public DB_Main1Query setLastSavedDateTimeLessThanOrEqualTo(Date value) { this.LastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeNotEqualTo() { return LastSavedDateTimeNotEqualTo; } public DB_Main1Query setLastSavedDateTimeNotEqualTo(Date value) { this.LastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getLastSavedDateTimeBetween() { return LastSavedDateTimeBetween; } public DB_Main1Query setLastSavedDateTimeBetween(ArrayList value) { this.LastSavedDateTimeBetween = value; return this; } public ArrayList getLastSavedDateTimeIn() { return LastSavedDateTimeIn; } public DB_Main1Query setLastSavedDateTimeIn(ArrayList value) { this.LastSavedDateTimeIn = value; return this; } public String getAccountNo() { return AccountNo; } public DB_Main1Query setAccountNo(String value) { this.AccountNo = value; return this; } public String getAccountNoStartsWith() { return AccountNoStartsWith; } public DB_Main1Query setAccountNoStartsWith(String value) { this.AccountNoStartsWith = value; return this; } public String getAccountNoEndsWith() { return AccountNoEndsWith; } public DB_Main1Query setAccountNoEndsWith(String value) { this.AccountNoEndsWith = value; return this; } public String getAccountNoContains() { return AccountNoContains; } public DB_Main1Query setAccountNoContains(String value) { this.AccountNoContains = value; return this; } public String getAccountNoLike() { return AccountNoLike; } public DB_Main1Query setAccountNoLike(String value) { this.AccountNoLike = value; return this; } public ArrayList getAccountNoBetween() { return AccountNoBetween; } public DB_Main1Query setAccountNoBetween(ArrayList value) { this.AccountNoBetween = value; return this; } public ArrayList getAccountNoIn() { return AccountNoIn; } public DB_Main1Query setAccountNoIn(ArrayList value) { this.AccountNoIn = value; return this; } public String getName() { return Name; } public DB_Main1Query setName(String value) { this.Name = value; return this; } public String getNameStartsWith() { return NameStartsWith; } public DB_Main1Query setNameStartsWith(String value) { this.NameStartsWith = value; return this; } public String getNameEndsWith() { return NameEndsWith; } public DB_Main1Query setNameEndsWith(String value) { this.NameEndsWith = value; return this; } public String getNameContains() { return NameContains; } public DB_Main1Query setNameContains(String value) { this.NameContains = value; return this; } public String getNameLike() { return NameLike; } public DB_Main1Query setNameLike(String value) { this.NameLike = value; return this; } public ArrayList getNameBetween() { return NameBetween; } public DB_Main1Query setNameBetween(ArrayList value) { this.NameBetween = value; return this; } public ArrayList getNameIn() { return NameIn; } public DB_Main1Query setNameIn(ArrayList value) { this.NameIn = value; return this; } public String getAddress1() { return Address1; } public DB_Main1Query setAddress1(String value) { this.Address1 = value; return this; } public String getAddress1StartsWith() { return Address1StartsWith; } public DB_Main1Query setAddress1StartsWith(String value) { this.Address1StartsWith = value; return this; } public String getAddress1EndsWith() { return Address1EndsWith; } public DB_Main1Query setAddress1EndsWith(String value) { this.Address1EndsWith = value; return this; } public String getAddress1Contains() { return Address1Contains; } public DB_Main1Query setAddress1Contains(String value) { this.Address1Contains = value; return this; } public String getAddress1Like() { return Address1Like; } public DB_Main1Query setAddress1Like(String value) { this.Address1Like = value; return this; } public ArrayList getAddress1Between() { return Address1Between; } public DB_Main1Query setAddress1Between(ArrayList value) { this.Address1Between = value; return this; } public ArrayList getAddress1In() { return Address1In; } public DB_Main1Query setAddress1In(ArrayList value) { this.Address1In = value; return this; } public String getAddress2() { return Address2; } public DB_Main1Query setAddress2(String value) { this.Address2 = value; return this; } public String getAddress2StartsWith() { return Address2StartsWith; } public DB_Main1Query setAddress2StartsWith(String value) { this.Address2StartsWith = value; return this; } public String getAddress2EndsWith() { return Address2EndsWith; } public DB_Main1Query setAddress2EndsWith(String value) { this.Address2EndsWith = value; return this; } public String getAddress2Contains() { return Address2Contains; } public DB_Main1Query setAddress2Contains(String value) { this.Address2Contains = value; return this; } public String getAddress2Like() { return Address2Like; } public DB_Main1Query setAddress2Like(String value) { this.Address2Like = value; return this; } public ArrayList getAddress2Between() { return Address2Between; } public DB_Main1Query setAddress2Between(ArrayList value) { this.Address2Between = value; return this; } public ArrayList getAddress2In() { return Address2In; } public DB_Main1Query setAddress2In(ArrayList value) { this.Address2In = value; return this; } public String getAddress3() { return Address3; } public DB_Main1Query setAddress3(String value) { this.Address3 = value; return this; } public String getAddress3StartsWith() { return Address3StartsWith; } public DB_Main1Query setAddress3StartsWith(String value) { this.Address3StartsWith = value; return this; } public String getAddress3EndsWith() { return Address3EndsWith; } public DB_Main1Query setAddress3EndsWith(String value) { this.Address3EndsWith = value; return this; } public String getAddress3Contains() { return Address3Contains; } public DB_Main1Query setAddress3Contains(String value) { this.Address3Contains = value; return this; } public String getAddress3Like() { return Address3Like; } public DB_Main1Query setAddress3Like(String value) { this.Address3Like = value; return this; } public ArrayList getAddress3Between() { return Address3Between; } public DB_Main1Query setAddress3Between(ArrayList value) { this.Address3Between = value; return this; } public ArrayList getAddress3In() { return Address3In; } public DB_Main1Query setAddress3In(ArrayList value) { this.Address3In = value; return this; } public String getAddress4() { return Address4; } public DB_Main1Query setAddress4(String value) { this.Address4 = value; return this; } public String getAddress4StartsWith() { return Address4StartsWith; } public DB_Main1Query setAddress4StartsWith(String value) { this.Address4StartsWith = value; return this; } public String getAddress4EndsWith() { return Address4EndsWith; } public DB_Main1Query setAddress4EndsWith(String value) { this.Address4EndsWith = value; return this; } public String getAddress4Contains() { return Address4Contains; } public DB_Main1Query setAddress4Contains(String value) { this.Address4Contains = value; return this; } public String getAddress4Like() { return Address4Like; } public DB_Main1Query setAddress4Like(String value) { this.Address4Like = value; return this; } public ArrayList getAddress4Between() { return Address4Between; } public DB_Main1Query setAddress4Between(ArrayList value) { this.Address4Between = value; return this; } public ArrayList getAddress4In() { return Address4In; } public DB_Main1Query setAddress4In(ArrayList value) { this.Address4In = value; return this; } public String getPostCode() { return PostCode; } public DB_Main1Query setPostCode(String value) { this.PostCode = value; return this; } public String getPostCodeStartsWith() { return PostCodeStartsWith; } public DB_Main1Query setPostCodeStartsWith(String value) { this.PostCodeStartsWith = value; return this; } public String getPostCodeEndsWith() { return PostCodeEndsWith; } public DB_Main1Query setPostCodeEndsWith(String value) { this.PostCodeEndsWith = value; return this; } public String getPostCodeContains() { return PostCodeContains; } public DB_Main1Query setPostCodeContains(String value) { this.PostCodeContains = value; return this; } public String getPostCodeLike() { return PostCodeLike; } public DB_Main1Query setPostCodeLike(String value) { this.PostCodeLike = value; return this; } public ArrayList getPostCodeBetween() { return PostCodeBetween; } public DB_Main1Query setPostCodeBetween(ArrayList value) { this.PostCodeBetween = value; return this; } public ArrayList getPostCodeIn() { return PostCodeIn; } public DB_Main1Query setPostCodeIn(ArrayList value) { this.PostCodeIn = value; return this; } public String getPhone() { return Phone; } public DB_Main1Query setPhone(String value) { this.Phone = value; return this; } public String getPhoneStartsWith() { return PhoneStartsWith; } public DB_Main1Query setPhoneStartsWith(String value) { this.PhoneStartsWith = value; return this; } public String getPhoneEndsWith() { return PhoneEndsWith; } public DB_Main1Query setPhoneEndsWith(String value) { this.PhoneEndsWith = value; return this; } public String getPhoneContains() { return PhoneContains; } public DB_Main1Query setPhoneContains(String value) { this.PhoneContains = value; return this; } public String getPhoneLike() { return PhoneLike; } public DB_Main1Query setPhoneLike(String value) { this.PhoneLike = value; return this; } public ArrayList getPhoneBetween() { return PhoneBetween; } public DB_Main1Query setPhoneBetween(ArrayList value) { this.PhoneBetween = value; return this; } public ArrayList getPhoneIn() { return PhoneIn; } public DB_Main1Query setPhoneIn(ArrayList value) { this.PhoneIn = value; return this; } public String getFax() { return Fax; } public DB_Main1Query setFax(String value) { this.Fax = value; return this; } public String getFaxStartsWith() { return FaxStartsWith; } public DB_Main1Query setFaxStartsWith(String value) { this.FaxStartsWith = value; return this; } public String getFaxEndsWith() { return FaxEndsWith; } public DB_Main1Query setFaxEndsWith(String value) { this.FaxEndsWith = value; return this; } public String getFaxContains() { return FaxContains; } public DB_Main1Query setFaxContains(String value) { this.FaxContains = value; return this; } public String getFaxLike() { return FaxLike; } public DB_Main1Query setFaxLike(String value) { this.FaxLike = value; return this; } public ArrayList getFaxBetween() { return FaxBetween; } public DB_Main1Query setFaxBetween(ArrayList value) { this.FaxBetween = value; return this; } public ArrayList getFaxIn() { return FaxIn; } public DB_Main1Query setFaxIn(ArrayList value) { this.FaxIn = value; return this; } public String getBankName() { return BankName; } public DB_Main1Query setBankName(String value) { this.BankName = value; return this; } public String getBankNameStartsWith() { return BankNameStartsWith; } public DB_Main1Query setBankNameStartsWith(String value) { this.BankNameStartsWith = value; return this; } public String getBankNameEndsWith() { return BankNameEndsWith; } public DB_Main1Query setBankNameEndsWith(String value) { this.BankNameEndsWith = value; return this; } public String getBankNameContains() { return BankNameContains; } public DB_Main1Query setBankNameContains(String value) { this.BankNameContains = value; return this; } public String getBankNameLike() { return BankNameLike; } public DB_Main1Query setBankNameLike(String value) { this.BankNameLike = value; return this; } public ArrayList getBankNameBetween() { return BankNameBetween; } public DB_Main1Query setBankNameBetween(ArrayList value) { this.BankNameBetween = value; return this; } public ArrayList getBankNameIn() { return BankNameIn; } public DB_Main1Query setBankNameIn(ArrayList value) { this.BankNameIn = value; return this; } public String getBankAcc() { return BankAcc; } public DB_Main1Query setBankAcc(String value) { this.BankAcc = value; return this; } public String getBankAccStartsWith() { return BankAccStartsWith; } public DB_Main1Query setBankAccStartsWith(String value) { this.BankAccStartsWith = value; return this; } public String getBankAccEndsWith() { return BankAccEndsWith; } public DB_Main1Query setBankAccEndsWith(String value) { this.BankAccEndsWith = value; return this; } public String getBankAccContains() { return BankAccContains; } public DB_Main1Query setBankAccContains(String value) { this.BankAccContains = value; return this; } public String getBankAccLike() { return BankAccLike; } public DB_Main1Query setBankAccLike(String value) { this.BankAccLike = value; return this; } public ArrayList getBankAccBetween() { return BankAccBetween; } public DB_Main1Query setBankAccBetween(ArrayList value) { this.BankAccBetween = value; return this; } public ArrayList getBankAccIn() { return BankAccIn; } public DB_Main1Query setBankAccIn(ArrayList value) { this.BankAccIn = value; return this; } public String getBsbn() { return BSBN; } public DB_Main1Query setBsbn(String value) { this.BSBN = value; return this; } public String getBsbnStartsWith() { return BSBNStartsWith; } public DB_Main1Query setBsbnStartsWith(String value) { this.BSBNStartsWith = value; return this; } public String getBsbnEndsWith() { return BSBNEndsWith; } public DB_Main1Query setBsbnEndsWith(String value) { this.BSBNEndsWith = value; return this; } public String getBsbnContains() { return BSBNContains; } public DB_Main1Query setBsbnContains(String value) { this.BSBNContains = value; return this; } public String getBsbnLike() { return BSBNLike; } public DB_Main1Query setBsbnLike(String value) { this.BSBNLike = value; return this; } public ArrayList getBsbnBetween() { return BSBNBetween; } public DB_Main1Query setBsbnBetween(ArrayList value) { this.BSBNBetween = value; return this; } public ArrayList getBsbnIn() { return BSBNIn; } public DB_Main1Query setBsbnIn(ArrayList value) { this.BSBNIn = value; return this; } public String getAccountName() { return AccountName; } public DB_Main1Query setAccountName(String value) { this.AccountName = value; return this; } public String getAccountNameStartsWith() { return AccountNameStartsWith; } public DB_Main1Query setAccountNameStartsWith(String value) { this.AccountNameStartsWith = value; return this; } public String getAccountNameEndsWith() { return AccountNameEndsWith; } public DB_Main1Query setAccountNameEndsWith(String value) { this.AccountNameEndsWith = value; return this; } public String getAccountNameContains() { return AccountNameContains; } public DB_Main1Query setAccountNameContains(String value) { this.AccountNameContains = value; return this; } public String getAccountNameLike() { return AccountNameLike; } public DB_Main1Query setAccountNameLike(String value) { this.AccountNameLike = value; return this; } public ArrayList getAccountNameBetween() { return AccountNameBetween; } public DB_Main1Query setAccountNameBetween(ArrayList value) { this.AccountNameBetween = value; return this; } public ArrayList getAccountNameIn() { return AccountNameIn; } public DB_Main1Query setAccountNameIn(ArrayList value) { this.AccountNameIn = value; return this; } public String getTaxExemptNo() { return TaxExemptNo; } public DB_Main1Query setTaxExemptNo(String value) { this.TaxExemptNo = value; return this; } public String getTaxExemptNoStartsWith() { return TaxExemptNoStartsWith; } public DB_Main1Query setTaxExemptNoStartsWith(String value) { this.TaxExemptNoStartsWith = value; return this; } public String getTaxExemptNoEndsWith() { return TaxExemptNoEndsWith; } public DB_Main1Query setTaxExemptNoEndsWith(String value) { this.TaxExemptNoEndsWith = value; return this; } public String getTaxExemptNoContains() { return TaxExemptNoContains; } public DB_Main1Query setTaxExemptNoContains(String value) { this.TaxExemptNoContains = value; return this; } public String getTaxExemptNoLike() { return TaxExemptNoLike; } public DB_Main1Query setTaxExemptNoLike(String value) { this.TaxExemptNoLike = value; return this; } public ArrayList getTaxExemptNoBetween() { return TaxExemptNoBetween; } public DB_Main1Query setTaxExemptNoBetween(ArrayList value) { this.TaxExemptNoBetween = value; return this; } public ArrayList getTaxExemptNoIn() { return TaxExemptNoIn; } public DB_Main1Query setTaxExemptNoIn(ArrayList value) { this.TaxExemptNoIn = value; return this; } public Integer getAccountType() { return AccountType; } public DB_Main1Query setAccountType(Integer value) { this.AccountType = value; return this; } public Integer getAccountTypeGreaterThanOrEqualTo() { return AccountTypeGreaterThanOrEqualTo; } public DB_Main1Query setAccountTypeGreaterThanOrEqualTo(Integer value) { this.AccountTypeGreaterThanOrEqualTo = value; return this; } public Integer getAccountTypeGreaterThan() { return AccountTypeGreaterThan; } public DB_Main1Query setAccountTypeGreaterThan(Integer value) { this.AccountTypeGreaterThan = value; return this; } public Integer getAccountTypeLessThan() { return AccountTypeLessThan; } public DB_Main1Query setAccountTypeLessThan(Integer value) { this.AccountTypeLessThan = value; return this; } public Integer getAccountTypeLessThanOrEqualTo() { return AccountTypeLessThanOrEqualTo; } public DB_Main1Query setAccountTypeLessThanOrEqualTo(Integer value) { this.AccountTypeLessThanOrEqualTo = value; return this; } public Integer getAccountTypeNotEqualTo() { return AccountTypeNotEqualTo; } public DB_Main1Query setAccountTypeNotEqualTo(Integer value) { this.AccountTypeNotEqualTo = value; return this; } public ArrayList getAccountTypeBetween() { return AccountTypeBetween; } public DB_Main1Query setAccountTypeBetween(ArrayList value) { this.AccountTypeBetween = value; return this; } public ArrayList getAccountTypeIn() { return AccountTypeIn; } public DB_Main1Query setAccountTypeIn(ArrayList value) { this.AccountTypeIn = value; return this; } public BigDecimal getCreditLimit() { return CreditLimit; } public DB_Main1Query setCreditLimit(BigDecimal value) { this.CreditLimit = value; return this; } public BigDecimal getCreditLimitGreaterThanOrEqualTo() { return CreditLimitGreaterThanOrEqualTo; } public DB_Main1Query setCreditLimitGreaterThanOrEqualTo(BigDecimal value) { this.CreditLimitGreaterThanOrEqualTo = value; return this; } public BigDecimal getCreditLimitGreaterThan() { return CreditLimitGreaterThan; } public DB_Main1Query setCreditLimitGreaterThan(BigDecimal value) { this.CreditLimitGreaterThan = value; return this; } public BigDecimal getCreditLimitLessThan() { return CreditLimitLessThan; } public DB_Main1Query setCreditLimitLessThan(BigDecimal value) { this.CreditLimitLessThan = value; return this; } public BigDecimal getCreditLimitLessThanOrEqualTo() { return CreditLimitLessThanOrEqualTo; } public DB_Main1Query setCreditLimitLessThanOrEqualTo(BigDecimal value) { this.CreditLimitLessThanOrEqualTo = value; return this; } public BigDecimal getCreditLimitNotEqualTo() { return CreditLimitNotEqualTo; } public DB_Main1Query setCreditLimitNotEqualTo(BigDecimal value) { this.CreditLimitNotEqualTo = value; return this; } public ArrayList getCreditLimitBetween() { return CreditLimitBetween; } public DB_Main1Query setCreditLimitBetween(ArrayList value) { this.CreditLimitBetween = value; return this; } public ArrayList getCreditLimitIn() { return CreditLimitIn; } public DB_Main1Query setCreditLimitIn(ArrayList value) { this.CreditLimitIn = value; return this; } public Short getEarlyPayDisOnStatsDays() { return EarlyPayDisOnStatsDays; } public DB_Main1Query setEarlyPayDisOnStatsDays(Short value) { this.EarlyPayDisOnStatsDays = value; return this; } public Short getEarlyPayDisOnStatsDaysGreaterThanOrEqualTo() { return EarlyPayDisOnStatsDaysGreaterThanOrEqualTo; } public DB_Main1Query setEarlyPayDisOnStatsDaysGreaterThanOrEqualTo(Short value) { this.EarlyPayDisOnStatsDaysGreaterThanOrEqualTo = value; return this; } public Short getEarlyPayDisOnStatsDaysGreaterThan() { return EarlyPayDisOnStatsDaysGreaterThan; } public DB_Main1Query setEarlyPayDisOnStatsDaysGreaterThan(Short value) { this.EarlyPayDisOnStatsDaysGreaterThan = value; return this; } public Short getEarlyPayDisOnStatsDaysLessThan() { return EarlyPayDisOnStatsDaysLessThan; } public DB_Main1Query setEarlyPayDisOnStatsDaysLessThan(Short value) { this.EarlyPayDisOnStatsDaysLessThan = value; return this; } public Short getEarlyPayDisOnStatsDaysLessThanOrEqualTo() { return EarlyPayDisOnStatsDaysLessThanOrEqualTo; } public DB_Main1Query setEarlyPayDisOnStatsDaysLessThanOrEqualTo(Short value) { this.EarlyPayDisOnStatsDaysLessThanOrEqualTo = value; return this; } public Short getEarlyPayDisOnStatsDaysNotEqualTo() { return EarlyPayDisOnStatsDaysNotEqualTo; } public DB_Main1Query setEarlyPayDisOnStatsDaysNotEqualTo(Short value) { this.EarlyPayDisOnStatsDaysNotEqualTo = value; return this; } public ArrayList getEarlyPayDisOnStatsDaysBetween() { return EarlyPayDisOnStatsDaysBetween; } public DB_Main1Query setEarlyPayDisOnStatsDaysBetween(ArrayList value) { this.EarlyPayDisOnStatsDaysBetween = value; return this; } public ArrayList getEarlyPayDisOnStatsDaysIn() { return EarlyPayDisOnStatsDaysIn; } public DB_Main1Query setEarlyPayDisOnStatsDaysIn(ArrayList value) { this.EarlyPayDisOnStatsDaysIn = value; return this; } public BigDecimal getEarlyPayDisOnStatsAmt() { return EarlyPayDisOnStatsAmt; } public DB_Main1Query setEarlyPayDisOnStatsAmt(BigDecimal value) { this.EarlyPayDisOnStatsAmt = value; return this; } public BigDecimal getEarlyPayDisOnStatsAmtGreaterThanOrEqualTo() { return EarlyPayDisOnStatsAmtGreaterThanOrEqualTo; } public DB_Main1Query setEarlyPayDisOnStatsAmtGreaterThanOrEqualTo(BigDecimal value) { this.EarlyPayDisOnStatsAmtGreaterThanOrEqualTo = value; return this; } public BigDecimal getEarlyPayDisOnStatsAmtGreaterThan() { return EarlyPayDisOnStatsAmtGreaterThan; } public DB_Main1Query setEarlyPayDisOnStatsAmtGreaterThan(BigDecimal value) { this.EarlyPayDisOnStatsAmtGreaterThan = value; return this; } public BigDecimal getEarlyPayDisOnStatsAmtLessThan() { return EarlyPayDisOnStatsAmtLessThan; } public DB_Main1Query setEarlyPayDisOnStatsAmtLessThan(BigDecimal value) { this.EarlyPayDisOnStatsAmtLessThan = value; return this; } public BigDecimal getEarlyPayDisOnStatsAmtLessThanOrEqualTo() { return EarlyPayDisOnStatsAmtLessThanOrEqualTo; } public DB_Main1Query setEarlyPayDisOnStatsAmtLessThanOrEqualTo(BigDecimal value) { this.EarlyPayDisOnStatsAmtLessThanOrEqualTo = value; return this; } public BigDecimal getEarlyPayDisOnStatsAmtNotEqualTo() { return EarlyPayDisOnStatsAmtNotEqualTo; } public DB_Main1Query setEarlyPayDisOnStatsAmtNotEqualTo(BigDecimal value) { this.EarlyPayDisOnStatsAmtNotEqualTo = value; return this; } public ArrayList getEarlyPayDisOnStatsAmtBetween() { return EarlyPayDisOnStatsAmtBetween; } public DB_Main1Query setEarlyPayDisOnStatsAmtBetween(ArrayList value) { this.EarlyPayDisOnStatsAmtBetween = value; return this; } public ArrayList getEarlyPayDisOnStatsAmtIn() { return EarlyPayDisOnStatsAmtIn; } public DB_Main1Query setEarlyPayDisOnStatsAmtIn(ArrayList value) { this.EarlyPayDisOnStatsAmtIn = value; return this; } public Date getLastPurchaseDate() { return LastPurchaseDate; } public DB_Main1Query setLastPurchaseDate(Date value) { this.LastPurchaseDate = value; return this; } public Date getLastPurchaseDateGreaterThanOrEqualTo() { return LastPurchaseDateGreaterThanOrEqualTo; } public DB_Main1Query setLastPurchaseDateGreaterThanOrEqualTo(Date value) { this.LastPurchaseDateGreaterThanOrEqualTo = value; return this; } public Date getLastPurchaseDateGreaterThan() { return LastPurchaseDateGreaterThan; } public DB_Main1Query setLastPurchaseDateGreaterThan(Date value) { this.LastPurchaseDateGreaterThan = value; return this; } public Date getLastPurchaseDateLessThan() { return LastPurchaseDateLessThan; } public DB_Main1Query setLastPurchaseDateLessThan(Date value) { this.LastPurchaseDateLessThan = value; return this; } public Date getLastPurchaseDateLessThanOrEqualTo() { return LastPurchaseDateLessThanOrEqualTo; } public DB_Main1Query setLastPurchaseDateLessThanOrEqualTo(Date value) { this.LastPurchaseDateLessThanOrEqualTo = value; return this; } public Date getLastPurchaseDateNotEqualTo() { return LastPurchaseDateNotEqualTo; } public DB_Main1Query setLastPurchaseDateNotEqualTo(Date value) { this.LastPurchaseDateNotEqualTo = value; return this; } public ArrayList getLastPurchaseDateBetween() { return LastPurchaseDateBetween; } public DB_Main1Query setLastPurchaseDateBetween(ArrayList value) { this.LastPurchaseDateBetween = value; return this; } public ArrayList getLastPurchaseDateIn() { return LastPurchaseDateIn; } public DB_Main1Query setLastPurchaseDateIn(ArrayList value) { this.LastPurchaseDateIn = value; return this; } public Date getLastPaymentDate() { return LastPaymentDate; } public DB_Main1Query setLastPaymentDate(Date value) { this.LastPaymentDate = value; return this; } public Date getLastPaymentDateGreaterThanOrEqualTo() { return LastPaymentDateGreaterThanOrEqualTo; } public DB_Main1Query setLastPaymentDateGreaterThanOrEqualTo(Date value) { this.LastPaymentDateGreaterThanOrEqualTo = value; return this; } public Date getLastPaymentDateGreaterThan() { return LastPaymentDateGreaterThan; } public DB_Main1Query setLastPaymentDateGreaterThan(Date value) { this.LastPaymentDateGreaterThan = value; return this; } public Date getLastPaymentDateLessThan() { return LastPaymentDateLessThan; } public DB_Main1Query setLastPaymentDateLessThan(Date value) { this.LastPaymentDateLessThan = value; return this; } public Date getLastPaymentDateLessThanOrEqualTo() { return LastPaymentDateLessThanOrEqualTo; } public DB_Main1Query setLastPaymentDateLessThanOrEqualTo(Date value) { this.LastPaymentDateLessThanOrEqualTo = value; return this; } public Date getLastPaymentDateNotEqualTo() { return LastPaymentDateNotEqualTo; } public DB_Main1Query setLastPaymentDateNotEqualTo(Date value) { this.LastPaymentDateNotEqualTo = value; return this; } public ArrayList getLastPaymentDateBetween() { return LastPaymentDateBetween; } public DB_Main1Query setLastPaymentDateBetween(ArrayList value) { this.LastPaymentDateBetween = value; return this; } public ArrayList getLastPaymentDateIn() { return LastPaymentDateIn; } public DB_Main1Query setLastPaymentDateIn(ArrayList value) { this.LastPaymentDateIn = value; return this; } public BigDecimal getStandingDisOnInvoices() { return StandingDisOnInvoices; } public DB_Main1Query setStandingDisOnInvoices(BigDecimal value) { this.StandingDisOnInvoices = value; return this; } public BigDecimal getStandingDisOnInvoicesGreaterThanOrEqualTo() { return StandingDisOnInvoicesGreaterThanOrEqualTo; } public DB_Main1Query setStandingDisOnInvoicesGreaterThanOrEqualTo(BigDecimal value) { this.StandingDisOnInvoicesGreaterThanOrEqualTo = value; return this; } public BigDecimal getStandingDisOnInvoicesGreaterThan() { return StandingDisOnInvoicesGreaterThan; } public DB_Main1Query setStandingDisOnInvoicesGreaterThan(BigDecimal value) { this.StandingDisOnInvoicesGreaterThan = value; return this; } public BigDecimal getStandingDisOnInvoicesLessThan() { return StandingDisOnInvoicesLessThan; } public DB_Main1Query setStandingDisOnInvoicesLessThan(BigDecimal value) { this.StandingDisOnInvoicesLessThan = value; return this; } public BigDecimal getStandingDisOnInvoicesLessThanOrEqualTo() { return StandingDisOnInvoicesLessThanOrEqualTo; } public DB_Main1Query setStandingDisOnInvoicesLessThanOrEqualTo(BigDecimal value) { this.StandingDisOnInvoicesLessThanOrEqualTo = value; return this; } public BigDecimal getStandingDisOnInvoicesNotEqualTo() { return StandingDisOnInvoicesNotEqualTo; } public DB_Main1Query setStandingDisOnInvoicesNotEqualTo(BigDecimal value) { this.StandingDisOnInvoicesNotEqualTo = value; return this; } public ArrayList getStandingDisOnInvoicesBetween() { return StandingDisOnInvoicesBetween; } public DB_Main1Query setStandingDisOnInvoicesBetween(ArrayList value) { this.StandingDisOnInvoicesBetween = value; return this; } public ArrayList getStandingDisOnInvoicesIn() { return StandingDisOnInvoicesIn; } public DB_Main1Query setStandingDisOnInvoicesIn(ArrayList value) { this.StandingDisOnInvoicesIn = value; return this; } public String getClassificationID() { return ClassificationID; } public DB_Main1Query setClassificationID(String value) { this.ClassificationID = value; return this; } public String getClassificationIDStartsWith() { return ClassificationIDStartsWith; } public DB_Main1Query setClassificationIDStartsWith(String value) { this.ClassificationIDStartsWith = value; return this; } public String getClassificationIDEndsWith() { return ClassificationIDEndsWith; } public DB_Main1Query setClassificationIDEndsWith(String value) { this.ClassificationIDEndsWith = value; return this; } public String getClassificationIDContains() { return ClassificationIDContains; } public DB_Main1Query setClassificationIDContains(String value) { this.ClassificationIDContains = value; return this; } public String getClassificationIDLike() { return ClassificationIDLike; } public DB_Main1Query setClassificationIDLike(String value) { this.ClassificationIDLike = value; return this; } public ArrayList getClassificationIDBetween() { return ClassificationIDBetween; } public DB_Main1Query setClassificationIDBetween(ArrayList value) { this.ClassificationIDBetween = value; return this; } public ArrayList getClassificationIDIn() { return ClassificationIDIn; } public DB_Main1Query setClassificationIDIn(ArrayList value) { this.ClassificationIDIn = value; return this; } public Boolean isAccountOnHold() { return AccountOnHold; } public DB_Main1Query setAccountOnHold(Boolean value) { this.AccountOnHold = value; return this; } public String getEmailAddress() { return EmailAddress; } public DB_Main1Query setEmailAddress(String value) { this.EmailAddress = value; return this; } public String getEmailAddressStartsWith() { return EmailAddressStartsWith; } public DB_Main1Query setEmailAddressStartsWith(String value) { this.EmailAddressStartsWith = value; return this; } public String getEmailAddressEndsWith() { return EmailAddressEndsWith; } public DB_Main1Query setEmailAddressEndsWith(String value) { this.EmailAddressEndsWith = value; return this; } public String getEmailAddressContains() { return EmailAddressContains; } public DB_Main1Query setEmailAddressContains(String value) { this.EmailAddressContains = value; return this; } public String getEmailAddressLike() { return EmailAddressLike; } public DB_Main1Query setEmailAddressLike(String value) { this.EmailAddressLike = value; return this; } public ArrayList getEmailAddressBetween() { return EmailAddressBetween; } public DB_Main1Query setEmailAddressBetween(ArrayList value) { this.EmailAddressBetween = value; return this; } public ArrayList getEmailAddressIn() { return EmailAddressIn; } public DB_Main1Query setEmailAddressIn(ArrayList value) { this.EmailAddressIn = value; return this; } public BigDecimal getCurrentBalance() { return CurrentBalance; } public DB_Main1Query setCurrentBalance(BigDecimal value) { this.CurrentBalance = value; return this; } public BigDecimal getCurrentBalanceGreaterThanOrEqualTo() { return CurrentBalanceGreaterThanOrEqualTo; } public DB_Main1Query setCurrentBalanceGreaterThanOrEqualTo(BigDecimal value) { this.CurrentBalanceGreaterThanOrEqualTo = value; return this; } public BigDecimal getCurrentBalanceGreaterThan() { return CurrentBalanceGreaterThan; } public DB_Main1Query setCurrentBalanceGreaterThan(BigDecimal value) { this.CurrentBalanceGreaterThan = value; return this; } public BigDecimal getCurrentBalanceLessThan() { return CurrentBalanceLessThan; } public DB_Main1Query setCurrentBalanceLessThan(BigDecimal value) { this.CurrentBalanceLessThan = value; return this; } public BigDecimal getCurrentBalanceLessThanOrEqualTo() { return CurrentBalanceLessThanOrEqualTo; } public DB_Main1Query setCurrentBalanceLessThanOrEqualTo(BigDecimal value) { this.CurrentBalanceLessThanOrEqualTo = value; return this; } public BigDecimal getCurrentBalanceNotEqualTo() { return CurrentBalanceNotEqualTo; } public DB_Main1Query setCurrentBalanceNotEqualTo(BigDecimal value) { this.CurrentBalanceNotEqualTo = value; return this; } public ArrayList getCurrentBalanceBetween() { return CurrentBalanceBetween; } public DB_Main1Query setCurrentBalanceBetween(ArrayList value) { this.CurrentBalanceBetween = value; return this; } public ArrayList getCurrentBalanceIn() { return CurrentBalanceIn; } public DB_Main1Query setCurrentBalanceIn(ArrayList value) { this.CurrentBalanceIn = value; return this; } public BigDecimal getPeriod1() { return Period1; } public DB_Main1Query setPeriod1(BigDecimal value) { this.Period1 = value; return this; } public BigDecimal getPeriod1GreaterThanOrEqualTo() { return Period1GreaterThanOrEqualTo; } public DB_Main1Query setPeriod1GreaterThanOrEqualTo(BigDecimal value) { this.Period1GreaterThanOrEqualTo = value; return this; } public BigDecimal getPeriod1GreaterThan() { return Period1GreaterThan; } public DB_Main1Query setPeriod1GreaterThan(BigDecimal value) { this.Period1GreaterThan = value; return this; } public BigDecimal getPeriod1LessThan() { return Period1LessThan; } public DB_Main1Query setPeriod1LessThan(BigDecimal value) { this.Period1LessThan = value; return this; } public BigDecimal getPeriod1LessThanOrEqualTo() { return Period1LessThanOrEqualTo; } public DB_Main1Query setPeriod1LessThanOrEqualTo(BigDecimal value) { this.Period1LessThanOrEqualTo = value; return this; } public BigDecimal getPeriod1NotEqualTo() { return Period1NotEqualTo; } public DB_Main1Query setPeriod1NotEqualTo(BigDecimal value) { this.Period1NotEqualTo = value; return this; } public ArrayList getPeriod1Between() { return Period1Between; } public DB_Main1Query setPeriod1Between(ArrayList value) { this.Period1Between = value; return this; } public ArrayList getPeriod1In() { return Period1In; } public DB_Main1Query setPeriod1In(ArrayList value) { this.Period1In = value; return this; } public BigDecimal getPeriod2() { return Period2; } public DB_Main1Query setPeriod2(BigDecimal value) { this.Period2 = value; return this; } public BigDecimal getPeriod2GreaterThanOrEqualTo() { return Period2GreaterThanOrEqualTo; } public DB_Main1Query setPeriod2GreaterThanOrEqualTo(BigDecimal value) { this.Period2GreaterThanOrEqualTo = value; return this; } public BigDecimal getPeriod2GreaterThan() { return Period2GreaterThan; } public DB_Main1Query setPeriod2GreaterThan(BigDecimal value) { this.Period2GreaterThan = value; return this; } public BigDecimal getPeriod2LessThan() { return Period2LessThan; } public DB_Main1Query setPeriod2LessThan(BigDecimal value) { this.Period2LessThan = value; return this; } public BigDecimal getPeriod2LessThanOrEqualTo() { return Period2LessThanOrEqualTo; } public DB_Main1Query setPeriod2LessThanOrEqualTo(BigDecimal value) { this.Period2LessThanOrEqualTo = value; return this; } public BigDecimal getPeriod2NotEqualTo() { return Period2NotEqualTo; } public DB_Main1Query setPeriod2NotEqualTo(BigDecimal value) { this.Period2NotEqualTo = value; return this; } public ArrayList getPeriod2Between() { return Period2Between; } public DB_Main1Query setPeriod2Between(ArrayList value) { this.Period2Between = value; return this; } public ArrayList getPeriod2In() { return Period2In; } public DB_Main1Query setPeriod2In(ArrayList value) { this.Period2In = value; return this; } public BigDecimal getPeriod3() { return Period3; } public DB_Main1Query setPeriod3(BigDecimal value) { this.Period3 = value; return this; } public BigDecimal getPeriod3GreaterThanOrEqualTo() { return Period3GreaterThanOrEqualTo; } public DB_Main1Query setPeriod3GreaterThanOrEqualTo(BigDecimal value) { this.Period3GreaterThanOrEqualTo = value; return this; } public BigDecimal getPeriod3GreaterThan() { return Period3GreaterThan; } public DB_Main1Query setPeriod3GreaterThan(BigDecimal value) { this.Period3GreaterThan = value; return this; } public BigDecimal getPeriod3LessThan() { return Period3LessThan; } public DB_Main1Query setPeriod3LessThan(BigDecimal value) { this.Period3LessThan = value; return this; } public BigDecimal getPeriod3LessThanOrEqualTo() { return Period3LessThanOrEqualTo; } public DB_Main1Query setPeriod3LessThanOrEqualTo(BigDecimal value) { this.Period3LessThanOrEqualTo = value; return this; } public BigDecimal getPeriod3NotEqualTo() { return Period3NotEqualTo; } public DB_Main1Query setPeriod3NotEqualTo(BigDecimal value) { this.Period3NotEqualTo = value; return this; } public ArrayList getPeriod3Between() { return Period3Between; } public DB_Main1Query setPeriod3Between(ArrayList value) { this.Period3Between = value; return this; } public ArrayList getPeriod3In() { return Period3In; } public DB_Main1Query setPeriod3In(ArrayList value) { this.Period3In = value; return this; } public BigDecimal getPeriod4() { return Period4; } public DB_Main1Query setPeriod4(BigDecimal value) { this.Period4 = value; return this; } public BigDecimal getPeriod4GreaterThanOrEqualTo() { return Period4GreaterThanOrEqualTo; } public DB_Main1Query setPeriod4GreaterThanOrEqualTo(BigDecimal value) { this.Period4GreaterThanOrEqualTo = value; return this; } public BigDecimal getPeriod4GreaterThan() { return Period4GreaterThan; } public DB_Main1Query setPeriod4GreaterThan(BigDecimal value) { this.Period4GreaterThan = value; return this; } public BigDecimal getPeriod4LessThan() { return Period4LessThan; } public DB_Main1Query setPeriod4LessThan(BigDecimal value) { this.Period4LessThan = value; return this; } public BigDecimal getPeriod4LessThanOrEqualTo() { return Period4LessThanOrEqualTo; } public DB_Main1Query setPeriod4LessThanOrEqualTo(BigDecimal value) { this.Period4LessThanOrEqualTo = value; return this; } public BigDecimal getPeriod4NotEqualTo() { return Period4NotEqualTo; } public DB_Main1Query setPeriod4NotEqualTo(BigDecimal value) { this.Period4NotEqualTo = value; return this; } public ArrayList getPeriod4Between() { return Period4Between; } public DB_Main1Query setPeriod4Between(ArrayList value) { this.Period4Between = value; return this; } public ArrayList getPeriod4In() { return Period4In; } public DB_Main1Query setPeriod4In(ArrayList value) { this.Period4In = value; return this; } public Integer getPeriod5() { return Period5; } public DB_Main1Query setPeriod5(Integer value) { this.Period5 = value; return this; } public Integer getPeriod5GreaterThanOrEqualTo() { return Period5GreaterThanOrEqualTo; } public DB_Main1Query setPeriod5GreaterThanOrEqualTo(Integer value) { this.Period5GreaterThanOrEqualTo = value; return this; } public Integer getPeriod5GreaterThan() { return Period5GreaterThan; } public DB_Main1Query setPeriod5GreaterThan(Integer value) { this.Period5GreaterThan = value; return this; } public Integer getPeriod5LessThan() { return Period5LessThan; } public DB_Main1Query setPeriod5LessThan(Integer value) { this.Period5LessThan = value; return this; } public Integer getPeriod5LessThanOrEqualTo() { return Period5LessThanOrEqualTo; } public DB_Main1Query setPeriod5LessThanOrEqualTo(Integer value) { this.Period5LessThanOrEqualTo = value; return this; } public Integer getPeriod5NotEqualTo() { return Period5NotEqualTo; } public DB_Main1Query setPeriod5NotEqualTo(Integer value) { this.Period5NotEqualTo = value; return this; } public ArrayList getPeriod5Between() { return Period5Between; } public DB_Main1Query setPeriod5Between(ArrayList value) { this.Period5Between = value; return this; } public ArrayList getPeriod5In() { return Period5In; } public DB_Main1Query setPeriod5In(ArrayList value) { this.Period5In = value; return this; } public Integer getPeriod6() { return Period6; } public DB_Main1Query setPeriod6(Integer value) { this.Period6 = value; return this; } public Integer getPeriod6GreaterThanOrEqualTo() { return Period6GreaterThanOrEqualTo; } public DB_Main1Query setPeriod6GreaterThanOrEqualTo(Integer value) { this.Period6GreaterThanOrEqualTo = value; return this; } public Integer getPeriod6GreaterThan() { return Period6GreaterThan; } public DB_Main1Query setPeriod6GreaterThan(Integer value) { this.Period6GreaterThan = value; return this; } public Integer getPeriod6LessThan() { return Period6LessThan; } public DB_Main1Query setPeriod6LessThan(Integer value) { this.Period6LessThan = value; return this; } public Integer getPeriod6LessThanOrEqualTo() { return Period6LessThanOrEqualTo; } public DB_Main1Query setPeriod6LessThanOrEqualTo(Integer value) { this.Period6LessThanOrEqualTo = value; return this; } public Integer getPeriod6NotEqualTo() { return Period6NotEqualTo; } public DB_Main1Query setPeriod6NotEqualTo(Integer value) { this.Period6NotEqualTo = value; return this; } public ArrayList getPeriod6Between() { return Period6Between; } public DB_Main1Query setPeriod6Between(ArrayList value) { this.Period6Between = value; return this; } public ArrayList getPeriod6In() { return Period6In; } public DB_Main1Query setPeriod6In(ArrayList value) { this.Period6In = value; return this; } public Integer getPeriod7() { return Period7; } public DB_Main1Query setPeriod7(Integer value) { this.Period7 = value; return this; } public Integer getPeriod7GreaterThanOrEqualTo() { return Period7GreaterThanOrEqualTo; } public DB_Main1Query setPeriod7GreaterThanOrEqualTo(Integer value) { this.Period7GreaterThanOrEqualTo = value; return this; } public Integer getPeriod7GreaterThan() { return Period7GreaterThan; } public DB_Main1Query setPeriod7GreaterThan(Integer value) { this.Period7GreaterThan = value; return this; } public Integer getPeriod7LessThan() { return Period7LessThan; } public DB_Main1Query setPeriod7LessThan(Integer value) { this.Period7LessThan = value; return this; } public Integer getPeriod7LessThanOrEqualTo() { return Period7LessThanOrEqualTo; } public DB_Main1Query setPeriod7LessThanOrEqualTo(Integer value) { this.Period7LessThanOrEqualTo = value; return this; } public Integer getPeriod7NotEqualTo() { return Period7NotEqualTo; } public DB_Main1Query setPeriod7NotEqualTo(Integer value) { this.Period7NotEqualTo = value; return this; } public ArrayList getPeriod7Between() { return Period7Between; } public DB_Main1Query setPeriod7Between(ArrayList value) { this.Period7Between = value; return this; } public ArrayList getPeriod7In() { return Period7In; } public DB_Main1Query setPeriod7In(ArrayList value) { this.Period7In = value; return this; } public Integer getPeriod8() { return Period8; } public DB_Main1Query setPeriod8(Integer value) { this.Period8 = value; return this; } public Integer getPeriod8GreaterThanOrEqualTo() { return Period8GreaterThanOrEqualTo; } public DB_Main1Query setPeriod8GreaterThanOrEqualTo(Integer value) { this.Period8GreaterThanOrEqualTo = value; return this; } public Integer getPeriod8GreaterThan() { return Period8GreaterThan; } public DB_Main1Query setPeriod8GreaterThan(Integer value) { this.Period8GreaterThan = value; return this; } public Integer getPeriod8LessThan() { return Period8LessThan; } public DB_Main1Query setPeriod8LessThan(Integer value) { this.Period8LessThan = value; return this; } public Integer getPeriod8LessThanOrEqualTo() { return Period8LessThanOrEqualTo; } public DB_Main1Query setPeriod8LessThanOrEqualTo(Integer value) { this.Period8LessThanOrEqualTo = value; return this; } public Integer getPeriod8NotEqualTo() { return Period8NotEqualTo; } public DB_Main1Query setPeriod8NotEqualTo(Integer value) { this.Period8NotEqualTo = value; return this; } public ArrayList getPeriod8Between() { return Period8Between; } public DB_Main1Query setPeriod8Between(ArrayList value) { this.Period8Between = value; return this; } public ArrayList getPeriod8In() { return Period8In; } public DB_Main1Query setPeriod8In(ArrayList value) { this.Period8In = value; return this; } public String getAltAccountNo() { return AltAccountNo; } public DB_Main1Query setAltAccountNo(String value) { this.AltAccountNo = value; return this; } public String getAltAccountNoStartsWith() { return AltAccountNoStartsWith; } public DB_Main1Query setAltAccountNoStartsWith(String value) { this.AltAccountNoStartsWith = value; return this; } public String getAltAccountNoEndsWith() { return AltAccountNoEndsWith; } public DB_Main1Query setAltAccountNoEndsWith(String value) { this.AltAccountNoEndsWith = value; return this; } public String getAltAccountNoContains() { return AltAccountNoContains; } public DB_Main1Query setAltAccountNoContains(String value) { this.AltAccountNoContains = value; return this; } public String getAltAccountNoLike() { return AltAccountNoLike; } public DB_Main1Query setAltAccountNoLike(String value) { this.AltAccountNoLike = value; return this; } public ArrayList getAltAccountNoBetween() { return AltAccountNoBetween; } public DB_Main1Query setAltAccountNoBetween(ArrayList value) { this.AltAccountNoBetween = value; return this; } public ArrayList getAltAccountNoIn() { return AltAccountNoIn; } public DB_Main1Query setAltAccountNoIn(ArrayList value) { this.AltAccountNoIn = value; return this; } public Boolean isNotifyRequired() { return NotifyRequired; } public DB_Main1Query setNotifyRequired(Boolean value) { this.NotifyRequired = value; return this; } public String getNotifyAddress() { return NotifyAddress; } public DB_Main1Query setNotifyAddress(String value) { this.NotifyAddress = value; return this; } public String getNotifyAddressStartsWith() { return NotifyAddressStartsWith; } public DB_Main1Query setNotifyAddressStartsWith(String value) { this.NotifyAddressStartsWith = value; return this; } public String getNotifyAddressEndsWith() { return NotifyAddressEndsWith; } public DB_Main1Query setNotifyAddressEndsWith(String value) { this.NotifyAddressEndsWith = value; return this; } public String getNotifyAddressContains() { return NotifyAddressContains; } public DB_Main1Query setNotifyAddressContains(String value) { this.NotifyAddressContains = value; return this; } public String getNotifyAddressLike() { return NotifyAddressLike; } public DB_Main1Query setNotifyAddressLike(String value) { this.NotifyAddressLike = value; return this; } public ArrayList getNotifyAddressBetween() { return NotifyAddressBetween; } public DB_Main1Query setNotifyAddressBetween(ArrayList value) { this.NotifyAddressBetween = value; return this; } public ArrayList getNotifyAddressIn() { return NotifyAddressIn; } public DB_Main1Query setNotifyAddressIn(ArrayList value) { this.NotifyAddressIn = value; return this; } public Date getCommenceDate() { return CommenceDate; } public DB_Main1Query setCommenceDate(Date value) { this.CommenceDate = value; return this; } public Date getCommenceDateGreaterThanOrEqualTo() { return CommenceDateGreaterThanOrEqualTo; } public DB_Main1Query setCommenceDateGreaterThanOrEqualTo(Date value) { this.CommenceDateGreaterThanOrEqualTo = value; return this; } public Date getCommenceDateGreaterThan() { return CommenceDateGreaterThan; } public DB_Main1Query setCommenceDateGreaterThan(Date value) { this.CommenceDateGreaterThan = value; return this; } public Date getCommenceDateLessThan() { return CommenceDateLessThan; } public DB_Main1Query setCommenceDateLessThan(Date value) { this.CommenceDateLessThan = value; return this; } public Date getCommenceDateLessThanOrEqualTo() { return CommenceDateLessThanOrEqualTo; } public DB_Main1Query setCommenceDateLessThanOrEqualTo(Date value) { this.CommenceDateLessThanOrEqualTo = value; return this; } public Date getCommenceDateNotEqualTo() { return CommenceDateNotEqualTo; } public DB_Main1Query setCommenceDateNotEqualTo(Date value) { this.CommenceDateNotEqualTo = value; return this; } public ArrayList getCommenceDateBetween() { return CommenceDateBetween; } public DB_Main1Query setCommenceDateBetween(ArrayList value) { this.CommenceDateBetween = value; return this; } public ArrayList getCommenceDateIn() { return CommenceDateIn; } public DB_Main1Query setCommenceDateIn(ArrayList value) { this.CommenceDateIn = value; return this; } public Boolean isWebAccess() { return WebAccess; } public DB_Main1Query setWebAccess(Boolean value) { this.WebAccess = value; return this; } public String getParentDebtorID() { return ParentDebtorID; } public DB_Main1Query setParentDebtorID(String value) { this.ParentDebtorID = value; return this; } public String getParentDebtorIDStartsWith() { return ParentDebtorIDStartsWith; } public DB_Main1Query setParentDebtorIDStartsWith(String value) { this.ParentDebtorIDStartsWith = value; return this; } public String getParentDebtorIDEndsWith() { return ParentDebtorIDEndsWith; } public DB_Main1Query setParentDebtorIDEndsWith(String value) { this.ParentDebtorIDEndsWith = value; return this; } public String getParentDebtorIDContains() { return ParentDebtorIDContains; } public DB_Main1Query setParentDebtorIDContains(String value) { this.ParentDebtorIDContains = value; return this; } public String getParentDebtorIDLike() { return ParentDebtorIDLike; } public DB_Main1Query setParentDebtorIDLike(String value) { this.ParentDebtorIDLike = value; return this; } public ArrayList getParentDebtorIDBetween() { return ParentDebtorIDBetween; } public DB_Main1Query setParentDebtorIDBetween(ArrayList value) { this.ParentDebtorIDBetween = value; return this; } public ArrayList getParentDebtorIDIn() { return ParentDebtorIDIn; } public DB_Main1Query setParentDebtorIDIn(ArrayList value) { this.ParentDebtorIDIn = value; return this; } public Date getAllocLastSavedDateTime() { return AllocLastSavedDateTime; } public DB_Main1Query setAllocLastSavedDateTime(Date value) { this.AllocLastSavedDateTime = value; return this; } public Date getAllocLastSavedDateTimeGreaterThanOrEqualTo() { return AllocLastSavedDateTimeGreaterThanOrEqualTo; } public DB_Main1Query setAllocLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.AllocLastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getAllocLastSavedDateTimeGreaterThan() { return AllocLastSavedDateTimeGreaterThan; } public DB_Main1Query setAllocLastSavedDateTimeGreaterThan(Date value) { this.AllocLastSavedDateTimeGreaterThan = value; return this; } public Date getAllocLastSavedDateTimeLessThan() { return AllocLastSavedDateTimeLessThan; } public DB_Main1Query setAllocLastSavedDateTimeLessThan(Date value) { this.AllocLastSavedDateTimeLessThan = value; return this; } public Date getAllocLastSavedDateTimeLessThanOrEqualTo() { return AllocLastSavedDateTimeLessThanOrEqualTo; } public DB_Main1Query setAllocLastSavedDateTimeLessThanOrEqualTo(Date value) { this.AllocLastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getAllocLastSavedDateTimeNotEqualTo() { return AllocLastSavedDateTimeNotEqualTo; } public DB_Main1Query setAllocLastSavedDateTimeNotEqualTo(Date value) { this.AllocLastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getAllocLastSavedDateTimeBetween() { return AllocLastSavedDateTimeBetween; } public DB_Main1Query setAllocLastSavedDateTimeBetween(ArrayList value) { this.AllocLastSavedDateTimeBetween = value; return this; } public ArrayList getAllocLastSavedDateTimeIn() { return AllocLastSavedDateTimeIn; } public DB_Main1Query setAllocLastSavedDateTimeIn(ArrayList value) { this.AllocLastSavedDateTimeIn = value; return this; } public String getPriceSchemeID() { return PriceSchemeID; } public DB_Main1Query setPriceSchemeID(String value) { this.PriceSchemeID = value; return this; } public String getPriceSchemeIDStartsWith() { return PriceSchemeIDStartsWith; } public DB_Main1Query setPriceSchemeIDStartsWith(String value) { this.PriceSchemeIDStartsWith = value; return this; } public String getPriceSchemeIDEndsWith() { return PriceSchemeIDEndsWith; } public DB_Main1Query setPriceSchemeIDEndsWith(String value) { this.PriceSchemeIDEndsWith = value; return this; } public String getPriceSchemeIDContains() { return PriceSchemeIDContains; } public DB_Main1Query setPriceSchemeIDContains(String value) { this.PriceSchemeIDContains = value; return this; } public String getPriceSchemeIDLike() { return PriceSchemeIDLike; } public DB_Main1Query setPriceSchemeIDLike(String value) { this.PriceSchemeIDLike = value; return this; } public ArrayList getPriceSchemeIDBetween() { return PriceSchemeIDBetween; } public DB_Main1Query setPriceSchemeIDBetween(ArrayList value) { this.PriceSchemeIDBetween = value; return this; } public ArrayList getPriceSchemeIDIn() { return PriceSchemeIDIn; } public DB_Main1Query setPriceSchemeIDIn(ArrayList value) { this.PriceSchemeIDIn = value; return this; } public String getAustPostDPID() { return AustPostDPID; } public DB_Main1Query setAustPostDPID(String value) { this.AustPostDPID = value; return this; } public String getAustPostDPIDStartsWith() { return AustPostDPIDStartsWith; } public DB_Main1Query setAustPostDPIDStartsWith(String value) { this.AustPostDPIDStartsWith = value; return this; } public String getAustPostDPIDEndsWith() { return AustPostDPIDEndsWith; } public DB_Main1Query setAustPostDPIDEndsWith(String value) { this.AustPostDPIDEndsWith = value; return this; } public String getAustPostDPIDContains() { return AustPostDPIDContains; } public DB_Main1Query setAustPostDPIDContains(String value) { this.AustPostDPIDContains = value; return this; } public String getAustPostDPIDLike() { return AustPostDPIDLike; } public DB_Main1Query setAustPostDPIDLike(String value) { this.AustPostDPIDLike = value; return this; } public ArrayList getAustPostDPIDBetween() { return AustPostDPIDBetween; } public DB_Main1Query setAustPostDPIDBetween(ArrayList value) { this.AustPostDPIDBetween = value; return this; } public ArrayList getAustPostDPIDIn() { return AustPostDPIDIn; } public DB_Main1Query setAustPostDPIDIn(ArrayList value) { this.AustPostDPIDIn = value; return this; } public String getAustPostBCSP() { return AustPostBCSP; } public DB_Main1Query setAustPostBCSP(String value) { this.AustPostBCSP = value; return this; } public String getAustPostBCSPStartsWith() { return AustPostBCSPStartsWith; } public DB_Main1Query setAustPostBCSPStartsWith(String value) { this.AustPostBCSPStartsWith = value; return this; } public String getAustPostBCSPEndsWith() { return AustPostBCSPEndsWith; } public DB_Main1Query setAustPostBCSPEndsWith(String value) { this.AustPostBCSPEndsWith = value; return this; } public String getAustPostBCSPContains() { return AustPostBCSPContains; } public DB_Main1Query setAustPostBCSPContains(String value) { this.AustPostBCSPContains = value; return this; } public String getAustPostBCSPLike() { return AustPostBCSPLike; } public DB_Main1Query setAustPostBCSPLike(String value) { this.AustPostBCSPLike = value; return this; } public ArrayList getAustPostBCSPBetween() { return AustPostBCSPBetween; } public DB_Main1Query setAustPostBCSPBetween(ArrayList value) { this.AustPostBCSPBetween = value; return this; } public ArrayList getAustPostBCSPIn() { return AustPostBCSPIn; } public DB_Main1Query setAustPostBCSPIn(ArrayList value) { this.AustPostBCSPIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class DB_Main2Query extends QueryDb implements IReturn> { public String DebtorID = null; public String DebtorIDStartsWith = null; public String DebtorIDEndsWith = null; public String DebtorIDContains = null; public String DebtorIDLike = null; public ArrayList DebtorIDBetween = null; public ArrayList DebtorIDIn = null; public Date LastSavedDateTime = null; public Date LastSavedDateTimeGreaterThanOrEqualTo = null; public Date LastSavedDateTimeGreaterThan = null; public Date LastSavedDateTimeLessThan = null; public Date LastSavedDateTimeLessThanOrEqualTo = null; public Date LastSavedDateTimeNotEqualTo = null; public ArrayList LastSavedDateTimeBetween = null; public ArrayList LastSavedDateTimeIn = null; public String TradingName = null; public String TradingNameStartsWith = null; public String TradingNameEndsWith = null; public String TradingNameContains = null; public String TradingNameLike = null; public ArrayList TradingNameBetween = null; public ArrayList TradingNameIn = null; public String CompanyName = null; public String CompanyNameStartsWith = null; public String CompanyNameEndsWith = null; public String CompanyNameContains = null; public String CompanyNameLike = null; public ArrayList CompanyNameBetween = null; public ArrayList CompanyNameIn = null; public String ACN = null; public String ACNStartsWith = null; public String ACNEndsWith = null; public String ACNContains = null; public String ACNLike = null; public ArrayList ACNBetween = null; public ArrayList ACNIn = null; public String ProprietorsName = null; public String ProprietorsNameStartsWith = null; public String ProprietorsNameEndsWith = null; public String ProprietorsNameContains = null; public String ProprietorsNameLike = null; public ArrayList ProprietorsNameBetween = null; public ArrayList ProprietorsNameIn = null; public String FaxHeader = null; public String FaxHeaderStartsWith = null; public String FaxHeaderEndsWith = null; public String FaxHeaderContains = null; public String FaxHeaderLike = null; public ArrayList FaxHeaderBetween = null; public ArrayList FaxHeaderIn = null; public String D1 = null; public String D1StartsWith = null; public String D1EndsWith = null; public String D1Contains = null; public String D1Like = null; public ArrayList D1Between = null; public ArrayList D1In = null; public String D2 = null; public String D2StartsWith = null; public String D2EndsWith = null; public String D2Contains = null; public String D2Like = null; public ArrayList D2Between = null; public ArrayList D2In = null; public String D3 = null; public String D3StartsWith = null; public String D3EndsWith = null; public String D3Contains = null; public String D3Like = null; public ArrayList D3Between = null; public ArrayList D3In = null; public String D4 = null; public String D4StartsWith = null; public String D4EndsWith = null; public String D4Contains = null; public String D4Like = null; public ArrayList D4Between = null; public ArrayList D4In = null; public String D5 = null; public String D5StartsWith = null; public String D5EndsWith = null; public String D5Contains = null; public String D5Like = null; public ArrayList D5Between = null; public ArrayList D5In = null; public String D6 = null; public String D6StartsWith = null; public String D6EndsWith = null; public String D6Contains = null; public String D6Like = null; public ArrayList D6Between = null; public ArrayList D6In = null; public String D7 = null; public String D7StartsWith = null; public String D7EndsWith = null; public String D7Contains = null; public String D7Like = null; public ArrayList D7Between = null; public ArrayList D7In = null; public String D8 = null; public String D8StartsWith = null; public String D8EndsWith = null; public String D8Contains = null; public String D8Like = null; public ArrayList D8Between = null; public ArrayList D8In = null; public String D9 = null; public String D9StartsWith = null; public String D9EndsWith = null; public String D9Contains = null; public String D9Like = null; public ArrayList D9Between = null; public ArrayList D9In = null; public String D10 = null; public String D10StartsWith = null; public String D10EndsWith = null; public String D10Contains = null; public String D10Like = null; public ArrayList D10Between = null; public ArrayList D10In = null; public String D11 = null; public String D11StartsWith = null; public String D11EndsWith = null; public String D11Contains = null; public String D11Like = null; public ArrayList D11Between = null; public ArrayList D11In = null; public Integer OpeningBal1 = null; public Integer OpeningBal1GreaterThanOrEqualTo = null; public Integer OpeningBal1GreaterThan = null; public Integer OpeningBal1LessThan = null; public Integer OpeningBal1LessThanOrEqualTo = null; public Integer OpeningBal1NotEqualTo = null; public ArrayList OpeningBal1Between = null; public ArrayList OpeningBal1In = null; public Integer OpeningBal2 = null; public Integer OpeningBal2GreaterThanOrEqualTo = null; public Integer OpeningBal2GreaterThan = null; public Integer OpeningBal2LessThan = null; public Integer OpeningBal2LessThanOrEqualTo = null; public Integer OpeningBal2NotEqualTo = null; public ArrayList OpeningBal2Between = null; public ArrayList OpeningBal2In = null; public Integer OpeningBal3 = null; public Integer OpeningBal3GreaterThanOrEqualTo = null; public Integer OpeningBal3GreaterThan = null; public Integer OpeningBal3LessThan = null; public Integer OpeningBal3LessThanOrEqualTo = null; public Integer OpeningBal3NotEqualTo = null; public ArrayList OpeningBal3Between = null; public ArrayList OpeningBal3In = null; public Integer OpeningBal4 = null; public Integer OpeningBal4GreaterThanOrEqualTo = null; public Integer OpeningBal4GreaterThan = null; public Integer OpeningBal4LessThan = null; public Integer OpeningBal4LessThanOrEqualTo = null; public Integer OpeningBal4NotEqualTo = null; public ArrayList OpeningBal4Between = null; public ArrayList OpeningBal4In = null; public Integer OpeningBal5 = null; public Integer OpeningBal5GreaterThanOrEqualTo = null; public Integer OpeningBal5GreaterThan = null; public Integer OpeningBal5LessThan = null; public Integer OpeningBal5LessThanOrEqualTo = null; public Integer OpeningBal5NotEqualTo = null; public ArrayList OpeningBal5Between = null; public ArrayList OpeningBal5In = null; public Integer OpeningBal6 = null; public Integer OpeningBal6GreaterThanOrEqualTo = null; public Integer OpeningBal6GreaterThan = null; public Integer OpeningBal6LessThan = null; public Integer OpeningBal6LessThanOrEqualTo = null; public Integer OpeningBal6NotEqualTo = null; public ArrayList OpeningBal6Between = null; public ArrayList OpeningBal6In = null; public Integer OpeningBal7 = null; public Integer OpeningBal7GreaterThanOrEqualTo = null; public Integer OpeningBal7GreaterThan = null; public Integer OpeningBal7LessThan = null; public Integer OpeningBal7LessThanOrEqualTo = null; public Integer OpeningBal7NotEqualTo = null; public ArrayList OpeningBal7Between = null; public ArrayList OpeningBal7In = null; public Integer OpeningBal8 = null; public Integer OpeningBal8GreaterThanOrEqualTo = null; public Integer OpeningBal8GreaterThan = null; public Integer OpeningBal8LessThan = null; public Integer OpeningBal8LessThanOrEqualTo = null; public Integer OpeningBal8NotEqualTo = null; public ArrayList OpeningBal8Between = null; public ArrayList OpeningBal8In = null; public Integer OpeningBal9 = null; public Integer OpeningBal9GreaterThanOrEqualTo = null; public Integer OpeningBal9GreaterThan = null; public Integer OpeningBal9LessThan = null; public Integer OpeningBal9LessThanOrEqualTo = null; public Integer OpeningBal9NotEqualTo = null; public ArrayList OpeningBal9Between = null; public ArrayList OpeningBal9In = null; public Integer OpeningBal10 = null; public Integer OpeningBal10GreaterThanOrEqualTo = null; public Integer OpeningBal10GreaterThan = null; public Integer OpeningBal10LessThan = null; public Integer OpeningBal10LessThanOrEqualTo = null; public Integer OpeningBal10NotEqualTo = null; public ArrayList OpeningBal10Between = null; public ArrayList OpeningBal10In = null; public Integer OpeningBal11 = null; public Integer OpeningBal11GreaterThanOrEqualTo = null; public Integer OpeningBal11GreaterThan = null; public Integer OpeningBal11LessThan = null; public Integer OpeningBal11LessThanOrEqualTo = null; public Integer OpeningBal11NotEqualTo = null; public ArrayList OpeningBal11Between = null; public ArrayList OpeningBal11In = null; public Integer OpeningBal12 = null; public Integer OpeningBal12GreaterThanOrEqualTo = null; public Integer OpeningBal12GreaterThan = null; public Integer OpeningBal12LessThan = null; public Integer OpeningBal12LessThanOrEqualTo = null; public Integer OpeningBal12NotEqualTo = null; public ArrayList OpeningBal12Between = null; public ArrayList OpeningBal12In = null; public Integer OpeningBal13 = null; public Integer OpeningBal13GreaterThanOrEqualTo = null; public Integer OpeningBal13GreaterThan = null; public Integer OpeningBal13LessThan = null; public Integer OpeningBal13LessThanOrEqualTo = null; public Integer OpeningBal13NotEqualTo = null; public ArrayList OpeningBal13Between = null; public ArrayList OpeningBal13In = null; public Integer OpeningBal14 = null; public Integer OpeningBal14GreaterThanOrEqualTo = null; public Integer OpeningBal14GreaterThan = null; public Integer OpeningBal14LessThan = null; public Integer OpeningBal14LessThanOrEqualTo = null; public Integer OpeningBal14NotEqualTo = null; public ArrayList OpeningBal14Between = null; public ArrayList OpeningBal14In = null; public Integer OpeningBal15 = null; public Integer OpeningBal15GreaterThanOrEqualTo = null; public Integer OpeningBal15GreaterThan = null; public Integer OpeningBal15LessThan = null; public Integer OpeningBal15LessThanOrEqualTo = null; public Integer OpeningBal15NotEqualTo = null; public ArrayList OpeningBal15Between = null; public ArrayList OpeningBal15In = null; public Integer OpeningBal16 = null; public Integer OpeningBal16GreaterThanOrEqualTo = null; public Integer OpeningBal16GreaterThan = null; public Integer OpeningBal16LessThan = null; public Integer OpeningBal16LessThanOrEqualTo = null; public Integer OpeningBal16NotEqualTo = null; public ArrayList OpeningBal16Between = null; public ArrayList OpeningBal16In = null; public Integer OpeningBal17 = null; public Integer OpeningBal17GreaterThanOrEqualTo = null; public Integer OpeningBal17GreaterThan = null; public Integer OpeningBal17LessThan = null; public Integer OpeningBal17LessThanOrEqualTo = null; public Integer OpeningBal17NotEqualTo = null; public ArrayList OpeningBal17Between = null; public ArrayList OpeningBal17In = null; public Integer OpeningBal18 = null; public Integer OpeningBal18GreaterThanOrEqualTo = null; public Integer OpeningBal18GreaterThan = null; public Integer OpeningBal18LessThan = null; public Integer OpeningBal18LessThanOrEqualTo = null; public Integer OpeningBal18NotEqualTo = null; public ArrayList OpeningBal18Between = null; public ArrayList OpeningBal18In = null; public Integer OpeningBal19 = null; public Integer OpeningBal19GreaterThanOrEqualTo = null; public Integer OpeningBal19GreaterThan = null; public Integer OpeningBal19LessThan = null; public Integer OpeningBal19LessThanOrEqualTo = null; public Integer OpeningBal19NotEqualTo = null; public ArrayList OpeningBal19Between = null; public ArrayList OpeningBal19In = null; public Integer OpeningBal20 = null; public Integer OpeningBal20GreaterThanOrEqualTo = null; public Integer OpeningBal20GreaterThan = null; public Integer OpeningBal20LessThan = null; public Integer OpeningBal20LessThanOrEqualTo = null; public Integer OpeningBal20NotEqualTo = null; public ArrayList OpeningBal20Between = null; public ArrayList OpeningBal20In = null; public Integer OpeningBal21 = null; public Integer OpeningBal21GreaterThanOrEqualTo = null; public Integer OpeningBal21GreaterThan = null; public Integer OpeningBal21LessThan = null; public Integer OpeningBal21LessThanOrEqualTo = null; public Integer OpeningBal21NotEqualTo = null; public ArrayList OpeningBal21Between = null; public ArrayList OpeningBal21In = null; public Integer OpeningBal22 = null; public Integer OpeningBal22GreaterThanOrEqualTo = null; public Integer OpeningBal22GreaterThan = null; public Integer OpeningBal22LessThan = null; public Integer OpeningBal22LessThanOrEqualTo = null; public Integer OpeningBal22NotEqualTo = null; public ArrayList OpeningBal22Between = null; public ArrayList OpeningBal22In = null; public Integer OpeningBal23 = null; public Integer OpeningBal23GreaterThanOrEqualTo = null; public Integer OpeningBal23GreaterThan = null; public Integer OpeningBal23LessThan = null; public Integer OpeningBal23LessThanOrEqualTo = null; public Integer OpeningBal23NotEqualTo = null; public ArrayList OpeningBal23Between = null; public ArrayList OpeningBal23In = null; public Integer OpeningBal24 = null; public Integer OpeningBal24GreaterThanOrEqualTo = null; public Integer OpeningBal24GreaterThan = null; public Integer OpeningBal24LessThan = null; public Integer OpeningBal24LessThanOrEqualTo = null; public Integer OpeningBal24NotEqualTo = null; public ArrayList OpeningBal24Between = null; public ArrayList OpeningBal24In = null; public Integer OpeningBal25 = null; public Integer OpeningBal25GreaterThanOrEqualTo = null; public Integer OpeningBal25GreaterThan = null; public Integer OpeningBal25LessThan = null; public Integer OpeningBal25LessThanOrEqualTo = null; public Integer OpeningBal25NotEqualTo = null; public ArrayList OpeningBal25Between = null; public ArrayList OpeningBal25In = null; public Integer OpeningBal26 = null; public Integer OpeningBal26GreaterThanOrEqualTo = null; public Integer OpeningBal26GreaterThan = null; public Integer OpeningBal26LessThan = null; public Integer OpeningBal26LessThanOrEqualTo = null; public Integer OpeningBal26NotEqualTo = null; public ArrayList OpeningBal26Between = null; public ArrayList OpeningBal26In = null; public Integer OpeningBal27 = null; public Integer OpeningBal27GreaterThanOrEqualTo = null; public Integer OpeningBal27GreaterThan = null; public Integer OpeningBal27LessThan = null; public Integer OpeningBal27LessThanOrEqualTo = null; public Integer OpeningBal27NotEqualTo = null; public ArrayList OpeningBal27Between = null; public ArrayList OpeningBal27In = null; public Integer OpeningBal28 = null; public Integer OpeningBal28GreaterThanOrEqualTo = null; public Integer OpeningBal28GreaterThan = null; public Integer OpeningBal28LessThan = null; public Integer OpeningBal28LessThanOrEqualTo = null; public Integer OpeningBal28NotEqualTo = null; public ArrayList OpeningBal28Between = null; public ArrayList OpeningBal28In = null; public Integer OpeningBal29 = null; public Integer OpeningBal29GreaterThanOrEqualTo = null; public Integer OpeningBal29GreaterThan = null; public Integer OpeningBal29LessThan = null; public Integer OpeningBal29LessThanOrEqualTo = null; public Integer OpeningBal29NotEqualTo = null; public ArrayList OpeningBal29Between = null; public ArrayList OpeningBal29In = null; public Integer OpeningBal30 = null; public Integer OpeningBal30GreaterThanOrEqualTo = null; public Integer OpeningBal30GreaterThan = null; public Integer OpeningBal30LessThan = null; public Integer OpeningBal30LessThanOrEqualTo = null; public Integer OpeningBal30NotEqualTo = null; public ArrayList OpeningBal30Between = null; public ArrayList OpeningBal30In = null; public Integer OpeningBal31 = null; public Integer OpeningBal31GreaterThanOrEqualTo = null; public Integer OpeningBal31GreaterThan = null; public Integer OpeningBal31LessThan = null; public Integer OpeningBal31LessThanOrEqualTo = null; public Integer OpeningBal31NotEqualTo = null; public ArrayList OpeningBal31Between = null; public ArrayList OpeningBal31In = null; public Integer OpeningBal32 = null; public Integer OpeningBal32GreaterThanOrEqualTo = null; public Integer OpeningBal32GreaterThan = null; public Integer OpeningBal32LessThan = null; public Integer OpeningBal32LessThanOrEqualTo = null; public Integer OpeningBal32NotEqualTo = null; public ArrayList OpeningBal32Between = null; public ArrayList OpeningBal32In = null; public Integer OpeningBal33 = null; public Integer OpeningBal33GreaterThanOrEqualTo = null; public Integer OpeningBal33GreaterThan = null; public Integer OpeningBal33LessThan = null; public Integer OpeningBal33LessThanOrEqualTo = null; public Integer OpeningBal33NotEqualTo = null; public ArrayList OpeningBal33Between = null; public ArrayList OpeningBal33In = null; public Integer OpeningBal34 = null; public Integer OpeningBal34GreaterThanOrEqualTo = null; public Integer OpeningBal34GreaterThan = null; public Integer OpeningBal34LessThan = null; public Integer OpeningBal34LessThanOrEqualTo = null; public Integer OpeningBal34NotEqualTo = null; public ArrayList OpeningBal34Between = null; public ArrayList OpeningBal34In = null; public Integer OpeningBal35 = null; public Integer OpeningBal35GreaterThanOrEqualTo = null; public Integer OpeningBal35GreaterThan = null; public Integer OpeningBal35LessThan = null; public Integer OpeningBal35LessThanOrEqualTo = null; public Integer OpeningBal35NotEqualTo = null; public ArrayList OpeningBal35Between = null; public ArrayList OpeningBal35In = null; public Integer OpeningBal36 = null; public Integer OpeningBal36GreaterThanOrEqualTo = null; public Integer OpeningBal36GreaterThan = null; public Integer OpeningBal36LessThan = null; public Integer OpeningBal36LessThanOrEqualTo = null; public Integer OpeningBal36NotEqualTo = null; public ArrayList OpeningBal36Between = null; public ArrayList OpeningBal36In = null; public Integer OpeningBal37 = null; public Integer OpeningBal37GreaterThanOrEqualTo = null; public Integer OpeningBal37GreaterThan = null; public Integer OpeningBal37LessThan = null; public Integer OpeningBal37LessThanOrEqualTo = null; public Integer OpeningBal37NotEqualTo = null; public ArrayList OpeningBal37Between = null; public ArrayList OpeningBal37In = null; public Integer OpeningBal38 = null; public Integer OpeningBal38GreaterThanOrEqualTo = null; public Integer OpeningBal38GreaterThan = null; public Integer OpeningBal38LessThan = null; public Integer OpeningBal38LessThanOrEqualTo = null; public Integer OpeningBal38NotEqualTo = null; public ArrayList OpeningBal38Between = null; public ArrayList OpeningBal38In = null; public Integer OpeningBal39 = null; public Integer OpeningBal39GreaterThanOrEqualTo = null; public Integer OpeningBal39GreaterThan = null; public Integer OpeningBal39LessThan = null; public Integer OpeningBal39LessThanOrEqualTo = null; public Integer OpeningBal39NotEqualTo = null; public ArrayList OpeningBal39Between = null; public ArrayList OpeningBal39In = null; public Integer OpeningBal40 = null; public Integer OpeningBal40GreaterThanOrEqualTo = null; public Integer OpeningBal40GreaterThan = null; public Integer OpeningBal40LessThan = null; public Integer OpeningBal40LessThanOrEqualTo = null; public Integer OpeningBal40NotEqualTo = null; public ArrayList OpeningBal40Between = null; public ArrayList OpeningBal40In = null; public Integer OpeningBal41 = null; public Integer OpeningBal41GreaterThanOrEqualTo = null; public Integer OpeningBal41GreaterThan = null; public Integer OpeningBal41LessThan = null; public Integer OpeningBal41LessThanOrEqualTo = null; public Integer OpeningBal41NotEqualTo = null; public ArrayList OpeningBal41Between = null; public ArrayList OpeningBal41In = null; public Integer OpeningBal42 = null; public Integer OpeningBal42GreaterThanOrEqualTo = null; public Integer OpeningBal42GreaterThan = null; public Integer OpeningBal42LessThan = null; public Integer OpeningBal42LessThanOrEqualTo = null; public Integer OpeningBal42NotEqualTo = null; public ArrayList OpeningBal42Between = null; public ArrayList OpeningBal42In = null; public Integer OpeningBal43 = null; public Integer OpeningBal43GreaterThanOrEqualTo = null; public Integer OpeningBal43GreaterThan = null; public Integer OpeningBal43LessThan = null; public Integer OpeningBal43LessThanOrEqualTo = null; public Integer OpeningBal43NotEqualTo = null; public ArrayList OpeningBal43Between = null; public ArrayList OpeningBal43In = null; public Integer OpeningBal44 = null; public Integer OpeningBal44GreaterThanOrEqualTo = null; public Integer OpeningBal44GreaterThan = null; public Integer OpeningBal44LessThan = null; public Integer OpeningBal44LessThanOrEqualTo = null; public Integer OpeningBal44NotEqualTo = null; public ArrayList OpeningBal44Between = null; public ArrayList OpeningBal44In = null; public Integer OpeningBal45 = null; public Integer OpeningBal45GreaterThanOrEqualTo = null; public Integer OpeningBal45GreaterThan = null; public Integer OpeningBal45LessThan = null; public Integer OpeningBal45LessThanOrEqualTo = null; public Integer OpeningBal45NotEqualTo = null; public ArrayList OpeningBal45Between = null; public ArrayList OpeningBal45In = null; public Integer OpeningBal46 = null; public Integer OpeningBal46GreaterThanOrEqualTo = null; public Integer OpeningBal46GreaterThan = null; public Integer OpeningBal46LessThan = null; public Integer OpeningBal46LessThanOrEqualTo = null; public Integer OpeningBal46NotEqualTo = null; public ArrayList OpeningBal46Between = null; public ArrayList OpeningBal46In = null; public Integer OpeningBal47 = null; public Integer OpeningBal47GreaterThanOrEqualTo = null; public Integer OpeningBal47GreaterThan = null; public Integer OpeningBal47LessThan = null; public Integer OpeningBal47LessThanOrEqualTo = null; public Integer OpeningBal47NotEqualTo = null; public ArrayList OpeningBal47Between = null; public ArrayList OpeningBal47In = null; public Integer OpeningBal48 = null; public Integer OpeningBal48GreaterThanOrEqualTo = null; public Integer OpeningBal48GreaterThan = null; public Integer OpeningBal48LessThan = null; public Integer OpeningBal48LessThanOrEqualTo = null; public Integer OpeningBal48NotEqualTo = null; public ArrayList OpeningBal48Between = null; public ArrayList OpeningBal48In = null; public Integer OpeningBal49 = null; public Integer OpeningBal49GreaterThanOrEqualTo = null; public Integer OpeningBal49GreaterThan = null; public Integer OpeningBal49LessThan = null; public Integer OpeningBal49LessThanOrEqualTo = null; public Integer OpeningBal49NotEqualTo = null; public ArrayList OpeningBal49Between = null; public ArrayList OpeningBal49In = null; public Integer OpeningBal50 = null; public Integer OpeningBal50GreaterThanOrEqualTo = null; public Integer OpeningBal50GreaterThan = null; public Integer OpeningBal50LessThan = null; public Integer OpeningBal50LessThanOrEqualTo = null; public Integer OpeningBal50NotEqualTo = null; public ArrayList OpeningBal50Between = null; public ArrayList OpeningBal50In = null; public Integer OpeningBal51 = null; public Integer OpeningBal51GreaterThanOrEqualTo = null; public Integer OpeningBal51GreaterThan = null; public Integer OpeningBal51LessThan = null; public Integer OpeningBal51LessThanOrEqualTo = null; public Integer OpeningBal51NotEqualTo = null; public ArrayList OpeningBal51Between = null; public ArrayList OpeningBal51In = null; public Integer OpeningBal52 = null; public Integer OpeningBal52GreaterThanOrEqualTo = null; public Integer OpeningBal52GreaterThan = null; public Integer OpeningBal52LessThan = null; public Integer OpeningBal52LessThanOrEqualTo = null; public Integer OpeningBal52NotEqualTo = null; public ArrayList OpeningBal52Between = null; public ArrayList OpeningBal52In = null; public Integer OpeningBal53 = null; public Integer OpeningBal53GreaterThanOrEqualTo = null; public Integer OpeningBal53GreaterThan = null; public Integer OpeningBal53LessThan = null; public Integer OpeningBal53LessThanOrEqualTo = null; public Integer OpeningBal53NotEqualTo = null; public ArrayList OpeningBal53Between = null; public ArrayList OpeningBal53In = null; public Short PeriodType = null; public Short PeriodTypeGreaterThanOrEqualTo = null; public Short PeriodTypeGreaterThan = null; public Short PeriodTypeLessThan = null; public Short PeriodTypeLessThanOrEqualTo = null; public Short PeriodTypeNotEqualTo = null; public ArrayList PeriodTypeBetween = null; public ArrayList PeriodTypeIn = null; public Short TermsDays = null; public Short TermsDaysGreaterThanOrEqualTo = null; public Short TermsDaysGreaterThan = null; public Short TermsDaysLessThan = null; public Short TermsDaysLessThanOrEqualTo = null; public Short TermsDaysNotEqualTo = null; public ArrayList TermsDaysBetween = null; public ArrayList TermsDaysIn = null; public Short TermsType = null; public Short TermsTypeGreaterThanOrEqualTo = null; public Short TermsTypeGreaterThan = null; public Short TermsTypeLessThan = null; public Short TermsTypeLessThanOrEqualTo = null; public Short TermsTypeNotEqualTo = null; public ArrayList TermsTypeBetween = null; public ArrayList TermsTypeIn = null; public String ABN = null; public String ABNStartsWith = null; public String ABNEndsWith = null; public String ABNContains = null; public String ABNLike = null; public ArrayList ABNBetween = null; public ArrayList ABNIn = null; public Boolean ExcludeFromAging = null; public String BPayReference = null; public String BPayReferenceStartsWith = null; public String BPayReferenceEndsWith = null; public String BPayReferenceContains = null; public String BPayReferenceLike = null; public ArrayList BPayReferenceBetween = null; public ArrayList BPayReferenceIn = null; public String getDebtorID() { return DebtorID; } public DB_Main2Query setDebtorID(String value) { this.DebtorID = value; return this; } public String getDebtorIDStartsWith() { return DebtorIDStartsWith; } public DB_Main2Query setDebtorIDStartsWith(String value) { this.DebtorIDStartsWith = value; return this; } public String getDebtorIDEndsWith() { return DebtorIDEndsWith; } public DB_Main2Query setDebtorIDEndsWith(String value) { this.DebtorIDEndsWith = value; return this; } public String getDebtorIDContains() { return DebtorIDContains; } public DB_Main2Query setDebtorIDContains(String value) { this.DebtorIDContains = value; return this; } public String getDebtorIDLike() { return DebtorIDLike; } public DB_Main2Query setDebtorIDLike(String value) { this.DebtorIDLike = value; return this; } public ArrayList getDebtorIDBetween() { return DebtorIDBetween; } public DB_Main2Query setDebtorIDBetween(ArrayList value) { this.DebtorIDBetween = value; return this; } public ArrayList getDebtorIDIn() { return DebtorIDIn; } public DB_Main2Query setDebtorIDIn(ArrayList value) { this.DebtorIDIn = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public DB_Main2Query setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getLastSavedDateTimeGreaterThanOrEqualTo() { return LastSavedDateTimeGreaterThanOrEqualTo; } public DB_Main2Query setLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.LastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeGreaterThan() { return LastSavedDateTimeGreaterThan; } public DB_Main2Query setLastSavedDateTimeGreaterThan(Date value) { this.LastSavedDateTimeGreaterThan = value; return this; } public Date getLastSavedDateTimeLessThan() { return LastSavedDateTimeLessThan; } public DB_Main2Query setLastSavedDateTimeLessThan(Date value) { this.LastSavedDateTimeLessThan = value; return this; } public Date getLastSavedDateTimeLessThanOrEqualTo() { return LastSavedDateTimeLessThanOrEqualTo; } public DB_Main2Query setLastSavedDateTimeLessThanOrEqualTo(Date value) { this.LastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeNotEqualTo() { return LastSavedDateTimeNotEqualTo; } public DB_Main2Query setLastSavedDateTimeNotEqualTo(Date value) { this.LastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getLastSavedDateTimeBetween() { return LastSavedDateTimeBetween; } public DB_Main2Query setLastSavedDateTimeBetween(ArrayList value) { this.LastSavedDateTimeBetween = value; return this; } public ArrayList getLastSavedDateTimeIn() { return LastSavedDateTimeIn; } public DB_Main2Query setLastSavedDateTimeIn(ArrayList value) { this.LastSavedDateTimeIn = value; return this; } public String getTradingName() { return TradingName; } public DB_Main2Query setTradingName(String value) { this.TradingName = value; return this; } public String getTradingNameStartsWith() { return TradingNameStartsWith; } public DB_Main2Query setTradingNameStartsWith(String value) { this.TradingNameStartsWith = value; return this; } public String getTradingNameEndsWith() { return TradingNameEndsWith; } public DB_Main2Query setTradingNameEndsWith(String value) { this.TradingNameEndsWith = value; return this; } public String getTradingNameContains() { return TradingNameContains; } public DB_Main2Query setTradingNameContains(String value) { this.TradingNameContains = value; return this; } public String getTradingNameLike() { return TradingNameLike; } public DB_Main2Query setTradingNameLike(String value) { this.TradingNameLike = value; return this; } public ArrayList getTradingNameBetween() { return TradingNameBetween; } public DB_Main2Query setTradingNameBetween(ArrayList value) { this.TradingNameBetween = value; return this; } public ArrayList getTradingNameIn() { return TradingNameIn; } public DB_Main2Query setTradingNameIn(ArrayList value) { this.TradingNameIn = value; return this; } public String getCompanyName() { return CompanyName; } public DB_Main2Query setCompanyName(String value) { this.CompanyName = value; return this; } public String getCompanyNameStartsWith() { return CompanyNameStartsWith; } public DB_Main2Query setCompanyNameStartsWith(String value) { this.CompanyNameStartsWith = value; return this; } public String getCompanyNameEndsWith() { return CompanyNameEndsWith; } public DB_Main2Query setCompanyNameEndsWith(String value) { this.CompanyNameEndsWith = value; return this; } public String getCompanyNameContains() { return CompanyNameContains; } public DB_Main2Query setCompanyNameContains(String value) { this.CompanyNameContains = value; return this; } public String getCompanyNameLike() { return CompanyNameLike; } public DB_Main2Query setCompanyNameLike(String value) { this.CompanyNameLike = value; return this; } public ArrayList getCompanyNameBetween() { return CompanyNameBetween; } public DB_Main2Query setCompanyNameBetween(ArrayList value) { this.CompanyNameBetween = value; return this; } public ArrayList getCompanyNameIn() { return CompanyNameIn; } public DB_Main2Query setCompanyNameIn(ArrayList value) { this.CompanyNameIn = value; return this; } public String getAcn() { return ACN; } public DB_Main2Query setAcn(String value) { this.ACN = value; return this; } public String getAcnStartsWith() { return ACNStartsWith; } public DB_Main2Query setAcnStartsWith(String value) { this.ACNStartsWith = value; return this; } public String getAcnEndsWith() { return ACNEndsWith; } public DB_Main2Query setAcnEndsWith(String value) { this.ACNEndsWith = value; return this; } public String getAcnContains() { return ACNContains; } public DB_Main2Query setAcnContains(String value) { this.ACNContains = value; return this; } public String getAcnLike() { return ACNLike; } public DB_Main2Query setAcnLike(String value) { this.ACNLike = value; return this; } public ArrayList getAcnBetween() { return ACNBetween; } public DB_Main2Query setAcnBetween(ArrayList value) { this.ACNBetween = value; return this; } public ArrayList getAcnIn() { return ACNIn; } public DB_Main2Query setAcnIn(ArrayList value) { this.ACNIn = value; return this; } public String getProprietorsName() { return ProprietorsName; } public DB_Main2Query setProprietorsName(String value) { this.ProprietorsName = value; return this; } public String getProprietorsNameStartsWith() { return ProprietorsNameStartsWith; } public DB_Main2Query setProprietorsNameStartsWith(String value) { this.ProprietorsNameStartsWith = value; return this; } public String getProprietorsNameEndsWith() { return ProprietorsNameEndsWith; } public DB_Main2Query setProprietorsNameEndsWith(String value) { this.ProprietorsNameEndsWith = value; return this; } public String getProprietorsNameContains() { return ProprietorsNameContains; } public DB_Main2Query setProprietorsNameContains(String value) { this.ProprietorsNameContains = value; return this; } public String getProprietorsNameLike() { return ProprietorsNameLike; } public DB_Main2Query setProprietorsNameLike(String value) { this.ProprietorsNameLike = value; return this; } public ArrayList getProprietorsNameBetween() { return ProprietorsNameBetween; } public DB_Main2Query setProprietorsNameBetween(ArrayList value) { this.ProprietorsNameBetween = value; return this; } public ArrayList getProprietorsNameIn() { return ProprietorsNameIn; } public DB_Main2Query setProprietorsNameIn(ArrayList value) { this.ProprietorsNameIn = value; return this; } public String getFaxHeader() { return FaxHeader; } public DB_Main2Query setFaxHeader(String value) { this.FaxHeader = value; return this; } public String getFaxHeaderStartsWith() { return FaxHeaderStartsWith; } public DB_Main2Query setFaxHeaderStartsWith(String value) { this.FaxHeaderStartsWith = value; return this; } public String getFaxHeaderEndsWith() { return FaxHeaderEndsWith; } public DB_Main2Query setFaxHeaderEndsWith(String value) { this.FaxHeaderEndsWith = value; return this; } public String getFaxHeaderContains() { return FaxHeaderContains; } public DB_Main2Query setFaxHeaderContains(String value) { this.FaxHeaderContains = value; return this; } public String getFaxHeaderLike() { return FaxHeaderLike; } public DB_Main2Query setFaxHeaderLike(String value) { this.FaxHeaderLike = value; return this; } public ArrayList getFaxHeaderBetween() { return FaxHeaderBetween; } public DB_Main2Query setFaxHeaderBetween(ArrayList value) { this.FaxHeaderBetween = value; return this; } public ArrayList getFaxHeaderIn() { return FaxHeaderIn; } public DB_Main2Query setFaxHeaderIn(ArrayList value) { this.FaxHeaderIn = value; return this; } public String getD1() { return D1; } public DB_Main2Query setD1(String value) { this.D1 = value; return this; } public String getD1StartsWith() { return D1StartsWith; } public DB_Main2Query setD1StartsWith(String value) { this.D1StartsWith = value; return this; } public String getD1EndsWith() { return D1EndsWith; } public DB_Main2Query setD1EndsWith(String value) { this.D1EndsWith = value; return this; } public String getD1Contains() { return D1Contains; } public DB_Main2Query setD1Contains(String value) { this.D1Contains = value; return this; } public String getD1Like() { return D1Like; } public DB_Main2Query setD1Like(String value) { this.D1Like = value; return this; } public ArrayList getD1Between() { return D1Between; } public DB_Main2Query setD1Between(ArrayList value) { this.D1Between = value; return this; } public ArrayList getD1In() { return D1In; } public DB_Main2Query setD1In(ArrayList value) { this.D1In = value; return this; } public String getD2() { return D2; } public DB_Main2Query setD2(String value) { this.D2 = value; return this; } public String getD2StartsWith() { return D2StartsWith; } public DB_Main2Query setD2StartsWith(String value) { this.D2StartsWith = value; return this; } public String getD2EndsWith() { return D2EndsWith; } public DB_Main2Query setD2EndsWith(String value) { this.D2EndsWith = value; return this; } public String getD2Contains() { return D2Contains; } public DB_Main2Query setD2Contains(String value) { this.D2Contains = value; return this; } public String getD2Like() { return D2Like; } public DB_Main2Query setD2Like(String value) { this.D2Like = value; return this; } public ArrayList getD2Between() { return D2Between; } public DB_Main2Query setD2Between(ArrayList value) { this.D2Between = value; return this; } public ArrayList getD2In() { return D2In; } public DB_Main2Query setD2In(ArrayList value) { this.D2In = value; return this; } public String getD3() { return D3; } public DB_Main2Query setD3(String value) { this.D3 = value; return this; } public String getD3StartsWith() { return D3StartsWith; } public DB_Main2Query setD3StartsWith(String value) { this.D3StartsWith = value; return this; } public String getD3EndsWith() { return D3EndsWith; } public DB_Main2Query setD3EndsWith(String value) { this.D3EndsWith = value; return this; } public String getD3Contains() { return D3Contains; } public DB_Main2Query setD3Contains(String value) { this.D3Contains = value; return this; } public String getD3Like() { return D3Like; } public DB_Main2Query setD3Like(String value) { this.D3Like = value; return this; } public ArrayList getD3Between() { return D3Between; } public DB_Main2Query setD3Between(ArrayList value) { this.D3Between = value; return this; } public ArrayList getD3In() { return D3In; } public DB_Main2Query setD3In(ArrayList value) { this.D3In = value; return this; } public String getD4() { return D4; } public DB_Main2Query setD4(String value) { this.D4 = value; return this; } public String getD4StartsWith() { return D4StartsWith; } public DB_Main2Query setD4StartsWith(String value) { this.D4StartsWith = value; return this; } public String getD4EndsWith() { return D4EndsWith; } public DB_Main2Query setD4EndsWith(String value) { this.D4EndsWith = value; return this; } public String getD4Contains() { return D4Contains; } public DB_Main2Query setD4Contains(String value) { this.D4Contains = value; return this; } public String getD4Like() { return D4Like; } public DB_Main2Query setD4Like(String value) { this.D4Like = value; return this; } public ArrayList getD4Between() { return D4Between; } public DB_Main2Query setD4Between(ArrayList value) { this.D4Between = value; return this; } public ArrayList getD4In() { return D4In; } public DB_Main2Query setD4In(ArrayList value) { this.D4In = value; return this; } public String getD5() { return D5; } public DB_Main2Query setD5(String value) { this.D5 = value; return this; } public String getD5StartsWith() { return D5StartsWith; } public DB_Main2Query setD5StartsWith(String value) { this.D5StartsWith = value; return this; } public String getD5EndsWith() { return D5EndsWith; } public DB_Main2Query setD5EndsWith(String value) { this.D5EndsWith = value; return this; } public String getD5Contains() { return D5Contains; } public DB_Main2Query setD5Contains(String value) { this.D5Contains = value; return this; } public String getD5Like() { return D5Like; } public DB_Main2Query setD5Like(String value) { this.D5Like = value; return this; } public ArrayList getD5Between() { return D5Between; } public DB_Main2Query setD5Between(ArrayList value) { this.D5Between = value; return this; } public ArrayList getD5In() { return D5In; } public DB_Main2Query setD5In(ArrayList value) { this.D5In = value; return this; } public String getD6() { return D6; } public DB_Main2Query setD6(String value) { this.D6 = value; return this; } public String getD6StartsWith() { return D6StartsWith; } public DB_Main2Query setD6StartsWith(String value) { this.D6StartsWith = value; return this; } public String getD6EndsWith() { return D6EndsWith; } public DB_Main2Query setD6EndsWith(String value) { this.D6EndsWith = value; return this; } public String getD6Contains() { return D6Contains; } public DB_Main2Query setD6Contains(String value) { this.D6Contains = value; return this; } public String getD6Like() { return D6Like; } public DB_Main2Query setD6Like(String value) { this.D6Like = value; return this; } public ArrayList getD6Between() { return D6Between; } public DB_Main2Query setD6Between(ArrayList value) { this.D6Between = value; return this; } public ArrayList getD6In() { return D6In; } public DB_Main2Query setD6In(ArrayList value) { this.D6In = value; return this; } public String getD7() { return D7; } public DB_Main2Query setD7(String value) { this.D7 = value; return this; } public String getD7StartsWith() { return D7StartsWith; } public DB_Main2Query setD7StartsWith(String value) { this.D7StartsWith = value; return this; } public String getD7EndsWith() { return D7EndsWith; } public DB_Main2Query setD7EndsWith(String value) { this.D7EndsWith = value; return this; } public String getD7Contains() { return D7Contains; } public DB_Main2Query setD7Contains(String value) { this.D7Contains = value; return this; } public String getD7Like() { return D7Like; } public DB_Main2Query setD7Like(String value) { this.D7Like = value; return this; } public ArrayList getD7Between() { return D7Between; } public DB_Main2Query setD7Between(ArrayList value) { this.D7Between = value; return this; } public ArrayList getD7In() { return D7In; } public DB_Main2Query setD7In(ArrayList value) { this.D7In = value; return this; } public String getD8() { return D8; } public DB_Main2Query setD8(String value) { this.D8 = value; return this; } public String getD8StartsWith() { return D8StartsWith; } public DB_Main2Query setD8StartsWith(String value) { this.D8StartsWith = value; return this; } public String getD8EndsWith() { return D8EndsWith; } public DB_Main2Query setD8EndsWith(String value) { this.D8EndsWith = value; return this; } public String getD8Contains() { return D8Contains; } public DB_Main2Query setD8Contains(String value) { this.D8Contains = value; return this; } public String getD8Like() { return D8Like; } public DB_Main2Query setD8Like(String value) { this.D8Like = value; return this; } public ArrayList getD8Between() { return D8Between; } public DB_Main2Query setD8Between(ArrayList value) { this.D8Between = value; return this; } public ArrayList getD8In() { return D8In; } public DB_Main2Query setD8In(ArrayList value) { this.D8In = value; return this; } public String getD9() { return D9; } public DB_Main2Query setD9(String value) { this.D9 = value; return this; } public String getD9StartsWith() { return D9StartsWith; } public DB_Main2Query setD9StartsWith(String value) { this.D9StartsWith = value; return this; } public String getD9EndsWith() { return D9EndsWith; } public DB_Main2Query setD9EndsWith(String value) { this.D9EndsWith = value; return this; } public String getD9Contains() { return D9Contains; } public DB_Main2Query setD9Contains(String value) { this.D9Contains = value; return this; } public String getD9Like() { return D9Like; } public DB_Main2Query setD9Like(String value) { this.D9Like = value; return this; } public ArrayList getD9Between() { return D9Between; } public DB_Main2Query setD9Between(ArrayList value) { this.D9Between = value; return this; } public ArrayList getD9In() { return D9In; } public DB_Main2Query setD9In(ArrayList value) { this.D9In = value; return this; } public String getD10() { return D10; } public DB_Main2Query setD10(String value) { this.D10 = value; return this; } public String getD10StartsWith() { return D10StartsWith; } public DB_Main2Query setD10StartsWith(String value) { this.D10StartsWith = value; return this; } public String getD10EndsWith() { return D10EndsWith; } public DB_Main2Query setD10EndsWith(String value) { this.D10EndsWith = value; return this; } public String getD10Contains() { return D10Contains; } public DB_Main2Query setD10Contains(String value) { this.D10Contains = value; return this; } public String getD10Like() { return D10Like; } public DB_Main2Query setD10Like(String value) { this.D10Like = value; return this; } public ArrayList getD10Between() { return D10Between; } public DB_Main2Query setD10Between(ArrayList value) { this.D10Between = value; return this; } public ArrayList getD10In() { return D10In; } public DB_Main2Query setD10In(ArrayList value) { this.D10In = value; return this; } public String getD11() { return D11; } public DB_Main2Query setD11(String value) { this.D11 = value; return this; } public String getD11StartsWith() { return D11StartsWith; } public DB_Main2Query setD11StartsWith(String value) { this.D11StartsWith = value; return this; } public String getD11EndsWith() { return D11EndsWith; } public DB_Main2Query setD11EndsWith(String value) { this.D11EndsWith = value; return this; } public String getD11Contains() { return D11Contains; } public DB_Main2Query setD11Contains(String value) { this.D11Contains = value; return this; } public String getD11Like() { return D11Like; } public DB_Main2Query setD11Like(String value) { this.D11Like = value; return this; } public ArrayList getD11Between() { return D11Between; } public DB_Main2Query setD11Between(ArrayList value) { this.D11Between = value; return this; } public ArrayList getD11In() { return D11In; } public DB_Main2Query setD11In(ArrayList value) { this.D11In = value; return this; } public Integer getOpeningBal1() { return OpeningBal1; } public DB_Main2Query setOpeningBal1(Integer value) { this.OpeningBal1 = value; return this; } public Integer getOpeningBal1GreaterThanOrEqualTo() { return OpeningBal1GreaterThanOrEqualTo; } public DB_Main2Query setOpeningBal1GreaterThanOrEqualTo(Integer value) { this.OpeningBal1GreaterThanOrEqualTo = value; return this; } public Integer getOpeningBal1GreaterThan() { return OpeningBal1GreaterThan; } public DB_Main2Query setOpeningBal1GreaterThan(Integer value) { this.OpeningBal1GreaterThan = value; return this; } public Integer getOpeningBal1LessThan() { return OpeningBal1LessThan; } public DB_Main2Query setOpeningBal1LessThan(Integer value) { this.OpeningBal1LessThan = value; return this; } public Integer getOpeningBal1LessThanOrEqualTo() { return OpeningBal1LessThanOrEqualTo; } public DB_Main2Query setOpeningBal1LessThanOrEqualTo(Integer value) { this.OpeningBal1LessThanOrEqualTo = value; return this; } public Integer getOpeningBal1NotEqualTo() { return OpeningBal1NotEqualTo; } public DB_Main2Query setOpeningBal1NotEqualTo(Integer value) { this.OpeningBal1NotEqualTo = value; return this; } public ArrayList getOpeningBal1Between() { return OpeningBal1Between; } public DB_Main2Query setOpeningBal1Between(ArrayList value) { this.OpeningBal1Between = value; return this; } public ArrayList getOpeningBal1In() { return OpeningBal1In; } public DB_Main2Query setOpeningBal1In(ArrayList value) { this.OpeningBal1In = value; return this; } public Integer getOpeningBal2() { return OpeningBal2; } public DB_Main2Query setOpeningBal2(Integer value) { this.OpeningBal2 = value; return this; } public Integer getOpeningBal2GreaterThanOrEqualTo() { return OpeningBal2GreaterThanOrEqualTo; } public DB_Main2Query setOpeningBal2GreaterThanOrEqualTo(Integer value) { this.OpeningBal2GreaterThanOrEqualTo = value; return this; } public Integer getOpeningBal2GreaterThan() { return OpeningBal2GreaterThan; } public DB_Main2Query setOpeningBal2GreaterThan(Integer value) { this.OpeningBal2GreaterThan = value; return this; } public Integer getOpeningBal2LessThan() { return OpeningBal2LessThan; } public DB_Main2Query setOpeningBal2LessThan(Integer value) { this.OpeningBal2LessThan = value; return this; } public Integer getOpeningBal2LessThanOrEqualTo() { return OpeningBal2LessThanOrEqualTo; } public DB_Main2Query setOpeningBal2LessThanOrEqualTo(Integer value) { this.OpeningBal2LessThanOrEqualTo = value; return this; } public Integer getOpeningBal2NotEqualTo() { return OpeningBal2NotEqualTo; } public DB_Main2Query setOpeningBal2NotEqualTo(Integer value) { this.OpeningBal2NotEqualTo = value; return this; } public ArrayList getOpeningBal2Between() { return OpeningBal2Between; } public DB_Main2Query setOpeningBal2Between(ArrayList value) { this.OpeningBal2Between = value; return this; } public ArrayList getOpeningBal2In() { return OpeningBal2In; } public DB_Main2Query setOpeningBal2In(ArrayList value) { this.OpeningBal2In = value; return this; } public Integer getOpeningBal3() { return OpeningBal3; } public DB_Main2Query setOpeningBal3(Integer value) { this.OpeningBal3 = value; return this; } public Integer getOpeningBal3GreaterThanOrEqualTo() { return OpeningBal3GreaterThanOrEqualTo; } public DB_Main2Query setOpeningBal3GreaterThanOrEqualTo(Integer value) { this.OpeningBal3GreaterThanOrEqualTo = value; return this; } public Integer getOpeningBal3GreaterThan() { return OpeningBal3GreaterThan; } public DB_Main2Query setOpeningBal3GreaterThan(Integer value) { this.OpeningBal3GreaterThan = value; return this; } public Integer getOpeningBal3LessThan() { return OpeningBal3LessThan; } public DB_Main2Query setOpeningBal3LessThan(Integer value) { this.OpeningBal3LessThan = value; return this; } public Integer getOpeningBal3LessThanOrEqualTo() { return OpeningBal3LessThanOrEqualTo; } public DB_Main2Query setOpeningBal3LessThanOrEqualTo(Integer value) { this.OpeningBal3LessThanOrEqualTo = value; return this; } public Integer getOpeningBal3NotEqualTo() { return OpeningBal3NotEqualTo; } public DB_Main2Query setOpeningBal3NotEqualTo(Integer value) { this.OpeningBal3NotEqualTo = value; return this; } public ArrayList getOpeningBal3Between() { return OpeningBal3Between; } public DB_Main2Query setOpeningBal3Between(ArrayList value) { this.OpeningBal3Between = value; return this; } public ArrayList getOpeningBal3In() { return OpeningBal3In; } public DB_Main2Query setOpeningBal3In(ArrayList value) { this.OpeningBal3In = value; return this; } public Integer getOpeningBal4() { return OpeningBal4; } public DB_Main2Query setOpeningBal4(Integer value) { this.OpeningBal4 = value; return this; } public Integer getOpeningBal4GreaterThanOrEqualTo() { return OpeningBal4GreaterThanOrEqualTo; } public DB_Main2Query setOpeningBal4GreaterThanOrEqualTo(Integer value) { this.OpeningBal4GreaterThanOrEqualTo = value; return this; } public Integer getOpeningBal4GreaterThan() { return OpeningBal4GreaterThan; } public DB_Main2Query setOpeningBal4GreaterThan(Integer value) { this.OpeningBal4GreaterThan = value; return this; } public Integer getOpeningBal4LessThan() { return OpeningBal4LessThan; } public DB_Main2Query setOpeningBal4LessThan(Integer value) { this.OpeningBal4LessThan = value; return this; } public Integer getOpeningBal4LessThanOrEqualTo() { return OpeningBal4LessThanOrEqualTo; } public DB_Main2Query setOpeningBal4LessThanOrEqualTo(Integer value) { this.OpeningBal4LessThanOrEqualTo = value; return this; } public Integer getOpeningBal4NotEqualTo() { return OpeningBal4NotEqualTo; } public DB_Main2Query setOpeningBal4NotEqualTo(Integer value) { this.OpeningBal4NotEqualTo = value; return this; } public ArrayList getOpeningBal4Between() { return OpeningBal4Between; } public DB_Main2Query setOpeningBal4Between(ArrayList value) { this.OpeningBal4Between = value; return this; } public ArrayList getOpeningBal4In() { return OpeningBal4In; } public DB_Main2Query setOpeningBal4In(ArrayList value) { this.OpeningBal4In = value; return this; } public Integer getOpeningBal5() { return OpeningBal5; } public DB_Main2Query setOpeningBal5(Integer value) { this.OpeningBal5 = value; return this; } public Integer getOpeningBal5GreaterThanOrEqualTo() { return OpeningBal5GreaterThanOrEqualTo; } public DB_Main2Query setOpeningBal5GreaterThanOrEqualTo(Integer value) { this.OpeningBal5GreaterThanOrEqualTo = value; return this; } public Integer getOpeningBal5GreaterThan() { return OpeningBal5GreaterThan; } public DB_Main2Query setOpeningBal5GreaterThan(Integer value) { this.OpeningBal5GreaterThan = value; return this; } public Integer getOpeningBal5LessThan() { return OpeningBal5LessThan; } public DB_Main2Query setOpeningBal5LessThan(Integer value) { this.OpeningBal5LessThan = value; return this; } public Integer getOpeningBal5LessThanOrEqualTo() { return OpeningBal5LessThanOrEqualTo; } public DB_Main2Query setOpeningBal5LessThanOrEqualTo(Integer value) { this.OpeningBal5LessThanOrEqualTo = value; return this; } public Integer getOpeningBal5NotEqualTo() { return OpeningBal5NotEqualTo; } public DB_Main2Query setOpeningBal5NotEqualTo(Integer value) { this.OpeningBal5NotEqualTo = value; return this; } public ArrayList getOpeningBal5Between() { return OpeningBal5Between; } public DB_Main2Query setOpeningBal5Between(ArrayList value) { this.OpeningBal5Between = value; return this; } public ArrayList getOpeningBal5In() { return OpeningBal5In; } public DB_Main2Query setOpeningBal5In(ArrayList value) { this.OpeningBal5In = value; return this; } public Integer getOpeningBal6() { return OpeningBal6; } public DB_Main2Query setOpeningBal6(Integer value) { this.OpeningBal6 = value; return this; } public Integer getOpeningBal6GreaterThanOrEqualTo() { return OpeningBal6GreaterThanOrEqualTo; } public DB_Main2Query setOpeningBal6GreaterThanOrEqualTo(Integer value) { this.OpeningBal6GreaterThanOrEqualTo = value; return this; } public Integer getOpeningBal6GreaterThan() { return OpeningBal6GreaterThan; } public DB_Main2Query setOpeningBal6GreaterThan(Integer value) { this.OpeningBal6GreaterThan = value; return this; } public Integer getOpeningBal6LessThan() { return OpeningBal6LessThan; } public DB_Main2Query setOpeningBal6LessThan(Integer value) { this.OpeningBal6LessThan = value; return this; } public Integer getOpeningBal6LessThanOrEqualTo() { return OpeningBal6LessThanOrEqualTo; } public DB_Main2Query setOpeningBal6LessThanOrEqualTo(Integer value) { this.OpeningBal6LessThanOrEqualTo = value; return this; } public Integer getOpeningBal6NotEqualTo() { return OpeningBal6NotEqualTo; } public DB_Main2Query setOpeningBal6NotEqualTo(Integer value) { this.OpeningBal6NotEqualTo = value; return this; } public ArrayList getOpeningBal6Between() { return OpeningBal6Between; } public DB_Main2Query setOpeningBal6Between(ArrayList value) { this.OpeningBal6Between = value; return this; } public ArrayList getOpeningBal6In() { return OpeningBal6In; } public DB_Main2Query setOpeningBal6In(ArrayList value) { this.OpeningBal6In = value; return this; } public Integer getOpeningBal7() { return OpeningBal7; } public DB_Main2Query setOpeningBal7(Integer value) { this.OpeningBal7 = value; return this; } public Integer getOpeningBal7GreaterThanOrEqualTo() { return OpeningBal7GreaterThanOrEqualTo; } public DB_Main2Query setOpeningBal7GreaterThanOrEqualTo(Integer value) { this.OpeningBal7GreaterThanOrEqualTo = value; return this; } public Integer getOpeningBal7GreaterThan() { return OpeningBal7GreaterThan; } public DB_Main2Query setOpeningBal7GreaterThan(Integer value) { this.OpeningBal7GreaterThan = value; return this; } public Integer getOpeningBal7LessThan() { return OpeningBal7LessThan; } public DB_Main2Query setOpeningBal7LessThan(Integer value) { this.OpeningBal7LessThan = value; return this; } public Integer getOpeningBal7LessThanOrEqualTo() { return OpeningBal7LessThanOrEqualTo; } public DB_Main2Query setOpeningBal7LessThanOrEqualTo(Integer value) { this.OpeningBal7LessThanOrEqualTo = value; return this; } public Integer getOpeningBal7NotEqualTo() { return OpeningBal7NotEqualTo; } public DB_Main2Query setOpeningBal7NotEqualTo(Integer value) { this.OpeningBal7NotEqualTo = value; return this; } public ArrayList getOpeningBal7Between() { return OpeningBal7Between; } public DB_Main2Query setOpeningBal7Between(ArrayList value) { this.OpeningBal7Between = value; return this; } public ArrayList getOpeningBal7In() { return OpeningBal7In; } public DB_Main2Query setOpeningBal7In(ArrayList value) { this.OpeningBal7In = value; return this; } public Integer getOpeningBal8() { return OpeningBal8; } public DB_Main2Query setOpeningBal8(Integer value) { this.OpeningBal8 = value; return this; } public Integer getOpeningBal8GreaterThanOrEqualTo() { return OpeningBal8GreaterThanOrEqualTo; } public DB_Main2Query setOpeningBal8GreaterThanOrEqualTo(Integer value) { this.OpeningBal8GreaterThanOrEqualTo = value; return this; } public Integer getOpeningBal8GreaterThan() { return OpeningBal8GreaterThan; } public DB_Main2Query setOpeningBal8GreaterThan(Integer value) { this.OpeningBal8GreaterThan = value; return this; } public Integer getOpeningBal8LessThan() { return OpeningBal8LessThan; } public DB_Main2Query setOpeningBal8LessThan(Integer value) { this.OpeningBal8LessThan = value; return this; } public Integer getOpeningBal8LessThanOrEqualTo() { return OpeningBal8LessThanOrEqualTo; } public DB_Main2Query setOpeningBal8LessThanOrEqualTo(Integer value) { this.OpeningBal8LessThanOrEqualTo = value; return this; } public Integer getOpeningBal8NotEqualTo() { return OpeningBal8NotEqualTo; } public DB_Main2Query setOpeningBal8NotEqualTo(Integer value) { this.OpeningBal8NotEqualTo = value; return this; } public ArrayList getOpeningBal8Between() { return OpeningBal8Between; } public DB_Main2Query setOpeningBal8Between(ArrayList value) { this.OpeningBal8Between = value; return this; } public ArrayList getOpeningBal8In() { return OpeningBal8In; } public DB_Main2Query setOpeningBal8In(ArrayList value) { this.OpeningBal8In = value; return this; } public Integer getOpeningBal9() { return OpeningBal9; } public DB_Main2Query setOpeningBal9(Integer value) { this.OpeningBal9 = value; return this; } public Integer getOpeningBal9GreaterThanOrEqualTo() { return OpeningBal9GreaterThanOrEqualTo; } public DB_Main2Query setOpeningBal9GreaterThanOrEqualTo(Integer value) { this.OpeningBal9GreaterThanOrEqualTo = value; return this; } public Integer getOpeningBal9GreaterThan() { return OpeningBal9GreaterThan; } public DB_Main2Query setOpeningBal9GreaterThan(Integer value) { this.OpeningBal9GreaterThan = value; return this; } public Integer getOpeningBal9LessThan() { return OpeningBal9LessThan; } public DB_Main2Query setOpeningBal9LessThan(Integer value) { this.OpeningBal9LessThan = value; return this; } public Integer getOpeningBal9LessThanOrEqualTo() { return OpeningBal9LessThanOrEqualTo; } public DB_Main2Query setOpeningBal9LessThanOrEqualTo(Integer value) { this.OpeningBal9LessThanOrEqualTo = value; return this; } public Integer getOpeningBal9NotEqualTo() { return OpeningBal9NotEqualTo; } public DB_Main2Query setOpeningBal9NotEqualTo(Integer value) { this.OpeningBal9NotEqualTo = value; return this; } public ArrayList getOpeningBal9Between() { return OpeningBal9Between; } public DB_Main2Query setOpeningBal9Between(ArrayList value) { this.OpeningBal9Between = value; return this; } public ArrayList getOpeningBal9In() { return OpeningBal9In; } public DB_Main2Query setOpeningBal9In(ArrayList value) { this.OpeningBal9In = value; return this; } public Integer getOpeningBal10() { return OpeningBal10; } public DB_Main2Query setOpeningBal10(Integer value) { this.OpeningBal10 = value; return this; } public Integer getOpeningBal10GreaterThanOrEqualTo() { return OpeningBal10GreaterThanOrEqualTo; } public DB_Main2Query setOpeningBal10GreaterThanOrEqualTo(Integer value) { this.OpeningBal10GreaterThanOrEqualTo = value; return this; } public Integer getOpeningBal10GreaterThan() { return OpeningBal10GreaterThan; } public DB_Main2Query setOpeningBal10GreaterThan(Integer value) { this.OpeningBal10GreaterThan = value; return this; } public Integer getOpeningBal10LessThan() { return OpeningBal10LessThan; } public DB_Main2Query setOpeningBal10LessThan(Integer value) { this.OpeningBal10LessThan = value; return this; } public Integer getOpeningBal10LessThanOrEqualTo() { return OpeningBal10LessThanOrEqualTo; } public DB_Main2Query setOpeningBal10LessThanOrEqualTo(Integer value) { this.OpeningBal10LessThanOrEqualTo = value; return this; } public Integer getOpeningBal10NotEqualTo() { return OpeningBal10NotEqualTo; } public DB_Main2Query setOpeningBal10NotEqualTo(Integer value) { this.OpeningBal10NotEqualTo = value; return this; } public ArrayList getOpeningBal10Between() { return OpeningBal10Between; } public DB_Main2Query setOpeningBal10Between(ArrayList value) { this.OpeningBal10Between = value; return this; } public ArrayList getOpeningBal10In() { return OpeningBal10In; } public DB_Main2Query setOpeningBal10In(ArrayList value) { this.OpeningBal10In = value; return this; } public Integer getOpeningBal11() { return OpeningBal11; } public DB_Main2Query setOpeningBal11(Integer value) { this.OpeningBal11 = value; return this; } public Integer getOpeningBal11GreaterThanOrEqualTo() { return OpeningBal11GreaterThanOrEqualTo; } public DB_Main2Query setOpeningBal11GreaterThanOrEqualTo(Integer value) { this.OpeningBal11GreaterThanOrEqualTo = value; return this; } public Integer getOpeningBal11GreaterThan() { return OpeningBal11GreaterThan; } public DB_Main2Query setOpeningBal11GreaterThan(Integer value) { this.OpeningBal11GreaterThan = value; return this; } public Integer getOpeningBal11LessThan() { return OpeningBal11LessThan; } public DB_Main2Query setOpeningBal11LessThan(Integer value) { this.OpeningBal11LessThan = value; return this; } public Integer getOpeningBal11LessThanOrEqualTo() { return OpeningBal11LessThanOrEqualTo; } public DB_Main2Query setOpeningBal11LessThanOrEqualTo(Integer value) { this.OpeningBal11LessThanOrEqualTo = value; return this; } public Integer getOpeningBal11NotEqualTo() { return OpeningBal11NotEqualTo; } public DB_Main2Query setOpeningBal11NotEqualTo(Integer value) { this.OpeningBal11NotEqualTo = value; return this; } public ArrayList getOpeningBal11Between() { return OpeningBal11Between; } public DB_Main2Query setOpeningBal11Between(ArrayList value) { this.OpeningBal11Between = value; return this; } public ArrayList getOpeningBal11In() { return OpeningBal11In; } public DB_Main2Query setOpeningBal11In(ArrayList value) { this.OpeningBal11In = value; return this; } public Integer getOpeningBal12() { return OpeningBal12; } public DB_Main2Query setOpeningBal12(Integer value) { this.OpeningBal12 = value; return this; } public Integer getOpeningBal12GreaterThanOrEqualTo() { return OpeningBal12GreaterThanOrEqualTo; } public DB_Main2Query setOpeningBal12GreaterThanOrEqualTo(Integer value) { this.OpeningBal12GreaterThanOrEqualTo = value; return this; } public Integer getOpeningBal12GreaterThan() { return OpeningBal12GreaterThan; } public DB_Main2Query setOpeningBal12GreaterThan(Integer value) { this.OpeningBal12GreaterThan = value; return this; } public Integer getOpeningBal12LessThan() { return OpeningBal12LessThan; } public DB_Main2Query setOpeningBal12LessThan(Integer value) { this.OpeningBal12LessThan = value; return this; } public Integer getOpeningBal12LessThanOrEqualTo() { return OpeningBal12LessThanOrEqualTo; } public DB_Main2Query setOpeningBal12LessThanOrEqualTo(Integer value) { this.OpeningBal12LessThanOrEqualTo = value; return this; } public Integer getOpeningBal12NotEqualTo() { return OpeningBal12NotEqualTo; } public DB_Main2Query setOpeningBal12NotEqualTo(Integer value) { this.OpeningBal12NotEqualTo = value; return this; } public ArrayList getOpeningBal12Between() { return OpeningBal12Between; } public DB_Main2Query setOpeningBal12Between(ArrayList value) { this.OpeningBal12Between = value; return this; } public ArrayList getOpeningBal12In() { return OpeningBal12In; } public DB_Main2Query setOpeningBal12In(ArrayList value) { this.OpeningBal12In = value; return this; } public Integer getOpeningBal13() { return OpeningBal13; } public DB_Main2Query setOpeningBal13(Integer value) { this.OpeningBal13 = value; return this; } public Integer getOpeningBal13GreaterThanOrEqualTo() { return OpeningBal13GreaterThanOrEqualTo; } public DB_Main2Query setOpeningBal13GreaterThanOrEqualTo(Integer value) { this.OpeningBal13GreaterThanOrEqualTo = value; return this; } public Integer getOpeningBal13GreaterThan() { return OpeningBal13GreaterThan; } public DB_Main2Query setOpeningBal13GreaterThan(Integer value) { this.OpeningBal13GreaterThan = value; return this; } public Integer getOpeningBal13LessThan() { return OpeningBal13LessThan; } public DB_Main2Query setOpeningBal13LessThan(Integer value) { this.OpeningBal13LessThan = value; return this; } public Integer getOpeningBal13LessThanOrEqualTo() { return OpeningBal13LessThanOrEqualTo; } public DB_Main2Query setOpeningBal13LessThanOrEqualTo(Integer value) { this.OpeningBal13LessThanOrEqualTo = value; return this; } public Integer getOpeningBal13NotEqualTo() { return OpeningBal13NotEqualTo; } public DB_Main2Query setOpeningBal13NotEqualTo(Integer value) { this.OpeningBal13NotEqualTo = value; return this; } public ArrayList getOpeningBal13Between() { return OpeningBal13Between; } public DB_Main2Query setOpeningBal13Between(ArrayList value) { this.OpeningBal13Between = value; return this; } public ArrayList getOpeningBal13In() { return OpeningBal13In; } public DB_Main2Query setOpeningBal13In(ArrayList value) { this.OpeningBal13In = value; return this; } public Integer getOpeningBal14() { return OpeningBal14; } public DB_Main2Query setOpeningBal14(Integer value) { this.OpeningBal14 = value; return this; } public Integer getOpeningBal14GreaterThanOrEqualTo() { return OpeningBal14GreaterThanOrEqualTo; } public DB_Main2Query setOpeningBal14GreaterThanOrEqualTo(Integer value) { this.OpeningBal14GreaterThanOrEqualTo = value; return this; } public Integer getOpeningBal14GreaterThan() { return OpeningBal14GreaterThan; } public DB_Main2Query setOpeningBal14GreaterThan(Integer value) { this.OpeningBal14GreaterThan = value; return this; } public Integer getOpeningBal14LessThan() { return OpeningBal14LessThan; } public DB_Main2Query setOpeningBal14LessThan(Integer value) { this.OpeningBal14LessThan = value; return this; } public Integer getOpeningBal14LessThanOrEqualTo() { return OpeningBal14LessThanOrEqualTo; } public DB_Main2Query setOpeningBal14LessThanOrEqualTo(Integer value) { this.OpeningBal14LessThanOrEqualTo = value; return this; } public Integer getOpeningBal14NotEqualTo() { return OpeningBal14NotEqualTo; } public DB_Main2Query setOpeningBal14NotEqualTo(Integer value) { this.OpeningBal14NotEqualTo = value; return this; } public ArrayList getOpeningBal14Between() { return OpeningBal14Between; } public DB_Main2Query setOpeningBal14Between(ArrayList value) { this.OpeningBal14Between = value; return this; } public ArrayList getOpeningBal14In() { return OpeningBal14In; } public DB_Main2Query setOpeningBal14In(ArrayList value) { this.OpeningBal14In = value; return this; } public Integer getOpeningBal15() { return OpeningBal15; } public DB_Main2Query setOpeningBal15(Integer value) { this.OpeningBal15 = value; return this; } public Integer getOpeningBal15GreaterThanOrEqualTo() { return OpeningBal15GreaterThanOrEqualTo; } public DB_Main2Query setOpeningBal15GreaterThanOrEqualTo(Integer value) { this.OpeningBal15GreaterThanOrEqualTo = value; return this; } public Integer getOpeningBal15GreaterThan() { return OpeningBal15GreaterThan; } public DB_Main2Query setOpeningBal15GreaterThan(Integer value) { this.OpeningBal15GreaterThan = value; return this; } public Integer getOpeningBal15LessThan() { return OpeningBal15LessThan; } public DB_Main2Query setOpeningBal15LessThan(Integer value) { this.OpeningBal15LessThan = value; return this; } public Integer getOpeningBal15LessThanOrEqualTo() { return OpeningBal15LessThanOrEqualTo; } public DB_Main2Query setOpeningBal15LessThanOrEqualTo(Integer value) { this.OpeningBal15LessThanOrEqualTo = value; return this; } public Integer getOpeningBal15NotEqualTo() { return OpeningBal15NotEqualTo; } public DB_Main2Query setOpeningBal15NotEqualTo(Integer value) { this.OpeningBal15NotEqualTo = value; return this; } public ArrayList getOpeningBal15Between() { return OpeningBal15Between; } public DB_Main2Query setOpeningBal15Between(ArrayList value) { this.OpeningBal15Between = value; return this; } public ArrayList getOpeningBal15In() { return OpeningBal15In; } public DB_Main2Query setOpeningBal15In(ArrayList value) { this.OpeningBal15In = value; return this; } public Integer getOpeningBal16() { return OpeningBal16; } public DB_Main2Query setOpeningBal16(Integer value) { this.OpeningBal16 = value; return this; } public Integer getOpeningBal16GreaterThanOrEqualTo() { return OpeningBal16GreaterThanOrEqualTo; } public DB_Main2Query setOpeningBal16GreaterThanOrEqualTo(Integer value) { this.OpeningBal16GreaterThanOrEqualTo = value; return this; } public Integer getOpeningBal16GreaterThan() { return OpeningBal16GreaterThan; } public DB_Main2Query setOpeningBal16GreaterThan(Integer value) { this.OpeningBal16GreaterThan = value; return this; } public Integer getOpeningBal16LessThan() { return OpeningBal16LessThan; } public DB_Main2Query setOpeningBal16LessThan(Integer value) { this.OpeningBal16LessThan = value; return this; } public Integer getOpeningBal16LessThanOrEqualTo() { return OpeningBal16LessThanOrEqualTo; } public DB_Main2Query setOpeningBal16LessThanOrEqualTo(Integer value) { this.OpeningBal16LessThanOrEqualTo = value; return this; } public Integer getOpeningBal16NotEqualTo() { return OpeningBal16NotEqualTo; } public DB_Main2Query setOpeningBal16NotEqualTo(Integer value) { this.OpeningBal16NotEqualTo = value; return this; } public ArrayList getOpeningBal16Between() { return OpeningBal16Between; } public DB_Main2Query setOpeningBal16Between(ArrayList value) { this.OpeningBal16Between = value; return this; } public ArrayList getOpeningBal16In() { return OpeningBal16In; } public DB_Main2Query setOpeningBal16In(ArrayList value) { this.OpeningBal16In = value; return this; } public Integer getOpeningBal17() { return OpeningBal17; } public DB_Main2Query setOpeningBal17(Integer value) { this.OpeningBal17 = value; return this; } public Integer getOpeningBal17GreaterThanOrEqualTo() { return OpeningBal17GreaterThanOrEqualTo; } public DB_Main2Query setOpeningBal17GreaterThanOrEqualTo(Integer value) { this.OpeningBal17GreaterThanOrEqualTo = value; return this; } public Integer getOpeningBal17GreaterThan() { return OpeningBal17GreaterThan; } public DB_Main2Query setOpeningBal17GreaterThan(Integer value) { this.OpeningBal17GreaterThan = value; return this; } public Integer getOpeningBal17LessThan() { return OpeningBal17LessThan; } public DB_Main2Query setOpeningBal17LessThan(Integer value) { this.OpeningBal17LessThan = value; return this; } public Integer getOpeningBal17LessThanOrEqualTo() { return OpeningBal17LessThanOrEqualTo; } public DB_Main2Query setOpeningBal17LessThanOrEqualTo(Integer value) { this.OpeningBal17LessThanOrEqualTo = value; return this; } public Integer getOpeningBal17NotEqualTo() { return OpeningBal17NotEqualTo; } public DB_Main2Query setOpeningBal17NotEqualTo(Integer value) { this.OpeningBal17NotEqualTo = value; return this; } public ArrayList getOpeningBal17Between() { return OpeningBal17Between; } public DB_Main2Query setOpeningBal17Between(ArrayList value) { this.OpeningBal17Between = value; return this; } public ArrayList getOpeningBal17In() { return OpeningBal17In; } public DB_Main2Query setOpeningBal17In(ArrayList value) { this.OpeningBal17In = value; return this; } public Integer getOpeningBal18() { return OpeningBal18; } public DB_Main2Query setOpeningBal18(Integer value) { this.OpeningBal18 = value; return this; } public Integer getOpeningBal18GreaterThanOrEqualTo() { return OpeningBal18GreaterThanOrEqualTo; } public DB_Main2Query setOpeningBal18GreaterThanOrEqualTo(Integer value) { this.OpeningBal18GreaterThanOrEqualTo = value; return this; } public Integer getOpeningBal18GreaterThan() { return OpeningBal18GreaterThan; } public DB_Main2Query setOpeningBal18GreaterThan(Integer value) { this.OpeningBal18GreaterThan = value; return this; } public Integer getOpeningBal18LessThan() { return OpeningBal18LessThan; } public DB_Main2Query setOpeningBal18LessThan(Integer value) { this.OpeningBal18LessThan = value; return this; } public Integer getOpeningBal18LessThanOrEqualTo() { return OpeningBal18LessThanOrEqualTo; } public DB_Main2Query setOpeningBal18LessThanOrEqualTo(Integer value) { this.OpeningBal18LessThanOrEqualTo = value; return this; } public Integer getOpeningBal18NotEqualTo() { return OpeningBal18NotEqualTo; } public DB_Main2Query setOpeningBal18NotEqualTo(Integer value) { this.OpeningBal18NotEqualTo = value; return this; } public ArrayList getOpeningBal18Between() { return OpeningBal18Between; } public DB_Main2Query setOpeningBal18Between(ArrayList value) { this.OpeningBal18Between = value; return this; } public ArrayList getOpeningBal18In() { return OpeningBal18In; } public DB_Main2Query setOpeningBal18In(ArrayList value) { this.OpeningBal18In = value; return this; } public Integer getOpeningBal19() { return OpeningBal19; } public DB_Main2Query setOpeningBal19(Integer value) { this.OpeningBal19 = value; return this; } public Integer getOpeningBal19GreaterThanOrEqualTo() { return OpeningBal19GreaterThanOrEqualTo; } public DB_Main2Query setOpeningBal19GreaterThanOrEqualTo(Integer value) { this.OpeningBal19GreaterThanOrEqualTo = value; return this; } public Integer getOpeningBal19GreaterThan() { return OpeningBal19GreaterThan; } public DB_Main2Query setOpeningBal19GreaterThan(Integer value) { this.OpeningBal19GreaterThan = value; return this; } public Integer getOpeningBal19LessThan() { return OpeningBal19LessThan; } public DB_Main2Query setOpeningBal19LessThan(Integer value) { this.OpeningBal19LessThan = value; return this; } public Integer getOpeningBal19LessThanOrEqualTo() { return OpeningBal19LessThanOrEqualTo; } public DB_Main2Query setOpeningBal19LessThanOrEqualTo(Integer value) { this.OpeningBal19LessThanOrEqualTo = value; return this; } public Integer getOpeningBal19NotEqualTo() { return OpeningBal19NotEqualTo; } public DB_Main2Query setOpeningBal19NotEqualTo(Integer value) { this.OpeningBal19NotEqualTo = value; return this; } public ArrayList getOpeningBal19Between() { return OpeningBal19Between; } public DB_Main2Query setOpeningBal19Between(ArrayList value) { this.OpeningBal19Between = value; return this; } public ArrayList getOpeningBal19In() { return OpeningBal19In; } public DB_Main2Query setOpeningBal19In(ArrayList value) { this.OpeningBal19In = value; return this; } public Integer getOpeningBal20() { return OpeningBal20; } public DB_Main2Query setOpeningBal20(Integer value) { this.OpeningBal20 = value; return this; } public Integer getOpeningBal20GreaterThanOrEqualTo() { return OpeningBal20GreaterThanOrEqualTo; } public DB_Main2Query setOpeningBal20GreaterThanOrEqualTo(Integer value) { this.OpeningBal20GreaterThanOrEqualTo = value; return this; } public Integer getOpeningBal20GreaterThan() { return OpeningBal20GreaterThan; } public DB_Main2Query setOpeningBal20GreaterThan(Integer value) { this.OpeningBal20GreaterThan = value; return this; } public Integer getOpeningBal20LessThan() { return OpeningBal20LessThan; } public DB_Main2Query setOpeningBal20LessThan(Integer value) { this.OpeningBal20LessThan = value; return this; } public Integer getOpeningBal20LessThanOrEqualTo() { return OpeningBal20LessThanOrEqualTo; } public DB_Main2Query setOpeningBal20LessThanOrEqualTo(Integer value) { this.OpeningBal20LessThanOrEqualTo = value; return this; } public Integer getOpeningBal20NotEqualTo() { return OpeningBal20NotEqualTo; } public DB_Main2Query setOpeningBal20NotEqualTo(Integer value) { this.OpeningBal20NotEqualTo = value; return this; } public ArrayList getOpeningBal20Between() { return OpeningBal20Between; } public DB_Main2Query setOpeningBal20Between(ArrayList value) { this.OpeningBal20Between = value; return this; } public ArrayList getOpeningBal20In() { return OpeningBal20In; } public DB_Main2Query setOpeningBal20In(ArrayList value) { this.OpeningBal20In = value; return this; } public Integer getOpeningBal21() { return OpeningBal21; } public DB_Main2Query setOpeningBal21(Integer value) { this.OpeningBal21 = value; return this; } public Integer getOpeningBal21GreaterThanOrEqualTo() { return OpeningBal21GreaterThanOrEqualTo; } public DB_Main2Query setOpeningBal21GreaterThanOrEqualTo(Integer value) { this.OpeningBal21GreaterThanOrEqualTo = value; return this; } public Integer getOpeningBal21GreaterThan() { return OpeningBal21GreaterThan; } public DB_Main2Query setOpeningBal21GreaterThan(Integer value) { this.OpeningBal21GreaterThan = value; return this; } public Integer getOpeningBal21LessThan() { return OpeningBal21LessThan; } public DB_Main2Query setOpeningBal21LessThan(Integer value) { this.OpeningBal21LessThan = value; return this; } public Integer getOpeningBal21LessThanOrEqualTo() { return OpeningBal21LessThanOrEqualTo; } public DB_Main2Query setOpeningBal21LessThanOrEqualTo(Integer value) { this.OpeningBal21LessThanOrEqualTo = value; return this; } public Integer getOpeningBal21NotEqualTo() { return OpeningBal21NotEqualTo; } public DB_Main2Query setOpeningBal21NotEqualTo(Integer value) { this.OpeningBal21NotEqualTo = value; return this; } public ArrayList getOpeningBal21Between() { return OpeningBal21Between; } public DB_Main2Query setOpeningBal21Between(ArrayList value) { this.OpeningBal21Between = value; return this; } public ArrayList getOpeningBal21In() { return OpeningBal21In; } public DB_Main2Query setOpeningBal21In(ArrayList value) { this.OpeningBal21In = value; return this; } public Integer getOpeningBal22() { return OpeningBal22; } public DB_Main2Query setOpeningBal22(Integer value) { this.OpeningBal22 = value; return this; } public Integer getOpeningBal22GreaterThanOrEqualTo() { return OpeningBal22GreaterThanOrEqualTo; } public DB_Main2Query setOpeningBal22GreaterThanOrEqualTo(Integer value) { this.OpeningBal22GreaterThanOrEqualTo = value; return this; } public Integer getOpeningBal22GreaterThan() { return OpeningBal22GreaterThan; } public DB_Main2Query setOpeningBal22GreaterThan(Integer value) { this.OpeningBal22GreaterThan = value; return this; } public Integer getOpeningBal22LessThan() { return OpeningBal22LessThan; } public DB_Main2Query setOpeningBal22LessThan(Integer value) { this.OpeningBal22LessThan = value; return this; } public Integer getOpeningBal22LessThanOrEqualTo() { return OpeningBal22LessThanOrEqualTo; } public DB_Main2Query setOpeningBal22LessThanOrEqualTo(Integer value) { this.OpeningBal22LessThanOrEqualTo = value; return this; } public Integer getOpeningBal22NotEqualTo() { return OpeningBal22NotEqualTo; } public DB_Main2Query setOpeningBal22NotEqualTo(Integer value) { this.OpeningBal22NotEqualTo = value; return this; } public ArrayList getOpeningBal22Between() { return OpeningBal22Between; } public DB_Main2Query setOpeningBal22Between(ArrayList value) { this.OpeningBal22Between = value; return this; } public ArrayList getOpeningBal22In() { return OpeningBal22In; } public DB_Main2Query setOpeningBal22In(ArrayList value) { this.OpeningBal22In = value; return this; } public Integer getOpeningBal23() { return OpeningBal23; } public DB_Main2Query setOpeningBal23(Integer value) { this.OpeningBal23 = value; return this; } public Integer getOpeningBal23GreaterThanOrEqualTo() { return OpeningBal23GreaterThanOrEqualTo; } public DB_Main2Query setOpeningBal23GreaterThanOrEqualTo(Integer value) { this.OpeningBal23GreaterThanOrEqualTo = value; return this; } public Integer getOpeningBal23GreaterThan() { return OpeningBal23GreaterThan; } public DB_Main2Query setOpeningBal23GreaterThan(Integer value) { this.OpeningBal23GreaterThan = value; return this; } public Integer getOpeningBal23LessThan() { return OpeningBal23LessThan; } public DB_Main2Query setOpeningBal23LessThan(Integer value) { this.OpeningBal23LessThan = value; return this; } public Integer getOpeningBal23LessThanOrEqualTo() { return OpeningBal23LessThanOrEqualTo; } public DB_Main2Query setOpeningBal23LessThanOrEqualTo(Integer value) { this.OpeningBal23LessThanOrEqualTo = value; return this; } public Integer getOpeningBal23NotEqualTo() { return OpeningBal23NotEqualTo; } public DB_Main2Query setOpeningBal23NotEqualTo(Integer value) { this.OpeningBal23NotEqualTo = value; return this; } public ArrayList getOpeningBal23Between() { return OpeningBal23Between; } public DB_Main2Query setOpeningBal23Between(ArrayList value) { this.OpeningBal23Between = value; return this; } public ArrayList getOpeningBal23In() { return OpeningBal23In; } public DB_Main2Query setOpeningBal23In(ArrayList value) { this.OpeningBal23In = value; return this; } public Integer getOpeningBal24() { return OpeningBal24; } public DB_Main2Query setOpeningBal24(Integer value) { this.OpeningBal24 = value; return this; } public Integer getOpeningBal24GreaterThanOrEqualTo() { return OpeningBal24GreaterThanOrEqualTo; } public DB_Main2Query setOpeningBal24GreaterThanOrEqualTo(Integer value) { this.OpeningBal24GreaterThanOrEqualTo = value; return this; } public Integer getOpeningBal24GreaterThan() { return OpeningBal24GreaterThan; } public DB_Main2Query setOpeningBal24GreaterThan(Integer value) { this.OpeningBal24GreaterThan = value; return this; } public Integer getOpeningBal24LessThan() { return OpeningBal24LessThan; } public DB_Main2Query setOpeningBal24LessThan(Integer value) { this.OpeningBal24LessThan = value; return this; } public Integer getOpeningBal24LessThanOrEqualTo() { return OpeningBal24LessThanOrEqualTo; } public DB_Main2Query setOpeningBal24LessThanOrEqualTo(Integer value) { this.OpeningBal24LessThanOrEqualTo = value; return this; } public Integer getOpeningBal24NotEqualTo() { return OpeningBal24NotEqualTo; } public DB_Main2Query setOpeningBal24NotEqualTo(Integer value) { this.OpeningBal24NotEqualTo = value; return this; } public ArrayList getOpeningBal24Between() { return OpeningBal24Between; } public DB_Main2Query setOpeningBal24Between(ArrayList value) { this.OpeningBal24Between = value; return this; } public ArrayList getOpeningBal24In() { return OpeningBal24In; } public DB_Main2Query setOpeningBal24In(ArrayList value) { this.OpeningBal24In = value; return this; } public Integer getOpeningBal25() { return OpeningBal25; } public DB_Main2Query setOpeningBal25(Integer value) { this.OpeningBal25 = value; return this; } public Integer getOpeningBal25GreaterThanOrEqualTo() { return OpeningBal25GreaterThanOrEqualTo; } public DB_Main2Query setOpeningBal25GreaterThanOrEqualTo(Integer value) { this.OpeningBal25GreaterThanOrEqualTo = value; return this; } public Integer getOpeningBal25GreaterThan() { return OpeningBal25GreaterThan; } public DB_Main2Query setOpeningBal25GreaterThan(Integer value) { this.OpeningBal25GreaterThan = value; return this; } public Integer getOpeningBal25LessThan() { return OpeningBal25LessThan; } public DB_Main2Query setOpeningBal25LessThan(Integer value) { this.OpeningBal25LessThan = value; return this; } public Integer getOpeningBal25LessThanOrEqualTo() { return OpeningBal25LessThanOrEqualTo; } public DB_Main2Query setOpeningBal25LessThanOrEqualTo(Integer value) { this.OpeningBal25LessThanOrEqualTo = value; return this; } public Integer getOpeningBal25NotEqualTo() { return OpeningBal25NotEqualTo; } public DB_Main2Query setOpeningBal25NotEqualTo(Integer value) { this.OpeningBal25NotEqualTo = value; return this; } public ArrayList getOpeningBal25Between() { return OpeningBal25Between; } public DB_Main2Query setOpeningBal25Between(ArrayList value) { this.OpeningBal25Between = value; return this; } public ArrayList getOpeningBal25In() { return OpeningBal25In; } public DB_Main2Query setOpeningBal25In(ArrayList value) { this.OpeningBal25In = value; return this; } public Integer getOpeningBal26() { return OpeningBal26; } public DB_Main2Query setOpeningBal26(Integer value) { this.OpeningBal26 = value; return this; } public Integer getOpeningBal26GreaterThanOrEqualTo() { return OpeningBal26GreaterThanOrEqualTo; } public DB_Main2Query setOpeningBal26GreaterThanOrEqualTo(Integer value) { this.OpeningBal26GreaterThanOrEqualTo = value; return this; } public Integer getOpeningBal26GreaterThan() { return OpeningBal26GreaterThan; } public DB_Main2Query setOpeningBal26GreaterThan(Integer value) { this.OpeningBal26GreaterThan = value; return this; } public Integer getOpeningBal26LessThan() { return OpeningBal26LessThan; } public DB_Main2Query setOpeningBal26LessThan(Integer value) { this.OpeningBal26LessThan = value; return this; } public Integer getOpeningBal26LessThanOrEqualTo() { return OpeningBal26LessThanOrEqualTo; } public DB_Main2Query setOpeningBal26LessThanOrEqualTo(Integer value) { this.OpeningBal26LessThanOrEqualTo = value; return this; } public Integer getOpeningBal26NotEqualTo() { return OpeningBal26NotEqualTo; } public DB_Main2Query setOpeningBal26NotEqualTo(Integer value) { this.OpeningBal26NotEqualTo = value; return this; } public ArrayList getOpeningBal26Between() { return OpeningBal26Between; } public DB_Main2Query setOpeningBal26Between(ArrayList value) { this.OpeningBal26Between = value; return this; } public ArrayList getOpeningBal26In() { return OpeningBal26In; } public DB_Main2Query setOpeningBal26In(ArrayList value) { this.OpeningBal26In = value; return this; } public Integer getOpeningBal27() { return OpeningBal27; } public DB_Main2Query setOpeningBal27(Integer value) { this.OpeningBal27 = value; return this; } public Integer getOpeningBal27GreaterThanOrEqualTo() { return OpeningBal27GreaterThanOrEqualTo; } public DB_Main2Query setOpeningBal27GreaterThanOrEqualTo(Integer value) { this.OpeningBal27GreaterThanOrEqualTo = value; return this; } public Integer getOpeningBal27GreaterThan() { return OpeningBal27GreaterThan; } public DB_Main2Query setOpeningBal27GreaterThan(Integer value) { this.OpeningBal27GreaterThan = value; return this; } public Integer getOpeningBal27LessThan() { return OpeningBal27LessThan; } public DB_Main2Query setOpeningBal27LessThan(Integer value) { this.OpeningBal27LessThan = value; return this; } public Integer getOpeningBal27LessThanOrEqualTo() { return OpeningBal27LessThanOrEqualTo; } public DB_Main2Query setOpeningBal27LessThanOrEqualTo(Integer value) { this.OpeningBal27LessThanOrEqualTo = value; return this; } public Integer getOpeningBal27NotEqualTo() { return OpeningBal27NotEqualTo; } public DB_Main2Query setOpeningBal27NotEqualTo(Integer value) { this.OpeningBal27NotEqualTo = value; return this; } public ArrayList getOpeningBal27Between() { return OpeningBal27Between; } public DB_Main2Query setOpeningBal27Between(ArrayList value) { this.OpeningBal27Between = value; return this; } public ArrayList getOpeningBal27In() { return OpeningBal27In; } public DB_Main2Query setOpeningBal27In(ArrayList value) { this.OpeningBal27In = value; return this; } public Integer getOpeningBal28() { return OpeningBal28; } public DB_Main2Query setOpeningBal28(Integer value) { this.OpeningBal28 = value; return this; } public Integer getOpeningBal28GreaterThanOrEqualTo() { return OpeningBal28GreaterThanOrEqualTo; } public DB_Main2Query setOpeningBal28GreaterThanOrEqualTo(Integer value) { this.OpeningBal28GreaterThanOrEqualTo = value; return this; } public Integer getOpeningBal28GreaterThan() { return OpeningBal28GreaterThan; } public DB_Main2Query setOpeningBal28GreaterThan(Integer value) { this.OpeningBal28GreaterThan = value; return this; } public Integer getOpeningBal28LessThan() { return OpeningBal28LessThan; } public DB_Main2Query setOpeningBal28LessThan(Integer value) { this.OpeningBal28LessThan = value; return this; } public Integer getOpeningBal28LessThanOrEqualTo() { return OpeningBal28LessThanOrEqualTo; } public DB_Main2Query setOpeningBal28LessThanOrEqualTo(Integer value) { this.OpeningBal28LessThanOrEqualTo = value; return this; } public Integer getOpeningBal28NotEqualTo() { return OpeningBal28NotEqualTo; } public DB_Main2Query setOpeningBal28NotEqualTo(Integer value) { this.OpeningBal28NotEqualTo = value; return this; } public ArrayList getOpeningBal28Between() { return OpeningBal28Between; } public DB_Main2Query setOpeningBal28Between(ArrayList value) { this.OpeningBal28Between = value; return this; } public ArrayList getOpeningBal28In() { return OpeningBal28In; } public DB_Main2Query setOpeningBal28In(ArrayList value) { this.OpeningBal28In = value; return this; } public Integer getOpeningBal29() { return OpeningBal29; } public DB_Main2Query setOpeningBal29(Integer value) { this.OpeningBal29 = value; return this; } public Integer getOpeningBal29GreaterThanOrEqualTo() { return OpeningBal29GreaterThanOrEqualTo; } public DB_Main2Query setOpeningBal29GreaterThanOrEqualTo(Integer value) { this.OpeningBal29GreaterThanOrEqualTo = value; return this; } public Integer getOpeningBal29GreaterThan() { return OpeningBal29GreaterThan; } public DB_Main2Query setOpeningBal29GreaterThan(Integer value) { this.OpeningBal29GreaterThan = value; return this; } public Integer getOpeningBal29LessThan() { return OpeningBal29LessThan; } public DB_Main2Query setOpeningBal29LessThan(Integer value) { this.OpeningBal29LessThan = value; return this; } public Integer getOpeningBal29LessThanOrEqualTo() { return OpeningBal29LessThanOrEqualTo; } public DB_Main2Query setOpeningBal29LessThanOrEqualTo(Integer value) { this.OpeningBal29LessThanOrEqualTo = value; return this; } public Integer getOpeningBal29NotEqualTo() { return OpeningBal29NotEqualTo; } public DB_Main2Query setOpeningBal29NotEqualTo(Integer value) { this.OpeningBal29NotEqualTo = value; return this; } public ArrayList getOpeningBal29Between() { return OpeningBal29Between; } public DB_Main2Query setOpeningBal29Between(ArrayList value) { this.OpeningBal29Between = value; return this; } public ArrayList getOpeningBal29In() { return OpeningBal29In; } public DB_Main2Query setOpeningBal29In(ArrayList value) { this.OpeningBal29In = value; return this; } public Integer getOpeningBal30() { return OpeningBal30; } public DB_Main2Query setOpeningBal30(Integer value) { this.OpeningBal30 = value; return this; } public Integer getOpeningBal30GreaterThanOrEqualTo() { return OpeningBal30GreaterThanOrEqualTo; } public DB_Main2Query setOpeningBal30GreaterThanOrEqualTo(Integer value) { this.OpeningBal30GreaterThanOrEqualTo = value; return this; } public Integer getOpeningBal30GreaterThan() { return OpeningBal30GreaterThan; } public DB_Main2Query setOpeningBal30GreaterThan(Integer value) { this.OpeningBal30GreaterThan = value; return this; } public Integer getOpeningBal30LessThan() { return OpeningBal30LessThan; } public DB_Main2Query setOpeningBal30LessThan(Integer value) { this.OpeningBal30LessThan = value; return this; } public Integer getOpeningBal30LessThanOrEqualTo() { return OpeningBal30LessThanOrEqualTo; } public DB_Main2Query setOpeningBal30LessThanOrEqualTo(Integer value) { this.OpeningBal30LessThanOrEqualTo = value; return this; } public Integer getOpeningBal30NotEqualTo() { return OpeningBal30NotEqualTo; } public DB_Main2Query setOpeningBal30NotEqualTo(Integer value) { this.OpeningBal30NotEqualTo = value; return this; } public ArrayList getOpeningBal30Between() { return OpeningBal30Between; } public DB_Main2Query setOpeningBal30Between(ArrayList value) { this.OpeningBal30Between = value; return this; } public ArrayList getOpeningBal30In() { return OpeningBal30In; } public DB_Main2Query setOpeningBal30In(ArrayList value) { this.OpeningBal30In = value; return this; } public Integer getOpeningBal31() { return OpeningBal31; } public DB_Main2Query setOpeningBal31(Integer value) { this.OpeningBal31 = value; return this; } public Integer getOpeningBal31GreaterThanOrEqualTo() { return OpeningBal31GreaterThanOrEqualTo; } public DB_Main2Query setOpeningBal31GreaterThanOrEqualTo(Integer value) { this.OpeningBal31GreaterThanOrEqualTo = value; return this; } public Integer getOpeningBal31GreaterThan() { return OpeningBal31GreaterThan; } public DB_Main2Query setOpeningBal31GreaterThan(Integer value) { this.OpeningBal31GreaterThan = value; return this; } public Integer getOpeningBal31LessThan() { return OpeningBal31LessThan; } public DB_Main2Query setOpeningBal31LessThan(Integer value) { this.OpeningBal31LessThan = value; return this; } public Integer getOpeningBal31LessThanOrEqualTo() { return OpeningBal31LessThanOrEqualTo; } public DB_Main2Query setOpeningBal31LessThanOrEqualTo(Integer value) { this.OpeningBal31LessThanOrEqualTo = value; return this; } public Integer getOpeningBal31NotEqualTo() { return OpeningBal31NotEqualTo; } public DB_Main2Query setOpeningBal31NotEqualTo(Integer value) { this.OpeningBal31NotEqualTo = value; return this; } public ArrayList getOpeningBal31Between() { return OpeningBal31Between; } public DB_Main2Query setOpeningBal31Between(ArrayList value) { this.OpeningBal31Between = value; return this; } public ArrayList getOpeningBal31In() { return OpeningBal31In; } public DB_Main2Query setOpeningBal31In(ArrayList value) { this.OpeningBal31In = value; return this; } public Integer getOpeningBal32() { return OpeningBal32; } public DB_Main2Query setOpeningBal32(Integer value) { this.OpeningBal32 = value; return this; } public Integer getOpeningBal32GreaterThanOrEqualTo() { return OpeningBal32GreaterThanOrEqualTo; } public DB_Main2Query setOpeningBal32GreaterThanOrEqualTo(Integer value) { this.OpeningBal32GreaterThanOrEqualTo = value; return this; } public Integer getOpeningBal32GreaterThan() { return OpeningBal32GreaterThan; } public DB_Main2Query setOpeningBal32GreaterThan(Integer value) { this.OpeningBal32GreaterThan = value; return this; } public Integer getOpeningBal32LessThan() { return OpeningBal32LessThan; } public DB_Main2Query setOpeningBal32LessThan(Integer value) { this.OpeningBal32LessThan = value; return this; } public Integer getOpeningBal32LessThanOrEqualTo() { return OpeningBal32LessThanOrEqualTo; } public DB_Main2Query setOpeningBal32LessThanOrEqualTo(Integer value) { this.OpeningBal32LessThanOrEqualTo = value; return this; } public Integer getOpeningBal32NotEqualTo() { return OpeningBal32NotEqualTo; } public DB_Main2Query setOpeningBal32NotEqualTo(Integer value) { this.OpeningBal32NotEqualTo = value; return this; } public ArrayList getOpeningBal32Between() { return OpeningBal32Between; } public DB_Main2Query setOpeningBal32Between(ArrayList value) { this.OpeningBal32Between = value; return this; } public ArrayList getOpeningBal32In() { return OpeningBal32In; } public DB_Main2Query setOpeningBal32In(ArrayList value) { this.OpeningBal32In = value; return this; } public Integer getOpeningBal33() { return OpeningBal33; } public DB_Main2Query setOpeningBal33(Integer value) { this.OpeningBal33 = value; return this; } public Integer getOpeningBal33GreaterThanOrEqualTo() { return OpeningBal33GreaterThanOrEqualTo; } public DB_Main2Query setOpeningBal33GreaterThanOrEqualTo(Integer value) { this.OpeningBal33GreaterThanOrEqualTo = value; return this; } public Integer getOpeningBal33GreaterThan() { return OpeningBal33GreaterThan; } public DB_Main2Query setOpeningBal33GreaterThan(Integer value) { this.OpeningBal33GreaterThan = value; return this; } public Integer getOpeningBal33LessThan() { return OpeningBal33LessThan; } public DB_Main2Query setOpeningBal33LessThan(Integer value) { this.OpeningBal33LessThan = value; return this; } public Integer getOpeningBal33LessThanOrEqualTo() { return OpeningBal33LessThanOrEqualTo; } public DB_Main2Query setOpeningBal33LessThanOrEqualTo(Integer value) { this.OpeningBal33LessThanOrEqualTo = value; return this; } public Integer getOpeningBal33NotEqualTo() { return OpeningBal33NotEqualTo; } public DB_Main2Query setOpeningBal33NotEqualTo(Integer value) { this.OpeningBal33NotEqualTo = value; return this; } public ArrayList getOpeningBal33Between() { return OpeningBal33Between; } public DB_Main2Query setOpeningBal33Between(ArrayList value) { this.OpeningBal33Between = value; return this; } public ArrayList getOpeningBal33In() { return OpeningBal33In; } public DB_Main2Query setOpeningBal33In(ArrayList value) { this.OpeningBal33In = value; return this; } public Integer getOpeningBal34() { return OpeningBal34; } public DB_Main2Query setOpeningBal34(Integer value) { this.OpeningBal34 = value; return this; } public Integer getOpeningBal34GreaterThanOrEqualTo() { return OpeningBal34GreaterThanOrEqualTo; } public DB_Main2Query setOpeningBal34GreaterThanOrEqualTo(Integer value) { this.OpeningBal34GreaterThanOrEqualTo = value; return this; } public Integer getOpeningBal34GreaterThan() { return OpeningBal34GreaterThan; } public DB_Main2Query setOpeningBal34GreaterThan(Integer value) { this.OpeningBal34GreaterThan = value; return this; } public Integer getOpeningBal34LessThan() { return OpeningBal34LessThan; } public DB_Main2Query setOpeningBal34LessThan(Integer value) { this.OpeningBal34LessThan = value; return this; } public Integer getOpeningBal34LessThanOrEqualTo() { return OpeningBal34LessThanOrEqualTo; } public DB_Main2Query setOpeningBal34LessThanOrEqualTo(Integer value) { this.OpeningBal34LessThanOrEqualTo = value; return this; } public Integer getOpeningBal34NotEqualTo() { return OpeningBal34NotEqualTo; } public DB_Main2Query setOpeningBal34NotEqualTo(Integer value) { this.OpeningBal34NotEqualTo = value; return this; } public ArrayList getOpeningBal34Between() { return OpeningBal34Between; } public DB_Main2Query setOpeningBal34Between(ArrayList value) { this.OpeningBal34Between = value; return this; } public ArrayList getOpeningBal34In() { return OpeningBal34In; } public DB_Main2Query setOpeningBal34In(ArrayList value) { this.OpeningBal34In = value; return this; } public Integer getOpeningBal35() { return OpeningBal35; } public DB_Main2Query setOpeningBal35(Integer value) { this.OpeningBal35 = value; return this; } public Integer getOpeningBal35GreaterThanOrEqualTo() { return OpeningBal35GreaterThanOrEqualTo; } public DB_Main2Query setOpeningBal35GreaterThanOrEqualTo(Integer value) { this.OpeningBal35GreaterThanOrEqualTo = value; return this; } public Integer getOpeningBal35GreaterThan() { return OpeningBal35GreaterThan; } public DB_Main2Query setOpeningBal35GreaterThan(Integer value) { this.OpeningBal35GreaterThan = value; return this; } public Integer getOpeningBal35LessThan() { return OpeningBal35LessThan; } public DB_Main2Query setOpeningBal35LessThan(Integer value) { this.OpeningBal35LessThan = value; return this; } public Integer getOpeningBal35LessThanOrEqualTo() { return OpeningBal35LessThanOrEqualTo; } public DB_Main2Query setOpeningBal35LessThanOrEqualTo(Integer value) { this.OpeningBal35LessThanOrEqualTo = value; return this; } public Integer getOpeningBal35NotEqualTo() { return OpeningBal35NotEqualTo; } public DB_Main2Query setOpeningBal35NotEqualTo(Integer value) { this.OpeningBal35NotEqualTo = value; return this; } public ArrayList getOpeningBal35Between() { return OpeningBal35Between; } public DB_Main2Query setOpeningBal35Between(ArrayList value) { this.OpeningBal35Between = value; return this; } public ArrayList getOpeningBal35In() { return OpeningBal35In; } public DB_Main2Query setOpeningBal35In(ArrayList value) { this.OpeningBal35In = value; return this; } public Integer getOpeningBal36() { return OpeningBal36; } public DB_Main2Query setOpeningBal36(Integer value) { this.OpeningBal36 = value; return this; } public Integer getOpeningBal36GreaterThanOrEqualTo() { return OpeningBal36GreaterThanOrEqualTo; } public DB_Main2Query setOpeningBal36GreaterThanOrEqualTo(Integer value) { this.OpeningBal36GreaterThanOrEqualTo = value; return this; } public Integer getOpeningBal36GreaterThan() { return OpeningBal36GreaterThan; } public DB_Main2Query setOpeningBal36GreaterThan(Integer value) { this.OpeningBal36GreaterThan = value; return this; } public Integer getOpeningBal36LessThan() { return OpeningBal36LessThan; } public DB_Main2Query setOpeningBal36LessThan(Integer value) { this.OpeningBal36LessThan = value; return this; } public Integer getOpeningBal36LessThanOrEqualTo() { return OpeningBal36LessThanOrEqualTo; } public DB_Main2Query setOpeningBal36LessThanOrEqualTo(Integer value) { this.OpeningBal36LessThanOrEqualTo = value; return this; } public Integer getOpeningBal36NotEqualTo() { return OpeningBal36NotEqualTo; } public DB_Main2Query setOpeningBal36NotEqualTo(Integer value) { this.OpeningBal36NotEqualTo = value; return this; } public ArrayList getOpeningBal36Between() { return OpeningBal36Between; } public DB_Main2Query setOpeningBal36Between(ArrayList value) { this.OpeningBal36Between = value; return this; } public ArrayList getOpeningBal36In() { return OpeningBal36In; } public DB_Main2Query setOpeningBal36In(ArrayList value) { this.OpeningBal36In = value; return this; } public Integer getOpeningBal37() { return OpeningBal37; } public DB_Main2Query setOpeningBal37(Integer value) { this.OpeningBal37 = value; return this; } public Integer getOpeningBal37GreaterThanOrEqualTo() { return OpeningBal37GreaterThanOrEqualTo; } public DB_Main2Query setOpeningBal37GreaterThanOrEqualTo(Integer value) { this.OpeningBal37GreaterThanOrEqualTo = value; return this; } public Integer getOpeningBal37GreaterThan() { return OpeningBal37GreaterThan; } public DB_Main2Query setOpeningBal37GreaterThan(Integer value) { this.OpeningBal37GreaterThan = value; return this; } public Integer getOpeningBal37LessThan() { return OpeningBal37LessThan; } public DB_Main2Query setOpeningBal37LessThan(Integer value) { this.OpeningBal37LessThan = value; return this; } public Integer getOpeningBal37LessThanOrEqualTo() { return OpeningBal37LessThanOrEqualTo; } public DB_Main2Query setOpeningBal37LessThanOrEqualTo(Integer value) { this.OpeningBal37LessThanOrEqualTo = value; return this; } public Integer getOpeningBal37NotEqualTo() { return OpeningBal37NotEqualTo; } public DB_Main2Query setOpeningBal37NotEqualTo(Integer value) { this.OpeningBal37NotEqualTo = value; return this; } public ArrayList getOpeningBal37Between() { return OpeningBal37Between; } public DB_Main2Query setOpeningBal37Between(ArrayList value) { this.OpeningBal37Between = value; return this; } public ArrayList getOpeningBal37In() { return OpeningBal37In; } public DB_Main2Query setOpeningBal37In(ArrayList value) { this.OpeningBal37In = value; return this; } public Integer getOpeningBal38() { return OpeningBal38; } public DB_Main2Query setOpeningBal38(Integer value) { this.OpeningBal38 = value; return this; } public Integer getOpeningBal38GreaterThanOrEqualTo() { return OpeningBal38GreaterThanOrEqualTo; } public DB_Main2Query setOpeningBal38GreaterThanOrEqualTo(Integer value) { this.OpeningBal38GreaterThanOrEqualTo = value; return this; } public Integer getOpeningBal38GreaterThan() { return OpeningBal38GreaterThan; } public DB_Main2Query setOpeningBal38GreaterThan(Integer value) { this.OpeningBal38GreaterThan = value; return this; } public Integer getOpeningBal38LessThan() { return OpeningBal38LessThan; } public DB_Main2Query setOpeningBal38LessThan(Integer value) { this.OpeningBal38LessThan = value; return this; } public Integer getOpeningBal38LessThanOrEqualTo() { return OpeningBal38LessThanOrEqualTo; } public DB_Main2Query setOpeningBal38LessThanOrEqualTo(Integer value) { this.OpeningBal38LessThanOrEqualTo = value; return this; } public Integer getOpeningBal38NotEqualTo() { return OpeningBal38NotEqualTo; } public DB_Main2Query setOpeningBal38NotEqualTo(Integer value) { this.OpeningBal38NotEqualTo = value; return this; } public ArrayList getOpeningBal38Between() { return OpeningBal38Between; } public DB_Main2Query setOpeningBal38Between(ArrayList value) { this.OpeningBal38Between = value; return this; } public ArrayList getOpeningBal38In() { return OpeningBal38In; } public DB_Main2Query setOpeningBal38In(ArrayList value) { this.OpeningBal38In = value; return this; } public Integer getOpeningBal39() { return OpeningBal39; } public DB_Main2Query setOpeningBal39(Integer value) { this.OpeningBal39 = value; return this; } public Integer getOpeningBal39GreaterThanOrEqualTo() { return OpeningBal39GreaterThanOrEqualTo; } public DB_Main2Query setOpeningBal39GreaterThanOrEqualTo(Integer value) { this.OpeningBal39GreaterThanOrEqualTo = value; return this; } public Integer getOpeningBal39GreaterThan() { return OpeningBal39GreaterThan; } public DB_Main2Query setOpeningBal39GreaterThan(Integer value) { this.OpeningBal39GreaterThan = value; return this; } public Integer getOpeningBal39LessThan() { return OpeningBal39LessThan; } public DB_Main2Query setOpeningBal39LessThan(Integer value) { this.OpeningBal39LessThan = value; return this; } public Integer getOpeningBal39LessThanOrEqualTo() { return OpeningBal39LessThanOrEqualTo; } public DB_Main2Query setOpeningBal39LessThanOrEqualTo(Integer value) { this.OpeningBal39LessThanOrEqualTo = value; return this; } public Integer getOpeningBal39NotEqualTo() { return OpeningBal39NotEqualTo; } public DB_Main2Query setOpeningBal39NotEqualTo(Integer value) { this.OpeningBal39NotEqualTo = value; return this; } public ArrayList getOpeningBal39Between() { return OpeningBal39Between; } public DB_Main2Query setOpeningBal39Between(ArrayList value) { this.OpeningBal39Between = value; return this; } public ArrayList getOpeningBal39In() { return OpeningBal39In; } public DB_Main2Query setOpeningBal39In(ArrayList value) { this.OpeningBal39In = value; return this; } public Integer getOpeningBal40() { return OpeningBal40; } public DB_Main2Query setOpeningBal40(Integer value) { this.OpeningBal40 = value; return this; } public Integer getOpeningBal40GreaterThanOrEqualTo() { return OpeningBal40GreaterThanOrEqualTo; } public DB_Main2Query setOpeningBal40GreaterThanOrEqualTo(Integer value) { this.OpeningBal40GreaterThanOrEqualTo = value; return this; } public Integer getOpeningBal40GreaterThan() { return OpeningBal40GreaterThan; } public DB_Main2Query setOpeningBal40GreaterThan(Integer value) { this.OpeningBal40GreaterThan = value; return this; } public Integer getOpeningBal40LessThan() { return OpeningBal40LessThan; } public DB_Main2Query setOpeningBal40LessThan(Integer value) { this.OpeningBal40LessThan = value; return this; } public Integer getOpeningBal40LessThanOrEqualTo() { return OpeningBal40LessThanOrEqualTo; } public DB_Main2Query setOpeningBal40LessThanOrEqualTo(Integer value) { this.OpeningBal40LessThanOrEqualTo = value; return this; } public Integer getOpeningBal40NotEqualTo() { return OpeningBal40NotEqualTo; } public DB_Main2Query setOpeningBal40NotEqualTo(Integer value) { this.OpeningBal40NotEqualTo = value; return this; } public ArrayList getOpeningBal40Between() { return OpeningBal40Between; } public DB_Main2Query setOpeningBal40Between(ArrayList value) { this.OpeningBal40Between = value; return this; } public ArrayList getOpeningBal40In() { return OpeningBal40In; } public DB_Main2Query setOpeningBal40In(ArrayList value) { this.OpeningBal40In = value; return this; } public Integer getOpeningBal41() { return OpeningBal41; } public DB_Main2Query setOpeningBal41(Integer value) { this.OpeningBal41 = value; return this; } public Integer getOpeningBal41GreaterThanOrEqualTo() { return OpeningBal41GreaterThanOrEqualTo; } public DB_Main2Query setOpeningBal41GreaterThanOrEqualTo(Integer value) { this.OpeningBal41GreaterThanOrEqualTo = value; return this; } public Integer getOpeningBal41GreaterThan() { return OpeningBal41GreaterThan; } public DB_Main2Query setOpeningBal41GreaterThan(Integer value) { this.OpeningBal41GreaterThan = value; return this; } public Integer getOpeningBal41LessThan() { return OpeningBal41LessThan; } public DB_Main2Query setOpeningBal41LessThan(Integer value) { this.OpeningBal41LessThan = value; return this; } public Integer getOpeningBal41LessThanOrEqualTo() { return OpeningBal41LessThanOrEqualTo; } public DB_Main2Query setOpeningBal41LessThanOrEqualTo(Integer value) { this.OpeningBal41LessThanOrEqualTo = value; return this; } public Integer getOpeningBal41NotEqualTo() { return OpeningBal41NotEqualTo; } public DB_Main2Query setOpeningBal41NotEqualTo(Integer value) { this.OpeningBal41NotEqualTo = value; return this; } public ArrayList getOpeningBal41Between() { return OpeningBal41Between; } public DB_Main2Query setOpeningBal41Between(ArrayList value) { this.OpeningBal41Between = value; return this; } public ArrayList getOpeningBal41In() { return OpeningBal41In; } public DB_Main2Query setOpeningBal41In(ArrayList value) { this.OpeningBal41In = value; return this; } public Integer getOpeningBal42() { return OpeningBal42; } public DB_Main2Query setOpeningBal42(Integer value) { this.OpeningBal42 = value; return this; } public Integer getOpeningBal42GreaterThanOrEqualTo() { return OpeningBal42GreaterThanOrEqualTo; } public DB_Main2Query setOpeningBal42GreaterThanOrEqualTo(Integer value) { this.OpeningBal42GreaterThanOrEqualTo = value; return this; } public Integer getOpeningBal42GreaterThan() { return OpeningBal42GreaterThan; } public DB_Main2Query setOpeningBal42GreaterThan(Integer value) { this.OpeningBal42GreaterThan = value; return this; } public Integer getOpeningBal42LessThan() { return OpeningBal42LessThan; } public DB_Main2Query setOpeningBal42LessThan(Integer value) { this.OpeningBal42LessThan = value; return this; } public Integer getOpeningBal42LessThanOrEqualTo() { return OpeningBal42LessThanOrEqualTo; } public DB_Main2Query setOpeningBal42LessThanOrEqualTo(Integer value) { this.OpeningBal42LessThanOrEqualTo = value; return this; } public Integer getOpeningBal42NotEqualTo() { return OpeningBal42NotEqualTo; } public DB_Main2Query setOpeningBal42NotEqualTo(Integer value) { this.OpeningBal42NotEqualTo = value; return this; } public ArrayList getOpeningBal42Between() { return OpeningBal42Between; } public DB_Main2Query setOpeningBal42Between(ArrayList value) { this.OpeningBal42Between = value; return this; } public ArrayList getOpeningBal42In() { return OpeningBal42In; } public DB_Main2Query setOpeningBal42In(ArrayList value) { this.OpeningBal42In = value; return this; } public Integer getOpeningBal43() { return OpeningBal43; } public DB_Main2Query setOpeningBal43(Integer value) { this.OpeningBal43 = value; return this; } public Integer getOpeningBal43GreaterThanOrEqualTo() { return OpeningBal43GreaterThanOrEqualTo; } public DB_Main2Query setOpeningBal43GreaterThanOrEqualTo(Integer value) { this.OpeningBal43GreaterThanOrEqualTo = value; return this; } public Integer getOpeningBal43GreaterThan() { return OpeningBal43GreaterThan; } public DB_Main2Query setOpeningBal43GreaterThan(Integer value) { this.OpeningBal43GreaterThan = value; return this; } public Integer getOpeningBal43LessThan() { return OpeningBal43LessThan; } public DB_Main2Query setOpeningBal43LessThan(Integer value) { this.OpeningBal43LessThan = value; return this; } public Integer getOpeningBal43LessThanOrEqualTo() { return OpeningBal43LessThanOrEqualTo; } public DB_Main2Query setOpeningBal43LessThanOrEqualTo(Integer value) { this.OpeningBal43LessThanOrEqualTo = value; return this; } public Integer getOpeningBal43NotEqualTo() { return OpeningBal43NotEqualTo; } public DB_Main2Query setOpeningBal43NotEqualTo(Integer value) { this.OpeningBal43NotEqualTo = value; return this; } public ArrayList getOpeningBal43Between() { return OpeningBal43Between; } public DB_Main2Query setOpeningBal43Between(ArrayList value) { this.OpeningBal43Between = value; return this; } public ArrayList getOpeningBal43In() { return OpeningBal43In; } public DB_Main2Query setOpeningBal43In(ArrayList value) { this.OpeningBal43In = value; return this; } public Integer getOpeningBal44() { return OpeningBal44; } public DB_Main2Query setOpeningBal44(Integer value) { this.OpeningBal44 = value; return this; } public Integer getOpeningBal44GreaterThanOrEqualTo() { return OpeningBal44GreaterThanOrEqualTo; } public DB_Main2Query setOpeningBal44GreaterThanOrEqualTo(Integer value) { this.OpeningBal44GreaterThanOrEqualTo = value; return this; } public Integer getOpeningBal44GreaterThan() { return OpeningBal44GreaterThan; } public DB_Main2Query setOpeningBal44GreaterThan(Integer value) { this.OpeningBal44GreaterThan = value; return this; } public Integer getOpeningBal44LessThan() { return OpeningBal44LessThan; } public DB_Main2Query setOpeningBal44LessThan(Integer value) { this.OpeningBal44LessThan = value; return this; } public Integer getOpeningBal44LessThanOrEqualTo() { return OpeningBal44LessThanOrEqualTo; } public DB_Main2Query setOpeningBal44LessThanOrEqualTo(Integer value) { this.OpeningBal44LessThanOrEqualTo = value; return this; } public Integer getOpeningBal44NotEqualTo() { return OpeningBal44NotEqualTo; } public DB_Main2Query setOpeningBal44NotEqualTo(Integer value) { this.OpeningBal44NotEqualTo = value; return this; } public ArrayList getOpeningBal44Between() { return OpeningBal44Between; } public DB_Main2Query setOpeningBal44Between(ArrayList value) { this.OpeningBal44Between = value; return this; } public ArrayList getOpeningBal44In() { return OpeningBal44In; } public DB_Main2Query setOpeningBal44In(ArrayList value) { this.OpeningBal44In = value; return this; } public Integer getOpeningBal45() { return OpeningBal45; } public DB_Main2Query setOpeningBal45(Integer value) { this.OpeningBal45 = value; return this; } public Integer getOpeningBal45GreaterThanOrEqualTo() { return OpeningBal45GreaterThanOrEqualTo; } public DB_Main2Query setOpeningBal45GreaterThanOrEqualTo(Integer value) { this.OpeningBal45GreaterThanOrEqualTo = value; return this; } public Integer getOpeningBal45GreaterThan() { return OpeningBal45GreaterThan; } public DB_Main2Query setOpeningBal45GreaterThan(Integer value) { this.OpeningBal45GreaterThan = value; return this; } public Integer getOpeningBal45LessThan() { return OpeningBal45LessThan; } public DB_Main2Query setOpeningBal45LessThan(Integer value) { this.OpeningBal45LessThan = value; return this; } public Integer getOpeningBal45LessThanOrEqualTo() { return OpeningBal45LessThanOrEqualTo; } public DB_Main2Query setOpeningBal45LessThanOrEqualTo(Integer value) { this.OpeningBal45LessThanOrEqualTo = value; return this; } public Integer getOpeningBal45NotEqualTo() { return OpeningBal45NotEqualTo; } public DB_Main2Query setOpeningBal45NotEqualTo(Integer value) { this.OpeningBal45NotEqualTo = value; return this; } public ArrayList getOpeningBal45Between() { return OpeningBal45Between; } public DB_Main2Query setOpeningBal45Between(ArrayList value) { this.OpeningBal45Between = value; return this; } public ArrayList getOpeningBal45In() { return OpeningBal45In; } public DB_Main2Query setOpeningBal45In(ArrayList value) { this.OpeningBal45In = value; return this; } public Integer getOpeningBal46() { return OpeningBal46; } public DB_Main2Query setOpeningBal46(Integer value) { this.OpeningBal46 = value; return this; } public Integer getOpeningBal46GreaterThanOrEqualTo() { return OpeningBal46GreaterThanOrEqualTo; } public DB_Main2Query setOpeningBal46GreaterThanOrEqualTo(Integer value) { this.OpeningBal46GreaterThanOrEqualTo = value; return this; } public Integer getOpeningBal46GreaterThan() { return OpeningBal46GreaterThan; } public DB_Main2Query setOpeningBal46GreaterThan(Integer value) { this.OpeningBal46GreaterThan = value; return this; } public Integer getOpeningBal46LessThan() { return OpeningBal46LessThan; } public DB_Main2Query setOpeningBal46LessThan(Integer value) { this.OpeningBal46LessThan = value; return this; } public Integer getOpeningBal46LessThanOrEqualTo() { return OpeningBal46LessThanOrEqualTo; } public DB_Main2Query setOpeningBal46LessThanOrEqualTo(Integer value) { this.OpeningBal46LessThanOrEqualTo = value; return this; } public Integer getOpeningBal46NotEqualTo() { return OpeningBal46NotEqualTo; } public DB_Main2Query setOpeningBal46NotEqualTo(Integer value) { this.OpeningBal46NotEqualTo = value; return this; } public ArrayList getOpeningBal46Between() { return OpeningBal46Between; } public DB_Main2Query setOpeningBal46Between(ArrayList value) { this.OpeningBal46Between = value; return this; } public ArrayList getOpeningBal46In() { return OpeningBal46In; } public DB_Main2Query setOpeningBal46In(ArrayList value) { this.OpeningBal46In = value; return this; } public Integer getOpeningBal47() { return OpeningBal47; } public DB_Main2Query setOpeningBal47(Integer value) { this.OpeningBal47 = value; return this; } public Integer getOpeningBal47GreaterThanOrEqualTo() { return OpeningBal47GreaterThanOrEqualTo; } public DB_Main2Query setOpeningBal47GreaterThanOrEqualTo(Integer value) { this.OpeningBal47GreaterThanOrEqualTo = value; return this; } public Integer getOpeningBal47GreaterThan() { return OpeningBal47GreaterThan; } public DB_Main2Query setOpeningBal47GreaterThan(Integer value) { this.OpeningBal47GreaterThan = value; return this; } public Integer getOpeningBal47LessThan() { return OpeningBal47LessThan; } public DB_Main2Query setOpeningBal47LessThan(Integer value) { this.OpeningBal47LessThan = value; return this; } public Integer getOpeningBal47LessThanOrEqualTo() { return OpeningBal47LessThanOrEqualTo; } public DB_Main2Query setOpeningBal47LessThanOrEqualTo(Integer value) { this.OpeningBal47LessThanOrEqualTo = value; return this; } public Integer getOpeningBal47NotEqualTo() { return OpeningBal47NotEqualTo; } public DB_Main2Query setOpeningBal47NotEqualTo(Integer value) { this.OpeningBal47NotEqualTo = value; return this; } public ArrayList getOpeningBal47Between() { return OpeningBal47Between; } public DB_Main2Query setOpeningBal47Between(ArrayList value) { this.OpeningBal47Between = value; return this; } public ArrayList getOpeningBal47In() { return OpeningBal47In; } public DB_Main2Query setOpeningBal47In(ArrayList value) { this.OpeningBal47In = value; return this; } public Integer getOpeningBal48() { return OpeningBal48; } public DB_Main2Query setOpeningBal48(Integer value) { this.OpeningBal48 = value; return this; } public Integer getOpeningBal48GreaterThanOrEqualTo() { return OpeningBal48GreaterThanOrEqualTo; } public DB_Main2Query setOpeningBal48GreaterThanOrEqualTo(Integer value) { this.OpeningBal48GreaterThanOrEqualTo = value; return this; } public Integer getOpeningBal48GreaterThan() { return OpeningBal48GreaterThan; } public DB_Main2Query setOpeningBal48GreaterThan(Integer value) { this.OpeningBal48GreaterThan = value; return this; } public Integer getOpeningBal48LessThan() { return OpeningBal48LessThan; } public DB_Main2Query setOpeningBal48LessThan(Integer value) { this.OpeningBal48LessThan = value; return this; } public Integer getOpeningBal48LessThanOrEqualTo() { return OpeningBal48LessThanOrEqualTo; } public DB_Main2Query setOpeningBal48LessThanOrEqualTo(Integer value) { this.OpeningBal48LessThanOrEqualTo = value; return this; } public Integer getOpeningBal48NotEqualTo() { return OpeningBal48NotEqualTo; } public DB_Main2Query setOpeningBal48NotEqualTo(Integer value) { this.OpeningBal48NotEqualTo = value; return this; } public ArrayList getOpeningBal48Between() { return OpeningBal48Between; } public DB_Main2Query setOpeningBal48Between(ArrayList value) { this.OpeningBal48Between = value; return this; } public ArrayList getOpeningBal48In() { return OpeningBal48In; } public DB_Main2Query setOpeningBal48In(ArrayList value) { this.OpeningBal48In = value; return this; } public Integer getOpeningBal49() { return OpeningBal49; } public DB_Main2Query setOpeningBal49(Integer value) { this.OpeningBal49 = value; return this; } public Integer getOpeningBal49GreaterThanOrEqualTo() { return OpeningBal49GreaterThanOrEqualTo; } public DB_Main2Query setOpeningBal49GreaterThanOrEqualTo(Integer value) { this.OpeningBal49GreaterThanOrEqualTo = value; return this; } public Integer getOpeningBal49GreaterThan() { return OpeningBal49GreaterThan; } public DB_Main2Query setOpeningBal49GreaterThan(Integer value) { this.OpeningBal49GreaterThan = value; return this; } public Integer getOpeningBal49LessThan() { return OpeningBal49LessThan; } public DB_Main2Query setOpeningBal49LessThan(Integer value) { this.OpeningBal49LessThan = value; return this; } public Integer getOpeningBal49LessThanOrEqualTo() { return OpeningBal49LessThanOrEqualTo; } public DB_Main2Query setOpeningBal49LessThanOrEqualTo(Integer value) { this.OpeningBal49LessThanOrEqualTo = value; return this; } public Integer getOpeningBal49NotEqualTo() { return OpeningBal49NotEqualTo; } public DB_Main2Query setOpeningBal49NotEqualTo(Integer value) { this.OpeningBal49NotEqualTo = value; return this; } public ArrayList getOpeningBal49Between() { return OpeningBal49Between; } public DB_Main2Query setOpeningBal49Between(ArrayList value) { this.OpeningBal49Between = value; return this; } public ArrayList getOpeningBal49In() { return OpeningBal49In; } public DB_Main2Query setOpeningBal49In(ArrayList value) { this.OpeningBal49In = value; return this; } public Integer getOpeningBal50() { return OpeningBal50; } public DB_Main2Query setOpeningBal50(Integer value) { this.OpeningBal50 = value; return this; } public Integer getOpeningBal50GreaterThanOrEqualTo() { return OpeningBal50GreaterThanOrEqualTo; } public DB_Main2Query setOpeningBal50GreaterThanOrEqualTo(Integer value) { this.OpeningBal50GreaterThanOrEqualTo = value; return this; } public Integer getOpeningBal50GreaterThan() { return OpeningBal50GreaterThan; } public DB_Main2Query setOpeningBal50GreaterThan(Integer value) { this.OpeningBal50GreaterThan = value; return this; } public Integer getOpeningBal50LessThan() { return OpeningBal50LessThan; } public DB_Main2Query setOpeningBal50LessThan(Integer value) { this.OpeningBal50LessThan = value; return this; } public Integer getOpeningBal50LessThanOrEqualTo() { return OpeningBal50LessThanOrEqualTo; } public DB_Main2Query setOpeningBal50LessThanOrEqualTo(Integer value) { this.OpeningBal50LessThanOrEqualTo = value; return this; } public Integer getOpeningBal50NotEqualTo() { return OpeningBal50NotEqualTo; } public DB_Main2Query setOpeningBal50NotEqualTo(Integer value) { this.OpeningBal50NotEqualTo = value; return this; } public ArrayList getOpeningBal50Between() { return OpeningBal50Between; } public DB_Main2Query setOpeningBal50Between(ArrayList value) { this.OpeningBal50Between = value; return this; } public ArrayList getOpeningBal50In() { return OpeningBal50In; } public DB_Main2Query setOpeningBal50In(ArrayList value) { this.OpeningBal50In = value; return this; } public Integer getOpeningBal51() { return OpeningBal51; } public DB_Main2Query setOpeningBal51(Integer value) { this.OpeningBal51 = value; return this; } public Integer getOpeningBal51GreaterThanOrEqualTo() { return OpeningBal51GreaterThanOrEqualTo; } public DB_Main2Query setOpeningBal51GreaterThanOrEqualTo(Integer value) { this.OpeningBal51GreaterThanOrEqualTo = value; return this; } public Integer getOpeningBal51GreaterThan() { return OpeningBal51GreaterThan; } public DB_Main2Query setOpeningBal51GreaterThan(Integer value) { this.OpeningBal51GreaterThan = value; return this; } public Integer getOpeningBal51LessThan() { return OpeningBal51LessThan; } public DB_Main2Query setOpeningBal51LessThan(Integer value) { this.OpeningBal51LessThan = value; return this; } public Integer getOpeningBal51LessThanOrEqualTo() { return OpeningBal51LessThanOrEqualTo; } public DB_Main2Query setOpeningBal51LessThanOrEqualTo(Integer value) { this.OpeningBal51LessThanOrEqualTo = value; return this; } public Integer getOpeningBal51NotEqualTo() { return OpeningBal51NotEqualTo; } public DB_Main2Query setOpeningBal51NotEqualTo(Integer value) { this.OpeningBal51NotEqualTo = value; return this; } public ArrayList getOpeningBal51Between() { return OpeningBal51Between; } public DB_Main2Query setOpeningBal51Between(ArrayList value) { this.OpeningBal51Between = value; return this; } public ArrayList getOpeningBal51In() { return OpeningBal51In; } public DB_Main2Query setOpeningBal51In(ArrayList value) { this.OpeningBal51In = value; return this; } public Integer getOpeningBal52() { return OpeningBal52; } public DB_Main2Query setOpeningBal52(Integer value) { this.OpeningBal52 = value; return this; } public Integer getOpeningBal52GreaterThanOrEqualTo() { return OpeningBal52GreaterThanOrEqualTo; } public DB_Main2Query setOpeningBal52GreaterThanOrEqualTo(Integer value) { this.OpeningBal52GreaterThanOrEqualTo = value; return this; } public Integer getOpeningBal52GreaterThan() { return OpeningBal52GreaterThan; } public DB_Main2Query setOpeningBal52GreaterThan(Integer value) { this.OpeningBal52GreaterThan = value; return this; } public Integer getOpeningBal52LessThan() { return OpeningBal52LessThan; } public DB_Main2Query setOpeningBal52LessThan(Integer value) { this.OpeningBal52LessThan = value; return this; } public Integer getOpeningBal52LessThanOrEqualTo() { return OpeningBal52LessThanOrEqualTo; } public DB_Main2Query setOpeningBal52LessThanOrEqualTo(Integer value) { this.OpeningBal52LessThanOrEqualTo = value; return this; } public Integer getOpeningBal52NotEqualTo() { return OpeningBal52NotEqualTo; } public DB_Main2Query setOpeningBal52NotEqualTo(Integer value) { this.OpeningBal52NotEqualTo = value; return this; } public ArrayList getOpeningBal52Between() { return OpeningBal52Between; } public DB_Main2Query setOpeningBal52Between(ArrayList value) { this.OpeningBal52Between = value; return this; } public ArrayList getOpeningBal52In() { return OpeningBal52In; } public DB_Main2Query setOpeningBal52In(ArrayList value) { this.OpeningBal52In = value; return this; } public Integer getOpeningBal53() { return OpeningBal53; } public DB_Main2Query setOpeningBal53(Integer value) { this.OpeningBal53 = value; return this; } public Integer getOpeningBal53GreaterThanOrEqualTo() { return OpeningBal53GreaterThanOrEqualTo; } public DB_Main2Query setOpeningBal53GreaterThanOrEqualTo(Integer value) { this.OpeningBal53GreaterThanOrEqualTo = value; return this; } public Integer getOpeningBal53GreaterThan() { return OpeningBal53GreaterThan; } public DB_Main2Query setOpeningBal53GreaterThan(Integer value) { this.OpeningBal53GreaterThan = value; return this; } public Integer getOpeningBal53LessThan() { return OpeningBal53LessThan; } public DB_Main2Query setOpeningBal53LessThan(Integer value) { this.OpeningBal53LessThan = value; return this; } public Integer getOpeningBal53LessThanOrEqualTo() { return OpeningBal53LessThanOrEqualTo; } public DB_Main2Query setOpeningBal53LessThanOrEqualTo(Integer value) { this.OpeningBal53LessThanOrEqualTo = value; return this; } public Integer getOpeningBal53NotEqualTo() { return OpeningBal53NotEqualTo; } public DB_Main2Query setOpeningBal53NotEqualTo(Integer value) { this.OpeningBal53NotEqualTo = value; return this; } public ArrayList getOpeningBal53Between() { return OpeningBal53Between; } public DB_Main2Query setOpeningBal53Between(ArrayList value) { this.OpeningBal53Between = value; return this; } public ArrayList getOpeningBal53In() { return OpeningBal53In; } public DB_Main2Query setOpeningBal53In(ArrayList value) { this.OpeningBal53In = value; return this; } public Short getPeriodType() { return PeriodType; } public DB_Main2Query setPeriodType(Short value) { this.PeriodType = value; return this; } public Short getPeriodTypeGreaterThanOrEqualTo() { return PeriodTypeGreaterThanOrEqualTo; } public DB_Main2Query setPeriodTypeGreaterThanOrEqualTo(Short value) { this.PeriodTypeGreaterThanOrEqualTo = value; return this; } public Short getPeriodTypeGreaterThan() { return PeriodTypeGreaterThan; } public DB_Main2Query setPeriodTypeGreaterThan(Short value) { this.PeriodTypeGreaterThan = value; return this; } public Short getPeriodTypeLessThan() { return PeriodTypeLessThan; } public DB_Main2Query setPeriodTypeLessThan(Short value) { this.PeriodTypeLessThan = value; return this; } public Short getPeriodTypeLessThanOrEqualTo() { return PeriodTypeLessThanOrEqualTo; } public DB_Main2Query setPeriodTypeLessThanOrEqualTo(Short value) { this.PeriodTypeLessThanOrEqualTo = value; return this; } public Short getPeriodTypeNotEqualTo() { return PeriodTypeNotEqualTo; } public DB_Main2Query setPeriodTypeNotEqualTo(Short value) { this.PeriodTypeNotEqualTo = value; return this; } public ArrayList getPeriodTypeBetween() { return PeriodTypeBetween; } public DB_Main2Query setPeriodTypeBetween(ArrayList value) { this.PeriodTypeBetween = value; return this; } public ArrayList getPeriodTypeIn() { return PeriodTypeIn; } public DB_Main2Query setPeriodTypeIn(ArrayList value) { this.PeriodTypeIn = value; return this; } public Short getTermsDays() { return TermsDays; } public DB_Main2Query setTermsDays(Short value) { this.TermsDays = value; return this; } public Short getTermsDaysGreaterThanOrEqualTo() { return TermsDaysGreaterThanOrEqualTo; } public DB_Main2Query setTermsDaysGreaterThanOrEqualTo(Short value) { this.TermsDaysGreaterThanOrEqualTo = value; return this; } public Short getTermsDaysGreaterThan() { return TermsDaysGreaterThan; } public DB_Main2Query setTermsDaysGreaterThan(Short value) { this.TermsDaysGreaterThan = value; return this; } public Short getTermsDaysLessThan() { return TermsDaysLessThan; } public DB_Main2Query setTermsDaysLessThan(Short value) { this.TermsDaysLessThan = value; return this; } public Short getTermsDaysLessThanOrEqualTo() { return TermsDaysLessThanOrEqualTo; } public DB_Main2Query setTermsDaysLessThanOrEqualTo(Short value) { this.TermsDaysLessThanOrEqualTo = value; return this; } public Short getTermsDaysNotEqualTo() { return TermsDaysNotEqualTo; } public DB_Main2Query setTermsDaysNotEqualTo(Short value) { this.TermsDaysNotEqualTo = value; return this; } public ArrayList getTermsDaysBetween() { return TermsDaysBetween; } public DB_Main2Query setTermsDaysBetween(ArrayList value) { this.TermsDaysBetween = value; return this; } public ArrayList getTermsDaysIn() { return TermsDaysIn; } public DB_Main2Query setTermsDaysIn(ArrayList value) { this.TermsDaysIn = value; return this; } public Short getTermsType() { return TermsType; } public DB_Main2Query setTermsType(Short value) { this.TermsType = value; return this; } public Short getTermsTypeGreaterThanOrEqualTo() { return TermsTypeGreaterThanOrEqualTo; } public DB_Main2Query setTermsTypeGreaterThanOrEqualTo(Short value) { this.TermsTypeGreaterThanOrEqualTo = value; return this; } public Short getTermsTypeGreaterThan() { return TermsTypeGreaterThan; } public DB_Main2Query setTermsTypeGreaterThan(Short value) { this.TermsTypeGreaterThan = value; return this; } public Short getTermsTypeLessThan() { return TermsTypeLessThan; } public DB_Main2Query setTermsTypeLessThan(Short value) { this.TermsTypeLessThan = value; return this; } public Short getTermsTypeLessThanOrEqualTo() { return TermsTypeLessThanOrEqualTo; } public DB_Main2Query setTermsTypeLessThanOrEqualTo(Short value) { this.TermsTypeLessThanOrEqualTo = value; return this; } public Short getTermsTypeNotEqualTo() { return TermsTypeNotEqualTo; } public DB_Main2Query setTermsTypeNotEqualTo(Short value) { this.TermsTypeNotEqualTo = value; return this; } public ArrayList getTermsTypeBetween() { return TermsTypeBetween; } public DB_Main2Query setTermsTypeBetween(ArrayList value) { this.TermsTypeBetween = value; return this; } public ArrayList getTermsTypeIn() { return TermsTypeIn; } public DB_Main2Query setTermsTypeIn(ArrayList value) { this.TermsTypeIn = value; return this; } public String getAbn() { return ABN; } public DB_Main2Query setAbn(String value) { this.ABN = value; return this; } public String getAbnStartsWith() { return ABNStartsWith; } public DB_Main2Query setAbnStartsWith(String value) { this.ABNStartsWith = value; return this; } public String getAbnEndsWith() { return ABNEndsWith; } public DB_Main2Query setAbnEndsWith(String value) { this.ABNEndsWith = value; return this; } public String getAbnContains() { return ABNContains; } public DB_Main2Query setAbnContains(String value) { this.ABNContains = value; return this; } public String getAbnLike() { return ABNLike; } public DB_Main2Query setAbnLike(String value) { this.ABNLike = value; return this; } public ArrayList getAbnBetween() { return ABNBetween; } public DB_Main2Query setAbnBetween(ArrayList value) { this.ABNBetween = value; return this; } public ArrayList getAbnIn() { return ABNIn; } public DB_Main2Query setAbnIn(ArrayList value) { this.ABNIn = value; return this; } public Boolean isExcludeFromAging() { return ExcludeFromAging; } public DB_Main2Query setExcludeFromAging(Boolean value) { this.ExcludeFromAging = value; return this; } public String getBPayReference() { return BPayReference; } public DB_Main2Query setBPayReference(String value) { this.BPayReference = value; return this; } public String getBPayReferenceStartsWith() { return BPayReferenceStartsWith; } public DB_Main2Query setBPayReferenceStartsWith(String value) { this.BPayReferenceStartsWith = value; return this; } public String getBPayReferenceEndsWith() { return BPayReferenceEndsWith; } public DB_Main2Query setBPayReferenceEndsWith(String value) { this.BPayReferenceEndsWith = value; return this; } public String getBPayReferenceContains() { return BPayReferenceContains; } public DB_Main2Query setBPayReferenceContains(String value) { this.BPayReferenceContains = value; return this; } public String getBPayReferenceLike() { return BPayReferenceLike; } public DB_Main2Query setBPayReferenceLike(String value) { this.BPayReferenceLike = value; return this; } public ArrayList getBPayReferenceBetween() { return BPayReferenceBetween; } public DB_Main2Query setBPayReferenceBetween(ArrayList value) { this.BPayReferenceBetween = value; return this; } public ArrayList getBPayReferenceIn() { return BPayReferenceIn; } public DB_Main2Query setBPayReferenceIn(ArrayList value) { this.BPayReferenceIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class DB_NotesQuery extends QueryDb implements IReturn> { public String RecID = null; public String RecIDStartsWith = null; public String RecIDEndsWith = null; public String RecIDContains = null; public String RecIDLike = null; public ArrayList RecIDBetween = null; public ArrayList RecIDIn = null; public String DebtorID = null; public String DebtorIDStartsWith = null; public String DebtorIDEndsWith = null; public String DebtorIDContains = null; public String DebtorIDLike = null; public ArrayList DebtorIDBetween = null; public ArrayList DebtorIDIn = null; public String NoteTypeID = null; public String NoteTypeIDStartsWith = null; public String NoteTypeIDEndsWith = null; public String NoteTypeIDContains = null; public String NoteTypeIDLike = null; public ArrayList NoteTypeIDBetween = null; public ArrayList NoteTypeIDIn = null; public Date LastSavedDateTime = null; public Date LastSavedDateTimeGreaterThanOrEqualTo = null; public Date LastSavedDateTimeGreaterThan = null; public Date LastSavedDateTimeLessThan = null; public Date LastSavedDateTimeLessThanOrEqualTo = null; public Date LastSavedDateTimeNotEqualTo = null; public ArrayList LastSavedDateTimeBetween = null; public ArrayList LastSavedDateTimeIn = null; public String LastSavedByStaffID = null; public String LastSavedByStaffIDStartsWith = null; public String LastSavedByStaffIDEndsWith = null; public String LastSavedByStaffIDContains = null; public String LastSavedByStaffIDLike = null; public ArrayList LastSavedByStaffIDBetween = null; public ArrayList LastSavedByStaffIDIn = null; public String NoteText = null; public String NoteTextStartsWith = null; public String NoteTextEndsWith = null; public String NoteTextContains = null; public String NoteTextLike = null; public ArrayList NoteTextBetween = null; public ArrayList NoteTextIn = null; public Integer ItemNo = null; public Integer ItemNoGreaterThanOrEqualTo = null; public Integer ItemNoGreaterThan = null; public Integer ItemNoLessThan = null; public Integer ItemNoLessThanOrEqualTo = null; public Integer ItemNoNotEqualTo = null; public ArrayList ItemNoBetween = null; public ArrayList ItemNoIn = null; public String getRecID() { return RecID; } public DB_NotesQuery setRecID(String value) { this.RecID = value; return this; } public String getRecIDStartsWith() { return RecIDStartsWith; } public DB_NotesQuery setRecIDStartsWith(String value) { this.RecIDStartsWith = value; return this; } public String getRecIDEndsWith() { return RecIDEndsWith; } public DB_NotesQuery setRecIDEndsWith(String value) { this.RecIDEndsWith = value; return this; } public String getRecIDContains() { return RecIDContains; } public DB_NotesQuery setRecIDContains(String value) { this.RecIDContains = value; return this; } public String getRecIDLike() { return RecIDLike; } public DB_NotesQuery setRecIDLike(String value) { this.RecIDLike = value; return this; } public ArrayList getRecIDBetween() { return RecIDBetween; } public DB_NotesQuery setRecIDBetween(ArrayList value) { this.RecIDBetween = value; return this; } public ArrayList getRecIDIn() { return RecIDIn; } public DB_NotesQuery setRecIDIn(ArrayList value) { this.RecIDIn = value; return this; } public String getDebtorID() { return DebtorID; } public DB_NotesQuery setDebtorID(String value) { this.DebtorID = value; return this; } public String getDebtorIDStartsWith() { return DebtorIDStartsWith; } public DB_NotesQuery setDebtorIDStartsWith(String value) { this.DebtorIDStartsWith = value; return this; } public String getDebtorIDEndsWith() { return DebtorIDEndsWith; } public DB_NotesQuery setDebtorIDEndsWith(String value) { this.DebtorIDEndsWith = value; return this; } public String getDebtorIDContains() { return DebtorIDContains; } public DB_NotesQuery setDebtorIDContains(String value) { this.DebtorIDContains = value; return this; } public String getDebtorIDLike() { return DebtorIDLike; } public DB_NotesQuery setDebtorIDLike(String value) { this.DebtorIDLike = value; return this; } public ArrayList getDebtorIDBetween() { return DebtorIDBetween; } public DB_NotesQuery setDebtorIDBetween(ArrayList value) { this.DebtorIDBetween = value; return this; } public ArrayList getDebtorIDIn() { return DebtorIDIn; } public DB_NotesQuery setDebtorIDIn(ArrayList value) { this.DebtorIDIn = value; return this; } public String getNoteTypeID() { return NoteTypeID; } public DB_NotesQuery setNoteTypeID(String value) { this.NoteTypeID = value; return this; } public String getNoteTypeIDStartsWith() { return NoteTypeIDStartsWith; } public DB_NotesQuery setNoteTypeIDStartsWith(String value) { this.NoteTypeIDStartsWith = value; return this; } public String getNoteTypeIDEndsWith() { return NoteTypeIDEndsWith; } public DB_NotesQuery setNoteTypeIDEndsWith(String value) { this.NoteTypeIDEndsWith = value; return this; } public String getNoteTypeIDContains() { return NoteTypeIDContains; } public DB_NotesQuery setNoteTypeIDContains(String value) { this.NoteTypeIDContains = value; return this; } public String getNoteTypeIDLike() { return NoteTypeIDLike; } public DB_NotesQuery setNoteTypeIDLike(String value) { this.NoteTypeIDLike = value; return this; } public ArrayList getNoteTypeIDBetween() { return NoteTypeIDBetween; } public DB_NotesQuery setNoteTypeIDBetween(ArrayList value) { this.NoteTypeIDBetween = value; return this; } public ArrayList getNoteTypeIDIn() { return NoteTypeIDIn; } public DB_NotesQuery setNoteTypeIDIn(ArrayList value) { this.NoteTypeIDIn = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public DB_NotesQuery setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getLastSavedDateTimeGreaterThanOrEqualTo() { return LastSavedDateTimeGreaterThanOrEqualTo; } public DB_NotesQuery setLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.LastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeGreaterThan() { return LastSavedDateTimeGreaterThan; } public DB_NotesQuery setLastSavedDateTimeGreaterThan(Date value) { this.LastSavedDateTimeGreaterThan = value; return this; } public Date getLastSavedDateTimeLessThan() { return LastSavedDateTimeLessThan; } public DB_NotesQuery setLastSavedDateTimeLessThan(Date value) { this.LastSavedDateTimeLessThan = value; return this; } public Date getLastSavedDateTimeLessThanOrEqualTo() { return LastSavedDateTimeLessThanOrEqualTo; } public DB_NotesQuery setLastSavedDateTimeLessThanOrEqualTo(Date value) { this.LastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeNotEqualTo() { return LastSavedDateTimeNotEqualTo; } public DB_NotesQuery setLastSavedDateTimeNotEqualTo(Date value) { this.LastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getLastSavedDateTimeBetween() { return LastSavedDateTimeBetween; } public DB_NotesQuery setLastSavedDateTimeBetween(ArrayList value) { this.LastSavedDateTimeBetween = value; return this; } public ArrayList getLastSavedDateTimeIn() { return LastSavedDateTimeIn; } public DB_NotesQuery setLastSavedDateTimeIn(ArrayList value) { this.LastSavedDateTimeIn = value; return this; } public String getLastSavedByStaffID() { return LastSavedByStaffID; } public DB_NotesQuery setLastSavedByStaffID(String value) { this.LastSavedByStaffID = value; return this; } public String getLastSavedByStaffIDStartsWith() { return LastSavedByStaffIDStartsWith; } public DB_NotesQuery setLastSavedByStaffIDStartsWith(String value) { this.LastSavedByStaffIDStartsWith = value; return this; } public String getLastSavedByStaffIDEndsWith() { return LastSavedByStaffIDEndsWith; } public DB_NotesQuery setLastSavedByStaffIDEndsWith(String value) { this.LastSavedByStaffIDEndsWith = value; return this; } public String getLastSavedByStaffIDContains() { return LastSavedByStaffIDContains; } public DB_NotesQuery setLastSavedByStaffIDContains(String value) { this.LastSavedByStaffIDContains = value; return this; } public String getLastSavedByStaffIDLike() { return LastSavedByStaffIDLike; } public DB_NotesQuery setLastSavedByStaffIDLike(String value) { this.LastSavedByStaffIDLike = value; return this; } public ArrayList getLastSavedByStaffIDBetween() { return LastSavedByStaffIDBetween; } public DB_NotesQuery setLastSavedByStaffIDBetween(ArrayList value) { this.LastSavedByStaffIDBetween = value; return this; } public ArrayList getLastSavedByStaffIDIn() { return LastSavedByStaffIDIn; } public DB_NotesQuery setLastSavedByStaffIDIn(ArrayList value) { this.LastSavedByStaffIDIn = value; return this; } public String getNoteText() { return NoteText; } public DB_NotesQuery setNoteText(String value) { this.NoteText = value; return this; } public String getNoteTextStartsWith() { return NoteTextStartsWith; } public DB_NotesQuery setNoteTextStartsWith(String value) { this.NoteTextStartsWith = value; return this; } public String getNoteTextEndsWith() { return NoteTextEndsWith; } public DB_NotesQuery setNoteTextEndsWith(String value) { this.NoteTextEndsWith = value; return this; } public String getNoteTextContains() { return NoteTextContains; } public DB_NotesQuery setNoteTextContains(String value) { this.NoteTextContains = value; return this; } public String getNoteTextLike() { return NoteTextLike; } public DB_NotesQuery setNoteTextLike(String value) { this.NoteTextLike = value; return this; } public ArrayList getNoteTextBetween() { return NoteTextBetween; } public DB_NotesQuery setNoteTextBetween(ArrayList value) { this.NoteTextBetween = value; return this; } public ArrayList getNoteTextIn() { return NoteTextIn; } public DB_NotesQuery setNoteTextIn(ArrayList value) { this.NoteTextIn = value; return this; } public Integer getItemNo() { return ItemNo; } public DB_NotesQuery setItemNo(Integer value) { this.ItemNo = value; return this; } public Integer getItemNoGreaterThanOrEqualTo() { return ItemNoGreaterThanOrEqualTo; } public DB_NotesQuery setItemNoGreaterThanOrEqualTo(Integer value) { this.ItemNoGreaterThanOrEqualTo = value; return this; } public Integer getItemNoGreaterThan() { return ItemNoGreaterThan; } public DB_NotesQuery setItemNoGreaterThan(Integer value) { this.ItemNoGreaterThan = value; return this; } public Integer getItemNoLessThan() { return ItemNoLessThan; } public DB_NotesQuery setItemNoLessThan(Integer value) { this.ItemNoLessThan = value; return this; } public Integer getItemNoLessThanOrEqualTo() { return ItemNoLessThanOrEqualTo; } public DB_NotesQuery setItemNoLessThanOrEqualTo(Integer value) { this.ItemNoLessThanOrEqualTo = value; return this; } public Integer getItemNoNotEqualTo() { return ItemNoNotEqualTo; } public DB_NotesQuery setItemNoNotEqualTo(Integer value) { this.ItemNoNotEqualTo = value; return this; } public ArrayList getItemNoBetween() { return ItemNoBetween; } public DB_NotesQuery setItemNoBetween(ArrayList value) { this.ItemNoBetween = value; return this; } public ArrayList getItemNoIn() { return ItemNoIn; } public DB_NotesQuery setItemNoIn(ArrayList value) { this.ItemNoIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @Route(Path="/Queries/DB_PricingGroups", Verbs="GET") @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class DB_PricingGroupsQuery extends QueryDb implements IReturn> { public String RecID = null; public String RecIDStartsWith = null; public String RecIDEndsWith = null; public String RecIDContains = null; public String RecIDLike = null; public ArrayList RecIDBetween = null; public ArrayList RecIDIn = null; public Date LastSavedDateTime = null; public Date LastSavedDateTimeGreaterThanOrEqualTo = null; public Date LastSavedDateTimeGreaterThan = null; public Date LastSavedDateTimeLessThan = null; public Date LastSavedDateTimeLessThanOrEqualTo = null; public Date LastSavedDateTimeNotEqualTo = null; public ArrayList LastSavedDateTimeBetween = null; public ArrayList LastSavedDateTimeIn = null; public String Description = null; public String DescriptionStartsWith = null; public String DescriptionEndsWith = null; public String DescriptionContains = null; public String DescriptionLike = null; public ArrayList DescriptionBetween = null; public ArrayList DescriptionIn = null; public Boolean DefaultPriceGroup = null; public String getRecID() { return RecID; } public DB_PricingGroupsQuery setRecID(String value) { this.RecID = value; return this; } public String getRecIDStartsWith() { return RecIDStartsWith; } public DB_PricingGroupsQuery setRecIDStartsWith(String value) { this.RecIDStartsWith = value; return this; } public String getRecIDEndsWith() { return RecIDEndsWith; } public DB_PricingGroupsQuery setRecIDEndsWith(String value) { this.RecIDEndsWith = value; return this; } public String getRecIDContains() { return RecIDContains; } public DB_PricingGroupsQuery setRecIDContains(String value) { this.RecIDContains = value; return this; } public String getRecIDLike() { return RecIDLike; } public DB_PricingGroupsQuery setRecIDLike(String value) { this.RecIDLike = value; return this; } public ArrayList getRecIDBetween() { return RecIDBetween; } public DB_PricingGroupsQuery setRecIDBetween(ArrayList value) { this.RecIDBetween = value; return this; } public ArrayList getRecIDIn() { return RecIDIn; } public DB_PricingGroupsQuery setRecIDIn(ArrayList value) { this.RecIDIn = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public DB_PricingGroupsQuery setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getLastSavedDateTimeGreaterThanOrEqualTo() { return LastSavedDateTimeGreaterThanOrEqualTo; } public DB_PricingGroupsQuery setLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.LastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeGreaterThan() { return LastSavedDateTimeGreaterThan; } public DB_PricingGroupsQuery setLastSavedDateTimeGreaterThan(Date value) { this.LastSavedDateTimeGreaterThan = value; return this; } public Date getLastSavedDateTimeLessThan() { return LastSavedDateTimeLessThan; } public DB_PricingGroupsQuery setLastSavedDateTimeLessThan(Date value) { this.LastSavedDateTimeLessThan = value; return this; } public Date getLastSavedDateTimeLessThanOrEqualTo() { return LastSavedDateTimeLessThanOrEqualTo; } public DB_PricingGroupsQuery setLastSavedDateTimeLessThanOrEqualTo(Date value) { this.LastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeNotEqualTo() { return LastSavedDateTimeNotEqualTo; } public DB_PricingGroupsQuery setLastSavedDateTimeNotEqualTo(Date value) { this.LastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getLastSavedDateTimeBetween() { return LastSavedDateTimeBetween; } public DB_PricingGroupsQuery setLastSavedDateTimeBetween(ArrayList value) { this.LastSavedDateTimeBetween = value; return this; } public ArrayList getLastSavedDateTimeIn() { return LastSavedDateTimeIn; } public DB_PricingGroupsQuery setLastSavedDateTimeIn(ArrayList value) { this.LastSavedDateTimeIn = value; return this; } public String getDescription() { return Description; } public DB_PricingGroupsQuery setDescription(String value) { this.Description = value; return this; } public String getDescriptionStartsWith() { return DescriptionStartsWith; } public DB_PricingGroupsQuery setDescriptionStartsWith(String value) { this.DescriptionStartsWith = value; return this; } public String getDescriptionEndsWith() { return DescriptionEndsWith; } public DB_PricingGroupsQuery setDescriptionEndsWith(String value) { this.DescriptionEndsWith = value; return this; } public String getDescriptionContains() { return DescriptionContains; } public DB_PricingGroupsQuery setDescriptionContains(String value) { this.DescriptionContains = value; return this; } public String getDescriptionLike() { return DescriptionLike; } public DB_PricingGroupsQuery setDescriptionLike(String value) { this.DescriptionLike = value; return this; } public ArrayList getDescriptionBetween() { return DescriptionBetween; } public DB_PricingGroupsQuery setDescriptionBetween(ArrayList value) { this.DescriptionBetween = value; return this; } public ArrayList getDescriptionIn() { return DescriptionIn; } public DB_PricingGroupsQuery setDescriptionIn(ArrayList value) { this.DescriptionIn = value; return this; } public Boolean isDefaultPriceGroup() { return DefaultPriceGroup; } public DB_PricingGroupsQuery setDefaultPriceGroup(Boolean value) { this.DefaultPriceGroup = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class DB_TransQuery extends QueryDb implements IReturn> { public String TransID = null; public String TransIDStartsWith = null; public String TransIDEndsWith = null; public String TransIDContains = null; public String TransIDLike = null; public ArrayList TransIDBetween = null; public ArrayList TransIDIn = null; public String DebtorID = null; public String DebtorIDStartsWith = null; public String DebtorIDEndsWith = null; public String DebtorIDContains = null; public String DebtorIDLike = null; public ArrayList DebtorIDBetween = null; public ArrayList DebtorIDIn = null; public Boolean DebitCredit = null; public String Source = null; public String SourceStartsWith = null; public String SourceEndsWith = null; public String SourceContains = null; public String SourceLike = null; public ArrayList SourceBetween = null; public ArrayList SourceIn = null; public String Ref = null; public String RefStartsWith = null; public String RefEndsWith = null; public String RefContains = null; public String RefLike = null; public ArrayList RefBetween = null; public ArrayList RefIn = null; public String Remark = null; public String RemarkStartsWith = null; public String RemarkEndsWith = null; public String RemarkContains = null; public String RemarkLike = null; public ArrayList RemarkBetween = null; public ArrayList RemarkIn = null; public Date TranDate = null; public Date TranDateGreaterThanOrEqualTo = null; public Date TranDateGreaterThan = null; public Date TranDateLessThan = null; public Date TranDateLessThanOrEqualTo = null; public Date TranDateNotEqualTo = null; public ArrayList TranDateBetween = null; public ArrayList TranDateIn = null; public String InvRemitNo = null; public String InvRemitNoStartsWith = null; public String InvRemitNoEndsWith = null; public String InvRemitNoContains = null; public String InvRemitNoLike = null; public ArrayList InvRemitNoBetween = null; public ArrayList InvRemitNoIn = null; public BigDecimal Amount = null; public BigDecimal AmountGreaterThanOrEqualTo = null; public BigDecimal AmountGreaterThan = null; public BigDecimal AmountLessThan = null; public BigDecimal AmountLessThanOrEqualTo = null; public BigDecimal AmountNotEqualTo = null; public ArrayList AmountBetween = null; public ArrayList AmountIn = null; public BigDecimal DiscountedAmount = null; public BigDecimal DiscountedAmountGreaterThanOrEqualTo = null; public BigDecimal DiscountedAmountGreaterThan = null; public BigDecimal DiscountedAmountLessThan = null; public BigDecimal DiscountedAmountLessThanOrEqualTo = null; public BigDecimal DiscountedAmountNotEqualTo = null; public ArrayList DiscountedAmountBetween = null; public ArrayList DiscountedAmountIn = null; public Boolean AgedOut = null; public String SourceID = null; public String SourceIDStartsWith = null; public String SourceIDEndsWith = null; public String SourceIDContains = null; public String SourceIDLike = null; public ArrayList SourceIDBetween = null; public ArrayList SourceIDIn = null; public BigDecimal AllocatedAmount = null; public BigDecimal AllocatedAmountGreaterThanOrEqualTo = null; public BigDecimal AllocatedAmountGreaterThan = null; public BigDecimal AllocatedAmountLessThan = null; public BigDecimal AllocatedAmountLessThanOrEqualTo = null; public BigDecimal AllocatedAmountNotEqualTo = null; public ArrayList AllocatedAmountBetween = null; public ArrayList AllocatedAmountIn = null; public Date InitDateTime = null; public Date InitDateTimeGreaterThanOrEqualTo = null; public Date InitDateTimeGreaterThan = null; public Date InitDateTimeLessThan = null; public Date InitDateTimeLessThanOrEqualTo = null; public Date InitDateTimeNotEqualTo = null; public ArrayList InitDateTimeBetween = null; public ArrayList InitDateTimeIn = null; public Date LastSavedDateTime = null; public Date LastSavedDateTimeGreaterThanOrEqualTo = null; public Date LastSavedDateTimeGreaterThan = null; public Date LastSavedDateTimeLessThan = null; public Date LastSavedDateTimeLessThanOrEqualTo = null; public Date LastSavedDateTimeNotEqualTo = null; public ArrayList LastSavedDateTimeBetween = null; public ArrayList LastSavedDateTimeIn = null; public Short SubType = null; public Short SubTypeGreaterThanOrEqualTo = null; public Short SubTypeGreaterThan = null; public Short SubTypeLessThan = null; public Short SubTypeLessThanOrEqualTo = null; public Short SubTypeNotEqualTo = null; public ArrayList SubTypeBetween = null; public ArrayList SubTypeIn = null; public String BatchNo = null; public String BatchNoStartsWith = null; public String BatchNoEndsWith = null; public String BatchNoContains = null; public String BatchNoLike = null; public ArrayList BatchNoBetween = null; public ArrayList BatchNoIn = null; public String ChildDebtorID = null; public String ChildDebtorIDStartsWith = null; public String ChildDebtorIDEndsWith = null; public String ChildDebtorIDContains = null; public String ChildDebtorIDLike = null; public ArrayList ChildDebtorIDBetween = null; public ArrayList ChildDebtorIDIn = null; public BigDecimal GSTAmount = null; public BigDecimal GSTAmountGreaterThanOrEqualTo = null; public BigDecimal GSTAmountGreaterThan = null; public BigDecimal GSTAmountLessThan = null; public BigDecimal GSTAmountLessThanOrEqualTo = null; public BigDecimal GSTAmountNotEqualTo = null; public ArrayList GSTAmountBetween = null; public ArrayList GSTAmountIn = null; public Date DueDate = null; public Date DueDateGreaterThanOrEqualTo = null; public Date DueDateGreaterThan = null; public Date DueDateLessThan = null; public Date DueDateLessThanOrEqualTo = null; public Date DueDateNotEqualTo = null; public ArrayList DueDateBetween = null; public ArrayList DueDateIn = null; public BigDecimal FXAmount = null; public BigDecimal FXAmountGreaterThanOrEqualTo = null; public BigDecimal FXAmountGreaterThan = null; public BigDecimal FXAmountLessThan = null; public BigDecimal FXAmountLessThanOrEqualTo = null; public BigDecimal FXAmountNotEqualTo = null; public ArrayList FXAmountBetween = null; public ArrayList FXAmountIn = null; public BigDecimal FXAllocAmount = null; public BigDecimal FXAllocAmountGreaterThanOrEqualTo = null; public BigDecimal FXAllocAmountGreaterThan = null; public BigDecimal FXAllocAmountLessThan = null; public BigDecimal FXAllocAmountLessThanOrEqualTo = null; public BigDecimal FXAllocAmountNotEqualTo = null; public ArrayList FXAllocAmountBetween = null; public ArrayList FXAllocAmountIn = null; public BigDecimal CurrencyRateUsed = null; public BigDecimal CurrencyRateUsedGreaterThanOrEqualTo = null; public BigDecimal CurrencyRateUsedGreaterThan = null; public BigDecimal CurrencyRateUsedLessThan = null; public BigDecimal CurrencyRateUsedLessThanOrEqualTo = null; public BigDecimal CurrencyRateUsedNotEqualTo = null; public ArrayList CurrencyRateUsedBetween = null; public ArrayList CurrencyRateUsedIn = null; public BigDecimal RealisedGainLoss = null; public BigDecimal RealisedGainLossGreaterThanOrEqualTo = null; public BigDecimal RealisedGainLossGreaterThan = null; public BigDecimal RealisedGainLossLessThan = null; public BigDecimal RealisedGainLossLessThanOrEqualTo = null; public BigDecimal RealisedGainLossNotEqualTo = null; public ArrayList RealisedGainLossBetween = null; public ArrayList RealisedGainLossIn = null; public BigDecimal UnRealisedGainLoss = null; public BigDecimal UnRealisedGainLossGreaterThanOrEqualTo = null; public BigDecimal UnRealisedGainLossGreaterThan = null; public BigDecimal UnRealisedGainLossLessThan = null; public BigDecimal UnRealisedGainLossLessThanOrEqualTo = null; public BigDecimal UnRealisedGainLossNotEqualTo = null; public ArrayList UnRealisedGainLossBetween = null; public ArrayList UnRealisedGainLossIn = null; public String CurrencyID = null; public String CurrencyIDStartsWith = null; public String CurrencyIDEndsWith = null; public String CurrencyIDContains = null; public String CurrencyIDLike = null; public ArrayList CurrencyIDBetween = null; public ArrayList CurrencyIDIn = null; public BigDecimal Cartage1Amount = null; public BigDecimal Cartage1AmountGreaterThanOrEqualTo = null; public BigDecimal Cartage1AmountGreaterThan = null; public BigDecimal Cartage1AmountLessThan = null; public BigDecimal Cartage1AmountLessThanOrEqualTo = null; public BigDecimal Cartage1AmountNotEqualTo = null; public ArrayList Cartage1AmountBetween = null; public ArrayList Cartage1AmountIn = null; public BigDecimal Cartage1TaxAmount = null; public BigDecimal Cartage1TaxAmountGreaterThanOrEqualTo = null; public BigDecimal Cartage1TaxAmountGreaterThan = null; public BigDecimal Cartage1TaxAmountLessThan = null; public BigDecimal Cartage1TaxAmountLessThanOrEqualTo = null; public BigDecimal Cartage1TaxAmountNotEqualTo = null; public ArrayList Cartage1TaxAmountBetween = null; public ArrayList Cartage1TaxAmountIn = null; public BigDecimal Cartage2Amount = null; public BigDecimal Cartage2AmountGreaterThanOrEqualTo = null; public BigDecimal Cartage2AmountGreaterThan = null; public BigDecimal Cartage2AmountLessThan = null; public BigDecimal Cartage2AmountLessThanOrEqualTo = null; public BigDecimal Cartage2AmountNotEqualTo = null; public ArrayList Cartage2AmountBetween = null; public ArrayList Cartage2AmountIn = null; public BigDecimal Cartage2TaxAmount = null; public BigDecimal Cartage2TaxAmountGreaterThanOrEqualTo = null; public BigDecimal Cartage2TaxAmountGreaterThan = null; public BigDecimal Cartage2TaxAmountLessThan = null; public BigDecimal Cartage2TaxAmountLessThanOrEqualTo = null; public BigDecimal Cartage2TaxAmountNotEqualTo = null; public ArrayList Cartage2TaxAmountBetween = null; public ArrayList Cartage2TaxAmountIn = null; public BigDecimal Cartage3Amount = null; public BigDecimal Cartage3AmountGreaterThanOrEqualTo = null; public BigDecimal Cartage3AmountGreaterThan = null; public BigDecimal Cartage3AmountLessThan = null; public BigDecimal Cartage3AmountLessThanOrEqualTo = null; public BigDecimal Cartage3AmountNotEqualTo = null; public ArrayList Cartage3AmountBetween = null; public ArrayList Cartage3AmountIn = null; public BigDecimal Cartage3TaxAmount = null; public BigDecimal Cartage3TaxAmountGreaterThanOrEqualTo = null; public BigDecimal Cartage3TaxAmountGreaterThan = null; public BigDecimal Cartage3TaxAmountLessThan = null; public BigDecimal Cartage3TaxAmountLessThanOrEqualTo = null; public BigDecimal Cartage3TaxAmountNotEqualTo = null; public ArrayList Cartage3TaxAmountBetween = null; public ArrayList Cartage3TaxAmountIn = null; public Short FXDecimalPlaces = null; public Short FXDecimalPlacesGreaterThanOrEqualTo = null; public Short FXDecimalPlacesGreaterThan = null; public Short FXDecimalPlacesLessThan = null; public Short FXDecimalPlacesLessThanOrEqualTo = null; public Short FXDecimalPlacesNotEqualTo = null; public ArrayList FXDecimalPlacesBetween = null; public ArrayList FXDecimalPlacesIn = null; public Short DecimalPlaces = null; public Short DecimalPlacesGreaterThanOrEqualTo = null; public Short DecimalPlacesGreaterThan = null; public Short DecimalPlacesLessThan = null; public Short DecimalPlacesLessThanOrEqualTo = null; public Short DecimalPlacesNotEqualTo = null; public ArrayList DecimalPlacesBetween = null; public ArrayList DecimalPlacesIn = null; public String Note = null; public String NoteStartsWith = null; public String NoteEndsWith = null; public String NoteContains = null; public String NoteLike = null; public ArrayList NoteBetween = null; public ArrayList NoteIn = null; public String getTransID() { return TransID; } public DB_TransQuery setTransID(String value) { this.TransID = value; return this; } public String getTransIDStartsWith() { return TransIDStartsWith; } public DB_TransQuery setTransIDStartsWith(String value) { this.TransIDStartsWith = value; return this; } public String getTransIDEndsWith() { return TransIDEndsWith; } public DB_TransQuery setTransIDEndsWith(String value) { this.TransIDEndsWith = value; return this; } public String getTransIDContains() { return TransIDContains; } public DB_TransQuery setTransIDContains(String value) { this.TransIDContains = value; return this; } public String getTransIDLike() { return TransIDLike; } public DB_TransQuery setTransIDLike(String value) { this.TransIDLike = value; return this; } public ArrayList getTransIDBetween() { return TransIDBetween; } public DB_TransQuery setTransIDBetween(ArrayList value) { this.TransIDBetween = value; return this; } public ArrayList getTransIDIn() { return TransIDIn; } public DB_TransQuery setTransIDIn(ArrayList value) { this.TransIDIn = value; return this; } public String getDebtorID() { return DebtorID; } public DB_TransQuery setDebtorID(String value) { this.DebtorID = value; return this; } public String getDebtorIDStartsWith() { return DebtorIDStartsWith; } public DB_TransQuery setDebtorIDStartsWith(String value) { this.DebtorIDStartsWith = value; return this; } public String getDebtorIDEndsWith() { return DebtorIDEndsWith; } public DB_TransQuery setDebtorIDEndsWith(String value) { this.DebtorIDEndsWith = value; return this; } public String getDebtorIDContains() { return DebtorIDContains; } public DB_TransQuery setDebtorIDContains(String value) { this.DebtorIDContains = value; return this; } public String getDebtorIDLike() { return DebtorIDLike; } public DB_TransQuery setDebtorIDLike(String value) { this.DebtorIDLike = value; return this; } public ArrayList getDebtorIDBetween() { return DebtorIDBetween; } public DB_TransQuery setDebtorIDBetween(ArrayList value) { this.DebtorIDBetween = value; return this; } public ArrayList getDebtorIDIn() { return DebtorIDIn; } public DB_TransQuery setDebtorIDIn(ArrayList value) { this.DebtorIDIn = value; return this; } public Boolean isDebitCredit() { return DebitCredit; } public DB_TransQuery setDebitCredit(Boolean value) { this.DebitCredit = value; return this; } public String getSource() { return Source; } public DB_TransQuery setSource(String value) { this.Source = value; return this; } public String getSourceStartsWith() { return SourceStartsWith; } public DB_TransQuery setSourceStartsWith(String value) { this.SourceStartsWith = value; return this; } public String getSourceEndsWith() { return SourceEndsWith; } public DB_TransQuery setSourceEndsWith(String value) { this.SourceEndsWith = value; return this; } public String getSourceContains() { return SourceContains; } public DB_TransQuery setSourceContains(String value) { this.SourceContains = value; return this; } public String getSourceLike() { return SourceLike; } public DB_TransQuery setSourceLike(String value) { this.SourceLike = value; return this; } public ArrayList getSourceBetween() { return SourceBetween; } public DB_TransQuery setSourceBetween(ArrayList value) { this.SourceBetween = value; return this; } public ArrayList getSourceIn() { return SourceIn; } public DB_TransQuery setSourceIn(ArrayList value) { this.SourceIn = value; return this; } public String getRef() { return Ref; } public DB_TransQuery setRef(String value) { this.Ref = value; return this; } public String getRefStartsWith() { return RefStartsWith; } public DB_TransQuery setRefStartsWith(String value) { this.RefStartsWith = value; return this; } public String getRefEndsWith() { return RefEndsWith; } public DB_TransQuery setRefEndsWith(String value) { this.RefEndsWith = value; return this; } public String getRefContains() { return RefContains; } public DB_TransQuery setRefContains(String value) { this.RefContains = value; return this; } public String getRefLike() { return RefLike; } public DB_TransQuery setRefLike(String value) { this.RefLike = value; return this; } public ArrayList getRefBetween() { return RefBetween; } public DB_TransQuery setRefBetween(ArrayList value) { this.RefBetween = value; return this; } public ArrayList getRefIn() { return RefIn; } public DB_TransQuery setRefIn(ArrayList value) { this.RefIn = value; return this; } public String getRemark() { return Remark; } public DB_TransQuery setRemark(String value) { this.Remark = value; return this; } public String getRemarkStartsWith() { return RemarkStartsWith; } public DB_TransQuery setRemarkStartsWith(String value) { this.RemarkStartsWith = value; return this; } public String getRemarkEndsWith() { return RemarkEndsWith; } public DB_TransQuery setRemarkEndsWith(String value) { this.RemarkEndsWith = value; return this; } public String getRemarkContains() { return RemarkContains; } public DB_TransQuery setRemarkContains(String value) { this.RemarkContains = value; return this; } public String getRemarkLike() { return RemarkLike; } public DB_TransQuery setRemarkLike(String value) { this.RemarkLike = value; return this; } public ArrayList getRemarkBetween() { return RemarkBetween; } public DB_TransQuery setRemarkBetween(ArrayList value) { this.RemarkBetween = value; return this; } public ArrayList getRemarkIn() { return RemarkIn; } public DB_TransQuery setRemarkIn(ArrayList value) { this.RemarkIn = value; return this; } public Date getTranDate() { return TranDate; } public DB_TransQuery setTranDate(Date value) { this.TranDate = value; return this; } public Date getTranDateGreaterThanOrEqualTo() { return TranDateGreaterThanOrEqualTo; } public DB_TransQuery setTranDateGreaterThanOrEqualTo(Date value) { this.TranDateGreaterThanOrEqualTo = value; return this; } public Date getTranDateGreaterThan() { return TranDateGreaterThan; } public DB_TransQuery setTranDateGreaterThan(Date value) { this.TranDateGreaterThan = value; return this; } public Date getTranDateLessThan() { return TranDateLessThan; } public DB_TransQuery setTranDateLessThan(Date value) { this.TranDateLessThan = value; return this; } public Date getTranDateLessThanOrEqualTo() { return TranDateLessThanOrEqualTo; } public DB_TransQuery setTranDateLessThanOrEqualTo(Date value) { this.TranDateLessThanOrEqualTo = value; return this; } public Date getTranDateNotEqualTo() { return TranDateNotEqualTo; } public DB_TransQuery setTranDateNotEqualTo(Date value) { this.TranDateNotEqualTo = value; return this; } public ArrayList getTranDateBetween() { return TranDateBetween; } public DB_TransQuery setTranDateBetween(ArrayList value) { this.TranDateBetween = value; return this; } public ArrayList getTranDateIn() { return TranDateIn; } public DB_TransQuery setTranDateIn(ArrayList value) { this.TranDateIn = value; return this; } public String getInvRemitNo() { return InvRemitNo; } public DB_TransQuery setInvRemitNo(String value) { this.InvRemitNo = value; return this; } public String getInvRemitNoStartsWith() { return InvRemitNoStartsWith; } public DB_TransQuery setInvRemitNoStartsWith(String value) { this.InvRemitNoStartsWith = value; return this; } public String getInvRemitNoEndsWith() { return InvRemitNoEndsWith; } public DB_TransQuery setInvRemitNoEndsWith(String value) { this.InvRemitNoEndsWith = value; return this; } public String getInvRemitNoContains() { return InvRemitNoContains; } public DB_TransQuery setInvRemitNoContains(String value) { this.InvRemitNoContains = value; return this; } public String getInvRemitNoLike() { return InvRemitNoLike; } public DB_TransQuery setInvRemitNoLike(String value) { this.InvRemitNoLike = value; return this; } public ArrayList getInvRemitNoBetween() { return InvRemitNoBetween; } public DB_TransQuery setInvRemitNoBetween(ArrayList value) { this.InvRemitNoBetween = value; return this; } public ArrayList getInvRemitNoIn() { return InvRemitNoIn; } public DB_TransQuery setInvRemitNoIn(ArrayList value) { this.InvRemitNoIn = value; return this; } public BigDecimal getAmount() { return Amount; } public DB_TransQuery setAmount(BigDecimal value) { this.Amount = value; return this; } public BigDecimal getAmountGreaterThanOrEqualTo() { return AmountGreaterThanOrEqualTo; } public DB_TransQuery setAmountGreaterThanOrEqualTo(BigDecimal value) { this.AmountGreaterThanOrEqualTo = value; return this; } public BigDecimal getAmountGreaterThan() { return AmountGreaterThan; } public DB_TransQuery setAmountGreaterThan(BigDecimal value) { this.AmountGreaterThan = value; return this; } public BigDecimal getAmountLessThan() { return AmountLessThan; } public DB_TransQuery setAmountLessThan(BigDecimal value) { this.AmountLessThan = value; return this; } public BigDecimal getAmountLessThanOrEqualTo() { return AmountLessThanOrEqualTo; } public DB_TransQuery setAmountLessThanOrEqualTo(BigDecimal value) { this.AmountLessThanOrEqualTo = value; return this; } public BigDecimal getAmountNotEqualTo() { return AmountNotEqualTo; } public DB_TransQuery setAmountNotEqualTo(BigDecimal value) { this.AmountNotEqualTo = value; return this; } public ArrayList getAmountBetween() { return AmountBetween; } public DB_TransQuery setAmountBetween(ArrayList value) { this.AmountBetween = value; return this; } public ArrayList getAmountIn() { return AmountIn; } public DB_TransQuery setAmountIn(ArrayList value) { this.AmountIn = value; return this; } public BigDecimal getDiscountedAmount() { return DiscountedAmount; } public DB_TransQuery setDiscountedAmount(BigDecimal value) { this.DiscountedAmount = value; return this; } public BigDecimal getDiscountedAmountGreaterThanOrEqualTo() { return DiscountedAmountGreaterThanOrEqualTo; } public DB_TransQuery setDiscountedAmountGreaterThanOrEqualTo(BigDecimal value) { this.DiscountedAmountGreaterThanOrEqualTo = value; return this; } public BigDecimal getDiscountedAmountGreaterThan() { return DiscountedAmountGreaterThan; } public DB_TransQuery setDiscountedAmountGreaterThan(BigDecimal value) { this.DiscountedAmountGreaterThan = value; return this; } public BigDecimal getDiscountedAmountLessThan() { return DiscountedAmountLessThan; } public DB_TransQuery setDiscountedAmountLessThan(BigDecimal value) { this.DiscountedAmountLessThan = value; return this; } public BigDecimal getDiscountedAmountLessThanOrEqualTo() { return DiscountedAmountLessThanOrEqualTo; } public DB_TransQuery setDiscountedAmountLessThanOrEqualTo(BigDecimal value) { this.DiscountedAmountLessThanOrEqualTo = value; return this; } public BigDecimal getDiscountedAmountNotEqualTo() { return DiscountedAmountNotEqualTo; } public DB_TransQuery setDiscountedAmountNotEqualTo(BigDecimal value) { this.DiscountedAmountNotEqualTo = value; return this; } public ArrayList getDiscountedAmountBetween() { return DiscountedAmountBetween; } public DB_TransQuery setDiscountedAmountBetween(ArrayList value) { this.DiscountedAmountBetween = value; return this; } public ArrayList getDiscountedAmountIn() { return DiscountedAmountIn; } public DB_TransQuery setDiscountedAmountIn(ArrayList value) { this.DiscountedAmountIn = value; return this; } public Boolean isAgedOut() { return AgedOut; } public DB_TransQuery setAgedOut(Boolean value) { this.AgedOut = value; return this; } public String getSourceID() { return SourceID; } public DB_TransQuery setSourceID(String value) { this.SourceID = value; return this; } public String getSourceIDStartsWith() { return SourceIDStartsWith; } public DB_TransQuery setSourceIDStartsWith(String value) { this.SourceIDStartsWith = value; return this; } public String getSourceIDEndsWith() { return SourceIDEndsWith; } public DB_TransQuery setSourceIDEndsWith(String value) { this.SourceIDEndsWith = value; return this; } public String getSourceIDContains() { return SourceIDContains; } public DB_TransQuery setSourceIDContains(String value) { this.SourceIDContains = value; return this; } public String getSourceIDLike() { return SourceIDLike; } public DB_TransQuery setSourceIDLike(String value) { this.SourceIDLike = value; return this; } public ArrayList getSourceIDBetween() { return SourceIDBetween; } public DB_TransQuery setSourceIDBetween(ArrayList value) { this.SourceIDBetween = value; return this; } public ArrayList getSourceIDIn() { return SourceIDIn; } public DB_TransQuery setSourceIDIn(ArrayList value) { this.SourceIDIn = value; return this; } public BigDecimal getAllocatedAmount() { return AllocatedAmount; } public DB_TransQuery setAllocatedAmount(BigDecimal value) { this.AllocatedAmount = value; return this; } public BigDecimal getAllocatedAmountGreaterThanOrEqualTo() { return AllocatedAmountGreaterThanOrEqualTo; } public DB_TransQuery setAllocatedAmountGreaterThanOrEqualTo(BigDecimal value) { this.AllocatedAmountGreaterThanOrEqualTo = value; return this; } public BigDecimal getAllocatedAmountGreaterThan() { return AllocatedAmountGreaterThan; } public DB_TransQuery setAllocatedAmountGreaterThan(BigDecimal value) { this.AllocatedAmountGreaterThan = value; return this; } public BigDecimal getAllocatedAmountLessThan() { return AllocatedAmountLessThan; } public DB_TransQuery setAllocatedAmountLessThan(BigDecimal value) { this.AllocatedAmountLessThan = value; return this; } public BigDecimal getAllocatedAmountLessThanOrEqualTo() { return AllocatedAmountLessThanOrEqualTo; } public DB_TransQuery setAllocatedAmountLessThanOrEqualTo(BigDecimal value) { this.AllocatedAmountLessThanOrEqualTo = value; return this; } public BigDecimal getAllocatedAmountNotEqualTo() { return AllocatedAmountNotEqualTo; } public DB_TransQuery setAllocatedAmountNotEqualTo(BigDecimal value) { this.AllocatedAmountNotEqualTo = value; return this; } public ArrayList getAllocatedAmountBetween() { return AllocatedAmountBetween; } public DB_TransQuery setAllocatedAmountBetween(ArrayList value) { this.AllocatedAmountBetween = value; return this; } public ArrayList getAllocatedAmountIn() { return AllocatedAmountIn; } public DB_TransQuery setAllocatedAmountIn(ArrayList value) { this.AllocatedAmountIn = value; return this; } public Date getInitDateTime() { return InitDateTime; } public DB_TransQuery setInitDateTime(Date value) { this.InitDateTime = value; return this; } public Date getInitDateTimeGreaterThanOrEqualTo() { return InitDateTimeGreaterThanOrEqualTo; } public DB_TransQuery setInitDateTimeGreaterThanOrEqualTo(Date value) { this.InitDateTimeGreaterThanOrEqualTo = value; return this; } public Date getInitDateTimeGreaterThan() { return InitDateTimeGreaterThan; } public DB_TransQuery setInitDateTimeGreaterThan(Date value) { this.InitDateTimeGreaterThan = value; return this; } public Date getInitDateTimeLessThan() { return InitDateTimeLessThan; } public DB_TransQuery setInitDateTimeLessThan(Date value) { this.InitDateTimeLessThan = value; return this; } public Date getInitDateTimeLessThanOrEqualTo() { return InitDateTimeLessThanOrEqualTo; } public DB_TransQuery setInitDateTimeLessThanOrEqualTo(Date value) { this.InitDateTimeLessThanOrEqualTo = value; return this; } public Date getInitDateTimeNotEqualTo() { return InitDateTimeNotEqualTo; } public DB_TransQuery setInitDateTimeNotEqualTo(Date value) { this.InitDateTimeNotEqualTo = value; return this; } public ArrayList getInitDateTimeBetween() { return InitDateTimeBetween; } public DB_TransQuery setInitDateTimeBetween(ArrayList value) { this.InitDateTimeBetween = value; return this; } public ArrayList getInitDateTimeIn() { return InitDateTimeIn; } public DB_TransQuery setInitDateTimeIn(ArrayList value) { this.InitDateTimeIn = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public DB_TransQuery setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getLastSavedDateTimeGreaterThanOrEqualTo() { return LastSavedDateTimeGreaterThanOrEqualTo; } public DB_TransQuery setLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.LastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeGreaterThan() { return LastSavedDateTimeGreaterThan; } public DB_TransQuery setLastSavedDateTimeGreaterThan(Date value) { this.LastSavedDateTimeGreaterThan = value; return this; } public Date getLastSavedDateTimeLessThan() { return LastSavedDateTimeLessThan; } public DB_TransQuery setLastSavedDateTimeLessThan(Date value) { this.LastSavedDateTimeLessThan = value; return this; } public Date getLastSavedDateTimeLessThanOrEqualTo() { return LastSavedDateTimeLessThanOrEqualTo; } public DB_TransQuery setLastSavedDateTimeLessThanOrEqualTo(Date value) { this.LastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeNotEqualTo() { return LastSavedDateTimeNotEqualTo; } public DB_TransQuery setLastSavedDateTimeNotEqualTo(Date value) { this.LastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getLastSavedDateTimeBetween() { return LastSavedDateTimeBetween; } public DB_TransQuery setLastSavedDateTimeBetween(ArrayList value) { this.LastSavedDateTimeBetween = value; return this; } public ArrayList getLastSavedDateTimeIn() { return LastSavedDateTimeIn; } public DB_TransQuery setLastSavedDateTimeIn(ArrayList value) { this.LastSavedDateTimeIn = value; return this; } public Short getSubType() { return SubType; } public DB_TransQuery setSubType(Short value) { this.SubType = value; return this; } public Short getSubTypeGreaterThanOrEqualTo() { return SubTypeGreaterThanOrEqualTo; } public DB_TransQuery setSubTypeGreaterThanOrEqualTo(Short value) { this.SubTypeGreaterThanOrEqualTo = value; return this; } public Short getSubTypeGreaterThan() { return SubTypeGreaterThan; } public DB_TransQuery setSubTypeGreaterThan(Short value) { this.SubTypeGreaterThan = value; return this; } public Short getSubTypeLessThan() { return SubTypeLessThan; } public DB_TransQuery setSubTypeLessThan(Short value) { this.SubTypeLessThan = value; return this; } public Short getSubTypeLessThanOrEqualTo() { return SubTypeLessThanOrEqualTo; } public DB_TransQuery setSubTypeLessThanOrEqualTo(Short value) { this.SubTypeLessThanOrEqualTo = value; return this; } public Short getSubTypeNotEqualTo() { return SubTypeNotEqualTo; } public DB_TransQuery setSubTypeNotEqualTo(Short value) { this.SubTypeNotEqualTo = value; return this; } public ArrayList getSubTypeBetween() { return SubTypeBetween; } public DB_TransQuery setSubTypeBetween(ArrayList value) { this.SubTypeBetween = value; return this; } public ArrayList getSubTypeIn() { return SubTypeIn; } public DB_TransQuery setSubTypeIn(ArrayList value) { this.SubTypeIn = value; return this; } public String getBatchNo() { return BatchNo; } public DB_TransQuery setBatchNo(String value) { this.BatchNo = value; return this; } public String getBatchNoStartsWith() { return BatchNoStartsWith; } public DB_TransQuery setBatchNoStartsWith(String value) { this.BatchNoStartsWith = value; return this; } public String getBatchNoEndsWith() { return BatchNoEndsWith; } public DB_TransQuery setBatchNoEndsWith(String value) { this.BatchNoEndsWith = value; return this; } public String getBatchNoContains() { return BatchNoContains; } public DB_TransQuery setBatchNoContains(String value) { this.BatchNoContains = value; return this; } public String getBatchNoLike() { return BatchNoLike; } public DB_TransQuery setBatchNoLike(String value) { this.BatchNoLike = value; return this; } public ArrayList getBatchNoBetween() { return BatchNoBetween; } public DB_TransQuery setBatchNoBetween(ArrayList value) { this.BatchNoBetween = value; return this; } public ArrayList getBatchNoIn() { return BatchNoIn; } public DB_TransQuery setBatchNoIn(ArrayList value) { this.BatchNoIn = value; return this; } public String getChildDebtorID() { return ChildDebtorID; } public DB_TransQuery setChildDebtorID(String value) { this.ChildDebtorID = value; return this; } public String getChildDebtorIDStartsWith() { return ChildDebtorIDStartsWith; } public DB_TransQuery setChildDebtorIDStartsWith(String value) { this.ChildDebtorIDStartsWith = value; return this; } public String getChildDebtorIDEndsWith() { return ChildDebtorIDEndsWith; } public DB_TransQuery setChildDebtorIDEndsWith(String value) { this.ChildDebtorIDEndsWith = value; return this; } public String getChildDebtorIDContains() { return ChildDebtorIDContains; } public DB_TransQuery setChildDebtorIDContains(String value) { this.ChildDebtorIDContains = value; return this; } public String getChildDebtorIDLike() { return ChildDebtorIDLike; } public DB_TransQuery setChildDebtorIDLike(String value) { this.ChildDebtorIDLike = value; return this; } public ArrayList getChildDebtorIDBetween() { return ChildDebtorIDBetween; } public DB_TransQuery setChildDebtorIDBetween(ArrayList value) { this.ChildDebtorIDBetween = value; return this; } public ArrayList getChildDebtorIDIn() { return ChildDebtorIDIn; } public DB_TransQuery setChildDebtorIDIn(ArrayList value) { this.ChildDebtorIDIn = value; return this; } public BigDecimal getGstAmount() { return GSTAmount; } public DB_TransQuery setGstAmount(BigDecimal value) { this.GSTAmount = value; return this; } public BigDecimal getGstAmountGreaterThanOrEqualTo() { return GSTAmountGreaterThanOrEqualTo; } public DB_TransQuery setGstAmountGreaterThanOrEqualTo(BigDecimal value) { this.GSTAmountGreaterThanOrEqualTo = value; return this; } public BigDecimal getGstAmountGreaterThan() { return GSTAmountGreaterThan; } public DB_TransQuery setGstAmountGreaterThan(BigDecimal value) { this.GSTAmountGreaterThan = value; return this; } public BigDecimal getGstAmountLessThan() { return GSTAmountLessThan; } public DB_TransQuery setGstAmountLessThan(BigDecimal value) { this.GSTAmountLessThan = value; return this; } public BigDecimal getGstAmountLessThanOrEqualTo() { return GSTAmountLessThanOrEqualTo; } public DB_TransQuery setGstAmountLessThanOrEqualTo(BigDecimal value) { this.GSTAmountLessThanOrEqualTo = value; return this; } public BigDecimal getGstAmountNotEqualTo() { return GSTAmountNotEqualTo; } public DB_TransQuery setGstAmountNotEqualTo(BigDecimal value) { this.GSTAmountNotEqualTo = value; return this; } public ArrayList getGstAmountBetween() { return GSTAmountBetween; } public DB_TransQuery setGstAmountBetween(ArrayList value) { this.GSTAmountBetween = value; return this; } public ArrayList getGstAmountIn() { return GSTAmountIn; } public DB_TransQuery setGstAmountIn(ArrayList value) { this.GSTAmountIn = value; return this; } public Date getDueDate() { return DueDate; } public DB_TransQuery setDueDate(Date value) { this.DueDate = value; return this; } public Date getDueDateGreaterThanOrEqualTo() { return DueDateGreaterThanOrEqualTo; } public DB_TransQuery setDueDateGreaterThanOrEqualTo(Date value) { this.DueDateGreaterThanOrEqualTo = value; return this; } public Date getDueDateGreaterThan() { return DueDateGreaterThan; } public DB_TransQuery setDueDateGreaterThan(Date value) { this.DueDateGreaterThan = value; return this; } public Date getDueDateLessThan() { return DueDateLessThan; } public DB_TransQuery setDueDateLessThan(Date value) { this.DueDateLessThan = value; return this; } public Date getDueDateLessThanOrEqualTo() { return DueDateLessThanOrEqualTo; } public DB_TransQuery setDueDateLessThanOrEqualTo(Date value) { this.DueDateLessThanOrEqualTo = value; return this; } public Date getDueDateNotEqualTo() { return DueDateNotEqualTo; } public DB_TransQuery setDueDateNotEqualTo(Date value) { this.DueDateNotEqualTo = value; return this; } public ArrayList getDueDateBetween() { return DueDateBetween; } public DB_TransQuery setDueDateBetween(ArrayList value) { this.DueDateBetween = value; return this; } public ArrayList getDueDateIn() { return DueDateIn; } public DB_TransQuery setDueDateIn(ArrayList value) { this.DueDateIn = value; return this; } public BigDecimal getFxAmount() { return FXAmount; } public DB_TransQuery setFxAmount(BigDecimal value) { this.FXAmount = value; return this; } public BigDecimal getFxAmountGreaterThanOrEqualTo() { return FXAmountGreaterThanOrEqualTo; } public DB_TransQuery setFxAmountGreaterThanOrEqualTo(BigDecimal value) { this.FXAmountGreaterThanOrEqualTo = value; return this; } public BigDecimal getFxAmountGreaterThan() { return FXAmountGreaterThan; } public DB_TransQuery setFxAmountGreaterThan(BigDecimal value) { this.FXAmountGreaterThan = value; return this; } public BigDecimal getFxAmountLessThan() { return FXAmountLessThan; } public DB_TransQuery setFxAmountLessThan(BigDecimal value) { this.FXAmountLessThan = value; return this; } public BigDecimal getFxAmountLessThanOrEqualTo() { return FXAmountLessThanOrEqualTo; } public DB_TransQuery setFxAmountLessThanOrEqualTo(BigDecimal value) { this.FXAmountLessThanOrEqualTo = value; return this; } public BigDecimal getFxAmountNotEqualTo() { return FXAmountNotEqualTo; } public DB_TransQuery setFxAmountNotEqualTo(BigDecimal value) { this.FXAmountNotEqualTo = value; return this; } public ArrayList getFxAmountBetween() { return FXAmountBetween; } public DB_TransQuery setFxAmountBetween(ArrayList value) { this.FXAmountBetween = value; return this; } public ArrayList getFxAmountIn() { return FXAmountIn; } public DB_TransQuery setFxAmountIn(ArrayList value) { this.FXAmountIn = value; return this; } public BigDecimal getFxAllocAmount() { return FXAllocAmount; } public DB_TransQuery setFxAllocAmount(BigDecimal value) { this.FXAllocAmount = value; return this; } public BigDecimal getFxAllocAmountGreaterThanOrEqualTo() { return FXAllocAmountGreaterThanOrEqualTo; } public DB_TransQuery setFxAllocAmountGreaterThanOrEqualTo(BigDecimal value) { this.FXAllocAmountGreaterThanOrEqualTo = value; return this; } public BigDecimal getFxAllocAmountGreaterThan() { return FXAllocAmountGreaterThan; } public DB_TransQuery setFxAllocAmountGreaterThan(BigDecimal value) { this.FXAllocAmountGreaterThan = value; return this; } public BigDecimal getFxAllocAmountLessThan() { return FXAllocAmountLessThan; } public DB_TransQuery setFxAllocAmountLessThan(BigDecimal value) { this.FXAllocAmountLessThan = value; return this; } public BigDecimal getFxAllocAmountLessThanOrEqualTo() { return FXAllocAmountLessThanOrEqualTo; } public DB_TransQuery setFxAllocAmountLessThanOrEqualTo(BigDecimal value) { this.FXAllocAmountLessThanOrEqualTo = value; return this; } public BigDecimal getFxAllocAmountNotEqualTo() { return FXAllocAmountNotEqualTo; } public DB_TransQuery setFxAllocAmountNotEqualTo(BigDecimal value) { this.FXAllocAmountNotEqualTo = value; return this; } public ArrayList getFxAllocAmountBetween() { return FXAllocAmountBetween; } public DB_TransQuery setFxAllocAmountBetween(ArrayList value) { this.FXAllocAmountBetween = value; return this; } public ArrayList getFxAllocAmountIn() { return FXAllocAmountIn; } public DB_TransQuery setFxAllocAmountIn(ArrayList value) { this.FXAllocAmountIn = value; return this; } public BigDecimal getCurrencyRateUsed() { return CurrencyRateUsed; } public DB_TransQuery setCurrencyRateUsed(BigDecimal value) { this.CurrencyRateUsed = value; return this; } public BigDecimal getCurrencyRateUsedGreaterThanOrEqualTo() { return CurrencyRateUsedGreaterThanOrEqualTo; } public DB_TransQuery setCurrencyRateUsedGreaterThanOrEqualTo(BigDecimal value) { this.CurrencyRateUsedGreaterThanOrEqualTo = value; return this; } public BigDecimal getCurrencyRateUsedGreaterThan() { return CurrencyRateUsedGreaterThan; } public DB_TransQuery setCurrencyRateUsedGreaterThan(BigDecimal value) { this.CurrencyRateUsedGreaterThan = value; return this; } public BigDecimal getCurrencyRateUsedLessThan() { return CurrencyRateUsedLessThan; } public DB_TransQuery setCurrencyRateUsedLessThan(BigDecimal value) { this.CurrencyRateUsedLessThan = value; return this; } public BigDecimal getCurrencyRateUsedLessThanOrEqualTo() { return CurrencyRateUsedLessThanOrEqualTo; } public DB_TransQuery setCurrencyRateUsedLessThanOrEqualTo(BigDecimal value) { this.CurrencyRateUsedLessThanOrEqualTo = value; return this; } public BigDecimal getCurrencyRateUsedNotEqualTo() { return CurrencyRateUsedNotEqualTo; } public DB_TransQuery setCurrencyRateUsedNotEqualTo(BigDecimal value) { this.CurrencyRateUsedNotEqualTo = value; return this; } public ArrayList getCurrencyRateUsedBetween() { return CurrencyRateUsedBetween; } public DB_TransQuery setCurrencyRateUsedBetween(ArrayList value) { this.CurrencyRateUsedBetween = value; return this; } public ArrayList getCurrencyRateUsedIn() { return CurrencyRateUsedIn; } public DB_TransQuery setCurrencyRateUsedIn(ArrayList value) { this.CurrencyRateUsedIn = value; return this; } public BigDecimal getRealisedGainLoss() { return RealisedGainLoss; } public DB_TransQuery setRealisedGainLoss(BigDecimal value) { this.RealisedGainLoss = value; return this; } public BigDecimal getRealisedGainLossGreaterThanOrEqualTo() { return RealisedGainLossGreaterThanOrEqualTo; } public DB_TransQuery setRealisedGainLossGreaterThanOrEqualTo(BigDecimal value) { this.RealisedGainLossGreaterThanOrEqualTo = value; return this; } public BigDecimal getRealisedGainLossGreaterThan() { return RealisedGainLossGreaterThan; } public DB_TransQuery setRealisedGainLossGreaterThan(BigDecimal value) { this.RealisedGainLossGreaterThan = value; return this; } public BigDecimal getRealisedGainLossLessThan() { return RealisedGainLossLessThan; } public DB_TransQuery setRealisedGainLossLessThan(BigDecimal value) { this.RealisedGainLossLessThan = value; return this; } public BigDecimal getRealisedGainLossLessThanOrEqualTo() { return RealisedGainLossLessThanOrEqualTo; } public DB_TransQuery setRealisedGainLossLessThanOrEqualTo(BigDecimal value) { this.RealisedGainLossLessThanOrEqualTo = value; return this; } public BigDecimal getRealisedGainLossNotEqualTo() { return RealisedGainLossNotEqualTo; } public DB_TransQuery setRealisedGainLossNotEqualTo(BigDecimal value) { this.RealisedGainLossNotEqualTo = value; return this; } public ArrayList getRealisedGainLossBetween() { return RealisedGainLossBetween; } public DB_TransQuery setRealisedGainLossBetween(ArrayList value) { this.RealisedGainLossBetween = value; return this; } public ArrayList getRealisedGainLossIn() { return RealisedGainLossIn; } public DB_TransQuery setRealisedGainLossIn(ArrayList value) { this.RealisedGainLossIn = value; return this; } public BigDecimal getUnRealisedGainLoss() { return UnRealisedGainLoss; } public DB_TransQuery setUnRealisedGainLoss(BigDecimal value) { this.UnRealisedGainLoss = value; return this; } public BigDecimal getUnRealisedGainLossGreaterThanOrEqualTo() { return UnRealisedGainLossGreaterThanOrEqualTo; } public DB_TransQuery setUnRealisedGainLossGreaterThanOrEqualTo(BigDecimal value) { this.UnRealisedGainLossGreaterThanOrEqualTo = value; return this; } public BigDecimal getUnRealisedGainLossGreaterThan() { return UnRealisedGainLossGreaterThan; } public DB_TransQuery setUnRealisedGainLossGreaterThan(BigDecimal value) { this.UnRealisedGainLossGreaterThan = value; return this; } public BigDecimal getUnRealisedGainLossLessThan() { return UnRealisedGainLossLessThan; } public DB_TransQuery setUnRealisedGainLossLessThan(BigDecimal value) { this.UnRealisedGainLossLessThan = value; return this; } public BigDecimal getUnRealisedGainLossLessThanOrEqualTo() { return UnRealisedGainLossLessThanOrEqualTo; } public DB_TransQuery setUnRealisedGainLossLessThanOrEqualTo(BigDecimal value) { this.UnRealisedGainLossLessThanOrEqualTo = value; return this; } public BigDecimal getUnRealisedGainLossNotEqualTo() { return UnRealisedGainLossNotEqualTo; } public DB_TransQuery setUnRealisedGainLossNotEqualTo(BigDecimal value) { this.UnRealisedGainLossNotEqualTo = value; return this; } public ArrayList getUnRealisedGainLossBetween() { return UnRealisedGainLossBetween; } public DB_TransQuery setUnRealisedGainLossBetween(ArrayList value) { this.UnRealisedGainLossBetween = value; return this; } public ArrayList getUnRealisedGainLossIn() { return UnRealisedGainLossIn; } public DB_TransQuery setUnRealisedGainLossIn(ArrayList value) { this.UnRealisedGainLossIn = value; return this; } public String getCurrencyID() { return CurrencyID; } public DB_TransQuery setCurrencyID(String value) { this.CurrencyID = value; return this; } public String getCurrencyIDStartsWith() { return CurrencyIDStartsWith; } public DB_TransQuery setCurrencyIDStartsWith(String value) { this.CurrencyIDStartsWith = value; return this; } public String getCurrencyIDEndsWith() { return CurrencyIDEndsWith; } public DB_TransQuery setCurrencyIDEndsWith(String value) { this.CurrencyIDEndsWith = value; return this; } public String getCurrencyIDContains() { return CurrencyIDContains; } public DB_TransQuery setCurrencyIDContains(String value) { this.CurrencyIDContains = value; return this; } public String getCurrencyIDLike() { return CurrencyIDLike; } public DB_TransQuery setCurrencyIDLike(String value) { this.CurrencyIDLike = value; return this; } public ArrayList getCurrencyIDBetween() { return CurrencyIDBetween; } public DB_TransQuery setCurrencyIDBetween(ArrayList value) { this.CurrencyIDBetween = value; return this; } public ArrayList getCurrencyIDIn() { return CurrencyIDIn; } public DB_TransQuery setCurrencyIDIn(ArrayList value) { this.CurrencyIDIn = value; return this; } public BigDecimal getCartage1Amount() { return Cartage1Amount; } public DB_TransQuery setCartage1Amount(BigDecimal value) { this.Cartage1Amount = value; return this; } public BigDecimal getCartage1AmountGreaterThanOrEqualTo() { return Cartage1AmountGreaterThanOrEqualTo; } public DB_TransQuery setCartage1AmountGreaterThanOrEqualTo(BigDecimal value) { this.Cartage1AmountGreaterThanOrEqualTo = value; return this; } public BigDecimal getCartage1AmountGreaterThan() { return Cartage1AmountGreaterThan; } public DB_TransQuery setCartage1AmountGreaterThan(BigDecimal value) { this.Cartage1AmountGreaterThan = value; return this; } public BigDecimal getCartage1AmountLessThan() { return Cartage1AmountLessThan; } public DB_TransQuery setCartage1AmountLessThan(BigDecimal value) { this.Cartage1AmountLessThan = value; return this; } public BigDecimal getCartage1AmountLessThanOrEqualTo() { return Cartage1AmountLessThanOrEqualTo; } public DB_TransQuery setCartage1AmountLessThanOrEqualTo(BigDecimal value) { this.Cartage1AmountLessThanOrEqualTo = value; return this; } public BigDecimal getCartage1AmountNotEqualTo() { return Cartage1AmountNotEqualTo; } public DB_TransQuery setCartage1AmountNotEqualTo(BigDecimal value) { this.Cartage1AmountNotEqualTo = value; return this; } public ArrayList getCartage1AmountBetween() { return Cartage1AmountBetween; } public DB_TransQuery setCartage1AmountBetween(ArrayList value) { this.Cartage1AmountBetween = value; return this; } public ArrayList getCartage1AmountIn() { return Cartage1AmountIn; } public DB_TransQuery setCartage1AmountIn(ArrayList value) { this.Cartage1AmountIn = value; return this; } public BigDecimal getCartage1TaxAmount() { return Cartage1TaxAmount; } public DB_TransQuery setCartage1TaxAmount(BigDecimal value) { this.Cartage1TaxAmount = value; return this; } public BigDecimal getCartage1TaxAmountGreaterThanOrEqualTo() { return Cartage1TaxAmountGreaterThanOrEqualTo; } public DB_TransQuery setCartage1TaxAmountGreaterThanOrEqualTo(BigDecimal value) { this.Cartage1TaxAmountGreaterThanOrEqualTo = value; return this; } public BigDecimal getCartage1TaxAmountGreaterThan() { return Cartage1TaxAmountGreaterThan; } public DB_TransQuery setCartage1TaxAmountGreaterThan(BigDecimal value) { this.Cartage1TaxAmountGreaterThan = value; return this; } public BigDecimal getCartage1TaxAmountLessThan() { return Cartage1TaxAmountLessThan; } public DB_TransQuery setCartage1TaxAmountLessThan(BigDecimal value) { this.Cartage1TaxAmountLessThan = value; return this; } public BigDecimal getCartage1TaxAmountLessThanOrEqualTo() { return Cartage1TaxAmountLessThanOrEqualTo; } public DB_TransQuery setCartage1TaxAmountLessThanOrEqualTo(BigDecimal value) { this.Cartage1TaxAmountLessThanOrEqualTo = value; return this; } public BigDecimal getCartage1TaxAmountNotEqualTo() { return Cartage1TaxAmountNotEqualTo; } public DB_TransQuery setCartage1TaxAmountNotEqualTo(BigDecimal value) { this.Cartage1TaxAmountNotEqualTo = value; return this; } public ArrayList getCartage1TaxAmountBetween() { return Cartage1TaxAmountBetween; } public DB_TransQuery setCartage1TaxAmountBetween(ArrayList value) { this.Cartage1TaxAmountBetween = value; return this; } public ArrayList getCartage1TaxAmountIn() { return Cartage1TaxAmountIn; } public DB_TransQuery setCartage1TaxAmountIn(ArrayList value) { this.Cartage1TaxAmountIn = value; return this; } public BigDecimal getCartage2Amount() { return Cartage2Amount; } public DB_TransQuery setCartage2Amount(BigDecimal value) { this.Cartage2Amount = value; return this; } public BigDecimal getCartage2AmountGreaterThanOrEqualTo() { return Cartage2AmountGreaterThanOrEqualTo; } public DB_TransQuery setCartage2AmountGreaterThanOrEqualTo(BigDecimal value) { this.Cartage2AmountGreaterThanOrEqualTo = value; return this; } public BigDecimal getCartage2AmountGreaterThan() { return Cartage2AmountGreaterThan; } public DB_TransQuery setCartage2AmountGreaterThan(BigDecimal value) { this.Cartage2AmountGreaterThan = value; return this; } public BigDecimal getCartage2AmountLessThan() { return Cartage2AmountLessThan; } public DB_TransQuery setCartage2AmountLessThan(BigDecimal value) { this.Cartage2AmountLessThan = value; return this; } public BigDecimal getCartage2AmountLessThanOrEqualTo() { return Cartage2AmountLessThanOrEqualTo; } public DB_TransQuery setCartage2AmountLessThanOrEqualTo(BigDecimal value) { this.Cartage2AmountLessThanOrEqualTo = value; return this; } public BigDecimal getCartage2AmountNotEqualTo() { return Cartage2AmountNotEqualTo; } public DB_TransQuery setCartage2AmountNotEqualTo(BigDecimal value) { this.Cartage2AmountNotEqualTo = value; return this; } public ArrayList getCartage2AmountBetween() { return Cartage2AmountBetween; } public DB_TransQuery setCartage2AmountBetween(ArrayList value) { this.Cartage2AmountBetween = value; return this; } public ArrayList getCartage2AmountIn() { return Cartage2AmountIn; } public DB_TransQuery setCartage2AmountIn(ArrayList value) { this.Cartage2AmountIn = value; return this; } public BigDecimal getCartage2TaxAmount() { return Cartage2TaxAmount; } public DB_TransQuery setCartage2TaxAmount(BigDecimal value) { this.Cartage2TaxAmount = value; return this; } public BigDecimal getCartage2TaxAmountGreaterThanOrEqualTo() { return Cartage2TaxAmountGreaterThanOrEqualTo; } public DB_TransQuery setCartage2TaxAmountGreaterThanOrEqualTo(BigDecimal value) { this.Cartage2TaxAmountGreaterThanOrEqualTo = value; return this; } public BigDecimal getCartage2TaxAmountGreaterThan() { return Cartage2TaxAmountGreaterThan; } public DB_TransQuery setCartage2TaxAmountGreaterThan(BigDecimal value) { this.Cartage2TaxAmountGreaterThan = value; return this; } public BigDecimal getCartage2TaxAmountLessThan() { return Cartage2TaxAmountLessThan; } public DB_TransQuery setCartage2TaxAmountLessThan(BigDecimal value) { this.Cartage2TaxAmountLessThan = value; return this; } public BigDecimal getCartage2TaxAmountLessThanOrEqualTo() { return Cartage2TaxAmountLessThanOrEqualTo; } public DB_TransQuery setCartage2TaxAmountLessThanOrEqualTo(BigDecimal value) { this.Cartage2TaxAmountLessThanOrEqualTo = value; return this; } public BigDecimal getCartage2TaxAmountNotEqualTo() { return Cartage2TaxAmountNotEqualTo; } public DB_TransQuery setCartage2TaxAmountNotEqualTo(BigDecimal value) { this.Cartage2TaxAmountNotEqualTo = value; return this; } public ArrayList getCartage2TaxAmountBetween() { return Cartage2TaxAmountBetween; } public DB_TransQuery setCartage2TaxAmountBetween(ArrayList value) { this.Cartage2TaxAmountBetween = value; return this; } public ArrayList getCartage2TaxAmountIn() { return Cartage2TaxAmountIn; } public DB_TransQuery setCartage2TaxAmountIn(ArrayList value) { this.Cartage2TaxAmountIn = value; return this; } public BigDecimal getCartage3Amount() { return Cartage3Amount; } public DB_TransQuery setCartage3Amount(BigDecimal value) { this.Cartage3Amount = value; return this; } public BigDecimal getCartage3AmountGreaterThanOrEqualTo() { return Cartage3AmountGreaterThanOrEqualTo; } public DB_TransQuery setCartage3AmountGreaterThanOrEqualTo(BigDecimal value) { this.Cartage3AmountGreaterThanOrEqualTo = value; return this; } public BigDecimal getCartage3AmountGreaterThan() { return Cartage3AmountGreaterThan; } public DB_TransQuery setCartage3AmountGreaterThan(BigDecimal value) { this.Cartage3AmountGreaterThan = value; return this; } public BigDecimal getCartage3AmountLessThan() { return Cartage3AmountLessThan; } public DB_TransQuery setCartage3AmountLessThan(BigDecimal value) { this.Cartage3AmountLessThan = value; return this; } public BigDecimal getCartage3AmountLessThanOrEqualTo() { return Cartage3AmountLessThanOrEqualTo; } public DB_TransQuery setCartage3AmountLessThanOrEqualTo(BigDecimal value) { this.Cartage3AmountLessThanOrEqualTo = value; return this; } public BigDecimal getCartage3AmountNotEqualTo() { return Cartage3AmountNotEqualTo; } public DB_TransQuery setCartage3AmountNotEqualTo(BigDecimal value) { this.Cartage3AmountNotEqualTo = value; return this; } public ArrayList getCartage3AmountBetween() { return Cartage3AmountBetween; } public DB_TransQuery setCartage3AmountBetween(ArrayList value) { this.Cartage3AmountBetween = value; return this; } public ArrayList getCartage3AmountIn() { return Cartage3AmountIn; } public DB_TransQuery setCartage3AmountIn(ArrayList value) { this.Cartage3AmountIn = value; return this; } public BigDecimal getCartage3TaxAmount() { return Cartage3TaxAmount; } public DB_TransQuery setCartage3TaxAmount(BigDecimal value) { this.Cartage3TaxAmount = value; return this; } public BigDecimal getCartage3TaxAmountGreaterThanOrEqualTo() { return Cartage3TaxAmountGreaterThanOrEqualTo; } public DB_TransQuery setCartage3TaxAmountGreaterThanOrEqualTo(BigDecimal value) { this.Cartage3TaxAmountGreaterThanOrEqualTo = value; return this; } public BigDecimal getCartage3TaxAmountGreaterThan() { return Cartage3TaxAmountGreaterThan; } public DB_TransQuery setCartage3TaxAmountGreaterThan(BigDecimal value) { this.Cartage3TaxAmountGreaterThan = value; return this; } public BigDecimal getCartage3TaxAmountLessThan() { return Cartage3TaxAmountLessThan; } public DB_TransQuery setCartage3TaxAmountLessThan(BigDecimal value) { this.Cartage3TaxAmountLessThan = value; return this; } public BigDecimal getCartage3TaxAmountLessThanOrEqualTo() { return Cartage3TaxAmountLessThanOrEqualTo; } public DB_TransQuery setCartage3TaxAmountLessThanOrEqualTo(BigDecimal value) { this.Cartage3TaxAmountLessThanOrEqualTo = value; return this; } public BigDecimal getCartage3TaxAmountNotEqualTo() { return Cartage3TaxAmountNotEqualTo; } public DB_TransQuery setCartage3TaxAmountNotEqualTo(BigDecimal value) { this.Cartage3TaxAmountNotEqualTo = value; return this; } public ArrayList getCartage3TaxAmountBetween() { return Cartage3TaxAmountBetween; } public DB_TransQuery setCartage3TaxAmountBetween(ArrayList value) { this.Cartage3TaxAmountBetween = value; return this; } public ArrayList getCartage3TaxAmountIn() { return Cartage3TaxAmountIn; } public DB_TransQuery setCartage3TaxAmountIn(ArrayList value) { this.Cartage3TaxAmountIn = value; return this; } public Short getFxDecimalPlaces() { return FXDecimalPlaces; } public DB_TransQuery setFxDecimalPlaces(Short value) { this.FXDecimalPlaces = value; return this; } public Short getFxDecimalPlacesGreaterThanOrEqualTo() { return FXDecimalPlacesGreaterThanOrEqualTo; } public DB_TransQuery setFxDecimalPlacesGreaterThanOrEqualTo(Short value) { this.FXDecimalPlacesGreaterThanOrEqualTo = value; return this; } public Short getFxDecimalPlacesGreaterThan() { return FXDecimalPlacesGreaterThan; } public DB_TransQuery setFxDecimalPlacesGreaterThan(Short value) { this.FXDecimalPlacesGreaterThan = value; return this; } public Short getFxDecimalPlacesLessThan() { return FXDecimalPlacesLessThan; } public DB_TransQuery setFxDecimalPlacesLessThan(Short value) { this.FXDecimalPlacesLessThan = value; return this; } public Short getFxDecimalPlacesLessThanOrEqualTo() { return FXDecimalPlacesLessThanOrEqualTo; } public DB_TransQuery setFxDecimalPlacesLessThanOrEqualTo(Short value) { this.FXDecimalPlacesLessThanOrEqualTo = value; return this; } public Short getFxDecimalPlacesNotEqualTo() { return FXDecimalPlacesNotEqualTo; } public DB_TransQuery setFxDecimalPlacesNotEqualTo(Short value) { this.FXDecimalPlacesNotEqualTo = value; return this; } public ArrayList getFxDecimalPlacesBetween() { return FXDecimalPlacesBetween; } public DB_TransQuery setFxDecimalPlacesBetween(ArrayList value) { this.FXDecimalPlacesBetween = value; return this; } public ArrayList getFxDecimalPlacesIn() { return FXDecimalPlacesIn; } public DB_TransQuery setFxDecimalPlacesIn(ArrayList value) { this.FXDecimalPlacesIn = value; return this; } public Short getDecimalPlaces() { return DecimalPlaces; } public DB_TransQuery setDecimalPlaces(Short value) { this.DecimalPlaces = value; return this; } public Short getDecimalPlacesGreaterThanOrEqualTo() { return DecimalPlacesGreaterThanOrEqualTo; } public DB_TransQuery setDecimalPlacesGreaterThanOrEqualTo(Short value) { this.DecimalPlacesGreaterThanOrEqualTo = value; return this; } public Short getDecimalPlacesGreaterThan() { return DecimalPlacesGreaterThan; } public DB_TransQuery setDecimalPlacesGreaterThan(Short value) { this.DecimalPlacesGreaterThan = value; return this; } public Short getDecimalPlacesLessThan() { return DecimalPlacesLessThan; } public DB_TransQuery setDecimalPlacesLessThan(Short value) { this.DecimalPlacesLessThan = value; return this; } public Short getDecimalPlacesLessThanOrEqualTo() { return DecimalPlacesLessThanOrEqualTo; } public DB_TransQuery setDecimalPlacesLessThanOrEqualTo(Short value) { this.DecimalPlacesLessThanOrEqualTo = value; return this; } public Short getDecimalPlacesNotEqualTo() { return DecimalPlacesNotEqualTo; } public DB_TransQuery setDecimalPlacesNotEqualTo(Short value) { this.DecimalPlacesNotEqualTo = value; return this; } public ArrayList getDecimalPlacesBetween() { return DecimalPlacesBetween; } public DB_TransQuery setDecimalPlacesBetween(ArrayList value) { this.DecimalPlacesBetween = value; return this; } public ArrayList getDecimalPlacesIn() { return DecimalPlacesIn; } public DB_TransQuery setDecimalPlacesIn(ArrayList value) { this.DecimalPlacesIn = value; return this; } public String getNote() { return Note; } public DB_TransQuery setNote(String value) { this.Note = value; return this; } public String getNoteStartsWith() { return NoteStartsWith; } public DB_TransQuery setNoteStartsWith(String value) { this.NoteStartsWith = value; return this; } public String getNoteEndsWith() { return NoteEndsWith; } public DB_TransQuery setNoteEndsWith(String value) { this.NoteEndsWith = value; return this; } public String getNoteContains() { return NoteContains; } public DB_TransQuery setNoteContains(String value) { this.NoteContains = value; return this; } public String getNoteLike() { return NoteLike; } public DB_TransQuery setNoteLike(String value) { this.NoteLike = value; return this; } public ArrayList getNoteBetween() { return NoteBetween; } public DB_TransQuery setNoteBetween(ArrayList value) { this.NoteBetween = value; return this; } public ArrayList getNoteIn() { return NoteIn; } public DB_TransQuery setNoteIn(ArrayList value) { this.NoteIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class DB_TransAllocQuery extends QueryDb implements IReturn> { public String AllocID = null; public String AllocIDStartsWith = null; public String AllocIDEndsWith = null; public String AllocIDContains = null; public String AllocIDLike = null; public ArrayList AllocIDBetween = null; public ArrayList AllocIDIn = null; public String DebtorID = null; public String DebtorIDStartsWith = null; public String DebtorIDEndsWith = null; public String DebtorIDContains = null; public String DebtorIDLike = null; public ArrayList DebtorIDBetween = null; public ArrayList DebtorIDIn = null; public String DebitTransID = null; public String DebitTransIDStartsWith = null; public String DebitTransIDEndsWith = null; public String DebitTransIDContains = null; public String DebitTransIDLike = null; public ArrayList DebitTransIDBetween = null; public ArrayList DebitTransIDIn = null; public String CreditTransID = null; public String CreditTransIDStartsWith = null; public String CreditTransIDEndsWith = null; public String CreditTransIDContains = null; public String CreditTransIDLike = null; public ArrayList CreditTransIDBetween = null; public ArrayList CreditTransIDIn = null; public BigDecimal FXAmount = null; public BigDecimal FXAmountGreaterThanOrEqualTo = null; public BigDecimal FXAmountGreaterThan = null; public BigDecimal FXAmountLessThan = null; public BigDecimal FXAmountLessThanOrEqualTo = null; public BigDecimal FXAmountNotEqualTo = null; public ArrayList FXAmountBetween = null; public ArrayList FXAmountIn = null; public BigDecimal DebitAmount = null; public BigDecimal DebitAmountGreaterThanOrEqualTo = null; public BigDecimal DebitAmountGreaterThan = null; public BigDecimal DebitAmountLessThan = null; public BigDecimal DebitAmountLessThanOrEqualTo = null; public BigDecimal DebitAmountNotEqualTo = null; public ArrayList DebitAmountBetween = null; public ArrayList DebitAmountIn = null; public BigDecimal CreditAmount = null; public BigDecimal CreditAmountGreaterThanOrEqualTo = null; public BigDecimal CreditAmountGreaterThan = null; public BigDecimal CreditAmountLessThan = null; public BigDecimal CreditAmountLessThanOrEqualTo = null; public BigDecimal CreditAmountNotEqualTo = null; public ArrayList CreditAmountBetween = null; public ArrayList CreditAmountIn = null; public Boolean DebitAged = null; public Boolean CreditAged = null; public Date DateAlloc = null; public Date DateAllocGreaterThanOrEqualTo = null; public Date DateAllocGreaterThan = null; public Date DateAllocLessThan = null; public Date DateAllocLessThanOrEqualTo = null; public Date DateAllocNotEqualTo = null; public ArrayList DateAllocBetween = null; public ArrayList DateAllocIn = null; public Integer Version = null; public Integer VersionGreaterThanOrEqualTo = null; public Integer VersionGreaterThan = null; public Integer VersionLessThan = null; public Integer VersionLessThanOrEqualTo = null; public Integer VersionNotEqualTo = null; public ArrayList VersionBetween = null; public ArrayList VersionIn = null; public String getAllocID() { return AllocID; } public DB_TransAllocQuery setAllocID(String value) { this.AllocID = value; return this; } public String getAllocIDStartsWith() { return AllocIDStartsWith; } public DB_TransAllocQuery setAllocIDStartsWith(String value) { this.AllocIDStartsWith = value; return this; } public String getAllocIDEndsWith() { return AllocIDEndsWith; } public DB_TransAllocQuery setAllocIDEndsWith(String value) { this.AllocIDEndsWith = value; return this; } public String getAllocIDContains() { return AllocIDContains; } public DB_TransAllocQuery setAllocIDContains(String value) { this.AllocIDContains = value; return this; } public String getAllocIDLike() { return AllocIDLike; } public DB_TransAllocQuery setAllocIDLike(String value) { this.AllocIDLike = value; return this; } public ArrayList getAllocIDBetween() { return AllocIDBetween; } public DB_TransAllocQuery setAllocIDBetween(ArrayList value) { this.AllocIDBetween = value; return this; } public ArrayList getAllocIDIn() { return AllocIDIn; } public DB_TransAllocQuery setAllocIDIn(ArrayList value) { this.AllocIDIn = value; return this; } public String getDebtorID() { return DebtorID; } public DB_TransAllocQuery setDebtorID(String value) { this.DebtorID = value; return this; } public String getDebtorIDStartsWith() { return DebtorIDStartsWith; } public DB_TransAllocQuery setDebtorIDStartsWith(String value) { this.DebtorIDStartsWith = value; return this; } public String getDebtorIDEndsWith() { return DebtorIDEndsWith; } public DB_TransAllocQuery setDebtorIDEndsWith(String value) { this.DebtorIDEndsWith = value; return this; } public String getDebtorIDContains() { return DebtorIDContains; } public DB_TransAllocQuery setDebtorIDContains(String value) { this.DebtorIDContains = value; return this; } public String getDebtorIDLike() { return DebtorIDLike; } public DB_TransAllocQuery setDebtorIDLike(String value) { this.DebtorIDLike = value; return this; } public ArrayList getDebtorIDBetween() { return DebtorIDBetween; } public DB_TransAllocQuery setDebtorIDBetween(ArrayList value) { this.DebtorIDBetween = value; return this; } public ArrayList getDebtorIDIn() { return DebtorIDIn; } public DB_TransAllocQuery setDebtorIDIn(ArrayList value) { this.DebtorIDIn = value; return this; } public String getDebitTransID() { return DebitTransID; } public DB_TransAllocQuery setDebitTransID(String value) { this.DebitTransID = value; return this; } public String getDebitTransIDStartsWith() { return DebitTransIDStartsWith; } public DB_TransAllocQuery setDebitTransIDStartsWith(String value) { this.DebitTransIDStartsWith = value; return this; } public String getDebitTransIDEndsWith() { return DebitTransIDEndsWith; } public DB_TransAllocQuery setDebitTransIDEndsWith(String value) { this.DebitTransIDEndsWith = value; return this; } public String getDebitTransIDContains() { return DebitTransIDContains; } public DB_TransAllocQuery setDebitTransIDContains(String value) { this.DebitTransIDContains = value; return this; } public String getDebitTransIDLike() { return DebitTransIDLike; } public DB_TransAllocQuery setDebitTransIDLike(String value) { this.DebitTransIDLike = value; return this; } public ArrayList getDebitTransIDBetween() { return DebitTransIDBetween; } public DB_TransAllocQuery setDebitTransIDBetween(ArrayList value) { this.DebitTransIDBetween = value; return this; } public ArrayList getDebitTransIDIn() { return DebitTransIDIn; } public DB_TransAllocQuery setDebitTransIDIn(ArrayList value) { this.DebitTransIDIn = value; return this; } public String getCreditTransID() { return CreditTransID; } public DB_TransAllocQuery setCreditTransID(String value) { this.CreditTransID = value; return this; } public String getCreditTransIDStartsWith() { return CreditTransIDStartsWith; } public DB_TransAllocQuery setCreditTransIDStartsWith(String value) { this.CreditTransIDStartsWith = value; return this; } public String getCreditTransIDEndsWith() { return CreditTransIDEndsWith; } public DB_TransAllocQuery setCreditTransIDEndsWith(String value) { this.CreditTransIDEndsWith = value; return this; } public String getCreditTransIDContains() { return CreditTransIDContains; } public DB_TransAllocQuery setCreditTransIDContains(String value) { this.CreditTransIDContains = value; return this; } public String getCreditTransIDLike() { return CreditTransIDLike; } public DB_TransAllocQuery setCreditTransIDLike(String value) { this.CreditTransIDLike = value; return this; } public ArrayList getCreditTransIDBetween() { return CreditTransIDBetween; } public DB_TransAllocQuery setCreditTransIDBetween(ArrayList value) { this.CreditTransIDBetween = value; return this; } public ArrayList getCreditTransIDIn() { return CreditTransIDIn; } public DB_TransAllocQuery setCreditTransIDIn(ArrayList value) { this.CreditTransIDIn = value; return this; } public BigDecimal getFxAmount() { return FXAmount; } public DB_TransAllocQuery setFxAmount(BigDecimal value) { this.FXAmount = value; return this; } public BigDecimal getFxAmountGreaterThanOrEqualTo() { return FXAmountGreaterThanOrEqualTo; } public DB_TransAllocQuery setFxAmountGreaterThanOrEqualTo(BigDecimal value) { this.FXAmountGreaterThanOrEqualTo = value; return this; } public BigDecimal getFxAmountGreaterThan() { return FXAmountGreaterThan; } public DB_TransAllocQuery setFxAmountGreaterThan(BigDecimal value) { this.FXAmountGreaterThan = value; return this; } public BigDecimal getFxAmountLessThan() { return FXAmountLessThan; } public DB_TransAllocQuery setFxAmountLessThan(BigDecimal value) { this.FXAmountLessThan = value; return this; } public BigDecimal getFxAmountLessThanOrEqualTo() { return FXAmountLessThanOrEqualTo; } public DB_TransAllocQuery setFxAmountLessThanOrEqualTo(BigDecimal value) { this.FXAmountLessThanOrEqualTo = value; return this; } public BigDecimal getFxAmountNotEqualTo() { return FXAmountNotEqualTo; } public DB_TransAllocQuery setFxAmountNotEqualTo(BigDecimal value) { this.FXAmountNotEqualTo = value; return this; } public ArrayList getFxAmountBetween() { return FXAmountBetween; } public DB_TransAllocQuery setFxAmountBetween(ArrayList value) { this.FXAmountBetween = value; return this; } public ArrayList getFxAmountIn() { return FXAmountIn; } public DB_TransAllocQuery setFxAmountIn(ArrayList value) { this.FXAmountIn = value; return this; } public BigDecimal getDebitAmount() { return DebitAmount; } public DB_TransAllocQuery setDebitAmount(BigDecimal value) { this.DebitAmount = value; return this; } public BigDecimal getDebitAmountGreaterThanOrEqualTo() { return DebitAmountGreaterThanOrEqualTo; } public DB_TransAllocQuery setDebitAmountGreaterThanOrEqualTo(BigDecimal value) { this.DebitAmountGreaterThanOrEqualTo = value; return this; } public BigDecimal getDebitAmountGreaterThan() { return DebitAmountGreaterThan; } public DB_TransAllocQuery setDebitAmountGreaterThan(BigDecimal value) { this.DebitAmountGreaterThan = value; return this; } public BigDecimal getDebitAmountLessThan() { return DebitAmountLessThan; } public DB_TransAllocQuery setDebitAmountLessThan(BigDecimal value) { this.DebitAmountLessThan = value; return this; } public BigDecimal getDebitAmountLessThanOrEqualTo() { return DebitAmountLessThanOrEqualTo; } public DB_TransAllocQuery setDebitAmountLessThanOrEqualTo(BigDecimal value) { this.DebitAmountLessThanOrEqualTo = value; return this; } public BigDecimal getDebitAmountNotEqualTo() { return DebitAmountNotEqualTo; } public DB_TransAllocQuery setDebitAmountNotEqualTo(BigDecimal value) { this.DebitAmountNotEqualTo = value; return this; } public ArrayList getDebitAmountBetween() { return DebitAmountBetween; } public DB_TransAllocQuery setDebitAmountBetween(ArrayList value) { this.DebitAmountBetween = value; return this; } public ArrayList getDebitAmountIn() { return DebitAmountIn; } public DB_TransAllocQuery setDebitAmountIn(ArrayList value) { this.DebitAmountIn = value; return this; } public BigDecimal getCreditAmount() { return CreditAmount; } public DB_TransAllocQuery setCreditAmount(BigDecimal value) { this.CreditAmount = value; return this; } public BigDecimal getCreditAmountGreaterThanOrEqualTo() { return CreditAmountGreaterThanOrEqualTo; } public DB_TransAllocQuery setCreditAmountGreaterThanOrEqualTo(BigDecimal value) { this.CreditAmountGreaterThanOrEqualTo = value; return this; } public BigDecimal getCreditAmountGreaterThan() { return CreditAmountGreaterThan; } public DB_TransAllocQuery setCreditAmountGreaterThan(BigDecimal value) { this.CreditAmountGreaterThan = value; return this; } public BigDecimal getCreditAmountLessThan() { return CreditAmountLessThan; } public DB_TransAllocQuery setCreditAmountLessThan(BigDecimal value) { this.CreditAmountLessThan = value; return this; } public BigDecimal getCreditAmountLessThanOrEqualTo() { return CreditAmountLessThanOrEqualTo; } public DB_TransAllocQuery setCreditAmountLessThanOrEqualTo(BigDecimal value) { this.CreditAmountLessThanOrEqualTo = value; return this; } public BigDecimal getCreditAmountNotEqualTo() { return CreditAmountNotEqualTo; } public DB_TransAllocQuery setCreditAmountNotEqualTo(BigDecimal value) { this.CreditAmountNotEqualTo = value; return this; } public ArrayList getCreditAmountBetween() { return CreditAmountBetween; } public DB_TransAllocQuery setCreditAmountBetween(ArrayList value) { this.CreditAmountBetween = value; return this; } public ArrayList getCreditAmountIn() { return CreditAmountIn; } public DB_TransAllocQuery setCreditAmountIn(ArrayList value) { this.CreditAmountIn = value; return this; } public Boolean isDebitAged() { return DebitAged; } public DB_TransAllocQuery setDebitAged(Boolean value) { this.DebitAged = value; return this; } public Boolean isCreditAged() { return CreditAged; } public DB_TransAllocQuery setCreditAged(Boolean value) { this.CreditAged = value; return this; } public Date getDateAlloc() { return DateAlloc; } public DB_TransAllocQuery setDateAlloc(Date value) { this.DateAlloc = value; return this; } public Date getDateAllocGreaterThanOrEqualTo() { return DateAllocGreaterThanOrEqualTo; } public DB_TransAllocQuery setDateAllocGreaterThanOrEqualTo(Date value) { this.DateAllocGreaterThanOrEqualTo = value; return this; } public Date getDateAllocGreaterThan() { return DateAllocGreaterThan; } public DB_TransAllocQuery setDateAllocGreaterThan(Date value) { this.DateAllocGreaterThan = value; return this; } public Date getDateAllocLessThan() { return DateAllocLessThan; } public DB_TransAllocQuery setDateAllocLessThan(Date value) { this.DateAllocLessThan = value; return this; } public Date getDateAllocLessThanOrEqualTo() { return DateAllocLessThanOrEqualTo; } public DB_TransAllocQuery setDateAllocLessThanOrEqualTo(Date value) { this.DateAllocLessThanOrEqualTo = value; return this; } public Date getDateAllocNotEqualTo() { return DateAllocNotEqualTo; } public DB_TransAllocQuery setDateAllocNotEqualTo(Date value) { this.DateAllocNotEqualTo = value; return this; } public ArrayList getDateAllocBetween() { return DateAllocBetween; } public DB_TransAllocQuery setDateAllocBetween(ArrayList value) { this.DateAllocBetween = value; return this; } public ArrayList getDateAllocIn() { return DateAllocIn; } public DB_TransAllocQuery setDateAllocIn(ArrayList value) { this.DateAllocIn = value; return this; } public Integer getVersion() { return Version; } public DB_TransAllocQuery setVersion(Integer value) { this.Version = value; return this; } public Integer getVersionGreaterThanOrEqualTo() { return VersionGreaterThanOrEqualTo; } public DB_TransAllocQuery setVersionGreaterThanOrEqualTo(Integer value) { this.VersionGreaterThanOrEqualTo = value; return this; } public Integer getVersionGreaterThan() { return VersionGreaterThan; } public DB_TransAllocQuery setVersionGreaterThan(Integer value) { this.VersionGreaterThan = value; return this; } public Integer getVersionLessThan() { return VersionLessThan; } public DB_TransAllocQuery setVersionLessThan(Integer value) { this.VersionLessThan = value; return this; } public Integer getVersionLessThanOrEqualTo() { return VersionLessThanOrEqualTo; } public DB_TransAllocQuery setVersionLessThanOrEqualTo(Integer value) { this.VersionLessThanOrEqualTo = value; return this; } public Integer getVersionNotEqualTo() { return VersionNotEqualTo; } public DB_TransAllocQuery setVersionNotEqualTo(Integer value) { this.VersionNotEqualTo = value; return this; } public ArrayList getVersionBetween() { return VersionBetween; } public DB_TransAllocQuery setVersionBetween(ArrayList value) { this.VersionBetween = value; return this; } public ArrayList getVersionIn() { return VersionIn; } public DB_TransAllocQuery setVersionIn(ArrayList value) { this.VersionIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class DB_TransCustomFieldsQuery extends QueryDb implements IReturn> { public String RecID = null; public String RecIDStartsWith = null; public String RecIDEndsWith = null; public String RecIDContains = null; public String RecIDLike = null; public ArrayList RecIDBetween = null; public ArrayList RecIDIn = null; public String SettingName = null; public String SettingNameStartsWith = null; public String SettingNameEndsWith = null; public String SettingNameContains = null; public String SettingNameLike = null; public ArrayList SettingNameBetween = null; public ArrayList SettingNameIn = null; public String SettingDescription = null; public String SettingDescriptionStartsWith = null; public String SettingDescriptionEndsWith = null; public String SettingDescriptionContains = null; public String SettingDescriptionLike = null; public ArrayList SettingDescriptionBetween = null; public ArrayList SettingDescriptionIn = null; public Integer CellType = null; public Integer CellTypeGreaterThanOrEqualTo = null; public Integer CellTypeGreaterThan = null; public Integer CellTypeLessThan = null; public Integer CellTypeLessThanOrEqualTo = null; public Integer CellTypeNotEqualTo = null; public ArrayList CellTypeBetween = null; public ArrayList CellTypeIn = null; public String FieldParameter = null; public String FieldParameterStartsWith = null; public String FieldParameterEndsWith = null; public String FieldParameterContains = null; public String FieldParameterLike = null; public ArrayList FieldParameterBetween = null; public ArrayList FieldParameterIn = null; public UUID SY_Plugin_RecID = null; public ArrayList SY_Plugin_RecIDIn = null; public Date LastSavedDateTime = null; public Date LastSavedDateTimeGreaterThanOrEqualTo = null; public Date LastSavedDateTimeGreaterThan = null; public Date LastSavedDateTimeLessThan = null; public Date LastSavedDateTimeLessThanOrEqualTo = null; public Date LastSavedDateTimeNotEqualTo = null; public ArrayList LastSavedDateTimeBetween = null; public ArrayList LastSavedDateTimeIn = null; public Integer DisplayOrder = null; public Integer DisplayOrderGreaterThanOrEqualTo = null; public Integer DisplayOrderGreaterThan = null; public Integer DisplayOrderLessThan = null; public Integer DisplayOrderLessThanOrEqualTo = null; public Integer DisplayOrderNotEqualTo = null; public ArrayList DisplayOrderBetween = null; public ArrayList DisplayOrderIn = null; public String getRecID() { return RecID; } public DB_TransCustomFieldsQuery setRecID(String value) { this.RecID = value; return this; } public String getRecIDStartsWith() { return RecIDStartsWith; } public DB_TransCustomFieldsQuery setRecIDStartsWith(String value) { this.RecIDStartsWith = value; return this; } public String getRecIDEndsWith() { return RecIDEndsWith; } public DB_TransCustomFieldsQuery setRecIDEndsWith(String value) { this.RecIDEndsWith = value; return this; } public String getRecIDContains() { return RecIDContains; } public DB_TransCustomFieldsQuery setRecIDContains(String value) { this.RecIDContains = value; return this; } public String getRecIDLike() { return RecIDLike; } public DB_TransCustomFieldsQuery setRecIDLike(String value) { this.RecIDLike = value; return this; } public ArrayList getRecIDBetween() { return RecIDBetween; } public DB_TransCustomFieldsQuery setRecIDBetween(ArrayList value) { this.RecIDBetween = value; return this; } public ArrayList getRecIDIn() { return RecIDIn; } public DB_TransCustomFieldsQuery setRecIDIn(ArrayList value) { this.RecIDIn = value; return this; } public String getSettingName() { return SettingName; } public DB_TransCustomFieldsQuery setSettingName(String value) { this.SettingName = value; return this; } public String getSettingNameStartsWith() { return SettingNameStartsWith; } public DB_TransCustomFieldsQuery setSettingNameStartsWith(String value) { this.SettingNameStartsWith = value; return this; } public String getSettingNameEndsWith() { return SettingNameEndsWith; } public DB_TransCustomFieldsQuery setSettingNameEndsWith(String value) { this.SettingNameEndsWith = value; return this; } public String getSettingNameContains() { return SettingNameContains; } public DB_TransCustomFieldsQuery setSettingNameContains(String value) { this.SettingNameContains = value; return this; } public String getSettingNameLike() { return SettingNameLike; } public DB_TransCustomFieldsQuery setSettingNameLike(String value) { this.SettingNameLike = value; return this; } public ArrayList getSettingNameBetween() { return SettingNameBetween; } public DB_TransCustomFieldsQuery setSettingNameBetween(ArrayList value) { this.SettingNameBetween = value; return this; } public ArrayList getSettingNameIn() { return SettingNameIn; } public DB_TransCustomFieldsQuery setSettingNameIn(ArrayList value) { this.SettingNameIn = value; return this; } public String getSettingDescription() { return SettingDescription; } public DB_TransCustomFieldsQuery setSettingDescription(String value) { this.SettingDescription = value; return this; } public String getSettingDescriptionStartsWith() { return SettingDescriptionStartsWith; } public DB_TransCustomFieldsQuery setSettingDescriptionStartsWith(String value) { this.SettingDescriptionStartsWith = value; return this; } public String getSettingDescriptionEndsWith() { return SettingDescriptionEndsWith; } public DB_TransCustomFieldsQuery setSettingDescriptionEndsWith(String value) { this.SettingDescriptionEndsWith = value; return this; } public String getSettingDescriptionContains() { return SettingDescriptionContains; } public DB_TransCustomFieldsQuery setSettingDescriptionContains(String value) { this.SettingDescriptionContains = value; return this; } public String getSettingDescriptionLike() { return SettingDescriptionLike; } public DB_TransCustomFieldsQuery setSettingDescriptionLike(String value) { this.SettingDescriptionLike = value; return this; } public ArrayList getSettingDescriptionBetween() { return SettingDescriptionBetween; } public DB_TransCustomFieldsQuery setSettingDescriptionBetween(ArrayList value) { this.SettingDescriptionBetween = value; return this; } public ArrayList getSettingDescriptionIn() { return SettingDescriptionIn; } public DB_TransCustomFieldsQuery setSettingDescriptionIn(ArrayList value) { this.SettingDescriptionIn = value; return this; } public Integer getCellType() { return CellType; } public DB_TransCustomFieldsQuery setCellType(Integer value) { this.CellType = value; return this; } public Integer getCellTypeGreaterThanOrEqualTo() { return CellTypeGreaterThanOrEqualTo; } public DB_TransCustomFieldsQuery setCellTypeGreaterThanOrEqualTo(Integer value) { this.CellTypeGreaterThanOrEqualTo = value; return this; } public Integer getCellTypeGreaterThan() { return CellTypeGreaterThan; } public DB_TransCustomFieldsQuery setCellTypeGreaterThan(Integer value) { this.CellTypeGreaterThan = value; return this; } public Integer getCellTypeLessThan() { return CellTypeLessThan; } public DB_TransCustomFieldsQuery setCellTypeLessThan(Integer value) { this.CellTypeLessThan = value; return this; } public Integer getCellTypeLessThanOrEqualTo() { return CellTypeLessThanOrEqualTo; } public DB_TransCustomFieldsQuery setCellTypeLessThanOrEqualTo(Integer value) { this.CellTypeLessThanOrEqualTo = value; return this; } public Integer getCellTypeNotEqualTo() { return CellTypeNotEqualTo; } public DB_TransCustomFieldsQuery setCellTypeNotEqualTo(Integer value) { this.CellTypeNotEqualTo = value; return this; } public ArrayList getCellTypeBetween() { return CellTypeBetween; } public DB_TransCustomFieldsQuery setCellTypeBetween(ArrayList value) { this.CellTypeBetween = value; return this; } public ArrayList getCellTypeIn() { return CellTypeIn; } public DB_TransCustomFieldsQuery setCellTypeIn(ArrayList value) { this.CellTypeIn = value; return this; } public String getFieldParameter() { return FieldParameter; } public DB_TransCustomFieldsQuery setFieldParameter(String value) { this.FieldParameter = value; return this; } public String getFieldParameterStartsWith() { return FieldParameterStartsWith; } public DB_TransCustomFieldsQuery setFieldParameterStartsWith(String value) { this.FieldParameterStartsWith = value; return this; } public String getFieldParameterEndsWith() { return FieldParameterEndsWith; } public DB_TransCustomFieldsQuery setFieldParameterEndsWith(String value) { this.FieldParameterEndsWith = value; return this; } public String getFieldParameterContains() { return FieldParameterContains; } public DB_TransCustomFieldsQuery setFieldParameterContains(String value) { this.FieldParameterContains = value; return this; } public String getFieldParameterLike() { return FieldParameterLike; } public DB_TransCustomFieldsQuery setFieldParameterLike(String value) { this.FieldParameterLike = value; return this; } public ArrayList getFieldParameterBetween() { return FieldParameterBetween; } public DB_TransCustomFieldsQuery setFieldParameterBetween(ArrayList value) { this.FieldParameterBetween = value; return this; } public ArrayList getFieldParameterIn() { return FieldParameterIn; } public DB_TransCustomFieldsQuery setFieldParameterIn(ArrayList value) { this.FieldParameterIn = value; return this; } public UUID getSyPluginRecID() { return SY_Plugin_RecID; } public DB_TransCustomFieldsQuery setSyPluginRecID(UUID value) { this.SY_Plugin_RecID = value; return this; } public ArrayList getSyPluginRecIDIn() { return SY_Plugin_RecIDIn; } public DB_TransCustomFieldsQuery setSyPluginRecIDIn(ArrayList value) { this.SY_Plugin_RecIDIn = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public DB_TransCustomFieldsQuery setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getLastSavedDateTimeGreaterThanOrEqualTo() { return LastSavedDateTimeGreaterThanOrEqualTo; } public DB_TransCustomFieldsQuery setLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.LastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeGreaterThan() { return LastSavedDateTimeGreaterThan; } public DB_TransCustomFieldsQuery setLastSavedDateTimeGreaterThan(Date value) { this.LastSavedDateTimeGreaterThan = value; return this; } public Date getLastSavedDateTimeLessThan() { return LastSavedDateTimeLessThan; } public DB_TransCustomFieldsQuery setLastSavedDateTimeLessThan(Date value) { this.LastSavedDateTimeLessThan = value; return this; } public Date getLastSavedDateTimeLessThanOrEqualTo() { return LastSavedDateTimeLessThanOrEqualTo; } public DB_TransCustomFieldsQuery setLastSavedDateTimeLessThanOrEqualTo(Date value) { this.LastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeNotEqualTo() { return LastSavedDateTimeNotEqualTo; } public DB_TransCustomFieldsQuery setLastSavedDateTimeNotEqualTo(Date value) { this.LastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getLastSavedDateTimeBetween() { return LastSavedDateTimeBetween; } public DB_TransCustomFieldsQuery setLastSavedDateTimeBetween(ArrayList value) { this.LastSavedDateTimeBetween = value; return this; } public ArrayList getLastSavedDateTimeIn() { return LastSavedDateTimeIn; } public DB_TransCustomFieldsQuery setLastSavedDateTimeIn(ArrayList value) { this.LastSavedDateTimeIn = value; return this; } public Integer getDisplayOrder() { return DisplayOrder; } public DB_TransCustomFieldsQuery setDisplayOrder(Integer value) { this.DisplayOrder = value; return this; } public Integer getDisplayOrderGreaterThanOrEqualTo() { return DisplayOrderGreaterThanOrEqualTo; } public DB_TransCustomFieldsQuery setDisplayOrderGreaterThanOrEqualTo(Integer value) { this.DisplayOrderGreaterThanOrEqualTo = value; return this; } public Integer getDisplayOrderGreaterThan() { return DisplayOrderGreaterThan; } public DB_TransCustomFieldsQuery setDisplayOrderGreaterThan(Integer value) { this.DisplayOrderGreaterThan = value; return this; } public Integer getDisplayOrderLessThan() { return DisplayOrderLessThan; } public DB_TransCustomFieldsQuery setDisplayOrderLessThan(Integer value) { this.DisplayOrderLessThan = value; return this; } public Integer getDisplayOrderLessThanOrEqualTo() { return DisplayOrderLessThanOrEqualTo; } public DB_TransCustomFieldsQuery setDisplayOrderLessThanOrEqualTo(Integer value) { this.DisplayOrderLessThanOrEqualTo = value; return this; } public Integer getDisplayOrderNotEqualTo() { return DisplayOrderNotEqualTo; } public DB_TransCustomFieldsQuery setDisplayOrderNotEqualTo(Integer value) { this.DisplayOrderNotEqualTo = value; return this; } public ArrayList getDisplayOrderBetween() { return DisplayOrderBetween; } public DB_TransCustomFieldsQuery setDisplayOrderBetween(ArrayList value) { this.DisplayOrderBetween = value; return this; } public ArrayList getDisplayOrderIn() { return DisplayOrderIn; } public DB_TransCustomFieldsQuery setDisplayOrderIn(ArrayList value) { this.DisplayOrderIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class DB_TransCustomFieldValuesQuery extends QueryDb implements IReturn> { public String RecID = null; public String RecIDStartsWith = null; public String RecIDEndsWith = null; public String RecIDContains = null; public String RecIDLike = null; public ArrayList RecIDBetween = null; public ArrayList RecIDIn = null; public String DB_Trans_TransID = null; public String DB_Trans_TransIDStartsWith = null; public String DB_Trans_TransIDEndsWith = null; public String DB_Trans_TransIDContains = null; public String DB_Trans_TransIDLike = null; public ArrayList DB_Trans_TransIDBetween = null; public ArrayList DB_Trans_TransIDIn = null; public String DB_TransCustomFields_RecID = null; public String DB_TransCustomFields_RecIDStartsWith = null; public String DB_TransCustomFields_RecIDEndsWith = null; public String DB_TransCustomFields_RecIDContains = null; public String DB_TransCustomFields_RecIDLike = null; public ArrayList DB_TransCustomFields_RecIDBetween = null; public ArrayList DB_TransCustomFields_RecIDIn = null; public String Contents = null; public String ContentsStartsWith = null; public String ContentsEndsWith = null; public String ContentsContains = null; public String ContentsLike = null; public ArrayList ContentsBetween = null; public ArrayList ContentsIn = null; public Date LastSavedDateTime = null; public Date LastSavedDateTimeGreaterThanOrEqualTo = null; public Date LastSavedDateTimeGreaterThan = null; public Date LastSavedDateTimeLessThan = null; public Date LastSavedDateTimeLessThanOrEqualTo = null; public Date LastSavedDateTimeNotEqualTo = null; public ArrayList LastSavedDateTimeBetween = null; public ArrayList LastSavedDateTimeIn = null; public String getRecID() { return RecID; } public DB_TransCustomFieldValuesQuery setRecID(String value) { this.RecID = value; return this; } public String getRecIDStartsWith() { return RecIDStartsWith; } public DB_TransCustomFieldValuesQuery setRecIDStartsWith(String value) { this.RecIDStartsWith = value; return this; } public String getRecIDEndsWith() { return RecIDEndsWith; } public DB_TransCustomFieldValuesQuery setRecIDEndsWith(String value) { this.RecIDEndsWith = value; return this; } public String getRecIDContains() { return RecIDContains; } public DB_TransCustomFieldValuesQuery setRecIDContains(String value) { this.RecIDContains = value; return this; } public String getRecIDLike() { return RecIDLike; } public DB_TransCustomFieldValuesQuery setRecIDLike(String value) { this.RecIDLike = value; return this; } public ArrayList getRecIDBetween() { return RecIDBetween; } public DB_TransCustomFieldValuesQuery setRecIDBetween(ArrayList value) { this.RecIDBetween = value; return this; } public ArrayList getRecIDIn() { return RecIDIn; } public DB_TransCustomFieldValuesQuery setRecIDIn(ArrayList value) { this.RecIDIn = value; return this; } public String getDbTransTransID() { return DB_Trans_TransID; } public DB_TransCustomFieldValuesQuery setDbTransTransID(String value) { this.DB_Trans_TransID = value; return this; } public String getDbTransTransIDStartsWith() { return DB_Trans_TransIDStartsWith; } public DB_TransCustomFieldValuesQuery setDbTransTransIDStartsWith(String value) { this.DB_Trans_TransIDStartsWith = value; return this; } public String getDbTransTransIDEndsWith() { return DB_Trans_TransIDEndsWith; } public DB_TransCustomFieldValuesQuery setDbTransTransIDEndsWith(String value) { this.DB_Trans_TransIDEndsWith = value; return this; } public String getDbTransTransIDContains() { return DB_Trans_TransIDContains; } public DB_TransCustomFieldValuesQuery setDbTransTransIDContains(String value) { this.DB_Trans_TransIDContains = value; return this; } public String getDbTransTransIDLike() { return DB_Trans_TransIDLike; } public DB_TransCustomFieldValuesQuery setDbTransTransIDLike(String value) { this.DB_Trans_TransIDLike = value; return this; } public ArrayList getDbTransTransIDBetween() { return DB_Trans_TransIDBetween; } public DB_TransCustomFieldValuesQuery setDbTransTransIDBetween(ArrayList value) { this.DB_Trans_TransIDBetween = value; return this; } public ArrayList getDbTransTransIDIn() { return DB_Trans_TransIDIn; } public DB_TransCustomFieldValuesQuery setDbTransTransIDIn(ArrayList value) { this.DB_Trans_TransIDIn = value; return this; } public String getDbTransCustomFieldsRecID() { return DB_TransCustomFields_RecID; } public DB_TransCustomFieldValuesQuery setDbTransCustomFieldsRecID(String value) { this.DB_TransCustomFields_RecID = value; return this; } public String getDbTransCustomFieldsRecIDStartsWith() { return DB_TransCustomFields_RecIDStartsWith; } public DB_TransCustomFieldValuesQuery setDbTransCustomFieldsRecIDStartsWith(String value) { this.DB_TransCustomFields_RecIDStartsWith = value; return this; } public String getDbTransCustomFieldsRecIDEndsWith() { return DB_TransCustomFields_RecIDEndsWith; } public DB_TransCustomFieldValuesQuery setDbTransCustomFieldsRecIDEndsWith(String value) { this.DB_TransCustomFields_RecIDEndsWith = value; return this; } public String getDbTransCustomFieldsRecIDContains() { return DB_TransCustomFields_RecIDContains; } public DB_TransCustomFieldValuesQuery setDbTransCustomFieldsRecIDContains(String value) { this.DB_TransCustomFields_RecIDContains = value; return this; } public String getDbTransCustomFieldsRecIDLike() { return DB_TransCustomFields_RecIDLike; } public DB_TransCustomFieldValuesQuery setDbTransCustomFieldsRecIDLike(String value) { this.DB_TransCustomFields_RecIDLike = value; return this; } public ArrayList getDbTransCustomFieldsRecIDBetween() { return DB_TransCustomFields_RecIDBetween; } public DB_TransCustomFieldValuesQuery setDbTransCustomFieldsRecIDBetween(ArrayList value) { this.DB_TransCustomFields_RecIDBetween = value; return this; } public ArrayList getDbTransCustomFieldsRecIDIn() { return DB_TransCustomFields_RecIDIn; } public DB_TransCustomFieldValuesQuery setDbTransCustomFieldsRecIDIn(ArrayList value) { this.DB_TransCustomFields_RecIDIn = value; return this; } public String getContents() { return Contents; } public DB_TransCustomFieldValuesQuery setContents(String value) { this.Contents = value; return this; } public String getContentsStartsWith() { return ContentsStartsWith; } public DB_TransCustomFieldValuesQuery setContentsStartsWith(String value) { this.ContentsStartsWith = value; return this; } public String getContentsEndsWith() { return ContentsEndsWith; } public DB_TransCustomFieldValuesQuery setContentsEndsWith(String value) { this.ContentsEndsWith = value; return this; } public String getContentsContains() { return ContentsContains; } public DB_TransCustomFieldValuesQuery setContentsContains(String value) { this.ContentsContains = value; return this; } public String getContentsLike() { return ContentsLike; } public DB_TransCustomFieldValuesQuery setContentsLike(String value) { this.ContentsLike = value; return this; } public ArrayList getContentsBetween() { return ContentsBetween; } public DB_TransCustomFieldValuesQuery setContentsBetween(ArrayList value) { this.ContentsBetween = value; return this; } public ArrayList getContentsIn() { return ContentsIn; } public DB_TransCustomFieldValuesQuery setContentsIn(ArrayList value) { this.ContentsIn = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public DB_TransCustomFieldValuesQuery setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getLastSavedDateTimeGreaterThanOrEqualTo() { return LastSavedDateTimeGreaterThanOrEqualTo; } public DB_TransCustomFieldValuesQuery setLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.LastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeGreaterThan() { return LastSavedDateTimeGreaterThan; } public DB_TransCustomFieldValuesQuery setLastSavedDateTimeGreaterThan(Date value) { this.LastSavedDateTimeGreaterThan = value; return this; } public Date getLastSavedDateTimeLessThan() { return LastSavedDateTimeLessThan; } public DB_TransCustomFieldValuesQuery setLastSavedDateTimeLessThan(Date value) { this.LastSavedDateTimeLessThan = value; return this; } public Date getLastSavedDateTimeLessThanOrEqualTo() { return LastSavedDateTimeLessThanOrEqualTo; } public DB_TransCustomFieldValuesQuery setLastSavedDateTimeLessThanOrEqualTo(Date value) { this.LastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeNotEqualTo() { return LastSavedDateTimeNotEqualTo; } public DB_TransCustomFieldValuesQuery setLastSavedDateTimeNotEqualTo(Date value) { this.LastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getLastSavedDateTimeBetween() { return LastSavedDateTimeBetween; } public DB_TransCustomFieldValuesQuery setLastSavedDateTimeBetween(ArrayList value) { this.LastSavedDateTimeBetween = value; return this; } public ArrayList getLastSavedDateTimeIn() { return LastSavedDateTimeIn; } public DB_TransCustomFieldValuesQuery setLastSavedDateTimeIn(ArrayList value) { this.LastSavedDateTimeIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class EM_AttachmentsQuery extends QueryDb implements IReturn> { public String RecID = null; public String RecIDStartsWith = null; public String RecIDEndsWith = null; public String RecIDContains = null; public String RecIDLike = null; public ArrayList RecIDBetween = null; public ArrayList RecIDIn = null; public String EmailMessageID = null; public String EmailMessageIDStartsWith = null; public String EmailMessageIDEndsWith = null; public String EmailMessageIDContains = null; public String EmailMessageIDLike = null; public ArrayList EmailMessageIDBetween = null; public ArrayList EmailMessageIDIn = null; public String DocumentTypeID = null; public String DocumentTypeIDStartsWith = null; public String DocumentTypeIDEndsWith = null; public String DocumentTypeIDContains = null; public String DocumentTypeIDLike = null; public ArrayList DocumentTypeIDBetween = null; public ArrayList DocumentTypeIDIn = null; public Date LastSavedDateTime = null; public Date LastSavedDateTimeGreaterThanOrEqualTo = null; public Date LastSavedDateTimeGreaterThan = null; public Date LastSavedDateTimeLessThan = null; public Date LastSavedDateTimeLessThanOrEqualTo = null; public Date LastSavedDateTimeNotEqualTo = null; public ArrayList LastSavedDateTimeBetween = null; public ArrayList LastSavedDateTimeIn = null; public String LastSavedByStaffID = null; public String LastSavedByStaffIDStartsWith = null; public String LastSavedByStaffIDEndsWith = null; public String LastSavedByStaffIDContains = null; public String LastSavedByStaffIDLike = null; public ArrayList LastSavedByStaffIDBetween = null; public ArrayList LastSavedByStaffIDIn = null; public ArrayList FileBinary = null; public String Description = null; public String DescriptionStartsWith = null; public String DescriptionEndsWith = null; public String DescriptionContains = null; public String DescriptionLike = null; public ArrayList DescriptionBetween = null; public ArrayList DescriptionIn = null; public String PhysicalFileName = null; public String PhysicalFileNameStartsWith = null; public String PhysicalFileNameEndsWith = null; public String PhysicalFileNameContains = null; public String PhysicalFileNameLike = null; public ArrayList PhysicalFileNameBetween = null; public ArrayList PhysicalFileNameIn = null; public Integer ItemNo = null; public Integer ItemNoGreaterThanOrEqualTo = null; public Integer ItemNoGreaterThan = null; public Integer ItemNoLessThan = null; public Integer ItemNoLessThanOrEqualTo = null; public Integer ItemNoNotEqualTo = null; public ArrayList ItemNoBetween = null; public ArrayList ItemNoIn = null; public String getRecID() { return RecID; } public EM_AttachmentsQuery setRecID(String value) { this.RecID = value; return this; } public String getRecIDStartsWith() { return RecIDStartsWith; } public EM_AttachmentsQuery setRecIDStartsWith(String value) { this.RecIDStartsWith = value; return this; } public String getRecIDEndsWith() { return RecIDEndsWith; } public EM_AttachmentsQuery setRecIDEndsWith(String value) { this.RecIDEndsWith = value; return this; } public String getRecIDContains() { return RecIDContains; } public EM_AttachmentsQuery setRecIDContains(String value) { this.RecIDContains = value; return this; } public String getRecIDLike() { return RecIDLike; } public EM_AttachmentsQuery setRecIDLike(String value) { this.RecIDLike = value; return this; } public ArrayList getRecIDBetween() { return RecIDBetween; } public EM_AttachmentsQuery setRecIDBetween(ArrayList value) { this.RecIDBetween = value; return this; } public ArrayList getRecIDIn() { return RecIDIn; } public EM_AttachmentsQuery setRecIDIn(ArrayList value) { this.RecIDIn = value; return this; } public String getEmailMessageID() { return EmailMessageID; } public EM_AttachmentsQuery setEmailMessageID(String value) { this.EmailMessageID = value; return this; } public String getEmailMessageIDStartsWith() { return EmailMessageIDStartsWith; } public EM_AttachmentsQuery setEmailMessageIDStartsWith(String value) { this.EmailMessageIDStartsWith = value; return this; } public String getEmailMessageIDEndsWith() { return EmailMessageIDEndsWith; } public EM_AttachmentsQuery setEmailMessageIDEndsWith(String value) { this.EmailMessageIDEndsWith = value; return this; } public String getEmailMessageIDContains() { return EmailMessageIDContains; } public EM_AttachmentsQuery setEmailMessageIDContains(String value) { this.EmailMessageIDContains = value; return this; } public String getEmailMessageIDLike() { return EmailMessageIDLike; } public EM_AttachmentsQuery setEmailMessageIDLike(String value) { this.EmailMessageIDLike = value; return this; } public ArrayList getEmailMessageIDBetween() { return EmailMessageIDBetween; } public EM_AttachmentsQuery setEmailMessageIDBetween(ArrayList value) { this.EmailMessageIDBetween = value; return this; } public ArrayList getEmailMessageIDIn() { return EmailMessageIDIn; } public EM_AttachmentsQuery setEmailMessageIDIn(ArrayList value) { this.EmailMessageIDIn = value; return this; } public String getDocumentTypeID() { return DocumentTypeID; } public EM_AttachmentsQuery setDocumentTypeID(String value) { this.DocumentTypeID = value; return this; } public String getDocumentTypeIDStartsWith() { return DocumentTypeIDStartsWith; } public EM_AttachmentsQuery setDocumentTypeIDStartsWith(String value) { this.DocumentTypeIDStartsWith = value; return this; } public String getDocumentTypeIDEndsWith() { return DocumentTypeIDEndsWith; } public EM_AttachmentsQuery setDocumentTypeIDEndsWith(String value) { this.DocumentTypeIDEndsWith = value; return this; } public String getDocumentTypeIDContains() { return DocumentTypeIDContains; } public EM_AttachmentsQuery setDocumentTypeIDContains(String value) { this.DocumentTypeIDContains = value; return this; } public String getDocumentTypeIDLike() { return DocumentTypeIDLike; } public EM_AttachmentsQuery setDocumentTypeIDLike(String value) { this.DocumentTypeIDLike = value; return this; } public ArrayList getDocumentTypeIDBetween() { return DocumentTypeIDBetween; } public EM_AttachmentsQuery setDocumentTypeIDBetween(ArrayList value) { this.DocumentTypeIDBetween = value; return this; } public ArrayList getDocumentTypeIDIn() { return DocumentTypeIDIn; } public EM_AttachmentsQuery setDocumentTypeIDIn(ArrayList value) { this.DocumentTypeIDIn = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public EM_AttachmentsQuery setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getLastSavedDateTimeGreaterThanOrEqualTo() { return LastSavedDateTimeGreaterThanOrEqualTo; } public EM_AttachmentsQuery setLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.LastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeGreaterThan() { return LastSavedDateTimeGreaterThan; } public EM_AttachmentsQuery setLastSavedDateTimeGreaterThan(Date value) { this.LastSavedDateTimeGreaterThan = value; return this; } public Date getLastSavedDateTimeLessThan() { return LastSavedDateTimeLessThan; } public EM_AttachmentsQuery setLastSavedDateTimeLessThan(Date value) { this.LastSavedDateTimeLessThan = value; return this; } public Date getLastSavedDateTimeLessThanOrEqualTo() { return LastSavedDateTimeLessThanOrEqualTo; } public EM_AttachmentsQuery setLastSavedDateTimeLessThanOrEqualTo(Date value) { this.LastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeNotEqualTo() { return LastSavedDateTimeNotEqualTo; } public EM_AttachmentsQuery setLastSavedDateTimeNotEqualTo(Date value) { this.LastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getLastSavedDateTimeBetween() { return LastSavedDateTimeBetween; } public EM_AttachmentsQuery setLastSavedDateTimeBetween(ArrayList value) { this.LastSavedDateTimeBetween = value; return this; } public ArrayList getLastSavedDateTimeIn() { return LastSavedDateTimeIn; } public EM_AttachmentsQuery setLastSavedDateTimeIn(ArrayList value) { this.LastSavedDateTimeIn = value; return this; } public String getLastSavedByStaffID() { return LastSavedByStaffID; } public EM_AttachmentsQuery setLastSavedByStaffID(String value) { this.LastSavedByStaffID = value; return this; } public String getLastSavedByStaffIDStartsWith() { return LastSavedByStaffIDStartsWith; } public EM_AttachmentsQuery setLastSavedByStaffIDStartsWith(String value) { this.LastSavedByStaffIDStartsWith = value; return this; } public String getLastSavedByStaffIDEndsWith() { return LastSavedByStaffIDEndsWith; } public EM_AttachmentsQuery setLastSavedByStaffIDEndsWith(String value) { this.LastSavedByStaffIDEndsWith = value; return this; } public String getLastSavedByStaffIDContains() { return LastSavedByStaffIDContains; } public EM_AttachmentsQuery setLastSavedByStaffIDContains(String value) { this.LastSavedByStaffIDContains = value; return this; } public String getLastSavedByStaffIDLike() { return LastSavedByStaffIDLike; } public EM_AttachmentsQuery setLastSavedByStaffIDLike(String value) { this.LastSavedByStaffIDLike = value; return this; } public ArrayList getLastSavedByStaffIDBetween() { return LastSavedByStaffIDBetween; } public EM_AttachmentsQuery setLastSavedByStaffIDBetween(ArrayList value) { this.LastSavedByStaffIDBetween = value; return this; } public ArrayList getLastSavedByStaffIDIn() { return LastSavedByStaffIDIn; } public EM_AttachmentsQuery setLastSavedByStaffIDIn(ArrayList value) { this.LastSavedByStaffIDIn = value; return this; } public ArrayList getFileBinary() { return FileBinary; } public EM_AttachmentsQuery setFileBinary(ArrayList value) { this.FileBinary = value; return this; } public String getDescription() { return Description; } public EM_AttachmentsQuery setDescription(String value) { this.Description = value; return this; } public String getDescriptionStartsWith() { return DescriptionStartsWith; } public EM_AttachmentsQuery setDescriptionStartsWith(String value) { this.DescriptionStartsWith = value; return this; } public String getDescriptionEndsWith() { return DescriptionEndsWith; } public EM_AttachmentsQuery setDescriptionEndsWith(String value) { this.DescriptionEndsWith = value; return this; } public String getDescriptionContains() { return DescriptionContains; } public EM_AttachmentsQuery setDescriptionContains(String value) { this.DescriptionContains = value; return this; } public String getDescriptionLike() { return DescriptionLike; } public EM_AttachmentsQuery setDescriptionLike(String value) { this.DescriptionLike = value; return this; } public ArrayList getDescriptionBetween() { return DescriptionBetween; } public EM_AttachmentsQuery setDescriptionBetween(ArrayList value) { this.DescriptionBetween = value; return this; } public ArrayList getDescriptionIn() { return DescriptionIn; } public EM_AttachmentsQuery setDescriptionIn(ArrayList value) { this.DescriptionIn = value; return this; } public String getPhysicalFileName() { return PhysicalFileName; } public EM_AttachmentsQuery setPhysicalFileName(String value) { this.PhysicalFileName = value; return this; } public String getPhysicalFileNameStartsWith() { return PhysicalFileNameStartsWith; } public EM_AttachmentsQuery setPhysicalFileNameStartsWith(String value) { this.PhysicalFileNameStartsWith = value; return this; } public String getPhysicalFileNameEndsWith() { return PhysicalFileNameEndsWith; } public EM_AttachmentsQuery setPhysicalFileNameEndsWith(String value) { this.PhysicalFileNameEndsWith = value; return this; } public String getPhysicalFileNameContains() { return PhysicalFileNameContains; } public EM_AttachmentsQuery setPhysicalFileNameContains(String value) { this.PhysicalFileNameContains = value; return this; } public String getPhysicalFileNameLike() { return PhysicalFileNameLike; } public EM_AttachmentsQuery setPhysicalFileNameLike(String value) { this.PhysicalFileNameLike = value; return this; } public ArrayList getPhysicalFileNameBetween() { return PhysicalFileNameBetween; } public EM_AttachmentsQuery setPhysicalFileNameBetween(ArrayList value) { this.PhysicalFileNameBetween = value; return this; } public ArrayList getPhysicalFileNameIn() { return PhysicalFileNameIn; } public EM_AttachmentsQuery setPhysicalFileNameIn(ArrayList value) { this.PhysicalFileNameIn = value; return this; } public Integer getItemNo() { return ItemNo; } public EM_AttachmentsQuery setItemNo(Integer value) { this.ItemNo = value; return this; } public Integer getItemNoGreaterThanOrEqualTo() { return ItemNoGreaterThanOrEqualTo; } public EM_AttachmentsQuery setItemNoGreaterThanOrEqualTo(Integer value) { this.ItemNoGreaterThanOrEqualTo = value; return this; } public Integer getItemNoGreaterThan() { return ItemNoGreaterThan; } public EM_AttachmentsQuery setItemNoGreaterThan(Integer value) { this.ItemNoGreaterThan = value; return this; } public Integer getItemNoLessThan() { return ItemNoLessThan; } public EM_AttachmentsQuery setItemNoLessThan(Integer value) { this.ItemNoLessThan = value; return this; } public Integer getItemNoLessThanOrEqualTo() { return ItemNoLessThanOrEqualTo; } public EM_AttachmentsQuery setItemNoLessThanOrEqualTo(Integer value) { this.ItemNoLessThanOrEqualTo = value; return this; } public Integer getItemNoNotEqualTo() { return ItemNoNotEqualTo; } public EM_AttachmentsQuery setItemNoNotEqualTo(Integer value) { this.ItemNoNotEqualTo = value; return this; } public ArrayList getItemNoBetween() { return ItemNoBetween; } public EM_AttachmentsQuery setItemNoBetween(ArrayList value) { this.ItemNoBetween = value; return this; } public ArrayList getItemNoIn() { return ItemNoIn; } public EM_AttachmentsQuery setItemNoIn(ArrayList value) { this.ItemNoIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @Route(Path="/Queries/EM_Main", Verbs="GET") @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class EM_MainQuery extends QueryDb implements IReturn> { public String RecID = null; public String RecIDStartsWith = null; public String RecIDEndsWith = null; public String RecIDContains = null; public String RecIDLike = null; public ArrayList RecIDBetween = null; public ArrayList RecIDIn = null; public String EmailNo = null; public String EmailNoStartsWith = null; public String EmailNoEndsWith = null; public String EmailNoContains = null; public String EmailNoLike = null; public ArrayList EmailNoBetween = null; public ArrayList EmailNoIn = null; public Date LastSavedDateTime = null; public Date LastSavedDateTimeGreaterThanOrEqualTo = null; public Date LastSavedDateTimeGreaterThan = null; public Date LastSavedDateTimeLessThan = null; public Date LastSavedDateTimeLessThanOrEqualTo = null; public Date LastSavedDateTimeNotEqualTo = null; public ArrayList LastSavedDateTimeBetween = null; public ArrayList LastSavedDateTimeIn = null; public Date DateCreated = null; public Date DateCreatedGreaterThanOrEqualTo = null; public Date DateCreatedGreaterThan = null; public Date DateCreatedLessThan = null; public Date DateCreatedLessThanOrEqualTo = null; public Date DateCreatedNotEqualTo = null; public ArrayList DateCreatedBetween = null; public ArrayList DateCreatedIn = null; public Date DateSent = null; public Date DateSentGreaterThanOrEqualTo = null; public Date DateSentGreaterThan = null; public Date DateSentLessThan = null; public Date DateSentLessThanOrEqualTo = null; public Date DateSentNotEqualTo = null; public ArrayList DateSentBetween = null; public ArrayList DateSentIn = null; public String StaffID = null; public String StaffIDStartsWith = null; public String StaffIDEndsWith = null; public String StaffIDContains = null; public String StaffIDLike = null; public ArrayList StaffIDBetween = null; public ArrayList StaffIDIn = null; public String Reference = null; public String ReferenceStartsWith = null; public String ReferenceEndsWith = null; public String ReferenceContains = null; public String ReferenceLike = null; public ArrayList ReferenceBetween = null; public ArrayList ReferenceIn = null; public String SourceID = null; public String SourceIDStartsWith = null; public String SourceIDEndsWith = null; public String SourceIDContains = null; public String SourceIDLike = null; public ArrayList SourceIDBetween = null; public ArrayList SourceIDIn = null; public String SourceType = null; public String SourceTypeStartsWith = null; public String SourceTypeEndsWith = null; public String SourceTypeContains = null; public String SourceTypeLike = null; public ArrayList SourceTypeBetween = null; public ArrayList SourceTypeIn = null; public String SourceDisplayNo = null; public String SourceDisplayNoStartsWith = null; public String SourceDisplayNoEndsWith = null; public String SourceDisplayNoContains = null; public String SourceDisplayNoLike = null; public ArrayList SourceDisplayNoBetween = null; public ArrayList SourceDisplayNoIn = null; public String SY_Forms_ClassName = null; public String SY_Forms_ClassNameStartsWith = null; public String SY_Forms_ClassNameEndsWith = null; public String SY_Forms_ClassNameContains = null; public String SY_Forms_ClassNameLike = null; public ArrayList SY_Forms_ClassNameBetween = null; public ArrayList SY_Forms_ClassNameIn = null; public Short EmailStatus = null; public Short EmailStatusGreaterThanOrEqualTo = null; public Short EmailStatusGreaterThan = null; public Short EmailStatusLessThan = null; public Short EmailStatusLessThanOrEqualTo = null; public Short EmailStatusNotEqualTo = null; public ArrayList EmailStatusBetween = null; public ArrayList EmailStatusIn = null; public String EmailFrom = null; public String EmailFromStartsWith = null; public String EmailFromEndsWith = null; public String EmailFromContains = null; public String EmailFromLike = null; public ArrayList EmailFromBetween = null; public ArrayList EmailFromIn = null; public String EmailTo = null; public String EmailToStartsWith = null; public String EmailToEndsWith = null; public String EmailToContains = null; public String EmailToLike = null; public ArrayList EmailToBetween = null; public ArrayList EmailToIn = null; public String EmailCC = null; public String EmailCCStartsWith = null; public String EmailCCEndsWith = null; public String EmailCCContains = null; public String EmailCCLike = null; public ArrayList EmailCCBetween = null; public ArrayList EmailCCIn = null; public String EmailBCC = null; public String EmailBCCStartsWith = null; public String EmailBCCEndsWith = null; public String EmailBCCContains = null; public String EmailBCCLike = null; public ArrayList EmailBCCBetween = null; public ArrayList EmailBCCIn = null; public String EmailSubject = null; public String EmailSubjectStartsWith = null; public String EmailSubjectEndsWith = null; public String EmailSubjectContains = null; public String EmailSubjectLike = null; public ArrayList EmailSubjectBetween = null; public ArrayList EmailSubjectIn = null; public String EmailBody = null; public String EmailBodyStartsWith = null; public String EmailBodyEndsWith = null; public String EmailBodyContains = null; public String EmailBodyLike = null; public ArrayList EmailBodyBetween = null; public ArrayList EmailBodyIn = null; public Boolean RequestReadReceipt = null; public String getRecID() { return RecID; } public EM_MainQuery setRecID(String value) { this.RecID = value; return this; } public String getRecIDStartsWith() { return RecIDStartsWith; } public EM_MainQuery setRecIDStartsWith(String value) { this.RecIDStartsWith = value; return this; } public String getRecIDEndsWith() { return RecIDEndsWith; } public EM_MainQuery setRecIDEndsWith(String value) { this.RecIDEndsWith = value; return this; } public String getRecIDContains() { return RecIDContains; } public EM_MainQuery setRecIDContains(String value) { this.RecIDContains = value; return this; } public String getRecIDLike() { return RecIDLike; } public EM_MainQuery setRecIDLike(String value) { this.RecIDLike = value; return this; } public ArrayList getRecIDBetween() { return RecIDBetween; } public EM_MainQuery setRecIDBetween(ArrayList value) { this.RecIDBetween = value; return this; } public ArrayList getRecIDIn() { return RecIDIn; } public EM_MainQuery setRecIDIn(ArrayList value) { this.RecIDIn = value; return this; } public String getEmailNo() { return EmailNo; } public EM_MainQuery setEmailNo(String value) { this.EmailNo = value; return this; } public String getEmailNoStartsWith() { return EmailNoStartsWith; } public EM_MainQuery setEmailNoStartsWith(String value) { this.EmailNoStartsWith = value; return this; } public String getEmailNoEndsWith() { return EmailNoEndsWith; } public EM_MainQuery setEmailNoEndsWith(String value) { this.EmailNoEndsWith = value; return this; } public String getEmailNoContains() { return EmailNoContains; } public EM_MainQuery setEmailNoContains(String value) { this.EmailNoContains = value; return this; } public String getEmailNoLike() { return EmailNoLike; } public EM_MainQuery setEmailNoLike(String value) { this.EmailNoLike = value; return this; } public ArrayList getEmailNoBetween() { return EmailNoBetween; } public EM_MainQuery setEmailNoBetween(ArrayList value) { this.EmailNoBetween = value; return this; } public ArrayList getEmailNoIn() { return EmailNoIn; } public EM_MainQuery setEmailNoIn(ArrayList value) { this.EmailNoIn = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public EM_MainQuery setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getLastSavedDateTimeGreaterThanOrEqualTo() { return LastSavedDateTimeGreaterThanOrEqualTo; } public EM_MainQuery setLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.LastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeGreaterThan() { return LastSavedDateTimeGreaterThan; } public EM_MainQuery setLastSavedDateTimeGreaterThan(Date value) { this.LastSavedDateTimeGreaterThan = value; return this; } public Date getLastSavedDateTimeLessThan() { return LastSavedDateTimeLessThan; } public EM_MainQuery setLastSavedDateTimeLessThan(Date value) { this.LastSavedDateTimeLessThan = value; return this; } public Date getLastSavedDateTimeLessThanOrEqualTo() { return LastSavedDateTimeLessThanOrEqualTo; } public EM_MainQuery setLastSavedDateTimeLessThanOrEqualTo(Date value) { this.LastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeNotEqualTo() { return LastSavedDateTimeNotEqualTo; } public EM_MainQuery setLastSavedDateTimeNotEqualTo(Date value) { this.LastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getLastSavedDateTimeBetween() { return LastSavedDateTimeBetween; } public EM_MainQuery setLastSavedDateTimeBetween(ArrayList value) { this.LastSavedDateTimeBetween = value; return this; } public ArrayList getLastSavedDateTimeIn() { return LastSavedDateTimeIn; } public EM_MainQuery setLastSavedDateTimeIn(ArrayList value) { this.LastSavedDateTimeIn = value; return this; } public Date getDateCreated() { return DateCreated; } public EM_MainQuery setDateCreated(Date value) { this.DateCreated = value; return this; } public Date getDateCreatedGreaterThanOrEqualTo() { return DateCreatedGreaterThanOrEqualTo; } public EM_MainQuery setDateCreatedGreaterThanOrEqualTo(Date value) { this.DateCreatedGreaterThanOrEqualTo = value; return this; } public Date getDateCreatedGreaterThan() { return DateCreatedGreaterThan; } public EM_MainQuery setDateCreatedGreaterThan(Date value) { this.DateCreatedGreaterThan = value; return this; } public Date getDateCreatedLessThan() { return DateCreatedLessThan; } public EM_MainQuery setDateCreatedLessThan(Date value) { this.DateCreatedLessThan = value; return this; } public Date getDateCreatedLessThanOrEqualTo() { return DateCreatedLessThanOrEqualTo; } public EM_MainQuery setDateCreatedLessThanOrEqualTo(Date value) { this.DateCreatedLessThanOrEqualTo = value; return this; } public Date getDateCreatedNotEqualTo() { return DateCreatedNotEqualTo; } public EM_MainQuery setDateCreatedNotEqualTo(Date value) { this.DateCreatedNotEqualTo = value; return this; } public ArrayList getDateCreatedBetween() { return DateCreatedBetween; } public EM_MainQuery setDateCreatedBetween(ArrayList value) { this.DateCreatedBetween = value; return this; } public ArrayList getDateCreatedIn() { return DateCreatedIn; } public EM_MainQuery setDateCreatedIn(ArrayList value) { this.DateCreatedIn = value; return this; } public Date getDateSent() { return DateSent; } public EM_MainQuery setDateSent(Date value) { this.DateSent = value; return this; } public Date getDateSentGreaterThanOrEqualTo() { return DateSentGreaterThanOrEqualTo; } public EM_MainQuery setDateSentGreaterThanOrEqualTo(Date value) { this.DateSentGreaterThanOrEqualTo = value; return this; } public Date getDateSentGreaterThan() { return DateSentGreaterThan; } public EM_MainQuery setDateSentGreaterThan(Date value) { this.DateSentGreaterThan = value; return this; } public Date getDateSentLessThan() { return DateSentLessThan; } public EM_MainQuery setDateSentLessThan(Date value) { this.DateSentLessThan = value; return this; } public Date getDateSentLessThanOrEqualTo() { return DateSentLessThanOrEqualTo; } public EM_MainQuery setDateSentLessThanOrEqualTo(Date value) { this.DateSentLessThanOrEqualTo = value; return this; } public Date getDateSentNotEqualTo() { return DateSentNotEqualTo; } public EM_MainQuery setDateSentNotEqualTo(Date value) { this.DateSentNotEqualTo = value; return this; } public ArrayList getDateSentBetween() { return DateSentBetween; } public EM_MainQuery setDateSentBetween(ArrayList value) { this.DateSentBetween = value; return this; } public ArrayList getDateSentIn() { return DateSentIn; } public EM_MainQuery setDateSentIn(ArrayList value) { this.DateSentIn = value; return this; } public String getStaffID() { return StaffID; } public EM_MainQuery setStaffID(String value) { this.StaffID = value; return this; } public String getStaffIDStartsWith() { return StaffIDStartsWith; } public EM_MainQuery setStaffIDStartsWith(String value) { this.StaffIDStartsWith = value; return this; } public String getStaffIDEndsWith() { return StaffIDEndsWith; } public EM_MainQuery setStaffIDEndsWith(String value) { this.StaffIDEndsWith = value; return this; } public String getStaffIDContains() { return StaffIDContains; } public EM_MainQuery setStaffIDContains(String value) { this.StaffIDContains = value; return this; } public String getStaffIDLike() { return StaffIDLike; } public EM_MainQuery setStaffIDLike(String value) { this.StaffIDLike = value; return this; } public ArrayList getStaffIDBetween() { return StaffIDBetween; } public EM_MainQuery setStaffIDBetween(ArrayList value) { this.StaffIDBetween = value; return this; } public ArrayList getStaffIDIn() { return StaffIDIn; } public EM_MainQuery setStaffIDIn(ArrayList value) { this.StaffIDIn = value; return this; } public String getReference() { return Reference; } public EM_MainQuery setReference(String value) { this.Reference = value; return this; } public String getReferenceStartsWith() { return ReferenceStartsWith; } public EM_MainQuery setReferenceStartsWith(String value) { this.ReferenceStartsWith = value; return this; } public String getReferenceEndsWith() { return ReferenceEndsWith; } public EM_MainQuery setReferenceEndsWith(String value) { this.ReferenceEndsWith = value; return this; } public String getReferenceContains() { return ReferenceContains; } public EM_MainQuery setReferenceContains(String value) { this.ReferenceContains = value; return this; } public String getReferenceLike() { return ReferenceLike; } public EM_MainQuery setReferenceLike(String value) { this.ReferenceLike = value; return this; } public ArrayList getReferenceBetween() { return ReferenceBetween; } public EM_MainQuery setReferenceBetween(ArrayList value) { this.ReferenceBetween = value; return this; } public ArrayList getReferenceIn() { return ReferenceIn; } public EM_MainQuery setReferenceIn(ArrayList value) { this.ReferenceIn = value; return this; } public String getSourceID() { return SourceID; } public EM_MainQuery setSourceID(String value) { this.SourceID = value; return this; } public String getSourceIDStartsWith() { return SourceIDStartsWith; } public EM_MainQuery setSourceIDStartsWith(String value) { this.SourceIDStartsWith = value; return this; } public String getSourceIDEndsWith() { return SourceIDEndsWith; } public EM_MainQuery setSourceIDEndsWith(String value) { this.SourceIDEndsWith = value; return this; } public String getSourceIDContains() { return SourceIDContains; } public EM_MainQuery setSourceIDContains(String value) { this.SourceIDContains = value; return this; } public String getSourceIDLike() { return SourceIDLike; } public EM_MainQuery setSourceIDLike(String value) { this.SourceIDLike = value; return this; } public ArrayList getSourceIDBetween() { return SourceIDBetween; } public EM_MainQuery setSourceIDBetween(ArrayList value) { this.SourceIDBetween = value; return this; } public ArrayList getSourceIDIn() { return SourceIDIn; } public EM_MainQuery setSourceIDIn(ArrayList value) { this.SourceIDIn = value; return this; } public String getSourceType() { return SourceType; } public EM_MainQuery setSourceType(String value) { this.SourceType = value; return this; } public String getSourceTypeStartsWith() { return SourceTypeStartsWith; } public EM_MainQuery setSourceTypeStartsWith(String value) { this.SourceTypeStartsWith = value; return this; } public String getSourceTypeEndsWith() { return SourceTypeEndsWith; } public EM_MainQuery setSourceTypeEndsWith(String value) { this.SourceTypeEndsWith = value; return this; } public String getSourceTypeContains() { return SourceTypeContains; } public EM_MainQuery setSourceTypeContains(String value) { this.SourceTypeContains = value; return this; } public String getSourceTypeLike() { return SourceTypeLike; } public EM_MainQuery setSourceTypeLike(String value) { this.SourceTypeLike = value; return this; } public ArrayList getSourceTypeBetween() { return SourceTypeBetween; } public EM_MainQuery setSourceTypeBetween(ArrayList value) { this.SourceTypeBetween = value; return this; } public ArrayList getSourceTypeIn() { return SourceTypeIn; } public EM_MainQuery setSourceTypeIn(ArrayList value) { this.SourceTypeIn = value; return this; } public String getSourceDisplayNo() { return SourceDisplayNo; } public EM_MainQuery setSourceDisplayNo(String value) { this.SourceDisplayNo = value; return this; } public String getSourceDisplayNoStartsWith() { return SourceDisplayNoStartsWith; } public EM_MainQuery setSourceDisplayNoStartsWith(String value) { this.SourceDisplayNoStartsWith = value; return this; } public String getSourceDisplayNoEndsWith() { return SourceDisplayNoEndsWith; } public EM_MainQuery setSourceDisplayNoEndsWith(String value) { this.SourceDisplayNoEndsWith = value; return this; } public String getSourceDisplayNoContains() { return SourceDisplayNoContains; } public EM_MainQuery setSourceDisplayNoContains(String value) { this.SourceDisplayNoContains = value; return this; } public String getSourceDisplayNoLike() { return SourceDisplayNoLike; } public EM_MainQuery setSourceDisplayNoLike(String value) { this.SourceDisplayNoLike = value; return this; } public ArrayList getSourceDisplayNoBetween() { return SourceDisplayNoBetween; } public EM_MainQuery setSourceDisplayNoBetween(ArrayList value) { this.SourceDisplayNoBetween = value; return this; } public ArrayList getSourceDisplayNoIn() { return SourceDisplayNoIn; } public EM_MainQuery setSourceDisplayNoIn(ArrayList value) { this.SourceDisplayNoIn = value; return this; } public String getSyFormsClassName() { return SY_Forms_ClassName; } public EM_MainQuery setSyFormsClassName(String value) { this.SY_Forms_ClassName = value; return this; } public String getSyFormsClassNameStartsWith() { return SY_Forms_ClassNameStartsWith; } public EM_MainQuery setSyFormsClassNameStartsWith(String value) { this.SY_Forms_ClassNameStartsWith = value; return this; } public String getSyFormsClassNameEndsWith() { return SY_Forms_ClassNameEndsWith; } public EM_MainQuery setSyFormsClassNameEndsWith(String value) { this.SY_Forms_ClassNameEndsWith = value; return this; } public String getSyFormsClassNameContains() { return SY_Forms_ClassNameContains; } public EM_MainQuery setSyFormsClassNameContains(String value) { this.SY_Forms_ClassNameContains = value; return this; } public String getSyFormsClassNameLike() { return SY_Forms_ClassNameLike; } public EM_MainQuery setSyFormsClassNameLike(String value) { this.SY_Forms_ClassNameLike = value; return this; } public ArrayList getSyFormsClassNameBetween() { return SY_Forms_ClassNameBetween; } public EM_MainQuery setSyFormsClassNameBetween(ArrayList value) { this.SY_Forms_ClassNameBetween = value; return this; } public ArrayList getSyFormsClassNameIn() { return SY_Forms_ClassNameIn; } public EM_MainQuery setSyFormsClassNameIn(ArrayList value) { this.SY_Forms_ClassNameIn = value; return this; } public Short getEmailStatus() { return EmailStatus; } public EM_MainQuery setEmailStatus(Short value) { this.EmailStatus = value; return this; } public Short getEmailStatusGreaterThanOrEqualTo() { return EmailStatusGreaterThanOrEqualTo; } public EM_MainQuery setEmailStatusGreaterThanOrEqualTo(Short value) { this.EmailStatusGreaterThanOrEqualTo = value; return this; } public Short getEmailStatusGreaterThan() { return EmailStatusGreaterThan; } public EM_MainQuery setEmailStatusGreaterThan(Short value) { this.EmailStatusGreaterThan = value; return this; } public Short getEmailStatusLessThan() { return EmailStatusLessThan; } public EM_MainQuery setEmailStatusLessThan(Short value) { this.EmailStatusLessThan = value; return this; } public Short getEmailStatusLessThanOrEqualTo() { return EmailStatusLessThanOrEqualTo; } public EM_MainQuery setEmailStatusLessThanOrEqualTo(Short value) { this.EmailStatusLessThanOrEqualTo = value; return this; } public Short getEmailStatusNotEqualTo() { return EmailStatusNotEqualTo; } public EM_MainQuery setEmailStatusNotEqualTo(Short value) { this.EmailStatusNotEqualTo = value; return this; } public ArrayList getEmailStatusBetween() { return EmailStatusBetween; } public EM_MainQuery setEmailStatusBetween(ArrayList value) { this.EmailStatusBetween = value; return this; } public ArrayList getEmailStatusIn() { return EmailStatusIn; } public EM_MainQuery setEmailStatusIn(ArrayList value) { this.EmailStatusIn = value; return this; } public String getEmailFrom() { return EmailFrom; } public EM_MainQuery setEmailFrom(String value) { this.EmailFrom = value; return this; } public String getEmailFromStartsWith() { return EmailFromStartsWith; } public EM_MainQuery setEmailFromStartsWith(String value) { this.EmailFromStartsWith = value; return this; } public String getEmailFromEndsWith() { return EmailFromEndsWith; } public EM_MainQuery setEmailFromEndsWith(String value) { this.EmailFromEndsWith = value; return this; } public String getEmailFromContains() { return EmailFromContains; } public EM_MainQuery setEmailFromContains(String value) { this.EmailFromContains = value; return this; } public String getEmailFromLike() { return EmailFromLike; } public EM_MainQuery setEmailFromLike(String value) { this.EmailFromLike = value; return this; } public ArrayList getEmailFromBetween() { return EmailFromBetween; } public EM_MainQuery setEmailFromBetween(ArrayList value) { this.EmailFromBetween = value; return this; } public ArrayList getEmailFromIn() { return EmailFromIn; } public EM_MainQuery setEmailFromIn(ArrayList value) { this.EmailFromIn = value; return this; } public String getEmailTo() { return EmailTo; } public EM_MainQuery setEmailTo(String value) { this.EmailTo = value; return this; } public String getEmailToStartsWith() { return EmailToStartsWith; } public EM_MainQuery setEmailToStartsWith(String value) { this.EmailToStartsWith = value; return this; } public String getEmailToEndsWith() { return EmailToEndsWith; } public EM_MainQuery setEmailToEndsWith(String value) { this.EmailToEndsWith = value; return this; } public String getEmailToContains() { return EmailToContains; } public EM_MainQuery setEmailToContains(String value) { this.EmailToContains = value; return this; } public String getEmailToLike() { return EmailToLike; } public EM_MainQuery setEmailToLike(String value) { this.EmailToLike = value; return this; } public ArrayList getEmailToBetween() { return EmailToBetween; } public EM_MainQuery setEmailToBetween(ArrayList value) { this.EmailToBetween = value; return this; } public ArrayList getEmailToIn() { return EmailToIn; } public EM_MainQuery setEmailToIn(ArrayList value) { this.EmailToIn = value; return this; } public String getEmailCC() { return EmailCC; } public EM_MainQuery setEmailCC(String value) { this.EmailCC = value; return this; } public String getEmailCCStartsWith() { return EmailCCStartsWith; } public EM_MainQuery setEmailCCStartsWith(String value) { this.EmailCCStartsWith = value; return this; } public String getEmailCCEndsWith() { return EmailCCEndsWith; } public EM_MainQuery setEmailCCEndsWith(String value) { this.EmailCCEndsWith = value; return this; } public String getEmailCCContains() { return EmailCCContains; } public EM_MainQuery setEmailCCContains(String value) { this.EmailCCContains = value; return this; } public String getEmailCCLike() { return EmailCCLike; } public EM_MainQuery setEmailCCLike(String value) { this.EmailCCLike = value; return this; } public ArrayList getEmailCCBetween() { return EmailCCBetween; } public EM_MainQuery setEmailCCBetween(ArrayList value) { this.EmailCCBetween = value; return this; } public ArrayList getEmailCCIn() { return EmailCCIn; } public EM_MainQuery setEmailCCIn(ArrayList value) { this.EmailCCIn = value; return this; } public String getEmailBCC() { return EmailBCC; } public EM_MainQuery setEmailBCC(String value) { this.EmailBCC = value; return this; } public String getEmailBCCStartsWith() { return EmailBCCStartsWith; } public EM_MainQuery setEmailBCCStartsWith(String value) { this.EmailBCCStartsWith = value; return this; } public String getEmailBCCEndsWith() { return EmailBCCEndsWith; } public EM_MainQuery setEmailBCCEndsWith(String value) { this.EmailBCCEndsWith = value; return this; } public String getEmailBCCContains() { return EmailBCCContains; } public EM_MainQuery setEmailBCCContains(String value) { this.EmailBCCContains = value; return this; } public String getEmailBCCLike() { return EmailBCCLike; } public EM_MainQuery setEmailBCCLike(String value) { this.EmailBCCLike = value; return this; } public ArrayList getEmailBCCBetween() { return EmailBCCBetween; } public EM_MainQuery setEmailBCCBetween(ArrayList value) { this.EmailBCCBetween = value; return this; } public ArrayList getEmailBCCIn() { return EmailBCCIn; } public EM_MainQuery setEmailBCCIn(ArrayList value) { this.EmailBCCIn = value; return this; } public String getEmailSubject() { return EmailSubject; } public EM_MainQuery setEmailSubject(String value) { this.EmailSubject = value; return this; } public String getEmailSubjectStartsWith() { return EmailSubjectStartsWith; } public EM_MainQuery setEmailSubjectStartsWith(String value) { this.EmailSubjectStartsWith = value; return this; } public String getEmailSubjectEndsWith() { return EmailSubjectEndsWith; } public EM_MainQuery setEmailSubjectEndsWith(String value) { this.EmailSubjectEndsWith = value; return this; } public String getEmailSubjectContains() { return EmailSubjectContains; } public EM_MainQuery setEmailSubjectContains(String value) { this.EmailSubjectContains = value; return this; } public String getEmailSubjectLike() { return EmailSubjectLike; } public EM_MainQuery setEmailSubjectLike(String value) { this.EmailSubjectLike = value; return this; } public ArrayList getEmailSubjectBetween() { return EmailSubjectBetween; } public EM_MainQuery setEmailSubjectBetween(ArrayList value) { this.EmailSubjectBetween = value; return this; } public ArrayList getEmailSubjectIn() { return EmailSubjectIn; } public EM_MainQuery setEmailSubjectIn(ArrayList value) { this.EmailSubjectIn = value; return this; } public String getEmailBody() { return EmailBody; } public EM_MainQuery setEmailBody(String value) { this.EmailBody = value; return this; } public String getEmailBodyStartsWith() { return EmailBodyStartsWith; } public EM_MainQuery setEmailBodyStartsWith(String value) { this.EmailBodyStartsWith = value; return this; } public String getEmailBodyEndsWith() { return EmailBodyEndsWith; } public EM_MainQuery setEmailBodyEndsWith(String value) { this.EmailBodyEndsWith = value; return this; } public String getEmailBodyContains() { return EmailBodyContains; } public EM_MainQuery setEmailBodyContains(String value) { this.EmailBodyContains = value; return this; } public String getEmailBodyLike() { return EmailBodyLike; } public EM_MainQuery setEmailBodyLike(String value) { this.EmailBodyLike = value; return this; } public ArrayList getEmailBodyBetween() { return EmailBodyBetween; } public EM_MainQuery setEmailBodyBetween(ArrayList value) { this.EmailBodyBetween = value; return this; } public ArrayList getEmailBodyIn() { return EmailBodyIn; } public EM_MainQuery setEmailBodyIn(ArrayList value) { this.EmailBodyIn = value; return this; } public Boolean isRequestReadReceipt() { return RequestReadReceipt; } public EM_MainQuery setRequestReadReceipt(Boolean value) { this.RequestReadReceipt = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class EM_TemplateAttachmentsQuery extends QueryDb implements IReturn> { public String RecID = null; public String RecIDStartsWith = null; public String RecIDEndsWith = null; public String RecIDContains = null; public String RecIDLike = null; public ArrayList RecIDBetween = null; public ArrayList RecIDIn = null; public String EM_Templates_RecID = null; public String EM_Templates_RecIDStartsWith = null; public String EM_Templates_RecIDEndsWith = null; public String EM_Templates_RecIDContains = null; public String EM_Templates_RecIDLike = null; public ArrayList EM_Templates_RecIDBetween = null; public ArrayList EM_Templates_RecIDIn = null; public String SY_File_FileID = null; public String SY_File_FileIDStartsWith = null; public String SY_File_FileIDEndsWith = null; public String SY_File_FileIDContains = null; public String SY_File_FileIDLike = null; public ArrayList SY_File_FileIDBetween = null; public ArrayList SY_File_FileIDIn = null; public String getRecID() { return RecID; } public EM_TemplateAttachmentsQuery setRecID(String value) { this.RecID = value; return this; } public String getRecIDStartsWith() { return RecIDStartsWith; } public EM_TemplateAttachmentsQuery setRecIDStartsWith(String value) { this.RecIDStartsWith = value; return this; } public String getRecIDEndsWith() { return RecIDEndsWith; } public EM_TemplateAttachmentsQuery setRecIDEndsWith(String value) { this.RecIDEndsWith = value; return this; } public String getRecIDContains() { return RecIDContains; } public EM_TemplateAttachmentsQuery setRecIDContains(String value) { this.RecIDContains = value; return this; } public String getRecIDLike() { return RecIDLike; } public EM_TemplateAttachmentsQuery setRecIDLike(String value) { this.RecIDLike = value; return this; } public ArrayList getRecIDBetween() { return RecIDBetween; } public EM_TemplateAttachmentsQuery setRecIDBetween(ArrayList value) { this.RecIDBetween = value; return this; } public ArrayList getRecIDIn() { return RecIDIn; } public EM_TemplateAttachmentsQuery setRecIDIn(ArrayList value) { this.RecIDIn = value; return this; } public String getEmTemplatesRecID() { return EM_Templates_RecID; } public EM_TemplateAttachmentsQuery setEmTemplatesRecID(String value) { this.EM_Templates_RecID = value; return this; } public String getEmTemplatesRecIDStartsWith() { return EM_Templates_RecIDStartsWith; } public EM_TemplateAttachmentsQuery setEmTemplatesRecIDStartsWith(String value) { this.EM_Templates_RecIDStartsWith = value; return this; } public String getEmTemplatesRecIDEndsWith() { return EM_Templates_RecIDEndsWith; } public EM_TemplateAttachmentsQuery setEmTemplatesRecIDEndsWith(String value) { this.EM_Templates_RecIDEndsWith = value; return this; } public String getEmTemplatesRecIDContains() { return EM_Templates_RecIDContains; } public EM_TemplateAttachmentsQuery setEmTemplatesRecIDContains(String value) { this.EM_Templates_RecIDContains = value; return this; } public String getEmTemplatesRecIDLike() { return EM_Templates_RecIDLike; } public EM_TemplateAttachmentsQuery setEmTemplatesRecIDLike(String value) { this.EM_Templates_RecIDLike = value; return this; } public ArrayList getEmTemplatesRecIDBetween() { return EM_Templates_RecIDBetween; } public EM_TemplateAttachmentsQuery setEmTemplatesRecIDBetween(ArrayList value) { this.EM_Templates_RecIDBetween = value; return this; } public ArrayList getEmTemplatesRecIDIn() { return EM_Templates_RecIDIn; } public EM_TemplateAttachmentsQuery setEmTemplatesRecIDIn(ArrayList value) { this.EM_Templates_RecIDIn = value; return this; } public String getSyFileFileID() { return SY_File_FileID; } public EM_TemplateAttachmentsQuery setSyFileFileID(String value) { this.SY_File_FileID = value; return this; } public String getSyFileFileIDStartsWith() { return SY_File_FileIDStartsWith; } public EM_TemplateAttachmentsQuery setSyFileFileIDStartsWith(String value) { this.SY_File_FileIDStartsWith = value; return this; } public String getSyFileFileIDEndsWith() { return SY_File_FileIDEndsWith; } public EM_TemplateAttachmentsQuery setSyFileFileIDEndsWith(String value) { this.SY_File_FileIDEndsWith = value; return this; } public String getSyFileFileIDContains() { return SY_File_FileIDContains; } public EM_TemplateAttachmentsQuery setSyFileFileIDContains(String value) { this.SY_File_FileIDContains = value; return this; } public String getSyFileFileIDLike() { return SY_File_FileIDLike; } public EM_TemplateAttachmentsQuery setSyFileFileIDLike(String value) { this.SY_File_FileIDLike = value; return this; } public ArrayList getSyFileFileIDBetween() { return SY_File_FileIDBetween; } public EM_TemplateAttachmentsQuery setSyFileFileIDBetween(ArrayList value) { this.SY_File_FileIDBetween = value; return this; } public ArrayList getSyFileFileIDIn() { return SY_File_FileIDIn; } public EM_TemplateAttachmentsQuery setSyFileFileIDIn(ArrayList value) { this.SY_File_FileIDIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class EM_TemplatesQuery extends QueryDb implements IReturn> { public String RecID = null; public String RecIDStartsWith = null; public String RecIDEndsWith = null; public String RecIDContains = null; public String RecIDLike = null; public ArrayList RecIDBetween = null; public ArrayList RecIDIn = null; public String Name = null; public String NameStartsWith = null; public String NameEndsWith = null; public String NameContains = null; public String NameLike = null; public ArrayList NameBetween = null; public ArrayList NameIn = null; public String EmailFrom = null; public String EmailFromStartsWith = null; public String EmailFromEndsWith = null; public String EmailFromContains = null; public String EmailFromLike = null; public ArrayList EmailFromBetween = null; public ArrayList EmailFromIn = null; public String EmailTo = null; public String EmailToStartsWith = null; public String EmailToEndsWith = null; public String EmailToContains = null; public String EmailToLike = null; public ArrayList EmailToBetween = null; public ArrayList EmailToIn = null; public Boolean RequestReadReceipt = null; public String EmailCC = null; public String EmailCCStartsWith = null; public String EmailCCEndsWith = null; public String EmailCCContains = null; public String EmailCCLike = null; public ArrayList EmailCCBetween = null; public ArrayList EmailCCIn = null; public String EmailBCC = null; public String EmailBCCStartsWith = null; public String EmailBCCEndsWith = null; public String EmailBCCContains = null; public String EmailBCCLike = null; public ArrayList EmailBCCBetween = null; public ArrayList EmailBCCIn = null; public String EmailSubject = null; public String EmailSubjectStartsWith = null; public String EmailSubjectEndsWith = null; public String EmailSubjectContains = null; public String EmailSubjectLike = null; public ArrayList EmailSubjectBetween = null; public ArrayList EmailSubjectIn = null; public String EmailBody = null; public String EmailBodyStartsWith = null; public String EmailBodyEndsWith = null; public String EmailBodyContains = null; public String EmailBodyLike = null; public ArrayList EmailBodyBetween = null; public ArrayList EmailBodyIn = null; public String CreatedByStaffID = null; public String CreatedByStaffIDStartsWith = null; public String CreatedByStaffIDEndsWith = null; public String CreatedByStaffIDContains = null; public String CreatedByStaffIDLike = null; public ArrayList CreatedByStaffIDBetween = null; public ArrayList CreatedByStaffIDIn = null; public Date CreatedDateTime = null; public Date CreatedDateTimeGreaterThanOrEqualTo = null; public Date CreatedDateTimeGreaterThan = null; public Date CreatedDateTimeLessThan = null; public Date CreatedDateTimeLessThanOrEqualTo = null; public Date CreatedDateTimeNotEqualTo = null; public ArrayList CreatedDateTimeBetween = null; public ArrayList CreatedDateTimeIn = null; public String LastSavedByStaffID = null; public String LastSavedByStaffIDStartsWith = null; public String LastSavedByStaffIDEndsWith = null; public String LastSavedByStaffIDContains = null; public String LastSavedByStaffIDLike = null; public ArrayList LastSavedByStaffIDBetween = null; public ArrayList LastSavedByStaffIDIn = null; public Date LastSavedDateTime = null; public Date LastSavedDateTimeGreaterThanOrEqualTo = null; public Date LastSavedDateTimeGreaterThan = null; public Date LastSavedDateTimeLessThan = null; public Date LastSavedDateTimeLessThanOrEqualTo = null; public Date LastSavedDateTimeNotEqualTo = null; public ArrayList LastSavedDateTimeBetween = null; public ArrayList LastSavedDateTimeIn = null; public Boolean DefaultItem = null; public String getRecID() { return RecID; } public EM_TemplatesQuery setRecID(String value) { this.RecID = value; return this; } public String getRecIDStartsWith() { return RecIDStartsWith; } public EM_TemplatesQuery setRecIDStartsWith(String value) { this.RecIDStartsWith = value; return this; } public String getRecIDEndsWith() { return RecIDEndsWith; } public EM_TemplatesQuery setRecIDEndsWith(String value) { this.RecIDEndsWith = value; return this; } public String getRecIDContains() { return RecIDContains; } public EM_TemplatesQuery setRecIDContains(String value) { this.RecIDContains = value; return this; } public String getRecIDLike() { return RecIDLike; } public EM_TemplatesQuery setRecIDLike(String value) { this.RecIDLike = value; return this; } public ArrayList getRecIDBetween() { return RecIDBetween; } public EM_TemplatesQuery setRecIDBetween(ArrayList value) { this.RecIDBetween = value; return this; } public ArrayList getRecIDIn() { return RecIDIn; } public EM_TemplatesQuery setRecIDIn(ArrayList value) { this.RecIDIn = value; return this; } public String getName() { return Name; } public EM_TemplatesQuery setName(String value) { this.Name = value; return this; } public String getNameStartsWith() { return NameStartsWith; } public EM_TemplatesQuery setNameStartsWith(String value) { this.NameStartsWith = value; return this; } public String getNameEndsWith() { return NameEndsWith; } public EM_TemplatesQuery setNameEndsWith(String value) { this.NameEndsWith = value; return this; } public String getNameContains() { return NameContains; } public EM_TemplatesQuery setNameContains(String value) { this.NameContains = value; return this; } public String getNameLike() { return NameLike; } public EM_TemplatesQuery setNameLike(String value) { this.NameLike = value; return this; } public ArrayList getNameBetween() { return NameBetween; } public EM_TemplatesQuery setNameBetween(ArrayList value) { this.NameBetween = value; return this; } public ArrayList getNameIn() { return NameIn; } public EM_TemplatesQuery setNameIn(ArrayList value) { this.NameIn = value; return this; } public String getEmailFrom() { return EmailFrom; } public EM_TemplatesQuery setEmailFrom(String value) { this.EmailFrom = value; return this; } public String getEmailFromStartsWith() { return EmailFromStartsWith; } public EM_TemplatesQuery setEmailFromStartsWith(String value) { this.EmailFromStartsWith = value; return this; } public String getEmailFromEndsWith() { return EmailFromEndsWith; } public EM_TemplatesQuery setEmailFromEndsWith(String value) { this.EmailFromEndsWith = value; return this; } public String getEmailFromContains() { return EmailFromContains; } public EM_TemplatesQuery setEmailFromContains(String value) { this.EmailFromContains = value; return this; } public String getEmailFromLike() { return EmailFromLike; } public EM_TemplatesQuery setEmailFromLike(String value) { this.EmailFromLike = value; return this; } public ArrayList getEmailFromBetween() { return EmailFromBetween; } public EM_TemplatesQuery setEmailFromBetween(ArrayList value) { this.EmailFromBetween = value; return this; } public ArrayList getEmailFromIn() { return EmailFromIn; } public EM_TemplatesQuery setEmailFromIn(ArrayList value) { this.EmailFromIn = value; return this; } public String getEmailTo() { return EmailTo; } public EM_TemplatesQuery setEmailTo(String value) { this.EmailTo = value; return this; } public String getEmailToStartsWith() { return EmailToStartsWith; } public EM_TemplatesQuery setEmailToStartsWith(String value) { this.EmailToStartsWith = value; return this; } public String getEmailToEndsWith() { return EmailToEndsWith; } public EM_TemplatesQuery setEmailToEndsWith(String value) { this.EmailToEndsWith = value; return this; } public String getEmailToContains() { return EmailToContains; } public EM_TemplatesQuery setEmailToContains(String value) { this.EmailToContains = value; return this; } public String getEmailToLike() { return EmailToLike; } public EM_TemplatesQuery setEmailToLike(String value) { this.EmailToLike = value; return this; } public ArrayList getEmailToBetween() { return EmailToBetween; } public EM_TemplatesQuery setEmailToBetween(ArrayList value) { this.EmailToBetween = value; return this; } public ArrayList getEmailToIn() { return EmailToIn; } public EM_TemplatesQuery setEmailToIn(ArrayList value) { this.EmailToIn = value; return this; } public Boolean isRequestReadReceipt() { return RequestReadReceipt; } public EM_TemplatesQuery setRequestReadReceipt(Boolean value) { this.RequestReadReceipt = value; return this; } public String getEmailCC() { return EmailCC; } public EM_TemplatesQuery setEmailCC(String value) { this.EmailCC = value; return this; } public String getEmailCCStartsWith() { return EmailCCStartsWith; } public EM_TemplatesQuery setEmailCCStartsWith(String value) { this.EmailCCStartsWith = value; return this; } public String getEmailCCEndsWith() { return EmailCCEndsWith; } public EM_TemplatesQuery setEmailCCEndsWith(String value) { this.EmailCCEndsWith = value; return this; } public String getEmailCCContains() { return EmailCCContains; } public EM_TemplatesQuery setEmailCCContains(String value) { this.EmailCCContains = value; return this; } public String getEmailCCLike() { return EmailCCLike; } public EM_TemplatesQuery setEmailCCLike(String value) { this.EmailCCLike = value; return this; } public ArrayList getEmailCCBetween() { return EmailCCBetween; } public EM_TemplatesQuery setEmailCCBetween(ArrayList value) { this.EmailCCBetween = value; return this; } public ArrayList getEmailCCIn() { return EmailCCIn; } public EM_TemplatesQuery setEmailCCIn(ArrayList value) { this.EmailCCIn = value; return this; } public String getEmailBCC() { return EmailBCC; } public EM_TemplatesQuery setEmailBCC(String value) { this.EmailBCC = value; return this; } public String getEmailBCCStartsWith() { return EmailBCCStartsWith; } public EM_TemplatesQuery setEmailBCCStartsWith(String value) { this.EmailBCCStartsWith = value; return this; } public String getEmailBCCEndsWith() { return EmailBCCEndsWith; } public EM_TemplatesQuery setEmailBCCEndsWith(String value) { this.EmailBCCEndsWith = value; return this; } public String getEmailBCCContains() { return EmailBCCContains; } public EM_TemplatesQuery setEmailBCCContains(String value) { this.EmailBCCContains = value; return this; } public String getEmailBCCLike() { return EmailBCCLike; } public EM_TemplatesQuery setEmailBCCLike(String value) { this.EmailBCCLike = value; return this; } public ArrayList getEmailBCCBetween() { return EmailBCCBetween; } public EM_TemplatesQuery setEmailBCCBetween(ArrayList value) { this.EmailBCCBetween = value; return this; } public ArrayList getEmailBCCIn() { return EmailBCCIn; } public EM_TemplatesQuery setEmailBCCIn(ArrayList value) { this.EmailBCCIn = value; return this; } public String getEmailSubject() { return EmailSubject; } public EM_TemplatesQuery setEmailSubject(String value) { this.EmailSubject = value; return this; } public String getEmailSubjectStartsWith() { return EmailSubjectStartsWith; } public EM_TemplatesQuery setEmailSubjectStartsWith(String value) { this.EmailSubjectStartsWith = value; return this; } public String getEmailSubjectEndsWith() { return EmailSubjectEndsWith; } public EM_TemplatesQuery setEmailSubjectEndsWith(String value) { this.EmailSubjectEndsWith = value; return this; } public String getEmailSubjectContains() { return EmailSubjectContains; } public EM_TemplatesQuery setEmailSubjectContains(String value) { this.EmailSubjectContains = value; return this; } public String getEmailSubjectLike() { return EmailSubjectLike; } public EM_TemplatesQuery setEmailSubjectLike(String value) { this.EmailSubjectLike = value; return this; } public ArrayList getEmailSubjectBetween() { return EmailSubjectBetween; } public EM_TemplatesQuery setEmailSubjectBetween(ArrayList value) { this.EmailSubjectBetween = value; return this; } public ArrayList getEmailSubjectIn() { return EmailSubjectIn; } public EM_TemplatesQuery setEmailSubjectIn(ArrayList value) { this.EmailSubjectIn = value; return this; } public String getEmailBody() { return EmailBody; } public EM_TemplatesQuery setEmailBody(String value) { this.EmailBody = value; return this; } public String getEmailBodyStartsWith() { return EmailBodyStartsWith; } public EM_TemplatesQuery setEmailBodyStartsWith(String value) { this.EmailBodyStartsWith = value; return this; } public String getEmailBodyEndsWith() { return EmailBodyEndsWith; } public EM_TemplatesQuery setEmailBodyEndsWith(String value) { this.EmailBodyEndsWith = value; return this; } public String getEmailBodyContains() { return EmailBodyContains; } public EM_TemplatesQuery setEmailBodyContains(String value) { this.EmailBodyContains = value; return this; } public String getEmailBodyLike() { return EmailBodyLike; } public EM_TemplatesQuery setEmailBodyLike(String value) { this.EmailBodyLike = value; return this; } public ArrayList getEmailBodyBetween() { return EmailBodyBetween; } public EM_TemplatesQuery setEmailBodyBetween(ArrayList value) { this.EmailBodyBetween = value; return this; } public ArrayList getEmailBodyIn() { return EmailBodyIn; } public EM_TemplatesQuery setEmailBodyIn(ArrayList value) { this.EmailBodyIn = value; return this; } public String getCreatedByStaffID() { return CreatedByStaffID; } public EM_TemplatesQuery setCreatedByStaffID(String value) { this.CreatedByStaffID = value; return this; } public String getCreatedByStaffIDStartsWith() { return CreatedByStaffIDStartsWith; } public EM_TemplatesQuery setCreatedByStaffIDStartsWith(String value) { this.CreatedByStaffIDStartsWith = value; return this; } public String getCreatedByStaffIDEndsWith() { return CreatedByStaffIDEndsWith; } public EM_TemplatesQuery setCreatedByStaffIDEndsWith(String value) { this.CreatedByStaffIDEndsWith = value; return this; } public String getCreatedByStaffIDContains() { return CreatedByStaffIDContains; } public EM_TemplatesQuery setCreatedByStaffIDContains(String value) { this.CreatedByStaffIDContains = value; return this; } public String getCreatedByStaffIDLike() { return CreatedByStaffIDLike; } public EM_TemplatesQuery setCreatedByStaffIDLike(String value) { this.CreatedByStaffIDLike = value; return this; } public ArrayList getCreatedByStaffIDBetween() { return CreatedByStaffIDBetween; } public EM_TemplatesQuery setCreatedByStaffIDBetween(ArrayList value) { this.CreatedByStaffIDBetween = value; return this; } public ArrayList getCreatedByStaffIDIn() { return CreatedByStaffIDIn; } public EM_TemplatesQuery setCreatedByStaffIDIn(ArrayList value) { this.CreatedByStaffIDIn = value; return this; } public Date getCreatedDateTime() { return CreatedDateTime; } public EM_TemplatesQuery setCreatedDateTime(Date value) { this.CreatedDateTime = value; return this; } public Date getCreatedDateTimeGreaterThanOrEqualTo() { return CreatedDateTimeGreaterThanOrEqualTo; } public EM_TemplatesQuery setCreatedDateTimeGreaterThanOrEqualTo(Date value) { this.CreatedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getCreatedDateTimeGreaterThan() { return CreatedDateTimeGreaterThan; } public EM_TemplatesQuery setCreatedDateTimeGreaterThan(Date value) { this.CreatedDateTimeGreaterThan = value; return this; } public Date getCreatedDateTimeLessThan() { return CreatedDateTimeLessThan; } public EM_TemplatesQuery setCreatedDateTimeLessThan(Date value) { this.CreatedDateTimeLessThan = value; return this; } public Date getCreatedDateTimeLessThanOrEqualTo() { return CreatedDateTimeLessThanOrEqualTo; } public EM_TemplatesQuery setCreatedDateTimeLessThanOrEqualTo(Date value) { this.CreatedDateTimeLessThanOrEqualTo = value; return this; } public Date getCreatedDateTimeNotEqualTo() { return CreatedDateTimeNotEqualTo; } public EM_TemplatesQuery setCreatedDateTimeNotEqualTo(Date value) { this.CreatedDateTimeNotEqualTo = value; return this; } public ArrayList getCreatedDateTimeBetween() { return CreatedDateTimeBetween; } public EM_TemplatesQuery setCreatedDateTimeBetween(ArrayList value) { this.CreatedDateTimeBetween = value; return this; } public ArrayList getCreatedDateTimeIn() { return CreatedDateTimeIn; } public EM_TemplatesQuery setCreatedDateTimeIn(ArrayList value) { this.CreatedDateTimeIn = value; return this; } public String getLastSavedByStaffID() { return LastSavedByStaffID; } public EM_TemplatesQuery setLastSavedByStaffID(String value) { this.LastSavedByStaffID = value; return this; } public String getLastSavedByStaffIDStartsWith() { return LastSavedByStaffIDStartsWith; } public EM_TemplatesQuery setLastSavedByStaffIDStartsWith(String value) { this.LastSavedByStaffIDStartsWith = value; return this; } public String getLastSavedByStaffIDEndsWith() { return LastSavedByStaffIDEndsWith; } public EM_TemplatesQuery setLastSavedByStaffIDEndsWith(String value) { this.LastSavedByStaffIDEndsWith = value; return this; } public String getLastSavedByStaffIDContains() { return LastSavedByStaffIDContains; } public EM_TemplatesQuery setLastSavedByStaffIDContains(String value) { this.LastSavedByStaffIDContains = value; return this; } public String getLastSavedByStaffIDLike() { return LastSavedByStaffIDLike; } public EM_TemplatesQuery setLastSavedByStaffIDLike(String value) { this.LastSavedByStaffIDLike = value; return this; } public ArrayList getLastSavedByStaffIDBetween() { return LastSavedByStaffIDBetween; } public EM_TemplatesQuery setLastSavedByStaffIDBetween(ArrayList value) { this.LastSavedByStaffIDBetween = value; return this; } public ArrayList getLastSavedByStaffIDIn() { return LastSavedByStaffIDIn; } public EM_TemplatesQuery setLastSavedByStaffIDIn(ArrayList value) { this.LastSavedByStaffIDIn = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public EM_TemplatesQuery setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getLastSavedDateTimeGreaterThanOrEqualTo() { return LastSavedDateTimeGreaterThanOrEqualTo; } public EM_TemplatesQuery setLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.LastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeGreaterThan() { return LastSavedDateTimeGreaterThan; } public EM_TemplatesQuery setLastSavedDateTimeGreaterThan(Date value) { this.LastSavedDateTimeGreaterThan = value; return this; } public Date getLastSavedDateTimeLessThan() { return LastSavedDateTimeLessThan; } public EM_TemplatesQuery setLastSavedDateTimeLessThan(Date value) { this.LastSavedDateTimeLessThan = value; return this; } public Date getLastSavedDateTimeLessThanOrEqualTo() { return LastSavedDateTimeLessThanOrEqualTo; } public EM_TemplatesQuery setLastSavedDateTimeLessThanOrEqualTo(Date value) { this.LastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeNotEqualTo() { return LastSavedDateTimeNotEqualTo; } public EM_TemplatesQuery setLastSavedDateTimeNotEqualTo(Date value) { this.LastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getLastSavedDateTimeBetween() { return LastSavedDateTimeBetween; } public EM_TemplatesQuery setLastSavedDateTimeBetween(ArrayList value) { this.LastSavedDateTimeBetween = value; return this; } public ArrayList getLastSavedDateTimeIn() { return LastSavedDateTimeIn; } public EM_TemplatesQuery setLastSavedDateTimeIn(ArrayList value) { this.LastSavedDateTimeIn = value; return this; } public Boolean isDefaultItem() { return DefaultItem; } public EM_TemplatesQuery setDefaultItem(Boolean value) { this.DefaultItem = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class EX_ExportPendingQuery extends QueryDb implements IReturn> { public String ExportPendingID = null; public String ExportPendingIDStartsWith = null; public String ExportPendingIDEndsWith = null; public String ExportPendingIDContains = null; public String ExportPendingIDLike = null; public ArrayList ExportPendingIDBetween = null; public ArrayList ExportPendingIDIn = null; public String ActionScript = null; public String ActionScriptStartsWith = null; public String ActionScriptEndsWith = null; public String ActionScriptContains = null; public String ActionScriptLike = null; public ArrayList ActionScriptBetween = null; public ArrayList ActionScriptIn = null; public String ScriptErrorMessage = null; public String ScriptErrorMessageStartsWith = null; public String ScriptErrorMessageEndsWith = null; public String ScriptErrorMessageContains = null; public String ScriptErrorMessageLike = null; public ArrayList ScriptErrorMessageBetween = null; public ArrayList ScriptErrorMessageIn = null; public Date DateTimeAdded = null; public Date DateTimeAddedGreaterThanOrEqualTo = null; public Date DateTimeAddedGreaterThan = null; public Date DateTimeAddedLessThan = null; public Date DateTimeAddedLessThanOrEqualTo = null; public Date DateTimeAddedNotEqualTo = null; public ArrayList DateTimeAddedBetween = null; public ArrayList DateTimeAddedIn = null; public String Status = null; public String StatusStartsWith = null; public String StatusEndsWith = null; public String StatusContains = null; public String StatusLike = null; public ArrayList StatusBetween = null; public ArrayList StatusIn = null; public String getExportPendingID() { return ExportPendingID; } public EX_ExportPendingQuery setExportPendingID(String value) { this.ExportPendingID = value; return this; } public String getExportPendingIDStartsWith() { return ExportPendingIDStartsWith; } public EX_ExportPendingQuery setExportPendingIDStartsWith(String value) { this.ExportPendingIDStartsWith = value; return this; } public String getExportPendingIDEndsWith() { return ExportPendingIDEndsWith; } public EX_ExportPendingQuery setExportPendingIDEndsWith(String value) { this.ExportPendingIDEndsWith = value; return this; } public String getExportPendingIDContains() { return ExportPendingIDContains; } public EX_ExportPendingQuery setExportPendingIDContains(String value) { this.ExportPendingIDContains = value; return this; } public String getExportPendingIDLike() { return ExportPendingIDLike; } public EX_ExportPendingQuery setExportPendingIDLike(String value) { this.ExportPendingIDLike = value; return this; } public ArrayList getExportPendingIDBetween() { return ExportPendingIDBetween; } public EX_ExportPendingQuery setExportPendingIDBetween(ArrayList value) { this.ExportPendingIDBetween = value; return this; } public ArrayList getExportPendingIDIn() { return ExportPendingIDIn; } public EX_ExportPendingQuery setExportPendingIDIn(ArrayList value) { this.ExportPendingIDIn = value; return this; } public String getActionScript() { return ActionScript; } public EX_ExportPendingQuery setActionScript(String value) { this.ActionScript = value; return this; } public String getActionScriptStartsWith() { return ActionScriptStartsWith; } public EX_ExportPendingQuery setActionScriptStartsWith(String value) { this.ActionScriptStartsWith = value; return this; } public String getActionScriptEndsWith() { return ActionScriptEndsWith; } public EX_ExportPendingQuery setActionScriptEndsWith(String value) { this.ActionScriptEndsWith = value; return this; } public String getActionScriptContains() { return ActionScriptContains; } public EX_ExportPendingQuery setActionScriptContains(String value) { this.ActionScriptContains = value; return this; } public String getActionScriptLike() { return ActionScriptLike; } public EX_ExportPendingQuery setActionScriptLike(String value) { this.ActionScriptLike = value; return this; } public ArrayList getActionScriptBetween() { return ActionScriptBetween; } public EX_ExportPendingQuery setActionScriptBetween(ArrayList value) { this.ActionScriptBetween = value; return this; } public ArrayList getActionScriptIn() { return ActionScriptIn; } public EX_ExportPendingQuery setActionScriptIn(ArrayList value) { this.ActionScriptIn = value; return this; } public String getScriptErrorMessage() { return ScriptErrorMessage; } public EX_ExportPendingQuery setScriptErrorMessage(String value) { this.ScriptErrorMessage = value; return this; } public String getScriptErrorMessageStartsWith() { return ScriptErrorMessageStartsWith; } public EX_ExportPendingQuery setScriptErrorMessageStartsWith(String value) { this.ScriptErrorMessageStartsWith = value; return this; } public String getScriptErrorMessageEndsWith() { return ScriptErrorMessageEndsWith; } public EX_ExportPendingQuery setScriptErrorMessageEndsWith(String value) { this.ScriptErrorMessageEndsWith = value; return this; } public String getScriptErrorMessageContains() { return ScriptErrorMessageContains; } public EX_ExportPendingQuery setScriptErrorMessageContains(String value) { this.ScriptErrorMessageContains = value; return this; } public String getScriptErrorMessageLike() { return ScriptErrorMessageLike; } public EX_ExportPendingQuery setScriptErrorMessageLike(String value) { this.ScriptErrorMessageLike = value; return this; } public ArrayList getScriptErrorMessageBetween() { return ScriptErrorMessageBetween; } public EX_ExportPendingQuery setScriptErrorMessageBetween(ArrayList value) { this.ScriptErrorMessageBetween = value; return this; } public ArrayList getScriptErrorMessageIn() { return ScriptErrorMessageIn; } public EX_ExportPendingQuery setScriptErrorMessageIn(ArrayList value) { this.ScriptErrorMessageIn = value; return this; } public Date getDateTimeAdded() { return DateTimeAdded; } public EX_ExportPendingQuery setDateTimeAdded(Date value) { this.DateTimeAdded = value; return this; } public Date getDateTimeAddedGreaterThanOrEqualTo() { return DateTimeAddedGreaterThanOrEqualTo; } public EX_ExportPendingQuery setDateTimeAddedGreaterThanOrEqualTo(Date value) { this.DateTimeAddedGreaterThanOrEqualTo = value; return this; } public Date getDateTimeAddedGreaterThan() { return DateTimeAddedGreaterThan; } public EX_ExportPendingQuery setDateTimeAddedGreaterThan(Date value) { this.DateTimeAddedGreaterThan = value; return this; } public Date getDateTimeAddedLessThan() { return DateTimeAddedLessThan; } public EX_ExportPendingQuery setDateTimeAddedLessThan(Date value) { this.DateTimeAddedLessThan = value; return this; } public Date getDateTimeAddedLessThanOrEqualTo() { return DateTimeAddedLessThanOrEqualTo; } public EX_ExportPendingQuery setDateTimeAddedLessThanOrEqualTo(Date value) { this.DateTimeAddedLessThanOrEqualTo = value; return this; } public Date getDateTimeAddedNotEqualTo() { return DateTimeAddedNotEqualTo; } public EX_ExportPendingQuery setDateTimeAddedNotEqualTo(Date value) { this.DateTimeAddedNotEqualTo = value; return this; } public ArrayList getDateTimeAddedBetween() { return DateTimeAddedBetween; } public EX_ExportPendingQuery setDateTimeAddedBetween(ArrayList value) { this.DateTimeAddedBetween = value; return this; } public ArrayList getDateTimeAddedIn() { return DateTimeAddedIn; } public EX_ExportPendingQuery setDateTimeAddedIn(ArrayList value) { this.DateTimeAddedIn = value; return this; } public String getStatus() { return Status; } public EX_ExportPendingQuery setStatus(String value) { this.Status = value; return this; } public String getStatusStartsWith() { return StatusStartsWith; } public EX_ExportPendingQuery setStatusStartsWith(String value) { this.StatusStartsWith = value; return this; } public String getStatusEndsWith() { return StatusEndsWith; } public EX_ExportPendingQuery setStatusEndsWith(String value) { this.StatusEndsWith = value; return this; } public String getStatusContains() { return StatusContains; } public EX_ExportPendingQuery setStatusContains(String value) { this.StatusContains = value; return this; } public String getStatusLike() { return StatusLike; } public EX_ExportPendingQuery setStatusLike(String value) { this.StatusLike = value; return this; } public ArrayList getStatusBetween() { return StatusBetween; } public EX_ExportPendingQuery setStatusBetween(ArrayList value) { this.StatusBetween = value; return this; } public ArrayList getStatusIn() { return StatusIn; } public EX_ExportPendingQuery setStatusIn(ArrayList value) { this.StatusIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class EX_ExportQueueQuery extends QueryDb implements IReturn> { public String ExportQueueID = null; public String ExportQueueIDStartsWith = null; public String ExportQueueIDEndsWith = null; public String ExportQueueIDContains = null; public String ExportQueueIDLike = null; public ArrayList ExportQueueIDBetween = null; public ArrayList ExportQueueIDIn = null; public String ExportData = null; public String ExportDataStartsWith = null; public String ExportDataEndsWith = null; public String ExportDataContains = null; public String ExportDataLike = null; public ArrayList ExportDataBetween = null; public ArrayList ExportDataIn = null; public Short Status = null; public Short StatusGreaterThanOrEqualTo = null; public Short StatusGreaterThan = null; public Short StatusLessThan = null; public Short StatusLessThanOrEqualTo = null; public Short StatusNotEqualTo = null; public ArrayList StatusBetween = null; public ArrayList StatusIn = null; public Date AddedToQueueDateTime = null; public Date AddedToQueueDateTimeGreaterThanOrEqualTo = null; public Date AddedToQueueDateTimeGreaterThan = null; public Date AddedToQueueDateTimeLessThan = null; public Date AddedToQueueDateTimeLessThanOrEqualTo = null; public Date AddedToQueueDateTimeNotEqualTo = null; public ArrayList AddedToQueueDateTimeBetween = null; public ArrayList AddedToQueueDateTimeIn = null; public String AddedToQueueByStaffID = null; public String AddedToQueueByStaffIDStartsWith = null; public String AddedToQueueByStaffIDEndsWith = null; public String AddedToQueueByStaffIDContains = null; public String AddedToQueueByStaffIDLike = null; public ArrayList AddedToQueueByStaffIDBetween = null; public ArrayList AddedToQueueByStaffIDIn = null; public Date LastSavedDateTime = null; public Date LastSavedDateTimeGreaterThanOrEqualTo = null; public Date LastSavedDateTimeGreaterThan = null; public Date LastSavedDateTimeLessThan = null; public Date LastSavedDateTimeLessThanOrEqualTo = null; public Date LastSavedDateTimeNotEqualTo = null; public ArrayList LastSavedDateTimeBetween = null; public ArrayList LastSavedDateTimeIn = null; public String LastSavedByStaffID = null; public String LastSavedByStaffIDStartsWith = null; public String LastSavedByStaffIDEndsWith = null; public String LastSavedByStaffIDContains = null; public String LastSavedByStaffIDLike = null; public ArrayList LastSavedByStaffIDBetween = null; public ArrayList LastSavedByStaffIDIn = null; public String ExportErrorMessage = null; public String ExportErrorMessageStartsWith = null; public String ExportErrorMessageEndsWith = null; public String ExportErrorMessageContains = null; public String ExportErrorMessageLike = null; public ArrayList ExportErrorMessageBetween = null; public ArrayList ExportErrorMessageIn = null; public String ExportBatchID = null; public String ExportBatchIDStartsWith = null; public String ExportBatchIDEndsWith = null; public String ExportBatchIDContains = null; public String ExportBatchIDLike = null; public ArrayList ExportBatchIDBetween = null; public ArrayList ExportBatchIDIn = null; public String BatchNo = null; public String BatchNoStartsWith = null; public String BatchNoEndsWith = null; public String BatchNoContains = null; public String BatchNoLike = null; public ArrayList BatchNoBetween = null; public ArrayList BatchNoIn = null; public String ItemNo = null; public String ItemNoStartsWith = null; public String ItemNoEndsWith = null; public String ItemNoContains = null; public String ItemNoLike = null; public ArrayList ItemNoBetween = null; public ArrayList ItemNoIn = null; public String getExportQueueID() { return ExportQueueID; } public EX_ExportQueueQuery setExportQueueID(String value) { this.ExportQueueID = value; return this; } public String getExportQueueIDStartsWith() { return ExportQueueIDStartsWith; } public EX_ExportQueueQuery setExportQueueIDStartsWith(String value) { this.ExportQueueIDStartsWith = value; return this; } public String getExportQueueIDEndsWith() { return ExportQueueIDEndsWith; } public EX_ExportQueueQuery setExportQueueIDEndsWith(String value) { this.ExportQueueIDEndsWith = value; return this; } public String getExportQueueIDContains() { return ExportQueueIDContains; } public EX_ExportQueueQuery setExportQueueIDContains(String value) { this.ExportQueueIDContains = value; return this; } public String getExportQueueIDLike() { return ExportQueueIDLike; } public EX_ExportQueueQuery setExportQueueIDLike(String value) { this.ExportQueueIDLike = value; return this; } public ArrayList getExportQueueIDBetween() { return ExportQueueIDBetween; } public EX_ExportQueueQuery setExportQueueIDBetween(ArrayList value) { this.ExportQueueIDBetween = value; return this; } public ArrayList getExportQueueIDIn() { return ExportQueueIDIn; } public EX_ExportQueueQuery setExportQueueIDIn(ArrayList value) { this.ExportQueueIDIn = value; return this; } public String getExportData() { return ExportData; } public EX_ExportQueueQuery setExportData(String value) { this.ExportData = value; return this; } public String getExportDataStartsWith() { return ExportDataStartsWith; } public EX_ExportQueueQuery setExportDataStartsWith(String value) { this.ExportDataStartsWith = value; return this; } public String getExportDataEndsWith() { return ExportDataEndsWith; } public EX_ExportQueueQuery setExportDataEndsWith(String value) { this.ExportDataEndsWith = value; return this; } public String getExportDataContains() { return ExportDataContains; } public EX_ExportQueueQuery setExportDataContains(String value) { this.ExportDataContains = value; return this; } public String getExportDataLike() { return ExportDataLike; } public EX_ExportQueueQuery setExportDataLike(String value) { this.ExportDataLike = value; return this; } public ArrayList getExportDataBetween() { return ExportDataBetween; } public EX_ExportQueueQuery setExportDataBetween(ArrayList value) { this.ExportDataBetween = value; return this; } public ArrayList getExportDataIn() { return ExportDataIn; } public EX_ExportQueueQuery setExportDataIn(ArrayList value) { this.ExportDataIn = value; return this; } public Short getStatus() { return Status; } public EX_ExportQueueQuery setStatus(Short value) { this.Status = value; return this; } public Short getStatusGreaterThanOrEqualTo() { return StatusGreaterThanOrEqualTo; } public EX_ExportQueueQuery setStatusGreaterThanOrEqualTo(Short value) { this.StatusGreaterThanOrEqualTo = value; return this; } public Short getStatusGreaterThan() { return StatusGreaterThan; } public EX_ExportQueueQuery setStatusGreaterThan(Short value) { this.StatusGreaterThan = value; return this; } public Short getStatusLessThan() { return StatusLessThan; } public EX_ExportQueueQuery setStatusLessThan(Short value) { this.StatusLessThan = value; return this; } public Short getStatusLessThanOrEqualTo() { return StatusLessThanOrEqualTo; } public EX_ExportQueueQuery setStatusLessThanOrEqualTo(Short value) { this.StatusLessThanOrEqualTo = value; return this; } public Short getStatusNotEqualTo() { return StatusNotEqualTo; } public EX_ExportQueueQuery setStatusNotEqualTo(Short value) { this.StatusNotEqualTo = value; return this; } public ArrayList getStatusBetween() { return StatusBetween; } public EX_ExportQueueQuery setStatusBetween(ArrayList value) { this.StatusBetween = value; return this; } public ArrayList getStatusIn() { return StatusIn; } public EX_ExportQueueQuery setStatusIn(ArrayList value) { this.StatusIn = value; return this; } public Date getAddedToQueueDateTime() { return AddedToQueueDateTime; } public EX_ExportQueueQuery setAddedToQueueDateTime(Date value) { this.AddedToQueueDateTime = value; return this; } public Date getAddedToQueueDateTimeGreaterThanOrEqualTo() { return AddedToQueueDateTimeGreaterThanOrEqualTo; } public EX_ExportQueueQuery setAddedToQueueDateTimeGreaterThanOrEqualTo(Date value) { this.AddedToQueueDateTimeGreaterThanOrEqualTo = value; return this; } public Date getAddedToQueueDateTimeGreaterThan() { return AddedToQueueDateTimeGreaterThan; } public EX_ExportQueueQuery setAddedToQueueDateTimeGreaterThan(Date value) { this.AddedToQueueDateTimeGreaterThan = value; return this; } public Date getAddedToQueueDateTimeLessThan() { return AddedToQueueDateTimeLessThan; } public EX_ExportQueueQuery setAddedToQueueDateTimeLessThan(Date value) { this.AddedToQueueDateTimeLessThan = value; return this; } public Date getAddedToQueueDateTimeLessThanOrEqualTo() { return AddedToQueueDateTimeLessThanOrEqualTo; } public EX_ExportQueueQuery setAddedToQueueDateTimeLessThanOrEqualTo(Date value) { this.AddedToQueueDateTimeLessThanOrEqualTo = value; return this; } public Date getAddedToQueueDateTimeNotEqualTo() { return AddedToQueueDateTimeNotEqualTo; } public EX_ExportQueueQuery setAddedToQueueDateTimeNotEqualTo(Date value) { this.AddedToQueueDateTimeNotEqualTo = value; return this; } public ArrayList getAddedToQueueDateTimeBetween() { return AddedToQueueDateTimeBetween; } public EX_ExportQueueQuery setAddedToQueueDateTimeBetween(ArrayList value) { this.AddedToQueueDateTimeBetween = value; return this; } public ArrayList getAddedToQueueDateTimeIn() { return AddedToQueueDateTimeIn; } public EX_ExportQueueQuery setAddedToQueueDateTimeIn(ArrayList value) { this.AddedToQueueDateTimeIn = value; return this; } public String getAddedToQueueByStaffID() { return AddedToQueueByStaffID; } public EX_ExportQueueQuery setAddedToQueueByStaffID(String value) { this.AddedToQueueByStaffID = value; return this; } public String getAddedToQueueByStaffIDStartsWith() { return AddedToQueueByStaffIDStartsWith; } public EX_ExportQueueQuery setAddedToQueueByStaffIDStartsWith(String value) { this.AddedToQueueByStaffIDStartsWith = value; return this; } public String getAddedToQueueByStaffIDEndsWith() { return AddedToQueueByStaffIDEndsWith; } public EX_ExportQueueQuery setAddedToQueueByStaffIDEndsWith(String value) { this.AddedToQueueByStaffIDEndsWith = value; return this; } public String getAddedToQueueByStaffIDContains() { return AddedToQueueByStaffIDContains; } public EX_ExportQueueQuery setAddedToQueueByStaffIDContains(String value) { this.AddedToQueueByStaffIDContains = value; return this; } public String getAddedToQueueByStaffIDLike() { return AddedToQueueByStaffIDLike; } public EX_ExportQueueQuery setAddedToQueueByStaffIDLike(String value) { this.AddedToQueueByStaffIDLike = value; return this; } public ArrayList getAddedToQueueByStaffIDBetween() { return AddedToQueueByStaffIDBetween; } public EX_ExportQueueQuery setAddedToQueueByStaffIDBetween(ArrayList value) { this.AddedToQueueByStaffIDBetween = value; return this; } public ArrayList getAddedToQueueByStaffIDIn() { return AddedToQueueByStaffIDIn; } public EX_ExportQueueQuery setAddedToQueueByStaffIDIn(ArrayList value) { this.AddedToQueueByStaffIDIn = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public EX_ExportQueueQuery setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getLastSavedDateTimeGreaterThanOrEqualTo() { return LastSavedDateTimeGreaterThanOrEqualTo; } public EX_ExportQueueQuery setLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.LastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeGreaterThan() { return LastSavedDateTimeGreaterThan; } public EX_ExportQueueQuery setLastSavedDateTimeGreaterThan(Date value) { this.LastSavedDateTimeGreaterThan = value; return this; } public Date getLastSavedDateTimeLessThan() { return LastSavedDateTimeLessThan; } public EX_ExportQueueQuery setLastSavedDateTimeLessThan(Date value) { this.LastSavedDateTimeLessThan = value; return this; } public Date getLastSavedDateTimeLessThanOrEqualTo() { return LastSavedDateTimeLessThanOrEqualTo; } public EX_ExportQueueQuery setLastSavedDateTimeLessThanOrEqualTo(Date value) { this.LastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeNotEqualTo() { return LastSavedDateTimeNotEqualTo; } public EX_ExportQueueQuery setLastSavedDateTimeNotEqualTo(Date value) { this.LastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getLastSavedDateTimeBetween() { return LastSavedDateTimeBetween; } public EX_ExportQueueQuery setLastSavedDateTimeBetween(ArrayList value) { this.LastSavedDateTimeBetween = value; return this; } public ArrayList getLastSavedDateTimeIn() { return LastSavedDateTimeIn; } public EX_ExportQueueQuery setLastSavedDateTimeIn(ArrayList value) { this.LastSavedDateTimeIn = value; return this; } public String getLastSavedByStaffID() { return LastSavedByStaffID; } public EX_ExportQueueQuery setLastSavedByStaffID(String value) { this.LastSavedByStaffID = value; return this; } public String getLastSavedByStaffIDStartsWith() { return LastSavedByStaffIDStartsWith; } public EX_ExportQueueQuery setLastSavedByStaffIDStartsWith(String value) { this.LastSavedByStaffIDStartsWith = value; return this; } public String getLastSavedByStaffIDEndsWith() { return LastSavedByStaffIDEndsWith; } public EX_ExportQueueQuery setLastSavedByStaffIDEndsWith(String value) { this.LastSavedByStaffIDEndsWith = value; return this; } public String getLastSavedByStaffIDContains() { return LastSavedByStaffIDContains; } public EX_ExportQueueQuery setLastSavedByStaffIDContains(String value) { this.LastSavedByStaffIDContains = value; return this; } public String getLastSavedByStaffIDLike() { return LastSavedByStaffIDLike; } public EX_ExportQueueQuery setLastSavedByStaffIDLike(String value) { this.LastSavedByStaffIDLike = value; return this; } public ArrayList getLastSavedByStaffIDBetween() { return LastSavedByStaffIDBetween; } public EX_ExportQueueQuery setLastSavedByStaffIDBetween(ArrayList value) { this.LastSavedByStaffIDBetween = value; return this; } public ArrayList getLastSavedByStaffIDIn() { return LastSavedByStaffIDIn; } public EX_ExportQueueQuery setLastSavedByStaffIDIn(ArrayList value) { this.LastSavedByStaffIDIn = value; return this; } public String getExportErrorMessage() { return ExportErrorMessage; } public EX_ExportQueueQuery setExportErrorMessage(String value) { this.ExportErrorMessage = value; return this; } public String getExportErrorMessageStartsWith() { return ExportErrorMessageStartsWith; } public EX_ExportQueueQuery setExportErrorMessageStartsWith(String value) { this.ExportErrorMessageStartsWith = value; return this; } public String getExportErrorMessageEndsWith() { return ExportErrorMessageEndsWith; } public EX_ExportQueueQuery setExportErrorMessageEndsWith(String value) { this.ExportErrorMessageEndsWith = value; return this; } public String getExportErrorMessageContains() { return ExportErrorMessageContains; } public EX_ExportQueueQuery setExportErrorMessageContains(String value) { this.ExportErrorMessageContains = value; return this; } public String getExportErrorMessageLike() { return ExportErrorMessageLike; } public EX_ExportQueueQuery setExportErrorMessageLike(String value) { this.ExportErrorMessageLike = value; return this; } public ArrayList getExportErrorMessageBetween() { return ExportErrorMessageBetween; } public EX_ExportQueueQuery setExportErrorMessageBetween(ArrayList value) { this.ExportErrorMessageBetween = value; return this; } public ArrayList getExportErrorMessageIn() { return ExportErrorMessageIn; } public EX_ExportQueueQuery setExportErrorMessageIn(ArrayList value) { this.ExportErrorMessageIn = value; return this; } public String getExportBatchID() { return ExportBatchID; } public EX_ExportQueueQuery setExportBatchID(String value) { this.ExportBatchID = value; return this; } public String getExportBatchIDStartsWith() { return ExportBatchIDStartsWith; } public EX_ExportQueueQuery setExportBatchIDStartsWith(String value) { this.ExportBatchIDStartsWith = value; return this; } public String getExportBatchIDEndsWith() { return ExportBatchIDEndsWith; } public EX_ExportQueueQuery setExportBatchIDEndsWith(String value) { this.ExportBatchIDEndsWith = value; return this; } public String getExportBatchIDContains() { return ExportBatchIDContains; } public EX_ExportQueueQuery setExportBatchIDContains(String value) { this.ExportBatchIDContains = value; return this; } public String getExportBatchIDLike() { return ExportBatchIDLike; } public EX_ExportQueueQuery setExportBatchIDLike(String value) { this.ExportBatchIDLike = value; return this; } public ArrayList getExportBatchIDBetween() { return ExportBatchIDBetween; } public EX_ExportQueueQuery setExportBatchIDBetween(ArrayList value) { this.ExportBatchIDBetween = value; return this; } public ArrayList getExportBatchIDIn() { return ExportBatchIDIn; } public EX_ExportQueueQuery setExportBatchIDIn(ArrayList value) { this.ExportBatchIDIn = value; return this; } public String getBatchNo() { return BatchNo; } public EX_ExportQueueQuery setBatchNo(String value) { this.BatchNo = value; return this; } public String getBatchNoStartsWith() { return BatchNoStartsWith; } public EX_ExportQueueQuery setBatchNoStartsWith(String value) { this.BatchNoStartsWith = value; return this; } public String getBatchNoEndsWith() { return BatchNoEndsWith; } public EX_ExportQueueQuery setBatchNoEndsWith(String value) { this.BatchNoEndsWith = value; return this; } public String getBatchNoContains() { return BatchNoContains; } public EX_ExportQueueQuery setBatchNoContains(String value) { this.BatchNoContains = value; return this; } public String getBatchNoLike() { return BatchNoLike; } public EX_ExportQueueQuery setBatchNoLike(String value) { this.BatchNoLike = value; return this; } public ArrayList getBatchNoBetween() { return BatchNoBetween; } public EX_ExportQueueQuery setBatchNoBetween(ArrayList value) { this.BatchNoBetween = value; return this; } public ArrayList getBatchNoIn() { return BatchNoIn; } public EX_ExportQueueQuery setBatchNoIn(ArrayList value) { this.BatchNoIn = value; return this; } public String getItemNo() { return ItemNo; } public EX_ExportQueueQuery setItemNo(String value) { this.ItemNo = value; return this; } public String getItemNoStartsWith() { return ItemNoStartsWith; } public EX_ExportQueueQuery setItemNoStartsWith(String value) { this.ItemNoStartsWith = value; return this; } public String getItemNoEndsWith() { return ItemNoEndsWith; } public EX_ExportQueueQuery setItemNoEndsWith(String value) { this.ItemNoEndsWith = value; return this; } public String getItemNoContains() { return ItemNoContains; } public EX_ExportQueueQuery setItemNoContains(String value) { this.ItemNoContains = value; return this; } public String getItemNoLike() { return ItemNoLike; } public EX_ExportQueueQuery setItemNoLike(String value) { this.ItemNoLike = value; return this; } public ArrayList getItemNoBetween() { return ItemNoBetween; } public EX_ExportQueueQuery setItemNoBetween(ArrayList value) { this.ItemNoBetween = value; return this; } public ArrayList getItemNoIn() { return ItemNoIn; } public EX_ExportQueueQuery setItemNoIn(ArrayList value) { this.ItemNoIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class FR_CarrierFreightDescriptionsQuery extends QueryDb implements IReturn> { public String RecID = null; public String RecIDStartsWith = null; public String RecIDEndsWith = null; public String RecIDContains = null; public String RecIDLike = null; public ArrayList RecIDBetween = null; public ArrayList RecIDIn = null; public String FR_Carriers_RecID = null; public String FR_Carriers_RecIDStartsWith = null; public String FR_Carriers_RecIDEndsWith = null; public String FR_Carriers_RecIDContains = null; public String FR_Carriers_RecIDLike = null; public ArrayList FR_Carriers_RecIDBetween = null; public ArrayList FR_Carriers_RecIDIn = null; public String FreightDescription = null; public String FreightDescriptionStartsWith = null; public String FreightDescriptionEndsWith = null; public String FreightDescriptionContains = null; public String FreightDescriptionLike = null; public ArrayList FreightDescriptionBetween = null; public ArrayList FreightDescriptionIn = null; public Boolean DefaultItem = null; public Date LastSavedDateTime = null; public Date LastSavedDateTimeGreaterThanOrEqualTo = null; public Date LastSavedDateTimeGreaterThan = null; public Date LastSavedDateTimeLessThan = null; public Date LastSavedDateTimeLessThanOrEqualTo = null; public Date LastSavedDateTimeNotEqualTo = null; public ArrayList LastSavedDateTimeBetween = null; public ArrayList LastSavedDateTimeIn = null; public Boolean FreightDescriptionEnabled = null; public String getRecID() { return RecID; } public FR_CarrierFreightDescriptionsQuery setRecID(String value) { this.RecID = value; return this; } public String getRecIDStartsWith() { return RecIDStartsWith; } public FR_CarrierFreightDescriptionsQuery setRecIDStartsWith(String value) { this.RecIDStartsWith = value; return this; } public String getRecIDEndsWith() { return RecIDEndsWith; } public FR_CarrierFreightDescriptionsQuery setRecIDEndsWith(String value) { this.RecIDEndsWith = value; return this; } public String getRecIDContains() { return RecIDContains; } public FR_CarrierFreightDescriptionsQuery setRecIDContains(String value) { this.RecIDContains = value; return this; } public String getRecIDLike() { return RecIDLike; } public FR_CarrierFreightDescriptionsQuery setRecIDLike(String value) { this.RecIDLike = value; return this; } public ArrayList getRecIDBetween() { return RecIDBetween; } public FR_CarrierFreightDescriptionsQuery setRecIDBetween(ArrayList value) { this.RecIDBetween = value; return this; } public ArrayList getRecIDIn() { return RecIDIn; } public FR_CarrierFreightDescriptionsQuery setRecIDIn(ArrayList value) { this.RecIDIn = value; return this; } public String getFrCarriersRecID() { return FR_Carriers_RecID; } public FR_CarrierFreightDescriptionsQuery setFrCarriersRecID(String value) { this.FR_Carriers_RecID = value; return this; } public String getFrCarriersRecIDStartsWith() { return FR_Carriers_RecIDStartsWith; } public FR_CarrierFreightDescriptionsQuery setFrCarriersRecIDStartsWith(String value) { this.FR_Carriers_RecIDStartsWith = value; return this; } public String getFrCarriersRecIDEndsWith() { return FR_Carriers_RecIDEndsWith; } public FR_CarrierFreightDescriptionsQuery setFrCarriersRecIDEndsWith(String value) { this.FR_Carriers_RecIDEndsWith = value; return this; } public String getFrCarriersRecIDContains() { return FR_Carriers_RecIDContains; } public FR_CarrierFreightDescriptionsQuery setFrCarriersRecIDContains(String value) { this.FR_Carriers_RecIDContains = value; return this; } public String getFrCarriersRecIDLike() { return FR_Carriers_RecIDLike; } public FR_CarrierFreightDescriptionsQuery setFrCarriersRecIDLike(String value) { this.FR_Carriers_RecIDLike = value; return this; } public ArrayList getFrCarriersRecIDBetween() { return FR_Carriers_RecIDBetween; } public FR_CarrierFreightDescriptionsQuery setFrCarriersRecIDBetween(ArrayList value) { this.FR_Carriers_RecIDBetween = value; return this; } public ArrayList getFrCarriersRecIDIn() { return FR_Carriers_RecIDIn; } public FR_CarrierFreightDescriptionsQuery setFrCarriersRecIDIn(ArrayList value) { this.FR_Carriers_RecIDIn = value; return this; } public String getFreightDescription() { return FreightDescription; } public FR_CarrierFreightDescriptionsQuery setFreightDescription(String value) { this.FreightDescription = value; return this; } public String getFreightDescriptionStartsWith() { return FreightDescriptionStartsWith; } public FR_CarrierFreightDescriptionsQuery setFreightDescriptionStartsWith(String value) { this.FreightDescriptionStartsWith = value; return this; } public String getFreightDescriptionEndsWith() { return FreightDescriptionEndsWith; } public FR_CarrierFreightDescriptionsQuery setFreightDescriptionEndsWith(String value) { this.FreightDescriptionEndsWith = value; return this; } public String getFreightDescriptionContains() { return FreightDescriptionContains; } public FR_CarrierFreightDescriptionsQuery setFreightDescriptionContains(String value) { this.FreightDescriptionContains = value; return this; } public String getFreightDescriptionLike() { return FreightDescriptionLike; } public FR_CarrierFreightDescriptionsQuery setFreightDescriptionLike(String value) { this.FreightDescriptionLike = value; return this; } public ArrayList getFreightDescriptionBetween() { return FreightDescriptionBetween; } public FR_CarrierFreightDescriptionsQuery setFreightDescriptionBetween(ArrayList value) { this.FreightDescriptionBetween = value; return this; } public ArrayList getFreightDescriptionIn() { return FreightDescriptionIn; } public FR_CarrierFreightDescriptionsQuery setFreightDescriptionIn(ArrayList value) { this.FreightDescriptionIn = value; return this; } public Boolean isDefaultItem() { return DefaultItem; } public FR_CarrierFreightDescriptionsQuery setDefaultItem(Boolean value) { this.DefaultItem = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public FR_CarrierFreightDescriptionsQuery setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getLastSavedDateTimeGreaterThanOrEqualTo() { return LastSavedDateTimeGreaterThanOrEqualTo; } public FR_CarrierFreightDescriptionsQuery setLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.LastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeGreaterThan() { return LastSavedDateTimeGreaterThan; } public FR_CarrierFreightDescriptionsQuery setLastSavedDateTimeGreaterThan(Date value) { this.LastSavedDateTimeGreaterThan = value; return this; } public Date getLastSavedDateTimeLessThan() { return LastSavedDateTimeLessThan; } public FR_CarrierFreightDescriptionsQuery setLastSavedDateTimeLessThan(Date value) { this.LastSavedDateTimeLessThan = value; return this; } public Date getLastSavedDateTimeLessThanOrEqualTo() { return LastSavedDateTimeLessThanOrEqualTo; } public FR_CarrierFreightDescriptionsQuery setLastSavedDateTimeLessThanOrEqualTo(Date value) { this.LastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeNotEqualTo() { return LastSavedDateTimeNotEqualTo; } public FR_CarrierFreightDescriptionsQuery setLastSavedDateTimeNotEqualTo(Date value) { this.LastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getLastSavedDateTimeBetween() { return LastSavedDateTimeBetween; } public FR_CarrierFreightDescriptionsQuery setLastSavedDateTimeBetween(ArrayList value) { this.LastSavedDateTimeBetween = value; return this; } public ArrayList getLastSavedDateTimeIn() { return LastSavedDateTimeIn; } public FR_CarrierFreightDescriptionsQuery setLastSavedDateTimeIn(ArrayList value) { this.LastSavedDateTimeIn = value; return this; } public Boolean isFreightDescriptionEnabled() { return FreightDescriptionEnabled; } public FR_CarrierFreightDescriptionsQuery setFreightDescriptionEnabled(Boolean value) { this.FreightDescriptionEnabled = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @Route(Path="/Queries/FR_Carriers", Verbs="GET") @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class FR_CarriersQuery extends QueryDb implements IReturn> { public String RecID = null; public String RecIDStartsWith = null; public String RecIDEndsWith = null; public String RecIDContains = null; public String RecIDLike = null; public ArrayList RecIDBetween = null; public ArrayList RecIDIn = null; public String CarrierName = null; public String CarrierNameStartsWith = null; public String CarrierNameEndsWith = null; public String CarrierNameContains = null; public String CarrierNameLike = null; public ArrayList CarrierNameBetween = null; public ArrayList CarrierNameIn = null; public Boolean CarrierEnabled = null; public Date LastSavedDateTime = null; public Date LastSavedDateTimeGreaterThanOrEqualTo = null; public Date LastSavedDateTimeGreaterThan = null; public Date LastSavedDateTimeLessThan = null; public Date LastSavedDateTimeLessThanOrEqualTo = null; public Date LastSavedDateTimeNotEqualTo = null; public ArrayList LastSavedDateTimeBetween = null; public ArrayList LastSavedDateTimeIn = null; public String Notes = null; public String NotesStartsWith = null; public String NotesEndsWith = null; public String NotesContains = null; public String NotesLike = null; public ArrayList NotesBetween = null; public ArrayList NotesIn = null; public String AccountNo = null; public String AccountNoStartsWith = null; public String AccountNoEndsWith = null; public String AccountNoContains = null; public String AccountNoLike = null; public ArrayList AccountNoBetween = null; public ArrayList AccountNoIn = null; public String getRecID() { return RecID; } public FR_CarriersQuery setRecID(String value) { this.RecID = value; return this; } public String getRecIDStartsWith() { return RecIDStartsWith; } public FR_CarriersQuery setRecIDStartsWith(String value) { this.RecIDStartsWith = value; return this; } public String getRecIDEndsWith() { return RecIDEndsWith; } public FR_CarriersQuery setRecIDEndsWith(String value) { this.RecIDEndsWith = value; return this; } public String getRecIDContains() { return RecIDContains; } public FR_CarriersQuery setRecIDContains(String value) { this.RecIDContains = value; return this; } public String getRecIDLike() { return RecIDLike; } public FR_CarriersQuery setRecIDLike(String value) { this.RecIDLike = value; return this; } public ArrayList getRecIDBetween() { return RecIDBetween; } public FR_CarriersQuery setRecIDBetween(ArrayList value) { this.RecIDBetween = value; return this; } public ArrayList getRecIDIn() { return RecIDIn; } public FR_CarriersQuery setRecIDIn(ArrayList value) { this.RecIDIn = value; return this; } public String getCarrierName() { return CarrierName; } public FR_CarriersQuery setCarrierName(String value) { this.CarrierName = value; return this; } public String getCarrierNameStartsWith() { return CarrierNameStartsWith; } public FR_CarriersQuery setCarrierNameStartsWith(String value) { this.CarrierNameStartsWith = value; return this; } public String getCarrierNameEndsWith() { return CarrierNameEndsWith; } public FR_CarriersQuery setCarrierNameEndsWith(String value) { this.CarrierNameEndsWith = value; return this; } public String getCarrierNameContains() { return CarrierNameContains; } public FR_CarriersQuery setCarrierNameContains(String value) { this.CarrierNameContains = value; return this; } public String getCarrierNameLike() { return CarrierNameLike; } public FR_CarriersQuery setCarrierNameLike(String value) { this.CarrierNameLike = value; return this; } public ArrayList getCarrierNameBetween() { return CarrierNameBetween; } public FR_CarriersQuery setCarrierNameBetween(ArrayList value) { this.CarrierNameBetween = value; return this; } public ArrayList getCarrierNameIn() { return CarrierNameIn; } public FR_CarriersQuery setCarrierNameIn(ArrayList value) { this.CarrierNameIn = value; return this; } public Boolean isCarrierEnabled() { return CarrierEnabled; } public FR_CarriersQuery setCarrierEnabled(Boolean value) { this.CarrierEnabled = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public FR_CarriersQuery setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getLastSavedDateTimeGreaterThanOrEqualTo() { return LastSavedDateTimeGreaterThanOrEqualTo; } public FR_CarriersQuery setLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.LastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeGreaterThan() { return LastSavedDateTimeGreaterThan; } public FR_CarriersQuery setLastSavedDateTimeGreaterThan(Date value) { this.LastSavedDateTimeGreaterThan = value; return this; } public Date getLastSavedDateTimeLessThan() { return LastSavedDateTimeLessThan; } public FR_CarriersQuery setLastSavedDateTimeLessThan(Date value) { this.LastSavedDateTimeLessThan = value; return this; } public Date getLastSavedDateTimeLessThanOrEqualTo() { return LastSavedDateTimeLessThanOrEqualTo; } public FR_CarriersQuery setLastSavedDateTimeLessThanOrEqualTo(Date value) { this.LastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeNotEqualTo() { return LastSavedDateTimeNotEqualTo; } public FR_CarriersQuery setLastSavedDateTimeNotEqualTo(Date value) { this.LastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getLastSavedDateTimeBetween() { return LastSavedDateTimeBetween; } public FR_CarriersQuery setLastSavedDateTimeBetween(ArrayList value) { this.LastSavedDateTimeBetween = value; return this; } public ArrayList getLastSavedDateTimeIn() { return LastSavedDateTimeIn; } public FR_CarriersQuery setLastSavedDateTimeIn(ArrayList value) { this.LastSavedDateTimeIn = value; return this; } public String getNotes() { return Notes; } public FR_CarriersQuery setNotes(String value) { this.Notes = value; return this; } public String getNotesStartsWith() { return NotesStartsWith; } public FR_CarriersQuery setNotesStartsWith(String value) { this.NotesStartsWith = value; return this; } public String getNotesEndsWith() { return NotesEndsWith; } public FR_CarriersQuery setNotesEndsWith(String value) { this.NotesEndsWith = value; return this; } public String getNotesContains() { return NotesContains; } public FR_CarriersQuery setNotesContains(String value) { this.NotesContains = value; return this; } public String getNotesLike() { return NotesLike; } public FR_CarriersQuery setNotesLike(String value) { this.NotesLike = value; return this; } public ArrayList getNotesBetween() { return NotesBetween; } public FR_CarriersQuery setNotesBetween(ArrayList value) { this.NotesBetween = value; return this; } public ArrayList getNotesIn() { return NotesIn; } public FR_CarriersQuery setNotesIn(ArrayList value) { this.NotesIn = value; return this; } public String getAccountNo() { return AccountNo; } public FR_CarriersQuery setAccountNo(String value) { this.AccountNo = value; return this; } public String getAccountNoStartsWith() { return AccountNoStartsWith; } public FR_CarriersQuery setAccountNoStartsWith(String value) { this.AccountNoStartsWith = value; return this; } public String getAccountNoEndsWith() { return AccountNoEndsWith; } public FR_CarriersQuery setAccountNoEndsWith(String value) { this.AccountNoEndsWith = value; return this; } public String getAccountNoContains() { return AccountNoContains; } public FR_CarriersQuery setAccountNoContains(String value) { this.AccountNoContains = value; return this; } public String getAccountNoLike() { return AccountNoLike; } public FR_CarriersQuery setAccountNoLike(String value) { this.AccountNoLike = value; return this; } public ArrayList getAccountNoBetween() { return AccountNoBetween; } public FR_CarriersQuery setAccountNoBetween(ArrayList value) { this.AccountNoBetween = value; return this; } public ArrayList getAccountNoIn() { return AccountNoIn; } public FR_CarriersQuery setAccountNoIn(ArrayList value) { this.AccountNoIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class FR_CarrierServicesQuery extends QueryDb implements IReturn> { public String RecID = null; public String RecIDStartsWith = null; public String RecIDEndsWith = null; public String RecIDContains = null; public String RecIDLike = null; public ArrayList RecIDBetween = null; public ArrayList RecIDIn = null; public String FR_Carriers_RecID = null; public String FR_Carriers_RecIDStartsWith = null; public String FR_Carriers_RecIDEndsWith = null; public String FR_Carriers_RecIDContains = null; public String FR_Carriers_RecIDLike = null; public ArrayList FR_Carriers_RecIDBetween = null; public ArrayList FR_Carriers_RecIDIn = null; public String ServiceName = null; public String ServiceNameStartsWith = null; public String ServiceNameEndsWith = null; public String ServiceNameContains = null; public String ServiceNameLike = null; public ArrayList ServiceNameBetween = null; public ArrayList ServiceNameIn = null; public Boolean DefaultItem = null; public Date LastSavedDateTime = null; public Date LastSavedDateTimeGreaterThanOrEqualTo = null; public Date LastSavedDateTimeGreaterThan = null; public Date LastSavedDateTimeLessThan = null; public Date LastSavedDateTimeLessThanOrEqualTo = null; public Date LastSavedDateTimeNotEqualTo = null; public ArrayList LastSavedDateTimeBetween = null; public ArrayList LastSavedDateTimeIn = null; public Boolean ServiceEnabled = null; public String getRecID() { return RecID; } public FR_CarrierServicesQuery setRecID(String value) { this.RecID = value; return this; } public String getRecIDStartsWith() { return RecIDStartsWith; } public FR_CarrierServicesQuery setRecIDStartsWith(String value) { this.RecIDStartsWith = value; return this; } public String getRecIDEndsWith() { return RecIDEndsWith; } public FR_CarrierServicesQuery setRecIDEndsWith(String value) { this.RecIDEndsWith = value; return this; } public String getRecIDContains() { return RecIDContains; } public FR_CarrierServicesQuery setRecIDContains(String value) { this.RecIDContains = value; return this; } public String getRecIDLike() { return RecIDLike; } public FR_CarrierServicesQuery setRecIDLike(String value) { this.RecIDLike = value; return this; } public ArrayList getRecIDBetween() { return RecIDBetween; } public FR_CarrierServicesQuery setRecIDBetween(ArrayList value) { this.RecIDBetween = value; return this; } public ArrayList getRecIDIn() { return RecIDIn; } public FR_CarrierServicesQuery setRecIDIn(ArrayList value) { this.RecIDIn = value; return this; } public String getFrCarriersRecID() { return FR_Carriers_RecID; } public FR_CarrierServicesQuery setFrCarriersRecID(String value) { this.FR_Carriers_RecID = value; return this; } public String getFrCarriersRecIDStartsWith() { return FR_Carriers_RecIDStartsWith; } public FR_CarrierServicesQuery setFrCarriersRecIDStartsWith(String value) { this.FR_Carriers_RecIDStartsWith = value; return this; } public String getFrCarriersRecIDEndsWith() { return FR_Carriers_RecIDEndsWith; } public FR_CarrierServicesQuery setFrCarriersRecIDEndsWith(String value) { this.FR_Carriers_RecIDEndsWith = value; return this; } public String getFrCarriersRecIDContains() { return FR_Carriers_RecIDContains; } public FR_CarrierServicesQuery setFrCarriersRecIDContains(String value) { this.FR_Carriers_RecIDContains = value; return this; } public String getFrCarriersRecIDLike() { return FR_Carriers_RecIDLike; } public FR_CarrierServicesQuery setFrCarriersRecIDLike(String value) { this.FR_Carriers_RecIDLike = value; return this; } public ArrayList getFrCarriersRecIDBetween() { return FR_Carriers_RecIDBetween; } public FR_CarrierServicesQuery setFrCarriersRecIDBetween(ArrayList value) { this.FR_Carriers_RecIDBetween = value; return this; } public ArrayList getFrCarriersRecIDIn() { return FR_Carriers_RecIDIn; } public FR_CarrierServicesQuery setFrCarriersRecIDIn(ArrayList value) { this.FR_Carriers_RecIDIn = value; return this; } public String getServiceName() { return ServiceName; } public FR_CarrierServicesQuery setServiceName(String value) { this.ServiceName = value; return this; } public String getServiceNameStartsWith() { return ServiceNameStartsWith; } public FR_CarrierServicesQuery setServiceNameStartsWith(String value) { this.ServiceNameStartsWith = value; return this; } public String getServiceNameEndsWith() { return ServiceNameEndsWith; } public FR_CarrierServicesQuery setServiceNameEndsWith(String value) { this.ServiceNameEndsWith = value; return this; } public String getServiceNameContains() { return ServiceNameContains; } public FR_CarrierServicesQuery setServiceNameContains(String value) { this.ServiceNameContains = value; return this; } public String getServiceNameLike() { return ServiceNameLike; } public FR_CarrierServicesQuery setServiceNameLike(String value) { this.ServiceNameLike = value; return this; } public ArrayList getServiceNameBetween() { return ServiceNameBetween; } public FR_CarrierServicesQuery setServiceNameBetween(ArrayList value) { this.ServiceNameBetween = value; return this; } public ArrayList getServiceNameIn() { return ServiceNameIn; } public FR_CarrierServicesQuery setServiceNameIn(ArrayList value) { this.ServiceNameIn = value; return this; } public Boolean isDefaultItem() { return DefaultItem; } public FR_CarrierServicesQuery setDefaultItem(Boolean value) { this.DefaultItem = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public FR_CarrierServicesQuery setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getLastSavedDateTimeGreaterThanOrEqualTo() { return LastSavedDateTimeGreaterThanOrEqualTo; } public FR_CarrierServicesQuery setLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.LastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeGreaterThan() { return LastSavedDateTimeGreaterThan; } public FR_CarrierServicesQuery setLastSavedDateTimeGreaterThan(Date value) { this.LastSavedDateTimeGreaterThan = value; return this; } public Date getLastSavedDateTimeLessThan() { return LastSavedDateTimeLessThan; } public FR_CarrierServicesQuery setLastSavedDateTimeLessThan(Date value) { this.LastSavedDateTimeLessThan = value; return this; } public Date getLastSavedDateTimeLessThanOrEqualTo() { return LastSavedDateTimeLessThanOrEqualTo; } public FR_CarrierServicesQuery setLastSavedDateTimeLessThanOrEqualTo(Date value) { this.LastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeNotEqualTo() { return LastSavedDateTimeNotEqualTo; } public FR_CarrierServicesQuery setLastSavedDateTimeNotEqualTo(Date value) { this.LastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getLastSavedDateTimeBetween() { return LastSavedDateTimeBetween; } public FR_CarrierServicesQuery setLastSavedDateTimeBetween(ArrayList value) { this.LastSavedDateTimeBetween = value; return this; } public ArrayList getLastSavedDateTimeIn() { return LastSavedDateTimeIn; } public FR_CarrierServicesQuery setLastSavedDateTimeIn(ArrayList value) { this.LastSavedDateTimeIn = value; return this; } public Boolean isServiceEnabled() { return ServiceEnabled; } public FR_CarrierServicesQuery setServiceEnabled(Boolean value) { this.ServiceEnabled = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @Route(Path="/Queries/FX_Currency", Verbs="GET") @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class FX_CurrencyQuery extends QueryDb implements IReturn> { public String RecID = null; public String RecIDStartsWith = null; public String RecIDEndsWith = null; public String RecIDContains = null; public String RecIDLike = null; public ArrayList RecIDBetween = null; public ArrayList RecIDIn = null; public Date LastSavedDateTime = null; public Date LastSavedDateTimeGreaterThanOrEqualTo = null; public Date LastSavedDateTimeGreaterThan = null; public Date LastSavedDateTimeLessThan = null; public Date LastSavedDateTimeLessThanOrEqualTo = null; public Date LastSavedDateTimeNotEqualTo = null; public ArrayList LastSavedDateTimeBetween = null; public ArrayList LastSavedDateTimeIn = null; public String LastSavedByStaffID = null; public String LastSavedByStaffIDStartsWith = null; public String LastSavedByStaffIDEndsWith = null; public String LastSavedByStaffIDContains = null; public String LastSavedByStaffIDLike = null; public ArrayList LastSavedByStaffIDBetween = null; public ArrayList LastSavedByStaffIDIn = null; public String Name = null; public String NameStartsWith = null; public String NameEndsWith = null; public String NameContains = null; public String NameLike = null; public ArrayList NameBetween = null; public ArrayList NameIn = null; public String ShortName = null; public String ShortNameStartsWith = null; public String ShortNameEndsWith = null; public String ShortNameContains = null; public String ShortNameLike = null; public ArrayList ShortNameBetween = null; public ArrayList ShortNameIn = null; public Short DecimalPlaces = null; public Short DecimalPlacesGreaterThanOrEqualTo = null; public Short DecimalPlacesGreaterThan = null; public Short DecimalPlacesLessThan = null; public Short DecimalPlacesLessThanOrEqualTo = null; public Short DecimalPlacesNotEqualTo = null; public ArrayList DecimalPlacesBetween = null; public ArrayList DecimalPlacesIn = null; public Boolean IsLocal = null; public Boolean IsEnabled = null; public String getRecID() { return RecID; } public FX_CurrencyQuery setRecID(String value) { this.RecID = value; return this; } public String getRecIDStartsWith() { return RecIDStartsWith; } public FX_CurrencyQuery setRecIDStartsWith(String value) { this.RecIDStartsWith = value; return this; } public String getRecIDEndsWith() { return RecIDEndsWith; } public FX_CurrencyQuery setRecIDEndsWith(String value) { this.RecIDEndsWith = value; return this; } public String getRecIDContains() { return RecIDContains; } public FX_CurrencyQuery setRecIDContains(String value) { this.RecIDContains = value; return this; } public String getRecIDLike() { return RecIDLike; } public FX_CurrencyQuery setRecIDLike(String value) { this.RecIDLike = value; return this; } public ArrayList getRecIDBetween() { return RecIDBetween; } public FX_CurrencyQuery setRecIDBetween(ArrayList value) { this.RecIDBetween = value; return this; } public ArrayList getRecIDIn() { return RecIDIn; } public FX_CurrencyQuery setRecIDIn(ArrayList value) { this.RecIDIn = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public FX_CurrencyQuery setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getLastSavedDateTimeGreaterThanOrEqualTo() { return LastSavedDateTimeGreaterThanOrEqualTo; } public FX_CurrencyQuery setLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.LastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeGreaterThan() { return LastSavedDateTimeGreaterThan; } public FX_CurrencyQuery setLastSavedDateTimeGreaterThan(Date value) { this.LastSavedDateTimeGreaterThan = value; return this; } public Date getLastSavedDateTimeLessThan() { return LastSavedDateTimeLessThan; } public FX_CurrencyQuery setLastSavedDateTimeLessThan(Date value) { this.LastSavedDateTimeLessThan = value; return this; } public Date getLastSavedDateTimeLessThanOrEqualTo() { return LastSavedDateTimeLessThanOrEqualTo; } public FX_CurrencyQuery setLastSavedDateTimeLessThanOrEqualTo(Date value) { this.LastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeNotEqualTo() { return LastSavedDateTimeNotEqualTo; } public FX_CurrencyQuery setLastSavedDateTimeNotEqualTo(Date value) { this.LastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getLastSavedDateTimeBetween() { return LastSavedDateTimeBetween; } public FX_CurrencyQuery setLastSavedDateTimeBetween(ArrayList value) { this.LastSavedDateTimeBetween = value; return this; } public ArrayList getLastSavedDateTimeIn() { return LastSavedDateTimeIn; } public FX_CurrencyQuery setLastSavedDateTimeIn(ArrayList value) { this.LastSavedDateTimeIn = value; return this; } public String getLastSavedByStaffID() { return LastSavedByStaffID; } public FX_CurrencyQuery setLastSavedByStaffID(String value) { this.LastSavedByStaffID = value; return this; } public String getLastSavedByStaffIDStartsWith() { return LastSavedByStaffIDStartsWith; } public FX_CurrencyQuery setLastSavedByStaffIDStartsWith(String value) { this.LastSavedByStaffIDStartsWith = value; return this; } public String getLastSavedByStaffIDEndsWith() { return LastSavedByStaffIDEndsWith; } public FX_CurrencyQuery setLastSavedByStaffIDEndsWith(String value) { this.LastSavedByStaffIDEndsWith = value; return this; } public String getLastSavedByStaffIDContains() { return LastSavedByStaffIDContains; } public FX_CurrencyQuery setLastSavedByStaffIDContains(String value) { this.LastSavedByStaffIDContains = value; return this; } public String getLastSavedByStaffIDLike() { return LastSavedByStaffIDLike; } public FX_CurrencyQuery setLastSavedByStaffIDLike(String value) { this.LastSavedByStaffIDLike = value; return this; } public ArrayList getLastSavedByStaffIDBetween() { return LastSavedByStaffIDBetween; } public FX_CurrencyQuery setLastSavedByStaffIDBetween(ArrayList value) { this.LastSavedByStaffIDBetween = value; return this; } public ArrayList getLastSavedByStaffIDIn() { return LastSavedByStaffIDIn; } public FX_CurrencyQuery setLastSavedByStaffIDIn(ArrayList value) { this.LastSavedByStaffIDIn = value; return this; } public String getName() { return Name; } public FX_CurrencyQuery setName(String value) { this.Name = value; return this; } public String getNameStartsWith() { return NameStartsWith; } public FX_CurrencyQuery setNameStartsWith(String value) { this.NameStartsWith = value; return this; } public String getNameEndsWith() { return NameEndsWith; } public FX_CurrencyQuery setNameEndsWith(String value) { this.NameEndsWith = value; return this; } public String getNameContains() { return NameContains; } public FX_CurrencyQuery setNameContains(String value) { this.NameContains = value; return this; } public String getNameLike() { return NameLike; } public FX_CurrencyQuery setNameLike(String value) { this.NameLike = value; return this; } public ArrayList getNameBetween() { return NameBetween; } public FX_CurrencyQuery setNameBetween(ArrayList value) { this.NameBetween = value; return this; } public ArrayList getNameIn() { return NameIn; } public FX_CurrencyQuery setNameIn(ArrayList value) { this.NameIn = value; return this; } public String getShortName() { return ShortName; } public FX_CurrencyQuery setShortName(String value) { this.ShortName = value; return this; } public String getShortNameStartsWith() { return ShortNameStartsWith; } public FX_CurrencyQuery setShortNameStartsWith(String value) { this.ShortNameStartsWith = value; return this; } public String getShortNameEndsWith() { return ShortNameEndsWith; } public FX_CurrencyQuery setShortNameEndsWith(String value) { this.ShortNameEndsWith = value; return this; } public String getShortNameContains() { return ShortNameContains; } public FX_CurrencyQuery setShortNameContains(String value) { this.ShortNameContains = value; return this; } public String getShortNameLike() { return ShortNameLike; } public FX_CurrencyQuery setShortNameLike(String value) { this.ShortNameLike = value; return this; } public ArrayList getShortNameBetween() { return ShortNameBetween; } public FX_CurrencyQuery setShortNameBetween(ArrayList value) { this.ShortNameBetween = value; return this; } public ArrayList getShortNameIn() { return ShortNameIn; } public FX_CurrencyQuery setShortNameIn(ArrayList value) { this.ShortNameIn = value; return this; } public Short getDecimalPlaces() { return DecimalPlaces; } public FX_CurrencyQuery setDecimalPlaces(Short value) { this.DecimalPlaces = value; return this; } public Short getDecimalPlacesGreaterThanOrEqualTo() { return DecimalPlacesGreaterThanOrEqualTo; } public FX_CurrencyQuery setDecimalPlacesGreaterThanOrEqualTo(Short value) { this.DecimalPlacesGreaterThanOrEqualTo = value; return this; } public Short getDecimalPlacesGreaterThan() { return DecimalPlacesGreaterThan; } public FX_CurrencyQuery setDecimalPlacesGreaterThan(Short value) { this.DecimalPlacesGreaterThan = value; return this; } public Short getDecimalPlacesLessThan() { return DecimalPlacesLessThan; } public FX_CurrencyQuery setDecimalPlacesLessThan(Short value) { this.DecimalPlacesLessThan = value; return this; } public Short getDecimalPlacesLessThanOrEqualTo() { return DecimalPlacesLessThanOrEqualTo; } public FX_CurrencyQuery setDecimalPlacesLessThanOrEqualTo(Short value) { this.DecimalPlacesLessThanOrEqualTo = value; return this; } public Short getDecimalPlacesNotEqualTo() { return DecimalPlacesNotEqualTo; } public FX_CurrencyQuery setDecimalPlacesNotEqualTo(Short value) { this.DecimalPlacesNotEqualTo = value; return this; } public ArrayList getDecimalPlacesBetween() { return DecimalPlacesBetween; } public FX_CurrencyQuery setDecimalPlacesBetween(ArrayList value) { this.DecimalPlacesBetween = value; return this; } public ArrayList getDecimalPlacesIn() { return DecimalPlacesIn; } public FX_CurrencyQuery setDecimalPlacesIn(ArrayList value) { this.DecimalPlacesIn = value; return this; } public Boolean getIsLocal() { return IsLocal; } public FX_CurrencyQuery setIsLocal(Boolean value) { this.IsLocal = value; return this; } public Boolean getIsEnabled() { return IsEnabled; } public FX_CurrencyQuery setIsEnabled(Boolean value) { this.IsEnabled = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @Route(Path="/Queries/FX_CurrencyRates", Verbs="GET") @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class FX_CurrencyRatesQuery extends QueryDb implements IReturn> { public String RecID = null; public String RecIDStartsWith = null; public String RecIDEndsWith = null; public String RecIDContains = null; public String RecIDLike = null; public ArrayList RecIDBetween = null; public ArrayList RecIDIn = null; public String FX_Main_RecID = null; public String FX_Main_RecIDStartsWith = null; public String FX_Main_RecIDEndsWith = null; public String FX_Main_RecIDContains = null; public String FX_Main_RecIDLike = null; public ArrayList FX_Main_RecIDBetween = null; public ArrayList FX_Main_RecIDIn = null; public Date DateEntered = null; public Date DateEnteredGreaterThanOrEqualTo = null; public Date DateEnteredGreaterThan = null; public Date DateEnteredLessThan = null; public Date DateEnteredLessThanOrEqualTo = null; public Date DateEnteredNotEqualTo = null; public ArrayList DateEnteredBetween = null; public ArrayList DateEnteredIn = null; public Date EffectiveDate = null; public Date EffectiveDateGreaterThanOrEqualTo = null; public Date EffectiveDateGreaterThan = null; public Date EffectiveDateLessThan = null; public Date EffectiveDateLessThanOrEqualTo = null; public Date EffectiveDateNotEqualTo = null; public ArrayList EffectiveDateBetween = null; public ArrayList EffectiveDateIn = null; public Date EffectiveDateEnd = null; public Date EffectiveDateEndGreaterThanOrEqualTo = null; public Date EffectiveDateEndGreaterThan = null; public Date EffectiveDateEndLessThan = null; public Date EffectiveDateEndLessThanOrEqualTo = null; public Date EffectiveDateEndNotEqualTo = null; public ArrayList EffectiveDateEndBetween = null; public ArrayList EffectiveDateEndIn = null; public BigDecimal TransactionRate = null; public BigDecimal TransactionRateGreaterThanOrEqualTo = null; public BigDecimal TransactionRateGreaterThan = null; public BigDecimal TransactionRateLessThan = null; public BigDecimal TransactionRateLessThanOrEqualTo = null; public BigDecimal TransactionRateNotEqualTo = null; public ArrayList TransactionRateBetween = null; public ArrayList TransactionRateIn = null; public Integer ItemNo = null; public Integer ItemNoGreaterThanOrEqualTo = null; public Integer ItemNoGreaterThan = null; public Integer ItemNoLessThan = null; public Integer ItemNoLessThanOrEqualTo = null; public Integer ItemNoNotEqualTo = null; public ArrayList ItemNoBetween = null; public ArrayList ItemNoIn = null; public ArrayList RowHash = null; public String getRecID() { return RecID; } public FX_CurrencyRatesQuery setRecID(String value) { this.RecID = value; return this; } public String getRecIDStartsWith() { return RecIDStartsWith; } public FX_CurrencyRatesQuery setRecIDStartsWith(String value) { this.RecIDStartsWith = value; return this; } public String getRecIDEndsWith() { return RecIDEndsWith; } public FX_CurrencyRatesQuery setRecIDEndsWith(String value) { this.RecIDEndsWith = value; return this; } public String getRecIDContains() { return RecIDContains; } public FX_CurrencyRatesQuery setRecIDContains(String value) { this.RecIDContains = value; return this; } public String getRecIDLike() { return RecIDLike; } public FX_CurrencyRatesQuery setRecIDLike(String value) { this.RecIDLike = value; return this; } public ArrayList getRecIDBetween() { return RecIDBetween; } public FX_CurrencyRatesQuery setRecIDBetween(ArrayList value) { this.RecIDBetween = value; return this; } public ArrayList getRecIDIn() { return RecIDIn; } public FX_CurrencyRatesQuery setRecIDIn(ArrayList value) { this.RecIDIn = value; return this; } public String getFxMainRecID() { return FX_Main_RecID; } public FX_CurrencyRatesQuery setFxMainRecID(String value) { this.FX_Main_RecID = value; return this; } public String getFxMainRecIDStartsWith() { return FX_Main_RecIDStartsWith; } public FX_CurrencyRatesQuery setFxMainRecIDStartsWith(String value) { this.FX_Main_RecIDStartsWith = value; return this; } public String getFxMainRecIDEndsWith() { return FX_Main_RecIDEndsWith; } public FX_CurrencyRatesQuery setFxMainRecIDEndsWith(String value) { this.FX_Main_RecIDEndsWith = value; return this; } public String getFxMainRecIDContains() { return FX_Main_RecIDContains; } public FX_CurrencyRatesQuery setFxMainRecIDContains(String value) { this.FX_Main_RecIDContains = value; return this; } public String getFxMainRecIDLike() { return FX_Main_RecIDLike; } public FX_CurrencyRatesQuery setFxMainRecIDLike(String value) { this.FX_Main_RecIDLike = value; return this; } public ArrayList getFxMainRecIDBetween() { return FX_Main_RecIDBetween; } public FX_CurrencyRatesQuery setFxMainRecIDBetween(ArrayList value) { this.FX_Main_RecIDBetween = value; return this; } public ArrayList getFxMainRecIDIn() { return FX_Main_RecIDIn; } public FX_CurrencyRatesQuery setFxMainRecIDIn(ArrayList value) { this.FX_Main_RecIDIn = value; return this; } public Date getDateEntered() { return DateEntered; } public FX_CurrencyRatesQuery setDateEntered(Date value) { this.DateEntered = value; return this; } public Date getDateEnteredGreaterThanOrEqualTo() { return DateEnteredGreaterThanOrEqualTo; } public FX_CurrencyRatesQuery setDateEnteredGreaterThanOrEqualTo(Date value) { this.DateEnteredGreaterThanOrEqualTo = value; return this; } public Date getDateEnteredGreaterThan() { return DateEnteredGreaterThan; } public FX_CurrencyRatesQuery setDateEnteredGreaterThan(Date value) { this.DateEnteredGreaterThan = value; return this; } public Date getDateEnteredLessThan() { return DateEnteredLessThan; } public FX_CurrencyRatesQuery setDateEnteredLessThan(Date value) { this.DateEnteredLessThan = value; return this; } public Date getDateEnteredLessThanOrEqualTo() { return DateEnteredLessThanOrEqualTo; } public FX_CurrencyRatesQuery setDateEnteredLessThanOrEqualTo(Date value) { this.DateEnteredLessThanOrEqualTo = value; return this; } public Date getDateEnteredNotEqualTo() { return DateEnteredNotEqualTo; } public FX_CurrencyRatesQuery setDateEnteredNotEqualTo(Date value) { this.DateEnteredNotEqualTo = value; return this; } public ArrayList getDateEnteredBetween() { return DateEnteredBetween; } public FX_CurrencyRatesQuery setDateEnteredBetween(ArrayList value) { this.DateEnteredBetween = value; return this; } public ArrayList getDateEnteredIn() { return DateEnteredIn; } public FX_CurrencyRatesQuery setDateEnteredIn(ArrayList value) { this.DateEnteredIn = value; return this; } public Date getEffectiveDate() { return EffectiveDate; } public FX_CurrencyRatesQuery setEffectiveDate(Date value) { this.EffectiveDate = value; return this; } public Date getEffectiveDateGreaterThanOrEqualTo() { return EffectiveDateGreaterThanOrEqualTo; } public FX_CurrencyRatesQuery setEffectiveDateGreaterThanOrEqualTo(Date value) { this.EffectiveDateGreaterThanOrEqualTo = value; return this; } public Date getEffectiveDateGreaterThan() { return EffectiveDateGreaterThan; } public FX_CurrencyRatesQuery setEffectiveDateGreaterThan(Date value) { this.EffectiveDateGreaterThan = value; return this; } public Date getEffectiveDateLessThan() { return EffectiveDateLessThan; } public FX_CurrencyRatesQuery setEffectiveDateLessThan(Date value) { this.EffectiveDateLessThan = value; return this; } public Date getEffectiveDateLessThanOrEqualTo() { return EffectiveDateLessThanOrEqualTo; } public FX_CurrencyRatesQuery setEffectiveDateLessThanOrEqualTo(Date value) { this.EffectiveDateLessThanOrEqualTo = value; return this; } public Date getEffectiveDateNotEqualTo() { return EffectiveDateNotEqualTo; } public FX_CurrencyRatesQuery setEffectiveDateNotEqualTo(Date value) { this.EffectiveDateNotEqualTo = value; return this; } public ArrayList getEffectiveDateBetween() { return EffectiveDateBetween; } public FX_CurrencyRatesQuery setEffectiveDateBetween(ArrayList value) { this.EffectiveDateBetween = value; return this; } public ArrayList getEffectiveDateIn() { return EffectiveDateIn; } public FX_CurrencyRatesQuery setEffectiveDateIn(ArrayList value) { this.EffectiveDateIn = value; return this; } public Date getEffectiveDateEnd() { return EffectiveDateEnd; } public FX_CurrencyRatesQuery setEffectiveDateEnd(Date value) { this.EffectiveDateEnd = value; return this; } public Date getEffectiveDateEndGreaterThanOrEqualTo() { return EffectiveDateEndGreaterThanOrEqualTo; } public FX_CurrencyRatesQuery setEffectiveDateEndGreaterThanOrEqualTo(Date value) { this.EffectiveDateEndGreaterThanOrEqualTo = value; return this; } public Date getEffectiveDateEndGreaterThan() { return EffectiveDateEndGreaterThan; } public FX_CurrencyRatesQuery setEffectiveDateEndGreaterThan(Date value) { this.EffectiveDateEndGreaterThan = value; return this; } public Date getEffectiveDateEndLessThan() { return EffectiveDateEndLessThan; } public FX_CurrencyRatesQuery setEffectiveDateEndLessThan(Date value) { this.EffectiveDateEndLessThan = value; return this; } public Date getEffectiveDateEndLessThanOrEqualTo() { return EffectiveDateEndLessThanOrEqualTo; } public FX_CurrencyRatesQuery setEffectiveDateEndLessThanOrEqualTo(Date value) { this.EffectiveDateEndLessThanOrEqualTo = value; return this; } public Date getEffectiveDateEndNotEqualTo() { return EffectiveDateEndNotEqualTo; } public FX_CurrencyRatesQuery setEffectiveDateEndNotEqualTo(Date value) { this.EffectiveDateEndNotEqualTo = value; return this; } public ArrayList getEffectiveDateEndBetween() { return EffectiveDateEndBetween; } public FX_CurrencyRatesQuery setEffectiveDateEndBetween(ArrayList value) { this.EffectiveDateEndBetween = value; return this; } public ArrayList getEffectiveDateEndIn() { return EffectiveDateEndIn; } public FX_CurrencyRatesQuery setEffectiveDateEndIn(ArrayList value) { this.EffectiveDateEndIn = value; return this; } public BigDecimal getTransactionRate() { return TransactionRate; } public FX_CurrencyRatesQuery setTransactionRate(BigDecimal value) { this.TransactionRate = value; return this; } public BigDecimal getTransactionRateGreaterThanOrEqualTo() { return TransactionRateGreaterThanOrEqualTo; } public FX_CurrencyRatesQuery setTransactionRateGreaterThanOrEqualTo(BigDecimal value) { this.TransactionRateGreaterThanOrEqualTo = value; return this; } public BigDecimal getTransactionRateGreaterThan() { return TransactionRateGreaterThan; } public FX_CurrencyRatesQuery setTransactionRateGreaterThan(BigDecimal value) { this.TransactionRateGreaterThan = value; return this; } public BigDecimal getTransactionRateLessThan() { return TransactionRateLessThan; } public FX_CurrencyRatesQuery setTransactionRateLessThan(BigDecimal value) { this.TransactionRateLessThan = value; return this; } public BigDecimal getTransactionRateLessThanOrEqualTo() { return TransactionRateLessThanOrEqualTo; } public FX_CurrencyRatesQuery setTransactionRateLessThanOrEqualTo(BigDecimal value) { this.TransactionRateLessThanOrEqualTo = value; return this; } public BigDecimal getTransactionRateNotEqualTo() { return TransactionRateNotEqualTo; } public FX_CurrencyRatesQuery setTransactionRateNotEqualTo(BigDecimal value) { this.TransactionRateNotEqualTo = value; return this; } public ArrayList getTransactionRateBetween() { return TransactionRateBetween; } public FX_CurrencyRatesQuery setTransactionRateBetween(ArrayList value) { this.TransactionRateBetween = value; return this; } public ArrayList getTransactionRateIn() { return TransactionRateIn; } public FX_CurrencyRatesQuery setTransactionRateIn(ArrayList value) { this.TransactionRateIn = value; return this; } public Integer getItemNo() { return ItemNo; } public FX_CurrencyRatesQuery setItemNo(Integer value) { this.ItemNo = value; return this; } public Integer getItemNoGreaterThanOrEqualTo() { return ItemNoGreaterThanOrEqualTo; } public FX_CurrencyRatesQuery setItemNoGreaterThanOrEqualTo(Integer value) { this.ItemNoGreaterThanOrEqualTo = value; return this; } public Integer getItemNoGreaterThan() { return ItemNoGreaterThan; } public FX_CurrencyRatesQuery setItemNoGreaterThan(Integer value) { this.ItemNoGreaterThan = value; return this; } public Integer getItemNoLessThan() { return ItemNoLessThan; } public FX_CurrencyRatesQuery setItemNoLessThan(Integer value) { this.ItemNoLessThan = value; return this; } public Integer getItemNoLessThanOrEqualTo() { return ItemNoLessThanOrEqualTo; } public FX_CurrencyRatesQuery setItemNoLessThanOrEqualTo(Integer value) { this.ItemNoLessThanOrEqualTo = value; return this; } public Integer getItemNoNotEqualTo() { return ItemNoNotEqualTo; } public FX_CurrencyRatesQuery setItemNoNotEqualTo(Integer value) { this.ItemNoNotEqualTo = value; return this; } public ArrayList getItemNoBetween() { return ItemNoBetween; } public FX_CurrencyRatesQuery setItemNoBetween(ArrayList value) { this.ItemNoBetween = value; return this; } public ArrayList getItemNoIn() { return ItemNoIn; } public FX_CurrencyRatesQuery setItemNoIn(ArrayList value) { this.ItemNoIn = value; return this; } public ArrayList getRowHash() { return RowHash; } public FX_CurrencyRatesQuery setRowHash(ArrayList value) { this.RowHash = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class GL_AutoJournalLinesQuery extends QueryDb implements IReturn> { public String RecID = null; public String RecIDStartsWith = null; public String RecIDEndsWith = null; public String RecIDContains = null; public String RecIDLike = null; public ArrayList RecIDBetween = null; public ArrayList RecIDIn = null; public String GL_AutoJournals_RecID = null; public String GL_AutoJournals_RecIDStartsWith = null; public String GL_AutoJournals_RecIDEndsWith = null; public String GL_AutoJournals_RecIDContains = null; public String GL_AutoJournals_RecIDLike = null; public ArrayList GL_AutoJournals_RecIDBetween = null; public ArrayList GL_AutoJournals_RecIDIn = null; public String GL_Sets_RecID_Source = null; public String GL_Sets_RecID_SourceStartsWith = null; public String GL_Sets_RecID_SourceEndsWith = null; public String GL_Sets_RecID_SourceContains = null; public String GL_Sets_RecID_SourceLike = null; public ArrayList GL_Sets_RecID_SourceBetween = null; public ArrayList GL_Sets_RecID_SourceIn = null; public String GL_Sets_SourceDescription = null; public String GL_Sets_SourceDescriptionStartsWith = null; public String GL_Sets_SourceDescriptionEndsWith = null; public String GL_Sets_SourceDescriptionContains = null; public String GL_Sets_SourceDescriptionLike = null; public ArrayList GL_Sets_SourceDescriptionBetween = null; public ArrayList GL_Sets_SourceDescriptionIn = null; public Date PostingDue = null; public Date PostingDueGreaterThanOrEqualTo = null; public Date PostingDueGreaterThan = null; public Date PostingDueLessThan = null; public Date PostingDueLessThanOrEqualTo = null; public Date PostingDueNotEqualTo = null; public ArrayList PostingDueBetween = null; public ArrayList PostingDueIn = null; public String Reason = null; public String ReasonStartsWith = null; public String ReasonEndsWith = null; public String ReasonContains = null; public String ReasonLike = null; public ArrayList ReasonBetween = null; public ArrayList ReasonIn = null; public String GL_Sets_RecID_Destination = null; public String GL_Sets_RecID_DestinationStartsWith = null; public String GL_Sets_RecID_DestinationEndsWith = null; public String GL_Sets_RecID_DestinationContains = null; public String GL_Sets_RecID_DestinationLike = null; public ArrayList GL_Sets_RecID_DestinationBetween = null; public ArrayList GL_Sets_RecID_DestinationIn = null; public Integer ItemNo = null; public Integer ItemNoGreaterThanOrEqualTo = null; public Integer ItemNoGreaterThan = null; public Integer ItemNoLessThan = null; public Integer ItemNoLessThanOrEqualTo = null; public Integer ItemNoNotEqualTo = null; public ArrayList ItemNoBetween = null; public ArrayList ItemNoIn = null; public ArrayList RowHash = null; public String getRecID() { return RecID; } public GL_AutoJournalLinesQuery setRecID(String value) { this.RecID = value; return this; } public String getRecIDStartsWith() { return RecIDStartsWith; } public GL_AutoJournalLinesQuery setRecIDStartsWith(String value) { this.RecIDStartsWith = value; return this; } public String getRecIDEndsWith() { return RecIDEndsWith; } public GL_AutoJournalLinesQuery setRecIDEndsWith(String value) { this.RecIDEndsWith = value; return this; } public String getRecIDContains() { return RecIDContains; } public GL_AutoJournalLinesQuery setRecIDContains(String value) { this.RecIDContains = value; return this; } public String getRecIDLike() { return RecIDLike; } public GL_AutoJournalLinesQuery setRecIDLike(String value) { this.RecIDLike = value; return this; } public ArrayList getRecIDBetween() { return RecIDBetween; } public GL_AutoJournalLinesQuery setRecIDBetween(ArrayList value) { this.RecIDBetween = value; return this; } public ArrayList getRecIDIn() { return RecIDIn; } public GL_AutoJournalLinesQuery setRecIDIn(ArrayList value) { this.RecIDIn = value; return this; } public String getGlAutoJournalsRecID() { return GL_AutoJournals_RecID; } public GL_AutoJournalLinesQuery setGlAutoJournalsRecID(String value) { this.GL_AutoJournals_RecID = value; return this; } public String getGlAutoJournalsRecIDStartsWith() { return GL_AutoJournals_RecIDStartsWith; } public GL_AutoJournalLinesQuery setGlAutoJournalsRecIDStartsWith(String value) { this.GL_AutoJournals_RecIDStartsWith = value; return this; } public String getGlAutoJournalsRecIDEndsWith() { return GL_AutoJournals_RecIDEndsWith; } public GL_AutoJournalLinesQuery setGlAutoJournalsRecIDEndsWith(String value) { this.GL_AutoJournals_RecIDEndsWith = value; return this; } public String getGlAutoJournalsRecIDContains() { return GL_AutoJournals_RecIDContains; } public GL_AutoJournalLinesQuery setGlAutoJournalsRecIDContains(String value) { this.GL_AutoJournals_RecIDContains = value; return this; } public String getGlAutoJournalsRecIDLike() { return GL_AutoJournals_RecIDLike; } public GL_AutoJournalLinesQuery setGlAutoJournalsRecIDLike(String value) { this.GL_AutoJournals_RecIDLike = value; return this; } public ArrayList getGlAutoJournalsRecIDBetween() { return GL_AutoJournals_RecIDBetween; } public GL_AutoJournalLinesQuery setGlAutoJournalsRecIDBetween(ArrayList value) { this.GL_AutoJournals_RecIDBetween = value; return this; } public ArrayList getGlAutoJournalsRecIDIn() { return GL_AutoJournals_RecIDIn; } public GL_AutoJournalLinesQuery setGlAutoJournalsRecIDIn(ArrayList value) { this.GL_AutoJournals_RecIDIn = value; return this; } public String getGlSetsRecIDSource() { return GL_Sets_RecID_Source; } public GL_AutoJournalLinesQuery setGlSetsRecIDSource(String value) { this.GL_Sets_RecID_Source = value; return this; } public String getGlSetsRecIDSourceStartsWith() { return GL_Sets_RecID_SourceStartsWith; } public GL_AutoJournalLinesQuery setGlSetsRecIDSourceStartsWith(String value) { this.GL_Sets_RecID_SourceStartsWith = value; return this; } public String getGlSetsRecIDSourceEndsWith() { return GL_Sets_RecID_SourceEndsWith; } public GL_AutoJournalLinesQuery setGlSetsRecIDSourceEndsWith(String value) { this.GL_Sets_RecID_SourceEndsWith = value; return this; } public String getGlSetsRecIDSourceContains() { return GL_Sets_RecID_SourceContains; } public GL_AutoJournalLinesQuery setGlSetsRecIDSourceContains(String value) { this.GL_Sets_RecID_SourceContains = value; return this; } public String getGlSetsRecIDSourceLike() { return GL_Sets_RecID_SourceLike; } public GL_AutoJournalLinesQuery setGlSetsRecIDSourceLike(String value) { this.GL_Sets_RecID_SourceLike = value; return this; } public ArrayList getGlSetsRecIDSourceBetween() { return GL_Sets_RecID_SourceBetween; } public GL_AutoJournalLinesQuery setGlSetsRecIDSourceBetween(ArrayList value) { this.GL_Sets_RecID_SourceBetween = value; return this; } public ArrayList getGlSetsRecIDSourceIn() { return GL_Sets_RecID_SourceIn; } public GL_AutoJournalLinesQuery setGlSetsRecIDSourceIn(ArrayList value) { this.GL_Sets_RecID_SourceIn = value; return this; } public String getGlSetsSourceDescription() { return GL_Sets_SourceDescription; } public GL_AutoJournalLinesQuery setGlSetsSourceDescription(String value) { this.GL_Sets_SourceDescription = value; return this; } public String getGlSetsSourceDescriptionStartsWith() { return GL_Sets_SourceDescriptionStartsWith; } public GL_AutoJournalLinesQuery setGlSetsSourceDescriptionStartsWith(String value) { this.GL_Sets_SourceDescriptionStartsWith = value; return this; } public String getGlSetsSourceDescriptionEndsWith() { return GL_Sets_SourceDescriptionEndsWith; } public GL_AutoJournalLinesQuery setGlSetsSourceDescriptionEndsWith(String value) { this.GL_Sets_SourceDescriptionEndsWith = value; return this; } public String getGlSetsSourceDescriptionContains() { return GL_Sets_SourceDescriptionContains; } public GL_AutoJournalLinesQuery setGlSetsSourceDescriptionContains(String value) { this.GL_Sets_SourceDescriptionContains = value; return this; } public String getGlSetsSourceDescriptionLike() { return GL_Sets_SourceDescriptionLike; } public GL_AutoJournalLinesQuery setGlSetsSourceDescriptionLike(String value) { this.GL_Sets_SourceDescriptionLike = value; return this; } public ArrayList getGlSetsSourceDescriptionBetween() { return GL_Sets_SourceDescriptionBetween; } public GL_AutoJournalLinesQuery setGlSetsSourceDescriptionBetween(ArrayList value) { this.GL_Sets_SourceDescriptionBetween = value; return this; } public ArrayList getGlSetsSourceDescriptionIn() { return GL_Sets_SourceDescriptionIn; } public GL_AutoJournalLinesQuery setGlSetsSourceDescriptionIn(ArrayList value) { this.GL_Sets_SourceDescriptionIn = value; return this; } public Date getPostingDue() { return PostingDue; } public GL_AutoJournalLinesQuery setPostingDue(Date value) { this.PostingDue = value; return this; } public Date getPostingDueGreaterThanOrEqualTo() { return PostingDueGreaterThanOrEqualTo; } public GL_AutoJournalLinesQuery setPostingDueGreaterThanOrEqualTo(Date value) { this.PostingDueGreaterThanOrEqualTo = value; return this; } public Date getPostingDueGreaterThan() { return PostingDueGreaterThan; } public GL_AutoJournalLinesQuery setPostingDueGreaterThan(Date value) { this.PostingDueGreaterThan = value; return this; } public Date getPostingDueLessThan() { return PostingDueLessThan; } public GL_AutoJournalLinesQuery setPostingDueLessThan(Date value) { this.PostingDueLessThan = value; return this; } public Date getPostingDueLessThanOrEqualTo() { return PostingDueLessThanOrEqualTo; } public GL_AutoJournalLinesQuery setPostingDueLessThanOrEqualTo(Date value) { this.PostingDueLessThanOrEqualTo = value; return this; } public Date getPostingDueNotEqualTo() { return PostingDueNotEqualTo; } public GL_AutoJournalLinesQuery setPostingDueNotEqualTo(Date value) { this.PostingDueNotEqualTo = value; return this; } public ArrayList getPostingDueBetween() { return PostingDueBetween; } public GL_AutoJournalLinesQuery setPostingDueBetween(ArrayList value) { this.PostingDueBetween = value; return this; } public ArrayList getPostingDueIn() { return PostingDueIn; } public GL_AutoJournalLinesQuery setPostingDueIn(ArrayList value) { this.PostingDueIn = value; return this; } public String getReason() { return Reason; } public GL_AutoJournalLinesQuery setReason(String value) { this.Reason = value; return this; } public String getReasonStartsWith() { return ReasonStartsWith; } public GL_AutoJournalLinesQuery setReasonStartsWith(String value) { this.ReasonStartsWith = value; return this; } public String getReasonEndsWith() { return ReasonEndsWith; } public GL_AutoJournalLinesQuery setReasonEndsWith(String value) { this.ReasonEndsWith = value; return this; } public String getReasonContains() { return ReasonContains; } public GL_AutoJournalLinesQuery setReasonContains(String value) { this.ReasonContains = value; return this; } public String getReasonLike() { return ReasonLike; } public GL_AutoJournalLinesQuery setReasonLike(String value) { this.ReasonLike = value; return this; } public ArrayList getReasonBetween() { return ReasonBetween; } public GL_AutoJournalLinesQuery setReasonBetween(ArrayList value) { this.ReasonBetween = value; return this; } public ArrayList getReasonIn() { return ReasonIn; } public GL_AutoJournalLinesQuery setReasonIn(ArrayList value) { this.ReasonIn = value; return this; } public String getGlSetsRecIDDestination() { return GL_Sets_RecID_Destination; } public GL_AutoJournalLinesQuery setGlSetsRecIDDestination(String value) { this.GL_Sets_RecID_Destination = value; return this; } public String getGlSetsRecIDDestinationStartsWith() { return GL_Sets_RecID_DestinationStartsWith; } public GL_AutoJournalLinesQuery setGlSetsRecIDDestinationStartsWith(String value) { this.GL_Sets_RecID_DestinationStartsWith = value; return this; } public String getGlSetsRecIDDestinationEndsWith() { return GL_Sets_RecID_DestinationEndsWith; } public GL_AutoJournalLinesQuery setGlSetsRecIDDestinationEndsWith(String value) { this.GL_Sets_RecID_DestinationEndsWith = value; return this; } public String getGlSetsRecIDDestinationContains() { return GL_Sets_RecID_DestinationContains; } public GL_AutoJournalLinesQuery setGlSetsRecIDDestinationContains(String value) { this.GL_Sets_RecID_DestinationContains = value; return this; } public String getGlSetsRecIDDestinationLike() { return GL_Sets_RecID_DestinationLike; } public GL_AutoJournalLinesQuery setGlSetsRecIDDestinationLike(String value) { this.GL_Sets_RecID_DestinationLike = value; return this; } public ArrayList getGlSetsRecIDDestinationBetween() { return GL_Sets_RecID_DestinationBetween; } public GL_AutoJournalLinesQuery setGlSetsRecIDDestinationBetween(ArrayList value) { this.GL_Sets_RecID_DestinationBetween = value; return this; } public ArrayList getGlSetsRecIDDestinationIn() { return GL_Sets_RecID_DestinationIn; } public GL_AutoJournalLinesQuery setGlSetsRecIDDestinationIn(ArrayList value) { this.GL_Sets_RecID_DestinationIn = value; return this; } public Integer getItemNo() { return ItemNo; } public GL_AutoJournalLinesQuery setItemNo(Integer value) { this.ItemNo = value; return this; } public Integer getItemNoGreaterThanOrEqualTo() { return ItemNoGreaterThanOrEqualTo; } public GL_AutoJournalLinesQuery setItemNoGreaterThanOrEqualTo(Integer value) { this.ItemNoGreaterThanOrEqualTo = value; return this; } public Integer getItemNoGreaterThan() { return ItemNoGreaterThan; } public GL_AutoJournalLinesQuery setItemNoGreaterThan(Integer value) { this.ItemNoGreaterThan = value; return this; } public Integer getItemNoLessThan() { return ItemNoLessThan; } public GL_AutoJournalLinesQuery setItemNoLessThan(Integer value) { this.ItemNoLessThan = value; return this; } public Integer getItemNoLessThanOrEqualTo() { return ItemNoLessThanOrEqualTo; } public GL_AutoJournalLinesQuery setItemNoLessThanOrEqualTo(Integer value) { this.ItemNoLessThanOrEqualTo = value; return this; } public Integer getItemNoNotEqualTo() { return ItemNoNotEqualTo; } public GL_AutoJournalLinesQuery setItemNoNotEqualTo(Integer value) { this.ItemNoNotEqualTo = value; return this; } public ArrayList getItemNoBetween() { return ItemNoBetween; } public GL_AutoJournalLinesQuery setItemNoBetween(ArrayList value) { this.ItemNoBetween = value; return this; } public ArrayList getItemNoIn() { return ItemNoIn; } public GL_AutoJournalLinesQuery setItemNoIn(ArrayList value) { this.ItemNoIn = value; return this; } public ArrayList getRowHash() { return RowHash; } public GL_AutoJournalLinesQuery setRowHash(ArrayList value) { this.RowHash = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class GL_AutoJournalsQuery extends QueryDb implements IReturn> { public String RecID = null; public String RecIDStartsWith = null; public String RecIDEndsWith = null; public String RecIDContains = null; public String RecIDLike = null; public ArrayList RecIDBetween = null; public ArrayList RecIDIn = null; public Date LastSavedDateTime = null; public Date LastSavedDateTimeGreaterThanOrEqualTo = null; public Date LastSavedDateTimeGreaterThan = null; public Date LastSavedDateTimeLessThan = null; public Date LastSavedDateTimeLessThanOrEqualTo = null; public Date LastSavedDateTimeNotEqualTo = null; public ArrayList LastSavedDateTimeBetween = null; public ArrayList LastSavedDateTimeIn = null; public Date RunDateTime = null; public Date RunDateTimeGreaterThanOrEqualTo = null; public Date RunDateTimeGreaterThan = null; public Date RunDateTimeLessThan = null; public Date RunDateTimeLessThanOrEqualTo = null; public Date RunDateTimeNotEqualTo = null; public ArrayList RunDateTimeBetween = null; public ArrayList RunDateTimeIn = null; public String LastSavedBy_HR_Staff_RecID = null; public String LastSavedBy_HR_Staff_RecIDStartsWith = null; public String LastSavedBy_HR_Staff_RecIDEndsWith = null; public String LastSavedBy_HR_Staff_RecIDContains = null; public String LastSavedBy_HR_Staff_RecIDLike = null; public ArrayList LastSavedBy_HR_Staff_RecIDBetween = null; public ArrayList LastSavedBy_HR_Staff_RecIDIn = null; public ArrayList RowHash = null; public String getRecID() { return RecID; } public GL_AutoJournalsQuery setRecID(String value) { this.RecID = value; return this; } public String getRecIDStartsWith() { return RecIDStartsWith; } public GL_AutoJournalsQuery setRecIDStartsWith(String value) { this.RecIDStartsWith = value; return this; } public String getRecIDEndsWith() { return RecIDEndsWith; } public GL_AutoJournalsQuery setRecIDEndsWith(String value) { this.RecIDEndsWith = value; return this; } public String getRecIDContains() { return RecIDContains; } public GL_AutoJournalsQuery setRecIDContains(String value) { this.RecIDContains = value; return this; } public String getRecIDLike() { return RecIDLike; } public GL_AutoJournalsQuery setRecIDLike(String value) { this.RecIDLike = value; return this; } public ArrayList getRecIDBetween() { return RecIDBetween; } public GL_AutoJournalsQuery setRecIDBetween(ArrayList value) { this.RecIDBetween = value; return this; } public ArrayList getRecIDIn() { return RecIDIn; } public GL_AutoJournalsQuery setRecIDIn(ArrayList value) { this.RecIDIn = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public GL_AutoJournalsQuery setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getLastSavedDateTimeGreaterThanOrEqualTo() { return LastSavedDateTimeGreaterThanOrEqualTo; } public GL_AutoJournalsQuery setLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.LastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeGreaterThan() { return LastSavedDateTimeGreaterThan; } public GL_AutoJournalsQuery setLastSavedDateTimeGreaterThan(Date value) { this.LastSavedDateTimeGreaterThan = value; return this; } public Date getLastSavedDateTimeLessThan() { return LastSavedDateTimeLessThan; } public GL_AutoJournalsQuery setLastSavedDateTimeLessThan(Date value) { this.LastSavedDateTimeLessThan = value; return this; } public Date getLastSavedDateTimeLessThanOrEqualTo() { return LastSavedDateTimeLessThanOrEqualTo; } public GL_AutoJournalsQuery setLastSavedDateTimeLessThanOrEqualTo(Date value) { this.LastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeNotEqualTo() { return LastSavedDateTimeNotEqualTo; } public GL_AutoJournalsQuery setLastSavedDateTimeNotEqualTo(Date value) { this.LastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getLastSavedDateTimeBetween() { return LastSavedDateTimeBetween; } public GL_AutoJournalsQuery setLastSavedDateTimeBetween(ArrayList value) { this.LastSavedDateTimeBetween = value; return this; } public ArrayList getLastSavedDateTimeIn() { return LastSavedDateTimeIn; } public GL_AutoJournalsQuery setLastSavedDateTimeIn(ArrayList value) { this.LastSavedDateTimeIn = value; return this; } public Date getRunDateTime() { return RunDateTime; } public GL_AutoJournalsQuery setRunDateTime(Date value) { this.RunDateTime = value; return this; } public Date getRunDateTimeGreaterThanOrEqualTo() { return RunDateTimeGreaterThanOrEqualTo; } public GL_AutoJournalsQuery setRunDateTimeGreaterThanOrEqualTo(Date value) { this.RunDateTimeGreaterThanOrEqualTo = value; return this; } public Date getRunDateTimeGreaterThan() { return RunDateTimeGreaterThan; } public GL_AutoJournalsQuery setRunDateTimeGreaterThan(Date value) { this.RunDateTimeGreaterThan = value; return this; } public Date getRunDateTimeLessThan() { return RunDateTimeLessThan; } public GL_AutoJournalsQuery setRunDateTimeLessThan(Date value) { this.RunDateTimeLessThan = value; return this; } public Date getRunDateTimeLessThanOrEqualTo() { return RunDateTimeLessThanOrEqualTo; } public GL_AutoJournalsQuery setRunDateTimeLessThanOrEqualTo(Date value) { this.RunDateTimeLessThanOrEqualTo = value; return this; } public Date getRunDateTimeNotEqualTo() { return RunDateTimeNotEqualTo; } public GL_AutoJournalsQuery setRunDateTimeNotEqualTo(Date value) { this.RunDateTimeNotEqualTo = value; return this; } public ArrayList getRunDateTimeBetween() { return RunDateTimeBetween; } public GL_AutoJournalsQuery setRunDateTimeBetween(ArrayList value) { this.RunDateTimeBetween = value; return this; } public ArrayList getRunDateTimeIn() { return RunDateTimeIn; } public GL_AutoJournalsQuery setRunDateTimeIn(ArrayList value) { this.RunDateTimeIn = value; return this; } public String getLastSavedByHrStaffRecID() { return LastSavedBy_HR_Staff_RecID; } public GL_AutoJournalsQuery setLastSavedByHrStaffRecID(String value) { this.LastSavedBy_HR_Staff_RecID = value; return this; } public String getLastSavedByHrStaffRecIDStartsWith() { return LastSavedBy_HR_Staff_RecIDStartsWith; } public GL_AutoJournalsQuery setLastSavedByHrStaffRecIDStartsWith(String value) { this.LastSavedBy_HR_Staff_RecIDStartsWith = value; return this; } public String getLastSavedByHrStaffRecIDEndsWith() { return LastSavedBy_HR_Staff_RecIDEndsWith; } public GL_AutoJournalsQuery setLastSavedByHrStaffRecIDEndsWith(String value) { this.LastSavedBy_HR_Staff_RecIDEndsWith = value; return this; } public String getLastSavedByHrStaffRecIDContains() { return LastSavedBy_HR_Staff_RecIDContains; } public GL_AutoJournalsQuery setLastSavedByHrStaffRecIDContains(String value) { this.LastSavedBy_HR_Staff_RecIDContains = value; return this; } public String getLastSavedByHrStaffRecIDLike() { return LastSavedBy_HR_Staff_RecIDLike; } public GL_AutoJournalsQuery setLastSavedByHrStaffRecIDLike(String value) { this.LastSavedBy_HR_Staff_RecIDLike = value; return this; } public ArrayList getLastSavedByHrStaffRecIDBetween() { return LastSavedBy_HR_Staff_RecIDBetween; } public GL_AutoJournalsQuery setLastSavedByHrStaffRecIDBetween(ArrayList value) { this.LastSavedBy_HR_Staff_RecIDBetween = value; return this; } public ArrayList getLastSavedByHrStaffRecIDIn() { return LastSavedBy_HR_Staff_RecIDIn; } public GL_AutoJournalsQuery setLastSavedByHrStaffRecIDIn(ArrayList value) { this.LastSavedBy_HR_Staff_RecIDIn = value; return this; } public ArrayList getRowHash() { return RowHash; } public GL_AutoJournalsQuery setRowHash(ArrayList value) { this.RowHash = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class GL_BankDetailsQuery extends QueryDb implements IReturn> { public String RecID = null; public String RecIDStartsWith = null; public String RecIDEndsWith = null; public String RecIDContains = null; public String RecIDLike = null; public ArrayList RecIDBetween = null; public ArrayList RecIDIn = null; public String GLLedgerID = null; public String GLLedgerIDStartsWith = null; public String GLLedgerIDEndsWith = null; public String GLLedgerIDContains = null; public String GLLedgerIDLike = null; public ArrayList GLLedgerIDBetween = null; public ArrayList GLLedgerIDIn = null; public String NextChequeNumber = null; public String NextChequeNumberStartsWith = null; public String NextChequeNumberEndsWith = null; public String NextChequeNumberContains = null; public String NextChequeNumberLike = null; public ArrayList NextChequeNumberBetween = null; public ArrayList NextChequeNumberIn = null; public String BankName = null; public String BankNameStartsWith = null; public String BankNameEndsWith = null; public String BankNameContains = null; public String BankNameLike = null; public ArrayList BankNameBetween = null; public ArrayList BankNameIn = null; public String BSBN = null; public String BSBNStartsWith = null; public String BSBNEndsWith = null; public String BSBNContains = null; public String BSBNLike = null; public ArrayList BSBNBetween = null; public ArrayList BSBNIn = null; public String AccountNumber = null; public String AccountNumberStartsWith = null; public String AccountNumberEndsWith = null; public String AccountNumberContains = null; public String AccountNumberLike = null; public ArrayList AccountNumberBetween = null; public ArrayList AccountNumberIn = null; public String AccountName = null; public String AccountNameStartsWith = null; public String AccountNameEndsWith = null; public String AccountNameContains = null; public String AccountNameLike = null; public ArrayList AccountNameBetween = null; public ArrayList AccountNameIn = null; public Boolean DefaultBank = null; public Date LastSavedDateTime = null; public Date LastSavedDateTimeGreaterThanOrEqualTo = null; public Date LastSavedDateTimeGreaterThan = null; public Date LastSavedDateTimeLessThan = null; public Date LastSavedDateTimeLessThanOrEqualTo = null; public Date LastSavedDateTimeNotEqualTo = null; public ArrayList LastSavedDateTimeBetween = null; public ArrayList LastSavedDateTimeIn = null; public String FeesLedgerID = null; public String FeesLedgerIDStartsWith = null; public String FeesLedgerIDEndsWith = null; public String FeesLedgerIDContains = null; public String FeesLedgerIDLike = null; public ArrayList FeesLedgerIDBetween = null; public ArrayList FeesLedgerIDIn = null; public String EFTBankCode = null; public String EFTBankCodeStartsWith = null; public String EFTBankCodeEndsWith = null; public String EFTBankCodeContains = null; public String EFTBankCodeLike = null; public ArrayList EFTBankCodeBetween = null; public ArrayList EFTBankCodeIn = null; public String UserIdentificationNumber = null; public String UserIdentificationNumberStartsWith = null; public String UserIdentificationNumberEndsWith = null; public String UserIdentificationNumberContains = null; public String UserIdentificationNumberLike = null; public ArrayList UserIdentificationNumberBetween = null; public ArrayList UserIdentificationNumberIn = null; public String getRecID() { return RecID; } public GL_BankDetailsQuery setRecID(String value) { this.RecID = value; return this; } public String getRecIDStartsWith() { return RecIDStartsWith; } public GL_BankDetailsQuery setRecIDStartsWith(String value) { this.RecIDStartsWith = value; return this; } public String getRecIDEndsWith() { return RecIDEndsWith; } public GL_BankDetailsQuery setRecIDEndsWith(String value) { this.RecIDEndsWith = value; return this; } public String getRecIDContains() { return RecIDContains; } public GL_BankDetailsQuery setRecIDContains(String value) { this.RecIDContains = value; return this; } public String getRecIDLike() { return RecIDLike; } public GL_BankDetailsQuery setRecIDLike(String value) { this.RecIDLike = value; return this; } public ArrayList getRecIDBetween() { return RecIDBetween; } public GL_BankDetailsQuery setRecIDBetween(ArrayList value) { this.RecIDBetween = value; return this; } public ArrayList getRecIDIn() { return RecIDIn; } public GL_BankDetailsQuery setRecIDIn(ArrayList value) { this.RecIDIn = value; return this; } public String getGlLedgerID() { return GLLedgerID; } public GL_BankDetailsQuery setGlLedgerID(String value) { this.GLLedgerID = value; return this; } public String getGlLedgerIDStartsWith() { return GLLedgerIDStartsWith; } public GL_BankDetailsQuery setGlLedgerIDStartsWith(String value) { this.GLLedgerIDStartsWith = value; return this; } public String getGlLedgerIDEndsWith() { return GLLedgerIDEndsWith; } public GL_BankDetailsQuery setGlLedgerIDEndsWith(String value) { this.GLLedgerIDEndsWith = value; return this; } public String getGlLedgerIDContains() { return GLLedgerIDContains; } public GL_BankDetailsQuery setGlLedgerIDContains(String value) { this.GLLedgerIDContains = value; return this; } public String getGlLedgerIDLike() { return GLLedgerIDLike; } public GL_BankDetailsQuery setGlLedgerIDLike(String value) { this.GLLedgerIDLike = value; return this; } public ArrayList getGlLedgerIDBetween() { return GLLedgerIDBetween; } public GL_BankDetailsQuery setGlLedgerIDBetween(ArrayList value) { this.GLLedgerIDBetween = value; return this; } public ArrayList getGlLedgerIDIn() { return GLLedgerIDIn; } public GL_BankDetailsQuery setGlLedgerIDIn(ArrayList value) { this.GLLedgerIDIn = value; return this; } public String getNextChequeNumber() { return NextChequeNumber; } public GL_BankDetailsQuery setNextChequeNumber(String value) { this.NextChequeNumber = value; return this; } public String getNextChequeNumberStartsWith() { return NextChequeNumberStartsWith; } public GL_BankDetailsQuery setNextChequeNumberStartsWith(String value) { this.NextChequeNumberStartsWith = value; return this; } public String getNextChequeNumberEndsWith() { return NextChequeNumberEndsWith; } public GL_BankDetailsQuery setNextChequeNumberEndsWith(String value) { this.NextChequeNumberEndsWith = value; return this; } public String getNextChequeNumberContains() { return NextChequeNumberContains; } public GL_BankDetailsQuery setNextChequeNumberContains(String value) { this.NextChequeNumberContains = value; return this; } public String getNextChequeNumberLike() { return NextChequeNumberLike; } public GL_BankDetailsQuery setNextChequeNumberLike(String value) { this.NextChequeNumberLike = value; return this; } public ArrayList getNextChequeNumberBetween() { return NextChequeNumberBetween; } public GL_BankDetailsQuery setNextChequeNumberBetween(ArrayList value) { this.NextChequeNumberBetween = value; return this; } public ArrayList getNextChequeNumberIn() { return NextChequeNumberIn; } public GL_BankDetailsQuery setNextChequeNumberIn(ArrayList value) { this.NextChequeNumberIn = value; return this; } public String getBankName() { return BankName; } public GL_BankDetailsQuery setBankName(String value) { this.BankName = value; return this; } public String getBankNameStartsWith() { return BankNameStartsWith; } public GL_BankDetailsQuery setBankNameStartsWith(String value) { this.BankNameStartsWith = value; return this; } public String getBankNameEndsWith() { return BankNameEndsWith; } public GL_BankDetailsQuery setBankNameEndsWith(String value) { this.BankNameEndsWith = value; return this; } public String getBankNameContains() { return BankNameContains; } public GL_BankDetailsQuery setBankNameContains(String value) { this.BankNameContains = value; return this; } public String getBankNameLike() { return BankNameLike; } public GL_BankDetailsQuery setBankNameLike(String value) { this.BankNameLike = value; return this; } public ArrayList getBankNameBetween() { return BankNameBetween; } public GL_BankDetailsQuery setBankNameBetween(ArrayList value) { this.BankNameBetween = value; return this; } public ArrayList getBankNameIn() { return BankNameIn; } public GL_BankDetailsQuery setBankNameIn(ArrayList value) { this.BankNameIn = value; return this; } public String getBsbn() { return BSBN; } public GL_BankDetailsQuery setBsbn(String value) { this.BSBN = value; return this; } public String getBsbnStartsWith() { return BSBNStartsWith; } public GL_BankDetailsQuery setBsbnStartsWith(String value) { this.BSBNStartsWith = value; return this; } public String getBsbnEndsWith() { return BSBNEndsWith; } public GL_BankDetailsQuery setBsbnEndsWith(String value) { this.BSBNEndsWith = value; return this; } public String getBsbnContains() { return BSBNContains; } public GL_BankDetailsQuery setBsbnContains(String value) { this.BSBNContains = value; return this; } public String getBsbnLike() { return BSBNLike; } public GL_BankDetailsQuery setBsbnLike(String value) { this.BSBNLike = value; return this; } public ArrayList getBsbnBetween() { return BSBNBetween; } public GL_BankDetailsQuery setBsbnBetween(ArrayList value) { this.BSBNBetween = value; return this; } public ArrayList getBsbnIn() { return BSBNIn; } public GL_BankDetailsQuery setBsbnIn(ArrayList value) { this.BSBNIn = value; return this; } public String getAccountNumber() { return AccountNumber; } public GL_BankDetailsQuery setAccountNumber(String value) { this.AccountNumber = value; return this; } public String getAccountNumberStartsWith() { return AccountNumberStartsWith; } public GL_BankDetailsQuery setAccountNumberStartsWith(String value) { this.AccountNumberStartsWith = value; return this; } public String getAccountNumberEndsWith() { return AccountNumberEndsWith; } public GL_BankDetailsQuery setAccountNumberEndsWith(String value) { this.AccountNumberEndsWith = value; return this; } public String getAccountNumberContains() { return AccountNumberContains; } public GL_BankDetailsQuery setAccountNumberContains(String value) { this.AccountNumberContains = value; return this; } public String getAccountNumberLike() { return AccountNumberLike; } public GL_BankDetailsQuery setAccountNumberLike(String value) { this.AccountNumberLike = value; return this; } public ArrayList getAccountNumberBetween() { return AccountNumberBetween; } public GL_BankDetailsQuery setAccountNumberBetween(ArrayList value) { this.AccountNumberBetween = value; return this; } public ArrayList getAccountNumberIn() { return AccountNumberIn; } public GL_BankDetailsQuery setAccountNumberIn(ArrayList value) { this.AccountNumberIn = value; return this; } public String getAccountName() { return AccountName; } public GL_BankDetailsQuery setAccountName(String value) { this.AccountName = value; return this; } public String getAccountNameStartsWith() { return AccountNameStartsWith; } public GL_BankDetailsQuery setAccountNameStartsWith(String value) { this.AccountNameStartsWith = value; return this; } public String getAccountNameEndsWith() { return AccountNameEndsWith; } public GL_BankDetailsQuery setAccountNameEndsWith(String value) { this.AccountNameEndsWith = value; return this; } public String getAccountNameContains() { return AccountNameContains; } public GL_BankDetailsQuery setAccountNameContains(String value) { this.AccountNameContains = value; return this; } public String getAccountNameLike() { return AccountNameLike; } public GL_BankDetailsQuery setAccountNameLike(String value) { this.AccountNameLike = value; return this; } public ArrayList getAccountNameBetween() { return AccountNameBetween; } public GL_BankDetailsQuery setAccountNameBetween(ArrayList value) { this.AccountNameBetween = value; return this; } public ArrayList getAccountNameIn() { return AccountNameIn; } public GL_BankDetailsQuery setAccountNameIn(ArrayList value) { this.AccountNameIn = value; return this; } public Boolean isDefaultBank() { return DefaultBank; } public GL_BankDetailsQuery setDefaultBank(Boolean value) { this.DefaultBank = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public GL_BankDetailsQuery setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getLastSavedDateTimeGreaterThanOrEqualTo() { return LastSavedDateTimeGreaterThanOrEqualTo; } public GL_BankDetailsQuery setLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.LastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeGreaterThan() { return LastSavedDateTimeGreaterThan; } public GL_BankDetailsQuery setLastSavedDateTimeGreaterThan(Date value) { this.LastSavedDateTimeGreaterThan = value; return this; } public Date getLastSavedDateTimeLessThan() { return LastSavedDateTimeLessThan; } public GL_BankDetailsQuery setLastSavedDateTimeLessThan(Date value) { this.LastSavedDateTimeLessThan = value; return this; } public Date getLastSavedDateTimeLessThanOrEqualTo() { return LastSavedDateTimeLessThanOrEqualTo; } public GL_BankDetailsQuery setLastSavedDateTimeLessThanOrEqualTo(Date value) { this.LastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeNotEqualTo() { return LastSavedDateTimeNotEqualTo; } public GL_BankDetailsQuery setLastSavedDateTimeNotEqualTo(Date value) { this.LastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getLastSavedDateTimeBetween() { return LastSavedDateTimeBetween; } public GL_BankDetailsQuery setLastSavedDateTimeBetween(ArrayList value) { this.LastSavedDateTimeBetween = value; return this; } public ArrayList getLastSavedDateTimeIn() { return LastSavedDateTimeIn; } public GL_BankDetailsQuery setLastSavedDateTimeIn(ArrayList value) { this.LastSavedDateTimeIn = value; return this; } public String getFeesLedgerID() { return FeesLedgerID; } public GL_BankDetailsQuery setFeesLedgerID(String value) { this.FeesLedgerID = value; return this; } public String getFeesLedgerIDStartsWith() { return FeesLedgerIDStartsWith; } public GL_BankDetailsQuery setFeesLedgerIDStartsWith(String value) { this.FeesLedgerIDStartsWith = value; return this; } public String getFeesLedgerIDEndsWith() { return FeesLedgerIDEndsWith; } public GL_BankDetailsQuery setFeesLedgerIDEndsWith(String value) { this.FeesLedgerIDEndsWith = value; return this; } public String getFeesLedgerIDContains() { return FeesLedgerIDContains; } public GL_BankDetailsQuery setFeesLedgerIDContains(String value) { this.FeesLedgerIDContains = value; return this; } public String getFeesLedgerIDLike() { return FeesLedgerIDLike; } public GL_BankDetailsQuery setFeesLedgerIDLike(String value) { this.FeesLedgerIDLike = value; return this; } public ArrayList getFeesLedgerIDBetween() { return FeesLedgerIDBetween; } public GL_BankDetailsQuery setFeesLedgerIDBetween(ArrayList value) { this.FeesLedgerIDBetween = value; return this; } public ArrayList getFeesLedgerIDIn() { return FeesLedgerIDIn; } public GL_BankDetailsQuery setFeesLedgerIDIn(ArrayList value) { this.FeesLedgerIDIn = value; return this; } public String getEftBankCode() { return EFTBankCode; } public GL_BankDetailsQuery setEftBankCode(String value) { this.EFTBankCode = value; return this; } public String getEftBankCodeStartsWith() { return EFTBankCodeStartsWith; } public GL_BankDetailsQuery setEftBankCodeStartsWith(String value) { this.EFTBankCodeStartsWith = value; return this; } public String getEftBankCodeEndsWith() { return EFTBankCodeEndsWith; } public GL_BankDetailsQuery setEftBankCodeEndsWith(String value) { this.EFTBankCodeEndsWith = value; return this; } public String getEftBankCodeContains() { return EFTBankCodeContains; } public GL_BankDetailsQuery setEftBankCodeContains(String value) { this.EFTBankCodeContains = value; return this; } public String getEftBankCodeLike() { return EFTBankCodeLike; } public GL_BankDetailsQuery setEftBankCodeLike(String value) { this.EFTBankCodeLike = value; return this; } public ArrayList getEftBankCodeBetween() { return EFTBankCodeBetween; } public GL_BankDetailsQuery setEftBankCodeBetween(ArrayList value) { this.EFTBankCodeBetween = value; return this; } public ArrayList getEftBankCodeIn() { return EFTBankCodeIn; } public GL_BankDetailsQuery setEftBankCodeIn(ArrayList value) { this.EFTBankCodeIn = value; return this; } public String getUserIdentificationNumber() { return UserIdentificationNumber; } public GL_BankDetailsQuery setUserIdentificationNumber(String value) { this.UserIdentificationNumber = value; return this; } public String getUserIdentificationNumberStartsWith() { return UserIdentificationNumberStartsWith; } public GL_BankDetailsQuery setUserIdentificationNumberStartsWith(String value) { this.UserIdentificationNumberStartsWith = value; return this; } public String getUserIdentificationNumberEndsWith() { return UserIdentificationNumberEndsWith; } public GL_BankDetailsQuery setUserIdentificationNumberEndsWith(String value) { this.UserIdentificationNumberEndsWith = value; return this; } public String getUserIdentificationNumberContains() { return UserIdentificationNumberContains; } public GL_BankDetailsQuery setUserIdentificationNumberContains(String value) { this.UserIdentificationNumberContains = value; return this; } public String getUserIdentificationNumberLike() { return UserIdentificationNumberLike; } public GL_BankDetailsQuery setUserIdentificationNumberLike(String value) { this.UserIdentificationNumberLike = value; return this; } public ArrayList getUserIdentificationNumberBetween() { return UserIdentificationNumberBetween; } public GL_BankDetailsQuery setUserIdentificationNumberBetween(ArrayList value) { this.UserIdentificationNumberBetween = value; return this; } public ArrayList getUserIdentificationNumberIn() { return UserIdentificationNumberIn; } public GL_BankDetailsQuery setUserIdentificationNumberIn(ArrayList value) { this.UserIdentificationNumberIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class GL_Budget1Query extends QueryDb implements IReturn> { public String GLBudgetID = null; public String GLBudgetIDStartsWith = null; public String GLBudgetIDEndsWith = null; public String GLBudgetIDContains = null; public String GLBudgetIDLike = null; public ArrayList GLBudgetIDBetween = null; public ArrayList GLBudgetIDIn = null; public String GLLedgerID = null; public String GLLedgerIDStartsWith = null; public String GLLedgerIDEndsWith = null; public String GLLedgerIDContains = null; public String GLLedgerIDLike = null; public ArrayList GLLedgerIDBetween = null; public ArrayList GLLedgerIDIn = null; public BigDecimal LastYearBudget1 = null; public BigDecimal LastYearBudget1GreaterThanOrEqualTo = null; public BigDecimal LastYearBudget1GreaterThan = null; public BigDecimal LastYearBudget1LessThan = null; public BigDecimal LastYearBudget1LessThanOrEqualTo = null; public BigDecimal LastYearBudget1NotEqualTo = null; public ArrayList LastYearBudget1Between = null; public ArrayList LastYearBudget1In = null; public BigDecimal LastYearBudget2 = null; public BigDecimal LastYearBudget2GreaterThanOrEqualTo = null; public BigDecimal LastYearBudget2GreaterThan = null; public BigDecimal LastYearBudget2LessThan = null; public BigDecimal LastYearBudget2LessThanOrEqualTo = null; public BigDecimal LastYearBudget2NotEqualTo = null; public ArrayList LastYearBudget2Between = null; public ArrayList LastYearBudget2In = null; public BigDecimal LastYearBudget3 = null; public BigDecimal LastYearBudget3GreaterThanOrEqualTo = null; public BigDecimal LastYearBudget3GreaterThan = null; public BigDecimal LastYearBudget3LessThan = null; public BigDecimal LastYearBudget3LessThanOrEqualTo = null; public BigDecimal LastYearBudget3NotEqualTo = null; public ArrayList LastYearBudget3Between = null; public ArrayList LastYearBudget3In = null; public BigDecimal LastYearBudget4 = null; public BigDecimal LastYearBudget4GreaterThanOrEqualTo = null; public BigDecimal LastYearBudget4GreaterThan = null; public BigDecimal LastYearBudget4LessThan = null; public BigDecimal LastYearBudget4LessThanOrEqualTo = null; public BigDecimal LastYearBudget4NotEqualTo = null; public ArrayList LastYearBudget4Between = null; public ArrayList LastYearBudget4In = null; public BigDecimal LastYearBudget5 = null; public BigDecimal LastYearBudget5GreaterThanOrEqualTo = null; public BigDecimal LastYearBudget5GreaterThan = null; public BigDecimal LastYearBudget5LessThan = null; public BigDecimal LastYearBudget5LessThanOrEqualTo = null; public BigDecimal LastYearBudget5NotEqualTo = null; public ArrayList LastYearBudget5Between = null; public ArrayList LastYearBudget5In = null; public BigDecimal LastYearBudget6 = null; public BigDecimal LastYearBudget6GreaterThanOrEqualTo = null; public BigDecimal LastYearBudget6GreaterThan = null; public BigDecimal LastYearBudget6LessThan = null; public BigDecimal LastYearBudget6LessThanOrEqualTo = null; public BigDecimal LastYearBudget6NotEqualTo = null; public ArrayList LastYearBudget6Between = null; public ArrayList LastYearBudget6In = null; public BigDecimal LastYearBudget7 = null; public BigDecimal LastYearBudget7GreaterThanOrEqualTo = null; public BigDecimal LastYearBudget7GreaterThan = null; public BigDecimal LastYearBudget7LessThan = null; public BigDecimal LastYearBudget7LessThanOrEqualTo = null; public BigDecimal LastYearBudget7NotEqualTo = null; public ArrayList LastYearBudget7Between = null; public ArrayList LastYearBudget7In = null; public BigDecimal LastYearBudget8 = null; public BigDecimal LastYearBudget8GreaterThanOrEqualTo = null; public BigDecimal LastYearBudget8GreaterThan = null; public BigDecimal LastYearBudget8LessThan = null; public BigDecimal LastYearBudget8LessThanOrEqualTo = null; public BigDecimal LastYearBudget8NotEqualTo = null; public ArrayList LastYearBudget8Between = null; public ArrayList LastYearBudget8In = null; public BigDecimal LastYearBudget9 = null; public BigDecimal LastYearBudget9GreaterThanOrEqualTo = null; public BigDecimal LastYearBudget9GreaterThan = null; public BigDecimal LastYearBudget9LessThan = null; public BigDecimal LastYearBudget9LessThanOrEqualTo = null; public BigDecimal LastYearBudget9NotEqualTo = null; public ArrayList LastYearBudget9Between = null; public ArrayList LastYearBudget9In = null; public BigDecimal LastYearBudget10 = null; public BigDecimal LastYearBudget10GreaterThanOrEqualTo = null; public BigDecimal LastYearBudget10GreaterThan = null; public BigDecimal LastYearBudget10LessThan = null; public BigDecimal LastYearBudget10LessThanOrEqualTo = null; public BigDecimal LastYearBudget10NotEqualTo = null; public ArrayList LastYearBudget10Between = null; public ArrayList LastYearBudget10In = null; public BigDecimal LastYearBudget11 = null; public BigDecimal LastYearBudget11GreaterThanOrEqualTo = null; public BigDecimal LastYearBudget11GreaterThan = null; public BigDecimal LastYearBudget11LessThan = null; public BigDecimal LastYearBudget11LessThanOrEqualTo = null; public BigDecimal LastYearBudget11NotEqualTo = null; public ArrayList LastYearBudget11Between = null; public ArrayList LastYearBudget11In = null; public BigDecimal LastYearBudget12 = null; public BigDecimal LastYearBudget12GreaterThanOrEqualTo = null; public BigDecimal LastYearBudget12GreaterThan = null; public BigDecimal LastYearBudget12LessThan = null; public BigDecimal LastYearBudget12LessThanOrEqualTo = null; public BigDecimal LastYearBudget12NotEqualTo = null; public ArrayList LastYearBudget12Between = null; public ArrayList LastYearBudget12In = null; public BigDecimal CurrYearBudget1 = null; public BigDecimal CurrYearBudget1GreaterThanOrEqualTo = null; public BigDecimal CurrYearBudget1GreaterThan = null; public BigDecimal CurrYearBudget1LessThan = null; public BigDecimal CurrYearBudget1LessThanOrEqualTo = null; public BigDecimal CurrYearBudget1NotEqualTo = null; public ArrayList CurrYearBudget1Between = null; public ArrayList CurrYearBudget1In = null; public BigDecimal CurrYearBudget2 = null; public BigDecimal CurrYearBudget2GreaterThanOrEqualTo = null; public BigDecimal CurrYearBudget2GreaterThan = null; public BigDecimal CurrYearBudget2LessThan = null; public BigDecimal CurrYearBudget2LessThanOrEqualTo = null; public BigDecimal CurrYearBudget2NotEqualTo = null; public ArrayList CurrYearBudget2Between = null; public ArrayList CurrYearBudget2In = null; public BigDecimal CurrYearBudget3 = null; public BigDecimal CurrYearBudget3GreaterThanOrEqualTo = null; public BigDecimal CurrYearBudget3GreaterThan = null; public BigDecimal CurrYearBudget3LessThan = null; public BigDecimal CurrYearBudget3LessThanOrEqualTo = null; public BigDecimal CurrYearBudget3NotEqualTo = null; public ArrayList CurrYearBudget3Between = null; public ArrayList CurrYearBudget3In = null; public BigDecimal CurrYearBudget4 = null; public BigDecimal CurrYearBudget4GreaterThanOrEqualTo = null; public BigDecimal CurrYearBudget4GreaterThan = null; public BigDecimal CurrYearBudget4LessThan = null; public BigDecimal CurrYearBudget4LessThanOrEqualTo = null; public BigDecimal CurrYearBudget4NotEqualTo = null; public ArrayList CurrYearBudget4Between = null; public ArrayList CurrYearBudget4In = null; public BigDecimal CurrYearBudget5 = null; public BigDecimal CurrYearBudget5GreaterThanOrEqualTo = null; public BigDecimal CurrYearBudget5GreaterThan = null; public BigDecimal CurrYearBudget5LessThan = null; public BigDecimal CurrYearBudget5LessThanOrEqualTo = null; public BigDecimal CurrYearBudget5NotEqualTo = null; public ArrayList CurrYearBudget5Between = null; public ArrayList CurrYearBudget5In = null; public BigDecimal CurrYearBudget6 = null; public BigDecimal CurrYearBudget6GreaterThanOrEqualTo = null; public BigDecimal CurrYearBudget6GreaterThan = null; public BigDecimal CurrYearBudget6LessThan = null; public BigDecimal CurrYearBudget6LessThanOrEqualTo = null; public BigDecimal CurrYearBudget6NotEqualTo = null; public ArrayList CurrYearBudget6Between = null; public ArrayList CurrYearBudget6In = null; public BigDecimal CurrYearBudget7 = null; public BigDecimal CurrYearBudget7GreaterThanOrEqualTo = null; public BigDecimal CurrYearBudget7GreaterThan = null; public BigDecimal CurrYearBudget7LessThan = null; public BigDecimal CurrYearBudget7LessThanOrEqualTo = null; public BigDecimal CurrYearBudget7NotEqualTo = null; public ArrayList CurrYearBudget7Between = null; public ArrayList CurrYearBudget7In = null; public BigDecimal CurrYearBudget8 = null; public BigDecimal CurrYearBudget8GreaterThanOrEqualTo = null; public BigDecimal CurrYearBudget8GreaterThan = null; public BigDecimal CurrYearBudget8LessThan = null; public BigDecimal CurrYearBudget8LessThanOrEqualTo = null; public BigDecimal CurrYearBudget8NotEqualTo = null; public ArrayList CurrYearBudget8Between = null; public ArrayList CurrYearBudget8In = null; public BigDecimal CurrYearBudget9 = null; public BigDecimal CurrYearBudget9GreaterThanOrEqualTo = null; public BigDecimal CurrYearBudget9GreaterThan = null; public BigDecimal CurrYearBudget9LessThan = null; public BigDecimal CurrYearBudget9LessThanOrEqualTo = null; public BigDecimal CurrYearBudget9NotEqualTo = null; public ArrayList CurrYearBudget9Between = null; public ArrayList CurrYearBudget9In = null; public BigDecimal CurrYearBudget10 = null; public BigDecimal CurrYearBudget10GreaterThanOrEqualTo = null; public BigDecimal CurrYearBudget10GreaterThan = null; public BigDecimal CurrYearBudget10LessThan = null; public BigDecimal CurrYearBudget10LessThanOrEqualTo = null; public BigDecimal CurrYearBudget10NotEqualTo = null; public ArrayList CurrYearBudget10Between = null; public ArrayList CurrYearBudget10In = null; public BigDecimal CurrYearBudget11 = null; public BigDecimal CurrYearBudget11GreaterThanOrEqualTo = null; public BigDecimal CurrYearBudget11GreaterThan = null; public BigDecimal CurrYearBudget11LessThan = null; public BigDecimal CurrYearBudget11LessThanOrEqualTo = null; public BigDecimal CurrYearBudget11NotEqualTo = null; public ArrayList CurrYearBudget11Between = null; public ArrayList CurrYearBudget11In = null; public BigDecimal CurrYearBudget12 = null; public BigDecimal CurrYearBudget12GreaterThanOrEqualTo = null; public BigDecimal CurrYearBudget12GreaterThan = null; public BigDecimal CurrYearBudget12LessThan = null; public BigDecimal CurrYearBudget12LessThanOrEqualTo = null; public BigDecimal CurrYearBudget12NotEqualTo = null; public ArrayList CurrYearBudget12Between = null; public ArrayList CurrYearBudget12In = null; public BigDecimal NextYearBudget1 = null; public BigDecimal NextYearBudget1GreaterThanOrEqualTo = null; public BigDecimal NextYearBudget1GreaterThan = null; public BigDecimal NextYearBudget1LessThan = null; public BigDecimal NextYearBudget1LessThanOrEqualTo = null; public BigDecimal NextYearBudget1NotEqualTo = null; public ArrayList NextYearBudget1Between = null; public ArrayList NextYearBudget1In = null; public BigDecimal NextYearBudget2 = null; public BigDecimal NextYearBudget2GreaterThanOrEqualTo = null; public BigDecimal NextYearBudget2GreaterThan = null; public BigDecimal NextYearBudget2LessThan = null; public BigDecimal NextYearBudget2LessThanOrEqualTo = null; public BigDecimal NextYearBudget2NotEqualTo = null; public ArrayList NextYearBudget2Between = null; public ArrayList NextYearBudget2In = null; public BigDecimal NextYearBudget3 = null; public BigDecimal NextYearBudget3GreaterThanOrEqualTo = null; public BigDecimal NextYearBudget3GreaterThan = null; public BigDecimal NextYearBudget3LessThan = null; public BigDecimal NextYearBudget3LessThanOrEqualTo = null; public BigDecimal NextYearBudget3NotEqualTo = null; public ArrayList NextYearBudget3Between = null; public ArrayList NextYearBudget3In = null; public BigDecimal NextYearBudget4 = null; public BigDecimal NextYearBudget4GreaterThanOrEqualTo = null; public BigDecimal NextYearBudget4GreaterThan = null; public BigDecimal NextYearBudget4LessThan = null; public BigDecimal NextYearBudget4LessThanOrEqualTo = null; public BigDecimal NextYearBudget4NotEqualTo = null; public ArrayList NextYearBudget4Between = null; public ArrayList NextYearBudget4In = null; public BigDecimal NextYearBudget5 = null; public BigDecimal NextYearBudget5GreaterThanOrEqualTo = null; public BigDecimal NextYearBudget5GreaterThan = null; public BigDecimal NextYearBudget5LessThan = null; public BigDecimal NextYearBudget5LessThanOrEqualTo = null; public BigDecimal NextYearBudget5NotEqualTo = null; public ArrayList NextYearBudget5Between = null; public ArrayList NextYearBudget5In = null; public BigDecimal NextYearBudget6 = null; public BigDecimal NextYearBudget6GreaterThanOrEqualTo = null; public BigDecimal NextYearBudget6GreaterThan = null; public BigDecimal NextYearBudget6LessThan = null; public BigDecimal NextYearBudget6LessThanOrEqualTo = null; public BigDecimal NextYearBudget6NotEqualTo = null; public ArrayList NextYearBudget6Between = null; public ArrayList NextYearBudget6In = null; public BigDecimal NextYearBudget7 = null; public BigDecimal NextYearBudget7GreaterThanOrEqualTo = null; public BigDecimal NextYearBudget7GreaterThan = null; public BigDecimal NextYearBudget7LessThan = null; public BigDecimal NextYearBudget7LessThanOrEqualTo = null; public BigDecimal NextYearBudget7NotEqualTo = null; public ArrayList NextYearBudget7Between = null; public ArrayList NextYearBudget7In = null; public BigDecimal NextYearBudget8 = null; public BigDecimal NextYearBudget8GreaterThanOrEqualTo = null; public BigDecimal NextYearBudget8GreaterThan = null; public BigDecimal NextYearBudget8LessThan = null; public BigDecimal NextYearBudget8LessThanOrEqualTo = null; public BigDecimal NextYearBudget8NotEqualTo = null; public ArrayList NextYearBudget8Between = null; public ArrayList NextYearBudget8In = null; public BigDecimal NextYearBudget9 = null; public BigDecimal NextYearBudget9GreaterThanOrEqualTo = null; public BigDecimal NextYearBudget9GreaterThan = null; public BigDecimal NextYearBudget9LessThan = null; public BigDecimal NextYearBudget9LessThanOrEqualTo = null; public BigDecimal NextYearBudget9NotEqualTo = null; public ArrayList NextYearBudget9Between = null; public ArrayList NextYearBudget9In = null; public BigDecimal NextYearBudget10 = null; public BigDecimal NextYearBudget10GreaterThanOrEqualTo = null; public BigDecimal NextYearBudget10GreaterThan = null; public BigDecimal NextYearBudget10LessThan = null; public BigDecimal NextYearBudget10LessThanOrEqualTo = null; public BigDecimal NextYearBudget10NotEqualTo = null; public ArrayList NextYearBudget10Between = null; public ArrayList NextYearBudget10In = null; public BigDecimal NextYearBudget11 = null; public BigDecimal NextYearBudget11GreaterThanOrEqualTo = null; public BigDecimal NextYearBudget11GreaterThan = null; public BigDecimal NextYearBudget11LessThan = null; public BigDecimal NextYearBudget11LessThanOrEqualTo = null; public BigDecimal NextYearBudget11NotEqualTo = null; public ArrayList NextYearBudget11Between = null; public ArrayList NextYearBudget11In = null; public BigDecimal NextYearBudget12 = null; public BigDecimal NextYearBudget12GreaterThanOrEqualTo = null; public BigDecimal NextYearBudget12GreaterThan = null; public BigDecimal NextYearBudget12LessThan = null; public BigDecimal NextYearBudget12LessThanOrEqualTo = null; public BigDecimal NextYearBudget12NotEqualTo = null; public ArrayList NextYearBudget12Between = null; public ArrayList NextYearBudget12In = null; public String getGlBudgetID() { return GLBudgetID; } public GL_Budget1Query setGlBudgetID(String value) { this.GLBudgetID = value; return this; } public String getGlBudgetIDStartsWith() { return GLBudgetIDStartsWith; } public GL_Budget1Query setGlBudgetIDStartsWith(String value) { this.GLBudgetIDStartsWith = value; return this; } public String getGlBudgetIDEndsWith() { return GLBudgetIDEndsWith; } public GL_Budget1Query setGlBudgetIDEndsWith(String value) { this.GLBudgetIDEndsWith = value; return this; } public String getGlBudgetIDContains() { return GLBudgetIDContains; } public GL_Budget1Query setGlBudgetIDContains(String value) { this.GLBudgetIDContains = value; return this; } public String getGlBudgetIDLike() { return GLBudgetIDLike; } public GL_Budget1Query setGlBudgetIDLike(String value) { this.GLBudgetIDLike = value; return this; } public ArrayList getGlBudgetIDBetween() { return GLBudgetIDBetween; } public GL_Budget1Query setGlBudgetIDBetween(ArrayList value) { this.GLBudgetIDBetween = value; return this; } public ArrayList getGlBudgetIDIn() { return GLBudgetIDIn; } public GL_Budget1Query setGlBudgetIDIn(ArrayList value) { this.GLBudgetIDIn = value; return this; } public String getGlLedgerID() { return GLLedgerID; } public GL_Budget1Query setGlLedgerID(String value) { this.GLLedgerID = value; return this; } public String getGlLedgerIDStartsWith() { return GLLedgerIDStartsWith; } public GL_Budget1Query setGlLedgerIDStartsWith(String value) { this.GLLedgerIDStartsWith = value; return this; } public String getGlLedgerIDEndsWith() { return GLLedgerIDEndsWith; } public GL_Budget1Query setGlLedgerIDEndsWith(String value) { this.GLLedgerIDEndsWith = value; return this; } public String getGlLedgerIDContains() { return GLLedgerIDContains; } public GL_Budget1Query setGlLedgerIDContains(String value) { this.GLLedgerIDContains = value; return this; } public String getGlLedgerIDLike() { return GLLedgerIDLike; } public GL_Budget1Query setGlLedgerIDLike(String value) { this.GLLedgerIDLike = value; return this; } public ArrayList getGlLedgerIDBetween() { return GLLedgerIDBetween; } public GL_Budget1Query setGlLedgerIDBetween(ArrayList value) { this.GLLedgerIDBetween = value; return this; } public ArrayList getGlLedgerIDIn() { return GLLedgerIDIn; } public GL_Budget1Query setGlLedgerIDIn(ArrayList value) { this.GLLedgerIDIn = value; return this; } public BigDecimal getLastYearBudget1() { return LastYearBudget1; } public GL_Budget1Query setLastYearBudget1(BigDecimal value) { this.LastYearBudget1 = value; return this; } public BigDecimal getLastYearBudget1GreaterThanOrEqualTo() { return LastYearBudget1GreaterThanOrEqualTo; } public GL_Budget1Query setLastYearBudget1GreaterThanOrEqualTo(BigDecimal value) { this.LastYearBudget1GreaterThanOrEqualTo = value; return this; } public BigDecimal getLastYearBudget1GreaterThan() { return LastYearBudget1GreaterThan; } public GL_Budget1Query setLastYearBudget1GreaterThan(BigDecimal value) { this.LastYearBudget1GreaterThan = value; return this; } public BigDecimal getLastYearBudget1LessThan() { return LastYearBudget1LessThan; } public GL_Budget1Query setLastYearBudget1LessThan(BigDecimal value) { this.LastYearBudget1LessThan = value; return this; } public BigDecimal getLastYearBudget1LessThanOrEqualTo() { return LastYearBudget1LessThanOrEqualTo; } public GL_Budget1Query setLastYearBudget1LessThanOrEqualTo(BigDecimal value) { this.LastYearBudget1LessThanOrEqualTo = value; return this; } public BigDecimal getLastYearBudget1NotEqualTo() { return LastYearBudget1NotEqualTo; } public GL_Budget1Query setLastYearBudget1NotEqualTo(BigDecimal value) { this.LastYearBudget1NotEqualTo = value; return this; } public ArrayList getLastYearBudget1Between() { return LastYearBudget1Between; } public GL_Budget1Query setLastYearBudget1Between(ArrayList value) { this.LastYearBudget1Between = value; return this; } public ArrayList getLastYearBudget1In() { return LastYearBudget1In; } public GL_Budget1Query setLastYearBudget1In(ArrayList value) { this.LastYearBudget1In = value; return this; } public BigDecimal getLastYearBudget2() { return LastYearBudget2; } public GL_Budget1Query setLastYearBudget2(BigDecimal value) { this.LastYearBudget2 = value; return this; } public BigDecimal getLastYearBudget2GreaterThanOrEqualTo() { return LastYearBudget2GreaterThanOrEqualTo; } public GL_Budget1Query setLastYearBudget2GreaterThanOrEqualTo(BigDecimal value) { this.LastYearBudget2GreaterThanOrEqualTo = value; return this; } public BigDecimal getLastYearBudget2GreaterThan() { return LastYearBudget2GreaterThan; } public GL_Budget1Query setLastYearBudget2GreaterThan(BigDecimal value) { this.LastYearBudget2GreaterThan = value; return this; } public BigDecimal getLastYearBudget2LessThan() { return LastYearBudget2LessThan; } public GL_Budget1Query setLastYearBudget2LessThan(BigDecimal value) { this.LastYearBudget2LessThan = value; return this; } public BigDecimal getLastYearBudget2LessThanOrEqualTo() { return LastYearBudget2LessThanOrEqualTo; } public GL_Budget1Query setLastYearBudget2LessThanOrEqualTo(BigDecimal value) { this.LastYearBudget2LessThanOrEqualTo = value; return this; } public BigDecimal getLastYearBudget2NotEqualTo() { return LastYearBudget2NotEqualTo; } public GL_Budget1Query setLastYearBudget2NotEqualTo(BigDecimal value) { this.LastYearBudget2NotEqualTo = value; return this; } public ArrayList getLastYearBudget2Between() { return LastYearBudget2Between; } public GL_Budget1Query setLastYearBudget2Between(ArrayList value) { this.LastYearBudget2Between = value; return this; } public ArrayList getLastYearBudget2In() { return LastYearBudget2In; } public GL_Budget1Query setLastYearBudget2In(ArrayList value) { this.LastYearBudget2In = value; return this; } public BigDecimal getLastYearBudget3() { return LastYearBudget3; } public GL_Budget1Query setLastYearBudget3(BigDecimal value) { this.LastYearBudget3 = value; return this; } public BigDecimal getLastYearBudget3GreaterThanOrEqualTo() { return LastYearBudget3GreaterThanOrEqualTo; } public GL_Budget1Query setLastYearBudget3GreaterThanOrEqualTo(BigDecimal value) { this.LastYearBudget3GreaterThanOrEqualTo = value; return this; } public BigDecimal getLastYearBudget3GreaterThan() { return LastYearBudget3GreaterThan; } public GL_Budget1Query setLastYearBudget3GreaterThan(BigDecimal value) { this.LastYearBudget3GreaterThan = value; return this; } public BigDecimal getLastYearBudget3LessThan() { return LastYearBudget3LessThan; } public GL_Budget1Query setLastYearBudget3LessThan(BigDecimal value) { this.LastYearBudget3LessThan = value; return this; } public BigDecimal getLastYearBudget3LessThanOrEqualTo() { return LastYearBudget3LessThanOrEqualTo; } public GL_Budget1Query setLastYearBudget3LessThanOrEqualTo(BigDecimal value) { this.LastYearBudget3LessThanOrEqualTo = value; return this; } public BigDecimal getLastYearBudget3NotEqualTo() { return LastYearBudget3NotEqualTo; } public GL_Budget1Query setLastYearBudget3NotEqualTo(BigDecimal value) { this.LastYearBudget3NotEqualTo = value; return this; } public ArrayList getLastYearBudget3Between() { return LastYearBudget3Between; } public GL_Budget1Query setLastYearBudget3Between(ArrayList value) { this.LastYearBudget3Between = value; return this; } public ArrayList getLastYearBudget3In() { return LastYearBudget3In; } public GL_Budget1Query setLastYearBudget3In(ArrayList value) { this.LastYearBudget3In = value; return this; } public BigDecimal getLastYearBudget4() { return LastYearBudget4; } public GL_Budget1Query setLastYearBudget4(BigDecimal value) { this.LastYearBudget4 = value; return this; } public BigDecimal getLastYearBudget4GreaterThanOrEqualTo() { return LastYearBudget4GreaterThanOrEqualTo; } public GL_Budget1Query setLastYearBudget4GreaterThanOrEqualTo(BigDecimal value) { this.LastYearBudget4GreaterThanOrEqualTo = value; return this; } public BigDecimal getLastYearBudget4GreaterThan() { return LastYearBudget4GreaterThan; } public GL_Budget1Query setLastYearBudget4GreaterThan(BigDecimal value) { this.LastYearBudget4GreaterThan = value; return this; } public BigDecimal getLastYearBudget4LessThan() { return LastYearBudget4LessThan; } public GL_Budget1Query setLastYearBudget4LessThan(BigDecimal value) { this.LastYearBudget4LessThan = value; return this; } public BigDecimal getLastYearBudget4LessThanOrEqualTo() { return LastYearBudget4LessThanOrEqualTo; } public GL_Budget1Query setLastYearBudget4LessThanOrEqualTo(BigDecimal value) { this.LastYearBudget4LessThanOrEqualTo = value; return this; } public BigDecimal getLastYearBudget4NotEqualTo() { return LastYearBudget4NotEqualTo; } public GL_Budget1Query setLastYearBudget4NotEqualTo(BigDecimal value) { this.LastYearBudget4NotEqualTo = value; return this; } public ArrayList getLastYearBudget4Between() { return LastYearBudget4Between; } public GL_Budget1Query setLastYearBudget4Between(ArrayList value) { this.LastYearBudget4Between = value; return this; } public ArrayList getLastYearBudget4In() { return LastYearBudget4In; } public GL_Budget1Query setLastYearBudget4In(ArrayList value) { this.LastYearBudget4In = value; return this; } public BigDecimal getLastYearBudget5() { return LastYearBudget5; } public GL_Budget1Query setLastYearBudget5(BigDecimal value) { this.LastYearBudget5 = value; return this; } public BigDecimal getLastYearBudget5GreaterThanOrEqualTo() { return LastYearBudget5GreaterThanOrEqualTo; } public GL_Budget1Query setLastYearBudget5GreaterThanOrEqualTo(BigDecimal value) { this.LastYearBudget5GreaterThanOrEqualTo = value; return this; } public BigDecimal getLastYearBudget5GreaterThan() { return LastYearBudget5GreaterThan; } public GL_Budget1Query setLastYearBudget5GreaterThan(BigDecimal value) { this.LastYearBudget5GreaterThan = value; return this; } public BigDecimal getLastYearBudget5LessThan() { return LastYearBudget5LessThan; } public GL_Budget1Query setLastYearBudget5LessThan(BigDecimal value) { this.LastYearBudget5LessThan = value; return this; } public BigDecimal getLastYearBudget5LessThanOrEqualTo() { return LastYearBudget5LessThanOrEqualTo; } public GL_Budget1Query setLastYearBudget5LessThanOrEqualTo(BigDecimal value) { this.LastYearBudget5LessThanOrEqualTo = value; return this; } public BigDecimal getLastYearBudget5NotEqualTo() { return LastYearBudget5NotEqualTo; } public GL_Budget1Query setLastYearBudget5NotEqualTo(BigDecimal value) { this.LastYearBudget5NotEqualTo = value; return this; } public ArrayList getLastYearBudget5Between() { return LastYearBudget5Between; } public GL_Budget1Query setLastYearBudget5Between(ArrayList value) { this.LastYearBudget5Between = value; return this; } public ArrayList getLastYearBudget5In() { return LastYearBudget5In; } public GL_Budget1Query setLastYearBudget5In(ArrayList value) { this.LastYearBudget5In = value; return this; } public BigDecimal getLastYearBudget6() { return LastYearBudget6; } public GL_Budget1Query setLastYearBudget6(BigDecimal value) { this.LastYearBudget6 = value; return this; } public BigDecimal getLastYearBudget6GreaterThanOrEqualTo() { return LastYearBudget6GreaterThanOrEqualTo; } public GL_Budget1Query setLastYearBudget6GreaterThanOrEqualTo(BigDecimal value) { this.LastYearBudget6GreaterThanOrEqualTo = value; return this; } public BigDecimal getLastYearBudget6GreaterThan() { return LastYearBudget6GreaterThan; } public GL_Budget1Query setLastYearBudget6GreaterThan(BigDecimal value) { this.LastYearBudget6GreaterThan = value; return this; } public BigDecimal getLastYearBudget6LessThan() { return LastYearBudget6LessThan; } public GL_Budget1Query setLastYearBudget6LessThan(BigDecimal value) { this.LastYearBudget6LessThan = value; return this; } public BigDecimal getLastYearBudget6LessThanOrEqualTo() { return LastYearBudget6LessThanOrEqualTo; } public GL_Budget1Query setLastYearBudget6LessThanOrEqualTo(BigDecimal value) { this.LastYearBudget6LessThanOrEqualTo = value; return this; } public BigDecimal getLastYearBudget6NotEqualTo() { return LastYearBudget6NotEqualTo; } public GL_Budget1Query setLastYearBudget6NotEqualTo(BigDecimal value) { this.LastYearBudget6NotEqualTo = value; return this; } public ArrayList getLastYearBudget6Between() { return LastYearBudget6Between; } public GL_Budget1Query setLastYearBudget6Between(ArrayList value) { this.LastYearBudget6Between = value; return this; } public ArrayList getLastYearBudget6In() { return LastYearBudget6In; } public GL_Budget1Query setLastYearBudget6In(ArrayList value) { this.LastYearBudget6In = value; return this; } public BigDecimal getLastYearBudget7() { return LastYearBudget7; } public GL_Budget1Query setLastYearBudget7(BigDecimal value) { this.LastYearBudget7 = value; return this; } public BigDecimal getLastYearBudget7GreaterThanOrEqualTo() { return LastYearBudget7GreaterThanOrEqualTo; } public GL_Budget1Query setLastYearBudget7GreaterThanOrEqualTo(BigDecimal value) { this.LastYearBudget7GreaterThanOrEqualTo = value; return this; } public BigDecimal getLastYearBudget7GreaterThan() { return LastYearBudget7GreaterThan; } public GL_Budget1Query setLastYearBudget7GreaterThan(BigDecimal value) { this.LastYearBudget7GreaterThan = value; return this; } public BigDecimal getLastYearBudget7LessThan() { return LastYearBudget7LessThan; } public GL_Budget1Query setLastYearBudget7LessThan(BigDecimal value) { this.LastYearBudget7LessThan = value; return this; } public BigDecimal getLastYearBudget7LessThanOrEqualTo() { return LastYearBudget7LessThanOrEqualTo; } public GL_Budget1Query setLastYearBudget7LessThanOrEqualTo(BigDecimal value) { this.LastYearBudget7LessThanOrEqualTo = value; return this; } public BigDecimal getLastYearBudget7NotEqualTo() { return LastYearBudget7NotEqualTo; } public GL_Budget1Query setLastYearBudget7NotEqualTo(BigDecimal value) { this.LastYearBudget7NotEqualTo = value; return this; } public ArrayList getLastYearBudget7Between() { return LastYearBudget7Between; } public GL_Budget1Query setLastYearBudget7Between(ArrayList value) { this.LastYearBudget7Between = value; return this; } public ArrayList getLastYearBudget7In() { return LastYearBudget7In; } public GL_Budget1Query setLastYearBudget7In(ArrayList value) { this.LastYearBudget7In = value; return this; } public BigDecimal getLastYearBudget8() { return LastYearBudget8; } public GL_Budget1Query setLastYearBudget8(BigDecimal value) { this.LastYearBudget8 = value; return this; } public BigDecimal getLastYearBudget8GreaterThanOrEqualTo() { return LastYearBudget8GreaterThanOrEqualTo; } public GL_Budget1Query setLastYearBudget8GreaterThanOrEqualTo(BigDecimal value) { this.LastYearBudget8GreaterThanOrEqualTo = value; return this; } public BigDecimal getLastYearBudget8GreaterThan() { return LastYearBudget8GreaterThan; } public GL_Budget1Query setLastYearBudget8GreaterThan(BigDecimal value) { this.LastYearBudget8GreaterThan = value; return this; } public BigDecimal getLastYearBudget8LessThan() { return LastYearBudget8LessThan; } public GL_Budget1Query setLastYearBudget8LessThan(BigDecimal value) { this.LastYearBudget8LessThan = value; return this; } public BigDecimal getLastYearBudget8LessThanOrEqualTo() { return LastYearBudget8LessThanOrEqualTo; } public GL_Budget1Query setLastYearBudget8LessThanOrEqualTo(BigDecimal value) { this.LastYearBudget8LessThanOrEqualTo = value; return this; } public BigDecimal getLastYearBudget8NotEqualTo() { return LastYearBudget8NotEqualTo; } public GL_Budget1Query setLastYearBudget8NotEqualTo(BigDecimal value) { this.LastYearBudget8NotEqualTo = value; return this; } public ArrayList getLastYearBudget8Between() { return LastYearBudget8Between; } public GL_Budget1Query setLastYearBudget8Between(ArrayList value) { this.LastYearBudget8Between = value; return this; } public ArrayList getLastYearBudget8In() { return LastYearBudget8In; } public GL_Budget1Query setLastYearBudget8In(ArrayList value) { this.LastYearBudget8In = value; return this; } public BigDecimal getLastYearBudget9() { return LastYearBudget9; } public GL_Budget1Query setLastYearBudget9(BigDecimal value) { this.LastYearBudget9 = value; return this; } public BigDecimal getLastYearBudget9GreaterThanOrEqualTo() { return LastYearBudget9GreaterThanOrEqualTo; } public GL_Budget1Query setLastYearBudget9GreaterThanOrEqualTo(BigDecimal value) { this.LastYearBudget9GreaterThanOrEqualTo = value; return this; } public BigDecimal getLastYearBudget9GreaterThan() { return LastYearBudget9GreaterThan; } public GL_Budget1Query setLastYearBudget9GreaterThan(BigDecimal value) { this.LastYearBudget9GreaterThan = value; return this; } public BigDecimal getLastYearBudget9LessThan() { return LastYearBudget9LessThan; } public GL_Budget1Query setLastYearBudget9LessThan(BigDecimal value) { this.LastYearBudget9LessThan = value; return this; } public BigDecimal getLastYearBudget9LessThanOrEqualTo() { return LastYearBudget9LessThanOrEqualTo; } public GL_Budget1Query setLastYearBudget9LessThanOrEqualTo(BigDecimal value) { this.LastYearBudget9LessThanOrEqualTo = value; return this; } public BigDecimal getLastYearBudget9NotEqualTo() { return LastYearBudget9NotEqualTo; } public GL_Budget1Query setLastYearBudget9NotEqualTo(BigDecimal value) { this.LastYearBudget9NotEqualTo = value; return this; } public ArrayList getLastYearBudget9Between() { return LastYearBudget9Between; } public GL_Budget1Query setLastYearBudget9Between(ArrayList value) { this.LastYearBudget9Between = value; return this; } public ArrayList getLastYearBudget9In() { return LastYearBudget9In; } public GL_Budget1Query setLastYearBudget9In(ArrayList value) { this.LastYearBudget9In = value; return this; } public BigDecimal getLastYearBudget10() { return LastYearBudget10; } public GL_Budget1Query setLastYearBudget10(BigDecimal value) { this.LastYearBudget10 = value; return this; } public BigDecimal getLastYearBudget10GreaterThanOrEqualTo() { return LastYearBudget10GreaterThanOrEqualTo; } public GL_Budget1Query setLastYearBudget10GreaterThanOrEqualTo(BigDecimal value) { this.LastYearBudget10GreaterThanOrEqualTo = value; return this; } public BigDecimal getLastYearBudget10GreaterThan() { return LastYearBudget10GreaterThan; } public GL_Budget1Query setLastYearBudget10GreaterThan(BigDecimal value) { this.LastYearBudget10GreaterThan = value; return this; } public BigDecimal getLastYearBudget10LessThan() { return LastYearBudget10LessThan; } public GL_Budget1Query setLastYearBudget10LessThan(BigDecimal value) { this.LastYearBudget10LessThan = value; return this; } public BigDecimal getLastYearBudget10LessThanOrEqualTo() { return LastYearBudget10LessThanOrEqualTo; } public GL_Budget1Query setLastYearBudget10LessThanOrEqualTo(BigDecimal value) { this.LastYearBudget10LessThanOrEqualTo = value; return this; } public BigDecimal getLastYearBudget10NotEqualTo() { return LastYearBudget10NotEqualTo; } public GL_Budget1Query setLastYearBudget10NotEqualTo(BigDecimal value) { this.LastYearBudget10NotEqualTo = value; return this; } public ArrayList getLastYearBudget10Between() { return LastYearBudget10Between; } public GL_Budget1Query setLastYearBudget10Between(ArrayList value) { this.LastYearBudget10Between = value; return this; } public ArrayList getLastYearBudget10In() { return LastYearBudget10In; } public GL_Budget1Query setLastYearBudget10In(ArrayList value) { this.LastYearBudget10In = value; return this; } public BigDecimal getLastYearBudget11() { return LastYearBudget11; } public GL_Budget1Query setLastYearBudget11(BigDecimal value) { this.LastYearBudget11 = value; return this; } public BigDecimal getLastYearBudget11GreaterThanOrEqualTo() { return LastYearBudget11GreaterThanOrEqualTo; } public GL_Budget1Query setLastYearBudget11GreaterThanOrEqualTo(BigDecimal value) { this.LastYearBudget11GreaterThanOrEqualTo = value; return this; } public BigDecimal getLastYearBudget11GreaterThan() { return LastYearBudget11GreaterThan; } public GL_Budget1Query setLastYearBudget11GreaterThan(BigDecimal value) { this.LastYearBudget11GreaterThan = value; return this; } public BigDecimal getLastYearBudget11LessThan() { return LastYearBudget11LessThan; } public GL_Budget1Query setLastYearBudget11LessThan(BigDecimal value) { this.LastYearBudget11LessThan = value; return this; } public BigDecimal getLastYearBudget11LessThanOrEqualTo() { return LastYearBudget11LessThanOrEqualTo; } public GL_Budget1Query setLastYearBudget11LessThanOrEqualTo(BigDecimal value) { this.LastYearBudget11LessThanOrEqualTo = value; return this; } public BigDecimal getLastYearBudget11NotEqualTo() { return LastYearBudget11NotEqualTo; } public GL_Budget1Query setLastYearBudget11NotEqualTo(BigDecimal value) { this.LastYearBudget11NotEqualTo = value; return this; } public ArrayList getLastYearBudget11Between() { return LastYearBudget11Between; } public GL_Budget1Query setLastYearBudget11Between(ArrayList value) { this.LastYearBudget11Between = value; return this; } public ArrayList getLastYearBudget11In() { return LastYearBudget11In; } public GL_Budget1Query setLastYearBudget11In(ArrayList value) { this.LastYearBudget11In = value; return this; } public BigDecimal getLastYearBudget12() { return LastYearBudget12; } public GL_Budget1Query setLastYearBudget12(BigDecimal value) { this.LastYearBudget12 = value; return this; } public BigDecimal getLastYearBudget12GreaterThanOrEqualTo() { return LastYearBudget12GreaterThanOrEqualTo; } public GL_Budget1Query setLastYearBudget12GreaterThanOrEqualTo(BigDecimal value) { this.LastYearBudget12GreaterThanOrEqualTo = value; return this; } public BigDecimal getLastYearBudget12GreaterThan() { return LastYearBudget12GreaterThan; } public GL_Budget1Query setLastYearBudget12GreaterThan(BigDecimal value) { this.LastYearBudget12GreaterThan = value; return this; } public BigDecimal getLastYearBudget12LessThan() { return LastYearBudget12LessThan; } public GL_Budget1Query setLastYearBudget12LessThan(BigDecimal value) { this.LastYearBudget12LessThan = value; return this; } public BigDecimal getLastYearBudget12LessThanOrEqualTo() { return LastYearBudget12LessThanOrEqualTo; } public GL_Budget1Query setLastYearBudget12LessThanOrEqualTo(BigDecimal value) { this.LastYearBudget12LessThanOrEqualTo = value; return this; } public BigDecimal getLastYearBudget12NotEqualTo() { return LastYearBudget12NotEqualTo; } public GL_Budget1Query setLastYearBudget12NotEqualTo(BigDecimal value) { this.LastYearBudget12NotEqualTo = value; return this; } public ArrayList getLastYearBudget12Between() { return LastYearBudget12Between; } public GL_Budget1Query setLastYearBudget12Between(ArrayList value) { this.LastYearBudget12Between = value; return this; } public ArrayList getLastYearBudget12In() { return LastYearBudget12In; } public GL_Budget1Query setLastYearBudget12In(ArrayList value) { this.LastYearBudget12In = value; return this; } public BigDecimal getCurrYearBudget1() { return CurrYearBudget1; } public GL_Budget1Query setCurrYearBudget1(BigDecimal value) { this.CurrYearBudget1 = value; return this; } public BigDecimal getCurrYearBudget1GreaterThanOrEqualTo() { return CurrYearBudget1GreaterThanOrEqualTo; } public GL_Budget1Query setCurrYearBudget1GreaterThanOrEqualTo(BigDecimal value) { this.CurrYearBudget1GreaterThanOrEqualTo = value; return this; } public BigDecimal getCurrYearBudget1GreaterThan() { return CurrYearBudget1GreaterThan; } public GL_Budget1Query setCurrYearBudget1GreaterThan(BigDecimal value) { this.CurrYearBudget1GreaterThan = value; return this; } public BigDecimal getCurrYearBudget1LessThan() { return CurrYearBudget1LessThan; } public GL_Budget1Query setCurrYearBudget1LessThan(BigDecimal value) { this.CurrYearBudget1LessThan = value; return this; } public BigDecimal getCurrYearBudget1LessThanOrEqualTo() { return CurrYearBudget1LessThanOrEqualTo; } public GL_Budget1Query setCurrYearBudget1LessThanOrEqualTo(BigDecimal value) { this.CurrYearBudget1LessThanOrEqualTo = value; return this; } public BigDecimal getCurrYearBudget1NotEqualTo() { return CurrYearBudget1NotEqualTo; } public GL_Budget1Query setCurrYearBudget1NotEqualTo(BigDecimal value) { this.CurrYearBudget1NotEqualTo = value; return this; } public ArrayList getCurrYearBudget1Between() { return CurrYearBudget1Between; } public GL_Budget1Query setCurrYearBudget1Between(ArrayList value) { this.CurrYearBudget1Between = value; return this; } public ArrayList getCurrYearBudget1In() { return CurrYearBudget1In; } public GL_Budget1Query setCurrYearBudget1In(ArrayList value) { this.CurrYearBudget1In = value; return this; } public BigDecimal getCurrYearBudget2() { return CurrYearBudget2; } public GL_Budget1Query setCurrYearBudget2(BigDecimal value) { this.CurrYearBudget2 = value; return this; } public BigDecimal getCurrYearBudget2GreaterThanOrEqualTo() { return CurrYearBudget2GreaterThanOrEqualTo; } public GL_Budget1Query setCurrYearBudget2GreaterThanOrEqualTo(BigDecimal value) { this.CurrYearBudget2GreaterThanOrEqualTo = value; return this; } public BigDecimal getCurrYearBudget2GreaterThan() { return CurrYearBudget2GreaterThan; } public GL_Budget1Query setCurrYearBudget2GreaterThan(BigDecimal value) { this.CurrYearBudget2GreaterThan = value; return this; } public BigDecimal getCurrYearBudget2LessThan() { return CurrYearBudget2LessThan; } public GL_Budget1Query setCurrYearBudget2LessThan(BigDecimal value) { this.CurrYearBudget2LessThan = value; return this; } public BigDecimal getCurrYearBudget2LessThanOrEqualTo() { return CurrYearBudget2LessThanOrEqualTo; } public GL_Budget1Query setCurrYearBudget2LessThanOrEqualTo(BigDecimal value) { this.CurrYearBudget2LessThanOrEqualTo = value; return this; } public BigDecimal getCurrYearBudget2NotEqualTo() { return CurrYearBudget2NotEqualTo; } public GL_Budget1Query setCurrYearBudget2NotEqualTo(BigDecimal value) { this.CurrYearBudget2NotEqualTo = value; return this; } public ArrayList getCurrYearBudget2Between() { return CurrYearBudget2Between; } public GL_Budget1Query setCurrYearBudget2Between(ArrayList value) { this.CurrYearBudget2Between = value; return this; } public ArrayList getCurrYearBudget2In() { return CurrYearBudget2In; } public GL_Budget1Query setCurrYearBudget2In(ArrayList value) { this.CurrYearBudget2In = value; return this; } public BigDecimal getCurrYearBudget3() { return CurrYearBudget3; } public GL_Budget1Query setCurrYearBudget3(BigDecimal value) { this.CurrYearBudget3 = value; return this; } public BigDecimal getCurrYearBudget3GreaterThanOrEqualTo() { return CurrYearBudget3GreaterThanOrEqualTo; } public GL_Budget1Query setCurrYearBudget3GreaterThanOrEqualTo(BigDecimal value) { this.CurrYearBudget3GreaterThanOrEqualTo = value; return this; } public BigDecimal getCurrYearBudget3GreaterThan() { return CurrYearBudget3GreaterThan; } public GL_Budget1Query setCurrYearBudget3GreaterThan(BigDecimal value) { this.CurrYearBudget3GreaterThan = value; return this; } public BigDecimal getCurrYearBudget3LessThan() { return CurrYearBudget3LessThan; } public GL_Budget1Query setCurrYearBudget3LessThan(BigDecimal value) { this.CurrYearBudget3LessThan = value; return this; } public BigDecimal getCurrYearBudget3LessThanOrEqualTo() { return CurrYearBudget3LessThanOrEqualTo; } public GL_Budget1Query setCurrYearBudget3LessThanOrEqualTo(BigDecimal value) { this.CurrYearBudget3LessThanOrEqualTo = value; return this; } public BigDecimal getCurrYearBudget3NotEqualTo() { return CurrYearBudget3NotEqualTo; } public GL_Budget1Query setCurrYearBudget3NotEqualTo(BigDecimal value) { this.CurrYearBudget3NotEqualTo = value; return this; } public ArrayList getCurrYearBudget3Between() { return CurrYearBudget3Between; } public GL_Budget1Query setCurrYearBudget3Between(ArrayList value) { this.CurrYearBudget3Between = value; return this; } public ArrayList getCurrYearBudget3In() { return CurrYearBudget3In; } public GL_Budget1Query setCurrYearBudget3In(ArrayList value) { this.CurrYearBudget3In = value; return this; } public BigDecimal getCurrYearBudget4() { return CurrYearBudget4; } public GL_Budget1Query setCurrYearBudget4(BigDecimal value) { this.CurrYearBudget4 = value; return this; } public BigDecimal getCurrYearBudget4GreaterThanOrEqualTo() { return CurrYearBudget4GreaterThanOrEqualTo; } public GL_Budget1Query setCurrYearBudget4GreaterThanOrEqualTo(BigDecimal value) { this.CurrYearBudget4GreaterThanOrEqualTo = value; return this; } public BigDecimal getCurrYearBudget4GreaterThan() { return CurrYearBudget4GreaterThan; } public GL_Budget1Query setCurrYearBudget4GreaterThan(BigDecimal value) { this.CurrYearBudget4GreaterThan = value; return this; } public BigDecimal getCurrYearBudget4LessThan() { return CurrYearBudget4LessThan; } public GL_Budget1Query setCurrYearBudget4LessThan(BigDecimal value) { this.CurrYearBudget4LessThan = value; return this; } public BigDecimal getCurrYearBudget4LessThanOrEqualTo() { return CurrYearBudget4LessThanOrEqualTo; } public GL_Budget1Query setCurrYearBudget4LessThanOrEqualTo(BigDecimal value) { this.CurrYearBudget4LessThanOrEqualTo = value; return this; } public BigDecimal getCurrYearBudget4NotEqualTo() { return CurrYearBudget4NotEqualTo; } public GL_Budget1Query setCurrYearBudget4NotEqualTo(BigDecimal value) { this.CurrYearBudget4NotEqualTo = value; return this; } public ArrayList getCurrYearBudget4Between() { return CurrYearBudget4Between; } public GL_Budget1Query setCurrYearBudget4Between(ArrayList value) { this.CurrYearBudget4Between = value; return this; } public ArrayList getCurrYearBudget4In() { return CurrYearBudget4In; } public GL_Budget1Query setCurrYearBudget4In(ArrayList value) { this.CurrYearBudget4In = value; return this; } public BigDecimal getCurrYearBudget5() { return CurrYearBudget5; } public GL_Budget1Query setCurrYearBudget5(BigDecimal value) { this.CurrYearBudget5 = value; return this; } public BigDecimal getCurrYearBudget5GreaterThanOrEqualTo() { return CurrYearBudget5GreaterThanOrEqualTo; } public GL_Budget1Query setCurrYearBudget5GreaterThanOrEqualTo(BigDecimal value) { this.CurrYearBudget5GreaterThanOrEqualTo = value; return this; } public BigDecimal getCurrYearBudget5GreaterThan() { return CurrYearBudget5GreaterThan; } public GL_Budget1Query setCurrYearBudget5GreaterThan(BigDecimal value) { this.CurrYearBudget5GreaterThan = value; return this; } public BigDecimal getCurrYearBudget5LessThan() { return CurrYearBudget5LessThan; } public GL_Budget1Query setCurrYearBudget5LessThan(BigDecimal value) { this.CurrYearBudget5LessThan = value; return this; } public BigDecimal getCurrYearBudget5LessThanOrEqualTo() { return CurrYearBudget5LessThanOrEqualTo; } public GL_Budget1Query setCurrYearBudget5LessThanOrEqualTo(BigDecimal value) { this.CurrYearBudget5LessThanOrEqualTo = value; return this; } public BigDecimal getCurrYearBudget5NotEqualTo() { return CurrYearBudget5NotEqualTo; } public GL_Budget1Query setCurrYearBudget5NotEqualTo(BigDecimal value) { this.CurrYearBudget5NotEqualTo = value; return this; } public ArrayList getCurrYearBudget5Between() { return CurrYearBudget5Between; } public GL_Budget1Query setCurrYearBudget5Between(ArrayList value) { this.CurrYearBudget5Between = value; return this; } public ArrayList getCurrYearBudget5In() { return CurrYearBudget5In; } public GL_Budget1Query setCurrYearBudget5In(ArrayList value) { this.CurrYearBudget5In = value; return this; } public BigDecimal getCurrYearBudget6() { return CurrYearBudget6; } public GL_Budget1Query setCurrYearBudget6(BigDecimal value) { this.CurrYearBudget6 = value; return this; } public BigDecimal getCurrYearBudget6GreaterThanOrEqualTo() { return CurrYearBudget6GreaterThanOrEqualTo; } public GL_Budget1Query setCurrYearBudget6GreaterThanOrEqualTo(BigDecimal value) { this.CurrYearBudget6GreaterThanOrEqualTo = value; return this; } public BigDecimal getCurrYearBudget6GreaterThan() { return CurrYearBudget6GreaterThan; } public GL_Budget1Query setCurrYearBudget6GreaterThan(BigDecimal value) { this.CurrYearBudget6GreaterThan = value; return this; } public BigDecimal getCurrYearBudget6LessThan() { return CurrYearBudget6LessThan; } public GL_Budget1Query setCurrYearBudget6LessThan(BigDecimal value) { this.CurrYearBudget6LessThan = value; return this; } public BigDecimal getCurrYearBudget6LessThanOrEqualTo() { return CurrYearBudget6LessThanOrEqualTo; } public GL_Budget1Query setCurrYearBudget6LessThanOrEqualTo(BigDecimal value) { this.CurrYearBudget6LessThanOrEqualTo = value; return this; } public BigDecimal getCurrYearBudget6NotEqualTo() { return CurrYearBudget6NotEqualTo; } public GL_Budget1Query setCurrYearBudget6NotEqualTo(BigDecimal value) { this.CurrYearBudget6NotEqualTo = value; return this; } public ArrayList getCurrYearBudget6Between() { return CurrYearBudget6Between; } public GL_Budget1Query setCurrYearBudget6Between(ArrayList value) { this.CurrYearBudget6Between = value; return this; } public ArrayList getCurrYearBudget6In() { return CurrYearBudget6In; } public GL_Budget1Query setCurrYearBudget6In(ArrayList value) { this.CurrYearBudget6In = value; return this; } public BigDecimal getCurrYearBudget7() { return CurrYearBudget7; } public GL_Budget1Query setCurrYearBudget7(BigDecimal value) { this.CurrYearBudget7 = value; return this; } public BigDecimal getCurrYearBudget7GreaterThanOrEqualTo() { return CurrYearBudget7GreaterThanOrEqualTo; } public GL_Budget1Query setCurrYearBudget7GreaterThanOrEqualTo(BigDecimal value) { this.CurrYearBudget7GreaterThanOrEqualTo = value; return this; } public BigDecimal getCurrYearBudget7GreaterThan() { return CurrYearBudget7GreaterThan; } public GL_Budget1Query setCurrYearBudget7GreaterThan(BigDecimal value) { this.CurrYearBudget7GreaterThan = value; return this; } public BigDecimal getCurrYearBudget7LessThan() { return CurrYearBudget7LessThan; } public GL_Budget1Query setCurrYearBudget7LessThan(BigDecimal value) { this.CurrYearBudget7LessThan = value; return this; } public BigDecimal getCurrYearBudget7LessThanOrEqualTo() { return CurrYearBudget7LessThanOrEqualTo; } public GL_Budget1Query setCurrYearBudget7LessThanOrEqualTo(BigDecimal value) { this.CurrYearBudget7LessThanOrEqualTo = value; return this; } public BigDecimal getCurrYearBudget7NotEqualTo() { return CurrYearBudget7NotEqualTo; } public GL_Budget1Query setCurrYearBudget7NotEqualTo(BigDecimal value) { this.CurrYearBudget7NotEqualTo = value; return this; } public ArrayList getCurrYearBudget7Between() { return CurrYearBudget7Between; } public GL_Budget1Query setCurrYearBudget7Between(ArrayList value) { this.CurrYearBudget7Between = value; return this; } public ArrayList getCurrYearBudget7In() { return CurrYearBudget7In; } public GL_Budget1Query setCurrYearBudget7In(ArrayList value) { this.CurrYearBudget7In = value; return this; } public BigDecimal getCurrYearBudget8() { return CurrYearBudget8; } public GL_Budget1Query setCurrYearBudget8(BigDecimal value) { this.CurrYearBudget8 = value; return this; } public BigDecimal getCurrYearBudget8GreaterThanOrEqualTo() { return CurrYearBudget8GreaterThanOrEqualTo; } public GL_Budget1Query setCurrYearBudget8GreaterThanOrEqualTo(BigDecimal value) { this.CurrYearBudget8GreaterThanOrEqualTo = value; return this; } public BigDecimal getCurrYearBudget8GreaterThan() { return CurrYearBudget8GreaterThan; } public GL_Budget1Query setCurrYearBudget8GreaterThan(BigDecimal value) { this.CurrYearBudget8GreaterThan = value; return this; } public BigDecimal getCurrYearBudget8LessThan() { return CurrYearBudget8LessThan; } public GL_Budget1Query setCurrYearBudget8LessThan(BigDecimal value) { this.CurrYearBudget8LessThan = value; return this; } public BigDecimal getCurrYearBudget8LessThanOrEqualTo() { return CurrYearBudget8LessThanOrEqualTo; } public GL_Budget1Query setCurrYearBudget8LessThanOrEqualTo(BigDecimal value) { this.CurrYearBudget8LessThanOrEqualTo = value; return this; } public BigDecimal getCurrYearBudget8NotEqualTo() { return CurrYearBudget8NotEqualTo; } public GL_Budget1Query setCurrYearBudget8NotEqualTo(BigDecimal value) { this.CurrYearBudget8NotEqualTo = value; return this; } public ArrayList getCurrYearBudget8Between() { return CurrYearBudget8Between; } public GL_Budget1Query setCurrYearBudget8Between(ArrayList value) { this.CurrYearBudget8Between = value; return this; } public ArrayList getCurrYearBudget8In() { return CurrYearBudget8In; } public GL_Budget1Query setCurrYearBudget8In(ArrayList value) { this.CurrYearBudget8In = value; return this; } public BigDecimal getCurrYearBudget9() { return CurrYearBudget9; } public GL_Budget1Query setCurrYearBudget9(BigDecimal value) { this.CurrYearBudget9 = value; return this; } public BigDecimal getCurrYearBudget9GreaterThanOrEqualTo() { return CurrYearBudget9GreaterThanOrEqualTo; } public GL_Budget1Query setCurrYearBudget9GreaterThanOrEqualTo(BigDecimal value) { this.CurrYearBudget9GreaterThanOrEqualTo = value; return this; } public BigDecimal getCurrYearBudget9GreaterThan() { return CurrYearBudget9GreaterThan; } public GL_Budget1Query setCurrYearBudget9GreaterThan(BigDecimal value) { this.CurrYearBudget9GreaterThan = value; return this; } public BigDecimal getCurrYearBudget9LessThan() { return CurrYearBudget9LessThan; } public GL_Budget1Query setCurrYearBudget9LessThan(BigDecimal value) { this.CurrYearBudget9LessThan = value; return this; } public BigDecimal getCurrYearBudget9LessThanOrEqualTo() { return CurrYearBudget9LessThanOrEqualTo; } public GL_Budget1Query setCurrYearBudget9LessThanOrEqualTo(BigDecimal value) { this.CurrYearBudget9LessThanOrEqualTo = value; return this; } public BigDecimal getCurrYearBudget9NotEqualTo() { return CurrYearBudget9NotEqualTo; } public GL_Budget1Query setCurrYearBudget9NotEqualTo(BigDecimal value) { this.CurrYearBudget9NotEqualTo = value; return this; } public ArrayList getCurrYearBudget9Between() { return CurrYearBudget9Between; } public GL_Budget1Query setCurrYearBudget9Between(ArrayList value) { this.CurrYearBudget9Between = value; return this; } public ArrayList getCurrYearBudget9In() { return CurrYearBudget9In; } public GL_Budget1Query setCurrYearBudget9In(ArrayList value) { this.CurrYearBudget9In = value; return this; } public BigDecimal getCurrYearBudget10() { return CurrYearBudget10; } public GL_Budget1Query setCurrYearBudget10(BigDecimal value) { this.CurrYearBudget10 = value; return this; } public BigDecimal getCurrYearBudget10GreaterThanOrEqualTo() { return CurrYearBudget10GreaterThanOrEqualTo; } public GL_Budget1Query setCurrYearBudget10GreaterThanOrEqualTo(BigDecimal value) { this.CurrYearBudget10GreaterThanOrEqualTo = value; return this; } public BigDecimal getCurrYearBudget10GreaterThan() { return CurrYearBudget10GreaterThan; } public GL_Budget1Query setCurrYearBudget10GreaterThan(BigDecimal value) { this.CurrYearBudget10GreaterThan = value; return this; } public BigDecimal getCurrYearBudget10LessThan() { return CurrYearBudget10LessThan; } public GL_Budget1Query setCurrYearBudget10LessThan(BigDecimal value) { this.CurrYearBudget10LessThan = value; return this; } public BigDecimal getCurrYearBudget10LessThanOrEqualTo() { return CurrYearBudget10LessThanOrEqualTo; } public GL_Budget1Query setCurrYearBudget10LessThanOrEqualTo(BigDecimal value) { this.CurrYearBudget10LessThanOrEqualTo = value; return this; } public BigDecimal getCurrYearBudget10NotEqualTo() { return CurrYearBudget10NotEqualTo; } public GL_Budget1Query setCurrYearBudget10NotEqualTo(BigDecimal value) { this.CurrYearBudget10NotEqualTo = value; return this; } public ArrayList getCurrYearBudget10Between() { return CurrYearBudget10Between; } public GL_Budget1Query setCurrYearBudget10Between(ArrayList value) { this.CurrYearBudget10Between = value; return this; } public ArrayList getCurrYearBudget10In() { return CurrYearBudget10In; } public GL_Budget1Query setCurrYearBudget10In(ArrayList value) { this.CurrYearBudget10In = value; return this; } public BigDecimal getCurrYearBudget11() { return CurrYearBudget11; } public GL_Budget1Query setCurrYearBudget11(BigDecimal value) { this.CurrYearBudget11 = value; return this; } public BigDecimal getCurrYearBudget11GreaterThanOrEqualTo() { return CurrYearBudget11GreaterThanOrEqualTo; } public GL_Budget1Query setCurrYearBudget11GreaterThanOrEqualTo(BigDecimal value) { this.CurrYearBudget11GreaterThanOrEqualTo = value; return this; } public BigDecimal getCurrYearBudget11GreaterThan() { return CurrYearBudget11GreaterThan; } public GL_Budget1Query setCurrYearBudget11GreaterThan(BigDecimal value) { this.CurrYearBudget11GreaterThan = value; return this; } public BigDecimal getCurrYearBudget11LessThan() { return CurrYearBudget11LessThan; } public GL_Budget1Query setCurrYearBudget11LessThan(BigDecimal value) { this.CurrYearBudget11LessThan = value; return this; } public BigDecimal getCurrYearBudget11LessThanOrEqualTo() { return CurrYearBudget11LessThanOrEqualTo; } public GL_Budget1Query setCurrYearBudget11LessThanOrEqualTo(BigDecimal value) { this.CurrYearBudget11LessThanOrEqualTo = value; return this; } public BigDecimal getCurrYearBudget11NotEqualTo() { return CurrYearBudget11NotEqualTo; } public GL_Budget1Query setCurrYearBudget11NotEqualTo(BigDecimal value) { this.CurrYearBudget11NotEqualTo = value; return this; } public ArrayList getCurrYearBudget11Between() { return CurrYearBudget11Between; } public GL_Budget1Query setCurrYearBudget11Between(ArrayList value) { this.CurrYearBudget11Between = value; return this; } public ArrayList getCurrYearBudget11In() { return CurrYearBudget11In; } public GL_Budget1Query setCurrYearBudget11In(ArrayList value) { this.CurrYearBudget11In = value; return this; } public BigDecimal getCurrYearBudget12() { return CurrYearBudget12; } public GL_Budget1Query setCurrYearBudget12(BigDecimal value) { this.CurrYearBudget12 = value; return this; } public BigDecimal getCurrYearBudget12GreaterThanOrEqualTo() { return CurrYearBudget12GreaterThanOrEqualTo; } public GL_Budget1Query setCurrYearBudget12GreaterThanOrEqualTo(BigDecimal value) { this.CurrYearBudget12GreaterThanOrEqualTo = value; return this; } public BigDecimal getCurrYearBudget12GreaterThan() { return CurrYearBudget12GreaterThan; } public GL_Budget1Query setCurrYearBudget12GreaterThan(BigDecimal value) { this.CurrYearBudget12GreaterThan = value; return this; } public BigDecimal getCurrYearBudget12LessThan() { return CurrYearBudget12LessThan; } public GL_Budget1Query setCurrYearBudget12LessThan(BigDecimal value) { this.CurrYearBudget12LessThan = value; return this; } public BigDecimal getCurrYearBudget12LessThanOrEqualTo() { return CurrYearBudget12LessThanOrEqualTo; } public GL_Budget1Query setCurrYearBudget12LessThanOrEqualTo(BigDecimal value) { this.CurrYearBudget12LessThanOrEqualTo = value; return this; } public BigDecimal getCurrYearBudget12NotEqualTo() { return CurrYearBudget12NotEqualTo; } public GL_Budget1Query setCurrYearBudget12NotEqualTo(BigDecimal value) { this.CurrYearBudget12NotEqualTo = value; return this; } public ArrayList getCurrYearBudget12Between() { return CurrYearBudget12Between; } public GL_Budget1Query setCurrYearBudget12Between(ArrayList value) { this.CurrYearBudget12Between = value; return this; } public ArrayList getCurrYearBudget12In() { return CurrYearBudget12In; } public GL_Budget1Query setCurrYearBudget12In(ArrayList value) { this.CurrYearBudget12In = value; return this; } public BigDecimal getNextYearBudget1() { return NextYearBudget1; } public GL_Budget1Query setNextYearBudget1(BigDecimal value) { this.NextYearBudget1 = value; return this; } public BigDecimal getNextYearBudget1GreaterThanOrEqualTo() { return NextYearBudget1GreaterThanOrEqualTo; } public GL_Budget1Query setNextYearBudget1GreaterThanOrEqualTo(BigDecimal value) { this.NextYearBudget1GreaterThanOrEqualTo = value; return this; } public BigDecimal getNextYearBudget1GreaterThan() { return NextYearBudget1GreaterThan; } public GL_Budget1Query setNextYearBudget1GreaterThan(BigDecimal value) { this.NextYearBudget1GreaterThan = value; return this; } public BigDecimal getNextYearBudget1LessThan() { return NextYearBudget1LessThan; } public GL_Budget1Query setNextYearBudget1LessThan(BigDecimal value) { this.NextYearBudget1LessThan = value; return this; } public BigDecimal getNextYearBudget1LessThanOrEqualTo() { return NextYearBudget1LessThanOrEqualTo; } public GL_Budget1Query setNextYearBudget1LessThanOrEqualTo(BigDecimal value) { this.NextYearBudget1LessThanOrEqualTo = value; return this; } public BigDecimal getNextYearBudget1NotEqualTo() { return NextYearBudget1NotEqualTo; } public GL_Budget1Query setNextYearBudget1NotEqualTo(BigDecimal value) { this.NextYearBudget1NotEqualTo = value; return this; } public ArrayList getNextYearBudget1Between() { return NextYearBudget1Between; } public GL_Budget1Query setNextYearBudget1Between(ArrayList value) { this.NextYearBudget1Between = value; return this; } public ArrayList getNextYearBudget1In() { return NextYearBudget1In; } public GL_Budget1Query setNextYearBudget1In(ArrayList value) { this.NextYearBudget1In = value; return this; } public BigDecimal getNextYearBudget2() { return NextYearBudget2; } public GL_Budget1Query setNextYearBudget2(BigDecimal value) { this.NextYearBudget2 = value; return this; } public BigDecimal getNextYearBudget2GreaterThanOrEqualTo() { return NextYearBudget2GreaterThanOrEqualTo; } public GL_Budget1Query setNextYearBudget2GreaterThanOrEqualTo(BigDecimal value) { this.NextYearBudget2GreaterThanOrEqualTo = value; return this; } public BigDecimal getNextYearBudget2GreaterThan() { return NextYearBudget2GreaterThan; } public GL_Budget1Query setNextYearBudget2GreaterThan(BigDecimal value) { this.NextYearBudget2GreaterThan = value; return this; } public BigDecimal getNextYearBudget2LessThan() { return NextYearBudget2LessThan; } public GL_Budget1Query setNextYearBudget2LessThan(BigDecimal value) { this.NextYearBudget2LessThan = value; return this; } public BigDecimal getNextYearBudget2LessThanOrEqualTo() { return NextYearBudget2LessThanOrEqualTo; } public GL_Budget1Query setNextYearBudget2LessThanOrEqualTo(BigDecimal value) { this.NextYearBudget2LessThanOrEqualTo = value; return this; } public BigDecimal getNextYearBudget2NotEqualTo() { return NextYearBudget2NotEqualTo; } public GL_Budget1Query setNextYearBudget2NotEqualTo(BigDecimal value) { this.NextYearBudget2NotEqualTo = value; return this; } public ArrayList getNextYearBudget2Between() { return NextYearBudget2Between; } public GL_Budget1Query setNextYearBudget2Between(ArrayList value) { this.NextYearBudget2Between = value; return this; } public ArrayList getNextYearBudget2In() { return NextYearBudget2In; } public GL_Budget1Query setNextYearBudget2In(ArrayList value) { this.NextYearBudget2In = value; return this; } public BigDecimal getNextYearBudget3() { return NextYearBudget3; } public GL_Budget1Query setNextYearBudget3(BigDecimal value) { this.NextYearBudget3 = value; return this; } public BigDecimal getNextYearBudget3GreaterThanOrEqualTo() { return NextYearBudget3GreaterThanOrEqualTo; } public GL_Budget1Query setNextYearBudget3GreaterThanOrEqualTo(BigDecimal value) { this.NextYearBudget3GreaterThanOrEqualTo = value; return this; } public BigDecimal getNextYearBudget3GreaterThan() { return NextYearBudget3GreaterThan; } public GL_Budget1Query setNextYearBudget3GreaterThan(BigDecimal value) { this.NextYearBudget3GreaterThan = value; return this; } public BigDecimal getNextYearBudget3LessThan() { return NextYearBudget3LessThan; } public GL_Budget1Query setNextYearBudget3LessThan(BigDecimal value) { this.NextYearBudget3LessThan = value; return this; } public BigDecimal getNextYearBudget3LessThanOrEqualTo() { return NextYearBudget3LessThanOrEqualTo; } public GL_Budget1Query setNextYearBudget3LessThanOrEqualTo(BigDecimal value) { this.NextYearBudget3LessThanOrEqualTo = value; return this; } public BigDecimal getNextYearBudget3NotEqualTo() { return NextYearBudget3NotEqualTo; } public GL_Budget1Query setNextYearBudget3NotEqualTo(BigDecimal value) { this.NextYearBudget3NotEqualTo = value; return this; } public ArrayList getNextYearBudget3Between() { return NextYearBudget3Between; } public GL_Budget1Query setNextYearBudget3Between(ArrayList value) { this.NextYearBudget3Between = value; return this; } public ArrayList getNextYearBudget3In() { return NextYearBudget3In; } public GL_Budget1Query setNextYearBudget3In(ArrayList value) { this.NextYearBudget3In = value; return this; } public BigDecimal getNextYearBudget4() { return NextYearBudget4; } public GL_Budget1Query setNextYearBudget4(BigDecimal value) { this.NextYearBudget4 = value; return this; } public BigDecimal getNextYearBudget4GreaterThanOrEqualTo() { return NextYearBudget4GreaterThanOrEqualTo; } public GL_Budget1Query setNextYearBudget4GreaterThanOrEqualTo(BigDecimal value) { this.NextYearBudget4GreaterThanOrEqualTo = value; return this; } public BigDecimal getNextYearBudget4GreaterThan() { return NextYearBudget4GreaterThan; } public GL_Budget1Query setNextYearBudget4GreaterThan(BigDecimal value) { this.NextYearBudget4GreaterThan = value; return this; } public BigDecimal getNextYearBudget4LessThan() { return NextYearBudget4LessThan; } public GL_Budget1Query setNextYearBudget4LessThan(BigDecimal value) { this.NextYearBudget4LessThan = value; return this; } public BigDecimal getNextYearBudget4LessThanOrEqualTo() { return NextYearBudget4LessThanOrEqualTo; } public GL_Budget1Query setNextYearBudget4LessThanOrEqualTo(BigDecimal value) { this.NextYearBudget4LessThanOrEqualTo = value; return this; } public BigDecimal getNextYearBudget4NotEqualTo() { return NextYearBudget4NotEqualTo; } public GL_Budget1Query setNextYearBudget4NotEqualTo(BigDecimal value) { this.NextYearBudget4NotEqualTo = value; return this; } public ArrayList getNextYearBudget4Between() { return NextYearBudget4Between; } public GL_Budget1Query setNextYearBudget4Between(ArrayList value) { this.NextYearBudget4Between = value; return this; } public ArrayList getNextYearBudget4In() { return NextYearBudget4In; } public GL_Budget1Query setNextYearBudget4In(ArrayList value) { this.NextYearBudget4In = value; return this; } public BigDecimal getNextYearBudget5() { return NextYearBudget5; } public GL_Budget1Query setNextYearBudget5(BigDecimal value) { this.NextYearBudget5 = value; return this; } public BigDecimal getNextYearBudget5GreaterThanOrEqualTo() { return NextYearBudget5GreaterThanOrEqualTo; } public GL_Budget1Query setNextYearBudget5GreaterThanOrEqualTo(BigDecimal value) { this.NextYearBudget5GreaterThanOrEqualTo = value; return this; } public BigDecimal getNextYearBudget5GreaterThan() { return NextYearBudget5GreaterThan; } public GL_Budget1Query setNextYearBudget5GreaterThan(BigDecimal value) { this.NextYearBudget5GreaterThan = value; return this; } public BigDecimal getNextYearBudget5LessThan() { return NextYearBudget5LessThan; } public GL_Budget1Query setNextYearBudget5LessThan(BigDecimal value) { this.NextYearBudget5LessThan = value; return this; } public BigDecimal getNextYearBudget5LessThanOrEqualTo() { return NextYearBudget5LessThanOrEqualTo; } public GL_Budget1Query setNextYearBudget5LessThanOrEqualTo(BigDecimal value) { this.NextYearBudget5LessThanOrEqualTo = value; return this; } public BigDecimal getNextYearBudget5NotEqualTo() { return NextYearBudget5NotEqualTo; } public GL_Budget1Query setNextYearBudget5NotEqualTo(BigDecimal value) { this.NextYearBudget5NotEqualTo = value; return this; } public ArrayList getNextYearBudget5Between() { return NextYearBudget5Between; } public GL_Budget1Query setNextYearBudget5Between(ArrayList value) { this.NextYearBudget5Between = value; return this; } public ArrayList getNextYearBudget5In() { return NextYearBudget5In; } public GL_Budget1Query setNextYearBudget5In(ArrayList value) { this.NextYearBudget5In = value; return this; } public BigDecimal getNextYearBudget6() { return NextYearBudget6; } public GL_Budget1Query setNextYearBudget6(BigDecimal value) { this.NextYearBudget6 = value; return this; } public BigDecimal getNextYearBudget6GreaterThanOrEqualTo() { return NextYearBudget6GreaterThanOrEqualTo; } public GL_Budget1Query setNextYearBudget6GreaterThanOrEqualTo(BigDecimal value) { this.NextYearBudget6GreaterThanOrEqualTo = value; return this; } public BigDecimal getNextYearBudget6GreaterThan() { return NextYearBudget6GreaterThan; } public GL_Budget1Query setNextYearBudget6GreaterThan(BigDecimal value) { this.NextYearBudget6GreaterThan = value; return this; } public BigDecimal getNextYearBudget6LessThan() { return NextYearBudget6LessThan; } public GL_Budget1Query setNextYearBudget6LessThan(BigDecimal value) { this.NextYearBudget6LessThan = value; return this; } public BigDecimal getNextYearBudget6LessThanOrEqualTo() { return NextYearBudget6LessThanOrEqualTo; } public GL_Budget1Query setNextYearBudget6LessThanOrEqualTo(BigDecimal value) { this.NextYearBudget6LessThanOrEqualTo = value; return this; } public BigDecimal getNextYearBudget6NotEqualTo() { return NextYearBudget6NotEqualTo; } public GL_Budget1Query setNextYearBudget6NotEqualTo(BigDecimal value) { this.NextYearBudget6NotEqualTo = value; return this; } public ArrayList getNextYearBudget6Between() { return NextYearBudget6Between; } public GL_Budget1Query setNextYearBudget6Between(ArrayList value) { this.NextYearBudget6Between = value; return this; } public ArrayList getNextYearBudget6In() { return NextYearBudget6In; } public GL_Budget1Query setNextYearBudget6In(ArrayList value) { this.NextYearBudget6In = value; return this; } public BigDecimal getNextYearBudget7() { return NextYearBudget7; } public GL_Budget1Query setNextYearBudget7(BigDecimal value) { this.NextYearBudget7 = value; return this; } public BigDecimal getNextYearBudget7GreaterThanOrEqualTo() { return NextYearBudget7GreaterThanOrEqualTo; } public GL_Budget1Query setNextYearBudget7GreaterThanOrEqualTo(BigDecimal value) { this.NextYearBudget7GreaterThanOrEqualTo = value; return this; } public BigDecimal getNextYearBudget7GreaterThan() { return NextYearBudget7GreaterThan; } public GL_Budget1Query setNextYearBudget7GreaterThan(BigDecimal value) { this.NextYearBudget7GreaterThan = value; return this; } public BigDecimal getNextYearBudget7LessThan() { return NextYearBudget7LessThan; } public GL_Budget1Query setNextYearBudget7LessThan(BigDecimal value) { this.NextYearBudget7LessThan = value; return this; } public BigDecimal getNextYearBudget7LessThanOrEqualTo() { return NextYearBudget7LessThanOrEqualTo; } public GL_Budget1Query setNextYearBudget7LessThanOrEqualTo(BigDecimal value) { this.NextYearBudget7LessThanOrEqualTo = value; return this; } public BigDecimal getNextYearBudget7NotEqualTo() { return NextYearBudget7NotEqualTo; } public GL_Budget1Query setNextYearBudget7NotEqualTo(BigDecimal value) { this.NextYearBudget7NotEqualTo = value; return this; } public ArrayList getNextYearBudget7Between() { return NextYearBudget7Between; } public GL_Budget1Query setNextYearBudget7Between(ArrayList value) { this.NextYearBudget7Between = value; return this; } public ArrayList getNextYearBudget7In() { return NextYearBudget7In; } public GL_Budget1Query setNextYearBudget7In(ArrayList value) { this.NextYearBudget7In = value; return this; } public BigDecimal getNextYearBudget8() { return NextYearBudget8; } public GL_Budget1Query setNextYearBudget8(BigDecimal value) { this.NextYearBudget8 = value; return this; } public BigDecimal getNextYearBudget8GreaterThanOrEqualTo() { return NextYearBudget8GreaterThanOrEqualTo; } public GL_Budget1Query setNextYearBudget8GreaterThanOrEqualTo(BigDecimal value) { this.NextYearBudget8GreaterThanOrEqualTo = value; return this; } public BigDecimal getNextYearBudget8GreaterThan() { return NextYearBudget8GreaterThan; } public GL_Budget1Query setNextYearBudget8GreaterThan(BigDecimal value) { this.NextYearBudget8GreaterThan = value; return this; } public BigDecimal getNextYearBudget8LessThan() { return NextYearBudget8LessThan; } public GL_Budget1Query setNextYearBudget8LessThan(BigDecimal value) { this.NextYearBudget8LessThan = value; return this; } public BigDecimal getNextYearBudget8LessThanOrEqualTo() { return NextYearBudget8LessThanOrEqualTo; } public GL_Budget1Query setNextYearBudget8LessThanOrEqualTo(BigDecimal value) { this.NextYearBudget8LessThanOrEqualTo = value; return this; } public BigDecimal getNextYearBudget8NotEqualTo() { return NextYearBudget8NotEqualTo; } public GL_Budget1Query setNextYearBudget8NotEqualTo(BigDecimal value) { this.NextYearBudget8NotEqualTo = value; return this; } public ArrayList getNextYearBudget8Between() { return NextYearBudget8Between; } public GL_Budget1Query setNextYearBudget8Between(ArrayList value) { this.NextYearBudget8Between = value; return this; } public ArrayList getNextYearBudget8In() { return NextYearBudget8In; } public GL_Budget1Query setNextYearBudget8In(ArrayList value) { this.NextYearBudget8In = value; return this; } public BigDecimal getNextYearBudget9() { return NextYearBudget9; } public GL_Budget1Query setNextYearBudget9(BigDecimal value) { this.NextYearBudget9 = value; return this; } public BigDecimal getNextYearBudget9GreaterThanOrEqualTo() { return NextYearBudget9GreaterThanOrEqualTo; } public GL_Budget1Query setNextYearBudget9GreaterThanOrEqualTo(BigDecimal value) { this.NextYearBudget9GreaterThanOrEqualTo = value; return this; } public BigDecimal getNextYearBudget9GreaterThan() { return NextYearBudget9GreaterThan; } public GL_Budget1Query setNextYearBudget9GreaterThan(BigDecimal value) { this.NextYearBudget9GreaterThan = value; return this; } public BigDecimal getNextYearBudget9LessThan() { return NextYearBudget9LessThan; } public GL_Budget1Query setNextYearBudget9LessThan(BigDecimal value) { this.NextYearBudget9LessThan = value; return this; } public BigDecimal getNextYearBudget9LessThanOrEqualTo() { return NextYearBudget9LessThanOrEqualTo; } public GL_Budget1Query setNextYearBudget9LessThanOrEqualTo(BigDecimal value) { this.NextYearBudget9LessThanOrEqualTo = value; return this; } public BigDecimal getNextYearBudget9NotEqualTo() { return NextYearBudget9NotEqualTo; } public GL_Budget1Query setNextYearBudget9NotEqualTo(BigDecimal value) { this.NextYearBudget9NotEqualTo = value; return this; } public ArrayList getNextYearBudget9Between() { return NextYearBudget9Between; } public GL_Budget1Query setNextYearBudget9Between(ArrayList value) { this.NextYearBudget9Between = value; return this; } public ArrayList getNextYearBudget9In() { return NextYearBudget9In; } public GL_Budget1Query setNextYearBudget9In(ArrayList value) { this.NextYearBudget9In = value; return this; } public BigDecimal getNextYearBudget10() { return NextYearBudget10; } public GL_Budget1Query setNextYearBudget10(BigDecimal value) { this.NextYearBudget10 = value; return this; } public BigDecimal getNextYearBudget10GreaterThanOrEqualTo() { return NextYearBudget10GreaterThanOrEqualTo; } public GL_Budget1Query setNextYearBudget10GreaterThanOrEqualTo(BigDecimal value) { this.NextYearBudget10GreaterThanOrEqualTo = value; return this; } public BigDecimal getNextYearBudget10GreaterThan() { return NextYearBudget10GreaterThan; } public GL_Budget1Query setNextYearBudget10GreaterThan(BigDecimal value) { this.NextYearBudget10GreaterThan = value; return this; } public BigDecimal getNextYearBudget10LessThan() { return NextYearBudget10LessThan; } public GL_Budget1Query setNextYearBudget10LessThan(BigDecimal value) { this.NextYearBudget10LessThan = value; return this; } public BigDecimal getNextYearBudget10LessThanOrEqualTo() { return NextYearBudget10LessThanOrEqualTo; } public GL_Budget1Query setNextYearBudget10LessThanOrEqualTo(BigDecimal value) { this.NextYearBudget10LessThanOrEqualTo = value; return this; } public BigDecimal getNextYearBudget10NotEqualTo() { return NextYearBudget10NotEqualTo; } public GL_Budget1Query setNextYearBudget10NotEqualTo(BigDecimal value) { this.NextYearBudget10NotEqualTo = value; return this; } public ArrayList getNextYearBudget10Between() { return NextYearBudget10Between; } public GL_Budget1Query setNextYearBudget10Between(ArrayList value) { this.NextYearBudget10Between = value; return this; } public ArrayList getNextYearBudget10In() { return NextYearBudget10In; } public GL_Budget1Query setNextYearBudget10In(ArrayList value) { this.NextYearBudget10In = value; return this; } public BigDecimal getNextYearBudget11() { return NextYearBudget11; } public GL_Budget1Query setNextYearBudget11(BigDecimal value) { this.NextYearBudget11 = value; return this; } public BigDecimal getNextYearBudget11GreaterThanOrEqualTo() { return NextYearBudget11GreaterThanOrEqualTo; } public GL_Budget1Query setNextYearBudget11GreaterThanOrEqualTo(BigDecimal value) { this.NextYearBudget11GreaterThanOrEqualTo = value; return this; } public BigDecimal getNextYearBudget11GreaterThan() { return NextYearBudget11GreaterThan; } public GL_Budget1Query setNextYearBudget11GreaterThan(BigDecimal value) { this.NextYearBudget11GreaterThan = value; return this; } public BigDecimal getNextYearBudget11LessThan() { return NextYearBudget11LessThan; } public GL_Budget1Query setNextYearBudget11LessThan(BigDecimal value) { this.NextYearBudget11LessThan = value; return this; } public BigDecimal getNextYearBudget11LessThanOrEqualTo() { return NextYearBudget11LessThanOrEqualTo; } public GL_Budget1Query setNextYearBudget11LessThanOrEqualTo(BigDecimal value) { this.NextYearBudget11LessThanOrEqualTo = value; return this; } public BigDecimal getNextYearBudget11NotEqualTo() { return NextYearBudget11NotEqualTo; } public GL_Budget1Query setNextYearBudget11NotEqualTo(BigDecimal value) { this.NextYearBudget11NotEqualTo = value; return this; } public ArrayList getNextYearBudget11Between() { return NextYearBudget11Between; } public GL_Budget1Query setNextYearBudget11Between(ArrayList value) { this.NextYearBudget11Between = value; return this; } public ArrayList getNextYearBudget11In() { return NextYearBudget11In; } public GL_Budget1Query setNextYearBudget11In(ArrayList value) { this.NextYearBudget11In = value; return this; } public BigDecimal getNextYearBudget12() { return NextYearBudget12; } public GL_Budget1Query setNextYearBudget12(BigDecimal value) { this.NextYearBudget12 = value; return this; } public BigDecimal getNextYearBudget12GreaterThanOrEqualTo() { return NextYearBudget12GreaterThanOrEqualTo; } public GL_Budget1Query setNextYearBudget12GreaterThanOrEqualTo(BigDecimal value) { this.NextYearBudget12GreaterThanOrEqualTo = value; return this; } public BigDecimal getNextYearBudget12GreaterThan() { return NextYearBudget12GreaterThan; } public GL_Budget1Query setNextYearBudget12GreaterThan(BigDecimal value) { this.NextYearBudget12GreaterThan = value; return this; } public BigDecimal getNextYearBudget12LessThan() { return NextYearBudget12LessThan; } public GL_Budget1Query setNextYearBudget12LessThan(BigDecimal value) { this.NextYearBudget12LessThan = value; return this; } public BigDecimal getNextYearBudget12LessThanOrEqualTo() { return NextYearBudget12LessThanOrEqualTo; } public GL_Budget1Query setNextYearBudget12LessThanOrEqualTo(BigDecimal value) { this.NextYearBudget12LessThanOrEqualTo = value; return this; } public BigDecimal getNextYearBudget12NotEqualTo() { return NextYearBudget12NotEqualTo; } public GL_Budget1Query setNextYearBudget12NotEqualTo(BigDecimal value) { this.NextYearBudget12NotEqualTo = value; return this; } public ArrayList getNextYearBudget12Between() { return NextYearBudget12Between; } public GL_Budget1Query setNextYearBudget12Between(ArrayList value) { this.NextYearBudget12Between = value; return this; } public ArrayList getNextYearBudget12In() { return NextYearBudget12In; } public GL_Budget1Query setNextYearBudget12In(ArrayList value) { this.NextYearBudget12In = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class GL_Budget2Query extends QueryDb implements IReturn> { public String GLBudgetID = null; public String GLBudgetIDStartsWith = null; public String GLBudgetIDEndsWith = null; public String GLBudgetIDContains = null; public String GLBudgetIDLike = null; public ArrayList GLBudgetIDBetween = null; public ArrayList GLBudgetIDIn = null; public String GLLedgerID = null; public String GLLedgerIDStartsWith = null; public String GLLedgerIDEndsWith = null; public String GLLedgerIDContains = null; public String GLLedgerIDLike = null; public ArrayList GLLedgerIDBetween = null; public ArrayList GLLedgerIDIn = null; public BigDecimal LastYearBudget1 = null; public BigDecimal LastYearBudget1GreaterThanOrEqualTo = null; public BigDecimal LastYearBudget1GreaterThan = null; public BigDecimal LastYearBudget1LessThan = null; public BigDecimal LastYearBudget1LessThanOrEqualTo = null; public BigDecimal LastYearBudget1NotEqualTo = null; public ArrayList LastYearBudget1Between = null; public ArrayList LastYearBudget1In = null; public BigDecimal LastYearBudget2 = null; public BigDecimal LastYearBudget2GreaterThanOrEqualTo = null; public BigDecimal LastYearBudget2GreaterThan = null; public BigDecimal LastYearBudget2LessThan = null; public BigDecimal LastYearBudget2LessThanOrEqualTo = null; public BigDecimal LastYearBudget2NotEqualTo = null; public ArrayList LastYearBudget2Between = null; public ArrayList LastYearBudget2In = null; public BigDecimal LastYearBudget3 = null; public BigDecimal LastYearBudget3GreaterThanOrEqualTo = null; public BigDecimal LastYearBudget3GreaterThan = null; public BigDecimal LastYearBudget3LessThan = null; public BigDecimal LastYearBudget3LessThanOrEqualTo = null; public BigDecimal LastYearBudget3NotEqualTo = null; public ArrayList LastYearBudget3Between = null; public ArrayList LastYearBudget3In = null; public BigDecimal LastYearBudget4 = null; public BigDecimal LastYearBudget4GreaterThanOrEqualTo = null; public BigDecimal LastYearBudget4GreaterThan = null; public BigDecimal LastYearBudget4LessThan = null; public BigDecimal LastYearBudget4LessThanOrEqualTo = null; public BigDecimal LastYearBudget4NotEqualTo = null; public ArrayList LastYearBudget4Between = null; public ArrayList LastYearBudget4In = null; public BigDecimal LastYearBudget5 = null; public BigDecimal LastYearBudget5GreaterThanOrEqualTo = null; public BigDecimal LastYearBudget5GreaterThan = null; public BigDecimal LastYearBudget5LessThan = null; public BigDecimal LastYearBudget5LessThanOrEqualTo = null; public BigDecimal LastYearBudget5NotEqualTo = null; public ArrayList LastYearBudget5Between = null; public ArrayList LastYearBudget5In = null; public BigDecimal LastYearBudget6 = null; public BigDecimal LastYearBudget6GreaterThanOrEqualTo = null; public BigDecimal LastYearBudget6GreaterThan = null; public BigDecimal LastYearBudget6LessThan = null; public BigDecimal LastYearBudget6LessThanOrEqualTo = null; public BigDecimal LastYearBudget6NotEqualTo = null; public ArrayList LastYearBudget6Between = null; public ArrayList LastYearBudget6In = null; public BigDecimal LastYearBudget7 = null; public BigDecimal LastYearBudget7GreaterThanOrEqualTo = null; public BigDecimal LastYearBudget7GreaterThan = null; public BigDecimal LastYearBudget7LessThan = null; public BigDecimal LastYearBudget7LessThanOrEqualTo = null; public BigDecimal LastYearBudget7NotEqualTo = null; public ArrayList LastYearBudget7Between = null; public ArrayList LastYearBudget7In = null; public BigDecimal LastYearBudget8 = null; public BigDecimal LastYearBudget8GreaterThanOrEqualTo = null; public BigDecimal LastYearBudget8GreaterThan = null; public BigDecimal LastYearBudget8LessThan = null; public BigDecimal LastYearBudget8LessThanOrEqualTo = null; public BigDecimal LastYearBudget8NotEqualTo = null; public ArrayList LastYearBudget8Between = null; public ArrayList LastYearBudget8In = null; public BigDecimal LastYearBudget9 = null; public BigDecimal LastYearBudget9GreaterThanOrEqualTo = null; public BigDecimal LastYearBudget9GreaterThan = null; public BigDecimal LastYearBudget9LessThan = null; public BigDecimal LastYearBudget9LessThanOrEqualTo = null; public BigDecimal LastYearBudget9NotEqualTo = null; public ArrayList LastYearBudget9Between = null; public ArrayList LastYearBudget9In = null; public BigDecimal LastYearBudget10 = null; public BigDecimal LastYearBudget10GreaterThanOrEqualTo = null; public BigDecimal LastYearBudget10GreaterThan = null; public BigDecimal LastYearBudget10LessThan = null; public BigDecimal LastYearBudget10LessThanOrEqualTo = null; public BigDecimal LastYearBudget10NotEqualTo = null; public ArrayList LastYearBudget10Between = null; public ArrayList LastYearBudget10In = null; public BigDecimal LastYearBudget11 = null; public BigDecimal LastYearBudget11GreaterThanOrEqualTo = null; public BigDecimal LastYearBudget11GreaterThan = null; public BigDecimal LastYearBudget11LessThan = null; public BigDecimal LastYearBudget11LessThanOrEqualTo = null; public BigDecimal LastYearBudget11NotEqualTo = null; public ArrayList LastYearBudget11Between = null; public ArrayList LastYearBudget11In = null; public BigDecimal LastYearBudget12 = null; public BigDecimal LastYearBudget12GreaterThanOrEqualTo = null; public BigDecimal LastYearBudget12GreaterThan = null; public BigDecimal LastYearBudget12LessThan = null; public BigDecimal LastYearBudget12LessThanOrEqualTo = null; public BigDecimal LastYearBudget12NotEqualTo = null; public ArrayList LastYearBudget12Between = null; public ArrayList LastYearBudget12In = null; public BigDecimal CurrYearBudget1 = null; public BigDecimal CurrYearBudget1GreaterThanOrEqualTo = null; public BigDecimal CurrYearBudget1GreaterThan = null; public BigDecimal CurrYearBudget1LessThan = null; public BigDecimal CurrYearBudget1LessThanOrEqualTo = null; public BigDecimal CurrYearBudget1NotEqualTo = null; public ArrayList CurrYearBudget1Between = null; public ArrayList CurrYearBudget1In = null; public BigDecimal CurrYearBudget2 = null; public BigDecimal CurrYearBudget2GreaterThanOrEqualTo = null; public BigDecimal CurrYearBudget2GreaterThan = null; public BigDecimal CurrYearBudget2LessThan = null; public BigDecimal CurrYearBudget2LessThanOrEqualTo = null; public BigDecimal CurrYearBudget2NotEqualTo = null; public ArrayList CurrYearBudget2Between = null; public ArrayList CurrYearBudget2In = null; public BigDecimal CurrYearBudget3 = null; public BigDecimal CurrYearBudget3GreaterThanOrEqualTo = null; public BigDecimal CurrYearBudget3GreaterThan = null; public BigDecimal CurrYearBudget3LessThan = null; public BigDecimal CurrYearBudget3LessThanOrEqualTo = null; public BigDecimal CurrYearBudget3NotEqualTo = null; public ArrayList CurrYearBudget3Between = null; public ArrayList CurrYearBudget3In = null; public BigDecimal CurrYearBudget4 = null; public BigDecimal CurrYearBudget4GreaterThanOrEqualTo = null; public BigDecimal CurrYearBudget4GreaterThan = null; public BigDecimal CurrYearBudget4LessThan = null; public BigDecimal CurrYearBudget4LessThanOrEqualTo = null; public BigDecimal CurrYearBudget4NotEqualTo = null; public ArrayList CurrYearBudget4Between = null; public ArrayList CurrYearBudget4In = null; public BigDecimal CurrYearBudget5 = null; public BigDecimal CurrYearBudget5GreaterThanOrEqualTo = null; public BigDecimal CurrYearBudget5GreaterThan = null; public BigDecimal CurrYearBudget5LessThan = null; public BigDecimal CurrYearBudget5LessThanOrEqualTo = null; public BigDecimal CurrYearBudget5NotEqualTo = null; public ArrayList CurrYearBudget5Between = null; public ArrayList CurrYearBudget5In = null; public BigDecimal CurrYearBudget6 = null; public BigDecimal CurrYearBudget6GreaterThanOrEqualTo = null; public BigDecimal CurrYearBudget6GreaterThan = null; public BigDecimal CurrYearBudget6LessThan = null; public BigDecimal CurrYearBudget6LessThanOrEqualTo = null; public BigDecimal CurrYearBudget6NotEqualTo = null; public ArrayList CurrYearBudget6Between = null; public ArrayList CurrYearBudget6In = null; public BigDecimal CurrYearBudget7 = null; public BigDecimal CurrYearBudget7GreaterThanOrEqualTo = null; public BigDecimal CurrYearBudget7GreaterThan = null; public BigDecimal CurrYearBudget7LessThan = null; public BigDecimal CurrYearBudget7LessThanOrEqualTo = null; public BigDecimal CurrYearBudget7NotEqualTo = null; public ArrayList CurrYearBudget7Between = null; public ArrayList CurrYearBudget7In = null; public BigDecimal CurrYearBudget8 = null; public BigDecimal CurrYearBudget8GreaterThanOrEqualTo = null; public BigDecimal CurrYearBudget8GreaterThan = null; public BigDecimal CurrYearBudget8LessThan = null; public BigDecimal CurrYearBudget8LessThanOrEqualTo = null; public BigDecimal CurrYearBudget8NotEqualTo = null; public ArrayList CurrYearBudget8Between = null; public ArrayList CurrYearBudget8In = null; public BigDecimal CurrYearBudget9 = null; public BigDecimal CurrYearBudget9GreaterThanOrEqualTo = null; public BigDecimal CurrYearBudget9GreaterThan = null; public BigDecimal CurrYearBudget9LessThan = null; public BigDecimal CurrYearBudget9LessThanOrEqualTo = null; public BigDecimal CurrYearBudget9NotEqualTo = null; public ArrayList CurrYearBudget9Between = null; public ArrayList CurrYearBudget9In = null; public BigDecimal CurrYearBudget10 = null; public BigDecimal CurrYearBudget10GreaterThanOrEqualTo = null; public BigDecimal CurrYearBudget10GreaterThan = null; public BigDecimal CurrYearBudget10LessThan = null; public BigDecimal CurrYearBudget10LessThanOrEqualTo = null; public BigDecimal CurrYearBudget10NotEqualTo = null; public ArrayList CurrYearBudget10Between = null; public ArrayList CurrYearBudget10In = null; public BigDecimal CurrYearBudget11 = null; public BigDecimal CurrYearBudget11GreaterThanOrEqualTo = null; public BigDecimal CurrYearBudget11GreaterThan = null; public BigDecimal CurrYearBudget11LessThan = null; public BigDecimal CurrYearBudget11LessThanOrEqualTo = null; public BigDecimal CurrYearBudget11NotEqualTo = null; public ArrayList CurrYearBudget11Between = null; public ArrayList CurrYearBudget11In = null; public BigDecimal CurrYearBudget12 = null; public BigDecimal CurrYearBudget12GreaterThanOrEqualTo = null; public BigDecimal CurrYearBudget12GreaterThan = null; public BigDecimal CurrYearBudget12LessThan = null; public BigDecimal CurrYearBudget12LessThanOrEqualTo = null; public BigDecimal CurrYearBudget12NotEqualTo = null; public ArrayList CurrYearBudget12Between = null; public ArrayList CurrYearBudget12In = null; public BigDecimal NextYearBudget1 = null; public BigDecimal NextYearBudget1GreaterThanOrEqualTo = null; public BigDecimal NextYearBudget1GreaterThan = null; public BigDecimal NextYearBudget1LessThan = null; public BigDecimal NextYearBudget1LessThanOrEqualTo = null; public BigDecimal NextYearBudget1NotEqualTo = null; public ArrayList NextYearBudget1Between = null; public ArrayList NextYearBudget1In = null; public BigDecimal NextYearBudget2 = null; public BigDecimal NextYearBudget2GreaterThanOrEqualTo = null; public BigDecimal NextYearBudget2GreaterThan = null; public BigDecimal NextYearBudget2LessThan = null; public BigDecimal NextYearBudget2LessThanOrEqualTo = null; public BigDecimal NextYearBudget2NotEqualTo = null; public ArrayList NextYearBudget2Between = null; public ArrayList NextYearBudget2In = null; public BigDecimal NextYearBudget3 = null; public BigDecimal NextYearBudget3GreaterThanOrEqualTo = null; public BigDecimal NextYearBudget3GreaterThan = null; public BigDecimal NextYearBudget3LessThan = null; public BigDecimal NextYearBudget3LessThanOrEqualTo = null; public BigDecimal NextYearBudget3NotEqualTo = null; public ArrayList NextYearBudget3Between = null; public ArrayList NextYearBudget3In = null; public BigDecimal NextYearBudget4 = null; public BigDecimal NextYearBudget4GreaterThanOrEqualTo = null; public BigDecimal NextYearBudget4GreaterThan = null; public BigDecimal NextYearBudget4LessThan = null; public BigDecimal NextYearBudget4LessThanOrEqualTo = null; public BigDecimal NextYearBudget4NotEqualTo = null; public ArrayList NextYearBudget4Between = null; public ArrayList NextYearBudget4In = null; public BigDecimal NextYearBudget5 = null; public BigDecimal NextYearBudget5GreaterThanOrEqualTo = null; public BigDecimal NextYearBudget5GreaterThan = null; public BigDecimal NextYearBudget5LessThan = null; public BigDecimal NextYearBudget5LessThanOrEqualTo = null; public BigDecimal NextYearBudget5NotEqualTo = null; public ArrayList NextYearBudget5Between = null; public ArrayList NextYearBudget5In = null; public BigDecimal NextYearBudget6 = null; public BigDecimal NextYearBudget6GreaterThanOrEqualTo = null; public BigDecimal NextYearBudget6GreaterThan = null; public BigDecimal NextYearBudget6LessThan = null; public BigDecimal NextYearBudget6LessThanOrEqualTo = null; public BigDecimal NextYearBudget6NotEqualTo = null; public ArrayList NextYearBudget6Between = null; public ArrayList NextYearBudget6In = null; public BigDecimal NextYearBudget7 = null; public BigDecimal NextYearBudget7GreaterThanOrEqualTo = null; public BigDecimal NextYearBudget7GreaterThan = null; public BigDecimal NextYearBudget7LessThan = null; public BigDecimal NextYearBudget7LessThanOrEqualTo = null; public BigDecimal NextYearBudget7NotEqualTo = null; public ArrayList NextYearBudget7Between = null; public ArrayList NextYearBudget7In = null; public BigDecimal NextYearBudget8 = null; public BigDecimal NextYearBudget8GreaterThanOrEqualTo = null; public BigDecimal NextYearBudget8GreaterThan = null; public BigDecimal NextYearBudget8LessThan = null; public BigDecimal NextYearBudget8LessThanOrEqualTo = null; public BigDecimal NextYearBudget8NotEqualTo = null; public ArrayList NextYearBudget8Between = null; public ArrayList NextYearBudget8In = null; public BigDecimal NextYearBudget9 = null; public BigDecimal NextYearBudget9GreaterThanOrEqualTo = null; public BigDecimal NextYearBudget9GreaterThan = null; public BigDecimal NextYearBudget9LessThan = null; public BigDecimal NextYearBudget9LessThanOrEqualTo = null; public BigDecimal NextYearBudget9NotEqualTo = null; public ArrayList NextYearBudget9Between = null; public ArrayList NextYearBudget9In = null; public BigDecimal NextYearBudget10 = null; public BigDecimal NextYearBudget10GreaterThanOrEqualTo = null; public BigDecimal NextYearBudget10GreaterThan = null; public BigDecimal NextYearBudget10LessThan = null; public BigDecimal NextYearBudget10LessThanOrEqualTo = null; public BigDecimal NextYearBudget10NotEqualTo = null; public ArrayList NextYearBudget10Between = null; public ArrayList NextYearBudget10In = null; public BigDecimal NextYearBudget11 = null; public BigDecimal NextYearBudget11GreaterThanOrEqualTo = null; public BigDecimal NextYearBudget11GreaterThan = null; public BigDecimal NextYearBudget11LessThan = null; public BigDecimal NextYearBudget11LessThanOrEqualTo = null; public BigDecimal NextYearBudget11NotEqualTo = null; public ArrayList NextYearBudget11Between = null; public ArrayList NextYearBudget11In = null; public BigDecimal NextYearBudget12 = null; public BigDecimal NextYearBudget12GreaterThanOrEqualTo = null; public BigDecimal NextYearBudget12GreaterThan = null; public BigDecimal NextYearBudget12LessThan = null; public BigDecimal NextYearBudget12LessThanOrEqualTo = null; public BigDecimal NextYearBudget12NotEqualTo = null; public ArrayList NextYearBudget12Between = null; public ArrayList NextYearBudget12In = null; public String getGlBudgetID() { return GLBudgetID; } public GL_Budget2Query setGlBudgetID(String value) { this.GLBudgetID = value; return this; } public String getGlBudgetIDStartsWith() { return GLBudgetIDStartsWith; } public GL_Budget2Query setGlBudgetIDStartsWith(String value) { this.GLBudgetIDStartsWith = value; return this; } public String getGlBudgetIDEndsWith() { return GLBudgetIDEndsWith; } public GL_Budget2Query setGlBudgetIDEndsWith(String value) { this.GLBudgetIDEndsWith = value; return this; } public String getGlBudgetIDContains() { return GLBudgetIDContains; } public GL_Budget2Query setGlBudgetIDContains(String value) { this.GLBudgetIDContains = value; return this; } public String getGlBudgetIDLike() { return GLBudgetIDLike; } public GL_Budget2Query setGlBudgetIDLike(String value) { this.GLBudgetIDLike = value; return this; } public ArrayList getGlBudgetIDBetween() { return GLBudgetIDBetween; } public GL_Budget2Query setGlBudgetIDBetween(ArrayList value) { this.GLBudgetIDBetween = value; return this; } public ArrayList getGlBudgetIDIn() { return GLBudgetIDIn; } public GL_Budget2Query setGlBudgetIDIn(ArrayList value) { this.GLBudgetIDIn = value; return this; } public String getGlLedgerID() { return GLLedgerID; } public GL_Budget2Query setGlLedgerID(String value) { this.GLLedgerID = value; return this; } public String getGlLedgerIDStartsWith() { return GLLedgerIDStartsWith; } public GL_Budget2Query setGlLedgerIDStartsWith(String value) { this.GLLedgerIDStartsWith = value; return this; } public String getGlLedgerIDEndsWith() { return GLLedgerIDEndsWith; } public GL_Budget2Query setGlLedgerIDEndsWith(String value) { this.GLLedgerIDEndsWith = value; return this; } public String getGlLedgerIDContains() { return GLLedgerIDContains; } public GL_Budget2Query setGlLedgerIDContains(String value) { this.GLLedgerIDContains = value; return this; } public String getGlLedgerIDLike() { return GLLedgerIDLike; } public GL_Budget2Query setGlLedgerIDLike(String value) { this.GLLedgerIDLike = value; return this; } public ArrayList getGlLedgerIDBetween() { return GLLedgerIDBetween; } public GL_Budget2Query setGlLedgerIDBetween(ArrayList value) { this.GLLedgerIDBetween = value; return this; } public ArrayList getGlLedgerIDIn() { return GLLedgerIDIn; } public GL_Budget2Query setGlLedgerIDIn(ArrayList value) { this.GLLedgerIDIn = value; return this; } public BigDecimal getLastYearBudget1() { return LastYearBudget1; } public GL_Budget2Query setLastYearBudget1(BigDecimal value) { this.LastYearBudget1 = value; return this; } public BigDecimal getLastYearBudget1GreaterThanOrEqualTo() { return LastYearBudget1GreaterThanOrEqualTo; } public GL_Budget2Query setLastYearBudget1GreaterThanOrEqualTo(BigDecimal value) { this.LastYearBudget1GreaterThanOrEqualTo = value; return this; } public BigDecimal getLastYearBudget1GreaterThan() { return LastYearBudget1GreaterThan; } public GL_Budget2Query setLastYearBudget1GreaterThan(BigDecimal value) { this.LastYearBudget1GreaterThan = value; return this; } public BigDecimal getLastYearBudget1LessThan() { return LastYearBudget1LessThan; } public GL_Budget2Query setLastYearBudget1LessThan(BigDecimal value) { this.LastYearBudget1LessThan = value; return this; } public BigDecimal getLastYearBudget1LessThanOrEqualTo() { return LastYearBudget1LessThanOrEqualTo; } public GL_Budget2Query setLastYearBudget1LessThanOrEqualTo(BigDecimal value) { this.LastYearBudget1LessThanOrEqualTo = value; return this; } public BigDecimal getLastYearBudget1NotEqualTo() { return LastYearBudget1NotEqualTo; } public GL_Budget2Query setLastYearBudget1NotEqualTo(BigDecimal value) { this.LastYearBudget1NotEqualTo = value; return this; } public ArrayList getLastYearBudget1Between() { return LastYearBudget1Between; } public GL_Budget2Query setLastYearBudget1Between(ArrayList value) { this.LastYearBudget1Between = value; return this; } public ArrayList getLastYearBudget1In() { return LastYearBudget1In; } public GL_Budget2Query setLastYearBudget1In(ArrayList value) { this.LastYearBudget1In = value; return this; } public BigDecimal getLastYearBudget2() { return LastYearBudget2; } public GL_Budget2Query setLastYearBudget2(BigDecimal value) { this.LastYearBudget2 = value; return this; } public BigDecimal getLastYearBudget2GreaterThanOrEqualTo() { return LastYearBudget2GreaterThanOrEqualTo; } public GL_Budget2Query setLastYearBudget2GreaterThanOrEqualTo(BigDecimal value) { this.LastYearBudget2GreaterThanOrEqualTo = value; return this; } public BigDecimal getLastYearBudget2GreaterThan() { return LastYearBudget2GreaterThan; } public GL_Budget2Query setLastYearBudget2GreaterThan(BigDecimal value) { this.LastYearBudget2GreaterThan = value; return this; } public BigDecimal getLastYearBudget2LessThan() { return LastYearBudget2LessThan; } public GL_Budget2Query setLastYearBudget2LessThan(BigDecimal value) { this.LastYearBudget2LessThan = value; return this; } public BigDecimal getLastYearBudget2LessThanOrEqualTo() { return LastYearBudget2LessThanOrEqualTo; } public GL_Budget2Query setLastYearBudget2LessThanOrEqualTo(BigDecimal value) { this.LastYearBudget2LessThanOrEqualTo = value; return this; } public BigDecimal getLastYearBudget2NotEqualTo() { return LastYearBudget2NotEqualTo; } public GL_Budget2Query setLastYearBudget2NotEqualTo(BigDecimal value) { this.LastYearBudget2NotEqualTo = value; return this; } public ArrayList getLastYearBudget2Between() { return LastYearBudget2Between; } public GL_Budget2Query setLastYearBudget2Between(ArrayList value) { this.LastYearBudget2Between = value; return this; } public ArrayList getLastYearBudget2In() { return LastYearBudget2In; } public GL_Budget2Query setLastYearBudget2In(ArrayList value) { this.LastYearBudget2In = value; return this; } public BigDecimal getLastYearBudget3() { return LastYearBudget3; } public GL_Budget2Query setLastYearBudget3(BigDecimal value) { this.LastYearBudget3 = value; return this; } public BigDecimal getLastYearBudget3GreaterThanOrEqualTo() { return LastYearBudget3GreaterThanOrEqualTo; } public GL_Budget2Query setLastYearBudget3GreaterThanOrEqualTo(BigDecimal value) { this.LastYearBudget3GreaterThanOrEqualTo = value; return this; } public BigDecimal getLastYearBudget3GreaterThan() { return LastYearBudget3GreaterThan; } public GL_Budget2Query setLastYearBudget3GreaterThan(BigDecimal value) { this.LastYearBudget3GreaterThan = value; return this; } public BigDecimal getLastYearBudget3LessThan() { return LastYearBudget3LessThan; } public GL_Budget2Query setLastYearBudget3LessThan(BigDecimal value) { this.LastYearBudget3LessThan = value; return this; } public BigDecimal getLastYearBudget3LessThanOrEqualTo() { return LastYearBudget3LessThanOrEqualTo; } public GL_Budget2Query setLastYearBudget3LessThanOrEqualTo(BigDecimal value) { this.LastYearBudget3LessThanOrEqualTo = value; return this; } public BigDecimal getLastYearBudget3NotEqualTo() { return LastYearBudget3NotEqualTo; } public GL_Budget2Query setLastYearBudget3NotEqualTo(BigDecimal value) { this.LastYearBudget3NotEqualTo = value; return this; } public ArrayList getLastYearBudget3Between() { return LastYearBudget3Between; } public GL_Budget2Query setLastYearBudget3Between(ArrayList value) { this.LastYearBudget3Between = value; return this; } public ArrayList getLastYearBudget3In() { return LastYearBudget3In; } public GL_Budget2Query setLastYearBudget3In(ArrayList value) { this.LastYearBudget3In = value; return this; } public BigDecimal getLastYearBudget4() { return LastYearBudget4; } public GL_Budget2Query setLastYearBudget4(BigDecimal value) { this.LastYearBudget4 = value; return this; } public BigDecimal getLastYearBudget4GreaterThanOrEqualTo() { return LastYearBudget4GreaterThanOrEqualTo; } public GL_Budget2Query setLastYearBudget4GreaterThanOrEqualTo(BigDecimal value) { this.LastYearBudget4GreaterThanOrEqualTo = value; return this; } public BigDecimal getLastYearBudget4GreaterThan() { return LastYearBudget4GreaterThan; } public GL_Budget2Query setLastYearBudget4GreaterThan(BigDecimal value) { this.LastYearBudget4GreaterThan = value; return this; } public BigDecimal getLastYearBudget4LessThan() { return LastYearBudget4LessThan; } public GL_Budget2Query setLastYearBudget4LessThan(BigDecimal value) { this.LastYearBudget4LessThan = value; return this; } public BigDecimal getLastYearBudget4LessThanOrEqualTo() { return LastYearBudget4LessThanOrEqualTo; } public GL_Budget2Query setLastYearBudget4LessThanOrEqualTo(BigDecimal value) { this.LastYearBudget4LessThanOrEqualTo = value; return this; } public BigDecimal getLastYearBudget4NotEqualTo() { return LastYearBudget4NotEqualTo; } public GL_Budget2Query setLastYearBudget4NotEqualTo(BigDecimal value) { this.LastYearBudget4NotEqualTo = value; return this; } public ArrayList getLastYearBudget4Between() { return LastYearBudget4Between; } public GL_Budget2Query setLastYearBudget4Between(ArrayList value) { this.LastYearBudget4Between = value; return this; } public ArrayList getLastYearBudget4In() { return LastYearBudget4In; } public GL_Budget2Query setLastYearBudget4In(ArrayList value) { this.LastYearBudget4In = value; return this; } public BigDecimal getLastYearBudget5() { return LastYearBudget5; } public GL_Budget2Query setLastYearBudget5(BigDecimal value) { this.LastYearBudget5 = value; return this; } public BigDecimal getLastYearBudget5GreaterThanOrEqualTo() { return LastYearBudget5GreaterThanOrEqualTo; } public GL_Budget2Query setLastYearBudget5GreaterThanOrEqualTo(BigDecimal value) { this.LastYearBudget5GreaterThanOrEqualTo = value; return this; } public BigDecimal getLastYearBudget5GreaterThan() { return LastYearBudget5GreaterThan; } public GL_Budget2Query setLastYearBudget5GreaterThan(BigDecimal value) { this.LastYearBudget5GreaterThan = value; return this; } public BigDecimal getLastYearBudget5LessThan() { return LastYearBudget5LessThan; } public GL_Budget2Query setLastYearBudget5LessThan(BigDecimal value) { this.LastYearBudget5LessThan = value; return this; } public BigDecimal getLastYearBudget5LessThanOrEqualTo() { return LastYearBudget5LessThanOrEqualTo; } public GL_Budget2Query setLastYearBudget5LessThanOrEqualTo(BigDecimal value) { this.LastYearBudget5LessThanOrEqualTo = value; return this; } public BigDecimal getLastYearBudget5NotEqualTo() { return LastYearBudget5NotEqualTo; } public GL_Budget2Query setLastYearBudget5NotEqualTo(BigDecimal value) { this.LastYearBudget5NotEqualTo = value; return this; } public ArrayList getLastYearBudget5Between() { return LastYearBudget5Between; } public GL_Budget2Query setLastYearBudget5Between(ArrayList value) { this.LastYearBudget5Between = value; return this; } public ArrayList getLastYearBudget5In() { return LastYearBudget5In; } public GL_Budget2Query setLastYearBudget5In(ArrayList value) { this.LastYearBudget5In = value; return this; } public BigDecimal getLastYearBudget6() { return LastYearBudget6; } public GL_Budget2Query setLastYearBudget6(BigDecimal value) { this.LastYearBudget6 = value; return this; } public BigDecimal getLastYearBudget6GreaterThanOrEqualTo() { return LastYearBudget6GreaterThanOrEqualTo; } public GL_Budget2Query setLastYearBudget6GreaterThanOrEqualTo(BigDecimal value) { this.LastYearBudget6GreaterThanOrEqualTo = value; return this; } public BigDecimal getLastYearBudget6GreaterThan() { return LastYearBudget6GreaterThan; } public GL_Budget2Query setLastYearBudget6GreaterThan(BigDecimal value) { this.LastYearBudget6GreaterThan = value; return this; } public BigDecimal getLastYearBudget6LessThan() { return LastYearBudget6LessThan; } public GL_Budget2Query setLastYearBudget6LessThan(BigDecimal value) { this.LastYearBudget6LessThan = value; return this; } public BigDecimal getLastYearBudget6LessThanOrEqualTo() { return LastYearBudget6LessThanOrEqualTo; } public GL_Budget2Query setLastYearBudget6LessThanOrEqualTo(BigDecimal value) { this.LastYearBudget6LessThanOrEqualTo = value; return this; } public BigDecimal getLastYearBudget6NotEqualTo() { return LastYearBudget6NotEqualTo; } public GL_Budget2Query setLastYearBudget6NotEqualTo(BigDecimal value) { this.LastYearBudget6NotEqualTo = value; return this; } public ArrayList getLastYearBudget6Between() { return LastYearBudget6Between; } public GL_Budget2Query setLastYearBudget6Between(ArrayList value) { this.LastYearBudget6Between = value; return this; } public ArrayList getLastYearBudget6In() { return LastYearBudget6In; } public GL_Budget2Query setLastYearBudget6In(ArrayList value) { this.LastYearBudget6In = value; return this; } public BigDecimal getLastYearBudget7() { return LastYearBudget7; } public GL_Budget2Query setLastYearBudget7(BigDecimal value) { this.LastYearBudget7 = value; return this; } public BigDecimal getLastYearBudget7GreaterThanOrEqualTo() { return LastYearBudget7GreaterThanOrEqualTo; } public GL_Budget2Query setLastYearBudget7GreaterThanOrEqualTo(BigDecimal value) { this.LastYearBudget7GreaterThanOrEqualTo = value; return this; } public BigDecimal getLastYearBudget7GreaterThan() { return LastYearBudget7GreaterThan; } public GL_Budget2Query setLastYearBudget7GreaterThan(BigDecimal value) { this.LastYearBudget7GreaterThan = value; return this; } public BigDecimal getLastYearBudget7LessThan() { return LastYearBudget7LessThan; } public GL_Budget2Query setLastYearBudget7LessThan(BigDecimal value) { this.LastYearBudget7LessThan = value; return this; } public BigDecimal getLastYearBudget7LessThanOrEqualTo() { return LastYearBudget7LessThanOrEqualTo; } public GL_Budget2Query setLastYearBudget7LessThanOrEqualTo(BigDecimal value) { this.LastYearBudget7LessThanOrEqualTo = value; return this; } public BigDecimal getLastYearBudget7NotEqualTo() { return LastYearBudget7NotEqualTo; } public GL_Budget2Query setLastYearBudget7NotEqualTo(BigDecimal value) { this.LastYearBudget7NotEqualTo = value; return this; } public ArrayList getLastYearBudget7Between() { return LastYearBudget7Between; } public GL_Budget2Query setLastYearBudget7Between(ArrayList value) { this.LastYearBudget7Between = value; return this; } public ArrayList getLastYearBudget7In() { return LastYearBudget7In; } public GL_Budget2Query setLastYearBudget7In(ArrayList value) { this.LastYearBudget7In = value; return this; } public BigDecimal getLastYearBudget8() { return LastYearBudget8; } public GL_Budget2Query setLastYearBudget8(BigDecimal value) { this.LastYearBudget8 = value; return this; } public BigDecimal getLastYearBudget8GreaterThanOrEqualTo() { return LastYearBudget8GreaterThanOrEqualTo; } public GL_Budget2Query setLastYearBudget8GreaterThanOrEqualTo(BigDecimal value) { this.LastYearBudget8GreaterThanOrEqualTo = value; return this; } public BigDecimal getLastYearBudget8GreaterThan() { return LastYearBudget8GreaterThan; } public GL_Budget2Query setLastYearBudget8GreaterThan(BigDecimal value) { this.LastYearBudget8GreaterThan = value; return this; } public BigDecimal getLastYearBudget8LessThan() { return LastYearBudget8LessThan; } public GL_Budget2Query setLastYearBudget8LessThan(BigDecimal value) { this.LastYearBudget8LessThan = value; return this; } public BigDecimal getLastYearBudget8LessThanOrEqualTo() { return LastYearBudget8LessThanOrEqualTo; } public GL_Budget2Query setLastYearBudget8LessThanOrEqualTo(BigDecimal value) { this.LastYearBudget8LessThanOrEqualTo = value; return this; } public BigDecimal getLastYearBudget8NotEqualTo() { return LastYearBudget8NotEqualTo; } public GL_Budget2Query setLastYearBudget8NotEqualTo(BigDecimal value) { this.LastYearBudget8NotEqualTo = value; return this; } public ArrayList getLastYearBudget8Between() { return LastYearBudget8Between; } public GL_Budget2Query setLastYearBudget8Between(ArrayList value) { this.LastYearBudget8Between = value; return this; } public ArrayList getLastYearBudget8In() { return LastYearBudget8In; } public GL_Budget2Query setLastYearBudget8In(ArrayList value) { this.LastYearBudget8In = value; return this; } public BigDecimal getLastYearBudget9() { return LastYearBudget9; } public GL_Budget2Query setLastYearBudget9(BigDecimal value) { this.LastYearBudget9 = value; return this; } public BigDecimal getLastYearBudget9GreaterThanOrEqualTo() { return LastYearBudget9GreaterThanOrEqualTo; } public GL_Budget2Query setLastYearBudget9GreaterThanOrEqualTo(BigDecimal value) { this.LastYearBudget9GreaterThanOrEqualTo = value; return this; } public BigDecimal getLastYearBudget9GreaterThan() { return LastYearBudget9GreaterThan; } public GL_Budget2Query setLastYearBudget9GreaterThan(BigDecimal value) { this.LastYearBudget9GreaterThan = value; return this; } public BigDecimal getLastYearBudget9LessThan() { return LastYearBudget9LessThan; } public GL_Budget2Query setLastYearBudget9LessThan(BigDecimal value) { this.LastYearBudget9LessThan = value; return this; } public BigDecimal getLastYearBudget9LessThanOrEqualTo() { return LastYearBudget9LessThanOrEqualTo; } public GL_Budget2Query setLastYearBudget9LessThanOrEqualTo(BigDecimal value) { this.LastYearBudget9LessThanOrEqualTo = value; return this; } public BigDecimal getLastYearBudget9NotEqualTo() { return LastYearBudget9NotEqualTo; } public GL_Budget2Query setLastYearBudget9NotEqualTo(BigDecimal value) { this.LastYearBudget9NotEqualTo = value; return this; } public ArrayList getLastYearBudget9Between() { return LastYearBudget9Between; } public GL_Budget2Query setLastYearBudget9Between(ArrayList value) { this.LastYearBudget9Between = value; return this; } public ArrayList getLastYearBudget9In() { return LastYearBudget9In; } public GL_Budget2Query setLastYearBudget9In(ArrayList value) { this.LastYearBudget9In = value; return this; } public BigDecimal getLastYearBudget10() { return LastYearBudget10; } public GL_Budget2Query setLastYearBudget10(BigDecimal value) { this.LastYearBudget10 = value; return this; } public BigDecimal getLastYearBudget10GreaterThanOrEqualTo() { return LastYearBudget10GreaterThanOrEqualTo; } public GL_Budget2Query setLastYearBudget10GreaterThanOrEqualTo(BigDecimal value) { this.LastYearBudget10GreaterThanOrEqualTo = value; return this; } public BigDecimal getLastYearBudget10GreaterThan() { return LastYearBudget10GreaterThan; } public GL_Budget2Query setLastYearBudget10GreaterThan(BigDecimal value) { this.LastYearBudget10GreaterThan = value; return this; } public BigDecimal getLastYearBudget10LessThan() { return LastYearBudget10LessThan; } public GL_Budget2Query setLastYearBudget10LessThan(BigDecimal value) { this.LastYearBudget10LessThan = value; return this; } public BigDecimal getLastYearBudget10LessThanOrEqualTo() { return LastYearBudget10LessThanOrEqualTo; } public GL_Budget2Query setLastYearBudget10LessThanOrEqualTo(BigDecimal value) { this.LastYearBudget10LessThanOrEqualTo = value; return this; } public BigDecimal getLastYearBudget10NotEqualTo() { return LastYearBudget10NotEqualTo; } public GL_Budget2Query setLastYearBudget10NotEqualTo(BigDecimal value) { this.LastYearBudget10NotEqualTo = value; return this; } public ArrayList getLastYearBudget10Between() { return LastYearBudget10Between; } public GL_Budget2Query setLastYearBudget10Between(ArrayList value) { this.LastYearBudget10Between = value; return this; } public ArrayList getLastYearBudget10In() { return LastYearBudget10In; } public GL_Budget2Query setLastYearBudget10In(ArrayList value) { this.LastYearBudget10In = value; return this; } public BigDecimal getLastYearBudget11() { return LastYearBudget11; } public GL_Budget2Query setLastYearBudget11(BigDecimal value) { this.LastYearBudget11 = value; return this; } public BigDecimal getLastYearBudget11GreaterThanOrEqualTo() { return LastYearBudget11GreaterThanOrEqualTo; } public GL_Budget2Query setLastYearBudget11GreaterThanOrEqualTo(BigDecimal value) { this.LastYearBudget11GreaterThanOrEqualTo = value; return this; } public BigDecimal getLastYearBudget11GreaterThan() { return LastYearBudget11GreaterThan; } public GL_Budget2Query setLastYearBudget11GreaterThan(BigDecimal value) { this.LastYearBudget11GreaterThan = value; return this; } public BigDecimal getLastYearBudget11LessThan() { return LastYearBudget11LessThan; } public GL_Budget2Query setLastYearBudget11LessThan(BigDecimal value) { this.LastYearBudget11LessThan = value; return this; } public BigDecimal getLastYearBudget11LessThanOrEqualTo() { return LastYearBudget11LessThanOrEqualTo; } public GL_Budget2Query setLastYearBudget11LessThanOrEqualTo(BigDecimal value) { this.LastYearBudget11LessThanOrEqualTo = value; return this; } public BigDecimal getLastYearBudget11NotEqualTo() { return LastYearBudget11NotEqualTo; } public GL_Budget2Query setLastYearBudget11NotEqualTo(BigDecimal value) { this.LastYearBudget11NotEqualTo = value; return this; } public ArrayList getLastYearBudget11Between() { return LastYearBudget11Between; } public GL_Budget2Query setLastYearBudget11Between(ArrayList value) { this.LastYearBudget11Between = value; return this; } public ArrayList getLastYearBudget11In() { return LastYearBudget11In; } public GL_Budget2Query setLastYearBudget11In(ArrayList value) { this.LastYearBudget11In = value; return this; } public BigDecimal getLastYearBudget12() { return LastYearBudget12; } public GL_Budget2Query setLastYearBudget12(BigDecimal value) { this.LastYearBudget12 = value; return this; } public BigDecimal getLastYearBudget12GreaterThanOrEqualTo() { return LastYearBudget12GreaterThanOrEqualTo; } public GL_Budget2Query setLastYearBudget12GreaterThanOrEqualTo(BigDecimal value) { this.LastYearBudget12GreaterThanOrEqualTo = value; return this; } public BigDecimal getLastYearBudget12GreaterThan() { return LastYearBudget12GreaterThan; } public GL_Budget2Query setLastYearBudget12GreaterThan(BigDecimal value) { this.LastYearBudget12GreaterThan = value; return this; } public BigDecimal getLastYearBudget12LessThan() { return LastYearBudget12LessThan; } public GL_Budget2Query setLastYearBudget12LessThan(BigDecimal value) { this.LastYearBudget12LessThan = value; return this; } public BigDecimal getLastYearBudget12LessThanOrEqualTo() { return LastYearBudget12LessThanOrEqualTo; } public GL_Budget2Query setLastYearBudget12LessThanOrEqualTo(BigDecimal value) { this.LastYearBudget12LessThanOrEqualTo = value; return this; } public BigDecimal getLastYearBudget12NotEqualTo() { return LastYearBudget12NotEqualTo; } public GL_Budget2Query setLastYearBudget12NotEqualTo(BigDecimal value) { this.LastYearBudget12NotEqualTo = value; return this; } public ArrayList getLastYearBudget12Between() { return LastYearBudget12Between; } public GL_Budget2Query setLastYearBudget12Between(ArrayList value) { this.LastYearBudget12Between = value; return this; } public ArrayList getLastYearBudget12In() { return LastYearBudget12In; } public GL_Budget2Query setLastYearBudget12In(ArrayList value) { this.LastYearBudget12In = value; return this; } public BigDecimal getCurrYearBudget1() { return CurrYearBudget1; } public GL_Budget2Query setCurrYearBudget1(BigDecimal value) { this.CurrYearBudget1 = value; return this; } public BigDecimal getCurrYearBudget1GreaterThanOrEqualTo() { return CurrYearBudget1GreaterThanOrEqualTo; } public GL_Budget2Query setCurrYearBudget1GreaterThanOrEqualTo(BigDecimal value) { this.CurrYearBudget1GreaterThanOrEqualTo = value; return this; } public BigDecimal getCurrYearBudget1GreaterThan() { return CurrYearBudget1GreaterThan; } public GL_Budget2Query setCurrYearBudget1GreaterThan(BigDecimal value) { this.CurrYearBudget1GreaterThan = value; return this; } public BigDecimal getCurrYearBudget1LessThan() { return CurrYearBudget1LessThan; } public GL_Budget2Query setCurrYearBudget1LessThan(BigDecimal value) { this.CurrYearBudget1LessThan = value; return this; } public BigDecimal getCurrYearBudget1LessThanOrEqualTo() { return CurrYearBudget1LessThanOrEqualTo; } public GL_Budget2Query setCurrYearBudget1LessThanOrEqualTo(BigDecimal value) { this.CurrYearBudget1LessThanOrEqualTo = value; return this; } public BigDecimal getCurrYearBudget1NotEqualTo() { return CurrYearBudget1NotEqualTo; } public GL_Budget2Query setCurrYearBudget1NotEqualTo(BigDecimal value) { this.CurrYearBudget1NotEqualTo = value; return this; } public ArrayList getCurrYearBudget1Between() { return CurrYearBudget1Between; } public GL_Budget2Query setCurrYearBudget1Between(ArrayList value) { this.CurrYearBudget1Between = value; return this; } public ArrayList getCurrYearBudget1In() { return CurrYearBudget1In; } public GL_Budget2Query setCurrYearBudget1In(ArrayList value) { this.CurrYearBudget1In = value; return this; } public BigDecimal getCurrYearBudget2() { return CurrYearBudget2; } public GL_Budget2Query setCurrYearBudget2(BigDecimal value) { this.CurrYearBudget2 = value; return this; } public BigDecimal getCurrYearBudget2GreaterThanOrEqualTo() { return CurrYearBudget2GreaterThanOrEqualTo; } public GL_Budget2Query setCurrYearBudget2GreaterThanOrEqualTo(BigDecimal value) { this.CurrYearBudget2GreaterThanOrEqualTo = value; return this; } public BigDecimal getCurrYearBudget2GreaterThan() { return CurrYearBudget2GreaterThan; } public GL_Budget2Query setCurrYearBudget2GreaterThan(BigDecimal value) { this.CurrYearBudget2GreaterThan = value; return this; } public BigDecimal getCurrYearBudget2LessThan() { return CurrYearBudget2LessThan; } public GL_Budget2Query setCurrYearBudget2LessThan(BigDecimal value) { this.CurrYearBudget2LessThan = value; return this; } public BigDecimal getCurrYearBudget2LessThanOrEqualTo() { return CurrYearBudget2LessThanOrEqualTo; } public GL_Budget2Query setCurrYearBudget2LessThanOrEqualTo(BigDecimal value) { this.CurrYearBudget2LessThanOrEqualTo = value; return this; } public BigDecimal getCurrYearBudget2NotEqualTo() { return CurrYearBudget2NotEqualTo; } public GL_Budget2Query setCurrYearBudget2NotEqualTo(BigDecimal value) { this.CurrYearBudget2NotEqualTo = value; return this; } public ArrayList getCurrYearBudget2Between() { return CurrYearBudget2Between; } public GL_Budget2Query setCurrYearBudget2Between(ArrayList value) { this.CurrYearBudget2Between = value; return this; } public ArrayList getCurrYearBudget2In() { return CurrYearBudget2In; } public GL_Budget2Query setCurrYearBudget2In(ArrayList value) { this.CurrYearBudget2In = value; return this; } public BigDecimal getCurrYearBudget3() { return CurrYearBudget3; } public GL_Budget2Query setCurrYearBudget3(BigDecimal value) { this.CurrYearBudget3 = value; return this; } public BigDecimal getCurrYearBudget3GreaterThanOrEqualTo() { return CurrYearBudget3GreaterThanOrEqualTo; } public GL_Budget2Query setCurrYearBudget3GreaterThanOrEqualTo(BigDecimal value) { this.CurrYearBudget3GreaterThanOrEqualTo = value; return this; } public BigDecimal getCurrYearBudget3GreaterThan() { return CurrYearBudget3GreaterThan; } public GL_Budget2Query setCurrYearBudget3GreaterThan(BigDecimal value) { this.CurrYearBudget3GreaterThan = value; return this; } public BigDecimal getCurrYearBudget3LessThan() { return CurrYearBudget3LessThan; } public GL_Budget2Query setCurrYearBudget3LessThan(BigDecimal value) { this.CurrYearBudget3LessThan = value; return this; } public BigDecimal getCurrYearBudget3LessThanOrEqualTo() { return CurrYearBudget3LessThanOrEqualTo; } public GL_Budget2Query setCurrYearBudget3LessThanOrEqualTo(BigDecimal value) { this.CurrYearBudget3LessThanOrEqualTo = value; return this; } public BigDecimal getCurrYearBudget3NotEqualTo() { return CurrYearBudget3NotEqualTo; } public GL_Budget2Query setCurrYearBudget3NotEqualTo(BigDecimal value) { this.CurrYearBudget3NotEqualTo = value; return this; } public ArrayList getCurrYearBudget3Between() { return CurrYearBudget3Between; } public GL_Budget2Query setCurrYearBudget3Between(ArrayList value) { this.CurrYearBudget3Between = value; return this; } public ArrayList getCurrYearBudget3In() { return CurrYearBudget3In; } public GL_Budget2Query setCurrYearBudget3In(ArrayList value) { this.CurrYearBudget3In = value; return this; } public BigDecimal getCurrYearBudget4() { return CurrYearBudget4; } public GL_Budget2Query setCurrYearBudget4(BigDecimal value) { this.CurrYearBudget4 = value; return this; } public BigDecimal getCurrYearBudget4GreaterThanOrEqualTo() { return CurrYearBudget4GreaterThanOrEqualTo; } public GL_Budget2Query setCurrYearBudget4GreaterThanOrEqualTo(BigDecimal value) { this.CurrYearBudget4GreaterThanOrEqualTo = value; return this; } public BigDecimal getCurrYearBudget4GreaterThan() { return CurrYearBudget4GreaterThan; } public GL_Budget2Query setCurrYearBudget4GreaterThan(BigDecimal value) { this.CurrYearBudget4GreaterThan = value; return this; } public BigDecimal getCurrYearBudget4LessThan() { return CurrYearBudget4LessThan; } public GL_Budget2Query setCurrYearBudget4LessThan(BigDecimal value) { this.CurrYearBudget4LessThan = value; return this; } public BigDecimal getCurrYearBudget4LessThanOrEqualTo() { return CurrYearBudget4LessThanOrEqualTo; } public GL_Budget2Query setCurrYearBudget4LessThanOrEqualTo(BigDecimal value) { this.CurrYearBudget4LessThanOrEqualTo = value; return this; } public BigDecimal getCurrYearBudget4NotEqualTo() { return CurrYearBudget4NotEqualTo; } public GL_Budget2Query setCurrYearBudget4NotEqualTo(BigDecimal value) { this.CurrYearBudget4NotEqualTo = value; return this; } public ArrayList getCurrYearBudget4Between() { return CurrYearBudget4Between; } public GL_Budget2Query setCurrYearBudget4Between(ArrayList value) { this.CurrYearBudget4Between = value; return this; } public ArrayList getCurrYearBudget4In() { return CurrYearBudget4In; } public GL_Budget2Query setCurrYearBudget4In(ArrayList value) { this.CurrYearBudget4In = value; return this; } public BigDecimal getCurrYearBudget5() { return CurrYearBudget5; } public GL_Budget2Query setCurrYearBudget5(BigDecimal value) { this.CurrYearBudget5 = value; return this; } public BigDecimal getCurrYearBudget5GreaterThanOrEqualTo() { return CurrYearBudget5GreaterThanOrEqualTo; } public GL_Budget2Query setCurrYearBudget5GreaterThanOrEqualTo(BigDecimal value) { this.CurrYearBudget5GreaterThanOrEqualTo = value; return this; } public BigDecimal getCurrYearBudget5GreaterThan() { return CurrYearBudget5GreaterThan; } public GL_Budget2Query setCurrYearBudget5GreaterThan(BigDecimal value) { this.CurrYearBudget5GreaterThan = value; return this; } public BigDecimal getCurrYearBudget5LessThan() { return CurrYearBudget5LessThan; } public GL_Budget2Query setCurrYearBudget5LessThan(BigDecimal value) { this.CurrYearBudget5LessThan = value; return this; } public BigDecimal getCurrYearBudget5LessThanOrEqualTo() { return CurrYearBudget5LessThanOrEqualTo; } public GL_Budget2Query setCurrYearBudget5LessThanOrEqualTo(BigDecimal value) { this.CurrYearBudget5LessThanOrEqualTo = value; return this; } public BigDecimal getCurrYearBudget5NotEqualTo() { return CurrYearBudget5NotEqualTo; } public GL_Budget2Query setCurrYearBudget5NotEqualTo(BigDecimal value) { this.CurrYearBudget5NotEqualTo = value; return this; } public ArrayList getCurrYearBudget5Between() { return CurrYearBudget5Between; } public GL_Budget2Query setCurrYearBudget5Between(ArrayList value) { this.CurrYearBudget5Between = value; return this; } public ArrayList getCurrYearBudget5In() { return CurrYearBudget5In; } public GL_Budget2Query setCurrYearBudget5In(ArrayList value) { this.CurrYearBudget5In = value; return this; } public BigDecimal getCurrYearBudget6() { return CurrYearBudget6; } public GL_Budget2Query setCurrYearBudget6(BigDecimal value) { this.CurrYearBudget6 = value; return this; } public BigDecimal getCurrYearBudget6GreaterThanOrEqualTo() { return CurrYearBudget6GreaterThanOrEqualTo; } public GL_Budget2Query setCurrYearBudget6GreaterThanOrEqualTo(BigDecimal value) { this.CurrYearBudget6GreaterThanOrEqualTo = value; return this; } public BigDecimal getCurrYearBudget6GreaterThan() { return CurrYearBudget6GreaterThan; } public GL_Budget2Query setCurrYearBudget6GreaterThan(BigDecimal value) { this.CurrYearBudget6GreaterThan = value; return this; } public BigDecimal getCurrYearBudget6LessThan() { return CurrYearBudget6LessThan; } public GL_Budget2Query setCurrYearBudget6LessThan(BigDecimal value) { this.CurrYearBudget6LessThan = value; return this; } public BigDecimal getCurrYearBudget6LessThanOrEqualTo() { return CurrYearBudget6LessThanOrEqualTo; } public GL_Budget2Query setCurrYearBudget6LessThanOrEqualTo(BigDecimal value) { this.CurrYearBudget6LessThanOrEqualTo = value; return this; } public BigDecimal getCurrYearBudget6NotEqualTo() { return CurrYearBudget6NotEqualTo; } public GL_Budget2Query setCurrYearBudget6NotEqualTo(BigDecimal value) { this.CurrYearBudget6NotEqualTo = value; return this; } public ArrayList getCurrYearBudget6Between() { return CurrYearBudget6Between; } public GL_Budget2Query setCurrYearBudget6Between(ArrayList value) { this.CurrYearBudget6Between = value; return this; } public ArrayList getCurrYearBudget6In() { return CurrYearBudget6In; } public GL_Budget2Query setCurrYearBudget6In(ArrayList value) { this.CurrYearBudget6In = value; return this; } public BigDecimal getCurrYearBudget7() { return CurrYearBudget7; } public GL_Budget2Query setCurrYearBudget7(BigDecimal value) { this.CurrYearBudget7 = value; return this; } public BigDecimal getCurrYearBudget7GreaterThanOrEqualTo() { return CurrYearBudget7GreaterThanOrEqualTo; } public GL_Budget2Query setCurrYearBudget7GreaterThanOrEqualTo(BigDecimal value) { this.CurrYearBudget7GreaterThanOrEqualTo = value; return this; } public BigDecimal getCurrYearBudget7GreaterThan() { return CurrYearBudget7GreaterThan; } public GL_Budget2Query setCurrYearBudget7GreaterThan(BigDecimal value) { this.CurrYearBudget7GreaterThan = value; return this; } public BigDecimal getCurrYearBudget7LessThan() { return CurrYearBudget7LessThan; } public GL_Budget2Query setCurrYearBudget7LessThan(BigDecimal value) { this.CurrYearBudget7LessThan = value; return this; } public BigDecimal getCurrYearBudget7LessThanOrEqualTo() { return CurrYearBudget7LessThanOrEqualTo; } public GL_Budget2Query setCurrYearBudget7LessThanOrEqualTo(BigDecimal value) { this.CurrYearBudget7LessThanOrEqualTo = value; return this; } public BigDecimal getCurrYearBudget7NotEqualTo() { return CurrYearBudget7NotEqualTo; } public GL_Budget2Query setCurrYearBudget7NotEqualTo(BigDecimal value) { this.CurrYearBudget7NotEqualTo = value; return this; } public ArrayList getCurrYearBudget7Between() { return CurrYearBudget7Between; } public GL_Budget2Query setCurrYearBudget7Between(ArrayList value) { this.CurrYearBudget7Between = value; return this; } public ArrayList getCurrYearBudget7In() { return CurrYearBudget7In; } public GL_Budget2Query setCurrYearBudget7In(ArrayList value) { this.CurrYearBudget7In = value; return this; } public BigDecimal getCurrYearBudget8() { return CurrYearBudget8; } public GL_Budget2Query setCurrYearBudget8(BigDecimal value) { this.CurrYearBudget8 = value; return this; } public BigDecimal getCurrYearBudget8GreaterThanOrEqualTo() { return CurrYearBudget8GreaterThanOrEqualTo; } public GL_Budget2Query setCurrYearBudget8GreaterThanOrEqualTo(BigDecimal value) { this.CurrYearBudget8GreaterThanOrEqualTo = value; return this; } public BigDecimal getCurrYearBudget8GreaterThan() { return CurrYearBudget8GreaterThan; } public GL_Budget2Query setCurrYearBudget8GreaterThan(BigDecimal value) { this.CurrYearBudget8GreaterThan = value; return this; } public BigDecimal getCurrYearBudget8LessThan() { return CurrYearBudget8LessThan; } public GL_Budget2Query setCurrYearBudget8LessThan(BigDecimal value) { this.CurrYearBudget8LessThan = value; return this; } public BigDecimal getCurrYearBudget8LessThanOrEqualTo() { return CurrYearBudget8LessThanOrEqualTo; } public GL_Budget2Query setCurrYearBudget8LessThanOrEqualTo(BigDecimal value) { this.CurrYearBudget8LessThanOrEqualTo = value; return this; } public BigDecimal getCurrYearBudget8NotEqualTo() { return CurrYearBudget8NotEqualTo; } public GL_Budget2Query setCurrYearBudget8NotEqualTo(BigDecimal value) { this.CurrYearBudget8NotEqualTo = value; return this; } public ArrayList getCurrYearBudget8Between() { return CurrYearBudget8Between; } public GL_Budget2Query setCurrYearBudget8Between(ArrayList value) { this.CurrYearBudget8Between = value; return this; } public ArrayList getCurrYearBudget8In() { return CurrYearBudget8In; } public GL_Budget2Query setCurrYearBudget8In(ArrayList value) { this.CurrYearBudget8In = value; return this; } public BigDecimal getCurrYearBudget9() { return CurrYearBudget9; } public GL_Budget2Query setCurrYearBudget9(BigDecimal value) { this.CurrYearBudget9 = value; return this; } public BigDecimal getCurrYearBudget9GreaterThanOrEqualTo() { return CurrYearBudget9GreaterThanOrEqualTo; } public GL_Budget2Query setCurrYearBudget9GreaterThanOrEqualTo(BigDecimal value) { this.CurrYearBudget9GreaterThanOrEqualTo = value; return this; } public BigDecimal getCurrYearBudget9GreaterThan() { return CurrYearBudget9GreaterThan; } public GL_Budget2Query setCurrYearBudget9GreaterThan(BigDecimal value) { this.CurrYearBudget9GreaterThan = value; return this; } public BigDecimal getCurrYearBudget9LessThan() { return CurrYearBudget9LessThan; } public GL_Budget2Query setCurrYearBudget9LessThan(BigDecimal value) { this.CurrYearBudget9LessThan = value; return this; } public BigDecimal getCurrYearBudget9LessThanOrEqualTo() { return CurrYearBudget9LessThanOrEqualTo; } public GL_Budget2Query setCurrYearBudget9LessThanOrEqualTo(BigDecimal value) { this.CurrYearBudget9LessThanOrEqualTo = value; return this; } public BigDecimal getCurrYearBudget9NotEqualTo() { return CurrYearBudget9NotEqualTo; } public GL_Budget2Query setCurrYearBudget9NotEqualTo(BigDecimal value) { this.CurrYearBudget9NotEqualTo = value; return this; } public ArrayList getCurrYearBudget9Between() { return CurrYearBudget9Between; } public GL_Budget2Query setCurrYearBudget9Between(ArrayList value) { this.CurrYearBudget9Between = value; return this; } public ArrayList getCurrYearBudget9In() { return CurrYearBudget9In; } public GL_Budget2Query setCurrYearBudget9In(ArrayList value) { this.CurrYearBudget9In = value; return this; } public BigDecimal getCurrYearBudget10() { return CurrYearBudget10; } public GL_Budget2Query setCurrYearBudget10(BigDecimal value) { this.CurrYearBudget10 = value; return this; } public BigDecimal getCurrYearBudget10GreaterThanOrEqualTo() { return CurrYearBudget10GreaterThanOrEqualTo; } public GL_Budget2Query setCurrYearBudget10GreaterThanOrEqualTo(BigDecimal value) { this.CurrYearBudget10GreaterThanOrEqualTo = value; return this; } public BigDecimal getCurrYearBudget10GreaterThan() { return CurrYearBudget10GreaterThan; } public GL_Budget2Query setCurrYearBudget10GreaterThan(BigDecimal value) { this.CurrYearBudget10GreaterThan = value; return this; } public BigDecimal getCurrYearBudget10LessThan() { return CurrYearBudget10LessThan; } public GL_Budget2Query setCurrYearBudget10LessThan(BigDecimal value) { this.CurrYearBudget10LessThan = value; return this; } public BigDecimal getCurrYearBudget10LessThanOrEqualTo() { return CurrYearBudget10LessThanOrEqualTo; } public GL_Budget2Query setCurrYearBudget10LessThanOrEqualTo(BigDecimal value) { this.CurrYearBudget10LessThanOrEqualTo = value; return this; } public BigDecimal getCurrYearBudget10NotEqualTo() { return CurrYearBudget10NotEqualTo; } public GL_Budget2Query setCurrYearBudget10NotEqualTo(BigDecimal value) { this.CurrYearBudget10NotEqualTo = value; return this; } public ArrayList getCurrYearBudget10Between() { return CurrYearBudget10Between; } public GL_Budget2Query setCurrYearBudget10Between(ArrayList value) { this.CurrYearBudget10Between = value; return this; } public ArrayList getCurrYearBudget10In() { return CurrYearBudget10In; } public GL_Budget2Query setCurrYearBudget10In(ArrayList value) { this.CurrYearBudget10In = value; return this; } public BigDecimal getCurrYearBudget11() { return CurrYearBudget11; } public GL_Budget2Query setCurrYearBudget11(BigDecimal value) { this.CurrYearBudget11 = value; return this; } public BigDecimal getCurrYearBudget11GreaterThanOrEqualTo() { return CurrYearBudget11GreaterThanOrEqualTo; } public GL_Budget2Query setCurrYearBudget11GreaterThanOrEqualTo(BigDecimal value) { this.CurrYearBudget11GreaterThanOrEqualTo = value; return this; } public BigDecimal getCurrYearBudget11GreaterThan() { return CurrYearBudget11GreaterThan; } public GL_Budget2Query setCurrYearBudget11GreaterThan(BigDecimal value) { this.CurrYearBudget11GreaterThan = value; return this; } public BigDecimal getCurrYearBudget11LessThan() { return CurrYearBudget11LessThan; } public GL_Budget2Query setCurrYearBudget11LessThan(BigDecimal value) { this.CurrYearBudget11LessThan = value; return this; } public BigDecimal getCurrYearBudget11LessThanOrEqualTo() { return CurrYearBudget11LessThanOrEqualTo; } public GL_Budget2Query setCurrYearBudget11LessThanOrEqualTo(BigDecimal value) { this.CurrYearBudget11LessThanOrEqualTo = value; return this; } public BigDecimal getCurrYearBudget11NotEqualTo() { return CurrYearBudget11NotEqualTo; } public GL_Budget2Query setCurrYearBudget11NotEqualTo(BigDecimal value) { this.CurrYearBudget11NotEqualTo = value; return this; } public ArrayList getCurrYearBudget11Between() { return CurrYearBudget11Between; } public GL_Budget2Query setCurrYearBudget11Between(ArrayList value) { this.CurrYearBudget11Between = value; return this; } public ArrayList getCurrYearBudget11In() { return CurrYearBudget11In; } public GL_Budget2Query setCurrYearBudget11In(ArrayList value) { this.CurrYearBudget11In = value; return this; } public BigDecimal getCurrYearBudget12() { return CurrYearBudget12; } public GL_Budget2Query setCurrYearBudget12(BigDecimal value) { this.CurrYearBudget12 = value; return this; } public BigDecimal getCurrYearBudget12GreaterThanOrEqualTo() { return CurrYearBudget12GreaterThanOrEqualTo; } public GL_Budget2Query setCurrYearBudget12GreaterThanOrEqualTo(BigDecimal value) { this.CurrYearBudget12GreaterThanOrEqualTo = value; return this; } public BigDecimal getCurrYearBudget12GreaterThan() { return CurrYearBudget12GreaterThan; } public GL_Budget2Query setCurrYearBudget12GreaterThan(BigDecimal value) { this.CurrYearBudget12GreaterThan = value; return this; } public BigDecimal getCurrYearBudget12LessThan() { return CurrYearBudget12LessThan; } public GL_Budget2Query setCurrYearBudget12LessThan(BigDecimal value) { this.CurrYearBudget12LessThan = value; return this; } public BigDecimal getCurrYearBudget12LessThanOrEqualTo() { return CurrYearBudget12LessThanOrEqualTo; } public GL_Budget2Query setCurrYearBudget12LessThanOrEqualTo(BigDecimal value) { this.CurrYearBudget12LessThanOrEqualTo = value; return this; } public BigDecimal getCurrYearBudget12NotEqualTo() { return CurrYearBudget12NotEqualTo; } public GL_Budget2Query setCurrYearBudget12NotEqualTo(BigDecimal value) { this.CurrYearBudget12NotEqualTo = value; return this; } public ArrayList getCurrYearBudget12Between() { return CurrYearBudget12Between; } public GL_Budget2Query setCurrYearBudget12Between(ArrayList value) { this.CurrYearBudget12Between = value; return this; } public ArrayList getCurrYearBudget12In() { return CurrYearBudget12In; } public GL_Budget2Query setCurrYearBudget12In(ArrayList value) { this.CurrYearBudget12In = value; return this; } public BigDecimal getNextYearBudget1() { return NextYearBudget1; } public GL_Budget2Query setNextYearBudget1(BigDecimal value) { this.NextYearBudget1 = value; return this; } public BigDecimal getNextYearBudget1GreaterThanOrEqualTo() { return NextYearBudget1GreaterThanOrEqualTo; } public GL_Budget2Query setNextYearBudget1GreaterThanOrEqualTo(BigDecimal value) { this.NextYearBudget1GreaterThanOrEqualTo = value; return this; } public BigDecimal getNextYearBudget1GreaterThan() { return NextYearBudget1GreaterThan; } public GL_Budget2Query setNextYearBudget1GreaterThan(BigDecimal value) { this.NextYearBudget1GreaterThan = value; return this; } public BigDecimal getNextYearBudget1LessThan() { return NextYearBudget1LessThan; } public GL_Budget2Query setNextYearBudget1LessThan(BigDecimal value) { this.NextYearBudget1LessThan = value; return this; } public BigDecimal getNextYearBudget1LessThanOrEqualTo() { return NextYearBudget1LessThanOrEqualTo; } public GL_Budget2Query setNextYearBudget1LessThanOrEqualTo(BigDecimal value) { this.NextYearBudget1LessThanOrEqualTo = value; return this; } public BigDecimal getNextYearBudget1NotEqualTo() { return NextYearBudget1NotEqualTo; } public GL_Budget2Query setNextYearBudget1NotEqualTo(BigDecimal value) { this.NextYearBudget1NotEqualTo = value; return this; } public ArrayList getNextYearBudget1Between() { return NextYearBudget1Between; } public GL_Budget2Query setNextYearBudget1Between(ArrayList value) { this.NextYearBudget1Between = value; return this; } public ArrayList getNextYearBudget1In() { return NextYearBudget1In; } public GL_Budget2Query setNextYearBudget1In(ArrayList value) { this.NextYearBudget1In = value; return this; } public BigDecimal getNextYearBudget2() { return NextYearBudget2; } public GL_Budget2Query setNextYearBudget2(BigDecimal value) { this.NextYearBudget2 = value; return this; } public BigDecimal getNextYearBudget2GreaterThanOrEqualTo() { return NextYearBudget2GreaterThanOrEqualTo; } public GL_Budget2Query setNextYearBudget2GreaterThanOrEqualTo(BigDecimal value) { this.NextYearBudget2GreaterThanOrEqualTo = value; return this; } public BigDecimal getNextYearBudget2GreaterThan() { return NextYearBudget2GreaterThan; } public GL_Budget2Query setNextYearBudget2GreaterThan(BigDecimal value) { this.NextYearBudget2GreaterThan = value; return this; } public BigDecimal getNextYearBudget2LessThan() { return NextYearBudget2LessThan; } public GL_Budget2Query setNextYearBudget2LessThan(BigDecimal value) { this.NextYearBudget2LessThan = value; return this; } public BigDecimal getNextYearBudget2LessThanOrEqualTo() { return NextYearBudget2LessThanOrEqualTo; } public GL_Budget2Query setNextYearBudget2LessThanOrEqualTo(BigDecimal value) { this.NextYearBudget2LessThanOrEqualTo = value; return this; } public BigDecimal getNextYearBudget2NotEqualTo() { return NextYearBudget2NotEqualTo; } public GL_Budget2Query setNextYearBudget2NotEqualTo(BigDecimal value) { this.NextYearBudget2NotEqualTo = value; return this; } public ArrayList getNextYearBudget2Between() { return NextYearBudget2Between; } public GL_Budget2Query setNextYearBudget2Between(ArrayList value) { this.NextYearBudget2Between = value; return this; } public ArrayList getNextYearBudget2In() { return NextYearBudget2In; } public GL_Budget2Query setNextYearBudget2In(ArrayList value) { this.NextYearBudget2In = value; return this; } public BigDecimal getNextYearBudget3() { return NextYearBudget3; } public GL_Budget2Query setNextYearBudget3(BigDecimal value) { this.NextYearBudget3 = value; return this; } public BigDecimal getNextYearBudget3GreaterThanOrEqualTo() { return NextYearBudget3GreaterThanOrEqualTo; } public GL_Budget2Query setNextYearBudget3GreaterThanOrEqualTo(BigDecimal value) { this.NextYearBudget3GreaterThanOrEqualTo = value; return this; } public BigDecimal getNextYearBudget3GreaterThan() { return NextYearBudget3GreaterThan; } public GL_Budget2Query setNextYearBudget3GreaterThan(BigDecimal value) { this.NextYearBudget3GreaterThan = value; return this; } public BigDecimal getNextYearBudget3LessThan() { return NextYearBudget3LessThan; } public GL_Budget2Query setNextYearBudget3LessThan(BigDecimal value) { this.NextYearBudget3LessThan = value; return this; } public BigDecimal getNextYearBudget3LessThanOrEqualTo() { return NextYearBudget3LessThanOrEqualTo; } public GL_Budget2Query setNextYearBudget3LessThanOrEqualTo(BigDecimal value) { this.NextYearBudget3LessThanOrEqualTo = value; return this; } public BigDecimal getNextYearBudget3NotEqualTo() { return NextYearBudget3NotEqualTo; } public GL_Budget2Query setNextYearBudget3NotEqualTo(BigDecimal value) { this.NextYearBudget3NotEqualTo = value; return this; } public ArrayList getNextYearBudget3Between() { return NextYearBudget3Between; } public GL_Budget2Query setNextYearBudget3Between(ArrayList value) { this.NextYearBudget3Between = value; return this; } public ArrayList getNextYearBudget3In() { return NextYearBudget3In; } public GL_Budget2Query setNextYearBudget3In(ArrayList value) { this.NextYearBudget3In = value; return this; } public BigDecimal getNextYearBudget4() { return NextYearBudget4; } public GL_Budget2Query setNextYearBudget4(BigDecimal value) { this.NextYearBudget4 = value; return this; } public BigDecimal getNextYearBudget4GreaterThanOrEqualTo() { return NextYearBudget4GreaterThanOrEqualTo; } public GL_Budget2Query setNextYearBudget4GreaterThanOrEqualTo(BigDecimal value) { this.NextYearBudget4GreaterThanOrEqualTo = value; return this; } public BigDecimal getNextYearBudget4GreaterThan() { return NextYearBudget4GreaterThan; } public GL_Budget2Query setNextYearBudget4GreaterThan(BigDecimal value) { this.NextYearBudget4GreaterThan = value; return this; } public BigDecimal getNextYearBudget4LessThan() { return NextYearBudget4LessThan; } public GL_Budget2Query setNextYearBudget4LessThan(BigDecimal value) { this.NextYearBudget4LessThan = value; return this; } public BigDecimal getNextYearBudget4LessThanOrEqualTo() { return NextYearBudget4LessThanOrEqualTo; } public GL_Budget2Query setNextYearBudget4LessThanOrEqualTo(BigDecimal value) { this.NextYearBudget4LessThanOrEqualTo = value; return this; } public BigDecimal getNextYearBudget4NotEqualTo() { return NextYearBudget4NotEqualTo; } public GL_Budget2Query setNextYearBudget4NotEqualTo(BigDecimal value) { this.NextYearBudget4NotEqualTo = value; return this; } public ArrayList getNextYearBudget4Between() { return NextYearBudget4Between; } public GL_Budget2Query setNextYearBudget4Between(ArrayList value) { this.NextYearBudget4Between = value; return this; } public ArrayList getNextYearBudget4In() { return NextYearBudget4In; } public GL_Budget2Query setNextYearBudget4In(ArrayList value) { this.NextYearBudget4In = value; return this; } public BigDecimal getNextYearBudget5() { return NextYearBudget5; } public GL_Budget2Query setNextYearBudget5(BigDecimal value) { this.NextYearBudget5 = value; return this; } public BigDecimal getNextYearBudget5GreaterThanOrEqualTo() { return NextYearBudget5GreaterThanOrEqualTo; } public GL_Budget2Query setNextYearBudget5GreaterThanOrEqualTo(BigDecimal value) { this.NextYearBudget5GreaterThanOrEqualTo = value; return this; } public BigDecimal getNextYearBudget5GreaterThan() { return NextYearBudget5GreaterThan; } public GL_Budget2Query setNextYearBudget5GreaterThan(BigDecimal value) { this.NextYearBudget5GreaterThan = value; return this; } public BigDecimal getNextYearBudget5LessThan() { return NextYearBudget5LessThan; } public GL_Budget2Query setNextYearBudget5LessThan(BigDecimal value) { this.NextYearBudget5LessThan = value; return this; } public BigDecimal getNextYearBudget5LessThanOrEqualTo() { return NextYearBudget5LessThanOrEqualTo; } public GL_Budget2Query setNextYearBudget5LessThanOrEqualTo(BigDecimal value) { this.NextYearBudget5LessThanOrEqualTo = value; return this; } public BigDecimal getNextYearBudget5NotEqualTo() { return NextYearBudget5NotEqualTo; } public GL_Budget2Query setNextYearBudget5NotEqualTo(BigDecimal value) { this.NextYearBudget5NotEqualTo = value; return this; } public ArrayList getNextYearBudget5Between() { return NextYearBudget5Between; } public GL_Budget2Query setNextYearBudget5Between(ArrayList value) { this.NextYearBudget5Between = value; return this; } public ArrayList getNextYearBudget5In() { return NextYearBudget5In; } public GL_Budget2Query setNextYearBudget5In(ArrayList value) { this.NextYearBudget5In = value; return this; } public BigDecimal getNextYearBudget6() { return NextYearBudget6; } public GL_Budget2Query setNextYearBudget6(BigDecimal value) { this.NextYearBudget6 = value; return this; } public BigDecimal getNextYearBudget6GreaterThanOrEqualTo() { return NextYearBudget6GreaterThanOrEqualTo; } public GL_Budget2Query setNextYearBudget6GreaterThanOrEqualTo(BigDecimal value) { this.NextYearBudget6GreaterThanOrEqualTo = value; return this; } public BigDecimal getNextYearBudget6GreaterThan() { return NextYearBudget6GreaterThan; } public GL_Budget2Query setNextYearBudget6GreaterThan(BigDecimal value) { this.NextYearBudget6GreaterThan = value; return this; } public BigDecimal getNextYearBudget6LessThan() { return NextYearBudget6LessThan; } public GL_Budget2Query setNextYearBudget6LessThan(BigDecimal value) { this.NextYearBudget6LessThan = value; return this; } public BigDecimal getNextYearBudget6LessThanOrEqualTo() { return NextYearBudget6LessThanOrEqualTo; } public GL_Budget2Query setNextYearBudget6LessThanOrEqualTo(BigDecimal value) { this.NextYearBudget6LessThanOrEqualTo = value; return this; } public BigDecimal getNextYearBudget6NotEqualTo() { return NextYearBudget6NotEqualTo; } public GL_Budget2Query setNextYearBudget6NotEqualTo(BigDecimal value) { this.NextYearBudget6NotEqualTo = value; return this; } public ArrayList getNextYearBudget6Between() { return NextYearBudget6Between; } public GL_Budget2Query setNextYearBudget6Between(ArrayList value) { this.NextYearBudget6Between = value; return this; } public ArrayList getNextYearBudget6In() { return NextYearBudget6In; } public GL_Budget2Query setNextYearBudget6In(ArrayList value) { this.NextYearBudget6In = value; return this; } public BigDecimal getNextYearBudget7() { return NextYearBudget7; } public GL_Budget2Query setNextYearBudget7(BigDecimal value) { this.NextYearBudget7 = value; return this; } public BigDecimal getNextYearBudget7GreaterThanOrEqualTo() { return NextYearBudget7GreaterThanOrEqualTo; } public GL_Budget2Query setNextYearBudget7GreaterThanOrEqualTo(BigDecimal value) { this.NextYearBudget7GreaterThanOrEqualTo = value; return this; } public BigDecimal getNextYearBudget7GreaterThan() { return NextYearBudget7GreaterThan; } public GL_Budget2Query setNextYearBudget7GreaterThan(BigDecimal value) { this.NextYearBudget7GreaterThan = value; return this; } public BigDecimal getNextYearBudget7LessThan() { return NextYearBudget7LessThan; } public GL_Budget2Query setNextYearBudget7LessThan(BigDecimal value) { this.NextYearBudget7LessThan = value; return this; } public BigDecimal getNextYearBudget7LessThanOrEqualTo() { return NextYearBudget7LessThanOrEqualTo; } public GL_Budget2Query setNextYearBudget7LessThanOrEqualTo(BigDecimal value) { this.NextYearBudget7LessThanOrEqualTo = value; return this; } public BigDecimal getNextYearBudget7NotEqualTo() { return NextYearBudget7NotEqualTo; } public GL_Budget2Query setNextYearBudget7NotEqualTo(BigDecimal value) { this.NextYearBudget7NotEqualTo = value; return this; } public ArrayList getNextYearBudget7Between() { return NextYearBudget7Between; } public GL_Budget2Query setNextYearBudget7Between(ArrayList value) { this.NextYearBudget7Between = value; return this; } public ArrayList getNextYearBudget7In() { return NextYearBudget7In; } public GL_Budget2Query setNextYearBudget7In(ArrayList value) { this.NextYearBudget7In = value; return this; } public BigDecimal getNextYearBudget8() { return NextYearBudget8; } public GL_Budget2Query setNextYearBudget8(BigDecimal value) { this.NextYearBudget8 = value; return this; } public BigDecimal getNextYearBudget8GreaterThanOrEqualTo() { return NextYearBudget8GreaterThanOrEqualTo; } public GL_Budget2Query setNextYearBudget8GreaterThanOrEqualTo(BigDecimal value) { this.NextYearBudget8GreaterThanOrEqualTo = value; return this; } public BigDecimal getNextYearBudget8GreaterThan() { return NextYearBudget8GreaterThan; } public GL_Budget2Query setNextYearBudget8GreaterThan(BigDecimal value) { this.NextYearBudget8GreaterThan = value; return this; } public BigDecimal getNextYearBudget8LessThan() { return NextYearBudget8LessThan; } public GL_Budget2Query setNextYearBudget8LessThan(BigDecimal value) { this.NextYearBudget8LessThan = value; return this; } public BigDecimal getNextYearBudget8LessThanOrEqualTo() { return NextYearBudget8LessThanOrEqualTo; } public GL_Budget2Query setNextYearBudget8LessThanOrEqualTo(BigDecimal value) { this.NextYearBudget8LessThanOrEqualTo = value; return this; } public BigDecimal getNextYearBudget8NotEqualTo() { return NextYearBudget8NotEqualTo; } public GL_Budget2Query setNextYearBudget8NotEqualTo(BigDecimal value) { this.NextYearBudget8NotEqualTo = value; return this; } public ArrayList getNextYearBudget8Between() { return NextYearBudget8Between; } public GL_Budget2Query setNextYearBudget8Between(ArrayList value) { this.NextYearBudget8Between = value; return this; } public ArrayList getNextYearBudget8In() { return NextYearBudget8In; } public GL_Budget2Query setNextYearBudget8In(ArrayList value) { this.NextYearBudget8In = value; return this; } public BigDecimal getNextYearBudget9() { return NextYearBudget9; } public GL_Budget2Query setNextYearBudget9(BigDecimal value) { this.NextYearBudget9 = value; return this; } public BigDecimal getNextYearBudget9GreaterThanOrEqualTo() { return NextYearBudget9GreaterThanOrEqualTo; } public GL_Budget2Query setNextYearBudget9GreaterThanOrEqualTo(BigDecimal value) { this.NextYearBudget9GreaterThanOrEqualTo = value; return this; } public BigDecimal getNextYearBudget9GreaterThan() { return NextYearBudget9GreaterThan; } public GL_Budget2Query setNextYearBudget9GreaterThan(BigDecimal value) { this.NextYearBudget9GreaterThan = value; return this; } public BigDecimal getNextYearBudget9LessThan() { return NextYearBudget9LessThan; } public GL_Budget2Query setNextYearBudget9LessThan(BigDecimal value) { this.NextYearBudget9LessThan = value; return this; } public BigDecimal getNextYearBudget9LessThanOrEqualTo() { return NextYearBudget9LessThanOrEqualTo; } public GL_Budget2Query setNextYearBudget9LessThanOrEqualTo(BigDecimal value) { this.NextYearBudget9LessThanOrEqualTo = value; return this; } public BigDecimal getNextYearBudget9NotEqualTo() { return NextYearBudget9NotEqualTo; } public GL_Budget2Query setNextYearBudget9NotEqualTo(BigDecimal value) { this.NextYearBudget9NotEqualTo = value; return this; } public ArrayList getNextYearBudget9Between() { return NextYearBudget9Between; } public GL_Budget2Query setNextYearBudget9Between(ArrayList value) { this.NextYearBudget9Between = value; return this; } public ArrayList getNextYearBudget9In() { return NextYearBudget9In; } public GL_Budget2Query setNextYearBudget9In(ArrayList value) { this.NextYearBudget9In = value; return this; } public BigDecimal getNextYearBudget10() { return NextYearBudget10; } public GL_Budget2Query setNextYearBudget10(BigDecimal value) { this.NextYearBudget10 = value; return this; } public BigDecimal getNextYearBudget10GreaterThanOrEqualTo() { return NextYearBudget10GreaterThanOrEqualTo; } public GL_Budget2Query setNextYearBudget10GreaterThanOrEqualTo(BigDecimal value) { this.NextYearBudget10GreaterThanOrEqualTo = value; return this; } public BigDecimal getNextYearBudget10GreaterThan() { return NextYearBudget10GreaterThan; } public GL_Budget2Query setNextYearBudget10GreaterThan(BigDecimal value) { this.NextYearBudget10GreaterThan = value; return this; } public BigDecimal getNextYearBudget10LessThan() { return NextYearBudget10LessThan; } public GL_Budget2Query setNextYearBudget10LessThan(BigDecimal value) { this.NextYearBudget10LessThan = value; return this; } public BigDecimal getNextYearBudget10LessThanOrEqualTo() { return NextYearBudget10LessThanOrEqualTo; } public GL_Budget2Query setNextYearBudget10LessThanOrEqualTo(BigDecimal value) { this.NextYearBudget10LessThanOrEqualTo = value; return this; } public BigDecimal getNextYearBudget10NotEqualTo() { return NextYearBudget10NotEqualTo; } public GL_Budget2Query setNextYearBudget10NotEqualTo(BigDecimal value) { this.NextYearBudget10NotEqualTo = value; return this; } public ArrayList getNextYearBudget10Between() { return NextYearBudget10Between; } public GL_Budget2Query setNextYearBudget10Between(ArrayList value) { this.NextYearBudget10Between = value; return this; } public ArrayList getNextYearBudget10In() { return NextYearBudget10In; } public GL_Budget2Query setNextYearBudget10In(ArrayList value) { this.NextYearBudget10In = value; return this; } public BigDecimal getNextYearBudget11() { return NextYearBudget11; } public GL_Budget2Query setNextYearBudget11(BigDecimal value) { this.NextYearBudget11 = value; return this; } public BigDecimal getNextYearBudget11GreaterThanOrEqualTo() { return NextYearBudget11GreaterThanOrEqualTo; } public GL_Budget2Query setNextYearBudget11GreaterThanOrEqualTo(BigDecimal value) { this.NextYearBudget11GreaterThanOrEqualTo = value; return this; } public BigDecimal getNextYearBudget11GreaterThan() { return NextYearBudget11GreaterThan; } public GL_Budget2Query setNextYearBudget11GreaterThan(BigDecimal value) { this.NextYearBudget11GreaterThan = value; return this; } public BigDecimal getNextYearBudget11LessThan() { return NextYearBudget11LessThan; } public GL_Budget2Query setNextYearBudget11LessThan(BigDecimal value) { this.NextYearBudget11LessThan = value; return this; } public BigDecimal getNextYearBudget11LessThanOrEqualTo() { return NextYearBudget11LessThanOrEqualTo; } public GL_Budget2Query setNextYearBudget11LessThanOrEqualTo(BigDecimal value) { this.NextYearBudget11LessThanOrEqualTo = value; return this; } public BigDecimal getNextYearBudget11NotEqualTo() { return NextYearBudget11NotEqualTo; } public GL_Budget2Query setNextYearBudget11NotEqualTo(BigDecimal value) { this.NextYearBudget11NotEqualTo = value; return this; } public ArrayList getNextYearBudget11Between() { return NextYearBudget11Between; } public GL_Budget2Query setNextYearBudget11Between(ArrayList value) { this.NextYearBudget11Between = value; return this; } public ArrayList getNextYearBudget11In() { return NextYearBudget11In; } public GL_Budget2Query setNextYearBudget11In(ArrayList value) { this.NextYearBudget11In = value; return this; } public BigDecimal getNextYearBudget12() { return NextYearBudget12; } public GL_Budget2Query setNextYearBudget12(BigDecimal value) { this.NextYearBudget12 = value; return this; } public BigDecimal getNextYearBudget12GreaterThanOrEqualTo() { return NextYearBudget12GreaterThanOrEqualTo; } public GL_Budget2Query setNextYearBudget12GreaterThanOrEqualTo(BigDecimal value) { this.NextYearBudget12GreaterThanOrEqualTo = value; return this; } public BigDecimal getNextYearBudget12GreaterThan() { return NextYearBudget12GreaterThan; } public GL_Budget2Query setNextYearBudget12GreaterThan(BigDecimal value) { this.NextYearBudget12GreaterThan = value; return this; } public BigDecimal getNextYearBudget12LessThan() { return NextYearBudget12LessThan; } public GL_Budget2Query setNextYearBudget12LessThan(BigDecimal value) { this.NextYearBudget12LessThan = value; return this; } public BigDecimal getNextYearBudget12LessThanOrEqualTo() { return NextYearBudget12LessThanOrEqualTo; } public GL_Budget2Query setNextYearBudget12LessThanOrEqualTo(BigDecimal value) { this.NextYearBudget12LessThanOrEqualTo = value; return this; } public BigDecimal getNextYearBudget12NotEqualTo() { return NextYearBudget12NotEqualTo; } public GL_Budget2Query setNextYearBudget12NotEqualTo(BigDecimal value) { this.NextYearBudget12NotEqualTo = value; return this; } public ArrayList getNextYearBudget12Between() { return NextYearBudget12Between; } public GL_Budget2Query setNextYearBudget12Between(ArrayList value) { this.NextYearBudget12Between = value; return this; } public ArrayList getNextYearBudget12In() { return NextYearBudget12In; } public GL_Budget2Query setNextYearBudget12In(ArrayList value) { this.NextYearBudget12In = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class GL_Budget3Query extends QueryDb implements IReturn> { public String GLBudgetID = null; public String GLBudgetIDStartsWith = null; public String GLBudgetIDEndsWith = null; public String GLBudgetIDContains = null; public String GLBudgetIDLike = null; public ArrayList GLBudgetIDBetween = null; public ArrayList GLBudgetIDIn = null; public String GLLedgerID = null; public String GLLedgerIDStartsWith = null; public String GLLedgerIDEndsWith = null; public String GLLedgerIDContains = null; public String GLLedgerIDLike = null; public ArrayList GLLedgerIDBetween = null; public ArrayList GLLedgerIDIn = null; public BigDecimal LastYearBudget1 = null; public BigDecimal LastYearBudget1GreaterThanOrEqualTo = null; public BigDecimal LastYearBudget1GreaterThan = null; public BigDecimal LastYearBudget1LessThan = null; public BigDecimal LastYearBudget1LessThanOrEqualTo = null; public BigDecimal LastYearBudget1NotEqualTo = null; public ArrayList LastYearBudget1Between = null; public ArrayList LastYearBudget1In = null; public BigDecimal LastYearBudget2 = null; public BigDecimal LastYearBudget2GreaterThanOrEqualTo = null; public BigDecimal LastYearBudget2GreaterThan = null; public BigDecimal LastYearBudget2LessThan = null; public BigDecimal LastYearBudget2LessThanOrEqualTo = null; public BigDecimal LastYearBudget2NotEqualTo = null; public ArrayList LastYearBudget2Between = null; public ArrayList LastYearBudget2In = null; public BigDecimal LastYearBudget3 = null; public BigDecimal LastYearBudget3GreaterThanOrEqualTo = null; public BigDecimal LastYearBudget3GreaterThan = null; public BigDecimal LastYearBudget3LessThan = null; public BigDecimal LastYearBudget3LessThanOrEqualTo = null; public BigDecimal LastYearBudget3NotEqualTo = null; public ArrayList LastYearBudget3Between = null; public ArrayList LastYearBudget3In = null; public BigDecimal LastYearBudget4 = null; public BigDecimal LastYearBudget4GreaterThanOrEqualTo = null; public BigDecimal LastYearBudget4GreaterThan = null; public BigDecimal LastYearBudget4LessThan = null; public BigDecimal LastYearBudget4LessThanOrEqualTo = null; public BigDecimal LastYearBudget4NotEqualTo = null; public ArrayList LastYearBudget4Between = null; public ArrayList LastYearBudget4In = null; public BigDecimal LastYearBudget5 = null; public BigDecimal LastYearBudget5GreaterThanOrEqualTo = null; public BigDecimal LastYearBudget5GreaterThan = null; public BigDecimal LastYearBudget5LessThan = null; public BigDecimal LastYearBudget5LessThanOrEqualTo = null; public BigDecimal LastYearBudget5NotEqualTo = null; public ArrayList LastYearBudget5Between = null; public ArrayList LastYearBudget5In = null; public BigDecimal LastYearBudget6 = null; public BigDecimal LastYearBudget6GreaterThanOrEqualTo = null; public BigDecimal LastYearBudget6GreaterThan = null; public BigDecimal LastYearBudget6LessThan = null; public BigDecimal LastYearBudget6LessThanOrEqualTo = null; public BigDecimal LastYearBudget6NotEqualTo = null; public ArrayList LastYearBudget6Between = null; public ArrayList LastYearBudget6In = null; public BigDecimal LastYearBudget7 = null; public BigDecimal LastYearBudget7GreaterThanOrEqualTo = null; public BigDecimal LastYearBudget7GreaterThan = null; public BigDecimal LastYearBudget7LessThan = null; public BigDecimal LastYearBudget7LessThanOrEqualTo = null; public BigDecimal LastYearBudget7NotEqualTo = null; public ArrayList LastYearBudget7Between = null; public ArrayList LastYearBudget7In = null; public BigDecimal LastYearBudget8 = null; public BigDecimal LastYearBudget8GreaterThanOrEqualTo = null; public BigDecimal LastYearBudget8GreaterThan = null; public BigDecimal LastYearBudget8LessThan = null; public BigDecimal LastYearBudget8LessThanOrEqualTo = null; public BigDecimal LastYearBudget8NotEqualTo = null; public ArrayList LastYearBudget8Between = null; public ArrayList LastYearBudget8In = null; public BigDecimal LastYearBudget9 = null; public BigDecimal LastYearBudget9GreaterThanOrEqualTo = null; public BigDecimal LastYearBudget9GreaterThan = null; public BigDecimal LastYearBudget9LessThan = null; public BigDecimal LastYearBudget9LessThanOrEqualTo = null; public BigDecimal LastYearBudget9NotEqualTo = null; public ArrayList LastYearBudget9Between = null; public ArrayList LastYearBudget9In = null; public BigDecimal LastYearBudget10 = null; public BigDecimal LastYearBudget10GreaterThanOrEqualTo = null; public BigDecimal LastYearBudget10GreaterThan = null; public BigDecimal LastYearBudget10LessThan = null; public BigDecimal LastYearBudget10LessThanOrEqualTo = null; public BigDecimal LastYearBudget10NotEqualTo = null; public ArrayList LastYearBudget10Between = null; public ArrayList LastYearBudget10In = null; public BigDecimal LastYearBudget11 = null; public BigDecimal LastYearBudget11GreaterThanOrEqualTo = null; public BigDecimal LastYearBudget11GreaterThan = null; public BigDecimal LastYearBudget11LessThan = null; public BigDecimal LastYearBudget11LessThanOrEqualTo = null; public BigDecimal LastYearBudget11NotEqualTo = null; public ArrayList LastYearBudget11Between = null; public ArrayList LastYearBudget11In = null; public BigDecimal LastYearBudget12 = null; public BigDecimal LastYearBudget12GreaterThanOrEqualTo = null; public BigDecimal LastYearBudget12GreaterThan = null; public BigDecimal LastYearBudget12LessThan = null; public BigDecimal LastYearBudget12LessThanOrEqualTo = null; public BigDecimal LastYearBudget12NotEqualTo = null; public ArrayList LastYearBudget12Between = null; public ArrayList LastYearBudget12In = null; public BigDecimal CurrYearBudget1 = null; public BigDecimal CurrYearBudget1GreaterThanOrEqualTo = null; public BigDecimal CurrYearBudget1GreaterThan = null; public BigDecimal CurrYearBudget1LessThan = null; public BigDecimal CurrYearBudget1LessThanOrEqualTo = null; public BigDecimal CurrYearBudget1NotEqualTo = null; public ArrayList CurrYearBudget1Between = null; public ArrayList CurrYearBudget1In = null; public BigDecimal CurrYearBudget2 = null; public BigDecimal CurrYearBudget2GreaterThanOrEqualTo = null; public BigDecimal CurrYearBudget2GreaterThan = null; public BigDecimal CurrYearBudget2LessThan = null; public BigDecimal CurrYearBudget2LessThanOrEqualTo = null; public BigDecimal CurrYearBudget2NotEqualTo = null; public ArrayList CurrYearBudget2Between = null; public ArrayList CurrYearBudget2In = null; public BigDecimal CurrYearBudget3 = null; public BigDecimal CurrYearBudget3GreaterThanOrEqualTo = null; public BigDecimal CurrYearBudget3GreaterThan = null; public BigDecimal CurrYearBudget3LessThan = null; public BigDecimal CurrYearBudget3LessThanOrEqualTo = null; public BigDecimal CurrYearBudget3NotEqualTo = null; public ArrayList CurrYearBudget3Between = null; public ArrayList CurrYearBudget3In = null; public BigDecimal CurrYearBudget4 = null; public BigDecimal CurrYearBudget4GreaterThanOrEqualTo = null; public BigDecimal CurrYearBudget4GreaterThan = null; public BigDecimal CurrYearBudget4LessThan = null; public BigDecimal CurrYearBudget4LessThanOrEqualTo = null; public BigDecimal CurrYearBudget4NotEqualTo = null; public ArrayList CurrYearBudget4Between = null; public ArrayList CurrYearBudget4In = null; public BigDecimal CurrYearBudget5 = null; public BigDecimal CurrYearBudget5GreaterThanOrEqualTo = null; public BigDecimal CurrYearBudget5GreaterThan = null; public BigDecimal CurrYearBudget5LessThan = null; public BigDecimal CurrYearBudget5LessThanOrEqualTo = null; public BigDecimal CurrYearBudget5NotEqualTo = null; public ArrayList CurrYearBudget5Between = null; public ArrayList CurrYearBudget5In = null; public BigDecimal CurrYearBudget6 = null; public BigDecimal CurrYearBudget6GreaterThanOrEqualTo = null; public BigDecimal CurrYearBudget6GreaterThan = null; public BigDecimal CurrYearBudget6LessThan = null; public BigDecimal CurrYearBudget6LessThanOrEqualTo = null; public BigDecimal CurrYearBudget6NotEqualTo = null; public ArrayList CurrYearBudget6Between = null; public ArrayList CurrYearBudget6In = null; public BigDecimal CurrYearBudget7 = null; public BigDecimal CurrYearBudget7GreaterThanOrEqualTo = null; public BigDecimal CurrYearBudget7GreaterThan = null; public BigDecimal CurrYearBudget7LessThan = null; public BigDecimal CurrYearBudget7LessThanOrEqualTo = null; public BigDecimal CurrYearBudget7NotEqualTo = null; public ArrayList CurrYearBudget7Between = null; public ArrayList CurrYearBudget7In = null; public BigDecimal CurrYearBudget8 = null; public BigDecimal CurrYearBudget8GreaterThanOrEqualTo = null; public BigDecimal CurrYearBudget8GreaterThan = null; public BigDecimal CurrYearBudget8LessThan = null; public BigDecimal CurrYearBudget8LessThanOrEqualTo = null; public BigDecimal CurrYearBudget8NotEqualTo = null; public ArrayList CurrYearBudget8Between = null; public ArrayList CurrYearBudget8In = null; public BigDecimal CurrYearBudget9 = null; public BigDecimal CurrYearBudget9GreaterThanOrEqualTo = null; public BigDecimal CurrYearBudget9GreaterThan = null; public BigDecimal CurrYearBudget9LessThan = null; public BigDecimal CurrYearBudget9LessThanOrEqualTo = null; public BigDecimal CurrYearBudget9NotEqualTo = null; public ArrayList CurrYearBudget9Between = null; public ArrayList CurrYearBudget9In = null; public BigDecimal CurrYearBudget10 = null; public BigDecimal CurrYearBudget10GreaterThanOrEqualTo = null; public BigDecimal CurrYearBudget10GreaterThan = null; public BigDecimal CurrYearBudget10LessThan = null; public BigDecimal CurrYearBudget10LessThanOrEqualTo = null; public BigDecimal CurrYearBudget10NotEqualTo = null; public ArrayList CurrYearBudget10Between = null; public ArrayList CurrYearBudget10In = null; public BigDecimal CurrYearBudget11 = null; public BigDecimal CurrYearBudget11GreaterThanOrEqualTo = null; public BigDecimal CurrYearBudget11GreaterThan = null; public BigDecimal CurrYearBudget11LessThan = null; public BigDecimal CurrYearBudget11LessThanOrEqualTo = null; public BigDecimal CurrYearBudget11NotEqualTo = null; public ArrayList CurrYearBudget11Between = null; public ArrayList CurrYearBudget11In = null; public BigDecimal CurrYearBudget12 = null; public BigDecimal CurrYearBudget12GreaterThanOrEqualTo = null; public BigDecimal CurrYearBudget12GreaterThan = null; public BigDecimal CurrYearBudget12LessThan = null; public BigDecimal CurrYearBudget12LessThanOrEqualTo = null; public BigDecimal CurrYearBudget12NotEqualTo = null; public ArrayList CurrYearBudget12Between = null; public ArrayList CurrYearBudget12In = null; public BigDecimal NextYearBudget1 = null; public BigDecimal NextYearBudget1GreaterThanOrEqualTo = null; public BigDecimal NextYearBudget1GreaterThan = null; public BigDecimal NextYearBudget1LessThan = null; public BigDecimal NextYearBudget1LessThanOrEqualTo = null; public BigDecimal NextYearBudget1NotEqualTo = null; public ArrayList NextYearBudget1Between = null; public ArrayList NextYearBudget1In = null; public BigDecimal NextYearBudget2 = null; public BigDecimal NextYearBudget2GreaterThanOrEqualTo = null; public BigDecimal NextYearBudget2GreaterThan = null; public BigDecimal NextYearBudget2LessThan = null; public BigDecimal NextYearBudget2LessThanOrEqualTo = null; public BigDecimal NextYearBudget2NotEqualTo = null; public ArrayList NextYearBudget2Between = null; public ArrayList NextYearBudget2In = null; public BigDecimal NextYearBudget3 = null; public BigDecimal NextYearBudget3GreaterThanOrEqualTo = null; public BigDecimal NextYearBudget3GreaterThan = null; public BigDecimal NextYearBudget3LessThan = null; public BigDecimal NextYearBudget3LessThanOrEqualTo = null; public BigDecimal NextYearBudget3NotEqualTo = null; public ArrayList NextYearBudget3Between = null; public ArrayList NextYearBudget3In = null; public BigDecimal NextYearBudget4 = null; public BigDecimal NextYearBudget4GreaterThanOrEqualTo = null; public BigDecimal NextYearBudget4GreaterThan = null; public BigDecimal NextYearBudget4LessThan = null; public BigDecimal NextYearBudget4LessThanOrEqualTo = null; public BigDecimal NextYearBudget4NotEqualTo = null; public ArrayList NextYearBudget4Between = null; public ArrayList NextYearBudget4In = null; public BigDecimal NextYearBudget5 = null; public BigDecimal NextYearBudget5GreaterThanOrEqualTo = null; public BigDecimal NextYearBudget5GreaterThan = null; public BigDecimal NextYearBudget5LessThan = null; public BigDecimal NextYearBudget5LessThanOrEqualTo = null; public BigDecimal NextYearBudget5NotEqualTo = null; public ArrayList NextYearBudget5Between = null; public ArrayList NextYearBudget5In = null; public BigDecimal NextYearBudget6 = null; public BigDecimal NextYearBudget6GreaterThanOrEqualTo = null; public BigDecimal NextYearBudget6GreaterThan = null; public BigDecimal NextYearBudget6LessThan = null; public BigDecimal NextYearBudget6LessThanOrEqualTo = null; public BigDecimal NextYearBudget6NotEqualTo = null; public ArrayList NextYearBudget6Between = null; public ArrayList NextYearBudget6In = null; public BigDecimal NextYearBudget7 = null; public BigDecimal NextYearBudget7GreaterThanOrEqualTo = null; public BigDecimal NextYearBudget7GreaterThan = null; public BigDecimal NextYearBudget7LessThan = null; public BigDecimal NextYearBudget7LessThanOrEqualTo = null; public BigDecimal NextYearBudget7NotEqualTo = null; public ArrayList NextYearBudget7Between = null; public ArrayList NextYearBudget7In = null; public BigDecimal NextYearBudget8 = null; public BigDecimal NextYearBudget8GreaterThanOrEqualTo = null; public BigDecimal NextYearBudget8GreaterThan = null; public BigDecimal NextYearBudget8LessThan = null; public BigDecimal NextYearBudget8LessThanOrEqualTo = null; public BigDecimal NextYearBudget8NotEqualTo = null; public ArrayList NextYearBudget8Between = null; public ArrayList NextYearBudget8In = null; public BigDecimal NextYearBudget9 = null; public BigDecimal NextYearBudget9GreaterThanOrEqualTo = null; public BigDecimal NextYearBudget9GreaterThan = null; public BigDecimal NextYearBudget9LessThan = null; public BigDecimal NextYearBudget9LessThanOrEqualTo = null; public BigDecimal NextYearBudget9NotEqualTo = null; public ArrayList NextYearBudget9Between = null; public ArrayList NextYearBudget9In = null; public BigDecimal NextYearBudget10 = null; public BigDecimal NextYearBudget10GreaterThanOrEqualTo = null; public BigDecimal NextYearBudget10GreaterThan = null; public BigDecimal NextYearBudget10LessThan = null; public BigDecimal NextYearBudget10LessThanOrEqualTo = null; public BigDecimal NextYearBudget10NotEqualTo = null; public ArrayList NextYearBudget10Between = null; public ArrayList NextYearBudget10In = null; public BigDecimal NextYearBudget11 = null; public BigDecimal NextYearBudget11GreaterThanOrEqualTo = null; public BigDecimal NextYearBudget11GreaterThan = null; public BigDecimal NextYearBudget11LessThan = null; public BigDecimal NextYearBudget11LessThanOrEqualTo = null; public BigDecimal NextYearBudget11NotEqualTo = null; public ArrayList NextYearBudget11Between = null; public ArrayList NextYearBudget11In = null; public BigDecimal NextYearBudget12 = null; public BigDecimal NextYearBudget12GreaterThanOrEqualTo = null; public BigDecimal NextYearBudget12GreaterThan = null; public BigDecimal NextYearBudget12LessThan = null; public BigDecimal NextYearBudget12LessThanOrEqualTo = null; public BigDecimal NextYearBudget12NotEqualTo = null; public ArrayList NextYearBudget12Between = null; public ArrayList NextYearBudget12In = null; public String getGlBudgetID() { return GLBudgetID; } public GL_Budget3Query setGlBudgetID(String value) { this.GLBudgetID = value; return this; } public String getGlBudgetIDStartsWith() { return GLBudgetIDStartsWith; } public GL_Budget3Query setGlBudgetIDStartsWith(String value) { this.GLBudgetIDStartsWith = value; return this; } public String getGlBudgetIDEndsWith() { return GLBudgetIDEndsWith; } public GL_Budget3Query setGlBudgetIDEndsWith(String value) { this.GLBudgetIDEndsWith = value; return this; } public String getGlBudgetIDContains() { return GLBudgetIDContains; } public GL_Budget3Query setGlBudgetIDContains(String value) { this.GLBudgetIDContains = value; return this; } public String getGlBudgetIDLike() { return GLBudgetIDLike; } public GL_Budget3Query setGlBudgetIDLike(String value) { this.GLBudgetIDLike = value; return this; } public ArrayList getGlBudgetIDBetween() { return GLBudgetIDBetween; } public GL_Budget3Query setGlBudgetIDBetween(ArrayList value) { this.GLBudgetIDBetween = value; return this; } public ArrayList getGlBudgetIDIn() { return GLBudgetIDIn; } public GL_Budget3Query setGlBudgetIDIn(ArrayList value) { this.GLBudgetIDIn = value; return this; } public String getGlLedgerID() { return GLLedgerID; } public GL_Budget3Query setGlLedgerID(String value) { this.GLLedgerID = value; return this; } public String getGlLedgerIDStartsWith() { return GLLedgerIDStartsWith; } public GL_Budget3Query setGlLedgerIDStartsWith(String value) { this.GLLedgerIDStartsWith = value; return this; } public String getGlLedgerIDEndsWith() { return GLLedgerIDEndsWith; } public GL_Budget3Query setGlLedgerIDEndsWith(String value) { this.GLLedgerIDEndsWith = value; return this; } public String getGlLedgerIDContains() { return GLLedgerIDContains; } public GL_Budget3Query setGlLedgerIDContains(String value) { this.GLLedgerIDContains = value; return this; } public String getGlLedgerIDLike() { return GLLedgerIDLike; } public GL_Budget3Query setGlLedgerIDLike(String value) { this.GLLedgerIDLike = value; return this; } public ArrayList getGlLedgerIDBetween() { return GLLedgerIDBetween; } public GL_Budget3Query setGlLedgerIDBetween(ArrayList value) { this.GLLedgerIDBetween = value; return this; } public ArrayList getGlLedgerIDIn() { return GLLedgerIDIn; } public GL_Budget3Query setGlLedgerIDIn(ArrayList value) { this.GLLedgerIDIn = value; return this; } public BigDecimal getLastYearBudget1() { return LastYearBudget1; } public GL_Budget3Query setLastYearBudget1(BigDecimal value) { this.LastYearBudget1 = value; return this; } public BigDecimal getLastYearBudget1GreaterThanOrEqualTo() { return LastYearBudget1GreaterThanOrEqualTo; } public GL_Budget3Query setLastYearBudget1GreaterThanOrEqualTo(BigDecimal value) { this.LastYearBudget1GreaterThanOrEqualTo = value; return this; } public BigDecimal getLastYearBudget1GreaterThan() { return LastYearBudget1GreaterThan; } public GL_Budget3Query setLastYearBudget1GreaterThan(BigDecimal value) { this.LastYearBudget1GreaterThan = value; return this; } public BigDecimal getLastYearBudget1LessThan() { return LastYearBudget1LessThan; } public GL_Budget3Query setLastYearBudget1LessThan(BigDecimal value) { this.LastYearBudget1LessThan = value; return this; } public BigDecimal getLastYearBudget1LessThanOrEqualTo() { return LastYearBudget1LessThanOrEqualTo; } public GL_Budget3Query setLastYearBudget1LessThanOrEqualTo(BigDecimal value) { this.LastYearBudget1LessThanOrEqualTo = value; return this; } public BigDecimal getLastYearBudget1NotEqualTo() { return LastYearBudget1NotEqualTo; } public GL_Budget3Query setLastYearBudget1NotEqualTo(BigDecimal value) { this.LastYearBudget1NotEqualTo = value; return this; } public ArrayList getLastYearBudget1Between() { return LastYearBudget1Between; } public GL_Budget3Query setLastYearBudget1Between(ArrayList value) { this.LastYearBudget1Between = value; return this; } public ArrayList getLastYearBudget1In() { return LastYearBudget1In; } public GL_Budget3Query setLastYearBudget1In(ArrayList value) { this.LastYearBudget1In = value; return this; } public BigDecimal getLastYearBudget2() { return LastYearBudget2; } public GL_Budget3Query setLastYearBudget2(BigDecimal value) { this.LastYearBudget2 = value; return this; } public BigDecimal getLastYearBudget2GreaterThanOrEqualTo() { return LastYearBudget2GreaterThanOrEqualTo; } public GL_Budget3Query setLastYearBudget2GreaterThanOrEqualTo(BigDecimal value) { this.LastYearBudget2GreaterThanOrEqualTo = value; return this; } public BigDecimal getLastYearBudget2GreaterThan() { return LastYearBudget2GreaterThan; } public GL_Budget3Query setLastYearBudget2GreaterThan(BigDecimal value) { this.LastYearBudget2GreaterThan = value; return this; } public BigDecimal getLastYearBudget2LessThan() { return LastYearBudget2LessThan; } public GL_Budget3Query setLastYearBudget2LessThan(BigDecimal value) { this.LastYearBudget2LessThan = value; return this; } public BigDecimal getLastYearBudget2LessThanOrEqualTo() { return LastYearBudget2LessThanOrEqualTo; } public GL_Budget3Query setLastYearBudget2LessThanOrEqualTo(BigDecimal value) { this.LastYearBudget2LessThanOrEqualTo = value; return this; } public BigDecimal getLastYearBudget2NotEqualTo() { return LastYearBudget2NotEqualTo; } public GL_Budget3Query setLastYearBudget2NotEqualTo(BigDecimal value) { this.LastYearBudget2NotEqualTo = value; return this; } public ArrayList getLastYearBudget2Between() { return LastYearBudget2Between; } public GL_Budget3Query setLastYearBudget2Between(ArrayList value) { this.LastYearBudget2Between = value; return this; } public ArrayList getLastYearBudget2In() { return LastYearBudget2In; } public GL_Budget3Query setLastYearBudget2In(ArrayList value) { this.LastYearBudget2In = value; return this; } public BigDecimal getLastYearBudget3() { return LastYearBudget3; } public GL_Budget3Query setLastYearBudget3(BigDecimal value) { this.LastYearBudget3 = value; return this; } public BigDecimal getLastYearBudget3GreaterThanOrEqualTo() { return LastYearBudget3GreaterThanOrEqualTo; } public GL_Budget3Query setLastYearBudget3GreaterThanOrEqualTo(BigDecimal value) { this.LastYearBudget3GreaterThanOrEqualTo = value; return this; } public BigDecimal getLastYearBudget3GreaterThan() { return LastYearBudget3GreaterThan; } public GL_Budget3Query setLastYearBudget3GreaterThan(BigDecimal value) { this.LastYearBudget3GreaterThan = value; return this; } public BigDecimal getLastYearBudget3LessThan() { return LastYearBudget3LessThan; } public GL_Budget3Query setLastYearBudget3LessThan(BigDecimal value) { this.LastYearBudget3LessThan = value; return this; } public BigDecimal getLastYearBudget3LessThanOrEqualTo() { return LastYearBudget3LessThanOrEqualTo; } public GL_Budget3Query setLastYearBudget3LessThanOrEqualTo(BigDecimal value) { this.LastYearBudget3LessThanOrEqualTo = value; return this; } public BigDecimal getLastYearBudget3NotEqualTo() { return LastYearBudget3NotEqualTo; } public GL_Budget3Query setLastYearBudget3NotEqualTo(BigDecimal value) { this.LastYearBudget3NotEqualTo = value; return this; } public ArrayList getLastYearBudget3Between() { return LastYearBudget3Between; } public GL_Budget3Query setLastYearBudget3Between(ArrayList value) { this.LastYearBudget3Between = value; return this; } public ArrayList getLastYearBudget3In() { return LastYearBudget3In; } public GL_Budget3Query setLastYearBudget3In(ArrayList value) { this.LastYearBudget3In = value; return this; } public BigDecimal getLastYearBudget4() { return LastYearBudget4; } public GL_Budget3Query setLastYearBudget4(BigDecimal value) { this.LastYearBudget4 = value; return this; } public BigDecimal getLastYearBudget4GreaterThanOrEqualTo() { return LastYearBudget4GreaterThanOrEqualTo; } public GL_Budget3Query setLastYearBudget4GreaterThanOrEqualTo(BigDecimal value) { this.LastYearBudget4GreaterThanOrEqualTo = value; return this; } public BigDecimal getLastYearBudget4GreaterThan() { return LastYearBudget4GreaterThan; } public GL_Budget3Query setLastYearBudget4GreaterThan(BigDecimal value) { this.LastYearBudget4GreaterThan = value; return this; } public BigDecimal getLastYearBudget4LessThan() { return LastYearBudget4LessThan; } public GL_Budget3Query setLastYearBudget4LessThan(BigDecimal value) { this.LastYearBudget4LessThan = value; return this; } public BigDecimal getLastYearBudget4LessThanOrEqualTo() { return LastYearBudget4LessThanOrEqualTo; } public GL_Budget3Query setLastYearBudget4LessThanOrEqualTo(BigDecimal value) { this.LastYearBudget4LessThanOrEqualTo = value; return this; } public BigDecimal getLastYearBudget4NotEqualTo() { return LastYearBudget4NotEqualTo; } public GL_Budget3Query setLastYearBudget4NotEqualTo(BigDecimal value) { this.LastYearBudget4NotEqualTo = value; return this; } public ArrayList getLastYearBudget4Between() { return LastYearBudget4Between; } public GL_Budget3Query setLastYearBudget4Between(ArrayList value) { this.LastYearBudget4Between = value; return this; } public ArrayList getLastYearBudget4In() { return LastYearBudget4In; } public GL_Budget3Query setLastYearBudget4In(ArrayList value) { this.LastYearBudget4In = value; return this; } public BigDecimal getLastYearBudget5() { return LastYearBudget5; } public GL_Budget3Query setLastYearBudget5(BigDecimal value) { this.LastYearBudget5 = value; return this; } public BigDecimal getLastYearBudget5GreaterThanOrEqualTo() { return LastYearBudget5GreaterThanOrEqualTo; } public GL_Budget3Query setLastYearBudget5GreaterThanOrEqualTo(BigDecimal value) { this.LastYearBudget5GreaterThanOrEqualTo = value; return this; } public BigDecimal getLastYearBudget5GreaterThan() { return LastYearBudget5GreaterThan; } public GL_Budget3Query setLastYearBudget5GreaterThan(BigDecimal value) { this.LastYearBudget5GreaterThan = value; return this; } public BigDecimal getLastYearBudget5LessThan() { return LastYearBudget5LessThan; } public GL_Budget3Query setLastYearBudget5LessThan(BigDecimal value) { this.LastYearBudget5LessThan = value; return this; } public BigDecimal getLastYearBudget5LessThanOrEqualTo() { return LastYearBudget5LessThanOrEqualTo; } public GL_Budget3Query setLastYearBudget5LessThanOrEqualTo(BigDecimal value) { this.LastYearBudget5LessThanOrEqualTo = value; return this; } public BigDecimal getLastYearBudget5NotEqualTo() { return LastYearBudget5NotEqualTo; } public GL_Budget3Query setLastYearBudget5NotEqualTo(BigDecimal value) { this.LastYearBudget5NotEqualTo = value; return this; } public ArrayList getLastYearBudget5Between() { return LastYearBudget5Between; } public GL_Budget3Query setLastYearBudget5Between(ArrayList value) { this.LastYearBudget5Between = value; return this; } public ArrayList getLastYearBudget5In() { return LastYearBudget5In; } public GL_Budget3Query setLastYearBudget5In(ArrayList value) { this.LastYearBudget5In = value; return this; } public BigDecimal getLastYearBudget6() { return LastYearBudget6; } public GL_Budget3Query setLastYearBudget6(BigDecimal value) { this.LastYearBudget6 = value; return this; } public BigDecimal getLastYearBudget6GreaterThanOrEqualTo() { return LastYearBudget6GreaterThanOrEqualTo; } public GL_Budget3Query setLastYearBudget6GreaterThanOrEqualTo(BigDecimal value) { this.LastYearBudget6GreaterThanOrEqualTo = value; return this; } public BigDecimal getLastYearBudget6GreaterThan() { return LastYearBudget6GreaterThan; } public GL_Budget3Query setLastYearBudget6GreaterThan(BigDecimal value) { this.LastYearBudget6GreaterThan = value; return this; } public BigDecimal getLastYearBudget6LessThan() { return LastYearBudget6LessThan; } public GL_Budget3Query setLastYearBudget6LessThan(BigDecimal value) { this.LastYearBudget6LessThan = value; return this; } public BigDecimal getLastYearBudget6LessThanOrEqualTo() { return LastYearBudget6LessThanOrEqualTo; } public GL_Budget3Query setLastYearBudget6LessThanOrEqualTo(BigDecimal value) { this.LastYearBudget6LessThanOrEqualTo = value; return this; } public BigDecimal getLastYearBudget6NotEqualTo() { return LastYearBudget6NotEqualTo; } public GL_Budget3Query setLastYearBudget6NotEqualTo(BigDecimal value) { this.LastYearBudget6NotEqualTo = value; return this; } public ArrayList getLastYearBudget6Between() { return LastYearBudget6Between; } public GL_Budget3Query setLastYearBudget6Between(ArrayList value) { this.LastYearBudget6Between = value; return this; } public ArrayList getLastYearBudget6In() { return LastYearBudget6In; } public GL_Budget3Query setLastYearBudget6In(ArrayList value) { this.LastYearBudget6In = value; return this; } public BigDecimal getLastYearBudget7() { return LastYearBudget7; } public GL_Budget3Query setLastYearBudget7(BigDecimal value) { this.LastYearBudget7 = value; return this; } public BigDecimal getLastYearBudget7GreaterThanOrEqualTo() { return LastYearBudget7GreaterThanOrEqualTo; } public GL_Budget3Query setLastYearBudget7GreaterThanOrEqualTo(BigDecimal value) { this.LastYearBudget7GreaterThanOrEqualTo = value; return this; } public BigDecimal getLastYearBudget7GreaterThan() { return LastYearBudget7GreaterThan; } public GL_Budget3Query setLastYearBudget7GreaterThan(BigDecimal value) { this.LastYearBudget7GreaterThan = value; return this; } public BigDecimal getLastYearBudget7LessThan() { return LastYearBudget7LessThan; } public GL_Budget3Query setLastYearBudget7LessThan(BigDecimal value) { this.LastYearBudget7LessThan = value; return this; } public BigDecimal getLastYearBudget7LessThanOrEqualTo() { return LastYearBudget7LessThanOrEqualTo; } public GL_Budget3Query setLastYearBudget7LessThanOrEqualTo(BigDecimal value) { this.LastYearBudget7LessThanOrEqualTo = value; return this; } public BigDecimal getLastYearBudget7NotEqualTo() { return LastYearBudget7NotEqualTo; } public GL_Budget3Query setLastYearBudget7NotEqualTo(BigDecimal value) { this.LastYearBudget7NotEqualTo = value; return this; } public ArrayList getLastYearBudget7Between() { return LastYearBudget7Between; } public GL_Budget3Query setLastYearBudget7Between(ArrayList value) { this.LastYearBudget7Between = value; return this; } public ArrayList getLastYearBudget7In() { return LastYearBudget7In; } public GL_Budget3Query setLastYearBudget7In(ArrayList value) { this.LastYearBudget7In = value; return this; } public BigDecimal getLastYearBudget8() { return LastYearBudget8; } public GL_Budget3Query setLastYearBudget8(BigDecimal value) { this.LastYearBudget8 = value; return this; } public BigDecimal getLastYearBudget8GreaterThanOrEqualTo() { return LastYearBudget8GreaterThanOrEqualTo; } public GL_Budget3Query setLastYearBudget8GreaterThanOrEqualTo(BigDecimal value) { this.LastYearBudget8GreaterThanOrEqualTo = value; return this; } public BigDecimal getLastYearBudget8GreaterThan() { return LastYearBudget8GreaterThan; } public GL_Budget3Query setLastYearBudget8GreaterThan(BigDecimal value) { this.LastYearBudget8GreaterThan = value; return this; } public BigDecimal getLastYearBudget8LessThan() { return LastYearBudget8LessThan; } public GL_Budget3Query setLastYearBudget8LessThan(BigDecimal value) { this.LastYearBudget8LessThan = value; return this; } public BigDecimal getLastYearBudget8LessThanOrEqualTo() { return LastYearBudget8LessThanOrEqualTo; } public GL_Budget3Query setLastYearBudget8LessThanOrEqualTo(BigDecimal value) { this.LastYearBudget8LessThanOrEqualTo = value; return this; } public BigDecimal getLastYearBudget8NotEqualTo() { return LastYearBudget8NotEqualTo; } public GL_Budget3Query setLastYearBudget8NotEqualTo(BigDecimal value) { this.LastYearBudget8NotEqualTo = value; return this; } public ArrayList getLastYearBudget8Between() { return LastYearBudget8Between; } public GL_Budget3Query setLastYearBudget8Between(ArrayList value) { this.LastYearBudget8Between = value; return this; } public ArrayList getLastYearBudget8In() { return LastYearBudget8In; } public GL_Budget3Query setLastYearBudget8In(ArrayList value) { this.LastYearBudget8In = value; return this; } public BigDecimal getLastYearBudget9() { return LastYearBudget9; } public GL_Budget3Query setLastYearBudget9(BigDecimal value) { this.LastYearBudget9 = value; return this; } public BigDecimal getLastYearBudget9GreaterThanOrEqualTo() { return LastYearBudget9GreaterThanOrEqualTo; } public GL_Budget3Query setLastYearBudget9GreaterThanOrEqualTo(BigDecimal value) { this.LastYearBudget9GreaterThanOrEqualTo = value; return this; } public BigDecimal getLastYearBudget9GreaterThan() { return LastYearBudget9GreaterThan; } public GL_Budget3Query setLastYearBudget9GreaterThan(BigDecimal value) { this.LastYearBudget9GreaterThan = value; return this; } public BigDecimal getLastYearBudget9LessThan() { return LastYearBudget9LessThan; } public GL_Budget3Query setLastYearBudget9LessThan(BigDecimal value) { this.LastYearBudget9LessThan = value; return this; } public BigDecimal getLastYearBudget9LessThanOrEqualTo() { return LastYearBudget9LessThanOrEqualTo; } public GL_Budget3Query setLastYearBudget9LessThanOrEqualTo(BigDecimal value) { this.LastYearBudget9LessThanOrEqualTo = value; return this; } public BigDecimal getLastYearBudget9NotEqualTo() { return LastYearBudget9NotEqualTo; } public GL_Budget3Query setLastYearBudget9NotEqualTo(BigDecimal value) { this.LastYearBudget9NotEqualTo = value; return this; } public ArrayList getLastYearBudget9Between() { return LastYearBudget9Between; } public GL_Budget3Query setLastYearBudget9Between(ArrayList value) { this.LastYearBudget9Between = value; return this; } public ArrayList getLastYearBudget9In() { return LastYearBudget9In; } public GL_Budget3Query setLastYearBudget9In(ArrayList value) { this.LastYearBudget9In = value; return this; } public BigDecimal getLastYearBudget10() { return LastYearBudget10; } public GL_Budget3Query setLastYearBudget10(BigDecimal value) { this.LastYearBudget10 = value; return this; } public BigDecimal getLastYearBudget10GreaterThanOrEqualTo() { return LastYearBudget10GreaterThanOrEqualTo; } public GL_Budget3Query setLastYearBudget10GreaterThanOrEqualTo(BigDecimal value) { this.LastYearBudget10GreaterThanOrEqualTo = value; return this; } public BigDecimal getLastYearBudget10GreaterThan() { return LastYearBudget10GreaterThan; } public GL_Budget3Query setLastYearBudget10GreaterThan(BigDecimal value) { this.LastYearBudget10GreaterThan = value; return this; } public BigDecimal getLastYearBudget10LessThan() { return LastYearBudget10LessThan; } public GL_Budget3Query setLastYearBudget10LessThan(BigDecimal value) { this.LastYearBudget10LessThan = value; return this; } public BigDecimal getLastYearBudget10LessThanOrEqualTo() { return LastYearBudget10LessThanOrEqualTo; } public GL_Budget3Query setLastYearBudget10LessThanOrEqualTo(BigDecimal value) { this.LastYearBudget10LessThanOrEqualTo = value; return this; } public BigDecimal getLastYearBudget10NotEqualTo() { return LastYearBudget10NotEqualTo; } public GL_Budget3Query setLastYearBudget10NotEqualTo(BigDecimal value) { this.LastYearBudget10NotEqualTo = value; return this; } public ArrayList getLastYearBudget10Between() { return LastYearBudget10Between; } public GL_Budget3Query setLastYearBudget10Between(ArrayList value) { this.LastYearBudget10Between = value; return this; } public ArrayList getLastYearBudget10In() { return LastYearBudget10In; } public GL_Budget3Query setLastYearBudget10In(ArrayList value) { this.LastYearBudget10In = value; return this; } public BigDecimal getLastYearBudget11() { return LastYearBudget11; } public GL_Budget3Query setLastYearBudget11(BigDecimal value) { this.LastYearBudget11 = value; return this; } public BigDecimal getLastYearBudget11GreaterThanOrEqualTo() { return LastYearBudget11GreaterThanOrEqualTo; } public GL_Budget3Query setLastYearBudget11GreaterThanOrEqualTo(BigDecimal value) { this.LastYearBudget11GreaterThanOrEqualTo = value; return this; } public BigDecimal getLastYearBudget11GreaterThan() { return LastYearBudget11GreaterThan; } public GL_Budget3Query setLastYearBudget11GreaterThan(BigDecimal value) { this.LastYearBudget11GreaterThan = value; return this; } public BigDecimal getLastYearBudget11LessThan() { return LastYearBudget11LessThan; } public GL_Budget3Query setLastYearBudget11LessThan(BigDecimal value) { this.LastYearBudget11LessThan = value; return this; } public BigDecimal getLastYearBudget11LessThanOrEqualTo() { return LastYearBudget11LessThanOrEqualTo; } public GL_Budget3Query setLastYearBudget11LessThanOrEqualTo(BigDecimal value) { this.LastYearBudget11LessThanOrEqualTo = value; return this; } public BigDecimal getLastYearBudget11NotEqualTo() { return LastYearBudget11NotEqualTo; } public GL_Budget3Query setLastYearBudget11NotEqualTo(BigDecimal value) { this.LastYearBudget11NotEqualTo = value; return this; } public ArrayList getLastYearBudget11Between() { return LastYearBudget11Between; } public GL_Budget3Query setLastYearBudget11Between(ArrayList value) { this.LastYearBudget11Between = value; return this; } public ArrayList getLastYearBudget11In() { return LastYearBudget11In; } public GL_Budget3Query setLastYearBudget11In(ArrayList value) { this.LastYearBudget11In = value; return this; } public BigDecimal getLastYearBudget12() { return LastYearBudget12; } public GL_Budget3Query setLastYearBudget12(BigDecimal value) { this.LastYearBudget12 = value; return this; } public BigDecimal getLastYearBudget12GreaterThanOrEqualTo() { return LastYearBudget12GreaterThanOrEqualTo; } public GL_Budget3Query setLastYearBudget12GreaterThanOrEqualTo(BigDecimal value) { this.LastYearBudget12GreaterThanOrEqualTo = value; return this; } public BigDecimal getLastYearBudget12GreaterThan() { return LastYearBudget12GreaterThan; } public GL_Budget3Query setLastYearBudget12GreaterThan(BigDecimal value) { this.LastYearBudget12GreaterThan = value; return this; } public BigDecimal getLastYearBudget12LessThan() { return LastYearBudget12LessThan; } public GL_Budget3Query setLastYearBudget12LessThan(BigDecimal value) { this.LastYearBudget12LessThan = value; return this; } public BigDecimal getLastYearBudget12LessThanOrEqualTo() { return LastYearBudget12LessThanOrEqualTo; } public GL_Budget3Query setLastYearBudget12LessThanOrEqualTo(BigDecimal value) { this.LastYearBudget12LessThanOrEqualTo = value; return this; } public BigDecimal getLastYearBudget12NotEqualTo() { return LastYearBudget12NotEqualTo; } public GL_Budget3Query setLastYearBudget12NotEqualTo(BigDecimal value) { this.LastYearBudget12NotEqualTo = value; return this; } public ArrayList getLastYearBudget12Between() { return LastYearBudget12Between; } public GL_Budget3Query setLastYearBudget12Between(ArrayList value) { this.LastYearBudget12Between = value; return this; } public ArrayList getLastYearBudget12In() { return LastYearBudget12In; } public GL_Budget3Query setLastYearBudget12In(ArrayList value) { this.LastYearBudget12In = value; return this; } public BigDecimal getCurrYearBudget1() { return CurrYearBudget1; } public GL_Budget3Query setCurrYearBudget1(BigDecimal value) { this.CurrYearBudget1 = value; return this; } public BigDecimal getCurrYearBudget1GreaterThanOrEqualTo() { return CurrYearBudget1GreaterThanOrEqualTo; } public GL_Budget3Query setCurrYearBudget1GreaterThanOrEqualTo(BigDecimal value) { this.CurrYearBudget1GreaterThanOrEqualTo = value; return this; } public BigDecimal getCurrYearBudget1GreaterThan() { return CurrYearBudget1GreaterThan; } public GL_Budget3Query setCurrYearBudget1GreaterThan(BigDecimal value) { this.CurrYearBudget1GreaterThan = value; return this; } public BigDecimal getCurrYearBudget1LessThan() { return CurrYearBudget1LessThan; } public GL_Budget3Query setCurrYearBudget1LessThan(BigDecimal value) { this.CurrYearBudget1LessThan = value; return this; } public BigDecimal getCurrYearBudget1LessThanOrEqualTo() { return CurrYearBudget1LessThanOrEqualTo; } public GL_Budget3Query setCurrYearBudget1LessThanOrEqualTo(BigDecimal value) { this.CurrYearBudget1LessThanOrEqualTo = value; return this; } public BigDecimal getCurrYearBudget1NotEqualTo() { return CurrYearBudget1NotEqualTo; } public GL_Budget3Query setCurrYearBudget1NotEqualTo(BigDecimal value) { this.CurrYearBudget1NotEqualTo = value; return this; } public ArrayList getCurrYearBudget1Between() { return CurrYearBudget1Between; } public GL_Budget3Query setCurrYearBudget1Between(ArrayList value) { this.CurrYearBudget1Between = value; return this; } public ArrayList getCurrYearBudget1In() { return CurrYearBudget1In; } public GL_Budget3Query setCurrYearBudget1In(ArrayList value) { this.CurrYearBudget1In = value; return this; } public BigDecimal getCurrYearBudget2() { return CurrYearBudget2; } public GL_Budget3Query setCurrYearBudget2(BigDecimal value) { this.CurrYearBudget2 = value; return this; } public BigDecimal getCurrYearBudget2GreaterThanOrEqualTo() { return CurrYearBudget2GreaterThanOrEqualTo; } public GL_Budget3Query setCurrYearBudget2GreaterThanOrEqualTo(BigDecimal value) { this.CurrYearBudget2GreaterThanOrEqualTo = value; return this; } public BigDecimal getCurrYearBudget2GreaterThan() { return CurrYearBudget2GreaterThan; } public GL_Budget3Query setCurrYearBudget2GreaterThan(BigDecimal value) { this.CurrYearBudget2GreaterThan = value; return this; } public BigDecimal getCurrYearBudget2LessThan() { return CurrYearBudget2LessThan; } public GL_Budget3Query setCurrYearBudget2LessThan(BigDecimal value) { this.CurrYearBudget2LessThan = value; return this; } public BigDecimal getCurrYearBudget2LessThanOrEqualTo() { return CurrYearBudget2LessThanOrEqualTo; } public GL_Budget3Query setCurrYearBudget2LessThanOrEqualTo(BigDecimal value) { this.CurrYearBudget2LessThanOrEqualTo = value; return this; } public BigDecimal getCurrYearBudget2NotEqualTo() { return CurrYearBudget2NotEqualTo; } public GL_Budget3Query setCurrYearBudget2NotEqualTo(BigDecimal value) { this.CurrYearBudget2NotEqualTo = value; return this; } public ArrayList getCurrYearBudget2Between() { return CurrYearBudget2Between; } public GL_Budget3Query setCurrYearBudget2Between(ArrayList value) { this.CurrYearBudget2Between = value; return this; } public ArrayList getCurrYearBudget2In() { return CurrYearBudget2In; } public GL_Budget3Query setCurrYearBudget2In(ArrayList value) { this.CurrYearBudget2In = value; return this; } public BigDecimal getCurrYearBudget3() { return CurrYearBudget3; } public GL_Budget3Query setCurrYearBudget3(BigDecimal value) { this.CurrYearBudget3 = value; return this; } public BigDecimal getCurrYearBudget3GreaterThanOrEqualTo() { return CurrYearBudget3GreaterThanOrEqualTo; } public GL_Budget3Query setCurrYearBudget3GreaterThanOrEqualTo(BigDecimal value) { this.CurrYearBudget3GreaterThanOrEqualTo = value; return this; } public BigDecimal getCurrYearBudget3GreaterThan() { return CurrYearBudget3GreaterThan; } public GL_Budget3Query setCurrYearBudget3GreaterThan(BigDecimal value) { this.CurrYearBudget3GreaterThan = value; return this; } public BigDecimal getCurrYearBudget3LessThan() { return CurrYearBudget3LessThan; } public GL_Budget3Query setCurrYearBudget3LessThan(BigDecimal value) { this.CurrYearBudget3LessThan = value; return this; } public BigDecimal getCurrYearBudget3LessThanOrEqualTo() { return CurrYearBudget3LessThanOrEqualTo; } public GL_Budget3Query setCurrYearBudget3LessThanOrEqualTo(BigDecimal value) { this.CurrYearBudget3LessThanOrEqualTo = value; return this; } public BigDecimal getCurrYearBudget3NotEqualTo() { return CurrYearBudget3NotEqualTo; } public GL_Budget3Query setCurrYearBudget3NotEqualTo(BigDecimal value) { this.CurrYearBudget3NotEqualTo = value; return this; } public ArrayList getCurrYearBudget3Between() { return CurrYearBudget3Between; } public GL_Budget3Query setCurrYearBudget3Between(ArrayList value) { this.CurrYearBudget3Between = value; return this; } public ArrayList getCurrYearBudget3In() { return CurrYearBudget3In; } public GL_Budget3Query setCurrYearBudget3In(ArrayList value) { this.CurrYearBudget3In = value; return this; } public BigDecimal getCurrYearBudget4() { return CurrYearBudget4; } public GL_Budget3Query setCurrYearBudget4(BigDecimal value) { this.CurrYearBudget4 = value; return this; } public BigDecimal getCurrYearBudget4GreaterThanOrEqualTo() { return CurrYearBudget4GreaterThanOrEqualTo; } public GL_Budget3Query setCurrYearBudget4GreaterThanOrEqualTo(BigDecimal value) { this.CurrYearBudget4GreaterThanOrEqualTo = value; return this; } public BigDecimal getCurrYearBudget4GreaterThan() { return CurrYearBudget4GreaterThan; } public GL_Budget3Query setCurrYearBudget4GreaterThan(BigDecimal value) { this.CurrYearBudget4GreaterThan = value; return this; } public BigDecimal getCurrYearBudget4LessThan() { return CurrYearBudget4LessThan; } public GL_Budget3Query setCurrYearBudget4LessThan(BigDecimal value) { this.CurrYearBudget4LessThan = value; return this; } public BigDecimal getCurrYearBudget4LessThanOrEqualTo() { return CurrYearBudget4LessThanOrEqualTo; } public GL_Budget3Query setCurrYearBudget4LessThanOrEqualTo(BigDecimal value) { this.CurrYearBudget4LessThanOrEqualTo = value; return this; } public BigDecimal getCurrYearBudget4NotEqualTo() { return CurrYearBudget4NotEqualTo; } public GL_Budget3Query setCurrYearBudget4NotEqualTo(BigDecimal value) { this.CurrYearBudget4NotEqualTo = value; return this; } public ArrayList getCurrYearBudget4Between() { return CurrYearBudget4Between; } public GL_Budget3Query setCurrYearBudget4Between(ArrayList value) { this.CurrYearBudget4Between = value; return this; } public ArrayList getCurrYearBudget4In() { return CurrYearBudget4In; } public GL_Budget3Query setCurrYearBudget4In(ArrayList value) { this.CurrYearBudget4In = value; return this; } public BigDecimal getCurrYearBudget5() { return CurrYearBudget5; } public GL_Budget3Query setCurrYearBudget5(BigDecimal value) { this.CurrYearBudget5 = value; return this; } public BigDecimal getCurrYearBudget5GreaterThanOrEqualTo() { return CurrYearBudget5GreaterThanOrEqualTo; } public GL_Budget3Query setCurrYearBudget5GreaterThanOrEqualTo(BigDecimal value) { this.CurrYearBudget5GreaterThanOrEqualTo = value; return this; } public BigDecimal getCurrYearBudget5GreaterThan() { return CurrYearBudget5GreaterThan; } public GL_Budget3Query setCurrYearBudget5GreaterThan(BigDecimal value) { this.CurrYearBudget5GreaterThan = value; return this; } public BigDecimal getCurrYearBudget5LessThan() { return CurrYearBudget5LessThan; } public GL_Budget3Query setCurrYearBudget5LessThan(BigDecimal value) { this.CurrYearBudget5LessThan = value; return this; } public BigDecimal getCurrYearBudget5LessThanOrEqualTo() { return CurrYearBudget5LessThanOrEqualTo; } public GL_Budget3Query setCurrYearBudget5LessThanOrEqualTo(BigDecimal value) { this.CurrYearBudget5LessThanOrEqualTo = value; return this; } public BigDecimal getCurrYearBudget5NotEqualTo() { return CurrYearBudget5NotEqualTo; } public GL_Budget3Query setCurrYearBudget5NotEqualTo(BigDecimal value) { this.CurrYearBudget5NotEqualTo = value; return this; } public ArrayList getCurrYearBudget5Between() { return CurrYearBudget5Between; } public GL_Budget3Query setCurrYearBudget5Between(ArrayList value) { this.CurrYearBudget5Between = value; return this; } public ArrayList getCurrYearBudget5In() { return CurrYearBudget5In; } public GL_Budget3Query setCurrYearBudget5In(ArrayList value) { this.CurrYearBudget5In = value; return this; } public BigDecimal getCurrYearBudget6() { return CurrYearBudget6; } public GL_Budget3Query setCurrYearBudget6(BigDecimal value) { this.CurrYearBudget6 = value; return this; } public BigDecimal getCurrYearBudget6GreaterThanOrEqualTo() { return CurrYearBudget6GreaterThanOrEqualTo; } public GL_Budget3Query setCurrYearBudget6GreaterThanOrEqualTo(BigDecimal value) { this.CurrYearBudget6GreaterThanOrEqualTo = value; return this; } public BigDecimal getCurrYearBudget6GreaterThan() { return CurrYearBudget6GreaterThan; } public GL_Budget3Query setCurrYearBudget6GreaterThan(BigDecimal value) { this.CurrYearBudget6GreaterThan = value; return this; } public BigDecimal getCurrYearBudget6LessThan() { return CurrYearBudget6LessThan; } public GL_Budget3Query setCurrYearBudget6LessThan(BigDecimal value) { this.CurrYearBudget6LessThan = value; return this; } public BigDecimal getCurrYearBudget6LessThanOrEqualTo() { return CurrYearBudget6LessThanOrEqualTo; } public GL_Budget3Query setCurrYearBudget6LessThanOrEqualTo(BigDecimal value) { this.CurrYearBudget6LessThanOrEqualTo = value; return this; } public BigDecimal getCurrYearBudget6NotEqualTo() { return CurrYearBudget6NotEqualTo; } public GL_Budget3Query setCurrYearBudget6NotEqualTo(BigDecimal value) { this.CurrYearBudget6NotEqualTo = value; return this; } public ArrayList getCurrYearBudget6Between() { return CurrYearBudget6Between; } public GL_Budget3Query setCurrYearBudget6Between(ArrayList value) { this.CurrYearBudget6Between = value; return this; } public ArrayList getCurrYearBudget6In() { return CurrYearBudget6In; } public GL_Budget3Query setCurrYearBudget6In(ArrayList value) { this.CurrYearBudget6In = value; return this; } public BigDecimal getCurrYearBudget7() { return CurrYearBudget7; } public GL_Budget3Query setCurrYearBudget7(BigDecimal value) { this.CurrYearBudget7 = value; return this; } public BigDecimal getCurrYearBudget7GreaterThanOrEqualTo() { return CurrYearBudget7GreaterThanOrEqualTo; } public GL_Budget3Query setCurrYearBudget7GreaterThanOrEqualTo(BigDecimal value) { this.CurrYearBudget7GreaterThanOrEqualTo = value; return this; } public BigDecimal getCurrYearBudget7GreaterThan() { return CurrYearBudget7GreaterThan; } public GL_Budget3Query setCurrYearBudget7GreaterThan(BigDecimal value) { this.CurrYearBudget7GreaterThan = value; return this; } public BigDecimal getCurrYearBudget7LessThan() { return CurrYearBudget7LessThan; } public GL_Budget3Query setCurrYearBudget7LessThan(BigDecimal value) { this.CurrYearBudget7LessThan = value; return this; } public BigDecimal getCurrYearBudget7LessThanOrEqualTo() { return CurrYearBudget7LessThanOrEqualTo; } public GL_Budget3Query setCurrYearBudget7LessThanOrEqualTo(BigDecimal value) { this.CurrYearBudget7LessThanOrEqualTo = value; return this; } public BigDecimal getCurrYearBudget7NotEqualTo() { return CurrYearBudget7NotEqualTo; } public GL_Budget3Query setCurrYearBudget7NotEqualTo(BigDecimal value) { this.CurrYearBudget7NotEqualTo = value; return this; } public ArrayList getCurrYearBudget7Between() { return CurrYearBudget7Between; } public GL_Budget3Query setCurrYearBudget7Between(ArrayList value) { this.CurrYearBudget7Between = value; return this; } public ArrayList getCurrYearBudget7In() { return CurrYearBudget7In; } public GL_Budget3Query setCurrYearBudget7In(ArrayList value) { this.CurrYearBudget7In = value; return this; } public BigDecimal getCurrYearBudget8() { return CurrYearBudget8; } public GL_Budget3Query setCurrYearBudget8(BigDecimal value) { this.CurrYearBudget8 = value; return this; } public BigDecimal getCurrYearBudget8GreaterThanOrEqualTo() { return CurrYearBudget8GreaterThanOrEqualTo; } public GL_Budget3Query setCurrYearBudget8GreaterThanOrEqualTo(BigDecimal value) { this.CurrYearBudget8GreaterThanOrEqualTo = value; return this; } public BigDecimal getCurrYearBudget8GreaterThan() { return CurrYearBudget8GreaterThan; } public GL_Budget3Query setCurrYearBudget8GreaterThan(BigDecimal value) { this.CurrYearBudget8GreaterThan = value; return this; } public BigDecimal getCurrYearBudget8LessThan() { return CurrYearBudget8LessThan; } public GL_Budget3Query setCurrYearBudget8LessThan(BigDecimal value) { this.CurrYearBudget8LessThan = value; return this; } public BigDecimal getCurrYearBudget8LessThanOrEqualTo() { return CurrYearBudget8LessThanOrEqualTo; } public GL_Budget3Query setCurrYearBudget8LessThanOrEqualTo(BigDecimal value) { this.CurrYearBudget8LessThanOrEqualTo = value; return this; } public BigDecimal getCurrYearBudget8NotEqualTo() { return CurrYearBudget8NotEqualTo; } public GL_Budget3Query setCurrYearBudget8NotEqualTo(BigDecimal value) { this.CurrYearBudget8NotEqualTo = value; return this; } public ArrayList getCurrYearBudget8Between() { return CurrYearBudget8Between; } public GL_Budget3Query setCurrYearBudget8Between(ArrayList value) { this.CurrYearBudget8Between = value; return this; } public ArrayList getCurrYearBudget8In() { return CurrYearBudget8In; } public GL_Budget3Query setCurrYearBudget8In(ArrayList value) { this.CurrYearBudget8In = value; return this; } public BigDecimal getCurrYearBudget9() { return CurrYearBudget9; } public GL_Budget3Query setCurrYearBudget9(BigDecimal value) { this.CurrYearBudget9 = value; return this; } public BigDecimal getCurrYearBudget9GreaterThanOrEqualTo() { return CurrYearBudget9GreaterThanOrEqualTo; } public GL_Budget3Query setCurrYearBudget9GreaterThanOrEqualTo(BigDecimal value) { this.CurrYearBudget9GreaterThanOrEqualTo = value; return this; } public BigDecimal getCurrYearBudget9GreaterThan() { return CurrYearBudget9GreaterThan; } public GL_Budget3Query setCurrYearBudget9GreaterThan(BigDecimal value) { this.CurrYearBudget9GreaterThan = value; return this; } public BigDecimal getCurrYearBudget9LessThan() { return CurrYearBudget9LessThan; } public GL_Budget3Query setCurrYearBudget9LessThan(BigDecimal value) { this.CurrYearBudget9LessThan = value; return this; } public BigDecimal getCurrYearBudget9LessThanOrEqualTo() { return CurrYearBudget9LessThanOrEqualTo; } public GL_Budget3Query setCurrYearBudget9LessThanOrEqualTo(BigDecimal value) { this.CurrYearBudget9LessThanOrEqualTo = value; return this; } public BigDecimal getCurrYearBudget9NotEqualTo() { return CurrYearBudget9NotEqualTo; } public GL_Budget3Query setCurrYearBudget9NotEqualTo(BigDecimal value) { this.CurrYearBudget9NotEqualTo = value; return this; } public ArrayList getCurrYearBudget9Between() { return CurrYearBudget9Between; } public GL_Budget3Query setCurrYearBudget9Between(ArrayList value) { this.CurrYearBudget9Between = value; return this; } public ArrayList getCurrYearBudget9In() { return CurrYearBudget9In; } public GL_Budget3Query setCurrYearBudget9In(ArrayList value) { this.CurrYearBudget9In = value; return this; } public BigDecimal getCurrYearBudget10() { return CurrYearBudget10; } public GL_Budget3Query setCurrYearBudget10(BigDecimal value) { this.CurrYearBudget10 = value; return this; } public BigDecimal getCurrYearBudget10GreaterThanOrEqualTo() { return CurrYearBudget10GreaterThanOrEqualTo; } public GL_Budget3Query setCurrYearBudget10GreaterThanOrEqualTo(BigDecimal value) { this.CurrYearBudget10GreaterThanOrEqualTo = value; return this; } public BigDecimal getCurrYearBudget10GreaterThan() { return CurrYearBudget10GreaterThan; } public GL_Budget3Query setCurrYearBudget10GreaterThan(BigDecimal value) { this.CurrYearBudget10GreaterThan = value; return this; } public BigDecimal getCurrYearBudget10LessThan() { return CurrYearBudget10LessThan; } public GL_Budget3Query setCurrYearBudget10LessThan(BigDecimal value) { this.CurrYearBudget10LessThan = value; return this; } public BigDecimal getCurrYearBudget10LessThanOrEqualTo() { return CurrYearBudget10LessThanOrEqualTo; } public GL_Budget3Query setCurrYearBudget10LessThanOrEqualTo(BigDecimal value) { this.CurrYearBudget10LessThanOrEqualTo = value; return this; } public BigDecimal getCurrYearBudget10NotEqualTo() { return CurrYearBudget10NotEqualTo; } public GL_Budget3Query setCurrYearBudget10NotEqualTo(BigDecimal value) { this.CurrYearBudget10NotEqualTo = value; return this; } public ArrayList getCurrYearBudget10Between() { return CurrYearBudget10Between; } public GL_Budget3Query setCurrYearBudget10Between(ArrayList value) { this.CurrYearBudget10Between = value; return this; } public ArrayList getCurrYearBudget10In() { return CurrYearBudget10In; } public GL_Budget3Query setCurrYearBudget10In(ArrayList value) { this.CurrYearBudget10In = value; return this; } public BigDecimal getCurrYearBudget11() { return CurrYearBudget11; } public GL_Budget3Query setCurrYearBudget11(BigDecimal value) { this.CurrYearBudget11 = value; return this; } public BigDecimal getCurrYearBudget11GreaterThanOrEqualTo() { return CurrYearBudget11GreaterThanOrEqualTo; } public GL_Budget3Query setCurrYearBudget11GreaterThanOrEqualTo(BigDecimal value) { this.CurrYearBudget11GreaterThanOrEqualTo = value; return this; } public BigDecimal getCurrYearBudget11GreaterThan() { return CurrYearBudget11GreaterThan; } public GL_Budget3Query setCurrYearBudget11GreaterThan(BigDecimal value) { this.CurrYearBudget11GreaterThan = value; return this; } public BigDecimal getCurrYearBudget11LessThan() { return CurrYearBudget11LessThan; } public GL_Budget3Query setCurrYearBudget11LessThan(BigDecimal value) { this.CurrYearBudget11LessThan = value; return this; } public BigDecimal getCurrYearBudget11LessThanOrEqualTo() { return CurrYearBudget11LessThanOrEqualTo; } public GL_Budget3Query setCurrYearBudget11LessThanOrEqualTo(BigDecimal value) { this.CurrYearBudget11LessThanOrEqualTo = value; return this; } public BigDecimal getCurrYearBudget11NotEqualTo() { return CurrYearBudget11NotEqualTo; } public GL_Budget3Query setCurrYearBudget11NotEqualTo(BigDecimal value) { this.CurrYearBudget11NotEqualTo = value; return this; } public ArrayList getCurrYearBudget11Between() { return CurrYearBudget11Between; } public GL_Budget3Query setCurrYearBudget11Between(ArrayList value) { this.CurrYearBudget11Between = value; return this; } public ArrayList getCurrYearBudget11In() { return CurrYearBudget11In; } public GL_Budget3Query setCurrYearBudget11In(ArrayList value) { this.CurrYearBudget11In = value; return this; } public BigDecimal getCurrYearBudget12() { return CurrYearBudget12; } public GL_Budget3Query setCurrYearBudget12(BigDecimal value) { this.CurrYearBudget12 = value; return this; } public BigDecimal getCurrYearBudget12GreaterThanOrEqualTo() { return CurrYearBudget12GreaterThanOrEqualTo; } public GL_Budget3Query setCurrYearBudget12GreaterThanOrEqualTo(BigDecimal value) { this.CurrYearBudget12GreaterThanOrEqualTo = value; return this; } public BigDecimal getCurrYearBudget12GreaterThan() { return CurrYearBudget12GreaterThan; } public GL_Budget3Query setCurrYearBudget12GreaterThan(BigDecimal value) { this.CurrYearBudget12GreaterThan = value; return this; } public BigDecimal getCurrYearBudget12LessThan() { return CurrYearBudget12LessThan; } public GL_Budget3Query setCurrYearBudget12LessThan(BigDecimal value) { this.CurrYearBudget12LessThan = value; return this; } public BigDecimal getCurrYearBudget12LessThanOrEqualTo() { return CurrYearBudget12LessThanOrEqualTo; } public GL_Budget3Query setCurrYearBudget12LessThanOrEqualTo(BigDecimal value) { this.CurrYearBudget12LessThanOrEqualTo = value; return this; } public BigDecimal getCurrYearBudget12NotEqualTo() { return CurrYearBudget12NotEqualTo; } public GL_Budget3Query setCurrYearBudget12NotEqualTo(BigDecimal value) { this.CurrYearBudget12NotEqualTo = value; return this; } public ArrayList getCurrYearBudget12Between() { return CurrYearBudget12Between; } public GL_Budget3Query setCurrYearBudget12Between(ArrayList value) { this.CurrYearBudget12Between = value; return this; } public ArrayList getCurrYearBudget12In() { return CurrYearBudget12In; } public GL_Budget3Query setCurrYearBudget12In(ArrayList value) { this.CurrYearBudget12In = value; return this; } public BigDecimal getNextYearBudget1() { return NextYearBudget1; } public GL_Budget3Query setNextYearBudget1(BigDecimal value) { this.NextYearBudget1 = value; return this; } public BigDecimal getNextYearBudget1GreaterThanOrEqualTo() { return NextYearBudget1GreaterThanOrEqualTo; } public GL_Budget3Query setNextYearBudget1GreaterThanOrEqualTo(BigDecimal value) { this.NextYearBudget1GreaterThanOrEqualTo = value; return this; } public BigDecimal getNextYearBudget1GreaterThan() { return NextYearBudget1GreaterThan; } public GL_Budget3Query setNextYearBudget1GreaterThan(BigDecimal value) { this.NextYearBudget1GreaterThan = value; return this; } public BigDecimal getNextYearBudget1LessThan() { return NextYearBudget1LessThan; } public GL_Budget3Query setNextYearBudget1LessThan(BigDecimal value) { this.NextYearBudget1LessThan = value; return this; } public BigDecimal getNextYearBudget1LessThanOrEqualTo() { return NextYearBudget1LessThanOrEqualTo; } public GL_Budget3Query setNextYearBudget1LessThanOrEqualTo(BigDecimal value) { this.NextYearBudget1LessThanOrEqualTo = value; return this; } public BigDecimal getNextYearBudget1NotEqualTo() { return NextYearBudget1NotEqualTo; } public GL_Budget3Query setNextYearBudget1NotEqualTo(BigDecimal value) { this.NextYearBudget1NotEqualTo = value; return this; } public ArrayList getNextYearBudget1Between() { return NextYearBudget1Between; } public GL_Budget3Query setNextYearBudget1Between(ArrayList value) { this.NextYearBudget1Between = value; return this; } public ArrayList getNextYearBudget1In() { return NextYearBudget1In; } public GL_Budget3Query setNextYearBudget1In(ArrayList value) { this.NextYearBudget1In = value; return this; } public BigDecimal getNextYearBudget2() { return NextYearBudget2; } public GL_Budget3Query setNextYearBudget2(BigDecimal value) { this.NextYearBudget2 = value; return this; } public BigDecimal getNextYearBudget2GreaterThanOrEqualTo() { return NextYearBudget2GreaterThanOrEqualTo; } public GL_Budget3Query setNextYearBudget2GreaterThanOrEqualTo(BigDecimal value) { this.NextYearBudget2GreaterThanOrEqualTo = value; return this; } public BigDecimal getNextYearBudget2GreaterThan() { return NextYearBudget2GreaterThan; } public GL_Budget3Query setNextYearBudget2GreaterThan(BigDecimal value) { this.NextYearBudget2GreaterThan = value; return this; } public BigDecimal getNextYearBudget2LessThan() { return NextYearBudget2LessThan; } public GL_Budget3Query setNextYearBudget2LessThan(BigDecimal value) { this.NextYearBudget2LessThan = value; return this; } public BigDecimal getNextYearBudget2LessThanOrEqualTo() { return NextYearBudget2LessThanOrEqualTo; } public GL_Budget3Query setNextYearBudget2LessThanOrEqualTo(BigDecimal value) { this.NextYearBudget2LessThanOrEqualTo = value; return this; } public BigDecimal getNextYearBudget2NotEqualTo() { return NextYearBudget2NotEqualTo; } public GL_Budget3Query setNextYearBudget2NotEqualTo(BigDecimal value) { this.NextYearBudget2NotEqualTo = value; return this; } public ArrayList getNextYearBudget2Between() { return NextYearBudget2Between; } public GL_Budget3Query setNextYearBudget2Between(ArrayList value) { this.NextYearBudget2Between = value; return this; } public ArrayList getNextYearBudget2In() { return NextYearBudget2In; } public GL_Budget3Query setNextYearBudget2In(ArrayList value) { this.NextYearBudget2In = value; return this; } public BigDecimal getNextYearBudget3() { return NextYearBudget3; } public GL_Budget3Query setNextYearBudget3(BigDecimal value) { this.NextYearBudget3 = value; return this; } public BigDecimal getNextYearBudget3GreaterThanOrEqualTo() { return NextYearBudget3GreaterThanOrEqualTo; } public GL_Budget3Query setNextYearBudget3GreaterThanOrEqualTo(BigDecimal value) { this.NextYearBudget3GreaterThanOrEqualTo = value; return this; } public BigDecimal getNextYearBudget3GreaterThan() { return NextYearBudget3GreaterThan; } public GL_Budget3Query setNextYearBudget3GreaterThan(BigDecimal value) { this.NextYearBudget3GreaterThan = value; return this; } public BigDecimal getNextYearBudget3LessThan() { return NextYearBudget3LessThan; } public GL_Budget3Query setNextYearBudget3LessThan(BigDecimal value) { this.NextYearBudget3LessThan = value; return this; } public BigDecimal getNextYearBudget3LessThanOrEqualTo() { return NextYearBudget3LessThanOrEqualTo; } public GL_Budget3Query setNextYearBudget3LessThanOrEqualTo(BigDecimal value) { this.NextYearBudget3LessThanOrEqualTo = value; return this; } public BigDecimal getNextYearBudget3NotEqualTo() { return NextYearBudget3NotEqualTo; } public GL_Budget3Query setNextYearBudget3NotEqualTo(BigDecimal value) { this.NextYearBudget3NotEqualTo = value; return this; } public ArrayList getNextYearBudget3Between() { return NextYearBudget3Between; } public GL_Budget3Query setNextYearBudget3Between(ArrayList value) { this.NextYearBudget3Between = value; return this; } public ArrayList getNextYearBudget3In() { return NextYearBudget3In; } public GL_Budget3Query setNextYearBudget3In(ArrayList value) { this.NextYearBudget3In = value; return this; } public BigDecimal getNextYearBudget4() { return NextYearBudget4; } public GL_Budget3Query setNextYearBudget4(BigDecimal value) { this.NextYearBudget4 = value; return this; } public BigDecimal getNextYearBudget4GreaterThanOrEqualTo() { return NextYearBudget4GreaterThanOrEqualTo; } public GL_Budget3Query setNextYearBudget4GreaterThanOrEqualTo(BigDecimal value) { this.NextYearBudget4GreaterThanOrEqualTo = value; return this; } public BigDecimal getNextYearBudget4GreaterThan() { return NextYearBudget4GreaterThan; } public GL_Budget3Query setNextYearBudget4GreaterThan(BigDecimal value) { this.NextYearBudget4GreaterThan = value; return this; } public BigDecimal getNextYearBudget4LessThan() { return NextYearBudget4LessThan; } public GL_Budget3Query setNextYearBudget4LessThan(BigDecimal value) { this.NextYearBudget4LessThan = value; return this; } public BigDecimal getNextYearBudget4LessThanOrEqualTo() { return NextYearBudget4LessThanOrEqualTo; } public GL_Budget3Query setNextYearBudget4LessThanOrEqualTo(BigDecimal value) { this.NextYearBudget4LessThanOrEqualTo = value; return this; } public BigDecimal getNextYearBudget4NotEqualTo() { return NextYearBudget4NotEqualTo; } public GL_Budget3Query setNextYearBudget4NotEqualTo(BigDecimal value) { this.NextYearBudget4NotEqualTo = value; return this; } public ArrayList getNextYearBudget4Between() { return NextYearBudget4Between; } public GL_Budget3Query setNextYearBudget4Between(ArrayList value) { this.NextYearBudget4Between = value; return this; } public ArrayList getNextYearBudget4In() { return NextYearBudget4In; } public GL_Budget3Query setNextYearBudget4In(ArrayList value) { this.NextYearBudget4In = value; return this; } public BigDecimal getNextYearBudget5() { return NextYearBudget5; } public GL_Budget3Query setNextYearBudget5(BigDecimal value) { this.NextYearBudget5 = value; return this; } public BigDecimal getNextYearBudget5GreaterThanOrEqualTo() { return NextYearBudget5GreaterThanOrEqualTo; } public GL_Budget3Query setNextYearBudget5GreaterThanOrEqualTo(BigDecimal value) { this.NextYearBudget5GreaterThanOrEqualTo = value; return this; } public BigDecimal getNextYearBudget5GreaterThan() { return NextYearBudget5GreaterThan; } public GL_Budget3Query setNextYearBudget5GreaterThan(BigDecimal value) { this.NextYearBudget5GreaterThan = value; return this; } public BigDecimal getNextYearBudget5LessThan() { return NextYearBudget5LessThan; } public GL_Budget3Query setNextYearBudget5LessThan(BigDecimal value) { this.NextYearBudget5LessThan = value; return this; } public BigDecimal getNextYearBudget5LessThanOrEqualTo() { return NextYearBudget5LessThanOrEqualTo; } public GL_Budget3Query setNextYearBudget5LessThanOrEqualTo(BigDecimal value) { this.NextYearBudget5LessThanOrEqualTo = value; return this; } public BigDecimal getNextYearBudget5NotEqualTo() { return NextYearBudget5NotEqualTo; } public GL_Budget3Query setNextYearBudget5NotEqualTo(BigDecimal value) { this.NextYearBudget5NotEqualTo = value; return this; } public ArrayList getNextYearBudget5Between() { return NextYearBudget5Between; } public GL_Budget3Query setNextYearBudget5Between(ArrayList value) { this.NextYearBudget5Between = value; return this; } public ArrayList getNextYearBudget5In() { return NextYearBudget5In; } public GL_Budget3Query setNextYearBudget5In(ArrayList value) { this.NextYearBudget5In = value; return this; } public BigDecimal getNextYearBudget6() { return NextYearBudget6; } public GL_Budget3Query setNextYearBudget6(BigDecimal value) { this.NextYearBudget6 = value; return this; } public BigDecimal getNextYearBudget6GreaterThanOrEqualTo() { return NextYearBudget6GreaterThanOrEqualTo; } public GL_Budget3Query setNextYearBudget6GreaterThanOrEqualTo(BigDecimal value) { this.NextYearBudget6GreaterThanOrEqualTo = value; return this; } public BigDecimal getNextYearBudget6GreaterThan() { return NextYearBudget6GreaterThan; } public GL_Budget3Query setNextYearBudget6GreaterThan(BigDecimal value) { this.NextYearBudget6GreaterThan = value; return this; } public BigDecimal getNextYearBudget6LessThan() { return NextYearBudget6LessThan; } public GL_Budget3Query setNextYearBudget6LessThan(BigDecimal value) { this.NextYearBudget6LessThan = value; return this; } public BigDecimal getNextYearBudget6LessThanOrEqualTo() { return NextYearBudget6LessThanOrEqualTo; } public GL_Budget3Query setNextYearBudget6LessThanOrEqualTo(BigDecimal value) { this.NextYearBudget6LessThanOrEqualTo = value; return this; } public BigDecimal getNextYearBudget6NotEqualTo() { return NextYearBudget6NotEqualTo; } public GL_Budget3Query setNextYearBudget6NotEqualTo(BigDecimal value) { this.NextYearBudget6NotEqualTo = value; return this; } public ArrayList getNextYearBudget6Between() { return NextYearBudget6Between; } public GL_Budget3Query setNextYearBudget6Between(ArrayList value) { this.NextYearBudget6Between = value; return this; } public ArrayList getNextYearBudget6In() { return NextYearBudget6In; } public GL_Budget3Query setNextYearBudget6In(ArrayList value) { this.NextYearBudget6In = value; return this; } public BigDecimal getNextYearBudget7() { return NextYearBudget7; } public GL_Budget3Query setNextYearBudget7(BigDecimal value) { this.NextYearBudget7 = value; return this; } public BigDecimal getNextYearBudget7GreaterThanOrEqualTo() { return NextYearBudget7GreaterThanOrEqualTo; } public GL_Budget3Query setNextYearBudget7GreaterThanOrEqualTo(BigDecimal value) { this.NextYearBudget7GreaterThanOrEqualTo = value; return this; } public BigDecimal getNextYearBudget7GreaterThan() { return NextYearBudget7GreaterThan; } public GL_Budget3Query setNextYearBudget7GreaterThan(BigDecimal value) { this.NextYearBudget7GreaterThan = value; return this; } public BigDecimal getNextYearBudget7LessThan() { return NextYearBudget7LessThan; } public GL_Budget3Query setNextYearBudget7LessThan(BigDecimal value) { this.NextYearBudget7LessThan = value; return this; } public BigDecimal getNextYearBudget7LessThanOrEqualTo() { return NextYearBudget7LessThanOrEqualTo; } public GL_Budget3Query setNextYearBudget7LessThanOrEqualTo(BigDecimal value) { this.NextYearBudget7LessThanOrEqualTo = value; return this; } public BigDecimal getNextYearBudget7NotEqualTo() { return NextYearBudget7NotEqualTo; } public GL_Budget3Query setNextYearBudget7NotEqualTo(BigDecimal value) { this.NextYearBudget7NotEqualTo = value; return this; } public ArrayList getNextYearBudget7Between() { return NextYearBudget7Between; } public GL_Budget3Query setNextYearBudget7Between(ArrayList value) { this.NextYearBudget7Between = value; return this; } public ArrayList getNextYearBudget7In() { return NextYearBudget7In; } public GL_Budget3Query setNextYearBudget7In(ArrayList value) { this.NextYearBudget7In = value; return this; } public BigDecimal getNextYearBudget8() { return NextYearBudget8; } public GL_Budget3Query setNextYearBudget8(BigDecimal value) { this.NextYearBudget8 = value; return this; } public BigDecimal getNextYearBudget8GreaterThanOrEqualTo() { return NextYearBudget8GreaterThanOrEqualTo; } public GL_Budget3Query setNextYearBudget8GreaterThanOrEqualTo(BigDecimal value) { this.NextYearBudget8GreaterThanOrEqualTo = value; return this; } public BigDecimal getNextYearBudget8GreaterThan() { return NextYearBudget8GreaterThan; } public GL_Budget3Query setNextYearBudget8GreaterThan(BigDecimal value) { this.NextYearBudget8GreaterThan = value; return this; } public BigDecimal getNextYearBudget8LessThan() { return NextYearBudget8LessThan; } public GL_Budget3Query setNextYearBudget8LessThan(BigDecimal value) { this.NextYearBudget8LessThan = value; return this; } public BigDecimal getNextYearBudget8LessThanOrEqualTo() { return NextYearBudget8LessThanOrEqualTo; } public GL_Budget3Query setNextYearBudget8LessThanOrEqualTo(BigDecimal value) { this.NextYearBudget8LessThanOrEqualTo = value; return this; } public BigDecimal getNextYearBudget8NotEqualTo() { return NextYearBudget8NotEqualTo; } public GL_Budget3Query setNextYearBudget8NotEqualTo(BigDecimal value) { this.NextYearBudget8NotEqualTo = value; return this; } public ArrayList getNextYearBudget8Between() { return NextYearBudget8Between; } public GL_Budget3Query setNextYearBudget8Between(ArrayList value) { this.NextYearBudget8Between = value; return this; } public ArrayList getNextYearBudget8In() { return NextYearBudget8In; } public GL_Budget3Query setNextYearBudget8In(ArrayList value) { this.NextYearBudget8In = value; return this; } public BigDecimal getNextYearBudget9() { return NextYearBudget9; } public GL_Budget3Query setNextYearBudget9(BigDecimal value) { this.NextYearBudget9 = value; return this; } public BigDecimal getNextYearBudget9GreaterThanOrEqualTo() { return NextYearBudget9GreaterThanOrEqualTo; } public GL_Budget3Query setNextYearBudget9GreaterThanOrEqualTo(BigDecimal value) { this.NextYearBudget9GreaterThanOrEqualTo = value; return this; } public BigDecimal getNextYearBudget9GreaterThan() { return NextYearBudget9GreaterThan; } public GL_Budget3Query setNextYearBudget9GreaterThan(BigDecimal value) { this.NextYearBudget9GreaterThan = value; return this; } public BigDecimal getNextYearBudget9LessThan() { return NextYearBudget9LessThan; } public GL_Budget3Query setNextYearBudget9LessThan(BigDecimal value) { this.NextYearBudget9LessThan = value; return this; } public BigDecimal getNextYearBudget9LessThanOrEqualTo() { return NextYearBudget9LessThanOrEqualTo; } public GL_Budget3Query setNextYearBudget9LessThanOrEqualTo(BigDecimal value) { this.NextYearBudget9LessThanOrEqualTo = value; return this; } public BigDecimal getNextYearBudget9NotEqualTo() { return NextYearBudget9NotEqualTo; } public GL_Budget3Query setNextYearBudget9NotEqualTo(BigDecimal value) { this.NextYearBudget9NotEqualTo = value; return this; } public ArrayList getNextYearBudget9Between() { return NextYearBudget9Between; } public GL_Budget3Query setNextYearBudget9Between(ArrayList value) { this.NextYearBudget9Between = value; return this; } public ArrayList getNextYearBudget9In() { return NextYearBudget9In; } public GL_Budget3Query setNextYearBudget9In(ArrayList value) { this.NextYearBudget9In = value; return this; } public BigDecimal getNextYearBudget10() { return NextYearBudget10; } public GL_Budget3Query setNextYearBudget10(BigDecimal value) { this.NextYearBudget10 = value; return this; } public BigDecimal getNextYearBudget10GreaterThanOrEqualTo() { return NextYearBudget10GreaterThanOrEqualTo; } public GL_Budget3Query setNextYearBudget10GreaterThanOrEqualTo(BigDecimal value) { this.NextYearBudget10GreaterThanOrEqualTo = value; return this; } public BigDecimal getNextYearBudget10GreaterThan() { return NextYearBudget10GreaterThan; } public GL_Budget3Query setNextYearBudget10GreaterThan(BigDecimal value) { this.NextYearBudget10GreaterThan = value; return this; } public BigDecimal getNextYearBudget10LessThan() { return NextYearBudget10LessThan; } public GL_Budget3Query setNextYearBudget10LessThan(BigDecimal value) { this.NextYearBudget10LessThan = value; return this; } public BigDecimal getNextYearBudget10LessThanOrEqualTo() { return NextYearBudget10LessThanOrEqualTo; } public GL_Budget3Query setNextYearBudget10LessThanOrEqualTo(BigDecimal value) { this.NextYearBudget10LessThanOrEqualTo = value; return this; } public BigDecimal getNextYearBudget10NotEqualTo() { return NextYearBudget10NotEqualTo; } public GL_Budget3Query setNextYearBudget10NotEqualTo(BigDecimal value) { this.NextYearBudget10NotEqualTo = value; return this; } public ArrayList getNextYearBudget10Between() { return NextYearBudget10Between; } public GL_Budget3Query setNextYearBudget10Between(ArrayList value) { this.NextYearBudget10Between = value; return this; } public ArrayList getNextYearBudget10In() { return NextYearBudget10In; } public GL_Budget3Query setNextYearBudget10In(ArrayList value) { this.NextYearBudget10In = value; return this; } public BigDecimal getNextYearBudget11() { return NextYearBudget11; } public GL_Budget3Query setNextYearBudget11(BigDecimal value) { this.NextYearBudget11 = value; return this; } public BigDecimal getNextYearBudget11GreaterThanOrEqualTo() { return NextYearBudget11GreaterThanOrEqualTo; } public GL_Budget3Query setNextYearBudget11GreaterThanOrEqualTo(BigDecimal value) { this.NextYearBudget11GreaterThanOrEqualTo = value; return this; } public BigDecimal getNextYearBudget11GreaterThan() { return NextYearBudget11GreaterThan; } public GL_Budget3Query setNextYearBudget11GreaterThan(BigDecimal value) { this.NextYearBudget11GreaterThan = value; return this; } public BigDecimal getNextYearBudget11LessThan() { return NextYearBudget11LessThan; } public GL_Budget3Query setNextYearBudget11LessThan(BigDecimal value) { this.NextYearBudget11LessThan = value; return this; } public BigDecimal getNextYearBudget11LessThanOrEqualTo() { return NextYearBudget11LessThanOrEqualTo; } public GL_Budget3Query setNextYearBudget11LessThanOrEqualTo(BigDecimal value) { this.NextYearBudget11LessThanOrEqualTo = value; return this; } public BigDecimal getNextYearBudget11NotEqualTo() { return NextYearBudget11NotEqualTo; } public GL_Budget3Query setNextYearBudget11NotEqualTo(BigDecimal value) { this.NextYearBudget11NotEqualTo = value; return this; } public ArrayList getNextYearBudget11Between() { return NextYearBudget11Between; } public GL_Budget3Query setNextYearBudget11Between(ArrayList value) { this.NextYearBudget11Between = value; return this; } public ArrayList getNextYearBudget11In() { return NextYearBudget11In; } public GL_Budget3Query setNextYearBudget11In(ArrayList value) { this.NextYearBudget11In = value; return this; } public BigDecimal getNextYearBudget12() { return NextYearBudget12; } public GL_Budget3Query setNextYearBudget12(BigDecimal value) { this.NextYearBudget12 = value; return this; } public BigDecimal getNextYearBudget12GreaterThanOrEqualTo() { return NextYearBudget12GreaterThanOrEqualTo; } public GL_Budget3Query setNextYearBudget12GreaterThanOrEqualTo(BigDecimal value) { this.NextYearBudget12GreaterThanOrEqualTo = value; return this; } public BigDecimal getNextYearBudget12GreaterThan() { return NextYearBudget12GreaterThan; } public GL_Budget3Query setNextYearBudget12GreaterThan(BigDecimal value) { this.NextYearBudget12GreaterThan = value; return this; } public BigDecimal getNextYearBudget12LessThan() { return NextYearBudget12LessThan; } public GL_Budget3Query setNextYearBudget12LessThan(BigDecimal value) { this.NextYearBudget12LessThan = value; return this; } public BigDecimal getNextYearBudget12LessThanOrEqualTo() { return NextYearBudget12LessThanOrEqualTo; } public GL_Budget3Query setNextYearBudget12LessThanOrEqualTo(BigDecimal value) { this.NextYearBudget12LessThanOrEqualTo = value; return this; } public BigDecimal getNextYearBudget12NotEqualTo() { return NextYearBudget12NotEqualTo; } public GL_Budget3Query setNextYearBudget12NotEqualTo(BigDecimal value) { this.NextYearBudget12NotEqualTo = value; return this; } public ArrayList getNextYearBudget12Between() { return NextYearBudget12Between; } public GL_Budget3Query setNextYearBudget12Between(ArrayList value) { this.NextYearBudget12Between = value; return this; } public ArrayList getNextYearBudget12In() { return NextYearBudget12In; } public GL_Budget3Query setNextYearBudget12In(ArrayList value) { this.NextYearBudget12In = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @Route(Path="/Queries/GL_Category", Verbs="GET") @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class GL_CategoryQuery extends QueryDb implements IReturn> { public String GLCategoryID = null; public String GLCategoryIDStartsWith = null; public String GLCategoryIDEndsWith = null; public String GLCategoryIDContains = null; public String GLCategoryIDLike = null; public ArrayList GLCategoryIDBetween = null; public ArrayList GLCategoryIDIn = null; public Date LastSavedDateTime = null; public Date LastSavedDateTimeGreaterThanOrEqualTo = null; public Date LastSavedDateTimeGreaterThan = null; public Date LastSavedDateTimeLessThan = null; public Date LastSavedDateTimeLessThanOrEqualTo = null; public Date LastSavedDateTimeNotEqualTo = null; public ArrayList LastSavedDateTimeBetween = null; public ArrayList LastSavedDateTimeIn = null; public String Description = null; public String DescriptionStartsWith = null; public String DescriptionEndsWith = null; public String DescriptionContains = null; public String DescriptionLike = null; public ArrayList DescriptionBetween = null; public ArrayList DescriptionIn = null; public Short ExpSign = null; public Short ExpSignGreaterThanOrEqualTo = null; public Short ExpSignGreaterThan = null; public Short ExpSignLessThan = null; public Short ExpSignLessThanOrEqualTo = null; public Short ExpSignNotEqualTo = null; public ArrayList ExpSignBetween = null; public ArrayList ExpSignIn = null; public Short AccType = null; public Short AccTypeGreaterThanOrEqualTo = null; public Short AccTypeGreaterThan = null; public Short AccTypeLessThan = null; public Short AccTypeLessThanOrEqualTo = null; public Short AccTypeNotEqualTo = null; public ArrayList AccTypeBetween = null; public ArrayList AccTypeIn = null; public String Group1 = null; public String Group1StartsWith = null; public String Group1EndsWith = null; public String Group1Contains = null; public String Group1Like = null; public ArrayList Group1Between = null; public ArrayList Group1In = null; public String Group2 = null; public String Group2StartsWith = null; public String Group2EndsWith = null; public String Group2Contains = null; public String Group2Like = null; public ArrayList Group2Between = null; public ArrayList Group2In = null; public Integer Group2DisplayOrder = null; public Integer Group2DisplayOrderGreaterThanOrEqualTo = null; public Integer Group2DisplayOrderGreaterThan = null; public Integer Group2DisplayOrderLessThan = null; public Integer Group2DisplayOrderLessThanOrEqualTo = null; public Integer Group2DisplayOrderNotEqualTo = null; public ArrayList Group2DisplayOrderBetween = null; public ArrayList Group2DisplayOrderIn = null; public Integer Group1DisplayOrder = null; public Integer Group1DisplayOrderGreaterThanOrEqualTo = null; public Integer Group1DisplayOrderGreaterThan = null; public Integer Group1DisplayOrderLessThan = null; public Integer Group1DisplayOrderLessThanOrEqualTo = null; public Integer Group1DisplayOrderNotEqualTo = null; public ArrayList Group1DisplayOrderBetween = null; public ArrayList Group1DisplayOrderIn = null; public String getGlCategoryID() { return GLCategoryID; } public GL_CategoryQuery setGlCategoryID(String value) { this.GLCategoryID = value; return this; } public String getGlCategoryIDStartsWith() { return GLCategoryIDStartsWith; } public GL_CategoryQuery setGlCategoryIDStartsWith(String value) { this.GLCategoryIDStartsWith = value; return this; } public String getGlCategoryIDEndsWith() { return GLCategoryIDEndsWith; } public GL_CategoryQuery setGlCategoryIDEndsWith(String value) { this.GLCategoryIDEndsWith = value; return this; } public String getGlCategoryIDContains() { return GLCategoryIDContains; } public GL_CategoryQuery setGlCategoryIDContains(String value) { this.GLCategoryIDContains = value; return this; } public String getGlCategoryIDLike() { return GLCategoryIDLike; } public GL_CategoryQuery setGlCategoryIDLike(String value) { this.GLCategoryIDLike = value; return this; } public ArrayList getGlCategoryIDBetween() { return GLCategoryIDBetween; } public GL_CategoryQuery setGlCategoryIDBetween(ArrayList value) { this.GLCategoryIDBetween = value; return this; } public ArrayList getGlCategoryIDIn() { return GLCategoryIDIn; } public GL_CategoryQuery setGlCategoryIDIn(ArrayList value) { this.GLCategoryIDIn = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public GL_CategoryQuery setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getLastSavedDateTimeGreaterThanOrEqualTo() { return LastSavedDateTimeGreaterThanOrEqualTo; } public GL_CategoryQuery setLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.LastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeGreaterThan() { return LastSavedDateTimeGreaterThan; } public GL_CategoryQuery setLastSavedDateTimeGreaterThan(Date value) { this.LastSavedDateTimeGreaterThan = value; return this; } public Date getLastSavedDateTimeLessThan() { return LastSavedDateTimeLessThan; } public GL_CategoryQuery setLastSavedDateTimeLessThan(Date value) { this.LastSavedDateTimeLessThan = value; return this; } public Date getLastSavedDateTimeLessThanOrEqualTo() { return LastSavedDateTimeLessThanOrEqualTo; } public GL_CategoryQuery setLastSavedDateTimeLessThanOrEqualTo(Date value) { this.LastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeNotEqualTo() { return LastSavedDateTimeNotEqualTo; } public GL_CategoryQuery setLastSavedDateTimeNotEqualTo(Date value) { this.LastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getLastSavedDateTimeBetween() { return LastSavedDateTimeBetween; } public GL_CategoryQuery setLastSavedDateTimeBetween(ArrayList value) { this.LastSavedDateTimeBetween = value; return this; } public ArrayList getLastSavedDateTimeIn() { return LastSavedDateTimeIn; } public GL_CategoryQuery setLastSavedDateTimeIn(ArrayList value) { this.LastSavedDateTimeIn = value; return this; } public String getDescription() { return Description; } public GL_CategoryQuery setDescription(String value) { this.Description = value; return this; } public String getDescriptionStartsWith() { return DescriptionStartsWith; } public GL_CategoryQuery setDescriptionStartsWith(String value) { this.DescriptionStartsWith = value; return this; } public String getDescriptionEndsWith() { return DescriptionEndsWith; } public GL_CategoryQuery setDescriptionEndsWith(String value) { this.DescriptionEndsWith = value; return this; } public String getDescriptionContains() { return DescriptionContains; } public GL_CategoryQuery setDescriptionContains(String value) { this.DescriptionContains = value; return this; } public String getDescriptionLike() { return DescriptionLike; } public GL_CategoryQuery setDescriptionLike(String value) { this.DescriptionLike = value; return this; } public ArrayList getDescriptionBetween() { return DescriptionBetween; } public GL_CategoryQuery setDescriptionBetween(ArrayList value) { this.DescriptionBetween = value; return this; } public ArrayList getDescriptionIn() { return DescriptionIn; } public GL_CategoryQuery setDescriptionIn(ArrayList value) { this.DescriptionIn = value; return this; } public Short getExpSign() { return ExpSign; } public GL_CategoryQuery setExpSign(Short value) { this.ExpSign = value; return this; } public Short getExpSignGreaterThanOrEqualTo() { return ExpSignGreaterThanOrEqualTo; } public GL_CategoryQuery setExpSignGreaterThanOrEqualTo(Short value) { this.ExpSignGreaterThanOrEqualTo = value; return this; } public Short getExpSignGreaterThan() { return ExpSignGreaterThan; } public GL_CategoryQuery setExpSignGreaterThan(Short value) { this.ExpSignGreaterThan = value; return this; } public Short getExpSignLessThan() { return ExpSignLessThan; } public GL_CategoryQuery setExpSignLessThan(Short value) { this.ExpSignLessThan = value; return this; } public Short getExpSignLessThanOrEqualTo() { return ExpSignLessThanOrEqualTo; } public GL_CategoryQuery setExpSignLessThanOrEqualTo(Short value) { this.ExpSignLessThanOrEqualTo = value; return this; } public Short getExpSignNotEqualTo() { return ExpSignNotEqualTo; } public GL_CategoryQuery setExpSignNotEqualTo(Short value) { this.ExpSignNotEqualTo = value; return this; } public ArrayList getExpSignBetween() { return ExpSignBetween; } public GL_CategoryQuery setExpSignBetween(ArrayList value) { this.ExpSignBetween = value; return this; } public ArrayList getExpSignIn() { return ExpSignIn; } public GL_CategoryQuery setExpSignIn(ArrayList value) { this.ExpSignIn = value; return this; } public Short getAccType() { return AccType; } public GL_CategoryQuery setAccType(Short value) { this.AccType = value; return this; } public Short getAccTypeGreaterThanOrEqualTo() { return AccTypeGreaterThanOrEqualTo; } public GL_CategoryQuery setAccTypeGreaterThanOrEqualTo(Short value) { this.AccTypeGreaterThanOrEqualTo = value; return this; } public Short getAccTypeGreaterThan() { return AccTypeGreaterThan; } public GL_CategoryQuery setAccTypeGreaterThan(Short value) { this.AccTypeGreaterThan = value; return this; } public Short getAccTypeLessThan() { return AccTypeLessThan; } public GL_CategoryQuery setAccTypeLessThan(Short value) { this.AccTypeLessThan = value; return this; } public Short getAccTypeLessThanOrEqualTo() { return AccTypeLessThanOrEqualTo; } public GL_CategoryQuery setAccTypeLessThanOrEqualTo(Short value) { this.AccTypeLessThanOrEqualTo = value; return this; } public Short getAccTypeNotEqualTo() { return AccTypeNotEqualTo; } public GL_CategoryQuery setAccTypeNotEqualTo(Short value) { this.AccTypeNotEqualTo = value; return this; } public ArrayList getAccTypeBetween() { return AccTypeBetween; } public GL_CategoryQuery setAccTypeBetween(ArrayList value) { this.AccTypeBetween = value; return this; } public ArrayList getAccTypeIn() { return AccTypeIn; } public GL_CategoryQuery setAccTypeIn(ArrayList value) { this.AccTypeIn = value; return this; } public String getGroup1() { return Group1; } public GL_CategoryQuery setGroup1(String value) { this.Group1 = value; return this; } public String getGroup1StartsWith() { return Group1StartsWith; } public GL_CategoryQuery setGroup1StartsWith(String value) { this.Group1StartsWith = value; return this; } public String getGroup1EndsWith() { return Group1EndsWith; } public GL_CategoryQuery setGroup1EndsWith(String value) { this.Group1EndsWith = value; return this; } public String getGroup1Contains() { return Group1Contains; } public GL_CategoryQuery setGroup1Contains(String value) { this.Group1Contains = value; return this; } public String getGroup1Like() { return Group1Like; } public GL_CategoryQuery setGroup1Like(String value) { this.Group1Like = value; return this; } public ArrayList getGroup1Between() { return Group1Between; } public GL_CategoryQuery setGroup1Between(ArrayList value) { this.Group1Between = value; return this; } public ArrayList getGroup1In() { return Group1In; } public GL_CategoryQuery setGroup1In(ArrayList value) { this.Group1In = value; return this; } public String getGroup2() { return Group2; } public GL_CategoryQuery setGroup2(String value) { this.Group2 = value; return this; } public String getGroup2StartsWith() { return Group2StartsWith; } public GL_CategoryQuery setGroup2StartsWith(String value) { this.Group2StartsWith = value; return this; } public String getGroup2EndsWith() { return Group2EndsWith; } public GL_CategoryQuery setGroup2EndsWith(String value) { this.Group2EndsWith = value; return this; } public String getGroup2Contains() { return Group2Contains; } public GL_CategoryQuery setGroup2Contains(String value) { this.Group2Contains = value; return this; } public String getGroup2Like() { return Group2Like; } public GL_CategoryQuery setGroup2Like(String value) { this.Group2Like = value; return this; } public ArrayList getGroup2Between() { return Group2Between; } public GL_CategoryQuery setGroup2Between(ArrayList value) { this.Group2Between = value; return this; } public ArrayList getGroup2In() { return Group2In; } public GL_CategoryQuery setGroup2In(ArrayList value) { this.Group2In = value; return this; } public Integer getGroup2DisplayOrder() { return Group2DisplayOrder; } public GL_CategoryQuery setGroup2DisplayOrder(Integer value) { this.Group2DisplayOrder = value; return this; } public Integer getGroup2DisplayOrderGreaterThanOrEqualTo() { return Group2DisplayOrderGreaterThanOrEqualTo; } public GL_CategoryQuery setGroup2DisplayOrderGreaterThanOrEqualTo(Integer value) { this.Group2DisplayOrderGreaterThanOrEqualTo = value; return this; } public Integer getGroup2DisplayOrderGreaterThan() { return Group2DisplayOrderGreaterThan; } public GL_CategoryQuery setGroup2DisplayOrderGreaterThan(Integer value) { this.Group2DisplayOrderGreaterThan = value; return this; } public Integer getGroup2DisplayOrderLessThan() { return Group2DisplayOrderLessThan; } public GL_CategoryQuery setGroup2DisplayOrderLessThan(Integer value) { this.Group2DisplayOrderLessThan = value; return this; } public Integer getGroup2DisplayOrderLessThanOrEqualTo() { return Group2DisplayOrderLessThanOrEqualTo; } public GL_CategoryQuery setGroup2DisplayOrderLessThanOrEqualTo(Integer value) { this.Group2DisplayOrderLessThanOrEqualTo = value; return this; } public Integer getGroup2DisplayOrderNotEqualTo() { return Group2DisplayOrderNotEqualTo; } public GL_CategoryQuery setGroup2DisplayOrderNotEqualTo(Integer value) { this.Group2DisplayOrderNotEqualTo = value; return this; } public ArrayList getGroup2DisplayOrderBetween() { return Group2DisplayOrderBetween; } public GL_CategoryQuery setGroup2DisplayOrderBetween(ArrayList value) { this.Group2DisplayOrderBetween = value; return this; } public ArrayList getGroup2DisplayOrderIn() { return Group2DisplayOrderIn; } public GL_CategoryQuery setGroup2DisplayOrderIn(ArrayList value) { this.Group2DisplayOrderIn = value; return this; } public Integer getGroup1DisplayOrder() { return Group1DisplayOrder; } public GL_CategoryQuery setGroup1DisplayOrder(Integer value) { this.Group1DisplayOrder = value; return this; } public Integer getGroup1DisplayOrderGreaterThanOrEqualTo() { return Group1DisplayOrderGreaterThanOrEqualTo; } public GL_CategoryQuery setGroup1DisplayOrderGreaterThanOrEqualTo(Integer value) { this.Group1DisplayOrderGreaterThanOrEqualTo = value; return this; } public Integer getGroup1DisplayOrderGreaterThan() { return Group1DisplayOrderGreaterThan; } public GL_CategoryQuery setGroup1DisplayOrderGreaterThan(Integer value) { this.Group1DisplayOrderGreaterThan = value; return this; } public Integer getGroup1DisplayOrderLessThan() { return Group1DisplayOrderLessThan; } public GL_CategoryQuery setGroup1DisplayOrderLessThan(Integer value) { this.Group1DisplayOrderLessThan = value; return this; } public Integer getGroup1DisplayOrderLessThanOrEqualTo() { return Group1DisplayOrderLessThanOrEqualTo; } public GL_CategoryQuery setGroup1DisplayOrderLessThanOrEqualTo(Integer value) { this.Group1DisplayOrderLessThanOrEqualTo = value; return this; } public Integer getGroup1DisplayOrderNotEqualTo() { return Group1DisplayOrderNotEqualTo; } public GL_CategoryQuery setGroup1DisplayOrderNotEqualTo(Integer value) { this.Group1DisplayOrderNotEqualTo = value; return this; } public ArrayList getGroup1DisplayOrderBetween() { return Group1DisplayOrderBetween; } public GL_CategoryQuery setGroup1DisplayOrderBetween(ArrayList value) { this.Group1DisplayOrderBetween = value; return this; } public ArrayList getGroup1DisplayOrderIn() { return Group1DisplayOrderIn; } public GL_CategoryQuery setGroup1DisplayOrderIn(ArrayList value) { this.Group1DisplayOrderIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class GL_ConfigQuery extends QueryDb implements IReturn> { public String GLSetUpID = null; public String GLSetUpIDStartsWith = null; public String GLSetUpIDEndsWith = null; public String GLSetUpIDContains = null; public String GLSetUpIDLike = null; public ArrayList GLSetUpIDBetween = null; public ArrayList GLSetUpIDIn = null; public Date LastSavedDateTime = null; public Date LastSavedDateTimeGreaterThanOrEqualTo = null; public Date LastSavedDateTimeGreaterThan = null; public Date LastSavedDateTimeLessThan = null; public Date LastSavedDateTimeLessThanOrEqualTo = null; public Date LastSavedDateTimeNotEqualTo = null; public ArrayList LastSavedDateTimeBetween = null; public ArrayList LastSavedDateTimeIn = null; public Short YearNo = null; public Short YearNoGreaterThanOrEqualTo = null; public Short YearNoGreaterThan = null; public Short YearNoLessThan = null; public Short YearNoLessThanOrEqualTo = null; public Short YearNoNotEqualTo = null; public ArrayList YearNoBetween = null; public ArrayList YearNoIn = null; public Date YearStartingDate = null; public Date YearStartingDateGreaterThanOrEqualTo = null; public Date YearStartingDateGreaterThan = null; public Date YearStartingDateLessThan = null; public Date YearStartingDateLessThanOrEqualTo = null; public Date YearStartingDateNotEqualTo = null; public ArrayList YearStartingDateBetween = null; public ArrayList YearStartingDateIn = null; public String RetainedEarningsNo = null; public String RetainedEarningsNoStartsWith = null; public String RetainedEarningsNoEndsWith = null; public String RetainedEarningsNoContains = null; public String RetainedEarningsNoLike = null; public ArrayList RetainedEarningsNoBetween = null; public ArrayList RetainedEarningsNoIn = null; public String PeriodName1 = null; public String PeriodName1StartsWith = null; public String PeriodName1EndsWith = null; public String PeriodName1Contains = null; public String PeriodName1Like = null; public ArrayList PeriodName1Between = null; public ArrayList PeriodName1In = null; public Date PeriodStart1 = null; public Date PeriodStart1GreaterThanOrEqualTo = null; public Date PeriodStart1GreaterThan = null; public Date PeriodStart1LessThan = null; public Date PeriodStart1LessThanOrEqualTo = null; public Date PeriodStart1NotEqualTo = null; public ArrayList PeriodStart1Between = null; public ArrayList PeriodStart1In = null; public Short PeriodLocked1 = null; public Short PeriodLocked1GreaterThanOrEqualTo = null; public Short PeriodLocked1GreaterThan = null; public Short PeriodLocked1LessThan = null; public Short PeriodLocked1LessThanOrEqualTo = null; public Short PeriodLocked1NotEqualTo = null; public ArrayList PeriodLocked1Between = null; public ArrayList PeriodLocked1In = null; public Boolean PeriodRolled1 = null; public String PeriodName2 = null; public String PeriodName2StartsWith = null; public String PeriodName2EndsWith = null; public String PeriodName2Contains = null; public String PeriodName2Like = null; public ArrayList PeriodName2Between = null; public ArrayList PeriodName2In = null; public Date PeriodStart2 = null; public Date PeriodStart2GreaterThanOrEqualTo = null; public Date PeriodStart2GreaterThan = null; public Date PeriodStart2LessThan = null; public Date PeriodStart2LessThanOrEqualTo = null; public Date PeriodStart2NotEqualTo = null; public ArrayList PeriodStart2Between = null; public ArrayList PeriodStart2In = null; public Short PeriodLocked2 = null; public Short PeriodLocked2GreaterThanOrEqualTo = null; public Short PeriodLocked2GreaterThan = null; public Short PeriodLocked2LessThan = null; public Short PeriodLocked2LessThanOrEqualTo = null; public Short PeriodLocked2NotEqualTo = null; public ArrayList PeriodLocked2Between = null; public ArrayList PeriodLocked2In = null; public Boolean PeriodRolled2 = null; public String PeriodName3 = null; public String PeriodName3StartsWith = null; public String PeriodName3EndsWith = null; public String PeriodName3Contains = null; public String PeriodName3Like = null; public ArrayList PeriodName3Between = null; public ArrayList PeriodName3In = null; public Date PeriodStart3 = null; public Date PeriodStart3GreaterThanOrEqualTo = null; public Date PeriodStart3GreaterThan = null; public Date PeriodStart3LessThan = null; public Date PeriodStart3LessThanOrEqualTo = null; public Date PeriodStart3NotEqualTo = null; public ArrayList PeriodStart3Between = null; public ArrayList PeriodStart3In = null; public Short PeriodLocked3 = null; public Short PeriodLocked3GreaterThanOrEqualTo = null; public Short PeriodLocked3GreaterThan = null; public Short PeriodLocked3LessThan = null; public Short PeriodLocked3LessThanOrEqualTo = null; public Short PeriodLocked3NotEqualTo = null; public ArrayList PeriodLocked3Between = null; public ArrayList PeriodLocked3In = null; public Boolean PeriodRolled3 = null; public String PeriodName4 = null; public String PeriodName4StartsWith = null; public String PeriodName4EndsWith = null; public String PeriodName4Contains = null; public String PeriodName4Like = null; public ArrayList PeriodName4Between = null; public ArrayList PeriodName4In = null; public Date PeriodStart4 = null; public Date PeriodStart4GreaterThanOrEqualTo = null; public Date PeriodStart4GreaterThan = null; public Date PeriodStart4LessThan = null; public Date PeriodStart4LessThanOrEqualTo = null; public Date PeriodStart4NotEqualTo = null; public ArrayList PeriodStart4Between = null; public ArrayList PeriodStart4In = null; public Short PeriodLocked4 = null; public Short PeriodLocked4GreaterThanOrEqualTo = null; public Short PeriodLocked4GreaterThan = null; public Short PeriodLocked4LessThan = null; public Short PeriodLocked4LessThanOrEqualTo = null; public Short PeriodLocked4NotEqualTo = null; public ArrayList PeriodLocked4Between = null; public ArrayList PeriodLocked4In = null; public Boolean PeriodRolled4 = null; public String PeriodName5 = null; public String PeriodName5StartsWith = null; public String PeriodName5EndsWith = null; public String PeriodName5Contains = null; public String PeriodName5Like = null; public ArrayList PeriodName5Between = null; public ArrayList PeriodName5In = null; public Date PeriodStart5 = null; public Date PeriodStart5GreaterThanOrEqualTo = null; public Date PeriodStart5GreaterThan = null; public Date PeriodStart5LessThan = null; public Date PeriodStart5LessThanOrEqualTo = null; public Date PeriodStart5NotEqualTo = null; public ArrayList PeriodStart5Between = null; public ArrayList PeriodStart5In = null; public Short PeriodLocked5 = null; public Short PeriodLocked5GreaterThanOrEqualTo = null; public Short PeriodLocked5GreaterThan = null; public Short PeriodLocked5LessThan = null; public Short PeriodLocked5LessThanOrEqualTo = null; public Short PeriodLocked5NotEqualTo = null; public ArrayList PeriodLocked5Between = null; public ArrayList PeriodLocked5In = null; public Boolean PeriodRolled5 = null; public String PeriodName6 = null; public String PeriodName6StartsWith = null; public String PeriodName6EndsWith = null; public String PeriodName6Contains = null; public String PeriodName6Like = null; public ArrayList PeriodName6Between = null; public ArrayList PeriodName6In = null; public Date PeriodStart6 = null; public Date PeriodStart6GreaterThanOrEqualTo = null; public Date PeriodStart6GreaterThan = null; public Date PeriodStart6LessThan = null; public Date PeriodStart6LessThanOrEqualTo = null; public Date PeriodStart6NotEqualTo = null; public ArrayList PeriodStart6Between = null; public ArrayList PeriodStart6In = null; public Short PeriodLocked6 = null; public Short PeriodLocked6GreaterThanOrEqualTo = null; public Short PeriodLocked6GreaterThan = null; public Short PeriodLocked6LessThan = null; public Short PeriodLocked6LessThanOrEqualTo = null; public Short PeriodLocked6NotEqualTo = null; public ArrayList PeriodLocked6Between = null; public ArrayList PeriodLocked6In = null; public Boolean PeriodRolled6 = null; public String PeriodName7 = null; public String PeriodName7StartsWith = null; public String PeriodName7EndsWith = null; public String PeriodName7Contains = null; public String PeriodName7Like = null; public ArrayList PeriodName7Between = null; public ArrayList PeriodName7In = null; public Date PeriodStart7 = null; public Date PeriodStart7GreaterThanOrEqualTo = null; public Date PeriodStart7GreaterThan = null; public Date PeriodStart7LessThan = null; public Date PeriodStart7LessThanOrEqualTo = null; public Date PeriodStart7NotEqualTo = null; public ArrayList PeriodStart7Between = null; public ArrayList PeriodStart7In = null; public Short PeriodLocked7 = null; public Short PeriodLocked7GreaterThanOrEqualTo = null; public Short PeriodLocked7GreaterThan = null; public Short PeriodLocked7LessThan = null; public Short PeriodLocked7LessThanOrEqualTo = null; public Short PeriodLocked7NotEqualTo = null; public ArrayList PeriodLocked7Between = null; public ArrayList PeriodLocked7In = null; public Boolean PeriodRolled7 = null; public String PeriodName8 = null; public String PeriodName8StartsWith = null; public String PeriodName8EndsWith = null; public String PeriodName8Contains = null; public String PeriodName8Like = null; public ArrayList PeriodName8Between = null; public ArrayList PeriodName8In = null; public Date PeriodStart8 = null; public Date PeriodStart8GreaterThanOrEqualTo = null; public Date PeriodStart8GreaterThan = null; public Date PeriodStart8LessThan = null; public Date PeriodStart8LessThanOrEqualTo = null; public Date PeriodStart8NotEqualTo = null; public ArrayList PeriodStart8Between = null; public ArrayList PeriodStart8In = null; public Short PeriodLocked8 = null; public Short PeriodLocked8GreaterThanOrEqualTo = null; public Short PeriodLocked8GreaterThan = null; public Short PeriodLocked8LessThan = null; public Short PeriodLocked8LessThanOrEqualTo = null; public Short PeriodLocked8NotEqualTo = null; public ArrayList PeriodLocked8Between = null; public ArrayList PeriodLocked8In = null; public Boolean PeriodRolled8 = null; public String PeriodName9 = null; public String PeriodName9StartsWith = null; public String PeriodName9EndsWith = null; public String PeriodName9Contains = null; public String PeriodName9Like = null; public ArrayList PeriodName9Between = null; public ArrayList PeriodName9In = null; public Date PeriodStart9 = null; public Date PeriodStart9GreaterThanOrEqualTo = null; public Date PeriodStart9GreaterThan = null; public Date PeriodStart9LessThan = null; public Date PeriodStart9LessThanOrEqualTo = null; public Date PeriodStart9NotEqualTo = null; public ArrayList PeriodStart9Between = null; public ArrayList PeriodStart9In = null; public Short PeriodLocked9 = null; public Short PeriodLocked9GreaterThanOrEqualTo = null; public Short PeriodLocked9GreaterThan = null; public Short PeriodLocked9LessThan = null; public Short PeriodLocked9LessThanOrEqualTo = null; public Short PeriodLocked9NotEqualTo = null; public ArrayList PeriodLocked9Between = null; public ArrayList PeriodLocked9In = null; public Boolean PeriodRolled9 = null; public String PeriodName10 = null; public String PeriodName10StartsWith = null; public String PeriodName10EndsWith = null; public String PeriodName10Contains = null; public String PeriodName10Like = null; public ArrayList PeriodName10Between = null; public ArrayList PeriodName10In = null; public Date PeriodStart10 = null; public Date PeriodStart10GreaterThanOrEqualTo = null; public Date PeriodStart10GreaterThan = null; public Date PeriodStart10LessThan = null; public Date PeriodStart10LessThanOrEqualTo = null; public Date PeriodStart10NotEqualTo = null; public ArrayList PeriodStart10Between = null; public ArrayList PeriodStart10In = null; public Short PeriodLocked10 = null; public Short PeriodLocked10GreaterThanOrEqualTo = null; public Short PeriodLocked10GreaterThan = null; public Short PeriodLocked10LessThan = null; public Short PeriodLocked10LessThanOrEqualTo = null; public Short PeriodLocked10NotEqualTo = null; public ArrayList PeriodLocked10Between = null; public ArrayList PeriodLocked10In = null; public Boolean PeriodRolled10 = null; public String PeriodName11 = null; public String PeriodName11StartsWith = null; public String PeriodName11EndsWith = null; public String PeriodName11Contains = null; public String PeriodName11Like = null; public ArrayList PeriodName11Between = null; public ArrayList PeriodName11In = null; public Date PeriodStart11 = null; public Date PeriodStart11GreaterThanOrEqualTo = null; public Date PeriodStart11GreaterThan = null; public Date PeriodStart11LessThan = null; public Date PeriodStart11LessThanOrEqualTo = null; public Date PeriodStart11NotEqualTo = null; public ArrayList PeriodStart11Between = null; public ArrayList PeriodStart11In = null; public Short PeriodLocked11 = null; public Short PeriodLocked11GreaterThanOrEqualTo = null; public Short PeriodLocked11GreaterThan = null; public Short PeriodLocked11LessThan = null; public Short PeriodLocked11LessThanOrEqualTo = null; public Short PeriodLocked11NotEqualTo = null; public ArrayList PeriodLocked11Between = null; public ArrayList PeriodLocked11In = null; public Boolean PeriodRolled11 = null; public String PeriodName12 = null; public String PeriodName12StartsWith = null; public String PeriodName12EndsWith = null; public String PeriodName12Contains = null; public String PeriodName12Like = null; public ArrayList PeriodName12Between = null; public ArrayList PeriodName12In = null; public Date PeriodStart12 = null; public Date PeriodStart12GreaterThanOrEqualTo = null; public Date PeriodStart12GreaterThan = null; public Date PeriodStart12LessThan = null; public Date PeriodStart12LessThanOrEqualTo = null; public Date PeriodStart12NotEqualTo = null; public ArrayList PeriodStart12Between = null; public ArrayList PeriodStart12In = null; public Short PeriodLocked12 = null; public Short PeriodLocked12GreaterThanOrEqualTo = null; public Short PeriodLocked12GreaterThan = null; public Short PeriodLocked12LessThan = null; public Short PeriodLocked12LessThanOrEqualTo = null; public Short PeriodLocked12NotEqualTo = null; public ArrayList PeriodLocked12Between = null; public ArrayList PeriodLocked12In = null; public Boolean PeriodRolled12 = null; public Boolean YearRolled = null; public String getGlSetUpID() { return GLSetUpID; } public GL_ConfigQuery setGlSetUpID(String value) { this.GLSetUpID = value; return this; } public String getGlSetUpIDStartsWith() { return GLSetUpIDStartsWith; } public GL_ConfigQuery setGlSetUpIDStartsWith(String value) { this.GLSetUpIDStartsWith = value; return this; } public String getGlSetUpIDEndsWith() { return GLSetUpIDEndsWith; } public GL_ConfigQuery setGlSetUpIDEndsWith(String value) { this.GLSetUpIDEndsWith = value; return this; } public String getGlSetUpIDContains() { return GLSetUpIDContains; } public GL_ConfigQuery setGlSetUpIDContains(String value) { this.GLSetUpIDContains = value; return this; } public String getGlSetUpIDLike() { return GLSetUpIDLike; } public GL_ConfigQuery setGlSetUpIDLike(String value) { this.GLSetUpIDLike = value; return this; } public ArrayList getGlSetUpIDBetween() { return GLSetUpIDBetween; } public GL_ConfigQuery setGlSetUpIDBetween(ArrayList value) { this.GLSetUpIDBetween = value; return this; } public ArrayList getGlSetUpIDIn() { return GLSetUpIDIn; } public GL_ConfigQuery setGlSetUpIDIn(ArrayList value) { this.GLSetUpIDIn = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public GL_ConfigQuery setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getLastSavedDateTimeGreaterThanOrEqualTo() { return LastSavedDateTimeGreaterThanOrEqualTo; } public GL_ConfigQuery setLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.LastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeGreaterThan() { return LastSavedDateTimeGreaterThan; } public GL_ConfigQuery setLastSavedDateTimeGreaterThan(Date value) { this.LastSavedDateTimeGreaterThan = value; return this; } public Date getLastSavedDateTimeLessThan() { return LastSavedDateTimeLessThan; } public GL_ConfigQuery setLastSavedDateTimeLessThan(Date value) { this.LastSavedDateTimeLessThan = value; return this; } public Date getLastSavedDateTimeLessThanOrEqualTo() { return LastSavedDateTimeLessThanOrEqualTo; } public GL_ConfigQuery setLastSavedDateTimeLessThanOrEqualTo(Date value) { this.LastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeNotEqualTo() { return LastSavedDateTimeNotEqualTo; } public GL_ConfigQuery setLastSavedDateTimeNotEqualTo(Date value) { this.LastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getLastSavedDateTimeBetween() { return LastSavedDateTimeBetween; } public GL_ConfigQuery setLastSavedDateTimeBetween(ArrayList value) { this.LastSavedDateTimeBetween = value; return this; } public ArrayList getLastSavedDateTimeIn() { return LastSavedDateTimeIn; } public GL_ConfigQuery setLastSavedDateTimeIn(ArrayList value) { this.LastSavedDateTimeIn = value; return this; } public Short getYearNo() { return YearNo; } public GL_ConfigQuery setYearNo(Short value) { this.YearNo = value; return this; } public Short getYearNoGreaterThanOrEqualTo() { return YearNoGreaterThanOrEqualTo; } public GL_ConfigQuery setYearNoGreaterThanOrEqualTo(Short value) { this.YearNoGreaterThanOrEqualTo = value; return this; } public Short getYearNoGreaterThan() { return YearNoGreaterThan; } public GL_ConfigQuery setYearNoGreaterThan(Short value) { this.YearNoGreaterThan = value; return this; } public Short getYearNoLessThan() { return YearNoLessThan; } public GL_ConfigQuery setYearNoLessThan(Short value) { this.YearNoLessThan = value; return this; } public Short getYearNoLessThanOrEqualTo() { return YearNoLessThanOrEqualTo; } public GL_ConfigQuery setYearNoLessThanOrEqualTo(Short value) { this.YearNoLessThanOrEqualTo = value; return this; } public Short getYearNoNotEqualTo() { return YearNoNotEqualTo; } public GL_ConfigQuery setYearNoNotEqualTo(Short value) { this.YearNoNotEqualTo = value; return this; } public ArrayList getYearNoBetween() { return YearNoBetween; } public GL_ConfigQuery setYearNoBetween(ArrayList value) { this.YearNoBetween = value; return this; } public ArrayList getYearNoIn() { return YearNoIn; } public GL_ConfigQuery setYearNoIn(ArrayList value) { this.YearNoIn = value; return this; } public Date getYearStartingDate() { return YearStartingDate; } public GL_ConfigQuery setYearStartingDate(Date value) { this.YearStartingDate = value; return this; } public Date getYearStartingDateGreaterThanOrEqualTo() { return YearStartingDateGreaterThanOrEqualTo; } public GL_ConfigQuery setYearStartingDateGreaterThanOrEqualTo(Date value) { this.YearStartingDateGreaterThanOrEqualTo = value; return this; } public Date getYearStartingDateGreaterThan() { return YearStartingDateGreaterThan; } public GL_ConfigQuery setYearStartingDateGreaterThan(Date value) { this.YearStartingDateGreaterThan = value; return this; } public Date getYearStartingDateLessThan() { return YearStartingDateLessThan; } public GL_ConfigQuery setYearStartingDateLessThan(Date value) { this.YearStartingDateLessThan = value; return this; } public Date getYearStartingDateLessThanOrEqualTo() { return YearStartingDateLessThanOrEqualTo; } public GL_ConfigQuery setYearStartingDateLessThanOrEqualTo(Date value) { this.YearStartingDateLessThanOrEqualTo = value; return this; } public Date getYearStartingDateNotEqualTo() { return YearStartingDateNotEqualTo; } public GL_ConfigQuery setYearStartingDateNotEqualTo(Date value) { this.YearStartingDateNotEqualTo = value; return this; } public ArrayList getYearStartingDateBetween() { return YearStartingDateBetween; } public GL_ConfigQuery setYearStartingDateBetween(ArrayList value) { this.YearStartingDateBetween = value; return this; } public ArrayList getYearStartingDateIn() { return YearStartingDateIn; } public GL_ConfigQuery setYearStartingDateIn(ArrayList value) { this.YearStartingDateIn = value; return this; } public String getRetainedEarningsNo() { return RetainedEarningsNo; } public GL_ConfigQuery setRetainedEarningsNo(String value) { this.RetainedEarningsNo = value; return this; } public String getRetainedEarningsNoStartsWith() { return RetainedEarningsNoStartsWith; } public GL_ConfigQuery setRetainedEarningsNoStartsWith(String value) { this.RetainedEarningsNoStartsWith = value; return this; } public String getRetainedEarningsNoEndsWith() { return RetainedEarningsNoEndsWith; } public GL_ConfigQuery setRetainedEarningsNoEndsWith(String value) { this.RetainedEarningsNoEndsWith = value; return this; } public String getRetainedEarningsNoContains() { return RetainedEarningsNoContains; } public GL_ConfigQuery setRetainedEarningsNoContains(String value) { this.RetainedEarningsNoContains = value; return this; } public String getRetainedEarningsNoLike() { return RetainedEarningsNoLike; } public GL_ConfigQuery setRetainedEarningsNoLike(String value) { this.RetainedEarningsNoLike = value; return this; } public ArrayList getRetainedEarningsNoBetween() { return RetainedEarningsNoBetween; } public GL_ConfigQuery setRetainedEarningsNoBetween(ArrayList value) { this.RetainedEarningsNoBetween = value; return this; } public ArrayList getRetainedEarningsNoIn() { return RetainedEarningsNoIn; } public GL_ConfigQuery setRetainedEarningsNoIn(ArrayList value) { this.RetainedEarningsNoIn = value; return this; } public String getPeriodName1() { return PeriodName1; } public GL_ConfigQuery setPeriodName1(String value) { this.PeriodName1 = value; return this; } public String getPeriodName1StartsWith() { return PeriodName1StartsWith; } public GL_ConfigQuery setPeriodName1StartsWith(String value) { this.PeriodName1StartsWith = value; return this; } public String getPeriodName1EndsWith() { return PeriodName1EndsWith; } public GL_ConfigQuery setPeriodName1EndsWith(String value) { this.PeriodName1EndsWith = value; return this; } public String getPeriodName1Contains() { return PeriodName1Contains; } public GL_ConfigQuery setPeriodName1Contains(String value) { this.PeriodName1Contains = value; return this; } public String getPeriodName1Like() { return PeriodName1Like; } public GL_ConfigQuery setPeriodName1Like(String value) { this.PeriodName1Like = value; return this; } public ArrayList getPeriodName1Between() { return PeriodName1Between; } public GL_ConfigQuery setPeriodName1Between(ArrayList value) { this.PeriodName1Between = value; return this; } public ArrayList getPeriodName1In() { return PeriodName1In; } public GL_ConfigQuery setPeriodName1In(ArrayList value) { this.PeriodName1In = value; return this; } public Date getPeriodStart1() { return PeriodStart1; } public GL_ConfigQuery setPeriodStart1(Date value) { this.PeriodStart1 = value; return this; } public Date getPeriodStart1GreaterThanOrEqualTo() { return PeriodStart1GreaterThanOrEqualTo; } public GL_ConfigQuery setPeriodStart1GreaterThanOrEqualTo(Date value) { this.PeriodStart1GreaterThanOrEqualTo = value; return this; } public Date getPeriodStart1GreaterThan() { return PeriodStart1GreaterThan; } public GL_ConfigQuery setPeriodStart1GreaterThan(Date value) { this.PeriodStart1GreaterThan = value; return this; } public Date getPeriodStart1LessThan() { return PeriodStart1LessThan; } public GL_ConfigQuery setPeriodStart1LessThan(Date value) { this.PeriodStart1LessThan = value; return this; } public Date getPeriodStart1LessThanOrEqualTo() { return PeriodStart1LessThanOrEqualTo; } public GL_ConfigQuery setPeriodStart1LessThanOrEqualTo(Date value) { this.PeriodStart1LessThanOrEqualTo = value; return this; } public Date getPeriodStart1NotEqualTo() { return PeriodStart1NotEqualTo; } public GL_ConfigQuery setPeriodStart1NotEqualTo(Date value) { this.PeriodStart1NotEqualTo = value; return this; } public ArrayList getPeriodStart1Between() { return PeriodStart1Between; } public GL_ConfigQuery setPeriodStart1Between(ArrayList value) { this.PeriodStart1Between = value; return this; } public ArrayList getPeriodStart1In() { return PeriodStart1In; } public GL_ConfigQuery setPeriodStart1In(ArrayList value) { this.PeriodStart1In = value; return this; } public Short getPeriodLocked1() { return PeriodLocked1; } public GL_ConfigQuery setPeriodLocked1(Short value) { this.PeriodLocked1 = value; return this; } public Short getPeriodLocked1GreaterThanOrEqualTo() { return PeriodLocked1GreaterThanOrEqualTo; } public GL_ConfigQuery setPeriodLocked1GreaterThanOrEqualTo(Short value) { this.PeriodLocked1GreaterThanOrEqualTo = value; return this; } public Short getPeriodLocked1GreaterThan() { return PeriodLocked1GreaterThan; } public GL_ConfigQuery setPeriodLocked1GreaterThan(Short value) { this.PeriodLocked1GreaterThan = value; return this; } public Short getPeriodLocked1LessThan() { return PeriodLocked1LessThan; } public GL_ConfigQuery setPeriodLocked1LessThan(Short value) { this.PeriodLocked1LessThan = value; return this; } public Short getPeriodLocked1LessThanOrEqualTo() { return PeriodLocked1LessThanOrEqualTo; } public GL_ConfigQuery setPeriodLocked1LessThanOrEqualTo(Short value) { this.PeriodLocked1LessThanOrEqualTo = value; return this; } public Short getPeriodLocked1NotEqualTo() { return PeriodLocked1NotEqualTo; } public GL_ConfigQuery setPeriodLocked1NotEqualTo(Short value) { this.PeriodLocked1NotEqualTo = value; return this; } public ArrayList getPeriodLocked1Between() { return PeriodLocked1Between; } public GL_ConfigQuery setPeriodLocked1Between(ArrayList value) { this.PeriodLocked1Between = value; return this; } public ArrayList getPeriodLocked1In() { return PeriodLocked1In; } public GL_ConfigQuery setPeriodLocked1In(ArrayList value) { this.PeriodLocked1In = value; return this; } public Boolean isPeriodRolled1() { return PeriodRolled1; } public GL_ConfigQuery setPeriodRolled1(Boolean value) { this.PeriodRolled1 = value; return this; } public String getPeriodName2() { return PeriodName2; } public GL_ConfigQuery setPeriodName2(String value) { this.PeriodName2 = value; return this; } public String getPeriodName2StartsWith() { return PeriodName2StartsWith; } public GL_ConfigQuery setPeriodName2StartsWith(String value) { this.PeriodName2StartsWith = value; return this; } public String getPeriodName2EndsWith() { return PeriodName2EndsWith; } public GL_ConfigQuery setPeriodName2EndsWith(String value) { this.PeriodName2EndsWith = value; return this; } public String getPeriodName2Contains() { return PeriodName2Contains; } public GL_ConfigQuery setPeriodName2Contains(String value) { this.PeriodName2Contains = value; return this; } public String getPeriodName2Like() { return PeriodName2Like; } public GL_ConfigQuery setPeriodName2Like(String value) { this.PeriodName2Like = value; return this; } public ArrayList getPeriodName2Between() { return PeriodName2Between; } public GL_ConfigQuery setPeriodName2Between(ArrayList value) { this.PeriodName2Between = value; return this; } public ArrayList getPeriodName2In() { return PeriodName2In; } public GL_ConfigQuery setPeriodName2In(ArrayList value) { this.PeriodName2In = value; return this; } public Date getPeriodStart2() { return PeriodStart2; } public GL_ConfigQuery setPeriodStart2(Date value) { this.PeriodStart2 = value; return this; } public Date getPeriodStart2GreaterThanOrEqualTo() { return PeriodStart2GreaterThanOrEqualTo; } public GL_ConfigQuery setPeriodStart2GreaterThanOrEqualTo(Date value) { this.PeriodStart2GreaterThanOrEqualTo = value; return this; } public Date getPeriodStart2GreaterThan() { return PeriodStart2GreaterThan; } public GL_ConfigQuery setPeriodStart2GreaterThan(Date value) { this.PeriodStart2GreaterThan = value; return this; } public Date getPeriodStart2LessThan() { return PeriodStart2LessThan; } public GL_ConfigQuery setPeriodStart2LessThan(Date value) { this.PeriodStart2LessThan = value; return this; } public Date getPeriodStart2LessThanOrEqualTo() { return PeriodStart2LessThanOrEqualTo; } public GL_ConfigQuery setPeriodStart2LessThanOrEqualTo(Date value) { this.PeriodStart2LessThanOrEqualTo = value; return this; } public Date getPeriodStart2NotEqualTo() { return PeriodStart2NotEqualTo; } public GL_ConfigQuery setPeriodStart2NotEqualTo(Date value) { this.PeriodStart2NotEqualTo = value; return this; } public ArrayList getPeriodStart2Between() { return PeriodStart2Between; } public GL_ConfigQuery setPeriodStart2Between(ArrayList value) { this.PeriodStart2Between = value; return this; } public ArrayList getPeriodStart2In() { return PeriodStart2In; } public GL_ConfigQuery setPeriodStart2In(ArrayList value) { this.PeriodStart2In = value; return this; } public Short getPeriodLocked2() { return PeriodLocked2; } public GL_ConfigQuery setPeriodLocked2(Short value) { this.PeriodLocked2 = value; return this; } public Short getPeriodLocked2GreaterThanOrEqualTo() { return PeriodLocked2GreaterThanOrEqualTo; } public GL_ConfigQuery setPeriodLocked2GreaterThanOrEqualTo(Short value) { this.PeriodLocked2GreaterThanOrEqualTo = value; return this; } public Short getPeriodLocked2GreaterThan() { return PeriodLocked2GreaterThan; } public GL_ConfigQuery setPeriodLocked2GreaterThan(Short value) { this.PeriodLocked2GreaterThan = value; return this; } public Short getPeriodLocked2LessThan() { return PeriodLocked2LessThan; } public GL_ConfigQuery setPeriodLocked2LessThan(Short value) { this.PeriodLocked2LessThan = value; return this; } public Short getPeriodLocked2LessThanOrEqualTo() { return PeriodLocked2LessThanOrEqualTo; } public GL_ConfigQuery setPeriodLocked2LessThanOrEqualTo(Short value) { this.PeriodLocked2LessThanOrEqualTo = value; return this; } public Short getPeriodLocked2NotEqualTo() { return PeriodLocked2NotEqualTo; } public GL_ConfigQuery setPeriodLocked2NotEqualTo(Short value) { this.PeriodLocked2NotEqualTo = value; return this; } public ArrayList getPeriodLocked2Between() { return PeriodLocked2Between; } public GL_ConfigQuery setPeriodLocked2Between(ArrayList value) { this.PeriodLocked2Between = value; return this; } public ArrayList getPeriodLocked2In() { return PeriodLocked2In; } public GL_ConfigQuery setPeriodLocked2In(ArrayList value) { this.PeriodLocked2In = value; return this; } public Boolean isPeriodRolled2() { return PeriodRolled2; } public GL_ConfigQuery setPeriodRolled2(Boolean value) { this.PeriodRolled2 = value; return this; } public String getPeriodName3() { return PeriodName3; } public GL_ConfigQuery setPeriodName3(String value) { this.PeriodName3 = value; return this; } public String getPeriodName3StartsWith() { return PeriodName3StartsWith; } public GL_ConfigQuery setPeriodName3StartsWith(String value) { this.PeriodName3StartsWith = value; return this; } public String getPeriodName3EndsWith() { return PeriodName3EndsWith; } public GL_ConfigQuery setPeriodName3EndsWith(String value) { this.PeriodName3EndsWith = value; return this; } public String getPeriodName3Contains() { return PeriodName3Contains; } public GL_ConfigQuery setPeriodName3Contains(String value) { this.PeriodName3Contains = value; return this; } public String getPeriodName3Like() { return PeriodName3Like; } public GL_ConfigQuery setPeriodName3Like(String value) { this.PeriodName3Like = value; return this; } public ArrayList getPeriodName3Between() { return PeriodName3Between; } public GL_ConfigQuery setPeriodName3Between(ArrayList value) { this.PeriodName3Between = value; return this; } public ArrayList getPeriodName3In() { return PeriodName3In; } public GL_ConfigQuery setPeriodName3In(ArrayList value) { this.PeriodName3In = value; return this; } public Date getPeriodStart3() { return PeriodStart3; } public GL_ConfigQuery setPeriodStart3(Date value) { this.PeriodStart3 = value; return this; } public Date getPeriodStart3GreaterThanOrEqualTo() { return PeriodStart3GreaterThanOrEqualTo; } public GL_ConfigQuery setPeriodStart3GreaterThanOrEqualTo(Date value) { this.PeriodStart3GreaterThanOrEqualTo = value; return this; } public Date getPeriodStart3GreaterThan() { return PeriodStart3GreaterThan; } public GL_ConfigQuery setPeriodStart3GreaterThan(Date value) { this.PeriodStart3GreaterThan = value; return this; } public Date getPeriodStart3LessThan() { return PeriodStart3LessThan; } public GL_ConfigQuery setPeriodStart3LessThan(Date value) { this.PeriodStart3LessThan = value; return this; } public Date getPeriodStart3LessThanOrEqualTo() { return PeriodStart3LessThanOrEqualTo; } public GL_ConfigQuery setPeriodStart3LessThanOrEqualTo(Date value) { this.PeriodStart3LessThanOrEqualTo = value; return this; } public Date getPeriodStart3NotEqualTo() { return PeriodStart3NotEqualTo; } public GL_ConfigQuery setPeriodStart3NotEqualTo(Date value) { this.PeriodStart3NotEqualTo = value; return this; } public ArrayList getPeriodStart3Between() { return PeriodStart3Between; } public GL_ConfigQuery setPeriodStart3Between(ArrayList value) { this.PeriodStart3Between = value; return this; } public ArrayList getPeriodStart3In() { return PeriodStart3In; } public GL_ConfigQuery setPeriodStart3In(ArrayList value) { this.PeriodStart3In = value; return this; } public Short getPeriodLocked3() { return PeriodLocked3; } public GL_ConfigQuery setPeriodLocked3(Short value) { this.PeriodLocked3 = value; return this; } public Short getPeriodLocked3GreaterThanOrEqualTo() { return PeriodLocked3GreaterThanOrEqualTo; } public GL_ConfigQuery setPeriodLocked3GreaterThanOrEqualTo(Short value) { this.PeriodLocked3GreaterThanOrEqualTo = value; return this; } public Short getPeriodLocked3GreaterThan() { return PeriodLocked3GreaterThan; } public GL_ConfigQuery setPeriodLocked3GreaterThan(Short value) { this.PeriodLocked3GreaterThan = value; return this; } public Short getPeriodLocked3LessThan() { return PeriodLocked3LessThan; } public GL_ConfigQuery setPeriodLocked3LessThan(Short value) { this.PeriodLocked3LessThan = value; return this; } public Short getPeriodLocked3LessThanOrEqualTo() { return PeriodLocked3LessThanOrEqualTo; } public GL_ConfigQuery setPeriodLocked3LessThanOrEqualTo(Short value) { this.PeriodLocked3LessThanOrEqualTo = value; return this; } public Short getPeriodLocked3NotEqualTo() { return PeriodLocked3NotEqualTo; } public GL_ConfigQuery setPeriodLocked3NotEqualTo(Short value) { this.PeriodLocked3NotEqualTo = value; return this; } public ArrayList getPeriodLocked3Between() { return PeriodLocked3Between; } public GL_ConfigQuery setPeriodLocked3Between(ArrayList value) { this.PeriodLocked3Between = value; return this; } public ArrayList getPeriodLocked3In() { return PeriodLocked3In; } public GL_ConfigQuery setPeriodLocked3In(ArrayList value) { this.PeriodLocked3In = value; return this; } public Boolean isPeriodRolled3() { return PeriodRolled3; } public GL_ConfigQuery setPeriodRolled3(Boolean value) { this.PeriodRolled3 = value; return this; } public String getPeriodName4() { return PeriodName4; } public GL_ConfigQuery setPeriodName4(String value) { this.PeriodName4 = value; return this; } public String getPeriodName4StartsWith() { return PeriodName4StartsWith; } public GL_ConfigQuery setPeriodName4StartsWith(String value) { this.PeriodName4StartsWith = value; return this; } public String getPeriodName4EndsWith() { return PeriodName4EndsWith; } public GL_ConfigQuery setPeriodName4EndsWith(String value) { this.PeriodName4EndsWith = value; return this; } public String getPeriodName4Contains() { return PeriodName4Contains; } public GL_ConfigQuery setPeriodName4Contains(String value) { this.PeriodName4Contains = value; return this; } public String getPeriodName4Like() { return PeriodName4Like; } public GL_ConfigQuery setPeriodName4Like(String value) { this.PeriodName4Like = value; return this; } public ArrayList getPeriodName4Between() { return PeriodName4Between; } public GL_ConfigQuery setPeriodName4Between(ArrayList value) { this.PeriodName4Between = value; return this; } public ArrayList getPeriodName4In() { return PeriodName4In; } public GL_ConfigQuery setPeriodName4In(ArrayList value) { this.PeriodName4In = value; return this; } public Date getPeriodStart4() { return PeriodStart4; } public GL_ConfigQuery setPeriodStart4(Date value) { this.PeriodStart4 = value; return this; } public Date getPeriodStart4GreaterThanOrEqualTo() { return PeriodStart4GreaterThanOrEqualTo; } public GL_ConfigQuery setPeriodStart4GreaterThanOrEqualTo(Date value) { this.PeriodStart4GreaterThanOrEqualTo = value; return this; } public Date getPeriodStart4GreaterThan() { return PeriodStart4GreaterThan; } public GL_ConfigQuery setPeriodStart4GreaterThan(Date value) { this.PeriodStart4GreaterThan = value; return this; } public Date getPeriodStart4LessThan() { return PeriodStart4LessThan; } public GL_ConfigQuery setPeriodStart4LessThan(Date value) { this.PeriodStart4LessThan = value; return this; } public Date getPeriodStart4LessThanOrEqualTo() { return PeriodStart4LessThanOrEqualTo; } public GL_ConfigQuery setPeriodStart4LessThanOrEqualTo(Date value) { this.PeriodStart4LessThanOrEqualTo = value; return this; } public Date getPeriodStart4NotEqualTo() { return PeriodStart4NotEqualTo; } public GL_ConfigQuery setPeriodStart4NotEqualTo(Date value) { this.PeriodStart4NotEqualTo = value; return this; } public ArrayList getPeriodStart4Between() { return PeriodStart4Between; } public GL_ConfigQuery setPeriodStart4Between(ArrayList value) { this.PeriodStart4Between = value; return this; } public ArrayList getPeriodStart4In() { return PeriodStart4In; } public GL_ConfigQuery setPeriodStart4In(ArrayList value) { this.PeriodStart4In = value; return this; } public Short getPeriodLocked4() { return PeriodLocked4; } public GL_ConfigQuery setPeriodLocked4(Short value) { this.PeriodLocked4 = value; return this; } public Short getPeriodLocked4GreaterThanOrEqualTo() { return PeriodLocked4GreaterThanOrEqualTo; } public GL_ConfigQuery setPeriodLocked4GreaterThanOrEqualTo(Short value) { this.PeriodLocked4GreaterThanOrEqualTo = value; return this; } public Short getPeriodLocked4GreaterThan() { return PeriodLocked4GreaterThan; } public GL_ConfigQuery setPeriodLocked4GreaterThan(Short value) { this.PeriodLocked4GreaterThan = value; return this; } public Short getPeriodLocked4LessThan() { return PeriodLocked4LessThan; } public GL_ConfigQuery setPeriodLocked4LessThan(Short value) { this.PeriodLocked4LessThan = value; return this; } public Short getPeriodLocked4LessThanOrEqualTo() { return PeriodLocked4LessThanOrEqualTo; } public GL_ConfigQuery setPeriodLocked4LessThanOrEqualTo(Short value) { this.PeriodLocked4LessThanOrEqualTo = value; return this; } public Short getPeriodLocked4NotEqualTo() { return PeriodLocked4NotEqualTo; } public GL_ConfigQuery setPeriodLocked4NotEqualTo(Short value) { this.PeriodLocked4NotEqualTo = value; return this; } public ArrayList getPeriodLocked4Between() { return PeriodLocked4Between; } public GL_ConfigQuery setPeriodLocked4Between(ArrayList value) { this.PeriodLocked4Between = value; return this; } public ArrayList getPeriodLocked4In() { return PeriodLocked4In; } public GL_ConfigQuery setPeriodLocked4In(ArrayList value) { this.PeriodLocked4In = value; return this; } public Boolean isPeriodRolled4() { return PeriodRolled4; } public GL_ConfigQuery setPeriodRolled4(Boolean value) { this.PeriodRolled4 = value; return this; } public String getPeriodName5() { return PeriodName5; } public GL_ConfigQuery setPeriodName5(String value) { this.PeriodName5 = value; return this; } public String getPeriodName5StartsWith() { return PeriodName5StartsWith; } public GL_ConfigQuery setPeriodName5StartsWith(String value) { this.PeriodName5StartsWith = value; return this; } public String getPeriodName5EndsWith() { return PeriodName5EndsWith; } public GL_ConfigQuery setPeriodName5EndsWith(String value) { this.PeriodName5EndsWith = value; return this; } public String getPeriodName5Contains() { return PeriodName5Contains; } public GL_ConfigQuery setPeriodName5Contains(String value) { this.PeriodName5Contains = value; return this; } public String getPeriodName5Like() { return PeriodName5Like; } public GL_ConfigQuery setPeriodName5Like(String value) { this.PeriodName5Like = value; return this; } public ArrayList getPeriodName5Between() { return PeriodName5Between; } public GL_ConfigQuery setPeriodName5Between(ArrayList value) { this.PeriodName5Between = value; return this; } public ArrayList getPeriodName5In() { return PeriodName5In; } public GL_ConfigQuery setPeriodName5In(ArrayList value) { this.PeriodName5In = value; return this; } public Date getPeriodStart5() { return PeriodStart5; } public GL_ConfigQuery setPeriodStart5(Date value) { this.PeriodStart5 = value; return this; } public Date getPeriodStart5GreaterThanOrEqualTo() { return PeriodStart5GreaterThanOrEqualTo; } public GL_ConfigQuery setPeriodStart5GreaterThanOrEqualTo(Date value) { this.PeriodStart5GreaterThanOrEqualTo = value; return this; } public Date getPeriodStart5GreaterThan() { return PeriodStart5GreaterThan; } public GL_ConfigQuery setPeriodStart5GreaterThan(Date value) { this.PeriodStart5GreaterThan = value; return this; } public Date getPeriodStart5LessThan() { return PeriodStart5LessThan; } public GL_ConfigQuery setPeriodStart5LessThan(Date value) { this.PeriodStart5LessThan = value; return this; } public Date getPeriodStart5LessThanOrEqualTo() { return PeriodStart5LessThanOrEqualTo; } public GL_ConfigQuery setPeriodStart5LessThanOrEqualTo(Date value) { this.PeriodStart5LessThanOrEqualTo = value; return this; } public Date getPeriodStart5NotEqualTo() { return PeriodStart5NotEqualTo; } public GL_ConfigQuery setPeriodStart5NotEqualTo(Date value) { this.PeriodStart5NotEqualTo = value; return this; } public ArrayList getPeriodStart5Between() { return PeriodStart5Between; } public GL_ConfigQuery setPeriodStart5Between(ArrayList value) { this.PeriodStart5Between = value; return this; } public ArrayList getPeriodStart5In() { return PeriodStart5In; } public GL_ConfigQuery setPeriodStart5In(ArrayList value) { this.PeriodStart5In = value; return this; } public Short getPeriodLocked5() { return PeriodLocked5; } public GL_ConfigQuery setPeriodLocked5(Short value) { this.PeriodLocked5 = value; return this; } public Short getPeriodLocked5GreaterThanOrEqualTo() { return PeriodLocked5GreaterThanOrEqualTo; } public GL_ConfigQuery setPeriodLocked5GreaterThanOrEqualTo(Short value) { this.PeriodLocked5GreaterThanOrEqualTo = value; return this; } public Short getPeriodLocked5GreaterThan() { return PeriodLocked5GreaterThan; } public GL_ConfigQuery setPeriodLocked5GreaterThan(Short value) { this.PeriodLocked5GreaterThan = value; return this; } public Short getPeriodLocked5LessThan() { return PeriodLocked5LessThan; } public GL_ConfigQuery setPeriodLocked5LessThan(Short value) { this.PeriodLocked5LessThan = value; return this; } public Short getPeriodLocked5LessThanOrEqualTo() { return PeriodLocked5LessThanOrEqualTo; } public GL_ConfigQuery setPeriodLocked5LessThanOrEqualTo(Short value) { this.PeriodLocked5LessThanOrEqualTo = value; return this; } public Short getPeriodLocked5NotEqualTo() { return PeriodLocked5NotEqualTo; } public GL_ConfigQuery setPeriodLocked5NotEqualTo(Short value) { this.PeriodLocked5NotEqualTo = value; return this; } public ArrayList getPeriodLocked5Between() { return PeriodLocked5Between; } public GL_ConfigQuery setPeriodLocked5Between(ArrayList value) { this.PeriodLocked5Between = value; return this; } public ArrayList getPeriodLocked5In() { return PeriodLocked5In; } public GL_ConfigQuery setPeriodLocked5In(ArrayList value) { this.PeriodLocked5In = value; return this; } public Boolean isPeriodRolled5() { return PeriodRolled5; } public GL_ConfigQuery setPeriodRolled5(Boolean value) { this.PeriodRolled5 = value; return this; } public String getPeriodName6() { return PeriodName6; } public GL_ConfigQuery setPeriodName6(String value) { this.PeriodName6 = value; return this; } public String getPeriodName6StartsWith() { return PeriodName6StartsWith; } public GL_ConfigQuery setPeriodName6StartsWith(String value) { this.PeriodName6StartsWith = value; return this; } public String getPeriodName6EndsWith() { return PeriodName6EndsWith; } public GL_ConfigQuery setPeriodName6EndsWith(String value) { this.PeriodName6EndsWith = value; return this; } public String getPeriodName6Contains() { return PeriodName6Contains; } public GL_ConfigQuery setPeriodName6Contains(String value) { this.PeriodName6Contains = value; return this; } public String getPeriodName6Like() { return PeriodName6Like; } public GL_ConfigQuery setPeriodName6Like(String value) { this.PeriodName6Like = value; return this; } public ArrayList getPeriodName6Between() { return PeriodName6Between; } public GL_ConfigQuery setPeriodName6Between(ArrayList value) { this.PeriodName6Between = value; return this; } public ArrayList getPeriodName6In() { return PeriodName6In; } public GL_ConfigQuery setPeriodName6In(ArrayList value) { this.PeriodName6In = value; return this; } public Date getPeriodStart6() { return PeriodStart6; } public GL_ConfigQuery setPeriodStart6(Date value) { this.PeriodStart6 = value; return this; } public Date getPeriodStart6GreaterThanOrEqualTo() { return PeriodStart6GreaterThanOrEqualTo; } public GL_ConfigQuery setPeriodStart6GreaterThanOrEqualTo(Date value) { this.PeriodStart6GreaterThanOrEqualTo = value; return this; } public Date getPeriodStart6GreaterThan() { return PeriodStart6GreaterThan; } public GL_ConfigQuery setPeriodStart6GreaterThan(Date value) { this.PeriodStart6GreaterThan = value; return this; } public Date getPeriodStart6LessThan() { return PeriodStart6LessThan; } public GL_ConfigQuery setPeriodStart6LessThan(Date value) { this.PeriodStart6LessThan = value; return this; } public Date getPeriodStart6LessThanOrEqualTo() { return PeriodStart6LessThanOrEqualTo; } public GL_ConfigQuery setPeriodStart6LessThanOrEqualTo(Date value) { this.PeriodStart6LessThanOrEqualTo = value; return this; } public Date getPeriodStart6NotEqualTo() { return PeriodStart6NotEqualTo; } public GL_ConfigQuery setPeriodStart6NotEqualTo(Date value) { this.PeriodStart6NotEqualTo = value; return this; } public ArrayList getPeriodStart6Between() { return PeriodStart6Between; } public GL_ConfigQuery setPeriodStart6Between(ArrayList value) { this.PeriodStart6Between = value; return this; } public ArrayList getPeriodStart6In() { return PeriodStart6In; } public GL_ConfigQuery setPeriodStart6In(ArrayList value) { this.PeriodStart6In = value; return this; } public Short getPeriodLocked6() { return PeriodLocked6; } public GL_ConfigQuery setPeriodLocked6(Short value) { this.PeriodLocked6 = value; return this; } public Short getPeriodLocked6GreaterThanOrEqualTo() { return PeriodLocked6GreaterThanOrEqualTo; } public GL_ConfigQuery setPeriodLocked6GreaterThanOrEqualTo(Short value) { this.PeriodLocked6GreaterThanOrEqualTo = value; return this; } public Short getPeriodLocked6GreaterThan() { return PeriodLocked6GreaterThan; } public GL_ConfigQuery setPeriodLocked6GreaterThan(Short value) { this.PeriodLocked6GreaterThan = value; return this; } public Short getPeriodLocked6LessThan() { return PeriodLocked6LessThan; } public GL_ConfigQuery setPeriodLocked6LessThan(Short value) { this.PeriodLocked6LessThan = value; return this; } public Short getPeriodLocked6LessThanOrEqualTo() { return PeriodLocked6LessThanOrEqualTo; } public GL_ConfigQuery setPeriodLocked6LessThanOrEqualTo(Short value) { this.PeriodLocked6LessThanOrEqualTo = value; return this; } public Short getPeriodLocked6NotEqualTo() { return PeriodLocked6NotEqualTo; } public GL_ConfigQuery setPeriodLocked6NotEqualTo(Short value) { this.PeriodLocked6NotEqualTo = value; return this; } public ArrayList getPeriodLocked6Between() { return PeriodLocked6Between; } public GL_ConfigQuery setPeriodLocked6Between(ArrayList value) { this.PeriodLocked6Between = value; return this; } public ArrayList getPeriodLocked6In() { return PeriodLocked6In; } public GL_ConfigQuery setPeriodLocked6In(ArrayList value) { this.PeriodLocked6In = value; return this; } public Boolean isPeriodRolled6() { return PeriodRolled6; } public GL_ConfigQuery setPeriodRolled6(Boolean value) { this.PeriodRolled6 = value; return this; } public String getPeriodName7() { return PeriodName7; } public GL_ConfigQuery setPeriodName7(String value) { this.PeriodName7 = value; return this; } public String getPeriodName7StartsWith() { return PeriodName7StartsWith; } public GL_ConfigQuery setPeriodName7StartsWith(String value) { this.PeriodName7StartsWith = value; return this; } public String getPeriodName7EndsWith() { return PeriodName7EndsWith; } public GL_ConfigQuery setPeriodName7EndsWith(String value) { this.PeriodName7EndsWith = value; return this; } public String getPeriodName7Contains() { return PeriodName7Contains; } public GL_ConfigQuery setPeriodName7Contains(String value) { this.PeriodName7Contains = value; return this; } public String getPeriodName7Like() { return PeriodName7Like; } public GL_ConfigQuery setPeriodName7Like(String value) { this.PeriodName7Like = value; return this; } public ArrayList getPeriodName7Between() { return PeriodName7Between; } public GL_ConfigQuery setPeriodName7Between(ArrayList value) { this.PeriodName7Between = value; return this; } public ArrayList getPeriodName7In() { return PeriodName7In; } public GL_ConfigQuery setPeriodName7In(ArrayList value) { this.PeriodName7In = value; return this; } public Date getPeriodStart7() { return PeriodStart7; } public GL_ConfigQuery setPeriodStart7(Date value) { this.PeriodStart7 = value; return this; } public Date getPeriodStart7GreaterThanOrEqualTo() { return PeriodStart7GreaterThanOrEqualTo; } public GL_ConfigQuery setPeriodStart7GreaterThanOrEqualTo(Date value) { this.PeriodStart7GreaterThanOrEqualTo = value; return this; } public Date getPeriodStart7GreaterThan() { return PeriodStart7GreaterThan; } public GL_ConfigQuery setPeriodStart7GreaterThan(Date value) { this.PeriodStart7GreaterThan = value; return this; } public Date getPeriodStart7LessThan() { return PeriodStart7LessThan; } public GL_ConfigQuery setPeriodStart7LessThan(Date value) { this.PeriodStart7LessThan = value; return this; } public Date getPeriodStart7LessThanOrEqualTo() { return PeriodStart7LessThanOrEqualTo; } public GL_ConfigQuery setPeriodStart7LessThanOrEqualTo(Date value) { this.PeriodStart7LessThanOrEqualTo = value; return this; } public Date getPeriodStart7NotEqualTo() { return PeriodStart7NotEqualTo; } public GL_ConfigQuery setPeriodStart7NotEqualTo(Date value) { this.PeriodStart7NotEqualTo = value; return this; } public ArrayList getPeriodStart7Between() { return PeriodStart7Between; } public GL_ConfigQuery setPeriodStart7Between(ArrayList value) { this.PeriodStart7Between = value; return this; } public ArrayList getPeriodStart7In() { return PeriodStart7In; } public GL_ConfigQuery setPeriodStart7In(ArrayList value) { this.PeriodStart7In = value; return this; } public Short getPeriodLocked7() { return PeriodLocked7; } public GL_ConfigQuery setPeriodLocked7(Short value) { this.PeriodLocked7 = value; return this; } public Short getPeriodLocked7GreaterThanOrEqualTo() { return PeriodLocked7GreaterThanOrEqualTo; } public GL_ConfigQuery setPeriodLocked7GreaterThanOrEqualTo(Short value) { this.PeriodLocked7GreaterThanOrEqualTo = value; return this; } public Short getPeriodLocked7GreaterThan() { return PeriodLocked7GreaterThan; } public GL_ConfigQuery setPeriodLocked7GreaterThan(Short value) { this.PeriodLocked7GreaterThan = value; return this; } public Short getPeriodLocked7LessThan() { return PeriodLocked7LessThan; } public GL_ConfigQuery setPeriodLocked7LessThan(Short value) { this.PeriodLocked7LessThan = value; return this; } public Short getPeriodLocked7LessThanOrEqualTo() { return PeriodLocked7LessThanOrEqualTo; } public GL_ConfigQuery setPeriodLocked7LessThanOrEqualTo(Short value) { this.PeriodLocked7LessThanOrEqualTo = value; return this; } public Short getPeriodLocked7NotEqualTo() { return PeriodLocked7NotEqualTo; } public GL_ConfigQuery setPeriodLocked7NotEqualTo(Short value) { this.PeriodLocked7NotEqualTo = value; return this; } public ArrayList getPeriodLocked7Between() { return PeriodLocked7Between; } public GL_ConfigQuery setPeriodLocked7Between(ArrayList value) { this.PeriodLocked7Between = value; return this; } public ArrayList getPeriodLocked7In() { return PeriodLocked7In; } public GL_ConfigQuery setPeriodLocked7In(ArrayList value) { this.PeriodLocked7In = value; return this; } public Boolean isPeriodRolled7() { return PeriodRolled7; } public GL_ConfigQuery setPeriodRolled7(Boolean value) { this.PeriodRolled7 = value; return this; } public String getPeriodName8() { return PeriodName8; } public GL_ConfigQuery setPeriodName8(String value) { this.PeriodName8 = value; return this; } public String getPeriodName8StartsWith() { return PeriodName8StartsWith; } public GL_ConfigQuery setPeriodName8StartsWith(String value) { this.PeriodName8StartsWith = value; return this; } public String getPeriodName8EndsWith() { return PeriodName8EndsWith; } public GL_ConfigQuery setPeriodName8EndsWith(String value) { this.PeriodName8EndsWith = value; return this; } public String getPeriodName8Contains() { return PeriodName8Contains; } public GL_ConfigQuery setPeriodName8Contains(String value) { this.PeriodName8Contains = value; return this; } public String getPeriodName8Like() { return PeriodName8Like; } public GL_ConfigQuery setPeriodName8Like(String value) { this.PeriodName8Like = value; return this; } public ArrayList getPeriodName8Between() { return PeriodName8Between; } public GL_ConfigQuery setPeriodName8Between(ArrayList value) { this.PeriodName8Between = value; return this; } public ArrayList getPeriodName8In() { return PeriodName8In; } public GL_ConfigQuery setPeriodName8In(ArrayList value) { this.PeriodName8In = value; return this; } public Date getPeriodStart8() { return PeriodStart8; } public GL_ConfigQuery setPeriodStart8(Date value) { this.PeriodStart8 = value; return this; } public Date getPeriodStart8GreaterThanOrEqualTo() { return PeriodStart8GreaterThanOrEqualTo; } public GL_ConfigQuery setPeriodStart8GreaterThanOrEqualTo(Date value) { this.PeriodStart8GreaterThanOrEqualTo = value; return this; } public Date getPeriodStart8GreaterThan() { return PeriodStart8GreaterThan; } public GL_ConfigQuery setPeriodStart8GreaterThan(Date value) { this.PeriodStart8GreaterThan = value; return this; } public Date getPeriodStart8LessThan() { return PeriodStart8LessThan; } public GL_ConfigQuery setPeriodStart8LessThan(Date value) { this.PeriodStart8LessThan = value; return this; } public Date getPeriodStart8LessThanOrEqualTo() { return PeriodStart8LessThanOrEqualTo; } public GL_ConfigQuery setPeriodStart8LessThanOrEqualTo(Date value) { this.PeriodStart8LessThanOrEqualTo = value; return this; } public Date getPeriodStart8NotEqualTo() { return PeriodStart8NotEqualTo; } public GL_ConfigQuery setPeriodStart8NotEqualTo(Date value) { this.PeriodStart8NotEqualTo = value; return this; } public ArrayList getPeriodStart8Between() { return PeriodStart8Between; } public GL_ConfigQuery setPeriodStart8Between(ArrayList value) { this.PeriodStart8Between = value; return this; } public ArrayList getPeriodStart8In() { return PeriodStart8In; } public GL_ConfigQuery setPeriodStart8In(ArrayList value) { this.PeriodStart8In = value; return this; } public Short getPeriodLocked8() { return PeriodLocked8; } public GL_ConfigQuery setPeriodLocked8(Short value) { this.PeriodLocked8 = value; return this; } public Short getPeriodLocked8GreaterThanOrEqualTo() { return PeriodLocked8GreaterThanOrEqualTo; } public GL_ConfigQuery setPeriodLocked8GreaterThanOrEqualTo(Short value) { this.PeriodLocked8GreaterThanOrEqualTo = value; return this; } public Short getPeriodLocked8GreaterThan() { return PeriodLocked8GreaterThan; } public GL_ConfigQuery setPeriodLocked8GreaterThan(Short value) { this.PeriodLocked8GreaterThan = value; return this; } public Short getPeriodLocked8LessThan() { return PeriodLocked8LessThan; } public GL_ConfigQuery setPeriodLocked8LessThan(Short value) { this.PeriodLocked8LessThan = value; return this; } public Short getPeriodLocked8LessThanOrEqualTo() { return PeriodLocked8LessThanOrEqualTo; } public GL_ConfigQuery setPeriodLocked8LessThanOrEqualTo(Short value) { this.PeriodLocked8LessThanOrEqualTo = value; return this; } public Short getPeriodLocked8NotEqualTo() { return PeriodLocked8NotEqualTo; } public GL_ConfigQuery setPeriodLocked8NotEqualTo(Short value) { this.PeriodLocked8NotEqualTo = value; return this; } public ArrayList getPeriodLocked8Between() { return PeriodLocked8Between; } public GL_ConfigQuery setPeriodLocked8Between(ArrayList value) { this.PeriodLocked8Between = value; return this; } public ArrayList getPeriodLocked8In() { return PeriodLocked8In; } public GL_ConfigQuery setPeriodLocked8In(ArrayList value) { this.PeriodLocked8In = value; return this; } public Boolean isPeriodRolled8() { return PeriodRolled8; } public GL_ConfigQuery setPeriodRolled8(Boolean value) { this.PeriodRolled8 = value; return this; } public String getPeriodName9() { return PeriodName9; } public GL_ConfigQuery setPeriodName9(String value) { this.PeriodName9 = value; return this; } public String getPeriodName9StartsWith() { return PeriodName9StartsWith; } public GL_ConfigQuery setPeriodName9StartsWith(String value) { this.PeriodName9StartsWith = value; return this; } public String getPeriodName9EndsWith() { return PeriodName9EndsWith; } public GL_ConfigQuery setPeriodName9EndsWith(String value) { this.PeriodName9EndsWith = value; return this; } public String getPeriodName9Contains() { return PeriodName9Contains; } public GL_ConfigQuery setPeriodName9Contains(String value) { this.PeriodName9Contains = value; return this; } public String getPeriodName9Like() { return PeriodName9Like; } public GL_ConfigQuery setPeriodName9Like(String value) { this.PeriodName9Like = value; return this; } public ArrayList getPeriodName9Between() { return PeriodName9Between; } public GL_ConfigQuery setPeriodName9Between(ArrayList value) { this.PeriodName9Between = value; return this; } public ArrayList getPeriodName9In() { return PeriodName9In; } public GL_ConfigQuery setPeriodName9In(ArrayList value) { this.PeriodName9In = value; return this; } public Date getPeriodStart9() { return PeriodStart9; } public GL_ConfigQuery setPeriodStart9(Date value) { this.PeriodStart9 = value; return this; } public Date getPeriodStart9GreaterThanOrEqualTo() { return PeriodStart9GreaterThanOrEqualTo; } public GL_ConfigQuery setPeriodStart9GreaterThanOrEqualTo(Date value) { this.PeriodStart9GreaterThanOrEqualTo = value; return this; } public Date getPeriodStart9GreaterThan() { return PeriodStart9GreaterThan; } public GL_ConfigQuery setPeriodStart9GreaterThan(Date value) { this.PeriodStart9GreaterThan = value; return this; } public Date getPeriodStart9LessThan() { return PeriodStart9LessThan; } public GL_ConfigQuery setPeriodStart9LessThan(Date value) { this.PeriodStart9LessThan = value; return this; } public Date getPeriodStart9LessThanOrEqualTo() { return PeriodStart9LessThanOrEqualTo; } public GL_ConfigQuery setPeriodStart9LessThanOrEqualTo(Date value) { this.PeriodStart9LessThanOrEqualTo = value; return this; } public Date getPeriodStart9NotEqualTo() { return PeriodStart9NotEqualTo; } public GL_ConfigQuery setPeriodStart9NotEqualTo(Date value) { this.PeriodStart9NotEqualTo = value; return this; } public ArrayList getPeriodStart9Between() { return PeriodStart9Between; } public GL_ConfigQuery setPeriodStart9Between(ArrayList value) { this.PeriodStart9Between = value; return this; } public ArrayList getPeriodStart9In() { return PeriodStart9In; } public GL_ConfigQuery setPeriodStart9In(ArrayList value) { this.PeriodStart9In = value; return this; } public Short getPeriodLocked9() { return PeriodLocked9; } public GL_ConfigQuery setPeriodLocked9(Short value) { this.PeriodLocked9 = value; return this; } public Short getPeriodLocked9GreaterThanOrEqualTo() { return PeriodLocked9GreaterThanOrEqualTo; } public GL_ConfigQuery setPeriodLocked9GreaterThanOrEqualTo(Short value) { this.PeriodLocked9GreaterThanOrEqualTo = value; return this; } public Short getPeriodLocked9GreaterThan() { return PeriodLocked9GreaterThan; } public GL_ConfigQuery setPeriodLocked9GreaterThan(Short value) { this.PeriodLocked9GreaterThan = value; return this; } public Short getPeriodLocked9LessThan() { return PeriodLocked9LessThan; } public GL_ConfigQuery setPeriodLocked9LessThan(Short value) { this.PeriodLocked9LessThan = value; return this; } public Short getPeriodLocked9LessThanOrEqualTo() { return PeriodLocked9LessThanOrEqualTo; } public GL_ConfigQuery setPeriodLocked9LessThanOrEqualTo(Short value) { this.PeriodLocked9LessThanOrEqualTo = value; return this; } public Short getPeriodLocked9NotEqualTo() { return PeriodLocked9NotEqualTo; } public GL_ConfigQuery setPeriodLocked9NotEqualTo(Short value) { this.PeriodLocked9NotEqualTo = value; return this; } public ArrayList getPeriodLocked9Between() { return PeriodLocked9Between; } public GL_ConfigQuery setPeriodLocked9Between(ArrayList value) { this.PeriodLocked9Between = value; return this; } public ArrayList getPeriodLocked9In() { return PeriodLocked9In; } public GL_ConfigQuery setPeriodLocked9In(ArrayList value) { this.PeriodLocked9In = value; return this; } public Boolean isPeriodRolled9() { return PeriodRolled9; } public GL_ConfigQuery setPeriodRolled9(Boolean value) { this.PeriodRolled9 = value; return this; } public String getPeriodName10() { return PeriodName10; } public GL_ConfigQuery setPeriodName10(String value) { this.PeriodName10 = value; return this; } public String getPeriodName10StartsWith() { return PeriodName10StartsWith; } public GL_ConfigQuery setPeriodName10StartsWith(String value) { this.PeriodName10StartsWith = value; return this; } public String getPeriodName10EndsWith() { return PeriodName10EndsWith; } public GL_ConfigQuery setPeriodName10EndsWith(String value) { this.PeriodName10EndsWith = value; return this; } public String getPeriodName10Contains() { return PeriodName10Contains; } public GL_ConfigQuery setPeriodName10Contains(String value) { this.PeriodName10Contains = value; return this; } public String getPeriodName10Like() { return PeriodName10Like; } public GL_ConfigQuery setPeriodName10Like(String value) { this.PeriodName10Like = value; return this; } public ArrayList getPeriodName10Between() { return PeriodName10Between; } public GL_ConfigQuery setPeriodName10Between(ArrayList value) { this.PeriodName10Between = value; return this; } public ArrayList getPeriodName10In() { return PeriodName10In; } public GL_ConfigQuery setPeriodName10In(ArrayList value) { this.PeriodName10In = value; return this; } public Date getPeriodStart10() { return PeriodStart10; } public GL_ConfigQuery setPeriodStart10(Date value) { this.PeriodStart10 = value; return this; } public Date getPeriodStart10GreaterThanOrEqualTo() { return PeriodStart10GreaterThanOrEqualTo; } public GL_ConfigQuery setPeriodStart10GreaterThanOrEqualTo(Date value) { this.PeriodStart10GreaterThanOrEqualTo = value; return this; } public Date getPeriodStart10GreaterThan() { return PeriodStart10GreaterThan; } public GL_ConfigQuery setPeriodStart10GreaterThan(Date value) { this.PeriodStart10GreaterThan = value; return this; } public Date getPeriodStart10LessThan() { return PeriodStart10LessThan; } public GL_ConfigQuery setPeriodStart10LessThan(Date value) { this.PeriodStart10LessThan = value; return this; } public Date getPeriodStart10LessThanOrEqualTo() { return PeriodStart10LessThanOrEqualTo; } public GL_ConfigQuery setPeriodStart10LessThanOrEqualTo(Date value) { this.PeriodStart10LessThanOrEqualTo = value; return this; } public Date getPeriodStart10NotEqualTo() { return PeriodStart10NotEqualTo; } public GL_ConfigQuery setPeriodStart10NotEqualTo(Date value) { this.PeriodStart10NotEqualTo = value; return this; } public ArrayList getPeriodStart10Between() { return PeriodStart10Between; } public GL_ConfigQuery setPeriodStart10Between(ArrayList value) { this.PeriodStart10Between = value; return this; } public ArrayList getPeriodStart10In() { return PeriodStart10In; } public GL_ConfigQuery setPeriodStart10In(ArrayList value) { this.PeriodStart10In = value; return this; } public Short getPeriodLocked10() { return PeriodLocked10; } public GL_ConfigQuery setPeriodLocked10(Short value) { this.PeriodLocked10 = value; return this; } public Short getPeriodLocked10GreaterThanOrEqualTo() { return PeriodLocked10GreaterThanOrEqualTo; } public GL_ConfigQuery setPeriodLocked10GreaterThanOrEqualTo(Short value) { this.PeriodLocked10GreaterThanOrEqualTo = value; return this; } public Short getPeriodLocked10GreaterThan() { return PeriodLocked10GreaterThan; } public GL_ConfigQuery setPeriodLocked10GreaterThan(Short value) { this.PeriodLocked10GreaterThan = value; return this; } public Short getPeriodLocked10LessThan() { return PeriodLocked10LessThan; } public GL_ConfigQuery setPeriodLocked10LessThan(Short value) { this.PeriodLocked10LessThan = value; return this; } public Short getPeriodLocked10LessThanOrEqualTo() { return PeriodLocked10LessThanOrEqualTo; } public GL_ConfigQuery setPeriodLocked10LessThanOrEqualTo(Short value) { this.PeriodLocked10LessThanOrEqualTo = value; return this; } public Short getPeriodLocked10NotEqualTo() { return PeriodLocked10NotEqualTo; } public GL_ConfigQuery setPeriodLocked10NotEqualTo(Short value) { this.PeriodLocked10NotEqualTo = value; return this; } public ArrayList getPeriodLocked10Between() { return PeriodLocked10Between; } public GL_ConfigQuery setPeriodLocked10Between(ArrayList value) { this.PeriodLocked10Between = value; return this; } public ArrayList getPeriodLocked10In() { return PeriodLocked10In; } public GL_ConfigQuery setPeriodLocked10In(ArrayList value) { this.PeriodLocked10In = value; return this; } public Boolean isPeriodRolled10() { return PeriodRolled10; } public GL_ConfigQuery setPeriodRolled10(Boolean value) { this.PeriodRolled10 = value; return this; } public String getPeriodName11() { return PeriodName11; } public GL_ConfigQuery setPeriodName11(String value) { this.PeriodName11 = value; return this; } public String getPeriodName11StartsWith() { return PeriodName11StartsWith; } public GL_ConfigQuery setPeriodName11StartsWith(String value) { this.PeriodName11StartsWith = value; return this; } public String getPeriodName11EndsWith() { return PeriodName11EndsWith; } public GL_ConfigQuery setPeriodName11EndsWith(String value) { this.PeriodName11EndsWith = value; return this; } public String getPeriodName11Contains() { return PeriodName11Contains; } public GL_ConfigQuery setPeriodName11Contains(String value) { this.PeriodName11Contains = value; return this; } public String getPeriodName11Like() { return PeriodName11Like; } public GL_ConfigQuery setPeriodName11Like(String value) { this.PeriodName11Like = value; return this; } public ArrayList getPeriodName11Between() { return PeriodName11Between; } public GL_ConfigQuery setPeriodName11Between(ArrayList value) { this.PeriodName11Between = value; return this; } public ArrayList getPeriodName11In() { return PeriodName11In; } public GL_ConfigQuery setPeriodName11In(ArrayList value) { this.PeriodName11In = value; return this; } public Date getPeriodStart11() { return PeriodStart11; } public GL_ConfigQuery setPeriodStart11(Date value) { this.PeriodStart11 = value; return this; } public Date getPeriodStart11GreaterThanOrEqualTo() { return PeriodStart11GreaterThanOrEqualTo; } public GL_ConfigQuery setPeriodStart11GreaterThanOrEqualTo(Date value) { this.PeriodStart11GreaterThanOrEqualTo = value; return this; } public Date getPeriodStart11GreaterThan() { return PeriodStart11GreaterThan; } public GL_ConfigQuery setPeriodStart11GreaterThan(Date value) { this.PeriodStart11GreaterThan = value; return this; } public Date getPeriodStart11LessThan() { return PeriodStart11LessThan; } public GL_ConfigQuery setPeriodStart11LessThan(Date value) { this.PeriodStart11LessThan = value; return this; } public Date getPeriodStart11LessThanOrEqualTo() { return PeriodStart11LessThanOrEqualTo; } public GL_ConfigQuery setPeriodStart11LessThanOrEqualTo(Date value) { this.PeriodStart11LessThanOrEqualTo = value; return this; } public Date getPeriodStart11NotEqualTo() { return PeriodStart11NotEqualTo; } public GL_ConfigQuery setPeriodStart11NotEqualTo(Date value) { this.PeriodStart11NotEqualTo = value; return this; } public ArrayList getPeriodStart11Between() { return PeriodStart11Between; } public GL_ConfigQuery setPeriodStart11Between(ArrayList value) { this.PeriodStart11Between = value; return this; } public ArrayList getPeriodStart11In() { return PeriodStart11In; } public GL_ConfigQuery setPeriodStart11In(ArrayList value) { this.PeriodStart11In = value; return this; } public Short getPeriodLocked11() { return PeriodLocked11; } public GL_ConfigQuery setPeriodLocked11(Short value) { this.PeriodLocked11 = value; return this; } public Short getPeriodLocked11GreaterThanOrEqualTo() { return PeriodLocked11GreaterThanOrEqualTo; } public GL_ConfigQuery setPeriodLocked11GreaterThanOrEqualTo(Short value) { this.PeriodLocked11GreaterThanOrEqualTo = value; return this; } public Short getPeriodLocked11GreaterThan() { return PeriodLocked11GreaterThan; } public GL_ConfigQuery setPeriodLocked11GreaterThan(Short value) { this.PeriodLocked11GreaterThan = value; return this; } public Short getPeriodLocked11LessThan() { return PeriodLocked11LessThan; } public GL_ConfigQuery setPeriodLocked11LessThan(Short value) { this.PeriodLocked11LessThan = value; return this; } public Short getPeriodLocked11LessThanOrEqualTo() { return PeriodLocked11LessThanOrEqualTo; } public GL_ConfigQuery setPeriodLocked11LessThanOrEqualTo(Short value) { this.PeriodLocked11LessThanOrEqualTo = value; return this; } public Short getPeriodLocked11NotEqualTo() { return PeriodLocked11NotEqualTo; } public GL_ConfigQuery setPeriodLocked11NotEqualTo(Short value) { this.PeriodLocked11NotEqualTo = value; return this; } public ArrayList getPeriodLocked11Between() { return PeriodLocked11Between; } public GL_ConfigQuery setPeriodLocked11Between(ArrayList value) { this.PeriodLocked11Between = value; return this; } public ArrayList getPeriodLocked11In() { return PeriodLocked11In; } public GL_ConfigQuery setPeriodLocked11In(ArrayList value) { this.PeriodLocked11In = value; return this; } public Boolean isPeriodRolled11() { return PeriodRolled11; } public GL_ConfigQuery setPeriodRolled11(Boolean value) { this.PeriodRolled11 = value; return this; } public String getPeriodName12() { return PeriodName12; } public GL_ConfigQuery setPeriodName12(String value) { this.PeriodName12 = value; return this; } public String getPeriodName12StartsWith() { return PeriodName12StartsWith; } public GL_ConfigQuery setPeriodName12StartsWith(String value) { this.PeriodName12StartsWith = value; return this; } public String getPeriodName12EndsWith() { return PeriodName12EndsWith; } public GL_ConfigQuery setPeriodName12EndsWith(String value) { this.PeriodName12EndsWith = value; return this; } public String getPeriodName12Contains() { return PeriodName12Contains; } public GL_ConfigQuery setPeriodName12Contains(String value) { this.PeriodName12Contains = value; return this; } public String getPeriodName12Like() { return PeriodName12Like; } public GL_ConfigQuery setPeriodName12Like(String value) { this.PeriodName12Like = value; return this; } public ArrayList getPeriodName12Between() { return PeriodName12Between; } public GL_ConfigQuery setPeriodName12Between(ArrayList value) { this.PeriodName12Between = value; return this; } public ArrayList getPeriodName12In() { return PeriodName12In; } public GL_ConfigQuery setPeriodName12In(ArrayList value) { this.PeriodName12In = value; return this; } public Date getPeriodStart12() { return PeriodStart12; } public GL_ConfigQuery setPeriodStart12(Date value) { this.PeriodStart12 = value; return this; } public Date getPeriodStart12GreaterThanOrEqualTo() { return PeriodStart12GreaterThanOrEqualTo; } public GL_ConfigQuery setPeriodStart12GreaterThanOrEqualTo(Date value) { this.PeriodStart12GreaterThanOrEqualTo = value; return this; } public Date getPeriodStart12GreaterThan() { return PeriodStart12GreaterThan; } public GL_ConfigQuery setPeriodStart12GreaterThan(Date value) { this.PeriodStart12GreaterThan = value; return this; } public Date getPeriodStart12LessThan() { return PeriodStart12LessThan; } public GL_ConfigQuery setPeriodStart12LessThan(Date value) { this.PeriodStart12LessThan = value; return this; } public Date getPeriodStart12LessThanOrEqualTo() { return PeriodStart12LessThanOrEqualTo; } public GL_ConfigQuery setPeriodStart12LessThanOrEqualTo(Date value) { this.PeriodStart12LessThanOrEqualTo = value; return this; } public Date getPeriodStart12NotEqualTo() { return PeriodStart12NotEqualTo; } public GL_ConfigQuery setPeriodStart12NotEqualTo(Date value) { this.PeriodStart12NotEqualTo = value; return this; } public ArrayList getPeriodStart12Between() { return PeriodStart12Between; } public GL_ConfigQuery setPeriodStart12Between(ArrayList value) { this.PeriodStart12Between = value; return this; } public ArrayList getPeriodStart12In() { return PeriodStart12In; } public GL_ConfigQuery setPeriodStart12In(ArrayList value) { this.PeriodStart12In = value; return this; } public Short getPeriodLocked12() { return PeriodLocked12; } public GL_ConfigQuery setPeriodLocked12(Short value) { this.PeriodLocked12 = value; return this; } public Short getPeriodLocked12GreaterThanOrEqualTo() { return PeriodLocked12GreaterThanOrEqualTo; } public GL_ConfigQuery setPeriodLocked12GreaterThanOrEqualTo(Short value) { this.PeriodLocked12GreaterThanOrEqualTo = value; return this; } public Short getPeriodLocked12GreaterThan() { return PeriodLocked12GreaterThan; } public GL_ConfigQuery setPeriodLocked12GreaterThan(Short value) { this.PeriodLocked12GreaterThan = value; return this; } public Short getPeriodLocked12LessThan() { return PeriodLocked12LessThan; } public GL_ConfigQuery setPeriodLocked12LessThan(Short value) { this.PeriodLocked12LessThan = value; return this; } public Short getPeriodLocked12LessThanOrEqualTo() { return PeriodLocked12LessThanOrEqualTo; } public GL_ConfigQuery setPeriodLocked12LessThanOrEqualTo(Short value) { this.PeriodLocked12LessThanOrEqualTo = value; return this; } public Short getPeriodLocked12NotEqualTo() { return PeriodLocked12NotEqualTo; } public GL_ConfigQuery setPeriodLocked12NotEqualTo(Short value) { this.PeriodLocked12NotEqualTo = value; return this; } public ArrayList getPeriodLocked12Between() { return PeriodLocked12Between; } public GL_ConfigQuery setPeriodLocked12Between(ArrayList value) { this.PeriodLocked12Between = value; return this; } public ArrayList getPeriodLocked12In() { return PeriodLocked12In; } public GL_ConfigQuery setPeriodLocked12In(ArrayList value) { this.PeriodLocked12In = value; return this; } public Boolean isPeriodRolled12() { return PeriodRolled12; } public GL_ConfigQuery setPeriodRolled12(Boolean value) { this.PeriodRolled12 = value; return this; } public Boolean isYearRolled() { return YearRolled; } public GL_ConfigQuery setYearRolled(Boolean value) { this.YearRolled = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class GL_DistributionQuery extends QueryDb implements IReturn> { public String GLDistID = null; public String GLDistIDStartsWith = null; public String GLDistIDEndsWith = null; public String GLDistIDContains = null; public String GLDistIDLike = null; public ArrayList GLDistIDBetween = null; public ArrayList GLDistIDIn = null; public String GLLedgerID = null; public String GLLedgerIDStartsWith = null; public String GLLedgerIDEndsWith = null; public String GLLedgerIDContains = null; public String GLLedgerIDLike = null; public ArrayList GLLedgerIDBetween = null; public ArrayList GLLedgerIDIn = null; public String GLDistLedgerID = null; public String GLDistLedgerIDStartsWith = null; public String GLDistLedgerIDEndsWith = null; public String GLDistLedgerIDContains = null; public String GLDistLedgerIDLike = null; public ArrayList GLDistLedgerIDBetween = null; public ArrayList GLDistLedgerIDIn = null; public BigDecimal DistAmount = null; public BigDecimal DistAmountGreaterThanOrEqualTo = null; public BigDecimal DistAmountGreaterThan = null; public BigDecimal DistAmountLessThan = null; public BigDecimal DistAmountLessThanOrEqualTo = null; public BigDecimal DistAmountNotEqualTo = null; public ArrayList DistAmountBetween = null; public ArrayList DistAmountIn = null; public Integer LineNum = null; public Integer LineNumGreaterThanOrEqualTo = null; public Integer LineNumGreaterThan = null; public Integer LineNumLessThan = null; public Integer LineNumLessThanOrEqualTo = null; public Integer LineNumNotEqualTo = null; public ArrayList LineNumBetween = null; public ArrayList LineNumIn = null; public String getGlDistID() { return GLDistID; } public GL_DistributionQuery setGlDistID(String value) { this.GLDistID = value; return this; } public String getGlDistIDStartsWith() { return GLDistIDStartsWith; } public GL_DistributionQuery setGlDistIDStartsWith(String value) { this.GLDistIDStartsWith = value; return this; } public String getGlDistIDEndsWith() { return GLDistIDEndsWith; } public GL_DistributionQuery setGlDistIDEndsWith(String value) { this.GLDistIDEndsWith = value; return this; } public String getGlDistIDContains() { return GLDistIDContains; } public GL_DistributionQuery setGlDistIDContains(String value) { this.GLDistIDContains = value; return this; } public String getGlDistIDLike() { return GLDistIDLike; } public GL_DistributionQuery setGlDistIDLike(String value) { this.GLDistIDLike = value; return this; } public ArrayList getGlDistIDBetween() { return GLDistIDBetween; } public GL_DistributionQuery setGlDistIDBetween(ArrayList value) { this.GLDistIDBetween = value; return this; } public ArrayList getGlDistIDIn() { return GLDistIDIn; } public GL_DistributionQuery setGlDistIDIn(ArrayList value) { this.GLDistIDIn = value; return this; } public String getGlLedgerID() { return GLLedgerID; } public GL_DistributionQuery setGlLedgerID(String value) { this.GLLedgerID = value; return this; } public String getGlLedgerIDStartsWith() { return GLLedgerIDStartsWith; } public GL_DistributionQuery setGlLedgerIDStartsWith(String value) { this.GLLedgerIDStartsWith = value; return this; } public String getGlLedgerIDEndsWith() { return GLLedgerIDEndsWith; } public GL_DistributionQuery setGlLedgerIDEndsWith(String value) { this.GLLedgerIDEndsWith = value; return this; } public String getGlLedgerIDContains() { return GLLedgerIDContains; } public GL_DistributionQuery setGlLedgerIDContains(String value) { this.GLLedgerIDContains = value; return this; } public String getGlLedgerIDLike() { return GLLedgerIDLike; } public GL_DistributionQuery setGlLedgerIDLike(String value) { this.GLLedgerIDLike = value; return this; } public ArrayList getGlLedgerIDBetween() { return GLLedgerIDBetween; } public GL_DistributionQuery setGlLedgerIDBetween(ArrayList value) { this.GLLedgerIDBetween = value; return this; } public ArrayList getGlLedgerIDIn() { return GLLedgerIDIn; } public GL_DistributionQuery setGlLedgerIDIn(ArrayList value) { this.GLLedgerIDIn = value; return this; } public String getGlDistLedgerID() { return GLDistLedgerID; } public GL_DistributionQuery setGlDistLedgerID(String value) { this.GLDistLedgerID = value; return this; } public String getGlDistLedgerIDStartsWith() { return GLDistLedgerIDStartsWith; } public GL_DistributionQuery setGlDistLedgerIDStartsWith(String value) { this.GLDistLedgerIDStartsWith = value; return this; } public String getGlDistLedgerIDEndsWith() { return GLDistLedgerIDEndsWith; } public GL_DistributionQuery setGlDistLedgerIDEndsWith(String value) { this.GLDistLedgerIDEndsWith = value; return this; } public String getGlDistLedgerIDContains() { return GLDistLedgerIDContains; } public GL_DistributionQuery setGlDistLedgerIDContains(String value) { this.GLDistLedgerIDContains = value; return this; } public String getGlDistLedgerIDLike() { return GLDistLedgerIDLike; } public GL_DistributionQuery setGlDistLedgerIDLike(String value) { this.GLDistLedgerIDLike = value; return this; } public ArrayList getGlDistLedgerIDBetween() { return GLDistLedgerIDBetween; } public GL_DistributionQuery setGlDistLedgerIDBetween(ArrayList value) { this.GLDistLedgerIDBetween = value; return this; } public ArrayList getGlDistLedgerIDIn() { return GLDistLedgerIDIn; } public GL_DistributionQuery setGlDistLedgerIDIn(ArrayList value) { this.GLDistLedgerIDIn = value; return this; } public BigDecimal getDistAmount() { return DistAmount; } public GL_DistributionQuery setDistAmount(BigDecimal value) { this.DistAmount = value; return this; } public BigDecimal getDistAmountGreaterThanOrEqualTo() { return DistAmountGreaterThanOrEqualTo; } public GL_DistributionQuery setDistAmountGreaterThanOrEqualTo(BigDecimal value) { this.DistAmountGreaterThanOrEqualTo = value; return this; } public BigDecimal getDistAmountGreaterThan() { return DistAmountGreaterThan; } public GL_DistributionQuery setDistAmountGreaterThan(BigDecimal value) { this.DistAmountGreaterThan = value; return this; } public BigDecimal getDistAmountLessThan() { return DistAmountLessThan; } public GL_DistributionQuery setDistAmountLessThan(BigDecimal value) { this.DistAmountLessThan = value; return this; } public BigDecimal getDistAmountLessThanOrEqualTo() { return DistAmountLessThanOrEqualTo; } public GL_DistributionQuery setDistAmountLessThanOrEqualTo(BigDecimal value) { this.DistAmountLessThanOrEqualTo = value; return this; } public BigDecimal getDistAmountNotEqualTo() { return DistAmountNotEqualTo; } public GL_DistributionQuery setDistAmountNotEqualTo(BigDecimal value) { this.DistAmountNotEqualTo = value; return this; } public ArrayList getDistAmountBetween() { return DistAmountBetween; } public GL_DistributionQuery setDistAmountBetween(ArrayList value) { this.DistAmountBetween = value; return this; } public ArrayList getDistAmountIn() { return DistAmountIn; } public GL_DistributionQuery setDistAmountIn(ArrayList value) { this.DistAmountIn = value; return this; } public Integer getLineNum() { return LineNum; } public GL_DistributionQuery setLineNum(Integer value) { this.LineNum = value; return this; } public Integer getLineNumGreaterThanOrEqualTo() { return LineNumGreaterThanOrEqualTo; } public GL_DistributionQuery setLineNumGreaterThanOrEqualTo(Integer value) { this.LineNumGreaterThanOrEqualTo = value; return this; } public Integer getLineNumGreaterThan() { return LineNumGreaterThan; } public GL_DistributionQuery setLineNumGreaterThan(Integer value) { this.LineNumGreaterThan = value; return this; } public Integer getLineNumLessThan() { return LineNumLessThan; } public GL_DistributionQuery setLineNumLessThan(Integer value) { this.LineNumLessThan = value; return this; } public Integer getLineNumLessThanOrEqualTo() { return LineNumLessThanOrEqualTo; } public GL_DistributionQuery setLineNumLessThanOrEqualTo(Integer value) { this.LineNumLessThanOrEqualTo = value; return this; } public Integer getLineNumNotEqualTo() { return LineNumNotEqualTo; } public GL_DistributionQuery setLineNumNotEqualTo(Integer value) { this.LineNumNotEqualTo = value; return this; } public ArrayList getLineNumBetween() { return LineNumBetween; } public GL_DistributionQuery setLineNumBetween(ArrayList value) { this.LineNumBetween = value; return this; } public ArrayList getLineNumIn() { return LineNumIn; } public GL_DistributionQuery setLineNumIn(ArrayList value) { this.LineNumIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class GL_DocumentsQuery extends QueryDb implements IReturn> { public String RecID = null; public String RecIDStartsWith = null; public String RecIDEndsWith = null; public String RecIDContains = null; public String RecIDLike = null; public ArrayList RecIDBetween = null; public ArrayList RecIDIn = null; public String GL_Sets_RecID = null; public String GL_Sets_RecIDStartsWith = null; public String GL_Sets_RecIDEndsWith = null; public String GL_Sets_RecIDContains = null; public String GL_Sets_RecIDLike = null; public ArrayList GL_Sets_RecIDBetween = null; public ArrayList GL_Sets_RecIDIn = null; public String DocumentTypeID = null; public String DocumentTypeIDStartsWith = null; public String DocumentTypeIDEndsWith = null; public String DocumentTypeIDContains = null; public String DocumentTypeIDLike = null; public ArrayList DocumentTypeIDBetween = null; public ArrayList DocumentTypeIDIn = null; public Date LastSavedDateTime = null; public Date LastSavedDateTimeGreaterThanOrEqualTo = null; public Date LastSavedDateTimeGreaterThan = null; public Date LastSavedDateTimeLessThan = null; public Date LastSavedDateTimeLessThanOrEqualTo = null; public Date LastSavedDateTimeNotEqualTo = null; public ArrayList LastSavedDateTimeBetween = null; public ArrayList LastSavedDateTimeIn = null; public String LastSavedByStaffID = null; public String LastSavedByStaffIDStartsWith = null; public String LastSavedByStaffIDEndsWith = null; public String LastSavedByStaffIDContains = null; public String LastSavedByStaffIDLike = null; public ArrayList LastSavedByStaffIDBetween = null; public ArrayList LastSavedByStaffIDIn = null; public ArrayList FileBinary = null; public String Description = null; public String DescriptionStartsWith = null; public String DescriptionEndsWith = null; public String DescriptionContains = null; public String DescriptionLike = null; public ArrayList DescriptionBetween = null; public ArrayList DescriptionIn = null; public String PhysicalFileName = null; public String PhysicalFileNameStartsWith = null; public String PhysicalFileNameEndsWith = null; public String PhysicalFileNameContains = null; public String PhysicalFileNameLike = null; public ArrayList PhysicalFileNameBetween = null; public ArrayList PhysicalFileNameIn = null; public Integer ItemNo = null; public Integer ItemNoGreaterThanOrEqualTo = null; public Integer ItemNoGreaterThan = null; public Integer ItemNoLessThan = null; public Integer ItemNoLessThanOrEqualTo = null; public Integer ItemNoNotEqualTo = null; public ArrayList ItemNoBetween = null; public ArrayList ItemNoIn = null; public String getRecID() { return RecID; } public GL_DocumentsQuery setRecID(String value) { this.RecID = value; return this; } public String getRecIDStartsWith() { return RecIDStartsWith; } public GL_DocumentsQuery setRecIDStartsWith(String value) { this.RecIDStartsWith = value; return this; } public String getRecIDEndsWith() { return RecIDEndsWith; } public GL_DocumentsQuery setRecIDEndsWith(String value) { this.RecIDEndsWith = value; return this; } public String getRecIDContains() { return RecIDContains; } public GL_DocumentsQuery setRecIDContains(String value) { this.RecIDContains = value; return this; } public String getRecIDLike() { return RecIDLike; } public GL_DocumentsQuery setRecIDLike(String value) { this.RecIDLike = value; return this; } public ArrayList getRecIDBetween() { return RecIDBetween; } public GL_DocumentsQuery setRecIDBetween(ArrayList value) { this.RecIDBetween = value; return this; } public ArrayList getRecIDIn() { return RecIDIn; } public GL_DocumentsQuery setRecIDIn(ArrayList value) { this.RecIDIn = value; return this; } public String getGlSetsRecID() { return GL_Sets_RecID; } public GL_DocumentsQuery setGlSetsRecID(String value) { this.GL_Sets_RecID = value; return this; } public String getGlSetsRecIDStartsWith() { return GL_Sets_RecIDStartsWith; } public GL_DocumentsQuery setGlSetsRecIDStartsWith(String value) { this.GL_Sets_RecIDStartsWith = value; return this; } public String getGlSetsRecIDEndsWith() { return GL_Sets_RecIDEndsWith; } public GL_DocumentsQuery setGlSetsRecIDEndsWith(String value) { this.GL_Sets_RecIDEndsWith = value; return this; } public String getGlSetsRecIDContains() { return GL_Sets_RecIDContains; } public GL_DocumentsQuery setGlSetsRecIDContains(String value) { this.GL_Sets_RecIDContains = value; return this; } public String getGlSetsRecIDLike() { return GL_Sets_RecIDLike; } public GL_DocumentsQuery setGlSetsRecIDLike(String value) { this.GL_Sets_RecIDLike = value; return this; } public ArrayList getGlSetsRecIDBetween() { return GL_Sets_RecIDBetween; } public GL_DocumentsQuery setGlSetsRecIDBetween(ArrayList value) { this.GL_Sets_RecIDBetween = value; return this; } public ArrayList getGlSetsRecIDIn() { return GL_Sets_RecIDIn; } public GL_DocumentsQuery setGlSetsRecIDIn(ArrayList value) { this.GL_Sets_RecIDIn = value; return this; } public String getDocumentTypeID() { return DocumentTypeID; } public GL_DocumentsQuery setDocumentTypeID(String value) { this.DocumentTypeID = value; return this; } public String getDocumentTypeIDStartsWith() { return DocumentTypeIDStartsWith; } public GL_DocumentsQuery setDocumentTypeIDStartsWith(String value) { this.DocumentTypeIDStartsWith = value; return this; } public String getDocumentTypeIDEndsWith() { return DocumentTypeIDEndsWith; } public GL_DocumentsQuery setDocumentTypeIDEndsWith(String value) { this.DocumentTypeIDEndsWith = value; return this; } public String getDocumentTypeIDContains() { return DocumentTypeIDContains; } public GL_DocumentsQuery setDocumentTypeIDContains(String value) { this.DocumentTypeIDContains = value; return this; } public String getDocumentTypeIDLike() { return DocumentTypeIDLike; } public GL_DocumentsQuery setDocumentTypeIDLike(String value) { this.DocumentTypeIDLike = value; return this; } public ArrayList getDocumentTypeIDBetween() { return DocumentTypeIDBetween; } public GL_DocumentsQuery setDocumentTypeIDBetween(ArrayList value) { this.DocumentTypeIDBetween = value; return this; } public ArrayList getDocumentTypeIDIn() { return DocumentTypeIDIn; } public GL_DocumentsQuery setDocumentTypeIDIn(ArrayList value) { this.DocumentTypeIDIn = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public GL_DocumentsQuery setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getLastSavedDateTimeGreaterThanOrEqualTo() { return LastSavedDateTimeGreaterThanOrEqualTo; } public GL_DocumentsQuery setLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.LastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeGreaterThan() { return LastSavedDateTimeGreaterThan; } public GL_DocumentsQuery setLastSavedDateTimeGreaterThan(Date value) { this.LastSavedDateTimeGreaterThan = value; return this; } public Date getLastSavedDateTimeLessThan() { return LastSavedDateTimeLessThan; } public GL_DocumentsQuery setLastSavedDateTimeLessThan(Date value) { this.LastSavedDateTimeLessThan = value; return this; } public Date getLastSavedDateTimeLessThanOrEqualTo() { return LastSavedDateTimeLessThanOrEqualTo; } public GL_DocumentsQuery setLastSavedDateTimeLessThanOrEqualTo(Date value) { this.LastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeNotEqualTo() { return LastSavedDateTimeNotEqualTo; } public GL_DocumentsQuery setLastSavedDateTimeNotEqualTo(Date value) { this.LastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getLastSavedDateTimeBetween() { return LastSavedDateTimeBetween; } public GL_DocumentsQuery setLastSavedDateTimeBetween(ArrayList value) { this.LastSavedDateTimeBetween = value; return this; } public ArrayList getLastSavedDateTimeIn() { return LastSavedDateTimeIn; } public GL_DocumentsQuery setLastSavedDateTimeIn(ArrayList value) { this.LastSavedDateTimeIn = value; return this; } public String getLastSavedByStaffID() { return LastSavedByStaffID; } public GL_DocumentsQuery setLastSavedByStaffID(String value) { this.LastSavedByStaffID = value; return this; } public String getLastSavedByStaffIDStartsWith() { return LastSavedByStaffIDStartsWith; } public GL_DocumentsQuery setLastSavedByStaffIDStartsWith(String value) { this.LastSavedByStaffIDStartsWith = value; return this; } public String getLastSavedByStaffIDEndsWith() { return LastSavedByStaffIDEndsWith; } public GL_DocumentsQuery setLastSavedByStaffIDEndsWith(String value) { this.LastSavedByStaffIDEndsWith = value; return this; } public String getLastSavedByStaffIDContains() { return LastSavedByStaffIDContains; } public GL_DocumentsQuery setLastSavedByStaffIDContains(String value) { this.LastSavedByStaffIDContains = value; return this; } public String getLastSavedByStaffIDLike() { return LastSavedByStaffIDLike; } public GL_DocumentsQuery setLastSavedByStaffIDLike(String value) { this.LastSavedByStaffIDLike = value; return this; } public ArrayList getLastSavedByStaffIDBetween() { return LastSavedByStaffIDBetween; } public GL_DocumentsQuery setLastSavedByStaffIDBetween(ArrayList value) { this.LastSavedByStaffIDBetween = value; return this; } public ArrayList getLastSavedByStaffIDIn() { return LastSavedByStaffIDIn; } public GL_DocumentsQuery setLastSavedByStaffIDIn(ArrayList value) { this.LastSavedByStaffIDIn = value; return this; } public ArrayList getFileBinary() { return FileBinary; } public GL_DocumentsQuery setFileBinary(ArrayList value) { this.FileBinary = value; return this; } public String getDescription() { return Description; } public GL_DocumentsQuery setDescription(String value) { this.Description = value; return this; } public String getDescriptionStartsWith() { return DescriptionStartsWith; } public GL_DocumentsQuery setDescriptionStartsWith(String value) { this.DescriptionStartsWith = value; return this; } public String getDescriptionEndsWith() { return DescriptionEndsWith; } public GL_DocumentsQuery setDescriptionEndsWith(String value) { this.DescriptionEndsWith = value; return this; } public String getDescriptionContains() { return DescriptionContains; } public GL_DocumentsQuery setDescriptionContains(String value) { this.DescriptionContains = value; return this; } public String getDescriptionLike() { return DescriptionLike; } public GL_DocumentsQuery setDescriptionLike(String value) { this.DescriptionLike = value; return this; } public ArrayList getDescriptionBetween() { return DescriptionBetween; } public GL_DocumentsQuery setDescriptionBetween(ArrayList value) { this.DescriptionBetween = value; return this; } public ArrayList getDescriptionIn() { return DescriptionIn; } public GL_DocumentsQuery setDescriptionIn(ArrayList value) { this.DescriptionIn = value; return this; } public String getPhysicalFileName() { return PhysicalFileName; } public GL_DocumentsQuery setPhysicalFileName(String value) { this.PhysicalFileName = value; return this; } public String getPhysicalFileNameStartsWith() { return PhysicalFileNameStartsWith; } public GL_DocumentsQuery setPhysicalFileNameStartsWith(String value) { this.PhysicalFileNameStartsWith = value; return this; } public String getPhysicalFileNameEndsWith() { return PhysicalFileNameEndsWith; } public GL_DocumentsQuery setPhysicalFileNameEndsWith(String value) { this.PhysicalFileNameEndsWith = value; return this; } public String getPhysicalFileNameContains() { return PhysicalFileNameContains; } public GL_DocumentsQuery setPhysicalFileNameContains(String value) { this.PhysicalFileNameContains = value; return this; } public String getPhysicalFileNameLike() { return PhysicalFileNameLike; } public GL_DocumentsQuery setPhysicalFileNameLike(String value) { this.PhysicalFileNameLike = value; return this; } public ArrayList getPhysicalFileNameBetween() { return PhysicalFileNameBetween; } public GL_DocumentsQuery setPhysicalFileNameBetween(ArrayList value) { this.PhysicalFileNameBetween = value; return this; } public ArrayList getPhysicalFileNameIn() { return PhysicalFileNameIn; } public GL_DocumentsQuery setPhysicalFileNameIn(ArrayList value) { this.PhysicalFileNameIn = value; return this; } public Integer getItemNo() { return ItemNo; } public GL_DocumentsQuery setItemNo(Integer value) { this.ItemNo = value; return this; } public Integer getItemNoGreaterThanOrEqualTo() { return ItemNoGreaterThanOrEqualTo; } public GL_DocumentsQuery setItemNoGreaterThanOrEqualTo(Integer value) { this.ItemNoGreaterThanOrEqualTo = value; return this; } public Integer getItemNoGreaterThan() { return ItemNoGreaterThan; } public GL_DocumentsQuery setItemNoGreaterThan(Integer value) { this.ItemNoGreaterThan = value; return this; } public Integer getItemNoLessThan() { return ItemNoLessThan; } public GL_DocumentsQuery setItemNoLessThan(Integer value) { this.ItemNoLessThan = value; return this; } public Integer getItemNoLessThanOrEqualTo() { return ItemNoLessThanOrEqualTo; } public GL_DocumentsQuery setItemNoLessThanOrEqualTo(Integer value) { this.ItemNoLessThanOrEqualTo = value; return this; } public Integer getItemNoNotEqualTo() { return ItemNoNotEqualTo; } public GL_DocumentsQuery setItemNoNotEqualTo(Integer value) { this.ItemNoNotEqualTo = value; return this; } public ArrayList getItemNoBetween() { return ItemNoBetween; } public GL_DocumentsQuery setItemNoBetween(ArrayList value) { this.ItemNoBetween = value; return this; } public ArrayList getItemNoIn() { return ItemNoIn; } public GL_DocumentsQuery setItemNoIn(ArrayList value) { this.ItemNoIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class GL_DuplicatesQuery extends QueryDb implements IReturn> { public String SetNo = null; public String SetNoStartsWith = null; public String SetNoEndsWith = null; public String SetNoContains = null; public String SetNoLike = null; public ArrayList SetNoBetween = null; public ArrayList SetNoIn = null; public Date PostDateTime = null; public Date PostDateTimeGreaterThanOrEqualTo = null; public Date PostDateTimeGreaterThan = null; public Date PostDateTimeLessThan = null; public Date PostDateTimeLessThanOrEqualTo = null; public Date PostDateTimeNotEqualTo = null; public ArrayList PostDateTimeBetween = null; public ArrayList PostDateTimeIn = null; public String Source = null; public String SourceStartsWith = null; public String SourceEndsWith = null; public String SourceContains = null; public String SourceLike = null; public ArrayList SourceBetween = null; public ArrayList SourceIn = null; public String SourceID = null; public String SourceIDStartsWith = null; public String SourceIDEndsWith = null; public String SourceIDContains = null; public String SourceIDLike = null; public ArrayList SourceIDBetween = null; public ArrayList SourceIDIn = null; public Short SetType = null; public Short SetTypeGreaterThanOrEqualTo = null; public Short SetTypeGreaterThan = null; public Short SetTypeLessThan = null; public Short SetTypeLessThanOrEqualTo = null; public Short SetTypeNotEqualTo = null; public ArrayList SetTypeBetween = null; public ArrayList SetTypeIn = null; public String Description = null; public String DescriptionStartsWith = null; public String DescriptionEndsWith = null; public String DescriptionContains = null; public String DescriptionLike = null; public ArrayList DescriptionBetween = null; public ArrayList DescriptionIn = null; public String getSetNo() { return SetNo; } public GL_DuplicatesQuery setSetNo(String value) { this.SetNo = value; return this; } public String getSetNoStartsWith() { return SetNoStartsWith; } public GL_DuplicatesQuery setSetNoStartsWith(String value) { this.SetNoStartsWith = value; return this; } public String getSetNoEndsWith() { return SetNoEndsWith; } public GL_DuplicatesQuery setSetNoEndsWith(String value) { this.SetNoEndsWith = value; return this; } public String getSetNoContains() { return SetNoContains; } public GL_DuplicatesQuery setSetNoContains(String value) { this.SetNoContains = value; return this; } public String getSetNoLike() { return SetNoLike; } public GL_DuplicatesQuery setSetNoLike(String value) { this.SetNoLike = value; return this; } public ArrayList getSetNoBetween() { return SetNoBetween; } public GL_DuplicatesQuery setSetNoBetween(ArrayList value) { this.SetNoBetween = value; return this; } public ArrayList getSetNoIn() { return SetNoIn; } public GL_DuplicatesQuery setSetNoIn(ArrayList value) { this.SetNoIn = value; return this; } public Date getPostDateTime() { return PostDateTime; } public GL_DuplicatesQuery setPostDateTime(Date value) { this.PostDateTime = value; return this; } public Date getPostDateTimeGreaterThanOrEqualTo() { return PostDateTimeGreaterThanOrEqualTo; } public GL_DuplicatesQuery setPostDateTimeGreaterThanOrEqualTo(Date value) { this.PostDateTimeGreaterThanOrEqualTo = value; return this; } public Date getPostDateTimeGreaterThan() { return PostDateTimeGreaterThan; } public GL_DuplicatesQuery setPostDateTimeGreaterThan(Date value) { this.PostDateTimeGreaterThan = value; return this; } public Date getPostDateTimeLessThan() { return PostDateTimeLessThan; } public GL_DuplicatesQuery setPostDateTimeLessThan(Date value) { this.PostDateTimeLessThan = value; return this; } public Date getPostDateTimeLessThanOrEqualTo() { return PostDateTimeLessThanOrEqualTo; } public GL_DuplicatesQuery setPostDateTimeLessThanOrEqualTo(Date value) { this.PostDateTimeLessThanOrEqualTo = value; return this; } public Date getPostDateTimeNotEqualTo() { return PostDateTimeNotEqualTo; } public GL_DuplicatesQuery setPostDateTimeNotEqualTo(Date value) { this.PostDateTimeNotEqualTo = value; return this; } public ArrayList getPostDateTimeBetween() { return PostDateTimeBetween; } public GL_DuplicatesQuery setPostDateTimeBetween(ArrayList value) { this.PostDateTimeBetween = value; return this; } public ArrayList getPostDateTimeIn() { return PostDateTimeIn; } public GL_DuplicatesQuery setPostDateTimeIn(ArrayList value) { this.PostDateTimeIn = value; return this; } public String getSource() { return Source; } public GL_DuplicatesQuery setSource(String value) { this.Source = value; return this; } public String getSourceStartsWith() { return SourceStartsWith; } public GL_DuplicatesQuery setSourceStartsWith(String value) { this.SourceStartsWith = value; return this; } public String getSourceEndsWith() { return SourceEndsWith; } public GL_DuplicatesQuery setSourceEndsWith(String value) { this.SourceEndsWith = value; return this; } public String getSourceContains() { return SourceContains; } public GL_DuplicatesQuery setSourceContains(String value) { this.SourceContains = value; return this; } public String getSourceLike() { return SourceLike; } public GL_DuplicatesQuery setSourceLike(String value) { this.SourceLike = value; return this; } public ArrayList getSourceBetween() { return SourceBetween; } public GL_DuplicatesQuery setSourceBetween(ArrayList value) { this.SourceBetween = value; return this; } public ArrayList getSourceIn() { return SourceIn; } public GL_DuplicatesQuery setSourceIn(ArrayList value) { this.SourceIn = value; return this; } public String getSourceID() { return SourceID; } public GL_DuplicatesQuery setSourceID(String value) { this.SourceID = value; return this; } public String getSourceIDStartsWith() { return SourceIDStartsWith; } public GL_DuplicatesQuery setSourceIDStartsWith(String value) { this.SourceIDStartsWith = value; return this; } public String getSourceIDEndsWith() { return SourceIDEndsWith; } public GL_DuplicatesQuery setSourceIDEndsWith(String value) { this.SourceIDEndsWith = value; return this; } public String getSourceIDContains() { return SourceIDContains; } public GL_DuplicatesQuery setSourceIDContains(String value) { this.SourceIDContains = value; return this; } public String getSourceIDLike() { return SourceIDLike; } public GL_DuplicatesQuery setSourceIDLike(String value) { this.SourceIDLike = value; return this; } public ArrayList getSourceIDBetween() { return SourceIDBetween; } public GL_DuplicatesQuery setSourceIDBetween(ArrayList value) { this.SourceIDBetween = value; return this; } public ArrayList getSourceIDIn() { return SourceIDIn; } public GL_DuplicatesQuery setSourceIDIn(ArrayList value) { this.SourceIDIn = value; return this; } public Short getSetType() { return SetType; } public GL_DuplicatesQuery setSetType(Short value) { this.SetType = value; return this; } public Short getSetTypeGreaterThanOrEqualTo() { return SetTypeGreaterThanOrEqualTo; } public GL_DuplicatesQuery setSetTypeGreaterThanOrEqualTo(Short value) { this.SetTypeGreaterThanOrEqualTo = value; return this; } public Short getSetTypeGreaterThan() { return SetTypeGreaterThan; } public GL_DuplicatesQuery setSetTypeGreaterThan(Short value) { this.SetTypeGreaterThan = value; return this; } public Short getSetTypeLessThan() { return SetTypeLessThan; } public GL_DuplicatesQuery setSetTypeLessThan(Short value) { this.SetTypeLessThan = value; return this; } public Short getSetTypeLessThanOrEqualTo() { return SetTypeLessThanOrEqualTo; } public GL_DuplicatesQuery setSetTypeLessThanOrEqualTo(Short value) { this.SetTypeLessThanOrEqualTo = value; return this; } public Short getSetTypeNotEqualTo() { return SetTypeNotEqualTo; } public GL_DuplicatesQuery setSetTypeNotEqualTo(Short value) { this.SetTypeNotEqualTo = value; return this; } public ArrayList getSetTypeBetween() { return SetTypeBetween; } public GL_DuplicatesQuery setSetTypeBetween(ArrayList value) { this.SetTypeBetween = value; return this; } public ArrayList getSetTypeIn() { return SetTypeIn; } public GL_DuplicatesQuery setSetTypeIn(ArrayList value) { this.SetTypeIn = value; return this; } public String getDescription() { return Description; } public GL_DuplicatesQuery setDescription(String value) { this.Description = value; return this; } public String getDescriptionStartsWith() { return DescriptionStartsWith; } public GL_DuplicatesQuery setDescriptionStartsWith(String value) { this.DescriptionStartsWith = value; return this; } public String getDescriptionEndsWith() { return DescriptionEndsWith; } public GL_DuplicatesQuery setDescriptionEndsWith(String value) { this.DescriptionEndsWith = value; return this; } public String getDescriptionContains() { return DescriptionContains; } public GL_DuplicatesQuery setDescriptionContains(String value) { this.DescriptionContains = value; return this; } public String getDescriptionLike() { return DescriptionLike; } public GL_DuplicatesQuery setDescriptionLike(String value) { this.DescriptionLike = value; return this; } public ArrayList getDescriptionBetween() { return DescriptionBetween; } public GL_DuplicatesQuery setDescriptionBetween(ArrayList value) { this.DescriptionBetween = value; return this; } public ArrayList getDescriptionIn() { return DescriptionIn; } public GL_DuplicatesQuery setDescriptionIn(ArrayList value) { this.DescriptionIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @Route(Path="/Queries/GL_Ledger", Verbs="GET") @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class GL_LedgerQuery extends QueryDb implements IReturn> { public String GLLedgerID = null; public String GLLedgerIDStartsWith = null; public String GLLedgerIDEndsWith = null; public String GLLedgerIDContains = null; public String GLLedgerIDLike = null; public ArrayList GLLedgerIDBetween = null; public ArrayList GLLedgerIDIn = null; public Date LastSavedDateTime = null; public Date LastSavedDateTimeGreaterThanOrEqualTo = null; public Date LastSavedDateTimeGreaterThan = null; public Date LastSavedDateTimeLessThan = null; public Date LastSavedDateTimeLessThanOrEqualTo = null; public Date LastSavedDateTimeNotEqualTo = null; public ArrayList LastSavedDateTimeBetween = null; public ArrayList LastSavedDateTimeIn = null; public String GLCategoryID = null; public String GLCategoryIDStartsWith = null; public String GLCategoryIDEndsWith = null; public String GLCategoryIDContains = null; public String GLCategoryIDLike = null; public ArrayList GLCategoryIDBetween = null; public ArrayList GLCategoryIDIn = null; public String AccountNo = null; public String AccountNoStartsWith = null; public String AccountNoEndsWith = null; public String AccountNoContains = null; public String AccountNoLike = null; public ArrayList AccountNoBetween = null; public ArrayList AccountNoIn = null; public String Seg1 = null; public String Seg1StartsWith = null; public String Seg1EndsWith = null; public String Seg1Contains = null; public String Seg1Like = null; public ArrayList Seg1Between = null; public ArrayList Seg1In = null; public String Seg2 = null; public String Seg2StartsWith = null; public String Seg2EndsWith = null; public String Seg2Contains = null; public String Seg2Like = null; public ArrayList Seg2Between = null; public ArrayList Seg2In = null; public String Seg3 = null; public String Seg3StartsWith = null; public String Seg3EndsWith = null; public String Seg3Contains = null; public String Seg3Like = null; public ArrayList Seg3Between = null; public ArrayList Seg3In = null; public String Seg4 = null; public String Seg4StartsWith = null; public String Seg4EndsWith = null; public String Seg4Contains = null; public String Seg4Like = null; public ArrayList Seg4Between = null; public ArrayList Seg4In = null; public String Seg5 = null; public String Seg5StartsWith = null; public String Seg5EndsWith = null; public String Seg5Contains = null; public String Seg5Like = null; public ArrayList Seg5Between = null; public ArrayList Seg5In = null; public String Seg6 = null; public String Seg6StartsWith = null; public String Seg6EndsWith = null; public String Seg6Contains = null; public String Seg6Like = null; public ArrayList Seg6Between = null; public ArrayList Seg6In = null; public String Description = null; public String DescriptionStartsWith = null; public String DescriptionEndsWith = null; public String DescriptionContains = null; public String DescriptionLike = null; public ArrayList DescriptionBetween = null; public ArrayList DescriptionIn = null; public BigDecimal LastYearOpen = null; public BigDecimal LastYearOpenGreaterThanOrEqualTo = null; public BigDecimal LastYearOpenGreaterThan = null; public BigDecimal LastYearOpenLessThan = null; public BigDecimal LastYearOpenLessThanOrEqualTo = null; public BigDecimal LastYearOpenNotEqualTo = null; public ArrayList LastYearOpenBetween = null; public ArrayList LastYearOpenIn = null; public BigDecimal CurrYearOpen = null; public BigDecimal CurrYearOpenGreaterThanOrEqualTo = null; public BigDecimal CurrYearOpenGreaterThan = null; public BigDecimal CurrYearOpenLessThan = null; public BigDecimal CurrYearOpenLessThanOrEqualTo = null; public BigDecimal CurrYearOpenNotEqualTo = null; public ArrayList CurrYearOpenBetween = null; public ArrayList CurrYearOpenIn = null; public BigDecimal CurrBal = null; public BigDecimal CurrBalGreaterThanOrEqualTo = null; public BigDecimal CurrBalGreaterThan = null; public BigDecimal CurrBalLessThan = null; public BigDecimal CurrBalLessThanOrEqualTo = null; public BigDecimal CurrBalNotEqualTo = null; public ArrayList CurrBalBetween = null; public ArrayList CurrBalIn = null; public Short ExpSign = null; public Short ExpSignGreaterThanOrEqualTo = null; public Short ExpSignGreaterThan = null; public Short ExpSignLessThan = null; public Short ExpSignLessThanOrEqualTo = null; public Short ExpSignNotEqualTo = null; public ArrayList ExpSignBetween = null; public ArrayList ExpSignIn = null; public Short AccClass = null; public Short AccClassGreaterThanOrEqualTo = null; public Short AccClassGreaterThan = null; public Short AccClassLessThan = null; public Short AccClassLessThanOrEqualTo = null; public Short AccClassNotEqualTo = null; public ArrayList AccClassBetween = null; public ArrayList AccClassIn = null; public Boolean DistributionAcc = null; public String ShortCut = null; public String ShortCutStartsWith = null; public String ShortCutEndsWith = null; public String ShortCutContains = null; public String ShortCutLike = null; public ArrayList ShortCutBetween = null; public ArrayList ShortCutIn = null; public Short PostingAcc = null; public Short PostingAccGreaterThanOrEqualTo = null; public Short PostingAccGreaterThan = null; public Short PostingAccLessThan = null; public Short PostingAccLessThanOrEqualTo = null; public Short PostingAccNotEqualTo = null; public ArrayList PostingAccBetween = null; public ArrayList PostingAccIn = null; public String ParentAccNo = null; public String ParentAccNoStartsWith = null; public String ParentAccNoEndsWith = null; public String ParentAccNoContains = null; public String ParentAccNoLike = null; public ArrayList ParentAccNoBetween = null; public ArrayList ParentAccNoIn = null; public Boolean UseTransCode1 = null; public Boolean UseTransCode2 = null; public Boolean UseTransCode3 = null; public Boolean UseStaffCode = null; public String ClearingAccountID = null; public String ClearingAccountIDStartsWith = null; public String ClearingAccountIDEndsWith = null; public String ClearingAccountIDContains = null; public String ClearingAccountIDLike = null; public ArrayList ClearingAccountIDBetween = null; public ArrayList ClearingAccountIDIn = null; public String Details = null; public String DetailsStartsWith = null; public String DetailsEndsWith = null; public String DetailsContains = null; public String DetailsLike = null; public ArrayList DetailsBetween = null; public ArrayList DetailsIn = null; public Boolean IsEnabled = null; public String getGlLedgerID() { return GLLedgerID; } public GL_LedgerQuery setGlLedgerID(String value) { this.GLLedgerID = value; return this; } public String getGlLedgerIDStartsWith() { return GLLedgerIDStartsWith; } public GL_LedgerQuery setGlLedgerIDStartsWith(String value) { this.GLLedgerIDStartsWith = value; return this; } public String getGlLedgerIDEndsWith() { return GLLedgerIDEndsWith; } public GL_LedgerQuery setGlLedgerIDEndsWith(String value) { this.GLLedgerIDEndsWith = value; return this; } public String getGlLedgerIDContains() { return GLLedgerIDContains; } public GL_LedgerQuery setGlLedgerIDContains(String value) { this.GLLedgerIDContains = value; return this; } public String getGlLedgerIDLike() { return GLLedgerIDLike; } public GL_LedgerQuery setGlLedgerIDLike(String value) { this.GLLedgerIDLike = value; return this; } public ArrayList getGlLedgerIDBetween() { return GLLedgerIDBetween; } public GL_LedgerQuery setGlLedgerIDBetween(ArrayList value) { this.GLLedgerIDBetween = value; return this; } public ArrayList getGlLedgerIDIn() { return GLLedgerIDIn; } public GL_LedgerQuery setGlLedgerIDIn(ArrayList value) { this.GLLedgerIDIn = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public GL_LedgerQuery setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getLastSavedDateTimeGreaterThanOrEqualTo() { return LastSavedDateTimeGreaterThanOrEqualTo; } public GL_LedgerQuery setLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.LastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeGreaterThan() { return LastSavedDateTimeGreaterThan; } public GL_LedgerQuery setLastSavedDateTimeGreaterThan(Date value) { this.LastSavedDateTimeGreaterThan = value; return this; } public Date getLastSavedDateTimeLessThan() { return LastSavedDateTimeLessThan; } public GL_LedgerQuery setLastSavedDateTimeLessThan(Date value) { this.LastSavedDateTimeLessThan = value; return this; } public Date getLastSavedDateTimeLessThanOrEqualTo() { return LastSavedDateTimeLessThanOrEqualTo; } public GL_LedgerQuery setLastSavedDateTimeLessThanOrEqualTo(Date value) { this.LastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeNotEqualTo() { return LastSavedDateTimeNotEqualTo; } public GL_LedgerQuery setLastSavedDateTimeNotEqualTo(Date value) { this.LastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getLastSavedDateTimeBetween() { return LastSavedDateTimeBetween; } public GL_LedgerQuery setLastSavedDateTimeBetween(ArrayList value) { this.LastSavedDateTimeBetween = value; return this; } public ArrayList getLastSavedDateTimeIn() { return LastSavedDateTimeIn; } public GL_LedgerQuery setLastSavedDateTimeIn(ArrayList value) { this.LastSavedDateTimeIn = value; return this; } public String getGlCategoryID() { return GLCategoryID; } public GL_LedgerQuery setGlCategoryID(String value) { this.GLCategoryID = value; return this; } public String getGlCategoryIDStartsWith() { return GLCategoryIDStartsWith; } public GL_LedgerQuery setGlCategoryIDStartsWith(String value) { this.GLCategoryIDStartsWith = value; return this; } public String getGlCategoryIDEndsWith() { return GLCategoryIDEndsWith; } public GL_LedgerQuery setGlCategoryIDEndsWith(String value) { this.GLCategoryIDEndsWith = value; return this; } public String getGlCategoryIDContains() { return GLCategoryIDContains; } public GL_LedgerQuery setGlCategoryIDContains(String value) { this.GLCategoryIDContains = value; return this; } public String getGlCategoryIDLike() { return GLCategoryIDLike; } public GL_LedgerQuery setGlCategoryIDLike(String value) { this.GLCategoryIDLike = value; return this; } public ArrayList getGlCategoryIDBetween() { return GLCategoryIDBetween; } public GL_LedgerQuery setGlCategoryIDBetween(ArrayList value) { this.GLCategoryIDBetween = value; return this; } public ArrayList getGlCategoryIDIn() { return GLCategoryIDIn; } public GL_LedgerQuery setGlCategoryIDIn(ArrayList value) { this.GLCategoryIDIn = value; return this; } public String getAccountNo() { return AccountNo; } public GL_LedgerQuery setAccountNo(String value) { this.AccountNo = value; return this; } public String getAccountNoStartsWith() { return AccountNoStartsWith; } public GL_LedgerQuery setAccountNoStartsWith(String value) { this.AccountNoStartsWith = value; return this; } public String getAccountNoEndsWith() { return AccountNoEndsWith; } public GL_LedgerQuery setAccountNoEndsWith(String value) { this.AccountNoEndsWith = value; return this; } public String getAccountNoContains() { return AccountNoContains; } public GL_LedgerQuery setAccountNoContains(String value) { this.AccountNoContains = value; return this; } public String getAccountNoLike() { return AccountNoLike; } public GL_LedgerQuery setAccountNoLike(String value) { this.AccountNoLike = value; return this; } public ArrayList getAccountNoBetween() { return AccountNoBetween; } public GL_LedgerQuery setAccountNoBetween(ArrayList value) { this.AccountNoBetween = value; return this; } public ArrayList getAccountNoIn() { return AccountNoIn; } public GL_LedgerQuery setAccountNoIn(ArrayList value) { this.AccountNoIn = value; return this; } public String getSeg1() { return Seg1; } public GL_LedgerQuery setSeg1(String value) { this.Seg1 = value; return this; } public String getSeg1StartsWith() { return Seg1StartsWith; } public GL_LedgerQuery setSeg1StartsWith(String value) { this.Seg1StartsWith = value; return this; } public String getSeg1EndsWith() { return Seg1EndsWith; } public GL_LedgerQuery setSeg1EndsWith(String value) { this.Seg1EndsWith = value; return this; } public String getSeg1Contains() { return Seg1Contains; } public GL_LedgerQuery setSeg1Contains(String value) { this.Seg1Contains = value; return this; } public String getSeg1Like() { return Seg1Like; } public GL_LedgerQuery setSeg1Like(String value) { this.Seg1Like = value; return this; } public ArrayList getSeg1Between() { return Seg1Between; } public GL_LedgerQuery setSeg1Between(ArrayList value) { this.Seg1Between = value; return this; } public ArrayList getSeg1In() { return Seg1In; } public GL_LedgerQuery setSeg1In(ArrayList value) { this.Seg1In = value; return this; } public String getSeg2() { return Seg2; } public GL_LedgerQuery setSeg2(String value) { this.Seg2 = value; return this; } public String getSeg2StartsWith() { return Seg2StartsWith; } public GL_LedgerQuery setSeg2StartsWith(String value) { this.Seg2StartsWith = value; return this; } public String getSeg2EndsWith() { return Seg2EndsWith; } public GL_LedgerQuery setSeg2EndsWith(String value) { this.Seg2EndsWith = value; return this; } public String getSeg2Contains() { return Seg2Contains; } public GL_LedgerQuery setSeg2Contains(String value) { this.Seg2Contains = value; return this; } public String getSeg2Like() { return Seg2Like; } public GL_LedgerQuery setSeg2Like(String value) { this.Seg2Like = value; return this; } public ArrayList getSeg2Between() { return Seg2Between; } public GL_LedgerQuery setSeg2Between(ArrayList value) { this.Seg2Between = value; return this; } public ArrayList getSeg2In() { return Seg2In; } public GL_LedgerQuery setSeg2In(ArrayList value) { this.Seg2In = value; return this; } public String getSeg3() { return Seg3; } public GL_LedgerQuery setSeg3(String value) { this.Seg3 = value; return this; } public String getSeg3StartsWith() { return Seg3StartsWith; } public GL_LedgerQuery setSeg3StartsWith(String value) { this.Seg3StartsWith = value; return this; } public String getSeg3EndsWith() { return Seg3EndsWith; } public GL_LedgerQuery setSeg3EndsWith(String value) { this.Seg3EndsWith = value; return this; } public String getSeg3Contains() { return Seg3Contains; } public GL_LedgerQuery setSeg3Contains(String value) { this.Seg3Contains = value; return this; } public String getSeg3Like() { return Seg3Like; } public GL_LedgerQuery setSeg3Like(String value) { this.Seg3Like = value; return this; } public ArrayList getSeg3Between() { return Seg3Between; } public GL_LedgerQuery setSeg3Between(ArrayList value) { this.Seg3Between = value; return this; } public ArrayList getSeg3In() { return Seg3In; } public GL_LedgerQuery setSeg3In(ArrayList value) { this.Seg3In = value; return this; } public String getSeg4() { return Seg4; } public GL_LedgerQuery setSeg4(String value) { this.Seg4 = value; return this; } public String getSeg4StartsWith() { return Seg4StartsWith; } public GL_LedgerQuery setSeg4StartsWith(String value) { this.Seg4StartsWith = value; return this; } public String getSeg4EndsWith() { return Seg4EndsWith; } public GL_LedgerQuery setSeg4EndsWith(String value) { this.Seg4EndsWith = value; return this; } public String getSeg4Contains() { return Seg4Contains; } public GL_LedgerQuery setSeg4Contains(String value) { this.Seg4Contains = value; return this; } public String getSeg4Like() { return Seg4Like; } public GL_LedgerQuery setSeg4Like(String value) { this.Seg4Like = value; return this; } public ArrayList getSeg4Between() { return Seg4Between; } public GL_LedgerQuery setSeg4Between(ArrayList value) { this.Seg4Between = value; return this; } public ArrayList getSeg4In() { return Seg4In; } public GL_LedgerQuery setSeg4In(ArrayList value) { this.Seg4In = value; return this; } public String getSeg5() { return Seg5; } public GL_LedgerQuery setSeg5(String value) { this.Seg5 = value; return this; } public String getSeg5StartsWith() { return Seg5StartsWith; } public GL_LedgerQuery setSeg5StartsWith(String value) { this.Seg5StartsWith = value; return this; } public String getSeg5EndsWith() { return Seg5EndsWith; } public GL_LedgerQuery setSeg5EndsWith(String value) { this.Seg5EndsWith = value; return this; } public String getSeg5Contains() { return Seg5Contains; } public GL_LedgerQuery setSeg5Contains(String value) { this.Seg5Contains = value; return this; } public String getSeg5Like() { return Seg5Like; } public GL_LedgerQuery setSeg5Like(String value) { this.Seg5Like = value; return this; } public ArrayList getSeg5Between() { return Seg5Between; } public GL_LedgerQuery setSeg5Between(ArrayList value) { this.Seg5Between = value; return this; } public ArrayList getSeg5In() { return Seg5In; } public GL_LedgerQuery setSeg5In(ArrayList value) { this.Seg5In = value; return this; } public String getSeg6() { return Seg6; } public GL_LedgerQuery setSeg6(String value) { this.Seg6 = value; return this; } public String getSeg6StartsWith() { return Seg6StartsWith; } public GL_LedgerQuery setSeg6StartsWith(String value) { this.Seg6StartsWith = value; return this; } public String getSeg6EndsWith() { return Seg6EndsWith; } public GL_LedgerQuery setSeg6EndsWith(String value) { this.Seg6EndsWith = value; return this; } public String getSeg6Contains() { return Seg6Contains; } public GL_LedgerQuery setSeg6Contains(String value) { this.Seg6Contains = value; return this; } public String getSeg6Like() { return Seg6Like; } public GL_LedgerQuery setSeg6Like(String value) { this.Seg6Like = value; return this; } public ArrayList getSeg6Between() { return Seg6Between; } public GL_LedgerQuery setSeg6Between(ArrayList value) { this.Seg6Between = value; return this; } public ArrayList getSeg6In() { return Seg6In; } public GL_LedgerQuery setSeg6In(ArrayList value) { this.Seg6In = value; return this; } public String getDescription() { return Description; } public GL_LedgerQuery setDescription(String value) { this.Description = value; return this; } public String getDescriptionStartsWith() { return DescriptionStartsWith; } public GL_LedgerQuery setDescriptionStartsWith(String value) { this.DescriptionStartsWith = value; return this; } public String getDescriptionEndsWith() { return DescriptionEndsWith; } public GL_LedgerQuery setDescriptionEndsWith(String value) { this.DescriptionEndsWith = value; return this; } public String getDescriptionContains() { return DescriptionContains; } public GL_LedgerQuery setDescriptionContains(String value) { this.DescriptionContains = value; return this; } public String getDescriptionLike() { return DescriptionLike; } public GL_LedgerQuery setDescriptionLike(String value) { this.DescriptionLike = value; return this; } public ArrayList getDescriptionBetween() { return DescriptionBetween; } public GL_LedgerQuery setDescriptionBetween(ArrayList value) { this.DescriptionBetween = value; return this; } public ArrayList getDescriptionIn() { return DescriptionIn; } public GL_LedgerQuery setDescriptionIn(ArrayList value) { this.DescriptionIn = value; return this; } public BigDecimal getLastYearOpen() { return LastYearOpen; } public GL_LedgerQuery setLastYearOpen(BigDecimal value) { this.LastYearOpen = value; return this; } public BigDecimal getLastYearOpenGreaterThanOrEqualTo() { return LastYearOpenGreaterThanOrEqualTo; } public GL_LedgerQuery setLastYearOpenGreaterThanOrEqualTo(BigDecimal value) { this.LastYearOpenGreaterThanOrEqualTo = value; return this; } public BigDecimal getLastYearOpenGreaterThan() { return LastYearOpenGreaterThan; } public GL_LedgerQuery setLastYearOpenGreaterThan(BigDecimal value) { this.LastYearOpenGreaterThan = value; return this; } public BigDecimal getLastYearOpenLessThan() { return LastYearOpenLessThan; } public GL_LedgerQuery setLastYearOpenLessThan(BigDecimal value) { this.LastYearOpenLessThan = value; return this; } public BigDecimal getLastYearOpenLessThanOrEqualTo() { return LastYearOpenLessThanOrEqualTo; } public GL_LedgerQuery setLastYearOpenLessThanOrEqualTo(BigDecimal value) { this.LastYearOpenLessThanOrEqualTo = value; return this; } public BigDecimal getLastYearOpenNotEqualTo() { return LastYearOpenNotEqualTo; } public GL_LedgerQuery setLastYearOpenNotEqualTo(BigDecimal value) { this.LastYearOpenNotEqualTo = value; return this; } public ArrayList getLastYearOpenBetween() { return LastYearOpenBetween; } public GL_LedgerQuery setLastYearOpenBetween(ArrayList value) { this.LastYearOpenBetween = value; return this; } public ArrayList getLastYearOpenIn() { return LastYearOpenIn; } public GL_LedgerQuery setLastYearOpenIn(ArrayList value) { this.LastYearOpenIn = value; return this; } public BigDecimal getCurrYearOpen() { return CurrYearOpen; } public GL_LedgerQuery setCurrYearOpen(BigDecimal value) { this.CurrYearOpen = value; return this; } public BigDecimal getCurrYearOpenGreaterThanOrEqualTo() { return CurrYearOpenGreaterThanOrEqualTo; } public GL_LedgerQuery setCurrYearOpenGreaterThanOrEqualTo(BigDecimal value) { this.CurrYearOpenGreaterThanOrEqualTo = value; return this; } public BigDecimal getCurrYearOpenGreaterThan() { return CurrYearOpenGreaterThan; } public GL_LedgerQuery setCurrYearOpenGreaterThan(BigDecimal value) { this.CurrYearOpenGreaterThan = value; return this; } public BigDecimal getCurrYearOpenLessThan() { return CurrYearOpenLessThan; } public GL_LedgerQuery setCurrYearOpenLessThan(BigDecimal value) { this.CurrYearOpenLessThan = value; return this; } public BigDecimal getCurrYearOpenLessThanOrEqualTo() { return CurrYearOpenLessThanOrEqualTo; } public GL_LedgerQuery setCurrYearOpenLessThanOrEqualTo(BigDecimal value) { this.CurrYearOpenLessThanOrEqualTo = value; return this; } public BigDecimal getCurrYearOpenNotEqualTo() { return CurrYearOpenNotEqualTo; } public GL_LedgerQuery setCurrYearOpenNotEqualTo(BigDecimal value) { this.CurrYearOpenNotEqualTo = value; return this; } public ArrayList getCurrYearOpenBetween() { return CurrYearOpenBetween; } public GL_LedgerQuery setCurrYearOpenBetween(ArrayList value) { this.CurrYearOpenBetween = value; return this; } public ArrayList getCurrYearOpenIn() { return CurrYearOpenIn; } public GL_LedgerQuery setCurrYearOpenIn(ArrayList value) { this.CurrYearOpenIn = value; return this; } public BigDecimal getCurrBal() { return CurrBal; } public GL_LedgerQuery setCurrBal(BigDecimal value) { this.CurrBal = value; return this; } public BigDecimal getCurrBalGreaterThanOrEqualTo() { return CurrBalGreaterThanOrEqualTo; } public GL_LedgerQuery setCurrBalGreaterThanOrEqualTo(BigDecimal value) { this.CurrBalGreaterThanOrEqualTo = value; return this; } public BigDecimal getCurrBalGreaterThan() { return CurrBalGreaterThan; } public GL_LedgerQuery setCurrBalGreaterThan(BigDecimal value) { this.CurrBalGreaterThan = value; return this; } public BigDecimal getCurrBalLessThan() { return CurrBalLessThan; } public GL_LedgerQuery setCurrBalLessThan(BigDecimal value) { this.CurrBalLessThan = value; return this; } public BigDecimal getCurrBalLessThanOrEqualTo() { return CurrBalLessThanOrEqualTo; } public GL_LedgerQuery setCurrBalLessThanOrEqualTo(BigDecimal value) { this.CurrBalLessThanOrEqualTo = value; return this; } public BigDecimal getCurrBalNotEqualTo() { return CurrBalNotEqualTo; } public GL_LedgerQuery setCurrBalNotEqualTo(BigDecimal value) { this.CurrBalNotEqualTo = value; return this; } public ArrayList getCurrBalBetween() { return CurrBalBetween; } public GL_LedgerQuery setCurrBalBetween(ArrayList value) { this.CurrBalBetween = value; return this; } public ArrayList getCurrBalIn() { return CurrBalIn; } public GL_LedgerQuery setCurrBalIn(ArrayList value) { this.CurrBalIn = value; return this; } public Short getExpSign() { return ExpSign; } public GL_LedgerQuery setExpSign(Short value) { this.ExpSign = value; return this; } public Short getExpSignGreaterThanOrEqualTo() { return ExpSignGreaterThanOrEqualTo; } public GL_LedgerQuery setExpSignGreaterThanOrEqualTo(Short value) { this.ExpSignGreaterThanOrEqualTo = value; return this; } public Short getExpSignGreaterThan() { return ExpSignGreaterThan; } public GL_LedgerQuery setExpSignGreaterThan(Short value) { this.ExpSignGreaterThan = value; return this; } public Short getExpSignLessThan() { return ExpSignLessThan; } public GL_LedgerQuery setExpSignLessThan(Short value) { this.ExpSignLessThan = value; return this; } public Short getExpSignLessThanOrEqualTo() { return ExpSignLessThanOrEqualTo; } public GL_LedgerQuery setExpSignLessThanOrEqualTo(Short value) { this.ExpSignLessThanOrEqualTo = value; return this; } public Short getExpSignNotEqualTo() { return ExpSignNotEqualTo; } public GL_LedgerQuery setExpSignNotEqualTo(Short value) { this.ExpSignNotEqualTo = value; return this; } public ArrayList getExpSignBetween() { return ExpSignBetween; } public GL_LedgerQuery setExpSignBetween(ArrayList value) { this.ExpSignBetween = value; return this; } public ArrayList getExpSignIn() { return ExpSignIn; } public GL_LedgerQuery setExpSignIn(ArrayList value) { this.ExpSignIn = value; return this; } public Short getAccClass() { return AccClass; } public GL_LedgerQuery setAccClass(Short value) { this.AccClass = value; return this; } public Short getAccClassGreaterThanOrEqualTo() { return AccClassGreaterThanOrEqualTo; } public GL_LedgerQuery setAccClassGreaterThanOrEqualTo(Short value) { this.AccClassGreaterThanOrEqualTo = value; return this; } public Short getAccClassGreaterThan() { return AccClassGreaterThan; } public GL_LedgerQuery setAccClassGreaterThan(Short value) { this.AccClassGreaterThan = value; return this; } public Short getAccClassLessThan() { return AccClassLessThan; } public GL_LedgerQuery setAccClassLessThan(Short value) { this.AccClassLessThan = value; return this; } public Short getAccClassLessThanOrEqualTo() { return AccClassLessThanOrEqualTo; } public GL_LedgerQuery setAccClassLessThanOrEqualTo(Short value) { this.AccClassLessThanOrEqualTo = value; return this; } public Short getAccClassNotEqualTo() { return AccClassNotEqualTo; } public GL_LedgerQuery setAccClassNotEqualTo(Short value) { this.AccClassNotEqualTo = value; return this; } public ArrayList getAccClassBetween() { return AccClassBetween; } public GL_LedgerQuery setAccClassBetween(ArrayList value) { this.AccClassBetween = value; return this; } public ArrayList getAccClassIn() { return AccClassIn; } public GL_LedgerQuery setAccClassIn(ArrayList value) { this.AccClassIn = value; return this; } public Boolean isDistributionAcc() { return DistributionAcc; } public GL_LedgerQuery setDistributionAcc(Boolean value) { this.DistributionAcc = value; return this; } public String getShortCut() { return ShortCut; } public GL_LedgerQuery setShortCut(String value) { this.ShortCut = value; return this; } public String getShortCutStartsWith() { return ShortCutStartsWith; } public GL_LedgerQuery setShortCutStartsWith(String value) { this.ShortCutStartsWith = value; return this; } public String getShortCutEndsWith() { return ShortCutEndsWith; } public GL_LedgerQuery setShortCutEndsWith(String value) { this.ShortCutEndsWith = value; return this; } public String getShortCutContains() { return ShortCutContains; } public GL_LedgerQuery setShortCutContains(String value) { this.ShortCutContains = value; return this; } public String getShortCutLike() { return ShortCutLike; } public GL_LedgerQuery setShortCutLike(String value) { this.ShortCutLike = value; return this; } public ArrayList getShortCutBetween() { return ShortCutBetween; } public GL_LedgerQuery setShortCutBetween(ArrayList value) { this.ShortCutBetween = value; return this; } public ArrayList getShortCutIn() { return ShortCutIn; } public GL_LedgerQuery setShortCutIn(ArrayList value) { this.ShortCutIn = value; return this; } public Short getPostingAcc() { return PostingAcc; } public GL_LedgerQuery setPostingAcc(Short value) { this.PostingAcc = value; return this; } public Short getPostingAccGreaterThanOrEqualTo() { return PostingAccGreaterThanOrEqualTo; } public GL_LedgerQuery setPostingAccGreaterThanOrEqualTo(Short value) { this.PostingAccGreaterThanOrEqualTo = value; return this; } public Short getPostingAccGreaterThan() { return PostingAccGreaterThan; } public GL_LedgerQuery setPostingAccGreaterThan(Short value) { this.PostingAccGreaterThan = value; return this; } public Short getPostingAccLessThan() { return PostingAccLessThan; } public GL_LedgerQuery setPostingAccLessThan(Short value) { this.PostingAccLessThan = value; return this; } public Short getPostingAccLessThanOrEqualTo() { return PostingAccLessThanOrEqualTo; } public GL_LedgerQuery setPostingAccLessThanOrEqualTo(Short value) { this.PostingAccLessThanOrEqualTo = value; return this; } public Short getPostingAccNotEqualTo() { return PostingAccNotEqualTo; } public GL_LedgerQuery setPostingAccNotEqualTo(Short value) { this.PostingAccNotEqualTo = value; return this; } public ArrayList getPostingAccBetween() { return PostingAccBetween; } public GL_LedgerQuery setPostingAccBetween(ArrayList value) { this.PostingAccBetween = value; return this; } public ArrayList getPostingAccIn() { return PostingAccIn; } public GL_LedgerQuery setPostingAccIn(ArrayList value) { this.PostingAccIn = value; return this; } public String getParentAccNo() { return ParentAccNo; } public GL_LedgerQuery setParentAccNo(String value) { this.ParentAccNo = value; return this; } public String getParentAccNoStartsWith() { return ParentAccNoStartsWith; } public GL_LedgerQuery setParentAccNoStartsWith(String value) { this.ParentAccNoStartsWith = value; return this; } public String getParentAccNoEndsWith() { return ParentAccNoEndsWith; } public GL_LedgerQuery setParentAccNoEndsWith(String value) { this.ParentAccNoEndsWith = value; return this; } public String getParentAccNoContains() { return ParentAccNoContains; } public GL_LedgerQuery setParentAccNoContains(String value) { this.ParentAccNoContains = value; return this; } public String getParentAccNoLike() { return ParentAccNoLike; } public GL_LedgerQuery setParentAccNoLike(String value) { this.ParentAccNoLike = value; return this; } public ArrayList getParentAccNoBetween() { return ParentAccNoBetween; } public GL_LedgerQuery setParentAccNoBetween(ArrayList value) { this.ParentAccNoBetween = value; return this; } public ArrayList getParentAccNoIn() { return ParentAccNoIn; } public GL_LedgerQuery setParentAccNoIn(ArrayList value) { this.ParentAccNoIn = value; return this; } public Boolean isUseTransCode1() { return UseTransCode1; } public GL_LedgerQuery setUseTransCode1(Boolean value) { this.UseTransCode1 = value; return this; } public Boolean isUseTransCode2() { return UseTransCode2; } public GL_LedgerQuery setUseTransCode2(Boolean value) { this.UseTransCode2 = value; return this; } public Boolean isUseTransCode3() { return UseTransCode3; } public GL_LedgerQuery setUseTransCode3(Boolean value) { this.UseTransCode3 = value; return this; } public Boolean isUseStaffCode() { return UseStaffCode; } public GL_LedgerQuery setUseStaffCode(Boolean value) { this.UseStaffCode = value; return this; } public String getClearingAccountID() { return ClearingAccountID; } public GL_LedgerQuery setClearingAccountID(String value) { this.ClearingAccountID = value; return this; } public String getClearingAccountIDStartsWith() { return ClearingAccountIDStartsWith; } public GL_LedgerQuery setClearingAccountIDStartsWith(String value) { this.ClearingAccountIDStartsWith = value; return this; } public String getClearingAccountIDEndsWith() { return ClearingAccountIDEndsWith; } public GL_LedgerQuery setClearingAccountIDEndsWith(String value) { this.ClearingAccountIDEndsWith = value; return this; } public String getClearingAccountIDContains() { return ClearingAccountIDContains; } public GL_LedgerQuery setClearingAccountIDContains(String value) { this.ClearingAccountIDContains = value; return this; } public String getClearingAccountIDLike() { return ClearingAccountIDLike; } public GL_LedgerQuery setClearingAccountIDLike(String value) { this.ClearingAccountIDLike = value; return this; } public ArrayList getClearingAccountIDBetween() { return ClearingAccountIDBetween; } public GL_LedgerQuery setClearingAccountIDBetween(ArrayList value) { this.ClearingAccountIDBetween = value; return this; } public ArrayList getClearingAccountIDIn() { return ClearingAccountIDIn; } public GL_LedgerQuery setClearingAccountIDIn(ArrayList value) { this.ClearingAccountIDIn = value; return this; } public String getDetails() { return Details; } public GL_LedgerQuery setDetails(String value) { this.Details = value; return this; } public String getDetailsStartsWith() { return DetailsStartsWith; } public GL_LedgerQuery setDetailsStartsWith(String value) { this.DetailsStartsWith = value; return this; } public String getDetailsEndsWith() { return DetailsEndsWith; } public GL_LedgerQuery setDetailsEndsWith(String value) { this.DetailsEndsWith = value; return this; } public String getDetailsContains() { return DetailsContains; } public GL_LedgerQuery setDetailsContains(String value) { this.DetailsContains = value; return this; } public String getDetailsLike() { return DetailsLike; } public GL_LedgerQuery setDetailsLike(String value) { this.DetailsLike = value; return this; } public ArrayList getDetailsBetween() { return DetailsBetween; } public GL_LedgerQuery setDetailsBetween(ArrayList value) { this.DetailsBetween = value; return this; } public ArrayList getDetailsIn() { return DetailsIn; } public GL_LedgerQuery setDetailsIn(ArrayList value) { this.DetailsIn = value; return this; } public Boolean getIsEnabled() { return IsEnabled; } public GL_LedgerQuery setIsEnabled(Boolean value) { this.IsEnabled = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class GL_MovementQuery extends QueryDb implements IReturn> { public String GLMovementID = null; public String GLMovementIDStartsWith = null; public String GLMovementIDEndsWith = null; public String GLMovementIDContains = null; public String GLMovementIDLike = null; public ArrayList GLMovementIDBetween = null; public ArrayList GLMovementIDIn = null; public String GLLedgerID = null; public String GLLedgerIDStartsWith = null; public String GLLedgerIDEndsWith = null; public String GLLedgerIDContains = null; public String GLLedgerIDLike = null; public ArrayList GLLedgerIDBetween = null; public ArrayList GLLedgerIDIn = null; public BigDecimal LastYearMovement1 = null; public BigDecimal LastYearMovement1GreaterThanOrEqualTo = null; public BigDecimal LastYearMovement1GreaterThan = null; public BigDecimal LastYearMovement1LessThan = null; public BigDecimal LastYearMovement1LessThanOrEqualTo = null; public BigDecimal LastYearMovement1NotEqualTo = null; public ArrayList LastYearMovement1Between = null; public ArrayList LastYearMovement1In = null; public BigDecimal LastYearMovement2 = null; public BigDecimal LastYearMovement2GreaterThanOrEqualTo = null; public BigDecimal LastYearMovement2GreaterThan = null; public BigDecimal LastYearMovement2LessThan = null; public BigDecimal LastYearMovement2LessThanOrEqualTo = null; public BigDecimal LastYearMovement2NotEqualTo = null; public ArrayList LastYearMovement2Between = null; public ArrayList LastYearMovement2In = null; public BigDecimal LastYearMovement3 = null; public BigDecimal LastYearMovement3GreaterThanOrEqualTo = null; public BigDecimal LastYearMovement3GreaterThan = null; public BigDecimal LastYearMovement3LessThan = null; public BigDecimal LastYearMovement3LessThanOrEqualTo = null; public BigDecimal LastYearMovement3NotEqualTo = null; public ArrayList LastYearMovement3Between = null; public ArrayList LastYearMovement3In = null; public BigDecimal LastYearMovement4 = null; public BigDecimal LastYearMovement4GreaterThanOrEqualTo = null; public BigDecimal LastYearMovement4GreaterThan = null; public BigDecimal LastYearMovement4LessThan = null; public BigDecimal LastYearMovement4LessThanOrEqualTo = null; public BigDecimal LastYearMovement4NotEqualTo = null; public ArrayList LastYearMovement4Between = null; public ArrayList LastYearMovement4In = null; public BigDecimal LastYearMovement5 = null; public BigDecimal LastYearMovement5GreaterThanOrEqualTo = null; public BigDecimal LastYearMovement5GreaterThan = null; public BigDecimal LastYearMovement5LessThan = null; public BigDecimal LastYearMovement5LessThanOrEqualTo = null; public BigDecimal LastYearMovement5NotEqualTo = null; public ArrayList LastYearMovement5Between = null; public ArrayList LastYearMovement5In = null; public BigDecimal LastYearMovement6 = null; public BigDecimal LastYearMovement6GreaterThanOrEqualTo = null; public BigDecimal LastYearMovement6GreaterThan = null; public BigDecimal LastYearMovement6LessThan = null; public BigDecimal LastYearMovement6LessThanOrEqualTo = null; public BigDecimal LastYearMovement6NotEqualTo = null; public ArrayList LastYearMovement6Between = null; public ArrayList LastYearMovement6In = null; public BigDecimal LastYearMovement7 = null; public BigDecimal LastYearMovement7GreaterThanOrEqualTo = null; public BigDecimal LastYearMovement7GreaterThan = null; public BigDecimal LastYearMovement7LessThan = null; public BigDecimal LastYearMovement7LessThanOrEqualTo = null; public BigDecimal LastYearMovement7NotEqualTo = null; public ArrayList LastYearMovement7Between = null; public ArrayList LastYearMovement7In = null; public BigDecimal LastYearMovement8 = null; public BigDecimal LastYearMovement8GreaterThanOrEqualTo = null; public BigDecimal LastYearMovement8GreaterThan = null; public BigDecimal LastYearMovement8LessThan = null; public BigDecimal LastYearMovement8LessThanOrEqualTo = null; public BigDecimal LastYearMovement8NotEqualTo = null; public ArrayList LastYearMovement8Between = null; public ArrayList LastYearMovement8In = null; public BigDecimal LastYearMovement9 = null; public BigDecimal LastYearMovement9GreaterThanOrEqualTo = null; public BigDecimal LastYearMovement9GreaterThan = null; public BigDecimal LastYearMovement9LessThan = null; public BigDecimal LastYearMovement9LessThanOrEqualTo = null; public BigDecimal LastYearMovement9NotEqualTo = null; public ArrayList LastYearMovement9Between = null; public ArrayList LastYearMovement9In = null; public BigDecimal LastYearMovement10 = null; public BigDecimal LastYearMovement10GreaterThanOrEqualTo = null; public BigDecimal LastYearMovement10GreaterThan = null; public BigDecimal LastYearMovement10LessThan = null; public BigDecimal LastYearMovement10LessThanOrEqualTo = null; public BigDecimal LastYearMovement10NotEqualTo = null; public ArrayList LastYearMovement10Between = null; public ArrayList LastYearMovement10In = null; public BigDecimal LastYearMovement11 = null; public BigDecimal LastYearMovement11GreaterThanOrEqualTo = null; public BigDecimal LastYearMovement11GreaterThan = null; public BigDecimal LastYearMovement11LessThan = null; public BigDecimal LastYearMovement11LessThanOrEqualTo = null; public BigDecimal LastYearMovement11NotEqualTo = null; public ArrayList LastYearMovement11Between = null; public ArrayList LastYearMovement11In = null; public BigDecimal LastYearMovement12 = null; public BigDecimal LastYearMovement12GreaterThanOrEqualTo = null; public BigDecimal LastYearMovement12GreaterThan = null; public BigDecimal LastYearMovement12LessThan = null; public BigDecimal LastYearMovement12LessThanOrEqualTo = null; public BigDecimal LastYearMovement12NotEqualTo = null; public ArrayList LastYearMovement12Between = null; public ArrayList LastYearMovement12In = null; public BigDecimal CurrYearMovement1 = null; public BigDecimal CurrYearMovement1GreaterThanOrEqualTo = null; public BigDecimal CurrYearMovement1GreaterThan = null; public BigDecimal CurrYearMovement1LessThan = null; public BigDecimal CurrYearMovement1LessThanOrEqualTo = null; public BigDecimal CurrYearMovement1NotEqualTo = null; public ArrayList CurrYearMovement1Between = null; public ArrayList CurrYearMovement1In = null; public BigDecimal CurrYearMovement2 = null; public BigDecimal CurrYearMovement2GreaterThanOrEqualTo = null; public BigDecimal CurrYearMovement2GreaterThan = null; public BigDecimal CurrYearMovement2LessThan = null; public BigDecimal CurrYearMovement2LessThanOrEqualTo = null; public BigDecimal CurrYearMovement2NotEqualTo = null; public ArrayList CurrYearMovement2Between = null; public ArrayList CurrYearMovement2In = null; public BigDecimal CurrYearMovement3 = null; public BigDecimal CurrYearMovement3GreaterThanOrEqualTo = null; public BigDecimal CurrYearMovement3GreaterThan = null; public BigDecimal CurrYearMovement3LessThan = null; public BigDecimal CurrYearMovement3LessThanOrEqualTo = null; public BigDecimal CurrYearMovement3NotEqualTo = null; public ArrayList CurrYearMovement3Between = null; public ArrayList CurrYearMovement3In = null; public BigDecimal CurrYearMovement4 = null; public BigDecimal CurrYearMovement4GreaterThanOrEqualTo = null; public BigDecimal CurrYearMovement4GreaterThan = null; public BigDecimal CurrYearMovement4LessThan = null; public BigDecimal CurrYearMovement4LessThanOrEqualTo = null; public BigDecimal CurrYearMovement4NotEqualTo = null; public ArrayList CurrYearMovement4Between = null; public ArrayList CurrYearMovement4In = null; public BigDecimal CurrYearMovement5 = null; public BigDecimal CurrYearMovement5GreaterThanOrEqualTo = null; public BigDecimal CurrYearMovement5GreaterThan = null; public BigDecimal CurrYearMovement5LessThan = null; public BigDecimal CurrYearMovement5LessThanOrEqualTo = null; public BigDecimal CurrYearMovement5NotEqualTo = null; public ArrayList CurrYearMovement5Between = null; public ArrayList CurrYearMovement5In = null; public BigDecimal CurrYearMovement6 = null; public BigDecimal CurrYearMovement6GreaterThanOrEqualTo = null; public BigDecimal CurrYearMovement6GreaterThan = null; public BigDecimal CurrYearMovement6LessThan = null; public BigDecimal CurrYearMovement6LessThanOrEqualTo = null; public BigDecimal CurrYearMovement6NotEqualTo = null; public ArrayList CurrYearMovement6Between = null; public ArrayList CurrYearMovement6In = null; public BigDecimal CurrYearMovement7 = null; public BigDecimal CurrYearMovement7GreaterThanOrEqualTo = null; public BigDecimal CurrYearMovement7GreaterThan = null; public BigDecimal CurrYearMovement7LessThan = null; public BigDecimal CurrYearMovement7LessThanOrEqualTo = null; public BigDecimal CurrYearMovement7NotEqualTo = null; public ArrayList CurrYearMovement7Between = null; public ArrayList CurrYearMovement7In = null; public BigDecimal CurrYearMovement8 = null; public BigDecimal CurrYearMovement8GreaterThanOrEqualTo = null; public BigDecimal CurrYearMovement8GreaterThan = null; public BigDecimal CurrYearMovement8LessThan = null; public BigDecimal CurrYearMovement8LessThanOrEqualTo = null; public BigDecimal CurrYearMovement8NotEqualTo = null; public ArrayList CurrYearMovement8Between = null; public ArrayList CurrYearMovement8In = null; public BigDecimal CurrYearMovement9 = null; public BigDecimal CurrYearMovement9GreaterThanOrEqualTo = null; public BigDecimal CurrYearMovement9GreaterThan = null; public BigDecimal CurrYearMovement9LessThan = null; public BigDecimal CurrYearMovement9LessThanOrEqualTo = null; public BigDecimal CurrYearMovement9NotEqualTo = null; public ArrayList CurrYearMovement9Between = null; public ArrayList CurrYearMovement9In = null; public BigDecimal CurrYearMovement10 = null; public BigDecimal CurrYearMovement10GreaterThanOrEqualTo = null; public BigDecimal CurrYearMovement10GreaterThan = null; public BigDecimal CurrYearMovement10LessThan = null; public BigDecimal CurrYearMovement10LessThanOrEqualTo = null; public BigDecimal CurrYearMovement10NotEqualTo = null; public ArrayList CurrYearMovement10Between = null; public ArrayList CurrYearMovement10In = null; public BigDecimal CurrYearMovement11 = null; public BigDecimal CurrYearMovement11GreaterThanOrEqualTo = null; public BigDecimal CurrYearMovement11GreaterThan = null; public BigDecimal CurrYearMovement11LessThan = null; public BigDecimal CurrYearMovement11LessThanOrEqualTo = null; public BigDecimal CurrYearMovement11NotEqualTo = null; public ArrayList CurrYearMovement11Between = null; public ArrayList CurrYearMovement11In = null; public BigDecimal CurrYearMovement12 = null; public BigDecimal CurrYearMovement12GreaterThanOrEqualTo = null; public BigDecimal CurrYearMovement12GreaterThan = null; public BigDecimal CurrYearMovement12LessThan = null; public BigDecimal CurrYearMovement12LessThanOrEqualTo = null; public BigDecimal CurrYearMovement12NotEqualTo = null; public ArrayList CurrYearMovement12Between = null; public ArrayList CurrYearMovement12In = null; public BigDecimal NextYearMovement1 = null; public BigDecimal NextYearMovement1GreaterThanOrEqualTo = null; public BigDecimal NextYearMovement1GreaterThan = null; public BigDecimal NextYearMovement1LessThan = null; public BigDecimal NextYearMovement1LessThanOrEqualTo = null; public BigDecimal NextYearMovement1NotEqualTo = null; public ArrayList NextYearMovement1Between = null; public ArrayList NextYearMovement1In = null; public BigDecimal NextYearMovement2 = null; public BigDecimal NextYearMovement2GreaterThanOrEqualTo = null; public BigDecimal NextYearMovement2GreaterThan = null; public BigDecimal NextYearMovement2LessThan = null; public BigDecimal NextYearMovement2LessThanOrEqualTo = null; public BigDecimal NextYearMovement2NotEqualTo = null; public ArrayList NextYearMovement2Between = null; public ArrayList NextYearMovement2In = null; public BigDecimal NextYearMovement3 = null; public BigDecimal NextYearMovement3GreaterThanOrEqualTo = null; public BigDecimal NextYearMovement3GreaterThan = null; public BigDecimal NextYearMovement3LessThan = null; public BigDecimal NextYearMovement3LessThanOrEqualTo = null; public BigDecimal NextYearMovement3NotEqualTo = null; public ArrayList NextYearMovement3Between = null; public ArrayList NextYearMovement3In = null; public BigDecimal NextYearMovement4 = null; public BigDecimal NextYearMovement4GreaterThanOrEqualTo = null; public BigDecimal NextYearMovement4GreaterThan = null; public BigDecimal NextYearMovement4LessThan = null; public BigDecimal NextYearMovement4LessThanOrEqualTo = null; public BigDecimal NextYearMovement4NotEqualTo = null; public ArrayList NextYearMovement4Between = null; public ArrayList NextYearMovement4In = null; public BigDecimal NextYearMovement5 = null; public BigDecimal NextYearMovement5GreaterThanOrEqualTo = null; public BigDecimal NextYearMovement5GreaterThan = null; public BigDecimal NextYearMovement5LessThan = null; public BigDecimal NextYearMovement5LessThanOrEqualTo = null; public BigDecimal NextYearMovement5NotEqualTo = null; public ArrayList NextYearMovement5Between = null; public ArrayList NextYearMovement5In = null; public BigDecimal NextYearMovement6 = null; public BigDecimal NextYearMovement6GreaterThanOrEqualTo = null; public BigDecimal NextYearMovement6GreaterThan = null; public BigDecimal NextYearMovement6LessThan = null; public BigDecimal NextYearMovement6LessThanOrEqualTo = null; public BigDecimal NextYearMovement6NotEqualTo = null; public ArrayList NextYearMovement6Between = null; public ArrayList NextYearMovement6In = null; public BigDecimal NextYearMovement7 = null; public BigDecimal NextYearMovement7GreaterThanOrEqualTo = null; public BigDecimal NextYearMovement7GreaterThan = null; public BigDecimal NextYearMovement7LessThan = null; public BigDecimal NextYearMovement7LessThanOrEqualTo = null; public BigDecimal NextYearMovement7NotEqualTo = null; public ArrayList NextYearMovement7Between = null; public ArrayList NextYearMovement7In = null; public BigDecimal NextYearMovement8 = null; public BigDecimal NextYearMovement8GreaterThanOrEqualTo = null; public BigDecimal NextYearMovement8GreaterThan = null; public BigDecimal NextYearMovement8LessThan = null; public BigDecimal NextYearMovement8LessThanOrEqualTo = null; public BigDecimal NextYearMovement8NotEqualTo = null; public ArrayList NextYearMovement8Between = null; public ArrayList NextYearMovement8In = null; public BigDecimal NextYearMovement9 = null; public BigDecimal NextYearMovement9GreaterThanOrEqualTo = null; public BigDecimal NextYearMovement9GreaterThan = null; public BigDecimal NextYearMovement9LessThan = null; public BigDecimal NextYearMovement9LessThanOrEqualTo = null; public BigDecimal NextYearMovement9NotEqualTo = null; public ArrayList NextYearMovement9Between = null; public ArrayList NextYearMovement9In = null; public BigDecimal NextYearMovement10 = null; public BigDecimal NextYearMovement10GreaterThanOrEqualTo = null; public BigDecimal NextYearMovement10GreaterThan = null; public BigDecimal NextYearMovement10LessThan = null; public BigDecimal NextYearMovement10LessThanOrEqualTo = null; public BigDecimal NextYearMovement10NotEqualTo = null; public ArrayList NextYearMovement10Between = null; public ArrayList NextYearMovement10In = null; public BigDecimal NextYearMovement11 = null; public BigDecimal NextYearMovement11GreaterThanOrEqualTo = null; public BigDecimal NextYearMovement11GreaterThan = null; public BigDecimal NextYearMovement11LessThan = null; public BigDecimal NextYearMovement11LessThanOrEqualTo = null; public BigDecimal NextYearMovement11NotEqualTo = null; public ArrayList NextYearMovement11Between = null; public ArrayList NextYearMovement11In = null; public BigDecimal NextYearMovement12 = null; public BigDecimal NextYearMovement12GreaterThanOrEqualTo = null; public BigDecimal NextYearMovement12GreaterThan = null; public BigDecimal NextYearMovement12LessThan = null; public BigDecimal NextYearMovement12LessThanOrEqualTo = null; public BigDecimal NextYearMovement12NotEqualTo = null; public ArrayList NextYearMovement12Between = null; public ArrayList NextYearMovement12In = null; public String getGlMovementID() { return GLMovementID; } public GL_MovementQuery setGlMovementID(String value) { this.GLMovementID = value; return this; } public String getGlMovementIDStartsWith() { return GLMovementIDStartsWith; } public GL_MovementQuery setGlMovementIDStartsWith(String value) { this.GLMovementIDStartsWith = value; return this; } public String getGlMovementIDEndsWith() { return GLMovementIDEndsWith; } public GL_MovementQuery setGlMovementIDEndsWith(String value) { this.GLMovementIDEndsWith = value; return this; } public String getGlMovementIDContains() { return GLMovementIDContains; } public GL_MovementQuery setGlMovementIDContains(String value) { this.GLMovementIDContains = value; return this; } public String getGlMovementIDLike() { return GLMovementIDLike; } public GL_MovementQuery setGlMovementIDLike(String value) { this.GLMovementIDLike = value; return this; } public ArrayList getGlMovementIDBetween() { return GLMovementIDBetween; } public GL_MovementQuery setGlMovementIDBetween(ArrayList value) { this.GLMovementIDBetween = value; return this; } public ArrayList getGlMovementIDIn() { return GLMovementIDIn; } public GL_MovementQuery setGlMovementIDIn(ArrayList value) { this.GLMovementIDIn = value; return this; } public String getGlLedgerID() { return GLLedgerID; } public GL_MovementQuery setGlLedgerID(String value) { this.GLLedgerID = value; return this; } public String getGlLedgerIDStartsWith() { return GLLedgerIDStartsWith; } public GL_MovementQuery setGlLedgerIDStartsWith(String value) { this.GLLedgerIDStartsWith = value; return this; } public String getGlLedgerIDEndsWith() { return GLLedgerIDEndsWith; } public GL_MovementQuery setGlLedgerIDEndsWith(String value) { this.GLLedgerIDEndsWith = value; return this; } public String getGlLedgerIDContains() { return GLLedgerIDContains; } public GL_MovementQuery setGlLedgerIDContains(String value) { this.GLLedgerIDContains = value; return this; } public String getGlLedgerIDLike() { return GLLedgerIDLike; } public GL_MovementQuery setGlLedgerIDLike(String value) { this.GLLedgerIDLike = value; return this; } public ArrayList getGlLedgerIDBetween() { return GLLedgerIDBetween; } public GL_MovementQuery setGlLedgerIDBetween(ArrayList value) { this.GLLedgerIDBetween = value; return this; } public ArrayList getGlLedgerIDIn() { return GLLedgerIDIn; } public GL_MovementQuery setGlLedgerIDIn(ArrayList value) { this.GLLedgerIDIn = value; return this; } public BigDecimal getLastYearMovement1() { return LastYearMovement1; } public GL_MovementQuery setLastYearMovement1(BigDecimal value) { this.LastYearMovement1 = value; return this; } public BigDecimal getLastYearMovement1GreaterThanOrEqualTo() { return LastYearMovement1GreaterThanOrEqualTo; } public GL_MovementQuery setLastYearMovement1GreaterThanOrEqualTo(BigDecimal value) { this.LastYearMovement1GreaterThanOrEqualTo = value; return this; } public BigDecimal getLastYearMovement1GreaterThan() { return LastYearMovement1GreaterThan; } public GL_MovementQuery setLastYearMovement1GreaterThan(BigDecimal value) { this.LastYearMovement1GreaterThan = value; return this; } public BigDecimal getLastYearMovement1LessThan() { return LastYearMovement1LessThan; } public GL_MovementQuery setLastYearMovement1LessThan(BigDecimal value) { this.LastYearMovement1LessThan = value; return this; } public BigDecimal getLastYearMovement1LessThanOrEqualTo() { return LastYearMovement1LessThanOrEqualTo; } public GL_MovementQuery setLastYearMovement1LessThanOrEqualTo(BigDecimal value) { this.LastYearMovement1LessThanOrEqualTo = value; return this; } public BigDecimal getLastYearMovement1NotEqualTo() { return LastYearMovement1NotEqualTo; } public GL_MovementQuery setLastYearMovement1NotEqualTo(BigDecimal value) { this.LastYearMovement1NotEqualTo = value; return this; } public ArrayList getLastYearMovement1Between() { return LastYearMovement1Between; } public GL_MovementQuery setLastYearMovement1Between(ArrayList value) { this.LastYearMovement1Between = value; return this; } public ArrayList getLastYearMovement1In() { return LastYearMovement1In; } public GL_MovementQuery setLastYearMovement1In(ArrayList value) { this.LastYearMovement1In = value; return this; } public BigDecimal getLastYearMovement2() { return LastYearMovement2; } public GL_MovementQuery setLastYearMovement2(BigDecimal value) { this.LastYearMovement2 = value; return this; } public BigDecimal getLastYearMovement2GreaterThanOrEqualTo() { return LastYearMovement2GreaterThanOrEqualTo; } public GL_MovementQuery setLastYearMovement2GreaterThanOrEqualTo(BigDecimal value) { this.LastYearMovement2GreaterThanOrEqualTo = value; return this; } public BigDecimal getLastYearMovement2GreaterThan() { return LastYearMovement2GreaterThan; } public GL_MovementQuery setLastYearMovement2GreaterThan(BigDecimal value) { this.LastYearMovement2GreaterThan = value; return this; } public BigDecimal getLastYearMovement2LessThan() { return LastYearMovement2LessThan; } public GL_MovementQuery setLastYearMovement2LessThan(BigDecimal value) { this.LastYearMovement2LessThan = value; return this; } public BigDecimal getLastYearMovement2LessThanOrEqualTo() { return LastYearMovement2LessThanOrEqualTo; } public GL_MovementQuery setLastYearMovement2LessThanOrEqualTo(BigDecimal value) { this.LastYearMovement2LessThanOrEqualTo = value; return this; } public BigDecimal getLastYearMovement2NotEqualTo() { return LastYearMovement2NotEqualTo; } public GL_MovementQuery setLastYearMovement2NotEqualTo(BigDecimal value) { this.LastYearMovement2NotEqualTo = value; return this; } public ArrayList getLastYearMovement2Between() { return LastYearMovement2Between; } public GL_MovementQuery setLastYearMovement2Between(ArrayList value) { this.LastYearMovement2Between = value; return this; } public ArrayList getLastYearMovement2In() { return LastYearMovement2In; } public GL_MovementQuery setLastYearMovement2In(ArrayList value) { this.LastYearMovement2In = value; return this; } public BigDecimal getLastYearMovement3() { return LastYearMovement3; } public GL_MovementQuery setLastYearMovement3(BigDecimal value) { this.LastYearMovement3 = value; return this; } public BigDecimal getLastYearMovement3GreaterThanOrEqualTo() { return LastYearMovement3GreaterThanOrEqualTo; } public GL_MovementQuery setLastYearMovement3GreaterThanOrEqualTo(BigDecimal value) { this.LastYearMovement3GreaterThanOrEqualTo = value; return this; } public BigDecimal getLastYearMovement3GreaterThan() { return LastYearMovement3GreaterThan; } public GL_MovementQuery setLastYearMovement3GreaterThan(BigDecimal value) { this.LastYearMovement3GreaterThan = value; return this; } public BigDecimal getLastYearMovement3LessThan() { return LastYearMovement3LessThan; } public GL_MovementQuery setLastYearMovement3LessThan(BigDecimal value) { this.LastYearMovement3LessThan = value; return this; } public BigDecimal getLastYearMovement3LessThanOrEqualTo() { return LastYearMovement3LessThanOrEqualTo; } public GL_MovementQuery setLastYearMovement3LessThanOrEqualTo(BigDecimal value) { this.LastYearMovement3LessThanOrEqualTo = value; return this; } public BigDecimal getLastYearMovement3NotEqualTo() { return LastYearMovement3NotEqualTo; } public GL_MovementQuery setLastYearMovement3NotEqualTo(BigDecimal value) { this.LastYearMovement3NotEqualTo = value; return this; } public ArrayList getLastYearMovement3Between() { return LastYearMovement3Between; } public GL_MovementQuery setLastYearMovement3Between(ArrayList value) { this.LastYearMovement3Between = value; return this; } public ArrayList getLastYearMovement3In() { return LastYearMovement3In; } public GL_MovementQuery setLastYearMovement3In(ArrayList value) { this.LastYearMovement3In = value; return this; } public BigDecimal getLastYearMovement4() { return LastYearMovement4; } public GL_MovementQuery setLastYearMovement4(BigDecimal value) { this.LastYearMovement4 = value; return this; } public BigDecimal getLastYearMovement4GreaterThanOrEqualTo() { return LastYearMovement4GreaterThanOrEqualTo; } public GL_MovementQuery setLastYearMovement4GreaterThanOrEqualTo(BigDecimal value) { this.LastYearMovement4GreaterThanOrEqualTo = value; return this; } public BigDecimal getLastYearMovement4GreaterThan() { return LastYearMovement4GreaterThan; } public GL_MovementQuery setLastYearMovement4GreaterThan(BigDecimal value) { this.LastYearMovement4GreaterThan = value; return this; } public BigDecimal getLastYearMovement4LessThan() { return LastYearMovement4LessThan; } public GL_MovementQuery setLastYearMovement4LessThan(BigDecimal value) { this.LastYearMovement4LessThan = value; return this; } public BigDecimal getLastYearMovement4LessThanOrEqualTo() { return LastYearMovement4LessThanOrEqualTo; } public GL_MovementQuery setLastYearMovement4LessThanOrEqualTo(BigDecimal value) { this.LastYearMovement4LessThanOrEqualTo = value; return this; } public BigDecimal getLastYearMovement4NotEqualTo() { return LastYearMovement4NotEqualTo; } public GL_MovementQuery setLastYearMovement4NotEqualTo(BigDecimal value) { this.LastYearMovement4NotEqualTo = value; return this; } public ArrayList getLastYearMovement4Between() { return LastYearMovement4Between; } public GL_MovementQuery setLastYearMovement4Between(ArrayList value) { this.LastYearMovement4Between = value; return this; } public ArrayList getLastYearMovement4In() { return LastYearMovement4In; } public GL_MovementQuery setLastYearMovement4In(ArrayList value) { this.LastYearMovement4In = value; return this; } public BigDecimal getLastYearMovement5() { return LastYearMovement5; } public GL_MovementQuery setLastYearMovement5(BigDecimal value) { this.LastYearMovement5 = value; return this; } public BigDecimal getLastYearMovement5GreaterThanOrEqualTo() { return LastYearMovement5GreaterThanOrEqualTo; } public GL_MovementQuery setLastYearMovement5GreaterThanOrEqualTo(BigDecimal value) { this.LastYearMovement5GreaterThanOrEqualTo = value; return this; } public BigDecimal getLastYearMovement5GreaterThan() { return LastYearMovement5GreaterThan; } public GL_MovementQuery setLastYearMovement5GreaterThan(BigDecimal value) { this.LastYearMovement5GreaterThan = value; return this; } public BigDecimal getLastYearMovement5LessThan() { return LastYearMovement5LessThan; } public GL_MovementQuery setLastYearMovement5LessThan(BigDecimal value) { this.LastYearMovement5LessThan = value; return this; } public BigDecimal getLastYearMovement5LessThanOrEqualTo() { return LastYearMovement5LessThanOrEqualTo; } public GL_MovementQuery setLastYearMovement5LessThanOrEqualTo(BigDecimal value) { this.LastYearMovement5LessThanOrEqualTo = value; return this; } public BigDecimal getLastYearMovement5NotEqualTo() { return LastYearMovement5NotEqualTo; } public GL_MovementQuery setLastYearMovement5NotEqualTo(BigDecimal value) { this.LastYearMovement5NotEqualTo = value; return this; } public ArrayList getLastYearMovement5Between() { return LastYearMovement5Between; } public GL_MovementQuery setLastYearMovement5Between(ArrayList value) { this.LastYearMovement5Between = value; return this; } public ArrayList getLastYearMovement5In() { return LastYearMovement5In; } public GL_MovementQuery setLastYearMovement5In(ArrayList value) { this.LastYearMovement5In = value; return this; } public BigDecimal getLastYearMovement6() { return LastYearMovement6; } public GL_MovementQuery setLastYearMovement6(BigDecimal value) { this.LastYearMovement6 = value; return this; } public BigDecimal getLastYearMovement6GreaterThanOrEqualTo() { return LastYearMovement6GreaterThanOrEqualTo; } public GL_MovementQuery setLastYearMovement6GreaterThanOrEqualTo(BigDecimal value) { this.LastYearMovement6GreaterThanOrEqualTo = value; return this; } public BigDecimal getLastYearMovement6GreaterThan() { return LastYearMovement6GreaterThan; } public GL_MovementQuery setLastYearMovement6GreaterThan(BigDecimal value) { this.LastYearMovement6GreaterThan = value; return this; } public BigDecimal getLastYearMovement6LessThan() { return LastYearMovement6LessThan; } public GL_MovementQuery setLastYearMovement6LessThan(BigDecimal value) { this.LastYearMovement6LessThan = value; return this; } public BigDecimal getLastYearMovement6LessThanOrEqualTo() { return LastYearMovement6LessThanOrEqualTo; } public GL_MovementQuery setLastYearMovement6LessThanOrEqualTo(BigDecimal value) { this.LastYearMovement6LessThanOrEqualTo = value; return this; } public BigDecimal getLastYearMovement6NotEqualTo() { return LastYearMovement6NotEqualTo; } public GL_MovementQuery setLastYearMovement6NotEqualTo(BigDecimal value) { this.LastYearMovement6NotEqualTo = value; return this; } public ArrayList getLastYearMovement6Between() { return LastYearMovement6Between; } public GL_MovementQuery setLastYearMovement6Between(ArrayList value) { this.LastYearMovement6Between = value; return this; } public ArrayList getLastYearMovement6In() { return LastYearMovement6In; } public GL_MovementQuery setLastYearMovement6In(ArrayList value) { this.LastYearMovement6In = value; return this; } public BigDecimal getLastYearMovement7() { return LastYearMovement7; } public GL_MovementQuery setLastYearMovement7(BigDecimal value) { this.LastYearMovement7 = value; return this; } public BigDecimal getLastYearMovement7GreaterThanOrEqualTo() { return LastYearMovement7GreaterThanOrEqualTo; } public GL_MovementQuery setLastYearMovement7GreaterThanOrEqualTo(BigDecimal value) { this.LastYearMovement7GreaterThanOrEqualTo = value; return this; } public BigDecimal getLastYearMovement7GreaterThan() { return LastYearMovement7GreaterThan; } public GL_MovementQuery setLastYearMovement7GreaterThan(BigDecimal value) { this.LastYearMovement7GreaterThan = value; return this; } public BigDecimal getLastYearMovement7LessThan() { return LastYearMovement7LessThan; } public GL_MovementQuery setLastYearMovement7LessThan(BigDecimal value) { this.LastYearMovement7LessThan = value; return this; } public BigDecimal getLastYearMovement7LessThanOrEqualTo() { return LastYearMovement7LessThanOrEqualTo; } public GL_MovementQuery setLastYearMovement7LessThanOrEqualTo(BigDecimal value) { this.LastYearMovement7LessThanOrEqualTo = value; return this; } public BigDecimal getLastYearMovement7NotEqualTo() { return LastYearMovement7NotEqualTo; } public GL_MovementQuery setLastYearMovement7NotEqualTo(BigDecimal value) { this.LastYearMovement7NotEqualTo = value; return this; } public ArrayList getLastYearMovement7Between() { return LastYearMovement7Between; } public GL_MovementQuery setLastYearMovement7Between(ArrayList value) { this.LastYearMovement7Between = value; return this; } public ArrayList getLastYearMovement7In() { return LastYearMovement7In; } public GL_MovementQuery setLastYearMovement7In(ArrayList value) { this.LastYearMovement7In = value; return this; } public BigDecimal getLastYearMovement8() { return LastYearMovement8; } public GL_MovementQuery setLastYearMovement8(BigDecimal value) { this.LastYearMovement8 = value; return this; } public BigDecimal getLastYearMovement8GreaterThanOrEqualTo() { return LastYearMovement8GreaterThanOrEqualTo; } public GL_MovementQuery setLastYearMovement8GreaterThanOrEqualTo(BigDecimal value) { this.LastYearMovement8GreaterThanOrEqualTo = value; return this; } public BigDecimal getLastYearMovement8GreaterThan() { return LastYearMovement8GreaterThan; } public GL_MovementQuery setLastYearMovement8GreaterThan(BigDecimal value) { this.LastYearMovement8GreaterThan = value; return this; } public BigDecimal getLastYearMovement8LessThan() { return LastYearMovement8LessThan; } public GL_MovementQuery setLastYearMovement8LessThan(BigDecimal value) { this.LastYearMovement8LessThan = value; return this; } public BigDecimal getLastYearMovement8LessThanOrEqualTo() { return LastYearMovement8LessThanOrEqualTo; } public GL_MovementQuery setLastYearMovement8LessThanOrEqualTo(BigDecimal value) { this.LastYearMovement8LessThanOrEqualTo = value; return this; } public BigDecimal getLastYearMovement8NotEqualTo() { return LastYearMovement8NotEqualTo; } public GL_MovementQuery setLastYearMovement8NotEqualTo(BigDecimal value) { this.LastYearMovement8NotEqualTo = value; return this; } public ArrayList getLastYearMovement8Between() { return LastYearMovement8Between; } public GL_MovementQuery setLastYearMovement8Between(ArrayList value) { this.LastYearMovement8Between = value; return this; } public ArrayList getLastYearMovement8In() { return LastYearMovement8In; } public GL_MovementQuery setLastYearMovement8In(ArrayList value) { this.LastYearMovement8In = value; return this; } public BigDecimal getLastYearMovement9() { return LastYearMovement9; } public GL_MovementQuery setLastYearMovement9(BigDecimal value) { this.LastYearMovement9 = value; return this; } public BigDecimal getLastYearMovement9GreaterThanOrEqualTo() { return LastYearMovement9GreaterThanOrEqualTo; } public GL_MovementQuery setLastYearMovement9GreaterThanOrEqualTo(BigDecimal value) { this.LastYearMovement9GreaterThanOrEqualTo = value; return this; } public BigDecimal getLastYearMovement9GreaterThan() { return LastYearMovement9GreaterThan; } public GL_MovementQuery setLastYearMovement9GreaterThan(BigDecimal value) { this.LastYearMovement9GreaterThan = value; return this; } public BigDecimal getLastYearMovement9LessThan() { return LastYearMovement9LessThan; } public GL_MovementQuery setLastYearMovement9LessThan(BigDecimal value) { this.LastYearMovement9LessThan = value; return this; } public BigDecimal getLastYearMovement9LessThanOrEqualTo() { return LastYearMovement9LessThanOrEqualTo; } public GL_MovementQuery setLastYearMovement9LessThanOrEqualTo(BigDecimal value) { this.LastYearMovement9LessThanOrEqualTo = value; return this; } public BigDecimal getLastYearMovement9NotEqualTo() { return LastYearMovement9NotEqualTo; } public GL_MovementQuery setLastYearMovement9NotEqualTo(BigDecimal value) { this.LastYearMovement9NotEqualTo = value; return this; } public ArrayList getLastYearMovement9Between() { return LastYearMovement9Between; } public GL_MovementQuery setLastYearMovement9Between(ArrayList value) { this.LastYearMovement9Between = value; return this; } public ArrayList getLastYearMovement9In() { return LastYearMovement9In; } public GL_MovementQuery setLastYearMovement9In(ArrayList value) { this.LastYearMovement9In = value; return this; } public BigDecimal getLastYearMovement10() { return LastYearMovement10; } public GL_MovementQuery setLastYearMovement10(BigDecimal value) { this.LastYearMovement10 = value; return this; } public BigDecimal getLastYearMovement10GreaterThanOrEqualTo() { return LastYearMovement10GreaterThanOrEqualTo; } public GL_MovementQuery setLastYearMovement10GreaterThanOrEqualTo(BigDecimal value) { this.LastYearMovement10GreaterThanOrEqualTo = value; return this; } public BigDecimal getLastYearMovement10GreaterThan() { return LastYearMovement10GreaterThan; } public GL_MovementQuery setLastYearMovement10GreaterThan(BigDecimal value) { this.LastYearMovement10GreaterThan = value; return this; } public BigDecimal getLastYearMovement10LessThan() { return LastYearMovement10LessThan; } public GL_MovementQuery setLastYearMovement10LessThan(BigDecimal value) { this.LastYearMovement10LessThan = value; return this; } public BigDecimal getLastYearMovement10LessThanOrEqualTo() { return LastYearMovement10LessThanOrEqualTo; } public GL_MovementQuery setLastYearMovement10LessThanOrEqualTo(BigDecimal value) { this.LastYearMovement10LessThanOrEqualTo = value; return this; } public BigDecimal getLastYearMovement10NotEqualTo() { return LastYearMovement10NotEqualTo; } public GL_MovementQuery setLastYearMovement10NotEqualTo(BigDecimal value) { this.LastYearMovement10NotEqualTo = value; return this; } public ArrayList getLastYearMovement10Between() { return LastYearMovement10Between; } public GL_MovementQuery setLastYearMovement10Between(ArrayList value) { this.LastYearMovement10Between = value; return this; } public ArrayList getLastYearMovement10In() { return LastYearMovement10In; } public GL_MovementQuery setLastYearMovement10In(ArrayList value) { this.LastYearMovement10In = value; return this; } public BigDecimal getLastYearMovement11() { return LastYearMovement11; } public GL_MovementQuery setLastYearMovement11(BigDecimal value) { this.LastYearMovement11 = value; return this; } public BigDecimal getLastYearMovement11GreaterThanOrEqualTo() { return LastYearMovement11GreaterThanOrEqualTo; } public GL_MovementQuery setLastYearMovement11GreaterThanOrEqualTo(BigDecimal value) { this.LastYearMovement11GreaterThanOrEqualTo = value; return this; } public BigDecimal getLastYearMovement11GreaterThan() { return LastYearMovement11GreaterThan; } public GL_MovementQuery setLastYearMovement11GreaterThan(BigDecimal value) { this.LastYearMovement11GreaterThan = value; return this; } public BigDecimal getLastYearMovement11LessThan() { return LastYearMovement11LessThan; } public GL_MovementQuery setLastYearMovement11LessThan(BigDecimal value) { this.LastYearMovement11LessThan = value; return this; } public BigDecimal getLastYearMovement11LessThanOrEqualTo() { return LastYearMovement11LessThanOrEqualTo; } public GL_MovementQuery setLastYearMovement11LessThanOrEqualTo(BigDecimal value) { this.LastYearMovement11LessThanOrEqualTo = value; return this; } public BigDecimal getLastYearMovement11NotEqualTo() { return LastYearMovement11NotEqualTo; } public GL_MovementQuery setLastYearMovement11NotEqualTo(BigDecimal value) { this.LastYearMovement11NotEqualTo = value; return this; } public ArrayList getLastYearMovement11Between() { return LastYearMovement11Between; } public GL_MovementQuery setLastYearMovement11Between(ArrayList value) { this.LastYearMovement11Between = value; return this; } public ArrayList getLastYearMovement11In() { return LastYearMovement11In; } public GL_MovementQuery setLastYearMovement11In(ArrayList value) { this.LastYearMovement11In = value; return this; } public BigDecimal getLastYearMovement12() { return LastYearMovement12; } public GL_MovementQuery setLastYearMovement12(BigDecimal value) { this.LastYearMovement12 = value; return this; } public BigDecimal getLastYearMovement12GreaterThanOrEqualTo() { return LastYearMovement12GreaterThanOrEqualTo; } public GL_MovementQuery setLastYearMovement12GreaterThanOrEqualTo(BigDecimal value) { this.LastYearMovement12GreaterThanOrEqualTo = value; return this; } public BigDecimal getLastYearMovement12GreaterThan() { return LastYearMovement12GreaterThan; } public GL_MovementQuery setLastYearMovement12GreaterThan(BigDecimal value) { this.LastYearMovement12GreaterThan = value; return this; } public BigDecimal getLastYearMovement12LessThan() { return LastYearMovement12LessThan; } public GL_MovementQuery setLastYearMovement12LessThan(BigDecimal value) { this.LastYearMovement12LessThan = value; return this; } public BigDecimal getLastYearMovement12LessThanOrEqualTo() { return LastYearMovement12LessThanOrEqualTo; } public GL_MovementQuery setLastYearMovement12LessThanOrEqualTo(BigDecimal value) { this.LastYearMovement12LessThanOrEqualTo = value; return this; } public BigDecimal getLastYearMovement12NotEqualTo() { return LastYearMovement12NotEqualTo; } public GL_MovementQuery setLastYearMovement12NotEqualTo(BigDecimal value) { this.LastYearMovement12NotEqualTo = value; return this; } public ArrayList getLastYearMovement12Between() { return LastYearMovement12Between; } public GL_MovementQuery setLastYearMovement12Between(ArrayList value) { this.LastYearMovement12Between = value; return this; } public ArrayList getLastYearMovement12In() { return LastYearMovement12In; } public GL_MovementQuery setLastYearMovement12In(ArrayList value) { this.LastYearMovement12In = value; return this; } public BigDecimal getCurrYearMovement1() { return CurrYearMovement1; } public GL_MovementQuery setCurrYearMovement1(BigDecimal value) { this.CurrYearMovement1 = value; return this; } public BigDecimal getCurrYearMovement1GreaterThanOrEqualTo() { return CurrYearMovement1GreaterThanOrEqualTo; } public GL_MovementQuery setCurrYearMovement1GreaterThanOrEqualTo(BigDecimal value) { this.CurrYearMovement1GreaterThanOrEqualTo = value; return this; } public BigDecimal getCurrYearMovement1GreaterThan() { return CurrYearMovement1GreaterThan; } public GL_MovementQuery setCurrYearMovement1GreaterThan(BigDecimal value) { this.CurrYearMovement1GreaterThan = value; return this; } public BigDecimal getCurrYearMovement1LessThan() { return CurrYearMovement1LessThan; } public GL_MovementQuery setCurrYearMovement1LessThan(BigDecimal value) { this.CurrYearMovement1LessThan = value; return this; } public BigDecimal getCurrYearMovement1LessThanOrEqualTo() { return CurrYearMovement1LessThanOrEqualTo; } public GL_MovementQuery setCurrYearMovement1LessThanOrEqualTo(BigDecimal value) { this.CurrYearMovement1LessThanOrEqualTo = value; return this; } public BigDecimal getCurrYearMovement1NotEqualTo() { return CurrYearMovement1NotEqualTo; } public GL_MovementQuery setCurrYearMovement1NotEqualTo(BigDecimal value) { this.CurrYearMovement1NotEqualTo = value; return this; } public ArrayList getCurrYearMovement1Between() { return CurrYearMovement1Between; } public GL_MovementQuery setCurrYearMovement1Between(ArrayList value) { this.CurrYearMovement1Between = value; return this; } public ArrayList getCurrYearMovement1In() { return CurrYearMovement1In; } public GL_MovementQuery setCurrYearMovement1In(ArrayList value) { this.CurrYearMovement1In = value; return this; } public BigDecimal getCurrYearMovement2() { return CurrYearMovement2; } public GL_MovementQuery setCurrYearMovement2(BigDecimal value) { this.CurrYearMovement2 = value; return this; } public BigDecimal getCurrYearMovement2GreaterThanOrEqualTo() { return CurrYearMovement2GreaterThanOrEqualTo; } public GL_MovementQuery setCurrYearMovement2GreaterThanOrEqualTo(BigDecimal value) { this.CurrYearMovement2GreaterThanOrEqualTo = value; return this; } public BigDecimal getCurrYearMovement2GreaterThan() { return CurrYearMovement2GreaterThan; } public GL_MovementQuery setCurrYearMovement2GreaterThan(BigDecimal value) { this.CurrYearMovement2GreaterThan = value; return this; } public BigDecimal getCurrYearMovement2LessThan() { return CurrYearMovement2LessThan; } public GL_MovementQuery setCurrYearMovement2LessThan(BigDecimal value) { this.CurrYearMovement2LessThan = value; return this; } public BigDecimal getCurrYearMovement2LessThanOrEqualTo() { return CurrYearMovement2LessThanOrEqualTo; } public GL_MovementQuery setCurrYearMovement2LessThanOrEqualTo(BigDecimal value) { this.CurrYearMovement2LessThanOrEqualTo = value; return this; } public BigDecimal getCurrYearMovement2NotEqualTo() { return CurrYearMovement2NotEqualTo; } public GL_MovementQuery setCurrYearMovement2NotEqualTo(BigDecimal value) { this.CurrYearMovement2NotEqualTo = value; return this; } public ArrayList getCurrYearMovement2Between() { return CurrYearMovement2Between; } public GL_MovementQuery setCurrYearMovement2Between(ArrayList value) { this.CurrYearMovement2Between = value; return this; } public ArrayList getCurrYearMovement2In() { return CurrYearMovement2In; } public GL_MovementQuery setCurrYearMovement2In(ArrayList value) { this.CurrYearMovement2In = value; return this; } public BigDecimal getCurrYearMovement3() { return CurrYearMovement3; } public GL_MovementQuery setCurrYearMovement3(BigDecimal value) { this.CurrYearMovement3 = value; return this; } public BigDecimal getCurrYearMovement3GreaterThanOrEqualTo() { return CurrYearMovement3GreaterThanOrEqualTo; } public GL_MovementQuery setCurrYearMovement3GreaterThanOrEqualTo(BigDecimal value) { this.CurrYearMovement3GreaterThanOrEqualTo = value; return this; } public BigDecimal getCurrYearMovement3GreaterThan() { return CurrYearMovement3GreaterThan; } public GL_MovementQuery setCurrYearMovement3GreaterThan(BigDecimal value) { this.CurrYearMovement3GreaterThan = value; return this; } public BigDecimal getCurrYearMovement3LessThan() { return CurrYearMovement3LessThan; } public GL_MovementQuery setCurrYearMovement3LessThan(BigDecimal value) { this.CurrYearMovement3LessThan = value; return this; } public BigDecimal getCurrYearMovement3LessThanOrEqualTo() { return CurrYearMovement3LessThanOrEqualTo; } public GL_MovementQuery setCurrYearMovement3LessThanOrEqualTo(BigDecimal value) { this.CurrYearMovement3LessThanOrEqualTo = value; return this; } public BigDecimal getCurrYearMovement3NotEqualTo() { return CurrYearMovement3NotEqualTo; } public GL_MovementQuery setCurrYearMovement3NotEqualTo(BigDecimal value) { this.CurrYearMovement3NotEqualTo = value; return this; } public ArrayList getCurrYearMovement3Between() { return CurrYearMovement3Between; } public GL_MovementQuery setCurrYearMovement3Between(ArrayList value) { this.CurrYearMovement3Between = value; return this; } public ArrayList getCurrYearMovement3In() { return CurrYearMovement3In; } public GL_MovementQuery setCurrYearMovement3In(ArrayList value) { this.CurrYearMovement3In = value; return this; } public BigDecimal getCurrYearMovement4() { return CurrYearMovement4; } public GL_MovementQuery setCurrYearMovement4(BigDecimal value) { this.CurrYearMovement4 = value; return this; } public BigDecimal getCurrYearMovement4GreaterThanOrEqualTo() { return CurrYearMovement4GreaterThanOrEqualTo; } public GL_MovementQuery setCurrYearMovement4GreaterThanOrEqualTo(BigDecimal value) { this.CurrYearMovement4GreaterThanOrEqualTo = value; return this; } public BigDecimal getCurrYearMovement4GreaterThan() { return CurrYearMovement4GreaterThan; } public GL_MovementQuery setCurrYearMovement4GreaterThan(BigDecimal value) { this.CurrYearMovement4GreaterThan = value; return this; } public BigDecimal getCurrYearMovement4LessThan() { return CurrYearMovement4LessThan; } public GL_MovementQuery setCurrYearMovement4LessThan(BigDecimal value) { this.CurrYearMovement4LessThan = value; return this; } public BigDecimal getCurrYearMovement4LessThanOrEqualTo() { return CurrYearMovement4LessThanOrEqualTo; } public GL_MovementQuery setCurrYearMovement4LessThanOrEqualTo(BigDecimal value) { this.CurrYearMovement4LessThanOrEqualTo = value; return this; } public BigDecimal getCurrYearMovement4NotEqualTo() { return CurrYearMovement4NotEqualTo; } public GL_MovementQuery setCurrYearMovement4NotEqualTo(BigDecimal value) { this.CurrYearMovement4NotEqualTo = value; return this; } public ArrayList getCurrYearMovement4Between() { return CurrYearMovement4Between; } public GL_MovementQuery setCurrYearMovement4Between(ArrayList value) { this.CurrYearMovement4Between = value; return this; } public ArrayList getCurrYearMovement4In() { return CurrYearMovement4In; } public GL_MovementQuery setCurrYearMovement4In(ArrayList value) { this.CurrYearMovement4In = value; return this; } public BigDecimal getCurrYearMovement5() { return CurrYearMovement5; } public GL_MovementQuery setCurrYearMovement5(BigDecimal value) { this.CurrYearMovement5 = value; return this; } public BigDecimal getCurrYearMovement5GreaterThanOrEqualTo() { return CurrYearMovement5GreaterThanOrEqualTo; } public GL_MovementQuery setCurrYearMovement5GreaterThanOrEqualTo(BigDecimal value) { this.CurrYearMovement5GreaterThanOrEqualTo = value; return this; } public BigDecimal getCurrYearMovement5GreaterThan() { return CurrYearMovement5GreaterThan; } public GL_MovementQuery setCurrYearMovement5GreaterThan(BigDecimal value) { this.CurrYearMovement5GreaterThan = value; return this; } public BigDecimal getCurrYearMovement5LessThan() { return CurrYearMovement5LessThan; } public GL_MovementQuery setCurrYearMovement5LessThan(BigDecimal value) { this.CurrYearMovement5LessThan = value; return this; } public BigDecimal getCurrYearMovement5LessThanOrEqualTo() { return CurrYearMovement5LessThanOrEqualTo; } public GL_MovementQuery setCurrYearMovement5LessThanOrEqualTo(BigDecimal value) { this.CurrYearMovement5LessThanOrEqualTo = value; return this; } public BigDecimal getCurrYearMovement5NotEqualTo() { return CurrYearMovement5NotEqualTo; } public GL_MovementQuery setCurrYearMovement5NotEqualTo(BigDecimal value) { this.CurrYearMovement5NotEqualTo = value; return this; } public ArrayList getCurrYearMovement5Between() { return CurrYearMovement5Between; } public GL_MovementQuery setCurrYearMovement5Between(ArrayList value) { this.CurrYearMovement5Between = value; return this; } public ArrayList getCurrYearMovement5In() { return CurrYearMovement5In; } public GL_MovementQuery setCurrYearMovement5In(ArrayList value) { this.CurrYearMovement5In = value; return this; } public BigDecimal getCurrYearMovement6() { return CurrYearMovement6; } public GL_MovementQuery setCurrYearMovement6(BigDecimal value) { this.CurrYearMovement6 = value; return this; } public BigDecimal getCurrYearMovement6GreaterThanOrEqualTo() { return CurrYearMovement6GreaterThanOrEqualTo; } public GL_MovementQuery setCurrYearMovement6GreaterThanOrEqualTo(BigDecimal value) { this.CurrYearMovement6GreaterThanOrEqualTo = value; return this; } public BigDecimal getCurrYearMovement6GreaterThan() { return CurrYearMovement6GreaterThan; } public GL_MovementQuery setCurrYearMovement6GreaterThan(BigDecimal value) { this.CurrYearMovement6GreaterThan = value; return this; } public BigDecimal getCurrYearMovement6LessThan() { return CurrYearMovement6LessThan; } public GL_MovementQuery setCurrYearMovement6LessThan(BigDecimal value) { this.CurrYearMovement6LessThan = value; return this; } public BigDecimal getCurrYearMovement6LessThanOrEqualTo() { return CurrYearMovement6LessThanOrEqualTo; } public GL_MovementQuery setCurrYearMovement6LessThanOrEqualTo(BigDecimal value) { this.CurrYearMovement6LessThanOrEqualTo = value; return this; } public BigDecimal getCurrYearMovement6NotEqualTo() { return CurrYearMovement6NotEqualTo; } public GL_MovementQuery setCurrYearMovement6NotEqualTo(BigDecimal value) { this.CurrYearMovement6NotEqualTo = value; return this; } public ArrayList getCurrYearMovement6Between() { return CurrYearMovement6Between; } public GL_MovementQuery setCurrYearMovement6Between(ArrayList value) { this.CurrYearMovement6Between = value; return this; } public ArrayList getCurrYearMovement6In() { return CurrYearMovement6In; } public GL_MovementQuery setCurrYearMovement6In(ArrayList value) { this.CurrYearMovement6In = value; return this; } public BigDecimal getCurrYearMovement7() { return CurrYearMovement7; } public GL_MovementQuery setCurrYearMovement7(BigDecimal value) { this.CurrYearMovement7 = value; return this; } public BigDecimal getCurrYearMovement7GreaterThanOrEqualTo() { return CurrYearMovement7GreaterThanOrEqualTo; } public GL_MovementQuery setCurrYearMovement7GreaterThanOrEqualTo(BigDecimal value) { this.CurrYearMovement7GreaterThanOrEqualTo = value; return this; } public BigDecimal getCurrYearMovement7GreaterThan() { return CurrYearMovement7GreaterThan; } public GL_MovementQuery setCurrYearMovement7GreaterThan(BigDecimal value) { this.CurrYearMovement7GreaterThan = value; return this; } public BigDecimal getCurrYearMovement7LessThan() { return CurrYearMovement7LessThan; } public GL_MovementQuery setCurrYearMovement7LessThan(BigDecimal value) { this.CurrYearMovement7LessThan = value; return this; } public BigDecimal getCurrYearMovement7LessThanOrEqualTo() { return CurrYearMovement7LessThanOrEqualTo; } public GL_MovementQuery setCurrYearMovement7LessThanOrEqualTo(BigDecimal value) { this.CurrYearMovement7LessThanOrEqualTo = value; return this; } public BigDecimal getCurrYearMovement7NotEqualTo() { return CurrYearMovement7NotEqualTo; } public GL_MovementQuery setCurrYearMovement7NotEqualTo(BigDecimal value) { this.CurrYearMovement7NotEqualTo = value; return this; } public ArrayList getCurrYearMovement7Between() { return CurrYearMovement7Between; } public GL_MovementQuery setCurrYearMovement7Between(ArrayList value) { this.CurrYearMovement7Between = value; return this; } public ArrayList getCurrYearMovement7In() { return CurrYearMovement7In; } public GL_MovementQuery setCurrYearMovement7In(ArrayList value) { this.CurrYearMovement7In = value; return this; } public BigDecimal getCurrYearMovement8() { return CurrYearMovement8; } public GL_MovementQuery setCurrYearMovement8(BigDecimal value) { this.CurrYearMovement8 = value; return this; } public BigDecimal getCurrYearMovement8GreaterThanOrEqualTo() { return CurrYearMovement8GreaterThanOrEqualTo; } public GL_MovementQuery setCurrYearMovement8GreaterThanOrEqualTo(BigDecimal value) { this.CurrYearMovement8GreaterThanOrEqualTo = value; return this; } public BigDecimal getCurrYearMovement8GreaterThan() { return CurrYearMovement8GreaterThan; } public GL_MovementQuery setCurrYearMovement8GreaterThan(BigDecimal value) { this.CurrYearMovement8GreaterThan = value; return this; } public BigDecimal getCurrYearMovement8LessThan() { return CurrYearMovement8LessThan; } public GL_MovementQuery setCurrYearMovement8LessThan(BigDecimal value) { this.CurrYearMovement8LessThan = value; return this; } public BigDecimal getCurrYearMovement8LessThanOrEqualTo() { return CurrYearMovement8LessThanOrEqualTo; } public GL_MovementQuery setCurrYearMovement8LessThanOrEqualTo(BigDecimal value) { this.CurrYearMovement8LessThanOrEqualTo = value; return this; } public BigDecimal getCurrYearMovement8NotEqualTo() { return CurrYearMovement8NotEqualTo; } public GL_MovementQuery setCurrYearMovement8NotEqualTo(BigDecimal value) { this.CurrYearMovement8NotEqualTo = value; return this; } public ArrayList getCurrYearMovement8Between() { return CurrYearMovement8Between; } public GL_MovementQuery setCurrYearMovement8Between(ArrayList value) { this.CurrYearMovement8Between = value; return this; } public ArrayList getCurrYearMovement8In() { return CurrYearMovement8In; } public GL_MovementQuery setCurrYearMovement8In(ArrayList value) { this.CurrYearMovement8In = value; return this; } public BigDecimal getCurrYearMovement9() { return CurrYearMovement9; } public GL_MovementQuery setCurrYearMovement9(BigDecimal value) { this.CurrYearMovement9 = value; return this; } public BigDecimal getCurrYearMovement9GreaterThanOrEqualTo() { return CurrYearMovement9GreaterThanOrEqualTo; } public GL_MovementQuery setCurrYearMovement9GreaterThanOrEqualTo(BigDecimal value) { this.CurrYearMovement9GreaterThanOrEqualTo = value; return this; } public BigDecimal getCurrYearMovement9GreaterThan() { return CurrYearMovement9GreaterThan; } public GL_MovementQuery setCurrYearMovement9GreaterThan(BigDecimal value) { this.CurrYearMovement9GreaterThan = value; return this; } public BigDecimal getCurrYearMovement9LessThan() { return CurrYearMovement9LessThan; } public GL_MovementQuery setCurrYearMovement9LessThan(BigDecimal value) { this.CurrYearMovement9LessThan = value; return this; } public BigDecimal getCurrYearMovement9LessThanOrEqualTo() { return CurrYearMovement9LessThanOrEqualTo; } public GL_MovementQuery setCurrYearMovement9LessThanOrEqualTo(BigDecimal value) { this.CurrYearMovement9LessThanOrEqualTo = value; return this; } public BigDecimal getCurrYearMovement9NotEqualTo() { return CurrYearMovement9NotEqualTo; } public GL_MovementQuery setCurrYearMovement9NotEqualTo(BigDecimal value) { this.CurrYearMovement9NotEqualTo = value; return this; } public ArrayList getCurrYearMovement9Between() { return CurrYearMovement9Between; } public GL_MovementQuery setCurrYearMovement9Between(ArrayList value) { this.CurrYearMovement9Between = value; return this; } public ArrayList getCurrYearMovement9In() { return CurrYearMovement9In; } public GL_MovementQuery setCurrYearMovement9In(ArrayList value) { this.CurrYearMovement9In = value; return this; } public BigDecimal getCurrYearMovement10() { return CurrYearMovement10; } public GL_MovementQuery setCurrYearMovement10(BigDecimal value) { this.CurrYearMovement10 = value; return this; } public BigDecimal getCurrYearMovement10GreaterThanOrEqualTo() { return CurrYearMovement10GreaterThanOrEqualTo; } public GL_MovementQuery setCurrYearMovement10GreaterThanOrEqualTo(BigDecimal value) { this.CurrYearMovement10GreaterThanOrEqualTo = value; return this; } public BigDecimal getCurrYearMovement10GreaterThan() { return CurrYearMovement10GreaterThan; } public GL_MovementQuery setCurrYearMovement10GreaterThan(BigDecimal value) { this.CurrYearMovement10GreaterThan = value; return this; } public BigDecimal getCurrYearMovement10LessThan() { return CurrYearMovement10LessThan; } public GL_MovementQuery setCurrYearMovement10LessThan(BigDecimal value) { this.CurrYearMovement10LessThan = value; return this; } public BigDecimal getCurrYearMovement10LessThanOrEqualTo() { return CurrYearMovement10LessThanOrEqualTo; } public GL_MovementQuery setCurrYearMovement10LessThanOrEqualTo(BigDecimal value) { this.CurrYearMovement10LessThanOrEqualTo = value; return this; } public BigDecimal getCurrYearMovement10NotEqualTo() { return CurrYearMovement10NotEqualTo; } public GL_MovementQuery setCurrYearMovement10NotEqualTo(BigDecimal value) { this.CurrYearMovement10NotEqualTo = value; return this; } public ArrayList getCurrYearMovement10Between() { return CurrYearMovement10Between; } public GL_MovementQuery setCurrYearMovement10Between(ArrayList value) { this.CurrYearMovement10Between = value; return this; } public ArrayList getCurrYearMovement10In() { return CurrYearMovement10In; } public GL_MovementQuery setCurrYearMovement10In(ArrayList value) { this.CurrYearMovement10In = value; return this; } public BigDecimal getCurrYearMovement11() { return CurrYearMovement11; } public GL_MovementQuery setCurrYearMovement11(BigDecimal value) { this.CurrYearMovement11 = value; return this; } public BigDecimal getCurrYearMovement11GreaterThanOrEqualTo() { return CurrYearMovement11GreaterThanOrEqualTo; } public GL_MovementQuery setCurrYearMovement11GreaterThanOrEqualTo(BigDecimal value) { this.CurrYearMovement11GreaterThanOrEqualTo = value; return this; } public BigDecimal getCurrYearMovement11GreaterThan() { return CurrYearMovement11GreaterThan; } public GL_MovementQuery setCurrYearMovement11GreaterThan(BigDecimal value) { this.CurrYearMovement11GreaterThan = value; return this; } public BigDecimal getCurrYearMovement11LessThan() { return CurrYearMovement11LessThan; } public GL_MovementQuery setCurrYearMovement11LessThan(BigDecimal value) { this.CurrYearMovement11LessThan = value; return this; } public BigDecimal getCurrYearMovement11LessThanOrEqualTo() { return CurrYearMovement11LessThanOrEqualTo; } public GL_MovementQuery setCurrYearMovement11LessThanOrEqualTo(BigDecimal value) { this.CurrYearMovement11LessThanOrEqualTo = value; return this; } public BigDecimal getCurrYearMovement11NotEqualTo() { return CurrYearMovement11NotEqualTo; } public GL_MovementQuery setCurrYearMovement11NotEqualTo(BigDecimal value) { this.CurrYearMovement11NotEqualTo = value; return this; } public ArrayList getCurrYearMovement11Between() { return CurrYearMovement11Between; } public GL_MovementQuery setCurrYearMovement11Between(ArrayList value) { this.CurrYearMovement11Between = value; return this; } public ArrayList getCurrYearMovement11In() { return CurrYearMovement11In; } public GL_MovementQuery setCurrYearMovement11In(ArrayList value) { this.CurrYearMovement11In = value; return this; } public BigDecimal getCurrYearMovement12() { return CurrYearMovement12; } public GL_MovementQuery setCurrYearMovement12(BigDecimal value) { this.CurrYearMovement12 = value; return this; } public BigDecimal getCurrYearMovement12GreaterThanOrEqualTo() { return CurrYearMovement12GreaterThanOrEqualTo; } public GL_MovementQuery setCurrYearMovement12GreaterThanOrEqualTo(BigDecimal value) { this.CurrYearMovement12GreaterThanOrEqualTo = value; return this; } public BigDecimal getCurrYearMovement12GreaterThan() { return CurrYearMovement12GreaterThan; } public GL_MovementQuery setCurrYearMovement12GreaterThan(BigDecimal value) { this.CurrYearMovement12GreaterThan = value; return this; } public BigDecimal getCurrYearMovement12LessThan() { return CurrYearMovement12LessThan; } public GL_MovementQuery setCurrYearMovement12LessThan(BigDecimal value) { this.CurrYearMovement12LessThan = value; return this; } public BigDecimal getCurrYearMovement12LessThanOrEqualTo() { return CurrYearMovement12LessThanOrEqualTo; } public GL_MovementQuery setCurrYearMovement12LessThanOrEqualTo(BigDecimal value) { this.CurrYearMovement12LessThanOrEqualTo = value; return this; } public BigDecimal getCurrYearMovement12NotEqualTo() { return CurrYearMovement12NotEqualTo; } public GL_MovementQuery setCurrYearMovement12NotEqualTo(BigDecimal value) { this.CurrYearMovement12NotEqualTo = value; return this; } public ArrayList getCurrYearMovement12Between() { return CurrYearMovement12Between; } public GL_MovementQuery setCurrYearMovement12Between(ArrayList value) { this.CurrYearMovement12Between = value; return this; } public ArrayList getCurrYearMovement12In() { return CurrYearMovement12In; } public GL_MovementQuery setCurrYearMovement12In(ArrayList value) { this.CurrYearMovement12In = value; return this; } public BigDecimal getNextYearMovement1() { return NextYearMovement1; } public GL_MovementQuery setNextYearMovement1(BigDecimal value) { this.NextYearMovement1 = value; return this; } public BigDecimal getNextYearMovement1GreaterThanOrEqualTo() { return NextYearMovement1GreaterThanOrEqualTo; } public GL_MovementQuery setNextYearMovement1GreaterThanOrEqualTo(BigDecimal value) { this.NextYearMovement1GreaterThanOrEqualTo = value; return this; } public BigDecimal getNextYearMovement1GreaterThan() { return NextYearMovement1GreaterThan; } public GL_MovementQuery setNextYearMovement1GreaterThan(BigDecimal value) { this.NextYearMovement1GreaterThan = value; return this; } public BigDecimal getNextYearMovement1LessThan() { return NextYearMovement1LessThan; } public GL_MovementQuery setNextYearMovement1LessThan(BigDecimal value) { this.NextYearMovement1LessThan = value; return this; } public BigDecimal getNextYearMovement1LessThanOrEqualTo() { return NextYearMovement1LessThanOrEqualTo; } public GL_MovementQuery setNextYearMovement1LessThanOrEqualTo(BigDecimal value) { this.NextYearMovement1LessThanOrEqualTo = value; return this; } public BigDecimal getNextYearMovement1NotEqualTo() { return NextYearMovement1NotEqualTo; } public GL_MovementQuery setNextYearMovement1NotEqualTo(BigDecimal value) { this.NextYearMovement1NotEqualTo = value; return this; } public ArrayList getNextYearMovement1Between() { return NextYearMovement1Between; } public GL_MovementQuery setNextYearMovement1Between(ArrayList value) { this.NextYearMovement1Between = value; return this; } public ArrayList getNextYearMovement1In() { return NextYearMovement1In; } public GL_MovementQuery setNextYearMovement1In(ArrayList value) { this.NextYearMovement1In = value; return this; } public BigDecimal getNextYearMovement2() { return NextYearMovement2; } public GL_MovementQuery setNextYearMovement2(BigDecimal value) { this.NextYearMovement2 = value; return this; } public BigDecimal getNextYearMovement2GreaterThanOrEqualTo() { return NextYearMovement2GreaterThanOrEqualTo; } public GL_MovementQuery setNextYearMovement2GreaterThanOrEqualTo(BigDecimal value) { this.NextYearMovement2GreaterThanOrEqualTo = value; return this; } public BigDecimal getNextYearMovement2GreaterThan() { return NextYearMovement2GreaterThan; } public GL_MovementQuery setNextYearMovement2GreaterThan(BigDecimal value) { this.NextYearMovement2GreaterThan = value; return this; } public BigDecimal getNextYearMovement2LessThan() { return NextYearMovement2LessThan; } public GL_MovementQuery setNextYearMovement2LessThan(BigDecimal value) { this.NextYearMovement2LessThan = value; return this; } public BigDecimal getNextYearMovement2LessThanOrEqualTo() { return NextYearMovement2LessThanOrEqualTo; } public GL_MovementQuery setNextYearMovement2LessThanOrEqualTo(BigDecimal value) { this.NextYearMovement2LessThanOrEqualTo = value; return this; } public BigDecimal getNextYearMovement2NotEqualTo() { return NextYearMovement2NotEqualTo; } public GL_MovementQuery setNextYearMovement2NotEqualTo(BigDecimal value) { this.NextYearMovement2NotEqualTo = value; return this; } public ArrayList getNextYearMovement2Between() { return NextYearMovement2Between; } public GL_MovementQuery setNextYearMovement2Between(ArrayList value) { this.NextYearMovement2Between = value; return this; } public ArrayList getNextYearMovement2In() { return NextYearMovement2In; } public GL_MovementQuery setNextYearMovement2In(ArrayList value) { this.NextYearMovement2In = value; return this; } public BigDecimal getNextYearMovement3() { return NextYearMovement3; } public GL_MovementQuery setNextYearMovement3(BigDecimal value) { this.NextYearMovement3 = value; return this; } public BigDecimal getNextYearMovement3GreaterThanOrEqualTo() { return NextYearMovement3GreaterThanOrEqualTo; } public GL_MovementQuery setNextYearMovement3GreaterThanOrEqualTo(BigDecimal value) { this.NextYearMovement3GreaterThanOrEqualTo = value; return this; } public BigDecimal getNextYearMovement3GreaterThan() { return NextYearMovement3GreaterThan; } public GL_MovementQuery setNextYearMovement3GreaterThan(BigDecimal value) { this.NextYearMovement3GreaterThan = value; return this; } public BigDecimal getNextYearMovement3LessThan() { return NextYearMovement3LessThan; } public GL_MovementQuery setNextYearMovement3LessThan(BigDecimal value) { this.NextYearMovement3LessThan = value; return this; } public BigDecimal getNextYearMovement3LessThanOrEqualTo() { return NextYearMovement3LessThanOrEqualTo; } public GL_MovementQuery setNextYearMovement3LessThanOrEqualTo(BigDecimal value) { this.NextYearMovement3LessThanOrEqualTo = value; return this; } public BigDecimal getNextYearMovement3NotEqualTo() { return NextYearMovement3NotEqualTo; } public GL_MovementQuery setNextYearMovement3NotEqualTo(BigDecimal value) { this.NextYearMovement3NotEqualTo = value; return this; } public ArrayList getNextYearMovement3Between() { return NextYearMovement3Between; } public GL_MovementQuery setNextYearMovement3Between(ArrayList value) { this.NextYearMovement3Between = value; return this; } public ArrayList getNextYearMovement3In() { return NextYearMovement3In; } public GL_MovementQuery setNextYearMovement3In(ArrayList value) { this.NextYearMovement3In = value; return this; } public BigDecimal getNextYearMovement4() { return NextYearMovement4; } public GL_MovementQuery setNextYearMovement4(BigDecimal value) { this.NextYearMovement4 = value; return this; } public BigDecimal getNextYearMovement4GreaterThanOrEqualTo() { return NextYearMovement4GreaterThanOrEqualTo; } public GL_MovementQuery setNextYearMovement4GreaterThanOrEqualTo(BigDecimal value) { this.NextYearMovement4GreaterThanOrEqualTo = value; return this; } public BigDecimal getNextYearMovement4GreaterThan() { return NextYearMovement4GreaterThan; } public GL_MovementQuery setNextYearMovement4GreaterThan(BigDecimal value) { this.NextYearMovement4GreaterThan = value; return this; } public BigDecimal getNextYearMovement4LessThan() { return NextYearMovement4LessThan; } public GL_MovementQuery setNextYearMovement4LessThan(BigDecimal value) { this.NextYearMovement4LessThan = value; return this; } public BigDecimal getNextYearMovement4LessThanOrEqualTo() { return NextYearMovement4LessThanOrEqualTo; } public GL_MovementQuery setNextYearMovement4LessThanOrEqualTo(BigDecimal value) { this.NextYearMovement4LessThanOrEqualTo = value; return this; } public BigDecimal getNextYearMovement4NotEqualTo() { return NextYearMovement4NotEqualTo; } public GL_MovementQuery setNextYearMovement4NotEqualTo(BigDecimal value) { this.NextYearMovement4NotEqualTo = value; return this; } public ArrayList getNextYearMovement4Between() { return NextYearMovement4Between; } public GL_MovementQuery setNextYearMovement4Between(ArrayList value) { this.NextYearMovement4Between = value; return this; } public ArrayList getNextYearMovement4In() { return NextYearMovement4In; } public GL_MovementQuery setNextYearMovement4In(ArrayList value) { this.NextYearMovement4In = value; return this; } public BigDecimal getNextYearMovement5() { return NextYearMovement5; } public GL_MovementQuery setNextYearMovement5(BigDecimal value) { this.NextYearMovement5 = value; return this; } public BigDecimal getNextYearMovement5GreaterThanOrEqualTo() { return NextYearMovement5GreaterThanOrEqualTo; } public GL_MovementQuery setNextYearMovement5GreaterThanOrEqualTo(BigDecimal value) { this.NextYearMovement5GreaterThanOrEqualTo = value; return this; } public BigDecimal getNextYearMovement5GreaterThan() { return NextYearMovement5GreaterThan; } public GL_MovementQuery setNextYearMovement5GreaterThan(BigDecimal value) { this.NextYearMovement5GreaterThan = value; return this; } public BigDecimal getNextYearMovement5LessThan() { return NextYearMovement5LessThan; } public GL_MovementQuery setNextYearMovement5LessThan(BigDecimal value) { this.NextYearMovement5LessThan = value; return this; } public BigDecimal getNextYearMovement5LessThanOrEqualTo() { return NextYearMovement5LessThanOrEqualTo; } public GL_MovementQuery setNextYearMovement5LessThanOrEqualTo(BigDecimal value) { this.NextYearMovement5LessThanOrEqualTo = value; return this; } public BigDecimal getNextYearMovement5NotEqualTo() { return NextYearMovement5NotEqualTo; } public GL_MovementQuery setNextYearMovement5NotEqualTo(BigDecimal value) { this.NextYearMovement5NotEqualTo = value; return this; } public ArrayList getNextYearMovement5Between() { return NextYearMovement5Between; } public GL_MovementQuery setNextYearMovement5Between(ArrayList value) { this.NextYearMovement5Between = value; return this; } public ArrayList getNextYearMovement5In() { return NextYearMovement5In; } public GL_MovementQuery setNextYearMovement5In(ArrayList value) { this.NextYearMovement5In = value; return this; } public BigDecimal getNextYearMovement6() { return NextYearMovement6; } public GL_MovementQuery setNextYearMovement6(BigDecimal value) { this.NextYearMovement6 = value; return this; } public BigDecimal getNextYearMovement6GreaterThanOrEqualTo() { return NextYearMovement6GreaterThanOrEqualTo; } public GL_MovementQuery setNextYearMovement6GreaterThanOrEqualTo(BigDecimal value) { this.NextYearMovement6GreaterThanOrEqualTo = value; return this; } public BigDecimal getNextYearMovement6GreaterThan() { return NextYearMovement6GreaterThan; } public GL_MovementQuery setNextYearMovement6GreaterThan(BigDecimal value) { this.NextYearMovement6GreaterThan = value; return this; } public BigDecimal getNextYearMovement6LessThan() { return NextYearMovement6LessThan; } public GL_MovementQuery setNextYearMovement6LessThan(BigDecimal value) { this.NextYearMovement6LessThan = value; return this; } public BigDecimal getNextYearMovement6LessThanOrEqualTo() { return NextYearMovement6LessThanOrEqualTo; } public GL_MovementQuery setNextYearMovement6LessThanOrEqualTo(BigDecimal value) { this.NextYearMovement6LessThanOrEqualTo = value; return this; } public BigDecimal getNextYearMovement6NotEqualTo() { return NextYearMovement6NotEqualTo; } public GL_MovementQuery setNextYearMovement6NotEqualTo(BigDecimal value) { this.NextYearMovement6NotEqualTo = value; return this; } public ArrayList getNextYearMovement6Between() { return NextYearMovement6Between; } public GL_MovementQuery setNextYearMovement6Between(ArrayList value) { this.NextYearMovement6Between = value; return this; } public ArrayList getNextYearMovement6In() { return NextYearMovement6In; } public GL_MovementQuery setNextYearMovement6In(ArrayList value) { this.NextYearMovement6In = value; return this; } public BigDecimal getNextYearMovement7() { return NextYearMovement7; } public GL_MovementQuery setNextYearMovement7(BigDecimal value) { this.NextYearMovement7 = value; return this; } public BigDecimal getNextYearMovement7GreaterThanOrEqualTo() { return NextYearMovement7GreaterThanOrEqualTo; } public GL_MovementQuery setNextYearMovement7GreaterThanOrEqualTo(BigDecimal value) { this.NextYearMovement7GreaterThanOrEqualTo = value; return this; } public BigDecimal getNextYearMovement7GreaterThan() { return NextYearMovement7GreaterThan; } public GL_MovementQuery setNextYearMovement7GreaterThan(BigDecimal value) { this.NextYearMovement7GreaterThan = value; return this; } public BigDecimal getNextYearMovement7LessThan() { return NextYearMovement7LessThan; } public GL_MovementQuery setNextYearMovement7LessThan(BigDecimal value) { this.NextYearMovement7LessThan = value; return this; } public BigDecimal getNextYearMovement7LessThanOrEqualTo() { return NextYearMovement7LessThanOrEqualTo; } public GL_MovementQuery setNextYearMovement7LessThanOrEqualTo(BigDecimal value) { this.NextYearMovement7LessThanOrEqualTo = value; return this; } public BigDecimal getNextYearMovement7NotEqualTo() { return NextYearMovement7NotEqualTo; } public GL_MovementQuery setNextYearMovement7NotEqualTo(BigDecimal value) { this.NextYearMovement7NotEqualTo = value; return this; } public ArrayList getNextYearMovement7Between() { return NextYearMovement7Between; } public GL_MovementQuery setNextYearMovement7Between(ArrayList value) { this.NextYearMovement7Between = value; return this; } public ArrayList getNextYearMovement7In() { return NextYearMovement7In; } public GL_MovementQuery setNextYearMovement7In(ArrayList value) { this.NextYearMovement7In = value; return this; } public BigDecimal getNextYearMovement8() { return NextYearMovement8; } public GL_MovementQuery setNextYearMovement8(BigDecimal value) { this.NextYearMovement8 = value; return this; } public BigDecimal getNextYearMovement8GreaterThanOrEqualTo() { return NextYearMovement8GreaterThanOrEqualTo; } public GL_MovementQuery setNextYearMovement8GreaterThanOrEqualTo(BigDecimal value) { this.NextYearMovement8GreaterThanOrEqualTo = value; return this; } public BigDecimal getNextYearMovement8GreaterThan() { return NextYearMovement8GreaterThan; } public GL_MovementQuery setNextYearMovement8GreaterThan(BigDecimal value) { this.NextYearMovement8GreaterThan = value; return this; } public BigDecimal getNextYearMovement8LessThan() { return NextYearMovement8LessThan; } public GL_MovementQuery setNextYearMovement8LessThan(BigDecimal value) { this.NextYearMovement8LessThan = value; return this; } public BigDecimal getNextYearMovement8LessThanOrEqualTo() { return NextYearMovement8LessThanOrEqualTo; } public GL_MovementQuery setNextYearMovement8LessThanOrEqualTo(BigDecimal value) { this.NextYearMovement8LessThanOrEqualTo = value; return this; } public BigDecimal getNextYearMovement8NotEqualTo() { return NextYearMovement8NotEqualTo; } public GL_MovementQuery setNextYearMovement8NotEqualTo(BigDecimal value) { this.NextYearMovement8NotEqualTo = value; return this; } public ArrayList getNextYearMovement8Between() { return NextYearMovement8Between; } public GL_MovementQuery setNextYearMovement8Between(ArrayList value) { this.NextYearMovement8Between = value; return this; } public ArrayList getNextYearMovement8In() { return NextYearMovement8In; } public GL_MovementQuery setNextYearMovement8In(ArrayList value) { this.NextYearMovement8In = value; return this; } public BigDecimal getNextYearMovement9() { return NextYearMovement9; } public GL_MovementQuery setNextYearMovement9(BigDecimal value) { this.NextYearMovement9 = value; return this; } public BigDecimal getNextYearMovement9GreaterThanOrEqualTo() { return NextYearMovement9GreaterThanOrEqualTo; } public GL_MovementQuery setNextYearMovement9GreaterThanOrEqualTo(BigDecimal value) { this.NextYearMovement9GreaterThanOrEqualTo = value; return this; } public BigDecimal getNextYearMovement9GreaterThan() { return NextYearMovement9GreaterThan; } public GL_MovementQuery setNextYearMovement9GreaterThan(BigDecimal value) { this.NextYearMovement9GreaterThan = value; return this; } public BigDecimal getNextYearMovement9LessThan() { return NextYearMovement9LessThan; } public GL_MovementQuery setNextYearMovement9LessThan(BigDecimal value) { this.NextYearMovement9LessThan = value; return this; } public BigDecimal getNextYearMovement9LessThanOrEqualTo() { return NextYearMovement9LessThanOrEqualTo; } public GL_MovementQuery setNextYearMovement9LessThanOrEqualTo(BigDecimal value) { this.NextYearMovement9LessThanOrEqualTo = value; return this; } public BigDecimal getNextYearMovement9NotEqualTo() { return NextYearMovement9NotEqualTo; } public GL_MovementQuery setNextYearMovement9NotEqualTo(BigDecimal value) { this.NextYearMovement9NotEqualTo = value; return this; } public ArrayList getNextYearMovement9Between() { return NextYearMovement9Between; } public GL_MovementQuery setNextYearMovement9Between(ArrayList value) { this.NextYearMovement9Between = value; return this; } public ArrayList getNextYearMovement9In() { return NextYearMovement9In; } public GL_MovementQuery setNextYearMovement9In(ArrayList value) { this.NextYearMovement9In = value; return this; } public BigDecimal getNextYearMovement10() { return NextYearMovement10; } public GL_MovementQuery setNextYearMovement10(BigDecimal value) { this.NextYearMovement10 = value; return this; } public BigDecimal getNextYearMovement10GreaterThanOrEqualTo() { return NextYearMovement10GreaterThanOrEqualTo; } public GL_MovementQuery setNextYearMovement10GreaterThanOrEqualTo(BigDecimal value) { this.NextYearMovement10GreaterThanOrEqualTo = value; return this; } public BigDecimal getNextYearMovement10GreaterThan() { return NextYearMovement10GreaterThan; } public GL_MovementQuery setNextYearMovement10GreaterThan(BigDecimal value) { this.NextYearMovement10GreaterThan = value; return this; } public BigDecimal getNextYearMovement10LessThan() { return NextYearMovement10LessThan; } public GL_MovementQuery setNextYearMovement10LessThan(BigDecimal value) { this.NextYearMovement10LessThan = value; return this; } public BigDecimal getNextYearMovement10LessThanOrEqualTo() { return NextYearMovement10LessThanOrEqualTo; } public GL_MovementQuery setNextYearMovement10LessThanOrEqualTo(BigDecimal value) { this.NextYearMovement10LessThanOrEqualTo = value; return this; } public BigDecimal getNextYearMovement10NotEqualTo() { return NextYearMovement10NotEqualTo; } public GL_MovementQuery setNextYearMovement10NotEqualTo(BigDecimal value) { this.NextYearMovement10NotEqualTo = value; return this; } public ArrayList getNextYearMovement10Between() { return NextYearMovement10Between; } public GL_MovementQuery setNextYearMovement10Between(ArrayList value) { this.NextYearMovement10Between = value; return this; } public ArrayList getNextYearMovement10In() { return NextYearMovement10In; } public GL_MovementQuery setNextYearMovement10In(ArrayList value) { this.NextYearMovement10In = value; return this; } public BigDecimal getNextYearMovement11() { return NextYearMovement11; } public GL_MovementQuery setNextYearMovement11(BigDecimal value) { this.NextYearMovement11 = value; return this; } public BigDecimal getNextYearMovement11GreaterThanOrEqualTo() { return NextYearMovement11GreaterThanOrEqualTo; } public GL_MovementQuery setNextYearMovement11GreaterThanOrEqualTo(BigDecimal value) { this.NextYearMovement11GreaterThanOrEqualTo = value; return this; } public BigDecimal getNextYearMovement11GreaterThan() { return NextYearMovement11GreaterThan; } public GL_MovementQuery setNextYearMovement11GreaterThan(BigDecimal value) { this.NextYearMovement11GreaterThan = value; return this; } public BigDecimal getNextYearMovement11LessThan() { return NextYearMovement11LessThan; } public GL_MovementQuery setNextYearMovement11LessThan(BigDecimal value) { this.NextYearMovement11LessThan = value; return this; } public BigDecimal getNextYearMovement11LessThanOrEqualTo() { return NextYearMovement11LessThanOrEqualTo; } public GL_MovementQuery setNextYearMovement11LessThanOrEqualTo(BigDecimal value) { this.NextYearMovement11LessThanOrEqualTo = value; return this; } public BigDecimal getNextYearMovement11NotEqualTo() { return NextYearMovement11NotEqualTo; } public GL_MovementQuery setNextYearMovement11NotEqualTo(BigDecimal value) { this.NextYearMovement11NotEqualTo = value; return this; } public ArrayList getNextYearMovement11Between() { return NextYearMovement11Between; } public GL_MovementQuery setNextYearMovement11Between(ArrayList value) { this.NextYearMovement11Between = value; return this; } public ArrayList getNextYearMovement11In() { return NextYearMovement11In; } public GL_MovementQuery setNextYearMovement11In(ArrayList value) { this.NextYearMovement11In = value; return this; } public BigDecimal getNextYearMovement12() { return NextYearMovement12; } public GL_MovementQuery setNextYearMovement12(BigDecimal value) { this.NextYearMovement12 = value; return this; } public BigDecimal getNextYearMovement12GreaterThanOrEqualTo() { return NextYearMovement12GreaterThanOrEqualTo; } public GL_MovementQuery setNextYearMovement12GreaterThanOrEqualTo(BigDecimal value) { this.NextYearMovement12GreaterThanOrEqualTo = value; return this; } public BigDecimal getNextYearMovement12GreaterThan() { return NextYearMovement12GreaterThan; } public GL_MovementQuery setNextYearMovement12GreaterThan(BigDecimal value) { this.NextYearMovement12GreaterThan = value; return this; } public BigDecimal getNextYearMovement12LessThan() { return NextYearMovement12LessThan; } public GL_MovementQuery setNextYearMovement12LessThan(BigDecimal value) { this.NextYearMovement12LessThan = value; return this; } public BigDecimal getNextYearMovement12LessThanOrEqualTo() { return NextYearMovement12LessThanOrEqualTo; } public GL_MovementQuery setNextYearMovement12LessThanOrEqualTo(BigDecimal value) { this.NextYearMovement12LessThanOrEqualTo = value; return this; } public BigDecimal getNextYearMovement12NotEqualTo() { return NextYearMovement12NotEqualTo; } public GL_MovementQuery setNextYearMovement12NotEqualTo(BigDecimal value) { this.NextYearMovement12NotEqualTo = value; return this; } public ArrayList getNextYearMovement12Between() { return NextYearMovement12Between; } public GL_MovementQuery setNextYearMovement12Between(ArrayList value) { this.NextYearMovement12Between = value; return this; } public ArrayList getNextYearMovement12In() { return NextYearMovement12In; } public GL_MovementQuery setNextYearMovement12In(ArrayList value) { this.NextYearMovement12In = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class GL_NotesQuery extends QueryDb implements IReturn> { public String RecID = null; public String RecIDStartsWith = null; public String RecIDEndsWith = null; public String RecIDContains = null; public String RecIDLike = null; public ArrayList RecIDBetween = null; public ArrayList RecIDIn = null; public String GL_Sets_RecID = null; public String GL_Sets_RecIDStartsWith = null; public String GL_Sets_RecIDEndsWith = null; public String GL_Sets_RecIDContains = null; public String GL_Sets_RecIDLike = null; public ArrayList GL_Sets_RecIDBetween = null; public ArrayList GL_Sets_RecIDIn = null; public String NoteTypeID = null; public String NoteTypeIDStartsWith = null; public String NoteTypeIDEndsWith = null; public String NoteTypeIDContains = null; public String NoteTypeIDLike = null; public ArrayList NoteTypeIDBetween = null; public ArrayList NoteTypeIDIn = null; public Date LastSavedDateTime = null; public Date LastSavedDateTimeGreaterThanOrEqualTo = null; public Date LastSavedDateTimeGreaterThan = null; public Date LastSavedDateTimeLessThan = null; public Date LastSavedDateTimeLessThanOrEqualTo = null; public Date LastSavedDateTimeNotEqualTo = null; public ArrayList LastSavedDateTimeBetween = null; public ArrayList LastSavedDateTimeIn = null; public String LastSavedByStaffID = null; public String LastSavedByStaffIDStartsWith = null; public String LastSavedByStaffIDEndsWith = null; public String LastSavedByStaffIDContains = null; public String LastSavedByStaffIDLike = null; public ArrayList LastSavedByStaffIDBetween = null; public ArrayList LastSavedByStaffIDIn = null; public String NoteText = null; public String NoteTextStartsWith = null; public String NoteTextEndsWith = null; public String NoteTextContains = null; public String NoteTextLike = null; public ArrayList NoteTextBetween = null; public ArrayList NoteTextIn = null; public Integer ItemNo = null; public Integer ItemNoGreaterThanOrEqualTo = null; public Integer ItemNoGreaterThan = null; public Integer ItemNoLessThan = null; public Integer ItemNoLessThanOrEqualTo = null; public Integer ItemNoNotEqualTo = null; public ArrayList ItemNoBetween = null; public ArrayList ItemNoIn = null; public String getRecID() { return RecID; } public GL_NotesQuery setRecID(String value) { this.RecID = value; return this; } public String getRecIDStartsWith() { return RecIDStartsWith; } public GL_NotesQuery setRecIDStartsWith(String value) { this.RecIDStartsWith = value; return this; } public String getRecIDEndsWith() { return RecIDEndsWith; } public GL_NotesQuery setRecIDEndsWith(String value) { this.RecIDEndsWith = value; return this; } public String getRecIDContains() { return RecIDContains; } public GL_NotesQuery setRecIDContains(String value) { this.RecIDContains = value; return this; } public String getRecIDLike() { return RecIDLike; } public GL_NotesQuery setRecIDLike(String value) { this.RecIDLike = value; return this; } public ArrayList getRecIDBetween() { return RecIDBetween; } public GL_NotesQuery setRecIDBetween(ArrayList value) { this.RecIDBetween = value; return this; } public ArrayList getRecIDIn() { return RecIDIn; } public GL_NotesQuery setRecIDIn(ArrayList value) { this.RecIDIn = value; return this; } public String getGlSetsRecID() { return GL_Sets_RecID; } public GL_NotesQuery setGlSetsRecID(String value) { this.GL_Sets_RecID = value; return this; } public String getGlSetsRecIDStartsWith() { return GL_Sets_RecIDStartsWith; } public GL_NotesQuery setGlSetsRecIDStartsWith(String value) { this.GL_Sets_RecIDStartsWith = value; return this; } public String getGlSetsRecIDEndsWith() { return GL_Sets_RecIDEndsWith; } public GL_NotesQuery setGlSetsRecIDEndsWith(String value) { this.GL_Sets_RecIDEndsWith = value; return this; } public String getGlSetsRecIDContains() { return GL_Sets_RecIDContains; } public GL_NotesQuery setGlSetsRecIDContains(String value) { this.GL_Sets_RecIDContains = value; return this; } public String getGlSetsRecIDLike() { return GL_Sets_RecIDLike; } public GL_NotesQuery setGlSetsRecIDLike(String value) { this.GL_Sets_RecIDLike = value; return this; } public ArrayList getGlSetsRecIDBetween() { return GL_Sets_RecIDBetween; } public GL_NotesQuery setGlSetsRecIDBetween(ArrayList value) { this.GL_Sets_RecIDBetween = value; return this; } public ArrayList getGlSetsRecIDIn() { return GL_Sets_RecIDIn; } public GL_NotesQuery setGlSetsRecIDIn(ArrayList value) { this.GL_Sets_RecIDIn = value; return this; } public String getNoteTypeID() { return NoteTypeID; } public GL_NotesQuery setNoteTypeID(String value) { this.NoteTypeID = value; return this; } public String getNoteTypeIDStartsWith() { return NoteTypeIDStartsWith; } public GL_NotesQuery setNoteTypeIDStartsWith(String value) { this.NoteTypeIDStartsWith = value; return this; } public String getNoteTypeIDEndsWith() { return NoteTypeIDEndsWith; } public GL_NotesQuery setNoteTypeIDEndsWith(String value) { this.NoteTypeIDEndsWith = value; return this; } public String getNoteTypeIDContains() { return NoteTypeIDContains; } public GL_NotesQuery setNoteTypeIDContains(String value) { this.NoteTypeIDContains = value; return this; } public String getNoteTypeIDLike() { return NoteTypeIDLike; } public GL_NotesQuery setNoteTypeIDLike(String value) { this.NoteTypeIDLike = value; return this; } public ArrayList getNoteTypeIDBetween() { return NoteTypeIDBetween; } public GL_NotesQuery setNoteTypeIDBetween(ArrayList value) { this.NoteTypeIDBetween = value; return this; } public ArrayList getNoteTypeIDIn() { return NoteTypeIDIn; } public GL_NotesQuery setNoteTypeIDIn(ArrayList value) { this.NoteTypeIDIn = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public GL_NotesQuery setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getLastSavedDateTimeGreaterThanOrEqualTo() { return LastSavedDateTimeGreaterThanOrEqualTo; } public GL_NotesQuery setLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.LastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeGreaterThan() { return LastSavedDateTimeGreaterThan; } public GL_NotesQuery setLastSavedDateTimeGreaterThan(Date value) { this.LastSavedDateTimeGreaterThan = value; return this; } public Date getLastSavedDateTimeLessThan() { return LastSavedDateTimeLessThan; } public GL_NotesQuery setLastSavedDateTimeLessThan(Date value) { this.LastSavedDateTimeLessThan = value; return this; } public Date getLastSavedDateTimeLessThanOrEqualTo() { return LastSavedDateTimeLessThanOrEqualTo; } public GL_NotesQuery setLastSavedDateTimeLessThanOrEqualTo(Date value) { this.LastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeNotEqualTo() { return LastSavedDateTimeNotEqualTo; } public GL_NotesQuery setLastSavedDateTimeNotEqualTo(Date value) { this.LastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getLastSavedDateTimeBetween() { return LastSavedDateTimeBetween; } public GL_NotesQuery setLastSavedDateTimeBetween(ArrayList value) { this.LastSavedDateTimeBetween = value; return this; } public ArrayList getLastSavedDateTimeIn() { return LastSavedDateTimeIn; } public GL_NotesQuery setLastSavedDateTimeIn(ArrayList value) { this.LastSavedDateTimeIn = value; return this; } public String getLastSavedByStaffID() { return LastSavedByStaffID; } public GL_NotesQuery setLastSavedByStaffID(String value) { this.LastSavedByStaffID = value; return this; } public String getLastSavedByStaffIDStartsWith() { return LastSavedByStaffIDStartsWith; } public GL_NotesQuery setLastSavedByStaffIDStartsWith(String value) { this.LastSavedByStaffIDStartsWith = value; return this; } public String getLastSavedByStaffIDEndsWith() { return LastSavedByStaffIDEndsWith; } public GL_NotesQuery setLastSavedByStaffIDEndsWith(String value) { this.LastSavedByStaffIDEndsWith = value; return this; } public String getLastSavedByStaffIDContains() { return LastSavedByStaffIDContains; } public GL_NotesQuery setLastSavedByStaffIDContains(String value) { this.LastSavedByStaffIDContains = value; return this; } public String getLastSavedByStaffIDLike() { return LastSavedByStaffIDLike; } public GL_NotesQuery setLastSavedByStaffIDLike(String value) { this.LastSavedByStaffIDLike = value; return this; } public ArrayList getLastSavedByStaffIDBetween() { return LastSavedByStaffIDBetween; } public GL_NotesQuery setLastSavedByStaffIDBetween(ArrayList value) { this.LastSavedByStaffIDBetween = value; return this; } public ArrayList getLastSavedByStaffIDIn() { return LastSavedByStaffIDIn; } public GL_NotesQuery setLastSavedByStaffIDIn(ArrayList value) { this.LastSavedByStaffIDIn = value; return this; } public String getNoteText() { return NoteText; } public GL_NotesQuery setNoteText(String value) { this.NoteText = value; return this; } public String getNoteTextStartsWith() { return NoteTextStartsWith; } public GL_NotesQuery setNoteTextStartsWith(String value) { this.NoteTextStartsWith = value; return this; } public String getNoteTextEndsWith() { return NoteTextEndsWith; } public GL_NotesQuery setNoteTextEndsWith(String value) { this.NoteTextEndsWith = value; return this; } public String getNoteTextContains() { return NoteTextContains; } public GL_NotesQuery setNoteTextContains(String value) { this.NoteTextContains = value; return this; } public String getNoteTextLike() { return NoteTextLike; } public GL_NotesQuery setNoteTextLike(String value) { this.NoteTextLike = value; return this; } public ArrayList getNoteTextBetween() { return NoteTextBetween; } public GL_NotesQuery setNoteTextBetween(ArrayList value) { this.NoteTextBetween = value; return this; } public ArrayList getNoteTextIn() { return NoteTextIn; } public GL_NotesQuery setNoteTextIn(ArrayList value) { this.NoteTextIn = value; return this; } public Integer getItemNo() { return ItemNo; } public GL_NotesQuery setItemNo(Integer value) { this.ItemNo = value; return this; } public Integer getItemNoGreaterThanOrEqualTo() { return ItemNoGreaterThanOrEqualTo; } public GL_NotesQuery setItemNoGreaterThanOrEqualTo(Integer value) { this.ItemNoGreaterThanOrEqualTo = value; return this; } public Integer getItemNoGreaterThan() { return ItemNoGreaterThan; } public GL_NotesQuery setItemNoGreaterThan(Integer value) { this.ItemNoGreaterThan = value; return this; } public Integer getItemNoLessThan() { return ItemNoLessThan; } public GL_NotesQuery setItemNoLessThan(Integer value) { this.ItemNoLessThan = value; return this; } public Integer getItemNoLessThanOrEqualTo() { return ItemNoLessThanOrEqualTo; } public GL_NotesQuery setItemNoLessThanOrEqualTo(Integer value) { this.ItemNoLessThanOrEqualTo = value; return this; } public Integer getItemNoNotEqualTo() { return ItemNoNotEqualTo; } public GL_NotesQuery setItemNoNotEqualTo(Integer value) { this.ItemNoNotEqualTo = value; return this; } public ArrayList getItemNoBetween() { return ItemNoBetween; } public GL_NotesQuery setItemNoBetween(ArrayList value) { this.ItemNoBetween = value; return this; } public ArrayList getItemNoIn() { return ItemNoIn; } public GL_NotesQuery setItemNoIn(ArrayList value) { this.ItemNoIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class GL_SegmentConfigurationQuery extends QueryDb implements IReturn> { public String RecID = null; public String RecIDStartsWith = null; public String RecIDEndsWith = null; public String RecIDContains = null; public String RecIDLike = null; public ArrayList RecIDBetween = null; public ArrayList RecIDIn = null; public Short SegmentNo = null; public Short SegmentNoGreaterThanOrEqualTo = null; public Short SegmentNoGreaterThan = null; public Short SegmentNoLessThan = null; public Short SegmentNoLessThanOrEqualTo = null; public Short SegmentNoNotEqualTo = null; public ArrayList SegmentNoBetween = null; public ArrayList SegmentNoIn = null; public String Name = null; public String NameStartsWith = null; public String NameEndsWith = null; public String NameContains = null; public String NameLike = null; public ArrayList NameBetween = null; public ArrayList NameIn = null; public Short SegmentLength = null; public Short SegmentLengthGreaterThanOrEqualTo = null; public Short SegmentLengthGreaterThan = null; public Short SegmentLengthLessThan = null; public Short SegmentLengthLessThanOrEqualTo = null; public Short SegmentLengthNotEqualTo = null; public ArrayList SegmentLengthBetween = null; public ArrayList SegmentLengthIn = null; public Short SegmentType = null; public Short SegmentTypeGreaterThanOrEqualTo = null; public Short SegmentTypeGreaterThan = null; public Short SegmentTypeLessThan = null; public Short SegmentTypeLessThanOrEqualTo = null; public Short SegmentTypeNotEqualTo = null; public ArrayList SegmentTypeBetween = null; public ArrayList SegmentTypeIn = null; public ArrayList RowHash = null; public String getRecID() { return RecID; } public GL_SegmentConfigurationQuery setRecID(String value) { this.RecID = value; return this; } public String getRecIDStartsWith() { return RecIDStartsWith; } public GL_SegmentConfigurationQuery setRecIDStartsWith(String value) { this.RecIDStartsWith = value; return this; } public String getRecIDEndsWith() { return RecIDEndsWith; } public GL_SegmentConfigurationQuery setRecIDEndsWith(String value) { this.RecIDEndsWith = value; return this; } public String getRecIDContains() { return RecIDContains; } public GL_SegmentConfigurationQuery setRecIDContains(String value) { this.RecIDContains = value; return this; } public String getRecIDLike() { return RecIDLike; } public GL_SegmentConfigurationQuery setRecIDLike(String value) { this.RecIDLike = value; return this; } public ArrayList getRecIDBetween() { return RecIDBetween; } public GL_SegmentConfigurationQuery setRecIDBetween(ArrayList value) { this.RecIDBetween = value; return this; } public ArrayList getRecIDIn() { return RecIDIn; } public GL_SegmentConfigurationQuery setRecIDIn(ArrayList value) { this.RecIDIn = value; return this; } public Short getSegmentNo() { return SegmentNo; } public GL_SegmentConfigurationQuery setSegmentNo(Short value) { this.SegmentNo = value; return this; } public Short getSegmentNoGreaterThanOrEqualTo() { return SegmentNoGreaterThanOrEqualTo; } public GL_SegmentConfigurationQuery setSegmentNoGreaterThanOrEqualTo(Short value) { this.SegmentNoGreaterThanOrEqualTo = value; return this; } public Short getSegmentNoGreaterThan() { return SegmentNoGreaterThan; } public GL_SegmentConfigurationQuery setSegmentNoGreaterThan(Short value) { this.SegmentNoGreaterThan = value; return this; } public Short getSegmentNoLessThan() { return SegmentNoLessThan; } public GL_SegmentConfigurationQuery setSegmentNoLessThan(Short value) { this.SegmentNoLessThan = value; return this; } public Short getSegmentNoLessThanOrEqualTo() { return SegmentNoLessThanOrEqualTo; } public GL_SegmentConfigurationQuery setSegmentNoLessThanOrEqualTo(Short value) { this.SegmentNoLessThanOrEqualTo = value; return this; } public Short getSegmentNoNotEqualTo() { return SegmentNoNotEqualTo; } public GL_SegmentConfigurationQuery setSegmentNoNotEqualTo(Short value) { this.SegmentNoNotEqualTo = value; return this; } public ArrayList getSegmentNoBetween() { return SegmentNoBetween; } public GL_SegmentConfigurationQuery setSegmentNoBetween(ArrayList value) { this.SegmentNoBetween = value; return this; } public ArrayList getSegmentNoIn() { return SegmentNoIn; } public GL_SegmentConfigurationQuery setSegmentNoIn(ArrayList value) { this.SegmentNoIn = value; return this; } public String getName() { return Name; } public GL_SegmentConfigurationQuery setName(String value) { this.Name = value; return this; } public String getNameStartsWith() { return NameStartsWith; } public GL_SegmentConfigurationQuery setNameStartsWith(String value) { this.NameStartsWith = value; return this; } public String getNameEndsWith() { return NameEndsWith; } public GL_SegmentConfigurationQuery setNameEndsWith(String value) { this.NameEndsWith = value; return this; } public String getNameContains() { return NameContains; } public GL_SegmentConfigurationQuery setNameContains(String value) { this.NameContains = value; return this; } public String getNameLike() { return NameLike; } public GL_SegmentConfigurationQuery setNameLike(String value) { this.NameLike = value; return this; } public ArrayList getNameBetween() { return NameBetween; } public GL_SegmentConfigurationQuery setNameBetween(ArrayList value) { this.NameBetween = value; return this; } public ArrayList getNameIn() { return NameIn; } public GL_SegmentConfigurationQuery setNameIn(ArrayList value) { this.NameIn = value; return this; } public Short getSegmentLength() { return SegmentLength; } public GL_SegmentConfigurationQuery setSegmentLength(Short value) { this.SegmentLength = value; return this; } public Short getSegmentLengthGreaterThanOrEqualTo() { return SegmentLengthGreaterThanOrEqualTo; } public GL_SegmentConfigurationQuery setSegmentLengthGreaterThanOrEqualTo(Short value) { this.SegmentLengthGreaterThanOrEqualTo = value; return this; } public Short getSegmentLengthGreaterThan() { return SegmentLengthGreaterThan; } public GL_SegmentConfigurationQuery setSegmentLengthGreaterThan(Short value) { this.SegmentLengthGreaterThan = value; return this; } public Short getSegmentLengthLessThan() { return SegmentLengthLessThan; } public GL_SegmentConfigurationQuery setSegmentLengthLessThan(Short value) { this.SegmentLengthLessThan = value; return this; } public Short getSegmentLengthLessThanOrEqualTo() { return SegmentLengthLessThanOrEqualTo; } public GL_SegmentConfigurationQuery setSegmentLengthLessThanOrEqualTo(Short value) { this.SegmentLengthLessThanOrEqualTo = value; return this; } public Short getSegmentLengthNotEqualTo() { return SegmentLengthNotEqualTo; } public GL_SegmentConfigurationQuery setSegmentLengthNotEqualTo(Short value) { this.SegmentLengthNotEqualTo = value; return this; } public ArrayList getSegmentLengthBetween() { return SegmentLengthBetween; } public GL_SegmentConfigurationQuery setSegmentLengthBetween(ArrayList value) { this.SegmentLengthBetween = value; return this; } public ArrayList getSegmentLengthIn() { return SegmentLengthIn; } public GL_SegmentConfigurationQuery setSegmentLengthIn(ArrayList value) { this.SegmentLengthIn = value; return this; } public Short getSegmentType() { return SegmentType; } public GL_SegmentConfigurationQuery setSegmentType(Short value) { this.SegmentType = value; return this; } public Short getSegmentTypeGreaterThanOrEqualTo() { return SegmentTypeGreaterThanOrEqualTo; } public GL_SegmentConfigurationQuery setSegmentTypeGreaterThanOrEqualTo(Short value) { this.SegmentTypeGreaterThanOrEqualTo = value; return this; } public Short getSegmentTypeGreaterThan() { return SegmentTypeGreaterThan; } public GL_SegmentConfigurationQuery setSegmentTypeGreaterThan(Short value) { this.SegmentTypeGreaterThan = value; return this; } public Short getSegmentTypeLessThan() { return SegmentTypeLessThan; } public GL_SegmentConfigurationQuery setSegmentTypeLessThan(Short value) { this.SegmentTypeLessThan = value; return this; } public Short getSegmentTypeLessThanOrEqualTo() { return SegmentTypeLessThanOrEqualTo; } public GL_SegmentConfigurationQuery setSegmentTypeLessThanOrEqualTo(Short value) { this.SegmentTypeLessThanOrEqualTo = value; return this; } public Short getSegmentTypeNotEqualTo() { return SegmentTypeNotEqualTo; } public GL_SegmentConfigurationQuery setSegmentTypeNotEqualTo(Short value) { this.SegmentTypeNotEqualTo = value; return this; } public ArrayList getSegmentTypeBetween() { return SegmentTypeBetween; } public GL_SegmentConfigurationQuery setSegmentTypeBetween(ArrayList value) { this.SegmentTypeBetween = value; return this; } public ArrayList getSegmentTypeIn() { return SegmentTypeIn; } public GL_SegmentConfigurationQuery setSegmentTypeIn(ArrayList value) { this.SegmentTypeIn = value; return this; } public ArrayList getRowHash() { return RowHash; } public GL_SegmentConfigurationQuery setRowHash(ArrayList value) { this.RowHash = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class GL_SegmentsQuery extends QueryDb implements IReturn> { public String GLSegmentID = null; public String GLSegmentIDStartsWith = null; public String GLSegmentIDEndsWith = null; public String GLSegmentIDContains = null; public String GLSegmentIDLike = null; public ArrayList GLSegmentIDBetween = null; public ArrayList GLSegmentIDIn = null; public Date LastSavedDateTime = null; public Date LastSavedDateTimeGreaterThanOrEqualTo = null; public Date LastSavedDateTimeGreaterThan = null; public Date LastSavedDateTimeLessThan = null; public Date LastSavedDateTimeLessThanOrEqualTo = null; public Date LastSavedDateTimeNotEqualTo = null; public ArrayList LastSavedDateTimeBetween = null; public ArrayList LastSavedDateTimeIn = null; public Short SegmentNo = null; public Short SegmentNoGreaterThanOrEqualTo = null; public Short SegmentNoGreaterThan = null; public Short SegmentNoLessThan = null; public Short SegmentNoLessThanOrEqualTo = null; public Short SegmentNoNotEqualTo = null; public ArrayList SegmentNoBetween = null; public ArrayList SegmentNoIn = null; public String SegContents = null; public String SegContentsStartsWith = null; public String SegContentsEndsWith = null; public String SegContentsContains = null; public String SegContentsLike = null; public ArrayList SegContentsBetween = null; public ArrayList SegContentsIn = null; public String SegContentsDesc = null; public String SegContentsDescStartsWith = null; public String SegContentsDescEndsWith = null; public String SegContentsDescContains = null; public String SegContentsDescLike = null; public ArrayList SegContentsDescBetween = null; public ArrayList SegContentsDescIn = null; public String getGlSegmentID() { return GLSegmentID; } public GL_SegmentsQuery setGlSegmentID(String value) { this.GLSegmentID = value; return this; } public String getGlSegmentIDStartsWith() { return GLSegmentIDStartsWith; } public GL_SegmentsQuery setGlSegmentIDStartsWith(String value) { this.GLSegmentIDStartsWith = value; return this; } public String getGlSegmentIDEndsWith() { return GLSegmentIDEndsWith; } public GL_SegmentsQuery setGlSegmentIDEndsWith(String value) { this.GLSegmentIDEndsWith = value; return this; } public String getGlSegmentIDContains() { return GLSegmentIDContains; } public GL_SegmentsQuery setGlSegmentIDContains(String value) { this.GLSegmentIDContains = value; return this; } public String getGlSegmentIDLike() { return GLSegmentIDLike; } public GL_SegmentsQuery setGlSegmentIDLike(String value) { this.GLSegmentIDLike = value; return this; } public ArrayList getGlSegmentIDBetween() { return GLSegmentIDBetween; } public GL_SegmentsQuery setGlSegmentIDBetween(ArrayList value) { this.GLSegmentIDBetween = value; return this; } public ArrayList getGlSegmentIDIn() { return GLSegmentIDIn; } public GL_SegmentsQuery setGlSegmentIDIn(ArrayList value) { this.GLSegmentIDIn = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public GL_SegmentsQuery setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getLastSavedDateTimeGreaterThanOrEqualTo() { return LastSavedDateTimeGreaterThanOrEqualTo; } public GL_SegmentsQuery setLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.LastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeGreaterThan() { return LastSavedDateTimeGreaterThan; } public GL_SegmentsQuery setLastSavedDateTimeGreaterThan(Date value) { this.LastSavedDateTimeGreaterThan = value; return this; } public Date getLastSavedDateTimeLessThan() { return LastSavedDateTimeLessThan; } public GL_SegmentsQuery setLastSavedDateTimeLessThan(Date value) { this.LastSavedDateTimeLessThan = value; return this; } public Date getLastSavedDateTimeLessThanOrEqualTo() { return LastSavedDateTimeLessThanOrEqualTo; } public GL_SegmentsQuery setLastSavedDateTimeLessThanOrEqualTo(Date value) { this.LastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeNotEqualTo() { return LastSavedDateTimeNotEqualTo; } public GL_SegmentsQuery setLastSavedDateTimeNotEqualTo(Date value) { this.LastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getLastSavedDateTimeBetween() { return LastSavedDateTimeBetween; } public GL_SegmentsQuery setLastSavedDateTimeBetween(ArrayList value) { this.LastSavedDateTimeBetween = value; return this; } public ArrayList getLastSavedDateTimeIn() { return LastSavedDateTimeIn; } public GL_SegmentsQuery setLastSavedDateTimeIn(ArrayList value) { this.LastSavedDateTimeIn = value; return this; } public Short getSegmentNo() { return SegmentNo; } public GL_SegmentsQuery setSegmentNo(Short value) { this.SegmentNo = value; return this; } public Short getSegmentNoGreaterThanOrEqualTo() { return SegmentNoGreaterThanOrEqualTo; } public GL_SegmentsQuery setSegmentNoGreaterThanOrEqualTo(Short value) { this.SegmentNoGreaterThanOrEqualTo = value; return this; } public Short getSegmentNoGreaterThan() { return SegmentNoGreaterThan; } public GL_SegmentsQuery setSegmentNoGreaterThan(Short value) { this.SegmentNoGreaterThan = value; return this; } public Short getSegmentNoLessThan() { return SegmentNoLessThan; } public GL_SegmentsQuery setSegmentNoLessThan(Short value) { this.SegmentNoLessThan = value; return this; } public Short getSegmentNoLessThanOrEqualTo() { return SegmentNoLessThanOrEqualTo; } public GL_SegmentsQuery setSegmentNoLessThanOrEqualTo(Short value) { this.SegmentNoLessThanOrEqualTo = value; return this; } public Short getSegmentNoNotEqualTo() { return SegmentNoNotEqualTo; } public GL_SegmentsQuery setSegmentNoNotEqualTo(Short value) { this.SegmentNoNotEqualTo = value; return this; } public ArrayList getSegmentNoBetween() { return SegmentNoBetween; } public GL_SegmentsQuery setSegmentNoBetween(ArrayList value) { this.SegmentNoBetween = value; return this; } public ArrayList getSegmentNoIn() { return SegmentNoIn; } public GL_SegmentsQuery setSegmentNoIn(ArrayList value) { this.SegmentNoIn = value; return this; } public String getSegContents() { return SegContents; } public GL_SegmentsQuery setSegContents(String value) { this.SegContents = value; return this; } public String getSegContentsStartsWith() { return SegContentsStartsWith; } public GL_SegmentsQuery setSegContentsStartsWith(String value) { this.SegContentsStartsWith = value; return this; } public String getSegContentsEndsWith() { return SegContentsEndsWith; } public GL_SegmentsQuery setSegContentsEndsWith(String value) { this.SegContentsEndsWith = value; return this; } public String getSegContentsContains() { return SegContentsContains; } public GL_SegmentsQuery setSegContentsContains(String value) { this.SegContentsContains = value; return this; } public String getSegContentsLike() { return SegContentsLike; } public GL_SegmentsQuery setSegContentsLike(String value) { this.SegContentsLike = value; return this; } public ArrayList getSegContentsBetween() { return SegContentsBetween; } public GL_SegmentsQuery setSegContentsBetween(ArrayList value) { this.SegContentsBetween = value; return this; } public ArrayList getSegContentsIn() { return SegContentsIn; } public GL_SegmentsQuery setSegContentsIn(ArrayList value) { this.SegContentsIn = value; return this; } public String getSegContentsDesc() { return SegContentsDesc; } public GL_SegmentsQuery setSegContentsDesc(String value) { this.SegContentsDesc = value; return this; } public String getSegContentsDescStartsWith() { return SegContentsDescStartsWith; } public GL_SegmentsQuery setSegContentsDescStartsWith(String value) { this.SegContentsDescStartsWith = value; return this; } public String getSegContentsDescEndsWith() { return SegContentsDescEndsWith; } public GL_SegmentsQuery setSegContentsDescEndsWith(String value) { this.SegContentsDescEndsWith = value; return this; } public String getSegContentsDescContains() { return SegContentsDescContains; } public GL_SegmentsQuery setSegContentsDescContains(String value) { this.SegContentsDescContains = value; return this; } public String getSegContentsDescLike() { return SegContentsDescLike; } public GL_SegmentsQuery setSegContentsDescLike(String value) { this.SegContentsDescLike = value; return this; } public ArrayList getSegContentsDescBetween() { return SegContentsDescBetween; } public GL_SegmentsQuery setSegContentsDescBetween(ArrayList value) { this.SegContentsDescBetween = value; return this; } public ArrayList getSegContentsDescIn() { return SegContentsDescIn; } public GL_SegmentsQuery setSegContentsDescIn(ArrayList value) { this.SegContentsDescIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @Route(Path="/Queries/GL_Sets", Verbs="GET") @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class GL_SetsQuery extends QueryDb implements IReturn> { public String GLSetID = null; public String GLSetIDStartsWith = null; public String GLSetIDEndsWith = null; public String GLSetIDContains = null; public String GLSetIDLike = null; public ArrayList GLSetIDBetween = null; public ArrayList GLSetIDIn = null; public Date LastSavedDateTime = null; public Date LastSavedDateTimeGreaterThanOrEqualTo = null; public Date LastSavedDateTimeGreaterThan = null; public Date LastSavedDateTimeLessThan = null; public Date LastSavedDateTimeLessThanOrEqualTo = null; public Date LastSavedDateTimeNotEqualTo = null; public ArrayList LastSavedDateTimeBetween = null; public ArrayList LastSavedDateTimeIn = null; public String SetNo = null; public String SetNoStartsWith = null; public String SetNoEndsWith = null; public String SetNoContains = null; public String SetNoLike = null; public ArrayList SetNoBetween = null; public ArrayList SetNoIn = null; public Date PostDateTime = null; public Date PostDateTimeGreaterThanOrEqualTo = null; public Date PostDateTimeGreaterThan = null; public Date PostDateTimeLessThan = null; public Date PostDateTimeLessThanOrEqualTo = null; public Date PostDateTimeNotEqualTo = null; public ArrayList PostDateTimeBetween = null; public ArrayList PostDateTimeIn = null; public Short PostedToPeriodNo = null; public Short PostedToPeriodNoGreaterThanOrEqualTo = null; public Short PostedToPeriodNoGreaterThan = null; public Short PostedToPeriodNoLessThan = null; public Short PostedToPeriodNoLessThanOrEqualTo = null; public Short PostedToPeriodNoNotEqualTo = null; public ArrayList PostedToPeriodNoBetween = null; public ArrayList PostedToPeriodNoIn = null; public String Description = null; public String DescriptionStartsWith = null; public String DescriptionEndsWith = null; public String DescriptionContains = null; public String DescriptionLike = null; public ArrayList DescriptionBetween = null; public ArrayList DescriptionIn = null; public String Source = null; public String SourceStartsWith = null; public String SourceEndsWith = null; public String SourceContains = null; public String SourceLike = null; public ArrayList SourceBetween = null; public ArrayList SourceIn = null; public String SourceID = null; public String SourceIDStartsWith = null; public String SourceIDEndsWith = null; public String SourceIDContains = null; public String SourceIDLike = null; public ArrayList SourceIDBetween = null; public ArrayList SourceIDIn = null; public String UserName = null; public String UserNameStartsWith = null; public String UserNameEndsWith = null; public String UserNameContains = null; public String UserNameLike = null; public ArrayList UserNameBetween = null; public ArrayList UserNameIn = null; public Short SetType = null; public Short SetTypeGreaterThanOrEqualTo = null; public Short SetTypeGreaterThan = null; public Short SetTypeLessThan = null; public Short SetTypeLessThanOrEqualTo = null; public Short SetTypeNotEqualTo = null; public ArrayList SetTypeBetween = null; public ArrayList SetTypeIn = null; public Short RepeatingType = null; public Short RepeatingTypeGreaterThanOrEqualTo = null; public Short RepeatingTypeGreaterThan = null; public Short RepeatingTypeLessThan = null; public Short RepeatingTypeLessThanOrEqualTo = null; public Short RepeatingTypeNotEqualTo = null; public ArrayList RepeatingTypeBetween = null; public ArrayList RepeatingTypeIn = null; public Short RepeatingUnits = null; public Short RepeatingUnitsGreaterThanOrEqualTo = null; public Short RepeatingUnitsGreaterThan = null; public Short RepeatingUnitsLessThan = null; public Short RepeatingUnitsLessThanOrEqualTo = null; public Short RepeatingUnitsNotEqualTo = null; public ArrayList RepeatingUnitsBetween = null; public ArrayList RepeatingUnitsIn = null; public Date NextRepeatingDate = null; public Date NextRepeatingDateGreaterThanOrEqualTo = null; public Date NextRepeatingDateGreaterThan = null; public Date NextRepeatingDateLessThan = null; public Date NextRepeatingDateLessThanOrEqualTo = null; public Date NextRepeatingDateNotEqualTo = null; public ArrayList NextRepeatingDateBetween = null; public ArrayList NextRepeatingDateIn = null; public Boolean RepeatingWillEnd = null; public Date RepeatingEndDate = null; public Date RepeatingEndDateGreaterThanOrEqualTo = null; public Date RepeatingEndDateGreaterThan = null; public Date RepeatingEndDateLessThan = null; public Date RepeatingEndDateLessThanOrEqualTo = null; public Date RepeatingEndDateNotEqualTo = null; public ArrayList RepeatingEndDateBetween = null; public ArrayList RepeatingEndDateIn = null; public Short ReverseType = null; public Short ReverseTypeGreaterThanOrEqualTo = null; public Short ReverseTypeGreaterThan = null; public Short ReverseTypeLessThan = null; public Short ReverseTypeLessThanOrEqualTo = null; public Short ReverseTypeNotEqualTo = null; public ArrayList ReverseTypeBetween = null; public ArrayList ReverseTypeIn = null; public Short ReversePeriod = null; public Short ReversePeriodGreaterThanOrEqualTo = null; public Short ReversePeriodGreaterThan = null; public Short ReversePeriodLessThan = null; public Short ReversePeriodLessThanOrEqualTo = null; public Short ReversePeriodNotEqualTo = null; public ArrayList ReversePeriodBetween = null; public ArrayList ReversePeriodIn = null; public Date ReverseDate = null; public Date ReverseDateGreaterThanOrEqualTo = null; public Date ReverseDateGreaterThan = null; public Date ReverseDateLessThan = null; public Date ReverseDateLessThanOrEqualTo = null; public Date ReverseDateNotEqualTo = null; public ArrayList ReverseDateBetween = null; public ArrayList ReverseDateIn = null; public Boolean Reversed = null; public Short YearNo = null; public Short YearNoGreaterThanOrEqualTo = null; public Short YearNoGreaterThan = null; public Short YearNoLessThan = null; public Short YearNoLessThanOrEqualTo = null; public Short YearNoNotEqualTo = null; public ArrayList YearNoBetween = null; public ArrayList YearNoIn = null; public String getGlSetID() { return GLSetID; } public GL_SetsQuery setGlSetID(String value) { this.GLSetID = value; return this; } public String getGlSetIDStartsWith() { return GLSetIDStartsWith; } public GL_SetsQuery setGlSetIDStartsWith(String value) { this.GLSetIDStartsWith = value; return this; } public String getGlSetIDEndsWith() { return GLSetIDEndsWith; } public GL_SetsQuery setGlSetIDEndsWith(String value) { this.GLSetIDEndsWith = value; return this; } public String getGlSetIDContains() { return GLSetIDContains; } public GL_SetsQuery setGlSetIDContains(String value) { this.GLSetIDContains = value; return this; } public String getGlSetIDLike() { return GLSetIDLike; } public GL_SetsQuery setGlSetIDLike(String value) { this.GLSetIDLike = value; return this; } public ArrayList getGlSetIDBetween() { return GLSetIDBetween; } public GL_SetsQuery setGlSetIDBetween(ArrayList value) { this.GLSetIDBetween = value; return this; } public ArrayList getGlSetIDIn() { return GLSetIDIn; } public GL_SetsQuery setGlSetIDIn(ArrayList value) { this.GLSetIDIn = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public GL_SetsQuery setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getLastSavedDateTimeGreaterThanOrEqualTo() { return LastSavedDateTimeGreaterThanOrEqualTo; } public GL_SetsQuery setLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.LastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeGreaterThan() { return LastSavedDateTimeGreaterThan; } public GL_SetsQuery setLastSavedDateTimeGreaterThan(Date value) { this.LastSavedDateTimeGreaterThan = value; return this; } public Date getLastSavedDateTimeLessThan() { return LastSavedDateTimeLessThan; } public GL_SetsQuery setLastSavedDateTimeLessThan(Date value) { this.LastSavedDateTimeLessThan = value; return this; } public Date getLastSavedDateTimeLessThanOrEqualTo() { return LastSavedDateTimeLessThanOrEqualTo; } public GL_SetsQuery setLastSavedDateTimeLessThanOrEqualTo(Date value) { this.LastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeNotEqualTo() { return LastSavedDateTimeNotEqualTo; } public GL_SetsQuery setLastSavedDateTimeNotEqualTo(Date value) { this.LastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getLastSavedDateTimeBetween() { return LastSavedDateTimeBetween; } public GL_SetsQuery setLastSavedDateTimeBetween(ArrayList value) { this.LastSavedDateTimeBetween = value; return this; } public ArrayList getLastSavedDateTimeIn() { return LastSavedDateTimeIn; } public GL_SetsQuery setLastSavedDateTimeIn(ArrayList value) { this.LastSavedDateTimeIn = value; return this; } public String getSetNo() { return SetNo; } public GL_SetsQuery setSetNo(String value) { this.SetNo = value; return this; } public String getSetNoStartsWith() { return SetNoStartsWith; } public GL_SetsQuery setSetNoStartsWith(String value) { this.SetNoStartsWith = value; return this; } public String getSetNoEndsWith() { return SetNoEndsWith; } public GL_SetsQuery setSetNoEndsWith(String value) { this.SetNoEndsWith = value; return this; } public String getSetNoContains() { return SetNoContains; } public GL_SetsQuery setSetNoContains(String value) { this.SetNoContains = value; return this; } public String getSetNoLike() { return SetNoLike; } public GL_SetsQuery setSetNoLike(String value) { this.SetNoLike = value; return this; } public ArrayList getSetNoBetween() { return SetNoBetween; } public GL_SetsQuery setSetNoBetween(ArrayList value) { this.SetNoBetween = value; return this; } public ArrayList getSetNoIn() { return SetNoIn; } public GL_SetsQuery setSetNoIn(ArrayList value) { this.SetNoIn = value; return this; } public Date getPostDateTime() { return PostDateTime; } public GL_SetsQuery setPostDateTime(Date value) { this.PostDateTime = value; return this; } public Date getPostDateTimeGreaterThanOrEqualTo() { return PostDateTimeGreaterThanOrEqualTo; } public GL_SetsQuery setPostDateTimeGreaterThanOrEqualTo(Date value) { this.PostDateTimeGreaterThanOrEqualTo = value; return this; } public Date getPostDateTimeGreaterThan() { return PostDateTimeGreaterThan; } public GL_SetsQuery setPostDateTimeGreaterThan(Date value) { this.PostDateTimeGreaterThan = value; return this; } public Date getPostDateTimeLessThan() { return PostDateTimeLessThan; } public GL_SetsQuery setPostDateTimeLessThan(Date value) { this.PostDateTimeLessThan = value; return this; } public Date getPostDateTimeLessThanOrEqualTo() { return PostDateTimeLessThanOrEqualTo; } public GL_SetsQuery setPostDateTimeLessThanOrEqualTo(Date value) { this.PostDateTimeLessThanOrEqualTo = value; return this; } public Date getPostDateTimeNotEqualTo() { return PostDateTimeNotEqualTo; } public GL_SetsQuery setPostDateTimeNotEqualTo(Date value) { this.PostDateTimeNotEqualTo = value; return this; } public ArrayList getPostDateTimeBetween() { return PostDateTimeBetween; } public GL_SetsQuery setPostDateTimeBetween(ArrayList value) { this.PostDateTimeBetween = value; return this; } public ArrayList getPostDateTimeIn() { return PostDateTimeIn; } public GL_SetsQuery setPostDateTimeIn(ArrayList value) { this.PostDateTimeIn = value; return this; } public Short getPostedToPeriodNo() { return PostedToPeriodNo; } public GL_SetsQuery setPostedToPeriodNo(Short value) { this.PostedToPeriodNo = value; return this; } public Short getPostedToPeriodNoGreaterThanOrEqualTo() { return PostedToPeriodNoGreaterThanOrEqualTo; } public GL_SetsQuery setPostedToPeriodNoGreaterThanOrEqualTo(Short value) { this.PostedToPeriodNoGreaterThanOrEqualTo = value; return this; } public Short getPostedToPeriodNoGreaterThan() { return PostedToPeriodNoGreaterThan; } public GL_SetsQuery setPostedToPeriodNoGreaterThan(Short value) { this.PostedToPeriodNoGreaterThan = value; return this; } public Short getPostedToPeriodNoLessThan() { return PostedToPeriodNoLessThan; } public GL_SetsQuery setPostedToPeriodNoLessThan(Short value) { this.PostedToPeriodNoLessThan = value; return this; } public Short getPostedToPeriodNoLessThanOrEqualTo() { return PostedToPeriodNoLessThanOrEqualTo; } public GL_SetsQuery setPostedToPeriodNoLessThanOrEqualTo(Short value) { this.PostedToPeriodNoLessThanOrEqualTo = value; return this; } public Short getPostedToPeriodNoNotEqualTo() { return PostedToPeriodNoNotEqualTo; } public GL_SetsQuery setPostedToPeriodNoNotEqualTo(Short value) { this.PostedToPeriodNoNotEqualTo = value; return this; } public ArrayList getPostedToPeriodNoBetween() { return PostedToPeriodNoBetween; } public GL_SetsQuery setPostedToPeriodNoBetween(ArrayList value) { this.PostedToPeriodNoBetween = value; return this; } public ArrayList getPostedToPeriodNoIn() { return PostedToPeriodNoIn; } public GL_SetsQuery setPostedToPeriodNoIn(ArrayList value) { this.PostedToPeriodNoIn = value; return this; } public String getDescription() { return Description; } public GL_SetsQuery setDescription(String value) { this.Description = value; return this; } public String getDescriptionStartsWith() { return DescriptionStartsWith; } public GL_SetsQuery setDescriptionStartsWith(String value) { this.DescriptionStartsWith = value; return this; } public String getDescriptionEndsWith() { return DescriptionEndsWith; } public GL_SetsQuery setDescriptionEndsWith(String value) { this.DescriptionEndsWith = value; return this; } public String getDescriptionContains() { return DescriptionContains; } public GL_SetsQuery setDescriptionContains(String value) { this.DescriptionContains = value; return this; } public String getDescriptionLike() { return DescriptionLike; } public GL_SetsQuery setDescriptionLike(String value) { this.DescriptionLike = value; return this; } public ArrayList getDescriptionBetween() { return DescriptionBetween; } public GL_SetsQuery setDescriptionBetween(ArrayList value) { this.DescriptionBetween = value; return this; } public ArrayList getDescriptionIn() { return DescriptionIn; } public GL_SetsQuery setDescriptionIn(ArrayList value) { this.DescriptionIn = value; return this; } public String getSource() { return Source; } public GL_SetsQuery setSource(String value) { this.Source = value; return this; } public String getSourceStartsWith() { return SourceStartsWith; } public GL_SetsQuery setSourceStartsWith(String value) { this.SourceStartsWith = value; return this; } public String getSourceEndsWith() { return SourceEndsWith; } public GL_SetsQuery setSourceEndsWith(String value) { this.SourceEndsWith = value; return this; } public String getSourceContains() { return SourceContains; } public GL_SetsQuery setSourceContains(String value) { this.SourceContains = value; return this; } public String getSourceLike() { return SourceLike; } public GL_SetsQuery setSourceLike(String value) { this.SourceLike = value; return this; } public ArrayList getSourceBetween() { return SourceBetween; } public GL_SetsQuery setSourceBetween(ArrayList value) { this.SourceBetween = value; return this; } public ArrayList getSourceIn() { return SourceIn; } public GL_SetsQuery setSourceIn(ArrayList value) { this.SourceIn = value; return this; } public String getSourceID() { return SourceID; } public GL_SetsQuery setSourceID(String value) { this.SourceID = value; return this; } public String getSourceIDStartsWith() { return SourceIDStartsWith; } public GL_SetsQuery setSourceIDStartsWith(String value) { this.SourceIDStartsWith = value; return this; } public String getSourceIDEndsWith() { return SourceIDEndsWith; } public GL_SetsQuery setSourceIDEndsWith(String value) { this.SourceIDEndsWith = value; return this; } public String getSourceIDContains() { return SourceIDContains; } public GL_SetsQuery setSourceIDContains(String value) { this.SourceIDContains = value; return this; } public String getSourceIDLike() { return SourceIDLike; } public GL_SetsQuery setSourceIDLike(String value) { this.SourceIDLike = value; return this; } public ArrayList getSourceIDBetween() { return SourceIDBetween; } public GL_SetsQuery setSourceIDBetween(ArrayList value) { this.SourceIDBetween = value; return this; } public ArrayList getSourceIDIn() { return SourceIDIn; } public GL_SetsQuery setSourceIDIn(ArrayList value) { this.SourceIDIn = value; return this; } public String getUserName() { return UserName; } public GL_SetsQuery setUserName(String value) { this.UserName = value; return this; } public String getUserNameStartsWith() { return UserNameStartsWith; } public GL_SetsQuery setUserNameStartsWith(String value) { this.UserNameStartsWith = value; return this; } public String getUserNameEndsWith() { return UserNameEndsWith; } public GL_SetsQuery setUserNameEndsWith(String value) { this.UserNameEndsWith = value; return this; } public String getUserNameContains() { return UserNameContains; } public GL_SetsQuery setUserNameContains(String value) { this.UserNameContains = value; return this; } public String getUserNameLike() { return UserNameLike; } public GL_SetsQuery setUserNameLike(String value) { this.UserNameLike = value; return this; } public ArrayList getUserNameBetween() { return UserNameBetween; } public GL_SetsQuery setUserNameBetween(ArrayList value) { this.UserNameBetween = value; return this; } public ArrayList getUserNameIn() { return UserNameIn; } public GL_SetsQuery setUserNameIn(ArrayList value) { this.UserNameIn = value; return this; } public Short getSetType() { return SetType; } public GL_SetsQuery setSetType(Short value) { this.SetType = value; return this; } public Short getSetTypeGreaterThanOrEqualTo() { return SetTypeGreaterThanOrEqualTo; } public GL_SetsQuery setSetTypeGreaterThanOrEqualTo(Short value) { this.SetTypeGreaterThanOrEqualTo = value; return this; } public Short getSetTypeGreaterThan() { return SetTypeGreaterThan; } public GL_SetsQuery setSetTypeGreaterThan(Short value) { this.SetTypeGreaterThan = value; return this; } public Short getSetTypeLessThan() { return SetTypeLessThan; } public GL_SetsQuery setSetTypeLessThan(Short value) { this.SetTypeLessThan = value; return this; } public Short getSetTypeLessThanOrEqualTo() { return SetTypeLessThanOrEqualTo; } public GL_SetsQuery setSetTypeLessThanOrEqualTo(Short value) { this.SetTypeLessThanOrEqualTo = value; return this; } public Short getSetTypeNotEqualTo() { return SetTypeNotEqualTo; } public GL_SetsQuery setSetTypeNotEqualTo(Short value) { this.SetTypeNotEqualTo = value; return this; } public ArrayList getSetTypeBetween() { return SetTypeBetween; } public GL_SetsQuery setSetTypeBetween(ArrayList value) { this.SetTypeBetween = value; return this; } public ArrayList getSetTypeIn() { return SetTypeIn; } public GL_SetsQuery setSetTypeIn(ArrayList value) { this.SetTypeIn = value; return this; } public Short getRepeatingType() { return RepeatingType; } public GL_SetsQuery setRepeatingType(Short value) { this.RepeatingType = value; return this; } public Short getRepeatingTypeGreaterThanOrEqualTo() { return RepeatingTypeGreaterThanOrEqualTo; } public GL_SetsQuery setRepeatingTypeGreaterThanOrEqualTo(Short value) { this.RepeatingTypeGreaterThanOrEqualTo = value; return this; } public Short getRepeatingTypeGreaterThan() { return RepeatingTypeGreaterThan; } public GL_SetsQuery setRepeatingTypeGreaterThan(Short value) { this.RepeatingTypeGreaterThan = value; return this; } public Short getRepeatingTypeLessThan() { return RepeatingTypeLessThan; } public GL_SetsQuery setRepeatingTypeLessThan(Short value) { this.RepeatingTypeLessThan = value; return this; } public Short getRepeatingTypeLessThanOrEqualTo() { return RepeatingTypeLessThanOrEqualTo; } public GL_SetsQuery setRepeatingTypeLessThanOrEqualTo(Short value) { this.RepeatingTypeLessThanOrEqualTo = value; return this; } public Short getRepeatingTypeNotEqualTo() { return RepeatingTypeNotEqualTo; } public GL_SetsQuery setRepeatingTypeNotEqualTo(Short value) { this.RepeatingTypeNotEqualTo = value; return this; } public ArrayList getRepeatingTypeBetween() { return RepeatingTypeBetween; } public GL_SetsQuery setRepeatingTypeBetween(ArrayList value) { this.RepeatingTypeBetween = value; return this; } public ArrayList getRepeatingTypeIn() { return RepeatingTypeIn; } public GL_SetsQuery setRepeatingTypeIn(ArrayList value) { this.RepeatingTypeIn = value; return this; } public Short getRepeatingUnits() { return RepeatingUnits; } public GL_SetsQuery setRepeatingUnits(Short value) { this.RepeatingUnits = value; return this; } public Short getRepeatingUnitsGreaterThanOrEqualTo() { return RepeatingUnitsGreaterThanOrEqualTo; } public GL_SetsQuery setRepeatingUnitsGreaterThanOrEqualTo(Short value) { this.RepeatingUnitsGreaterThanOrEqualTo = value; return this; } public Short getRepeatingUnitsGreaterThan() { return RepeatingUnitsGreaterThan; } public GL_SetsQuery setRepeatingUnitsGreaterThan(Short value) { this.RepeatingUnitsGreaterThan = value; return this; } public Short getRepeatingUnitsLessThan() { return RepeatingUnitsLessThan; } public GL_SetsQuery setRepeatingUnitsLessThan(Short value) { this.RepeatingUnitsLessThan = value; return this; } public Short getRepeatingUnitsLessThanOrEqualTo() { return RepeatingUnitsLessThanOrEqualTo; } public GL_SetsQuery setRepeatingUnitsLessThanOrEqualTo(Short value) { this.RepeatingUnitsLessThanOrEqualTo = value; return this; } public Short getRepeatingUnitsNotEqualTo() { return RepeatingUnitsNotEqualTo; } public GL_SetsQuery setRepeatingUnitsNotEqualTo(Short value) { this.RepeatingUnitsNotEqualTo = value; return this; } public ArrayList getRepeatingUnitsBetween() { return RepeatingUnitsBetween; } public GL_SetsQuery setRepeatingUnitsBetween(ArrayList value) { this.RepeatingUnitsBetween = value; return this; } public ArrayList getRepeatingUnitsIn() { return RepeatingUnitsIn; } public GL_SetsQuery setRepeatingUnitsIn(ArrayList value) { this.RepeatingUnitsIn = value; return this; } public Date getNextRepeatingDate() { return NextRepeatingDate; } public GL_SetsQuery setNextRepeatingDate(Date value) { this.NextRepeatingDate = value; return this; } public Date getNextRepeatingDateGreaterThanOrEqualTo() { return NextRepeatingDateGreaterThanOrEqualTo; } public GL_SetsQuery setNextRepeatingDateGreaterThanOrEqualTo(Date value) { this.NextRepeatingDateGreaterThanOrEqualTo = value; return this; } public Date getNextRepeatingDateGreaterThan() { return NextRepeatingDateGreaterThan; } public GL_SetsQuery setNextRepeatingDateGreaterThan(Date value) { this.NextRepeatingDateGreaterThan = value; return this; } public Date getNextRepeatingDateLessThan() { return NextRepeatingDateLessThan; } public GL_SetsQuery setNextRepeatingDateLessThan(Date value) { this.NextRepeatingDateLessThan = value; return this; } public Date getNextRepeatingDateLessThanOrEqualTo() { return NextRepeatingDateLessThanOrEqualTo; } public GL_SetsQuery setNextRepeatingDateLessThanOrEqualTo(Date value) { this.NextRepeatingDateLessThanOrEqualTo = value; return this; } public Date getNextRepeatingDateNotEqualTo() { return NextRepeatingDateNotEqualTo; } public GL_SetsQuery setNextRepeatingDateNotEqualTo(Date value) { this.NextRepeatingDateNotEqualTo = value; return this; } public ArrayList getNextRepeatingDateBetween() { return NextRepeatingDateBetween; } public GL_SetsQuery setNextRepeatingDateBetween(ArrayList value) { this.NextRepeatingDateBetween = value; return this; } public ArrayList getNextRepeatingDateIn() { return NextRepeatingDateIn; } public GL_SetsQuery setNextRepeatingDateIn(ArrayList value) { this.NextRepeatingDateIn = value; return this; } public Boolean isRepeatingWillEnd() { return RepeatingWillEnd; } public GL_SetsQuery setRepeatingWillEnd(Boolean value) { this.RepeatingWillEnd = value; return this; } public Date getRepeatingEndDate() { return RepeatingEndDate; } public GL_SetsQuery setRepeatingEndDate(Date value) { this.RepeatingEndDate = value; return this; } public Date getRepeatingEndDateGreaterThanOrEqualTo() { return RepeatingEndDateGreaterThanOrEqualTo; } public GL_SetsQuery setRepeatingEndDateGreaterThanOrEqualTo(Date value) { this.RepeatingEndDateGreaterThanOrEqualTo = value; return this; } public Date getRepeatingEndDateGreaterThan() { return RepeatingEndDateGreaterThan; } public GL_SetsQuery setRepeatingEndDateGreaterThan(Date value) { this.RepeatingEndDateGreaterThan = value; return this; } public Date getRepeatingEndDateLessThan() { return RepeatingEndDateLessThan; } public GL_SetsQuery setRepeatingEndDateLessThan(Date value) { this.RepeatingEndDateLessThan = value; return this; } public Date getRepeatingEndDateLessThanOrEqualTo() { return RepeatingEndDateLessThanOrEqualTo; } public GL_SetsQuery setRepeatingEndDateLessThanOrEqualTo(Date value) { this.RepeatingEndDateLessThanOrEqualTo = value; return this; } public Date getRepeatingEndDateNotEqualTo() { return RepeatingEndDateNotEqualTo; } public GL_SetsQuery setRepeatingEndDateNotEqualTo(Date value) { this.RepeatingEndDateNotEqualTo = value; return this; } public ArrayList getRepeatingEndDateBetween() { return RepeatingEndDateBetween; } public GL_SetsQuery setRepeatingEndDateBetween(ArrayList value) { this.RepeatingEndDateBetween = value; return this; } public ArrayList getRepeatingEndDateIn() { return RepeatingEndDateIn; } public GL_SetsQuery setRepeatingEndDateIn(ArrayList value) { this.RepeatingEndDateIn = value; return this; } public Short getReverseType() { return ReverseType; } public GL_SetsQuery setReverseType(Short value) { this.ReverseType = value; return this; } public Short getReverseTypeGreaterThanOrEqualTo() { return ReverseTypeGreaterThanOrEqualTo; } public GL_SetsQuery setReverseTypeGreaterThanOrEqualTo(Short value) { this.ReverseTypeGreaterThanOrEqualTo = value; return this; } public Short getReverseTypeGreaterThan() { return ReverseTypeGreaterThan; } public GL_SetsQuery setReverseTypeGreaterThan(Short value) { this.ReverseTypeGreaterThan = value; return this; } public Short getReverseTypeLessThan() { return ReverseTypeLessThan; } public GL_SetsQuery setReverseTypeLessThan(Short value) { this.ReverseTypeLessThan = value; return this; } public Short getReverseTypeLessThanOrEqualTo() { return ReverseTypeLessThanOrEqualTo; } public GL_SetsQuery setReverseTypeLessThanOrEqualTo(Short value) { this.ReverseTypeLessThanOrEqualTo = value; return this; } public Short getReverseTypeNotEqualTo() { return ReverseTypeNotEqualTo; } public GL_SetsQuery setReverseTypeNotEqualTo(Short value) { this.ReverseTypeNotEqualTo = value; return this; } public ArrayList getReverseTypeBetween() { return ReverseTypeBetween; } public GL_SetsQuery setReverseTypeBetween(ArrayList value) { this.ReverseTypeBetween = value; return this; } public ArrayList getReverseTypeIn() { return ReverseTypeIn; } public GL_SetsQuery setReverseTypeIn(ArrayList value) { this.ReverseTypeIn = value; return this; } public Short getReversePeriod() { return ReversePeriod; } public GL_SetsQuery setReversePeriod(Short value) { this.ReversePeriod = value; return this; } public Short getReversePeriodGreaterThanOrEqualTo() { return ReversePeriodGreaterThanOrEqualTo; } public GL_SetsQuery setReversePeriodGreaterThanOrEqualTo(Short value) { this.ReversePeriodGreaterThanOrEqualTo = value; return this; } public Short getReversePeriodGreaterThan() { return ReversePeriodGreaterThan; } public GL_SetsQuery setReversePeriodGreaterThan(Short value) { this.ReversePeriodGreaterThan = value; return this; } public Short getReversePeriodLessThan() { return ReversePeriodLessThan; } public GL_SetsQuery setReversePeriodLessThan(Short value) { this.ReversePeriodLessThan = value; return this; } public Short getReversePeriodLessThanOrEqualTo() { return ReversePeriodLessThanOrEqualTo; } public GL_SetsQuery setReversePeriodLessThanOrEqualTo(Short value) { this.ReversePeriodLessThanOrEqualTo = value; return this; } public Short getReversePeriodNotEqualTo() { return ReversePeriodNotEqualTo; } public GL_SetsQuery setReversePeriodNotEqualTo(Short value) { this.ReversePeriodNotEqualTo = value; return this; } public ArrayList getReversePeriodBetween() { return ReversePeriodBetween; } public GL_SetsQuery setReversePeriodBetween(ArrayList value) { this.ReversePeriodBetween = value; return this; } public ArrayList getReversePeriodIn() { return ReversePeriodIn; } public GL_SetsQuery setReversePeriodIn(ArrayList value) { this.ReversePeriodIn = value; return this; } public Date getReverseDate() { return ReverseDate; } public GL_SetsQuery setReverseDate(Date value) { this.ReverseDate = value; return this; } public Date getReverseDateGreaterThanOrEqualTo() { return ReverseDateGreaterThanOrEqualTo; } public GL_SetsQuery setReverseDateGreaterThanOrEqualTo(Date value) { this.ReverseDateGreaterThanOrEqualTo = value; return this; } public Date getReverseDateGreaterThan() { return ReverseDateGreaterThan; } public GL_SetsQuery setReverseDateGreaterThan(Date value) { this.ReverseDateGreaterThan = value; return this; } public Date getReverseDateLessThan() { return ReverseDateLessThan; } public GL_SetsQuery setReverseDateLessThan(Date value) { this.ReverseDateLessThan = value; return this; } public Date getReverseDateLessThanOrEqualTo() { return ReverseDateLessThanOrEqualTo; } public GL_SetsQuery setReverseDateLessThanOrEqualTo(Date value) { this.ReverseDateLessThanOrEqualTo = value; return this; } public Date getReverseDateNotEqualTo() { return ReverseDateNotEqualTo; } public GL_SetsQuery setReverseDateNotEqualTo(Date value) { this.ReverseDateNotEqualTo = value; return this; } public ArrayList getReverseDateBetween() { return ReverseDateBetween; } public GL_SetsQuery setReverseDateBetween(ArrayList value) { this.ReverseDateBetween = value; return this; } public ArrayList getReverseDateIn() { return ReverseDateIn; } public GL_SetsQuery setReverseDateIn(ArrayList value) { this.ReverseDateIn = value; return this; } public Boolean isReversed() { return Reversed; } public GL_SetsQuery setReversed(Boolean value) { this.Reversed = value; return this; } public Short getYearNo() { return YearNo; } public GL_SetsQuery setYearNo(Short value) { this.YearNo = value; return this; } public Short getYearNoGreaterThanOrEqualTo() { return YearNoGreaterThanOrEqualTo; } public GL_SetsQuery setYearNoGreaterThanOrEqualTo(Short value) { this.YearNoGreaterThanOrEqualTo = value; return this; } public Short getYearNoGreaterThan() { return YearNoGreaterThan; } public GL_SetsQuery setYearNoGreaterThan(Short value) { this.YearNoGreaterThan = value; return this; } public Short getYearNoLessThan() { return YearNoLessThan; } public GL_SetsQuery setYearNoLessThan(Short value) { this.YearNoLessThan = value; return this; } public Short getYearNoLessThanOrEqualTo() { return YearNoLessThanOrEqualTo; } public GL_SetsQuery setYearNoLessThanOrEqualTo(Short value) { this.YearNoLessThanOrEqualTo = value; return this; } public Short getYearNoNotEqualTo() { return YearNoNotEqualTo; } public GL_SetsQuery setYearNoNotEqualTo(Short value) { this.YearNoNotEqualTo = value; return this; } public ArrayList getYearNoBetween() { return YearNoBetween; } public GL_SetsQuery setYearNoBetween(ArrayList value) { this.YearNoBetween = value; return this; } public ArrayList getYearNoIn() { return YearNoIn; } public GL_SetsQuery setYearNoIn(ArrayList value) { this.YearNoIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class GL_TranAllocsQuery extends QueryDb implements IReturn> { public String GLTranAllocsID = null; public String GLTranAllocsIDStartsWith = null; public String GLTranAllocsIDEndsWith = null; public String GLTranAllocsIDContains = null; public String GLTranAllocsIDLike = null; public ArrayList GLTranAllocsIDBetween = null; public ArrayList GLTranAllocsIDIn = null; public String GLDebitTransID = null; public String GLDebitTransIDStartsWith = null; public String GLDebitTransIDEndsWith = null; public String GLDebitTransIDContains = null; public String GLDebitTransIDLike = null; public ArrayList GLDebitTransIDBetween = null; public ArrayList GLDebitTransIDIn = null; public String GLCreditTransID = null; public String GLCreditTransIDStartsWith = null; public String GLCreditTransIDEndsWith = null; public String GLCreditTransIDContains = null; public String GLCreditTransIDLike = null; public ArrayList GLCreditTransIDBetween = null; public ArrayList GLCreditTransIDIn = null; public BigDecimal Amount = null; public BigDecimal AmountGreaterThanOrEqualTo = null; public BigDecimal AmountGreaterThan = null; public BigDecimal AmountLessThan = null; public BigDecimal AmountLessThanOrEqualTo = null; public BigDecimal AmountNotEqualTo = null; public ArrayList AmountBetween = null; public ArrayList AmountIn = null; public String getGlTranAllocsID() { return GLTranAllocsID; } public GL_TranAllocsQuery setGlTranAllocsID(String value) { this.GLTranAllocsID = value; return this; } public String getGlTranAllocsIDStartsWith() { return GLTranAllocsIDStartsWith; } public GL_TranAllocsQuery setGlTranAllocsIDStartsWith(String value) { this.GLTranAllocsIDStartsWith = value; return this; } public String getGlTranAllocsIDEndsWith() { return GLTranAllocsIDEndsWith; } public GL_TranAllocsQuery setGlTranAllocsIDEndsWith(String value) { this.GLTranAllocsIDEndsWith = value; return this; } public String getGlTranAllocsIDContains() { return GLTranAllocsIDContains; } public GL_TranAllocsQuery setGlTranAllocsIDContains(String value) { this.GLTranAllocsIDContains = value; return this; } public String getGlTranAllocsIDLike() { return GLTranAllocsIDLike; } public GL_TranAllocsQuery setGlTranAllocsIDLike(String value) { this.GLTranAllocsIDLike = value; return this; } public ArrayList getGlTranAllocsIDBetween() { return GLTranAllocsIDBetween; } public GL_TranAllocsQuery setGlTranAllocsIDBetween(ArrayList value) { this.GLTranAllocsIDBetween = value; return this; } public ArrayList getGlTranAllocsIDIn() { return GLTranAllocsIDIn; } public GL_TranAllocsQuery setGlTranAllocsIDIn(ArrayList value) { this.GLTranAllocsIDIn = value; return this; } public String getGlDebitTransID() { return GLDebitTransID; } public GL_TranAllocsQuery setGlDebitTransID(String value) { this.GLDebitTransID = value; return this; } public String getGlDebitTransIDStartsWith() { return GLDebitTransIDStartsWith; } public GL_TranAllocsQuery setGlDebitTransIDStartsWith(String value) { this.GLDebitTransIDStartsWith = value; return this; } public String getGlDebitTransIDEndsWith() { return GLDebitTransIDEndsWith; } public GL_TranAllocsQuery setGlDebitTransIDEndsWith(String value) { this.GLDebitTransIDEndsWith = value; return this; } public String getGlDebitTransIDContains() { return GLDebitTransIDContains; } public GL_TranAllocsQuery setGlDebitTransIDContains(String value) { this.GLDebitTransIDContains = value; return this; } public String getGlDebitTransIDLike() { return GLDebitTransIDLike; } public GL_TranAllocsQuery setGlDebitTransIDLike(String value) { this.GLDebitTransIDLike = value; return this; } public ArrayList getGlDebitTransIDBetween() { return GLDebitTransIDBetween; } public GL_TranAllocsQuery setGlDebitTransIDBetween(ArrayList value) { this.GLDebitTransIDBetween = value; return this; } public ArrayList getGlDebitTransIDIn() { return GLDebitTransIDIn; } public GL_TranAllocsQuery setGlDebitTransIDIn(ArrayList value) { this.GLDebitTransIDIn = value; return this; } public String getGlCreditTransID() { return GLCreditTransID; } public GL_TranAllocsQuery setGlCreditTransID(String value) { this.GLCreditTransID = value; return this; } public String getGlCreditTransIDStartsWith() { return GLCreditTransIDStartsWith; } public GL_TranAllocsQuery setGlCreditTransIDStartsWith(String value) { this.GLCreditTransIDStartsWith = value; return this; } public String getGlCreditTransIDEndsWith() { return GLCreditTransIDEndsWith; } public GL_TranAllocsQuery setGlCreditTransIDEndsWith(String value) { this.GLCreditTransIDEndsWith = value; return this; } public String getGlCreditTransIDContains() { return GLCreditTransIDContains; } public GL_TranAllocsQuery setGlCreditTransIDContains(String value) { this.GLCreditTransIDContains = value; return this; } public String getGlCreditTransIDLike() { return GLCreditTransIDLike; } public GL_TranAllocsQuery setGlCreditTransIDLike(String value) { this.GLCreditTransIDLike = value; return this; } public ArrayList getGlCreditTransIDBetween() { return GLCreditTransIDBetween; } public GL_TranAllocsQuery setGlCreditTransIDBetween(ArrayList value) { this.GLCreditTransIDBetween = value; return this; } public ArrayList getGlCreditTransIDIn() { return GLCreditTransIDIn; } public GL_TranAllocsQuery setGlCreditTransIDIn(ArrayList value) { this.GLCreditTransIDIn = value; return this; } public BigDecimal getAmount() { return Amount; } public GL_TranAllocsQuery setAmount(BigDecimal value) { this.Amount = value; return this; } public BigDecimal getAmountGreaterThanOrEqualTo() { return AmountGreaterThanOrEqualTo; } public GL_TranAllocsQuery setAmountGreaterThanOrEqualTo(BigDecimal value) { this.AmountGreaterThanOrEqualTo = value; return this; } public BigDecimal getAmountGreaterThan() { return AmountGreaterThan; } public GL_TranAllocsQuery setAmountGreaterThan(BigDecimal value) { this.AmountGreaterThan = value; return this; } public BigDecimal getAmountLessThan() { return AmountLessThan; } public GL_TranAllocsQuery setAmountLessThan(BigDecimal value) { this.AmountLessThan = value; return this; } public BigDecimal getAmountLessThanOrEqualTo() { return AmountLessThanOrEqualTo; } public GL_TranAllocsQuery setAmountLessThanOrEqualTo(BigDecimal value) { this.AmountLessThanOrEqualTo = value; return this; } public BigDecimal getAmountNotEqualTo() { return AmountNotEqualTo; } public GL_TranAllocsQuery setAmountNotEqualTo(BigDecimal value) { this.AmountNotEqualTo = value; return this; } public ArrayList getAmountBetween() { return AmountBetween; } public GL_TranAllocsQuery setAmountBetween(ArrayList value) { this.AmountBetween = value; return this; } public ArrayList getAmountIn() { return AmountIn; } public GL_TranAllocsQuery setAmountIn(ArrayList value) { this.AmountIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class GL_TranCodesQuery extends QueryDb implements IReturn> { public String GLTransCodeID = null; public String GLTransCodeIDStartsWith = null; public String GLTransCodeIDEndsWith = null; public String GLTransCodeIDContains = null; public String GLTransCodeIDLike = null; public ArrayList GLTransCodeIDBetween = null; public ArrayList GLTransCodeIDIn = null; public Date LastSavedDateTime = null; public Date LastSavedDateTimeGreaterThanOrEqualTo = null; public Date LastSavedDateTimeGreaterThan = null; public Date LastSavedDateTimeLessThan = null; public Date LastSavedDateTimeLessThanOrEqualTo = null; public Date LastSavedDateTimeNotEqualTo = null; public ArrayList LastSavedDateTimeBetween = null; public ArrayList LastSavedDateTimeIn = null; public String Description = null; public String DescriptionStartsWith = null; public String DescriptionEndsWith = null; public String DescriptionContains = null; public String DescriptionLike = null; public ArrayList DescriptionBetween = null; public ArrayList DescriptionIn = null; public Integer TransNo = null; public Integer TransNoGreaterThanOrEqualTo = null; public Integer TransNoGreaterThan = null; public Integer TransNoLessThan = null; public Integer TransNoLessThanOrEqualTo = null; public Integer TransNoNotEqualTo = null; public ArrayList TransNoBetween = null; public ArrayList TransNoIn = null; public String getGlTransCodeID() { return GLTransCodeID; } public GL_TranCodesQuery setGlTransCodeID(String value) { this.GLTransCodeID = value; return this; } public String getGlTransCodeIDStartsWith() { return GLTransCodeIDStartsWith; } public GL_TranCodesQuery setGlTransCodeIDStartsWith(String value) { this.GLTransCodeIDStartsWith = value; return this; } public String getGlTransCodeIDEndsWith() { return GLTransCodeIDEndsWith; } public GL_TranCodesQuery setGlTransCodeIDEndsWith(String value) { this.GLTransCodeIDEndsWith = value; return this; } public String getGlTransCodeIDContains() { return GLTransCodeIDContains; } public GL_TranCodesQuery setGlTransCodeIDContains(String value) { this.GLTransCodeIDContains = value; return this; } public String getGlTransCodeIDLike() { return GLTransCodeIDLike; } public GL_TranCodesQuery setGlTransCodeIDLike(String value) { this.GLTransCodeIDLike = value; return this; } public ArrayList getGlTransCodeIDBetween() { return GLTransCodeIDBetween; } public GL_TranCodesQuery setGlTransCodeIDBetween(ArrayList value) { this.GLTransCodeIDBetween = value; return this; } public ArrayList getGlTransCodeIDIn() { return GLTransCodeIDIn; } public GL_TranCodesQuery setGlTransCodeIDIn(ArrayList value) { this.GLTransCodeIDIn = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public GL_TranCodesQuery setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getLastSavedDateTimeGreaterThanOrEqualTo() { return LastSavedDateTimeGreaterThanOrEqualTo; } public GL_TranCodesQuery setLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.LastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeGreaterThan() { return LastSavedDateTimeGreaterThan; } public GL_TranCodesQuery setLastSavedDateTimeGreaterThan(Date value) { this.LastSavedDateTimeGreaterThan = value; return this; } public Date getLastSavedDateTimeLessThan() { return LastSavedDateTimeLessThan; } public GL_TranCodesQuery setLastSavedDateTimeLessThan(Date value) { this.LastSavedDateTimeLessThan = value; return this; } public Date getLastSavedDateTimeLessThanOrEqualTo() { return LastSavedDateTimeLessThanOrEqualTo; } public GL_TranCodesQuery setLastSavedDateTimeLessThanOrEqualTo(Date value) { this.LastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeNotEqualTo() { return LastSavedDateTimeNotEqualTo; } public GL_TranCodesQuery setLastSavedDateTimeNotEqualTo(Date value) { this.LastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getLastSavedDateTimeBetween() { return LastSavedDateTimeBetween; } public GL_TranCodesQuery setLastSavedDateTimeBetween(ArrayList value) { this.LastSavedDateTimeBetween = value; return this; } public ArrayList getLastSavedDateTimeIn() { return LastSavedDateTimeIn; } public GL_TranCodesQuery setLastSavedDateTimeIn(ArrayList value) { this.LastSavedDateTimeIn = value; return this; } public String getDescription() { return Description; } public GL_TranCodesQuery setDescription(String value) { this.Description = value; return this; } public String getDescriptionStartsWith() { return DescriptionStartsWith; } public GL_TranCodesQuery setDescriptionStartsWith(String value) { this.DescriptionStartsWith = value; return this; } public String getDescriptionEndsWith() { return DescriptionEndsWith; } public GL_TranCodesQuery setDescriptionEndsWith(String value) { this.DescriptionEndsWith = value; return this; } public String getDescriptionContains() { return DescriptionContains; } public GL_TranCodesQuery setDescriptionContains(String value) { this.DescriptionContains = value; return this; } public String getDescriptionLike() { return DescriptionLike; } public GL_TranCodesQuery setDescriptionLike(String value) { this.DescriptionLike = value; return this; } public ArrayList getDescriptionBetween() { return DescriptionBetween; } public GL_TranCodesQuery setDescriptionBetween(ArrayList value) { this.DescriptionBetween = value; return this; } public ArrayList getDescriptionIn() { return DescriptionIn; } public GL_TranCodesQuery setDescriptionIn(ArrayList value) { this.DescriptionIn = value; return this; } public Integer getTransNo() { return TransNo; } public GL_TranCodesQuery setTransNo(Integer value) { this.TransNo = value; return this; } public Integer getTransNoGreaterThanOrEqualTo() { return TransNoGreaterThanOrEqualTo; } public GL_TranCodesQuery setTransNoGreaterThanOrEqualTo(Integer value) { this.TransNoGreaterThanOrEqualTo = value; return this; } public Integer getTransNoGreaterThan() { return TransNoGreaterThan; } public GL_TranCodesQuery setTransNoGreaterThan(Integer value) { this.TransNoGreaterThan = value; return this; } public Integer getTransNoLessThan() { return TransNoLessThan; } public GL_TranCodesQuery setTransNoLessThan(Integer value) { this.TransNoLessThan = value; return this; } public Integer getTransNoLessThanOrEqualTo() { return TransNoLessThanOrEqualTo; } public GL_TranCodesQuery setTransNoLessThanOrEqualTo(Integer value) { this.TransNoLessThanOrEqualTo = value; return this; } public Integer getTransNoNotEqualTo() { return TransNoNotEqualTo; } public GL_TranCodesQuery setTransNoNotEqualTo(Integer value) { this.TransNoNotEqualTo = value; return this; } public ArrayList getTransNoBetween() { return TransNoBetween; } public GL_TranCodesQuery setTransNoBetween(ArrayList value) { this.TransNoBetween = value; return this; } public ArrayList getTransNoIn() { return TransNoIn; } public GL_TranCodesQuery setTransNoIn(ArrayList value) { this.TransNoIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class GL_TransactionCode1Query extends QueryDb implements IReturn> { public String RecID = null; public String RecIDStartsWith = null; public String RecIDEndsWith = null; public String RecIDContains = null; public String RecIDLike = null; public ArrayList RecIDBetween = null; public ArrayList RecIDIn = null; public String Name = null; public String NameStartsWith = null; public String NameEndsWith = null; public String NameContains = null; public String NameLike = null; public ArrayList NameBetween = null; public ArrayList NameIn = null; public Date CreatedDateTime = null; public Date CreatedDateTimeGreaterThanOrEqualTo = null; public Date CreatedDateTimeGreaterThan = null; public Date CreatedDateTimeLessThan = null; public Date CreatedDateTimeLessThanOrEqualTo = null; public Date CreatedDateTimeNotEqualTo = null; public ArrayList CreatedDateTimeBetween = null; public ArrayList CreatedDateTimeIn = null; public String HR_Staff_CreatedBy = null; public String HR_Staff_CreatedByStartsWith = null; public String HR_Staff_CreatedByEndsWith = null; public String HR_Staff_CreatedByContains = null; public String HR_Staff_CreatedByLike = null; public ArrayList HR_Staff_CreatedByBetween = null; public ArrayList HR_Staff_CreatedByIn = null; public Date LastSavedDateTime = null; public Date LastSavedDateTimeGreaterThanOrEqualTo = null; public Date LastSavedDateTimeGreaterThan = null; public Date LastSavedDateTimeLessThan = null; public Date LastSavedDateTimeLessThanOrEqualTo = null; public Date LastSavedDateTimeNotEqualTo = null; public ArrayList LastSavedDateTimeBetween = null; public ArrayList LastSavedDateTimeIn = null; public String HR_Staff_LastSavedBy = null; public String HR_Staff_LastSavedByStartsWith = null; public String HR_Staff_LastSavedByEndsWith = null; public String HR_Staff_LastSavedByContains = null; public String HR_Staff_LastSavedByLike = null; public ArrayList HR_Staff_LastSavedByBetween = null; public ArrayList HR_Staff_LastSavedByIn = null; public Integer ItemNo = null; public Integer ItemNoGreaterThanOrEqualTo = null; public Integer ItemNoGreaterThan = null; public Integer ItemNoLessThan = null; public Integer ItemNoLessThanOrEqualTo = null; public Integer ItemNoNotEqualTo = null; public ArrayList ItemNoBetween = null; public ArrayList ItemNoIn = null; public ArrayList RowHash = null; public String getRecID() { return RecID; } public GL_TransactionCode1Query setRecID(String value) { this.RecID = value; return this; } public String getRecIDStartsWith() { return RecIDStartsWith; } public GL_TransactionCode1Query setRecIDStartsWith(String value) { this.RecIDStartsWith = value; return this; } public String getRecIDEndsWith() { return RecIDEndsWith; } public GL_TransactionCode1Query setRecIDEndsWith(String value) { this.RecIDEndsWith = value; return this; } public String getRecIDContains() { return RecIDContains; } public GL_TransactionCode1Query setRecIDContains(String value) { this.RecIDContains = value; return this; } public String getRecIDLike() { return RecIDLike; } public GL_TransactionCode1Query setRecIDLike(String value) { this.RecIDLike = value; return this; } public ArrayList getRecIDBetween() { return RecIDBetween; } public GL_TransactionCode1Query setRecIDBetween(ArrayList value) { this.RecIDBetween = value; return this; } public ArrayList getRecIDIn() { return RecIDIn; } public GL_TransactionCode1Query setRecIDIn(ArrayList value) { this.RecIDIn = value; return this; } public String getName() { return Name; } public GL_TransactionCode1Query setName(String value) { this.Name = value; return this; } public String getNameStartsWith() { return NameStartsWith; } public GL_TransactionCode1Query setNameStartsWith(String value) { this.NameStartsWith = value; return this; } public String getNameEndsWith() { return NameEndsWith; } public GL_TransactionCode1Query setNameEndsWith(String value) { this.NameEndsWith = value; return this; } public String getNameContains() { return NameContains; } public GL_TransactionCode1Query setNameContains(String value) { this.NameContains = value; return this; } public String getNameLike() { return NameLike; } public GL_TransactionCode1Query setNameLike(String value) { this.NameLike = value; return this; } public ArrayList getNameBetween() { return NameBetween; } public GL_TransactionCode1Query setNameBetween(ArrayList value) { this.NameBetween = value; return this; } public ArrayList getNameIn() { return NameIn; } public GL_TransactionCode1Query setNameIn(ArrayList value) { this.NameIn = value; return this; } public Date getCreatedDateTime() { return CreatedDateTime; } public GL_TransactionCode1Query setCreatedDateTime(Date value) { this.CreatedDateTime = value; return this; } public Date getCreatedDateTimeGreaterThanOrEqualTo() { return CreatedDateTimeGreaterThanOrEqualTo; } public GL_TransactionCode1Query setCreatedDateTimeGreaterThanOrEqualTo(Date value) { this.CreatedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getCreatedDateTimeGreaterThan() { return CreatedDateTimeGreaterThan; } public GL_TransactionCode1Query setCreatedDateTimeGreaterThan(Date value) { this.CreatedDateTimeGreaterThan = value; return this; } public Date getCreatedDateTimeLessThan() { return CreatedDateTimeLessThan; } public GL_TransactionCode1Query setCreatedDateTimeLessThan(Date value) { this.CreatedDateTimeLessThan = value; return this; } public Date getCreatedDateTimeLessThanOrEqualTo() { return CreatedDateTimeLessThanOrEqualTo; } public GL_TransactionCode1Query setCreatedDateTimeLessThanOrEqualTo(Date value) { this.CreatedDateTimeLessThanOrEqualTo = value; return this; } public Date getCreatedDateTimeNotEqualTo() { return CreatedDateTimeNotEqualTo; } public GL_TransactionCode1Query setCreatedDateTimeNotEqualTo(Date value) { this.CreatedDateTimeNotEqualTo = value; return this; } public ArrayList getCreatedDateTimeBetween() { return CreatedDateTimeBetween; } public GL_TransactionCode1Query setCreatedDateTimeBetween(ArrayList value) { this.CreatedDateTimeBetween = value; return this; } public ArrayList getCreatedDateTimeIn() { return CreatedDateTimeIn; } public GL_TransactionCode1Query setCreatedDateTimeIn(ArrayList value) { this.CreatedDateTimeIn = value; return this; } public String getHrStaffCreatedBy() { return HR_Staff_CreatedBy; } public GL_TransactionCode1Query setHrStaffCreatedBy(String value) { this.HR_Staff_CreatedBy = value; return this; } public String getHrStaffCreatedByStartsWith() { return HR_Staff_CreatedByStartsWith; } public GL_TransactionCode1Query setHrStaffCreatedByStartsWith(String value) { this.HR_Staff_CreatedByStartsWith = value; return this; } public String getHrStaffCreatedByEndsWith() { return HR_Staff_CreatedByEndsWith; } public GL_TransactionCode1Query setHrStaffCreatedByEndsWith(String value) { this.HR_Staff_CreatedByEndsWith = value; return this; } public String getHrStaffCreatedByContains() { return HR_Staff_CreatedByContains; } public GL_TransactionCode1Query setHrStaffCreatedByContains(String value) { this.HR_Staff_CreatedByContains = value; return this; } public String getHrStaffCreatedByLike() { return HR_Staff_CreatedByLike; } public GL_TransactionCode1Query setHrStaffCreatedByLike(String value) { this.HR_Staff_CreatedByLike = value; return this; } public ArrayList getHrStaffCreatedByBetween() { return HR_Staff_CreatedByBetween; } public GL_TransactionCode1Query setHrStaffCreatedByBetween(ArrayList value) { this.HR_Staff_CreatedByBetween = value; return this; } public ArrayList getHrStaffCreatedByIn() { return HR_Staff_CreatedByIn; } public GL_TransactionCode1Query setHrStaffCreatedByIn(ArrayList value) { this.HR_Staff_CreatedByIn = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public GL_TransactionCode1Query setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getLastSavedDateTimeGreaterThanOrEqualTo() { return LastSavedDateTimeGreaterThanOrEqualTo; } public GL_TransactionCode1Query setLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.LastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeGreaterThan() { return LastSavedDateTimeGreaterThan; } public GL_TransactionCode1Query setLastSavedDateTimeGreaterThan(Date value) { this.LastSavedDateTimeGreaterThan = value; return this; } public Date getLastSavedDateTimeLessThan() { return LastSavedDateTimeLessThan; } public GL_TransactionCode1Query setLastSavedDateTimeLessThan(Date value) { this.LastSavedDateTimeLessThan = value; return this; } public Date getLastSavedDateTimeLessThanOrEqualTo() { return LastSavedDateTimeLessThanOrEqualTo; } public GL_TransactionCode1Query setLastSavedDateTimeLessThanOrEqualTo(Date value) { this.LastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeNotEqualTo() { return LastSavedDateTimeNotEqualTo; } public GL_TransactionCode1Query setLastSavedDateTimeNotEqualTo(Date value) { this.LastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getLastSavedDateTimeBetween() { return LastSavedDateTimeBetween; } public GL_TransactionCode1Query setLastSavedDateTimeBetween(ArrayList value) { this.LastSavedDateTimeBetween = value; return this; } public ArrayList getLastSavedDateTimeIn() { return LastSavedDateTimeIn; } public GL_TransactionCode1Query setLastSavedDateTimeIn(ArrayList value) { this.LastSavedDateTimeIn = value; return this; } public String getHrStaffLastSavedBy() { return HR_Staff_LastSavedBy; } public GL_TransactionCode1Query setHrStaffLastSavedBy(String value) { this.HR_Staff_LastSavedBy = value; return this; } public String getHrStaffLastSavedByStartsWith() { return HR_Staff_LastSavedByStartsWith; } public GL_TransactionCode1Query setHrStaffLastSavedByStartsWith(String value) { this.HR_Staff_LastSavedByStartsWith = value; return this; } public String getHrStaffLastSavedByEndsWith() { return HR_Staff_LastSavedByEndsWith; } public GL_TransactionCode1Query setHrStaffLastSavedByEndsWith(String value) { this.HR_Staff_LastSavedByEndsWith = value; return this; } public String getHrStaffLastSavedByContains() { return HR_Staff_LastSavedByContains; } public GL_TransactionCode1Query setHrStaffLastSavedByContains(String value) { this.HR_Staff_LastSavedByContains = value; return this; } public String getHrStaffLastSavedByLike() { return HR_Staff_LastSavedByLike; } public GL_TransactionCode1Query setHrStaffLastSavedByLike(String value) { this.HR_Staff_LastSavedByLike = value; return this; } public ArrayList getHrStaffLastSavedByBetween() { return HR_Staff_LastSavedByBetween; } public GL_TransactionCode1Query setHrStaffLastSavedByBetween(ArrayList value) { this.HR_Staff_LastSavedByBetween = value; return this; } public ArrayList getHrStaffLastSavedByIn() { return HR_Staff_LastSavedByIn; } public GL_TransactionCode1Query setHrStaffLastSavedByIn(ArrayList value) { this.HR_Staff_LastSavedByIn = value; return this; } public Integer getItemNo() { return ItemNo; } public GL_TransactionCode1Query setItemNo(Integer value) { this.ItemNo = value; return this; } public Integer getItemNoGreaterThanOrEqualTo() { return ItemNoGreaterThanOrEqualTo; } public GL_TransactionCode1Query setItemNoGreaterThanOrEqualTo(Integer value) { this.ItemNoGreaterThanOrEqualTo = value; return this; } public Integer getItemNoGreaterThan() { return ItemNoGreaterThan; } public GL_TransactionCode1Query setItemNoGreaterThan(Integer value) { this.ItemNoGreaterThan = value; return this; } public Integer getItemNoLessThan() { return ItemNoLessThan; } public GL_TransactionCode1Query setItemNoLessThan(Integer value) { this.ItemNoLessThan = value; return this; } public Integer getItemNoLessThanOrEqualTo() { return ItemNoLessThanOrEqualTo; } public GL_TransactionCode1Query setItemNoLessThanOrEqualTo(Integer value) { this.ItemNoLessThanOrEqualTo = value; return this; } public Integer getItemNoNotEqualTo() { return ItemNoNotEqualTo; } public GL_TransactionCode1Query setItemNoNotEqualTo(Integer value) { this.ItemNoNotEqualTo = value; return this; } public ArrayList getItemNoBetween() { return ItemNoBetween; } public GL_TransactionCode1Query setItemNoBetween(ArrayList value) { this.ItemNoBetween = value; return this; } public ArrayList getItemNoIn() { return ItemNoIn; } public GL_TransactionCode1Query setItemNoIn(ArrayList value) { this.ItemNoIn = value; return this; } public ArrayList getRowHash() { return RowHash; } public GL_TransactionCode1Query setRowHash(ArrayList value) { this.RowHash = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class GL_TransactionCode2Query extends QueryDb implements IReturn> { public String RecID = null; public String RecIDStartsWith = null; public String RecIDEndsWith = null; public String RecIDContains = null; public String RecIDLike = null; public ArrayList RecIDBetween = null; public ArrayList RecIDIn = null; public String Name = null; public String NameStartsWith = null; public String NameEndsWith = null; public String NameContains = null; public String NameLike = null; public ArrayList NameBetween = null; public ArrayList NameIn = null; public Date CreatedDateTime = null; public Date CreatedDateTimeGreaterThanOrEqualTo = null; public Date CreatedDateTimeGreaterThan = null; public Date CreatedDateTimeLessThan = null; public Date CreatedDateTimeLessThanOrEqualTo = null; public Date CreatedDateTimeNotEqualTo = null; public ArrayList CreatedDateTimeBetween = null; public ArrayList CreatedDateTimeIn = null; public String HR_Staff_CreatedBy = null; public String HR_Staff_CreatedByStartsWith = null; public String HR_Staff_CreatedByEndsWith = null; public String HR_Staff_CreatedByContains = null; public String HR_Staff_CreatedByLike = null; public ArrayList HR_Staff_CreatedByBetween = null; public ArrayList HR_Staff_CreatedByIn = null; public Date LastSavedDateTime = null; public Date LastSavedDateTimeGreaterThanOrEqualTo = null; public Date LastSavedDateTimeGreaterThan = null; public Date LastSavedDateTimeLessThan = null; public Date LastSavedDateTimeLessThanOrEqualTo = null; public Date LastSavedDateTimeNotEqualTo = null; public ArrayList LastSavedDateTimeBetween = null; public ArrayList LastSavedDateTimeIn = null; public String HR_Staff_LastSavedBy = null; public String HR_Staff_LastSavedByStartsWith = null; public String HR_Staff_LastSavedByEndsWith = null; public String HR_Staff_LastSavedByContains = null; public String HR_Staff_LastSavedByLike = null; public ArrayList HR_Staff_LastSavedByBetween = null; public ArrayList HR_Staff_LastSavedByIn = null; public Integer ItemNo = null; public Integer ItemNoGreaterThanOrEqualTo = null; public Integer ItemNoGreaterThan = null; public Integer ItemNoLessThan = null; public Integer ItemNoLessThanOrEqualTo = null; public Integer ItemNoNotEqualTo = null; public ArrayList ItemNoBetween = null; public ArrayList ItemNoIn = null; public ArrayList RowHash = null; public String getRecID() { return RecID; } public GL_TransactionCode2Query setRecID(String value) { this.RecID = value; return this; } public String getRecIDStartsWith() { return RecIDStartsWith; } public GL_TransactionCode2Query setRecIDStartsWith(String value) { this.RecIDStartsWith = value; return this; } public String getRecIDEndsWith() { return RecIDEndsWith; } public GL_TransactionCode2Query setRecIDEndsWith(String value) { this.RecIDEndsWith = value; return this; } public String getRecIDContains() { return RecIDContains; } public GL_TransactionCode2Query setRecIDContains(String value) { this.RecIDContains = value; return this; } public String getRecIDLike() { return RecIDLike; } public GL_TransactionCode2Query setRecIDLike(String value) { this.RecIDLike = value; return this; } public ArrayList getRecIDBetween() { return RecIDBetween; } public GL_TransactionCode2Query setRecIDBetween(ArrayList value) { this.RecIDBetween = value; return this; } public ArrayList getRecIDIn() { return RecIDIn; } public GL_TransactionCode2Query setRecIDIn(ArrayList value) { this.RecIDIn = value; return this; } public String getName() { return Name; } public GL_TransactionCode2Query setName(String value) { this.Name = value; return this; } public String getNameStartsWith() { return NameStartsWith; } public GL_TransactionCode2Query setNameStartsWith(String value) { this.NameStartsWith = value; return this; } public String getNameEndsWith() { return NameEndsWith; } public GL_TransactionCode2Query setNameEndsWith(String value) { this.NameEndsWith = value; return this; } public String getNameContains() { return NameContains; } public GL_TransactionCode2Query setNameContains(String value) { this.NameContains = value; return this; } public String getNameLike() { return NameLike; } public GL_TransactionCode2Query setNameLike(String value) { this.NameLike = value; return this; } public ArrayList getNameBetween() { return NameBetween; } public GL_TransactionCode2Query setNameBetween(ArrayList value) { this.NameBetween = value; return this; } public ArrayList getNameIn() { return NameIn; } public GL_TransactionCode2Query setNameIn(ArrayList value) { this.NameIn = value; return this; } public Date getCreatedDateTime() { return CreatedDateTime; } public GL_TransactionCode2Query setCreatedDateTime(Date value) { this.CreatedDateTime = value; return this; } public Date getCreatedDateTimeGreaterThanOrEqualTo() { return CreatedDateTimeGreaterThanOrEqualTo; } public GL_TransactionCode2Query setCreatedDateTimeGreaterThanOrEqualTo(Date value) { this.CreatedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getCreatedDateTimeGreaterThan() { return CreatedDateTimeGreaterThan; } public GL_TransactionCode2Query setCreatedDateTimeGreaterThan(Date value) { this.CreatedDateTimeGreaterThan = value; return this; } public Date getCreatedDateTimeLessThan() { return CreatedDateTimeLessThan; } public GL_TransactionCode2Query setCreatedDateTimeLessThan(Date value) { this.CreatedDateTimeLessThan = value; return this; } public Date getCreatedDateTimeLessThanOrEqualTo() { return CreatedDateTimeLessThanOrEqualTo; } public GL_TransactionCode2Query setCreatedDateTimeLessThanOrEqualTo(Date value) { this.CreatedDateTimeLessThanOrEqualTo = value; return this; } public Date getCreatedDateTimeNotEqualTo() { return CreatedDateTimeNotEqualTo; } public GL_TransactionCode2Query setCreatedDateTimeNotEqualTo(Date value) { this.CreatedDateTimeNotEqualTo = value; return this; } public ArrayList getCreatedDateTimeBetween() { return CreatedDateTimeBetween; } public GL_TransactionCode2Query setCreatedDateTimeBetween(ArrayList value) { this.CreatedDateTimeBetween = value; return this; } public ArrayList getCreatedDateTimeIn() { return CreatedDateTimeIn; } public GL_TransactionCode2Query setCreatedDateTimeIn(ArrayList value) { this.CreatedDateTimeIn = value; return this; } public String getHrStaffCreatedBy() { return HR_Staff_CreatedBy; } public GL_TransactionCode2Query setHrStaffCreatedBy(String value) { this.HR_Staff_CreatedBy = value; return this; } public String getHrStaffCreatedByStartsWith() { return HR_Staff_CreatedByStartsWith; } public GL_TransactionCode2Query setHrStaffCreatedByStartsWith(String value) { this.HR_Staff_CreatedByStartsWith = value; return this; } public String getHrStaffCreatedByEndsWith() { return HR_Staff_CreatedByEndsWith; } public GL_TransactionCode2Query setHrStaffCreatedByEndsWith(String value) { this.HR_Staff_CreatedByEndsWith = value; return this; } public String getHrStaffCreatedByContains() { return HR_Staff_CreatedByContains; } public GL_TransactionCode2Query setHrStaffCreatedByContains(String value) { this.HR_Staff_CreatedByContains = value; return this; } public String getHrStaffCreatedByLike() { return HR_Staff_CreatedByLike; } public GL_TransactionCode2Query setHrStaffCreatedByLike(String value) { this.HR_Staff_CreatedByLike = value; return this; } public ArrayList getHrStaffCreatedByBetween() { return HR_Staff_CreatedByBetween; } public GL_TransactionCode2Query setHrStaffCreatedByBetween(ArrayList value) { this.HR_Staff_CreatedByBetween = value; return this; } public ArrayList getHrStaffCreatedByIn() { return HR_Staff_CreatedByIn; } public GL_TransactionCode2Query setHrStaffCreatedByIn(ArrayList value) { this.HR_Staff_CreatedByIn = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public GL_TransactionCode2Query setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getLastSavedDateTimeGreaterThanOrEqualTo() { return LastSavedDateTimeGreaterThanOrEqualTo; } public GL_TransactionCode2Query setLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.LastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeGreaterThan() { return LastSavedDateTimeGreaterThan; } public GL_TransactionCode2Query setLastSavedDateTimeGreaterThan(Date value) { this.LastSavedDateTimeGreaterThan = value; return this; } public Date getLastSavedDateTimeLessThan() { return LastSavedDateTimeLessThan; } public GL_TransactionCode2Query setLastSavedDateTimeLessThan(Date value) { this.LastSavedDateTimeLessThan = value; return this; } public Date getLastSavedDateTimeLessThanOrEqualTo() { return LastSavedDateTimeLessThanOrEqualTo; } public GL_TransactionCode2Query setLastSavedDateTimeLessThanOrEqualTo(Date value) { this.LastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeNotEqualTo() { return LastSavedDateTimeNotEqualTo; } public GL_TransactionCode2Query setLastSavedDateTimeNotEqualTo(Date value) { this.LastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getLastSavedDateTimeBetween() { return LastSavedDateTimeBetween; } public GL_TransactionCode2Query setLastSavedDateTimeBetween(ArrayList value) { this.LastSavedDateTimeBetween = value; return this; } public ArrayList getLastSavedDateTimeIn() { return LastSavedDateTimeIn; } public GL_TransactionCode2Query setLastSavedDateTimeIn(ArrayList value) { this.LastSavedDateTimeIn = value; return this; } public String getHrStaffLastSavedBy() { return HR_Staff_LastSavedBy; } public GL_TransactionCode2Query setHrStaffLastSavedBy(String value) { this.HR_Staff_LastSavedBy = value; return this; } public String getHrStaffLastSavedByStartsWith() { return HR_Staff_LastSavedByStartsWith; } public GL_TransactionCode2Query setHrStaffLastSavedByStartsWith(String value) { this.HR_Staff_LastSavedByStartsWith = value; return this; } public String getHrStaffLastSavedByEndsWith() { return HR_Staff_LastSavedByEndsWith; } public GL_TransactionCode2Query setHrStaffLastSavedByEndsWith(String value) { this.HR_Staff_LastSavedByEndsWith = value; return this; } public String getHrStaffLastSavedByContains() { return HR_Staff_LastSavedByContains; } public GL_TransactionCode2Query setHrStaffLastSavedByContains(String value) { this.HR_Staff_LastSavedByContains = value; return this; } public String getHrStaffLastSavedByLike() { return HR_Staff_LastSavedByLike; } public GL_TransactionCode2Query setHrStaffLastSavedByLike(String value) { this.HR_Staff_LastSavedByLike = value; return this; } public ArrayList getHrStaffLastSavedByBetween() { return HR_Staff_LastSavedByBetween; } public GL_TransactionCode2Query setHrStaffLastSavedByBetween(ArrayList value) { this.HR_Staff_LastSavedByBetween = value; return this; } public ArrayList getHrStaffLastSavedByIn() { return HR_Staff_LastSavedByIn; } public GL_TransactionCode2Query setHrStaffLastSavedByIn(ArrayList value) { this.HR_Staff_LastSavedByIn = value; return this; } public Integer getItemNo() { return ItemNo; } public GL_TransactionCode2Query setItemNo(Integer value) { this.ItemNo = value; return this; } public Integer getItemNoGreaterThanOrEqualTo() { return ItemNoGreaterThanOrEqualTo; } public GL_TransactionCode2Query setItemNoGreaterThanOrEqualTo(Integer value) { this.ItemNoGreaterThanOrEqualTo = value; return this; } public Integer getItemNoGreaterThan() { return ItemNoGreaterThan; } public GL_TransactionCode2Query setItemNoGreaterThan(Integer value) { this.ItemNoGreaterThan = value; return this; } public Integer getItemNoLessThan() { return ItemNoLessThan; } public GL_TransactionCode2Query setItemNoLessThan(Integer value) { this.ItemNoLessThan = value; return this; } public Integer getItemNoLessThanOrEqualTo() { return ItemNoLessThanOrEqualTo; } public GL_TransactionCode2Query setItemNoLessThanOrEqualTo(Integer value) { this.ItemNoLessThanOrEqualTo = value; return this; } public Integer getItemNoNotEqualTo() { return ItemNoNotEqualTo; } public GL_TransactionCode2Query setItemNoNotEqualTo(Integer value) { this.ItemNoNotEqualTo = value; return this; } public ArrayList getItemNoBetween() { return ItemNoBetween; } public GL_TransactionCode2Query setItemNoBetween(ArrayList value) { this.ItemNoBetween = value; return this; } public ArrayList getItemNoIn() { return ItemNoIn; } public GL_TransactionCode2Query setItemNoIn(ArrayList value) { this.ItemNoIn = value; return this; } public ArrayList getRowHash() { return RowHash; } public GL_TransactionCode2Query setRowHash(ArrayList value) { this.RowHash = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class GL_TransactionCode3Query extends QueryDb implements IReturn> { public String RecID = null; public String RecIDStartsWith = null; public String RecIDEndsWith = null; public String RecIDContains = null; public String RecIDLike = null; public ArrayList RecIDBetween = null; public ArrayList RecIDIn = null; public String Name = null; public String NameStartsWith = null; public String NameEndsWith = null; public String NameContains = null; public String NameLike = null; public ArrayList NameBetween = null; public ArrayList NameIn = null; public Date CreatedDateTime = null; public Date CreatedDateTimeGreaterThanOrEqualTo = null; public Date CreatedDateTimeGreaterThan = null; public Date CreatedDateTimeLessThan = null; public Date CreatedDateTimeLessThanOrEqualTo = null; public Date CreatedDateTimeNotEqualTo = null; public ArrayList CreatedDateTimeBetween = null; public ArrayList CreatedDateTimeIn = null; public String HR_Staff_CreatedBy = null; public String HR_Staff_CreatedByStartsWith = null; public String HR_Staff_CreatedByEndsWith = null; public String HR_Staff_CreatedByContains = null; public String HR_Staff_CreatedByLike = null; public ArrayList HR_Staff_CreatedByBetween = null; public ArrayList HR_Staff_CreatedByIn = null; public Date LastSavedDateTime = null; public Date LastSavedDateTimeGreaterThanOrEqualTo = null; public Date LastSavedDateTimeGreaterThan = null; public Date LastSavedDateTimeLessThan = null; public Date LastSavedDateTimeLessThanOrEqualTo = null; public Date LastSavedDateTimeNotEqualTo = null; public ArrayList LastSavedDateTimeBetween = null; public ArrayList LastSavedDateTimeIn = null; public String HR_Staff_LastSavedBy = null; public String HR_Staff_LastSavedByStartsWith = null; public String HR_Staff_LastSavedByEndsWith = null; public String HR_Staff_LastSavedByContains = null; public String HR_Staff_LastSavedByLike = null; public ArrayList HR_Staff_LastSavedByBetween = null; public ArrayList HR_Staff_LastSavedByIn = null; public Integer ItemNo = null; public Integer ItemNoGreaterThanOrEqualTo = null; public Integer ItemNoGreaterThan = null; public Integer ItemNoLessThan = null; public Integer ItemNoLessThanOrEqualTo = null; public Integer ItemNoNotEqualTo = null; public ArrayList ItemNoBetween = null; public ArrayList ItemNoIn = null; public ArrayList RowHash = null; public String getRecID() { return RecID; } public GL_TransactionCode3Query setRecID(String value) { this.RecID = value; return this; } public String getRecIDStartsWith() { return RecIDStartsWith; } public GL_TransactionCode3Query setRecIDStartsWith(String value) { this.RecIDStartsWith = value; return this; } public String getRecIDEndsWith() { return RecIDEndsWith; } public GL_TransactionCode3Query setRecIDEndsWith(String value) { this.RecIDEndsWith = value; return this; } public String getRecIDContains() { return RecIDContains; } public GL_TransactionCode3Query setRecIDContains(String value) { this.RecIDContains = value; return this; } public String getRecIDLike() { return RecIDLike; } public GL_TransactionCode3Query setRecIDLike(String value) { this.RecIDLike = value; return this; } public ArrayList getRecIDBetween() { return RecIDBetween; } public GL_TransactionCode3Query setRecIDBetween(ArrayList value) { this.RecIDBetween = value; return this; } public ArrayList getRecIDIn() { return RecIDIn; } public GL_TransactionCode3Query setRecIDIn(ArrayList value) { this.RecIDIn = value; return this; } public String getName() { return Name; } public GL_TransactionCode3Query setName(String value) { this.Name = value; return this; } public String getNameStartsWith() { return NameStartsWith; } public GL_TransactionCode3Query setNameStartsWith(String value) { this.NameStartsWith = value; return this; } public String getNameEndsWith() { return NameEndsWith; } public GL_TransactionCode3Query setNameEndsWith(String value) { this.NameEndsWith = value; return this; } public String getNameContains() { return NameContains; } public GL_TransactionCode3Query setNameContains(String value) { this.NameContains = value; return this; } public String getNameLike() { return NameLike; } public GL_TransactionCode3Query setNameLike(String value) { this.NameLike = value; return this; } public ArrayList getNameBetween() { return NameBetween; } public GL_TransactionCode3Query setNameBetween(ArrayList value) { this.NameBetween = value; return this; } public ArrayList getNameIn() { return NameIn; } public GL_TransactionCode3Query setNameIn(ArrayList value) { this.NameIn = value; return this; } public Date getCreatedDateTime() { return CreatedDateTime; } public GL_TransactionCode3Query setCreatedDateTime(Date value) { this.CreatedDateTime = value; return this; } public Date getCreatedDateTimeGreaterThanOrEqualTo() { return CreatedDateTimeGreaterThanOrEqualTo; } public GL_TransactionCode3Query setCreatedDateTimeGreaterThanOrEqualTo(Date value) { this.CreatedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getCreatedDateTimeGreaterThan() { return CreatedDateTimeGreaterThan; } public GL_TransactionCode3Query setCreatedDateTimeGreaterThan(Date value) { this.CreatedDateTimeGreaterThan = value; return this; } public Date getCreatedDateTimeLessThan() { return CreatedDateTimeLessThan; } public GL_TransactionCode3Query setCreatedDateTimeLessThan(Date value) { this.CreatedDateTimeLessThan = value; return this; } public Date getCreatedDateTimeLessThanOrEqualTo() { return CreatedDateTimeLessThanOrEqualTo; } public GL_TransactionCode3Query setCreatedDateTimeLessThanOrEqualTo(Date value) { this.CreatedDateTimeLessThanOrEqualTo = value; return this; } public Date getCreatedDateTimeNotEqualTo() { return CreatedDateTimeNotEqualTo; } public GL_TransactionCode3Query setCreatedDateTimeNotEqualTo(Date value) { this.CreatedDateTimeNotEqualTo = value; return this; } public ArrayList getCreatedDateTimeBetween() { return CreatedDateTimeBetween; } public GL_TransactionCode3Query setCreatedDateTimeBetween(ArrayList value) { this.CreatedDateTimeBetween = value; return this; } public ArrayList getCreatedDateTimeIn() { return CreatedDateTimeIn; } public GL_TransactionCode3Query setCreatedDateTimeIn(ArrayList value) { this.CreatedDateTimeIn = value; return this; } public String getHrStaffCreatedBy() { return HR_Staff_CreatedBy; } public GL_TransactionCode3Query setHrStaffCreatedBy(String value) { this.HR_Staff_CreatedBy = value; return this; } public String getHrStaffCreatedByStartsWith() { return HR_Staff_CreatedByStartsWith; } public GL_TransactionCode3Query setHrStaffCreatedByStartsWith(String value) { this.HR_Staff_CreatedByStartsWith = value; return this; } public String getHrStaffCreatedByEndsWith() { return HR_Staff_CreatedByEndsWith; } public GL_TransactionCode3Query setHrStaffCreatedByEndsWith(String value) { this.HR_Staff_CreatedByEndsWith = value; return this; } public String getHrStaffCreatedByContains() { return HR_Staff_CreatedByContains; } public GL_TransactionCode3Query setHrStaffCreatedByContains(String value) { this.HR_Staff_CreatedByContains = value; return this; } public String getHrStaffCreatedByLike() { return HR_Staff_CreatedByLike; } public GL_TransactionCode3Query setHrStaffCreatedByLike(String value) { this.HR_Staff_CreatedByLike = value; return this; } public ArrayList getHrStaffCreatedByBetween() { return HR_Staff_CreatedByBetween; } public GL_TransactionCode3Query setHrStaffCreatedByBetween(ArrayList value) { this.HR_Staff_CreatedByBetween = value; return this; } public ArrayList getHrStaffCreatedByIn() { return HR_Staff_CreatedByIn; } public GL_TransactionCode3Query setHrStaffCreatedByIn(ArrayList value) { this.HR_Staff_CreatedByIn = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public GL_TransactionCode3Query setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getLastSavedDateTimeGreaterThanOrEqualTo() { return LastSavedDateTimeGreaterThanOrEqualTo; } public GL_TransactionCode3Query setLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.LastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeGreaterThan() { return LastSavedDateTimeGreaterThan; } public GL_TransactionCode3Query setLastSavedDateTimeGreaterThan(Date value) { this.LastSavedDateTimeGreaterThan = value; return this; } public Date getLastSavedDateTimeLessThan() { return LastSavedDateTimeLessThan; } public GL_TransactionCode3Query setLastSavedDateTimeLessThan(Date value) { this.LastSavedDateTimeLessThan = value; return this; } public Date getLastSavedDateTimeLessThanOrEqualTo() { return LastSavedDateTimeLessThanOrEqualTo; } public GL_TransactionCode3Query setLastSavedDateTimeLessThanOrEqualTo(Date value) { this.LastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeNotEqualTo() { return LastSavedDateTimeNotEqualTo; } public GL_TransactionCode3Query setLastSavedDateTimeNotEqualTo(Date value) { this.LastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getLastSavedDateTimeBetween() { return LastSavedDateTimeBetween; } public GL_TransactionCode3Query setLastSavedDateTimeBetween(ArrayList value) { this.LastSavedDateTimeBetween = value; return this; } public ArrayList getLastSavedDateTimeIn() { return LastSavedDateTimeIn; } public GL_TransactionCode3Query setLastSavedDateTimeIn(ArrayList value) { this.LastSavedDateTimeIn = value; return this; } public String getHrStaffLastSavedBy() { return HR_Staff_LastSavedBy; } public GL_TransactionCode3Query setHrStaffLastSavedBy(String value) { this.HR_Staff_LastSavedBy = value; return this; } public String getHrStaffLastSavedByStartsWith() { return HR_Staff_LastSavedByStartsWith; } public GL_TransactionCode3Query setHrStaffLastSavedByStartsWith(String value) { this.HR_Staff_LastSavedByStartsWith = value; return this; } public String getHrStaffLastSavedByEndsWith() { return HR_Staff_LastSavedByEndsWith; } public GL_TransactionCode3Query setHrStaffLastSavedByEndsWith(String value) { this.HR_Staff_LastSavedByEndsWith = value; return this; } public String getHrStaffLastSavedByContains() { return HR_Staff_LastSavedByContains; } public GL_TransactionCode3Query setHrStaffLastSavedByContains(String value) { this.HR_Staff_LastSavedByContains = value; return this; } public String getHrStaffLastSavedByLike() { return HR_Staff_LastSavedByLike; } public GL_TransactionCode3Query setHrStaffLastSavedByLike(String value) { this.HR_Staff_LastSavedByLike = value; return this; } public ArrayList getHrStaffLastSavedByBetween() { return HR_Staff_LastSavedByBetween; } public GL_TransactionCode3Query setHrStaffLastSavedByBetween(ArrayList value) { this.HR_Staff_LastSavedByBetween = value; return this; } public ArrayList getHrStaffLastSavedByIn() { return HR_Staff_LastSavedByIn; } public GL_TransactionCode3Query setHrStaffLastSavedByIn(ArrayList value) { this.HR_Staff_LastSavedByIn = value; return this; } public Integer getItemNo() { return ItemNo; } public GL_TransactionCode3Query setItemNo(Integer value) { this.ItemNo = value; return this; } public Integer getItemNoGreaterThanOrEqualTo() { return ItemNoGreaterThanOrEqualTo; } public GL_TransactionCode3Query setItemNoGreaterThanOrEqualTo(Integer value) { this.ItemNoGreaterThanOrEqualTo = value; return this; } public Integer getItemNoGreaterThan() { return ItemNoGreaterThan; } public GL_TransactionCode3Query setItemNoGreaterThan(Integer value) { this.ItemNoGreaterThan = value; return this; } public Integer getItemNoLessThan() { return ItemNoLessThan; } public GL_TransactionCode3Query setItemNoLessThan(Integer value) { this.ItemNoLessThan = value; return this; } public Integer getItemNoLessThanOrEqualTo() { return ItemNoLessThanOrEqualTo; } public GL_TransactionCode3Query setItemNoLessThanOrEqualTo(Integer value) { this.ItemNoLessThanOrEqualTo = value; return this; } public Integer getItemNoNotEqualTo() { return ItemNoNotEqualTo; } public GL_TransactionCode3Query setItemNoNotEqualTo(Integer value) { this.ItemNoNotEqualTo = value; return this; } public ArrayList getItemNoBetween() { return ItemNoBetween; } public GL_TransactionCode3Query setItemNoBetween(ArrayList value) { this.ItemNoBetween = value; return this; } public ArrayList getItemNoIn() { return ItemNoIn; } public GL_TransactionCode3Query setItemNoIn(ArrayList value) { this.ItemNoIn = value; return this; } public ArrayList getRowHash() { return RowHash; } public GL_TransactionCode3Query setRowHash(ArrayList value) { this.RowHash = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class GL_TransactionsQuery extends QueryDb implements IReturn> { public String GLTransactionID = null; public String GLTransactionIDStartsWith = null; public String GLTransactionIDEndsWith = null; public String GLTransactionIDContains = null; public String GLTransactionIDLike = null; public ArrayList GLTransactionIDBetween = null; public ArrayList GLTransactionIDIn = null; public String GLSetID = null; public String GLSetIDStartsWith = null; public String GLSetIDEndsWith = null; public String GLSetIDContains = null; public String GLSetIDLike = null; public ArrayList GLSetIDBetween = null; public ArrayList GLSetIDIn = null; public String GLLedgerID = null; public String GLLedgerIDStartsWith = null; public String GLLedgerIDEndsWith = null; public String GLLedgerIDContains = null; public String GLLedgerIDLike = null; public ArrayList GLLedgerIDBetween = null; public ArrayList GLLedgerIDIn = null; public Boolean DebitCredit = null; public BigDecimal Amount = null; public BigDecimal AmountGreaterThanOrEqualTo = null; public BigDecimal AmountGreaterThan = null; public BigDecimal AmountLessThan = null; public BigDecimal AmountLessThanOrEqualTo = null; public BigDecimal AmountNotEqualTo = null; public ArrayList AmountBetween = null; public ArrayList AmountIn = null; public String Ref = null; public String RefStartsWith = null; public String RefEndsWith = null; public String RefContains = null; public String RefLike = null; public ArrayList RefBetween = null; public ArrayList RefIn = null; public String Remark = null; public String RemarkStartsWith = null; public String RemarkEndsWith = null; public String RemarkContains = null; public String RemarkLike = null; public ArrayList RemarkBetween = null; public ArrayList RemarkIn = null; public Integer LineNum = null; public Integer LineNumGreaterThanOrEqualTo = null; public Integer LineNumGreaterThan = null; public Integer LineNumLessThan = null; public Integer LineNumLessThanOrEqualTo = null; public Integer LineNumNotEqualTo = null; public ArrayList LineNumBetween = null; public ArrayList LineNumIn = null; public String TransCode1ID = null; public String TransCode1IDStartsWith = null; public String TransCode1IDEndsWith = null; public String TransCode1IDContains = null; public String TransCode1IDLike = null; public ArrayList TransCode1IDBetween = null; public ArrayList TransCode1IDIn = null; public String TransCode2ID = null; public String TransCode2IDStartsWith = null; public String TransCode2IDEndsWith = null; public String TransCode2IDContains = null; public String TransCode2IDLike = null; public ArrayList TransCode2IDBetween = null; public ArrayList TransCode2IDIn = null; public String TransCode3ID = null; public String TransCode3IDStartsWith = null; public String TransCode3IDEndsWith = null; public String TransCode3IDContains = null; public String TransCode3IDLike = null; public ArrayList TransCode3IDBetween = null; public ArrayList TransCode3IDIn = null; public String StaffID = null; public String StaffIDStartsWith = null; public String StaffIDEndsWith = null; public String StaffIDContains = null; public String StaffIDLike = null; public ArrayList StaffIDBetween = null; public ArrayList StaffIDIn = null; public Boolean Reconciled = null; public Boolean Cleared = null; public Date TransPostDateTime = null; public Date TransPostDateTimeGreaterThanOrEqualTo = null; public Date TransPostDateTimeGreaterThan = null; public Date TransPostDateTimeLessThan = null; public Date TransPostDateTimeLessThanOrEqualTo = null; public Date TransPostDateTimeNotEqualTo = null; public ArrayList TransPostDateTimeBetween = null; public ArrayList TransPostDateTimeIn = null; public String JB_JobStages_RecID = null; public String JB_JobStages_RecIDStartsWith = null; public String JB_JobStages_RecIDEndsWith = null; public String JB_JobStages_RecIDContains = null; public String JB_JobStages_RecIDLike = null; public ArrayList JB_JobStages_RecIDBetween = null; public ArrayList JB_JobStages_RecIDIn = null; public String getGlTransactionID() { return GLTransactionID; } public GL_TransactionsQuery setGlTransactionID(String value) { this.GLTransactionID = value; return this; } public String getGlTransactionIDStartsWith() { return GLTransactionIDStartsWith; } public GL_TransactionsQuery setGlTransactionIDStartsWith(String value) { this.GLTransactionIDStartsWith = value; return this; } public String getGlTransactionIDEndsWith() { return GLTransactionIDEndsWith; } public GL_TransactionsQuery setGlTransactionIDEndsWith(String value) { this.GLTransactionIDEndsWith = value; return this; } public String getGlTransactionIDContains() { return GLTransactionIDContains; } public GL_TransactionsQuery setGlTransactionIDContains(String value) { this.GLTransactionIDContains = value; return this; } public String getGlTransactionIDLike() { return GLTransactionIDLike; } public GL_TransactionsQuery setGlTransactionIDLike(String value) { this.GLTransactionIDLike = value; return this; } public ArrayList getGlTransactionIDBetween() { return GLTransactionIDBetween; } public GL_TransactionsQuery setGlTransactionIDBetween(ArrayList value) { this.GLTransactionIDBetween = value; return this; } public ArrayList getGlTransactionIDIn() { return GLTransactionIDIn; } public GL_TransactionsQuery setGlTransactionIDIn(ArrayList value) { this.GLTransactionIDIn = value; return this; } public String getGlSetID() { return GLSetID; } public GL_TransactionsQuery setGlSetID(String value) { this.GLSetID = value; return this; } public String getGlSetIDStartsWith() { return GLSetIDStartsWith; } public GL_TransactionsQuery setGlSetIDStartsWith(String value) { this.GLSetIDStartsWith = value; return this; } public String getGlSetIDEndsWith() { return GLSetIDEndsWith; } public GL_TransactionsQuery setGlSetIDEndsWith(String value) { this.GLSetIDEndsWith = value; return this; } public String getGlSetIDContains() { return GLSetIDContains; } public GL_TransactionsQuery setGlSetIDContains(String value) { this.GLSetIDContains = value; return this; } public String getGlSetIDLike() { return GLSetIDLike; } public GL_TransactionsQuery setGlSetIDLike(String value) { this.GLSetIDLike = value; return this; } public ArrayList getGlSetIDBetween() { return GLSetIDBetween; } public GL_TransactionsQuery setGlSetIDBetween(ArrayList value) { this.GLSetIDBetween = value; return this; } public ArrayList getGlSetIDIn() { return GLSetIDIn; } public GL_TransactionsQuery setGlSetIDIn(ArrayList value) { this.GLSetIDIn = value; return this; } public String getGlLedgerID() { return GLLedgerID; } public GL_TransactionsQuery setGlLedgerID(String value) { this.GLLedgerID = value; return this; } public String getGlLedgerIDStartsWith() { return GLLedgerIDStartsWith; } public GL_TransactionsQuery setGlLedgerIDStartsWith(String value) { this.GLLedgerIDStartsWith = value; return this; } public String getGlLedgerIDEndsWith() { return GLLedgerIDEndsWith; } public GL_TransactionsQuery setGlLedgerIDEndsWith(String value) { this.GLLedgerIDEndsWith = value; return this; } public String getGlLedgerIDContains() { return GLLedgerIDContains; } public GL_TransactionsQuery setGlLedgerIDContains(String value) { this.GLLedgerIDContains = value; return this; } public String getGlLedgerIDLike() { return GLLedgerIDLike; } public GL_TransactionsQuery setGlLedgerIDLike(String value) { this.GLLedgerIDLike = value; return this; } public ArrayList getGlLedgerIDBetween() { return GLLedgerIDBetween; } public GL_TransactionsQuery setGlLedgerIDBetween(ArrayList value) { this.GLLedgerIDBetween = value; return this; } public ArrayList getGlLedgerIDIn() { return GLLedgerIDIn; } public GL_TransactionsQuery setGlLedgerIDIn(ArrayList value) { this.GLLedgerIDIn = value; return this; } public Boolean isDebitCredit() { return DebitCredit; } public GL_TransactionsQuery setDebitCredit(Boolean value) { this.DebitCredit = value; return this; } public BigDecimal getAmount() { return Amount; } public GL_TransactionsQuery setAmount(BigDecimal value) { this.Amount = value; return this; } public BigDecimal getAmountGreaterThanOrEqualTo() { return AmountGreaterThanOrEqualTo; } public GL_TransactionsQuery setAmountGreaterThanOrEqualTo(BigDecimal value) { this.AmountGreaterThanOrEqualTo = value; return this; } public BigDecimal getAmountGreaterThan() { return AmountGreaterThan; } public GL_TransactionsQuery setAmountGreaterThan(BigDecimal value) { this.AmountGreaterThan = value; return this; } public BigDecimal getAmountLessThan() { return AmountLessThan; } public GL_TransactionsQuery setAmountLessThan(BigDecimal value) { this.AmountLessThan = value; return this; } public BigDecimal getAmountLessThanOrEqualTo() { return AmountLessThanOrEqualTo; } public GL_TransactionsQuery setAmountLessThanOrEqualTo(BigDecimal value) { this.AmountLessThanOrEqualTo = value; return this; } public BigDecimal getAmountNotEqualTo() { return AmountNotEqualTo; } public GL_TransactionsQuery setAmountNotEqualTo(BigDecimal value) { this.AmountNotEqualTo = value; return this; } public ArrayList getAmountBetween() { return AmountBetween; } public GL_TransactionsQuery setAmountBetween(ArrayList value) { this.AmountBetween = value; return this; } public ArrayList getAmountIn() { return AmountIn; } public GL_TransactionsQuery setAmountIn(ArrayList value) { this.AmountIn = value; return this; } public String getRef() { return Ref; } public GL_TransactionsQuery setRef(String value) { this.Ref = value; return this; } public String getRefStartsWith() { return RefStartsWith; } public GL_TransactionsQuery setRefStartsWith(String value) { this.RefStartsWith = value; return this; } public String getRefEndsWith() { return RefEndsWith; } public GL_TransactionsQuery setRefEndsWith(String value) { this.RefEndsWith = value; return this; } public String getRefContains() { return RefContains; } public GL_TransactionsQuery setRefContains(String value) { this.RefContains = value; return this; } public String getRefLike() { return RefLike; } public GL_TransactionsQuery setRefLike(String value) { this.RefLike = value; return this; } public ArrayList getRefBetween() { return RefBetween; } public GL_TransactionsQuery setRefBetween(ArrayList value) { this.RefBetween = value; return this; } public ArrayList getRefIn() { return RefIn; } public GL_TransactionsQuery setRefIn(ArrayList value) { this.RefIn = value; return this; } public String getRemark() { return Remark; } public GL_TransactionsQuery setRemark(String value) { this.Remark = value; return this; } public String getRemarkStartsWith() { return RemarkStartsWith; } public GL_TransactionsQuery setRemarkStartsWith(String value) { this.RemarkStartsWith = value; return this; } public String getRemarkEndsWith() { return RemarkEndsWith; } public GL_TransactionsQuery setRemarkEndsWith(String value) { this.RemarkEndsWith = value; return this; } public String getRemarkContains() { return RemarkContains; } public GL_TransactionsQuery setRemarkContains(String value) { this.RemarkContains = value; return this; } public String getRemarkLike() { return RemarkLike; } public GL_TransactionsQuery setRemarkLike(String value) { this.RemarkLike = value; return this; } public ArrayList getRemarkBetween() { return RemarkBetween; } public GL_TransactionsQuery setRemarkBetween(ArrayList value) { this.RemarkBetween = value; return this; } public ArrayList getRemarkIn() { return RemarkIn; } public GL_TransactionsQuery setRemarkIn(ArrayList value) { this.RemarkIn = value; return this; } public Integer getLineNum() { return LineNum; } public GL_TransactionsQuery setLineNum(Integer value) { this.LineNum = value; return this; } public Integer getLineNumGreaterThanOrEqualTo() { return LineNumGreaterThanOrEqualTo; } public GL_TransactionsQuery setLineNumGreaterThanOrEqualTo(Integer value) { this.LineNumGreaterThanOrEqualTo = value; return this; } public Integer getLineNumGreaterThan() { return LineNumGreaterThan; } public GL_TransactionsQuery setLineNumGreaterThan(Integer value) { this.LineNumGreaterThan = value; return this; } public Integer getLineNumLessThan() { return LineNumLessThan; } public GL_TransactionsQuery setLineNumLessThan(Integer value) { this.LineNumLessThan = value; return this; } public Integer getLineNumLessThanOrEqualTo() { return LineNumLessThanOrEqualTo; } public GL_TransactionsQuery setLineNumLessThanOrEqualTo(Integer value) { this.LineNumLessThanOrEqualTo = value; return this; } public Integer getLineNumNotEqualTo() { return LineNumNotEqualTo; } public GL_TransactionsQuery setLineNumNotEqualTo(Integer value) { this.LineNumNotEqualTo = value; return this; } public ArrayList getLineNumBetween() { return LineNumBetween; } public GL_TransactionsQuery setLineNumBetween(ArrayList value) { this.LineNumBetween = value; return this; } public ArrayList getLineNumIn() { return LineNumIn; } public GL_TransactionsQuery setLineNumIn(ArrayList value) { this.LineNumIn = value; return this; } public String getTransCode1ID() { return TransCode1ID; } public GL_TransactionsQuery setTransCode1ID(String value) { this.TransCode1ID = value; return this; } public String getTransCode1IDStartsWith() { return TransCode1IDStartsWith; } public GL_TransactionsQuery setTransCode1IDStartsWith(String value) { this.TransCode1IDStartsWith = value; return this; } public String getTransCode1IDEndsWith() { return TransCode1IDEndsWith; } public GL_TransactionsQuery setTransCode1IDEndsWith(String value) { this.TransCode1IDEndsWith = value; return this; } public String getTransCode1IDContains() { return TransCode1IDContains; } public GL_TransactionsQuery setTransCode1IDContains(String value) { this.TransCode1IDContains = value; return this; } public String getTransCode1IDLike() { return TransCode1IDLike; } public GL_TransactionsQuery setTransCode1IDLike(String value) { this.TransCode1IDLike = value; return this; } public ArrayList getTransCode1IDBetween() { return TransCode1IDBetween; } public GL_TransactionsQuery setTransCode1IDBetween(ArrayList value) { this.TransCode1IDBetween = value; return this; } public ArrayList getTransCode1IDIn() { return TransCode1IDIn; } public GL_TransactionsQuery setTransCode1IDIn(ArrayList value) { this.TransCode1IDIn = value; return this; } public String getTransCode2ID() { return TransCode2ID; } public GL_TransactionsQuery setTransCode2ID(String value) { this.TransCode2ID = value; return this; } public String getTransCode2IDStartsWith() { return TransCode2IDStartsWith; } public GL_TransactionsQuery setTransCode2IDStartsWith(String value) { this.TransCode2IDStartsWith = value; return this; } public String getTransCode2IDEndsWith() { return TransCode2IDEndsWith; } public GL_TransactionsQuery setTransCode2IDEndsWith(String value) { this.TransCode2IDEndsWith = value; return this; } public String getTransCode2IDContains() { return TransCode2IDContains; } public GL_TransactionsQuery setTransCode2IDContains(String value) { this.TransCode2IDContains = value; return this; } public String getTransCode2IDLike() { return TransCode2IDLike; } public GL_TransactionsQuery setTransCode2IDLike(String value) { this.TransCode2IDLike = value; return this; } public ArrayList getTransCode2IDBetween() { return TransCode2IDBetween; } public GL_TransactionsQuery setTransCode2IDBetween(ArrayList value) { this.TransCode2IDBetween = value; return this; } public ArrayList getTransCode2IDIn() { return TransCode2IDIn; } public GL_TransactionsQuery setTransCode2IDIn(ArrayList value) { this.TransCode2IDIn = value; return this; } public String getTransCode3ID() { return TransCode3ID; } public GL_TransactionsQuery setTransCode3ID(String value) { this.TransCode3ID = value; return this; } public String getTransCode3IDStartsWith() { return TransCode3IDStartsWith; } public GL_TransactionsQuery setTransCode3IDStartsWith(String value) { this.TransCode3IDStartsWith = value; return this; } public String getTransCode3IDEndsWith() { return TransCode3IDEndsWith; } public GL_TransactionsQuery setTransCode3IDEndsWith(String value) { this.TransCode3IDEndsWith = value; return this; } public String getTransCode3IDContains() { return TransCode3IDContains; } public GL_TransactionsQuery setTransCode3IDContains(String value) { this.TransCode3IDContains = value; return this; } public String getTransCode3IDLike() { return TransCode3IDLike; } public GL_TransactionsQuery setTransCode3IDLike(String value) { this.TransCode3IDLike = value; return this; } public ArrayList getTransCode3IDBetween() { return TransCode3IDBetween; } public GL_TransactionsQuery setTransCode3IDBetween(ArrayList value) { this.TransCode3IDBetween = value; return this; } public ArrayList getTransCode3IDIn() { return TransCode3IDIn; } public GL_TransactionsQuery setTransCode3IDIn(ArrayList value) { this.TransCode3IDIn = value; return this; } public String getStaffID() { return StaffID; } public GL_TransactionsQuery setStaffID(String value) { this.StaffID = value; return this; } public String getStaffIDStartsWith() { return StaffIDStartsWith; } public GL_TransactionsQuery setStaffIDStartsWith(String value) { this.StaffIDStartsWith = value; return this; } public String getStaffIDEndsWith() { return StaffIDEndsWith; } public GL_TransactionsQuery setStaffIDEndsWith(String value) { this.StaffIDEndsWith = value; return this; } public String getStaffIDContains() { return StaffIDContains; } public GL_TransactionsQuery setStaffIDContains(String value) { this.StaffIDContains = value; return this; } public String getStaffIDLike() { return StaffIDLike; } public GL_TransactionsQuery setStaffIDLike(String value) { this.StaffIDLike = value; return this; } public ArrayList getStaffIDBetween() { return StaffIDBetween; } public GL_TransactionsQuery setStaffIDBetween(ArrayList value) { this.StaffIDBetween = value; return this; } public ArrayList getStaffIDIn() { return StaffIDIn; } public GL_TransactionsQuery setStaffIDIn(ArrayList value) { this.StaffIDIn = value; return this; } public Boolean isReconciled() { return Reconciled; } public GL_TransactionsQuery setReconciled(Boolean value) { this.Reconciled = value; return this; } public Boolean isCleared() { return Cleared; } public GL_TransactionsQuery setCleared(Boolean value) { this.Cleared = value; return this; } public Date getTransPostDateTime() { return TransPostDateTime; } public GL_TransactionsQuery setTransPostDateTime(Date value) { this.TransPostDateTime = value; return this; } public Date getTransPostDateTimeGreaterThanOrEqualTo() { return TransPostDateTimeGreaterThanOrEqualTo; } public GL_TransactionsQuery setTransPostDateTimeGreaterThanOrEqualTo(Date value) { this.TransPostDateTimeGreaterThanOrEqualTo = value; return this; } public Date getTransPostDateTimeGreaterThan() { return TransPostDateTimeGreaterThan; } public GL_TransactionsQuery setTransPostDateTimeGreaterThan(Date value) { this.TransPostDateTimeGreaterThan = value; return this; } public Date getTransPostDateTimeLessThan() { return TransPostDateTimeLessThan; } public GL_TransactionsQuery setTransPostDateTimeLessThan(Date value) { this.TransPostDateTimeLessThan = value; return this; } public Date getTransPostDateTimeLessThanOrEqualTo() { return TransPostDateTimeLessThanOrEqualTo; } public GL_TransactionsQuery setTransPostDateTimeLessThanOrEqualTo(Date value) { this.TransPostDateTimeLessThanOrEqualTo = value; return this; } public Date getTransPostDateTimeNotEqualTo() { return TransPostDateTimeNotEqualTo; } public GL_TransactionsQuery setTransPostDateTimeNotEqualTo(Date value) { this.TransPostDateTimeNotEqualTo = value; return this; } public ArrayList getTransPostDateTimeBetween() { return TransPostDateTimeBetween; } public GL_TransactionsQuery setTransPostDateTimeBetween(ArrayList value) { this.TransPostDateTimeBetween = value; return this; } public ArrayList getTransPostDateTimeIn() { return TransPostDateTimeIn; } public GL_TransactionsQuery setTransPostDateTimeIn(ArrayList value) { this.TransPostDateTimeIn = value; return this; } public String getJbJobStagesRecID() { return JB_JobStages_RecID; } public GL_TransactionsQuery setJbJobStagesRecID(String value) { this.JB_JobStages_RecID = value; return this; } public String getJbJobStagesRecIDStartsWith() { return JB_JobStages_RecIDStartsWith; } public GL_TransactionsQuery setJbJobStagesRecIDStartsWith(String value) { this.JB_JobStages_RecIDStartsWith = value; return this; } public String getJbJobStagesRecIDEndsWith() { return JB_JobStages_RecIDEndsWith; } public GL_TransactionsQuery setJbJobStagesRecIDEndsWith(String value) { this.JB_JobStages_RecIDEndsWith = value; return this; } public String getJbJobStagesRecIDContains() { return JB_JobStages_RecIDContains; } public GL_TransactionsQuery setJbJobStagesRecIDContains(String value) { this.JB_JobStages_RecIDContains = value; return this; } public String getJbJobStagesRecIDLike() { return JB_JobStages_RecIDLike; } public GL_TransactionsQuery setJbJobStagesRecIDLike(String value) { this.JB_JobStages_RecIDLike = value; return this; } public ArrayList getJbJobStagesRecIDBetween() { return JB_JobStages_RecIDBetween; } public GL_TransactionsQuery setJbJobStagesRecIDBetween(ArrayList value) { this.JB_JobStages_RecIDBetween = value; return this; } public ArrayList getJbJobStagesRecIDIn() { return JB_JobStages_RecIDIn; } public GL_TransactionsQuery setJbJobStagesRecIDIn(ArrayList value) { this.JB_JobStages_RecIDIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class HR_APIKeyQuery extends QueryDb implements IReturn> { public UUID RecID = null; public ArrayList RecIDIn = null; public String Name = null; public String NameStartsWith = null; public String NameEndsWith = null; public String NameContains = null; public String NameLike = null; public ArrayList NameBetween = null; public ArrayList NameIn = null; public String HR_Staff_StaffID = null; public String HR_Staff_StaffIDStartsWith = null; public String HR_Staff_StaffIDEndsWith = null; public String HR_Staff_StaffIDContains = null; public String HR_Staff_StaffIDLike = null; public ArrayList HR_Staff_StaffIDBetween = null; public ArrayList HR_Staff_StaffIDIn = null; public Date CreatedDateTime = null; public Date CreatedDateTimeGreaterThanOrEqualTo = null; public Date CreatedDateTimeGreaterThan = null; public Date CreatedDateTimeLessThan = null; public Date CreatedDateTimeLessThanOrEqualTo = null; public Date CreatedDateTimeNotEqualTo = null; public ArrayList CreatedDateTimeBetween = null; public ArrayList CreatedDateTimeIn = null; public Date ExpiryDateTime = null; public Date ExpiryDateTimeGreaterThanOrEqualTo = null; public Date ExpiryDateTimeGreaterThan = null; public Date ExpiryDateTimeLessThan = null; public Date ExpiryDateTimeLessThanOrEqualTo = null; public Date ExpiryDateTimeNotEqualTo = null; public ArrayList ExpiryDateTimeBetween = null; public ArrayList ExpiryDateTimeIn = null; public Date CancelledDateTime = null; public Date CancelledDateTimeGreaterThanOrEqualTo = null; public Date CancelledDateTimeGreaterThan = null; public Date CancelledDateTimeLessThan = null; public Date CancelledDateTimeLessThanOrEqualTo = null; public Date CancelledDateTimeNotEqualTo = null; public ArrayList CancelledDateTimeBetween = null; public ArrayList CancelledDateTimeIn = null; public Date LastSavedDateTime = null; public Date LastSavedDateTimeGreaterThanOrEqualTo = null; public Date LastSavedDateTimeGreaterThan = null; public Date LastSavedDateTimeLessThan = null; public Date LastSavedDateTimeLessThanOrEqualTo = null; public Date LastSavedDateTimeNotEqualTo = null; public ArrayList LastSavedDateTimeBetween = null; public ArrayList LastSavedDateTimeIn = null; public String KeyValue = null; public String KeyValueStartsWith = null; public String KeyValueEndsWith = null; public String KeyValueContains = null; public String KeyValueLike = null; public ArrayList KeyValueBetween = null; public ArrayList KeyValueIn = null; public Boolean IsEnabled = null; public Integer ItemNo = null; public Integer ItemNoGreaterThanOrEqualTo = null; public Integer ItemNoGreaterThan = null; public Integer ItemNoLessThan = null; public Integer ItemNoLessThanOrEqualTo = null; public Integer ItemNoNotEqualTo = null; public ArrayList ItemNoBetween = null; public ArrayList ItemNoIn = null; public ArrayList RowHash = null; public UUID getRecID() { return RecID; } public HR_APIKeyQuery setRecID(UUID value) { this.RecID = value; return this; } public ArrayList getRecIDIn() { return RecIDIn; } public HR_APIKeyQuery setRecIDIn(ArrayList value) { this.RecIDIn = value; return this; } public String getName() { return Name; } public HR_APIKeyQuery setName(String value) { this.Name = value; return this; } public String getNameStartsWith() { return NameStartsWith; } public HR_APIKeyQuery setNameStartsWith(String value) { this.NameStartsWith = value; return this; } public String getNameEndsWith() { return NameEndsWith; } public HR_APIKeyQuery setNameEndsWith(String value) { this.NameEndsWith = value; return this; } public String getNameContains() { return NameContains; } public HR_APIKeyQuery setNameContains(String value) { this.NameContains = value; return this; } public String getNameLike() { return NameLike; } public HR_APIKeyQuery setNameLike(String value) { this.NameLike = value; return this; } public ArrayList getNameBetween() { return NameBetween; } public HR_APIKeyQuery setNameBetween(ArrayList value) { this.NameBetween = value; return this; } public ArrayList getNameIn() { return NameIn; } public HR_APIKeyQuery setNameIn(ArrayList value) { this.NameIn = value; return this; } public String getHrStaffStaffID() { return HR_Staff_StaffID; } public HR_APIKeyQuery setHrStaffStaffID(String value) { this.HR_Staff_StaffID = value; return this; } public String getHrStaffStaffIDStartsWith() { return HR_Staff_StaffIDStartsWith; } public HR_APIKeyQuery setHrStaffStaffIDStartsWith(String value) { this.HR_Staff_StaffIDStartsWith = value; return this; } public String getHrStaffStaffIDEndsWith() { return HR_Staff_StaffIDEndsWith; } public HR_APIKeyQuery setHrStaffStaffIDEndsWith(String value) { this.HR_Staff_StaffIDEndsWith = value; return this; } public String getHrStaffStaffIDContains() { return HR_Staff_StaffIDContains; } public HR_APIKeyQuery setHrStaffStaffIDContains(String value) { this.HR_Staff_StaffIDContains = value; return this; } public String getHrStaffStaffIDLike() { return HR_Staff_StaffIDLike; } public HR_APIKeyQuery setHrStaffStaffIDLike(String value) { this.HR_Staff_StaffIDLike = value; return this; } public ArrayList getHrStaffStaffIDBetween() { return HR_Staff_StaffIDBetween; } public HR_APIKeyQuery setHrStaffStaffIDBetween(ArrayList value) { this.HR_Staff_StaffIDBetween = value; return this; } public ArrayList getHrStaffStaffIDIn() { return HR_Staff_StaffIDIn; } public HR_APIKeyQuery setHrStaffStaffIDIn(ArrayList value) { this.HR_Staff_StaffIDIn = value; return this; } public Date getCreatedDateTime() { return CreatedDateTime; } public HR_APIKeyQuery setCreatedDateTime(Date value) { this.CreatedDateTime = value; return this; } public Date getCreatedDateTimeGreaterThanOrEqualTo() { return CreatedDateTimeGreaterThanOrEqualTo; } public HR_APIKeyQuery setCreatedDateTimeGreaterThanOrEqualTo(Date value) { this.CreatedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getCreatedDateTimeGreaterThan() { return CreatedDateTimeGreaterThan; } public HR_APIKeyQuery setCreatedDateTimeGreaterThan(Date value) { this.CreatedDateTimeGreaterThan = value; return this; } public Date getCreatedDateTimeLessThan() { return CreatedDateTimeLessThan; } public HR_APIKeyQuery setCreatedDateTimeLessThan(Date value) { this.CreatedDateTimeLessThan = value; return this; } public Date getCreatedDateTimeLessThanOrEqualTo() { return CreatedDateTimeLessThanOrEqualTo; } public HR_APIKeyQuery setCreatedDateTimeLessThanOrEqualTo(Date value) { this.CreatedDateTimeLessThanOrEqualTo = value; return this; } public Date getCreatedDateTimeNotEqualTo() { return CreatedDateTimeNotEqualTo; } public HR_APIKeyQuery setCreatedDateTimeNotEqualTo(Date value) { this.CreatedDateTimeNotEqualTo = value; return this; } public ArrayList getCreatedDateTimeBetween() { return CreatedDateTimeBetween; } public HR_APIKeyQuery setCreatedDateTimeBetween(ArrayList value) { this.CreatedDateTimeBetween = value; return this; } public ArrayList getCreatedDateTimeIn() { return CreatedDateTimeIn; } public HR_APIKeyQuery setCreatedDateTimeIn(ArrayList value) { this.CreatedDateTimeIn = value; return this; } public Date getExpiryDateTime() { return ExpiryDateTime; } public HR_APIKeyQuery setExpiryDateTime(Date value) { this.ExpiryDateTime = value; return this; } public Date getExpiryDateTimeGreaterThanOrEqualTo() { return ExpiryDateTimeGreaterThanOrEqualTo; } public HR_APIKeyQuery setExpiryDateTimeGreaterThanOrEqualTo(Date value) { this.ExpiryDateTimeGreaterThanOrEqualTo = value; return this; } public Date getExpiryDateTimeGreaterThan() { return ExpiryDateTimeGreaterThan; } public HR_APIKeyQuery setExpiryDateTimeGreaterThan(Date value) { this.ExpiryDateTimeGreaterThan = value; return this; } public Date getExpiryDateTimeLessThan() { return ExpiryDateTimeLessThan; } public HR_APIKeyQuery setExpiryDateTimeLessThan(Date value) { this.ExpiryDateTimeLessThan = value; return this; } public Date getExpiryDateTimeLessThanOrEqualTo() { return ExpiryDateTimeLessThanOrEqualTo; } public HR_APIKeyQuery setExpiryDateTimeLessThanOrEqualTo(Date value) { this.ExpiryDateTimeLessThanOrEqualTo = value; return this; } public Date getExpiryDateTimeNotEqualTo() { return ExpiryDateTimeNotEqualTo; } public HR_APIKeyQuery setExpiryDateTimeNotEqualTo(Date value) { this.ExpiryDateTimeNotEqualTo = value; return this; } public ArrayList getExpiryDateTimeBetween() { return ExpiryDateTimeBetween; } public HR_APIKeyQuery setExpiryDateTimeBetween(ArrayList value) { this.ExpiryDateTimeBetween = value; return this; } public ArrayList getExpiryDateTimeIn() { return ExpiryDateTimeIn; } public HR_APIKeyQuery setExpiryDateTimeIn(ArrayList value) { this.ExpiryDateTimeIn = value; return this; } public Date getCancelledDateTime() { return CancelledDateTime; } public HR_APIKeyQuery setCancelledDateTime(Date value) { this.CancelledDateTime = value; return this; } public Date getCancelledDateTimeGreaterThanOrEqualTo() { return CancelledDateTimeGreaterThanOrEqualTo; } public HR_APIKeyQuery setCancelledDateTimeGreaterThanOrEqualTo(Date value) { this.CancelledDateTimeGreaterThanOrEqualTo = value; return this; } public Date getCancelledDateTimeGreaterThan() { return CancelledDateTimeGreaterThan; } public HR_APIKeyQuery setCancelledDateTimeGreaterThan(Date value) { this.CancelledDateTimeGreaterThan = value; return this; } public Date getCancelledDateTimeLessThan() { return CancelledDateTimeLessThan; } public HR_APIKeyQuery setCancelledDateTimeLessThan(Date value) { this.CancelledDateTimeLessThan = value; return this; } public Date getCancelledDateTimeLessThanOrEqualTo() { return CancelledDateTimeLessThanOrEqualTo; } public HR_APIKeyQuery setCancelledDateTimeLessThanOrEqualTo(Date value) { this.CancelledDateTimeLessThanOrEqualTo = value; return this; } public Date getCancelledDateTimeNotEqualTo() { return CancelledDateTimeNotEqualTo; } public HR_APIKeyQuery setCancelledDateTimeNotEqualTo(Date value) { this.CancelledDateTimeNotEqualTo = value; return this; } public ArrayList getCancelledDateTimeBetween() { return CancelledDateTimeBetween; } public HR_APIKeyQuery setCancelledDateTimeBetween(ArrayList value) { this.CancelledDateTimeBetween = value; return this; } public ArrayList getCancelledDateTimeIn() { return CancelledDateTimeIn; } public HR_APIKeyQuery setCancelledDateTimeIn(ArrayList value) { this.CancelledDateTimeIn = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public HR_APIKeyQuery setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getLastSavedDateTimeGreaterThanOrEqualTo() { return LastSavedDateTimeGreaterThanOrEqualTo; } public HR_APIKeyQuery setLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.LastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeGreaterThan() { return LastSavedDateTimeGreaterThan; } public HR_APIKeyQuery setLastSavedDateTimeGreaterThan(Date value) { this.LastSavedDateTimeGreaterThan = value; return this; } public Date getLastSavedDateTimeLessThan() { return LastSavedDateTimeLessThan; } public HR_APIKeyQuery setLastSavedDateTimeLessThan(Date value) { this.LastSavedDateTimeLessThan = value; return this; } public Date getLastSavedDateTimeLessThanOrEqualTo() { return LastSavedDateTimeLessThanOrEqualTo; } public HR_APIKeyQuery setLastSavedDateTimeLessThanOrEqualTo(Date value) { this.LastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeNotEqualTo() { return LastSavedDateTimeNotEqualTo; } public HR_APIKeyQuery setLastSavedDateTimeNotEqualTo(Date value) { this.LastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getLastSavedDateTimeBetween() { return LastSavedDateTimeBetween; } public HR_APIKeyQuery setLastSavedDateTimeBetween(ArrayList value) { this.LastSavedDateTimeBetween = value; return this; } public ArrayList getLastSavedDateTimeIn() { return LastSavedDateTimeIn; } public HR_APIKeyQuery setLastSavedDateTimeIn(ArrayList value) { this.LastSavedDateTimeIn = value; return this; } public String getKeyValue() { return KeyValue; } public HR_APIKeyQuery setKeyValue(String value) { this.KeyValue = value; return this; } public String getKeyValueStartsWith() { return KeyValueStartsWith; } public HR_APIKeyQuery setKeyValueStartsWith(String value) { this.KeyValueStartsWith = value; return this; } public String getKeyValueEndsWith() { return KeyValueEndsWith; } public HR_APIKeyQuery setKeyValueEndsWith(String value) { this.KeyValueEndsWith = value; return this; } public String getKeyValueContains() { return KeyValueContains; } public HR_APIKeyQuery setKeyValueContains(String value) { this.KeyValueContains = value; return this; } public String getKeyValueLike() { return KeyValueLike; } public HR_APIKeyQuery setKeyValueLike(String value) { this.KeyValueLike = value; return this; } public ArrayList getKeyValueBetween() { return KeyValueBetween; } public HR_APIKeyQuery setKeyValueBetween(ArrayList value) { this.KeyValueBetween = value; return this; } public ArrayList getKeyValueIn() { return KeyValueIn; } public HR_APIKeyQuery setKeyValueIn(ArrayList value) { this.KeyValueIn = value; return this; } public Boolean getIsEnabled() { return IsEnabled; } public HR_APIKeyQuery setIsEnabled(Boolean value) { this.IsEnabled = value; return this; } public Integer getItemNo() { return ItemNo; } public HR_APIKeyQuery setItemNo(Integer value) { this.ItemNo = value; return this; } public Integer getItemNoGreaterThanOrEqualTo() { return ItemNoGreaterThanOrEqualTo; } public HR_APIKeyQuery setItemNoGreaterThanOrEqualTo(Integer value) { this.ItemNoGreaterThanOrEqualTo = value; return this; } public Integer getItemNoGreaterThan() { return ItemNoGreaterThan; } public HR_APIKeyQuery setItemNoGreaterThan(Integer value) { this.ItemNoGreaterThan = value; return this; } public Integer getItemNoLessThan() { return ItemNoLessThan; } public HR_APIKeyQuery setItemNoLessThan(Integer value) { this.ItemNoLessThan = value; return this; } public Integer getItemNoLessThanOrEqualTo() { return ItemNoLessThanOrEqualTo; } public HR_APIKeyQuery setItemNoLessThanOrEqualTo(Integer value) { this.ItemNoLessThanOrEqualTo = value; return this; } public Integer getItemNoNotEqualTo() { return ItemNoNotEqualTo; } public HR_APIKeyQuery setItemNoNotEqualTo(Integer value) { this.ItemNoNotEqualTo = value; return this; } public ArrayList getItemNoBetween() { return ItemNoBetween; } public HR_APIKeyQuery setItemNoBetween(ArrayList value) { this.ItemNoBetween = value; return this; } public ArrayList getItemNoIn() { return ItemNoIn; } public HR_APIKeyQuery setItemNoIn(ArrayList value) { this.ItemNoIn = value; return this; } public ArrayList getRowHash() { return RowHash; } public HR_APIKeyQuery setRowHash(ArrayList value) { this.RowHash = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class HR_CustomSettingQuery extends QueryDb implements IReturn> { public String SettingID = null; public String SettingIDStartsWith = null; public String SettingIDEndsWith = null; public String SettingIDContains = null; public String SettingIDLike = null; public ArrayList SettingIDBetween = null; public ArrayList SettingIDIn = null; public Date LastSavedDateTime = null; public Date LastSavedDateTimeGreaterThanOrEqualTo = null; public Date LastSavedDateTimeGreaterThan = null; public Date LastSavedDateTimeLessThan = null; public Date LastSavedDateTimeLessThanOrEqualTo = null; public Date LastSavedDateTimeNotEqualTo = null; public ArrayList LastSavedDateTimeBetween = null; public ArrayList LastSavedDateTimeIn = null; public String SettingDescription = null; public String SettingDescriptionStartsWith = null; public String SettingDescriptionEndsWith = null; public String SettingDescriptionContains = null; public String SettingDescriptionLike = null; public ArrayList SettingDescriptionBetween = null; public ArrayList SettingDescriptionIn = null; public String SettingName = null; public String SettingNameStartsWith = null; public String SettingNameEndsWith = null; public String SettingNameContains = null; public String SettingNameLike = null; public ArrayList SettingNameBetween = null; public ArrayList SettingNameIn = null; public BigDecimal DisplayOrder = null; public BigDecimal DisplayOrderGreaterThanOrEqualTo = null; public BigDecimal DisplayOrderGreaterThan = null; public BigDecimal DisplayOrderLessThan = null; public BigDecimal DisplayOrderLessThanOrEqualTo = null; public BigDecimal DisplayOrderNotEqualTo = null; public ArrayList DisplayOrderBetween = null; public ArrayList DisplayOrderIn = null; public Short CellType = null; public Short CellTypeGreaterThanOrEqualTo = null; public Short CellTypeGreaterThan = null; public Short CellTypeLessThan = null; public Short CellTypeLessThanOrEqualTo = null; public Short CellTypeNotEqualTo = null; public ArrayList CellTypeBetween = null; public ArrayList CellTypeIn = null; public String ScriptFormatCell = null; public String ScriptFormatCellStartsWith = null; public String ScriptFormatCellEndsWith = null; public String ScriptFormatCellContains = null; public String ScriptFormatCellLike = null; public ArrayList ScriptFormatCellBetween = null; public ArrayList ScriptFormatCellIn = null; public String ScriptButtonClicked = null; public String ScriptButtonClickedStartsWith = null; public String ScriptButtonClickedEndsWith = null; public String ScriptButtonClickedContains = null; public String ScriptButtonClickedLike = null; public ArrayList ScriptButtonClickedBetween = null; public ArrayList ScriptButtonClickedIn = null; public String ScriptReadData = null; public String ScriptReadDataStartsWith = null; public String ScriptReadDataEndsWith = null; public String ScriptReadDataContains = null; public String ScriptReadDataLike = null; public ArrayList ScriptReadDataBetween = null; public ArrayList ScriptReadDataIn = null; public UUID SY_Plugin_RecID = null; public ArrayList SY_Plugin_RecIDIn = null; public String getSettingID() { return SettingID; } public HR_CustomSettingQuery setSettingID(String value) { this.SettingID = value; return this; } public String getSettingIDStartsWith() { return SettingIDStartsWith; } public HR_CustomSettingQuery setSettingIDStartsWith(String value) { this.SettingIDStartsWith = value; return this; } public String getSettingIDEndsWith() { return SettingIDEndsWith; } public HR_CustomSettingQuery setSettingIDEndsWith(String value) { this.SettingIDEndsWith = value; return this; } public String getSettingIDContains() { return SettingIDContains; } public HR_CustomSettingQuery setSettingIDContains(String value) { this.SettingIDContains = value; return this; } public String getSettingIDLike() { return SettingIDLike; } public HR_CustomSettingQuery setSettingIDLike(String value) { this.SettingIDLike = value; return this; } public ArrayList getSettingIDBetween() { return SettingIDBetween; } public HR_CustomSettingQuery setSettingIDBetween(ArrayList value) { this.SettingIDBetween = value; return this; } public ArrayList getSettingIDIn() { return SettingIDIn; } public HR_CustomSettingQuery setSettingIDIn(ArrayList value) { this.SettingIDIn = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public HR_CustomSettingQuery setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getLastSavedDateTimeGreaterThanOrEqualTo() { return LastSavedDateTimeGreaterThanOrEqualTo; } public HR_CustomSettingQuery setLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.LastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeGreaterThan() { return LastSavedDateTimeGreaterThan; } public HR_CustomSettingQuery setLastSavedDateTimeGreaterThan(Date value) { this.LastSavedDateTimeGreaterThan = value; return this; } public Date getLastSavedDateTimeLessThan() { return LastSavedDateTimeLessThan; } public HR_CustomSettingQuery setLastSavedDateTimeLessThan(Date value) { this.LastSavedDateTimeLessThan = value; return this; } public Date getLastSavedDateTimeLessThanOrEqualTo() { return LastSavedDateTimeLessThanOrEqualTo; } public HR_CustomSettingQuery setLastSavedDateTimeLessThanOrEqualTo(Date value) { this.LastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeNotEqualTo() { return LastSavedDateTimeNotEqualTo; } public HR_CustomSettingQuery setLastSavedDateTimeNotEqualTo(Date value) { this.LastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getLastSavedDateTimeBetween() { return LastSavedDateTimeBetween; } public HR_CustomSettingQuery setLastSavedDateTimeBetween(ArrayList value) { this.LastSavedDateTimeBetween = value; return this; } public ArrayList getLastSavedDateTimeIn() { return LastSavedDateTimeIn; } public HR_CustomSettingQuery setLastSavedDateTimeIn(ArrayList value) { this.LastSavedDateTimeIn = value; return this; } public String getSettingDescription() { return SettingDescription; } public HR_CustomSettingQuery setSettingDescription(String value) { this.SettingDescription = value; return this; } public String getSettingDescriptionStartsWith() { return SettingDescriptionStartsWith; } public HR_CustomSettingQuery setSettingDescriptionStartsWith(String value) { this.SettingDescriptionStartsWith = value; return this; } public String getSettingDescriptionEndsWith() { return SettingDescriptionEndsWith; } public HR_CustomSettingQuery setSettingDescriptionEndsWith(String value) { this.SettingDescriptionEndsWith = value; return this; } public String getSettingDescriptionContains() { return SettingDescriptionContains; } public HR_CustomSettingQuery setSettingDescriptionContains(String value) { this.SettingDescriptionContains = value; return this; } public String getSettingDescriptionLike() { return SettingDescriptionLike; } public HR_CustomSettingQuery setSettingDescriptionLike(String value) { this.SettingDescriptionLike = value; return this; } public ArrayList getSettingDescriptionBetween() { return SettingDescriptionBetween; } public HR_CustomSettingQuery setSettingDescriptionBetween(ArrayList value) { this.SettingDescriptionBetween = value; return this; } public ArrayList getSettingDescriptionIn() { return SettingDescriptionIn; } public HR_CustomSettingQuery setSettingDescriptionIn(ArrayList value) { this.SettingDescriptionIn = value; return this; } public String getSettingName() { return SettingName; } public HR_CustomSettingQuery setSettingName(String value) { this.SettingName = value; return this; } public String getSettingNameStartsWith() { return SettingNameStartsWith; } public HR_CustomSettingQuery setSettingNameStartsWith(String value) { this.SettingNameStartsWith = value; return this; } public String getSettingNameEndsWith() { return SettingNameEndsWith; } public HR_CustomSettingQuery setSettingNameEndsWith(String value) { this.SettingNameEndsWith = value; return this; } public String getSettingNameContains() { return SettingNameContains; } public HR_CustomSettingQuery setSettingNameContains(String value) { this.SettingNameContains = value; return this; } public String getSettingNameLike() { return SettingNameLike; } public HR_CustomSettingQuery setSettingNameLike(String value) { this.SettingNameLike = value; return this; } public ArrayList getSettingNameBetween() { return SettingNameBetween; } public HR_CustomSettingQuery setSettingNameBetween(ArrayList value) { this.SettingNameBetween = value; return this; } public ArrayList getSettingNameIn() { return SettingNameIn; } public HR_CustomSettingQuery setSettingNameIn(ArrayList value) { this.SettingNameIn = value; return this; } public BigDecimal getDisplayOrder() { return DisplayOrder; } public HR_CustomSettingQuery setDisplayOrder(BigDecimal value) { this.DisplayOrder = value; return this; } public BigDecimal getDisplayOrderGreaterThanOrEqualTo() { return DisplayOrderGreaterThanOrEqualTo; } public HR_CustomSettingQuery setDisplayOrderGreaterThanOrEqualTo(BigDecimal value) { this.DisplayOrderGreaterThanOrEqualTo = value; return this; } public BigDecimal getDisplayOrderGreaterThan() { return DisplayOrderGreaterThan; } public HR_CustomSettingQuery setDisplayOrderGreaterThan(BigDecimal value) { this.DisplayOrderGreaterThan = value; return this; } public BigDecimal getDisplayOrderLessThan() { return DisplayOrderLessThan; } public HR_CustomSettingQuery setDisplayOrderLessThan(BigDecimal value) { this.DisplayOrderLessThan = value; return this; } public BigDecimal getDisplayOrderLessThanOrEqualTo() { return DisplayOrderLessThanOrEqualTo; } public HR_CustomSettingQuery setDisplayOrderLessThanOrEqualTo(BigDecimal value) { this.DisplayOrderLessThanOrEqualTo = value; return this; } public BigDecimal getDisplayOrderNotEqualTo() { return DisplayOrderNotEqualTo; } public HR_CustomSettingQuery setDisplayOrderNotEqualTo(BigDecimal value) { this.DisplayOrderNotEqualTo = value; return this; } public ArrayList getDisplayOrderBetween() { return DisplayOrderBetween; } public HR_CustomSettingQuery setDisplayOrderBetween(ArrayList value) { this.DisplayOrderBetween = value; return this; } public ArrayList getDisplayOrderIn() { return DisplayOrderIn; } public HR_CustomSettingQuery setDisplayOrderIn(ArrayList value) { this.DisplayOrderIn = value; return this; } public Short getCellType() { return CellType; } public HR_CustomSettingQuery setCellType(Short value) { this.CellType = value; return this; } public Short getCellTypeGreaterThanOrEqualTo() { return CellTypeGreaterThanOrEqualTo; } public HR_CustomSettingQuery setCellTypeGreaterThanOrEqualTo(Short value) { this.CellTypeGreaterThanOrEqualTo = value; return this; } public Short getCellTypeGreaterThan() { return CellTypeGreaterThan; } public HR_CustomSettingQuery setCellTypeGreaterThan(Short value) { this.CellTypeGreaterThan = value; return this; } public Short getCellTypeLessThan() { return CellTypeLessThan; } public HR_CustomSettingQuery setCellTypeLessThan(Short value) { this.CellTypeLessThan = value; return this; } public Short getCellTypeLessThanOrEqualTo() { return CellTypeLessThanOrEqualTo; } public HR_CustomSettingQuery setCellTypeLessThanOrEqualTo(Short value) { this.CellTypeLessThanOrEqualTo = value; return this; } public Short getCellTypeNotEqualTo() { return CellTypeNotEqualTo; } public HR_CustomSettingQuery setCellTypeNotEqualTo(Short value) { this.CellTypeNotEqualTo = value; return this; } public ArrayList getCellTypeBetween() { return CellTypeBetween; } public HR_CustomSettingQuery setCellTypeBetween(ArrayList value) { this.CellTypeBetween = value; return this; } public ArrayList getCellTypeIn() { return CellTypeIn; } public HR_CustomSettingQuery setCellTypeIn(ArrayList value) { this.CellTypeIn = value; return this; } public String getScriptFormatCell() { return ScriptFormatCell; } public HR_CustomSettingQuery setScriptFormatCell(String value) { this.ScriptFormatCell = value; return this; } public String getScriptFormatCellStartsWith() { return ScriptFormatCellStartsWith; } public HR_CustomSettingQuery setScriptFormatCellStartsWith(String value) { this.ScriptFormatCellStartsWith = value; return this; } public String getScriptFormatCellEndsWith() { return ScriptFormatCellEndsWith; } public HR_CustomSettingQuery setScriptFormatCellEndsWith(String value) { this.ScriptFormatCellEndsWith = value; return this; } public String getScriptFormatCellContains() { return ScriptFormatCellContains; } public HR_CustomSettingQuery setScriptFormatCellContains(String value) { this.ScriptFormatCellContains = value; return this; } public String getScriptFormatCellLike() { return ScriptFormatCellLike; } public HR_CustomSettingQuery setScriptFormatCellLike(String value) { this.ScriptFormatCellLike = value; return this; } public ArrayList getScriptFormatCellBetween() { return ScriptFormatCellBetween; } public HR_CustomSettingQuery setScriptFormatCellBetween(ArrayList value) { this.ScriptFormatCellBetween = value; return this; } public ArrayList getScriptFormatCellIn() { return ScriptFormatCellIn; } public HR_CustomSettingQuery setScriptFormatCellIn(ArrayList value) { this.ScriptFormatCellIn = value; return this; } public String getScriptButtonClicked() { return ScriptButtonClicked; } public HR_CustomSettingQuery setScriptButtonClicked(String value) { this.ScriptButtonClicked = value; return this; } public String getScriptButtonClickedStartsWith() { return ScriptButtonClickedStartsWith; } public HR_CustomSettingQuery setScriptButtonClickedStartsWith(String value) { this.ScriptButtonClickedStartsWith = value; return this; } public String getScriptButtonClickedEndsWith() { return ScriptButtonClickedEndsWith; } public HR_CustomSettingQuery setScriptButtonClickedEndsWith(String value) { this.ScriptButtonClickedEndsWith = value; return this; } public String getScriptButtonClickedContains() { return ScriptButtonClickedContains; } public HR_CustomSettingQuery setScriptButtonClickedContains(String value) { this.ScriptButtonClickedContains = value; return this; } public String getScriptButtonClickedLike() { return ScriptButtonClickedLike; } public HR_CustomSettingQuery setScriptButtonClickedLike(String value) { this.ScriptButtonClickedLike = value; return this; } public ArrayList getScriptButtonClickedBetween() { return ScriptButtonClickedBetween; } public HR_CustomSettingQuery setScriptButtonClickedBetween(ArrayList value) { this.ScriptButtonClickedBetween = value; return this; } public ArrayList getScriptButtonClickedIn() { return ScriptButtonClickedIn; } public HR_CustomSettingQuery setScriptButtonClickedIn(ArrayList value) { this.ScriptButtonClickedIn = value; return this; } public String getScriptReadData() { return ScriptReadData; } public HR_CustomSettingQuery setScriptReadData(String value) { this.ScriptReadData = value; return this; } public String getScriptReadDataStartsWith() { return ScriptReadDataStartsWith; } public HR_CustomSettingQuery setScriptReadDataStartsWith(String value) { this.ScriptReadDataStartsWith = value; return this; } public String getScriptReadDataEndsWith() { return ScriptReadDataEndsWith; } public HR_CustomSettingQuery setScriptReadDataEndsWith(String value) { this.ScriptReadDataEndsWith = value; return this; } public String getScriptReadDataContains() { return ScriptReadDataContains; } public HR_CustomSettingQuery setScriptReadDataContains(String value) { this.ScriptReadDataContains = value; return this; } public String getScriptReadDataLike() { return ScriptReadDataLike; } public HR_CustomSettingQuery setScriptReadDataLike(String value) { this.ScriptReadDataLike = value; return this; } public ArrayList getScriptReadDataBetween() { return ScriptReadDataBetween; } public HR_CustomSettingQuery setScriptReadDataBetween(ArrayList value) { this.ScriptReadDataBetween = value; return this; } public ArrayList getScriptReadDataIn() { return ScriptReadDataIn; } public HR_CustomSettingQuery setScriptReadDataIn(ArrayList value) { this.ScriptReadDataIn = value; return this; } public UUID getSyPluginRecID() { return SY_Plugin_RecID; } public HR_CustomSettingQuery setSyPluginRecID(UUID value) { this.SY_Plugin_RecID = value; return this; } public ArrayList getSyPluginRecIDIn() { return SY_Plugin_RecIDIn; } public HR_CustomSettingQuery setSyPluginRecIDIn(ArrayList value) { this.SY_Plugin_RecIDIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class HR_CustomSettingValuesQuery extends QueryDb implements IReturn> { public String SettingValueID = null; public String SettingValueIDStartsWith = null; public String SettingValueIDEndsWith = null; public String SettingValueIDContains = null; public String SettingValueIDLike = null; public ArrayList SettingValueIDBetween = null; public ArrayList SettingValueIDIn = null; public String SettingID = null; public String SettingIDStartsWith = null; public String SettingIDEndsWith = null; public String SettingIDContains = null; public String SettingIDLike = null; public ArrayList SettingIDBetween = null; public ArrayList SettingIDIn = null; public String StaffID = null; public String StaffIDStartsWith = null; public String StaffIDEndsWith = null; public String StaffIDContains = null; public String StaffIDLike = null; public ArrayList StaffIDBetween = null; public ArrayList StaffIDIn = null; public String Contents = null; public String ContentsStartsWith = null; public String ContentsEndsWith = null; public String ContentsContains = null; public String ContentsLike = null; public ArrayList ContentsBetween = null; public ArrayList ContentsIn = null; public Date LastSavedDateTime = null; public Date LastSavedDateTimeGreaterThanOrEqualTo = null; public Date LastSavedDateTimeGreaterThan = null; public Date LastSavedDateTimeLessThan = null; public Date LastSavedDateTimeLessThanOrEqualTo = null; public Date LastSavedDateTimeNotEqualTo = null; public ArrayList LastSavedDateTimeBetween = null; public ArrayList LastSavedDateTimeIn = null; public String getSettingValueID() { return SettingValueID; } public HR_CustomSettingValuesQuery setSettingValueID(String value) { this.SettingValueID = value; return this; } public String getSettingValueIDStartsWith() { return SettingValueIDStartsWith; } public HR_CustomSettingValuesQuery setSettingValueIDStartsWith(String value) { this.SettingValueIDStartsWith = value; return this; } public String getSettingValueIDEndsWith() { return SettingValueIDEndsWith; } public HR_CustomSettingValuesQuery setSettingValueIDEndsWith(String value) { this.SettingValueIDEndsWith = value; return this; } public String getSettingValueIDContains() { return SettingValueIDContains; } public HR_CustomSettingValuesQuery setSettingValueIDContains(String value) { this.SettingValueIDContains = value; return this; } public String getSettingValueIDLike() { return SettingValueIDLike; } public HR_CustomSettingValuesQuery setSettingValueIDLike(String value) { this.SettingValueIDLike = value; return this; } public ArrayList getSettingValueIDBetween() { return SettingValueIDBetween; } public HR_CustomSettingValuesQuery setSettingValueIDBetween(ArrayList value) { this.SettingValueIDBetween = value; return this; } public ArrayList getSettingValueIDIn() { return SettingValueIDIn; } public HR_CustomSettingValuesQuery setSettingValueIDIn(ArrayList value) { this.SettingValueIDIn = value; return this; } public String getSettingID() { return SettingID; } public HR_CustomSettingValuesQuery setSettingID(String value) { this.SettingID = value; return this; } public String getSettingIDStartsWith() { return SettingIDStartsWith; } public HR_CustomSettingValuesQuery setSettingIDStartsWith(String value) { this.SettingIDStartsWith = value; return this; } public String getSettingIDEndsWith() { return SettingIDEndsWith; } public HR_CustomSettingValuesQuery setSettingIDEndsWith(String value) { this.SettingIDEndsWith = value; return this; } public String getSettingIDContains() { return SettingIDContains; } public HR_CustomSettingValuesQuery setSettingIDContains(String value) { this.SettingIDContains = value; return this; } public String getSettingIDLike() { return SettingIDLike; } public HR_CustomSettingValuesQuery setSettingIDLike(String value) { this.SettingIDLike = value; return this; } public ArrayList getSettingIDBetween() { return SettingIDBetween; } public HR_CustomSettingValuesQuery setSettingIDBetween(ArrayList value) { this.SettingIDBetween = value; return this; } public ArrayList getSettingIDIn() { return SettingIDIn; } public HR_CustomSettingValuesQuery setSettingIDIn(ArrayList value) { this.SettingIDIn = value; return this; } public String getStaffID() { return StaffID; } public HR_CustomSettingValuesQuery setStaffID(String value) { this.StaffID = value; return this; } public String getStaffIDStartsWith() { return StaffIDStartsWith; } public HR_CustomSettingValuesQuery setStaffIDStartsWith(String value) { this.StaffIDStartsWith = value; return this; } public String getStaffIDEndsWith() { return StaffIDEndsWith; } public HR_CustomSettingValuesQuery setStaffIDEndsWith(String value) { this.StaffIDEndsWith = value; return this; } public String getStaffIDContains() { return StaffIDContains; } public HR_CustomSettingValuesQuery setStaffIDContains(String value) { this.StaffIDContains = value; return this; } public String getStaffIDLike() { return StaffIDLike; } public HR_CustomSettingValuesQuery setStaffIDLike(String value) { this.StaffIDLike = value; return this; } public ArrayList getStaffIDBetween() { return StaffIDBetween; } public HR_CustomSettingValuesQuery setStaffIDBetween(ArrayList value) { this.StaffIDBetween = value; return this; } public ArrayList getStaffIDIn() { return StaffIDIn; } public HR_CustomSettingValuesQuery setStaffIDIn(ArrayList value) { this.StaffIDIn = value; return this; } public String getContents() { return Contents; } public HR_CustomSettingValuesQuery setContents(String value) { this.Contents = value; return this; } public String getContentsStartsWith() { return ContentsStartsWith; } public HR_CustomSettingValuesQuery setContentsStartsWith(String value) { this.ContentsStartsWith = value; return this; } public String getContentsEndsWith() { return ContentsEndsWith; } public HR_CustomSettingValuesQuery setContentsEndsWith(String value) { this.ContentsEndsWith = value; return this; } public String getContentsContains() { return ContentsContains; } public HR_CustomSettingValuesQuery setContentsContains(String value) { this.ContentsContains = value; return this; } public String getContentsLike() { return ContentsLike; } public HR_CustomSettingValuesQuery setContentsLike(String value) { this.ContentsLike = value; return this; } public ArrayList getContentsBetween() { return ContentsBetween; } public HR_CustomSettingValuesQuery setContentsBetween(ArrayList value) { this.ContentsBetween = value; return this; } public ArrayList getContentsIn() { return ContentsIn; } public HR_CustomSettingValuesQuery setContentsIn(ArrayList value) { this.ContentsIn = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public HR_CustomSettingValuesQuery setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getLastSavedDateTimeGreaterThanOrEqualTo() { return LastSavedDateTimeGreaterThanOrEqualTo; } public HR_CustomSettingValuesQuery setLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.LastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeGreaterThan() { return LastSavedDateTimeGreaterThan; } public HR_CustomSettingValuesQuery setLastSavedDateTimeGreaterThan(Date value) { this.LastSavedDateTimeGreaterThan = value; return this; } public Date getLastSavedDateTimeLessThan() { return LastSavedDateTimeLessThan; } public HR_CustomSettingValuesQuery setLastSavedDateTimeLessThan(Date value) { this.LastSavedDateTimeLessThan = value; return this; } public Date getLastSavedDateTimeLessThanOrEqualTo() { return LastSavedDateTimeLessThanOrEqualTo; } public HR_CustomSettingValuesQuery setLastSavedDateTimeLessThanOrEqualTo(Date value) { this.LastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeNotEqualTo() { return LastSavedDateTimeNotEqualTo; } public HR_CustomSettingValuesQuery setLastSavedDateTimeNotEqualTo(Date value) { this.LastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getLastSavedDateTimeBetween() { return LastSavedDateTimeBetween; } public HR_CustomSettingValuesQuery setLastSavedDateTimeBetween(ArrayList value) { this.LastSavedDateTimeBetween = value; return this; } public ArrayList getLastSavedDateTimeIn() { return LastSavedDateTimeIn; } public HR_CustomSettingValuesQuery setLastSavedDateTimeIn(ArrayList value) { this.LastSavedDateTimeIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class HR_DepartmentCategoriesQuery extends QueryDb implements IReturn> { public String RecID = null; public String RecIDStartsWith = null; public String RecIDEndsWith = null; public String RecIDContains = null; public String RecIDLike = null; public ArrayList RecIDBetween = null; public ArrayList RecIDIn = null; public String HR_Departments_RecID = null; public String HR_Departments_RecIDStartsWith = null; public String HR_Departments_RecIDEndsWith = null; public String HR_Departments_RecIDContains = null; public String HR_Departments_RecIDLike = null; public ArrayList HR_Departments_RecIDBetween = null; public ArrayList HR_Departments_RecIDIn = null; public String Name = null; public String NameStartsWith = null; public String NameEndsWith = null; public String NameContains = null; public String NameLike = null; public ArrayList NameBetween = null; public ArrayList NameIn = null; public ArrayList RowHash = null; public Boolean IsEnabled = null; public Integer ItemNo = null; public Integer ItemNoGreaterThanOrEqualTo = null; public Integer ItemNoGreaterThan = null; public Integer ItemNoLessThan = null; public Integer ItemNoLessThanOrEqualTo = null; public Integer ItemNoNotEqualTo = null; public ArrayList ItemNoBetween = null; public ArrayList ItemNoIn = null; public String getRecID() { return RecID; } public HR_DepartmentCategoriesQuery setRecID(String value) { this.RecID = value; return this; } public String getRecIDStartsWith() { return RecIDStartsWith; } public HR_DepartmentCategoriesQuery setRecIDStartsWith(String value) { this.RecIDStartsWith = value; return this; } public String getRecIDEndsWith() { return RecIDEndsWith; } public HR_DepartmentCategoriesQuery setRecIDEndsWith(String value) { this.RecIDEndsWith = value; return this; } public String getRecIDContains() { return RecIDContains; } public HR_DepartmentCategoriesQuery setRecIDContains(String value) { this.RecIDContains = value; return this; } public String getRecIDLike() { return RecIDLike; } public HR_DepartmentCategoriesQuery setRecIDLike(String value) { this.RecIDLike = value; return this; } public ArrayList getRecIDBetween() { return RecIDBetween; } public HR_DepartmentCategoriesQuery setRecIDBetween(ArrayList value) { this.RecIDBetween = value; return this; } public ArrayList getRecIDIn() { return RecIDIn; } public HR_DepartmentCategoriesQuery setRecIDIn(ArrayList value) { this.RecIDIn = value; return this; } public String getHrDepartmentsRecID() { return HR_Departments_RecID; } public HR_DepartmentCategoriesQuery setHrDepartmentsRecID(String value) { this.HR_Departments_RecID = value; return this; } public String getHrDepartmentsRecIDStartsWith() { return HR_Departments_RecIDStartsWith; } public HR_DepartmentCategoriesQuery setHrDepartmentsRecIDStartsWith(String value) { this.HR_Departments_RecIDStartsWith = value; return this; } public String getHrDepartmentsRecIDEndsWith() { return HR_Departments_RecIDEndsWith; } public HR_DepartmentCategoriesQuery setHrDepartmentsRecIDEndsWith(String value) { this.HR_Departments_RecIDEndsWith = value; return this; } public String getHrDepartmentsRecIDContains() { return HR_Departments_RecIDContains; } public HR_DepartmentCategoriesQuery setHrDepartmentsRecIDContains(String value) { this.HR_Departments_RecIDContains = value; return this; } public String getHrDepartmentsRecIDLike() { return HR_Departments_RecIDLike; } public HR_DepartmentCategoriesQuery setHrDepartmentsRecIDLike(String value) { this.HR_Departments_RecIDLike = value; return this; } public ArrayList getHrDepartmentsRecIDBetween() { return HR_Departments_RecIDBetween; } public HR_DepartmentCategoriesQuery setHrDepartmentsRecIDBetween(ArrayList value) { this.HR_Departments_RecIDBetween = value; return this; } public ArrayList getHrDepartmentsRecIDIn() { return HR_Departments_RecIDIn; } public HR_DepartmentCategoriesQuery setHrDepartmentsRecIDIn(ArrayList value) { this.HR_Departments_RecIDIn = value; return this; } public String getName() { return Name; } public HR_DepartmentCategoriesQuery setName(String value) { this.Name = value; return this; } public String getNameStartsWith() { return NameStartsWith; } public HR_DepartmentCategoriesQuery setNameStartsWith(String value) { this.NameStartsWith = value; return this; } public String getNameEndsWith() { return NameEndsWith; } public HR_DepartmentCategoriesQuery setNameEndsWith(String value) { this.NameEndsWith = value; return this; } public String getNameContains() { return NameContains; } public HR_DepartmentCategoriesQuery setNameContains(String value) { this.NameContains = value; return this; } public String getNameLike() { return NameLike; } public HR_DepartmentCategoriesQuery setNameLike(String value) { this.NameLike = value; return this; } public ArrayList getNameBetween() { return NameBetween; } public HR_DepartmentCategoriesQuery setNameBetween(ArrayList value) { this.NameBetween = value; return this; } public ArrayList getNameIn() { return NameIn; } public HR_DepartmentCategoriesQuery setNameIn(ArrayList value) { this.NameIn = value; return this; } public ArrayList getRowHash() { return RowHash; } public HR_DepartmentCategoriesQuery setRowHash(ArrayList value) { this.RowHash = value; return this; } public Boolean getIsEnabled() { return IsEnabled; } public HR_DepartmentCategoriesQuery setIsEnabled(Boolean value) { this.IsEnabled = value; return this; } public Integer getItemNo() { return ItemNo; } public HR_DepartmentCategoriesQuery setItemNo(Integer value) { this.ItemNo = value; return this; } public Integer getItemNoGreaterThanOrEqualTo() { return ItemNoGreaterThanOrEqualTo; } public HR_DepartmentCategoriesQuery setItemNoGreaterThanOrEqualTo(Integer value) { this.ItemNoGreaterThanOrEqualTo = value; return this; } public Integer getItemNoGreaterThan() { return ItemNoGreaterThan; } public HR_DepartmentCategoriesQuery setItemNoGreaterThan(Integer value) { this.ItemNoGreaterThan = value; return this; } public Integer getItemNoLessThan() { return ItemNoLessThan; } public HR_DepartmentCategoriesQuery setItemNoLessThan(Integer value) { this.ItemNoLessThan = value; return this; } public Integer getItemNoLessThanOrEqualTo() { return ItemNoLessThanOrEqualTo; } public HR_DepartmentCategoriesQuery setItemNoLessThanOrEqualTo(Integer value) { this.ItemNoLessThanOrEqualTo = value; return this; } public Integer getItemNoNotEqualTo() { return ItemNoNotEqualTo; } public HR_DepartmentCategoriesQuery setItemNoNotEqualTo(Integer value) { this.ItemNoNotEqualTo = value; return this; } public ArrayList getItemNoBetween() { return ItemNoBetween; } public HR_DepartmentCategoriesQuery setItemNoBetween(ArrayList value) { this.ItemNoBetween = value; return this; } public ArrayList getItemNoIn() { return ItemNoIn; } public HR_DepartmentCategoriesQuery setItemNoIn(ArrayList value) { this.ItemNoIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @Route(Path="/Queries/HR_Departments", Verbs="GET") @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class HR_DepartmentsQuery extends QueryDb implements IReturn> { public String RecID = null; public String RecIDStartsWith = null; public String RecIDEndsWith = null; public String RecIDContains = null; public String RecIDLike = null; public ArrayList RecIDBetween = null; public ArrayList RecIDIn = null; public String Name = null; public String NameStartsWith = null; public String NameEndsWith = null; public String NameContains = null; public String NameLike = null; public ArrayList NameBetween = null; public ArrayList NameIn = null; public String Manager_HR_Staff_RecID = null; public String Manager_HR_Staff_RecIDStartsWith = null; public String Manager_HR_Staff_RecIDEndsWith = null; public String Manager_HR_Staff_RecIDContains = null; public String Manager_HR_Staff_RecIDLike = null; public ArrayList Manager_HR_Staff_RecIDBetween = null; public ArrayList Manager_HR_Staff_RecIDIn = null; public ArrayList RowHash = null; public Boolean IsEnabled = null; public Boolean IsDefault = null; public String getRecID() { return RecID; } public HR_DepartmentsQuery setRecID(String value) { this.RecID = value; return this; } public String getRecIDStartsWith() { return RecIDStartsWith; } public HR_DepartmentsQuery setRecIDStartsWith(String value) { this.RecIDStartsWith = value; return this; } public String getRecIDEndsWith() { return RecIDEndsWith; } public HR_DepartmentsQuery setRecIDEndsWith(String value) { this.RecIDEndsWith = value; return this; } public String getRecIDContains() { return RecIDContains; } public HR_DepartmentsQuery setRecIDContains(String value) { this.RecIDContains = value; return this; } public String getRecIDLike() { return RecIDLike; } public HR_DepartmentsQuery setRecIDLike(String value) { this.RecIDLike = value; return this; } public ArrayList getRecIDBetween() { return RecIDBetween; } public HR_DepartmentsQuery setRecIDBetween(ArrayList value) { this.RecIDBetween = value; return this; } public ArrayList getRecIDIn() { return RecIDIn; } public HR_DepartmentsQuery setRecIDIn(ArrayList value) { this.RecIDIn = value; return this; } public String getName() { return Name; } public HR_DepartmentsQuery setName(String value) { this.Name = value; return this; } public String getNameStartsWith() { return NameStartsWith; } public HR_DepartmentsQuery setNameStartsWith(String value) { this.NameStartsWith = value; return this; } public String getNameEndsWith() { return NameEndsWith; } public HR_DepartmentsQuery setNameEndsWith(String value) { this.NameEndsWith = value; return this; } public String getNameContains() { return NameContains; } public HR_DepartmentsQuery setNameContains(String value) { this.NameContains = value; return this; } public String getNameLike() { return NameLike; } public HR_DepartmentsQuery setNameLike(String value) { this.NameLike = value; return this; } public ArrayList getNameBetween() { return NameBetween; } public HR_DepartmentsQuery setNameBetween(ArrayList value) { this.NameBetween = value; return this; } public ArrayList getNameIn() { return NameIn; } public HR_DepartmentsQuery setNameIn(ArrayList value) { this.NameIn = value; return this; } public String getManagerHrStaffRecID() { return Manager_HR_Staff_RecID; } public HR_DepartmentsQuery setManagerHrStaffRecID(String value) { this.Manager_HR_Staff_RecID = value; return this; } public String getManagerHrStaffRecIDStartsWith() { return Manager_HR_Staff_RecIDStartsWith; } public HR_DepartmentsQuery setManagerHrStaffRecIDStartsWith(String value) { this.Manager_HR_Staff_RecIDStartsWith = value; return this; } public String getManagerHrStaffRecIDEndsWith() { return Manager_HR_Staff_RecIDEndsWith; } public HR_DepartmentsQuery setManagerHrStaffRecIDEndsWith(String value) { this.Manager_HR_Staff_RecIDEndsWith = value; return this; } public String getManagerHrStaffRecIDContains() { return Manager_HR_Staff_RecIDContains; } public HR_DepartmentsQuery setManagerHrStaffRecIDContains(String value) { this.Manager_HR_Staff_RecIDContains = value; return this; } public String getManagerHrStaffRecIDLike() { return Manager_HR_Staff_RecIDLike; } public HR_DepartmentsQuery setManagerHrStaffRecIDLike(String value) { this.Manager_HR_Staff_RecIDLike = value; return this; } public ArrayList getManagerHrStaffRecIDBetween() { return Manager_HR_Staff_RecIDBetween; } public HR_DepartmentsQuery setManagerHrStaffRecIDBetween(ArrayList value) { this.Manager_HR_Staff_RecIDBetween = value; return this; } public ArrayList getManagerHrStaffRecIDIn() { return Manager_HR_Staff_RecIDIn; } public HR_DepartmentsQuery setManagerHrStaffRecIDIn(ArrayList value) { this.Manager_HR_Staff_RecIDIn = value; return this; } public ArrayList getRowHash() { return RowHash; } public HR_DepartmentsQuery setRowHash(ArrayList value) { this.RowHash = value; return this; } public Boolean getIsEnabled() { return IsEnabled; } public HR_DepartmentsQuery setIsEnabled(Boolean value) { this.IsEnabled = value; return this; } public Boolean getIsDefault() { return IsDefault; } public HR_DepartmentsQuery setIsDefault(Boolean value) { this.IsDefault = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class HR_DocumentsQuery extends QueryDb implements IReturn> { public String RecID = null; public String RecIDStartsWith = null; public String RecIDEndsWith = null; public String RecIDContains = null; public String RecIDLike = null; public ArrayList RecIDBetween = null; public ArrayList RecIDIn = null; public String StaffID = null; public String StaffIDStartsWith = null; public String StaffIDEndsWith = null; public String StaffIDContains = null; public String StaffIDLike = null; public ArrayList StaffIDBetween = null; public ArrayList StaffIDIn = null; public String DocumentTypeID = null; public String DocumentTypeIDStartsWith = null; public String DocumentTypeIDEndsWith = null; public String DocumentTypeIDContains = null; public String DocumentTypeIDLike = null; public ArrayList DocumentTypeIDBetween = null; public ArrayList DocumentTypeIDIn = null; public Date LastSavedDateTime = null; public Date LastSavedDateTimeGreaterThanOrEqualTo = null; public Date LastSavedDateTimeGreaterThan = null; public Date LastSavedDateTimeLessThan = null; public Date LastSavedDateTimeLessThanOrEqualTo = null; public Date LastSavedDateTimeNotEqualTo = null; public ArrayList LastSavedDateTimeBetween = null; public ArrayList LastSavedDateTimeIn = null; public String LastSavedByStaffID = null; public String LastSavedByStaffIDStartsWith = null; public String LastSavedByStaffIDEndsWith = null; public String LastSavedByStaffIDContains = null; public String LastSavedByStaffIDLike = null; public ArrayList LastSavedByStaffIDBetween = null; public ArrayList LastSavedByStaffIDIn = null; public ArrayList FileBinary = null; public String Description = null; public String DescriptionStartsWith = null; public String DescriptionEndsWith = null; public String DescriptionContains = null; public String DescriptionLike = null; public ArrayList DescriptionBetween = null; public ArrayList DescriptionIn = null; public String PhysicalFileName = null; public String PhysicalFileNameStartsWith = null; public String PhysicalFileNameEndsWith = null; public String PhysicalFileNameContains = null; public String PhysicalFileNameLike = null; public ArrayList PhysicalFileNameBetween = null; public ArrayList PhysicalFileNameIn = null; public Integer ItemNo = null; public Integer ItemNoGreaterThanOrEqualTo = null; public Integer ItemNoGreaterThan = null; public Integer ItemNoLessThan = null; public Integer ItemNoLessThanOrEqualTo = null; public Integer ItemNoNotEqualTo = null; public ArrayList ItemNoBetween = null; public ArrayList ItemNoIn = null; public String getRecID() { return RecID; } public HR_DocumentsQuery setRecID(String value) { this.RecID = value; return this; } public String getRecIDStartsWith() { return RecIDStartsWith; } public HR_DocumentsQuery setRecIDStartsWith(String value) { this.RecIDStartsWith = value; return this; } public String getRecIDEndsWith() { return RecIDEndsWith; } public HR_DocumentsQuery setRecIDEndsWith(String value) { this.RecIDEndsWith = value; return this; } public String getRecIDContains() { return RecIDContains; } public HR_DocumentsQuery setRecIDContains(String value) { this.RecIDContains = value; return this; } public String getRecIDLike() { return RecIDLike; } public HR_DocumentsQuery setRecIDLike(String value) { this.RecIDLike = value; return this; } public ArrayList getRecIDBetween() { return RecIDBetween; } public HR_DocumentsQuery setRecIDBetween(ArrayList value) { this.RecIDBetween = value; return this; } public ArrayList getRecIDIn() { return RecIDIn; } public HR_DocumentsQuery setRecIDIn(ArrayList value) { this.RecIDIn = value; return this; } public String getStaffID() { return StaffID; } public HR_DocumentsQuery setStaffID(String value) { this.StaffID = value; return this; } public String getStaffIDStartsWith() { return StaffIDStartsWith; } public HR_DocumentsQuery setStaffIDStartsWith(String value) { this.StaffIDStartsWith = value; return this; } public String getStaffIDEndsWith() { return StaffIDEndsWith; } public HR_DocumentsQuery setStaffIDEndsWith(String value) { this.StaffIDEndsWith = value; return this; } public String getStaffIDContains() { return StaffIDContains; } public HR_DocumentsQuery setStaffIDContains(String value) { this.StaffIDContains = value; return this; } public String getStaffIDLike() { return StaffIDLike; } public HR_DocumentsQuery setStaffIDLike(String value) { this.StaffIDLike = value; return this; } public ArrayList getStaffIDBetween() { return StaffIDBetween; } public HR_DocumentsQuery setStaffIDBetween(ArrayList value) { this.StaffIDBetween = value; return this; } public ArrayList getStaffIDIn() { return StaffIDIn; } public HR_DocumentsQuery setStaffIDIn(ArrayList value) { this.StaffIDIn = value; return this; } public String getDocumentTypeID() { return DocumentTypeID; } public HR_DocumentsQuery setDocumentTypeID(String value) { this.DocumentTypeID = value; return this; } public String getDocumentTypeIDStartsWith() { return DocumentTypeIDStartsWith; } public HR_DocumentsQuery setDocumentTypeIDStartsWith(String value) { this.DocumentTypeIDStartsWith = value; return this; } public String getDocumentTypeIDEndsWith() { return DocumentTypeIDEndsWith; } public HR_DocumentsQuery setDocumentTypeIDEndsWith(String value) { this.DocumentTypeIDEndsWith = value; return this; } public String getDocumentTypeIDContains() { return DocumentTypeIDContains; } public HR_DocumentsQuery setDocumentTypeIDContains(String value) { this.DocumentTypeIDContains = value; return this; } public String getDocumentTypeIDLike() { return DocumentTypeIDLike; } public HR_DocumentsQuery setDocumentTypeIDLike(String value) { this.DocumentTypeIDLike = value; return this; } public ArrayList getDocumentTypeIDBetween() { return DocumentTypeIDBetween; } public HR_DocumentsQuery setDocumentTypeIDBetween(ArrayList value) { this.DocumentTypeIDBetween = value; return this; } public ArrayList getDocumentTypeIDIn() { return DocumentTypeIDIn; } public HR_DocumentsQuery setDocumentTypeIDIn(ArrayList value) { this.DocumentTypeIDIn = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public HR_DocumentsQuery setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getLastSavedDateTimeGreaterThanOrEqualTo() { return LastSavedDateTimeGreaterThanOrEqualTo; } public HR_DocumentsQuery setLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.LastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeGreaterThan() { return LastSavedDateTimeGreaterThan; } public HR_DocumentsQuery setLastSavedDateTimeGreaterThan(Date value) { this.LastSavedDateTimeGreaterThan = value; return this; } public Date getLastSavedDateTimeLessThan() { return LastSavedDateTimeLessThan; } public HR_DocumentsQuery setLastSavedDateTimeLessThan(Date value) { this.LastSavedDateTimeLessThan = value; return this; } public Date getLastSavedDateTimeLessThanOrEqualTo() { return LastSavedDateTimeLessThanOrEqualTo; } public HR_DocumentsQuery setLastSavedDateTimeLessThanOrEqualTo(Date value) { this.LastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeNotEqualTo() { return LastSavedDateTimeNotEqualTo; } public HR_DocumentsQuery setLastSavedDateTimeNotEqualTo(Date value) { this.LastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getLastSavedDateTimeBetween() { return LastSavedDateTimeBetween; } public HR_DocumentsQuery setLastSavedDateTimeBetween(ArrayList value) { this.LastSavedDateTimeBetween = value; return this; } public ArrayList getLastSavedDateTimeIn() { return LastSavedDateTimeIn; } public HR_DocumentsQuery setLastSavedDateTimeIn(ArrayList value) { this.LastSavedDateTimeIn = value; return this; } public String getLastSavedByStaffID() { return LastSavedByStaffID; } public HR_DocumentsQuery setLastSavedByStaffID(String value) { this.LastSavedByStaffID = value; return this; } public String getLastSavedByStaffIDStartsWith() { return LastSavedByStaffIDStartsWith; } public HR_DocumentsQuery setLastSavedByStaffIDStartsWith(String value) { this.LastSavedByStaffIDStartsWith = value; return this; } public String getLastSavedByStaffIDEndsWith() { return LastSavedByStaffIDEndsWith; } public HR_DocumentsQuery setLastSavedByStaffIDEndsWith(String value) { this.LastSavedByStaffIDEndsWith = value; return this; } public String getLastSavedByStaffIDContains() { return LastSavedByStaffIDContains; } public HR_DocumentsQuery setLastSavedByStaffIDContains(String value) { this.LastSavedByStaffIDContains = value; return this; } public String getLastSavedByStaffIDLike() { return LastSavedByStaffIDLike; } public HR_DocumentsQuery setLastSavedByStaffIDLike(String value) { this.LastSavedByStaffIDLike = value; return this; } public ArrayList getLastSavedByStaffIDBetween() { return LastSavedByStaffIDBetween; } public HR_DocumentsQuery setLastSavedByStaffIDBetween(ArrayList value) { this.LastSavedByStaffIDBetween = value; return this; } public ArrayList getLastSavedByStaffIDIn() { return LastSavedByStaffIDIn; } public HR_DocumentsQuery setLastSavedByStaffIDIn(ArrayList value) { this.LastSavedByStaffIDIn = value; return this; } public ArrayList getFileBinary() { return FileBinary; } public HR_DocumentsQuery setFileBinary(ArrayList value) { this.FileBinary = value; return this; } public String getDescription() { return Description; } public HR_DocumentsQuery setDescription(String value) { this.Description = value; return this; } public String getDescriptionStartsWith() { return DescriptionStartsWith; } public HR_DocumentsQuery setDescriptionStartsWith(String value) { this.DescriptionStartsWith = value; return this; } public String getDescriptionEndsWith() { return DescriptionEndsWith; } public HR_DocumentsQuery setDescriptionEndsWith(String value) { this.DescriptionEndsWith = value; return this; } public String getDescriptionContains() { return DescriptionContains; } public HR_DocumentsQuery setDescriptionContains(String value) { this.DescriptionContains = value; return this; } public String getDescriptionLike() { return DescriptionLike; } public HR_DocumentsQuery setDescriptionLike(String value) { this.DescriptionLike = value; return this; } public ArrayList getDescriptionBetween() { return DescriptionBetween; } public HR_DocumentsQuery setDescriptionBetween(ArrayList value) { this.DescriptionBetween = value; return this; } public ArrayList getDescriptionIn() { return DescriptionIn; } public HR_DocumentsQuery setDescriptionIn(ArrayList value) { this.DescriptionIn = value; return this; } public String getPhysicalFileName() { return PhysicalFileName; } public HR_DocumentsQuery setPhysicalFileName(String value) { this.PhysicalFileName = value; return this; } public String getPhysicalFileNameStartsWith() { return PhysicalFileNameStartsWith; } public HR_DocumentsQuery setPhysicalFileNameStartsWith(String value) { this.PhysicalFileNameStartsWith = value; return this; } public String getPhysicalFileNameEndsWith() { return PhysicalFileNameEndsWith; } public HR_DocumentsQuery setPhysicalFileNameEndsWith(String value) { this.PhysicalFileNameEndsWith = value; return this; } public String getPhysicalFileNameContains() { return PhysicalFileNameContains; } public HR_DocumentsQuery setPhysicalFileNameContains(String value) { this.PhysicalFileNameContains = value; return this; } public String getPhysicalFileNameLike() { return PhysicalFileNameLike; } public HR_DocumentsQuery setPhysicalFileNameLike(String value) { this.PhysicalFileNameLike = value; return this; } public ArrayList getPhysicalFileNameBetween() { return PhysicalFileNameBetween; } public HR_DocumentsQuery setPhysicalFileNameBetween(ArrayList value) { this.PhysicalFileNameBetween = value; return this; } public ArrayList getPhysicalFileNameIn() { return PhysicalFileNameIn; } public HR_DocumentsQuery setPhysicalFileNameIn(ArrayList value) { this.PhysicalFileNameIn = value; return this; } public Integer getItemNo() { return ItemNo; } public HR_DocumentsQuery setItemNo(Integer value) { this.ItemNo = value; return this; } public Integer getItemNoGreaterThanOrEqualTo() { return ItemNoGreaterThanOrEqualTo; } public HR_DocumentsQuery setItemNoGreaterThanOrEqualTo(Integer value) { this.ItemNoGreaterThanOrEqualTo = value; return this; } public Integer getItemNoGreaterThan() { return ItemNoGreaterThan; } public HR_DocumentsQuery setItemNoGreaterThan(Integer value) { this.ItemNoGreaterThan = value; return this; } public Integer getItemNoLessThan() { return ItemNoLessThan; } public HR_DocumentsQuery setItemNoLessThan(Integer value) { this.ItemNoLessThan = value; return this; } public Integer getItemNoLessThanOrEqualTo() { return ItemNoLessThanOrEqualTo; } public HR_DocumentsQuery setItemNoLessThanOrEqualTo(Integer value) { this.ItemNoLessThanOrEqualTo = value; return this; } public Integer getItemNoNotEqualTo() { return ItemNoNotEqualTo; } public HR_DocumentsQuery setItemNoNotEqualTo(Integer value) { this.ItemNoNotEqualTo = value; return this; } public ArrayList getItemNoBetween() { return ItemNoBetween; } public HR_DocumentsQuery setItemNoBetween(ArrayList value) { this.ItemNoBetween = value; return this; } public ArrayList getItemNoIn() { return ItemNoIn; } public HR_DocumentsQuery setItemNoIn(ArrayList value) { this.ItemNoIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class HR_NotesQuery extends QueryDb implements IReturn> { public String RecID = null; public String RecIDStartsWith = null; public String RecIDEndsWith = null; public String RecIDContains = null; public String RecIDLike = null; public ArrayList RecIDBetween = null; public ArrayList RecIDIn = null; public String StaffID = null; public String StaffIDStartsWith = null; public String StaffIDEndsWith = null; public String StaffIDContains = null; public String StaffIDLike = null; public ArrayList StaffIDBetween = null; public ArrayList StaffIDIn = null; public String NoteTypeID = null; public String NoteTypeIDStartsWith = null; public String NoteTypeIDEndsWith = null; public String NoteTypeIDContains = null; public String NoteTypeIDLike = null; public ArrayList NoteTypeIDBetween = null; public ArrayList NoteTypeIDIn = null; public Date LastSavedDateTime = null; public Date LastSavedDateTimeGreaterThanOrEqualTo = null; public Date LastSavedDateTimeGreaterThan = null; public Date LastSavedDateTimeLessThan = null; public Date LastSavedDateTimeLessThanOrEqualTo = null; public Date LastSavedDateTimeNotEqualTo = null; public ArrayList LastSavedDateTimeBetween = null; public ArrayList LastSavedDateTimeIn = null; public String LastSavedByStaffID = null; public String LastSavedByStaffIDStartsWith = null; public String LastSavedByStaffIDEndsWith = null; public String LastSavedByStaffIDContains = null; public String LastSavedByStaffIDLike = null; public ArrayList LastSavedByStaffIDBetween = null; public ArrayList LastSavedByStaffIDIn = null; public String NoteText = null; public String NoteTextStartsWith = null; public String NoteTextEndsWith = null; public String NoteTextContains = null; public String NoteTextLike = null; public ArrayList NoteTextBetween = null; public ArrayList NoteTextIn = null; public Integer ItemNo = null; public Integer ItemNoGreaterThanOrEqualTo = null; public Integer ItemNoGreaterThan = null; public Integer ItemNoLessThan = null; public Integer ItemNoLessThanOrEqualTo = null; public Integer ItemNoNotEqualTo = null; public ArrayList ItemNoBetween = null; public ArrayList ItemNoIn = null; public String getRecID() { return RecID; } public HR_NotesQuery setRecID(String value) { this.RecID = value; return this; } public String getRecIDStartsWith() { return RecIDStartsWith; } public HR_NotesQuery setRecIDStartsWith(String value) { this.RecIDStartsWith = value; return this; } public String getRecIDEndsWith() { return RecIDEndsWith; } public HR_NotesQuery setRecIDEndsWith(String value) { this.RecIDEndsWith = value; return this; } public String getRecIDContains() { return RecIDContains; } public HR_NotesQuery setRecIDContains(String value) { this.RecIDContains = value; return this; } public String getRecIDLike() { return RecIDLike; } public HR_NotesQuery setRecIDLike(String value) { this.RecIDLike = value; return this; } public ArrayList getRecIDBetween() { return RecIDBetween; } public HR_NotesQuery setRecIDBetween(ArrayList value) { this.RecIDBetween = value; return this; } public ArrayList getRecIDIn() { return RecIDIn; } public HR_NotesQuery setRecIDIn(ArrayList value) { this.RecIDIn = value; return this; } public String getStaffID() { return StaffID; } public HR_NotesQuery setStaffID(String value) { this.StaffID = value; return this; } public String getStaffIDStartsWith() { return StaffIDStartsWith; } public HR_NotesQuery setStaffIDStartsWith(String value) { this.StaffIDStartsWith = value; return this; } public String getStaffIDEndsWith() { return StaffIDEndsWith; } public HR_NotesQuery setStaffIDEndsWith(String value) { this.StaffIDEndsWith = value; return this; } public String getStaffIDContains() { return StaffIDContains; } public HR_NotesQuery setStaffIDContains(String value) { this.StaffIDContains = value; return this; } public String getStaffIDLike() { return StaffIDLike; } public HR_NotesQuery setStaffIDLike(String value) { this.StaffIDLike = value; return this; } public ArrayList getStaffIDBetween() { return StaffIDBetween; } public HR_NotesQuery setStaffIDBetween(ArrayList value) { this.StaffIDBetween = value; return this; } public ArrayList getStaffIDIn() { return StaffIDIn; } public HR_NotesQuery setStaffIDIn(ArrayList value) { this.StaffIDIn = value; return this; } public String getNoteTypeID() { return NoteTypeID; } public HR_NotesQuery setNoteTypeID(String value) { this.NoteTypeID = value; return this; } public String getNoteTypeIDStartsWith() { return NoteTypeIDStartsWith; } public HR_NotesQuery setNoteTypeIDStartsWith(String value) { this.NoteTypeIDStartsWith = value; return this; } public String getNoteTypeIDEndsWith() { return NoteTypeIDEndsWith; } public HR_NotesQuery setNoteTypeIDEndsWith(String value) { this.NoteTypeIDEndsWith = value; return this; } public String getNoteTypeIDContains() { return NoteTypeIDContains; } public HR_NotesQuery setNoteTypeIDContains(String value) { this.NoteTypeIDContains = value; return this; } public String getNoteTypeIDLike() { return NoteTypeIDLike; } public HR_NotesQuery setNoteTypeIDLike(String value) { this.NoteTypeIDLike = value; return this; } public ArrayList getNoteTypeIDBetween() { return NoteTypeIDBetween; } public HR_NotesQuery setNoteTypeIDBetween(ArrayList value) { this.NoteTypeIDBetween = value; return this; } public ArrayList getNoteTypeIDIn() { return NoteTypeIDIn; } public HR_NotesQuery setNoteTypeIDIn(ArrayList value) { this.NoteTypeIDIn = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public HR_NotesQuery setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getLastSavedDateTimeGreaterThanOrEqualTo() { return LastSavedDateTimeGreaterThanOrEqualTo; } public HR_NotesQuery setLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.LastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeGreaterThan() { return LastSavedDateTimeGreaterThan; } public HR_NotesQuery setLastSavedDateTimeGreaterThan(Date value) { this.LastSavedDateTimeGreaterThan = value; return this; } public Date getLastSavedDateTimeLessThan() { return LastSavedDateTimeLessThan; } public HR_NotesQuery setLastSavedDateTimeLessThan(Date value) { this.LastSavedDateTimeLessThan = value; return this; } public Date getLastSavedDateTimeLessThanOrEqualTo() { return LastSavedDateTimeLessThanOrEqualTo; } public HR_NotesQuery setLastSavedDateTimeLessThanOrEqualTo(Date value) { this.LastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeNotEqualTo() { return LastSavedDateTimeNotEqualTo; } public HR_NotesQuery setLastSavedDateTimeNotEqualTo(Date value) { this.LastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getLastSavedDateTimeBetween() { return LastSavedDateTimeBetween; } public HR_NotesQuery setLastSavedDateTimeBetween(ArrayList value) { this.LastSavedDateTimeBetween = value; return this; } public ArrayList getLastSavedDateTimeIn() { return LastSavedDateTimeIn; } public HR_NotesQuery setLastSavedDateTimeIn(ArrayList value) { this.LastSavedDateTimeIn = value; return this; } public String getLastSavedByStaffID() { return LastSavedByStaffID; } public HR_NotesQuery setLastSavedByStaffID(String value) { this.LastSavedByStaffID = value; return this; } public String getLastSavedByStaffIDStartsWith() { return LastSavedByStaffIDStartsWith; } public HR_NotesQuery setLastSavedByStaffIDStartsWith(String value) { this.LastSavedByStaffIDStartsWith = value; return this; } public String getLastSavedByStaffIDEndsWith() { return LastSavedByStaffIDEndsWith; } public HR_NotesQuery setLastSavedByStaffIDEndsWith(String value) { this.LastSavedByStaffIDEndsWith = value; return this; } public String getLastSavedByStaffIDContains() { return LastSavedByStaffIDContains; } public HR_NotesQuery setLastSavedByStaffIDContains(String value) { this.LastSavedByStaffIDContains = value; return this; } public String getLastSavedByStaffIDLike() { return LastSavedByStaffIDLike; } public HR_NotesQuery setLastSavedByStaffIDLike(String value) { this.LastSavedByStaffIDLike = value; return this; } public ArrayList getLastSavedByStaffIDBetween() { return LastSavedByStaffIDBetween; } public HR_NotesQuery setLastSavedByStaffIDBetween(ArrayList value) { this.LastSavedByStaffIDBetween = value; return this; } public ArrayList getLastSavedByStaffIDIn() { return LastSavedByStaffIDIn; } public HR_NotesQuery setLastSavedByStaffIDIn(ArrayList value) { this.LastSavedByStaffIDIn = value; return this; } public String getNoteText() { return NoteText; } public HR_NotesQuery setNoteText(String value) { this.NoteText = value; return this; } public String getNoteTextStartsWith() { return NoteTextStartsWith; } public HR_NotesQuery setNoteTextStartsWith(String value) { this.NoteTextStartsWith = value; return this; } public String getNoteTextEndsWith() { return NoteTextEndsWith; } public HR_NotesQuery setNoteTextEndsWith(String value) { this.NoteTextEndsWith = value; return this; } public String getNoteTextContains() { return NoteTextContains; } public HR_NotesQuery setNoteTextContains(String value) { this.NoteTextContains = value; return this; } public String getNoteTextLike() { return NoteTextLike; } public HR_NotesQuery setNoteTextLike(String value) { this.NoteTextLike = value; return this; } public ArrayList getNoteTextBetween() { return NoteTextBetween; } public HR_NotesQuery setNoteTextBetween(ArrayList value) { this.NoteTextBetween = value; return this; } public ArrayList getNoteTextIn() { return NoteTextIn; } public HR_NotesQuery setNoteTextIn(ArrayList value) { this.NoteTextIn = value; return this; } public Integer getItemNo() { return ItemNo; } public HR_NotesQuery setItemNo(Integer value) { this.ItemNo = value; return this; } public Integer getItemNoGreaterThanOrEqualTo() { return ItemNoGreaterThanOrEqualTo; } public HR_NotesQuery setItemNoGreaterThanOrEqualTo(Integer value) { this.ItemNoGreaterThanOrEqualTo = value; return this; } public Integer getItemNoGreaterThan() { return ItemNoGreaterThan; } public HR_NotesQuery setItemNoGreaterThan(Integer value) { this.ItemNoGreaterThan = value; return this; } public Integer getItemNoLessThan() { return ItemNoLessThan; } public HR_NotesQuery setItemNoLessThan(Integer value) { this.ItemNoLessThan = value; return this; } public Integer getItemNoLessThanOrEqualTo() { return ItemNoLessThanOrEqualTo; } public HR_NotesQuery setItemNoLessThanOrEqualTo(Integer value) { this.ItemNoLessThanOrEqualTo = value; return this; } public Integer getItemNoNotEqualTo() { return ItemNoNotEqualTo; } public HR_NotesQuery setItemNoNotEqualTo(Integer value) { this.ItemNoNotEqualTo = value; return this; } public ArrayList getItemNoBetween() { return ItemNoBetween; } public HR_NotesQuery setItemNoBetween(ArrayList value) { this.ItemNoBetween = value; return this; } public ArrayList getItemNoIn() { return ItemNoIn; } public HR_NotesQuery setItemNoIn(ArrayList value) { this.ItemNoIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class HR_SkillRatingsQuery extends QueryDb implements IReturn> { public String RecID = null; public String RecIDStartsWith = null; public String RecIDEndsWith = null; public String RecIDContains = null; public String RecIDLike = null; public ArrayList RecIDBetween = null; public ArrayList RecIDIn = null; public String Name = null; public String NameStartsWith = null; public String NameEndsWith = null; public String NameContains = null; public String NameLike = null; public ArrayList NameBetween = null; public ArrayList NameIn = null; public String Description = null; public String DescriptionStartsWith = null; public String DescriptionEndsWith = null; public String DescriptionContains = null; public String DescriptionLike = null; public ArrayList DescriptionBetween = null; public ArrayList DescriptionIn = null; public Integer ItemNo = null; public Integer ItemNoGreaterThanOrEqualTo = null; public Integer ItemNoGreaterThan = null; public Integer ItemNoLessThan = null; public Integer ItemNoLessThanOrEqualTo = null; public Integer ItemNoNotEqualTo = null; public ArrayList ItemNoBetween = null; public ArrayList ItemNoIn = null; public Boolean IsEnabled = null; public ArrayList RowHash = null; public Boolean IsDefault = null; public String getRecID() { return RecID; } public HR_SkillRatingsQuery setRecID(String value) { this.RecID = value; return this; } public String getRecIDStartsWith() { return RecIDStartsWith; } public HR_SkillRatingsQuery setRecIDStartsWith(String value) { this.RecIDStartsWith = value; return this; } public String getRecIDEndsWith() { return RecIDEndsWith; } public HR_SkillRatingsQuery setRecIDEndsWith(String value) { this.RecIDEndsWith = value; return this; } public String getRecIDContains() { return RecIDContains; } public HR_SkillRatingsQuery setRecIDContains(String value) { this.RecIDContains = value; return this; } public String getRecIDLike() { return RecIDLike; } public HR_SkillRatingsQuery setRecIDLike(String value) { this.RecIDLike = value; return this; } public ArrayList getRecIDBetween() { return RecIDBetween; } public HR_SkillRatingsQuery setRecIDBetween(ArrayList value) { this.RecIDBetween = value; return this; } public ArrayList getRecIDIn() { return RecIDIn; } public HR_SkillRatingsQuery setRecIDIn(ArrayList value) { this.RecIDIn = value; return this; } public String getName() { return Name; } public HR_SkillRatingsQuery setName(String value) { this.Name = value; return this; } public String getNameStartsWith() { return NameStartsWith; } public HR_SkillRatingsQuery setNameStartsWith(String value) { this.NameStartsWith = value; return this; } public String getNameEndsWith() { return NameEndsWith; } public HR_SkillRatingsQuery setNameEndsWith(String value) { this.NameEndsWith = value; return this; } public String getNameContains() { return NameContains; } public HR_SkillRatingsQuery setNameContains(String value) { this.NameContains = value; return this; } public String getNameLike() { return NameLike; } public HR_SkillRatingsQuery setNameLike(String value) { this.NameLike = value; return this; } public ArrayList getNameBetween() { return NameBetween; } public HR_SkillRatingsQuery setNameBetween(ArrayList value) { this.NameBetween = value; return this; } public ArrayList getNameIn() { return NameIn; } public HR_SkillRatingsQuery setNameIn(ArrayList value) { this.NameIn = value; return this; } public String getDescription() { return Description; } public HR_SkillRatingsQuery setDescription(String value) { this.Description = value; return this; } public String getDescriptionStartsWith() { return DescriptionStartsWith; } public HR_SkillRatingsQuery setDescriptionStartsWith(String value) { this.DescriptionStartsWith = value; return this; } public String getDescriptionEndsWith() { return DescriptionEndsWith; } public HR_SkillRatingsQuery setDescriptionEndsWith(String value) { this.DescriptionEndsWith = value; return this; } public String getDescriptionContains() { return DescriptionContains; } public HR_SkillRatingsQuery setDescriptionContains(String value) { this.DescriptionContains = value; return this; } public String getDescriptionLike() { return DescriptionLike; } public HR_SkillRatingsQuery setDescriptionLike(String value) { this.DescriptionLike = value; return this; } public ArrayList getDescriptionBetween() { return DescriptionBetween; } public HR_SkillRatingsQuery setDescriptionBetween(ArrayList value) { this.DescriptionBetween = value; return this; } public ArrayList getDescriptionIn() { return DescriptionIn; } public HR_SkillRatingsQuery setDescriptionIn(ArrayList value) { this.DescriptionIn = value; return this; } public Integer getItemNo() { return ItemNo; } public HR_SkillRatingsQuery setItemNo(Integer value) { this.ItemNo = value; return this; } public Integer getItemNoGreaterThanOrEqualTo() { return ItemNoGreaterThanOrEqualTo; } public HR_SkillRatingsQuery setItemNoGreaterThanOrEqualTo(Integer value) { this.ItemNoGreaterThanOrEqualTo = value; return this; } public Integer getItemNoGreaterThan() { return ItemNoGreaterThan; } public HR_SkillRatingsQuery setItemNoGreaterThan(Integer value) { this.ItemNoGreaterThan = value; return this; } public Integer getItemNoLessThan() { return ItemNoLessThan; } public HR_SkillRatingsQuery setItemNoLessThan(Integer value) { this.ItemNoLessThan = value; return this; } public Integer getItemNoLessThanOrEqualTo() { return ItemNoLessThanOrEqualTo; } public HR_SkillRatingsQuery setItemNoLessThanOrEqualTo(Integer value) { this.ItemNoLessThanOrEqualTo = value; return this; } public Integer getItemNoNotEqualTo() { return ItemNoNotEqualTo; } public HR_SkillRatingsQuery setItemNoNotEqualTo(Integer value) { this.ItemNoNotEqualTo = value; return this; } public ArrayList getItemNoBetween() { return ItemNoBetween; } public HR_SkillRatingsQuery setItemNoBetween(ArrayList value) { this.ItemNoBetween = value; return this; } public ArrayList getItemNoIn() { return ItemNoIn; } public HR_SkillRatingsQuery setItemNoIn(ArrayList value) { this.ItemNoIn = value; return this; } public Boolean getIsEnabled() { return IsEnabled; } public HR_SkillRatingsQuery setIsEnabled(Boolean value) { this.IsEnabled = value; return this; } public ArrayList getRowHash() { return RowHash; } public HR_SkillRatingsQuery setRowHash(ArrayList value) { this.RowHash = value; return this; } public Boolean getIsDefault() { return IsDefault; } public HR_SkillRatingsQuery setIsDefault(Boolean value) { this.IsDefault = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class HR_SkillsQuery extends QueryDb implements IReturn> { public String RecID = null; public String RecIDStartsWith = null; public String RecIDEndsWith = null; public String RecIDContains = null; public String RecIDLike = null; public ArrayList RecIDBetween = null; public ArrayList RecIDIn = null; public String Name = null; public String NameStartsWith = null; public String NameEndsWith = null; public String NameContains = null; public String NameLike = null; public ArrayList NameBetween = null; public ArrayList NameIn = null; public String Description = null; public String DescriptionStartsWith = null; public String DescriptionEndsWith = null; public String DescriptionContains = null; public String DescriptionLike = null; public ArrayList DescriptionBetween = null; public ArrayList DescriptionIn = null; public Boolean ExamRequired = null; public String HR_Departments_RecID = null; public String HR_Departments_RecIDStartsWith = null; public String HR_Departments_RecIDEndsWith = null; public String HR_Departments_RecIDContains = null; public String HR_Departments_RecIDLike = null; public ArrayList HR_Departments_RecIDBetween = null; public ArrayList HR_Departments_RecIDIn = null; public Boolean IsEnabled = null; public Integer ItemNo = null; public Integer ItemNoGreaterThanOrEqualTo = null; public Integer ItemNoGreaterThan = null; public Integer ItemNoLessThan = null; public Integer ItemNoLessThanOrEqualTo = null; public Integer ItemNoNotEqualTo = null; public ArrayList ItemNoBetween = null; public ArrayList ItemNoIn = null; public ArrayList RowHash = null; public String getRecID() { return RecID; } public HR_SkillsQuery setRecID(String value) { this.RecID = value; return this; } public String getRecIDStartsWith() { return RecIDStartsWith; } public HR_SkillsQuery setRecIDStartsWith(String value) { this.RecIDStartsWith = value; return this; } public String getRecIDEndsWith() { return RecIDEndsWith; } public HR_SkillsQuery setRecIDEndsWith(String value) { this.RecIDEndsWith = value; return this; } public String getRecIDContains() { return RecIDContains; } public HR_SkillsQuery setRecIDContains(String value) { this.RecIDContains = value; return this; } public String getRecIDLike() { return RecIDLike; } public HR_SkillsQuery setRecIDLike(String value) { this.RecIDLike = value; return this; } public ArrayList getRecIDBetween() { return RecIDBetween; } public HR_SkillsQuery setRecIDBetween(ArrayList value) { this.RecIDBetween = value; return this; } public ArrayList getRecIDIn() { return RecIDIn; } public HR_SkillsQuery setRecIDIn(ArrayList value) { this.RecIDIn = value; return this; } public String getName() { return Name; } public HR_SkillsQuery setName(String value) { this.Name = value; return this; } public String getNameStartsWith() { return NameStartsWith; } public HR_SkillsQuery setNameStartsWith(String value) { this.NameStartsWith = value; return this; } public String getNameEndsWith() { return NameEndsWith; } public HR_SkillsQuery setNameEndsWith(String value) { this.NameEndsWith = value; return this; } public String getNameContains() { return NameContains; } public HR_SkillsQuery setNameContains(String value) { this.NameContains = value; return this; } public String getNameLike() { return NameLike; } public HR_SkillsQuery setNameLike(String value) { this.NameLike = value; return this; } public ArrayList getNameBetween() { return NameBetween; } public HR_SkillsQuery setNameBetween(ArrayList value) { this.NameBetween = value; return this; } public ArrayList getNameIn() { return NameIn; } public HR_SkillsQuery setNameIn(ArrayList value) { this.NameIn = value; return this; } public String getDescription() { return Description; } public HR_SkillsQuery setDescription(String value) { this.Description = value; return this; } public String getDescriptionStartsWith() { return DescriptionStartsWith; } public HR_SkillsQuery setDescriptionStartsWith(String value) { this.DescriptionStartsWith = value; return this; } public String getDescriptionEndsWith() { return DescriptionEndsWith; } public HR_SkillsQuery setDescriptionEndsWith(String value) { this.DescriptionEndsWith = value; return this; } public String getDescriptionContains() { return DescriptionContains; } public HR_SkillsQuery setDescriptionContains(String value) { this.DescriptionContains = value; return this; } public String getDescriptionLike() { return DescriptionLike; } public HR_SkillsQuery setDescriptionLike(String value) { this.DescriptionLike = value; return this; } public ArrayList getDescriptionBetween() { return DescriptionBetween; } public HR_SkillsQuery setDescriptionBetween(ArrayList value) { this.DescriptionBetween = value; return this; } public ArrayList getDescriptionIn() { return DescriptionIn; } public HR_SkillsQuery setDescriptionIn(ArrayList value) { this.DescriptionIn = value; return this; } public Boolean isExamRequired() { return ExamRequired; } public HR_SkillsQuery setExamRequired(Boolean value) { this.ExamRequired = value; return this; } public String getHrDepartmentsRecID() { return HR_Departments_RecID; } public HR_SkillsQuery setHrDepartmentsRecID(String value) { this.HR_Departments_RecID = value; return this; } public String getHrDepartmentsRecIDStartsWith() { return HR_Departments_RecIDStartsWith; } public HR_SkillsQuery setHrDepartmentsRecIDStartsWith(String value) { this.HR_Departments_RecIDStartsWith = value; return this; } public String getHrDepartmentsRecIDEndsWith() { return HR_Departments_RecIDEndsWith; } public HR_SkillsQuery setHrDepartmentsRecIDEndsWith(String value) { this.HR_Departments_RecIDEndsWith = value; return this; } public String getHrDepartmentsRecIDContains() { return HR_Departments_RecIDContains; } public HR_SkillsQuery setHrDepartmentsRecIDContains(String value) { this.HR_Departments_RecIDContains = value; return this; } public String getHrDepartmentsRecIDLike() { return HR_Departments_RecIDLike; } public HR_SkillsQuery setHrDepartmentsRecIDLike(String value) { this.HR_Departments_RecIDLike = value; return this; } public ArrayList getHrDepartmentsRecIDBetween() { return HR_Departments_RecIDBetween; } public HR_SkillsQuery setHrDepartmentsRecIDBetween(ArrayList value) { this.HR_Departments_RecIDBetween = value; return this; } public ArrayList getHrDepartmentsRecIDIn() { return HR_Departments_RecIDIn; } public HR_SkillsQuery setHrDepartmentsRecIDIn(ArrayList value) { this.HR_Departments_RecIDIn = value; return this; } public Boolean getIsEnabled() { return IsEnabled; } public HR_SkillsQuery setIsEnabled(Boolean value) { this.IsEnabled = value; return this; } public Integer getItemNo() { return ItemNo; } public HR_SkillsQuery setItemNo(Integer value) { this.ItemNo = value; return this; } public Integer getItemNoGreaterThanOrEqualTo() { return ItemNoGreaterThanOrEqualTo; } public HR_SkillsQuery setItemNoGreaterThanOrEqualTo(Integer value) { this.ItemNoGreaterThanOrEqualTo = value; return this; } public Integer getItemNoGreaterThan() { return ItemNoGreaterThan; } public HR_SkillsQuery setItemNoGreaterThan(Integer value) { this.ItemNoGreaterThan = value; return this; } public Integer getItemNoLessThan() { return ItemNoLessThan; } public HR_SkillsQuery setItemNoLessThan(Integer value) { this.ItemNoLessThan = value; return this; } public Integer getItemNoLessThanOrEqualTo() { return ItemNoLessThanOrEqualTo; } public HR_SkillsQuery setItemNoLessThanOrEqualTo(Integer value) { this.ItemNoLessThanOrEqualTo = value; return this; } public Integer getItemNoNotEqualTo() { return ItemNoNotEqualTo; } public HR_SkillsQuery setItemNoNotEqualTo(Integer value) { this.ItemNoNotEqualTo = value; return this; } public ArrayList getItemNoBetween() { return ItemNoBetween; } public HR_SkillsQuery setItemNoBetween(ArrayList value) { this.ItemNoBetween = value; return this; } public ArrayList getItemNoIn() { return ItemNoIn; } public HR_SkillsQuery setItemNoIn(ArrayList value) { this.ItemNoIn = value; return this; } public ArrayList getRowHash() { return RowHash; } public HR_SkillsQuery setRowHash(ArrayList value) { this.RowHash = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @Route(Path="/Queries/HR_Staff", Verbs="GET") @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class HR_StaffQuery extends QueryDb implements IReturn> { public String StaffID = null; public String StaffIDStartsWith = null; public String StaffIDEndsWith = null; public String StaffIDContains = null; public String StaffIDLike = null; public ArrayList StaffIDBetween = null; public ArrayList StaffIDIn = null; public Date LastSavedDateTime = null; public Date LastSavedDateTimeGreaterThanOrEqualTo = null; public Date LastSavedDateTimeGreaterThan = null; public Date LastSavedDateTimeLessThan = null; public Date LastSavedDateTimeLessThanOrEqualTo = null; public Date LastSavedDateTimeNotEqualTo = null; public ArrayList LastSavedDateTimeBetween = null; public ArrayList LastSavedDateTimeIn = null; public String Title = null; public String TitleStartsWith = null; public String TitleEndsWith = null; public String TitleContains = null; public String TitleLike = null; public ArrayList TitleBetween = null; public ArrayList TitleIn = null; public String FName = null; public String FNameStartsWith = null; public String FNameEndsWith = null; public String FNameContains = null; public String FNameLike = null; public ArrayList FNameBetween = null; public ArrayList FNameIn = null; public String SName = null; public String SNameStartsWith = null; public String SNameEndsWith = null; public String SNameContains = null; public String SNameLike = null; public ArrayList SNameBetween = null; public ArrayList SNameIn = null; public String Position1 = null; public String Position1StartsWith = null; public String Position1EndsWith = null; public String Position1Contains = null; public String Position1Like = null; public ArrayList Position1Between = null; public ArrayList Position1In = null; public String Position2 = null; public String Position2StartsWith = null; public String Position2EndsWith = null; public String Position2Contains = null; public String Position2Like = null; public ArrayList Position2Between = null; public ArrayList Position2In = null; public String Password = null; public String PasswordStartsWith = null; public String PasswordEndsWith = null; public String PasswordContains = null; public String PasswordLike = null; public ArrayList PasswordBetween = null; public ArrayList PasswordIn = null; public Boolean IsActive = null; public String EmailAddress = null; public String EmailAddressStartsWith = null; public String EmailAddressEndsWith = null; public String EmailAddressContains = null; public String EmailAddressLike = null; public ArrayList EmailAddressBetween = null; public ArrayList EmailAddressIn = null; public String EmailDisplayName = null; public String EmailDisplayNameStartsWith = null; public String EmailDisplayNameEndsWith = null; public String EmailDisplayNameContains = null; public String EmailDisplayNameLike = null; public ArrayList EmailDisplayNameBetween = null; public ArrayList EmailDisplayNameIn = null; public String SMTPUsername = null; public String SMTPUsernameStartsWith = null; public String SMTPUsernameEndsWith = null; public String SMTPUsernameContains = null; public String SMTPUsernameLike = null; public ArrayList SMTPUsernameBetween = null; public ArrayList SMTPUsernameIn = null; public String SMTPPassword = null; public String SMTPPasswordStartsWith = null; public String SMTPPasswordEndsWith = null; public String SMTPPasswordContains = null; public String SMTPPasswordLike = null; public ArrayList SMTPPasswordBetween = null; public ArrayList SMTPPasswordIn = null; public String Username = null; public String UsernameStartsWith = null; public String UsernameEndsWith = null; public String UsernameContains = null; public String UsernameLike = null; public ArrayList UsernameBetween = null; public ArrayList UsernameIn = null; public Boolean MustChangePasswordNextLogin = null; public Date PasswordLastChangedDateTime = null; public Date PasswordLastChangedDateTimeGreaterThanOrEqualTo = null; public Date PasswordLastChangedDateTimeGreaterThan = null; public Date PasswordLastChangedDateTimeLessThan = null; public Date PasswordLastChangedDateTimeLessThanOrEqualTo = null; public Date PasswordLastChangedDateTimeNotEqualTo = null; public ArrayList PasswordLastChangedDateTimeBetween = null; public ArrayList PasswordLastChangedDateTimeIn = null; public String SQLLogin = null; public String SQLLoginStartsWith = null; public String SQLLoginEndsWith = null; public String SQLLoginContains = null; public String SQLLoginLike = null; public ArrayList SQLLoginBetween = null; public ArrayList SQLLoginIn = null; public String SQLPassword = null; public String SQLPasswordStartsWith = null; public String SQLPasswordEndsWith = null; public String SQLPasswordContains = null; public String SQLPasswordLike = null; public ArrayList SQLPasswordBetween = null; public ArrayList SQLPasswordIn = null; public String ReportSQLLogin = null; public String ReportSQLLoginStartsWith = null; public String ReportSQLLoginEndsWith = null; public String ReportSQLLoginContains = null; public String ReportSQLLoginLike = null; public ArrayList ReportSQLLoginBetween = null; public ArrayList ReportSQLLoginIn = null; public String ReportSQLPassword = null; public String ReportSQLPasswordStartsWith = null; public String ReportSQLPasswordEndsWith = null; public String ReportSQLPasswordContains = null; public String ReportSQLPasswordLike = null; public ArrayList ReportSQLPasswordBetween = null; public ArrayList ReportSQLPasswordIn = null; public ArrayList Picture = null; public String HR_Departments_RecID = null; public String HR_Departments_RecIDStartsWith = null; public String HR_Departments_RecIDEndsWith = null; public String HR_Departments_RecIDContains = null; public String HR_Departments_RecIDLike = null; public ArrayList HR_Departments_RecIDBetween = null; public ArrayList HR_Departments_RecIDIn = null; public String Extension = null; public String ExtensionStartsWith = null; public String ExtensionEndsWith = null; public String ExtensionContains = null; public String ExtensionLike = null; public ArrayList ExtensionBetween = null; public ArrayList ExtensionIn = null; public String Mobile = null; public String MobileStartsWith = null; public String MobileEndsWith = null; public String MobileContains = null; public String MobileLike = null; public ArrayList MobileBetween = null; public ArrayList MobileIn = null; public Boolean UsePrepaidLabourPacks = null; public Short AuthenticationModes = null; public Short AuthenticationModesGreaterThanOrEqualTo = null; public Short AuthenticationModesGreaterThan = null; public Short AuthenticationModesLessThan = null; public Short AuthenticationModesLessThanOrEqualTo = null; public Short AuthenticationModesNotEqualTo = null; public ArrayList AuthenticationModesBetween = null; public ArrayList AuthenticationModesIn = null; public String WindowsDomainAccount = null; public String WindowsDomainAccountStartsWith = null; public String WindowsDomainAccountEndsWith = null; public String WindowsDomainAccountContains = null; public String WindowsDomainAccountLike = null; public ArrayList WindowsDomainAccountBetween = null; public ArrayList WindowsDomainAccountIn = null; public Date SMTPPasswordLastChangedDateTime = null; public Date SMTPPasswordLastChangedDateTimeGreaterThanOrEqualTo = null; public Date SMTPPasswordLastChangedDateTimeGreaterThan = null; public Date SMTPPasswordLastChangedDateTimeLessThan = null; public Date SMTPPasswordLastChangedDateTimeLessThanOrEqualTo = null; public Date SMTPPasswordLastChangedDateTimeNotEqualTo = null; public ArrayList SMTPPasswordLastChangedDateTimeBetween = null; public ArrayList SMTPPasswordLastChangedDateTimeIn = null; public String SY_Menu_RecID = null; public String SY_Menu_RecIDStartsWith = null; public String SY_Menu_RecIDEndsWith = null; public String SY_Menu_RecIDContains = null; public String SY_Menu_RecIDLike = null; public ArrayList SY_Menu_RecIDBetween = null; public ArrayList SY_Menu_RecIDIn = null; public String SY_PrintGroup_RecID = null; public String SY_PrintGroup_RecIDStartsWith = null; public String SY_PrintGroup_RecIDEndsWith = null; public String SY_PrintGroup_RecIDContains = null; public String SY_PrintGroup_RecIDLike = null; public ArrayList SY_PrintGroup_RecIDBetween = null; public ArrayList SY_PrintGroup_RecIDIn = null; public Date SQLLoginLastSavedDateTime = null; public Date SQLLoginLastSavedDateTimeGreaterThanOrEqualTo = null; public Date SQLLoginLastSavedDateTimeGreaterThan = null; public Date SQLLoginLastSavedDateTimeLessThan = null; public Date SQLLoginLastSavedDateTimeLessThanOrEqualTo = null; public Date SQLLoginLastSavedDateTimeNotEqualTo = null; public ArrayList SQLLoginLastSavedDateTimeBetween = null; public ArrayList SQLLoginLastSavedDateTimeIn = null; public Date ReportsLoginLastSavedDateTime = null; public Date ReportsLoginLastSavedDateTimeGreaterThanOrEqualTo = null; public Date ReportsLoginLastSavedDateTimeGreaterThan = null; public Date ReportsLoginLastSavedDateTimeLessThan = null; public Date ReportsLoginLastSavedDateTimeLessThanOrEqualTo = null; public Date ReportsLoginLastSavedDateTimeNotEqualTo = null; public ArrayList ReportsLoginLastSavedDateTimeBetween = null; public ArrayList ReportsLoginLastSavedDateTimeIn = null; public Boolean IsEnabled = null; public String getStaffID() { return StaffID; } public HR_StaffQuery setStaffID(String value) { this.StaffID = value; return this; } public String getStaffIDStartsWith() { return StaffIDStartsWith; } public HR_StaffQuery setStaffIDStartsWith(String value) { this.StaffIDStartsWith = value; return this; } public String getStaffIDEndsWith() { return StaffIDEndsWith; } public HR_StaffQuery setStaffIDEndsWith(String value) { this.StaffIDEndsWith = value; return this; } public String getStaffIDContains() { return StaffIDContains; } public HR_StaffQuery setStaffIDContains(String value) { this.StaffIDContains = value; return this; } public String getStaffIDLike() { return StaffIDLike; } public HR_StaffQuery setStaffIDLike(String value) { this.StaffIDLike = value; return this; } public ArrayList getStaffIDBetween() { return StaffIDBetween; } public HR_StaffQuery setStaffIDBetween(ArrayList value) { this.StaffIDBetween = value; return this; } public ArrayList getStaffIDIn() { return StaffIDIn; } public HR_StaffQuery setStaffIDIn(ArrayList value) { this.StaffIDIn = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public HR_StaffQuery setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getLastSavedDateTimeGreaterThanOrEqualTo() { return LastSavedDateTimeGreaterThanOrEqualTo; } public HR_StaffQuery setLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.LastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeGreaterThan() { return LastSavedDateTimeGreaterThan; } public HR_StaffQuery setLastSavedDateTimeGreaterThan(Date value) { this.LastSavedDateTimeGreaterThan = value; return this; } public Date getLastSavedDateTimeLessThan() { return LastSavedDateTimeLessThan; } public HR_StaffQuery setLastSavedDateTimeLessThan(Date value) { this.LastSavedDateTimeLessThan = value; return this; } public Date getLastSavedDateTimeLessThanOrEqualTo() { return LastSavedDateTimeLessThanOrEqualTo; } public HR_StaffQuery setLastSavedDateTimeLessThanOrEqualTo(Date value) { this.LastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeNotEqualTo() { return LastSavedDateTimeNotEqualTo; } public HR_StaffQuery setLastSavedDateTimeNotEqualTo(Date value) { this.LastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getLastSavedDateTimeBetween() { return LastSavedDateTimeBetween; } public HR_StaffQuery setLastSavedDateTimeBetween(ArrayList value) { this.LastSavedDateTimeBetween = value; return this; } public ArrayList getLastSavedDateTimeIn() { return LastSavedDateTimeIn; } public HR_StaffQuery setLastSavedDateTimeIn(ArrayList value) { this.LastSavedDateTimeIn = value; return this; } public String getTitle() { return Title; } public HR_StaffQuery setTitle(String value) { this.Title = value; return this; } public String getTitleStartsWith() { return TitleStartsWith; } public HR_StaffQuery setTitleStartsWith(String value) { this.TitleStartsWith = value; return this; } public String getTitleEndsWith() { return TitleEndsWith; } public HR_StaffQuery setTitleEndsWith(String value) { this.TitleEndsWith = value; return this; } public String getTitleContains() { return TitleContains; } public HR_StaffQuery setTitleContains(String value) { this.TitleContains = value; return this; } public String getTitleLike() { return TitleLike; } public HR_StaffQuery setTitleLike(String value) { this.TitleLike = value; return this; } public ArrayList getTitleBetween() { return TitleBetween; } public HR_StaffQuery setTitleBetween(ArrayList value) { this.TitleBetween = value; return this; } public ArrayList getTitleIn() { return TitleIn; } public HR_StaffQuery setTitleIn(ArrayList value) { this.TitleIn = value; return this; } public String getFName() { return FName; } public HR_StaffQuery setFName(String value) { this.FName = value; return this; } public String getFNameStartsWith() { return FNameStartsWith; } public HR_StaffQuery setFNameStartsWith(String value) { this.FNameStartsWith = value; return this; } public String getFNameEndsWith() { return FNameEndsWith; } public HR_StaffQuery setFNameEndsWith(String value) { this.FNameEndsWith = value; return this; } public String getFNameContains() { return FNameContains; } public HR_StaffQuery setFNameContains(String value) { this.FNameContains = value; return this; } public String getFNameLike() { return FNameLike; } public HR_StaffQuery setFNameLike(String value) { this.FNameLike = value; return this; } public ArrayList getFNameBetween() { return FNameBetween; } public HR_StaffQuery setFNameBetween(ArrayList value) { this.FNameBetween = value; return this; } public ArrayList getFNameIn() { return FNameIn; } public HR_StaffQuery setFNameIn(ArrayList value) { this.FNameIn = value; return this; } public String getSName() { return SName; } public HR_StaffQuery setSName(String value) { this.SName = value; return this; } public String getSNameStartsWith() { return SNameStartsWith; } public HR_StaffQuery setSNameStartsWith(String value) { this.SNameStartsWith = value; return this; } public String getSNameEndsWith() { return SNameEndsWith; } public HR_StaffQuery setSNameEndsWith(String value) { this.SNameEndsWith = value; return this; } public String getSNameContains() { return SNameContains; } public HR_StaffQuery setSNameContains(String value) { this.SNameContains = value; return this; } public String getSNameLike() { return SNameLike; } public HR_StaffQuery setSNameLike(String value) { this.SNameLike = value; return this; } public ArrayList getSNameBetween() { return SNameBetween; } public HR_StaffQuery setSNameBetween(ArrayList value) { this.SNameBetween = value; return this; } public ArrayList getSNameIn() { return SNameIn; } public HR_StaffQuery setSNameIn(ArrayList value) { this.SNameIn = value; return this; } public String getPosition1() { return Position1; } public HR_StaffQuery setPosition1(String value) { this.Position1 = value; return this; } public String getPosition1StartsWith() { return Position1StartsWith; } public HR_StaffQuery setPosition1StartsWith(String value) { this.Position1StartsWith = value; return this; } public String getPosition1EndsWith() { return Position1EndsWith; } public HR_StaffQuery setPosition1EndsWith(String value) { this.Position1EndsWith = value; return this; } public String getPosition1Contains() { return Position1Contains; } public HR_StaffQuery setPosition1Contains(String value) { this.Position1Contains = value; return this; } public String getPosition1Like() { return Position1Like; } public HR_StaffQuery setPosition1Like(String value) { this.Position1Like = value; return this; } public ArrayList getPosition1Between() { return Position1Between; } public HR_StaffQuery setPosition1Between(ArrayList value) { this.Position1Between = value; return this; } public ArrayList getPosition1In() { return Position1In; } public HR_StaffQuery setPosition1In(ArrayList value) { this.Position1In = value; return this; } public String getPosition2() { return Position2; } public HR_StaffQuery setPosition2(String value) { this.Position2 = value; return this; } public String getPosition2StartsWith() { return Position2StartsWith; } public HR_StaffQuery setPosition2StartsWith(String value) { this.Position2StartsWith = value; return this; } public String getPosition2EndsWith() { return Position2EndsWith; } public HR_StaffQuery setPosition2EndsWith(String value) { this.Position2EndsWith = value; return this; } public String getPosition2Contains() { return Position2Contains; } public HR_StaffQuery setPosition2Contains(String value) { this.Position2Contains = value; return this; } public String getPosition2Like() { return Position2Like; } public HR_StaffQuery setPosition2Like(String value) { this.Position2Like = value; return this; } public ArrayList getPosition2Between() { return Position2Between; } public HR_StaffQuery setPosition2Between(ArrayList value) { this.Position2Between = value; return this; } public ArrayList getPosition2In() { return Position2In; } public HR_StaffQuery setPosition2In(ArrayList value) { this.Position2In = value; return this; } public String getPassword() { return Password; } public HR_StaffQuery setPassword(String value) { this.Password = value; return this; } public String getPasswordStartsWith() { return PasswordStartsWith; } public HR_StaffQuery setPasswordStartsWith(String value) { this.PasswordStartsWith = value; return this; } public String getPasswordEndsWith() { return PasswordEndsWith; } public HR_StaffQuery setPasswordEndsWith(String value) { this.PasswordEndsWith = value; return this; } public String getPasswordContains() { return PasswordContains; } public HR_StaffQuery setPasswordContains(String value) { this.PasswordContains = value; return this; } public String getPasswordLike() { return PasswordLike; } public HR_StaffQuery setPasswordLike(String value) { this.PasswordLike = value; return this; } public ArrayList getPasswordBetween() { return PasswordBetween; } public HR_StaffQuery setPasswordBetween(ArrayList value) { this.PasswordBetween = value; return this; } public ArrayList getPasswordIn() { return PasswordIn; } public HR_StaffQuery setPasswordIn(ArrayList value) { this.PasswordIn = value; return this; } public Boolean getIsActive() { return IsActive; } public HR_StaffQuery setIsActive(Boolean value) { this.IsActive = value; return this; } public String getEmailAddress() { return EmailAddress; } public HR_StaffQuery setEmailAddress(String value) { this.EmailAddress = value; return this; } public String getEmailAddressStartsWith() { return EmailAddressStartsWith; } public HR_StaffQuery setEmailAddressStartsWith(String value) { this.EmailAddressStartsWith = value; return this; } public String getEmailAddressEndsWith() { return EmailAddressEndsWith; } public HR_StaffQuery setEmailAddressEndsWith(String value) { this.EmailAddressEndsWith = value; return this; } public String getEmailAddressContains() { return EmailAddressContains; } public HR_StaffQuery setEmailAddressContains(String value) { this.EmailAddressContains = value; return this; } public String getEmailAddressLike() { return EmailAddressLike; } public HR_StaffQuery setEmailAddressLike(String value) { this.EmailAddressLike = value; return this; } public ArrayList getEmailAddressBetween() { return EmailAddressBetween; } public HR_StaffQuery setEmailAddressBetween(ArrayList value) { this.EmailAddressBetween = value; return this; } public ArrayList getEmailAddressIn() { return EmailAddressIn; } public HR_StaffQuery setEmailAddressIn(ArrayList value) { this.EmailAddressIn = value; return this; } public String getEmailDisplayName() { return EmailDisplayName; } public HR_StaffQuery setEmailDisplayName(String value) { this.EmailDisplayName = value; return this; } public String getEmailDisplayNameStartsWith() { return EmailDisplayNameStartsWith; } public HR_StaffQuery setEmailDisplayNameStartsWith(String value) { this.EmailDisplayNameStartsWith = value; return this; } public String getEmailDisplayNameEndsWith() { return EmailDisplayNameEndsWith; } public HR_StaffQuery setEmailDisplayNameEndsWith(String value) { this.EmailDisplayNameEndsWith = value; return this; } public String getEmailDisplayNameContains() { return EmailDisplayNameContains; } public HR_StaffQuery setEmailDisplayNameContains(String value) { this.EmailDisplayNameContains = value; return this; } public String getEmailDisplayNameLike() { return EmailDisplayNameLike; } public HR_StaffQuery setEmailDisplayNameLike(String value) { this.EmailDisplayNameLike = value; return this; } public ArrayList getEmailDisplayNameBetween() { return EmailDisplayNameBetween; } public HR_StaffQuery setEmailDisplayNameBetween(ArrayList value) { this.EmailDisplayNameBetween = value; return this; } public ArrayList getEmailDisplayNameIn() { return EmailDisplayNameIn; } public HR_StaffQuery setEmailDisplayNameIn(ArrayList value) { this.EmailDisplayNameIn = value; return this; } public String getSmtpUsername() { return SMTPUsername; } public HR_StaffQuery setSmtpUsername(String value) { this.SMTPUsername = value; return this; } public String getSmtpUsernameStartsWith() { return SMTPUsernameStartsWith; } public HR_StaffQuery setSmtpUsernameStartsWith(String value) { this.SMTPUsernameStartsWith = value; return this; } public String getSmtpUsernameEndsWith() { return SMTPUsernameEndsWith; } public HR_StaffQuery setSmtpUsernameEndsWith(String value) { this.SMTPUsernameEndsWith = value; return this; } public String getSmtpUsernameContains() { return SMTPUsernameContains; } public HR_StaffQuery setSmtpUsernameContains(String value) { this.SMTPUsernameContains = value; return this; } public String getSmtpUsernameLike() { return SMTPUsernameLike; } public HR_StaffQuery setSmtpUsernameLike(String value) { this.SMTPUsernameLike = value; return this; } public ArrayList getSmtpUsernameBetween() { return SMTPUsernameBetween; } public HR_StaffQuery setSmtpUsernameBetween(ArrayList value) { this.SMTPUsernameBetween = value; return this; } public ArrayList getSmtpUsernameIn() { return SMTPUsernameIn; } public HR_StaffQuery setSmtpUsernameIn(ArrayList value) { this.SMTPUsernameIn = value; return this; } public String getSmtpPassword() { return SMTPPassword; } public HR_StaffQuery setSmtpPassword(String value) { this.SMTPPassword = value; return this; } public String getSmtpPasswordStartsWith() { return SMTPPasswordStartsWith; } public HR_StaffQuery setSmtpPasswordStartsWith(String value) { this.SMTPPasswordStartsWith = value; return this; } public String getSmtpPasswordEndsWith() { return SMTPPasswordEndsWith; } public HR_StaffQuery setSmtpPasswordEndsWith(String value) { this.SMTPPasswordEndsWith = value; return this; } public String getSmtpPasswordContains() { return SMTPPasswordContains; } public HR_StaffQuery setSmtpPasswordContains(String value) { this.SMTPPasswordContains = value; return this; } public String getSmtpPasswordLike() { return SMTPPasswordLike; } public HR_StaffQuery setSmtpPasswordLike(String value) { this.SMTPPasswordLike = value; return this; } public ArrayList getSmtpPasswordBetween() { return SMTPPasswordBetween; } public HR_StaffQuery setSmtpPasswordBetween(ArrayList value) { this.SMTPPasswordBetween = value; return this; } public ArrayList getSmtpPasswordIn() { return SMTPPasswordIn; } public HR_StaffQuery setSmtpPasswordIn(ArrayList value) { this.SMTPPasswordIn = value; return this; } public String getUsername() { return Username; } public HR_StaffQuery setUsername(String value) { this.Username = value; return this; } public String getUsernameStartsWith() { return UsernameStartsWith; } public HR_StaffQuery setUsernameStartsWith(String value) { this.UsernameStartsWith = value; return this; } public String getUsernameEndsWith() { return UsernameEndsWith; } public HR_StaffQuery setUsernameEndsWith(String value) { this.UsernameEndsWith = value; return this; } public String getUsernameContains() { return UsernameContains; } public HR_StaffQuery setUsernameContains(String value) { this.UsernameContains = value; return this; } public String getUsernameLike() { return UsernameLike; } public HR_StaffQuery setUsernameLike(String value) { this.UsernameLike = value; return this; } public ArrayList getUsernameBetween() { return UsernameBetween; } public HR_StaffQuery setUsernameBetween(ArrayList value) { this.UsernameBetween = value; return this; } public ArrayList getUsernameIn() { return UsernameIn; } public HR_StaffQuery setUsernameIn(ArrayList value) { this.UsernameIn = value; return this; } public Boolean isMustChangePasswordNextLogin() { return MustChangePasswordNextLogin; } public HR_StaffQuery setMustChangePasswordNextLogin(Boolean value) { this.MustChangePasswordNextLogin = value; return this; } public Date getPasswordLastChangedDateTime() { return PasswordLastChangedDateTime; } public HR_StaffQuery setPasswordLastChangedDateTime(Date value) { this.PasswordLastChangedDateTime = value; return this; } public Date getPasswordLastChangedDateTimeGreaterThanOrEqualTo() { return PasswordLastChangedDateTimeGreaterThanOrEqualTo; } public HR_StaffQuery setPasswordLastChangedDateTimeGreaterThanOrEqualTo(Date value) { this.PasswordLastChangedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getPasswordLastChangedDateTimeGreaterThan() { return PasswordLastChangedDateTimeGreaterThan; } public HR_StaffQuery setPasswordLastChangedDateTimeGreaterThan(Date value) { this.PasswordLastChangedDateTimeGreaterThan = value; return this; } public Date getPasswordLastChangedDateTimeLessThan() { return PasswordLastChangedDateTimeLessThan; } public HR_StaffQuery setPasswordLastChangedDateTimeLessThan(Date value) { this.PasswordLastChangedDateTimeLessThan = value; return this; } public Date getPasswordLastChangedDateTimeLessThanOrEqualTo() { return PasswordLastChangedDateTimeLessThanOrEqualTo; } public HR_StaffQuery setPasswordLastChangedDateTimeLessThanOrEqualTo(Date value) { this.PasswordLastChangedDateTimeLessThanOrEqualTo = value; return this; } public Date getPasswordLastChangedDateTimeNotEqualTo() { return PasswordLastChangedDateTimeNotEqualTo; } public HR_StaffQuery setPasswordLastChangedDateTimeNotEqualTo(Date value) { this.PasswordLastChangedDateTimeNotEqualTo = value; return this; } public ArrayList getPasswordLastChangedDateTimeBetween() { return PasswordLastChangedDateTimeBetween; } public HR_StaffQuery setPasswordLastChangedDateTimeBetween(ArrayList value) { this.PasswordLastChangedDateTimeBetween = value; return this; } public ArrayList getPasswordLastChangedDateTimeIn() { return PasswordLastChangedDateTimeIn; } public HR_StaffQuery setPasswordLastChangedDateTimeIn(ArrayList value) { this.PasswordLastChangedDateTimeIn = value; return this; } public String getSqlLogin() { return SQLLogin; } public HR_StaffQuery setSqlLogin(String value) { this.SQLLogin = value; return this; } public String getSqlLoginStartsWith() { return SQLLoginStartsWith; } public HR_StaffQuery setSqlLoginStartsWith(String value) { this.SQLLoginStartsWith = value; return this; } public String getSqlLoginEndsWith() { return SQLLoginEndsWith; } public HR_StaffQuery setSqlLoginEndsWith(String value) { this.SQLLoginEndsWith = value; return this; } public String getSqlLoginContains() { return SQLLoginContains; } public HR_StaffQuery setSqlLoginContains(String value) { this.SQLLoginContains = value; return this; } public String getSqlLoginLike() { return SQLLoginLike; } public HR_StaffQuery setSqlLoginLike(String value) { this.SQLLoginLike = value; return this; } public ArrayList getSqlLoginBetween() { return SQLLoginBetween; } public HR_StaffQuery setSqlLoginBetween(ArrayList value) { this.SQLLoginBetween = value; return this; } public ArrayList getSqlLoginIn() { return SQLLoginIn; } public HR_StaffQuery setSqlLoginIn(ArrayList value) { this.SQLLoginIn = value; return this; } public String getSqlPassword() { return SQLPassword; } public HR_StaffQuery setSqlPassword(String value) { this.SQLPassword = value; return this; } public String getSqlPasswordStartsWith() { return SQLPasswordStartsWith; } public HR_StaffQuery setSqlPasswordStartsWith(String value) { this.SQLPasswordStartsWith = value; return this; } public String getSqlPasswordEndsWith() { return SQLPasswordEndsWith; } public HR_StaffQuery setSqlPasswordEndsWith(String value) { this.SQLPasswordEndsWith = value; return this; } public String getSqlPasswordContains() { return SQLPasswordContains; } public HR_StaffQuery setSqlPasswordContains(String value) { this.SQLPasswordContains = value; return this; } public String getSqlPasswordLike() { return SQLPasswordLike; } public HR_StaffQuery setSqlPasswordLike(String value) { this.SQLPasswordLike = value; return this; } public ArrayList getSqlPasswordBetween() { return SQLPasswordBetween; } public HR_StaffQuery setSqlPasswordBetween(ArrayList value) { this.SQLPasswordBetween = value; return this; } public ArrayList getSqlPasswordIn() { return SQLPasswordIn; } public HR_StaffQuery setSqlPasswordIn(ArrayList value) { this.SQLPasswordIn = value; return this; } public String getReportSQLLogin() { return ReportSQLLogin; } public HR_StaffQuery setReportSQLLogin(String value) { this.ReportSQLLogin = value; return this; } public String getReportSQLLoginStartsWith() { return ReportSQLLoginStartsWith; } public HR_StaffQuery setReportSQLLoginStartsWith(String value) { this.ReportSQLLoginStartsWith = value; return this; } public String getReportSQLLoginEndsWith() { return ReportSQLLoginEndsWith; } public HR_StaffQuery setReportSQLLoginEndsWith(String value) { this.ReportSQLLoginEndsWith = value; return this; } public String getReportSQLLoginContains() { return ReportSQLLoginContains; } public HR_StaffQuery setReportSQLLoginContains(String value) { this.ReportSQLLoginContains = value; return this; } public String getReportSQLLoginLike() { return ReportSQLLoginLike; } public HR_StaffQuery setReportSQLLoginLike(String value) { this.ReportSQLLoginLike = value; return this; } public ArrayList getReportSQLLoginBetween() { return ReportSQLLoginBetween; } public HR_StaffQuery setReportSQLLoginBetween(ArrayList value) { this.ReportSQLLoginBetween = value; return this; } public ArrayList getReportSQLLoginIn() { return ReportSQLLoginIn; } public HR_StaffQuery setReportSQLLoginIn(ArrayList value) { this.ReportSQLLoginIn = value; return this; } public String getReportSQLPassword() { return ReportSQLPassword; } public HR_StaffQuery setReportSQLPassword(String value) { this.ReportSQLPassword = value; return this; } public String getReportSQLPasswordStartsWith() { return ReportSQLPasswordStartsWith; } public HR_StaffQuery setReportSQLPasswordStartsWith(String value) { this.ReportSQLPasswordStartsWith = value; return this; } public String getReportSQLPasswordEndsWith() { return ReportSQLPasswordEndsWith; } public HR_StaffQuery setReportSQLPasswordEndsWith(String value) { this.ReportSQLPasswordEndsWith = value; return this; } public String getReportSQLPasswordContains() { return ReportSQLPasswordContains; } public HR_StaffQuery setReportSQLPasswordContains(String value) { this.ReportSQLPasswordContains = value; return this; } public String getReportSQLPasswordLike() { return ReportSQLPasswordLike; } public HR_StaffQuery setReportSQLPasswordLike(String value) { this.ReportSQLPasswordLike = value; return this; } public ArrayList getReportSQLPasswordBetween() { return ReportSQLPasswordBetween; } public HR_StaffQuery setReportSQLPasswordBetween(ArrayList value) { this.ReportSQLPasswordBetween = value; return this; } public ArrayList getReportSQLPasswordIn() { return ReportSQLPasswordIn; } public HR_StaffQuery setReportSQLPasswordIn(ArrayList value) { this.ReportSQLPasswordIn = value; return this; } public ArrayList getPicture() { return Picture; } public HR_StaffQuery setPicture(ArrayList value) { this.Picture = value; return this; } public String getHrDepartmentsRecID() { return HR_Departments_RecID; } public HR_StaffQuery setHrDepartmentsRecID(String value) { this.HR_Departments_RecID = value; return this; } public String getHrDepartmentsRecIDStartsWith() { return HR_Departments_RecIDStartsWith; } public HR_StaffQuery setHrDepartmentsRecIDStartsWith(String value) { this.HR_Departments_RecIDStartsWith = value; return this; } public String getHrDepartmentsRecIDEndsWith() { return HR_Departments_RecIDEndsWith; } public HR_StaffQuery setHrDepartmentsRecIDEndsWith(String value) { this.HR_Departments_RecIDEndsWith = value; return this; } public String getHrDepartmentsRecIDContains() { return HR_Departments_RecIDContains; } public HR_StaffQuery setHrDepartmentsRecIDContains(String value) { this.HR_Departments_RecIDContains = value; return this; } public String getHrDepartmentsRecIDLike() { return HR_Departments_RecIDLike; } public HR_StaffQuery setHrDepartmentsRecIDLike(String value) { this.HR_Departments_RecIDLike = value; return this; } public ArrayList getHrDepartmentsRecIDBetween() { return HR_Departments_RecIDBetween; } public HR_StaffQuery setHrDepartmentsRecIDBetween(ArrayList value) { this.HR_Departments_RecIDBetween = value; return this; } public ArrayList getHrDepartmentsRecIDIn() { return HR_Departments_RecIDIn; } public HR_StaffQuery setHrDepartmentsRecIDIn(ArrayList value) { this.HR_Departments_RecIDIn = value; return this; } public String getExtension() { return Extension; } public HR_StaffQuery setExtension(String value) { this.Extension = value; return this; } public String getExtensionStartsWith() { return ExtensionStartsWith; } public HR_StaffQuery setExtensionStartsWith(String value) { this.ExtensionStartsWith = value; return this; } public String getExtensionEndsWith() { return ExtensionEndsWith; } public HR_StaffQuery setExtensionEndsWith(String value) { this.ExtensionEndsWith = value; return this; } public String getExtensionContains() { return ExtensionContains; } public HR_StaffQuery setExtensionContains(String value) { this.ExtensionContains = value; return this; } public String getExtensionLike() { return ExtensionLike; } public HR_StaffQuery setExtensionLike(String value) { this.ExtensionLike = value; return this; } public ArrayList getExtensionBetween() { return ExtensionBetween; } public HR_StaffQuery setExtensionBetween(ArrayList value) { this.ExtensionBetween = value; return this; } public ArrayList getExtensionIn() { return ExtensionIn; } public HR_StaffQuery setExtensionIn(ArrayList value) { this.ExtensionIn = value; return this; } public String getMobile() { return Mobile; } public HR_StaffQuery setMobile(String value) { this.Mobile = value; return this; } public String getMobileStartsWith() { return MobileStartsWith; } public HR_StaffQuery setMobileStartsWith(String value) { this.MobileStartsWith = value; return this; } public String getMobileEndsWith() { return MobileEndsWith; } public HR_StaffQuery setMobileEndsWith(String value) { this.MobileEndsWith = value; return this; } public String getMobileContains() { return MobileContains; } public HR_StaffQuery setMobileContains(String value) { this.MobileContains = value; return this; } public String getMobileLike() { return MobileLike; } public HR_StaffQuery setMobileLike(String value) { this.MobileLike = value; return this; } public ArrayList getMobileBetween() { return MobileBetween; } public HR_StaffQuery setMobileBetween(ArrayList value) { this.MobileBetween = value; return this; } public ArrayList getMobileIn() { return MobileIn; } public HR_StaffQuery setMobileIn(ArrayList value) { this.MobileIn = value; return this; } public Boolean isUsePrepaidLabourPacks() { return UsePrepaidLabourPacks; } public HR_StaffQuery setUsePrepaidLabourPacks(Boolean value) { this.UsePrepaidLabourPacks = value; return this; } public Short getAuthenticationModes() { return AuthenticationModes; } public HR_StaffQuery setAuthenticationModes(Short value) { this.AuthenticationModes = value; return this; } public Short getAuthenticationModesGreaterThanOrEqualTo() { return AuthenticationModesGreaterThanOrEqualTo; } public HR_StaffQuery setAuthenticationModesGreaterThanOrEqualTo(Short value) { this.AuthenticationModesGreaterThanOrEqualTo = value; return this; } public Short getAuthenticationModesGreaterThan() { return AuthenticationModesGreaterThan; } public HR_StaffQuery setAuthenticationModesGreaterThan(Short value) { this.AuthenticationModesGreaterThan = value; return this; } public Short getAuthenticationModesLessThan() { return AuthenticationModesLessThan; } public HR_StaffQuery setAuthenticationModesLessThan(Short value) { this.AuthenticationModesLessThan = value; return this; } public Short getAuthenticationModesLessThanOrEqualTo() { return AuthenticationModesLessThanOrEqualTo; } public HR_StaffQuery setAuthenticationModesLessThanOrEqualTo(Short value) { this.AuthenticationModesLessThanOrEqualTo = value; return this; } public Short getAuthenticationModesNotEqualTo() { return AuthenticationModesNotEqualTo; } public HR_StaffQuery setAuthenticationModesNotEqualTo(Short value) { this.AuthenticationModesNotEqualTo = value; return this; } public ArrayList getAuthenticationModesBetween() { return AuthenticationModesBetween; } public HR_StaffQuery setAuthenticationModesBetween(ArrayList value) { this.AuthenticationModesBetween = value; return this; } public ArrayList getAuthenticationModesIn() { return AuthenticationModesIn; } public HR_StaffQuery setAuthenticationModesIn(ArrayList value) { this.AuthenticationModesIn = value; return this; } public String getWindowsDomainAccount() { return WindowsDomainAccount; } public HR_StaffQuery setWindowsDomainAccount(String value) { this.WindowsDomainAccount = value; return this; } public String getWindowsDomainAccountStartsWith() { return WindowsDomainAccountStartsWith; } public HR_StaffQuery setWindowsDomainAccountStartsWith(String value) { this.WindowsDomainAccountStartsWith = value; return this; } public String getWindowsDomainAccountEndsWith() { return WindowsDomainAccountEndsWith; } public HR_StaffQuery setWindowsDomainAccountEndsWith(String value) { this.WindowsDomainAccountEndsWith = value; return this; } public String getWindowsDomainAccountContains() { return WindowsDomainAccountContains; } public HR_StaffQuery setWindowsDomainAccountContains(String value) { this.WindowsDomainAccountContains = value; return this; } public String getWindowsDomainAccountLike() { return WindowsDomainAccountLike; } public HR_StaffQuery setWindowsDomainAccountLike(String value) { this.WindowsDomainAccountLike = value; return this; } public ArrayList getWindowsDomainAccountBetween() { return WindowsDomainAccountBetween; } public HR_StaffQuery setWindowsDomainAccountBetween(ArrayList value) { this.WindowsDomainAccountBetween = value; return this; } public ArrayList getWindowsDomainAccountIn() { return WindowsDomainAccountIn; } public HR_StaffQuery setWindowsDomainAccountIn(ArrayList value) { this.WindowsDomainAccountIn = value; return this; } public Date getSmtpPasswordLastChangedDateTime() { return SMTPPasswordLastChangedDateTime; } public HR_StaffQuery setSmtpPasswordLastChangedDateTime(Date value) { this.SMTPPasswordLastChangedDateTime = value; return this; } public Date getSmtpPasswordLastChangedDateTimeGreaterThanOrEqualTo() { return SMTPPasswordLastChangedDateTimeGreaterThanOrEqualTo; } public HR_StaffQuery setSmtpPasswordLastChangedDateTimeGreaterThanOrEqualTo(Date value) { this.SMTPPasswordLastChangedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getSmtpPasswordLastChangedDateTimeGreaterThan() { return SMTPPasswordLastChangedDateTimeGreaterThan; } public HR_StaffQuery setSmtpPasswordLastChangedDateTimeGreaterThan(Date value) { this.SMTPPasswordLastChangedDateTimeGreaterThan = value; return this; } public Date getSmtpPasswordLastChangedDateTimeLessThan() { return SMTPPasswordLastChangedDateTimeLessThan; } public HR_StaffQuery setSmtpPasswordLastChangedDateTimeLessThan(Date value) { this.SMTPPasswordLastChangedDateTimeLessThan = value; return this; } public Date getSmtpPasswordLastChangedDateTimeLessThanOrEqualTo() { return SMTPPasswordLastChangedDateTimeLessThanOrEqualTo; } public HR_StaffQuery setSmtpPasswordLastChangedDateTimeLessThanOrEqualTo(Date value) { this.SMTPPasswordLastChangedDateTimeLessThanOrEqualTo = value; return this; } public Date getSmtpPasswordLastChangedDateTimeNotEqualTo() { return SMTPPasswordLastChangedDateTimeNotEqualTo; } public HR_StaffQuery setSmtpPasswordLastChangedDateTimeNotEqualTo(Date value) { this.SMTPPasswordLastChangedDateTimeNotEqualTo = value; return this; } public ArrayList getSmtpPasswordLastChangedDateTimeBetween() { return SMTPPasswordLastChangedDateTimeBetween; } public HR_StaffQuery setSmtpPasswordLastChangedDateTimeBetween(ArrayList value) { this.SMTPPasswordLastChangedDateTimeBetween = value; return this; } public ArrayList getSmtpPasswordLastChangedDateTimeIn() { return SMTPPasswordLastChangedDateTimeIn; } public HR_StaffQuery setSmtpPasswordLastChangedDateTimeIn(ArrayList value) { this.SMTPPasswordLastChangedDateTimeIn = value; return this; } public String getSyMenuRecID() { return SY_Menu_RecID; } public HR_StaffQuery setSyMenuRecID(String value) { this.SY_Menu_RecID = value; return this; } public String getSyMenuRecIDStartsWith() { return SY_Menu_RecIDStartsWith; } public HR_StaffQuery setSyMenuRecIDStartsWith(String value) { this.SY_Menu_RecIDStartsWith = value; return this; } public String getSyMenuRecIDEndsWith() { return SY_Menu_RecIDEndsWith; } public HR_StaffQuery setSyMenuRecIDEndsWith(String value) { this.SY_Menu_RecIDEndsWith = value; return this; } public String getSyMenuRecIDContains() { return SY_Menu_RecIDContains; } public HR_StaffQuery setSyMenuRecIDContains(String value) { this.SY_Menu_RecIDContains = value; return this; } public String getSyMenuRecIDLike() { return SY_Menu_RecIDLike; } public HR_StaffQuery setSyMenuRecIDLike(String value) { this.SY_Menu_RecIDLike = value; return this; } public ArrayList getSyMenuRecIDBetween() { return SY_Menu_RecIDBetween; } public HR_StaffQuery setSyMenuRecIDBetween(ArrayList value) { this.SY_Menu_RecIDBetween = value; return this; } public ArrayList getSyMenuRecIDIn() { return SY_Menu_RecIDIn; } public HR_StaffQuery setSyMenuRecIDIn(ArrayList value) { this.SY_Menu_RecIDIn = value; return this; } public String getSyPrintGroupRecID() { return SY_PrintGroup_RecID; } public HR_StaffQuery setSyPrintGroupRecID(String value) { this.SY_PrintGroup_RecID = value; return this; } public String getSyPrintGroupRecIDStartsWith() { return SY_PrintGroup_RecIDStartsWith; } public HR_StaffQuery setSyPrintGroupRecIDStartsWith(String value) { this.SY_PrintGroup_RecIDStartsWith = value; return this; } public String getSyPrintGroupRecIDEndsWith() { return SY_PrintGroup_RecIDEndsWith; } public HR_StaffQuery setSyPrintGroupRecIDEndsWith(String value) { this.SY_PrintGroup_RecIDEndsWith = value; return this; } public String getSyPrintGroupRecIDContains() { return SY_PrintGroup_RecIDContains; } public HR_StaffQuery setSyPrintGroupRecIDContains(String value) { this.SY_PrintGroup_RecIDContains = value; return this; } public String getSyPrintGroupRecIDLike() { return SY_PrintGroup_RecIDLike; } public HR_StaffQuery setSyPrintGroupRecIDLike(String value) { this.SY_PrintGroup_RecIDLike = value; return this; } public ArrayList getSyPrintGroupRecIDBetween() { return SY_PrintGroup_RecIDBetween; } public HR_StaffQuery setSyPrintGroupRecIDBetween(ArrayList value) { this.SY_PrintGroup_RecIDBetween = value; return this; } public ArrayList getSyPrintGroupRecIDIn() { return SY_PrintGroup_RecIDIn; } public HR_StaffQuery setSyPrintGroupRecIDIn(ArrayList value) { this.SY_PrintGroup_RecIDIn = value; return this; } public Date getSqlLoginLastSavedDateTime() { return SQLLoginLastSavedDateTime; } public HR_StaffQuery setSqlLoginLastSavedDateTime(Date value) { this.SQLLoginLastSavedDateTime = value; return this; } public Date getSqlLoginLastSavedDateTimeGreaterThanOrEqualTo() { return SQLLoginLastSavedDateTimeGreaterThanOrEqualTo; } public HR_StaffQuery setSqlLoginLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.SQLLoginLastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getSqlLoginLastSavedDateTimeGreaterThan() { return SQLLoginLastSavedDateTimeGreaterThan; } public HR_StaffQuery setSqlLoginLastSavedDateTimeGreaterThan(Date value) { this.SQLLoginLastSavedDateTimeGreaterThan = value; return this; } public Date getSqlLoginLastSavedDateTimeLessThan() { return SQLLoginLastSavedDateTimeLessThan; } public HR_StaffQuery setSqlLoginLastSavedDateTimeLessThan(Date value) { this.SQLLoginLastSavedDateTimeLessThan = value; return this; } public Date getSqlLoginLastSavedDateTimeLessThanOrEqualTo() { return SQLLoginLastSavedDateTimeLessThanOrEqualTo; } public HR_StaffQuery setSqlLoginLastSavedDateTimeLessThanOrEqualTo(Date value) { this.SQLLoginLastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getSqlLoginLastSavedDateTimeNotEqualTo() { return SQLLoginLastSavedDateTimeNotEqualTo; } public HR_StaffQuery setSqlLoginLastSavedDateTimeNotEqualTo(Date value) { this.SQLLoginLastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getSqlLoginLastSavedDateTimeBetween() { return SQLLoginLastSavedDateTimeBetween; } public HR_StaffQuery setSqlLoginLastSavedDateTimeBetween(ArrayList value) { this.SQLLoginLastSavedDateTimeBetween = value; return this; } public ArrayList getSqlLoginLastSavedDateTimeIn() { return SQLLoginLastSavedDateTimeIn; } public HR_StaffQuery setSqlLoginLastSavedDateTimeIn(ArrayList value) { this.SQLLoginLastSavedDateTimeIn = value; return this; } public Date getReportsLoginLastSavedDateTime() { return ReportsLoginLastSavedDateTime; } public HR_StaffQuery setReportsLoginLastSavedDateTime(Date value) { this.ReportsLoginLastSavedDateTime = value; return this; } public Date getReportsLoginLastSavedDateTimeGreaterThanOrEqualTo() { return ReportsLoginLastSavedDateTimeGreaterThanOrEqualTo; } public HR_StaffQuery setReportsLoginLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.ReportsLoginLastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getReportsLoginLastSavedDateTimeGreaterThan() { return ReportsLoginLastSavedDateTimeGreaterThan; } public HR_StaffQuery setReportsLoginLastSavedDateTimeGreaterThan(Date value) { this.ReportsLoginLastSavedDateTimeGreaterThan = value; return this; } public Date getReportsLoginLastSavedDateTimeLessThan() { return ReportsLoginLastSavedDateTimeLessThan; } public HR_StaffQuery setReportsLoginLastSavedDateTimeLessThan(Date value) { this.ReportsLoginLastSavedDateTimeLessThan = value; return this; } public Date getReportsLoginLastSavedDateTimeLessThanOrEqualTo() { return ReportsLoginLastSavedDateTimeLessThanOrEqualTo; } public HR_StaffQuery setReportsLoginLastSavedDateTimeLessThanOrEqualTo(Date value) { this.ReportsLoginLastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getReportsLoginLastSavedDateTimeNotEqualTo() { return ReportsLoginLastSavedDateTimeNotEqualTo; } public HR_StaffQuery setReportsLoginLastSavedDateTimeNotEqualTo(Date value) { this.ReportsLoginLastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getReportsLoginLastSavedDateTimeBetween() { return ReportsLoginLastSavedDateTimeBetween; } public HR_StaffQuery setReportsLoginLastSavedDateTimeBetween(ArrayList value) { this.ReportsLoginLastSavedDateTimeBetween = value; return this; } public ArrayList getReportsLoginLastSavedDateTimeIn() { return ReportsLoginLastSavedDateTimeIn; } public HR_StaffQuery setReportsLoginLastSavedDateTimeIn(ArrayList value) { this.ReportsLoginLastSavedDateTimeIn = value; return this; } public Boolean getIsEnabled() { return IsEnabled; } public HR_StaffQuery setIsEnabled(Boolean value) { this.IsEnabled = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class HR_StaffSkillsQuery extends QueryDb implements IReturn> { public String RecID = null; public String RecIDStartsWith = null; public String RecIDEndsWith = null; public String RecIDContains = null; public String RecIDLike = null; public ArrayList RecIDBetween = null; public ArrayList RecIDIn = null; public String HR_Staff_RecID = null; public String HR_Staff_RecIDStartsWith = null; public String HR_Staff_RecIDEndsWith = null; public String HR_Staff_RecIDContains = null; public String HR_Staff_RecIDLike = null; public ArrayList HR_Staff_RecIDBetween = null; public ArrayList HR_Staff_RecIDIn = null; public String HR_Skills_RecID = null; public String HR_Skills_RecIDStartsWith = null; public String HR_Skills_RecIDEndsWith = null; public String HR_Skills_RecIDContains = null; public String HR_Skills_RecIDLike = null; public ArrayList HR_Skills_RecIDBetween = null; public ArrayList HR_Skills_RecIDIn = null; public String HR_SkillRatings_RecID = null; public String HR_SkillRatings_RecIDStartsWith = null; public String HR_SkillRatings_RecIDEndsWith = null; public String HR_SkillRatings_RecIDContains = null; public String HR_SkillRatings_RecIDLike = null; public ArrayList HR_SkillRatings_RecIDBetween = null; public ArrayList HR_SkillRatings_RecIDIn = null; public Date QualificationDate = null; public Date QualificationDateGreaterThanOrEqualTo = null; public Date QualificationDateGreaterThan = null; public Date QualificationDateLessThan = null; public Date QualificationDateLessThanOrEqualTo = null; public Date QualificationDateNotEqualTo = null; public ArrayList QualificationDateBetween = null; public ArrayList QualificationDateIn = null; public String Notes = null; public String NotesStartsWith = null; public String NotesEndsWith = null; public String NotesContains = null; public String NotesLike = null; public ArrayList NotesBetween = null; public ArrayList NotesIn = null; public Integer ItemNo = null; public Integer ItemNoGreaterThanOrEqualTo = null; public Integer ItemNoGreaterThan = null; public Integer ItemNoLessThan = null; public Integer ItemNoLessThanOrEqualTo = null; public Integer ItemNoNotEqualTo = null; public ArrayList ItemNoBetween = null; public ArrayList ItemNoIn = null; public ArrayList RowHash = null; public String getRecID() { return RecID; } public HR_StaffSkillsQuery setRecID(String value) { this.RecID = value; return this; } public String getRecIDStartsWith() { return RecIDStartsWith; } public HR_StaffSkillsQuery setRecIDStartsWith(String value) { this.RecIDStartsWith = value; return this; } public String getRecIDEndsWith() { return RecIDEndsWith; } public HR_StaffSkillsQuery setRecIDEndsWith(String value) { this.RecIDEndsWith = value; return this; } public String getRecIDContains() { return RecIDContains; } public HR_StaffSkillsQuery setRecIDContains(String value) { this.RecIDContains = value; return this; } public String getRecIDLike() { return RecIDLike; } public HR_StaffSkillsQuery setRecIDLike(String value) { this.RecIDLike = value; return this; } public ArrayList getRecIDBetween() { return RecIDBetween; } public HR_StaffSkillsQuery setRecIDBetween(ArrayList value) { this.RecIDBetween = value; return this; } public ArrayList getRecIDIn() { return RecIDIn; } public HR_StaffSkillsQuery setRecIDIn(ArrayList value) { this.RecIDIn = value; return this; } public String getHrStaffRecID() { return HR_Staff_RecID; } public HR_StaffSkillsQuery setHrStaffRecID(String value) { this.HR_Staff_RecID = value; return this; } public String getHrStaffRecIDStartsWith() { return HR_Staff_RecIDStartsWith; } public HR_StaffSkillsQuery setHrStaffRecIDStartsWith(String value) { this.HR_Staff_RecIDStartsWith = value; return this; } public String getHrStaffRecIDEndsWith() { return HR_Staff_RecIDEndsWith; } public HR_StaffSkillsQuery setHrStaffRecIDEndsWith(String value) { this.HR_Staff_RecIDEndsWith = value; return this; } public String getHrStaffRecIDContains() { return HR_Staff_RecIDContains; } public HR_StaffSkillsQuery setHrStaffRecIDContains(String value) { this.HR_Staff_RecIDContains = value; return this; } public String getHrStaffRecIDLike() { return HR_Staff_RecIDLike; } public HR_StaffSkillsQuery setHrStaffRecIDLike(String value) { this.HR_Staff_RecIDLike = value; return this; } public ArrayList getHrStaffRecIDBetween() { return HR_Staff_RecIDBetween; } public HR_StaffSkillsQuery setHrStaffRecIDBetween(ArrayList value) { this.HR_Staff_RecIDBetween = value; return this; } public ArrayList getHrStaffRecIDIn() { return HR_Staff_RecIDIn; } public HR_StaffSkillsQuery setHrStaffRecIDIn(ArrayList value) { this.HR_Staff_RecIDIn = value; return this; } public String getHrSkillsRecID() { return HR_Skills_RecID; } public HR_StaffSkillsQuery setHrSkillsRecID(String value) { this.HR_Skills_RecID = value; return this; } public String getHrSkillsRecIDStartsWith() { return HR_Skills_RecIDStartsWith; } public HR_StaffSkillsQuery setHrSkillsRecIDStartsWith(String value) { this.HR_Skills_RecIDStartsWith = value; return this; } public String getHrSkillsRecIDEndsWith() { return HR_Skills_RecIDEndsWith; } public HR_StaffSkillsQuery setHrSkillsRecIDEndsWith(String value) { this.HR_Skills_RecIDEndsWith = value; return this; } public String getHrSkillsRecIDContains() { return HR_Skills_RecIDContains; } public HR_StaffSkillsQuery setHrSkillsRecIDContains(String value) { this.HR_Skills_RecIDContains = value; return this; } public String getHrSkillsRecIDLike() { return HR_Skills_RecIDLike; } public HR_StaffSkillsQuery setHrSkillsRecIDLike(String value) { this.HR_Skills_RecIDLike = value; return this; } public ArrayList getHrSkillsRecIDBetween() { return HR_Skills_RecIDBetween; } public HR_StaffSkillsQuery setHrSkillsRecIDBetween(ArrayList value) { this.HR_Skills_RecIDBetween = value; return this; } public ArrayList getHrSkillsRecIDIn() { return HR_Skills_RecIDIn; } public HR_StaffSkillsQuery setHrSkillsRecIDIn(ArrayList value) { this.HR_Skills_RecIDIn = value; return this; } public String getHrSkillRatingsRecID() { return HR_SkillRatings_RecID; } public HR_StaffSkillsQuery setHrSkillRatingsRecID(String value) { this.HR_SkillRatings_RecID = value; return this; } public String getHrSkillRatingsRecIDStartsWith() { return HR_SkillRatings_RecIDStartsWith; } public HR_StaffSkillsQuery setHrSkillRatingsRecIDStartsWith(String value) { this.HR_SkillRatings_RecIDStartsWith = value; return this; } public String getHrSkillRatingsRecIDEndsWith() { return HR_SkillRatings_RecIDEndsWith; } public HR_StaffSkillsQuery setHrSkillRatingsRecIDEndsWith(String value) { this.HR_SkillRatings_RecIDEndsWith = value; return this; } public String getHrSkillRatingsRecIDContains() { return HR_SkillRatings_RecIDContains; } public HR_StaffSkillsQuery setHrSkillRatingsRecIDContains(String value) { this.HR_SkillRatings_RecIDContains = value; return this; } public String getHrSkillRatingsRecIDLike() { return HR_SkillRatings_RecIDLike; } public HR_StaffSkillsQuery setHrSkillRatingsRecIDLike(String value) { this.HR_SkillRatings_RecIDLike = value; return this; } public ArrayList getHrSkillRatingsRecIDBetween() { return HR_SkillRatings_RecIDBetween; } public HR_StaffSkillsQuery setHrSkillRatingsRecIDBetween(ArrayList value) { this.HR_SkillRatings_RecIDBetween = value; return this; } public ArrayList getHrSkillRatingsRecIDIn() { return HR_SkillRatings_RecIDIn; } public HR_StaffSkillsQuery setHrSkillRatingsRecIDIn(ArrayList value) { this.HR_SkillRatings_RecIDIn = value; return this; } public Date getQualificationDate() { return QualificationDate; } public HR_StaffSkillsQuery setQualificationDate(Date value) { this.QualificationDate = value; return this; } public Date getQualificationDateGreaterThanOrEqualTo() { return QualificationDateGreaterThanOrEqualTo; } public HR_StaffSkillsQuery setQualificationDateGreaterThanOrEqualTo(Date value) { this.QualificationDateGreaterThanOrEqualTo = value; return this; } public Date getQualificationDateGreaterThan() { return QualificationDateGreaterThan; } public HR_StaffSkillsQuery setQualificationDateGreaterThan(Date value) { this.QualificationDateGreaterThan = value; return this; } public Date getQualificationDateLessThan() { return QualificationDateLessThan; } public HR_StaffSkillsQuery setQualificationDateLessThan(Date value) { this.QualificationDateLessThan = value; return this; } public Date getQualificationDateLessThanOrEqualTo() { return QualificationDateLessThanOrEqualTo; } public HR_StaffSkillsQuery setQualificationDateLessThanOrEqualTo(Date value) { this.QualificationDateLessThanOrEqualTo = value; return this; } public Date getQualificationDateNotEqualTo() { return QualificationDateNotEqualTo; } public HR_StaffSkillsQuery setQualificationDateNotEqualTo(Date value) { this.QualificationDateNotEqualTo = value; return this; } public ArrayList getQualificationDateBetween() { return QualificationDateBetween; } public HR_StaffSkillsQuery setQualificationDateBetween(ArrayList value) { this.QualificationDateBetween = value; return this; } public ArrayList getQualificationDateIn() { return QualificationDateIn; } public HR_StaffSkillsQuery setQualificationDateIn(ArrayList value) { this.QualificationDateIn = value; return this; } public String getNotes() { return Notes; } public HR_StaffSkillsQuery setNotes(String value) { this.Notes = value; return this; } public String getNotesStartsWith() { return NotesStartsWith; } public HR_StaffSkillsQuery setNotesStartsWith(String value) { this.NotesStartsWith = value; return this; } public String getNotesEndsWith() { return NotesEndsWith; } public HR_StaffSkillsQuery setNotesEndsWith(String value) { this.NotesEndsWith = value; return this; } public String getNotesContains() { return NotesContains; } public HR_StaffSkillsQuery setNotesContains(String value) { this.NotesContains = value; return this; } public String getNotesLike() { return NotesLike; } public HR_StaffSkillsQuery setNotesLike(String value) { this.NotesLike = value; return this; } public ArrayList getNotesBetween() { return NotesBetween; } public HR_StaffSkillsQuery setNotesBetween(ArrayList value) { this.NotesBetween = value; return this; } public ArrayList getNotesIn() { return NotesIn; } public HR_StaffSkillsQuery setNotesIn(ArrayList value) { this.NotesIn = value; return this; } public Integer getItemNo() { return ItemNo; } public HR_StaffSkillsQuery setItemNo(Integer value) { this.ItemNo = value; return this; } public Integer getItemNoGreaterThanOrEqualTo() { return ItemNoGreaterThanOrEqualTo; } public HR_StaffSkillsQuery setItemNoGreaterThanOrEqualTo(Integer value) { this.ItemNoGreaterThanOrEqualTo = value; return this; } public Integer getItemNoGreaterThan() { return ItemNoGreaterThan; } public HR_StaffSkillsQuery setItemNoGreaterThan(Integer value) { this.ItemNoGreaterThan = value; return this; } public Integer getItemNoLessThan() { return ItemNoLessThan; } public HR_StaffSkillsQuery setItemNoLessThan(Integer value) { this.ItemNoLessThan = value; return this; } public Integer getItemNoLessThanOrEqualTo() { return ItemNoLessThanOrEqualTo; } public HR_StaffSkillsQuery setItemNoLessThanOrEqualTo(Integer value) { this.ItemNoLessThanOrEqualTo = value; return this; } public Integer getItemNoNotEqualTo() { return ItemNoNotEqualTo; } public HR_StaffSkillsQuery setItemNoNotEqualTo(Integer value) { this.ItemNoNotEqualTo = value; return this; } public ArrayList getItemNoBetween() { return ItemNoBetween; } public HR_StaffSkillsQuery setItemNoBetween(ArrayList value) { this.ItemNoBetween = value; return this; } public ArrayList getItemNoIn() { return ItemNoIn; } public HR_StaffSkillsQuery setItemNoIn(ArrayList value) { this.ItemNoIn = value; return this; } public ArrayList getRowHash() { return RowHash; } public HR_StaffSkillsQuery setRowHash(ArrayList value) { this.RowHash = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class HR_StaffUserSettingsQuery extends QueryDb implements IReturn> { public String HR_Staff_StaffID = null; public String HR_Staff_StaffIDStartsWith = null; public String HR_Staff_StaffIDEndsWith = null; public String HR_Staff_StaffIDContains = null; public String HR_Staff_StaffIDLike = null; public ArrayList HR_Staff_StaffIDBetween = null; public ArrayList HR_Staff_StaffIDIn = null; public Boolean PreviewJournal = null; public String LastLogicalWarehouse_RecID = null; public String LastLogicalWarehouse_RecIDStartsWith = null; public String LastLogicalWarehouse_RecIDEndsWith = null; public String LastLogicalWarehouse_RecIDContains = null; public String LastLogicalWarehouse_RecIDLike = null; public ArrayList LastLogicalWarehouse_RecIDBetween = null; public ArrayList LastLogicalWarehouse_RecIDIn = null; public Short StockTakeOrder = null; public Short StockTakeOrderGreaterThanOrEqualTo = null; public Short StockTakeOrderGreaterThan = null; public Short StockTakeOrderLessThan = null; public Short StockTakeOrderLessThanOrEqualTo = null; public Short StockTakeOrderNotEqualTo = null; public ArrayList StockTakeOrderBetween = null; public ArrayList StockTakeOrderIn = null; public Short EnforceMinGP = null; public Short EnforceMinGPGreaterThanOrEqualTo = null; public Short EnforceMinGPGreaterThan = null; public Short EnforceMinGPLessThan = null; public Short EnforceMinGPLessThanOrEqualTo = null; public Short EnforceMinGPNotEqualTo = null; public ArrayList EnforceMinGPBetween = null; public ArrayList EnforceMinGPIn = null; public Integer SearchAutoStart = null; public Integer SearchAutoStartGreaterThanOrEqualTo = null; public Integer SearchAutoStartGreaterThan = null; public Integer SearchAutoStartLessThan = null; public Integer SearchAutoStartLessThanOrEqualTo = null; public Integer SearchAutoStartNotEqualTo = null; public ArrayList SearchAutoStartBetween = null; public ArrayList SearchAutoStartIn = null; public Boolean SearchReplaceText = null; public String SearchFontName = null; public String SearchFontNameStartsWith = null; public String SearchFontNameEndsWith = null; public String SearchFontNameContains = null; public String SearchFontNameLike = null; public ArrayList SearchFontNameBetween = null; public ArrayList SearchFontNameIn = null; public BigDecimal SearchFontSize = null; public BigDecimal SearchFontSizeGreaterThanOrEqualTo = null; public BigDecimal SearchFontSizeGreaterThan = null; public BigDecimal SearchFontSizeLessThan = null; public BigDecimal SearchFontSizeLessThanOrEqualTo = null; public BigDecimal SearchFontSizeNotEqualTo = null; public ArrayList SearchFontSizeBetween = null; public ArrayList SearchFontSizeIn = null; public Boolean CreditorsPrintToScreen = null; public Boolean IgnoreBackOrderAllocations = null; public Boolean InvoicingPrintToScreen = null; public Boolean AllowModificationOfPrintedUnprocessedInvoices = null; public String IncrementInvoiceNumbers = null; public String IncrementInvoiceNumbersStartsWith = null; public String IncrementInvoiceNumbersEndsWith = null; public String IncrementInvoiceNumbersContains = null; public String IncrementInvoiceNumbersLike = null; public ArrayList IncrementInvoiceNumbersBetween = null; public ArrayList IncrementInvoiceNumbersIn = null; public Boolean ParticipateInCustomerExperienceImprovementProgram = null; public String getHrStaffStaffID() { return HR_Staff_StaffID; } public HR_StaffUserSettingsQuery setHrStaffStaffID(String value) { this.HR_Staff_StaffID = value; return this; } public String getHrStaffStaffIDStartsWith() { return HR_Staff_StaffIDStartsWith; } public HR_StaffUserSettingsQuery setHrStaffStaffIDStartsWith(String value) { this.HR_Staff_StaffIDStartsWith = value; return this; } public String getHrStaffStaffIDEndsWith() { return HR_Staff_StaffIDEndsWith; } public HR_StaffUserSettingsQuery setHrStaffStaffIDEndsWith(String value) { this.HR_Staff_StaffIDEndsWith = value; return this; } public String getHrStaffStaffIDContains() { return HR_Staff_StaffIDContains; } public HR_StaffUserSettingsQuery setHrStaffStaffIDContains(String value) { this.HR_Staff_StaffIDContains = value; return this; } public String getHrStaffStaffIDLike() { return HR_Staff_StaffIDLike; } public HR_StaffUserSettingsQuery setHrStaffStaffIDLike(String value) { this.HR_Staff_StaffIDLike = value; return this; } public ArrayList getHrStaffStaffIDBetween() { return HR_Staff_StaffIDBetween; } public HR_StaffUserSettingsQuery setHrStaffStaffIDBetween(ArrayList value) { this.HR_Staff_StaffIDBetween = value; return this; } public ArrayList getHrStaffStaffIDIn() { return HR_Staff_StaffIDIn; } public HR_StaffUserSettingsQuery setHrStaffStaffIDIn(ArrayList value) { this.HR_Staff_StaffIDIn = value; return this; } public Boolean isPreviewJournal() { return PreviewJournal; } public HR_StaffUserSettingsQuery setPreviewJournal(Boolean value) { this.PreviewJournal = value; return this; } public String getLastLogicalWarehouseRecID() { return LastLogicalWarehouse_RecID; } public HR_StaffUserSettingsQuery setLastLogicalWarehouseRecID(String value) { this.LastLogicalWarehouse_RecID = value; return this; } public String getLastLogicalWarehouseRecIDStartsWith() { return LastLogicalWarehouse_RecIDStartsWith; } public HR_StaffUserSettingsQuery setLastLogicalWarehouseRecIDStartsWith(String value) { this.LastLogicalWarehouse_RecIDStartsWith = value; return this; } public String getLastLogicalWarehouseRecIDEndsWith() { return LastLogicalWarehouse_RecIDEndsWith; } public HR_StaffUserSettingsQuery setLastLogicalWarehouseRecIDEndsWith(String value) { this.LastLogicalWarehouse_RecIDEndsWith = value; return this; } public String getLastLogicalWarehouseRecIDContains() { return LastLogicalWarehouse_RecIDContains; } public HR_StaffUserSettingsQuery setLastLogicalWarehouseRecIDContains(String value) { this.LastLogicalWarehouse_RecIDContains = value; return this; } public String getLastLogicalWarehouseRecIDLike() { return LastLogicalWarehouse_RecIDLike; } public HR_StaffUserSettingsQuery setLastLogicalWarehouseRecIDLike(String value) { this.LastLogicalWarehouse_RecIDLike = value; return this; } public ArrayList getLastLogicalWarehouseRecIDBetween() { return LastLogicalWarehouse_RecIDBetween; } public HR_StaffUserSettingsQuery setLastLogicalWarehouseRecIDBetween(ArrayList value) { this.LastLogicalWarehouse_RecIDBetween = value; return this; } public ArrayList getLastLogicalWarehouseRecIDIn() { return LastLogicalWarehouse_RecIDIn; } public HR_StaffUserSettingsQuery setLastLogicalWarehouseRecIDIn(ArrayList value) { this.LastLogicalWarehouse_RecIDIn = value; return this; } public Short getStockTakeOrder() { return StockTakeOrder; } public HR_StaffUserSettingsQuery setStockTakeOrder(Short value) { this.StockTakeOrder = value; return this; } public Short getStockTakeOrderGreaterThanOrEqualTo() { return StockTakeOrderGreaterThanOrEqualTo; } public HR_StaffUserSettingsQuery setStockTakeOrderGreaterThanOrEqualTo(Short value) { this.StockTakeOrderGreaterThanOrEqualTo = value; return this; } public Short getStockTakeOrderGreaterThan() { return StockTakeOrderGreaterThan; } public HR_StaffUserSettingsQuery setStockTakeOrderGreaterThan(Short value) { this.StockTakeOrderGreaterThan = value; return this; } public Short getStockTakeOrderLessThan() { return StockTakeOrderLessThan; } public HR_StaffUserSettingsQuery setStockTakeOrderLessThan(Short value) { this.StockTakeOrderLessThan = value; return this; } public Short getStockTakeOrderLessThanOrEqualTo() { return StockTakeOrderLessThanOrEqualTo; } public HR_StaffUserSettingsQuery setStockTakeOrderLessThanOrEqualTo(Short value) { this.StockTakeOrderLessThanOrEqualTo = value; return this; } public Short getStockTakeOrderNotEqualTo() { return StockTakeOrderNotEqualTo; } public HR_StaffUserSettingsQuery setStockTakeOrderNotEqualTo(Short value) { this.StockTakeOrderNotEqualTo = value; return this; } public ArrayList getStockTakeOrderBetween() { return StockTakeOrderBetween; } public HR_StaffUserSettingsQuery setStockTakeOrderBetween(ArrayList value) { this.StockTakeOrderBetween = value; return this; } public ArrayList getStockTakeOrderIn() { return StockTakeOrderIn; } public HR_StaffUserSettingsQuery setStockTakeOrderIn(ArrayList value) { this.StockTakeOrderIn = value; return this; } public Short getEnforceMinGP() { return EnforceMinGP; } public HR_StaffUserSettingsQuery setEnforceMinGP(Short value) { this.EnforceMinGP = value; return this; } public Short getEnforceMinGPGreaterThanOrEqualTo() { return EnforceMinGPGreaterThanOrEqualTo; } public HR_StaffUserSettingsQuery setEnforceMinGPGreaterThanOrEqualTo(Short value) { this.EnforceMinGPGreaterThanOrEqualTo = value; return this; } public Short getEnforceMinGPGreaterThan() { return EnforceMinGPGreaterThan; } public HR_StaffUserSettingsQuery setEnforceMinGPGreaterThan(Short value) { this.EnforceMinGPGreaterThan = value; return this; } public Short getEnforceMinGPLessThan() { return EnforceMinGPLessThan; } public HR_StaffUserSettingsQuery setEnforceMinGPLessThan(Short value) { this.EnforceMinGPLessThan = value; return this; } public Short getEnforceMinGPLessThanOrEqualTo() { return EnforceMinGPLessThanOrEqualTo; } public HR_StaffUserSettingsQuery setEnforceMinGPLessThanOrEqualTo(Short value) { this.EnforceMinGPLessThanOrEqualTo = value; return this; } public Short getEnforceMinGPNotEqualTo() { return EnforceMinGPNotEqualTo; } public HR_StaffUserSettingsQuery setEnforceMinGPNotEqualTo(Short value) { this.EnforceMinGPNotEqualTo = value; return this; } public ArrayList getEnforceMinGPBetween() { return EnforceMinGPBetween; } public HR_StaffUserSettingsQuery setEnforceMinGPBetween(ArrayList value) { this.EnforceMinGPBetween = value; return this; } public ArrayList getEnforceMinGPIn() { return EnforceMinGPIn; } public HR_StaffUserSettingsQuery setEnforceMinGPIn(ArrayList value) { this.EnforceMinGPIn = value; return this; } public Integer getSearchAutoStart() { return SearchAutoStart; } public HR_StaffUserSettingsQuery setSearchAutoStart(Integer value) { this.SearchAutoStart = value; return this; } public Integer getSearchAutoStartGreaterThanOrEqualTo() { return SearchAutoStartGreaterThanOrEqualTo; } public HR_StaffUserSettingsQuery setSearchAutoStartGreaterThanOrEqualTo(Integer value) { this.SearchAutoStartGreaterThanOrEqualTo = value; return this; } public Integer getSearchAutoStartGreaterThan() { return SearchAutoStartGreaterThan; } public HR_StaffUserSettingsQuery setSearchAutoStartGreaterThan(Integer value) { this.SearchAutoStartGreaterThan = value; return this; } public Integer getSearchAutoStartLessThan() { return SearchAutoStartLessThan; } public HR_StaffUserSettingsQuery setSearchAutoStartLessThan(Integer value) { this.SearchAutoStartLessThan = value; return this; } public Integer getSearchAutoStartLessThanOrEqualTo() { return SearchAutoStartLessThanOrEqualTo; } public HR_StaffUserSettingsQuery setSearchAutoStartLessThanOrEqualTo(Integer value) { this.SearchAutoStartLessThanOrEqualTo = value; return this; } public Integer getSearchAutoStartNotEqualTo() { return SearchAutoStartNotEqualTo; } public HR_StaffUserSettingsQuery setSearchAutoStartNotEqualTo(Integer value) { this.SearchAutoStartNotEqualTo = value; return this; } public ArrayList getSearchAutoStartBetween() { return SearchAutoStartBetween; } public HR_StaffUserSettingsQuery setSearchAutoStartBetween(ArrayList value) { this.SearchAutoStartBetween = value; return this; } public ArrayList getSearchAutoStartIn() { return SearchAutoStartIn; } public HR_StaffUserSettingsQuery setSearchAutoStartIn(ArrayList value) { this.SearchAutoStartIn = value; return this; } public Boolean isSearchReplaceText() { return SearchReplaceText; } public HR_StaffUserSettingsQuery setSearchReplaceText(Boolean value) { this.SearchReplaceText = value; return this; } public String getSearchFontName() { return SearchFontName; } public HR_StaffUserSettingsQuery setSearchFontName(String value) { this.SearchFontName = value; return this; } public String getSearchFontNameStartsWith() { return SearchFontNameStartsWith; } public HR_StaffUserSettingsQuery setSearchFontNameStartsWith(String value) { this.SearchFontNameStartsWith = value; return this; } public String getSearchFontNameEndsWith() { return SearchFontNameEndsWith; } public HR_StaffUserSettingsQuery setSearchFontNameEndsWith(String value) { this.SearchFontNameEndsWith = value; return this; } public String getSearchFontNameContains() { return SearchFontNameContains; } public HR_StaffUserSettingsQuery setSearchFontNameContains(String value) { this.SearchFontNameContains = value; return this; } public String getSearchFontNameLike() { return SearchFontNameLike; } public HR_StaffUserSettingsQuery setSearchFontNameLike(String value) { this.SearchFontNameLike = value; return this; } public ArrayList getSearchFontNameBetween() { return SearchFontNameBetween; } public HR_StaffUserSettingsQuery setSearchFontNameBetween(ArrayList value) { this.SearchFontNameBetween = value; return this; } public ArrayList getSearchFontNameIn() { return SearchFontNameIn; } public HR_StaffUserSettingsQuery setSearchFontNameIn(ArrayList value) { this.SearchFontNameIn = value; return this; } public BigDecimal getSearchFontSize() { return SearchFontSize; } public HR_StaffUserSettingsQuery setSearchFontSize(BigDecimal value) { this.SearchFontSize = value; return this; } public BigDecimal getSearchFontSizeGreaterThanOrEqualTo() { return SearchFontSizeGreaterThanOrEqualTo; } public HR_StaffUserSettingsQuery setSearchFontSizeGreaterThanOrEqualTo(BigDecimal value) { this.SearchFontSizeGreaterThanOrEqualTo = value; return this; } public BigDecimal getSearchFontSizeGreaterThan() { return SearchFontSizeGreaterThan; } public HR_StaffUserSettingsQuery setSearchFontSizeGreaterThan(BigDecimal value) { this.SearchFontSizeGreaterThan = value; return this; } public BigDecimal getSearchFontSizeLessThan() { return SearchFontSizeLessThan; } public HR_StaffUserSettingsQuery setSearchFontSizeLessThan(BigDecimal value) { this.SearchFontSizeLessThan = value; return this; } public BigDecimal getSearchFontSizeLessThanOrEqualTo() { return SearchFontSizeLessThanOrEqualTo; } public HR_StaffUserSettingsQuery setSearchFontSizeLessThanOrEqualTo(BigDecimal value) { this.SearchFontSizeLessThanOrEqualTo = value; return this; } public BigDecimal getSearchFontSizeNotEqualTo() { return SearchFontSizeNotEqualTo; } public HR_StaffUserSettingsQuery setSearchFontSizeNotEqualTo(BigDecimal value) { this.SearchFontSizeNotEqualTo = value; return this; } public ArrayList getSearchFontSizeBetween() { return SearchFontSizeBetween; } public HR_StaffUserSettingsQuery setSearchFontSizeBetween(ArrayList value) { this.SearchFontSizeBetween = value; return this; } public ArrayList getSearchFontSizeIn() { return SearchFontSizeIn; } public HR_StaffUserSettingsQuery setSearchFontSizeIn(ArrayList value) { this.SearchFontSizeIn = value; return this; } public Boolean isCreditorsPrintToScreen() { return CreditorsPrintToScreen; } public HR_StaffUserSettingsQuery setCreditorsPrintToScreen(Boolean value) { this.CreditorsPrintToScreen = value; return this; } public Boolean isIgnoreBackOrderAllocations() { return IgnoreBackOrderAllocations; } public HR_StaffUserSettingsQuery setIgnoreBackOrderAllocations(Boolean value) { this.IgnoreBackOrderAllocations = value; return this; } public Boolean isInvoicingPrintToScreen() { return InvoicingPrintToScreen; } public HR_StaffUserSettingsQuery setInvoicingPrintToScreen(Boolean value) { this.InvoicingPrintToScreen = value; return this; } public Boolean isAllowModificationOfPrintedUnprocessedInvoices() { return AllowModificationOfPrintedUnprocessedInvoices; } public HR_StaffUserSettingsQuery setAllowModificationOfPrintedUnprocessedInvoices(Boolean value) { this.AllowModificationOfPrintedUnprocessedInvoices = value; return this; } public String getIncrementInvoiceNumbers() { return IncrementInvoiceNumbers; } public HR_StaffUserSettingsQuery setIncrementInvoiceNumbers(String value) { this.IncrementInvoiceNumbers = value; return this; } public String getIncrementInvoiceNumbersStartsWith() { return IncrementInvoiceNumbersStartsWith; } public HR_StaffUserSettingsQuery setIncrementInvoiceNumbersStartsWith(String value) { this.IncrementInvoiceNumbersStartsWith = value; return this; } public String getIncrementInvoiceNumbersEndsWith() { return IncrementInvoiceNumbersEndsWith; } public HR_StaffUserSettingsQuery setIncrementInvoiceNumbersEndsWith(String value) { this.IncrementInvoiceNumbersEndsWith = value; return this; } public String getIncrementInvoiceNumbersContains() { return IncrementInvoiceNumbersContains; } public HR_StaffUserSettingsQuery setIncrementInvoiceNumbersContains(String value) { this.IncrementInvoiceNumbersContains = value; return this; } public String getIncrementInvoiceNumbersLike() { return IncrementInvoiceNumbersLike; } public HR_StaffUserSettingsQuery setIncrementInvoiceNumbersLike(String value) { this.IncrementInvoiceNumbersLike = value; return this; } public ArrayList getIncrementInvoiceNumbersBetween() { return IncrementInvoiceNumbersBetween; } public HR_StaffUserSettingsQuery setIncrementInvoiceNumbersBetween(ArrayList value) { this.IncrementInvoiceNumbersBetween = value; return this; } public ArrayList getIncrementInvoiceNumbersIn() { return IncrementInvoiceNumbersIn; } public HR_StaffUserSettingsQuery setIncrementInvoiceNumbersIn(ArrayList value) { this.IncrementInvoiceNumbersIn = value; return this; } public Boolean isParticipateInCustomerExperienceImprovementProgram() { return ParticipateInCustomerExperienceImprovementProgram; } public HR_StaffUserSettingsQuery setParticipateInCustomerExperienceImprovementProgram(Boolean value) { this.ParticipateInCustomerExperienceImprovementProgram = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class HR_StartupItemsQuery extends QueryDb implements IReturn> { public String RecID = null; public String RecIDStartsWith = null; public String RecIDEndsWith = null; public String RecIDContains = null; public String RecIDLike = null; public ArrayList RecIDBetween = null; public ArrayList RecIDIn = null; public String HR_Staff_RecID = null; public String HR_Staff_RecIDStartsWith = null; public String HR_Staff_RecIDEndsWith = null; public String HR_Staff_RecIDContains = null; public String HR_Staff_RecIDLike = null; public ArrayList HR_Staff_RecIDBetween = null; public ArrayList HR_Staff_RecIDIn = null; public String SY_Forms_ClassName = null; public String SY_Forms_ClassNameStartsWith = null; public String SY_Forms_ClassNameEndsWith = null; public String SY_Forms_ClassNameContains = null; public String SY_Forms_ClassNameLike = null; public ArrayList SY_Forms_ClassNameBetween = null; public ArrayList SY_Forms_ClassNameIn = null; public Integer ItemNo = null; public Integer ItemNoGreaterThanOrEqualTo = null; public Integer ItemNoGreaterThan = null; public Integer ItemNoLessThan = null; public Integer ItemNoLessThanOrEqualTo = null; public Integer ItemNoNotEqualTo = null; public ArrayList ItemNoBetween = null; public ArrayList ItemNoIn = null; public ArrayList RowHash = null; public String getRecID() { return RecID; } public HR_StartupItemsQuery setRecID(String value) { this.RecID = value; return this; } public String getRecIDStartsWith() { return RecIDStartsWith; } public HR_StartupItemsQuery setRecIDStartsWith(String value) { this.RecIDStartsWith = value; return this; } public String getRecIDEndsWith() { return RecIDEndsWith; } public HR_StartupItemsQuery setRecIDEndsWith(String value) { this.RecIDEndsWith = value; return this; } public String getRecIDContains() { return RecIDContains; } public HR_StartupItemsQuery setRecIDContains(String value) { this.RecIDContains = value; return this; } public String getRecIDLike() { return RecIDLike; } public HR_StartupItemsQuery setRecIDLike(String value) { this.RecIDLike = value; return this; } public ArrayList getRecIDBetween() { return RecIDBetween; } public HR_StartupItemsQuery setRecIDBetween(ArrayList value) { this.RecIDBetween = value; return this; } public ArrayList getRecIDIn() { return RecIDIn; } public HR_StartupItemsQuery setRecIDIn(ArrayList value) { this.RecIDIn = value; return this; } public String getHrStaffRecID() { return HR_Staff_RecID; } public HR_StartupItemsQuery setHrStaffRecID(String value) { this.HR_Staff_RecID = value; return this; } public String getHrStaffRecIDStartsWith() { return HR_Staff_RecIDStartsWith; } public HR_StartupItemsQuery setHrStaffRecIDStartsWith(String value) { this.HR_Staff_RecIDStartsWith = value; return this; } public String getHrStaffRecIDEndsWith() { return HR_Staff_RecIDEndsWith; } public HR_StartupItemsQuery setHrStaffRecIDEndsWith(String value) { this.HR_Staff_RecIDEndsWith = value; return this; } public String getHrStaffRecIDContains() { return HR_Staff_RecIDContains; } public HR_StartupItemsQuery setHrStaffRecIDContains(String value) { this.HR_Staff_RecIDContains = value; return this; } public String getHrStaffRecIDLike() { return HR_Staff_RecIDLike; } public HR_StartupItemsQuery setHrStaffRecIDLike(String value) { this.HR_Staff_RecIDLike = value; return this; } public ArrayList getHrStaffRecIDBetween() { return HR_Staff_RecIDBetween; } public HR_StartupItemsQuery setHrStaffRecIDBetween(ArrayList value) { this.HR_Staff_RecIDBetween = value; return this; } public ArrayList getHrStaffRecIDIn() { return HR_Staff_RecIDIn; } public HR_StartupItemsQuery setHrStaffRecIDIn(ArrayList value) { this.HR_Staff_RecIDIn = value; return this; } public String getSyFormsClassName() { return SY_Forms_ClassName; } public HR_StartupItemsQuery setSyFormsClassName(String value) { this.SY_Forms_ClassName = value; return this; } public String getSyFormsClassNameStartsWith() { return SY_Forms_ClassNameStartsWith; } public HR_StartupItemsQuery setSyFormsClassNameStartsWith(String value) { this.SY_Forms_ClassNameStartsWith = value; return this; } public String getSyFormsClassNameEndsWith() { return SY_Forms_ClassNameEndsWith; } public HR_StartupItemsQuery setSyFormsClassNameEndsWith(String value) { this.SY_Forms_ClassNameEndsWith = value; return this; } public String getSyFormsClassNameContains() { return SY_Forms_ClassNameContains; } public HR_StartupItemsQuery setSyFormsClassNameContains(String value) { this.SY_Forms_ClassNameContains = value; return this; } public String getSyFormsClassNameLike() { return SY_Forms_ClassNameLike; } public HR_StartupItemsQuery setSyFormsClassNameLike(String value) { this.SY_Forms_ClassNameLike = value; return this; } public ArrayList getSyFormsClassNameBetween() { return SY_Forms_ClassNameBetween; } public HR_StartupItemsQuery setSyFormsClassNameBetween(ArrayList value) { this.SY_Forms_ClassNameBetween = value; return this; } public ArrayList getSyFormsClassNameIn() { return SY_Forms_ClassNameIn; } public HR_StartupItemsQuery setSyFormsClassNameIn(ArrayList value) { this.SY_Forms_ClassNameIn = value; return this; } public Integer getItemNo() { return ItemNo; } public HR_StartupItemsQuery setItemNo(Integer value) { this.ItemNo = value; return this; } public Integer getItemNoGreaterThanOrEqualTo() { return ItemNoGreaterThanOrEqualTo; } public HR_StartupItemsQuery setItemNoGreaterThanOrEqualTo(Integer value) { this.ItemNoGreaterThanOrEqualTo = value; return this; } public Integer getItemNoGreaterThan() { return ItemNoGreaterThan; } public HR_StartupItemsQuery setItemNoGreaterThan(Integer value) { this.ItemNoGreaterThan = value; return this; } public Integer getItemNoLessThan() { return ItemNoLessThan; } public HR_StartupItemsQuery setItemNoLessThan(Integer value) { this.ItemNoLessThan = value; return this; } public Integer getItemNoLessThanOrEqualTo() { return ItemNoLessThanOrEqualTo; } public HR_StartupItemsQuery setItemNoLessThanOrEqualTo(Integer value) { this.ItemNoLessThanOrEqualTo = value; return this; } public Integer getItemNoNotEqualTo() { return ItemNoNotEqualTo; } public HR_StartupItemsQuery setItemNoNotEqualTo(Integer value) { this.ItemNoNotEqualTo = value; return this; } public ArrayList getItemNoBetween() { return ItemNoBetween; } public HR_StartupItemsQuery setItemNoBetween(ArrayList value) { this.ItemNoBetween = value; return this; } public ArrayList getItemNoIn() { return ItemNoIn; } public HR_StartupItemsQuery setItemNoIn(ArrayList value) { this.ItemNoIn = value; return this; } public ArrayList getRowHash() { return RowHash; } public HR_StartupItemsQuery setRowHash(ArrayList value) { this.RowHash = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class IM_CSV_StagingQuery extends QueryDb implements IReturn> { public String RecID = null; public String RecIDStartsWith = null; public String RecIDEndsWith = null; public String RecIDContains = null; public String RecIDLike = null; public ArrayList RecIDBetween = null; public ArrayList RecIDIn = null; public String BatchID = null; public String BatchIDStartsWith = null; public String BatchIDEndsWith = null; public String BatchIDContains = null; public String BatchIDLike = null; public ArrayList BatchIDBetween = null; public ArrayList BatchIDIn = null; public Integer LineNumber = null; public Integer LineNumberGreaterThanOrEqualTo = null; public Integer LineNumberGreaterThan = null; public Integer LineNumberLessThan = null; public Integer LineNumberLessThanOrEqualTo = null; public Integer LineNumberNotEqualTo = null; public ArrayList LineNumberBetween = null; public ArrayList LineNumberIn = null; public String Reference = null; public String ReferenceStartsWith = null; public String ReferenceEndsWith = null; public String ReferenceContains = null; public String ReferenceLike = null; public ArrayList ReferenceBetween = null; public ArrayList ReferenceIn = null; public Date DateCreated = null; public Date DateCreatedGreaterThanOrEqualTo = null; public Date DateCreatedGreaterThan = null; public Date DateCreatedLessThan = null; public Date DateCreatedLessThanOrEqualTo = null; public Date DateCreatedNotEqualTo = null; public ArrayList DateCreatedBetween = null; public ArrayList DateCreatedIn = null; public String ImportStatus = null; public String ImportStatusStartsWith = null; public String ImportStatusEndsWith = null; public String ImportStatusContains = null; public String ImportStatusLike = null; public ArrayList ImportStatusBetween = null; public ArrayList ImportStatusIn = null; public String ImportMessage = null; public String ImportMessageStartsWith = null; public String ImportMessageEndsWith = null; public String ImportMessageContains = null; public String ImportMessageLike = null; public ArrayList ImportMessageBetween = null; public ArrayList ImportMessageIn = null; public String Column1 = null; public String Column1StartsWith = null; public String Column1EndsWith = null; public String Column1Contains = null; public String Column1Like = null; public ArrayList Column1Between = null; public ArrayList Column1In = null; public String Column2 = null; public String Column2StartsWith = null; public String Column2EndsWith = null; public String Column2Contains = null; public String Column2Like = null; public ArrayList Column2Between = null; public ArrayList Column2In = null; public String Column3 = null; public String Column3StartsWith = null; public String Column3EndsWith = null; public String Column3Contains = null; public String Column3Like = null; public ArrayList Column3Between = null; public ArrayList Column3In = null; public String Column4 = null; public String Column4StartsWith = null; public String Column4EndsWith = null; public String Column4Contains = null; public String Column4Like = null; public ArrayList Column4Between = null; public ArrayList Column4In = null; public String Column5 = null; public String Column5StartsWith = null; public String Column5EndsWith = null; public String Column5Contains = null; public String Column5Like = null; public ArrayList Column5Between = null; public ArrayList Column5In = null; public String Column6 = null; public String Column6StartsWith = null; public String Column6EndsWith = null; public String Column6Contains = null; public String Column6Like = null; public ArrayList Column6Between = null; public ArrayList Column6In = null; public String Column7 = null; public String Column7StartsWith = null; public String Column7EndsWith = null; public String Column7Contains = null; public String Column7Like = null; public ArrayList Column7Between = null; public ArrayList Column7In = null; public String Column8 = null; public String Column8StartsWith = null; public String Column8EndsWith = null; public String Column8Contains = null; public String Column8Like = null; public ArrayList Column8Between = null; public ArrayList Column8In = null; public String Column9 = null; public String Column9StartsWith = null; public String Column9EndsWith = null; public String Column9Contains = null; public String Column9Like = null; public ArrayList Column9Between = null; public ArrayList Column9In = null; public String Column10 = null; public String Column10StartsWith = null; public String Column10EndsWith = null; public String Column10Contains = null; public String Column10Like = null; public ArrayList Column10Between = null; public ArrayList Column10In = null; public String Column11 = null; public String Column11StartsWith = null; public String Column11EndsWith = null; public String Column11Contains = null; public String Column11Like = null; public ArrayList Column11Between = null; public ArrayList Column11In = null; public String Column12 = null; public String Column12StartsWith = null; public String Column12EndsWith = null; public String Column12Contains = null; public String Column12Like = null; public ArrayList Column12Between = null; public ArrayList Column12In = null; public String Column13 = null; public String Column13StartsWith = null; public String Column13EndsWith = null; public String Column13Contains = null; public String Column13Like = null; public ArrayList Column13Between = null; public ArrayList Column13In = null; public String Column14 = null; public String Column14StartsWith = null; public String Column14EndsWith = null; public String Column14Contains = null; public String Column14Like = null; public ArrayList Column14Between = null; public ArrayList Column14In = null; public String Column15 = null; public String Column15StartsWith = null; public String Column15EndsWith = null; public String Column15Contains = null; public String Column15Like = null; public ArrayList Column15Between = null; public ArrayList Column15In = null; public String Column16 = null; public String Column16StartsWith = null; public String Column16EndsWith = null; public String Column16Contains = null; public String Column16Like = null; public ArrayList Column16Between = null; public ArrayList Column16In = null; public String Column17 = null; public String Column17StartsWith = null; public String Column17EndsWith = null; public String Column17Contains = null; public String Column17Like = null; public ArrayList Column17Between = null; public ArrayList Column17In = null; public String Column18 = null; public String Column18StartsWith = null; public String Column18EndsWith = null; public String Column18Contains = null; public String Column18Like = null; public ArrayList Column18Between = null; public ArrayList Column18In = null; public String Column19 = null; public String Column19StartsWith = null; public String Column19EndsWith = null; public String Column19Contains = null; public String Column19Like = null; public ArrayList Column19Between = null; public ArrayList Column19In = null; public String Column20 = null; public String Column20StartsWith = null; public String Column20EndsWith = null; public String Column20Contains = null; public String Column20Like = null; public ArrayList Column20Between = null; public ArrayList Column20In = null; public String Column21 = null; public String Column21StartsWith = null; public String Column21EndsWith = null; public String Column21Contains = null; public String Column21Like = null; public ArrayList Column21Between = null; public ArrayList Column21In = null; public String Column22 = null; public String Column22StartsWith = null; public String Column22EndsWith = null; public String Column22Contains = null; public String Column22Like = null; public ArrayList Column22Between = null; public ArrayList Column22In = null; public String Column23 = null; public String Column23StartsWith = null; public String Column23EndsWith = null; public String Column23Contains = null; public String Column23Like = null; public ArrayList Column23Between = null; public ArrayList Column23In = null; public String Column24 = null; public String Column24StartsWith = null; public String Column24EndsWith = null; public String Column24Contains = null; public String Column24Like = null; public ArrayList Column24Between = null; public ArrayList Column24In = null; public String Column25 = null; public String Column25StartsWith = null; public String Column25EndsWith = null; public String Column25Contains = null; public String Column25Like = null; public ArrayList Column25Between = null; public ArrayList Column25In = null; public String Column26 = null; public String Column26StartsWith = null; public String Column26EndsWith = null; public String Column26Contains = null; public String Column26Like = null; public ArrayList Column26Between = null; public ArrayList Column26In = null; public String Column27 = null; public String Column27StartsWith = null; public String Column27EndsWith = null; public String Column27Contains = null; public String Column27Like = null; public ArrayList Column27Between = null; public ArrayList Column27In = null; public String Column28 = null; public String Column28StartsWith = null; public String Column28EndsWith = null; public String Column28Contains = null; public String Column28Like = null; public ArrayList Column28Between = null; public ArrayList Column28In = null; public String Column29 = null; public String Column29StartsWith = null; public String Column29EndsWith = null; public String Column29Contains = null; public String Column29Like = null; public ArrayList Column29Between = null; public ArrayList Column29In = null; public String Column30 = null; public String Column30StartsWith = null; public String Column30EndsWith = null; public String Column30Contains = null; public String Column30Like = null; public ArrayList Column30Between = null; public ArrayList Column30In = null; public String Column31 = null; public String Column31StartsWith = null; public String Column31EndsWith = null; public String Column31Contains = null; public String Column31Like = null; public ArrayList Column31Between = null; public ArrayList Column31In = null; public String Column32 = null; public String Column32StartsWith = null; public String Column32EndsWith = null; public String Column32Contains = null; public String Column32Like = null; public ArrayList Column32Between = null; public ArrayList Column32In = null; public String Column33 = null; public String Column33StartsWith = null; public String Column33EndsWith = null; public String Column33Contains = null; public String Column33Like = null; public ArrayList Column33Between = null; public ArrayList Column33In = null; public String Column34 = null; public String Column34StartsWith = null; public String Column34EndsWith = null; public String Column34Contains = null; public String Column34Like = null; public ArrayList Column34Between = null; public ArrayList Column34In = null; public String Column35 = null; public String Column35StartsWith = null; public String Column35EndsWith = null; public String Column35Contains = null; public String Column35Like = null; public ArrayList Column35Between = null; public ArrayList Column35In = null; public String Column36 = null; public String Column36StartsWith = null; public String Column36EndsWith = null; public String Column36Contains = null; public String Column36Like = null; public ArrayList Column36Between = null; public ArrayList Column36In = null; public String Column37 = null; public String Column37StartsWith = null; public String Column37EndsWith = null; public String Column37Contains = null; public String Column37Like = null; public ArrayList Column37Between = null; public ArrayList Column37In = null; public String Column38 = null; public String Column38StartsWith = null; public String Column38EndsWith = null; public String Column38Contains = null; public String Column38Like = null; public ArrayList Column38Between = null; public ArrayList Column38In = null; public String Column39 = null; public String Column39StartsWith = null; public String Column39EndsWith = null; public String Column39Contains = null; public String Column39Like = null; public ArrayList Column39Between = null; public ArrayList Column39In = null; public String Column40 = null; public String Column40StartsWith = null; public String Column40EndsWith = null; public String Column40Contains = null; public String Column40Like = null; public ArrayList Column40Between = null; public ArrayList Column40In = null; public String Column41 = null; public String Column41StartsWith = null; public String Column41EndsWith = null; public String Column41Contains = null; public String Column41Like = null; public ArrayList Column41Between = null; public ArrayList Column41In = null; public String Column42 = null; public String Column42StartsWith = null; public String Column42EndsWith = null; public String Column42Contains = null; public String Column42Like = null; public ArrayList Column42Between = null; public ArrayList Column42In = null; public String Column43 = null; public String Column43StartsWith = null; public String Column43EndsWith = null; public String Column43Contains = null; public String Column43Like = null; public ArrayList Column43Between = null; public ArrayList Column43In = null; public String Column44 = null; public String Column44StartsWith = null; public String Column44EndsWith = null; public String Column44Contains = null; public String Column44Like = null; public ArrayList Column44Between = null; public ArrayList Column44In = null; public String Column45 = null; public String Column45StartsWith = null; public String Column45EndsWith = null; public String Column45Contains = null; public String Column45Like = null; public ArrayList Column45Between = null; public ArrayList Column45In = null; public String Column46 = null; public String Column46StartsWith = null; public String Column46EndsWith = null; public String Column46Contains = null; public String Column46Like = null; public ArrayList Column46Between = null; public ArrayList Column46In = null; public String Column47 = null; public String Column47StartsWith = null; public String Column47EndsWith = null; public String Column47Contains = null; public String Column47Like = null; public ArrayList Column47Between = null; public ArrayList Column47In = null; public String Column48 = null; public String Column48StartsWith = null; public String Column48EndsWith = null; public String Column48Contains = null; public String Column48Like = null; public ArrayList Column48Between = null; public ArrayList Column48In = null; public String Column49 = null; public String Column49StartsWith = null; public String Column49EndsWith = null; public String Column49Contains = null; public String Column49Like = null; public ArrayList Column49Between = null; public ArrayList Column49In = null; public String Column50 = null; public String Column50StartsWith = null; public String Column50EndsWith = null; public String Column50Contains = null; public String Column50Like = null; public ArrayList Column50Between = null; public ArrayList Column50In = null; public String getRecID() { return RecID; } public IM_CSV_StagingQuery setRecID(String value) { this.RecID = value; return this; } public String getRecIDStartsWith() { return RecIDStartsWith; } public IM_CSV_StagingQuery setRecIDStartsWith(String value) { this.RecIDStartsWith = value; return this; } public String getRecIDEndsWith() { return RecIDEndsWith; } public IM_CSV_StagingQuery setRecIDEndsWith(String value) { this.RecIDEndsWith = value; return this; } public String getRecIDContains() { return RecIDContains; } public IM_CSV_StagingQuery setRecIDContains(String value) { this.RecIDContains = value; return this; } public String getRecIDLike() { return RecIDLike; } public IM_CSV_StagingQuery setRecIDLike(String value) { this.RecIDLike = value; return this; } public ArrayList getRecIDBetween() { return RecIDBetween; } public IM_CSV_StagingQuery setRecIDBetween(ArrayList value) { this.RecIDBetween = value; return this; } public ArrayList getRecIDIn() { return RecIDIn; } public IM_CSV_StagingQuery setRecIDIn(ArrayList value) { this.RecIDIn = value; return this; } public String getBatchID() { return BatchID; } public IM_CSV_StagingQuery setBatchID(String value) { this.BatchID = value; return this; } public String getBatchIDStartsWith() { return BatchIDStartsWith; } public IM_CSV_StagingQuery setBatchIDStartsWith(String value) { this.BatchIDStartsWith = value; return this; } public String getBatchIDEndsWith() { return BatchIDEndsWith; } public IM_CSV_StagingQuery setBatchIDEndsWith(String value) { this.BatchIDEndsWith = value; return this; } public String getBatchIDContains() { return BatchIDContains; } public IM_CSV_StagingQuery setBatchIDContains(String value) { this.BatchIDContains = value; return this; } public String getBatchIDLike() { return BatchIDLike; } public IM_CSV_StagingQuery setBatchIDLike(String value) { this.BatchIDLike = value; return this; } public ArrayList getBatchIDBetween() { return BatchIDBetween; } public IM_CSV_StagingQuery setBatchIDBetween(ArrayList value) { this.BatchIDBetween = value; return this; } public ArrayList getBatchIDIn() { return BatchIDIn; } public IM_CSV_StagingQuery setBatchIDIn(ArrayList value) { this.BatchIDIn = value; return this; } public Integer getLineNumber() { return LineNumber; } public IM_CSV_StagingQuery setLineNumber(Integer value) { this.LineNumber = value; return this; } public Integer getLineNumberGreaterThanOrEqualTo() { return LineNumberGreaterThanOrEqualTo; } public IM_CSV_StagingQuery setLineNumberGreaterThanOrEqualTo(Integer value) { this.LineNumberGreaterThanOrEqualTo = value; return this; } public Integer getLineNumberGreaterThan() { return LineNumberGreaterThan; } public IM_CSV_StagingQuery setLineNumberGreaterThan(Integer value) { this.LineNumberGreaterThan = value; return this; } public Integer getLineNumberLessThan() { return LineNumberLessThan; } public IM_CSV_StagingQuery setLineNumberLessThan(Integer value) { this.LineNumberLessThan = value; return this; } public Integer getLineNumberLessThanOrEqualTo() { return LineNumberLessThanOrEqualTo; } public IM_CSV_StagingQuery setLineNumberLessThanOrEqualTo(Integer value) { this.LineNumberLessThanOrEqualTo = value; return this; } public Integer getLineNumberNotEqualTo() { return LineNumberNotEqualTo; } public IM_CSV_StagingQuery setLineNumberNotEqualTo(Integer value) { this.LineNumberNotEqualTo = value; return this; } public ArrayList getLineNumberBetween() { return LineNumberBetween; } public IM_CSV_StagingQuery setLineNumberBetween(ArrayList value) { this.LineNumberBetween = value; return this; } public ArrayList getLineNumberIn() { return LineNumberIn; } public IM_CSV_StagingQuery setLineNumberIn(ArrayList value) { this.LineNumberIn = value; return this; } public String getReference() { return Reference; } public IM_CSV_StagingQuery setReference(String value) { this.Reference = value; return this; } public String getReferenceStartsWith() { return ReferenceStartsWith; } public IM_CSV_StagingQuery setReferenceStartsWith(String value) { this.ReferenceStartsWith = value; return this; } public String getReferenceEndsWith() { return ReferenceEndsWith; } public IM_CSV_StagingQuery setReferenceEndsWith(String value) { this.ReferenceEndsWith = value; return this; } public String getReferenceContains() { return ReferenceContains; } public IM_CSV_StagingQuery setReferenceContains(String value) { this.ReferenceContains = value; return this; } public String getReferenceLike() { return ReferenceLike; } public IM_CSV_StagingQuery setReferenceLike(String value) { this.ReferenceLike = value; return this; } public ArrayList getReferenceBetween() { return ReferenceBetween; } public IM_CSV_StagingQuery setReferenceBetween(ArrayList value) { this.ReferenceBetween = value; return this; } public ArrayList getReferenceIn() { return ReferenceIn; } public IM_CSV_StagingQuery setReferenceIn(ArrayList value) { this.ReferenceIn = value; return this; } public Date getDateCreated() { return DateCreated; } public IM_CSV_StagingQuery setDateCreated(Date value) { this.DateCreated = value; return this; } public Date getDateCreatedGreaterThanOrEqualTo() { return DateCreatedGreaterThanOrEqualTo; } public IM_CSV_StagingQuery setDateCreatedGreaterThanOrEqualTo(Date value) { this.DateCreatedGreaterThanOrEqualTo = value; return this; } public Date getDateCreatedGreaterThan() { return DateCreatedGreaterThan; } public IM_CSV_StagingQuery setDateCreatedGreaterThan(Date value) { this.DateCreatedGreaterThan = value; return this; } public Date getDateCreatedLessThan() { return DateCreatedLessThan; } public IM_CSV_StagingQuery setDateCreatedLessThan(Date value) { this.DateCreatedLessThan = value; return this; } public Date getDateCreatedLessThanOrEqualTo() { return DateCreatedLessThanOrEqualTo; } public IM_CSV_StagingQuery setDateCreatedLessThanOrEqualTo(Date value) { this.DateCreatedLessThanOrEqualTo = value; return this; } public Date getDateCreatedNotEqualTo() { return DateCreatedNotEqualTo; } public IM_CSV_StagingQuery setDateCreatedNotEqualTo(Date value) { this.DateCreatedNotEqualTo = value; return this; } public ArrayList getDateCreatedBetween() { return DateCreatedBetween; } public IM_CSV_StagingQuery setDateCreatedBetween(ArrayList value) { this.DateCreatedBetween = value; return this; } public ArrayList getDateCreatedIn() { return DateCreatedIn; } public IM_CSV_StagingQuery setDateCreatedIn(ArrayList value) { this.DateCreatedIn = value; return this; } public String getImportStatus() { return ImportStatus; } public IM_CSV_StagingQuery setImportStatus(String value) { this.ImportStatus = value; return this; } public String getImportStatusStartsWith() { return ImportStatusStartsWith; } public IM_CSV_StagingQuery setImportStatusStartsWith(String value) { this.ImportStatusStartsWith = value; return this; } public String getImportStatusEndsWith() { return ImportStatusEndsWith; } public IM_CSV_StagingQuery setImportStatusEndsWith(String value) { this.ImportStatusEndsWith = value; return this; } public String getImportStatusContains() { return ImportStatusContains; } public IM_CSV_StagingQuery setImportStatusContains(String value) { this.ImportStatusContains = value; return this; } public String getImportStatusLike() { return ImportStatusLike; } public IM_CSV_StagingQuery setImportStatusLike(String value) { this.ImportStatusLike = value; return this; } public ArrayList getImportStatusBetween() { return ImportStatusBetween; } public IM_CSV_StagingQuery setImportStatusBetween(ArrayList value) { this.ImportStatusBetween = value; return this; } public ArrayList getImportStatusIn() { return ImportStatusIn; } public IM_CSV_StagingQuery setImportStatusIn(ArrayList value) { this.ImportStatusIn = value; return this; } public String getImportMessage() { return ImportMessage; } public IM_CSV_StagingQuery setImportMessage(String value) { this.ImportMessage = value; return this; } public String getImportMessageStartsWith() { return ImportMessageStartsWith; } public IM_CSV_StagingQuery setImportMessageStartsWith(String value) { this.ImportMessageStartsWith = value; return this; } public String getImportMessageEndsWith() { return ImportMessageEndsWith; } public IM_CSV_StagingQuery setImportMessageEndsWith(String value) { this.ImportMessageEndsWith = value; return this; } public String getImportMessageContains() { return ImportMessageContains; } public IM_CSV_StagingQuery setImportMessageContains(String value) { this.ImportMessageContains = value; return this; } public String getImportMessageLike() { return ImportMessageLike; } public IM_CSV_StagingQuery setImportMessageLike(String value) { this.ImportMessageLike = value; return this; } public ArrayList getImportMessageBetween() { return ImportMessageBetween; } public IM_CSV_StagingQuery setImportMessageBetween(ArrayList value) { this.ImportMessageBetween = value; return this; } public ArrayList getImportMessageIn() { return ImportMessageIn; } public IM_CSV_StagingQuery setImportMessageIn(ArrayList value) { this.ImportMessageIn = value; return this; } public String getColumn1() { return Column1; } public IM_CSV_StagingQuery setColumn1(String value) { this.Column1 = value; return this; } public String getColumn1StartsWith() { return Column1StartsWith; } public IM_CSV_StagingQuery setColumn1StartsWith(String value) { this.Column1StartsWith = value; return this; } public String getColumn1EndsWith() { return Column1EndsWith; } public IM_CSV_StagingQuery setColumn1EndsWith(String value) { this.Column1EndsWith = value; return this; } public String getColumn1Contains() { return Column1Contains; } public IM_CSV_StagingQuery setColumn1Contains(String value) { this.Column1Contains = value; return this; } public String getColumn1Like() { return Column1Like; } public IM_CSV_StagingQuery setColumn1Like(String value) { this.Column1Like = value; return this; } public ArrayList getColumn1Between() { return Column1Between; } public IM_CSV_StagingQuery setColumn1Between(ArrayList value) { this.Column1Between = value; return this; } public ArrayList getColumn1In() { return Column1In; } public IM_CSV_StagingQuery setColumn1In(ArrayList value) { this.Column1In = value; return this; } public String getColumn2() { return Column2; } public IM_CSV_StagingQuery setColumn2(String value) { this.Column2 = value; return this; } public String getColumn2StartsWith() { return Column2StartsWith; } public IM_CSV_StagingQuery setColumn2StartsWith(String value) { this.Column2StartsWith = value; return this; } public String getColumn2EndsWith() { return Column2EndsWith; } public IM_CSV_StagingQuery setColumn2EndsWith(String value) { this.Column2EndsWith = value; return this; } public String getColumn2Contains() { return Column2Contains; } public IM_CSV_StagingQuery setColumn2Contains(String value) { this.Column2Contains = value; return this; } public String getColumn2Like() { return Column2Like; } public IM_CSV_StagingQuery setColumn2Like(String value) { this.Column2Like = value; return this; } public ArrayList getColumn2Between() { return Column2Between; } public IM_CSV_StagingQuery setColumn2Between(ArrayList value) { this.Column2Between = value; return this; } public ArrayList getColumn2In() { return Column2In; } public IM_CSV_StagingQuery setColumn2In(ArrayList value) { this.Column2In = value; return this; } public String getColumn3() { return Column3; } public IM_CSV_StagingQuery setColumn3(String value) { this.Column3 = value; return this; } public String getColumn3StartsWith() { return Column3StartsWith; } public IM_CSV_StagingQuery setColumn3StartsWith(String value) { this.Column3StartsWith = value; return this; } public String getColumn3EndsWith() { return Column3EndsWith; } public IM_CSV_StagingQuery setColumn3EndsWith(String value) { this.Column3EndsWith = value; return this; } public String getColumn3Contains() { return Column3Contains; } public IM_CSV_StagingQuery setColumn3Contains(String value) { this.Column3Contains = value; return this; } public String getColumn3Like() { return Column3Like; } public IM_CSV_StagingQuery setColumn3Like(String value) { this.Column3Like = value; return this; } public ArrayList getColumn3Between() { return Column3Between; } public IM_CSV_StagingQuery setColumn3Between(ArrayList value) { this.Column3Between = value; return this; } public ArrayList getColumn3In() { return Column3In; } public IM_CSV_StagingQuery setColumn3In(ArrayList value) { this.Column3In = value; return this; } public String getColumn4() { return Column4; } public IM_CSV_StagingQuery setColumn4(String value) { this.Column4 = value; return this; } public String getColumn4StartsWith() { return Column4StartsWith; } public IM_CSV_StagingQuery setColumn4StartsWith(String value) { this.Column4StartsWith = value; return this; } public String getColumn4EndsWith() { return Column4EndsWith; } public IM_CSV_StagingQuery setColumn4EndsWith(String value) { this.Column4EndsWith = value; return this; } public String getColumn4Contains() { return Column4Contains; } public IM_CSV_StagingQuery setColumn4Contains(String value) { this.Column4Contains = value; return this; } public String getColumn4Like() { return Column4Like; } public IM_CSV_StagingQuery setColumn4Like(String value) { this.Column4Like = value; return this; } public ArrayList getColumn4Between() { return Column4Between; } public IM_CSV_StagingQuery setColumn4Between(ArrayList value) { this.Column4Between = value; return this; } public ArrayList getColumn4In() { return Column4In; } public IM_CSV_StagingQuery setColumn4In(ArrayList value) { this.Column4In = value; return this; } public String getColumn5() { return Column5; } public IM_CSV_StagingQuery setColumn5(String value) { this.Column5 = value; return this; } public String getColumn5StartsWith() { return Column5StartsWith; } public IM_CSV_StagingQuery setColumn5StartsWith(String value) { this.Column5StartsWith = value; return this; } public String getColumn5EndsWith() { return Column5EndsWith; } public IM_CSV_StagingQuery setColumn5EndsWith(String value) { this.Column5EndsWith = value; return this; } public String getColumn5Contains() { return Column5Contains; } public IM_CSV_StagingQuery setColumn5Contains(String value) { this.Column5Contains = value; return this; } public String getColumn5Like() { return Column5Like; } public IM_CSV_StagingQuery setColumn5Like(String value) { this.Column5Like = value; return this; } public ArrayList getColumn5Between() { return Column5Between; } public IM_CSV_StagingQuery setColumn5Between(ArrayList value) { this.Column5Between = value; return this; } public ArrayList getColumn5In() { return Column5In; } public IM_CSV_StagingQuery setColumn5In(ArrayList value) { this.Column5In = value; return this; } public String getColumn6() { return Column6; } public IM_CSV_StagingQuery setColumn6(String value) { this.Column6 = value; return this; } public String getColumn6StartsWith() { return Column6StartsWith; } public IM_CSV_StagingQuery setColumn6StartsWith(String value) { this.Column6StartsWith = value; return this; } public String getColumn6EndsWith() { return Column6EndsWith; } public IM_CSV_StagingQuery setColumn6EndsWith(String value) { this.Column6EndsWith = value; return this; } public String getColumn6Contains() { return Column6Contains; } public IM_CSV_StagingQuery setColumn6Contains(String value) { this.Column6Contains = value; return this; } public String getColumn6Like() { return Column6Like; } public IM_CSV_StagingQuery setColumn6Like(String value) { this.Column6Like = value; return this; } public ArrayList getColumn6Between() { return Column6Between; } public IM_CSV_StagingQuery setColumn6Between(ArrayList value) { this.Column6Between = value; return this; } public ArrayList getColumn6In() { return Column6In; } public IM_CSV_StagingQuery setColumn6In(ArrayList value) { this.Column6In = value; return this; } public String getColumn7() { return Column7; } public IM_CSV_StagingQuery setColumn7(String value) { this.Column7 = value; return this; } public String getColumn7StartsWith() { return Column7StartsWith; } public IM_CSV_StagingQuery setColumn7StartsWith(String value) { this.Column7StartsWith = value; return this; } public String getColumn7EndsWith() { return Column7EndsWith; } public IM_CSV_StagingQuery setColumn7EndsWith(String value) { this.Column7EndsWith = value; return this; } public String getColumn7Contains() { return Column7Contains; } public IM_CSV_StagingQuery setColumn7Contains(String value) { this.Column7Contains = value; return this; } public String getColumn7Like() { return Column7Like; } public IM_CSV_StagingQuery setColumn7Like(String value) { this.Column7Like = value; return this; } public ArrayList getColumn7Between() { return Column7Between; } public IM_CSV_StagingQuery setColumn7Between(ArrayList value) { this.Column7Between = value; return this; } public ArrayList getColumn7In() { return Column7In; } public IM_CSV_StagingQuery setColumn7In(ArrayList value) { this.Column7In = value; return this; } public String getColumn8() { return Column8; } public IM_CSV_StagingQuery setColumn8(String value) { this.Column8 = value; return this; } public String getColumn8StartsWith() { return Column8StartsWith; } public IM_CSV_StagingQuery setColumn8StartsWith(String value) { this.Column8StartsWith = value; return this; } public String getColumn8EndsWith() { return Column8EndsWith; } public IM_CSV_StagingQuery setColumn8EndsWith(String value) { this.Column8EndsWith = value; return this; } public String getColumn8Contains() { return Column8Contains; } public IM_CSV_StagingQuery setColumn8Contains(String value) { this.Column8Contains = value; return this; } public String getColumn8Like() { return Column8Like; } public IM_CSV_StagingQuery setColumn8Like(String value) { this.Column8Like = value; return this; } public ArrayList getColumn8Between() { return Column8Between; } public IM_CSV_StagingQuery setColumn8Between(ArrayList value) { this.Column8Between = value; return this; } public ArrayList getColumn8In() { return Column8In; } public IM_CSV_StagingQuery setColumn8In(ArrayList value) { this.Column8In = value; return this; } public String getColumn9() { return Column9; } public IM_CSV_StagingQuery setColumn9(String value) { this.Column9 = value; return this; } public String getColumn9StartsWith() { return Column9StartsWith; } public IM_CSV_StagingQuery setColumn9StartsWith(String value) { this.Column9StartsWith = value; return this; } public String getColumn9EndsWith() { return Column9EndsWith; } public IM_CSV_StagingQuery setColumn9EndsWith(String value) { this.Column9EndsWith = value; return this; } public String getColumn9Contains() { return Column9Contains; } public IM_CSV_StagingQuery setColumn9Contains(String value) { this.Column9Contains = value; return this; } public String getColumn9Like() { return Column9Like; } public IM_CSV_StagingQuery setColumn9Like(String value) { this.Column9Like = value; return this; } public ArrayList getColumn9Between() { return Column9Between; } public IM_CSV_StagingQuery setColumn9Between(ArrayList value) { this.Column9Between = value; return this; } public ArrayList getColumn9In() { return Column9In; } public IM_CSV_StagingQuery setColumn9In(ArrayList value) { this.Column9In = value; return this; } public String getColumn10() { return Column10; } public IM_CSV_StagingQuery setColumn10(String value) { this.Column10 = value; return this; } public String getColumn10StartsWith() { return Column10StartsWith; } public IM_CSV_StagingQuery setColumn10StartsWith(String value) { this.Column10StartsWith = value; return this; } public String getColumn10EndsWith() { return Column10EndsWith; } public IM_CSV_StagingQuery setColumn10EndsWith(String value) { this.Column10EndsWith = value; return this; } public String getColumn10Contains() { return Column10Contains; } public IM_CSV_StagingQuery setColumn10Contains(String value) { this.Column10Contains = value; return this; } public String getColumn10Like() { return Column10Like; } public IM_CSV_StagingQuery setColumn10Like(String value) { this.Column10Like = value; return this; } public ArrayList getColumn10Between() { return Column10Between; } public IM_CSV_StagingQuery setColumn10Between(ArrayList value) { this.Column10Between = value; return this; } public ArrayList getColumn10In() { return Column10In; } public IM_CSV_StagingQuery setColumn10In(ArrayList value) { this.Column10In = value; return this; } public String getColumn11() { return Column11; } public IM_CSV_StagingQuery setColumn11(String value) { this.Column11 = value; return this; } public String getColumn11StartsWith() { return Column11StartsWith; } public IM_CSV_StagingQuery setColumn11StartsWith(String value) { this.Column11StartsWith = value; return this; } public String getColumn11EndsWith() { return Column11EndsWith; } public IM_CSV_StagingQuery setColumn11EndsWith(String value) { this.Column11EndsWith = value; return this; } public String getColumn11Contains() { return Column11Contains; } public IM_CSV_StagingQuery setColumn11Contains(String value) { this.Column11Contains = value; return this; } public String getColumn11Like() { return Column11Like; } public IM_CSV_StagingQuery setColumn11Like(String value) { this.Column11Like = value; return this; } public ArrayList getColumn11Between() { return Column11Between; } public IM_CSV_StagingQuery setColumn11Between(ArrayList value) { this.Column11Between = value; return this; } public ArrayList getColumn11In() { return Column11In; } public IM_CSV_StagingQuery setColumn11In(ArrayList value) { this.Column11In = value; return this; } public String getColumn12() { return Column12; } public IM_CSV_StagingQuery setColumn12(String value) { this.Column12 = value; return this; } public String getColumn12StartsWith() { return Column12StartsWith; } public IM_CSV_StagingQuery setColumn12StartsWith(String value) { this.Column12StartsWith = value; return this; } public String getColumn12EndsWith() { return Column12EndsWith; } public IM_CSV_StagingQuery setColumn12EndsWith(String value) { this.Column12EndsWith = value; return this; } public String getColumn12Contains() { return Column12Contains; } public IM_CSV_StagingQuery setColumn12Contains(String value) { this.Column12Contains = value; return this; } public String getColumn12Like() { return Column12Like; } public IM_CSV_StagingQuery setColumn12Like(String value) { this.Column12Like = value; return this; } public ArrayList getColumn12Between() { return Column12Between; } public IM_CSV_StagingQuery setColumn12Between(ArrayList value) { this.Column12Between = value; return this; } public ArrayList getColumn12In() { return Column12In; } public IM_CSV_StagingQuery setColumn12In(ArrayList value) { this.Column12In = value; return this; } public String getColumn13() { return Column13; } public IM_CSV_StagingQuery setColumn13(String value) { this.Column13 = value; return this; } public String getColumn13StartsWith() { return Column13StartsWith; } public IM_CSV_StagingQuery setColumn13StartsWith(String value) { this.Column13StartsWith = value; return this; } public String getColumn13EndsWith() { return Column13EndsWith; } public IM_CSV_StagingQuery setColumn13EndsWith(String value) { this.Column13EndsWith = value; return this; } public String getColumn13Contains() { return Column13Contains; } public IM_CSV_StagingQuery setColumn13Contains(String value) { this.Column13Contains = value; return this; } public String getColumn13Like() { return Column13Like; } public IM_CSV_StagingQuery setColumn13Like(String value) { this.Column13Like = value; return this; } public ArrayList getColumn13Between() { return Column13Between; } public IM_CSV_StagingQuery setColumn13Between(ArrayList value) { this.Column13Between = value; return this; } public ArrayList getColumn13In() { return Column13In; } public IM_CSV_StagingQuery setColumn13In(ArrayList value) { this.Column13In = value; return this; } public String getColumn14() { return Column14; } public IM_CSV_StagingQuery setColumn14(String value) { this.Column14 = value; return this; } public String getColumn14StartsWith() { return Column14StartsWith; } public IM_CSV_StagingQuery setColumn14StartsWith(String value) { this.Column14StartsWith = value; return this; } public String getColumn14EndsWith() { return Column14EndsWith; } public IM_CSV_StagingQuery setColumn14EndsWith(String value) { this.Column14EndsWith = value; return this; } public String getColumn14Contains() { return Column14Contains; } public IM_CSV_StagingQuery setColumn14Contains(String value) { this.Column14Contains = value; return this; } public String getColumn14Like() { return Column14Like; } public IM_CSV_StagingQuery setColumn14Like(String value) { this.Column14Like = value; return this; } public ArrayList getColumn14Between() { return Column14Between; } public IM_CSV_StagingQuery setColumn14Between(ArrayList value) { this.Column14Between = value; return this; } public ArrayList getColumn14In() { return Column14In; } public IM_CSV_StagingQuery setColumn14In(ArrayList value) { this.Column14In = value; return this; } public String getColumn15() { return Column15; } public IM_CSV_StagingQuery setColumn15(String value) { this.Column15 = value; return this; } public String getColumn15StartsWith() { return Column15StartsWith; } public IM_CSV_StagingQuery setColumn15StartsWith(String value) { this.Column15StartsWith = value; return this; } public String getColumn15EndsWith() { return Column15EndsWith; } public IM_CSV_StagingQuery setColumn15EndsWith(String value) { this.Column15EndsWith = value; return this; } public String getColumn15Contains() { return Column15Contains; } public IM_CSV_StagingQuery setColumn15Contains(String value) { this.Column15Contains = value; return this; } public String getColumn15Like() { return Column15Like; } public IM_CSV_StagingQuery setColumn15Like(String value) { this.Column15Like = value; return this; } public ArrayList getColumn15Between() { return Column15Between; } public IM_CSV_StagingQuery setColumn15Between(ArrayList value) { this.Column15Between = value; return this; } public ArrayList getColumn15In() { return Column15In; } public IM_CSV_StagingQuery setColumn15In(ArrayList value) { this.Column15In = value; return this; } public String getColumn16() { return Column16; } public IM_CSV_StagingQuery setColumn16(String value) { this.Column16 = value; return this; } public String getColumn16StartsWith() { return Column16StartsWith; } public IM_CSV_StagingQuery setColumn16StartsWith(String value) { this.Column16StartsWith = value; return this; } public String getColumn16EndsWith() { return Column16EndsWith; } public IM_CSV_StagingQuery setColumn16EndsWith(String value) { this.Column16EndsWith = value; return this; } public String getColumn16Contains() { return Column16Contains; } public IM_CSV_StagingQuery setColumn16Contains(String value) { this.Column16Contains = value; return this; } public String getColumn16Like() { return Column16Like; } public IM_CSV_StagingQuery setColumn16Like(String value) { this.Column16Like = value; return this; } public ArrayList getColumn16Between() { return Column16Between; } public IM_CSV_StagingQuery setColumn16Between(ArrayList value) { this.Column16Between = value; return this; } public ArrayList getColumn16In() { return Column16In; } public IM_CSV_StagingQuery setColumn16In(ArrayList value) { this.Column16In = value; return this; } public String getColumn17() { return Column17; } public IM_CSV_StagingQuery setColumn17(String value) { this.Column17 = value; return this; } public String getColumn17StartsWith() { return Column17StartsWith; } public IM_CSV_StagingQuery setColumn17StartsWith(String value) { this.Column17StartsWith = value; return this; } public String getColumn17EndsWith() { return Column17EndsWith; } public IM_CSV_StagingQuery setColumn17EndsWith(String value) { this.Column17EndsWith = value; return this; } public String getColumn17Contains() { return Column17Contains; } public IM_CSV_StagingQuery setColumn17Contains(String value) { this.Column17Contains = value; return this; } public String getColumn17Like() { return Column17Like; } public IM_CSV_StagingQuery setColumn17Like(String value) { this.Column17Like = value; return this; } public ArrayList getColumn17Between() { return Column17Between; } public IM_CSV_StagingQuery setColumn17Between(ArrayList value) { this.Column17Between = value; return this; } public ArrayList getColumn17In() { return Column17In; } public IM_CSV_StagingQuery setColumn17In(ArrayList value) { this.Column17In = value; return this; } public String getColumn18() { return Column18; } public IM_CSV_StagingQuery setColumn18(String value) { this.Column18 = value; return this; } public String getColumn18StartsWith() { return Column18StartsWith; } public IM_CSV_StagingQuery setColumn18StartsWith(String value) { this.Column18StartsWith = value; return this; } public String getColumn18EndsWith() { return Column18EndsWith; } public IM_CSV_StagingQuery setColumn18EndsWith(String value) { this.Column18EndsWith = value; return this; } public String getColumn18Contains() { return Column18Contains; } public IM_CSV_StagingQuery setColumn18Contains(String value) { this.Column18Contains = value; return this; } public String getColumn18Like() { return Column18Like; } public IM_CSV_StagingQuery setColumn18Like(String value) { this.Column18Like = value; return this; } public ArrayList getColumn18Between() { return Column18Between; } public IM_CSV_StagingQuery setColumn18Between(ArrayList value) { this.Column18Between = value; return this; } public ArrayList getColumn18In() { return Column18In; } public IM_CSV_StagingQuery setColumn18In(ArrayList value) { this.Column18In = value; return this; } public String getColumn19() { return Column19; } public IM_CSV_StagingQuery setColumn19(String value) { this.Column19 = value; return this; } public String getColumn19StartsWith() { return Column19StartsWith; } public IM_CSV_StagingQuery setColumn19StartsWith(String value) { this.Column19StartsWith = value; return this; } public String getColumn19EndsWith() { return Column19EndsWith; } public IM_CSV_StagingQuery setColumn19EndsWith(String value) { this.Column19EndsWith = value; return this; } public String getColumn19Contains() { return Column19Contains; } public IM_CSV_StagingQuery setColumn19Contains(String value) { this.Column19Contains = value; return this; } public String getColumn19Like() { return Column19Like; } public IM_CSV_StagingQuery setColumn19Like(String value) { this.Column19Like = value; return this; } public ArrayList getColumn19Between() { return Column19Between; } public IM_CSV_StagingQuery setColumn19Between(ArrayList value) { this.Column19Between = value; return this; } public ArrayList getColumn19In() { return Column19In; } public IM_CSV_StagingQuery setColumn19In(ArrayList value) { this.Column19In = value; return this; } public String getColumn20() { return Column20; } public IM_CSV_StagingQuery setColumn20(String value) { this.Column20 = value; return this; } public String getColumn20StartsWith() { return Column20StartsWith; } public IM_CSV_StagingQuery setColumn20StartsWith(String value) { this.Column20StartsWith = value; return this; } public String getColumn20EndsWith() { return Column20EndsWith; } public IM_CSV_StagingQuery setColumn20EndsWith(String value) { this.Column20EndsWith = value; return this; } public String getColumn20Contains() { return Column20Contains; } public IM_CSV_StagingQuery setColumn20Contains(String value) { this.Column20Contains = value; return this; } public String getColumn20Like() { return Column20Like; } public IM_CSV_StagingQuery setColumn20Like(String value) { this.Column20Like = value; return this; } public ArrayList getColumn20Between() { return Column20Between; } public IM_CSV_StagingQuery setColumn20Between(ArrayList value) { this.Column20Between = value; return this; } public ArrayList getColumn20In() { return Column20In; } public IM_CSV_StagingQuery setColumn20In(ArrayList value) { this.Column20In = value; return this; } public String getColumn21() { return Column21; } public IM_CSV_StagingQuery setColumn21(String value) { this.Column21 = value; return this; } public String getColumn21StartsWith() { return Column21StartsWith; } public IM_CSV_StagingQuery setColumn21StartsWith(String value) { this.Column21StartsWith = value; return this; } public String getColumn21EndsWith() { return Column21EndsWith; } public IM_CSV_StagingQuery setColumn21EndsWith(String value) { this.Column21EndsWith = value; return this; } public String getColumn21Contains() { return Column21Contains; } public IM_CSV_StagingQuery setColumn21Contains(String value) { this.Column21Contains = value; return this; } public String getColumn21Like() { return Column21Like; } public IM_CSV_StagingQuery setColumn21Like(String value) { this.Column21Like = value; return this; } public ArrayList getColumn21Between() { return Column21Between; } public IM_CSV_StagingQuery setColumn21Between(ArrayList value) { this.Column21Between = value; return this; } public ArrayList getColumn21In() { return Column21In; } public IM_CSV_StagingQuery setColumn21In(ArrayList value) { this.Column21In = value; return this; } public String getColumn22() { return Column22; } public IM_CSV_StagingQuery setColumn22(String value) { this.Column22 = value; return this; } public String getColumn22StartsWith() { return Column22StartsWith; } public IM_CSV_StagingQuery setColumn22StartsWith(String value) { this.Column22StartsWith = value; return this; } public String getColumn22EndsWith() { return Column22EndsWith; } public IM_CSV_StagingQuery setColumn22EndsWith(String value) { this.Column22EndsWith = value; return this; } public String getColumn22Contains() { return Column22Contains; } public IM_CSV_StagingQuery setColumn22Contains(String value) { this.Column22Contains = value; return this; } public String getColumn22Like() { return Column22Like; } public IM_CSV_StagingQuery setColumn22Like(String value) { this.Column22Like = value; return this; } public ArrayList getColumn22Between() { return Column22Between; } public IM_CSV_StagingQuery setColumn22Between(ArrayList value) { this.Column22Between = value; return this; } public ArrayList getColumn22In() { return Column22In; } public IM_CSV_StagingQuery setColumn22In(ArrayList value) { this.Column22In = value; return this; } public String getColumn23() { return Column23; } public IM_CSV_StagingQuery setColumn23(String value) { this.Column23 = value; return this; } public String getColumn23StartsWith() { return Column23StartsWith; } public IM_CSV_StagingQuery setColumn23StartsWith(String value) { this.Column23StartsWith = value; return this; } public String getColumn23EndsWith() { return Column23EndsWith; } public IM_CSV_StagingQuery setColumn23EndsWith(String value) { this.Column23EndsWith = value; return this; } public String getColumn23Contains() { return Column23Contains; } public IM_CSV_StagingQuery setColumn23Contains(String value) { this.Column23Contains = value; return this; } public String getColumn23Like() { return Column23Like; } public IM_CSV_StagingQuery setColumn23Like(String value) { this.Column23Like = value; return this; } public ArrayList getColumn23Between() { return Column23Between; } public IM_CSV_StagingQuery setColumn23Between(ArrayList value) { this.Column23Between = value; return this; } public ArrayList getColumn23In() { return Column23In; } public IM_CSV_StagingQuery setColumn23In(ArrayList value) { this.Column23In = value; return this; } public String getColumn24() { return Column24; } public IM_CSV_StagingQuery setColumn24(String value) { this.Column24 = value; return this; } public String getColumn24StartsWith() { return Column24StartsWith; } public IM_CSV_StagingQuery setColumn24StartsWith(String value) { this.Column24StartsWith = value; return this; } public String getColumn24EndsWith() { return Column24EndsWith; } public IM_CSV_StagingQuery setColumn24EndsWith(String value) { this.Column24EndsWith = value; return this; } public String getColumn24Contains() { return Column24Contains; } public IM_CSV_StagingQuery setColumn24Contains(String value) { this.Column24Contains = value; return this; } public String getColumn24Like() { return Column24Like; } public IM_CSV_StagingQuery setColumn24Like(String value) { this.Column24Like = value; return this; } public ArrayList getColumn24Between() { return Column24Between; } public IM_CSV_StagingQuery setColumn24Between(ArrayList value) { this.Column24Between = value; return this; } public ArrayList getColumn24In() { return Column24In; } public IM_CSV_StagingQuery setColumn24In(ArrayList value) { this.Column24In = value; return this; } public String getColumn25() { return Column25; } public IM_CSV_StagingQuery setColumn25(String value) { this.Column25 = value; return this; } public String getColumn25StartsWith() { return Column25StartsWith; } public IM_CSV_StagingQuery setColumn25StartsWith(String value) { this.Column25StartsWith = value; return this; } public String getColumn25EndsWith() { return Column25EndsWith; } public IM_CSV_StagingQuery setColumn25EndsWith(String value) { this.Column25EndsWith = value; return this; } public String getColumn25Contains() { return Column25Contains; } public IM_CSV_StagingQuery setColumn25Contains(String value) { this.Column25Contains = value; return this; } public String getColumn25Like() { return Column25Like; } public IM_CSV_StagingQuery setColumn25Like(String value) { this.Column25Like = value; return this; } public ArrayList getColumn25Between() { return Column25Between; } public IM_CSV_StagingQuery setColumn25Between(ArrayList value) { this.Column25Between = value; return this; } public ArrayList getColumn25In() { return Column25In; } public IM_CSV_StagingQuery setColumn25In(ArrayList value) { this.Column25In = value; return this; } public String getColumn26() { return Column26; } public IM_CSV_StagingQuery setColumn26(String value) { this.Column26 = value; return this; } public String getColumn26StartsWith() { return Column26StartsWith; } public IM_CSV_StagingQuery setColumn26StartsWith(String value) { this.Column26StartsWith = value; return this; } public String getColumn26EndsWith() { return Column26EndsWith; } public IM_CSV_StagingQuery setColumn26EndsWith(String value) { this.Column26EndsWith = value; return this; } public String getColumn26Contains() { return Column26Contains; } public IM_CSV_StagingQuery setColumn26Contains(String value) { this.Column26Contains = value; return this; } public String getColumn26Like() { return Column26Like; } public IM_CSV_StagingQuery setColumn26Like(String value) { this.Column26Like = value; return this; } public ArrayList getColumn26Between() { return Column26Between; } public IM_CSV_StagingQuery setColumn26Between(ArrayList value) { this.Column26Between = value; return this; } public ArrayList getColumn26In() { return Column26In; } public IM_CSV_StagingQuery setColumn26In(ArrayList value) { this.Column26In = value; return this; } public String getColumn27() { return Column27; } public IM_CSV_StagingQuery setColumn27(String value) { this.Column27 = value; return this; } public String getColumn27StartsWith() { return Column27StartsWith; } public IM_CSV_StagingQuery setColumn27StartsWith(String value) { this.Column27StartsWith = value; return this; } public String getColumn27EndsWith() { return Column27EndsWith; } public IM_CSV_StagingQuery setColumn27EndsWith(String value) { this.Column27EndsWith = value; return this; } public String getColumn27Contains() { return Column27Contains; } public IM_CSV_StagingQuery setColumn27Contains(String value) { this.Column27Contains = value; return this; } public String getColumn27Like() { return Column27Like; } public IM_CSV_StagingQuery setColumn27Like(String value) { this.Column27Like = value; return this; } public ArrayList getColumn27Between() { return Column27Between; } public IM_CSV_StagingQuery setColumn27Between(ArrayList value) { this.Column27Between = value; return this; } public ArrayList getColumn27In() { return Column27In; } public IM_CSV_StagingQuery setColumn27In(ArrayList value) { this.Column27In = value; return this; } public String getColumn28() { return Column28; } public IM_CSV_StagingQuery setColumn28(String value) { this.Column28 = value; return this; } public String getColumn28StartsWith() { return Column28StartsWith; } public IM_CSV_StagingQuery setColumn28StartsWith(String value) { this.Column28StartsWith = value; return this; } public String getColumn28EndsWith() { return Column28EndsWith; } public IM_CSV_StagingQuery setColumn28EndsWith(String value) { this.Column28EndsWith = value; return this; } public String getColumn28Contains() { return Column28Contains; } public IM_CSV_StagingQuery setColumn28Contains(String value) { this.Column28Contains = value; return this; } public String getColumn28Like() { return Column28Like; } public IM_CSV_StagingQuery setColumn28Like(String value) { this.Column28Like = value; return this; } public ArrayList getColumn28Between() { return Column28Between; } public IM_CSV_StagingQuery setColumn28Between(ArrayList value) { this.Column28Between = value; return this; } public ArrayList getColumn28In() { return Column28In; } public IM_CSV_StagingQuery setColumn28In(ArrayList value) { this.Column28In = value; return this; } public String getColumn29() { return Column29; } public IM_CSV_StagingQuery setColumn29(String value) { this.Column29 = value; return this; } public String getColumn29StartsWith() { return Column29StartsWith; } public IM_CSV_StagingQuery setColumn29StartsWith(String value) { this.Column29StartsWith = value; return this; } public String getColumn29EndsWith() { return Column29EndsWith; } public IM_CSV_StagingQuery setColumn29EndsWith(String value) { this.Column29EndsWith = value; return this; } public String getColumn29Contains() { return Column29Contains; } public IM_CSV_StagingQuery setColumn29Contains(String value) { this.Column29Contains = value; return this; } public String getColumn29Like() { return Column29Like; } public IM_CSV_StagingQuery setColumn29Like(String value) { this.Column29Like = value; return this; } public ArrayList getColumn29Between() { return Column29Between; } public IM_CSV_StagingQuery setColumn29Between(ArrayList value) { this.Column29Between = value; return this; } public ArrayList getColumn29In() { return Column29In; } public IM_CSV_StagingQuery setColumn29In(ArrayList value) { this.Column29In = value; return this; } public String getColumn30() { return Column30; } public IM_CSV_StagingQuery setColumn30(String value) { this.Column30 = value; return this; } public String getColumn30StartsWith() { return Column30StartsWith; } public IM_CSV_StagingQuery setColumn30StartsWith(String value) { this.Column30StartsWith = value; return this; } public String getColumn30EndsWith() { return Column30EndsWith; } public IM_CSV_StagingQuery setColumn30EndsWith(String value) { this.Column30EndsWith = value; return this; } public String getColumn30Contains() { return Column30Contains; } public IM_CSV_StagingQuery setColumn30Contains(String value) { this.Column30Contains = value; return this; } public String getColumn30Like() { return Column30Like; } public IM_CSV_StagingQuery setColumn30Like(String value) { this.Column30Like = value; return this; } public ArrayList getColumn30Between() { return Column30Between; } public IM_CSV_StagingQuery setColumn30Between(ArrayList value) { this.Column30Between = value; return this; } public ArrayList getColumn30In() { return Column30In; } public IM_CSV_StagingQuery setColumn30In(ArrayList value) { this.Column30In = value; return this; } public String getColumn31() { return Column31; } public IM_CSV_StagingQuery setColumn31(String value) { this.Column31 = value; return this; } public String getColumn31StartsWith() { return Column31StartsWith; } public IM_CSV_StagingQuery setColumn31StartsWith(String value) { this.Column31StartsWith = value; return this; } public String getColumn31EndsWith() { return Column31EndsWith; } public IM_CSV_StagingQuery setColumn31EndsWith(String value) { this.Column31EndsWith = value; return this; } public String getColumn31Contains() { return Column31Contains; } public IM_CSV_StagingQuery setColumn31Contains(String value) { this.Column31Contains = value; return this; } public String getColumn31Like() { return Column31Like; } public IM_CSV_StagingQuery setColumn31Like(String value) { this.Column31Like = value; return this; } public ArrayList getColumn31Between() { return Column31Between; } public IM_CSV_StagingQuery setColumn31Between(ArrayList value) { this.Column31Between = value; return this; } public ArrayList getColumn31In() { return Column31In; } public IM_CSV_StagingQuery setColumn31In(ArrayList value) { this.Column31In = value; return this; } public String getColumn32() { return Column32; } public IM_CSV_StagingQuery setColumn32(String value) { this.Column32 = value; return this; } public String getColumn32StartsWith() { return Column32StartsWith; } public IM_CSV_StagingQuery setColumn32StartsWith(String value) { this.Column32StartsWith = value; return this; } public String getColumn32EndsWith() { return Column32EndsWith; } public IM_CSV_StagingQuery setColumn32EndsWith(String value) { this.Column32EndsWith = value; return this; } public String getColumn32Contains() { return Column32Contains; } public IM_CSV_StagingQuery setColumn32Contains(String value) { this.Column32Contains = value; return this; } public String getColumn32Like() { return Column32Like; } public IM_CSV_StagingQuery setColumn32Like(String value) { this.Column32Like = value; return this; } public ArrayList getColumn32Between() { return Column32Between; } public IM_CSV_StagingQuery setColumn32Between(ArrayList value) { this.Column32Between = value; return this; } public ArrayList getColumn32In() { return Column32In; } public IM_CSV_StagingQuery setColumn32In(ArrayList value) { this.Column32In = value; return this; } public String getColumn33() { return Column33; } public IM_CSV_StagingQuery setColumn33(String value) { this.Column33 = value; return this; } public String getColumn33StartsWith() { return Column33StartsWith; } public IM_CSV_StagingQuery setColumn33StartsWith(String value) { this.Column33StartsWith = value; return this; } public String getColumn33EndsWith() { return Column33EndsWith; } public IM_CSV_StagingQuery setColumn33EndsWith(String value) { this.Column33EndsWith = value; return this; } public String getColumn33Contains() { return Column33Contains; } public IM_CSV_StagingQuery setColumn33Contains(String value) { this.Column33Contains = value; return this; } public String getColumn33Like() { return Column33Like; } public IM_CSV_StagingQuery setColumn33Like(String value) { this.Column33Like = value; return this; } public ArrayList getColumn33Between() { return Column33Between; } public IM_CSV_StagingQuery setColumn33Between(ArrayList value) { this.Column33Between = value; return this; } public ArrayList getColumn33In() { return Column33In; } public IM_CSV_StagingQuery setColumn33In(ArrayList value) { this.Column33In = value; return this; } public String getColumn34() { return Column34; } public IM_CSV_StagingQuery setColumn34(String value) { this.Column34 = value; return this; } public String getColumn34StartsWith() { return Column34StartsWith; } public IM_CSV_StagingQuery setColumn34StartsWith(String value) { this.Column34StartsWith = value; return this; } public String getColumn34EndsWith() { return Column34EndsWith; } public IM_CSV_StagingQuery setColumn34EndsWith(String value) { this.Column34EndsWith = value; return this; } public String getColumn34Contains() { return Column34Contains; } public IM_CSV_StagingQuery setColumn34Contains(String value) { this.Column34Contains = value; return this; } public String getColumn34Like() { return Column34Like; } public IM_CSV_StagingQuery setColumn34Like(String value) { this.Column34Like = value; return this; } public ArrayList getColumn34Between() { return Column34Between; } public IM_CSV_StagingQuery setColumn34Between(ArrayList value) { this.Column34Between = value; return this; } public ArrayList getColumn34In() { return Column34In; } public IM_CSV_StagingQuery setColumn34In(ArrayList value) { this.Column34In = value; return this; } public String getColumn35() { return Column35; } public IM_CSV_StagingQuery setColumn35(String value) { this.Column35 = value; return this; } public String getColumn35StartsWith() { return Column35StartsWith; } public IM_CSV_StagingQuery setColumn35StartsWith(String value) { this.Column35StartsWith = value; return this; } public String getColumn35EndsWith() { return Column35EndsWith; } public IM_CSV_StagingQuery setColumn35EndsWith(String value) { this.Column35EndsWith = value; return this; } public String getColumn35Contains() { return Column35Contains; } public IM_CSV_StagingQuery setColumn35Contains(String value) { this.Column35Contains = value; return this; } public String getColumn35Like() { return Column35Like; } public IM_CSV_StagingQuery setColumn35Like(String value) { this.Column35Like = value; return this; } public ArrayList getColumn35Between() { return Column35Between; } public IM_CSV_StagingQuery setColumn35Between(ArrayList value) { this.Column35Between = value; return this; } public ArrayList getColumn35In() { return Column35In; } public IM_CSV_StagingQuery setColumn35In(ArrayList value) { this.Column35In = value; return this; } public String getColumn36() { return Column36; } public IM_CSV_StagingQuery setColumn36(String value) { this.Column36 = value; return this; } public String getColumn36StartsWith() { return Column36StartsWith; } public IM_CSV_StagingQuery setColumn36StartsWith(String value) { this.Column36StartsWith = value; return this; } public String getColumn36EndsWith() { return Column36EndsWith; } public IM_CSV_StagingQuery setColumn36EndsWith(String value) { this.Column36EndsWith = value; return this; } public String getColumn36Contains() { return Column36Contains; } public IM_CSV_StagingQuery setColumn36Contains(String value) { this.Column36Contains = value; return this; } public String getColumn36Like() { return Column36Like; } public IM_CSV_StagingQuery setColumn36Like(String value) { this.Column36Like = value; return this; } public ArrayList getColumn36Between() { return Column36Between; } public IM_CSV_StagingQuery setColumn36Between(ArrayList value) { this.Column36Between = value; return this; } public ArrayList getColumn36In() { return Column36In; } public IM_CSV_StagingQuery setColumn36In(ArrayList value) { this.Column36In = value; return this; } public String getColumn37() { return Column37; } public IM_CSV_StagingQuery setColumn37(String value) { this.Column37 = value; return this; } public String getColumn37StartsWith() { return Column37StartsWith; } public IM_CSV_StagingQuery setColumn37StartsWith(String value) { this.Column37StartsWith = value; return this; } public String getColumn37EndsWith() { return Column37EndsWith; } public IM_CSV_StagingQuery setColumn37EndsWith(String value) { this.Column37EndsWith = value; return this; } public String getColumn37Contains() { return Column37Contains; } public IM_CSV_StagingQuery setColumn37Contains(String value) { this.Column37Contains = value; return this; } public String getColumn37Like() { return Column37Like; } public IM_CSV_StagingQuery setColumn37Like(String value) { this.Column37Like = value; return this; } public ArrayList getColumn37Between() { return Column37Between; } public IM_CSV_StagingQuery setColumn37Between(ArrayList value) { this.Column37Between = value; return this; } public ArrayList getColumn37In() { return Column37In; } public IM_CSV_StagingQuery setColumn37In(ArrayList value) { this.Column37In = value; return this; } public String getColumn38() { return Column38; } public IM_CSV_StagingQuery setColumn38(String value) { this.Column38 = value; return this; } public String getColumn38StartsWith() { return Column38StartsWith; } public IM_CSV_StagingQuery setColumn38StartsWith(String value) { this.Column38StartsWith = value; return this; } public String getColumn38EndsWith() { return Column38EndsWith; } public IM_CSV_StagingQuery setColumn38EndsWith(String value) { this.Column38EndsWith = value; return this; } public String getColumn38Contains() { return Column38Contains; } public IM_CSV_StagingQuery setColumn38Contains(String value) { this.Column38Contains = value; return this; } public String getColumn38Like() { return Column38Like; } public IM_CSV_StagingQuery setColumn38Like(String value) { this.Column38Like = value; return this; } public ArrayList getColumn38Between() { return Column38Between; } public IM_CSV_StagingQuery setColumn38Between(ArrayList value) { this.Column38Between = value; return this; } public ArrayList getColumn38In() { return Column38In; } public IM_CSV_StagingQuery setColumn38In(ArrayList value) { this.Column38In = value; return this; } public String getColumn39() { return Column39; } public IM_CSV_StagingQuery setColumn39(String value) { this.Column39 = value; return this; } public String getColumn39StartsWith() { return Column39StartsWith; } public IM_CSV_StagingQuery setColumn39StartsWith(String value) { this.Column39StartsWith = value; return this; } public String getColumn39EndsWith() { return Column39EndsWith; } public IM_CSV_StagingQuery setColumn39EndsWith(String value) { this.Column39EndsWith = value; return this; } public String getColumn39Contains() { return Column39Contains; } public IM_CSV_StagingQuery setColumn39Contains(String value) { this.Column39Contains = value; return this; } public String getColumn39Like() { return Column39Like; } public IM_CSV_StagingQuery setColumn39Like(String value) { this.Column39Like = value; return this; } public ArrayList getColumn39Between() { return Column39Between; } public IM_CSV_StagingQuery setColumn39Between(ArrayList value) { this.Column39Between = value; return this; } public ArrayList getColumn39In() { return Column39In; } public IM_CSV_StagingQuery setColumn39In(ArrayList value) { this.Column39In = value; return this; } public String getColumn40() { return Column40; } public IM_CSV_StagingQuery setColumn40(String value) { this.Column40 = value; return this; } public String getColumn40StartsWith() { return Column40StartsWith; } public IM_CSV_StagingQuery setColumn40StartsWith(String value) { this.Column40StartsWith = value; return this; } public String getColumn40EndsWith() { return Column40EndsWith; } public IM_CSV_StagingQuery setColumn40EndsWith(String value) { this.Column40EndsWith = value; return this; } public String getColumn40Contains() { return Column40Contains; } public IM_CSV_StagingQuery setColumn40Contains(String value) { this.Column40Contains = value; return this; } public String getColumn40Like() { return Column40Like; } public IM_CSV_StagingQuery setColumn40Like(String value) { this.Column40Like = value; return this; } public ArrayList getColumn40Between() { return Column40Between; } public IM_CSV_StagingQuery setColumn40Between(ArrayList value) { this.Column40Between = value; return this; } public ArrayList getColumn40In() { return Column40In; } public IM_CSV_StagingQuery setColumn40In(ArrayList value) { this.Column40In = value; return this; } public String getColumn41() { return Column41; } public IM_CSV_StagingQuery setColumn41(String value) { this.Column41 = value; return this; } public String getColumn41StartsWith() { return Column41StartsWith; } public IM_CSV_StagingQuery setColumn41StartsWith(String value) { this.Column41StartsWith = value; return this; } public String getColumn41EndsWith() { return Column41EndsWith; } public IM_CSV_StagingQuery setColumn41EndsWith(String value) { this.Column41EndsWith = value; return this; } public String getColumn41Contains() { return Column41Contains; } public IM_CSV_StagingQuery setColumn41Contains(String value) { this.Column41Contains = value; return this; } public String getColumn41Like() { return Column41Like; } public IM_CSV_StagingQuery setColumn41Like(String value) { this.Column41Like = value; return this; } public ArrayList getColumn41Between() { return Column41Between; } public IM_CSV_StagingQuery setColumn41Between(ArrayList value) { this.Column41Between = value; return this; } public ArrayList getColumn41In() { return Column41In; } public IM_CSV_StagingQuery setColumn41In(ArrayList value) { this.Column41In = value; return this; } public String getColumn42() { return Column42; } public IM_CSV_StagingQuery setColumn42(String value) { this.Column42 = value; return this; } public String getColumn42StartsWith() { return Column42StartsWith; } public IM_CSV_StagingQuery setColumn42StartsWith(String value) { this.Column42StartsWith = value; return this; } public String getColumn42EndsWith() { return Column42EndsWith; } public IM_CSV_StagingQuery setColumn42EndsWith(String value) { this.Column42EndsWith = value; return this; } public String getColumn42Contains() { return Column42Contains; } public IM_CSV_StagingQuery setColumn42Contains(String value) { this.Column42Contains = value; return this; } public String getColumn42Like() { return Column42Like; } public IM_CSV_StagingQuery setColumn42Like(String value) { this.Column42Like = value; return this; } public ArrayList getColumn42Between() { return Column42Between; } public IM_CSV_StagingQuery setColumn42Between(ArrayList value) { this.Column42Between = value; return this; } public ArrayList getColumn42In() { return Column42In; } public IM_CSV_StagingQuery setColumn42In(ArrayList value) { this.Column42In = value; return this; } public String getColumn43() { return Column43; } public IM_CSV_StagingQuery setColumn43(String value) { this.Column43 = value; return this; } public String getColumn43StartsWith() { return Column43StartsWith; } public IM_CSV_StagingQuery setColumn43StartsWith(String value) { this.Column43StartsWith = value; return this; } public String getColumn43EndsWith() { return Column43EndsWith; } public IM_CSV_StagingQuery setColumn43EndsWith(String value) { this.Column43EndsWith = value; return this; } public String getColumn43Contains() { return Column43Contains; } public IM_CSV_StagingQuery setColumn43Contains(String value) { this.Column43Contains = value; return this; } public String getColumn43Like() { return Column43Like; } public IM_CSV_StagingQuery setColumn43Like(String value) { this.Column43Like = value; return this; } public ArrayList getColumn43Between() { return Column43Between; } public IM_CSV_StagingQuery setColumn43Between(ArrayList value) { this.Column43Between = value; return this; } public ArrayList getColumn43In() { return Column43In; } public IM_CSV_StagingQuery setColumn43In(ArrayList value) { this.Column43In = value; return this; } public String getColumn44() { return Column44; } public IM_CSV_StagingQuery setColumn44(String value) { this.Column44 = value; return this; } public String getColumn44StartsWith() { return Column44StartsWith; } public IM_CSV_StagingQuery setColumn44StartsWith(String value) { this.Column44StartsWith = value; return this; } public String getColumn44EndsWith() { return Column44EndsWith; } public IM_CSV_StagingQuery setColumn44EndsWith(String value) { this.Column44EndsWith = value; return this; } public String getColumn44Contains() { return Column44Contains; } public IM_CSV_StagingQuery setColumn44Contains(String value) { this.Column44Contains = value; return this; } public String getColumn44Like() { return Column44Like; } public IM_CSV_StagingQuery setColumn44Like(String value) { this.Column44Like = value; return this; } public ArrayList getColumn44Between() { return Column44Between; } public IM_CSV_StagingQuery setColumn44Between(ArrayList value) { this.Column44Between = value; return this; } public ArrayList getColumn44In() { return Column44In; } public IM_CSV_StagingQuery setColumn44In(ArrayList value) { this.Column44In = value; return this; } public String getColumn45() { return Column45; } public IM_CSV_StagingQuery setColumn45(String value) { this.Column45 = value; return this; } public String getColumn45StartsWith() { return Column45StartsWith; } public IM_CSV_StagingQuery setColumn45StartsWith(String value) { this.Column45StartsWith = value; return this; } public String getColumn45EndsWith() { return Column45EndsWith; } public IM_CSV_StagingQuery setColumn45EndsWith(String value) { this.Column45EndsWith = value; return this; } public String getColumn45Contains() { return Column45Contains; } public IM_CSV_StagingQuery setColumn45Contains(String value) { this.Column45Contains = value; return this; } public String getColumn45Like() { return Column45Like; } public IM_CSV_StagingQuery setColumn45Like(String value) { this.Column45Like = value; return this; } public ArrayList getColumn45Between() { return Column45Between; } public IM_CSV_StagingQuery setColumn45Between(ArrayList value) { this.Column45Between = value; return this; } public ArrayList getColumn45In() { return Column45In; } public IM_CSV_StagingQuery setColumn45In(ArrayList value) { this.Column45In = value; return this; } public String getColumn46() { return Column46; } public IM_CSV_StagingQuery setColumn46(String value) { this.Column46 = value; return this; } public String getColumn46StartsWith() { return Column46StartsWith; } public IM_CSV_StagingQuery setColumn46StartsWith(String value) { this.Column46StartsWith = value; return this; } public String getColumn46EndsWith() { return Column46EndsWith; } public IM_CSV_StagingQuery setColumn46EndsWith(String value) { this.Column46EndsWith = value; return this; } public String getColumn46Contains() { return Column46Contains; } public IM_CSV_StagingQuery setColumn46Contains(String value) { this.Column46Contains = value; return this; } public String getColumn46Like() { return Column46Like; } public IM_CSV_StagingQuery setColumn46Like(String value) { this.Column46Like = value; return this; } public ArrayList getColumn46Between() { return Column46Between; } public IM_CSV_StagingQuery setColumn46Between(ArrayList value) { this.Column46Between = value; return this; } public ArrayList getColumn46In() { return Column46In; } public IM_CSV_StagingQuery setColumn46In(ArrayList value) { this.Column46In = value; return this; } public String getColumn47() { return Column47; } public IM_CSV_StagingQuery setColumn47(String value) { this.Column47 = value; return this; } public String getColumn47StartsWith() { return Column47StartsWith; } public IM_CSV_StagingQuery setColumn47StartsWith(String value) { this.Column47StartsWith = value; return this; } public String getColumn47EndsWith() { return Column47EndsWith; } public IM_CSV_StagingQuery setColumn47EndsWith(String value) { this.Column47EndsWith = value; return this; } public String getColumn47Contains() { return Column47Contains; } public IM_CSV_StagingQuery setColumn47Contains(String value) { this.Column47Contains = value; return this; } public String getColumn47Like() { return Column47Like; } public IM_CSV_StagingQuery setColumn47Like(String value) { this.Column47Like = value; return this; } public ArrayList getColumn47Between() { return Column47Between; } public IM_CSV_StagingQuery setColumn47Between(ArrayList value) { this.Column47Between = value; return this; } public ArrayList getColumn47In() { return Column47In; } public IM_CSV_StagingQuery setColumn47In(ArrayList value) { this.Column47In = value; return this; } public String getColumn48() { return Column48; } public IM_CSV_StagingQuery setColumn48(String value) { this.Column48 = value; return this; } public String getColumn48StartsWith() { return Column48StartsWith; } public IM_CSV_StagingQuery setColumn48StartsWith(String value) { this.Column48StartsWith = value; return this; } public String getColumn48EndsWith() { return Column48EndsWith; } public IM_CSV_StagingQuery setColumn48EndsWith(String value) { this.Column48EndsWith = value; return this; } public String getColumn48Contains() { return Column48Contains; } public IM_CSV_StagingQuery setColumn48Contains(String value) { this.Column48Contains = value; return this; } public String getColumn48Like() { return Column48Like; } public IM_CSV_StagingQuery setColumn48Like(String value) { this.Column48Like = value; return this; } public ArrayList getColumn48Between() { return Column48Between; } public IM_CSV_StagingQuery setColumn48Between(ArrayList value) { this.Column48Between = value; return this; } public ArrayList getColumn48In() { return Column48In; } public IM_CSV_StagingQuery setColumn48In(ArrayList value) { this.Column48In = value; return this; } public String getColumn49() { return Column49; } public IM_CSV_StagingQuery setColumn49(String value) { this.Column49 = value; return this; } public String getColumn49StartsWith() { return Column49StartsWith; } public IM_CSV_StagingQuery setColumn49StartsWith(String value) { this.Column49StartsWith = value; return this; } public String getColumn49EndsWith() { return Column49EndsWith; } public IM_CSV_StagingQuery setColumn49EndsWith(String value) { this.Column49EndsWith = value; return this; } public String getColumn49Contains() { return Column49Contains; } public IM_CSV_StagingQuery setColumn49Contains(String value) { this.Column49Contains = value; return this; } public String getColumn49Like() { return Column49Like; } public IM_CSV_StagingQuery setColumn49Like(String value) { this.Column49Like = value; return this; } public ArrayList getColumn49Between() { return Column49Between; } public IM_CSV_StagingQuery setColumn49Between(ArrayList value) { this.Column49Between = value; return this; } public ArrayList getColumn49In() { return Column49In; } public IM_CSV_StagingQuery setColumn49In(ArrayList value) { this.Column49In = value; return this; } public String getColumn50() { return Column50; } public IM_CSV_StagingQuery setColumn50(String value) { this.Column50 = value; return this; } public String getColumn50StartsWith() { return Column50StartsWith; } public IM_CSV_StagingQuery setColumn50StartsWith(String value) { this.Column50StartsWith = value; return this; } public String getColumn50EndsWith() { return Column50EndsWith; } public IM_CSV_StagingQuery setColumn50EndsWith(String value) { this.Column50EndsWith = value; return this; } public String getColumn50Contains() { return Column50Contains; } public IM_CSV_StagingQuery setColumn50Contains(String value) { this.Column50Contains = value; return this; } public String getColumn50Like() { return Column50Like; } public IM_CSV_StagingQuery setColumn50Like(String value) { this.Column50Like = value; return this; } public ArrayList getColumn50Between() { return Column50Between; } public IM_CSV_StagingQuery setColumn50Between(ArrayList value) { this.Column50Between = value; return this; } public ArrayList getColumn50In() { return Column50In; } public IM_CSV_StagingQuery setColumn50In(ArrayList value) { this.Column50In = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class IM_ImportQueueQuery extends QueryDb implements IReturn> { public String ImportQueueID = null; public String ImportQueueIDStartsWith = null; public String ImportQueueIDEndsWith = null; public String ImportQueueIDContains = null; public String ImportQueueIDLike = null; public ArrayList ImportQueueIDBetween = null; public ArrayList ImportQueueIDIn = null; public String OriginalXML = null; public String OriginalXMLStartsWith = null; public String OriginalXMLEndsWith = null; public String OriginalXMLContains = null; public String OriginalXMLLike = null; public ArrayList OriginalXMLBetween = null; public ArrayList OriginalXMLIn = null; public String TransformedXML = null; public String TransformedXMLStartsWith = null; public String TransformedXMLEndsWith = null; public String TransformedXMLContains = null; public String TransformedXMLLike = null; public ArrayList TransformedXMLBetween = null; public ArrayList TransformedXMLIn = null; public Short Status = null; public Short StatusGreaterThanOrEqualTo = null; public Short StatusGreaterThan = null; public Short StatusLessThan = null; public Short StatusLessThanOrEqualTo = null; public Short StatusNotEqualTo = null; public ArrayList StatusBetween = null; public ArrayList StatusIn = null; public Date AddedToQueueDateTime = null; public Date AddedToQueueDateTimeGreaterThanOrEqualTo = null; public Date AddedToQueueDateTimeGreaterThan = null; public Date AddedToQueueDateTimeLessThan = null; public Date AddedToQueueDateTimeLessThanOrEqualTo = null; public Date AddedToQueueDateTimeNotEqualTo = null; public ArrayList AddedToQueueDateTimeBetween = null; public ArrayList AddedToQueueDateTimeIn = null; public String AddedToQueueByStaffID = null; public String AddedToQueueByStaffIDStartsWith = null; public String AddedToQueueByStaffIDEndsWith = null; public String AddedToQueueByStaffIDContains = null; public String AddedToQueueByStaffIDLike = null; public ArrayList AddedToQueueByStaffIDBetween = null; public ArrayList AddedToQueueByStaffIDIn = null; public Date LastSavedDateTime = null; public Date LastSavedDateTimeGreaterThanOrEqualTo = null; public Date LastSavedDateTimeGreaterThan = null; public Date LastSavedDateTimeLessThan = null; public Date LastSavedDateTimeLessThanOrEqualTo = null; public Date LastSavedDateTimeNotEqualTo = null; public ArrayList LastSavedDateTimeBetween = null; public ArrayList LastSavedDateTimeIn = null; public String LastSavedByStaffID = null; public String LastSavedByStaffIDStartsWith = null; public String LastSavedByStaffIDEndsWith = null; public String LastSavedByStaffIDContains = null; public String LastSavedByStaffIDLike = null; public ArrayList LastSavedByStaffIDBetween = null; public ArrayList LastSavedByStaffIDIn = null; public String ImportErrorMessage = null; public String ImportErrorMessageStartsWith = null; public String ImportErrorMessageEndsWith = null; public String ImportErrorMessageContains = null; public String ImportErrorMessageLike = null; public ArrayList ImportErrorMessageBetween = null; public ArrayList ImportErrorMessageIn = null; public String ImportBatchID = null; public String ImportBatchIDStartsWith = null; public String ImportBatchIDEndsWith = null; public String ImportBatchIDContains = null; public String ImportBatchIDLike = null; public ArrayList ImportBatchIDBetween = null; public ArrayList ImportBatchIDIn = null; public String BatchNo = null; public String BatchNoStartsWith = null; public String BatchNoEndsWith = null; public String BatchNoContains = null; public String BatchNoLike = null; public ArrayList BatchNoBetween = null; public ArrayList BatchNoIn = null; public Integer ItemNo = null; public Integer ItemNoGreaterThanOrEqualTo = null; public Integer ItemNoGreaterThan = null; public Integer ItemNoLessThan = null; public Integer ItemNoLessThanOrEqualTo = null; public Integer ItemNoNotEqualTo = null; public ArrayList ItemNoBetween = null; public ArrayList ItemNoIn = null; public String ImportSuccessMessage = null; public String ImportSuccessMessageStartsWith = null; public String ImportSuccessMessageEndsWith = null; public String ImportSuccessMessageContains = null; public String ImportSuccessMessageLike = null; public ArrayList ImportSuccessMessageBetween = null; public ArrayList ImportSuccessMessageIn = null; public String getImportQueueID() { return ImportQueueID; } public IM_ImportQueueQuery setImportQueueID(String value) { this.ImportQueueID = value; return this; } public String getImportQueueIDStartsWith() { return ImportQueueIDStartsWith; } public IM_ImportQueueQuery setImportQueueIDStartsWith(String value) { this.ImportQueueIDStartsWith = value; return this; } public String getImportQueueIDEndsWith() { return ImportQueueIDEndsWith; } public IM_ImportQueueQuery setImportQueueIDEndsWith(String value) { this.ImportQueueIDEndsWith = value; return this; } public String getImportQueueIDContains() { return ImportQueueIDContains; } public IM_ImportQueueQuery setImportQueueIDContains(String value) { this.ImportQueueIDContains = value; return this; } public String getImportQueueIDLike() { return ImportQueueIDLike; } public IM_ImportQueueQuery setImportQueueIDLike(String value) { this.ImportQueueIDLike = value; return this; } public ArrayList getImportQueueIDBetween() { return ImportQueueIDBetween; } public IM_ImportQueueQuery setImportQueueIDBetween(ArrayList value) { this.ImportQueueIDBetween = value; return this; } public ArrayList getImportQueueIDIn() { return ImportQueueIDIn; } public IM_ImportQueueQuery setImportQueueIDIn(ArrayList value) { this.ImportQueueIDIn = value; return this; } public String getOriginalXML() { return OriginalXML; } public IM_ImportQueueQuery setOriginalXML(String value) { this.OriginalXML = value; return this; } public String getOriginalXMLStartsWith() { return OriginalXMLStartsWith; } public IM_ImportQueueQuery setOriginalXMLStartsWith(String value) { this.OriginalXMLStartsWith = value; return this; } public String getOriginalXMLEndsWith() { return OriginalXMLEndsWith; } public IM_ImportQueueQuery setOriginalXMLEndsWith(String value) { this.OriginalXMLEndsWith = value; return this; } public String getOriginalXMLContains() { return OriginalXMLContains; } public IM_ImportQueueQuery setOriginalXMLContains(String value) { this.OriginalXMLContains = value; return this; } public String getOriginalXMLLike() { return OriginalXMLLike; } public IM_ImportQueueQuery setOriginalXMLLike(String value) { this.OriginalXMLLike = value; return this; } public ArrayList getOriginalXMLBetween() { return OriginalXMLBetween; } public IM_ImportQueueQuery setOriginalXMLBetween(ArrayList value) { this.OriginalXMLBetween = value; return this; } public ArrayList getOriginalXMLIn() { return OriginalXMLIn; } public IM_ImportQueueQuery setOriginalXMLIn(ArrayList value) { this.OriginalXMLIn = value; return this; } public String getTransformedXML() { return TransformedXML; } public IM_ImportQueueQuery setTransformedXML(String value) { this.TransformedXML = value; return this; } public String getTransformedXMLStartsWith() { return TransformedXMLStartsWith; } public IM_ImportQueueQuery setTransformedXMLStartsWith(String value) { this.TransformedXMLStartsWith = value; return this; } public String getTransformedXMLEndsWith() { return TransformedXMLEndsWith; } public IM_ImportQueueQuery setTransformedXMLEndsWith(String value) { this.TransformedXMLEndsWith = value; return this; } public String getTransformedXMLContains() { return TransformedXMLContains; } public IM_ImportQueueQuery setTransformedXMLContains(String value) { this.TransformedXMLContains = value; return this; } public String getTransformedXMLLike() { return TransformedXMLLike; } public IM_ImportQueueQuery setTransformedXMLLike(String value) { this.TransformedXMLLike = value; return this; } public ArrayList getTransformedXMLBetween() { return TransformedXMLBetween; } public IM_ImportQueueQuery setTransformedXMLBetween(ArrayList value) { this.TransformedXMLBetween = value; return this; } public ArrayList getTransformedXMLIn() { return TransformedXMLIn; } public IM_ImportQueueQuery setTransformedXMLIn(ArrayList value) { this.TransformedXMLIn = value; return this; } public Short getStatus() { return Status; } public IM_ImportQueueQuery setStatus(Short value) { this.Status = value; return this; } public Short getStatusGreaterThanOrEqualTo() { return StatusGreaterThanOrEqualTo; } public IM_ImportQueueQuery setStatusGreaterThanOrEqualTo(Short value) { this.StatusGreaterThanOrEqualTo = value; return this; } public Short getStatusGreaterThan() { return StatusGreaterThan; } public IM_ImportQueueQuery setStatusGreaterThan(Short value) { this.StatusGreaterThan = value; return this; } public Short getStatusLessThan() { return StatusLessThan; } public IM_ImportQueueQuery setStatusLessThan(Short value) { this.StatusLessThan = value; return this; } public Short getStatusLessThanOrEqualTo() { return StatusLessThanOrEqualTo; } public IM_ImportQueueQuery setStatusLessThanOrEqualTo(Short value) { this.StatusLessThanOrEqualTo = value; return this; } public Short getStatusNotEqualTo() { return StatusNotEqualTo; } public IM_ImportQueueQuery setStatusNotEqualTo(Short value) { this.StatusNotEqualTo = value; return this; } public ArrayList getStatusBetween() { return StatusBetween; } public IM_ImportQueueQuery setStatusBetween(ArrayList value) { this.StatusBetween = value; return this; } public ArrayList getStatusIn() { return StatusIn; } public IM_ImportQueueQuery setStatusIn(ArrayList value) { this.StatusIn = value; return this; } public Date getAddedToQueueDateTime() { return AddedToQueueDateTime; } public IM_ImportQueueQuery setAddedToQueueDateTime(Date value) { this.AddedToQueueDateTime = value; return this; } public Date getAddedToQueueDateTimeGreaterThanOrEqualTo() { return AddedToQueueDateTimeGreaterThanOrEqualTo; } public IM_ImportQueueQuery setAddedToQueueDateTimeGreaterThanOrEqualTo(Date value) { this.AddedToQueueDateTimeGreaterThanOrEqualTo = value; return this; } public Date getAddedToQueueDateTimeGreaterThan() { return AddedToQueueDateTimeGreaterThan; } public IM_ImportQueueQuery setAddedToQueueDateTimeGreaterThan(Date value) { this.AddedToQueueDateTimeGreaterThan = value; return this; } public Date getAddedToQueueDateTimeLessThan() { return AddedToQueueDateTimeLessThan; } public IM_ImportQueueQuery setAddedToQueueDateTimeLessThan(Date value) { this.AddedToQueueDateTimeLessThan = value; return this; } public Date getAddedToQueueDateTimeLessThanOrEqualTo() { return AddedToQueueDateTimeLessThanOrEqualTo; } public IM_ImportQueueQuery setAddedToQueueDateTimeLessThanOrEqualTo(Date value) { this.AddedToQueueDateTimeLessThanOrEqualTo = value; return this; } public Date getAddedToQueueDateTimeNotEqualTo() { return AddedToQueueDateTimeNotEqualTo; } public IM_ImportQueueQuery setAddedToQueueDateTimeNotEqualTo(Date value) { this.AddedToQueueDateTimeNotEqualTo = value; return this; } public ArrayList getAddedToQueueDateTimeBetween() { return AddedToQueueDateTimeBetween; } public IM_ImportQueueQuery setAddedToQueueDateTimeBetween(ArrayList value) { this.AddedToQueueDateTimeBetween = value; return this; } public ArrayList getAddedToQueueDateTimeIn() { return AddedToQueueDateTimeIn; } public IM_ImportQueueQuery setAddedToQueueDateTimeIn(ArrayList value) { this.AddedToQueueDateTimeIn = value; return this; } public String getAddedToQueueByStaffID() { return AddedToQueueByStaffID; } public IM_ImportQueueQuery setAddedToQueueByStaffID(String value) { this.AddedToQueueByStaffID = value; return this; } public String getAddedToQueueByStaffIDStartsWith() { return AddedToQueueByStaffIDStartsWith; } public IM_ImportQueueQuery setAddedToQueueByStaffIDStartsWith(String value) { this.AddedToQueueByStaffIDStartsWith = value; return this; } public String getAddedToQueueByStaffIDEndsWith() { return AddedToQueueByStaffIDEndsWith; } public IM_ImportQueueQuery setAddedToQueueByStaffIDEndsWith(String value) { this.AddedToQueueByStaffIDEndsWith = value; return this; } public String getAddedToQueueByStaffIDContains() { return AddedToQueueByStaffIDContains; } public IM_ImportQueueQuery setAddedToQueueByStaffIDContains(String value) { this.AddedToQueueByStaffIDContains = value; return this; } public String getAddedToQueueByStaffIDLike() { return AddedToQueueByStaffIDLike; } public IM_ImportQueueQuery setAddedToQueueByStaffIDLike(String value) { this.AddedToQueueByStaffIDLike = value; return this; } public ArrayList getAddedToQueueByStaffIDBetween() { return AddedToQueueByStaffIDBetween; } public IM_ImportQueueQuery setAddedToQueueByStaffIDBetween(ArrayList value) { this.AddedToQueueByStaffIDBetween = value; return this; } public ArrayList getAddedToQueueByStaffIDIn() { return AddedToQueueByStaffIDIn; } public IM_ImportQueueQuery setAddedToQueueByStaffIDIn(ArrayList value) { this.AddedToQueueByStaffIDIn = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public IM_ImportQueueQuery setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getLastSavedDateTimeGreaterThanOrEqualTo() { return LastSavedDateTimeGreaterThanOrEqualTo; } public IM_ImportQueueQuery setLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.LastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeGreaterThan() { return LastSavedDateTimeGreaterThan; } public IM_ImportQueueQuery setLastSavedDateTimeGreaterThan(Date value) { this.LastSavedDateTimeGreaterThan = value; return this; } public Date getLastSavedDateTimeLessThan() { return LastSavedDateTimeLessThan; } public IM_ImportQueueQuery setLastSavedDateTimeLessThan(Date value) { this.LastSavedDateTimeLessThan = value; return this; } public Date getLastSavedDateTimeLessThanOrEqualTo() { return LastSavedDateTimeLessThanOrEqualTo; } public IM_ImportQueueQuery setLastSavedDateTimeLessThanOrEqualTo(Date value) { this.LastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeNotEqualTo() { return LastSavedDateTimeNotEqualTo; } public IM_ImportQueueQuery setLastSavedDateTimeNotEqualTo(Date value) { this.LastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getLastSavedDateTimeBetween() { return LastSavedDateTimeBetween; } public IM_ImportQueueQuery setLastSavedDateTimeBetween(ArrayList value) { this.LastSavedDateTimeBetween = value; return this; } public ArrayList getLastSavedDateTimeIn() { return LastSavedDateTimeIn; } public IM_ImportQueueQuery setLastSavedDateTimeIn(ArrayList value) { this.LastSavedDateTimeIn = value; return this; } public String getLastSavedByStaffID() { return LastSavedByStaffID; } public IM_ImportQueueQuery setLastSavedByStaffID(String value) { this.LastSavedByStaffID = value; return this; } public String getLastSavedByStaffIDStartsWith() { return LastSavedByStaffIDStartsWith; } public IM_ImportQueueQuery setLastSavedByStaffIDStartsWith(String value) { this.LastSavedByStaffIDStartsWith = value; return this; } public String getLastSavedByStaffIDEndsWith() { return LastSavedByStaffIDEndsWith; } public IM_ImportQueueQuery setLastSavedByStaffIDEndsWith(String value) { this.LastSavedByStaffIDEndsWith = value; return this; } public String getLastSavedByStaffIDContains() { return LastSavedByStaffIDContains; } public IM_ImportQueueQuery setLastSavedByStaffIDContains(String value) { this.LastSavedByStaffIDContains = value; return this; } public String getLastSavedByStaffIDLike() { return LastSavedByStaffIDLike; } public IM_ImportQueueQuery setLastSavedByStaffIDLike(String value) { this.LastSavedByStaffIDLike = value; return this; } public ArrayList getLastSavedByStaffIDBetween() { return LastSavedByStaffIDBetween; } public IM_ImportQueueQuery setLastSavedByStaffIDBetween(ArrayList value) { this.LastSavedByStaffIDBetween = value; return this; } public ArrayList getLastSavedByStaffIDIn() { return LastSavedByStaffIDIn; } public IM_ImportQueueQuery setLastSavedByStaffIDIn(ArrayList value) { this.LastSavedByStaffIDIn = value; return this; } public String getImportErrorMessage() { return ImportErrorMessage; } public IM_ImportQueueQuery setImportErrorMessage(String value) { this.ImportErrorMessage = value; return this; } public String getImportErrorMessageStartsWith() { return ImportErrorMessageStartsWith; } public IM_ImportQueueQuery setImportErrorMessageStartsWith(String value) { this.ImportErrorMessageStartsWith = value; return this; } public String getImportErrorMessageEndsWith() { return ImportErrorMessageEndsWith; } public IM_ImportQueueQuery setImportErrorMessageEndsWith(String value) { this.ImportErrorMessageEndsWith = value; return this; } public String getImportErrorMessageContains() { return ImportErrorMessageContains; } public IM_ImportQueueQuery setImportErrorMessageContains(String value) { this.ImportErrorMessageContains = value; return this; } public String getImportErrorMessageLike() { return ImportErrorMessageLike; } public IM_ImportQueueQuery setImportErrorMessageLike(String value) { this.ImportErrorMessageLike = value; return this; } public ArrayList getImportErrorMessageBetween() { return ImportErrorMessageBetween; } public IM_ImportQueueQuery setImportErrorMessageBetween(ArrayList value) { this.ImportErrorMessageBetween = value; return this; } public ArrayList getImportErrorMessageIn() { return ImportErrorMessageIn; } public IM_ImportQueueQuery setImportErrorMessageIn(ArrayList value) { this.ImportErrorMessageIn = value; return this; } public String getImportBatchID() { return ImportBatchID; } public IM_ImportQueueQuery setImportBatchID(String value) { this.ImportBatchID = value; return this; } public String getImportBatchIDStartsWith() { return ImportBatchIDStartsWith; } public IM_ImportQueueQuery setImportBatchIDStartsWith(String value) { this.ImportBatchIDStartsWith = value; return this; } public String getImportBatchIDEndsWith() { return ImportBatchIDEndsWith; } public IM_ImportQueueQuery setImportBatchIDEndsWith(String value) { this.ImportBatchIDEndsWith = value; return this; } public String getImportBatchIDContains() { return ImportBatchIDContains; } public IM_ImportQueueQuery setImportBatchIDContains(String value) { this.ImportBatchIDContains = value; return this; } public String getImportBatchIDLike() { return ImportBatchIDLike; } public IM_ImportQueueQuery setImportBatchIDLike(String value) { this.ImportBatchIDLike = value; return this; } public ArrayList getImportBatchIDBetween() { return ImportBatchIDBetween; } public IM_ImportQueueQuery setImportBatchIDBetween(ArrayList value) { this.ImportBatchIDBetween = value; return this; } public ArrayList getImportBatchIDIn() { return ImportBatchIDIn; } public IM_ImportQueueQuery setImportBatchIDIn(ArrayList value) { this.ImportBatchIDIn = value; return this; } public String getBatchNo() { return BatchNo; } public IM_ImportQueueQuery setBatchNo(String value) { this.BatchNo = value; return this; } public String getBatchNoStartsWith() { return BatchNoStartsWith; } public IM_ImportQueueQuery setBatchNoStartsWith(String value) { this.BatchNoStartsWith = value; return this; } public String getBatchNoEndsWith() { return BatchNoEndsWith; } public IM_ImportQueueQuery setBatchNoEndsWith(String value) { this.BatchNoEndsWith = value; return this; } public String getBatchNoContains() { return BatchNoContains; } public IM_ImportQueueQuery setBatchNoContains(String value) { this.BatchNoContains = value; return this; } public String getBatchNoLike() { return BatchNoLike; } public IM_ImportQueueQuery setBatchNoLike(String value) { this.BatchNoLike = value; return this; } public ArrayList getBatchNoBetween() { return BatchNoBetween; } public IM_ImportQueueQuery setBatchNoBetween(ArrayList value) { this.BatchNoBetween = value; return this; } public ArrayList getBatchNoIn() { return BatchNoIn; } public IM_ImportQueueQuery setBatchNoIn(ArrayList value) { this.BatchNoIn = value; return this; } public Integer getItemNo() { return ItemNo; } public IM_ImportQueueQuery setItemNo(Integer value) { this.ItemNo = value; return this; } public Integer getItemNoGreaterThanOrEqualTo() { return ItemNoGreaterThanOrEqualTo; } public IM_ImportQueueQuery setItemNoGreaterThanOrEqualTo(Integer value) { this.ItemNoGreaterThanOrEqualTo = value; return this; } public Integer getItemNoGreaterThan() { return ItemNoGreaterThan; } public IM_ImportQueueQuery setItemNoGreaterThan(Integer value) { this.ItemNoGreaterThan = value; return this; } public Integer getItemNoLessThan() { return ItemNoLessThan; } public IM_ImportQueueQuery setItemNoLessThan(Integer value) { this.ItemNoLessThan = value; return this; } public Integer getItemNoLessThanOrEqualTo() { return ItemNoLessThanOrEqualTo; } public IM_ImportQueueQuery setItemNoLessThanOrEqualTo(Integer value) { this.ItemNoLessThanOrEqualTo = value; return this; } public Integer getItemNoNotEqualTo() { return ItemNoNotEqualTo; } public IM_ImportQueueQuery setItemNoNotEqualTo(Integer value) { this.ItemNoNotEqualTo = value; return this; } public ArrayList getItemNoBetween() { return ItemNoBetween; } public IM_ImportQueueQuery setItemNoBetween(ArrayList value) { this.ItemNoBetween = value; return this; } public ArrayList getItemNoIn() { return ItemNoIn; } public IM_ImportQueueQuery setItemNoIn(ArrayList value) { this.ItemNoIn = value; return this; } public String getImportSuccessMessage() { return ImportSuccessMessage; } public IM_ImportQueueQuery setImportSuccessMessage(String value) { this.ImportSuccessMessage = value; return this; } public String getImportSuccessMessageStartsWith() { return ImportSuccessMessageStartsWith; } public IM_ImportQueueQuery setImportSuccessMessageStartsWith(String value) { this.ImportSuccessMessageStartsWith = value; return this; } public String getImportSuccessMessageEndsWith() { return ImportSuccessMessageEndsWith; } public IM_ImportQueueQuery setImportSuccessMessageEndsWith(String value) { this.ImportSuccessMessageEndsWith = value; return this; } public String getImportSuccessMessageContains() { return ImportSuccessMessageContains; } public IM_ImportQueueQuery setImportSuccessMessageContains(String value) { this.ImportSuccessMessageContains = value; return this; } public String getImportSuccessMessageLike() { return ImportSuccessMessageLike; } public IM_ImportQueueQuery setImportSuccessMessageLike(String value) { this.ImportSuccessMessageLike = value; return this; } public ArrayList getImportSuccessMessageBetween() { return ImportSuccessMessageBetween; } public IM_ImportQueueQuery setImportSuccessMessageBetween(ArrayList value) { this.ImportSuccessMessageBetween = value; return this; } public ArrayList getImportSuccessMessageIn() { return ImportSuccessMessageIn; } public IM_ImportQueueQuery setImportSuccessMessageIn(ArrayList value) { this.ImportSuccessMessageIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class IN_AlternateQuery extends QueryDb implements IReturn> { public String LinkID = null; public String LinkIDStartsWith = null; public String LinkIDEndsWith = null; public String LinkIDContains = null; public String LinkIDLike = null; public ArrayList LinkIDBetween = null; public ArrayList LinkIDIn = null; public String InventoryID = null; public String InventoryIDStartsWith = null; public String InventoryIDEndsWith = null; public String InventoryIDContains = null; public String InventoryIDLike = null; public ArrayList InventoryIDBetween = null; public ArrayList InventoryIDIn = null; public String LinkedInventoryID = null; public String LinkedInventoryIDStartsWith = null; public String LinkedInventoryIDEndsWith = null; public String LinkedInventoryIDContains = null; public String LinkedInventoryIDLike = null; public ArrayList LinkedInventoryIDBetween = null; public ArrayList LinkedInventoryIDIn = null; public String Notes = null; public String NotesStartsWith = null; public String NotesEndsWith = null; public String NotesContains = null; public String NotesLike = null; public ArrayList NotesBetween = null; public ArrayList NotesIn = null; public String getLinkID() { return LinkID; } public IN_AlternateQuery setLinkID(String value) { this.LinkID = value; return this; } public String getLinkIDStartsWith() { return LinkIDStartsWith; } public IN_AlternateQuery setLinkIDStartsWith(String value) { this.LinkIDStartsWith = value; return this; } public String getLinkIDEndsWith() { return LinkIDEndsWith; } public IN_AlternateQuery setLinkIDEndsWith(String value) { this.LinkIDEndsWith = value; return this; } public String getLinkIDContains() { return LinkIDContains; } public IN_AlternateQuery setLinkIDContains(String value) { this.LinkIDContains = value; return this; } public String getLinkIDLike() { return LinkIDLike; } public IN_AlternateQuery setLinkIDLike(String value) { this.LinkIDLike = value; return this; } public ArrayList getLinkIDBetween() { return LinkIDBetween; } public IN_AlternateQuery setLinkIDBetween(ArrayList value) { this.LinkIDBetween = value; return this; } public ArrayList getLinkIDIn() { return LinkIDIn; } public IN_AlternateQuery setLinkIDIn(ArrayList value) { this.LinkIDIn = value; return this; } public String getInventoryID() { return InventoryID; } public IN_AlternateQuery setInventoryID(String value) { this.InventoryID = value; return this; } public String getInventoryIDStartsWith() { return InventoryIDStartsWith; } public IN_AlternateQuery setInventoryIDStartsWith(String value) { this.InventoryIDStartsWith = value; return this; } public String getInventoryIDEndsWith() { return InventoryIDEndsWith; } public IN_AlternateQuery setInventoryIDEndsWith(String value) { this.InventoryIDEndsWith = value; return this; } public String getInventoryIDContains() { return InventoryIDContains; } public IN_AlternateQuery setInventoryIDContains(String value) { this.InventoryIDContains = value; return this; } public String getInventoryIDLike() { return InventoryIDLike; } public IN_AlternateQuery setInventoryIDLike(String value) { this.InventoryIDLike = value; return this; } public ArrayList getInventoryIDBetween() { return InventoryIDBetween; } public IN_AlternateQuery setInventoryIDBetween(ArrayList value) { this.InventoryIDBetween = value; return this; } public ArrayList getInventoryIDIn() { return InventoryIDIn; } public IN_AlternateQuery setInventoryIDIn(ArrayList value) { this.InventoryIDIn = value; return this; } public String getLinkedInventoryID() { return LinkedInventoryID; } public IN_AlternateQuery setLinkedInventoryID(String value) { this.LinkedInventoryID = value; return this; } public String getLinkedInventoryIDStartsWith() { return LinkedInventoryIDStartsWith; } public IN_AlternateQuery setLinkedInventoryIDStartsWith(String value) { this.LinkedInventoryIDStartsWith = value; return this; } public String getLinkedInventoryIDEndsWith() { return LinkedInventoryIDEndsWith; } public IN_AlternateQuery setLinkedInventoryIDEndsWith(String value) { this.LinkedInventoryIDEndsWith = value; return this; } public String getLinkedInventoryIDContains() { return LinkedInventoryIDContains; } public IN_AlternateQuery setLinkedInventoryIDContains(String value) { this.LinkedInventoryIDContains = value; return this; } public String getLinkedInventoryIDLike() { return LinkedInventoryIDLike; } public IN_AlternateQuery setLinkedInventoryIDLike(String value) { this.LinkedInventoryIDLike = value; return this; } public ArrayList getLinkedInventoryIDBetween() { return LinkedInventoryIDBetween; } public IN_AlternateQuery setLinkedInventoryIDBetween(ArrayList value) { this.LinkedInventoryIDBetween = value; return this; } public ArrayList getLinkedInventoryIDIn() { return LinkedInventoryIDIn; } public IN_AlternateQuery setLinkedInventoryIDIn(ArrayList value) { this.LinkedInventoryIDIn = value; return this; } public String getNotes() { return Notes; } public IN_AlternateQuery setNotes(String value) { this.Notes = value; return this; } public String getNotesStartsWith() { return NotesStartsWith; } public IN_AlternateQuery setNotesStartsWith(String value) { this.NotesStartsWith = value; return this; } public String getNotesEndsWith() { return NotesEndsWith; } public IN_AlternateQuery setNotesEndsWith(String value) { this.NotesEndsWith = value; return this; } public String getNotesContains() { return NotesContains; } public IN_AlternateQuery setNotesContains(String value) { this.NotesContains = value; return this; } public String getNotesLike() { return NotesLike; } public IN_AlternateQuery setNotesLike(String value) { this.NotesLike = value; return this; } public ArrayList getNotesBetween() { return NotesBetween; } public IN_AlternateQuery setNotesBetween(ArrayList value) { this.NotesBetween = value; return this; } public ArrayList getNotesIn() { return NotesIn; } public IN_AlternateQuery setNotesIn(ArrayList value) { this.NotesIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class IN_AssemblyQuery extends QueryDb implements IReturn> { public String INAssemblyID = null; public String INAssemblyIDStartsWith = null; public String INAssemblyIDEndsWith = null; public String INAssemblyIDContains = null; public String INAssemblyIDLike = null; public ArrayList INAssemblyIDBetween = null; public ArrayList INAssemblyIDIn = null; public Date LastSavedDateTime = null; public Date LastSavedDateTimeGreaterThanOrEqualTo = null; public Date LastSavedDateTimeGreaterThan = null; public Date LastSavedDateTimeLessThan = null; public Date LastSavedDateTimeLessThanOrEqualTo = null; public Date LastSavedDateTimeNotEqualTo = null; public ArrayList LastSavedDateTimeBetween = null; public ArrayList LastSavedDateTimeIn = null; public String InventoryID = null; public String InventoryIDStartsWith = null; public String InventoryIDEndsWith = null; public String InventoryIDContains = null; public String InventoryIDLike = null; public ArrayList InventoryIDBetween = null; public ArrayList InventoryIDIn = null; public String AssemblyNo = null; public String AssemblyNoStartsWith = null; public String AssemblyNoEndsWith = null; public String AssemblyNoContains = null; public String AssemblyNoLike = null; public ArrayList AssemblyNoBetween = null; public ArrayList AssemblyNoIn = null; public Date AssemblyInitDate = null; public Date AssemblyInitDateGreaterThanOrEqualTo = null; public Date AssemblyInitDateGreaterThan = null; public Date AssemblyInitDateLessThan = null; public Date AssemblyInitDateLessThanOrEqualTo = null; public Date AssemblyInitDateNotEqualTo = null; public ArrayList AssemblyInitDateBetween = null; public ArrayList AssemblyInitDateIn = null; public Date AssemblyLastDate = null; public Date AssemblyLastDateGreaterThanOrEqualTo = null; public Date AssemblyLastDateGreaterThan = null; public Date AssemblyLastDateLessThan = null; public Date AssemblyLastDateLessThanOrEqualTo = null; public Date AssemblyLastDateNotEqualTo = null; public ArrayList AssemblyLastDateBetween = null; public ArrayList AssemblyLastDateIn = null; public BigDecimal QtyRequired = null; public BigDecimal QtyRequiredGreaterThanOrEqualTo = null; public BigDecimal QtyRequiredGreaterThan = null; public BigDecimal QtyRequiredLessThan = null; public BigDecimal QtyRequiredLessThanOrEqualTo = null; public BigDecimal QtyRequiredNotEqualTo = null; public ArrayList QtyRequiredBetween = null; public ArrayList QtyRequiredIn = null; public Short AssemblyType = null; public Short AssemblyTypeGreaterThanOrEqualTo = null; public Short AssemblyTypeGreaterThan = null; public Short AssemblyTypeLessThan = null; public Short AssemblyTypeLessThanOrEqualTo = null; public Short AssemblyTypeNotEqualTo = null; public ArrayList AssemblyTypeBetween = null; public ArrayList AssemblyTypeIn = null; public Short Status = null; public Short StatusGreaterThanOrEqualTo = null; public Short StatusGreaterThan = null; public Short StatusLessThan = null; public Short StatusLessThanOrEqualTo = null; public Short StatusNotEqualTo = null; public ArrayList StatusBetween = null; public ArrayList StatusIn = null; public Short CurrentHistoryNo = null; public Short CurrentHistoryNoGreaterThanOrEqualTo = null; public Short CurrentHistoryNoGreaterThan = null; public Short CurrentHistoryNoLessThan = null; public Short CurrentHistoryNoLessThanOrEqualTo = null; public Short CurrentHistoryNoNotEqualTo = null; public ArrayList CurrentHistoryNoBetween = null; public ArrayList CurrentHistoryNoIn = null; public String IN_LogicalID = null; public String IN_LogicalIDStartsWith = null; public String IN_LogicalIDEndsWith = null; public String IN_LogicalIDContains = null; public String IN_LogicalIDLike = null; public ArrayList IN_LogicalIDBetween = null; public ArrayList IN_LogicalIDIn = null; public String PartNo = null; public String PartNoStartsWith = null; public String PartNoEndsWith = null; public String PartNoContains = null; public String PartNoLike = null; public ArrayList PartNoBetween = null; public ArrayList PartNoIn = null; public String Description = null; public String DescriptionStartsWith = null; public String DescriptionEndsWith = null; public String DescriptionContains = null; public String DescriptionLike = null; public ArrayList DescriptionBetween = null; public ArrayList DescriptionIn = null; public BigDecimal AssemblyTotal = null; public BigDecimal AssemblyTotalGreaterThanOrEqualTo = null; public BigDecimal AssemblyTotalGreaterThan = null; public BigDecimal AssemblyTotalLessThan = null; public BigDecimal AssemblyTotalLessThanOrEqualTo = null; public BigDecimal AssemblyTotalNotEqualTo = null; public ArrayList AssemblyTotalBetween = null; public ArrayList AssemblyTotalIn = null; public Boolean UpdateSell = null; public Short SellPriceMode = null; public Short SellPriceModeGreaterThanOrEqualTo = null; public Short SellPriceModeGreaterThan = null; public Short SellPriceModeLessThan = null; public Short SellPriceModeLessThanOrEqualTo = null; public Short SellPriceModeNotEqualTo = null; public ArrayList SellPriceModeBetween = null; public ArrayList SellPriceModeIn = null; public BigDecimal SellPriceAmount = null; public BigDecimal SellPriceAmountGreaterThanOrEqualTo = null; public BigDecimal SellPriceAmountGreaterThan = null; public BigDecimal SellPriceAmountLessThan = null; public BigDecimal SellPriceAmountLessThanOrEqualTo = null; public BigDecimal SellPriceAmountNotEqualTo = null; public ArrayList SellPriceAmountBetween = null; public ArrayList SellPriceAmountIn = null; public BigDecimal NewPrice = null; public BigDecimal NewPriceGreaterThanOrEqualTo = null; public BigDecimal NewPriceGreaterThan = null; public BigDecimal NewPriceLessThan = null; public BigDecimal NewPriceLessThanOrEqualTo = null; public BigDecimal NewPriceNotEqualTo = null; public ArrayList NewPriceBetween = null; public ArrayList NewPriceIn = null; public BigDecimal CalcSell = null; public BigDecimal CalcSellGreaterThanOrEqualTo = null; public BigDecimal CalcSellGreaterThan = null; public BigDecimal CalcSellLessThan = null; public BigDecimal CalcSellLessThanOrEqualTo = null; public BigDecimal CalcSellNotEqualTo = null; public ArrayList CalcSellBetween = null; public ArrayList CalcSellIn = null; public String getInAssemblyID() { return INAssemblyID; } public IN_AssemblyQuery setInAssemblyID(String value) { this.INAssemblyID = value; return this; } public String getInAssemblyIDStartsWith() { return INAssemblyIDStartsWith; } public IN_AssemblyQuery setInAssemblyIDStartsWith(String value) { this.INAssemblyIDStartsWith = value; return this; } public String getInAssemblyIDEndsWith() { return INAssemblyIDEndsWith; } public IN_AssemblyQuery setInAssemblyIDEndsWith(String value) { this.INAssemblyIDEndsWith = value; return this; } public String getInAssemblyIDContains() { return INAssemblyIDContains; } public IN_AssemblyQuery setInAssemblyIDContains(String value) { this.INAssemblyIDContains = value; return this; } public String getInAssemblyIDLike() { return INAssemblyIDLike; } public IN_AssemblyQuery setInAssemblyIDLike(String value) { this.INAssemblyIDLike = value; return this; } public ArrayList getInAssemblyIDBetween() { return INAssemblyIDBetween; } public IN_AssemblyQuery setInAssemblyIDBetween(ArrayList value) { this.INAssemblyIDBetween = value; return this; } public ArrayList getInAssemblyIDIn() { return INAssemblyIDIn; } public IN_AssemblyQuery setInAssemblyIDIn(ArrayList value) { this.INAssemblyIDIn = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public IN_AssemblyQuery setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getLastSavedDateTimeGreaterThanOrEqualTo() { return LastSavedDateTimeGreaterThanOrEqualTo; } public IN_AssemblyQuery setLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.LastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeGreaterThan() { return LastSavedDateTimeGreaterThan; } public IN_AssemblyQuery setLastSavedDateTimeGreaterThan(Date value) { this.LastSavedDateTimeGreaterThan = value; return this; } public Date getLastSavedDateTimeLessThan() { return LastSavedDateTimeLessThan; } public IN_AssemblyQuery setLastSavedDateTimeLessThan(Date value) { this.LastSavedDateTimeLessThan = value; return this; } public Date getLastSavedDateTimeLessThanOrEqualTo() { return LastSavedDateTimeLessThanOrEqualTo; } public IN_AssemblyQuery setLastSavedDateTimeLessThanOrEqualTo(Date value) { this.LastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeNotEqualTo() { return LastSavedDateTimeNotEqualTo; } public IN_AssemblyQuery setLastSavedDateTimeNotEqualTo(Date value) { this.LastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getLastSavedDateTimeBetween() { return LastSavedDateTimeBetween; } public IN_AssemblyQuery setLastSavedDateTimeBetween(ArrayList value) { this.LastSavedDateTimeBetween = value; return this; } public ArrayList getLastSavedDateTimeIn() { return LastSavedDateTimeIn; } public IN_AssemblyQuery setLastSavedDateTimeIn(ArrayList value) { this.LastSavedDateTimeIn = value; return this; } public String getInventoryID() { return InventoryID; } public IN_AssemblyQuery setInventoryID(String value) { this.InventoryID = value; return this; } public String getInventoryIDStartsWith() { return InventoryIDStartsWith; } public IN_AssemblyQuery setInventoryIDStartsWith(String value) { this.InventoryIDStartsWith = value; return this; } public String getInventoryIDEndsWith() { return InventoryIDEndsWith; } public IN_AssemblyQuery setInventoryIDEndsWith(String value) { this.InventoryIDEndsWith = value; return this; } public String getInventoryIDContains() { return InventoryIDContains; } public IN_AssemblyQuery setInventoryIDContains(String value) { this.InventoryIDContains = value; return this; } public String getInventoryIDLike() { return InventoryIDLike; } public IN_AssemblyQuery setInventoryIDLike(String value) { this.InventoryIDLike = value; return this; } public ArrayList getInventoryIDBetween() { return InventoryIDBetween; } public IN_AssemblyQuery setInventoryIDBetween(ArrayList value) { this.InventoryIDBetween = value; return this; } public ArrayList getInventoryIDIn() { return InventoryIDIn; } public IN_AssemblyQuery setInventoryIDIn(ArrayList value) { this.InventoryIDIn = value; return this; } public String getAssemblyNo() { return AssemblyNo; } public IN_AssemblyQuery setAssemblyNo(String value) { this.AssemblyNo = value; return this; } public String getAssemblyNoStartsWith() { return AssemblyNoStartsWith; } public IN_AssemblyQuery setAssemblyNoStartsWith(String value) { this.AssemblyNoStartsWith = value; return this; } public String getAssemblyNoEndsWith() { return AssemblyNoEndsWith; } public IN_AssemblyQuery setAssemblyNoEndsWith(String value) { this.AssemblyNoEndsWith = value; return this; } public String getAssemblyNoContains() { return AssemblyNoContains; } public IN_AssemblyQuery setAssemblyNoContains(String value) { this.AssemblyNoContains = value; return this; } public String getAssemblyNoLike() { return AssemblyNoLike; } public IN_AssemblyQuery setAssemblyNoLike(String value) { this.AssemblyNoLike = value; return this; } public ArrayList getAssemblyNoBetween() { return AssemblyNoBetween; } public IN_AssemblyQuery setAssemblyNoBetween(ArrayList value) { this.AssemblyNoBetween = value; return this; } public ArrayList getAssemblyNoIn() { return AssemblyNoIn; } public IN_AssemblyQuery setAssemblyNoIn(ArrayList value) { this.AssemblyNoIn = value; return this; } public Date getAssemblyInitDate() { return AssemblyInitDate; } public IN_AssemblyQuery setAssemblyInitDate(Date value) { this.AssemblyInitDate = value; return this; } public Date getAssemblyInitDateGreaterThanOrEqualTo() { return AssemblyInitDateGreaterThanOrEqualTo; } public IN_AssemblyQuery setAssemblyInitDateGreaterThanOrEqualTo(Date value) { this.AssemblyInitDateGreaterThanOrEqualTo = value; return this; } public Date getAssemblyInitDateGreaterThan() { return AssemblyInitDateGreaterThan; } public IN_AssemblyQuery setAssemblyInitDateGreaterThan(Date value) { this.AssemblyInitDateGreaterThan = value; return this; } public Date getAssemblyInitDateLessThan() { return AssemblyInitDateLessThan; } public IN_AssemblyQuery setAssemblyInitDateLessThan(Date value) { this.AssemblyInitDateLessThan = value; return this; } public Date getAssemblyInitDateLessThanOrEqualTo() { return AssemblyInitDateLessThanOrEqualTo; } public IN_AssemblyQuery setAssemblyInitDateLessThanOrEqualTo(Date value) { this.AssemblyInitDateLessThanOrEqualTo = value; return this; } public Date getAssemblyInitDateNotEqualTo() { return AssemblyInitDateNotEqualTo; } public IN_AssemblyQuery setAssemblyInitDateNotEqualTo(Date value) { this.AssemblyInitDateNotEqualTo = value; return this; } public ArrayList getAssemblyInitDateBetween() { return AssemblyInitDateBetween; } public IN_AssemblyQuery setAssemblyInitDateBetween(ArrayList value) { this.AssemblyInitDateBetween = value; return this; } public ArrayList getAssemblyInitDateIn() { return AssemblyInitDateIn; } public IN_AssemblyQuery setAssemblyInitDateIn(ArrayList value) { this.AssemblyInitDateIn = value; return this; } public Date getAssemblyLastDate() { return AssemblyLastDate; } public IN_AssemblyQuery setAssemblyLastDate(Date value) { this.AssemblyLastDate = value; return this; } public Date getAssemblyLastDateGreaterThanOrEqualTo() { return AssemblyLastDateGreaterThanOrEqualTo; } public IN_AssemblyQuery setAssemblyLastDateGreaterThanOrEqualTo(Date value) { this.AssemblyLastDateGreaterThanOrEqualTo = value; return this; } public Date getAssemblyLastDateGreaterThan() { return AssemblyLastDateGreaterThan; } public IN_AssemblyQuery setAssemblyLastDateGreaterThan(Date value) { this.AssemblyLastDateGreaterThan = value; return this; } public Date getAssemblyLastDateLessThan() { return AssemblyLastDateLessThan; } public IN_AssemblyQuery setAssemblyLastDateLessThan(Date value) { this.AssemblyLastDateLessThan = value; return this; } public Date getAssemblyLastDateLessThanOrEqualTo() { return AssemblyLastDateLessThanOrEqualTo; } public IN_AssemblyQuery setAssemblyLastDateLessThanOrEqualTo(Date value) { this.AssemblyLastDateLessThanOrEqualTo = value; return this; } public Date getAssemblyLastDateNotEqualTo() { return AssemblyLastDateNotEqualTo; } public IN_AssemblyQuery setAssemblyLastDateNotEqualTo(Date value) { this.AssemblyLastDateNotEqualTo = value; return this; } public ArrayList getAssemblyLastDateBetween() { return AssemblyLastDateBetween; } public IN_AssemblyQuery setAssemblyLastDateBetween(ArrayList value) { this.AssemblyLastDateBetween = value; return this; } public ArrayList getAssemblyLastDateIn() { return AssemblyLastDateIn; } public IN_AssemblyQuery setAssemblyLastDateIn(ArrayList value) { this.AssemblyLastDateIn = value; return this; } public BigDecimal getQtyRequired() { return QtyRequired; } public IN_AssemblyQuery setQtyRequired(BigDecimal value) { this.QtyRequired = value; return this; } public BigDecimal getQtyRequiredGreaterThanOrEqualTo() { return QtyRequiredGreaterThanOrEqualTo; } public IN_AssemblyQuery setQtyRequiredGreaterThanOrEqualTo(BigDecimal value) { this.QtyRequiredGreaterThanOrEqualTo = value; return this; } public BigDecimal getQtyRequiredGreaterThan() { return QtyRequiredGreaterThan; } public IN_AssemblyQuery setQtyRequiredGreaterThan(BigDecimal value) { this.QtyRequiredGreaterThan = value; return this; } public BigDecimal getQtyRequiredLessThan() { return QtyRequiredLessThan; } public IN_AssemblyQuery setQtyRequiredLessThan(BigDecimal value) { this.QtyRequiredLessThan = value; return this; } public BigDecimal getQtyRequiredLessThanOrEqualTo() { return QtyRequiredLessThanOrEqualTo; } public IN_AssemblyQuery setQtyRequiredLessThanOrEqualTo(BigDecimal value) { this.QtyRequiredLessThanOrEqualTo = value; return this; } public BigDecimal getQtyRequiredNotEqualTo() { return QtyRequiredNotEqualTo; } public IN_AssemblyQuery setQtyRequiredNotEqualTo(BigDecimal value) { this.QtyRequiredNotEqualTo = value; return this; } public ArrayList getQtyRequiredBetween() { return QtyRequiredBetween; } public IN_AssemblyQuery setQtyRequiredBetween(ArrayList value) { this.QtyRequiredBetween = value; return this; } public ArrayList getQtyRequiredIn() { return QtyRequiredIn; } public IN_AssemblyQuery setQtyRequiredIn(ArrayList value) { this.QtyRequiredIn = value; return this; } public Short getAssemblyType() { return AssemblyType; } public IN_AssemblyQuery setAssemblyType(Short value) { this.AssemblyType = value; return this; } public Short getAssemblyTypeGreaterThanOrEqualTo() { return AssemblyTypeGreaterThanOrEqualTo; } public IN_AssemblyQuery setAssemblyTypeGreaterThanOrEqualTo(Short value) { this.AssemblyTypeGreaterThanOrEqualTo = value; return this; } public Short getAssemblyTypeGreaterThan() { return AssemblyTypeGreaterThan; } public IN_AssemblyQuery setAssemblyTypeGreaterThan(Short value) { this.AssemblyTypeGreaterThan = value; return this; } public Short getAssemblyTypeLessThan() { return AssemblyTypeLessThan; } public IN_AssemblyQuery setAssemblyTypeLessThan(Short value) { this.AssemblyTypeLessThan = value; return this; } public Short getAssemblyTypeLessThanOrEqualTo() { return AssemblyTypeLessThanOrEqualTo; } public IN_AssemblyQuery setAssemblyTypeLessThanOrEqualTo(Short value) { this.AssemblyTypeLessThanOrEqualTo = value; return this; } public Short getAssemblyTypeNotEqualTo() { return AssemblyTypeNotEqualTo; } public IN_AssemblyQuery setAssemblyTypeNotEqualTo(Short value) { this.AssemblyTypeNotEqualTo = value; return this; } public ArrayList getAssemblyTypeBetween() { return AssemblyTypeBetween; } public IN_AssemblyQuery setAssemblyTypeBetween(ArrayList value) { this.AssemblyTypeBetween = value; return this; } public ArrayList getAssemblyTypeIn() { return AssemblyTypeIn; } public IN_AssemblyQuery setAssemblyTypeIn(ArrayList value) { this.AssemblyTypeIn = value; return this; } public Short getStatus() { return Status; } public IN_AssemblyQuery setStatus(Short value) { this.Status = value; return this; } public Short getStatusGreaterThanOrEqualTo() { return StatusGreaterThanOrEqualTo; } public IN_AssemblyQuery setStatusGreaterThanOrEqualTo(Short value) { this.StatusGreaterThanOrEqualTo = value; return this; } public Short getStatusGreaterThan() { return StatusGreaterThan; } public IN_AssemblyQuery setStatusGreaterThan(Short value) { this.StatusGreaterThan = value; return this; } public Short getStatusLessThan() { return StatusLessThan; } public IN_AssemblyQuery setStatusLessThan(Short value) { this.StatusLessThan = value; return this; } public Short getStatusLessThanOrEqualTo() { return StatusLessThanOrEqualTo; } public IN_AssemblyQuery setStatusLessThanOrEqualTo(Short value) { this.StatusLessThanOrEqualTo = value; return this; } public Short getStatusNotEqualTo() { return StatusNotEqualTo; } public IN_AssemblyQuery setStatusNotEqualTo(Short value) { this.StatusNotEqualTo = value; return this; } public ArrayList getStatusBetween() { return StatusBetween; } public IN_AssemblyQuery setStatusBetween(ArrayList value) { this.StatusBetween = value; return this; } public ArrayList getStatusIn() { return StatusIn; } public IN_AssemblyQuery setStatusIn(ArrayList value) { this.StatusIn = value; return this; } public Short getCurrentHistoryNo() { return CurrentHistoryNo; } public IN_AssemblyQuery setCurrentHistoryNo(Short value) { this.CurrentHistoryNo = value; return this; } public Short getCurrentHistoryNoGreaterThanOrEqualTo() { return CurrentHistoryNoGreaterThanOrEqualTo; } public IN_AssemblyQuery setCurrentHistoryNoGreaterThanOrEqualTo(Short value) { this.CurrentHistoryNoGreaterThanOrEqualTo = value; return this; } public Short getCurrentHistoryNoGreaterThan() { return CurrentHistoryNoGreaterThan; } public IN_AssemblyQuery setCurrentHistoryNoGreaterThan(Short value) { this.CurrentHistoryNoGreaterThan = value; return this; } public Short getCurrentHistoryNoLessThan() { return CurrentHistoryNoLessThan; } public IN_AssemblyQuery setCurrentHistoryNoLessThan(Short value) { this.CurrentHistoryNoLessThan = value; return this; } public Short getCurrentHistoryNoLessThanOrEqualTo() { return CurrentHistoryNoLessThanOrEqualTo; } public IN_AssemblyQuery setCurrentHistoryNoLessThanOrEqualTo(Short value) { this.CurrentHistoryNoLessThanOrEqualTo = value; return this; } public Short getCurrentHistoryNoNotEqualTo() { return CurrentHistoryNoNotEqualTo; } public IN_AssemblyQuery setCurrentHistoryNoNotEqualTo(Short value) { this.CurrentHistoryNoNotEqualTo = value; return this; } public ArrayList getCurrentHistoryNoBetween() { return CurrentHistoryNoBetween; } public IN_AssemblyQuery setCurrentHistoryNoBetween(ArrayList value) { this.CurrentHistoryNoBetween = value; return this; } public ArrayList getCurrentHistoryNoIn() { return CurrentHistoryNoIn; } public IN_AssemblyQuery setCurrentHistoryNoIn(ArrayList value) { this.CurrentHistoryNoIn = value; return this; } public String getInLogicalID() { return IN_LogicalID; } public IN_AssemblyQuery setInLogicalID(String value) { this.IN_LogicalID = value; return this; } public String getInLogicalIDStartsWith() { return IN_LogicalIDStartsWith; } public IN_AssemblyQuery setInLogicalIDStartsWith(String value) { this.IN_LogicalIDStartsWith = value; return this; } public String getInLogicalIDEndsWith() { return IN_LogicalIDEndsWith; } public IN_AssemblyQuery setInLogicalIDEndsWith(String value) { this.IN_LogicalIDEndsWith = value; return this; } public String getInLogicalIDContains() { return IN_LogicalIDContains; } public IN_AssemblyQuery setInLogicalIDContains(String value) { this.IN_LogicalIDContains = value; return this; } public String getInLogicalIDLike() { return IN_LogicalIDLike; } public IN_AssemblyQuery setInLogicalIDLike(String value) { this.IN_LogicalIDLike = value; return this; } public ArrayList getInLogicalIDBetween() { return IN_LogicalIDBetween; } public IN_AssemblyQuery setInLogicalIDBetween(ArrayList value) { this.IN_LogicalIDBetween = value; return this; } public ArrayList getInLogicalIDIn() { return IN_LogicalIDIn; } public IN_AssemblyQuery setInLogicalIDIn(ArrayList value) { this.IN_LogicalIDIn = value; return this; } public String getPartNo() { return PartNo; } public IN_AssemblyQuery setPartNo(String value) { this.PartNo = value; return this; } public String getPartNoStartsWith() { return PartNoStartsWith; } public IN_AssemblyQuery setPartNoStartsWith(String value) { this.PartNoStartsWith = value; return this; } public String getPartNoEndsWith() { return PartNoEndsWith; } public IN_AssemblyQuery setPartNoEndsWith(String value) { this.PartNoEndsWith = value; return this; } public String getPartNoContains() { return PartNoContains; } public IN_AssemblyQuery setPartNoContains(String value) { this.PartNoContains = value; return this; } public String getPartNoLike() { return PartNoLike; } public IN_AssemblyQuery setPartNoLike(String value) { this.PartNoLike = value; return this; } public ArrayList getPartNoBetween() { return PartNoBetween; } public IN_AssemblyQuery setPartNoBetween(ArrayList value) { this.PartNoBetween = value; return this; } public ArrayList getPartNoIn() { return PartNoIn; } public IN_AssemblyQuery setPartNoIn(ArrayList value) { this.PartNoIn = value; return this; } public String getDescription() { return Description; } public IN_AssemblyQuery setDescription(String value) { this.Description = value; return this; } public String getDescriptionStartsWith() { return DescriptionStartsWith; } public IN_AssemblyQuery setDescriptionStartsWith(String value) { this.DescriptionStartsWith = value; return this; } public String getDescriptionEndsWith() { return DescriptionEndsWith; } public IN_AssemblyQuery setDescriptionEndsWith(String value) { this.DescriptionEndsWith = value; return this; } public String getDescriptionContains() { return DescriptionContains; } public IN_AssemblyQuery setDescriptionContains(String value) { this.DescriptionContains = value; return this; } public String getDescriptionLike() { return DescriptionLike; } public IN_AssemblyQuery setDescriptionLike(String value) { this.DescriptionLike = value; return this; } public ArrayList getDescriptionBetween() { return DescriptionBetween; } public IN_AssemblyQuery setDescriptionBetween(ArrayList value) { this.DescriptionBetween = value; return this; } public ArrayList getDescriptionIn() { return DescriptionIn; } public IN_AssemblyQuery setDescriptionIn(ArrayList value) { this.DescriptionIn = value; return this; } public BigDecimal getAssemblyTotal() { return AssemblyTotal; } public IN_AssemblyQuery setAssemblyTotal(BigDecimal value) { this.AssemblyTotal = value; return this; } public BigDecimal getAssemblyTotalGreaterThanOrEqualTo() { return AssemblyTotalGreaterThanOrEqualTo; } public IN_AssemblyQuery setAssemblyTotalGreaterThanOrEqualTo(BigDecimal value) { this.AssemblyTotalGreaterThanOrEqualTo = value; return this; } public BigDecimal getAssemblyTotalGreaterThan() { return AssemblyTotalGreaterThan; } public IN_AssemblyQuery setAssemblyTotalGreaterThan(BigDecimal value) { this.AssemblyTotalGreaterThan = value; return this; } public BigDecimal getAssemblyTotalLessThan() { return AssemblyTotalLessThan; } public IN_AssemblyQuery setAssemblyTotalLessThan(BigDecimal value) { this.AssemblyTotalLessThan = value; return this; } public BigDecimal getAssemblyTotalLessThanOrEqualTo() { return AssemblyTotalLessThanOrEqualTo; } public IN_AssemblyQuery setAssemblyTotalLessThanOrEqualTo(BigDecimal value) { this.AssemblyTotalLessThanOrEqualTo = value; return this; } public BigDecimal getAssemblyTotalNotEqualTo() { return AssemblyTotalNotEqualTo; } public IN_AssemblyQuery setAssemblyTotalNotEqualTo(BigDecimal value) { this.AssemblyTotalNotEqualTo = value; return this; } public ArrayList getAssemblyTotalBetween() { return AssemblyTotalBetween; } public IN_AssemblyQuery setAssemblyTotalBetween(ArrayList value) { this.AssemblyTotalBetween = value; return this; } public ArrayList getAssemblyTotalIn() { return AssemblyTotalIn; } public IN_AssemblyQuery setAssemblyTotalIn(ArrayList value) { this.AssemblyTotalIn = value; return this; } public Boolean isUpdateSell() { return UpdateSell; } public IN_AssemblyQuery setUpdateSell(Boolean value) { this.UpdateSell = value; return this; } public Short getSellPriceMode() { return SellPriceMode; } public IN_AssemblyQuery setSellPriceMode(Short value) { this.SellPriceMode = value; return this; } public Short getSellPriceModeGreaterThanOrEqualTo() { return SellPriceModeGreaterThanOrEqualTo; } public IN_AssemblyQuery setSellPriceModeGreaterThanOrEqualTo(Short value) { this.SellPriceModeGreaterThanOrEqualTo = value; return this; } public Short getSellPriceModeGreaterThan() { return SellPriceModeGreaterThan; } public IN_AssemblyQuery setSellPriceModeGreaterThan(Short value) { this.SellPriceModeGreaterThan = value; return this; } public Short getSellPriceModeLessThan() { return SellPriceModeLessThan; } public IN_AssemblyQuery setSellPriceModeLessThan(Short value) { this.SellPriceModeLessThan = value; return this; } public Short getSellPriceModeLessThanOrEqualTo() { return SellPriceModeLessThanOrEqualTo; } public IN_AssemblyQuery setSellPriceModeLessThanOrEqualTo(Short value) { this.SellPriceModeLessThanOrEqualTo = value; return this; } public Short getSellPriceModeNotEqualTo() { return SellPriceModeNotEqualTo; } public IN_AssemblyQuery setSellPriceModeNotEqualTo(Short value) { this.SellPriceModeNotEqualTo = value; return this; } public ArrayList getSellPriceModeBetween() { return SellPriceModeBetween; } public IN_AssemblyQuery setSellPriceModeBetween(ArrayList value) { this.SellPriceModeBetween = value; return this; } public ArrayList getSellPriceModeIn() { return SellPriceModeIn; } public IN_AssemblyQuery setSellPriceModeIn(ArrayList value) { this.SellPriceModeIn = value; return this; } public BigDecimal getSellPriceAmount() { return SellPriceAmount; } public IN_AssemblyQuery setSellPriceAmount(BigDecimal value) { this.SellPriceAmount = value; return this; } public BigDecimal getSellPriceAmountGreaterThanOrEqualTo() { return SellPriceAmountGreaterThanOrEqualTo; } public IN_AssemblyQuery setSellPriceAmountGreaterThanOrEqualTo(BigDecimal value) { this.SellPriceAmountGreaterThanOrEqualTo = value; return this; } public BigDecimal getSellPriceAmountGreaterThan() { return SellPriceAmountGreaterThan; } public IN_AssemblyQuery setSellPriceAmountGreaterThan(BigDecimal value) { this.SellPriceAmountGreaterThan = value; return this; } public BigDecimal getSellPriceAmountLessThan() { return SellPriceAmountLessThan; } public IN_AssemblyQuery setSellPriceAmountLessThan(BigDecimal value) { this.SellPriceAmountLessThan = value; return this; } public BigDecimal getSellPriceAmountLessThanOrEqualTo() { return SellPriceAmountLessThanOrEqualTo; } public IN_AssemblyQuery setSellPriceAmountLessThanOrEqualTo(BigDecimal value) { this.SellPriceAmountLessThanOrEqualTo = value; return this; } public BigDecimal getSellPriceAmountNotEqualTo() { return SellPriceAmountNotEqualTo; } public IN_AssemblyQuery setSellPriceAmountNotEqualTo(BigDecimal value) { this.SellPriceAmountNotEqualTo = value; return this; } public ArrayList getSellPriceAmountBetween() { return SellPriceAmountBetween; } public IN_AssemblyQuery setSellPriceAmountBetween(ArrayList value) { this.SellPriceAmountBetween = value; return this; } public ArrayList getSellPriceAmountIn() { return SellPriceAmountIn; } public IN_AssemblyQuery setSellPriceAmountIn(ArrayList value) { this.SellPriceAmountIn = value; return this; } public BigDecimal getNewPrice() { return NewPrice; } public IN_AssemblyQuery setNewPrice(BigDecimal value) { this.NewPrice = value; return this; } public BigDecimal getNewPriceGreaterThanOrEqualTo() { return NewPriceGreaterThanOrEqualTo; } public IN_AssemblyQuery setNewPriceGreaterThanOrEqualTo(BigDecimal value) { this.NewPriceGreaterThanOrEqualTo = value; return this; } public BigDecimal getNewPriceGreaterThan() { return NewPriceGreaterThan; } public IN_AssemblyQuery setNewPriceGreaterThan(BigDecimal value) { this.NewPriceGreaterThan = value; return this; } public BigDecimal getNewPriceLessThan() { return NewPriceLessThan; } public IN_AssemblyQuery setNewPriceLessThan(BigDecimal value) { this.NewPriceLessThan = value; return this; } public BigDecimal getNewPriceLessThanOrEqualTo() { return NewPriceLessThanOrEqualTo; } public IN_AssemblyQuery setNewPriceLessThanOrEqualTo(BigDecimal value) { this.NewPriceLessThanOrEqualTo = value; return this; } public BigDecimal getNewPriceNotEqualTo() { return NewPriceNotEqualTo; } public IN_AssemblyQuery setNewPriceNotEqualTo(BigDecimal value) { this.NewPriceNotEqualTo = value; return this; } public ArrayList getNewPriceBetween() { return NewPriceBetween; } public IN_AssemblyQuery setNewPriceBetween(ArrayList value) { this.NewPriceBetween = value; return this; } public ArrayList getNewPriceIn() { return NewPriceIn; } public IN_AssemblyQuery setNewPriceIn(ArrayList value) { this.NewPriceIn = value; return this; } public BigDecimal getCalcSell() { return CalcSell; } public IN_AssemblyQuery setCalcSell(BigDecimal value) { this.CalcSell = value; return this; } public BigDecimal getCalcSellGreaterThanOrEqualTo() { return CalcSellGreaterThanOrEqualTo; } public IN_AssemblyQuery setCalcSellGreaterThanOrEqualTo(BigDecimal value) { this.CalcSellGreaterThanOrEqualTo = value; return this; } public BigDecimal getCalcSellGreaterThan() { return CalcSellGreaterThan; } public IN_AssemblyQuery setCalcSellGreaterThan(BigDecimal value) { this.CalcSellGreaterThan = value; return this; } public BigDecimal getCalcSellLessThan() { return CalcSellLessThan; } public IN_AssemblyQuery setCalcSellLessThan(BigDecimal value) { this.CalcSellLessThan = value; return this; } public BigDecimal getCalcSellLessThanOrEqualTo() { return CalcSellLessThanOrEqualTo; } public IN_AssemblyQuery setCalcSellLessThanOrEqualTo(BigDecimal value) { this.CalcSellLessThanOrEqualTo = value; return this; } public BigDecimal getCalcSellNotEqualTo() { return CalcSellNotEqualTo; } public IN_AssemblyQuery setCalcSellNotEqualTo(BigDecimal value) { this.CalcSellNotEqualTo = value; return this; } public ArrayList getCalcSellBetween() { return CalcSellBetween; } public IN_AssemblyQuery setCalcSellBetween(ArrayList value) { this.CalcSellBetween = value; return this; } public ArrayList getCalcSellIn() { return CalcSellIn; } public IN_AssemblyQuery setCalcSellIn(ArrayList value) { this.CalcSellIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class IN_AssemblyHistoryQuery extends QueryDb implements IReturn> { public String INAssemblyHistoryID = null; public String INAssemblyHistoryIDStartsWith = null; public String INAssemblyHistoryIDEndsWith = null; public String INAssemblyHistoryIDContains = null; public String INAssemblyHistoryIDLike = null; public ArrayList INAssemblyHistoryIDBetween = null; public ArrayList INAssemblyHistoryIDIn = null; public String INAssemblyID = null; public String INAssemblyIDStartsWith = null; public String INAssemblyIDEndsWith = null; public String INAssemblyIDContains = null; public String INAssemblyIDLike = null; public ArrayList INAssemblyIDBetween = null; public ArrayList INAssemblyIDIn = null; public Short HistoryNo = null; public Short HistoryNoGreaterThanOrEqualTo = null; public Short HistoryNoGreaterThan = null; public Short HistoryNoLessThan = null; public Short HistoryNoLessThanOrEqualTo = null; public Short HistoryNoNotEqualTo = null; public ArrayList HistoryNoBetween = null; public ArrayList HistoryNoIn = null; public Date RecordDate = null; public Date RecordDateGreaterThanOrEqualTo = null; public Date RecordDateGreaterThan = null; public Date RecordDateLessThan = null; public Date RecordDateLessThanOrEqualTo = null; public Date RecordDateNotEqualTo = null; public ArrayList RecordDateBetween = null; public ArrayList RecordDateIn = null; public BigDecimal QtyAssembled = null; public BigDecimal QtyAssembledGreaterThanOrEqualTo = null; public BigDecimal QtyAssembledGreaterThan = null; public BigDecimal QtyAssembledLessThan = null; public BigDecimal QtyAssembledLessThanOrEqualTo = null; public BigDecimal QtyAssembledNotEqualTo = null; public ArrayList QtyAssembledBetween = null; public ArrayList QtyAssembledIn = null; public BigDecimal QtyBackOrd = null; public BigDecimal QtyBackOrdGreaterThanOrEqualTo = null; public BigDecimal QtyBackOrdGreaterThan = null; public BigDecimal QtyBackOrdLessThan = null; public BigDecimal QtyBackOrdLessThanOrEqualTo = null; public BigDecimal QtyBackOrdNotEqualTo = null; public ArrayList QtyBackOrdBetween = null; public ArrayList QtyBackOrdIn = null; public String HistoryText = null; public String HistoryTextStartsWith = null; public String HistoryTextEndsWith = null; public String HistoryTextContains = null; public String HistoryTextLike = null; public ArrayList HistoryTextBetween = null; public ArrayList HistoryTextIn = null; public BigDecimal HistoryTotal = null; public BigDecimal HistoryTotalGreaterThanOrEqualTo = null; public BigDecimal HistoryTotalGreaterThan = null; public BigDecimal HistoryTotalLessThan = null; public BigDecimal HistoryTotalLessThanOrEqualTo = null; public BigDecimal HistoryTotalNotEqualTo = null; public ArrayList HistoryTotalBetween = null; public ArrayList HistoryTotalIn = null; public String StartSerialNo = null; public String StartSerialNoStartsWith = null; public String StartSerialNoEndsWith = null; public String StartSerialNoContains = null; public String StartSerialNoLike = null; public ArrayList StartSerialNoBetween = null; public ArrayList StartSerialNoIn = null; public Boolean AutoIncrement = null; public Short ExpiryDays = null; public Short ExpiryDaysGreaterThanOrEqualTo = null; public Short ExpiryDaysGreaterThan = null; public Short ExpiryDaysLessThan = null; public Short ExpiryDaysLessThanOrEqualTo = null; public Short ExpiryDaysNotEqualTo = null; public ArrayList ExpiryDaysBetween = null; public ArrayList ExpiryDaysIn = null; public String getInAssemblyHistoryID() { return INAssemblyHistoryID; } public IN_AssemblyHistoryQuery setInAssemblyHistoryID(String value) { this.INAssemblyHistoryID = value; return this; } public String getInAssemblyHistoryIDStartsWith() { return INAssemblyHistoryIDStartsWith; } public IN_AssemblyHistoryQuery setInAssemblyHistoryIDStartsWith(String value) { this.INAssemblyHistoryIDStartsWith = value; return this; } public String getInAssemblyHistoryIDEndsWith() { return INAssemblyHistoryIDEndsWith; } public IN_AssemblyHistoryQuery setInAssemblyHistoryIDEndsWith(String value) { this.INAssemblyHistoryIDEndsWith = value; return this; } public String getInAssemblyHistoryIDContains() { return INAssemblyHistoryIDContains; } public IN_AssemblyHistoryQuery setInAssemblyHistoryIDContains(String value) { this.INAssemblyHistoryIDContains = value; return this; } public String getInAssemblyHistoryIDLike() { return INAssemblyHistoryIDLike; } public IN_AssemblyHistoryQuery setInAssemblyHistoryIDLike(String value) { this.INAssemblyHistoryIDLike = value; return this; } public ArrayList getInAssemblyHistoryIDBetween() { return INAssemblyHistoryIDBetween; } public IN_AssemblyHistoryQuery setInAssemblyHistoryIDBetween(ArrayList value) { this.INAssemblyHistoryIDBetween = value; return this; } public ArrayList getInAssemblyHistoryIDIn() { return INAssemblyHistoryIDIn; } public IN_AssemblyHistoryQuery setInAssemblyHistoryIDIn(ArrayList value) { this.INAssemblyHistoryIDIn = value; return this; } public String getInAssemblyID() { return INAssemblyID; } public IN_AssemblyHistoryQuery setInAssemblyID(String value) { this.INAssemblyID = value; return this; } public String getInAssemblyIDStartsWith() { return INAssemblyIDStartsWith; } public IN_AssemblyHistoryQuery setInAssemblyIDStartsWith(String value) { this.INAssemblyIDStartsWith = value; return this; } public String getInAssemblyIDEndsWith() { return INAssemblyIDEndsWith; } public IN_AssemblyHistoryQuery setInAssemblyIDEndsWith(String value) { this.INAssemblyIDEndsWith = value; return this; } public String getInAssemblyIDContains() { return INAssemblyIDContains; } public IN_AssemblyHistoryQuery setInAssemblyIDContains(String value) { this.INAssemblyIDContains = value; return this; } public String getInAssemblyIDLike() { return INAssemblyIDLike; } public IN_AssemblyHistoryQuery setInAssemblyIDLike(String value) { this.INAssemblyIDLike = value; return this; } public ArrayList getInAssemblyIDBetween() { return INAssemblyIDBetween; } public IN_AssemblyHistoryQuery setInAssemblyIDBetween(ArrayList value) { this.INAssemblyIDBetween = value; return this; } public ArrayList getInAssemblyIDIn() { return INAssemblyIDIn; } public IN_AssemblyHistoryQuery setInAssemblyIDIn(ArrayList value) { this.INAssemblyIDIn = value; return this; } public Short getHistoryNo() { return HistoryNo; } public IN_AssemblyHistoryQuery setHistoryNo(Short value) { this.HistoryNo = value; return this; } public Short getHistoryNoGreaterThanOrEqualTo() { return HistoryNoGreaterThanOrEqualTo; } public IN_AssemblyHistoryQuery setHistoryNoGreaterThanOrEqualTo(Short value) { this.HistoryNoGreaterThanOrEqualTo = value; return this; } public Short getHistoryNoGreaterThan() { return HistoryNoGreaterThan; } public IN_AssemblyHistoryQuery setHistoryNoGreaterThan(Short value) { this.HistoryNoGreaterThan = value; return this; } public Short getHistoryNoLessThan() { return HistoryNoLessThan; } public IN_AssemblyHistoryQuery setHistoryNoLessThan(Short value) { this.HistoryNoLessThan = value; return this; } public Short getHistoryNoLessThanOrEqualTo() { return HistoryNoLessThanOrEqualTo; } public IN_AssemblyHistoryQuery setHistoryNoLessThanOrEqualTo(Short value) { this.HistoryNoLessThanOrEqualTo = value; return this; } public Short getHistoryNoNotEqualTo() { return HistoryNoNotEqualTo; } public IN_AssemblyHistoryQuery setHistoryNoNotEqualTo(Short value) { this.HistoryNoNotEqualTo = value; return this; } public ArrayList getHistoryNoBetween() { return HistoryNoBetween; } public IN_AssemblyHistoryQuery setHistoryNoBetween(ArrayList value) { this.HistoryNoBetween = value; return this; } public ArrayList getHistoryNoIn() { return HistoryNoIn; } public IN_AssemblyHistoryQuery setHistoryNoIn(ArrayList value) { this.HistoryNoIn = value; return this; } public Date getRecordDate() { return RecordDate; } public IN_AssemblyHistoryQuery setRecordDate(Date value) { this.RecordDate = value; return this; } public Date getRecordDateGreaterThanOrEqualTo() { return RecordDateGreaterThanOrEqualTo; } public IN_AssemblyHistoryQuery setRecordDateGreaterThanOrEqualTo(Date value) { this.RecordDateGreaterThanOrEqualTo = value; return this; } public Date getRecordDateGreaterThan() { return RecordDateGreaterThan; } public IN_AssemblyHistoryQuery setRecordDateGreaterThan(Date value) { this.RecordDateGreaterThan = value; return this; } public Date getRecordDateLessThan() { return RecordDateLessThan; } public IN_AssemblyHistoryQuery setRecordDateLessThan(Date value) { this.RecordDateLessThan = value; return this; } public Date getRecordDateLessThanOrEqualTo() { return RecordDateLessThanOrEqualTo; } public IN_AssemblyHistoryQuery setRecordDateLessThanOrEqualTo(Date value) { this.RecordDateLessThanOrEqualTo = value; return this; } public Date getRecordDateNotEqualTo() { return RecordDateNotEqualTo; } public IN_AssemblyHistoryQuery setRecordDateNotEqualTo(Date value) { this.RecordDateNotEqualTo = value; return this; } public ArrayList getRecordDateBetween() { return RecordDateBetween; } public IN_AssemblyHistoryQuery setRecordDateBetween(ArrayList value) { this.RecordDateBetween = value; return this; } public ArrayList getRecordDateIn() { return RecordDateIn; } public IN_AssemblyHistoryQuery setRecordDateIn(ArrayList value) { this.RecordDateIn = value; return this; } public BigDecimal getQtyAssembled() { return QtyAssembled; } public IN_AssemblyHistoryQuery setQtyAssembled(BigDecimal value) { this.QtyAssembled = value; return this; } public BigDecimal getQtyAssembledGreaterThanOrEqualTo() { return QtyAssembledGreaterThanOrEqualTo; } public IN_AssemblyHistoryQuery setQtyAssembledGreaterThanOrEqualTo(BigDecimal value) { this.QtyAssembledGreaterThanOrEqualTo = value; return this; } public BigDecimal getQtyAssembledGreaterThan() { return QtyAssembledGreaterThan; } public IN_AssemblyHistoryQuery setQtyAssembledGreaterThan(BigDecimal value) { this.QtyAssembledGreaterThan = value; return this; } public BigDecimal getQtyAssembledLessThan() { return QtyAssembledLessThan; } public IN_AssemblyHistoryQuery setQtyAssembledLessThan(BigDecimal value) { this.QtyAssembledLessThan = value; return this; } public BigDecimal getQtyAssembledLessThanOrEqualTo() { return QtyAssembledLessThanOrEqualTo; } public IN_AssemblyHistoryQuery setQtyAssembledLessThanOrEqualTo(BigDecimal value) { this.QtyAssembledLessThanOrEqualTo = value; return this; } public BigDecimal getQtyAssembledNotEqualTo() { return QtyAssembledNotEqualTo; } public IN_AssemblyHistoryQuery setQtyAssembledNotEqualTo(BigDecimal value) { this.QtyAssembledNotEqualTo = value; return this; } public ArrayList getQtyAssembledBetween() { return QtyAssembledBetween; } public IN_AssemblyHistoryQuery setQtyAssembledBetween(ArrayList value) { this.QtyAssembledBetween = value; return this; } public ArrayList getQtyAssembledIn() { return QtyAssembledIn; } public IN_AssemblyHistoryQuery setQtyAssembledIn(ArrayList value) { this.QtyAssembledIn = value; return this; } public BigDecimal getQtyBackOrd() { return QtyBackOrd; } public IN_AssemblyHistoryQuery setQtyBackOrd(BigDecimal value) { this.QtyBackOrd = value; return this; } public BigDecimal getQtyBackOrdGreaterThanOrEqualTo() { return QtyBackOrdGreaterThanOrEqualTo; } public IN_AssemblyHistoryQuery setQtyBackOrdGreaterThanOrEqualTo(BigDecimal value) { this.QtyBackOrdGreaterThanOrEqualTo = value; return this; } public BigDecimal getQtyBackOrdGreaterThan() { return QtyBackOrdGreaterThan; } public IN_AssemblyHistoryQuery setQtyBackOrdGreaterThan(BigDecimal value) { this.QtyBackOrdGreaterThan = value; return this; } public BigDecimal getQtyBackOrdLessThan() { return QtyBackOrdLessThan; } public IN_AssemblyHistoryQuery setQtyBackOrdLessThan(BigDecimal value) { this.QtyBackOrdLessThan = value; return this; } public BigDecimal getQtyBackOrdLessThanOrEqualTo() { return QtyBackOrdLessThanOrEqualTo; } public IN_AssemblyHistoryQuery setQtyBackOrdLessThanOrEqualTo(BigDecimal value) { this.QtyBackOrdLessThanOrEqualTo = value; return this; } public BigDecimal getQtyBackOrdNotEqualTo() { return QtyBackOrdNotEqualTo; } public IN_AssemblyHistoryQuery setQtyBackOrdNotEqualTo(BigDecimal value) { this.QtyBackOrdNotEqualTo = value; return this; } public ArrayList getQtyBackOrdBetween() { return QtyBackOrdBetween; } public IN_AssemblyHistoryQuery setQtyBackOrdBetween(ArrayList value) { this.QtyBackOrdBetween = value; return this; } public ArrayList getQtyBackOrdIn() { return QtyBackOrdIn; } public IN_AssemblyHistoryQuery setQtyBackOrdIn(ArrayList value) { this.QtyBackOrdIn = value; return this; } public String getHistoryText() { return HistoryText; } public IN_AssemblyHistoryQuery setHistoryText(String value) { this.HistoryText = value; return this; } public String getHistoryTextStartsWith() { return HistoryTextStartsWith; } public IN_AssemblyHistoryQuery setHistoryTextStartsWith(String value) { this.HistoryTextStartsWith = value; return this; } public String getHistoryTextEndsWith() { return HistoryTextEndsWith; } public IN_AssemblyHistoryQuery setHistoryTextEndsWith(String value) { this.HistoryTextEndsWith = value; return this; } public String getHistoryTextContains() { return HistoryTextContains; } public IN_AssemblyHistoryQuery setHistoryTextContains(String value) { this.HistoryTextContains = value; return this; } public String getHistoryTextLike() { return HistoryTextLike; } public IN_AssemblyHistoryQuery setHistoryTextLike(String value) { this.HistoryTextLike = value; return this; } public ArrayList getHistoryTextBetween() { return HistoryTextBetween; } public IN_AssemblyHistoryQuery setHistoryTextBetween(ArrayList value) { this.HistoryTextBetween = value; return this; } public ArrayList getHistoryTextIn() { return HistoryTextIn; } public IN_AssemblyHistoryQuery setHistoryTextIn(ArrayList value) { this.HistoryTextIn = value; return this; } public BigDecimal getHistoryTotal() { return HistoryTotal; } public IN_AssemblyHistoryQuery setHistoryTotal(BigDecimal value) { this.HistoryTotal = value; return this; } public BigDecimal getHistoryTotalGreaterThanOrEqualTo() { return HistoryTotalGreaterThanOrEqualTo; } public IN_AssemblyHistoryQuery setHistoryTotalGreaterThanOrEqualTo(BigDecimal value) { this.HistoryTotalGreaterThanOrEqualTo = value; return this; } public BigDecimal getHistoryTotalGreaterThan() { return HistoryTotalGreaterThan; } public IN_AssemblyHistoryQuery setHistoryTotalGreaterThan(BigDecimal value) { this.HistoryTotalGreaterThan = value; return this; } public BigDecimal getHistoryTotalLessThan() { return HistoryTotalLessThan; } public IN_AssemblyHistoryQuery setHistoryTotalLessThan(BigDecimal value) { this.HistoryTotalLessThan = value; return this; } public BigDecimal getHistoryTotalLessThanOrEqualTo() { return HistoryTotalLessThanOrEqualTo; } public IN_AssemblyHistoryQuery setHistoryTotalLessThanOrEqualTo(BigDecimal value) { this.HistoryTotalLessThanOrEqualTo = value; return this; } public BigDecimal getHistoryTotalNotEqualTo() { return HistoryTotalNotEqualTo; } public IN_AssemblyHistoryQuery setHistoryTotalNotEqualTo(BigDecimal value) { this.HistoryTotalNotEqualTo = value; return this; } public ArrayList getHistoryTotalBetween() { return HistoryTotalBetween; } public IN_AssemblyHistoryQuery setHistoryTotalBetween(ArrayList value) { this.HistoryTotalBetween = value; return this; } public ArrayList getHistoryTotalIn() { return HistoryTotalIn; } public IN_AssemblyHistoryQuery setHistoryTotalIn(ArrayList value) { this.HistoryTotalIn = value; return this; } public String getStartSerialNo() { return StartSerialNo; } public IN_AssemblyHistoryQuery setStartSerialNo(String value) { this.StartSerialNo = value; return this; } public String getStartSerialNoStartsWith() { return StartSerialNoStartsWith; } public IN_AssemblyHistoryQuery setStartSerialNoStartsWith(String value) { this.StartSerialNoStartsWith = value; return this; } public String getStartSerialNoEndsWith() { return StartSerialNoEndsWith; } public IN_AssemblyHistoryQuery setStartSerialNoEndsWith(String value) { this.StartSerialNoEndsWith = value; return this; } public String getStartSerialNoContains() { return StartSerialNoContains; } public IN_AssemblyHistoryQuery setStartSerialNoContains(String value) { this.StartSerialNoContains = value; return this; } public String getStartSerialNoLike() { return StartSerialNoLike; } public IN_AssemblyHistoryQuery setStartSerialNoLike(String value) { this.StartSerialNoLike = value; return this; } public ArrayList getStartSerialNoBetween() { return StartSerialNoBetween; } public IN_AssemblyHistoryQuery setStartSerialNoBetween(ArrayList value) { this.StartSerialNoBetween = value; return this; } public ArrayList getStartSerialNoIn() { return StartSerialNoIn; } public IN_AssemblyHistoryQuery setStartSerialNoIn(ArrayList value) { this.StartSerialNoIn = value; return this; } public Boolean isAutoIncrement() { return AutoIncrement; } public IN_AssemblyHistoryQuery setAutoIncrement(Boolean value) { this.AutoIncrement = value; return this; } public Short getExpiryDays() { return ExpiryDays; } public IN_AssemblyHistoryQuery setExpiryDays(Short value) { this.ExpiryDays = value; return this; } public Short getExpiryDaysGreaterThanOrEqualTo() { return ExpiryDaysGreaterThanOrEqualTo; } public IN_AssemblyHistoryQuery setExpiryDaysGreaterThanOrEqualTo(Short value) { this.ExpiryDaysGreaterThanOrEqualTo = value; return this; } public Short getExpiryDaysGreaterThan() { return ExpiryDaysGreaterThan; } public IN_AssemblyHistoryQuery setExpiryDaysGreaterThan(Short value) { this.ExpiryDaysGreaterThan = value; return this; } public Short getExpiryDaysLessThan() { return ExpiryDaysLessThan; } public IN_AssemblyHistoryQuery setExpiryDaysLessThan(Short value) { this.ExpiryDaysLessThan = value; return this; } public Short getExpiryDaysLessThanOrEqualTo() { return ExpiryDaysLessThanOrEqualTo; } public IN_AssemblyHistoryQuery setExpiryDaysLessThanOrEqualTo(Short value) { this.ExpiryDaysLessThanOrEqualTo = value; return this; } public Short getExpiryDaysNotEqualTo() { return ExpiryDaysNotEqualTo; } public IN_AssemblyHistoryQuery setExpiryDaysNotEqualTo(Short value) { this.ExpiryDaysNotEqualTo = value; return this; } public ArrayList getExpiryDaysBetween() { return ExpiryDaysBetween; } public IN_AssemblyHistoryQuery setExpiryDaysBetween(ArrayList value) { this.ExpiryDaysBetween = value; return this; } public ArrayList getExpiryDaysIn() { return ExpiryDaysIn; } public IN_AssemblyHistoryQuery setExpiryDaysIn(ArrayList value) { this.ExpiryDaysIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class IN_AssemblyLineDetailsQuery extends QueryDb implements IReturn> { public String INAssemblyLineDetailsID = null; public String INAssemblyLineDetailsIDStartsWith = null; public String INAssemblyLineDetailsIDEndsWith = null; public String INAssemblyLineDetailsIDContains = null; public String INAssemblyLineDetailsIDLike = null; public ArrayList INAssemblyLineDetailsIDBetween = null; public ArrayList INAssemblyLineDetailsIDIn = null; public String INAssemblyHistoryID = null; public String INAssemblyHistoryIDStartsWith = null; public String INAssemblyHistoryIDEndsWith = null; public String INAssemblyHistoryIDContains = null; public String INAssemblyHistoryIDLike = null; public ArrayList INAssemblyHistoryIDBetween = null; public ArrayList INAssemblyHistoryIDIn = null; public String INAssemblyLineID = null; public String INAssemblyLineIDStartsWith = null; public String INAssemblyLineIDEndsWith = null; public String INAssemblyLineIDContains = null; public String INAssemblyLineIDLike = null; public ArrayList INAssemblyLineIDBetween = null; public ArrayList INAssemblyLineIDIn = null; public String SOHID = null; public String SOHIDStartsWith = null; public String SOHIDEndsWith = null; public String SOHIDContains = null; public String SOHIDLike = null; public ArrayList SOHIDBetween = null; public ArrayList SOHIDIn = null; public BigDecimal Cost = null; public BigDecimal CostGreaterThanOrEqualTo = null; public BigDecimal CostGreaterThan = null; public BigDecimal CostLessThan = null; public BigDecimal CostLessThanOrEqualTo = null; public BigDecimal CostNotEqualTo = null; public ArrayList CostBetween = null; public ArrayList CostIn = null; public BigDecimal SpecialPrice = null; public BigDecimal SpecialPriceGreaterThanOrEqualTo = null; public BigDecimal SpecialPriceGreaterThan = null; public BigDecimal SpecialPriceLessThan = null; public BigDecimal SpecialPriceLessThanOrEqualTo = null; public BigDecimal SpecialPriceNotEqualTo = null; public ArrayList SpecialPriceBetween = null; public ArrayList SpecialPriceIn = null; public BigDecimal Quantity = null; public BigDecimal QuantityGreaterThanOrEqualTo = null; public BigDecimal QuantityGreaterThan = null; public BigDecimal QuantityLessThan = null; public BigDecimal QuantityLessThanOrEqualTo = null; public BigDecimal QuantityNotEqualTo = null; public ArrayList QuantityBetween = null; public ArrayList QuantityIn = null; public BigDecimal TaxPaid = null; public BigDecimal TaxPaidGreaterThanOrEqualTo = null; public BigDecimal TaxPaidGreaterThan = null; public BigDecimal TaxPaidLessThan = null; public BigDecimal TaxPaidLessThanOrEqualTo = null; public BigDecimal TaxPaidNotEqualTo = null; public ArrayList TaxPaidBetween = null; public ArrayList TaxPaidIn = null; public String SerialNo = null; public String SerialNoStartsWith = null; public String SerialNoEndsWith = null; public String SerialNoContains = null; public String SerialNoLike = null; public ArrayList SerialNoBetween = null; public ArrayList SerialNoIn = null; public String getInAssemblyLineDetailsID() { return INAssemblyLineDetailsID; } public IN_AssemblyLineDetailsQuery setInAssemblyLineDetailsID(String value) { this.INAssemblyLineDetailsID = value; return this; } public String getInAssemblyLineDetailsIDStartsWith() { return INAssemblyLineDetailsIDStartsWith; } public IN_AssemblyLineDetailsQuery setInAssemblyLineDetailsIDStartsWith(String value) { this.INAssemblyLineDetailsIDStartsWith = value; return this; } public String getInAssemblyLineDetailsIDEndsWith() { return INAssemblyLineDetailsIDEndsWith; } public IN_AssemblyLineDetailsQuery setInAssemblyLineDetailsIDEndsWith(String value) { this.INAssemblyLineDetailsIDEndsWith = value; return this; } public String getInAssemblyLineDetailsIDContains() { return INAssemblyLineDetailsIDContains; } public IN_AssemblyLineDetailsQuery setInAssemblyLineDetailsIDContains(String value) { this.INAssemblyLineDetailsIDContains = value; return this; } public String getInAssemblyLineDetailsIDLike() { return INAssemblyLineDetailsIDLike; } public IN_AssemblyLineDetailsQuery setInAssemblyLineDetailsIDLike(String value) { this.INAssemblyLineDetailsIDLike = value; return this; } public ArrayList getInAssemblyLineDetailsIDBetween() { return INAssemblyLineDetailsIDBetween; } public IN_AssemblyLineDetailsQuery setInAssemblyLineDetailsIDBetween(ArrayList value) { this.INAssemblyLineDetailsIDBetween = value; return this; } public ArrayList getInAssemblyLineDetailsIDIn() { return INAssemblyLineDetailsIDIn; } public IN_AssemblyLineDetailsQuery setInAssemblyLineDetailsIDIn(ArrayList value) { this.INAssemblyLineDetailsIDIn = value; return this; } public String getInAssemblyHistoryID() { return INAssemblyHistoryID; } public IN_AssemblyLineDetailsQuery setInAssemblyHistoryID(String value) { this.INAssemblyHistoryID = value; return this; } public String getInAssemblyHistoryIDStartsWith() { return INAssemblyHistoryIDStartsWith; } public IN_AssemblyLineDetailsQuery setInAssemblyHistoryIDStartsWith(String value) { this.INAssemblyHistoryIDStartsWith = value; return this; } public String getInAssemblyHistoryIDEndsWith() { return INAssemblyHistoryIDEndsWith; } public IN_AssemblyLineDetailsQuery setInAssemblyHistoryIDEndsWith(String value) { this.INAssemblyHistoryIDEndsWith = value; return this; } public String getInAssemblyHistoryIDContains() { return INAssemblyHistoryIDContains; } public IN_AssemblyLineDetailsQuery setInAssemblyHistoryIDContains(String value) { this.INAssemblyHistoryIDContains = value; return this; } public String getInAssemblyHistoryIDLike() { return INAssemblyHistoryIDLike; } public IN_AssemblyLineDetailsQuery setInAssemblyHistoryIDLike(String value) { this.INAssemblyHistoryIDLike = value; return this; } public ArrayList getInAssemblyHistoryIDBetween() { return INAssemblyHistoryIDBetween; } public IN_AssemblyLineDetailsQuery setInAssemblyHistoryIDBetween(ArrayList value) { this.INAssemblyHistoryIDBetween = value; return this; } public ArrayList getInAssemblyHistoryIDIn() { return INAssemblyHistoryIDIn; } public IN_AssemblyLineDetailsQuery setInAssemblyHistoryIDIn(ArrayList value) { this.INAssemblyHistoryIDIn = value; return this; } public String getInAssemblyLineID() { return INAssemblyLineID; } public IN_AssemblyLineDetailsQuery setInAssemblyLineID(String value) { this.INAssemblyLineID = value; return this; } public String getInAssemblyLineIDStartsWith() { return INAssemblyLineIDStartsWith; } public IN_AssemblyLineDetailsQuery setInAssemblyLineIDStartsWith(String value) { this.INAssemblyLineIDStartsWith = value; return this; } public String getInAssemblyLineIDEndsWith() { return INAssemblyLineIDEndsWith; } public IN_AssemblyLineDetailsQuery setInAssemblyLineIDEndsWith(String value) { this.INAssemblyLineIDEndsWith = value; return this; } public String getInAssemblyLineIDContains() { return INAssemblyLineIDContains; } public IN_AssemblyLineDetailsQuery setInAssemblyLineIDContains(String value) { this.INAssemblyLineIDContains = value; return this; } public String getInAssemblyLineIDLike() { return INAssemblyLineIDLike; } public IN_AssemblyLineDetailsQuery setInAssemblyLineIDLike(String value) { this.INAssemblyLineIDLike = value; return this; } public ArrayList getInAssemblyLineIDBetween() { return INAssemblyLineIDBetween; } public IN_AssemblyLineDetailsQuery setInAssemblyLineIDBetween(ArrayList value) { this.INAssemblyLineIDBetween = value; return this; } public ArrayList getInAssemblyLineIDIn() { return INAssemblyLineIDIn; } public IN_AssemblyLineDetailsQuery setInAssemblyLineIDIn(ArrayList value) { this.INAssemblyLineIDIn = value; return this; } public String getSohid() { return SOHID; } public IN_AssemblyLineDetailsQuery setSohid(String value) { this.SOHID = value; return this; } public String getSohidStartsWith() { return SOHIDStartsWith; } public IN_AssemblyLineDetailsQuery setSohidStartsWith(String value) { this.SOHIDStartsWith = value; return this; } public String getSohidEndsWith() { return SOHIDEndsWith; } public IN_AssemblyLineDetailsQuery setSohidEndsWith(String value) { this.SOHIDEndsWith = value; return this; } public String getSohidContains() { return SOHIDContains; } public IN_AssemblyLineDetailsQuery setSohidContains(String value) { this.SOHIDContains = value; return this; } public String getSohidLike() { return SOHIDLike; } public IN_AssemblyLineDetailsQuery setSohidLike(String value) { this.SOHIDLike = value; return this; } public ArrayList getSohidBetween() { return SOHIDBetween; } public IN_AssemblyLineDetailsQuery setSohidBetween(ArrayList value) { this.SOHIDBetween = value; return this; } public ArrayList getSohidIn() { return SOHIDIn; } public IN_AssemblyLineDetailsQuery setSohidIn(ArrayList value) { this.SOHIDIn = value; return this; } public BigDecimal getCost() { return Cost; } public IN_AssemblyLineDetailsQuery setCost(BigDecimal value) { this.Cost = value; return this; } public BigDecimal getCostGreaterThanOrEqualTo() { return CostGreaterThanOrEqualTo; } public IN_AssemblyLineDetailsQuery setCostGreaterThanOrEqualTo(BigDecimal value) { this.CostGreaterThanOrEqualTo = value; return this; } public BigDecimal getCostGreaterThan() { return CostGreaterThan; } public IN_AssemblyLineDetailsQuery setCostGreaterThan(BigDecimal value) { this.CostGreaterThan = value; return this; } public BigDecimal getCostLessThan() { return CostLessThan; } public IN_AssemblyLineDetailsQuery setCostLessThan(BigDecimal value) { this.CostLessThan = value; return this; } public BigDecimal getCostLessThanOrEqualTo() { return CostLessThanOrEqualTo; } public IN_AssemblyLineDetailsQuery setCostLessThanOrEqualTo(BigDecimal value) { this.CostLessThanOrEqualTo = value; return this; } public BigDecimal getCostNotEqualTo() { return CostNotEqualTo; } public IN_AssemblyLineDetailsQuery setCostNotEqualTo(BigDecimal value) { this.CostNotEqualTo = value; return this; } public ArrayList getCostBetween() { return CostBetween; } public IN_AssemblyLineDetailsQuery setCostBetween(ArrayList value) { this.CostBetween = value; return this; } public ArrayList getCostIn() { return CostIn; } public IN_AssemblyLineDetailsQuery setCostIn(ArrayList value) { this.CostIn = value; return this; } public BigDecimal getSpecialPrice() { return SpecialPrice; } public IN_AssemblyLineDetailsQuery setSpecialPrice(BigDecimal value) { this.SpecialPrice = value; return this; } public BigDecimal getSpecialPriceGreaterThanOrEqualTo() { return SpecialPriceGreaterThanOrEqualTo; } public IN_AssemblyLineDetailsQuery setSpecialPriceGreaterThanOrEqualTo(BigDecimal value) { this.SpecialPriceGreaterThanOrEqualTo = value; return this; } public BigDecimal getSpecialPriceGreaterThan() { return SpecialPriceGreaterThan; } public IN_AssemblyLineDetailsQuery setSpecialPriceGreaterThan(BigDecimal value) { this.SpecialPriceGreaterThan = value; return this; } public BigDecimal getSpecialPriceLessThan() { return SpecialPriceLessThan; } public IN_AssemblyLineDetailsQuery setSpecialPriceLessThan(BigDecimal value) { this.SpecialPriceLessThan = value; return this; } public BigDecimal getSpecialPriceLessThanOrEqualTo() { return SpecialPriceLessThanOrEqualTo; } public IN_AssemblyLineDetailsQuery setSpecialPriceLessThanOrEqualTo(BigDecimal value) { this.SpecialPriceLessThanOrEqualTo = value; return this; } public BigDecimal getSpecialPriceNotEqualTo() { return SpecialPriceNotEqualTo; } public IN_AssemblyLineDetailsQuery setSpecialPriceNotEqualTo(BigDecimal value) { this.SpecialPriceNotEqualTo = value; return this; } public ArrayList getSpecialPriceBetween() { return SpecialPriceBetween; } public IN_AssemblyLineDetailsQuery setSpecialPriceBetween(ArrayList value) { this.SpecialPriceBetween = value; return this; } public ArrayList getSpecialPriceIn() { return SpecialPriceIn; } public IN_AssemblyLineDetailsQuery setSpecialPriceIn(ArrayList value) { this.SpecialPriceIn = value; return this; } public BigDecimal getQuantity() { return Quantity; } public IN_AssemblyLineDetailsQuery setQuantity(BigDecimal value) { this.Quantity = value; return this; } public BigDecimal getQuantityGreaterThanOrEqualTo() { return QuantityGreaterThanOrEqualTo; } public IN_AssemblyLineDetailsQuery setQuantityGreaterThanOrEqualTo(BigDecimal value) { this.QuantityGreaterThanOrEqualTo = value; return this; } public BigDecimal getQuantityGreaterThan() { return QuantityGreaterThan; } public IN_AssemblyLineDetailsQuery setQuantityGreaterThan(BigDecimal value) { this.QuantityGreaterThan = value; return this; } public BigDecimal getQuantityLessThan() { return QuantityLessThan; } public IN_AssemblyLineDetailsQuery setQuantityLessThan(BigDecimal value) { this.QuantityLessThan = value; return this; } public BigDecimal getQuantityLessThanOrEqualTo() { return QuantityLessThanOrEqualTo; } public IN_AssemblyLineDetailsQuery setQuantityLessThanOrEqualTo(BigDecimal value) { this.QuantityLessThanOrEqualTo = value; return this; } public BigDecimal getQuantityNotEqualTo() { return QuantityNotEqualTo; } public IN_AssemblyLineDetailsQuery setQuantityNotEqualTo(BigDecimal value) { this.QuantityNotEqualTo = value; return this; } public ArrayList getQuantityBetween() { return QuantityBetween; } public IN_AssemblyLineDetailsQuery setQuantityBetween(ArrayList value) { this.QuantityBetween = value; return this; } public ArrayList getQuantityIn() { return QuantityIn; } public IN_AssemblyLineDetailsQuery setQuantityIn(ArrayList value) { this.QuantityIn = value; return this; } public BigDecimal getTaxPaid() { return TaxPaid; } public IN_AssemblyLineDetailsQuery setTaxPaid(BigDecimal value) { this.TaxPaid = value; return this; } public BigDecimal getTaxPaidGreaterThanOrEqualTo() { return TaxPaidGreaterThanOrEqualTo; } public IN_AssemblyLineDetailsQuery setTaxPaidGreaterThanOrEqualTo(BigDecimal value) { this.TaxPaidGreaterThanOrEqualTo = value; return this; } public BigDecimal getTaxPaidGreaterThan() { return TaxPaidGreaterThan; } public IN_AssemblyLineDetailsQuery setTaxPaidGreaterThan(BigDecimal value) { this.TaxPaidGreaterThan = value; return this; } public BigDecimal getTaxPaidLessThan() { return TaxPaidLessThan; } public IN_AssemblyLineDetailsQuery setTaxPaidLessThan(BigDecimal value) { this.TaxPaidLessThan = value; return this; } public BigDecimal getTaxPaidLessThanOrEqualTo() { return TaxPaidLessThanOrEqualTo; } public IN_AssemblyLineDetailsQuery setTaxPaidLessThanOrEqualTo(BigDecimal value) { this.TaxPaidLessThanOrEqualTo = value; return this; } public BigDecimal getTaxPaidNotEqualTo() { return TaxPaidNotEqualTo; } public IN_AssemblyLineDetailsQuery setTaxPaidNotEqualTo(BigDecimal value) { this.TaxPaidNotEqualTo = value; return this; } public ArrayList getTaxPaidBetween() { return TaxPaidBetween; } public IN_AssemblyLineDetailsQuery setTaxPaidBetween(ArrayList value) { this.TaxPaidBetween = value; return this; } public ArrayList getTaxPaidIn() { return TaxPaidIn; } public IN_AssemblyLineDetailsQuery setTaxPaidIn(ArrayList value) { this.TaxPaidIn = value; return this; } public String getSerialNo() { return SerialNo; } public IN_AssemblyLineDetailsQuery setSerialNo(String value) { this.SerialNo = value; return this; } public String getSerialNoStartsWith() { return SerialNoStartsWith; } public IN_AssemblyLineDetailsQuery setSerialNoStartsWith(String value) { this.SerialNoStartsWith = value; return this; } public String getSerialNoEndsWith() { return SerialNoEndsWith; } public IN_AssemblyLineDetailsQuery setSerialNoEndsWith(String value) { this.SerialNoEndsWith = value; return this; } public String getSerialNoContains() { return SerialNoContains; } public IN_AssemblyLineDetailsQuery setSerialNoContains(String value) { this.SerialNoContains = value; return this; } public String getSerialNoLike() { return SerialNoLike; } public IN_AssemblyLineDetailsQuery setSerialNoLike(String value) { this.SerialNoLike = value; return this; } public ArrayList getSerialNoBetween() { return SerialNoBetween; } public IN_AssemblyLineDetailsQuery setSerialNoBetween(ArrayList value) { this.SerialNoBetween = value; return this; } public ArrayList getSerialNoIn() { return SerialNoIn; } public IN_AssemblyLineDetailsQuery setSerialNoIn(ArrayList value) { this.SerialNoIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class IN_AssemblyLinesQuery extends QueryDb implements IReturn> { public String INAssemblyLineID = null; public String INAssemblyLineIDStartsWith = null; public String INAssemblyLineIDEndsWith = null; public String INAssemblyLineIDContains = null; public String INAssemblyLineIDLike = null; public ArrayList INAssemblyLineIDBetween = null; public ArrayList INAssemblyLineIDIn = null; public String INAssemblyHistoryID = null; public String INAssemblyHistoryIDStartsWith = null; public String INAssemblyHistoryIDEndsWith = null; public String INAssemblyHistoryIDContains = null; public String INAssemblyHistoryIDLike = null; public ArrayList INAssemblyHistoryIDBetween = null; public ArrayList INAssemblyHistoryIDIn = null; public Short LineNum = null; public Short LineNumGreaterThanOrEqualTo = null; public Short LineNumGreaterThan = null; public Short LineNumLessThan = null; public Short LineNumLessThanOrEqualTo = null; public Short LineNumNotEqualTo = null; public ArrayList LineNumBetween = null; public ArrayList LineNumIn = null; public String ComponentID = null; public String ComponentIDStartsWith = null; public String ComponentIDEndsWith = null; public String ComponentIDContains = null; public String ComponentIDLike = null; public ArrayList ComponentIDBetween = null; public ArrayList ComponentIDIn = null; public String PartNo = null; public String PartNoStartsWith = null; public String PartNoEndsWith = null; public String PartNoContains = null; public String PartNoLike = null; public ArrayList PartNoBetween = null; public ArrayList PartNoIn = null; public String Description = null; public String DescriptionStartsWith = null; public String DescriptionEndsWith = null; public String DescriptionContains = null; public String DescriptionLike = null; public ArrayList DescriptionBetween = null; public ArrayList DescriptionIn = null; public Short DecimalPlaces = null; public Short DecimalPlacesGreaterThanOrEqualTo = null; public Short DecimalPlacesGreaterThan = null; public Short DecimalPlacesLessThan = null; public Short DecimalPlacesLessThanOrEqualTo = null; public Short DecimalPlacesNotEqualTo = null; public ArrayList DecimalPlacesBetween = null; public ArrayList DecimalPlacesIn = null; public BigDecimal CostPrice = null; public BigDecimal CostPriceGreaterThanOrEqualTo = null; public BigDecimal CostPriceGreaterThan = null; public BigDecimal CostPriceLessThan = null; public BigDecimal CostPriceLessThanOrEqualTo = null; public BigDecimal CostPriceNotEqualTo = null; public ArrayList CostPriceBetween = null; public ArrayList CostPriceIn = null; public BigDecimal QtyNeeded = null; public BigDecimal QtyNeededGreaterThanOrEqualTo = null; public BigDecimal QtyNeededGreaterThan = null; public BigDecimal QtyNeededLessThan = null; public BigDecimal QtyNeededLessThanOrEqualTo = null; public BigDecimal QtyNeededNotEqualTo = null; public ArrayList QtyNeededBetween = null; public ArrayList QtyNeededIn = null; public BigDecimal QtyRequired = null; public BigDecimal QtyRequiredGreaterThanOrEqualTo = null; public BigDecimal QtyRequiredGreaterThan = null; public BigDecimal QtyRequiredLessThan = null; public BigDecimal QtyRequiredLessThanOrEqualTo = null; public BigDecimal QtyRequiredNotEqualTo = null; public ArrayList QtyRequiredBetween = null; public ArrayList QtyRequiredIn = null; public BigDecimal QtyAvailable = null; public BigDecimal QtyAvailableGreaterThanOrEqualTo = null; public BigDecimal QtyAvailableGreaterThan = null; public BigDecimal QtyAvailableLessThan = null; public BigDecimal QtyAvailableLessThanOrEqualTo = null; public BigDecimal QtyAvailableNotEqualTo = null; public ArrayList QtyAvailableBetween = null; public ArrayList QtyAvailableIn = null; public BigDecimal QtyOutstanding = null; public BigDecimal QtyOutstandingGreaterThanOrEqualTo = null; public BigDecimal QtyOutstandingGreaterThan = null; public BigDecimal QtyOutstandingLessThan = null; public BigDecimal QtyOutstandingLessThanOrEqualTo = null; public BigDecimal QtyOutstandingNotEqualTo = null; public ArrayList QtyOutstandingBetween = null; public ArrayList QtyOutstandingIn = null; public BigDecimal ThisAssemble = null; public BigDecimal ThisAssembleGreaterThanOrEqualTo = null; public BigDecimal ThisAssembleGreaterThan = null; public BigDecimal ThisAssembleLessThan = null; public BigDecimal ThisAssembleLessThanOrEqualTo = null; public BigDecimal ThisAssembleNotEqualTo = null; public ArrayList ThisAssembleBetween = null; public ArrayList ThisAssembleIn = null; public BigDecimal PrevAssemble = null; public BigDecimal PrevAssembleGreaterThanOrEqualTo = null; public BigDecimal PrevAssembleGreaterThan = null; public BigDecimal PrevAssembleLessThan = null; public BigDecimal PrevAssembleLessThanOrEqualTo = null; public BigDecimal PrevAssembleNotEqualTo = null; public ArrayList PrevAssembleBetween = null; public ArrayList PrevAssembleIn = null; public String getInAssemblyLineID() { return INAssemblyLineID; } public IN_AssemblyLinesQuery setInAssemblyLineID(String value) { this.INAssemblyLineID = value; return this; } public String getInAssemblyLineIDStartsWith() { return INAssemblyLineIDStartsWith; } public IN_AssemblyLinesQuery setInAssemblyLineIDStartsWith(String value) { this.INAssemblyLineIDStartsWith = value; return this; } public String getInAssemblyLineIDEndsWith() { return INAssemblyLineIDEndsWith; } public IN_AssemblyLinesQuery setInAssemblyLineIDEndsWith(String value) { this.INAssemblyLineIDEndsWith = value; return this; } public String getInAssemblyLineIDContains() { return INAssemblyLineIDContains; } public IN_AssemblyLinesQuery setInAssemblyLineIDContains(String value) { this.INAssemblyLineIDContains = value; return this; } public String getInAssemblyLineIDLike() { return INAssemblyLineIDLike; } public IN_AssemblyLinesQuery setInAssemblyLineIDLike(String value) { this.INAssemblyLineIDLike = value; return this; } public ArrayList getInAssemblyLineIDBetween() { return INAssemblyLineIDBetween; } public IN_AssemblyLinesQuery setInAssemblyLineIDBetween(ArrayList value) { this.INAssemblyLineIDBetween = value; return this; } public ArrayList getInAssemblyLineIDIn() { return INAssemblyLineIDIn; } public IN_AssemblyLinesQuery setInAssemblyLineIDIn(ArrayList value) { this.INAssemblyLineIDIn = value; return this; } public String getInAssemblyHistoryID() { return INAssemblyHistoryID; } public IN_AssemblyLinesQuery setInAssemblyHistoryID(String value) { this.INAssemblyHistoryID = value; return this; } public String getInAssemblyHistoryIDStartsWith() { return INAssemblyHistoryIDStartsWith; } public IN_AssemblyLinesQuery setInAssemblyHistoryIDStartsWith(String value) { this.INAssemblyHistoryIDStartsWith = value; return this; } public String getInAssemblyHistoryIDEndsWith() { return INAssemblyHistoryIDEndsWith; } public IN_AssemblyLinesQuery setInAssemblyHistoryIDEndsWith(String value) { this.INAssemblyHistoryIDEndsWith = value; return this; } public String getInAssemblyHistoryIDContains() { return INAssemblyHistoryIDContains; } public IN_AssemblyLinesQuery setInAssemblyHistoryIDContains(String value) { this.INAssemblyHistoryIDContains = value; return this; } public String getInAssemblyHistoryIDLike() { return INAssemblyHistoryIDLike; } public IN_AssemblyLinesQuery setInAssemblyHistoryIDLike(String value) { this.INAssemblyHistoryIDLike = value; return this; } public ArrayList getInAssemblyHistoryIDBetween() { return INAssemblyHistoryIDBetween; } public IN_AssemblyLinesQuery setInAssemblyHistoryIDBetween(ArrayList value) { this.INAssemblyHistoryIDBetween = value; return this; } public ArrayList getInAssemblyHistoryIDIn() { return INAssemblyHistoryIDIn; } public IN_AssemblyLinesQuery setInAssemblyHistoryIDIn(ArrayList value) { this.INAssemblyHistoryIDIn = value; return this; } public Short getLineNum() { return LineNum; } public IN_AssemblyLinesQuery setLineNum(Short value) { this.LineNum = value; return this; } public Short getLineNumGreaterThanOrEqualTo() { return LineNumGreaterThanOrEqualTo; } public IN_AssemblyLinesQuery setLineNumGreaterThanOrEqualTo(Short value) { this.LineNumGreaterThanOrEqualTo = value; return this; } public Short getLineNumGreaterThan() { return LineNumGreaterThan; } public IN_AssemblyLinesQuery setLineNumGreaterThan(Short value) { this.LineNumGreaterThan = value; return this; } public Short getLineNumLessThan() { return LineNumLessThan; } public IN_AssemblyLinesQuery setLineNumLessThan(Short value) { this.LineNumLessThan = value; return this; } public Short getLineNumLessThanOrEqualTo() { return LineNumLessThanOrEqualTo; } public IN_AssemblyLinesQuery setLineNumLessThanOrEqualTo(Short value) { this.LineNumLessThanOrEqualTo = value; return this; } public Short getLineNumNotEqualTo() { return LineNumNotEqualTo; } public IN_AssemblyLinesQuery setLineNumNotEqualTo(Short value) { this.LineNumNotEqualTo = value; return this; } public ArrayList getLineNumBetween() { return LineNumBetween; } public IN_AssemblyLinesQuery setLineNumBetween(ArrayList value) { this.LineNumBetween = value; return this; } public ArrayList getLineNumIn() { return LineNumIn; } public IN_AssemblyLinesQuery setLineNumIn(ArrayList value) { this.LineNumIn = value; return this; } public String getComponentID() { return ComponentID; } public IN_AssemblyLinesQuery setComponentID(String value) { this.ComponentID = value; return this; } public String getComponentIDStartsWith() { return ComponentIDStartsWith; } public IN_AssemblyLinesQuery setComponentIDStartsWith(String value) { this.ComponentIDStartsWith = value; return this; } public String getComponentIDEndsWith() { return ComponentIDEndsWith; } public IN_AssemblyLinesQuery setComponentIDEndsWith(String value) { this.ComponentIDEndsWith = value; return this; } public String getComponentIDContains() { return ComponentIDContains; } public IN_AssemblyLinesQuery setComponentIDContains(String value) { this.ComponentIDContains = value; return this; } public String getComponentIDLike() { return ComponentIDLike; } public IN_AssemblyLinesQuery setComponentIDLike(String value) { this.ComponentIDLike = value; return this; } public ArrayList getComponentIDBetween() { return ComponentIDBetween; } public IN_AssemblyLinesQuery setComponentIDBetween(ArrayList value) { this.ComponentIDBetween = value; return this; } public ArrayList getComponentIDIn() { return ComponentIDIn; } public IN_AssemblyLinesQuery setComponentIDIn(ArrayList value) { this.ComponentIDIn = value; return this; } public String getPartNo() { return PartNo; } public IN_AssemblyLinesQuery setPartNo(String value) { this.PartNo = value; return this; } public String getPartNoStartsWith() { return PartNoStartsWith; } public IN_AssemblyLinesQuery setPartNoStartsWith(String value) { this.PartNoStartsWith = value; return this; } public String getPartNoEndsWith() { return PartNoEndsWith; } public IN_AssemblyLinesQuery setPartNoEndsWith(String value) { this.PartNoEndsWith = value; return this; } public String getPartNoContains() { return PartNoContains; } public IN_AssemblyLinesQuery setPartNoContains(String value) { this.PartNoContains = value; return this; } public String getPartNoLike() { return PartNoLike; } public IN_AssemblyLinesQuery setPartNoLike(String value) { this.PartNoLike = value; return this; } public ArrayList getPartNoBetween() { return PartNoBetween; } public IN_AssemblyLinesQuery setPartNoBetween(ArrayList value) { this.PartNoBetween = value; return this; } public ArrayList getPartNoIn() { return PartNoIn; } public IN_AssemblyLinesQuery setPartNoIn(ArrayList value) { this.PartNoIn = value; return this; } public String getDescription() { return Description; } public IN_AssemblyLinesQuery setDescription(String value) { this.Description = value; return this; } public String getDescriptionStartsWith() { return DescriptionStartsWith; } public IN_AssemblyLinesQuery setDescriptionStartsWith(String value) { this.DescriptionStartsWith = value; return this; } public String getDescriptionEndsWith() { return DescriptionEndsWith; } public IN_AssemblyLinesQuery setDescriptionEndsWith(String value) { this.DescriptionEndsWith = value; return this; } public String getDescriptionContains() { return DescriptionContains; } public IN_AssemblyLinesQuery setDescriptionContains(String value) { this.DescriptionContains = value; return this; } public String getDescriptionLike() { return DescriptionLike; } public IN_AssemblyLinesQuery setDescriptionLike(String value) { this.DescriptionLike = value; return this; } public ArrayList getDescriptionBetween() { return DescriptionBetween; } public IN_AssemblyLinesQuery setDescriptionBetween(ArrayList value) { this.DescriptionBetween = value; return this; } public ArrayList getDescriptionIn() { return DescriptionIn; } public IN_AssemblyLinesQuery setDescriptionIn(ArrayList value) { this.DescriptionIn = value; return this; } public Short getDecimalPlaces() { return DecimalPlaces; } public IN_AssemblyLinesQuery setDecimalPlaces(Short value) { this.DecimalPlaces = value; return this; } public Short getDecimalPlacesGreaterThanOrEqualTo() { return DecimalPlacesGreaterThanOrEqualTo; } public IN_AssemblyLinesQuery setDecimalPlacesGreaterThanOrEqualTo(Short value) { this.DecimalPlacesGreaterThanOrEqualTo = value; return this; } public Short getDecimalPlacesGreaterThan() { return DecimalPlacesGreaterThan; } public IN_AssemblyLinesQuery setDecimalPlacesGreaterThan(Short value) { this.DecimalPlacesGreaterThan = value; return this; } public Short getDecimalPlacesLessThan() { return DecimalPlacesLessThan; } public IN_AssemblyLinesQuery setDecimalPlacesLessThan(Short value) { this.DecimalPlacesLessThan = value; return this; } public Short getDecimalPlacesLessThanOrEqualTo() { return DecimalPlacesLessThanOrEqualTo; } public IN_AssemblyLinesQuery setDecimalPlacesLessThanOrEqualTo(Short value) { this.DecimalPlacesLessThanOrEqualTo = value; return this; } public Short getDecimalPlacesNotEqualTo() { return DecimalPlacesNotEqualTo; } public IN_AssemblyLinesQuery setDecimalPlacesNotEqualTo(Short value) { this.DecimalPlacesNotEqualTo = value; return this; } public ArrayList getDecimalPlacesBetween() { return DecimalPlacesBetween; } public IN_AssemblyLinesQuery setDecimalPlacesBetween(ArrayList value) { this.DecimalPlacesBetween = value; return this; } public ArrayList getDecimalPlacesIn() { return DecimalPlacesIn; } public IN_AssemblyLinesQuery setDecimalPlacesIn(ArrayList value) { this.DecimalPlacesIn = value; return this; } public BigDecimal getCostPrice() { return CostPrice; } public IN_AssemblyLinesQuery setCostPrice(BigDecimal value) { this.CostPrice = value; return this; } public BigDecimal getCostPriceGreaterThanOrEqualTo() { return CostPriceGreaterThanOrEqualTo; } public IN_AssemblyLinesQuery setCostPriceGreaterThanOrEqualTo(BigDecimal value) { this.CostPriceGreaterThanOrEqualTo = value; return this; } public BigDecimal getCostPriceGreaterThan() { return CostPriceGreaterThan; } public IN_AssemblyLinesQuery setCostPriceGreaterThan(BigDecimal value) { this.CostPriceGreaterThan = value; return this; } public BigDecimal getCostPriceLessThan() { return CostPriceLessThan; } public IN_AssemblyLinesQuery setCostPriceLessThan(BigDecimal value) { this.CostPriceLessThan = value; return this; } public BigDecimal getCostPriceLessThanOrEqualTo() { return CostPriceLessThanOrEqualTo; } public IN_AssemblyLinesQuery setCostPriceLessThanOrEqualTo(BigDecimal value) { this.CostPriceLessThanOrEqualTo = value; return this; } public BigDecimal getCostPriceNotEqualTo() { return CostPriceNotEqualTo; } public IN_AssemblyLinesQuery setCostPriceNotEqualTo(BigDecimal value) { this.CostPriceNotEqualTo = value; return this; } public ArrayList getCostPriceBetween() { return CostPriceBetween; } public IN_AssemblyLinesQuery setCostPriceBetween(ArrayList value) { this.CostPriceBetween = value; return this; } public ArrayList getCostPriceIn() { return CostPriceIn; } public IN_AssemblyLinesQuery setCostPriceIn(ArrayList value) { this.CostPriceIn = value; return this; } public BigDecimal getQtyNeeded() { return QtyNeeded; } public IN_AssemblyLinesQuery setQtyNeeded(BigDecimal value) { this.QtyNeeded = value; return this; } public BigDecimal getQtyNeededGreaterThanOrEqualTo() { return QtyNeededGreaterThanOrEqualTo; } public IN_AssemblyLinesQuery setQtyNeededGreaterThanOrEqualTo(BigDecimal value) { this.QtyNeededGreaterThanOrEqualTo = value; return this; } public BigDecimal getQtyNeededGreaterThan() { return QtyNeededGreaterThan; } public IN_AssemblyLinesQuery setQtyNeededGreaterThan(BigDecimal value) { this.QtyNeededGreaterThan = value; return this; } public BigDecimal getQtyNeededLessThan() { return QtyNeededLessThan; } public IN_AssemblyLinesQuery setQtyNeededLessThan(BigDecimal value) { this.QtyNeededLessThan = value; return this; } public BigDecimal getQtyNeededLessThanOrEqualTo() { return QtyNeededLessThanOrEqualTo; } public IN_AssemblyLinesQuery setQtyNeededLessThanOrEqualTo(BigDecimal value) { this.QtyNeededLessThanOrEqualTo = value; return this; } public BigDecimal getQtyNeededNotEqualTo() { return QtyNeededNotEqualTo; } public IN_AssemblyLinesQuery setQtyNeededNotEqualTo(BigDecimal value) { this.QtyNeededNotEqualTo = value; return this; } public ArrayList getQtyNeededBetween() { return QtyNeededBetween; } public IN_AssemblyLinesQuery setQtyNeededBetween(ArrayList value) { this.QtyNeededBetween = value; return this; } public ArrayList getQtyNeededIn() { return QtyNeededIn; } public IN_AssemblyLinesQuery setQtyNeededIn(ArrayList value) { this.QtyNeededIn = value; return this; } public BigDecimal getQtyRequired() { return QtyRequired; } public IN_AssemblyLinesQuery setQtyRequired(BigDecimal value) { this.QtyRequired = value; return this; } public BigDecimal getQtyRequiredGreaterThanOrEqualTo() { return QtyRequiredGreaterThanOrEqualTo; } public IN_AssemblyLinesQuery setQtyRequiredGreaterThanOrEqualTo(BigDecimal value) { this.QtyRequiredGreaterThanOrEqualTo = value; return this; } public BigDecimal getQtyRequiredGreaterThan() { return QtyRequiredGreaterThan; } public IN_AssemblyLinesQuery setQtyRequiredGreaterThan(BigDecimal value) { this.QtyRequiredGreaterThan = value; return this; } public BigDecimal getQtyRequiredLessThan() { return QtyRequiredLessThan; } public IN_AssemblyLinesQuery setQtyRequiredLessThan(BigDecimal value) { this.QtyRequiredLessThan = value; return this; } public BigDecimal getQtyRequiredLessThanOrEqualTo() { return QtyRequiredLessThanOrEqualTo; } public IN_AssemblyLinesQuery setQtyRequiredLessThanOrEqualTo(BigDecimal value) { this.QtyRequiredLessThanOrEqualTo = value; return this; } public BigDecimal getQtyRequiredNotEqualTo() { return QtyRequiredNotEqualTo; } public IN_AssemblyLinesQuery setQtyRequiredNotEqualTo(BigDecimal value) { this.QtyRequiredNotEqualTo = value; return this; } public ArrayList getQtyRequiredBetween() { return QtyRequiredBetween; } public IN_AssemblyLinesQuery setQtyRequiredBetween(ArrayList value) { this.QtyRequiredBetween = value; return this; } public ArrayList getQtyRequiredIn() { return QtyRequiredIn; } public IN_AssemblyLinesQuery setQtyRequiredIn(ArrayList value) { this.QtyRequiredIn = value; return this; } public BigDecimal getQtyAvailable() { return QtyAvailable; } public IN_AssemblyLinesQuery setQtyAvailable(BigDecimal value) { this.QtyAvailable = value; return this; } public BigDecimal getQtyAvailableGreaterThanOrEqualTo() { return QtyAvailableGreaterThanOrEqualTo; } public IN_AssemblyLinesQuery setQtyAvailableGreaterThanOrEqualTo(BigDecimal value) { this.QtyAvailableGreaterThanOrEqualTo = value; return this; } public BigDecimal getQtyAvailableGreaterThan() { return QtyAvailableGreaterThan; } public IN_AssemblyLinesQuery setQtyAvailableGreaterThan(BigDecimal value) { this.QtyAvailableGreaterThan = value; return this; } public BigDecimal getQtyAvailableLessThan() { return QtyAvailableLessThan; } public IN_AssemblyLinesQuery setQtyAvailableLessThan(BigDecimal value) { this.QtyAvailableLessThan = value; return this; } public BigDecimal getQtyAvailableLessThanOrEqualTo() { return QtyAvailableLessThanOrEqualTo; } public IN_AssemblyLinesQuery setQtyAvailableLessThanOrEqualTo(BigDecimal value) { this.QtyAvailableLessThanOrEqualTo = value; return this; } public BigDecimal getQtyAvailableNotEqualTo() { return QtyAvailableNotEqualTo; } public IN_AssemblyLinesQuery setQtyAvailableNotEqualTo(BigDecimal value) { this.QtyAvailableNotEqualTo = value; return this; } public ArrayList getQtyAvailableBetween() { return QtyAvailableBetween; } public IN_AssemblyLinesQuery setQtyAvailableBetween(ArrayList value) { this.QtyAvailableBetween = value; return this; } public ArrayList getQtyAvailableIn() { return QtyAvailableIn; } public IN_AssemblyLinesQuery setQtyAvailableIn(ArrayList value) { this.QtyAvailableIn = value; return this; } public BigDecimal getQtyOutstanding() { return QtyOutstanding; } public IN_AssemblyLinesQuery setQtyOutstanding(BigDecimal value) { this.QtyOutstanding = value; return this; } public BigDecimal getQtyOutstandingGreaterThanOrEqualTo() { return QtyOutstandingGreaterThanOrEqualTo; } public IN_AssemblyLinesQuery setQtyOutstandingGreaterThanOrEqualTo(BigDecimal value) { this.QtyOutstandingGreaterThanOrEqualTo = value; return this; } public BigDecimal getQtyOutstandingGreaterThan() { return QtyOutstandingGreaterThan; } public IN_AssemblyLinesQuery setQtyOutstandingGreaterThan(BigDecimal value) { this.QtyOutstandingGreaterThan = value; return this; } public BigDecimal getQtyOutstandingLessThan() { return QtyOutstandingLessThan; } public IN_AssemblyLinesQuery setQtyOutstandingLessThan(BigDecimal value) { this.QtyOutstandingLessThan = value; return this; } public BigDecimal getQtyOutstandingLessThanOrEqualTo() { return QtyOutstandingLessThanOrEqualTo; } public IN_AssemblyLinesQuery setQtyOutstandingLessThanOrEqualTo(BigDecimal value) { this.QtyOutstandingLessThanOrEqualTo = value; return this; } public BigDecimal getQtyOutstandingNotEqualTo() { return QtyOutstandingNotEqualTo; } public IN_AssemblyLinesQuery setQtyOutstandingNotEqualTo(BigDecimal value) { this.QtyOutstandingNotEqualTo = value; return this; } public ArrayList getQtyOutstandingBetween() { return QtyOutstandingBetween; } public IN_AssemblyLinesQuery setQtyOutstandingBetween(ArrayList value) { this.QtyOutstandingBetween = value; return this; } public ArrayList getQtyOutstandingIn() { return QtyOutstandingIn; } public IN_AssemblyLinesQuery setQtyOutstandingIn(ArrayList value) { this.QtyOutstandingIn = value; return this; } public BigDecimal getThisAssemble() { return ThisAssemble; } public IN_AssemblyLinesQuery setThisAssemble(BigDecimal value) { this.ThisAssemble = value; return this; } public BigDecimal getThisAssembleGreaterThanOrEqualTo() { return ThisAssembleGreaterThanOrEqualTo; } public IN_AssemblyLinesQuery setThisAssembleGreaterThanOrEqualTo(BigDecimal value) { this.ThisAssembleGreaterThanOrEqualTo = value; return this; } public BigDecimal getThisAssembleGreaterThan() { return ThisAssembleGreaterThan; } public IN_AssemblyLinesQuery setThisAssembleGreaterThan(BigDecimal value) { this.ThisAssembleGreaterThan = value; return this; } public BigDecimal getThisAssembleLessThan() { return ThisAssembleLessThan; } public IN_AssemblyLinesQuery setThisAssembleLessThan(BigDecimal value) { this.ThisAssembleLessThan = value; return this; } public BigDecimal getThisAssembleLessThanOrEqualTo() { return ThisAssembleLessThanOrEqualTo; } public IN_AssemblyLinesQuery setThisAssembleLessThanOrEqualTo(BigDecimal value) { this.ThisAssembleLessThanOrEqualTo = value; return this; } public BigDecimal getThisAssembleNotEqualTo() { return ThisAssembleNotEqualTo; } public IN_AssemblyLinesQuery setThisAssembleNotEqualTo(BigDecimal value) { this.ThisAssembleNotEqualTo = value; return this; } public ArrayList getThisAssembleBetween() { return ThisAssembleBetween; } public IN_AssemblyLinesQuery setThisAssembleBetween(ArrayList value) { this.ThisAssembleBetween = value; return this; } public ArrayList getThisAssembleIn() { return ThisAssembleIn; } public IN_AssemblyLinesQuery setThisAssembleIn(ArrayList value) { this.ThisAssembleIn = value; return this; } public BigDecimal getPrevAssemble() { return PrevAssemble; } public IN_AssemblyLinesQuery setPrevAssemble(BigDecimal value) { this.PrevAssemble = value; return this; } public BigDecimal getPrevAssembleGreaterThanOrEqualTo() { return PrevAssembleGreaterThanOrEqualTo; } public IN_AssemblyLinesQuery setPrevAssembleGreaterThanOrEqualTo(BigDecimal value) { this.PrevAssembleGreaterThanOrEqualTo = value; return this; } public BigDecimal getPrevAssembleGreaterThan() { return PrevAssembleGreaterThan; } public IN_AssemblyLinesQuery setPrevAssembleGreaterThan(BigDecimal value) { this.PrevAssembleGreaterThan = value; return this; } public BigDecimal getPrevAssembleLessThan() { return PrevAssembleLessThan; } public IN_AssemblyLinesQuery setPrevAssembleLessThan(BigDecimal value) { this.PrevAssembleLessThan = value; return this; } public BigDecimal getPrevAssembleLessThanOrEqualTo() { return PrevAssembleLessThanOrEqualTo; } public IN_AssemblyLinesQuery setPrevAssembleLessThanOrEqualTo(BigDecimal value) { this.PrevAssembleLessThanOrEqualTo = value; return this; } public BigDecimal getPrevAssembleNotEqualTo() { return PrevAssembleNotEqualTo; } public IN_AssemblyLinesQuery setPrevAssembleNotEqualTo(BigDecimal value) { this.PrevAssembleNotEqualTo = value; return this; } public ArrayList getPrevAssembleBetween() { return PrevAssembleBetween; } public IN_AssemblyLinesQuery setPrevAssembleBetween(ArrayList value) { this.PrevAssembleBetween = value; return this; } public ArrayList getPrevAssembleIn() { return PrevAssembleIn; } public IN_AssemblyLinesQuery setPrevAssembleIn(ArrayList value) { this.PrevAssembleIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class IN_AttributeGroupQuery extends QueryDb implements IReturn> { public UUID RecID = null; public ArrayList RecIDIn = null; public UUID IN_AttributeGroupTemplate_RecID = null; public ArrayList IN_AttributeGroupTemplate_RecIDIn = null; public String IN_Main_InventoryID = null; public String IN_Main_InventoryIDStartsWith = null; public String IN_Main_InventoryIDEndsWith = null; public String IN_Main_InventoryIDContains = null; public String IN_Main_InventoryIDLike = null; public ArrayList IN_Main_InventoryIDBetween = null; public ArrayList IN_Main_InventoryIDIn = null; public Date LastSavedDateTime = null; public Date LastSavedDateTimeGreaterThanOrEqualTo = null; public Date LastSavedDateTimeGreaterThan = null; public Date LastSavedDateTimeLessThan = null; public Date LastSavedDateTimeLessThanOrEqualTo = null; public Date LastSavedDateTimeNotEqualTo = null; public ArrayList LastSavedDateTimeBetween = null; public ArrayList LastSavedDateTimeIn = null; public String Description = null; public String DescriptionStartsWith = null; public String DescriptionEndsWith = null; public String DescriptionContains = null; public String DescriptionLike = null; public ArrayList DescriptionBetween = null; public ArrayList DescriptionIn = null; public Integer ItemNo = null; public Integer ItemNoGreaterThanOrEqualTo = null; public Integer ItemNoGreaterThan = null; public Integer ItemNoLessThan = null; public Integer ItemNoLessThanOrEqualTo = null; public Integer ItemNoNotEqualTo = null; public ArrayList ItemNoBetween = null; public ArrayList ItemNoIn = null; public ArrayList RowHash = null; public UUID getRecID() { return RecID; } public IN_AttributeGroupQuery setRecID(UUID value) { this.RecID = value; return this; } public ArrayList getRecIDIn() { return RecIDIn; } public IN_AttributeGroupQuery setRecIDIn(ArrayList value) { this.RecIDIn = value; return this; } public UUID getInAttributeGroupTemplateRecID() { return IN_AttributeGroupTemplate_RecID; } public IN_AttributeGroupQuery setInAttributeGroupTemplateRecID(UUID value) { this.IN_AttributeGroupTemplate_RecID = value; return this; } public ArrayList getInAttributeGroupTemplateRecIDIn() { return IN_AttributeGroupTemplate_RecIDIn; } public IN_AttributeGroupQuery setInAttributeGroupTemplateRecIDIn(ArrayList value) { this.IN_AttributeGroupTemplate_RecIDIn = value; return this; } public String getInMainInventoryID() { return IN_Main_InventoryID; } public IN_AttributeGroupQuery setInMainInventoryID(String value) { this.IN_Main_InventoryID = value; return this; } public String getInMainInventoryIDStartsWith() { return IN_Main_InventoryIDStartsWith; } public IN_AttributeGroupQuery setInMainInventoryIDStartsWith(String value) { this.IN_Main_InventoryIDStartsWith = value; return this; } public String getInMainInventoryIDEndsWith() { return IN_Main_InventoryIDEndsWith; } public IN_AttributeGroupQuery setInMainInventoryIDEndsWith(String value) { this.IN_Main_InventoryIDEndsWith = value; return this; } public String getInMainInventoryIDContains() { return IN_Main_InventoryIDContains; } public IN_AttributeGroupQuery setInMainInventoryIDContains(String value) { this.IN_Main_InventoryIDContains = value; return this; } public String getInMainInventoryIDLike() { return IN_Main_InventoryIDLike; } public IN_AttributeGroupQuery setInMainInventoryIDLike(String value) { this.IN_Main_InventoryIDLike = value; return this; } public ArrayList getInMainInventoryIDBetween() { return IN_Main_InventoryIDBetween; } public IN_AttributeGroupQuery setInMainInventoryIDBetween(ArrayList value) { this.IN_Main_InventoryIDBetween = value; return this; } public ArrayList getInMainInventoryIDIn() { return IN_Main_InventoryIDIn; } public IN_AttributeGroupQuery setInMainInventoryIDIn(ArrayList value) { this.IN_Main_InventoryIDIn = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public IN_AttributeGroupQuery setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getLastSavedDateTimeGreaterThanOrEqualTo() { return LastSavedDateTimeGreaterThanOrEqualTo; } public IN_AttributeGroupQuery setLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.LastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeGreaterThan() { return LastSavedDateTimeGreaterThan; } public IN_AttributeGroupQuery setLastSavedDateTimeGreaterThan(Date value) { this.LastSavedDateTimeGreaterThan = value; return this; } public Date getLastSavedDateTimeLessThan() { return LastSavedDateTimeLessThan; } public IN_AttributeGroupQuery setLastSavedDateTimeLessThan(Date value) { this.LastSavedDateTimeLessThan = value; return this; } public Date getLastSavedDateTimeLessThanOrEqualTo() { return LastSavedDateTimeLessThanOrEqualTo; } public IN_AttributeGroupQuery setLastSavedDateTimeLessThanOrEqualTo(Date value) { this.LastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeNotEqualTo() { return LastSavedDateTimeNotEqualTo; } public IN_AttributeGroupQuery setLastSavedDateTimeNotEqualTo(Date value) { this.LastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getLastSavedDateTimeBetween() { return LastSavedDateTimeBetween; } public IN_AttributeGroupQuery setLastSavedDateTimeBetween(ArrayList value) { this.LastSavedDateTimeBetween = value; return this; } public ArrayList getLastSavedDateTimeIn() { return LastSavedDateTimeIn; } public IN_AttributeGroupQuery setLastSavedDateTimeIn(ArrayList value) { this.LastSavedDateTimeIn = value; return this; } public String getDescription() { return Description; } public IN_AttributeGroupQuery setDescription(String value) { this.Description = value; return this; } public String getDescriptionStartsWith() { return DescriptionStartsWith; } public IN_AttributeGroupQuery setDescriptionStartsWith(String value) { this.DescriptionStartsWith = value; return this; } public String getDescriptionEndsWith() { return DescriptionEndsWith; } public IN_AttributeGroupQuery setDescriptionEndsWith(String value) { this.DescriptionEndsWith = value; return this; } public String getDescriptionContains() { return DescriptionContains; } public IN_AttributeGroupQuery setDescriptionContains(String value) { this.DescriptionContains = value; return this; } public String getDescriptionLike() { return DescriptionLike; } public IN_AttributeGroupQuery setDescriptionLike(String value) { this.DescriptionLike = value; return this; } public ArrayList getDescriptionBetween() { return DescriptionBetween; } public IN_AttributeGroupQuery setDescriptionBetween(ArrayList value) { this.DescriptionBetween = value; return this; } public ArrayList getDescriptionIn() { return DescriptionIn; } public IN_AttributeGroupQuery setDescriptionIn(ArrayList value) { this.DescriptionIn = value; return this; } public Integer getItemNo() { return ItemNo; } public IN_AttributeGroupQuery setItemNo(Integer value) { this.ItemNo = value; return this; } public Integer getItemNoGreaterThanOrEqualTo() { return ItemNoGreaterThanOrEqualTo; } public IN_AttributeGroupQuery setItemNoGreaterThanOrEqualTo(Integer value) { this.ItemNoGreaterThanOrEqualTo = value; return this; } public Integer getItemNoGreaterThan() { return ItemNoGreaterThan; } public IN_AttributeGroupQuery setItemNoGreaterThan(Integer value) { this.ItemNoGreaterThan = value; return this; } public Integer getItemNoLessThan() { return ItemNoLessThan; } public IN_AttributeGroupQuery setItemNoLessThan(Integer value) { this.ItemNoLessThan = value; return this; } public Integer getItemNoLessThanOrEqualTo() { return ItemNoLessThanOrEqualTo; } public IN_AttributeGroupQuery setItemNoLessThanOrEqualTo(Integer value) { this.ItemNoLessThanOrEqualTo = value; return this; } public Integer getItemNoNotEqualTo() { return ItemNoNotEqualTo; } public IN_AttributeGroupQuery setItemNoNotEqualTo(Integer value) { this.ItemNoNotEqualTo = value; return this; } public ArrayList getItemNoBetween() { return ItemNoBetween; } public IN_AttributeGroupQuery setItemNoBetween(ArrayList value) { this.ItemNoBetween = value; return this; } public ArrayList getItemNoIn() { return ItemNoIn; } public IN_AttributeGroupQuery setItemNoIn(ArrayList value) { this.ItemNoIn = value; return this; } public ArrayList getRowHash() { return RowHash; } public IN_AttributeGroupQuery setRowHash(ArrayList value) { this.RowHash = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class IN_AttributeGroupAttributeValueQuery extends QueryDb implements IReturn> { public UUID RecID = null; public ArrayList RecIDIn = null; public UUID IN_AttributeGroupTemplateAttribute_RecID = null; public ArrayList IN_AttributeGroupTemplateAttribute_RecIDIn = null; public UUID IN_AttributeGroup_RecID = null; public ArrayList IN_AttributeGroup_RecIDIn = null; public Date LastSavedDateTime = null; public Date LastSavedDateTimeGreaterThanOrEqualTo = null; public Date LastSavedDateTimeGreaterThan = null; public Date LastSavedDateTimeLessThan = null; public Date LastSavedDateTimeLessThanOrEqualTo = null; public Date LastSavedDateTimeNotEqualTo = null; public ArrayList LastSavedDateTimeBetween = null; public ArrayList LastSavedDateTimeIn = null; public String Contents = null; public String ContentsStartsWith = null; public String ContentsEndsWith = null; public String ContentsContains = null; public String ContentsLike = null; public ArrayList ContentsBetween = null; public ArrayList ContentsIn = null; public ArrayList RowHash = null; public UUID getRecID() { return RecID; } public IN_AttributeGroupAttributeValueQuery setRecID(UUID value) { this.RecID = value; return this; } public ArrayList getRecIDIn() { return RecIDIn; } public IN_AttributeGroupAttributeValueQuery setRecIDIn(ArrayList value) { this.RecIDIn = value; return this; } public UUID getInAttributeGroupTemplateAttributeRecID() { return IN_AttributeGroupTemplateAttribute_RecID; } public IN_AttributeGroupAttributeValueQuery setInAttributeGroupTemplateAttributeRecID(UUID value) { this.IN_AttributeGroupTemplateAttribute_RecID = value; return this; } public ArrayList getInAttributeGroupTemplateAttributeRecIDIn() { return IN_AttributeGroupTemplateAttribute_RecIDIn; } public IN_AttributeGroupAttributeValueQuery setInAttributeGroupTemplateAttributeRecIDIn(ArrayList value) { this.IN_AttributeGroupTemplateAttribute_RecIDIn = value; return this; } public UUID getInAttributeGroupRecID() { return IN_AttributeGroup_RecID; } public IN_AttributeGroupAttributeValueQuery setInAttributeGroupRecID(UUID value) { this.IN_AttributeGroup_RecID = value; return this; } public ArrayList getInAttributeGroupRecIDIn() { return IN_AttributeGroup_RecIDIn; } public IN_AttributeGroupAttributeValueQuery setInAttributeGroupRecIDIn(ArrayList value) { this.IN_AttributeGroup_RecIDIn = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public IN_AttributeGroupAttributeValueQuery setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getLastSavedDateTimeGreaterThanOrEqualTo() { return LastSavedDateTimeGreaterThanOrEqualTo; } public IN_AttributeGroupAttributeValueQuery setLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.LastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeGreaterThan() { return LastSavedDateTimeGreaterThan; } public IN_AttributeGroupAttributeValueQuery setLastSavedDateTimeGreaterThan(Date value) { this.LastSavedDateTimeGreaterThan = value; return this; } public Date getLastSavedDateTimeLessThan() { return LastSavedDateTimeLessThan; } public IN_AttributeGroupAttributeValueQuery setLastSavedDateTimeLessThan(Date value) { this.LastSavedDateTimeLessThan = value; return this; } public Date getLastSavedDateTimeLessThanOrEqualTo() { return LastSavedDateTimeLessThanOrEqualTo; } public IN_AttributeGroupAttributeValueQuery setLastSavedDateTimeLessThanOrEqualTo(Date value) { this.LastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeNotEqualTo() { return LastSavedDateTimeNotEqualTo; } public IN_AttributeGroupAttributeValueQuery setLastSavedDateTimeNotEqualTo(Date value) { this.LastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getLastSavedDateTimeBetween() { return LastSavedDateTimeBetween; } public IN_AttributeGroupAttributeValueQuery setLastSavedDateTimeBetween(ArrayList value) { this.LastSavedDateTimeBetween = value; return this; } public ArrayList getLastSavedDateTimeIn() { return LastSavedDateTimeIn; } public IN_AttributeGroupAttributeValueQuery setLastSavedDateTimeIn(ArrayList value) { this.LastSavedDateTimeIn = value; return this; } public String getContents() { return Contents; } public IN_AttributeGroupAttributeValueQuery setContents(String value) { this.Contents = value; return this; } public String getContentsStartsWith() { return ContentsStartsWith; } public IN_AttributeGroupAttributeValueQuery setContentsStartsWith(String value) { this.ContentsStartsWith = value; return this; } public String getContentsEndsWith() { return ContentsEndsWith; } public IN_AttributeGroupAttributeValueQuery setContentsEndsWith(String value) { this.ContentsEndsWith = value; return this; } public String getContentsContains() { return ContentsContains; } public IN_AttributeGroupAttributeValueQuery setContentsContains(String value) { this.ContentsContains = value; return this; } public String getContentsLike() { return ContentsLike; } public IN_AttributeGroupAttributeValueQuery setContentsLike(String value) { this.ContentsLike = value; return this; } public ArrayList getContentsBetween() { return ContentsBetween; } public IN_AttributeGroupAttributeValueQuery setContentsBetween(ArrayList value) { this.ContentsBetween = value; return this; } public ArrayList getContentsIn() { return ContentsIn; } public IN_AttributeGroupAttributeValueQuery setContentsIn(ArrayList value) { this.ContentsIn = value; return this; } public ArrayList getRowHash() { return RowHash; } public IN_AttributeGroupAttributeValueQuery setRowHash(ArrayList value) { this.RowHash = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @Route(Path="/Queries/IN_AttributeGroupTemplate", Verbs="GET") @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class IN_AttributeGroupTemplateQuery extends QueryDb implements IReturn> { public UUID RecID = null; public ArrayList RecIDIn = null; public String Name = null; public String NameStartsWith = null; public String NameEndsWith = null; public String NameContains = null; public String NameLike = null; public ArrayList NameBetween = null; public ArrayList NameIn = null; public Boolean IsEnabled = null; public String Code = null; public String CodeStartsWith = null; public String CodeEndsWith = null; public String CodeContains = null; public String CodeLike = null; public ArrayList CodeBetween = null; public ArrayList CodeIn = null; public ArrayList RowHash = null; public Date LastSavedDateTime = null; public Date LastSavedDateTimeGreaterThanOrEqualTo = null; public Date LastSavedDateTimeGreaterThan = null; public Date LastSavedDateTimeLessThan = null; public Date LastSavedDateTimeLessThanOrEqualTo = null; public Date LastSavedDateTimeNotEqualTo = null; public ArrayList LastSavedDateTimeBetween = null; public ArrayList LastSavedDateTimeIn = null; public UUID getRecID() { return RecID; } public IN_AttributeGroupTemplateQuery setRecID(UUID value) { this.RecID = value; return this; } public ArrayList getRecIDIn() { return RecIDIn; } public IN_AttributeGroupTemplateQuery setRecIDIn(ArrayList value) { this.RecIDIn = value; return this; } public String getName() { return Name; } public IN_AttributeGroupTemplateQuery setName(String value) { this.Name = value; return this; } public String getNameStartsWith() { return NameStartsWith; } public IN_AttributeGroupTemplateQuery setNameStartsWith(String value) { this.NameStartsWith = value; return this; } public String getNameEndsWith() { return NameEndsWith; } public IN_AttributeGroupTemplateQuery setNameEndsWith(String value) { this.NameEndsWith = value; return this; } public String getNameContains() { return NameContains; } public IN_AttributeGroupTemplateQuery setNameContains(String value) { this.NameContains = value; return this; } public String getNameLike() { return NameLike; } public IN_AttributeGroupTemplateQuery setNameLike(String value) { this.NameLike = value; return this; } public ArrayList getNameBetween() { return NameBetween; } public IN_AttributeGroupTemplateQuery setNameBetween(ArrayList value) { this.NameBetween = value; return this; } public ArrayList getNameIn() { return NameIn; } public IN_AttributeGroupTemplateQuery setNameIn(ArrayList value) { this.NameIn = value; return this; } public Boolean getIsEnabled() { return IsEnabled; } public IN_AttributeGroupTemplateQuery setIsEnabled(Boolean value) { this.IsEnabled = value; return this; } public String getCode() { return Code; } public IN_AttributeGroupTemplateQuery setCode(String value) { this.Code = value; return this; } public String getCodeStartsWith() { return CodeStartsWith; } public IN_AttributeGroupTemplateQuery setCodeStartsWith(String value) { this.CodeStartsWith = value; return this; } public String getCodeEndsWith() { return CodeEndsWith; } public IN_AttributeGroupTemplateQuery setCodeEndsWith(String value) { this.CodeEndsWith = value; return this; } public String getCodeContains() { return CodeContains; } public IN_AttributeGroupTemplateQuery setCodeContains(String value) { this.CodeContains = value; return this; } public String getCodeLike() { return CodeLike; } public IN_AttributeGroupTemplateQuery setCodeLike(String value) { this.CodeLike = value; return this; } public ArrayList getCodeBetween() { return CodeBetween; } public IN_AttributeGroupTemplateQuery setCodeBetween(ArrayList value) { this.CodeBetween = value; return this; } public ArrayList getCodeIn() { return CodeIn; } public IN_AttributeGroupTemplateQuery setCodeIn(ArrayList value) { this.CodeIn = value; return this; } public ArrayList getRowHash() { return RowHash; } public IN_AttributeGroupTemplateQuery setRowHash(ArrayList value) { this.RowHash = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public IN_AttributeGroupTemplateQuery setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getLastSavedDateTimeGreaterThanOrEqualTo() { return LastSavedDateTimeGreaterThanOrEqualTo; } public IN_AttributeGroupTemplateQuery setLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.LastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeGreaterThan() { return LastSavedDateTimeGreaterThan; } public IN_AttributeGroupTemplateQuery setLastSavedDateTimeGreaterThan(Date value) { this.LastSavedDateTimeGreaterThan = value; return this; } public Date getLastSavedDateTimeLessThan() { return LastSavedDateTimeLessThan; } public IN_AttributeGroupTemplateQuery setLastSavedDateTimeLessThan(Date value) { this.LastSavedDateTimeLessThan = value; return this; } public Date getLastSavedDateTimeLessThanOrEqualTo() { return LastSavedDateTimeLessThanOrEqualTo; } public IN_AttributeGroupTemplateQuery setLastSavedDateTimeLessThanOrEqualTo(Date value) { this.LastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeNotEqualTo() { return LastSavedDateTimeNotEqualTo; } public IN_AttributeGroupTemplateQuery setLastSavedDateTimeNotEqualTo(Date value) { this.LastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getLastSavedDateTimeBetween() { return LastSavedDateTimeBetween; } public IN_AttributeGroupTemplateQuery setLastSavedDateTimeBetween(ArrayList value) { this.LastSavedDateTimeBetween = value; return this; } public ArrayList getLastSavedDateTimeIn() { return LastSavedDateTimeIn; } public IN_AttributeGroupTemplateQuery setLastSavedDateTimeIn(ArrayList value) { this.LastSavedDateTimeIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class IN_AttributeGroupTemplateAttributeQuery extends QueryDb implements IReturn> { public UUID RecID = null; public ArrayList RecIDIn = null; public UUID IN_AttributeGroupTemplate_RecID = null; public ArrayList IN_AttributeGroupTemplate_RecIDIn = null; public String Name = null; public String NameStartsWith = null; public String NameEndsWith = null; public String NameContains = null; public String NameLike = null; public ArrayList NameBetween = null; public ArrayList NameIn = null; public Short AttributeType = null; public Short AttributeTypeGreaterThanOrEqualTo = null; public Short AttributeTypeGreaterThan = null; public Short AttributeTypeLessThan = null; public Short AttributeTypeLessThanOrEqualTo = null; public Short AttributeTypeNotEqualTo = null; public ArrayList AttributeTypeBetween = null; public ArrayList AttributeTypeIn = null; public String ComboText = null; public String ComboTextStartsWith = null; public String ComboTextEndsWith = null; public String ComboTextContains = null; public String ComboTextLike = null; public ArrayList ComboTextBetween = null; public ArrayList ComboTextIn = null; public String DefaultValue = null; public String DefaultValueStartsWith = null; public String DefaultValueEndsWith = null; public String DefaultValueContains = null; public String DefaultValueLike = null; public ArrayList DefaultValueBetween = null; public ArrayList DefaultValueIn = null; public Integer ItemNo = null; public Integer ItemNoGreaterThanOrEqualTo = null; public Integer ItemNoGreaterThan = null; public Integer ItemNoLessThan = null; public Integer ItemNoLessThanOrEqualTo = null; public Integer ItemNoNotEqualTo = null; public ArrayList ItemNoBetween = null; public ArrayList ItemNoIn = null; public ArrayList RowHash = null; public Date LastSavedDateTime = null; public Date LastSavedDateTimeGreaterThanOrEqualTo = null; public Date LastSavedDateTimeGreaterThan = null; public Date LastSavedDateTimeLessThan = null; public Date LastSavedDateTimeLessThanOrEqualTo = null; public Date LastSavedDateTimeNotEqualTo = null; public ArrayList LastSavedDateTimeBetween = null; public ArrayList LastSavedDateTimeIn = null; public UUID getRecID() { return RecID; } public IN_AttributeGroupTemplateAttributeQuery setRecID(UUID value) { this.RecID = value; return this; } public ArrayList getRecIDIn() { return RecIDIn; } public IN_AttributeGroupTemplateAttributeQuery setRecIDIn(ArrayList value) { this.RecIDIn = value; return this; } public UUID getInAttributeGroupTemplateRecID() { return IN_AttributeGroupTemplate_RecID; } public IN_AttributeGroupTemplateAttributeQuery setInAttributeGroupTemplateRecID(UUID value) { this.IN_AttributeGroupTemplate_RecID = value; return this; } public ArrayList getInAttributeGroupTemplateRecIDIn() { return IN_AttributeGroupTemplate_RecIDIn; } public IN_AttributeGroupTemplateAttributeQuery setInAttributeGroupTemplateRecIDIn(ArrayList value) { this.IN_AttributeGroupTemplate_RecIDIn = value; return this; } public String getName() { return Name; } public IN_AttributeGroupTemplateAttributeQuery setName(String value) { this.Name = value; return this; } public String getNameStartsWith() { return NameStartsWith; } public IN_AttributeGroupTemplateAttributeQuery setNameStartsWith(String value) { this.NameStartsWith = value; return this; } public String getNameEndsWith() { return NameEndsWith; } public IN_AttributeGroupTemplateAttributeQuery setNameEndsWith(String value) { this.NameEndsWith = value; return this; } public String getNameContains() { return NameContains; } public IN_AttributeGroupTemplateAttributeQuery setNameContains(String value) { this.NameContains = value; return this; } public String getNameLike() { return NameLike; } public IN_AttributeGroupTemplateAttributeQuery setNameLike(String value) { this.NameLike = value; return this; } public ArrayList getNameBetween() { return NameBetween; } public IN_AttributeGroupTemplateAttributeQuery setNameBetween(ArrayList value) { this.NameBetween = value; return this; } public ArrayList getNameIn() { return NameIn; } public IN_AttributeGroupTemplateAttributeQuery setNameIn(ArrayList value) { this.NameIn = value; return this; } public Short getAttributeType() { return AttributeType; } public IN_AttributeGroupTemplateAttributeQuery setAttributeType(Short value) { this.AttributeType = value; return this; } public Short getAttributeTypeGreaterThanOrEqualTo() { return AttributeTypeGreaterThanOrEqualTo; } public IN_AttributeGroupTemplateAttributeQuery setAttributeTypeGreaterThanOrEqualTo(Short value) { this.AttributeTypeGreaterThanOrEqualTo = value; return this; } public Short getAttributeTypeGreaterThan() { return AttributeTypeGreaterThan; } public IN_AttributeGroupTemplateAttributeQuery setAttributeTypeGreaterThan(Short value) { this.AttributeTypeGreaterThan = value; return this; } public Short getAttributeTypeLessThan() { return AttributeTypeLessThan; } public IN_AttributeGroupTemplateAttributeQuery setAttributeTypeLessThan(Short value) { this.AttributeTypeLessThan = value; return this; } public Short getAttributeTypeLessThanOrEqualTo() { return AttributeTypeLessThanOrEqualTo; } public IN_AttributeGroupTemplateAttributeQuery setAttributeTypeLessThanOrEqualTo(Short value) { this.AttributeTypeLessThanOrEqualTo = value; return this; } public Short getAttributeTypeNotEqualTo() { return AttributeTypeNotEqualTo; } public IN_AttributeGroupTemplateAttributeQuery setAttributeTypeNotEqualTo(Short value) { this.AttributeTypeNotEqualTo = value; return this; } public ArrayList getAttributeTypeBetween() { return AttributeTypeBetween; } public IN_AttributeGroupTemplateAttributeQuery setAttributeTypeBetween(ArrayList value) { this.AttributeTypeBetween = value; return this; } public ArrayList getAttributeTypeIn() { return AttributeTypeIn; } public IN_AttributeGroupTemplateAttributeQuery setAttributeTypeIn(ArrayList value) { this.AttributeTypeIn = value; return this; } public String getComboText() { return ComboText; } public IN_AttributeGroupTemplateAttributeQuery setComboText(String value) { this.ComboText = value; return this; } public String getComboTextStartsWith() { return ComboTextStartsWith; } public IN_AttributeGroupTemplateAttributeQuery setComboTextStartsWith(String value) { this.ComboTextStartsWith = value; return this; } public String getComboTextEndsWith() { return ComboTextEndsWith; } public IN_AttributeGroupTemplateAttributeQuery setComboTextEndsWith(String value) { this.ComboTextEndsWith = value; return this; } public String getComboTextContains() { return ComboTextContains; } public IN_AttributeGroupTemplateAttributeQuery setComboTextContains(String value) { this.ComboTextContains = value; return this; } public String getComboTextLike() { return ComboTextLike; } public IN_AttributeGroupTemplateAttributeQuery setComboTextLike(String value) { this.ComboTextLike = value; return this; } public ArrayList getComboTextBetween() { return ComboTextBetween; } public IN_AttributeGroupTemplateAttributeQuery setComboTextBetween(ArrayList value) { this.ComboTextBetween = value; return this; } public ArrayList getComboTextIn() { return ComboTextIn; } public IN_AttributeGroupTemplateAttributeQuery setComboTextIn(ArrayList value) { this.ComboTextIn = value; return this; } public String getDefaultValue() { return DefaultValue; } public IN_AttributeGroupTemplateAttributeQuery setDefaultValue(String value) { this.DefaultValue = value; return this; } public String getDefaultValueStartsWith() { return DefaultValueStartsWith; } public IN_AttributeGroupTemplateAttributeQuery setDefaultValueStartsWith(String value) { this.DefaultValueStartsWith = value; return this; } public String getDefaultValueEndsWith() { return DefaultValueEndsWith; } public IN_AttributeGroupTemplateAttributeQuery setDefaultValueEndsWith(String value) { this.DefaultValueEndsWith = value; return this; } public String getDefaultValueContains() { return DefaultValueContains; } public IN_AttributeGroupTemplateAttributeQuery setDefaultValueContains(String value) { this.DefaultValueContains = value; return this; } public String getDefaultValueLike() { return DefaultValueLike; } public IN_AttributeGroupTemplateAttributeQuery setDefaultValueLike(String value) { this.DefaultValueLike = value; return this; } public ArrayList getDefaultValueBetween() { return DefaultValueBetween; } public IN_AttributeGroupTemplateAttributeQuery setDefaultValueBetween(ArrayList value) { this.DefaultValueBetween = value; return this; } public ArrayList getDefaultValueIn() { return DefaultValueIn; } public IN_AttributeGroupTemplateAttributeQuery setDefaultValueIn(ArrayList value) { this.DefaultValueIn = value; return this; } public Integer getItemNo() { return ItemNo; } public IN_AttributeGroupTemplateAttributeQuery setItemNo(Integer value) { this.ItemNo = value; return this; } public Integer getItemNoGreaterThanOrEqualTo() { return ItemNoGreaterThanOrEqualTo; } public IN_AttributeGroupTemplateAttributeQuery setItemNoGreaterThanOrEqualTo(Integer value) { this.ItemNoGreaterThanOrEqualTo = value; return this; } public Integer getItemNoGreaterThan() { return ItemNoGreaterThan; } public IN_AttributeGroupTemplateAttributeQuery setItemNoGreaterThan(Integer value) { this.ItemNoGreaterThan = value; return this; } public Integer getItemNoLessThan() { return ItemNoLessThan; } public IN_AttributeGroupTemplateAttributeQuery setItemNoLessThan(Integer value) { this.ItemNoLessThan = value; return this; } public Integer getItemNoLessThanOrEqualTo() { return ItemNoLessThanOrEqualTo; } public IN_AttributeGroupTemplateAttributeQuery setItemNoLessThanOrEqualTo(Integer value) { this.ItemNoLessThanOrEqualTo = value; return this; } public Integer getItemNoNotEqualTo() { return ItemNoNotEqualTo; } public IN_AttributeGroupTemplateAttributeQuery setItemNoNotEqualTo(Integer value) { this.ItemNoNotEqualTo = value; return this; } public ArrayList getItemNoBetween() { return ItemNoBetween; } public IN_AttributeGroupTemplateAttributeQuery setItemNoBetween(ArrayList value) { this.ItemNoBetween = value; return this; } public ArrayList getItemNoIn() { return ItemNoIn; } public IN_AttributeGroupTemplateAttributeQuery setItemNoIn(ArrayList value) { this.ItemNoIn = value; return this; } public ArrayList getRowHash() { return RowHash; } public IN_AttributeGroupTemplateAttributeQuery setRowHash(ArrayList value) { this.RowHash = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public IN_AttributeGroupTemplateAttributeQuery setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getLastSavedDateTimeGreaterThanOrEqualTo() { return LastSavedDateTimeGreaterThanOrEqualTo; } public IN_AttributeGroupTemplateAttributeQuery setLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.LastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeGreaterThan() { return LastSavedDateTimeGreaterThan; } public IN_AttributeGroupTemplateAttributeQuery setLastSavedDateTimeGreaterThan(Date value) { this.LastSavedDateTimeGreaterThan = value; return this; } public Date getLastSavedDateTimeLessThan() { return LastSavedDateTimeLessThan; } public IN_AttributeGroupTemplateAttributeQuery setLastSavedDateTimeLessThan(Date value) { this.LastSavedDateTimeLessThan = value; return this; } public Date getLastSavedDateTimeLessThanOrEqualTo() { return LastSavedDateTimeLessThanOrEqualTo; } public IN_AttributeGroupTemplateAttributeQuery setLastSavedDateTimeLessThanOrEqualTo(Date value) { this.LastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeNotEqualTo() { return LastSavedDateTimeNotEqualTo; } public IN_AttributeGroupTemplateAttributeQuery setLastSavedDateTimeNotEqualTo(Date value) { this.LastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getLastSavedDateTimeBetween() { return LastSavedDateTimeBetween; } public IN_AttributeGroupTemplateAttributeQuery setLastSavedDateTimeBetween(ArrayList value) { this.LastSavedDateTimeBetween = value; return this; } public ArrayList getLastSavedDateTimeIn() { return LastSavedDateTimeIn; } public IN_AttributeGroupTemplateAttributeQuery setLastSavedDateTimeIn(ArrayList value) { this.LastSavedDateTimeIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class IN_AttributeGroupTemplateDefaultReferenceQuery extends QueryDb implements IReturn> { public UUID RecID = null; public ArrayList RecIDIn = null; public String AssemblyFullName = null; public String AssemblyFullNameStartsWith = null; public String AssemblyFullNameEndsWith = null; public String AssemblyFullNameContains = null; public String AssemblyFullNameLike = null; public ArrayList AssemblyFullNameBetween = null; public ArrayList AssemblyFullNameIn = null; public Integer ItemNo = null; public Integer ItemNoGreaterThanOrEqualTo = null; public Integer ItemNoGreaterThan = null; public Integer ItemNoLessThan = null; public Integer ItemNoLessThanOrEqualTo = null; public Integer ItemNoNotEqualTo = null; public ArrayList ItemNoBetween = null; public ArrayList ItemNoIn = null; public ArrayList RowHash = null; public UUID getRecID() { return RecID; } public IN_AttributeGroupTemplateDefaultReferenceQuery setRecID(UUID value) { this.RecID = value; return this; } public ArrayList getRecIDIn() { return RecIDIn; } public IN_AttributeGroupTemplateDefaultReferenceQuery setRecIDIn(ArrayList value) { this.RecIDIn = value; return this; } public String getAssemblyFullName() { return AssemblyFullName; } public IN_AttributeGroupTemplateDefaultReferenceQuery setAssemblyFullName(String value) { this.AssemblyFullName = value; return this; } public String getAssemblyFullNameStartsWith() { return AssemblyFullNameStartsWith; } public IN_AttributeGroupTemplateDefaultReferenceQuery setAssemblyFullNameStartsWith(String value) { this.AssemblyFullNameStartsWith = value; return this; } public String getAssemblyFullNameEndsWith() { return AssemblyFullNameEndsWith; } public IN_AttributeGroupTemplateDefaultReferenceQuery setAssemblyFullNameEndsWith(String value) { this.AssemblyFullNameEndsWith = value; return this; } public String getAssemblyFullNameContains() { return AssemblyFullNameContains; } public IN_AttributeGroupTemplateDefaultReferenceQuery setAssemblyFullNameContains(String value) { this.AssemblyFullNameContains = value; return this; } public String getAssemblyFullNameLike() { return AssemblyFullNameLike; } public IN_AttributeGroupTemplateDefaultReferenceQuery setAssemblyFullNameLike(String value) { this.AssemblyFullNameLike = value; return this; } public ArrayList getAssemblyFullNameBetween() { return AssemblyFullNameBetween; } public IN_AttributeGroupTemplateDefaultReferenceQuery setAssemblyFullNameBetween(ArrayList value) { this.AssemblyFullNameBetween = value; return this; } public ArrayList getAssemblyFullNameIn() { return AssemblyFullNameIn; } public IN_AttributeGroupTemplateDefaultReferenceQuery setAssemblyFullNameIn(ArrayList value) { this.AssemblyFullNameIn = value; return this; } public Integer getItemNo() { return ItemNo; } public IN_AttributeGroupTemplateDefaultReferenceQuery setItemNo(Integer value) { this.ItemNo = value; return this; } public Integer getItemNoGreaterThanOrEqualTo() { return ItemNoGreaterThanOrEqualTo; } public IN_AttributeGroupTemplateDefaultReferenceQuery setItemNoGreaterThanOrEqualTo(Integer value) { this.ItemNoGreaterThanOrEqualTo = value; return this; } public Integer getItemNoGreaterThan() { return ItemNoGreaterThan; } public IN_AttributeGroupTemplateDefaultReferenceQuery setItemNoGreaterThan(Integer value) { this.ItemNoGreaterThan = value; return this; } public Integer getItemNoLessThan() { return ItemNoLessThan; } public IN_AttributeGroupTemplateDefaultReferenceQuery setItemNoLessThan(Integer value) { this.ItemNoLessThan = value; return this; } public Integer getItemNoLessThanOrEqualTo() { return ItemNoLessThanOrEqualTo; } public IN_AttributeGroupTemplateDefaultReferenceQuery setItemNoLessThanOrEqualTo(Integer value) { this.ItemNoLessThanOrEqualTo = value; return this; } public Integer getItemNoNotEqualTo() { return ItemNoNotEqualTo; } public IN_AttributeGroupTemplateDefaultReferenceQuery setItemNoNotEqualTo(Integer value) { this.ItemNoNotEqualTo = value; return this; } public ArrayList getItemNoBetween() { return ItemNoBetween; } public IN_AttributeGroupTemplateDefaultReferenceQuery setItemNoBetween(ArrayList value) { this.ItemNoBetween = value; return this; } public ArrayList getItemNoIn() { return ItemNoIn; } public IN_AttributeGroupTemplateDefaultReferenceQuery setItemNoIn(ArrayList value) { this.ItemNoIn = value; return this; } public ArrayList getRowHash() { return RowHash; } public IN_AttributeGroupTemplateDefaultReferenceQuery setRowHash(ArrayList value) { this.RowHash = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class IN_AttributeGroupTemplateReferenceQuery extends QueryDb implements IReturn> { public UUID RecID = null; public ArrayList RecIDIn = null; public UUID IN_AttributeGroupTemplate_RecID = null; public ArrayList IN_AttributeGroupTemplate_RecIDIn = null; public String AssemblyFullName = null; public String AssemblyFullNameStartsWith = null; public String AssemblyFullNameEndsWith = null; public String AssemblyFullNameContains = null; public String AssemblyFullNameLike = null; public ArrayList AssemblyFullNameBetween = null; public ArrayList AssemblyFullNameIn = null; public Integer ItemNo = null; public Integer ItemNoGreaterThanOrEqualTo = null; public Integer ItemNoGreaterThan = null; public Integer ItemNoLessThan = null; public Integer ItemNoLessThanOrEqualTo = null; public Integer ItemNoNotEqualTo = null; public ArrayList ItemNoBetween = null; public ArrayList ItemNoIn = null; public ArrayList RowHash = null; public UUID getRecID() { return RecID; } public IN_AttributeGroupTemplateReferenceQuery setRecID(UUID value) { this.RecID = value; return this; } public ArrayList getRecIDIn() { return RecIDIn; } public IN_AttributeGroupTemplateReferenceQuery setRecIDIn(ArrayList value) { this.RecIDIn = value; return this; } public UUID getInAttributeGroupTemplateRecID() { return IN_AttributeGroupTemplate_RecID; } public IN_AttributeGroupTemplateReferenceQuery setInAttributeGroupTemplateRecID(UUID value) { this.IN_AttributeGroupTemplate_RecID = value; return this; } public ArrayList getInAttributeGroupTemplateRecIDIn() { return IN_AttributeGroupTemplate_RecIDIn; } public IN_AttributeGroupTemplateReferenceQuery setInAttributeGroupTemplateRecIDIn(ArrayList value) { this.IN_AttributeGroupTemplate_RecIDIn = value; return this; } public String getAssemblyFullName() { return AssemblyFullName; } public IN_AttributeGroupTemplateReferenceQuery setAssemblyFullName(String value) { this.AssemblyFullName = value; return this; } public String getAssemblyFullNameStartsWith() { return AssemblyFullNameStartsWith; } public IN_AttributeGroupTemplateReferenceQuery setAssemblyFullNameStartsWith(String value) { this.AssemblyFullNameStartsWith = value; return this; } public String getAssemblyFullNameEndsWith() { return AssemblyFullNameEndsWith; } public IN_AttributeGroupTemplateReferenceQuery setAssemblyFullNameEndsWith(String value) { this.AssemblyFullNameEndsWith = value; return this; } public String getAssemblyFullNameContains() { return AssemblyFullNameContains; } public IN_AttributeGroupTemplateReferenceQuery setAssemblyFullNameContains(String value) { this.AssemblyFullNameContains = value; return this; } public String getAssemblyFullNameLike() { return AssemblyFullNameLike; } public IN_AttributeGroupTemplateReferenceQuery setAssemblyFullNameLike(String value) { this.AssemblyFullNameLike = value; return this; } public ArrayList getAssemblyFullNameBetween() { return AssemblyFullNameBetween; } public IN_AttributeGroupTemplateReferenceQuery setAssemblyFullNameBetween(ArrayList value) { this.AssemblyFullNameBetween = value; return this; } public ArrayList getAssemblyFullNameIn() { return AssemblyFullNameIn; } public IN_AttributeGroupTemplateReferenceQuery setAssemblyFullNameIn(ArrayList value) { this.AssemblyFullNameIn = value; return this; } public Integer getItemNo() { return ItemNo; } public IN_AttributeGroupTemplateReferenceQuery setItemNo(Integer value) { this.ItemNo = value; return this; } public Integer getItemNoGreaterThanOrEqualTo() { return ItemNoGreaterThanOrEqualTo; } public IN_AttributeGroupTemplateReferenceQuery setItemNoGreaterThanOrEqualTo(Integer value) { this.ItemNoGreaterThanOrEqualTo = value; return this; } public Integer getItemNoGreaterThan() { return ItemNoGreaterThan; } public IN_AttributeGroupTemplateReferenceQuery setItemNoGreaterThan(Integer value) { this.ItemNoGreaterThan = value; return this; } public Integer getItemNoLessThan() { return ItemNoLessThan; } public IN_AttributeGroupTemplateReferenceQuery setItemNoLessThan(Integer value) { this.ItemNoLessThan = value; return this; } public Integer getItemNoLessThanOrEqualTo() { return ItemNoLessThanOrEqualTo; } public IN_AttributeGroupTemplateReferenceQuery setItemNoLessThanOrEqualTo(Integer value) { this.ItemNoLessThanOrEqualTo = value; return this; } public Integer getItemNoNotEqualTo() { return ItemNoNotEqualTo; } public IN_AttributeGroupTemplateReferenceQuery setItemNoNotEqualTo(Integer value) { this.ItemNoNotEqualTo = value; return this; } public ArrayList getItemNoBetween() { return ItemNoBetween; } public IN_AttributeGroupTemplateReferenceQuery setItemNoBetween(ArrayList value) { this.ItemNoBetween = value; return this; } public ArrayList getItemNoIn() { return ItemNoIn; } public IN_AttributeGroupTemplateReferenceQuery setItemNoIn(ArrayList value) { this.ItemNoIn = value; return this; } public ArrayList getRowHash() { return RowHash; } public IN_AttributeGroupTemplateReferenceQuery setRowHash(ArrayList value) { this.RowHash = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class IN_BackOrderAllocQuery extends QueryDb implements IReturn> { public String AllocID = null; public String AllocIDStartsWith = null; public String AllocIDEndsWith = null; public String AllocIDContains = null; public String AllocIDLike = null; public ArrayList AllocIDBetween = null; public ArrayList AllocIDIn = null; public Date LastSavedDateTime = null; public Date LastSavedDateTimeGreaterThanOrEqualTo = null; public Date LastSavedDateTimeGreaterThan = null; public Date LastSavedDateTimeLessThan = null; public Date LastSavedDateTimeLessThanOrEqualTo = null; public Date LastSavedDateTimeNotEqualTo = null; public ArrayList LastSavedDateTimeBetween = null; public ArrayList LastSavedDateTimeIn = null; public String AllocNo = null; public String AllocNoStartsWith = null; public String AllocNoEndsWith = null; public String AllocNoContains = null; public String AllocNoLike = null; public ArrayList AllocNoBetween = null; public ArrayList AllocNoIn = null; public Date AllocDate = null; public Date AllocDateGreaterThanOrEqualTo = null; public Date AllocDateGreaterThan = null; public Date AllocDateLessThan = null; public Date AllocDateLessThanOrEqualTo = null; public Date AllocDateNotEqualTo = null; public ArrayList AllocDateBetween = null; public ArrayList AllocDateIn = null; public String InventoryID = null; public String InventoryIDStartsWith = null; public String InventoryIDEndsWith = null; public String InventoryIDContains = null; public String InventoryIDLike = null; public ArrayList InventoryIDBetween = null; public ArrayList InventoryIDIn = null; public String PartNo = null; public String PartNoStartsWith = null; public String PartNoEndsWith = null; public String PartNoContains = null; public String PartNoLike = null; public ArrayList PartNoBetween = null; public ArrayList PartNoIn = null; public String Description = null; public String DescriptionStartsWith = null; public String DescriptionEndsWith = null; public String DescriptionContains = null; public String DescriptionLike = null; public ArrayList DescriptionBetween = null; public ArrayList DescriptionIn = null; public String AllocFrom = null; public String AllocFromStartsWith = null; public String AllocFromEndsWith = null; public String AllocFromContains = null; public String AllocFromLike = null; public ArrayList AllocFromBetween = null; public ArrayList AllocFromIn = null; public String Ref = null; public String RefStartsWith = null; public String RefEndsWith = null; public String RefContains = null; public String RefLike = null; public ArrayList RefBetween = null; public ArrayList RefIn = null; public Short Decimals = null; public Short DecimalsGreaterThanOrEqualTo = null; public Short DecimalsGreaterThan = null; public Short DecimalsLessThan = null; public Short DecimalsLessThanOrEqualTo = null; public Short DecimalsNotEqualTo = null; public ArrayList DecimalsBetween = null; public ArrayList DecimalsIn = null; public String IN_LogicalID = null; public String IN_LogicalIDStartsWith = null; public String IN_LogicalIDEndsWith = null; public String IN_LogicalIDContains = null; public String IN_LogicalIDLike = null; public ArrayList IN_LogicalIDBetween = null; public ArrayList IN_LogicalIDIn = null; public String getAllocID() { return AllocID; } public IN_BackOrderAllocQuery setAllocID(String value) { this.AllocID = value; return this; } public String getAllocIDStartsWith() { return AllocIDStartsWith; } public IN_BackOrderAllocQuery setAllocIDStartsWith(String value) { this.AllocIDStartsWith = value; return this; } public String getAllocIDEndsWith() { return AllocIDEndsWith; } public IN_BackOrderAllocQuery setAllocIDEndsWith(String value) { this.AllocIDEndsWith = value; return this; } public String getAllocIDContains() { return AllocIDContains; } public IN_BackOrderAllocQuery setAllocIDContains(String value) { this.AllocIDContains = value; return this; } public String getAllocIDLike() { return AllocIDLike; } public IN_BackOrderAllocQuery setAllocIDLike(String value) { this.AllocIDLike = value; return this; } public ArrayList getAllocIDBetween() { return AllocIDBetween; } public IN_BackOrderAllocQuery setAllocIDBetween(ArrayList value) { this.AllocIDBetween = value; return this; } public ArrayList getAllocIDIn() { return AllocIDIn; } public IN_BackOrderAllocQuery setAllocIDIn(ArrayList value) { this.AllocIDIn = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public IN_BackOrderAllocQuery setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getLastSavedDateTimeGreaterThanOrEqualTo() { return LastSavedDateTimeGreaterThanOrEqualTo; } public IN_BackOrderAllocQuery setLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.LastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeGreaterThan() { return LastSavedDateTimeGreaterThan; } public IN_BackOrderAllocQuery setLastSavedDateTimeGreaterThan(Date value) { this.LastSavedDateTimeGreaterThan = value; return this; } public Date getLastSavedDateTimeLessThan() { return LastSavedDateTimeLessThan; } public IN_BackOrderAllocQuery setLastSavedDateTimeLessThan(Date value) { this.LastSavedDateTimeLessThan = value; return this; } public Date getLastSavedDateTimeLessThanOrEqualTo() { return LastSavedDateTimeLessThanOrEqualTo; } public IN_BackOrderAllocQuery setLastSavedDateTimeLessThanOrEqualTo(Date value) { this.LastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeNotEqualTo() { return LastSavedDateTimeNotEqualTo; } public IN_BackOrderAllocQuery setLastSavedDateTimeNotEqualTo(Date value) { this.LastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getLastSavedDateTimeBetween() { return LastSavedDateTimeBetween; } public IN_BackOrderAllocQuery setLastSavedDateTimeBetween(ArrayList value) { this.LastSavedDateTimeBetween = value; return this; } public ArrayList getLastSavedDateTimeIn() { return LastSavedDateTimeIn; } public IN_BackOrderAllocQuery setLastSavedDateTimeIn(ArrayList value) { this.LastSavedDateTimeIn = value; return this; } public String getAllocNo() { return AllocNo; } public IN_BackOrderAllocQuery setAllocNo(String value) { this.AllocNo = value; return this; } public String getAllocNoStartsWith() { return AllocNoStartsWith; } public IN_BackOrderAllocQuery setAllocNoStartsWith(String value) { this.AllocNoStartsWith = value; return this; } public String getAllocNoEndsWith() { return AllocNoEndsWith; } public IN_BackOrderAllocQuery setAllocNoEndsWith(String value) { this.AllocNoEndsWith = value; return this; } public String getAllocNoContains() { return AllocNoContains; } public IN_BackOrderAllocQuery setAllocNoContains(String value) { this.AllocNoContains = value; return this; } public String getAllocNoLike() { return AllocNoLike; } public IN_BackOrderAllocQuery setAllocNoLike(String value) { this.AllocNoLike = value; return this; } public ArrayList getAllocNoBetween() { return AllocNoBetween; } public IN_BackOrderAllocQuery setAllocNoBetween(ArrayList value) { this.AllocNoBetween = value; return this; } public ArrayList getAllocNoIn() { return AllocNoIn; } public IN_BackOrderAllocQuery setAllocNoIn(ArrayList value) { this.AllocNoIn = value; return this; } public Date getAllocDate() { return AllocDate; } public IN_BackOrderAllocQuery setAllocDate(Date value) { this.AllocDate = value; return this; } public Date getAllocDateGreaterThanOrEqualTo() { return AllocDateGreaterThanOrEqualTo; } public IN_BackOrderAllocQuery setAllocDateGreaterThanOrEqualTo(Date value) { this.AllocDateGreaterThanOrEqualTo = value; return this; } public Date getAllocDateGreaterThan() { return AllocDateGreaterThan; } public IN_BackOrderAllocQuery setAllocDateGreaterThan(Date value) { this.AllocDateGreaterThan = value; return this; } public Date getAllocDateLessThan() { return AllocDateLessThan; } public IN_BackOrderAllocQuery setAllocDateLessThan(Date value) { this.AllocDateLessThan = value; return this; } public Date getAllocDateLessThanOrEqualTo() { return AllocDateLessThanOrEqualTo; } public IN_BackOrderAllocQuery setAllocDateLessThanOrEqualTo(Date value) { this.AllocDateLessThanOrEqualTo = value; return this; } public Date getAllocDateNotEqualTo() { return AllocDateNotEqualTo; } public IN_BackOrderAllocQuery setAllocDateNotEqualTo(Date value) { this.AllocDateNotEqualTo = value; return this; } public ArrayList getAllocDateBetween() { return AllocDateBetween; } public IN_BackOrderAllocQuery setAllocDateBetween(ArrayList value) { this.AllocDateBetween = value; return this; } public ArrayList getAllocDateIn() { return AllocDateIn; } public IN_BackOrderAllocQuery setAllocDateIn(ArrayList value) { this.AllocDateIn = value; return this; } public String getInventoryID() { return InventoryID; } public IN_BackOrderAllocQuery setInventoryID(String value) { this.InventoryID = value; return this; } public String getInventoryIDStartsWith() { return InventoryIDStartsWith; } public IN_BackOrderAllocQuery setInventoryIDStartsWith(String value) { this.InventoryIDStartsWith = value; return this; } public String getInventoryIDEndsWith() { return InventoryIDEndsWith; } public IN_BackOrderAllocQuery setInventoryIDEndsWith(String value) { this.InventoryIDEndsWith = value; return this; } public String getInventoryIDContains() { return InventoryIDContains; } public IN_BackOrderAllocQuery setInventoryIDContains(String value) { this.InventoryIDContains = value; return this; } public String getInventoryIDLike() { return InventoryIDLike; } public IN_BackOrderAllocQuery setInventoryIDLike(String value) { this.InventoryIDLike = value; return this; } public ArrayList getInventoryIDBetween() { return InventoryIDBetween; } public IN_BackOrderAllocQuery setInventoryIDBetween(ArrayList value) { this.InventoryIDBetween = value; return this; } public ArrayList getInventoryIDIn() { return InventoryIDIn; } public IN_BackOrderAllocQuery setInventoryIDIn(ArrayList value) { this.InventoryIDIn = value; return this; } public String getPartNo() { return PartNo; } public IN_BackOrderAllocQuery setPartNo(String value) { this.PartNo = value; return this; } public String getPartNoStartsWith() { return PartNoStartsWith; } public IN_BackOrderAllocQuery setPartNoStartsWith(String value) { this.PartNoStartsWith = value; return this; } public String getPartNoEndsWith() { return PartNoEndsWith; } public IN_BackOrderAllocQuery setPartNoEndsWith(String value) { this.PartNoEndsWith = value; return this; } public String getPartNoContains() { return PartNoContains; } public IN_BackOrderAllocQuery setPartNoContains(String value) { this.PartNoContains = value; return this; } public String getPartNoLike() { return PartNoLike; } public IN_BackOrderAllocQuery setPartNoLike(String value) { this.PartNoLike = value; return this; } public ArrayList getPartNoBetween() { return PartNoBetween; } public IN_BackOrderAllocQuery setPartNoBetween(ArrayList value) { this.PartNoBetween = value; return this; } public ArrayList getPartNoIn() { return PartNoIn; } public IN_BackOrderAllocQuery setPartNoIn(ArrayList value) { this.PartNoIn = value; return this; } public String getDescription() { return Description; } public IN_BackOrderAllocQuery setDescription(String value) { this.Description = value; return this; } public String getDescriptionStartsWith() { return DescriptionStartsWith; } public IN_BackOrderAllocQuery setDescriptionStartsWith(String value) { this.DescriptionStartsWith = value; return this; } public String getDescriptionEndsWith() { return DescriptionEndsWith; } public IN_BackOrderAllocQuery setDescriptionEndsWith(String value) { this.DescriptionEndsWith = value; return this; } public String getDescriptionContains() { return DescriptionContains; } public IN_BackOrderAllocQuery setDescriptionContains(String value) { this.DescriptionContains = value; return this; } public String getDescriptionLike() { return DescriptionLike; } public IN_BackOrderAllocQuery setDescriptionLike(String value) { this.DescriptionLike = value; return this; } public ArrayList getDescriptionBetween() { return DescriptionBetween; } public IN_BackOrderAllocQuery setDescriptionBetween(ArrayList value) { this.DescriptionBetween = value; return this; } public ArrayList getDescriptionIn() { return DescriptionIn; } public IN_BackOrderAllocQuery setDescriptionIn(ArrayList value) { this.DescriptionIn = value; return this; } public String getAllocFrom() { return AllocFrom; } public IN_BackOrderAllocQuery setAllocFrom(String value) { this.AllocFrom = value; return this; } public String getAllocFromStartsWith() { return AllocFromStartsWith; } public IN_BackOrderAllocQuery setAllocFromStartsWith(String value) { this.AllocFromStartsWith = value; return this; } public String getAllocFromEndsWith() { return AllocFromEndsWith; } public IN_BackOrderAllocQuery setAllocFromEndsWith(String value) { this.AllocFromEndsWith = value; return this; } public String getAllocFromContains() { return AllocFromContains; } public IN_BackOrderAllocQuery setAllocFromContains(String value) { this.AllocFromContains = value; return this; } public String getAllocFromLike() { return AllocFromLike; } public IN_BackOrderAllocQuery setAllocFromLike(String value) { this.AllocFromLike = value; return this; } public ArrayList getAllocFromBetween() { return AllocFromBetween; } public IN_BackOrderAllocQuery setAllocFromBetween(ArrayList value) { this.AllocFromBetween = value; return this; } public ArrayList getAllocFromIn() { return AllocFromIn; } public IN_BackOrderAllocQuery setAllocFromIn(ArrayList value) { this.AllocFromIn = value; return this; } public String getRef() { return Ref; } public IN_BackOrderAllocQuery setRef(String value) { this.Ref = value; return this; } public String getRefStartsWith() { return RefStartsWith; } public IN_BackOrderAllocQuery setRefStartsWith(String value) { this.RefStartsWith = value; return this; } public String getRefEndsWith() { return RefEndsWith; } public IN_BackOrderAllocQuery setRefEndsWith(String value) { this.RefEndsWith = value; return this; } public String getRefContains() { return RefContains; } public IN_BackOrderAllocQuery setRefContains(String value) { this.RefContains = value; return this; } public String getRefLike() { return RefLike; } public IN_BackOrderAllocQuery setRefLike(String value) { this.RefLike = value; return this; } public ArrayList getRefBetween() { return RefBetween; } public IN_BackOrderAllocQuery setRefBetween(ArrayList value) { this.RefBetween = value; return this; } public ArrayList getRefIn() { return RefIn; } public IN_BackOrderAllocQuery setRefIn(ArrayList value) { this.RefIn = value; return this; } public Short getDecimals() { return Decimals; } public IN_BackOrderAllocQuery setDecimals(Short value) { this.Decimals = value; return this; } public Short getDecimalsGreaterThanOrEqualTo() { return DecimalsGreaterThanOrEqualTo; } public IN_BackOrderAllocQuery setDecimalsGreaterThanOrEqualTo(Short value) { this.DecimalsGreaterThanOrEqualTo = value; return this; } public Short getDecimalsGreaterThan() { return DecimalsGreaterThan; } public IN_BackOrderAllocQuery setDecimalsGreaterThan(Short value) { this.DecimalsGreaterThan = value; return this; } public Short getDecimalsLessThan() { return DecimalsLessThan; } public IN_BackOrderAllocQuery setDecimalsLessThan(Short value) { this.DecimalsLessThan = value; return this; } public Short getDecimalsLessThanOrEqualTo() { return DecimalsLessThanOrEqualTo; } public IN_BackOrderAllocQuery setDecimalsLessThanOrEqualTo(Short value) { this.DecimalsLessThanOrEqualTo = value; return this; } public Short getDecimalsNotEqualTo() { return DecimalsNotEqualTo; } public IN_BackOrderAllocQuery setDecimalsNotEqualTo(Short value) { this.DecimalsNotEqualTo = value; return this; } public ArrayList getDecimalsBetween() { return DecimalsBetween; } public IN_BackOrderAllocQuery setDecimalsBetween(ArrayList value) { this.DecimalsBetween = value; return this; } public ArrayList getDecimalsIn() { return DecimalsIn; } public IN_BackOrderAllocQuery setDecimalsIn(ArrayList value) { this.DecimalsIn = value; return this; } public String getInLogicalID() { return IN_LogicalID; } public IN_BackOrderAllocQuery setInLogicalID(String value) { this.IN_LogicalID = value; return this; } public String getInLogicalIDStartsWith() { return IN_LogicalIDStartsWith; } public IN_BackOrderAllocQuery setInLogicalIDStartsWith(String value) { this.IN_LogicalIDStartsWith = value; return this; } public String getInLogicalIDEndsWith() { return IN_LogicalIDEndsWith; } public IN_BackOrderAllocQuery setInLogicalIDEndsWith(String value) { this.IN_LogicalIDEndsWith = value; return this; } public String getInLogicalIDContains() { return IN_LogicalIDContains; } public IN_BackOrderAllocQuery setInLogicalIDContains(String value) { this.IN_LogicalIDContains = value; return this; } public String getInLogicalIDLike() { return IN_LogicalIDLike; } public IN_BackOrderAllocQuery setInLogicalIDLike(String value) { this.IN_LogicalIDLike = value; return this; } public ArrayList getInLogicalIDBetween() { return IN_LogicalIDBetween; } public IN_BackOrderAllocQuery setInLogicalIDBetween(ArrayList value) { this.IN_LogicalIDBetween = value; return this; } public ArrayList getInLogicalIDIn() { return IN_LogicalIDIn; } public IN_BackOrderAllocQuery setInLogicalIDIn(ArrayList value) { this.IN_LogicalIDIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class IN_BackOrderAllocLinesQuery extends QueryDb implements IReturn> { public String AllocLineID = null; public String AllocLineIDStartsWith = null; public String AllocLineIDEndsWith = null; public String AllocLineIDContains = null; public String AllocLineIDLike = null; public ArrayList AllocLineIDBetween = null; public ArrayList AllocLineIDIn = null; public String AllocID = null; public String AllocIDStartsWith = null; public String AllocIDEndsWith = null; public String AllocIDContains = null; public String AllocIDLike = null; public ArrayList AllocIDBetween = null; public ArrayList AllocIDIn = null; public Date AllocDate = null; public Date AllocDateGreaterThanOrEqualTo = null; public Date AllocDateGreaterThan = null; public Date AllocDateLessThan = null; public Date AllocDateLessThanOrEqualTo = null; public Date AllocDateNotEqualTo = null; public ArrayList AllocDateBetween = null; public ArrayList AllocDateIn = null; public String InvoiceNo = null; public String InvoiceNoStartsWith = null; public String InvoiceNoEndsWith = null; public String InvoiceNoContains = null; public String InvoiceNoLike = null; public ArrayList InvoiceNoBetween = null; public ArrayList InvoiceNoIn = null; public String OrderNo = null; public String OrderNoStartsWith = null; public String OrderNoEndsWith = null; public String OrderNoContains = null; public String OrderNoLike = null; public ArrayList OrderNoBetween = null; public ArrayList OrderNoIn = null; public String DebtorID = null; public String DebtorIDStartsWith = null; public String DebtorIDEndsWith = null; public String DebtorIDContains = null; public String DebtorIDLike = null; public ArrayList DebtorIDBetween = null; public ArrayList DebtorIDIn = null; public BigDecimal Quantity = null; public BigDecimal QuantityGreaterThanOrEqualTo = null; public BigDecimal QuantityGreaterThan = null; public BigDecimal QuantityLessThan = null; public BigDecimal QuantityLessThanOrEqualTo = null; public BigDecimal QuantityNotEqualTo = null; public ArrayList QuantityBetween = null; public ArrayList QuantityIn = null; public BigDecimal Price = null; public BigDecimal PriceGreaterThanOrEqualTo = null; public BigDecimal PriceGreaterThan = null; public BigDecimal PriceLessThan = null; public BigDecimal PriceLessThanOrEqualTo = null; public BigDecimal PriceNotEqualTo = null; public ArrayList PriceBetween = null; public ArrayList PriceIn = null; public BigDecimal EstBOValue = null; public BigDecimal EstBOValueGreaterThanOrEqualTo = null; public BigDecimal EstBOValueGreaterThan = null; public BigDecimal EstBOValueLessThan = null; public BigDecimal EstBOValueLessThanOrEqualTo = null; public BigDecimal EstBOValueNotEqualTo = null; public ArrayList EstBOValueBetween = null; public ArrayList EstBOValueIn = null; public Date Priority = null; public Date PriorityGreaterThanOrEqualTo = null; public Date PriorityGreaterThan = null; public Date PriorityLessThan = null; public Date PriorityLessThanOrEqualTo = null; public Date PriorityNotEqualTo = null; public ArrayList PriorityBetween = null; public ArrayList PriorityIn = null; public Short BackOrderMode = null; public Short BackOrderModeGreaterThanOrEqualTo = null; public Short BackOrderModeGreaterThan = null; public Short BackOrderModeLessThan = null; public Short BackOrderModeLessThanOrEqualTo = null; public Short BackOrderModeNotEqualTo = null; public ArrayList BackOrderModeBetween = null; public ArrayList BackOrderModeIn = null; public Short SourceType = null; public Short SourceTypeGreaterThanOrEqualTo = null; public Short SourceTypeGreaterThan = null; public Short SourceTypeLessThan = null; public Short SourceTypeLessThanOrEqualTo = null; public Short SourceTypeNotEqualTo = null; public ArrayList SourceTypeBetween = null; public ArrayList SourceTypeIn = null; public Integer PriorityWeight = null; public Integer PriorityWeightGreaterThanOrEqualTo = null; public Integer PriorityWeightGreaterThan = null; public Integer PriorityWeightLessThan = null; public Integer PriorityWeightLessThanOrEqualTo = null; public Integer PriorityWeightNotEqualTo = null; public ArrayList PriorityWeightBetween = null; public ArrayList PriorityWeightIn = null; public String getAllocLineID() { return AllocLineID; } public IN_BackOrderAllocLinesQuery setAllocLineID(String value) { this.AllocLineID = value; return this; } public String getAllocLineIDStartsWith() { return AllocLineIDStartsWith; } public IN_BackOrderAllocLinesQuery setAllocLineIDStartsWith(String value) { this.AllocLineIDStartsWith = value; return this; } public String getAllocLineIDEndsWith() { return AllocLineIDEndsWith; } public IN_BackOrderAllocLinesQuery setAllocLineIDEndsWith(String value) { this.AllocLineIDEndsWith = value; return this; } public String getAllocLineIDContains() { return AllocLineIDContains; } public IN_BackOrderAllocLinesQuery setAllocLineIDContains(String value) { this.AllocLineIDContains = value; return this; } public String getAllocLineIDLike() { return AllocLineIDLike; } public IN_BackOrderAllocLinesQuery setAllocLineIDLike(String value) { this.AllocLineIDLike = value; return this; } public ArrayList getAllocLineIDBetween() { return AllocLineIDBetween; } public IN_BackOrderAllocLinesQuery setAllocLineIDBetween(ArrayList value) { this.AllocLineIDBetween = value; return this; } public ArrayList getAllocLineIDIn() { return AllocLineIDIn; } public IN_BackOrderAllocLinesQuery setAllocLineIDIn(ArrayList value) { this.AllocLineIDIn = value; return this; } public String getAllocID() { return AllocID; } public IN_BackOrderAllocLinesQuery setAllocID(String value) { this.AllocID = value; return this; } public String getAllocIDStartsWith() { return AllocIDStartsWith; } public IN_BackOrderAllocLinesQuery setAllocIDStartsWith(String value) { this.AllocIDStartsWith = value; return this; } public String getAllocIDEndsWith() { return AllocIDEndsWith; } public IN_BackOrderAllocLinesQuery setAllocIDEndsWith(String value) { this.AllocIDEndsWith = value; return this; } public String getAllocIDContains() { return AllocIDContains; } public IN_BackOrderAllocLinesQuery setAllocIDContains(String value) { this.AllocIDContains = value; return this; } public String getAllocIDLike() { return AllocIDLike; } public IN_BackOrderAllocLinesQuery setAllocIDLike(String value) { this.AllocIDLike = value; return this; } public ArrayList getAllocIDBetween() { return AllocIDBetween; } public IN_BackOrderAllocLinesQuery setAllocIDBetween(ArrayList value) { this.AllocIDBetween = value; return this; } public ArrayList getAllocIDIn() { return AllocIDIn; } public IN_BackOrderAllocLinesQuery setAllocIDIn(ArrayList value) { this.AllocIDIn = value; return this; } public Date getAllocDate() { return AllocDate; } public IN_BackOrderAllocLinesQuery setAllocDate(Date value) { this.AllocDate = value; return this; } public Date getAllocDateGreaterThanOrEqualTo() { return AllocDateGreaterThanOrEqualTo; } public IN_BackOrderAllocLinesQuery setAllocDateGreaterThanOrEqualTo(Date value) { this.AllocDateGreaterThanOrEqualTo = value; return this; } public Date getAllocDateGreaterThan() { return AllocDateGreaterThan; } public IN_BackOrderAllocLinesQuery setAllocDateGreaterThan(Date value) { this.AllocDateGreaterThan = value; return this; } public Date getAllocDateLessThan() { return AllocDateLessThan; } public IN_BackOrderAllocLinesQuery setAllocDateLessThan(Date value) { this.AllocDateLessThan = value; return this; } public Date getAllocDateLessThanOrEqualTo() { return AllocDateLessThanOrEqualTo; } public IN_BackOrderAllocLinesQuery setAllocDateLessThanOrEqualTo(Date value) { this.AllocDateLessThanOrEqualTo = value; return this; } public Date getAllocDateNotEqualTo() { return AllocDateNotEqualTo; } public IN_BackOrderAllocLinesQuery setAllocDateNotEqualTo(Date value) { this.AllocDateNotEqualTo = value; return this; } public ArrayList getAllocDateBetween() { return AllocDateBetween; } public IN_BackOrderAllocLinesQuery setAllocDateBetween(ArrayList value) { this.AllocDateBetween = value; return this; } public ArrayList getAllocDateIn() { return AllocDateIn; } public IN_BackOrderAllocLinesQuery setAllocDateIn(ArrayList value) { this.AllocDateIn = value; return this; } public String getInvoiceNo() { return InvoiceNo; } public IN_BackOrderAllocLinesQuery setInvoiceNo(String value) { this.InvoiceNo = value; return this; } public String getInvoiceNoStartsWith() { return InvoiceNoStartsWith; } public IN_BackOrderAllocLinesQuery setInvoiceNoStartsWith(String value) { this.InvoiceNoStartsWith = value; return this; } public String getInvoiceNoEndsWith() { return InvoiceNoEndsWith; } public IN_BackOrderAllocLinesQuery setInvoiceNoEndsWith(String value) { this.InvoiceNoEndsWith = value; return this; } public String getInvoiceNoContains() { return InvoiceNoContains; } public IN_BackOrderAllocLinesQuery setInvoiceNoContains(String value) { this.InvoiceNoContains = value; return this; } public String getInvoiceNoLike() { return InvoiceNoLike; } public IN_BackOrderAllocLinesQuery setInvoiceNoLike(String value) { this.InvoiceNoLike = value; return this; } public ArrayList getInvoiceNoBetween() { return InvoiceNoBetween; } public IN_BackOrderAllocLinesQuery setInvoiceNoBetween(ArrayList value) { this.InvoiceNoBetween = value; return this; } public ArrayList getInvoiceNoIn() { return InvoiceNoIn; } public IN_BackOrderAllocLinesQuery setInvoiceNoIn(ArrayList value) { this.InvoiceNoIn = value; return this; } public String getOrderNo() { return OrderNo; } public IN_BackOrderAllocLinesQuery setOrderNo(String value) { this.OrderNo = value; return this; } public String getOrderNoStartsWith() { return OrderNoStartsWith; } public IN_BackOrderAllocLinesQuery setOrderNoStartsWith(String value) { this.OrderNoStartsWith = value; return this; } public String getOrderNoEndsWith() { return OrderNoEndsWith; } public IN_BackOrderAllocLinesQuery setOrderNoEndsWith(String value) { this.OrderNoEndsWith = value; return this; } public String getOrderNoContains() { return OrderNoContains; } public IN_BackOrderAllocLinesQuery setOrderNoContains(String value) { this.OrderNoContains = value; return this; } public String getOrderNoLike() { return OrderNoLike; } public IN_BackOrderAllocLinesQuery setOrderNoLike(String value) { this.OrderNoLike = value; return this; } public ArrayList getOrderNoBetween() { return OrderNoBetween; } public IN_BackOrderAllocLinesQuery setOrderNoBetween(ArrayList value) { this.OrderNoBetween = value; return this; } public ArrayList getOrderNoIn() { return OrderNoIn; } public IN_BackOrderAllocLinesQuery setOrderNoIn(ArrayList value) { this.OrderNoIn = value; return this; } public String getDebtorID() { return DebtorID; } public IN_BackOrderAllocLinesQuery setDebtorID(String value) { this.DebtorID = value; return this; } public String getDebtorIDStartsWith() { return DebtorIDStartsWith; } public IN_BackOrderAllocLinesQuery setDebtorIDStartsWith(String value) { this.DebtorIDStartsWith = value; return this; } public String getDebtorIDEndsWith() { return DebtorIDEndsWith; } public IN_BackOrderAllocLinesQuery setDebtorIDEndsWith(String value) { this.DebtorIDEndsWith = value; return this; } public String getDebtorIDContains() { return DebtorIDContains; } public IN_BackOrderAllocLinesQuery setDebtorIDContains(String value) { this.DebtorIDContains = value; return this; } public String getDebtorIDLike() { return DebtorIDLike; } public IN_BackOrderAllocLinesQuery setDebtorIDLike(String value) { this.DebtorIDLike = value; return this; } public ArrayList getDebtorIDBetween() { return DebtorIDBetween; } public IN_BackOrderAllocLinesQuery setDebtorIDBetween(ArrayList value) { this.DebtorIDBetween = value; return this; } public ArrayList getDebtorIDIn() { return DebtorIDIn; } public IN_BackOrderAllocLinesQuery setDebtorIDIn(ArrayList value) { this.DebtorIDIn = value; return this; } public BigDecimal getQuantity() { return Quantity; } public IN_BackOrderAllocLinesQuery setQuantity(BigDecimal value) { this.Quantity = value; return this; } public BigDecimal getQuantityGreaterThanOrEqualTo() { return QuantityGreaterThanOrEqualTo; } public IN_BackOrderAllocLinesQuery setQuantityGreaterThanOrEqualTo(BigDecimal value) { this.QuantityGreaterThanOrEqualTo = value; return this; } public BigDecimal getQuantityGreaterThan() { return QuantityGreaterThan; } public IN_BackOrderAllocLinesQuery setQuantityGreaterThan(BigDecimal value) { this.QuantityGreaterThan = value; return this; } public BigDecimal getQuantityLessThan() { return QuantityLessThan; } public IN_BackOrderAllocLinesQuery setQuantityLessThan(BigDecimal value) { this.QuantityLessThan = value; return this; } public BigDecimal getQuantityLessThanOrEqualTo() { return QuantityLessThanOrEqualTo; } public IN_BackOrderAllocLinesQuery setQuantityLessThanOrEqualTo(BigDecimal value) { this.QuantityLessThanOrEqualTo = value; return this; } public BigDecimal getQuantityNotEqualTo() { return QuantityNotEqualTo; } public IN_BackOrderAllocLinesQuery setQuantityNotEqualTo(BigDecimal value) { this.QuantityNotEqualTo = value; return this; } public ArrayList getQuantityBetween() { return QuantityBetween; } public IN_BackOrderAllocLinesQuery setQuantityBetween(ArrayList value) { this.QuantityBetween = value; return this; } public ArrayList getQuantityIn() { return QuantityIn; } public IN_BackOrderAllocLinesQuery setQuantityIn(ArrayList value) { this.QuantityIn = value; return this; } public BigDecimal getPrice() { return Price; } public IN_BackOrderAllocLinesQuery setPrice(BigDecimal value) { this.Price = value; return this; } public BigDecimal getPriceGreaterThanOrEqualTo() { return PriceGreaterThanOrEqualTo; } public IN_BackOrderAllocLinesQuery setPriceGreaterThanOrEqualTo(BigDecimal value) { this.PriceGreaterThanOrEqualTo = value; return this; } public BigDecimal getPriceGreaterThan() { return PriceGreaterThan; } public IN_BackOrderAllocLinesQuery setPriceGreaterThan(BigDecimal value) { this.PriceGreaterThan = value; return this; } public BigDecimal getPriceLessThan() { return PriceLessThan; } public IN_BackOrderAllocLinesQuery setPriceLessThan(BigDecimal value) { this.PriceLessThan = value; return this; } public BigDecimal getPriceLessThanOrEqualTo() { return PriceLessThanOrEqualTo; } public IN_BackOrderAllocLinesQuery setPriceLessThanOrEqualTo(BigDecimal value) { this.PriceLessThanOrEqualTo = value; return this; } public BigDecimal getPriceNotEqualTo() { return PriceNotEqualTo; } public IN_BackOrderAllocLinesQuery setPriceNotEqualTo(BigDecimal value) { this.PriceNotEqualTo = value; return this; } public ArrayList getPriceBetween() { return PriceBetween; } public IN_BackOrderAllocLinesQuery setPriceBetween(ArrayList value) { this.PriceBetween = value; return this; } public ArrayList getPriceIn() { return PriceIn; } public IN_BackOrderAllocLinesQuery setPriceIn(ArrayList value) { this.PriceIn = value; return this; } public BigDecimal getEstBOValue() { return EstBOValue; } public IN_BackOrderAllocLinesQuery setEstBOValue(BigDecimal value) { this.EstBOValue = value; return this; } public BigDecimal getEstBOValueGreaterThanOrEqualTo() { return EstBOValueGreaterThanOrEqualTo; } public IN_BackOrderAllocLinesQuery setEstBOValueGreaterThanOrEqualTo(BigDecimal value) { this.EstBOValueGreaterThanOrEqualTo = value; return this; } public BigDecimal getEstBOValueGreaterThan() { return EstBOValueGreaterThan; } public IN_BackOrderAllocLinesQuery setEstBOValueGreaterThan(BigDecimal value) { this.EstBOValueGreaterThan = value; return this; } public BigDecimal getEstBOValueLessThan() { return EstBOValueLessThan; } public IN_BackOrderAllocLinesQuery setEstBOValueLessThan(BigDecimal value) { this.EstBOValueLessThan = value; return this; } public BigDecimal getEstBOValueLessThanOrEqualTo() { return EstBOValueLessThanOrEqualTo; } public IN_BackOrderAllocLinesQuery setEstBOValueLessThanOrEqualTo(BigDecimal value) { this.EstBOValueLessThanOrEqualTo = value; return this; } public BigDecimal getEstBOValueNotEqualTo() { return EstBOValueNotEqualTo; } public IN_BackOrderAllocLinesQuery setEstBOValueNotEqualTo(BigDecimal value) { this.EstBOValueNotEqualTo = value; return this; } public ArrayList getEstBOValueBetween() { return EstBOValueBetween; } public IN_BackOrderAllocLinesQuery setEstBOValueBetween(ArrayList value) { this.EstBOValueBetween = value; return this; } public ArrayList getEstBOValueIn() { return EstBOValueIn; } public IN_BackOrderAllocLinesQuery setEstBOValueIn(ArrayList value) { this.EstBOValueIn = value; return this; } public Date getPriority() { return Priority; } public IN_BackOrderAllocLinesQuery setPriority(Date value) { this.Priority = value; return this; } public Date getPriorityGreaterThanOrEqualTo() { return PriorityGreaterThanOrEqualTo; } public IN_BackOrderAllocLinesQuery setPriorityGreaterThanOrEqualTo(Date value) { this.PriorityGreaterThanOrEqualTo = value; return this; } public Date getPriorityGreaterThan() { return PriorityGreaterThan; } public IN_BackOrderAllocLinesQuery setPriorityGreaterThan(Date value) { this.PriorityGreaterThan = value; return this; } public Date getPriorityLessThan() { return PriorityLessThan; } public IN_BackOrderAllocLinesQuery setPriorityLessThan(Date value) { this.PriorityLessThan = value; return this; } public Date getPriorityLessThanOrEqualTo() { return PriorityLessThanOrEqualTo; } public IN_BackOrderAllocLinesQuery setPriorityLessThanOrEqualTo(Date value) { this.PriorityLessThanOrEqualTo = value; return this; } public Date getPriorityNotEqualTo() { return PriorityNotEqualTo; } public IN_BackOrderAllocLinesQuery setPriorityNotEqualTo(Date value) { this.PriorityNotEqualTo = value; return this; } public ArrayList getPriorityBetween() { return PriorityBetween; } public IN_BackOrderAllocLinesQuery setPriorityBetween(ArrayList value) { this.PriorityBetween = value; return this; } public ArrayList getPriorityIn() { return PriorityIn; } public IN_BackOrderAllocLinesQuery setPriorityIn(ArrayList value) { this.PriorityIn = value; return this; } public Short getBackOrderMode() { return BackOrderMode; } public IN_BackOrderAllocLinesQuery setBackOrderMode(Short value) { this.BackOrderMode = value; return this; } public Short getBackOrderModeGreaterThanOrEqualTo() { return BackOrderModeGreaterThanOrEqualTo; } public IN_BackOrderAllocLinesQuery setBackOrderModeGreaterThanOrEqualTo(Short value) { this.BackOrderModeGreaterThanOrEqualTo = value; return this; } public Short getBackOrderModeGreaterThan() { return BackOrderModeGreaterThan; } public IN_BackOrderAllocLinesQuery setBackOrderModeGreaterThan(Short value) { this.BackOrderModeGreaterThan = value; return this; } public Short getBackOrderModeLessThan() { return BackOrderModeLessThan; } public IN_BackOrderAllocLinesQuery setBackOrderModeLessThan(Short value) { this.BackOrderModeLessThan = value; return this; } public Short getBackOrderModeLessThanOrEqualTo() { return BackOrderModeLessThanOrEqualTo; } public IN_BackOrderAllocLinesQuery setBackOrderModeLessThanOrEqualTo(Short value) { this.BackOrderModeLessThanOrEqualTo = value; return this; } public Short getBackOrderModeNotEqualTo() { return BackOrderModeNotEqualTo; } public IN_BackOrderAllocLinesQuery setBackOrderModeNotEqualTo(Short value) { this.BackOrderModeNotEqualTo = value; return this; } public ArrayList getBackOrderModeBetween() { return BackOrderModeBetween; } public IN_BackOrderAllocLinesQuery setBackOrderModeBetween(ArrayList value) { this.BackOrderModeBetween = value; return this; } public ArrayList getBackOrderModeIn() { return BackOrderModeIn; } public IN_BackOrderAllocLinesQuery setBackOrderModeIn(ArrayList value) { this.BackOrderModeIn = value; return this; } public Short getSourceType() { return SourceType; } public IN_BackOrderAllocLinesQuery setSourceType(Short value) { this.SourceType = value; return this; } public Short getSourceTypeGreaterThanOrEqualTo() { return SourceTypeGreaterThanOrEqualTo; } public IN_BackOrderAllocLinesQuery setSourceTypeGreaterThanOrEqualTo(Short value) { this.SourceTypeGreaterThanOrEqualTo = value; return this; } public Short getSourceTypeGreaterThan() { return SourceTypeGreaterThan; } public IN_BackOrderAllocLinesQuery setSourceTypeGreaterThan(Short value) { this.SourceTypeGreaterThan = value; return this; } public Short getSourceTypeLessThan() { return SourceTypeLessThan; } public IN_BackOrderAllocLinesQuery setSourceTypeLessThan(Short value) { this.SourceTypeLessThan = value; return this; } public Short getSourceTypeLessThanOrEqualTo() { return SourceTypeLessThanOrEqualTo; } public IN_BackOrderAllocLinesQuery setSourceTypeLessThanOrEqualTo(Short value) { this.SourceTypeLessThanOrEqualTo = value; return this; } public Short getSourceTypeNotEqualTo() { return SourceTypeNotEqualTo; } public IN_BackOrderAllocLinesQuery setSourceTypeNotEqualTo(Short value) { this.SourceTypeNotEqualTo = value; return this; } public ArrayList getSourceTypeBetween() { return SourceTypeBetween; } public IN_BackOrderAllocLinesQuery setSourceTypeBetween(ArrayList value) { this.SourceTypeBetween = value; return this; } public ArrayList getSourceTypeIn() { return SourceTypeIn; } public IN_BackOrderAllocLinesQuery setSourceTypeIn(ArrayList value) { this.SourceTypeIn = value; return this; } public Integer getPriorityWeight() { return PriorityWeight; } public IN_BackOrderAllocLinesQuery setPriorityWeight(Integer value) { this.PriorityWeight = value; return this; } public Integer getPriorityWeightGreaterThanOrEqualTo() { return PriorityWeightGreaterThanOrEqualTo; } public IN_BackOrderAllocLinesQuery setPriorityWeightGreaterThanOrEqualTo(Integer value) { this.PriorityWeightGreaterThanOrEqualTo = value; return this; } public Integer getPriorityWeightGreaterThan() { return PriorityWeightGreaterThan; } public IN_BackOrderAllocLinesQuery setPriorityWeightGreaterThan(Integer value) { this.PriorityWeightGreaterThan = value; return this; } public Integer getPriorityWeightLessThan() { return PriorityWeightLessThan; } public IN_BackOrderAllocLinesQuery setPriorityWeightLessThan(Integer value) { this.PriorityWeightLessThan = value; return this; } public Integer getPriorityWeightLessThanOrEqualTo() { return PriorityWeightLessThanOrEqualTo; } public IN_BackOrderAllocLinesQuery setPriorityWeightLessThanOrEqualTo(Integer value) { this.PriorityWeightLessThanOrEqualTo = value; return this; } public Integer getPriorityWeightNotEqualTo() { return PriorityWeightNotEqualTo; } public IN_BackOrderAllocLinesQuery setPriorityWeightNotEqualTo(Integer value) { this.PriorityWeightNotEqualTo = value; return this; } public ArrayList getPriorityWeightBetween() { return PriorityWeightBetween; } public IN_BackOrderAllocLinesQuery setPriorityWeightBetween(ArrayList value) { this.PriorityWeightBetween = value; return this; } public ArrayList getPriorityWeightIn() { return PriorityWeightIn; } public IN_BackOrderAllocLinesQuery setPriorityWeightIn(ArrayList value) { this.PriorityWeightIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class IN_BinLocationQuery extends QueryDb implements IReturn> { public String IN_BinLocationID = null; public String IN_BinLocationIDStartsWith = null; public String IN_BinLocationIDEndsWith = null; public String IN_BinLocationIDContains = null; public String IN_BinLocationIDLike = null; public ArrayList IN_BinLocationIDBetween = null; public ArrayList IN_BinLocationIDIn = null; public String IN_MainID = null; public String IN_MainIDStartsWith = null; public String IN_MainIDEndsWith = null; public String IN_MainIDContains = null; public String IN_MainIDLike = null; public ArrayList IN_MainIDBetween = null; public ArrayList IN_MainIDIn = null; public String IN_LogicalID = null; public String IN_LogicalIDStartsWith = null; public String IN_LogicalIDEndsWith = null; public String IN_LogicalIDContains = null; public String IN_LogicalIDLike = null; public ArrayList IN_LogicalIDBetween = null; public ArrayList IN_LogicalIDIn = null; public Date LastSavedDateTime = null; public Date LastSavedDateTimeGreaterThanOrEqualTo = null; public Date LastSavedDateTimeGreaterThan = null; public Date LastSavedDateTimeLessThan = null; public Date LastSavedDateTimeLessThanOrEqualTo = null; public Date LastSavedDateTimeNotEqualTo = null; public ArrayList LastSavedDateTimeBetween = null; public ArrayList LastSavedDateTimeIn = null; public String IN_BinLocationLookup_INBinLookupID = null; public String IN_BinLocationLookup_INBinLookupIDStartsWith = null; public String IN_BinLocationLookup_INBinLookupIDEndsWith = null; public String IN_BinLocationLookup_INBinLookupIDContains = null; public String IN_BinLocationLookup_INBinLookupIDLike = null; public ArrayList IN_BinLocationLookup_INBinLookupIDBetween = null; public ArrayList IN_BinLocationLookup_INBinLookupIDIn = null; public String getInBinLocationID() { return IN_BinLocationID; } public IN_BinLocationQuery setInBinLocationID(String value) { this.IN_BinLocationID = value; return this; } public String getInBinLocationIDStartsWith() { return IN_BinLocationIDStartsWith; } public IN_BinLocationQuery setInBinLocationIDStartsWith(String value) { this.IN_BinLocationIDStartsWith = value; return this; } public String getInBinLocationIDEndsWith() { return IN_BinLocationIDEndsWith; } public IN_BinLocationQuery setInBinLocationIDEndsWith(String value) { this.IN_BinLocationIDEndsWith = value; return this; } public String getInBinLocationIDContains() { return IN_BinLocationIDContains; } public IN_BinLocationQuery setInBinLocationIDContains(String value) { this.IN_BinLocationIDContains = value; return this; } public String getInBinLocationIDLike() { return IN_BinLocationIDLike; } public IN_BinLocationQuery setInBinLocationIDLike(String value) { this.IN_BinLocationIDLike = value; return this; } public ArrayList getInBinLocationIDBetween() { return IN_BinLocationIDBetween; } public IN_BinLocationQuery setInBinLocationIDBetween(ArrayList value) { this.IN_BinLocationIDBetween = value; return this; } public ArrayList getInBinLocationIDIn() { return IN_BinLocationIDIn; } public IN_BinLocationQuery setInBinLocationIDIn(ArrayList value) { this.IN_BinLocationIDIn = value; return this; } public String getInMainID() { return IN_MainID; } public IN_BinLocationQuery setInMainID(String value) { this.IN_MainID = value; return this; } public String getInMainIDStartsWith() { return IN_MainIDStartsWith; } public IN_BinLocationQuery setInMainIDStartsWith(String value) { this.IN_MainIDStartsWith = value; return this; } public String getInMainIDEndsWith() { return IN_MainIDEndsWith; } public IN_BinLocationQuery setInMainIDEndsWith(String value) { this.IN_MainIDEndsWith = value; return this; } public String getInMainIDContains() { return IN_MainIDContains; } public IN_BinLocationQuery setInMainIDContains(String value) { this.IN_MainIDContains = value; return this; } public String getInMainIDLike() { return IN_MainIDLike; } public IN_BinLocationQuery setInMainIDLike(String value) { this.IN_MainIDLike = value; return this; } public ArrayList getInMainIDBetween() { return IN_MainIDBetween; } public IN_BinLocationQuery setInMainIDBetween(ArrayList value) { this.IN_MainIDBetween = value; return this; } public ArrayList getInMainIDIn() { return IN_MainIDIn; } public IN_BinLocationQuery setInMainIDIn(ArrayList value) { this.IN_MainIDIn = value; return this; } public String getInLogicalID() { return IN_LogicalID; } public IN_BinLocationQuery setInLogicalID(String value) { this.IN_LogicalID = value; return this; } public String getInLogicalIDStartsWith() { return IN_LogicalIDStartsWith; } public IN_BinLocationQuery setInLogicalIDStartsWith(String value) { this.IN_LogicalIDStartsWith = value; return this; } public String getInLogicalIDEndsWith() { return IN_LogicalIDEndsWith; } public IN_BinLocationQuery setInLogicalIDEndsWith(String value) { this.IN_LogicalIDEndsWith = value; return this; } public String getInLogicalIDContains() { return IN_LogicalIDContains; } public IN_BinLocationQuery setInLogicalIDContains(String value) { this.IN_LogicalIDContains = value; return this; } public String getInLogicalIDLike() { return IN_LogicalIDLike; } public IN_BinLocationQuery setInLogicalIDLike(String value) { this.IN_LogicalIDLike = value; return this; } public ArrayList getInLogicalIDBetween() { return IN_LogicalIDBetween; } public IN_BinLocationQuery setInLogicalIDBetween(ArrayList value) { this.IN_LogicalIDBetween = value; return this; } public ArrayList getInLogicalIDIn() { return IN_LogicalIDIn; } public IN_BinLocationQuery setInLogicalIDIn(ArrayList value) { this.IN_LogicalIDIn = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public IN_BinLocationQuery setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getLastSavedDateTimeGreaterThanOrEqualTo() { return LastSavedDateTimeGreaterThanOrEqualTo; } public IN_BinLocationQuery setLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.LastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeGreaterThan() { return LastSavedDateTimeGreaterThan; } public IN_BinLocationQuery setLastSavedDateTimeGreaterThan(Date value) { this.LastSavedDateTimeGreaterThan = value; return this; } public Date getLastSavedDateTimeLessThan() { return LastSavedDateTimeLessThan; } public IN_BinLocationQuery setLastSavedDateTimeLessThan(Date value) { this.LastSavedDateTimeLessThan = value; return this; } public Date getLastSavedDateTimeLessThanOrEqualTo() { return LastSavedDateTimeLessThanOrEqualTo; } public IN_BinLocationQuery setLastSavedDateTimeLessThanOrEqualTo(Date value) { this.LastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeNotEqualTo() { return LastSavedDateTimeNotEqualTo; } public IN_BinLocationQuery setLastSavedDateTimeNotEqualTo(Date value) { this.LastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getLastSavedDateTimeBetween() { return LastSavedDateTimeBetween; } public IN_BinLocationQuery setLastSavedDateTimeBetween(ArrayList value) { this.LastSavedDateTimeBetween = value; return this; } public ArrayList getLastSavedDateTimeIn() { return LastSavedDateTimeIn; } public IN_BinLocationQuery setLastSavedDateTimeIn(ArrayList value) { this.LastSavedDateTimeIn = value; return this; } public String getInBinLocationLookupInBinLookupID() { return IN_BinLocationLookup_INBinLookupID; } public IN_BinLocationQuery setInBinLocationLookupInBinLookupID(String value) { this.IN_BinLocationLookup_INBinLookupID = value; return this; } public String getInBinLocationLookupInBinLookupIDStartsWith() { return IN_BinLocationLookup_INBinLookupIDStartsWith; } public IN_BinLocationQuery setInBinLocationLookupInBinLookupIDStartsWith(String value) { this.IN_BinLocationLookup_INBinLookupIDStartsWith = value; return this; } public String getInBinLocationLookupInBinLookupIDEndsWith() { return IN_BinLocationLookup_INBinLookupIDEndsWith; } public IN_BinLocationQuery setInBinLocationLookupInBinLookupIDEndsWith(String value) { this.IN_BinLocationLookup_INBinLookupIDEndsWith = value; return this; } public String getInBinLocationLookupInBinLookupIDContains() { return IN_BinLocationLookup_INBinLookupIDContains; } public IN_BinLocationQuery setInBinLocationLookupInBinLookupIDContains(String value) { this.IN_BinLocationLookup_INBinLookupIDContains = value; return this; } public String getInBinLocationLookupInBinLookupIDLike() { return IN_BinLocationLookup_INBinLookupIDLike; } public IN_BinLocationQuery setInBinLocationLookupInBinLookupIDLike(String value) { this.IN_BinLocationLookup_INBinLookupIDLike = value; return this; } public ArrayList getInBinLocationLookupInBinLookupIDBetween() { return IN_BinLocationLookup_INBinLookupIDBetween; } public IN_BinLocationQuery setInBinLocationLookupInBinLookupIDBetween(ArrayList value) { this.IN_BinLocationLookup_INBinLookupIDBetween = value; return this; } public ArrayList getInBinLocationLookupInBinLookupIDIn() { return IN_BinLocationLookup_INBinLookupIDIn; } public IN_BinLocationQuery setInBinLocationLookupInBinLookupIDIn(ArrayList value) { this.IN_BinLocationLookup_INBinLookupIDIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class IN_BinLocationCustomFieldsQuery extends QueryDb implements IReturn> { public String FieldID = null; public String FieldIDStartsWith = null; public String FieldIDEndsWith = null; public String FieldIDContains = null; public String FieldIDLike = null; public ArrayList FieldIDBetween = null; public ArrayList FieldIDIn = null; public String SettingName = null; public String SettingNameStartsWith = null; public String SettingNameEndsWith = null; public String SettingNameContains = null; public String SettingNameLike = null; public ArrayList SettingNameBetween = null; public ArrayList SettingNameIn = null; public String SettingDescription = null; public String SettingDescriptionStartsWith = null; public String SettingDescriptionEndsWith = null; public String SettingDescriptionContains = null; public String SettingDescriptionLike = null; public ArrayList SettingDescriptionBetween = null; public ArrayList SettingDescriptionIn = null; public Integer CellType = null; public Integer CellTypeGreaterThanOrEqualTo = null; public Integer CellTypeGreaterThan = null; public Integer CellTypeLessThan = null; public Integer CellTypeLessThanOrEqualTo = null; public Integer CellTypeNotEqualTo = null; public ArrayList CellTypeBetween = null; public ArrayList CellTypeIn = null; public String FieldParameter = null; public String FieldParameterStartsWith = null; public String FieldParameterEndsWith = null; public String FieldParameterContains = null; public String FieldParameterLike = null; public ArrayList FieldParameterBetween = null; public ArrayList FieldParameterIn = null; public UUID SY_Plugin_RecID = null; public ArrayList SY_Plugin_RecIDIn = null; public Date LastSavedDateTime = null; public Date LastSavedDateTimeGreaterThanOrEqualTo = null; public Date LastSavedDateTimeGreaterThan = null; public Date LastSavedDateTimeLessThan = null; public Date LastSavedDateTimeLessThanOrEqualTo = null; public Date LastSavedDateTimeNotEqualTo = null; public ArrayList LastSavedDateTimeBetween = null; public ArrayList LastSavedDateTimeIn = null; public Integer DisplayOrder = null; public Integer DisplayOrderGreaterThanOrEqualTo = null; public Integer DisplayOrderGreaterThan = null; public Integer DisplayOrderLessThan = null; public Integer DisplayOrderLessThanOrEqualTo = null; public Integer DisplayOrderNotEqualTo = null; public ArrayList DisplayOrderBetween = null; public ArrayList DisplayOrderIn = null; public String getFieldID() { return FieldID; } public IN_BinLocationCustomFieldsQuery setFieldID(String value) { this.FieldID = value; return this; } public String getFieldIDStartsWith() { return FieldIDStartsWith; } public IN_BinLocationCustomFieldsQuery setFieldIDStartsWith(String value) { this.FieldIDStartsWith = value; return this; } public String getFieldIDEndsWith() { return FieldIDEndsWith; } public IN_BinLocationCustomFieldsQuery setFieldIDEndsWith(String value) { this.FieldIDEndsWith = value; return this; } public String getFieldIDContains() { return FieldIDContains; } public IN_BinLocationCustomFieldsQuery setFieldIDContains(String value) { this.FieldIDContains = value; return this; } public String getFieldIDLike() { return FieldIDLike; } public IN_BinLocationCustomFieldsQuery setFieldIDLike(String value) { this.FieldIDLike = value; return this; } public ArrayList getFieldIDBetween() { return FieldIDBetween; } public IN_BinLocationCustomFieldsQuery setFieldIDBetween(ArrayList value) { this.FieldIDBetween = value; return this; } public ArrayList getFieldIDIn() { return FieldIDIn; } public IN_BinLocationCustomFieldsQuery setFieldIDIn(ArrayList value) { this.FieldIDIn = value; return this; } public String getSettingName() { return SettingName; } public IN_BinLocationCustomFieldsQuery setSettingName(String value) { this.SettingName = value; return this; } public String getSettingNameStartsWith() { return SettingNameStartsWith; } public IN_BinLocationCustomFieldsQuery setSettingNameStartsWith(String value) { this.SettingNameStartsWith = value; return this; } public String getSettingNameEndsWith() { return SettingNameEndsWith; } public IN_BinLocationCustomFieldsQuery setSettingNameEndsWith(String value) { this.SettingNameEndsWith = value; return this; } public String getSettingNameContains() { return SettingNameContains; } public IN_BinLocationCustomFieldsQuery setSettingNameContains(String value) { this.SettingNameContains = value; return this; } public String getSettingNameLike() { return SettingNameLike; } public IN_BinLocationCustomFieldsQuery setSettingNameLike(String value) { this.SettingNameLike = value; return this; } public ArrayList getSettingNameBetween() { return SettingNameBetween; } public IN_BinLocationCustomFieldsQuery setSettingNameBetween(ArrayList value) { this.SettingNameBetween = value; return this; } public ArrayList getSettingNameIn() { return SettingNameIn; } public IN_BinLocationCustomFieldsQuery setSettingNameIn(ArrayList value) { this.SettingNameIn = value; return this; } public String getSettingDescription() { return SettingDescription; } public IN_BinLocationCustomFieldsQuery setSettingDescription(String value) { this.SettingDescription = value; return this; } public String getSettingDescriptionStartsWith() { return SettingDescriptionStartsWith; } public IN_BinLocationCustomFieldsQuery setSettingDescriptionStartsWith(String value) { this.SettingDescriptionStartsWith = value; return this; } public String getSettingDescriptionEndsWith() { return SettingDescriptionEndsWith; } public IN_BinLocationCustomFieldsQuery setSettingDescriptionEndsWith(String value) { this.SettingDescriptionEndsWith = value; return this; } public String getSettingDescriptionContains() { return SettingDescriptionContains; } public IN_BinLocationCustomFieldsQuery setSettingDescriptionContains(String value) { this.SettingDescriptionContains = value; return this; } public String getSettingDescriptionLike() { return SettingDescriptionLike; } public IN_BinLocationCustomFieldsQuery setSettingDescriptionLike(String value) { this.SettingDescriptionLike = value; return this; } public ArrayList getSettingDescriptionBetween() { return SettingDescriptionBetween; } public IN_BinLocationCustomFieldsQuery setSettingDescriptionBetween(ArrayList value) { this.SettingDescriptionBetween = value; return this; } public ArrayList getSettingDescriptionIn() { return SettingDescriptionIn; } public IN_BinLocationCustomFieldsQuery setSettingDescriptionIn(ArrayList value) { this.SettingDescriptionIn = value; return this; } public Integer getCellType() { return CellType; } public IN_BinLocationCustomFieldsQuery setCellType(Integer value) { this.CellType = value; return this; } public Integer getCellTypeGreaterThanOrEqualTo() { return CellTypeGreaterThanOrEqualTo; } public IN_BinLocationCustomFieldsQuery setCellTypeGreaterThanOrEqualTo(Integer value) { this.CellTypeGreaterThanOrEqualTo = value; return this; } public Integer getCellTypeGreaterThan() { return CellTypeGreaterThan; } public IN_BinLocationCustomFieldsQuery setCellTypeGreaterThan(Integer value) { this.CellTypeGreaterThan = value; return this; } public Integer getCellTypeLessThan() { return CellTypeLessThan; } public IN_BinLocationCustomFieldsQuery setCellTypeLessThan(Integer value) { this.CellTypeLessThan = value; return this; } public Integer getCellTypeLessThanOrEqualTo() { return CellTypeLessThanOrEqualTo; } public IN_BinLocationCustomFieldsQuery setCellTypeLessThanOrEqualTo(Integer value) { this.CellTypeLessThanOrEqualTo = value; return this; } public Integer getCellTypeNotEqualTo() { return CellTypeNotEqualTo; } public IN_BinLocationCustomFieldsQuery setCellTypeNotEqualTo(Integer value) { this.CellTypeNotEqualTo = value; return this; } public ArrayList getCellTypeBetween() { return CellTypeBetween; } public IN_BinLocationCustomFieldsQuery setCellTypeBetween(ArrayList value) { this.CellTypeBetween = value; return this; } public ArrayList getCellTypeIn() { return CellTypeIn; } public IN_BinLocationCustomFieldsQuery setCellTypeIn(ArrayList value) { this.CellTypeIn = value; return this; } public String getFieldParameter() { return FieldParameter; } public IN_BinLocationCustomFieldsQuery setFieldParameter(String value) { this.FieldParameter = value; return this; } public String getFieldParameterStartsWith() { return FieldParameterStartsWith; } public IN_BinLocationCustomFieldsQuery setFieldParameterStartsWith(String value) { this.FieldParameterStartsWith = value; return this; } public String getFieldParameterEndsWith() { return FieldParameterEndsWith; } public IN_BinLocationCustomFieldsQuery setFieldParameterEndsWith(String value) { this.FieldParameterEndsWith = value; return this; } public String getFieldParameterContains() { return FieldParameterContains; } public IN_BinLocationCustomFieldsQuery setFieldParameterContains(String value) { this.FieldParameterContains = value; return this; } public String getFieldParameterLike() { return FieldParameterLike; } public IN_BinLocationCustomFieldsQuery setFieldParameterLike(String value) { this.FieldParameterLike = value; return this; } public ArrayList getFieldParameterBetween() { return FieldParameterBetween; } public IN_BinLocationCustomFieldsQuery setFieldParameterBetween(ArrayList value) { this.FieldParameterBetween = value; return this; } public ArrayList getFieldParameterIn() { return FieldParameterIn; } public IN_BinLocationCustomFieldsQuery setFieldParameterIn(ArrayList value) { this.FieldParameterIn = value; return this; } public UUID getSyPluginRecID() { return SY_Plugin_RecID; } public IN_BinLocationCustomFieldsQuery setSyPluginRecID(UUID value) { this.SY_Plugin_RecID = value; return this; } public ArrayList getSyPluginRecIDIn() { return SY_Plugin_RecIDIn; } public IN_BinLocationCustomFieldsQuery setSyPluginRecIDIn(ArrayList value) { this.SY_Plugin_RecIDIn = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public IN_BinLocationCustomFieldsQuery setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getLastSavedDateTimeGreaterThanOrEqualTo() { return LastSavedDateTimeGreaterThanOrEqualTo; } public IN_BinLocationCustomFieldsQuery setLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.LastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeGreaterThan() { return LastSavedDateTimeGreaterThan; } public IN_BinLocationCustomFieldsQuery setLastSavedDateTimeGreaterThan(Date value) { this.LastSavedDateTimeGreaterThan = value; return this; } public Date getLastSavedDateTimeLessThan() { return LastSavedDateTimeLessThan; } public IN_BinLocationCustomFieldsQuery setLastSavedDateTimeLessThan(Date value) { this.LastSavedDateTimeLessThan = value; return this; } public Date getLastSavedDateTimeLessThanOrEqualTo() { return LastSavedDateTimeLessThanOrEqualTo; } public IN_BinLocationCustomFieldsQuery setLastSavedDateTimeLessThanOrEqualTo(Date value) { this.LastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeNotEqualTo() { return LastSavedDateTimeNotEqualTo; } public IN_BinLocationCustomFieldsQuery setLastSavedDateTimeNotEqualTo(Date value) { this.LastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getLastSavedDateTimeBetween() { return LastSavedDateTimeBetween; } public IN_BinLocationCustomFieldsQuery setLastSavedDateTimeBetween(ArrayList value) { this.LastSavedDateTimeBetween = value; return this; } public ArrayList getLastSavedDateTimeIn() { return LastSavedDateTimeIn; } public IN_BinLocationCustomFieldsQuery setLastSavedDateTimeIn(ArrayList value) { this.LastSavedDateTimeIn = value; return this; } public Integer getDisplayOrder() { return DisplayOrder; } public IN_BinLocationCustomFieldsQuery setDisplayOrder(Integer value) { this.DisplayOrder = value; return this; } public Integer getDisplayOrderGreaterThanOrEqualTo() { return DisplayOrderGreaterThanOrEqualTo; } public IN_BinLocationCustomFieldsQuery setDisplayOrderGreaterThanOrEqualTo(Integer value) { this.DisplayOrderGreaterThanOrEqualTo = value; return this; } public Integer getDisplayOrderGreaterThan() { return DisplayOrderGreaterThan; } public IN_BinLocationCustomFieldsQuery setDisplayOrderGreaterThan(Integer value) { this.DisplayOrderGreaterThan = value; return this; } public Integer getDisplayOrderLessThan() { return DisplayOrderLessThan; } public IN_BinLocationCustomFieldsQuery setDisplayOrderLessThan(Integer value) { this.DisplayOrderLessThan = value; return this; } public Integer getDisplayOrderLessThanOrEqualTo() { return DisplayOrderLessThanOrEqualTo; } public IN_BinLocationCustomFieldsQuery setDisplayOrderLessThanOrEqualTo(Integer value) { this.DisplayOrderLessThanOrEqualTo = value; return this; } public Integer getDisplayOrderNotEqualTo() { return DisplayOrderNotEqualTo; } public IN_BinLocationCustomFieldsQuery setDisplayOrderNotEqualTo(Integer value) { this.DisplayOrderNotEqualTo = value; return this; } public ArrayList getDisplayOrderBetween() { return DisplayOrderBetween; } public IN_BinLocationCustomFieldsQuery setDisplayOrderBetween(ArrayList value) { this.DisplayOrderBetween = value; return this; } public ArrayList getDisplayOrderIn() { return DisplayOrderIn; } public IN_BinLocationCustomFieldsQuery setDisplayOrderIn(ArrayList value) { this.DisplayOrderIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class IN_BinLocationCustomValuesQuery extends QueryDb implements IReturn> { public String RecID = null; public String RecIDStartsWith = null; public String RecIDEndsWith = null; public String RecIDContains = null; public String RecIDLike = null; public ArrayList RecIDBetween = null; public ArrayList RecIDIn = null; public String IN_BinLocationID = null; public String IN_BinLocationIDStartsWith = null; public String IN_BinLocationIDEndsWith = null; public String IN_BinLocationIDContains = null; public String IN_BinLocationIDLike = null; public ArrayList IN_BinLocationIDBetween = null; public ArrayList IN_BinLocationIDIn = null; public String FieldID = null; public String FieldIDStartsWith = null; public String FieldIDEndsWith = null; public String FieldIDContains = null; public String FieldIDLike = null; public ArrayList FieldIDBetween = null; public ArrayList FieldIDIn = null; public String Contents = null; public String ContentsStartsWith = null; public String ContentsEndsWith = null; public String ContentsContains = null; public String ContentsLike = null; public ArrayList ContentsBetween = null; public ArrayList ContentsIn = null; public Date LastSavedDateTime = null; public Date LastSavedDateTimeGreaterThanOrEqualTo = null; public Date LastSavedDateTimeGreaterThan = null; public Date LastSavedDateTimeLessThan = null; public Date LastSavedDateTimeLessThanOrEqualTo = null; public Date LastSavedDateTimeNotEqualTo = null; public ArrayList LastSavedDateTimeBetween = null; public ArrayList LastSavedDateTimeIn = null; public String getRecID() { return RecID; } public IN_BinLocationCustomValuesQuery setRecID(String value) { this.RecID = value; return this; } public String getRecIDStartsWith() { return RecIDStartsWith; } public IN_BinLocationCustomValuesQuery setRecIDStartsWith(String value) { this.RecIDStartsWith = value; return this; } public String getRecIDEndsWith() { return RecIDEndsWith; } public IN_BinLocationCustomValuesQuery setRecIDEndsWith(String value) { this.RecIDEndsWith = value; return this; } public String getRecIDContains() { return RecIDContains; } public IN_BinLocationCustomValuesQuery setRecIDContains(String value) { this.RecIDContains = value; return this; } public String getRecIDLike() { return RecIDLike; } public IN_BinLocationCustomValuesQuery setRecIDLike(String value) { this.RecIDLike = value; return this; } public ArrayList getRecIDBetween() { return RecIDBetween; } public IN_BinLocationCustomValuesQuery setRecIDBetween(ArrayList value) { this.RecIDBetween = value; return this; } public ArrayList getRecIDIn() { return RecIDIn; } public IN_BinLocationCustomValuesQuery setRecIDIn(ArrayList value) { this.RecIDIn = value; return this; } public String getInBinLocationID() { return IN_BinLocationID; } public IN_BinLocationCustomValuesQuery setInBinLocationID(String value) { this.IN_BinLocationID = value; return this; } public String getInBinLocationIDStartsWith() { return IN_BinLocationIDStartsWith; } public IN_BinLocationCustomValuesQuery setInBinLocationIDStartsWith(String value) { this.IN_BinLocationIDStartsWith = value; return this; } public String getInBinLocationIDEndsWith() { return IN_BinLocationIDEndsWith; } public IN_BinLocationCustomValuesQuery setInBinLocationIDEndsWith(String value) { this.IN_BinLocationIDEndsWith = value; return this; } public String getInBinLocationIDContains() { return IN_BinLocationIDContains; } public IN_BinLocationCustomValuesQuery setInBinLocationIDContains(String value) { this.IN_BinLocationIDContains = value; return this; } public String getInBinLocationIDLike() { return IN_BinLocationIDLike; } public IN_BinLocationCustomValuesQuery setInBinLocationIDLike(String value) { this.IN_BinLocationIDLike = value; return this; } public ArrayList getInBinLocationIDBetween() { return IN_BinLocationIDBetween; } public IN_BinLocationCustomValuesQuery setInBinLocationIDBetween(ArrayList value) { this.IN_BinLocationIDBetween = value; return this; } public ArrayList getInBinLocationIDIn() { return IN_BinLocationIDIn; } public IN_BinLocationCustomValuesQuery setInBinLocationIDIn(ArrayList value) { this.IN_BinLocationIDIn = value; return this; } public String getFieldID() { return FieldID; } public IN_BinLocationCustomValuesQuery setFieldID(String value) { this.FieldID = value; return this; } public String getFieldIDStartsWith() { return FieldIDStartsWith; } public IN_BinLocationCustomValuesQuery setFieldIDStartsWith(String value) { this.FieldIDStartsWith = value; return this; } public String getFieldIDEndsWith() { return FieldIDEndsWith; } public IN_BinLocationCustomValuesQuery setFieldIDEndsWith(String value) { this.FieldIDEndsWith = value; return this; } public String getFieldIDContains() { return FieldIDContains; } public IN_BinLocationCustomValuesQuery setFieldIDContains(String value) { this.FieldIDContains = value; return this; } public String getFieldIDLike() { return FieldIDLike; } public IN_BinLocationCustomValuesQuery setFieldIDLike(String value) { this.FieldIDLike = value; return this; } public ArrayList getFieldIDBetween() { return FieldIDBetween; } public IN_BinLocationCustomValuesQuery setFieldIDBetween(ArrayList value) { this.FieldIDBetween = value; return this; } public ArrayList getFieldIDIn() { return FieldIDIn; } public IN_BinLocationCustomValuesQuery setFieldIDIn(ArrayList value) { this.FieldIDIn = value; return this; } public String getContents() { return Contents; } public IN_BinLocationCustomValuesQuery setContents(String value) { this.Contents = value; return this; } public String getContentsStartsWith() { return ContentsStartsWith; } public IN_BinLocationCustomValuesQuery setContentsStartsWith(String value) { this.ContentsStartsWith = value; return this; } public String getContentsEndsWith() { return ContentsEndsWith; } public IN_BinLocationCustomValuesQuery setContentsEndsWith(String value) { this.ContentsEndsWith = value; return this; } public String getContentsContains() { return ContentsContains; } public IN_BinLocationCustomValuesQuery setContentsContains(String value) { this.ContentsContains = value; return this; } public String getContentsLike() { return ContentsLike; } public IN_BinLocationCustomValuesQuery setContentsLike(String value) { this.ContentsLike = value; return this; } public ArrayList getContentsBetween() { return ContentsBetween; } public IN_BinLocationCustomValuesQuery setContentsBetween(ArrayList value) { this.ContentsBetween = value; return this; } public ArrayList getContentsIn() { return ContentsIn; } public IN_BinLocationCustomValuesQuery setContentsIn(ArrayList value) { this.ContentsIn = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public IN_BinLocationCustomValuesQuery setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getLastSavedDateTimeGreaterThanOrEqualTo() { return LastSavedDateTimeGreaterThanOrEqualTo; } public IN_BinLocationCustomValuesQuery setLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.LastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeGreaterThan() { return LastSavedDateTimeGreaterThan; } public IN_BinLocationCustomValuesQuery setLastSavedDateTimeGreaterThan(Date value) { this.LastSavedDateTimeGreaterThan = value; return this; } public Date getLastSavedDateTimeLessThan() { return LastSavedDateTimeLessThan; } public IN_BinLocationCustomValuesQuery setLastSavedDateTimeLessThan(Date value) { this.LastSavedDateTimeLessThan = value; return this; } public Date getLastSavedDateTimeLessThanOrEqualTo() { return LastSavedDateTimeLessThanOrEqualTo; } public IN_BinLocationCustomValuesQuery setLastSavedDateTimeLessThanOrEqualTo(Date value) { this.LastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeNotEqualTo() { return LastSavedDateTimeNotEqualTo; } public IN_BinLocationCustomValuesQuery setLastSavedDateTimeNotEqualTo(Date value) { this.LastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getLastSavedDateTimeBetween() { return LastSavedDateTimeBetween; } public IN_BinLocationCustomValuesQuery setLastSavedDateTimeBetween(ArrayList value) { this.LastSavedDateTimeBetween = value; return this; } public ArrayList getLastSavedDateTimeIn() { return LastSavedDateTimeIn; } public IN_BinLocationCustomValuesQuery setLastSavedDateTimeIn(ArrayList value) { this.LastSavedDateTimeIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class AR_HistoryQuery extends QueryDb implements IReturn> { public String RecID = null; public String RecIDStartsWith = null; public String RecIDEndsWith = null; public String RecIDContains = null; public String RecIDLike = null; public ArrayList RecIDBetween = null; public ArrayList RecIDIn = null; public String AR_Main_RecID = null; public String AR_Main_RecIDStartsWith = null; public String AR_Main_RecIDEndsWith = null; public String AR_Main_RecIDContains = null; public String AR_Main_RecIDLike = null; public ArrayList AR_Main_RecIDBetween = null; public ArrayList AR_Main_RecIDIn = null; public Short Status = null; public Short StatusGreaterThanOrEqualTo = null; public Short StatusGreaterThan = null; public Short StatusLessThan = null; public Short StatusLessThanOrEqualTo = null; public Short StatusNotEqualTo = null; public ArrayList StatusBetween = null; public ArrayList StatusIn = null; public Date StartDateTime = null; public Date StartDateTimeGreaterThanOrEqualTo = null; public Date StartDateTimeGreaterThan = null; public Date StartDateTimeLessThan = null; public Date StartDateTimeLessThanOrEqualTo = null; public Date StartDateTimeNotEqualTo = null; public ArrayList StartDateTimeBetween = null; public ArrayList StartDateTimeIn = null; public Date EndDateTime = null; public Date EndDateTimeGreaterThanOrEqualTo = null; public Date EndDateTimeGreaterThan = null; public Date EndDateTimeLessThan = null; public Date EndDateTimeLessThanOrEqualTo = null; public Date EndDateTimeNotEqualTo = null; public ArrayList EndDateTimeBetween = null; public ArrayList EndDateTimeIn = null; public String Message = null; public String MessageStartsWith = null; public String MessageEndsWith = null; public String MessageContains = null; public String MessageLike = null; public ArrayList MessageBetween = null; public ArrayList MessageIn = null; public String Report = null; public String ReportStartsWith = null; public String ReportEndsWith = null; public String ReportContains = null; public String ReportLike = null; public ArrayList ReportBetween = null; public ArrayList ReportIn = null; public Date CreatedDateTime = null; public Date CreatedDateTimeGreaterThanOrEqualTo = null; public Date CreatedDateTimeGreaterThan = null; public Date CreatedDateTimeLessThan = null; public Date CreatedDateTimeLessThanOrEqualTo = null; public Date CreatedDateTimeNotEqualTo = null; public ArrayList CreatedDateTimeBetween = null; public ArrayList CreatedDateTimeIn = null; public String CreatedByStaffID = null; public String CreatedByStaffIDStartsWith = null; public String CreatedByStaffIDEndsWith = null; public String CreatedByStaffIDContains = null; public String CreatedByStaffIDLike = null; public ArrayList CreatedByStaffIDBetween = null; public ArrayList CreatedByStaffIDIn = null; public Date LastSavedDateTime = null; public Date LastSavedDateTimeGreaterThanOrEqualTo = null; public Date LastSavedDateTimeGreaterThan = null; public Date LastSavedDateTimeLessThan = null; public Date LastSavedDateTimeLessThanOrEqualTo = null; public Date LastSavedDateTimeNotEqualTo = null; public ArrayList LastSavedDateTimeBetween = null; public ArrayList LastSavedDateTimeIn = null; public String LastSavedByStaffID = null; public String LastSavedByStaffIDStartsWith = null; public String LastSavedByStaffIDEndsWith = null; public String LastSavedByStaffIDContains = null; public String LastSavedByStaffIDLike = null; public ArrayList LastSavedByStaffIDBetween = null; public ArrayList LastSavedByStaffIDIn = null; public String ExecutionID = null; public String ExecutionIDStartsWith = null; public String ExecutionIDEndsWith = null; public String ExecutionIDContains = null; public String ExecutionIDLike = null; public ArrayList ExecutionIDBetween = null; public ArrayList ExecutionIDIn = null; public String getRecID() { return RecID; } public AR_HistoryQuery setRecID(String value) { this.RecID = value; return this; } public String getRecIDStartsWith() { return RecIDStartsWith; } public AR_HistoryQuery setRecIDStartsWith(String value) { this.RecIDStartsWith = value; return this; } public String getRecIDEndsWith() { return RecIDEndsWith; } public AR_HistoryQuery setRecIDEndsWith(String value) { this.RecIDEndsWith = value; return this; } public String getRecIDContains() { return RecIDContains; } public AR_HistoryQuery setRecIDContains(String value) { this.RecIDContains = value; return this; } public String getRecIDLike() { return RecIDLike; } public AR_HistoryQuery setRecIDLike(String value) { this.RecIDLike = value; return this; } public ArrayList getRecIDBetween() { return RecIDBetween; } public AR_HistoryQuery setRecIDBetween(ArrayList value) { this.RecIDBetween = value; return this; } public ArrayList getRecIDIn() { return RecIDIn; } public AR_HistoryQuery setRecIDIn(ArrayList value) { this.RecIDIn = value; return this; } public String getArMainRecID() { return AR_Main_RecID; } public AR_HistoryQuery setArMainRecID(String value) { this.AR_Main_RecID = value; return this; } public String getArMainRecIDStartsWith() { return AR_Main_RecIDStartsWith; } public AR_HistoryQuery setArMainRecIDStartsWith(String value) { this.AR_Main_RecIDStartsWith = value; return this; } public String getArMainRecIDEndsWith() { return AR_Main_RecIDEndsWith; } public AR_HistoryQuery setArMainRecIDEndsWith(String value) { this.AR_Main_RecIDEndsWith = value; return this; } public String getArMainRecIDContains() { return AR_Main_RecIDContains; } public AR_HistoryQuery setArMainRecIDContains(String value) { this.AR_Main_RecIDContains = value; return this; } public String getArMainRecIDLike() { return AR_Main_RecIDLike; } public AR_HistoryQuery setArMainRecIDLike(String value) { this.AR_Main_RecIDLike = value; return this; } public ArrayList getArMainRecIDBetween() { return AR_Main_RecIDBetween; } public AR_HistoryQuery setArMainRecIDBetween(ArrayList value) { this.AR_Main_RecIDBetween = value; return this; } public ArrayList getArMainRecIDIn() { return AR_Main_RecIDIn; } public AR_HistoryQuery setArMainRecIDIn(ArrayList value) { this.AR_Main_RecIDIn = value; return this; } public Short getStatus() { return Status; } public AR_HistoryQuery setStatus(Short value) { this.Status = value; return this; } public Short getStatusGreaterThanOrEqualTo() { return StatusGreaterThanOrEqualTo; } public AR_HistoryQuery setStatusGreaterThanOrEqualTo(Short value) { this.StatusGreaterThanOrEqualTo = value; return this; } public Short getStatusGreaterThan() { return StatusGreaterThan; } public AR_HistoryQuery setStatusGreaterThan(Short value) { this.StatusGreaterThan = value; return this; } public Short getStatusLessThan() { return StatusLessThan; } public AR_HistoryQuery setStatusLessThan(Short value) { this.StatusLessThan = value; return this; } public Short getStatusLessThanOrEqualTo() { return StatusLessThanOrEqualTo; } public AR_HistoryQuery setStatusLessThanOrEqualTo(Short value) { this.StatusLessThanOrEqualTo = value; return this; } public Short getStatusNotEqualTo() { return StatusNotEqualTo; } public AR_HistoryQuery setStatusNotEqualTo(Short value) { this.StatusNotEqualTo = value; return this; } public ArrayList getStatusBetween() { return StatusBetween; } public AR_HistoryQuery setStatusBetween(ArrayList value) { this.StatusBetween = value; return this; } public ArrayList getStatusIn() { return StatusIn; } public AR_HistoryQuery setStatusIn(ArrayList value) { this.StatusIn = value; return this; } public Date getStartDateTime() { return StartDateTime; } public AR_HistoryQuery setStartDateTime(Date value) { this.StartDateTime = value; return this; } public Date getStartDateTimeGreaterThanOrEqualTo() { return StartDateTimeGreaterThanOrEqualTo; } public AR_HistoryQuery setStartDateTimeGreaterThanOrEqualTo(Date value) { this.StartDateTimeGreaterThanOrEqualTo = value; return this; } public Date getStartDateTimeGreaterThan() { return StartDateTimeGreaterThan; } public AR_HistoryQuery setStartDateTimeGreaterThan(Date value) { this.StartDateTimeGreaterThan = value; return this; } public Date getStartDateTimeLessThan() { return StartDateTimeLessThan; } public AR_HistoryQuery setStartDateTimeLessThan(Date value) { this.StartDateTimeLessThan = value; return this; } public Date getStartDateTimeLessThanOrEqualTo() { return StartDateTimeLessThanOrEqualTo; } public AR_HistoryQuery setStartDateTimeLessThanOrEqualTo(Date value) { this.StartDateTimeLessThanOrEqualTo = value; return this; } public Date getStartDateTimeNotEqualTo() { return StartDateTimeNotEqualTo; } public AR_HistoryQuery setStartDateTimeNotEqualTo(Date value) { this.StartDateTimeNotEqualTo = value; return this; } public ArrayList getStartDateTimeBetween() { return StartDateTimeBetween; } public AR_HistoryQuery setStartDateTimeBetween(ArrayList value) { this.StartDateTimeBetween = value; return this; } public ArrayList getStartDateTimeIn() { return StartDateTimeIn; } public AR_HistoryQuery setStartDateTimeIn(ArrayList value) { this.StartDateTimeIn = value; return this; } public Date getEndDateTime() { return EndDateTime; } public AR_HistoryQuery setEndDateTime(Date value) { this.EndDateTime = value; return this; } public Date getEndDateTimeGreaterThanOrEqualTo() { return EndDateTimeGreaterThanOrEqualTo; } public AR_HistoryQuery setEndDateTimeGreaterThanOrEqualTo(Date value) { this.EndDateTimeGreaterThanOrEqualTo = value; return this; } public Date getEndDateTimeGreaterThan() { return EndDateTimeGreaterThan; } public AR_HistoryQuery setEndDateTimeGreaterThan(Date value) { this.EndDateTimeGreaterThan = value; return this; } public Date getEndDateTimeLessThan() { return EndDateTimeLessThan; } public AR_HistoryQuery setEndDateTimeLessThan(Date value) { this.EndDateTimeLessThan = value; return this; } public Date getEndDateTimeLessThanOrEqualTo() { return EndDateTimeLessThanOrEqualTo; } public AR_HistoryQuery setEndDateTimeLessThanOrEqualTo(Date value) { this.EndDateTimeLessThanOrEqualTo = value; return this; } public Date getEndDateTimeNotEqualTo() { return EndDateTimeNotEqualTo; } public AR_HistoryQuery setEndDateTimeNotEqualTo(Date value) { this.EndDateTimeNotEqualTo = value; return this; } public ArrayList getEndDateTimeBetween() { return EndDateTimeBetween; } public AR_HistoryQuery setEndDateTimeBetween(ArrayList value) { this.EndDateTimeBetween = value; return this; } public ArrayList getEndDateTimeIn() { return EndDateTimeIn; } public AR_HistoryQuery setEndDateTimeIn(ArrayList value) { this.EndDateTimeIn = value; return this; } public String getMessage() { return Message; } public AR_HistoryQuery setMessage(String value) { this.Message = value; return this; } public String getMessageStartsWith() { return MessageStartsWith; } public AR_HistoryQuery setMessageStartsWith(String value) { this.MessageStartsWith = value; return this; } public String getMessageEndsWith() { return MessageEndsWith; } public AR_HistoryQuery setMessageEndsWith(String value) { this.MessageEndsWith = value; return this; } public String getMessageContains() { return MessageContains; } public AR_HistoryQuery setMessageContains(String value) { this.MessageContains = value; return this; } public String getMessageLike() { return MessageLike; } public AR_HistoryQuery setMessageLike(String value) { this.MessageLike = value; return this; } public ArrayList getMessageBetween() { return MessageBetween; } public AR_HistoryQuery setMessageBetween(ArrayList value) { this.MessageBetween = value; return this; } public ArrayList getMessageIn() { return MessageIn; } public AR_HistoryQuery setMessageIn(ArrayList value) { this.MessageIn = value; return this; } public String getReport() { return Report; } public AR_HistoryQuery setReport(String value) { this.Report = value; return this; } public String getReportStartsWith() { return ReportStartsWith; } public AR_HistoryQuery setReportStartsWith(String value) { this.ReportStartsWith = value; return this; } public String getReportEndsWith() { return ReportEndsWith; } public AR_HistoryQuery setReportEndsWith(String value) { this.ReportEndsWith = value; return this; } public String getReportContains() { return ReportContains; } public AR_HistoryQuery setReportContains(String value) { this.ReportContains = value; return this; } public String getReportLike() { return ReportLike; } public AR_HistoryQuery setReportLike(String value) { this.ReportLike = value; return this; } public ArrayList getReportBetween() { return ReportBetween; } public AR_HistoryQuery setReportBetween(ArrayList value) { this.ReportBetween = value; return this; } public ArrayList getReportIn() { return ReportIn; } public AR_HistoryQuery setReportIn(ArrayList value) { this.ReportIn = value; return this; } public Date getCreatedDateTime() { return CreatedDateTime; } public AR_HistoryQuery setCreatedDateTime(Date value) { this.CreatedDateTime = value; return this; } public Date getCreatedDateTimeGreaterThanOrEqualTo() { return CreatedDateTimeGreaterThanOrEqualTo; } public AR_HistoryQuery setCreatedDateTimeGreaterThanOrEqualTo(Date value) { this.CreatedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getCreatedDateTimeGreaterThan() { return CreatedDateTimeGreaterThan; } public AR_HistoryQuery setCreatedDateTimeGreaterThan(Date value) { this.CreatedDateTimeGreaterThan = value; return this; } public Date getCreatedDateTimeLessThan() { return CreatedDateTimeLessThan; } public AR_HistoryQuery setCreatedDateTimeLessThan(Date value) { this.CreatedDateTimeLessThan = value; return this; } public Date getCreatedDateTimeLessThanOrEqualTo() { return CreatedDateTimeLessThanOrEqualTo; } public AR_HistoryQuery setCreatedDateTimeLessThanOrEqualTo(Date value) { this.CreatedDateTimeLessThanOrEqualTo = value; return this; } public Date getCreatedDateTimeNotEqualTo() { return CreatedDateTimeNotEqualTo; } public AR_HistoryQuery setCreatedDateTimeNotEqualTo(Date value) { this.CreatedDateTimeNotEqualTo = value; return this; } public ArrayList getCreatedDateTimeBetween() { return CreatedDateTimeBetween; } public AR_HistoryQuery setCreatedDateTimeBetween(ArrayList value) { this.CreatedDateTimeBetween = value; return this; } public ArrayList getCreatedDateTimeIn() { return CreatedDateTimeIn; } public AR_HistoryQuery setCreatedDateTimeIn(ArrayList value) { this.CreatedDateTimeIn = value; return this; } public String getCreatedByStaffID() { return CreatedByStaffID; } public AR_HistoryQuery setCreatedByStaffID(String value) { this.CreatedByStaffID = value; return this; } public String getCreatedByStaffIDStartsWith() { return CreatedByStaffIDStartsWith; } public AR_HistoryQuery setCreatedByStaffIDStartsWith(String value) { this.CreatedByStaffIDStartsWith = value; return this; } public String getCreatedByStaffIDEndsWith() { return CreatedByStaffIDEndsWith; } public AR_HistoryQuery setCreatedByStaffIDEndsWith(String value) { this.CreatedByStaffIDEndsWith = value; return this; } public String getCreatedByStaffIDContains() { return CreatedByStaffIDContains; } public AR_HistoryQuery setCreatedByStaffIDContains(String value) { this.CreatedByStaffIDContains = value; return this; } public String getCreatedByStaffIDLike() { return CreatedByStaffIDLike; } public AR_HistoryQuery setCreatedByStaffIDLike(String value) { this.CreatedByStaffIDLike = value; return this; } public ArrayList getCreatedByStaffIDBetween() { return CreatedByStaffIDBetween; } public AR_HistoryQuery setCreatedByStaffIDBetween(ArrayList value) { this.CreatedByStaffIDBetween = value; return this; } public ArrayList getCreatedByStaffIDIn() { return CreatedByStaffIDIn; } public AR_HistoryQuery setCreatedByStaffIDIn(ArrayList value) { this.CreatedByStaffIDIn = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public AR_HistoryQuery setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getLastSavedDateTimeGreaterThanOrEqualTo() { return LastSavedDateTimeGreaterThanOrEqualTo; } public AR_HistoryQuery setLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.LastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeGreaterThan() { return LastSavedDateTimeGreaterThan; } public AR_HistoryQuery setLastSavedDateTimeGreaterThan(Date value) { this.LastSavedDateTimeGreaterThan = value; return this; } public Date getLastSavedDateTimeLessThan() { return LastSavedDateTimeLessThan; } public AR_HistoryQuery setLastSavedDateTimeLessThan(Date value) { this.LastSavedDateTimeLessThan = value; return this; } public Date getLastSavedDateTimeLessThanOrEqualTo() { return LastSavedDateTimeLessThanOrEqualTo; } public AR_HistoryQuery setLastSavedDateTimeLessThanOrEqualTo(Date value) { this.LastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeNotEqualTo() { return LastSavedDateTimeNotEqualTo; } public AR_HistoryQuery setLastSavedDateTimeNotEqualTo(Date value) { this.LastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getLastSavedDateTimeBetween() { return LastSavedDateTimeBetween; } public AR_HistoryQuery setLastSavedDateTimeBetween(ArrayList value) { this.LastSavedDateTimeBetween = value; return this; } public ArrayList getLastSavedDateTimeIn() { return LastSavedDateTimeIn; } public AR_HistoryQuery setLastSavedDateTimeIn(ArrayList value) { this.LastSavedDateTimeIn = value; return this; } public String getLastSavedByStaffID() { return LastSavedByStaffID; } public AR_HistoryQuery setLastSavedByStaffID(String value) { this.LastSavedByStaffID = value; return this; } public String getLastSavedByStaffIDStartsWith() { return LastSavedByStaffIDStartsWith; } public AR_HistoryQuery setLastSavedByStaffIDStartsWith(String value) { this.LastSavedByStaffIDStartsWith = value; return this; } public String getLastSavedByStaffIDEndsWith() { return LastSavedByStaffIDEndsWith; } public AR_HistoryQuery setLastSavedByStaffIDEndsWith(String value) { this.LastSavedByStaffIDEndsWith = value; return this; } public String getLastSavedByStaffIDContains() { return LastSavedByStaffIDContains; } public AR_HistoryQuery setLastSavedByStaffIDContains(String value) { this.LastSavedByStaffIDContains = value; return this; } public String getLastSavedByStaffIDLike() { return LastSavedByStaffIDLike; } public AR_HistoryQuery setLastSavedByStaffIDLike(String value) { this.LastSavedByStaffIDLike = value; return this; } public ArrayList getLastSavedByStaffIDBetween() { return LastSavedByStaffIDBetween; } public AR_HistoryQuery setLastSavedByStaffIDBetween(ArrayList value) { this.LastSavedByStaffIDBetween = value; return this; } public ArrayList getLastSavedByStaffIDIn() { return LastSavedByStaffIDIn; } public AR_HistoryQuery setLastSavedByStaffIDIn(ArrayList value) { this.LastSavedByStaffIDIn = value; return this; } public String getExecutionID() { return ExecutionID; } public AR_HistoryQuery setExecutionID(String value) { this.ExecutionID = value; return this; } public String getExecutionIDStartsWith() { return ExecutionIDStartsWith; } public AR_HistoryQuery setExecutionIDStartsWith(String value) { this.ExecutionIDStartsWith = value; return this; } public String getExecutionIDEndsWith() { return ExecutionIDEndsWith; } public AR_HistoryQuery setExecutionIDEndsWith(String value) { this.ExecutionIDEndsWith = value; return this; } public String getExecutionIDContains() { return ExecutionIDContains; } public AR_HistoryQuery setExecutionIDContains(String value) { this.ExecutionIDContains = value; return this; } public String getExecutionIDLike() { return ExecutionIDLike; } public AR_HistoryQuery setExecutionIDLike(String value) { this.ExecutionIDLike = value; return this; } public ArrayList getExecutionIDBetween() { return ExecutionIDBetween; } public AR_HistoryQuery setExecutionIDBetween(ArrayList value) { this.ExecutionIDBetween = value; return this; } public ArrayList getExecutionIDIn() { return ExecutionIDIn; } public AR_HistoryQuery setExecutionIDIn(ArrayList value) { this.ExecutionIDIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class AR_MainQuery extends QueryDb implements IReturn> { public String RecID = null; public String RecIDStartsWith = null; public String RecIDEndsWith = null; public String RecIDContains = null; public String RecIDLike = null; public ArrayList RecIDBetween = null; public ArrayList RecIDIn = null; public String Name = null; public String NameStartsWith = null; public String NameEndsWith = null; public String NameContains = null; public String NameLike = null; public ArrayList NameBetween = null; public ArrayList NameIn = null; public Short Enabled = null; public Short EnabledGreaterThanOrEqualTo = null; public Short EnabledGreaterThan = null; public Short EnabledLessThan = null; public Short EnabledLessThanOrEqualTo = null; public Short EnabledNotEqualTo = null; public ArrayList EnabledBetween = null; public ArrayList EnabledIn = null; public String Description = null; public String DescriptionStartsWith = null; public String DescriptionEndsWith = null; public String DescriptionContains = null; public String DescriptionLike = null; public ArrayList DescriptionBetween = null; public ArrayList DescriptionIn = null; public Date CreatedDateTime = null; public Date CreatedDateTimeGreaterThanOrEqualTo = null; public Date CreatedDateTimeGreaterThan = null; public Date CreatedDateTimeLessThan = null; public Date CreatedDateTimeLessThanOrEqualTo = null; public Date CreatedDateTimeNotEqualTo = null; public ArrayList CreatedDateTimeBetween = null; public ArrayList CreatedDateTimeIn = null; public String CreatedByStaffID = null; public String CreatedByStaffIDStartsWith = null; public String CreatedByStaffIDEndsWith = null; public String CreatedByStaffIDContains = null; public String CreatedByStaffIDLike = null; public ArrayList CreatedByStaffIDBetween = null; public ArrayList CreatedByStaffIDIn = null; public Date LastSavedDateTime = null; public Date LastSavedDateTimeGreaterThanOrEqualTo = null; public Date LastSavedDateTimeGreaterThan = null; public Date LastSavedDateTimeLessThan = null; public Date LastSavedDateTimeLessThanOrEqualTo = null; public Date LastSavedDateTimeNotEqualTo = null; public ArrayList LastSavedDateTimeBetween = null; public ArrayList LastSavedDateTimeIn = null; public String LastSavedByStaffID = null; public String LastSavedByStaffIDStartsWith = null; public String LastSavedByStaffIDEndsWith = null; public String LastSavedByStaffIDContains = null; public String LastSavedByStaffIDLike = null; public ArrayList LastSavedByStaffIDBetween = null; public ArrayList LastSavedByStaffIDIn = null; public Date NextScheduledRunDateTime = null; public Date NextScheduledRunDateTimeGreaterThanOrEqualTo = null; public Date NextScheduledRunDateTimeGreaterThan = null; public Date NextScheduledRunDateTimeLessThan = null; public Date NextScheduledRunDateTimeLessThanOrEqualTo = null; public Date NextScheduledRunDateTimeNotEqualTo = null; public ArrayList NextScheduledRunDateTimeBetween = null; public ArrayList NextScheduledRunDateTimeIn = null; public String getRecID() { return RecID; } public AR_MainQuery setRecID(String value) { this.RecID = value; return this; } public String getRecIDStartsWith() { return RecIDStartsWith; } public AR_MainQuery setRecIDStartsWith(String value) { this.RecIDStartsWith = value; return this; } public String getRecIDEndsWith() { return RecIDEndsWith; } public AR_MainQuery setRecIDEndsWith(String value) { this.RecIDEndsWith = value; return this; } public String getRecIDContains() { return RecIDContains; } public AR_MainQuery setRecIDContains(String value) { this.RecIDContains = value; return this; } public String getRecIDLike() { return RecIDLike; } public AR_MainQuery setRecIDLike(String value) { this.RecIDLike = value; return this; } public ArrayList getRecIDBetween() { return RecIDBetween; } public AR_MainQuery setRecIDBetween(ArrayList value) { this.RecIDBetween = value; return this; } public ArrayList getRecIDIn() { return RecIDIn; } public AR_MainQuery setRecIDIn(ArrayList value) { this.RecIDIn = value; return this; } public String getName() { return Name; } public AR_MainQuery setName(String value) { this.Name = value; return this; } public String getNameStartsWith() { return NameStartsWith; } public AR_MainQuery setNameStartsWith(String value) { this.NameStartsWith = value; return this; } public String getNameEndsWith() { return NameEndsWith; } public AR_MainQuery setNameEndsWith(String value) { this.NameEndsWith = value; return this; } public String getNameContains() { return NameContains; } public AR_MainQuery setNameContains(String value) { this.NameContains = value; return this; } public String getNameLike() { return NameLike; } public AR_MainQuery setNameLike(String value) { this.NameLike = value; return this; } public ArrayList getNameBetween() { return NameBetween; } public AR_MainQuery setNameBetween(ArrayList value) { this.NameBetween = value; return this; } public ArrayList getNameIn() { return NameIn; } public AR_MainQuery setNameIn(ArrayList value) { this.NameIn = value; return this; } public Short getEnabled() { return Enabled; } public AR_MainQuery setEnabled(Short value) { this.Enabled = value; return this; } public Short getEnabledGreaterThanOrEqualTo() { return EnabledGreaterThanOrEqualTo; } public AR_MainQuery setEnabledGreaterThanOrEqualTo(Short value) { this.EnabledGreaterThanOrEqualTo = value; return this; } public Short getEnabledGreaterThan() { return EnabledGreaterThan; } public AR_MainQuery setEnabledGreaterThan(Short value) { this.EnabledGreaterThan = value; return this; } public Short getEnabledLessThan() { return EnabledLessThan; } public AR_MainQuery setEnabledLessThan(Short value) { this.EnabledLessThan = value; return this; } public Short getEnabledLessThanOrEqualTo() { return EnabledLessThanOrEqualTo; } public AR_MainQuery setEnabledLessThanOrEqualTo(Short value) { this.EnabledLessThanOrEqualTo = value; return this; } public Short getEnabledNotEqualTo() { return EnabledNotEqualTo; } public AR_MainQuery setEnabledNotEqualTo(Short value) { this.EnabledNotEqualTo = value; return this; } public ArrayList getEnabledBetween() { return EnabledBetween; } public AR_MainQuery setEnabledBetween(ArrayList value) { this.EnabledBetween = value; return this; } public ArrayList getEnabledIn() { return EnabledIn; } public AR_MainQuery setEnabledIn(ArrayList value) { this.EnabledIn = value; return this; } public String getDescription() { return Description; } public AR_MainQuery setDescription(String value) { this.Description = value; return this; } public String getDescriptionStartsWith() { return DescriptionStartsWith; } public AR_MainQuery setDescriptionStartsWith(String value) { this.DescriptionStartsWith = value; return this; } public String getDescriptionEndsWith() { return DescriptionEndsWith; } public AR_MainQuery setDescriptionEndsWith(String value) { this.DescriptionEndsWith = value; return this; } public String getDescriptionContains() { return DescriptionContains; } public AR_MainQuery setDescriptionContains(String value) { this.DescriptionContains = value; return this; } public String getDescriptionLike() { return DescriptionLike; } public AR_MainQuery setDescriptionLike(String value) { this.DescriptionLike = value; return this; } public ArrayList getDescriptionBetween() { return DescriptionBetween; } public AR_MainQuery setDescriptionBetween(ArrayList value) { this.DescriptionBetween = value; return this; } public ArrayList getDescriptionIn() { return DescriptionIn; } public AR_MainQuery setDescriptionIn(ArrayList value) { this.DescriptionIn = value; return this; } public Date getCreatedDateTime() { return CreatedDateTime; } public AR_MainQuery setCreatedDateTime(Date value) { this.CreatedDateTime = value; return this; } public Date getCreatedDateTimeGreaterThanOrEqualTo() { return CreatedDateTimeGreaterThanOrEqualTo; } public AR_MainQuery setCreatedDateTimeGreaterThanOrEqualTo(Date value) { this.CreatedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getCreatedDateTimeGreaterThan() { return CreatedDateTimeGreaterThan; } public AR_MainQuery setCreatedDateTimeGreaterThan(Date value) { this.CreatedDateTimeGreaterThan = value; return this; } public Date getCreatedDateTimeLessThan() { return CreatedDateTimeLessThan; } public AR_MainQuery setCreatedDateTimeLessThan(Date value) { this.CreatedDateTimeLessThan = value; return this; } public Date getCreatedDateTimeLessThanOrEqualTo() { return CreatedDateTimeLessThanOrEqualTo; } public AR_MainQuery setCreatedDateTimeLessThanOrEqualTo(Date value) { this.CreatedDateTimeLessThanOrEqualTo = value; return this; } public Date getCreatedDateTimeNotEqualTo() { return CreatedDateTimeNotEqualTo; } public AR_MainQuery setCreatedDateTimeNotEqualTo(Date value) { this.CreatedDateTimeNotEqualTo = value; return this; } public ArrayList getCreatedDateTimeBetween() { return CreatedDateTimeBetween; } public AR_MainQuery setCreatedDateTimeBetween(ArrayList value) { this.CreatedDateTimeBetween = value; return this; } public ArrayList getCreatedDateTimeIn() { return CreatedDateTimeIn; } public AR_MainQuery setCreatedDateTimeIn(ArrayList value) { this.CreatedDateTimeIn = value; return this; } public String getCreatedByStaffID() { return CreatedByStaffID; } public AR_MainQuery setCreatedByStaffID(String value) { this.CreatedByStaffID = value; return this; } public String getCreatedByStaffIDStartsWith() { return CreatedByStaffIDStartsWith; } public AR_MainQuery setCreatedByStaffIDStartsWith(String value) { this.CreatedByStaffIDStartsWith = value; return this; } public String getCreatedByStaffIDEndsWith() { return CreatedByStaffIDEndsWith; } public AR_MainQuery setCreatedByStaffIDEndsWith(String value) { this.CreatedByStaffIDEndsWith = value; return this; } public String getCreatedByStaffIDContains() { return CreatedByStaffIDContains; } public AR_MainQuery setCreatedByStaffIDContains(String value) { this.CreatedByStaffIDContains = value; return this; } public String getCreatedByStaffIDLike() { return CreatedByStaffIDLike; } public AR_MainQuery setCreatedByStaffIDLike(String value) { this.CreatedByStaffIDLike = value; return this; } public ArrayList getCreatedByStaffIDBetween() { return CreatedByStaffIDBetween; } public AR_MainQuery setCreatedByStaffIDBetween(ArrayList value) { this.CreatedByStaffIDBetween = value; return this; } public ArrayList getCreatedByStaffIDIn() { return CreatedByStaffIDIn; } public AR_MainQuery setCreatedByStaffIDIn(ArrayList value) { this.CreatedByStaffIDIn = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public AR_MainQuery setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getLastSavedDateTimeGreaterThanOrEqualTo() { return LastSavedDateTimeGreaterThanOrEqualTo; } public AR_MainQuery setLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.LastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeGreaterThan() { return LastSavedDateTimeGreaterThan; } public AR_MainQuery setLastSavedDateTimeGreaterThan(Date value) { this.LastSavedDateTimeGreaterThan = value; return this; } public Date getLastSavedDateTimeLessThan() { return LastSavedDateTimeLessThan; } public AR_MainQuery setLastSavedDateTimeLessThan(Date value) { this.LastSavedDateTimeLessThan = value; return this; } public Date getLastSavedDateTimeLessThanOrEqualTo() { return LastSavedDateTimeLessThanOrEqualTo; } public AR_MainQuery setLastSavedDateTimeLessThanOrEqualTo(Date value) { this.LastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeNotEqualTo() { return LastSavedDateTimeNotEqualTo; } public AR_MainQuery setLastSavedDateTimeNotEqualTo(Date value) { this.LastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getLastSavedDateTimeBetween() { return LastSavedDateTimeBetween; } public AR_MainQuery setLastSavedDateTimeBetween(ArrayList value) { this.LastSavedDateTimeBetween = value; return this; } public ArrayList getLastSavedDateTimeIn() { return LastSavedDateTimeIn; } public AR_MainQuery setLastSavedDateTimeIn(ArrayList value) { this.LastSavedDateTimeIn = value; return this; } public String getLastSavedByStaffID() { return LastSavedByStaffID; } public AR_MainQuery setLastSavedByStaffID(String value) { this.LastSavedByStaffID = value; return this; } public String getLastSavedByStaffIDStartsWith() { return LastSavedByStaffIDStartsWith; } public AR_MainQuery setLastSavedByStaffIDStartsWith(String value) { this.LastSavedByStaffIDStartsWith = value; return this; } public String getLastSavedByStaffIDEndsWith() { return LastSavedByStaffIDEndsWith; } public AR_MainQuery setLastSavedByStaffIDEndsWith(String value) { this.LastSavedByStaffIDEndsWith = value; return this; } public String getLastSavedByStaffIDContains() { return LastSavedByStaffIDContains; } public AR_MainQuery setLastSavedByStaffIDContains(String value) { this.LastSavedByStaffIDContains = value; return this; } public String getLastSavedByStaffIDLike() { return LastSavedByStaffIDLike; } public AR_MainQuery setLastSavedByStaffIDLike(String value) { this.LastSavedByStaffIDLike = value; return this; } public ArrayList getLastSavedByStaffIDBetween() { return LastSavedByStaffIDBetween; } public AR_MainQuery setLastSavedByStaffIDBetween(ArrayList value) { this.LastSavedByStaffIDBetween = value; return this; } public ArrayList getLastSavedByStaffIDIn() { return LastSavedByStaffIDIn; } public AR_MainQuery setLastSavedByStaffIDIn(ArrayList value) { this.LastSavedByStaffIDIn = value; return this; } public Date getNextScheduledRunDateTime() { return NextScheduledRunDateTime; } public AR_MainQuery setNextScheduledRunDateTime(Date value) { this.NextScheduledRunDateTime = value; return this; } public Date getNextScheduledRunDateTimeGreaterThanOrEqualTo() { return NextScheduledRunDateTimeGreaterThanOrEqualTo; } public AR_MainQuery setNextScheduledRunDateTimeGreaterThanOrEqualTo(Date value) { this.NextScheduledRunDateTimeGreaterThanOrEqualTo = value; return this; } public Date getNextScheduledRunDateTimeGreaterThan() { return NextScheduledRunDateTimeGreaterThan; } public AR_MainQuery setNextScheduledRunDateTimeGreaterThan(Date value) { this.NextScheduledRunDateTimeGreaterThan = value; return this; } public Date getNextScheduledRunDateTimeLessThan() { return NextScheduledRunDateTimeLessThan; } public AR_MainQuery setNextScheduledRunDateTimeLessThan(Date value) { this.NextScheduledRunDateTimeLessThan = value; return this; } public Date getNextScheduledRunDateTimeLessThanOrEqualTo() { return NextScheduledRunDateTimeLessThanOrEqualTo; } public AR_MainQuery setNextScheduledRunDateTimeLessThanOrEqualTo(Date value) { this.NextScheduledRunDateTimeLessThanOrEqualTo = value; return this; } public Date getNextScheduledRunDateTimeNotEqualTo() { return NextScheduledRunDateTimeNotEqualTo; } public AR_MainQuery setNextScheduledRunDateTimeNotEqualTo(Date value) { this.NextScheduledRunDateTimeNotEqualTo = value; return this; } public ArrayList getNextScheduledRunDateTimeBetween() { return NextScheduledRunDateTimeBetween; } public AR_MainQuery setNextScheduledRunDateTimeBetween(ArrayList value) { this.NextScheduledRunDateTimeBetween = value; return this; } public ArrayList getNextScheduledRunDateTimeIn() { return NextScheduledRunDateTimeIn; } public AR_MainQuery setNextScheduledRunDateTimeIn(ArrayList value) { this.NextScheduledRunDateTimeIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class AR_ProviderQuery extends QueryDb implements IReturn> { public String ProviderID = null; public String ProviderIDStartsWith = null; public String ProviderIDEndsWith = null; public String ProviderIDContains = null; public String ProviderIDLike = null; public ArrayList ProviderIDBetween = null; public ArrayList ProviderIDIn = null; public String ProviderName = null; public String ProviderNameStartsWith = null; public String ProviderNameEndsWith = null; public String ProviderNameContains = null; public String ProviderNameLike = null; public ArrayList ProviderNameBetween = null; public ArrayList ProviderNameIn = null; public String StoredProcedureName = null; public String StoredProcedureNameStartsWith = null; public String StoredProcedureNameEndsWith = null; public String StoredProcedureNameContains = null; public String StoredProcedureNameLike = null; public ArrayList StoredProcedureNameBetween = null; public ArrayList StoredProcedureNameIn = null; public String ProviderDescription = null; public String ProviderDescriptionStartsWith = null; public String ProviderDescriptionEndsWith = null; public String ProviderDescriptionContains = null; public String ProviderDescriptionLike = null; public ArrayList ProviderDescriptionBetween = null; public ArrayList ProviderDescriptionIn = null; public Date LastSavedDateTime = null; public Date LastSavedDateTimeGreaterThanOrEqualTo = null; public Date LastSavedDateTimeGreaterThan = null; public Date LastSavedDateTimeLessThan = null; public Date LastSavedDateTimeLessThanOrEqualTo = null; public Date LastSavedDateTimeNotEqualTo = null; public ArrayList LastSavedDateTimeBetween = null; public ArrayList LastSavedDateTimeIn = null; public String getProviderID() { return ProviderID; } public AR_ProviderQuery setProviderID(String value) { this.ProviderID = value; return this; } public String getProviderIDStartsWith() { return ProviderIDStartsWith; } public AR_ProviderQuery setProviderIDStartsWith(String value) { this.ProviderIDStartsWith = value; return this; } public String getProviderIDEndsWith() { return ProviderIDEndsWith; } public AR_ProviderQuery setProviderIDEndsWith(String value) { this.ProviderIDEndsWith = value; return this; } public String getProviderIDContains() { return ProviderIDContains; } public AR_ProviderQuery setProviderIDContains(String value) { this.ProviderIDContains = value; return this; } public String getProviderIDLike() { return ProviderIDLike; } public AR_ProviderQuery setProviderIDLike(String value) { this.ProviderIDLike = value; return this; } public ArrayList getProviderIDBetween() { return ProviderIDBetween; } public AR_ProviderQuery setProviderIDBetween(ArrayList value) { this.ProviderIDBetween = value; return this; } public ArrayList getProviderIDIn() { return ProviderIDIn; } public AR_ProviderQuery setProviderIDIn(ArrayList value) { this.ProviderIDIn = value; return this; } public String getProviderName() { return ProviderName; } public AR_ProviderQuery setProviderName(String value) { this.ProviderName = value; return this; } public String getProviderNameStartsWith() { return ProviderNameStartsWith; } public AR_ProviderQuery setProviderNameStartsWith(String value) { this.ProviderNameStartsWith = value; return this; } public String getProviderNameEndsWith() { return ProviderNameEndsWith; } public AR_ProviderQuery setProviderNameEndsWith(String value) { this.ProviderNameEndsWith = value; return this; } public String getProviderNameContains() { return ProviderNameContains; } public AR_ProviderQuery setProviderNameContains(String value) { this.ProviderNameContains = value; return this; } public String getProviderNameLike() { return ProviderNameLike; } public AR_ProviderQuery setProviderNameLike(String value) { this.ProviderNameLike = value; return this; } public ArrayList getProviderNameBetween() { return ProviderNameBetween; } public AR_ProviderQuery setProviderNameBetween(ArrayList value) { this.ProviderNameBetween = value; return this; } public ArrayList getProviderNameIn() { return ProviderNameIn; } public AR_ProviderQuery setProviderNameIn(ArrayList value) { this.ProviderNameIn = value; return this; } public String getStoredProcedureName() { return StoredProcedureName; } public AR_ProviderQuery setStoredProcedureName(String value) { this.StoredProcedureName = value; return this; } public String getStoredProcedureNameStartsWith() { return StoredProcedureNameStartsWith; } public AR_ProviderQuery setStoredProcedureNameStartsWith(String value) { this.StoredProcedureNameStartsWith = value; return this; } public String getStoredProcedureNameEndsWith() { return StoredProcedureNameEndsWith; } public AR_ProviderQuery setStoredProcedureNameEndsWith(String value) { this.StoredProcedureNameEndsWith = value; return this; } public String getStoredProcedureNameContains() { return StoredProcedureNameContains; } public AR_ProviderQuery setStoredProcedureNameContains(String value) { this.StoredProcedureNameContains = value; return this; } public String getStoredProcedureNameLike() { return StoredProcedureNameLike; } public AR_ProviderQuery setStoredProcedureNameLike(String value) { this.StoredProcedureNameLike = value; return this; } public ArrayList getStoredProcedureNameBetween() { return StoredProcedureNameBetween; } public AR_ProviderQuery setStoredProcedureNameBetween(ArrayList value) { this.StoredProcedureNameBetween = value; return this; } public ArrayList getStoredProcedureNameIn() { return StoredProcedureNameIn; } public AR_ProviderQuery setStoredProcedureNameIn(ArrayList value) { this.StoredProcedureNameIn = value; return this; } public String getProviderDescription() { return ProviderDescription; } public AR_ProviderQuery setProviderDescription(String value) { this.ProviderDescription = value; return this; } public String getProviderDescriptionStartsWith() { return ProviderDescriptionStartsWith; } public AR_ProviderQuery setProviderDescriptionStartsWith(String value) { this.ProviderDescriptionStartsWith = value; return this; } public String getProviderDescriptionEndsWith() { return ProviderDescriptionEndsWith; } public AR_ProviderQuery setProviderDescriptionEndsWith(String value) { this.ProviderDescriptionEndsWith = value; return this; } public String getProviderDescriptionContains() { return ProviderDescriptionContains; } public AR_ProviderQuery setProviderDescriptionContains(String value) { this.ProviderDescriptionContains = value; return this; } public String getProviderDescriptionLike() { return ProviderDescriptionLike; } public AR_ProviderQuery setProviderDescriptionLike(String value) { this.ProviderDescriptionLike = value; return this; } public ArrayList getProviderDescriptionBetween() { return ProviderDescriptionBetween; } public AR_ProviderQuery setProviderDescriptionBetween(ArrayList value) { this.ProviderDescriptionBetween = value; return this; } public ArrayList getProviderDescriptionIn() { return ProviderDescriptionIn; } public AR_ProviderQuery setProviderDescriptionIn(ArrayList value) { this.ProviderDescriptionIn = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public AR_ProviderQuery setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getLastSavedDateTimeGreaterThanOrEqualTo() { return LastSavedDateTimeGreaterThanOrEqualTo; } public AR_ProviderQuery setLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.LastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeGreaterThan() { return LastSavedDateTimeGreaterThan; } public AR_ProviderQuery setLastSavedDateTimeGreaterThan(Date value) { this.LastSavedDateTimeGreaterThan = value; return this; } public Date getLastSavedDateTimeLessThan() { return LastSavedDateTimeLessThan; } public AR_ProviderQuery setLastSavedDateTimeLessThan(Date value) { this.LastSavedDateTimeLessThan = value; return this; } public Date getLastSavedDateTimeLessThanOrEqualTo() { return LastSavedDateTimeLessThanOrEqualTo; } public AR_ProviderQuery setLastSavedDateTimeLessThanOrEqualTo(Date value) { this.LastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeNotEqualTo() { return LastSavedDateTimeNotEqualTo; } public AR_ProviderQuery setLastSavedDateTimeNotEqualTo(Date value) { this.LastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getLastSavedDateTimeBetween() { return LastSavedDateTimeBetween; } public AR_ProviderQuery setLastSavedDateTimeBetween(ArrayList value) { this.LastSavedDateTimeBetween = value; return this; } public ArrayList getLastSavedDateTimeIn() { return LastSavedDateTimeIn; } public AR_ProviderQuery setLastSavedDateTimeIn(ArrayList value) { this.LastSavedDateTimeIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class AR_ProviderFiltersQuery extends QueryDb implements IReturn> { public String HeaderID = null; public String HeaderIDStartsWith = null; public String HeaderIDEndsWith = null; public String HeaderIDContains = null; public String HeaderIDLike = null; public ArrayList HeaderIDBetween = null; public ArrayList HeaderIDIn = null; public String FilterID = null; public String FilterIDStartsWith = null; public String FilterIDEndsWith = null; public String FilterIDContains = null; public String FilterIDLike = null; public ArrayList FilterIDBetween = null; public ArrayList FilterIDIn = null; public String Description = null; public String DescriptionStartsWith = null; public String DescriptionEndsWith = null; public String DescriptionContains = null; public String DescriptionLike = null; public ArrayList DescriptionBetween = null; public ArrayList DescriptionIn = null; public String FilterScript = null; public String FilterScriptStartsWith = null; public String FilterScriptEndsWith = null; public String FilterScriptContains = null; public String FilterScriptLike = null; public ArrayList FilterScriptBetween = null; public ArrayList FilterScriptIn = null; public Date LastSavedDateTime = null; public Date LastSavedDateTimeGreaterThanOrEqualTo = null; public Date LastSavedDateTimeGreaterThan = null; public Date LastSavedDateTimeLessThan = null; public Date LastSavedDateTimeLessThanOrEqualTo = null; public Date LastSavedDateTimeNotEqualTo = null; public ArrayList LastSavedDateTimeBetween = null; public ArrayList LastSavedDateTimeIn = null; public String getHeaderID() { return HeaderID; } public AR_ProviderFiltersQuery setHeaderID(String value) { this.HeaderID = value; return this; } public String getHeaderIDStartsWith() { return HeaderIDStartsWith; } public AR_ProviderFiltersQuery setHeaderIDStartsWith(String value) { this.HeaderIDStartsWith = value; return this; } public String getHeaderIDEndsWith() { return HeaderIDEndsWith; } public AR_ProviderFiltersQuery setHeaderIDEndsWith(String value) { this.HeaderIDEndsWith = value; return this; } public String getHeaderIDContains() { return HeaderIDContains; } public AR_ProviderFiltersQuery setHeaderIDContains(String value) { this.HeaderIDContains = value; return this; } public String getHeaderIDLike() { return HeaderIDLike; } public AR_ProviderFiltersQuery setHeaderIDLike(String value) { this.HeaderIDLike = value; return this; } public ArrayList getHeaderIDBetween() { return HeaderIDBetween; } public AR_ProviderFiltersQuery setHeaderIDBetween(ArrayList value) { this.HeaderIDBetween = value; return this; } public ArrayList getHeaderIDIn() { return HeaderIDIn; } public AR_ProviderFiltersQuery setHeaderIDIn(ArrayList value) { this.HeaderIDIn = value; return this; } public String getFilterID() { return FilterID; } public AR_ProviderFiltersQuery setFilterID(String value) { this.FilterID = value; return this; } public String getFilterIDStartsWith() { return FilterIDStartsWith; } public AR_ProviderFiltersQuery setFilterIDStartsWith(String value) { this.FilterIDStartsWith = value; return this; } public String getFilterIDEndsWith() { return FilterIDEndsWith; } public AR_ProviderFiltersQuery setFilterIDEndsWith(String value) { this.FilterIDEndsWith = value; return this; } public String getFilterIDContains() { return FilterIDContains; } public AR_ProviderFiltersQuery setFilterIDContains(String value) { this.FilterIDContains = value; return this; } public String getFilterIDLike() { return FilterIDLike; } public AR_ProviderFiltersQuery setFilterIDLike(String value) { this.FilterIDLike = value; return this; } public ArrayList getFilterIDBetween() { return FilterIDBetween; } public AR_ProviderFiltersQuery setFilterIDBetween(ArrayList value) { this.FilterIDBetween = value; return this; } public ArrayList getFilterIDIn() { return FilterIDIn; } public AR_ProviderFiltersQuery setFilterIDIn(ArrayList value) { this.FilterIDIn = value; return this; } public String getDescription() { return Description; } public AR_ProviderFiltersQuery setDescription(String value) { this.Description = value; return this; } public String getDescriptionStartsWith() { return DescriptionStartsWith; } public AR_ProviderFiltersQuery setDescriptionStartsWith(String value) { this.DescriptionStartsWith = value; return this; } public String getDescriptionEndsWith() { return DescriptionEndsWith; } public AR_ProviderFiltersQuery setDescriptionEndsWith(String value) { this.DescriptionEndsWith = value; return this; } public String getDescriptionContains() { return DescriptionContains; } public AR_ProviderFiltersQuery setDescriptionContains(String value) { this.DescriptionContains = value; return this; } public String getDescriptionLike() { return DescriptionLike; } public AR_ProviderFiltersQuery setDescriptionLike(String value) { this.DescriptionLike = value; return this; } public ArrayList getDescriptionBetween() { return DescriptionBetween; } public AR_ProviderFiltersQuery setDescriptionBetween(ArrayList value) { this.DescriptionBetween = value; return this; } public ArrayList getDescriptionIn() { return DescriptionIn; } public AR_ProviderFiltersQuery setDescriptionIn(ArrayList value) { this.DescriptionIn = value; return this; } public String getFilterScript() { return FilterScript; } public AR_ProviderFiltersQuery setFilterScript(String value) { this.FilterScript = value; return this; } public String getFilterScriptStartsWith() { return FilterScriptStartsWith; } public AR_ProviderFiltersQuery setFilterScriptStartsWith(String value) { this.FilterScriptStartsWith = value; return this; } public String getFilterScriptEndsWith() { return FilterScriptEndsWith; } public AR_ProviderFiltersQuery setFilterScriptEndsWith(String value) { this.FilterScriptEndsWith = value; return this; } public String getFilterScriptContains() { return FilterScriptContains; } public AR_ProviderFiltersQuery setFilterScriptContains(String value) { this.FilterScriptContains = value; return this; } public String getFilterScriptLike() { return FilterScriptLike; } public AR_ProviderFiltersQuery setFilterScriptLike(String value) { this.FilterScriptLike = value; return this; } public ArrayList getFilterScriptBetween() { return FilterScriptBetween; } public AR_ProviderFiltersQuery setFilterScriptBetween(ArrayList value) { this.FilterScriptBetween = value; return this; } public ArrayList getFilterScriptIn() { return FilterScriptIn; } public AR_ProviderFiltersQuery setFilterScriptIn(ArrayList value) { this.FilterScriptIn = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public AR_ProviderFiltersQuery setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getLastSavedDateTimeGreaterThanOrEqualTo() { return LastSavedDateTimeGreaterThanOrEqualTo; } public AR_ProviderFiltersQuery setLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.LastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeGreaterThan() { return LastSavedDateTimeGreaterThan; } public AR_ProviderFiltersQuery setLastSavedDateTimeGreaterThan(Date value) { this.LastSavedDateTimeGreaterThan = value; return this; } public Date getLastSavedDateTimeLessThan() { return LastSavedDateTimeLessThan; } public AR_ProviderFiltersQuery setLastSavedDateTimeLessThan(Date value) { this.LastSavedDateTimeLessThan = value; return this; } public Date getLastSavedDateTimeLessThanOrEqualTo() { return LastSavedDateTimeLessThanOrEqualTo; } public AR_ProviderFiltersQuery setLastSavedDateTimeLessThanOrEqualTo(Date value) { this.LastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeNotEqualTo() { return LastSavedDateTimeNotEqualTo; } public AR_ProviderFiltersQuery setLastSavedDateTimeNotEqualTo(Date value) { this.LastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getLastSavedDateTimeBetween() { return LastSavedDateTimeBetween; } public AR_ProviderFiltersQuery setLastSavedDateTimeBetween(ArrayList value) { this.LastSavedDateTimeBetween = value; return this; } public ArrayList getLastSavedDateTimeIn() { return LastSavedDateTimeIn; } public AR_ProviderFiltersQuery setLastSavedDateTimeIn(ArrayList value) { this.LastSavedDateTimeIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class AR_ProviderHeadersQuery extends QueryDb implements IReturn> { public String ProviderID = null; public String ProviderIDStartsWith = null; public String ProviderIDEndsWith = null; public String ProviderIDContains = null; public String ProviderIDLike = null; public ArrayList ProviderIDBetween = null; public ArrayList ProviderIDIn = null; public String HeaderID = null; public String HeaderIDStartsWith = null; public String HeaderIDEndsWith = null; public String HeaderIDContains = null; public String HeaderIDLike = null; public ArrayList HeaderIDBetween = null; public ArrayList HeaderIDIn = null; public String HeaderName = null; public String HeaderNameStartsWith = null; public String HeaderNameEndsWith = null; public String HeaderNameContains = null; public String HeaderNameLike = null; public ArrayList HeaderNameBetween = null; public ArrayList HeaderNameIn = null; public Integer DataType = null; public Integer DataTypeGreaterThanOrEqualTo = null; public Integer DataTypeGreaterThan = null; public Integer DataTypeLessThan = null; public Integer DataTypeLessThanOrEqualTo = null; public Integer DataTypeNotEqualTo = null; public ArrayList DataTypeBetween = null; public ArrayList DataTypeIn = null; public Date LastSavedDateTime = null; public Date LastSavedDateTimeGreaterThanOrEqualTo = null; public Date LastSavedDateTimeGreaterThan = null; public Date LastSavedDateTimeLessThan = null; public Date LastSavedDateTimeLessThanOrEqualTo = null; public Date LastSavedDateTimeNotEqualTo = null; public ArrayList LastSavedDateTimeBetween = null; public ArrayList LastSavedDateTimeIn = null; public Short OrdinalPosition = null; public Short OrdinalPositionGreaterThanOrEqualTo = null; public Short OrdinalPositionGreaterThan = null; public Short OrdinalPositionLessThan = null; public Short OrdinalPositionLessThanOrEqualTo = null; public Short OrdinalPositionNotEqualTo = null; public ArrayList OrdinalPositionBetween = null; public ArrayList OrdinalPositionIn = null; public String getProviderID() { return ProviderID; } public AR_ProviderHeadersQuery setProviderID(String value) { this.ProviderID = value; return this; } public String getProviderIDStartsWith() { return ProviderIDStartsWith; } public AR_ProviderHeadersQuery setProviderIDStartsWith(String value) { this.ProviderIDStartsWith = value; return this; } public String getProviderIDEndsWith() { return ProviderIDEndsWith; } public AR_ProviderHeadersQuery setProviderIDEndsWith(String value) { this.ProviderIDEndsWith = value; return this; } public String getProviderIDContains() { return ProviderIDContains; } public AR_ProviderHeadersQuery setProviderIDContains(String value) { this.ProviderIDContains = value; return this; } public String getProviderIDLike() { return ProviderIDLike; } public AR_ProviderHeadersQuery setProviderIDLike(String value) { this.ProviderIDLike = value; return this; } public ArrayList getProviderIDBetween() { return ProviderIDBetween; } public AR_ProviderHeadersQuery setProviderIDBetween(ArrayList value) { this.ProviderIDBetween = value; return this; } public ArrayList getProviderIDIn() { return ProviderIDIn; } public AR_ProviderHeadersQuery setProviderIDIn(ArrayList value) { this.ProviderIDIn = value; return this; } public String getHeaderID() { return HeaderID; } public AR_ProviderHeadersQuery setHeaderID(String value) { this.HeaderID = value; return this; } public String getHeaderIDStartsWith() { return HeaderIDStartsWith; } public AR_ProviderHeadersQuery setHeaderIDStartsWith(String value) { this.HeaderIDStartsWith = value; return this; } public String getHeaderIDEndsWith() { return HeaderIDEndsWith; } public AR_ProviderHeadersQuery setHeaderIDEndsWith(String value) { this.HeaderIDEndsWith = value; return this; } public String getHeaderIDContains() { return HeaderIDContains; } public AR_ProviderHeadersQuery setHeaderIDContains(String value) { this.HeaderIDContains = value; return this; } public String getHeaderIDLike() { return HeaderIDLike; } public AR_ProviderHeadersQuery setHeaderIDLike(String value) { this.HeaderIDLike = value; return this; } public ArrayList getHeaderIDBetween() { return HeaderIDBetween; } public AR_ProviderHeadersQuery setHeaderIDBetween(ArrayList value) { this.HeaderIDBetween = value; return this; } public ArrayList getHeaderIDIn() { return HeaderIDIn; } public AR_ProviderHeadersQuery setHeaderIDIn(ArrayList value) { this.HeaderIDIn = value; return this; } public String getHeaderName() { return HeaderName; } public AR_ProviderHeadersQuery setHeaderName(String value) { this.HeaderName = value; return this; } public String getHeaderNameStartsWith() { return HeaderNameStartsWith; } public AR_ProviderHeadersQuery setHeaderNameStartsWith(String value) { this.HeaderNameStartsWith = value; return this; } public String getHeaderNameEndsWith() { return HeaderNameEndsWith; } public AR_ProviderHeadersQuery setHeaderNameEndsWith(String value) { this.HeaderNameEndsWith = value; return this; } public String getHeaderNameContains() { return HeaderNameContains; } public AR_ProviderHeadersQuery setHeaderNameContains(String value) { this.HeaderNameContains = value; return this; } public String getHeaderNameLike() { return HeaderNameLike; } public AR_ProviderHeadersQuery setHeaderNameLike(String value) { this.HeaderNameLike = value; return this; } public ArrayList getHeaderNameBetween() { return HeaderNameBetween; } public AR_ProviderHeadersQuery setHeaderNameBetween(ArrayList value) { this.HeaderNameBetween = value; return this; } public ArrayList getHeaderNameIn() { return HeaderNameIn; } public AR_ProviderHeadersQuery setHeaderNameIn(ArrayList value) { this.HeaderNameIn = value; return this; } public Integer getDataType() { return DataType; } public AR_ProviderHeadersQuery setDataType(Integer value) { this.DataType = value; return this; } public Integer getDataTypeGreaterThanOrEqualTo() { return DataTypeGreaterThanOrEqualTo; } public AR_ProviderHeadersQuery setDataTypeGreaterThanOrEqualTo(Integer value) { this.DataTypeGreaterThanOrEqualTo = value; return this; } public Integer getDataTypeGreaterThan() { return DataTypeGreaterThan; } public AR_ProviderHeadersQuery setDataTypeGreaterThan(Integer value) { this.DataTypeGreaterThan = value; return this; } public Integer getDataTypeLessThan() { return DataTypeLessThan; } public AR_ProviderHeadersQuery setDataTypeLessThan(Integer value) { this.DataTypeLessThan = value; return this; } public Integer getDataTypeLessThanOrEqualTo() { return DataTypeLessThanOrEqualTo; } public AR_ProviderHeadersQuery setDataTypeLessThanOrEqualTo(Integer value) { this.DataTypeLessThanOrEqualTo = value; return this; } public Integer getDataTypeNotEqualTo() { return DataTypeNotEqualTo; } public AR_ProviderHeadersQuery setDataTypeNotEqualTo(Integer value) { this.DataTypeNotEqualTo = value; return this; } public ArrayList getDataTypeBetween() { return DataTypeBetween; } public AR_ProviderHeadersQuery setDataTypeBetween(ArrayList value) { this.DataTypeBetween = value; return this; } public ArrayList getDataTypeIn() { return DataTypeIn; } public AR_ProviderHeadersQuery setDataTypeIn(ArrayList value) { this.DataTypeIn = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public AR_ProviderHeadersQuery setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getLastSavedDateTimeGreaterThanOrEqualTo() { return LastSavedDateTimeGreaterThanOrEqualTo; } public AR_ProviderHeadersQuery setLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.LastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeGreaterThan() { return LastSavedDateTimeGreaterThan; } public AR_ProviderHeadersQuery setLastSavedDateTimeGreaterThan(Date value) { this.LastSavedDateTimeGreaterThan = value; return this; } public Date getLastSavedDateTimeLessThan() { return LastSavedDateTimeLessThan; } public AR_ProviderHeadersQuery setLastSavedDateTimeLessThan(Date value) { this.LastSavedDateTimeLessThan = value; return this; } public Date getLastSavedDateTimeLessThanOrEqualTo() { return LastSavedDateTimeLessThanOrEqualTo; } public AR_ProviderHeadersQuery setLastSavedDateTimeLessThanOrEqualTo(Date value) { this.LastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeNotEqualTo() { return LastSavedDateTimeNotEqualTo; } public AR_ProviderHeadersQuery setLastSavedDateTimeNotEqualTo(Date value) { this.LastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getLastSavedDateTimeBetween() { return LastSavedDateTimeBetween; } public AR_ProviderHeadersQuery setLastSavedDateTimeBetween(ArrayList value) { this.LastSavedDateTimeBetween = value; return this; } public ArrayList getLastSavedDateTimeIn() { return LastSavedDateTimeIn; } public AR_ProviderHeadersQuery setLastSavedDateTimeIn(ArrayList value) { this.LastSavedDateTimeIn = value; return this; } public Short getOrdinalPosition() { return OrdinalPosition; } public AR_ProviderHeadersQuery setOrdinalPosition(Short value) { this.OrdinalPosition = value; return this; } public Short getOrdinalPositionGreaterThanOrEqualTo() { return OrdinalPositionGreaterThanOrEqualTo; } public AR_ProviderHeadersQuery setOrdinalPositionGreaterThanOrEqualTo(Short value) { this.OrdinalPositionGreaterThanOrEqualTo = value; return this; } public Short getOrdinalPositionGreaterThan() { return OrdinalPositionGreaterThan; } public AR_ProviderHeadersQuery setOrdinalPositionGreaterThan(Short value) { this.OrdinalPositionGreaterThan = value; return this; } public Short getOrdinalPositionLessThan() { return OrdinalPositionLessThan; } public AR_ProviderHeadersQuery setOrdinalPositionLessThan(Short value) { this.OrdinalPositionLessThan = value; return this; } public Short getOrdinalPositionLessThanOrEqualTo() { return OrdinalPositionLessThanOrEqualTo; } public AR_ProviderHeadersQuery setOrdinalPositionLessThanOrEqualTo(Short value) { this.OrdinalPositionLessThanOrEqualTo = value; return this; } public Short getOrdinalPositionNotEqualTo() { return OrdinalPositionNotEqualTo; } public AR_ProviderHeadersQuery setOrdinalPositionNotEqualTo(Short value) { this.OrdinalPositionNotEqualTo = value; return this; } public ArrayList getOrdinalPositionBetween() { return OrdinalPositionBetween; } public AR_ProviderHeadersQuery setOrdinalPositionBetween(ArrayList value) { this.OrdinalPositionBetween = value; return this; } public ArrayList getOrdinalPositionIn() { return OrdinalPositionIn; } public AR_ProviderHeadersQuery setOrdinalPositionIn(ArrayList value) { this.OrdinalPositionIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class AR_SchedulesQuery extends QueryDb implements IReturn> { public String RecID = null; public String RecIDStartsWith = null; public String RecIDEndsWith = null; public String RecIDContains = null; public String RecIDLike = null; public ArrayList RecIDBetween = null; public ArrayList RecIDIn = null; public String AR_Main_RecID = null; public String AR_Main_RecIDStartsWith = null; public String AR_Main_RecIDEndsWith = null; public String AR_Main_RecIDContains = null; public String AR_Main_RecIDLike = null; public ArrayList AR_Main_RecIDBetween = null; public ArrayList AR_Main_RecIDIn = null; public String Name = null; public String NameStartsWith = null; public String NameEndsWith = null; public String NameContains = null; public String NameLike = null; public ArrayList NameBetween = null; public ArrayList NameIn = null; public Short Enabled = null; public Short EnabledGreaterThanOrEqualTo = null; public Short EnabledGreaterThan = null; public Short EnabledLessThan = null; public Short EnabledLessThanOrEqualTo = null; public Short EnabledNotEqualTo = null; public ArrayList EnabledBetween = null; public ArrayList EnabledIn = null; public Integer FrequencyType = null; public Integer FrequencyTypeGreaterThanOrEqualTo = null; public Integer FrequencyTypeGreaterThan = null; public Integer FrequencyTypeLessThan = null; public Integer FrequencyTypeLessThanOrEqualTo = null; public Integer FrequencyTypeNotEqualTo = null; public ArrayList FrequencyTypeBetween = null; public ArrayList FrequencyTypeIn = null; public Integer FrequencyInterval = null; public Integer FrequencyIntervalGreaterThanOrEqualTo = null; public Integer FrequencyIntervalGreaterThan = null; public Integer FrequencyIntervalLessThan = null; public Integer FrequencyIntervalLessThanOrEqualTo = null; public Integer FrequencyIntervalNotEqualTo = null; public ArrayList FrequencyIntervalBetween = null; public ArrayList FrequencyIntervalIn = null; public Integer FrequencySubdayType = null; public Integer FrequencySubdayTypeGreaterThanOrEqualTo = null; public Integer FrequencySubdayTypeGreaterThan = null; public Integer FrequencySubdayTypeLessThan = null; public Integer FrequencySubdayTypeLessThanOrEqualTo = null; public Integer FrequencySubdayTypeNotEqualTo = null; public ArrayList FrequencySubdayTypeBetween = null; public ArrayList FrequencySubdayTypeIn = null; public Integer FrequencySubdayInterval = null; public Integer FrequencySubdayIntervalGreaterThanOrEqualTo = null; public Integer FrequencySubdayIntervalGreaterThan = null; public Integer FrequencySubdayIntervalLessThan = null; public Integer FrequencySubdayIntervalLessThanOrEqualTo = null; public Integer FrequencySubdayIntervalNotEqualTo = null; public ArrayList FrequencySubdayIntervalBetween = null; public ArrayList FrequencySubdayIntervalIn = null; public Integer FrequencyRelativeInterval = null; public Integer FrequencyRelativeIntervalGreaterThanOrEqualTo = null; public Integer FrequencyRelativeIntervalGreaterThan = null; public Integer FrequencyRelativeIntervalLessThan = null; public Integer FrequencyRelativeIntervalLessThanOrEqualTo = null; public Integer FrequencyRelativeIntervalNotEqualTo = null; public ArrayList FrequencyRelativeIntervalBetween = null; public ArrayList FrequencyRelativeIntervalIn = null; public Integer FrequencyRecurrenceFactor = null; public Integer FrequencyRecurrenceFactorGreaterThanOrEqualTo = null; public Integer FrequencyRecurrenceFactorGreaterThan = null; public Integer FrequencyRecurrenceFactorLessThan = null; public Integer FrequencyRecurrenceFactorLessThanOrEqualTo = null; public Integer FrequencyRecurrenceFactorNotEqualTo = null; public ArrayList FrequencyRecurrenceFactorBetween = null; public ArrayList FrequencyRecurrenceFactorIn = null; public Date StartDateTime = null; public Date StartDateTimeGreaterThanOrEqualTo = null; public Date StartDateTimeGreaterThan = null; public Date StartDateTimeLessThan = null; public Date StartDateTimeLessThanOrEqualTo = null; public Date StartDateTimeNotEqualTo = null; public ArrayList StartDateTimeBetween = null; public ArrayList StartDateTimeIn = null; public Date EndDateTime = null; public Date EndDateTimeGreaterThanOrEqualTo = null; public Date EndDateTimeGreaterThan = null; public Date EndDateTimeLessThan = null; public Date EndDateTimeLessThanOrEqualTo = null; public Date EndDateTimeNotEqualTo = null; public ArrayList EndDateTimeBetween = null; public ArrayList EndDateTimeIn = null; public Date CreatedDateTime = null; public Date CreatedDateTimeGreaterThanOrEqualTo = null; public Date CreatedDateTimeGreaterThan = null; public Date CreatedDateTimeLessThan = null; public Date CreatedDateTimeLessThanOrEqualTo = null; public Date CreatedDateTimeNotEqualTo = null; public ArrayList CreatedDateTimeBetween = null; public ArrayList CreatedDateTimeIn = null; public String CreatedByStaffID = null; public String CreatedByStaffIDStartsWith = null; public String CreatedByStaffIDEndsWith = null; public String CreatedByStaffIDContains = null; public String CreatedByStaffIDLike = null; public ArrayList CreatedByStaffIDBetween = null; public ArrayList CreatedByStaffIDIn = null; public Date LastSavedDateTime = null; public Date LastSavedDateTimeGreaterThanOrEqualTo = null; public Date LastSavedDateTimeGreaterThan = null; public Date LastSavedDateTimeLessThan = null; public Date LastSavedDateTimeLessThanOrEqualTo = null; public Date LastSavedDateTimeNotEqualTo = null; public ArrayList LastSavedDateTimeBetween = null; public ArrayList LastSavedDateTimeIn = null; public String LastSavedByStaffID = null; public String LastSavedByStaffIDStartsWith = null; public String LastSavedByStaffIDEndsWith = null; public String LastSavedByStaffIDContains = null; public String LastSavedByStaffIDLike = null; public ArrayList LastSavedByStaffIDBetween = null; public ArrayList LastSavedByStaffIDIn = null; public String getRecID() { return RecID; } public AR_SchedulesQuery setRecID(String value) { this.RecID = value; return this; } public String getRecIDStartsWith() { return RecIDStartsWith; } public AR_SchedulesQuery setRecIDStartsWith(String value) { this.RecIDStartsWith = value; return this; } public String getRecIDEndsWith() { return RecIDEndsWith; } public AR_SchedulesQuery setRecIDEndsWith(String value) { this.RecIDEndsWith = value; return this; } public String getRecIDContains() { return RecIDContains; } public AR_SchedulesQuery setRecIDContains(String value) { this.RecIDContains = value; return this; } public String getRecIDLike() { return RecIDLike; } public AR_SchedulesQuery setRecIDLike(String value) { this.RecIDLike = value; return this; } public ArrayList getRecIDBetween() { return RecIDBetween; } public AR_SchedulesQuery setRecIDBetween(ArrayList value) { this.RecIDBetween = value; return this; } public ArrayList getRecIDIn() { return RecIDIn; } public AR_SchedulesQuery setRecIDIn(ArrayList value) { this.RecIDIn = value; return this; } public String getArMainRecID() { return AR_Main_RecID; } public AR_SchedulesQuery setArMainRecID(String value) { this.AR_Main_RecID = value; return this; } public String getArMainRecIDStartsWith() { return AR_Main_RecIDStartsWith; } public AR_SchedulesQuery setArMainRecIDStartsWith(String value) { this.AR_Main_RecIDStartsWith = value; return this; } public String getArMainRecIDEndsWith() { return AR_Main_RecIDEndsWith; } public AR_SchedulesQuery setArMainRecIDEndsWith(String value) { this.AR_Main_RecIDEndsWith = value; return this; } public String getArMainRecIDContains() { return AR_Main_RecIDContains; } public AR_SchedulesQuery setArMainRecIDContains(String value) { this.AR_Main_RecIDContains = value; return this; } public String getArMainRecIDLike() { return AR_Main_RecIDLike; } public AR_SchedulesQuery setArMainRecIDLike(String value) { this.AR_Main_RecIDLike = value; return this; } public ArrayList getArMainRecIDBetween() { return AR_Main_RecIDBetween; } public AR_SchedulesQuery setArMainRecIDBetween(ArrayList value) { this.AR_Main_RecIDBetween = value; return this; } public ArrayList getArMainRecIDIn() { return AR_Main_RecIDIn; } public AR_SchedulesQuery setArMainRecIDIn(ArrayList value) { this.AR_Main_RecIDIn = value; return this; } public String getName() { return Name; } public AR_SchedulesQuery setName(String value) { this.Name = value; return this; } public String getNameStartsWith() { return NameStartsWith; } public AR_SchedulesQuery setNameStartsWith(String value) { this.NameStartsWith = value; return this; } public String getNameEndsWith() { return NameEndsWith; } public AR_SchedulesQuery setNameEndsWith(String value) { this.NameEndsWith = value; return this; } public String getNameContains() { return NameContains; } public AR_SchedulesQuery setNameContains(String value) { this.NameContains = value; return this; } public String getNameLike() { return NameLike; } public AR_SchedulesQuery setNameLike(String value) { this.NameLike = value; return this; } public ArrayList getNameBetween() { return NameBetween; } public AR_SchedulesQuery setNameBetween(ArrayList value) { this.NameBetween = value; return this; } public ArrayList getNameIn() { return NameIn; } public AR_SchedulesQuery setNameIn(ArrayList value) { this.NameIn = value; return this; } public Short getEnabled() { return Enabled; } public AR_SchedulesQuery setEnabled(Short value) { this.Enabled = value; return this; } public Short getEnabledGreaterThanOrEqualTo() { return EnabledGreaterThanOrEqualTo; } public AR_SchedulesQuery setEnabledGreaterThanOrEqualTo(Short value) { this.EnabledGreaterThanOrEqualTo = value; return this; } public Short getEnabledGreaterThan() { return EnabledGreaterThan; } public AR_SchedulesQuery setEnabledGreaterThan(Short value) { this.EnabledGreaterThan = value; return this; } public Short getEnabledLessThan() { return EnabledLessThan; } public AR_SchedulesQuery setEnabledLessThan(Short value) { this.EnabledLessThan = value; return this; } public Short getEnabledLessThanOrEqualTo() { return EnabledLessThanOrEqualTo; } public AR_SchedulesQuery setEnabledLessThanOrEqualTo(Short value) { this.EnabledLessThanOrEqualTo = value; return this; } public Short getEnabledNotEqualTo() { return EnabledNotEqualTo; } public AR_SchedulesQuery setEnabledNotEqualTo(Short value) { this.EnabledNotEqualTo = value; return this; } public ArrayList getEnabledBetween() { return EnabledBetween; } public AR_SchedulesQuery setEnabledBetween(ArrayList value) { this.EnabledBetween = value; return this; } public ArrayList getEnabledIn() { return EnabledIn; } public AR_SchedulesQuery setEnabledIn(ArrayList value) { this.EnabledIn = value; return this; } public Integer getFrequencyType() { return FrequencyType; } public AR_SchedulesQuery setFrequencyType(Integer value) { this.FrequencyType = value; return this; } public Integer getFrequencyTypeGreaterThanOrEqualTo() { return FrequencyTypeGreaterThanOrEqualTo; } public AR_SchedulesQuery setFrequencyTypeGreaterThanOrEqualTo(Integer value) { this.FrequencyTypeGreaterThanOrEqualTo = value; return this; } public Integer getFrequencyTypeGreaterThan() { return FrequencyTypeGreaterThan; } public AR_SchedulesQuery setFrequencyTypeGreaterThan(Integer value) { this.FrequencyTypeGreaterThan = value; return this; } public Integer getFrequencyTypeLessThan() { return FrequencyTypeLessThan; } public AR_SchedulesQuery setFrequencyTypeLessThan(Integer value) { this.FrequencyTypeLessThan = value; return this; } public Integer getFrequencyTypeLessThanOrEqualTo() { return FrequencyTypeLessThanOrEqualTo; } public AR_SchedulesQuery setFrequencyTypeLessThanOrEqualTo(Integer value) { this.FrequencyTypeLessThanOrEqualTo = value; return this; } public Integer getFrequencyTypeNotEqualTo() { return FrequencyTypeNotEqualTo; } public AR_SchedulesQuery setFrequencyTypeNotEqualTo(Integer value) { this.FrequencyTypeNotEqualTo = value; return this; } public ArrayList getFrequencyTypeBetween() { return FrequencyTypeBetween; } public AR_SchedulesQuery setFrequencyTypeBetween(ArrayList value) { this.FrequencyTypeBetween = value; return this; } public ArrayList getFrequencyTypeIn() { return FrequencyTypeIn; } public AR_SchedulesQuery setFrequencyTypeIn(ArrayList value) { this.FrequencyTypeIn = value; return this; } public Integer getFrequencyInterval() { return FrequencyInterval; } public AR_SchedulesQuery setFrequencyInterval(Integer value) { this.FrequencyInterval = value; return this; } public Integer getFrequencyIntervalGreaterThanOrEqualTo() { return FrequencyIntervalGreaterThanOrEqualTo; } public AR_SchedulesQuery setFrequencyIntervalGreaterThanOrEqualTo(Integer value) { this.FrequencyIntervalGreaterThanOrEqualTo = value; return this; } public Integer getFrequencyIntervalGreaterThan() { return FrequencyIntervalGreaterThan; } public AR_SchedulesQuery setFrequencyIntervalGreaterThan(Integer value) { this.FrequencyIntervalGreaterThan = value; return this; } public Integer getFrequencyIntervalLessThan() { return FrequencyIntervalLessThan; } public AR_SchedulesQuery setFrequencyIntervalLessThan(Integer value) { this.FrequencyIntervalLessThan = value; return this; } public Integer getFrequencyIntervalLessThanOrEqualTo() { return FrequencyIntervalLessThanOrEqualTo; } public AR_SchedulesQuery setFrequencyIntervalLessThanOrEqualTo(Integer value) { this.FrequencyIntervalLessThanOrEqualTo = value; return this; } public Integer getFrequencyIntervalNotEqualTo() { return FrequencyIntervalNotEqualTo; } public AR_SchedulesQuery setFrequencyIntervalNotEqualTo(Integer value) { this.FrequencyIntervalNotEqualTo = value; return this; } public ArrayList getFrequencyIntervalBetween() { return FrequencyIntervalBetween; } public AR_SchedulesQuery setFrequencyIntervalBetween(ArrayList value) { this.FrequencyIntervalBetween = value; return this; } public ArrayList getFrequencyIntervalIn() { return FrequencyIntervalIn; } public AR_SchedulesQuery setFrequencyIntervalIn(ArrayList value) { this.FrequencyIntervalIn = value; return this; } public Integer getFrequencySubdayType() { return FrequencySubdayType; } public AR_SchedulesQuery setFrequencySubdayType(Integer value) { this.FrequencySubdayType = value; return this; } public Integer getFrequencySubdayTypeGreaterThanOrEqualTo() { return FrequencySubdayTypeGreaterThanOrEqualTo; } public AR_SchedulesQuery setFrequencySubdayTypeGreaterThanOrEqualTo(Integer value) { this.FrequencySubdayTypeGreaterThanOrEqualTo = value; return this; } public Integer getFrequencySubdayTypeGreaterThan() { return FrequencySubdayTypeGreaterThan; } public AR_SchedulesQuery setFrequencySubdayTypeGreaterThan(Integer value) { this.FrequencySubdayTypeGreaterThan = value; return this; } public Integer getFrequencySubdayTypeLessThan() { return FrequencySubdayTypeLessThan; } public AR_SchedulesQuery setFrequencySubdayTypeLessThan(Integer value) { this.FrequencySubdayTypeLessThan = value; return this; } public Integer getFrequencySubdayTypeLessThanOrEqualTo() { return FrequencySubdayTypeLessThanOrEqualTo; } public AR_SchedulesQuery setFrequencySubdayTypeLessThanOrEqualTo(Integer value) { this.FrequencySubdayTypeLessThanOrEqualTo = value; return this; } public Integer getFrequencySubdayTypeNotEqualTo() { return FrequencySubdayTypeNotEqualTo; } public AR_SchedulesQuery setFrequencySubdayTypeNotEqualTo(Integer value) { this.FrequencySubdayTypeNotEqualTo = value; return this; } public ArrayList getFrequencySubdayTypeBetween() { return FrequencySubdayTypeBetween; } public AR_SchedulesQuery setFrequencySubdayTypeBetween(ArrayList value) { this.FrequencySubdayTypeBetween = value; return this; } public ArrayList getFrequencySubdayTypeIn() { return FrequencySubdayTypeIn; } public AR_SchedulesQuery setFrequencySubdayTypeIn(ArrayList value) { this.FrequencySubdayTypeIn = value; return this; } public Integer getFrequencySubdayInterval() { return FrequencySubdayInterval; } public AR_SchedulesQuery setFrequencySubdayInterval(Integer value) { this.FrequencySubdayInterval = value; return this; } public Integer getFrequencySubdayIntervalGreaterThanOrEqualTo() { return FrequencySubdayIntervalGreaterThanOrEqualTo; } public AR_SchedulesQuery setFrequencySubdayIntervalGreaterThanOrEqualTo(Integer value) { this.FrequencySubdayIntervalGreaterThanOrEqualTo = value; return this; } public Integer getFrequencySubdayIntervalGreaterThan() { return FrequencySubdayIntervalGreaterThan; } public AR_SchedulesQuery setFrequencySubdayIntervalGreaterThan(Integer value) { this.FrequencySubdayIntervalGreaterThan = value; return this; } public Integer getFrequencySubdayIntervalLessThan() { return FrequencySubdayIntervalLessThan; } public AR_SchedulesQuery setFrequencySubdayIntervalLessThan(Integer value) { this.FrequencySubdayIntervalLessThan = value; return this; } public Integer getFrequencySubdayIntervalLessThanOrEqualTo() { return FrequencySubdayIntervalLessThanOrEqualTo; } public AR_SchedulesQuery setFrequencySubdayIntervalLessThanOrEqualTo(Integer value) { this.FrequencySubdayIntervalLessThanOrEqualTo = value; return this; } public Integer getFrequencySubdayIntervalNotEqualTo() { return FrequencySubdayIntervalNotEqualTo; } public AR_SchedulesQuery setFrequencySubdayIntervalNotEqualTo(Integer value) { this.FrequencySubdayIntervalNotEqualTo = value; return this; } public ArrayList getFrequencySubdayIntervalBetween() { return FrequencySubdayIntervalBetween; } public AR_SchedulesQuery setFrequencySubdayIntervalBetween(ArrayList value) { this.FrequencySubdayIntervalBetween = value; return this; } public ArrayList getFrequencySubdayIntervalIn() { return FrequencySubdayIntervalIn; } public AR_SchedulesQuery setFrequencySubdayIntervalIn(ArrayList value) { this.FrequencySubdayIntervalIn = value; return this; } public Integer getFrequencyRelativeInterval() { return FrequencyRelativeInterval; } public AR_SchedulesQuery setFrequencyRelativeInterval(Integer value) { this.FrequencyRelativeInterval = value; return this; } public Integer getFrequencyRelativeIntervalGreaterThanOrEqualTo() { return FrequencyRelativeIntervalGreaterThanOrEqualTo; } public AR_SchedulesQuery setFrequencyRelativeIntervalGreaterThanOrEqualTo(Integer value) { this.FrequencyRelativeIntervalGreaterThanOrEqualTo = value; return this; } public Integer getFrequencyRelativeIntervalGreaterThan() { return FrequencyRelativeIntervalGreaterThan; } public AR_SchedulesQuery setFrequencyRelativeIntervalGreaterThan(Integer value) { this.FrequencyRelativeIntervalGreaterThan = value; return this; } public Integer getFrequencyRelativeIntervalLessThan() { return FrequencyRelativeIntervalLessThan; } public AR_SchedulesQuery setFrequencyRelativeIntervalLessThan(Integer value) { this.FrequencyRelativeIntervalLessThan = value; return this; } public Integer getFrequencyRelativeIntervalLessThanOrEqualTo() { return FrequencyRelativeIntervalLessThanOrEqualTo; } public AR_SchedulesQuery setFrequencyRelativeIntervalLessThanOrEqualTo(Integer value) { this.FrequencyRelativeIntervalLessThanOrEqualTo = value; return this; } public Integer getFrequencyRelativeIntervalNotEqualTo() { return FrequencyRelativeIntervalNotEqualTo; } public AR_SchedulesQuery setFrequencyRelativeIntervalNotEqualTo(Integer value) { this.FrequencyRelativeIntervalNotEqualTo = value; return this; } public ArrayList getFrequencyRelativeIntervalBetween() { return FrequencyRelativeIntervalBetween; } public AR_SchedulesQuery setFrequencyRelativeIntervalBetween(ArrayList value) { this.FrequencyRelativeIntervalBetween = value; return this; } public ArrayList getFrequencyRelativeIntervalIn() { return FrequencyRelativeIntervalIn; } public AR_SchedulesQuery setFrequencyRelativeIntervalIn(ArrayList value) { this.FrequencyRelativeIntervalIn = value; return this; } public Integer getFrequencyRecurrenceFactor() { return FrequencyRecurrenceFactor; } public AR_SchedulesQuery setFrequencyRecurrenceFactor(Integer value) { this.FrequencyRecurrenceFactor = value; return this; } public Integer getFrequencyRecurrenceFactorGreaterThanOrEqualTo() { return FrequencyRecurrenceFactorGreaterThanOrEqualTo; } public AR_SchedulesQuery setFrequencyRecurrenceFactorGreaterThanOrEqualTo(Integer value) { this.FrequencyRecurrenceFactorGreaterThanOrEqualTo = value; return this; } public Integer getFrequencyRecurrenceFactorGreaterThan() { return FrequencyRecurrenceFactorGreaterThan; } public AR_SchedulesQuery setFrequencyRecurrenceFactorGreaterThan(Integer value) { this.FrequencyRecurrenceFactorGreaterThan = value; return this; } public Integer getFrequencyRecurrenceFactorLessThan() { return FrequencyRecurrenceFactorLessThan; } public AR_SchedulesQuery setFrequencyRecurrenceFactorLessThan(Integer value) { this.FrequencyRecurrenceFactorLessThan = value; return this; } public Integer getFrequencyRecurrenceFactorLessThanOrEqualTo() { return FrequencyRecurrenceFactorLessThanOrEqualTo; } public AR_SchedulesQuery setFrequencyRecurrenceFactorLessThanOrEqualTo(Integer value) { this.FrequencyRecurrenceFactorLessThanOrEqualTo = value; return this; } public Integer getFrequencyRecurrenceFactorNotEqualTo() { return FrequencyRecurrenceFactorNotEqualTo; } public AR_SchedulesQuery setFrequencyRecurrenceFactorNotEqualTo(Integer value) { this.FrequencyRecurrenceFactorNotEqualTo = value; return this; } public ArrayList getFrequencyRecurrenceFactorBetween() { return FrequencyRecurrenceFactorBetween; } public AR_SchedulesQuery setFrequencyRecurrenceFactorBetween(ArrayList value) { this.FrequencyRecurrenceFactorBetween = value; return this; } public ArrayList getFrequencyRecurrenceFactorIn() { return FrequencyRecurrenceFactorIn; } public AR_SchedulesQuery setFrequencyRecurrenceFactorIn(ArrayList value) { this.FrequencyRecurrenceFactorIn = value; return this; } public Date getStartDateTime() { return StartDateTime; } public AR_SchedulesQuery setStartDateTime(Date value) { this.StartDateTime = value; return this; } public Date getStartDateTimeGreaterThanOrEqualTo() { return StartDateTimeGreaterThanOrEqualTo; } public AR_SchedulesQuery setStartDateTimeGreaterThanOrEqualTo(Date value) { this.StartDateTimeGreaterThanOrEqualTo = value; return this; } public Date getStartDateTimeGreaterThan() { return StartDateTimeGreaterThan; } public AR_SchedulesQuery setStartDateTimeGreaterThan(Date value) { this.StartDateTimeGreaterThan = value; return this; } public Date getStartDateTimeLessThan() { return StartDateTimeLessThan; } public AR_SchedulesQuery setStartDateTimeLessThan(Date value) { this.StartDateTimeLessThan = value; return this; } public Date getStartDateTimeLessThanOrEqualTo() { return StartDateTimeLessThanOrEqualTo; } public AR_SchedulesQuery setStartDateTimeLessThanOrEqualTo(Date value) { this.StartDateTimeLessThanOrEqualTo = value; return this; } public Date getStartDateTimeNotEqualTo() { return StartDateTimeNotEqualTo; } public AR_SchedulesQuery setStartDateTimeNotEqualTo(Date value) { this.StartDateTimeNotEqualTo = value; return this; } public ArrayList getStartDateTimeBetween() { return StartDateTimeBetween; } public AR_SchedulesQuery setStartDateTimeBetween(ArrayList value) { this.StartDateTimeBetween = value; return this; } public ArrayList getStartDateTimeIn() { return StartDateTimeIn; } public AR_SchedulesQuery setStartDateTimeIn(ArrayList value) { this.StartDateTimeIn = value; return this; } public Date getEndDateTime() { return EndDateTime; } public AR_SchedulesQuery setEndDateTime(Date value) { this.EndDateTime = value; return this; } public Date getEndDateTimeGreaterThanOrEqualTo() { return EndDateTimeGreaterThanOrEqualTo; } public AR_SchedulesQuery setEndDateTimeGreaterThanOrEqualTo(Date value) { this.EndDateTimeGreaterThanOrEqualTo = value; return this; } public Date getEndDateTimeGreaterThan() { return EndDateTimeGreaterThan; } public AR_SchedulesQuery setEndDateTimeGreaterThan(Date value) { this.EndDateTimeGreaterThan = value; return this; } public Date getEndDateTimeLessThan() { return EndDateTimeLessThan; } public AR_SchedulesQuery setEndDateTimeLessThan(Date value) { this.EndDateTimeLessThan = value; return this; } public Date getEndDateTimeLessThanOrEqualTo() { return EndDateTimeLessThanOrEqualTo; } public AR_SchedulesQuery setEndDateTimeLessThanOrEqualTo(Date value) { this.EndDateTimeLessThanOrEqualTo = value; return this; } public Date getEndDateTimeNotEqualTo() { return EndDateTimeNotEqualTo; } public AR_SchedulesQuery setEndDateTimeNotEqualTo(Date value) { this.EndDateTimeNotEqualTo = value; return this; } public ArrayList getEndDateTimeBetween() { return EndDateTimeBetween; } public AR_SchedulesQuery setEndDateTimeBetween(ArrayList value) { this.EndDateTimeBetween = value; return this; } public ArrayList getEndDateTimeIn() { return EndDateTimeIn; } public AR_SchedulesQuery setEndDateTimeIn(ArrayList value) { this.EndDateTimeIn = value; return this; } public Date getCreatedDateTime() { return CreatedDateTime; } public AR_SchedulesQuery setCreatedDateTime(Date value) { this.CreatedDateTime = value; return this; } public Date getCreatedDateTimeGreaterThanOrEqualTo() { return CreatedDateTimeGreaterThanOrEqualTo; } public AR_SchedulesQuery setCreatedDateTimeGreaterThanOrEqualTo(Date value) { this.CreatedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getCreatedDateTimeGreaterThan() { return CreatedDateTimeGreaterThan; } public AR_SchedulesQuery setCreatedDateTimeGreaterThan(Date value) { this.CreatedDateTimeGreaterThan = value; return this; } public Date getCreatedDateTimeLessThan() { return CreatedDateTimeLessThan; } public AR_SchedulesQuery setCreatedDateTimeLessThan(Date value) { this.CreatedDateTimeLessThan = value; return this; } public Date getCreatedDateTimeLessThanOrEqualTo() { return CreatedDateTimeLessThanOrEqualTo; } public AR_SchedulesQuery setCreatedDateTimeLessThanOrEqualTo(Date value) { this.CreatedDateTimeLessThanOrEqualTo = value; return this; } public Date getCreatedDateTimeNotEqualTo() { return CreatedDateTimeNotEqualTo; } public AR_SchedulesQuery setCreatedDateTimeNotEqualTo(Date value) { this.CreatedDateTimeNotEqualTo = value; return this; } public ArrayList getCreatedDateTimeBetween() { return CreatedDateTimeBetween; } public AR_SchedulesQuery setCreatedDateTimeBetween(ArrayList value) { this.CreatedDateTimeBetween = value; return this; } public ArrayList getCreatedDateTimeIn() { return CreatedDateTimeIn; } public AR_SchedulesQuery setCreatedDateTimeIn(ArrayList value) { this.CreatedDateTimeIn = value; return this; } public String getCreatedByStaffID() { return CreatedByStaffID; } public AR_SchedulesQuery setCreatedByStaffID(String value) { this.CreatedByStaffID = value; return this; } public String getCreatedByStaffIDStartsWith() { return CreatedByStaffIDStartsWith; } public AR_SchedulesQuery setCreatedByStaffIDStartsWith(String value) { this.CreatedByStaffIDStartsWith = value; return this; } public String getCreatedByStaffIDEndsWith() { return CreatedByStaffIDEndsWith; } public AR_SchedulesQuery setCreatedByStaffIDEndsWith(String value) { this.CreatedByStaffIDEndsWith = value; return this; } public String getCreatedByStaffIDContains() { return CreatedByStaffIDContains; } public AR_SchedulesQuery setCreatedByStaffIDContains(String value) { this.CreatedByStaffIDContains = value; return this; } public String getCreatedByStaffIDLike() { return CreatedByStaffIDLike; } public AR_SchedulesQuery setCreatedByStaffIDLike(String value) { this.CreatedByStaffIDLike = value; return this; } public ArrayList getCreatedByStaffIDBetween() { return CreatedByStaffIDBetween; } public AR_SchedulesQuery setCreatedByStaffIDBetween(ArrayList value) { this.CreatedByStaffIDBetween = value; return this; } public ArrayList getCreatedByStaffIDIn() { return CreatedByStaffIDIn; } public AR_SchedulesQuery setCreatedByStaffIDIn(ArrayList value) { this.CreatedByStaffIDIn = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public AR_SchedulesQuery setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getLastSavedDateTimeGreaterThanOrEqualTo() { return LastSavedDateTimeGreaterThanOrEqualTo; } public AR_SchedulesQuery setLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.LastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeGreaterThan() { return LastSavedDateTimeGreaterThan; } public AR_SchedulesQuery setLastSavedDateTimeGreaterThan(Date value) { this.LastSavedDateTimeGreaterThan = value; return this; } public Date getLastSavedDateTimeLessThan() { return LastSavedDateTimeLessThan; } public AR_SchedulesQuery setLastSavedDateTimeLessThan(Date value) { this.LastSavedDateTimeLessThan = value; return this; } public Date getLastSavedDateTimeLessThanOrEqualTo() { return LastSavedDateTimeLessThanOrEqualTo; } public AR_SchedulesQuery setLastSavedDateTimeLessThanOrEqualTo(Date value) { this.LastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeNotEqualTo() { return LastSavedDateTimeNotEqualTo; } public AR_SchedulesQuery setLastSavedDateTimeNotEqualTo(Date value) { this.LastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getLastSavedDateTimeBetween() { return LastSavedDateTimeBetween; } public AR_SchedulesQuery setLastSavedDateTimeBetween(ArrayList value) { this.LastSavedDateTimeBetween = value; return this; } public ArrayList getLastSavedDateTimeIn() { return LastSavedDateTimeIn; } public AR_SchedulesQuery setLastSavedDateTimeIn(ArrayList value) { this.LastSavedDateTimeIn = value; return this; } public String getLastSavedByStaffID() { return LastSavedByStaffID; } public AR_SchedulesQuery setLastSavedByStaffID(String value) { this.LastSavedByStaffID = value; return this; } public String getLastSavedByStaffIDStartsWith() { return LastSavedByStaffIDStartsWith; } public AR_SchedulesQuery setLastSavedByStaffIDStartsWith(String value) { this.LastSavedByStaffIDStartsWith = value; return this; } public String getLastSavedByStaffIDEndsWith() { return LastSavedByStaffIDEndsWith; } public AR_SchedulesQuery setLastSavedByStaffIDEndsWith(String value) { this.LastSavedByStaffIDEndsWith = value; return this; } public String getLastSavedByStaffIDContains() { return LastSavedByStaffIDContains; } public AR_SchedulesQuery setLastSavedByStaffIDContains(String value) { this.LastSavedByStaffIDContains = value; return this; } public String getLastSavedByStaffIDLike() { return LastSavedByStaffIDLike; } public AR_SchedulesQuery setLastSavedByStaffIDLike(String value) { this.LastSavedByStaffIDLike = value; return this; } public ArrayList getLastSavedByStaffIDBetween() { return LastSavedByStaffIDBetween; } public AR_SchedulesQuery setLastSavedByStaffIDBetween(ArrayList value) { this.LastSavedByStaffIDBetween = value; return this; } public ArrayList getLastSavedByStaffIDIn() { return LastSavedByStaffIDIn; } public AR_SchedulesQuery setLastSavedByStaffIDIn(ArrayList value) { this.LastSavedByStaffIDIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class AR_TaskFiltersQuery extends QueryDb implements IReturn> { public String RecID = null; public String RecIDStartsWith = null; public String RecIDEndsWith = null; public String RecIDContains = null; public String RecIDLike = null; public ArrayList RecIDBetween = null; public ArrayList RecIDIn = null; public String AR_Tasks_RecID = null; public String AR_Tasks_RecIDStartsWith = null; public String AR_Tasks_RecIDEndsWith = null; public String AR_Tasks_RecIDContains = null; public String AR_Tasks_RecIDLike = null; public ArrayList AR_Tasks_RecIDBetween = null; public ArrayList AR_Tasks_RecIDIn = null; public String AR_ProviderHeaders_HeaderID = null; public String AR_ProviderHeaders_HeaderIDStartsWith = null; public String AR_ProviderHeaders_HeaderIDEndsWith = null; public String AR_ProviderHeaders_HeaderIDContains = null; public String AR_ProviderHeaders_HeaderIDLike = null; public ArrayList AR_ProviderHeaders_HeaderIDBetween = null; public ArrayList AR_ProviderHeaders_HeaderIDIn = null; public String AR_ProviderFilters_FilterID = null; public String AR_ProviderFilters_FilterIDStartsWith = null; public String AR_ProviderFilters_FilterIDEndsWith = null; public String AR_ProviderFilters_FilterIDContains = null; public String AR_ProviderFilters_FilterIDLike = null; public ArrayList AR_ProviderFilters_FilterIDBetween = null; public ArrayList AR_ProviderFilters_FilterIDIn = null; public Date CreatedDateTime = null; public Date CreatedDateTimeGreaterThanOrEqualTo = null; public Date CreatedDateTimeGreaterThan = null; public Date CreatedDateTimeLessThan = null; public Date CreatedDateTimeLessThanOrEqualTo = null; public Date CreatedDateTimeNotEqualTo = null; public ArrayList CreatedDateTimeBetween = null; public ArrayList CreatedDateTimeIn = null; public String CreatedByStaffID = null; public String CreatedByStaffIDStartsWith = null; public String CreatedByStaffIDEndsWith = null; public String CreatedByStaffIDContains = null; public String CreatedByStaffIDLike = null; public ArrayList CreatedByStaffIDBetween = null; public ArrayList CreatedByStaffIDIn = null; public Date LastSavedDateTime = null; public Date LastSavedDateTimeGreaterThanOrEqualTo = null; public Date LastSavedDateTimeGreaterThan = null; public Date LastSavedDateTimeLessThan = null; public Date LastSavedDateTimeLessThanOrEqualTo = null; public Date LastSavedDateTimeNotEqualTo = null; public ArrayList LastSavedDateTimeBetween = null; public ArrayList LastSavedDateTimeIn = null; public String LastSavedByStaffID = null; public String LastSavedByStaffIDStartsWith = null; public String LastSavedByStaffIDEndsWith = null; public String LastSavedByStaffIDContains = null; public String LastSavedByStaffIDLike = null; public ArrayList LastSavedByStaffIDBetween = null; public ArrayList LastSavedByStaffIDIn = null; public String getRecID() { return RecID; } public AR_TaskFiltersQuery setRecID(String value) { this.RecID = value; return this; } public String getRecIDStartsWith() { return RecIDStartsWith; } public AR_TaskFiltersQuery setRecIDStartsWith(String value) { this.RecIDStartsWith = value; return this; } public String getRecIDEndsWith() { return RecIDEndsWith; } public AR_TaskFiltersQuery setRecIDEndsWith(String value) { this.RecIDEndsWith = value; return this; } public String getRecIDContains() { return RecIDContains; } public AR_TaskFiltersQuery setRecIDContains(String value) { this.RecIDContains = value; return this; } public String getRecIDLike() { return RecIDLike; } public AR_TaskFiltersQuery setRecIDLike(String value) { this.RecIDLike = value; return this; } public ArrayList getRecIDBetween() { return RecIDBetween; } public AR_TaskFiltersQuery setRecIDBetween(ArrayList value) { this.RecIDBetween = value; return this; } public ArrayList getRecIDIn() { return RecIDIn; } public AR_TaskFiltersQuery setRecIDIn(ArrayList value) { this.RecIDIn = value; return this; } public String getArTasksRecID() { return AR_Tasks_RecID; } public AR_TaskFiltersQuery setArTasksRecID(String value) { this.AR_Tasks_RecID = value; return this; } public String getArTasksRecIDStartsWith() { return AR_Tasks_RecIDStartsWith; } public AR_TaskFiltersQuery setArTasksRecIDStartsWith(String value) { this.AR_Tasks_RecIDStartsWith = value; return this; } public String getArTasksRecIDEndsWith() { return AR_Tasks_RecIDEndsWith; } public AR_TaskFiltersQuery setArTasksRecIDEndsWith(String value) { this.AR_Tasks_RecIDEndsWith = value; return this; } public String getArTasksRecIDContains() { return AR_Tasks_RecIDContains; } public AR_TaskFiltersQuery setArTasksRecIDContains(String value) { this.AR_Tasks_RecIDContains = value; return this; } public String getArTasksRecIDLike() { return AR_Tasks_RecIDLike; } public AR_TaskFiltersQuery setArTasksRecIDLike(String value) { this.AR_Tasks_RecIDLike = value; return this; } public ArrayList getArTasksRecIDBetween() { return AR_Tasks_RecIDBetween; } public AR_TaskFiltersQuery setArTasksRecIDBetween(ArrayList value) { this.AR_Tasks_RecIDBetween = value; return this; } public ArrayList getArTasksRecIDIn() { return AR_Tasks_RecIDIn; } public AR_TaskFiltersQuery setArTasksRecIDIn(ArrayList value) { this.AR_Tasks_RecIDIn = value; return this; } public String getArProviderHeadersHeaderID() { return AR_ProviderHeaders_HeaderID; } public AR_TaskFiltersQuery setArProviderHeadersHeaderID(String value) { this.AR_ProviderHeaders_HeaderID = value; return this; } public String getArProviderHeadersHeaderIDStartsWith() { return AR_ProviderHeaders_HeaderIDStartsWith; } public AR_TaskFiltersQuery setArProviderHeadersHeaderIDStartsWith(String value) { this.AR_ProviderHeaders_HeaderIDStartsWith = value; return this; } public String getArProviderHeadersHeaderIDEndsWith() { return AR_ProviderHeaders_HeaderIDEndsWith; } public AR_TaskFiltersQuery setArProviderHeadersHeaderIDEndsWith(String value) { this.AR_ProviderHeaders_HeaderIDEndsWith = value; return this; } public String getArProviderHeadersHeaderIDContains() { return AR_ProviderHeaders_HeaderIDContains; } public AR_TaskFiltersQuery setArProviderHeadersHeaderIDContains(String value) { this.AR_ProviderHeaders_HeaderIDContains = value; return this; } public String getArProviderHeadersHeaderIDLike() { return AR_ProviderHeaders_HeaderIDLike; } public AR_TaskFiltersQuery setArProviderHeadersHeaderIDLike(String value) { this.AR_ProviderHeaders_HeaderIDLike = value; return this; } public ArrayList getArProviderHeadersHeaderIDBetween() { return AR_ProviderHeaders_HeaderIDBetween; } public AR_TaskFiltersQuery setArProviderHeadersHeaderIDBetween(ArrayList value) { this.AR_ProviderHeaders_HeaderIDBetween = value; return this; } public ArrayList getArProviderHeadersHeaderIDIn() { return AR_ProviderHeaders_HeaderIDIn; } public AR_TaskFiltersQuery setArProviderHeadersHeaderIDIn(ArrayList value) { this.AR_ProviderHeaders_HeaderIDIn = value; return this; } public String getArProviderFiltersFilterID() { return AR_ProviderFilters_FilterID; } public AR_TaskFiltersQuery setArProviderFiltersFilterID(String value) { this.AR_ProviderFilters_FilterID = value; return this; } public String getArProviderFiltersFilterIDStartsWith() { return AR_ProviderFilters_FilterIDStartsWith; } public AR_TaskFiltersQuery setArProviderFiltersFilterIDStartsWith(String value) { this.AR_ProviderFilters_FilterIDStartsWith = value; return this; } public String getArProviderFiltersFilterIDEndsWith() { return AR_ProviderFilters_FilterIDEndsWith; } public AR_TaskFiltersQuery setArProviderFiltersFilterIDEndsWith(String value) { this.AR_ProviderFilters_FilterIDEndsWith = value; return this; } public String getArProviderFiltersFilterIDContains() { return AR_ProviderFilters_FilterIDContains; } public AR_TaskFiltersQuery setArProviderFiltersFilterIDContains(String value) { this.AR_ProviderFilters_FilterIDContains = value; return this; } public String getArProviderFiltersFilterIDLike() { return AR_ProviderFilters_FilterIDLike; } public AR_TaskFiltersQuery setArProviderFiltersFilterIDLike(String value) { this.AR_ProviderFilters_FilterIDLike = value; return this; } public ArrayList getArProviderFiltersFilterIDBetween() { return AR_ProviderFilters_FilterIDBetween; } public AR_TaskFiltersQuery setArProviderFiltersFilterIDBetween(ArrayList value) { this.AR_ProviderFilters_FilterIDBetween = value; return this; } public ArrayList getArProviderFiltersFilterIDIn() { return AR_ProviderFilters_FilterIDIn; } public AR_TaskFiltersQuery setArProviderFiltersFilterIDIn(ArrayList value) { this.AR_ProviderFilters_FilterIDIn = value; return this; } public Date getCreatedDateTime() { return CreatedDateTime; } public AR_TaskFiltersQuery setCreatedDateTime(Date value) { this.CreatedDateTime = value; return this; } public Date getCreatedDateTimeGreaterThanOrEqualTo() { return CreatedDateTimeGreaterThanOrEqualTo; } public AR_TaskFiltersQuery setCreatedDateTimeGreaterThanOrEqualTo(Date value) { this.CreatedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getCreatedDateTimeGreaterThan() { return CreatedDateTimeGreaterThan; } public AR_TaskFiltersQuery setCreatedDateTimeGreaterThan(Date value) { this.CreatedDateTimeGreaterThan = value; return this; } public Date getCreatedDateTimeLessThan() { return CreatedDateTimeLessThan; } public AR_TaskFiltersQuery setCreatedDateTimeLessThan(Date value) { this.CreatedDateTimeLessThan = value; return this; } public Date getCreatedDateTimeLessThanOrEqualTo() { return CreatedDateTimeLessThanOrEqualTo; } public AR_TaskFiltersQuery setCreatedDateTimeLessThanOrEqualTo(Date value) { this.CreatedDateTimeLessThanOrEqualTo = value; return this; } public Date getCreatedDateTimeNotEqualTo() { return CreatedDateTimeNotEqualTo; } public AR_TaskFiltersQuery setCreatedDateTimeNotEqualTo(Date value) { this.CreatedDateTimeNotEqualTo = value; return this; } public ArrayList getCreatedDateTimeBetween() { return CreatedDateTimeBetween; } public AR_TaskFiltersQuery setCreatedDateTimeBetween(ArrayList value) { this.CreatedDateTimeBetween = value; return this; } public ArrayList getCreatedDateTimeIn() { return CreatedDateTimeIn; } public AR_TaskFiltersQuery setCreatedDateTimeIn(ArrayList value) { this.CreatedDateTimeIn = value; return this; } public String getCreatedByStaffID() { return CreatedByStaffID; } public AR_TaskFiltersQuery setCreatedByStaffID(String value) { this.CreatedByStaffID = value; return this; } public String getCreatedByStaffIDStartsWith() { return CreatedByStaffIDStartsWith; } public AR_TaskFiltersQuery setCreatedByStaffIDStartsWith(String value) { this.CreatedByStaffIDStartsWith = value; return this; } public String getCreatedByStaffIDEndsWith() { return CreatedByStaffIDEndsWith; } public AR_TaskFiltersQuery setCreatedByStaffIDEndsWith(String value) { this.CreatedByStaffIDEndsWith = value; return this; } public String getCreatedByStaffIDContains() { return CreatedByStaffIDContains; } public AR_TaskFiltersQuery setCreatedByStaffIDContains(String value) { this.CreatedByStaffIDContains = value; return this; } public String getCreatedByStaffIDLike() { return CreatedByStaffIDLike; } public AR_TaskFiltersQuery setCreatedByStaffIDLike(String value) { this.CreatedByStaffIDLike = value; return this; } public ArrayList getCreatedByStaffIDBetween() { return CreatedByStaffIDBetween; } public AR_TaskFiltersQuery setCreatedByStaffIDBetween(ArrayList value) { this.CreatedByStaffIDBetween = value; return this; } public ArrayList getCreatedByStaffIDIn() { return CreatedByStaffIDIn; } public AR_TaskFiltersQuery setCreatedByStaffIDIn(ArrayList value) { this.CreatedByStaffIDIn = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public AR_TaskFiltersQuery setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getLastSavedDateTimeGreaterThanOrEqualTo() { return LastSavedDateTimeGreaterThanOrEqualTo; } public AR_TaskFiltersQuery setLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.LastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeGreaterThan() { return LastSavedDateTimeGreaterThan; } public AR_TaskFiltersQuery setLastSavedDateTimeGreaterThan(Date value) { this.LastSavedDateTimeGreaterThan = value; return this; } public Date getLastSavedDateTimeLessThan() { return LastSavedDateTimeLessThan; } public AR_TaskFiltersQuery setLastSavedDateTimeLessThan(Date value) { this.LastSavedDateTimeLessThan = value; return this; } public Date getLastSavedDateTimeLessThanOrEqualTo() { return LastSavedDateTimeLessThanOrEqualTo; } public AR_TaskFiltersQuery setLastSavedDateTimeLessThanOrEqualTo(Date value) { this.LastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeNotEqualTo() { return LastSavedDateTimeNotEqualTo; } public AR_TaskFiltersQuery setLastSavedDateTimeNotEqualTo(Date value) { this.LastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getLastSavedDateTimeBetween() { return LastSavedDateTimeBetween; } public AR_TaskFiltersQuery setLastSavedDateTimeBetween(ArrayList value) { this.LastSavedDateTimeBetween = value; return this; } public ArrayList getLastSavedDateTimeIn() { return LastSavedDateTimeIn; } public AR_TaskFiltersQuery setLastSavedDateTimeIn(ArrayList value) { this.LastSavedDateTimeIn = value; return this; } public String getLastSavedByStaffID() { return LastSavedByStaffID; } public AR_TaskFiltersQuery setLastSavedByStaffID(String value) { this.LastSavedByStaffID = value; return this; } public String getLastSavedByStaffIDStartsWith() { return LastSavedByStaffIDStartsWith; } public AR_TaskFiltersQuery setLastSavedByStaffIDStartsWith(String value) { this.LastSavedByStaffIDStartsWith = value; return this; } public String getLastSavedByStaffIDEndsWith() { return LastSavedByStaffIDEndsWith; } public AR_TaskFiltersQuery setLastSavedByStaffIDEndsWith(String value) { this.LastSavedByStaffIDEndsWith = value; return this; } public String getLastSavedByStaffIDContains() { return LastSavedByStaffIDContains; } public AR_TaskFiltersQuery setLastSavedByStaffIDContains(String value) { this.LastSavedByStaffIDContains = value; return this; } public String getLastSavedByStaffIDLike() { return LastSavedByStaffIDLike; } public AR_TaskFiltersQuery setLastSavedByStaffIDLike(String value) { this.LastSavedByStaffIDLike = value; return this; } public ArrayList getLastSavedByStaffIDBetween() { return LastSavedByStaffIDBetween; } public AR_TaskFiltersQuery setLastSavedByStaffIDBetween(ArrayList value) { this.LastSavedByStaffIDBetween = value; return this; } public ArrayList getLastSavedByStaffIDIn() { return LastSavedByStaffIDIn; } public AR_TaskFiltersQuery setLastSavedByStaffIDIn(ArrayList value) { this.LastSavedByStaffIDIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class AR_TaskHistoryQuery extends QueryDb implements IReturn> { public String RecID = null; public String RecIDStartsWith = null; public String RecIDEndsWith = null; public String RecIDContains = null; public String RecIDLike = null; public ArrayList RecIDBetween = null; public ArrayList RecIDIn = null; public String AR_Tasks_RecID = null; public String AR_Tasks_RecIDStartsWith = null; public String AR_Tasks_RecIDEndsWith = null; public String AR_Tasks_RecIDContains = null; public String AR_Tasks_RecIDLike = null; public ArrayList AR_Tasks_RecIDBetween = null; public ArrayList AR_Tasks_RecIDIn = null; public Short Status = null; public Short StatusGreaterThanOrEqualTo = null; public Short StatusGreaterThan = null; public Short StatusLessThan = null; public Short StatusLessThanOrEqualTo = null; public Short StatusNotEqualTo = null; public ArrayList StatusBetween = null; public ArrayList StatusIn = null; public Date StartDateTime = null; public Date StartDateTimeGreaterThanOrEqualTo = null; public Date StartDateTimeGreaterThan = null; public Date StartDateTimeLessThan = null; public Date StartDateTimeLessThanOrEqualTo = null; public Date StartDateTimeNotEqualTo = null; public ArrayList StartDateTimeBetween = null; public ArrayList StartDateTimeIn = null; public Date EndDateTime = null; public Date EndDateTimeGreaterThanOrEqualTo = null; public Date EndDateTimeGreaterThan = null; public Date EndDateTimeLessThan = null; public Date EndDateTimeLessThanOrEqualTo = null; public Date EndDateTimeNotEqualTo = null; public ArrayList EndDateTimeBetween = null; public ArrayList EndDateTimeIn = null; public String Message = null; public String MessageStartsWith = null; public String MessageEndsWith = null; public String MessageContains = null; public String MessageLike = null; public ArrayList MessageBetween = null; public ArrayList MessageIn = null; public String Report = null; public String ReportStartsWith = null; public String ReportEndsWith = null; public String ReportContains = null; public String ReportLike = null; public ArrayList ReportBetween = null; public ArrayList ReportIn = null; public Date CreatedDateTime = null; public Date CreatedDateTimeGreaterThanOrEqualTo = null; public Date CreatedDateTimeGreaterThan = null; public Date CreatedDateTimeLessThan = null; public Date CreatedDateTimeLessThanOrEqualTo = null; public Date CreatedDateTimeNotEqualTo = null; public ArrayList CreatedDateTimeBetween = null; public ArrayList CreatedDateTimeIn = null; public String CreatedByStaffID = null; public String CreatedByStaffIDStartsWith = null; public String CreatedByStaffIDEndsWith = null; public String CreatedByStaffIDContains = null; public String CreatedByStaffIDLike = null; public ArrayList CreatedByStaffIDBetween = null; public ArrayList CreatedByStaffIDIn = null; public Date LastSavedDateTime = null; public Date LastSavedDateTimeGreaterThanOrEqualTo = null; public Date LastSavedDateTimeGreaterThan = null; public Date LastSavedDateTimeLessThan = null; public Date LastSavedDateTimeLessThanOrEqualTo = null; public Date LastSavedDateTimeNotEqualTo = null; public ArrayList LastSavedDateTimeBetween = null; public ArrayList LastSavedDateTimeIn = null; public String LastSavedByStaffID = null; public String LastSavedByStaffIDStartsWith = null; public String LastSavedByStaffIDEndsWith = null; public String LastSavedByStaffIDContains = null; public String LastSavedByStaffIDLike = null; public ArrayList LastSavedByStaffIDBetween = null; public ArrayList LastSavedByStaffIDIn = null; public String ExecutionID = null; public String ExecutionIDStartsWith = null; public String ExecutionIDEndsWith = null; public String ExecutionIDContains = null; public String ExecutionIDLike = null; public ArrayList ExecutionIDBetween = null; public ArrayList ExecutionIDIn = null; public String getRecID() { return RecID; } public AR_TaskHistoryQuery setRecID(String value) { this.RecID = value; return this; } public String getRecIDStartsWith() { return RecIDStartsWith; } public AR_TaskHistoryQuery setRecIDStartsWith(String value) { this.RecIDStartsWith = value; return this; } public String getRecIDEndsWith() { return RecIDEndsWith; } public AR_TaskHistoryQuery setRecIDEndsWith(String value) { this.RecIDEndsWith = value; return this; } public String getRecIDContains() { return RecIDContains; } public AR_TaskHistoryQuery setRecIDContains(String value) { this.RecIDContains = value; return this; } public String getRecIDLike() { return RecIDLike; } public AR_TaskHistoryQuery setRecIDLike(String value) { this.RecIDLike = value; return this; } public ArrayList getRecIDBetween() { return RecIDBetween; } public AR_TaskHistoryQuery setRecIDBetween(ArrayList value) { this.RecIDBetween = value; return this; } public ArrayList getRecIDIn() { return RecIDIn; } public AR_TaskHistoryQuery setRecIDIn(ArrayList value) { this.RecIDIn = value; return this; } public String getArTasksRecID() { return AR_Tasks_RecID; } public AR_TaskHistoryQuery setArTasksRecID(String value) { this.AR_Tasks_RecID = value; return this; } public String getArTasksRecIDStartsWith() { return AR_Tasks_RecIDStartsWith; } public AR_TaskHistoryQuery setArTasksRecIDStartsWith(String value) { this.AR_Tasks_RecIDStartsWith = value; return this; } public String getArTasksRecIDEndsWith() { return AR_Tasks_RecIDEndsWith; } public AR_TaskHistoryQuery setArTasksRecIDEndsWith(String value) { this.AR_Tasks_RecIDEndsWith = value; return this; } public String getArTasksRecIDContains() { return AR_Tasks_RecIDContains; } public AR_TaskHistoryQuery setArTasksRecIDContains(String value) { this.AR_Tasks_RecIDContains = value; return this; } public String getArTasksRecIDLike() { return AR_Tasks_RecIDLike; } public AR_TaskHistoryQuery setArTasksRecIDLike(String value) { this.AR_Tasks_RecIDLike = value; return this; } public ArrayList getArTasksRecIDBetween() { return AR_Tasks_RecIDBetween; } public AR_TaskHistoryQuery setArTasksRecIDBetween(ArrayList value) { this.AR_Tasks_RecIDBetween = value; return this; } public ArrayList getArTasksRecIDIn() { return AR_Tasks_RecIDIn; } public AR_TaskHistoryQuery setArTasksRecIDIn(ArrayList value) { this.AR_Tasks_RecIDIn = value; return this; } public Short getStatus() { return Status; } public AR_TaskHistoryQuery setStatus(Short value) { this.Status = value; return this; } public Short getStatusGreaterThanOrEqualTo() { return StatusGreaterThanOrEqualTo; } public AR_TaskHistoryQuery setStatusGreaterThanOrEqualTo(Short value) { this.StatusGreaterThanOrEqualTo = value; return this; } public Short getStatusGreaterThan() { return StatusGreaterThan; } public AR_TaskHistoryQuery setStatusGreaterThan(Short value) { this.StatusGreaterThan = value; return this; } public Short getStatusLessThan() { return StatusLessThan; } public AR_TaskHistoryQuery setStatusLessThan(Short value) { this.StatusLessThan = value; return this; } public Short getStatusLessThanOrEqualTo() { return StatusLessThanOrEqualTo; } public AR_TaskHistoryQuery setStatusLessThanOrEqualTo(Short value) { this.StatusLessThanOrEqualTo = value; return this; } public Short getStatusNotEqualTo() { return StatusNotEqualTo; } public AR_TaskHistoryQuery setStatusNotEqualTo(Short value) { this.StatusNotEqualTo = value; return this; } public ArrayList getStatusBetween() { return StatusBetween; } public AR_TaskHistoryQuery setStatusBetween(ArrayList value) { this.StatusBetween = value; return this; } public ArrayList getStatusIn() { return StatusIn; } public AR_TaskHistoryQuery setStatusIn(ArrayList value) { this.StatusIn = value; return this; } public Date getStartDateTime() { return StartDateTime; } public AR_TaskHistoryQuery setStartDateTime(Date value) { this.StartDateTime = value; return this; } public Date getStartDateTimeGreaterThanOrEqualTo() { return StartDateTimeGreaterThanOrEqualTo; } public AR_TaskHistoryQuery setStartDateTimeGreaterThanOrEqualTo(Date value) { this.StartDateTimeGreaterThanOrEqualTo = value; return this; } public Date getStartDateTimeGreaterThan() { return StartDateTimeGreaterThan; } public AR_TaskHistoryQuery setStartDateTimeGreaterThan(Date value) { this.StartDateTimeGreaterThan = value; return this; } public Date getStartDateTimeLessThan() { return StartDateTimeLessThan; } public AR_TaskHistoryQuery setStartDateTimeLessThan(Date value) { this.StartDateTimeLessThan = value; return this; } public Date getStartDateTimeLessThanOrEqualTo() { return StartDateTimeLessThanOrEqualTo; } public AR_TaskHistoryQuery setStartDateTimeLessThanOrEqualTo(Date value) { this.StartDateTimeLessThanOrEqualTo = value; return this; } public Date getStartDateTimeNotEqualTo() { return StartDateTimeNotEqualTo; } public AR_TaskHistoryQuery setStartDateTimeNotEqualTo(Date value) { this.StartDateTimeNotEqualTo = value; return this; } public ArrayList getStartDateTimeBetween() { return StartDateTimeBetween; } public AR_TaskHistoryQuery setStartDateTimeBetween(ArrayList value) { this.StartDateTimeBetween = value; return this; } public ArrayList getStartDateTimeIn() { return StartDateTimeIn; } public AR_TaskHistoryQuery setStartDateTimeIn(ArrayList value) { this.StartDateTimeIn = value; return this; } public Date getEndDateTime() { return EndDateTime; } public AR_TaskHistoryQuery setEndDateTime(Date value) { this.EndDateTime = value; return this; } public Date getEndDateTimeGreaterThanOrEqualTo() { return EndDateTimeGreaterThanOrEqualTo; } public AR_TaskHistoryQuery setEndDateTimeGreaterThanOrEqualTo(Date value) { this.EndDateTimeGreaterThanOrEqualTo = value; return this; } public Date getEndDateTimeGreaterThan() { return EndDateTimeGreaterThan; } public AR_TaskHistoryQuery setEndDateTimeGreaterThan(Date value) { this.EndDateTimeGreaterThan = value; return this; } public Date getEndDateTimeLessThan() { return EndDateTimeLessThan; } public AR_TaskHistoryQuery setEndDateTimeLessThan(Date value) { this.EndDateTimeLessThan = value; return this; } public Date getEndDateTimeLessThanOrEqualTo() { return EndDateTimeLessThanOrEqualTo; } public AR_TaskHistoryQuery setEndDateTimeLessThanOrEqualTo(Date value) { this.EndDateTimeLessThanOrEqualTo = value; return this; } public Date getEndDateTimeNotEqualTo() { return EndDateTimeNotEqualTo; } public AR_TaskHistoryQuery setEndDateTimeNotEqualTo(Date value) { this.EndDateTimeNotEqualTo = value; return this; } public ArrayList getEndDateTimeBetween() { return EndDateTimeBetween; } public AR_TaskHistoryQuery setEndDateTimeBetween(ArrayList value) { this.EndDateTimeBetween = value; return this; } public ArrayList getEndDateTimeIn() { return EndDateTimeIn; } public AR_TaskHistoryQuery setEndDateTimeIn(ArrayList value) { this.EndDateTimeIn = value; return this; } public String getMessage() { return Message; } public AR_TaskHistoryQuery setMessage(String value) { this.Message = value; return this; } public String getMessageStartsWith() { return MessageStartsWith; } public AR_TaskHistoryQuery setMessageStartsWith(String value) { this.MessageStartsWith = value; return this; } public String getMessageEndsWith() { return MessageEndsWith; } public AR_TaskHistoryQuery setMessageEndsWith(String value) { this.MessageEndsWith = value; return this; } public String getMessageContains() { return MessageContains; } public AR_TaskHistoryQuery setMessageContains(String value) { this.MessageContains = value; return this; } public String getMessageLike() { return MessageLike; } public AR_TaskHistoryQuery setMessageLike(String value) { this.MessageLike = value; return this; } public ArrayList getMessageBetween() { return MessageBetween; } public AR_TaskHistoryQuery setMessageBetween(ArrayList value) { this.MessageBetween = value; return this; } public ArrayList getMessageIn() { return MessageIn; } public AR_TaskHistoryQuery setMessageIn(ArrayList value) { this.MessageIn = value; return this; } public String getReport() { return Report; } public AR_TaskHistoryQuery setReport(String value) { this.Report = value; return this; } public String getReportStartsWith() { return ReportStartsWith; } public AR_TaskHistoryQuery setReportStartsWith(String value) { this.ReportStartsWith = value; return this; } public String getReportEndsWith() { return ReportEndsWith; } public AR_TaskHistoryQuery setReportEndsWith(String value) { this.ReportEndsWith = value; return this; } public String getReportContains() { return ReportContains; } public AR_TaskHistoryQuery setReportContains(String value) { this.ReportContains = value; return this; } public String getReportLike() { return ReportLike; } public AR_TaskHistoryQuery setReportLike(String value) { this.ReportLike = value; return this; } public ArrayList getReportBetween() { return ReportBetween; } public AR_TaskHistoryQuery setReportBetween(ArrayList value) { this.ReportBetween = value; return this; } public ArrayList getReportIn() { return ReportIn; } public AR_TaskHistoryQuery setReportIn(ArrayList value) { this.ReportIn = value; return this; } public Date getCreatedDateTime() { return CreatedDateTime; } public AR_TaskHistoryQuery setCreatedDateTime(Date value) { this.CreatedDateTime = value; return this; } public Date getCreatedDateTimeGreaterThanOrEqualTo() { return CreatedDateTimeGreaterThanOrEqualTo; } public AR_TaskHistoryQuery setCreatedDateTimeGreaterThanOrEqualTo(Date value) { this.CreatedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getCreatedDateTimeGreaterThan() { return CreatedDateTimeGreaterThan; } public AR_TaskHistoryQuery setCreatedDateTimeGreaterThan(Date value) { this.CreatedDateTimeGreaterThan = value; return this; } public Date getCreatedDateTimeLessThan() { return CreatedDateTimeLessThan; } public AR_TaskHistoryQuery setCreatedDateTimeLessThan(Date value) { this.CreatedDateTimeLessThan = value; return this; } public Date getCreatedDateTimeLessThanOrEqualTo() { return CreatedDateTimeLessThanOrEqualTo; } public AR_TaskHistoryQuery setCreatedDateTimeLessThanOrEqualTo(Date value) { this.CreatedDateTimeLessThanOrEqualTo = value; return this; } public Date getCreatedDateTimeNotEqualTo() { return CreatedDateTimeNotEqualTo; } public AR_TaskHistoryQuery setCreatedDateTimeNotEqualTo(Date value) { this.CreatedDateTimeNotEqualTo = value; return this; } public ArrayList getCreatedDateTimeBetween() { return CreatedDateTimeBetween; } public AR_TaskHistoryQuery setCreatedDateTimeBetween(ArrayList value) { this.CreatedDateTimeBetween = value; return this; } public ArrayList getCreatedDateTimeIn() { return CreatedDateTimeIn; } public AR_TaskHistoryQuery setCreatedDateTimeIn(ArrayList value) { this.CreatedDateTimeIn = value; return this; } public String getCreatedByStaffID() { return CreatedByStaffID; } public AR_TaskHistoryQuery setCreatedByStaffID(String value) { this.CreatedByStaffID = value; return this; } public String getCreatedByStaffIDStartsWith() { return CreatedByStaffIDStartsWith; } public AR_TaskHistoryQuery setCreatedByStaffIDStartsWith(String value) { this.CreatedByStaffIDStartsWith = value; return this; } public String getCreatedByStaffIDEndsWith() { return CreatedByStaffIDEndsWith; } public AR_TaskHistoryQuery setCreatedByStaffIDEndsWith(String value) { this.CreatedByStaffIDEndsWith = value; return this; } public String getCreatedByStaffIDContains() { return CreatedByStaffIDContains; } public AR_TaskHistoryQuery setCreatedByStaffIDContains(String value) { this.CreatedByStaffIDContains = value; return this; } public String getCreatedByStaffIDLike() { return CreatedByStaffIDLike; } public AR_TaskHistoryQuery setCreatedByStaffIDLike(String value) { this.CreatedByStaffIDLike = value; return this; } public ArrayList getCreatedByStaffIDBetween() { return CreatedByStaffIDBetween; } public AR_TaskHistoryQuery setCreatedByStaffIDBetween(ArrayList value) { this.CreatedByStaffIDBetween = value; return this; } public ArrayList getCreatedByStaffIDIn() { return CreatedByStaffIDIn; } public AR_TaskHistoryQuery setCreatedByStaffIDIn(ArrayList value) { this.CreatedByStaffIDIn = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public AR_TaskHistoryQuery setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getLastSavedDateTimeGreaterThanOrEqualTo() { return LastSavedDateTimeGreaterThanOrEqualTo; } public AR_TaskHistoryQuery setLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.LastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeGreaterThan() { return LastSavedDateTimeGreaterThan; } public AR_TaskHistoryQuery setLastSavedDateTimeGreaterThan(Date value) { this.LastSavedDateTimeGreaterThan = value; return this; } public Date getLastSavedDateTimeLessThan() { return LastSavedDateTimeLessThan; } public AR_TaskHistoryQuery setLastSavedDateTimeLessThan(Date value) { this.LastSavedDateTimeLessThan = value; return this; } public Date getLastSavedDateTimeLessThanOrEqualTo() { return LastSavedDateTimeLessThanOrEqualTo; } public AR_TaskHistoryQuery setLastSavedDateTimeLessThanOrEqualTo(Date value) { this.LastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeNotEqualTo() { return LastSavedDateTimeNotEqualTo; } public AR_TaskHistoryQuery setLastSavedDateTimeNotEqualTo(Date value) { this.LastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getLastSavedDateTimeBetween() { return LastSavedDateTimeBetween; } public AR_TaskHistoryQuery setLastSavedDateTimeBetween(ArrayList value) { this.LastSavedDateTimeBetween = value; return this; } public ArrayList getLastSavedDateTimeIn() { return LastSavedDateTimeIn; } public AR_TaskHistoryQuery setLastSavedDateTimeIn(ArrayList value) { this.LastSavedDateTimeIn = value; return this; } public String getLastSavedByStaffID() { return LastSavedByStaffID; } public AR_TaskHistoryQuery setLastSavedByStaffID(String value) { this.LastSavedByStaffID = value; return this; } public String getLastSavedByStaffIDStartsWith() { return LastSavedByStaffIDStartsWith; } public AR_TaskHistoryQuery setLastSavedByStaffIDStartsWith(String value) { this.LastSavedByStaffIDStartsWith = value; return this; } public String getLastSavedByStaffIDEndsWith() { return LastSavedByStaffIDEndsWith; } public AR_TaskHistoryQuery setLastSavedByStaffIDEndsWith(String value) { this.LastSavedByStaffIDEndsWith = value; return this; } public String getLastSavedByStaffIDContains() { return LastSavedByStaffIDContains; } public AR_TaskHistoryQuery setLastSavedByStaffIDContains(String value) { this.LastSavedByStaffIDContains = value; return this; } public String getLastSavedByStaffIDLike() { return LastSavedByStaffIDLike; } public AR_TaskHistoryQuery setLastSavedByStaffIDLike(String value) { this.LastSavedByStaffIDLike = value; return this; } public ArrayList getLastSavedByStaffIDBetween() { return LastSavedByStaffIDBetween; } public AR_TaskHistoryQuery setLastSavedByStaffIDBetween(ArrayList value) { this.LastSavedByStaffIDBetween = value; return this; } public ArrayList getLastSavedByStaffIDIn() { return LastSavedByStaffIDIn; } public AR_TaskHistoryQuery setLastSavedByStaffIDIn(ArrayList value) { this.LastSavedByStaffIDIn = value; return this; } public String getExecutionID() { return ExecutionID; } public AR_TaskHistoryQuery setExecutionID(String value) { this.ExecutionID = value; return this; } public String getExecutionIDStartsWith() { return ExecutionIDStartsWith; } public AR_TaskHistoryQuery setExecutionIDStartsWith(String value) { this.ExecutionIDStartsWith = value; return this; } public String getExecutionIDEndsWith() { return ExecutionIDEndsWith; } public AR_TaskHistoryQuery setExecutionIDEndsWith(String value) { this.ExecutionIDEndsWith = value; return this; } public String getExecutionIDContains() { return ExecutionIDContains; } public AR_TaskHistoryQuery setExecutionIDContains(String value) { this.ExecutionIDContains = value; return this; } public String getExecutionIDLike() { return ExecutionIDLike; } public AR_TaskHistoryQuery setExecutionIDLike(String value) { this.ExecutionIDLike = value; return this; } public ArrayList getExecutionIDBetween() { return ExecutionIDBetween; } public AR_TaskHistoryQuery setExecutionIDBetween(ArrayList value) { this.ExecutionIDBetween = value; return this; } public ArrayList getExecutionIDIn() { return ExecutionIDIn; } public AR_TaskHistoryQuery setExecutionIDIn(ArrayList value) { this.ExecutionIDIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class AR_TasksQuery extends QueryDb implements IReturn> { public String RecID = null; public String RecIDStartsWith = null; public String RecIDEndsWith = null; public String RecIDContains = null; public String RecIDLike = null; public ArrayList RecIDBetween = null; public ArrayList RecIDIn = null; public String AR_Main_RecID = null; public String AR_Main_RecIDStartsWith = null; public String AR_Main_RecIDEndsWith = null; public String AR_Main_RecIDContains = null; public String AR_Main_RecIDLike = null; public ArrayList AR_Main_RecIDBetween = null; public ArrayList AR_Main_RecIDIn = null; public Integer TaskNo = null; public Integer TaskNoGreaterThanOrEqualTo = null; public Integer TaskNoGreaterThan = null; public Integer TaskNoLessThan = null; public Integer TaskNoLessThanOrEqualTo = null; public Integer TaskNoNotEqualTo = null; public ArrayList TaskNoBetween = null; public ArrayList TaskNoIn = null; public String Name = null; public String NameStartsWith = null; public String NameEndsWith = null; public String NameContains = null; public String NameLike = null; public ArrayList NameBetween = null; public ArrayList NameIn = null; public String AR_Provider_ProviderID = null; public String AR_Provider_ProviderIDStartsWith = null; public String AR_Provider_ProviderIDEndsWith = null; public String AR_Provider_ProviderIDContains = null; public String AR_Provider_ProviderIDLike = null; public ArrayList AR_Provider_ProviderIDBetween = null; public ArrayList AR_Provider_ProviderIDIn = null; public Short Enabled = null; public Short EnabledGreaterThanOrEqualTo = null; public Short EnabledGreaterThan = null; public Short EnabledLessThan = null; public Short EnabledLessThanOrEqualTo = null; public Short EnabledNotEqualTo = null; public ArrayList EnabledBetween = null; public ArrayList EnabledIn = null; public String Description = null; public String DescriptionStartsWith = null; public String DescriptionEndsWith = null; public String DescriptionContains = null; public String DescriptionLike = null; public ArrayList DescriptionBetween = null; public ArrayList DescriptionIn = null; public Date CreatedDateTime = null; public Date CreatedDateTimeGreaterThanOrEqualTo = null; public Date CreatedDateTimeGreaterThan = null; public Date CreatedDateTimeLessThan = null; public Date CreatedDateTimeLessThanOrEqualTo = null; public Date CreatedDateTimeNotEqualTo = null; public ArrayList CreatedDateTimeBetween = null; public ArrayList CreatedDateTimeIn = null; public String CreatedByStaffID = null; public String CreatedByStaffIDStartsWith = null; public String CreatedByStaffIDEndsWith = null; public String CreatedByStaffIDContains = null; public String CreatedByStaffIDLike = null; public ArrayList CreatedByStaffIDBetween = null; public ArrayList CreatedByStaffIDIn = null; public Date LastSavedDateTime = null; public Date LastSavedDateTimeGreaterThanOrEqualTo = null; public Date LastSavedDateTimeGreaterThan = null; public Date LastSavedDateTimeLessThan = null; public Date LastSavedDateTimeLessThanOrEqualTo = null; public Date LastSavedDateTimeNotEqualTo = null; public ArrayList LastSavedDateTimeBetween = null; public ArrayList LastSavedDateTimeIn = null; public String LastSavedByStaffID = null; public String LastSavedByStaffIDStartsWith = null; public String LastSavedByStaffIDEndsWith = null; public String LastSavedByStaffIDContains = null; public String LastSavedByStaffIDLike = null; public ArrayList LastSavedByStaffIDBetween = null; public ArrayList LastSavedByStaffIDIn = null; public String getRecID() { return RecID; } public AR_TasksQuery setRecID(String value) { this.RecID = value; return this; } public String getRecIDStartsWith() { return RecIDStartsWith; } public AR_TasksQuery setRecIDStartsWith(String value) { this.RecIDStartsWith = value; return this; } public String getRecIDEndsWith() { return RecIDEndsWith; } public AR_TasksQuery setRecIDEndsWith(String value) { this.RecIDEndsWith = value; return this; } public String getRecIDContains() { return RecIDContains; } public AR_TasksQuery setRecIDContains(String value) { this.RecIDContains = value; return this; } public String getRecIDLike() { return RecIDLike; } public AR_TasksQuery setRecIDLike(String value) { this.RecIDLike = value; return this; } public ArrayList getRecIDBetween() { return RecIDBetween; } public AR_TasksQuery setRecIDBetween(ArrayList value) { this.RecIDBetween = value; return this; } public ArrayList getRecIDIn() { return RecIDIn; } public AR_TasksQuery setRecIDIn(ArrayList value) { this.RecIDIn = value; return this; } public String getArMainRecID() { return AR_Main_RecID; } public AR_TasksQuery setArMainRecID(String value) { this.AR_Main_RecID = value; return this; } public String getArMainRecIDStartsWith() { return AR_Main_RecIDStartsWith; } public AR_TasksQuery setArMainRecIDStartsWith(String value) { this.AR_Main_RecIDStartsWith = value; return this; } public String getArMainRecIDEndsWith() { return AR_Main_RecIDEndsWith; } public AR_TasksQuery setArMainRecIDEndsWith(String value) { this.AR_Main_RecIDEndsWith = value; return this; } public String getArMainRecIDContains() { return AR_Main_RecIDContains; } public AR_TasksQuery setArMainRecIDContains(String value) { this.AR_Main_RecIDContains = value; return this; } public String getArMainRecIDLike() { return AR_Main_RecIDLike; } public AR_TasksQuery setArMainRecIDLike(String value) { this.AR_Main_RecIDLike = value; return this; } public ArrayList getArMainRecIDBetween() { return AR_Main_RecIDBetween; } public AR_TasksQuery setArMainRecIDBetween(ArrayList value) { this.AR_Main_RecIDBetween = value; return this; } public ArrayList getArMainRecIDIn() { return AR_Main_RecIDIn; } public AR_TasksQuery setArMainRecIDIn(ArrayList value) { this.AR_Main_RecIDIn = value; return this; } public Integer getTaskNo() { return TaskNo; } public AR_TasksQuery setTaskNo(Integer value) { this.TaskNo = value; return this; } public Integer getTaskNoGreaterThanOrEqualTo() { return TaskNoGreaterThanOrEqualTo; } public AR_TasksQuery setTaskNoGreaterThanOrEqualTo(Integer value) { this.TaskNoGreaterThanOrEqualTo = value; return this; } public Integer getTaskNoGreaterThan() { return TaskNoGreaterThan; } public AR_TasksQuery setTaskNoGreaterThan(Integer value) { this.TaskNoGreaterThan = value; return this; } public Integer getTaskNoLessThan() { return TaskNoLessThan; } public AR_TasksQuery setTaskNoLessThan(Integer value) { this.TaskNoLessThan = value; return this; } public Integer getTaskNoLessThanOrEqualTo() { return TaskNoLessThanOrEqualTo; } public AR_TasksQuery setTaskNoLessThanOrEqualTo(Integer value) { this.TaskNoLessThanOrEqualTo = value; return this; } public Integer getTaskNoNotEqualTo() { return TaskNoNotEqualTo; } public AR_TasksQuery setTaskNoNotEqualTo(Integer value) { this.TaskNoNotEqualTo = value; return this; } public ArrayList getTaskNoBetween() { return TaskNoBetween; } public AR_TasksQuery setTaskNoBetween(ArrayList value) { this.TaskNoBetween = value; return this; } public ArrayList getTaskNoIn() { return TaskNoIn; } public AR_TasksQuery setTaskNoIn(ArrayList value) { this.TaskNoIn = value; return this; } public String getName() { return Name; } public AR_TasksQuery setName(String value) { this.Name = value; return this; } public String getNameStartsWith() { return NameStartsWith; } public AR_TasksQuery setNameStartsWith(String value) { this.NameStartsWith = value; return this; } public String getNameEndsWith() { return NameEndsWith; } public AR_TasksQuery setNameEndsWith(String value) { this.NameEndsWith = value; return this; } public String getNameContains() { return NameContains; } public AR_TasksQuery setNameContains(String value) { this.NameContains = value; return this; } public String getNameLike() { return NameLike; } public AR_TasksQuery setNameLike(String value) { this.NameLike = value; return this; } public ArrayList getNameBetween() { return NameBetween; } public AR_TasksQuery setNameBetween(ArrayList value) { this.NameBetween = value; return this; } public ArrayList getNameIn() { return NameIn; } public AR_TasksQuery setNameIn(ArrayList value) { this.NameIn = value; return this; } public String getArProviderProviderID() { return AR_Provider_ProviderID; } public AR_TasksQuery setArProviderProviderID(String value) { this.AR_Provider_ProviderID = value; return this; } public String getArProviderProviderIDStartsWith() { return AR_Provider_ProviderIDStartsWith; } public AR_TasksQuery setArProviderProviderIDStartsWith(String value) { this.AR_Provider_ProviderIDStartsWith = value; return this; } public String getArProviderProviderIDEndsWith() { return AR_Provider_ProviderIDEndsWith; } public AR_TasksQuery setArProviderProviderIDEndsWith(String value) { this.AR_Provider_ProviderIDEndsWith = value; return this; } public String getArProviderProviderIDContains() { return AR_Provider_ProviderIDContains; } public AR_TasksQuery setArProviderProviderIDContains(String value) { this.AR_Provider_ProviderIDContains = value; return this; } public String getArProviderProviderIDLike() { return AR_Provider_ProviderIDLike; } public AR_TasksQuery setArProviderProviderIDLike(String value) { this.AR_Provider_ProviderIDLike = value; return this; } public ArrayList getArProviderProviderIDBetween() { return AR_Provider_ProviderIDBetween; } public AR_TasksQuery setArProviderProviderIDBetween(ArrayList value) { this.AR_Provider_ProviderIDBetween = value; return this; } public ArrayList getArProviderProviderIDIn() { return AR_Provider_ProviderIDIn; } public AR_TasksQuery setArProviderProviderIDIn(ArrayList value) { this.AR_Provider_ProviderIDIn = value; return this; } public Short getEnabled() { return Enabled; } public AR_TasksQuery setEnabled(Short value) { this.Enabled = value; return this; } public Short getEnabledGreaterThanOrEqualTo() { return EnabledGreaterThanOrEqualTo; } public AR_TasksQuery setEnabledGreaterThanOrEqualTo(Short value) { this.EnabledGreaterThanOrEqualTo = value; return this; } public Short getEnabledGreaterThan() { return EnabledGreaterThan; } public AR_TasksQuery setEnabledGreaterThan(Short value) { this.EnabledGreaterThan = value; return this; } public Short getEnabledLessThan() { return EnabledLessThan; } public AR_TasksQuery setEnabledLessThan(Short value) { this.EnabledLessThan = value; return this; } public Short getEnabledLessThanOrEqualTo() { return EnabledLessThanOrEqualTo; } public AR_TasksQuery setEnabledLessThanOrEqualTo(Short value) { this.EnabledLessThanOrEqualTo = value; return this; } public Short getEnabledNotEqualTo() { return EnabledNotEqualTo; } public AR_TasksQuery setEnabledNotEqualTo(Short value) { this.EnabledNotEqualTo = value; return this; } public ArrayList getEnabledBetween() { return EnabledBetween; } public AR_TasksQuery setEnabledBetween(ArrayList value) { this.EnabledBetween = value; return this; } public ArrayList getEnabledIn() { return EnabledIn; } public AR_TasksQuery setEnabledIn(ArrayList value) { this.EnabledIn = value; return this; } public String getDescription() { return Description; } public AR_TasksQuery setDescription(String value) { this.Description = value; return this; } public String getDescriptionStartsWith() { return DescriptionStartsWith; } public AR_TasksQuery setDescriptionStartsWith(String value) { this.DescriptionStartsWith = value; return this; } public String getDescriptionEndsWith() { return DescriptionEndsWith; } public AR_TasksQuery setDescriptionEndsWith(String value) { this.DescriptionEndsWith = value; return this; } public String getDescriptionContains() { return DescriptionContains; } public AR_TasksQuery setDescriptionContains(String value) { this.DescriptionContains = value; return this; } public String getDescriptionLike() { return DescriptionLike; } public AR_TasksQuery setDescriptionLike(String value) { this.DescriptionLike = value; return this; } public ArrayList getDescriptionBetween() { return DescriptionBetween; } public AR_TasksQuery setDescriptionBetween(ArrayList value) { this.DescriptionBetween = value; return this; } public ArrayList getDescriptionIn() { return DescriptionIn; } public AR_TasksQuery setDescriptionIn(ArrayList value) { this.DescriptionIn = value; return this; } public Date getCreatedDateTime() { return CreatedDateTime; } public AR_TasksQuery setCreatedDateTime(Date value) { this.CreatedDateTime = value; return this; } public Date getCreatedDateTimeGreaterThanOrEqualTo() { return CreatedDateTimeGreaterThanOrEqualTo; } public AR_TasksQuery setCreatedDateTimeGreaterThanOrEqualTo(Date value) { this.CreatedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getCreatedDateTimeGreaterThan() { return CreatedDateTimeGreaterThan; } public AR_TasksQuery setCreatedDateTimeGreaterThan(Date value) { this.CreatedDateTimeGreaterThan = value; return this; } public Date getCreatedDateTimeLessThan() { return CreatedDateTimeLessThan; } public AR_TasksQuery setCreatedDateTimeLessThan(Date value) { this.CreatedDateTimeLessThan = value; return this; } public Date getCreatedDateTimeLessThanOrEqualTo() { return CreatedDateTimeLessThanOrEqualTo; } public AR_TasksQuery setCreatedDateTimeLessThanOrEqualTo(Date value) { this.CreatedDateTimeLessThanOrEqualTo = value; return this; } public Date getCreatedDateTimeNotEqualTo() { return CreatedDateTimeNotEqualTo; } public AR_TasksQuery setCreatedDateTimeNotEqualTo(Date value) { this.CreatedDateTimeNotEqualTo = value; return this; } public ArrayList getCreatedDateTimeBetween() { return CreatedDateTimeBetween; } public AR_TasksQuery setCreatedDateTimeBetween(ArrayList value) { this.CreatedDateTimeBetween = value; return this; } public ArrayList getCreatedDateTimeIn() { return CreatedDateTimeIn; } public AR_TasksQuery setCreatedDateTimeIn(ArrayList value) { this.CreatedDateTimeIn = value; return this; } public String getCreatedByStaffID() { return CreatedByStaffID; } public AR_TasksQuery setCreatedByStaffID(String value) { this.CreatedByStaffID = value; return this; } public String getCreatedByStaffIDStartsWith() { return CreatedByStaffIDStartsWith; } public AR_TasksQuery setCreatedByStaffIDStartsWith(String value) { this.CreatedByStaffIDStartsWith = value; return this; } public String getCreatedByStaffIDEndsWith() { return CreatedByStaffIDEndsWith; } public AR_TasksQuery setCreatedByStaffIDEndsWith(String value) { this.CreatedByStaffIDEndsWith = value; return this; } public String getCreatedByStaffIDContains() { return CreatedByStaffIDContains; } public AR_TasksQuery setCreatedByStaffIDContains(String value) { this.CreatedByStaffIDContains = value; return this; } public String getCreatedByStaffIDLike() { return CreatedByStaffIDLike; } public AR_TasksQuery setCreatedByStaffIDLike(String value) { this.CreatedByStaffIDLike = value; return this; } public ArrayList getCreatedByStaffIDBetween() { return CreatedByStaffIDBetween; } public AR_TasksQuery setCreatedByStaffIDBetween(ArrayList value) { this.CreatedByStaffIDBetween = value; return this; } public ArrayList getCreatedByStaffIDIn() { return CreatedByStaffIDIn; } public AR_TasksQuery setCreatedByStaffIDIn(ArrayList value) { this.CreatedByStaffIDIn = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public AR_TasksQuery setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getLastSavedDateTimeGreaterThanOrEqualTo() { return LastSavedDateTimeGreaterThanOrEqualTo; } public AR_TasksQuery setLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.LastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeGreaterThan() { return LastSavedDateTimeGreaterThan; } public AR_TasksQuery setLastSavedDateTimeGreaterThan(Date value) { this.LastSavedDateTimeGreaterThan = value; return this; } public Date getLastSavedDateTimeLessThan() { return LastSavedDateTimeLessThan; } public AR_TasksQuery setLastSavedDateTimeLessThan(Date value) { this.LastSavedDateTimeLessThan = value; return this; } public Date getLastSavedDateTimeLessThanOrEqualTo() { return LastSavedDateTimeLessThanOrEqualTo; } public AR_TasksQuery setLastSavedDateTimeLessThanOrEqualTo(Date value) { this.LastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeNotEqualTo() { return LastSavedDateTimeNotEqualTo; } public AR_TasksQuery setLastSavedDateTimeNotEqualTo(Date value) { this.LastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getLastSavedDateTimeBetween() { return LastSavedDateTimeBetween; } public AR_TasksQuery setLastSavedDateTimeBetween(ArrayList value) { this.LastSavedDateTimeBetween = value; return this; } public ArrayList getLastSavedDateTimeIn() { return LastSavedDateTimeIn; } public AR_TasksQuery setLastSavedDateTimeIn(ArrayList value) { this.LastSavedDateTimeIn = value; return this; } public String getLastSavedByStaffID() { return LastSavedByStaffID; } public AR_TasksQuery setLastSavedByStaffID(String value) { this.LastSavedByStaffID = value; return this; } public String getLastSavedByStaffIDStartsWith() { return LastSavedByStaffIDStartsWith; } public AR_TasksQuery setLastSavedByStaffIDStartsWith(String value) { this.LastSavedByStaffIDStartsWith = value; return this; } public String getLastSavedByStaffIDEndsWith() { return LastSavedByStaffIDEndsWith; } public AR_TasksQuery setLastSavedByStaffIDEndsWith(String value) { this.LastSavedByStaffIDEndsWith = value; return this; } public String getLastSavedByStaffIDContains() { return LastSavedByStaffIDContains; } public AR_TasksQuery setLastSavedByStaffIDContains(String value) { this.LastSavedByStaffIDContains = value; return this; } public String getLastSavedByStaffIDLike() { return LastSavedByStaffIDLike; } public AR_TasksQuery setLastSavedByStaffIDLike(String value) { this.LastSavedByStaffIDLike = value; return this; } public ArrayList getLastSavedByStaffIDBetween() { return LastSavedByStaffIDBetween; } public AR_TasksQuery setLastSavedByStaffIDBetween(ArrayList value) { this.LastSavedByStaffIDBetween = value; return this; } public ArrayList getLastSavedByStaffIDIn() { return LastSavedByStaffIDIn; } public AR_TasksQuery setLastSavedByStaffIDIn(ArrayList value) { this.LastSavedByStaffIDIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class BM_BatchProductionQuery extends QueryDb implements IReturn> { public String RecID = null; public String RecIDStartsWith = null; public String RecIDEndsWith = null; public String RecIDContains = null; public String RecIDLike = null; public ArrayList RecIDBetween = null; public ArrayList RecIDIn = null; public String BatchNo = null; public String BatchNoStartsWith = null; public String BatchNoEndsWith = null; public String BatchNoContains = null; public String BatchNoLike = null; public ArrayList BatchNoBetween = null; public ArrayList BatchNoIn = null; public Date BatchDate = null; public Date BatchDateGreaterThanOrEqualTo = null; public Date BatchDateGreaterThan = null; public Date BatchDateLessThan = null; public Date BatchDateLessThanOrEqualTo = null; public Date BatchDateNotEqualTo = null; public ArrayList BatchDateBetween = null; public ArrayList BatchDateIn = null; public String Description = null; public String DescriptionStartsWith = null; public String DescriptionEndsWith = null; public String DescriptionContains = null; public String DescriptionLike = null; public ArrayList DescriptionBetween = null; public ArrayList DescriptionIn = null; public String BM_Main_RecID = null; public String BM_Main_RecIDStartsWith = null; public String BM_Main_RecIDEndsWith = null; public String BM_Main_RecIDContains = null; public String BM_Main_RecIDLike = null; public ArrayList BM_Main_RecIDBetween = null; public ArrayList BM_Main_RecIDIn = null; public BigDecimal Quantity = null; public BigDecimal QuantityGreaterThanOrEqualTo = null; public BigDecimal QuantityGreaterThan = null; public BigDecimal QuantityLessThan = null; public BigDecimal QuantityLessThanOrEqualTo = null; public BigDecimal QuantityNotEqualTo = null; public ArrayList QuantityBetween = null; public ArrayList QuantityIn = null; public BigDecimal QuantityPerWorkOrder = null; public BigDecimal QuantityPerWorkOrderGreaterThanOrEqualTo = null; public BigDecimal QuantityPerWorkOrderGreaterThan = null; public BigDecimal QuantityPerWorkOrderLessThan = null; public BigDecimal QuantityPerWorkOrderLessThanOrEqualTo = null; public BigDecimal QuantityPerWorkOrderNotEqualTo = null; public ArrayList QuantityPerWorkOrderBetween = null; public ArrayList QuantityPerWorkOrderIn = null; public Boolean IsActivated = null; public Date LastSavedDateTime = null; public Date LastSavedDateTimeGreaterThanOrEqualTo = null; public Date LastSavedDateTimeGreaterThan = null; public Date LastSavedDateTimeLessThan = null; public Date LastSavedDateTimeLessThanOrEqualTo = null; public Date LastSavedDateTimeNotEqualTo = null; public ArrayList LastSavedDateTimeBetween = null; public ArrayList LastSavedDateTimeIn = null; public ArrayList RowHash = null; public String getRecID() { return RecID; } public BM_BatchProductionQuery setRecID(String value) { this.RecID = value; return this; } public String getRecIDStartsWith() { return RecIDStartsWith; } public BM_BatchProductionQuery setRecIDStartsWith(String value) { this.RecIDStartsWith = value; return this; } public String getRecIDEndsWith() { return RecIDEndsWith; } public BM_BatchProductionQuery setRecIDEndsWith(String value) { this.RecIDEndsWith = value; return this; } public String getRecIDContains() { return RecIDContains; } public BM_BatchProductionQuery setRecIDContains(String value) { this.RecIDContains = value; return this; } public String getRecIDLike() { return RecIDLike; } public BM_BatchProductionQuery setRecIDLike(String value) { this.RecIDLike = value; return this; } public ArrayList getRecIDBetween() { return RecIDBetween; } public BM_BatchProductionQuery setRecIDBetween(ArrayList value) { this.RecIDBetween = value; return this; } public ArrayList getRecIDIn() { return RecIDIn; } public BM_BatchProductionQuery setRecIDIn(ArrayList value) { this.RecIDIn = value; return this; } public String getBatchNo() { return BatchNo; } public BM_BatchProductionQuery setBatchNo(String value) { this.BatchNo = value; return this; } public String getBatchNoStartsWith() { return BatchNoStartsWith; } public BM_BatchProductionQuery setBatchNoStartsWith(String value) { this.BatchNoStartsWith = value; return this; } public String getBatchNoEndsWith() { return BatchNoEndsWith; } public BM_BatchProductionQuery setBatchNoEndsWith(String value) { this.BatchNoEndsWith = value; return this; } public String getBatchNoContains() { return BatchNoContains; } public BM_BatchProductionQuery setBatchNoContains(String value) { this.BatchNoContains = value; return this; } public String getBatchNoLike() { return BatchNoLike; } public BM_BatchProductionQuery setBatchNoLike(String value) { this.BatchNoLike = value; return this; } public ArrayList getBatchNoBetween() { return BatchNoBetween; } public BM_BatchProductionQuery setBatchNoBetween(ArrayList value) { this.BatchNoBetween = value; return this; } public ArrayList getBatchNoIn() { return BatchNoIn; } public BM_BatchProductionQuery setBatchNoIn(ArrayList value) { this.BatchNoIn = value; return this; } public Date getBatchDate() { return BatchDate; } public BM_BatchProductionQuery setBatchDate(Date value) { this.BatchDate = value; return this; } public Date getBatchDateGreaterThanOrEqualTo() { return BatchDateGreaterThanOrEqualTo; } public BM_BatchProductionQuery setBatchDateGreaterThanOrEqualTo(Date value) { this.BatchDateGreaterThanOrEqualTo = value; return this; } public Date getBatchDateGreaterThan() { return BatchDateGreaterThan; } public BM_BatchProductionQuery setBatchDateGreaterThan(Date value) { this.BatchDateGreaterThan = value; return this; } public Date getBatchDateLessThan() { return BatchDateLessThan; } public BM_BatchProductionQuery setBatchDateLessThan(Date value) { this.BatchDateLessThan = value; return this; } public Date getBatchDateLessThanOrEqualTo() { return BatchDateLessThanOrEqualTo; } public BM_BatchProductionQuery setBatchDateLessThanOrEqualTo(Date value) { this.BatchDateLessThanOrEqualTo = value; return this; } public Date getBatchDateNotEqualTo() { return BatchDateNotEqualTo; } public BM_BatchProductionQuery setBatchDateNotEqualTo(Date value) { this.BatchDateNotEqualTo = value; return this; } public ArrayList getBatchDateBetween() { return BatchDateBetween; } public BM_BatchProductionQuery setBatchDateBetween(ArrayList value) { this.BatchDateBetween = value; return this; } public ArrayList getBatchDateIn() { return BatchDateIn; } public BM_BatchProductionQuery setBatchDateIn(ArrayList value) { this.BatchDateIn = value; return this; } public String getDescription() { return Description; } public BM_BatchProductionQuery setDescription(String value) { this.Description = value; return this; } public String getDescriptionStartsWith() { return DescriptionStartsWith; } public BM_BatchProductionQuery setDescriptionStartsWith(String value) { this.DescriptionStartsWith = value; return this; } public String getDescriptionEndsWith() { return DescriptionEndsWith; } public BM_BatchProductionQuery setDescriptionEndsWith(String value) { this.DescriptionEndsWith = value; return this; } public String getDescriptionContains() { return DescriptionContains; } public BM_BatchProductionQuery setDescriptionContains(String value) { this.DescriptionContains = value; return this; } public String getDescriptionLike() { return DescriptionLike; } public BM_BatchProductionQuery setDescriptionLike(String value) { this.DescriptionLike = value; return this; } public ArrayList getDescriptionBetween() { return DescriptionBetween; } public BM_BatchProductionQuery setDescriptionBetween(ArrayList value) { this.DescriptionBetween = value; return this; } public ArrayList getDescriptionIn() { return DescriptionIn; } public BM_BatchProductionQuery setDescriptionIn(ArrayList value) { this.DescriptionIn = value; return this; } public String getBmMainRecID() { return BM_Main_RecID; } public BM_BatchProductionQuery setBmMainRecID(String value) { this.BM_Main_RecID = value; return this; } public String getBmMainRecIDStartsWith() { return BM_Main_RecIDStartsWith; } public BM_BatchProductionQuery setBmMainRecIDStartsWith(String value) { this.BM_Main_RecIDStartsWith = value; return this; } public String getBmMainRecIDEndsWith() { return BM_Main_RecIDEndsWith; } public BM_BatchProductionQuery setBmMainRecIDEndsWith(String value) { this.BM_Main_RecIDEndsWith = value; return this; } public String getBmMainRecIDContains() { return BM_Main_RecIDContains; } public BM_BatchProductionQuery setBmMainRecIDContains(String value) { this.BM_Main_RecIDContains = value; return this; } public String getBmMainRecIDLike() { return BM_Main_RecIDLike; } public BM_BatchProductionQuery setBmMainRecIDLike(String value) { this.BM_Main_RecIDLike = value; return this; } public ArrayList getBmMainRecIDBetween() { return BM_Main_RecIDBetween; } public BM_BatchProductionQuery setBmMainRecIDBetween(ArrayList value) { this.BM_Main_RecIDBetween = value; return this; } public ArrayList getBmMainRecIDIn() { return BM_Main_RecIDIn; } public BM_BatchProductionQuery setBmMainRecIDIn(ArrayList value) { this.BM_Main_RecIDIn = value; return this; } public BigDecimal getQuantity() { return Quantity; } public BM_BatchProductionQuery setQuantity(BigDecimal value) { this.Quantity = value; return this; } public BigDecimal getQuantityGreaterThanOrEqualTo() { return QuantityGreaterThanOrEqualTo; } public BM_BatchProductionQuery setQuantityGreaterThanOrEqualTo(BigDecimal value) { this.QuantityGreaterThanOrEqualTo = value; return this; } public BigDecimal getQuantityGreaterThan() { return QuantityGreaterThan; } public BM_BatchProductionQuery setQuantityGreaterThan(BigDecimal value) { this.QuantityGreaterThan = value; return this; } public BigDecimal getQuantityLessThan() { return QuantityLessThan; } public BM_BatchProductionQuery setQuantityLessThan(BigDecimal value) { this.QuantityLessThan = value; return this; } public BigDecimal getQuantityLessThanOrEqualTo() { return QuantityLessThanOrEqualTo; } public BM_BatchProductionQuery setQuantityLessThanOrEqualTo(BigDecimal value) { this.QuantityLessThanOrEqualTo = value; return this; } public BigDecimal getQuantityNotEqualTo() { return QuantityNotEqualTo; } public BM_BatchProductionQuery setQuantityNotEqualTo(BigDecimal value) { this.QuantityNotEqualTo = value; return this; } public ArrayList getQuantityBetween() { return QuantityBetween; } public BM_BatchProductionQuery setQuantityBetween(ArrayList value) { this.QuantityBetween = value; return this; } public ArrayList getQuantityIn() { return QuantityIn; } public BM_BatchProductionQuery setQuantityIn(ArrayList value) { this.QuantityIn = value; return this; } public BigDecimal getQuantityPerWorkOrder() { return QuantityPerWorkOrder; } public BM_BatchProductionQuery setQuantityPerWorkOrder(BigDecimal value) { this.QuantityPerWorkOrder = value; return this; } public BigDecimal getQuantityPerWorkOrderGreaterThanOrEqualTo() { return QuantityPerWorkOrderGreaterThanOrEqualTo; } public BM_BatchProductionQuery setQuantityPerWorkOrderGreaterThanOrEqualTo(BigDecimal value) { this.QuantityPerWorkOrderGreaterThanOrEqualTo = value; return this; } public BigDecimal getQuantityPerWorkOrderGreaterThan() { return QuantityPerWorkOrderGreaterThan; } public BM_BatchProductionQuery setQuantityPerWorkOrderGreaterThan(BigDecimal value) { this.QuantityPerWorkOrderGreaterThan = value; return this; } public BigDecimal getQuantityPerWorkOrderLessThan() { return QuantityPerWorkOrderLessThan; } public BM_BatchProductionQuery setQuantityPerWorkOrderLessThan(BigDecimal value) { this.QuantityPerWorkOrderLessThan = value; return this; } public BigDecimal getQuantityPerWorkOrderLessThanOrEqualTo() { return QuantityPerWorkOrderLessThanOrEqualTo; } public BM_BatchProductionQuery setQuantityPerWorkOrderLessThanOrEqualTo(BigDecimal value) { this.QuantityPerWorkOrderLessThanOrEqualTo = value; return this; } public BigDecimal getQuantityPerWorkOrderNotEqualTo() { return QuantityPerWorkOrderNotEqualTo; } public BM_BatchProductionQuery setQuantityPerWorkOrderNotEqualTo(BigDecimal value) { this.QuantityPerWorkOrderNotEqualTo = value; return this; } public ArrayList getQuantityPerWorkOrderBetween() { return QuantityPerWorkOrderBetween; } public BM_BatchProductionQuery setQuantityPerWorkOrderBetween(ArrayList value) { this.QuantityPerWorkOrderBetween = value; return this; } public ArrayList getQuantityPerWorkOrderIn() { return QuantityPerWorkOrderIn; } public BM_BatchProductionQuery setQuantityPerWorkOrderIn(ArrayList value) { this.QuantityPerWorkOrderIn = value; return this; } public Boolean getIsActivated() { return IsActivated; } public BM_BatchProductionQuery setIsActivated(Boolean value) { this.IsActivated = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public BM_BatchProductionQuery setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getLastSavedDateTimeGreaterThanOrEqualTo() { return LastSavedDateTimeGreaterThanOrEqualTo; } public BM_BatchProductionQuery setLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.LastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeGreaterThan() { return LastSavedDateTimeGreaterThan; } public BM_BatchProductionQuery setLastSavedDateTimeGreaterThan(Date value) { this.LastSavedDateTimeGreaterThan = value; return this; } public Date getLastSavedDateTimeLessThan() { return LastSavedDateTimeLessThan; } public BM_BatchProductionQuery setLastSavedDateTimeLessThan(Date value) { this.LastSavedDateTimeLessThan = value; return this; } public Date getLastSavedDateTimeLessThanOrEqualTo() { return LastSavedDateTimeLessThanOrEqualTo; } public BM_BatchProductionQuery setLastSavedDateTimeLessThanOrEqualTo(Date value) { this.LastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeNotEqualTo() { return LastSavedDateTimeNotEqualTo; } public BM_BatchProductionQuery setLastSavedDateTimeNotEqualTo(Date value) { this.LastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getLastSavedDateTimeBetween() { return LastSavedDateTimeBetween; } public BM_BatchProductionQuery setLastSavedDateTimeBetween(ArrayList value) { this.LastSavedDateTimeBetween = value; return this; } public ArrayList getLastSavedDateTimeIn() { return LastSavedDateTimeIn; } public BM_BatchProductionQuery setLastSavedDateTimeIn(ArrayList value) { this.LastSavedDateTimeIn = value; return this; } public ArrayList getRowHash() { return RowHash; } public BM_BatchProductionQuery setRowHash(ArrayList value) { this.RowHash = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class BM_BatchProductionCustomFieldsQuery extends QueryDb implements IReturn> { public String RecID = null; public String RecIDStartsWith = null; public String RecIDEndsWith = null; public String RecIDContains = null; public String RecIDLike = null; public ArrayList RecIDBetween = null; public ArrayList RecIDIn = null; public String SettingName = null; public String SettingNameStartsWith = null; public String SettingNameEndsWith = null; public String SettingNameContains = null; public String SettingNameLike = null; public ArrayList SettingNameBetween = null; public ArrayList SettingNameIn = null; public String SettingDescription = null; public String SettingDescriptionStartsWith = null; public String SettingDescriptionEndsWith = null; public String SettingDescriptionContains = null; public String SettingDescriptionLike = null; public ArrayList SettingDescriptionBetween = null; public ArrayList SettingDescriptionIn = null; public Integer CellType = null; public Integer CellTypeGreaterThanOrEqualTo = null; public Integer CellTypeGreaterThan = null; public Integer CellTypeLessThan = null; public Integer CellTypeLessThanOrEqualTo = null; public Integer CellTypeNotEqualTo = null; public ArrayList CellTypeBetween = null; public ArrayList CellTypeIn = null; public String FieldParameter = null; public String FieldParameterStartsWith = null; public String FieldParameterEndsWith = null; public String FieldParameterContains = null; public String FieldParameterLike = null; public ArrayList FieldParameterBetween = null; public ArrayList FieldParameterIn = null; public UUID SY_Plugin_RecID = null; public ArrayList SY_Plugin_RecIDIn = null; public Date LastSavedDateTime = null; public Date LastSavedDateTimeGreaterThanOrEqualTo = null; public Date LastSavedDateTimeGreaterThan = null; public Date LastSavedDateTimeLessThan = null; public Date LastSavedDateTimeLessThanOrEqualTo = null; public Date LastSavedDateTimeNotEqualTo = null; public ArrayList LastSavedDateTimeBetween = null; public ArrayList LastSavedDateTimeIn = null; public Integer DisplayOrder = null; public Integer DisplayOrderGreaterThanOrEqualTo = null; public Integer DisplayOrderGreaterThan = null; public Integer DisplayOrderLessThan = null; public Integer DisplayOrderLessThanOrEqualTo = null; public Integer DisplayOrderNotEqualTo = null; public ArrayList DisplayOrderBetween = null; public ArrayList DisplayOrderIn = null; public String getRecID() { return RecID; } public BM_BatchProductionCustomFieldsQuery setRecID(String value) { this.RecID = value; return this; } public String getRecIDStartsWith() { return RecIDStartsWith; } public BM_BatchProductionCustomFieldsQuery setRecIDStartsWith(String value) { this.RecIDStartsWith = value; return this; } public String getRecIDEndsWith() { return RecIDEndsWith; } public BM_BatchProductionCustomFieldsQuery setRecIDEndsWith(String value) { this.RecIDEndsWith = value; return this; } public String getRecIDContains() { return RecIDContains; } public BM_BatchProductionCustomFieldsQuery setRecIDContains(String value) { this.RecIDContains = value; return this; } public String getRecIDLike() { return RecIDLike; } public BM_BatchProductionCustomFieldsQuery setRecIDLike(String value) { this.RecIDLike = value; return this; } public ArrayList getRecIDBetween() { return RecIDBetween; } public BM_BatchProductionCustomFieldsQuery setRecIDBetween(ArrayList value) { this.RecIDBetween = value; return this; } public ArrayList getRecIDIn() { return RecIDIn; } public BM_BatchProductionCustomFieldsQuery setRecIDIn(ArrayList value) { this.RecIDIn = value; return this; } public String getSettingName() { return SettingName; } public BM_BatchProductionCustomFieldsQuery setSettingName(String value) { this.SettingName = value; return this; } public String getSettingNameStartsWith() { return SettingNameStartsWith; } public BM_BatchProductionCustomFieldsQuery setSettingNameStartsWith(String value) { this.SettingNameStartsWith = value; return this; } public String getSettingNameEndsWith() { return SettingNameEndsWith; } public BM_BatchProductionCustomFieldsQuery setSettingNameEndsWith(String value) { this.SettingNameEndsWith = value; return this; } public String getSettingNameContains() { return SettingNameContains; } public BM_BatchProductionCustomFieldsQuery setSettingNameContains(String value) { this.SettingNameContains = value; return this; } public String getSettingNameLike() { return SettingNameLike; } public BM_BatchProductionCustomFieldsQuery setSettingNameLike(String value) { this.SettingNameLike = value; return this; } public ArrayList getSettingNameBetween() { return SettingNameBetween; } public BM_BatchProductionCustomFieldsQuery setSettingNameBetween(ArrayList value) { this.SettingNameBetween = value; return this; } public ArrayList getSettingNameIn() { return SettingNameIn; } public BM_BatchProductionCustomFieldsQuery setSettingNameIn(ArrayList value) { this.SettingNameIn = value; return this; } public String getSettingDescription() { return SettingDescription; } public BM_BatchProductionCustomFieldsQuery setSettingDescription(String value) { this.SettingDescription = value; return this; } public String getSettingDescriptionStartsWith() { return SettingDescriptionStartsWith; } public BM_BatchProductionCustomFieldsQuery setSettingDescriptionStartsWith(String value) { this.SettingDescriptionStartsWith = value; return this; } public String getSettingDescriptionEndsWith() { return SettingDescriptionEndsWith; } public BM_BatchProductionCustomFieldsQuery setSettingDescriptionEndsWith(String value) { this.SettingDescriptionEndsWith = value; return this; } public String getSettingDescriptionContains() { return SettingDescriptionContains; } public BM_BatchProductionCustomFieldsQuery setSettingDescriptionContains(String value) { this.SettingDescriptionContains = value; return this; } public String getSettingDescriptionLike() { return SettingDescriptionLike; } public BM_BatchProductionCustomFieldsQuery setSettingDescriptionLike(String value) { this.SettingDescriptionLike = value; return this; } public ArrayList getSettingDescriptionBetween() { return SettingDescriptionBetween; } public BM_BatchProductionCustomFieldsQuery setSettingDescriptionBetween(ArrayList value) { this.SettingDescriptionBetween = value; return this; } public ArrayList getSettingDescriptionIn() { return SettingDescriptionIn; } public BM_BatchProductionCustomFieldsQuery setSettingDescriptionIn(ArrayList value) { this.SettingDescriptionIn = value; return this; } public Integer getCellType() { return CellType; } public BM_BatchProductionCustomFieldsQuery setCellType(Integer value) { this.CellType = value; return this; } public Integer getCellTypeGreaterThanOrEqualTo() { return CellTypeGreaterThanOrEqualTo; } public BM_BatchProductionCustomFieldsQuery setCellTypeGreaterThanOrEqualTo(Integer value) { this.CellTypeGreaterThanOrEqualTo = value; return this; } public Integer getCellTypeGreaterThan() { return CellTypeGreaterThan; } public BM_BatchProductionCustomFieldsQuery setCellTypeGreaterThan(Integer value) { this.CellTypeGreaterThan = value; return this; } public Integer getCellTypeLessThan() { return CellTypeLessThan; } public BM_BatchProductionCustomFieldsQuery setCellTypeLessThan(Integer value) { this.CellTypeLessThan = value; return this; } public Integer getCellTypeLessThanOrEqualTo() { return CellTypeLessThanOrEqualTo; } public BM_BatchProductionCustomFieldsQuery setCellTypeLessThanOrEqualTo(Integer value) { this.CellTypeLessThanOrEqualTo = value; return this; } public Integer getCellTypeNotEqualTo() { return CellTypeNotEqualTo; } public BM_BatchProductionCustomFieldsQuery setCellTypeNotEqualTo(Integer value) { this.CellTypeNotEqualTo = value; return this; } public ArrayList getCellTypeBetween() { return CellTypeBetween; } public BM_BatchProductionCustomFieldsQuery setCellTypeBetween(ArrayList value) { this.CellTypeBetween = value; return this; } public ArrayList getCellTypeIn() { return CellTypeIn; } public BM_BatchProductionCustomFieldsQuery setCellTypeIn(ArrayList value) { this.CellTypeIn = value; return this; } public String getFieldParameter() { return FieldParameter; } public BM_BatchProductionCustomFieldsQuery setFieldParameter(String value) { this.FieldParameter = value; return this; } public String getFieldParameterStartsWith() { return FieldParameterStartsWith; } public BM_BatchProductionCustomFieldsQuery setFieldParameterStartsWith(String value) { this.FieldParameterStartsWith = value; return this; } public String getFieldParameterEndsWith() { return FieldParameterEndsWith; } public BM_BatchProductionCustomFieldsQuery setFieldParameterEndsWith(String value) { this.FieldParameterEndsWith = value; return this; } public String getFieldParameterContains() { return FieldParameterContains; } public BM_BatchProductionCustomFieldsQuery setFieldParameterContains(String value) { this.FieldParameterContains = value; return this; } public String getFieldParameterLike() { return FieldParameterLike; } public BM_BatchProductionCustomFieldsQuery setFieldParameterLike(String value) { this.FieldParameterLike = value; return this; } public ArrayList getFieldParameterBetween() { return FieldParameterBetween; } public BM_BatchProductionCustomFieldsQuery setFieldParameterBetween(ArrayList value) { this.FieldParameterBetween = value; return this; } public ArrayList getFieldParameterIn() { return FieldParameterIn; } public BM_BatchProductionCustomFieldsQuery setFieldParameterIn(ArrayList value) { this.FieldParameterIn = value; return this; } public UUID getSyPluginRecID() { return SY_Plugin_RecID; } public BM_BatchProductionCustomFieldsQuery setSyPluginRecID(UUID value) { this.SY_Plugin_RecID = value; return this; } public ArrayList getSyPluginRecIDIn() { return SY_Plugin_RecIDIn; } public BM_BatchProductionCustomFieldsQuery setSyPluginRecIDIn(ArrayList value) { this.SY_Plugin_RecIDIn = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public BM_BatchProductionCustomFieldsQuery setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getLastSavedDateTimeGreaterThanOrEqualTo() { return LastSavedDateTimeGreaterThanOrEqualTo; } public BM_BatchProductionCustomFieldsQuery setLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.LastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeGreaterThan() { return LastSavedDateTimeGreaterThan; } public BM_BatchProductionCustomFieldsQuery setLastSavedDateTimeGreaterThan(Date value) { this.LastSavedDateTimeGreaterThan = value; return this; } public Date getLastSavedDateTimeLessThan() { return LastSavedDateTimeLessThan; } public BM_BatchProductionCustomFieldsQuery setLastSavedDateTimeLessThan(Date value) { this.LastSavedDateTimeLessThan = value; return this; } public Date getLastSavedDateTimeLessThanOrEqualTo() { return LastSavedDateTimeLessThanOrEqualTo; } public BM_BatchProductionCustomFieldsQuery setLastSavedDateTimeLessThanOrEqualTo(Date value) { this.LastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeNotEqualTo() { return LastSavedDateTimeNotEqualTo; } public BM_BatchProductionCustomFieldsQuery setLastSavedDateTimeNotEqualTo(Date value) { this.LastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getLastSavedDateTimeBetween() { return LastSavedDateTimeBetween; } public BM_BatchProductionCustomFieldsQuery setLastSavedDateTimeBetween(ArrayList value) { this.LastSavedDateTimeBetween = value; return this; } public ArrayList getLastSavedDateTimeIn() { return LastSavedDateTimeIn; } public BM_BatchProductionCustomFieldsQuery setLastSavedDateTimeIn(ArrayList value) { this.LastSavedDateTimeIn = value; return this; } public Integer getDisplayOrder() { return DisplayOrder; } public BM_BatchProductionCustomFieldsQuery setDisplayOrder(Integer value) { this.DisplayOrder = value; return this; } public Integer getDisplayOrderGreaterThanOrEqualTo() { return DisplayOrderGreaterThanOrEqualTo; } public BM_BatchProductionCustomFieldsQuery setDisplayOrderGreaterThanOrEqualTo(Integer value) { this.DisplayOrderGreaterThanOrEqualTo = value; return this; } public Integer getDisplayOrderGreaterThan() { return DisplayOrderGreaterThan; } public BM_BatchProductionCustomFieldsQuery setDisplayOrderGreaterThan(Integer value) { this.DisplayOrderGreaterThan = value; return this; } public Integer getDisplayOrderLessThan() { return DisplayOrderLessThan; } public BM_BatchProductionCustomFieldsQuery setDisplayOrderLessThan(Integer value) { this.DisplayOrderLessThan = value; return this; } public Integer getDisplayOrderLessThanOrEqualTo() { return DisplayOrderLessThanOrEqualTo; } public BM_BatchProductionCustomFieldsQuery setDisplayOrderLessThanOrEqualTo(Integer value) { this.DisplayOrderLessThanOrEqualTo = value; return this; } public Integer getDisplayOrderNotEqualTo() { return DisplayOrderNotEqualTo; } public BM_BatchProductionCustomFieldsQuery setDisplayOrderNotEqualTo(Integer value) { this.DisplayOrderNotEqualTo = value; return this; } public ArrayList getDisplayOrderBetween() { return DisplayOrderBetween; } public BM_BatchProductionCustomFieldsQuery setDisplayOrderBetween(ArrayList value) { this.DisplayOrderBetween = value; return this; } public ArrayList getDisplayOrderIn() { return DisplayOrderIn; } public BM_BatchProductionCustomFieldsQuery setDisplayOrderIn(ArrayList value) { this.DisplayOrderIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class BM_BatchProductionCustomValuesQuery extends QueryDb implements IReturn> { public String RecID = null; public String RecIDStartsWith = null; public String RecIDEndsWith = null; public String RecIDContains = null; public String RecIDLike = null; public ArrayList RecIDBetween = null; public ArrayList RecIDIn = null; public String BM_BatchProduction_RecID = null; public String BM_BatchProduction_RecIDStartsWith = null; public String BM_BatchProduction_RecIDEndsWith = null; public String BM_BatchProduction_RecIDContains = null; public String BM_BatchProduction_RecIDLike = null; public ArrayList BM_BatchProduction_RecIDBetween = null; public ArrayList BM_BatchProduction_RecIDIn = null; public String BM_BatchProductionCustomFields_RecID = null; public String BM_BatchProductionCustomFields_RecIDStartsWith = null; public String BM_BatchProductionCustomFields_RecIDEndsWith = null; public String BM_BatchProductionCustomFields_RecIDContains = null; public String BM_BatchProductionCustomFields_RecIDLike = null; public ArrayList BM_BatchProductionCustomFields_RecIDBetween = null; public ArrayList BM_BatchProductionCustomFields_RecIDIn = null; public String Contents = null; public String ContentsStartsWith = null; public String ContentsEndsWith = null; public String ContentsContains = null; public String ContentsLike = null; public ArrayList ContentsBetween = null; public ArrayList ContentsIn = null; public Date LastSavedDateTime = null; public Date LastSavedDateTimeGreaterThanOrEqualTo = null; public Date LastSavedDateTimeGreaterThan = null; public Date LastSavedDateTimeLessThan = null; public Date LastSavedDateTimeLessThanOrEqualTo = null; public Date LastSavedDateTimeNotEqualTo = null; public ArrayList LastSavedDateTimeBetween = null; public ArrayList LastSavedDateTimeIn = null; public String getRecID() { return RecID; } public BM_BatchProductionCustomValuesQuery setRecID(String value) { this.RecID = value; return this; } public String getRecIDStartsWith() { return RecIDStartsWith; } public BM_BatchProductionCustomValuesQuery setRecIDStartsWith(String value) { this.RecIDStartsWith = value; return this; } public String getRecIDEndsWith() { return RecIDEndsWith; } public BM_BatchProductionCustomValuesQuery setRecIDEndsWith(String value) { this.RecIDEndsWith = value; return this; } public String getRecIDContains() { return RecIDContains; } public BM_BatchProductionCustomValuesQuery setRecIDContains(String value) { this.RecIDContains = value; return this; } public String getRecIDLike() { return RecIDLike; } public BM_BatchProductionCustomValuesQuery setRecIDLike(String value) { this.RecIDLike = value; return this; } public ArrayList getRecIDBetween() { return RecIDBetween; } public BM_BatchProductionCustomValuesQuery setRecIDBetween(ArrayList value) { this.RecIDBetween = value; return this; } public ArrayList getRecIDIn() { return RecIDIn; } public BM_BatchProductionCustomValuesQuery setRecIDIn(ArrayList value) { this.RecIDIn = value; return this; } public String getBmBatchProductionRecID() { return BM_BatchProduction_RecID; } public BM_BatchProductionCustomValuesQuery setBmBatchProductionRecID(String value) { this.BM_BatchProduction_RecID = value; return this; } public String getBmBatchProductionRecIDStartsWith() { return BM_BatchProduction_RecIDStartsWith; } public BM_BatchProductionCustomValuesQuery setBmBatchProductionRecIDStartsWith(String value) { this.BM_BatchProduction_RecIDStartsWith = value; return this; } public String getBmBatchProductionRecIDEndsWith() { return BM_BatchProduction_RecIDEndsWith; } public BM_BatchProductionCustomValuesQuery setBmBatchProductionRecIDEndsWith(String value) { this.BM_BatchProduction_RecIDEndsWith = value; return this; } public String getBmBatchProductionRecIDContains() { return BM_BatchProduction_RecIDContains; } public BM_BatchProductionCustomValuesQuery setBmBatchProductionRecIDContains(String value) { this.BM_BatchProduction_RecIDContains = value; return this; } public String getBmBatchProductionRecIDLike() { return BM_BatchProduction_RecIDLike; } public BM_BatchProductionCustomValuesQuery setBmBatchProductionRecIDLike(String value) { this.BM_BatchProduction_RecIDLike = value; return this; } public ArrayList getBmBatchProductionRecIDBetween() { return BM_BatchProduction_RecIDBetween; } public BM_BatchProductionCustomValuesQuery setBmBatchProductionRecIDBetween(ArrayList value) { this.BM_BatchProduction_RecIDBetween = value; return this; } public ArrayList getBmBatchProductionRecIDIn() { return BM_BatchProduction_RecIDIn; } public BM_BatchProductionCustomValuesQuery setBmBatchProductionRecIDIn(ArrayList value) { this.BM_BatchProduction_RecIDIn = value; return this; } public String getBmBatchProductionCustomFieldsRecID() { return BM_BatchProductionCustomFields_RecID; } public BM_BatchProductionCustomValuesQuery setBmBatchProductionCustomFieldsRecID(String value) { this.BM_BatchProductionCustomFields_RecID = value; return this; } public String getBmBatchProductionCustomFieldsRecIDStartsWith() { return BM_BatchProductionCustomFields_RecIDStartsWith; } public BM_BatchProductionCustomValuesQuery setBmBatchProductionCustomFieldsRecIDStartsWith(String value) { this.BM_BatchProductionCustomFields_RecIDStartsWith = value; return this; } public String getBmBatchProductionCustomFieldsRecIDEndsWith() { return BM_BatchProductionCustomFields_RecIDEndsWith; } public BM_BatchProductionCustomValuesQuery setBmBatchProductionCustomFieldsRecIDEndsWith(String value) { this.BM_BatchProductionCustomFields_RecIDEndsWith = value; return this; } public String getBmBatchProductionCustomFieldsRecIDContains() { return BM_BatchProductionCustomFields_RecIDContains; } public BM_BatchProductionCustomValuesQuery setBmBatchProductionCustomFieldsRecIDContains(String value) { this.BM_BatchProductionCustomFields_RecIDContains = value; return this; } public String getBmBatchProductionCustomFieldsRecIDLike() { return BM_BatchProductionCustomFields_RecIDLike; } public BM_BatchProductionCustomValuesQuery setBmBatchProductionCustomFieldsRecIDLike(String value) { this.BM_BatchProductionCustomFields_RecIDLike = value; return this; } public ArrayList getBmBatchProductionCustomFieldsRecIDBetween() { return BM_BatchProductionCustomFields_RecIDBetween; } public BM_BatchProductionCustomValuesQuery setBmBatchProductionCustomFieldsRecIDBetween(ArrayList value) { this.BM_BatchProductionCustomFields_RecIDBetween = value; return this; } public ArrayList getBmBatchProductionCustomFieldsRecIDIn() { return BM_BatchProductionCustomFields_RecIDIn; } public BM_BatchProductionCustomValuesQuery setBmBatchProductionCustomFieldsRecIDIn(ArrayList value) { this.BM_BatchProductionCustomFields_RecIDIn = value; return this; } public String getContents() { return Contents; } public BM_BatchProductionCustomValuesQuery setContents(String value) { this.Contents = value; return this; } public String getContentsStartsWith() { return ContentsStartsWith; } public BM_BatchProductionCustomValuesQuery setContentsStartsWith(String value) { this.ContentsStartsWith = value; return this; } public String getContentsEndsWith() { return ContentsEndsWith; } public BM_BatchProductionCustomValuesQuery setContentsEndsWith(String value) { this.ContentsEndsWith = value; return this; } public String getContentsContains() { return ContentsContains; } public BM_BatchProductionCustomValuesQuery setContentsContains(String value) { this.ContentsContains = value; return this; } public String getContentsLike() { return ContentsLike; } public BM_BatchProductionCustomValuesQuery setContentsLike(String value) { this.ContentsLike = value; return this; } public ArrayList getContentsBetween() { return ContentsBetween; } public BM_BatchProductionCustomValuesQuery setContentsBetween(ArrayList value) { this.ContentsBetween = value; return this; } public ArrayList getContentsIn() { return ContentsIn; } public BM_BatchProductionCustomValuesQuery setContentsIn(ArrayList value) { this.ContentsIn = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public BM_BatchProductionCustomValuesQuery setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getLastSavedDateTimeGreaterThanOrEqualTo() { return LastSavedDateTimeGreaterThanOrEqualTo; } public BM_BatchProductionCustomValuesQuery setLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.LastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeGreaterThan() { return LastSavedDateTimeGreaterThan; } public BM_BatchProductionCustomValuesQuery setLastSavedDateTimeGreaterThan(Date value) { this.LastSavedDateTimeGreaterThan = value; return this; } public Date getLastSavedDateTimeLessThan() { return LastSavedDateTimeLessThan; } public BM_BatchProductionCustomValuesQuery setLastSavedDateTimeLessThan(Date value) { this.LastSavedDateTimeLessThan = value; return this; } public Date getLastSavedDateTimeLessThanOrEqualTo() { return LastSavedDateTimeLessThanOrEqualTo; } public BM_BatchProductionCustomValuesQuery setLastSavedDateTimeLessThanOrEqualTo(Date value) { this.LastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeNotEqualTo() { return LastSavedDateTimeNotEqualTo; } public BM_BatchProductionCustomValuesQuery setLastSavedDateTimeNotEqualTo(Date value) { this.LastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getLastSavedDateTimeBetween() { return LastSavedDateTimeBetween; } public BM_BatchProductionCustomValuesQuery setLastSavedDateTimeBetween(ArrayList value) { this.LastSavedDateTimeBetween = value; return this; } public ArrayList getLastSavedDateTimeIn() { return LastSavedDateTimeIn; } public BM_BatchProductionCustomValuesQuery setLastSavedDateTimeIn(ArrayList value) { this.LastSavedDateTimeIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class BM_BatchProductionDocumentsQuery extends QueryDb implements IReturn> { public String RecID = null; public String RecIDStartsWith = null; public String RecIDEndsWith = null; public String RecIDContains = null; public String RecIDLike = null; public ArrayList RecIDBetween = null; public ArrayList RecIDIn = null; public String BM_BatchProduction_RecID = null; public String BM_BatchProduction_RecIDStartsWith = null; public String BM_BatchProduction_RecIDEndsWith = null; public String BM_BatchProduction_RecIDContains = null; public String BM_BatchProduction_RecIDLike = null; public ArrayList BM_BatchProduction_RecIDBetween = null; public ArrayList BM_BatchProduction_RecIDIn = null; public String DocumentTypeID = null; public String DocumentTypeIDStartsWith = null; public String DocumentTypeIDEndsWith = null; public String DocumentTypeIDContains = null; public String DocumentTypeIDLike = null; public ArrayList DocumentTypeIDBetween = null; public ArrayList DocumentTypeIDIn = null; public Date LastSavedDateTime = null; public Date LastSavedDateTimeGreaterThanOrEqualTo = null; public Date LastSavedDateTimeGreaterThan = null; public Date LastSavedDateTimeLessThan = null; public Date LastSavedDateTimeLessThanOrEqualTo = null; public Date LastSavedDateTimeNotEqualTo = null; public ArrayList LastSavedDateTimeBetween = null; public ArrayList LastSavedDateTimeIn = null; public String LastSavedByStaffID = null; public String LastSavedByStaffIDStartsWith = null; public String LastSavedByStaffIDEndsWith = null; public String LastSavedByStaffIDContains = null; public String LastSavedByStaffIDLike = null; public ArrayList LastSavedByStaffIDBetween = null; public ArrayList LastSavedByStaffIDIn = null; public ArrayList FileBinary = null; public String Description = null; public String DescriptionStartsWith = null; public String DescriptionEndsWith = null; public String DescriptionContains = null; public String DescriptionLike = null; public ArrayList DescriptionBetween = null; public ArrayList DescriptionIn = null; public String PhysicalFileName = null; public String PhysicalFileNameStartsWith = null; public String PhysicalFileNameEndsWith = null; public String PhysicalFileNameContains = null; public String PhysicalFileNameLike = null; public ArrayList PhysicalFileNameBetween = null; public ArrayList PhysicalFileNameIn = null; public Integer ItemNo = null; public Integer ItemNoGreaterThanOrEqualTo = null; public Integer ItemNoGreaterThan = null; public Integer ItemNoLessThan = null; public Integer ItemNoLessThanOrEqualTo = null; public Integer ItemNoNotEqualTo = null; public ArrayList ItemNoBetween = null; public ArrayList ItemNoIn = null; public String getRecID() { return RecID; } public BM_BatchProductionDocumentsQuery setRecID(String value) { this.RecID = value; return this; } public String getRecIDStartsWith() { return RecIDStartsWith; } public BM_BatchProductionDocumentsQuery setRecIDStartsWith(String value) { this.RecIDStartsWith = value; return this; } public String getRecIDEndsWith() { return RecIDEndsWith; } public BM_BatchProductionDocumentsQuery setRecIDEndsWith(String value) { this.RecIDEndsWith = value; return this; } public String getRecIDContains() { return RecIDContains; } public BM_BatchProductionDocumentsQuery setRecIDContains(String value) { this.RecIDContains = value; return this; } public String getRecIDLike() { return RecIDLike; } public BM_BatchProductionDocumentsQuery setRecIDLike(String value) { this.RecIDLike = value; return this; } public ArrayList getRecIDBetween() { return RecIDBetween; } public BM_BatchProductionDocumentsQuery setRecIDBetween(ArrayList value) { this.RecIDBetween = value; return this; } public ArrayList getRecIDIn() { return RecIDIn; } public BM_BatchProductionDocumentsQuery setRecIDIn(ArrayList value) { this.RecIDIn = value; return this; } public String getBmBatchProductionRecID() { return BM_BatchProduction_RecID; } public BM_BatchProductionDocumentsQuery setBmBatchProductionRecID(String value) { this.BM_BatchProduction_RecID = value; return this; } public String getBmBatchProductionRecIDStartsWith() { return BM_BatchProduction_RecIDStartsWith; } public BM_BatchProductionDocumentsQuery setBmBatchProductionRecIDStartsWith(String value) { this.BM_BatchProduction_RecIDStartsWith = value; return this; } public String getBmBatchProductionRecIDEndsWith() { return BM_BatchProduction_RecIDEndsWith; } public BM_BatchProductionDocumentsQuery setBmBatchProductionRecIDEndsWith(String value) { this.BM_BatchProduction_RecIDEndsWith = value; return this; } public String getBmBatchProductionRecIDContains() { return BM_BatchProduction_RecIDContains; } public BM_BatchProductionDocumentsQuery setBmBatchProductionRecIDContains(String value) { this.BM_BatchProduction_RecIDContains = value; return this; } public String getBmBatchProductionRecIDLike() { return BM_BatchProduction_RecIDLike; } public BM_BatchProductionDocumentsQuery setBmBatchProductionRecIDLike(String value) { this.BM_BatchProduction_RecIDLike = value; return this; } public ArrayList getBmBatchProductionRecIDBetween() { return BM_BatchProduction_RecIDBetween; } public BM_BatchProductionDocumentsQuery setBmBatchProductionRecIDBetween(ArrayList value) { this.BM_BatchProduction_RecIDBetween = value; return this; } public ArrayList getBmBatchProductionRecIDIn() { return BM_BatchProduction_RecIDIn; } public BM_BatchProductionDocumentsQuery setBmBatchProductionRecIDIn(ArrayList value) { this.BM_BatchProduction_RecIDIn = value; return this; } public String getDocumentTypeID() { return DocumentTypeID; } public BM_BatchProductionDocumentsQuery setDocumentTypeID(String value) { this.DocumentTypeID = value; return this; } public String getDocumentTypeIDStartsWith() { return DocumentTypeIDStartsWith; } public BM_BatchProductionDocumentsQuery setDocumentTypeIDStartsWith(String value) { this.DocumentTypeIDStartsWith = value; return this; } public String getDocumentTypeIDEndsWith() { return DocumentTypeIDEndsWith; } public BM_BatchProductionDocumentsQuery setDocumentTypeIDEndsWith(String value) { this.DocumentTypeIDEndsWith = value; return this; } public String getDocumentTypeIDContains() { return DocumentTypeIDContains; } public BM_BatchProductionDocumentsQuery setDocumentTypeIDContains(String value) { this.DocumentTypeIDContains = value; return this; } public String getDocumentTypeIDLike() { return DocumentTypeIDLike; } public BM_BatchProductionDocumentsQuery setDocumentTypeIDLike(String value) { this.DocumentTypeIDLike = value; return this; } public ArrayList getDocumentTypeIDBetween() { return DocumentTypeIDBetween; } public BM_BatchProductionDocumentsQuery setDocumentTypeIDBetween(ArrayList value) { this.DocumentTypeIDBetween = value; return this; } public ArrayList getDocumentTypeIDIn() { return DocumentTypeIDIn; } public BM_BatchProductionDocumentsQuery setDocumentTypeIDIn(ArrayList value) { this.DocumentTypeIDIn = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public BM_BatchProductionDocumentsQuery setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getLastSavedDateTimeGreaterThanOrEqualTo() { return LastSavedDateTimeGreaterThanOrEqualTo; } public BM_BatchProductionDocumentsQuery setLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.LastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeGreaterThan() { return LastSavedDateTimeGreaterThan; } public BM_BatchProductionDocumentsQuery setLastSavedDateTimeGreaterThan(Date value) { this.LastSavedDateTimeGreaterThan = value; return this; } public Date getLastSavedDateTimeLessThan() { return LastSavedDateTimeLessThan; } public BM_BatchProductionDocumentsQuery setLastSavedDateTimeLessThan(Date value) { this.LastSavedDateTimeLessThan = value; return this; } public Date getLastSavedDateTimeLessThanOrEqualTo() { return LastSavedDateTimeLessThanOrEqualTo; } public BM_BatchProductionDocumentsQuery setLastSavedDateTimeLessThanOrEqualTo(Date value) { this.LastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeNotEqualTo() { return LastSavedDateTimeNotEqualTo; } public BM_BatchProductionDocumentsQuery setLastSavedDateTimeNotEqualTo(Date value) { this.LastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getLastSavedDateTimeBetween() { return LastSavedDateTimeBetween; } public BM_BatchProductionDocumentsQuery setLastSavedDateTimeBetween(ArrayList value) { this.LastSavedDateTimeBetween = value; return this; } public ArrayList getLastSavedDateTimeIn() { return LastSavedDateTimeIn; } public BM_BatchProductionDocumentsQuery setLastSavedDateTimeIn(ArrayList value) { this.LastSavedDateTimeIn = value; return this; } public String getLastSavedByStaffID() { return LastSavedByStaffID; } public BM_BatchProductionDocumentsQuery setLastSavedByStaffID(String value) { this.LastSavedByStaffID = value; return this; } public String getLastSavedByStaffIDStartsWith() { return LastSavedByStaffIDStartsWith; } public BM_BatchProductionDocumentsQuery setLastSavedByStaffIDStartsWith(String value) { this.LastSavedByStaffIDStartsWith = value; return this; } public String getLastSavedByStaffIDEndsWith() { return LastSavedByStaffIDEndsWith; } public BM_BatchProductionDocumentsQuery setLastSavedByStaffIDEndsWith(String value) { this.LastSavedByStaffIDEndsWith = value; return this; } public String getLastSavedByStaffIDContains() { return LastSavedByStaffIDContains; } public BM_BatchProductionDocumentsQuery setLastSavedByStaffIDContains(String value) { this.LastSavedByStaffIDContains = value; return this; } public String getLastSavedByStaffIDLike() { return LastSavedByStaffIDLike; } public BM_BatchProductionDocumentsQuery setLastSavedByStaffIDLike(String value) { this.LastSavedByStaffIDLike = value; return this; } public ArrayList getLastSavedByStaffIDBetween() { return LastSavedByStaffIDBetween; } public BM_BatchProductionDocumentsQuery setLastSavedByStaffIDBetween(ArrayList value) { this.LastSavedByStaffIDBetween = value; return this; } public ArrayList getLastSavedByStaffIDIn() { return LastSavedByStaffIDIn; } public BM_BatchProductionDocumentsQuery setLastSavedByStaffIDIn(ArrayList value) { this.LastSavedByStaffIDIn = value; return this; } public ArrayList getFileBinary() { return FileBinary; } public BM_BatchProductionDocumentsQuery setFileBinary(ArrayList value) { this.FileBinary = value; return this; } public String getDescription() { return Description; } public BM_BatchProductionDocumentsQuery setDescription(String value) { this.Description = value; return this; } public String getDescriptionStartsWith() { return DescriptionStartsWith; } public BM_BatchProductionDocumentsQuery setDescriptionStartsWith(String value) { this.DescriptionStartsWith = value; return this; } public String getDescriptionEndsWith() { return DescriptionEndsWith; } public BM_BatchProductionDocumentsQuery setDescriptionEndsWith(String value) { this.DescriptionEndsWith = value; return this; } public String getDescriptionContains() { return DescriptionContains; } public BM_BatchProductionDocumentsQuery setDescriptionContains(String value) { this.DescriptionContains = value; return this; } public String getDescriptionLike() { return DescriptionLike; } public BM_BatchProductionDocumentsQuery setDescriptionLike(String value) { this.DescriptionLike = value; return this; } public ArrayList getDescriptionBetween() { return DescriptionBetween; } public BM_BatchProductionDocumentsQuery setDescriptionBetween(ArrayList value) { this.DescriptionBetween = value; return this; } public ArrayList getDescriptionIn() { return DescriptionIn; } public BM_BatchProductionDocumentsQuery setDescriptionIn(ArrayList value) { this.DescriptionIn = value; return this; } public String getPhysicalFileName() { return PhysicalFileName; } public BM_BatchProductionDocumentsQuery setPhysicalFileName(String value) { this.PhysicalFileName = value; return this; } public String getPhysicalFileNameStartsWith() { return PhysicalFileNameStartsWith; } public BM_BatchProductionDocumentsQuery setPhysicalFileNameStartsWith(String value) { this.PhysicalFileNameStartsWith = value; return this; } public String getPhysicalFileNameEndsWith() { return PhysicalFileNameEndsWith; } public BM_BatchProductionDocumentsQuery setPhysicalFileNameEndsWith(String value) { this.PhysicalFileNameEndsWith = value; return this; } public String getPhysicalFileNameContains() { return PhysicalFileNameContains; } public BM_BatchProductionDocumentsQuery setPhysicalFileNameContains(String value) { this.PhysicalFileNameContains = value; return this; } public String getPhysicalFileNameLike() { return PhysicalFileNameLike; } public BM_BatchProductionDocumentsQuery setPhysicalFileNameLike(String value) { this.PhysicalFileNameLike = value; return this; } public ArrayList getPhysicalFileNameBetween() { return PhysicalFileNameBetween; } public BM_BatchProductionDocumentsQuery setPhysicalFileNameBetween(ArrayList value) { this.PhysicalFileNameBetween = value; return this; } public ArrayList getPhysicalFileNameIn() { return PhysicalFileNameIn; } public BM_BatchProductionDocumentsQuery setPhysicalFileNameIn(ArrayList value) { this.PhysicalFileNameIn = value; return this; } public Integer getItemNo() { return ItemNo; } public BM_BatchProductionDocumentsQuery setItemNo(Integer value) { this.ItemNo = value; return this; } public Integer getItemNoGreaterThanOrEqualTo() { return ItemNoGreaterThanOrEqualTo; } public BM_BatchProductionDocumentsQuery setItemNoGreaterThanOrEqualTo(Integer value) { this.ItemNoGreaterThanOrEqualTo = value; return this; } public Integer getItemNoGreaterThan() { return ItemNoGreaterThan; } public BM_BatchProductionDocumentsQuery setItemNoGreaterThan(Integer value) { this.ItemNoGreaterThan = value; return this; } public Integer getItemNoLessThan() { return ItemNoLessThan; } public BM_BatchProductionDocumentsQuery setItemNoLessThan(Integer value) { this.ItemNoLessThan = value; return this; } public Integer getItemNoLessThanOrEqualTo() { return ItemNoLessThanOrEqualTo; } public BM_BatchProductionDocumentsQuery setItemNoLessThanOrEqualTo(Integer value) { this.ItemNoLessThanOrEqualTo = value; return this; } public Integer getItemNoNotEqualTo() { return ItemNoNotEqualTo; } public BM_BatchProductionDocumentsQuery setItemNoNotEqualTo(Integer value) { this.ItemNoNotEqualTo = value; return this; } public ArrayList getItemNoBetween() { return ItemNoBetween; } public BM_BatchProductionDocumentsQuery setItemNoBetween(ArrayList value) { this.ItemNoBetween = value; return this; } public ArrayList getItemNoIn() { return ItemNoIn; } public BM_BatchProductionDocumentsQuery setItemNoIn(ArrayList value) { this.ItemNoIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class BM_BatchProductionNotesQuery extends QueryDb implements IReturn> { public String RecID = null; public String RecIDStartsWith = null; public String RecIDEndsWith = null; public String RecIDContains = null; public String RecIDLike = null; public ArrayList RecIDBetween = null; public ArrayList RecIDIn = null; public String BM_BatchProduction_RecID = null; public String BM_BatchProduction_RecIDStartsWith = null; public String BM_BatchProduction_RecIDEndsWith = null; public String BM_BatchProduction_RecIDContains = null; public String BM_BatchProduction_RecIDLike = null; public ArrayList BM_BatchProduction_RecIDBetween = null; public ArrayList BM_BatchProduction_RecIDIn = null; public String NoteTypeID = null; public String NoteTypeIDStartsWith = null; public String NoteTypeIDEndsWith = null; public String NoteTypeIDContains = null; public String NoteTypeIDLike = null; public ArrayList NoteTypeIDBetween = null; public ArrayList NoteTypeIDIn = null; public Date LastSavedDateTime = null; public Date LastSavedDateTimeGreaterThanOrEqualTo = null; public Date LastSavedDateTimeGreaterThan = null; public Date LastSavedDateTimeLessThan = null; public Date LastSavedDateTimeLessThanOrEqualTo = null; public Date LastSavedDateTimeNotEqualTo = null; public ArrayList LastSavedDateTimeBetween = null; public ArrayList LastSavedDateTimeIn = null; public String LastSavedByStaffID = null; public String LastSavedByStaffIDStartsWith = null; public String LastSavedByStaffIDEndsWith = null; public String LastSavedByStaffIDContains = null; public String LastSavedByStaffIDLike = null; public ArrayList LastSavedByStaffIDBetween = null; public ArrayList LastSavedByStaffIDIn = null; public String NoteText = null; public String NoteTextStartsWith = null; public String NoteTextEndsWith = null; public String NoteTextContains = null; public String NoteTextLike = null; public ArrayList NoteTextBetween = null; public ArrayList NoteTextIn = null; public Integer ItemNo = null; public Integer ItemNoGreaterThanOrEqualTo = null; public Integer ItemNoGreaterThan = null; public Integer ItemNoLessThan = null; public Integer ItemNoLessThanOrEqualTo = null; public Integer ItemNoNotEqualTo = null; public ArrayList ItemNoBetween = null; public ArrayList ItemNoIn = null; public String getRecID() { return RecID; } public BM_BatchProductionNotesQuery setRecID(String value) { this.RecID = value; return this; } public String getRecIDStartsWith() { return RecIDStartsWith; } public BM_BatchProductionNotesQuery setRecIDStartsWith(String value) { this.RecIDStartsWith = value; return this; } public String getRecIDEndsWith() { return RecIDEndsWith; } public BM_BatchProductionNotesQuery setRecIDEndsWith(String value) { this.RecIDEndsWith = value; return this; } public String getRecIDContains() { return RecIDContains; } public BM_BatchProductionNotesQuery setRecIDContains(String value) { this.RecIDContains = value; return this; } public String getRecIDLike() { return RecIDLike; } public BM_BatchProductionNotesQuery setRecIDLike(String value) { this.RecIDLike = value; return this; } public ArrayList getRecIDBetween() { return RecIDBetween; } public BM_BatchProductionNotesQuery setRecIDBetween(ArrayList value) { this.RecIDBetween = value; return this; } public ArrayList getRecIDIn() { return RecIDIn; } public BM_BatchProductionNotesQuery setRecIDIn(ArrayList value) { this.RecIDIn = value; return this; } public String getBmBatchProductionRecID() { return BM_BatchProduction_RecID; } public BM_BatchProductionNotesQuery setBmBatchProductionRecID(String value) { this.BM_BatchProduction_RecID = value; return this; } public String getBmBatchProductionRecIDStartsWith() { return BM_BatchProduction_RecIDStartsWith; } public BM_BatchProductionNotesQuery setBmBatchProductionRecIDStartsWith(String value) { this.BM_BatchProduction_RecIDStartsWith = value; return this; } public String getBmBatchProductionRecIDEndsWith() { return BM_BatchProduction_RecIDEndsWith; } public BM_BatchProductionNotesQuery setBmBatchProductionRecIDEndsWith(String value) { this.BM_BatchProduction_RecIDEndsWith = value; return this; } public String getBmBatchProductionRecIDContains() { return BM_BatchProduction_RecIDContains; } public BM_BatchProductionNotesQuery setBmBatchProductionRecIDContains(String value) { this.BM_BatchProduction_RecIDContains = value; return this; } public String getBmBatchProductionRecIDLike() { return BM_BatchProduction_RecIDLike; } public BM_BatchProductionNotesQuery setBmBatchProductionRecIDLike(String value) { this.BM_BatchProduction_RecIDLike = value; return this; } public ArrayList getBmBatchProductionRecIDBetween() { return BM_BatchProduction_RecIDBetween; } public BM_BatchProductionNotesQuery setBmBatchProductionRecIDBetween(ArrayList value) { this.BM_BatchProduction_RecIDBetween = value; return this; } public ArrayList getBmBatchProductionRecIDIn() { return BM_BatchProduction_RecIDIn; } public BM_BatchProductionNotesQuery setBmBatchProductionRecIDIn(ArrayList value) { this.BM_BatchProduction_RecIDIn = value; return this; } public String getNoteTypeID() { return NoteTypeID; } public BM_BatchProductionNotesQuery setNoteTypeID(String value) { this.NoteTypeID = value; return this; } public String getNoteTypeIDStartsWith() { return NoteTypeIDStartsWith; } public BM_BatchProductionNotesQuery setNoteTypeIDStartsWith(String value) { this.NoteTypeIDStartsWith = value; return this; } public String getNoteTypeIDEndsWith() { return NoteTypeIDEndsWith; } public BM_BatchProductionNotesQuery setNoteTypeIDEndsWith(String value) { this.NoteTypeIDEndsWith = value; return this; } public String getNoteTypeIDContains() { return NoteTypeIDContains; } public BM_BatchProductionNotesQuery setNoteTypeIDContains(String value) { this.NoteTypeIDContains = value; return this; } public String getNoteTypeIDLike() { return NoteTypeIDLike; } public BM_BatchProductionNotesQuery setNoteTypeIDLike(String value) { this.NoteTypeIDLike = value; return this; } public ArrayList getNoteTypeIDBetween() { return NoteTypeIDBetween; } public BM_BatchProductionNotesQuery setNoteTypeIDBetween(ArrayList value) { this.NoteTypeIDBetween = value; return this; } public ArrayList getNoteTypeIDIn() { return NoteTypeIDIn; } public BM_BatchProductionNotesQuery setNoteTypeIDIn(ArrayList value) { this.NoteTypeIDIn = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public BM_BatchProductionNotesQuery setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getLastSavedDateTimeGreaterThanOrEqualTo() { return LastSavedDateTimeGreaterThanOrEqualTo; } public BM_BatchProductionNotesQuery setLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.LastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeGreaterThan() { return LastSavedDateTimeGreaterThan; } public BM_BatchProductionNotesQuery setLastSavedDateTimeGreaterThan(Date value) { this.LastSavedDateTimeGreaterThan = value; return this; } public Date getLastSavedDateTimeLessThan() { return LastSavedDateTimeLessThan; } public BM_BatchProductionNotesQuery setLastSavedDateTimeLessThan(Date value) { this.LastSavedDateTimeLessThan = value; return this; } public Date getLastSavedDateTimeLessThanOrEqualTo() { return LastSavedDateTimeLessThanOrEqualTo; } public BM_BatchProductionNotesQuery setLastSavedDateTimeLessThanOrEqualTo(Date value) { this.LastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeNotEqualTo() { return LastSavedDateTimeNotEqualTo; } public BM_BatchProductionNotesQuery setLastSavedDateTimeNotEqualTo(Date value) { this.LastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getLastSavedDateTimeBetween() { return LastSavedDateTimeBetween; } public BM_BatchProductionNotesQuery setLastSavedDateTimeBetween(ArrayList value) { this.LastSavedDateTimeBetween = value; return this; } public ArrayList getLastSavedDateTimeIn() { return LastSavedDateTimeIn; } public BM_BatchProductionNotesQuery setLastSavedDateTimeIn(ArrayList value) { this.LastSavedDateTimeIn = value; return this; } public String getLastSavedByStaffID() { return LastSavedByStaffID; } public BM_BatchProductionNotesQuery setLastSavedByStaffID(String value) { this.LastSavedByStaffID = value; return this; } public String getLastSavedByStaffIDStartsWith() { return LastSavedByStaffIDStartsWith; } public BM_BatchProductionNotesQuery setLastSavedByStaffIDStartsWith(String value) { this.LastSavedByStaffIDStartsWith = value; return this; } public String getLastSavedByStaffIDEndsWith() { return LastSavedByStaffIDEndsWith; } public BM_BatchProductionNotesQuery setLastSavedByStaffIDEndsWith(String value) { this.LastSavedByStaffIDEndsWith = value; return this; } public String getLastSavedByStaffIDContains() { return LastSavedByStaffIDContains; } public BM_BatchProductionNotesQuery setLastSavedByStaffIDContains(String value) { this.LastSavedByStaffIDContains = value; return this; } public String getLastSavedByStaffIDLike() { return LastSavedByStaffIDLike; } public BM_BatchProductionNotesQuery setLastSavedByStaffIDLike(String value) { this.LastSavedByStaffIDLike = value; return this; } public ArrayList getLastSavedByStaffIDBetween() { return LastSavedByStaffIDBetween; } public BM_BatchProductionNotesQuery setLastSavedByStaffIDBetween(ArrayList value) { this.LastSavedByStaffIDBetween = value; return this; } public ArrayList getLastSavedByStaffIDIn() { return LastSavedByStaffIDIn; } public BM_BatchProductionNotesQuery setLastSavedByStaffIDIn(ArrayList value) { this.LastSavedByStaffIDIn = value; return this; } public String getNoteText() { return NoteText; } public BM_BatchProductionNotesQuery setNoteText(String value) { this.NoteText = value; return this; } public String getNoteTextStartsWith() { return NoteTextStartsWith; } public BM_BatchProductionNotesQuery setNoteTextStartsWith(String value) { this.NoteTextStartsWith = value; return this; } public String getNoteTextEndsWith() { return NoteTextEndsWith; } public BM_BatchProductionNotesQuery setNoteTextEndsWith(String value) { this.NoteTextEndsWith = value; return this; } public String getNoteTextContains() { return NoteTextContains; } public BM_BatchProductionNotesQuery setNoteTextContains(String value) { this.NoteTextContains = value; return this; } public String getNoteTextLike() { return NoteTextLike; } public BM_BatchProductionNotesQuery setNoteTextLike(String value) { this.NoteTextLike = value; return this; } public ArrayList getNoteTextBetween() { return NoteTextBetween; } public BM_BatchProductionNotesQuery setNoteTextBetween(ArrayList value) { this.NoteTextBetween = value; return this; } public ArrayList getNoteTextIn() { return NoteTextIn; } public BM_BatchProductionNotesQuery setNoteTextIn(ArrayList value) { this.NoteTextIn = value; return this; } public Integer getItemNo() { return ItemNo; } public BM_BatchProductionNotesQuery setItemNo(Integer value) { this.ItemNo = value; return this; } public Integer getItemNoGreaterThanOrEqualTo() { return ItemNoGreaterThanOrEqualTo; } public BM_BatchProductionNotesQuery setItemNoGreaterThanOrEqualTo(Integer value) { this.ItemNoGreaterThanOrEqualTo = value; return this; } public Integer getItemNoGreaterThan() { return ItemNoGreaterThan; } public BM_BatchProductionNotesQuery setItemNoGreaterThan(Integer value) { this.ItemNoGreaterThan = value; return this; } public Integer getItemNoLessThan() { return ItemNoLessThan; } public BM_BatchProductionNotesQuery setItemNoLessThan(Integer value) { this.ItemNoLessThan = value; return this; } public Integer getItemNoLessThanOrEqualTo() { return ItemNoLessThanOrEqualTo; } public BM_BatchProductionNotesQuery setItemNoLessThanOrEqualTo(Integer value) { this.ItemNoLessThanOrEqualTo = value; return this; } public Integer getItemNoNotEqualTo() { return ItemNoNotEqualTo; } public BM_BatchProductionNotesQuery setItemNoNotEqualTo(Integer value) { this.ItemNoNotEqualTo = value; return this; } public ArrayList getItemNoBetween() { return ItemNoBetween; } public BM_BatchProductionNotesQuery setItemNoBetween(ArrayList value) { this.ItemNoBetween = value; return this; } public ArrayList getItemNoIn() { return ItemNoIn; } public BM_BatchProductionNotesQuery setItemNoIn(ArrayList value) { this.ItemNoIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class BM_BatchProductionWorkOrderQuery extends QueryDb implements IReturn> { public String RecID = null; public String RecIDStartsWith = null; public String RecIDEndsWith = null; public String RecIDContains = null; public String RecIDLike = null; public ArrayList RecIDBetween = null; public ArrayList RecIDIn = null; public BigDecimal ProductionQuantity = null; public BigDecimal ProductionQuantityGreaterThanOrEqualTo = null; public BigDecimal ProductionQuantityGreaterThan = null; public BigDecimal ProductionQuantityLessThan = null; public BigDecimal ProductionQuantityLessThanOrEqualTo = null; public BigDecimal ProductionQuantityNotEqualTo = null; public ArrayList ProductionQuantityBetween = null; public ArrayList ProductionQuantityIn = null; public Date PlannedStartDate = null; public Date PlannedStartDateGreaterThanOrEqualTo = null; public Date PlannedStartDateGreaterThan = null; public Date PlannedStartDateLessThan = null; public Date PlannedStartDateLessThanOrEqualTo = null; public Date PlannedStartDateNotEqualTo = null; public ArrayList PlannedStartDateBetween = null; public ArrayList PlannedStartDateIn = null; public Integer ItemNo = null; public Integer ItemNoGreaterThanOrEqualTo = null; public Integer ItemNoGreaterThan = null; public Integer ItemNoLessThan = null; public Integer ItemNoLessThanOrEqualTo = null; public Integer ItemNoNotEqualTo = null; public ArrayList ItemNoBetween = null; public ArrayList ItemNoIn = null; public String BM_BatchProduction_RecID = null; public String BM_BatchProduction_RecIDStartsWith = null; public String BM_BatchProduction_RecIDEndsWith = null; public String BM_BatchProduction_RecIDContains = null; public String BM_BatchProduction_RecIDLike = null; public ArrayList BM_BatchProduction_RecIDBetween = null; public ArrayList BM_BatchProduction_RecIDIn = null; public String BM_WorkOrder_RecID = null; public String BM_WorkOrder_RecIDStartsWith = null; public String BM_WorkOrder_RecIDEndsWith = null; public String BM_WorkOrder_RecIDContains = null; public String BM_WorkOrder_RecIDLike = null; public ArrayList BM_WorkOrder_RecIDBetween = null; public ArrayList BM_WorkOrder_RecIDIn = null; public ArrayList RowHash = null; public String getRecID() { return RecID; } public BM_BatchProductionWorkOrderQuery setRecID(String value) { this.RecID = value; return this; } public String getRecIDStartsWith() { return RecIDStartsWith; } public BM_BatchProductionWorkOrderQuery setRecIDStartsWith(String value) { this.RecIDStartsWith = value; return this; } public String getRecIDEndsWith() { return RecIDEndsWith; } public BM_BatchProductionWorkOrderQuery setRecIDEndsWith(String value) { this.RecIDEndsWith = value; return this; } public String getRecIDContains() { return RecIDContains; } public BM_BatchProductionWorkOrderQuery setRecIDContains(String value) { this.RecIDContains = value; return this; } public String getRecIDLike() { return RecIDLike; } public BM_BatchProductionWorkOrderQuery setRecIDLike(String value) { this.RecIDLike = value; return this; } public ArrayList getRecIDBetween() { return RecIDBetween; } public BM_BatchProductionWorkOrderQuery setRecIDBetween(ArrayList value) { this.RecIDBetween = value; return this; } public ArrayList getRecIDIn() { return RecIDIn; } public BM_BatchProductionWorkOrderQuery setRecIDIn(ArrayList value) { this.RecIDIn = value; return this; } public BigDecimal getProductionQuantity() { return ProductionQuantity; } public BM_BatchProductionWorkOrderQuery setProductionQuantity(BigDecimal value) { this.ProductionQuantity = value; return this; } public BigDecimal getProductionQuantityGreaterThanOrEqualTo() { return ProductionQuantityGreaterThanOrEqualTo; } public BM_BatchProductionWorkOrderQuery setProductionQuantityGreaterThanOrEqualTo(BigDecimal value) { this.ProductionQuantityGreaterThanOrEqualTo = value; return this; } public BigDecimal getProductionQuantityGreaterThan() { return ProductionQuantityGreaterThan; } public BM_BatchProductionWorkOrderQuery setProductionQuantityGreaterThan(BigDecimal value) { this.ProductionQuantityGreaterThan = value; return this; } public BigDecimal getProductionQuantityLessThan() { return ProductionQuantityLessThan; } public BM_BatchProductionWorkOrderQuery setProductionQuantityLessThan(BigDecimal value) { this.ProductionQuantityLessThan = value; return this; } public BigDecimal getProductionQuantityLessThanOrEqualTo() { return ProductionQuantityLessThanOrEqualTo; } public BM_BatchProductionWorkOrderQuery setProductionQuantityLessThanOrEqualTo(BigDecimal value) { this.ProductionQuantityLessThanOrEqualTo = value; return this; } public BigDecimal getProductionQuantityNotEqualTo() { return ProductionQuantityNotEqualTo; } public BM_BatchProductionWorkOrderQuery setProductionQuantityNotEqualTo(BigDecimal value) { this.ProductionQuantityNotEqualTo = value; return this; } public ArrayList getProductionQuantityBetween() { return ProductionQuantityBetween; } public BM_BatchProductionWorkOrderQuery setProductionQuantityBetween(ArrayList value) { this.ProductionQuantityBetween = value; return this; } public ArrayList getProductionQuantityIn() { return ProductionQuantityIn; } public BM_BatchProductionWorkOrderQuery setProductionQuantityIn(ArrayList value) { this.ProductionQuantityIn = value; return this; } public Date getPlannedStartDate() { return PlannedStartDate; } public BM_BatchProductionWorkOrderQuery setPlannedStartDate(Date value) { this.PlannedStartDate = value; return this; } public Date getPlannedStartDateGreaterThanOrEqualTo() { return PlannedStartDateGreaterThanOrEqualTo; } public BM_BatchProductionWorkOrderQuery setPlannedStartDateGreaterThanOrEqualTo(Date value) { this.PlannedStartDateGreaterThanOrEqualTo = value; return this; } public Date getPlannedStartDateGreaterThan() { return PlannedStartDateGreaterThan; } public BM_BatchProductionWorkOrderQuery setPlannedStartDateGreaterThan(Date value) { this.PlannedStartDateGreaterThan = value; return this; } public Date getPlannedStartDateLessThan() { return PlannedStartDateLessThan; } public BM_BatchProductionWorkOrderQuery setPlannedStartDateLessThan(Date value) { this.PlannedStartDateLessThan = value; return this; } public Date getPlannedStartDateLessThanOrEqualTo() { return PlannedStartDateLessThanOrEqualTo; } public BM_BatchProductionWorkOrderQuery setPlannedStartDateLessThanOrEqualTo(Date value) { this.PlannedStartDateLessThanOrEqualTo = value; return this; } public Date getPlannedStartDateNotEqualTo() { return PlannedStartDateNotEqualTo; } public BM_BatchProductionWorkOrderQuery setPlannedStartDateNotEqualTo(Date value) { this.PlannedStartDateNotEqualTo = value; return this; } public ArrayList getPlannedStartDateBetween() { return PlannedStartDateBetween; } public BM_BatchProductionWorkOrderQuery setPlannedStartDateBetween(ArrayList value) { this.PlannedStartDateBetween = value; return this; } public ArrayList getPlannedStartDateIn() { return PlannedStartDateIn; } public BM_BatchProductionWorkOrderQuery setPlannedStartDateIn(ArrayList value) { this.PlannedStartDateIn = value; return this; } public Integer getItemNo() { return ItemNo; } public BM_BatchProductionWorkOrderQuery setItemNo(Integer value) { this.ItemNo = value; return this; } public Integer getItemNoGreaterThanOrEqualTo() { return ItemNoGreaterThanOrEqualTo; } public BM_BatchProductionWorkOrderQuery setItemNoGreaterThanOrEqualTo(Integer value) { this.ItemNoGreaterThanOrEqualTo = value; return this; } public Integer getItemNoGreaterThan() { return ItemNoGreaterThan; } public BM_BatchProductionWorkOrderQuery setItemNoGreaterThan(Integer value) { this.ItemNoGreaterThan = value; return this; } public Integer getItemNoLessThan() { return ItemNoLessThan; } public BM_BatchProductionWorkOrderQuery setItemNoLessThan(Integer value) { this.ItemNoLessThan = value; return this; } public Integer getItemNoLessThanOrEqualTo() { return ItemNoLessThanOrEqualTo; } public BM_BatchProductionWorkOrderQuery setItemNoLessThanOrEqualTo(Integer value) { this.ItemNoLessThanOrEqualTo = value; return this; } public Integer getItemNoNotEqualTo() { return ItemNoNotEqualTo; } public BM_BatchProductionWorkOrderQuery setItemNoNotEqualTo(Integer value) { this.ItemNoNotEqualTo = value; return this; } public ArrayList getItemNoBetween() { return ItemNoBetween; } public BM_BatchProductionWorkOrderQuery setItemNoBetween(ArrayList value) { this.ItemNoBetween = value; return this; } public ArrayList getItemNoIn() { return ItemNoIn; } public BM_BatchProductionWorkOrderQuery setItemNoIn(ArrayList value) { this.ItemNoIn = value; return this; } public String getBmBatchProductionRecID() { return BM_BatchProduction_RecID; } public BM_BatchProductionWorkOrderQuery setBmBatchProductionRecID(String value) { this.BM_BatchProduction_RecID = value; return this; } public String getBmBatchProductionRecIDStartsWith() { return BM_BatchProduction_RecIDStartsWith; } public BM_BatchProductionWorkOrderQuery setBmBatchProductionRecIDStartsWith(String value) { this.BM_BatchProduction_RecIDStartsWith = value; return this; } public String getBmBatchProductionRecIDEndsWith() { return BM_BatchProduction_RecIDEndsWith; } public BM_BatchProductionWorkOrderQuery setBmBatchProductionRecIDEndsWith(String value) { this.BM_BatchProduction_RecIDEndsWith = value; return this; } public String getBmBatchProductionRecIDContains() { return BM_BatchProduction_RecIDContains; } public BM_BatchProductionWorkOrderQuery setBmBatchProductionRecIDContains(String value) { this.BM_BatchProduction_RecIDContains = value; return this; } public String getBmBatchProductionRecIDLike() { return BM_BatchProduction_RecIDLike; } public BM_BatchProductionWorkOrderQuery setBmBatchProductionRecIDLike(String value) { this.BM_BatchProduction_RecIDLike = value; return this; } public ArrayList getBmBatchProductionRecIDBetween() { return BM_BatchProduction_RecIDBetween; } public BM_BatchProductionWorkOrderQuery setBmBatchProductionRecIDBetween(ArrayList value) { this.BM_BatchProduction_RecIDBetween = value; return this; } public ArrayList getBmBatchProductionRecIDIn() { return BM_BatchProduction_RecIDIn; } public BM_BatchProductionWorkOrderQuery setBmBatchProductionRecIDIn(ArrayList value) { this.BM_BatchProduction_RecIDIn = value; return this; } public String getBmWorkOrderRecID() { return BM_WorkOrder_RecID; } public BM_BatchProductionWorkOrderQuery setBmWorkOrderRecID(String value) { this.BM_WorkOrder_RecID = value; return this; } public String getBmWorkOrderRecIDStartsWith() { return BM_WorkOrder_RecIDStartsWith; } public BM_BatchProductionWorkOrderQuery setBmWorkOrderRecIDStartsWith(String value) { this.BM_WorkOrder_RecIDStartsWith = value; return this; } public String getBmWorkOrderRecIDEndsWith() { return BM_WorkOrder_RecIDEndsWith; } public BM_BatchProductionWorkOrderQuery setBmWorkOrderRecIDEndsWith(String value) { this.BM_WorkOrder_RecIDEndsWith = value; return this; } public String getBmWorkOrderRecIDContains() { return BM_WorkOrder_RecIDContains; } public BM_BatchProductionWorkOrderQuery setBmWorkOrderRecIDContains(String value) { this.BM_WorkOrder_RecIDContains = value; return this; } public String getBmWorkOrderRecIDLike() { return BM_WorkOrder_RecIDLike; } public BM_BatchProductionWorkOrderQuery setBmWorkOrderRecIDLike(String value) { this.BM_WorkOrder_RecIDLike = value; return this; } public ArrayList getBmWorkOrderRecIDBetween() { return BM_WorkOrder_RecIDBetween; } public BM_BatchProductionWorkOrderQuery setBmWorkOrderRecIDBetween(ArrayList value) { this.BM_WorkOrder_RecIDBetween = value; return this; } public ArrayList getBmWorkOrderRecIDIn() { return BM_WorkOrder_RecIDIn; } public BM_BatchProductionWorkOrderQuery setBmWorkOrderRecIDIn(ArrayList value) { this.BM_WorkOrder_RecIDIn = value; return this; } public ArrayList getRowHash() { return RowHash; } public BM_BatchProductionWorkOrderQuery setRowHash(ArrayList value) { this.RowHash = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class BM_CustomSettingQuery extends QueryDb implements IReturn> { public String SettingID = null; public String SettingIDStartsWith = null; public String SettingIDEndsWith = null; public String SettingIDContains = null; public String SettingIDLike = null; public ArrayList SettingIDBetween = null; public ArrayList SettingIDIn = null; public Date LastSavedDateTime = null; public Date LastSavedDateTimeGreaterThanOrEqualTo = null; public Date LastSavedDateTimeGreaterThan = null; public Date LastSavedDateTimeLessThan = null; public Date LastSavedDateTimeLessThanOrEqualTo = null; public Date LastSavedDateTimeNotEqualTo = null; public ArrayList LastSavedDateTimeBetween = null; public ArrayList LastSavedDateTimeIn = null; public String SettingDescription = null; public String SettingDescriptionStartsWith = null; public String SettingDescriptionEndsWith = null; public String SettingDescriptionContains = null; public String SettingDescriptionLike = null; public ArrayList SettingDescriptionBetween = null; public ArrayList SettingDescriptionIn = null; public String SettingName = null; public String SettingNameStartsWith = null; public String SettingNameEndsWith = null; public String SettingNameContains = null; public String SettingNameLike = null; public ArrayList SettingNameBetween = null; public ArrayList SettingNameIn = null; public Integer DisplayOrder = null; public Integer DisplayOrderGreaterThanOrEqualTo = null; public Integer DisplayOrderGreaterThan = null; public Integer DisplayOrderLessThan = null; public Integer DisplayOrderLessThanOrEqualTo = null; public Integer DisplayOrderNotEqualTo = null; public ArrayList DisplayOrderBetween = null; public ArrayList DisplayOrderIn = null; public Short CellType = null; public Short CellTypeGreaterThanOrEqualTo = null; public Short CellTypeGreaterThan = null; public Short CellTypeLessThan = null; public Short CellTypeLessThanOrEqualTo = null; public Short CellTypeNotEqualTo = null; public ArrayList CellTypeBetween = null; public ArrayList CellTypeIn = null; public String ScriptFormatCell = null; public String ScriptFormatCellStartsWith = null; public String ScriptFormatCellEndsWith = null; public String ScriptFormatCellContains = null; public String ScriptFormatCellLike = null; public ArrayList ScriptFormatCellBetween = null; public ArrayList ScriptFormatCellIn = null; public String ScriptButtonClicked = null; public String ScriptButtonClickedStartsWith = null; public String ScriptButtonClickedEndsWith = null; public String ScriptButtonClickedContains = null; public String ScriptButtonClickedLike = null; public ArrayList ScriptButtonClickedBetween = null; public ArrayList ScriptButtonClickedIn = null; public String ScriptReadData = null; public String ScriptReadDataStartsWith = null; public String ScriptReadDataEndsWith = null; public String ScriptReadDataContains = null; public String ScriptReadDataLike = null; public ArrayList ScriptReadDataBetween = null; public ArrayList ScriptReadDataIn = null; public String GridHandlerCode = null; public String GridHandlerCodeStartsWith = null; public String GridHandlerCodeEndsWith = null; public String GridHandlerCodeContains = null; public String GridHandlerCodeLike = null; public ArrayList GridHandlerCodeBetween = null; public ArrayList GridHandlerCodeIn = null; public UUID SY_Plugin_RecID = null; public ArrayList SY_Plugin_RecIDIn = null; public String getSettingID() { return SettingID; } public BM_CustomSettingQuery setSettingID(String value) { this.SettingID = value; return this; } public String getSettingIDStartsWith() { return SettingIDStartsWith; } public BM_CustomSettingQuery setSettingIDStartsWith(String value) { this.SettingIDStartsWith = value; return this; } public String getSettingIDEndsWith() { return SettingIDEndsWith; } public BM_CustomSettingQuery setSettingIDEndsWith(String value) { this.SettingIDEndsWith = value; return this; } public String getSettingIDContains() { return SettingIDContains; } public BM_CustomSettingQuery setSettingIDContains(String value) { this.SettingIDContains = value; return this; } public String getSettingIDLike() { return SettingIDLike; } public BM_CustomSettingQuery setSettingIDLike(String value) { this.SettingIDLike = value; return this; } public ArrayList getSettingIDBetween() { return SettingIDBetween; } public BM_CustomSettingQuery setSettingIDBetween(ArrayList value) { this.SettingIDBetween = value; return this; } public ArrayList getSettingIDIn() { return SettingIDIn; } public BM_CustomSettingQuery setSettingIDIn(ArrayList value) { this.SettingIDIn = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public BM_CustomSettingQuery setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getLastSavedDateTimeGreaterThanOrEqualTo() { return LastSavedDateTimeGreaterThanOrEqualTo; } public BM_CustomSettingQuery setLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.LastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeGreaterThan() { return LastSavedDateTimeGreaterThan; } public BM_CustomSettingQuery setLastSavedDateTimeGreaterThan(Date value) { this.LastSavedDateTimeGreaterThan = value; return this; } public Date getLastSavedDateTimeLessThan() { return LastSavedDateTimeLessThan; } public BM_CustomSettingQuery setLastSavedDateTimeLessThan(Date value) { this.LastSavedDateTimeLessThan = value; return this; } public Date getLastSavedDateTimeLessThanOrEqualTo() { return LastSavedDateTimeLessThanOrEqualTo; } public BM_CustomSettingQuery setLastSavedDateTimeLessThanOrEqualTo(Date value) { this.LastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeNotEqualTo() { return LastSavedDateTimeNotEqualTo; } public BM_CustomSettingQuery setLastSavedDateTimeNotEqualTo(Date value) { this.LastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getLastSavedDateTimeBetween() { return LastSavedDateTimeBetween; } public BM_CustomSettingQuery setLastSavedDateTimeBetween(ArrayList value) { this.LastSavedDateTimeBetween = value; return this; } public ArrayList getLastSavedDateTimeIn() { return LastSavedDateTimeIn; } public BM_CustomSettingQuery setLastSavedDateTimeIn(ArrayList value) { this.LastSavedDateTimeIn = value; return this; } public String getSettingDescription() { return SettingDescription; } public BM_CustomSettingQuery setSettingDescription(String value) { this.SettingDescription = value; return this; } public String getSettingDescriptionStartsWith() { return SettingDescriptionStartsWith; } public BM_CustomSettingQuery setSettingDescriptionStartsWith(String value) { this.SettingDescriptionStartsWith = value; return this; } public String getSettingDescriptionEndsWith() { return SettingDescriptionEndsWith; } public BM_CustomSettingQuery setSettingDescriptionEndsWith(String value) { this.SettingDescriptionEndsWith = value; return this; } public String getSettingDescriptionContains() { return SettingDescriptionContains; } public BM_CustomSettingQuery setSettingDescriptionContains(String value) { this.SettingDescriptionContains = value; return this; } public String getSettingDescriptionLike() { return SettingDescriptionLike; } public BM_CustomSettingQuery setSettingDescriptionLike(String value) { this.SettingDescriptionLike = value; return this; } public ArrayList getSettingDescriptionBetween() { return SettingDescriptionBetween; } public BM_CustomSettingQuery setSettingDescriptionBetween(ArrayList value) { this.SettingDescriptionBetween = value; return this; } public ArrayList getSettingDescriptionIn() { return SettingDescriptionIn; } public BM_CustomSettingQuery setSettingDescriptionIn(ArrayList value) { this.SettingDescriptionIn = value; return this; } public String getSettingName() { return SettingName; } public BM_CustomSettingQuery setSettingName(String value) { this.SettingName = value; return this; } public String getSettingNameStartsWith() { return SettingNameStartsWith; } public BM_CustomSettingQuery setSettingNameStartsWith(String value) { this.SettingNameStartsWith = value; return this; } public String getSettingNameEndsWith() { return SettingNameEndsWith; } public BM_CustomSettingQuery setSettingNameEndsWith(String value) { this.SettingNameEndsWith = value; return this; } public String getSettingNameContains() { return SettingNameContains; } public BM_CustomSettingQuery setSettingNameContains(String value) { this.SettingNameContains = value; return this; } public String getSettingNameLike() { return SettingNameLike; } public BM_CustomSettingQuery setSettingNameLike(String value) { this.SettingNameLike = value; return this; } public ArrayList getSettingNameBetween() { return SettingNameBetween; } public BM_CustomSettingQuery setSettingNameBetween(ArrayList value) { this.SettingNameBetween = value; return this; } public ArrayList getSettingNameIn() { return SettingNameIn; } public BM_CustomSettingQuery setSettingNameIn(ArrayList value) { this.SettingNameIn = value; return this; } public Integer getDisplayOrder() { return DisplayOrder; } public BM_CustomSettingQuery setDisplayOrder(Integer value) { this.DisplayOrder = value; return this; } public Integer getDisplayOrderGreaterThanOrEqualTo() { return DisplayOrderGreaterThanOrEqualTo; } public BM_CustomSettingQuery setDisplayOrderGreaterThanOrEqualTo(Integer value) { this.DisplayOrderGreaterThanOrEqualTo = value; return this; } public Integer getDisplayOrderGreaterThan() { return DisplayOrderGreaterThan; } public BM_CustomSettingQuery setDisplayOrderGreaterThan(Integer value) { this.DisplayOrderGreaterThan = value; return this; } public Integer getDisplayOrderLessThan() { return DisplayOrderLessThan; } public BM_CustomSettingQuery setDisplayOrderLessThan(Integer value) { this.DisplayOrderLessThan = value; return this; } public Integer getDisplayOrderLessThanOrEqualTo() { return DisplayOrderLessThanOrEqualTo; } public BM_CustomSettingQuery setDisplayOrderLessThanOrEqualTo(Integer value) { this.DisplayOrderLessThanOrEqualTo = value; return this; } public Integer getDisplayOrderNotEqualTo() { return DisplayOrderNotEqualTo; } public BM_CustomSettingQuery setDisplayOrderNotEqualTo(Integer value) { this.DisplayOrderNotEqualTo = value; return this; } public ArrayList getDisplayOrderBetween() { return DisplayOrderBetween; } public BM_CustomSettingQuery setDisplayOrderBetween(ArrayList value) { this.DisplayOrderBetween = value; return this; } public ArrayList getDisplayOrderIn() { return DisplayOrderIn; } public BM_CustomSettingQuery setDisplayOrderIn(ArrayList value) { this.DisplayOrderIn = value; return this; } public Short getCellType() { return CellType; } public BM_CustomSettingQuery setCellType(Short value) { this.CellType = value; return this; } public Short getCellTypeGreaterThanOrEqualTo() { return CellTypeGreaterThanOrEqualTo; } public BM_CustomSettingQuery setCellTypeGreaterThanOrEqualTo(Short value) { this.CellTypeGreaterThanOrEqualTo = value; return this; } public Short getCellTypeGreaterThan() { return CellTypeGreaterThan; } public BM_CustomSettingQuery setCellTypeGreaterThan(Short value) { this.CellTypeGreaterThan = value; return this; } public Short getCellTypeLessThan() { return CellTypeLessThan; } public BM_CustomSettingQuery setCellTypeLessThan(Short value) { this.CellTypeLessThan = value; return this; } public Short getCellTypeLessThanOrEqualTo() { return CellTypeLessThanOrEqualTo; } public BM_CustomSettingQuery setCellTypeLessThanOrEqualTo(Short value) { this.CellTypeLessThanOrEqualTo = value; return this; } public Short getCellTypeNotEqualTo() { return CellTypeNotEqualTo; } public BM_CustomSettingQuery setCellTypeNotEqualTo(Short value) { this.CellTypeNotEqualTo = value; return this; } public ArrayList getCellTypeBetween() { return CellTypeBetween; } public BM_CustomSettingQuery setCellTypeBetween(ArrayList value) { this.CellTypeBetween = value; return this; } public ArrayList getCellTypeIn() { return CellTypeIn; } public BM_CustomSettingQuery setCellTypeIn(ArrayList value) { this.CellTypeIn = value; return this; } public String getScriptFormatCell() { return ScriptFormatCell; } public BM_CustomSettingQuery setScriptFormatCell(String value) { this.ScriptFormatCell = value; return this; } public String getScriptFormatCellStartsWith() { return ScriptFormatCellStartsWith; } public BM_CustomSettingQuery setScriptFormatCellStartsWith(String value) { this.ScriptFormatCellStartsWith = value; return this; } public String getScriptFormatCellEndsWith() { return ScriptFormatCellEndsWith; } public BM_CustomSettingQuery setScriptFormatCellEndsWith(String value) { this.ScriptFormatCellEndsWith = value; return this; } public String getScriptFormatCellContains() { return ScriptFormatCellContains; } public BM_CustomSettingQuery setScriptFormatCellContains(String value) { this.ScriptFormatCellContains = value; return this; } public String getScriptFormatCellLike() { return ScriptFormatCellLike; } public BM_CustomSettingQuery setScriptFormatCellLike(String value) { this.ScriptFormatCellLike = value; return this; } public ArrayList getScriptFormatCellBetween() { return ScriptFormatCellBetween; } public BM_CustomSettingQuery setScriptFormatCellBetween(ArrayList value) { this.ScriptFormatCellBetween = value; return this; } public ArrayList getScriptFormatCellIn() { return ScriptFormatCellIn; } public BM_CustomSettingQuery setScriptFormatCellIn(ArrayList value) { this.ScriptFormatCellIn = value; return this; } public String getScriptButtonClicked() { return ScriptButtonClicked; } public BM_CustomSettingQuery setScriptButtonClicked(String value) { this.ScriptButtonClicked = value; return this; } public String getScriptButtonClickedStartsWith() { return ScriptButtonClickedStartsWith; } public BM_CustomSettingQuery setScriptButtonClickedStartsWith(String value) { this.ScriptButtonClickedStartsWith = value; return this; } public String getScriptButtonClickedEndsWith() { return ScriptButtonClickedEndsWith; } public BM_CustomSettingQuery setScriptButtonClickedEndsWith(String value) { this.ScriptButtonClickedEndsWith = value; return this; } public String getScriptButtonClickedContains() { return ScriptButtonClickedContains; } public BM_CustomSettingQuery setScriptButtonClickedContains(String value) { this.ScriptButtonClickedContains = value; return this; } public String getScriptButtonClickedLike() { return ScriptButtonClickedLike; } public BM_CustomSettingQuery setScriptButtonClickedLike(String value) { this.ScriptButtonClickedLike = value; return this; } public ArrayList getScriptButtonClickedBetween() { return ScriptButtonClickedBetween; } public BM_CustomSettingQuery setScriptButtonClickedBetween(ArrayList value) { this.ScriptButtonClickedBetween = value; return this; } public ArrayList getScriptButtonClickedIn() { return ScriptButtonClickedIn; } public BM_CustomSettingQuery setScriptButtonClickedIn(ArrayList value) { this.ScriptButtonClickedIn = value; return this; } public String getScriptReadData() { return ScriptReadData; } public BM_CustomSettingQuery setScriptReadData(String value) { this.ScriptReadData = value; return this; } public String getScriptReadDataStartsWith() { return ScriptReadDataStartsWith; } public BM_CustomSettingQuery setScriptReadDataStartsWith(String value) { this.ScriptReadDataStartsWith = value; return this; } public String getScriptReadDataEndsWith() { return ScriptReadDataEndsWith; } public BM_CustomSettingQuery setScriptReadDataEndsWith(String value) { this.ScriptReadDataEndsWith = value; return this; } public String getScriptReadDataContains() { return ScriptReadDataContains; } public BM_CustomSettingQuery setScriptReadDataContains(String value) { this.ScriptReadDataContains = value; return this; } public String getScriptReadDataLike() { return ScriptReadDataLike; } public BM_CustomSettingQuery setScriptReadDataLike(String value) { this.ScriptReadDataLike = value; return this; } public ArrayList getScriptReadDataBetween() { return ScriptReadDataBetween; } public BM_CustomSettingQuery setScriptReadDataBetween(ArrayList value) { this.ScriptReadDataBetween = value; return this; } public ArrayList getScriptReadDataIn() { return ScriptReadDataIn; } public BM_CustomSettingQuery setScriptReadDataIn(ArrayList value) { this.ScriptReadDataIn = value; return this; } public String getGridHandlerCode() { return GridHandlerCode; } public BM_CustomSettingQuery setGridHandlerCode(String value) { this.GridHandlerCode = value; return this; } public String getGridHandlerCodeStartsWith() { return GridHandlerCodeStartsWith; } public BM_CustomSettingQuery setGridHandlerCodeStartsWith(String value) { this.GridHandlerCodeStartsWith = value; return this; } public String getGridHandlerCodeEndsWith() { return GridHandlerCodeEndsWith; } public BM_CustomSettingQuery setGridHandlerCodeEndsWith(String value) { this.GridHandlerCodeEndsWith = value; return this; } public String getGridHandlerCodeContains() { return GridHandlerCodeContains; } public BM_CustomSettingQuery setGridHandlerCodeContains(String value) { this.GridHandlerCodeContains = value; return this; } public String getGridHandlerCodeLike() { return GridHandlerCodeLike; } public BM_CustomSettingQuery setGridHandlerCodeLike(String value) { this.GridHandlerCodeLike = value; return this; } public ArrayList getGridHandlerCodeBetween() { return GridHandlerCodeBetween; } public BM_CustomSettingQuery setGridHandlerCodeBetween(ArrayList value) { this.GridHandlerCodeBetween = value; return this; } public ArrayList getGridHandlerCodeIn() { return GridHandlerCodeIn; } public BM_CustomSettingQuery setGridHandlerCodeIn(ArrayList value) { this.GridHandlerCodeIn = value; return this; } public UUID getSyPluginRecID() { return SY_Plugin_RecID; } public BM_CustomSettingQuery setSyPluginRecID(UUID value) { this.SY_Plugin_RecID = value; return this; } public ArrayList getSyPluginRecIDIn() { return SY_Plugin_RecIDIn; } public BM_CustomSettingQuery setSyPluginRecIDIn(ArrayList value) { this.SY_Plugin_RecIDIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class BM_CustomSettingValuesQuery extends QueryDb implements IReturn> { public String SettingValueID = null; public String SettingValueIDStartsWith = null; public String SettingValueIDEndsWith = null; public String SettingValueIDContains = null; public String SettingValueIDLike = null; public ArrayList SettingValueIDBetween = null; public ArrayList SettingValueIDIn = null; public String SettingID = null; public String SettingIDStartsWith = null; public String SettingIDEndsWith = null; public String SettingIDContains = null; public String SettingIDLike = null; public ArrayList SettingIDBetween = null; public ArrayList SettingIDIn = null; public String BM_Main_RecID = null; public String BM_Main_RecIDStartsWith = null; public String BM_Main_RecIDEndsWith = null; public String BM_Main_RecIDContains = null; public String BM_Main_RecIDLike = null; public ArrayList BM_Main_RecIDBetween = null; public ArrayList BM_Main_RecIDIn = null; public String Contents = null; public String ContentsStartsWith = null; public String ContentsEndsWith = null; public String ContentsContains = null; public String ContentsLike = null; public ArrayList ContentsBetween = null; public ArrayList ContentsIn = null; public Date LastSavedDateTime = null; public Date LastSavedDateTimeGreaterThanOrEqualTo = null; public Date LastSavedDateTimeGreaterThan = null; public Date LastSavedDateTimeLessThan = null; public Date LastSavedDateTimeLessThanOrEqualTo = null; public Date LastSavedDateTimeNotEqualTo = null; public ArrayList LastSavedDateTimeBetween = null; public ArrayList LastSavedDateTimeIn = null; public String getSettingValueID() { return SettingValueID; } public BM_CustomSettingValuesQuery setSettingValueID(String value) { this.SettingValueID = value; return this; } public String getSettingValueIDStartsWith() { return SettingValueIDStartsWith; } public BM_CustomSettingValuesQuery setSettingValueIDStartsWith(String value) { this.SettingValueIDStartsWith = value; return this; } public String getSettingValueIDEndsWith() { return SettingValueIDEndsWith; } public BM_CustomSettingValuesQuery setSettingValueIDEndsWith(String value) { this.SettingValueIDEndsWith = value; return this; } public String getSettingValueIDContains() { return SettingValueIDContains; } public BM_CustomSettingValuesQuery setSettingValueIDContains(String value) { this.SettingValueIDContains = value; return this; } public String getSettingValueIDLike() { return SettingValueIDLike; } public BM_CustomSettingValuesQuery setSettingValueIDLike(String value) { this.SettingValueIDLike = value; return this; } public ArrayList getSettingValueIDBetween() { return SettingValueIDBetween; } public BM_CustomSettingValuesQuery setSettingValueIDBetween(ArrayList value) { this.SettingValueIDBetween = value; return this; } public ArrayList getSettingValueIDIn() { return SettingValueIDIn; } public BM_CustomSettingValuesQuery setSettingValueIDIn(ArrayList value) { this.SettingValueIDIn = value; return this; } public String getSettingID() { return SettingID; } public BM_CustomSettingValuesQuery setSettingID(String value) { this.SettingID = value; return this; } public String getSettingIDStartsWith() { return SettingIDStartsWith; } public BM_CustomSettingValuesQuery setSettingIDStartsWith(String value) { this.SettingIDStartsWith = value; return this; } public String getSettingIDEndsWith() { return SettingIDEndsWith; } public BM_CustomSettingValuesQuery setSettingIDEndsWith(String value) { this.SettingIDEndsWith = value; return this; } public String getSettingIDContains() { return SettingIDContains; } public BM_CustomSettingValuesQuery setSettingIDContains(String value) { this.SettingIDContains = value; return this; } public String getSettingIDLike() { return SettingIDLike; } public BM_CustomSettingValuesQuery setSettingIDLike(String value) { this.SettingIDLike = value; return this; } public ArrayList getSettingIDBetween() { return SettingIDBetween; } public BM_CustomSettingValuesQuery setSettingIDBetween(ArrayList value) { this.SettingIDBetween = value; return this; } public ArrayList getSettingIDIn() { return SettingIDIn; } public BM_CustomSettingValuesQuery setSettingIDIn(ArrayList value) { this.SettingIDIn = value; return this; } public String getBmMainRecID() { return BM_Main_RecID; } public BM_CustomSettingValuesQuery setBmMainRecID(String value) { this.BM_Main_RecID = value; return this; } public String getBmMainRecIDStartsWith() { return BM_Main_RecIDStartsWith; } public BM_CustomSettingValuesQuery setBmMainRecIDStartsWith(String value) { this.BM_Main_RecIDStartsWith = value; return this; } public String getBmMainRecIDEndsWith() { return BM_Main_RecIDEndsWith; } public BM_CustomSettingValuesQuery setBmMainRecIDEndsWith(String value) { this.BM_Main_RecIDEndsWith = value; return this; } public String getBmMainRecIDContains() { return BM_Main_RecIDContains; } public BM_CustomSettingValuesQuery setBmMainRecIDContains(String value) { this.BM_Main_RecIDContains = value; return this; } public String getBmMainRecIDLike() { return BM_Main_RecIDLike; } public BM_CustomSettingValuesQuery setBmMainRecIDLike(String value) { this.BM_Main_RecIDLike = value; return this; } public ArrayList getBmMainRecIDBetween() { return BM_Main_RecIDBetween; } public BM_CustomSettingValuesQuery setBmMainRecIDBetween(ArrayList value) { this.BM_Main_RecIDBetween = value; return this; } public ArrayList getBmMainRecIDIn() { return BM_Main_RecIDIn; } public BM_CustomSettingValuesQuery setBmMainRecIDIn(ArrayList value) { this.BM_Main_RecIDIn = value; return this; } public String getContents() { return Contents; } public BM_CustomSettingValuesQuery setContents(String value) { this.Contents = value; return this; } public String getContentsStartsWith() { return ContentsStartsWith; } public BM_CustomSettingValuesQuery setContentsStartsWith(String value) { this.ContentsStartsWith = value; return this; } public String getContentsEndsWith() { return ContentsEndsWith; } public BM_CustomSettingValuesQuery setContentsEndsWith(String value) { this.ContentsEndsWith = value; return this; } public String getContentsContains() { return ContentsContains; } public BM_CustomSettingValuesQuery setContentsContains(String value) { this.ContentsContains = value; return this; } public String getContentsLike() { return ContentsLike; } public BM_CustomSettingValuesQuery setContentsLike(String value) { this.ContentsLike = value; return this; } public ArrayList getContentsBetween() { return ContentsBetween; } public BM_CustomSettingValuesQuery setContentsBetween(ArrayList value) { this.ContentsBetween = value; return this; } public ArrayList getContentsIn() { return ContentsIn; } public BM_CustomSettingValuesQuery setContentsIn(ArrayList value) { this.ContentsIn = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public BM_CustomSettingValuesQuery setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getLastSavedDateTimeGreaterThanOrEqualTo() { return LastSavedDateTimeGreaterThanOrEqualTo; } public BM_CustomSettingValuesQuery setLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.LastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeGreaterThan() { return LastSavedDateTimeGreaterThan; } public BM_CustomSettingValuesQuery setLastSavedDateTimeGreaterThan(Date value) { this.LastSavedDateTimeGreaterThan = value; return this; } public Date getLastSavedDateTimeLessThan() { return LastSavedDateTimeLessThan; } public BM_CustomSettingValuesQuery setLastSavedDateTimeLessThan(Date value) { this.LastSavedDateTimeLessThan = value; return this; } public Date getLastSavedDateTimeLessThanOrEqualTo() { return LastSavedDateTimeLessThanOrEqualTo; } public BM_CustomSettingValuesQuery setLastSavedDateTimeLessThanOrEqualTo(Date value) { this.LastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeNotEqualTo() { return LastSavedDateTimeNotEqualTo; } public BM_CustomSettingValuesQuery setLastSavedDateTimeNotEqualTo(Date value) { this.LastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getLastSavedDateTimeBetween() { return LastSavedDateTimeBetween; } public BM_CustomSettingValuesQuery setLastSavedDateTimeBetween(ArrayList value) { this.LastSavedDateTimeBetween = value; return this; } public ArrayList getLastSavedDateTimeIn() { return LastSavedDateTimeIn; } public BM_CustomSettingValuesQuery setLastSavedDateTimeIn(ArrayList value) { this.LastSavedDateTimeIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class BM_DocumentsQuery extends QueryDb implements IReturn> { public String RecID = null; public String RecIDStartsWith = null; public String RecIDEndsWith = null; public String RecIDContains = null; public String RecIDLike = null; public ArrayList RecIDBetween = null; public ArrayList RecIDIn = null; public String BM_Main_RecID = null; public String BM_Main_RecIDStartsWith = null; public String BM_Main_RecIDEndsWith = null; public String BM_Main_RecIDContains = null; public String BM_Main_RecIDLike = null; public ArrayList BM_Main_RecIDBetween = null; public ArrayList BM_Main_RecIDIn = null; public String DocumentTypeID = null; public String DocumentTypeIDStartsWith = null; public String DocumentTypeIDEndsWith = null; public String DocumentTypeIDContains = null; public String DocumentTypeIDLike = null; public ArrayList DocumentTypeIDBetween = null; public ArrayList DocumentTypeIDIn = null; public Date LastSavedDateTime = null; public Date LastSavedDateTimeGreaterThanOrEqualTo = null; public Date LastSavedDateTimeGreaterThan = null; public Date LastSavedDateTimeLessThan = null; public Date LastSavedDateTimeLessThanOrEqualTo = null; public Date LastSavedDateTimeNotEqualTo = null; public ArrayList LastSavedDateTimeBetween = null; public ArrayList LastSavedDateTimeIn = null; public String LastSavedByStaffID = null; public String LastSavedByStaffIDStartsWith = null; public String LastSavedByStaffIDEndsWith = null; public String LastSavedByStaffIDContains = null; public String LastSavedByStaffIDLike = null; public ArrayList LastSavedByStaffIDBetween = null; public ArrayList LastSavedByStaffIDIn = null; public ArrayList FileBinary = null; public String Description = null; public String DescriptionStartsWith = null; public String DescriptionEndsWith = null; public String DescriptionContains = null; public String DescriptionLike = null; public ArrayList DescriptionBetween = null; public ArrayList DescriptionIn = null; public String PhysicalFileName = null; public String PhysicalFileNameStartsWith = null; public String PhysicalFileNameEndsWith = null; public String PhysicalFileNameContains = null; public String PhysicalFileNameLike = null; public ArrayList PhysicalFileNameBetween = null; public ArrayList PhysicalFileNameIn = null; public Integer ItemNo = null; public Integer ItemNoGreaterThanOrEqualTo = null; public Integer ItemNoGreaterThan = null; public Integer ItemNoLessThan = null; public Integer ItemNoLessThanOrEqualTo = null; public Integer ItemNoNotEqualTo = null; public ArrayList ItemNoBetween = null; public ArrayList ItemNoIn = null; public String getRecID() { return RecID; } public BM_DocumentsQuery setRecID(String value) { this.RecID = value; return this; } public String getRecIDStartsWith() { return RecIDStartsWith; } public BM_DocumentsQuery setRecIDStartsWith(String value) { this.RecIDStartsWith = value; return this; } public String getRecIDEndsWith() { return RecIDEndsWith; } public BM_DocumentsQuery setRecIDEndsWith(String value) { this.RecIDEndsWith = value; return this; } public String getRecIDContains() { return RecIDContains; } public BM_DocumentsQuery setRecIDContains(String value) { this.RecIDContains = value; return this; } public String getRecIDLike() { return RecIDLike; } public BM_DocumentsQuery setRecIDLike(String value) { this.RecIDLike = value; return this; } public ArrayList getRecIDBetween() { return RecIDBetween; } public BM_DocumentsQuery setRecIDBetween(ArrayList value) { this.RecIDBetween = value; return this; } public ArrayList getRecIDIn() { return RecIDIn; } public BM_DocumentsQuery setRecIDIn(ArrayList value) { this.RecIDIn = value; return this; } public String getBmMainRecID() { return BM_Main_RecID; } public BM_DocumentsQuery setBmMainRecID(String value) { this.BM_Main_RecID = value; return this; } public String getBmMainRecIDStartsWith() { return BM_Main_RecIDStartsWith; } public BM_DocumentsQuery setBmMainRecIDStartsWith(String value) { this.BM_Main_RecIDStartsWith = value; return this; } public String getBmMainRecIDEndsWith() { return BM_Main_RecIDEndsWith; } public BM_DocumentsQuery setBmMainRecIDEndsWith(String value) { this.BM_Main_RecIDEndsWith = value; return this; } public String getBmMainRecIDContains() { return BM_Main_RecIDContains; } public BM_DocumentsQuery setBmMainRecIDContains(String value) { this.BM_Main_RecIDContains = value; return this; } public String getBmMainRecIDLike() { return BM_Main_RecIDLike; } public BM_DocumentsQuery setBmMainRecIDLike(String value) { this.BM_Main_RecIDLike = value; return this; } public ArrayList getBmMainRecIDBetween() { return BM_Main_RecIDBetween; } public BM_DocumentsQuery setBmMainRecIDBetween(ArrayList value) { this.BM_Main_RecIDBetween = value; return this; } public ArrayList getBmMainRecIDIn() { return BM_Main_RecIDIn; } public BM_DocumentsQuery setBmMainRecIDIn(ArrayList value) { this.BM_Main_RecIDIn = value; return this; } public String getDocumentTypeID() { return DocumentTypeID; } public BM_DocumentsQuery setDocumentTypeID(String value) { this.DocumentTypeID = value; return this; } public String getDocumentTypeIDStartsWith() { return DocumentTypeIDStartsWith; } public BM_DocumentsQuery setDocumentTypeIDStartsWith(String value) { this.DocumentTypeIDStartsWith = value; return this; } public String getDocumentTypeIDEndsWith() { return DocumentTypeIDEndsWith; } public BM_DocumentsQuery setDocumentTypeIDEndsWith(String value) { this.DocumentTypeIDEndsWith = value; return this; } public String getDocumentTypeIDContains() { return DocumentTypeIDContains; } public BM_DocumentsQuery setDocumentTypeIDContains(String value) { this.DocumentTypeIDContains = value; return this; } public String getDocumentTypeIDLike() { return DocumentTypeIDLike; } public BM_DocumentsQuery setDocumentTypeIDLike(String value) { this.DocumentTypeIDLike = value; return this; } public ArrayList getDocumentTypeIDBetween() { return DocumentTypeIDBetween; } public BM_DocumentsQuery setDocumentTypeIDBetween(ArrayList value) { this.DocumentTypeIDBetween = value; return this; } public ArrayList getDocumentTypeIDIn() { return DocumentTypeIDIn; } public BM_DocumentsQuery setDocumentTypeIDIn(ArrayList value) { this.DocumentTypeIDIn = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public BM_DocumentsQuery setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getLastSavedDateTimeGreaterThanOrEqualTo() { return LastSavedDateTimeGreaterThanOrEqualTo; } public BM_DocumentsQuery setLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.LastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeGreaterThan() { return LastSavedDateTimeGreaterThan; } public BM_DocumentsQuery setLastSavedDateTimeGreaterThan(Date value) { this.LastSavedDateTimeGreaterThan = value; return this; } public Date getLastSavedDateTimeLessThan() { return LastSavedDateTimeLessThan; } public BM_DocumentsQuery setLastSavedDateTimeLessThan(Date value) { this.LastSavedDateTimeLessThan = value; return this; } public Date getLastSavedDateTimeLessThanOrEqualTo() { return LastSavedDateTimeLessThanOrEqualTo; } public BM_DocumentsQuery setLastSavedDateTimeLessThanOrEqualTo(Date value) { this.LastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeNotEqualTo() { return LastSavedDateTimeNotEqualTo; } public BM_DocumentsQuery setLastSavedDateTimeNotEqualTo(Date value) { this.LastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getLastSavedDateTimeBetween() { return LastSavedDateTimeBetween; } public BM_DocumentsQuery setLastSavedDateTimeBetween(ArrayList value) { this.LastSavedDateTimeBetween = value; return this; } public ArrayList getLastSavedDateTimeIn() { return LastSavedDateTimeIn; } public BM_DocumentsQuery setLastSavedDateTimeIn(ArrayList value) { this.LastSavedDateTimeIn = value; return this; } public String getLastSavedByStaffID() { return LastSavedByStaffID; } public BM_DocumentsQuery setLastSavedByStaffID(String value) { this.LastSavedByStaffID = value; return this; } public String getLastSavedByStaffIDStartsWith() { return LastSavedByStaffIDStartsWith; } public BM_DocumentsQuery setLastSavedByStaffIDStartsWith(String value) { this.LastSavedByStaffIDStartsWith = value; return this; } public String getLastSavedByStaffIDEndsWith() { return LastSavedByStaffIDEndsWith; } public BM_DocumentsQuery setLastSavedByStaffIDEndsWith(String value) { this.LastSavedByStaffIDEndsWith = value; return this; } public String getLastSavedByStaffIDContains() { return LastSavedByStaffIDContains; } public BM_DocumentsQuery setLastSavedByStaffIDContains(String value) { this.LastSavedByStaffIDContains = value; return this; } public String getLastSavedByStaffIDLike() { return LastSavedByStaffIDLike; } public BM_DocumentsQuery setLastSavedByStaffIDLike(String value) { this.LastSavedByStaffIDLike = value; return this; } public ArrayList getLastSavedByStaffIDBetween() { return LastSavedByStaffIDBetween; } public BM_DocumentsQuery setLastSavedByStaffIDBetween(ArrayList value) { this.LastSavedByStaffIDBetween = value; return this; } public ArrayList getLastSavedByStaffIDIn() { return LastSavedByStaffIDIn; } public BM_DocumentsQuery setLastSavedByStaffIDIn(ArrayList value) { this.LastSavedByStaffIDIn = value; return this; } public ArrayList getFileBinary() { return FileBinary; } public BM_DocumentsQuery setFileBinary(ArrayList value) { this.FileBinary = value; return this; } public String getDescription() { return Description; } public BM_DocumentsQuery setDescription(String value) { this.Description = value; return this; } public String getDescriptionStartsWith() { return DescriptionStartsWith; } public BM_DocumentsQuery setDescriptionStartsWith(String value) { this.DescriptionStartsWith = value; return this; } public String getDescriptionEndsWith() { return DescriptionEndsWith; } public BM_DocumentsQuery setDescriptionEndsWith(String value) { this.DescriptionEndsWith = value; return this; } public String getDescriptionContains() { return DescriptionContains; } public BM_DocumentsQuery setDescriptionContains(String value) { this.DescriptionContains = value; return this; } public String getDescriptionLike() { return DescriptionLike; } public BM_DocumentsQuery setDescriptionLike(String value) { this.DescriptionLike = value; return this; } public ArrayList getDescriptionBetween() { return DescriptionBetween; } public BM_DocumentsQuery setDescriptionBetween(ArrayList value) { this.DescriptionBetween = value; return this; } public ArrayList getDescriptionIn() { return DescriptionIn; } public BM_DocumentsQuery setDescriptionIn(ArrayList value) { this.DescriptionIn = value; return this; } public String getPhysicalFileName() { return PhysicalFileName; } public BM_DocumentsQuery setPhysicalFileName(String value) { this.PhysicalFileName = value; return this; } public String getPhysicalFileNameStartsWith() { return PhysicalFileNameStartsWith; } public BM_DocumentsQuery setPhysicalFileNameStartsWith(String value) { this.PhysicalFileNameStartsWith = value; return this; } public String getPhysicalFileNameEndsWith() { return PhysicalFileNameEndsWith; } public BM_DocumentsQuery setPhysicalFileNameEndsWith(String value) { this.PhysicalFileNameEndsWith = value; return this; } public String getPhysicalFileNameContains() { return PhysicalFileNameContains; } public BM_DocumentsQuery setPhysicalFileNameContains(String value) { this.PhysicalFileNameContains = value; return this; } public String getPhysicalFileNameLike() { return PhysicalFileNameLike; } public BM_DocumentsQuery setPhysicalFileNameLike(String value) { this.PhysicalFileNameLike = value; return this; } public ArrayList getPhysicalFileNameBetween() { return PhysicalFileNameBetween; } public BM_DocumentsQuery setPhysicalFileNameBetween(ArrayList value) { this.PhysicalFileNameBetween = value; return this; } public ArrayList getPhysicalFileNameIn() { return PhysicalFileNameIn; } public BM_DocumentsQuery setPhysicalFileNameIn(ArrayList value) { this.PhysicalFileNameIn = value; return this; } public Integer getItemNo() { return ItemNo; } public BM_DocumentsQuery setItemNo(Integer value) { this.ItemNo = value; return this; } public Integer getItemNoGreaterThanOrEqualTo() { return ItemNoGreaterThanOrEqualTo; } public BM_DocumentsQuery setItemNoGreaterThanOrEqualTo(Integer value) { this.ItemNoGreaterThanOrEqualTo = value; return this; } public Integer getItemNoGreaterThan() { return ItemNoGreaterThan; } public BM_DocumentsQuery setItemNoGreaterThan(Integer value) { this.ItemNoGreaterThan = value; return this; } public Integer getItemNoLessThan() { return ItemNoLessThan; } public BM_DocumentsQuery setItemNoLessThan(Integer value) { this.ItemNoLessThan = value; return this; } public Integer getItemNoLessThanOrEqualTo() { return ItemNoLessThanOrEqualTo; } public BM_DocumentsQuery setItemNoLessThanOrEqualTo(Integer value) { this.ItemNoLessThanOrEqualTo = value; return this; } public Integer getItemNoNotEqualTo() { return ItemNoNotEqualTo; } public BM_DocumentsQuery setItemNoNotEqualTo(Integer value) { this.ItemNoNotEqualTo = value; return this; } public ArrayList getItemNoBetween() { return ItemNoBetween; } public BM_DocumentsQuery setItemNoBetween(ArrayList value) { this.ItemNoBetween = value; return this; } public ArrayList getItemNoIn() { return ItemNoIn; } public BM_DocumentsQuery setItemNoIn(ArrayList value) { this.ItemNoIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class BM_InputCustomFieldsQuery extends QueryDb implements IReturn> { public String RecID = null; public String RecIDStartsWith = null; public String RecIDEndsWith = null; public String RecIDContains = null; public String RecIDLike = null; public ArrayList RecIDBetween = null; public ArrayList RecIDIn = null; public String SettingName = null; public String SettingNameStartsWith = null; public String SettingNameEndsWith = null; public String SettingNameContains = null; public String SettingNameLike = null; public ArrayList SettingNameBetween = null; public ArrayList SettingNameIn = null; public String SettingDescription = null; public String SettingDescriptionStartsWith = null; public String SettingDescriptionEndsWith = null; public String SettingDescriptionContains = null; public String SettingDescriptionLike = null; public ArrayList SettingDescriptionBetween = null; public ArrayList SettingDescriptionIn = null; public Integer CellType = null; public Integer CellTypeGreaterThanOrEqualTo = null; public Integer CellTypeGreaterThan = null; public Integer CellTypeLessThan = null; public Integer CellTypeLessThanOrEqualTo = null; public Integer CellTypeNotEqualTo = null; public ArrayList CellTypeBetween = null; public ArrayList CellTypeIn = null; public String FieldParameter = null; public String FieldParameterStartsWith = null; public String FieldParameterEndsWith = null; public String FieldParameterContains = null; public String FieldParameterLike = null; public ArrayList FieldParameterBetween = null; public ArrayList FieldParameterIn = null; public UUID SY_Plugin_RecID = null; public ArrayList SY_Plugin_RecIDIn = null; public Date LastSavedDateTime = null; public Date LastSavedDateTimeGreaterThanOrEqualTo = null; public Date LastSavedDateTimeGreaterThan = null; public Date LastSavedDateTimeLessThan = null; public Date LastSavedDateTimeLessThanOrEqualTo = null; public Date LastSavedDateTimeNotEqualTo = null; public ArrayList LastSavedDateTimeBetween = null; public ArrayList LastSavedDateTimeIn = null; public Integer DisplayOrder = null; public Integer DisplayOrderGreaterThanOrEqualTo = null; public Integer DisplayOrderGreaterThan = null; public Integer DisplayOrderLessThan = null; public Integer DisplayOrderLessThanOrEqualTo = null; public Integer DisplayOrderNotEqualTo = null; public ArrayList DisplayOrderBetween = null; public ArrayList DisplayOrderIn = null; public String getRecID() { return RecID; } public BM_InputCustomFieldsQuery setRecID(String value) { this.RecID = value; return this; } public String getRecIDStartsWith() { return RecIDStartsWith; } public BM_InputCustomFieldsQuery setRecIDStartsWith(String value) { this.RecIDStartsWith = value; return this; } public String getRecIDEndsWith() { return RecIDEndsWith; } public BM_InputCustomFieldsQuery setRecIDEndsWith(String value) { this.RecIDEndsWith = value; return this; } public String getRecIDContains() { return RecIDContains; } public BM_InputCustomFieldsQuery setRecIDContains(String value) { this.RecIDContains = value; return this; } public String getRecIDLike() { return RecIDLike; } public BM_InputCustomFieldsQuery setRecIDLike(String value) { this.RecIDLike = value; return this; } public ArrayList getRecIDBetween() { return RecIDBetween; } public BM_InputCustomFieldsQuery setRecIDBetween(ArrayList value) { this.RecIDBetween = value; return this; } public ArrayList getRecIDIn() { return RecIDIn; } public BM_InputCustomFieldsQuery setRecIDIn(ArrayList value) { this.RecIDIn = value; return this; } public String getSettingName() { return SettingName; } public BM_InputCustomFieldsQuery setSettingName(String value) { this.SettingName = value; return this; } public String getSettingNameStartsWith() { return SettingNameStartsWith; } public BM_InputCustomFieldsQuery setSettingNameStartsWith(String value) { this.SettingNameStartsWith = value; return this; } public String getSettingNameEndsWith() { return SettingNameEndsWith; } public BM_InputCustomFieldsQuery setSettingNameEndsWith(String value) { this.SettingNameEndsWith = value; return this; } public String getSettingNameContains() { return SettingNameContains; } public BM_InputCustomFieldsQuery setSettingNameContains(String value) { this.SettingNameContains = value; return this; } public String getSettingNameLike() { return SettingNameLike; } public BM_InputCustomFieldsQuery setSettingNameLike(String value) { this.SettingNameLike = value; return this; } public ArrayList getSettingNameBetween() { return SettingNameBetween; } public BM_InputCustomFieldsQuery setSettingNameBetween(ArrayList value) { this.SettingNameBetween = value; return this; } public ArrayList getSettingNameIn() { return SettingNameIn; } public BM_InputCustomFieldsQuery setSettingNameIn(ArrayList value) { this.SettingNameIn = value; return this; } public String getSettingDescription() { return SettingDescription; } public BM_InputCustomFieldsQuery setSettingDescription(String value) { this.SettingDescription = value; return this; } public String getSettingDescriptionStartsWith() { return SettingDescriptionStartsWith; } public BM_InputCustomFieldsQuery setSettingDescriptionStartsWith(String value) { this.SettingDescriptionStartsWith = value; return this; } public String getSettingDescriptionEndsWith() { return SettingDescriptionEndsWith; } public BM_InputCustomFieldsQuery setSettingDescriptionEndsWith(String value) { this.SettingDescriptionEndsWith = value; return this; } public String getSettingDescriptionContains() { return SettingDescriptionContains; } public BM_InputCustomFieldsQuery setSettingDescriptionContains(String value) { this.SettingDescriptionContains = value; return this; } public String getSettingDescriptionLike() { return SettingDescriptionLike; } public BM_InputCustomFieldsQuery setSettingDescriptionLike(String value) { this.SettingDescriptionLike = value; return this; } public ArrayList getSettingDescriptionBetween() { return SettingDescriptionBetween; } public BM_InputCustomFieldsQuery setSettingDescriptionBetween(ArrayList value) { this.SettingDescriptionBetween = value; return this; } public ArrayList getSettingDescriptionIn() { return SettingDescriptionIn; } public BM_InputCustomFieldsQuery setSettingDescriptionIn(ArrayList value) { this.SettingDescriptionIn = value; return this; } public Integer getCellType() { return CellType; } public BM_InputCustomFieldsQuery setCellType(Integer value) { this.CellType = value; return this; } public Integer getCellTypeGreaterThanOrEqualTo() { return CellTypeGreaterThanOrEqualTo; } public BM_InputCustomFieldsQuery setCellTypeGreaterThanOrEqualTo(Integer value) { this.CellTypeGreaterThanOrEqualTo = value; return this; } public Integer getCellTypeGreaterThan() { return CellTypeGreaterThan; } public BM_InputCustomFieldsQuery setCellTypeGreaterThan(Integer value) { this.CellTypeGreaterThan = value; return this; } public Integer getCellTypeLessThan() { return CellTypeLessThan; } public BM_InputCustomFieldsQuery setCellTypeLessThan(Integer value) { this.CellTypeLessThan = value; return this; } public Integer getCellTypeLessThanOrEqualTo() { return CellTypeLessThanOrEqualTo; } public BM_InputCustomFieldsQuery setCellTypeLessThanOrEqualTo(Integer value) { this.CellTypeLessThanOrEqualTo = value; return this; } public Integer getCellTypeNotEqualTo() { return CellTypeNotEqualTo; } public BM_InputCustomFieldsQuery setCellTypeNotEqualTo(Integer value) { this.CellTypeNotEqualTo = value; return this; } public ArrayList getCellTypeBetween() { return CellTypeBetween; } public BM_InputCustomFieldsQuery setCellTypeBetween(ArrayList value) { this.CellTypeBetween = value; return this; } public ArrayList getCellTypeIn() { return CellTypeIn; } public BM_InputCustomFieldsQuery setCellTypeIn(ArrayList value) { this.CellTypeIn = value; return this; } public String getFieldParameter() { return FieldParameter; } public BM_InputCustomFieldsQuery setFieldParameter(String value) { this.FieldParameter = value; return this; } public String getFieldParameterStartsWith() { return FieldParameterStartsWith; } public BM_InputCustomFieldsQuery setFieldParameterStartsWith(String value) { this.FieldParameterStartsWith = value; return this; } public String getFieldParameterEndsWith() { return FieldParameterEndsWith; } public BM_InputCustomFieldsQuery setFieldParameterEndsWith(String value) { this.FieldParameterEndsWith = value; return this; } public String getFieldParameterContains() { return FieldParameterContains; } public BM_InputCustomFieldsQuery setFieldParameterContains(String value) { this.FieldParameterContains = value; return this; } public String getFieldParameterLike() { return FieldParameterLike; } public BM_InputCustomFieldsQuery setFieldParameterLike(String value) { this.FieldParameterLike = value; return this; } public ArrayList getFieldParameterBetween() { return FieldParameterBetween; } public BM_InputCustomFieldsQuery setFieldParameterBetween(ArrayList value) { this.FieldParameterBetween = value; return this; } public ArrayList getFieldParameterIn() { return FieldParameterIn; } public BM_InputCustomFieldsQuery setFieldParameterIn(ArrayList value) { this.FieldParameterIn = value; return this; } public UUID getSyPluginRecID() { return SY_Plugin_RecID; } public BM_InputCustomFieldsQuery setSyPluginRecID(UUID value) { this.SY_Plugin_RecID = value; return this; } public ArrayList getSyPluginRecIDIn() { return SY_Plugin_RecIDIn; } public BM_InputCustomFieldsQuery setSyPluginRecIDIn(ArrayList value) { this.SY_Plugin_RecIDIn = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public BM_InputCustomFieldsQuery setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getLastSavedDateTimeGreaterThanOrEqualTo() { return LastSavedDateTimeGreaterThanOrEqualTo; } public BM_InputCustomFieldsQuery setLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.LastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeGreaterThan() { return LastSavedDateTimeGreaterThan; } public BM_InputCustomFieldsQuery setLastSavedDateTimeGreaterThan(Date value) { this.LastSavedDateTimeGreaterThan = value; return this; } public Date getLastSavedDateTimeLessThan() { return LastSavedDateTimeLessThan; } public BM_InputCustomFieldsQuery setLastSavedDateTimeLessThan(Date value) { this.LastSavedDateTimeLessThan = value; return this; } public Date getLastSavedDateTimeLessThanOrEqualTo() { return LastSavedDateTimeLessThanOrEqualTo; } public BM_InputCustomFieldsQuery setLastSavedDateTimeLessThanOrEqualTo(Date value) { this.LastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeNotEqualTo() { return LastSavedDateTimeNotEqualTo; } public BM_InputCustomFieldsQuery setLastSavedDateTimeNotEqualTo(Date value) { this.LastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getLastSavedDateTimeBetween() { return LastSavedDateTimeBetween; } public BM_InputCustomFieldsQuery setLastSavedDateTimeBetween(ArrayList value) { this.LastSavedDateTimeBetween = value; return this; } public ArrayList getLastSavedDateTimeIn() { return LastSavedDateTimeIn; } public BM_InputCustomFieldsQuery setLastSavedDateTimeIn(ArrayList value) { this.LastSavedDateTimeIn = value; return this; } public Integer getDisplayOrder() { return DisplayOrder; } public BM_InputCustomFieldsQuery setDisplayOrder(Integer value) { this.DisplayOrder = value; return this; } public Integer getDisplayOrderGreaterThanOrEqualTo() { return DisplayOrderGreaterThanOrEqualTo; } public BM_InputCustomFieldsQuery setDisplayOrderGreaterThanOrEqualTo(Integer value) { this.DisplayOrderGreaterThanOrEqualTo = value; return this; } public Integer getDisplayOrderGreaterThan() { return DisplayOrderGreaterThan; } public BM_InputCustomFieldsQuery setDisplayOrderGreaterThan(Integer value) { this.DisplayOrderGreaterThan = value; return this; } public Integer getDisplayOrderLessThan() { return DisplayOrderLessThan; } public BM_InputCustomFieldsQuery setDisplayOrderLessThan(Integer value) { this.DisplayOrderLessThan = value; return this; } public Integer getDisplayOrderLessThanOrEqualTo() { return DisplayOrderLessThanOrEqualTo; } public BM_InputCustomFieldsQuery setDisplayOrderLessThanOrEqualTo(Integer value) { this.DisplayOrderLessThanOrEqualTo = value; return this; } public Integer getDisplayOrderNotEqualTo() { return DisplayOrderNotEqualTo; } public BM_InputCustomFieldsQuery setDisplayOrderNotEqualTo(Integer value) { this.DisplayOrderNotEqualTo = value; return this; } public ArrayList getDisplayOrderBetween() { return DisplayOrderBetween; } public BM_InputCustomFieldsQuery setDisplayOrderBetween(ArrayList value) { this.DisplayOrderBetween = value; return this; } public ArrayList getDisplayOrderIn() { return DisplayOrderIn; } public BM_InputCustomFieldsQuery setDisplayOrderIn(ArrayList value) { this.DisplayOrderIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class BM_InputCustomValuesQuery extends QueryDb implements IReturn> { public String RecID = null; public String RecIDStartsWith = null; public String RecIDEndsWith = null; public String RecIDContains = null; public String RecIDLike = null; public ArrayList RecIDBetween = null; public ArrayList RecIDIn = null; public String BM_Inputs_RecID = null; public String BM_Inputs_RecIDStartsWith = null; public String BM_Inputs_RecIDEndsWith = null; public String BM_Inputs_RecIDContains = null; public String BM_Inputs_RecIDLike = null; public ArrayList BM_Inputs_RecIDBetween = null; public ArrayList BM_Inputs_RecIDIn = null; public String BM_InputCustomFields_RecID = null; public String BM_InputCustomFields_RecIDStartsWith = null; public String BM_InputCustomFields_RecIDEndsWith = null; public String BM_InputCustomFields_RecIDContains = null; public String BM_InputCustomFields_RecIDLike = null; public ArrayList BM_InputCustomFields_RecIDBetween = null; public ArrayList BM_InputCustomFields_RecIDIn = null; public String Contents = null; public String ContentsStartsWith = null; public String ContentsEndsWith = null; public String ContentsContains = null; public String ContentsLike = null; public ArrayList ContentsBetween = null; public ArrayList ContentsIn = null; public Date LastSavedDateTime = null; public Date LastSavedDateTimeGreaterThanOrEqualTo = null; public Date LastSavedDateTimeGreaterThan = null; public Date LastSavedDateTimeLessThan = null; public Date LastSavedDateTimeLessThanOrEqualTo = null; public Date LastSavedDateTimeNotEqualTo = null; public ArrayList LastSavedDateTimeBetween = null; public ArrayList LastSavedDateTimeIn = null; public String getRecID() { return RecID; } public BM_InputCustomValuesQuery setRecID(String value) { this.RecID = value; return this; } public String getRecIDStartsWith() { return RecIDStartsWith; } public BM_InputCustomValuesQuery setRecIDStartsWith(String value) { this.RecIDStartsWith = value; return this; } public String getRecIDEndsWith() { return RecIDEndsWith; } public BM_InputCustomValuesQuery setRecIDEndsWith(String value) { this.RecIDEndsWith = value; return this; } public String getRecIDContains() { return RecIDContains; } public BM_InputCustomValuesQuery setRecIDContains(String value) { this.RecIDContains = value; return this; } public String getRecIDLike() { return RecIDLike; } public BM_InputCustomValuesQuery setRecIDLike(String value) { this.RecIDLike = value; return this; } public ArrayList getRecIDBetween() { return RecIDBetween; } public BM_InputCustomValuesQuery setRecIDBetween(ArrayList value) { this.RecIDBetween = value; return this; } public ArrayList getRecIDIn() { return RecIDIn; } public BM_InputCustomValuesQuery setRecIDIn(ArrayList value) { this.RecIDIn = value; return this; } public String getBmInputsRecID() { return BM_Inputs_RecID; } public BM_InputCustomValuesQuery setBmInputsRecID(String value) { this.BM_Inputs_RecID = value; return this; } public String getBmInputsRecIDStartsWith() { return BM_Inputs_RecIDStartsWith; } public BM_InputCustomValuesQuery setBmInputsRecIDStartsWith(String value) { this.BM_Inputs_RecIDStartsWith = value; return this; } public String getBmInputsRecIDEndsWith() { return BM_Inputs_RecIDEndsWith; } public BM_InputCustomValuesQuery setBmInputsRecIDEndsWith(String value) { this.BM_Inputs_RecIDEndsWith = value; return this; } public String getBmInputsRecIDContains() { return BM_Inputs_RecIDContains; } public BM_InputCustomValuesQuery setBmInputsRecIDContains(String value) { this.BM_Inputs_RecIDContains = value; return this; } public String getBmInputsRecIDLike() { return BM_Inputs_RecIDLike; } public BM_InputCustomValuesQuery setBmInputsRecIDLike(String value) { this.BM_Inputs_RecIDLike = value; return this; } public ArrayList getBmInputsRecIDBetween() { return BM_Inputs_RecIDBetween; } public BM_InputCustomValuesQuery setBmInputsRecIDBetween(ArrayList value) { this.BM_Inputs_RecIDBetween = value; return this; } public ArrayList getBmInputsRecIDIn() { return BM_Inputs_RecIDIn; } public BM_InputCustomValuesQuery setBmInputsRecIDIn(ArrayList value) { this.BM_Inputs_RecIDIn = value; return this; } public String getBmInputCustomFieldsRecID() { return BM_InputCustomFields_RecID; } public BM_InputCustomValuesQuery setBmInputCustomFieldsRecID(String value) { this.BM_InputCustomFields_RecID = value; return this; } public String getBmInputCustomFieldsRecIDStartsWith() { return BM_InputCustomFields_RecIDStartsWith; } public BM_InputCustomValuesQuery setBmInputCustomFieldsRecIDStartsWith(String value) { this.BM_InputCustomFields_RecIDStartsWith = value; return this; } public String getBmInputCustomFieldsRecIDEndsWith() { return BM_InputCustomFields_RecIDEndsWith; } public BM_InputCustomValuesQuery setBmInputCustomFieldsRecIDEndsWith(String value) { this.BM_InputCustomFields_RecIDEndsWith = value; return this; } public String getBmInputCustomFieldsRecIDContains() { return BM_InputCustomFields_RecIDContains; } public BM_InputCustomValuesQuery setBmInputCustomFieldsRecIDContains(String value) { this.BM_InputCustomFields_RecIDContains = value; return this; } public String getBmInputCustomFieldsRecIDLike() { return BM_InputCustomFields_RecIDLike; } public BM_InputCustomValuesQuery setBmInputCustomFieldsRecIDLike(String value) { this.BM_InputCustomFields_RecIDLike = value; return this; } public ArrayList getBmInputCustomFieldsRecIDBetween() { return BM_InputCustomFields_RecIDBetween; } public BM_InputCustomValuesQuery setBmInputCustomFieldsRecIDBetween(ArrayList value) { this.BM_InputCustomFields_RecIDBetween = value; return this; } public ArrayList getBmInputCustomFieldsRecIDIn() { return BM_InputCustomFields_RecIDIn; } public BM_InputCustomValuesQuery setBmInputCustomFieldsRecIDIn(ArrayList value) { this.BM_InputCustomFields_RecIDIn = value; return this; } public String getContents() { return Contents; } public BM_InputCustomValuesQuery setContents(String value) { this.Contents = value; return this; } public String getContentsStartsWith() { return ContentsStartsWith; } public BM_InputCustomValuesQuery setContentsStartsWith(String value) { this.ContentsStartsWith = value; return this; } public String getContentsEndsWith() { return ContentsEndsWith; } public BM_InputCustomValuesQuery setContentsEndsWith(String value) { this.ContentsEndsWith = value; return this; } public String getContentsContains() { return ContentsContains; } public BM_InputCustomValuesQuery setContentsContains(String value) { this.ContentsContains = value; return this; } public String getContentsLike() { return ContentsLike; } public BM_InputCustomValuesQuery setContentsLike(String value) { this.ContentsLike = value; return this; } public ArrayList getContentsBetween() { return ContentsBetween; } public BM_InputCustomValuesQuery setContentsBetween(ArrayList value) { this.ContentsBetween = value; return this; } public ArrayList getContentsIn() { return ContentsIn; } public BM_InputCustomValuesQuery setContentsIn(ArrayList value) { this.ContentsIn = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public BM_InputCustomValuesQuery setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getLastSavedDateTimeGreaterThanOrEqualTo() { return LastSavedDateTimeGreaterThanOrEqualTo; } public BM_InputCustomValuesQuery setLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.LastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeGreaterThan() { return LastSavedDateTimeGreaterThan; } public BM_InputCustomValuesQuery setLastSavedDateTimeGreaterThan(Date value) { this.LastSavedDateTimeGreaterThan = value; return this; } public Date getLastSavedDateTimeLessThan() { return LastSavedDateTimeLessThan; } public BM_InputCustomValuesQuery setLastSavedDateTimeLessThan(Date value) { this.LastSavedDateTimeLessThan = value; return this; } public Date getLastSavedDateTimeLessThanOrEqualTo() { return LastSavedDateTimeLessThanOrEqualTo; } public BM_InputCustomValuesQuery setLastSavedDateTimeLessThanOrEqualTo(Date value) { this.LastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeNotEqualTo() { return LastSavedDateTimeNotEqualTo; } public BM_InputCustomValuesQuery setLastSavedDateTimeNotEqualTo(Date value) { this.LastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getLastSavedDateTimeBetween() { return LastSavedDateTimeBetween; } public BM_InputCustomValuesQuery setLastSavedDateTimeBetween(ArrayList value) { this.LastSavedDateTimeBetween = value; return this; } public ArrayList getLastSavedDateTimeIn() { return LastSavedDateTimeIn; } public BM_InputCustomValuesQuery setLastSavedDateTimeIn(ArrayList value) { this.LastSavedDateTimeIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class BM_InputsQuery extends QueryDb implements IReturn> { public String RecID = null; public String RecIDStartsWith = null; public String RecIDEndsWith = null; public String RecIDContains = null; public String RecIDLike = null; public ArrayList RecIDBetween = null; public ArrayList RecIDIn = null; public String BM_Stages_RecID = null; public String BM_Stages_RecIDStartsWith = null; public String BM_Stages_RecIDEndsWith = null; public String BM_Stages_RecIDContains = null; public String BM_Stages_RecIDLike = null; public ArrayList BM_Stages_RecIDBetween = null; public ArrayList BM_Stages_RecIDIn = null; public Integer ItemNo = null; public Integer ItemNoGreaterThanOrEqualTo = null; public Integer ItemNoGreaterThan = null; public Integer ItemNoLessThan = null; public Integer ItemNoLessThanOrEqualTo = null; public Integer ItemNoNotEqualTo = null; public ArrayList ItemNoBetween = null; public ArrayList ItemNoIn = null; public String InventoryID = null; public String InventoryIDStartsWith = null; public String InventoryIDEndsWith = null; public String InventoryIDContains = null; public String InventoryIDLike = null; public ArrayList InventoryIDBetween = null; public ArrayList InventoryIDIn = null; public Boolean IsRatio = null; public BigDecimal Quantity = null; public BigDecimal QuantityGreaterThanOrEqualTo = null; public BigDecimal QuantityGreaterThan = null; public BigDecimal QuantityLessThan = null; public BigDecimal QuantityLessThanOrEqualTo = null; public BigDecimal QuantityNotEqualTo = null; public ArrayList QuantityBetween = null; public ArrayList QuantityIn = null; public String Note = null; public String NoteStartsWith = null; public String NoteEndsWith = null; public String NoteContains = null; public String NoteLike = null; public ArrayList NoteBetween = null; public ArrayList NoteIn = null; public String SubAssembly = null; public String SubAssemblyStartsWith = null; public String SubAssemblyEndsWith = null; public String SubAssemblyContains = null; public String SubAssemblyLike = null; public ArrayList SubAssemblyBetween = null; public ArrayList SubAssemblyIn = null; public Short SubAssemblyExplodePolicy = null; public Short SubAssemblyExplodePolicyGreaterThanOrEqualTo = null; public Short SubAssemblyExplodePolicyGreaterThan = null; public Short SubAssemblyExplodePolicyLessThan = null; public Short SubAssemblyExplodePolicyLessThanOrEqualTo = null; public Short SubAssemblyExplodePolicyNotEqualTo = null; public ArrayList SubAssemblyExplodePolicyBetween = null; public ArrayList SubAssemblyExplodePolicyIn = null; public ArrayList RowHash = null; public String getRecID() { return RecID; } public BM_InputsQuery setRecID(String value) { this.RecID = value; return this; } public String getRecIDStartsWith() { return RecIDStartsWith; } public BM_InputsQuery setRecIDStartsWith(String value) { this.RecIDStartsWith = value; return this; } public String getRecIDEndsWith() { return RecIDEndsWith; } public BM_InputsQuery setRecIDEndsWith(String value) { this.RecIDEndsWith = value; return this; } public String getRecIDContains() { return RecIDContains; } public BM_InputsQuery setRecIDContains(String value) { this.RecIDContains = value; return this; } public String getRecIDLike() { return RecIDLike; } public BM_InputsQuery setRecIDLike(String value) { this.RecIDLike = value; return this; } public ArrayList getRecIDBetween() { return RecIDBetween; } public BM_InputsQuery setRecIDBetween(ArrayList value) { this.RecIDBetween = value; return this; } public ArrayList getRecIDIn() { return RecIDIn; } public BM_InputsQuery setRecIDIn(ArrayList value) { this.RecIDIn = value; return this; } public String getBmStagesRecID() { return BM_Stages_RecID; } public BM_InputsQuery setBmStagesRecID(String value) { this.BM_Stages_RecID = value; return this; } public String getBmStagesRecIDStartsWith() { return BM_Stages_RecIDStartsWith; } public BM_InputsQuery setBmStagesRecIDStartsWith(String value) { this.BM_Stages_RecIDStartsWith = value; return this; } public String getBmStagesRecIDEndsWith() { return BM_Stages_RecIDEndsWith; } public BM_InputsQuery setBmStagesRecIDEndsWith(String value) { this.BM_Stages_RecIDEndsWith = value; return this; } public String getBmStagesRecIDContains() { return BM_Stages_RecIDContains; } public BM_InputsQuery setBmStagesRecIDContains(String value) { this.BM_Stages_RecIDContains = value; return this; } public String getBmStagesRecIDLike() { return BM_Stages_RecIDLike; } public BM_InputsQuery setBmStagesRecIDLike(String value) { this.BM_Stages_RecIDLike = value; return this; } public ArrayList getBmStagesRecIDBetween() { return BM_Stages_RecIDBetween; } public BM_InputsQuery setBmStagesRecIDBetween(ArrayList value) { this.BM_Stages_RecIDBetween = value; return this; } public ArrayList getBmStagesRecIDIn() { return BM_Stages_RecIDIn; } public BM_InputsQuery setBmStagesRecIDIn(ArrayList value) { this.BM_Stages_RecIDIn = value; return this; } public Integer getItemNo() { return ItemNo; } public BM_InputsQuery setItemNo(Integer value) { this.ItemNo = value; return this; } public Integer getItemNoGreaterThanOrEqualTo() { return ItemNoGreaterThanOrEqualTo; } public BM_InputsQuery setItemNoGreaterThanOrEqualTo(Integer value) { this.ItemNoGreaterThanOrEqualTo = value; return this; } public Integer getItemNoGreaterThan() { return ItemNoGreaterThan; } public BM_InputsQuery setItemNoGreaterThan(Integer value) { this.ItemNoGreaterThan = value; return this; } public Integer getItemNoLessThan() { return ItemNoLessThan; } public BM_InputsQuery setItemNoLessThan(Integer value) { this.ItemNoLessThan = value; return this; } public Integer getItemNoLessThanOrEqualTo() { return ItemNoLessThanOrEqualTo; } public BM_InputsQuery setItemNoLessThanOrEqualTo(Integer value) { this.ItemNoLessThanOrEqualTo = value; return this; } public Integer getItemNoNotEqualTo() { return ItemNoNotEqualTo; } public BM_InputsQuery setItemNoNotEqualTo(Integer value) { this.ItemNoNotEqualTo = value; return this; } public ArrayList getItemNoBetween() { return ItemNoBetween; } public BM_InputsQuery setItemNoBetween(ArrayList value) { this.ItemNoBetween = value; return this; } public ArrayList getItemNoIn() { return ItemNoIn; } public BM_InputsQuery setItemNoIn(ArrayList value) { this.ItemNoIn = value; return this; } public String getInventoryID() { return InventoryID; } public BM_InputsQuery setInventoryID(String value) { this.InventoryID = value; return this; } public String getInventoryIDStartsWith() { return InventoryIDStartsWith; } public BM_InputsQuery setInventoryIDStartsWith(String value) { this.InventoryIDStartsWith = value; return this; } public String getInventoryIDEndsWith() { return InventoryIDEndsWith; } public BM_InputsQuery setInventoryIDEndsWith(String value) { this.InventoryIDEndsWith = value; return this; } public String getInventoryIDContains() { return InventoryIDContains; } public BM_InputsQuery setInventoryIDContains(String value) { this.InventoryIDContains = value; return this; } public String getInventoryIDLike() { return InventoryIDLike; } public BM_InputsQuery setInventoryIDLike(String value) { this.InventoryIDLike = value; return this; } public ArrayList getInventoryIDBetween() { return InventoryIDBetween; } public BM_InputsQuery setInventoryIDBetween(ArrayList value) { this.InventoryIDBetween = value; return this; } public ArrayList getInventoryIDIn() { return InventoryIDIn; } public BM_InputsQuery setInventoryIDIn(ArrayList value) { this.InventoryIDIn = value; return this; } public Boolean getIsRatio() { return IsRatio; } public BM_InputsQuery setIsRatio(Boolean value) { this.IsRatio = value; return this; } public BigDecimal getQuantity() { return Quantity; } public BM_InputsQuery setQuantity(BigDecimal value) { this.Quantity = value; return this; } public BigDecimal getQuantityGreaterThanOrEqualTo() { return QuantityGreaterThanOrEqualTo; } public BM_InputsQuery setQuantityGreaterThanOrEqualTo(BigDecimal value) { this.QuantityGreaterThanOrEqualTo = value; return this; } public BigDecimal getQuantityGreaterThan() { return QuantityGreaterThan; } public BM_InputsQuery setQuantityGreaterThan(BigDecimal value) { this.QuantityGreaterThan = value; return this; } public BigDecimal getQuantityLessThan() { return QuantityLessThan; } public BM_InputsQuery setQuantityLessThan(BigDecimal value) { this.QuantityLessThan = value; return this; } public BigDecimal getQuantityLessThanOrEqualTo() { return QuantityLessThanOrEqualTo; } public BM_InputsQuery setQuantityLessThanOrEqualTo(BigDecimal value) { this.QuantityLessThanOrEqualTo = value; return this; } public BigDecimal getQuantityNotEqualTo() { return QuantityNotEqualTo; } public BM_InputsQuery setQuantityNotEqualTo(BigDecimal value) { this.QuantityNotEqualTo = value; return this; } public ArrayList getQuantityBetween() { return QuantityBetween; } public BM_InputsQuery setQuantityBetween(ArrayList value) { this.QuantityBetween = value; return this; } public ArrayList getQuantityIn() { return QuantityIn; } public BM_InputsQuery setQuantityIn(ArrayList value) { this.QuantityIn = value; return this; } public String getNote() { return Note; } public BM_InputsQuery setNote(String value) { this.Note = value; return this; } public String getNoteStartsWith() { return NoteStartsWith; } public BM_InputsQuery setNoteStartsWith(String value) { this.NoteStartsWith = value; return this; } public String getNoteEndsWith() { return NoteEndsWith; } public BM_InputsQuery setNoteEndsWith(String value) { this.NoteEndsWith = value; return this; } public String getNoteContains() { return NoteContains; } public BM_InputsQuery setNoteContains(String value) { this.NoteContains = value; return this; } public String getNoteLike() { return NoteLike; } public BM_InputsQuery setNoteLike(String value) { this.NoteLike = value; return this; } public ArrayList getNoteBetween() { return NoteBetween; } public BM_InputsQuery setNoteBetween(ArrayList value) { this.NoteBetween = value; return this; } public ArrayList getNoteIn() { return NoteIn; } public BM_InputsQuery setNoteIn(ArrayList value) { this.NoteIn = value; return this; } public String getSubAssembly() { return SubAssembly; } public BM_InputsQuery setSubAssembly(String value) { this.SubAssembly = value; return this; } public String getSubAssemblyStartsWith() { return SubAssemblyStartsWith; } public BM_InputsQuery setSubAssemblyStartsWith(String value) { this.SubAssemblyStartsWith = value; return this; } public String getSubAssemblyEndsWith() { return SubAssemblyEndsWith; } public BM_InputsQuery setSubAssemblyEndsWith(String value) { this.SubAssemblyEndsWith = value; return this; } public String getSubAssemblyContains() { return SubAssemblyContains; } public BM_InputsQuery setSubAssemblyContains(String value) { this.SubAssemblyContains = value; return this; } public String getSubAssemblyLike() { return SubAssemblyLike; } public BM_InputsQuery setSubAssemblyLike(String value) { this.SubAssemblyLike = value; return this; } public ArrayList getSubAssemblyBetween() { return SubAssemblyBetween; } public BM_InputsQuery setSubAssemblyBetween(ArrayList value) { this.SubAssemblyBetween = value; return this; } public ArrayList getSubAssemblyIn() { return SubAssemblyIn; } public BM_InputsQuery setSubAssemblyIn(ArrayList value) { this.SubAssemblyIn = value; return this; } public Short getSubAssemblyExplodePolicy() { return SubAssemblyExplodePolicy; } public BM_InputsQuery setSubAssemblyExplodePolicy(Short value) { this.SubAssemblyExplodePolicy = value; return this; } public Short getSubAssemblyExplodePolicyGreaterThanOrEqualTo() { return SubAssemblyExplodePolicyGreaterThanOrEqualTo; } public BM_InputsQuery setSubAssemblyExplodePolicyGreaterThanOrEqualTo(Short value) { this.SubAssemblyExplodePolicyGreaterThanOrEqualTo = value; return this; } public Short getSubAssemblyExplodePolicyGreaterThan() { return SubAssemblyExplodePolicyGreaterThan; } public BM_InputsQuery setSubAssemblyExplodePolicyGreaterThan(Short value) { this.SubAssemblyExplodePolicyGreaterThan = value; return this; } public Short getSubAssemblyExplodePolicyLessThan() { return SubAssemblyExplodePolicyLessThan; } public BM_InputsQuery setSubAssemblyExplodePolicyLessThan(Short value) { this.SubAssemblyExplodePolicyLessThan = value; return this; } public Short getSubAssemblyExplodePolicyLessThanOrEqualTo() { return SubAssemblyExplodePolicyLessThanOrEqualTo; } public BM_InputsQuery setSubAssemblyExplodePolicyLessThanOrEqualTo(Short value) { this.SubAssemblyExplodePolicyLessThanOrEqualTo = value; return this; } public Short getSubAssemblyExplodePolicyNotEqualTo() { return SubAssemblyExplodePolicyNotEqualTo; } public BM_InputsQuery setSubAssemblyExplodePolicyNotEqualTo(Short value) { this.SubAssemblyExplodePolicyNotEqualTo = value; return this; } public ArrayList getSubAssemblyExplodePolicyBetween() { return SubAssemblyExplodePolicyBetween; } public BM_InputsQuery setSubAssemblyExplodePolicyBetween(ArrayList value) { this.SubAssemblyExplodePolicyBetween = value; return this; } public ArrayList getSubAssemblyExplodePolicyIn() { return SubAssemblyExplodePolicyIn; } public BM_InputsQuery setSubAssemblyExplodePolicyIn(ArrayList value) { this.SubAssemblyExplodePolicyIn = value; return this; } public ArrayList getRowHash() { return RowHash; } public BM_InputsQuery setRowHash(ArrayList value) { this.RowHash = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class BM_InstructionCustomFieldsQuery extends QueryDb implements IReturn> { public String RecID = null; public String RecIDStartsWith = null; public String RecIDEndsWith = null; public String RecIDContains = null; public String RecIDLike = null; public ArrayList RecIDBetween = null; public ArrayList RecIDIn = null; public String SettingName = null; public String SettingNameStartsWith = null; public String SettingNameEndsWith = null; public String SettingNameContains = null; public String SettingNameLike = null; public ArrayList SettingNameBetween = null; public ArrayList SettingNameIn = null; public String SettingDescription = null; public String SettingDescriptionStartsWith = null; public String SettingDescriptionEndsWith = null; public String SettingDescriptionContains = null; public String SettingDescriptionLike = null; public ArrayList SettingDescriptionBetween = null; public ArrayList SettingDescriptionIn = null; public Integer CellType = null; public Integer CellTypeGreaterThanOrEqualTo = null; public Integer CellTypeGreaterThan = null; public Integer CellTypeLessThan = null; public Integer CellTypeLessThanOrEqualTo = null; public Integer CellTypeNotEqualTo = null; public ArrayList CellTypeBetween = null; public ArrayList CellTypeIn = null; public String FieldParameter = null; public String FieldParameterStartsWith = null; public String FieldParameterEndsWith = null; public String FieldParameterContains = null; public String FieldParameterLike = null; public ArrayList FieldParameterBetween = null; public ArrayList FieldParameterIn = null; public UUID SY_Plugin_RecID = null; public ArrayList SY_Plugin_RecIDIn = null; public Date LastSavedDateTime = null; public Date LastSavedDateTimeGreaterThanOrEqualTo = null; public Date LastSavedDateTimeGreaterThan = null; public Date LastSavedDateTimeLessThan = null; public Date LastSavedDateTimeLessThanOrEqualTo = null; public Date LastSavedDateTimeNotEqualTo = null; public ArrayList LastSavedDateTimeBetween = null; public ArrayList LastSavedDateTimeIn = null; public Integer DisplayOrder = null; public Integer DisplayOrderGreaterThanOrEqualTo = null; public Integer DisplayOrderGreaterThan = null; public Integer DisplayOrderLessThan = null; public Integer DisplayOrderLessThanOrEqualTo = null; public Integer DisplayOrderNotEqualTo = null; public ArrayList DisplayOrderBetween = null; public ArrayList DisplayOrderIn = null; public String getRecID() { return RecID; } public BM_InstructionCustomFieldsQuery setRecID(String value) { this.RecID = value; return this; } public String getRecIDStartsWith() { return RecIDStartsWith; } public BM_InstructionCustomFieldsQuery setRecIDStartsWith(String value) { this.RecIDStartsWith = value; return this; } public String getRecIDEndsWith() { return RecIDEndsWith; } public BM_InstructionCustomFieldsQuery setRecIDEndsWith(String value) { this.RecIDEndsWith = value; return this; } public String getRecIDContains() { return RecIDContains; } public BM_InstructionCustomFieldsQuery setRecIDContains(String value) { this.RecIDContains = value; return this; } public String getRecIDLike() { return RecIDLike; } public BM_InstructionCustomFieldsQuery setRecIDLike(String value) { this.RecIDLike = value; return this; } public ArrayList getRecIDBetween() { return RecIDBetween; } public BM_InstructionCustomFieldsQuery setRecIDBetween(ArrayList value) { this.RecIDBetween = value; return this; } public ArrayList getRecIDIn() { return RecIDIn; } public BM_InstructionCustomFieldsQuery setRecIDIn(ArrayList value) { this.RecIDIn = value; return this; } public String getSettingName() { return SettingName; } public BM_InstructionCustomFieldsQuery setSettingName(String value) { this.SettingName = value; return this; } public String getSettingNameStartsWith() { return SettingNameStartsWith; } public BM_InstructionCustomFieldsQuery setSettingNameStartsWith(String value) { this.SettingNameStartsWith = value; return this; } public String getSettingNameEndsWith() { return SettingNameEndsWith; } public BM_InstructionCustomFieldsQuery setSettingNameEndsWith(String value) { this.SettingNameEndsWith = value; return this; } public String getSettingNameContains() { return SettingNameContains; } public BM_InstructionCustomFieldsQuery setSettingNameContains(String value) { this.SettingNameContains = value; return this; } public String getSettingNameLike() { return SettingNameLike; } public BM_InstructionCustomFieldsQuery setSettingNameLike(String value) { this.SettingNameLike = value; return this; } public ArrayList getSettingNameBetween() { return SettingNameBetween; } public BM_InstructionCustomFieldsQuery setSettingNameBetween(ArrayList value) { this.SettingNameBetween = value; return this; } public ArrayList getSettingNameIn() { return SettingNameIn; } public BM_InstructionCustomFieldsQuery setSettingNameIn(ArrayList value) { this.SettingNameIn = value; return this; } public String getSettingDescription() { return SettingDescription; } public BM_InstructionCustomFieldsQuery setSettingDescription(String value) { this.SettingDescription = value; return this; } public String getSettingDescriptionStartsWith() { return SettingDescriptionStartsWith; } public BM_InstructionCustomFieldsQuery setSettingDescriptionStartsWith(String value) { this.SettingDescriptionStartsWith = value; return this; } public String getSettingDescriptionEndsWith() { return SettingDescriptionEndsWith; } public BM_InstructionCustomFieldsQuery setSettingDescriptionEndsWith(String value) { this.SettingDescriptionEndsWith = value; return this; } public String getSettingDescriptionContains() { return SettingDescriptionContains; } public BM_InstructionCustomFieldsQuery setSettingDescriptionContains(String value) { this.SettingDescriptionContains = value; return this; } public String getSettingDescriptionLike() { return SettingDescriptionLike; } public BM_InstructionCustomFieldsQuery setSettingDescriptionLike(String value) { this.SettingDescriptionLike = value; return this; } public ArrayList getSettingDescriptionBetween() { return SettingDescriptionBetween; } public BM_InstructionCustomFieldsQuery setSettingDescriptionBetween(ArrayList value) { this.SettingDescriptionBetween = value; return this; } public ArrayList getSettingDescriptionIn() { return SettingDescriptionIn; } public BM_InstructionCustomFieldsQuery setSettingDescriptionIn(ArrayList value) { this.SettingDescriptionIn = value; return this; } public Integer getCellType() { return CellType; } public BM_InstructionCustomFieldsQuery setCellType(Integer value) { this.CellType = value; return this; } public Integer getCellTypeGreaterThanOrEqualTo() { return CellTypeGreaterThanOrEqualTo; } public BM_InstructionCustomFieldsQuery setCellTypeGreaterThanOrEqualTo(Integer value) { this.CellTypeGreaterThanOrEqualTo = value; return this; } public Integer getCellTypeGreaterThan() { return CellTypeGreaterThan; } public BM_InstructionCustomFieldsQuery setCellTypeGreaterThan(Integer value) { this.CellTypeGreaterThan = value; return this; } public Integer getCellTypeLessThan() { return CellTypeLessThan; } public BM_InstructionCustomFieldsQuery setCellTypeLessThan(Integer value) { this.CellTypeLessThan = value; return this; } public Integer getCellTypeLessThanOrEqualTo() { return CellTypeLessThanOrEqualTo; } public BM_InstructionCustomFieldsQuery setCellTypeLessThanOrEqualTo(Integer value) { this.CellTypeLessThanOrEqualTo = value; return this; } public Integer getCellTypeNotEqualTo() { return CellTypeNotEqualTo; } public BM_InstructionCustomFieldsQuery setCellTypeNotEqualTo(Integer value) { this.CellTypeNotEqualTo = value; return this; } public ArrayList getCellTypeBetween() { return CellTypeBetween; } public BM_InstructionCustomFieldsQuery setCellTypeBetween(ArrayList value) { this.CellTypeBetween = value; return this; } public ArrayList getCellTypeIn() { return CellTypeIn; } public BM_InstructionCustomFieldsQuery setCellTypeIn(ArrayList value) { this.CellTypeIn = value; return this; } public String getFieldParameter() { return FieldParameter; } public BM_InstructionCustomFieldsQuery setFieldParameter(String value) { this.FieldParameter = value; return this; } public String getFieldParameterStartsWith() { return FieldParameterStartsWith; } public BM_InstructionCustomFieldsQuery setFieldParameterStartsWith(String value) { this.FieldParameterStartsWith = value; return this; } public String getFieldParameterEndsWith() { return FieldParameterEndsWith; } public BM_InstructionCustomFieldsQuery setFieldParameterEndsWith(String value) { this.FieldParameterEndsWith = value; return this; } public String getFieldParameterContains() { return FieldParameterContains; } public BM_InstructionCustomFieldsQuery setFieldParameterContains(String value) { this.FieldParameterContains = value; return this; } public String getFieldParameterLike() { return FieldParameterLike; } public BM_InstructionCustomFieldsQuery setFieldParameterLike(String value) { this.FieldParameterLike = value; return this; } public ArrayList getFieldParameterBetween() { return FieldParameterBetween; } public BM_InstructionCustomFieldsQuery setFieldParameterBetween(ArrayList value) { this.FieldParameterBetween = value; return this; } public ArrayList getFieldParameterIn() { return FieldParameterIn; } public BM_InstructionCustomFieldsQuery setFieldParameterIn(ArrayList value) { this.FieldParameterIn = value; return this; } public UUID getSyPluginRecID() { return SY_Plugin_RecID; } public BM_InstructionCustomFieldsQuery setSyPluginRecID(UUID value) { this.SY_Plugin_RecID = value; return this; } public ArrayList getSyPluginRecIDIn() { return SY_Plugin_RecIDIn; } public BM_InstructionCustomFieldsQuery setSyPluginRecIDIn(ArrayList value) { this.SY_Plugin_RecIDIn = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public BM_InstructionCustomFieldsQuery setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getLastSavedDateTimeGreaterThanOrEqualTo() { return LastSavedDateTimeGreaterThanOrEqualTo; } public BM_InstructionCustomFieldsQuery setLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.LastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeGreaterThan() { return LastSavedDateTimeGreaterThan; } public BM_InstructionCustomFieldsQuery setLastSavedDateTimeGreaterThan(Date value) { this.LastSavedDateTimeGreaterThan = value; return this; } public Date getLastSavedDateTimeLessThan() { return LastSavedDateTimeLessThan; } public BM_InstructionCustomFieldsQuery setLastSavedDateTimeLessThan(Date value) { this.LastSavedDateTimeLessThan = value; return this; } public Date getLastSavedDateTimeLessThanOrEqualTo() { return LastSavedDateTimeLessThanOrEqualTo; } public BM_InstructionCustomFieldsQuery setLastSavedDateTimeLessThanOrEqualTo(Date value) { this.LastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeNotEqualTo() { return LastSavedDateTimeNotEqualTo; } public BM_InstructionCustomFieldsQuery setLastSavedDateTimeNotEqualTo(Date value) { this.LastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getLastSavedDateTimeBetween() { return LastSavedDateTimeBetween; } public BM_InstructionCustomFieldsQuery setLastSavedDateTimeBetween(ArrayList value) { this.LastSavedDateTimeBetween = value; return this; } public ArrayList getLastSavedDateTimeIn() { return LastSavedDateTimeIn; } public BM_InstructionCustomFieldsQuery setLastSavedDateTimeIn(ArrayList value) { this.LastSavedDateTimeIn = value; return this; } public Integer getDisplayOrder() { return DisplayOrder; } public BM_InstructionCustomFieldsQuery setDisplayOrder(Integer value) { this.DisplayOrder = value; return this; } public Integer getDisplayOrderGreaterThanOrEqualTo() { return DisplayOrderGreaterThanOrEqualTo; } public BM_InstructionCustomFieldsQuery setDisplayOrderGreaterThanOrEqualTo(Integer value) { this.DisplayOrderGreaterThanOrEqualTo = value; return this; } public Integer getDisplayOrderGreaterThan() { return DisplayOrderGreaterThan; } public BM_InstructionCustomFieldsQuery setDisplayOrderGreaterThan(Integer value) { this.DisplayOrderGreaterThan = value; return this; } public Integer getDisplayOrderLessThan() { return DisplayOrderLessThan; } public BM_InstructionCustomFieldsQuery setDisplayOrderLessThan(Integer value) { this.DisplayOrderLessThan = value; return this; } public Integer getDisplayOrderLessThanOrEqualTo() { return DisplayOrderLessThanOrEqualTo; } public BM_InstructionCustomFieldsQuery setDisplayOrderLessThanOrEqualTo(Integer value) { this.DisplayOrderLessThanOrEqualTo = value; return this; } public Integer getDisplayOrderNotEqualTo() { return DisplayOrderNotEqualTo; } public BM_InstructionCustomFieldsQuery setDisplayOrderNotEqualTo(Integer value) { this.DisplayOrderNotEqualTo = value; return this; } public ArrayList getDisplayOrderBetween() { return DisplayOrderBetween; } public BM_InstructionCustomFieldsQuery setDisplayOrderBetween(ArrayList value) { this.DisplayOrderBetween = value; return this; } public ArrayList getDisplayOrderIn() { return DisplayOrderIn; } public BM_InstructionCustomFieldsQuery setDisplayOrderIn(ArrayList value) { this.DisplayOrderIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class BM_InstructionCustomValuesQuery extends QueryDb implements IReturn> { public String RecID = null; public String RecIDStartsWith = null; public String RecIDEndsWith = null; public String RecIDContains = null; public String RecIDLike = null; public ArrayList RecIDBetween = null; public ArrayList RecIDIn = null; public String BM_Instructions_RecID = null; public String BM_Instructions_RecIDStartsWith = null; public String BM_Instructions_RecIDEndsWith = null; public String BM_Instructions_RecIDContains = null; public String BM_Instructions_RecIDLike = null; public ArrayList BM_Instructions_RecIDBetween = null; public ArrayList BM_Instructions_RecIDIn = null; public String BM_InstructionCustomFields_RecID = null; public String BM_InstructionCustomFields_RecIDStartsWith = null; public String BM_InstructionCustomFields_RecIDEndsWith = null; public String BM_InstructionCustomFields_RecIDContains = null; public String BM_InstructionCustomFields_RecIDLike = null; public ArrayList BM_InstructionCustomFields_RecIDBetween = null; public ArrayList BM_InstructionCustomFields_RecIDIn = null; public String Contents = null; public String ContentsStartsWith = null; public String ContentsEndsWith = null; public String ContentsContains = null; public String ContentsLike = null; public ArrayList ContentsBetween = null; public ArrayList ContentsIn = null; public Date LastSavedDateTime = null; public Date LastSavedDateTimeGreaterThanOrEqualTo = null; public Date LastSavedDateTimeGreaterThan = null; public Date LastSavedDateTimeLessThan = null; public Date LastSavedDateTimeLessThanOrEqualTo = null; public Date LastSavedDateTimeNotEqualTo = null; public ArrayList LastSavedDateTimeBetween = null; public ArrayList LastSavedDateTimeIn = null; public String getRecID() { return RecID; } public BM_InstructionCustomValuesQuery setRecID(String value) { this.RecID = value; return this; } public String getRecIDStartsWith() { return RecIDStartsWith; } public BM_InstructionCustomValuesQuery setRecIDStartsWith(String value) { this.RecIDStartsWith = value; return this; } public String getRecIDEndsWith() { return RecIDEndsWith; } public BM_InstructionCustomValuesQuery setRecIDEndsWith(String value) { this.RecIDEndsWith = value; return this; } public String getRecIDContains() { return RecIDContains; } public BM_InstructionCustomValuesQuery setRecIDContains(String value) { this.RecIDContains = value; return this; } public String getRecIDLike() { return RecIDLike; } public BM_InstructionCustomValuesQuery setRecIDLike(String value) { this.RecIDLike = value; return this; } public ArrayList getRecIDBetween() { return RecIDBetween; } public BM_InstructionCustomValuesQuery setRecIDBetween(ArrayList value) { this.RecIDBetween = value; return this; } public ArrayList getRecIDIn() { return RecIDIn; } public BM_InstructionCustomValuesQuery setRecIDIn(ArrayList value) { this.RecIDIn = value; return this; } public String getBmInstructionsRecID() { return BM_Instructions_RecID; } public BM_InstructionCustomValuesQuery setBmInstructionsRecID(String value) { this.BM_Instructions_RecID = value; return this; } public String getBmInstructionsRecIDStartsWith() { return BM_Instructions_RecIDStartsWith; } public BM_InstructionCustomValuesQuery setBmInstructionsRecIDStartsWith(String value) { this.BM_Instructions_RecIDStartsWith = value; return this; } public String getBmInstructionsRecIDEndsWith() { return BM_Instructions_RecIDEndsWith; } public BM_InstructionCustomValuesQuery setBmInstructionsRecIDEndsWith(String value) { this.BM_Instructions_RecIDEndsWith = value; return this; } public String getBmInstructionsRecIDContains() { return BM_Instructions_RecIDContains; } public BM_InstructionCustomValuesQuery setBmInstructionsRecIDContains(String value) { this.BM_Instructions_RecIDContains = value; return this; } public String getBmInstructionsRecIDLike() { return BM_Instructions_RecIDLike; } public BM_InstructionCustomValuesQuery setBmInstructionsRecIDLike(String value) { this.BM_Instructions_RecIDLike = value; return this; } public ArrayList getBmInstructionsRecIDBetween() { return BM_Instructions_RecIDBetween; } public BM_InstructionCustomValuesQuery setBmInstructionsRecIDBetween(ArrayList value) { this.BM_Instructions_RecIDBetween = value; return this; } public ArrayList getBmInstructionsRecIDIn() { return BM_Instructions_RecIDIn; } public BM_InstructionCustomValuesQuery setBmInstructionsRecIDIn(ArrayList value) { this.BM_Instructions_RecIDIn = value; return this; } public String getBmInstructionCustomFieldsRecID() { return BM_InstructionCustomFields_RecID; } public BM_InstructionCustomValuesQuery setBmInstructionCustomFieldsRecID(String value) { this.BM_InstructionCustomFields_RecID = value; return this; } public String getBmInstructionCustomFieldsRecIDStartsWith() { return BM_InstructionCustomFields_RecIDStartsWith; } public BM_InstructionCustomValuesQuery setBmInstructionCustomFieldsRecIDStartsWith(String value) { this.BM_InstructionCustomFields_RecIDStartsWith = value; return this; } public String getBmInstructionCustomFieldsRecIDEndsWith() { return BM_InstructionCustomFields_RecIDEndsWith; } public BM_InstructionCustomValuesQuery setBmInstructionCustomFieldsRecIDEndsWith(String value) { this.BM_InstructionCustomFields_RecIDEndsWith = value; return this; } public String getBmInstructionCustomFieldsRecIDContains() { return BM_InstructionCustomFields_RecIDContains; } public BM_InstructionCustomValuesQuery setBmInstructionCustomFieldsRecIDContains(String value) { this.BM_InstructionCustomFields_RecIDContains = value; return this; } public String getBmInstructionCustomFieldsRecIDLike() { return BM_InstructionCustomFields_RecIDLike; } public BM_InstructionCustomValuesQuery setBmInstructionCustomFieldsRecIDLike(String value) { this.BM_InstructionCustomFields_RecIDLike = value; return this; } public ArrayList getBmInstructionCustomFieldsRecIDBetween() { return BM_InstructionCustomFields_RecIDBetween; } public BM_InstructionCustomValuesQuery setBmInstructionCustomFieldsRecIDBetween(ArrayList value) { this.BM_InstructionCustomFields_RecIDBetween = value; return this; } public ArrayList getBmInstructionCustomFieldsRecIDIn() { return BM_InstructionCustomFields_RecIDIn; } public BM_InstructionCustomValuesQuery setBmInstructionCustomFieldsRecIDIn(ArrayList value) { this.BM_InstructionCustomFields_RecIDIn = value; return this; } public String getContents() { return Contents; } public BM_InstructionCustomValuesQuery setContents(String value) { this.Contents = value; return this; } public String getContentsStartsWith() { return ContentsStartsWith; } public BM_InstructionCustomValuesQuery setContentsStartsWith(String value) { this.ContentsStartsWith = value; return this; } public String getContentsEndsWith() { return ContentsEndsWith; } public BM_InstructionCustomValuesQuery setContentsEndsWith(String value) { this.ContentsEndsWith = value; return this; } public String getContentsContains() { return ContentsContains; } public BM_InstructionCustomValuesQuery setContentsContains(String value) { this.ContentsContains = value; return this; } public String getContentsLike() { return ContentsLike; } public BM_InstructionCustomValuesQuery setContentsLike(String value) { this.ContentsLike = value; return this; } public ArrayList getContentsBetween() { return ContentsBetween; } public BM_InstructionCustomValuesQuery setContentsBetween(ArrayList value) { this.ContentsBetween = value; return this; } public ArrayList getContentsIn() { return ContentsIn; } public BM_InstructionCustomValuesQuery setContentsIn(ArrayList value) { this.ContentsIn = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public BM_InstructionCustomValuesQuery setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getLastSavedDateTimeGreaterThanOrEqualTo() { return LastSavedDateTimeGreaterThanOrEqualTo; } public BM_InstructionCustomValuesQuery setLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.LastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeGreaterThan() { return LastSavedDateTimeGreaterThan; } public BM_InstructionCustomValuesQuery setLastSavedDateTimeGreaterThan(Date value) { this.LastSavedDateTimeGreaterThan = value; return this; } public Date getLastSavedDateTimeLessThan() { return LastSavedDateTimeLessThan; } public BM_InstructionCustomValuesQuery setLastSavedDateTimeLessThan(Date value) { this.LastSavedDateTimeLessThan = value; return this; } public Date getLastSavedDateTimeLessThanOrEqualTo() { return LastSavedDateTimeLessThanOrEqualTo; } public BM_InstructionCustomValuesQuery setLastSavedDateTimeLessThanOrEqualTo(Date value) { this.LastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeNotEqualTo() { return LastSavedDateTimeNotEqualTo; } public BM_InstructionCustomValuesQuery setLastSavedDateTimeNotEqualTo(Date value) { this.LastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getLastSavedDateTimeBetween() { return LastSavedDateTimeBetween; } public BM_InstructionCustomValuesQuery setLastSavedDateTimeBetween(ArrayList value) { this.LastSavedDateTimeBetween = value; return this; } public ArrayList getLastSavedDateTimeIn() { return LastSavedDateTimeIn; } public BM_InstructionCustomValuesQuery setLastSavedDateTimeIn(ArrayList value) { this.LastSavedDateTimeIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class BM_InstructionsQuery extends QueryDb implements IReturn> { public String RecID = null; public String RecIDStartsWith = null; public String RecIDEndsWith = null; public String RecIDContains = null; public String RecIDLike = null; public ArrayList RecIDBetween = null; public ArrayList RecIDIn = null; public String BM_Stages_RecID = null; public String BM_Stages_RecIDStartsWith = null; public String BM_Stages_RecIDEndsWith = null; public String BM_Stages_RecIDContains = null; public String BM_Stages_RecIDLike = null; public ArrayList BM_Stages_RecIDBetween = null; public ArrayList BM_Stages_RecIDIn = null; public Integer ItemNo = null; public Integer ItemNoGreaterThanOrEqualTo = null; public Integer ItemNoGreaterThan = null; public Integer ItemNoLessThan = null; public Integer ItemNoLessThanOrEqualTo = null; public Integer ItemNoNotEqualTo = null; public ArrayList ItemNoBetween = null; public ArrayList ItemNoIn = null; public String InstructionText = null; public String InstructionTextStartsWith = null; public String InstructionTextEndsWith = null; public String InstructionTextContains = null; public String InstructionTextLike = null; public ArrayList InstructionTextBetween = null; public ArrayList InstructionTextIn = null; public ArrayList RowHash = null; public String getRecID() { return RecID; } public BM_InstructionsQuery setRecID(String value) { this.RecID = value; return this; } public String getRecIDStartsWith() { return RecIDStartsWith; } public BM_InstructionsQuery setRecIDStartsWith(String value) { this.RecIDStartsWith = value; return this; } public String getRecIDEndsWith() { return RecIDEndsWith; } public BM_InstructionsQuery setRecIDEndsWith(String value) { this.RecIDEndsWith = value; return this; } public String getRecIDContains() { return RecIDContains; } public BM_InstructionsQuery setRecIDContains(String value) { this.RecIDContains = value; return this; } public String getRecIDLike() { return RecIDLike; } public BM_InstructionsQuery setRecIDLike(String value) { this.RecIDLike = value; return this; } public ArrayList getRecIDBetween() { return RecIDBetween; } public BM_InstructionsQuery setRecIDBetween(ArrayList value) { this.RecIDBetween = value; return this; } public ArrayList getRecIDIn() { return RecIDIn; } public BM_InstructionsQuery setRecIDIn(ArrayList value) { this.RecIDIn = value; return this; } public String getBmStagesRecID() { return BM_Stages_RecID; } public BM_InstructionsQuery setBmStagesRecID(String value) { this.BM_Stages_RecID = value; return this; } public String getBmStagesRecIDStartsWith() { return BM_Stages_RecIDStartsWith; } public BM_InstructionsQuery setBmStagesRecIDStartsWith(String value) { this.BM_Stages_RecIDStartsWith = value; return this; } public String getBmStagesRecIDEndsWith() { return BM_Stages_RecIDEndsWith; } public BM_InstructionsQuery setBmStagesRecIDEndsWith(String value) { this.BM_Stages_RecIDEndsWith = value; return this; } public String getBmStagesRecIDContains() { return BM_Stages_RecIDContains; } public BM_InstructionsQuery setBmStagesRecIDContains(String value) { this.BM_Stages_RecIDContains = value; return this; } public String getBmStagesRecIDLike() { return BM_Stages_RecIDLike; } public BM_InstructionsQuery setBmStagesRecIDLike(String value) { this.BM_Stages_RecIDLike = value; return this; } public ArrayList getBmStagesRecIDBetween() { return BM_Stages_RecIDBetween; } public BM_InstructionsQuery setBmStagesRecIDBetween(ArrayList value) { this.BM_Stages_RecIDBetween = value; return this; } public ArrayList getBmStagesRecIDIn() { return BM_Stages_RecIDIn; } public BM_InstructionsQuery setBmStagesRecIDIn(ArrayList value) { this.BM_Stages_RecIDIn = value; return this; } public Integer getItemNo() { return ItemNo; } public BM_InstructionsQuery setItemNo(Integer value) { this.ItemNo = value; return this; } public Integer getItemNoGreaterThanOrEqualTo() { return ItemNoGreaterThanOrEqualTo; } public BM_InstructionsQuery setItemNoGreaterThanOrEqualTo(Integer value) { this.ItemNoGreaterThanOrEqualTo = value; return this; } public Integer getItemNoGreaterThan() { return ItemNoGreaterThan; } public BM_InstructionsQuery setItemNoGreaterThan(Integer value) { this.ItemNoGreaterThan = value; return this; } public Integer getItemNoLessThan() { return ItemNoLessThan; } public BM_InstructionsQuery setItemNoLessThan(Integer value) { this.ItemNoLessThan = value; return this; } public Integer getItemNoLessThanOrEqualTo() { return ItemNoLessThanOrEqualTo; } public BM_InstructionsQuery setItemNoLessThanOrEqualTo(Integer value) { this.ItemNoLessThanOrEqualTo = value; return this; } public Integer getItemNoNotEqualTo() { return ItemNoNotEqualTo; } public BM_InstructionsQuery setItemNoNotEqualTo(Integer value) { this.ItemNoNotEqualTo = value; return this; } public ArrayList getItemNoBetween() { return ItemNoBetween; } public BM_InstructionsQuery setItemNoBetween(ArrayList value) { this.ItemNoBetween = value; return this; } public ArrayList getItemNoIn() { return ItemNoIn; } public BM_InstructionsQuery setItemNoIn(ArrayList value) { this.ItemNoIn = value; return this; } public String getInstructionText() { return InstructionText; } public BM_InstructionsQuery setInstructionText(String value) { this.InstructionText = value; return this; } public String getInstructionTextStartsWith() { return InstructionTextStartsWith; } public BM_InstructionsQuery setInstructionTextStartsWith(String value) { this.InstructionTextStartsWith = value; return this; } public String getInstructionTextEndsWith() { return InstructionTextEndsWith; } public BM_InstructionsQuery setInstructionTextEndsWith(String value) { this.InstructionTextEndsWith = value; return this; } public String getInstructionTextContains() { return InstructionTextContains; } public BM_InstructionsQuery setInstructionTextContains(String value) { this.InstructionTextContains = value; return this; } public String getInstructionTextLike() { return InstructionTextLike; } public BM_InstructionsQuery setInstructionTextLike(String value) { this.InstructionTextLike = value; return this; } public ArrayList getInstructionTextBetween() { return InstructionTextBetween; } public BM_InstructionsQuery setInstructionTextBetween(ArrayList value) { this.InstructionTextBetween = value; return this; } public ArrayList getInstructionTextIn() { return InstructionTextIn; } public BM_InstructionsQuery setInstructionTextIn(ArrayList value) { this.InstructionTextIn = value; return this; } public ArrayList getRowHash() { return RowHash; } public BM_InstructionsQuery setRowHash(ArrayList value) { this.RowHash = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @Route(Path="/Queries/BM_Main", Verbs="GET") @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class BM_MainQuery extends QueryDb implements IReturn> { public String RecID = null; public String RecIDStartsWith = null; public String RecIDEndsWith = null; public String RecIDContains = null; public String RecIDLike = null; public ArrayList RecIDBetween = null; public ArrayList RecIDIn = null; public String BillNo = null; public String BillNoStartsWith = null; public String BillNoEndsWith = null; public String BillNoContains = null; public String BillNoLike = null; public ArrayList BillNoBetween = null; public ArrayList BillNoIn = null; public String Description = null; public String DescriptionStartsWith = null; public String DescriptionEndsWith = null; public String DescriptionContains = null; public String DescriptionLike = null; public ArrayList DescriptionBetween = null; public ArrayList DescriptionIn = null; public Boolean IsEnabled = null; public Date LastSavedDateTime = null; public Date LastSavedDateTimeGreaterThanOrEqualTo = null; public Date LastSavedDateTimeGreaterThan = null; public Date LastSavedDateTimeLessThan = null; public Date LastSavedDateTimeLessThanOrEqualTo = null; public Date LastSavedDateTimeNotEqualTo = null; public ArrayList LastSavedDateTimeBetween = null; public ArrayList LastSavedDateTimeIn = null; public ArrayList RowHash = null; public String BM_ProductionLine_RecID = null; public String BM_ProductionLine_RecIDStartsWith = null; public String BM_ProductionLine_RecIDEndsWith = null; public String BM_ProductionLine_RecIDContains = null; public String BM_ProductionLine_RecIDLike = null; public ArrayList BM_ProductionLine_RecIDBetween = null; public ArrayList BM_ProductionLine_RecIDIn = null; public String getRecID() { return RecID; } public BM_MainQuery setRecID(String value) { this.RecID = value; return this; } public String getRecIDStartsWith() { return RecIDStartsWith; } public BM_MainQuery setRecIDStartsWith(String value) { this.RecIDStartsWith = value; return this; } public String getRecIDEndsWith() { return RecIDEndsWith; } public BM_MainQuery setRecIDEndsWith(String value) { this.RecIDEndsWith = value; return this; } public String getRecIDContains() { return RecIDContains; } public BM_MainQuery setRecIDContains(String value) { this.RecIDContains = value; return this; } public String getRecIDLike() { return RecIDLike; } public BM_MainQuery setRecIDLike(String value) { this.RecIDLike = value; return this; } public ArrayList getRecIDBetween() { return RecIDBetween; } public BM_MainQuery setRecIDBetween(ArrayList value) { this.RecIDBetween = value; return this; } public ArrayList getRecIDIn() { return RecIDIn; } public BM_MainQuery setRecIDIn(ArrayList value) { this.RecIDIn = value; return this; } public String getBillNo() { return BillNo; } public BM_MainQuery setBillNo(String value) { this.BillNo = value; return this; } public String getBillNoStartsWith() { return BillNoStartsWith; } public BM_MainQuery setBillNoStartsWith(String value) { this.BillNoStartsWith = value; return this; } public String getBillNoEndsWith() { return BillNoEndsWith; } public BM_MainQuery setBillNoEndsWith(String value) { this.BillNoEndsWith = value; return this; } public String getBillNoContains() { return BillNoContains; } public BM_MainQuery setBillNoContains(String value) { this.BillNoContains = value; return this; } public String getBillNoLike() { return BillNoLike; } public BM_MainQuery setBillNoLike(String value) { this.BillNoLike = value; return this; } public ArrayList getBillNoBetween() { return BillNoBetween; } public BM_MainQuery setBillNoBetween(ArrayList value) { this.BillNoBetween = value; return this; } public ArrayList getBillNoIn() { return BillNoIn; } public BM_MainQuery setBillNoIn(ArrayList value) { this.BillNoIn = value; return this; } public String getDescription() { return Description; } public BM_MainQuery setDescription(String value) { this.Description = value; return this; } public String getDescriptionStartsWith() { return DescriptionStartsWith; } public BM_MainQuery setDescriptionStartsWith(String value) { this.DescriptionStartsWith = value; return this; } public String getDescriptionEndsWith() { return DescriptionEndsWith; } public BM_MainQuery setDescriptionEndsWith(String value) { this.DescriptionEndsWith = value; return this; } public String getDescriptionContains() { return DescriptionContains; } public BM_MainQuery setDescriptionContains(String value) { this.DescriptionContains = value; return this; } public String getDescriptionLike() { return DescriptionLike; } public BM_MainQuery setDescriptionLike(String value) { this.DescriptionLike = value; return this; } public ArrayList getDescriptionBetween() { return DescriptionBetween; } public BM_MainQuery setDescriptionBetween(ArrayList value) { this.DescriptionBetween = value; return this; } public ArrayList getDescriptionIn() { return DescriptionIn; } public BM_MainQuery setDescriptionIn(ArrayList value) { this.DescriptionIn = value; return this; } public Boolean getIsEnabled() { return IsEnabled; } public BM_MainQuery setIsEnabled(Boolean value) { this.IsEnabled = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public BM_MainQuery setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getLastSavedDateTimeGreaterThanOrEqualTo() { return LastSavedDateTimeGreaterThanOrEqualTo; } public BM_MainQuery setLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.LastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeGreaterThan() { return LastSavedDateTimeGreaterThan; } public BM_MainQuery setLastSavedDateTimeGreaterThan(Date value) { this.LastSavedDateTimeGreaterThan = value; return this; } public Date getLastSavedDateTimeLessThan() { return LastSavedDateTimeLessThan; } public BM_MainQuery setLastSavedDateTimeLessThan(Date value) { this.LastSavedDateTimeLessThan = value; return this; } public Date getLastSavedDateTimeLessThanOrEqualTo() { return LastSavedDateTimeLessThanOrEqualTo; } public BM_MainQuery setLastSavedDateTimeLessThanOrEqualTo(Date value) { this.LastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeNotEqualTo() { return LastSavedDateTimeNotEqualTo; } public BM_MainQuery setLastSavedDateTimeNotEqualTo(Date value) { this.LastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getLastSavedDateTimeBetween() { return LastSavedDateTimeBetween; } public BM_MainQuery setLastSavedDateTimeBetween(ArrayList value) { this.LastSavedDateTimeBetween = value; return this; } public ArrayList getLastSavedDateTimeIn() { return LastSavedDateTimeIn; } public BM_MainQuery setLastSavedDateTimeIn(ArrayList value) { this.LastSavedDateTimeIn = value; return this; } public ArrayList getRowHash() { return RowHash; } public BM_MainQuery setRowHash(ArrayList value) { this.RowHash = value; return this; } public String getBmProductionLineRecID() { return BM_ProductionLine_RecID; } public BM_MainQuery setBmProductionLineRecID(String value) { this.BM_ProductionLine_RecID = value; return this; } public String getBmProductionLineRecIDStartsWith() { return BM_ProductionLine_RecIDStartsWith; } public BM_MainQuery setBmProductionLineRecIDStartsWith(String value) { this.BM_ProductionLine_RecIDStartsWith = value; return this; } public String getBmProductionLineRecIDEndsWith() { return BM_ProductionLine_RecIDEndsWith; } public BM_MainQuery setBmProductionLineRecIDEndsWith(String value) { this.BM_ProductionLine_RecIDEndsWith = value; return this; } public String getBmProductionLineRecIDContains() { return BM_ProductionLine_RecIDContains; } public BM_MainQuery setBmProductionLineRecIDContains(String value) { this.BM_ProductionLine_RecIDContains = value; return this; } public String getBmProductionLineRecIDLike() { return BM_ProductionLine_RecIDLike; } public BM_MainQuery setBmProductionLineRecIDLike(String value) { this.BM_ProductionLine_RecIDLike = value; return this; } public ArrayList getBmProductionLineRecIDBetween() { return BM_ProductionLine_RecIDBetween; } public BM_MainQuery setBmProductionLineRecIDBetween(ArrayList value) { this.BM_ProductionLine_RecIDBetween = value; return this; } public ArrayList getBmProductionLineRecIDIn() { return BM_ProductionLine_RecIDIn; } public BM_MainQuery setBmProductionLineRecIDIn(ArrayList value) { this.BM_ProductionLine_RecIDIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class BM_NotesQuery extends QueryDb implements IReturn> { public String RecID = null; public String RecIDStartsWith = null; public String RecIDEndsWith = null; public String RecIDContains = null; public String RecIDLike = null; public ArrayList RecIDBetween = null; public ArrayList RecIDIn = null; public String BM_Main_RecID = null; public String BM_Main_RecIDStartsWith = null; public String BM_Main_RecIDEndsWith = null; public String BM_Main_RecIDContains = null; public String BM_Main_RecIDLike = null; public ArrayList BM_Main_RecIDBetween = null; public ArrayList BM_Main_RecIDIn = null; public String NoteTypeID = null; public String NoteTypeIDStartsWith = null; public String NoteTypeIDEndsWith = null; public String NoteTypeIDContains = null; public String NoteTypeIDLike = null; public ArrayList NoteTypeIDBetween = null; public ArrayList NoteTypeIDIn = null; public Date LastSavedDateTime = null; public Date LastSavedDateTimeGreaterThanOrEqualTo = null; public Date LastSavedDateTimeGreaterThan = null; public Date LastSavedDateTimeLessThan = null; public Date LastSavedDateTimeLessThanOrEqualTo = null; public Date LastSavedDateTimeNotEqualTo = null; public ArrayList LastSavedDateTimeBetween = null; public ArrayList LastSavedDateTimeIn = null; public String LastSavedByStaffID = null; public String LastSavedByStaffIDStartsWith = null; public String LastSavedByStaffIDEndsWith = null; public String LastSavedByStaffIDContains = null; public String LastSavedByStaffIDLike = null; public ArrayList LastSavedByStaffIDBetween = null; public ArrayList LastSavedByStaffIDIn = null; public String NoteText = null; public String NoteTextStartsWith = null; public String NoteTextEndsWith = null; public String NoteTextContains = null; public String NoteTextLike = null; public ArrayList NoteTextBetween = null; public ArrayList NoteTextIn = null; public Integer ItemNo = null; public Integer ItemNoGreaterThanOrEqualTo = null; public Integer ItemNoGreaterThan = null; public Integer ItemNoLessThan = null; public Integer ItemNoLessThanOrEqualTo = null; public Integer ItemNoNotEqualTo = null; public ArrayList ItemNoBetween = null; public ArrayList ItemNoIn = null; public String getRecID() { return RecID; } public BM_NotesQuery setRecID(String value) { this.RecID = value; return this; } public String getRecIDStartsWith() { return RecIDStartsWith; } public BM_NotesQuery setRecIDStartsWith(String value) { this.RecIDStartsWith = value; return this; } public String getRecIDEndsWith() { return RecIDEndsWith; } public BM_NotesQuery setRecIDEndsWith(String value) { this.RecIDEndsWith = value; return this; } public String getRecIDContains() { return RecIDContains; } public BM_NotesQuery setRecIDContains(String value) { this.RecIDContains = value; return this; } public String getRecIDLike() { return RecIDLike; } public BM_NotesQuery setRecIDLike(String value) { this.RecIDLike = value; return this; } public ArrayList getRecIDBetween() { return RecIDBetween; } public BM_NotesQuery setRecIDBetween(ArrayList value) { this.RecIDBetween = value; return this; } public ArrayList getRecIDIn() { return RecIDIn; } public BM_NotesQuery setRecIDIn(ArrayList value) { this.RecIDIn = value; return this; } public String getBmMainRecID() { return BM_Main_RecID; } public BM_NotesQuery setBmMainRecID(String value) { this.BM_Main_RecID = value; return this; } public String getBmMainRecIDStartsWith() { return BM_Main_RecIDStartsWith; } public BM_NotesQuery setBmMainRecIDStartsWith(String value) { this.BM_Main_RecIDStartsWith = value; return this; } public String getBmMainRecIDEndsWith() { return BM_Main_RecIDEndsWith; } public BM_NotesQuery setBmMainRecIDEndsWith(String value) { this.BM_Main_RecIDEndsWith = value; return this; } public String getBmMainRecIDContains() { return BM_Main_RecIDContains; } public BM_NotesQuery setBmMainRecIDContains(String value) { this.BM_Main_RecIDContains = value; return this; } public String getBmMainRecIDLike() { return BM_Main_RecIDLike; } public BM_NotesQuery setBmMainRecIDLike(String value) { this.BM_Main_RecIDLike = value; return this; } public ArrayList getBmMainRecIDBetween() { return BM_Main_RecIDBetween; } public BM_NotesQuery setBmMainRecIDBetween(ArrayList value) { this.BM_Main_RecIDBetween = value; return this; } public ArrayList getBmMainRecIDIn() { return BM_Main_RecIDIn; } public BM_NotesQuery setBmMainRecIDIn(ArrayList value) { this.BM_Main_RecIDIn = value; return this; } public String getNoteTypeID() { return NoteTypeID; } public BM_NotesQuery setNoteTypeID(String value) { this.NoteTypeID = value; return this; } public String getNoteTypeIDStartsWith() { return NoteTypeIDStartsWith; } public BM_NotesQuery setNoteTypeIDStartsWith(String value) { this.NoteTypeIDStartsWith = value; return this; } public String getNoteTypeIDEndsWith() { return NoteTypeIDEndsWith; } public BM_NotesQuery setNoteTypeIDEndsWith(String value) { this.NoteTypeIDEndsWith = value; return this; } public String getNoteTypeIDContains() { return NoteTypeIDContains; } public BM_NotesQuery setNoteTypeIDContains(String value) { this.NoteTypeIDContains = value; return this; } public String getNoteTypeIDLike() { return NoteTypeIDLike; } public BM_NotesQuery setNoteTypeIDLike(String value) { this.NoteTypeIDLike = value; return this; } public ArrayList getNoteTypeIDBetween() { return NoteTypeIDBetween; } public BM_NotesQuery setNoteTypeIDBetween(ArrayList value) { this.NoteTypeIDBetween = value; return this; } public ArrayList getNoteTypeIDIn() { return NoteTypeIDIn; } public BM_NotesQuery setNoteTypeIDIn(ArrayList value) { this.NoteTypeIDIn = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public BM_NotesQuery setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getLastSavedDateTimeGreaterThanOrEqualTo() { return LastSavedDateTimeGreaterThanOrEqualTo; } public BM_NotesQuery setLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.LastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeGreaterThan() { return LastSavedDateTimeGreaterThan; } public BM_NotesQuery setLastSavedDateTimeGreaterThan(Date value) { this.LastSavedDateTimeGreaterThan = value; return this; } public Date getLastSavedDateTimeLessThan() { return LastSavedDateTimeLessThan; } public BM_NotesQuery setLastSavedDateTimeLessThan(Date value) { this.LastSavedDateTimeLessThan = value; return this; } public Date getLastSavedDateTimeLessThanOrEqualTo() { return LastSavedDateTimeLessThanOrEqualTo; } public BM_NotesQuery setLastSavedDateTimeLessThanOrEqualTo(Date value) { this.LastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeNotEqualTo() { return LastSavedDateTimeNotEqualTo; } public BM_NotesQuery setLastSavedDateTimeNotEqualTo(Date value) { this.LastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getLastSavedDateTimeBetween() { return LastSavedDateTimeBetween; } public BM_NotesQuery setLastSavedDateTimeBetween(ArrayList value) { this.LastSavedDateTimeBetween = value; return this; } public ArrayList getLastSavedDateTimeIn() { return LastSavedDateTimeIn; } public BM_NotesQuery setLastSavedDateTimeIn(ArrayList value) { this.LastSavedDateTimeIn = value; return this; } public String getLastSavedByStaffID() { return LastSavedByStaffID; } public BM_NotesQuery setLastSavedByStaffID(String value) { this.LastSavedByStaffID = value; return this; } public String getLastSavedByStaffIDStartsWith() { return LastSavedByStaffIDStartsWith; } public BM_NotesQuery setLastSavedByStaffIDStartsWith(String value) { this.LastSavedByStaffIDStartsWith = value; return this; } public String getLastSavedByStaffIDEndsWith() { return LastSavedByStaffIDEndsWith; } public BM_NotesQuery setLastSavedByStaffIDEndsWith(String value) { this.LastSavedByStaffIDEndsWith = value; return this; } public String getLastSavedByStaffIDContains() { return LastSavedByStaffIDContains; } public BM_NotesQuery setLastSavedByStaffIDContains(String value) { this.LastSavedByStaffIDContains = value; return this; } public String getLastSavedByStaffIDLike() { return LastSavedByStaffIDLike; } public BM_NotesQuery setLastSavedByStaffIDLike(String value) { this.LastSavedByStaffIDLike = value; return this; } public ArrayList getLastSavedByStaffIDBetween() { return LastSavedByStaffIDBetween; } public BM_NotesQuery setLastSavedByStaffIDBetween(ArrayList value) { this.LastSavedByStaffIDBetween = value; return this; } public ArrayList getLastSavedByStaffIDIn() { return LastSavedByStaffIDIn; } public BM_NotesQuery setLastSavedByStaffIDIn(ArrayList value) { this.LastSavedByStaffIDIn = value; return this; } public String getNoteText() { return NoteText; } public BM_NotesQuery setNoteText(String value) { this.NoteText = value; return this; } public String getNoteTextStartsWith() { return NoteTextStartsWith; } public BM_NotesQuery setNoteTextStartsWith(String value) { this.NoteTextStartsWith = value; return this; } public String getNoteTextEndsWith() { return NoteTextEndsWith; } public BM_NotesQuery setNoteTextEndsWith(String value) { this.NoteTextEndsWith = value; return this; } public String getNoteTextContains() { return NoteTextContains; } public BM_NotesQuery setNoteTextContains(String value) { this.NoteTextContains = value; return this; } public String getNoteTextLike() { return NoteTextLike; } public BM_NotesQuery setNoteTextLike(String value) { this.NoteTextLike = value; return this; } public ArrayList getNoteTextBetween() { return NoteTextBetween; } public BM_NotesQuery setNoteTextBetween(ArrayList value) { this.NoteTextBetween = value; return this; } public ArrayList getNoteTextIn() { return NoteTextIn; } public BM_NotesQuery setNoteTextIn(ArrayList value) { this.NoteTextIn = value; return this; } public Integer getItemNo() { return ItemNo; } public BM_NotesQuery setItemNo(Integer value) { this.ItemNo = value; return this; } public Integer getItemNoGreaterThanOrEqualTo() { return ItemNoGreaterThanOrEqualTo; } public BM_NotesQuery setItemNoGreaterThanOrEqualTo(Integer value) { this.ItemNoGreaterThanOrEqualTo = value; return this; } public Integer getItemNoGreaterThan() { return ItemNoGreaterThan; } public BM_NotesQuery setItemNoGreaterThan(Integer value) { this.ItemNoGreaterThan = value; return this; } public Integer getItemNoLessThan() { return ItemNoLessThan; } public BM_NotesQuery setItemNoLessThan(Integer value) { this.ItemNoLessThan = value; return this; } public Integer getItemNoLessThanOrEqualTo() { return ItemNoLessThanOrEqualTo; } public BM_NotesQuery setItemNoLessThanOrEqualTo(Integer value) { this.ItemNoLessThanOrEqualTo = value; return this; } public Integer getItemNoNotEqualTo() { return ItemNoNotEqualTo; } public BM_NotesQuery setItemNoNotEqualTo(Integer value) { this.ItemNoNotEqualTo = value; return this; } public ArrayList getItemNoBetween() { return ItemNoBetween; } public BM_NotesQuery setItemNoBetween(ArrayList value) { this.ItemNoBetween = value; return this; } public ArrayList getItemNoIn() { return ItemNoIn; } public BM_NotesQuery setItemNoIn(ArrayList value) { this.ItemNoIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class BM_OutputCustomFieldsQuery extends QueryDb implements IReturn> { public String RecID = null; public String RecIDStartsWith = null; public String RecIDEndsWith = null; public String RecIDContains = null; public String RecIDLike = null; public ArrayList RecIDBetween = null; public ArrayList RecIDIn = null; public String SettingName = null; public String SettingNameStartsWith = null; public String SettingNameEndsWith = null; public String SettingNameContains = null; public String SettingNameLike = null; public ArrayList SettingNameBetween = null; public ArrayList SettingNameIn = null; public String SettingDescription = null; public String SettingDescriptionStartsWith = null; public String SettingDescriptionEndsWith = null; public String SettingDescriptionContains = null; public String SettingDescriptionLike = null; public ArrayList SettingDescriptionBetween = null; public ArrayList SettingDescriptionIn = null; public Integer CellType = null; public Integer CellTypeGreaterThanOrEqualTo = null; public Integer CellTypeGreaterThan = null; public Integer CellTypeLessThan = null; public Integer CellTypeLessThanOrEqualTo = null; public Integer CellTypeNotEqualTo = null; public ArrayList CellTypeBetween = null; public ArrayList CellTypeIn = null; public String FieldParameter = null; public String FieldParameterStartsWith = null; public String FieldParameterEndsWith = null; public String FieldParameterContains = null; public String FieldParameterLike = null; public ArrayList FieldParameterBetween = null; public ArrayList FieldParameterIn = null; public UUID SY_Plugin_RecID = null; public ArrayList SY_Plugin_RecIDIn = null; public Date LastSavedDateTime = null; public Date LastSavedDateTimeGreaterThanOrEqualTo = null; public Date LastSavedDateTimeGreaterThan = null; public Date LastSavedDateTimeLessThan = null; public Date LastSavedDateTimeLessThanOrEqualTo = null; public Date LastSavedDateTimeNotEqualTo = null; public ArrayList LastSavedDateTimeBetween = null; public ArrayList LastSavedDateTimeIn = null; public Integer DisplayOrder = null; public Integer DisplayOrderGreaterThanOrEqualTo = null; public Integer DisplayOrderGreaterThan = null; public Integer DisplayOrderLessThan = null; public Integer DisplayOrderLessThanOrEqualTo = null; public Integer DisplayOrderNotEqualTo = null; public ArrayList DisplayOrderBetween = null; public ArrayList DisplayOrderIn = null; public String getRecID() { return RecID; } public BM_OutputCustomFieldsQuery setRecID(String value) { this.RecID = value; return this; } public String getRecIDStartsWith() { return RecIDStartsWith; } public BM_OutputCustomFieldsQuery setRecIDStartsWith(String value) { this.RecIDStartsWith = value; return this; } public String getRecIDEndsWith() { return RecIDEndsWith; } public BM_OutputCustomFieldsQuery setRecIDEndsWith(String value) { this.RecIDEndsWith = value; return this; } public String getRecIDContains() { return RecIDContains; } public BM_OutputCustomFieldsQuery setRecIDContains(String value) { this.RecIDContains = value; return this; } public String getRecIDLike() { return RecIDLike; } public BM_OutputCustomFieldsQuery setRecIDLike(String value) { this.RecIDLike = value; return this; } public ArrayList getRecIDBetween() { return RecIDBetween; } public BM_OutputCustomFieldsQuery setRecIDBetween(ArrayList value) { this.RecIDBetween = value; return this; } public ArrayList getRecIDIn() { return RecIDIn; } public BM_OutputCustomFieldsQuery setRecIDIn(ArrayList value) { this.RecIDIn = value; return this; } public String getSettingName() { return SettingName; } public BM_OutputCustomFieldsQuery setSettingName(String value) { this.SettingName = value; return this; } public String getSettingNameStartsWith() { return SettingNameStartsWith; } public BM_OutputCustomFieldsQuery setSettingNameStartsWith(String value) { this.SettingNameStartsWith = value; return this; } public String getSettingNameEndsWith() { return SettingNameEndsWith; } public BM_OutputCustomFieldsQuery setSettingNameEndsWith(String value) { this.SettingNameEndsWith = value; return this; } public String getSettingNameContains() { return SettingNameContains; } public BM_OutputCustomFieldsQuery setSettingNameContains(String value) { this.SettingNameContains = value; return this; } public String getSettingNameLike() { return SettingNameLike; } public BM_OutputCustomFieldsQuery setSettingNameLike(String value) { this.SettingNameLike = value; return this; } public ArrayList getSettingNameBetween() { return SettingNameBetween; } public BM_OutputCustomFieldsQuery setSettingNameBetween(ArrayList value) { this.SettingNameBetween = value; return this; } public ArrayList getSettingNameIn() { return SettingNameIn; } public BM_OutputCustomFieldsQuery setSettingNameIn(ArrayList value) { this.SettingNameIn = value; return this; } public String getSettingDescription() { return SettingDescription; } public BM_OutputCustomFieldsQuery setSettingDescription(String value) { this.SettingDescription = value; return this; } public String getSettingDescriptionStartsWith() { return SettingDescriptionStartsWith; } public BM_OutputCustomFieldsQuery setSettingDescriptionStartsWith(String value) { this.SettingDescriptionStartsWith = value; return this; } public String getSettingDescriptionEndsWith() { return SettingDescriptionEndsWith; } public BM_OutputCustomFieldsQuery setSettingDescriptionEndsWith(String value) { this.SettingDescriptionEndsWith = value; return this; } public String getSettingDescriptionContains() { return SettingDescriptionContains; } public BM_OutputCustomFieldsQuery setSettingDescriptionContains(String value) { this.SettingDescriptionContains = value; return this; } public String getSettingDescriptionLike() { return SettingDescriptionLike; } public BM_OutputCustomFieldsQuery setSettingDescriptionLike(String value) { this.SettingDescriptionLike = value; return this; } public ArrayList getSettingDescriptionBetween() { return SettingDescriptionBetween; } public BM_OutputCustomFieldsQuery setSettingDescriptionBetween(ArrayList value) { this.SettingDescriptionBetween = value; return this; } public ArrayList getSettingDescriptionIn() { return SettingDescriptionIn; } public BM_OutputCustomFieldsQuery setSettingDescriptionIn(ArrayList value) { this.SettingDescriptionIn = value; return this; } public Integer getCellType() { return CellType; } public BM_OutputCustomFieldsQuery setCellType(Integer value) { this.CellType = value; return this; } public Integer getCellTypeGreaterThanOrEqualTo() { return CellTypeGreaterThanOrEqualTo; } public BM_OutputCustomFieldsQuery setCellTypeGreaterThanOrEqualTo(Integer value) { this.CellTypeGreaterThanOrEqualTo = value; return this; } public Integer getCellTypeGreaterThan() { return CellTypeGreaterThan; } public BM_OutputCustomFieldsQuery setCellTypeGreaterThan(Integer value) { this.CellTypeGreaterThan = value; return this; } public Integer getCellTypeLessThan() { return CellTypeLessThan; } public BM_OutputCustomFieldsQuery setCellTypeLessThan(Integer value) { this.CellTypeLessThan = value; return this; } public Integer getCellTypeLessThanOrEqualTo() { return CellTypeLessThanOrEqualTo; } public BM_OutputCustomFieldsQuery setCellTypeLessThanOrEqualTo(Integer value) { this.CellTypeLessThanOrEqualTo = value; return this; } public Integer getCellTypeNotEqualTo() { return CellTypeNotEqualTo; } public BM_OutputCustomFieldsQuery setCellTypeNotEqualTo(Integer value) { this.CellTypeNotEqualTo = value; return this; } public ArrayList getCellTypeBetween() { return CellTypeBetween; } public BM_OutputCustomFieldsQuery setCellTypeBetween(ArrayList value) { this.CellTypeBetween = value; return this; } public ArrayList getCellTypeIn() { return CellTypeIn; } public BM_OutputCustomFieldsQuery setCellTypeIn(ArrayList value) { this.CellTypeIn = value; return this; } public String getFieldParameter() { return FieldParameter; } public BM_OutputCustomFieldsQuery setFieldParameter(String value) { this.FieldParameter = value; return this; } public String getFieldParameterStartsWith() { return FieldParameterStartsWith; } public BM_OutputCustomFieldsQuery setFieldParameterStartsWith(String value) { this.FieldParameterStartsWith = value; return this; } public String getFieldParameterEndsWith() { return FieldParameterEndsWith; } public BM_OutputCustomFieldsQuery setFieldParameterEndsWith(String value) { this.FieldParameterEndsWith = value; return this; } public String getFieldParameterContains() { return FieldParameterContains; } public BM_OutputCustomFieldsQuery setFieldParameterContains(String value) { this.FieldParameterContains = value; return this; } public String getFieldParameterLike() { return FieldParameterLike; } public BM_OutputCustomFieldsQuery setFieldParameterLike(String value) { this.FieldParameterLike = value; return this; } public ArrayList getFieldParameterBetween() { return FieldParameterBetween; } public BM_OutputCustomFieldsQuery setFieldParameterBetween(ArrayList value) { this.FieldParameterBetween = value; return this; } public ArrayList getFieldParameterIn() { return FieldParameterIn; } public BM_OutputCustomFieldsQuery setFieldParameterIn(ArrayList value) { this.FieldParameterIn = value; return this; } public UUID getSyPluginRecID() { return SY_Plugin_RecID; } public BM_OutputCustomFieldsQuery setSyPluginRecID(UUID value) { this.SY_Plugin_RecID = value; return this; } public ArrayList getSyPluginRecIDIn() { return SY_Plugin_RecIDIn; } public BM_OutputCustomFieldsQuery setSyPluginRecIDIn(ArrayList value) { this.SY_Plugin_RecIDIn = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public BM_OutputCustomFieldsQuery setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getLastSavedDateTimeGreaterThanOrEqualTo() { return LastSavedDateTimeGreaterThanOrEqualTo; } public BM_OutputCustomFieldsQuery setLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.LastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeGreaterThan() { return LastSavedDateTimeGreaterThan; } public BM_OutputCustomFieldsQuery setLastSavedDateTimeGreaterThan(Date value) { this.LastSavedDateTimeGreaterThan = value; return this; } public Date getLastSavedDateTimeLessThan() { return LastSavedDateTimeLessThan; } public BM_OutputCustomFieldsQuery setLastSavedDateTimeLessThan(Date value) { this.LastSavedDateTimeLessThan = value; return this; } public Date getLastSavedDateTimeLessThanOrEqualTo() { return LastSavedDateTimeLessThanOrEqualTo; } public BM_OutputCustomFieldsQuery setLastSavedDateTimeLessThanOrEqualTo(Date value) { this.LastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeNotEqualTo() { return LastSavedDateTimeNotEqualTo; } public BM_OutputCustomFieldsQuery setLastSavedDateTimeNotEqualTo(Date value) { this.LastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getLastSavedDateTimeBetween() { return LastSavedDateTimeBetween; } public BM_OutputCustomFieldsQuery setLastSavedDateTimeBetween(ArrayList value) { this.LastSavedDateTimeBetween = value; return this; } public ArrayList getLastSavedDateTimeIn() { return LastSavedDateTimeIn; } public BM_OutputCustomFieldsQuery setLastSavedDateTimeIn(ArrayList value) { this.LastSavedDateTimeIn = value; return this; } public Integer getDisplayOrder() { return DisplayOrder; } public BM_OutputCustomFieldsQuery setDisplayOrder(Integer value) { this.DisplayOrder = value; return this; } public Integer getDisplayOrderGreaterThanOrEqualTo() { return DisplayOrderGreaterThanOrEqualTo; } public BM_OutputCustomFieldsQuery setDisplayOrderGreaterThanOrEqualTo(Integer value) { this.DisplayOrderGreaterThanOrEqualTo = value; return this; } public Integer getDisplayOrderGreaterThan() { return DisplayOrderGreaterThan; } public BM_OutputCustomFieldsQuery setDisplayOrderGreaterThan(Integer value) { this.DisplayOrderGreaterThan = value; return this; } public Integer getDisplayOrderLessThan() { return DisplayOrderLessThan; } public BM_OutputCustomFieldsQuery setDisplayOrderLessThan(Integer value) { this.DisplayOrderLessThan = value; return this; } public Integer getDisplayOrderLessThanOrEqualTo() { return DisplayOrderLessThanOrEqualTo; } public BM_OutputCustomFieldsQuery setDisplayOrderLessThanOrEqualTo(Integer value) { this.DisplayOrderLessThanOrEqualTo = value; return this; } public Integer getDisplayOrderNotEqualTo() { return DisplayOrderNotEqualTo; } public BM_OutputCustomFieldsQuery setDisplayOrderNotEqualTo(Integer value) { this.DisplayOrderNotEqualTo = value; return this; } public ArrayList getDisplayOrderBetween() { return DisplayOrderBetween; } public BM_OutputCustomFieldsQuery setDisplayOrderBetween(ArrayList value) { this.DisplayOrderBetween = value; return this; } public ArrayList getDisplayOrderIn() { return DisplayOrderIn; } public BM_OutputCustomFieldsQuery setDisplayOrderIn(ArrayList value) { this.DisplayOrderIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class BM_OutputCustomValuesQuery extends QueryDb implements IReturn> { public String RecID = null; public String RecIDStartsWith = null; public String RecIDEndsWith = null; public String RecIDContains = null; public String RecIDLike = null; public ArrayList RecIDBetween = null; public ArrayList RecIDIn = null; public String BM_Outputs_RecID = null; public String BM_Outputs_RecIDStartsWith = null; public String BM_Outputs_RecIDEndsWith = null; public String BM_Outputs_RecIDContains = null; public String BM_Outputs_RecIDLike = null; public ArrayList BM_Outputs_RecIDBetween = null; public ArrayList BM_Outputs_RecIDIn = null; public String BM_OutputCustomFields_RecID = null; public String BM_OutputCustomFields_RecIDStartsWith = null; public String BM_OutputCustomFields_RecIDEndsWith = null; public String BM_OutputCustomFields_RecIDContains = null; public String BM_OutputCustomFields_RecIDLike = null; public ArrayList BM_OutputCustomFields_RecIDBetween = null; public ArrayList BM_OutputCustomFields_RecIDIn = null; public String Contents = null; public String ContentsStartsWith = null; public String ContentsEndsWith = null; public String ContentsContains = null; public String ContentsLike = null; public ArrayList ContentsBetween = null; public ArrayList ContentsIn = null; public Date LastSavedDateTime = null; public Date LastSavedDateTimeGreaterThanOrEqualTo = null; public Date LastSavedDateTimeGreaterThan = null; public Date LastSavedDateTimeLessThan = null; public Date LastSavedDateTimeLessThanOrEqualTo = null; public Date LastSavedDateTimeNotEqualTo = null; public ArrayList LastSavedDateTimeBetween = null; public ArrayList LastSavedDateTimeIn = null; public String getRecID() { return RecID; } public BM_OutputCustomValuesQuery setRecID(String value) { this.RecID = value; return this; } public String getRecIDStartsWith() { return RecIDStartsWith; } public BM_OutputCustomValuesQuery setRecIDStartsWith(String value) { this.RecIDStartsWith = value; return this; } public String getRecIDEndsWith() { return RecIDEndsWith; } public BM_OutputCustomValuesQuery setRecIDEndsWith(String value) { this.RecIDEndsWith = value; return this; } public String getRecIDContains() { return RecIDContains; } public BM_OutputCustomValuesQuery setRecIDContains(String value) { this.RecIDContains = value; return this; } public String getRecIDLike() { return RecIDLike; } public BM_OutputCustomValuesQuery setRecIDLike(String value) { this.RecIDLike = value; return this; } public ArrayList getRecIDBetween() { return RecIDBetween; } public BM_OutputCustomValuesQuery setRecIDBetween(ArrayList value) { this.RecIDBetween = value; return this; } public ArrayList getRecIDIn() { return RecIDIn; } public BM_OutputCustomValuesQuery setRecIDIn(ArrayList value) { this.RecIDIn = value; return this; } public String getBmOutputsRecID() { return BM_Outputs_RecID; } public BM_OutputCustomValuesQuery setBmOutputsRecID(String value) { this.BM_Outputs_RecID = value; return this; } public String getBmOutputsRecIDStartsWith() { return BM_Outputs_RecIDStartsWith; } public BM_OutputCustomValuesQuery setBmOutputsRecIDStartsWith(String value) { this.BM_Outputs_RecIDStartsWith = value; return this; } public String getBmOutputsRecIDEndsWith() { return BM_Outputs_RecIDEndsWith; } public BM_OutputCustomValuesQuery setBmOutputsRecIDEndsWith(String value) { this.BM_Outputs_RecIDEndsWith = value; return this; } public String getBmOutputsRecIDContains() { return BM_Outputs_RecIDContains; } public BM_OutputCustomValuesQuery setBmOutputsRecIDContains(String value) { this.BM_Outputs_RecIDContains = value; return this; } public String getBmOutputsRecIDLike() { return BM_Outputs_RecIDLike; } public BM_OutputCustomValuesQuery setBmOutputsRecIDLike(String value) { this.BM_Outputs_RecIDLike = value; return this; } public ArrayList getBmOutputsRecIDBetween() { return BM_Outputs_RecIDBetween; } public BM_OutputCustomValuesQuery setBmOutputsRecIDBetween(ArrayList value) { this.BM_Outputs_RecIDBetween = value; return this; } public ArrayList getBmOutputsRecIDIn() { return BM_Outputs_RecIDIn; } public BM_OutputCustomValuesQuery setBmOutputsRecIDIn(ArrayList value) { this.BM_Outputs_RecIDIn = value; return this; } public String getBmOutputCustomFieldsRecID() { return BM_OutputCustomFields_RecID; } public BM_OutputCustomValuesQuery setBmOutputCustomFieldsRecID(String value) { this.BM_OutputCustomFields_RecID = value; return this; } public String getBmOutputCustomFieldsRecIDStartsWith() { return BM_OutputCustomFields_RecIDStartsWith; } public BM_OutputCustomValuesQuery setBmOutputCustomFieldsRecIDStartsWith(String value) { this.BM_OutputCustomFields_RecIDStartsWith = value; return this; } public String getBmOutputCustomFieldsRecIDEndsWith() { return BM_OutputCustomFields_RecIDEndsWith; } public BM_OutputCustomValuesQuery setBmOutputCustomFieldsRecIDEndsWith(String value) { this.BM_OutputCustomFields_RecIDEndsWith = value; return this; } public String getBmOutputCustomFieldsRecIDContains() { return BM_OutputCustomFields_RecIDContains; } public BM_OutputCustomValuesQuery setBmOutputCustomFieldsRecIDContains(String value) { this.BM_OutputCustomFields_RecIDContains = value; return this; } public String getBmOutputCustomFieldsRecIDLike() { return BM_OutputCustomFields_RecIDLike; } public BM_OutputCustomValuesQuery setBmOutputCustomFieldsRecIDLike(String value) { this.BM_OutputCustomFields_RecIDLike = value; return this; } public ArrayList getBmOutputCustomFieldsRecIDBetween() { return BM_OutputCustomFields_RecIDBetween; } public BM_OutputCustomValuesQuery setBmOutputCustomFieldsRecIDBetween(ArrayList value) { this.BM_OutputCustomFields_RecIDBetween = value; return this; } public ArrayList getBmOutputCustomFieldsRecIDIn() { return BM_OutputCustomFields_RecIDIn; } public BM_OutputCustomValuesQuery setBmOutputCustomFieldsRecIDIn(ArrayList value) { this.BM_OutputCustomFields_RecIDIn = value; return this; } public String getContents() { return Contents; } public BM_OutputCustomValuesQuery setContents(String value) { this.Contents = value; return this; } public String getContentsStartsWith() { return ContentsStartsWith; } public BM_OutputCustomValuesQuery setContentsStartsWith(String value) { this.ContentsStartsWith = value; return this; } public String getContentsEndsWith() { return ContentsEndsWith; } public BM_OutputCustomValuesQuery setContentsEndsWith(String value) { this.ContentsEndsWith = value; return this; } public String getContentsContains() { return ContentsContains; } public BM_OutputCustomValuesQuery setContentsContains(String value) { this.ContentsContains = value; return this; } public String getContentsLike() { return ContentsLike; } public BM_OutputCustomValuesQuery setContentsLike(String value) { this.ContentsLike = value; return this; } public ArrayList getContentsBetween() { return ContentsBetween; } public BM_OutputCustomValuesQuery setContentsBetween(ArrayList value) { this.ContentsBetween = value; return this; } public ArrayList getContentsIn() { return ContentsIn; } public BM_OutputCustomValuesQuery setContentsIn(ArrayList value) { this.ContentsIn = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public BM_OutputCustomValuesQuery setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getLastSavedDateTimeGreaterThanOrEqualTo() { return LastSavedDateTimeGreaterThanOrEqualTo; } public BM_OutputCustomValuesQuery setLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.LastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeGreaterThan() { return LastSavedDateTimeGreaterThan; } public BM_OutputCustomValuesQuery setLastSavedDateTimeGreaterThan(Date value) { this.LastSavedDateTimeGreaterThan = value; return this; } public Date getLastSavedDateTimeLessThan() { return LastSavedDateTimeLessThan; } public BM_OutputCustomValuesQuery setLastSavedDateTimeLessThan(Date value) { this.LastSavedDateTimeLessThan = value; return this; } public Date getLastSavedDateTimeLessThanOrEqualTo() { return LastSavedDateTimeLessThanOrEqualTo; } public BM_OutputCustomValuesQuery setLastSavedDateTimeLessThanOrEqualTo(Date value) { this.LastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeNotEqualTo() { return LastSavedDateTimeNotEqualTo; } public BM_OutputCustomValuesQuery setLastSavedDateTimeNotEqualTo(Date value) { this.LastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getLastSavedDateTimeBetween() { return LastSavedDateTimeBetween; } public BM_OutputCustomValuesQuery setLastSavedDateTimeBetween(ArrayList value) { this.LastSavedDateTimeBetween = value; return this; } public ArrayList getLastSavedDateTimeIn() { return LastSavedDateTimeIn; } public BM_OutputCustomValuesQuery setLastSavedDateTimeIn(ArrayList value) { this.LastSavedDateTimeIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class BM_OutputsQuery extends QueryDb implements IReturn> { public String RecID = null; public String RecIDStartsWith = null; public String RecIDEndsWith = null; public String RecIDContains = null; public String RecIDLike = null; public ArrayList RecIDBetween = null; public ArrayList RecIDIn = null; public String BM_Main_RecID = null; public String BM_Main_RecIDStartsWith = null; public String BM_Main_RecIDEndsWith = null; public String BM_Main_RecIDContains = null; public String BM_Main_RecIDLike = null; public ArrayList BM_Main_RecIDBetween = null; public ArrayList BM_Main_RecIDIn = null; public Integer ItemNo = null; public Integer ItemNoGreaterThanOrEqualTo = null; public Integer ItemNoGreaterThan = null; public Integer ItemNoLessThan = null; public Integer ItemNoLessThanOrEqualTo = null; public Integer ItemNoNotEqualTo = null; public ArrayList ItemNoBetween = null; public ArrayList ItemNoIn = null; public String InventoryID = null; public String InventoryIDStartsWith = null; public String InventoryIDEndsWith = null; public String InventoryIDContains = null; public String InventoryIDLike = null; public ArrayList InventoryIDBetween = null; public ArrayList InventoryIDIn = null; public Boolean IsRatio = null; public Boolean IsPrimary = null; public BigDecimal Quantity = null; public BigDecimal QuantityGreaterThanOrEqualTo = null; public BigDecimal QuantityGreaterThan = null; public BigDecimal QuantityLessThan = null; public BigDecimal QuantityLessThanOrEqualTo = null; public BigDecimal QuantityNotEqualTo = null; public ArrayList QuantityBetween = null; public ArrayList QuantityIn = null; public String Note = null; public String NoteStartsWith = null; public String NoteEndsWith = null; public String NoteContains = null; public String NoteLike = null; public ArrayList NoteBetween = null; public ArrayList NoteIn = null; public BigDecimal CostPercentage = null; public BigDecimal CostPercentageGreaterThanOrEqualTo = null; public BigDecimal CostPercentageGreaterThan = null; public BigDecimal CostPercentageLessThan = null; public BigDecimal CostPercentageLessThanOrEqualTo = null; public BigDecimal CostPercentageNotEqualTo = null; public ArrayList CostPercentageBetween = null; public ArrayList CostPercentageIn = null; public ArrayList RowHash = null; public String getRecID() { return RecID; } public BM_OutputsQuery setRecID(String value) { this.RecID = value; return this; } public String getRecIDStartsWith() { return RecIDStartsWith; } public BM_OutputsQuery setRecIDStartsWith(String value) { this.RecIDStartsWith = value; return this; } public String getRecIDEndsWith() { return RecIDEndsWith; } public BM_OutputsQuery setRecIDEndsWith(String value) { this.RecIDEndsWith = value; return this; } public String getRecIDContains() { return RecIDContains; } public BM_OutputsQuery setRecIDContains(String value) { this.RecIDContains = value; return this; } public String getRecIDLike() { return RecIDLike; } public BM_OutputsQuery setRecIDLike(String value) { this.RecIDLike = value; return this; } public ArrayList getRecIDBetween() { return RecIDBetween; } public BM_OutputsQuery setRecIDBetween(ArrayList value) { this.RecIDBetween = value; return this; } public ArrayList getRecIDIn() { return RecIDIn; } public BM_OutputsQuery setRecIDIn(ArrayList value) { this.RecIDIn = value; return this; } public String getBmMainRecID() { return BM_Main_RecID; } public BM_OutputsQuery setBmMainRecID(String value) { this.BM_Main_RecID = value; return this; } public String getBmMainRecIDStartsWith() { return BM_Main_RecIDStartsWith; } public BM_OutputsQuery setBmMainRecIDStartsWith(String value) { this.BM_Main_RecIDStartsWith = value; return this; } public String getBmMainRecIDEndsWith() { return BM_Main_RecIDEndsWith; } public BM_OutputsQuery setBmMainRecIDEndsWith(String value) { this.BM_Main_RecIDEndsWith = value; return this; } public String getBmMainRecIDContains() { return BM_Main_RecIDContains; } public BM_OutputsQuery setBmMainRecIDContains(String value) { this.BM_Main_RecIDContains = value; return this; } public String getBmMainRecIDLike() { return BM_Main_RecIDLike; } public BM_OutputsQuery setBmMainRecIDLike(String value) { this.BM_Main_RecIDLike = value; return this; } public ArrayList getBmMainRecIDBetween() { return BM_Main_RecIDBetween; } public BM_OutputsQuery setBmMainRecIDBetween(ArrayList value) { this.BM_Main_RecIDBetween = value; return this; } public ArrayList getBmMainRecIDIn() { return BM_Main_RecIDIn; } public BM_OutputsQuery setBmMainRecIDIn(ArrayList value) { this.BM_Main_RecIDIn = value; return this; } public Integer getItemNo() { return ItemNo; } public BM_OutputsQuery setItemNo(Integer value) { this.ItemNo = value; return this; } public Integer getItemNoGreaterThanOrEqualTo() { return ItemNoGreaterThanOrEqualTo; } public BM_OutputsQuery setItemNoGreaterThanOrEqualTo(Integer value) { this.ItemNoGreaterThanOrEqualTo = value; return this; } public Integer getItemNoGreaterThan() { return ItemNoGreaterThan; } public BM_OutputsQuery setItemNoGreaterThan(Integer value) { this.ItemNoGreaterThan = value; return this; } public Integer getItemNoLessThan() { return ItemNoLessThan; } public BM_OutputsQuery setItemNoLessThan(Integer value) { this.ItemNoLessThan = value; return this; } public Integer getItemNoLessThanOrEqualTo() { return ItemNoLessThanOrEqualTo; } public BM_OutputsQuery setItemNoLessThanOrEqualTo(Integer value) { this.ItemNoLessThanOrEqualTo = value; return this; } public Integer getItemNoNotEqualTo() { return ItemNoNotEqualTo; } public BM_OutputsQuery setItemNoNotEqualTo(Integer value) { this.ItemNoNotEqualTo = value; return this; } public ArrayList getItemNoBetween() { return ItemNoBetween; } public BM_OutputsQuery setItemNoBetween(ArrayList value) { this.ItemNoBetween = value; return this; } public ArrayList getItemNoIn() { return ItemNoIn; } public BM_OutputsQuery setItemNoIn(ArrayList value) { this.ItemNoIn = value; return this; } public String getInventoryID() { return InventoryID; } public BM_OutputsQuery setInventoryID(String value) { this.InventoryID = value; return this; } public String getInventoryIDStartsWith() { return InventoryIDStartsWith; } public BM_OutputsQuery setInventoryIDStartsWith(String value) { this.InventoryIDStartsWith = value; return this; } public String getInventoryIDEndsWith() { return InventoryIDEndsWith; } public BM_OutputsQuery setInventoryIDEndsWith(String value) { this.InventoryIDEndsWith = value; return this; } public String getInventoryIDContains() { return InventoryIDContains; } public BM_OutputsQuery setInventoryIDContains(String value) { this.InventoryIDContains = value; return this; } public String getInventoryIDLike() { return InventoryIDLike; } public BM_OutputsQuery setInventoryIDLike(String value) { this.InventoryIDLike = value; return this; } public ArrayList getInventoryIDBetween() { return InventoryIDBetween; } public BM_OutputsQuery setInventoryIDBetween(ArrayList value) { this.InventoryIDBetween = value; return this; } public ArrayList getInventoryIDIn() { return InventoryIDIn; } public BM_OutputsQuery setInventoryIDIn(ArrayList value) { this.InventoryIDIn = value; return this; } public Boolean getIsRatio() { return IsRatio; } public BM_OutputsQuery setIsRatio(Boolean value) { this.IsRatio = value; return this; } public Boolean getIsPrimary() { return IsPrimary; } public BM_OutputsQuery setIsPrimary(Boolean value) { this.IsPrimary = value; return this; } public BigDecimal getQuantity() { return Quantity; } public BM_OutputsQuery setQuantity(BigDecimal value) { this.Quantity = value; return this; } public BigDecimal getQuantityGreaterThanOrEqualTo() { return QuantityGreaterThanOrEqualTo; } public BM_OutputsQuery setQuantityGreaterThanOrEqualTo(BigDecimal value) { this.QuantityGreaterThanOrEqualTo = value; return this; } public BigDecimal getQuantityGreaterThan() { return QuantityGreaterThan; } public BM_OutputsQuery setQuantityGreaterThan(BigDecimal value) { this.QuantityGreaterThan = value; return this; } public BigDecimal getQuantityLessThan() { return QuantityLessThan; } public BM_OutputsQuery setQuantityLessThan(BigDecimal value) { this.QuantityLessThan = value; return this; } public BigDecimal getQuantityLessThanOrEqualTo() { return QuantityLessThanOrEqualTo; } public BM_OutputsQuery setQuantityLessThanOrEqualTo(BigDecimal value) { this.QuantityLessThanOrEqualTo = value; return this; } public BigDecimal getQuantityNotEqualTo() { return QuantityNotEqualTo; } public BM_OutputsQuery setQuantityNotEqualTo(BigDecimal value) { this.QuantityNotEqualTo = value; return this; } public ArrayList getQuantityBetween() { return QuantityBetween; } public BM_OutputsQuery setQuantityBetween(ArrayList value) { this.QuantityBetween = value; return this; } public ArrayList getQuantityIn() { return QuantityIn; } public BM_OutputsQuery setQuantityIn(ArrayList value) { this.QuantityIn = value; return this; } public String getNote() { return Note; } public BM_OutputsQuery setNote(String value) { this.Note = value; return this; } public String getNoteStartsWith() { return NoteStartsWith; } public BM_OutputsQuery setNoteStartsWith(String value) { this.NoteStartsWith = value; return this; } public String getNoteEndsWith() { return NoteEndsWith; } public BM_OutputsQuery setNoteEndsWith(String value) { this.NoteEndsWith = value; return this; } public String getNoteContains() { return NoteContains; } public BM_OutputsQuery setNoteContains(String value) { this.NoteContains = value; return this; } public String getNoteLike() { return NoteLike; } public BM_OutputsQuery setNoteLike(String value) { this.NoteLike = value; return this; } public ArrayList getNoteBetween() { return NoteBetween; } public BM_OutputsQuery setNoteBetween(ArrayList value) { this.NoteBetween = value; return this; } public ArrayList getNoteIn() { return NoteIn; } public BM_OutputsQuery setNoteIn(ArrayList value) { this.NoteIn = value; return this; } public BigDecimal getCostPercentage() { return CostPercentage; } public BM_OutputsQuery setCostPercentage(BigDecimal value) { this.CostPercentage = value; return this; } public BigDecimal getCostPercentageGreaterThanOrEqualTo() { return CostPercentageGreaterThanOrEqualTo; } public BM_OutputsQuery setCostPercentageGreaterThanOrEqualTo(BigDecimal value) { this.CostPercentageGreaterThanOrEqualTo = value; return this; } public BigDecimal getCostPercentageGreaterThan() { return CostPercentageGreaterThan; } public BM_OutputsQuery setCostPercentageGreaterThan(BigDecimal value) { this.CostPercentageGreaterThan = value; return this; } public BigDecimal getCostPercentageLessThan() { return CostPercentageLessThan; } public BM_OutputsQuery setCostPercentageLessThan(BigDecimal value) { this.CostPercentageLessThan = value; return this; } public BigDecimal getCostPercentageLessThanOrEqualTo() { return CostPercentageLessThanOrEqualTo; } public BM_OutputsQuery setCostPercentageLessThanOrEqualTo(BigDecimal value) { this.CostPercentageLessThanOrEqualTo = value; return this; } public BigDecimal getCostPercentageNotEqualTo() { return CostPercentageNotEqualTo; } public BM_OutputsQuery setCostPercentageNotEqualTo(BigDecimal value) { this.CostPercentageNotEqualTo = value; return this; } public ArrayList getCostPercentageBetween() { return CostPercentageBetween; } public BM_OutputsQuery setCostPercentageBetween(ArrayList value) { this.CostPercentageBetween = value; return this; } public ArrayList getCostPercentageIn() { return CostPercentageIn; } public BM_OutputsQuery setCostPercentageIn(ArrayList value) { this.CostPercentageIn = value; return this; } public ArrayList getRowHash() { return RowHash; } public BM_OutputsQuery setRowHash(ArrayList value) { this.RowHash = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class BM_ProductionAreaQuery extends QueryDb implements IReturn> { public String RecID = null; public String RecIDStartsWith = null; public String RecIDEndsWith = null; public String RecIDContains = null; public String RecIDLike = null; public ArrayList RecIDBetween = null; public ArrayList RecIDIn = null; public String ProductionAreaNo = null; public String ProductionAreaNoStartsWith = null; public String ProductionAreaNoEndsWith = null; public String ProductionAreaNoContains = null; public String ProductionAreaNoLike = null; public ArrayList ProductionAreaNoBetween = null; public ArrayList ProductionAreaNoIn = null; public String Name = null; public String NameStartsWith = null; public String NameEndsWith = null; public String NameContains = null; public String NameLike = null; public ArrayList NameBetween = null; public ArrayList NameIn = null; public String Description = null; public String DescriptionStartsWith = null; public String DescriptionEndsWith = null; public String DescriptionContains = null; public String DescriptionLike = null; public ArrayList DescriptionBetween = null; public ArrayList DescriptionIn = null; public Boolean IsEnabled = null; public Date LastSavedDateTime = null; public Date LastSavedDateTimeGreaterThanOrEqualTo = null; public Date LastSavedDateTimeGreaterThan = null; public Date LastSavedDateTimeLessThan = null; public Date LastSavedDateTimeLessThanOrEqualTo = null; public Date LastSavedDateTimeNotEqualTo = null; public ArrayList LastSavedDateTimeBetween = null; public ArrayList LastSavedDateTimeIn = null; public ArrayList RowHash = null; public String getRecID() { return RecID; } public BM_ProductionAreaQuery setRecID(String value) { this.RecID = value; return this; } public String getRecIDStartsWith() { return RecIDStartsWith; } public BM_ProductionAreaQuery setRecIDStartsWith(String value) { this.RecIDStartsWith = value; return this; } public String getRecIDEndsWith() { return RecIDEndsWith; } public BM_ProductionAreaQuery setRecIDEndsWith(String value) { this.RecIDEndsWith = value; return this; } public String getRecIDContains() { return RecIDContains; } public BM_ProductionAreaQuery setRecIDContains(String value) { this.RecIDContains = value; return this; } public String getRecIDLike() { return RecIDLike; } public BM_ProductionAreaQuery setRecIDLike(String value) { this.RecIDLike = value; return this; } public ArrayList getRecIDBetween() { return RecIDBetween; } public BM_ProductionAreaQuery setRecIDBetween(ArrayList value) { this.RecIDBetween = value; return this; } public ArrayList getRecIDIn() { return RecIDIn; } public BM_ProductionAreaQuery setRecIDIn(ArrayList value) { this.RecIDIn = value; return this; } public String getProductionAreaNo() { return ProductionAreaNo; } public BM_ProductionAreaQuery setProductionAreaNo(String value) { this.ProductionAreaNo = value; return this; } public String getProductionAreaNoStartsWith() { return ProductionAreaNoStartsWith; } public BM_ProductionAreaQuery setProductionAreaNoStartsWith(String value) { this.ProductionAreaNoStartsWith = value; return this; } public String getProductionAreaNoEndsWith() { return ProductionAreaNoEndsWith; } public BM_ProductionAreaQuery setProductionAreaNoEndsWith(String value) { this.ProductionAreaNoEndsWith = value; return this; } public String getProductionAreaNoContains() { return ProductionAreaNoContains; } public BM_ProductionAreaQuery setProductionAreaNoContains(String value) { this.ProductionAreaNoContains = value; return this; } public String getProductionAreaNoLike() { return ProductionAreaNoLike; } public BM_ProductionAreaQuery setProductionAreaNoLike(String value) { this.ProductionAreaNoLike = value; return this; } public ArrayList getProductionAreaNoBetween() { return ProductionAreaNoBetween; } public BM_ProductionAreaQuery setProductionAreaNoBetween(ArrayList value) { this.ProductionAreaNoBetween = value; return this; } public ArrayList getProductionAreaNoIn() { return ProductionAreaNoIn; } public BM_ProductionAreaQuery setProductionAreaNoIn(ArrayList value) { this.ProductionAreaNoIn = value; return this; } public String getName() { return Name; } public BM_ProductionAreaQuery setName(String value) { this.Name = value; return this; } public String getNameStartsWith() { return NameStartsWith; } public BM_ProductionAreaQuery setNameStartsWith(String value) { this.NameStartsWith = value; return this; } public String getNameEndsWith() { return NameEndsWith; } public BM_ProductionAreaQuery setNameEndsWith(String value) { this.NameEndsWith = value; return this; } public String getNameContains() { return NameContains; } public BM_ProductionAreaQuery setNameContains(String value) { this.NameContains = value; return this; } public String getNameLike() { return NameLike; } public BM_ProductionAreaQuery setNameLike(String value) { this.NameLike = value; return this; } public ArrayList getNameBetween() { return NameBetween; } public BM_ProductionAreaQuery setNameBetween(ArrayList value) { this.NameBetween = value; return this; } public ArrayList getNameIn() { return NameIn; } public BM_ProductionAreaQuery setNameIn(ArrayList value) { this.NameIn = value; return this; } public String getDescription() { return Description; } public BM_ProductionAreaQuery setDescription(String value) { this.Description = value; return this; } public String getDescriptionStartsWith() { return DescriptionStartsWith; } public BM_ProductionAreaQuery setDescriptionStartsWith(String value) { this.DescriptionStartsWith = value; return this; } public String getDescriptionEndsWith() { return DescriptionEndsWith; } public BM_ProductionAreaQuery setDescriptionEndsWith(String value) { this.DescriptionEndsWith = value; return this; } public String getDescriptionContains() { return DescriptionContains; } public BM_ProductionAreaQuery setDescriptionContains(String value) { this.DescriptionContains = value; return this; } public String getDescriptionLike() { return DescriptionLike; } public BM_ProductionAreaQuery setDescriptionLike(String value) { this.DescriptionLike = value; return this; } public ArrayList getDescriptionBetween() { return DescriptionBetween; } public BM_ProductionAreaQuery setDescriptionBetween(ArrayList value) { this.DescriptionBetween = value; return this; } public ArrayList getDescriptionIn() { return DescriptionIn; } public BM_ProductionAreaQuery setDescriptionIn(ArrayList value) { this.DescriptionIn = value; return this; } public Boolean getIsEnabled() { return IsEnabled; } public BM_ProductionAreaQuery setIsEnabled(Boolean value) { this.IsEnabled = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public BM_ProductionAreaQuery setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getLastSavedDateTimeGreaterThanOrEqualTo() { return LastSavedDateTimeGreaterThanOrEqualTo; } public BM_ProductionAreaQuery setLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.LastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeGreaterThan() { return LastSavedDateTimeGreaterThan; } public BM_ProductionAreaQuery setLastSavedDateTimeGreaterThan(Date value) { this.LastSavedDateTimeGreaterThan = value; return this; } public Date getLastSavedDateTimeLessThan() { return LastSavedDateTimeLessThan; } public BM_ProductionAreaQuery setLastSavedDateTimeLessThan(Date value) { this.LastSavedDateTimeLessThan = value; return this; } public Date getLastSavedDateTimeLessThanOrEqualTo() { return LastSavedDateTimeLessThanOrEqualTo; } public BM_ProductionAreaQuery setLastSavedDateTimeLessThanOrEqualTo(Date value) { this.LastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeNotEqualTo() { return LastSavedDateTimeNotEqualTo; } public BM_ProductionAreaQuery setLastSavedDateTimeNotEqualTo(Date value) { this.LastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getLastSavedDateTimeBetween() { return LastSavedDateTimeBetween; } public BM_ProductionAreaQuery setLastSavedDateTimeBetween(ArrayList value) { this.LastSavedDateTimeBetween = value; return this; } public ArrayList getLastSavedDateTimeIn() { return LastSavedDateTimeIn; } public BM_ProductionAreaQuery setLastSavedDateTimeIn(ArrayList value) { this.LastSavedDateTimeIn = value; return this; } public ArrayList getRowHash() { return RowHash; } public BM_ProductionAreaQuery setRowHash(ArrayList value) { this.RowHash = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class BM_ProductionLineQuery extends QueryDb implements IReturn> { public String RecID = null; public String RecIDStartsWith = null; public String RecIDEndsWith = null; public String RecIDContains = null; public String RecIDLike = null; public ArrayList RecIDBetween = null; public ArrayList RecIDIn = null; public String BM_ProductionArea_RecID = null; public String BM_ProductionArea_RecIDStartsWith = null; public String BM_ProductionArea_RecIDEndsWith = null; public String BM_ProductionArea_RecIDContains = null; public String BM_ProductionArea_RecIDLike = null; public ArrayList BM_ProductionArea_RecIDBetween = null; public ArrayList BM_ProductionArea_RecIDIn = null; public String Name = null; public String NameStartsWith = null; public String NameEndsWith = null; public String NameContains = null; public String NameLike = null; public ArrayList NameBetween = null; public ArrayList NameIn = null; public String Description = null; public String DescriptionStartsWith = null; public String DescriptionEndsWith = null; public String DescriptionContains = null; public String DescriptionLike = null; public ArrayList DescriptionBetween = null; public ArrayList DescriptionIn = null; public Boolean IsEnabled = null; public Integer ItemNo = null; public Integer ItemNoGreaterThanOrEqualTo = null; public Integer ItemNoGreaterThan = null; public Integer ItemNoLessThan = null; public Integer ItemNoLessThanOrEqualTo = null; public Integer ItemNoNotEqualTo = null; public ArrayList ItemNoBetween = null; public ArrayList ItemNoIn = null; public ArrayList RowHash = null; public String getRecID() { return RecID; } public BM_ProductionLineQuery setRecID(String value) { this.RecID = value; return this; } public String getRecIDStartsWith() { return RecIDStartsWith; } public BM_ProductionLineQuery setRecIDStartsWith(String value) { this.RecIDStartsWith = value; return this; } public String getRecIDEndsWith() { return RecIDEndsWith; } public BM_ProductionLineQuery setRecIDEndsWith(String value) { this.RecIDEndsWith = value; return this; } public String getRecIDContains() { return RecIDContains; } public BM_ProductionLineQuery setRecIDContains(String value) { this.RecIDContains = value; return this; } public String getRecIDLike() { return RecIDLike; } public BM_ProductionLineQuery setRecIDLike(String value) { this.RecIDLike = value; return this; } public ArrayList getRecIDBetween() { return RecIDBetween; } public BM_ProductionLineQuery setRecIDBetween(ArrayList value) { this.RecIDBetween = value; return this; } public ArrayList getRecIDIn() { return RecIDIn; } public BM_ProductionLineQuery setRecIDIn(ArrayList value) { this.RecIDIn = value; return this; } public String getBmProductionAreaRecID() { return BM_ProductionArea_RecID; } public BM_ProductionLineQuery setBmProductionAreaRecID(String value) { this.BM_ProductionArea_RecID = value; return this; } public String getBmProductionAreaRecIDStartsWith() { return BM_ProductionArea_RecIDStartsWith; } public BM_ProductionLineQuery setBmProductionAreaRecIDStartsWith(String value) { this.BM_ProductionArea_RecIDStartsWith = value; return this; } public String getBmProductionAreaRecIDEndsWith() { return BM_ProductionArea_RecIDEndsWith; } public BM_ProductionLineQuery setBmProductionAreaRecIDEndsWith(String value) { this.BM_ProductionArea_RecIDEndsWith = value; return this; } public String getBmProductionAreaRecIDContains() { return BM_ProductionArea_RecIDContains; } public BM_ProductionLineQuery setBmProductionAreaRecIDContains(String value) { this.BM_ProductionArea_RecIDContains = value; return this; } public String getBmProductionAreaRecIDLike() { return BM_ProductionArea_RecIDLike; } public BM_ProductionLineQuery setBmProductionAreaRecIDLike(String value) { this.BM_ProductionArea_RecIDLike = value; return this; } public ArrayList getBmProductionAreaRecIDBetween() { return BM_ProductionArea_RecIDBetween; } public BM_ProductionLineQuery setBmProductionAreaRecIDBetween(ArrayList value) { this.BM_ProductionArea_RecIDBetween = value; return this; } public ArrayList getBmProductionAreaRecIDIn() { return BM_ProductionArea_RecIDIn; } public BM_ProductionLineQuery setBmProductionAreaRecIDIn(ArrayList value) { this.BM_ProductionArea_RecIDIn = value; return this; } public String getName() { return Name; } public BM_ProductionLineQuery setName(String value) { this.Name = value; return this; } public String getNameStartsWith() { return NameStartsWith; } public BM_ProductionLineQuery setNameStartsWith(String value) { this.NameStartsWith = value; return this; } public String getNameEndsWith() { return NameEndsWith; } public BM_ProductionLineQuery setNameEndsWith(String value) { this.NameEndsWith = value; return this; } public String getNameContains() { return NameContains; } public BM_ProductionLineQuery setNameContains(String value) { this.NameContains = value; return this; } public String getNameLike() { return NameLike; } public BM_ProductionLineQuery setNameLike(String value) { this.NameLike = value; return this; } public ArrayList getNameBetween() { return NameBetween; } public BM_ProductionLineQuery setNameBetween(ArrayList value) { this.NameBetween = value; return this; } public ArrayList getNameIn() { return NameIn; } public BM_ProductionLineQuery setNameIn(ArrayList value) { this.NameIn = value; return this; } public String getDescription() { return Description; } public BM_ProductionLineQuery setDescription(String value) { this.Description = value; return this; } public String getDescriptionStartsWith() { return DescriptionStartsWith; } public BM_ProductionLineQuery setDescriptionStartsWith(String value) { this.DescriptionStartsWith = value; return this; } public String getDescriptionEndsWith() { return DescriptionEndsWith; } public BM_ProductionLineQuery setDescriptionEndsWith(String value) { this.DescriptionEndsWith = value; return this; } public String getDescriptionContains() { return DescriptionContains; } public BM_ProductionLineQuery setDescriptionContains(String value) { this.DescriptionContains = value; return this; } public String getDescriptionLike() { return DescriptionLike; } public BM_ProductionLineQuery setDescriptionLike(String value) { this.DescriptionLike = value; return this; } public ArrayList getDescriptionBetween() { return DescriptionBetween; } public BM_ProductionLineQuery setDescriptionBetween(ArrayList value) { this.DescriptionBetween = value; return this; } public ArrayList getDescriptionIn() { return DescriptionIn; } public BM_ProductionLineQuery setDescriptionIn(ArrayList value) { this.DescriptionIn = value; return this; } public Boolean getIsEnabled() { return IsEnabled; } public BM_ProductionLineQuery setIsEnabled(Boolean value) { this.IsEnabled = value; return this; } public Integer getItemNo() { return ItemNo; } public BM_ProductionLineQuery setItemNo(Integer value) { this.ItemNo = value; return this; } public Integer getItemNoGreaterThanOrEqualTo() { return ItemNoGreaterThanOrEqualTo; } public BM_ProductionLineQuery setItemNoGreaterThanOrEqualTo(Integer value) { this.ItemNoGreaterThanOrEqualTo = value; return this; } public Integer getItemNoGreaterThan() { return ItemNoGreaterThan; } public BM_ProductionLineQuery setItemNoGreaterThan(Integer value) { this.ItemNoGreaterThan = value; return this; } public Integer getItemNoLessThan() { return ItemNoLessThan; } public BM_ProductionLineQuery setItemNoLessThan(Integer value) { this.ItemNoLessThan = value; return this; } public Integer getItemNoLessThanOrEqualTo() { return ItemNoLessThanOrEqualTo; } public BM_ProductionLineQuery setItemNoLessThanOrEqualTo(Integer value) { this.ItemNoLessThanOrEqualTo = value; return this; } public Integer getItemNoNotEqualTo() { return ItemNoNotEqualTo; } public BM_ProductionLineQuery setItemNoNotEqualTo(Integer value) { this.ItemNoNotEqualTo = value; return this; } public ArrayList getItemNoBetween() { return ItemNoBetween; } public BM_ProductionLineQuery setItemNoBetween(ArrayList value) { this.ItemNoBetween = value; return this; } public ArrayList getItemNoIn() { return ItemNoIn; } public BM_ProductionLineQuery setItemNoIn(ArrayList value) { this.ItemNoIn = value; return this; } public ArrayList getRowHash() { return RowHash; } public BM_ProductionLineQuery setRowHash(ArrayList value) { this.RowHash = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class BM_ProductionLineWorkCentreQuery extends QueryDb implements IReturn> { public String RecID = null; public String RecIDStartsWith = null; public String RecIDEndsWith = null; public String RecIDContains = null; public String RecIDLike = null; public ArrayList RecIDBetween = null; public ArrayList RecIDIn = null; public String BM_ProductionLine_RecID = null; public String BM_ProductionLine_RecIDStartsWith = null; public String BM_ProductionLine_RecIDEndsWith = null; public String BM_ProductionLine_RecIDContains = null; public String BM_ProductionLine_RecIDLike = null; public ArrayList BM_ProductionLine_RecIDBetween = null; public ArrayList BM_ProductionLine_RecIDIn = null; public String BM_WorkCentre_RecID = null; public String BM_WorkCentre_RecIDStartsWith = null; public String BM_WorkCentre_RecIDEndsWith = null; public String BM_WorkCentre_RecIDContains = null; public String BM_WorkCentre_RecIDLike = null; public ArrayList BM_WorkCentre_RecIDBetween = null; public ArrayList BM_WorkCentre_RecIDIn = null; public Integer ItemNo = null; public Integer ItemNoGreaterThanOrEqualTo = null; public Integer ItemNoGreaterThan = null; public Integer ItemNoLessThan = null; public Integer ItemNoLessThanOrEqualTo = null; public Integer ItemNoNotEqualTo = null; public ArrayList ItemNoBetween = null; public ArrayList ItemNoIn = null; public ArrayList RowHash = null; public String getRecID() { return RecID; } public BM_ProductionLineWorkCentreQuery setRecID(String value) { this.RecID = value; return this; } public String getRecIDStartsWith() { return RecIDStartsWith; } public BM_ProductionLineWorkCentreQuery setRecIDStartsWith(String value) { this.RecIDStartsWith = value; return this; } public String getRecIDEndsWith() { return RecIDEndsWith; } public BM_ProductionLineWorkCentreQuery setRecIDEndsWith(String value) { this.RecIDEndsWith = value; return this; } public String getRecIDContains() { return RecIDContains; } public BM_ProductionLineWorkCentreQuery setRecIDContains(String value) { this.RecIDContains = value; return this; } public String getRecIDLike() { return RecIDLike; } public BM_ProductionLineWorkCentreQuery setRecIDLike(String value) { this.RecIDLike = value; return this; } public ArrayList getRecIDBetween() { return RecIDBetween; } public BM_ProductionLineWorkCentreQuery setRecIDBetween(ArrayList value) { this.RecIDBetween = value; return this; } public ArrayList getRecIDIn() { return RecIDIn; } public BM_ProductionLineWorkCentreQuery setRecIDIn(ArrayList value) { this.RecIDIn = value; return this; } public String getBmProductionLineRecID() { return BM_ProductionLine_RecID; } public BM_ProductionLineWorkCentreQuery setBmProductionLineRecID(String value) { this.BM_ProductionLine_RecID = value; return this; } public String getBmProductionLineRecIDStartsWith() { return BM_ProductionLine_RecIDStartsWith; } public BM_ProductionLineWorkCentreQuery setBmProductionLineRecIDStartsWith(String value) { this.BM_ProductionLine_RecIDStartsWith = value; return this; } public String getBmProductionLineRecIDEndsWith() { return BM_ProductionLine_RecIDEndsWith; } public BM_ProductionLineWorkCentreQuery setBmProductionLineRecIDEndsWith(String value) { this.BM_ProductionLine_RecIDEndsWith = value; return this; } public String getBmProductionLineRecIDContains() { return BM_ProductionLine_RecIDContains; } public BM_ProductionLineWorkCentreQuery setBmProductionLineRecIDContains(String value) { this.BM_ProductionLine_RecIDContains = value; return this; } public String getBmProductionLineRecIDLike() { return BM_ProductionLine_RecIDLike; } public BM_ProductionLineWorkCentreQuery setBmProductionLineRecIDLike(String value) { this.BM_ProductionLine_RecIDLike = value; return this; } public ArrayList getBmProductionLineRecIDBetween() { return BM_ProductionLine_RecIDBetween; } public BM_ProductionLineWorkCentreQuery setBmProductionLineRecIDBetween(ArrayList value) { this.BM_ProductionLine_RecIDBetween = value; return this; } public ArrayList getBmProductionLineRecIDIn() { return BM_ProductionLine_RecIDIn; } public BM_ProductionLineWorkCentreQuery setBmProductionLineRecIDIn(ArrayList value) { this.BM_ProductionLine_RecIDIn = value; return this; } public String getBmWorkCentreRecID() { return BM_WorkCentre_RecID; } public BM_ProductionLineWorkCentreQuery setBmWorkCentreRecID(String value) { this.BM_WorkCentre_RecID = value; return this; } public String getBmWorkCentreRecIDStartsWith() { return BM_WorkCentre_RecIDStartsWith; } public BM_ProductionLineWorkCentreQuery setBmWorkCentreRecIDStartsWith(String value) { this.BM_WorkCentre_RecIDStartsWith = value; return this; } public String getBmWorkCentreRecIDEndsWith() { return BM_WorkCentre_RecIDEndsWith; } public BM_ProductionLineWorkCentreQuery setBmWorkCentreRecIDEndsWith(String value) { this.BM_WorkCentre_RecIDEndsWith = value; return this; } public String getBmWorkCentreRecIDContains() { return BM_WorkCentre_RecIDContains; } public BM_ProductionLineWorkCentreQuery setBmWorkCentreRecIDContains(String value) { this.BM_WorkCentre_RecIDContains = value; return this; } public String getBmWorkCentreRecIDLike() { return BM_WorkCentre_RecIDLike; } public BM_ProductionLineWorkCentreQuery setBmWorkCentreRecIDLike(String value) { this.BM_WorkCentre_RecIDLike = value; return this; } public ArrayList getBmWorkCentreRecIDBetween() { return BM_WorkCentre_RecIDBetween; } public BM_ProductionLineWorkCentreQuery setBmWorkCentreRecIDBetween(ArrayList value) { this.BM_WorkCentre_RecIDBetween = value; return this; } public ArrayList getBmWorkCentreRecIDIn() { return BM_WorkCentre_RecIDIn; } public BM_ProductionLineWorkCentreQuery setBmWorkCentreRecIDIn(ArrayList value) { this.BM_WorkCentre_RecIDIn = value; return this; } public Integer getItemNo() { return ItemNo; } public BM_ProductionLineWorkCentreQuery setItemNo(Integer value) { this.ItemNo = value; return this; } public Integer getItemNoGreaterThanOrEqualTo() { return ItemNoGreaterThanOrEqualTo; } public BM_ProductionLineWorkCentreQuery setItemNoGreaterThanOrEqualTo(Integer value) { this.ItemNoGreaterThanOrEqualTo = value; return this; } public Integer getItemNoGreaterThan() { return ItemNoGreaterThan; } public BM_ProductionLineWorkCentreQuery setItemNoGreaterThan(Integer value) { this.ItemNoGreaterThan = value; return this; } public Integer getItemNoLessThan() { return ItemNoLessThan; } public BM_ProductionLineWorkCentreQuery setItemNoLessThan(Integer value) { this.ItemNoLessThan = value; return this; } public Integer getItemNoLessThanOrEqualTo() { return ItemNoLessThanOrEqualTo; } public BM_ProductionLineWorkCentreQuery setItemNoLessThanOrEqualTo(Integer value) { this.ItemNoLessThanOrEqualTo = value; return this; } public Integer getItemNoNotEqualTo() { return ItemNoNotEqualTo; } public BM_ProductionLineWorkCentreQuery setItemNoNotEqualTo(Integer value) { this.ItemNoNotEqualTo = value; return this; } public ArrayList getItemNoBetween() { return ItemNoBetween; } public BM_ProductionLineWorkCentreQuery setItemNoBetween(ArrayList value) { this.ItemNoBetween = value; return this; } public ArrayList getItemNoIn() { return ItemNoIn; } public BM_ProductionLineWorkCentreQuery setItemNoIn(ArrayList value) { this.ItemNoIn = value; return this; } public ArrayList getRowHash() { return RowHash; } public BM_ProductionLineWorkCentreQuery setRowHash(ArrayList value) { this.RowHash = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class BM_ShiftQuery extends QueryDb implements IReturn> { public String RecID = null; public String RecIDStartsWith = null; public String RecIDEndsWith = null; public String RecIDContains = null; public String RecIDLike = null; public ArrayList RecIDBetween = null; public ArrayList RecIDIn = null; public String IN_LogicalID = null; public String IN_LogicalIDStartsWith = null; public String IN_LogicalIDEndsWith = null; public String IN_LogicalIDContains = null; public String IN_LogicalIDLike = null; public ArrayList IN_LogicalIDBetween = null; public ArrayList IN_LogicalIDIn = null; public String Name = null; public String NameStartsWith = null; public String NameEndsWith = null; public String NameContains = null; public String NameLike = null; public ArrayList NameBetween = null; public ArrayList NameIn = null; public String Description = null; public String DescriptionStartsWith = null; public String DescriptionEndsWith = null; public String DescriptionContains = null; public String DescriptionLike = null; public ArrayList DescriptionBetween = null; public ArrayList DescriptionIn = null; public Boolean IsEnabled = null; public Date LastSavedDateTime = null; public Date LastSavedDateTimeGreaterThanOrEqualTo = null; public Date LastSavedDateTimeGreaterThan = null; public Date LastSavedDateTimeLessThan = null; public Date LastSavedDateTimeLessThanOrEqualTo = null; public Date LastSavedDateTimeNotEqualTo = null; public ArrayList LastSavedDateTimeBetween = null; public ArrayList LastSavedDateTimeIn = null; public ArrayList RowHash = null; public Boolean IsDefault = null; public String getRecID() { return RecID; } public BM_ShiftQuery setRecID(String value) { this.RecID = value; return this; } public String getRecIDStartsWith() { return RecIDStartsWith; } public BM_ShiftQuery setRecIDStartsWith(String value) { this.RecIDStartsWith = value; return this; } public String getRecIDEndsWith() { return RecIDEndsWith; } public BM_ShiftQuery setRecIDEndsWith(String value) { this.RecIDEndsWith = value; return this; } public String getRecIDContains() { return RecIDContains; } public BM_ShiftQuery setRecIDContains(String value) { this.RecIDContains = value; return this; } public String getRecIDLike() { return RecIDLike; } public BM_ShiftQuery setRecIDLike(String value) { this.RecIDLike = value; return this; } public ArrayList getRecIDBetween() { return RecIDBetween; } public BM_ShiftQuery setRecIDBetween(ArrayList value) { this.RecIDBetween = value; return this; } public ArrayList getRecIDIn() { return RecIDIn; } public BM_ShiftQuery setRecIDIn(ArrayList value) { this.RecIDIn = value; return this; } public String getInLogicalID() { return IN_LogicalID; } public BM_ShiftQuery setInLogicalID(String value) { this.IN_LogicalID = value; return this; } public String getInLogicalIDStartsWith() { return IN_LogicalIDStartsWith; } public BM_ShiftQuery setInLogicalIDStartsWith(String value) { this.IN_LogicalIDStartsWith = value; return this; } public String getInLogicalIDEndsWith() { return IN_LogicalIDEndsWith; } public BM_ShiftQuery setInLogicalIDEndsWith(String value) { this.IN_LogicalIDEndsWith = value; return this; } public String getInLogicalIDContains() { return IN_LogicalIDContains; } public BM_ShiftQuery setInLogicalIDContains(String value) { this.IN_LogicalIDContains = value; return this; } public String getInLogicalIDLike() { return IN_LogicalIDLike; } public BM_ShiftQuery setInLogicalIDLike(String value) { this.IN_LogicalIDLike = value; return this; } public ArrayList getInLogicalIDBetween() { return IN_LogicalIDBetween; } public BM_ShiftQuery setInLogicalIDBetween(ArrayList value) { this.IN_LogicalIDBetween = value; return this; } public ArrayList getInLogicalIDIn() { return IN_LogicalIDIn; } public BM_ShiftQuery setInLogicalIDIn(ArrayList value) { this.IN_LogicalIDIn = value; return this; } public String getName() { return Name; } public BM_ShiftQuery setName(String value) { this.Name = value; return this; } public String getNameStartsWith() { return NameStartsWith; } public BM_ShiftQuery setNameStartsWith(String value) { this.NameStartsWith = value; return this; } public String getNameEndsWith() { return NameEndsWith; } public BM_ShiftQuery setNameEndsWith(String value) { this.NameEndsWith = value; return this; } public String getNameContains() { return NameContains; } public BM_ShiftQuery setNameContains(String value) { this.NameContains = value; return this; } public String getNameLike() { return NameLike; } public BM_ShiftQuery setNameLike(String value) { this.NameLike = value; return this; } public ArrayList getNameBetween() { return NameBetween; } public BM_ShiftQuery setNameBetween(ArrayList value) { this.NameBetween = value; return this; } public ArrayList getNameIn() { return NameIn; } public BM_ShiftQuery setNameIn(ArrayList value) { this.NameIn = value; return this; } public String getDescription() { return Description; } public BM_ShiftQuery setDescription(String value) { this.Description = value; return this; } public String getDescriptionStartsWith() { return DescriptionStartsWith; } public BM_ShiftQuery setDescriptionStartsWith(String value) { this.DescriptionStartsWith = value; return this; } public String getDescriptionEndsWith() { return DescriptionEndsWith; } public BM_ShiftQuery setDescriptionEndsWith(String value) { this.DescriptionEndsWith = value; return this; } public String getDescriptionContains() { return DescriptionContains; } public BM_ShiftQuery setDescriptionContains(String value) { this.DescriptionContains = value; return this; } public String getDescriptionLike() { return DescriptionLike; } public BM_ShiftQuery setDescriptionLike(String value) { this.DescriptionLike = value; return this; } public ArrayList getDescriptionBetween() { return DescriptionBetween; } public BM_ShiftQuery setDescriptionBetween(ArrayList value) { this.DescriptionBetween = value; return this; } public ArrayList getDescriptionIn() { return DescriptionIn; } public BM_ShiftQuery setDescriptionIn(ArrayList value) { this.DescriptionIn = value; return this; } public Boolean getIsEnabled() { return IsEnabled; } public BM_ShiftQuery setIsEnabled(Boolean value) { this.IsEnabled = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public BM_ShiftQuery setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getLastSavedDateTimeGreaterThanOrEqualTo() { return LastSavedDateTimeGreaterThanOrEqualTo; } public BM_ShiftQuery setLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.LastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeGreaterThan() { return LastSavedDateTimeGreaterThan; } public BM_ShiftQuery setLastSavedDateTimeGreaterThan(Date value) { this.LastSavedDateTimeGreaterThan = value; return this; } public Date getLastSavedDateTimeLessThan() { return LastSavedDateTimeLessThan; } public BM_ShiftQuery setLastSavedDateTimeLessThan(Date value) { this.LastSavedDateTimeLessThan = value; return this; } public Date getLastSavedDateTimeLessThanOrEqualTo() { return LastSavedDateTimeLessThanOrEqualTo; } public BM_ShiftQuery setLastSavedDateTimeLessThanOrEqualTo(Date value) { this.LastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeNotEqualTo() { return LastSavedDateTimeNotEqualTo; } public BM_ShiftQuery setLastSavedDateTimeNotEqualTo(Date value) { this.LastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getLastSavedDateTimeBetween() { return LastSavedDateTimeBetween; } public BM_ShiftQuery setLastSavedDateTimeBetween(ArrayList value) { this.LastSavedDateTimeBetween = value; return this; } public ArrayList getLastSavedDateTimeIn() { return LastSavedDateTimeIn; } public BM_ShiftQuery setLastSavedDateTimeIn(ArrayList value) { this.LastSavedDateTimeIn = value; return this; } public ArrayList getRowHash() { return RowHash; } public BM_ShiftQuery setRowHash(ArrayList value) { this.RowHash = value; return this; } public Boolean getIsDefault() { return IsDefault; } public BM_ShiftQuery setIsDefault(Boolean value) { this.IsDefault = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class BM_ShiftWeekdayQuery extends QueryDb implements IReturn> { public String RecID = null; public String RecIDStartsWith = null; public String RecIDEndsWith = null; public String RecIDContains = null; public String RecIDLike = null; public ArrayList RecIDBetween = null; public ArrayList RecIDIn = null; public Integer ItemNo = null; public Integer ItemNoGreaterThanOrEqualTo = null; public Integer ItemNoGreaterThan = null; public Integer ItemNoLessThan = null; public Integer ItemNoLessThanOrEqualTo = null; public Integer ItemNoNotEqualTo = null; public ArrayList ItemNoBetween = null; public ArrayList ItemNoIn = null; public String BM_Shift_RecID = null; public String BM_Shift_RecIDStartsWith = null; public String BM_Shift_RecIDEndsWith = null; public String BM_Shift_RecIDContains = null; public String BM_Shift_RecIDLike = null; public ArrayList BM_Shift_RecIDBetween = null; public ArrayList BM_Shift_RecIDIn = null; public String Name = null; public String NameStartsWith = null; public String NameEndsWith = null; public String NameContains = null; public String NameLike = null; public ArrayList NameBetween = null; public ArrayList NameIn = null; public Boolean IsWorkDay = null; public Date StartDateTime = null; public Date StartDateTimeGreaterThanOrEqualTo = null; public Date StartDateTimeGreaterThan = null; public Date StartDateTimeLessThan = null; public Date StartDateTimeLessThanOrEqualTo = null; public Date StartDateTimeNotEqualTo = null; public ArrayList StartDateTimeBetween = null; public ArrayList StartDateTimeIn = null; public Date EndDateTime = null; public Date EndDateTimeGreaterThanOrEqualTo = null; public Date EndDateTimeGreaterThan = null; public Date EndDateTimeLessThan = null; public Date EndDateTimeLessThanOrEqualTo = null; public Date EndDateTimeNotEqualTo = null; public ArrayList EndDateTimeBetween = null; public ArrayList EndDateTimeIn = null; public ArrayList RowHash = null; public String getRecID() { return RecID; } public BM_ShiftWeekdayQuery setRecID(String value) { this.RecID = value; return this; } public String getRecIDStartsWith() { return RecIDStartsWith; } public BM_ShiftWeekdayQuery setRecIDStartsWith(String value) { this.RecIDStartsWith = value; return this; } public String getRecIDEndsWith() { return RecIDEndsWith; } public BM_ShiftWeekdayQuery setRecIDEndsWith(String value) { this.RecIDEndsWith = value; return this; } public String getRecIDContains() { return RecIDContains; } public BM_ShiftWeekdayQuery setRecIDContains(String value) { this.RecIDContains = value; return this; } public String getRecIDLike() { return RecIDLike; } public BM_ShiftWeekdayQuery setRecIDLike(String value) { this.RecIDLike = value; return this; } public ArrayList getRecIDBetween() { return RecIDBetween; } public BM_ShiftWeekdayQuery setRecIDBetween(ArrayList value) { this.RecIDBetween = value; return this; } public ArrayList getRecIDIn() { return RecIDIn; } public BM_ShiftWeekdayQuery setRecIDIn(ArrayList value) { this.RecIDIn = value; return this; } public Integer getItemNo() { return ItemNo; } public BM_ShiftWeekdayQuery setItemNo(Integer value) { this.ItemNo = value; return this; } public Integer getItemNoGreaterThanOrEqualTo() { return ItemNoGreaterThanOrEqualTo; } public BM_ShiftWeekdayQuery setItemNoGreaterThanOrEqualTo(Integer value) { this.ItemNoGreaterThanOrEqualTo = value; return this; } public Integer getItemNoGreaterThan() { return ItemNoGreaterThan; } public BM_ShiftWeekdayQuery setItemNoGreaterThan(Integer value) { this.ItemNoGreaterThan = value; return this; } public Integer getItemNoLessThan() { return ItemNoLessThan; } public BM_ShiftWeekdayQuery setItemNoLessThan(Integer value) { this.ItemNoLessThan = value; return this; } public Integer getItemNoLessThanOrEqualTo() { return ItemNoLessThanOrEqualTo; } public BM_ShiftWeekdayQuery setItemNoLessThanOrEqualTo(Integer value) { this.ItemNoLessThanOrEqualTo = value; return this; } public Integer getItemNoNotEqualTo() { return ItemNoNotEqualTo; } public BM_ShiftWeekdayQuery setItemNoNotEqualTo(Integer value) { this.ItemNoNotEqualTo = value; return this; } public ArrayList getItemNoBetween() { return ItemNoBetween; } public BM_ShiftWeekdayQuery setItemNoBetween(ArrayList value) { this.ItemNoBetween = value; return this; } public ArrayList getItemNoIn() { return ItemNoIn; } public BM_ShiftWeekdayQuery setItemNoIn(ArrayList value) { this.ItemNoIn = value; return this; } public String getBmShiftRecID() { return BM_Shift_RecID; } public BM_ShiftWeekdayQuery setBmShiftRecID(String value) { this.BM_Shift_RecID = value; return this; } public String getBmShiftRecIDStartsWith() { return BM_Shift_RecIDStartsWith; } public BM_ShiftWeekdayQuery setBmShiftRecIDStartsWith(String value) { this.BM_Shift_RecIDStartsWith = value; return this; } public String getBmShiftRecIDEndsWith() { return BM_Shift_RecIDEndsWith; } public BM_ShiftWeekdayQuery setBmShiftRecIDEndsWith(String value) { this.BM_Shift_RecIDEndsWith = value; return this; } public String getBmShiftRecIDContains() { return BM_Shift_RecIDContains; } public BM_ShiftWeekdayQuery setBmShiftRecIDContains(String value) { this.BM_Shift_RecIDContains = value; return this; } public String getBmShiftRecIDLike() { return BM_Shift_RecIDLike; } public BM_ShiftWeekdayQuery setBmShiftRecIDLike(String value) { this.BM_Shift_RecIDLike = value; return this; } public ArrayList getBmShiftRecIDBetween() { return BM_Shift_RecIDBetween; } public BM_ShiftWeekdayQuery setBmShiftRecIDBetween(ArrayList value) { this.BM_Shift_RecIDBetween = value; return this; } public ArrayList getBmShiftRecIDIn() { return BM_Shift_RecIDIn; } public BM_ShiftWeekdayQuery setBmShiftRecIDIn(ArrayList value) { this.BM_Shift_RecIDIn = value; return this; } public String getName() { return Name; } public BM_ShiftWeekdayQuery setName(String value) { this.Name = value; return this; } public String getNameStartsWith() { return NameStartsWith; } public BM_ShiftWeekdayQuery setNameStartsWith(String value) { this.NameStartsWith = value; return this; } public String getNameEndsWith() { return NameEndsWith; } public BM_ShiftWeekdayQuery setNameEndsWith(String value) { this.NameEndsWith = value; return this; } public String getNameContains() { return NameContains; } public BM_ShiftWeekdayQuery setNameContains(String value) { this.NameContains = value; return this; } public String getNameLike() { return NameLike; } public BM_ShiftWeekdayQuery setNameLike(String value) { this.NameLike = value; return this; } public ArrayList getNameBetween() { return NameBetween; } public BM_ShiftWeekdayQuery setNameBetween(ArrayList value) { this.NameBetween = value; return this; } public ArrayList getNameIn() { return NameIn; } public BM_ShiftWeekdayQuery setNameIn(ArrayList value) { this.NameIn = value; return this; } public Boolean getIsWorkDay() { return IsWorkDay; } public BM_ShiftWeekdayQuery setIsWorkDay(Boolean value) { this.IsWorkDay = value; return this; } public Date getStartDateTime() { return StartDateTime; } public BM_ShiftWeekdayQuery setStartDateTime(Date value) { this.StartDateTime = value; return this; } public Date getStartDateTimeGreaterThanOrEqualTo() { return StartDateTimeGreaterThanOrEqualTo; } public BM_ShiftWeekdayQuery setStartDateTimeGreaterThanOrEqualTo(Date value) { this.StartDateTimeGreaterThanOrEqualTo = value; return this; } public Date getStartDateTimeGreaterThan() { return StartDateTimeGreaterThan; } public BM_ShiftWeekdayQuery setStartDateTimeGreaterThan(Date value) { this.StartDateTimeGreaterThan = value; return this; } public Date getStartDateTimeLessThan() { return StartDateTimeLessThan; } public BM_ShiftWeekdayQuery setStartDateTimeLessThan(Date value) { this.StartDateTimeLessThan = value; return this; } public Date getStartDateTimeLessThanOrEqualTo() { return StartDateTimeLessThanOrEqualTo; } public BM_ShiftWeekdayQuery setStartDateTimeLessThanOrEqualTo(Date value) { this.StartDateTimeLessThanOrEqualTo = value; return this; } public Date getStartDateTimeNotEqualTo() { return StartDateTimeNotEqualTo; } public BM_ShiftWeekdayQuery setStartDateTimeNotEqualTo(Date value) { this.StartDateTimeNotEqualTo = value; return this; } public ArrayList getStartDateTimeBetween() { return StartDateTimeBetween; } public BM_ShiftWeekdayQuery setStartDateTimeBetween(ArrayList value) { this.StartDateTimeBetween = value; return this; } public ArrayList getStartDateTimeIn() { return StartDateTimeIn; } public BM_ShiftWeekdayQuery setStartDateTimeIn(ArrayList value) { this.StartDateTimeIn = value; return this; } public Date getEndDateTime() { return EndDateTime; } public BM_ShiftWeekdayQuery setEndDateTime(Date value) { this.EndDateTime = value; return this; } public Date getEndDateTimeGreaterThanOrEqualTo() { return EndDateTimeGreaterThanOrEqualTo; } public BM_ShiftWeekdayQuery setEndDateTimeGreaterThanOrEqualTo(Date value) { this.EndDateTimeGreaterThanOrEqualTo = value; return this; } public Date getEndDateTimeGreaterThan() { return EndDateTimeGreaterThan; } public BM_ShiftWeekdayQuery setEndDateTimeGreaterThan(Date value) { this.EndDateTimeGreaterThan = value; return this; } public Date getEndDateTimeLessThan() { return EndDateTimeLessThan; } public BM_ShiftWeekdayQuery setEndDateTimeLessThan(Date value) { this.EndDateTimeLessThan = value; return this; } public Date getEndDateTimeLessThanOrEqualTo() { return EndDateTimeLessThanOrEqualTo; } public BM_ShiftWeekdayQuery setEndDateTimeLessThanOrEqualTo(Date value) { this.EndDateTimeLessThanOrEqualTo = value; return this; } public Date getEndDateTimeNotEqualTo() { return EndDateTimeNotEqualTo; } public BM_ShiftWeekdayQuery setEndDateTimeNotEqualTo(Date value) { this.EndDateTimeNotEqualTo = value; return this; } public ArrayList getEndDateTimeBetween() { return EndDateTimeBetween; } public BM_ShiftWeekdayQuery setEndDateTimeBetween(ArrayList value) { this.EndDateTimeBetween = value; return this; } public ArrayList getEndDateTimeIn() { return EndDateTimeIn; } public BM_ShiftWeekdayQuery setEndDateTimeIn(ArrayList value) { this.EndDateTimeIn = value; return this; } public ArrayList getRowHash() { return RowHash; } public BM_ShiftWeekdayQuery setRowHash(ArrayList value) { this.RowHash = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class BM_StageCustomFieldsQuery extends QueryDb implements IReturn> { public String RecID = null; public String RecIDStartsWith = null; public String RecIDEndsWith = null; public String RecIDContains = null; public String RecIDLike = null; public ArrayList RecIDBetween = null; public ArrayList RecIDIn = null; public String SettingName = null; public String SettingNameStartsWith = null; public String SettingNameEndsWith = null; public String SettingNameContains = null; public String SettingNameLike = null; public ArrayList SettingNameBetween = null; public ArrayList SettingNameIn = null; public String SettingDescription = null; public String SettingDescriptionStartsWith = null; public String SettingDescriptionEndsWith = null; public String SettingDescriptionContains = null; public String SettingDescriptionLike = null; public ArrayList SettingDescriptionBetween = null; public ArrayList SettingDescriptionIn = null; public Integer CellType = null; public Integer CellTypeGreaterThanOrEqualTo = null; public Integer CellTypeGreaterThan = null; public Integer CellTypeLessThan = null; public Integer CellTypeLessThanOrEqualTo = null; public Integer CellTypeNotEqualTo = null; public ArrayList CellTypeBetween = null; public ArrayList CellTypeIn = null; public String FieldParameter = null; public String FieldParameterStartsWith = null; public String FieldParameterEndsWith = null; public String FieldParameterContains = null; public String FieldParameterLike = null; public ArrayList FieldParameterBetween = null; public ArrayList FieldParameterIn = null; public UUID SY_Plugin_RecID = null; public ArrayList SY_Plugin_RecIDIn = null; public Date LastSavedDateTime = null; public Date LastSavedDateTimeGreaterThanOrEqualTo = null; public Date LastSavedDateTimeGreaterThan = null; public Date LastSavedDateTimeLessThan = null; public Date LastSavedDateTimeLessThanOrEqualTo = null; public Date LastSavedDateTimeNotEqualTo = null; public ArrayList LastSavedDateTimeBetween = null; public ArrayList LastSavedDateTimeIn = null; public Integer DisplayOrder = null; public Integer DisplayOrderGreaterThanOrEqualTo = null; public Integer DisplayOrderGreaterThan = null; public Integer DisplayOrderLessThan = null; public Integer DisplayOrderLessThanOrEqualTo = null; public Integer DisplayOrderNotEqualTo = null; public ArrayList DisplayOrderBetween = null; public ArrayList DisplayOrderIn = null; public String getRecID() { return RecID; } public BM_StageCustomFieldsQuery setRecID(String value) { this.RecID = value; return this; } public String getRecIDStartsWith() { return RecIDStartsWith; } public BM_StageCustomFieldsQuery setRecIDStartsWith(String value) { this.RecIDStartsWith = value; return this; } public String getRecIDEndsWith() { return RecIDEndsWith; } public BM_StageCustomFieldsQuery setRecIDEndsWith(String value) { this.RecIDEndsWith = value; return this; } public String getRecIDContains() { return RecIDContains; } public BM_StageCustomFieldsQuery setRecIDContains(String value) { this.RecIDContains = value; return this; } public String getRecIDLike() { return RecIDLike; } public BM_StageCustomFieldsQuery setRecIDLike(String value) { this.RecIDLike = value; return this; } public ArrayList getRecIDBetween() { return RecIDBetween; } public BM_StageCustomFieldsQuery setRecIDBetween(ArrayList value) { this.RecIDBetween = value; return this; } public ArrayList getRecIDIn() { return RecIDIn; } public BM_StageCustomFieldsQuery setRecIDIn(ArrayList value) { this.RecIDIn = value; return this; } public String getSettingName() { return SettingName; } public BM_StageCustomFieldsQuery setSettingName(String value) { this.SettingName = value; return this; } public String getSettingNameStartsWith() { return SettingNameStartsWith; } public BM_StageCustomFieldsQuery setSettingNameStartsWith(String value) { this.SettingNameStartsWith = value; return this; } public String getSettingNameEndsWith() { return SettingNameEndsWith; } public BM_StageCustomFieldsQuery setSettingNameEndsWith(String value) { this.SettingNameEndsWith = value; return this; } public String getSettingNameContains() { return SettingNameContains; } public BM_StageCustomFieldsQuery setSettingNameContains(String value) { this.SettingNameContains = value; return this; } public String getSettingNameLike() { return SettingNameLike; } public BM_StageCustomFieldsQuery setSettingNameLike(String value) { this.SettingNameLike = value; return this; } public ArrayList getSettingNameBetween() { return SettingNameBetween; } public BM_StageCustomFieldsQuery setSettingNameBetween(ArrayList value) { this.SettingNameBetween = value; return this; } public ArrayList getSettingNameIn() { return SettingNameIn; } public BM_StageCustomFieldsQuery setSettingNameIn(ArrayList value) { this.SettingNameIn = value; return this; } public String getSettingDescription() { return SettingDescription; } public BM_StageCustomFieldsQuery setSettingDescription(String value) { this.SettingDescription = value; return this; } public String getSettingDescriptionStartsWith() { return SettingDescriptionStartsWith; } public BM_StageCustomFieldsQuery setSettingDescriptionStartsWith(String value) { this.SettingDescriptionStartsWith = value; return this; } public String getSettingDescriptionEndsWith() { return SettingDescriptionEndsWith; } public BM_StageCustomFieldsQuery setSettingDescriptionEndsWith(String value) { this.SettingDescriptionEndsWith = value; return this; } public String getSettingDescriptionContains() { return SettingDescriptionContains; } public BM_StageCustomFieldsQuery setSettingDescriptionContains(String value) { this.SettingDescriptionContains = value; return this; } public String getSettingDescriptionLike() { return SettingDescriptionLike; } public BM_StageCustomFieldsQuery setSettingDescriptionLike(String value) { this.SettingDescriptionLike = value; return this; } public ArrayList getSettingDescriptionBetween() { return SettingDescriptionBetween; } public BM_StageCustomFieldsQuery setSettingDescriptionBetween(ArrayList value) { this.SettingDescriptionBetween = value; return this; } public ArrayList getSettingDescriptionIn() { return SettingDescriptionIn; } public BM_StageCustomFieldsQuery setSettingDescriptionIn(ArrayList value) { this.SettingDescriptionIn = value; return this; } public Integer getCellType() { return CellType; } public BM_StageCustomFieldsQuery setCellType(Integer value) { this.CellType = value; return this; } public Integer getCellTypeGreaterThanOrEqualTo() { return CellTypeGreaterThanOrEqualTo; } public BM_StageCustomFieldsQuery setCellTypeGreaterThanOrEqualTo(Integer value) { this.CellTypeGreaterThanOrEqualTo = value; return this; } public Integer getCellTypeGreaterThan() { return CellTypeGreaterThan; } public BM_StageCustomFieldsQuery setCellTypeGreaterThan(Integer value) { this.CellTypeGreaterThan = value; return this; } public Integer getCellTypeLessThan() { return CellTypeLessThan; } public BM_StageCustomFieldsQuery setCellTypeLessThan(Integer value) { this.CellTypeLessThan = value; return this; } public Integer getCellTypeLessThanOrEqualTo() { return CellTypeLessThanOrEqualTo; } public BM_StageCustomFieldsQuery setCellTypeLessThanOrEqualTo(Integer value) { this.CellTypeLessThanOrEqualTo = value; return this; } public Integer getCellTypeNotEqualTo() { return CellTypeNotEqualTo; } public BM_StageCustomFieldsQuery setCellTypeNotEqualTo(Integer value) { this.CellTypeNotEqualTo = value; return this; } public ArrayList getCellTypeBetween() { return CellTypeBetween; } public BM_StageCustomFieldsQuery setCellTypeBetween(ArrayList value) { this.CellTypeBetween = value; return this; } public ArrayList getCellTypeIn() { return CellTypeIn; } public BM_StageCustomFieldsQuery setCellTypeIn(ArrayList value) { this.CellTypeIn = value; return this; } public String getFieldParameter() { return FieldParameter; } public BM_StageCustomFieldsQuery setFieldParameter(String value) { this.FieldParameter = value; return this; } public String getFieldParameterStartsWith() { return FieldParameterStartsWith; } public BM_StageCustomFieldsQuery setFieldParameterStartsWith(String value) { this.FieldParameterStartsWith = value; return this; } public String getFieldParameterEndsWith() { return FieldParameterEndsWith; } public BM_StageCustomFieldsQuery setFieldParameterEndsWith(String value) { this.FieldParameterEndsWith = value; return this; } public String getFieldParameterContains() { return FieldParameterContains; } public BM_StageCustomFieldsQuery setFieldParameterContains(String value) { this.FieldParameterContains = value; return this; } public String getFieldParameterLike() { return FieldParameterLike; } public BM_StageCustomFieldsQuery setFieldParameterLike(String value) { this.FieldParameterLike = value; return this; } public ArrayList getFieldParameterBetween() { return FieldParameterBetween; } public BM_StageCustomFieldsQuery setFieldParameterBetween(ArrayList value) { this.FieldParameterBetween = value; return this; } public ArrayList getFieldParameterIn() { return FieldParameterIn; } public BM_StageCustomFieldsQuery setFieldParameterIn(ArrayList value) { this.FieldParameterIn = value; return this; } public UUID getSyPluginRecID() { return SY_Plugin_RecID; } public BM_StageCustomFieldsQuery setSyPluginRecID(UUID value) { this.SY_Plugin_RecID = value; return this; } public ArrayList getSyPluginRecIDIn() { return SY_Plugin_RecIDIn; } public BM_StageCustomFieldsQuery setSyPluginRecIDIn(ArrayList value) { this.SY_Plugin_RecIDIn = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public BM_StageCustomFieldsQuery setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getLastSavedDateTimeGreaterThanOrEqualTo() { return LastSavedDateTimeGreaterThanOrEqualTo; } public BM_StageCustomFieldsQuery setLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.LastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeGreaterThan() { return LastSavedDateTimeGreaterThan; } public BM_StageCustomFieldsQuery setLastSavedDateTimeGreaterThan(Date value) { this.LastSavedDateTimeGreaterThan = value; return this; } public Date getLastSavedDateTimeLessThan() { return LastSavedDateTimeLessThan; } public BM_StageCustomFieldsQuery setLastSavedDateTimeLessThan(Date value) { this.LastSavedDateTimeLessThan = value; return this; } public Date getLastSavedDateTimeLessThanOrEqualTo() { return LastSavedDateTimeLessThanOrEqualTo; } public BM_StageCustomFieldsQuery setLastSavedDateTimeLessThanOrEqualTo(Date value) { this.LastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeNotEqualTo() { return LastSavedDateTimeNotEqualTo; } public BM_StageCustomFieldsQuery setLastSavedDateTimeNotEqualTo(Date value) { this.LastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getLastSavedDateTimeBetween() { return LastSavedDateTimeBetween; } public BM_StageCustomFieldsQuery setLastSavedDateTimeBetween(ArrayList value) { this.LastSavedDateTimeBetween = value; return this; } public ArrayList getLastSavedDateTimeIn() { return LastSavedDateTimeIn; } public BM_StageCustomFieldsQuery setLastSavedDateTimeIn(ArrayList value) { this.LastSavedDateTimeIn = value; return this; } public Integer getDisplayOrder() { return DisplayOrder; } public BM_StageCustomFieldsQuery setDisplayOrder(Integer value) { this.DisplayOrder = value; return this; } public Integer getDisplayOrderGreaterThanOrEqualTo() { return DisplayOrderGreaterThanOrEqualTo; } public BM_StageCustomFieldsQuery setDisplayOrderGreaterThanOrEqualTo(Integer value) { this.DisplayOrderGreaterThanOrEqualTo = value; return this; } public Integer getDisplayOrderGreaterThan() { return DisplayOrderGreaterThan; } public BM_StageCustomFieldsQuery setDisplayOrderGreaterThan(Integer value) { this.DisplayOrderGreaterThan = value; return this; } public Integer getDisplayOrderLessThan() { return DisplayOrderLessThan; } public BM_StageCustomFieldsQuery setDisplayOrderLessThan(Integer value) { this.DisplayOrderLessThan = value; return this; } public Integer getDisplayOrderLessThanOrEqualTo() { return DisplayOrderLessThanOrEqualTo; } public BM_StageCustomFieldsQuery setDisplayOrderLessThanOrEqualTo(Integer value) { this.DisplayOrderLessThanOrEqualTo = value; return this; } public Integer getDisplayOrderNotEqualTo() { return DisplayOrderNotEqualTo; } public BM_StageCustomFieldsQuery setDisplayOrderNotEqualTo(Integer value) { this.DisplayOrderNotEqualTo = value; return this; } public ArrayList getDisplayOrderBetween() { return DisplayOrderBetween; } public BM_StageCustomFieldsQuery setDisplayOrderBetween(ArrayList value) { this.DisplayOrderBetween = value; return this; } public ArrayList getDisplayOrderIn() { return DisplayOrderIn; } public BM_StageCustomFieldsQuery setDisplayOrderIn(ArrayList value) { this.DisplayOrderIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class BM_StageCustomValuesQuery extends QueryDb implements IReturn> { public String RecID = null; public String RecIDStartsWith = null; public String RecIDEndsWith = null; public String RecIDContains = null; public String RecIDLike = null; public ArrayList RecIDBetween = null; public ArrayList RecIDIn = null; public String BM_Stages_RecID = null; public String BM_Stages_RecIDStartsWith = null; public String BM_Stages_RecIDEndsWith = null; public String BM_Stages_RecIDContains = null; public String BM_Stages_RecIDLike = null; public ArrayList BM_Stages_RecIDBetween = null; public ArrayList BM_Stages_RecIDIn = null; public String BM_StageCustomFields_RecID = null; public String BM_StageCustomFields_RecIDStartsWith = null; public String BM_StageCustomFields_RecIDEndsWith = null; public String BM_StageCustomFields_RecIDContains = null; public String BM_StageCustomFields_RecIDLike = null; public ArrayList BM_StageCustomFields_RecIDBetween = null; public ArrayList BM_StageCustomFields_RecIDIn = null; public String Contents = null; public String ContentsStartsWith = null; public String ContentsEndsWith = null; public String ContentsContains = null; public String ContentsLike = null; public ArrayList ContentsBetween = null; public ArrayList ContentsIn = null; public Date LastSavedDateTime = null; public Date LastSavedDateTimeGreaterThanOrEqualTo = null; public Date LastSavedDateTimeGreaterThan = null; public Date LastSavedDateTimeLessThan = null; public Date LastSavedDateTimeLessThanOrEqualTo = null; public Date LastSavedDateTimeNotEqualTo = null; public ArrayList LastSavedDateTimeBetween = null; public ArrayList LastSavedDateTimeIn = null; public String getRecID() { return RecID; } public BM_StageCustomValuesQuery setRecID(String value) { this.RecID = value; return this; } public String getRecIDStartsWith() { return RecIDStartsWith; } public BM_StageCustomValuesQuery setRecIDStartsWith(String value) { this.RecIDStartsWith = value; return this; } public String getRecIDEndsWith() { return RecIDEndsWith; } public BM_StageCustomValuesQuery setRecIDEndsWith(String value) { this.RecIDEndsWith = value; return this; } public String getRecIDContains() { return RecIDContains; } public BM_StageCustomValuesQuery setRecIDContains(String value) { this.RecIDContains = value; return this; } public String getRecIDLike() { return RecIDLike; } public BM_StageCustomValuesQuery setRecIDLike(String value) { this.RecIDLike = value; return this; } public ArrayList getRecIDBetween() { return RecIDBetween; } public BM_StageCustomValuesQuery setRecIDBetween(ArrayList value) { this.RecIDBetween = value; return this; } public ArrayList getRecIDIn() { return RecIDIn; } public BM_StageCustomValuesQuery setRecIDIn(ArrayList value) { this.RecIDIn = value; return this; } public String getBmStagesRecID() { return BM_Stages_RecID; } public BM_StageCustomValuesQuery setBmStagesRecID(String value) { this.BM_Stages_RecID = value; return this; } public String getBmStagesRecIDStartsWith() { return BM_Stages_RecIDStartsWith; } public BM_StageCustomValuesQuery setBmStagesRecIDStartsWith(String value) { this.BM_Stages_RecIDStartsWith = value; return this; } public String getBmStagesRecIDEndsWith() { return BM_Stages_RecIDEndsWith; } public BM_StageCustomValuesQuery setBmStagesRecIDEndsWith(String value) { this.BM_Stages_RecIDEndsWith = value; return this; } public String getBmStagesRecIDContains() { return BM_Stages_RecIDContains; } public BM_StageCustomValuesQuery setBmStagesRecIDContains(String value) { this.BM_Stages_RecIDContains = value; return this; } public String getBmStagesRecIDLike() { return BM_Stages_RecIDLike; } public BM_StageCustomValuesQuery setBmStagesRecIDLike(String value) { this.BM_Stages_RecIDLike = value; return this; } public ArrayList getBmStagesRecIDBetween() { return BM_Stages_RecIDBetween; } public BM_StageCustomValuesQuery setBmStagesRecIDBetween(ArrayList value) { this.BM_Stages_RecIDBetween = value; return this; } public ArrayList getBmStagesRecIDIn() { return BM_Stages_RecIDIn; } public BM_StageCustomValuesQuery setBmStagesRecIDIn(ArrayList value) { this.BM_Stages_RecIDIn = value; return this; } public String getBmStageCustomFieldsRecID() { return BM_StageCustomFields_RecID; } public BM_StageCustomValuesQuery setBmStageCustomFieldsRecID(String value) { this.BM_StageCustomFields_RecID = value; return this; } public String getBmStageCustomFieldsRecIDStartsWith() { return BM_StageCustomFields_RecIDStartsWith; } public BM_StageCustomValuesQuery setBmStageCustomFieldsRecIDStartsWith(String value) { this.BM_StageCustomFields_RecIDStartsWith = value; return this; } public String getBmStageCustomFieldsRecIDEndsWith() { return BM_StageCustomFields_RecIDEndsWith; } public BM_StageCustomValuesQuery setBmStageCustomFieldsRecIDEndsWith(String value) { this.BM_StageCustomFields_RecIDEndsWith = value; return this; } public String getBmStageCustomFieldsRecIDContains() { return BM_StageCustomFields_RecIDContains; } public BM_StageCustomValuesQuery setBmStageCustomFieldsRecIDContains(String value) { this.BM_StageCustomFields_RecIDContains = value; return this; } public String getBmStageCustomFieldsRecIDLike() { return BM_StageCustomFields_RecIDLike; } public BM_StageCustomValuesQuery setBmStageCustomFieldsRecIDLike(String value) { this.BM_StageCustomFields_RecIDLike = value; return this; } public ArrayList getBmStageCustomFieldsRecIDBetween() { return BM_StageCustomFields_RecIDBetween; } public BM_StageCustomValuesQuery setBmStageCustomFieldsRecIDBetween(ArrayList value) { this.BM_StageCustomFields_RecIDBetween = value; return this; } public ArrayList getBmStageCustomFieldsRecIDIn() { return BM_StageCustomFields_RecIDIn; } public BM_StageCustomValuesQuery setBmStageCustomFieldsRecIDIn(ArrayList value) { this.BM_StageCustomFields_RecIDIn = value; return this; } public String getContents() { return Contents; } public BM_StageCustomValuesQuery setContents(String value) { this.Contents = value; return this; } public String getContentsStartsWith() { return ContentsStartsWith; } public BM_StageCustomValuesQuery setContentsStartsWith(String value) { this.ContentsStartsWith = value; return this; } public String getContentsEndsWith() { return ContentsEndsWith; } public BM_StageCustomValuesQuery setContentsEndsWith(String value) { this.ContentsEndsWith = value; return this; } public String getContentsContains() { return ContentsContains; } public BM_StageCustomValuesQuery setContentsContains(String value) { this.ContentsContains = value; return this; } public String getContentsLike() { return ContentsLike; } public BM_StageCustomValuesQuery setContentsLike(String value) { this.ContentsLike = value; return this; } public ArrayList getContentsBetween() { return ContentsBetween; } public BM_StageCustomValuesQuery setContentsBetween(ArrayList value) { this.ContentsBetween = value; return this; } public ArrayList getContentsIn() { return ContentsIn; } public BM_StageCustomValuesQuery setContentsIn(ArrayList value) { this.ContentsIn = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public BM_StageCustomValuesQuery setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getLastSavedDateTimeGreaterThanOrEqualTo() { return LastSavedDateTimeGreaterThanOrEqualTo; } public BM_StageCustomValuesQuery setLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.LastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeGreaterThan() { return LastSavedDateTimeGreaterThan; } public BM_StageCustomValuesQuery setLastSavedDateTimeGreaterThan(Date value) { this.LastSavedDateTimeGreaterThan = value; return this; } public Date getLastSavedDateTimeLessThan() { return LastSavedDateTimeLessThan; } public BM_StageCustomValuesQuery setLastSavedDateTimeLessThan(Date value) { this.LastSavedDateTimeLessThan = value; return this; } public Date getLastSavedDateTimeLessThanOrEqualTo() { return LastSavedDateTimeLessThanOrEqualTo; } public BM_StageCustomValuesQuery setLastSavedDateTimeLessThanOrEqualTo(Date value) { this.LastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeNotEqualTo() { return LastSavedDateTimeNotEqualTo; } public BM_StageCustomValuesQuery setLastSavedDateTimeNotEqualTo(Date value) { this.LastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getLastSavedDateTimeBetween() { return LastSavedDateTimeBetween; } public BM_StageCustomValuesQuery setLastSavedDateTimeBetween(ArrayList value) { this.LastSavedDateTimeBetween = value; return this; } public ArrayList getLastSavedDateTimeIn() { return LastSavedDateTimeIn; } public BM_StageCustomValuesQuery setLastSavedDateTimeIn(ArrayList value) { this.LastSavedDateTimeIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class BM_StagesQuery extends QueryDb implements IReturn> { public String RecID = null; public String RecIDStartsWith = null; public String RecIDEndsWith = null; public String RecIDContains = null; public String RecIDLike = null; public ArrayList RecIDBetween = null; public ArrayList RecIDIn = null; public String BM_Main_RecID = null; public String BM_Main_RecIDStartsWith = null; public String BM_Main_RecIDEndsWith = null; public String BM_Main_RecIDContains = null; public String BM_Main_RecIDLike = null; public ArrayList BM_Main_RecIDBetween = null; public ArrayList BM_Main_RecIDIn = null; public Integer ItemNo = null; public Integer ItemNoGreaterThanOrEqualTo = null; public Integer ItemNoGreaterThan = null; public Integer ItemNoLessThan = null; public Integer ItemNoLessThanOrEqualTo = null; public Integer ItemNoNotEqualTo = null; public ArrayList ItemNoBetween = null; public ArrayList ItemNoIn = null; public String Name = null; public String NameStartsWith = null; public String NameEndsWith = null; public String NameContains = null; public String NameLike = null; public ArrayList NameBetween = null; public ArrayList NameIn = null; public String BM_ProductionLineWorkCentre_RecID = null; public String BM_ProductionLineWorkCentre_RecIDStartsWith = null; public String BM_ProductionLineWorkCentre_RecIDEndsWith = null; public String BM_ProductionLineWorkCentre_RecIDContains = null; public String BM_ProductionLineWorkCentre_RecIDLike = null; public ArrayList BM_ProductionLineWorkCentre_RecIDBetween = null; public ArrayList BM_ProductionLineWorkCentre_RecIDIn = null; public BigDecimal RequiredCapacity = null; public BigDecimal RequiredCapacityGreaterThanOrEqualTo = null; public BigDecimal RequiredCapacityGreaterThan = null; public BigDecimal RequiredCapacityLessThan = null; public BigDecimal RequiredCapacityLessThanOrEqualTo = null; public BigDecimal RequiredCapacityNotEqualTo = null; public ArrayList RequiredCapacityBetween = null; public ArrayList RequiredCapacityIn = null; public ArrayList RowHash = null; public String getRecID() { return RecID; } public BM_StagesQuery setRecID(String value) { this.RecID = value; return this; } public String getRecIDStartsWith() { return RecIDStartsWith; } public BM_StagesQuery setRecIDStartsWith(String value) { this.RecIDStartsWith = value; return this; } public String getRecIDEndsWith() { return RecIDEndsWith; } public BM_StagesQuery setRecIDEndsWith(String value) { this.RecIDEndsWith = value; return this; } public String getRecIDContains() { return RecIDContains; } public BM_StagesQuery setRecIDContains(String value) { this.RecIDContains = value; return this; } public String getRecIDLike() { return RecIDLike; } public BM_StagesQuery setRecIDLike(String value) { this.RecIDLike = value; return this; } public ArrayList getRecIDBetween() { return RecIDBetween; } public BM_StagesQuery setRecIDBetween(ArrayList value) { this.RecIDBetween = value; return this; } public ArrayList getRecIDIn() { return RecIDIn; } public BM_StagesQuery setRecIDIn(ArrayList value) { this.RecIDIn = value; return this; } public String getBmMainRecID() { return BM_Main_RecID; } public BM_StagesQuery setBmMainRecID(String value) { this.BM_Main_RecID = value; return this; } public String getBmMainRecIDStartsWith() { return BM_Main_RecIDStartsWith; } public BM_StagesQuery setBmMainRecIDStartsWith(String value) { this.BM_Main_RecIDStartsWith = value; return this; } public String getBmMainRecIDEndsWith() { return BM_Main_RecIDEndsWith; } public BM_StagesQuery setBmMainRecIDEndsWith(String value) { this.BM_Main_RecIDEndsWith = value; return this; } public String getBmMainRecIDContains() { return BM_Main_RecIDContains; } public BM_StagesQuery setBmMainRecIDContains(String value) { this.BM_Main_RecIDContains = value; return this; } public String getBmMainRecIDLike() { return BM_Main_RecIDLike; } public BM_StagesQuery setBmMainRecIDLike(String value) { this.BM_Main_RecIDLike = value; return this; } public ArrayList getBmMainRecIDBetween() { return BM_Main_RecIDBetween; } public BM_StagesQuery setBmMainRecIDBetween(ArrayList value) { this.BM_Main_RecIDBetween = value; return this; } public ArrayList getBmMainRecIDIn() { return BM_Main_RecIDIn; } public BM_StagesQuery setBmMainRecIDIn(ArrayList value) { this.BM_Main_RecIDIn = value; return this; } public Integer getItemNo() { return ItemNo; } public BM_StagesQuery setItemNo(Integer value) { this.ItemNo = value; return this; } public Integer getItemNoGreaterThanOrEqualTo() { return ItemNoGreaterThanOrEqualTo; } public BM_StagesQuery setItemNoGreaterThanOrEqualTo(Integer value) { this.ItemNoGreaterThanOrEqualTo = value; return this; } public Integer getItemNoGreaterThan() { return ItemNoGreaterThan; } public BM_StagesQuery setItemNoGreaterThan(Integer value) { this.ItemNoGreaterThan = value; return this; } public Integer getItemNoLessThan() { return ItemNoLessThan; } public BM_StagesQuery setItemNoLessThan(Integer value) { this.ItemNoLessThan = value; return this; } public Integer getItemNoLessThanOrEqualTo() { return ItemNoLessThanOrEqualTo; } public BM_StagesQuery setItemNoLessThanOrEqualTo(Integer value) { this.ItemNoLessThanOrEqualTo = value; return this; } public Integer getItemNoNotEqualTo() { return ItemNoNotEqualTo; } public BM_StagesQuery setItemNoNotEqualTo(Integer value) { this.ItemNoNotEqualTo = value; return this; } public ArrayList getItemNoBetween() { return ItemNoBetween; } public BM_StagesQuery setItemNoBetween(ArrayList value) { this.ItemNoBetween = value; return this; } public ArrayList getItemNoIn() { return ItemNoIn; } public BM_StagesQuery setItemNoIn(ArrayList value) { this.ItemNoIn = value; return this; } public String getName() { return Name; } public BM_StagesQuery setName(String value) { this.Name = value; return this; } public String getNameStartsWith() { return NameStartsWith; } public BM_StagesQuery setNameStartsWith(String value) { this.NameStartsWith = value; return this; } public String getNameEndsWith() { return NameEndsWith; } public BM_StagesQuery setNameEndsWith(String value) { this.NameEndsWith = value; return this; } public String getNameContains() { return NameContains; } public BM_StagesQuery setNameContains(String value) { this.NameContains = value; return this; } public String getNameLike() { return NameLike; } public BM_StagesQuery setNameLike(String value) { this.NameLike = value; return this; } public ArrayList getNameBetween() { return NameBetween; } public BM_StagesQuery setNameBetween(ArrayList value) { this.NameBetween = value; return this; } public ArrayList getNameIn() { return NameIn; } public BM_StagesQuery setNameIn(ArrayList value) { this.NameIn = value; return this; } public String getBmProductionLineWorkCentreRecID() { return BM_ProductionLineWorkCentre_RecID; } public BM_StagesQuery setBmProductionLineWorkCentreRecID(String value) { this.BM_ProductionLineWorkCentre_RecID = value; return this; } public String getBmProductionLineWorkCentreRecIDStartsWith() { return BM_ProductionLineWorkCentre_RecIDStartsWith; } public BM_StagesQuery setBmProductionLineWorkCentreRecIDStartsWith(String value) { this.BM_ProductionLineWorkCentre_RecIDStartsWith = value; return this; } public String getBmProductionLineWorkCentreRecIDEndsWith() { return BM_ProductionLineWorkCentre_RecIDEndsWith; } public BM_StagesQuery setBmProductionLineWorkCentreRecIDEndsWith(String value) { this.BM_ProductionLineWorkCentre_RecIDEndsWith = value; return this; } public String getBmProductionLineWorkCentreRecIDContains() { return BM_ProductionLineWorkCentre_RecIDContains; } public BM_StagesQuery setBmProductionLineWorkCentreRecIDContains(String value) { this.BM_ProductionLineWorkCentre_RecIDContains = value; return this; } public String getBmProductionLineWorkCentreRecIDLike() { return BM_ProductionLineWorkCentre_RecIDLike; } public BM_StagesQuery setBmProductionLineWorkCentreRecIDLike(String value) { this.BM_ProductionLineWorkCentre_RecIDLike = value; return this; } public ArrayList getBmProductionLineWorkCentreRecIDBetween() { return BM_ProductionLineWorkCentre_RecIDBetween; } public BM_StagesQuery setBmProductionLineWorkCentreRecIDBetween(ArrayList value) { this.BM_ProductionLineWorkCentre_RecIDBetween = value; return this; } public ArrayList getBmProductionLineWorkCentreRecIDIn() { return BM_ProductionLineWorkCentre_RecIDIn; } public BM_StagesQuery setBmProductionLineWorkCentreRecIDIn(ArrayList value) { this.BM_ProductionLineWorkCentre_RecIDIn = value; return this; } public BigDecimal getRequiredCapacity() { return RequiredCapacity; } public BM_StagesQuery setRequiredCapacity(BigDecimal value) { this.RequiredCapacity = value; return this; } public BigDecimal getRequiredCapacityGreaterThanOrEqualTo() { return RequiredCapacityGreaterThanOrEqualTo; } public BM_StagesQuery setRequiredCapacityGreaterThanOrEqualTo(BigDecimal value) { this.RequiredCapacityGreaterThanOrEqualTo = value; return this; } public BigDecimal getRequiredCapacityGreaterThan() { return RequiredCapacityGreaterThan; } public BM_StagesQuery setRequiredCapacityGreaterThan(BigDecimal value) { this.RequiredCapacityGreaterThan = value; return this; } public BigDecimal getRequiredCapacityLessThan() { return RequiredCapacityLessThan; } public BM_StagesQuery setRequiredCapacityLessThan(BigDecimal value) { this.RequiredCapacityLessThan = value; return this; } public BigDecimal getRequiredCapacityLessThanOrEqualTo() { return RequiredCapacityLessThanOrEqualTo; } public BM_StagesQuery setRequiredCapacityLessThanOrEqualTo(BigDecimal value) { this.RequiredCapacityLessThanOrEqualTo = value; return this; } public BigDecimal getRequiredCapacityNotEqualTo() { return RequiredCapacityNotEqualTo; } public BM_StagesQuery setRequiredCapacityNotEqualTo(BigDecimal value) { this.RequiredCapacityNotEqualTo = value; return this; } public ArrayList getRequiredCapacityBetween() { return RequiredCapacityBetween; } public BM_StagesQuery setRequiredCapacityBetween(ArrayList value) { this.RequiredCapacityBetween = value; return this; } public ArrayList getRequiredCapacityIn() { return RequiredCapacityIn; } public BM_StagesQuery setRequiredCapacityIn(ArrayList value) { this.RequiredCapacityIn = value; return this; } public ArrayList getRowHash() { return RowHash; } public BM_StagesQuery setRowHash(ArrayList value) { this.RowHash = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class BM_WarehouseProductionAreaQuery extends QueryDb implements IReturn> { public String RecID = null; public String RecIDStartsWith = null; public String RecIDEndsWith = null; public String RecIDContains = null; public String RecIDLike = null; public ArrayList RecIDBetween = null; public ArrayList RecIDIn = null; public String BM_ProductionArea_RecID = null; public String BM_ProductionArea_RecIDStartsWith = null; public String BM_ProductionArea_RecIDEndsWith = null; public String BM_ProductionArea_RecIDContains = null; public String BM_ProductionArea_RecIDLike = null; public ArrayList BM_ProductionArea_RecIDBetween = null; public ArrayList BM_ProductionArea_RecIDIn = null; public String IN_Logical_IN_LogicalID = null; public String IN_Logical_IN_LogicalIDStartsWith = null; public String IN_Logical_IN_LogicalIDEndsWith = null; public String IN_Logical_IN_LogicalIDContains = null; public String IN_Logical_IN_LogicalIDLike = null; public ArrayList IN_Logical_IN_LogicalIDBetween = null; public ArrayList IN_Logical_IN_LogicalIDIn = null; public String ProductionAreaNo = null; public String ProductionAreaNoStartsWith = null; public String ProductionAreaNoEndsWith = null; public String ProductionAreaNoContains = null; public String ProductionAreaNoLike = null; public ArrayList ProductionAreaNoBetween = null; public ArrayList ProductionAreaNoIn = null; public String Name = null; public String NameStartsWith = null; public String NameEndsWith = null; public String NameContains = null; public String NameLike = null; public ArrayList NameBetween = null; public ArrayList NameIn = null; public String Description = null; public String DescriptionStartsWith = null; public String DescriptionEndsWith = null; public String DescriptionContains = null; public String DescriptionLike = null; public ArrayList DescriptionBetween = null; public ArrayList DescriptionIn = null; public Boolean IsEnabled = null; public Integer ItemNo = null; public Integer ItemNoGreaterThanOrEqualTo = null; public Integer ItemNoGreaterThan = null; public Integer ItemNoLessThan = null; public Integer ItemNoLessThanOrEqualTo = null; public Integer ItemNoNotEqualTo = null; public ArrayList ItemNoBetween = null; public ArrayList ItemNoIn = null; public Date LastSavedDateTime = null; public Date LastSavedDateTimeGreaterThanOrEqualTo = null; public Date LastSavedDateTimeGreaterThan = null; public Date LastSavedDateTimeLessThan = null; public Date LastSavedDateTimeLessThanOrEqualTo = null; public Date LastSavedDateTimeNotEqualTo = null; public ArrayList LastSavedDateTimeBetween = null; public ArrayList LastSavedDateTimeIn = null; public ArrayList RowHash = null; public String getRecID() { return RecID; } public BM_WarehouseProductionAreaQuery setRecID(String value) { this.RecID = value; return this; } public String getRecIDStartsWith() { return RecIDStartsWith; } public BM_WarehouseProductionAreaQuery setRecIDStartsWith(String value) { this.RecIDStartsWith = value; return this; } public String getRecIDEndsWith() { return RecIDEndsWith; } public BM_WarehouseProductionAreaQuery setRecIDEndsWith(String value) { this.RecIDEndsWith = value; return this; } public String getRecIDContains() { return RecIDContains; } public BM_WarehouseProductionAreaQuery setRecIDContains(String value) { this.RecIDContains = value; return this; } public String getRecIDLike() { return RecIDLike; } public BM_WarehouseProductionAreaQuery setRecIDLike(String value) { this.RecIDLike = value; return this; } public ArrayList getRecIDBetween() { return RecIDBetween; } public BM_WarehouseProductionAreaQuery setRecIDBetween(ArrayList value) { this.RecIDBetween = value; return this; } public ArrayList getRecIDIn() { return RecIDIn; } public BM_WarehouseProductionAreaQuery setRecIDIn(ArrayList value) { this.RecIDIn = value; return this; } public String getBmProductionAreaRecID() { return BM_ProductionArea_RecID; } public BM_WarehouseProductionAreaQuery setBmProductionAreaRecID(String value) { this.BM_ProductionArea_RecID = value; return this; } public String getBmProductionAreaRecIDStartsWith() { return BM_ProductionArea_RecIDStartsWith; } public BM_WarehouseProductionAreaQuery setBmProductionAreaRecIDStartsWith(String value) { this.BM_ProductionArea_RecIDStartsWith = value; return this; } public String getBmProductionAreaRecIDEndsWith() { return BM_ProductionArea_RecIDEndsWith; } public BM_WarehouseProductionAreaQuery setBmProductionAreaRecIDEndsWith(String value) { this.BM_ProductionArea_RecIDEndsWith = value; return this; } public String getBmProductionAreaRecIDContains() { return BM_ProductionArea_RecIDContains; } public BM_WarehouseProductionAreaQuery setBmProductionAreaRecIDContains(String value) { this.BM_ProductionArea_RecIDContains = value; return this; } public String getBmProductionAreaRecIDLike() { return BM_ProductionArea_RecIDLike; } public BM_WarehouseProductionAreaQuery setBmProductionAreaRecIDLike(String value) { this.BM_ProductionArea_RecIDLike = value; return this; } public ArrayList getBmProductionAreaRecIDBetween() { return BM_ProductionArea_RecIDBetween; } public BM_WarehouseProductionAreaQuery setBmProductionAreaRecIDBetween(ArrayList value) { this.BM_ProductionArea_RecIDBetween = value; return this; } public ArrayList getBmProductionAreaRecIDIn() { return BM_ProductionArea_RecIDIn; } public BM_WarehouseProductionAreaQuery setBmProductionAreaRecIDIn(ArrayList value) { this.BM_ProductionArea_RecIDIn = value; return this; } public String getInLogicalInLogicalID() { return IN_Logical_IN_LogicalID; } public BM_WarehouseProductionAreaQuery setInLogicalInLogicalID(String value) { this.IN_Logical_IN_LogicalID = value; return this; } public String getInLogicalInLogicalIDStartsWith() { return IN_Logical_IN_LogicalIDStartsWith; } public BM_WarehouseProductionAreaQuery setInLogicalInLogicalIDStartsWith(String value) { this.IN_Logical_IN_LogicalIDStartsWith = value; return this; } public String getInLogicalInLogicalIDEndsWith() { return IN_Logical_IN_LogicalIDEndsWith; } public BM_WarehouseProductionAreaQuery setInLogicalInLogicalIDEndsWith(String value) { this.IN_Logical_IN_LogicalIDEndsWith = value; return this; } public String getInLogicalInLogicalIDContains() { return IN_Logical_IN_LogicalIDContains; } public BM_WarehouseProductionAreaQuery setInLogicalInLogicalIDContains(String value) { this.IN_Logical_IN_LogicalIDContains = value; return this; } public String getInLogicalInLogicalIDLike() { return IN_Logical_IN_LogicalIDLike; } public BM_WarehouseProductionAreaQuery setInLogicalInLogicalIDLike(String value) { this.IN_Logical_IN_LogicalIDLike = value; return this; } public ArrayList getInLogicalInLogicalIDBetween() { return IN_Logical_IN_LogicalIDBetween; } public BM_WarehouseProductionAreaQuery setInLogicalInLogicalIDBetween(ArrayList value) { this.IN_Logical_IN_LogicalIDBetween = value; return this; } public ArrayList getInLogicalInLogicalIDIn() { return IN_Logical_IN_LogicalIDIn; } public BM_WarehouseProductionAreaQuery setInLogicalInLogicalIDIn(ArrayList value) { this.IN_Logical_IN_LogicalIDIn = value; return this; } public String getProductionAreaNo() { return ProductionAreaNo; } public BM_WarehouseProductionAreaQuery setProductionAreaNo(String value) { this.ProductionAreaNo = value; return this; } public String getProductionAreaNoStartsWith() { return ProductionAreaNoStartsWith; } public BM_WarehouseProductionAreaQuery setProductionAreaNoStartsWith(String value) { this.ProductionAreaNoStartsWith = value; return this; } public String getProductionAreaNoEndsWith() { return ProductionAreaNoEndsWith; } public BM_WarehouseProductionAreaQuery setProductionAreaNoEndsWith(String value) { this.ProductionAreaNoEndsWith = value; return this; } public String getProductionAreaNoContains() { return ProductionAreaNoContains; } public BM_WarehouseProductionAreaQuery setProductionAreaNoContains(String value) { this.ProductionAreaNoContains = value; return this; } public String getProductionAreaNoLike() { return ProductionAreaNoLike; } public BM_WarehouseProductionAreaQuery setProductionAreaNoLike(String value) { this.ProductionAreaNoLike = value; return this; } public ArrayList getProductionAreaNoBetween() { return ProductionAreaNoBetween; } public BM_WarehouseProductionAreaQuery setProductionAreaNoBetween(ArrayList value) { this.ProductionAreaNoBetween = value; return this; } public ArrayList getProductionAreaNoIn() { return ProductionAreaNoIn; } public BM_WarehouseProductionAreaQuery setProductionAreaNoIn(ArrayList value) { this.ProductionAreaNoIn = value; return this; } public String getName() { return Name; } public BM_WarehouseProductionAreaQuery setName(String value) { this.Name = value; return this; } public String getNameStartsWith() { return NameStartsWith; } public BM_WarehouseProductionAreaQuery setNameStartsWith(String value) { this.NameStartsWith = value; return this; } public String getNameEndsWith() { return NameEndsWith; } public BM_WarehouseProductionAreaQuery setNameEndsWith(String value) { this.NameEndsWith = value; return this; } public String getNameContains() { return NameContains; } public BM_WarehouseProductionAreaQuery setNameContains(String value) { this.NameContains = value; return this; } public String getNameLike() { return NameLike; } public BM_WarehouseProductionAreaQuery setNameLike(String value) { this.NameLike = value; return this; } public ArrayList getNameBetween() { return NameBetween; } public BM_WarehouseProductionAreaQuery setNameBetween(ArrayList value) { this.NameBetween = value; return this; } public ArrayList getNameIn() { return NameIn; } public BM_WarehouseProductionAreaQuery setNameIn(ArrayList value) { this.NameIn = value; return this; } public String getDescription() { return Description; } public BM_WarehouseProductionAreaQuery setDescription(String value) { this.Description = value; return this; } public String getDescriptionStartsWith() { return DescriptionStartsWith; } public BM_WarehouseProductionAreaQuery setDescriptionStartsWith(String value) { this.DescriptionStartsWith = value; return this; } public String getDescriptionEndsWith() { return DescriptionEndsWith; } public BM_WarehouseProductionAreaQuery setDescriptionEndsWith(String value) { this.DescriptionEndsWith = value; return this; } public String getDescriptionContains() { return DescriptionContains; } public BM_WarehouseProductionAreaQuery setDescriptionContains(String value) { this.DescriptionContains = value; return this; } public String getDescriptionLike() { return DescriptionLike; } public BM_WarehouseProductionAreaQuery setDescriptionLike(String value) { this.DescriptionLike = value; return this; } public ArrayList getDescriptionBetween() { return DescriptionBetween; } public BM_WarehouseProductionAreaQuery setDescriptionBetween(ArrayList value) { this.DescriptionBetween = value; return this; } public ArrayList getDescriptionIn() { return DescriptionIn; } public BM_WarehouseProductionAreaQuery setDescriptionIn(ArrayList value) { this.DescriptionIn = value; return this; } public Boolean getIsEnabled() { return IsEnabled; } public BM_WarehouseProductionAreaQuery setIsEnabled(Boolean value) { this.IsEnabled = value; return this; } public Integer getItemNo() { return ItemNo; } public BM_WarehouseProductionAreaQuery setItemNo(Integer value) { this.ItemNo = value; return this; } public Integer getItemNoGreaterThanOrEqualTo() { return ItemNoGreaterThanOrEqualTo; } public BM_WarehouseProductionAreaQuery setItemNoGreaterThanOrEqualTo(Integer value) { this.ItemNoGreaterThanOrEqualTo = value; return this; } public Integer getItemNoGreaterThan() { return ItemNoGreaterThan; } public BM_WarehouseProductionAreaQuery setItemNoGreaterThan(Integer value) { this.ItemNoGreaterThan = value; return this; } public Integer getItemNoLessThan() { return ItemNoLessThan; } public BM_WarehouseProductionAreaQuery setItemNoLessThan(Integer value) { this.ItemNoLessThan = value; return this; } public Integer getItemNoLessThanOrEqualTo() { return ItemNoLessThanOrEqualTo; } public BM_WarehouseProductionAreaQuery setItemNoLessThanOrEqualTo(Integer value) { this.ItemNoLessThanOrEqualTo = value; return this; } public Integer getItemNoNotEqualTo() { return ItemNoNotEqualTo; } public BM_WarehouseProductionAreaQuery setItemNoNotEqualTo(Integer value) { this.ItemNoNotEqualTo = value; return this; } public ArrayList getItemNoBetween() { return ItemNoBetween; } public BM_WarehouseProductionAreaQuery setItemNoBetween(ArrayList value) { this.ItemNoBetween = value; return this; } public ArrayList getItemNoIn() { return ItemNoIn; } public BM_WarehouseProductionAreaQuery setItemNoIn(ArrayList value) { this.ItemNoIn = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public BM_WarehouseProductionAreaQuery setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getLastSavedDateTimeGreaterThanOrEqualTo() { return LastSavedDateTimeGreaterThanOrEqualTo; } public BM_WarehouseProductionAreaQuery setLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.LastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeGreaterThan() { return LastSavedDateTimeGreaterThan; } public BM_WarehouseProductionAreaQuery setLastSavedDateTimeGreaterThan(Date value) { this.LastSavedDateTimeGreaterThan = value; return this; } public Date getLastSavedDateTimeLessThan() { return LastSavedDateTimeLessThan; } public BM_WarehouseProductionAreaQuery setLastSavedDateTimeLessThan(Date value) { this.LastSavedDateTimeLessThan = value; return this; } public Date getLastSavedDateTimeLessThanOrEqualTo() { return LastSavedDateTimeLessThanOrEqualTo; } public BM_WarehouseProductionAreaQuery setLastSavedDateTimeLessThanOrEqualTo(Date value) { this.LastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeNotEqualTo() { return LastSavedDateTimeNotEqualTo; } public BM_WarehouseProductionAreaQuery setLastSavedDateTimeNotEqualTo(Date value) { this.LastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getLastSavedDateTimeBetween() { return LastSavedDateTimeBetween; } public BM_WarehouseProductionAreaQuery setLastSavedDateTimeBetween(ArrayList value) { this.LastSavedDateTimeBetween = value; return this; } public ArrayList getLastSavedDateTimeIn() { return LastSavedDateTimeIn; } public BM_WarehouseProductionAreaQuery setLastSavedDateTimeIn(ArrayList value) { this.LastSavedDateTimeIn = value; return this; } public ArrayList getRowHash() { return RowHash; } public BM_WarehouseProductionAreaQuery setRowHash(ArrayList value) { this.RowHash = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class BM_WarehouseProductionLineQuery extends QueryDb implements IReturn> { public String RecID = null; public String RecIDStartsWith = null; public String RecIDEndsWith = null; public String RecIDContains = null; public String RecIDLike = null; public ArrayList RecIDBetween = null; public ArrayList RecIDIn = null; public String BM_WarehouseProductionArea_RecID = null; public String BM_WarehouseProductionArea_RecIDStartsWith = null; public String BM_WarehouseProductionArea_RecIDEndsWith = null; public String BM_WarehouseProductionArea_RecIDContains = null; public String BM_WarehouseProductionArea_RecIDLike = null; public ArrayList BM_WarehouseProductionArea_RecIDBetween = null; public ArrayList BM_WarehouseProductionArea_RecIDIn = null; public String BM_ProductionLine_RecID = null; public String BM_ProductionLine_RecIDStartsWith = null; public String BM_ProductionLine_RecIDEndsWith = null; public String BM_ProductionLine_RecIDContains = null; public String BM_ProductionLine_RecIDLike = null; public ArrayList BM_ProductionLine_RecIDBetween = null; public ArrayList BM_ProductionLine_RecIDIn = null; public String Name = null; public String NameStartsWith = null; public String NameEndsWith = null; public String NameContains = null; public String NameLike = null; public ArrayList NameBetween = null; public ArrayList NameIn = null; public String Description = null; public String DescriptionStartsWith = null; public String DescriptionEndsWith = null; public String DescriptionContains = null; public String DescriptionLike = null; public ArrayList DescriptionBetween = null; public ArrayList DescriptionIn = null; public Boolean IsEnabled = null; public Integer ItemNo = null; public Integer ItemNoGreaterThanOrEqualTo = null; public Integer ItemNoGreaterThan = null; public Integer ItemNoLessThan = null; public Integer ItemNoLessThanOrEqualTo = null; public Integer ItemNoNotEqualTo = null; public ArrayList ItemNoBetween = null; public ArrayList ItemNoIn = null; public ArrayList RowHash = null; public String getRecID() { return RecID; } public BM_WarehouseProductionLineQuery setRecID(String value) { this.RecID = value; return this; } public String getRecIDStartsWith() { return RecIDStartsWith; } public BM_WarehouseProductionLineQuery setRecIDStartsWith(String value) { this.RecIDStartsWith = value; return this; } public String getRecIDEndsWith() { return RecIDEndsWith; } public BM_WarehouseProductionLineQuery setRecIDEndsWith(String value) { this.RecIDEndsWith = value; return this; } public String getRecIDContains() { return RecIDContains; } public BM_WarehouseProductionLineQuery setRecIDContains(String value) { this.RecIDContains = value; return this; } public String getRecIDLike() { return RecIDLike; } public BM_WarehouseProductionLineQuery setRecIDLike(String value) { this.RecIDLike = value; return this; } public ArrayList getRecIDBetween() { return RecIDBetween; } public BM_WarehouseProductionLineQuery setRecIDBetween(ArrayList value) { this.RecIDBetween = value; return this; } public ArrayList getRecIDIn() { return RecIDIn; } public BM_WarehouseProductionLineQuery setRecIDIn(ArrayList value) { this.RecIDIn = value; return this; } public String getBmWarehouseProductionAreaRecID() { return BM_WarehouseProductionArea_RecID; } public BM_WarehouseProductionLineQuery setBmWarehouseProductionAreaRecID(String value) { this.BM_WarehouseProductionArea_RecID = value; return this; } public String getBmWarehouseProductionAreaRecIDStartsWith() { return BM_WarehouseProductionArea_RecIDStartsWith; } public BM_WarehouseProductionLineQuery setBmWarehouseProductionAreaRecIDStartsWith(String value) { this.BM_WarehouseProductionArea_RecIDStartsWith = value; return this; } public String getBmWarehouseProductionAreaRecIDEndsWith() { return BM_WarehouseProductionArea_RecIDEndsWith; } public BM_WarehouseProductionLineQuery setBmWarehouseProductionAreaRecIDEndsWith(String value) { this.BM_WarehouseProductionArea_RecIDEndsWith = value; return this; } public String getBmWarehouseProductionAreaRecIDContains() { return BM_WarehouseProductionArea_RecIDContains; } public BM_WarehouseProductionLineQuery setBmWarehouseProductionAreaRecIDContains(String value) { this.BM_WarehouseProductionArea_RecIDContains = value; return this; } public String getBmWarehouseProductionAreaRecIDLike() { return BM_WarehouseProductionArea_RecIDLike; } public BM_WarehouseProductionLineQuery setBmWarehouseProductionAreaRecIDLike(String value) { this.BM_WarehouseProductionArea_RecIDLike = value; return this; } public ArrayList getBmWarehouseProductionAreaRecIDBetween() { return BM_WarehouseProductionArea_RecIDBetween; } public BM_WarehouseProductionLineQuery setBmWarehouseProductionAreaRecIDBetween(ArrayList value) { this.BM_WarehouseProductionArea_RecIDBetween = value; return this; } public ArrayList getBmWarehouseProductionAreaRecIDIn() { return BM_WarehouseProductionArea_RecIDIn; } public BM_WarehouseProductionLineQuery setBmWarehouseProductionAreaRecIDIn(ArrayList value) { this.BM_WarehouseProductionArea_RecIDIn = value; return this; } public String getBmProductionLineRecID() { return BM_ProductionLine_RecID; } public BM_WarehouseProductionLineQuery setBmProductionLineRecID(String value) { this.BM_ProductionLine_RecID = value; return this; } public String getBmProductionLineRecIDStartsWith() { return BM_ProductionLine_RecIDStartsWith; } public BM_WarehouseProductionLineQuery setBmProductionLineRecIDStartsWith(String value) { this.BM_ProductionLine_RecIDStartsWith = value; return this; } public String getBmProductionLineRecIDEndsWith() { return BM_ProductionLine_RecIDEndsWith; } public BM_WarehouseProductionLineQuery setBmProductionLineRecIDEndsWith(String value) { this.BM_ProductionLine_RecIDEndsWith = value; return this; } public String getBmProductionLineRecIDContains() { return BM_ProductionLine_RecIDContains; } public BM_WarehouseProductionLineQuery setBmProductionLineRecIDContains(String value) { this.BM_ProductionLine_RecIDContains = value; return this; } public String getBmProductionLineRecIDLike() { return BM_ProductionLine_RecIDLike; } public BM_WarehouseProductionLineQuery setBmProductionLineRecIDLike(String value) { this.BM_ProductionLine_RecIDLike = value; return this; } public ArrayList getBmProductionLineRecIDBetween() { return BM_ProductionLine_RecIDBetween; } public BM_WarehouseProductionLineQuery setBmProductionLineRecIDBetween(ArrayList value) { this.BM_ProductionLine_RecIDBetween = value; return this; } public ArrayList getBmProductionLineRecIDIn() { return BM_ProductionLine_RecIDIn; } public BM_WarehouseProductionLineQuery setBmProductionLineRecIDIn(ArrayList value) { this.BM_ProductionLine_RecIDIn = value; return this; } public String getName() { return Name; } public BM_WarehouseProductionLineQuery setName(String value) { this.Name = value; return this; } public String getNameStartsWith() { return NameStartsWith; } public BM_WarehouseProductionLineQuery setNameStartsWith(String value) { this.NameStartsWith = value; return this; } public String getNameEndsWith() { return NameEndsWith; } public BM_WarehouseProductionLineQuery setNameEndsWith(String value) { this.NameEndsWith = value; return this; } public String getNameContains() { return NameContains; } public BM_WarehouseProductionLineQuery setNameContains(String value) { this.NameContains = value; return this; } public String getNameLike() { return NameLike; } public BM_WarehouseProductionLineQuery setNameLike(String value) { this.NameLike = value; return this; } public ArrayList getNameBetween() { return NameBetween; } public BM_WarehouseProductionLineQuery setNameBetween(ArrayList value) { this.NameBetween = value; return this; } public ArrayList getNameIn() { return NameIn; } public BM_WarehouseProductionLineQuery setNameIn(ArrayList value) { this.NameIn = value; return this; } public String getDescription() { return Description; } public BM_WarehouseProductionLineQuery setDescription(String value) { this.Description = value; return this; } public String getDescriptionStartsWith() { return DescriptionStartsWith; } public BM_WarehouseProductionLineQuery setDescriptionStartsWith(String value) { this.DescriptionStartsWith = value; return this; } public String getDescriptionEndsWith() { return DescriptionEndsWith; } public BM_WarehouseProductionLineQuery setDescriptionEndsWith(String value) { this.DescriptionEndsWith = value; return this; } public String getDescriptionContains() { return DescriptionContains; } public BM_WarehouseProductionLineQuery setDescriptionContains(String value) { this.DescriptionContains = value; return this; } public String getDescriptionLike() { return DescriptionLike; } public BM_WarehouseProductionLineQuery setDescriptionLike(String value) { this.DescriptionLike = value; return this; } public ArrayList getDescriptionBetween() { return DescriptionBetween; } public BM_WarehouseProductionLineQuery setDescriptionBetween(ArrayList value) { this.DescriptionBetween = value; return this; } public ArrayList getDescriptionIn() { return DescriptionIn; } public BM_WarehouseProductionLineQuery setDescriptionIn(ArrayList value) { this.DescriptionIn = value; return this; } public Boolean getIsEnabled() { return IsEnabled; } public BM_WarehouseProductionLineQuery setIsEnabled(Boolean value) { this.IsEnabled = value; return this; } public Integer getItemNo() { return ItemNo; } public BM_WarehouseProductionLineQuery setItemNo(Integer value) { this.ItemNo = value; return this; } public Integer getItemNoGreaterThanOrEqualTo() { return ItemNoGreaterThanOrEqualTo; } public BM_WarehouseProductionLineQuery setItemNoGreaterThanOrEqualTo(Integer value) { this.ItemNoGreaterThanOrEqualTo = value; return this; } public Integer getItemNoGreaterThan() { return ItemNoGreaterThan; } public BM_WarehouseProductionLineQuery setItemNoGreaterThan(Integer value) { this.ItemNoGreaterThan = value; return this; } public Integer getItemNoLessThan() { return ItemNoLessThan; } public BM_WarehouseProductionLineQuery setItemNoLessThan(Integer value) { this.ItemNoLessThan = value; return this; } public Integer getItemNoLessThanOrEqualTo() { return ItemNoLessThanOrEqualTo; } public BM_WarehouseProductionLineQuery setItemNoLessThanOrEqualTo(Integer value) { this.ItemNoLessThanOrEqualTo = value; return this; } public Integer getItemNoNotEqualTo() { return ItemNoNotEqualTo; } public BM_WarehouseProductionLineQuery setItemNoNotEqualTo(Integer value) { this.ItemNoNotEqualTo = value; return this; } public ArrayList getItemNoBetween() { return ItemNoBetween; } public BM_WarehouseProductionLineQuery setItemNoBetween(ArrayList value) { this.ItemNoBetween = value; return this; } public ArrayList getItemNoIn() { return ItemNoIn; } public BM_WarehouseProductionLineQuery setItemNoIn(ArrayList value) { this.ItemNoIn = value; return this; } public ArrayList getRowHash() { return RowHash; } public BM_WarehouseProductionLineQuery setRowHash(ArrayList value) { this.RowHash = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class BM_WarehouseProductionLineWorkCentreQuery extends QueryDb implements IReturn> { public String RecID = null; public String RecIDStartsWith = null; public String RecIDEndsWith = null; public String RecIDContains = null; public String RecIDLike = null; public ArrayList RecIDBetween = null; public ArrayList RecIDIn = null; public String BM_WarehouseProductionLine_RecID = null; public String BM_WarehouseProductionLine_RecIDStartsWith = null; public String BM_WarehouseProductionLine_RecIDEndsWith = null; public String BM_WarehouseProductionLine_RecIDContains = null; public String BM_WarehouseProductionLine_RecIDLike = null; public ArrayList BM_WarehouseProductionLine_RecIDBetween = null; public ArrayList BM_WarehouseProductionLine_RecIDIn = null; public String BM_WarehouseWorkCentre_RecID = null; public String BM_WarehouseWorkCentre_RecIDStartsWith = null; public String BM_WarehouseWorkCentre_RecIDEndsWith = null; public String BM_WarehouseWorkCentre_RecIDContains = null; public String BM_WarehouseWorkCentre_RecIDLike = null; public ArrayList BM_WarehouseWorkCentre_RecIDBetween = null; public ArrayList BM_WarehouseWorkCentre_RecIDIn = null; public Integer ItemNo = null; public Integer ItemNoGreaterThanOrEqualTo = null; public Integer ItemNoGreaterThan = null; public Integer ItemNoLessThan = null; public Integer ItemNoLessThanOrEqualTo = null; public Integer ItemNoNotEqualTo = null; public ArrayList ItemNoBetween = null; public ArrayList ItemNoIn = null; public ArrayList RowHash = null; public String getRecID() { return RecID; } public BM_WarehouseProductionLineWorkCentreQuery setRecID(String value) { this.RecID = value; return this; } public String getRecIDStartsWith() { return RecIDStartsWith; } public BM_WarehouseProductionLineWorkCentreQuery setRecIDStartsWith(String value) { this.RecIDStartsWith = value; return this; } public String getRecIDEndsWith() { return RecIDEndsWith; } public BM_WarehouseProductionLineWorkCentreQuery setRecIDEndsWith(String value) { this.RecIDEndsWith = value; return this; } public String getRecIDContains() { return RecIDContains; } public BM_WarehouseProductionLineWorkCentreQuery setRecIDContains(String value) { this.RecIDContains = value; return this; } public String getRecIDLike() { return RecIDLike; } public BM_WarehouseProductionLineWorkCentreQuery setRecIDLike(String value) { this.RecIDLike = value; return this; } public ArrayList getRecIDBetween() { return RecIDBetween; } public BM_WarehouseProductionLineWorkCentreQuery setRecIDBetween(ArrayList value) { this.RecIDBetween = value; return this; } public ArrayList getRecIDIn() { return RecIDIn; } public BM_WarehouseProductionLineWorkCentreQuery setRecIDIn(ArrayList value) { this.RecIDIn = value; return this; } public String getBmWarehouseProductionLineRecID() { return BM_WarehouseProductionLine_RecID; } public BM_WarehouseProductionLineWorkCentreQuery setBmWarehouseProductionLineRecID(String value) { this.BM_WarehouseProductionLine_RecID = value; return this; } public String getBmWarehouseProductionLineRecIDStartsWith() { return BM_WarehouseProductionLine_RecIDStartsWith; } public BM_WarehouseProductionLineWorkCentreQuery setBmWarehouseProductionLineRecIDStartsWith(String value) { this.BM_WarehouseProductionLine_RecIDStartsWith = value; return this; } public String getBmWarehouseProductionLineRecIDEndsWith() { return BM_WarehouseProductionLine_RecIDEndsWith; } public BM_WarehouseProductionLineWorkCentreQuery setBmWarehouseProductionLineRecIDEndsWith(String value) { this.BM_WarehouseProductionLine_RecIDEndsWith = value; return this; } public String getBmWarehouseProductionLineRecIDContains() { return BM_WarehouseProductionLine_RecIDContains; } public BM_WarehouseProductionLineWorkCentreQuery setBmWarehouseProductionLineRecIDContains(String value) { this.BM_WarehouseProductionLine_RecIDContains = value; return this; } public String getBmWarehouseProductionLineRecIDLike() { return BM_WarehouseProductionLine_RecIDLike; } public BM_WarehouseProductionLineWorkCentreQuery setBmWarehouseProductionLineRecIDLike(String value) { this.BM_WarehouseProductionLine_RecIDLike = value; return this; } public ArrayList getBmWarehouseProductionLineRecIDBetween() { return BM_WarehouseProductionLine_RecIDBetween; } public BM_WarehouseProductionLineWorkCentreQuery setBmWarehouseProductionLineRecIDBetween(ArrayList value) { this.BM_WarehouseProductionLine_RecIDBetween = value; return this; } public ArrayList getBmWarehouseProductionLineRecIDIn() { return BM_WarehouseProductionLine_RecIDIn; } public BM_WarehouseProductionLineWorkCentreQuery setBmWarehouseProductionLineRecIDIn(ArrayList value) { this.BM_WarehouseProductionLine_RecIDIn = value; return this; } public String getBmWarehouseWorkCentreRecID() { return BM_WarehouseWorkCentre_RecID; } public BM_WarehouseProductionLineWorkCentreQuery setBmWarehouseWorkCentreRecID(String value) { this.BM_WarehouseWorkCentre_RecID = value; return this; } public String getBmWarehouseWorkCentreRecIDStartsWith() { return BM_WarehouseWorkCentre_RecIDStartsWith; } public BM_WarehouseProductionLineWorkCentreQuery setBmWarehouseWorkCentreRecIDStartsWith(String value) { this.BM_WarehouseWorkCentre_RecIDStartsWith = value; return this; } public String getBmWarehouseWorkCentreRecIDEndsWith() { return BM_WarehouseWorkCentre_RecIDEndsWith; } public BM_WarehouseProductionLineWorkCentreQuery setBmWarehouseWorkCentreRecIDEndsWith(String value) { this.BM_WarehouseWorkCentre_RecIDEndsWith = value; return this; } public String getBmWarehouseWorkCentreRecIDContains() { return BM_WarehouseWorkCentre_RecIDContains; } public BM_WarehouseProductionLineWorkCentreQuery setBmWarehouseWorkCentreRecIDContains(String value) { this.BM_WarehouseWorkCentre_RecIDContains = value; return this; } public String getBmWarehouseWorkCentreRecIDLike() { return BM_WarehouseWorkCentre_RecIDLike; } public BM_WarehouseProductionLineWorkCentreQuery setBmWarehouseWorkCentreRecIDLike(String value) { this.BM_WarehouseWorkCentre_RecIDLike = value; return this; } public ArrayList getBmWarehouseWorkCentreRecIDBetween() { return BM_WarehouseWorkCentre_RecIDBetween; } public BM_WarehouseProductionLineWorkCentreQuery setBmWarehouseWorkCentreRecIDBetween(ArrayList value) { this.BM_WarehouseWorkCentre_RecIDBetween = value; return this; } public ArrayList getBmWarehouseWorkCentreRecIDIn() { return BM_WarehouseWorkCentre_RecIDIn; } public BM_WarehouseProductionLineWorkCentreQuery setBmWarehouseWorkCentreRecIDIn(ArrayList value) { this.BM_WarehouseWorkCentre_RecIDIn = value; return this; } public Integer getItemNo() { return ItemNo; } public BM_WarehouseProductionLineWorkCentreQuery setItemNo(Integer value) { this.ItemNo = value; return this; } public Integer getItemNoGreaterThanOrEqualTo() { return ItemNoGreaterThanOrEqualTo; } public BM_WarehouseProductionLineWorkCentreQuery setItemNoGreaterThanOrEqualTo(Integer value) { this.ItemNoGreaterThanOrEqualTo = value; return this; } public Integer getItemNoGreaterThan() { return ItemNoGreaterThan; } public BM_WarehouseProductionLineWorkCentreQuery setItemNoGreaterThan(Integer value) { this.ItemNoGreaterThan = value; return this; } public Integer getItemNoLessThan() { return ItemNoLessThan; } public BM_WarehouseProductionLineWorkCentreQuery setItemNoLessThan(Integer value) { this.ItemNoLessThan = value; return this; } public Integer getItemNoLessThanOrEqualTo() { return ItemNoLessThanOrEqualTo; } public BM_WarehouseProductionLineWorkCentreQuery setItemNoLessThanOrEqualTo(Integer value) { this.ItemNoLessThanOrEqualTo = value; return this; } public Integer getItemNoNotEqualTo() { return ItemNoNotEqualTo; } public BM_WarehouseProductionLineWorkCentreQuery setItemNoNotEqualTo(Integer value) { this.ItemNoNotEqualTo = value; return this; } public ArrayList getItemNoBetween() { return ItemNoBetween; } public BM_WarehouseProductionLineWorkCentreQuery setItemNoBetween(ArrayList value) { this.ItemNoBetween = value; return this; } public ArrayList getItemNoIn() { return ItemNoIn; } public BM_WarehouseProductionLineWorkCentreQuery setItemNoIn(ArrayList value) { this.ItemNoIn = value; return this; } public ArrayList getRowHash() { return RowHash; } public BM_WarehouseProductionLineWorkCentreQuery setRowHash(ArrayList value) { this.RowHash = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class BM_WarehouseWorkCentreQuery extends QueryDb implements IReturn> { public String RecID = null; public String RecIDStartsWith = null; public String RecIDEndsWith = null; public String RecIDContains = null; public String RecIDLike = null; public ArrayList RecIDBetween = null; public ArrayList RecIDIn = null; public String IN_Logical_IN_LogicalID = null; public String IN_Logical_IN_LogicalIDStartsWith = null; public String IN_Logical_IN_LogicalIDEndsWith = null; public String IN_Logical_IN_LogicalIDContains = null; public String IN_Logical_IN_LogicalIDLike = null; public ArrayList IN_Logical_IN_LogicalIDBetween = null; public ArrayList IN_Logical_IN_LogicalIDIn = null; public String BM_WorkCentre_RecID = null; public String BM_WorkCentre_RecIDStartsWith = null; public String BM_WorkCentre_RecIDEndsWith = null; public String BM_WorkCentre_RecIDContains = null; public String BM_WorkCentre_RecIDLike = null; public ArrayList BM_WorkCentre_RecIDBetween = null; public ArrayList BM_WorkCentre_RecIDIn = null; public String Name = null; public String NameStartsWith = null; public String NameEndsWith = null; public String NameContains = null; public String NameLike = null; public ArrayList NameBetween = null; public ArrayList NameIn = null; public String Description = null; public String DescriptionStartsWith = null; public String DescriptionEndsWith = null; public String DescriptionContains = null; public String DescriptionLike = null; public ArrayList DescriptionBetween = null; public ArrayList DescriptionIn = null; public Boolean IsEnabled = null; public String HR_skills_RecID = null; public String HR_skills_RecIDStartsWith = null; public String HR_skills_RecIDEndsWith = null; public String HR_skills_RecIDContains = null; public String HR_skills_RecIDLike = null; public ArrayList HR_skills_RecIDBetween = null; public ArrayList HR_skills_RecIDIn = null; public Integer ItemNo = null; public Integer ItemNoGreaterThanOrEqualTo = null; public Integer ItemNoGreaterThan = null; public Integer ItemNoLessThan = null; public Integer ItemNoLessThanOrEqualTo = null; public Integer ItemNoNotEqualTo = null; public ArrayList ItemNoBetween = null; public ArrayList ItemNoIn = null; public Date LastSavedDateTime = null; public Date LastSavedDateTimeGreaterThanOrEqualTo = null; public Date LastSavedDateTimeGreaterThan = null; public Date LastSavedDateTimeLessThan = null; public Date LastSavedDateTimeLessThanOrEqualTo = null; public Date LastSavedDateTimeNotEqualTo = null; public ArrayList LastSavedDateTimeBetween = null; public ArrayList LastSavedDateTimeIn = null; public ArrayList RowHash = null; public String getRecID() { return RecID; } public BM_WarehouseWorkCentreQuery setRecID(String value) { this.RecID = value; return this; } public String getRecIDStartsWith() { return RecIDStartsWith; } public BM_WarehouseWorkCentreQuery setRecIDStartsWith(String value) { this.RecIDStartsWith = value; return this; } public String getRecIDEndsWith() { return RecIDEndsWith; } public BM_WarehouseWorkCentreQuery setRecIDEndsWith(String value) { this.RecIDEndsWith = value; return this; } public String getRecIDContains() { return RecIDContains; } public BM_WarehouseWorkCentreQuery setRecIDContains(String value) { this.RecIDContains = value; return this; } public String getRecIDLike() { return RecIDLike; } public BM_WarehouseWorkCentreQuery setRecIDLike(String value) { this.RecIDLike = value; return this; } public ArrayList getRecIDBetween() { return RecIDBetween; } public BM_WarehouseWorkCentreQuery setRecIDBetween(ArrayList value) { this.RecIDBetween = value; return this; } public ArrayList getRecIDIn() { return RecIDIn; } public BM_WarehouseWorkCentreQuery setRecIDIn(ArrayList value) { this.RecIDIn = value; return this; } public String getInLogicalInLogicalID() { return IN_Logical_IN_LogicalID; } public BM_WarehouseWorkCentreQuery setInLogicalInLogicalID(String value) { this.IN_Logical_IN_LogicalID = value; return this; } public String getInLogicalInLogicalIDStartsWith() { return IN_Logical_IN_LogicalIDStartsWith; } public BM_WarehouseWorkCentreQuery setInLogicalInLogicalIDStartsWith(String value) { this.IN_Logical_IN_LogicalIDStartsWith = value; return this; } public String getInLogicalInLogicalIDEndsWith() { return IN_Logical_IN_LogicalIDEndsWith; } public BM_WarehouseWorkCentreQuery setInLogicalInLogicalIDEndsWith(String value) { this.IN_Logical_IN_LogicalIDEndsWith = value; return this; } public String getInLogicalInLogicalIDContains() { return IN_Logical_IN_LogicalIDContains; } public BM_WarehouseWorkCentreQuery setInLogicalInLogicalIDContains(String value) { this.IN_Logical_IN_LogicalIDContains = value; return this; } public String getInLogicalInLogicalIDLike() { return IN_Logical_IN_LogicalIDLike; } public BM_WarehouseWorkCentreQuery setInLogicalInLogicalIDLike(String value) { this.IN_Logical_IN_LogicalIDLike = value; return this; } public ArrayList getInLogicalInLogicalIDBetween() { return IN_Logical_IN_LogicalIDBetween; } public BM_WarehouseWorkCentreQuery setInLogicalInLogicalIDBetween(ArrayList value) { this.IN_Logical_IN_LogicalIDBetween = value; return this; } public ArrayList getInLogicalInLogicalIDIn() { return IN_Logical_IN_LogicalIDIn; } public BM_WarehouseWorkCentreQuery setInLogicalInLogicalIDIn(ArrayList value) { this.IN_Logical_IN_LogicalIDIn = value; return this; } public String getBmWorkCentreRecID() { return BM_WorkCentre_RecID; } public BM_WarehouseWorkCentreQuery setBmWorkCentreRecID(String value) { this.BM_WorkCentre_RecID = value; return this; } public String getBmWorkCentreRecIDStartsWith() { return BM_WorkCentre_RecIDStartsWith; } public BM_WarehouseWorkCentreQuery setBmWorkCentreRecIDStartsWith(String value) { this.BM_WorkCentre_RecIDStartsWith = value; return this; } public String getBmWorkCentreRecIDEndsWith() { return BM_WorkCentre_RecIDEndsWith; } public BM_WarehouseWorkCentreQuery setBmWorkCentreRecIDEndsWith(String value) { this.BM_WorkCentre_RecIDEndsWith = value; return this; } public String getBmWorkCentreRecIDContains() { return BM_WorkCentre_RecIDContains; } public BM_WarehouseWorkCentreQuery setBmWorkCentreRecIDContains(String value) { this.BM_WorkCentre_RecIDContains = value; return this; } public String getBmWorkCentreRecIDLike() { return BM_WorkCentre_RecIDLike; } public BM_WarehouseWorkCentreQuery setBmWorkCentreRecIDLike(String value) { this.BM_WorkCentre_RecIDLike = value; return this; } public ArrayList getBmWorkCentreRecIDBetween() { return BM_WorkCentre_RecIDBetween; } public BM_WarehouseWorkCentreQuery setBmWorkCentreRecIDBetween(ArrayList value) { this.BM_WorkCentre_RecIDBetween = value; return this; } public ArrayList getBmWorkCentreRecIDIn() { return BM_WorkCentre_RecIDIn; } public BM_WarehouseWorkCentreQuery setBmWorkCentreRecIDIn(ArrayList value) { this.BM_WorkCentre_RecIDIn = value; return this; } public String getName() { return Name; } public BM_WarehouseWorkCentreQuery setName(String value) { this.Name = value; return this; } public String getNameStartsWith() { return NameStartsWith; } public BM_WarehouseWorkCentreQuery setNameStartsWith(String value) { this.NameStartsWith = value; return this; } public String getNameEndsWith() { return NameEndsWith; } public BM_WarehouseWorkCentreQuery setNameEndsWith(String value) { this.NameEndsWith = value; return this; } public String getNameContains() { return NameContains; } public BM_WarehouseWorkCentreQuery setNameContains(String value) { this.NameContains = value; return this; } public String getNameLike() { return NameLike; } public BM_WarehouseWorkCentreQuery setNameLike(String value) { this.NameLike = value; return this; } public ArrayList getNameBetween() { return NameBetween; } public BM_WarehouseWorkCentreQuery setNameBetween(ArrayList value) { this.NameBetween = value; return this; } public ArrayList getNameIn() { return NameIn; } public BM_WarehouseWorkCentreQuery setNameIn(ArrayList value) { this.NameIn = value; return this; } public String getDescription() { return Description; } public BM_WarehouseWorkCentreQuery setDescription(String value) { this.Description = value; return this; } public String getDescriptionStartsWith() { return DescriptionStartsWith; } public BM_WarehouseWorkCentreQuery setDescriptionStartsWith(String value) { this.DescriptionStartsWith = value; return this; } public String getDescriptionEndsWith() { return DescriptionEndsWith; } public BM_WarehouseWorkCentreQuery setDescriptionEndsWith(String value) { this.DescriptionEndsWith = value; return this; } public String getDescriptionContains() { return DescriptionContains; } public BM_WarehouseWorkCentreQuery setDescriptionContains(String value) { this.DescriptionContains = value; return this; } public String getDescriptionLike() { return DescriptionLike; } public BM_WarehouseWorkCentreQuery setDescriptionLike(String value) { this.DescriptionLike = value; return this; } public ArrayList getDescriptionBetween() { return DescriptionBetween; } public BM_WarehouseWorkCentreQuery setDescriptionBetween(ArrayList value) { this.DescriptionBetween = value; return this; } public ArrayList getDescriptionIn() { return DescriptionIn; } public BM_WarehouseWorkCentreQuery setDescriptionIn(ArrayList value) { this.DescriptionIn = value; return this; } public Boolean getIsEnabled() { return IsEnabled; } public BM_WarehouseWorkCentreQuery setIsEnabled(Boolean value) { this.IsEnabled = value; return this; } public String getHrSkillsRecID() { return HR_skills_RecID; } public BM_WarehouseWorkCentreQuery setHrSkillsRecID(String value) { this.HR_skills_RecID = value; return this; } public String getHrSkillsRecIDStartsWith() { return HR_skills_RecIDStartsWith; } public BM_WarehouseWorkCentreQuery setHrSkillsRecIDStartsWith(String value) { this.HR_skills_RecIDStartsWith = value; return this; } public String getHrSkillsRecIDEndsWith() { return HR_skills_RecIDEndsWith; } public BM_WarehouseWorkCentreQuery setHrSkillsRecIDEndsWith(String value) { this.HR_skills_RecIDEndsWith = value; return this; } public String getHrSkillsRecIDContains() { return HR_skills_RecIDContains; } public BM_WarehouseWorkCentreQuery setHrSkillsRecIDContains(String value) { this.HR_skills_RecIDContains = value; return this; } public String getHrSkillsRecIDLike() { return HR_skills_RecIDLike; } public BM_WarehouseWorkCentreQuery setHrSkillsRecIDLike(String value) { this.HR_skills_RecIDLike = value; return this; } public ArrayList getHrSkillsRecIDBetween() { return HR_skills_RecIDBetween; } public BM_WarehouseWorkCentreQuery setHrSkillsRecIDBetween(ArrayList value) { this.HR_skills_RecIDBetween = value; return this; } public ArrayList getHrSkillsRecIDIn() { return HR_skills_RecIDIn; } public BM_WarehouseWorkCentreQuery setHrSkillsRecIDIn(ArrayList value) { this.HR_skills_RecIDIn = value; return this; } public Integer getItemNo() { return ItemNo; } public BM_WarehouseWorkCentreQuery setItemNo(Integer value) { this.ItemNo = value; return this; } public Integer getItemNoGreaterThanOrEqualTo() { return ItemNoGreaterThanOrEqualTo; } public BM_WarehouseWorkCentreQuery setItemNoGreaterThanOrEqualTo(Integer value) { this.ItemNoGreaterThanOrEqualTo = value; return this; } public Integer getItemNoGreaterThan() { return ItemNoGreaterThan; } public BM_WarehouseWorkCentreQuery setItemNoGreaterThan(Integer value) { this.ItemNoGreaterThan = value; return this; } public Integer getItemNoLessThan() { return ItemNoLessThan; } public BM_WarehouseWorkCentreQuery setItemNoLessThan(Integer value) { this.ItemNoLessThan = value; return this; } public Integer getItemNoLessThanOrEqualTo() { return ItemNoLessThanOrEqualTo; } public BM_WarehouseWorkCentreQuery setItemNoLessThanOrEqualTo(Integer value) { this.ItemNoLessThanOrEqualTo = value; return this; } public Integer getItemNoNotEqualTo() { return ItemNoNotEqualTo; } public BM_WarehouseWorkCentreQuery setItemNoNotEqualTo(Integer value) { this.ItemNoNotEqualTo = value; return this; } public ArrayList getItemNoBetween() { return ItemNoBetween; } public BM_WarehouseWorkCentreQuery setItemNoBetween(ArrayList value) { this.ItemNoBetween = value; return this; } public ArrayList getItemNoIn() { return ItemNoIn; } public BM_WarehouseWorkCentreQuery setItemNoIn(ArrayList value) { this.ItemNoIn = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public BM_WarehouseWorkCentreQuery setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getLastSavedDateTimeGreaterThanOrEqualTo() { return LastSavedDateTimeGreaterThanOrEqualTo; } public BM_WarehouseWorkCentreQuery setLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.LastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeGreaterThan() { return LastSavedDateTimeGreaterThan; } public BM_WarehouseWorkCentreQuery setLastSavedDateTimeGreaterThan(Date value) { this.LastSavedDateTimeGreaterThan = value; return this; } public Date getLastSavedDateTimeLessThan() { return LastSavedDateTimeLessThan; } public BM_WarehouseWorkCentreQuery setLastSavedDateTimeLessThan(Date value) { this.LastSavedDateTimeLessThan = value; return this; } public Date getLastSavedDateTimeLessThanOrEqualTo() { return LastSavedDateTimeLessThanOrEqualTo; } public BM_WarehouseWorkCentreQuery setLastSavedDateTimeLessThanOrEqualTo(Date value) { this.LastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeNotEqualTo() { return LastSavedDateTimeNotEqualTo; } public BM_WarehouseWorkCentreQuery setLastSavedDateTimeNotEqualTo(Date value) { this.LastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getLastSavedDateTimeBetween() { return LastSavedDateTimeBetween; } public BM_WarehouseWorkCentreQuery setLastSavedDateTimeBetween(ArrayList value) { this.LastSavedDateTimeBetween = value; return this; } public ArrayList getLastSavedDateTimeIn() { return LastSavedDateTimeIn; } public BM_WarehouseWorkCentreQuery setLastSavedDateTimeIn(ArrayList value) { this.LastSavedDateTimeIn = value; return this; } public ArrayList getRowHash() { return RowHash; } public BM_WarehouseWorkCentreQuery setRowHash(ArrayList value) { this.RowHash = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class BM_WarehouseWorkCentreShiftWeekdayCapacityQuery extends QueryDb implements IReturn> { public String RecID = null; public String RecIDStartsWith = null; public String RecIDEndsWith = null; public String RecIDContains = null; public String RecIDLike = null; public ArrayList RecIDBetween = null; public ArrayList RecIDIn = null; public String BM_WarehouseWorkCentre_RecID = null; public String BM_WarehouseWorkCentre_RecIDStartsWith = null; public String BM_WarehouseWorkCentre_RecIDEndsWith = null; public String BM_WarehouseWorkCentre_RecIDContains = null; public String BM_WarehouseWorkCentre_RecIDLike = null; public ArrayList BM_WarehouseWorkCentre_RecIDBetween = null; public ArrayList BM_WarehouseWorkCentre_RecIDIn = null; public String BM_Shift_RecID = null; public String BM_Shift_RecIDStartsWith = null; public String BM_Shift_RecIDEndsWith = null; public String BM_Shift_RecIDContains = null; public String BM_Shift_RecIDLike = null; public ArrayList BM_Shift_RecIDBetween = null; public ArrayList BM_Shift_RecIDIn = null; public String BM_ShiftWeekday_RecID = null; public String BM_ShiftWeekday_RecIDStartsWith = null; public String BM_ShiftWeekday_RecIDEndsWith = null; public String BM_ShiftWeekday_RecIDContains = null; public String BM_ShiftWeekday_RecIDLike = null; public ArrayList BM_ShiftWeekday_RecIDBetween = null; public ArrayList BM_ShiftWeekday_RecIDIn = null; public BigDecimal Capacity = null; public BigDecimal CapacityGreaterThanOrEqualTo = null; public BigDecimal CapacityGreaterThan = null; public BigDecimal CapacityLessThan = null; public BigDecimal CapacityLessThanOrEqualTo = null; public BigDecimal CapacityNotEqualTo = null; public ArrayList CapacityBetween = null; public ArrayList CapacityIn = null; public Integer ItemNo = null; public Integer ItemNoGreaterThanOrEqualTo = null; public Integer ItemNoGreaterThan = null; public Integer ItemNoLessThan = null; public Integer ItemNoLessThanOrEqualTo = null; public Integer ItemNoNotEqualTo = null; public ArrayList ItemNoBetween = null; public ArrayList ItemNoIn = null; public Date LastSavedDateTime = null; public Date LastSavedDateTimeGreaterThanOrEqualTo = null; public Date LastSavedDateTimeGreaterThan = null; public Date LastSavedDateTimeLessThan = null; public Date LastSavedDateTimeLessThanOrEqualTo = null; public Date LastSavedDateTimeNotEqualTo = null; public ArrayList LastSavedDateTimeBetween = null; public ArrayList LastSavedDateTimeIn = null; public ArrayList RowHash = null; public String getRecID() { return RecID; } public BM_WarehouseWorkCentreShiftWeekdayCapacityQuery setRecID(String value) { this.RecID = value; return this; } public String getRecIDStartsWith() { return RecIDStartsWith; } public BM_WarehouseWorkCentreShiftWeekdayCapacityQuery setRecIDStartsWith(String value) { this.RecIDStartsWith = value; return this; } public String getRecIDEndsWith() { return RecIDEndsWith; } public BM_WarehouseWorkCentreShiftWeekdayCapacityQuery setRecIDEndsWith(String value) { this.RecIDEndsWith = value; return this; } public String getRecIDContains() { return RecIDContains; } public BM_WarehouseWorkCentreShiftWeekdayCapacityQuery setRecIDContains(String value) { this.RecIDContains = value; return this; } public String getRecIDLike() { return RecIDLike; } public BM_WarehouseWorkCentreShiftWeekdayCapacityQuery setRecIDLike(String value) { this.RecIDLike = value; return this; } public ArrayList getRecIDBetween() { return RecIDBetween; } public BM_WarehouseWorkCentreShiftWeekdayCapacityQuery setRecIDBetween(ArrayList value) { this.RecIDBetween = value; return this; } public ArrayList getRecIDIn() { return RecIDIn; } public BM_WarehouseWorkCentreShiftWeekdayCapacityQuery setRecIDIn(ArrayList value) { this.RecIDIn = value; return this; } public String getBmWarehouseWorkCentreRecID() { return BM_WarehouseWorkCentre_RecID; } public BM_WarehouseWorkCentreShiftWeekdayCapacityQuery setBmWarehouseWorkCentreRecID(String value) { this.BM_WarehouseWorkCentre_RecID = value; return this; } public String getBmWarehouseWorkCentreRecIDStartsWith() { return BM_WarehouseWorkCentre_RecIDStartsWith; } public BM_WarehouseWorkCentreShiftWeekdayCapacityQuery setBmWarehouseWorkCentreRecIDStartsWith(String value) { this.BM_WarehouseWorkCentre_RecIDStartsWith = value; return this; } public String getBmWarehouseWorkCentreRecIDEndsWith() { return BM_WarehouseWorkCentre_RecIDEndsWith; } public BM_WarehouseWorkCentreShiftWeekdayCapacityQuery setBmWarehouseWorkCentreRecIDEndsWith(String value) { this.BM_WarehouseWorkCentre_RecIDEndsWith = value; return this; } public String getBmWarehouseWorkCentreRecIDContains() { return BM_WarehouseWorkCentre_RecIDContains; } public BM_WarehouseWorkCentreShiftWeekdayCapacityQuery setBmWarehouseWorkCentreRecIDContains(String value) { this.BM_WarehouseWorkCentre_RecIDContains = value; return this; } public String getBmWarehouseWorkCentreRecIDLike() { return BM_WarehouseWorkCentre_RecIDLike; } public BM_WarehouseWorkCentreShiftWeekdayCapacityQuery setBmWarehouseWorkCentreRecIDLike(String value) { this.BM_WarehouseWorkCentre_RecIDLike = value; return this; } public ArrayList getBmWarehouseWorkCentreRecIDBetween() { return BM_WarehouseWorkCentre_RecIDBetween; } public BM_WarehouseWorkCentreShiftWeekdayCapacityQuery setBmWarehouseWorkCentreRecIDBetween(ArrayList value) { this.BM_WarehouseWorkCentre_RecIDBetween = value; return this; } public ArrayList getBmWarehouseWorkCentreRecIDIn() { return BM_WarehouseWorkCentre_RecIDIn; } public BM_WarehouseWorkCentreShiftWeekdayCapacityQuery setBmWarehouseWorkCentreRecIDIn(ArrayList value) { this.BM_WarehouseWorkCentre_RecIDIn = value; return this; } public String getBmShiftRecID() { return BM_Shift_RecID; } public BM_WarehouseWorkCentreShiftWeekdayCapacityQuery setBmShiftRecID(String value) { this.BM_Shift_RecID = value; return this; } public String getBmShiftRecIDStartsWith() { return BM_Shift_RecIDStartsWith; } public BM_WarehouseWorkCentreShiftWeekdayCapacityQuery setBmShiftRecIDStartsWith(String value) { this.BM_Shift_RecIDStartsWith = value; return this; } public String getBmShiftRecIDEndsWith() { return BM_Shift_RecIDEndsWith; } public BM_WarehouseWorkCentreShiftWeekdayCapacityQuery setBmShiftRecIDEndsWith(String value) { this.BM_Shift_RecIDEndsWith = value; return this; } public String getBmShiftRecIDContains() { return BM_Shift_RecIDContains; } public BM_WarehouseWorkCentreShiftWeekdayCapacityQuery setBmShiftRecIDContains(String value) { this.BM_Shift_RecIDContains = value; return this; } public String getBmShiftRecIDLike() { return BM_Shift_RecIDLike; } public BM_WarehouseWorkCentreShiftWeekdayCapacityQuery setBmShiftRecIDLike(String value) { this.BM_Shift_RecIDLike = value; return this; } public ArrayList getBmShiftRecIDBetween() { return BM_Shift_RecIDBetween; } public BM_WarehouseWorkCentreShiftWeekdayCapacityQuery setBmShiftRecIDBetween(ArrayList value) { this.BM_Shift_RecIDBetween = value; return this; } public ArrayList getBmShiftRecIDIn() { return BM_Shift_RecIDIn; } public BM_WarehouseWorkCentreShiftWeekdayCapacityQuery setBmShiftRecIDIn(ArrayList value) { this.BM_Shift_RecIDIn = value; return this; } public String getBmShiftWeekdayRecID() { return BM_ShiftWeekday_RecID; } public BM_WarehouseWorkCentreShiftWeekdayCapacityQuery setBmShiftWeekdayRecID(String value) { this.BM_ShiftWeekday_RecID = value; return this; } public String getBmShiftWeekdayRecIDStartsWith() { return BM_ShiftWeekday_RecIDStartsWith; } public BM_WarehouseWorkCentreShiftWeekdayCapacityQuery setBmShiftWeekdayRecIDStartsWith(String value) { this.BM_ShiftWeekday_RecIDStartsWith = value; return this; } public String getBmShiftWeekdayRecIDEndsWith() { return BM_ShiftWeekday_RecIDEndsWith; } public BM_WarehouseWorkCentreShiftWeekdayCapacityQuery setBmShiftWeekdayRecIDEndsWith(String value) { this.BM_ShiftWeekday_RecIDEndsWith = value; return this; } public String getBmShiftWeekdayRecIDContains() { return BM_ShiftWeekday_RecIDContains; } public BM_WarehouseWorkCentreShiftWeekdayCapacityQuery setBmShiftWeekdayRecIDContains(String value) { this.BM_ShiftWeekday_RecIDContains = value; return this; } public String getBmShiftWeekdayRecIDLike() { return BM_ShiftWeekday_RecIDLike; } public BM_WarehouseWorkCentreShiftWeekdayCapacityQuery setBmShiftWeekdayRecIDLike(String value) { this.BM_ShiftWeekday_RecIDLike = value; return this; } public ArrayList getBmShiftWeekdayRecIDBetween() { return BM_ShiftWeekday_RecIDBetween; } public BM_WarehouseWorkCentreShiftWeekdayCapacityQuery setBmShiftWeekdayRecIDBetween(ArrayList value) { this.BM_ShiftWeekday_RecIDBetween = value; return this; } public ArrayList getBmShiftWeekdayRecIDIn() { return BM_ShiftWeekday_RecIDIn; } public BM_WarehouseWorkCentreShiftWeekdayCapacityQuery setBmShiftWeekdayRecIDIn(ArrayList value) { this.BM_ShiftWeekday_RecIDIn = value; return this; } public BigDecimal getCapacity() { return Capacity; } public BM_WarehouseWorkCentreShiftWeekdayCapacityQuery setCapacity(BigDecimal value) { this.Capacity = value; return this; } public BigDecimal getCapacityGreaterThanOrEqualTo() { return CapacityGreaterThanOrEqualTo; } public BM_WarehouseWorkCentreShiftWeekdayCapacityQuery setCapacityGreaterThanOrEqualTo(BigDecimal value) { this.CapacityGreaterThanOrEqualTo = value; return this; } public BigDecimal getCapacityGreaterThan() { return CapacityGreaterThan; } public BM_WarehouseWorkCentreShiftWeekdayCapacityQuery setCapacityGreaterThan(BigDecimal value) { this.CapacityGreaterThan = value; return this; } public BigDecimal getCapacityLessThan() { return CapacityLessThan; } public BM_WarehouseWorkCentreShiftWeekdayCapacityQuery setCapacityLessThan(BigDecimal value) { this.CapacityLessThan = value; return this; } public BigDecimal getCapacityLessThanOrEqualTo() { return CapacityLessThanOrEqualTo; } public BM_WarehouseWorkCentreShiftWeekdayCapacityQuery setCapacityLessThanOrEqualTo(BigDecimal value) { this.CapacityLessThanOrEqualTo = value; return this; } public BigDecimal getCapacityNotEqualTo() { return CapacityNotEqualTo; } public BM_WarehouseWorkCentreShiftWeekdayCapacityQuery setCapacityNotEqualTo(BigDecimal value) { this.CapacityNotEqualTo = value; return this; } public ArrayList getCapacityBetween() { return CapacityBetween; } public BM_WarehouseWorkCentreShiftWeekdayCapacityQuery setCapacityBetween(ArrayList value) { this.CapacityBetween = value; return this; } public ArrayList getCapacityIn() { return CapacityIn; } public BM_WarehouseWorkCentreShiftWeekdayCapacityQuery setCapacityIn(ArrayList value) { this.CapacityIn = value; return this; } public Integer getItemNo() { return ItemNo; } public BM_WarehouseWorkCentreShiftWeekdayCapacityQuery setItemNo(Integer value) { this.ItemNo = value; return this; } public Integer getItemNoGreaterThanOrEqualTo() { return ItemNoGreaterThanOrEqualTo; } public BM_WarehouseWorkCentreShiftWeekdayCapacityQuery setItemNoGreaterThanOrEqualTo(Integer value) { this.ItemNoGreaterThanOrEqualTo = value; return this; } public Integer getItemNoGreaterThan() { return ItemNoGreaterThan; } public BM_WarehouseWorkCentreShiftWeekdayCapacityQuery setItemNoGreaterThan(Integer value) { this.ItemNoGreaterThan = value; return this; } public Integer getItemNoLessThan() { return ItemNoLessThan; } public BM_WarehouseWorkCentreShiftWeekdayCapacityQuery setItemNoLessThan(Integer value) { this.ItemNoLessThan = value; return this; } public Integer getItemNoLessThanOrEqualTo() { return ItemNoLessThanOrEqualTo; } public BM_WarehouseWorkCentreShiftWeekdayCapacityQuery setItemNoLessThanOrEqualTo(Integer value) { this.ItemNoLessThanOrEqualTo = value; return this; } public Integer getItemNoNotEqualTo() { return ItemNoNotEqualTo; } public BM_WarehouseWorkCentreShiftWeekdayCapacityQuery setItemNoNotEqualTo(Integer value) { this.ItemNoNotEqualTo = value; return this; } public ArrayList getItemNoBetween() { return ItemNoBetween; } public BM_WarehouseWorkCentreShiftWeekdayCapacityQuery setItemNoBetween(ArrayList value) { this.ItemNoBetween = value; return this; } public ArrayList getItemNoIn() { return ItemNoIn; } public BM_WarehouseWorkCentreShiftWeekdayCapacityQuery setItemNoIn(ArrayList value) { this.ItemNoIn = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public BM_WarehouseWorkCentreShiftWeekdayCapacityQuery setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getLastSavedDateTimeGreaterThanOrEqualTo() { return LastSavedDateTimeGreaterThanOrEqualTo; } public BM_WarehouseWorkCentreShiftWeekdayCapacityQuery setLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.LastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeGreaterThan() { return LastSavedDateTimeGreaterThan; } public BM_WarehouseWorkCentreShiftWeekdayCapacityQuery setLastSavedDateTimeGreaterThan(Date value) { this.LastSavedDateTimeGreaterThan = value; return this; } public Date getLastSavedDateTimeLessThan() { return LastSavedDateTimeLessThan; } public BM_WarehouseWorkCentreShiftWeekdayCapacityQuery setLastSavedDateTimeLessThan(Date value) { this.LastSavedDateTimeLessThan = value; return this; } public Date getLastSavedDateTimeLessThanOrEqualTo() { return LastSavedDateTimeLessThanOrEqualTo; } public BM_WarehouseWorkCentreShiftWeekdayCapacityQuery setLastSavedDateTimeLessThanOrEqualTo(Date value) { this.LastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeNotEqualTo() { return LastSavedDateTimeNotEqualTo; } public BM_WarehouseWorkCentreShiftWeekdayCapacityQuery setLastSavedDateTimeNotEqualTo(Date value) { this.LastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getLastSavedDateTimeBetween() { return LastSavedDateTimeBetween; } public BM_WarehouseWorkCentreShiftWeekdayCapacityQuery setLastSavedDateTimeBetween(ArrayList value) { this.LastSavedDateTimeBetween = value; return this; } public ArrayList getLastSavedDateTimeIn() { return LastSavedDateTimeIn; } public BM_WarehouseWorkCentreShiftWeekdayCapacityQuery setLastSavedDateTimeIn(ArrayList value) { this.LastSavedDateTimeIn = value; return this; } public ArrayList getRowHash() { return RowHash; } public BM_WarehouseWorkCentreShiftWeekdayCapacityQuery setRowHash(ArrayList value) { this.RowHash = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class BM_WorkCentreQuery extends QueryDb implements IReturn> { public String RecID = null; public String RecIDStartsWith = null; public String RecIDEndsWith = null; public String RecIDContains = null; public String RecIDLike = null; public ArrayList RecIDBetween = null; public ArrayList RecIDIn = null; public String Name = null; public String NameStartsWith = null; public String NameEndsWith = null; public String NameContains = null; public String NameLike = null; public ArrayList NameBetween = null; public ArrayList NameIn = null; public String Description = null; public String DescriptionStartsWith = null; public String DescriptionEndsWith = null; public String DescriptionContains = null; public String DescriptionLike = null; public ArrayList DescriptionBetween = null; public ArrayList DescriptionIn = null; public Boolean IsEnabled = null; public Integer ItemNo = null; public Integer ItemNoGreaterThanOrEqualTo = null; public Integer ItemNoGreaterThan = null; public Integer ItemNoLessThan = null; public Integer ItemNoLessThanOrEqualTo = null; public Integer ItemNoNotEqualTo = null; public ArrayList ItemNoBetween = null; public ArrayList ItemNoIn = null; public Date LastSavedDateTime = null; public Date LastSavedDateTimeGreaterThanOrEqualTo = null; public Date LastSavedDateTimeGreaterThan = null; public Date LastSavedDateTimeLessThan = null; public Date LastSavedDateTimeLessThanOrEqualTo = null; public Date LastSavedDateTimeNotEqualTo = null; public ArrayList LastSavedDateTimeBetween = null; public ArrayList LastSavedDateTimeIn = null; public ArrayList RowHash = null; public String HR_skills_RecID = null; public String HR_skills_RecIDStartsWith = null; public String HR_skills_RecIDEndsWith = null; public String HR_skills_RecIDContains = null; public String HR_skills_RecIDLike = null; public ArrayList HR_skills_RecIDBetween = null; public ArrayList HR_skills_RecIDIn = null; public String getRecID() { return RecID; } public BM_WorkCentreQuery setRecID(String value) { this.RecID = value; return this; } public String getRecIDStartsWith() { return RecIDStartsWith; } public BM_WorkCentreQuery setRecIDStartsWith(String value) { this.RecIDStartsWith = value; return this; } public String getRecIDEndsWith() { return RecIDEndsWith; } public BM_WorkCentreQuery setRecIDEndsWith(String value) { this.RecIDEndsWith = value; return this; } public String getRecIDContains() { return RecIDContains; } public BM_WorkCentreQuery setRecIDContains(String value) { this.RecIDContains = value; return this; } public String getRecIDLike() { return RecIDLike; } public BM_WorkCentreQuery setRecIDLike(String value) { this.RecIDLike = value; return this; } public ArrayList getRecIDBetween() { return RecIDBetween; } public BM_WorkCentreQuery setRecIDBetween(ArrayList value) { this.RecIDBetween = value; return this; } public ArrayList getRecIDIn() { return RecIDIn; } public BM_WorkCentreQuery setRecIDIn(ArrayList value) { this.RecIDIn = value; return this; } public String getName() { return Name; } public BM_WorkCentreQuery setName(String value) { this.Name = value; return this; } public String getNameStartsWith() { return NameStartsWith; } public BM_WorkCentreQuery setNameStartsWith(String value) { this.NameStartsWith = value; return this; } public String getNameEndsWith() { return NameEndsWith; } public BM_WorkCentreQuery setNameEndsWith(String value) { this.NameEndsWith = value; return this; } public String getNameContains() { return NameContains; } public BM_WorkCentreQuery setNameContains(String value) { this.NameContains = value; return this; } public String getNameLike() { return NameLike; } public BM_WorkCentreQuery setNameLike(String value) { this.NameLike = value; return this; } public ArrayList getNameBetween() { return NameBetween; } public BM_WorkCentreQuery setNameBetween(ArrayList value) { this.NameBetween = value; return this; } public ArrayList getNameIn() { return NameIn; } public BM_WorkCentreQuery setNameIn(ArrayList value) { this.NameIn = value; return this; } public String getDescription() { return Description; } public BM_WorkCentreQuery setDescription(String value) { this.Description = value; return this; } public String getDescriptionStartsWith() { return DescriptionStartsWith; } public BM_WorkCentreQuery setDescriptionStartsWith(String value) { this.DescriptionStartsWith = value; return this; } public String getDescriptionEndsWith() { return DescriptionEndsWith; } public BM_WorkCentreQuery setDescriptionEndsWith(String value) { this.DescriptionEndsWith = value; return this; } public String getDescriptionContains() { return DescriptionContains; } public BM_WorkCentreQuery setDescriptionContains(String value) { this.DescriptionContains = value; return this; } public String getDescriptionLike() { return DescriptionLike; } public BM_WorkCentreQuery setDescriptionLike(String value) { this.DescriptionLike = value; return this; } public ArrayList getDescriptionBetween() { return DescriptionBetween; } public BM_WorkCentreQuery setDescriptionBetween(ArrayList value) { this.DescriptionBetween = value; return this; } public ArrayList getDescriptionIn() { return DescriptionIn; } public BM_WorkCentreQuery setDescriptionIn(ArrayList value) { this.DescriptionIn = value; return this; } public Boolean getIsEnabled() { return IsEnabled; } public BM_WorkCentreQuery setIsEnabled(Boolean value) { this.IsEnabled = value; return this; } public Integer getItemNo() { return ItemNo; } public BM_WorkCentreQuery setItemNo(Integer value) { this.ItemNo = value; return this; } public Integer getItemNoGreaterThanOrEqualTo() { return ItemNoGreaterThanOrEqualTo; } public BM_WorkCentreQuery setItemNoGreaterThanOrEqualTo(Integer value) { this.ItemNoGreaterThanOrEqualTo = value; return this; } public Integer getItemNoGreaterThan() { return ItemNoGreaterThan; } public BM_WorkCentreQuery setItemNoGreaterThan(Integer value) { this.ItemNoGreaterThan = value; return this; } public Integer getItemNoLessThan() { return ItemNoLessThan; } public BM_WorkCentreQuery setItemNoLessThan(Integer value) { this.ItemNoLessThan = value; return this; } public Integer getItemNoLessThanOrEqualTo() { return ItemNoLessThanOrEqualTo; } public BM_WorkCentreQuery setItemNoLessThanOrEqualTo(Integer value) { this.ItemNoLessThanOrEqualTo = value; return this; } public Integer getItemNoNotEqualTo() { return ItemNoNotEqualTo; } public BM_WorkCentreQuery setItemNoNotEqualTo(Integer value) { this.ItemNoNotEqualTo = value; return this; } public ArrayList getItemNoBetween() { return ItemNoBetween; } public BM_WorkCentreQuery setItemNoBetween(ArrayList value) { this.ItemNoBetween = value; return this; } public ArrayList getItemNoIn() { return ItemNoIn; } public BM_WorkCentreQuery setItemNoIn(ArrayList value) { this.ItemNoIn = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public BM_WorkCentreQuery setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getLastSavedDateTimeGreaterThanOrEqualTo() { return LastSavedDateTimeGreaterThanOrEqualTo; } public BM_WorkCentreQuery setLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.LastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeGreaterThan() { return LastSavedDateTimeGreaterThan; } public BM_WorkCentreQuery setLastSavedDateTimeGreaterThan(Date value) { this.LastSavedDateTimeGreaterThan = value; return this; } public Date getLastSavedDateTimeLessThan() { return LastSavedDateTimeLessThan; } public BM_WorkCentreQuery setLastSavedDateTimeLessThan(Date value) { this.LastSavedDateTimeLessThan = value; return this; } public Date getLastSavedDateTimeLessThanOrEqualTo() { return LastSavedDateTimeLessThanOrEqualTo; } public BM_WorkCentreQuery setLastSavedDateTimeLessThanOrEqualTo(Date value) { this.LastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeNotEqualTo() { return LastSavedDateTimeNotEqualTo; } public BM_WorkCentreQuery setLastSavedDateTimeNotEqualTo(Date value) { this.LastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getLastSavedDateTimeBetween() { return LastSavedDateTimeBetween; } public BM_WorkCentreQuery setLastSavedDateTimeBetween(ArrayList value) { this.LastSavedDateTimeBetween = value; return this; } public ArrayList getLastSavedDateTimeIn() { return LastSavedDateTimeIn; } public BM_WorkCentreQuery setLastSavedDateTimeIn(ArrayList value) { this.LastSavedDateTimeIn = value; return this; } public ArrayList getRowHash() { return RowHash; } public BM_WorkCentreQuery setRowHash(ArrayList value) { this.RowHash = value; return this; } public String getHrSkillsRecID() { return HR_skills_RecID; } public BM_WorkCentreQuery setHrSkillsRecID(String value) { this.HR_skills_RecID = value; return this; } public String getHrSkillsRecIDStartsWith() { return HR_skills_RecIDStartsWith; } public BM_WorkCentreQuery setHrSkillsRecIDStartsWith(String value) { this.HR_skills_RecIDStartsWith = value; return this; } public String getHrSkillsRecIDEndsWith() { return HR_skills_RecIDEndsWith; } public BM_WorkCentreQuery setHrSkillsRecIDEndsWith(String value) { this.HR_skills_RecIDEndsWith = value; return this; } public String getHrSkillsRecIDContains() { return HR_skills_RecIDContains; } public BM_WorkCentreQuery setHrSkillsRecIDContains(String value) { this.HR_skills_RecIDContains = value; return this; } public String getHrSkillsRecIDLike() { return HR_skills_RecIDLike; } public BM_WorkCentreQuery setHrSkillsRecIDLike(String value) { this.HR_skills_RecIDLike = value; return this; } public ArrayList getHrSkillsRecIDBetween() { return HR_skills_RecIDBetween; } public BM_WorkCentreQuery setHrSkillsRecIDBetween(ArrayList value) { this.HR_skills_RecIDBetween = value; return this; } public ArrayList getHrSkillsRecIDIn() { return HR_skills_RecIDIn; } public BM_WorkCentreQuery setHrSkillsRecIDIn(ArrayList value) { this.HR_skills_RecIDIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @Route(Path="/Queries/BM_WorkOrder", Verbs="GET") @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class BM_WorkOrderQuery extends QueryDb implements IReturn> { public String RecID = null; public String RecIDStartsWith = null; public String RecIDEndsWith = null; public String RecIDContains = null; public String RecIDLike = null; public ArrayList RecIDBetween = null; public ArrayList RecIDIn = null; public String WorkOrderNo = null; public String WorkOrderNoStartsWith = null; public String WorkOrderNoEndsWith = null; public String WorkOrderNoContains = null; public String WorkOrderNoLike = null; public ArrayList WorkOrderNoBetween = null; public ArrayList WorkOrderNoIn = null; public String Reference = null; public String ReferenceStartsWith = null; public String ReferenceEndsWith = null; public String ReferenceContains = null; public String ReferenceLike = null; public ArrayList ReferenceBetween = null; public ArrayList ReferenceIn = null; public String BM_Main_RecID = null; public String BM_Main_RecIDStartsWith = null; public String BM_Main_RecIDEndsWith = null; public String BM_Main_RecIDContains = null; public String BM_Main_RecIDLike = null; public ArrayList BM_Main_RecIDBetween = null; public ArrayList BM_Main_RecIDIn = null; public String IN_LogicalID = null; public String IN_LogicalIDStartsWith = null; public String IN_LogicalIDEndsWith = null; public String IN_LogicalIDContains = null; public String IN_LogicalIDLike = null; public ArrayList IN_LogicalIDBetween = null; public ArrayList IN_LogicalIDIn = null; public Date DateCreated = null; public Date DateCreatedGreaterThanOrEqualTo = null; public Date DateCreatedGreaterThan = null; public Date DateCreatedLessThan = null; public Date DateCreatedLessThanOrEqualTo = null; public Date DateCreatedNotEqualTo = null; public ArrayList DateCreatedBetween = null; public ArrayList DateCreatedIn = null; public Date DateRequired = null; public Date DateRequiredGreaterThanOrEqualTo = null; public Date DateRequiredGreaterThan = null; public Date DateRequiredLessThan = null; public Date DateRequiredLessThanOrEqualTo = null; public Date DateRequiredNotEqualTo = null; public ArrayList DateRequiredBetween = null; public ArrayList DateRequiredIn = null; public Date PlannedStartDate = null; public Date PlannedStartDateGreaterThanOrEqualTo = null; public Date PlannedStartDateGreaterThan = null; public Date PlannedStartDateLessThan = null; public Date PlannedStartDateLessThanOrEqualTo = null; public Date PlannedStartDateNotEqualTo = null; public ArrayList PlannedStartDateBetween = null; public ArrayList PlannedStartDateIn = null; public Date ActualStartDate = null; public Date ActualStartDateGreaterThanOrEqualTo = null; public Date ActualStartDateGreaterThan = null; public Date ActualStartDateLessThan = null; public Date ActualStartDateLessThanOrEqualTo = null; public Date ActualStartDateNotEqualTo = null; public ArrayList ActualStartDateBetween = null; public ArrayList ActualStartDateIn = null; public Date DateCompleted = null; public Date DateCompletedGreaterThanOrEqualTo = null; public Date DateCompletedGreaterThan = null; public Date DateCompletedLessThan = null; public Date DateCompletedLessThanOrEqualTo = null; public Date DateCompletedNotEqualTo = null; public ArrayList DateCompletedBetween = null; public ArrayList DateCompletedIn = null; public BigDecimal ProductionQuantity = null; public BigDecimal ProductionQuantityGreaterThanOrEqualTo = null; public BigDecimal ProductionQuantityGreaterThan = null; public BigDecimal ProductionQuantityLessThan = null; public BigDecimal ProductionQuantityLessThanOrEqualTo = null; public BigDecimal ProductionQuantityNotEqualTo = null; public ArrayList ProductionQuantityBetween = null; public ArrayList ProductionQuantityIn = null; public Date LastSavedDateTime = null; public Date LastSavedDateTimeGreaterThanOrEqualTo = null; public Date LastSavedDateTimeGreaterThan = null; public Date LastSavedDateTimeLessThan = null; public Date LastSavedDateTimeLessThanOrEqualTo = null; public Date LastSavedDateTimeNotEqualTo = null; public ArrayList LastSavedDateTimeBetween = null; public ArrayList LastSavedDateTimeIn = null; public ArrayList RowHash = null; public String BM_WarehouseProductionLine_RecID = null; public String BM_WarehouseProductionLine_RecIDStartsWith = null; public String BM_WarehouseProductionLine_RecIDEndsWith = null; public String BM_WarehouseProductionLine_RecIDContains = null; public String BM_WarehouseProductionLine_RecIDLike = null; public ArrayList BM_WarehouseProductionLine_RecIDBetween = null; public ArrayList BM_WarehouseProductionLine_RecIDIn = null; public Integer Status = null; public Integer StatusGreaterThanOrEqualTo = null; public Integer StatusGreaterThan = null; public Integer StatusLessThan = null; public Integer StatusLessThanOrEqualTo = null; public Integer StatusNotEqualTo = null; public ArrayList StatusBetween = null; public ArrayList StatusIn = null; public String Parent_BM_WorkOrder_RecID = null; public String Parent_BM_WorkOrder_RecIDStartsWith = null; public String Parent_BM_WorkOrder_RecIDEndsWith = null; public String Parent_BM_WorkOrder_RecIDContains = null; public String Parent_BM_WorkOrder_RecIDLike = null; public ArrayList Parent_BM_WorkOrder_RecIDBetween = null; public ArrayList Parent_BM_WorkOrder_RecIDIn = null; public String Parent_BM_WorkOrderInputs_RecID = null; public String Parent_BM_WorkOrderInputs_RecIDStartsWith = null; public String Parent_BM_WorkOrderInputs_RecIDEndsWith = null; public String Parent_BM_WorkOrderInputs_RecIDContains = null; public String Parent_BM_WorkOrderInputs_RecIDLike = null; public ArrayList Parent_BM_WorkOrderInputs_RecIDBetween = null; public ArrayList Parent_BM_WorkOrderInputs_RecIDIn = null; public Short WorkOrderType = null; public Short WorkOrderTypeGreaterThanOrEqualTo = null; public Short WorkOrderTypeGreaterThan = null; public Short WorkOrderTypeLessThan = null; public Short WorkOrderTypeLessThanOrEqualTo = null; public Short WorkOrderTypeNotEqualTo = null; public ArrayList WorkOrderTypeBetween = null; public ArrayList WorkOrderTypeIn = null; public String Reversal_BM_WorkOrder_RecID = null; public String Reversal_BM_WorkOrder_RecIDStartsWith = null; public String Reversal_BM_WorkOrder_RecIDEndsWith = null; public String Reversal_BM_WorkOrder_RecIDContains = null; public String Reversal_BM_WorkOrder_RecIDLike = null; public ArrayList Reversal_BM_WorkOrder_RecIDBetween = null; public ArrayList Reversal_BM_WorkOrder_RecIDIn = null; public Boolean Migrated = null; public String SO_Lines_InvoiceLineID = null; public String SO_Lines_InvoiceLineIDStartsWith = null; public String SO_Lines_InvoiceLineIDEndsWith = null; public String SO_Lines_InvoiceLineIDContains = null; public String SO_Lines_InvoiceLineIDLike = null; public ArrayList SO_Lines_InvoiceLineIDBetween = null; public ArrayList SO_Lines_InvoiceLineIDIn = null; public String getRecID() { return RecID; } public BM_WorkOrderQuery setRecID(String value) { this.RecID = value; return this; } public String getRecIDStartsWith() { return RecIDStartsWith; } public BM_WorkOrderQuery setRecIDStartsWith(String value) { this.RecIDStartsWith = value; return this; } public String getRecIDEndsWith() { return RecIDEndsWith; } public BM_WorkOrderQuery setRecIDEndsWith(String value) { this.RecIDEndsWith = value; return this; } public String getRecIDContains() { return RecIDContains; } public BM_WorkOrderQuery setRecIDContains(String value) { this.RecIDContains = value; return this; } public String getRecIDLike() { return RecIDLike; } public BM_WorkOrderQuery setRecIDLike(String value) { this.RecIDLike = value; return this; } public ArrayList getRecIDBetween() { return RecIDBetween; } public BM_WorkOrderQuery setRecIDBetween(ArrayList value) { this.RecIDBetween = value; return this; } public ArrayList getRecIDIn() { return RecIDIn; } public BM_WorkOrderQuery setRecIDIn(ArrayList value) { this.RecIDIn = value; return this; } public String getWorkOrderNo() { return WorkOrderNo; } public BM_WorkOrderQuery setWorkOrderNo(String value) { this.WorkOrderNo = value; return this; } public String getWorkOrderNoStartsWith() { return WorkOrderNoStartsWith; } public BM_WorkOrderQuery setWorkOrderNoStartsWith(String value) { this.WorkOrderNoStartsWith = value; return this; } public String getWorkOrderNoEndsWith() { return WorkOrderNoEndsWith; } public BM_WorkOrderQuery setWorkOrderNoEndsWith(String value) { this.WorkOrderNoEndsWith = value; return this; } public String getWorkOrderNoContains() { return WorkOrderNoContains; } public BM_WorkOrderQuery setWorkOrderNoContains(String value) { this.WorkOrderNoContains = value; return this; } public String getWorkOrderNoLike() { return WorkOrderNoLike; } public BM_WorkOrderQuery setWorkOrderNoLike(String value) { this.WorkOrderNoLike = value; return this; } public ArrayList getWorkOrderNoBetween() { return WorkOrderNoBetween; } public BM_WorkOrderQuery setWorkOrderNoBetween(ArrayList value) { this.WorkOrderNoBetween = value; return this; } public ArrayList getWorkOrderNoIn() { return WorkOrderNoIn; } public BM_WorkOrderQuery setWorkOrderNoIn(ArrayList value) { this.WorkOrderNoIn = value; return this; } public String getReference() { return Reference; } public BM_WorkOrderQuery setReference(String value) { this.Reference = value; return this; } public String getReferenceStartsWith() { return ReferenceStartsWith; } public BM_WorkOrderQuery setReferenceStartsWith(String value) { this.ReferenceStartsWith = value; return this; } public String getReferenceEndsWith() { return ReferenceEndsWith; } public BM_WorkOrderQuery setReferenceEndsWith(String value) { this.ReferenceEndsWith = value; return this; } public String getReferenceContains() { return ReferenceContains; } public BM_WorkOrderQuery setReferenceContains(String value) { this.ReferenceContains = value; return this; } public String getReferenceLike() { return ReferenceLike; } public BM_WorkOrderQuery setReferenceLike(String value) { this.ReferenceLike = value; return this; } public ArrayList getReferenceBetween() { return ReferenceBetween; } public BM_WorkOrderQuery setReferenceBetween(ArrayList value) { this.ReferenceBetween = value; return this; } public ArrayList getReferenceIn() { return ReferenceIn; } public BM_WorkOrderQuery setReferenceIn(ArrayList value) { this.ReferenceIn = value; return this; } public String getBmMainRecID() { return BM_Main_RecID; } public BM_WorkOrderQuery setBmMainRecID(String value) { this.BM_Main_RecID = value; return this; } public String getBmMainRecIDStartsWith() { return BM_Main_RecIDStartsWith; } public BM_WorkOrderQuery setBmMainRecIDStartsWith(String value) { this.BM_Main_RecIDStartsWith = value; return this; } public String getBmMainRecIDEndsWith() { return BM_Main_RecIDEndsWith; } public BM_WorkOrderQuery setBmMainRecIDEndsWith(String value) { this.BM_Main_RecIDEndsWith = value; return this; } public String getBmMainRecIDContains() { return BM_Main_RecIDContains; } public BM_WorkOrderQuery setBmMainRecIDContains(String value) { this.BM_Main_RecIDContains = value; return this; } public String getBmMainRecIDLike() { return BM_Main_RecIDLike; } public BM_WorkOrderQuery setBmMainRecIDLike(String value) { this.BM_Main_RecIDLike = value; return this; } public ArrayList getBmMainRecIDBetween() { return BM_Main_RecIDBetween; } public BM_WorkOrderQuery setBmMainRecIDBetween(ArrayList value) { this.BM_Main_RecIDBetween = value; return this; } public ArrayList getBmMainRecIDIn() { return BM_Main_RecIDIn; } public BM_WorkOrderQuery setBmMainRecIDIn(ArrayList value) { this.BM_Main_RecIDIn = value; return this; } public String getInLogicalID() { return IN_LogicalID; } public BM_WorkOrderQuery setInLogicalID(String value) { this.IN_LogicalID = value; return this; } public String getInLogicalIDStartsWith() { return IN_LogicalIDStartsWith; } public BM_WorkOrderQuery setInLogicalIDStartsWith(String value) { this.IN_LogicalIDStartsWith = value; return this; } public String getInLogicalIDEndsWith() { return IN_LogicalIDEndsWith; } public BM_WorkOrderQuery setInLogicalIDEndsWith(String value) { this.IN_LogicalIDEndsWith = value; return this; } public String getInLogicalIDContains() { return IN_LogicalIDContains; } public BM_WorkOrderQuery setInLogicalIDContains(String value) { this.IN_LogicalIDContains = value; return this; } public String getInLogicalIDLike() { return IN_LogicalIDLike; } public BM_WorkOrderQuery setInLogicalIDLike(String value) { this.IN_LogicalIDLike = value; return this; } public ArrayList getInLogicalIDBetween() { return IN_LogicalIDBetween; } public BM_WorkOrderQuery setInLogicalIDBetween(ArrayList value) { this.IN_LogicalIDBetween = value; return this; } public ArrayList getInLogicalIDIn() { return IN_LogicalIDIn; } public BM_WorkOrderQuery setInLogicalIDIn(ArrayList value) { this.IN_LogicalIDIn = value; return this; } public Date getDateCreated() { return DateCreated; } public BM_WorkOrderQuery setDateCreated(Date value) { this.DateCreated = value; return this; } public Date getDateCreatedGreaterThanOrEqualTo() { return DateCreatedGreaterThanOrEqualTo; } public BM_WorkOrderQuery setDateCreatedGreaterThanOrEqualTo(Date value) { this.DateCreatedGreaterThanOrEqualTo = value; return this; } public Date getDateCreatedGreaterThan() { return DateCreatedGreaterThan; } public BM_WorkOrderQuery setDateCreatedGreaterThan(Date value) { this.DateCreatedGreaterThan = value; return this; } public Date getDateCreatedLessThan() { return DateCreatedLessThan; } public BM_WorkOrderQuery setDateCreatedLessThan(Date value) { this.DateCreatedLessThan = value; return this; } public Date getDateCreatedLessThanOrEqualTo() { return DateCreatedLessThanOrEqualTo; } public BM_WorkOrderQuery setDateCreatedLessThanOrEqualTo(Date value) { this.DateCreatedLessThanOrEqualTo = value; return this; } public Date getDateCreatedNotEqualTo() { return DateCreatedNotEqualTo; } public BM_WorkOrderQuery setDateCreatedNotEqualTo(Date value) { this.DateCreatedNotEqualTo = value; return this; } public ArrayList getDateCreatedBetween() { return DateCreatedBetween; } public BM_WorkOrderQuery setDateCreatedBetween(ArrayList value) { this.DateCreatedBetween = value; return this; } public ArrayList getDateCreatedIn() { return DateCreatedIn; } public BM_WorkOrderQuery setDateCreatedIn(ArrayList value) { this.DateCreatedIn = value; return this; } public Date getDateRequired() { return DateRequired; } public BM_WorkOrderQuery setDateRequired(Date value) { this.DateRequired = value; return this; } public Date getDateRequiredGreaterThanOrEqualTo() { return DateRequiredGreaterThanOrEqualTo; } public BM_WorkOrderQuery setDateRequiredGreaterThanOrEqualTo(Date value) { this.DateRequiredGreaterThanOrEqualTo = value; return this; } public Date getDateRequiredGreaterThan() { return DateRequiredGreaterThan; } public BM_WorkOrderQuery setDateRequiredGreaterThan(Date value) { this.DateRequiredGreaterThan = value; return this; } public Date getDateRequiredLessThan() { return DateRequiredLessThan; } public BM_WorkOrderQuery setDateRequiredLessThan(Date value) { this.DateRequiredLessThan = value; return this; } public Date getDateRequiredLessThanOrEqualTo() { return DateRequiredLessThanOrEqualTo; } public BM_WorkOrderQuery setDateRequiredLessThanOrEqualTo(Date value) { this.DateRequiredLessThanOrEqualTo = value; return this; } public Date getDateRequiredNotEqualTo() { return DateRequiredNotEqualTo; } public BM_WorkOrderQuery setDateRequiredNotEqualTo(Date value) { this.DateRequiredNotEqualTo = value; return this; } public ArrayList getDateRequiredBetween() { return DateRequiredBetween; } public BM_WorkOrderQuery setDateRequiredBetween(ArrayList value) { this.DateRequiredBetween = value; return this; } public ArrayList getDateRequiredIn() { return DateRequiredIn; } public BM_WorkOrderQuery setDateRequiredIn(ArrayList value) { this.DateRequiredIn = value; return this; } public Date getPlannedStartDate() { return PlannedStartDate; } public BM_WorkOrderQuery setPlannedStartDate(Date value) { this.PlannedStartDate = value; return this; } public Date getPlannedStartDateGreaterThanOrEqualTo() { return PlannedStartDateGreaterThanOrEqualTo; } public BM_WorkOrderQuery setPlannedStartDateGreaterThanOrEqualTo(Date value) { this.PlannedStartDateGreaterThanOrEqualTo = value; return this; } public Date getPlannedStartDateGreaterThan() { return PlannedStartDateGreaterThan; } public BM_WorkOrderQuery setPlannedStartDateGreaterThan(Date value) { this.PlannedStartDateGreaterThan = value; return this; } public Date getPlannedStartDateLessThan() { return PlannedStartDateLessThan; } public BM_WorkOrderQuery setPlannedStartDateLessThan(Date value) { this.PlannedStartDateLessThan = value; return this; } public Date getPlannedStartDateLessThanOrEqualTo() { return PlannedStartDateLessThanOrEqualTo; } public BM_WorkOrderQuery setPlannedStartDateLessThanOrEqualTo(Date value) { this.PlannedStartDateLessThanOrEqualTo = value; return this; } public Date getPlannedStartDateNotEqualTo() { return PlannedStartDateNotEqualTo; } public BM_WorkOrderQuery setPlannedStartDateNotEqualTo(Date value) { this.PlannedStartDateNotEqualTo = value; return this; } public ArrayList getPlannedStartDateBetween() { return PlannedStartDateBetween; } public BM_WorkOrderQuery setPlannedStartDateBetween(ArrayList value) { this.PlannedStartDateBetween = value; return this; } public ArrayList getPlannedStartDateIn() { return PlannedStartDateIn; } public BM_WorkOrderQuery setPlannedStartDateIn(ArrayList value) { this.PlannedStartDateIn = value; return this; } public Date getActualStartDate() { return ActualStartDate; } public BM_WorkOrderQuery setActualStartDate(Date value) { this.ActualStartDate = value; return this; } public Date getActualStartDateGreaterThanOrEqualTo() { return ActualStartDateGreaterThanOrEqualTo; } public BM_WorkOrderQuery setActualStartDateGreaterThanOrEqualTo(Date value) { this.ActualStartDateGreaterThanOrEqualTo = value; return this; } public Date getActualStartDateGreaterThan() { return ActualStartDateGreaterThan; } public BM_WorkOrderQuery setActualStartDateGreaterThan(Date value) { this.ActualStartDateGreaterThan = value; return this; } public Date getActualStartDateLessThan() { return ActualStartDateLessThan; } public BM_WorkOrderQuery setActualStartDateLessThan(Date value) { this.ActualStartDateLessThan = value; return this; } public Date getActualStartDateLessThanOrEqualTo() { return ActualStartDateLessThanOrEqualTo; } public BM_WorkOrderQuery setActualStartDateLessThanOrEqualTo(Date value) { this.ActualStartDateLessThanOrEqualTo = value; return this; } public Date getActualStartDateNotEqualTo() { return ActualStartDateNotEqualTo; } public BM_WorkOrderQuery setActualStartDateNotEqualTo(Date value) { this.ActualStartDateNotEqualTo = value; return this; } public ArrayList getActualStartDateBetween() { return ActualStartDateBetween; } public BM_WorkOrderQuery setActualStartDateBetween(ArrayList value) { this.ActualStartDateBetween = value; return this; } public ArrayList getActualStartDateIn() { return ActualStartDateIn; } public BM_WorkOrderQuery setActualStartDateIn(ArrayList value) { this.ActualStartDateIn = value; return this; } public Date getDateCompleted() { return DateCompleted; } public BM_WorkOrderQuery setDateCompleted(Date value) { this.DateCompleted = value; return this; } public Date getDateCompletedGreaterThanOrEqualTo() { return DateCompletedGreaterThanOrEqualTo; } public BM_WorkOrderQuery setDateCompletedGreaterThanOrEqualTo(Date value) { this.DateCompletedGreaterThanOrEqualTo = value; return this; } public Date getDateCompletedGreaterThan() { return DateCompletedGreaterThan; } public BM_WorkOrderQuery setDateCompletedGreaterThan(Date value) { this.DateCompletedGreaterThan = value; return this; } public Date getDateCompletedLessThan() { return DateCompletedLessThan; } public BM_WorkOrderQuery setDateCompletedLessThan(Date value) { this.DateCompletedLessThan = value; return this; } public Date getDateCompletedLessThanOrEqualTo() { return DateCompletedLessThanOrEqualTo; } public BM_WorkOrderQuery setDateCompletedLessThanOrEqualTo(Date value) { this.DateCompletedLessThanOrEqualTo = value; return this; } public Date getDateCompletedNotEqualTo() { return DateCompletedNotEqualTo; } public BM_WorkOrderQuery setDateCompletedNotEqualTo(Date value) { this.DateCompletedNotEqualTo = value; return this; } public ArrayList getDateCompletedBetween() { return DateCompletedBetween; } public BM_WorkOrderQuery setDateCompletedBetween(ArrayList value) { this.DateCompletedBetween = value; return this; } public ArrayList getDateCompletedIn() { return DateCompletedIn; } public BM_WorkOrderQuery setDateCompletedIn(ArrayList value) { this.DateCompletedIn = value; return this; } public BigDecimal getProductionQuantity() { return ProductionQuantity; } public BM_WorkOrderQuery setProductionQuantity(BigDecimal value) { this.ProductionQuantity = value; return this; } public BigDecimal getProductionQuantityGreaterThanOrEqualTo() { return ProductionQuantityGreaterThanOrEqualTo; } public BM_WorkOrderQuery setProductionQuantityGreaterThanOrEqualTo(BigDecimal value) { this.ProductionQuantityGreaterThanOrEqualTo = value; return this; } public BigDecimal getProductionQuantityGreaterThan() { return ProductionQuantityGreaterThan; } public BM_WorkOrderQuery setProductionQuantityGreaterThan(BigDecimal value) { this.ProductionQuantityGreaterThan = value; return this; } public BigDecimal getProductionQuantityLessThan() { return ProductionQuantityLessThan; } public BM_WorkOrderQuery setProductionQuantityLessThan(BigDecimal value) { this.ProductionQuantityLessThan = value; return this; } public BigDecimal getProductionQuantityLessThanOrEqualTo() { return ProductionQuantityLessThanOrEqualTo; } public BM_WorkOrderQuery setProductionQuantityLessThanOrEqualTo(BigDecimal value) { this.ProductionQuantityLessThanOrEqualTo = value; return this; } public BigDecimal getProductionQuantityNotEqualTo() { return ProductionQuantityNotEqualTo; } public BM_WorkOrderQuery setProductionQuantityNotEqualTo(BigDecimal value) { this.ProductionQuantityNotEqualTo = value; return this; } public ArrayList getProductionQuantityBetween() { return ProductionQuantityBetween; } public BM_WorkOrderQuery setProductionQuantityBetween(ArrayList value) { this.ProductionQuantityBetween = value; return this; } public ArrayList getProductionQuantityIn() { return ProductionQuantityIn; } public BM_WorkOrderQuery setProductionQuantityIn(ArrayList value) { this.ProductionQuantityIn = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public BM_WorkOrderQuery setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getLastSavedDateTimeGreaterThanOrEqualTo() { return LastSavedDateTimeGreaterThanOrEqualTo; } public BM_WorkOrderQuery setLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.LastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeGreaterThan() { return LastSavedDateTimeGreaterThan; } public BM_WorkOrderQuery setLastSavedDateTimeGreaterThan(Date value) { this.LastSavedDateTimeGreaterThan = value; return this; } public Date getLastSavedDateTimeLessThan() { return LastSavedDateTimeLessThan; } public BM_WorkOrderQuery setLastSavedDateTimeLessThan(Date value) { this.LastSavedDateTimeLessThan = value; return this; } public Date getLastSavedDateTimeLessThanOrEqualTo() { return LastSavedDateTimeLessThanOrEqualTo; } public BM_WorkOrderQuery setLastSavedDateTimeLessThanOrEqualTo(Date value) { this.LastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeNotEqualTo() { return LastSavedDateTimeNotEqualTo; } public BM_WorkOrderQuery setLastSavedDateTimeNotEqualTo(Date value) { this.LastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getLastSavedDateTimeBetween() { return LastSavedDateTimeBetween; } public BM_WorkOrderQuery setLastSavedDateTimeBetween(ArrayList value) { this.LastSavedDateTimeBetween = value; return this; } public ArrayList getLastSavedDateTimeIn() { return LastSavedDateTimeIn; } public BM_WorkOrderQuery setLastSavedDateTimeIn(ArrayList value) { this.LastSavedDateTimeIn = value; return this; } public ArrayList getRowHash() { return RowHash; } public BM_WorkOrderQuery setRowHash(ArrayList value) { this.RowHash = value; return this; } public String getBmWarehouseProductionLineRecID() { return BM_WarehouseProductionLine_RecID; } public BM_WorkOrderQuery setBmWarehouseProductionLineRecID(String value) { this.BM_WarehouseProductionLine_RecID = value; return this; } public String getBmWarehouseProductionLineRecIDStartsWith() { return BM_WarehouseProductionLine_RecIDStartsWith; } public BM_WorkOrderQuery setBmWarehouseProductionLineRecIDStartsWith(String value) { this.BM_WarehouseProductionLine_RecIDStartsWith = value; return this; } public String getBmWarehouseProductionLineRecIDEndsWith() { return BM_WarehouseProductionLine_RecIDEndsWith; } public BM_WorkOrderQuery setBmWarehouseProductionLineRecIDEndsWith(String value) { this.BM_WarehouseProductionLine_RecIDEndsWith = value; return this; } public String getBmWarehouseProductionLineRecIDContains() { return BM_WarehouseProductionLine_RecIDContains; } public BM_WorkOrderQuery setBmWarehouseProductionLineRecIDContains(String value) { this.BM_WarehouseProductionLine_RecIDContains = value; return this; } public String getBmWarehouseProductionLineRecIDLike() { return BM_WarehouseProductionLine_RecIDLike; } public BM_WorkOrderQuery setBmWarehouseProductionLineRecIDLike(String value) { this.BM_WarehouseProductionLine_RecIDLike = value; return this; } public ArrayList getBmWarehouseProductionLineRecIDBetween() { return BM_WarehouseProductionLine_RecIDBetween; } public BM_WorkOrderQuery setBmWarehouseProductionLineRecIDBetween(ArrayList value) { this.BM_WarehouseProductionLine_RecIDBetween = value; return this; } public ArrayList getBmWarehouseProductionLineRecIDIn() { return BM_WarehouseProductionLine_RecIDIn; } public BM_WorkOrderQuery setBmWarehouseProductionLineRecIDIn(ArrayList value) { this.BM_WarehouseProductionLine_RecIDIn = value; return this; } public Integer getStatus() { return Status; } public BM_WorkOrderQuery setStatus(Integer value) { this.Status = value; return this; } public Integer getStatusGreaterThanOrEqualTo() { return StatusGreaterThanOrEqualTo; } public BM_WorkOrderQuery setStatusGreaterThanOrEqualTo(Integer value) { this.StatusGreaterThanOrEqualTo = value; return this; } public Integer getStatusGreaterThan() { return StatusGreaterThan; } public BM_WorkOrderQuery setStatusGreaterThan(Integer value) { this.StatusGreaterThan = value; return this; } public Integer getStatusLessThan() { return StatusLessThan; } public BM_WorkOrderQuery setStatusLessThan(Integer value) { this.StatusLessThan = value; return this; } public Integer getStatusLessThanOrEqualTo() { return StatusLessThanOrEqualTo; } public BM_WorkOrderQuery setStatusLessThanOrEqualTo(Integer value) { this.StatusLessThanOrEqualTo = value; return this; } public Integer getStatusNotEqualTo() { return StatusNotEqualTo; } public BM_WorkOrderQuery setStatusNotEqualTo(Integer value) { this.StatusNotEqualTo = value; return this; } public ArrayList getStatusBetween() { return StatusBetween; } public BM_WorkOrderQuery setStatusBetween(ArrayList value) { this.StatusBetween = value; return this; } public ArrayList getStatusIn() { return StatusIn; } public BM_WorkOrderQuery setStatusIn(ArrayList value) { this.StatusIn = value; return this; } public String getParentBmWorkOrderRecID() { return Parent_BM_WorkOrder_RecID; } public BM_WorkOrderQuery setParentBmWorkOrderRecID(String value) { this.Parent_BM_WorkOrder_RecID = value; return this; } public String getParentBmWorkOrderRecIDStartsWith() { return Parent_BM_WorkOrder_RecIDStartsWith; } public BM_WorkOrderQuery setParentBmWorkOrderRecIDStartsWith(String value) { this.Parent_BM_WorkOrder_RecIDStartsWith = value; return this; } public String getParentBmWorkOrderRecIDEndsWith() { return Parent_BM_WorkOrder_RecIDEndsWith; } public BM_WorkOrderQuery setParentBmWorkOrderRecIDEndsWith(String value) { this.Parent_BM_WorkOrder_RecIDEndsWith = value; return this; } public String getParentBmWorkOrderRecIDContains() { return Parent_BM_WorkOrder_RecIDContains; } public BM_WorkOrderQuery setParentBmWorkOrderRecIDContains(String value) { this.Parent_BM_WorkOrder_RecIDContains = value; return this; } public String getParentBmWorkOrderRecIDLike() { return Parent_BM_WorkOrder_RecIDLike; } public BM_WorkOrderQuery setParentBmWorkOrderRecIDLike(String value) { this.Parent_BM_WorkOrder_RecIDLike = value; return this; } public ArrayList getParentBmWorkOrderRecIDBetween() { return Parent_BM_WorkOrder_RecIDBetween; } public BM_WorkOrderQuery setParentBmWorkOrderRecIDBetween(ArrayList value) { this.Parent_BM_WorkOrder_RecIDBetween = value; return this; } public ArrayList getParentBmWorkOrderRecIDIn() { return Parent_BM_WorkOrder_RecIDIn; } public BM_WorkOrderQuery setParentBmWorkOrderRecIDIn(ArrayList value) { this.Parent_BM_WorkOrder_RecIDIn = value; return this; } public String getParentBmWorkOrderInputsRecID() { return Parent_BM_WorkOrderInputs_RecID; } public BM_WorkOrderQuery setParentBmWorkOrderInputsRecID(String value) { this.Parent_BM_WorkOrderInputs_RecID = value; return this; } public String getParentBmWorkOrderInputsRecIDStartsWith() { return Parent_BM_WorkOrderInputs_RecIDStartsWith; } public BM_WorkOrderQuery setParentBmWorkOrderInputsRecIDStartsWith(String value) { this.Parent_BM_WorkOrderInputs_RecIDStartsWith = value; return this; } public String getParentBmWorkOrderInputsRecIDEndsWith() { return Parent_BM_WorkOrderInputs_RecIDEndsWith; } public BM_WorkOrderQuery setParentBmWorkOrderInputsRecIDEndsWith(String value) { this.Parent_BM_WorkOrderInputs_RecIDEndsWith = value; return this; } public String getParentBmWorkOrderInputsRecIDContains() { return Parent_BM_WorkOrderInputs_RecIDContains; } public BM_WorkOrderQuery setParentBmWorkOrderInputsRecIDContains(String value) { this.Parent_BM_WorkOrderInputs_RecIDContains = value; return this; } public String getParentBmWorkOrderInputsRecIDLike() { return Parent_BM_WorkOrderInputs_RecIDLike; } public BM_WorkOrderQuery setParentBmWorkOrderInputsRecIDLike(String value) { this.Parent_BM_WorkOrderInputs_RecIDLike = value; return this; } public ArrayList getParentBmWorkOrderInputsRecIDBetween() { return Parent_BM_WorkOrderInputs_RecIDBetween; } public BM_WorkOrderQuery setParentBmWorkOrderInputsRecIDBetween(ArrayList value) { this.Parent_BM_WorkOrderInputs_RecIDBetween = value; return this; } public ArrayList getParentBmWorkOrderInputsRecIDIn() { return Parent_BM_WorkOrderInputs_RecIDIn; } public BM_WorkOrderQuery setParentBmWorkOrderInputsRecIDIn(ArrayList value) { this.Parent_BM_WorkOrderInputs_RecIDIn = value; return this; } public Short getWorkOrderType() { return WorkOrderType; } public BM_WorkOrderQuery setWorkOrderType(Short value) { this.WorkOrderType = value; return this; } public Short getWorkOrderTypeGreaterThanOrEqualTo() { return WorkOrderTypeGreaterThanOrEqualTo; } public BM_WorkOrderQuery setWorkOrderTypeGreaterThanOrEqualTo(Short value) { this.WorkOrderTypeGreaterThanOrEqualTo = value; return this; } public Short getWorkOrderTypeGreaterThan() { return WorkOrderTypeGreaterThan; } public BM_WorkOrderQuery setWorkOrderTypeGreaterThan(Short value) { this.WorkOrderTypeGreaterThan = value; return this; } public Short getWorkOrderTypeLessThan() { return WorkOrderTypeLessThan; } public BM_WorkOrderQuery setWorkOrderTypeLessThan(Short value) { this.WorkOrderTypeLessThan = value; return this; } public Short getWorkOrderTypeLessThanOrEqualTo() { return WorkOrderTypeLessThanOrEqualTo; } public BM_WorkOrderQuery setWorkOrderTypeLessThanOrEqualTo(Short value) { this.WorkOrderTypeLessThanOrEqualTo = value; return this; } public Short getWorkOrderTypeNotEqualTo() { return WorkOrderTypeNotEqualTo; } public BM_WorkOrderQuery setWorkOrderTypeNotEqualTo(Short value) { this.WorkOrderTypeNotEqualTo = value; return this; } public ArrayList getWorkOrderTypeBetween() { return WorkOrderTypeBetween; } public BM_WorkOrderQuery setWorkOrderTypeBetween(ArrayList value) { this.WorkOrderTypeBetween = value; return this; } public ArrayList getWorkOrderTypeIn() { return WorkOrderTypeIn; } public BM_WorkOrderQuery setWorkOrderTypeIn(ArrayList value) { this.WorkOrderTypeIn = value; return this; } public String getReversalBmWorkOrderRecID() { return Reversal_BM_WorkOrder_RecID; } public BM_WorkOrderQuery setReversalBmWorkOrderRecID(String value) { this.Reversal_BM_WorkOrder_RecID = value; return this; } public String getReversalBmWorkOrderRecIDStartsWith() { return Reversal_BM_WorkOrder_RecIDStartsWith; } public BM_WorkOrderQuery setReversalBmWorkOrderRecIDStartsWith(String value) { this.Reversal_BM_WorkOrder_RecIDStartsWith = value; return this; } public String getReversalBmWorkOrderRecIDEndsWith() { return Reversal_BM_WorkOrder_RecIDEndsWith; } public BM_WorkOrderQuery setReversalBmWorkOrderRecIDEndsWith(String value) { this.Reversal_BM_WorkOrder_RecIDEndsWith = value; return this; } public String getReversalBmWorkOrderRecIDContains() { return Reversal_BM_WorkOrder_RecIDContains; } public BM_WorkOrderQuery setReversalBmWorkOrderRecIDContains(String value) { this.Reversal_BM_WorkOrder_RecIDContains = value; return this; } public String getReversalBmWorkOrderRecIDLike() { return Reversal_BM_WorkOrder_RecIDLike; } public BM_WorkOrderQuery setReversalBmWorkOrderRecIDLike(String value) { this.Reversal_BM_WorkOrder_RecIDLike = value; return this; } public ArrayList getReversalBmWorkOrderRecIDBetween() { return Reversal_BM_WorkOrder_RecIDBetween; } public BM_WorkOrderQuery setReversalBmWorkOrderRecIDBetween(ArrayList value) { this.Reversal_BM_WorkOrder_RecIDBetween = value; return this; } public ArrayList getReversalBmWorkOrderRecIDIn() { return Reversal_BM_WorkOrder_RecIDIn; } public BM_WorkOrderQuery setReversalBmWorkOrderRecIDIn(ArrayList value) { this.Reversal_BM_WorkOrder_RecIDIn = value; return this; } public Boolean isMigrated() { return Migrated; } public BM_WorkOrderQuery setMigrated(Boolean value) { this.Migrated = value; return this; } public String getSoLinesInvoiceLineID() { return SO_Lines_InvoiceLineID; } public BM_WorkOrderQuery setSoLinesInvoiceLineID(String value) { this.SO_Lines_InvoiceLineID = value; return this; } public String getSoLinesInvoiceLineIDStartsWith() { return SO_Lines_InvoiceLineIDStartsWith; } public BM_WorkOrderQuery setSoLinesInvoiceLineIDStartsWith(String value) { this.SO_Lines_InvoiceLineIDStartsWith = value; return this; } public String getSoLinesInvoiceLineIDEndsWith() { return SO_Lines_InvoiceLineIDEndsWith; } public BM_WorkOrderQuery setSoLinesInvoiceLineIDEndsWith(String value) { this.SO_Lines_InvoiceLineIDEndsWith = value; return this; } public String getSoLinesInvoiceLineIDContains() { return SO_Lines_InvoiceLineIDContains; } public BM_WorkOrderQuery setSoLinesInvoiceLineIDContains(String value) { this.SO_Lines_InvoiceLineIDContains = value; return this; } public String getSoLinesInvoiceLineIDLike() { return SO_Lines_InvoiceLineIDLike; } public BM_WorkOrderQuery setSoLinesInvoiceLineIDLike(String value) { this.SO_Lines_InvoiceLineIDLike = value; return this; } public ArrayList getSoLinesInvoiceLineIDBetween() { return SO_Lines_InvoiceLineIDBetween; } public BM_WorkOrderQuery setSoLinesInvoiceLineIDBetween(ArrayList value) { this.SO_Lines_InvoiceLineIDBetween = value; return this; } public ArrayList getSoLinesInvoiceLineIDIn() { return SO_Lines_InvoiceLineIDIn; } public BM_WorkOrderQuery setSoLinesInvoiceLineIDIn(ArrayList value) { this.SO_Lines_InvoiceLineIDIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class BM_WorkOrderCustomSettingQuery extends QueryDb implements IReturn> { public String SettingID = null; public String SettingIDStartsWith = null; public String SettingIDEndsWith = null; public String SettingIDContains = null; public String SettingIDLike = null; public ArrayList SettingIDBetween = null; public ArrayList SettingIDIn = null; public Date LastSavedDateTime = null; public Date LastSavedDateTimeGreaterThanOrEqualTo = null; public Date LastSavedDateTimeGreaterThan = null; public Date LastSavedDateTimeLessThan = null; public Date LastSavedDateTimeLessThanOrEqualTo = null; public Date LastSavedDateTimeNotEqualTo = null; public ArrayList LastSavedDateTimeBetween = null; public ArrayList LastSavedDateTimeIn = null; public String SettingDescription = null; public String SettingDescriptionStartsWith = null; public String SettingDescriptionEndsWith = null; public String SettingDescriptionContains = null; public String SettingDescriptionLike = null; public ArrayList SettingDescriptionBetween = null; public ArrayList SettingDescriptionIn = null; public String SettingName = null; public String SettingNameStartsWith = null; public String SettingNameEndsWith = null; public String SettingNameContains = null; public String SettingNameLike = null; public ArrayList SettingNameBetween = null; public ArrayList SettingNameIn = null; public Integer DisplayOrder = null; public Integer DisplayOrderGreaterThanOrEqualTo = null; public Integer DisplayOrderGreaterThan = null; public Integer DisplayOrderLessThan = null; public Integer DisplayOrderLessThanOrEqualTo = null; public Integer DisplayOrderNotEqualTo = null; public ArrayList DisplayOrderBetween = null; public ArrayList DisplayOrderIn = null; public Short CellType = null; public Short CellTypeGreaterThanOrEqualTo = null; public Short CellTypeGreaterThan = null; public Short CellTypeLessThan = null; public Short CellTypeLessThanOrEqualTo = null; public Short CellTypeNotEqualTo = null; public ArrayList CellTypeBetween = null; public ArrayList CellTypeIn = null; public String ScriptFormatCell = null; public String ScriptFormatCellStartsWith = null; public String ScriptFormatCellEndsWith = null; public String ScriptFormatCellContains = null; public String ScriptFormatCellLike = null; public ArrayList ScriptFormatCellBetween = null; public ArrayList ScriptFormatCellIn = null; public String ScriptButtonClicked = null; public String ScriptButtonClickedStartsWith = null; public String ScriptButtonClickedEndsWith = null; public String ScriptButtonClickedContains = null; public String ScriptButtonClickedLike = null; public ArrayList ScriptButtonClickedBetween = null; public ArrayList ScriptButtonClickedIn = null; public String ScriptReadData = null; public String ScriptReadDataStartsWith = null; public String ScriptReadDataEndsWith = null; public String ScriptReadDataContains = null; public String ScriptReadDataLike = null; public ArrayList ScriptReadDataBetween = null; public ArrayList ScriptReadDataIn = null; public String GridHandlerCode = null; public String GridHandlerCodeStartsWith = null; public String GridHandlerCodeEndsWith = null; public String GridHandlerCodeContains = null; public String GridHandlerCodeLike = null; public ArrayList GridHandlerCodeBetween = null; public ArrayList GridHandlerCodeIn = null; public UUID SY_Plugin_RecID = null; public ArrayList SY_Plugin_RecIDIn = null; public String getSettingID() { return SettingID; } public BM_WorkOrderCustomSettingQuery setSettingID(String value) { this.SettingID = value; return this; } public String getSettingIDStartsWith() { return SettingIDStartsWith; } public BM_WorkOrderCustomSettingQuery setSettingIDStartsWith(String value) { this.SettingIDStartsWith = value; return this; } public String getSettingIDEndsWith() { return SettingIDEndsWith; } public BM_WorkOrderCustomSettingQuery setSettingIDEndsWith(String value) { this.SettingIDEndsWith = value; return this; } public String getSettingIDContains() { return SettingIDContains; } public BM_WorkOrderCustomSettingQuery setSettingIDContains(String value) { this.SettingIDContains = value; return this; } public String getSettingIDLike() { return SettingIDLike; } public BM_WorkOrderCustomSettingQuery setSettingIDLike(String value) { this.SettingIDLike = value; return this; } public ArrayList getSettingIDBetween() { return SettingIDBetween; } public BM_WorkOrderCustomSettingQuery setSettingIDBetween(ArrayList value) { this.SettingIDBetween = value; return this; } public ArrayList getSettingIDIn() { return SettingIDIn; } public BM_WorkOrderCustomSettingQuery setSettingIDIn(ArrayList value) { this.SettingIDIn = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public BM_WorkOrderCustomSettingQuery setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getLastSavedDateTimeGreaterThanOrEqualTo() { return LastSavedDateTimeGreaterThanOrEqualTo; } public BM_WorkOrderCustomSettingQuery setLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.LastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeGreaterThan() { return LastSavedDateTimeGreaterThan; } public BM_WorkOrderCustomSettingQuery setLastSavedDateTimeGreaterThan(Date value) { this.LastSavedDateTimeGreaterThan = value; return this; } public Date getLastSavedDateTimeLessThan() { return LastSavedDateTimeLessThan; } public BM_WorkOrderCustomSettingQuery setLastSavedDateTimeLessThan(Date value) { this.LastSavedDateTimeLessThan = value; return this; } public Date getLastSavedDateTimeLessThanOrEqualTo() { return LastSavedDateTimeLessThanOrEqualTo; } public BM_WorkOrderCustomSettingQuery setLastSavedDateTimeLessThanOrEqualTo(Date value) { this.LastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeNotEqualTo() { return LastSavedDateTimeNotEqualTo; } public BM_WorkOrderCustomSettingQuery setLastSavedDateTimeNotEqualTo(Date value) { this.LastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getLastSavedDateTimeBetween() { return LastSavedDateTimeBetween; } public BM_WorkOrderCustomSettingQuery setLastSavedDateTimeBetween(ArrayList value) { this.LastSavedDateTimeBetween = value; return this; } public ArrayList getLastSavedDateTimeIn() { return LastSavedDateTimeIn; } public BM_WorkOrderCustomSettingQuery setLastSavedDateTimeIn(ArrayList value) { this.LastSavedDateTimeIn = value; return this; } public String getSettingDescription() { return SettingDescription; } public BM_WorkOrderCustomSettingQuery setSettingDescription(String value) { this.SettingDescription = value; return this; } public String getSettingDescriptionStartsWith() { return SettingDescriptionStartsWith; } public BM_WorkOrderCustomSettingQuery setSettingDescriptionStartsWith(String value) { this.SettingDescriptionStartsWith = value; return this; } public String getSettingDescriptionEndsWith() { return SettingDescriptionEndsWith; } public BM_WorkOrderCustomSettingQuery setSettingDescriptionEndsWith(String value) { this.SettingDescriptionEndsWith = value; return this; } public String getSettingDescriptionContains() { return SettingDescriptionContains; } public BM_WorkOrderCustomSettingQuery setSettingDescriptionContains(String value) { this.SettingDescriptionContains = value; return this; } public String getSettingDescriptionLike() { return SettingDescriptionLike; } public BM_WorkOrderCustomSettingQuery setSettingDescriptionLike(String value) { this.SettingDescriptionLike = value; return this; } public ArrayList getSettingDescriptionBetween() { return SettingDescriptionBetween; } public BM_WorkOrderCustomSettingQuery setSettingDescriptionBetween(ArrayList value) { this.SettingDescriptionBetween = value; return this; } public ArrayList getSettingDescriptionIn() { return SettingDescriptionIn; } public BM_WorkOrderCustomSettingQuery setSettingDescriptionIn(ArrayList value) { this.SettingDescriptionIn = value; return this; } public String getSettingName() { return SettingName; } public BM_WorkOrderCustomSettingQuery setSettingName(String value) { this.SettingName = value; return this; } public String getSettingNameStartsWith() { return SettingNameStartsWith; } public BM_WorkOrderCustomSettingQuery setSettingNameStartsWith(String value) { this.SettingNameStartsWith = value; return this; } public String getSettingNameEndsWith() { return SettingNameEndsWith; } public BM_WorkOrderCustomSettingQuery setSettingNameEndsWith(String value) { this.SettingNameEndsWith = value; return this; } public String getSettingNameContains() { return SettingNameContains; } public BM_WorkOrderCustomSettingQuery setSettingNameContains(String value) { this.SettingNameContains = value; return this; } public String getSettingNameLike() { return SettingNameLike; } public BM_WorkOrderCustomSettingQuery setSettingNameLike(String value) { this.SettingNameLike = value; return this; } public ArrayList getSettingNameBetween() { return SettingNameBetween; } public BM_WorkOrderCustomSettingQuery setSettingNameBetween(ArrayList value) { this.SettingNameBetween = value; return this; } public ArrayList getSettingNameIn() { return SettingNameIn; } public BM_WorkOrderCustomSettingQuery setSettingNameIn(ArrayList value) { this.SettingNameIn = value; return this; } public Integer getDisplayOrder() { return DisplayOrder; } public BM_WorkOrderCustomSettingQuery setDisplayOrder(Integer value) { this.DisplayOrder = value; return this; } public Integer getDisplayOrderGreaterThanOrEqualTo() { return DisplayOrderGreaterThanOrEqualTo; } public BM_WorkOrderCustomSettingQuery setDisplayOrderGreaterThanOrEqualTo(Integer value) { this.DisplayOrderGreaterThanOrEqualTo = value; return this; } public Integer getDisplayOrderGreaterThan() { return DisplayOrderGreaterThan; } public BM_WorkOrderCustomSettingQuery setDisplayOrderGreaterThan(Integer value) { this.DisplayOrderGreaterThan = value; return this; } public Integer getDisplayOrderLessThan() { return DisplayOrderLessThan; } public BM_WorkOrderCustomSettingQuery setDisplayOrderLessThan(Integer value) { this.DisplayOrderLessThan = value; return this; } public Integer getDisplayOrderLessThanOrEqualTo() { return DisplayOrderLessThanOrEqualTo; } public BM_WorkOrderCustomSettingQuery setDisplayOrderLessThanOrEqualTo(Integer value) { this.DisplayOrderLessThanOrEqualTo = value; return this; } public Integer getDisplayOrderNotEqualTo() { return DisplayOrderNotEqualTo; } public BM_WorkOrderCustomSettingQuery setDisplayOrderNotEqualTo(Integer value) { this.DisplayOrderNotEqualTo = value; return this; } public ArrayList getDisplayOrderBetween() { return DisplayOrderBetween; } public BM_WorkOrderCustomSettingQuery setDisplayOrderBetween(ArrayList value) { this.DisplayOrderBetween = value; return this; } public ArrayList getDisplayOrderIn() { return DisplayOrderIn; } public BM_WorkOrderCustomSettingQuery setDisplayOrderIn(ArrayList value) { this.DisplayOrderIn = value; return this; } public Short getCellType() { return CellType; } public BM_WorkOrderCustomSettingQuery setCellType(Short value) { this.CellType = value; return this; } public Short getCellTypeGreaterThanOrEqualTo() { return CellTypeGreaterThanOrEqualTo; } public BM_WorkOrderCustomSettingQuery setCellTypeGreaterThanOrEqualTo(Short value) { this.CellTypeGreaterThanOrEqualTo = value; return this; } public Short getCellTypeGreaterThan() { return CellTypeGreaterThan; } public BM_WorkOrderCustomSettingQuery setCellTypeGreaterThan(Short value) { this.CellTypeGreaterThan = value; return this; } public Short getCellTypeLessThan() { return CellTypeLessThan; } public BM_WorkOrderCustomSettingQuery setCellTypeLessThan(Short value) { this.CellTypeLessThan = value; return this; } public Short getCellTypeLessThanOrEqualTo() { return CellTypeLessThanOrEqualTo; } public BM_WorkOrderCustomSettingQuery setCellTypeLessThanOrEqualTo(Short value) { this.CellTypeLessThanOrEqualTo = value; return this; } public Short getCellTypeNotEqualTo() { return CellTypeNotEqualTo; } public BM_WorkOrderCustomSettingQuery setCellTypeNotEqualTo(Short value) { this.CellTypeNotEqualTo = value; return this; } public ArrayList getCellTypeBetween() { return CellTypeBetween; } public BM_WorkOrderCustomSettingQuery setCellTypeBetween(ArrayList value) { this.CellTypeBetween = value; return this; } public ArrayList getCellTypeIn() { return CellTypeIn; } public BM_WorkOrderCustomSettingQuery setCellTypeIn(ArrayList value) { this.CellTypeIn = value; return this; } public String getScriptFormatCell() { return ScriptFormatCell; } public BM_WorkOrderCustomSettingQuery setScriptFormatCell(String value) { this.ScriptFormatCell = value; return this; } public String getScriptFormatCellStartsWith() { return ScriptFormatCellStartsWith; } public BM_WorkOrderCustomSettingQuery setScriptFormatCellStartsWith(String value) { this.ScriptFormatCellStartsWith = value; return this; } public String getScriptFormatCellEndsWith() { return ScriptFormatCellEndsWith; } public BM_WorkOrderCustomSettingQuery setScriptFormatCellEndsWith(String value) { this.ScriptFormatCellEndsWith = value; return this; } public String getScriptFormatCellContains() { return ScriptFormatCellContains; } public BM_WorkOrderCustomSettingQuery setScriptFormatCellContains(String value) { this.ScriptFormatCellContains = value; return this; } public String getScriptFormatCellLike() { return ScriptFormatCellLike; } public BM_WorkOrderCustomSettingQuery setScriptFormatCellLike(String value) { this.ScriptFormatCellLike = value; return this; } public ArrayList getScriptFormatCellBetween() { return ScriptFormatCellBetween; } public BM_WorkOrderCustomSettingQuery setScriptFormatCellBetween(ArrayList value) { this.ScriptFormatCellBetween = value; return this; } public ArrayList getScriptFormatCellIn() { return ScriptFormatCellIn; } public BM_WorkOrderCustomSettingQuery setScriptFormatCellIn(ArrayList value) { this.ScriptFormatCellIn = value; return this; } public String getScriptButtonClicked() { return ScriptButtonClicked; } public BM_WorkOrderCustomSettingQuery setScriptButtonClicked(String value) { this.ScriptButtonClicked = value; return this; } public String getScriptButtonClickedStartsWith() { return ScriptButtonClickedStartsWith; } public BM_WorkOrderCustomSettingQuery setScriptButtonClickedStartsWith(String value) { this.ScriptButtonClickedStartsWith = value; return this; } public String getScriptButtonClickedEndsWith() { return ScriptButtonClickedEndsWith; } public BM_WorkOrderCustomSettingQuery setScriptButtonClickedEndsWith(String value) { this.ScriptButtonClickedEndsWith = value; return this; } public String getScriptButtonClickedContains() { return ScriptButtonClickedContains; } public BM_WorkOrderCustomSettingQuery setScriptButtonClickedContains(String value) { this.ScriptButtonClickedContains = value; return this; } public String getScriptButtonClickedLike() { return ScriptButtonClickedLike; } public BM_WorkOrderCustomSettingQuery setScriptButtonClickedLike(String value) { this.ScriptButtonClickedLike = value; return this; } public ArrayList getScriptButtonClickedBetween() { return ScriptButtonClickedBetween; } public BM_WorkOrderCustomSettingQuery setScriptButtonClickedBetween(ArrayList value) { this.ScriptButtonClickedBetween = value; return this; } public ArrayList getScriptButtonClickedIn() { return ScriptButtonClickedIn; } public BM_WorkOrderCustomSettingQuery setScriptButtonClickedIn(ArrayList value) { this.ScriptButtonClickedIn = value; return this; } public String getScriptReadData() { return ScriptReadData; } public BM_WorkOrderCustomSettingQuery setScriptReadData(String value) { this.ScriptReadData = value; return this; } public String getScriptReadDataStartsWith() { return ScriptReadDataStartsWith; } public BM_WorkOrderCustomSettingQuery setScriptReadDataStartsWith(String value) { this.ScriptReadDataStartsWith = value; return this; } public String getScriptReadDataEndsWith() { return ScriptReadDataEndsWith; } public BM_WorkOrderCustomSettingQuery setScriptReadDataEndsWith(String value) { this.ScriptReadDataEndsWith = value; return this; } public String getScriptReadDataContains() { return ScriptReadDataContains; } public BM_WorkOrderCustomSettingQuery setScriptReadDataContains(String value) { this.ScriptReadDataContains = value; return this; } public String getScriptReadDataLike() { return ScriptReadDataLike; } public BM_WorkOrderCustomSettingQuery setScriptReadDataLike(String value) { this.ScriptReadDataLike = value; return this; } public ArrayList getScriptReadDataBetween() { return ScriptReadDataBetween; } public BM_WorkOrderCustomSettingQuery setScriptReadDataBetween(ArrayList value) { this.ScriptReadDataBetween = value; return this; } public ArrayList getScriptReadDataIn() { return ScriptReadDataIn; } public BM_WorkOrderCustomSettingQuery setScriptReadDataIn(ArrayList value) { this.ScriptReadDataIn = value; return this; } public String getGridHandlerCode() { return GridHandlerCode; } public BM_WorkOrderCustomSettingQuery setGridHandlerCode(String value) { this.GridHandlerCode = value; return this; } public String getGridHandlerCodeStartsWith() { return GridHandlerCodeStartsWith; } public BM_WorkOrderCustomSettingQuery setGridHandlerCodeStartsWith(String value) { this.GridHandlerCodeStartsWith = value; return this; } public String getGridHandlerCodeEndsWith() { return GridHandlerCodeEndsWith; } public BM_WorkOrderCustomSettingQuery setGridHandlerCodeEndsWith(String value) { this.GridHandlerCodeEndsWith = value; return this; } public String getGridHandlerCodeContains() { return GridHandlerCodeContains; } public BM_WorkOrderCustomSettingQuery setGridHandlerCodeContains(String value) { this.GridHandlerCodeContains = value; return this; } public String getGridHandlerCodeLike() { return GridHandlerCodeLike; } public BM_WorkOrderCustomSettingQuery setGridHandlerCodeLike(String value) { this.GridHandlerCodeLike = value; return this; } public ArrayList getGridHandlerCodeBetween() { return GridHandlerCodeBetween; } public BM_WorkOrderCustomSettingQuery setGridHandlerCodeBetween(ArrayList value) { this.GridHandlerCodeBetween = value; return this; } public ArrayList getGridHandlerCodeIn() { return GridHandlerCodeIn; } public BM_WorkOrderCustomSettingQuery setGridHandlerCodeIn(ArrayList value) { this.GridHandlerCodeIn = value; return this; } public UUID getSyPluginRecID() { return SY_Plugin_RecID; } public BM_WorkOrderCustomSettingQuery setSyPluginRecID(UUID value) { this.SY_Plugin_RecID = value; return this; } public ArrayList getSyPluginRecIDIn() { return SY_Plugin_RecIDIn; } public BM_WorkOrderCustomSettingQuery setSyPluginRecIDIn(ArrayList value) { this.SY_Plugin_RecIDIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class BM_WorkOrderCustomSettingValuesQuery extends QueryDb implements IReturn> { public String SettingValueID = null; public String SettingValueIDStartsWith = null; public String SettingValueIDEndsWith = null; public String SettingValueIDContains = null; public String SettingValueIDLike = null; public ArrayList SettingValueIDBetween = null; public ArrayList SettingValueIDIn = null; public String SettingID = null; public String SettingIDStartsWith = null; public String SettingIDEndsWith = null; public String SettingIDContains = null; public String SettingIDLike = null; public ArrayList SettingIDBetween = null; public ArrayList SettingIDIn = null; public String BM_WorkOrder_RecID = null; public String BM_WorkOrder_RecIDStartsWith = null; public String BM_WorkOrder_RecIDEndsWith = null; public String BM_WorkOrder_RecIDContains = null; public String BM_WorkOrder_RecIDLike = null; public ArrayList BM_WorkOrder_RecIDBetween = null; public ArrayList BM_WorkOrder_RecIDIn = null; public String Contents = null; public String ContentsStartsWith = null; public String ContentsEndsWith = null; public String ContentsContains = null; public String ContentsLike = null; public ArrayList ContentsBetween = null; public ArrayList ContentsIn = null; public Date LastSavedDateTime = null; public Date LastSavedDateTimeGreaterThanOrEqualTo = null; public Date LastSavedDateTimeGreaterThan = null; public Date LastSavedDateTimeLessThan = null; public Date LastSavedDateTimeLessThanOrEqualTo = null; public Date LastSavedDateTimeNotEqualTo = null; public ArrayList LastSavedDateTimeBetween = null; public ArrayList LastSavedDateTimeIn = null; public String getSettingValueID() { return SettingValueID; } public BM_WorkOrderCustomSettingValuesQuery setSettingValueID(String value) { this.SettingValueID = value; return this; } public String getSettingValueIDStartsWith() { return SettingValueIDStartsWith; } public BM_WorkOrderCustomSettingValuesQuery setSettingValueIDStartsWith(String value) { this.SettingValueIDStartsWith = value; return this; } public String getSettingValueIDEndsWith() { return SettingValueIDEndsWith; } public BM_WorkOrderCustomSettingValuesQuery setSettingValueIDEndsWith(String value) { this.SettingValueIDEndsWith = value; return this; } public String getSettingValueIDContains() { return SettingValueIDContains; } public BM_WorkOrderCustomSettingValuesQuery setSettingValueIDContains(String value) { this.SettingValueIDContains = value; return this; } public String getSettingValueIDLike() { return SettingValueIDLike; } public BM_WorkOrderCustomSettingValuesQuery setSettingValueIDLike(String value) { this.SettingValueIDLike = value; return this; } public ArrayList getSettingValueIDBetween() { return SettingValueIDBetween; } public BM_WorkOrderCustomSettingValuesQuery setSettingValueIDBetween(ArrayList value) { this.SettingValueIDBetween = value; return this; } public ArrayList getSettingValueIDIn() { return SettingValueIDIn; } public BM_WorkOrderCustomSettingValuesQuery setSettingValueIDIn(ArrayList value) { this.SettingValueIDIn = value; return this; } public String getSettingID() { return SettingID; } public BM_WorkOrderCustomSettingValuesQuery setSettingID(String value) { this.SettingID = value; return this; } public String getSettingIDStartsWith() { return SettingIDStartsWith; } public BM_WorkOrderCustomSettingValuesQuery setSettingIDStartsWith(String value) { this.SettingIDStartsWith = value; return this; } public String getSettingIDEndsWith() { return SettingIDEndsWith; } public BM_WorkOrderCustomSettingValuesQuery setSettingIDEndsWith(String value) { this.SettingIDEndsWith = value; return this; } public String getSettingIDContains() { return SettingIDContains; } public BM_WorkOrderCustomSettingValuesQuery setSettingIDContains(String value) { this.SettingIDContains = value; return this; } public String getSettingIDLike() { return SettingIDLike; } public BM_WorkOrderCustomSettingValuesQuery setSettingIDLike(String value) { this.SettingIDLike = value; return this; } public ArrayList getSettingIDBetween() { return SettingIDBetween; } public BM_WorkOrderCustomSettingValuesQuery setSettingIDBetween(ArrayList value) { this.SettingIDBetween = value; return this; } public ArrayList getSettingIDIn() { return SettingIDIn; } public BM_WorkOrderCustomSettingValuesQuery setSettingIDIn(ArrayList value) { this.SettingIDIn = value; return this; } public String getBmWorkOrderRecID() { return BM_WorkOrder_RecID; } public BM_WorkOrderCustomSettingValuesQuery setBmWorkOrderRecID(String value) { this.BM_WorkOrder_RecID = value; return this; } public String getBmWorkOrderRecIDStartsWith() { return BM_WorkOrder_RecIDStartsWith; } public BM_WorkOrderCustomSettingValuesQuery setBmWorkOrderRecIDStartsWith(String value) { this.BM_WorkOrder_RecIDStartsWith = value; return this; } public String getBmWorkOrderRecIDEndsWith() { return BM_WorkOrder_RecIDEndsWith; } public BM_WorkOrderCustomSettingValuesQuery setBmWorkOrderRecIDEndsWith(String value) { this.BM_WorkOrder_RecIDEndsWith = value; return this; } public String getBmWorkOrderRecIDContains() { return BM_WorkOrder_RecIDContains; } public BM_WorkOrderCustomSettingValuesQuery setBmWorkOrderRecIDContains(String value) { this.BM_WorkOrder_RecIDContains = value; return this; } public String getBmWorkOrderRecIDLike() { return BM_WorkOrder_RecIDLike; } public BM_WorkOrderCustomSettingValuesQuery setBmWorkOrderRecIDLike(String value) { this.BM_WorkOrder_RecIDLike = value; return this; } public ArrayList getBmWorkOrderRecIDBetween() { return BM_WorkOrder_RecIDBetween; } public BM_WorkOrderCustomSettingValuesQuery setBmWorkOrderRecIDBetween(ArrayList value) { this.BM_WorkOrder_RecIDBetween = value; return this; } public ArrayList getBmWorkOrderRecIDIn() { return BM_WorkOrder_RecIDIn; } public BM_WorkOrderCustomSettingValuesQuery setBmWorkOrderRecIDIn(ArrayList value) { this.BM_WorkOrder_RecIDIn = value; return this; } public String getContents() { return Contents; } public BM_WorkOrderCustomSettingValuesQuery setContents(String value) { this.Contents = value; return this; } public String getContentsStartsWith() { return ContentsStartsWith; } public BM_WorkOrderCustomSettingValuesQuery setContentsStartsWith(String value) { this.ContentsStartsWith = value; return this; } public String getContentsEndsWith() { return ContentsEndsWith; } public BM_WorkOrderCustomSettingValuesQuery setContentsEndsWith(String value) { this.ContentsEndsWith = value; return this; } public String getContentsContains() { return ContentsContains; } public BM_WorkOrderCustomSettingValuesQuery setContentsContains(String value) { this.ContentsContains = value; return this; } public String getContentsLike() { return ContentsLike; } public BM_WorkOrderCustomSettingValuesQuery setContentsLike(String value) { this.ContentsLike = value; return this; } public ArrayList getContentsBetween() { return ContentsBetween; } public BM_WorkOrderCustomSettingValuesQuery setContentsBetween(ArrayList value) { this.ContentsBetween = value; return this; } public ArrayList getContentsIn() { return ContentsIn; } public BM_WorkOrderCustomSettingValuesQuery setContentsIn(ArrayList value) { this.ContentsIn = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public BM_WorkOrderCustomSettingValuesQuery setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getLastSavedDateTimeGreaterThanOrEqualTo() { return LastSavedDateTimeGreaterThanOrEqualTo; } public BM_WorkOrderCustomSettingValuesQuery setLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.LastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeGreaterThan() { return LastSavedDateTimeGreaterThan; } public BM_WorkOrderCustomSettingValuesQuery setLastSavedDateTimeGreaterThan(Date value) { this.LastSavedDateTimeGreaterThan = value; return this; } public Date getLastSavedDateTimeLessThan() { return LastSavedDateTimeLessThan; } public BM_WorkOrderCustomSettingValuesQuery setLastSavedDateTimeLessThan(Date value) { this.LastSavedDateTimeLessThan = value; return this; } public Date getLastSavedDateTimeLessThanOrEqualTo() { return LastSavedDateTimeLessThanOrEqualTo; } public BM_WorkOrderCustomSettingValuesQuery setLastSavedDateTimeLessThanOrEqualTo(Date value) { this.LastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeNotEqualTo() { return LastSavedDateTimeNotEqualTo; } public BM_WorkOrderCustomSettingValuesQuery setLastSavedDateTimeNotEqualTo(Date value) { this.LastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getLastSavedDateTimeBetween() { return LastSavedDateTimeBetween; } public BM_WorkOrderCustomSettingValuesQuery setLastSavedDateTimeBetween(ArrayList value) { this.LastSavedDateTimeBetween = value; return this; } public ArrayList getLastSavedDateTimeIn() { return LastSavedDateTimeIn; } public BM_WorkOrderCustomSettingValuesQuery setLastSavedDateTimeIn(ArrayList value) { this.LastSavedDateTimeIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class BM_WorkOrderDocumentsQuery extends QueryDb implements IReturn> { public String RecID = null; public String RecIDStartsWith = null; public String RecIDEndsWith = null; public String RecIDContains = null; public String RecIDLike = null; public ArrayList RecIDBetween = null; public ArrayList RecIDIn = null; public String BM_WorkOrder_RecID = null; public String BM_WorkOrder_RecIDStartsWith = null; public String BM_WorkOrder_RecIDEndsWith = null; public String BM_WorkOrder_RecIDContains = null; public String BM_WorkOrder_RecIDLike = null; public ArrayList BM_WorkOrder_RecIDBetween = null; public ArrayList BM_WorkOrder_RecIDIn = null; public String DocumentTypeID = null; public String DocumentTypeIDStartsWith = null; public String DocumentTypeIDEndsWith = null; public String DocumentTypeIDContains = null; public String DocumentTypeIDLike = null; public ArrayList DocumentTypeIDBetween = null; public ArrayList DocumentTypeIDIn = null; public Date LastSavedDateTime = null; public Date LastSavedDateTimeGreaterThanOrEqualTo = null; public Date LastSavedDateTimeGreaterThan = null; public Date LastSavedDateTimeLessThan = null; public Date LastSavedDateTimeLessThanOrEqualTo = null; public Date LastSavedDateTimeNotEqualTo = null; public ArrayList LastSavedDateTimeBetween = null; public ArrayList LastSavedDateTimeIn = null; public String LastSavedByStaffID = null; public String LastSavedByStaffIDStartsWith = null; public String LastSavedByStaffIDEndsWith = null; public String LastSavedByStaffIDContains = null; public String LastSavedByStaffIDLike = null; public ArrayList LastSavedByStaffIDBetween = null; public ArrayList LastSavedByStaffIDIn = null; public ArrayList FileBinary = null; public String Description = null; public String DescriptionStartsWith = null; public String DescriptionEndsWith = null; public String DescriptionContains = null; public String DescriptionLike = null; public ArrayList DescriptionBetween = null; public ArrayList DescriptionIn = null; public String PhysicalFileName = null; public String PhysicalFileNameStartsWith = null; public String PhysicalFileNameEndsWith = null; public String PhysicalFileNameContains = null; public String PhysicalFileNameLike = null; public ArrayList PhysicalFileNameBetween = null; public ArrayList PhysicalFileNameIn = null; public Integer ItemNo = null; public Integer ItemNoGreaterThanOrEqualTo = null; public Integer ItemNoGreaterThan = null; public Integer ItemNoLessThan = null; public Integer ItemNoLessThanOrEqualTo = null; public Integer ItemNoNotEqualTo = null; public ArrayList ItemNoBetween = null; public ArrayList ItemNoIn = null; public String getRecID() { return RecID; } public BM_WorkOrderDocumentsQuery setRecID(String value) { this.RecID = value; return this; } public String getRecIDStartsWith() { return RecIDStartsWith; } public BM_WorkOrderDocumentsQuery setRecIDStartsWith(String value) { this.RecIDStartsWith = value; return this; } public String getRecIDEndsWith() { return RecIDEndsWith; } public BM_WorkOrderDocumentsQuery setRecIDEndsWith(String value) { this.RecIDEndsWith = value; return this; } public String getRecIDContains() { return RecIDContains; } public BM_WorkOrderDocumentsQuery setRecIDContains(String value) { this.RecIDContains = value; return this; } public String getRecIDLike() { return RecIDLike; } public BM_WorkOrderDocumentsQuery setRecIDLike(String value) { this.RecIDLike = value; return this; } public ArrayList getRecIDBetween() { return RecIDBetween; } public BM_WorkOrderDocumentsQuery setRecIDBetween(ArrayList value) { this.RecIDBetween = value; return this; } public ArrayList getRecIDIn() { return RecIDIn; } public BM_WorkOrderDocumentsQuery setRecIDIn(ArrayList value) { this.RecIDIn = value; return this; } public String getBmWorkOrderRecID() { return BM_WorkOrder_RecID; } public BM_WorkOrderDocumentsQuery setBmWorkOrderRecID(String value) { this.BM_WorkOrder_RecID = value; return this; } public String getBmWorkOrderRecIDStartsWith() { return BM_WorkOrder_RecIDStartsWith; } public BM_WorkOrderDocumentsQuery setBmWorkOrderRecIDStartsWith(String value) { this.BM_WorkOrder_RecIDStartsWith = value; return this; } public String getBmWorkOrderRecIDEndsWith() { return BM_WorkOrder_RecIDEndsWith; } public BM_WorkOrderDocumentsQuery setBmWorkOrderRecIDEndsWith(String value) { this.BM_WorkOrder_RecIDEndsWith = value; return this; } public String getBmWorkOrderRecIDContains() { return BM_WorkOrder_RecIDContains; } public BM_WorkOrderDocumentsQuery setBmWorkOrderRecIDContains(String value) { this.BM_WorkOrder_RecIDContains = value; return this; } public String getBmWorkOrderRecIDLike() { return BM_WorkOrder_RecIDLike; } public BM_WorkOrderDocumentsQuery setBmWorkOrderRecIDLike(String value) { this.BM_WorkOrder_RecIDLike = value; return this; } public ArrayList getBmWorkOrderRecIDBetween() { return BM_WorkOrder_RecIDBetween; } public BM_WorkOrderDocumentsQuery setBmWorkOrderRecIDBetween(ArrayList value) { this.BM_WorkOrder_RecIDBetween = value; return this; } public ArrayList getBmWorkOrderRecIDIn() { return BM_WorkOrder_RecIDIn; } public BM_WorkOrderDocumentsQuery setBmWorkOrderRecIDIn(ArrayList value) { this.BM_WorkOrder_RecIDIn = value; return this; } public String getDocumentTypeID() { return DocumentTypeID; } public BM_WorkOrderDocumentsQuery setDocumentTypeID(String value) { this.DocumentTypeID = value; return this; } public String getDocumentTypeIDStartsWith() { return DocumentTypeIDStartsWith; } public BM_WorkOrderDocumentsQuery setDocumentTypeIDStartsWith(String value) { this.DocumentTypeIDStartsWith = value; return this; } public String getDocumentTypeIDEndsWith() { return DocumentTypeIDEndsWith; } public BM_WorkOrderDocumentsQuery setDocumentTypeIDEndsWith(String value) { this.DocumentTypeIDEndsWith = value; return this; } public String getDocumentTypeIDContains() { return DocumentTypeIDContains; } public BM_WorkOrderDocumentsQuery setDocumentTypeIDContains(String value) { this.DocumentTypeIDContains = value; return this; } public String getDocumentTypeIDLike() { return DocumentTypeIDLike; } public BM_WorkOrderDocumentsQuery setDocumentTypeIDLike(String value) { this.DocumentTypeIDLike = value; return this; } public ArrayList getDocumentTypeIDBetween() { return DocumentTypeIDBetween; } public BM_WorkOrderDocumentsQuery setDocumentTypeIDBetween(ArrayList value) { this.DocumentTypeIDBetween = value; return this; } public ArrayList getDocumentTypeIDIn() { return DocumentTypeIDIn; } public BM_WorkOrderDocumentsQuery setDocumentTypeIDIn(ArrayList value) { this.DocumentTypeIDIn = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public BM_WorkOrderDocumentsQuery setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getLastSavedDateTimeGreaterThanOrEqualTo() { return LastSavedDateTimeGreaterThanOrEqualTo; } public BM_WorkOrderDocumentsQuery setLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.LastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeGreaterThan() { return LastSavedDateTimeGreaterThan; } public BM_WorkOrderDocumentsQuery setLastSavedDateTimeGreaterThan(Date value) { this.LastSavedDateTimeGreaterThan = value; return this; } public Date getLastSavedDateTimeLessThan() { return LastSavedDateTimeLessThan; } public BM_WorkOrderDocumentsQuery setLastSavedDateTimeLessThan(Date value) { this.LastSavedDateTimeLessThan = value; return this; } public Date getLastSavedDateTimeLessThanOrEqualTo() { return LastSavedDateTimeLessThanOrEqualTo; } public BM_WorkOrderDocumentsQuery setLastSavedDateTimeLessThanOrEqualTo(Date value) { this.LastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeNotEqualTo() { return LastSavedDateTimeNotEqualTo; } public BM_WorkOrderDocumentsQuery setLastSavedDateTimeNotEqualTo(Date value) { this.LastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getLastSavedDateTimeBetween() { return LastSavedDateTimeBetween; } public BM_WorkOrderDocumentsQuery setLastSavedDateTimeBetween(ArrayList value) { this.LastSavedDateTimeBetween = value; return this; } public ArrayList getLastSavedDateTimeIn() { return LastSavedDateTimeIn; } public BM_WorkOrderDocumentsQuery setLastSavedDateTimeIn(ArrayList value) { this.LastSavedDateTimeIn = value; return this; } public String getLastSavedByStaffID() { return LastSavedByStaffID; } public BM_WorkOrderDocumentsQuery setLastSavedByStaffID(String value) { this.LastSavedByStaffID = value; return this; } public String getLastSavedByStaffIDStartsWith() { return LastSavedByStaffIDStartsWith; } public BM_WorkOrderDocumentsQuery setLastSavedByStaffIDStartsWith(String value) { this.LastSavedByStaffIDStartsWith = value; return this; } public String getLastSavedByStaffIDEndsWith() { return LastSavedByStaffIDEndsWith; } public BM_WorkOrderDocumentsQuery setLastSavedByStaffIDEndsWith(String value) { this.LastSavedByStaffIDEndsWith = value; return this; } public String getLastSavedByStaffIDContains() { return LastSavedByStaffIDContains; } public BM_WorkOrderDocumentsQuery setLastSavedByStaffIDContains(String value) { this.LastSavedByStaffIDContains = value; return this; } public String getLastSavedByStaffIDLike() { return LastSavedByStaffIDLike; } public BM_WorkOrderDocumentsQuery setLastSavedByStaffIDLike(String value) { this.LastSavedByStaffIDLike = value; return this; } public ArrayList getLastSavedByStaffIDBetween() { return LastSavedByStaffIDBetween; } public BM_WorkOrderDocumentsQuery setLastSavedByStaffIDBetween(ArrayList value) { this.LastSavedByStaffIDBetween = value; return this; } public ArrayList getLastSavedByStaffIDIn() { return LastSavedByStaffIDIn; } public BM_WorkOrderDocumentsQuery setLastSavedByStaffIDIn(ArrayList value) { this.LastSavedByStaffIDIn = value; return this; } public ArrayList getFileBinary() { return FileBinary; } public BM_WorkOrderDocumentsQuery setFileBinary(ArrayList value) { this.FileBinary = value; return this; } public String getDescription() { return Description; } public BM_WorkOrderDocumentsQuery setDescription(String value) { this.Description = value; return this; } public String getDescriptionStartsWith() { return DescriptionStartsWith; } public BM_WorkOrderDocumentsQuery setDescriptionStartsWith(String value) { this.DescriptionStartsWith = value; return this; } public String getDescriptionEndsWith() { return DescriptionEndsWith; } public BM_WorkOrderDocumentsQuery setDescriptionEndsWith(String value) { this.DescriptionEndsWith = value; return this; } public String getDescriptionContains() { return DescriptionContains; } public BM_WorkOrderDocumentsQuery setDescriptionContains(String value) { this.DescriptionContains = value; return this; } public String getDescriptionLike() { return DescriptionLike; } public BM_WorkOrderDocumentsQuery setDescriptionLike(String value) { this.DescriptionLike = value; return this; } public ArrayList getDescriptionBetween() { return DescriptionBetween; } public BM_WorkOrderDocumentsQuery setDescriptionBetween(ArrayList value) { this.DescriptionBetween = value; return this; } public ArrayList getDescriptionIn() { return DescriptionIn; } public BM_WorkOrderDocumentsQuery setDescriptionIn(ArrayList value) { this.DescriptionIn = value; return this; } public String getPhysicalFileName() { return PhysicalFileName; } public BM_WorkOrderDocumentsQuery setPhysicalFileName(String value) { this.PhysicalFileName = value; return this; } public String getPhysicalFileNameStartsWith() { return PhysicalFileNameStartsWith; } public BM_WorkOrderDocumentsQuery setPhysicalFileNameStartsWith(String value) { this.PhysicalFileNameStartsWith = value; return this; } public String getPhysicalFileNameEndsWith() { return PhysicalFileNameEndsWith; } public BM_WorkOrderDocumentsQuery setPhysicalFileNameEndsWith(String value) { this.PhysicalFileNameEndsWith = value; return this; } public String getPhysicalFileNameContains() { return PhysicalFileNameContains; } public BM_WorkOrderDocumentsQuery setPhysicalFileNameContains(String value) { this.PhysicalFileNameContains = value; return this; } public String getPhysicalFileNameLike() { return PhysicalFileNameLike; } public BM_WorkOrderDocumentsQuery setPhysicalFileNameLike(String value) { this.PhysicalFileNameLike = value; return this; } public ArrayList getPhysicalFileNameBetween() { return PhysicalFileNameBetween; } public BM_WorkOrderDocumentsQuery setPhysicalFileNameBetween(ArrayList value) { this.PhysicalFileNameBetween = value; return this; } public ArrayList getPhysicalFileNameIn() { return PhysicalFileNameIn; } public BM_WorkOrderDocumentsQuery setPhysicalFileNameIn(ArrayList value) { this.PhysicalFileNameIn = value; return this; } public Integer getItemNo() { return ItemNo; } public BM_WorkOrderDocumentsQuery setItemNo(Integer value) { this.ItemNo = value; return this; } public Integer getItemNoGreaterThanOrEqualTo() { return ItemNoGreaterThanOrEqualTo; } public BM_WorkOrderDocumentsQuery setItemNoGreaterThanOrEqualTo(Integer value) { this.ItemNoGreaterThanOrEqualTo = value; return this; } public Integer getItemNoGreaterThan() { return ItemNoGreaterThan; } public BM_WorkOrderDocumentsQuery setItemNoGreaterThan(Integer value) { this.ItemNoGreaterThan = value; return this; } public Integer getItemNoLessThan() { return ItemNoLessThan; } public BM_WorkOrderDocumentsQuery setItemNoLessThan(Integer value) { this.ItemNoLessThan = value; return this; } public Integer getItemNoLessThanOrEqualTo() { return ItemNoLessThanOrEqualTo; } public BM_WorkOrderDocumentsQuery setItemNoLessThanOrEqualTo(Integer value) { this.ItemNoLessThanOrEqualTo = value; return this; } public Integer getItemNoNotEqualTo() { return ItemNoNotEqualTo; } public BM_WorkOrderDocumentsQuery setItemNoNotEqualTo(Integer value) { this.ItemNoNotEqualTo = value; return this; } public ArrayList getItemNoBetween() { return ItemNoBetween; } public BM_WorkOrderDocumentsQuery setItemNoBetween(ArrayList value) { this.ItemNoBetween = value; return this; } public ArrayList getItemNoIn() { return ItemNoIn; } public BM_WorkOrderDocumentsQuery setItemNoIn(ArrayList value) { this.ItemNoIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class BM_WorkOrderInputCustomFieldsQuery extends QueryDb implements IReturn> { public String RecID = null; public String RecIDStartsWith = null; public String RecIDEndsWith = null; public String RecIDContains = null; public String RecIDLike = null; public ArrayList RecIDBetween = null; public ArrayList RecIDIn = null; public String SettingName = null; public String SettingNameStartsWith = null; public String SettingNameEndsWith = null; public String SettingNameContains = null; public String SettingNameLike = null; public ArrayList SettingNameBetween = null; public ArrayList SettingNameIn = null; public String SettingDescription = null; public String SettingDescriptionStartsWith = null; public String SettingDescriptionEndsWith = null; public String SettingDescriptionContains = null; public String SettingDescriptionLike = null; public ArrayList SettingDescriptionBetween = null; public ArrayList SettingDescriptionIn = null; public Integer CellType = null; public Integer CellTypeGreaterThanOrEqualTo = null; public Integer CellTypeGreaterThan = null; public Integer CellTypeLessThan = null; public Integer CellTypeLessThanOrEqualTo = null; public Integer CellTypeNotEqualTo = null; public ArrayList CellTypeBetween = null; public ArrayList CellTypeIn = null; public String FieldParameter = null; public String FieldParameterStartsWith = null; public String FieldParameterEndsWith = null; public String FieldParameterContains = null; public String FieldParameterLike = null; public ArrayList FieldParameterBetween = null; public ArrayList FieldParameterIn = null; public UUID SY_Plugin_RecID = null; public ArrayList SY_Plugin_RecIDIn = null; public Date LastSavedDateTime = null; public Date LastSavedDateTimeGreaterThanOrEqualTo = null; public Date LastSavedDateTimeGreaterThan = null; public Date LastSavedDateTimeLessThan = null; public Date LastSavedDateTimeLessThanOrEqualTo = null; public Date LastSavedDateTimeNotEqualTo = null; public ArrayList LastSavedDateTimeBetween = null; public ArrayList LastSavedDateTimeIn = null; public Integer DisplayOrder = null; public Integer DisplayOrderGreaterThanOrEqualTo = null; public Integer DisplayOrderGreaterThan = null; public Integer DisplayOrderLessThan = null; public Integer DisplayOrderLessThanOrEqualTo = null; public Integer DisplayOrderNotEqualTo = null; public ArrayList DisplayOrderBetween = null; public ArrayList DisplayOrderIn = null; public String getRecID() { return RecID; } public BM_WorkOrderInputCustomFieldsQuery setRecID(String value) { this.RecID = value; return this; } public String getRecIDStartsWith() { return RecIDStartsWith; } public BM_WorkOrderInputCustomFieldsQuery setRecIDStartsWith(String value) { this.RecIDStartsWith = value; return this; } public String getRecIDEndsWith() { return RecIDEndsWith; } public BM_WorkOrderInputCustomFieldsQuery setRecIDEndsWith(String value) { this.RecIDEndsWith = value; return this; } public String getRecIDContains() { return RecIDContains; } public BM_WorkOrderInputCustomFieldsQuery setRecIDContains(String value) { this.RecIDContains = value; return this; } public String getRecIDLike() { return RecIDLike; } public BM_WorkOrderInputCustomFieldsQuery setRecIDLike(String value) { this.RecIDLike = value; return this; } public ArrayList getRecIDBetween() { return RecIDBetween; } public BM_WorkOrderInputCustomFieldsQuery setRecIDBetween(ArrayList value) { this.RecIDBetween = value; return this; } public ArrayList getRecIDIn() { return RecIDIn; } public BM_WorkOrderInputCustomFieldsQuery setRecIDIn(ArrayList value) { this.RecIDIn = value; return this; } public String getSettingName() { return SettingName; } public BM_WorkOrderInputCustomFieldsQuery setSettingName(String value) { this.SettingName = value; return this; } public String getSettingNameStartsWith() { return SettingNameStartsWith; } public BM_WorkOrderInputCustomFieldsQuery setSettingNameStartsWith(String value) { this.SettingNameStartsWith = value; return this; } public String getSettingNameEndsWith() { return SettingNameEndsWith; } public BM_WorkOrderInputCustomFieldsQuery setSettingNameEndsWith(String value) { this.SettingNameEndsWith = value; return this; } public String getSettingNameContains() { return SettingNameContains; } public BM_WorkOrderInputCustomFieldsQuery setSettingNameContains(String value) { this.SettingNameContains = value; return this; } public String getSettingNameLike() { return SettingNameLike; } public BM_WorkOrderInputCustomFieldsQuery setSettingNameLike(String value) { this.SettingNameLike = value; return this; } public ArrayList getSettingNameBetween() { return SettingNameBetween; } public BM_WorkOrderInputCustomFieldsQuery setSettingNameBetween(ArrayList value) { this.SettingNameBetween = value; return this; } public ArrayList getSettingNameIn() { return SettingNameIn; } public BM_WorkOrderInputCustomFieldsQuery setSettingNameIn(ArrayList value) { this.SettingNameIn = value; return this; } public String getSettingDescription() { return SettingDescription; } public BM_WorkOrderInputCustomFieldsQuery setSettingDescription(String value) { this.SettingDescription = value; return this; } public String getSettingDescriptionStartsWith() { return SettingDescriptionStartsWith; } public BM_WorkOrderInputCustomFieldsQuery setSettingDescriptionStartsWith(String value) { this.SettingDescriptionStartsWith = value; return this; } public String getSettingDescriptionEndsWith() { return SettingDescriptionEndsWith; } public BM_WorkOrderInputCustomFieldsQuery setSettingDescriptionEndsWith(String value) { this.SettingDescriptionEndsWith = value; return this; } public String getSettingDescriptionContains() { return SettingDescriptionContains; } public BM_WorkOrderInputCustomFieldsQuery setSettingDescriptionContains(String value) { this.SettingDescriptionContains = value; return this; } public String getSettingDescriptionLike() { return SettingDescriptionLike; } public BM_WorkOrderInputCustomFieldsQuery setSettingDescriptionLike(String value) { this.SettingDescriptionLike = value; return this; } public ArrayList getSettingDescriptionBetween() { return SettingDescriptionBetween; } public BM_WorkOrderInputCustomFieldsQuery setSettingDescriptionBetween(ArrayList value) { this.SettingDescriptionBetween = value; return this; } public ArrayList getSettingDescriptionIn() { return SettingDescriptionIn; } public BM_WorkOrderInputCustomFieldsQuery setSettingDescriptionIn(ArrayList value) { this.SettingDescriptionIn = value; return this; } public Integer getCellType() { return CellType; } public BM_WorkOrderInputCustomFieldsQuery setCellType(Integer value) { this.CellType = value; return this; } public Integer getCellTypeGreaterThanOrEqualTo() { return CellTypeGreaterThanOrEqualTo; } public BM_WorkOrderInputCustomFieldsQuery setCellTypeGreaterThanOrEqualTo(Integer value) { this.CellTypeGreaterThanOrEqualTo = value; return this; } public Integer getCellTypeGreaterThan() { return CellTypeGreaterThan; } public BM_WorkOrderInputCustomFieldsQuery setCellTypeGreaterThan(Integer value) { this.CellTypeGreaterThan = value; return this; } public Integer getCellTypeLessThan() { return CellTypeLessThan; } public BM_WorkOrderInputCustomFieldsQuery setCellTypeLessThan(Integer value) { this.CellTypeLessThan = value; return this; } public Integer getCellTypeLessThanOrEqualTo() { return CellTypeLessThanOrEqualTo; } public BM_WorkOrderInputCustomFieldsQuery setCellTypeLessThanOrEqualTo(Integer value) { this.CellTypeLessThanOrEqualTo = value; return this; } public Integer getCellTypeNotEqualTo() { return CellTypeNotEqualTo; } public BM_WorkOrderInputCustomFieldsQuery setCellTypeNotEqualTo(Integer value) { this.CellTypeNotEqualTo = value; return this; } public ArrayList getCellTypeBetween() { return CellTypeBetween; } public BM_WorkOrderInputCustomFieldsQuery setCellTypeBetween(ArrayList value) { this.CellTypeBetween = value; return this; } public ArrayList getCellTypeIn() { return CellTypeIn; } public BM_WorkOrderInputCustomFieldsQuery setCellTypeIn(ArrayList value) { this.CellTypeIn = value; return this; } public String getFieldParameter() { return FieldParameter; } public BM_WorkOrderInputCustomFieldsQuery setFieldParameter(String value) { this.FieldParameter = value; return this; } public String getFieldParameterStartsWith() { return FieldParameterStartsWith; } public BM_WorkOrderInputCustomFieldsQuery setFieldParameterStartsWith(String value) { this.FieldParameterStartsWith = value; return this; } public String getFieldParameterEndsWith() { return FieldParameterEndsWith; } public BM_WorkOrderInputCustomFieldsQuery setFieldParameterEndsWith(String value) { this.FieldParameterEndsWith = value; return this; } public String getFieldParameterContains() { return FieldParameterContains; } public BM_WorkOrderInputCustomFieldsQuery setFieldParameterContains(String value) { this.FieldParameterContains = value; return this; } public String getFieldParameterLike() { return FieldParameterLike; } public BM_WorkOrderInputCustomFieldsQuery setFieldParameterLike(String value) { this.FieldParameterLike = value; return this; } public ArrayList getFieldParameterBetween() { return FieldParameterBetween; } public BM_WorkOrderInputCustomFieldsQuery setFieldParameterBetween(ArrayList value) { this.FieldParameterBetween = value; return this; } public ArrayList getFieldParameterIn() { return FieldParameterIn; } public BM_WorkOrderInputCustomFieldsQuery setFieldParameterIn(ArrayList value) { this.FieldParameterIn = value; return this; } public UUID getSyPluginRecID() { return SY_Plugin_RecID; } public BM_WorkOrderInputCustomFieldsQuery setSyPluginRecID(UUID value) { this.SY_Plugin_RecID = value; return this; } public ArrayList getSyPluginRecIDIn() { return SY_Plugin_RecIDIn; } public BM_WorkOrderInputCustomFieldsQuery setSyPluginRecIDIn(ArrayList value) { this.SY_Plugin_RecIDIn = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public BM_WorkOrderInputCustomFieldsQuery setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getLastSavedDateTimeGreaterThanOrEqualTo() { return LastSavedDateTimeGreaterThanOrEqualTo; } public BM_WorkOrderInputCustomFieldsQuery setLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.LastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeGreaterThan() { return LastSavedDateTimeGreaterThan; } public BM_WorkOrderInputCustomFieldsQuery setLastSavedDateTimeGreaterThan(Date value) { this.LastSavedDateTimeGreaterThan = value; return this; } public Date getLastSavedDateTimeLessThan() { return LastSavedDateTimeLessThan; } public BM_WorkOrderInputCustomFieldsQuery setLastSavedDateTimeLessThan(Date value) { this.LastSavedDateTimeLessThan = value; return this; } public Date getLastSavedDateTimeLessThanOrEqualTo() { return LastSavedDateTimeLessThanOrEqualTo; } public BM_WorkOrderInputCustomFieldsQuery setLastSavedDateTimeLessThanOrEqualTo(Date value) { this.LastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeNotEqualTo() { return LastSavedDateTimeNotEqualTo; } public BM_WorkOrderInputCustomFieldsQuery setLastSavedDateTimeNotEqualTo(Date value) { this.LastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getLastSavedDateTimeBetween() { return LastSavedDateTimeBetween; } public BM_WorkOrderInputCustomFieldsQuery setLastSavedDateTimeBetween(ArrayList value) { this.LastSavedDateTimeBetween = value; return this; } public ArrayList getLastSavedDateTimeIn() { return LastSavedDateTimeIn; } public BM_WorkOrderInputCustomFieldsQuery setLastSavedDateTimeIn(ArrayList value) { this.LastSavedDateTimeIn = value; return this; } public Integer getDisplayOrder() { return DisplayOrder; } public BM_WorkOrderInputCustomFieldsQuery setDisplayOrder(Integer value) { this.DisplayOrder = value; return this; } public Integer getDisplayOrderGreaterThanOrEqualTo() { return DisplayOrderGreaterThanOrEqualTo; } public BM_WorkOrderInputCustomFieldsQuery setDisplayOrderGreaterThanOrEqualTo(Integer value) { this.DisplayOrderGreaterThanOrEqualTo = value; return this; } public Integer getDisplayOrderGreaterThan() { return DisplayOrderGreaterThan; } public BM_WorkOrderInputCustomFieldsQuery setDisplayOrderGreaterThan(Integer value) { this.DisplayOrderGreaterThan = value; return this; } public Integer getDisplayOrderLessThan() { return DisplayOrderLessThan; } public BM_WorkOrderInputCustomFieldsQuery setDisplayOrderLessThan(Integer value) { this.DisplayOrderLessThan = value; return this; } public Integer getDisplayOrderLessThanOrEqualTo() { return DisplayOrderLessThanOrEqualTo; } public BM_WorkOrderInputCustomFieldsQuery setDisplayOrderLessThanOrEqualTo(Integer value) { this.DisplayOrderLessThanOrEqualTo = value; return this; } public Integer getDisplayOrderNotEqualTo() { return DisplayOrderNotEqualTo; } public BM_WorkOrderInputCustomFieldsQuery setDisplayOrderNotEqualTo(Integer value) { this.DisplayOrderNotEqualTo = value; return this; } public ArrayList getDisplayOrderBetween() { return DisplayOrderBetween; } public BM_WorkOrderInputCustomFieldsQuery setDisplayOrderBetween(ArrayList value) { this.DisplayOrderBetween = value; return this; } public ArrayList getDisplayOrderIn() { return DisplayOrderIn; } public BM_WorkOrderInputCustomFieldsQuery setDisplayOrderIn(ArrayList value) { this.DisplayOrderIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class BM_WorkOrderInputCustomValuesQuery extends QueryDb implements IReturn> { public String RecID = null; public String RecIDStartsWith = null; public String RecIDEndsWith = null; public String RecIDContains = null; public String RecIDLike = null; public ArrayList RecIDBetween = null; public ArrayList RecIDIn = null; public String BM_WorkOrderInputs_RecID = null; public String BM_WorkOrderInputs_RecIDStartsWith = null; public String BM_WorkOrderInputs_RecIDEndsWith = null; public String BM_WorkOrderInputs_RecIDContains = null; public String BM_WorkOrderInputs_RecIDLike = null; public ArrayList BM_WorkOrderInputs_RecIDBetween = null; public ArrayList BM_WorkOrderInputs_RecIDIn = null; public String BM_WorkOrderInputCustomFields_RecID = null; public String BM_WorkOrderInputCustomFields_RecIDStartsWith = null; public String BM_WorkOrderInputCustomFields_RecIDEndsWith = null; public String BM_WorkOrderInputCustomFields_RecIDContains = null; public String BM_WorkOrderInputCustomFields_RecIDLike = null; public ArrayList BM_WorkOrderInputCustomFields_RecIDBetween = null; public ArrayList BM_WorkOrderInputCustomFields_RecIDIn = null; public String Contents = null; public String ContentsStartsWith = null; public String ContentsEndsWith = null; public String ContentsContains = null; public String ContentsLike = null; public ArrayList ContentsBetween = null; public ArrayList ContentsIn = null; public Date LastSavedDateTime = null; public Date LastSavedDateTimeGreaterThanOrEqualTo = null; public Date LastSavedDateTimeGreaterThan = null; public Date LastSavedDateTimeLessThan = null; public Date LastSavedDateTimeLessThanOrEqualTo = null; public Date LastSavedDateTimeNotEqualTo = null; public ArrayList LastSavedDateTimeBetween = null; public ArrayList LastSavedDateTimeIn = null; public String getRecID() { return RecID; } public BM_WorkOrderInputCustomValuesQuery setRecID(String value) { this.RecID = value; return this; } public String getRecIDStartsWith() { return RecIDStartsWith; } public BM_WorkOrderInputCustomValuesQuery setRecIDStartsWith(String value) { this.RecIDStartsWith = value; return this; } public String getRecIDEndsWith() { return RecIDEndsWith; } public BM_WorkOrderInputCustomValuesQuery setRecIDEndsWith(String value) { this.RecIDEndsWith = value; return this; } public String getRecIDContains() { return RecIDContains; } public BM_WorkOrderInputCustomValuesQuery setRecIDContains(String value) { this.RecIDContains = value; return this; } public String getRecIDLike() { return RecIDLike; } public BM_WorkOrderInputCustomValuesQuery setRecIDLike(String value) { this.RecIDLike = value; return this; } public ArrayList getRecIDBetween() { return RecIDBetween; } public BM_WorkOrderInputCustomValuesQuery setRecIDBetween(ArrayList value) { this.RecIDBetween = value; return this; } public ArrayList getRecIDIn() { return RecIDIn; } public BM_WorkOrderInputCustomValuesQuery setRecIDIn(ArrayList value) { this.RecIDIn = value; return this; } public String getBmWorkOrderInputsRecID() { return BM_WorkOrderInputs_RecID; } public BM_WorkOrderInputCustomValuesQuery setBmWorkOrderInputsRecID(String value) { this.BM_WorkOrderInputs_RecID = value; return this; } public String getBmWorkOrderInputsRecIDStartsWith() { return BM_WorkOrderInputs_RecIDStartsWith; } public BM_WorkOrderInputCustomValuesQuery setBmWorkOrderInputsRecIDStartsWith(String value) { this.BM_WorkOrderInputs_RecIDStartsWith = value; return this; } public String getBmWorkOrderInputsRecIDEndsWith() { return BM_WorkOrderInputs_RecIDEndsWith; } public BM_WorkOrderInputCustomValuesQuery setBmWorkOrderInputsRecIDEndsWith(String value) { this.BM_WorkOrderInputs_RecIDEndsWith = value; return this; } public String getBmWorkOrderInputsRecIDContains() { return BM_WorkOrderInputs_RecIDContains; } public BM_WorkOrderInputCustomValuesQuery setBmWorkOrderInputsRecIDContains(String value) { this.BM_WorkOrderInputs_RecIDContains = value; return this; } public String getBmWorkOrderInputsRecIDLike() { return BM_WorkOrderInputs_RecIDLike; } public BM_WorkOrderInputCustomValuesQuery setBmWorkOrderInputsRecIDLike(String value) { this.BM_WorkOrderInputs_RecIDLike = value; return this; } public ArrayList getBmWorkOrderInputsRecIDBetween() { return BM_WorkOrderInputs_RecIDBetween; } public BM_WorkOrderInputCustomValuesQuery setBmWorkOrderInputsRecIDBetween(ArrayList value) { this.BM_WorkOrderInputs_RecIDBetween = value; return this; } public ArrayList getBmWorkOrderInputsRecIDIn() { return BM_WorkOrderInputs_RecIDIn; } public BM_WorkOrderInputCustomValuesQuery setBmWorkOrderInputsRecIDIn(ArrayList value) { this.BM_WorkOrderInputs_RecIDIn = value; return this; } public String getBmWorkOrderInputCustomFieldsRecID() { return BM_WorkOrderInputCustomFields_RecID; } public BM_WorkOrderInputCustomValuesQuery setBmWorkOrderInputCustomFieldsRecID(String value) { this.BM_WorkOrderInputCustomFields_RecID = value; return this; } public String getBmWorkOrderInputCustomFieldsRecIDStartsWith() { return BM_WorkOrderInputCustomFields_RecIDStartsWith; } public BM_WorkOrderInputCustomValuesQuery setBmWorkOrderInputCustomFieldsRecIDStartsWith(String value) { this.BM_WorkOrderInputCustomFields_RecIDStartsWith = value; return this; } public String getBmWorkOrderInputCustomFieldsRecIDEndsWith() { return BM_WorkOrderInputCustomFields_RecIDEndsWith; } public BM_WorkOrderInputCustomValuesQuery setBmWorkOrderInputCustomFieldsRecIDEndsWith(String value) { this.BM_WorkOrderInputCustomFields_RecIDEndsWith = value; return this; } public String getBmWorkOrderInputCustomFieldsRecIDContains() { return BM_WorkOrderInputCustomFields_RecIDContains; } public BM_WorkOrderInputCustomValuesQuery setBmWorkOrderInputCustomFieldsRecIDContains(String value) { this.BM_WorkOrderInputCustomFields_RecIDContains = value; return this; } public String getBmWorkOrderInputCustomFieldsRecIDLike() { return BM_WorkOrderInputCustomFields_RecIDLike; } public BM_WorkOrderInputCustomValuesQuery setBmWorkOrderInputCustomFieldsRecIDLike(String value) { this.BM_WorkOrderInputCustomFields_RecIDLike = value; return this; } public ArrayList getBmWorkOrderInputCustomFieldsRecIDBetween() { return BM_WorkOrderInputCustomFields_RecIDBetween; } public BM_WorkOrderInputCustomValuesQuery setBmWorkOrderInputCustomFieldsRecIDBetween(ArrayList value) { this.BM_WorkOrderInputCustomFields_RecIDBetween = value; return this; } public ArrayList getBmWorkOrderInputCustomFieldsRecIDIn() { return BM_WorkOrderInputCustomFields_RecIDIn; } public BM_WorkOrderInputCustomValuesQuery setBmWorkOrderInputCustomFieldsRecIDIn(ArrayList value) { this.BM_WorkOrderInputCustomFields_RecIDIn = value; return this; } public String getContents() { return Contents; } public BM_WorkOrderInputCustomValuesQuery setContents(String value) { this.Contents = value; return this; } public String getContentsStartsWith() { return ContentsStartsWith; } public BM_WorkOrderInputCustomValuesQuery setContentsStartsWith(String value) { this.ContentsStartsWith = value; return this; } public String getContentsEndsWith() { return ContentsEndsWith; } public BM_WorkOrderInputCustomValuesQuery setContentsEndsWith(String value) { this.ContentsEndsWith = value; return this; } public String getContentsContains() { return ContentsContains; } public BM_WorkOrderInputCustomValuesQuery setContentsContains(String value) { this.ContentsContains = value; return this; } public String getContentsLike() { return ContentsLike; } public BM_WorkOrderInputCustomValuesQuery setContentsLike(String value) { this.ContentsLike = value; return this; } public ArrayList getContentsBetween() { return ContentsBetween; } public BM_WorkOrderInputCustomValuesQuery setContentsBetween(ArrayList value) { this.ContentsBetween = value; return this; } public ArrayList getContentsIn() { return ContentsIn; } public BM_WorkOrderInputCustomValuesQuery setContentsIn(ArrayList value) { this.ContentsIn = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public BM_WorkOrderInputCustomValuesQuery setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getLastSavedDateTimeGreaterThanOrEqualTo() { return LastSavedDateTimeGreaterThanOrEqualTo; } public BM_WorkOrderInputCustomValuesQuery setLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.LastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeGreaterThan() { return LastSavedDateTimeGreaterThan; } public BM_WorkOrderInputCustomValuesQuery setLastSavedDateTimeGreaterThan(Date value) { this.LastSavedDateTimeGreaterThan = value; return this; } public Date getLastSavedDateTimeLessThan() { return LastSavedDateTimeLessThan; } public BM_WorkOrderInputCustomValuesQuery setLastSavedDateTimeLessThan(Date value) { this.LastSavedDateTimeLessThan = value; return this; } public Date getLastSavedDateTimeLessThanOrEqualTo() { return LastSavedDateTimeLessThanOrEqualTo; } public BM_WorkOrderInputCustomValuesQuery setLastSavedDateTimeLessThanOrEqualTo(Date value) { this.LastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeNotEqualTo() { return LastSavedDateTimeNotEqualTo; } public BM_WorkOrderInputCustomValuesQuery setLastSavedDateTimeNotEqualTo(Date value) { this.LastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getLastSavedDateTimeBetween() { return LastSavedDateTimeBetween; } public BM_WorkOrderInputCustomValuesQuery setLastSavedDateTimeBetween(ArrayList value) { this.LastSavedDateTimeBetween = value; return this; } public ArrayList getLastSavedDateTimeIn() { return LastSavedDateTimeIn; } public BM_WorkOrderInputCustomValuesQuery setLastSavedDateTimeIn(ArrayList value) { this.LastSavedDateTimeIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class BM_WorkOrderInputDetailsQuery extends QueryDb implements IReturn> { public String RecID = null; public String RecIDStartsWith = null; public String RecIDEndsWith = null; public String RecIDContains = null; public String RecIDLike = null; public ArrayList RecIDBetween = null; public ArrayList RecIDIn = null; public String Parent_RecID = null; public String Parent_RecIDStartsWith = null; public String Parent_RecIDEndsWith = null; public String Parent_RecIDContains = null; public String Parent_RecIDLike = null; public ArrayList Parent_RecIDBetween = null; public ArrayList Parent_RecIDIn = null; public String IN_SOH_LinkID = null; public String IN_SOH_LinkIDStartsWith = null; public String IN_SOH_LinkIDEndsWith = null; public String IN_SOH_LinkIDContains = null; public String IN_SOH_LinkIDLike = null; public ArrayList IN_SOH_LinkIDBetween = null; public ArrayList IN_SOH_LinkIDIn = null; public BigDecimal Cost = null; public BigDecimal CostGreaterThanOrEqualTo = null; public BigDecimal CostGreaterThan = null; public BigDecimal CostLessThan = null; public BigDecimal CostLessThanOrEqualTo = null; public BigDecimal CostNotEqualTo = null; public ArrayList CostBetween = null; public ArrayList CostIn = null; public BigDecimal SpecialPrice = null; public BigDecimal SpecialPriceGreaterThanOrEqualTo = null; public BigDecimal SpecialPriceGreaterThan = null; public BigDecimal SpecialPriceLessThan = null; public BigDecimal SpecialPriceLessThanOrEqualTo = null; public BigDecimal SpecialPriceNotEqualTo = null; public ArrayList SpecialPriceBetween = null; public ArrayList SpecialPriceIn = null; public BigDecimal Quantity = null; public BigDecimal QuantityGreaterThanOrEqualTo = null; public BigDecimal QuantityGreaterThan = null; public BigDecimal QuantityLessThan = null; public BigDecimal QuantityLessThanOrEqualTo = null; public BigDecimal QuantityNotEqualTo = null; public ArrayList QuantityBetween = null; public ArrayList QuantityIn = null; public String SerialNo = null; public String SerialNoStartsWith = null; public String SerialNoEndsWith = null; public String SerialNoContains = null; public String SerialNoLike = null; public ArrayList SerialNoBetween = null; public ArrayList SerialNoIn = null; public Date ExpiryDate = null; public Date ExpiryDateGreaterThanOrEqualTo = null; public Date ExpiryDateGreaterThan = null; public Date ExpiryDateLessThan = null; public Date ExpiryDateLessThanOrEqualTo = null; public Date ExpiryDateNotEqualTo = null; public ArrayList ExpiryDateBetween = null; public ArrayList ExpiryDateIn = null; public String BinLocation = null; public String BinLocationStartsWith = null; public String BinLocationEndsWith = null; public String BinLocationContains = null; public String BinLocationLike = null; public ArrayList BinLocationBetween = null; public ArrayList BinLocationIn = null; public Date LastSavedDateTime = null; public Date LastSavedDateTimeGreaterThanOrEqualTo = null; public Date LastSavedDateTimeGreaterThan = null; public Date LastSavedDateTimeLessThan = null; public Date LastSavedDateTimeLessThanOrEqualTo = null; public Date LastSavedDateTimeNotEqualTo = null; public ArrayList LastSavedDateTimeBetween = null; public ArrayList LastSavedDateTimeIn = null; public ArrayList RowHash = null; public Integer ItemNo = null; public Integer ItemNoGreaterThanOrEqualTo = null; public Integer ItemNoGreaterThan = null; public Integer ItemNoLessThan = null; public Integer ItemNoLessThanOrEqualTo = null; public Integer ItemNoNotEqualTo = null; public ArrayList ItemNoBetween = null; public ArrayList ItemNoIn = null; public String getRecID() { return RecID; } public BM_WorkOrderInputDetailsQuery setRecID(String value) { this.RecID = value; return this; } public String getRecIDStartsWith() { return RecIDStartsWith; } public BM_WorkOrderInputDetailsQuery setRecIDStartsWith(String value) { this.RecIDStartsWith = value; return this; } public String getRecIDEndsWith() { return RecIDEndsWith; } public BM_WorkOrderInputDetailsQuery setRecIDEndsWith(String value) { this.RecIDEndsWith = value; return this; } public String getRecIDContains() { return RecIDContains; } public BM_WorkOrderInputDetailsQuery setRecIDContains(String value) { this.RecIDContains = value; return this; } public String getRecIDLike() { return RecIDLike; } public BM_WorkOrderInputDetailsQuery setRecIDLike(String value) { this.RecIDLike = value; return this; } public ArrayList getRecIDBetween() { return RecIDBetween; } public BM_WorkOrderInputDetailsQuery setRecIDBetween(ArrayList value) { this.RecIDBetween = value; return this; } public ArrayList getRecIDIn() { return RecIDIn; } public BM_WorkOrderInputDetailsQuery setRecIDIn(ArrayList value) { this.RecIDIn = value; return this; } public String getParentRecID() { return Parent_RecID; } public BM_WorkOrderInputDetailsQuery setParentRecID(String value) { this.Parent_RecID = value; return this; } public String getParentRecIDStartsWith() { return Parent_RecIDStartsWith; } public BM_WorkOrderInputDetailsQuery setParentRecIDStartsWith(String value) { this.Parent_RecIDStartsWith = value; return this; } public String getParentRecIDEndsWith() { return Parent_RecIDEndsWith; } public BM_WorkOrderInputDetailsQuery setParentRecIDEndsWith(String value) { this.Parent_RecIDEndsWith = value; return this; } public String getParentRecIDContains() { return Parent_RecIDContains; } public BM_WorkOrderInputDetailsQuery setParentRecIDContains(String value) { this.Parent_RecIDContains = value; return this; } public String getParentRecIDLike() { return Parent_RecIDLike; } public BM_WorkOrderInputDetailsQuery setParentRecIDLike(String value) { this.Parent_RecIDLike = value; return this; } public ArrayList getParentRecIDBetween() { return Parent_RecIDBetween; } public BM_WorkOrderInputDetailsQuery setParentRecIDBetween(ArrayList value) { this.Parent_RecIDBetween = value; return this; } public ArrayList getParentRecIDIn() { return Parent_RecIDIn; } public BM_WorkOrderInputDetailsQuery setParentRecIDIn(ArrayList value) { this.Parent_RecIDIn = value; return this; } public String getInSohLinkID() { return IN_SOH_LinkID; } public BM_WorkOrderInputDetailsQuery setInSohLinkID(String value) { this.IN_SOH_LinkID = value; return this; } public String getInSohLinkIDStartsWith() { return IN_SOH_LinkIDStartsWith; } public BM_WorkOrderInputDetailsQuery setInSohLinkIDStartsWith(String value) { this.IN_SOH_LinkIDStartsWith = value; return this; } public String getInSohLinkIDEndsWith() { return IN_SOH_LinkIDEndsWith; } public BM_WorkOrderInputDetailsQuery setInSohLinkIDEndsWith(String value) { this.IN_SOH_LinkIDEndsWith = value; return this; } public String getInSohLinkIDContains() { return IN_SOH_LinkIDContains; } public BM_WorkOrderInputDetailsQuery setInSohLinkIDContains(String value) { this.IN_SOH_LinkIDContains = value; return this; } public String getInSohLinkIDLike() { return IN_SOH_LinkIDLike; } public BM_WorkOrderInputDetailsQuery setInSohLinkIDLike(String value) { this.IN_SOH_LinkIDLike = value; return this; } public ArrayList getInSohLinkIDBetween() { return IN_SOH_LinkIDBetween; } public BM_WorkOrderInputDetailsQuery setInSohLinkIDBetween(ArrayList value) { this.IN_SOH_LinkIDBetween = value; return this; } public ArrayList getInSohLinkIDIn() { return IN_SOH_LinkIDIn; } public BM_WorkOrderInputDetailsQuery setInSohLinkIDIn(ArrayList value) { this.IN_SOH_LinkIDIn = value; return this; } public BigDecimal getCost() { return Cost; } public BM_WorkOrderInputDetailsQuery setCost(BigDecimal value) { this.Cost = value; return this; } public BigDecimal getCostGreaterThanOrEqualTo() { return CostGreaterThanOrEqualTo; } public BM_WorkOrderInputDetailsQuery setCostGreaterThanOrEqualTo(BigDecimal value) { this.CostGreaterThanOrEqualTo = value; return this; } public BigDecimal getCostGreaterThan() { return CostGreaterThan; } public BM_WorkOrderInputDetailsQuery setCostGreaterThan(BigDecimal value) { this.CostGreaterThan = value; return this; } public BigDecimal getCostLessThan() { return CostLessThan; } public BM_WorkOrderInputDetailsQuery setCostLessThan(BigDecimal value) { this.CostLessThan = value; return this; } public BigDecimal getCostLessThanOrEqualTo() { return CostLessThanOrEqualTo; } public BM_WorkOrderInputDetailsQuery setCostLessThanOrEqualTo(BigDecimal value) { this.CostLessThanOrEqualTo = value; return this; } public BigDecimal getCostNotEqualTo() { return CostNotEqualTo; } public BM_WorkOrderInputDetailsQuery setCostNotEqualTo(BigDecimal value) { this.CostNotEqualTo = value; return this; } public ArrayList getCostBetween() { return CostBetween; } public BM_WorkOrderInputDetailsQuery setCostBetween(ArrayList value) { this.CostBetween = value; return this; } public ArrayList getCostIn() { return CostIn; } public BM_WorkOrderInputDetailsQuery setCostIn(ArrayList value) { this.CostIn = value; return this; } public BigDecimal getSpecialPrice() { return SpecialPrice; } public BM_WorkOrderInputDetailsQuery setSpecialPrice(BigDecimal value) { this.SpecialPrice = value; return this; } public BigDecimal getSpecialPriceGreaterThanOrEqualTo() { return SpecialPriceGreaterThanOrEqualTo; } public BM_WorkOrderInputDetailsQuery setSpecialPriceGreaterThanOrEqualTo(BigDecimal value) { this.SpecialPriceGreaterThanOrEqualTo = value; return this; } public BigDecimal getSpecialPriceGreaterThan() { return SpecialPriceGreaterThan; } public BM_WorkOrderInputDetailsQuery setSpecialPriceGreaterThan(BigDecimal value) { this.SpecialPriceGreaterThan = value; return this; } public BigDecimal getSpecialPriceLessThan() { return SpecialPriceLessThan; } public BM_WorkOrderInputDetailsQuery setSpecialPriceLessThan(BigDecimal value) { this.SpecialPriceLessThan = value; return this; } public BigDecimal getSpecialPriceLessThanOrEqualTo() { return SpecialPriceLessThanOrEqualTo; } public BM_WorkOrderInputDetailsQuery setSpecialPriceLessThanOrEqualTo(BigDecimal value) { this.SpecialPriceLessThanOrEqualTo = value; return this; } public BigDecimal getSpecialPriceNotEqualTo() { return SpecialPriceNotEqualTo; } public BM_WorkOrderInputDetailsQuery setSpecialPriceNotEqualTo(BigDecimal value) { this.SpecialPriceNotEqualTo = value; return this; } public ArrayList getSpecialPriceBetween() { return SpecialPriceBetween; } public BM_WorkOrderInputDetailsQuery setSpecialPriceBetween(ArrayList value) { this.SpecialPriceBetween = value; return this; } public ArrayList getSpecialPriceIn() { return SpecialPriceIn; } public BM_WorkOrderInputDetailsQuery setSpecialPriceIn(ArrayList value) { this.SpecialPriceIn = value; return this; } public BigDecimal getQuantity() { return Quantity; } public BM_WorkOrderInputDetailsQuery setQuantity(BigDecimal value) { this.Quantity = value; return this; } public BigDecimal getQuantityGreaterThanOrEqualTo() { return QuantityGreaterThanOrEqualTo; } public BM_WorkOrderInputDetailsQuery setQuantityGreaterThanOrEqualTo(BigDecimal value) { this.QuantityGreaterThanOrEqualTo = value; return this; } public BigDecimal getQuantityGreaterThan() { return QuantityGreaterThan; } public BM_WorkOrderInputDetailsQuery setQuantityGreaterThan(BigDecimal value) { this.QuantityGreaterThan = value; return this; } public BigDecimal getQuantityLessThan() { return QuantityLessThan; } public BM_WorkOrderInputDetailsQuery setQuantityLessThan(BigDecimal value) { this.QuantityLessThan = value; return this; } public BigDecimal getQuantityLessThanOrEqualTo() { return QuantityLessThanOrEqualTo; } public BM_WorkOrderInputDetailsQuery setQuantityLessThanOrEqualTo(BigDecimal value) { this.QuantityLessThanOrEqualTo = value; return this; } public BigDecimal getQuantityNotEqualTo() { return QuantityNotEqualTo; } public BM_WorkOrderInputDetailsQuery setQuantityNotEqualTo(BigDecimal value) { this.QuantityNotEqualTo = value; return this; } public ArrayList getQuantityBetween() { return QuantityBetween; } public BM_WorkOrderInputDetailsQuery setQuantityBetween(ArrayList value) { this.QuantityBetween = value; return this; } public ArrayList getQuantityIn() { return QuantityIn; } public BM_WorkOrderInputDetailsQuery setQuantityIn(ArrayList value) { this.QuantityIn = value; return this; } public String getSerialNo() { return SerialNo; } public BM_WorkOrderInputDetailsQuery setSerialNo(String value) { this.SerialNo = value; return this; } public String getSerialNoStartsWith() { return SerialNoStartsWith; } public BM_WorkOrderInputDetailsQuery setSerialNoStartsWith(String value) { this.SerialNoStartsWith = value; return this; } public String getSerialNoEndsWith() { return SerialNoEndsWith; } public BM_WorkOrderInputDetailsQuery setSerialNoEndsWith(String value) { this.SerialNoEndsWith = value; return this; } public String getSerialNoContains() { return SerialNoContains; } public BM_WorkOrderInputDetailsQuery setSerialNoContains(String value) { this.SerialNoContains = value; return this; } public String getSerialNoLike() { return SerialNoLike; } public BM_WorkOrderInputDetailsQuery setSerialNoLike(String value) { this.SerialNoLike = value; return this; } public ArrayList getSerialNoBetween() { return SerialNoBetween; } public BM_WorkOrderInputDetailsQuery setSerialNoBetween(ArrayList value) { this.SerialNoBetween = value; return this; } public ArrayList getSerialNoIn() { return SerialNoIn; } public BM_WorkOrderInputDetailsQuery setSerialNoIn(ArrayList value) { this.SerialNoIn = value; return this; } public Date getExpiryDate() { return ExpiryDate; } public BM_WorkOrderInputDetailsQuery setExpiryDate(Date value) { this.ExpiryDate = value; return this; } public Date getExpiryDateGreaterThanOrEqualTo() { return ExpiryDateGreaterThanOrEqualTo; } public BM_WorkOrderInputDetailsQuery setExpiryDateGreaterThanOrEqualTo(Date value) { this.ExpiryDateGreaterThanOrEqualTo = value; return this; } public Date getExpiryDateGreaterThan() { return ExpiryDateGreaterThan; } public BM_WorkOrderInputDetailsQuery setExpiryDateGreaterThan(Date value) { this.ExpiryDateGreaterThan = value; return this; } public Date getExpiryDateLessThan() { return ExpiryDateLessThan; } public BM_WorkOrderInputDetailsQuery setExpiryDateLessThan(Date value) { this.ExpiryDateLessThan = value; return this; } public Date getExpiryDateLessThanOrEqualTo() { return ExpiryDateLessThanOrEqualTo; } public BM_WorkOrderInputDetailsQuery setExpiryDateLessThanOrEqualTo(Date value) { this.ExpiryDateLessThanOrEqualTo = value; return this; } public Date getExpiryDateNotEqualTo() { return ExpiryDateNotEqualTo; } public BM_WorkOrderInputDetailsQuery setExpiryDateNotEqualTo(Date value) { this.ExpiryDateNotEqualTo = value; return this; } public ArrayList getExpiryDateBetween() { return ExpiryDateBetween; } public BM_WorkOrderInputDetailsQuery setExpiryDateBetween(ArrayList value) { this.ExpiryDateBetween = value; return this; } public ArrayList getExpiryDateIn() { return ExpiryDateIn; } public BM_WorkOrderInputDetailsQuery setExpiryDateIn(ArrayList value) { this.ExpiryDateIn = value; return this; } public String getBinLocation() { return BinLocation; } public BM_WorkOrderInputDetailsQuery setBinLocation(String value) { this.BinLocation = value; return this; } public String getBinLocationStartsWith() { return BinLocationStartsWith; } public BM_WorkOrderInputDetailsQuery setBinLocationStartsWith(String value) { this.BinLocationStartsWith = value; return this; } public String getBinLocationEndsWith() { return BinLocationEndsWith; } public BM_WorkOrderInputDetailsQuery setBinLocationEndsWith(String value) { this.BinLocationEndsWith = value; return this; } public String getBinLocationContains() { return BinLocationContains; } public BM_WorkOrderInputDetailsQuery setBinLocationContains(String value) { this.BinLocationContains = value; return this; } public String getBinLocationLike() { return BinLocationLike; } public BM_WorkOrderInputDetailsQuery setBinLocationLike(String value) { this.BinLocationLike = value; return this; } public ArrayList getBinLocationBetween() { return BinLocationBetween; } public BM_WorkOrderInputDetailsQuery setBinLocationBetween(ArrayList value) { this.BinLocationBetween = value; return this; } public ArrayList getBinLocationIn() { return BinLocationIn; } public BM_WorkOrderInputDetailsQuery setBinLocationIn(ArrayList value) { this.BinLocationIn = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public BM_WorkOrderInputDetailsQuery setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getLastSavedDateTimeGreaterThanOrEqualTo() { return LastSavedDateTimeGreaterThanOrEqualTo; } public BM_WorkOrderInputDetailsQuery setLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.LastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeGreaterThan() { return LastSavedDateTimeGreaterThan; } public BM_WorkOrderInputDetailsQuery setLastSavedDateTimeGreaterThan(Date value) { this.LastSavedDateTimeGreaterThan = value; return this; } public Date getLastSavedDateTimeLessThan() { return LastSavedDateTimeLessThan; } public BM_WorkOrderInputDetailsQuery setLastSavedDateTimeLessThan(Date value) { this.LastSavedDateTimeLessThan = value; return this; } public Date getLastSavedDateTimeLessThanOrEqualTo() { return LastSavedDateTimeLessThanOrEqualTo; } public BM_WorkOrderInputDetailsQuery setLastSavedDateTimeLessThanOrEqualTo(Date value) { this.LastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeNotEqualTo() { return LastSavedDateTimeNotEqualTo; } public BM_WorkOrderInputDetailsQuery setLastSavedDateTimeNotEqualTo(Date value) { this.LastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getLastSavedDateTimeBetween() { return LastSavedDateTimeBetween; } public BM_WorkOrderInputDetailsQuery setLastSavedDateTimeBetween(ArrayList value) { this.LastSavedDateTimeBetween = value; return this; } public ArrayList getLastSavedDateTimeIn() { return LastSavedDateTimeIn; } public BM_WorkOrderInputDetailsQuery setLastSavedDateTimeIn(ArrayList value) { this.LastSavedDateTimeIn = value; return this; } public ArrayList getRowHash() { return RowHash; } public BM_WorkOrderInputDetailsQuery setRowHash(ArrayList value) { this.RowHash = value; return this; } public Integer getItemNo() { return ItemNo; } public BM_WorkOrderInputDetailsQuery setItemNo(Integer value) { this.ItemNo = value; return this; } public Integer getItemNoGreaterThanOrEqualTo() { return ItemNoGreaterThanOrEqualTo; } public BM_WorkOrderInputDetailsQuery setItemNoGreaterThanOrEqualTo(Integer value) { this.ItemNoGreaterThanOrEqualTo = value; return this; } public Integer getItemNoGreaterThan() { return ItemNoGreaterThan; } public BM_WorkOrderInputDetailsQuery setItemNoGreaterThan(Integer value) { this.ItemNoGreaterThan = value; return this; } public Integer getItemNoLessThan() { return ItemNoLessThan; } public BM_WorkOrderInputDetailsQuery setItemNoLessThan(Integer value) { this.ItemNoLessThan = value; return this; } public Integer getItemNoLessThanOrEqualTo() { return ItemNoLessThanOrEqualTo; } public BM_WorkOrderInputDetailsQuery setItemNoLessThanOrEqualTo(Integer value) { this.ItemNoLessThanOrEqualTo = value; return this; } public Integer getItemNoNotEqualTo() { return ItemNoNotEqualTo; } public BM_WorkOrderInputDetailsQuery setItemNoNotEqualTo(Integer value) { this.ItemNoNotEqualTo = value; return this; } public ArrayList getItemNoBetween() { return ItemNoBetween; } public BM_WorkOrderInputDetailsQuery setItemNoBetween(ArrayList value) { this.ItemNoBetween = value; return this; } public ArrayList getItemNoIn() { return ItemNoIn; } public BM_WorkOrderInputDetailsQuery setItemNoIn(ArrayList value) { this.ItemNoIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class BM_WorkOrderInputsQuery extends QueryDb implements IReturn> { public String RecID = null; public String RecIDStartsWith = null; public String RecIDEndsWith = null; public String RecIDContains = null; public String RecIDLike = null; public ArrayList RecIDBetween = null; public ArrayList RecIDIn = null; public String BM_WorkOrderStages_RecID = null; public String BM_WorkOrderStages_RecIDStartsWith = null; public String BM_WorkOrderStages_RecIDEndsWith = null; public String BM_WorkOrderStages_RecIDContains = null; public String BM_WorkOrderStages_RecIDLike = null; public ArrayList BM_WorkOrderStages_RecIDBetween = null; public ArrayList BM_WorkOrderStages_RecIDIn = null; public Integer ItemNo = null; public Integer ItemNoGreaterThanOrEqualTo = null; public Integer ItemNoGreaterThan = null; public Integer ItemNoLessThan = null; public Integer ItemNoLessThanOrEqualTo = null; public Integer ItemNoNotEqualTo = null; public ArrayList ItemNoBetween = null; public ArrayList ItemNoIn = null; public String InventoryID = null; public String InventoryIDStartsWith = null; public String InventoryIDEndsWith = null; public String InventoryIDContains = null; public String InventoryIDLike = null; public ArrayList InventoryIDBetween = null; public ArrayList InventoryIDIn = null; public Boolean IsRatio = null; public BigDecimal Quantity = null; public BigDecimal QuantityGreaterThanOrEqualTo = null; public BigDecimal QuantityGreaterThan = null; public BigDecimal QuantityLessThan = null; public BigDecimal QuantityLessThanOrEqualTo = null; public BigDecimal QuantityNotEqualTo = null; public ArrayList QuantityBetween = null; public ArrayList QuantityIn = null; public BigDecimal QuantityOnBackOrder = null; public BigDecimal QuantityOnBackOrderGreaterThanOrEqualTo = null; public BigDecimal QuantityOnBackOrderGreaterThan = null; public BigDecimal QuantityOnBackOrderLessThan = null; public BigDecimal QuantityOnBackOrderLessThanOrEqualTo = null; public BigDecimal QuantityOnBackOrderNotEqualTo = null; public ArrayList QuantityOnBackOrderBetween = null; public ArrayList QuantityOnBackOrderIn = null; public String Note = null; public String NoteStartsWith = null; public String NoteEndsWith = null; public String NoteContains = null; public String NoteLike = null; public ArrayList NoteBetween = null; public ArrayList NoteIn = null; public Date LastSavedDateTime = null; public Date LastSavedDateTimeGreaterThanOrEqualTo = null; public Date LastSavedDateTimeGreaterThan = null; public Date LastSavedDateTimeLessThan = null; public Date LastSavedDateTimeLessThanOrEqualTo = null; public Date LastSavedDateTimeNotEqualTo = null; public ArrayList LastSavedDateTimeBetween = null; public ArrayList LastSavedDateTimeIn = null; public ArrayList RowHash = null; public String SubAssembly = null; public String SubAssemblyStartsWith = null; public String SubAssemblyEndsWith = null; public String SubAssemblyContains = null; public String SubAssemblyLike = null; public ArrayList SubAssemblyBetween = null; public ArrayList SubAssemblyIn = null; public Short SubAssemblyExplodePolicy = null; public Short SubAssemblyExplodePolicyGreaterThanOrEqualTo = null; public Short SubAssemblyExplodePolicyGreaterThan = null; public Short SubAssemblyExplodePolicyLessThan = null; public Short SubAssemblyExplodePolicyLessThanOrEqualTo = null; public Short SubAssemblyExplodePolicyNotEqualTo = null; public ArrayList SubAssemblyExplodePolicyBetween = null; public ArrayList SubAssemblyExplodePolicyIn = null; public String getRecID() { return RecID; } public BM_WorkOrderInputsQuery setRecID(String value) { this.RecID = value; return this; } public String getRecIDStartsWith() { return RecIDStartsWith; } public BM_WorkOrderInputsQuery setRecIDStartsWith(String value) { this.RecIDStartsWith = value; return this; } public String getRecIDEndsWith() { return RecIDEndsWith; } public BM_WorkOrderInputsQuery setRecIDEndsWith(String value) { this.RecIDEndsWith = value; return this; } public String getRecIDContains() { return RecIDContains; } public BM_WorkOrderInputsQuery setRecIDContains(String value) { this.RecIDContains = value; return this; } public String getRecIDLike() { return RecIDLike; } public BM_WorkOrderInputsQuery setRecIDLike(String value) { this.RecIDLike = value; return this; } public ArrayList getRecIDBetween() { return RecIDBetween; } public BM_WorkOrderInputsQuery setRecIDBetween(ArrayList value) { this.RecIDBetween = value; return this; } public ArrayList getRecIDIn() { return RecIDIn; } public BM_WorkOrderInputsQuery setRecIDIn(ArrayList value) { this.RecIDIn = value; return this; } public String getBmWorkOrderStagesRecID() { return BM_WorkOrderStages_RecID; } public BM_WorkOrderInputsQuery setBmWorkOrderStagesRecID(String value) { this.BM_WorkOrderStages_RecID = value; return this; } public String getBmWorkOrderStagesRecIDStartsWith() { return BM_WorkOrderStages_RecIDStartsWith; } public BM_WorkOrderInputsQuery setBmWorkOrderStagesRecIDStartsWith(String value) { this.BM_WorkOrderStages_RecIDStartsWith = value; return this; } public String getBmWorkOrderStagesRecIDEndsWith() { return BM_WorkOrderStages_RecIDEndsWith; } public BM_WorkOrderInputsQuery setBmWorkOrderStagesRecIDEndsWith(String value) { this.BM_WorkOrderStages_RecIDEndsWith = value; return this; } public String getBmWorkOrderStagesRecIDContains() { return BM_WorkOrderStages_RecIDContains; } public BM_WorkOrderInputsQuery setBmWorkOrderStagesRecIDContains(String value) { this.BM_WorkOrderStages_RecIDContains = value; return this; } public String getBmWorkOrderStagesRecIDLike() { return BM_WorkOrderStages_RecIDLike; } public BM_WorkOrderInputsQuery setBmWorkOrderStagesRecIDLike(String value) { this.BM_WorkOrderStages_RecIDLike = value; return this; } public ArrayList getBmWorkOrderStagesRecIDBetween() { return BM_WorkOrderStages_RecIDBetween; } public BM_WorkOrderInputsQuery setBmWorkOrderStagesRecIDBetween(ArrayList value) { this.BM_WorkOrderStages_RecIDBetween = value; return this; } public ArrayList getBmWorkOrderStagesRecIDIn() { return BM_WorkOrderStages_RecIDIn; } public BM_WorkOrderInputsQuery setBmWorkOrderStagesRecIDIn(ArrayList value) { this.BM_WorkOrderStages_RecIDIn = value; return this; } public Integer getItemNo() { return ItemNo; } public BM_WorkOrderInputsQuery setItemNo(Integer value) { this.ItemNo = value; return this; } public Integer getItemNoGreaterThanOrEqualTo() { return ItemNoGreaterThanOrEqualTo; } public BM_WorkOrderInputsQuery setItemNoGreaterThanOrEqualTo(Integer value) { this.ItemNoGreaterThanOrEqualTo = value; return this; } public Integer getItemNoGreaterThan() { return ItemNoGreaterThan; } public BM_WorkOrderInputsQuery setItemNoGreaterThan(Integer value) { this.ItemNoGreaterThan = value; return this; } public Integer getItemNoLessThan() { return ItemNoLessThan; } public BM_WorkOrderInputsQuery setItemNoLessThan(Integer value) { this.ItemNoLessThan = value; return this; } public Integer getItemNoLessThanOrEqualTo() { return ItemNoLessThanOrEqualTo; } public BM_WorkOrderInputsQuery setItemNoLessThanOrEqualTo(Integer value) { this.ItemNoLessThanOrEqualTo = value; return this; } public Integer getItemNoNotEqualTo() { return ItemNoNotEqualTo; } public BM_WorkOrderInputsQuery setItemNoNotEqualTo(Integer value) { this.ItemNoNotEqualTo = value; return this; } public ArrayList getItemNoBetween() { return ItemNoBetween; } public BM_WorkOrderInputsQuery setItemNoBetween(ArrayList value) { this.ItemNoBetween = value; return this; } public ArrayList getItemNoIn() { return ItemNoIn; } public BM_WorkOrderInputsQuery setItemNoIn(ArrayList value) { this.ItemNoIn = value; return this; } public String getInventoryID() { return InventoryID; } public BM_WorkOrderInputsQuery setInventoryID(String value) { this.InventoryID = value; return this; } public String getInventoryIDStartsWith() { return InventoryIDStartsWith; } public BM_WorkOrderInputsQuery setInventoryIDStartsWith(String value) { this.InventoryIDStartsWith = value; return this; } public String getInventoryIDEndsWith() { return InventoryIDEndsWith; } public BM_WorkOrderInputsQuery setInventoryIDEndsWith(String value) { this.InventoryIDEndsWith = value; return this; } public String getInventoryIDContains() { return InventoryIDContains; } public BM_WorkOrderInputsQuery setInventoryIDContains(String value) { this.InventoryIDContains = value; return this; } public String getInventoryIDLike() { return InventoryIDLike; } public BM_WorkOrderInputsQuery setInventoryIDLike(String value) { this.InventoryIDLike = value; return this; } public ArrayList getInventoryIDBetween() { return InventoryIDBetween; } public BM_WorkOrderInputsQuery setInventoryIDBetween(ArrayList value) { this.InventoryIDBetween = value; return this; } public ArrayList getInventoryIDIn() { return InventoryIDIn; } public BM_WorkOrderInputsQuery setInventoryIDIn(ArrayList value) { this.InventoryIDIn = value; return this; } public Boolean getIsRatio() { return IsRatio; } public BM_WorkOrderInputsQuery setIsRatio(Boolean value) { this.IsRatio = value; return this; } public BigDecimal getQuantity() { return Quantity; } public BM_WorkOrderInputsQuery setQuantity(BigDecimal value) { this.Quantity = value; return this; } public BigDecimal getQuantityGreaterThanOrEqualTo() { return QuantityGreaterThanOrEqualTo; } public BM_WorkOrderInputsQuery setQuantityGreaterThanOrEqualTo(BigDecimal value) { this.QuantityGreaterThanOrEqualTo = value; return this; } public BigDecimal getQuantityGreaterThan() { return QuantityGreaterThan; } public BM_WorkOrderInputsQuery setQuantityGreaterThan(BigDecimal value) { this.QuantityGreaterThan = value; return this; } public BigDecimal getQuantityLessThan() { return QuantityLessThan; } public BM_WorkOrderInputsQuery setQuantityLessThan(BigDecimal value) { this.QuantityLessThan = value; return this; } public BigDecimal getQuantityLessThanOrEqualTo() { return QuantityLessThanOrEqualTo; } public BM_WorkOrderInputsQuery setQuantityLessThanOrEqualTo(BigDecimal value) { this.QuantityLessThanOrEqualTo = value; return this; } public BigDecimal getQuantityNotEqualTo() { return QuantityNotEqualTo; } public BM_WorkOrderInputsQuery setQuantityNotEqualTo(BigDecimal value) { this.QuantityNotEqualTo = value; return this; } public ArrayList getQuantityBetween() { return QuantityBetween; } public BM_WorkOrderInputsQuery setQuantityBetween(ArrayList value) { this.QuantityBetween = value; return this; } public ArrayList getQuantityIn() { return QuantityIn; } public BM_WorkOrderInputsQuery setQuantityIn(ArrayList value) { this.QuantityIn = value; return this; } public BigDecimal getQuantityOnBackOrder() { return QuantityOnBackOrder; } public BM_WorkOrderInputsQuery setQuantityOnBackOrder(BigDecimal value) { this.QuantityOnBackOrder = value; return this; } public BigDecimal getQuantityOnBackOrderGreaterThanOrEqualTo() { return QuantityOnBackOrderGreaterThanOrEqualTo; } public BM_WorkOrderInputsQuery setQuantityOnBackOrderGreaterThanOrEqualTo(BigDecimal value) { this.QuantityOnBackOrderGreaterThanOrEqualTo = value; return this; } public BigDecimal getQuantityOnBackOrderGreaterThan() { return QuantityOnBackOrderGreaterThan; } public BM_WorkOrderInputsQuery setQuantityOnBackOrderGreaterThan(BigDecimal value) { this.QuantityOnBackOrderGreaterThan = value; return this; } public BigDecimal getQuantityOnBackOrderLessThan() { return QuantityOnBackOrderLessThan; } public BM_WorkOrderInputsQuery setQuantityOnBackOrderLessThan(BigDecimal value) { this.QuantityOnBackOrderLessThan = value; return this; } public BigDecimal getQuantityOnBackOrderLessThanOrEqualTo() { return QuantityOnBackOrderLessThanOrEqualTo; } public BM_WorkOrderInputsQuery setQuantityOnBackOrderLessThanOrEqualTo(BigDecimal value) { this.QuantityOnBackOrderLessThanOrEqualTo = value; return this; } public BigDecimal getQuantityOnBackOrderNotEqualTo() { return QuantityOnBackOrderNotEqualTo; } public BM_WorkOrderInputsQuery setQuantityOnBackOrderNotEqualTo(BigDecimal value) { this.QuantityOnBackOrderNotEqualTo = value; return this; } public ArrayList getQuantityOnBackOrderBetween() { return QuantityOnBackOrderBetween; } public BM_WorkOrderInputsQuery setQuantityOnBackOrderBetween(ArrayList value) { this.QuantityOnBackOrderBetween = value; return this; } public ArrayList getQuantityOnBackOrderIn() { return QuantityOnBackOrderIn; } public BM_WorkOrderInputsQuery setQuantityOnBackOrderIn(ArrayList value) { this.QuantityOnBackOrderIn = value; return this; } public String getNote() { return Note; } public BM_WorkOrderInputsQuery setNote(String value) { this.Note = value; return this; } public String getNoteStartsWith() { return NoteStartsWith; } public BM_WorkOrderInputsQuery setNoteStartsWith(String value) { this.NoteStartsWith = value; return this; } public String getNoteEndsWith() { return NoteEndsWith; } public BM_WorkOrderInputsQuery setNoteEndsWith(String value) { this.NoteEndsWith = value; return this; } public String getNoteContains() { return NoteContains; } public BM_WorkOrderInputsQuery setNoteContains(String value) { this.NoteContains = value; return this; } public String getNoteLike() { return NoteLike; } public BM_WorkOrderInputsQuery setNoteLike(String value) { this.NoteLike = value; return this; } public ArrayList getNoteBetween() { return NoteBetween; } public BM_WorkOrderInputsQuery setNoteBetween(ArrayList value) { this.NoteBetween = value; return this; } public ArrayList getNoteIn() { return NoteIn; } public BM_WorkOrderInputsQuery setNoteIn(ArrayList value) { this.NoteIn = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public BM_WorkOrderInputsQuery setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getLastSavedDateTimeGreaterThanOrEqualTo() { return LastSavedDateTimeGreaterThanOrEqualTo; } public BM_WorkOrderInputsQuery setLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.LastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeGreaterThan() { return LastSavedDateTimeGreaterThan; } public BM_WorkOrderInputsQuery setLastSavedDateTimeGreaterThan(Date value) { this.LastSavedDateTimeGreaterThan = value; return this; } public Date getLastSavedDateTimeLessThan() { return LastSavedDateTimeLessThan; } public BM_WorkOrderInputsQuery setLastSavedDateTimeLessThan(Date value) { this.LastSavedDateTimeLessThan = value; return this; } public Date getLastSavedDateTimeLessThanOrEqualTo() { return LastSavedDateTimeLessThanOrEqualTo; } public BM_WorkOrderInputsQuery setLastSavedDateTimeLessThanOrEqualTo(Date value) { this.LastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeNotEqualTo() { return LastSavedDateTimeNotEqualTo; } public BM_WorkOrderInputsQuery setLastSavedDateTimeNotEqualTo(Date value) { this.LastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getLastSavedDateTimeBetween() { return LastSavedDateTimeBetween; } public BM_WorkOrderInputsQuery setLastSavedDateTimeBetween(ArrayList value) { this.LastSavedDateTimeBetween = value; return this; } public ArrayList getLastSavedDateTimeIn() { return LastSavedDateTimeIn; } public BM_WorkOrderInputsQuery setLastSavedDateTimeIn(ArrayList value) { this.LastSavedDateTimeIn = value; return this; } public ArrayList getRowHash() { return RowHash; } public BM_WorkOrderInputsQuery setRowHash(ArrayList value) { this.RowHash = value; return this; } public String getSubAssembly() { return SubAssembly; } public BM_WorkOrderInputsQuery setSubAssembly(String value) { this.SubAssembly = value; return this; } public String getSubAssemblyStartsWith() { return SubAssemblyStartsWith; } public BM_WorkOrderInputsQuery setSubAssemblyStartsWith(String value) { this.SubAssemblyStartsWith = value; return this; } public String getSubAssemblyEndsWith() { return SubAssemblyEndsWith; } public BM_WorkOrderInputsQuery setSubAssemblyEndsWith(String value) { this.SubAssemblyEndsWith = value; return this; } public String getSubAssemblyContains() { return SubAssemblyContains; } public BM_WorkOrderInputsQuery setSubAssemblyContains(String value) { this.SubAssemblyContains = value; return this; } public String getSubAssemblyLike() { return SubAssemblyLike; } public BM_WorkOrderInputsQuery setSubAssemblyLike(String value) { this.SubAssemblyLike = value; return this; } public ArrayList getSubAssemblyBetween() { return SubAssemblyBetween; } public BM_WorkOrderInputsQuery setSubAssemblyBetween(ArrayList value) { this.SubAssemblyBetween = value; return this; } public ArrayList getSubAssemblyIn() { return SubAssemblyIn; } public BM_WorkOrderInputsQuery setSubAssemblyIn(ArrayList value) { this.SubAssemblyIn = value; return this; } public Short getSubAssemblyExplodePolicy() { return SubAssemblyExplodePolicy; } public BM_WorkOrderInputsQuery setSubAssemblyExplodePolicy(Short value) { this.SubAssemblyExplodePolicy = value; return this; } public Short getSubAssemblyExplodePolicyGreaterThanOrEqualTo() { return SubAssemblyExplodePolicyGreaterThanOrEqualTo; } public BM_WorkOrderInputsQuery setSubAssemblyExplodePolicyGreaterThanOrEqualTo(Short value) { this.SubAssemblyExplodePolicyGreaterThanOrEqualTo = value; return this; } public Short getSubAssemblyExplodePolicyGreaterThan() { return SubAssemblyExplodePolicyGreaterThan; } public BM_WorkOrderInputsQuery setSubAssemblyExplodePolicyGreaterThan(Short value) { this.SubAssemblyExplodePolicyGreaterThan = value; return this; } public Short getSubAssemblyExplodePolicyLessThan() { return SubAssemblyExplodePolicyLessThan; } public BM_WorkOrderInputsQuery setSubAssemblyExplodePolicyLessThan(Short value) { this.SubAssemblyExplodePolicyLessThan = value; return this; } public Short getSubAssemblyExplodePolicyLessThanOrEqualTo() { return SubAssemblyExplodePolicyLessThanOrEqualTo; } public BM_WorkOrderInputsQuery setSubAssemblyExplodePolicyLessThanOrEqualTo(Short value) { this.SubAssemblyExplodePolicyLessThanOrEqualTo = value; return this; } public Short getSubAssemblyExplodePolicyNotEqualTo() { return SubAssemblyExplodePolicyNotEqualTo; } public BM_WorkOrderInputsQuery setSubAssemblyExplodePolicyNotEqualTo(Short value) { this.SubAssemblyExplodePolicyNotEqualTo = value; return this; } public ArrayList getSubAssemblyExplodePolicyBetween() { return SubAssemblyExplodePolicyBetween; } public BM_WorkOrderInputsQuery setSubAssemblyExplodePolicyBetween(ArrayList value) { this.SubAssemblyExplodePolicyBetween = value; return this; } public ArrayList getSubAssemblyExplodePolicyIn() { return SubAssemblyExplodePolicyIn; } public BM_WorkOrderInputsQuery setSubAssemblyExplodePolicyIn(ArrayList value) { this.SubAssemblyExplodePolicyIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class BM_WorkOrderInputWastageDetailsQuery extends QueryDb implements IReturn> { public String RecID = null; public String RecIDStartsWith = null; public String RecIDEndsWith = null; public String RecIDContains = null; public String RecIDLike = null; public ArrayList RecIDBetween = null; public ArrayList RecIDIn = null; public String Parent_RecID = null; public String Parent_RecIDStartsWith = null; public String Parent_RecIDEndsWith = null; public String Parent_RecIDContains = null; public String Parent_RecIDLike = null; public ArrayList Parent_RecIDBetween = null; public ArrayList Parent_RecIDIn = null; public String IN_SOH_LinkID = null; public String IN_SOH_LinkIDStartsWith = null; public String IN_SOH_LinkIDEndsWith = null; public String IN_SOH_LinkIDContains = null; public String IN_SOH_LinkIDLike = null; public ArrayList IN_SOH_LinkIDBetween = null; public ArrayList IN_SOH_LinkIDIn = null; public BigDecimal Cost = null; public BigDecimal CostGreaterThanOrEqualTo = null; public BigDecimal CostGreaterThan = null; public BigDecimal CostLessThan = null; public BigDecimal CostLessThanOrEqualTo = null; public BigDecimal CostNotEqualTo = null; public ArrayList CostBetween = null; public ArrayList CostIn = null; public BigDecimal SpecialPrice = null; public BigDecimal SpecialPriceGreaterThanOrEqualTo = null; public BigDecimal SpecialPriceGreaterThan = null; public BigDecimal SpecialPriceLessThan = null; public BigDecimal SpecialPriceLessThanOrEqualTo = null; public BigDecimal SpecialPriceNotEqualTo = null; public ArrayList SpecialPriceBetween = null; public ArrayList SpecialPriceIn = null; public BigDecimal Quantity = null; public BigDecimal QuantityGreaterThanOrEqualTo = null; public BigDecimal QuantityGreaterThan = null; public BigDecimal QuantityLessThan = null; public BigDecimal QuantityLessThanOrEqualTo = null; public BigDecimal QuantityNotEqualTo = null; public ArrayList QuantityBetween = null; public ArrayList QuantityIn = null; public String SerialNo = null; public String SerialNoStartsWith = null; public String SerialNoEndsWith = null; public String SerialNoContains = null; public String SerialNoLike = null; public ArrayList SerialNoBetween = null; public ArrayList SerialNoIn = null; public Date ExpiryDate = null; public Date ExpiryDateGreaterThanOrEqualTo = null; public Date ExpiryDateGreaterThan = null; public Date ExpiryDateLessThan = null; public Date ExpiryDateLessThanOrEqualTo = null; public Date ExpiryDateNotEqualTo = null; public ArrayList ExpiryDateBetween = null; public ArrayList ExpiryDateIn = null; public String BinLocation = null; public String BinLocationStartsWith = null; public String BinLocationEndsWith = null; public String BinLocationContains = null; public String BinLocationLike = null; public ArrayList BinLocationBetween = null; public ArrayList BinLocationIn = null; public Date LastSavedDateTime = null; public Date LastSavedDateTimeGreaterThanOrEqualTo = null; public Date LastSavedDateTimeGreaterThan = null; public Date LastSavedDateTimeLessThan = null; public Date LastSavedDateTimeLessThanOrEqualTo = null; public Date LastSavedDateTimeNotEqualTo = null; public ArrayList LastSavedDateTimeBetween = null; public ArrayList LastSavedDateTimeIn = null; public ArrayList RowHash = null; public Integer ItemNo = null; public Integer ItemNoGreaterThanOrEqualTo = null; public Integer ItemNoGreaterThan = null; public Integer ItemNoLessThan = null; public Integer ItemNoLessThanOrEqualTo = null; public Integer ItemNoNotEqualTo = null; public ArrayList ItemNoBetween = null; public ArrayList ItemNoIn = null; public String getRecID() { return RecID; } public BM_WorkOrderInputWastageDetailsQuery setRecID(String value) { this.RecID = value; return this; } public String getRecIDStartsWith() { return RecIDStartsWith; } public BM_WorkOrderInputWastageDetailsQuery setRecIDStartsWith(String value) { this.RecIDStartsWith = value; return this; } public String getRecIDEndsWith() { return RecIDEndsWith; } public BM_WorkOrderInputWastageDetailsQuery setRecIDEndsWith(String value) { this.RecIDEndsWith = value; return this; } public String getRecIDContains() { return RecIDContains; } public BM_WorkOrderInputWastageDetailsQuery setRecIDContains(String value) { this.RecIDContains = value; return this; } public String getRecIDLike() { return RecIDLike; } public BM_WorkOrderInputWastageDetailsQuery setRecIDLike(String value) { this.RecIDLike = value; return this; } public ArrayList getRecIDBetween() { return RecIDBetween; } public BM_WorkOrderInputWastageDetailsQuery setRecIDBetween(ArrayList value) { this.RecIDBetween = value; return this; } public ArrayList getRecIDIn() { return RecIDIn; } public BM_WorkOrderInputWastageDetailsQuery setRecIDIn(ArrayList value) { this.RecIDIn = value; return this; } public String getParentRecID() { return Parent_RecID; } public BM_WorkOrderInputWastageDetailsQuery setParentRecID(String value) { this.Parent_RecID = value; return this; } public String getParentRecIDStartsWith() { return Parent_RecIDStartsWith; } public BM_WorkOrderInputWastageDetailsQuery setParentRecIDStartsWith(String value) { this.Parent_RecIDStartsWith = value; return this; } public String getParentRecIDEndsWith() { return Parent_RecIDEndsWith; } public BM_WorkOrderInputWastageDetailsQuery setParentRecIDEndsWith(String value) { this.Parent_RecIDEndsWith = value; return this; } public String getParentRecIDContains() { return Parent_RecIDContains; } public BM_WorkOrderInputWastageDetailsQuery setParentRecIDContains(String value) { this.Parent_RecIDContains = value; return this; } public String getParentRecIDLike() { return Parent_RecIDLike; } public BM_WorkOrderInputWastageDetailsQuery setParentRecIDLike(String value) { this.Parent_RecIDLike = value; return this; } public ArrayList getParentRecIDBetween() { return Parent_RecIDBetween; } public BM_WorkOrderInputWastageDetailsQuery setParentRecIDBetween(ArrayList value) { this.Parent_RecIDBetween = value; return this; } public ArrayList getParentRecIDIn() { return Parent_RecIDIn; } public BM_WorkOrderInputWastageDetailsQuery setParentRecIDIn(ArrayList value) { this.Parent_RecIDIn = value; return this; } public String getInSohLinkID() { return IN_SOH_LinkID; } public BM_WorkOrderInputWastageDetailsQuery setInSohLinkID(String value) { this.IN_SOH_LinkID = value; return this; } public String getInSohLinkIDStartsWith() { return IN_SOH_LinkIDStartsWith; } public BM_WorkOrderInputWastageDetailsQuery setInSohLinkIDStartsWith(String value) { this.IN_SOH_LinkIDStartsWith = value; return this; } public String getInSohLinkIDEndsWith() { return IN_SOH_LinkIDEndsWith; } public BM_WorkOrderInputWastageDetailsQuery setInSohLinkIDEndsWith(String value) { this.IN_SOH_LinkIDEndsWith = value; return this; } public String getInSohLinkIDContains() { return IN_SOH_LinkIDContains; } public BM_WorkOrderInputWastageDetailsQuery setInSohLinkIDContains(String value) { this.IN_SOH_LinkIDContains = value; return this; } public String getInSohLinkIDLike() { return IN_SOH_LinkIDLike; } public BM_WorkOrderInputWastageDetailsQuery setInSohLinkIDLike(String value) { this.IN_SOH_LinkIDLike = value; return this; } public ArrayList getInSohLinkIDBetween() { return IN_SOH_LinkIDBetween; } public BM_WorkOrderInputWastageDetailsQuery setInSohLinkIDBetween(ArrayList value) { this.IN_SOH_LinkIDBetween = value; return this; } public ArrayList getInSohLinkIDIn() { return IN_SOH_LinkIDIn; } public BM_WorkOrderInputWastageDetailsQuery setInSohLinkIDIn(ArrayList value) { this.IN_SOH_LinkIDIn = value; return this; } public BigDecimal getCost() { return Cost; } public BM_WorkOrderInputWastageDetailsQuery setCost(BigDecimal value) { this.Cost = value; return this; } public BigDecimal getCostGreaterThanOrEqualTo() { return CostGreaterThanOrEqualTo; } public BM_WorkOrderInputWastageDetailsQuery setCostGreaterThanOrEqualTo(BigDecimal value) { this.CostGreaterThanOrEqualTo = value; return this; } public BigDecimal getCostGreaterThan() { return CostGreaterThan; } public BM_WorkOrderInputWastageDetailsQuery setCostGreaterThan(BigDecimal value) { this.CostGreaterThan = value; return this; } public BigDecimal getCostLessThan() { return CostLessThan; } public BM_WorkOrderInputWastageDetailsQuery setCostLessThan(BigDecimal value) { this.CostLessThan = value; return this; } public BigDecimal getCostLessThanOrEqualTo() { return CostLessThanOrEqualTo; } public BM_WorkOrderInputWastageDetailsQuery setCostLessThanOrEqualTo(BigDecimal value) { this.CostLessThanOrEqualTo = value; return this; } public BigDecimal getCostNotEqualTo() { return CostNotEqualTo; } public BM_WorkOrderInputWastageDetailsQuery setCostNotEqualTo(BigDecimal value) { this.CostNotEqualTo = value; return this; } public ArrayList getCostBetween() { return CostBetween; } public BM_WorkOrderInputWastageDetailsQuery setCostBetween(ArrayList value) { this.CostBetween = value; return this; } public ArrayList getCostIn() { return CostIn; } public BM_WorkOrderInputWastageDetailsQuery setCostIn(ArrayList value) { this.CostIn = value; return this; } public BigDecimal getSpecialPrice() { return SpecialPrice; } public BM_WorkOrderInputWastageDetailsQuery setSpecialPrice(BigDecimal value) { this.SpecialPrice = value; return this; } public BigDecimal getSpecialPriceGreaterThanOrEqualTo() { return SpecialPriceGreaterThanOrEqualTo; } public BM_WorkOrderInputWastageDetailsQuery setSpecialPriceGreaterThanOrEqualTo(BigDecimal value) { this.SpecialPriceGreaterThanOrEqualTo = value; return this; } public BigDecimal getSpecialPriceGreaterThan() { return SpecialPriceGreaterThan; } public BM_WorkOrderInputWastageDetailsQuery setSpecialPriceGreaterThan(BigDecimal value) { this.SpecialPriceGreaterThan = value; return this; } public BigDecimal getSpecialPriceLessThan() { return SpecialPriceLessThan; } public BM_WorkOrderInputWastageDetailsQuery setSpecialPriceLessThan(BigDecimal value) { this.SpecialPriceLessThan = value; return this; } public BigDecimal getSpecialPriceLessThanOrEqualTo() { return SpecialPriceLessThanOrEqualTo; } public BM_WorkOrderInputWastageDetailsQuery setSpecialPriceLessThanOrEqualTo(BigDecimal value) { this.SpecialPriceLessThanOrEqualTo = value; return this; } public BigDecimal getSpecialPriceNotEqualTo() { return SpecialPriceNotEqualTo; } public BM_WorkOrderInputWastageDetailsQuery setSpecialPriceNotEqualTo(BigDecimal value) { this.SpecialPriceNotEqualTo = value; return this; } public ArrayList getSpecialPriceBetween() { return SpecialPriceBetween; } public BM_WorkOrderInputWastageDetailsQuery setSpecialPriceBetween(ArrayList value) { this.SpecialPriceBetween = value; return this; } public ArrayList getSpecialPriceIn() { return SpecialPriceIn; } public BM_WorkOrderInputWastageDetailsQuery setSpecialPriceIn(ArrayList value) { this.SpecialPriceIn = value; return this; } public BigDecimal getQuantity() { return Quantity; } public BM_WorkOrderInputWastageDetailsQuery setQuantity(BigDecimal value) { this.Quantity = value; return this; } public BigDecimal getQuantityGreaterThanOrEqualTo() { return QuantityGreaterThanOrEqualTo; } public BM_WorkOrderInputWastageDetailsQuery setQuantityGreaterThanOrEqualTo(BigDecimal value) { this.QuantityGreaterThanOrEqualTo = value; return this; } public BigDecimal getQuantityGreaterThan() { return QuantityGreaterThan; } public BM_WorkOrderInputWastageDetailsQuery setQuantityGreaterThan(BigDecimal value) { this.QuantityGreaterThan = value; return this; } public BigDecimal getQuantityLessThan() { return QuantityLessThan; } public BM_WorkOrderInputWastageDetailsQuery setQuantityLessThan(BigDecimal value) { this.QuantityLessThan = value; return this; } public BigDecimal getQuantityLessThanOrEqualTo() { return QuantityLessThanOrEqualTo; } public BM_WorkOrderInputWastageDetailsQuery setQuantityLessThanOrEqualTo(BigDecimal value) { this.QuantityLessThanOrEqualTo = value; return this; } public BigDecimal getQuantityNotEqualTo() { return QuantityNotEqualTo; } public BM_WorkOrderInputWastageDetailsQuery setQuantityNotEqualTo(BigDecimal value) { this.QuantityNotEqualTo = value; return this; } public ArrayList getQuantityBetween() { return QuantityBetween; } public BM_WorkOrderInputWastageDetailsQuery setQuantityBetween(ArrayList value) { this.QuantityBetween = value; return this; } public ArrayList getQuantityIn() { return QuantityIn; } public BM_WorkOrderInputWastageDetailsQuery setQuantityIn(ArrayList value) { this.QuantityIn = value; return this; } public String getSerialNo() { return SerialNo; } public BM_WorkOrderInputWastageDetailsQuery setSerialNo(String value) { this.SerialNo = value; return this; } public String getSerialNoStartsWith() { return SerialNoStartsWith; } public BM_WorkOrderInputWastageDetailsQuery setSerialNoStartsWith(String value) { this.SerialNoStartsWith = value; return this; } public String getSerialNoEndsWith() { return SerialNoEndsWith; } public BM_WorkOrderInputWastageDetailsQuery setSerialNoEndsWith(String value) { this.SerialNoEndsWith = value; return this; } public String getSerialNoContains() { return SerialNoContains; } public BM_WorkOrderInputWastageDetailsQuery setSerialNoContains(String value) { this.SerialNoContains = value; return this; } public String getSerialNoLike() { return SerialNoLike; } public BM_WorkOrderInputWastageDetailsQuery setSerialNoLike(String value) { this.SerialNoLike = value; return this; } public ArrayList getSerialNoBetween() { return SerialNoBetween; } public BM_WorkOrderInputWastageDetailsQuery setSerialNoBetween(ArrayList value) { this.SerialNoBetween = value; return this; } public ArrayList getSerialNoIn() { return SerialNoIn; } public BM_WorkOrderInputWastageDetailsQuery setSerialNoIn(ArrayList value) { this.SerialNoIn = value; return this; } public Date getExpiryDate() { return ExpiryDate; } public BM_WorkOrderInputWastageDetailsQuery setExpiryDate(Date value) { this.ExpiryDate = value; return this; } public Date getExpiryDateGreaterThanOrEqualTo() { return ExpiryDateGreaterThanOrEqualTo; } public BM_WorkOrderInputWastageDetailsQuery setExpiryDateGreaterThanOrEqualTo(Date value) { this.ExpiryDateGreaterThanOrEqualTo = value; return this; } public Date getExpiryDateGreaterThan() { return ExpiryDateGreaterThan; } public BM_WorkOrderInputWastageDetailsQuery setExpiryDateGreaterThan(Date value) { this.ExpiryDateGreaterThan = value; return this; } public Date getExpiryDateLessThan() { return ExpiryDateLessThan; } public BM_WorkOrderInputWastageDetailsQuery setExpiryDateLessThan(Date value) { this.ExpiryDateLessThan = value; return this; } public Date getExpiryDateLessThanOrEqualTo() { return ExpiryDateLessThanOrEqualTo; } public BM_WorkOrderInputWastageDetailsQuery setExpiryDateLessThanOrEqualTo(Date value) { this.ExpiryDateLessThanOrEqualTo = value; return this; } public Date getExpiryDateNotEqualTo() { return ExpiryDateNotEqualTo; } public BM_WorkOrderInputWastageDetailsQuery setExpiryDateNotEqualTo(Date value) { this.ExpiryDateNotEqualTo = value; return this; } public ArrayList getExpiryDateBetween() { return ExpiryDateBetween; } public BM_WorkOrderInputWastageDetailsQuery setExpiryDateBetween(ArrayList value) { this.ExpiryDateBetween = value; return this; } public ArrayList getExpiryDateIn() { return ExpiryDateIn; } public BM_WorkOrderInputWastageDetailsQuery setExpiryDateIn(ArrayList value) { this.ExpiryDateIn = value; return this; } public String getBinLocation() { return BinLocation; } public BM_WorkOrderInputWastageDetailsQuery setBinLocation(String value) { this.BinLocation = value; return this; } public String getBinLocationStartsWith() { return BinLocationStartsWith; } public BM_WorkOrderInputWastageDetailsQuery setBinLocationStartsWith(String value) { this.BinLocationStartsWith = value; return this; } public String getBinLocationEndsWith() { return BinLocationEndsWith; } public BM_WorkOrderInputWastageDetailsQuery setBinLocationEndsWith(String value) { this.BinLocationEndsWith = value; return this; } public String getBinLocationContains() { return BinLocationContains; } public BM_WorkOrderInputWastageDetailsQuery setBinLocationContains(String value) { this.BinLocationContains = value; return this; } public String getBinLocationLike() { return BinLocationLike; } public BM_WorkOrderInputWastageDetailsQuery setBinLocationLike(String value) { this.BinLocationLike = value; return this; } public ArrayList getBinLocationBetween() { return BinLocationBetween; } public BM_WorkOrderInputWastageDetailsQuery setBinLocationBetween(ArrayList value) { this.BinLocationBetween = value; return this; } public ArrayList getBinLocationIn() { return BinLocationIn; } public BM_WorkOrderInputWastageDetailsQuery setBinLocationIn(ArrayList value) { this.BinLocationIn = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public BM_WorkOrderInputWastageDetailsQuery setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getLastSavedDateTimeGreaterThanOrEqualTo() { return LastSavedDateTimeGreaterThanOrEqualTo; } public BM_WorkOrderInputWastageDetailsQuery setLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.LastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeGreaterThan() { return LastSavedDateTimeGreaterThan; } public BM_WorkOrderInputWastageDetailsQuery setLastSavedDateTimeGreaterThan(Date value) { this.LastSavedDateTimeGreaterThan = value; return this; } public Date getLastSavedDateTimeLessThan() { return LastSavedDateTimeLessThan; } public BM_WorkOrderInputWastageDetailsQuery setLastSavedDateTimeLessThan(Date value) { this.LastSavedDateTimeLessThan = value; return this; } public Date getLastSavedDateTimeLessThanOrEqualTo() { return LastSavedDateTimeLessThanOrEqualTo; } public BM_WorkOrderInputWastageDetailsQuery setLastSavedDateTimeLessThanOrEqualTo(Date value) { this.LastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeNotEqualTo() { return LastSavedDateTimeNotEqualTo; } public BM_WorkOrderInputWastageDetailsQuery setLastSavedDateTimeNotEqualTo(Date value) { this.LastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getLastSavedDateTimeBetween() { return LastSavedDateTimeBetween; } public BM_WorkOrderInputWastageDetailsQuery setLastSavedDateTimeBetween(ArrayList value) { this.LastSavedDateTimeBetween = value; return this; } public ArrayList getLastSavedDateTimeIn() { return LastSavedDateTimeIn; } public BM_WorkOrderInputWastageDetailsQuery setLastSavedDateTimeIn(ArrayList value) { this.LastSavedDateTimeIn = value; return this; } public ArrayList getRowHash() { return RowHash; } public BM_WorkOrderInputWastageDetailsQuery setRowHash(ArrayList value) { this.RowHash = value; return this; } public Integer getItemNo() { return ItemNo; } public BM_WorkOrderInputWastageDetailsQuery setItemNo(Integer value) { this.ItemNo = value; return this; } public Integer getItemNoGreaterThanOrEqualTo() { return ItemNoGreaterThanOrEqualTo; } public BM_WorkOrderInputWastageDetailsQuery setItemNoGreaterThanOrEqualTo(Integer value) { this.ItemNoGreaterThanOrEqualTo = value; return this; } public Integer getItemNoGreaterThan() { return ItemNoGreaterThan; } public BM_WorkOrderInputWastageDetailsQuery setItemNoGreaterThan(Integer value) { this.ItemNoGreaterThan = value; return this; } public Integer getItemNoLessThan() { return ItemNoLessThan; } public BM_WorkOrderInputWastageDetailsQuery setItemNoLessThan(Integer value) { this.ItemNoLessThan = value; return this; } public Integer getItemNoLessThanOrEqualTo() { return ItemNoLessThanOrEqualTo; } public BM_WorkOrderInputWastageDetailsQuery setItemNoLessThanOrEqualTo(Integer value) { this.ItemNoLessThanOrEqualTo = value; return this; } public Integer getItemNoNotEqualTo() { return ItemNoNotEqualTo; } public BM_WorkOrderInputWastageDetailsQuery setItemNoNotEqualTo(Integer value) { this.ItemNoNotEqualTo = value; return this; } public ArrayList getItemNoBetween() { return ItemNoBetween; } public BM_WorkOrderInputWastageDetailsQuery setItemNoBetween(ArrayList value) { this.ItemNoBetween = value; return this; } public ArrayList getItemNoIn() { return ItemNoIn; } public BM_WorkOrderInputWastageDetailsQuery setItemNoIn(ArrayList value) { this.ItemNoIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class BM_WorkOrderInstructionCustomFieldsQuery extends QueryDb implements IReturn> { public String RecID = null; public String RecIDStartsWith = null; public String RecIDEndsWith = null; public String RecIDContains = null; public String RecIDLike = null; public ArrayList RecIDBetween = null; public ArrayList RecIDIn = null; public String SettingName = null; public String SettingNameStartsWith = null; public String SettingNameEndsWith = null; public String SettingNameContains = null; public String SettingNameLike = null; public ArrayList SettingNameBetween = null; public ArrayList SettingNameIn = null; public String SettingDescription = null; public String SettingDescriptionStartsWith = null; public String SettingDescriptionEndsWith = null; public String SettingDescriptionContains = null; public String SettingDescriptionLike = null; public ArrayList SettingDescriptionBetween = null; public ArrayList SettingDescriptionIn = null; public Integer CellType = null; public Integer CellTypeGreaterThanOrEqualTo = null; public Integer CellTypeGreaterThan = null; public Integer CellTypeLessThan = null; public Integer CellTypeLessThanOrEqualTo = null; public Integer CellTypeNotEqualTo = null; public ArrayList CellTypeBetween = null; public ArrayList CellTypeIn = null; public String FieldParameter = null; public String FieldParameterStartsWith = null; public String FieldParameterEndsWith = null; public String FieldParameterContains = null; public String FieldParameterLike = null; public ArrayList FieldParameterBetween = null; public ArrayList FieldParameterIn = null; public UUID SY_Plugin_RecID = null; public ArrayList SY_Plugin_RecIDIn = null; public Date LastSavedDateTime = null; public Date LastSavedDateTimeGreaterThanOrEqualTo = null; public Date LastSavedDateTimeGreaterThan = null; public Date LastSavedDateTimeLessThan = null; public Date LastSavedDateTimeLessThanOrEqualTo = null; public Date LastSavedDateTimeNotEqualTo = null; public ArrayList LastSavedDateTimeBetween = null; public ArrayList LastSavedDateTimeIn = null; public Integer DisplayOrder = null; public Integer DisplayOrderGreaterThanOrEqualTo = null; public Integer DisplayOrderGreaterThan = null; public Integer DisplayOrderLessThan = null; public Integer DisplayOrderLessThanOrEqualTo = null; public Integer DisplayOrderNotEqualTo = null; public ArrayList DisplayOrderBetween = null; public ArrayList DisplayOrderIn = null; public String getRecID() { return RecID; } public BM_WorkOrderInstructionCustomFieldsQuery setRecID(String value) { this.RecID = value; return this; } public String getRecIDStartsWith() { return RecIDStartsWith; } public BM_WorkOrderInstructionCustomFieldsQuery setRecIDStartsWith(String value) { this.RecIDStartsWith = value; return this; } public String getRecIDEndsWith() { return RecIDEndsWith; } public BM_WorkOrderInstructionCustomFieldsQuery setRecIDEndsWith(String value) { this.RecIDEndsWith = value; return this; } public String getRecIDContains() { return RecIDContains; } public BM_WorkOrderInstructionCustomFieldsQuery setRecIDContains(String value) { this.RecIDContains = value; return this; } public String getRecIDLike() { return RecIDLike; } public BM_WorkOrderInstructionCustomFieldsQuery setRecIDLike(String value) { this.RecIDLike = value; return this; } public ArrayList getRecIDBetween() { return RecIDBetween; } public BM_WorkOrderInstructionCustomFieldsQuery setRecIDBetween(ArrayList value) { this.RecIDBetween = value; return this; } public ArrayList getRecIDIn() { return RecIDIn; } public BM_WorkOrderInstructionCustomFieldsQuery setRecIDIn(ArrayList value) { this.RecIDIn = value; return this; } public String getSettingName() { return SettingName; } public BM_WorkOrderInstructionCustomFieldsQuery setSettingName(String value) { this.SettingName = value; return this; } public String getSettingNameStartsWith() { return SettingNameStartsWith; } public BM_WorkOrderInstructionCustomFieldsQuery setSettingNameStartsWith(String value) { this.SettingNameStartsWith = value; return this; } public String getSettingNameEndsWith() { return SettingNameEndsWith; } public BM_WorkOrderInstructionCustomFieldsQuery setSettingNameEndsWith(String value) { this.SettingNameEndsWith = value; return this; } public String getSettingNameContains() { return SettingNameContains; } public BM_WorkOrderInstructionCustomFieldsQuery setSettingNameContains(String value) { this.SettingNameContains = value; return this; } public String getSettingNameLike() { return SettingNameLike; } public BM_WorkOrderInstructionCustomFieldsQuery setSettingNameLike(String value) { this.SettingNameLike = value; return this; } public ArrayList getSettingNameBetween() { return SettingNameBetween; } public BM_WorkOrderInstructionCustomFieldsQuery setSettingNameBetween(ArrayList value) { this.SettingNameBetween = value; return this; } public ArrayList getSettingNameIn() { return SettingNameIn; } public BM_WorkOrderInstructionCustomFieldsQuery setSettingNameIn(ArrayList value) { this.SettingNameIn = value; return this; } public String getSettingDescription() { return SettingDescription; } public BM_WorkOrderInstructionCustomFieldsQuery setSettingDescription(String value) { this.SettingDescription = value; return this; } public String getSettingDescriptionStartsWith() { return SettingDescriptionStartsWith; } public BM_WorkOrderInstructionCustomFieldsQuery setSettingDescriptionStartsWith(String value) { this.SettingDescriptionStartsWith = value; return this; } public String getSettingDescriptionEndsWith() { return SettingDescriptionEndsWith; } public BM_WorkOrderInstructionCustomFieldsQuery setSettingDescriptionEndsWith(String value) { this.SettingDescriptionEndsWith = value; return this; } public String getSettingDescriptionContains() { return SettingDescriptionContains; } public BM_WorkOrderInstructionCustomFieldsQuery setSettingDescriptionContains(String value) { this.SettingDescriptionContains = value; return this; } public String getSettingDescriptionLike() { return SettingDescriptionLike; } public BM_WorkOrderInstructionCustomFieldsQuery setSettingDescriptionLike(String value) { this.SettingDescriptionLike = value; return this; } public ArrayList getSettingDescriptionBetween() { return SettingDescriptionBetween; } public BM_WorkOrderInstructionCustomFieldsQuery setSettingDescriptionBetween(ArrayList value) { this.SettingDescriptionBetween = value; return this; } public ArrayList getSettingDescriptionIn() { return SettingDescriptionIn; } public BM_WorkOrderInstructionCustomFieldsQuery setSettingDescriptionIn(ArrayList value) { this.SettingDescriptionIn = value; return this; } public Integer getCellType() { return CellType; } public BM_WorkOrderInstructionCustomFieldsQuery setCellType(Integer value) { this.CellType = value; return this; } public Integer getCellTypeGreaterThanOrEqualTo() { return CellTypeGreaterThanOrEqualTo; } public BM_WorkOrderInstructionCustomFieldsQuery setCellTypeGreaterThanOrEqualTo(Integer value) { this.CellTypeGreaterThanOrEqualTo = value; return this; } public Integer getCellTypeGreaterThan() { return CellTypeGreaterThan; } public BM_WorkOrderInstructionCustomFieldsQuery setCellTypeGreaterThan(Integer value) { this.CellTypeGreaterThan = value; return this; } public Integer getCellTypeLessThan() { return CellTypeLessThan; } public BM_WorkOrderInstructionCustomFieldsQuery setCellTypeLessThan(Integer value) { this.CellTypeLessThan = value; return this; } public Integer getCellTypeLessThanOrEqualTo() { return CellTypeLessThanOrEqualTo; } public BM_WorkOrderInstructionCustomFieldsQuery setCellTypeLessThanOrEqualTo(Integer value) { this.CellTypeLessThanOrEqualTo = value; return this; } public Integer getCellTypeNotEqualTo() { return CellTypeNotEqualTo; } public BM_WorkOrderInstructionCustomFieldsQuery setCellTypeNotEqualTo(Integer value) { this.CellTypeNotEqualTo = value; return this; } public ArrayList getCellTypeBetween() { return CellTypeBetween; } public BM_WorkOrderInstructionCustomFieldsQuery setCellTypeBetween(ArrayList value) { this.CellTypeBetween = value; return this; } public ArrayList getCellTypeIn() { return CellTypeIn; } public BM_WorkOrderInstructionCustomFieldsQuery setCellTypeIn(ArrayList value) { this.CellTypeIn = value; return this; } public String getFieldParameter() { return FieldParameter; } public BM_WorkOrderInstructionCustomFieldsQuery setFieldParameter(String value) { this.FieldParameter = value; return this; } public String getFieldParameterStartsWith() { return FieldParameterStartsWith; } public BM_WorkOrderInstructionCustomFieldsQuery setFieldParameterStartsWith(String value) { this.FieldParameterStartsWith = value; return this; } public String getFieldParameterEndsWith() { return FieldParameterEndsWith; } public BM_WorkOrderInstructionCustomFieldsQuery setFieldParameterEndsWith(String value) { this.FieldParameterEndsWith = value; return this; } public String getFieldParameterContains() { return FieldParameterContains; } public BM_WorkOrderInstructionCustomFieldsQuery setFieldParameterContains(String value) { this.FieldParameterContains = value; return this; } public String getFieldParameterLike() { return FieldParameterLike; } public BM_WorkOrderInstructionCustomFieldsQuery setFieldParameterLike(String value) { this.FieldParameterLike = value; return this; } public ArrayList getFieldParameterBetween() { return FieldParameterBetween; } public BM_WorkOrderInstructionCustomFieldsQuery setFieldParameterBetween(ArrayList value) { this.FieldParameterBetween = value; return this; } public ArrayList getFieldParameterIn() { return FieldParameterIn; } public BM_WorkOrderInstructionCustomFieldsQuery setFieldParameterIn(ArrayList value) { this.FieldParameterIn = value; return this; } public UUID getSyPluginRecID() { return SY_Plugin_RecID; } public BM_WorkOrderInstructionCustomFieldsQuery setSyPluginRecID(UUID value) { this.SY_Plugin_RecID = value; return this; } public ArrayList getSyPluginRecIDIn() { return SY_Plugin_RecIDIn; } public BM_WorkOrderInstructionCustomFieldsQuery setSyPluginRecIDIn(ArrayList value) { this.SY_Plugin_RecIDIn = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public BM_WorkOrderInstructionCustomFieldsQuery setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getLastSavedDateTimeGreaterThanOrEqualTo() { return LastSavedDateTimeGreaterThanOrEqualTo; } public BM_WorkOrderInstructionCustomFieldsQuery setLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.LastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeGreaterThan() { return LastSavedDateTimeGreaterThan; } public BM_WorkOrderInstructionCustomFieldsQuery setLastSavedDateTimeGreaterThan(Date value) { this.LastSavedDateTimeGreaterThan = value; return this; } public Date getLastSavedDateTimeLessThan() { return LastSavedDateTimeLessThan; } public BM_WorkOrderInstructionCustomFieldsQuery setLastSavedDateTimeLessThan(Date value) { this.LastSavedDateTimeLessThan = value; return this; } public Date getLastSavedDateTimeLessThanOrEqualTo() { return LastSavedDateTimeLessThanOrEqualTo; } public BM_WorkOrderInstructionCustomFieldsQuery setLastSavedDateTimeLessThanOrEqualTo(Date value) { this.LastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeNotEqualTo() { return LastSavedDateTimeNotEqualTo; } public BM_WorkOrderInstructionCustomFieldsQuery setLastSavedDateTimeNotEqualTo(Date value) { this.LastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getLastSavedDateTimeBetween() { return LastSavedDateTimeBetween; } public BM_WorkOrderInstructionCustomFieldsQuery setLastSavedDateTimeBetween(ArrayList value) { this.LastSavedDateTimeBetween = value; return this; } public ArrayList getLastSavedDateTimeIn() { return LastSavedDateTimeIn; } public BM_WorkOrderInstructionCustomFieldsQuery setLastSavedDateTimeIn(ArrayList value) { this.LastSavedDateTimeIn = value; return this; } public Integer getDisplayOrder() { return DisplayOrder; } public BM_WorkOrderInstructionCustomFieldsQuery setDisplayOrder(Integer value) { this.DisplayOrder = value; return this; } public Integer getDisplayOrderGreaterThanOrEqualTo() { return DisplayOrderGreaterThanOrEqualTo; } public BM_WorkOrderInstructionCustomFieldsQuery setDisplayOrderGreaterThanOrEqualTo(Integer value) { this.DisplayOrderGreaterThanOrEqualTo = value; return this; } public Integer getDisplayOrderGreaterThan() { return DisplayOrderGreaterThan; } public BM_WorkOrderInstructionCustomFieldsQuery setDisplayOrderGreaterThan(Integer value) { this.DisplayOrderGreaterThan = value; return this; } public Integer getDisplayOrderLessThan() { return DisplayOrderLessThan; } public BM_WorkOrderInstructionCustomFieldsQuery setDisplayOrderLessThan(Integer value) { this.DisplayOrderLessThan = value; return this; } public Integer getDisplayOrderLessThanOrEqualTo() { return DisplayOrderLessThanOrEqualTo; } public BM_WorkOrderInstructionCustomFieldsQuery setDisplayOrderLessThanOrEqualTo(Integer value) { this.DisplayOrderLessThanOrEqualTo = value; return this; } public Integer getDisplayOrderNotEqualTo() { return DisplayOrderNotEqualTo; } public BM_WorkOrderInstructionCustomFieldsQuery setDisplayOrderNotEqualTo(Integer value) { this.DisplayOrderNotEqualTo = value; return this; } public ArrayList getDisplayOrderBetween() { return DisplayOrderBetween; } public BM_WorkOrderInstructionCustomFieldsQuery setDisplayOrderBetween(ArrayList value) { this.DisplayOrderBetween = value; return this; } public ArrayList getDisplayOrderIn() { return DisplayOrderIn; } public BM_WorkOrderInstructionCustomFieldsQuery setDisplayOrderIn(ArrayList value) { this.DisplayOrderIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class BM_WorkOrderInstructionCustomValuesQuery extends QueryDb implements IReturn> { public String RecID = null; public String RecIDStartsWith = null; public String RecIDEndsWith = null; public String RecIDContains = null; public String RecIDLike = null; public ArrayList RecIDBetween = null; public ArrayList RecIDIn = null; public String BM_WorkOrderInstructions_RecID = null; public String BM_WorkOrderInstructions_RecIDStartsWith = null; public String BM_WorkOrderInstructions_RecIDEndsWith = null; public String BM_WorkOrderInstructions_RecIDContains = null; public String BM_WorkOrderInstructions_RecIDLike = null; public ArrayList BM_WorkOrderInstructions_RecIDBetween = null; public ArrayList BM_WorkOrderInstructions_RecIDIn = null; public String BM_WorkOrderInstructionCustomFields_RecID = null; public String BM_WorkOrderInstructionCustomFields_RecIDStartsWith = null; public String BM_WorkOrderInstructionCustomFields_RecIDEndsWith = null; public String BM_WorkOrderInstructionCustomFields_RecIDContains = null; public String BM_WorkOrderInstructionCustomFields_RecIDLike = null; public ArrayList BM_WorkOrderInstructionCustomFields_RecIDBetween = null; public ArrayList BM_WorkOrderInstructionCustomFields_RecIDIn = null; public String Contents = null; public String ContentsStartsWith = null; public String ContentsEndsWith = null; public String ContentsContains = null; public String ContentsLike = null; public ArrayList ContentsBetween = null; public ArrayList ContentsIn = null; public Date LastSavedDateTime = null; public Date LastSavedDateTimeGreaterThanOrEqualTo = null; public Date LastSavedDateTimeGreaterThan = null; public Date LastSavedDateTimeLessThan = null; public Date LastSavedDateTimeLessThanOrEqualTo = null; public Date LastSavedDateTimeNotEqualTo = null; public ArrayList LastSavedDateTimeBetween = null; public ArrayList LastSavedDateTimeIn = null; public String getRecID() { return RecID; } public BM_WorkOrderInstructionCustomValuesQuery setRecID(String value) { this.RecID = value; return this; } public String getRecIDStartsWith() { return RecIDStartsWith; } public BM_WorkOrderInstructionCustomValuesQuery setRecIDStartsWith(String value) { this.RecIDStartsWith = value; return this; } public String getRecIDEndsWith() { return RecIDEndsWith; } public BM_WorkOrderInstructionCustomValuesQuery setRecIDEndsWith(String value) { this.RecIDEndsWith = value; return this; } public String getRecIDContains() { return RecIDContains; } public BM_WorkOrderInstructionCustomValuesQuery setRecIDContains(String value) { this.RecIDContains = value; return this; } public String getRecIDLike() { return RecIDLike; } public BM_WorkOrderInstructionCustomValuesQuery setRecIDLike(String value) { this.RecIDLike = value; return this; } public ArrayList getRecIDBetween() { return RecIDBetween; } public BM_WorkOrderInstructionCustomValuesQuery setRecIDBetween(ArrayList value) { this.RecIDBetween = value; return this; } public ArrayList getRecIDIn() { return RecIDIn; } public BM_WorkOrderInstructionCustomValuesQuery setRecIDIn(ArrayList value) { this.RecIDIn = value; return this; } public String getBmWorkOrderInstructionsRecID() { return BM_WorkOrderInstructions_RecID; } public BM_WorkOrderInstructionCustomValuesQuery setBmWorkOrderInstructionsRecID(String value) { this.BM_WorkOrderInstructions_RecID = value; return this; } public String getBmWorkOrderInstructionsRecIDStartsWith() { return BM_WorkOrderInstructions_RecIDStartsWith; } public BM_WorkOrderInstructionCustomValuesQuery setBmWorkOrderInstructionsRecIDStartsWith(String value) { this.BM_WorkOrderInstructions_RecIDStartsWith = value; return this; } public String getBmWorkOrderInstructionsRecIDEndsWith() { return BM_WorkOrderInstructions_RecIDEndsWith; } public BM_WorkOrderInstructionCustomValuesQuery setBmWorkOrderInstructionsRecIDEndsWith(String value) { this.BM_WorkOrderInstructions_RecIDEndsWith = value; return this; } public String getBmWorkOrderInstructionsRecIDContains() { return BM_WorkOrderInstructions_RecIDContains; } public BM_WorkOrderInstructionCustomValuesQuery setBmWorkOrderInstructionsRecIDContains(String value) { this.BM_WorkOrderInstructions_RecIDContains = value; return this; } public String getBmWorkOrderInstructionsRecIDLike() { return BM_WorkOrderInstructions_RecIDLike; } public BM_WorkOrderInstructionCustomValuesQuery setBmWorkOrderInstructionsRecIDLike(String value) { this.BM_WorkOrderInstructions_RecIDLike = value; return this; } public ArrayList getBmWorkOrderInstructionsRecIDBetween() { return BM_WorkOrderInstructions_RecIDBetween; } public BM_WorkOrderInstructionCustomValuesQuery setBmWorkOrderInstructionsRecIDBetween(ArrayList value) { this.BM_WorkOrderInstructions_RecIDBetween = value; return this; } public ArrayList getBmWorkOrderInstructionsRecIDIn() { return BM_WorkOrderInstructions_RecIDIn; } public BM_WorkOrderInstructionCustomValuesQuery setBmWorkOrderInstructionsRecIDIn(ArrayList value) { this.BM_WorkOrderInstructions_RecIDIn = value; return this; } public String getBmWorkOrderInstructionCustomFieldsRecID() { return BM_WorkOrderInstructionCustomFields_RecID; } public BM_WorkOrderInstructionCustomValuesQuery setBmWorkOrderInstructionCustomFieldsRecID(String value) { this.BM_WorkOrderInstructionCustomFields_RecID = value; return this; } public String getBmWorkOrderInstructionCustomFieldsRecIDStartsWith() { return BM_WorkOrderInstructionCustomFields_RecIDStartsWith; } public BM_WorkOrderInstructionCustomValuesQuery setBmWorkOrderInstructionCustomFieldsRecIDStartsWith(String value) { this.BM_WorkOrderInstructionCustomFields_RecIDStartsWith = value; return this; } public String getBmWorkOrderInstructionCustomFieldsRecIDEndsWith() { return BM_WorkOrderInstructionCustomFields_RecIDEndsWith; } public BM_WorkOrderInstructionCustomValuesQuery setBmWorkOrderInstructionCustomFieldsRecIDEndsWith(String value) { this.BM_WorkOrderInstructionCustomFields_RecIDEndsWith = value; return this; } public String getBmWorkOrderInstructionCustomFieldsRecIDContains() { return BM_WorkOrderInstructionCustomFields_RecIDContains; } public BM_WorkOrderInstructionCustomValuesQuery setBmWorkOrderInstructionCustomFieldsRecIDContains(String value) { this.BM_WorkOrderInstructionCustomFields_RecIDContains = value; return this; } public String getBmWorkOrderInstructionCustomFieldsRecIDLike() { return BM_WorkOrderInstructionCustomFields_RecIDLike; } public BM_WorkOrderInstructionCustomValuesQuery setBmWorkOrderInstructionCustomFieldsRecIDLike(String value) { this.BM_WorkOrderInstructionCustomFields_RecIDLike = value; return this; } public ArrayList getBmWorkOrderInstructionCustomFieldsRecIDBetween() { return BM_WorkOrderInstructionCustomFields_RecIDBetween; } public BM_WorkOrderInstructionCustomValuesQuery setBmWorkOrderInstructionCustomFieldsRecIDBetween(ArrayList value) { this.BM_WorkOrderInstructionCustomFields_RecIDBetween = value; return this; } public ArrayList getBmWorkOrderInstructionCustomFieldsRecIDIn() { return BM_WorkOrderInstructionCustomFields_RecIDIn; } public BM_WorkOrderInstructionCustomValuesQuery setBmWorkOrderInstructionCustomFieldsRecIDIn(ArrayList value) { this.BM_WorkOrderInstructionCustomFields_RecIDIn = value; return this; } public String getContents() { return Contents; } public BM_WorkOrderInstructionCustomValuesQuery setContents(String value) { this.Contents = value; return this; } public String getContentsStartsWith() { return ContentsStartsWith; } public BM_WorkOrderInstructionCustomValuesQuery setContentsStartsWith(String value) { this.ContentsStartsWith = value; return this; } public String getContentsEndsWith() { return ContentsEndsWith; } public BM_WorkOrderInstructionCustomValuesQuery setContentsEndsWith(String value) { this.ContentsEndsWith = value; return this; } public String getContentsContains() { return ContentsContains; } public BM_WorkOrderInstructionCustomValuesQuery setContentsContains(String value) { this.ContentsContains = value; return this; } public String getContentsLike() { return ContentsLike; } public BM_WorkOrderInstructionCustomValuesQuery setContentsLike(String value) { this.ContentsLike = value; return this; } public ArrayList getContentsBetween() { return ContentsBetween; } public BM_WorkOrderInstructionCustomValuesQuery setContentsBetween(ArrayList value) { this.ContentsBetween = value; return this; } public ArrayList getContentsIn() { return ContentsIn; } public BM_WorkOrderInstructionCustomValuesQuery setContentsIn(ArrayList value) { this.ContentsIn = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public BM_WorkOrderInstructionCustomValuesQuery setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getLastSavedDateTimeGreaterThanOrEqualTo() { return LastSavedDateTimeGreaterThanOrEqualTo; } public BM_WorkOrderInstructionCustomValuesQuery setLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.LastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeGreaterThan() { return LastSavedDateTimeGreaterThan; } public BM_WorkOrderInstructionCustomValuesQuery setLastSavedDateTimeGreaterThan(Date value) { this.LastSavedDateTimeGreaterThan = value; return this; } public Date getLastSavedDateTimeLessThan() { return LastSavedDateTimeLessThan; } public BM_WorkOrderInstructionCustomValuesQuery setLastSavedDateTimeLessThan(Date value) { this.LastSavedDateTimeLessThan = value; return this; } public Date getLastSavedDateTimeLessThanOrEqualTo() { return LastSavedDateTimeLessThanOrEqualTo; } public BM_WorkOrderInstructionCustomValuesQuery setLastSavedDateTimeLessThanOrEqualTo(Date value) { this.LastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeNotEqualTo() { return LastSavedDateTimeNotEqualTo; } public BM_WorkOrderInstructionCustomValuesQuery setLastSavedDateTimeNotEqualTo(Date value) { this.LastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getLastSavedDateTimeBetween() { return LastSavedDateTimeBetween; } public BM_WorkOrderInstructionCustomValuesQuery setLastSavedDateTimeBetween(ArrayList value) { this.LastSavedDateTimeBetween = value; return this; } public ArrayList getLastSavedDateTimeIn() { return LastSavedDateTimeIn; } public BM_WorkOrderInstructionCustomValuesQuery setLastSavedDateTimeIn(ArrayList value) { this.LastSavedDateTimeIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class BM_WorkOrderInstructionsQuery extends QueryDb implements IReturn> { public String RecID = null; public String RecIDStartsWith = null; public String RecIDEndsWith = null; public String RecIDContains = null; public String RecIDLike = null; public ArrayList RecIDBetween = null; public ArrayList RecIDIn = null; public String BM_WorkOrderStages_RecID = null; public String BM_WorkOrderStages_RecIDStartsWith = null; public String BM_WorkOrderStages_RecIDEndsWith = null; public String BM_WorkOrderStages_RecIDContains = null; public String BM_WorkOrderStages_RecIDLike = null; public ArrayList BM_WorkOrderStages_RecIDBetween = null; public ArrayList BM_WorkOrderStages_RecIDIn = null; public Integer ItemNo = null; public Integer ItemNoGreaterThanOrEqualTo = null; public Integer ItemNoGreaterThan = null; public Integer ItemNoLessThan = null; public Integer ItemNoLessThanOrEqualTo = null; public Integer ItemNoNotEqualTo = null; public ArrayList ItemNoBetween = null; public ArrayList ItemNoIn = null; public String InstructionText = null; public String InstructionTextStartsWith = null; public String InstructionTextEndsWith = null; public String InstructionTextContains = null; public String InstructionTextLike = null; public ArrayList InstructionTextBetween = null; public ArrayList InstructionTextIn = null; public ArrayList RowHash = null; public String getRecID() { return RecID; } public BM_WorkOrderInstructionsQuery setRecID(String value) { this.RecID = value; return this; } public String getRecIDStartsWith() { return RecIDStartsWith; } public BM_WorkOrderInstructionsQuery setRecIDStartsWith(String value) { this.RecIDStartsWith = value; return this; } public String getRecIDEndsWith() { return RecIDEndsWith; } public BM_WorkOrderInstructionsQuery setRecIDEndsWith(String value) { this.RecIDEndsWith = value; return this; } public String getRecIDContains() { return RecIDContains; } public BM_WorkOrderInstructionsQuery setRecIDContains(String value) { this.RecIDContains = value; return this; } public String getRecIDLike() { return RecIDLike; } public BM_WorkOrderInstructionsQuery setRecIDLike(String value) { this.RecIDLike = value; return this; } public ArrayList getRecIDBetween() { return RecIDBetween; } public BM_WorkOrderInstructionsQuery setRecIDBetween(ArrayList value) { this.RecIDBetween = value; return this; } public ArrayList getRecIDIn() { return RecIDIn; } public BM_WorkOrderInstructionsQuery setRecIDIn(ArrayList value) { this.RecIDIn = value; return this; } public String getBmWorkOrderStagesRecID() { return BM_WorkOrderStages_RecID; } public BM_WorkOrderInstructionsQuery setBmWorkOrderStagesRecID(String value) { this.BM_WorkOrderStages_RecID = value; return this; } public String getBmWorkOrderStagesRecIDStartsWith() { return BM_WorkOrderStages_RecIDStartsWith; } public BM_WorkOrderInstructionsQuery setBmWorkOrderStagesRecIDStartsWith(String value) { this.BM_WorkOrderStages_RecIDStartsWith = value; return this; } public String getBmWorkOrderStagesRecIDEndsWith() { return BM_WorkOrderStages_RecIDEndsWith; } public BM_WorkOrderInstructionsQuery setBmWorkOrderStagesRecIDEndsWith(String value) { this.BM_WorkOrderStages_RecIDEndsWith = value; return this; } public String getBmWorkOrderStagesRecIDContains() { return BM_WorkOrderStages_RecIDContains; } public BM_WorkOrderInstructionsQuery setBmWorkOrderStagesRecIDContains(String value) { this.BM_WorkOrderStages_RecIDContains = value; return this; } public String getBmWorkOrderStagesRecIDLike() { return BM_WorkOrderStages_RecIDLike; } public BM_WorkOrderInstructionsQuery setBmWorkOrderStagesRecIDLike(String value) { this.BM_WorkOrderStages_RecIDLike = value; return this; } public ArrayList getBmWorkOrderStagesRecIDBetween() { return BM_WorkOrderStages_RecIDBetween; } public BM_WorkOrderInstructionsQuery setBmWorkOrderStagesRecIDBetween(ArrayList value) { this.BM_WorkOrderStages_RecIDBetween = value; return this; } public ArrayList getBmWorkOrderStagesRecIDIn() { return BM_WorkOrderStages_RecIDIn; } public BM_WorkOrderInstructionsQuery setBmWorkOrderStagesRecIDIn(ArrayList value) { this.BM_WorkOrderStages_RecIDIn = value; return this; } public Integer getItemNo() { return ItemNo; } public BM_WorkOrderInstructionsQuery setItemNo(Integer value) { this.ItemNo = value; return this; } public Integer getItemNoGreaterThanOrEqualTo() { return ItemNoGreaterThanOrEqualTo; } public BM_WorkOrderInstructionsQuery setItemNoGreaterThanOrEqualTo(Integer value) { this.ItemNoGreaterThanOrEqualTo = value; return this; } public Integer getItemNoGreaterThan() { return ItemNoGreaterThan; } public BM_WorkOrderInstructionsQuery setItemNoGreaterThan(Integer value) { this.ItemNoGreaterThan = value; return this; } public Integer getItemNoLessThan() { return ItemNoLessThan; } public BM_WorkOrderInstructionsQuery setItemNoLessThan(Integer value) { this.ItemNoLessThan = value; return this; } public Integer getItemNoLessThanOrEqualTo() { return ItemNoLessThanOrEqualTo; } public BM_WorkOrderInstructionsQuery setItemNoLessThanOrEqualTo(Integer value) { this.ItemNoLessThanOrEqualTo = value; return this; } public Integer getItemNoNotEqualTo() { return ItemNoNotEqualTo; } public BM_WorkOrderInstructionsQuery setItemNoNotEqualTo(Integer value) { this.ItemNoNotEqualTo = value; return this; } public ArrayList getItemNoBetween() { return ItemNoBetween; } public BM_WorkOrderInstructionsQuery setItemNoBetween(ArrayList value) { this.ItemNoBetween = value; return this; } public ArrayList getItemNoIn() { return ItemNoIn; } public BM_WorkOrderInstructionsQuery setItemNoIn(ArrayList value) { this.ItemNoIn = value; return this; } public String getInstructionText() { return InstructionText; } public BM_WorkOrderInstructionsQuery setInstructionText(String value) { this.InstructionText = value; return this; } public String getInstructionTextStartsWith() { return InstructionTextStartsWith; } public BM_WorkOrderInstructionsQuery setInstructionTextStartsWith(String value) { this.InstructionTextStartsWith = value; return this; } public String getInstructionTextEndsWith() { return InstructionTextEndsWith; } public BM_WorkOrderInstructionsQuery setInstructionTextEndsWith(String value) { this.InstructionTextEndsWith = value; return this; } public String getInstructionTextContains() { return InstructionTextContains; } public BM_WorkOrderInstructionsQuery setInstructionTextContains(String value) { this.InstructionTextContains = value; return this; } public String getInstructionTextLike() { return InstructionTextLike; } public BM_WorkOrderInstructionsQuery setInstructionTextLike(String value) { this.InstructionTextLike = value; return this; } public ArrayList getInstructionTextBetween() { return InstructionTextBetween; } public BM_WorkOrderInstructionsQuery setInstructionTextBetween(ArrayList value) { this.InstructionTextBetween = value; return this; } public ArrayList getInstructionTextIn() { return InstructionTextIn; } public BM_WorkOrderInstructionsQuery setInstructionTextIn(ArrayList value) { this.InstructionTextIn = value; return this; } public ArrayList getRowHash() { return RowHash; } public BM_WorkOrderInstructionsQuery setRowHash(ArrayList value) { this.RowHash = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class BM_WorkOrderLineDetailsAllocationQuery extends QueryDb implements IReturn> { public String RecID = null; public String RecIDStartsWith = null; public String RecIDEndsWith = null; public String RecIDContains = null; public String RecIDLike = null; public ArrayList RecIDBetween = null; public ArrayList RecIDIn = null; public String BM_WorkOrder_RecID = null; public String BM_WorkOrder_RecIDStartsWith = null; public String BM_WorkOrder_RecIDEndsWith = null; public String BM_WorkOrder_RecIDContains = null; public String BM_WorkOrder_RecIDLike = null; public ArrayList BM_WorkOrder_RecIDBetween = null; public ArrayList BM_WorkOrder_RecIDIn = null; public String BM_WorkOrderInputDetails_RecID = null; public String BM_WorkOrderInputDetails_RecIDStartsWith = null; public String BM_WorkOrderInputDetails_RecIDEndsWith = null; public String BM_WorkOrderInputDetails_RecIDContains = null; public String BM_WorkOrderInputDetails_RecIDLike = null; public ArrayList BM_WorkOrderInputDetails_RecIDBetween = null; public ArrayList BM_WorkOrderInputDetails_RecIDIn = null; public String BM_WorkOrderOutputDetails_RecID = null; public String BM_WorkOrderOutputDetails_RecIDStartsWith = null; public String BM_WorkOrderOutputDetails_RecIDEndsWith = null; public String BM_WorkOrderOutputDetails_RecIDContains = null; public String BM_WorkOrderOutputDetails_RecIDLike = null; public ArrayList BM_WorkOrderOutputDetails_RecIDBetween = null; public ArrayList BM_WorkOrderOutputDetails_RecIDIn = null; public BigDecimal InputQuantity = null; public BigDecimal InputQuantityGreaterThanOrEqualTo = null; public BigDecimal InputQuantityGreaterThan = null; public BigDecimal InputQuantityLessThan = null; public BigDecimal InputQuantityLessThanOrEqualTo = null; public BigDecimal InputQuantityNotEqualTo = null; public ArrayList InputQuantityBetween = null; public ArrayList InputQuantityIn = null; public BigDecimal OutputQuantity = null; public BigDecimal OutputQuantityGreaterThanOrEqualTo = null; public BigDecimal OutputQuantityGreaterThan = null; public BigDecimal OutputQuantityLessThan = null; public BigDecimal OutputQuantityLessThanOrEqualTo = null; public BigDecimal OutputQuantityNotEqualTo = null; public ArrayList OutputQuantityBetween = null; public ArrayList OutputQuantityIn = null; public Date LastSavedDateTime = null; public Date LastSavedDateTimeGreaterThanOrEqualTo = null; public Date LastSavedDateTimeGreaterThan = null; public Date LastSavedDateTimeLessThan = null; public Date LastSavedDateTimeLessThanOrEqualTo = null; public Date LastSavedDateTimeNotEqualTo = null; public ArrayList LastSavedDateTimeBetween = null; public ArrayList LastSavedDateTimeIn = null; public ArrayList RowHash = null; public String getRecID() { return RecID; } public BM_WorkOrderLineDetailsAllocationQuery setRecID(String value) { this.RecID = value; return this; } public String getRecIDStartsWith() { return RecIDStartsWith; } public BM_WorkOrderLineDetailsAllocationQuery setRecIDStartsWith(String value) { this.RecIDStartsWith = value; return this; } public String getRecIDEndsWith() { return RecIDEndsWith; } public BM_WorkOrderLineDetailsAllocationQuery setRecIDEndsWith(String value) { this.RecIDEndsWith = value; return this; } public String getRecIDContains() { return RecIDContains; } public BM_WorkOrderLineDetailsAllocationQuery setRecIDContains(String value) { this.RecIDContains = value; return this; } public String getRecIDLike() { return RecIDLike; } public BM_WorkOrderLineDetailsAllocationQuery setRecIDLike(String value) { this.RecIDLike = value; return this; } public ArrayList getRecIDBetween() { return RecIDBetween; } public BM_WorkOrderLineDetailsAllocationQuery setRecIDBetween(ArrayList value) { this.RecIDBetween = value; return this; } public ArrayList getRecIDIn() { return RecIDIn; } public BM_WorkOrderLineDetailsAllocationQuery setRecIDIn(ArrayList value) { this.RecIDIn = value; return this; } public String getBmWorkOrderRecID() { return BM_WorkOrder_RecID; } public BM_WorkOrderLineDetailsAllocationQuery setBmWorkOrderRecID(String value) { this.BM_WorkOrder_RecID = value; return this; } public String getBmWorkOrderRecIDStartsWith() { return BM_WorkOrder_RecIDStartsWith; } public BM_WorkOrderLineDetailsAllocationQuery setBmWorkOrderRecIDStartsWith(String value) { this.BM_WorkOrder_RecIDStartsWith = value; return this; } public String getBmWorkOrderRecIDEndsWith() { return BM_WorkOrder_RecIDEndsWith; } public BM_WorkOrderLineDetailsAllocationQuery setBmWorkOrderRecIDEndsWith(String value) { this.BM_WorkOrder_RecIDEndsWith = value; return this; } public String getBmWorkOrderRecIDContains() { return BM_WorkOrder_RecIDContains; } public BM_WorkOrderLineDetailsAllocationQuery setBmWorkOrderRecIDContains(String value) { this.BM_WorkOrder_RecIDContains = value; return this; } public String getBmWorkOrderRecIDLike() { return BM_WorkOrder_RecIDLike; } public BM_WorkOrderLineDetailsAllocationQuery setBmWorkOrderRecIDLike(String value) { this.BM_WorkOrder_RecIDLike = value; return this; } public ArrayList getBmWorkOrderRecIDBetween() { return BM_WorkOrder_RecIDBetween; } public BM_WorkOrderLineDetailsAllocationQuery setBmWorkOrderRecIDBetween(ArrayList value) { this.BM_WorkOrder_RecIDBetween = value; return this; } public ArrayList getBmWorkOrderRecIDIn() { return BM_WorkOrder_RecIDIn; } public BM_WorkOrderLineDetailsAllocationQuery setBmWorkOrderRecIDIn(ArrayList value) { this.BM_WorkOrder_RecIDIn = value; return this; } public String getBmWorkOrderInputDetailsRecID() { return BM_WorkOrderInputDetails_RecID; } public BM_WorkOrderLineDetailsAllocationQuery setBmWorkOrderInputDetailsRecID(String value) { this.BM_WorkOrderInputDetails_RecID = value; return this; } public String getBmWorkOrderInputDetailsRecIDStartsWith() { return BM_WorkOrderInputDetails_RecIDStartsWith; } public BM_WorkOrderLineDetailsAllocationQuery setBmWorkOrderInputDetailsRecIDStartsWith(String value) { this.BM_WorkOrderInputDetails_RecIDStartsWith = value; return this; } public String getBmWorkOrderInputDetailsRecIDEndsWith() { return BM_WorkOrderInputDetails_RecIDEndsWith; } public BM_WorkOrderLineDetailsAllocationQuery setBmWorkOrderInputDetailsRecIDEndsWith(String value) { this.BM_WorkOrderInputDetails_RecIDEndsWith = value; return this; } public String getBmWorkOrderInputDetailsRecIDContains() { return BM_WorkOrderInputDetails_RecIDContains; } public BM_WorkOrderLineDetailsAllocationQuery setBmWorkOrderInputDetailsRecIDContains(String value) { this.BM_WorkOrderInputDetails_RecIDContains = value; return this; } public String getBmWorkOrderInputDetailsRecIDLike() { return BM_WorkOrderInputDetails_RecIDLike; } public BM_WorkOrderLineDetailsAllocationQuery setBmWorkOrderInputDetailsRecIDLike(String value) { this.BM_WorkOrderInputDetails_RecIDLike = value; return this; } public ArrayList getBmWorkOrderInputDetailsRecIDBetween() { return BM_WorkOrderInputDetails_RecIDBetween; } public BM_WorkOrderLineDetailsAllocationQuery setBmWorkOrderInputDetailsRecIDBetween(ArrayList value) { this.BM_WorkOrderInputDetails_RecIDBetween = value; return this; } public ArrayList getBmWorkOrderInputDetailsRecIDIn() { return BM_WorkOrderInputDetails_RecIDIn; } public BM_WorkOrderLineDetailsAllocationQuery setBmWorkOrderInputDetailsRecIDIn(ArrayList value) { this.BM_WorkOrderInputDetails_RecIDIn = value; return this; } public String getBmWorkOrderOutputDetailsRecID() { return BM_WorkOrderOutputDetails_RecID; } public BM_WorkOrderLineDetailsAllocationQuery setBmWorkOrderOutputDetailsRecID(String value) { this.BM_WorkOrderOutputDetails_RecID = value; return this; } public String getBmWorkOrderOutputDetailsRecIDStartsWith() { return BM_WorkOrderOutputDetails_RecIDStartsWith; } public BM_WorkOrderLineDetailsAllocationQuery setBmWorkOrderOutputDetailsRecIDStartsWith(String value) { this.BM_WorkOrderOutputDetails_RecIDStartsWith = value; return this; } public String getBmWorkOrderOutputDetailsRecIDEndsWith() { return BM_WorkOrderOutputDetails_RecIDEndsWith; } public BM_WorkOrderLineDetailsAllocationQuery setBmWorkOrderOutputDetailsRecIDEndsWith(String value) { this.BM_WorkOrderOutputDetails_RecIDEndsWith = value; return this; } public String getBmWorkOrderOutputDetailsRecIDContains() { return BM_WorkOrderOutputDetails_RecIDContains; } public BM_WorkOrderLineDetailsAllocationQuery setBmWorkOrderOutputDetailsRecIDContains(String value) { this.BM_WorkOrderOutputDetails_RecIDContains = value; return this; } public String getBmWorkOrderOutputDetailsRecIDLike() { return BM_WorkOrderOutputDetails_RecIDLike; } public BM_WorkOrderLineDetailsAllocationQuery setBmWorkOrderOutputDetailsRecIDLike(String value) { this.BM_WorkOrderOutputDetails_RecIDLike = value; return this; } public ArrayList getBmWorkOrderOutputDetailsRecIDBetween() { return BM_WorkOrderOutputDetails_RecIDBetween; } public BM_WorkOrderLineDetailsAllocationQuery setBmWorkOrderOutputDetailsRecIDBetween(ArrayList value) { this.BM_WorkOrderOutputDetails_RecIDBetween = value; return this; } public ArrayList getBmWorkOrderOutputDetailsRecIDIn() { return BM_WorkOrderOutputDetails_RecIDIn; } public BM_WorkOrderLineDetailsAllocationQuery setBmWorkOrderOutputDetailsRecIDIn(ArrayList value) { this.BM_WorkOrderOutputDetails_RecIDIn = value; return this; } public BigDecimal getInputQuantity() { return InputQuantity; } public BM_WorkOrderLineDetailsAllocationQuery setInputQuantity(BigDecimal value) { this.InputQuantity = value; return this; } public BigDecimal getInputQuantityGreaterThanOrEqualTo() { return InputQuantityGreaterThanOrEqualTo; } public BM_WorkOrderLineDetailsAllocationQuery setInputQuantityGreaterThanOrEqualTo(BigDecimal value) { this.InputQuantityGreaterThanOrEqualTo = value; return this; } public BigDecimal getInputQuantityGreaterThan() { return InputQuantityGreaterThan; } public BM_WorkOrderLineDetailsAllocationQuery setInputQuantityGreaterThan(BigDecimal value) { this.InputQuantityGreaterThan = value; return this; } public BigDecimal getInputQuantityLessThan() { return InputQuantityLessThan; } public BM_WorkOrderLineDetailsAllocationQuery setInputQuantityLessThan(BigDecimal value) { this.InputQuantityLessThan = value; return this; } public BigDecimal getInputQuantityLessThanOrEqualTo() { return InputQuantityLessThanOrEqualTo; } public BM_WorkOrderLineDetailsAllocationQuery setInputQuantityLessThanOrEqualTo(BigDecimal value) { this.InputQuantityLessThanOrEqualTo = value; return this; } public BigDecimal getInputQuantityNotEqualTo() { return InputQuantityNotEqualTo; } public BM_WorkOrderLineDetailsAllocationQuery setInputQuantityNotEqualTo(BigDecimal value) { this.InputQuantityNotEqualTo = value; return this; } public ArrayList getInputQuantityBetween() { return InputQuantityBetween; } public BM_WorkOrderLineDetailsAllocationQuery setInputQuantityBetween(ArrayList value) { this.InputQuantityBetween = value; return this; } public ArrayList getInputQuantityIn() { return InputQuantityIn; } public BM_WorkOrderLineDetailsAllocationQuery setInputQuantityIn(ArrayList value) { this.InputQuantityIn = value; return this; } public BigDecimal getOutputQuantity() { return OutputQuantity; } public BM_WorkOrderLineDetailsAllocationQuery setOutputQuantity(BigDecimal value) { this.OutputQuantity = value; return this; } public BigDecimal getOutputQuantityGreaterThanOrEqualTo() { return OutputQuantityGreaterThanOrEqualTo; } public BM_WorkOrderLineDetailsAllocationQuery setOutputQuantityGreaterThanOrEqualTo(BigDecimal value) { this.OutputQuantityGreaterThanOrEqualTo = value; return this; } public BigDecimal getOutputQuantityGreaterThan() { return OutputQuantityGreaterThan; } public BM_WorkOrderLineDetailsAllocationQuery setOutputQuantityGreaterThan(BigDecimal value) { this.OutputQuantityGreaterThan = value; return this; } public BigDecimal getOutputQuantityLessThan() { return OutputQuantityLessThan; } public BM_WorkOrderLineDetailsAllocationQuery setOutputQuantityLessThan(BigDecimal value) { this.OutputQuantityLessThan = value; return this; } public BigDecimal getOutputQuantityLessThanOrEqualTo() { return OutputQuantityLessThanOrEqualTo; } public BM_WorkOrderLineDetailsAllocationQuery setOutputQuantityLessThanOrEqualTo(BigDecimal value) { this.OutputQuantityLessThanOrEqualTo = value; return this; } public BigDecimal getOutputQuantityNotEqualTo() { return OutputQuantityNotEqualTo; } public BM_WorkOrderLineDetailsAllocationQuery setOutputQuantityNotEqualTo(BigDecimal value) { this.OutputQuantityNotEqualTo = value; return this; } public ArrayList getOutputQuantityBetween() { return OutputQuantityBetween; } public BM_WorkOrderLineDetailsAllocationQuery setOutputQuantityBetween(ArrayList value) { this.OutputQuantityBetween = value; return this; } public ArrayList getOutputQuantityIn() { return OutputQuantityIn; } public BM_WorkOrderLineDetailsAllocationQuery setOutputQuantityIn(ArrayList value) { this.OutputQuantityIn = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public BM_WorkOrderLineDetailsAllocationQuery setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getLastSavedDateTimeGreaterThanOrEqualTo() { return LastSavedDateTimeGreaterThanOrEqualTo; } public BM_WorkOrderLineDetailsAllocationQuery setLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.LastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeGreaterThan() { return LastSavedDateTimeGreaterThan; } public BM_WorkOrderLineDetailsAllocationQuery setLastSavedDateTimeGreaterThan(Date value) { this.LastSavedDateTimeGreaterThan = value; return this; } public Date getLastSavedDateTimeLessThan() { return LastSavedDateTimeLessThan; } public BM_WorkOrderLineDetailsAllocationQuery setLastSavedDateTimeLessThan(Date value) { this.LastSavedDateTimeLessThan = value; return this; } public Date getLastSavedDateTimeLessThanOrEqualTo() { return LastSavedDateTimeLessThanOrEqualTo; } public BM_WorkOrderLineDetailsAllocationQuery setLastSavedDateTimeLessThanOrEqualTo(Date value) { this.LastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeNotEqualTo() { return LastSavedDateTimeNotEqualTo; } public BM_WorkOrderLineDetailsAllocationQuery setLastSavedDateTimeNotEqualTo(Date value) { this.LastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getLastSavedDateTimeBetween() { return LastSavedDateTimeBetween; } public BM_WorkOrderLineDetailsAllocationQuery setLastSavedDateTimeBetween(ArrayList value) { this.LastSavedDateTimeBetween = value; return this; } public ArrayList getLastSavedDateTimeIn() { return LastSavedDateTimeIn; } public BM_WorkOrderLineDetailsAllocationQuery setLastSavedDateTimeIn(ArrayList value) { this.LastSavedDateTimeIn = value; return this; } public ArrayList getRowHash() { return RowHash; } public BM_WorkOrderLineDetailsAllocationQuery setRowHash(ArrayList value) { this.RowHash = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class BM_WorkOrderNotesQuery extends QueryDb implements IReturn> { public String RecID = null; public String RecIDStartsWith = null; public String RecIDEndsWith = null; public String RecIDContains = null; public String RecIDLike = null; public ArrayList RecIDBetween = null; public ArrayList RecIDIn = null; public String BM_WorkOrder_RecID = null; public String BM_WorkOrder_RecIDStartsWith = null; public String BM_WorkOrder_RecIDEndsWith = null; public String BM_WorkOrder_RecIDContains = null; public String BM_WorkOrder_RecIDLike = null; public ArrayList BM_WorkOrder_RecIDBetween = null; public ArrayList BM_WorkOrder_RecIDIn = null; public String NoteTypeID = null; public String NoteTypeIDStartsWith = null; public String NoteTypeIDEndsWith = null; public String NoteTypeIDContains = null; public String NoteTypeIDLike = null; public ArrayList NoteTypeIDBetween = null; public ArrayList NoteTypeIDIn = null; public Date LastSavedDateTime = null; public Date LastSavedDateTimeGreaterThanOrEqualTo = null; public Date LastSavedDateTimeGreaterThan = null; public Date LastSavedDateTimeLessThan = null; public Date LastSavedDateTimeLessThanOrEqualTo = null; public Date LastSavedDateTimeNotEqualTo = null; public ArrayList LastSavedDateTimeBetween = null; public ArrayList LastSavedDateTimeIn = null; public String LastSavedByStaffID = null; public String LastSavedByStaffIDStartsWith = null; public String LastSavedByStaffIDEndsWith = null; public String LastSavedByStaffIDContains = null; public String LastSavedByStaffIDLike = null; public ArrayList LastSavedByStaffIDBetween = null; public ArrayList LastSavedByStaffIDIn = null; public String NoteText = null; public String NoteTextStartsWith = null; public String NoteTextEndsWith = null; public String NoteTextContains = null; public String NoteTextLike = null; public ArrayList NoteTextBetween = null; public ArrayList NoteTextIn = null; public Integer ItemNo = null; public Integer ItemNoGreaterThanOrEqualTo = null; public Integer ItemNoGreaterThan = null; public Integer ItemNoLessThan = null; public Integer ItemNoLessThanOrEqualTo = null; public Integer ItemNoNotEqualTo = null; public ArrayList ItemNoBetween = null; public ArrayList ItemNoIn = null; public String getRecID() { return RecID; } public BM_WorkOrderNotesQuery setRecID(String value) { this.RecID = value; return this; } public String getRecIDStartsWith() { return RecIDStartsWith; } public BM_WorkOrderNotesQuery setRecIDStartsWith(String value) { this.RecIDStartsWith = value; return this; } public String getRecIDEndsWith() { return RecIDEndsWith; } public BM_WorkOrderNotesQuery setRecIDEndsWith(String value) { this.RecIDEndsWith = value; return this; } public String getRecIDContains() { return RecIDContains; } public BM_WorkOrderNotesQuery setRecIDContains(String value) { this.RecIDContains = value; return this; } public String getRecIDLike() { return RecIDLike; } public BM_WorkOrderNotesQuery setRecIDLike(String value) { this.RecIDLike = value; return this; } public ArrayList getRecIDBetween() { return RecIDBetween; } public BM_WorkOrderNotesQuery setRecIDBetween(ArrayList value) { this.RecIDBetween = value; return this; } public ArrayList getRecIDIn() { return RecIDIn; } public BM_WorkOrderNotesQuery setRecIDIn(ArrayList value) { this.RecIDIn = value; return this; } public String getBmWorkOrderRecID() { return BM_WorkOrder_RecID; } public BM_WorkOrderNotesQuery setBmWorkOrderRecID(String value) { this.BM_WorkOrder_RecID = value; return this; } public String getBmWorkOrderRecIDStartsWith() { return BM_WorkOrder_RecIDStartsWith; } public BM_WorkOrderNotesQuery setBmWorkOrderRecIDStartsWith(String value) { this.BM_WorkOrder_RecIDStartsWith = value; return this; } public String getBmWorkOrderRecIDEndsWith() { return BM_WorkOrder_RecIDEndsWith; } public BM_WorkOrderNotesQuery setBmWorkOrderRecIDEndsWith(String value) { this.BM_WorkOrder_RecIDEndsWith = value; return this; } public String getBmWorkOrderRecIDContains() { return BM_WorkOrder_RecIDContains; } public BM_WorkOrderNotesQuery setBmWorkOrderRecIDContains(String value) { this.BM_WorkOrder_RecIDContains = value; return this; } public String getBmWorkOrderRecIDLike() { return BM_WorkOrder_RecIDLike; } public BM_WorkOrderNotesQuery setBmWorkOrderRecIDLike(String value) { this.BM_WorkOrder_RecIDLike = value; return this; } public ArrayList getBmWorkOrderRecIDBetween() { return BM_WorkOrder_RecIDBetween; } public BM_WorkOrderNotesQuery setBmWorkOrderRecIDBetween(ArrayList value) { this.BM_WorkOrder_RecIDBetween = value; return this; } public ArrayList getBmWorkOrderRecIDIn() { return BM_WorkOrder_RecIDIn; } public BM_WorkOrderNotesQuery setBmWorkOrderRecIDIn(ArrayList value) { this.BM_WorkOrder_RecIDIn = value; return this; } public String getNoteTypeID() { return NoteTypeID; } public BM_WorkOrderNotesQuery setNoteTypeID(String value) { this.NoteTypeID = value; return this; } public String getNoteTypeIDStartsWith() { return NoteTypeIDStartsWith; } public BM_WorkOrderNotesQuery setNoteTypeIDStartsWith(String value) { this.NoteTypeIDStartsWith = value; return this; } public String getNoteTypeIDEndsWith() { return NoteTypeIDEndsWith; } public BM_WorkOrderNotesQuery setNoteTypeIDEndsWith(String value) { this.NoteTypeIDEndsWith = value; return this; } public String getNoteTypeIDContains() { return NoteTypeIDContains; } public BM_WorkOrderNotesQuery setNoteTypeIDContains(String value) { this.NoteTypeIDContains = value; return this; } public String getNoteTypeIDLike() { return NoteTypeIDLike; } public BM_WorkOrderNotesQuery setNoteTypeIDLike(String value) { this.NoteTypeIDLike = value; return this; } public ArrayList getNoteTypeIDBetween() { return NoteTypeIDBetween; } public BM_WorkOrderNotesQuery setNoteTypeIDBetween(ArrayList value) { this.NoteTypeIDBetween = value; return this; } public ArrayList getNoteTypeIDIn() { return NoteTypeIDIn; } public BM_WorkOrderNotesQuery setNoteTypeIDIn(ArrayList value) { this.NoteTypeIDIn = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public BM_WorkOrderNotesQuery setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getLastSavedDateTimeGreaterThanOrEqualTo() { return LastSavedDateTimeGreaterThanOrEqualTo; } public BM_WorkOrderNotesQuery setLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.LastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeGreaterThan() { return LastSavedDateTimeGreaterThan; } public BM_WorkOrderNotesQuery setLastSavedDateTimeGreaterThan(Date value) { this.LastSavedDateTimeGreaterThan = value; return this; } public Date getLastSavedDateTimeLessThan() { return LastSavedDateTimeLessThan; } public BM_WorkOrderNotesQuery setLastSavedDateTimeLessThan(Date value) { this.LastSavedDateTimeLessThan = value; return this; } public Date getLastSavedDateTimeLessThanOrEqualTo() { return LastSavedDateTimeLessThanOrEqualTo; } public BM_WorkOrderNotesQuery setLastSavedDateTimeLessThanOrEqualTo(Date value) { this.LastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeNotEqualTo() { return LastSavedDateTimeNotEqualTo; } public BM_WorkOrderNotesQuery setLastSavedDateTimeNotEqualTo(Date value) { this.LastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getLastSavedDateTimeBetween() { return LastSavedDateTimeBetween; } public BM_WorkOrderNotesQuery setLastSavedDateTimeBetween(ArrayList value) { this.LastSavedDateTimeBetween = value; return this; } public ArrayList getLastSavedDateTimeIn() { return LastSavedDateTimeIn; } public BM_WorkOrderNotesQuery setLastSavedDateTimeIn(ArrayList value) { this.LastSavedDateTimeIn = value; return this; } public String getLastSavedByStaffID() { return LastSavedByStaffID; } public BM_WorkOrderNotesQuery setLastSavedByStaffID(String value) { this.LastSavedByStaffID = value; return this; } public String getLastSavedByStaffIDStartsWith() { return LastSavedByStaffIDStartsWith; } public BM_WorkOrderNotesQuery setLastSavedByStaffIDStartsWith(String value) { this.LastSavedByStaffIDStartsWith = value; return this; } public String getLastSavedByStaffIDEndsWith() { return LastSavedByStaffIDEndsWith; } public BM_WorkOrderNotesQuery setLastSavedByStaffIDEndsWith(String value) { this.LastSavedByStaffIDEndsWith = value; return this; } public String getLastSavedByStaffIDContains() { return LastSavedByStaffIDContains; } public BM_WorkOrderNotesQuery setLastSavedByStaffIDContains(String value) { this.LastSavedByStaffIDContains = value; return this; } public String getLastSavedByStaffIDLike() { return LastSavedByStaffIDLike; } public BM_WorkOrderNotesQuery setLastSavedByStaffIDLike(String value) { this.LastSavedByStaffIDLike = value; return this; } public ArrayList getLastSavedByStaffIDBetween() { return LastSavedByStaffIDBetween; } public BM_WorkOrderNotesQuery setLastSavedByStaffIDBetween(ArrayList value) { this.LastSavedByStaffIDBetween = value; return this; } public ArrayList getLastSavedByStaffIDIn() { return LastSavedByStaffIDIn; } public BM_WorkOrderNotesQuery setLastSavedByStaffIDIn(ArrayList value) { this.LastSavedByStaffIDIn = value; return this; } public String getNoteText() { return NoteText; } public BM_WorkOrderNotesQuery setNoteText(String value) { this.NoteText = value; return this; } public String getNoteTextStartsWith() { return NoteTextStartsWith; } public BM_WorkOrderNotesQuery setNoteTextStartsWith(String value) { this.NoteTextStartsWith = value; return this; } public String getNoteTextEndsWith() { return NoteTextEndsWith; } public BM_WorkOrderNotesQuery setNoteTextEndsWith(String value) { this.NoteTextEndsWith = value; return this; } public String getNoteTextContains() { return NoteTextContains; } public BM_WorkOrderNotesQuery setNoteTextContains(String value) { this.NoteTextContains = value; return this; } public String getNoteTextLike() { return NoteTextLike; } public BM_WorkOrderNotesQuery setNoteTextLike(String value) { this.NoteTextLike = value; return this; } public ArrayList getNoteTextBetween() { return NoteTextBetween; } public BM_WorkOrderNotesQuery setNoteTextBetween(ArrayList value) { this.NoteTextBetween = value; return this; } public ArrayList getNoteTextIn() { return NoteTextIn; } public BM_WorkOrderNotesQuery setNoteTextIn(ArrayList value) { this.NoteTextIn = value; return this; } public Integer getItemNo() { return ItemNo; } public BM_WorkOrderNotesQuery setItemNo(Integer value) { this.ItemNo = value; return this; } public Integer getItemNoGreaterThanOrEqualTo() { return ItemNoGreaterThanOrEqualTo; } public BM_WorkOrderNotesQuery setItemNoGreaterThanOrEqualTo(Integer value) { this.ItemNoGreaterThanOrEqualTo = value; return this; } public Integer getItemNoGreaterThan() { return ItemNoGreaterThan; } public BM_WorkOrderNotesQuery setItemNoGreaterThan(Integer value) { this.ItemNoGreaterThan = value; return this; } public Integer getItemNoLessThan() { return ItemNoLessThan; } public BM_WorkOrderNotesQuery setItemNoLessThan(Integer value) { this.ItemNoLessThan = value; return this; } public Integer getItemNoLessThanOrEqualTo() { return ItemNoLessThanOrEqualTo; } public BM_WorkOrderNotesQuery setItemNoLessThanOrEqualTo(Integer value) { this.ItemNoLessThanOrEqualTo = value; return this; } public Integer getItemNoNotEqualTo() { return ItemNoNotEqualTo; } public BM_WorkOrderNotesQuery setItemNoNotEqualTo(Integer value) { this.ItemNoNotEqualTo = value; return this; } public ArrayList getItemNoBetween() { return ItemNoBetween; } public BM_WorkOrderNotesQuery setItemNoBetween(ArrayList value) { this.ItemNoBetween = value; return this; } public ArrayList getItemNoIn() { return ItemNoIn; } public BM_WorkOrderNotesQuery setItemNoIn(ArrayList value) { this.ItemNoIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class BM_WorkOrderOutputCustomFieldsQuery extends QueryDb implements IReturn> { public String RecID = null; public String RecIDStartsWith = null; public String RecIDEndsWith = null; public String RecIDContains = null; public String RecIDLike = null; public ArrayList RecIDBetween = null; public ArrayList RecIDIn = null; public String SettingName = null; public String SettingNameStartsWith = null; public String SettingNameEndsWith = null; public String SettingNameContains = null; public String SettingNameLike = null; public ArrayList SettingNameBetween = null; public ArrayList SettingNameIn = null; public String SettingDescription = null; public String SettingDescriptionStartsWith = null; public String SettingDescriptionEndsWith = null; public String SettingDescriptionContains = null; public String SettingDescriptionLike = null; public ArrayList SettingDescriptionBetween = null; public ArrayList SettingDescriptionIn = null; public Integer CellType = null; public Integer CellTypeGreaterThanOrEqualTo = null; public Integer CellTypeGreaterThan = null; public Integer CellTypeLessThan = null; public Integer CellTypeLessThanOrEqualTo = null; public Integer CellTypeNotEqualTo = null; public ArrayList CellTypeBetween = null; public ArrayList CellTypeIn = null; public String FieldParameter = null; public String FieldParameterStartsWith = null; public String FieldParameterEndsWith = null; public String FieldParameterContains = null; public String FieldParameterLike = null; public ArrayList FieldParameterBetween = null; public ArrayList FieldParameterIn = null; public UUID SY_Plugin_RecID = null; public ArrayList SY_Plugin_RecIDIn = null; public Date LastSavedDateTime = null; public Date LastSavedDateTimeGreaterThanOrEqualTo = null; public Date LastSavedDateTimeGreaterThan = null; public Date LastSavedDateTimeLessThan = null; public Date LastSavedDateTimeLessThanOrEqualTo = null; public Date LastSavedDateTimeNotEqualTo = null; public ArrayList LastSavedDateTimeBetween = null; public ArrayList LastSavedDateTimeIn = null; public Integer DisplayOrder = null; public Integer DisplayOrderGreaterThanOrEqualTo = null; public Integer DisplayOrderGreaterThan = null; public Integer DisplayOrderLessThan = null; public Integer DisplayOrderLessThanOrEqualTo = null; public Integer DisplayOrderNotEqualTo = null; public ArrayList DisplayOrderBetween = null; public ArrayList DisplayOrderIn = null; public String getRecID() { return RecID; } public BM_WorkOrderOutputCustomFieldsQuery setRecID(String value) { this.RecID = value; return this; } public String getRecIDStartsWith() { return RecIDStartsWith; } public BM_WorkOrderOutputCustomFieldsQuery setRecIDStartsWith(String value) { this.RecIDStartsWith = value; return this; } public String getRecIDEndsWith() { return RecIDEndsWith; } public BM_WorkOrderOutputCustomFieldsQuery setRecIDEndsWith(String value) { this.RecIDEndsWith = value; return this; } public String getRecIDContains() { return RecIDContains; } public BM_WorkOrderOutputCustomFieldsQuery setRecIDContains(String value) { this.RecIDContains = value; return this; } public String getRecIDLike() { return RecIDLike; } public BM_WorkOrderOutputCustomFieldsQuery setRecIDLike(String value) { this.RecIDLike = value; return this; } public ArrayList getRecIDBetween() { return RecIDBetween; } public BM_WorkOrderOutputCustomFieldsQuery setRecIDBetween(ArrayList value) { this.RecIDBetween = value; return this; } public ArrayList getRecIDIn() { return RecIDIn; } public BM_WorkOrderOutputCustomFieldsQuery setRecIDIn(ArrayList value) { this.RecIDIn = value; return this; } public String getSettingName() { return SettingName; } public BM_WorkOrderOutputCustomFieldsQuery setSettingName(String value) { this.SettingName = value; return this; } public String getSettingNameStartsWith() { return SettingNameStartsWith; } public BM_WorkOrderOutputCustomFieldsQuery setSettingNameStartsWith(String value) { this.SettingNameStartsWith = value; return this; } public String getSettingNameEndsWith() { return SettingNameEndsWith; } public BM_WorkOrderOutputCustomFieldsQuery setSettingNameEndsWith(String value) { this.SettingNameEndsWith = value; return this; } public String getSettingNameContains() { return SettingNameContains; } public BM_WorkOrderOutputCustomFieldsQuery setSettingNameContains(String value) { this.SettingNameContains = value; return this; } public String getSettingNameLike() { return SettingNameLike; } public BM_WorkOrderOutputCustomFieldsQuery setSettingNameLike(String value) { this.SettingNameLike = value; return this; } public ArrayList getSettingNameBetween() { return SettingNameBetween; } public BM_WorkOrderOutputCustomFieldsQuery setSettingNameBetween(ArrayList value) { this.SettingNameBetween = value; return this; } public ArrayList getSettingNameIn() { return SettingNameIn; } public BM_WorkOrderOutputCustomFieldsQuery setSettingNameIn(ArrayList value) { this.SettingNameIn = value; return this; } public String getSettingDescription() { return SettingDescription; } public BM_WorkOrderOutputCustomFieldsQuery setSettingDescription(String value) { this.SettingDescription = value; return this; } public String getSettingDescriptionStartsWith() { return SettingDescriptionStartsWith; } public BM_WorkOrderOutputCustomFieldsQuery setSettingDescriptionStartsWith(String value) { this.SettingDescriptionStartsWith = value; return this; } public String getSettingDescriptionEndsWith() { return SettingDescriptionEndsWith; } public BM_WorkOrderOutputCustomFieldsQuery setSettingDescriptionEndsWith(String value) { this.SettingDescriptionEndsWith = value; return this; } public String getSettingDescriptionContains() { return SettingDescriptionContains; } public BM_WorkOrderOutputCustomFieldsQuery setSettingDescriptionContains(String value) { this.SettingDescriptionContains = value; return this; } public String getSettingDescriptionLike() { return SettingDescriptionLike; } public BM_WorkOrderOutputCustomFieldsQuery setSettingDescriptionLike(String value) { this.SettingDescriptionLike = value; return this; } public ArrayList getSettingDescriptionBetween() { return SettingDescriptionBetween; } public BM_WorkOrderOutputCustomFieldsQuery setSettingDescriptionBetween(ArrayList value) { this.SettingDescriptionBetween = value; return this; } public ArrayList getSettingDescriptionIn() { return SettingDescriptionIn; } public BM_WorkOrderOutputCustomFieldsQuery setSettingDescriptionIn(ArrayList value) { this.SettingDescriptionIn = value; return this; } public Integer getCellType() { return CellType; } public BM_WorkOrderOutputCustomFieldsQuery setCellType(Integer value) { this.CellType = value; return this; } public Integer getCellTypeGreaterThanOrEqualTo() { return CellTypeGreaterThanOrEqualTo; } public BM_WorkOrderOutputCustomFieldsQuery setCellTypeGreaterThanOrEqualTo(Integer value) { this.CellTypeGreaterThanOrEqualTo = value; return this; } public Integer getCellTypeGreaterThan() { return CellTypeGreaterThan; } public BM_WorkOrderOutputCustomFieldsQuery setCellTypeGreaterThan(Integer value) { this.CellTypeGreaterThan = value; return this; } public Integer getCellTypeLessThan() { return CellTypeLessThan; } public BM_WorkOrderOutputCustomFieldsQuery setCellTypeLessThan(Integer value) { this.CellTypeLessThan = value; return this; } public Integer getCellTypeLessThanOrEqualTo() { return CellTypeLessThanOrEqualTo; } public BM_WorkOrderOutputCustomFieldsQuery setCellTypeLessThanOrEqualTo(Integer value) { this.CellTypeLessThanOrEqualTo = value; return this; } public Integer getCellTypeNotEqualTo() { return CellTypeNotEqualTo; } public BM_WorkOrderOutputCustomFieldsQuery setCellTypeNotEqualTo(Integer value) { this.CellTypeNotEqualTo = value; return this; } public ArrayList getCellTypeBetween() { return CellTypeBetween; } public BM_WorkOrderOutputCustomFieldsQuery setCellTypeBetween(ArrayList value) { this.CellTypeBetween = value; return this; } public ArrayList getCellTypeIn() { return CellTypeIn; } public BM_WorkOrderOutputCustomFieldsQuery setCellTypeIn(ArrayList value) { this.CellTypeIn = value; return this; } public String getFieldParameter() { return FieldParameter; } public BM_WorkOrderOutputCustomFieldsQuery setFieldParameter(String value) { this.FieldParameter = value; return this; } public String getFieldParameterStartsWith() { return FieldParameterStartsWith; } public BM_WorkOrderOutputCustomFieldsQuery setFieldParameterStartsWith(String value) { this.FieldParameterStartsWith = value; return this; } public String getFieldParameterEndsWith() { return FieldParameterEndsWith; } public BM_WorkOrderOutputCustomFieldsQuery setFieldParameterEndsWith(String value) { this.FieldParameterEndsWith = value; return this; } public String getFieldParameterContains() { return FieldParameterContains; } public BM_WorkOrderOutputCustomFieldsQuery setFieldParameterContains(String value) { this.FieldParameterContains = value; return this; } public String getFieldParameterLike() { return FieldParameterLike; } public BM_WorkOrderOutputCustomFieldsQuery setFieldParameterLike(String value) { this.FieldParameterLike = value; return this; } public ArrayList getFieldParameterBetween() { return FieldParameterBetween; } public BM_WorkOrderOutputCustomFieldsQuery setFieldParameterBetween(ArrayList value) { this.FieldParameterBetween = value; return this; } public ArrayList getFieldParameterIn() { return FieldParameterIn; } public BM_WorkOrderOutputCustomFieldsQuery setFieldParameterIn(ArrayList value) { this.FieldParameterIn = value; return this; } public UUID getSyPluginRecID() { return SY_Plugin_RecID; } public BM_WorkOrderOutputCustomFieldsQuery setSyPluginRecID(UUID value) { this.SY_Plugin_RecID = value; return this; } public ArrayList getSyPluginRecIDIn() { return SY_Plugin_RecIDIn; } public BM_WorkOrderOutputCustomFieldsQuery setSyPluginRecIDIn(ArrayList value) { this.SY_Plugin_RecIDIn = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public BM_WorkOrderOutputCustomFieldsQuery setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getLastSavedDateTimeGreaterThanOrEqualTo() { return LastSavedDateTimeGreaterThanOrEqualTo; } public BM_WorkOrderOutputCustomFieldsQuery setLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.LastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeGreaterThan() { return LastSavedDateTimeGreaterThan; } public BM_WorkOrderOutputCustomFieldsQuery setLastSavedDateTimeGreaterThan(Date value) { this.LastSavedDateTimeGreaterThan = value; return this; } public Date getLastSavedDateTimeLessThan() { return LastSavedDateTimeLessThan; } public BM_WorkOrderOutputCustomFieldsQuery setLastSavedDateTimeLessThan(Date value) { this.LastSavedDateTimeLessThan = value; return this; } public Date getLastSavedDateTimeLessThanOrEqualTo() { return LastSavedDateTimeLessThanOrEqualTo; } public BM_WorkOrderOutputCustomFieldsQuery setLastSavedDateTimeLessThanOrEqualTo(Date value) { this.LastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeNotEqualTo() { return LastSavedDateTimeNotEqualTo; } public BM_WorkOrderOutputCustomFieldsQuery setLastSavedDateTimeNotEqualTo(Date value) { this.LastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getLastSavedDateTimeBetween() { return LastSavedDateTimeBetween; } public BM_WorkOrderOutputCustomFieldsQuery setLastSavedDateTimeBetween(ArrayList value) { this.LastSavedDateTimeBetween = value; return this; } public ArrayList getLastSavedDateTimeIn() { return LastSavedDateTimeIn; } public BM_WorkOrderOutputCustomFieldsQuery setLastSavedDateTimeIn(ArrayList value) { this.LastSavedDateTimeIn = value; return this; } public Integer getDisplayOrder() { return DisplayOrder; } public BM_WorkOrderOutputCustomFieldsQuery setDisplayOrder(Integer value) { this.DisplayOrder = value; return this; } public Integer getDisplayOrderGreaterThanOrEqualTo() { return DisplayOrderGreaterThanOrEqualTo; } public BM_WorkOrderOutputCustomFieldsQuery setDisplayOrderGreaterThanOrEqualTo(Integer value) { this.DisplayOrderGreaterThanOrEqualTo = value; return this; } public Integer getDisplayOrderGreaterThan() { return DisplayOrderGreaterThan; } public BM_WorkOrderOutputCustomFieldsQuery setDisplayOrderGreaterThan(Integer value) { this.DisplayOrderGreaterThan = value; return this; } public Integer getDisplayOrderLessThan() { return DisplayOrderLessThan; } public BM_WorkOrderOutputCustomFieldsQuery setDisplayOrderLessThan(Integer value) { this.DisplayOrderLessThan = value; return this; } public Integer getDisplayOrderLessThanOrEqualTo() { return DisplayOrderLessThanOrEqualTo; } public BM_WorkOrderOutputCustomFieldsQuery setDisplayOrderLessThanOrEqualTo(Integer value) { this.DisplayOrderLessThanOrEqualTo = value; return this; } public Integer getDisplayOrderNotEqualTo() { return DisplayOrderNotEqualTo; } public BM_WorkOrderOutputCustomFieldsQuery setDisplayOrderNotEqualTo(Integer value) { this.DisplayOrderNotEqualTo = value; return this; } public ArrayList getDisplayOrderBetween() { return DisplayOrderBetween; } public BM_WorkOrderOutputCustomFieldsQuery setDisplayOrderBetween(ArrayList value) { this.DisplayOrderBetween = value; return this; } public ArrayList getDisplayOrderIn() { return DisplayOrderIn; } public BM_WorkOrderOutputCustomFieldsQuery setDisplayOrderIn(ArrayList value) { this.DisplayOrderIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class BM_WorkOrderOutputCustomValuesQuery extends QueryDb implements IReturn> { public String RecID = null; public String RecIDStartsWith = null; public String RecIDEndsWith = null; public String RecIDContains = null; public String RecIDLike = null; public ArrayList RecIDBetween = null; public ArrayList RecIDIn = null; public String BM_WorkOrderOutputs_RecID = null; public String BM_WorkOrderOutputs_RecIDStartsWith = null; public String BM_WorkOrderOutputs_RecIDEndsWith = null; public String BM_WorkOrderOutputs_RecIDContains = null; public String BM_WorkOrderOutputs_RecIDLike = null; public ArrayList BM_WorkOrderOutputs_RecIDBetween = null; public ArrayList BM_WorkOrderOutputs_RecIDIn = null; public String BM_WorkOrderOutputCustomFields_RecID = null; public String BM_WorkOrderOutputCustomFields_RecIDStartsWith = null; public String BM_WorkOrderOutputCustomFields_RecIDEndsWith = null; public String BM_WorkOrderOutputCustomFields_RecIDContains = null; public String BM_WorkOrderOutputCustomFields_RecIDLike = null; public ArrayList BM_WorkOrderOutputCustomFields_RecIDBetween = null; public ArrayList BM_WorkOrderOutputCustomFields_RecIDIn = null; public String Contents = null; public String ContentsStartsWith = null; public String ContentsEndsWith = null; public String ContentsContains = null; public String ContentsLike = null; public ArrayList ContentsBetween = null; public ArrayList ContentsIn = null; public Date LastSavedDateTime = null; public Date LastSavedDateTimeGreaterThanOrEqualTo = null; public Date LastSavedDateTimeGreaterThan = null; public Date LastSavedDateTimeLessThan = null; public Date LastSavedDateTimeLessThanOrEqualTo = null; public Date LastSavedDateTimeNotEqualTo = null; public ArrayList LastSavedDateTimeBetween = null; public ArrayList LastSavedDateTimeIn = null; public String getRecID() { return RecID; } public BM_WorkOrderOutputCustomValuesQuery setRecID(String value) { this.RecID = value; return this; } public String getRecIDStartsWith() { return RecIDStartsWith; } public BM_WorkOrderOutputCustomValuesQuery setRecIDStartsWith(String value) { this.RecIDStartsWith = value; return this; } public String getRecIDEndsWith() { return RecIDEndsWith; } public BM_WorkOrderOutputCustomValuesQuery setRecIDEndsWith(String value) { this.RecIDEndsWith = value; return this; } public String getRecIDContains() { return RecIDContains; } public BM_WorkOrderOutputCustomValuesQuery setRecIDContains(String value) { this.RecIDContains = value; return this; } public String getRecIDLike() { return RecIDLike; } public BM_WorkOrderOutputCustomValuesQuery setRecIDLike(String value) { this.RecIDLike = value; return this; } public ArrayList getRecIDBetween() { return RecIDBetween; } public BM_WorkOrderOutputCustomValuesQuery setRecIDBetween(ArrayList value) { this.RecIDBetween = value; return this; } public ArrayList getRecIDIn() { return RecIDIn; } public BM_WorkOrderOutputCustomValuesQuery setRecIDIn(ArrayList value) { this.RecIDIn = value; return this; } public String getBmWorkOrderOutputsRecID() { return BM_WorkOrderOutputs_RecID; } public BM_WorkOrderOutputCustomValuesQuery setBmWorkOrderOutputsRecID(String value) { this.BM_WorkOrderOutputs_RecID = value; return this; } public String getBmWorkOrderOutputsRecIDStartsWith() { return BM_WorkOrderOutputs_RecIDStartsWith; } public BM_WorkOrderOutputCustomValuesQuery setBmWorkOrderOutputsRecIDStartsWith(String value) { this.BM_WorkOrderOutputs_RecIDStartsWith = value; return this; } public String getBmWorkOrderOutputsRecIDEndsWith() { return BM_WorkOrderOutputs_RecIDEndsWith; } public BM_WorkOrderOutputCustomValuesQuery setBmWorkOrderOutputsRecIDEndsWith(String value) { this.BM_WorkOrderOutputs_RecIDEndsWith = value; return this; } public String getBmWorkOrderOutputsRecIDContains() { return BM_WorkOrderOutputs_RecIDContains; } public BM_WorkOrderOutputCustomValuesQuery setBmWorkOrderOutputsRecIDContains(String value) { this.BM_WorkOrderOutputs_RecIDContains = value; return this; } public String getBmWorkOrderOutputsRecIDLike() { return BM_WorkOrderOutputs_RecIDLike; } public BM_WorkOrderOutputCustomValuesQuery setBmWorkOrderOutputsRecIDLike(String value) { this.BM_WorkOrderOutputs_RecIDLike = value; return this; } public ArrayList getBmWorkOrderOutputsRecIDBetween() { return BM_WorkOrderOutputs_RecIDBetween; } public BM_WorkOrderOutputCustomValuesQuery setBmWorkOrderOutputsRecIDBetween(ArrayList value) { this.BM_WorkOrderOutputs_RecIDBetween = value; return this; } public ArrayList getBmWorkOrderOutputsRecIDIn() { return BM_WorkOrderOutputs_RecIDIn; } public BM_WorkOrderOutputCustomValuesQuery setBmWorkOrderOutputsRecIDIn(ArrayList value) { this.BM_WorkOrderOutputs_RecIDIn = value; return this; } public String getBmWorkOrderOutputCustomFieldsRecID() { return BM_WorkOrderOutputCustomFields_RecID; } public BM_WorkOrderOutputCustomValuesQuery setBmWorkOrderOutputCustomFieldsRecID(String value) { this.BM_WorkOrderOutputCustomFields_RecID = value; return this; } public String getBmWorkOrderOutputCustomFieldsRecIDStartsWith() { return BM_WorkOrderOutputCustomFields_RecIDStartsWith; } public BM_WorkOrderOutputCustomValuesQuery setBmWorkOrderOutputCustomFieldsRecIDStartsWith(String value) { this.BM_WorkOrderOutputCustomFields_RecIDStartsWith = value; return this; } public String getBmWorkOrderOutputCustomFieldsRecIDEndsWith() { return BM_WorkOrderOutputCustomFields_RecIDEndsWith; } public BM_WorkOrderOutputCustomValuesQuery setBmWorkOrderOutputCustomFieldsRecIDEndsWith(String value) { this.BM_WorkOrderOutputCustomFields_RecIDEndsWith = value; return this; } public String getBmWorkOrderOutputCustomFieldsRecIDContains() { return BM_WorkOrderOutputCustomFields_RecIDContains; } public BM_WorkOrderOutputCustomValuesQuery setBmWorkOrderOutputCustomFieldsRecIDContains(String value) { this.BM_WorkOrderOutputCustomFields_RecIDContains = value; return this; } public String getBmWorkOrderOutputCustomFieldsRecIDLike() { return BM_WorkOrderOutputCustomFields_RecIDLike; } public BM_WorkOrderOutputCustomValuesQuery setBmWorkOrderOutputCustomFieldsRecIDLike(String value) { this.BM_WorkOrderOutputCustomFields_RecIDLike = value; return this; } public ArrayList getBmWorkOrderOutputCustomFieldsRecIDBetween() { return BM_WorkOrderOutputCustomFields_RecIDBetween; } public BM_WorkOrderOutputCustomValuesQuery setBmWorkOrderOutputCustomFieldsRecIDBetween(ArrayList value) { this.BM_WorkOrderOutputCustomFields_RecIDBetween = value; return this; } public ArrayList getBmWorkOrderOutputCustomFieldsRecIDIn() { return BM_WorkOrderOutputCustomFields_RecIDIn; } public BM_WorkOrderOutputCustomValuesQuery setBmWorkOrderOutputCustomFieldsRecIDIn(ArrayList value) { this.BM_WorkOrderOutputCustomFields_RecIDIn = value; return this; } public String getContents() { return Contents; } public BM_WorkOrderOutputCustomValuesQuery setContents(String value) { this.Contents = value; return this; } public String getContentsStartsWith() { return ContentsStartsWith; } public BM_WorkOrderOutputCustomValuesQuery setContentsStartsWith(String value) { this.ContentsStartsWith = value; return this; } public String getContentsEndsWith() { return ContentsEndsWith; } public BM_WorkOrderOutputCustomValuesQuery setContentsEndsWith(String value) { this.ContentsEndsWith = value; return this; } public String getContentsContains() { return ContentsContains; } public BM_WorkOrderOutputCustomValuesQuery setContentsContains(String value) { this.ContentsContains = value; return this; } public String getContentsLike() { return ContentsLike; } public BM_WorkOrderOutputCustomValuesQuery setContentsLike(String value) { this.ContentsLike = value; return this; } public ArrayList getContentsBetween() { return ContentsBetween; } public BM_WorkOrderOutputCustomValuesQuery setContentsBetween(ArrayList value) { this.ContentsBetween = value; return this; } public ArrayList getContentsIn() { return ContentsIn; } public BM_WorkOrderOutputCustomValuesQuery setContentsIn(ArrayList value) { this.ContentsIn = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public BM_WorkOrderOutputCustomValuesQuery setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getLastSavedDateTimeGreaterThanOrEqualTo() { return LastSavedDateTimeGreaterThanOrEqualTo; } public BM_WorkOrderOutputCustomValuesQuery setLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.LastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeGreaterThan() { return LastSavedDateTimeGreaterThan; } public BM_WorkOrderOutputCustomValuesQuery setLastSavedDateTimeGreaterThan(Date value) { this.LastSavedDateTimeGreaterThan = value; return this; } public Date getLastSavedDateTimeLessThan() { return LastSavedDateTimeLessThan; } public BM_WorkOrderOutputCustomValuesQuery setLastSavedDateTimeLessThan(Date value) { this.LastSavedDateTimeLessThan = value; return this; } public Date getLastSavedDateTimeLessThanOrEqualTo() { return LastSavedDateTimeLessThanOrEqualTo; } public BM_WorkOrderOutputCustomValuesQuery setLastSavedDateTimeLessThanOrEqualTo(Date value) { this.LastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeNotEqualTo() { return LastSavedDateTimeNotEqualTo; } public BM_WorkOrderOutputCustomValuesQuery setLastSavedDateTimeNotEqualTo(Date value) { this.LastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getLastSavedDateTimeBetween() { return LastSavedDateTimeBetween; } public BM_WorkOrderOutputCustomValuesQuery setLastSavedDateTimeBetween(ArrayList value) { this.LastSavedDateTimeBetween = value; return this; } public ArrayList getLastSavedDateTimeIn() { return LastSavedDateTimeIn; } public BM_WorkOrderOutputCustomValuesQuery setLastSavedDateTimeIn(ArrayList value) { this.LastSavedDateTimeIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class BM_WorkOrderOutputDetailsQuery extends QueryDb implements IReturn> { public String RecID = null; public String RecIDStartsWith = null; public String RecIDEndsWith = null; public String RecIDContains = null; public String RecIDLike = null; public ArrayList RecIDBetween = null; public ArrayList RecIDIn = null; public String Parent_RecID = null; public String Parent_RecIDStartsWith = null; public String Parent_RecIDEndsWith = null; public String Parent_RecIDContains = null; public String Parent_RecIDLike = null; public ArrayList Parent_RecIDBetween = null; public ArrayList Parent_RecIDIn = null; public String IN_SOH_LinkID = null; public String IN_SOH_LinkIDStartsWith = null; public String IN_SOH_LinkIDEndsWith = null; public String IN_SOH_LinkIDContains = null; public String IN_SOH_LinkIDLike = null; public ArrayList IN_SOH_LinkIDBetween = null; public ArrayList IN_SOH_LinkIDIn = null; public BigDecimal Cost = null; public BigDecimal CostGreaterThanOrEqualTo = null; public BigDecimal CostGreaterThan = null; public BigDecimal CostLessThan = null; public BigDecimal CostLessThanOrEqualTo = null; public BigDecimal CostNotEqualTo = null; public ArrayList CostBetween = null; public ArrayList CostIn = null; public BigDecimal SpecialPrice = null; public BigDecimal SpecialPriceGreaterThanOrEqualTo = null; public BigDecimal SpecialPriceGreaterThan = null; public BigDecimal SpecialPriceLessThan = null; public BigDecimal SpecialPriceLessThanOrEqualTo = null; public BigDecimal SpecialPriceNotEqualTo = null; public ArrayList SpecialPriceBetween = null; public ArrayList SpecialPriceIn = null; public BigDecimal Quantity = null; public BigDecimal QuantityGreaterThanOrEqualTo = null; public BigDecimal QuantityGreaterThan = null; public BigDecimal QuantityLessThan = null; public BigDecimal QuantityLessThanOrEqualTo = null; public BigDecimal QuantityNotEqualTo = null; public ArrayList QuantityBetween = null; public ArrayList QuantityIn = null; public String SerialNo = null; public String SerialNoStartsWith = null; public String SerialNoEndsWith = null; public String SerialNoContains = null; public String SerialNoLike = null; public ArrayList SerialNoBetween = null; public ArrayList SerialNoIn = null; public Date ExpiryDate = null; public Date ExpiryDateGreaterThanOrEqualTo = null; public Date ExpiryDateGreaterThan = null; public Date ExpiryDateLessThan = null; public Date ExpiryDateLessThanOrEqualTo = null; public Date ExpiryDateNotEqualTo = null; public ArrayList ExpiryDateBetween = null; public ArrayList ExpiryDateIn = null; public String BinLocation = null; public String BinLocationStartsWith = null; public String BinLocationEndsWith = null; public String BinLocationContains = null; public String BinLocationLike = null; public ArrayList BinLocationBetween = null; public ArrayList BinLocationIn = null; public Date LastSavedDateTime = null; public Date LastSavedDateTimeGreaterThanOrEqualTo = null; public Date LastSavedDateTimeGreaterThan = null; public Date LastSavedDateTimeLessThan = null; public Date LastSavedDateTimeLessThanOrEqualTo = null; public Date LastSavedDateTimeNotEqualTo = null; public ArrayList LastSavedDateTimeBetween = null; public ArrayList LastSavedDateTimeIn = null; public ArrayList RowHash = null; public Integer ItemNo = null; public Integer ItemNoGreaterThanOrEqualTo = null; public Integer ItemNoGreaterThan = null; public Integer ItemNoLessThan = null; public Integer ItemNoLessThanOrEqualTo = null; public Integer ItemNoNotEqualTo = null; public ArrayList ItemNoBetween = null; public ArrayList ItemNoIn = null; public String getRecID() { return RecID; } public BM_WorkOrderOutputDetailsQuery setRecID(String value) { this.RecID = value; return this; } public String getRecIDStartsWith() { return RecIDStartsWith; } public BM_WorkOrderOutputDetailsQuery setRecIDStartsWith(String value) { this.RecIDStartsWith = value; return this; } public String getRecIDEndsWith() { return RecIDEndsWith; } public BM_WorkOrderOutputDetailsQuery setRecIDEndsWith(String value) { this.RecIDEndsWith = value; return this; } public String getRecIDContains() { return RecIDContains; } public BM_WorkOrderOutputDetailsQuery setRecIDContains(String value) { this.RecIDContains = value; return this; } public String getRecIDLike() { return RecIDLike; } public BM_WorkOrderOutputDetailsQuery setRecIDLike(String value) { this.RecIDLike = value; return this; } public ArrayList getRecIDBetween() { return RecIDBetween; } public BM_WorkOrderOutputDetailsQuery setRecIDBetween(ArrayList value) { this.RecIDBetween = value; return this; } public ArrayList getRecIDIn() { return RecIDIn; } public BM_WorkOrderOutputDetailsQuery setRecIDIn(ArrayList value) { this.RecIDIn = value; return this; } public String getParentRecID() { return Parent_RecID; } public BM_WorkOrderOutputDetailsQuery setParentRecID(String value) { this.Parent_RecID = value; return this; } public String getParentRecIDStartsWith() { return Parent_RecIDStartsWith; } public BM_WorkOrderOutputDetailsQuery setParentRecIDStartsWith(String value) { this.Parent_RecIDStartsWith = value; return this; } public String getParentRecIDEndsWith() { return Parent_RecIDEndsWith; } public BM_WorkOrderOutputDetailsQuery setParentRecIDEndsWith(String value) { this.Parent_RecIDEndsWith = value; return this; } public String getParentRecIDContains() { return Parent_RecIDContains; } public BM_WorkOrderOutputDetailsQuery setParentRecIDContains(String value) { this.Parent_RecIDContains = value; return this; } public String getParentRecIDLike() { return Parent_RecIDLike; } public BM_WorkOrderOutputDetailsQuery setParentRecIDLike(String value) { this.Parent_RecIDLike = value; return this; } public ArrayList getParentRecIDBetween() { return Parent_RecIDBetween; } public BM_WorkOrderOutputDetailsQuery setParentRecIDBetween(ArrayList value) { this.Parent_RecIDBetween = value; return this; } public ArrayList getParentRecIDIn() { return Parent_RecIDIn; } public BM_WorkOrderOutputDetailsQuery setParentRecIDIn(ArrayList value) { this.Parent_RecIDIn = value; return this; } public String getInSohLinkID() { return IN_SOH_LinkID; } public BM_WorkOrderOutputDetailsQuery setInSohLinkID(String value) { this.IN_SOH_LinkID = value; return this; } public String getInSohLinkIDStartsWith() { return IN_SOH_LinkIDStartsWith; } public BM_WorkOrderOutputDetailsQuery setInSohLinkIDStartsWith(String value) { this.IN_SOH_LinkIDStartsWith = value; return this; } public String getInSohLinkIDEndsWith() { return IN_SOH_LinkIDEndsWith; } public BM_WorkOrderOutputDetailsQuery setInSohLinkIDEndsWith(String value) { this.IN_SOH_LinkIDEndsWith = value; return this; } public String getInSohLinkIDContains() { return IN_SOH_LinkIDContains; } public BM_WorkOrderOutputDetailsQuery setInSohLinkIDContains(String value) { this.IN_SOH_LinkIDContains = value; return this; } public String getInSohLinkIDLike() { return IN_SOH_LinkIDLike; } public BM_WorkOrderOutputDetailsQuery setInSohLinkIDLike(String value) { this.IN_SOH_LinkIDLike = value; return this; } public ArrayList getInSohLinkIDBetween() { return IN_SOH_LinkIDBetween; } public BM_WorkOrderOutputDetailsQuery setInSohLinkIDBetween(ArrayList value) { this.IN_SOH_LinkIDBetween = value; return this; } public ArrayList getInSohLinkIDIn() { return IN_SOH_LinkIDIn; } public BM_WorkOrderOutputDetailsQuery setInSohLinkIDIn(ArrayList value) { this.IN_SOH_LinkIDIn = value; return this; } public BigDecimal getCost() { return Cost; } public BM_WorkOrderOutputDetailsQuery setCost(BigDecimal value) { this.Cost = value; return this; } public BigDecimal getCostGreaterThanOrEqualTo() { return CostGreaterThanOrEqualTo; } public BM_WorkOrderOutputDetailsQuery setCostGreaterThanOrEqualTo(BigDecimal value) { this.CostGreaterThanOrEqualTo = value; return this; } public BigDecimal getCostGreaterThan() { return CostGreaterThan; } public BM_WorkOrderOutputDetailsQuery setCostGreaterThan(BigDecimal value) { this.CostGreaterThan = value; return this; } public BigDecimal getCostLessThan() { return CostLessThan; } public BM_WorkOrderOutputDetailsQuery setCostLessThan(BigDecimal value) { this.CostLessThan = value; return this; } public BigDecimal getCostLessThanOrEqualTo() { return CostLessThanOrEqualTo; } public BM_WorkOrderOutputDetailsQuery setCostLessThanOrEqualTo(BigDecimal value) { this.CostLessThanOrEqualTo = value; return this; } public BigDecimal getCostNotEqualTo() { return CostNotEqualTo; } public BM_WorkOrderOutputDetailsQuery setCostNotEqualTo(BigDecimal value) { this.CostNotEqualTo = value; return this; } public ArrayList getCostBetween() { return CostBetween; } public BM_WorkOrderOutputDetailsQuery setCostBetween(ArrayList value) { this.CostBetween = value; return this; } public ArrayList getCostIn() { return CostIn; } public BM_WorkOrderOutputDetailsQuery setCostIn(ArrayList value) { this.CostIn = value; return this; } public BigDecimal getSpecialPrice() { return SpecialPrice; } public BM_WorkOrderOutputDetailsQuery setSpecialPrice(BigDecimal value) { this.SpecialPrice = value; return this; } public BigDecimal getSpecialPriceGreaterThanOrEqualTo() { return SpecialPriceGreaterThanOrEqualTo; } public BM_WorkOrderOutputDetailsQuery setSpecialPriceGreaterThanOrEqualTo(BigDecimal value) { this.SpecialPriceGreaterThanOrEqualTo = value; return this; } public BigDecimal getSpecialPriceGreaterThan() { return SpecialPriceGreaterThan; } public BM_WorkOrderOutputDetailsQuery setSpecialPriceGreaterThan(BigDecimal value) { this.SpecialPriceGreaterThan = value; return this; } public BigDecimal getSpecialPriceLessThan() { return SpecialPriceLessThan; } public BM_WorkOrderOutputDetailsQuery setSpecialPriceLessThan(BigDecimal value) { this.SpecialPriceLessThan = value; return this; } public BigDecimal getSpecialPriceLessThanOrEqualTo() { return SpecialPriceLessThanOrEqualTo; } public BM_WorkOrderOutputDetailsQuery setSpecialPriceLessThanOrEqualTo(BigDecimal value) { this.SpecialPriceLessThanOrEqualTo = value; return this; } public BigDecimal getSpecialPriceNotEqualTo() { return SpecialPriceNotEqualTo; } public BM_WorkOrderOutputDetailsQuery setSpecialPriceNotEqualTo(BigDecimal value) { this.SpecialPriceNotEqualTo = value; return this; } public ArrayList getSpecialPriceBetween() { return SpecialPriceBetween; } public BM_WorkOrderOutputDetailsQuery setSpecialPriceBetween(ArrayList value) { this.SpecialPriceBetween = value; return this; } public ArrayList getSpecialPriceIn() { return SpecialPriceIn; } public BM_WorkOrderOutputDetailsQuery setSpecialPriceIn(ArrayList value) { this.SpecialPriceIn = value; return this; } public BigDecimal getQuantity() { return Quantity; } public BM_WorkOrderOutputDetailsQuery setQuantity(BigDecimal value) { this.Quantity = value; return this; } public BigDecimal getQuantityGreaterThanOrEqualTo() { return QuantityGreaterThanOrEqualTo; } public BM_WorkOrderOutputDetailsQuery setQuantityGreaterThanOrEqualTo(BigDecimal value) { this.QuantityGreaterThanOrEqualTo = value; return this; } public BigDecimal getQuantityGreaterThan() { return QuantityGreaterThan; } public BM_WorkOrderOutputDetailsQuery setQuantityGreaterThan(BigDecimal value) { this.QuantityGreaterThan = value; return this; } public BigDecimal getQuantityLessThan() { return QuantityLessThan; } public BM_WorkOrderOutputDetailsQuery setQuantityLessThan(BigDecimal value) { this.QuantityLessThan = value; return this; } public BigDecimal getQuantityLessThanOrEqualTo() { return QuantityLessThanOrEqualTo; } public BM_WorkOrderOutputDetailsQuery setQuantityLessThanOrEqualTo(BigDecimal value) { this.QuantityLessThanOrEqualTo = value; return this; } public BigDecimal getQuantityNotEqualTo() { return QuantityNotEqualTo; } public BM_WorkOrderOutputDetailsQuery setQuantityNotEqualTo(BigDecimal value) { this.QuantityNotEqualTo = value; return this; } public ArrayList getQuantityBetween() { return QuantityBetween; } public BM_WorkOrderOutputDetailsQuery setQuantityBetween(ArrayList value) { this.QuantityBetween = value; return this; } public ArrayList getQuantityIn() { return QuantityIn; } public BM_WorkOrderOutputDetailsQuery setQuantityIn(ArrayList value) { this.QuantityIn = value; return this; } public String getSerialNo() { return SerialNo; } public BM_WorkOrderOutputDetailsQuery setSerialNo(String value) { this.SerialNo = value; return this; } public String getSerialNoStartsWith() { return SerialNoStartsWith; } public BM_WorkOrderOutputDetailsQuery setSerialNoStartsWith(String value) { this.SerialNoStartsWith = value; return this; } public String getSerialNoEndsWith() { return SerialNoEndsWith; } public BM_WorkOrderOutputDetailsQuery setSerialNoEndsWith(String value) { this.SerialNoEndsWith = value; return this; } public String getSerialNoContains() { return SerialNoContains; } public BM_WorkOrderOutputDetailsQuery setSerialNoContains(String value) { this.SerialNoContains = value; return this; } public String getSerialNoLike() { return SerialNoLike; } public BM_WorkOrderOutputDetailsQuery setSerialNoLike(String value) { this.SerialNoLike = value; return this; } public ArrayList getSerialNoBetween() { return SerialNoBetween; } public BM_WorkOrderOutputDetailsQuery setSerialNoBetween(ArrayList value) { this.SerialNoBetween = value; return this; } public ArrayList getSerialNoIn() { return SerialNoIn; } public BM_WorkOrderOutputDetailsQuery setSerialNoIn(ArrayList value) { this.SerialNoIn = value; return this; } public Date getExpiryDate() { return ExpiryDate; } public BM_WorkOrderOutputDetailsQuery setExpiryDate(Date value) { this.ExpiryDate = value; return this; } public Date getExpiryDateGreaterThanOrEqualTo() { return ExpiryDateGreaterThanOrEqualTo; } public BM_WorkOrderOutputDetailsQuery setExpiryDateGreaterThanOrEqualTo(Date value) { this.ExpiryDateGreaterThanOrEqualTo = value; return this; } public Date getExpiryDateGreaterThan() { return ExpiryDateGreaterThan; } public BM_WorkOrderOutputDetailsQuery setExpiryDateGreaterThan(Date value) { this.ExpiryDateGreaterThan = value; return this; } public Date getExpiryDateLessThan() { return ExpiryDateLessThan; } public BM_WorkOrderOutputDetailsQuery setExpiryDateLessThan(Date value) { this.ExpiryDateLessThan = value; return this; } public Date getExpiryDateLessThanOrEqualTo() { return ExpiryDateLessThanOrEqualTo; } public BM_WorkOrderOutputDetailsQuery setExpiryDateLessThanOrEqualTo(Date value) { this.ExpiryDateLessThanOrEqualTo = value; return this; } public Date getExpiryDateNotEqualTo() { return ExpiryDateNotEqualTo; } public BM_WorkOrderOutputDetailsQuery setExpiryDateNotEqualTo(Date value) { this.ExpiryDateNotEqualTo = value; return this; } public ArrayList getExpiryDateBetween() { return ExpiryDateBetween; } public BM_WorkOrderOutputDetailsQuery setExpiryDateBetween(ArrayList value) { this.ExpiryDateBetween = value; return this; } public ArrayList getExpiryDateIn() { return ExpiryDateIn; } public BM_WorkOrderOutputDetailsQuery setExpiryDateIn(ArrayList value) { this.ExpiryDateIn = value; return this; } public String getBinLocation() { return BinLocation; } public BM_WorkOrderOutputDetailsQuery setBinLocation(String value) { this.BinLocation = value; return this; } public String getBinLocationStartsWith() { return BinLocationStartsWith; } public BM_WorkOrderOutputDetailsQuery setBinLocationStartsWith(String value) { this.BinLocationStartsWith = value; return this; } public String getBinLocationEndsWith() { return BinLocationEndsWith; } public BM_WorkOrderOutputDetailsQuery setBinLocationEndsWith(String value) { this.BinLocationEndsWith = value; return this; } public String getBinLocationContains() { return BinLocationContains; } public BM_WorkOrderOutputDetailsQuery setBinLocationContains(String value) { this.BinLocationContains = value; return this; } public String getBinLocationLike() { return BinLocationLike; } public BM_WorkOrderOutputDetailsQuery setBinLocationLike(String value) { this.BinLocationLike = value; return this; } public ArrayList getBinLocationBetween() { return BinLocationBetween; } public BM_WorkOrderOutputDetailsQuery setBinLocationBetween(ArrayList value) { this.BinLocationBetween = value; return this; } public ArrayList getBinLocationIn() { return BinLocationIn; } public BM_WorkOrderOutputDetailsQuery setBinLocationIn(ArrayList value) { this.BinLocationIn = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public BM_WorkOrderOutputDetailsQuery setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getLastSavedDateTimeGreaterThanOrEqualTo() { return LastSavedDateTimeGreaterThanOrEqualTo; } public BM_WorkOrderOutputDetailsQuery setLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.LastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeGreaterThan() { return LastSavedDateTimeGreaterThan; } public BM_WorkOrderOutputDetailsQuery setLastSavedDateTimeGreaterThan(Date value) { this.LastSavedDateTimeGreaterThan = value; return this; } public Date getLastSavedDateTimeLessThan() { return LastSavedDateTimeLessThan; } public BM_WorkOrderOutputDetailsQuery setLastSavedDateTimeLessThan(Date value) { this.LastSavedDateTimeLessThan = value; return this; } public Date getLastSavedDateTimeLessThanOrEqualTo() { return LastSavedDateTimeLessThanOrEqualTo; } public BM_WorkOrderOutputDetailsQuery setLastSavedDateTimeLessThanOrEqualTo(Date value) { this.LastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeNotEqualTo() { return LastSavedDateTimeNotEqualTo; } public BM_WorkOrderOutputDetailsQuery setLastSavedDateTimeNotEqualTo(Date value) { this.LastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getLastSavedDateTimeBetween() { return LastSavedDateTimeBetween; } public BM_WorkOrderOutputDetailsQuery setLastSavedDateTimeBetween(ArrayList value) { this.LastSavedDateTimeBetween = value; return this; } public ArrayList getLastSavedDateTimeIn() { return LastSavedDateTimeIn; } public BM_WorkOrderOutputDetailsQuery setLastSavedDateTimeIn(ArrayList value) { this.LastSavedDateTimeIn = value; return this; } public ArrayList getRowHash() { return RowHash; } public BM_WorkOrderOutputDetailsQuery setRowHash(ArrayList value) { this.RowHash = value; return this; } public Integer getItemNo() { return ItemNo; } public BM_WorkOrderOutputDetailsQuery setItemNo(Integer value) { this.ItemNo = value; return this; } public Integer getItemNoGreaterThanOrEqualTo() { return ItemNoGreaterThanOrEqualTo; } public BM_WorkOrderOutputDetailsQuery setItemNoGreaterThanOrEqualTo(Integer value) { this.ItemNoGreaterThanOrEqualTo = value; return this; } public Integer getItemNoGreaterThan() { return ItemNoGreaterThan; } public BM_WorkOrderOutputDetailsQuery setItemNoGreaterThan(Integer value) { this.ItemNoGreaterThan = value; return this; } public Integer getItemNoLessThan() { return ItemNoLessThan; } public BM_WorkOrderOutputDetailsQuery setItemNoLessThan(Integer value) { this.ItemNoLessThan = value; return this; } public Integer getItemNoLessThanOrEqualTo() { return ItemNoLessThanOrEqualTo; } public BM_WorkOrderOutputDetailsQuery setItemNoLessThanOrEqualTo(Integer value) { this.ItemNoLessThanOrEqualTo = value; return this; } public Integer getItemNoNotEqualTo() { return ItemNoNotEqualTo; } public BM_WorkOrderOutputDetailsQuery setItemNoNotEqualTo(Integer value) { this.ItemNoNotEqualTo = value; return this; } public ArrayList getItemNoBetween() { return ItemNoBetween; } public BM_WorkOrderOutputDetailsQuery setItemNoBetween(ArrayList value) { this.ItemNoBetween = value; return this; } public ArrayList getItemNoIn() { return ItemNoIn; } public BM_WorkOrderOutputDetailsQuery setItemNoIn(ArrayList value) { this.ItemNoIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class BM_WorkOrderOutputsQuery extends QueryDb implements IReturn> { public String RecID = null; public String RecIDStartsWith = null; public String RecIDEndsWith = null; public String RecIDContains = null; public String RecIDLike = null; public ArrayList RecIDBetween = null; public ArrayList RecIDIn = null; public String BM_WorkOrder_RecID = null; public String BM_WorkOrder_RecIDStartsWith = null; public String BM_WorkOrder_RecIDEndsWith = null; public String BM_WorkOrder_RecIDContains = null; public String BM_WorkOrder_RecIDLike = null; public ArrayList BM_WorkOrder_RecIDBetween = null; public ArrayList BM_WorkOrder_RecIDIn = null; public Integer ItemNo = null; public Integer ItemNoGreaterThanOrEqualTo = null; public Integer ItemNoGreaterThan = null; public Integer ItemNoLessThan = null; public Integer ItemNoLessThanOrEqualTo = null; public Integer ItemNoNotEqualTo = null; public ArrayList ItemNoBetween = null; public ArrayList ItemNoIn = null; public String InventoryID = null; public String InventoryIDStartsWith = null; public String InventoryIDEndsWith = null; public String InventoryIDContains = null; public String InventoryIDLike = null; public ArrayList InventoryIDBetween = null; public ArrayList InventoryIDIn = null; public Boolean IsRatio = null; public Boolean IsPrimary = null; public BigDecimal Quantity = null; public BigDecimal QuantityGreaterThanOrEqualTo = null; public BigDecimal QuantityGreaterThan = null; public BigDecimal QuantityLessThan = null; public BigDecimal QuantityLessThanOrEqualTo = null; public BigDecimal QuantityNotEqualTo = null; public ArrayList QuantityBetween = null; public ArrayList QuantityIn = null; public BigDecimal QuantityOutput = null; public BigDecimal QuantityOutputGreaterThanOrEqualTo = null; public BigDecimal QuantityOutputGreaterThan = null; public BigDecimal QuantityOutputLessThan = null; public BigDecimal QuantityOutputLessThanOrEqualTo = null; public BigDecimal QuantityOutputNotEqualTo = null; public ArrayList QuantityOutputBetween = null; public ArrayList QuantityOutputIn = null; public BigDecimal QuantityWrittenoff = null; public BigDecimal QuantityWrittenoffGreaterThanOrEqualTo = null; public BigDecimal QuantityWrittenoffGreaterThan = null; public BigDecimal QuantityWrittenoffLessThan = null; public BigDecimal QuantityWrittenoffLessThanOrEqualTo = null; public BigDecimal QuantityWrittenoffNotEqualTo = null; public ArrayList QuantityWrittenoffBetween = null; public ArrayList QuantityWrittenoffIn = null; public String Note = null; public String NoteStartsWith = null; public String NoteEndsWith = null; public String NoteContains = null; public String NoteLike = null; public ArrayList NoteBetween = null; public ArrayList NoteIn = null; public BigDecimal CostPercentage = null; public BigDecimal CostPercentageGreaterThanOrEqualTo = null; public BigDecimal CostPercentageGreaterThan = null; public BigDecimal CostPercentageLessThan = null; public BigDecimal CostPercentageLessThanOrEqualTo = null; public BigDecimal CostPercentageNotEqualTo = null; public ArrayList CostPercentageBetween = null; public ArrayList CostPercentageIn = null; public Date LastSavedDateTime = null; public Date LastSavedDateTimeGreaterThanOrEqualTo = null; public Date LastSavedDateTimeGreaterThan = null; public Date LastSavedDateTimeLessThan = null; public Date LastSavedDateTimeLessThanOrEqualTo = null; public Date LastSavedDateTimeNotEqualTo = null; public ArrayList LastSavedDateTimeBetween = null; public ArrayList LastSavedDateTimeIn = null; public ArrayList RowHash = null; public String getRecID() { return RecID; } public BM_WorkOrderOutputsQuery setRecID(String value) { this.RecID = value; return this; } public String getRecIDStartsWith() { return RecIDStartsWith; } public BM_WorkOrderOutputsQuery setRecIDStartsWith(String value) { this.RecIDStartsWith = value; return this; } public String getRecIDEndsWith() { return RecIDEndsWith; } public BM_WorkOrderOutputsQuery setRecIDEndsWith(String value) { this.RecIDEndsWith = value; return this; } public String getRecIDContains() { return RecIDContains; } public BM_WorkOrderOutputsQuery setRecIDContains(String value) { this.RecIDContains = value; return this; } public String getRecIDLike() { return RecIDLike; } public BM_WorkOrderOutputsQuery setRecIDLike(String value) { this.RecIDLike = value; return this; } public ArrayList getRecIDBetween() { return RecIDBetween; } public BM_WorkOrderOutputsQuery setRecIDBetween(ArrayList value) { this.RecIDBetween = value; return this; } public ArrayList getRecIDIn() { return RecIDIn; } public BM_WorkOrderOutputsQuery setRecIDIn(ArrayList value) { this.RecIDIn = value; return this; } public String getBmWorkOrderRecID() { return BM_WorkOrder_RecID; } public BM_WorkOrderOutputsQuery setBmWorkOrderRecID(String value) { this.BM_WorkOrder_RecID = value; return this; } public String getBmWorkOrderRecIDStartsWith() { return BM_WorkOrder_RecIDStartsWith; } public BM_WorkOrderOutputsQuery setBmWorkOrderRecIDStartsWith(String value) { this.BM_WorkOrder_RecIDStartsWith = value; return this; } public String getBmWorkOrderRecIDEndsWith() { return BM_WorkOrder_RecIDEndsWith; } public BM_WorkOrderOutputsQuery setBmWorkOrderRecIDEndsWith(String value) { this.BM_WorkOrder_RecIDEndsWith = value; return this; } public String getBmWorkOrderRecIDContains() { return BM_WorkOrder_RecIDContains; } public BM_WorkOrderOutputsQuery setBmWorkOrderRecIDContains(String value) { this.BM_WorkOrder_RecIDContains = value; return this; } public String getBmWorkOrderRecIDLike() { return BM_WorkOrder_RecIDLike; } public BM_WorkOrderOutputsQuery setBmWorkOrderRecIDLike(String value) { this.BM_WorkOrder_RecIDLike = value; return this; } public ArrayList getBmWorkOrderRecIDBetween() { return BM_WorkOrder_RecIDBetween; } public BM_WorkOrderOutputsQuery setBmWorkOrderRecIDBetween(ArrayList value) { this.BM_WorkOrder_RecIDBetween = value; return this; } public ArrayList getBmWorkOrderRecIDIn() { return BM_WorkOrder_RecIDIn; } public BM_WorkOrderOutputsQuery setBmWorkOrderRecIDIn(ArrayList value) { this.BM_WorkOrder_RecIDIn = value; return this; } public Integer getItemNo() { return ItemNo; } public BM_WorkOrderOutputsQuery setItemNo(Integer value) { this.ItemNo = value; return this; } public Integer getItemNoGreaterThanOrEqualTo() { return ItemNoGreaterThanOrEqualTo; } public BM_WorkOrderOutputsQuery setItemNoGreaterThanOrEqualTo(Integer value) { this.ItemNoGreaterThanOrEqualTo = value; return this; } public Integer getItemNoGreaterThan() { return ItemNoGreaterThan; } public BM_WorkOrderOutputsQuery setItemNoGreaterThan(Integer value) { this.ItemNoGreaterThan = value; return this; } public Integer getItemNoLessThan() { return ItemNoLessThan; } public BM_WorkOrderOutputsQuery setItemNoLessThan(Integer value) { this.ItemNoLessThan = value; return this; } public Integer getItemNoLessThanOrEqualTo() { return ItemNoLessThanOrEqualTo; } public BM_WorkOrderOutputsQuery setItemNoLessThanOrEqualTo(Integer value) { this.ItemNoLessThanOrEqualTo = value; return this; } public Integer getItemNoNotEqualTo() { return ItemNoNotEqualTo; } public BM_WorkOrderOutputsQuery setItemNoNotEqualTo(Integer value) { this.ItemNoNotEqualTo = value; return this; } public ArrayList getItemNoBetween() { return ItemNoBetween; } public BM_WorkOrderOutputsQuery setItemNoBetween(ArrayList value) { this.ItemNoBetween = value; return this; } public ArrayList getItemNoIn() { return ItemNoIn; } public BM_WorkOrderOutputsQuery setItemNoIn(ArrayList value) { this.ItemNoIn = value; return this; } public String getInventoryID() { return InventoryID; } public BM_WorkOrderOutputsQuery setInventoryID(String value) { this.InventoryID = value; return this; } public String getInventoryIDStartsWith() { return InventoryIDStartsWith; } public BM_WorkOrderOutputsQuery setInventoryIDStartsWith(String value) { this.InventoryIDStartsWith = value; return this; } public String getInventoryIDEndsWith() { return InventoryIDEndsWith; } public BM_WorkOrderOutputsQuery setInventoryIDEndsWith(String value) { this.InventoryIDEndsWith = value; return this; } public String getInventoryIDContains() { return InventoryIDContains; } public BM_WorkOrderOutputsQuery setInventoryIDContains(String value) { this.InventoryIDContains = value; return this; } public String getInventoryIDLike() { return InventoryIDLike; } public BM_WorkOrderOutputsQuery setInventoryIDLike(String value) { this.InventoryIDLike = value; return this; } public ArrayList getInventoryIDBetween() { return InventoryIDBetween; } public BM_WorkOrderOutputsQuery setInventoryIDBetween(ArrayList value) { this.InventoryIDBetween = value; return this; } public ArrayList getInventoryIDIn() { return InventoryIDIn; } public BM_WorkOrderOutputsQuery setInventoryIDIn(ArrayList value) { this.InventoryIDIn = value; return this; } public Boolean getIsRatio() { return IsRatio; } public BM_WorkOrderOutputsQuery setIsRatio(Boolean value) { this.IsRatio = value; return this; } public Boolean getIsPrimary() { return IsPrimary; } public BM_WorkOrderOutputsQuery setIsPrimary(Boolean value) { this.IsPrimary = value; return this; } public BigDecimal getQuantity() { return Quantity; } public BM_WorkOrderOutputsQuery setQuantity(BigDecimal value) { this.Quantity = value; return this; } public BigDecimal getQuantityGreaterThanOrEqualTo() { return QuantityGreaterThanOrEqualTo; } public BM_WorkOrderOutputsQuery setQuantityGreaterThanOrEqualTo(BigDecimal value) { this.QuantityGreaterThanOrEqualTo = value; return this; } public BigDecimal getQuantityGreaterThan() { return QuantityGreaterThan; } public BM_WorkOrderOutputsQuery setQuantityGreaterThan(BigDecimal value) { this.QuantityGreaterThan = value; return this; } public BigDecimal getQuantityLessThan() { return QuantityLessThan; } public BM_WorkOrderOutputsQuery setQuantityLessThan(BigDecimal value) { this.QuantityLessThan = value; return this; } public BigDecimal getQuantityLessThanOrEqualTo() { return QuantityLessThanOrEqualTo; } public BM_WorkOrderOutputsQuery setQuantityLessThanOrEqualTo(BigDecimal value) { this.QuantityLessThanOrEqualTo = value; return this; } public BigDecimal getQuantityNotEqualTo() { return QuantityNotEqualTo; } public BM_WorkOrderOutputsQuery setQuantityNotEqualTo(BigDecimal value) { this.QuantityNotEqualTo = value; return this; } public ArrayList getQuantityBetween() { return QuantityBetween; } public BM_WorkOrderOutputsQuery setQuantityBetween(ArrayList value) { this.QuantityBetween = value; return this; } public ArrayList getQuantityIn() { return QuantityIn; } public BM_WorkOrderOutputsQuery setQuantityIn(ArrayList value) { this.QuantityIn = value; return this; } public BigDecimal getQuantityOutput() { return QuantityOutput; } public BM_WorkOrderOutputsQuery setQuantityOutput(BigDecimal value) { this.QuantityOutput = value; return this; } public BigDecimal getQuantityOutputGreaterThanOrEqualTo() { return QuantityOutputGreaterThanOrEqualTo; } public BM_WorkOrderOutputsQuery setQuantityOutputGreaterThanOrEqualTo(BigDecimal value) { this.QuantityOutputGreaterThanOrEqualTo = value; return this; } public BigDecimal getQuantityOutputGreaterThan() { return QuantityOutputGreaterThan; } public BM_WorkOrderOutputsQuery setQuantityOutputGreaterThan(BigDecimal value) { this.QuantityOutputGreaterThan = value; return this; } public BigDecimal getQuantityOutputLessThan() { return QuantityOutputLessThan; } public BM_WorkOrderOutputsQuery setQuantityOutputLessThan(BigDecimal value) { this.QuantityOutputLessThan = value; return this; } public BigDecimal getQuantityOutputLessThanOrEqualTo() { return QuantityOutputLessThanOrEqualTo; } public BM_WorkOrderOutputsQuery setQuantityOutputLessThanOrEqualTo(BigDecimal value) { this.QuantityOutputLessThanOrEqualTo = value; return this; } public BigDecimal getQuantityOutputNotEqualTo() { return QuantityOutputNotEqualTo; } public BM_WorkOrderOutputsQuery setQuantityOutputNotEqualTo(BigDecimal value) { this.QuantityOutputNotEqualTo = value; return this; } public ArrayList getQuantityOutputBetween() { return QuantityOutputBetween; } public BM_WorkOrderOutputsQuery setQuantityOutputBetween(ArrayList value) { this.QuantityOutputBetween = value; return this; } public ArrayList getQuantityOutputIn() { return QuantityOutputIn; } public BM_WorkOrderOutputsQuery setQuantityOutputIn(ArrayList value) { this.QuantityOutputIn = value; return this; } public BigDecimal getQuantityWrittenoff() { return QuantityWrittenoff; } public BM_WorkOrderOutputsQuery setQuantityWrittenoff(BigDecimal value) { this.QuantityWrittenoff = value; return this; } public BigDecimal getQuantityWrittenoffGreaterThanOrEqualTo() { return QuantityWrittenoffGreaterThanOrEqualTo; } public BM_WorkOrderOutputsQuery setQuantityWrittenoffGreaterThanOrEqualTo(BigDecimal value) { this.QuantityWrittenoffGreaterThanOrEqualTo = value; return this; } public BigDecimal getQuantityWrittenoffGreaterThan() { return QuantityWrittenoffGreaterThan; } public BM_WorkOrderOutputsQuery setQuantityWrittenoffGreaterThan(BigDecimal value) { this.QuantityWrittenoffGreaterThan = value; return this; } public BigDecimal getQuantityWrittenoffLessThan() { return QuantityWrittenoffLessThan; } public BM_WorkOrderOutputsQuery setQuantityWrittenoffLessThan(BigDecimal value) { this.QuantityWrittenoffLessThan = value; return this; } public BigDecimal getQuantityWrittenoffLessThanOrEqualTo() { return QuantityWrittenoffLessThanOrEqualTo; } public BM_WorkOrderOutputsQuery setQuantityWrittenoffLessThanOrEqualTo(BigDecimal value) { this.QuantityWrittenoffLessThanOrEqualTo = value; return this; } public BigDecimal getQuantityWrittenoffNotEqualTo() { return QuantityWrittenoffNotEqualTo; } public BM_WorkOrderOutputsQuery setQuantityWrittenoffNotEqualTo(BigDecimal value) { this.QuantityWrittenoffNotEqualTo = value; return this; } public ArrayList getQuantityWrittenoffBetween() { return QuantityWrittenoffBetween; } public BM_WorkOrderOutputsQuery setQuantityWrittenoffBetween(ArrayList value) { this.QuantityWrittenoffBetween = value; return this; } public ArrayList getQuantityWrittenoffIn() { return QuantityWrittenoffIn; } public BM_WorkOrderOutputsQuery setQuantityWrittenoffIn(ArrayList value) { this.QuantityWrittenoffIn = value; return this; } public String getNote() { return Note; } public BM_WorkOrderOutputsQuery setNote(String value) { this.Note = value; return this; } public String getNoteStartsWith() { return NoteStartsWith; } public BM_WorkOrderOutputsQuery setNoteStartsWith(String value) { this.NoteStartsWith = value; return this; } public String getNoteEndsWith() { return NoteEndsWith; } public BM_WorkOrderOutputsQuery setNoteEndsWith(String value) { this.NoteEndsWith = value; return this; } public String getNoteContains() { return NoteContains; } public BM_WorkOrderOutputsQuery setNoteContains(String value) { this.NoteContains = value; return this; } public String getNoteLike() { return NoteLike; } public BM_WorkOrderOutputsQuery setNoteLike(String value) { this.NoteLike = value; return this; } public ArrayList getNoteBetween() { return NoteBetween; } public BM_WorkOrderOutputsQuery setNoteBetween(ArrayList value) { this.NoteBetween = value; return this; } public ArrayList getNoteIn() { return NoteIn; } public BM_WorkOrderOutputsQuery setNoteIn(ArrayList value) { this.NoteIn = value; return this; } public BigDecimal getCostPercentage() { return CostPercentage; } public BM_WorkOrderOutputsQuery setCostPercentage(BigDecimal value) { this.CostPercentage = value; return this; } public BigDecimal getCostPercentageGreaterThanOrEqualTo() { return CostPercentageGreaterThanOrEqualTo; } public BM_WorkOrderOutputsQuery setCostPercentageGreaterThanOrEqualTo(BigDecimal value) { this.CostPercentageGreaterThanOrEqualTo = value; return this; } public BigDecimal getCostPercentageGreaterThan() { return CostPercentageGreaterThan; } public BM_WorkOrderOutputsQuery setCostPercentageGreaterThan(BigDecimal value) { this.CostPercentageGreaterThan = value; return this; } public BigDecimal getCostPercentageLessThan() { return CostPercentageLessThan; } public BM_WorkOrderOutputsQuery setCostPercentageLessThan(BigDecimal value) { this.CostPercentageLessThan = value; return this; } public BigDecimal getCostPercentageLessThanOrEqualTo() { return CostPercentageLessThanOrEqualTo; } public BM_WorkOrderOutputsQuery setCostPercentageLessThanOrEqualTo(BigDecimal value) { this.CostPercentageLessThanOrEqualTo = value; return this; } public BigDecimal getCostPercentageNotEqualTo() { return CostPercentageNotEqualTo; } public BM_WorkOrderOutputsQuery setCostPercentageNotEqualTo(BigDecimal value) { this.CostPercentageNotEqualTo = value; return this; } public ArrayList getCostPercentageBetween() { return CostPercentageBetween; } public BM_WorkOrderOutputsQuery setCostPercentageBetween(ArrayList value) { this.CostPercentageBetween = value; return this; } public ArrayList getCostPercentageIn() { return CostPercentageIn; } public BM_WorkOrderOutputsQuery setCostPercentageIn(ArrayList value) { this.CostPercentageIn = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public BM_WorkOrderOutputsQuery setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getLastSavedDateTimeGreaterThanOrEqualTo() { return LastSavedDateTimeGreaterThanOrEqualTo; } public BM_WorkOrderOutputsQuery setLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.LastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeGreaterThan() { return LastSavedDateTimeGreaterThan; } public BM_WorkOrderOutputsQuery setLastSavedDateTimeGreaterThan(Date value) { this.LastSavedDateTimeGreaterThan = value; return this; } public Date getLastSavedDateTimeLessThan() { return LastSavedDateTimeLessThan; } public BM_WorkOrderOutputsQuery setLastSavedDateTimeLessThan(Date value) { this.LastSavedDateTimeLessThan = value; return this; } public Date getLastSavedDateTimeLessThanOrEqualTo() { return LastSavedDateTimeLessThanOrEqualTo; } public BM_WorkOrderOutputsQuery setLastSavedDateTimeLessThanOrEqualTo(Date value) { this.LastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeNotEqualTo() { return LastSavedDateTimeNotEqualTo; } public BM_WorkOrderOutputsQuery setLastSavedDateTimeNotEqualTo(Date value) { this.LastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getLastSavedDateTimeBetween() { return LastSavedDateTimeBetween; } public BM_WorkOrderOutputsQuery setLastSavedDateTimeBetween(ArrayList value) { this.LastSavedDateTimeBetween = value; return this; } public ArrayList getLastSavedDateTimeIn() { return LastSavedDateTimeIn; } public BM_WorkOrderOutputsQuery setLastSavedDateTimeIn(ArrayList value) { this.LastSavedDateTimeIn = value; return this; } public ArrayList getRowHash() { return RowHash; } public BM_WorkOrderOutputsQuery setRowHash(ArrayList value) { this.RowHash = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class BM_WorkOrderOutputWastageDetailsQuery extends QueryDb implements IReturn> { public String RecID = null; public String RecIDStartsWith = null; public String RecIDEndsWith = null; public String RecIDContains = null; public String RecIDLike = null; public ArrayList RecIDBetween = null; public ArrayList RecIDIn = null; public String Parent_RecID = null; public String Parent_RecIDStartsWith = null; public String Parent_RecIDEndsWith = null; public String Parent_RecIDContains = null; public String Parent_RecIDLike = null; public ArrayList Parent_RecIDBetween = null; public ArrayList Parent_RecIDIn = null; public String IN_SOH_LinkID = null; public String IN_SOH_LinkIDStartsWith = null; public String IN_SOH_LinkIDEndsWith = null; public String IN_SOH_LinkIDContains = null; public String IN_SOH_LinkIDLike = null; public ArrayList IN_SOH_LinkIDBetween = null; public ArrayList IN_SOH_LinkIDIn = null; public BigDecimal Cost = null; public BigDecimal CostGreaterThanOrEqualTo = null; public BigDecimal CostGreaterThan = null; public BigDecimal CostLessThan = null; public BigDecimal CostLessThanOrEqualTo = null; public BigDecimal CostNotEqualTo = null; public ArrayList CostBetween = null; public ArrayList CostIn = null; public BigDecimal SpecialPrice = null; public BigDecimal SpecialPriceGreaterThanOrEqualTo = null; public BigDecimal SpecialPriceGreaterThan = null; public BigDecimal SpecialPriceLessThan = null; public BigDecimal SpecialPriceLessThanOrEqualTo = null; public BigDecimal SpecialPriceNotEqualTo = null; public ArrayList SpecialPriceBetween = null; public ArrayList SpecialPriceIn = null; public BigDecimal Quantity = null; public BigDecimal QuantityGreaterThanOrEqualTo = null; public BigDecimal QuantityGreaterThan = null; public BigDecimal QuantityLessThan = null; public BigDecimal QuantityLessThanOrEqualTo = null; public BigDecimal QuantityNotEqualTo = null; public ArrayList QuantityBetween = null; public ArrayList QuantityIn = null; public String SerialNo = null; public String SerialNoStartsWith = null; public String SerialNoEndsWith = null; public String SerialNoContains = null; public String SerialNoLike = null; public ArrayList SerialNoBetween = null; public ArrayList SerialNoIn = null; public Date ExpiryDate = null; public Date ExpiryDateGreaterThanOrEqualTo = null; public Date ExpiryDateGreaterThan = null; public Date ExpiryDateLessThan = null; public Date ExpiryDateLessThanOrEqualTo = null; public Date ExpiryDateNotEqualTo = null; public ArrayList ExpiryDateBetween = null; public ArrayList ExpiryDateIn = null; public String BinLocation = null; public String BinLocationStartsWith = null; public String BinLocationEndsWith = null; public String BinLocationContains = null; public String BinLocationLike = null; public ArrayList BinLocationBetween = null; public ArrayList BinLocationIn = null; public Date LastSavedDateTime = null; public Date LastSavedDateTimeGreaterThanOrEqualTo = null; public Date LastSavedDateTimeGreaterThan = null; public Date LastSavedDateTimeLessThan = null; public Date LastSavedDateTimeLessThanOrEqualTo = null; public Date LastSavedDateTimeNotEqualTo = null; public ArrayList LastSavedDateTimeBetween = null; public ArrayList LastSavedDateTimeIn = null; public ArrayList RowHash = null; public Integer ItemNo = null; public Integer ItemNoGreaterThanOrEqualTo = null; public Integer ItemNoGreaterThan = null; public Integer ItemNoLessThan = null; public Integer ItemNoLessThanOrEqualTo = null; public Integer ItemNoNotEqualTo = null; public ArrayList ItemNoBetween = null; public ArrayList ItemNoIn = null; public String getRecID() { return RecID; } public BM_WorkOrderOutputWastageDetailsQuery setRecID(String value) { this.RecID = value; return this; } public String getRecIDStartsWith() { return RecIDStartsWith; } public BM_WorkOrderOutputWastageDetailsQuery setRecIDStartsWith(String value) { this.RecIDStartsWith = value; return this; } public String getRecIDEndsWith() { return RecIDEndsWith; } public BM_WorkOrderOutputWastageDetailsQuery setRecIDEndsWith(String value) { this.RecIDEndsWith = value; return this; } public String getRecIDContains() { return RecIDContains; } public BM_WorkOrderOutputWastageDetailsQuery setRecIDContains(String value) { this.RecIDContains = value; return this; } public String getRecIDLike() { return RecIDLike; } public BM_WorkOrderOutputWastageDetailsQuery setRecIDLike(String value) { this.RecIDLike = value; return this; } public ArrayList getRecIDBetween() { return RecIDBetween; } public BM_WorkOrderOutputWastageDetailsQuery setRecIDBetween(ArrayList value) { this.RecIDBetween = value; return this; } public ArrayList getRecIDIn() { return RecIDIn; } public BM_WorkOrderOutputWastageDetailsQuery setRecIDIn(ArrayList value) { this.RecIDIn = value; return this; } public String getParentRecID() { return Parent_RecID; } public BM_WorkOrderOutputWastageDetailsQuery setParentRecID(String value) { this.Parent_RecID = value; return this; } public String getParentRecIDStartsWith() { return Parent_RecIDStartsWith; } public BM_WorkOrderOutputWastageDetailsQuery setParentRecIDStartsWith(String value) { this.Parent_RecIDStartsWith = value; return this; } public String getParentRecIDEndsWith() { return Parent_RecIDEndsWith; } public BM_WorkOrderOutputWastageDetailsQuery setParentRecIDEndsWith(String value) { this.Parent_RecIDEndsWith = value; return this; } public String getParentRecIDContains() { return Parent_RecIDContains; } public BM_WorkOrderOutputWastageDetailsQuery setParentRecIDContains(String value) { this.Parent_RecIDContains = value; return this; } public String getParentRecIDLike() { return Parent_RecIDLike; } public BM_WorkOrderOutputWastageDetailsQuery setParentRecIDLike(String value) { this.Parent_RecIDLike = value; return this; } public ArrayList getParentRecIDBetween() { return Parent_RecIDBetween; } public BM_WorkOrderOutputWastageDetailsQuery setParentRecIDBetween(ArrayList value) { this.Parent_RecIDBetween = value; return this; } public ArrayList getParentRecIDIn() { return Parent_RecIDIn; } public BM_WorkOrderOutputWastageDetailsQuery setParentRecIDIn(ArrayList value) { this.Parent_RecIDIn = value; return this; } public String getInSohLinkID() { return IN_SOH_LinkID; } public BM_WorkOrderOutputWastageDetailsQuery setInSohLinkID(String value) { this.IN_SOH_LinkID = value; return this; } public String getInSohLinkIDStartsWith() { return IN_SOH_LinkIDStartsWith; } public BM_WorkOrderOutputWastageDetailsQuery setInSohLinkIDStartsWith(String value) { this.IN_SOH_LinkIDStartsWith = value; return this; } public String getInSohLinkIDEndsWith() { return IN_SOH_LinkIDEndsWith; } public BM_WorkOrderOutputWastageDetailsQuery setInSohLinkIDEndsWith(String value) { this.IN_SOH_LinkIDEndsWith = value; return this; } public String getInSohLinkIDContains() { return IN_SOH_LinkIDContains; } public BM_WorkOrderOutputWastageDetailsQuery setInSohLinkIDContains(String value) { this.IN_SOH_LinkIDContains = value; return this; } public String getInSohLinkIDLike() { return IN_SOH_LinkIDLike; } public BM_WorkOrderOutputWastageDetailsQuery setInSohLinkIDLike(String value) { this.IN_SOH_LinkIDLike = value; return this; } public ArrayList getInSohLinkIDBetween() { return IN_SOH_LinkIDBetween; } public BM_WorkOrderOutputWastageDetailsQuery setInSohLinkIDBetween(ArrayList value) { this.IN_SOH_LinkIDBetween = value; return this; } public ArrayList getInSohLinkIDIn() { return IN_SOH_LinkIDIn; } public BM_WorkOrderOutputWastageDetailsQuery setInSohLinkIDIn(ArrayList value) { this.IN_SOH_LinkIDIn = value; return this; } public BigDecimal getCost() { return Cost; } public BM_WorkOrderOutputWastageDetailsQuery setCost(BigDecimal value) { this.Cost = value; return this; } public BigDecimal getCostGreaterThanOrEqualTo() { return CostGreaterThanOrEqualTo; } public BM_WorkOrderOutputWastageDetailsQuery setCostGreaterThanOrEqualTo(BigDecimal value) { this.CostGreaterThanOrEqualTo = value; return this; } public BigDecimal getCostGreaterThan() { return CostGreaterThan; } public BM_WorkOrderOutputWastageDetailsQuery setCostGreaterThan(BigDecimal value) { this.CostGreaterThan = value; return this; } public BigDecimal getCostLessThan() { return CostLessThan; } public BM_WorkOrderOutputWastageDetailsQuery setCostLessThan(BigDecimal value) { this.CostLessThan = value; return this; } public BigDecimal getCostLessThanOrEqualTo() { return CostLessThanOrEqualTo; } public BM_WorkOrderOutputWastageDetailsQuery setCostLessThanOrEqualTo(BigDecimal value) { this.CostLessThanOrEqualTo = value; return this; } public BigDecimal getCostNotEqualTo() { return CostNotEqualTo; } public BM_WorkOrderOutputWastageDetailsQuery setCostNotEqualTo(BigDecimal value) { this.CostNotEqualTo = value; return this; } public ArrayList getCostBetween() { return CostBetween; } public BM_WorkOrderOutputWastageDetailsQuery setCostBetween(ArrayList value) { this.CostBetween = value; return this; } public ArrayList getCostIn() { return CostIn; } public BM_WorkOrderOutputWastageDetailsQuery setCostIn(ArrayList value) { this.CostIn = value; return this; } public BigDecimal getSpecialPrice() { return SpecialPrice; } public BM_WorkOrderOutputWastageDetailsQuery setSpecialPrice(BigDecimal value) { this.SpecialPrice = value; return this; } public BigDecimal getSpecialPriceGreaterThanOrEqualTo() { return SpecialPriceGreaterThanOrEqualTo; } public BM_WorkOrderOutputWastageDetailsQuery setSpecialPriceGreaterThanOrEqualTo(BigDecimal value) { this.SpecialPriceGreaterThanOrEqualTo = value; return this; } public BigDecimal getSpecialPriceGreaterThan() { return SpecialPriceGreaterThan; } public BM_WorkOrderOutputWastageDetailsQuery setSpecialPriceGreaterThan(BigDecimal value) { this.SpecialPriceGreaterThan = value; return this; } public BigDecimal getSpecialPriceLessThan() { return SpecialPriceLessThan; } public BM_WorkOrderOutputWastageDetailsQuery setSpecialPriceLessThan(BigDecimal value) { this.SpecialPriceLessThan = value; return this; } public BigDecimal getSpecialPriceLessThanOrEqualTo() { return SpecialPriceLessThanOrEqualTo; } public BM_WorkOrderOutputWastageDetailsQuery setSpecialPriceLessThanOrEqualTo(BigDecimal value) { this.SpecialPriceLessThanOrEqualTo = value; return this; } public BigDecimal getSpecialPriceNotEqualTo() { return SpecialPriceNotEqualTo; } public BM_WorkOrderOutputWastageDetailsQuery setSpecialPriceNotEqualTo(BigDecimal value) { this.SpecialPriceNotEqualTo = value; return this; } public ArrayList getSpecialPriceBetween() { return SpecialPriceBetween; } public BM_WorkOrderOutputWastageDetailsQuery setSpecialPriceBetween(ArrayList value) { this.SpecialPriceBetween = value; return this; } public ArrayList getSpecialPriceIn() { return SpecialPriceIn; } public BM_WorkOrderOutputWastageDetailsQuery setSpecialPriceIn(ArrayList value) { this.SpecialPriceIn = value; return this; } public BigDecimal getQuantity() { return Quantity; } public BM_WorkOrderOutputWastageDetailsQuery setQuantity(BigDecimal value) { this.Quantity = value; return this; } public BigDecimal getQuantityGreaterThanOrEqualTo() { return QuantityGreaterThanOrEqualTo; } public BM_WorkOrderOutputWastageDetailsQuery setQuantityGreaterThanOrEqualTo(BigDecimal value) { this.QuantityGreaterThanOrEqualTo = value; return this; } public BigDecimal getQuantityGreaterThan() { return QuantityGreaterThan; } public BM_WorkOrderOutputWastageDetailsQuery setQuantityGreaterThan(BigDecimal value) { this.QuantityGreaterThan = value; return this; } public BigDecimal getQuantityLessThan() { return QuantityLessThan; } public BM_WorkOrderOutputWastageDetailsQuery setQuantityLessThan(BigDecimal value) { this.QuantityLessThan = value; return this; } public BigDecimal getQuantityLessThanOrEqualTo() { return QuantityLessThanOrEqualTo; } public BM_WorkOrderOutputWastageDetailsQuery setQuantityLessThanOrEqualTo(BigDecimal value) { this.QuantityLessThanOrEqualTo = value; return this; } public BigDecimal getQuantityNotEqualTo() { return QuantityNotEqualTo; } public BM_WorkOrderOutputWastageDetailsQuery setQuantityNotEqualTo(BigDecimal value) { this.QuantityNotEqualTo = value; return this; } public ArrayList getQuantityBetween() { return QuantityBetween; } public BM_WorkOrderOutputWastageDetailsQuery setQuantityBetween(ArrayList value) { this.QuantityBetween = value; return this; } public ArrayList getQuantityIn() { return QuantityIn; } public BM_WorkOrderOutputWastageDetailsQuery setQuantityIn(ArrayList value) { this.QuantityIn = value; return this; } public String getSerialNo() { return SerialNo; } public BM_WorkOrderOutputWastageDetailsQuery setSerialNo(String value) { this.SerialNo = value; return this; } public String getSerialNoStartsWith() { return SerialNoStartsWith; } public BM_WorkOrderOutputWastageDetailsQuery setSerialNoStartsWith(String value) { this.SerialNoStartsWith = value; return this; } public String getSerialNoEndsWith() { return SerialNoEndsWith; } public BM_WorkOrderOutputWastageDetailsQuery setSerialNoEndsWith(String value) { this.SerialNoEndsWith = value; return this; } public String getSerialNoContains() { return SerialNoContains; } public BM_WorkOrderOutputWastageDetailsQuery setSerialNoContains(String value) { this.SerialNoContains = value; return this; } public String getSerialNoLike() { return SerialNoLike; } public BM_WorkOrderOutputWastageDetailsQuery setSerialNoLike(String value) { this.SerialNoLike = value; return this; } public ArrayList getSerialNoBetween() { return SerialNoBetween; } public BM_WorkOrderOutputWastageDetailsQuery setSerialNoBetween(ArrayList value) { this.SerialNoBetween = value; return this; } public ArrayList getSerialNoIn() { return SerialNoIn; } public BM_WorkOrderOutputWastageDetailsQuery setSerialNoIn(ArrayList value) { this.SerialNoIn = value; return this; } public Date getExpiryDate() { return ExpiryDate; } public BM_WorkOrderOutputWastageDetailsQuery setExpiryDate(Date value) { this.ExpiryDate = value; return this; } public Date getExpiryDateGreaterThanOrEqualTo() { return ExpiryDateGreaterThanOrEqualTo; } public BM_WorkOrderOutputWastageDetailsQuery setExpiryDateGreaterThanOrEqualTo(Date value) { this.ExpiryDateGreaterThanOrEqualTo = value; return this; } public Date getExpiryDateGreaterThan() { return ExpiryDateGreaterThan; } public BM_WorkOrderOutputWastageDetailsQuery setExpiryDateGreaterThan(Date value) { this.ExpiryDateGreaterThan = value; return this; } public Date getExpiryDateLessThan() { return ExpiryDateLessThan; } public BM_WorkOrderOutputWastageDetailsQuery setExpiryDateLessThan(Date value) { this.ExpiryDateLessThan = value; return this; } public Date getExpiryDateLessThanOrEqualTo() { return ExpiryDateLessThanOrEqualTo; } public BM_WorkOrderOutputWastageDetailsQuery setExpiryDateLessThanOrEqualTo(Date value) { this.ExpiryDateLessThanOrEqualTo = value; return this; } public Date getExpiryDateNotEqualTo() { return ExpiryDateNotEqualTo; } public BM_WorkOrderOutputWastageDetailsQuery setExpiryDateNotEqualTo(Date value) { this.ExpiryDateNotEqualTo = value; return this; } public ArrayList getExpiryDateBetween() { return ExpiryDateBetween; } public BM_WorkOrderOutputWastageDetailsQuery setExpiryDateBetween(ArrayList value) { this.ExpiryDateBetween = value; return this; } public ArrayList getExpiryDateIn() { return ExpiryDateIn; } public BM_WorkOrderOutputWastageDetailsQuery setExpiryDateIn(ArrayList value) { this.ExpiryDateIn = value; return this; } public String getBinLocation() { return BinLocation; } public BM_WorkOrderOutputWastageDetailsQuery setBinLocation(String value) { this.BinLocation = value; return this; } public String getBinLocationStartsWith() { return BinLocationStartsWith; } public BM_WorkOrderOutputWastageDetailsQuery setBinLocationStartsWith(String value) { this.BinLocationStartsWith = value; return this; } public String getBinLocationEndsWith() { return BinLocationEndsWith; } public BM_WorkOrderOutputWastageDetailsQuery setBinLocationEndsWith(String value) { this.BinLocationEndsWith = value; return this; } public String getBinLocationContains() { return BinLocationContains; } public BM_WorkOrderOutputWastageDetailsQuery setBinLocationContains(String value) { this.BinLocationContains = value; return this; } public String getBinLocationLike() { return BinLocationLike; } public BM_WorkOrderOutputWastageDetailsQuery setBinLocationLike(String value) { this.BinLocationLike = value; return this; } public ArrayList getBinLocationBetween() { return BinLocationBetween; } public BM_WorkOrderOutputWastageDetailsQuery setBinLocationBetween(ArrayList value) { this.BinLocationBetween = value; return this; } public ArrayList getBinLocationIn() { return BinLocationIn; } public BM_WorkOrderOutputWastageDetailsQuery setBinLocationIn(ArrayList value) { this.BinLocationIn = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public BM_WorkOrderOutputWastageDetailsQuery setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getLastSavedDateTimeGreaterThanOrEqualTo() { return LastSavedDateTimeGreaterThanOrEqualTo; } public BM_WorkOrderOutputWastageDetailsQuery setLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.LastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeGreaterThan() { return LastSavedDateTimeGreaterThan; } public BM_WorkOrderOutputWastageDetailsQuery setLastSavedDateTimeGreaterThan(Date value) { this.LastSavedDateTimeGreaterThan = value; return this; } public Date getLastSavedDateTimeLessThan() { return LastSavedDateTimeLessThan; } public BM_WorkOrderOutputWastageDetailsQuery setLastSavedDateTimeLessThan(Date value) { this.LastSavedDateTimeLessThan = value; return this; } public Date getLastSavedDateTimeLessThanOrEqualTo() { return LastSavedDateTimeLessThanOrEqualTo; } public BM_WorkOrderOutputWastageDetailsQuery setLastSavedDateTimeLessThanOrEqualTo(Date value) { this.LastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeNotEqualTo() { return LastSavedDateTimeNotEqualTo; } public BM_WorkOrderOutputWastageDetailsQuery setLastSavedDateTimeNotEqualTo(Date value) { this.LastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getLastSavedDateTimeBetween() { return LastSavedDateTimeBetween; } public BM_WorkOrderOutputWastageDetailsQuery setLastSavedDateTimeBetween(ArrayList value) { this.LastSavedDateTimeBetween = value; return this; } public ArrayList getLastSavedDateTimeIn() { return LastSavedDateTimeIn; } public BM_WorkOrderOutputWastageDetailsQuery setLastSavedDateTimeIn(ArrayList value) { this.LastSavedDateTimeIn = value; return this; } public ArrayList getRowHash() { return RowHash; } public BM_WorkOrderOutputWastageDetailsQuery setRowHash(ArrayList value) { this.RowHash = value; return this; } public Integer getItemNo() { return ItemNo; } public BM_WorkOrderOutputWastageDetailsQuery setItemNo(Integer value) { this.ItemNo = value; return this; } public Integer getItemNoGreaterThanOrEqualTo() { return ItemNoGreaterThanOrEqualTo; } public BM_WorkOrderOutputWastageDetailsQuery setItemNoGreaterThanOrEqualTo(Integer value) { this.ItemNoGreaterThanOrEqualTo = value; return this; } public Integer getItemNoGreaterThan() { return ItemNoGreaterThan; } public BM_WorkOrderOutputWastageDetailsQuery setItemNoGreaterThan(Integer value) { this.ItemNoGreaterThan = value; return this; } public Integer getItemNoLessThan() { return ItemNoLessThan; } public BM_WorkOrderOutputWastageDetailsQuery setItemNoLessThan(Integer value) { this.ItemNoLessThan = value; return this; } public Integer getItemNoLessThanOrEqualTo() { return ItemNoLessThanOrEqualTo; } public BM_WorkOrderOutputWastageDetailsQuery setItemNoLessThanOrEqualTo(Integer value) { this.ItemNoLessThanOrEqualTo = value; return this; } public Integer getItemNoNotEqualTo() { return ItemNoNotEqualTo; } public BM_WorkOrderOutputWastageDetailsQuery setItemNoNotEqualTo(Integer value) { this.ItemNoNotEqualTo = value; return this; } public ArrayList getItemNoBetween() { return ItemNoBetween; } public BM_WorkOrderOutputWastageDetailsQuery setItemNoBetween(ArrayList value) { this.ItemNoBetween = value; return this; } public ArrayList getItemNoIn() { return ItemNoIn; } public BM_WorkOrderOutputWastageDetailsQuery setItemNoIn(ArrayList value) { this.ItemNoIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class BM_WorkOrderStageCustomFieldsQuery extends QueryDb implements IReturn> { public String RecID = null; public String RecIDStartsWith = null; public String RecIDEndsWith = null; public String RecIDContains = null; public String RecIDLike = null; public ArrayList RecIDBetween = null; public ArrayList RecIDIn = null; public String SettingName = null; public String SettingNameStartsWith = null; public String SettingNameEndsWith = null; public String SettingNameContains = null; public String SettingNameLike = null; public ArrayList SettingNameBetween = null; public ArrayList SettingNameIn = null; public String SettingDescription = null; public String SettingDescriptionStartsWith = null; public String SettingDescriptionEndsWith = null; public String SettingDescriptionContains = null; public String SettingDescriptionLike = null; public ArrayList SettingDescriptionBetween = null; public ArrayList SettingDescriptionIn = null; public Integer CellType = null; public Integer CellTypeGreaterThanOrEqualTo = null; public Integer CellTypeGreaterThan = null; public Integer CellTypeLessThan = null; public Integer CellTypeLessThanOrEqualTo = null; public Integer CellTypeNotEqualTo = null; public ArrayList CellTypeBetween = null; public ArrayList CellTypeIn = null; public String FieldParameter = null; public String FieldParameterStartsWith = null; public String FieldParameterEndsWith = null; public String FieldParameterContains = null; public String FieldParameterLike = null; public ArrayList FieldParameterBetween = null; public ArrayList FieldParameterIn = null; public UUID SY_Plugin_RecID = null; public ArrayList SY_Plugin_RecIDIn = null; public Date LastSavedDateTime = null; public Date LastSavedDateTimeGreaterThanOrEqualTo = null; public Date LastSavedDateTimeGreaterThan = null; public Date LastSavedDateTimeLessThan = null; public Date LastSavedDateTimeLessThanOrEqualTo = null; public Date LastSavedDateTimeNotEqualTo = null; public ArrayList LastSavedDateTimeBetween = null; public ArrayList LastSavedDateTimeIn = null; public Integer DisplayOrder = null; public Integer DisplayOrderGreaterThanOrEqualTo = null; public Integer DisplayOrderGreaterThan = null; public Integer DisplayOrderLessThan = null; public Integer DisplayOrderLessThanOrEqualTo = null; public Integer DisplayOrderNotEqualTo = null; public ArrayList DisplayOrderBetween = null; public ArrayList DisplayOrderIn = null; public String getRecID() { return RecID; } public BM_WorkOrderStageCustomFieldsQuery setRecID(String value) { this.RecID = value; return this; } public String getRecIDStartsWith() { return RecIDStartsWith; } public BM_WorkOrderStageCustomFieldsQuery setRecIDStartsWith(String value) { this.RecIDStartsWith = value; return this; } public String getRecIDEndsWith() { return RecIDEndsWith; } public BM_WorkOrderStageCustomFieldsQuery setRecIDEndsWith(String value) { this.RecIDEndsWith = value; return this; } public String getRecIDContains() { return RecIDContains; } public BM_WorkOrderStageCustomFieldsQuery setRecIDContains(String value) { this.RecIDContains = value; return this; } public String getRecIDLike() { return RecIDLike; } public BM_WorkOrderStageCustomFieldsQuery setRecIDLike(String value) { this.RecIDLike = value; return this; } public ArrayList getRecIDBetween() { return RecIDBetween; } public BM_WorkOrderStageCustomFieldsQuery setRecIDBetween(ArrayList value) { this.RecIDBetween = value; return this; } public ArrayList getRecIDIn() { return RecIDIn; } public BM_WorkOrderStageCustomFieldsQuery setRecIDIn(ArrayList value) { this.RecIDIn = value; return this; } public String getSettingName() { return SettingName; } public BM_WorkOrderStageCustomFieldsQuery setSettingName(String value) { this.SettingName = value; return this; } public String getSettingNameStartsWith() { return SettingNameStartsWith; } public BM_WorkOrderStageCustomFieldsQuery setSettingNameStartsWith(String value) { this.SettingNameStartsWith = value; return this; } public String getSettingNameEndsWith() { return SettingNameEndsWith; } public BM_WorkOrderStageCustomFieldsQuery setSettingNameEndsWith(String value) { this.SettingNameEndsWith = value; return this; } public String getSettingNameContains() { return SettingNameContains; } public BM_WorkOrderStageCustomFieldsQuery setSettingNameContains(String value) { this.SettingNameContains = value; return this; } public String getSettingNameLike() { return SettingNameLike; } public BM_WorkOrderStageCustomFieldsQuery setSettingNameLike(String value) { this.SettingNameLike = value; return this; } public ArrayList getSettingNameBetween() { return SettingNameBetween; } public BM_WorkOrderStageCustomFieldsQuery setSettingNameBetween(ArrayList value) { this.SettingNameBetween = value; return this; } public ArrayList getSettingNameIn() { return SettingNameIn; } public BM_WorkOrderStageCustomFieldsQuery setSettingNameIn(ArrayList value) { this.SettingNameIn = value; return this; } public String getSettingDescription() { return SettingDescription; } public BM_WorkOrderStageCustomFieldsQuery setSettingDescription(String value) { this.SettingDescription = value; return this; } public String getSettingDescriptionStartsWith() { return SettingDescriptionStartsWith; } public BM_WorkOrderStageCustomFieldsQuery setSettingDescriptionStartsWith(String value) { this.SettingDescriptionStartsWith = value; return this; } public String getSettingDescriptionEndsWith() { return SettingDescriptionEndsWith; } public BM_WorkOrderStageCustomFieldsQuery setSettingDescriptionEndsWith(String value) { this.SettingDescriptionEndsWith = value; return this; } public String getSettingDescriptionContains() { return SettingDescriptionContains; } public BM_WorkOrderStageCustomFieldsQuery setSettingDescriptionContains(String value) { this.SettingDescriptionContains = value; return this; } public String getSettingDescriptionLike() { return SettingDescriptionLike; } public BM_WorkOrderStageCustomFieldsQuery setSettingDescriptionLike(String value) { this.SettingDescriptionLike = value; return this; } public ArrayList getSettingDescriptionBetween() { return SettingDescriptionBetween; } public BM_WorkOrderStageCustomFieldsQuery setSettingDescriptionBetween(ArrayList value) { this.SettingDescriptionBetween = value; return this; } public ArrayList getSettingDescriptionIn() { return SettingDescriptionIn; } public BM_WorkOrderStageCustomFieldsQuery setSettingDescriptionIn(ArrayList value) { this.SettingDescriptionIn = value; return this; } public Integer getCellType() { return CellType; } public BM_WorkOrderStageCustomFieldsQuery setCellType(Integer value) { this.CellType = value; return this; } public Integer getCellTypeGreaterThanOrEqualTo() { return CellTypeGreaterThanOrEqualTo; } public BM_WorkOrderStageCustomFieldsQuery setCellTypeGreaterThanOrEqualTo(Integer value) { this.CellTypeGreaterThanOrEqualTo = value; return this; } public Integer getCellTypeGreaterThan() { return CellTypeGreaterThan; } public BM_WorkOrderStageCustomFieldsQuery setCellTypeGreaterThan(Integer value) { this.CellTypeGreaterThan = value; return this; } public Integer getCellTypeLessThan() { return CellTypeLessThan; } public BM_WorkOrderStageCustomFieldsQuery setCellTypeLessThan(Integer value) { this.CellTypeLessThan = value; return this; } public Integer getCellTypeLessThanOrEqualTo() { return CellTypeLessThanOrEqualTo; } public BM_WorkOrderStageCustomFieldsQuery setCellTypeLessThanOrEqualTo(Integer value) { this.CellTypeLessThanOrEqualTo = value; return this; } public Integer getCellTypeNotEqualTo() { return CellTypeNotEqualTo; } public BM_WorkOrderStageCustomFieldsQuery setCellTypeNotEqualTo(Integer value) { this.CellTypeNotEqualTo = value; return this; } public ArrayList getCellTypeBetween() { return CellTypeBetween; } public BM_WorkOrderStageCustomFieldsQuery setCellTypeBetween(ArrayList value) { this.CellTypeBetween = value; return this; } public ArrayList getCellTypeIn() { return CellTypeIn; } public BM_WorkOrderStageCustomFieldsQuery setCellTypeIn(ArrayList value) { this.CellTypeIn = value; return this; } public String getFieldParameter() { return FieldParameter; } public BM_WorkOrderStageCustomFieldsQuery setFieldParameter(String value) { this.FieldParameter = value; return this; } public String getFieldParameterStartsWith() { return FieldParameterStartsWith; } public BM_WorkOrderStageCustomFieldsQuery setFieldParameterStartsWith(String value) { this.FieldParameterStartsWith = value; return this; } public String getFieldParameterEndsWith() { return FieldParameterEndsWith; } public BM_WorkOrderStageCustomFieldsQuery setFieldParameterEndsWith(String value) { this.FieldParameterEndsWith = value; return this; } public String getFieldParameterContains() { return FieldParameterContains; } public BM_WorkOrderStageCustomFieldsQuery setFieldParameterContains(String value) { this.FieldParameterContains = value; return this; } public String getFieldParameterLike() { return FieldParameterLike; } public BM_WorkOrderStageCustomFieldsQuery setFieldParameterLike(String value) { this.FieldParameterLike = value; return this; } public ArrayList getFieldParameterBetween() { return FieldParameterBetween; } public BM_WorkOrderStageCustomFieldsQuery setFieldParameterBetween(ArrayList value) { this.FieldParameterBetween = value; return this; } public ArrayList getFieldParameterIn() { return FieldParameterIn; } public BM_WorkOrderStageCustomFieldsQuery setFieldParameterIn(ArrayList value) { this.FieldParameterIn = value; return this; } public UUID getSyPluginRecID() { return SY_Plugin_RecID; } public BM_WorkOrderStageCustomFieldsQuery setSyPluginRecID(UUID value) { this.SY_Plugin_RecID = value; return this; } public ArrayList getSyPluginRecIDIn() { return SY_Plugin_RecIDIn; } public BM_WorkOrderStageCustomFieldsQuery setSyPluginRecIDIn(ArrayList value) { this.SY_Plugin_RecIDIn = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public BM_WorkOrderStageCustomFieldsQuery setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getLastSavedDateTimeGreaterThanOrEqualTo() { return LastSavedDateTimeGreaterThanOrEqualTo; } public BM_WorkOrderStageCustomFieldsQuery setLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.LastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeGreaterThan() { return LastSavedDateTimeGreaterThan; } public BM_WorkOrderStageCustomFieldsQuery setLastSavedDateTimeGreaterThan(Date value) { this.LastSavedDateTimeGreaterThan = value; return this; } public Date getLastSavedDateTimeLessThan() { return LastSavedDateTimeLessThan; } public BM_WorkOrderStageCustomFieldsQuery setLastSavedDateTimeLessThan(Date value) { this.LastSavedDateTimeLessThan = value; return this; } public Date getLastSavedDateTimeLessThanOrEqualTo() { return LastSavedDateTimeLessThanOrEqualTo; } public BM_WorkOrderStageCustomFieldsQuery setLastSavedDateTimeLessThanOrEqualTo(Date value) { this.LastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeNotEqualTo() { return LastSavedDateTimeNotEqualTo; } public BM_WorkOrderStageCustomFieldsQuery setLastSavedDateTimeNotEqualTo(Date value) { this.LastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getLastSavedDateTimeBetween() { return LastSavedDateTimeBetween; } public BM_WorkOrderStageCustomFieldsQuery setLastSavedDateTimeBetween(ArrayList value) { this.LastSavedDateTimeBetween = value; return this; } public ArrayList getLastSavedDateTimeIn() { return LastSavedDateTimeIn; } public BM_WorkOrderStageCustomFieldsQuery setLastSavedDateTimeIn(ArrayList value) { this.LastSavedDateTimeIn = value; return this; } public Integer getDisplayOrder() { return DisplayOrder; } public BM_WorkOrderStageCustomFieldsQuery setDisplayOrder(Integer value) { this.DisplayOrder = value; return this; } public Integer getDisplayOrderGreaterThanOrEqualTo() { return DisplayOrderGreaterThanOrEqualTo; } public BM_WorkOrderStageCustomFieldsQuery setDisplayOrderGreaterThanOrEqualTo(Integer value) { this.DisplayOrderGreaterThanOrEqualTo = value; return this; } public Integer getDisplayOrderGreaterThan() { return DisplayOrderGreaterThan; } public BM_WorkOrderStageCustomFieldsQuery setDisplayOrderGreaterThan(Integer value) { this.DisplayOrderGreaterThan = value; return this; } public Integer getDisplayOrderLessThan() { return DisplayOrderLessThan; } public BM_WorkOrderStageCustomFieldsQuery setDisplayOrderLessThan(Integer value) { this.DisplayOrderLessThan = value; return this; } public Integer getDisplayOrderLessThanOrEqualTo() { return DisplayOrderLessThanOrEqualTo; } public BM_WorkOrderStageCustomFieldsQuery setDisplayOrderLessThanOrEqualTo(Integer value) { this.DisplayOrderLessThanOrEqualTo = value; return this; } public Integer getDisplayOrderNotEqualTo() { return DisplayOrderNotEqualTo; } public BM_WorkOrderStageCustomFieldsQuery setDisplayOrderNotEqualTo(Integer value) { this.DisplayOrderNotEqualTo = value; return this; } public ArrayList getDisplayOrderBetween() { return DisplayOrderBetween; } public BM_WorkOrderStageCustomFieldsQuery setDisplayOrderBetween(ArrayList value) { this.DisplayOrderBetween = value; return this; } public ArrayList getDisplayOrderIn() { return DisplayOrderIn; } public BM_WorkOrderStageCustomFieldsQuery setDisplayOrderIn(ArrayList value) { this.DisplayOrderIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class BM_WorkOrderStageCustomValuesQuery extends QueryDb implements IReturn> { public String RecID = null; public String RecIDStartsWith = null; public String RecIDEndsWith = null; public String RecIDContains = null; public String RecIDLike = null; public ArrayList RecIDBetween = null; public ArrayList RecIDIn = null; public String BM_WorkOrderStages_RecID = null; public String BM_WorkOrderStages_RecIDStartsWith = null; public String BM_WorkOrderStages_RecIDEndsWith = null; public String BM_WorkOrderStages_RecIDContains = null; public String BM_WorkOrderStages_RecIDLike = null; public ArrayList BM_WorkOrderStages_RecIDBetween = null; public ArrayList BM_WorkOrderStages_RecIDIn = null; public String BM_WorkOrderStageCustomFields_RecID = null; public String BM_WorkOrderStageCustomFields_RecIDStartsWith = null; public String BM_WorkOrderStageCustomFields_RecIDEndsWith = null; public String BM_WorkOrderStageCustomFields_RecIDContains = null; public String BM_WorkOrderStageCustomFields_RecIDLike = null; public ArrayList BM_WorkOrderStageCustomFields_RecIDBetween = null; public ArrayList BM_WorkOrderStageCustomFields_RecIDIn = null; public String Contents = null; public String ContentsStartsWith = null; public String ContentsEndsWith = null; public String ContentsContains = null; public String ContentsLike = null; public ArrayList ContentsBetween = null; public ArrayList ContentsIn = null; public Date LastSavedDateTime = null; public Date LastSavedDateTimeGreaterThanOrEqualTo = null; public Date LastSavedDateTimeGreaterThan = null; public Date LastSavedDateTimeLessThan = null; public Date LastSavedDateTimeLessThanOrEqualTo = null; public Date LastSavedDateTimeNotEqualTo = null; public ArrayList LastSavedDateTimeBetween = null; public ArrayList LastSavedDateTimeIn = null; public String getRecID() { return RecID; } public BM_WorkOrderStageCustomValuesQuery setRecID(String value) { this.RecID = value; return this; } public String getRecIDStartsWith() { return RecIDStartsWith; } public BM_WorkOrderStageCustomValuesQuery setRecIDStartsWith(String value) { this.RecIDStartsWith = value; return this; } public String getRecIDEndsWith() { return RecIDEndsWith; } public BM_WorkOrderStageCustomValuesQuery setRecIDEndsWith(String value) { this.RecIDEndsWith = value; return this; } public String getRecIDContains() { return RecIDContains; } public BM_WorkOrderStageCustomValuesQuery setRecIDContains(String value) { this.RecIDContains = value; return this; } public String getRecIDLike() { return RecIDLike; } public BM_WorkOrderStageCustomValuesQuery setRecIDLike(String value) { this.RecIDLike = value; return this; } public ArrayList getRecIDBetween() { return RecIDBetween; } public BM_WorkOrderStageCustomValuesQuery setRecIDBetween(ArrayList value) { this.RecIDBetween = value; return this; } public ArrayList getRecIDIn() { return RecIDIn; } public BM_WorkOrderStageCustomValuesQuery setRecIDIn(ArrayList value) { this.RecIDIn = value; return this; } public String getBmWorkOrderStagesRecID() { return BM_WorkOrderStages_RecID; } public BM_WorkOrderStageCustomValuesQuery setBmWorkOrderStagesRecID(String value) { this.BM_WorkOrderStages_RecID = value; return this; } public String getBmWorkOrderStagesRecIDStartsWith() { return BM_WorkOrderStages_RecIDStartsWith; } public BM_WorkOrderStageCustomValuesQuery setBmWorkOrderStagesRecIDStartsWith(String value) { this.BM_WorkOrderStages_RecIDStartsWith = value; return this; } public String getBmWorkOrderStagesRecIDEndsWith() { return BM_WorkOrderStages_RecIDEndsWith; } public BM_WorkOrderStageCustomValuesQuery setBmWorkOrderStagesRecIDEndsWith(String value) { this.BM_WorkOrderStages_RecIDEndsWith = value; return this; } public String getBmWorkOrderStagesRecIDContains() { return BM_WorkOrderStages_RecIDContains; } public BM_WorkOrderStageCustomValuesQuery setBmWorkOrderStagesRecIDContains(String value) { this.BM_WorkOrderStages_RecIDContains = value; return this; } public String getBmWorkOrderStagesRecIDLike() { return BM_WorkOrderStages_RecIDLike; } public BM_WorkOrderStageCustomValuesQuery setBmWorkOrderStagesRecIDLike(String value) { this.BM_WorkOrderStages_RecIDLike = value; return this; } public ArrayList getBmWorkOrderStagesRecIDBetween() { return BM_WorkOrderStages_RecIDBetween; } public BM_WorkOrderStageCustomValuesQuery setBmWorkOrderStagesRecIDBetween(ArrayList value) { this.BM_WorkOrderStages_RecIDBetween = value; return this; } public ArrayList getBmWorkOrderStagesRecIDIn() { return BM_WorkOrderStages_RecIDIn; } public BM_WorkOrderStageCustomValuesQuery setBmWorkOrderStagesRecIDIn(ArrayList value) { this.BM_WorkOrderStages_RecIDIn = value; return this; } public String getBmWorkOrderStageCustomFieldsRecID() { return BM_WorkOrderStageCustomFields_RecID; } public BM_WorkOrderStageCustomValuesQuery setBmWorkOrderStageCustomFieldsRecID(String value) { this.BM_WorkOrderStageCustomFields_RecID = value; return this; } public String getBmWorkOrderStageCustomFieldsRecIDStartsWith() { return BM_WorkOrderStageCustomFields_RecIDStartsWith; } public BM_WorkOrderStageCustomValuesQuery setBmWorkOrderStageCustomFieldsRecIDStartsWith(String value) { this.BM_WorkOrderStageCustomFields_RecIDStartsWith = value; return this; } public String getBmWorkOrderStageCustomFieldsRecIDEndsWith() { return BM_WorkOrderStageCustomFields_RecIDEndsWith; } public BM_WorkOrderStageCustomValuesQuery setBmWorkOrderStageCustomFieldsRecIDEndsWith(String value) { this.BM_WorkOrderStageCustomFields_RecIDEndsWith = value; return this; } public String getBmWorkOrderStageCustomFieldsRecIDContains() { return BM_WorkOrderStageCustomFields_RecIDContains; } public BM_WorkOrderStageCustomValuesQuery setBmWorkOrderStageCustomFieldsRecIDContains(String value) { this.BM_WorkOrderStageCustomFields_RecIDContains = value; return this; } public String getBmWorkOrderStageCustomFieldsRecIDLike() { return BM_WorkOrderStageCustomFields_RecIDLike; } public BM_WorkOrderStageCustomValuesQuery setBmWorkOrderStageCustomFieldsRecIDLike(String value) { this.BM_WorkOrderStageCustomFields_RecIDLike = value; return this; } public ArrayList getBmWorkOrderStageCustomFieldsRecIDBetween() { return BM_WorkOrderStageCustomFields_RecIDBetween; } public BM_WorkOrderStageCustomValuesQuery setBmWorkOrderStageCustomFieldsRecIDBetween(ArrayList value) { this.BM_WorkOrderStageCustomFields_RecIDBetween = value; return this; } public ArrayList getBmWorkOrderStageCustomFieldsRecIDIn() { return BM_WorkOrderStageCustomFields_RecIDIn; } public BM_WorkOrderStageCustomValuesQuery setBmWorkOrderStageCustomFieldsRecIDIn(ArrayList value) { this.BM_WorkOrderStageCustomFields_RecIDIn = value; return this; } public String getContents() { return Contents; } public BM_WorkOrderStageCustomValuesQuery setContents(String value) { this.Contents = value; return this; } public String getContentsStartsWith() { return ContentsStartsWith; } public BM_WorkOrderStageCustomValuesQuery setContentsStartsWith(String value) { this.ContentsStartsWith = value; return this; } public String getContentsEndsWith() { return ContentsEndsWith; } public BM_WorkOrderStageCustomValuesQuery setContentsEndsWith(String value) { this.ContentsEndsWith = value; return this; } public String getContentsContains() { return ContentsContains; } public BM_WorkOrderStageCustomValuesQuery setContentsContains(String value) { this.ContentsContains = value; return this; } public String getContentsLike() { return ContentsLike; } public BM_WorkOrderStageCustomValuesQuery setContentsLike(String value) { this.ContentsLike = value; return this; } public ArrayList getContentsBetween() { return ContentsBetween; } public BM_WorkOrderStageCustomValuesQuery setContentsBetween(ArrayList value) { this.ContentsBetween = value; return this; } public ArrayList getContentsIn() { return ContentsIn; } public BM_WorkOrderStageCustomValuesQuery setContentsIn(ArrayList value) { this.ContentsIn = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public BM_WorkOrderStageCustomValuesQuery setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getLastSavedDateTimeGreaterThanOrEqualTo() { return LastSavedDateTimeGreaterThanOrEqualTo; } public BM_WorkOrderStageCustomValuesQuery setLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.LastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeGreaterThan() { return LastSavedDateTimeGreaterThan; } public BM_WorkOrderStageCustomValuesQuery setLastSavedDateTimeGreaterThan(Date value) { this.LastSavedDateTimeGreaterThan = value; return this; } public Date getLastSavedDateTimeLessThan() { return LastSavedDateTimeLessThan; } public BM_WorkOrderStageCustomValuesQuery setLastSavedDateTimeLessThan(Date value) { this.LastSavedDateTimeLessThan = value; return this; } public Date getLastSavedDateTimeLessThanOrEqualTo() { return LastSavedDateTimeLessThanOrEqualTo; } public BM_WorkOrderStageCustomValuesQuery setLastSavedDateTimeLessThanOrEqualTo(Date value) { this.LastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeNotEqualTo() { return LastSavedDateTimeNotEqualTo; } public BM_WorkOrderStageCustomValuesQuery setLastSavedDateTimeNotEqualTo(Date value) { this.LastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getLastSavedDateTimeBetween() { return LastSavedDateTimeBetween; } public BM_WorkOrderStageCustomValuesQuery setLastSavedDateTimeBetween(ArrayList value) { this.LastSavedDateTimeBetween = value; return this; } public ArrayList getLastSavedDateTimeIn() { return LastSavedDateTimeIn; } public BM_WorkOrderStageCustomValuesQuery setLastSavedDateTimeIn(ArrayList value) { this.LastSavedDateTimeIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class BM_WorkOrderStagesQuery extends QueryDb implements IReturn> { public String RecID = null; public String RecIDStartsWith = null; public String RecIDEndsWith = null; public String RecIDContains = null; public String RecIDLike = null; public ArrayList RecIDBetween = null; public ArrayList RecIDIn = null; public String BM_WorkOrder_RecID = null; public String BM_WorkOrder_RecIDStartsWith = null; public String BM_WorkOrder_RecIDEndsWith = null; public String BM_WorkOrder_RecIDContains = null; public String BM_WorkOrder_RecIDLike = null; public ArrayList BM_WorkOrder_RecIDBetween = null; public ArrayList BM_WorkOrder_RecIDIn = null; public Integer ItemNo = null; public Integer ItemNoGreaterThanOrEqualTo = null; public Integer ItemNoGreaterThan = null; public Integer ItemNoLessThan = null; public Integer ItemNoLessThanOrEqualTo = null; public Integer ItemNoNotEqualTo = null; public ArrayList ItemNoBetween = null; public ArrayList ItemNoIn = null; public String Name = null; public String NameStartsWith = null; public String NameEndsWith = null; public String NameContains = null; public String NameLike = null; public ArrayList NameBetween = null; public ArrayList NameIn = null; public String BM_WarehouseProductionLineWorkCentre_RecID = null; public String BM_WarehouseProductionLineWorkCentre_RecIDStartsWith = null; public String BM_WarehouseProductionLineWorkCentre_RecIDEndsWith = null; public String BM_WarehouseProductionLineWorkCentre_RecIDContains = null; public String BM_WarehouseProductionLineWorkCentre_RecIDLike = null; public ArrayList BM_WarehouseProductionLineWorkCentre_RecIDBetween = null; public ArrayList BM_WarehouseProductionLineWorkCentre_RecIDIn = null; public BigDecimal RequiredCapacity = null; public BigDecimal RequiredCapacityGreaterThanOrEqualTo = null; public BigDecimal RequiredCapacityGreaterThan = null; public BigDecimal RequiredCapacityLessThan = null; public BigDecimal RequiredCapacityLessThanOrEqualTo = null; public BigDecimal RequiredCapacityNotEqualTo = null; public ArrayList RequiredCapacityBetween = null; public ArrayList RequiredCapacityIn = null; public Short Status = null; public Short StatusGreaterThanOrEqualTo = null; public Short StatusGreaterThan = null; public Short StatusLessThan = null; public Short StatusLessThanOrEqualTo = null; public Short StatusNotEqualTo = null; public ArrayList StatusBetween = null; public ArrayList StatusIn = null; public ArrayList RowHash = null; public Date StartDate = null; public Date StartDateGreaterThanOrEqualTo = null; public Date StartDateGreaterThan = null; public Date StartDateLessThan = null; public Date StartDateLessThanOrEqualTo = null; public Date StartDateNotEqualTo = null; public ArrayList StartDateBetween = null; public ArrayList StartDateIn = null; public String getRecID() { return RecID; } public BM_WorkOrderStagesQuery setRecID(String value) { this.RecID = value; return this; } public String getRecIDStartsWith() { return RecIDStartsWith; } public BM_WorkOrderStagesQuery setRecIDStartsWith(String value) { this.RecIDStartsWith = value; return this; } public String getRecIDEndsWith() { return RecIDEndsWith; } public BM_WorkOrderStagesQuery setRecIDEndsWith(String value) { this.RecIDEndsWith = value; return this; } public String getRecIDContains() { return RecIDContains; } public BM_WorkOrderStagesQuery setRecIDContains(String value) { this.RecIDContains = value; return this; } public String getRecIDLike() { return RecIDLike; } public BM_WorkOrderStagesQuery setRecIDLike(String value) { this.RecIDLike = value; return this; } public ArrayList getRecIDBetween() { return RecIDBetween; } public BM_WorkOrderStagesQuery setRecIDBetween(ArrayList value) { this.RecIDBetween = value; return this; } public ArrayList getRecIDIn() { return RecIDIn; } public BM_WorkOrderStagesQuery setRecIDIn(ArrayList value) { this.RecIDIn = value; return this; } public String getBmWorkOrderRecID() { return BM_WorkOrder_RecID; } public BM_WorkOrderStagesQuery setBmWorkOrderRecID(String value) { this.BM_WorkOrder_RecID = value; return this; } public String getBmWorkOrderRecIDStartsWith() { return BM_WorkOrder_RecIDStartsWith; } public BM_WorkOrderStagesQuery setBmWorkOrderRecIDStartsWith(String value) { this.BM_WorkOrder_RecIDStartsWith = value; return this; } public String getBmWorkOrderRecIDEndsWith() { return BM_WorkOrder_RecIDEndsWith; } public BM_WorkOrderStagesQuery setBmWorkOrderRecIDEndsWith(String value) { this.BM_WorkOrder_RecIDEndsWith = value; return this; } public String getBmWorkOrderRecIDContains() { return BM_WorkOrder_RecIDContains; } public BM_WorkOrderStagesQuery setBmWorkOrderRecIDContains(String value) { this.BM_WorkOrder_RecIDContains = value; return this; } public String getBmWorkOrderRecIDLike() { return BM_WorkOrder_RecIDLike; } public BM_WorkOrderStagesQuery setBmWorkOrderRecIDLike(String value) { this.BM_WorkOrder_RecIDLike = value; return this; } public ArrayList getBmWorkOrderRecIDBetween() { return BM_WorkOrder_RecIDBetween; } public BM_WorkOrderStagesQuery setBmWorkOrderRecIDBetween(ArrayList value) { this.BM_WorkOrder_RecIDBetween = value; return this; } public ArrayList getBmWorkOrderRecIDIn() { return BM_WorkOrder_RecIDIn; } public BM_WorkOrderStagesQuery setBmWorkOrderRecIDIn(ArrayList value) { this.BM_WorkOrder_RecIDIn = value; return this; } public Integer getItemNo() { return ItemNo; } public BM_WorkOrderStagesQuery setItemNo(Integer value) { this.ItemNo = value; return this; } public Integer getItemNoGreaterThanOrEqualTo() { return ItemNoGreaterThanOrEqualTo; } public BM_WorkOrderStagesQuery setItemNoGreaterThanOrEqualTo(Integer value) { this.ItemNoGreaterThanOrEqualTo = value; return this; } public Integer getItemNoGreaterThan() { return ItemNoGreaterThan; } public BM_WorkOrderStagesQuery setItemNoGreaterThan(Integer value) { this.ItemNoGreaterThan = value; return this; } public Integer getItemNoLessThan() { return ItemNoLessThan; } public BM_WorkOrderStagesQuery setItemNoLessThan(Integer value) { this.ItemNoLessThan = value; return this; } public Integer getItemNoLessThanOrEqualTo() { return ItemNoLessThanOrEqualTo; } public BM_WorkOrderStagesQuery setItemNoLessThanOrEqualTo(Integer value) { this.ItemNoLessThanOrEqualTo = value; return this; } public Integer getItemNoNotEqualTo() { return ItemNoNotEqualTo; } public BM_WorkOrderStagesQuery setItemNoNotEqualTo(Integer value) { this.ItemNoNotEqualTo = value; return this; } public ArrayList getItemNoBetween() { return ItemNoBetween; } public BM_WorkOrderStagesQuery setItemNoBetween(ArrayList value) { this.ItemNoBetween = value; return this; } public ArrayList getItemNoIn() { return ItemNoIn; } public BM_WorkOrderStagesQuery setItemNoIn(ArrayList value) { this.ItemNoIn = value; return this; } public String getName() { return Name; } public BM_WorkOrderStagesQuery setName(String value) { this.Name = value; return this; } public String getNameStartsWith() { return NameStartsWith; } public BM_WorkOrderStagesQuery setNameStartsWith(String value) { this.NameStartsWith = value; return this; } public String getNameEndsWith() { return NameEndsWith; } public BM_WorkOrderStagesQuery setNameEndsWith(String value) { this.NameEndsWith = value; return this; } public String getNameContains() { return NameContains; } public BM_WorkOrderStagesQuery setNameContains(String value) { this.NameContains = value; return this; } public String getNameLike() { return NameLike; } public BM_WorkOrderStagesQuery setNameLike(String value) { this.NameLike = value; return this; } public ArrayList getNameBetween() { return NameBetween; } public BM_WorkOrderStagesQuery setNameBetween(ArrayList value) { this.NameBetween = value; return this; } public ArrayList getNameIn() { return NameIn; } public BM_WorkOrderStagesQuery setNameIn(ArrayList value) { this.NameIn = value; return this; } public String getBmWarehouseProductionLineWorkCentreRecID() { return BM_WarehouseProductionLineWorkCentre_RecID; } public BM_WorkOrderStagesQuery setBmWarehouseProductionLineWorkCentreRecID(String value) { this.BM_WarehouseProductionLineWorkCentre_RecID = value; return this; } public String getBmWarehouseProductionLineWorkCentreRecIDStartsWith() { return BM_WarehouseProductionLineWorkCentre_RecIDStartsWith; } public BM_WorkOrderStagesQuery setBmWarehouseProductionLineWorkCentreRecIDStartsWith(String value) { this.BM_WarehouseProductionLineWorkCentre_RecIDStartsWith = value; return this; } public String getBmWarehouseProductionLineWorkCentreRecIDEndsWith() { return BM_WarehouseProductionLineWorkCentre_RecIDEndsWith; } public BM_WorkOrderStagesQuery setBmWarehouseProductionLineWorkCentreRecIDEndsWith(String value) { this.BM_WarehouseProductionLineWorkCentre_RecIDEndsWith = value; return this; } public String getBmWarehouseProductionLineWorkCentreRecIDContains() { return BM_WarehouseProductionLineWorkCentre_RecIDContains; } public BM_WorkOrderStagesQuery setBmWarehouseProductionLineWorkCentreRecIDContains(String value) { this.BM_WarehouseProductionLineWorkCentre_RecIDContains = value; return this; } public String getBmWarehouseProductionLineWorkCentreRecIDLike() { return BM_WarehouseProductionLineWorkCentre_RecIDLike; } public BM_WorkOrderStagesQuery setBmWarehouseProductionLineWorkCentreRecIDLike(String value) { this.BM_WarehouseProductionLineWorkCentre_RecIDLike = value; return this; } public ArrayList getBmWarehouseProductionLineWorkCentreRecIDBetween() { return BM_WarehouseProductionLineWorkCentre_RecIDBetween; } public BM_WorkOrderStagesQuery setBmWarehouseProductionLineWorkCentreRecIDBetween(ArrayList value) { this.BM_WarehouseProductionLineWorkCentre_RecIDBetween = value; return this; } public ArrayList getBmWarehouseProductionLineWorkCentreRecIDIn() { return BM_WarehouseProductionLineWorkCentre_RecIDIn; } public BM_WorkOrderStagesQuery setBmWarehouseProductionLineWorkCentreRecIDIn(ArrayList value) { this.BM_WarehouseProductionLineWorkCentre_RecIDIn = value; return this; } public BigDecimal getRequiredCapacity() { return RequiredCapacity; } public BM_WorkOrderStagesQuery setRequiredCapacity(BigDecimal value) { this.RequiredCapacity = value; return this; } public BigDecimal getRequiredCapacityGreaterThanOrEqualTo() { return RequiredCapacityGreaterThanOrEqualTo; } public BM_WorkOrderStagesQuery setRequiredCapacityGreaterThanOrEqualTo(BigDecimal value) { this.RequiredCapacityGreaterThanOrEqualTo = value; return this; } public BigDecimal getRequiredCapacityGreaterThan() { return RequiredCapacityGreaterThan; } public BM_WorkOrderStagesQuery setRequiredCapacityGreaterThan(BigDecimal value) { this.RequiredCapacityGreaterThan = value; return this; } public BigDecimal getRequiredCapacityLessThan() { return RequiredCapacityLessThan; } public BM_WorkOrderStagesQuery setRequiredCapacityLessThan(BigDecimal value) { this.RequiredCapacityLessThan = value; return this; } public BigDecimal getRequiredCapacityLessThanOrEqualTo() { return RequiredCapacityLessThanOrEqualTo; } public BM_WorkOrderStagesQuery setRequiredCapacityLessThanOrEqualTo(BigDecimal value) { this.RequiredCapacityLessThanOrEqualTo = value; return this; } public BigDecimal getRequiredCapacityNotEqualTo() { return RequiredCapacityNotEqualTo; } public BM_WorkOrderStagesQuery setRequiredCapacityNotEqualTo(BigDecimal value) { this.RequiredCapacityNotEqualTo = value; return this; } public ArrayList getRequiredCapacityBetween() { return RequiredCapacityBetween; } public BM_WorkOrderStagesQuery setRequiredCapacityBetween(ArrayList value) { this.RequiredCapacityBetween = value; return this; } public ArrayList getRequiredCapacityIn() { return RequiredCapacityIn; } public BM_WorkOrderStagesQuery setRequiredCapacityIn(ArrayList value) { this.RequiredCapacityIn = value; return this; } public Short getStatus() { return Status; } public BM_WorkOrderStagesQuery setStatus(Short value) { this.Status = value; return this; } public Short getStatusGreaterThanOrEqualTo() { return StatusGreaterThanOrEqualTo; } public BM_WorkOrderStagesQuery setStatusGreaterThanOrEqualTo(Short value) { this.StatusGreaterThanOrEqualTo = value; return this; } public Short getStatusGreaterThan() { return StatusGreaterThan; } public BM_WorkOrderStagesQuery setStatusGreaterThan(Short value) { this.StatusGreaterThan = value; return this; } public Short getStatusLessThan() { return StatusLessThan; } public BM_WorkOrderStagesQuery setStatusLessThan(Short value) { this.StatusLessThan = value; return this; } public Short getStatusLessThanOrEqualTo() { return StatusLessThanOrEqualTo; } public BM_WorkOrderStagesQuery setStatusLessThanOrEqualTo(Short value) { this.StatusLessThanOrEqualTo = value; return this; } public Short getStatusNotEqualTo() { return StatusNotEqualTo; } public BM_WorkOrderStagesQuery setStatusNotEqualTo(Short value) { this.StatusNotEqualTo = value; return this; } public ArrayList getStatusBetween() { return StatusBetween; } public BM_WorkOrderStagesQuery setStatusBetween(ArrayList value) { this.StatusBetween = value; return this; } public ArrayList getStatusIn() { return StatusIn; } public BM_WorkOrderStagesQuery setStatusIn(ArrayList value) { this.StatusIn = value; return this; } public ArrayList getRowHash() { return RowHash; } public BM_WorkOrderStagesQuery setRowHash(ArrayList value) { this.RowHash = value; return this; } public Date getStartDate() { return StartDate; } public BM_WorkOrderStagesQuery setStartDate(Date value) { this.StartDate = value; return this; } public Date getStartDateGreaterThanOrEqualTo() { return StartDateGreaterThanOrEqualTo; } public BM_WorkOrderStagesQuery setStartDateGreaterThanOrEqualTo(Date value) { this.StartDateGreaterThanOrEqualTo = value; return this; } public Date getStartDateGreaterThan() { return StartDateGreaterThan; } public BM_WorkOrderStagesQuery setStartDateGreaterThan(Date value) { this.StartDateGreaterThan = value; return this; } public Date getStartDateLessThan() { return StartDateLessThan; } public BM_WorkOrderStagesQuery setStartDateLessThan(Date value) { this.StartDateLessThan = value; return this; } public Date getStartDateLessThanOrEqualTo() { return StartDateLessThanOrEqualTo; } public BM_WorkOrderStagesQuery setStartDateLessThanOrEqualTo(Date value) { this.StartDateLessThanOrEqualTo = value; return this; } public Date getStartDateNotEqualTo() { return StartDateNotEqualTo; } public BM_WorkOrderStagesQuery setStartDateNotEqualTo(Date value) { this.StartDateNotEqualTo = value; return this; } public ArrayList getStartDateBetween() { return StartDateBetween; } public BM_WorkOrderStagesQuery setStartDateBetween(ArrayList value) { this.StartDateBetween = value; return this; } public ArrayList getStartDateIn() { return StartDateIn; } public BM_WorkOrderStagesQuery setStartDateIn(ArrayList value) { this.StartDateIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class BM_WorkOrderWastageLineDetailsAllocationQuery extends QueryDb implements IReturn> { public String RecID = null; public String RecIDStartsWith = null; public String RecIDEndsWith = null; public String RecIDContains = null; public String RecIDLike = null; public ArrayList RecIDBetween = null; public ArrayList RecIDIn = null; public String BM_WorkOrder_RecID = null; public String BM_WorkOrder_RecIDStartsWith = null; public String BM_WorkOrder_RecIDEndsWith = null; public String BM_WorkOrder_RecIDContains = null; public String BM_WorkOrder_RecIDLike = null; public ArrayList BM_WorkOrder_RecIDBetween = null; public ArrayList BM_WorkOrder_RecIDIn = null; public String BM_WorkOrderInputDetails_RecID = null; public String BM_WorkOrderInputDetails_RecIDStartsWith = null; public String BM_WorkOrderInputDetails_RecIDEndsWith = null; public String BM_WorkOrderInputDetails_RecIDContains = null; public String BM_WorkOrderInputDetails_RecIDLike = null; public ArrayList BM_WorkOrderInputDetails_RecIDBetween = null; public ArrayList BM_WorkOrderInputDetails_RecIDIn = null; public String BM_WorkOrderOutputWastageDetails_RecID = null; public String BM_WorkOrderOutputWastageDetails_RecIDStartsWith = null; public String BM_WorkOrderOutputWastageDetails_RecIDEndsWith = null; public String BM_WorkOrderOutputWastageDetails_RecIDContains = null; public String BM_WorkOrderOutputWastageDetails_RecIDLike = null; public ArrayList BM_WorkOrderOutputWastageDetails_RecIDBetween = null; public ArrayList BM_WorkOrderOutputWastageDetails_RecIDIn = null; public BigDecimal InputQuantity = null; public BigDecimal InputQuantityGreaterThanOrEqualTo = null; public BigDecimal InputQuantityGreaterThan = null; public BigDecimal InputQuantityLessThan = null; public BigDecimal InputQuantityLessThanOrEqualTo = null; public BigDecimal InputQuantityNotEqualTo = null; public ArrayList InputQuantityBetween = null; public ArrayList InputQuantityIn = null; public BigDecimal OutputQuantity = null; public BigDecimal OutputQuantityGreaterThanOrEqualTo = null; public BigDecimal OutputQuantityGreaterThan = null; public BigDecimal OutputQuantityLessThan = null; public BigDecimal OutputQuantityLessThanOrEqualTo = null; public BigDecimal OutputQuantityNotEqualTo = null; public ArrayList OutputQuantityBetween = null; public ArrayList OutputQuantityIn = null; public Date LastSavedDateTime = null; public Date LastSavedDateTimeGreaterThanOrEqualTo = null; public Date LastSavedDateTimeGreaterThan = null; public Date LastSavedDateTimeLessThan = null; public Date LastSavedDateTimeLessThanOrEqualTo = null; public Date LastSavedDateTimeNotEqualTo = null; public ArrayList LastSavedDateTimeBetween = null; public ArrayList LastSavedDateTimeIn = null; public ArrayList RowHash = null; public String getRecID() { return RecID; } public BM_WorkOrderWastageLineDetailsAllocationQuery setRecID(String value) { this.RecID = value; return this; } public String getRecIDStartsWith() { return RecIDStartsWith; } public BM_WorkOrderWastageLineDetailsAllocationQuery setRecIDStartsWith(String value) { this.RecIDStartsWith = value; return this; } public String getRecIDEndsWith() { return RecIDEndsWith; } public BM_WorkOrderWastageLineDetailsAllocationQuery setRecIDEndsWith(String value) { this.RecIDEndsWith = value; return this; } public String getRecIDContains() { return RecIDContains; } public BM_WorkOrderWastageLineDetailsAllocationQuery setRecIDContains(String value) { this.RecIDContains = value; return this; } public String getRecIDLike() { return RecIDLike; } public BM_WorkOrderWastageLineDetailsAllocationQuery setRecIDLike(String value) { this.RecIDLike = value; return this; } public ArrayList getRecIDBetween() { return RecIDBetween; } public BM_WorkOrderWastageLineDetailsAllocationQuery setRecIDBetween(ArrayList value) { this.RecIDBetween = value; return this; } public ArrayList getRecIDIn() { return RecIDIn; } public BM_WorkOrderWastageLineDetailsAllocationQuery setRecIDIn(ArrayList value) { this.RecIDIn = value; return this; } public String getBmWorkOrderRecID() { return BM_WorkOrder_RecID; } public BM_WorkOrderWastageLineDetailsAllocationQuery setBmWorkOrderRecID(String value) { this.BM_WorkOrder_RecID = value; return this; } public String getBmWorkOrderRecIDStartsWith() { return BM_WorkOrder_RecIDStartsWith; } public BM_WorkOrderWastageLineDetailsAllocationQuery setBmWorkOrderRecIDStartsWith(String value) { this.BM_WorkOrder_RecIDStartsWith = value; return this; } public String getBmWorkOrderRecIDEndsWith() { return BM_WorkOrder_RecIDEndsWith; } public BM_WorkOrderWastageLineDetailsAllocationQuery setBmWorkOrderRecIDEndsWith(String value) { this.BM_WorkOrder_RecIDEndsWith = value; return this; } public String getBmWorkOrderRecIDContains() { return BM_WorkOrder_RecIDContains; } public BM_WorkOrderWastageLineDetailsAllocationQuery setBmWorkOrderRecIDContains(String value) { this.BM_WorkOrder_RecIDContains = value; return this; } public String getBmWorkOrderRecIDLike() { return BM_WorkOrder_RecIDLike; } public BM_WorkOrderWastageLineDetailsAllocationQuery setBmWorkOrderRecIDLike(String value) { this.BM_WorkOrder_RecIDLike = value; return this; } public ArrayList getBmWorkOrderRecIDBetween() { return BM_WorkOrder_RecIDBetween; } public BM_WorkOrderWastageLineDetailsAllocationQuery setBmWorkOrderRecIDBetween(ArrayList value) { this.BM_WorkOrder_RecIDBetween = value; return this; } public ArrayList getBmWorkOrderRecIDIn() { return BM_WorkOrder_RecIDIn; } public BM_WorkOrderWastageLineDetailsAllocationQuery setBmWorkOrderRecIDIn(ArrayList value) { this.BM_WorkOrder_RecIDIn = value; return this; } public String getBmWorkOrderInputDetailsRecID() { return BM_WorkOrderInputDetails_RecID; } public BM_WorkOrderWastageLineDetailsAllocationQuery setBmWorkOrderInputDetailsRecID(String value) { this.BM_WorkOrderInputDetails_RecID = value; return this; } public String getBmWorkOrderInputDetailsRecIDStartsWith() { return BM_WorkOrderInputDetails_RecIDStartsWith; } public BM_WorkOrderWastageLineDetailsAllocationQuery setBmWorkOrderInputDetailsRecIDStartsWith(String value) { this.BM_WorkOrderInputDetails_RecIDStartsWith = value; return this; } public String getBmWorkOrderInputDetailsRecIDEndsWith() { return BM_WorkOrderInputDetails_RecIDEndsWith; } public BM_WorkOrderWastageLineDetailsAllocationQuery setBmWorkOrderInputDetailsRecIDEndsWith(String value) { this.BM_WorkOrderInputDetails_RecIDEndsWith = value; return this; } public String getBmWorkOrderInputDetailsRecIDContains() { return BM_WorkOrderInputDetails_RecIDContains; } public BM_WorkOrderWastageLineDetailsAllocationQuery setBmWorkOrderInputDetailsRecIDContains(String value) { this.BM_WorkOrderInputDetails_RecIDContains = value; return this; } public String getBmWorkOrderInputDetailsRecIDLike() { return BM_WorkOrderInputDetails_RecIDLike; } public BM_WorkOrderWastageLineDetailsAllocationQuery setBmWorkOrderInputDetailsRecIDLike(String value) { this.BM_WorkOrderInputDetails_RecIDLike = value; return this; } public ArrayList getBmWorkOrderInputDetailsRecIDBetween() { return BM_WorkOrderInputDetails_RecIDBetween; } public BM_WorkOrderWastageLineDetailsAllocationQuery setBmWorkOrderInputDetailsRecIDBetween(ArrayList value) { this.BM_WorkOrderInputDetails_RecIDBetween = value; return this; } public ArrayList getBmWorkOrderInputDetailsRecIDIn() { return BM_WorkOrderInputDetails_RecIDIn; } public BM_WorkOrderWastageLineDetailsAllocationQuery setBmWorkOrderInputDetailsRecIDIn(ArrayList value) { this.BM_WorkOrderInputDetails_RecIDIn = value; return this; } public String getBmWorkOrderOutputWastageDetailsRecID() { return BM_WorkOrderOutputWastageDetails_RecID; } public BM_WorkOrderWastageLineDetailsAllocationQuery setBmWorkOrderOutputWastageDetailsRecID(String value) { this.BM_WorkOrderOutputWastageDetails_RecID = value; return this; } public String getBmWorkOrderOutputWastageDetailsRecIDStartsWith() { return BM_WorkOrderOutputWastageDetails_RecIDStartsWith; } public BM_WorkOrderWastageLineDetailsAllocationQuery setBmWorkOrderOutputWastageDetailsRecIDStartsWith(String value) { this.BM_WorkOrderOutputWastageDetails_RecIDStartsWith = value; return this; } public String getBmWorkOrderOutputWastageDetailsRecIDEndsWith() { return BM_WorkOrderOutputWastageDetails_RecIDEndsWith; } public BM_WorkOrderWastageLineDetailsAllocationQuery setBmWorkOrderOutputWastageDetailsRecIDEndsWith(String value) { this.BM_WorkOrderOutputWastageDetails_RecIDEndsWith = value; return this; } public String getBmWorkOrderOutputWastageDetailsRecIDContains() { return BM_WorkOrderOutputWastageDetails_RecIDContains; } public BM_WorkOrderWastageLineDetailsAllocationQuery setBmWorkOrderOutputWastageDetailsRecIDContains(String value) { this.BM_WorkOrderOutputWastageDetails_RecIDContains = value; return this; } public String getBmWorkOrderOutputWastageDetailsRecIDLike() { return BM_WorkOrderOutputWastageDetails_RecIDLike; } public BM_WorkOrderWastageLineDetailsAllocationQuery setBmWorkOrderOutputWastageDetailsRecIDLike(String value) { this.BM_WorkOrderOutputWastageDetails_RecIDLike = value; return this; } public ArrayList getBmWorkOrderOutputWastageDetailsRecIDBetween() { return BM_WorkOrderOutputWastageDetails_RecIDBetween; } public BM_WorkOrderWastageLineDetailsAllocationQuery setBmWorkOrderOutputWastageDetailsRecIDBetween(ArrayList value) { this.BM_WorkOrderOutputWastageDetails_RecIDBetween = value; return this; } public ArrayList getBmWorkOrderOutputWastageDetailsRecIDIn() { return BM_WorkOrderOutputWastageDetails_RecIDIn; } public BM_WorkOrderWastageLineDetailsAllocationQuery setBmWorkOrderOutputWastageDetailsRecIDIn(ArrayList value) { this.BM_WorkOrderOutputWastageDetails_RecIDIn = value; return this; } public BigDecimal getInputQuantity() { return InputQuantity; } public BM_WorkOrderWastageLineDetailsAllocationQuery setInputQuantity(BigDecimal value) { this.InputQuantity = value; return this; } public BigDecimal getInputQuantityGreaterThanOrEqualTo() { return InputQuantityGreaterThanOrEqualTo; } public BM_WorkOrderWastageLineDetailsAllocationQuery setInputQuantityGreaterThanOrEqualTo(BigDecimal value) { this.InputQuantityGreaterThanOrEqualTo = value; return this; } public BigDecimal getInputQuantityGreaterThan() { return InputQuantityGreaterThan; } public BM_WorkOrderWastageLineDetailsAllocationQuery setInputQuantityGreaterThan(BigDecimal value) { this.InputQuantityGreaterThan = value; return this; } public BigDecimal getInputQuantityLessThan() { return InputQuantityLessThan; } public BM_WorkOrderWastageLineDetailsAllocationQuery setInputQuantityLessThan(BigDecimal value) { this.InputQuantityLessThan = value; return this; } public BigDecimal getInputQuantityLessThanOrEqualTo() { return InputQuantityLessThanOrEqualTo; } public BM_WorkOrderWastageLineDetailsAllocationQuery setInputQuantityLessThanOrEqualTo(BigDecimal value) { this.InputQuantityLessThanOrEqualTo = value; return this; } public BigDecimal getInputQuantityNotEqualTo() { return InputQuantityNotEqualTo; } public BM_WorkOrderWastageLineDetailsAllocationQuery setInputQuantityNotEqualTo(BigDecimal value) { this.InputQuantityNotEqualTo = value; return this; } public ArrayList getInputQuantityBetween() { return InputQuantityBetween; } public BM_WorkOrderWastageLineDetailsAllocationQuery setInputQuantityBetween(ArrayList value) { this.InputQuantityBetween = value; return this; } public ArrayList getInputQuantityIn() { return InputQuantityIn; } public BM_WorkOrderWastageLineDetailsAllocationQuery setInputQuantityIn(ArrayList value) { this.InputQuantityIn = value; return this; } public BigDecimal getOutputQuantity() { return OutputQuantity; } public BM_WorkOrderWastageLineDetailsAllocationQuery setOutputQuantity(BigDecimal value) { this.OutputQuantity = value; return this; } public BigDecimal getOutputQuantityGreaterThanOrEqualTo() { return OutputQuantityGreaterThanOrEqualTo; } public BM_WorkOrderWastageLineDetailsAllocationQuery setOutputQuantityGreaterThanOrEqualTo(BigDecimal value) { this.OutputQuantityGreaterThanOrEqualTo = value; return this; } public BigDecimal getOutputQuantityGreaterThan() { return OutputQuantityGreaterThan; } public BM_WorkOrderWastageLineDetailsAllocationQuery setOutputQuantityGreaterThan(BigDecimal value) { this.OutputQuantityGreaterThan = value; return this; } public BigDecimal getOutputQuantityLessThan() { return OutputQuantityLessThan; } public BM_WorkOrderWastageLineDetailsAllocationQuery setOutputQuantityLessThan(BigDecimal value) { this.OutputQuantityLessThan = value; return this; } public BigDecimal getOutputQuantityLessThanOrEqualTo() { return OutputQuantityLessThanOrEqualTo; } public BM_WorkOrderWastageLineDetailsAllocationQuery setOutputQuantityLessThanOrEqualTo(BigDecimal value) { this.OutputQuantityLessThanOrEqualTo = value; return this; } public BigDecimal getOutputQuantityNotEqualTo() { return OutputQuantityNotEqualTo; } public BM_WorkOrderWastageLineDetailsAllocationQuery setOutputQuantityNotEqualTo(BigDecimal value) { this.OutputQuantityNotEqualTo = value; return this; } public ArrayList getOutputQuantityBetween() { return OutputQuantityBetween; } public BM_WorkOrderWastageLineDetailsAllocationQuery setOutputQuantityBetween(ArrayList value) { this.OutputQuantityBetween = value; return this; } public ArrayList getOutputQuantityIn() { return OutputQuantityIn; } public BM_WorkOrderWastageLineDetailsAllocationQuery setOutputQuantityIn(ArrayList value) { this.OutputQuantityIn = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public BM_WorkOrderWastageLineDetailsAllocationQuery setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getLastSavedDateTimeGreaterThanOrEqualTo() { return LastSavedDateTimeGreaterThanOrEqualTo; } public BM_WorkOrderWastageLineDetailsAllocationQuery setLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.LastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeGreaterThan() { return LastSavedDateTimeGreaterThan; } public BM_WorkOrderWastageLineDetailsAllocationQuery setLastSavedDateTimeGreaterThan(Date value) { this.LastSavedDateTimeGreaterThan = value; return this; } public Date getLastSavedDateTimeLessThan() { return LastSavedDateTimeLessThan; } public BM_WorkOrderWastageLineDetailsAllocationQuery setLastSavedDateTimeLessThan(Date value) { this.LastSavedDateTimeLessThan = value; return this; } public Date getLastSavedDateTimeLessThanOrEqualTo() { return LastSavedDateTimeLessThanOrEqualTo; } public BM_WorkOrderWastageLineDetailsAllocationQuery setLastSavedDateTimeLessThanOrEqualTo(Date value) { this.LastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeNotEqualTo() { return LastSavedDateTimeNotEqualTo; } public BM_WorkOrderWastageLineDetailsAllocationQuery setLastSavedDateTimeNotEqualTo(Date value) { this.LastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getLastSavedDateTimeBetween() { return LastSavedDateTimeBetween; } public BM_WorkOrderWastageLineDetailsAllocationQuery setLastSavedDateTimeBetween(ArrayList value) { this.LastSavedDateTimeBetween = value; return this; } public ArrayList getLastSavedDateTimeIn() { return LastSavedDateTimeIn; } public BM_WorkOrderWastageLineDetailsAllocationQuery setLastSavedDateTimeIn(ArrayList value) { this.LastSavedDateTimeIn = value; return this; } public ArrayList getRowHash() { return RowHash; } public BM_WorkOrderWastageLineDetailsAllocationQuery setRowHash(ArrayList value) { this.RowHash = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class BO_ManualReleaseBatchQuery extends QueryDb implements IReturn> { public String RecID = null; public String RecIDStartsWith = null; public String RecIDEndsWith = null; public String RecIDContains = null; public String RecIDLike = null; public ArrayList RecIDBetween = null; public ArrayList RecIDIn = null; public String BatchNo = null; public String BatchNoStartsWith = null; public String BatchNoEndsWith = null; public String BatchNoContains = null; public String BatchNoLike = null; public ArrayList BatchNoBetween = null; public ArrayList BatchNoIn = null; public Date LastSavedDateTime = null; public Date LastSavedDateTimeGreaterThanOrEqualTo = null; public Date LastSavedDateTimeGreaterThan = null; public Date LastSavedDateTimeLessThan = null; public Date LastSavedDateTimeLessThanOrEqualTo = null; public Date LastSavedDateTimeNotEqualTo = null; public ArrayList LastSavedDateTimeBetween = null; public ArrayList LastSavedDateTimeIn = null; public String LastSavedByStaffID = null; public String LastSavedByStaffIDStartsWith = null; public String LastSavedByStaffIDEndsWith = null; public String LastSavedByStaffIDContains = null; public String LastSavedByStaffIDLike = null; public ArrayList LastSavedByStaffIDBetween = null; public ArrayList LastSavedByStaffIDIn = null; public Date CreatedDateTime = null; public Date CreatedDateTimeGreaterThanOrEqualTo = null; public Date CreatedDateTimeGreaterThan = null; public Date CreatedDateTimeLessThan = null; public Date CreatedDateTimeLessThanOrEqualTo = null; public Date CreatedDateTimeNotEqualTo = null; public ArrayList CreatedDateTimeBetween = null; public ArrayList CreatedDateTimeIn = null; public String CreatedByStaffID = null; public String CreatedByStaffIDStartsWith = null; public String CreatedByStaffIDEndsWith = null; public String CreatedByStaffIDContains = null; public String CreatedByStaffIDLike = null; public ArrayList CreatedByStaffIDBetween = null; public ArrayList CreatedByStaffIDIn = null; public Date ActivatedDateTime = null; public Date ActivatedDateTimeGreaterThanOrEqualTo = null; public Date ActivatedDateTimeGreaterThan = null; public Date ActivatedDateTimeLessThan = null; public Date ActivatedDateTimeLessThanOrEqualTo = null; public Date ActivatedDateTimeNotEqualTo = null; public ArrayList ActivatedDateTimeBetween = null; public ArrayList ActivatedDateTimeIn = null; public String ActivatedByStaffID = null; public String ActivatedByStaffIDStartsWith = null; public String ActivatedByStaffIDEndsWith = null; public String ActivatedByStaffIDContains = null; public String ActivatedByStaffIDLike = null; public ArrayList ActivatedByStaffIDBetween = null; public ArrayList ActivatedByStaffIDIn = null; public String IN_LogicalID = null; public String IN_LogicalIDStartsWith = null; public String IN_LogicalIDEndsWith = null; public String IN_LogicalIDContains = null; public String IN_LogicalIDLike = null; public ArrayList IN_LogicalIDBetween = null; public ArrayList IN_LogicalIDIn = null; public Short Status = null; public Short StatusGreaterThanOrEqualTo = null; public Short StatusGreaterThan = null; public Short StatusLessThan = null; public Short StatusLessThanOrEqualTo = null; public Short StatusNotEqualTo = null; public ArrayList StatusBetween = null; public ArrayList StatusIn = null; public String Notes = null; public String NotesStartsWith = null; public String NotesEndsWith = null; public String NotesContains = null; public String NotesLike = null; public ArrayList NotesBetween = null; public ArrayList NotesIn = null; public String BORunNo = null; public String BORunNoStartsWith = null; public String BORunNoEndsWith = null; public String BORunNoContains = null; public String BORunNoLike = null; public ArrayList BORunNoBetween = null; public ArrayList BORunNoIn = null; public String getRecID() { return RecID; } public BO_ManualReleaseBatchQuery setRecID(String value) { this.RecID = value; return this; } public String getRecIDStartsWith() { return RecIDStartsWith; } public BO_ManualReleaseBatchQuery setRecIDStartsWith(String value) { this.RecIDStartsWith = value; return this; } public String getRecIDEndsWith() { return RecIDEndsWith; } public BO_ManualReleaseBatchQuery setRecIDEndsWith(String value) { this.RecIDEndsWith = value; return this; } public String getRecIDContains() { return RecIDContains; } public BO_ManualReleaseBatchQuery setRecIDContains(String value) { this.RecIDContains = value; return this; } public String getRecIDLike() { return RecIDLike; } public BO_ManualReleaseBatchQuery setRecIDLike(String value) { this.RecIDLike = value; return this; } public ArrayList getRecIDBetween() { return RecIDBetween; } public BO_ManualReleaseBatchQuery setRecIDBetween(ArrayList value) { this.RecIDBetween = value; return this; } public ArrayList getRecIDIn() { return RecIDIn; } public BO_ManualReleaseBatchQuery setRecIDIn(ArrayList value) { this.RecIDIn = value; return this; } public String getBatchNo() { return BatchNo; } public BO_ManualReleaseBatchQuery setBatchNo(String value) { this.BatchNo = value; return this; } public String getBatchNoStartsWith() { return BatchNoStartsWith; } public BO_ManualReleaseBatchQuery setBatchNoStartsWith(String value) { this.BatchNoStartsWith = value; return this; } public String getBatchNoEndsWith() { return BatchNoEndsWith; } public BO_ManualReleaseBatchQuery setBatchNoEndsWith(String value) { this.BatchNoEndsWith = value; return this; } public String getBatchNoContains() { return BatchNoContains; } public BO_ManualReleaseBatchQuery setBatchNoContains(String value) { this.BatchNoContains = value; return this; } public String getBatchNoLike() { return BatchNoLike; } public BO_ManualReleaseBatchQuery setBatchNoLike(String value) { this.BatchNoLike = value; return this; } public ArrayList getBatchNoBetween() { return BatchNoBetween; } public BO_ManualReleaseBatchQuery setBatchNoBetween(ArrayList value) { this.BatchNoBetween = value; return this; } public ArrayList getBatchNoIn() { return BatchNoIn; } public BO_ManualReleaseBatchQuery setBatchNoIn(ArrayList value) { this.BatchNoIn = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public BO_ManualReleaseBatchQuery setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getLastSavedDateTimeGreaterThanOrEqualTo() { return LastSavedDateTimeGreaterThanOrEqualTo; } public BO_ManualReleaseBatchQuery setLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.LastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeGreaterThan() { return LastSavedDateTimeGreaterThan; } public BO_ManualReleaseBatchQuery setLastSavedDateTimeGreaterThan(Date value) { this.LastSavedDateTimeGreaterThan = value; return this; } public Date getLastSavedDateTimeLessThan() { return LastSavedDateTimeLessThan; } public BO_ManualReleaseBatchQuery setLastSavedDateTimeLessThan(Date value) { this.LastSavedDateTimeLessThan = value; return this; } public Date getLastSavedDateTimeLessThanOrEqualTo() { return LastSavedDateTimeLessThanOrEqualTo; } public BO_ManualReleaseBatchQuery setLastSavedDateTimeLessThanOrEqualTo(Date value) { this.LastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeNotEqualTo() { return LastSavedDateTimeNotEqualTo; } public BO_ManualReleaseBatchQuery setLastSavedDateTimeNotEqualTo(Date value) { this.LastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getLastSavedDateTimeBetween() { return LastSavedDateTimeBetween; } public BO_ManualReleaseBatchQuery setLastSavedDateTimeBetween(ArrayList value) { this.LastSavedDateTimeBetween = value; return this; } public ArrayList getLastSavedDateTimeIn() { return LastSavedDateTimeIn; } public BO_ManualReleaseBatchQuery setLastSavedDateTimeIn(ArrayList value) { this.LastSavedDateTimeIn = value; return this; } public String getLastSavedByStaffID() { return LastSavedByStaffID; } public BO_ManualReleaseBatchQuery setLastSavedByStaffID(String value) { this.LastSavedByStaffID = value; return this; } public String getLastSavedByStaffIDStartsWith() { return LastSavedByStaffIDStartsWith; } public BO_ManualReleaseBatchQuery setLastSavedByStaffIDStartsWith(String value) { this.LastSavedByStaffIDStartsWith = value; return this; } public String getLastSavedByStaffIDEndsWith() { return LastSavedByStaffIDEndsWith; } public BO_ManualReleaseBatchQuery setLastSavedByStaffIDEndsWith(String value) { this.LastSavedByStaffIDEndsWith = value; return this; } public String getLastSavedByStaffIDContains() { return LastSavedByStaffIDContains; } public BO_ManualReleaseBatchQuery setLastSavedByStaffIDContains(String value) { this.LastSavedByStaffIDContains = value; return this; } public String getLastSavedByStaffIDLike() { return LastSavedByStaffIDLike; } public BO_ManualReleaseBatchQuery setLastSavedByStaffIDLike(String value) { this.LastSavedByStaffIDLike = value; return this; } public ArrayList getLastSavedByStaffIDBetween() { return LastSavedByStaffIDBetween; } public BO_ManualReleaseBatchQuery setLastSavedByStaffIDBetween(ArrayList value) { this.LastSavedByStaffIDBetween = value; return this; } public ArrayList getLastSavedByStaffIDIn() { return LastSavedByStaffIDIn; } public BO_ManualReleaseBatchQuery setLastSavedByStaffIDIn(ArrayList value) { this.LastSavedByStaffIDIn = value; return this; } public Date getCreatedDateTime() { return CreatedDateTime; } public BO_ManualReleaseBatchQuery setCreatedDateTime(Date value) { this.CreatedDateTime = value; return this; } public Date getCreatedDateTimeGreaterThanOrEqualTo() { return CreatedDateTimeGreaterThanOrEqualTo; } public BO_ManualReleaseBatchQuery setCreatedDateTimeGreaterThanOrEqualTo(Date value) { this.CreatedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getCreatedDateTimeGreaterThan() { return CreatedDateTimeGreaterThan; } public BO_ManualReleaseBatchQuery setCreatedDateTimeGreaterThan(Date value) { this.CreatedDateTimeGreaterThan = value; return this; } public Date getCreatedDateTimeLessThan() { return CreatedDateTimeLessThan; } public BO_ManualReleaseBatchQuery setCreatedDateTimeLessThan(Date value) { this.CreatedDateTimeLessThan = value; return this; } public Date getCreatedDateTimeLessThanOrEqualTo() { return CreatedDateTimeLessThanOrEqualTo; } public BO_ManualReleaseBatchQuery setCreatedDateTimeLessThanOrEqualTo(Date value) { this.CreatedDateTimeLessThanOrEqualTo = value; return this; } public Date getCreatedDateTimeNotEqualTo() { return CreatedDateTimeNotEqualTo; } public BO_ManualReleaseBatchQuery setCreatedDateTimeNotEqualTo(Date value) { this.CreatedDateTimeNotEqualTo = value; return this; } public ArrayList getCreatedDateTimeBetween() { return CreatedDateTimeBetween; } public BO_ManualReleaseBatchQuery setCreatedDateTimeBetween(ArrayList value) { this.CreatedDateTimeBetween = value; return this; } public ArrayList getCreatedDateTimeIn() { return CreatedDateTimeIn; } public BO_ManualReleaseBatchQuery setCreatedDateTimeIn(ArrayList value) { this.CreatedDateTimeIn = value; return this; } public String getCreatedByStaffID() { return CreatedByStaffID; } public BO_ManualReleaseBatchQuery setCreatedByStaffID(String value) { this.CreatedByStaffID = value; return this; } public String getCreatedByStaffIDStartsWith() { return CreatedByStaffIDStartsWith; } public BO_ManualReleaseBatchQuery setCreatedByStaffIDStartsWith(String value) { this.CreatedByStaffIDStartsWith = value; return this; } public String getCreatedByStaffIDEndsWith() { return CreatedByStaffIDEndsWith; } public BO_ManualReleaseBatchQuery setCreatedByStaffIDEndsWith(String value) { this.CreatedByStaffIDEndsWith = value; return this; } public String getCreatedByStaffIDContains() { return CreatedByStaffIDContains; } public BO_ManualReleaseBatchQuery setCreatedByStaffIDContains(String value) { this.CreatedByStaffIDContains = value; return this; } public String getCreatedByStaffIDLike() { return CreatedByStaffIDLike; } public BO_ManualReleaseBatchQuery setCreatedByStaffIDLike(String value) { this.CreatedByStaffIDLike = value; return this; } public ArrayList getCreatedByStaffIDBetween() { return CreatedByStaffIDBetween; } public BO_ManualReleaseBatchQuery setCreatedByStaffIDBetween(ArrayList value) { this.CreatedByStaffIDBetween = value; return this; } public ArrayList getCreatedByStaffIDIn() { return CreatedByStaffIDIn; } public BO_ManualReleaseBatchQuery setCreatedByStaffIDIn(ArrayList value) { this.CreatedByStaffIDIn = value; return this; } public Date getActivatedDateTime() { return ActivatedDateTime; } public BO_ManualReleaseBatchQuery setActivatedDateTime(Date value) { this.ActivatedDateTime = value; return this; } public Date getActivatedDateTimeGreaterThanOrEqualTo() { return ActivatedDateTimeGreaterThanOrEqualTo; } public BO_ManualReleaseBatchQuery setActivatedDateTimeGreaterThanOrEqualTo(Date value) { this.ActivatedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getActivatedDateTimeGreaterThan() { return ActivatedDateTimeGreaterThan; } public BO_ManualReleaseBatchQuery setActivatedDateTimeGreaterThan(Date value) { this.ActivatedDateTimeGreaterThan = value; return this; } public Date getActivatedDateTimeLessThan() { return ActivatedDateTimeLessThan; } public BO_ManualReleaseBatchQuery setActivatedDateTimeLessThan(Date value) { this.ActivatedDateTimeLessThan = value; return this; } public Date getActivatedDateTimeLessThanOrEqualTo() { return ActivatedDateTimeLessThanOrEqualTo; } public BO_ManualReleaseBatchQuery setActivatedDateTimeLessThanOrEqualTo(Date value) { this.ActivatedDateTimeLessThanOrEqualTo = value; return this; } public Date getActivatedDateTimeNotEqualTo() { return ActivatedDateTimeNotEqualTo; } public BO_ManualReleaseBatchQuery setActivatedDateTimeNotEqualTo(Date value) { this.ActivatedDateTimeNotEqualTo = value; return this; } public ArrayList getActivatedDateTimeBetween() { return ActivatedDateTimeBetween; } public BO_ManualReleaseBatchQuery setActivatedDateTimeBetween(ArrayList value) { this.ActivatedDateTimeBetween = value; return this; } public ArrayList getActivatedDateTimeIn() { return ActivatedDateTimeIn; } public BO_ManualReleaseBatchQuery setActivatedDateTimeIn(ArrayList value) { this.ActivatedDateTimeIn = value; return this; } public String getActivatedByStaffID() { return ActivatedByStaffID; } public BO_ManualReleaseBatchQuery setActivatedByStaffID(String value) { this.ActivatedByStaffID = value; return this; } public String getActivatedByStaffIDStartsWith() { return ActivatedByStaffIDStartsWith; } public BO_ManualReleaseBatchQuery setActivatedByStaffIDStartsWith(String value) { this.ActivatedByStaffIDStartsWith = value; return this; } public String getActivatedByStaffIDEndsWith() { return ActivatedByStaffIDEndsWith; } public BO_ManualReleaseBatchQuery setActivatedByStaffIDEndsWith(String value) { this.ActivatedByStaffIDEndsWith = value; return this; } public String getActivatedByStaffIDContains() { return ActivatedByStaffIDContains; } public BO_ManualReleaseBatchQuery setActivatedByStaffIDContains(String value) { this.ActivatedByStaffIDContains = value; return this; } public String getActivatedByStaffIDLike() { return ActivatedByStaffIDLike; } public BO_ManualReleaseBatchQuery setActivatedByStaffIDLike(String value) { this.ActivatedByStaffIDLike = value; return this; } public ArrayList getActivatedByStaffIDBetween() { return ActivatedByStaffIDBetween; } public BO_ManualReleaseBatchQuery setActivatedByStaffIDBetween(ArrayList value) { this.ActivatedByStaffIDBetween = value; return this; } public ArrayList getActivatedByStaffIDIn() { return ActivatedByStaffIDIn; } public BO_ManualReleaseBatchQuery setActivatedByStaffIDIn(ArrayList value) { this.ActivatedByStaffIDIn = value; return this; } public String getInLogicalID() { return IN_LogicalID; } public BO_ManualReleaseBatchQuery setInLogicalID(String value) { this.IN_LogicalID = value; return this; } public String getInLogicalIDStartsWith() { return IN_LogicalIDStartsWith; } public BO_ManualReleaseBatchQuery setInLogicalIDStartsWith(String value) { this.IN_LogicalIDStartsWith = value; return this; } public String getInLogicalIDEndsWith() { return IN_LogicalIDEndsWith; } public BO_ManualReleaseBatchQuery setInLogicalIDEndsWith(String value) { this.IN_LogicalIDEndsWith = value; return this; } public String getInLogicalIDContains() { return IN_LogicalIDContains; } public BO_ManualReleaseBatchQuery setInLogicalIDContains(String value) { this.IN_LogicalIDContains = value; return this; } public String getInLogicalIDLike() { return IN_LogicalIDLike; } public BO_ManualReleaseBatchQuery setInLogicalIDLike(String value) { this.IN_LogicalIDLike = value; return this; } public ArrayList getInLogicalIDBetween() { return IN_LogicalIDBetween; } public BO_ManualReleaseBatchQuery setInLogicalIDBetween(ArrayList value) { this.IN_LogicalIDBetween = value; return this; } public ArrayList getInLogicalIDIn() { return IN_LogicalIDIn; } public BO_ManualReleaseBatchQuery setInLogicalIDIn(ArrayList value) { this.IN_LogicalIDIn = value; return this; } public Short getStatus() { return Status; } public BO_ManualReleaseBatchQuery setStatus(Short value) { this.Status = value; return this; } public Short getStatusGreaterThanOrEqualTo() { return StatusGreaterThanOrEqualTo; } public BO_ManualReleaseBatchQuery setStatusGreaterThanOrEqualTo(Short value) { this.StatusGreaterThanOrEqualTo = value; return this; } public Short getStatusGreaterThan() { return StatusGreaterThan; } public BO_ManualReleaseBatchQuery setStatusGreaterThan(Short value) { this.StatusGreaterThan = value; return this; } public Short getStatusLessThan() { return StatusLessThan; } public BO_ManualReleaseBatchQuery setStatusLessThan(Short value) { this.StatusLessThan = value; return this; } public Short getStatusLessThanOrEqualTo() { return StatusLessThanOrEqualTo; } public BO_ManualReleaseBatchQuery setStatusLessThanOrEqualTo(Short value) { this.StatusLessThanOrEqualTo = value; return this; } public Short getStatusNotEqualTo() { return StatusNotEqualTo; } public BO_ManualReleaseBatchQuery setStatusNotEqualTo(Short value) { this.StatusNotEqualTo = value; return this; } public ArrayList getStatusBetween() { return StatusBetween; } public BO_ManualReleaseBatchQuery setStatusBetween(ArrayList value) { this.StatusBetween = value; return this; } public ArrayList getStatusIn() { return StatusIn; } public BO_ManualReleaseBatchQuery setStatusIn(ArrayList value) { this.StatusIn = value; return this; } public String getNotes() { return Notes; } public BO_ManualReleaseBatchQuery setNotes(String value) { this.Notes = value; return this; } public String getNotesStartsWith() { return NotesStartsWith; } public BO_ManualReleaseBatchQuery setNotesStartsWith(String value) { this.NotesStartsWith = value; return this; } public String getNotesEndsWith() { return NotesEndsWith; } public BO_ManualReleaseBatchQuery setNotesEndsWith(String value) { this.NotesEndsWith = value; return this; } public String getNotesContains() { return NotesContains; } public BO_ManualReleaseBatchQuery setNotesContains(String value) { this.NotesContains = value; return this; } public String getNotesLike() { return NotesLike; } public BO_ManualReleaseBatchQuery setNotesLike(String value) { this.NotesLike = value; return this; } public ArrayList getNotesBetween() { return NotesBetween; } public BO_ManualReleaseBatchQuery setNotesBetween(ArrayList value) { this.NotesBetween = value; return this; } public ArrayList getNotesIn() { return NotesIn; } public BO_ManualReleaseBatchQuery setNotesIn(ArrayList value) { this.NotesIn = value; return this; } public String getBoRunNo() { return BORunNo; } public BO_ManualReleaseBatchQuery setBoRunNo(String value) { this.BORunNo = value; return this; } public String getBoRunNoStartsWith() { return BORunNoStartsWith; } public BO_ManualReleaseBatchQuery setBoRunNoStartsWith(String value) { this.BORunNoStartsWith = value; return this; } public String getBoRunNoEndsWith() { return BORunNoEndsWith; } public BO_ManualReleaseBatchQuery setBoRunNoEndsWith(String value) { this.BORunNoEndsWith = value; return this; } public String getBoRunNoContains() { return BORunNoContains; } public BO_ManualReleaseBatchQuery setBoRunNoContains(String value) { this.BORunNoContains = value; return this; } public String getBoRunNoLike() { return BORunNoLike; } public BO_ManualReleaseBatchQuery setBoRunNoLike(String value) { this.BORunNoLike = value; return this; } public ArrayList getBoRunNoBetween() { return BORunNoBetween; } public BO_ManualReleaseBatchQuery setBoRunNoBetween(ArrayList value) { this.BORunNoBetween = value; return this; } public ArrayList getBoRunNoIn() { return BORunNoIn; } public BO_ManualReleaseBatchQuery setBoRunNoIn(ArrayList value) { this.BORunNoIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class BO_ManualReleaseBatchLinesQuery extends QueryDb implements IReturn> { public String RecID = null; public String RecIDStartsWith = null; public String RecIDEndsWith = null; public String RecIDContains = null; public String RecIDLike = null; public ArrayList RecIDBetween = null; public ArrayList RecIDIn = null; public String BatchID = null; public String BatchIDStartsWith = null; public String BatchIDEndsWith = null; public String BatchIDContains = null; public String BatchIDLike = null; public ArrayList BatchIDBetween = null; public ArrayList BatchIDIn = null; public Integer LineNumber = null; public Integer LineNumberGreaterThanOrEqualTo = null; public Integer LineNumberGreaterThan = null; public Integer LineNumberLessThan = null; public Integer LineNumberLessThanOrEqualTo = null; public Integer LineNumberNotEqualTo = null; public ArrayList LineNumberBetween = null; public ArrayList LineNumberIn = null; public Date LastSavedDateTime = null; public Date LastSavedDateTimeGreaterThanOrEqualTo = null; public Date LastSavedDateTimeGreaterThan = null; public Date LastSavedDateTimeLessThan = null; public Date LastSavedDateTimeLessThanOrEqualTo = null; public Date LastSavedDateTimeNotEqualTo = null; public ArrayList LastSavedDateTimeBetween = null; public ArrayList LastSavedDateTimeIn = null; public String IN_OnBackOrder_OrdersOnBackID = null; public String IN_OnBackOrder_OrdersOnBackIDStartsWith = null; public String IN_OnBackOrder_OrdersOnBackIDEndsWith = null; public String IN_OnBackOrder_OrdersOnBackIDContains = null; public String IN_OnBackOrder_OrdersOnBackIDLike = null; public ArrayList IN_OnBackOrder_OrdersOnBackIDBetween = null; public ArrayList IN_OnBackOrder_OrdersOnBackIDIn = null; public String InventoryID = null; public String InventoryIDStartsWith = null; public String InventoryIDEndsWith = null; public String InventoryIDContains = null; public String InventoryIDLike = null; public ArrayList InventoryIDBetween = null; public ArrayList InventoryIDIn = null; public String PartNo = null; public String PartNoStartsWith = null; public String PartNoEndsWith = null; public String PartNoContains = null; public String PartNoLike = null; public ArrayList PartNoBetween = null; public ArrayList PartNoIn = null; public String Description = null; public String DescriptionStartsWith = null; public String DescriptionEndsWith = null; public String DescriptionContains = null; public String DescriptionLike = null; public ArrayList DescriptionBetween = null; public ArrayList DescriptionIn = null; public Integer QuantityDecimalPlaces = null; public Integer QuantityDecimalPlacesGreaterThanOrEqualTo = null; public Integer QuantityDecimalPlacesGreaterThan = null; public Integer QuantityDecimalPlacesLessThan = null; public Integer QuantityDecimalPlacesLessThanOrEqualTo = null; public Integer QuantityDecimalPlacesNotEqualTo = null; public ArrayList QuantityDecimalPlacesBetween = null; public ArrayList QuantityDecimalPlacesIn = null; public BigDecimal BackOrderQuantity = null; public BigDecimal BackOrderQuantityGreaterThanOrEqualTo = null; public BigDecimal BackOrderQuantityGreaterThan = null; public BigDecimal BackOrderQuantityLessThan = null; public BigDecimal BackOrderQuantityLessThanOrEqualTo = null; public BigDecimal BackOrderQuantityNotEqualTo = null; public ArrayList BackOrderQuantityBetween = null; public ArrayList BackOrderQuantityIn = null; public BigDecimal BackOrderValue = null; public BigDecimal BackOrderValueGreaterThanOrEqualTo = null; public BigDecimal BackOrderValueGreaterThan = null; public BigDecimal BackOrderValueLessThan = null; public BigDecimal BackOrderValueLessThanOrEqualTo = null; public BigDecimal BackOrderValueNotEqualTo = null; public ArrayList BackOrderValueBetween = null; public ArrayList BackOrderValueIn = null; public BigDecimal QuantityAvailable = null; public BigDecimal QuantityAvailableGreaterThanOrEqualTo = null; public BigDecimal QuantityAvailableGreaterThan = null; public BigDecimal QuantityAvailableLessThan = null; public BigDecimal QuantityAvailableLessThanOrEqualTo = null; public BigDecimal QuantityAvailableNotEqualTo = null; public ArrayList QuantityAvailableBetween = null; public ArrayList QuantityAvailableIn = null; public Date InvoiceInitDate = null; public Date InvoiceInitDateGreaterThanOrEqualTo = null; public Date InvoiceInitDateGreaterThan = null; public Date InvoiceInitDateLessThan = null; public Date InvoiceInitDateLessThanOrEqualTo = null; public Date InvoiceInitDateNotEqualTo = null; public ArrayList InvoiceInitDateBetween = null; public ArrayList InvoiceInitDateIn = null; public Date ExpectedDeliveryDate = null; public Date ExpectedDeliveryDateGreaterThanOrEqualTo = null; public Date ExpectedDeliveryDateGreaterThan = null; public Date ExpectedDeliveryDateLessThan = null; public Date ExpectedDeliveryDateLessThanOrEqualTo = null; public Date ExpectedDeliveryDateNotEqualTo = null; public ArrayList ExpectedDeliveryDateBetween = null; public ArrayList ExpectedDeliveryDateIn = null; public String BackOrderPriority = null; public String BackOrderPriorityStartsWith = null; public String BackOrderPriorityEndsWith = null; public String BackOrderPriorityContains = null; public String BackOrderPriorityLike = null; public ArrayList BackOrderPriorityBetween = null; public ArrayList BackOrderPriorityIn = null; public Integer BackOrderPriorityWeight = null; public Integer BackOrderPriorityWeightGreaterThanOrEqualTo = null; public Integer BackOrderPriorityWeightGreaterThan = null; public Integer BackOrderPriorityWeightLessThan = null; public Integer BackOrderPriorityWeightLessThanOrEqualTo = null; public Integer BackOrderPriorityWeightNotEqualTo = null; public ArrayList BackOrderPriorityWeightBetween = null; public ArrayList BackOrderPriorityWeightIn = null; public String DebtorID = null; public String DebtorIDStartsWith = null; public String DebtorIDEndsWith = null; public String DebtorIDContains = null; public String DebtorIDLike = null; public ArrayList DebtorIDBetween = null; public ArrayList DebtorIDIn = null; public String DebtorAccountNo = null; public String DebtorAccountNoStartsWith = null; public String DebtorAccountNoEndsWith = null; public String DebtorAccountNoContains = null; public String DebtorAccountNoLike = null; public ArrayList DebtorAccountNoBetween = null; public ArrayList DebtorAccountNoIn = null; public String DebtorName = null; public String DebtorNameStartsWith = null; public String DebtorNameEndsWith = null; public String DebtorNameContains = null; public String DebtorNameLike = null; public ArrayList DebtorNameBetween = null; public ArrayList DebtorNameIn = null; public String InvoiceID = null; public String InvoiceIDStartsWith = null; public String InvoiceIDEndsWith = null; public String InvoiceIDContains = null; public String InvoiceIDLike = null; public ArrayList InvoiceIDBetween = null; public ArrayList InvoiceIDIn = null; public String InvoiceNo = null; public String InvoiceNoStartsWith = null; public String InvoiceNoEndsWith = null; public String InvoiceNoContains = null; public String InvoiceNoLike = null; public ArrayList InvoiceNoBetween = null; public ArrayList InvoiceNoIn = null; public String InvoiceHistoryID = null; public String InvoiceHistoryIDStartsWith = null; public String InvoiceHistoryIDEndsWith = null; public String InvoiceHistoryIDContains = null; public String InvoiceHistoryIDLike = null; public ArrayList InvoiceHistoryIDBetween = null; public ArrayList InvoiceHistoryIDIn = null; public Integer HistoryNo = null; public Integer HistoryNoGreaterThanOrEqualTo = null; public Integer HistoryNoGreaterThan = null; public Integer HistoryNoLessThan = null; public Integer HistoryNoLessThanOrEqualTo = null; public Integer HistoryNoNotEqualTo = null; public ArrayList HistoryNoBetween = null; public ArrayList HistoryNoIn = null; public String InvoiceLineID = null; public String InvoiceLineIDStartsWith = null; public String InvoiceLineIDEndsWith = null; public String InvoiceLineIDContains = null; public String InvoiceLineIDLike = null; public ArrayList InvoiceLineIDBetween = null; public ArrayList InvoiceLineIDIn = null; public Boolean FulfillBackOrderFlag = null; public Short KitType = null; public Short KitTypeGreaterThanOrEqualTo = null; public Short KitTypeGreaterThan = null; public Short KitTypeLessThan = null; public Short KitTypeLessThanOrEqualTo = null; public Short KitTypeNotEqualTo = null; public ArrayList KitTypeBetween = null; public ArrayList KitTypeIn = null; public Short BillType = null; public Short BillTypeGreaterThanOrEqualTo = null; public Short BillTypeGreaterThan = null; public Short BillTypeLessThan = null; public Short BillTypeLessThanOrEqualTo = null; public Short BillTypeNotEqualTo = null; public ArrayList BillTypeBetween = null; public ArrayList BillTypeIn = null; public Short WholesaleInvoice = null; public Short WholesaleInvoiceGreaterThanOrEqualTo = null; public Short WholesaleInvoiceGreaterThan = null; public Short WholesaleInvoiceLessThan = null; public Short WholesaleInvoiceLessThanOrEqualTo = null; public Short WholesaleInvoiceNotEqualTo = null; public ArrayList WholesaleInvoiceBetween = null; public ArrayList WholesaleInvoiceIn = null; public Short OrderType = null; public Short OrderTypeGreaterThanOrEqualTo = null; public Short OrderTypeGreaterThan = null; public Short OrderTypeLessThan = null; public Short OrderTypeLessThanOrEqualTo = null; public Short OrderTypeNotEqualTo = null; public ArrayList OrderTypeBetween = null; public ArrayList OrderTypeIn = null; public String ErrorMessage = null; public String ErrorMessageStartsWith = null; public String ErrorMessageEndsWith = null; public String ErrorMessageContains = null; public String ErrorMessageLike = null; public ArrayList ErrorMessageBetween = null; public ArrayList ErrorMessageIn = null; public BigDecimal QuantityLeft = null; public BigDecimal QuantityLeftGreaterThanOrEqualTo = null; public BigDecimal QuantityLeftGreaterThan = null; public BigDecimal QuantityLeftLessThan = null; public BigDecimal QuantityLeftLessThanOrEqualTo = null; public BigDecimal QuantityLeftNotEqualTo = null; public ArrayList QuantityLeftBetween = null; public ArrayList QuantityLeftIn = null; public String getRecID() { return RecID; } public BO_ManualReleaseBatchLinesQuery setRecID(String value) { this.RecID = value; return this; } public String getRecIDStartsWith() { return RecIDStartsWith; } public BO_ManualReleaseBatchLinesQuery setRecIDStartsWith(String value) { this.RecIDStartsWith = value; return this; } public String getRecIDEndsWith() { return RecIDEndsWith; } public BO_ManualReleaseBatchLinesQuery setRecIDEndsWith(String value) { this.RecIDEndsWith = value; return this; } public String getRecIDContains() { return RecIDContains; } public BO_ManualReleaseBatchLinesQuery setRecIDContains(String value) { this.RecIDContains = value; return this; } public String getRecIDLike() { return RecIDLike; } public BO_ManualReleaseBatchLinesQuery setRecIDLike(String value) { this.RecIDLike = value; return this; } public ArrayList getRecIDBetween() { return RecIDBetween; } public BO_ManualReleaseBatchLinesQuery setRecIDBetween(ArrayList value) { this.RecIDBetween = value; return this; } public ArrayList getRecIDIn() { return RecIDIn; } public BO_ManualReleaseBatchLinesQuery setRecIDIn(ArrayList value) { this.RecIDIn = value; return this; } public String getBatchID() { return BatchID; } public BO_ManualReleaseBatchLinesQuery setBatchID(String value) { this.BatchID = value; return this; } public String getBatchIDStartsWith() { return BatchIDStartsWith; } public BO_ManualReleaseBatchLinesQuery setBatchIDStartsWith(String value) { this.BatchIDStartsWith = value; return this; } public String getBatchIDEndsWith() { return BatchIDEndsWith; } public BO_ManualReleaseBatchLinesQuery setBatchIDEndsWith(String value) { this.BatchIDEndsWith = value; return this; } public String getBatchIDContains() { return BatchIDContains; } public BO_ManualReleaseBatchLinesQuery setBatchIDContains(String value) { this.BatchIDContains = value; return this; } public String getBatchIDLike() { return BatchIDLike; } public BO_ManualReleaseBatchLinesQuery setBatchIDLike(String value) { this.BatchIDLike = value; return this; } public ArrayList getBatchIDBetween() { return BatchIDBetween; } public BO_ManualReleaseBatchLinesQuery setBatchIDBetween(ArrayList value) { this.BatchIDBetween = value; return this; } public ArrayList getBatchIDIn() { return BatchIDIn; } public BO_ManualReleaseBatchLinesQuery setBatchIDIn(ArrayList value) { this.BatchIDIn = value; return this; } public Integer getLineNumber() { return LineNumber; } public BO_ManualReleaseBatchLinesQuery setLineNumber(Integer value) { this.LineNumber = value; return this; } public Integer getLineNumberGreaterThanOrEqualTo() { return LineNumberGreaterThanOrEqualTo; } public BO_ManualReleaseBatchLinesQuery setLineNumberGreaterThanOrEqualTo(Integer value) { this.LineNumberGreaterThanOrEqualTo = value; return this; } public Integer getLineNumberGreaterThan() { return LineNumberGreaterThan; } public BO_ManualReleaseBatchLinesQuery setLineNumberGreaterThan(Integer value) { this.LineNumberGreaterThan = value; return this; } public Integer getLineNumberLessThan() { return LineNumberLessThan; } public BO_ManualReleaseBatchLinesQuery setLineNumberLessThan(Integer value) { this.LineNumberLessThan = value; return this; } public Integer getLineNumberLessThanOrEqualTo() { return LineNumberLessThanOrEqualTo; } public BO_ManualReleaseBatchLinesQuery setLineNumberLessThanOrEqualTo(Integer value) { this.LineNumberLessThanOrEqualTo = value; return this; } public Integer getLineNumberNotEqualTo() { return LineNumberNotEqualTo; } public BO_ManualReleaseBatchLinesQuery setLineNumberNotEqualTo(Integer value) { this.LineNumberNotEqualTo = value; return this; } public ArrayList getLineNumberBetween() { return LineNumberBetween; } public BO_ManualReleaseBatchLinesQuery setLineNumberBetween(ArrayList value) { this.LineNumberBetween = value; return this; } public ArrayList getLineNumberIn() { return LineNumberIn; } public BO_ManualReleaseBatchLinesQuery setLineNumberIn(ArrayList value) { this.LineNumberIn = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public BO_ManualReleaseBatchLinesQuery setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getLastSavedDateTimeGreaterThanOrEqualTo() { return LastSavedDateTimeGreaterThanOrEqualTo; } public BO_ManualReleaseBatchLinesQuery setLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.LastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeGreaterThan() { return LastSavedDateTimeGreaterThan; } public BO_ManualReleaseBatchLinesQuery setLastSavedDateTimeGreaterThan(Date value) { this.LastSavedDateTimeGreaterThan = value; return this; } public Date getLastSavedDateTimeLessThan() { return LastSavedDateTimeLessThan; } public BO_ManualReleaseBatchLinesQuery setLastSavedDateTimeLessThan(Date value) { this.LastSavedDateTimeLessThan = value; return this; } public Date getLastSavedDateTimeLessThanOrEqualTo() { return LastSavedDateTimeLessThanOrEqualTo; } public BO_ManualReleaseBatchLinesQuery setLastSavedDateTimeLessThanOrEqualTo(Date value) { this.LastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeNotEqualTo() { return LastSavedDateTimeNotEqualTo; } public BO_ManualReleaseBatchLinesQuery setLastSavedDateTimeNotEqualTo(Date value) { this.LastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getLastSavedDateTimeBetween() { return LastSavedDateTimeBetween; } public BO_ManualReleaseBatchLinesQuery setLastSavedDateTimeBetween(ArrayList value) { this.LastSavedDateTimeBetween = value; return this; } public ArrayList getLastSavedDateTimeIn() { return LastSavedDateTimeIn; } public BO_ManualReleaseBatchLinesQuery setLastSavedDateTimeIn(ArrayList value) { this.LastSavedDateTimeIn = value; return this; } public String getInOnBackOrderOrdersOnBackID() { return IN_OnBackOrder_OrdersOnBackID; } public BO_ManualReleaseBatchLinesQuery setInOnBackOrderOrdersOnBackID(String value) { this.IN_OnBackOrder_OrdersOnBackID = value; return this; } public String getInOnBackOrderOrdersOnBackIDStartsWith() { return IN_OnBackOrder_OrdersOnBackIDStartsWith; } public BO_ManualReleaseBatchLinesQuery setInOnBackOrderOrdersOnBackIDStartsWith(String value) { this.IN_OnBackOrder_OrdersOnBackIDStartsWith = value; return this; } public String getInOnBackOrderOrdersOnBackIDEndsWith() { return IN_OnBackOrder_OrdersOnBackIDEndsWith; } public BO_ManualReleaseBatchLinesQuery setInOnBackOrderOrdersOnBackIDEndsWith(String value) { this.IN_OnBackOrder_OrdersOnBackIDEndsWith = value; return this; } public String getInOnBackOrderOrdersOnBackIDContains() { return IN_OnBackOrder_OrdersOnBackIDContains; } public BO_ManualReleaseBatchLinesQuery setInOnBackOrderOrdersOnBackIDContains(String value) { this.IN_OnBackOrder_OrdersOnBackIDContains = value; return this; } public String getInOnBackOrderOrdersOnBackIDLike() { return IN_OnBackOrder_OrdersOnBackIDLike; } public BO_ManualReleaseBatchLinesQuery setInOnBackOrderOrdersOnBackIDLike(String value) { this.IN_OnBackOrder_OrdersOnBackIDLike = value; return this; } public ArrayList getInOnBackOrderOrdersOnBackIDBetween() { return IN_OnBackOrder_OrdersOnBackIDBetween; } public BO_ManualReleaseBatchLinesQuery setInOnBackOrderOrdersOnBackIDBetween(ArrayList value) { this.IN_OnBackOrder_OrdersOnBackIDBetween = value; return this; } public ArrayList getInOnBackOrderOrdersOnBackIDIn() { return IN_OnBackOrder_OrdersOnBackIDIn; } public BO_ManualReleaseBatchLinesQuery setInOnBackOrderOrdersOnBackIDIn(ArrayList value) { this.IN_OnBackOrder_OrdersOnBackIDIn = value; return this; } public String getInventoryID() { return InventoryID; } public BO_ManualReleaseBatchLinesQuery setInventoryID(String value) { this.InventoryID = value; return this; } public String getInventoryIDStartsWith() { return InventoryIDStartsWith; } public BO_ManualReleaseBatchLinesQuery setInventoryIDStartsWith(String value) { this.InventoryIDStartsWith = value; return this; } public String getInventoryIDEndsWith() { return InventoryIDEndsWith; } public BO_ManualReleaseBatchLinesQuery setInventoryIDEndsWith(String value) { this.InventoryIDEndsWith = value; return this; } public String getInventoryIDContains() { return InventoryIDContains; } public BO_ManualReleaseBatchLinesQuery setInventoryIDContains(String value) { this.InventoryIDContains = value; return this; } public String getInventoryIDLike() { return InventoryIDLike; } public BO_ManualReleaseBatchLinesQuery setInventoryIDLike(String value) { this.InventoryIDLike = value; return this; } public ArrayList getInventoryIDBetween() { return InventoryIDBetween; } public BO_ManualReleaseBatchLinesQuery setInventoryIDBetween(ArrayList value) { this.InventoryIDBetween = value; return this; } public ArrayList getInventoryIDIn() { return InventoryIDIn; } public BO_ManualReleaseBatchLinesQuery setInventoryIDIn(ArrayList value) { this.InventoryIDIn = value; return this; } public String getPartNo() { return PartNo; } public BO_ManualReleaseBatchLinesQuery setPartNo(String value) { this.PartNo = value; return this; } public String getPartNoStartsWith() { return PartNoStartsWith; } public BO_ManualReleaseBatchLinesQuery setPartNoStartsWith(String value) { this.PartNoStartsWith = value; return this; } public String getPartNoEndsWith() { return PartNoEndsWith; } public BO_ManualReleaseBatchLinesQuery setPartNoEndsWith(String value) { this.PartNoEndsWith = value; return this; } public String getPartNoContains() { return PartNoContains; } public BO_ManualReleaseBatchLinesQuery setPartNoContains(String value) { this.PartNoContains = value; return this; } public String getPartNoLike() { return PartNoLike; } public BO_ManualReleaseBatchLinesQuery setPartNoLike(String value) { this.PartNoLike = value; return this; } public ArrayList getPartNoBetween() { return PartNoBetween; } public BO_ManualReleaseBatchLinesQuery setPartNoBetween(ArrayList value) { this.PartNoBetween = value; return this; } public ArrayList getPartNoIn() { return PartNoIn; } public BO_ManualReleaseBatchLinesQuery setPartNoIn(ArrayList value) { this.PartNoIn = value; return this; } public String getDescription() { return Description; } public BO_ManualReleaseBatchLinesQuery setDescription(String value) { this.Description = value; return this; } public String getDescriptionStartsWith() { return DescriptionStartsWith; } public BO_ManualReleaseBatchLinesQuery setDescriptionStartsWith(String value) { this.DescriptionStartsWith = value; return this; } public String getDescriptionEndsWith() { return DescriptionEndsWith; } public BO_ManualReleaseBatchLinesQuery setDescriptionEndsWith(String value) { this.DescriptionEndsWith = value; return this; } public String getDescriptionContains() { return DescriptionContains; } public BO_ManualReleaseBatchLinesQuery setDescriptionContains(String value) { this.DescriptionContains = value; return this; } public String getDescriptionLike() { return DescriptionLike; } public BO_ManualReleaseBatchLinesQuery setDescriptionLike(String value) { this.DescriptionLike = value; return this; } public ArrayList getDescriptionBetween() { return DescriptionBetween; } public BO_ManualReleaseBatchLinesQuery setDescriptionBetween(ArrayList value) { this.DescriptionBetween = value; return this; } public ArrayList getDescriptionIn() { return DescriptionIn; } public BO_ManualReleaseBatchLinesQuery setDescriptionIn(ArrayList value) { this.DescriptionIn = value; return this; } public Integer getQuantityDecimalPlaces() { return QuantityDecimalPlaces; } public BO_ManualReleaseBatchLinesQuery setQuantityDecimalPlaces(Integer value) { this.QuantityDecimalPlaces = value; return this; } public Integer getQuantityDecimalPlacesGreaterThanOrEqualTo() { return QuantityDecimalPlacesGreaterThanOrEqualTo; } public BO_ManualReleaseBatchLinesQuery setQuantityDecimalPlacesGreaterThanOrEqualTo(Integer value) { this.QuantityDecimalPlacesGreaterThanOrEqualTo = value; return this; } public Integer getQuantityDecimalPlacesGreaterThan() { return QuantityDecimalPlacesGreaterThan; } public BO_ManualReleaseBatchLinesQuery setQuantityDecimalPlacesGreaterThan(Integer value) { this.QuantityDecimalPlacesGreaterThan = value; return this; } public Integer getQuantityDecimalPlacesLessThan() { return QuantityDecimalPlacesLessThan; } public BO_ManualReleaseBatchLinesQuery setQuantityDecimalPlacesLessThan(Integer value) { this.QuantityDecimalPlacesLessThan = value; return this; } public Integer getQuantityDecimalPlacesLessThanOrEqualTo() { return QuantityDecimalPlacesLessThanOrEqualTo; } public BO_ManualReleaseBatchLinesQuery setQuantityDecimalPlacesLessThanOrEqualTo(Integer value) { this.QuantityDecimalPlacesLessThanOrEqualTo = value; return this; } public Integer getQuantityDecimalPlacesNotEqualTo() { return QuantityDecimalPlacesNotEqualTo; } public BO_ManualReleaseBatchLinesQuery setQuantityDecimalPlacesNotEqualTo(Integer value) { this.QuantityDecimalPlacesNotEqualTo = value; return this; } public ArrayList getQuantityDecimalPlacesBetween() { return QuantityDecimalPlacesBetween; } public BO_ManualReleaseBatchLinesQuery setQuantityDecimalPlacesBetween(ArrayList value) { this.QuantityDecimalPlacesBetween = value; return this; } public ArrayList getQuantityDecimalPlacesIn() { return QuantityDecimalPlacesIn; } public BO_ManualReleaseBatchLinesQuery setQuantityDecimalPlacesIn(ArrayList value) { this.QuantityDecimalPlacesIn = value; return this; } public BigDecimal getBackOrderQuantity() { return BackOrderQuantity; } public BO_ManualReleaseBatchLinesQuery setBackOrderQuantity(BigDecimal value) { this.BackOrderQuantity = value; return this; } public BigDecimal getBackOrderQuantityGreaterThanOrEqualTo() { return BackOrderQuantityGreaterThanOrEqualTo; } public BO_ManualReleaseBatchLinesQuery setBackOrderQuantityGreaterThanOrEqualTo(BigDecimal value) { this.BackOrderQuantityGreaterThanOrEqualTo = value; return this; } public BigDecimal getBackOrderQuantityGreaterThan() { return BackOrderQuantityGreaterThan; } public BO_ManualReleaseBatchLinesQuery setBackOrderQuantityGreaterThan(BigDecimal value) { this.BackOrderQuantityGreaterThan = value; return this; } public BigDecimal getBackOrderQuantityLessThan() { return BackOrderQuantityLessThan; } public BO_ManualReleaseBatchLinesQuery setBackOrderQuantityLessThan(BigDecimal value) { this.BackOrderQuantityLessThan = value; return this; } public BigDecimal getBackOrderQuantityLessThanOrEqualTo() { return BackOrderQuantityLessThanOrEqualTo; } public BO_ManualReleaseBatchLinesQuery setBackOrderQuantityLessThanOrEqualTo(BigDecimal value) { this.BackOrderQuantityLessThanOrEqualTo = value; return this; } public BigDecimal getBackOrderQuantityNotEqualTo() { return BackOrderQuantityNotEqualTo; } public BO_ManualReleaseBatchLinesQuery setBackOrderQuantityNotEqualTo(BigDecimal value) { this.BackOrderQuantityNotEqualTo = value; return this; } public ArrayList getBackOrderQuantityBetween() { return BackOrderQuantityBetween; } public BO_ManualReleaseBatchLinesQuery setBackOrderQuantityBetween(ArrayList value) { this.BackOrderQuantityBetween = value; return this; } public ArrayList getBackOrderQuantityIn() { return BackOrderQuantityIn; } public BO_ManualReleaseBatchLinesQuery setBackOrderQuantityIn(ArrayList value) { this.BackOrderQuantityIn = value; return this; } public BigDecimal getBackOrderValue() { return BackOrderValue; } public BO_ManualReleaseBatchLinesQuery setBackOrderValue(BigDecimal value) { this.BackOrderValue = value; return this; } public BigDecimal getBackOrderValueGreaterThanOrEqualTo() { return BackOrderValueGreaterThanOrEqualTo; } public BO_ManualReleaseBatchLinesQuery setBackOrderValueGreaterThanOrEqualTo(BigDecimal value) { this.BackOrderValueGreaterThanOrEqualTo = value; return this; } public BigDecimal getBackOrderValueGreaterThan() { return BackOrderValueGreaterThan; } public BO_ManualReleaseBatchLinesQuery setBackOrderValueGreaterThan(BigDecimal value) { this.BackOrderValueGreaterThan = value; return this; } public BigDecimal getBackOrderValueLessThan() { return BackOrderValueLessThan; } public BO_ManualReleaseBatchLinesQuery setBackOrderValueLessThan(BigDecimal value) { this.BackOrderValueLessThan = value; return this; } public BigDecimal getBackOrderValueLessThanOrEqualTo() { return BackOrderValueLessThanOrEqualTo; } public BO_ManualReleaseBatchLinesQuery setBackOrderValueLessThanOrEqualTo(BigDecimal value) { this.BackOrderValueLessThanOrEqualTo = value; return this; } public BigDecimal getBackOrderValueNotEqualTo() { return BackOrderValueNotEqualTo; } public BO_ManualReleaseBatchLinesQuery setBackOrderValueNotEqualTo(BigDecimal value) { this.BackOrderValueNotEqualTo = value; return this; } public ArrayList getBackOrderValueBetween() { return BackOrderValueBetween; } public BO_ManualReleaseBatchLinesQuery setBackOrderValueBetween(ArrayList value) { this.BackOrderValueBetween = value; return this; } public ArrayList getBackOrderValueIn() { return BackOrderValueIn; } public BO_ManualReleaseBatchLinesQuery setBackOrderValueIn(ArrayList value) { this.BackOrderValueIn = value; return this; } public BigDecimal getQuantityAvailable() { return QuantityAvailable; } public BO_ManualReleaseBatchLinesQuery setQuantityAvailable(BigDecimal value) { this.QuantityAvailable = value; return this; } public BigDecimal getQuantityAvailableGreaterThanOrEqualTo() { return QuantityAvailableGreaterThanOrEqualTo; } public BO_ManualReleaseBatchLinesQuery setQuantityAvailableGreaterThanOrEqualTo(BigDecimal value) { this.QuantityAvailableGreaterThanOrEqualTo = value; return this; } public BigDecimal getQuantityAvailableGreaterThan() { return QuantityAvailableGreaterThan; } public BO_ManualReleaseBatchLinesQuery setQuantityAvailableGreaterThan(BigDecimal value) { this.QuantityAvailableGreaterThan = value; return this; } public BigDecimal getQuantityAvailableLessThan() { return QuantityAvailableLessThan; } public BO_ManualReleaseBatchLinesQuery setQuantityAvailableLessThan(BigDecimal value) { this.QuantityAvailableLessThan = value; return this; } public BigDecimal getQuantityAvailableLessThanOrEqualTo() { return QuantityAvailableLessThanOrEqualTo; } public BO_ManualReleaseBatchLinesQuery setQuantityAvailableLessThanOrEqualTo(BigDecimal value) { this.QuantityAvailableLessThanOrEqualTo = value; return this; } public BigDecimal getQuantityAvailableNotEqualTo() { return QuantityAvailableNotEqualTo; } public BO_ManualReleaseBatchLinesQuery setQuantityAvailableNotEqualTo(BigDecimal value) { this.QuantityAvailableNotEqualTo = value; return this; } public ArrayList getQuantityAvailableBetween() { return QuantityAvailableBetween; } public BO_ManualReleaseBatchLinesQuery setQuantityAvailableBetween(ArrayList value) { this.QuantityAvailableBetween = value; return this; } public ArrayList getQuantityAvailableIn() { return QuantityAvailableIn; } public BO_ManualReleaseBatchLinesQuery setQuantityAvailableIn(ArrayList value) { this.QuantityAvailableIn = value; return this; } public Date getInvoiceInitDate() { return InvoiceInitDate; } public BO_ManualReleaseBatchLinesQuery setInvoiceInitDate(Date value) { this.InvoiceInitDate = value; return this; } public Date getInvoiceInitDateGreaterThanOrEqualTo() { return InvoiceInitDateGreaterThanOrEqualTo; } public BO_ManualReleaseBatchLinesQuery setInvoiceInitDateGreaterThanOrEqualTo(Date value) { this.InvoiceInitDateGreaterThanOrEqualTo = value; return this; } public Date getInvoiceInitDateGreaterThan() { return InvoiceInitDateGreaterThan; } public BO_ManualReleaseBatchLinesQuery setInvoiceInitDateGreaterThan(Date value) { this.InvoiceInitDateGreaterThan = value; return this; } public Date getInvoiceInitDateLessThan() { return InvoiceInitDateLessThan; } public BO_ManualReleaseBatchLinesQuery setInvoiceInitDateLessThan(Date value) { this.InvoiceInitDateLessThan = value; return this; } public Date getInvoiceInitDateLessThanOrEqualTo() { return InvoiceInitDateLessThanOrEqualTo; } public BO_ManualReleaseBatchLinesQuery setInvoiceInitDateLessThanOrEqualTo(Date value) { this.InvoiceInitDateLessThanOrEqualTo = value; return this; } public Date getInvoiceInitDateNotEqualTo() { return InvoiceInitDateNotEqualTo; } public BO_ManualReleaseBatchLinesQuery setInvoiceInitDateNotEqualTo(Date value) { this.InvoiceInitDateNotEqualTo = value; return this; } public ArrayList getInvoiceInitDateBetween() { return InvoiceInitDateBetween; } public BO_ManualReleaseBatchLinesQuery setInvoiceInitDateBetween(ArrayList value) { this.InvoiceInitDateBetween = value; return this; } public ArrayList getInvoiceInitDateIn() { return InvoiceInitDateIn; } public BO_ManualReleaseBatchLinesQuery setInvoiceInitDateIn(ArrayList value) { this.InvoiceInitDateIn = value; return this; } public Date getExpectedDeliveryDate() { return ExpectedDeliveryDate; } public BO_ManualReleaseBatchLinesQuery setExpectedDeliveryDate(Date value) { this.ExpectedDeliveryDate = value; return this; } public Date getExpectedDeliveryDateGreaterThanOrEqualTo() { return ExpectedDeliveryDateGreaterThanOrEqualTo; } public BO_ManualReleaseBatchLinesQuery setExpectedDeliveryDateGreaterThanOrEqualTo(Date value) { this.ExpectedDeliveryDateGreaterThanOrEqualTo = value; return this; } public Date getExpectedDeliveryDateGreaterThan() { return ExpectedDeliveryDateGreaterThan; } public BO_ManualReleaseBatchLinesQuery setExpectedDeliveryDateGreaterThan(Date value) { this.ExpectedDeliveryDateGreaterThan = value; return this; } public Date getExpectedDeliveryDateLessThan() { return ExpectedDeliveryDateLessThan; } public BO_ManualReleaseBatchLinesQuery setExpectedDeliveryDateLessThan(Date value) { this.ExpectedDeliveryDateLessThan = value; return this; } public Date getExpectedDeliveryDateLessThanOrEqualTo() { return ExpectedDeliveryDateLessThanOrEqualTo; } public BO_ManualReleaseBatchLinesQuery setExpectedDeliveryDateLessThanOrEqualTo(Date value) { this.ExpectedDeliveryDateLessThanOrEqualTo = value; return this; } public Date getExpectedDeliveryDateNotEqualTo() { return ExpectedDeliveryDateNotEqualTo; } public BO_ManualReleaseBatchLinesQuery setExpectedDeliveryDateNotEqualTo(Date value) { this.ExpectedDeliveryDateNotEqualTo = value; return this; } public ArrayList getExpectedDeliveryDateBetween() { return ExpectedDeliveryDateBetween; } public BO_ManualReleaseBatchLinesQuery setExpectedDeliveryDateBetween(ArrayList value) { this.ExpectedDeliveryDateBetween = value; return this; } public ArrayList getExpectedDeliveryDateIn() { return ExpectedDeliveryDateIn; } public BO_ManualReleaseBatchLinesQuery setExpectedDeliveryDateIn(ArrayList value) { this.ExpectedDeliveryDateIn = value; return this; } public String getBackOrderPriority() { return BackOrderPriority; } public BO_ManualReleaseBatchLinesQuery setBackOrderPriority(String value) { this.BackOrderPriority = value; return this; } public String getBackOrderPriorityStartsWith() { return BackOrderPriorityStartsWith; } public BO_ManualReleaseBatchLinesQuery setBackOrderPriorityStartsWith(String value) { this.BackOrderPriorityStartsWith = value; return this; } public String getBackOrderPriorityEndsWith() { return BackOrderPriorityEndsWith; } public BO_ManualReleaseBatchLinesQuery setBackOrderPriorityEndsWith(String value) { this.BackOrderPriorityEndsWith = value; return this; } public String getBackOrderPriorityContains() { return BackOrderPriorityContains; } public BO_ManualReleaseBatchLinesQuery setBackOrderPriorityContains(String value) { this.BackOrderPriorityContains = value; return this; } public String getBackOrderPriorityLike() { return BackOrderPriorityLike; } public BO_ManualReleaseBatchLinesQuery setBackOrderPriorityLike(String value) { this.BackOrderPriorityLike = value; return this; } public ArrayList getBackOrderPriorityBetween() { return BackOrderPriorityBetween; } public BO_ManualReleaseBatchLinesQuery setBackOrderPriorityBetween(ArrayList value) { this.BackOrderPriorityBetween = value; return this; } public ArrayList getBackOrderPriorityIn() { return BackOrderPriorityIn; } public BO_ManualReleaseBatchLinesQuery setBackOrderPriorityIn(ArrayList value) { this.BackOrderPriorityIn = value; return this; } public Integer getBackOrderPriorityWeight() { return BackOrderPriorityWeight; } public BO_ManualReleaseBatchLinesQuery setBackOrderPriorityWeight(Integer value) { this.BackOrderPriorityWeight = value; return this; } public Integer getBackOrderPriorityWeightGreaterThanOrEqualTo() { return BackOrderPriorityWeightGreaterThanOrEqualTo; } public BO_ManualReleaseBatchLinesQuery setBackOrderPriorityWeightGreaterThanOrEqualTo(Integer value) { this.BackOrderPriorityWeightGreaterThanOrEqualTo = value; return this; } public Integer getBackOrderPriorityWeightGreaterThan() { return BackOrderPriorityWeightGreaterThan; } public BO_ManualReleaseBatchLinesQuery setBackOrderPriorityWeightGreaterThan(Integer value) { this.BackOrderPriorityWeightGreaterThan = value; return this; } public Integer getBackOrderPriorityWeightLessThan() { return BackOrderPriorityWeightLessThan; } public BO_ManualReleaseBatchLinesQuery setBackOrderPriorityWeightLessThan(Integer value) { this.BackOrderPriorityWeightLessThan = value; return this; } public Integer getBackOrderPriorityWeightLessThanOrEqualTo() { return BackOrderPriorityWeightLessThanOrEqualTo; } public BO_ManualReleaseBatchLinesQuery setBackOrderPriorityWeightLessThanOrEqualTo(Integer value) { this.BackOrderPriorityWeightLessThanOrEqualTo = value; return this; } public Integer getBackOrderPriorityWeightNotEqualTo() { return BackOrderPriorityWeightNotEqualTo; } public BO_ManualReleaseBatchLinesQuery setBackOrderPriorityWeightNotEqualTo(Integer value) { this.BackOrderPriorityWeightNotEqualTo = value; return this; } public ArrayList getBackOrderPriorityWeightBetween() { return BackOrderPriorityWeightBetween; } public BO_ManualReleaseBatchLinesQuery setBackOrderPriorityWeightBetween(ArrayList value) { this.BackOrderPriorityWeightBetween = value; return this; } public ArrayList getBackOrderPriorityWeightIn() { return BackOrderPriorityWeightIn; } public BO_ManualReleaseBatchLinesQuery setBackOrderPriorityWeightIn(ArrayList value) { this.BackOrderPriorityWeightIn = value; return this; } public String getDebtorID() { return DebtorID; } public BO_ManualReleaseBatchLinesQuery setDebtorID(String value) { this.DebtorID = value; return this; } public String getDebtorIDStartsWith() { return DebtorIDStartsWith; } public BO_ManualReleaseBatchLinesQuery setDebtorIDStartsWith(String value) { this.DebtorIDStartsWith = value; return this; } public String getDebtorIDEndsWith() { return DebtorIDEndsWith; } public BO_ManualReleaseBatchLinesQuery setDebtorIDEndsWith(String value) { this.DebtorIDEndsWith = value; return this; } public String getDebtorIDContains() { return DebtorIDContains; } public BO_ManualReleaseBatchLinesQuery setDebtorIDContains(String value) { this.DebtorIDContains = value; return this; } public String getDebtorIDLike() { return DebtorIDLike; } public BO_ManualReleaseBatchLinesQuery setDebtorIDLike(String value) { this.DebtorIDLike = value; return this; } public ArrayList getDebtorIDBetween() { return DebtorIDBetween; } public BO_ManualReleaseBatchLinesQuery setDebtorIDBetween(ArrayList value) { this.DebtorIDBetween = value; return this; } public ArrayList getDebtorIDIn() { return DebtorIDIn; } public BO_ManualReleaseBatchLinesQuery setDebtorIDIn(ArrayList value) { this.DebtorIDIn = value; return this; } public String getDebtorAccountNo() { return DebtorAccountNo; } public BO_ManualReleaseBatchLinesQuery setDebtorAccountNo(String value) { this.DebtorAccountNo = value; return this; } public String getDebtorAccountNoStartsWith() { return DebtorAccountNoStartsWith; } public BO_ManualReleaseBatchLinesQuery setDebtorAccountNoStartsWith(String value) { this.DebtorAccountNoStartsWith = value; return this; } public String getDebtorAccountNoEndsWith() { return DebtorAccountNoEndsWith; } public BO_ManualReleaseBatchLinesQuery setDebtorAccountNoEndsWith(String value) { this.DebtorAccountNoEndsWith = value; return this; } public String getDebtorAccountNoContains() { return DebtorAccountNoContains; } public BO_ManualReleaseBatchLinesQuery setDebtorAccountNoContains(String value) { this.DebtorAccountNoContains = value; return this; } public String getDebtorAccountNoLike() { return DebtorAccountNoLike; } public BO_ManualReleaseBatchLinesQuery setDebtorAccountNoLike(String value) { this.DebtorAccountNoLike = value; return this; } public ArrayList getDebtorAccountNoBetween() { return DebtorAccountNoBetween; } public BO_ManualReleaseBatchLinesQuery setDebtorAccountNoBetween(ArrayList value) { this.DebtorAccountNoBetween = value; return this; } public ArrayList getDebtorAccountNoIn() { return DebtorAccountNoIn; } public BO_ManualReleaseBatchLinesQuery setDebtorAccountNoIn(ArrayList value) { this.DebtorAccountNoIn = value; return this; } public String getDebtorName() { return DebtorName; } public BO_ManualReleaseBatchLinesQuery setDebtorName(String value) { this.DebtorName = value; return this; } public String getDebtorNameStartsWith() { return DebtorNameStartsWith; } public BO_ManualReleaseBatchLinesQuery setDebtorNameStartsWith(String value) { this.DebtorNameStartsWith = value; return this; } public String getDebtorNameEndsWith() { return DebtorNameEndsWith; } public BO_ManualReleaseBatchLinesQuery setDebtorNameEndsWith(String value) { this.DebtorNameEndsWith = value; return this; } public String getDebtorNameContains() { return DebtorNameContains; } public BO_ManualReleaseBatchLinesQuery setDebtorNameContains(String value) { this.DebtorNameContains = value; return this; } public String getDebtorNameLike() { return DebtorNameLike; } public BO_ManualReleaseBatchLinesQuery setDebtorNameLike(String value) { this.DebtorNameLike = value; return this; } public ArrayList getDebtorNameBetween() { return DebtorNameBetween; } public BO_ManualReleaseBatchLinesQuery setDebtorNameBetween(ArrayList value) { this.DebtorNameBetween = value; return this; } public ArrayList getDebtorNameIn() { return DebtorNameIn; } public BO_ManualReleaseBatchLinesQuery setDebtorNameIn(ArrayList value) { this.DebtorNameIn = value; return this; } public String getInvoiceID() { return InvoiceID; } public BO_ManualReleaseBatchLinesQuery setInvoiceID(String value) { this.InvoiceID = value; return this; } public String getInvoiceIDStartsWith() { return InvoiceIDStartsWith; } public BO_ManualReleaseBatchLinesQuery setInvoiceIDStartsWith(String value) { this.InvoiceIDStartsWith = value; return this; } public String getInvoiceIDEndsWith() { return InvoiceIDEndsWith; } public BO_ManualReleaseBatchLinesQuery setInvoiceIDEndsWith(String value) { this.InvoiceIDEndsWith = value; return this; } public String getInvoiceIDContains() { return InvoiceIDContains; } public BO_ManualReleaseBatchLinesQuery setInvoiceIDContains(String value) { this.InvoiceIDContains = value; return this; } public String getInvoiceIDLike() { return InvoiceIDLike; } public BO_ManualReleaseBatchLinesQuery setInvoiceIDLike(String value) { this.InvoiceIDLike = value; return this; } public ArrayList getInvoiceIDBetween() { return InvoiceIDBetween; } public BO_ManualReleaseBatchLinesQuery setInvoiceIDBetween(ArrayList value) { this.InvoiceIDBetween = value; return this; } public ArrayList getInvoiceIDIn() { return InvoiceIDIn; } public BO_ManualReleaseBatchLinesQuery setInvoiceIDIn(ArrayList value) { this.InvoiceIDIn = value; return this; } public String getInvoiceNo() { return InvoiceNo; } public BO_ManualReleaseBatchLinesQuery setInvoiceNo(String value) { this.InvoiceNo = value; return this; } public String getInvoiceNoStartsWith() { return InvoiceNoStartsWith; } public BO_ManualReleaseBatchLinesQuery setInvoiceNoStartsWith(String value) { this.InvoiceNoStartsWith = value; return this; } public String getInvoiceNoEndsWith() { return InvoiceNoEndsWith; } public BO_ManualReleaseBatchLinesQuery setInvoiceNoEndsWith(String value) { this.InvoiceNoEndsWith = value; return this; } public String getInvoiceNoContains() { return InvoiceNoContains; } public BO_ManualReleaseBatchLinesQuery setInvoiceNoContains(String value) { this.InvoiceNoContains = value; return this; } public String getInvoiceNoLike() { return InvoiceNoLike; } public BO_ManualReleaseBatchLinesQuery setInvoiceNoLike(String value) { this.InvoiceNoLike = value; return this; } public ArrayList getInvoiceNoBetween() { return InvoiceNoBetween; } public BO_ManualReleaseBatchLinesQuery setInvoiceNoBetween(ArrayList value) { this.InvoiceNoBetween = value; return this; } public ArrayList getInvoiceNoIn() { return InvoiceNoIn; } public BO_ManualReleaseBatchLinesQuery setInvoiceNoIn(ArrayList value) { this.InvoiceNoIn = value; return this; } public String getInvoiceHistoryID() { return InvoiceHistoryID; } public BO_ManualReleaseBatchLinesQuery setInvoiceHistoryID(String value) { this.InvoiceHistoryID = value; return this; } public String getInvoiceHistoryIDStartsWith() { return InvoiceHistoryIDStartsWith; } public BO_ManualReleaseBatchLinesQuery setInvoiceHistoryIDStartsWith(String value) { this.InvoiceHistoryIDStartsWith = value; return this; } public String getInvoiceHistoryIDEndsWith() { return InvoiceHistoryIDEndsWith; } public BO_ManualReleaseBatchLinesQuery setInvoiceHistoryIDEndsWith(String value) { this.InvoiceHistoryIDEndsWith = value; return this; } public String getInvoiceHistoryIDContains() { return InvoiceHistoryIDContains; } public BO_ManualReleaseBatchLinesQuery setInvoiceHistoryIDContains(String value) { this.InvoiceHistoryIDContains = value; return this; } public String getInvoiceHistoryIDLike() { return InvoiceHistoryIDLike; } public BO_ManualReleaseBatchLinesQuery setInvoiceHistoryIDLike(String value) { this.InvoiceHistoryIDLike = value; return this; } public ArrayList getInvoiceHistoryIDBetween() { return InvoiceHistoryIDBetween; } public BO_ManualReleaseBatchLinesQuery setInvoiceHistoryIDBetween(ArrayList value) { this.InvoiceHistoryIDBetween = value; return this; } public ArrayList getInvoiceHistoryIDIn() { return InvoiceHistoryIDIn; } public BO_ManualReleaseBatchLinesQuery setInvoiceHistoryIDIn(ArrayList value) { this.InvoiceHistoryIDIn = value; return this; } public Integer getHistoryNo() { return HistoryNo; } public BO_ManualReleaseBatchLinesQuery setHistoryNo(Integer value) { this.HistoryNo = value; return this; } public Integer getHistoryNoGreaterThanOrEqualTo() { return HistoryNoGreaterThanOrEqualTo; } public BO_ManualReleaseBatchLinesQuery setHistoryNoGreaterThanOrEqualTo(Integer value) { this.HistoryNoGreaterThanOrEqualTo = value; return this; } public Integer getHistoryNoGreaterThan() { return HistoryNoGreaterThan; } public BO_ManualReleaseBatchLinesQuery setHistoryNoGreaterThan(Integer value) { this.HistoryNoGreaterThan = value; return this; } public Integer getHistoryNoLessThan() { return HistoryNoLessThan; } public BO_ManualReleaseBatchLinesQuery setHistoryNoLessThan(Integer value) { this.HistoryNoLessThan = value; return this; } public Integer getHistoryNoLessThanOrEqualTo() { return HistoryNoLessThanOrEqualTo; } public BO_ManualReleaseBatchLinesQuery setHistoryNoLessThanOrEqualTo(Integer value) { this.HistoryNoLessThanOrEqualTo = value; return this; } public Integer getHistoryNoNotEqualTo() { return HistoryNoNotEqualTo; } public BO_ManualReleaseBatchLinesQuery setHistoryNoNotEqualTo(Integer value) { this.HistoryNoNotEqualTo = value; return this; } public ArrayList getHistoryNoBetween() { return HistoryNoBetween; } public BO_ManualReleaseBatchLinesQuery setHistoryNoBetween(ArrayList value) { this.HistoryNoBetween = value; return this; } public ArrayList getHistoryNoIn() { return HistoryNoIn; } public BO_ManualReleaseBatchLinesQuery setHistoryNoIn(ArrayList value) { this.HistoryNoIn = value; return this; } public String getInvoiceLineID() { return InvoiceLineID; } public BO_ManualReleaseBatchLinesQuery setInvoiceLineID(String value) { this.InvoiceLineID = value; return this; } public String getInvoiceLineIDStartsWith() { return InvoiceLineIDStartsWith; } public BO_ManualReleaseBatchLinesQuery setInvoiceLineIDStartsWith(String value) { this.InvoiceLineIDStartsWith = value; return this; } public String getInvoiceLineIDEndsWith() { return InvoiceLineIDEndsWith; } public BO_ManualReleaseBatchLinesQuery setInvoiceLineIDEndsWith(String value) { this.InvoiceLineIDEndsWith = value; return this; } public String getInvoiceLineIDContains() { return InvoiceLineIDContains; } public BO_ManualReleaseBatchLinesQuery setInvoiceLineIDContains(String value) { this.InvoiceLineIDContains = value; return this; } public String getInvoiceLineIDLike() { return InvoiceLineIDLike; } public BO_ManualReleaseBatchLinesQuery setInvoiceLineIDLike(String value) { this.InvoiceLineIDLike = value; return this; } public ArrayList getInvoiceLineIDBetween() { return InvoiceLineIDBetween; } public BO_ManualReleaseBatchLinesQuery setInvoiceLineIDBetween(ArrayList value) { this.InvoiceLineIDBetween = value; return this; } public ArrayList getInvoiceLineIDIn() { return InvoiceLineIDIn; } public BO_ManualReleaseBatchLinesQuery setInvoiceLineIDIn(ArrayList value) { this.InvoiceLineIDIn = value; return this; } public Boolean isFulfillBackOrderFlag() { return FulfillBackOrderFlag; } public BO_ManualReleaseBatchLinesQuery setFulfillBackOrderFlag(Boolean value) { this.FulfillBackOrderFlag = value; return this; } public Short getKitType() { return KitType; } public BO_ManualReleaseBatchLinesQuery setKitType(Short value) { this.KitType = value; return this; } public Short getKitTypeGreaterThanOrEqualTo() { return KitTypeGreaterThanOrEqualTo; } public BO_ManualReleaseBatchLinesQuery setKitTypeGreaterThanOrEqualTo(Short value) { this.KitTypeGreaterThanOrEqualTo = value; return this; } public Short getKitTypeGreaterThan() { return KitTypeGreaterThan; } public BO_ManualReleaseBatchLinesQuery setKitTypeGreaterThan(Short value) { this.KitTypeGreaterThan = value; return this; } public Short getKitTypeLessThan() { return KitTypeLessThan; } public BO_ManualReleaseBatchLinesQuery setKitTypeLessThan(Short value) { this.KitTypeLessThan = value; return this; } public Short getKitTypeLessThanOrEqualTo() { return KitTypeLessThanOrEqualTo; } public BO_ManualReleaseBatchLinesQuery setKitTypeLessThanOrEqualTo(Short value) { this.KitTypeLessThanOrEqualTo = value; return this; } public Short getKitTypeNotEqualTo() { return KitTypeNotEqualTo; } public BO_ManualReleaseBatchLinesQuery setKitTypeNotEqualTo(Short value) { this.KitTypeNotEqualTo = value; return this; } public ArrayList getKitTypeBetween() { return KitTypeBetween; } public BO_ManualReleaseBatchLinesQuery setKitTypeBetween(ArrayList value) { this.KitTypeBetween = value; return this; } public ArrayList getKitTypeIn() { return KitTypeIn; } public BO_ManualReleaseBatchLinesQuery setKitTypeIn(ArrayList value) { this.KitTypeIn = value; return this; } public Short getBillType() { return BillType; } public BO_ManualReleaseBatchLinesQuery setBillType(Short value) { this.BillType = value; return this; } public Short getBillTypeGreaterThanOrEqualTo() { return BillTypeGreaterThanOrEqualTo; } public BO_ManualReleaseBatchLinesQuery setBillTypeGreaterThanOrEqualTo(Short value) { this.BillTypeGreaterThanOrEqualTo = value; return this; } public Short getBillTypeGreaterThan() { return BillTypeGreaterThan; } public BO_ManualReleaseBatchLinesQuery setBillTypeGreaterThan(Short value) { this.BillTypeGreaterThan = value; return this; } public Short getBillTypeLessThan() { return BillTypeLessThan; } public BO_ManualReleaseBatchLinesQuery setBillTypeLessThan(Short value) { this.BillTypeLessThan = value; return this; } public Short getBillTypeLessThanOrEqualTo() { return BillTypeLessThanOrEqualTo; } public BO_ManualReleaseBatchLinesQuery setBillTypeLessThanOrEqualTo(Short value) { this.BillTypeLessThanOrEqualTo = value; return this; } public Short getBillTypeNotEqualTo() { return BillTypeNotEqualTo; } public BO_ManualReleaseBatchLinesQuery setBillTypeNotEqualTo(Short value) { this.BillTypeNotEqualTo = value; return this; } public ArrayList getBillTypeBetween() { return BillTypeBetween; } public BO_ManualReleaseBatchLinesQuery setBillTypeBetween(ArrayList value) { this.BillTypeBetween = value; return this; } public ArrayList getBillTypeIn() { return BillTypeIn; } public BO_ManualReleaseBatchLinesQuery setBillTypeIn(ArrayList value) { this.BillTypeIn = value; return this; } public Short getWholesaleInvoice() { return WholesaleInvoice; } public BO_ManualReleaseBatchLinesQuery setWholesaleInvoice(Short value) { this.WholesaleInvoice = value; return this; } public Short getWholesaleInvoiceGreaterThanOrEqualTo() { return WholesaleInvoiceGreaterThanOrEqualTo; } public BO_ManualReleaseBatchLinesQuery setWholesaleInvoiceGreaterThanOrEqualTo(Short value) { this.WholesaleInvoiceGreaterThanOrEqualTo = value; return this; } public Short getWholesaleInvoiceGreaterThan() { return WholesaleInvoiceGreaterThan; } public BO_ManualReleaseBatchLinesQuery setWholesaleInvoiceGreaterThan(Short value) { this.WholesaleInvoiceGreaterThan = value; return this; } public Short getWholesaleInvoiceLessThan() { return WholesaleInvoiceLessThan; } public BO_ManualReleaseBatchLinesQuery setWholesaleInvoiceLessThan(Short value) { this.WholesaleInvoiceLessThan = value; return this; } public Short getWholesaleInvoiceLessThanOrEqualTo() { return WholesaleInvoiceLessThanOrEqualTo; } public BO_ManualReleaseBatchLinesQuery setWholesaleInvoiceLessThanOrEqualTo(Short value) { this.WholesaleInvoiceLessThanOrEqualTo = value; return this; } public Short getWholesaleInvoiceNotEqualTo() { return WholesaleInvoiceNotEqualTo; } public BO_ManualReleaseBatchLinesQuery setWholesaleInvoiceNotEqualTo(Short value) { this.WholesaleInvoiceNotEqualTo = value; return this; } public ArrayList getWholesaleInvoiceBetween() { return WholesaleInvoiceBetween; } public BO_ManualReleaseBatchLinesQuery setWholesaleInvoiceBetween(ArrayList value) { this.WholesaleInvoiceBetween = value; return this; } public ArrayList getWholesaleInvoiceIn() { return WholesaleInvoiceIn; } public BO_ManualReleaseBatchLinesQuery setWholesaleInvoiceIn(ArrayList value) { this.WholesaleInvoiceIn = value; return this; } public Short getOrderType() { return OrderType; } public BO_ManualReleaseBatchLinesQuery setOrderType(Short value) { this.OrderType = value; return this; } public Short getOrderTypeGreaterThanOrEqualTo() { return OrderTypeGreaterThanOrEqualTo; } public BO_ManualReleaseBatchLinesQuery setOrderTypeGreaterThanOrEqualTo(Short value) { this.OrderTypeGreaterThanOrEqualTo = value; return this; } public Short getOrderTypeGreaterThan() { return OrderTypeGreaterThan; } public BO_ManualReleaseBatchLinesQuery setOrderTypeGreaterThan(Short value) { this.OrderTypeGreaterThan = value; return this; } public Short getOrderTypeLessThan() { return OrderTypeLessThan; } public BO_ManualReleaseBatchLinesQuery setOrderTypeLessThan(Short value) { this.OrderTypeLessThan = value; return this; } public Short getOrderTypeLessThanOrEqualTo() { return OrderTypeLessThanOrEqualTo; } public BO_ManualReleaseBatchLinesQuery setOrderTypeLessThanOrEqualTo(Short value) { this.OrderTypeLessThanOrEqualTo = value; return this; } public Short getOrderTypeNotEqualTo() { return OrderTypeNotEqualTo; } public BO_ManualReleaseBatchLinesQuery setOrderTypeNotEqualTo(Short value) { this.OrderTypeNotEqualTo = value; return this; } public ArrayList getOrderTypeBetween() { return OrderTypeBetween; } public BO_ManualReleaseBatchLinesQuery setOrderTypeBetween(ArrayList value) { this.OrderTypeBetween = value; return this; } public ArrayList getOrderTypeIn() { return OrderTypeIn; } public BO_ManualReleaseBatchLinesQuery setOrderTypeIn(ArrayList value) { this.OrderTypeIn = value; return this; } public String getErrorMessage() { return ErrorMessage; } public BO_ManualReleaseBatchLinesQuery setErrorMessage(String value) { this.ErrorMessage = value; return this; } public String getErrorMessageStartsWith() { return ErrorMessageStartsWith; } public BO_ManualReleaseBatchLinesQuery setErrorMessageStartsWith(String value) { this.ErrorMessageStartsWith = value; return this; } public String getErrorMessageEndsWith() { return ErrorMessageEndsWith; } public BO_ManualReleaseBatchLinesQuery setErrorMessageEndsWith(String value) { this.ErrorMessageEndsWith = value; return this; } public String getErrorMessageContains() { return ErrorMessageContains; } public BO_ManualReleaseBatchLinesQuery setErrorMessageContains(String value) { this.ErrorMessageContains = value; return this; } public String getErrorMessageLike() { return ErrorMessageLike; } public BO_ManualReleaseBatchLinesQuery setErrorMessageLike(String value) { this.ErrorMessageLike = value; return this; } public ArrayList getErrorMessageBetween() { return ErrorMessageBetween; } public BO_ManualReleaseBatchLinesQuery setErrorMessageBetween(ArrayList value) { this.ErrorMessageBetween = value; return this; } public ArrayList getErrorMessageIn() { return ErrorMessageIn; } public BO_ManualReleaseBatchLinesQuery setErrorMessageIn(ArrayList value) { this.ErrorMessageIn = value; return this; } public BigDecimal getQuantityLeft() { return QuantityLeft; } public BO_ManualReleaseBatchLinesQuery setQuantityLeft(BigDecimal value) { this.QuantityLeft = value; return this; } public BigDecimal getQuantityLeftGreaterThanOrEqualTo() { return QuantityLeftGreaterThanOrEqualTo; } public BO_ManualReleaseBatchLinesQuery setQuantityLeftGreaterThanOrEqualTo(BigDecimal value) { this.QuantityLeftGreaterThanOrEqualTo = value; return this; } public BigDecimal getQuantityLeftGreaterThan() { return QuantityLeftGreaterThan; } public BO_ManualReleaseBatchLinesQuery setQuantityLeftGreaterThan(BigDecimal value) { this.QuantityLeftGreaterThan = value; return this; } public BigDecimal getQuantityLeftLessThan() { return QuantityLeftLessThan; } public BO_ManualReleaseBatchLinesQuery setQuantityLeftLessThan(BigDecimal value) { this.QuantityLeftLessThan = value; return this; } public BigDecimal getQuantityLeftLessThanOrEqualTo() { return QuantityLeftLessThanOrEqualTo; } public BO_ManualReleaseBatchLinesQuery setQuantityLeftLessThanOrEqualTo(BigDecimal value) { this.QuantityLeftLessThanOrEqualTo = value; return this; } public BigDecimal getQuantityLeftNotEqualTo() { return QuantityLeftNotEqualTo; } public BO_ManualReleaseBatchLinesQuery setQuantityLeftNotEqualTo(BigDecimal value) { this.QuantityLeftNotEqualTo = value; return this; } public ArrayList getQuantityLeftBetween() { return QuantityLeftBetween; } public BO_ManualReleaseBatchLinesQuery setQuantityLeftBetween(ArrayList value) { this.QuantityLeftBetween = value; return this; } public ArrayList getQuantityLeftIn() { return QuantityLeftIn; } public BO_ManualReleaseBatchLinesQuery setQuantityLeftIn(ArrayList value) { this.QuantityLeftIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class BO_ManualReleaseBatchReportsQuery extends QueryDb implements IReturn> { public String RecID = null; public String RecIDStartsWith = null; public String RecIDEndsWith = null; public String RecIDContains = null; public String RecIDLike = null; public ArrayList RecIDBetween = null; public ArrayList RecIDIn = null; public String BatchID = null; public String BatchIDStartsWith = null; public String BatchIDEndsWith = null; public String BatchIDContains = null; public String BatchIDLike = null; public ArrayList BatchIDBetween = null; public ArrayList BatchIDIn = null; public Date LastSavedDateTime = null; public Date LastSavedDateTimeGreaterThanOrEqualTo = null; public Date LastSavedDateTimeGreaterThan = null; public Date LastSavedDateTimeLessThan = null; public Date LastSavedDateTimeLessThanOrEqualTo = null; public Date LastSavedDateTimeNotEqualTo = null; public ArrayList LastSavedDateTimeBetween = null; public ArrayList LastSavedDateTimeIn = null; public Integer DisplayOrder = null; public Integer DisplayOrderGreaterThanOrEqualTo = null; public Integer DisplayOrderGreaterThan = null; public Integer DisplayOrderLessThan = null; public Integer DisplayOrderLessThanOrEqualTo = null; public Integer DisplayOrderNotEqualTo = null; public ArrayList DisplayOrderBetween = null; public ArrayList DisplayOrderIn = null; public Short BillType = null; public Short BillTypeGreaterThanOrEqualTo = null; public Short BillTypeGreaterThan = null; public Short BillTypeLessThan = null; public Short BillTypeLessThanOrEqualTo = null; public Short BillTypeNotEqualTo = null; public ArrayList BillTypeBetween = null; public ArrayList BillTypeIn = null; public Short TradingCategory = null; public Short TradingCategoryGreaterThanOrEqualTo = null; public Short TradingCategoryGreaterThan = null; public Short TradingCategoryLessThan = null; public Short TradingCategoryLessThanOrEqualTo = null; public Short TradingCategoryNotEqualTo = null; public ArrayList TradingCategoryBetween = null; public ArrayList TradingCategoryIn = null; public Short BackOrderStatus = null; public Short BackOrderStatusGreaterThanOrEqualTo = null; public Short BackOrderStatusGreaterThan = null; public Short BackOrderStatusLessThan = null; public Short BackOrderStatusLessThanOrEqualTo = null; public Short BackOrderStatusNotEqualTo = null; public ArrayList BackOrderStatusBetween = null; public ArrayList BackOrderStatusIn = null; public Short ReportType = null; public Short ReportTypeGreaterThanOrEqualTo = null; public Short ReportTypeGreaterThan = null; public Short ReportTypeLessThan = null; public Short ReportTypeLessThanOrEqualTo = null; public Short ReportTypeNotEqualTo = null; public ArrayList ReportTypeBetween = null; public ArrayList ReportTypeIn = null; public String ReportDescription = null; public String ReportDescriptionStartsWith = null; public String ReportDescriptionEndsWith = null; public String ReportDescriptionContains = null; public String ReportDescriptionLike = null; public ArrayList ReportDescriptionBetween = null; public ArrayList ReportDescriptionIn = null; public Integer NumberOfCopies = null; public Integer NumberOfCopiesGreaterThanOrEqualTo = null; public Integer NumberOfCopiesGreaterThan = null; public Integer NumberOfCopiesLessThan = null; public Integer NumberOfCopiesLessThanOrEqualTo = null; public Integer NumberOfCopiesNotEqualTo = null; public ArrayList NumberOfCopiesBetween = null; public ArrayList NumberOfCopiesIn = null; public Boolean PrintFlag = null; public String SY_Report_RecID = null; public String SY_Report_RecIDStartsWith = null; public String SY_Report_RecIDEndsWith = null; public String SY_Report_RecIDContains = null; public String SY_Report_RecIDLike = null; public ArrayList SY_Report_RecIDBetween = null; public ArrayList SY_Report_RecIDIn = null; public String SY_PrintGroupLogicalPrinter_RecID = null; public String SY_PrintGroupLogicalPrinter_RecIDStartsWith = null; public String SY_PrintGroupLogicalPrinter_RecIDEndsWith = null; public String SY_PrintGroupLogicalPrinter_RecIDContains = null; public String SY_PrintGroupLogicalPrinter_RecIDLike = null; public ArrayList SY_PrintGroupLogicalPrinter_RecIDBetween = null; public ArrayList SY_PrintGroupLogicalPrinter_RecIDIn = null; public String getRecID() { return RecID; } public BO_ManualReleaseBatchReportsQuery setRecID(String value) { this.RecID = value; return this; } public String getRecIDStartsWith() { return RecIDStartsWith; } public BO_ManualReleaseBatchReportsQuery setRecIDStartsWith(String value) { this.RecIDStartsWith = value; return this; } public String getRecIDEndsWith() { return RecIDEndsWith; } public BO_ManualReleaseBatchReportsQuery setRecIDEndsWith(String value) { this.RecIDEndsWith = value; return this; } public String getRecIDContains() { return RecIDContains; } public BO_ManualReleaseBatchReportsQuery setRecIDContains(String value) { this.RecIDContains = value; return this; } public String getRecIDLike() { return RecIDLike; } public BO_ManualReleaseBatchReportsQuery setRecIDLike(String value) { this.RecIDLike = value; return this; } public ArrayList getRecIDBetween() { return RecIDBetween; } public BO_ManualReleaseBatchReportsQuery setRecIDBetween(ArrayList value) { this.RecIDBetween = value; return this; } public ArrayList getRecIDIn() { return RecIDIn; } public BO_ManualReleaseBatchReportsQuery setRecIDIn(ArrayList value) { this.RecIDIn = value; return this; } public String getBatchID() { return BatchID; } public BO_ManualReleaseBatchReportsQuery setBatchID(String value) { this.BatchID = value; return this; } public String getBatchIDStartsWith() { return BatchIDStartsWith; } public BO_ManualReleaseBatchReportsQuery setBatchIDStartsWith(String value) { this.BatchIDStartsWith = value; return this; } public String getBatchIDEndsWith() { return BatchIDEndsWith; } public BO_ManualReleaseBatchReportsQuery setBatchIDEndsWith(String value) { this.BatchIDEndsWith = value; return this; } public String getBatchIDContains() { return BatchIDContains; } public BO_ManualReleaseBatchReportsQuery setBatchIDContains(String value) { this.BatchIDContains = value; return this; } public String getBatchIDLike() { return BatchIDLike; } public BO_ManualReleaseBatchReportsQuery setBatchIDLike(String value) { this.BatchIDLike = value; return this; } public ArrayList getBatchIDBetween() { return BatchIDBetween; } public BO_ManualReleaseBatchReportsQuery setBatchIDBetween(ArrayList value) { this.BatchIDBetween = value; return this; } public ArrayList getBatchIDIn() { return BatchIDIn; } public BO_ManualReleaseBatchReportsQuery setBatchIDIn(ArrayList value) { this.BatchIDIn = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public BO_ManualReleaseBatchReportsQuery setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getLastSavedDateTimeGreaterThanOrEqualTo() { return LastSavedDateTimeGreaterThanOrEqualTo; } public BO_ManualReleaseBatchReportsQuery setLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.LastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeGreaterThan() { return LastSavedDateTimeGreaterThan; } public BO_ManualReleaseBatchReportsQuery setLastSavedDateTimeGreaterThan(Date value) { this.LastSavedDateTimeGreaterThan = value; return this; } public Date getLastSavedDateTimeLessThan() { return LastSavedDateTimeLessThan; } public BO_ManualReleaseBatchReportsQuery setLastSavedDateTimeLessThan(Date value) { this.LastSavedDateTimeLessThan = value; return this; } public Date getLastSavedDateTimeLessThanOrEqualTo() { return LastSavedDateTimeLessThanOrEqualTo; } public BO_ManualReleaseBatchReportsQuery setLastSavedDateTimeLessThanOrEqualTo(Date value) { this.LastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeNotEqualTo() { return LastSavedDateTimeNotEqualTo; } public BO_ManualReleaseBatchReportsQuery setLastSavedDateTimeNotEqualTo(Date value) { this.LastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getLastSavedDateTimeBetween() { return LastSavedDateTimeBetween; } public BO_ManualReleaseBatchReportsQuery setLastSavedDateTimeBetween(ArrayList value) { this.LastSavedDateTimeBetween = value; return this; } public ArrayList getLastSavedDateTimeIn() { return LastSavedDateTimeIn; } public BO_ManualReleaseBatchReportsQuery setLastSavedDateTimeIn(ArrayList value) { this.LastSavedDateTimeIn = value; return this; } public Integer getDisplayOrder() { return DisplayOrder; } public BO_ManualReleaseBatchReportsQuery setDisplayOrder(Integer value) { this.DisplayOrder = value; return this; } public Integer getDisplayOrderGreaterThanOrEqualTo() { return DisplayOrderGreaterThanOrEqualTo; } public BO_ManualReleaseBatchReportsQuery setDisplayOrderGreaterThanOrEqualTo(Integer value) { this.DisplayOrderGreaterThanOrEqualTo = value; return this; } public Integer getDisplayOrderGreaterThan() { return DisplayOrderGreaterThan; } public BO_ManualReleaseBatchReportsQuery setDisplayOrderGreaterThan(Integer value) { this.DisplayOrderGreaterThan = value; return this; } public Integer getDisplayOrderLessThan() { return DisplayOrderLessThan; } public BO_ManualReleaseBatchReportsQuery setDisplayOrderLessThan(Integer value) { this.DisplayOrderLessThan = value; return this; } public Integer getDisplayOrderLessThanOrEqualTo() { return DisplayOrderLessThanOrEqualTo; } public BO_ManualReleaseBatchReportsQuery setDisplayOrderLessThanOrEqualTo(Integer value) { this.DisplayOrderLessThanOrEqualTo = value; return this; } public Integer getDisplayOrderNotEqualTo() { return DisplayOrderNotEqualTo; } public BO_ManualReleaseBatchReportsQuery setDisplayOrderNotEqualTo(Integer value) { this.DisplayOrderNotEqualTo = value; return this; } public ArrayList getDisplayOrderBetween() { return DisplayOrderBetween; } public BO_ManualReleaseBatchReportsQuery setDisplayOrderBetween(ArrayList value) { this.DisplayOrderBetween = value; return this; } public ArrayList getDisplayOrderIn() { return DisplayOrderIn; } public BO_ManualReleaseBatchReportsQuery setDisplayOrderIn(ArrayList value) { this.DisplayOrderIn = value; return this; } public Short getBillType() { return BillType; } public BO_ManualReleaseBatchReportsQuery setBillType(Short value) { this.BillType = value; return this; } public Short getBillTypeGreaterThanOrEqualTo() { return BillTypeGreaterThanOrEqualTo; } public BO_ManualReleaseBatchReportsQuery setBillTypeGreaterThanOrEqualTo(Short value) { this.BillTypeGreaterThanOrEqualTo = value; return this; } public Short getBillTypeGreaterThan() { return BillTypeGreaterThan; } public BO_ManualReleaseBatchReportsQuery setBillTypeGreaterThan(Short value) { this.BillTypeGreaterThan = value; return this; } public Short getBillTypeLessThan() { return BillTypeLessThan; } public BO_ManualReleaseBatchReportsQuery setBillTypeLessThan(Short value) { this.BillTypeLessThan = value; return this; } public Short getBillTypeLessThanOrEqualTo() { return BillTypeLessThanOrEqualTo; } public BO_ManualReleaseBatchReportsQuery setBillTypeLessThanOrEqualTo(Short value) { this.BillTypeLessThanOrEqualTo = value; return this; } public Short getBillTypeNotEqualTo() { return BillTypeNotEqualTo; } public BO_ManualReleaseBatchReportsQuery setBillTypeNotEqualTo(Short value) { this.BillTypeNotEqualTo = value; return this; } public ArrayList getBillTypeBetween() { return BillTypeBetween; } public BO_ManualReleaseBatchReportsQuery setBillTypeBetween(ArrayList value) { this.BillTypeBetween = value; return this; } public ArrayList getBillTypeIn() { return BillTypeIn; } public BO_ManualReleaseBatchReportsQuery setBillTypeIn(ArrayList value) { this.BillTypeIn = value; return this; } public Short getTradingCategory() { return TradingCategory; } public BO_ManualReleaseBatchReportsQuery setTradingCategory(Short value) { this.TradingCategory = value; return this; } public Short getTradingCategoryGreaterThanOrEqualTo() { return TradingCategoryGreaterThanOrEqualTo; } public BO_ManualReleaseBatchReportsQuery setTradingCategoryGreaterThanOrEqualTo(Short value) { this.TradingCategoryGreaterThanOrEqualTo = value; return this; } public Short getTradingCategoryGreaterThan() { return TradingCategoryGreaterThan; } public BO_ManualReleaseBatchReportsQuery setTradingCategoryGreaterThan(Short value) { this.TradingCategoryGreaterThan = value; return this; } public Short getTradingCategoryLessThan() { return TradingCategoryLessThan; } public BO_ManualReleaseBatchReportsQuery setTradingCategoryLessThan(Short value) { this.TradingCategoryLessThan = value; return this; } public Short getTradingCategoryLessThanOrEqualTo() { return TradingCategoryLessThanOrEqualTo; } public BO_ManualReleaseBatchReportsQuery setTradingCategoryLessThanOrEqualTo(Short value) { this.TradingCategoryLessThanOrEqualTo = value; return this; } public Short getTradingCategoryNotEqualTo() { return TradingCategoryNotEqualTo; } public BO_ManualReleaseBatchReportsQuery setTradingCategoryNotEqualTo(Short value) { this.TradingCategoryNotEqualTo = value; return this; } public ArrayList getTradingCategoryBetween() { return TradingCategoryBetween; } public BO_ManualReleaseBatchReportsQuery setTradingCategoryBetween(ArrayList value) { this.TradingCategoryBetween = value; return this; } public ArrayList getTradingCategoryIn() { return TradingCategoryIn; } public BO_ManualReleaseBatchReportsQuery setTradingCategoryIn(ArrayList value) { this.TradingCategoryIn = value; return this; } public Short getBackOrderStatus() { return BackOrderStatus; } public BO_ManualReleaseBatchReportsQuery setBackOrderStatus(Short value) { this.BackOrderStatus = value; return this; } public Short getBackOrderStatusGreaterThanOrEqualTo() { return BackOrderStatusGreaterThanOrEqualTo; } public BO_ManualReleaseBatchReportsQuery setBackOrderStatusGreaterThanOrEqualTo(Short value) { this.BackOrderStatusGreaterThanOrEqualTo = value; return this; } public Short getBackOrderStatusGreaterThan() { return BackOrderStatusGreaterThan; } public BO_ManualReleaseBatchReportsQuery setBackOrderStatusGreaterThan(Short value) { this.BackOrderStatusGreaterThan = value; return this; } public Short getBackOrderStatusLessThan() { return BackOrderStatusLessThan; } public BO_ManualReleaseBatchReportsQuery setBackOrderStatusLessThan(Short value) { this.BackOrderStatusLessThan = value; return this; } public Short getBackOrderStatusLessThanOrEqualTo() { return BackOrderStatusLessThanOrEqualTo; } public BO_ManualReleaseBatchReportsQuery setBackOrderStatusLessThanOrEqualTo(Short value) { this.BackOrderStatusLessThanOrEqualTo = value; return this; } public Short getBackOrderStatusNotEqualTo() { return BackOrderStatusNotEqualTo; } public BO_ManualReleaseBatchReportsQuery setBackOrderStatusNotEqualTo(Short value) { this.BackOrderStatusNotEqualTo = value; return this; } public ArrayList getBackOrderStatusBetween() { return BackOrderStatusBetween; } public BO_ManualReleaseBatchReportsQuery setBackOrderStatusBetween(ArrayList value) { this.BackOrderStatusBetween = value; return this; } public ArrayList getBackOrderStatusIn() { return BackOrderStatusIn; } public BO_ManualReleaseBatchReportsQuery setBackOrderStatusIn(ArrayList value) { this.BackOrderStatusIn = value; return this; } public Short getReportType() { return ReportType; } public BO_ManualReleaseBatchReportsQuery setReportType(Short value) { this.ReportType = value; return this; } public Short getReportTypeGreaterThanOrEqualTo() { return ReportTypeGreaterThanOrEqualTo; } public BO_ManualReleaseBatchReportsQuery setReportTypeGreaterThanOrEqualTo(Short value) { this.ReportTypeGreaterThanOrEqualTo = value; return this; } public Short getReportTypeGreaterThan() { return ReportTypeGreaterThan; } public BO_ManualReleaseBatchReportsQuery setReportTypeGreaterThan(Short value) { this.ReportTypeGreaterThan = value; return this; } public Short getReportTypeLessThan() { return ReportTypeLessThan; } public BO_ManualReleaseBatchReportsQuery setReportTypeLessThan(Short value) { this.ReportTypeLessThan = value; return this; } public Short getReportTypeLessThanOrEqualTo() { return ReportTypeLessThanOrEqualTo; } public BO_ManualReleaseBatchReportsQuery setReportTypeLessThanOrEqualTo(Short value) { this.ReportTypeLessThanOrEqualTo = value; return this; } public Short getReportTypeNotEqualTo() { return ReportTypeNotEqualTo; } public BO_ManualReleaseBatchReportsQuery setReportTypeNotEqualTo(Short value) { this.ReportTypeNotEqualTo = value; return this; } public ArrayList getReportTypeBetween() { return ReportTypeBetween; } public BO_ManualReleaseBatchReportsQuery setReportTypeBetween(ArrayList value) { this.ReportTypeBetween = value; return this; } public ArrayList getReportTypeIn() { return ReportTypeIn; } public BO_ManualReleaseBatchReportsQuery setReportTypeIn(ArrayList value) { this.ReportTypeIn = value; return this; } public String getReportDescription() { return ReportDescription; } public BO_ManualReleaseBatchReportsQuery setReportDescription(String value) { this.ReportDescription = value; return this; } public String getReportDescriptionStartsWith() { return ReportDescriptionStartsWith; } public BO_ManualReleaseBatchReportsQuery setReportDescriptionStartsWith(String value) { this.ReportDescriptionStartsWith = value; return this; } public String getReportDescriptionEndsWith() { return ReportDescriptionEndsWith; } public BO_ManualReleaseBatchReportsQuery setReportDescriptionEndsWith(String value) { this.ReportDescriptionEndsWith = value; return this; } public String getReportDescriptionContains() { return ReportDescriptionContains; } public BO_ManualReleaseBatchReportsQuery setReportDescriptionContains(String value) { this.ReportDescriptionContains = value; return this; } public String getReportDescriptionLike() { return ReportDescriptionLike; } public BO_ManualReleaseBatchReportsQuery setReportDescriptionLike(String value) { this.ReportDescriptionLike = value; return this; } public ArrayList getReportDescriptionBetween() { return ReportDescriptionBetween; } public BO_ManualReleaseBatchReportsQuery setReportDescriptionBetween(ArrayList value) { this.ReportDescriptionBetween = value; return this; } public ArrayList getReportDescriptionIn() { return ReportDescriptionIn; } public BO_ManualReleaseBatchReportsQuery setReportDescriptionIn(ArrayList value) { this.ReportDescriptionIn = value; return this; } public Integer getNumberOfCopies() { return NumberOfCopies; } public BO_ManualReleaseBatchReportsQuery setNumberOfCopies(Integer value) { this.NumberOfCopies = value; return this; } public Integer getNumberOfCopiesGreaterThanOrEqualTo() { return NumberOfCopiesGreaterThanOrEqualTo; } public BO_ManualReleaseBatchReportsQuery setNumberOfCopiesGreaterThanOrEqualTo(Integer value) { this.NumberOfCopiesGreaterThanOrEqualTo = value; return this; } public Integer getNumberOfCopiesGreaterThan() { return NumberOfCopiesGreaterThan; } public BO_ManualReleaseBatchReportsQuery setNumberOfCopiesGreaterThan(Integer value) { this.NumberOfCopiesGreaterThan = value; return this; } public Integer getNumberOfCopiesLessThan() { return NumberOfCopiesLessThan; } public BO_ManualReleaseBatchReportsQuery setNumberOfCopiesLessThan(Integer value) { this.NumberOfCopiesLessThan = value; return this; } public Integer getNumberOfCopiesLessThanOrEqualTo() { return NumberOfCopiesLessThanOrEqualTo; } public BO_ManualReleaseBatchReportsQuery setNumberOfCopiesLessThanOrEqualTo(Integer value) { this.NumberOfCopiesLessThanOrEqualTo = value; return this; } public Integer getNumberOfCopiesNotEqualTo() { return NumberOfCopiesNotEqualTo; } public BO_ManualReleaseBatchReportsQuery setNumberOfCopiesNotEqualTo(Integer value) { this.NumberOfCopiesNotEqualTo = value; return this; } public ArrayList getNumberOfCopiesBetween() { return NumberOfCopiesBetween; } public BO_ManualReleaseBatchReportsQuery setNumberOfCopiesBetween(ArrayList value) { this.NumberOfCopiesBetween = value; return this; } public ArrayList getNumberOfCopiesIn() { return NumberOfCopiesIn; } public BO_ManualReleaseBatchReportsQuery setNumberOfCopiesIn(ArrayList value) { this.NumberOfCopiesIn = value; return this; } public Boolean isPrintFlag() { return PrintFlag; } public BO_ManualReleaseBatchReportsQuery setPrintFlag(Boolean value) { this.PrintFlag = value; return this; } public String getSyReportRecID() { return SY_Report_RecID; } public BO_ManualReleaseBatchReportsQuery setSyReportRecID(String value) { this.SY_Report_RecID = value; return this; } public String getSyReportRecIDStartsWith() { return SY_Report_RecIDStartsWith; } public BO_ManualReleaseBatchReportsQuery setSyReportRecIDStartsWith(String value) { this.SY_Report_RecIDStartsWith = value; return this; } public String getSyReportRecIDEndsWith() { return SY_Report_RecIDEndsWith; } public BO_ManualReleaseBatchReportsQuery setSyReportRecIDEndsWith(String value) { this.SY_Report_RecIDEndsWith = value; return this; } public String getSyReportRecIDContains() { return SY_Report_RecIDContains; } public BO_ManualReleaseBatchReportsQuery setSyReportRecIDContains(String value) { this.SY_Report_RecIDContains = value; return this; } public String getSyReportRecIDLike() { return SY_Report_RecIDLike; } public BO_ManualReleaseBatchReportsQuery setSyReportRecIDLike(String value) { this.SY_Report_RecIDLike = value; return this; } public ArrayList getSyReportRecIDBetween() { return SY_Report_RecIDBetween; } public BO_ManualReleaseBatchReportsQuery setSyReportRecIDBetween(ArrayList value) { this.SY_Report_RecIDBetween = value; return this; } public ArrayList getSyReportRecIDIn() { return SY_Report_RecIDIn; } public BO_ManualReleaseBatchReportsQuery setSyReportRecIDIn(ArrayList value) { this.SY_Report_RecIDIn = value; return this; } public String getSyPrintGroupLogicalPrinterRecID() { return SY_PrintGroupLogicalPrinter_RecID; } public BO_ManualReleaseBatchReportsQuery setSyPrintGroupLogicalPrinterRecID(String value) { this.SY_PrintGroupLogicalPrinter_RecID = value; return this; } public String getSyPrintGroupLogicalPrinterRecIDStartsWith() { return SY_PrintGroupLogicalPrinter_RecIDStartsWith; } public BO_ManualReleaseBatchReportsQuery setSyPrintGroupLogicalPrinterRecIDStartsWith(String value) { this.SY_PrintGroupLogicalPrinter_RecIDStartsWith = value; return this; } public String getSyPrintGroupLogicalPrinterRecIDEndsWith() { return SY_PrintGroupLogicalPrinter_RecIDEndsWith; } public BO_ManualReleaseBatchReportsQuery setSyPrintGroupLogicalPrinterRecIDEndsWith(String value) { this.SY_PrintGroupLogicalPrinter_RecIDEndsWith = value; return this; } public String getSyPrintGroupLogicalPrinterRecIDContains() { return SY_PrintGroupLogicalPrinter_RecIDContains; } public BO_ManualReleaseBatchReportsQuery setSyPrintGroupLogicalPrinterRecIDContains(String value) { this.SY_PrintGroupLogicalPrinter_RecIDContains = value; return this; } public String getSyPrintGroupLogicalPrinterRecIDLike() { return SY_PrintGroupLogicalPrinter_RecIDLike; } public BO_ManualReleaseBatchReportsQuery setSyPrintGroupLogicalPrinterRecIDLike(String value) { this.SY_PrintGroupLogicalPrinter_RecIDLike = value; return this; } public ArrayList getSyPrintGroupLogicalPrinterRecIDBetween() { return SY_PrintGroupLogicalPrinter_RecIDBetween; } public BO_ManualReleaseBatchReportsQuery setSyPrintGroupLogicalPrinterRecIDBetween(ArrayList value) { this.SY_PrintGroupLogicalPrinter_RecIDBetween = value; return this; } public ArrayList getSyPrintGroupLogicalPrinterRecIDIn() { return SY_PrintGroupLogicalPrinter_RecIDIn; } public BO_ManualReleaseBatchReportsQuery setSyPrintGroupLogicalPrinterRecIDIn(ArrayList value) { this.SY_PrintGroupLogicalPrinter_RecIDIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class BO_PrioritiesQuery extends QueryDb implements IReturn> { public String RecID = null; public String RecIDStartsWith = null; public String RecIDEndsWith = null; public String RecIDContains = null; public String RecIDLike = null; public ArrayList RecIDBetween = null; public ArrayList RecIDIn = null; public String PriorityDescription = null; public String PriorityDescriptionStartsWith = null; public String PriorityDescriptionEndsWith = null; public String PriorityDescriptionContains = null; public String PriorityDescriptionLike = null; public ArrayList PriorityDescriptionBetween = null; public ArrayList PriorityDescriptionIn = null; public Integer PriorityWeight = null; public Integer PriorityWeightGreaterThanOrEqualTo = null; public Integer PriorityWeightGreaterThan = null; public Integer PriorityWeightLessThan = null; public Integer PriorityWeightLessThanOrEqualTo = null; public Integer PriorityWeightNotEqualTo = null; public ArrayList PriorityWeightBetween = null; public ArrayList PriorityWeightIn = null; public Boolean DefaultPriority = null; public Date LastSavedDateTime = null; public Date LastSavedDateTimeGreaterThanOrEqualTo = null; public Date LastSavedDateTimeGreaterThan = null; public Date LastSavedDateTimeLessThan = null; public Date LastSavedDateTimeLessThanOrEqualTo = null; public Date LastSavedDateTimeNotEqualTo = null; public ArrayList LastSavedDateTimeBetween = null; public ArrayList LastSavedDateTimeIn = null; public String getRecID() { return RecID; } public BO_PrioritiesQuery setRecID(String value) { this.RecID = value; return this; } public String getRecIDStartsWith() { return RecIDStartsWith; } public BO_PrioritiesQuery setRecIDStartsWith(String value) { this.RecIDStartsWith = value; return this; } public String getRecIDEndsWith() { return RecIDEndsWith; } public BO_PrioritiesQuery setRecIDEndsWith(String value) { this.RecIDEndsWith = value; return this; } public String getRecIDContains() { return RecIDContains; } public BO_PrioritiesQuery setRecIDContains(String value) { this.RecIDContains = value; return this; } public String getRecIDLike() { return RecIDLike; } public BO_PrioritiesQuery setRecIDLike(String value) { this.RecIDLike = value; return this; } public ArrayList getRecIDBetween() { return RecIDBetween; } public BO_PrioritiesQuery setRecIDBetween(ArrayList value) { this.RecIDBetween = value; return this; } public ArrayList getRecIDIn() { return RecIDIn; } public BO_PrioritiesQuery setRecIDIn(ArrayList value) { this.RecIDIn = value; return this; } public String getPriorityDescription() { return PriorityDescription; } public BO_PrioritiesQuery setPriorityDescription(String value) { this.PriorityDescription = value; return this; } public String getPriorityDescriptionStartsWith() { return PriorityDescriptionStartsWith; } public BO_PrioritiesQuery setPriorityDescriptionStartsWith(String value) { this.PriorityDescriptionStartsWith = value; return this; } public String getPriorityDescriptionEndsWith() { return PriorityDescriptionEndsWith; } public BO_PrioritiesQuery setPriorityDescriptionEndsWith(String value) { this.PriorityDescriptionEndsWith = value; return this; } public String getPriorityDescriptionContains() { return PriorityDescriptionContains; } public BO_PrioritiesQuery setPriorityDescriptionContains(String value) { this.PriorityDescriptionContains = value; return this; } public String getPriorityDescriptionLike() { return PriorityDescriptionLike; } public BO_PrioritiesQuery setPriorityDescriptionLike(String value) { this.PriorityDescriptionLike = value; return this; } public ArrayList getPriorityDescriptionBetween() { return PriorityDescriptionBetween; } public BO_PrioritiesQuery setPriorityDescriptionBetween(ArrayList value) { this.PriorityDescriptionBetween = value; return this; } public ArrayList getPriorityDescriptionIn() { return PriorityDescriptionIn; } public BO_PrioritiesQuery setPriorityDescriptionIn(ArrayList value) { this.PriorityDescriptionIn = value; return this; } public Integer getPriorityWeight() { return PriorityWeight; } public BO_PrioritiesQuery setPriorityWeight(Integer value) { this.PriorityWeight = value; return this; } public Integer getPriorityWeightGreaterThanOrEqualTo() { return PriorityWeightGreaterThanOrEqualTo; } public BO_PrioritiesQuery setPriorityWeightGreaterThanOrEqualTo(Integer value) { this.PriorityWeightGreaterThanOrEqualTo = value; return this; } public Integer getPriorityWeightGreaterThan() { return PriorityWeightGreaterThan; } public BO_PrioritiesQuery setPriorityWeightGreaterThan(Integer value) { this.PriorityWeightGreaterThan = value; return this; } public Integer getPriorityWeightLessThan() { return PriorityWeightLessThan; } public BO_PrioritiesQuery setPriorityWeightLessThan(Integer value) { this.PriorityWeightLessThan = value; return this; } public Integer getPriorityWeightLessThanOrEqualTo() { return PriorityWeightLessThanOrEqualTo; } public BO_PrioritiesQuery setPriorityWeightLessThanOrEqualTo(Integer value) { this.PriorityWeightLessThanOrEqualTo = value; return this; } public Integer getPriorityWeightNotEqualTo() { return PriorityWeightNotEqualTo; } public BO_PrioritiesQuery setPriorityWeightNotEqualTo(Integer value) { this.PriorityWeightNotEqualTo = value; return this; } public ArrayList getPriorityWeightBetween() { return PriorityWeightBetween; } public BO_PrioritiesQuery setPriorityWeightBetween(ArrayList value) { this.PriorityWeightBetween = value; return this; } public ArrayList getPriorityWeightIn() { return PriorityWeightIn; } public BO_PrioritiesQuery setPriorityWeightIn(ArrayList value) { this.PriorityWeightIn = value; return this; } public Boolean isDefaultPriority() { return DefaultPriority; } public BO_PrioritiesQuery setDefaultPriority(Boolean value) { this.DefaultPriority = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public BO_PrioritiesQuery setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getLastSavedDateTimeGreaterThanOrEqualTo() { return LastSavedDateTimeGreaterThanOrEqualTo; } public BO_PrioritiesQuery setLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.LastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeGreaterThan() { return LastSavedDateTimeGreaterThan; } public BO_PrioritiesQuery setLastSavedDateTimeGreaterThan(Date value) { this.LastSavedDateTimeGreaterThan = value; return this; } public Date getLastSavedDateTimeLessThan() { return LastSavedDateTimeLessThan; } public BO_PrioritiesQuery setLastSavedDateTimeLessThan(Date value) { this.LastSavedDateTimeLessThan = value; return this; } public Date getLastSavedDateTimeLessThanOrEqualTo() { return LastSavedDateTimeLessThanOrEqualTo; } public BO_PrioritiesQuery setLastSavedDateTimeLessThanOrEqualTo(Date value) { this.LastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeNotEqualTo() { return LastSavedDateTimeNotEqualTo; } public BO_PrioritiesQuery setLastSavedDateTimeNotEqualTo(Date value) { this.LastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getLastSavedDateTimeBetween() { return LastSavedDateTimeBetween; } public BO_PrioritiesQuery setLastSavedDateTimeBetween(ArrayList value) { this.LastSavedDateTimeBetween = value; return this; } public ArrayList getLastSavedDateTimeIn() { return LastSavedDateTimeIn; } public BO_PrioritiesQuery setLastSavedDateTimeIn(ArrayList value) { this.LastSavedDateTimeIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class BR_CustomSettingQuery extends QueryDb implements IReturn> { public String SettingID = null; public String SettingIDStartsWith = null; public String SettingIDEndsWith = null; public String SettingIDContains = null; public String SettingIDLike = null; public ArrayList SettingIDBetween = null; public ArrayList SettingIDIn = null; public Date LastSavedDateTime = null; public Date LastSavedDateTimeGreaterThanOrEqualTo = null; public Date LastSavedDateTimeGreaterThan = null; public Date LastSavedDateTimeLessThan = null; public Date LastSavedDateTimeLessThanOrEqualTo = null; public Date LastSavedDateTimeNotEqualTo = null; public ArrayList LastSavedDateTimeBetween = null; public ArrayList LastSavedDateTimeIn = null; public String SettingDescription = null; public String SettingDescriptionStartsWith = null; public String SettingDescriptionEndsWith = null; public String SettingDescriptionContains = null; public String SettingDescriptionLike = null; public ArrayList SettingDescriptionBetween = null; public ArrayList SettingDescriptionIn = null; public String SettingName = null; public String SettingNameStartsWith = null; public String SettingNameEndsWith = null; public String SettingNameContains = null; public String SettingNameLike = null; public ArrayList SettingNameBetween = null; public ArrayList SettingNameIn = null; public BigDecimal DisplayOrder = null; public BigDecimal DisplayOrderGreaterThanOrEqualTo = null; public BigDecimal DisplayOrderGreaterThan = null; public BigDecimal DisplayOrderLessThan = null; public BigDecimal DisplayOrderLessThanOrEqualTo = null; public BigDecimal DisplayOrderNotEqualTo = null; public ArrayList DisplayOrderBetween = null; public ArrayList DisplayOrderIn = null; public Short CellType = null; public Short CellTypeGreaterThanOrEqualTo = null; public Short CellTypeGreaterThan = null; public Short CellTypeLessThan = null; public Short CellTypeLessThanOrEqualTo = null; public Short CellTypeNotEqualTo = null; public ArrayList CellTypeBetween = null; public ArrayList CellTypeIn = null; public String ScriptFormatCell = null; public String ScriptFormatCellStartsWith = null; public String ScriptFormatCellEndsWith = null; public String ScriptFormatCellContains = null; public String ScriptFormatCellLike = null; public ArrayList ScriptFormatCellBetween = null; public ArrayList ScriptFormatCellIn = null; public String ScriptButtonClicked = null; public String ScriptButtonClickedStartsWith = null; public String ScriptButtonClickedEndsWith = null; public String ScriptButtonClickedContains = null; public String ScriptButtonClickedLike = null; public ArrayList ScriptButtonClickedBetween = null; public ArrayList ScriptButtonClickedIn = null; public String ScriptReadData = null; public String ScriptReadDataStartsWith = null; public String ScriptReadDataEndsWith = null; public String ScriptReadDataContains = null; public String ScriptReadDataLike = null; public ArrayList ScriptReadDataBetween = null; public ArrayList ScriptReadDataIn = null; public UUID SY_Plugin_RecID = null; public ArrayList SY_Plugin_RecIDIn = null; public String getSettingID() { return SettingID; } public BR_CustomSettingQuery setSettingID(String value) { this.SettingID = value; return this; } public String getSettingIDStartsWith() { return SettingIDStartsWith; } public BR_CustomSettingQuery setSettingIDStartsWith(String value) { this.SettingIDStartsWith = value; return this; } public String getSettingIDEndsWith() { return SettingIDEndsWith; } public BR_CustomSettingQuery setSettingIDEndsWith(String value) { this.SettingIDEndsWith = value; return this; } public String getSettingIDContains() { return SettingIDContains; } public BR_CustomSettingQuery setSettingIDContains(String value) { this.SettingIDContains = value; return this; } public String getSettingIDLike() { return SettingIDLike; } public BR_CustomSettingQuery setSettingIDLike(String value) { this.SettingIDLike = value; return this; } public ArrayList getSettingIDBetween() { return SettingIDBetween; } public BR_CustomSettingQuery setSettingIDBetween(ArrayList value) { this.SettingIDBetween = value; return this; } public ArrayList getSettingIDIn() { return SettingIDIn; } public BR_CustomSettingQuery setSettingIDIn(ArrayList value) { this.SettingIDIn = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public BR_CustomSettingQuery setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getLastSavedDateTimeGreaterThanOrEqualTo() { return LastSavedDateTimeGreaterThanOrEqualTo; } public BR_CustomSettingQuery setLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.LastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeGreaterThan() { return LastSavedDateTimeGreaterThan; } public BR_CustomSettingQuery setLastSavedDateTimeGreaterThan(Date value) { this.LastSavedDateTimeGreaterThan = value; return this; } public Date getLastSavedDateTimeLessThan() { return LastSavedDateTimeLessThan; } public BR_CustomSettingQuery setLastSavedDateTimeLessThan(Date value) { this.LastSavedDateTimeLessThan = value; return this; } public Date getLastSavedDateTimeLessThanOrEqualTo() { return LastSavedDateTimeLessThanOrEqualTo; } public BR_CustomSettingQuery setLastSavedDateTimeLessThanOrEqualTo(Date value) { this.LastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeNotEqualTo() { return LastSavedDateTimeNotEqualTo; } public BR_CustomSettingQuery setLastSavedDateTimeNotEqualTo(Date value) { this.LastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getLastSavedDateTimeBetween() { return LastSavedDateTimeBetween; } public BR_CustomSettingQuery setLastSavedDateTimeBetween(ArrayList value) { this.LastSavedDateTimeBetween = value; return this; } public ArrayList getLastSavedDateTimeIn() { return LastSavedDateTimeIn; } public BR_CustomSettingQuery setLastSavedDateTimeIn(ArrayList value) { this.LastSavedDateTimeIn = value; return this; } public String getSettingDescription() { return SettingDescription; } public BR_CustomSettingQuery setSettingDescription(String value) { this.SettingDescription = value; return this; } public String getSettingDescriptionStartsWith() { return SettingDescriptionStartsWith; } public BR_CustomSettingQuery setSettingDescriptionStartsWith(String value) { this.SettingDescriptionStartsWith = value; return this; } public String getSettingDescriptionEndsWith() { return SettingDescriptionEndsWith; } public BR_CustomSettingQuery setSettingDescriptionEndsWith(String value) { this.SettingDescriptionEndsWith = value; return this; } public String getSettingDescriptionContains() { return SettingDescriptionContains; } public BR_CustomSettingQuery setSettingDescriptionContains(String value) { this.SettingDescriptionContains = value; return this; } public String getSettingDescriptionLike() { return SettingDescriptionLike; } public BR_CustomSettingQuery setSettingDescriptionLike(String value) { this.SettingDescriptionLike = value; return this; } public ArrayList getSettingDescriptionBetween() { return SettingDescriptionBetween; } public BR_CustomSettingQuery setSettingDescriptionBetween(ArrayList value) { this.SettingDescriptionBetween = value; return this; } public ArrayList getSettingDescriptionIn() { return SettingDescriptionIn; } public BR_CustomSettingQuery setSettingDescriptionIn(ArrayList value) { this.SettingDescriptionIn = value; return this; } public String getSettingName() { return SettingName; } public BR_CustomSettingQuery setSettingName(String value) { this.SettingName = value; return this; } public String getSettingNameStartsWith() { return SettingNameStartsWith; } public BR_CustomSettingQuery setSettingNameStartsWith(String value) { this.SettingNameStartsWith = value; return this; } public String getSettingNameEndsWith() { return SettingNameEndsWith; } public BR_CustomSettingQuery setSettingNameEndsWith(String value) { this.SettingNameEndsWith = value; return this; } public String getSettingNameContains() { return SettingNameContains; } public BR_CustomSettingQuery setSettingNameContains(String value) { this.SettingNameContains = value; return this; } public String getSettingNameLike() { return SettingNameLike; } public BR_CustomSettingQuery setSettingNameLike(String value) { this.SettingNameLike = value; return this; } public ArrayList getSettingNameBetween() { return SettingNameBetween; } public BR_CustomSettingQuery setSettingNameBetween(ArrayList value) { this.SettingNameBetween = value; return this; } public ArrayList getSettingNameIn() { return SettingNameIn; } public BR_CustomSettingQuery setSettingNameIn(ArrayList value) { this.SettingNameIn = value; return this; } public BigDecimal getDisplayOrder() { return DisplayOrder; } public BR_CustomSettingQuery setDisplayOrder(BigDecimal value) { this.DisplayOrder = value; return this; } public BigDecimal getDisplayOrderGreaterThanOrEqualTo() { return DisplayOrderGreaterThanOrEqualTo; } public BR_CustomSettingQuery setDisplayOrderGreaterThanOrEqualTo(BigDecimal value) { this.DisplayOrderGreaterThanOrEqualTo = value; return this; } public BigDecimal getDisplayOrderGreaterThan() { return DisplayOrderGreaterThan; } public BR_CustomSettingQuery setDisplayOrderGreaterThan(BigDecimal value) { this.DisplayOrderGreaterThan = value; return this; } public BigDecimal getDisplayOrderLessThan() { return DisplayOrderLessThan; } public BR_CustomSettingQuery setDisplayOrderLessThan(BigDecimal value) { this.DisplayOrderLessThan = value; return this; } public BigDecimal getDisplayOrderLessThanOrEqualTo() { return DisplayOrderLessThanOrEqualTo; } public BR_CustomSettingQuery setDisplayOrderLessThanOrEqualTo(BigDecimal value) { this.DisplayOrderLessThanOrEqualTo = value; return this; } public BigDecimal getDisplayOrderNotEqualTo() { return DisplayOrderNotEqualTo; } public BR_CustomSettingQuery setDisplayOrderNotEqualTo(BigDecimal value) { this.DisplayOrderNotEqualTo = value; return this; } public ArrayList getDisplayOrderBetween() { return DisplayOrderBetween; } public BR_CustomSettingQuery setDisplayOrderBetween(ArrayList value) { this.DisplayOrderBetween = value; return this; } public ArrayList getDisplayOrderIn() { return DisplayOrderIn; } public BR_CustomSettingQuery setDisplayOrderIn(ArrayList value) { this.DisplayOrderIn = value; return this; } public Short getCellType() { return CellType; } public BR_CustomSettingQuery setCellType(Short value) { this.CellType = value; return this; } public Short getCellTypeGreaterThanOrEqualTo() { return CellTypeGreaterThanOrEqualTo; } public BR_CustomSettingQuery setCellTypeGreaterThanOrEqualTo(Short value) { this.CellTypeGreaterThanOrEqualTo = value; return this; } public Short getCellTypeGreaterThan() { return CellTypeGreaterThan; } public BR_CustomSettingQuery setCellTypeGreaterThan(Short value) { this.CellTypeGreaterThan = value; return this; } public Short getCellTypeLessThan() { return CellTypeLessThan; } public BR_CustomSettingQuery setCellTypeLessThan(Short value) { this.CellTypeLessThan = value; return this; } public Short getCellTypeLessThanOrEqualTo() { return CellTypeLessThanOrEqualTo; } public BR_CustomSettingQuery setCellTypeLessThanOrEqualTo(Short value) { this.CellTypeLessThanOrEqualTo = value; return this; } public Short getCellTypeNotEqualTo() { return CellTypeNotEqualTo; } public BR_CustomSettingQuery setCellTypeNotEqualTo(Short value) { this.CellTypeNotEqualTo = value; return this; } public ArrayList getCellTypeBetween() { return CellTypeBetween; } public BR_CustomSettingQuery setCellTypeBetween(ArrayList value) { this.CellTypeBetween = value; return this; } public ArrayList getCellTypeIn() { return CellTypeIn; } public BR_CustomSettingQuery setCellTypeIn(ArrayList value) { this.CellTypeIn = value; return this; } public String getScriptFormatCell() { return ScriptFormatCell; } public BR_CustomSettingQuery setScriptFormatCell(String value) { this.ScriptFormatCell = value; return this; } public String getScriptFormatCellStartsWith() { return ScriptFormatCellStartsWith; } public BR_CustomSettingQuery setScriptFormatCellStartsWith(String value) { this.ScriptFormatCellStartsWith = value; return this; } public String getScriptFormatCellEndsWith() { return ScriptFormatCellEndsWith; } public BR_CustomSettingQuery setScriptFormatCellEndsWith(String value) { this.ScriptFormatCellEndsWith = value; return this; } public String getScriptFormatCellContains() { return ScriptFormatCellContains; } public BR_CustomSettingQuery setScriptFormatCellContains(String value) { this.ScriptFormatCellContains = value; return this; } public String getScriptFormatCellLike() { return ScriptFormatCellLike; } public BR_CustomSettingQuery setScriptFormatCellLike(String value) { this.ScriptFormatCellLike = value; return this; } public ArrayList getScriptFormatCellBetween() { return ScriptFormatCellBetween; } public BR_CustomSettingQuery setScriptFormatCellBetween(ArrayList value) { this.ScriptFormatCellBetween = value; return this; } public ArrayList getScriptFormatCellIn() { return ScriptFormatCellIn; } public BR_CustomSettingQuery setScriptFormatCellIn(ArrayList value) { this.ScriptFormatCellIn = value; return this; } public String getScriptButtonClicked() { return ScriptButtonClicked; } public BR_CustomSettingQuery setScriptButtonClicked(String value) { this.ScriptButtonClicked = value; return this; } public String getScriptButtonClickedStartsWith() { return ScriptButtonClickedStartsWith; } public BR_CustomSettingQuery setScriptButtonClickedStartsWith(String value) { this.ScriptButtonClickedStartsWith = value; return this; } public String getScriptButtonClickedEndsWith() { return ScriptButtonClickedEndsWith; } public BR_CustomSettingQuery setScriptButtonClickedEndsWith(String value) { this.ScriptButtonClickedEndsWith = value; return this; } public String getScriptButtonClickedContains() { return ScriptButtonClickedContains; } public BR_CustomSettingQuery setScriptButtonClickedContains(String value) { this.ScriptButtonClickedContains = value; return this; } public String getScriptButtonClickedLike() { return ScriptButtonClickedLike; } public BR_CustomSettingQuery setScriptButtonClickedLike(String value) { this.ScriptButtonClickedLike = value; return this; } public ArrayList getScriptButtonClickedBetween() { return ScriptButtonClickedBetween; } public BR_CustomSettingQuery setScriptButtonClickedBetween(ArrayList value) { this.ScriptButtonClickedBetween = value; return this; } public ArrayList getScriptButtonClickedIn() { return ScriptButtonClickedIn; } public BR_CustomSettingQuery setScriptButtonClickedIn(ArrayList value) { this.ScriptButtonClickedIn = value; return this; } public String getScriptReadData() { return ScriptReadData; } public BR_CustomSettingQuery setScriptReadData(String value) { this.ScriptReadData = value; return this; } public String getScriptReadDataStartsWith() { return ScriptReadDataStartsWith; } public BR_CustomSettingQuery setScriptReadDataStartsWith(String value) { this.ScriptReadDataStartsWith = value; return this; } public String getScriptReadDataEndsWith() { return ScriptReadDataEndsWith; } public BR_CustomSettingQuery setScriptReadDataEndsWith(String value) { this.ScriptReadDataEndsWith = value; return this; } public String getScriptReadDataContains() { return ScriptReadDataContains; } public BR_CustomSettingQuery setScriptReadDataContains(String value) { this.ScriptReadDataContains = value; return this; } public String getScriptReadDataLike() { return ScriptReadDataLike; } public BR_CustomSettingQuery setScriptReadDataLike(String value) { this.ScriptReadDataLike = value; return this; } public ArrayList getScriptReadDataBetween() { return ScriptReadDataBetween; } public BR_CustomSettingQuery setScriptReadDataBetween(ArrayList value) { this.ScriptReadDataBetween = value; return this; } public ArrayList getScriptReadDataIn() { return ScriptReadDataIn; } public BR_CustomSettingQuery setScriptReadDataIn(ArrayList value) { this.ScriptReadDataIn = value; return this; } public UUID getSyPluginRecID() { return SY_Plugin_RecID; } public BR_CustomSettingQuery setSyPluginRecID(UUID value) { this.SY_Plugin_RecID = value; return this; } public ArrayList getSyPluginRecIDIn() { return SY_Plugin_RecIDIn; } public BR_CustomSettingQuery setSyPluginRecIDIn(ArrayList value) { this.SY_Plugin_RecIDIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class BR_CustomSettingValuesQuery extends QueryDb implements IReturn> { public String SettingValueID = null; public String SettingValueIDStartsWith = null; public String SettingValueIDEndsWith = null; public String SettingValueIDContains = null; public String SettingValueIDLike = null; public ArrayList SettingValueIDBetween = null; public ArrayList SettingValueIDIn = null; public String SettingID = null; public String SettingIDStartsWith = null; public String SettingIDEndsWith = null; public String SettingIDContains = null; public String SettingIDLike = null; public ArrayList SettingIDBetween = null; public ArrayList SettingIDIn = null; public String BankRecID = null; public String BankRecIDStartsWith = null; public String BankRecIDEndsWith = null; public String BankRecIDContains = null; public String BankRecIDLike = null; public ArrayList BankRecIDBetween = null; public ArrayList BankRecIDIn = null; public String Contents = null; public String ContentsStartsWith = null; public String ContentsEndsWith = null; public String ContentsContains = null; public String ContentsLike = null; public ArrayList ContentsBetween = null; public ArrayList ContentsIn = null; public Date LastSavedDateTime = null; public Date LastSavedDateTimeGreaterThanOrEqualTo = null; public Date LastSavedDateTimeGreaterThan = null; public Date LastSavedDateTimeLessThan = null; public Date LastSavedDateTimeLessThanOrEqualTo = null; public Date LastSavedDateTimeNotEqualTo = null; public ArrayList LastSavedDateTimeBetween = null; public ArrayList LastSavedDateTimeIn = null; public String getSettingValueID() { return SettingValueID; } public BR_CustomSettingValuesQuery setSettingValueID(String value) { this.SettingValueID = value; return this; } public String getSettingValueIDStartsWith() { return SettingValueIDStartsWith; } public BR_CustomSettingValuesQuery setSettingValueIDStartsWith(String value) { this.SettingValueIDStartsWith = value; return this; } public String getSettingValueIDEndsWith() { return SettingValueIDEndsWith; } public BR_CustomSettingValuesQuery setSettingValueIDEndsWith(String value) { this.SettingValueIDEndsWith = value; return this; } public String getSettingValueIDContains() { return SettingValueIDContains; } public BR_CustomSettingValuesQuery setSettingValueIDContains(String value) { this.SettingValueIDContains = value; return this; } public String getSettingValueIDLike() { return SettingValueIDLike; } public BR_CustomSettingValuesQuery setSettingValueIDLike(String value) { this.SettingValueIDLike = value; return this; } public ArrayList getSettingValueIDBetween() { return SettingValueIDBetween; } public BR_CustomSettingValuesQuery setSettingValueIDBetween(ArrayList value) { this.SettingValueIDBetween = value; return this; } public ArrayList getSettingValueIDIn() { return SettingValueIDIn; } public BR_CustomSettingValuesQuery setSettingValueIDIn(ArrayList value) { this.SettingValueIDIn = value; return this; } public String getSettingID() { return SettingID; } public BR_CustomSettingValuesQuery setSettingID(String value) { this.SettingID = value; return this; } public String getSettingIDStartsWith() { return SettingIDStartsWith; } public BR_CustomSettingValuesQuery setSettingIDStartsWith(String value) { this.SettingIDStartsWith = value; return this; } public String getSettingIDEndsWith() { return SettingIDEndsWith; } public BR_CustomSettingValuesQuery setSettingIDEndsWith(String value) { this.SettingIDEndsWith = value; return this; } public String getSettingIDContains() { return SettingIDContains; } public BR_CustomSettingValuesQuery setSettingIDContains(String value) { this.SettingIDContains = value; return this; } public String getSettingIDLike() { return SettingIDLike; } public BR_CustomSettingValuesQuery setSettingIDLike(String value) { this.SettingIDLike = value; return this; } public ArrayList getSettingIDBetween() { return SettingIDBetween; } public BR_CustomSettingValuesQuery setSettingIDBetween(ArrayList value) { this.SettingIDBetween = value; return this; } public ArrayList getSettingIDIn() { return SettingIDIn; } public BR_CustomSettingValuesQuery setSettingIDIn(ArrayList value) { this.SettingIDIn = value; return this; } public String getBankRecID() { return BankRecID; } public BR_CustomSettingValuesQuery setBankRecID(String value) { this.BankRecID = value; return this; } public String getBankRecIDStartsWith() { return BankRecIDStartsWith; } public BR_CustomSettingValuesQuery setBankRecIDStartsWith(String value) { this.BankRecIDStartsWith = value; return this; } public String getBankRecIDEndsWith() { return BankRecIDEndsWith; } public BR_CustomSettingValuesQuery setBankRecIDEndsWith(String value) { this.BankRecIDEndsWith = value; return this; } public String getBankRecIDContains() { return BankRecIDContains; } public BR_CustomSettingValuesQuery setBankRecIDContains(String value) { this.BankRecIDContains = value; return this; } public String getBankRecIDLike() { return BankRecIDLike; } public BR_CustomSettingValuesQuery setBankRecIDLike(String value) { this.BankRecIDLike = value; return this; } public ArrayList getBankRecIDBetween() { return BankRecIDBetween; } public BR_CustomSettingValuesQuery setBankRecIDBetween(ArrayList value) { this.BankRecIDBetween = value; return this; } public ArrayList getBankRecIDIn() { return BankRecIDIn; } public BR_CustomSettingValuesQuery setBankRecIDIn(ArrayList value) { this.BankRecIDIn = value; return this; } public String getContents() { return Contents; } public BR_CustomSettingValuesQuery setContents(String value) { this.Contents = value; return this; } public String getContentsStartsWith() { return ContentsStartsWith; } public BR_CustomSettingValuesQuery setContentsStartsWith(String value) { this.ContentsStartsWith = value; return this; } public String getContentsEndsWith() { return ContentsEndsWith; } public BR_CustomSettingValuesQuery setContentsEndsWith(String value) { this.ContentsEndsWith = value; return this; } public String getContentsContains() { return ContentsContains; } public BR_CustomSettingValuesQuery setContentsContains(String value) { this.ContentsContains = value; return this; } public String getContentsLike() { return ContentsLike; } public BR_CustomSettingValuesQuery setContentsLike(String value) { this.ContentsLike = value; return this; } public ArrayList getContentsBetween() { return ContentsBetween; } public BR_CustomSettingValuesQuery setContentsBetween(ArrayList value) { this.ContentsBetween = value; return this; } public ArrayList getContentsIn() { return ContentsIn; } public BR_CustomSettingValuesQuery setContentsIn(ArrayList value) { this.ContentsIn = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public BR_CustomSettingValuesQuery setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getLastSavedDateTimeGreaterThanOrEqualTo() { return LastSavedDateTimeGreaterThanOrEqualTo; } public BR_CustomSettingValuesQuery setLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.LastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeGreaterThan() { return LastSavedDateTimeGreaterThan; } public BR_CustomSettingValuesQuery setLastSavedDateTimeGreaterThan(Date value) { this.LastSavedDateTimeGreaterThan = value; return this; } public Date getLastSavedDateTimeLessThan() { return LastSavedDateTimeLessThan; } public BR_CustomSettingValuesQuery setLastSavedDateTimeLessThan(Date value) { this.LastSavedDateTimeLessThan = value; return this; } public Date getLastSavedDateTimeLessThanOrEqualTo() { return LastSavedDateTimeLessThanOrEqualTo; } public BR_CustomSettingValuesQuery setLastSavedDateTimeLessThanOrEqualTo(Date value) { this.LastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeNotEqualTo() { return LastSavedDateTimeNotEqualTo; } public BR_CustomSettingValuesQuery setLastSavedDateTimeNotEqualTo(Date value) { this.LastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getLastSavedDateTimeBetween() { return LastSavedDateTimeBetween; } public BR_CustomSettingValuesQuery setLastSavedDateTimeBetween(ArrayList value) { this.LastSavedDateTimeBetween = value; return this; } public ArrayList getLastSavedDateTimeIn() { return LastSavedDateTimeIn; } public BR_CustomSettingValuesQuery setLastSavedDateTimeIn(ArrayList value) { this.LastSavedDateTimeIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class BR_DirectCreditorPaymentAllocationsQuery extends QueryDb implements IReturn> { public String DirectCreditorPaymentAllocationID = null; public String DirectCreditorPaymentAllocationIDStartsWith = null; public String DirectCreditorPaymentAllocationIDEndsWith = null; public String DirectCreditorPaymentAllocationIDContains = null; public String DirectCreditorPaymentAllocationIDLike = null; public ArrayList DirectCreditorPaymentAllocationIDBetween = null; public ArrayList DirectCreditorPaymentAllocationIDIn = null; public String DirectCreditorPaymentID = null; public String DirectCreditorPaymentIDStartsWith = null; public String DirectCreditorPaymentIDEndsWith = null; public String DirectCreditorPaymentIDContains = null; public String DirectCreditorPaymentIDLike = null; public ArrayList DirectCreditorPaymentIDBetween = null; public ArrayList DirectCreditorPaymentIDIn = null; public BigDecimal AmountAllocated = null; public BigDecimal AmountAllocatedGreaterThanOrEqualTo = null; public BigDecimal AmountAllocatedGreaterThan = null; public BigDecimal AmountAllocatedLessThan = null; public BigDecimal AmountAllocatedLessThanOrEqualTo = null; public BigDecimal AmountAllocatedNotEqualTo = null; public ArrayList AmountAllocatedBetween = null; public ArrayList AmountAllocatedIn = null; public String TransID = null; public String TransIDStartsWith = null; public String TransIDEndsWith = null; public String TransIDContains = null; public String TransIDLike = null; public ArrayList TransIDBetween = null; public ArrayList TransIDIn = null; public String LastSavedByStaffID = null; public String LastSavedByStaffIDStartsWith = null; public String LastSavedByStaffIDEndsWith = null; public String LastSavedByStaffIDContains = null; public String LastSavedByStaffIDLike = null; public ArrayList LastSavedByStaffIDBetween = null; public ArrayList LastSavedByStaffIDIn = null; public Date LastSavedDateTime = null; public Date LastSavedDateTimeGreaterThanOrEqualTo = null; public Date LastSavedDateTimeGreaterThan = null; public Date LastSavedDateTimeLessThan = null; public Date LastSavedDateTimeLessThanOrEqualTo = null; public Date LastSavedDateTimeNotEqualTo = null; public ArrayList LastSavedDateTimeBetween = null; public ArrayList LastSavedDateTimeIn = null; public BigDecimal DiscountAmountAllocated = null; public BigDecimal DiscountAmountAllocatedGreaterThanOrEqualTo = null; public BigDecimal DiscountAmountAllocatedGreaterThan = null; public BigDecimal DiscountAmountAllocatedLessThan = null; public BigDecimal DiscountAmountAllocatedLessThanOrEqualTo = null; public BigDecimal DiscountAmountAllocatedNotEqualTo = null; public ArrayList DiscountAmountAllocatedBetween = null; public ArrayList DiscountAmountAllocatedIn = null; public String getDirectCreditorPaymentAllocationID() { return DirectCreditorPaymentAllocationID; } public BR_DirectCreditorPaymentAllocationsQuery setDirectCreditorPaymentAllocationID(String value) { this.DirectCreditorPaymentAllocationID = value; return this; } public String getDirectCreditorPaymentAllocationIDStartsWith() { return DirectCreditorPaymentAllocationIDStartsWith; } public BR_DirectCreditorPaymentAllocationsQuery setDirectCreditorPaymentAllocationIDStartsWith(String value) { this.DirectCreditorPaymentAllocationIDStartsWith = value; return this; } public String getDirectCreditorPaymentAllocationIDEndsWith() { return DirectCreditorPaymentAllocationIDEndsWith; } public BR_DirectCreditorPaymentAllocationsQuery setDirectCreditorPaymentAllocationIDEndsWith(String value) { this.DirectCreditorPaymentAllocationIDEndsWith = value; return this; } public String getDirectCreditorPaymentAllocationIDContains() { return DirectCreditorPaymentAllocationIDContains; } public BR_DirectCreditorPaymentAllocationsQuery setDirectCreditorPaymentAllocationIDContains(String value) { this.DirectCreditorPaymentAllocationIDContains = value; return this; } public String getDirectCreditorPaymentAllocationIDLike() { return DirectCreditorPaymentAllocationIDLike; } public BR_DirectCreditorPaymentAllocationsQuery setDirectCreditorPaymentAllocationIDLike(String value) { this.DirectCreditorPaymentAllocationIDLike = value; return this; } public ArrayList getDirectCreditorPaymentAllocationIDBetween() { return DirectCreditorPaymentAllocationIDBetween; } public BR_DirectCreditorPaymentAllocationsQuery setDirectCreditorPaymentAllocationIDBetween(ArrayList value) { this.DirectCreditorPaymentAllocationIDBetween = value; return this; } public ArrayList getDirectCreditorPaymentAllocationIDIn() { return DirectCreditorPaymentAllocationIDIn; } public BR_DirectCreditorPaymentAllocationsQuery setDirectCreditorPaymentAllocationIDIn(ArrayList value) { this.DirectCreditorPaymentAllocationIDIn = value; return this; } public String getDirectCreditorPaymentID() { return DirectCreditorPaymentID; } public BR_DirectCreditorPaymentAllocationsQuery setDirectCreditorPaymentID(String value) { this.DirectCreditorPaymentID = value; return this; } public String getDirectCreditorPaymentIDStartsWith() { return DirectCreditorPaymentIDStartsWith; } public BR_DirectCreditorPaymentAllocationsQuery setDirectCreditorPaymentIDStartsWith(String value) { this.DirectCreditorPaymentIDStartsWith = value; return this; } public String getDirectCreditorPaymentIDEndsWith() { return DirectCreditorPaymentIDEndsWith; } public BR_DirectCreditorPaymentAllocationsQuery setDirectCreditorPaymentIDEndsWith(String value) { this.DirectCreditorPaymentIDEndsWith = value; return this; } public String getDirectCreditorPaymentIDContains() { return DirectCreditorPaymentIDContains; } public BR_DirectCreditorPaymentAllocationsQuery setDirectCreditorPaymentIDContains(String value) { this.DirectCreditorPaymentIDContains = value; return this; } public String getDirectCreditorPaymentIDLike() { return DirectCreditorPaymentIDLike; } public BR_DirectCreditorPaymentAllocationsQuery setDirectCreditorPaymentIDLike(String value) { this.DirectCreditorPaymentIDLike = value; return this; } public ArrayList getDirectCreditorPaymentIDBetween() { return DirectCreditorPaymentIDBetween; } public BR_DirectCreditorPaymentAllocationsQuery setDirectCreditorPaymentIDBetween(ArrayList value) { this.DirectCreditorPaymentIDBetween = value; return this; } public ArrayList getDirectCreditorPaymentIDIn() { return DirectCreditorPaymentIDIn; } public BR_DirectCreditorPaymentAllocationsQuery setDirectCreditorPaymentIDIn(ArrayList value) { this.DirectCreditorPaymentIDIn = value; return this; } public BigDecimal getAmountAllocated() { return AmountAllocated; } public BR_DirectCreditorPaymentAllocationsQuery setAmountAllocated(BigDecimal value) { this.AmountAllocated = value; return this; } public BigDecimal getAmountAllocatedGreaterThanOrEqualTo() { return AmountAllocatedGreaterThanOrEqualTo; } public BR_DirectCreditorPaymentAllocationsQuery setAmountAllocatedGreaterThanOrEqualTo(BigDecimal value) { this.AmountAllocatedGreaterThanOrEqualTo = value; return this; } public BigDecimal getAmountAllocatedGreaterThan() { return AmountAllocatedGreaterThan; } public BR_DirectCreditorPaymentAllocationsQuery setAmountAllocatedGreaterThan(BigDecimal value) { this.AmountAllocatedGreaterThan = value; return this; } public BigDecimal getAmountAllocatedLessThan() { return AmountAllocatedLessThan; } public BR_DirectCreditorPaymentAllocationsQuery setAmountAllocatedLessThan(BigDecimal value) { this.AmountAllocatedLessThan = value; return this; } public BigDecimal getAmountAllocatedLessThanOrEqualTo() { return AmountAllocatedLessThanOrEqualTo; } public BR_DirectCreditorPaymentAllocationsQuery setAmountAllocatedLessThanOrEqualTo(BigDecimal value) { this.AmountAllocatedLessThanOrEqualTo = value; return this; } public BigDecimal getAmountAllocatedNotEqualTo() { return AmountAllocatedNotEqualTo; } public BR_DirectCreditorPaymentAllocationsQuery setAmountAllocatedNotEqualTo(BigDecimal value) { this.AmountAllocatedNotEqualTo = value; return this; } public ArrayList getAmountAllocatedBetween() { return AmountAllocatedBetween; } public BR_DirectCreditorPaymentAllocationsQuery setAmountAllocatedBetween(ArrayList value) { this.AmountAllocatedBetween = value; return this; } public ArrayList getAmountAllocatedIn() { return AmountAllocatedIn; } public BR_DirectCreditorPaymentAllocationsQuery setAmountAllocatedIn(ArrayList value) { this.AmountAllocatedIn = value; return this; } public String getTransID() { return TransID; } public BR_DirectCreditorPaymentAllocationsQuery setTransID(String value) { this.TransID = value; return this; } public String getTransIDStartsWith() { return TransIDStartsWith; } public BR_DirectCreditorPaymentAllocationsQuery setTransIDStartsWith(String value) { this.TransIDStartsWith = value; return this; } public String getTransIDEndsWith() { return TransIDEndsWith; } public BR_DirectCreditorPaymentAllocationsQuery setTransIDEndsWith(String value) { this.TransIDEndsWith = value; return this; } public String getTransIDContains() { return TransIDContains; } public BR_DirectCreditorPaymentAllocationsQuery setTransIDContains(String value) { this.TransIDContains = value; return this; } public String getTransIDLike() { return TransIDLike; } public BR_DirectCreditorPaymentAllocationsQuery setTransIDLike(String value) { this.TransIDLike = value; return this; } public ArrayList getTransIDBetween() { return TransIDBetween; } public BR_DirectCreditorPaymentAllocationsQuery setTransIDBetween(ArrayList value) { this.TransIDBetween = value; return this; } public ArrayList getTransIDIn() { return TransIDIn; } public BR_DirectCreditorPaymentAllocationsQuery setTransIDIn(ArrayList value) { this.TransIDIn = value; return this; } public String getLastSavedByStaffID() { return LastSavedByStaffID; } public BR_DirectCreditorPaymentAllocationsQuery setLastSavedByStaffID(String value) { this.LastSavedByStaffID = value; return this; } public String getLastSavedByStaffIDStartsWith() { return LastSavedByStaffIDStartsWith; } public BR_DirectCreditorPaymentAllocationsQuery setLastSavedByStaffIDStartsWith(String value) { this.LastSavedByStaffIDStartsWith = value; return this; } public String getLastSavedByStaffIDEndsWith() { return LastSavedByStaffIDEndsWith; } public BR_DirectCreditorPaymentAllocationsQuery setLastSavedByStaffIDEndsWith(String value) { this.LastSavedByStaffIDEndsWith = value; return this; } public String getLastSavedByStaffIDContains() { return LastSavedByStaffIDContains; } public BR_DirectCreditorPaymentAllocationsQuery setLastSavedByStaffIDContains(String value) { this.LastSavedByStaffIDContains = value; return this; } public String getLastSavedByStaffIDLike() { return LastSavedByStaffIDLike; } public BR_DirectCreditorPaymentAllocationsQuery setLastSavedByStaffIDLike(String value) { this.LastSavedByStaffIDLike = value; return this; } public ArrayList getLastSavedByStaffIDBetween() { return LastSavedByStaffIDBetween; } public BR_DirectCreditorPaymentAllocationsQuery setLastSavedByStaffIDBetween(ArrayList value) { this.LastSavedByStaffIDBetween = value; return this; } public ArrayList getLastSavedByStaffIDIn() { return LastSavedByStaffIDIn; } public BR_DirectCreditorPaymentAllocationsQuery setLastSavedByStaffIDIn(ArrayList value) { this.LastSavedByStaffIDIn = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public BR_DirectCreditorPaymentAllocationsQuery setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getLastSavedDateTimeGreaterThanOrEqualTo() { return LastSavedDateTimeGreaterThanOrEqualTo; } public BR_DirectCreditorPaymentAllocationsQuery setLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.LastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeGreaterThan() { return LastSavedDateTimeGreaterThan; } public BR_DirectCreditorPaymentAllocationsQuery setLastSavedDateTimeGreaterThan(Date value) { this.LastSavedDateTimeGreaterThan = value; return this; } public Date getLastSavedDateTimeLessThan() { return LastSavedDateTimeLessThan; } public BR_DirectCreditorPaymentAllocationsQuery setLastSavedDateTimeLessThan(Date value) { this.LastSavedDateTimeLessThan = value; return this; } public Date getLastSavedDateTimeLessThanOrEqualTo() { return LastSavedDateTimeLessThanOrEqualTo; } public BR_DirectCreditorPaymentAllocationsQuery setLastSavedDateTimeLessThanOrEqualTo(Date value) { this.LastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeNotEqualTo() { return LastSavedDateTimeNotEqualTo; } public BR_DirectCreditorPaymentAllocationsQuery setLastSavedDateTimeNotEqualTo(Date value) { this.LastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getLastSavedDateTimeBetween() { return LastSavedDateTimeBetween; } public BR_DirectCreditorPaymentAllocationsQuery setLastSavedDateTimeBetween(ArrayList value) { this.LastSavedDateTimeBetween = value; return this; } public ArrayList getLastSavedDateTimeIn() { return LastSavedDateTimeIn; } public BR_DirectCreditorPaymentAllocationsQuery setLastSavedDateTimeIn(ArrayList value) { this.LastSavedDateTimeIn = value; return this; } public BigDecimal getDiscountAmountAllocated() { return DiscountAmountAllocated; } public BR_DirectCreditorPaymentAllocationsQuery setDiscountAmountAllocated(BigDecimal value) { this.DiscountAmountAllocated = value; return this; } public BigDecimal getDiscountAmountAllocatedGreaterThanOrEqualTo() { return DiscountAmountAllocatedGreaterThanOrEqualTo; } public BR_DirectCreditorPaymentAllocationsQuery setDiscountAmountAllocatedGreaterThanOrEqualTo(BigDecimal value) { this.DiscountAmountAllocatedGreaterThanOrEqualTo = value; return this; } public BigDecimal getDiscountAmountAllocatedGreaterThan() { return DiscountAmountAllocatedGreaterThan; } public BR_DirectCreditorPaymentAllocationsQuery setDiscountAmountAllocatedGreaterThan(BigDecimal value) { this.DiscountAmountAllocatedGreaterThan = value; return this; } public BigDecimal getDiscountAmountAllocatedLessThan() { return DiscountAmountAllocatedLessThan; } public BR_DirectCreditorPaymentAllocationsQuery setDiscountAmountAllocatedLessThan(BigDecimal value) { this.DiscountAmountAllocatedLessThan = value; return this; } public BigDecimal getDiscountAmountAllocatedLessThanOrEqualTo() { return DiscountAmountAllocatedLessThanOrEqualTo; } public BR_DirectCreditorPaymentAllocationsQuery setDiscountAmountAllocatedLessThanOrEqualTo(BigDecimal value) { this.DiscountAmountAllocatedLessThanOrEqualTo = value; return this; } public BigDecimal getDiscountAmountAllocatedNotEqualTo() { return DiscountAmountAllocatedNotEqualTo; } public BR_DirectCreditorPaymentAllocationsQuery setDiscountAmountAllocatedNotEqualTo(BigDecimal value) { this.DiscountAmountAllocatedNotEqualTo = value; return this; } public ArrayList getDiscountAmountAllocatedBetween() { return DiscountAmountAllocatedBetween; } public BR_DirectCreditorPaymentAllocationsQuery setDiscountAmountAllocatedBetween(ArrayList value) { this.DiscountAmountAllocatedBetween = value; return this; } public ArrayList getDiscountAmountAllocatedIn() { return DiscountAmountAllocatedIn; } public BR_DirectCreditorPaymentAllocationsQuery setDiscountAmountAllocatedIn(ArrayList value) { this.DiscountAmountAllocatedIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class BR_DirectCreditorPaymentsQuery extends QueryDb implements IReturn> { public String DirectCreditorPaymentID = null; public String DirectCreditorPaymentIDStartsWith = null; public String DirectCreditorPaymentIDEndsWith = null; public String DirectCreditorPaymentIDContains = null; public String DirectCreditorPaymentIDLike = null; public ArrayList DirectCreditorPaymentIDBetween = null; public ArrayList DirectCreditorPaymentIDIn = null; public String BankRecID = null; public String BankRecIDStartsWith = null; public String BankRecIDEndsWith = null; public String BankRecIDContains = null; public String BankRecIDLike = null; public ArrayList BankRecIDBetween = null; public ArrayList BankRecIDIn = null; public String CreatedByStaffID = null; public String CreatedByStaffIDStartsWith = null; public String CreatedByStaffIDEndsWith = null; public String CreatedByStaffIDContains = null; public String CreatedByStaffIDLike = null; public ArrayList CreatedByStaffIDBetween = null; public ArrayList CreatedByStaffIDIn = null; public Date CreatedDateTime = null; public Date CreatedDateTimeGreaterThanOrEqualTo = null; public Date CreatedDateTimeGreaterThan = null; public Date CreatedDateTimeLessThan = null; public Date CreatedDateTimeLessThanOrEqualTo = null; public Date CreatedDateTimeNotEqualTo = null; public ArrayList CreatedDateTimeBetween = null; public ArrayList CreatedDateTimeIn = null; public String LastSavedByStaffID = null; public String LastSavedByStaffIDStartsWith = null; public String LastSavedByStaffIDEndsWith = null; public String LastSavedByStaffIDContains = null; public String LastSavedByStaffIDLike = null; public ArrayList LastSavedByStaffIDBetween = null; public ArrayList LastSavedByStaffIDIn = null; public Date LastSavedDateTime = null; public Date LastSavedDateTimeGreaterThanOrEqualTo = null; public Date LastSavedDateTimeGreaterThan = null; public Date LastSavedDateTimeLessThan = null; public Date LastSavedDateTimeLessThanOrEqualTo = null; public Date LastSavedDateTimeNotEqualTo = null; public ArrayList LastSavedDateTimeBetween = null; public ArrayList LastSavedDateTimeIn = null; public Integer LineNumber = null; public Integer LineNumberGreaterThanOrEqualTo = null; public Integer LineNumberGreaterThan = null; public Integer LineNumberLessThan = null; public Integer LineNumberLessThanOrEqualTo = null; public Integer LineNumberNotEqualTo = null; public ArrayList LineNumberBetween = null; public ArrayList LineNumberIn = null; public Date TransactionDateTime = null; public Date TransactionDateTimeGreaterThanOrEqualTo = null; public Date TransactionDateTimeGreaterThan = null; public Date TransactionDateTimeLessThan = null; public Date TransactionDateTimeLessThanOrEqualTo = null; public Date TransactionDateTimeNotEqualTo = null; public ArrayList TransactionDateTimeBetween = null; public ArrayList TransactionDateTimeIn = null; public BigDecimal AmountIncGST = null; public BigDecimal AmountIncGSTGreaterThanOrEqualTo = null; public BigDecimal AmountIncGSTGreaterThan = null; public BigDecimal AmountIncGSTLessThan = null; public BigDecimal AmountIncGSTLessThanOrEqualTo = null; public BigDecimal AmountIncGSTNotEqualTo = null; public ArrayList AmountIncGSTBetween = null; public ArrayList AmountIncGSTIn = null; public Short DebitCredit = null; public Short DebitCreditGreaterThanOrEqualTo = null; public Short DebitCreditGreaterThan = null; public Short DebitCreditLessThan = null; public Short DebitCreditLessThanOrEqualTo = null; public Short DebitCreditNotEqualTo = null; public ArrayList DebitCreditBetween = null; public ArrayList DebitCreditIn = null; public String Remark = null; public String RemarkStartsWith = null; public String RemarkEndsWith = null; public String RemarkContains = null; public String RemarkLike = null; public ArrayList RemarkBetween = null; public ArrayList RemarkIn = null; public Short Status = null; public Short StatusGreaterThanOrEqualTo = null; public Short StatusGreaterThan = null; public Short StatusLessThan = null; public Short StatusLessThanOrEqualTo = null; public Short StatusNotEqualTo = null; public ArrayList StatusBetween = null; public ArrayList StatusIn = null; public String GLLedgerID = null; public String GLLedgerIDStartsWith = null; public String GLLedgerIDEndsWith = null; public String GLLedgerIDContains = null; public String GLLedgerIDLike = null; public ArrayList GLLedgerIDBetween = null; public ArrayList GLLedgerIDIn = null; public String CreditorID = null; public String CreditorIDStartsWith = null; public String CreditorIDEndsWith = null; public String CreditorIDContains = null; public String CreditorIDLike = null; public ArrayList CreditorIDBetween = null; public ArrayList CreditorIDIn = null; public String DiscountGLLedgerID = null; public String DiscountGLLedgerIDStartsWith = null; public String DiscountGLLedgerIDEndsWith = null; public String DiscountGLLedgerIDContains = null; public String DiscountGLLedgerIDLike = null; public ArrayList DiscountGLLedgerIDBetween = null; public ArrayList DiscountGLLedgerIDIn = null; public BigDecimal DiscountAmountIncGST = null; public BigDecimal DiscountAmountIncGSTGreaterThanOrEqualTo = null; public BigDecimal DiscountAmountIncGSTGreaterThan = null; public BigDecimal DiscountAmountIncGSTLessThan = null; public BigDecimal DiscountAmountIncGSTLessThanOrEqualTo = null; public BigDecimal DiscountAmountIncGSTNotEqualTo = null; public ArrayList DiscountAmountIncGSTBetween = null; public ArrayList DiscountAmountIncGSTIn = null; public String BankName = null; public String BankNameStartsWith = null; public String BankNameEndsWith = null; public String BankNameContains = null; public String BankNameLike = null; public ArrayList BankNameBetween = null; public ArrayList BankNameIn = null; public String BankAccountNo = null; public String BankAccountNoStartsWith = null; public String BankAccountNoEndsWith = null; public String BankAccountNoContains = null; public String BankAccountNoLike = null; public ArrayList BankAccountNoBetween = null; public ArrayList BankAccountNoIn = null; public String BSBN = null; public String BSBNStartsWith = null; public String BSBNEndsWith = null; public String BSBNContains = null; public String BSBNLike = null; public ArrayList BSBNBetween = null; public ArrayList BSBNIn = null; public String BankAccountName = null; public String BankAccountNameStartsWith = null; public String BankAccountNameEndsWith = null; public String BankAccountNameContains = null; public String BankAccountNameLike = null; public ArrayList BankAccountNameBetween = null; public ArrayList BankAccountNameIn = null; public String DiscountTaxID = null; public String DiscountTaxIDStartsWith = null; public String DiscountTaxIDEndsWith = null; public String DiscountTaxIDContains = null; public String DiscountTaxIDLike = null; public ArrayList DiscountTaxIDBetween = null; public ArrayList DiscountTaxIDIn = null; public BigDecimal DiscountTaxAmount = null; public BigDecimal DiscountTaxAmountGreaterThanOrEqualTo = null; public BigDecimal DiscountTaxAmountGreaterThan = null; public BigDecimal DiscountTaxAmountLessThan = null; public BigDecimal DiscountTaxAmountLessThanOrEqualTo = null; public BigDecimal DiscountTaxAmountNotEqualTo = null; public ArrayList DiscountTaxAmountBetween = null; public ArrayList DiscountTaxAmountIn = null; public BigDecimal DiscountTaxRate = null; public BigDecimal DiscountTaxRateGreaterThanOrEqualTo = null; public BigDecimal DiscountTaxRateGreaterThan = null; public BigDecimal DiscountTaxRateLessThan = null; public BigDecimal DiscountTaxRateLessThanOrEqualTo = null; public BigDecimal DiscountTaxRateNotEqualTo = null; public ArrayList DiscountTaxRateBetween = null; public ArrayList DiscountTaxRateIn = null; public BigDecimal AmountReconciledIncGST = null; public BigDecimal AmountReconciledIncGSTGreaterThanOrEqualTo = null; public BigDecimal AmountReconciledIncGSTGreaterThan = null; public BigDecimal AmountReconciledIncGSTLessThan = null; public BigDecimal AmountReconciledIncGSTLessThanOrEqualTo = null; public BigDecimal AmountReconciledIncGSTNotEqualTo = null; public ArrayList AmountReconciledIncGSTBetween = null; public ArrayList AmountReconciledIncGSTIn = null; public String Reference = null; public String ReferenceStartsWith = null; public String ReferenceEndsWith = null; public String ReferenceContains = null; public String ReferenceLike = null; public ArrayList ReferenceBetween = null; public ArrayList ReferenceIn = null; public String PaymentTypeID = null; public String PaymentTypeIDStartsWith = null; public String PaymentTypeIDEndsWith = null; public String PaymentTypeIDContains = null; public String PaymentTypeIDLike = null; public ArrayList PaymentTypeIDBetween = null; public ArrayList PaymentTypeIDIn = null; public String RemitNo = null; public String RemitNoStartsWith = null; public String RemitNoEndsWith = null; public String RemitNoContains = null; public String RemitNoLike = null; public ArrayList RemitNoBetween = null; public ArrayList RemitNoIn = null; public String getDirectCreditorPaymentID() { return DirectCreditorPaymentID; } public BR_DirectCreditorPaymentsQuery setDirectCreditorPaymentID(String value) { this.DirectCreditorPaymentID = value; return this; } public String getDirectCreditorPaymentIDStartsWith() { return DirectCreditorPaymentIDStartsWith; } public BR_DirectCreditorPaymentsQuery setDirectCreditorPaymentIDStartsWith(String value) { this.DirectCreditorPaymentIDStartsWith = value; return this; } public String getDirectCreditorPaymentIDEndsWith() { return DirectCreditorPaymentIDEndsWith; } public BR_DirectCreditorPaymentsQuery setDirectCreditorPaymentIDEndsWith(String value) { this.DirectCreditorPaymentIDEndsWith = value; return this; } public String getDirectCreditorPaymentIDContains() { return DirectCreditorPaymentIDContains; } public BR_DirectCreditorPaymentsQuery setDirectCreditorPaymentIDContains(String value) { this.DirectCreditorPaymentIDContains = value; return this; } public String getDirectCreditorPaymentIDLike() { return DirectCreditorPaymentIDLike; } public BR_DirectCreditorPaymentsQuery setDirectCreditorPaymentIDLike(String value) { this.DirectCreditorPaymentIDLike = value; return this; } public ArrayList getDirectCreditorPaymentIDBetween() { return DirectCreditorPaymentIDBetween; } public BR_DirectCreditorPaymentsQuery setDirectCreditorPaymentIDBetween(ArrayList value) { this.DirectCreditorPaymentIDBetween = value; return this; } public ArrayList getDirectCreditorPaymentIDIn() { return DirectCreditorPaymentIDIn; } public BR_DirectCreditorPaymentsQuery setDirectCreditorPaymentIDIn(ArrayList value) { this.DirectCreditorPaymentIDIn = value; return this; } public String getBankRecID() { return BankRecID; } public BR_DirectCreditorPaymentsQuery setBankRecID(String value) { this.BankRecID = value; return this; } public String getBankRecIDStartsWith() { return BankRecIDStartsWith; } public BR_DirectCreditorPaymentsQuery setBankRecIDStartsWith(String value) { this.BankRecIDStartsWith = value; return this; } public String getBankRecIDEndsWith() { return BankRecIDEndsWith; } public BR_DirectCreditorPaymentsQuery setBankRecIDEndsWith(String value) { this.BankRecIDEndsWith = value; return this; } public String getBankRecIDContains() { return BankRecIDContains; } public BR_DirectCreditorPaymentsQuery setBankRecIDContains(String value) { this.BankRecIDContains = value; return this; } public String getBankRecIDLike() { return BankRecIDLike; } public BR_DirectCreditorPaymentsQuery setBankRecIDLike(String value) { this.BankRecIDLike = value; return this; } public ArrayList getBankRecIDBetween() { return BankRecIDBetween; } public BR_DirectCreditorPaymentsQuery setBankRecIDBetween(ArrayList value) { this.BankRecIDBetween = value; return this; } public ArrayList getBankRecIDIn() { return BankRecIDIn; } public BR_DirectCreditorPaymentsQuery setBankRecIDIn(ArrayList value) { this.BankRecIDIn = value; return this; } public String getCreatedByStaffID() { return CreatedByStaffID; } public BR_DirectCreditorPaymentsQuery setCreatedByStaffID(String value) { this.CreatedByStaffID = value; return this; } public String getCreatedByStaffIDStartsWith() { return CreatedByStaffIDStartsWith; } public BR_DirectCreditorPaymentsQuery setCreatedByStaffIDStartsWith(String value) { this.CreatedByStaffIDStartsWith = value; return this; } public String getCreatedByStaffIDEndsWith() { return CreatedByStaffIDEndsWith; } public BR_DirectCreditorPaymentsQuery setCreatedByStaffIDEndsWith(String value) { this.CreatedByStaffIDEndsWith = value; return this; } public String getCreatedByStaffIDContains() { return CreatedByStaffIDContains; } public BR_DirectCreditorPaymentsQuery setCreatedByStaffIDContains(String value) { this.CreatedByStaffIDContains = value; return this; } public String getCreatedByStaffIDLike() { return CreatedByStaffIDLike; } public BR_DirectCreditorPaymentsQuery setCreatedByStaffIDLike(String value) { this.CreatedByStaffIDLike = value; return this; } public ArrayList getCreatedByStaffIDBetween() { return CreatedByStaffIDBetween; } public BR_DirectCreditorPaymentsQuery setCreatedByStaffIDBetween(ArrayList value) { this.CreatedByStaffIDBetween = value; return this; } public ArrayList getCreatedByStaffIDIn() { return CreatedByStaffIDIn; } public BR_DirectCreditorPaymentsQuery setCreatedByStaffIDIn(ArrayList value) { this.CreatedByStaffIDIn = value; return this; } public Date getCreatedDateTime() { return CreatedDateTime; } public BR_DirectCreditorPaymentsQuery setCreatedDateTime(Date value) { this.CreatedDateTime = value; return this; } public Date getCreatedDateTimeGreaterThanOrEqualTo() { return CreatedDateTimeGreaterThanOrEqualTo; } public BR_DirectCreditorPaymentsQuery setCreatedDateTimeGreaterThanOrEqualTo(Date value) { this.CreatedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getCreatedDateTimeGreaterThan() { return CreatedDateTimeGreaterThan; } public BR_DirectCreditorPaymentsQuery setCreatedDateTimeGreaterThan(Date value) { this.CreatedDateTimeGreaterThan = value; return this; } public Date getCreatedDateTimeLessThan() { return CreatedDateTimeLessThan; } public BR_DirectCreditorPaymentsQuery setCreatedDateTimeLessThan(Date value) { this.CreatedDateTimeLessThan = value; return this; } public Date getCreatedDateTimeLessThanOrEqualTo() { return CreatedDateTimeLessThanOrEqualTo; } public BR_DirectCreditorPaymentsQuery setCreatedDateTimeLessThanOrEqualTo(Date value) { this.CreatedDateTimeLessThanOrEqualTo = value; return this; } public Date getCreatedDateTimeNotEqualTo() { return CreatedDateTimeNotEqualTo; } public BR_DirectCreditorPaymentsQuery setCreatedDateTimeNotEqualTo(Date value) { this.CreatedDateTimeNotEqualTo = value; return this; } public ArrayList getCreatedDateTimeBetween() { return CreatedDateTimeBetween; } public BR_DirectCreditorPaymentsQuery setCreatedDateTimeBetween(ArrayList value) { this.CreatedDateTimeBetween = value; return this; } public ArrayList getCreatedDateTimeIn() { return CreatedDateTimeIn; } public BR_DirectCreditorPaymentsQuery setCreatedDateTimeIn(ArrayList value) { this.CreatedDateTimeIn = value; return this; } public String getLastSavedByStaffID() { return LastSavedByStaffID; } public BR_DirectCreditorPaymentsQuery setLastSavedByStaffID(String value) { this.LastSavedByStaffID = value; return this; } public String getLastSavedByStaffIDStartsWith() { return LastSavedByStaffIDStartsWith; } public BR_DirectCreditorPaymentsQuery setLastSavedByStaffIDStartsWith(String value) { this.LastSavedByStaffIDStartsWith = value; return this; } public String getLastSavedByStaffIDEndsWith() { return LastSavedByStaffIDEndsWith; } public BR_DirectCreditorPaymentsQuery setLastSavedByStaffIDEndsWith(String value) { this.LastSavedByStaffIDEndsWith = value; return this; } public String getLastSavedByStaffIDContains() { return LastSavedByStaffIDContains; } public BR_DirectCreditorPaymentsQuery setLastSavedByStaffIDContains(String value) { this.LastSavedByStaffIDContains = value; return this; } public String getLastSavedByStaffIDLike() { return LastSavedByStaffIDLike; } public BR_DirectCreditorPaymentsQuery setLastSavedByStaffIDLike(String value) { this.LastSavedByStaffIDLike = value; return this; } public ArrayList getLastSavedByStaffIDBetween() { return LastSavedByStaffIDBetween; } public BR_DirectCreditorPaymentsQuery setLastSavedByStaffIDBetween(ArrayList value) { this.LastSavedByStaffIDBetween = value; return this; } public ArrayList getLastSavedByStaffIDIn() { return LastSavedByStaffIDIn; } public BR_DirectCreditorPaymentsQuery setLastSavedByStaffIDIn(ArrayList value) { this.LastSavedByStaffIDIn = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public BR_DirectCreditorPaymentsQuery setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getLastSavedDateTimeGreaterThanOrEqualTo() { return LastSavedDateTimeGreaterThanOrEqualTo; } public BR_DirectCreditorPaymentsQuery setLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.LastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeGreaterThan() { return LastSavedDateTimeGreaterThan; } public BR_DirectCreditorPaymentsQuery setLastSavedDateTimeGreaterThan(Date value) { this.LastSavedDateTimeGreaterThan = value; return this; } public Date getLastSavedDateTimeLessThan() { return LastSavedDateTimeLessThan; } public BR_DirectCreditorPaymentsQuery setLastSavedDateTimeLessThan(Date value) { this.LastSavedDateTimeLessThan = value; return this; } public Date getLastSavedDateTimeLessThanOrEqualTo() { return LastSavedDateTimeLessThanOrEqualTo; } public BR_DirectCreditorPaymentsQuery setLastSavedDateTimeLessThanOrEqualTo(Date value) { this.LastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeNotEqualTo() { return LastSavedDateTimeNotEqualTo; } public BR_DirectCreditorPaymentsQuery setLastSavedDateTimeNotEqualTo(Date value) { this.LastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getLastSavedDateTimeBetween() { return LastSavedDateTimeBetween; } public BR_DirectCreditorPaymentsQuery setLastSavedDateTimeBetween(ArrayList value) { this.LastSavedDateTimeBetween = value; return this; } public ArrayList getLastSavedDateTimeIn() { return LastSavedDateTimeIn; } public BR_DirectCreditorPaymentsQuery setLastSavedDateTimeIn(ArrayList value) { this.LastSavedDateTimeIn = value; return this; } public Integer getLineNumber() { return LineNumber; } public BR_DirectCreditorPaymentsQuery setLineNumber(Integer value) { this.LineNumber = value; return this; } public Integer getLineNumberGreaterThanOrEqualTo() { return LineNumberGreaterThanOrEqualTo; } public BR_DirectCreditorPaymentsQuery setLineNumberGreaterThanOrEqualTo(Integer value) { this.LineNumberGreaterThanOrEqualTo = value; return this; } public Integer getLineNumberGreaterThan() { return LineNumberGreaterThan; } public BR_DirectCreditorPaymentsQuery setLineNumberGreaterThan(Integer value) { this.LineNumberGreaterThan = value; return this; } public Integer getLineNumberLessThan() { return LineNumberLessThan; } public BR_DirectCreditorPaymentsQuery setLineNumberLessThan(Integer value) { this.LineNumberLessThan = value; return this; } public Integer getLineNumberLessThanOrEqualTo() { return LineNumberLessThanOrEqualTo; } public BR_DirectCreditorPaymentsQuery setLineNumberLessThanOrEqualTo(Integer value) { this.LineNumberLessThanOrEqualTo = value; return this; } public Integer getLineNumberNotEqualTo() { return LineNumberNotEqualTo; } public BR_DirectCreditorPaymentsQuery setLineNumberNotEqualTo(Integer value) { this.LineNumberNotEqualTo = value; return this; } public ArrayList getLineNumberBetween() { return LineNumberBetween; } public BR_DirectCreditorPaymentsQuery setLineNumberBetween(ArrayList value) { this.LineNumberBetween = value; return this; } public ArrayList getLineNumberIn() { return LineNumberIn; } public BR_DirectCreditorPaymentsQuery setLineNumberIn(ArrayList value) { this.LineNumberIn = value; return this; } public Date getTransactionDateTime() { return TransactionDateTime; } public BR_DirectCreditorPaymentsQuery setTransactionDateTime(Date value) { this.TransactionDateTime = value; return this; } public Date getTransactionDateTimeGreaterThanOrEqualTo() { return TransactionDateTimeGreaterThanOrEqualTo; } public BR_DirectCreditorPaymentsQuery setTransactionDateTimeGreaterThanOrEqualTo(Date value) { this.TransactionDateTimeGreaterThanOrEqualTo = value; return this; } public Date getTransactionDateTimeGreaterThan() { return TransactionDateTimeGreaterThan; } public BR_DirectCreditorPaymentsQuery setTransactionDateTimeGreaterThan(Date value) { this.TransactionDateTimeGreaterThan = value; return this; } public Date getTransactionDateTimeLessThan() { return TransactionDateTimeLessThan; } public BR_DirectCreditorPaymentsQuery setTransactionDateTimeLessThan(Date value) { this.TransactionDateTimeLessThan = value; return this; } public Date getTransactionDateTimeLessThanOrEqualTo() { return TransactionDateTimeLessThanOrEqualTo; } public BR_DirectCreditorPaymentsQuery setTransactionDateTimeLessThanOrEqualTo(Date value) { this.TransactionDateTimeLessThanOrEqualTo = value; return this; } public Date getTransactionDateTimeNotEqualTo() { return TransactionDateTimeNotEqualTo; } public BR_DirectCreditorPaymentsQuery setTransactionDateTimeNotEqualTo(Date value) { this.TransactionDateTimeNotEqualTo = value; return this; } public ArrayList getTransactionDateTimeBetween() { return TransactionDateTimeBetween; } public BR_DirectCreditorPaymentsQuery setTransactionDateTimeBetween(ArrayList value) { this.TransactionDateTimeBetween = value; return this; } public ArrayList getTransactionDateTimeIn() { return TransactionDateTimeIn; } public BR_DirectCreditorPaymentsQuery setTransactionDateTimeIn(ArrayList value) { this.TransactionDateTimeIn = value; return this; } public BigDecimal getAmountIncGST() { return AmountIncGST; } public BR_DirectCreditorPaymentsQuery setAmountIncGST(BigDecimal value) { this.AmountIncGST = value; return this; } public BigDecimal getAmountIncGSTGreaterThanOrEqualTo() { return AmountIncGSTGreaterThanOrEqualTo; } public BR_DirectCreditorPaymentsQuery setAmountIncGSTGreaterThanOrEqualTo(BigDecimal value) { this.AmountIncGSTGreaterThanOrEqualTo = value; return this; } public BigDecimal getAmountIncGSTGreaterThan() { return AmountIncGSTGreaterThan; } public BR_DirectCreditorPaymentsQuery setAmountIncGSTGreaterThan(BigDecimal value) { this.AmountIncGSTGreaterThan = value; return this; } public BigDecimal getAmountIncGSTLessThan() { return AmountIncGSTLessThan; } public BR_DirectCreditorPaymentsQuery setAmountIncGSTLessThan(BigDecimal value) { this.AmountIncGSTLessThan = value; return this; } public BigDecimal getAmountIncGSTLessThanOrEqualTo() { return AmountIncGSTLessThanOrEqualTo; } public BR_DirectCreditorPaymentsQuery setAmountIncGSTLessThanOrEqualTo(BigDecimal value) { this.AmountIncGSTLessThanOrEqualTo = value; return this; } public BigDecimal getAmountIncGSTNotEqualTo() { return AmountIncGSTNotEqualTo; } public BR_DirectCreditorPaymentsQuery setAmountIncGSTNotEqualTo(BigDecimal value) { this.AmountIncGSTNotEqualTo = value; return this; } public ArrayList getAmountIncGSTBetween() { return AmountIncGSTBetween; } public BR_DirectCreditorPaymentsQuery setAmountIncGSTBetween(ArrayList value) { this.AmountIncGSTBetween = value; return this; } public ArrayList getAmountIncGSTIn() { return AmountIncGSTIn; } public BR_DirectCreditorPaymentsQuery setAmountIncGSTIn(ArrayList value) { this.AmountIncGSTIn = value; return this; } public Short getDebitCredit() { return DebitCredit; } public BR_DirectCreditorPaymentsQuery setDebitCredit(Short value) { this.DebitCredit = value; return this; } public Short getDebitCreditGreaterThanOrEqualTo() { return DebitCreditGreaterThanOrEqualTo; } public BR_DirectCreditorPaymentsQuery setDebitCreditGreaterThanOrEqualTo(Short value) { this.DebitCreditGreaterThanOrEqualTo = value; return this; } public Short getDebitCreditGreaterThan() { return DebitCreditGreaterThan; } public BR_DirectCreditorPaymentsQuery setDebitCreditGreaterThan(Short value) { this.DebitCreditGreaterThan = value; return this; } public Short getDebitCreditLessThan() { return DebitCreditLessThan; } public BR_DirectCreditorPaymentsQuery setDebitCreditLessThan(Short value) { this.DebitCreditLessThan = value; return this; } public Short getDebitCreditLessThanOrEqualTo() { return DebitCreditLessThanOrEqualTo; } public BR_DirectCreditorPaymentsQuery setDebitCreditLessThanOrEqualTo(Short value) { this.DebitCreditLessThanOrEqualTo = value; return this; } public Short getDebitCreditNotEqualTo() { return DebitCreditNotEqualTo; } public BR_DirectCreditorPaymentsQuery setDebitCreditNotEqualTo(Short value) { this.DebitCreditNotEqualTo = value; return this; } public ArrayList getDebitCreditBetween() { return DebitCreditBetween; } public BR_DirectCreditorPaymentsQuery setDebitCreditBetween(ArrayList value) { this.DebitCreditBetween = value; return this; } public ArrayList getDebitCreditIn() { return DebitCreditIn; } public BR_DirectCreditorPaymentsQuery setDebitCreditIn(ArrayList value) { this.DebitCreditIn = value; return this; } public String getRemark() { return Remark; } public BR_DirectCreditorPaymentsQuery setRemark(String value) { this.Remark = value; return this; } public String getRemarkStartsWith() { return RemarkStartsWith; } public BR_DirectCreditorPaymentsQuery setRemarkStartsWith(String value) { this.RemarkStartsWith = value; return this; } public String getRemarkEndsWith() { return RemarkEndsWith; } public BR_DirectCreditorPaymentsQuery setRemarkEndsWith(String value) { this.RemarkEndsWith = value; return this; } public String getRemarkContains() { return RemarkContains; } public BR_DirectCreditorPaymentsQuery setRemarkContains(String value) { this.RemarkContains = value; return this; } public String getRemarkLike() { return RemarkLike; } public BR_DirectCreditorPaymentsQuery setRemarkLike(String value) { this.RemarkLike = value; return this; } public ArrayList getRemarkBetween() { return RemarkBetween; } public BR_DirectCreditorPaymentsQuery setRemarkBetween(ArrayList value) { this.RemarkBetween = value; return this; } public ArrayList getRemarkIn() { return RemarkIn; } public BR_DirectCreditorPaymentsQuery setRemarkIn(ArrayList value) { this.RemarkIn = value; return this; } public Short getStatus() { return Status; } public BR_DirectCreditorPaymentsQuery setStatus(Short value) { this.Status = value; return this; } public Short getStatusGreaterThanOrEqualTo() { return StatusGreaterThanOrEqualTo; } public BR_DirectCreditorPaymentsQuery setStatusGreaterThanOrEqualTo(Short value) { this.StatusGreaterThanOrEqualTo = value; return this; } public Short getStatusGreaterThan() { return StatusGreaterThan; } public BR_DirectCreditorPaymentsQuery setStatusGreaterThan(Short value) { this.StatusGreaterThan = value; return this; } public Short getStatusLessThan() { return StatusLessThan; } public BR_DirectCreditorPaymentsQuery setStatusLessThan(Short value) { this.StatusLessThan = value; return this; } public Short getStatusLessThanOrEqualTo() { return StatusLessThanOrEqualTo; } public BR_DirectCreditorPaymentsQuery setStatusLessThanOrEqualTo(Short value) { this.StatusLessThanOrEqualTo = value; return this; } public Short getStatusNotEqualTo() { return StatusNotEqualTo; } public BR_DirectCreditorPaymentsQuery setStatusNotEqualTo(Short value) { this.StatusNotEqualTo = value; return this; } public ArrayList getStatusBetween() { return StatusBetween; } public BR_DirectCreditorPaymentsQuery setStatusBetween(ArrayList value) { this.StatusBetween = value; return this; } public ArrayList getStatusIn() { return StatusIn; } public BR_DirectCreditorPaymentsQuery setStatusIn(ArrayList value) { this.StatusIn = value; return this; } public String getGlLedgerID() { return GLLedgerID; } public BR_DirectCreditorPaymentsQuery setGlLedgerID(String value) { this.GLLedgerID = value; return this; } public String getGlLedgerIDStartsWith() { return GLLedgerIDStartsWith; } public BR_DirectCreditorPaymentsQuery setGlLedgerIDStartsWith(String value) { this.GLLedgerIDStartsWith = value; return this; } public String getGlLedgerIDEndsWith() { return GLLedgerIDEndsWith; } public BR_DirectCreditorPaymentsQuery setGlLedgerIDEndsWith(String value) { this.GLLedgerIDEndsWith = value; return this; } public String getGlLedgerIDContains() { return GLLedgerIDContains; } public BR_DirectCreditorPaymentsQuery setGlLedgerIDContains(String value) { this.GLLedgerIDContains = value; return this; } public String getGlLedgerIDLike() { return GLLedgerIDLike; } public BR_DirectCreditorPaymentsQuery setGlLedgerIDLike(String value) { this.GLLedgerIDLike = value; return this; } public ArrayList getGlLedgerIDBetween() { return GLLedgerIDBetween; } public BR_DirectCreditorPaymentsQuery setGlLedgerIDBetween(ArrayList value) { this.GLLedgerIDBetween = value; return this; } public ArrayList getGlLedgerIDIn() { return GLLedgerIDIn; } public BR_DirectCreditorPaymentsQuery setGlLedgerIDIn(ArrayList value) { this.GLLedgerIDIn = value; return this; } public String getCreditorID() { return CreditorID; } public BR_DirectCreditorPaymentsQuery setCreditorID(String value) { this.CreditorID = value; return this; } public String getCreditorIDStartsWith() { return CreditorIDStartsWith; } public BR_DirectCreditorPaymentsQuery setCreditorIDStartsWith(String value) { this.CreditorIDStartsWith = value; return this; } public String getCreditorIDEndsWith() { return CreditorIDEndsWith; } public BR_DirectCreditorPaymentsQuery setCreditorIDEndsWith(String value) { this.CreditorIDEndsWith = value; return this; } public String getCreditorIDContains() { return CreditorIDContains; } public BR_DirectCreditorPaymentsQuery setCreditorIDContains(String value) { this.CreditorIDContains = value; return this; } public String getCreditorIDLike() { return CreditorIDLike; } public BR_DirectCreditorPaymentsQuery setCreditorIDLike(String value) { this.CreditorIDLike = value; return this; } public ArrayList getCreditorIDBetween() { return CreditorIDBetween; } public BR_DirectCreditorPaymentsQuery setCreditorIDBetween(ArrayList value) { this.CreditorIDBetween = value; return this; } public ArrayList getCreditorIDIn() { return CreditorIDIn; } public BR_DirectCreditorPaymentsQuery setCreditorIDIn(ArrayList value) { this.CreditorIDIn = value; return this; } public String getDiscountGLLedgerID() { return DiscountGLLedgerID; } public BR_DirectCreditorPaymentsQuery setDiscountGLLedgerID(String value) { this.DiscountGLLedgerID = value; return this; } public String getDiscountGLLedgerIDStartsWith() { return DiscountGLLedgerIDStartsWith; } public BR_DirectCreditorPaymentsQuery setDiscountGLLedgerIDStartsWith(String value) { this.DiscountGLLedgerIDStartsWith = value; return this; } public String getDiscountGLLedgerIDEndsWith() { return DiscountGLLedgerIDEndsWith; } public BR_DirectCreditorPaymentsQuery setDiscountGLLedgerIDEndsWith(String value) { this.DiscountGLLedgerIDEndsWith = value; return this; } public String getDiscountGLLedgerIDContains() { return DiscountGLLedgerIDContains; } public BR_DirectCreditorPaymentsQuery setDiscountGLLedgerIDContains(String value) { this.DiscountGLLedgerIDContains = value; return this; } public String getDiscountGLLedgerIDLike() { return DiscountGLLedgerIDLike; } public BR_DirectCreditorPaymentsQuery setDiscountGLLedgerIDLike(String value) { this.DiscountGLLedgerIDLike = value; return this; } public ArrayList getDiscountGLLedgerIDBetween() { return DiscountGLLedgerIDBetween; } public BR_DirectCreditorPaymentsQuery setDiscountGLLedgerIDBetween(ArrayList value) { this.DiscountGLLedgerIDBetween = value; return this; } public ArrayList getDiscountGLLedgerIDIn() { return DiscountGLLedgerIDIn; } public BR_DirectCreditorPaymentsQuery setDiscountGLLedgerIDIn(ArrayList value) { this.DiscountGLLedgerIDIn = value; return this; } public BigDecimal getDiscountAmountIncGST() { return DiscountAmountIncGST; } public BR_DirectCreditorPaymentsQuery setDiscountAmountIncGST(BigDecimal value) { this.DiscountAmountIncGST = value; return this; } public BigDecimal getDiscountAmountIncGSTGreaterThanOrEqualTo() { return DiscountAmountIncGSTGreaterThanOrEqualTo; } public BR_DirectCreditorPaymentsQuery setDiscountAmountIncGSTGreaterThanOrEqualTo(BigDecimal value) { this.DiscountAmountIncGSTGreaterThanOrEqualTo = value; return this; } public BigDecimal getDiscountAmountIncGSTGreaterThan() { return DiscountAmountIncGSTGreaterThan; } public BR_DirectCreditorPaymentsQuery setDiscountAmountIncGSTGreaterThan(BigDecimal value) { this.DiscountAmountIncGSTGreaterThan = value; return this; } public BigDecimal getDiscountAmountIncGSTLessThan() { return DiscountAmountIncGSTLessThan; } public BR_DirectCreditorPaymentsQuery setDiscountAmountIncGSTLessThan(BigDecimal value) { this.DiscountAmountIncGSTLessThan = value; return this; } public BigDecimal getDiscountAmountIncGSTLessThanOrEqualTo() { return DiscountAmountIncGSTLessThanOrEqualTo; } public BR_DirectCreditorPaymentsQuery setDiscountAmountIncGSTLessThanOrEqualTo(BigDecimal value) { this.DiscountAmountIncGSTLessThanOrEqualTo = value; return this; } public BigDecimal getDiscountAmountIncGSTNotEqualTo() { return DiscountAmountIncGSTNotEqualTo; } public BR_DirectCreditorPaymentsQuery setDiscountAmountIncGSTNotEqualTo(BigDecimal value) { this.DiscountAmountIncGSTNotEqualTo = value; return this; } public ArrayList getDiscountAmountIncGSTBetween() { return DiscountAmountIncGSTBetween; } public BR_DirectCreditorPaymentsQuery setDiscountAmountIncGSTBetween(ArrayList value) { this.DiscountAmountIncGSTBetween = value; return this; } public ArrayList getDiscountAmountIncGSTIn() { return DiscountAmountIncGSTIn; } public BR_DirectCreditorPaymentsQuery setDiscountAmountIncGSTIn(ArrayList value) { this.DiscountAmountIncGSTIn = value; return this; } public String getBankName() { return BankName; } public BR_DirectCreditorPaymentsQuery setBankName(String value) { this.BankName = value; return this; } public String getBankNameStartsWith() { return BankNameStartsWith; } public BR_DirectCreditorPaymentsQuery setBankNameStartsWith(String value) { this.BankNameStartsWith = value; return this; } public String getBankNameEndsWith() { return BankNameEndsWith; } public BR_DirectCreditorPaymentsQuery setBankNameEndsWith(String value) { this.BankNameEndsWith = value; return this; } public String getBankNameContains() { return BankNameContains; } public BR_DirectCreditorPaymentsQuery setBankNameContains(String value) { this.BankNameContains = value; return this; } public String getBankNameLike() { return BankNameLike; } public BR_DirectCreditorPaymentsQuery setBankNameLike(String value) { this.BankNameLike = value; return this; } public ArrayList getBankNameBetween() { return BankNameBetween; } public BR_DirectCreditorPaymentsQuery setBankNameBetween(ArrayList value) { this.BankNameBetween = value; return this; } public ArrayList getBankNameIn() { return BankNameIn; } public BR_DirectCreditorPaymentsQuery setBankNameIn(ArrayList value) { this.BankNameIn = value; return this; } public String getBankAccountNo() { return BankAccountNo; } public BR_DirectCreditorPaymentsQuery setBankAccountNo(String value) { this.BankAccountNo = value; return this; } public String getBankAccountNoStartsWith() { return BankAccountNoStartsWith; } public BR_DirectCreditorPaymentsQuery setBankAccountNoStartsWith(String value) { this.BankAccountNoStartsWith = value; return this; } public String getBankAccountNoEndsWith() { return BankAccountNoEndsWith; } public BR_DirectCreditorPaymentsQuery setBankAccountNoEndsWith(String value) { this.BankAccountNoEndsWith = value; return this; } public String getBankAccountNoContains() { return BankAccountNoContains; } public BR_DirectCreditorPaymentsQuery setBankAccountNoContains(String value) { this.BankAccountNoContains = value; return this; } public String getBankAccountNoLike() { return BankAccountNoLike; } public BR_DirectCreditorPaymentsQuery setBankAccountNoLike(String value) { this.BankAccountNoLike = value; return this; } public ArrayList getBankAccountNoBetween() { return BankAccountNoBetween; } public BR_DirectCreditorPaymentsQuery setBankAccountNoBetween(ArrayList value) { this.BankAccountNoBetween = value; return this; } public ArrayList getBankAccountNoIn() { return BankAccountNoIn; } public BR_DirectCreditorPaymentsQuery setBankAccountNoIn(ArrayList value) { this.BankAccountNoIn = value; return this; } public String getBsbn() { return BSBN; } public BR_DirectCreditorPaymentsQuery setBsbn(String value) { this.BSBN = value; return this; } public String getBsbnStartsWith() { return BSBNStartsWith; } public BR_DirectCreditorPaymentsQuery setBsbnStartsWith(String value) { this.BSBNStartsWith = value; return this; } public String getBsbnEndsWith() { return BSBNEndsWith; } public BR_DirectCreditorPaymentsQuery setBsbnEndsWith(String value) { this.BSBNEndsWith = value; return this; } public String getBsbnContains() { return BSBNContains; } public BR_DirectCreditorPaymentsQuery setBsbnContains(String value) { this.BSBNContains = value; return this; } public String getBsbnLike() { return BSBNLike; } public BR_DirectCreditorPaymentsQuery setBsbnLike(String value) { this.BSBNLike = value; return this; } public ArrayList getBsbnBetween() { return BSBNBetween; } public BR_DirectCreditorPaymentsQuery setBsbnBetween(ArrayList value) { this.BSBNBetween = value; return this; } public ArrayList getBsbnIn() { return BSBNIn; } public BR_DirectCreditorPaymentsQuery setBsbnIn(ArrayList value) { this.BSBNIn = value; return this; } public String getBankAccountName() { return BankAccountName; } public BR_DirectCreditorPaymentsQuery setBankAccountName(String value) { this.BankAccountName = value; return this; } public String getBankAccountNameStartsWith() { return BankAccountNameStartsWith; } public BR_DirectCreditorPaymentsQuery setBankAccountNameStartsWith(String value) { this.BankAccountNameStartsWith = value; return this; } public String getBankAccountNameEndsWith() { return BankAccountNameEndsWith; } public BR_DirectCreditorPaymentsQuery setBankAccountNameEndsWith(String value) { this.BankAccountNameEndsWith = value; return this; } public String getBankAccountNameContains() { return BankAccountNameContains; } public BR_DirectCreditorPaymentsQuery setBankAccountNameContains(String value) { this.BankAccountNameContains = value; return this; } public String getBankAccountNameLike() { return BankAccountNameLike; } public BR_DirectCreditorPaymentsQuery setBankAccountNameLike(String value) { this.BankAccountNameLike = value; return this; } public ArrayList getBankAccountNameBetween() { return BankAccountNameBetween; } public BR_DirectCreditorPaymentsQuery setBankAccountNameBetween(ArrayList value) { this.BankAccountNameBetween = value; return this; } public ArrayList getBankAccountNameIn() { return BankAccountNameIn; } public BR_DirectCreditorPaymentsQuery setBankAccountNameIn(ArrayList value) { this.BankAccountNameIn = value; return this; } public String getDiscountTaxID() { return DiscountTaxID; } public BR_DirectCreditorPaymentsQuery setDiscountTaxID(String value) { this.DiscountTaxID = value; return this; } public String getDiscountTaxIDStartsWith() { return DiscountTaxIDStartsWith; } public BR_DirectCreditorPaymentsQuery setDiscountTaxIDStartsWith(String value) { this.DiscountTaxIDStartsWith = value; return this; } public String getDiscountTaxIDEndsWith() { return DiscountTaxIDEndsWith; } public BR_DirectCreditorPaymentsQuery setDiscountTaxIDEndsWith(String value) { this.DiscountTaxIDEndsWith = value; return this; } public String getDiscountTaxIDContains() { return DiscountTaxIDContains; } public BR_DirectCreditorPaymentsQuery setDiscountTaxIDContains(String value) { this.DiscountTaxIDContains = value; return this; } public String getDiscountTaxIDLike() { return DiscountTaxIDLike; } public BR_DirectCreditorPaymentsQuery setDiscountTaxIDLike(String value) { this.DiscountTaxIDLike = value; return this; } public ArrayList getDiscountTaxIDBetween() { return DiscountTaxIDBetween; } public BR_DirectCreditorPaymentsQuery setDiscountTaxIDBetween(ArrayList value) { this.DiscountTaxIDBetween = value; return this; } public ArrayList getDiscountTaxIDIn() { return DiscountTaxIDIn; } public BR_DirectCreditorPaymentsQuery setDiscountTaxIDIn(ArrayList value) { this.DiscountTaxIDIn = value; return this; } public BigDecimal getDiscountTaxAmount() { return DiscountTaxAmount; } public BR_DirectCreditorPaymentsQuery setDiscountTaxAmount(BigDecimal value) { this.DiscountTaxAmount = value; return this; } public BigDecimal getDiscountTaxAmountGreaterThanOrEqualTo() { return DiscountTaxAmountGreaterThanOrEqualTo; } public BR_DirectCreditorPaymentsQuery setDiscountTaxAmountGreaterThanOrEqualTo(BigDecimal value) { this.DiscountTaxAmountGreaterThanOrEqualTo = value; return this; } public BigDecimal getDiscountTaxAmountGreaterThan() { return DiscountTaxAmountGreaterThan; } public BR_DirectCreditorPaymentsQuery setDiscountTaxAmountGreaterThan(BigDecimal value) { this.DiscountTaxAmountGreaterThan = value; return this; } public BigDecimal getDiscountTaxAmountLessThan() { return DiscountTaxAmountLessThan; } public BR_DirectCreditorPaymentsQuery setDiscountTaxAmountLessThan(BigDecimal value) { this.DiscountTaxAmountLessThan = value; return this; } public BigDecimal getDiscountTaxAmountLessThanOrEqualTo() { return DiscountTaxAmountLessThanOrEqualTo; } public BR_DirectCreditorPaymentsQuery setDiscountTaxAmountLessThanOrEqualTo(BigDecimal value) { this.DiscountTaxAmountLessThanOrEqualTo = value; return this; } public BigDecimal getDiscountTaxAmountNotEqualTo() { return DiscountTaxAmountNotEqualTo; } public BR_DirectCreditorPaymentsQuery setDiscountTaxAmountNotEqualTo(BigDecimal value) { this.DiscountTaxAmountNotEqualTo = value; return this; } public ArrayList getDiscountTaxAmountBetween() { return DiscountTaxAmountBetween; } public BR_DirectCreditorPaymentsQuery setDiscountTaxAmountBetween(ArrayList value) { this.DiscountTaxAmountBetween = value; return this; } public ArrayList getDiscountTaxAmountIn() { return DiscountTaxAmountIn; } public BR_DirectCreditorPaymentsQuery setDiscountTaxAmountIn(ArrayList value) { this.DiscountTaxAmountIn = value; return this; } public BigDecimal getDiscountTaxRate() { return DiscountTaxRate; } public BR_DirectCreditorPaymentsQuery setDiscountTaxRate(BigDecimal value) { this.DiscountTaxRate = value; return this; } public BigDecimal getDiscountTaxRateGreaterThanOrEqualTo() { return DiscountTaxRateGreaterThanOrEqualTo; } public BR_DirectCreditorPaymentsQuery setDiscountTaxRateGreaterThanOrEqualTo(BigDecimal value) { this.DiscountTaxRateGreaterThanOrEqualTo = value; return this; } public BigDecimal getDiscountTaxRateGreaterThan() { return DiscountTaxRateGreaterThan; } public BR_DirectCreditorPaymentsQuery setDiscountTaxRateGreaterThan(BigDecimal value) { this.DiscountTaxRateGreaterThan = value; return this; } public BigDecimal getDiscountTaxRateLessThan() { return DiscountTaxRateLessThan; } public BR_DirectCreditorPaymentsQuery setDiscountTaxRateLessThan(BigDecimal value) { this.DiscountTaxRateLessThan = value; return this; } public BigDecimal getDiscountTaxRateLessThanOrEqualTo() { return DiscountTaxRateLessThanOrEqualTo; } public BR_DirectCreditorPaymentsQuery setDiscountTaxRateLessThanOrEqualTo(BigDecimal value) { this.DiscountTaxRateLessThanOrEqualTo = value; return this; } public BigDecimal getDiscountTaxRateNotEqualTo() { return DiscountTaxRateNotEqualTo; } public BR_DirectCreditorPaymentsQuery setDiscountTaxRateNotEqualTo(BigDecimal value) { this.DiscountTaxRateNotEqualTo = value; return this; } public ArrayList getDiscountTaxRateBetween() { return DiscountTaxRateBetween; } public BR_DirectCreditorPaymentsQuery setDiscountTaxRateBetween(ArrayList value) { this.DiscountTaxRateBetween = value; return this; } public ArrayList getDiscountTaxRateIn() { return DiscountTaxRateIn; } public BR_DirectCreditorPaymentsQuery setDiscountTaxRateIn(ArrayList value) { this.DiscountTaxRateIn = value; return this; } public BigDecimal getAmountReconciledIncGST() { return AmountReconciledIncGST; } public BR_DirectCreditorPaymentsQuery setAmountReconciledIncGST(BigDecimal value) { this.AmountReconciledIncGST = value; return this; } public BigDecimal getAmountReconciledIncGSTGreaterThanOrEqualTo() { return AmountReconciledIncGSTGreaterThanOrEqualTo; } public BR_DirectCreditorPaymentsQuery setAmountReconciledIncGSTGreaterThanOrEqualTo(BigDecimal value) { this.AmountReconciledIncGSTGreaterThanOrEqualTo = value; return this; } public BigDecimal getAmountReconciledIncGSTGreaterThan() { return AmountReconciledIncGSTGreaterThan; } public BR_DirectCreditorPaymentsQuery setAmountReconciledIncGSTGreaterThan(BigDecimal value) { this.AmountReconciledIncGSTGreaterThan = value; return this; } public BigDecimal getAmountReconciledIncGSTLessThan() { return AmountReconciledIncGSTLessThan; } public BR_DirectCreditorPaymentsQuery setAmountReconciledIncGSTLessThan(BigDecimal value) { this.AmountReconciledIncGSTLessThan = value; return this; } public BigDecimal getAmountReconciledIncGSTLessThanOrEqualTo() { return AmountReconciledIncGSTLessThanOrEqualTo; } public BR_DirectCreditorPaymentsQuery setAmountReconciledIncGSTLessThanOrEqualTo(BigDecimal value) { this.AmountReconciledIncGSTLessThanOrEqualTo = value; return this; } public BigDecimal getAmountReconciledIncGSTNotEqualTo() { return AmountReconciledIncGSTNotEqualTo; } public BR_DirectCreditorPaymentsQuery setAmountReconciledIncGSTNotEqualTo(BigDecimal value) { this.AmountReconciledIncGSTNotEqualTo = value; return this; } public ArrayList getAmountReconciledIncGSTBetween() { return AmountReconciledIncGSTBetween; } public BR_DirectCreditorPaymentsQuery setAmountReconciledIncGSTBetween(ArrayList value) { this.AmountReconciledIncGSTBetween = value; return this; } public ArrayList getAmountReconciledIncGSTIn() { return AmountReconciledIncGSTIn; } public BR_DirectCreditorPaymentsQuery setAmountReconciledIncGSTIn(ArrayList value) { this.AmountReconciledIncGSTIn = value; return this; } public String getReference() { return Reference; } public BR_DirectCreditorPaymentsQuery setReference(String value) { this.Reference = value; return this; } public String getReferenceStartsWith() { return ReferenceStartsWith; } public BR_DirectCreditorPaymentsQuery setReferenceStartsWith(String value) { this.ReferenceStartsWith = value; return this; } public String getReferenceEndsWith() { return ReferenceEndsWith; } public BR_DirectCreditorPaymentsQuery setReferenceEndsWith(String value) { this.ReferenceEndsWith = value; return this; } public String getReferenceContains() { return ReferenceContains; } public BR_DirectCreditorPaymentsQuery setReferenceContains(String value) { this.ReferenceContains = value; return this; } public String getReferenceLike() { return ReferenceLike; } public BR_DirectCreditorPaymentsQuery setReferenceLike(String value) { this.ReferenceLike = value; return this; } public ArrayList getReferenceBetween() { return ReferenceBetween; } public BR_DirectCreditorPaymentsQuery setReferenceBetween(ArrayList value) { this.ReferenceBetween = value; return this; } public ArrayList getReferenceIn() { return ReferenceIn; } public BR_DirectCreditorPaymentsQuery setReferenceIn(ArrayList value) { this.ReferenceIn = value; return this; } public String getPaymentTypeID() { return PaymentTypeID; } public BR_DirectCreditorPaymentsQuery setPaymentTypeID(String value) { this.PaymentTypeID = value; return this; } public String getPaymentTypeIDStartsWith() { return PaymentTypeIDStartsWith; } public BR_DirectCreditorPaymentsQuery setPaymentTypeIDStartsWith(String value) { this.PaymentTypeIDStartsWith = value; return this; } public String getPaymentTypeIDEndsWith() { return PaymentTypeIDEndsWith; } public BR_DirectCreditorPaymentsQuery setPaymentTypeIDEndsWith(String value) { this.PaymentTypeIDEndsWith = value; return this; } public String getPaymentTypeIDContains() { return PaymentTypeIDContains; } public BR_DirectCreditorPaymentsQuery setPaymentTypeIDContains(String value) { this.PaymentTypeIDContains = value; return this; } public String getPaymentTypeIDLike() { return PaymentTypeIDLike; } public BR_DirectCreditorPaymentsQuery setPaymentTypeIDLike(String value) { this.PaymentTypeIDLike = value; return this; } public ArrayList getPaymentTypeIDBetween() { return PaymentTypeIDBetween; } public BR_DirectCreditorPaymentsQuery setPaymentTypeIDBetween(ArrayList value) { this.PaymentTypeIDBetween = value; return this; } public ArrayList getPaymentTypeIDIn() { return PaymentTypeIDIn; } public BR_DirectCreditorPaymentsQuery setPaymentTypeIDIn(ArrayList value) { this.PaymentTypeIDIn = value; return this; } public String getRemitNo() { return RemitNo; } public BR_DirectCreditorPaymentsQuery setRemitNo(String value) { this.RemitNo = value; return this; } public String getRemitNoStartsWith() { return RemitNoStartsWith; } public BR_DirectCreditorPaymentsQuery setRemitNoStartsWith(String value) { this.RemitNoStartsWith = value; return this; } public String getRemitNoEndsWith() { return RemitNoEndsWith; } public BR_DirectCreditorPaymentsQuery setRemitNoEndsWith(String value) { this.RemitNoEndsWith = value; return this; } public String getRemitNoContains() { return RemitNoContains; } public BR_DirectCreditorPaymentsQuery setRemitNoContains(String value) { this.RemitNoContains = value; return this; } public String getRemitNoLike() { return RemitNoLike; } public BR_DirectCreditorPaymentsQuery setRemitNoLike(String value) { this.RemitNoLike = value; return this; } public ArrayList getRemitNoBetween() { return RemitNoBetween; } public BR_DirectCreditorPaymentsQuery setRemitNoBetween(ArrayList value) { this.RemitNoBetween = value; return this; } public ArrayList getRemitNoIn() { return RemitNoIn; } public BR_DirectCreditorPaymentsQuery setRemitNoIn(ArrayList value) { this.RemitNoIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class BR_DirectCreditorReceiptsQuery extends QueryDb implements IReturn> { public String DirectCreditorReceiptID = null; public String DirectCreditorReceiptIDStartsWith = null; public String DirectCreditorReceiptIDEndsWith = null; public String DirectCreditorReceiptIDContains = null; public String DirectCreditorReceiptIDLike = null; public ArrayList DirectCreditorReceiptIDBetween = null; public ArrayList DirectCreditorReceiptIDIn = null; public String BankRecID = null; public String BankRecIDStartsWith = null; public String BankRecIDEndsWith = null; public String BankRecIDContains = null; public String BankRecIDLike = null; public ArrayList BankRecIDBetween = null; public ArrayList BankRecIDIn = null; public String CreatedByStaffID = null; public String CreatedByStaffIDStartsWith = null; public String CreatedByStaffIDEndsWith = null; public String CreatedByStaffIDContains = null; public String CreatedByStaffIDLike = null; public ArrayList CreatedByStaffIDBetween = null; public ArrayList CreatedByStaffIDIn = null; public Date CreatedDateTime = null; public Date CreatedDateTimeGreaterThanOrEqualTo = null; public Date CreatedDateTimeGreaterThan = null; public Date CreatedDateTimeLessThan = null; public Date CreatedDateTimeLessThanOrEqualTo = null; public Date CreatedDateTimeNotEqualTo = null; public ArrayList CreatedDateTimeBetween = null; public ArrayList CreatedDateTimeIn = null; public String LastSavedByStaffID = null; public String LastSavedByStaffIDStartsWith = null; public String LastSavedByStaffIDEndsWith = null; public String LastSavedByStaffIDContains = null; public String LastSavedByStaffIDLike = null; public ArrayList LastSavedByStaffIDBetween = null; public ArrayList LastSavedByStaffIDIn = null; public Date LastSavedDateTime = null; public Date LastSavedDateTimeGreaterThanOrEqualTo = null; public Date LastSavedDateTimeGreaterThan = null; public Date LastSavedDateTimeLessThan = null; public Date LastSavedDateTimeLessThanOrEqualTo = null; public Date LastSavedDateTimeNotEqualTo = null; public ArrayList LastSavedDateTimeBetween = null; public ArrayList LastSavedDateTimeIn = null; public Integer LineNumber = null; public Integer LineNumberGreaterThanOrEqualTo = null; public Integer LineNumberGreaterThan = null; public Integer LineNumberLessThan = null; public Integer LineNumberLessThanOrEqualTo = null; public Integer LineNumberNotEqualTo = null; public ArrayList LineNumberBetween = null; public ArrayList LineNumberIn = null; public Date TransactionDateTime = null; public Date TransactionDateTimeGreaterThanOrEqualTo = null; public Date TransactionDateTimeGreaterThan = null; public Date TransactionDateTimeLessThan = null; public Date TransactionDateTimeLessThanOrEqualTo = null; public Date TransactionDateTimeNotEqualTo = null; public ArrayList TransactionDateTimeBetween = null; public ArrayList TransactionDateTimeIn = null; public BigDecimal AmountIncGST = null; public BigDecimal AmountIncGSTGreaterThanOrEqualTo = null; public BigDecimal AmountIncGSTGreaterThan = null; public BigDecimal AmountIncGSTLessThan = null; public BigDecimal AmountIncGSTLessThanOrEqualTo = null; public BigDecimal AmountIncGSTNotEqualTo = null; public ArrayList AmountIncGSTBetween = null; public ArrayList AmountIncGSTIn = null; public Short DebitCredit = null; public Short DebitCreditGreaterThanOrEqualTo = null; public Short DebitCreditGreaterThan = null; public Short DebitCreditLessThan = null; public Short DebitCreditLessThanOrEqualTo = null; public Short DebitCreditNotEqualTo = null; public ArrayList DebitCreditBetween = null; public ArrayList DebitCreditIn = null; public String Remark = null; public String RemarkStartsWith = null; public String RemarkEndsWith = null; public String RemarkContains = null; public String RemarkLike = null; public ArrayList RemarkBetween = null; public ArrayList RemarkIn = null; public Short Status = null; public Short StatusGreaterThanOrEqualTo = null; public Short StatusGreaterThan = null; public Short StatusLessThan = null; public Short StatusLessThanOrEqualTo = null; public Short StatusNotEqualTo = null; public ArrayList StatusBetween = null; public ArrayList StatusIn = null; public String GLLedgerID = null; public String GLLedgerIDStartsWith = null; public String GLLedgerIDEndsWith = null; public String GLLedgerIDContains = null; public String GLLedgerIDLike = null; public ArrayList GLLedgerIDBetween = null; public ArrayList GLLedgerIDIn = null; public String CreditorID = null; public String CreditorIDStartsWith = null; public String CreditorIDEndsWith = null; public String CreditorIDContains = null; public String CreditorIDLike = null; public ArrayList CreditorIDBetween = null; public ArrayList CreditorIDIn = null; public String BankName = null; public String BankNameStartsWith = null; public String BankNameEndsWith = null; public String BankNameContains = null; public String BankNameLike = null; public ArrayList BankNameBetween = null; public ArrayList BankNameIn = null; public String BankAccountNo = null; public String BankAccountNoStartsWith = null; public String BankAccountNoEndsWith = null; public String BankAccountNoContains = null; public String BankAccountNoLike = null; public ArrayList BankAccountNoBetween = null; public ArrayList BankAccountNoIn = null; public String BSBN = null; public String BSBNStartsWith = null; public String BSBNEndsWith = null; public String BSBNContains = null; public String BSBNLike = null; public ArrayList BSBNBetween = null; public ArrayList BSBNIn = null; public String BankAccountName = null; public String BankAccountNameStartsWith = null; public String BankAccountNameEndsWith = null; public String BankAccountNameContains = null; public String BankAccountNameLike = null; public ArrayList BankAccountNameBetween = null; public ArrayList BankAccountNameIn = null; public BigDecimal AmountReconciledIncGST = null; public BigDecimal AmountReconciledIncGSTGreaterThanOrEqualTo = null; public BigDecimal AmountReconciledIncGSTGreaterThan = null; public BigDecimal AmountReconciledIncGSTLessThan = null; public BigDecimal AmountReconciledIncGSTLessThanOrEqualTo = null; public BigDecimal AmountReconciledIncGSTNotEqualTo = null; public ArrayList AmountReconciledIncGSTBetween = null; public ArrayList AmountReconciledIncGSTIn = null; public String Reference = null; public String ReferenceStartsWith = null; public String ReferenceEndsWith = null; public String ReferenceContains = null; public String ReferenceLike = null; public ArrayList ReferenceBetween = null; public ArrayList ReferenceIn = null; public String TaxID = null; public String TaxIDStartsWith = null; public String TaxIDEndsWith = null; public String TaxIDContains = null; public String TaxIDLike = null; public ArrayList TaxIDBetween = null; public ArrayList TaxIDIn = null; public BigDecimal TaxRate = null; public BigDecimal TaxRateGreaterThanOrEqualTo = null; public BigDecimal TaxRateGreaterThan = null; public BigDecimal TaxRateLessThan = null; public BigDecimal TaxRateLessThanOrEqualTo = null; public BigDecimal TaxRateNotEqualTo = null; public ArrayList TaxRateBetween = null; public ArrayList TaxRateIn = null; public BigDecimal TaxAmount = null; public BigDecimal TaxAmountGreaterThanOrEqualTo = null; public BigDecimal TaxAmountGreaterThan = null; public BigDecimal TaxAmountLessThan = null; public BigDecimal TaxAmountLessThanOrEqualTo = null; public BigDecimal TaxAmountNotEqualTo = null; public ArrayList TaxAmountBetween = null; public ArrayList TaxAmountIn = null; public String ReceiptTypeID = null; public String ReceiptTypeIDStartsWith = null; public String ReceiptTypeIDEndsWith = null; public String ReceiptTypeIDContains = null; public String ReceiptTypeIDLike = null; public ArrayList ReceiptTypeIDBetween = null; public ArrayList ReceiptTypeIDIn = null; public String InvoiceNo = null; public String InvoiceNoStartsWith = null; public String InvoiceNoEndsWith = null; public String InvoiceNoContains = null; public String InvoiceNoLike = null; public ArrayList InvoiceNoBetween = null; public ArrayList InvoiceNoIn = null; public String getDirectCreditorReceiptID() { return DirectCreditorReceiptID; } public BR_DirectCreditorReceiptsQuery setDirectCreditorReceiptID(String value) { this.DirectCreditorReceiptID = value; return this; } public String getDirectCreditorReceiptIDStartsWith() { return DirectCreditorReceiptIDStartsWith; } public BR_DirectCreditorReceiptsQuery setDirectCreditorReceiptIDStartsWith(String value) { this.DirectCreditorReceiptIDStartsWith = value; return this; } public String getDirectCreditorReceiptIDEndsWith() { return DirectCreditorReceiptIDEndsWith; } public BR_DirectCreditorReceiptsQuery setDirectCreditorReceiptIDEndsWith(String value) { this.DirectCreditorReceiptIDEndsWith = value; return this; } public String getDirectCreditorReceiptIDContains() { return DirectCreditorReceiptIDContains; } public BR_DirectCreditorReceiptsQuery setDirectCreditorReceiptIDContains(String value) { this.DirectCreditorReceiptIDContains = value; return this; } public String getDirectCreditorReceiptIDLike() { return DirectCreditorReceiptIDLike; } public BR_DirectCreditorReceiptsQuery setDirectCreditorReceiptIDLike(String value) { this.DirectCreditorReceiptIDLike = value; return this; } public ArrayList getDirectCreditorReceiptIDBetween() { return DirectCreditorReceiptIDBetween; } public BR_DirectCreditorReceiptsQuery setDirectCreditorReceiptIDBetween(ArrayList value) { this.DirectCreditorReceiptIDBetween = value; return this; } public ArrayList getDirectCreditorReceiptIDIn() { return DirectCreditorReceiptIDIn; } public BR_DirectCreditorReceiptsQuery setDirectCreditorReceiptIDIn(ArrayList value) { this.DirectCreditorReceiptIDIn = value; return this; } public String getBankRecID() { return BankRecID; } public BR_DirectCreditorReceiptsQuery setBankRecID(String value) { this.BankRecID = value; return this; } public String getBankRecIDStartsWith() { return BankRecIDStartsWith; } public BR_DirectCreditorReceiptsQuery setBankRecIDStartsWith(String value) { this.BankRecIDStartsWith = value; return this; } public String getBankRecIDEndsWith() { return BankRecIDEndsWith; } public BR_DirectCreditorReceiptsQuery setBankRecIDEndsWith(String value) { this.BankRecIDEndsWith = value; return this; } public String getBankRecIDContains() { return BankRecIDContains; } public BR_DirectCreditorReceiptsQuery setBankRecIDContains(String value) { this.BankRecIDContains = value; return this; } public String getBankRecIDLike() { return BankRecIDLike; } public BR_DirectCreditorReceiptsQuery setBankRecIDLike(String value) { this.BankRecIDLike = value; return this; } public ArrayList getBankRecIDBetween() { return BankRecIDBetween; } public BR_DirectCreditorReceiptsQuery setBankRecIDBetween(ArrayList value) { this.BankRecIDBetween = value; return this; } public ArrayList getBankRecIDIn() { return BankRecIDIn; } public BR_DirectCreditorReceiptsQuery setBankRecIDIn(ArrayList value) { this.BankRecIDIn = value; return this; } public String getCreatedByStaffID() { return CreatedByStaffID; } public BR_DirectCreditorReceiptsQuery setCreatedByStaffID(String value) { this.CreatedByStaffID = value; return this; } public String getCreatedByStaffIDStartsWith() { return CreatedByStaffIDStartsWith; } public BR_DirectCreditorReceiptsQuery setCreatedByStaffIDStartsWith(String value) { this.CreatedByStaffIDStartsWith = value; return this; } public String getCreatedByStaffIDEndsWith() { return CreatedByStaffIDEndsWith; } public BR_DirectCreditorReceiptsQuery setCreatedByStaffIDEndsWith(String value) { this.CreatedByStaffIDEndsWith = value; return this; } public String getCreatedByStaffIDContains() { return CreatedByStaffIDContains; } public BR_DirectCreditorReceiptsQuery setCreatedByStaffIDContains(String value) { this.CreatedByStaffIDContains = value; return this; } public String getCreatedByStaffIDLike() { return CreatedByStaffIDLike; } public BR_DirectCreditorReceiptsQuery setCreatedByStaffIDLike(String value) { this.CreatedByStaffIDLike = value; return this; } public ArrayList getCreatedByStaffIDBetween() { return CreatedByStaffIDBetween; } public BR_DirectCreditorReceiptsQuery setCreatedByStaffIDBetween(ArrayList value) { this.CreatedByStaffIDBetween = value; return this; } public ArrayList getCreatedByStaffIDIn() { return CreatedByStaffIDIn; } public BR_DirectCreditorReceiptsQuery setCreatedByStaffIDIn(ArrayList value) { this.CreatedByStaffIDIn = value; return this; } public Date getCreatedDateTime() { return CreatedDateTime; } public BR_DirectCreditorReceiptsQuery setCreatedDateTime(Date value) { this.CreatedDateTime = value; return this; } public Date getCreatedDateTimeGreaterThanOrEqualTo() { return CreatedDateTimeGreaterThanOrEqualTo; } public BR_DirectCreditorReceiptsQuery setCreatedDateTimeGreaterThanOrEqualTo(Date value) { this.CreatedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getCreatedDateTimeGreaterThan() { return CreatedDateTimeGreaterThan; } public BR_DirectCreditorReceiptsQuery setCreatedDateTimeGreaterThan(Date value) { this.CreatedDateTimeGreaterThan = value; return this; } public Date getCreatedDateTimeLessThan() { return CreatedDateTimeLessThan; } public BR_DirectCreditorReceiptsQuery setCreatedDateTimeLessThan(Date value) { this.CreatedDateTimeLessThan = value; return this; } public Date getCreatedDateTimeLessThanOrEqualTo() { return CreatedDateTimeLessThanOrEqualTo; } public BR_DirectCreditorReceiptsQuery setCreatedDateTimeLessThanOrEqualTo(Date value) { this.CreatedDateTimeLessThanOrEqualTo = value; return this; } public Date getCreatedDateTimeNotEqualTo() { return CreatedDateTimeNotEqualTo; } public BR_DirectCreditorReceiptsQuery setCreatedDateTimeNotEqualTo(Date value) { this.CreatedDateTimeNotEqualTo = value; return this; } public ArrayList getCreatedDateTimeBetween() { return CreatedDateTimeBetween; } public BR_DirectCreditorReceiptsQuery setCreatedDateTimeBetween(ArrayList value) { this.CreatedDateTimeBetween = value; return this; } public ArrayList getCreatedDateTimeIn() { return CreatedDateTimeIn; } public BR_DirectCreditorReceiptsQuery setCreatedDateTimeIn(ArrayList value) { this.CreatedDateTimeIn = value; return this; } public String getLastSavedByStaffID() { return LastSavedByStaffID; } public BR_DirectCreditorReceiptsQuery setLastSavedByStaffID(String value) { this.LastSavedByStaffID = value; return this; } public String getLastSavedByStaffIDStartsWith() { return LastSavedByStaffIDStartsWith; } public BR_DirectCreditorReceiptsQuery setLastSavedByStaffIDStartsWith(String value) { this.LastSavedByStaffIDStartsWith = value; return this; } public String getLastSavedByStaffIDEndsWith() { return LastSavedByStaffIDEndsWith; } public BR_DirectCreditorReceiptsQuery setLastSavedByStaffIDEndsWith(String value) { this.LastSavedByStaffIDEndsWith = value; return this; } public String getLastSavedByStaffIDContains() { return LastSavedByStaffIDContains; } public BR_DirectCreditorReceiptsQuery setLastSavedByStaffIDContains(String value) { this.LastSavedByStaffIDContains = value; return this; } public String getLastSavedByStaffIDLike() { return LastSavedByStaffIDLike; } public BR_DirectCreditorReceiptsQuery setLastSavedByStaffIDLike(String value) { this.LastSavedByStaffIDLike = value; return this; } public ArrayList getLastSavedByStaffIDBetween() { return LastSavedByStaffIDBetween; } public BR_DirectCreditorReceiptsQuery setLastSavedByStaffIDBetween(ArrayList value) { this.LastSavedByStaffIDBetween = value; return this; } public ArrayList getLastSavedByStaffIDIn() { return LastSavedByStaffIDIn; } public BR_DirectCreditorReceiptsQuery setLastSavedByStaffIDIn(ArrayList value) { this.LastSavedByStaffIDIn = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public BR_DirectCreditorReceiptsQuery setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getLastSavedDateTimeGreaterThanOrEqualTo() { return LastSavedDateTimeGreaterThanOrEqualTo; } public BR_DirectCreditorReceiptsQuery setLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.LastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeGreaterThan() { return LastSavedDateTimeGreaterThan; } public BR_DirectCreditorReceiptsQuery setLastSavedDateTimeGreaterThan(Date value) { this.LastSavedDateTimeGreaterThan = value; return this; } public Date getLastSavedDateTimeLessThan() { return LastSavedDateTimeLessThan; } public BR_DirectCreditorReceiptsQuery setLastSavedDateTimeLessThan(Date value) { this.LastSavedDateTimeLessThan = value; return this; } public Date getLastSavedDateTimeLessThanOrEqualTo() { return LastSavedDateTimeLessThanOrEqualTo; } public BR_DirectCreditorReceiptsQuery setLastSavedDateTimeLessThanOrEqualTo(Date value) { this.LastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeNotEqualTo() { return LastSavedDateTimeNotEqualTo; } public BR_DirectCreditorReceiptsQuery setLastSavedDateTimeNotEqualTo(Date value) { this.LastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getLastSavedDateTimeBetween() { return LastSavedDateTimeBetween; } public BR_DirectCreditorReceiptsQuery setLastSavedDateTimeBetween(ArrayList value) { this.LastSavedDateTimeBetween = value; return this; } public ArrayList getLastSavedDateTimeIn() { return LastSavedDateTimeIn; } public BR_DirectCreditorReceiptsQuery setLastSavedDateTimeIn(ArrayList value) { this.LastSavedDateTimeIn = value; return this; } public Integer getLineNumber() { return LineNumber; } public BR_DirectCreditorReceiptsQuery setLineNumber(Integer value) { this.LineNumber = value; return this; } public Integer getLineNumberGreaterThanOrEqualTo() { return LineNumberGreaterThanOrEqualTo; } public BR_DirectCreditorReceiptsQuery setLineNumberGreaterThanOrEqualTo(Integer value) { this.LineNumberGreaterThanOrEqualTo = value; return this; } public Integer getLineNumberGreaterThan() { return LineNumberGreaterThan; } public BR_DirectCreditorReceiptsQuery setLineNumberGreaterThan(Integer value) { this.LineNumberGreaterThan = value; return this; } public Integer getLineNumberLessThan() { return LineNumberLessThan; } public BR_DirectCreditorReceiptsQuery setLineNumberLessThan(Integer value) { this.LineNumberLessThan = value; return this; } public Integer getLineNumberLessThanOrEqualTo() { return LineNumberLessThanOrEqualTo; } public BR_DirectCreditorReceiptsQuery setLineNumberLessThanOrEqualTo(Integer value) { this.LineNumberLessThanOrEqualTo = value; return this; } public Integer getLineNumberNotEqualTo() { return LineNumberNotEqualTo; } public BR_DirectCreditorReceiptsQuery setLineNumberNotEqualTo(Integer value) { this.LineNumberNotEqualTo = value; return this; } public ArrayList getLineNumberBetween() { return LineNumberBetween; } public BR_DirectCreditorReceiptsQuery setLineNumberBetween(ArrayList value) { this.LineNumberBetween = value; return this; } public ArrayList getLineNumberIn() { return LineNumberIn; } public BR_DirectCreditorReceiptsQuery setLineNumberIn(ArrayList value) { this.LineNumberIn = value; return this; } public Date getTransactionDateTime() { return TransactionDateTime; } public BR_DirectCreditorReceiptsQuery setTransactionDateTime(Date value) { this.TransactionDateTime = value; return this; } public Date getTransactionDateTimeGreaterThanOrEqualTo() { return TransactionDateTimeGreaterThanOrEqualTo; } public BR_DirectCreditorReceiptsQuery setTransactionDateTimeGreaterThanOrEqualTo(Date value) { this.TransactionDateTimeGreaterThanOrEqualTo = value; return this; } public Date getTransactionDateTimeGreaterThan() { return TransactionDateTimeGreaterThan; } public BR_DirectCreditorReceiptsQuery setTransactionDateTimeGreaterThan(Date value) { this.TransactionDateTimeGreaterThan = value; return this; } public Date getTransactionDateTimeLessThan() { return TransactionDateTimeLessThan; } public BR_DirectCreditorReceiptsQuery setTransactionDateTimeLessThan(Date value) { this.TransactionDateTimeLessThan = value; return this; } public Date getTransactionDateTimeLessThanOrEqualTo() { return TransactionDateTimeLessThanOrEqualTo; } public BR_DirectCreditorReceiptsQuery setTransactionDateTimeLessThanOrEqualTo(Date value) { this.TransactionDateTimeLessThanOrEqualTo = value; return this; } public Date getTransactionDateTimeNotEqualTo() { return TransactionDateTimeNotEqualTo; } public BR_DirectCreditorReceiptsQuery setTransactionDateTimeNotEqualTo(Date value) { this.TransactionDateTimeNotEqualTo = value; return this; } public ArrayList getTransactionDateTimeBetween() { return TransactionDateTimeBetween; } public BR_DirectCreditorReceiptsQuery setTransactionDateTimeBetween(ArrayList value) { this.TransactionDateTimeBetween = value; return this; } public ArrayList getTransactionDateTimeIn() { return TransactionDateTimeIn; } public BR_DirectCreditorReceiptsQuery setTransactionDateTimeIn(ArrayList value) { this.TransactionDateTimeIn = value; return this; } public BigDecimal getAmountIncGST() { return AmountIncGST; } public BR_DirectCreditorReceiptsQuery setAmountIncGST(BigDecimal value) { this.AmountIncGST = value; return this; } public BigDecimal getAmountIncGSTGreaterThanOrEqualTo() { return AmountIncGSTGreaterThanOrEqualTo; } public BR_DirectCreditorReceiptsQuery setAmountIncGSTGreaterThanOrEqualTo(BigDecimal value) { this.AmountIncGSTGreaterThanOrEqualTo = value; return this; } public BigDecimal getAmountIncGSTGreaterThan() { return AmountIncGSTGreaterThan; } public BR_DirectCreditorReceiptsQuery setAmountIncGSTGreaterThan(BigDecimal value) { this.AmountIncGSTGreaterThan = value; return this; } public BigDecimal getAmountIncGSTLessThan() { return AmountIncGSTLessThan; } public BR_DirectCreditorReceiptsQuery setAmountIncGSTLessThan(BigDecimal value) { this.AmountIncGSTLessThan = value; return this; } public BigDecimal getAmountIncGSTLessThanOrEqualTo() { return AmountIncGSTLessThanOrEqualTo; } public BR_DirectCreditorReceiptsQuery setAmountIncGSTLessThanOrEqualTo(BigDecimal value) { this.AmountIncGSTLessThanOrEqualTo = value; return this; } public BigDecimal getAmountIncGSTNotEqualTo() { return AmountIncGSTNotEqualTo; } public BR_DirectCreditorReceiptsQuery setAmountIncGSTNotEqualTo(BigDecimal value) { this.AmountIncGSTNotEqualTo = value; return this; } public ArrayList getAmountIncGSTBetween() { return AmountIncGSTBetween; } public BR_DirectCreditorReceiptsQuery setAmountIncGSTBetween(ArrayList value) { this.AmountIncGSTBetween = value; return this; } public ArrayList getAmountIncGSTIn() { return AmountIncGSTIn; } public BR_DirectCreditorReceiptsQuery setAmountIncGSTIn(ArrayList value) { this.AmountIncGSTIn = value; return this; } public Short getDebitCredit() { return DebitCredit; } public BR_DirectCreditorReceiptsQuery setDebitCredit(Short value) { this.DebitCredit = value; return this; } public Short getDebitCreditGreaterThanOrEqualTo() { return DebitCreditGreaterThanOrEqualTo; } public BR_DirectCreditorReceiptsQuery setDebitCreditGreaterThanOrEqualTo(Short value) { this.DebitCreditGreaterThanOrEqualTo = value; return this; } public Short getDebitCreditGreaterThan() { return DebitCreditGreaterThan; } public BR_DirectCreditorReceiptsQuery setDebitCreditGreaterThan(Short value) { this.DebitCreditGreaterThan = value; return this; } public Short getDebitCreditLessThan() { return DebitCreditLessThan; } public BR_DirectCreditorReceiptsQuery setDebitCreditLessThan(Short value) { this.DebitCreditLessThan = value; return this; } public Short getDebitCreditLessThanOrEqualTo() { return DebitCreditLessThanOrEqualTo; } public BR_DirectCreditorReceiptsQuery setDebitCreditLessThanOrEqualTo(Short value) { this.DebitCreditLessThanOrEqualTo = value; return this; } public Short getDebitCreditNotEqualTo() { return DebitCreditNotEqualTo; } public BR_DirectCreditorReceiptsQuery setDebitCreditNotEqualTo(Short value) { this.DebitCreditNotEqualTo = value; return this; } public ArrayList getDebitCreditBetween() { return DebitCreditBetween; } public BR_DirectCreditorReceiptsQuery setDebitCreditBetween(ArrayList value) { this.DebitCreditBetween = value; return this; } public ArrayList getDebitCreditIn() { return DebitCreditIn; } public BR_DirectCreditorReceiptsQuery setDebitCreditIn(ArrayList value) { this.DebitCreditIn = value; return this; } public String getRemark() { return Remark; } public BR_DirectCreditorReceiptsQuery setRemark(String value) { this.Remark = value; return this; } public String getRemarkStartsWith() { return RemarkStartsWith; } public BR_DirectCreditorReceiptsQuery setRemarkStartsWith(String value) { this.RemarkStartsWith = value; return this; } public String getRemarkEndsWith() { return RemarkEndsWith; } public BR_DirectCreditorReceiptsQuery setRemarkEndsWith(String value) { this.RemarkEndsWith = value; return this; } public String getRemarkContains() { return RemarkContains; } public BR_DirectCreditorReceiptsQuery setRemarkContains(String value) { this.RemarkContains = value; return this; } public String getRemarkLike() { return RemarkLike; } public BR_DirectCreditorReceiptsQuery setRemarkLike(String value) { this.RemarkLike = value; return this; } public ArrayList getRemarkBetween() { return RemarkBetween; } public BR_DirectCreditorReceiptsQuery setRemarkBetween(ArrayList value) { this.RemarkBetween = value; return this; } public ArrayList getRemarkIn() { return RemarkIn; } public BR_DirectCreditorReceiptsQuery setRemarkIn(ArrayList value) { this.RemarkIn = value; return this; } public Short getStatus() { return Status; } public BR_DirectCreditorReceiptsQuery setStatus(Short value) { this.Status = value; return this; } public Short getStatusGreaterThanOrEqualTo() { return StatusGreaterThanOrEqualTo; } public BR_DirectCreditorReceiptsQuery setStatusGreaterThanOrEqualTo(Short value) { this.StatusGreaterThanOrEqualTo = value; return this; } public Short getStatusGreaterThan() { return StatusGreaterThan; } public BR_DirectCreditorReceiptsQuery setStatusGreaterThan(Short value) { this.StatusGreaterThan = value; return this; } public Short getStatusLessThan() { return StatusLessThan; } public BR_DirectCreditorReceiptsQuery setStatusLessThan(Short value) { this.StatusLessThan = value; return this; } public Short getStatusLessThanOrEqualTo() { return StatusLessThanOrEqualTo; } public BR_DirectCreditorReceiptsQuery setStatusLessThanOrEqualTo(Short value) { this.StatusLessThanOrEqualTo = value; return this; } public Short getStatusNotEqualTo() { return StatusNotEqualTo; } public BR_DirectCreditorReceiptsQuery setStatusNotEqualTo(Short value) { this.StatusNotEqualTo = value; return this; } public ArrayList getStatusBetween() { return StatusBetween; } public BR_DirectCreditorReceiptsQuery setStatusBetween(ArrayList value) { this.StatusBetween = value; return this; } public ArrayList getStatusIn() { return StatusIn; } public BR_DirectCreditorReceiptsQuery setStatusIn(ArrayList value) { this.StatusIn = value; return this; } public String getGlLedgerID() { return GLLedgerID; } public BR_DirectCreditorReceiptsQuery setGlLedgerID(String value) { this.GLLedgerID = value; return this; } public String getGlLedgerIDStartsWith() { return GLLedgerIDStartsWith; } public BR_DirectCreditorReceiptsQuery setGlLedgerIDStartsWith(String value) { this.GLLedgerIDStartsWith = value; return this; } public String getGlLedgerIDEndsWith() { return GLLedgerIDEndsWith; } public BR_DirectCreditorReceiptsQuery setGlLedgerIDEndsWith(String value) { this.GLLedgerIDEndsWith = value; return this; } public String getGlLedgerIDContains() { return GLLedgerIDContains; } public BR_DirectCreditorReceiptsQuery setGlLedgerIDContains(String value) { this.GLLedgerIDContains = value; return this; } public String getGlLedgerIDLike() { return GLLedgerIDLike; } public BR_DirectCreditorReceiptsQuery setGlLedgerIDLike(String value) { this.GLLedgerIDLike = value; return this; } public ArrayList getGlLedgerIDBetween() { return GLLedgerIDBetween; } public BR_DirectCreditorReceiptsQuery setGlLedgerIDBetween(ArrayList value) { this.GLLedgerIDBetween = value; return this; } public ArrayList getGlLedgerIDIn() { return GLLedgerIDIn; } public BR_DirectCreditorReceiptsQuery setGlLedgerIDIn(ArrayList value) { this.GLLedgerIDIn = value; return this; } public String getCreditorID() { return CreditorID; } public BR_DirectCreditorReceiptsQuery setCreditorID(String value) { this.CreditorID = value; return this; } public String getCreditorIDStartsWith() { return CreditorIDStartsWith; } public BR_DirectCreditorReceiptsQuery setCreditorIDStartsWith(String value) { this.CreditorIDStartsWith = value; return this; } public String getCreditorIDEndsWith() { return CreditorIDEndsWith; } public BR_DirectCreditorReceiptsQuery setCreditorIDEndsWith(String value) { this.CreditorIDEndsWith = value; return this; } public String getCreditorIDContains() { return CreditorIDContains; } public BR_DirectCreditorReceiptsQuery setCreditorIDContains(String value) { this.CreditorIDContains = value; return this; } public String getCreditorIDLike() { return CreditorIDLike; } public BR_DirectCreditorReceiptsQuery setCreditorIDLike(String value) { this.CreditorIDLike = value; return this; } public ArrayList getCreditorIDBetween() { return CreditorIDBetween; } public BR_DirectCreditorReceiptsQuery setCreditorIDBetween(ArrayList value) { this.CreditorIDBetween = value; return this; } public ArrayList getCreditorIDIn() { return CreditorIDIn; } public BR_DirectCreditorReceiptsQuery setCreditorIDIn(ArrayList value) { this.CreditorIDIn = value; return this; } public String getBankName() { return BankName; } public BR_DirectCreditorReceiptsQuery setBankName(String value) { this.BankName = value; return this; } public String getBankNameStartsWith() { return BankNameStartsWith; } public BR_DirectCreditorReceiptsQuery setBankNameStartsWith(String value) { this.BankNameStartsWith = value; return this; } public String getBankNameEndsWith() { return BankNameEndsWith; } public BR_DirectCreditorReceiptsQuery setBankNameEndsWith(String value) { this.BankNameEndsWith = value; return this; } public String getBankNameContains() { return BankNameContains; } public BR_DirectCreditorReceiptsQuery setBankNameContains(String value) { this.BankNameContains = value; return this; } public String getBankNameLike() { return BankNameLike; } public BR_DirectCreditorReceiptsQuery setBankNameLike(String value) { this.BankNameLike = value; return this; } public ArrayList getBankNameBetween() { return BankNameBetween; } public BR_DirectCreditorReceiptsQuery setBankNameBetween(ArrayList value) { this.BankNameBetween = value; return this; } public ArrayList getBankNameIn() { return BankNameIn; } public BR_DirectCreditorReceiptsQuery setBankNameIn(ArrayList value) { this.BankNameIn = value; return this; } public String getBankAccountNo() { return BankAccountNo; } public BR_DirectCreditorReceiptsQuery setBankAccountNo(String value) { this.BankAccountNo = value; return this; } public String getBankAccountNoStartsWith() { return BankAccountNoStartsWith; } public BR_DirectCreditorReceiptsQuery setBankAccountNoStartsWith(String value) { this.BankAccountNoStartsWith = value; return this; } public String getBankAccountNoEndsWith() { return BankAccountNoEndsWith; } public BR_DirectCreditorReceiptsQuery setBankAccountNoEndsWith(String value) { this.BankAccountNoEndsWith = value; return this; } public String getBankAccountNoContains() { return BankAccountNoContains; } public BR_DirectCreditorReceiptsQuery setBankAccountNoContains(String value) { this.BankAccountNoContains = value; return this; } public String getBankAccountNoLike() { return BankAccountNoLike; } public BR_DirectCreditorReceiptsQuery setBankAccountNoLike(String value) { this.BankAccountNoLike = value; return this; } public ArrayList getBankAccountNoBetween() { return BankAccountNoBetween; } public BR_DirectCreditorReceiptsQuery setBankAccountNoBetween(ArrayList value) { this.BankAccountNoBetween = value; return this; } public ArrayList getBankAccountNoIn() { return BankAccountNoIn; } public BR_DirectCreditorReceiptsQuery setBankAccountNoIn(ArrayList value) { this.BankAccountNoIn = value; return this; } public String getBsbn() { return BSBN; } public BR_DirectCreditorReceiptsQuery setBsbn(String value) { this.BSBN = value; return this; } public String getBsbnStartsWith() { return BSBNStartsWith; } public BR_DirectCreditorReceiptsQuery setBsbnStartsWith(String value) { this.BSBNStartsWith = value; return this; } public String getBsbnEndsWith() { return BSBNEndsWith; } public BR_DirectCreditorReceiptsQuery setBsbnEndsWith(String value) { this.BSBNEndsWith = value; return this; } public String getBsbnContains() { return BSBNContains; } public BR_DirectCreditorReceiptsQuery setBsbnContains(String value) { this.BSBNContains = value; return this; } public String getBsbnLike() { return BSBNLike; } public BR_DirectCreditorReceiptsQuery setBsbnLike(String value) { this.BSBNLike = value; return this; } public ArrayList getBsbnBetween() { return BSBNBetween; } public BR_DirectCreditorReceiptsQuery setBsbnBetween(ArrayList value) { this.BSBNBetween = value; return this; } public ArrayList getBsbnIn() { return BSBNIn; } public BR_DirectCreditorReceiptsQuery setBsbnIn(ArrayList value) { this.BSBNIn = value; return this; } public String getBankAccountName() { return BankAccountName; } public BR_DirectCreditorReceiptsQuery setBankAccountName(String value) { this.BankAccountName = value; return this; } public String getBankAccountNameStartsWith() { return BankAccountNameStartsWith; } public BR_DirectCreditorReceiptsQuery setBankAccountNameStartsWith(String value) { this.BankAccountNameStartsWith = value; return this; } public String getBankAccountNameEndsWith() { return BankAccountNameEndsWith; } public BR_DirectCreditorReceiptsQuery setBankAccountNameEndsWith(String value) { this.BankAccountNameEndsWith = value; return this; } public String getBankAccountNameContains() { return BankAccountNameContains; } public BR_DirectCreditorReceiptsQuery setBankAccountNameContains(String value) { this.BankAccountNameContains = value; return this; } public String getBankAccountNameLike() { return BankAccountNameLike; } public BR_DirectCreditorReceiptsQuery setBankAccountNameLike(String value) { this.BankAccountNameLike = value; return this; } public ArrayList getBankAccountNameBetween() { return BankAccountNameBetween; } public BR_DirectCreditorReceiptsQuery setBankAccountNameBetween(ArrayList value) { this.BankAccountNameBetween = value; return this; } public ArrayList getBankAccountNameIn() { return BankAccountNameIn; } public BR_DirectCreditorReceiptsQuery setBankAccountNameIn(ArrayList value) { this.BankAccountNameIn = value; return this; } public BigDecimal getAmountReconciledIncGST() { return AmountReconciledIncGST; } public BR_DirectCreditorReceiptsQuery setAmountReconciledIncGST(BigDecimal value) { this.AmountReconciledIncGST = value; return this; } public BigDecimal getAmountReconciledIncGSTGreaterThanOrEqualTo() { return AmountReconciledIncGSTGreaterThanOrEqualTo; } public BR_DirectCreditorReceiptsQuery setAmountReconciledIncGSTGreaterThanOrEqualTo(BigDecimal value) { this.AmountReconciledIncGSTGreaterThanOrEqualTo = value; return this; } public BigDecimal getAmountReconciledIncGSTGreaterThan() { return AmountReconciledIncGSTGreaterThan; } public BR_DirectCreditorReceiptsQuery setAmountReconciledIncGSTGreaterThan(BigDecimal value) { this.AmountReconciledIncGSTGreaterThan = value; return this; } public BigDecimal getAmountReconciledIncGSTLessThan() { return AmountReconciledIncGSTLessThan; } public BR_DirectCreditorReceiptsQuery setAmountReconciledIncGSTLessThan(BigDecimal value) { this.AmountReconciledIncGSTLessThan = value; return this; } public BigDecimal getAmountReconciledIncGSTLessThanOrEqualTo() { return AmountReconciledIncGSTLessThanOrEqualTo; } public BR_DirectCreditorReceiptsQuery setAmountReconciledIncGSTLessThanOrEqualTo(BigDecimal value) { this.AmountReconciledIncGSTLessThanOrEqualTo = value; return this; } public BigDecimal getAmountReconciledIncGSTNotEqualTo() { return AmountReconciledIncGSTNotEqualTo; } public BR_DirectCreditorReceiptsQuery setAmountReconciledIncGSTNotEqualTo(BigDecimal value) { this.AmountReconciledIncGSTNotEqualTo = value; return this; } public ArrayList getAmountReconciledIncGSTBetween() { return AmountReconciledIncGSTBetween; } public BR_DirectCreditorReceiptsQuery setAmountReconciledIncGSTBetween(ArrayList value) { this.AmountReconciledIncGSTBetween = value; return this; } public ArrayList getAmountReconciledIncGSTIn() { return AmountReconciledIncGSTIn; } public BR_DirectCreditorReceiptsQuery setAmountReconciledIncGSTIn(ArrayList value) { this.AmountReconciledIncGSTIn = value; return this; } public String getReference() { return Reference; } public BR_DirectCreditorReceiptsQuery setReference(String value) { this.Reference = value; return this; } public String getReferenceStartsWith() { return ReferenceStartsWith; } public BR_DirectCreditorReceiptsQuery setReferenceStartsWith(String value) { this.ReferenceStartsWith = value; return this; } public String getReferenceEndsWith() { return ReferenceEndsWith; } public BR_DirectCreditorReceiptsQuery setReferenceEndsWith(String value) { this.ReferenceEndsWith = value; return this; } public String getReferenceContains() { return ReferenceContains; } public BR_DirectCreditorReceiptsQuery setReferenceContains(String value) { this.ReferenceContains = value; return this; } public String getReferenceLike() { return ReferenceLike; } public BR_DirectCreditorReceiptsQuery setReferenceLike(String value) { this.ReferenceLike = value; return this; } public ArrayList getReferenceBetween() { return ReferenceBetween; } public BR_DirectCreditorReceiptsQuery setReferenceBetween(ArrayList value) { this.ReferenceBetween = value; return this; } public ArrayList getReferenceIn() { return ReferenceIn; } public BR_DirectCreditorReceiptsQuery setReferenceIn(ArrayList value) { this.ReferenceIn = value; return this; } public String getTaxID() { return TaxID; } public BR_DirectCreditorReceiptsQuery setTaxID(String value) { this.TaxID = value; return this; } public String getTaxIDStartsWith() { return TaxIDStartsWith; } public BR_DirectCreditorReceiptsQuery setTaxIDStartsWith(String value) { this.TaxIDStartsWith = value; return this; } public String getTaxIDEndsWith() { return TaxIDEndsWith; } public BR_DirectCreditorReceiptsQuery setTaxIDEndsWith(String value) { this.TaxIDEndsWith = value; return this; } public String getTaxIDContains() { return TaxIDContains; } public BR_DirectCreditorReceiptsQuery setTaxIDContains(String value) { this.TaxIDContains = value; return this; } public String getTaxIDLike() { return TaxIDLike; } public BR_DirectCreditorReceiptsQuery setTaxIDLike(String value) { this.TaxIDLike = value; return this; } public ArrayList getTaxIDBetween() { return TaxIDBetween; } public BR_DirectCreditorReceiptsQuery setTaxIDBetween(ArrayList value) { this.TaxIDBetween = value; return this; } public ArrayList getTaxIDIn() { return TaxIDIn; } public BR_DirectCreditorReceiptsQuery setTaxIDIn(ArrayList value) { this.TaxIDIn = value; return this; } public BigDecimal getTaxRate() { return TaxRate; } public BR_DirectCreditorReceiptsQuery setTaxRate(BigDecimal value) { this.TaxRate = value; return this; } public BigDecimal getTaxRateGreaterThanOrEqualTo() { return TaxRateGreaterThanOrEqualTo; } public BR_DirectCreditorReceiptsQuery setTaxRateGreaterThanOrEqualTo(BigDecimal value) { this.TaxRateGreaterThanOrEqualTo = value; return this; } public BigDecimal getTaxRateGreaterThan() { return TaxRateGreaterThan; } public BR_DirectCreditorReceiptsQuery setTaxRateGreaterThan(BigDecimal value) { this.TaxRateGreaterThan = value; return this; } public BigDecimal getTaxRateLessThan() { return TaxRateLessThan; } public BR_DirectCreditorReceiptsQuery setTaxRateLessThan(BigDecimal value) { this.TaxRateLessThan = value; return this; } public BigDecimal getTaxRateLessThanOrEqualTo() { return TaxRateLessThanOrEqualTo; } public BR_DirectCreditorReceiptsQuery setTaxRateLessThanOrEqualTo(BigDecimal value) { this.TaxRateLessThanOrEqualTo = value; return this; } public BigDecimal getTaxRateNotEqualTo() { return TaxRateNotEqualTo; } public BR_DirectCreditorReceiptsQuery setTaxRateNotEqualTo(BigDecimal value) { this.TaxRateNotEqualTo = value; return this; } public ArrayList getTaxRateBetween() { return TaxRateBetween; } public BR_DirectCreditorReceiptsQuery setTaxRateBetween(ArrayList value) { this.TaxRateBetween = value; return this; } public ArrayList getTaxRateIn() { return TaxRateIn; } public BR_DirectCreditorReceiptsQuery setTaxRateIn(ArrayList value) { this.TaxRateIn = value; return this; } public BigDecimal getTaxAmount() { return TaxAmount; } public BR_DirectCreditorReceiptsQuery setTaxAmount(BigDecimal value) { this.TaxAmount = value; return this; } public BigDecimal getTaxAmountGreaterThanOrEqualTo() { return TaxAmountGreaterThanOrEqualTo; } public BR_DirectCreditorReceiptsQuery setTaxAmountGreaterThanOrEqualTo(BigDecimal value) { this.TaxAmountGreaterThanOrEqualTo = value; return this; } public BigDecimal getTaxAmountGreaterThan() { return TaxAmountGreaterThan; } public BR_DirectCreditorReceiptsQuery setTaxAmountGreaterThan(BigDecimal value) { this.TaxAmountGreaterThan = value; return this; } public BigDecimal getTaxAmountLessThan() { return TaxAmountLessThan; } public BR_DirectCreditorReceiptsQuery setTaxAmountLessThan(BigDecimal value) { this.TaxAmountLessThan = value; return this; } public BigDecimal getTaxAmountLessThanOrEqualTo() { return TaxAmountLessThanOrEqualTo; } public BR_DirectCreditorReceiptsQuery setTaxAmountLessThanOrEqualTo(BigDecimal value) { this.TaxAmountLessThanOrEqualTo = value; return this; } public BigDecimal getTaxAmountNotEqualTo() { return TaxAmountNotEqualTo; } public BR_DirectCreditorReceiptsQuery setTaxAmountNotEqualTo(BigDecimal value) { this.TaxAmountNotEqualTo = value; return this; } public ArrayList getTaxAmountBetween() { return TaxAmountBetween; } public BR_DirectCreditorReceiptsQuery setTaxAmountBetween(ArrayList value) { this.TaxAmountBetween = value; return this; } public ArrayList getTaxAmountIn() { return TaxAmountIn; } public BR_DirectCreditorReceiptsQuery setTaxAmountIn(ArrayList value) { this.TaxAmountIn = value; return this; } public String getReceiptTypeID() { return ReceiptTypeID; } public BR_DirectCreditorReceiptsQuery setReceiptTypeID(String value) { this.ReceiptTypeID = value; return this; } public String getReceiptTypeIDStartsWith() { return ReceiptTypeIDStartsWith; } public BR_DirectCreditorReceiptsQuery setReceiptTypeIDStartsWith(String value) { this.ReceiptTypeIDStartsWith = value; return this; } public String getReceiptTypeIDEndsWith() { return ReceiptTypeIDEndsWith; } public BR_DirectCreditorReceiptsQuery setReceiptTypeIDEndsWith(String value) { this.ReceiptTypeIDEndsWith = value; return this; } public String getReceiptTypeIDContains() { return ReceiptTypeIDContains; } public BR_DirectCreditorReceiptsQuery setReceiptTypeIDContains(String value) { this.ReceiptTypeIDContains = value; return this; } public String getReceiptTypeIDLike() { return ReceiptTypeIDLike; } public BR_DirectCreditorReceiptsQuery setReceiptTypeIDLike(String value) { this.ReceiptTypeIDLike = value; return this; } public ArrayList getReceiptTypeIDBetween() { return ReceiptTypeIDBetween; } public BR_DirectCreditorReceiptsQuery setReceiptTypeIDBetween(ArrayList value) { this.ReceiptTypeIDBetween = value; return this; } public ArrayList getReceiptTypeIDIn() { return ReceiptTypeIDIn; } public BR_DirectCreditorReceiptsQuery setReceiptTypeIDIn(ArrayList value) { this.ReceiptTypeIDIn = value; return this; } public String getInvoiceNo() { return InvoiceNo; } public BR_DirectCreditorReceiptsQuery setInvoiceNo(String value) { this.InvoiceNo = value; return this; } public String getInvoiceNoStartsWith() { return InvoiceNoStartsWith; } public BR_DirectCreditorReceiptsQuery setInvoiceNoStartsWith(String value) { this.InvoiceNoStartsWith = value; return this; } public String getInvoiceNoEndsWith() { return InvoiceNoEndsWith; } public BR_DirectCreditorReceiptsQuery setInvoiceNoEndsWith(String value) { this.InvoiceNoEndsWith = value; return this; } public String getInvoiceNoContains() { return InvoiceNoContains; } public BR_DirectCreditorReceiptsQuery setInvoiceNoContains(String value) { this.InvoiceNoContains = value; return this; } public String getInvoiceNoLike() { return InvoiceNoLike; } public BR_DirectCreditorReceiptsQuery setInvoiceNoLike(String value) { this.InvoiceNoLike = value; return this; } public ArrayList getInvoiceNoBetween() { return InvoiceNoBetween; } public BR_DirectCreditorReceiptsQuery setInvoiceNoBetween(ArrayList value) { this.InvoiceNoBetween = value; return this; } public ArrayList getInvoiceNoIn() { return InvoiceNoIn; } public BR_DirectCreditorReceiptsQuery setInvoiceNoIn(ArrayList value) { this.InvoiceNoIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class BR_DirectDebtorPaymentsQuery extends QueryDb implements IReturn> { public String DirectDebtorPaymentID = null; public String DirectDebtorPaymentIDStartsWith = null; public String DirectDebtorPaymentIDEndsWith = null; public String DirectDebtorPaymentIDContains = null; public String DirectDebtorPaymentIDLike = null; public ArrayList DirectDebtorPaymentIDBetween = null; public ArrayList DirectDebtorPaymentIDIn = null; public String BankRecID = null; public String BankRecIDStartsWith = null; public String BankRecIDEndsWith = null; public String BankRecIDContains = null; public String BankRecIDLike = null; public ArrayList BankRecIDBetween = null; public ArrayList BankRecIDIn = null; public String CreatedByStaffID = null; public String CreatedByStaffIDStartsWith = null; public String CreatedByStaffIDEndsWith = null; public String CreatedByStaffIDContains = null; public String CreatedByStaffIDLike = null; public ArrayList CreatedByStaffIDBetween = null; public ArrayList CreatedByStaffIDIn = null; public Date CreatedDateTime = null; public Date CreatedDateTimeGreaterThanOrEqualTo = null; public Date CreatedDateTimeGreaterThan = null; public Date CreatedDateTimeLessThan = null; public Date CreatedDateTimeLessThanOrEqualTo = null; public Date CreatedDateTimeNotEqualTo = null; public ArrayList CreatedDateTimeBetween = null; public ArrayList CreatedDateTimeIn = null; public String LastSavedByStaffID = null; public String LastSavedByStaffIDStartsWith = null; public String LastSavedByStaffIDEndsWith = null; public String LastSavedByStaffIDContains = null; public String LastSavedByStaffIDLike = null; public ArrayList LastSavedByStaffIDBetween = null; public ArrayList LastSavedByStaffIDIn = null; public Date LastSavedDateTime = null; public Date LastSavedDateTimeGreaterThanOrEqualTo = null; public Date LastSavedDateTimeGreaterThan = null; public Date LastSavedDateTimeLessThan = null; public Date LastSavedDateTimeLessThanOrEqualTo = null; public Date LastSavedDateTimeNotEqualTo = null; public ArrayList LastSavedDateTimeBetween = null; public ArrayList LastSavedDateTimeIn = null; public Integer LineNumber = null; public Integer LineNumberGreaterThanOrEqualTo = null; public Integer LineNumberGreaterThan = null; public Integer LineNumberLessThan = null; public Integer LineNumberLessThanOrEqualTo = null; public Integer LineNumberNotEqualTo = null; public ArrayList LineNumberBetween = null; public ArrayList LineNumberIn = null; public Date TransactionDateTime = null; public Date TransactionDateTimeGreaterThanOrEqualTo = null; public Date TransactionDateTimeGreaterThan = null; public Date TransactionDateTimeLessThan = null; public Date TransactionDateTimeLessThanOrEqualTo = null; public Date TransactionDateTimeNotEqualTo = null; public ArrayList TransactionDateTimeBetween = null; public ArrayList TransactionDateTimeIn = null; public BigDecimal AmountIncGST = null; public BigDecimal AmountIncGSTGreaterThanOrEqualTo = null; public BigDecimal AmountIncGSTGreaterThan = null; public BigDecimal AmountIncGSTLessThan = null; public BigDecimal AmountIncGSTLessThanOrEqualTo = null; public BigDecimal AmountIncGSTNotEqualTo = null; public ArrayList AmountIncGSTBetween = null; public ArrayList AmountIncGSTIn = null; public Short DebitCredit = null; public Short DebitCreditGreaterThanOrEqualTo = null; public Short DebitCreditGreaterThan = null; public Short DebitCreditLessThan = null; public Short DebitCreditLessThanOrEqualTo = null; public Short DebitCreditNotEqualTo = null; public ArrayList DebitCreditBetween = null; public ArrayList DebitCreditIn = null; public String Remark = null; public String RemarkStartsWith = null; public String RemarkEndsWith = null; public String RemarkContains = null; public String RemarkLike = null; public ArrayList RemarkBetween = null; public ArrayList RemarkIn = null; public Short Status = null; public Short StatusGreaterThanOrEqualTo = null; public Short StatusGreaterThan = null; public Short StatusLessThan = null; public Short StatusLessThanOrEqualTo = null; public Short StatusNotEqualTo = null; public ArrayList StatusBetween = null; public ArrayList StatusIn = null; public String GLLedgerID = null; public String GLLedgerIDStartsWith = null; public String GLLedgerIDEndsWith = null; public String GLLedgerIDContains = null; public String GLLedgerIDLike = null; public ArrayList GLLedgerIDBetween = null; public ArrayList GLLedgerIDIn = null; public String DebtorID = null; public String DebtorIDStartsWith = null; public String DebtorIDEndsWith = null; public String DebtorIDContains = null; public String DebtorIDLike = null; public ArrayList DebtorIDBetween = null; public ArrayList DebtorIDIn = null; public String ParentDebtorID = null; public String ParentDebtorIDStartsWith = null; public String ParentDebtorIDEndsWith = null; public String ParentDebtorIDContains = null; public String ParentDebtorIDLike = null; public ArrayList ParentDebtorIDBetween = null; public ArrayList ParentDebtorIDIn = null; public String BankName = null; public String BankNameStartsWith = null; public String BankNameEndsWith = null; public String BankNameContains = null; public String BankNameLike = null; public ArrayList BankNameBetween = null; public ArrayList BankNameIn = null; public String BankAccountNo = null; public String BankAccountNoStartsWith = null; public String BankAccountNoEndsWith = null; public String BankAccountNoContains = null; public String BankAccountNoLike = null; public ArrayList BankAccountNoBetween = null; public ArrayList BankAccountNoIn = null; public String BSBN = null; public String BSBNStartsWith = null; public String BSBNEndsWith = null; public String BSBNContains = null; public String BSBNLike = null; public ArrayList BSBNBetween = null; public ArrayList BSBNIn = null; public String BankAccountName = null; public String BankAccountNameStartsWith = null; public String BankAccountNameEndsWith = null; public String BankAccountNameContains = null; public String BankAccountNameLike = null; public ArrayList BankAccountNameBetween = null; public ArrayList BankAccountNameIn = null; public BigDecimal AmountReconciledIncGST = null; public BigDecimal AmountReconciledIncGSTGreaterThanOrEqualTo = null; public BigDecimal AmountReconciledIncGSTGreaterThan = null; public BigDecimal AmountReconciledIncGSTLessThan = null; public BigDecimal AmountReconciledIncGSTLessThanOrEqualTo = null; public BigDecimal AmountReconciledIncGSTNotEqualTo = null; public ArrayList AmountReconciledIncGSTBetween = null; public ArrayList AmountReconciledIncGSTIn = null; public String Reference = null; public String ReferenceStartsWith = null; public String ReferenceEndsWith = null; public String ReferenceContains = null; public String ReferenceLike = null; public ArrayList ReferenceBetween = null; public ArrayList ReferenceIn = null; public String PaymentTypeID = null; public String PaymentTypeIDStartsWith = null; public String PaymentTypeIDEndsWith = null; public String PaymentTypeIDContains = null; public String PaymentTypeIDLike = null; public ArrayList PaymentTypeIDBetween = null; public ArrayList PaymentTypeIDIn = null; public String TaxID = null; public String TaxIDStartsWith = null; public String TaxIDEndsWith = null; public String TaxIDContains = null; public String TaxIDLike = null; public ArrayList TaxIDBetween = null; public ArrayList TaxIDIn = null; public BigDecimal TaxRate = null; public BigDecimal TaxRateGreaterThanOrEqualTo = null; public BigDecimal TaxRateGreaterThan = null; public BigDecimal TaxRateLessThan = null; public BigDecimal TaxRateLessThanOrEqualTo = null; public BigDecimal TaxRateNotEqualTo = null; public ArrayList TaxRateBetween = null; public ArrayList TaxRateIn = null; public BigDecimal TaxAmount = null; public BigDecimal TaxAmountGreaterThanOrEqualTo = null; public BigDecimal TaxAmountGreaterThan = null; public BigDecimal TaxAmountLessThan = null; public BigDecimal TaxAmountLessThanOrEqualTo = null; public BigDecimal TaxAmountNotEqualTo = null; public ArrayList TaxAmountBetween = null; public ArrayList TaxAmountIn = null; public String InvoiceNo = null; public String InvoiceNoStartsWith = null; public String InvoiceNoEndsWith = null; public String InvoiceNoContains = null; public String InvoiceNoLike = null; public ArrayList InvoiceNoBetween = null; public ArrayList InvoiceNoIn = null; public String getDirectDebtorPaymentID() { return DirectDebtorPaymentID; } public BR_DirectDebtorPaymentsQuery setDirectDebtorPaymentID(String value) { this.DirectDebtorPaymentID = value; return this; } public String getDirectDebtorPaymentIDStartsWith() { return DirectDebtorPaymentIDStartsWith; } public BR_DirectDebtorPaymentsQuery setDirectDebtorPaymentIDStartsWith(String value) { this.DirectDebtorPaymentIDStartsWith = value; return this; } public String getDirectDebtorPaymentIDEndsWith() { return DirectDebtorPaymentIDEndsWith; } public BR_DirectDebtorPaymentsQuery setDirectDebtorPaymentIDEndsWith(String value) { this.DirectDebtorPaymentIDEndsWith = value; return this; } public String getDirectDebtorPaymentIDContains() { return DirectDebtorPaymentIDContains; } public BR_DirectDebtorPaymentsQuery setDirectDebtorPaymentIDContains(String value) { this.DirectDebtorPaymentIDContains = value; return this; } public String getDirectDebtorPaymentIDLike() { return DirectDebtorPaymentIDLike; } public BR_DirectDebtorPaymentsQuery setDirectDebtorPaymentIDLike(String value) { this.DirectDebtorPaymentIDLike = value; return this; } public ArrayList getDirectDebtorPaymentIDBetween() { return DirectDebtorPaymentIDBetween; } public BR_DirectDebtorPaymentsQuery setDirectDebtorPaymentIDBetween(ArrayList value) { this.DirectDebtorPaymentIDBetween = value; return this; } public ArrayList getDirectDebtorPaymentIDIn() { return DirectDebtorPaymentIDIn; } public BR_DirectDebtorPaymentsQuery setDirectDebtorPaymentIDIn(ArrayList value) { this.DirectDebtorPaymentIDIn = value; return this; } public String getBankRecID() { return BankRecID; } public BR_DirectDebtorPaymentsQuery setBankRecID(String value) { this.BankRecID = value; return this; } public String getBankRecIDStartsWith() { return BankRecIDStartsWith; } public BR_DirectDebtorPaymentsQuery setBankRecIDStartsWith(String value) { this.BankRecIDStartsWith = value; return this; } public String getBankRecIDEndsWith() { return BankRecIDEndsWith; } public BR_DirectDebtorPaymentsQuery setBankRecIDEndsWith(String value) { this.BankRecIDEndsWith = value; return this; } public String getBankRecIDContains() { return BankRecIDContains; } public BR_DirectDebtorPaymentsQuery setBankRecIDContains(String value) { this.BankRecIDContains = value; return this; } public String getBankRecIDLike() { return BankRecIDLike; } public BR_DirectDebtorPaymentsQuery setBankRecIDLike(String value) { this.BankRecIDLike = value; return this; } public ArrayList getBankRecIDBetween() { return BankRecIDBetween; } public BR_DirectDebtorPaymentsQuery setBankRecIDBetween(ArrayList value) { this.BankRecIDBetween = value; return this; } public ArrayList getBankRecIDIn() { return BankRecIDIn; } public BR_DirectDebtorPaymentsQuery setBankRecIDIn(ArrayList value) { this.BankRecIDIn = value; return this; } public String getCreatedByStaffID() { return CreatedByStaffID; } public BR_DirectDebtorPaymentsQuery setCreatedByStaffID(String value) { this.CreatedByStaffID = value; return this; } public String getCreatedByStaffIDStartsWith() { return CreatedByStaffIDStartsWith; } public BR_DirectDebtorPaymentsQuery setCreatedByStaffIDStartsWith(String value) { this.CreatedByStaffIDStartsWith = value; return this; } public String getCreatedByStaffIDEndsWith() { return CreatedByStaffIDEndsWith; } public BR_DirectDebtorPaymentsQuery setCreatedByStaffIDEndsWith(String value) { this.CreatedByStaffIDEndsWith = value; return this; } public String getCreatedByStaffIDContains() { return CreatedByStaffIDContains; } public BR_DirectDebtorPaymentsQuery setCreatedByStaffIDContains(String value) { this.CreatedByStaffIDContains = value; return this; } public String getCreatedByStaffIDLike() { return CreatedByStaffIDLike; } public BR_DirectDebtorPaymentsQuery setCreatedByStaffIDLike(String value) { this.CreatedByStaffIDLike = value; return this; } public ArrayList getCreatedByStaffIDBetween() { return CreatedByStaffIDBetween; } public BR_DirectDebtorPaymentsQuery setCreatedByStaffIDBetween(ArrayList value) { this.CreatedByStaffIDBetween = value; return this; } public ArrayList getCreatedByStaffIDIn() { return CreatedByStaffIDIn; } public BR_DirectDebtorPaymentsQuery setCreatedByStaffIDIn(ArrayList value) { this.CreatedByStaffIDIn = value; return this; } public Date getCreatedDateTime() { return CreatedDateTime; } public BR_DirectDebtorPaymentsQuery setCreatedDateTime(Date value) { this.CreatedDateTime = value; return this; } public Date getCreatedDateTimeGreaterThanOrEqualTo() { return CreatedDateTimeGreaterThanOrEqualTo; } public BR_DirectDebtorPaymentsQuery setCreatedDateTimeGreaterThanOrEqualTo(Date value) { this.CreatedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getCreatedDateTimeGreaterThan() { return CreatedDateTimeGreaterThan; } public BR_DirectDebtorPaymentsQuery setCreatedDateTimeGreaterThan(Date value) { this.CreatedDateTimeGreaterThan = value; return this; } public Date getCreatedDateTimeLessThan() { return CreatedDateTimeLessThan; } public BR_DirectDebtorPaymentsQuery setCreatedDateTimeLessThan(Date value) { this.CreatedDateTimeLessThan = value; return this; } public Date getCreatedDateTimeLessThanOrEqualTo() { return CreatedDateTimeLessThanOrEqualTo; } public BR_DirectDebtorPaymentsQuery setCreatedDateTimeLessThanOrEqualTo(Date value) { this.CreatedDateTimeLessThanOrEqualTo = value; return this; } public Date getCreatedDateTimeNotEqualTo() { return CreatedDateTimeNotEqualTo; } public BR_DirectDebtorPaymentsQuery setCreatedDateTimeNotEqualTo(Date value) { this.CreatedDateTimeNotEqualTo = value; return this; } public ArrayList getCreatedDateTimeBetween() { return CreatedDateTimeBetween; } public BR_DirectDebtorPaymentsQuery setCreatedDateTimeBetween(ArrayList value) { this.CreatedDateTimeBetween = value; return this; } public ArrayList getCreatedDateTimeIn() { return CreatedDateTimeIn; } public BR_DirectDebtorPaymentsQuery setCreatedDateTimeIn(ArrayList value) { this.CreatedDateTimeIn = value; return this; } public String getLastSavedByStaffID() { return LastSavedByStaffID; } public BR_DirectDebtorPaymentsQuery setLastSavedByStaffID(String value) { this.LastSavedByStaffID = value; return this; } public String getLastSavedByStaffIDStartsWith() { return LastSavedByStaffIDStartsWith; } public BR_DirectDebtorPaymentsQuery setLastSavedByStaffIDStartsWith(String value) { this.LastSavedByStaffIDStartsWith = value; return this; } public String getLastSavedByStaffIDEndsWith() { return LastSavedByStaffIDEndsWith; } public BR_DirectDebtorPaymentsQuery setLastSavedByStaffIDEndsWith(String value) { this.LastSavedByStaffIDEndsWith = value; return this; } public String getLastSavedByStaffIDContains() { return LastSavedByStaffIDContains; } public BR_DirectDebtorPaymentsQuery setLastSavedByStaffIDContains(String value) { this.LastSavedByStaffIDContains = value; return this; } public String getLastSavedByStaffIDLike() { return LastSavedByStaffIDLike; } public BR_DirectDebtorPaymentsQuery setLastSavedByStaffIDLike(String value) { this.LastSavedByStaffIDLike = value; return this; } public ArrayList getLastSavedByStaffIDBetween() { return LastSavedByStaffIDBetween; } public BR_DirectDebtorPaymentsQuery setLastSavedByStaffIDBetween(ArrayList value) { this.LastSavedByStaffIDBetween = value; return this; } public ArrayList getLastSavedByStaffIDIn() { return LastSavedByStaffIDIn; } public BR_DirectDebtorPaymentsQuery setLastSavedByStaffIDIn(ArrayList value) { this.LastSavedByStaffIDIn = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public BR_DirectDebtorPaymentsQuery setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getLastSavedDateTimeGreaterThanOrEqualTo() { return LastSavedDateTimeGreaterThanOrEqualTo; } public BR_DirectDebtorPaymentsQuery setLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.LastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeGreaterThan() { return LastSavedDateTimeGreaterThan; } public BR_DirectDebtorPaymentsQuery setLastSavedDateTimeGreaterThan(Date value) { this.LastSavedDateTimeGreaterThan = value; return this; } public Date getLastSavedDateTimeLessThan() { return LastSavedDateTimeLessThan; } public BR_DirectDebtorPaymentsQuery setLastSavedDateTimeLessThan(Date value) { this.LastSavedDateTimeLessThan = value; return this; } public Date getLastSavedDateTimeLessThanOrEqualTo() { return LastSavedDateTimeLessThanOrEqualTo; } public BR_DirectDebtorPaymentsQuery setLastSavedDateTimeLessThanOrEqualTo(Date value) { this.LastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeNotEqualTo() { return LastSavedDateTimeNotEqualTo; } public BR_DirectDebtorPaymentsQuery setLastSavedDateTimeNotEqualTo(Date value) { this.LastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getLastSavedDateTimeBetween() { return LastSavedDateTimeBetween; } public BR_DirectDebtorPaymentsQuery setLastSavedDateTimeBetween(ArrayList value) { this.LastSavedDateTimeBetween = value; return this; } public ArrayList getLastSavedDateTimeIn() { return LastSavedDateTimeIn; } public BR_DirectDebtorPaymentsQuery setLastSavedDateTimeIn(ArrayList value) { this.LastSavedDateTimeIn = value; return this; } public Integer getLineNumber() { return LineNumber; } public BR_DirectDebtorPaymentsQuery setLineNumber(Integer value) { this.LineNumber = value; return this; } public Integer getLineNumberGreaterThanOrEqualTo() { return LineNumberGreaterThanOrEqualTo; } public BR_DirectDebtorPaymentsQuery setLineNumberGreaterThanOrEqualTo(Integer value) { this.LineNumberGreaterThanOrEqualTo = value; return this; } public Integer getLineNumberGreaterThan() { return LineNumberGreaterThan; } public BR_DirectDebtorPaymentsQuery setLineNumberGreaterThan(Integer value) { this.LineNumberGreaterThan = value; return this; } public Integer getLineNumberLessThan() { return LineNumberLessThan; } public BR_DirectDebtorPaymentsQuery setLineNumberLessThan(Integer value) { this.LineNumberLessThan = value; return this; } public Integer getLineNumberLessThanOrEqualTo() { return LineNumberLessThanOrEqualTo; } public BR_DirectDebtorPaymentsQuery setLineNumberLessThanOrEqualTo(Integer value) { this.LineNumberLessThanOrEqualTo = value; return this; } public Integer getLineNumberNotEqualTo() { return LineNumberNotEqualTo; } public BR_DirectDebtorPaymentsQuery setLineNumberNotEqualTo(Integer value) { this.LineNumberNotEqualTo = value; return this; } public ArrayList getLineNumberBetween() { return LineNumberBetween; } public BR_DirectDebtorPaymentsQuery setLineNumberBetween(ArrayList value) { this.LineNumberBetween = value; return this; } public ArrayList getLineNumberIn() { return LineNumberIn; } public BR_DirectDebtorPaymentsQuery setLineNumberIn(ArrayList value) { this.LineNumberIn = value; return this; } public Date getTransactionDateTime() { return TransactionDateTime; } public BR_DirectDebtorPaymentsQuery setTransactionDateTime(Date value) { this.TransactionDateTime = value; return this; } public Date getTransactionDateTimeGreaterThanOrEqualTo() { return TransactionDateTimeGreaterThanOrEqualTo; } public BR_DirectDebtorPaymentsQuery setTransactionDateTimeGreaterThanOrEqualTo(Date value) { this.TransactionDateTimeGreaterThanOrEqualTo = value; return this; } public Date getTransactionDateTimeGreaterThan() { return TransactionDateTimeGreaterThan; } public BR_DirectDebtorPaymentsQuery setTransactionDateTimeGreaterThan(Date value) { this.TransactionDateTimeGreaterThan = value; return this; } public Date getTransactionDateTimeLessThan() { return TransactionDateTimeLessThan; } public BR_DirectDebtorPaymentsQuery setTransactionDateTimeLessThan(Date value) { this.TransactionDateTimeLessThan = value; return this; } public Date getTransactionDateTimeLessThanOrEqualTo() { return TransactionDateTimeLessThanOrEqualTo; } public BR_DirectDebtorPaymentsQuery setTransactionDateTimeLessThanOrEqualTo(Date value) { this.TransactionDateTimeLessThanOrEqualTo = value; return this; } public Date getTransactionDateTimeNotEqualTo() { return TransactionDateTimeNotEqualTo; } public BR_DirectDebtorPaymentsQuery setTransactionDateTimeNotEqualTo(Date value) { this.TransactionDateTimeNotEqualTo = value; return this; } public ArrayList getTransactionDateTimeBetween() { return TransactionDateTimeBetween; } public BR_DirectDebtorPaymentsQuery setTransactionDateTimeBetween(ArrayList value) { this.TransactionDateTimeBetween = value; return this; } public ArrayList getTransactionDateTimeIn() { return TransactionDateTimeIn; } public BR_DirectDebtorPaymentsQuery setTransactionDateTimeIn(ArrayList value) { this.TransactionDateTimeIn = value; return this; } public BigDecimal getAmountIncGST() { return AmountIncGST; } public BR_DirectDebtorPaymentsQuery setAmountIncGST(BigDecimal value) { this.AmountIncGST = value; return this; } public BigDecimal getAmountIncGSTGreaterThanOrEqualTo() { return AmountIncGSTGreaterThanOrEqualTo; } public BR_DirectDebtorPaymentsQuery setAmountIncGSTGreaterThanOrEqualTo(BigDecimal value) { this.AmountIncGSTGreaterThanOrEqualTo = value; return this; } public BigDecimal getAmountIncGSTGreaterThan() { return AmountIncGSTGreaterThan; } public BR_DirectDebtorPaymentsQuery setAmountIncGSTGreaterThan(BigDecimal value) { this.AmountIncGSTGreaterThan = value; return this; } public BigDecimal getAmountIncGSTLessThan() { return AmountIncGSTLessThan; } public BR_DirectDebtorPaymentsQuery setAmountIncGSTLessThan(BigDecimal value) { this.AmountIncGSTLessThan = value; return this; } public BigDecimal getAmountIncGSTLessThanOrEqualTo() { return AmountIncGSTLessThanOrEqualTo; } public BR_DirectDebtorPaymentsQuery setAmountIncGSTLessThanOrEqualTo(BigDecimal value) { this.AmountIncGSTLessThanOrEqualTo = value; return this; } public BigDecimal getAmountIncGSTNotEqualTo() { return AmountIncGSTNotEqualTo; } public BR_DirectDebtorPaymentsQuery setAmountIncGSTNotEqualTo(BigDecimal value) { this.AmountIncGSTNotEqualTo = value; return this; } public ArrayList getAmountIncGSTBetween() { return AmountIncGSTBetween; } public BR_DirectDebtorPaymentsQuery setAmountIncGSTBetween(ArrayList value) { this.AmountIncGSTBetween = value; return this; } public ArrayList getAmountIncGSTIn() { return AmountIncGSTIn; } public BR_DirectDebtorPaymentsQuery setAmountIncGSTIn(ArrayList value) { this.AmountIncGSTIn = value; return this; } public Short getDebitCredit() { return DebitCredit; } public BR_DirectDebtorPaymentsQuery setDebitCredit(Short value) { this.DebitCredit = value; return this; } public Short getDebitCreditGreaterThanOrEqualTo() { return DebitCreditGreaterThanOrEqualTo; } public BR_DirectDebtorPaymentsQuery setDebitCreditGreaterThanOrEqualTo(Short value) { this.DebitCreditGreaterThanOrEqualTo = value; return this; } public Short getDebitCreditGreaterThan() { return DebitCreditGreaterThan; } public BR_DirectDebtorPaymentsQuery setDebitCreditGreaterThan(Short value) { this.DebitCreditGreaterThan = value; return this; } public Short getDebitCreditLessThan() { return DebitCreditLessThan; } public BR_DirectDebtorPaymentsQuery setDebitCreditLessThan(Short value) { this.DebitCreditLessThan = value; return this; } public Short getDebitCreditLessThanOrEqualTo() { return DebitCreditLessThanOrEqualTo; } public BR_DirectDebtorPaymentsQuery setDebitCreditLessThanOrEqualTo(Short value) { this.DebitCreditLessThanOrEqualTo = value; return this; } public Short getDebitCreditNotEqualTo() { return DebitCreditNotEqualTo; } public BR_DirectDebtorPaymentsQuery setDebitCreditNotEqualTo(Short value) { this.DebitCreditNotEqualTo = value; return this; } public ArrayList getDebitCreditBetween() { return DebitCreditBetween; } public BR_DirectDebtorPaymentsQuery setDebitCreditBetween(ArrayList value) { this.DebitCreditBetween = value; return this; } public ArrayList getDebitCreditIn() { return DebitCreditIn; } public BR_DirectDebtorPaymentsQuery setDebitCreditIn(ArrayList value) { this.DebitCreditIn = value; return this; } public String getRemark() { return Remark; } public BR_DirectDebtorPaymentsQuery setRemark(String value) { this.Remark = value; return this; } public String getRemarkStartsWith() { return RemarkStartsWith; } public BR_DirectDebtorPaymentsQuery setRemarkStartsWith(String value) { this.RemarkStartsWith = value; return this; } public String getRemarkEndsWith() { return RemarkEndsWith; } public BR_DirectDebtorPaymentsQuery setRemarkEndsWith(String value) { this.RemarkEndsWith = value; return this; } public String getRemarkContains() { return RemarkContains; } public BR_DirectDebtorPaymentsQuery setRemarkContains(String value) { this.RemarkContains = value; return this; } public String getRemarkLike() { return RemarkLike; } public BR_DirectDebtorPaymentsQuery setRemarkLike(String value) { this.RemarkLike = value; return this; } public ArrayList getRemarkBetween() { return RemarkBetween; } public BR_DirectDebtorPaymentsQuery setRemarkBetween(ArrayList value) { this.RemarkBetween = value; return this; } public ArrayList getRemarkIn() { return RemarkIn; } public BR_DirectDebtorPaymentsQuery setRemarkIn(ArrayList value) { this.RemarkIn = value; return this; } public Short getStatus() { return Status; } public BR_DirectDebtorPaymentsQuery setStatus(Short value) { this.Status = value; return this; } public Short getStatusGreaterThanOrEqualTo() { return StatusGreaterThanOrEqualTo; } public BR_DirectDebtorPaymentsQuery setStatusGreaterThanOrEqualTo(Short value) { this.StatusGreaterThanOrEqualTo = value; return this; } public Short getStatusGreaterThan() { return StatusGreaterThan; } public BR_DirectDebtorPaymentsQuery setStatusGreaterThan(Short value) { this.StatusGreaterThan = value; return this; } public Short getStatusLessThan() { return StatusLessThan; } public BR_DirectDebtorPaymentsQuery setStatusLessThan(Short value) { this.StatusLessThan = value; return this; } public Short getStatusLessThanOrEqualTo() { return StatusLessThanOrEqualTo; } public BR_DirectDebtorPaymentsQuery setStatusLessThanOrEqualTo(Short value) { this.StatusLessThanOrEqualTo = value; return this; } public Short getStatusNotEqualTo() { return StatusNotEqualTo; } public BR_DirectDebtorPaymentsQuery setStatusNotEqualTo(Short value) { this.StatusNotEqualTo = value; return this; } public ArrayList getStatusBetween() { return StatusBetween; } public BR_DirectDebtorPaymentsQuery setStatusBetween(ArrayList value) { this.StatusBetween = value; return this; } public ArrayList getStatusIn() { return StatusIn; } public BR_DirectDebtorPaymentsQuery setStatusIn(ArrayList value) { this.StatusIn = value; return this; } public String getGlLedgerID() { return GLLedgerID; } public BR_DirectDebtorPaymentsQuery setGlLedgerID(String value) { this.GLLedgerID = value; return this; } public String getGlLedgerIDStartsWith() { return GLLedgerIDStartsWith; } public BR_DirectDebtorPaymentsQuery setGlLedgerIDStartsWith(String value) { this.GLLedgerIDStartsWith = value; return this; } public String getGlLedgerIDEndsWith() { return GLLedgerIDEndsWith; } public BR_DirectDebtorPaymentsQuery setGlLedgerIDEndsWith(String value) { this.GLLedgerIDEndsWith = value; return this; } public String getGlLedgerIDContains() { return GLLedgerIDContains; } public BR_DirectDebtorPaymentsQuery setGlLedgerIDContains(String value) { this.GLLedgerIDContains = value; return this; } public String getGlLedgerIDLike() { return GLLedgerIDLike; } public BR_DirectDebtorPaymentsQuery setGlLedgerIDLike(String value) { this.GLLedgerIDLike = value; return this; } public ArrayList getGlLedgerIDBetween() { return GLLedgerIDBetween; } public BR_DirectDebtorPaymentsQuery setGlLedgerIDBetween(ArrayList value) { this.GLLedgerIDBetween = value; return this; } public ArrayList getGlLedgerIDIn() { return GLLedgerIDIn; } public BR_DirectDebtorPaymentsQuery setGlLedgerIDIn(ArrayList value) { this.GLLedgerIDIn = value; return this; } public String getDebtorID() { return DebtorID; } public BR_DirectDebtorPaymentsQuery setDebtorID(String value) { this.DebtorID = value; return this; } public String getDebtorIDStartsWith() { return DebtorIDStartsWith; } public BR_DirectDebtorPaymentsQuery setDebtorIDStartsWith(String value) { this.DebtorIDStartsWith = value; return this; } public String getDebtorIDEndsWith() { return DebtorIDEndsWith; } public BR_DirectDebtorPaymentsQuery setDebtorIDEndsWith(String value) { this.DebtorIDEndsWith = value; return this; } public String getDebtorIDContains() { return DebtorIDContains; } public BR_DirectDebtorPaymentsQuery setDebtorIDContains(String value) { this.DebtorIDContains = value; return this; } public String getDebtorIDLike() { return DebtorIDLike; } public BR_DirectDebtorPaymentsQuery setDebtorIDLike(String value) { this.DebtorIDLike = value; return this; } public ArrayList getDebtorIDBetween() { return DebtorIDBetween; } public BR_DirectDebtorPaymentsQuery setDebtorIDBetween(ArrayList value) { this.DebtorIDBetween = value; return this; } public ArrayList getDebtorIDIn() { return DebtorIDIn; } public BR_DirectDebtorPaymentsQuery setDebtorIDIn(ArrayList value) { this.DebtorIDIn = value; return this; } public String getParentDebtorID() { return ParentDebtorID; } public BR_DirectDebtorPaymentsQuery setParentDebtorID(String value) { this.ParentDebtorID = value; return this; } public String getParentDebtorIDStartsWith() { return ParentDebtorIDStartsWith; } public BR_DirectDebtorPaymentsQuery setParentDebtorIDStartsWith(String value) { this.ParentDebtorIDStartsWith = value; return this; } public String getParentDebtorIDEndsWith() { return ParentDebtorIDEndsWith; } public BR_DirectDebtorPaymentsQuery setParentDebtorIDEndsWith(String value) { this.ParentDebtorIDEndsWith = value; return this; } public String getParentDebtorIDContains() { return ParentDebtorIDContains; } public BR_DirectDebtorPaymentsQuery setParentDebtorIDContains(String value) { this.ParentDebtorIDContains = value; return this; } public String getParentDebtorIDLike() { return ParentDebtorIDLike; } public BR_DirectDebtorPaymentsQuery setParentDebtorIDLike(String value) { this.ParentDebtorIDLike = value; return this; } public ArrayList getParentDebtorIDBetween() { return ParentDebtorIDBetween; } public BR_DirectDebtorPaymentsQuery setParentDebtorIDBetween(ArrayList value) { this.ParentDebtorIDBetween = value; return this; } public ArrayList getParentDebtorIDIn() { return ParentDebtorIDIn; } public BR_DirectDebtorPaymentsQuery setParentDebtorIDIn(ArrayList value) { this.ParentDebtorIDIn = value; return this; } public String getBankName() { return BankName; } public BR_DirectDebtorPaymentsQuery setBankName(String value) { this.BankName = value; return this; } public String getBankNameStartsWith() { return BankNameStartsWith; } public BR_DirectDebtorPaymentsQuery setBankNameStartsWith(String value) { this.BankNameStartsWith = value; return this; } public String getBankNameEndsWith() { return BankNameEndsWith; } public BR_DirectDebtorPaymentsQuery setBankNameEndsWith(String value) { this.BankNameEndsWith = value; return this; } public String getBankNameContains() { return BankNameContains; } public BR_DirectDebtorPaymentsQuery setBankNameContains(String value) { this.BankNameContains = value; return this; } public String getBankNameLike() { return BankNameLike; } public BR_DirectDebtorPaymentsQuery setBankNameLike(String value) { this.BankNameLike = value; return this; } public ArrayList getBankNameBetween() { return BankNameBetween; } public BR_DirectDebtorPaymentsQuery setBankNameBetween(ArrayList value) { this.BankNameBetween = value; return this; } public ArrayList getBankNameIn() { return BankNameIn; } public BR_DirectDebtorPaymentsQuery setBankNameIn(ArrayList value) { this.BankNameIn = value; return this; } public String getBankAccountNo() { return BankAccountNo; } public BR_DirectDebtorPaymentsQuery setBankAccountNo(String value) { this.BankAccountNo = value; return this; } public String getBankAccountNoStartsWith() { return BankAccountNoStartsWith; } public BR_DirectDebtorPaymentsQuery setBankAccountNoStartsWith(String value) { this.BankAccountNoStartsWith = value; return this; } public String getBankAccountNoEndsWith() { return BankAccountNoEndsWith; } public BR_DirectDebtorPaymentsQuery setBankAccountNoEndsWith(String value) { this.BankAccountNoEndsWith = value; return this; } public String getBankAccountNoContains() { return BankAccountNoContains; } public BR_DirectDebtorPaymentsQuery setBankAccountNoContains(String value) { this.BankAccountNoContains = value; return this; } public String getBankAccountNoLike() { return BankAccountNoLike; } public BR_DirectDebtorPaymentsQuery setBankAccountNoLike(String value) { this.BankAccountNoLike = value; return this; } public ArrayList getBankAccountNoBetween() { return BankAccountNoBetween; } public BR_DirectDebtorPaymentsQuery setBankAccountNoBetween(ArrayList value) { this.BankAccountNoBetween = value; return this; } public ArrayList getBankAccountNoIn() { return BankAccountNoIn; } public BR_DirectDebtorPaymentsQuery setBankAccountNoIn(ArrayList value) { this.BankAccountNoIn = value; return this; } public String getBsbn() { return BSBN; } public BR_DirectDebtorPaymentsQuery setBsbn(String value) { this.BSBN = value; return this; } public String getBsbnStartsWith() { return BSBNStartsWith; } public BR_DirectDebtorPaymentsQuery setBsbnStartsWith(String value) { this.BSBNStartsWith = value; return this; } public String getBsbnEndsWith() { return BSBNEndsWith; } public BR_DirectDebtorPaymentsQuery setBsbnEndsWith(String value) { this.BSBNEndsWith = value; return this; } public String getBsbnContains() { return BSBNContains; } public BR_DirectDebtorPaymentsQuery setBsbnContains(String value) { this.BSBNContains = value; return this; } public String getBsbnLike() { return BSBNLike; } public BR_DirectDebtorPaymentsQuery setBsbnLike(String value) { this.BSBNLike = value; return this; } public ArrayList getBsbnBetween() { return BSBNBetween; } public BR_DirectDebtorPaymentsQuery setBsbnBetween(ArrayList value) { this.BSBNBetween = value; return this; } public ArrayList getBsbnIn() { return BSBNIn; } public BR_DirectDebtorPaymentsQuery setBsbnIn(ArrayList value) { this.BSBNIn = value; return this; } public String getBankAccountName() { return BankAccountName; } public BR_DirectDebtorPaymentsQuery setBankAccountName(String value) { this.BankAccountName = value; return this; } public String getBankAccountNameStartsWith() { return BankAccountNameStartsWith; } public BR_DirectDebtorPaymentsQuery setBankAccountNameStartsWith(String value) { this.BankAccountNameStartsWith = value; return this; } public String getBankAccountNameEndsWith() { return BankAccountNameEndsWith; } public BR_DirectDebtorPaymentsQuery setBankAccountNameEndsWith(String value) { this.BankAccountNameEndsWith = value; return this; } public String getBankAccountNameContains() { return BankAccountNameContains; } public BR_DirectDebtorPaymentsQuery setBankAccountNameContains(String value) { this.BankAccountNameContains = value; return this; } public String getBankAccountNameLike() { return BankAccountNameLike; } public BR_DirectDebtorPaymentsQuery setBankAccountNameLike(String value) { this.BankAccountNameLike = value; return this; } public ArrayList getBankAccountNameBetween() { return BankAccountNameBetween; } public BR_DirectDebtorPaymentsQuery setBankAccountNameBetween(ArrayList value) { this.BankAccountNameBetween = value; return this; } public ArrayList getBankAccountNameIn() { return BankAccountNameIn; } public BR_DirectDebtorPaymentsQuery setBankAccountNameIn(ArrayList value) { this.BankAccountNameIn = value; return this; } public BigDecimal getAmountReconciledIncGST() { return AmountReconciledIncGST; } public BR_DirectDebtorPaymentsQuery setAmountReconciledIncGST(BigDecimal value) { this.AmountReconciledIncGST = value; return this; } public BigDecimal getAmountReconciledIncGSTGreaterThanOrEqualTo() { return AmountReconciledIncGSTGreaterThanOrEqualTo; } public BR_DirectDebtorPaymentsQuery setAmountReconciledIncGSTGreaterThanOrEqualTo(BigDecimal value) { this.AmountReconciledIncGSTGreaterThanOrEqualTo = value; return this; } public BigDecimal getAmountReconciledIncGSTGreaterThan() { return AmountReconciledIncGSTGreaterThan; } public BR_DirectDebtorPaymentsQuery setAmountReconciledIncGSTGreaterThan(BigDecimal value) { this.AmountReconciledIncGSTGreaterThan = value; return this; } public BigDecimal getAmountReconciledIncGSTLessThan() { return AmountReconciledIncGSTLessThan; } public BR_DirectDebtorPaymentsQuery setAmountReconciledIncGSTLessThan(BigDecimal value) { this.AmountReconciledIncGSTLessThan = value; return this; } public BigDecimal getAmountReconciledIncGSTLessThanOrEqualTo() { return AmountReconciledIncGSTLessThanOrEqualTo; } public BR_DirectDebtorPaymentsQuery setAmountReconciledIncGSTLessThanOrEqualTo(BigDecimal value) { this.AmountReconciledIncGSTLessThanOrEqualTo = value; return this; } public BigDecimal getAmountReconciledIncGSTNotEqualTo() { return AmountReconciledIncGSTNotEqualTo; } public BR_DirectDebtorPaymentsQuery setAmountReconciledIncGSTNotEqualTo(BigDecimal value) { this.AmountReconciledIncGSTNotEqualTo = value; return this; } public ArrayList getAmountReconciledIncGSTBetween() { return AmountReconciledIncGSTBetween; } public BR_DirectDebtorPaymentsQuery setAmountReconciledIncGSTBetween(ArrayList value) { this.AmountReconciledIncGSTBetween = value; return this; } public ArrayList getAmountReconciledIncGSTIn() { return AmountReconciledIncGSTIn; } public BR_DirectDebtorPaymentsQuery setAmountReconciledIncGSTIn(ArrayList value) { this.AmountReconciledIncGSTIn = value; return this; } public String getReference() { return Reference; } public BR_DirectDebtorPaymentsQuery setReference(String value) { this.Reference = value; return this; } public String getReferenceStartsWith() { return ReferenceStartsWith; } public BR_DirectDebtorPaymentsQuery setReferenceStartsWith(String value) { this.ReferenceStartsWith = value; return this; } public String getReferenceEndsWith() { return ReferenceEndsWith; } public BR_DirectDebtorPaymentsQuery setReferenceEndsWith(String value) { this.ReferenceEndsWith = value; return this; } public String getReferenceContains() { return ReferenceContains; } public BR_DirectDebtorPaymentsQuery setReferenceContains(String value) { this.ReferenceContains = value; return this; } public String getReferenceLike() { return ReferenceLike; } public BR_DirectDebtorPaymentsQuery setReferenceLike(String value) { this.ReferenceLike = value; return this; } public ArrayList getReferenceBetween() { return ReferenceBetween; } public BR_DirectDebtorPaymentsQuery setReferenceBetween(ArrayList value) { this.ReferenceBetween = value; return this; } public ArrayList getReferenceIn() { return ReferenceIn; } public BR_DirectDebtorPaymentsQuery setReferenceIn(ArrayList value) { this.ReferenceIn = value; return this; } public String getPaymentTypeID() { return PaymentTypeID; } public BR_DirectDebtorPaymentsQuery setPaymentTypeID(String value) { this.PaymentTypeID = value; return this; } public String getPaymentTypeIDStartsWith() { return PaymentTypeIDStartsWith; } public BR_DirectDebtorPaymentsQuery setPaymentTypeIDStartsWith(String value) { this.PaymentTypeIDStartsWith = value; return this; } public String getPaymentTypeIDEndsWith() { return PaymentTypeIDEndsWith; } public BR_DirectDebtorPaymentsQuery setPaymentTypeIDEndsWith(String value) { this.PaymentTypeIDEndsWith = value; return this; } public String getPaymentTypeIDContains() { return PaymentTypeIDContains; } public BR_DirectDebtorPaymentsQuery setPaymentTypeIDContains(String value) { this.PaymentTypeIDContains = value; return this; } public String getPaymentTypeIDLike() { return PaymentTypeIDLike; } public BR_DirectDebtorPaymentsQuery setPaymentTypeIDLike(String value) { this.PaymentTypeIDLike = value; return this; } public ArrayList getPaymentTypeIDBetween() { return PaymentTypeIDBetween; } public BR_DirectDebtorPaymentsQuery setPaymentTypeIDBetween(ArrayList value) { this.PaymentTypeIDBetween = value; return this; } public ArrayList getPaymentTypeIDIn() { return PaymentTypeIDIn; } public BR_DirectDebtorPaymentsQuery setPaymentTypeIDIn(ArrayList value) { this.PaymentTypeIDIn = value; return this; } public String getTaxID() { return TaxID; } public BR_DirectDebtorPaymentsQuery setTaxID(String value) { this.TaxID = value; return this; } public String getTaxIDStartsWith() { return TaxIDStartsWith; } public BR_DirectDebtorPaymentsQuery setTaxIDStartsWith(String value) { this.TaxIDStartsWith = value; return this; } public String getTaxIDEndsWith() { return TaxIDEndsWith; } public BR_DirectDebtorPaymentsQuery setTaxIDEndsWith(String value) { this.TaxIDEndsWith = value; return this; } public String getTaxIDContains() { return TaxIDContains; } public BR_DirectDebtorPaymentsQuery setTaxIDContains(String value) { this.TaxIDContains = value; return this; } public String getTaxIDLike() { return TaxIDLike; } public BR_DirectDebtorPaymentsQuery setTaxIDLike(String value) { this.TaxIDLike = value; return this; } public ArrayList getTaxIDBetween() { return TaxIDBetween; } public BR_DirectDebtorPaymentsQuery setTaxIDBetween(ArrayList value) { this.TaxIDBetween = value; return this; } public ArrayList getTaxIDIn() { return TaxIDIn; } public BR_DirectDebtorPaymentsQuery setTaxIDIn(ArrayList value) { this.TaxIDIn = value; return this; } public BigDecimal getTaxRate() { return TaxRate; } public BR_DirectDebtorPaymentsQuery setTaxRate(BigDecimal value) { this.TaxRate = value; return this; } public BigDecimal getTaxRateGreaterThanOrEqualTo() { return TaxRateGreaterThanOrEqualTo; } public BR_DirectDebtorPaymentsQuery setTaxRateGreaterThanOrEqualTo(BigDecimal value) { this.TaxRateGreaterThanOrEqualTo = value; return this; } public BigDecimal getTaxRateGreaterThan() { return TaxRateGreaterThan; } public BR_DirectDebtorPaymentsQuery setTaxRateGreaterThan(BigDecimal value) { this.TaxRateGreaterThan = value; return this; } public BigDecimal getTaxRateLessThan() { return TaxRateLessThan; } public BR_DirectDebtorPaymentsQuery setTaxRateLessThan(BigDecimal value) { this.TaxRateLessThan = value; return this; } public BigDecimal getTaxRateLessThanOrEqualTo() { return TaxRateLessThanOrEqualTo; } public BR_DirectDebtorPaymentsQuery setTaxRateLessThanOrEqualTo(BigDecimal value) { this.TaxRateLessThanOrEqualTo = value; return this; } public BigDecimal getTaxRateNotEqualTo() { return TaxRateNotEqualTo; } public BR_DirectDebtorPaymentsQuery setTaxRateNotEqualTo(BigDecimal value) { this.TaxRateNotEqualTo = value; return this; } public ArrayList getTaxRateBetween() { return TaxRateBetween; } public BR_DirectDebtorPaymentsQuery setTaxRateBetween(ArrayList value) { this.TaxRateBetween = value; return this; } public ArrayList getTaxRateIn() { return TaxRateIn; } public BR_DirectDebtorPaymentsQuery setTaxRateIn(ArrayList value) { this.TaxRateIn = value; return this; } public BigDecimal getTaxAmount() { return TaxAmount; } public BR_DirectDebtorPaymentsQuery setTaxAmount(BigDecimal value) { this.TaxAmount = value; return this; } public BigDecimal getTaxAmountGreaterThanOrEqualTo() { return TaxAmountGreaterThanOrEqualTo; } public BR_DirectDebtorPaymentsQuery setTaxAmountGreaterThanOrEqualTo(BigDecimal value) { this.TaxAmountGreaterThanOrEqualTo = value; return this; } public BigDecimal getTaxAmountGreaterThan() { return TaxAmountGreaterThan; } public BR_DirectDebtorPaymentsQuery setTaxAmountGreaterThan(BigDecimal value) { this.TaxAmountGreaterThan = value; return this; } public BigDecimal getTaxAmountLessThan() { return TaxAmountLessThan; } public BR_DirectDebtorPaymentsQuery setTaxAmountLessThan(BigDecimal value) { this.TaxAmountLessThan = value; return this; } public BigDecimal getTaxAmountLessThanOrEqualTo() { return TaxAmountLessThanOrEqualTo; } public BR_DirectDebtorPaymentsQuery setTaxAmountLessThanOrEqualTo(BigDecimal value) { this.TaxAmountLessThanOrEqualTo = value; return this; } public BigDecimal getTaxAmountNotEqualTo() { return TaxAmountNotEqualTo; } public BR_DirectDebtorPaymentsQuery setTaxAmountNotEqualTo(BigDecimal value) { this.TaxAmountNotEqualTo = value; return this; } public ArrayList getTaxAmountBetween() { return TaxAmountBetween; } public BR_DirectDebtorPaymentsQuery setTaxAmountBetween(ArrayList value) { this.TaxAmountBetween = value; return this; } public ArrayList getTaxAmountIn() { return TaxAmountIn; } public BR_DirectDebtorPaymentsQuery setTaxAmountIn(ArrayList value) { this.TaxAmountIn = value; return this; } public String getInvoiceNo() { return InvoiceNo; } public BR_DirectDebtorPaymentsQuery setInvoiceNo(String value) { this.InvoiceNo = value; return this; } public String getInvoiceNoStartsWith() { return InvoiceNoStartsWith; } public BR_DirectDebtorPaymentsQuery setInvoiceNoStartsWith(String value) { this.InvoiceNoStartsWith = value; return this; } public String getInvoiceNoEndsWith() { return InvoiceNoEndsWith; } public BR_DirectDebtorPaymentsQuery setInvoiceNoEndsWith(String value) { this.InvoiceNoEndsWith = value; return this; } public String getInvoiceNoContains() { return InvoiceNoContains; } public BR_DirectDebtorPaymentsQuery setInvoiceNoContains(String value) { this.InvoiceNoContains = value; return this; } public String getInvoiceNoLike() { return InvoiceNoLike; } public BR_DirectDebtorPaymentsQuery setInvoiceNoLike(String value) { this.InvoiceNoLike = value; return this; } public ArrayList getInvoiceNoBetween() { return InvoiceNoBetween; } public BR_DirectDebtorPaymentsQuery setInvoiceNoBetween(ArrayList value) { this.InvoiceNoBetween = value; return this; } public ArrayList getInvoiceNoIn() { return InvoiceNoIn; } public BR_DirectDebtorPaymentsQuery setInvoiceNoIn(ArrayList value) { this.InvoiceNoIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class BR_DirectDebtorReceiptAllocationsQuery extends QueryDb implements IReturn> { public String DirectDebtorReceiptAllocationID = null; public String DirectDebtorReceiptAllocationIDStartsWith = null; public String DirectDebtorReceiptAllocationIDEndsWith = null; public String DirectDebtorReceiptAllocationIDContains = null; public String DirectDebtorReceiptAllocationIDLike = null; public ArrayList DirectDebtorReceiptAllocationIDBetween = null; public ArrayList DirectDebtorReceiptAllocationIDIn = null; public String DirectDebtorReceiptID = null; public String DirectDebtorReceiptIDStartsWith = null; public String DirectDebtorReceiptIDEndsWith = null; public String DirectDebtorReceiptIDContains = null; public String DirectDebtorReceiptIDLike = null; public ArrayList DirectDebtorReceiptIDBetween = null; public ArrayList DirectDebtorReceiptIDIn = null; public BigDecimal AmountAllocated = null; public BigDecimal AmountAllocatedGreaterThanOrEqualTo = null; public BigDecimal AmountAllocatedGreaterThan = null; public BigDecimal AmountAllocatedLessThan = null; public BigDecimal AmountAllocatedLessThanOrEqualTo = null; public BigDecimal AmountAllocatedNotEqualTo = null; public ArrayList AmountAllocatedBetween = null; public ArrayList AmountAllocatedIn = null; public String TransID = null; public String TransIDStartsWith = null; public String TransIDEndsWith = null; public String TransIDContains = null; public String TransIDLike = null; public ArrayList TransIDBetween = null; public ArrayList TransIDIn = null; public String LastSavedByStaffID = null; public String LastSavedByStaffIDStartsWith = null; public String LastSavedByStaffIDEndsWith = null; public String LastSavedByStaffIDContains = null; public String LastSavedByStaffIDLike = null; public ArrayList LastSavedByStaffIDBetween = null; public ArrayList LastSavedByStaffIDIn = null; public Date LastSavedDateTime = null; public Date LastSavedDateTimeGreaterThanOrEqualTo = null; public Date LastSavedDateTimeGreaterThan = null; public Date LastSavedDateTimeLessThan = null; public Date LastSavedDateTimeLessThanOrEqualTo = null; public Date LastSavedDateTimeNotEqualTo = null; public ArrayList LastSavedDateTimeBetween = null; public ArrayList LastSavedDateTimeIn = null; public BigDecimal DiscountAmountAllocated = null; public BigDecimal DiscountAmountAllocatedGreaterThanOrEqualTo = null; public BigDecimal DiscountAmountAllocatedGreaterThan = null; public BigDecimal DiscountAmountAllocatedLessThan = null; public BigDecimal DiscountAmountAllocatedLessThanOrEqualTo = null; public BigDecimal DiscountAmountAllocatedNotEqualTo = null; public ArrayList DiscountAmountAllocatedBetween = null; public ArrayList DiscountAmountAllocatedIn = null; public String getDirectDebtorReceiptAllocationID() { return DirectDebtorReceiptAllocationID; } public BR_DirectDebtorReceiptAllocationsQuery setDirectDebtorReceiptAllocationID(String value) { this.DirectDebtorReceiptAllocationID = value; return this; } public String getDirectDebtorReceiptAllocationIDStartsWith() { return DirectDebtorReceiptAllocationIDStartsWith; } public BR_DirectDebtorReceiptAllocationsQuery setDirectDebtorReceiptAllocationIDStartsWith(String value) { this.DirectDebtorReceiptAllocationIDStartsWith = value; return this; } public String getDirectDebtorReceiptAllocationIDEndsWith() { return DirectDebtorReceiptAllocationIDEndsWith; } public BR_DirectDebtorReceiptAllocationsQuery setDirectDebtorReceiptAllocationIDEndsWith(String value) { this.DirectDebtorReceiptAllocationIDEndsWith = value; return this; } public String getDirectDebtorReceiptAllocationIDContains() { return DirectDebtorReceiptAllocationIDContains; } public BR_DirectDebtorReceiptAllocationsQuery setDirectDebtorReceiptAllocationIDContains(String value) { this.DirectDebtorReceiptAllocationIDContains = value; return this; } public String getDirectDebtorReceiptAllocationIDLike() { return DirectDebtorReceiptAllocationIDLike; } public BR_DirectDebtorReceiptAllocationsQuery setDirectDebtorReceiptAllocationIDLike(String value) { this.DirectDebtorReceiptAllocationIDLike = value; return this; } public ArrayList getDirectDebtorReceiptAllocationIDBetween() { return DirectDebtorReceiptAllocationIDBetween; } public BR_DirectDebtorReceiptAllocationsQuery setDirectDebtorReceiptAllocationIDBetween(ArrayList value) { this.DirectDebtorReceiptAllocationIDBetween = value; return this; } public ArrayList getDirectDebtorReceiptAllocationIDIn() { return DirectDebtorReceiptAllocationIDIn; } public BR_DirectDebtorReceiptAllocationsQuery setDirectDebtorReceiptAllocationIDIn(ArrayList value) { this.DirectDebtorReceiptAllocationIDIn = value; return this; } public String getDirectDebtorReceiptID() { return DirectDebtorReceiptID; } public BR_DirectDebtorReceiptAllocationsQuery setDirectDebtorReceiptID(String value) { this.DirectDebtorReceiptID = value; return this; } public String getDirectDebtorReceiptIDStartsWith() { return DirectDebtorReceiptIDStartsWith; } public BR_DirectDebtorReceiptAllocationsQuery setDirectDebtorReceiptIDStartsWith(String value) { this.DirectDebtorReceiptIDStartsWith = value; return this; } public String getDirectDebtorReceiptIDEndsWith() { return DirectDebtorReceiptIDEndsWith; } public BR_DirectDebtorReceiptAllocationsQuery setDirectDebtorReceiptIDEndsWith(String value) { this.DirectDebtorReceiptIDEndsWith = value; return this; } public String getDirectDebtorReceiptIDContains() { return DirectDebtorReceiptIDContains; } public BR_DirectDebtorReceiptAllocationsQuery setDirectDebtorReceiptIDContains(String value) { this.DirectDebtorReceiptIDContains = value; return this; } public String getDirectDebtorReceiptIDLike() { return DirectDebtorReceiptIDLike; } public BR_DirectDebtorReceiptAllocationsQuery setDirectDebtorReceiptIDLike(String value) { this.DirectDebtorReceiptIDLike = value; return this; } public ArrayList getDirectDebtorReceiptIDBetween() { return DirectDebtorReceiptIDBetween; } public BR_DirectDebtorReceiptAllocationsQuery setDirectDebtorReceiptIDBetween(ArrayList value) { this.DirectDebtorReceiptIDBetween = value; return this; } public ArrayList getDirectDebtorReceiptIDIn() { return DirectDebtorReceiptIDIn; } public BR_DirectDebtorReceiptAllocationsQuery setDirectDebtorReceiptIDIn(ArrayList value) { this.DirectDebtorReceiptIDIn = value; return this; } public BigDecimal getAmountAllocated() { return AmountAllocated; } public BR_DirectDebtorReceiptAllocationsQuery setAmountAllocated(BigDecimal value) { this.AmountAllocated = value; return this; } public BigDecimal getAmountAllocatedGreaterThanOrEqualTo() { return AmountAllocatedGreaterThanOrEqualTo; } public BR_DirectDebtorReceiptAllocationsQuery setAmountAllocatedGreaterThanOrEqualTo(BigDecimal value) { this.AmountAllocatedGreaterThanOrEqualTo = value; return this; } public BigDecimal getAmountAllocatedGreaterThan() { return AmountAllocatedGreaterThan; } public BR_DirectDebtorReceiptAllocationsQuery setAmountAllocatedGreaterThan(BigDecimal value) { this.AmountAllocatedGreaterThan = value; return this; } public BigDecimal getAmountAllocatedLessThan() { return AmountAllocatedLessThan; } public BR_DirectDebtorReceiptAllocationsQuery setAmountAllocatedLessThan(BigDecimal value) { this.AmountAllocatedLessThan = value; return this; } public BigDecimal getAmountAllocatedLessThanOrEqualTo() { return AmountAllocatedLessThanOrEqualTo; } public BR_DirectDebtorReceiptAllocationsQuery setAmountAllocatedLessThanOrEqualTo(BigDecimal value) { this.AmountAllocatedLessThanOrEqualTo = value; return this; } public BigDecimal getAmountAllocatedNotEqualTo() { return AmountAllocatedNotEqualTo; } public BR_DirectDebtorReceiptAllocationsQuery setAmountAllocatedNotEqualTo(BigDecimal value) { this.AmountAllocatedNotEqualTo = value; return this; } public ArrayList getAmountAllocatedBetween() { return AmountAllocatedBetween; } public BR_DirectDebtorReceiptAllocationsQuery setAmountAllocatedBetween(ArrayList value) { this.AmountAllocatedBetween = value; return this; } public ArrayList getAmountAllocatedIn() { return AmountAllocatedIn; } public BR_DirectDebtorReceiptAllocationsQuery setAmountAllocatedIn(ArrayList value) { this.AmountAllocatedIn = value; return this; } public String getTransID() { return TransID; } public BR_DirectDebtorReceiptAllocationsQuery setTransID(String value) { this.TransID = value; return this; } public String getTransIDStartsWith() { return TransIDStartsWith; } public BR_DirectDebtorReceiptAllocationsQuery setTransIDStartsWith(String value) { this.TransIDStartsWith = value; return this; } public String getTransIDEndsWith() { return TransIDEndsWith; } public BR_DirectDebtorReceiptAllocationsQuery setTransIDEndsWith(String value) { this.TransIDEndsWith = value; return this; } public String getTransIDContains() { return TransIDContains; } public BR_DirectDebtorReceiptAllocationsQuery setTransIDContains(String value) { this.TransIDContains = value; return this; } public String getTransIDLike() { return TransIDLike; } public BR_DirectDebtorReceiptAllocationsQuery setTransIDLike(String value) { this.TransIDLike = value; return this; } public ArrayList getTransIDBetween() { return TransIDBetween; } public BR_DirectDebtorReceiptAllocationsQuery setTransIDBetween(ArrayList value) { this.TransIDBetween = value; return this; } public ArrayList getTransIDIn() { return TransIDIn; } public BR_DirectDebtorReceiptAllocationsQuery setTransIDIn(ArrayList value) { this.TransIDIn = value; return this; } public String getLastSavedByStaffID() { return LastSavedByStaffID; } public BR_DirectDebtorReceiptAllocationsQuery setLastSavedByStaffID(String value) { this.LastSavedByStaffID = value; return this; } public String getLastSavedByStaffIDStartsWith() { return LastSavedByStaffIDStartsWith; } public BR_DirectDebtorReceiptAllocationsQuery setLastSavedByStaffIDStartsWith(String value) { this.LastSavedByStaffIDStartsWith = value; return this; } public String getLastSavedByStaffIDEndsWith() { return LastSavedByStaffIDEndsWith; } public BR_DirectDebtorReceiptAllocationsQuery setLastSavedByStaffIDEndsWith(String value) { this.LastSavedByStaffIDEndsWith = value; return this; } public String getLastSavedByStaffIDContains() { return LastSavedByStaffIDContains; } public BR_DirectDebtorReceiptAllocationsQuery setLastSavedByStaffIDContains(String value) { this.LastSavedByStaffIDContains = value; return this; } public String getLastSavedByStaffIDLike() { return LastSavedByStaffIDLike; } public BR_DirectDebtorReceiptAllocationsQuery setLastSavedByStaffIDLike(String value) { this.LastSavedByStaffIDLike = value; return this; } public ArrayList getLastSavedByStaffIDBetween() { return LastSavedByStaffIDBetween; } public BR_DirectDebtorReceiptAllocationsQuery setLastSavedByStaffIDBetween(ArrayList value) { this.LastSavedByStaffIDBetween = value; return this; } public ArrayList getLastSavedByStaffIDIn() { return LastSavedByStaffIDIn; } public BR_DirectDebtorReceiptAllocationsQuery setLastSavedByStaffIDIn(ArrayList value) { this.LastSavedByStaffIDIn = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public BR_DirectDebtorReceiptAllocationsQuery setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getLastSavedDateTimeGreaterThanOrEqualTo() { return LastSavedDateTimeGreaterThanOrEqualTo; } public BR_DirectDebtorReceiptAllocationsQuery setLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.LastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeGreaterThan() { return LastSavedDateTimeGreaterThan; } public BR_DirectDebtorReceiptAllocationsQuery setLastSavedDateTimeGreaterThan(Date value) { this.LastSavedDateTimeGreaterThan = value; return this; } public Date getLastSavedDateTimeLessThan() { return LastSavedDateTimeLessThan; } public BR_DirectDebtorReceiptAllocationsQuery setLastSavedDateTimeLessThan(Date value) { this.LastSavedDateTimeLessThan = value; return this; } public Date getLastSavedDateTimeLessThanOrEqualTo() { return LastSavedDateTimeLessThanOrEqualTo; } public BR_DirectDebtorReceiptAllocationsQuery setLastSavedDateTimeLessThanOrEqualTo(Date value) { this.LastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeNotEqualTo() { return LastSavedDateTimeNotEqualTo; } public BR_DirectDebtorReceiptAllocationsQuery setLastSavedDateTimeNotEqualTo(Date value) { this.LastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getLastSavedDateTimeBetween() { return LastSavedDateTimeBetween; } public BR_DirectDebtorReceiptAllocationsQuery setLastSavedDateTimeBetween(ArrayList value) { this.LastSavedDateTimeBetween = value; return this; } public ArrayList getLastSavedDateTimeIn() { return LastSavedDateTimeIn; } public BR_DirectDebtorReceiptAllocationsQuery setLastSavedDateTimeIn(ArrayList value) { this.LastSavedDateTimeIn = value; return this; } public BigDecimal getDiscountAmountAllocated() { return DiscountAmountAllocated; } public BR_DirectDebtorReceiptAllocationsQuery setDiscountAmountAllocated(BigDecimal value) { this.DiscountAmountAllocated = value; return this; } public BigDecimal getDiscountAmountAllocatedGreaterThanOrEqualTo() { return DiscountAmountAllocatedGreaterThanOrEqualTo; } public BR_DirectDebtorReceiptAllocationsQuery setDiscountAmountAllocatedGreaterThanOrEqualTo(BigDecimal value) { this.DiscountAmountAllocatedGreaterThanOrEqualTo = value; return this; } public BigDecimal getDiscountAmountAllocatedGreaterThan() { return DiscountAmountAllocatedGreaterThan; } public BR_DirectDebtorReceiptAllocationsQuery setDiscountAmountAllocatedGreaterThan(BigDecimal value) { this.DiscountAmountAllocatedGreaterThan = value; return this; } public BigDecimal getDiscountAmountAllocatedLessThan() { return DiscountAmountAllocatedLessThan; } public BR_DirectDebtorReceiptAllocationsQuery setDiscountAmountAllocatedLessThan(BigDecimal value) { this.DiscountAmountAllocatedLessThan = value; return this; } public BigDecimal getDiscountAmountAllocatedLessThanOrEqualTo() { return DiscountAmountAllocatedLessThanOrEqualTo; } public BR_DirectDebtorReceiptAllocationsQuery setDiscountAmountAllocatedLessThanOrEqualTo(BigDecimal value) { this.DiscountAmountAllocatedLessThanOrEqualTo = value; return this; } public BigDecimal getDiscountAmountAllocatedNotEqualTo() { return DiscountAmountAllocatedNotEqualTo; } public BR_DirectDebtorReceiptAllocationsQuery setDiscountAmountAllocatedNotEqualTo(BigDecimal value) { this.DiscountAmountAllocatedNotEqualTo = value; return this; } public ArrayList getDiscountAmountAllocatedBetween() { return DiscountAmountAllocatedBetween; } public BR_DirectDebtorReceiptAllocationsQuery setDiscountAmountAllocatedBetween(ArrayList value) { this.DiscountAmountAllocatedBetween = value; return this; } public ArrayList getDiscountAmountAllocatedIn() { return DiscountAmountAllocatedIn; } public BR_DirectDebtorReceiptAllocationsQuery setDiscountAmountAllocatedIn(ArrayList value) { this.DiscountAmountAllocatedIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class BR_DirectDebtorReceiptsQuery extends QueryDb implements IReturn> { public String DirectDebtorReceiptID = null; public String DirectDebtorReceiptIDStartsWith = null; public String DirectDebtorReceiptIDEndsWith = null; public String DirectDebtorReceiptIDContains = null; public String DirectDebtorReceiptIDLike = null; public ArrayList DirectDebtorReceiptIDBetween = null; public ArrayList DirectDebtorReceiptIDIn = null; public String BankRecID = null; public String BankRecIDStartsWith = null; public String BankRecIDEndsWith = null; public String BankRecIDContains = null; public String BankRecIDLike = null; public ArrayList BankRecIDBetween = null; public ArrayList BankRecIDIn = null; public String CreatedByStaffID = null; public String CreatedByStaffIDStartsWith = null; public String CreatedByStaffIDEndsWith = null; public String CreatedByStaffIDContains = null; public String CreatedByStaffIDLike = null; public ArrayList CreatedByStaffIDBetween = null; public ArrayList CreatedByStaffIDIn = null; public Date CreatedDateTime = null; public Date CreatedDateTimeGreaterThanOrEqualTo = null; public Date CreatedDateTimeGreaterThan = null; public Date CreatedDateTimeLessThan = null; public Date CreatedDateTimeLessThanOrEqualTo = null; public Date CreatedDateTimeNotEqualTo = null; public ArrayList CreatedDateTimeBetween = null; public ArrayList CreatedDateTimeIn = null; public String LastSavedByStaffID = null; public String LastSavedByStaffIDStartsWith = null; public String LastSavedByStaffIDEndsWith = null; public String LastSavedByStaffIDContains = null; public String LastSavedByStaffIDLike = null; public ArrayList LastSavedByStaffIDBetween = null; public ArrayList LastSavedByStaffIDIn = null; public Date LastSavedDateTime = null; public Date LastSavedDateTimeGreaterThanOrEqualTo = null; public Date LastSavedDateTimeGreaterThan = null; public Date LastSavedDateTimeLessThan = null; public Date LastSavedDateTimeLessThanOrEqualTo = null; public Date LastSavedDateTimeNotEqualTo = null; public ArrayList LastSavedDateTimeBetween = null; public ArrayList LastSavedDateTimeIn = null; public Integer LineNumber = null; public Integer LineNumberGreaterThanOrEqualTo = null; public Integer LineNumberGreaterThan = null; public Integer LineNumberLessThan = null; public Integer LineNumberLessThanOrEqualTo = null; public Integer LineNumberNotEqualTo = null; public ArrayList LineNumberBetween = null; public ArrayList LineNumberIn = null; public Date TransactionDateTime = null; public Date TransactionDateTimeGreaterThanOrEqualTo = null; public Date TransactionDateTimeGreaterThan = null; public Date TransactionDateTimeLessThan = null; public Date TransactionDateTimeLessThanOrEqualTo = null; public Date TransactionDateTimeNotEqualTo = null; public ArrayList TransactionDateTimeBetween = null; public ArrayList TransactionDateTimeIn = null; public BigDecimal AmountIncGST = null; public BigDecimal AmountIncGSTGreaterThanOrEqualTo = null; public BigDecimal AmountIncGSTGreaterThan = null; public BigDecimal AmountIncGSTLessThan = null; public BigDecimal AmountIncGSTLessThanOrEqualTo = null; public BigDecimal AmountIncGSTNotEqualTo = null; public ArrayList AmountIncGSTBetween = null; public ArrayList AmountIncGSTIn = null; public Short DebitCredit = null; public Short DebitCreditGreaterThanOrEqualTo = null; public Short DebitCreditGreaterThan = null; public Short DebitCreditLessThan = null; public Short DebitCreditLessThanOrEqualTo = null; public Short DebitCreditNotEqualTo = null; public ArrayList DebitCreditBetween = null; public ArrayList DebitCreditIn = null; public String Remark = null; public String RemarkStartsWith = null; public String RemarkEndsWith = null; public String RemarkContains = null; public String RemarkLike = null; public ArrayList RemarkBetween = null; public ArrayList RemarkIn = null; public Short Status = null; public Short StatusGreaterThanOrEqualTo = null; public Short StatusGreaterThan = null; public Short StatusLessThan = null; public Short StatusLessThanOrEqualTo = null; public Short StatusNotEqualTo = null; public ArrayList StatusBetween = null; public ArrayList StatusIn = null; public String GLLedgerID = null; public String GLLedgerIDStartsWith = null; public String GLLedgerIDEndsWith = null; public String GLLedgerIDContains = null; public String GLLedgerIDLike = null; public ArrayList GLLedgerIDBetween = null; public ArrayList GLLedgerIDIn = null; public String DebtorID = null; public String DebtorIDStartsWith = null; public String DebtorIDEndsWith = null; public String DebtorIDContains = null; public String DebtorIDLike = null; public ArrayList DebtorIDBetween = null; public ArrayList DebtorIDIn = null; public String DiscountGLLedgerID = null; public String DiscountGLLedgerIDStartsWith = null; public String DiscountGLLedgerIDEndsWith = null; public String DiscountGLLedgerIDContains = null; public String DiscountGLLedgerIDLike = null; public ArrayList DiscountGLLedgerIDBetween = null; public ArrayList DiscountGLLedgerIDIn = null; public BigDecimal DiscountAmountIncGST = null; public BigDecimal DiscountAmountIncGSTGreaterThanOrEqualTo = null; public BigDecimal DiscountAmountIncGSTGreaterThan = null; public BigDecimal DiscountAmountIncGSTLessThan = null; public BigDecimal DiscountAmountIncGSTLessThanOrEqualTo = null; public BigDecimal DiscountAmountIncGSTNotEqualTo = null; public ArrayList DiscountAmountIncGSTBetween = null; public ArrayList DiscountAmountIncGSTIn = null; public String ParentDebtorID = null; public String ParentDebtorIDStartsWith = null; public String ParentDebtorIDEndsWith = null; public String ParentDebtorIDContains = null; public String ParentDebtorIDLike = null; public ArrayList ParentDebtorIDBetween = null; public ArrayList ParentDebtorIDIn = null; public String BankName = null; public String BankNameStartsWith = null; public String BankNameEndsWith = null; public String BankNameContains = null; public String BankNameLike = null; public ArrayList BankNameBetween = null; public ArrayList BankNameIn = null; public String BankAccountNo = null; public String BankAccountNoStartsWith = null; public String BankAccountNoEndsWith = null; public String BankAccountNoContains = null; public String BankAccountNoLike = null; public ArrayList BankAccountNoBetween = null; public ArrayList BankAccountNoIn = null; public String BSBN = null; public String BSBNStartsWith = null; public String BSBNEndsWith = null; public String BSBNContains = null; public String BSBNLike = null; public ArrayList BSBNBetween = null; public ArrayList BSBNIn = null; public String BankAccountName = null; public String BankAccountNameStartsWith = null; public String BankAccountNameEndsWith = null; public String BankAccountNameContains = null; public String BankAccountNameLike = null; public ArrayList BankAccountNameBetween = null; public ArrayList BankAccountNameIn = null; public String DiscountTaxID = null; public String DiscountTaxIDStartsWith = null; public String DiscountTaxIDEndsWith = null; public String DiscountTaxIDContains = null; public String DiscountTaxIDLike = null; public ArrayList DiscountTaxIDBetween = null; public ArrayList DiscountTaxIDIn = null; public BigDecimal DiscountTaxAmount = null; public BigDecimal DiscountTaxAmountGreaterThanOrEqualTo = null; public BigDecimal DiscountTaxAmountGreaterThan = null; public BigDecimal DiscountTaxAmountLessThan = null; public BigDecimal DiscountTaxAmountLessThanOrEqualTo = null; public BigDecimal DiscountTaxAmountNotEqualTo = null; public ArrayList DiscountTaxAmountBetween = null; public ArrayList DiscountTaxAmountIn = null; public BigDecimal DiscountTaxRate = null; public BigDecimal DiscountTaxRateGreaterThanOrEqualTo = null; public BigDecimal DiscountTaxRateGreaterThan = null; public BigDecimal DiscountTaxRateLessThan = null; public BigDecimal DiscountTaxRateLessThanOrEqualTo = null; public BigDecimal DiscountTaxRateNotEqualTo = null; public ArrayList DiscountTaxRateBetween = null; public ArrayList DiscountTaxRateIn = null; public BigDecimal AmountReconciledIncGST = null; public BigDecimal AmountReconciledIncGSTGreaterThanOrEqualTo = null; public BigDecimal AmountReconciledIncGSTGreaterThan = null; public BigDecimal AmountReconciledIncGSTLessThan = null; public BigDecimal AmountReconciledIncGSTLessThanOrEqualTo = null; public BigDecimal AmountReconciledIncGSTNotEqualTo = null; public ArrayList AmountReconciledIncGSTBetween = null; public ArrayList AmountReconciledIncGSTIn = null; public String Reference = null; public String ReferenceStartsWith = null; public String ReferenceEndsWith = null; public String ReferenceContains = null; public String ReferenceLike = null; public ArrayList ReferenceBetween = null; public ArrayList ReferenceIn = null; public String ReceiptTypeID = null; public String ReceiptTypeIDStartsWith = null; public String ReceiptTypeIDEndsWith = null; public String ReceiptTypeIDContains = null; public String ReceiptTypeIDLike = null; public ArrayList ReceiptTypeIDBetween = null; public ArrayList ReceiptTypeIDIn = null; public String RemitNo = null; public String RemitNoStartsWith = null; public String RemitNoEndsWith = null; public String RemitNoContains = null; public String RemitNoLike = null; public ArrayList RemitNoBetween = null; public ArrayList RemitNoIn = null; public String getDirectDebtorReceiptID() { return DirectDebtorReceiptID; } public BR_DirectDebtorReceiptsQuery setDirectDebtorReceiptID(String value) { this.DirectDebtorReceiptID = value; return this; } public String getDirectDebtorReceiptIDStartsWith() { return DirectDebtorReceiptIDStartsWith; } public BR_DirectDebtorReceiptsQuery setDirectDebtorReceiptIDStartsWith(String value) { this.DirectDebtorReceiptIDStartsWith = value; return this; } public String getDirectDebtorReceiptIDEndsWith() { return DirectDebtorReceiptIDEndsWith; } public BR_DirectDebtorReceiptsQuery setDirectDebtorReceiptIDEndsWith(String value) { this.DirectDebtorReceiptIDEndsWith = value; return this; } public String getDirectDebtorReceiptIDContains() { return DirectDebtorReceiptIDContains; } public BR_DirectDebtorReceiptsQuery setDirectDebtorReceiptIDContains(String value) { this.DirectDebtorReceiptIDContains = value; return this; } public String getDirectDebtorReceiptIDLike() { return DirectDebtorReceiptIDLike; } public BR_DirectDebtorReceiptsQuery setDirectDebtorReceiptIDLike(String value) { this.DirectDebtorReceiptIDLike = value; return this; } public ArrayList getDirectDebtorReceiptIDBetween() { return DirectDebtorReceiptIDBetween; } public BR_DirectDebtorReceiptsQuery setDirectDebtorReceiptIDBetween(ArrayList value) { this.DirectDebtorReceiptIDBetween = value; return this; } public ArrayList getDirectDebtorReceiptIDIn() { return DirectDebtorReceiptIDIn; } public BR_DirectDebtorReceiptsQuery setDirectDebtorReceiptIDIn(ArrayList value) { this.DirectDebtorReceiptIDIn = value; return this; } public String getBankRecID() { return BankRecID; } public BR_DirectDebtorReceiptsQuery setBankRecID(String value) { this.BankRecID = value; return this; } public String getBankRecIDStartsWith() { return BankRecIDStartsWith; } public BR_DirectDebtorReceiptsQuery setBankRecIDStartsWith(String value) { this.BankRecIDStartsWith = value; return this; } public String getBankRecIDEndsWith() { return BankRecIDEndsWith; } public BR_DirectDebtorReceiptsQuery setBankRecIDEndsWith(String value) { this.BankRecIDEndsWith = value; return this; } public String getBankRecIDContains() { return BankRecIDContains; } public BR_DirectDebtorReceiptsQuery setBankRecIDContains(String value) { this.BankRecIDContains = value; return this; } public String getBankRecIDLike() { return BankRecIDLike; } public BR_DirectDebtorReceiptsQuery setBankRecIDLike(String value) { this.BankRecIDLike = value; return this; } public ArrayList getBankRecIDBetween() { return BankRecIDBetween; } public BR_DirectDebtorReceiptsQuery setBankRecIDBetween(ArrayList value) { this.BankRecIDBetween = value; return this; } public ArrayList getBankRecIDIn() { return BankRecIDIn; } public BR_DirectDebtorReceiptsQuery setBankRecIDIn(ArrayList value) { this.BankRecIDIn = value; return this; } public String getCreatedByStaffID() { return CreatedByStaffID; } public BR_DirectDebtorReceiptsQuery setCreatedByStaffID(String value) { this.CreatedByStaffID = value; return this; } public String getCreatedByStaffIDStartsWith() { return CreatedByStaffIDStartsWith; } public BR_DirectDebtorReceiptsQuery setCreatedByStaffIDStartsWith(String value) { this.CreatedByStaffIDStartsWith = value; return this; } public String getCreatedByStaffIDEndsWith() { return CreatedByStaffIDEndsWith; } public BR_DirectDebtorReceiptsQuery setCreatedByStaffIDEndsWith(String value) { this.CreatedByStaffIDEndsWith = value; return this; } public String getCreatedByStaffIDContains() { return CreatedByStaffIDContains; } public BR_DirectDebtorReceiptsQuery setCreatedByStaffIDContains(String value) { this.CreatedByStaffIDContains = value; return this; } public String getCreatedByStaffIDLike() { return CreatedByStaffIDLike; } public BR_DirectDebtorReceiptsQuery setCreatedByStaffIDLike(String value) { this.CreatedByStaffIDLike = value; return this; } public ArrayList getCreatedByStaffIDBetween() { return CreatedByStaffIDBetween; } public BR_DirectDebtorReceiptsQuery setCreatedByStaffIDBetween(ArrayList value) { this.CreatedByStaffIDBetween = value; return this; } public ArrayList getCreatedByStaffIDIn() { return CreatedByStaffIDIn; } public BR_DirectDebtorReceiptsQuery setCreatedByStaffIDIn(ArrayList value) { this.CreatedByStaffIDIn = value; return this; } public Date getCreatedDateTime() { return CreatedDateTime; } public BR_DirectDebtorReceiptsQuery setCreatedDateTime(Date value) { this.CreatedDateTime = value; return this; } public Date getCreatedDateTimeGreaterThanOrEqualTo() { return CreatedDateTimeGreaterThanOrEqualTo; } public BR_DirectDebtorReceiptsQuery setCreatedDateTimeGreaterThanOrEqualTo(Date value) { this.CreatedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getCreatedDateTimeGreaterThan() { return CreatedDateTimeGreaterThan; } public BR_DirectDebtorReceiptsQuery setCreatedDateTimeGreaterThan(Date value) { this.CreatedDateTimeGreaterThan = value; return this; } public Date getCreatedDateTimeLessThan() { return CreatedDateTimeLessThan; } public BR_DirectDebtorReceiptsQuery setCreatedDateTimeLessThan(Date value) { this.CreatedDateTimeLessThan = value; return this; } public Date getCreatedDateTimeLessThanOrEqualTo() { return CreatedDateTimeLessThanOrEqualTo; } public BR_DirectDebtorReceiptsQuery setCreatedDateTimeLessThanOrEqualTo(Date value) { this.CreatedDateTimeLessThanOrEqualTo = value; return this; } public Date getCreatedDateTimeNotEqualTo() { return CreatedDateTimeNotEqualTo; } public BR_DirectDebtorReceiptsQuery setCreatedDateTimeNotEqualTo(Date value) { this.CreatedDateTimeNotEqualTo = value; return this; } public ArrayList getCreatedDateTimeBetween() { return CreatedDateTimeBetween; } public BR_DirectDebtorReceiptsQuery setCreatedDateTimeBetween(ArrayList value) { this.CreatedDateTimeBetween = value; return this; } public ArrayList getCreatedDateTimeIn() { return CreatedDateTimeIn; } public BR_DirectDebtorReceiptsQuery setCreatedDateTimeIn(ArrayList value) { this.CreatedDateTimeIn = value; return this; } public String getLastSavedByStaffID() { return LastSavedByStaffID; } public BR_DirectDebtorReceiptsQuery setLastSavedByStaffID(String value) { this.LastSavedByStaffID = value; return this; } public String getLastSavedByStaffIDStartsWith() { return LastSavedByStaffIDStartsWith; } public BR_DirectDebtorReceiptsQuery setLastSavedByStaffIDStartsWith(String value) { this.LastSavedByStaffIDStartsWith = value; return this; } public String getLastSavedByStaffIDEndsWith() { return LastSavedByStaffIDEndsWith; } public BR_DirectDebtorReceiptsQuery setLastSavedByStaffIDEndsWith(String value) { this.LastSavedByStaffIDEndsWith = value; return this; } public String getLastSavedByStaffIDContains() { return LastSavedByStaffIDContains; } public BR_DirectDebtorReceiptsQuery setLastSavedByStaffIDContains(String value) { this.LastSavedByStaffIDContains = value; return this; } public String getLastSavedByStaffIDLike() { return LastSavedByStaffIDLike; } public BR_DirectDebtorReceiptsQuery setLastSavedByStaffIDLike(String value) { this.LastSavedByStaffIDLike = value; return this; } public ArrayList getLastSavedByStaffIDBetween() { return LastSavedByStaffIDBetween; } public BR_DirectDebtorReceiptsQuery setLastSavedByStaffIDBetween(ArrayList value) { this.LastSavedByStaffIDBetween = value; return this; } public ArrayList getLastSavedByStaffIDIn() { return LastSavedByStaffIDIn; } public BR_DirectDebtorReceiptsQuery setLastSavedByStaffIDIn(ArrayList value) { this.LastSavedByStaffIDIn = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public BR_DirectDebtorReceiptsQuery setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getLastSavedDateTimeGreaterThanOrEqualTo() { return LastSavedDateTimeGreaterThanOrEqualTo; } public BR_DirectDebtorReceiptsQuery setLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.LastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeGreaterThan() { return LastSavedDateTimeGreaterThan; } public BR_DirectDebtorReceiptsQuery setLastSavedDateTimeGreaterThan(Date value) { this.LastSavedDateTimeGreaterThan = value; return this; } public Date getLastSavedDateTimeLessThan() { return LastSavedDateTimeLessThan; } public BR_DirectDebtorReceiptsQuery setLastSavedDateTimeLessThan(Date value) { this.LastSavedDateTimeLessThan = value; return this; } public Date getLastSavedDateTimeLessThanOrEqualTo() { return LastSavedDateTimeLessThanOrEqualTo; } public BR_DirectDebtorReceiptsQuery setLastSavedDateTimeLessThanOrEqualTo(Date value) { this.LastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeNotEqualTo() { return LastSavedDateTimeNotEqualTo; } public BR_DirectDebtorReceiptsQuery setLastSavedDateTimeNotEqualTo(Date value) { this.LastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getLastSavedDateTimeBetween() { return LastSavedDateTimeBetween; } public BR_DirectDebtorReceiptsQuery setLastSavedDateTimeBetween(ArrayList value) { this.LastSavedDateTimeBetween = value; return this; } public ArrayList getLastSavedDateTimeIn() { return LastSavedDateTimeIn; } public BR_DirectDebtorReceiptsQuery setLastSavedDateTimeIn(ArrayList value) { this.LastSavedDateTimeIn = value; return this; } public Integer getLineNumber() { return LineNumber; } public BR_DirectDebtorReceiptsQuery setLineNumber(Integer value) { this.LineNumber = value; return this; } public Integer getLineNumberGreaterThanOrEqualTo() { return LineNumberGreaterThanOrEqualTo; } public BR_DirectDebtorReceiptsQuery setLineNumberGreaterThanOrEqualTo(Integer value) { this.LineNumberGreaterThanOrEqualTo = value; return this; } public Integer getLineNumberGreaterThan() { return LineNumberGreaterThan; } public BR_DirectDebtorReceiptsQuery setLineNumberGreaterThan(Integer value) { this.LineNumberGreaterThan = value; return this; } public Integer getLineNumberLessThan() { return LineNumberLessThan; } public BR_DirectDebtorReceiptsQuery setLineNumberLessThan(Integer value) { this.LineNumberLessThan = value; return this; } public Integer getLineNumberLessThanOrEqualTo() { return LineNumberLessThanOrEqualTo; } public BR_DirectDebtorReceiptsQuery setLineNumberLessThanOrEqualTo(Integer value) { this.LineNumberLessThanOrEqualTo = value; return this; } public Integer getLineNumberNotEqualTo() { return LineNumberNotEqualTo; } public BR_DirectDebtorReceiptsQuery setLineNumberNotEqualTo(Integer value) { this.LineNumberNotEqualTo = value; return this; } public ArrayList getLineNumberBetween() { return LineNumberBetween; } public BR_DirectDebtorReceiptsQuery setLineNumberBetween(ArrayList value) { this.LineNumberBetween = value; return this; } public ArrayList getLineNumberIn() { return LineNumberIn; } public BR_DirectDebtorReceiptsQuery setLineNumberIn(ArrayList value) { this.LineNumberIn = value; return this; } public Date getTransactionDateTime() { return TransactionDateTime; } public BR_DirectDebtorReceiptsQuery setTransactionDateTime(Date value) { this.TransactionDateTime = value; return this; } public Date getTransactionDateTimeGreaterThanOrEqualTo() { return TransactionDateTimeGreaterThanOrEqualTo; } public BR_DirectDebtorReceiptsQuery setTransactionDateTimeGreaterThanOrEqualTo(Date value) { this.TransactionDateTimeGreaterThanOrEqualTo = value; return this; } public Date getTransactionDateTimeGreaterThan() { return TransactionDateTimeGreaterThan; } public BR_DirectDebtorReceiptsQuery setTransactionDateTimeGreaterThan(Date value) { this.TransactionDateTimeGreaterThan = value; return this; } public Date getTransactionDateTimeLessThan() { return TransactionDateTimeLessThan; } public BR_DirectDebtorReceiptsQuery setTransactionDateTimeLessThan(Date value) { this.TransactionDateTimeLessThan = value; return this; } public Date getTransactionDateTimeLessThanOrEqualTo() { return TransactionDateTimeLessThanOrEqualTo; } public BR_DirectDebtorReceiptsQuery setTransactionDateTimeLessThanOrEqualTo(Date value) { this.TransactionDateTimeLessThanOrEqualTo = value; return this; } public Date getTransactionDateTimeNotEqualTo() { return TransactionDateTimeNotEqualTo; } public BR_DirectDebtorReceiptsQuery setTransactionDateTimeNotEqualTo(Date value) { this.TransactionDateTimeNotEqualTo = value; return this; } public ArrayList getTransactionDateTimeBetween() { return TransactionDateTimeBetween; } public BR_DirectDebtorReceiptsQuery setTransactionDateTimeBetween(ArrayList value) { this.TransactionDateTimeBetween = value; return this; } public ArrayList getTransactionDateTimeIn() { return TransactionDateTimeIn; } public BR_DirectDebtorReceiptsQuery setTransactionDateTimeIn(ArrayList value) { this.TransactionDateTimeIn = value; return this; } public BigDecimal getAmountIncGST() { return AmountIncGST; } public BR_DirectDebtorReceiptsQuery setAmountIncGST(BigDecimal value) { this.AmountIncGST = value; return this; } public BigDecimal getAmountIncGSTGreaterThanOrEqualTo() { return AmountIncGSTGreaterThanOrEqualTo; } public BR_DirectDebtorReceiptsQuery setAmountIncGSTGreaterThanOrEqualTo(BigDecimal value) { this.AmountIncGSTGreaterThanOrEqualTo = value; return this; } public BigDecimal getAmountIncGSTGreaterThan() { return AmountIncGSTGreaterThan; } public BR_DirectDebtorReceiptsQuery setAmountIncGSTGreaterThan(BigDecimal value) { this.AmountIncGSTGreaterThan = value; return this; } public BigDecimal getAmountIncGSTLessThan() { return AmountIncGSTLessThan; } public BR_DirectDebtorReceiptsQuery setAmountIncGSTLessThan(BigDecimal value) { this.AmountIncGSTLessThan = value; return this; } public BigDecimal getAmountIncGSTLessThanOrEqualTo() { return AmountIncGSTLessThanOrEqualTo; } public BR_DirectDebtorReceiptsQuery setAmountIncGSTLessThanOrEqualTo(BigDecimal value) { this.AmountIncGSTLessThanOrEqualTo = value; return this; } public BigDecimal getAmountIncGSTNotEqualTo() { return AmountIncGSTNotEqualTo; } public BR_DirectDebtorReceiptsQuery setAmountIncGSTNotEqualTo(BigDecimal value) { this.AmountIncGSTNotEqualTo = value; return this; } public ArrayList getAmountIncGSTBetween() { return AmountIncGSTBetween; } public BR_DirectDebtorReceiptsQuery setAmountIncGSTBetween(ArrayList value) { this.AmountIncGSTBetween = value; return this; } public ArrayList getAmountIncGSTIn() { return AmountIncGSTIn; } public BR_DirectDebtorReceiptsQuery setAmountIncGSTIn(ArrayList value) { this.AmountIncGSTIn = value; return this; } public Short getDebitCredit() { return DebitCredit; } public BR_DirectDebtorReceiptsQuery setDebitCredit(Short value) { this.DebitCredit = value; return this; } public Short getDebitCreditGreaterThanOrEqualTo() { return DebitCreditGreaterThanOrEqualTo; } public BR_DirectDebtorReceiptsQuery setDebitCreditGreaterThanOrEqualTo(Short value) { this.DebitCreditGreaterThanOrEqualTo = value; return this; } public Short getDebitCreditGreaterThan() { return DebitCreditGreaterThan; } public BR_DirectDebtorReceiptsQuery setDebitCreditGreaterThan(Short value) { this.DebitCreditGreaterThan = value; return this; } public Short getDebitCreditLessThan() { return DebitCreditLessThan; } public BR_DirectDebtorReceiptsQuery setDebitCreditLessThan(Short value) { this.DebitCreditLessThan = value; return this; } public Short getDebitCreditLessThanOrEqualTo() { return DebitCreditLessThanOrEqualTo; } public BR_DirectDebtorReceiptsQuery setDebitCreditLessThanOrEqualTo(Short value) { this.DebitCreditLessThanOrEqualTo = value; return this; } public Short getDebitCreditNotEqualTo() { return DebitCreditNotEqualTo; } public BR_DirectDebtorReceiptsQuery setDebitCreditNotEqualTo(Short value) { this.DebitCreditNotEqualTo = value; return this; } public ArrayList getDebitCreditBetween() { return DebitCreditBetween; } public BR_DirectDebtorReceiptsQuery setDebitCreditBetween(ArrayList value) { this.DebitCreditBetween = value; return this; } public ArrayList getDebitCreditIn() { return DebitCreditIn; } public BR_DirectDebtorReceiptsQuery setDebitCreditIn(ArrayList value) { this.DebitCreditIn = value; return this; } public String getRemark() { return Remark; } public BR_DirectDebtorReceiptsQuery setRemark(String value) { this.Remark = value; return this; } public String getRemarkStartsWith() { return RemarkStartsWith; } public BR_DirectDebtorReceiptsQuery setRemarkStartsWith(String value) { this.RemarkStartsWith = value; return this; } public String getRemarkEndsWith() { return RemarkEndsWith; } public BR_DirectDebtorReceiptsQuery setRemarkEndsWith(String value) { this.RemarkEndsWith = value; return this; } public String getRemarkContains() { return RemarkContains; } public BR_DirectDebtorReceiptsQuery setRemarkContains(String value) { this.RemarkContains = value; return this; } public String getRemarkLike() { return RemarkLike; } public BR_DirectDebtorReceiptsQuery setRemarkLike(String value) { this.RemarkLike = value; return this; } public ArrayList getRemarkBetween() { return RemarkBetween; } public BR_DirectDebtorReceiptsQuery setRemarkBetween(ArrayList value) { this.RemarkBetween = value; return this; } public ArrayList getRemarkIn() { return RemarkIn; } public BR_DirectDebtorReceiptsQuery setRemarkIn(ArrayList value) { this.RemarkIn = value; return this; } public Short getStatus() { return Status; } public BR_DirectDebtorReceiptsQuery setStatus(Short value) { this.Status = value; return this; } public Short getStatusGreaterThanOrEqualTo() { return StatusGreaterThanOrEqualTo; } public BR_DirectDebtorReceiptsQuery setStatusGreaterThanOrEqualTo(Short value) { this.StatusGreaterThanOrEqualTo = value; return this; } public Short getStatusGreaterThan() { return StatusGreaterThan; } public BR_DirectDebtorReceiptsQuery setStatusGreaterThan(Short value) { this.StatusGreaterThan = value; return this; } public Short getStatusLessThan() { return StatusLessThan; } public BR_DirectDebtorReceiptsQuery setStatusLessThan(Short value) { this.StatusLessThan = value; return this; } public Short getStatusLessThanOrEqualTo() { return StatusLessThanOrEqualTo; } public BR_DirectDebtorReceiptsQuery setStatusLessThanOrEqualTo(Short value) { this.StatusLessThanOrEqualTo = value; return this; } public Short getStatusNotEqualTo() { return StatusNotEqualTo; } public BR_DirectDebtorReceiptsQuery setStatusNotEqualTo(Short value) { this.StatusNotEqualTo = value; return this; } public ArrayList getStatusBetween() { return StatusBetween; } public BR_DirectDebtorReceiptsQuery setStatusBetween(ArrayList value) { this.StatusBetween = value; return this; } public ArrayList getStatusIn() { return StatusIn; } public BR_DirectDebtorReceiptsQuery setStatusIn(ArrayList value) { this.StatusIn = value; return this; } public String getGlLedgerID() { return GLLedgerID; } public BR_DirectDebtorReceiptsQuery setGlLedgerID(String value) { this.GLLedgerID = value; return this; } public String getGlLedgerIDStartsWith() { return GLLedgerIDStartsWith; } public BR_DirectDebtorReceiptsQuery setGlLedgerIDStartsWith(String value) { this.GLLedgerIDStartsWith = value; return this; } public String getGlLedgerIDEndsWith() { return GLLedgerIDEndsWith; } public BR_DirectDebtorReceiptsQuery setGlLedgerIDEndsWith(String value) { this.GLLedgerIDEndsWith = value; return this; } public String getGlLedgerIDContains() { return GLLedgerIDContains; } public BR_DirectDebtorReceiptsQuery setGlLedgerIDContains(String value) { this.GLLedgerIDContains = value; return this; } public String getGlLedgerIDLike() { return GLLedgerIDLike; } public BR_DirectDebtorReceiptsQuery setGlLedgerIDLike(String value) { this.GLLedgerIDLike = value; return this; } public ArrayList getGlLedgerIDBetween() { return GLLedgerIDBetween; } public BR_DirectDebtorReceiptsQuery setGlLedgerIDBetween(ArrayList value) { this.GLLedgerIDBetween = value; return this; } public ArrayList getGlLedgerIDIn() { return GLLedgerIDIn; } public BR_DirectDebtorReceiptsQuery setGlLedgerIDIn(ArrayList value) { this.GLLedgerIDIn = value; return this; } public String getDebtorID() { return DebtorID; } public BR_DirectDebtorReceiptsQuery setDebtorID(String value) { this.DebtorID = value; return this; } public String getDebtorIDStartsWith() { return DebtorIDStartsWith; } public BR_DirectDebtorReceiptsQuery setDebtorIDStartsWith(String value) { this.DebtorIDStartsWith = value; return this; } public String getDebtorIDEndsWith() { return DebtorIDEndsWith; } public BR_DirectDebtorReceiptsQuery setDebtorIDEndsWith(String value) { this.DebtorIDEndsWith = value; return this; } public String getDebtorIDContains() { return DebtorIDContains; } public BR_DirectDebtorReceiptsQuery setDebtorIDContains(String value) { this.DebtorIDContains = value; return this; } public String getDebtorIDLike() { return DebtorIDLike; } public BR_DirectDebtorReceiptsQuery setDebtorIDLike(String value) { this.DebtorIDLike = value; return this; } public ArrayList getDebtorIDBetween() { return DebtorIDBetween; } public BR_DirectDebtorReceiptsQuery setDebtorIDBetween(ArrayList value) { this.DebtorIDBetween = value; return this; } public ArrayList getDebtorIDIn() { return DebtorIDIn; } public BR_DirectDebtorReceiptsQuery setDebtorIDIn(ArrayList value) { this.DebtorIDIn = value; return this; } public String getDiscountGLLedgerID() { return DiscountGLLedgerID; } public BR_DirectDebtorReceiptsQuery setDiscountGLLedgerID(String value) { this.DiscountGLLedgerID = value; return this; } public String getDiscountGLLedgerIDStartsWith() { return DiscountGLLedgerIDStartsWith; } public BR_DirectDebtorReceiptsQuery setDiscountGLLedgerIDStartsWith(String value) { this.DiscountGLLedgerIDStartsWith = value; return this; } public String getDiscountGLLedgerIDEndsWith() { return DiscountGLLedgerIDEndsWith; } public BR_DirectDebtorReceiptsQuery setDiscountGLLedgerIDEndsWith(String value) { this.DiscountGLLedgerIDEndsWith = value; return this; } public String getDiscountGLLedgerIDContains() { return DiscountGLLedgerIDContains; } public BR_DirectDebtorReceiptsQuery setDiscountGLLedgerIDContains(String value) { this.DiscountGLLedgerIDContains = value; return this; } public String getDiscountGLLedgerIDLike() { return DiscountGLLedgerIDLike; } public BR_DirectDebtorReceiptsQuery setDiscountGLLedgerIDLike(String value) { this.DiscountGLLedgerIDLike = value; return this; } public ArrayList getDiscountGLLedgerIDBetween() { return DiscountGLLedgerIDBetween; } public BR_DirectDebtorReceiptsQuery setDiscountGLLedgerIDBetween(ArrayList value) { this.DiscountGLLedgerIDBetween = value; return this; } public ArrayList getDiscountGLLedgerIDIn() { return DiscountGLLedgerIDIn; } public BR_DirectDebtorReceiptsQuery setDiscountGLLedgerIDIn(ArrayList value) { this.DiscountGLLedgerIDIn = value; return this; } public BigDecimal getDiscountAmountIncGST() { return DiscountAmountIncGST; } public BR_DirectDebtorReceiptsQuery setDiscountAmountIncGST(BigDecimal value) { this.DiscountAmountIncGST = value; return this; } public BigDecimal getDiscountAmountIncGSTGreaterThanOrEqualTo() { return DiscountAmountIncGSTGreaterThanOrEqualTo; } public BR_DirectDebtorReceiptsQuery setDiscountAmountIncGSTGreaterThanOrEqualTo(BigDecimal value) { this.DiscountAmountIncGSTGreaterThanOrEqualTo = value; return this; } public BigDecimal getDiscountAmountIncGSTGreaterThan() { return DiscountAmountIncGSTGreaterThan; } public BR_DirectDebtorReceiptsQuery setDiscountAmountIncGSTGreaterThan(BigDecimal value) { this.DiscountAmountIncGSTGreaterThan = value; return this; } public BigDecimal getDiscountAmountIncGSTLessThan() { return DiscountAmountIncGSTLessThan; } public BR_DirectDebtorReceiptsQuery setDiscountAmountIncGSTLessThan(BigDecimal value) { this.DiscountAmountIncGSTLessThan = value; return this; } public BigDecimal getDiscountAmountIncGSTLessThanOrEqualTo() { return DiscountAmountIncGSTLessThanOrEqualTo; } public BR_DirectDebtorReceiptsQuery setDiscountAmountIncGSTLessThanOrEqualTo(BigDecimal value) { this.DiscountAmountIncGSTLessThanOrEqualTo = value; return this; } public BigDecimal getDiscountAmountIncGSTNotEqualTo() { return DiscountAmountIncGSTNotEqualTo; } public BR_DirectDebtorReceiptsQuery setDiscountAmountIncGSTNotEqualTo(BigDecimal value) { this.DiscountAmountIncGSTNotEqualTo = value; return this; } public ArrayList getDiscountAmountIncGSTBetween() { return DiscountAmountIncGSTBetween; } public BR_DirectDebtorReceiptsQuery setDiscountAmountIncGSTBetween(ArrayList value) { this.DiscountAmountIncGSTBetween = value; return this; } public ArrayList getDiscountAmountIncGSTIn() { return DiscountAmountIncGSTIn; } public BR_DirectDebtorReceiptsQuery setDiscountAmountIncGSTIn(ArrayList value) { this.DiscountAmountIncGSTIn = value; return this; } public String getParentDebtorID() { return ParentDebtorID; } public BR_DirectDebtorReceiptsQuery setParentDebtorID(String value) { this.ParentDebtorID = value; return this; } public String getParentDebtorIDStartsWith() { return ParentDebtorIDStartsWith; } public BR_DirectDebtorReceiptsQuery setParentDebtorIDStartsWith(String value) { this.ParentDebtorIDStartsWith = value; return this; } public String getParentDebtorIDEndsWith() { return ParentDebtorIDEndsWith; } public BR_DirectDebtorReceiptsQuery setParentDebtorIDEndsWith(String value) { this.ParentDebtorIDEndsWith = value; return this; } public String getParentDebtorIDContains() { return ParentDebtorIDContains; } public BR_DirectDebtorReceiptsQuery setParentDebtorIDContains(String value) { this.ParentDebtorIDContains = value; return this; } public String getParentDebtorIDLike() { return ParentDebtorIDLike; } public BR_DirectDebtorReceiptsQuery setParentDebtorIDLike(String value) { this.ParentDebtorIDLike = value; return this; } public ArrayList getParentDebtorIDBetween() { return ParentDebtorIDBetween; } public BR_DirectDebtorReceiptsQuery setParentDebtorIDBetween(ArrayList value) { this.ParentDebtorIDBetween = value; return this; } public ArrayList getParentDebtorIDIn() { return ParentDebtorIDIn; } public BR_DirectDebtorReceiptsQuery setParentDebtorIDIn(ArrayList value) { this.ParentDebtorIDIn = value; return this; } public String getBankName() { return BankName; } public BR_DirectDebtorReceiptsQuery setBankName(String value) { this.BankName = value; return this; } public String getBankNameStartsWith() { return BankNameStartsWith; } public BR_DirectDebtorReceiptsQuery setBankNameStartsWith(String value) { this.BankNameStartsWith = value; return this; } public String getBankNameEndsWith() { return BankNameEndsWith; } public BR_DirectDebtorReceiptsQuery setBankNameEndsWith(String value) { this.BankNameEndsWith = value; return this; } public String getBankNameContains() { return BankNameContains; } public BR_DirectDebtorReceiptsQuery setBankNameContains(String value) { this.BankNameContains = value; return this; } public String getBankNameLike() { return BankNameLike; } public BR_DirectDebtorReceiptsQuery setBankNameLike(String value) { this.BankNameLike = value; return this; } public ArrayList getBankNameBetween() { return BankNameBetween; } public BR_DirectDebtorReceiptsQuery setBankNameBetween(ArrayList value) { this.BankNameBetween = value; return this; } public ArrayList getBankNameIn() { return BankNameIn; } public BR_DirectDebtorReceiptsQuery setBankNameIn(ArrayList value) { this.BankNameIn = value; return this; } public String getBankAccountNo() { return BankAccountNo; } public BR_DirectDebtorReceiptsQuery setBankAccountNo(String value) { this.BankAccountNo = value; return this; } public String getBankAccountNoStartsWith() { return BankAccountNoStartsWith; } public BR_DirectDebtorReceiptsQuery setBankAccountNoStartsWith(String value) { this.BankAccountNoStartsWith = value; return this; } public String getBankAccountNoEndsWith() { return BankAccountNoEndsWith; } public BR_DirectDebtorReceiptsQuery setBankAccountNoEndsWith(String value) { this.BankAccountNoEndsWith = value; return this; } public String getBankAccountNoContains() { return BankAccountNoContains; } public BR_DirectDebtorReceiptsQuery setBankAccountNoContains(String value) { this.BankAccountNoContains = value; return this; } public String getBankAccountNoLike() { return BankAccountNoLike; } public BR_DirectDebtorReceiptsQuery setBankAccountNoLike(String value) { this.BankAccountNoLike = value; return this; } public ArrayList getBankAccountNoBetween() { return BankAccountNoBetween; } public BR_DirectDebtorReceiptsQuery setBankAccountNoBetween(ArrayList value) { this.BankAccountNoBetween = value; return this; } public ArrayList getBankAccountNoIn() { return BankAccountNoIn; } public BR_DirectDebtorReceiptsQuery setBankAccountNoIn(ArrayList value) { this.BankAccountNoIn = value; return this; } public String getBsbn() { return BSBN; } public BR_DirectDebtorReceiptsQuery setBsbn(String value) { this.BSBN = value; return this; } public String getBsbnStartsWith() { return BSBNStartsWith; } public BR_DirectDebtorReceiptsQuery setBsbnStartsWith(String value) { this.BSBNStartsWith = value; return this; } public String getBsbnEndsWith() { return BSBNEndsWith; } public BR_DirectDebtorReceiptsQuery setBsbnEndsWith(String value) { this.BSBNEndsWith = value; return this; } public String getBsbnContains() { return BSBNContains; } public BR_DirectDebtorReceiptsQuery setBsbnContains(String value) { this.BSBNContains = value; return this; } public String getBsbnLike() { return BSBNLike; } public BR_DirectDebtorReceiptsQuery setBsbnLike(String value) { this.BSBNLike = value; return this; } public ArrayList getBsbnBetween() { return BSBNBetween; } public BR_DirectDebtorReceiptsQuery setBsbnBetween(ArrayList value) { this.BSBNBetween = value; return this; } public ArrayList getBsbnIn() { return BSBNIn; } public BR_DirectDebtorReceiptsQuery setBsbnIn(ArrayList value) { this.BSBNIn = value; return this; } public String getBankAccountName() { return BankAccountName; } public BR_DirectDebtorReceiptsQuery setBankAccountName(String value) { this.BankAccountName = value; return this; } public String getBankAccountNameStartsWith() { return BankAccountNameStartsWith; } public BR_DirectDebtorReceiptsQuery setBankAccountNameStartsWith(String value) { this.BankAccountNameStartsWith = value; return this; } public String getBankAccountNameEndsWith() { return BankAccountNameEndsWith; } public BR_DirectDebtorReceiptsQuery setBankAccountNameEndsWith(String value) { this.BankAccountNameEndsWith = value; return this; } public String getBankAccountNameContains() { return BankAccountNameContains; } public BR_DirectDebtorReceiptsQuery setBankAccountNameContains(String value) { this.BankAccountNameContains = value; return this; } public String getBankAccountNameLike() { return BankAccountNameLike; } public BR_DirectDebtorReceiptsQuery setBankAccountNameLike(String value) { this.BankAccountNameLike = value; return this; } public ArrayList getBankAccountNameBetween() { return BankAccountNameBetween; } public BR_DirectDebtorReceiptsQuery setBankAccountNameBetween(ArrayList value) { this.BankAccountNameBetween = value; return this; } public ArrayList getBankAccountNameIn() { return BankAccountNameIn; } public BR_DirectDebtorReceiptsQuery setBankAccountNameIn(ArrayList value) { this.BankAccountNameIn = value; return this; } public String getDiscountTaxID() { return DiscountTaxID; } public BR_DirectDebtorReceiptsQuery setDiscountTaxID(String value) { this.DiscountTaxID = value; return this; } public String getDiscountTaxIDStartsWith() { return DiscountTaxIDStartsWith; } public BR_DirectDebtorReceiptsQuery setDiscountTaxIDStartsWith(String value) { this.DiscountTaxIDStartsWith = value; return this; } public String getDiscountTaxIDEndsWith() { return DiscountTaxIDEndsWith; } public BR_DirectDebtorReceiptsQuery setDiscountTaxIDEndsWith(String value) { this.DiscountTaxIDEndsWith = value; return this; } public String getDiscountTaxIDContains() { return DiscountTaxIDContains; } public BR_DirectDebtorReceiptsQuery setDiscountTaxIDContains(String value) { this.DiscountTaxIDContains = value; return this; } public String getDiscountTaxIDLike() { return DiscountTaxIDLike; } public BR_DirectDebtorReceiptsQuery setDiscountTaxIDLike(String value) { this.DiscountTaxIDLike = value; return this; } public ArrayList getDiscountTaxIDBetween() { return DiscountTaxIDBetween; } public BR_DirectDebtorReceiptsQuery setDiscountTaxIDBetween(ArrayList value) { this.DiscountTaxIDBetween = value; return this; } public ArrayList getDiscountTaxIDIn() { return DiscountTaxIDIn; } public BR_DirectDebtorReceiptsQuery setDiscountTaxIDIn(ArrayList value) { this.DiscountTaxIDIn = value; return this; } public BigDecimal getDiscountTaxAmount() { return DiscountTaxAmount; } public BR_DirectDebtorReceiptsQuery setDiscountTaxAmount(BigDecimal value) { this.DiscountTaxAmount = value; return this; } public BigDecimal getDiscountTaxAmountGreaterThanOrEqualTo() { return DiscountTaxAmountGreaterThanOrEqualTo; } public BR_DirectDebtorReceiptsQuery setDiscountTaxAmountGreaterThanOrEqualTo(BigDecimal value) { this.DiscountTaxAmountGreaterThanOrEqualTo = value; return this; } public BigDecimal getDiscountTaxAmountGreaterThan() { return DiscountTaxAmountGreaterThan; } public BR_DirectDebtorReceiptsQuery setDiscountTaxAmountGreaterThan(BigDecimal value) { this.DiscountTaxAmountGreaterThan = value; return this; } public BigDecimal getDiscountTaxAmountLessThan() { return DiscountTaxAmountLessThan; } public BR_DirectDebtorReceiptsQuery setDiscountTaxAmountLessThan(BigDecimal value) { this.DiscountTaxAmountLessThan = value; return this; } public BigDecimal getDiscountTaxAmountLessThanOrEqualTo() { return DiscountTaxAmountLessThanOrEqualTo; } public BR_DirectDebtorReceiptsQuery setDiscountTaxAmountLessThanOrEqualTo(BigDecimal value) { this.DiscountTaxAmountLessThanOrEqualTo = value; return this; } public BigDecimal getDiscountTaxAmountNotEqualTo() { return DiscountTaxAmountNotEqualTo; } public BR_DirectDebtorReceiptsQuery setDiscountTaxAmountNotEqualTo(BigDecimal value) { this.DiscountTaxAmountNotEqualTo = value; return this; } public ArrayList getDiscountTaxAmountBetween() { return DiscountTaxAmountBetween; } public BR_DirectDebtorReceiptsQuery setDiscountTaxAmountBetween(ArrayList value) { this.DiscountTaxAmountBetween = value; return this; } public ArrayList getDiscountTaxAmountIn() { return DiscountTaxAmountIn; } public BR_DirectDebtorReceiptsQuery setDiscountTaxAmountIn(ArrayList value) { this.DiscountTaxAmountIn = value; return this; } public BigDecimal getDiscountTaxRate() { return DiscountTaxRate; } public BR_DirectDebtorReceiptsQuery setDiscountTaxRate(BigDecimal value) { this.DiscountTaxRate = value; return this; } public BigDecimal getDiscountTaxRateGreaterThanOrEqualTo() { return DiscountTaxRateGreaterThanOrEqualTo; } public BR_DirectDebtorReceiptsQuery setDiscountTaxRateGreaterThanOrEqualTo(BigDecimal value) { this.DiscountTaxRateGreaterThanOrEqualTo = value; return this; } public BigDecimal getDiscountTaxRateGreaterThan() { return DiscountTaxRateGreaterThan; } public BR_DirectDebtorReceiptsQuery setDiscountTaxRateGreaterThan(BigDecimal value) { this.DiscountTaxRateGreaterThan = value; return this; } public BigDecimal getDiscountTaxRateLessThan() { return DiscountTaxRateLessThan; } public BR_DirectDebtorReceiptsQuery setDiscountTaxRateLessThan(BigDecimal value) { this.DiscountTaxRateLessThan = value; return this; } public BigDecimal getDiscountTaxRateLessThanOrEqualTo() { return DiscountTaxRateLessThanOrEqualTo; } public BR_DirectDebtorReceiptsQuery setDiscountTaxRateLessThanOrEqualTo(BigDecimal value) { this.DiscountTaxRateLessThanOrEqualTo = value; return this; } public BigDecimal getDiscountTaxRateNotEqualTo() { return DiscountTaxRateNotEqualTo; } public BR_DirectDebtorReceiptsQuery setDiscountTaxRateNotEqualTo(BigDecimal value) { this.DiscountTaxRateNotEqualTo = value; return this; } public ArrayList getDiscountTaxRateBetween() { return DiscountTaxRateBetween; } public BR_DirectDebtorReceiptsQuery setDiscountTaxRateBetween(ArrayList value) { this.DiscountTaxRateBetween = value; return this; } public ArrayList getDiscountTaxRateIn() { return DiscountTaxRateIn; } public BR_DirectDebtorReceiptsQuery setDiscountTaxRateIn(ArrayList value) { this.DiscountTaxRateIn = value; return this; } public BigDecimal getAmountReconciledIncGST() { return AmountReconciledIncGST; } public BR_DirectDebtorReceiptsQuery setAmountReconciledIncGST(BigDecimal value) { this.AmountReconciledIncGST = value; return this; } public BigDecimal getAmountReconciledIncGSTGreaterThanOrEqualTo() { return AmountReconciledIncGSTGreaterThanOrEqualTo; } public BR_DirectDebtorReceiptsQuery setAmountReconciledIncGSTGreaterThanOrEqualTo(BigDecimal value) { this.AmountReconciledIncGSTGreaterThanOrEqualTo = value; return this; } public BigDecimal getAmountReconciledIncGSTGreaterThan() { return AmountReconciledIncGSTGreaterThan; } public BR_DirectDebtorReceiptsQuery setAmountReconciledIncGSTGreaterThan(BigDecimal value) { this.AmountReconciledIncGSTGreaterThan = value; return this; } public BigDecimal getAmountReconciledIncGSTLessThan() { return AmountReconciledIncGSTLessThan; } public BR_DirectDebtorReceiptsQuery setAmountReconciledIncGSTLessThan(BigDecimal value) { this.AmountReconciledIncGSTLessThan = value; return this; } public BigDecimal getAmountReconciledIncGSTLessThanOrEqualTo() { return AmountReconciledIncGSTLessThanOrEqualTo; } public BR_DirectDebtorReceiptsQuery setAmountReconciledIncGSTLessThanOrEqualTo(BigDecimal value) { this.AmountReconciledIncGSTLessThanOrEqualTo = value; return this; } public BigDecimal getAmountReconciledIncGSTNotEqualTo() { return AmountReconciledIncGSTNotEqualTo; } public BR_DirectDebtorReceiptsQuery setAmountReconciledIncGSTNotEqualTo(BigDecimal value) { this.AmountReconciledIncGSTNotEqualTo = value; return this; } public ArrayList getAmountReconciledIncGSTBetween() { return AmountReconciledIncGSTBetween; } public BR_DirectDebtorReceiptsQuery setAmountReconciledIncGSTBetween(ArrayList value) { this.AmountReconciledIncGSTBetween = value; return this; } public ArrayList getAmountReconciledIncGSTIn() { return AmountReconciledIncGSTIn; } public BR_DirectDebtorReceiptsQuery setAmountReconciledIncGSTIn(ArrayList value) { this.AmountReconciledIncGSTIn = value; return this; } public String getReference() { return Reference; } public BR_DirectDebtorReceiptsQuery setReference(String value) { this.Reference = value; return this; } public String getReferenceStartsWith() { return ReferenceStartsWith; } public BR_DirectDebtorReceiptsQuery setReferenceStartsWith(String value) { this.ReferenceStartsWith = value; return this; } public String getReferenceEndsWith() { return ReferenceEndsWith; } public BR_DirectDebtorReceiptsQuery setReferenceEndsWith(String value) { this.ReferenceEndsWith = value; return this; } public String getReferenceContains() { return ReferenceContains; } public BR_DirectDebtorReceiptsQuery setReferenceContains(String value) { this.ReferenceContains = value; return this; } public String getReferenceLike() { return ReferenceLike; } public BR_DirectDebtorReceiptsQuery setReferenceLike(String value) { this.ReferenceLike = value; return this; } public ArrayList getReferenceBetween() { return ReferenceBetween; } public BR_DirectDebtorReceiptsQuery setReferenceBetween(ArrayList value) { this.ReferenceBetween = value; return this; } public ArrayList getReferenceIn() { return ReferenceIn; } public BR_DirectDebtorReceiptsQuery setReferenceIn(ArrayList value) { this.ReferenceIn = value; return this; } public String getReceiptTypeID() { return ReceiptTypeID; } public BR_DirectDebtorReceiptsQuery setReceiptTypeID(String value) { this.ReceiptTypeID = value; return this; } public String getReceiptTypeIDStartsWith() { return ReceiptTypeIDStartsWith; } public BR_DirectDebtorReceiptsQuery setReceiptTypeIDStartsWith(String value) { this.ReceiptTypeIDStartsWith = value; return this; } public String getReceiptTypeIDEndsWith() { return ReceiptTypeIDEndsWith; } public BR_DirectDebtorReceiptsQuery setReceiptTypeIDEndsWith(String value) { this.ReceiptTypeIDEndsWith = value; return this; } public String getReceiptTypeIDContains() { return ReceiptTypeIDContains; } public BR_DirectDebtorReceiptsQuery setReceiptTypeIDContains(String value) { this.ReceiptTypeIDContains = value; return this; } public String getReceiptTypeIDLike() { return ReceiptTypeIDLike; } public BR_DirectDebtorReceiptsQuery setReceiptTypeIDLike(String value) { this.ReceiptTypeIDLike = value; return this; } public ArrayList getReceiptTypeIDBetween() { return ReceiptTypeIDBetween; } public BR_DirectDebtorReceiptsQuery setReceiptTypeIDBetween(ArrayList value) { this.ReceiptTypeIDBetween = value; return this; } public ArrayList getReceiptTypeIDIn() { return ReceiptTypeIDIn; } public BR_DirectDebtorReceiptsQuery setReceiptTypeIDIn(ArrayList value) { this.ReceiptTypeIDIn = value; return this; } public String getRemitNo() { return RemitNo; } public BR_DirectDebtorReceiptsQuery setRemitNo(String value) { this.RemitNo = value; return this; } public String getRemitNoStartsWith() { return RemitNoStartsWith; } public BR_DirectDebtorReceiptsQuery setRemitNoStartsWith(String value) { this.RemitNoStartsWith = value; return this; } public String getRemitNoEndsWith() { return RemitNoEndsWith; } public BR_DirectDebtorReceiptsQuery setRemitNoEndsWith(String value) { this.RemitNoEndsWith = value; return this; } public String getRemitNoContains() { return RemitNoContains; } public BR_DirectDebtorReceiptsQuery setRemitNoContains(String value) { this.RemitNoContains = value; return this; } public String getRemitNoLike() { return RemitNoLike; } public BR_DirectDebtorReceiptsQuery setRemitNoLike(String value) { this.RemitNoLike = value; return this; } public ArrayList getRemitNoBetween() { return RemitNoBetween; } public BR_DirectDebtorReceiptsQuery setRemitNoBetween(ArrayList value) { this.RemitNoBetween = value; return this; } public ArrayList getRemitNoIn() { return RemitNoIn; } public BR_DirectDebtorReceiptsQuery setRemitNoIn(ArrayList value) { this.RemitNoIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class BR_DirectGLTransactionsQuery extends QueryDb implements IReturn> { public String DirectGLTransactionID = null; public String DirectGLTransactionIDStartsWith = null; public String DirectGLTransactionIDEndsWith = null; public String DirectGLTransactionIDContains = null; public String DirectGLTransactionIDLike = null; public ArrayList DirectGLTransactionIDBetween = null; public ArrayList DirectGLTransactionIDIn = null; public String BankRecID = null; public String BankRecIDStartsWith = null; public String BankRecIDEndsWith = null; public String BankRecIDContains = null; public String BankRecIDLike = null; public ArrayList BankRecIDBetween = null; public ArrayList BankRecIDIn = null; public String CreatedByStaffID = null; public String CreatedByStaffIDStartsWith = null; public String CreatedByStaffIDEndsWith = null; public String CreatedByStaffIDContains = null; public String CreatedByStaffIDLike = null; public ArrayList CreatedByStaffIDBetween = null; public ArrayList CreatedByStaffIDIn = null; public Date CreatedDateTime = null; public Date CreatedDateTimeGreaterThanOrEqualTo = null; public Date CreatedDateTimeGreaterThan = null; public Date CreatedDateTimeLessThan = null; public Date CreatedDateTimeLessThanOrEqualTo = null; public Date CreatedDateTimeNotEqualTo = null; public ArrayList CreatedDateTimeBetween = null; public ArrayList CreatedDateTimeIn = null; public String LastSavedByStaffID = null; public String LastSavedByStaffIDStartsWith = null; public String LastSavedByStaffIDEndsWith = null; public String LastSavedByStaffIDContains = null; public String LastSavedByStaffIDLike = null; public ArrayList LastSavedByStaffIDBetween = null; public ArrayList LastSavedByStaffIDIn = null; public Date LastSavedDateTime = null; public Date LastSavedDateTimeGreaterThanOrEqualTo = null; public Date LastSavedDateTimeGreaterThan = null; public Date LastSavedDateTimeLessThan = null; public Date LastSavedDateTimeLessThanOrEqualTo = null; public Date LastSavedDateTimeNotEqualTo = null; public ArrayList LastSavedDateTimeBetween = null; public ArrayList LastSavedDateTimeIn = null; public Integer LineNumber = null; public Integer LineNumberGreaterThanOrEqualTo = null; public Integer LineNumberGreaterThan = null; public Integer LineNumberLessThan = null; public Integer LineNumberLessThanOrEqualTo = null; public Integer LineNumberNotEqualTo = null; public ArrayList LineNumberBetween = null; public ArrayList LineNumberIn = null; public Date TransactionDateTime = null; public Date TransactionDateTimeGreaterThanOrEqualTo = null; public Date TransactionDateTimeGreaterThan = null; public Date TransactionDateTimeLessThan = null; public Date TransactionDateTimeLessThanOrEqualTo = null; public Date TransactionDateTimeNotEqualTo = null; public ArrayList TransactionDateTimeBetween = null; public ArrayList TransactionDateTimeIn = null; public BigDecimal AmountIncGST = null; public BigDecimal AmountIncGSTGreaterThanOrEqualTo = null; public BigDecimal AmountIncGSTGreaterThan = null; public BigDecimal AmountIncGSTLessThan = null; public BigDecimal AmountIncGSTLessThanOrEqualTo = null; public BigDecimal AmountIncGSTNotEqualTo = null; public ArrayList AmountIncGSTBetween = null; public ArrayList AmountIncGSTIn = null; public Short DebitCredit = null; public Short DebitCreditGreaterThanOrEqualTo = null; public Short DebitCreditGreaterThan = null; public Short DebitCreditLessThan = null; public Short DebitCreditLessThanOrEqualTo = null; public Short DebitCreditNotEqualTo = null; public ArrayList DebitCreditBetween = null; public ArrayList DebitCreditIn = null; public String Remark = null; public String RemarkStartsWith = null; public String RemarkEndsWith = null; public String RemarkContains = null; public String RemarkLike = null; public ArrayList RemarkBetween = null; public ArrayList RemarkIn = null; public Short Status = null; public Short StatusGreaterThanOrEqualTo = null; public Short StatusGreaterThan = null; public Short StatusLessThan = null; public Short StatusLessThanOrEqualTo = null; public Short StatusNotEqualTo = null; public ArrayList StatusBetween = null; public ArrayList StatusIn = null; public String GLLedgerID = null; public String GLLedgerIDStartsWith = null; public String GLLedgerIDEndsWith = null; public String GLLedgerIDContains = null; public String GLLedgerIDLike = null; public ArrayList GLLedgerIDBetween = null; public ArrayList GLLedgerIDIn = null; public Short TransactionType = null; public Short TransactionTypeGreaterThanOrEqualTo = null; public Short TransactionTypeGreaterThan = null; public Short TransactionTypeLessThan = null; public Short TransactionTypeLessThanOrEqualTo = null; public Short TransactionTypeNotEqualTo = null; public ArrayList TransactionTypeBetween = null; public ArrayList TransactionTypeIn = null; public String Reference = null; public String ReferenceStartsWith = null; public String ReferenceEndsWith = null; public String ReferenceContains = null; public String ReferenceLike = null; public ArrayList ReferenceBetween = null; public ArrayList ReferenceIn = null; public String PaymentTypeID = null; public String PaymentTypeIDStartsWith = null; public String PaymentTypeIDEndsWith = null; public String PaymentTypeIDContains = null; public String PaymentTypeIDLike = null; public ArrayList PaymentTypeIDBetween = null; public ArrayList PaymentTypeIDIn = null; public String TaxID = null; public String TaxIDStartsWith = null; public String TaxIDEndsWith = null; public String TaxIDContains = null; public String TaxIDLike = null; public ArrayList TaxIDBetween = null; public ArrayList TaxIDIn = null; public BigDecimal TaxRate = null; public BigDecimal TaxRateGreaterThanOrEqualTo = null; public BigDecimal TaxRateGreaterThan = null; public BigDecimal TaxRateLessThan = null; public BigDecimal TaxRateLessThanOrEqualTo = null; public BigDecimal TaxRateNotEqualTo = null; public ArrayList TaxRateBetween = null; public ArrayList TaxRateIn = null; public BigDecimal TaxAmount = null; public BigDecimal TaxAmountGreaterThanOrEqualTo = null; public BigDecimal TaxAmountGreaterThan = null; public BigDecimal TaxAmountLessThan = null; public BigDecimal TaxAmountLessThanOrEqualTo = null; public BigDecimal TaxAmountNotEqualTo = null; public ArrayList TaxAmountBetween = null; public ArrayList TaxAmountIn = null; public BigDecimal AmountReconciledIncGST = null; public BigDecimal AmountReconciledIncGSTGreaterThanOrEqualTo = null; public BigDecimal AmountReconciledIncGSTGreaterThan = null; public BigDecimal AmountReconciledIncGSTLessThan = null; public BigDecimal AmountReconciledIncGSTLessThanOrEqualTo = null; public BigDecimal AmountReconciledIncGSTNotEqualTo = null; public ArrayList AmountReconciledIncGSTBetween = null; public ArrayList AmountReconciledIncGSTIn = null; public String getDirectGLTransactionID() { return DirectGLTransactionID; } public BR_DirectGLTransactionsQuery setDirectGLTransactionID(String value) { this.DirectGLTransactionID = value; return this; } public String getDirectGLTransactionIDStartsWith() { return DirectGLTransactionIDStartsWith; } public BR_DirectGLTransactionsQuery setDirectGLTransactionIDStartsWith(String value) { this.DirectGLTransactionIDStartsWith = value; return this; } public String getDirectGLTransactionIDEndsWith() { return DirectGLTransactionIDEndsWith; } public BR_DirectGLTransactionsQuery setDirectGLTransactionIDEndsWith(String value) { this.DirectGLTransactionIDEndsWith = value; return this; } public String getDirectGLTransactionIDContains() { return DirectGLTransactionIDContains; } public BR_DirectGLTransactionsQuery setDirectGLTransactionIDContains(String value) { this.DirectGLTransactionIDContains = value; return this; } public String getDirectGLTransactionIDLike() { return DirectGLTransactionIDLike; } public BR_DirectGLTransactionsQuery setDirectGLTransactionIDLike(String value) { this.DirectGLTransactionIDLike = value; return this; } public ArrayList getDirectGLTransactionIDBetween() { return DirectGLTransactionIDBetween; } public BR_DirectGLTransactionsQuery setDirectGLTransactionIDBetween(ArrayList value) { this.DirectGLTransactionIDBetween = value; return this; } public ArrayList getDirectGLTransactionIDIn() { return DirectGLTransactionIDIn; } public BR_DirectGLTransactionsQuery setDirectGLTransactionIDIn(ArrayList value) { this.DirectGLTransactionIDIn = value; return this; } public String getBankRecID() { return BankRecID; } public BR_DirectGLTransactionsQuery setBankRecID(String value) { this.BankRecID = value; return this; } public String getBankRecIDStartsWith() { return BankRecIDStartsWith; } public BR_DirectGLTransactionsQuery setBankRecIDStartsWith(String value) { this.BankRecIDStartsWith = value; return this; } public String getBankRecIDEndsWith() { return BankRecIDEndsWith; } public BR_DirectGLTransactionsQuery setBankRecIDEndsWith(String value) { this.BankRecIDEndsWith = value; return this; } public String getBankRecIDContains() { return BankRecIDContains; } public BR_DirectGLTransactionsQuery setBankRecIDContains(String value) { this.BankRecIDContains = value; return this; } public String getBankRecIDLike() { return BankRecIDLike; } public BR_DirectGLTransactionsQuery setBankRecIDLike(String value) { this.BankRecIDLike = value; return this; } public ArrayList getBankRecIDBetween() { return BankRecIDBetween; } public BR_DirectGLTransactionsQuery setBankRecIDBetween(ArrayList value) { this.BankRecIDBetween = value; return this; } public ArrayList getBankRecIDIn() { return BankRecIDIn; } public BR_DirectGLTransactionsQuery setBankRecIDIn(ArrayList value) { this.BankRecIDIn = value; return this; } public String getCreatedByStaffID() { return CreatedByStaffID; } public BR_DirectGLTransactionsQuery setCreatedByStaffID(String value) { this.CreatedByStaffID = value; return this; } public String getCreatedByStaffIDStartsWith() { return CreatedByStaffIDStartsWith; } public BR_DirectGLTransactionsQuery setCreatedByStaffIDStartsWith(String value) { this.CreatedByStaffIDStartsWith = value; return this; } public String getCreatedByStaffIDEndsWith() { return CreatedByStaffIDEndsWith; } public BR_DirectGLTransactionsQuery setCreatedByStaffIDEndsWith(String value) { this.CreatedByStaffIDEndsWith = value; return this; } public String getCreatedByStaffIDContains() { return CreatedByStaffIDContains; } public BR_DirectGLTransactionsQuery setCreatedByStaffIDContains(String value) { this.CreatedByStaffIDContains = value; return this; } public String getCreatedByStaffIDLike() { return CreatedByStaffIDLike; } public BR_DirectGLTransactionsQuery setCreatedByStaffIDLike(String value) { this.CreatedByStaffIDLike = value; return this; } public ArrayList getCreatedByStaffIDBetween() { return CreatedByStaffIDBetween; } public BR_DirectGLTransactionsQuery setCreatedByStaffIDBetween(ArrayList value) { this.CreatedByStaffIDBetween = value; return this; } public ArrayList getCreatedByStaffIDIn() { return CreatedByStaffIDIn; } public BR_DirectGLTransactionsQuery setCreatedByStaffIDIn(ArrayList value) { this.CreatedByStaffIDIn = value; return this; } public Date getCreatedDateTime() { return CreatedDateTime; } public BR_DirectGLTransactionsQuery setCreatedDateTime(Date value) { this.CreatedDateTime = value; return this; } public Date getCreatedDateTimeGreaterThanOrEqualTo() { return CreatedDateTimeGreaterThanOrEqualTo; } public BR_DirectGLTransactionsQuery setCreatedDateTimeGreaterThanOrEqualTo(Date value) { this.CreatedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getCreatedDateTimeGreaterThan() { return CreatedDateTimeGreaterThan; } public BR_DirectGLTransactionsQuery setCreatedDateTimeGreaterThan(Date value) { this.CreatedDateTimeGreaterThan = value; return this; } public Date getCreatedDateTimeLessThan() { return CreatedDateTimeLessThan; } public BR_DirectGLTransactionsQuery setCreatedDateTimeLessThan(Date value) { this.CreatedDateTimeLessThan = value; return this; } public Date getCreatedDateTimeLessThanOrEqualTo() { return CreatedDateTimeLessThanOrEqualTo; } public BR_DirectGLTransactionsQuery setCreatedDateTimeLessThanOrEqualTo(Date value) { this.CreatedDateTimeLessThanOrEqualTo = value; return this; } public Date getCreatedDateTimeNotEqualTo() { return CreatedDateTimeNotEqualTo; } public BR_DirectGLTransactionsQuery setCreatedDateTimeNotEqualTo(Date value) { this.CreatedDateTimeNotEqualTo = value; return this; } public ArrayList getCreatedDateTimeBetween() { return CreatedDateTimeBetween; } public BR_DirectGLTransactionsQuery setCreatedDateTimeBetween(ArrayList value) { this.CreatedDateTimeBetween = value; return this; } public ArrayList getCreatedDateTimeIn() { return CreatedDateTimeIn; } public BR_DirectGLTransactionsQuery setCreatedDateTimeIn(ArrayList value) { this.CreatedDateTimeIn = value; return this; } public String getLastSavedByStaffID() { return LastSavedByStaffID; } public BR_DirectGLTransactionsQuery setLastSavedByStaffID(String value) { this.LastSavedByStaffID = value; return this; } public String getLastSavedByStaffIDStartsWith() { return LastSavedByStaffIDStartsWith; } public BR_DirectGLTransactionsQuery setLastSavedByStaffIDStartsWith(String value) { this.LastSavedByStaffIDStartsWith = value; return this; } public String getLastSavedByStaffIDEndsWith() { return LastSavedByStaffIDEndsWith; } public BR_DirectGLTransactionsQuery setLastSavedByStaffIDEndsWith(String value) { this.LastSavedByStaffIDEndsWith = value; return this; } public String getLastSavedByStaffIDContains() { return LastSavedByStaffIDContains; } public BR_DirectGLTransactionsQuery setLastSavedByStaffIDContains(String value) { this.LastSavedByStaffIDContains = value; return this; } public String getLastSavedByStaffIDLike() { return LastSavedByStaffIDLike; } public BR_DirectGLTransactionsQuery setLastSavedByStaffIDLike(String value) { this.LastSavedByStaffIDLike = value; return this; } public ArrayList getLastSavedByStaffIDBetween() { return LastSavedByStaffIDBetween; } public BR_DirectGLTransactionsQuery setLastSavedByStaffIDBetween(ArrayList value) { this.LastSavedByStaffIDBetween = value; return this; } public ArrayList getLastSavedByStaffIDIn() { return LastSavedByStaffIDIn; } public BR_DirectGLTransactionsQuery setLastSavedByStaffIDIn(ArrayList value) { this.LastSavedByStaffIDIn = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public BR_DirectGLTransactionsQuery setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getLastSavedDateTimeGreaterThanOrEqualTo() { return LastSavedDateTimeGreaterThanOrEqualTo; } public BR_DirectGLTransactionsQuery setLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.LastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeGreaterThan() { return LastSavedDateTimeGreaterThan; } public BR_DirectGLTransactionsQuery setLastSavedDateTimeGreaterThan(Date value) { this.LastSavedDateTimeGreaterThan = value; return this; } public Date getLastSavedDateTimeLessThan() { return LastSavedDateTimeLessThan; } public BR_DirectGLTransactionsQuery setLastSavedDateTimeLessThan(Date value) { this.LastSavedDateTimeLessThan = value; return this; } public Date getLastSavedDateTimeLessThanOrEqualTo() { return LastSavedDateTimeLessThanOrEqualTo; } public BR_DirectGLTransactionsQuery setLastSavedDateTimeLessThanOrEqualTo(Date value) { this.LastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeNotEqualTo() { return LastSavedDateTimeNotEqualTo; } public BR_DirectGLTransactionsQuery setLastSavedDateTimeNotEqualTo(Date value) { this.LastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getLastSavedDateTimeBetween() { return LastSavedDateTimeBetween; } public BR_DirectGLTransactionsQuery setLastSavedDateTimeBetween(ArrayList value) { this.LastSavedDateTimeBetween = value; return this; } public ArrayList getLastSavedDateTimeIn() { return LastSavedDateTimeIn; } public BR_DirectGLTransactionsQuery setLastSavedDateTimeIn(ArrayList value) { this.LastSavedDateTimeIn = value; return this; } public Integer getLineNumber() { return LineNumber; } public BR_DirectGLTransactionsQuery setLineNumber(Integer value) { this.LineNumber = value; return this; } public Integer getLineNumberGreaterThanOrEqualTo() { return LineNumberGreaterThanOrEqualTo; } public BR_DirectGLTransactionsQuery setLineNumberGreaterThanOrEqualTo(Integer value) { this.LineNumberGreaterThanOrEqualTo = value; return this; } public Integer getLineNumberGreaterThan() { return LineNumberGreaterThan; } public BR_DirectGLTransactionsQuery setLineNumberGreaterThan(Integer value) { this.LineNumberGreaterThan = value; return this; } public Integer getLineNumberLessThan() { return LineNumberLessThan; } public BR_DirectGLTransactionsQuery setLineNumberLessThan(Integer value) { this.LineNumberLessThan = value; return this; } public Integer getLineNumberLessThanOrEqualTo() { return LineNumberLessThanOrEqualTo; } public BR_DirectGLTransactionsQuery setLineNumberLessThanOrEqualTo(Integer value) { this.LineNumberLessThanOrEqualTo = value; return this; } public Integer getLineNumberNotEqualTo() { return LineNumberNotEqualTo; } public BR_DirectGLTransactionsQuery setLineNumberNotEqualTo(Integer value) { this.LineNumberNotEqualTo = value; return this; } public ArrayList getLineNumberBetween() { return LineNumberBetween; } public BR_DirectGLTransactionsQuery setLineNumberBetween(ArrayList value) { this.LineNumberBetween = value; return this; } public ArrayList getLineNumberIn() { return LineNumberIn; } public BR_DirectGLTransactionsQuery setLineNumberIn(ArrayList value) { this.LineNumberIn = value; return this; } public Date getTransactionDateTime() { return TransactionDateTime; } public BR_DirectGLTransactionsQuery setTransactionDateTime(Date value) { this.TransactionDateTime = value; return this; } public Date getTransactionDateTimeGreaterThanOrEqualTo() { return TransactionDateTimeGreaterThanOrEqualTo; } public BR_DirectGLTransactionsQuery setTransactionDateTimeGreaterThanOrEqualTo(Date value) { this.TransactionDateTimeGreaterThanOrEqualTo = value; return this; } public Date getTransactionDateTimeGreaterThan() { return TransactionDateTimeGreaterThan; } public BR_DirectGLTransactionsQuery setTransactionDateTimeGreaterThan(Date value) { this.TransactionDateTimeGreaterThan = value; return this; } public Date getTransactionDateTimeLessThan() { return TransactionDateTimeLessThan; } public BR_DirectGLTransactionsQuery setTransactionDateTimeLessThan(Date value) { this.TransactionDateTimeLessThan = value; return this; } public Date getTransactionDateTimeLessThanOrEqualTo() { return TransactionDateTimeLessThanOrEqualTo; } public BR_DirectGLTransactionsQuery setTransactionDateTimeLessThanOrEqualTo(Date value) { this.TransactionDateTimeLessThanOrEqualTo = value; return this; } public Date getTransactionDateTimeNotEqualTo() { return TransactionDateTimeNotEqualTo; } public BR_DirectGLTransactionsQuery setTransactionDateTimeNotEqualTo(Date value) { this.TransactionDateTimeNotEqualTo = value; return this; } public ArrayList getTransactionDateTimeBetween() { return TransactionDateTimeBetween; } public BR_DirectGLTransactionsQuery setTransactionDateTimeBetween(ArrayList value) { this.TransactionDateTimeBetween = value; return this; } public ArrayList getTransactionDateTimeIn() { return TransactionDateTimeIn; } public BR_DirectGLTransactionsQuery setTransactionDateTimeIn(ArrayList value) { this.TransactionDateTimeIn = value; return this; } public BigDecimal getAmountIncGST() { return AmountIncGST; } public BR_DirectGLTransactionsQuery setAmountIncGST(BigDecimal value) { this.AmountIncGST = value; return this; } public BigDecimal getAmountIncGSTGreaterThanOrEqualTo() { return AmountIncGSTGreaterThanOrEqualTo; } public BR_DirectGLTransactionsQuery setAmountIncGSTGreaterThanOrEqualTo(BigDecimal value) { this.AmountIncGSTGreaterThanOrEqualTo = value; return this; } public BigDecimal getAmountIncGSTGreaterThan() { return AmountIncGSTGreaterThan; } public BR_DirectGLTransactionsQuery setAmountIncGSTGreaterThan(BigDecimal value) { this.AmountIncGSTGreaterThan = value; return this; } public BigDecimal getAmountIncGSTLessThan() { return AmountIncGSTLessThan; } public BR_DirectGLTransactionsQuery setAmountIncGSTLessThan(BigDecimal value) { this.AmountIncGSTLessThan = value; return this; } public BigDecimal getAmountIncGSTLessThanOrEqualTo() { return AmountIncGSTLessThanOrEqualTo; } public BR_DirectGLTransactionsQuery setAmountIncGSTLessThanOrEqualTo(BigDecimal value) { this.AmountIncGSTLessThanOrEqualTo = value; return this; } public BigDecimal getAmountIncGSTNotEqualTo() { return AmountIncGSTNotEqualTo; } public BR_DirectGLTransactionsQuery setAmountIncGSTNotEqualTo(BigDecimal value) { this.AmountIncGSTNotEqualTo = value; return this; } public ArrayList getAmountIncGSTBetween() { return AmountIncGSTBetween; } public BR_DirectGLTransactionsQuery setAmountIncGSTBetween(ArrayList value) { this.AmountIncGSTBetween = value; return this; } public ArrayList getAmountIncGSTIn() { return AmountIncGSTIn; } public BR_DirectGLTransactionsQuery setAmountIncGSTIn(ArrayList value) { this.AmountIncGSTIn = value; return this; } public Short getDebitCredit() { return DebitCredit; } public BR_DirectGLTransactionsQuery setDebitCredit(Short value) { this.DebitCredit = value; return this; } public Short getDebitCreditGreaterThanOrEqualTo() { return DebitCreditGreaterThanOrEqualTo; } public BR_DirectGLTransactionsQuery setDebitCreditGreaterThanOrEqualTo(Short value) { this.DebitCreditGreaterThanOrEqualTo = value; return this; } public Short getDebitCreditGreaterThan() { return DebitCreditGreaterThan; } public BR_DirectGLTransactionsQuery setDebitCreditGreaterThan(Short value) { this.DebitCreditGreaterThan = value; return this; } public Short getDebitCreditLessThan() { return DebitCreditLessThan; } public BR_DirectGLTransactionsQuery setDebitCreditLessThan(Short value) { this.DebitCreditLessThan = value; return this; } public Short getDebitCreditLessThanOrEqualTo() { return DebitCreditLessThanOrEqualTo; } public BR_DirectGLTransactionsQuery setDebitCreditLessThanOrEqualTo(Short value) { this.DebitCreditLessThanOrEqualTo = value; return this; } public Short getDebitCreditNotEqualTo() { return DebitCreditNotEqualTo; } public BR_DirectGLTransactionsQuery setDebitCreditNotEqualTo(Short value) { this.DebitCreditNotEqualTo = value; return this; } public ArrayList getDebitCreditBetween() { return DebitCreditBetween; } public BR_DirectGLTransactionsQuery setDebitCreditBetween(ArrayList value) { this.DebitCreditBetween = value; return this; } public ArrayList getDebitCreditIn() { return DebitCreditIn; } public BR_DirectGLTransactionsQuery setDebitCreditIn(ArrayList value) { this.DebitCreditIn = value; return this; } public String getRemark() { return Remark; } public BR_DirectGLTransactionsQuery setRemark(String value) { this.Remark = value; return this; } public String getRemarkStartsWith() { return RemarkStartsWith; } public BR_DirectGLTransactionsQuery setRemarkStartsWith(String value) { this.RemarkStartsWith = value; return this; } public String getRemarkEndsWith() { return RemarkEndsWith; } public BR_DirectGLTransactionsQuery setRemarkEndsWith(String value) { this.RemarkEndsWith = value; return this; } public String getRemarkContains() { return RemarkContains; } public BR_DirectGLTransactionsQuery setRemarkContains(String value) { this.RemarkContains = value; return this; } public String getRemarkLike() { return RemarkLike; } public BR_DirectGLTransactionsQuery setRemarkLike(String value) { this.RemarkLike = value; return this; } public ArrayList getRemarkBetween() { return RemarkBetween; } public BR_DirectGLTransactionsQuery setRemarkBetween(ArrayList value) { this.RemarkBetween = value; return this; } public ArrayList getRemarkIn() { return RemarkIn; } public BR_DirectGLTransactionsQuery setRemarkIn(ArrayList value) { this.RemarkIn = value; return this; } public Short getStatus() { return Status; } public BR_DirectGLTransactionsQuery setStatus(Short value) { this.Status = value; return this; } public Short getStatusGreaterThanOrEqualTo() { return StatusGreaterThanOrEqualTo; } public BR_DirectGLTransactionsQuery setStatusGreaterThanOrEqualTo(Short value) { this.StatusGreaterThanOrEqualTo = value; return this; } public Short getStatusGreaterThan() { return StatusGreaterThan; } public BR_DirectGLTransactionsQuery setStatusGreaterThan(Short value) { this.StatusGreaterThan = value; return this; } public Short getStatusLessThan() { return StatusLessThan; } public BR_DirectGLTransactionsQuery setStatusLessThan(Short value) { this.StatusLessThan = value; return this; } public Short getStatusLessThanOrEqualTo() { return StatusLessThanOrEqualTo; } public BR_DirectGLTransactionsQuery setStatusLessThanOrEqualTo(Short value) { this.StatusLessThanOrEqualTo = value; return this; } public Short getStatusNotEqualTo() { return StatusNotEqualTo; } public BR_DirectGLTransactionsQuery setStatusNotEqualTo(Short value) { this.StatusNotEqualTo = value; return this; } public ArrayList getStatusBetween() { return StatusBetween; } public BR_DirectGLTransactionsQuery setStatusBetween(ArrayList value) { this.StatusBetween = value; return this; } public ArrayList getStatusIn() { return StatusIn; } public BR_DirectGLTransactionsQuery setStatusIn(ArrayList value) { this.StatusIn = value; return this; } public String getGlLedgerID() { return GLLedgerID; } public BR_DirectGLTransactionsQuery setGlLedgerID(String value) { this.GLLedgerID = value; return this; } public String getGlLedgerIDStartsWith() { return GLLedgerIDStartsWith; } public BR_DirectGLTransactionsQuery setGlLedgerIDStartsWith(String value) { this.GLLedgerIDStartsWith = value; return this; } public String getGlLedgerIDEndsWith() { return GLLedgerIDEndsWith; } public BR_DirectGLTransactionsQuery setGlLedgerIDEndsWith(String value) { this.GLLedgerIDEndsWith = value; return this; } public String getGlLedgerIDContains() { return GLLedgerIDContains; } public BR_DirectGLTransactionsQuery setGlLedgerIDContains(String value) { this.GLLedgerIDContains = value; return this; } public String getGlLedgerIDLike() { return GLLedgerIDLike; } public BR_DirectGLTransactionsQuery setGlLedgerIDLike(String value) { this.GLLedgerIDLike = value; return this; } public ArrayList getGlLedgerIDBetween() { return GLLedgerIDBetween; } public BR_DirectGLTransactionsQuery setGlLedgerIDBetween(ArrayList value) { this.GLLedgerIDBetween = value; return this; } public ArrayList getGlLedgerIDIn() { return GLLedgerIDIn; } public BR_DirectGLTransactionsQuery setGlLedgerIDIn(ArrayList value) { this.GLLedgerIDIn = value; return this; } public Short getTransactionType() { return TransactionType; } public BR_DirectGLTransactionsQuery setTransactionType(Short value) { this.TransactionType = value; return this; } public Short getTransactionTypeGreaterThanOrEqualTo() { return TransactionTypeGreaterThanOrEqualTo; } public BR_DirectGLTransactionsQuery setTransactionTypeGreaterThanOrEqualTo(Short value) { this.TransactionTypeGreaterThanOrEqualTo = value; return this; } public Short getTransactionTypeGreaterThan() { return TransactionTypeGreaterThan; } public BR_DirectGLTransactionsQuery setTransactionTypeGreaterThan(Short value) { this.TransactionTypeGreaterThan = value; return this; } public Short getTransactionTypeLessThan() { return TransactionTypeLessThan; } public BR_DirectGLTransactionsQuery setTransactionTypeLessThan(Short value) { this.TransactionTypeLessThan = value; return this; } public Short getTransactionTypeLessThanOrEqualTo() { return TransactionTypeLessThanOrEqualTo; } public BR_DirectGLTransactionsQuery setTransactionTypeLessThanOrEqualTo(Short value) { this.TransactionTypeLessThanOrEqualTo = value; return this; } public Short getTransactionTypeNotEqualTo() { return TransactionTypeNotEqualTo; } public BR_DirectGLTransactionsQuery setTransactionTypeNotEqualTo(Short value) { this.TransactionTypeNotEqualTo = value; return this; } public ArrayList getTransactionTypeBetween() { return TransactionTypeBetween; } public BR_DirectGLTransactionsQuery setTransactionTypeBetween(ArrayList value) { this.TransactionTypeBetween = value; return this; } public ArrayList getTransactionTypeIn() { return TransactionTypeIn; } public BR_DirectGLTransactionsQuery setTransactionTypeIn(ArrayList value) { this.TransactionTypeIn = value; return this; } public String getReference() { return Reference; } public BR_DirectGLTransactionsQuery setReference(String value) { this.Reference = value; return this; } public String getReferenceStartsWith() { return ReferenceStartsWith; } public BR_DirectGLTransactionsQuery setReferenceStartsWith(String value) { this.ReferenceStartsWith = value; return this; } public String getReferenceEndsWith() { return ReferenceEndsWith; } public BR_DirectGLTransactionsQuery setReferenceEndsWith(String value) { this.ReferenceEndsWith = value; return this; } public String getReferenceContains() { return ReferenceContains; } public BR_DirectGLTransactionsQuery setReferenceContains(String value) { this.ReferenceContains = value; return this; } public String getReferenceLike() { return ReferenceLike; } public BR_DirectGLTransactionsQuery setReferenceLike(String value) { this.ReferenceLike = value; return this; } public ArrayList getReferenceBetween() { return ReferenceBetween; } public BR_DirectGLTransactionsQuery setReferenceBetween(ArrayList value) { this.ReferenceBetween = value; return this; } public ArrayList getReferenceIn() { return ReferenceIn; } public BR_DirectGLTransactionsQuery setReferenceIn(ArrayList value) { this.ReferenceIn = value; return this; } public String getPaymentTypeID() { return PaymentTypeID; } public BR_DirectGLTransactionsQuery setPaymentTypeID(String value) { this.PaymentTypeID = value; return this; } public String getPaymentTypeIDStartsWith() { return PaymentTypeIDStartsWith; } public BR_DirectGLTransactionsQuery setPaymentTypeIDStartsWith(String value) { this.PaymentTypeIDStartsWith = value; return this; } public String getPaymentTypeIDEndsWith() { return PaymentTypeIDEndsWith; } public BR_DirectGLTransactionsQuery setPaymentTypeIDEndsWith(String value) { this.PaymentTypeIDEndsWith = value; return this; } public String getPaymentTypeIDContains() { return PaymentTypeIDContains; } public BR_DirectGLTransactionsQuery setPaymentTypeIDContains(String value) { this.PaymentTypeIDContains = value; return this; } public String getPaymentTypeIDLike() { return PaymentTypeIDLike; } public BR_DirectGLTransactionsQuery setPaymentTypeIDLike(String value) { this.PaymentTypeIDLike = value; return this; } public ArrayList getPaymentTypeIDBetween() { return PaymentTypeIDBetween; } public BR_DirectGLTransactionsQuery setPaymentTypeIDBetween(ArrayList value) { this.PaymentTypeIDBetween = value; return this; } public ArrayList getPaymentTypeIDIn() { return PaymentTypeIDIn; } public BR_DirectGLTransactionsQuery setPaymentTypeIDIn(ArrayList value) { this.PaymentTypeIDIn = value; return this; } public String getTaxID() { return TaxID; } public BR_DirectGLTransactionsQuery setTaxID(String value) { this.TaxID = value; return this; } public String getTaxIDStartsWith() { return TaxIDStartsWith; } public BR_DirectGLTransactionsQuery setTaxIDStartsWith(String value) { this.TaxIDStartsWith = value; return this; } public String getTaxIDEndsWith() { return TaxIDEndsWith; } public BR_DirectGLTransactionsQuery setTaxIDEndsWith(String value) { this.TaxIDEndsWith = value; return this; } public String getTaxIDContains() { return TaxIDContains; } public BR_DirectGLTransactionsQuery setTaxIDContains(String value) { this.TaxIDContains = value; return this; } public String getTaxIDLike() { return TaxIDLike; } public BR_DirectGLTransactionsQuery setTaxIDLike(String value) { this.TaxIDLike = value; return this; } public ArrayList getTaxIDBetween() { return TaxIDBetween; } public BR_DirectGLTransactionsQuery setTaxIDBetween(ArrayList value) { this.TaxIDBetween = value; return this; } public ArrayList getTaxIDIn() { return TaxIDIn; } public BR_DirectGLTransactionsQuery setTaxIDIn(ArrayList value) { this.TaxIDIn = value; return this; } public BigDecimal getTaxRate() { return TaxRate; } public BR_DirectGLTransactionsQuery setTaxRate(BigDecimal value) { this.TaxRate = value; return this; } public BigDecimal getTaxRateGreaterThanOrEqualTo() { return TaxRateGreaterThanOrEqualTo; } public BR_DirectGLTransactionsQuery setTaxRateGreaterThanOrEqualTo(BigDecimal value) { this.TaxRateGreaterThanOrEqualTo = value; return this; } public BigDecimal getTaxRateGreaterThan() { return TaxRateGreaterThan; } public BR_DirectGLTransactionsQuery setTaxRateGreaterThan(BigDecimal value) { this.TaxRateGreaterThan = value; return this; } public BigDecimal getTaxRateLessThan() { return TaxRateLessThan; } public BR_DirectGLTransactionsQuery setTaxRateLessThan(BigDecimal value) { this.TaxRateLessThan = value; return this; } public BigDecimal getTaxRateLessThanOrEqualTo() { return TaxRateLessThanOrEqualTo; } public BR_DirectGLTransactionsQuery setTaxRateLessThanOrEqualTo(BigDecimal value) { this.TaxRateLessThanOrEqualTo = value; return this; } public BigDecimal getTaxRateNotEqualTo() { return TaxRateNotEqualTo; } public BR_DirectGLTransactionsQuery setTaxRateNotEqualTo(BigDecimal value) { this.TaxRateNotEqualTo = value; return this; } public ArrayList getTaxRateBetween() { return TaxRateBetween; } public BR_DirectGLTransactionsQuery setTaxRateBetween(ArrayList value) { this.TaxRateBetween = value; return this; } public ArrayList getTaxRateIn() { return TaxRateIn; } public BR_DirectGLTransactionsQuery setTaxRateIn(ArrayList value) { this.TaxRateIn = value; return this; } public BigDecimal getTaxAmount() { return TaxAmount; } public BR_DirectGLTransactionsQuery setTaxAmount(BigDecimal value) { this.TaxAmount = value; return this; } public BigDecimal getTaxAmountGreaterThanOrEqualTo() { return TaxAmountGreaterThanOrEqualTo; } public BR_DirectGLTransactionsQuery setTaxAmountGreaterThanOrEqualTo(BigDecimal value) { this.TaxAmountGreaterThanOrEqualTo = value; return this; } public BigDecimal getTaxAmountGreaterThan() { return TaxAmountGreaterThan; } public BR_DirectGLTransactionsQuery setTaxAmountGreaterThan(BigDecimal value) { this.TaxAmountGreaterThan = value; return this; } public BigDecimal getTaxAmountLessThan() { return TaxAmountLessThan; } public BR_DirectGLTransactionsQuery setTaxAmountLessThan(BigDecimal value) { this.TaxAmountLessThan = value; return this; } public BigDecimal getTaxAmountLessThanOrEqualTo() { return TaxAmountLessThanOrEqualTo; } public BR_DirectGLTransactionsQuery setTaxAmountLessThanOrEqualTo(BigDecimal value) { this.TaxAmountLessThanOrEqualTo = value; return this; } public BigDecimal getTaxAmountNotEqualTo() { return TaxAmountNotEqualTo; } public BR_DirectGLTransactionsQuery setTaxAmountNotEqualTo(BigDecimal value) { this.TaxAmountNotEqualTo = value; return this; } public ArrayList getTaxAmountBetween() { return TaxAmountBetween; } public BR_DirectGLTransactionsQuery setTaxAmountBetween(ArrayList value) { this.TaxAmountBetween = value; return this; } public ArrayList getTaxAmountIn() { return TaxAmountIn; } public BR_DirectGLTransactionsQuery setTaxAmountIn(ArrayList value) { this.TaxAmountIn = value; return this; } public BigDecimal getAmountReconciledIncGST() { return AmountReconciledIncGST; } public BR_DirectGLTransactionsQuery setAmountReconciledIncGST(BigDecimal value) { this.AmountReconciledIncGST = value; return this; } public BigDecimal getAmountReconciledIncGSTGreaterThanOrEqualTo() { return AmountReconciledIncGSTGreaterThanOrEqualTo; } public BR_DirectGLTransactionsQuery setAmountReconciledIncGSTGreaterThanOrEqualTo(BigDecimal value) { this.AmountReconciledIncGSTGreaterThanOrEqualTo = value; return this; } public BigDecimal getAmountReconciledIncGSTGreaterThan() { return AmountReconciledIncGSTGreaterThan; } public BR_DirectGLTransactionsQuery setAmountReconciledIncGSTGreaterThan(BigDecimal value) { this.AmountReconciledIncGSTGreaterThan = value; return this; } public BigDecimal getAmountReconciledIncGSTLessThan() { return AmountReconciledIncGSTLessThan; } public BR_DirectGLTransactionsQuery setAmountReconciledIncGSTLessThan(BigDecimal value) { this.AmountReconciledIncGSTLessThan = value; return this; } public BigDecimal getAmountReconciledIncGSTLessThanOrEqualTo() { return AmountReconciledIncGSTLessThanOrEqualTo; } public BR_DirectGLTransactionsQuery setAmountReconciledIncGSTLessThanOrEqualTo(BigDecimal value) { this.AmountReconciledIncGSTLessThanOrEqualTo = value; return this; } public BigDecimal getAmountReconciledIncGSTNotEqualTo() { return AmountReconciledIncGSTNotEqualTo; } public BR_DirectGLTransactionsQuery setAmountReconciledIncGSTNotEqualTo(BigDecimal value) { this.AmountReconciledIncGSTNotEqualTo = value; return this; } public ArrayList getAmountReconciledIncGSTBetween() { return AmountReconciledIncGSTBetween; } public BR_DirectGLTransactionsQuery setAmountReconciledIncGSTBetween(ArrayList value) { this.AmountReconciledIncGSTBetween = value; return this; } public ArrayList getAmountReconciledIncGSTIn() { return AmountReconciledIncGSTIn; } public BR_DirectGLTransactionsQuery setAmountReconciledIncGSTIn(ArrayList value) { this.AmountReconciledIncGSTIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class BR_DocumentsQuery extends QueryDb implements IReturn> { public String RecID = null; public String RecIDStartsWith = null; public String RecIDEndsWith = null; public String RecIDContains = null; public String RecIDLike = null; public ArrayList RecIDBetween = null; public ArrayList RecIDIn = null; public String BankRecID = null; public String BankRecIDStartsWith = null; public String BankRecIDEndsWith = null; public String BankRecIDContains = null; public String BankRecIDLike = null; public ArrayList BankRecIDBetween = null; public ArrayList BankRecIDIn = null; public String DocumentTypeID = null; public String DocumentTypeIDStartsWith = null; public String DocumentTypeIDEndsWith = null; public String DocumentTypeIDContains = null; public String DocumentTypeIDLike = null; public ArrayList DocumentTypeIDBetween = null; public ArrayList DocumentTypeIDIn = null; public Date LastSavedDateTime = null; public Date LastSavedDateTimeGreaterThanOrEqualTo = null; public Date LastSavedDateTimeGreaterThan = null; public Date LastSavedDateTimeLessThan = null; public Date LastSavedDateTimeLessThanOrEqualTo = null; public Date LastSavedDateTimeNotEqualTo = null; public ArrayList LastSavedDateTimeBetween = null; public ArrayList LastSavedDateTimeIn = null; public String LastSavedByStaffID = null; public String LastSavedByStaffIDStartsWith = null; public String LastSavedByStaffIDEndsWith = null; public String LastSavedByStaffIDContains = null; public String LastSavedByStaffIDLike = null; public ArrayList LastSavedByStaffIDBetween = null; public ArrayList LastSavedByStaffIDIn = null; public ArrayList FileBinary = null; public String Description = null; public String DescriptionStartsWith = null; public String DescriptionEndsWith = null; public String DescriptionContains = null; public String DescriptionLike = null; public ArrayList DescriptionBetween = null; public ArrayList DescriptionIn = null; public String PhysicalFileName = null; public String PhysicalFileNameStartsWith = null; public String PhysicalFileNameEndsWith = null; public String PhysicalFileNameContains = null; public String PhysicalFileNameLike = null; public ArrayList PhysicalFileNameBetween = null; public ArrayList PhysicalFileNameIn = null; public Integer ItemNo = null; public Integer ItemNoGreaterThanOrEqualTo = null; public Integer ItemNoGreaterThan = null; public Integer ItemNoLessThan = null; public Integer ItemNoLessThanOrEqualTo = null; public Integer ItemNoNotEqualTo = null; public ArrayList ItemNoBetween = null; public ArrayList ItemNoIn = null; public String getRecID() { return RecID; } public BR_DocumentsQuery setRecID(String value) { this.RecID = value; return this; } public String getRecIDStartsWith() { return RecIDStartsWith; } public BR_DocumentsQuery setRecIDStartsWith(String value) { this.RecIDStartsWith = value; return this; } public String getRecIDEndsWith() { return RecIDEndsWith; } public BR_DocumentsQuery setRecIDEndsWith(String value) { this.RecIDEndsWith = value; return this; } public String getRecIDContains() { return RecIDContains; } public BR_DocumentsQuery setRecIDContains(String value) { this.RecIDContains = value; return this; } public String getRecIDLike() { return RecIDLike; } public BR_DocumentsQuery setRecIDLike(String value) { this.RecIDLike = value; return this; } public ArrayList getRecIDBetween() { return RecIDBetween; } public BR_DocumentsQuery setRecIDBetween(ArrayList value) { this.RecIDBetween = value; return this; } public ArrayList getRecIDIn() { return RecIDIn; } public BR_DocumentsQuery setRecIDIn(ArrayList value) { this.RecIDIn = value; return this; } public String getBankRecID() { return BankRecID; } public BR_DocumentsQuery setBankRecID(String value) { this.BankRecID = value; return this; } public String getBankRecIDStartsWith() { return BankRecIDStartsWith; } public BR_DocumentsQuery setBankRecIDStartsWith(String value) { this.BankRecIDStartsWith = value; return this; } public String getBankRecIDEndsWith() { return BankRecIDEndsWith; } public BR_DocumentsQuery setBankRecIDEndsWith(String value) { this.BankRecIDEndsWith = value; return this; } public String getBankRecIDContains() { return BankRecIDContains; } public BR_DocumentsQuery setBankRecIDContains(String value) { this.BankRecIDContains = value; return this; } public String getBankRecIDLike() { return BankRecIDLike; } public BR_DocumentsQuery setBankRecIDLike(String value) { this.BankRecIDLike = value; return this; } public ArrayList getBankRecIDBetween() { return BankRecIDBetween; } public BR_DocumentsQuery setBankRecIDBetween(ArrayList value) { this.BankRecIDBetween = value; return this; } public ArrayList getBankRecIDIn() { return BankRecIDIn; } public BR_DocumentsQuery setBankRecIDIn(ArrayList value) { this.BankRecIDIn = value; return this; } public String getDocumentTypeID() { return DocumentTypeID; } public BR_DocumentsQuery setDocumentTypeID(String value) { this.DocumentTypeID = value; return this; } public String getDocumentTypeIDStartsWith() { return DocumentTypeIDStartsWith; } public BR_DocumentsQuery setDocumentTypeIDStartsWith(String value) { this.DocumentTypeIDStartsWith = value; return this; } public String getDocumentTypeIDEndsWith() { return DocumentTypeIDEndsWith; } public BR_DocumentsQuery setDocumentTypeIDEndsWith(String value) { this.DocumentTypeIDEndsWith = value; return this; } public String getDocumentTypeIDContains() { return DocumentTypeIDContains; } public BR_DocumentsQuery setDocumentTypeIDContains(String value) { this.DocumentTypeIDContains = value; return this; } public String getDocumentTypeIDLike() { return DocumentTypeIDLike; } public BR_DocumentsQuery setDocumentTypeIDLike(String value) { this.DocumentTypeIDLike = value; return this; } public ArrayList getDocumentTypeIDBetween() { return DocumentTypeIDBetween; } public BR_DocumentsQuery setDocumentTypeIDBetween(ArrayList value) { this.DocumentTypeIDBetween = value; return this; } public ArrayList getDocumentTypeIDIn() { return DocumentTypeIDIn; } public BR_DocumentsQuery setDocumentTypeIDIn(ArrayList value) { this.DocumentTypeIDIn = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public BR_DocumentsQuery setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getLastSavedDateTimeGreaterThanOrEqualTo() { return LastSavedDateTimeGreaterThanOrEqualTo; } public BR_DocumentsQuery setLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.LastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeGreaterThan() { return LastSavedDateTimeGreaterThan; } public BR_DocumentsQuery setLastSavedDateTimeGreaterThan(Date value) { this.LastSavedDateTimeGreaterThan = value; return this; } public Date getLastSavedDateTimeLessThan() { return LastSavedDateTimeLessThan; } public BR_DocumentsQuery setLastSavedDateTimeLessThan(Date value) { this.LastSavedDateTimeLessThan = value; return this; } public Date getLastSavedDateTimeLessThanOrEqualTo() { return LastSavedDateTimeLessThanOrEqualTo; } public BR_DocumentsQuery setLastSavedDateTimeLessThanOrEqualTo(Date value) { this.LastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeNotEqualTo() { return LastSavedDateTimeNotEqualTo; } public BR_DocumentsQuery setLastSavedDateTimeNotEqualTo(Date value) { this.LastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getLastSavedDateTimeBetween() { return LastSavedDateTimeBetween; } public BR_DocumentsQuery setLastSavedDateTimeBetween(ArrayList value) { this.LastSavedDateTimeBetween = value; return this; } public ArrayList getLastSavedDateTimeIn() { return LastSavedDateTimeIn; } public BR_DocumentsQuery setLastSavedDateTimeIn(ArrayList value) { this.LastSavedDateTimeIn = value; return this; } public String getLastSavedByStaffID() { return LastSavedByStaffID; } public BR_DocumentsQuery setLastSavedByStaffID(String value) { this.LastSavedByStaffID = value; return this; } public String getLastSavedByStaffIDStartsWith() { return LastSavedByStaffIDStartsWith; } public BR_DocumentsQuery setLastSavedByStaffIDStartsWith(String value) { this.LastSavedByStaffIDStartsWith = value; return this; } public String getLastSavedByStaffIDEndsWith() { return LastSavedByStaffIDEndsWith; } public BR_DocumentsQuery setLastSavedByStaffIDEndsWith(String value) { this.LastSavedByStaffIDEndsWith = value; return this; } public String getLastSavedByStaffIDContains() { return LastSavedByStaffIDContains; } public BR_DocumentsQuery setLastSavedByStaffIDContains(String value) { this.LastSavedByStaffIDContains = value; return this; } public String getLastSavedByStaffIDLike() { return LastSavedByStaffIDLike; } public BR_DocumentsQuery setLastSavedByStaffIDLike(String value) { this.LastSavedByStaffIDLike = value; return this; } public ArrayList getLastSavedByStaffIDBetween() { return LastSavedByStaffIDBetween; } public BR_DocumentsQuery setLastSavedByStaffIDBetween(ArrayList value) { this.LastSavedByStaffIDBetween = value; return this; } public ArrayList getLastSavedByStaffIDIn() { return LastSavedByStaffIDIn; } public BR_DocumentsQuery setLastSavedByStaffIDIn(ArrayList value) { this.LastSavedByStaffIDIn = value; return this; } public ArrayList getFileBinary() { return FileBinary; } public BR_DocumentsQuery setFileBinary(ArrayList value) { this.FileBinary = value; return this; } public String getDescription() { return Description; } public BR_DocumentsQuery setDescription(String value) { this.Description = value; return this; } public String getDescriptionStartsWith() { return DescriptionStartsWith; } public BR_DocumentsQuery setDescriptionStartsWith(String value) { this.DescriptionStartsWith = value; return this; } public String getDescriptionEndsWith() { return DescriptionEndsWith; } public BR_DocumentsQuery setDescriptionEndsWith(String value) { this.DescriptionEndsWith = value; return this; } public String getDescriptionContains() { return DescriptionContains; } public BR_DocumentsQuery setDescriptionContains(String value) { this.DescriptionContains = value; return this; } public String getDescriptionLike() { return DescriptionLike; } public BR_DocumentsQuery setDescriptionLike(String value) { this.DescriptionLike = value; return this; } public ArrayList getDescriptionBetween() { return DescriptionBetween; } public BR_DocumentsQuery setDescriptionBetween(ArrayList value) { this.DescriptionBetween = value; return this; } public ArrayList getDescriptionIn() { return DescriptionIn; } public BR_DocumentsQuery setDescriptionIn(ArrayList value) { this.DescriptionIn = value; return this; } public String getPhysicalFileName() { return PhysicalFileName; } public BR_DocumentsQuery setPhysicalFileName(String value) { this.PhysicalFileName = value; return this; } public String getPhysicalFileNameStartsWith() { return PhysicalFileNameStartsWith; } public BR_DocumentsQuery setPhysicalFileNameStartsWith(String value) { this.PhysicalFileNameStartsWith = value; return this; } public String getPhysicalFileNameEndsWith() { return PhysicalFileNameEndsWith; } public BR_DocumentsQuery setPhysicalFileNameEndsWith(String value) { this.PhysicalFileNameEndsWith = value; return this; } public String getPhysicalFileNameContains() { return PhysicalFileNameContains; } public BR_DocumentsQuery setPhysicalFileNameContains(String value) { this.PhysicalFileNameContains = value; return this; } public String getPhysicalFileNameLike() { return PhysicalFileNameLike; } public BR_DocumentsQuery setPhysicalFileNameLike(String value) { this.PhysicalFileNameLike = value; return this; } public ArrayList getPhysicalFileNameBetween() { return PhysicalFileNameBetween; } public BR_DocumentsQuery setPhysicalFileNameBetween(ArrayList value) { this.PhysicalFileNameBetween = value; return this; } public ArrayList getPhysicalFileNameIn() { return PhysicalFileNameIn; } public BR_DocumentsQuery setPhysicalFileNameIn(ArrayList value) { this.PhysicalFileNameIn = value; return this; } public Integer getItemNo() { return ItemNo; } public BR_DocumentsQuery setItemNo(Integer value) { this.ItemNo = value; return this; } public Integer getItemNoGreaterThanOrEqualTo() { return ItemNoGreaterThanOrEqualTo; } public BR_DocumentsQuery setItemNoGreaterThanOrEqualTo(Integer value) { this.ItemNoGreaterThanOrEqualTo = value; return this; } public Integer getItemNoGreaterThan() { return ItemNoGreaterThan; } public BR_DocumentsQuery setItemNoGreaterThan(Integer value) { this.ItemNoGreaterThan = value; return this; } public Integer getItemNoLessThan() { return ItemNoLessThan; } public BR_DocumentsQuery setItemNoLessThan(Integer value) { this.ItemNoLessThan = value; return this; } public Integer getItemNoLessThanOrEqualTo() { return ItemNoLessThanOrEqualTo; } public BR_DocumentsQuery setItemNoLessThanOrEqualTo(Integer value) { this.ItemNoLessThanOrEqualTo = value; return this; } public Integer getItemNoNotEqualTo() { return ItemNoNotEqualTo; } public BR_DocumentsQuery setItemNoNotEqualTo(Integer value) { this.ItemNoNotEqualTo = value; return this; } public ArrayList getItemNoBetween() { return ItemNoBetween; } public BR_DocumentsQuery setItemNoBetween(ArrayList value) { this.ItemNoBetween = value; return this; } public ArrayList getItemNoIn() { return ItemNoIn; } public BR_DocumentsQuery setItemNoIn(ArrayList value) { this.ItemNoIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class BR_GLTransactionsQuery extends QueryDb implements IReturn> { public String BRGLTransactionID = null; public String BRGLTransactionIDStartsWith = null; public String BRGLTransactionIDEndsWith = null; public String BRGLTransactionIDContains = null; public String BRGLTransactionIDLike = null; public ArrayList BRGLTransactionIDBetween = null; public ArrayList BRGLTransactionIDIn = null; public String BankRecID = null; public String BankRecIDStartsWith = null; public String BankRecIDEndsWith = null; public String BankRecIDContains = null; public String BankRecIDLike = null; public ArrayList BankRecIDBetween = null; public ArrayList BankRecIDIn = null; public String CreatedByStaffID = null; public String CreatedByStaffIDStartsWith = null; public String CreatedByStaffIDEndsWith = null; public String CreatedByStaffIDContains = null; public String CreatedByStaffIDLike = null; public ArrayList CreatedByStaffIDBetween = null; public ArrayList CreatedByStaffIDIn = null; public Date CreatedDateTime = null; public Date CreatedDateTimeGreaterThanOrEqualTo = null; public Date CreatedDateTimeGreaterThan = null; public Date CreatedDateTimeLessThan = null; public Date CreatedDateTimeLessThanOrEqualTo = null; public Date CreatedDateTimeNotEqualTo = null; public ArrayList CreatedDateTimeBetween = null; public ArrayList CreatedDateTimeIn = null; public String LastSavedByStaffID = null; public String LastSavedByStaffIDStartsWith = null; public String LastSavedByStaffIDEndsWith = null; public String LastSavedByStaffIDContains = null; public String LastSavedByStaffIDLike = null; public ArrayList LastSavedByStaffIDBetween = null; public ArrayList LastSavedByStaffIDIn = null; public Date LastSavedDateTime = null; public Date LastSavedDateTimeGreaterThanOrEqualTo = null; public Date LastSavedDateTimeGreaterThan = null; public Date LastSavedDateTimeLessThan = null; public Date LastSavedDateTimeLessThanOrEqualTo = null; public Date LastSavedDateTimeNotEqualTo = null; public ArrayList LastSavedDateTimeBetween = null; public ArrayList LastSavedDateTimeIn = null; public Integer LineNumber = null; public Integer LineNumberGreaterThanOrEqualTo = null; public Integer LineNumberGreaterThan = null; public Integer LineNumberLessThan = null; public Integer LineNumberLessThanOrEqualTo = null; public Integer LineNumberNotEqualTo = null; public ArrayList LineNumberBetween = null; public ArrayList LineNumberIn = null; public Date TransactionDateTime = null; public Date TransactionDateTimeGreaterThanOrEqualTo = null; public Date TransactionDateTimeGreaterThan = null; public Date TransactionDateTimeLessThan = null; public Date TransactionDateTimeLessThanOrEqualTo = null; public Date TransactionDateTimeNotEqualTo = null; public ArrayList TransactionDateTimeBetween = null; public ArrayList TransactionDateTimeIn = null; public Short Status = null; public Short StatusGreaterThanOrEqualTo = null; public Short StatusGreaterThan = null; public Short StatusLessThan = null; public Short StatusLessThanOrEqualTo = null; public Short StatusNotEqualTo = null; public ArrayList StatusBetween = null; public ArrayList StatusIn = null; public String GLTransactionID = null; public String GLTransactionIDStartsWith = null; public String GLTransactionIDEndsWith = null; public String GLTransactionIDContains = null; public String GLTransactionIDLike = null; public ArrayList GLTransactionIDBetween = null; public ArrayList GLTransactionIDIn = null; public BigDecimal AmountReconciledIncGST = null; public BigDecimal AmountReconciledIncGSTGreaterThanOrEqualTo = null; public BigDecimal AmountReconciledIncGSTGreaterThan = null; public BigDecimal AmountReconciledIncGSTLessThan = null; public BigDecimal AmountReconciledIncGSTLessThanOrEqualTo = null; public BigDecimal AmountReconciledIncGSTNotEqualTo = null; public ArrayList AmountReconciledIncGSTBetween = null; public ArrayList AmountReconciledIncGSTIn = null; public String Reference = null; public String ReferenceStartsWith = null; public String ReferenceEndsWith = null; public String ReferenceContains = null; public String ReferenceLike = null; public ArrayList ReferenceBetween = null; public ArrayList ReferenceIn = null; public Short DebitCredit = null; public Short DebitCreditGreaterThanOrEqualTo = null; public Short DebitCreditGreaterThan = null; public Short DebitCreditLessThan = null; public Short DebitCreditLessThanOrEqualTo = null; public Short DebitCreditNotEqualTo = null; public ArrayList DebitCreditBetween = null; public ArrayList DebitCreditIn = null; public String Remark = null; public String RemarkStartsWith = null; public String RemarkEndsWith = null; public String RemarkContains = null; public String RemarkLike = null; public ArrayList RemarkBetween = null; public ArrayList RemarkIn = null; public BigDecimal AmountIncGST = null; public BigDecimal AmountIncGSTGreaterThanOrEqualTo = null; public BigDecimal AmountIncGSTGreaterThan = null; public BigDecimal AmountIncGSTLessThan = null; public BigDecimal AmountIncGSTLessThanOrEqualTo = null; public BigDecimal AmountIncGSTNotEqualTo = null; public ArrayList AmountIncGSTBetween = null; public ArrayList AmountIncGSTIn = null; public String FirstAppearanceBankRecID = null; public String FirstAppearanceBankRecIDStartsWith = null; public String FirstAppearanceBankRecIDEndsWith = null; public String FirstAppearanceBankRecIDContains = null; public String FirstAppearanceBankRecIDLike = null; public ArrayList FirstAppearanceBankRecIDBetween = null; public ArrayList FirstAppearanceBankRecIDIn = null; public String getBrglTransactionID() { return BRGLTransactionID; } public BR_GLTransactionsQuery setBrglTransactionID(String value) { this.BRGLTransactionID = value; return this; } public String getBrglTransactionIDStartsWith() { return BRGLTransactionIDStartsWith; } public BR_GLTransactionsQuery setBrglTransactionIDStartsWith(String value) { this.BRGLTransactionIDStartsWith = value; return this; } public String getBrglTransactionIDEndsWith() { return BRGLTransactionIDEndsWith; } public BR_GLTransactionsQuery setBrglTransactionIDEndsWith(String value) { this.BRGLTransactionIDEndsWith = value; return this; } public String getBrglTransactionIDContains() { return BRGLTransactionIDContains; } public BR_GLTransactionsQuery setBrglTransactionIDContains(String value) { this.BRGLTransactionIDContains = value; return this; } public String getBrglTransactionIDLike() { return BRGLTransactionIDLike; } public BR_GLTransactionsQuery setBrglTransactionIDLike(String value) { this.BRGLTransactionIDLike = value; return this; } public ArrayList getBrglTransactionIDBetween() { return BRGLTransactionIDBetween; } public BR_GLTransactionsQuery setBrglTransactionIDBetween(ArrayList value) { this.BRGLTransactionIDBetween = value; return this; } public ArrayList getBrglTransactionIDIn() { return BRGLTransactionIDIn; } public BR_GLTransactionsQuery setBrglTransactionIDIn(ArrayList value) { this.BRGLTransactionIDIn = value; return this; } public String getBankRecID() { return BankRecID; } public BR_GLTransactionsQuery setBankRecID(String value) { this.BankRecID = value; return this; } public String getBankRecIDStartsWith() { return BankRecIDStartsWith; } public BR_GLTransactionsQuery setBankRecIDStartsWith(String value) { this.BankRecIDStartsWith = value; return this; } public String getBankRecIDEndsWith() { return BankRecIDEndsWith; } public BR_GLTransactionsQuery setBankRecIDEndsWith(String value) { this.BankRecIDEndsWith = value; return this; } public String getBankRecIDContains() { return BankRecIDContains; } public BR_GLTransactionsQuery setBankRecIDContains(String value) { this.BankRecIDContains = value; return this; } public String getBankRecIDLike() { return BankRecIDLike; } public BR_GLTransactionsQuery setBankRecIDLike(String value) { this.BankRecIDLike = value; return this; } public ArrayList getBankRecIDBetween() { return BankRecIDBetween; } public BR_GLTransactionsQuery setBankRecIDBetween(ArrayList value) { this.BankRecIDBetween = value; return this; } public ArrayList getBankRecIDIn() { return BankRecIDIn; } public BR_GLTransactionsQuery setBankRecIDIn(ArrayList value) { this.BankRecIDIn = value; return this; } public String getCreatedByStaffID() { return CreatedByStaffID; } public BR_GLTransactionsQuery setCreatedByStaffID(String value) { this.CreatedByStaffID = value; return this; } public String getCreatedByStaffIDStartsWith() { return CreatedByStaffIDStartsWith; } public BR_GLTransactionsQuery setCreatedByStaffIDStartsWith(String value) { this.CreatedByStaffIDStartsWith = value; return this; } public String getCreatedByStaffIDEndsWith() { return CreatedByStaffIDEndsWith; } public BR_GLTransactionsQuery setCreatedByStaffIDEndsWith(String value) { this.CreatedByStaffIDEndsWith = value; return this; } public String getCreatedByStaffIDContains() { return CreatedByStaffIDContains; } public BR_GLTransactionsQuery setCreatedByStaffIDContains(String value) { this.CreatedByStaffIDContains = value; return this; } public String getCreatedByStaffIDLike() { return CreatedByStaffIDLike; } public BR_GLTransactionsQuery setCreatedByStaffIDLike(String value) { this.CreatedByStaffIDLike = value; return this; } public ArrayList getCreatedByStaffIDBetween() { return CreatedByStaffIDBetween; } public BR_GLTransactionsQuery setCreatedByStaffIDBetween(ArrayList value) { this.CreatedByStaffIDBetween = value; return this; } public ArrayList getCreatedByStaffIDIn() { return CreatedByStaffIDIn; } public BR_GLTransactionsQuery setCreatedByStaffIDIn(ArrayList value) { this.CreatedByStaffIDIn = value; return this; } public Date getCreatedDateTime() { return CreatedDateTime; } public BR_GLTransactionsQuery setCreatedDateTime(Date value) { this.CreatedDateTime = value; return this; } public Date getCreatedDateTimeGreaterThanOrEqualTo() { return CreatedDateTimeGreaterThanOrEqualTo; } public BR_GLTransactionsQuery setCreatedDateTimeGreaterThanOrEqualTo(Date value) { this.CreatedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getCreatedDateTimeGreaterThan() { return CreatedDateTimeGreaterThan; } public BR_GLTransactionsQuery setCreatedDateTimeGreaterThan(Date value) { this.CreatedDateTimeGreaterThan = value; return this; } public Date getCreatedDateTimeLessThan() { return CreatedDateTimeLessThan; } public BR_GLTransactionsQuery setCreatedDateTimeLessThan(Date value) { this.CreatedDateTimeLessThan = value; return this; } public Date getCreatedDateTimeLessThanOrEqualTo() { return CreatedDateTimeLessThanOrEqualTo; } public BR_GLTransactionsQuery setCreatedDateTimeLessThanOrEqualTo(Date value) { this.CreatedDateTimeLessThanOrEqualTo = value; return this; } public Date getCreatedDateTimeNotEqualTo() { return CreatedDateTimeNotEqualTo; } public BR_GLTransactionsQuery setCreatedDateTimeNotEqualTo(Date value) { this.CreatedDateTimeNotEqualTo = value; return this; } public ArrayList getCreatedDateTimeBetween() { return CreatedDateTimeBetween; } public BR_GLTransactionsQuery setCreatedDateTimeBetween(ArrayList value) { this.CreatedDateTimeBetween = value; return this; } public ArrayList getCreatedDateTimeIn() { return CreatedDateTimeIn; } public BR_GLTransactionsQuery setCreatedDateTimeIn(ArrayList value) { this.CreatedDateTimeIn = value; return this; } public String getLastSavedByStaffID() { return LastSavedByStaffID; } public BR_GLTransactionsQuery setLastSavedByStaffID(String value) { this.LastSavedByStaffID = value; return this; } public String getLastSavedByStaffIDStartsWith() { return LastSavedByStaffIDStartsWith; } public BR_GLTransactionsQuery setLastSavedByStaffIDStartsWith(String value) { this.LastSavedByStaffIDStartsWith = value; return this; } public String getLastSavedByStaffIDEndsWith() { return LastSavedByStaffIDEndsWith; } public BR_GLTransactionsQuery setLastSavedByStaffIDEndsWith(String value) { this.LastSavedByStaffIDEndsWith = value; return this; } public String getLastSavedByStaffIDContains() { return LastSavedByStaffIDContains; } public BR_GLTransactionsQuery setLastSavedByStaffIDContains(String value) { this.LastSavedByStaffIDContains = value; return this; } public String getLastSavedByStaffIDLike() { return LastSavedByStaffIDLike; } public BR_GLTransactionsQuery setLastSavedByStaffIDLike(String value) { this.LastSavedByStaffIDLike = value; return this; } public ArrayList getLastSavedByStaffIDBetween() { return LastSavedByStaffIDBetween; } public BR_GLTransactionsQuery setLastSavedByStaffIDBetween(ArrayList value) { this.LastSavedByStaffIDBetween = value; return this; } public ArrayList getLastSavedByStaffIDIn() { return LastSavedByStaffIDIn; } public BR_GLTransactionsQuery setLastSavedByStaffIDIn(ArrayList value) { this.LastSavedByStaffIDIn = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public BR_GLTransactionsQuery setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getLastSavedDateTimeGreaterThanOrEqualTo() { return LastSavedDateTimeGreaterThanOrEqualTo; } public BR_GLTransactionsQuery setLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.LastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeGreaterThan() { return LastSavedDateTimeGreaterThan; } public BR_GLTransactionsQuery setLastSavedDateTimeGreaterThan(Date value) { this.LastSavedDateTimeGreaterThan = value; return this; } public Date getLastSavedDateTimeLessThan() { return LastSavedDateTimeLessThan; } public BR_GLTransactionsQuery setLastSavedDateTimeLessThan(Date value) { this.LastSavedDateTimeLessThan = value; return this; } public Date getLastSavedDateTimeLessThanOrEqualTo() { return LastSavedDateTimeLessThanOrEqualTo; } public BR_GLTransactionsQuery setLastSavedDateTimeLessThanOrEqualTo(Date value) { this.LastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeNotEqualTo() { return LastSavedDateTimeNotEqualTo; } public BR_GLTransactionsQuery setLastSavedDateTimeNotEqualTo(Date value) { this.LastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getLastSavedDateTimeBetween() { return LastSavedDateTimeBetween; } public BR_GLTransactionsQuery setLastSavedDateTimeBetween(ArrayList value) { this.LastSavedDateTimeBetween = value; return this; } public ArrayList getLastSavedDateTimeIn() { return LastSavedDateTimeIn; } public BR_GLTransactionsQuery setLastSavedDateTimeIn(ArrayList value) { this.LastSavedDateTimeIn = value; return this; } public Integer getLineNumber() { return LineNumber; } public BR_GLTransactionsQuery setLineNumber(Integer value) { this.LineNumber = value; return this; } public Integer getLineNumberGreaterThanOrEqualTo() { return LineNumberGreaterThanOrEqualTo; } public BR_GLTransactionsQuery setLineNumberGreaterThanOrEqualTo(Integer value) { this.LineNumberGreaterThanOrEqualTo = value; return this; } public Integer getLineNumberGreaterThan() { return LineNumberGreaterThan; } public BR_GLTransactionsQuery setLineNumberGreaterThan(Integer value) { this.LineNumberGreaterThan = value; return this; } public Integer getLineNumberLessThan() { return LineNumberLessThan; } public BR_GLTransactionsQuery setLineNumberLessThan(Integer value) { this.LineNumberLessThan = value; return this; } public Integer getLineNumberLessThanOrEqualTo() { return LineNumberLessThanOrEqualTo; } public BR_GLTransactionsQuery setLineNumberLessThanOrEqualTo(Integer value) { this.LineNumberLessThanOrEqualTo = value; return this; } public Integer getLineNumberNotEqualTo() { return LineNumberNotEqualTo; } public BR_GLTransactionsQuery setLineNumberNotEqualTo(Integer value) { this.LineNumberNotEqualTo = value; return this; } public ArrayList getLineNumberBetween() { return LineNumberBetween; } public BR_GLTransactionsQuery setLineNumberBetween(ArrayList value) { this.LineNumberBetween = value; return this; } public ArrayList getLineNumberIn() { return LineNumberIn; } public BR_GLTransactionsQuery setLineNumberIn(ArrayList value) { this.LineNumberIn = value; return this; } public Date getTransactionDateTime() { return TransactionDateTime; } public BR_GLTransactionsQuery setTransactionDateTime(Date value) { this.TransactionDateTime = value; return this; } public Date getTransactionDateTimeGreaterThanOrEqualTo() { return TransactionDateTimeGreaterThanOrEqualTo; } public BR_GLTransactionsQuery setTransactionDateTimeGreaterThanOrEqualTo(Date value) { this.TransactionDateTimeGreaterThanOrEqualTo = value; return this; } public Date getTransactionDateTimeGreaterThan() { return TransactionDateTimeGreaterThan; } public BR_GLTransactionsQuery setTransactionDateTimeGreaterThan(Date value) { this.TransactionDateTimeGreaterThan = value; return this; } public Date getTransactionDateTimeLessThan() { return TransactionDateTimeLessThan; } public BR_GLTransactionsQuery setTransactionDateTimeLessThan(Date value) { this.TransactionDateTimeLessThan = value; return this; } public Date getTransactionDateTimeLessThanOrEqualTo() { return TransactionDateTimeLessThanOrEqualTo; } public BR_GLTransactionsQuery setTransactionDateTimeLessThanOrEqualTo(Date value) { this.TransactionDateTimeLessThanOrEqualTo = value; return this; } public Date getTransactionDateTimeNotEqualTo() { return TransactionDateTimeNotEqualTo; } public BR_GLTransactionsQuery setTransactionDateTimeNotEqualTo(Date value) { this.TransactionDateTimeNotEqualTo = value; return this; } public ArrayList getTransactionDateTimeBetween() { return TransactionDateTimeBetween; } public BR_GLTransactionsQuery setTransactionDateTimeBetween(ArrayList value) { this.TransactionDateTimeBetween = value; return this; } public ArrayList getTransactionDateTimeIn() { return TransactionDateTimeIn; } public BR_GLTransactionsQuery setTransactionDateTimeIn(ArrayList value) { this.TransactionDateTimeIn = value; return this; } public Short getStatus() { return Status; } public BR_GLTransactionsQuery setStatus(Short value) { this.Status = value; return this; } public Short getStatusGreaterThanOrEqualTo() { return StatusGreaterThanOrEqualTo; } public BR_GLTransactionsQuery setStatusGreaterThanOrEqualTo(Short value) { this.StatusGreaterThanOrEqualTo = value; return this; } public Short getStatusGreaterThan() { return StatusGreaterThan; } public BR_GLTransactionsQuery setStatusGreaterThan(Short value) { this.StatusGreaterThan = value; return this; } public Short getStatusLessThan() { return StatusLessThan; } public BR_GLTransactionsQuery setStatusLessThan(Short value) { this.StatusLessThan = value; return this; } public Short getStatusLessThanOrEqualTo() { return StatusLessThanOrEqualTo; } public BR_GLTransactionsQuery setStatusLessThanOrEqualTo(Short value) { this.StatusLessThanOrEqualTo = value; return this; } public Short getStatusNotEqualTo() { return StatusNotEqualTo; } public BR_GLTransactionsQuery setStatusNotEqualTo(Short value) { this.StatusNotEqualTo = value; return this; } public ArrayList getStatusBetween() { return StatusBetween; } public BR_GLTransactionsQuery setStatusBetween(ArrayList value) { this.StatusBetween = value; return this; } public ArrayList getStatusIn() { return StatusIn; } public BR_GLTransactionsQuery setStatusIn(ArrayList value) { this.StatusIn = value; return this; } public String getGlTransactionID() { return GLTransactionID; } public BR_GLTransactionsQuery setGlTransactionID(String value) { this.GLTransactionID = value; return this; } public String getGlTransactionIDStartsWith() { return GLTransactionIDStartsWith; } public BR_GLTransactionsQuery setGlTransactionIDStartsWith(String value) { this.GLTransactionIDStartsWith = value; return this; } public String getGlTransactionIDEndsWith() { return GLTransactionIDEndsWith; } public BR_GLTransactionsQuery setGlTransactionIDEndsWith(String value) { this.GLTransactionIDEndsWith = value; return this; } public String getGlTransactionIDContains() { return GLTransactionIDContains; } public BR_GLTransactionsQuery setGlTransactionIDContains(String value) { this.GLTransactionIDContains = value; return this; } public String getGlTransactionIDLike() { return GLTransactionIDLike; } public BR_GLTransactionsQuery setGlTransactionIDLike(String value) { this.GLTransactionIDLike = value; return this; } public ArrayList getGlTransactionIDBetween() { return GLTransactionIDBetween; } public BR_GLTransactionsQuery setGlTransactionIDBetween(ArrayList value) { this.GLTransactionIDBetween = value; return this; } public ArrayList getGlTransactionIDIn() { return GLTransactionIDIn; } public BR_GLTransactionsQuery setGlTransactionIDIn(ArrayList value) { this.GLTransactionIDIn = value; return this; } public BigDecimal getAmountReconciledIncGST() { return AmountReconciledIncGST; } public BR_GLTransactionsQuery setAmountReconciledIncGST(BigDecimal value) { this.AmountReconciledIncGST = value; return this; } public BigDecimal getAmountReconciledIncGSTGreaterThanOrEqualTo() { return AmountReconciledIncGSTGreaterThanOrEqualTo; } public BR_GLTransactionsQuery setAmountReconciledIncGSTGreaterThanOrEqualTo(BigDecimal value) { this.AmountReconciledIncGSTGreaterThanOrEqualTo = value; return this; } public BigDecimal getAmountReconciledIncGSTGreaterThan() { return AmountReconciledIncGSTGreaterThan; } public BR_GLTransactionsQuery setAmountReconciledIncGSTGreaterThan(BigDecimal value) { this.AmountReconciledIncGSTGreaterThan = value; return this; } public BigDecimal getAmountReconciledIncGSTLessThan() { return AmountReconciledIncGSTLessThan; } public BR_GLTransactionsQuery setAmountReconciledIncGSTLessThan(BigDecimal value) { this.AmountReconciledIncGSTLessThan = value; return this; } public BigDecimal getAmountReconciledIncGSTLessThanOrEqualTo() { return AmountReconciledIncGSTLessThanOrEqualTo; } public BR_GLTransactionsQuery setAmountReconciledIncGSTLessThanOrEqualTo(BigDecimal value) { this.AmountReconciledIncGSTLessThanOrEqualTo = value; return this; } public BigDecimal getAmountReconciledIncGSTNotEqualTo() { return AmountReconciledIncGSTNotEqualTo; } public BR_GLTransactionsQuery setAmountReconciledIncGSTNotEqualTo(BigDecimal value) { this.AmountReconciledIncGSTNotEqualTo = value; return this; } public ArrayList getAmountReconciledIncGSTBetween() { return AmountReconciledIncGSTBetween; } public BR_GLTransactionsQuery setAmountReconciledIncGSTBetween(ArrayList value) { this.AmountReconciledIncGSTBetween = value; return this; } public ArrayList getAmountReconciledIncGSTIn() { return AmountReconciledIncGSTIn; } public BR_GLTransactionsQuery setAmountReconciledIncGSTIn(ArrayList value) { this.AmountReconciledIncGSTIn = value; return this; } public String getReference() { return Reference; } public BR_GLTransactionsQuery setReference(String value) { this.Reference = value; return this; } public String getReferenceStartsWith() { return ReferenceStartsWith; } public BR_GLTransactionsQuery setReferenceStartsWith(String value) { this.ReferenceStartsWith = value; return this; } public String getReferenceEndsWith() { return ReferenceEndsWith; } public BR_GLTransactionsQuery setReferenceEndsWith(String value) { this.ReferenceEndsWith = value; return this; } public String getReferenceContains() { return ReferenceContains; } public BR_GLTransactionsQuery setReferenceContains(String value) { this.ReferenceContains = value; return this; } public String getReferenceLike() { return ReferenceLike; } public BR_GLTransactionsQuery setReferenceLike(String value) { this.ReferenceLike = value; return this; } public ArrayList getReferenceBetween() { return ReferenceBetween; } public BR_GLTransactionsQuery setReferenceBetween(ArrayList value) { this.ReferenceBetween = value; return this; } public ArrayList getReferenceIn() { return ReferenceIn; } public BR_GLTransactionsQuery setReferenceIn(ArrayList value) { this.ReferenceIn = value; return this; } public Short getDebitCredit() { return DebitCredit; } public BR_GLTransactionsQuery setDebitCredit(Short value) { this.DebitCredit = value; return this; } public Short getDebitCreditGreaterThanOrEqualTo() { return DebitCreditGreaterThanOrEqualTo; } public BR_GLTransactionsQuery setDebitCreditGreaterThanOrEqualTo(Short value) { this.DebitCreditGreaterThanOrEqualTo = value; return this; } public Short getDebitCreditGreaterThan() { return DebitCreditGreaterThan; } public BR_GLTransactionsQuery setDebitCreditGreaterThan(Short value) { this.DebitCreditGreaterThan = value; return this; } public Short getDebitCreditLessThan() { return DebitCreditLessThan; } public BR_GLTransactionsQuery setDebitCreditLessThan(Short value) { this.DebitCreditLessThan = value; return this; } public Short getDebitCreditLessThanOrEqualTo() { return DebitCreditLessThanOrEqualTo; } public BR_GLTransactionsQuery setDebitCreditLessThanOrEqualTo(Short value) { this.DebitCreditLessThanOrEqualTo = value; return this; } public Short getDebitCreditNotEqualTo() { return DebitCreditNotEqualTo; } public BR_GLTransactionsQuery setDebitCreditNotEqualTo(Short value) { this.DebitCreditNotEqualTo = value; return this; } public ArrayList getDebitCreditBetween() { return DebitCreditBetween; } public BR_GLTransactionsQuery setDebitCreditBetween(ArrayList value) { this.DebitCreditBetween = value; return this; } public ArrayList getDebitCreditIn() { return DebitCreditIn; } public BR_GLTransactionsQuery setDebitCreditIn(ArrayList value) { this.DebitCreditIn = value; return this; } public String getRemark() { return Remark; } public BR_GLTransactionsQuery setRemark(String value) { this.Remark = value; return this; } public String getRemarkStartsWith() { return RemarkStartsWith; } public BR_GLTransactionsQuery setRemarkStartsWith(String value) { this.RemarkStartsWith = value; return this; } public String getRemarkEndsWith() { return RemarkEndsWith; } public BR_GLTransactionsQuery setRemarkEndsWith(String value) { this.RemarkEndsWith = value; return this; } public String getRemarkContains() { return RemarkContains; } public BR_GLTransactionsQuery setRemarkContains(String value) { this.RemarkContains = value; return this; } public String getRemarkLike() { return RemarkLike; } public BR_GLTransactionsQuery setRemarkLike(String value) { this.RemarkLike = value; return this; } public ArrayList getRemarkBetween() { return RemarkBetween; } public BR_GLTransactionsQuery setRemarkBetween(ArrayList value) { this.RemarkBetween = value; return this; } public ArrayList getRemarkIn() { return RemarkIn; } public BR_GLTransactionsQuery setRemarkIn(ArrayList value) { this.RemarkIn = value; return this; } public BigDecimal getAmountIncGST() { return AmountIncGST; } public BR_GLTransactionsQuery setAmountIncGST(BigDecimal value) { this.AmountIncGST = value; return this; } public BigDecimal getAmountIncGSTGreaterThanOrEqualTo() { return AmountIncGSTGreaterThanOrEqualTo; } public BR_GLTransactionsQuery setAmountIncGSTGreaterThanOrEqualTo(BigDecimal value) { this.AmountIncGSTGreaterThanOrEqualTo = value; return this; } public BigDecimal getAmountIncGSTGreaterThan() { return AmountIncGSTGreaterThan; } public BR_GLTransactionsQuery setAmountIncGSTGreaterThan(BigDecimal value) { this.AmountIncGSTGreaterThan = value; return this; } public BigDecimal getAmountIncGSTLessThan() { return AmountIncGSTLessThan; } public BR_GLTransactionsQuery setAmountIncGSTLessThan(BigDecimal value) { this.AmountIncGSTLessThan = value; return this; } public BigDecimal getAmountIncGSTLessThanOrEqualTo() { return AmountIncGSTLessThanOrEqualTo; } public BR_GLTransactionsQuery setAmountIncGSTLessThanOrEqualTo(BigDecimal value) { this.AmountIncGSTLessThanOrEqualTo = value; return this; } public BigDecimal getAmountIncGSTNotEqualTo() { return AmountIncGSTNotEqualTo; } public BR_GLTransactionsQuery setAmountIncGSTNotEqualTo(BigDecimal value) { this.AmountIncGSTNotEqualTo = value; return this; } public ArrayList getAmountIncGSTBetween() { return AmountIncGSTBetween; } public BR_GLTransactionsQuery setAmountIncGSTBetween(ArrayList value) { this.AmountIncGSTBetween = value; return this; } public ArrayList getAmountIncGSTIn() { return AmountIncGSTIn; } public BR_GLTransactionsQuery setAmountIncGSTIn(ArrayList value) { this.AmountIncGSTIn = value; return this; } public String getFirstAppearanceBankRecID() { return FirstAppearanceBankRecID; } public BR_GLTransactionsQuery setFirstAppearanceBankRecID(String value) { this.FirstAppearanceBankRecID = value; return this; } public String getFirstAppearanceBankRecIDStartsWith() { return FirstAppearanceBankRecIDStartsWith; } public BR_GLTransactionsQuery setFirstAppearanceBankRecIDStartsWith(String value) { this.FirstAppearanceBankRecIDStartsWith = value; return this; } public String getFirstAppearanceBankRecIDEndsWith() { return FirstAppearanceBankRecIDEndsWith; } public BR_GLTransactionsQuery setFirstAppearanceBankRecIDEndsWith(String value) { this.FirstAppearanceBankRecIDEndsWith = value; return this; } public String getFirstAppearanceBankRecIDContains() { return FirstAppearanceBankRecIDContains; } public BR_GLTransactionsQuery setFirstAppearanceBankRecIDContains(String value) { this.FirstAppearanceBankRecIDContains = value; return this; } public String getFirstAppearanceBankRecIDLike() { return FirstAppearanceBankRecIDLike; } public BR_GLTransactionsQuery setFirstAppearanceBankRecIDLike(String value) { this.FirstAppearanceBankRecIDLike = value; return this; } public ArrayList getFirstAppearanceBankRecIDBetween() { return FirstAppearanceBankRecIDBetween; } public BR_GLTransactionsQuery setFirstAppearanceBankRecIDBetween(ArrayList value) { this.FirstAppearanceBankRecIDBetween = value; return this; } public ArrayList getFirstAppearanceBankRecIDIn() { return FirstAppearanceBankRecIDIn; } public BR_GLTransactionsQuery setFirstAppearanceBankRecIDIn(ArrayList value) { this.FirstAppearanceBankRecIDIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class BR_MainQuery extends QueryDb implements IReturn> { public String BankRecID = null; public String BankRecIDStartsWith = null; public String BankRecIDEndsWith = null; public String BankRecIDContains = null; public String BankRecIDLike = null; public ArrayList BankRecIDBetween = null; public ArrayList BankRecIDIn = null; public String BankRecNo = null; public String BankRecNoStartsWith = null; public String BankRecNoEndsWith = null; public String BankRecNoContains = null; public String BankRecNoLike = null; public ArrayList BankRecNoBetween = null; public ArrayList BankRecNoIn = null; public String Reference = null; public String ReferenceStartsWith = null; public String ReferenceEndsWith = null; public String ReferenceContains = null; public String ReferenceLike = null; public ArrayList ReferenceBetween = null; public ArrayList ReferenceIn = null; public String BankAccountLedgerID = null; public String BankAccountLedgerIDStartsWith = null; public String BankAccountLedgerIDEndsWith = null; public String BankAccountLedgerIDContains = null; public String BankAccountLedgerIDLike = null; public ArrayList BankAccountLedgerIDBetween = null; public ArrayList BankAccountLedgerIDIn = null; public Date BankStatementDate = null; public Date BankStatementDateGreaterThanOrEqualTo = null; public Date BankStatementDateGreaterThan = null; public Date BankStatementDateLessThan = null; public Date BankStatementDateLessThanOrEqualTo = null; public Date BankStatementDateNotEqualTo = null; public ArrayList BankStatementDateBetween = null; public ArrayList BankStatementDateIn = null; public Integer Status = null; public Integer StatusGreaterThanOrEqualTo = null; public Integer StatusGreaterThan = null; public Integer StatusLessThan = null; public Integer StatusLessThanOrEqualTo = null; public Integer StatusNotEqualTo = null; public ArrayList StatusBetween = null; public ArrayList StatusIn = null; public String CreatedByStaffID = null; public String CreatedByStaffIDStartsWith = null; public String CreatedByStaffIDEndsWith = null; public String CreatedByStaffIDContains = null; public String CreatedByStaffIDLike = null; public ArrayList CreatedByStaffIDBetween = null; public ArrayList CreatedByStaffIDIn = null; public Date CreatedDateTime = null; public Date CreatedDateTimeGreaterThanOrEqualTo = null; public Date CreatedDateTimeGreaterThan = null; public Date CreatedDateTimeLessThan = null; public Date CreatedDateTimeLessThanOrEqualTo = null; public Date CreatedDateTimeNotEqualTo = null; public ArrayList CreatedDateTimeBetween = null; public ArrayList CreatedDateTimeIn = null; public String LastSavedByStaffID = null; public String LastSavedByStaffIDStartsWith = null; public String LastSavedByStaffIDEndsWith = null; public String LastSavedByStaffIDContains = null; public String LastSavedByStaffIDLike = null; public ArrayList LastSavedByStaffIDBetween = null; public ArrayList LastSavedByStaffIDIn = null; public Date LastSavedDateTime = null; public Date LastSavedDateTimeGreaterThanOrEqualTo = null; public Date LastSavedDateTimeGreaterThan = null; public Date LastSavedDateTimeLessThan = null; public Date LastSavedDateTimeLessThanOrEqualTo = null; public Date LastSavedDateTimeNotEqualTo = null; public ArrayList LastSavedDateTimeBetween = null; public ArrayList LastSavedDateTimeIn = null; public BigDecimal BankStatementOpeningBalance = null; public BigDecimal BankStatementOpeningBalanceGreaterThanOrEqualTo = null; public BigDecimal BankStatementOpeningBalanceGreaterThan = null; public BigDecimal BankStatementOpeningBalanceLessThan = null; public BigDecimal BankStatementOpeningBalanceLessThanOrEqualTo = null; public BigDecimal BankStatementOpeningBalanceNotEqualTo = null; public ArrayList BankStatementOpeningBalanceBetween = null; public ArrayList BankStatementOpeningBalanceIn = null; public BigDecimal BankAccountLedgerCurrentBalance = null; public BigDecimal BankAccountLedgerCurrentBalanceGreaterThanOrEqualTo = null; public BigDecimal BankAccountLedgerCurrentBalanceGreaterThan = null; public BigDecimal BankAccountLedgerCurrentBalanceLessThan = null; public BigDecimal BankAccountLedgerCurrentBalanceLessThanOrEqualTo = null; public BigDecimal BankAccountLedgerCurrentBalanceNotEqualTo = null; public ArrayList BankAccountLedgerCurrentBalanceBetween = null; public ArrayList BankAccountLedgerCurrentBalanceIn = null; public BigDecimal BankStatementClosingBalance = null; public BigDecimal BankStatementClosingBalanceGreaterThanOrEqualTo = null; public BigDecimal BankStatementClosingBalanceGreaterThan = null; public BigDecimal BankStatementClosingBalanceLessThan = null; public BigDecimal BankStatementClosingBalanceLessThanOrEqualTo = null; public BigDecimal BankStatementClosingBalanceNotEqualTo = null; public ArrayList BankStatementClosingBalanceBetween = null; public ArrayList BankStatementClosingBalanceIn = null; public BigDecimal BankAccountLedgerBalanceBroughtForward = null; public BigDecimal BankAccountLedgerBalanceBroughtForwardGreaterThanOrEqualTo = null; public BigDecimal BankAccountLedgerBalanceBroughtForwardGreaterThan = null; public BigDecimal BankAccountLedgerBalanceBroughtForwardLessThan = null; public BigDecimal BankAccountLedgerBalanceBroughtForwardLessThanOrEqualTo = null; public BigDecimal BankAccountLedgerBalanceBroughtForwardNotEqualTo = null; public ArrayList BankAccountLedgerBalanceBroughtForwardBetween = null; public ArrayList BankAccountLedgerBalanceBroughtForwardIn = null; public String getBankRecID() { return BankRecID; } public BR_MainQuery setBankRecID(String value) { this.BankRecID = value; return this; } public String getBankRecIDStartsWith() { return BankRecIDStartsWith; } public BR_MainQuery setBankRecIDStartsWith(String value) { this.BankRecIDStartsWith = value; return this; } public String getBankRecIDEndsWith() { return BankRecIDEndsWith; } public BR_MainQuery setBankRecIDEndsWith(String value) { this.BankRecIDEndsWith = value; return this; } public String getBankRecIDContains() { return BankRecIDContains; } public BR_MainQuery setBankRecIDContains(String value) { this.BankRecIDContains = value; return this; } public String getBankRecIDLike() { return BankRecIDLike; } public BR_MainQuery setBankRecIDLike(String value) { this.BankRecIDLike = value; return this; } public ArrayList getBankRecIDBetween() { return BankRecIDBetween; } public BR_MainQuery setBankRecIDBetween(ArrayList value) { this.BankRecIDBetween = value; return this; } public ArrayList getBankRecIDIn() { return BankRecIDIn; } public BR_MainQuery setBankRecIDIn(ArrayList value) { this.BankRecIDIn = value; return this; } public String getBankRecNo() { return BankRecNo; } public BR_MainQuery setBankRecNo(String value) { this.BankRecNo = value; return this; } public String getBankRecNoStartsWith() { return BankRecNoStartsWith; } public BR_MainQuery setBankRecNoStartsWith(String value) { this.BankRecNoStartsWith = value; return this; } public String getBankRecNoEndsWith() { return BankRecNoEndsWith; } public BR_MainQuery setBankRecNoEndsWith(String value) { this.BankRecNoEndsWith = value; return this; } public String getBankRecNoContains() { return BankRecNoContains; } public BR_MainQuery setBankRecNoContains(String value) { this.BankRecNoContains = value; return this; } public String getBankRecNoLike() { return BankRecNoLike; } public BR_MainQuery setBankRecNoLike(String value) { this.BankRecNoLike = value; return this; } public ArrayList getBankRecNoBetween() { return BankRecNoBetween; } public BR_MainQuery setBankRecNoBetween(ArrayList value) { this.BankRecNoBetween = value; return this; } public ArrayList getBankRecNoIn() { return BankRecNoIn; } public BR_MainQuery setBankRecNoIn(ArrayList value) { this.BankRecNoIn = value; return this; } public String getReference() { return Reference; } public BR_MainQuery setReference(String value) { this.Reference = value; return this; } public String getReferenceStartsWith() { return ReferenceStartsWith; } public BR_MainQuery setReferenceStartsWith(String value) { this.ReferenceStartsWith = value; return this; } public String getReferenceEndsWith() { return ReferenceEndsWith; } public BR_MainQuery setReferenceEndsWith(String value) { this.ReferenceEndsWith = value; return this; } public String getReferenceContains() { return ReferenceContains; } public BR_MainQuery setReferenceContains(String value) { this.ReferenceContains = value; return this; } public String getReferenceLike() { return ReferenceLike; } public BR_MainQuery setReferenceLike(String value) { this.ReferenceLike = value; return this; } public ArrayList getReferenceBetween() { return ReferenceBetween; } public BR_MainQuery setReferenceBetween(ArrayList value) { this.ReferenceBetween = value; return this; } public ArrayList getReferenceIn() { return ReferenceIn; } public BR_MainQuery setReferenceIn(ArrayList value) { this.ReferenceIn = value; return this; } public String getBankAccountLedgerID() { return BankAccountLedgerID; } public BR_MainQuery setBankAccountLedgerID(String value) { this.BankAccountLedgerID = value; return this; } public String getBankAccountLedgerIDStartsWith() { return BankAccountLedgerIDStartsWith; } public BR_MainQuery setBankAccountLedgerIDStartsWith(String value) { this.BankAccountLedgerIDStartsWith = value; return this; } public String getBankAccountLedgerIDEndsWith() { return BankAccountLedgerIDEndsWith; } public BR_MainQuery setBankAccountLedgerIDEndsWith(String value) { this.BankAccountLedgerIDEndsWith = value; return this; } public String getBankAccountLedgerIDContains() { return BankAccountLedgerIDContains; } public BR_MainQuery setBankAccountLedgerIDContains(String value) { this.BankAccountLedgerIDContains = value; return this; } public String getBankAccountLedgerIDLike() { return BankAccountLedgerIDLike; } public BR_MainQuery setBankAccountLedgerIDLike(String value) { this.BankAccountLedgerIDLike = value; return this; } public ArrayList getBankAccountLedgerIDBetween() { return BankAccountLedgerIDBetween; } public BR_MainQuery setBankAccountLedgerIDBetween(ArrayList value) { this.BankAccountLedgerIDBetween = value; return this; } public ArrayList getBankAccountLedgerIDIn() { return BankAccountLedgerIDIn; } public BR_MainQuery setBankAccountLedgerIDIn(ArrayList value) { this.BankAccountLedgerIDIn = value; return this; } public Date getBankStatementDate() { return BankStatementDate; } public BR_MainQuery setBankStatementDate(Date value) { this.BankStatementDate = value; return this; } public Date getBankStatementDateGreaterThanOrEqualTo() { return BankStatementDateGreaterThanOrEqualTo; } public BR_MainQuery setBankStatementDateGreaterThanOrEqualTo(Date value) { this.BankStatementDateGreaterThanOrEqualTo = value; return this; } public Date getBankStatementDateGreaterThan() { return BankStatementDateGreaterThan; } public BR_MainQuery setBankStatementDateGreaterThan(Date value) { this.BankStatementDateGreaterThan = value; return this; } public Date getBankStatementDateLessThan() { return BankStatementDateLessThan; } public BR_MainQuery setBankStatementDateLessThan(Date value) { this.BankStatementDateLessThan = value; return this; } public Date getBankStatementDateLessThanOrEqualTo() { return BankStatementDateLessThanOrEqualTo; } public BR_MainQuery setBankStatementDateLessThanOrEqualTo(Date value) { this.BankStatementDateLessThanOrEqualTo = value; return this; } public Date getBankStatementDateNotEqualTo() { return BankStatementDateNotEqualTo; } public BR_MainQuery setBankStatementDateNotEqualTo(Date value) { this.BankStatementDateNotEqualTo = value; return this; } public ArrayList getBankStatementDateBetween() { return BankStatementDateBetween; } public BR_MainQuery setBankStatementDateBetween(ArrayList value) { this.BankStatementDateBetween = value; return this; } public ArrayList getBankStatementDateIn() { return BankStatementDateIn; } public BR_MainQuery setBankStatementDateIn(ArrayList value) { this.BankStatementDateIn = value; return this; } public Integer getStatus() { return Status; } public BR_MainQuery setStatus(Integer value) { this.Status = value; return this; } public Integer getStatusGreaterThanOrEqualTo() { return StatusGreaterThanOrEqualTo; } public BR_MainQuery setStatusGreaterThanOrEqualTo(Integer value) { this.StatusGreaterThanOrEqualTo = value; return this; } public Integer getStatusGreaterThan() { return StatusGreaterThan; } public BR_MainQuery setStatusGreaterThan(Integer value) { this.StatusGreaterThan = value; return this; } public Integer getStatusLessThan() { return StatusLessThan; } public BR_MainQuery setStatusLessThan(Integer value) { this.StatusLessThan = value; return this; } public Integer getStatusLessThanOrEqualTo() { return StatusLessThanOrEqualTo; } public BR_MainQuery setStatusLessThanOrEqualTo(Integer value) { this.StatusLessThanOrEqualTo = value; return this; } public Integer getStatusNotEqualTo() { return StatusNotEqualTo; } public BR_MainQuery setStatusNotEqualTo(Integer value) { this.StatusNotEqualTo = value; return this; } public ArrayList getStatusBetween() { return StatusBetween; } public BR_MainQuery setStatusBetween(ArrayList value) { this.StatusBetween = value; return this; } public ArrayList getStatusIn() { return StatusIn; } public BR_MainQuery setStatusIn(ArrayList value) { this.StatusIn = value; return this; } public String getCreatedByStaffID() { return CreatedByStaffID; } public BR_MainQuery setCreatedByStaffID(String value) { this.CreatedByStaffID = value; return this; } public String getCreatedByStaffIDStartsWith() { return CreatedByStaffIDStartsWith; } public BR_MainQuery setCreatedByStaffIDStartsWith(String value) { this.CreatedByStaffIDStartsWith = value; return this; } public String getCreatedByStaffIDEndsWith() { return CreatedByStaffIDEndsWith; } public BR_MainQuery setCreatedByStaffIDEndsWith(String value) { this.CreatedByStaffIDEndsWith = value; return this; } public String getCreatedByStaffIDContains() { return CreatedByStaffIDContains; } public BR_MainQuery setCreatedByStaffIDContains(String value) { this.CreatedByStaffIDContains = value; return this; } public String getCreatedByStaffIDLike() { return CreatedByStaffIDLike; } public BR_MainQuery setCreatedByStaffIDLike(String value) { this.CreatedByStaffIDLike = value; return this; } public ArrayList getCreatedByStaffIDBetween() { return CreatedByStaffIDBetween; } public BR_MainQuery setCreatedByStaffIDBetween(ArrayList value) { this.CreatedByStaffIDBetween = value; return this; } public ArrayList getCreatedByStaffIDIn() { return CreatedByStaffIDIn; } public BR_MainQuery setCreatedByStaffIDIn(ArrayList value) { this.CreatedByStaffIDIn = value; return this; } public Date getCreatedDateTime() { return CreatedDateTime; } public BR_MainQuery setCreatedDateTime(Date value) { this.CreatedDateTime = value; return this; } public Date getCreatedDateTimeGreaterThanOrEqualTo() { return CreatedDateTimeGreaterThanOrEqualTo; } public BR_MainQuery setCreatedDateTimeGreaterThanOrEqualTo(Date value) { this.CreatedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getCreatedDateTimeGreaterThan() { return CreatedDateTimeGreaterThan; } public BR_MainQuery setCreatedDateTimeGreaterThan(Date value) { this.CreatedDateTimeGreaterThan = value; return this; } public Date getCreatedDateTimeLessThan() { return CreatedDateTimeLessThan; } public BR_MainQuery setCreatedDateTimeLessThan(Date value) { this.CreatedDateTimeLessThan = value; return this; } public Date getCreatedDateTimeLessThanOrEqualTo() { return CreatedDateTimeLessThanOrEqualTo; } public BR_MainQuery setCreatedDateTimeLessThanOrEqualTo(Date value) { this.CreatedDateTimeLessThanOrEqualTo = value; return this; } public Date getCreatedDateTimeNotEqualTo() { return CreatedDateTimeNotEqualTo; } public BR_MainQuery setCreatedDateTimeNotEqualTo(Date value) { this.CreatedDateTimeNotEqualTo = value; return this; } public ArrayList getCreatedDateTimeBetween() { return CreatedDateTimeBetween; } public BR_MainQuery setCreatedDateTimeBetween(ArrayList value) { this.CreatedDateTimeBetween = value; return this; } public ArrayList getCreatedDateTimeIn() { return CreatedDateTimeIn; } public BR_MainQuery setCreatedDateTimeIn(ArrayList value) { this.CreatedDateTimeIn = value; return this; } public String getLastSavedByStaffID() { return LastSavedByStaffID; } public BR_MainQuery setLastSavedByStaffID(String value) { this.LastSavedByStaffID = value; return this; } public String getLastSavedByStaffIDStartsWith() { return LastSavedByStaffIDStartsWith; } public BR_MainQuery setLastSavedByStaffIDStartsWith(String value) { this.LastSavedByStaffIDStartsWith = value; return this; } public String getLastSavedByStaffIDEndsWith() { return LastSavedByStaffIDEndsWith; } public BR_MainQuery setLastSavedByStaffIDEndsWith(String value) { this.LastSavedByStaffIDEndsWith = value; return this; } public String getLastSavedByStaffIDContains() { return LastSavedByStaffIDContains; } public BR_MainQuery setLastSavedByStaffIDContains(String value) { this.LastSavedByStaffIDContains = value; return this; } public String getLastSavedByStaffIDLike() { return LastSavedByStaffIDLike; } public BR_MainQuery setLastSavedByStaffIDLike(String value) { this.LastSavedByStaffIDLike = value; return this; } public ArrayList getLastSavedByStaffIDBetween() { return LastSavedByStaffIDBetween; } public BR_MainQuery setLastSavedByStaffIDBetween(ArrayList value) { this.LastSavedByStaffIDBetween = value; return this; } public ArrayList getLastSavedByStaffIDIn() { return LastSavedByStaffIDIn; } public BR_MainQuery setLastSavedByStaffIDIn(ArrayList value) { this.LastSavedByStaffIDIn = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public BR_MainQuery setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getLastSavedDateTimeGreaterThanOrEqualTo() { return LastSavedDateTimeGreaterThanOrEqualTo; } public BR_MainQuery setLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.LastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeGreaterThan() { return LastSavedDateTimeGreaterThan; } public BR_MainQuery setLastSavedDateTimeGreaterThan(Date value) { this.LastSavedDateTimeGreaterThan = value; return this; } public Date getLastSavedDateTimeLessThan() { return LastSavedDateTimeLessThan; } public BR_MainQuery setLastSavedDateTimeLessThan(Date value) { this.LastSavedDateTimeLessThan = value; return this; } public Date getLastSavedDateTimeLessThanOrEqualTo() { return LastSavedDateTimeLessThanOrEqualTo; } public BR_MainQuery setLastSavedDateTimeLessThanOrEqualTo(Date value) { this.LastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeNotEqualTo() { return LastSavedDateTimeNotEqualTo; } public BR_MainQuery setLastSavedDateTimeNotEqualTo(Date value) { this.LastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getLastSavedDateTimeBetween() { return LastSavedDateTimeBetween; } public BR_MainQuery setLastSavedDateTimeBetween(ArrayList value) { this.LastSavedDateTimeBetween = value; return this; } public ArrayList getLastSavedDateTimeIn() { return LastSavedDateTimeIn; } public BR_MainQuery setLastSavedDateTimeIn(ArrayList value) { this.LastSavedDateTimeIn = value; return this; } public BigDecimal getBankStatementOpeningBalance() { return BankStatementOpeningBalance; } public BR_MainQuery setBankStatementOpeningBalance(BigDecimal value) { this.BankStatementOpeningBalance = value; return this; } public BigDecimal getBankStatementOpeningBalanceGreaterThanOrEqualTo() { return BankStatementOpeningBalanceGreaterThanOrEqualTo; } public BR_MainQuery setBankStatementOpeningBalanceGreaterThanOrEqualTo(BigDecimal value) { this.BankStatementOpeningBalanceGreaterThanOrEqualTo = value; return this; } public BigDecimal getBankStatementOpeningBalanceGreaterThan() { return BankStatementOpeningBalanceGreaterThan; } public BR_MainQuery setBankStatementOpeningBalanceGreaterThan(BigDecimal value) { this.BankStatementOpeningBalanceGreaterThan = value; return this; } public BigDecimal getBankStatementOpeningBalanceLessThan() { return BankStatementOpeningBalanceLessThan; } public BR_MainQuery setBankStatementOpeningBalanceLessThan(BigDecimal value) { this.BankStatementOpeningBalanceLessThan = value; return this; } public BigDecimal getBankStatementOpeningBalanceLessThanOrEqualTo() { return BankStatementOpeningBalanceLessThanOrEqualTo; } public BR_MainQuery setBankStatementOpeningBalanceLessThanOrEqualTo(BigDecimal value) { this.BankStatementOpeningBalanceLessThanOrEqualTo = value; return this; } public BigDecimal getBankStatementOpeningBalanceNotEqualTo() { return BankStatementOpeningBalanceNotEqualTo; } public BR_MainQuery setBankStatementOpeningBalanceNotEqualTo(BigDecimal value) { this.BankStatementOpeningBalanceNotEqualTo = value; return this; } public ArrayList getBankStatementOpeningBalanceBetween() { return BankStatementOpeningBalanceBetween; } public BR_MainQuery setBankStatementOpeningBalanceBetween(ArrayList value) { this.BankStatementOpeningBalanceBetween = value; return this; } public ArrayList getBankStatementOpeningBalanceIn() { return BankStatementOpeningBalanceIn; } public BR_MainQuery setBankStatementOpeningBalanceIn(ArrayList value) { this.BankStatementOpeningBalanceIn = value; return this; } public BigDecimal getBankAccountLedgerCurrentBalance() { return BankAccountLedgerCurrentBalance; } public BR_MainQuery setBankAccountLedgerCurrentBalance(BigDecimal value) { this.BankAccountLedgerCurrentBalance = value; return this; } public BigDecimal getBankAccountLedgerCurrentBalanceGreaterThanOrEqualTo() { return BankAccountLedgerCurrentBalanceGreaterThanOrEqualTo; } public BR_MainQuery setBankAccountLedgerCurrentBalanceGreaterThanOrEqualTo(BigDecimal value) { this.BankAccountLedgerCurrentBalanceGreaterThanOrEqualTo = value; return this; } public BigDecimal getBankAccountLedgerCurrentBalanceGreaterThan() { return BankAccountLedgerCurrentBalanceGreaterThan; } public BR_MainQuery setBankAccountLedgerCurrentBalanceGreaterThan(BigDecimal value) { this.BankAccountLedgerCurrentBalanceGreaterThan = value; return this; } public BigDecimal getBankAccountLedgerCurrentBalanceLessThan() { return BankAccountLedgerCurrentBalanceLessThan; } public BR_MainQuery setBankAccountLedgerCurrentBalanceLessThan(BigDecimal value) { this.BankAccountLedgerCurrentBalanceLessThan = value; return this; } public BigDecimal getBankAccountLedgerCurrentBalanceLessThanOrEqualTo() { return BankAccountLedgerCurrentBalanceLessThanOrEqualTo; } public BR_MainQuery setBankAccountLedgerCurrentBalanceLessThanOrEqualTo(BigDecimal value) { this.BankAccountLedgerCurrentBalanceLessThanOrEqualTo = value; return this; } public BigDecimal getBankAccountLedgerCurrentBalanceNotEqualTo() { return BankAccountLedgerCurrentBalanceNotEqualTo; } public BR_MainQuery setBankAccountLedgerCurrentBalanceNotEqualTo(BigDecimal value) { this.BankAccountLedgerCurrentBalanceNotEqualTo = value; return this; } public ArrayList getBankAccountLedgerCurrentBalanceBetween() { return BankAccountLedgerCurrentBalanceBetween; } public BR_MainQuery setBankAccountLedgerCurrentBalanceBetween(ArrayList value) { this.BankAccountLedgerCurrentBalanceBetween = value; return this; } public ArrayList getBankAccountLedgerCurrentBalanceIn() { return BankAccountLedgerCurrentBalanceIn; } public BR_MainQuery setBankAccountLedgerCurrentBalanceIn(ArrayList value) { this.BankAccountLedgerCurrentBalanceIn = value; return this; } public BigDecimal getBankStatementClosingBalance() { return BankStatementClosingBalance; } public BR_MainQuery setBankStatementClosingBalance(BigDecimal value) { this.BankStatementClosingBalance = value; return this; } public BigDecimal getBankStatementClosingBalanceGreaterThanOrEqualTo() { return BankStatementClosingBalanceGreaterThanOrEqualTo; } public BR_MainQuery setBankStatementClosingBalanceGreaterThanOrEqualTo(BigDecimal value) { this.BankStatementClosingBalanceGreaterThanOrEqualTo = value; return this; } public BigDecimal getBankStatementClosingBalanceGreaterThan() { return BankStatementClosingBalanceGreaterThan; } public BR_MainQuery setBankStatementClosingBalanceGreaterThan(BigDecimal value) { this.BankStatementClosingBalanceGreaterThan = value; return this; } public BigDecimal getBankStatementClosingBalanceLessThan() { return BankStatementClosingBalanceLessThan; } public BR_MainQuery setBankStatementClosingBalanceLessThan(BigDecimal value) { this.BankStatementClosingBalanceLessThan = value; return this; } public BigDecimal getBankStatementClosingBalanceLessThanOrEqualTo() { return BankStatementClosingBalanceLessThanOrEqualTo; } public BR_MainQuery setBankStatementClosingBalanceLessThanOrEqualTo(BigDecimal value) { this.BankStatementClosingBalanceLessThanOrEqualTo = value; return this; } public BigDecimal getBankStatementClosingBalanceNotEqualTo() { return BankStatementClosingBalanceNotEqualTo; } public BR_MainQuery setBankStatementClosingBalanceNotEqualTo(BigDecimal value) { this.BankStatementClosingBalanceNotEqualTo = value; return this; } public ArrayList getBankStatementClosingBalanceBetween() { return BankStatementClosingBalanceBetween; } public BR_MainQuery setBankStatementClosingBalanceBetween(ArrayList value) { this.BankStatementClosingBalanceBetween = value; return this; } public ArrayList getBankStatementClosingBalanceIn() { return BankStatementClosingBalanceIn; } public BR_MainQuery setBankStatementClosingBalanceIn(ArrayList value) { this.BankStatementClosingBalanceIn = value; return this; } public BigDecimal getBankAccountLedgerBalanceBroughtForward() { return BankAccountLedgerBalanceBroughtForward; } public BR_MainQuery setBankAccountLedgerBalanceBroughtForward(BigDecimal value) { this.BankAccountLedgerBalanceBroughtForward = value; return this; } public BigDecimal getBankAccountLedgerBalanceBroughtForwardGreaterThanOrEqualTo() { return BankAccountLedgerBalanceBroughtForwardGreaterThanOrEqualTo; } public BR_MainQuery setBankAccountLedgerBalanceBroughtForwardGreaterThanOrEqualTo(BigDecimal value) { this.BankAccountLedgerBalanceBroughtForwardGreaterThanOrEqualTo = value; return this; } public BigDecimal getBankAccountLedgerBalanceBroughtForwardGreaterThan() { return BankAccountLedgerBalanceBroughtForwardGreaterThan; } public BR_MainQuery setBankAccountLedgerBalanceBroughtForwardGreaterThan(BigDecimal value) { this.BankAccountLedgerBalanceBroughtForwardGreaterThan = value; return this; } public BigDecimal getBankAccountLedgerBalanceBroughtForwardLessThan() { return BankAccountLedgerBalanceBroughtForwardLessThan; } public BR_MainQuery setBankAccountLedgerBalanceBroughtForwardLessThan(BigDecimal value) { this.BankAccountLedgerBalanceBroughtForwardLessThan = value; return this; } public BigDecimal getBankAccountLedgerBalanceBroughtForwardLessThanOrEqualTo() { return BankAccountLedgerBalanceBroughtForwardLessThanOrEqualTo; } public BR_MainQuery setBankAccountLedgerBalanceBroughtForwardLessThanOrEqualTo(BigDecimal value) { this.BankAccountLedgerBalanceBroughtForwardLessThanOrEqualTo = value; return this; } public BigDecimal getBankAccountLedgerBalanceBroughtForwardNotEqualTo() { return BankAccountLedgerBalanceBroughtForwardNotEqualTo; } public BR_MainQuery setBankAccountLedgerBalanceBroughtForwardNotEqualTo(BigDecimal value) { this.BankAccountLedgerBalanceBroughtForwardNotEqualTo = value; return this; } public ArrayList getBankAccountLedgerBalanceBroughtForwardBetween() { return BankAccountLedgerBalanceBroughtForwardBetween; } public BR_MainQuery setBankAccountLedgerBalanceBroughtForwardBetween(ArrayList value) { this.BankAccountLedgerBalanceBroughtForwardBetween = value; return this; } public ArrayList getBankAccountLedgerBalanceBroughtForwardIn() { return BankAccountLedgerBalanceBroughtForwardIn; } public BR_MainQuery setBankAccountLedgerBalanceBroughtForwardIn(ArrayList value) { this.BankAccountLedgerBalanceBroughtForwardIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class BR_OpeningBalanceTransactionsQuery extends QueryDb implements IReturn> { public String OpeningBalanceTransactionID = null; public String OpeningBalanceTransactionIDStartsWith = null; public String OpeningBalanceTransactionIDEndsWith = null; public String OpeningBalanceTransactionIDContains = null; public String OpeningBalanceTransactionIDLike = null; public ArrayList OpeningBalanceTransactionIDBetween = null; public ArrayList OpeningBalanceTransactionIDIn = null; public String BankRecID = null; public String BankRecIDStartsWith = null; public String BankRecIDEndsWith = null; public String BankRecIDContains = null; public String BankRecIDLike = null; public ArrayList BankRecIDBetween = null; public ArrayList BankRecIDIn = null; public String CreatedByStaffID = null; public String CreatedByStaffIDStartsWith = null; public String CreatedByStaffIDEndsWith = null; public String CreatedByStaffIDContains = null; public String CreatedByStaffIDLike = null; public ArrayList CreatedByStaffIDBetween = null; public ArrayList CreatedByStaffIDIn = null; public Date CreatedDateTime = null; public Date CreatedDateTimeGreaterThanOrEqualTo = null; public Date CreatedDateTimeGreaterThan = null; public Date CreatedDateTimeLessThan = null; public Date CreatedDateTimeLessThanOrEqualTo = null; public Date CreatedDateTimeNotEqualTo = null; public ArrayList CreatedDateTimeBetween = null; public ArrayList CreatedDateTimeIn = null; public String LastSavedByStaffID = null; public String LastSavedByStaffIDStartsWith = null; public String LastSavedByStaffIDEndsWith = null; public String LastSavedByStaffIDContains = null; public String LastSavedByStaffIDLike = null; public ArrayList LastSavedByStaffIDBetween = null; public ArrayList LastSavedByStaffIDIn = null; public Date LastSavedDateTime = null; public Date LastSavedDateTimeGreaterThanOrEqualTo = null; public Date LastSavedDateTimeGreaterThan = null; public Date LastSavedDateTimeLessThan = null; public Date LastSavedDateTimeLessThanOrEqualTo = null; public Date LastSavedDateTimeNotEqualTo = null; public ArrayList LastSavedDateTimeBetween = null; public ArrayList LastSavedDateTimeIn = null; public Integer LineNumber = null; public Integer LineNumberGreaterThanOrEqualTo = null; public Integer LineNumberGreaterThan = null; public Integer LineNumberLessThan = null; public Integer LineNumberLessThanOrEqualTo = null; public Integer LineNumberNotEqualTo = null; public ArrayList LineNumberBetween = null; public ArrayList LineNumberIn = null; public Date TransactionDateTime = null; public Date TransactionDateTimeGreaterThanOrEqualTo = null; public Date TransactionDateTimeGreaterThan = null; public Date TransactionDateTimeLessThan = null; public Date TransactionDateTimeLessThanOrEqualTo = null; public Date TransactionDateTimeNotEqualTo = null; public ArrayList TransactionDateTimeBetween = null; public ArrayList TransactionDateTimeIn = null; public Short Status = null; public Short StatusGreaterThanOrEqualTo = null; public Short StatusGreaterThan = null; public Short StatusLessThan = null; public Short StatusLessThanOrEqualTo = null; public Short StatusNotEqualTo = null; public ArrayList StatusBetween = null; public ArrayList StatusIn = null; public BigDecimal AmountReconciledIncGST = null; public BigDecimal AmountReconciledIncGSTGreaterThanOrEqualTo = null; public BigDecimal AmountReconciledIncGSTGreaterThan = null; public BigDecimal AmountReconciledIncGSTLessThan = null; public BigDecimal AmountReconciledIncGSTLessThanOrEqualTo = null; public BigDecimal AmountReconciledIncGSTNotEqualTo = null; public ArrayList AmountReconciledIncGSTBetween = null; public ArrayList AmountReconciledIncGSTIn = null; public String Reference = null; public String ReferenceStartsWith = null; public String ReferenceEndsWith = null; public String ReferenceContains = null; public String ReferenceLike = null; public ArrayList ReferenceBetween = null; public ArrayList ReferenceIn = null; public Short DebitCredit = null; public Short DebitCreditGreaterThanOrEqualTo = null; public Short DebitCreditGreaterThan = null; public Short DebitCreditLessThan = null; public Short DebitCreditLessThanOrEqualTo = null; public Short DebitCreditNotEqualTo = null; public ArrayList DebitCreditBetween = null; public ArrayList DebitCreditIn = null; public String Remark = null; public String RemarkStartsWith = null; public String RemarkEndsWith = null; public String RemarkContains = null; public String RemarkLike = null; public ArrayList RemarkBetween = null; public ArrayList RemarkIn = null; public BigDecimal AmountIncGST = null; public BigDecimal AmountIncGSTGreaterThanOrEqualTo = null; public BigDecimal AmountIncGSTGreaterThan = null; public BigDecimal AmountIncGSTLessThan = null; public BigDecimal AmountIncGSTLessThanOrEqualTo = null; public BigDecimal AmountIncGSTNotEqualTo = null; public ArrayList AmountIncGSTBetween = null; public ArrayList AmountIncGSTIn = null; public String PreviousBankRecID = null; public String PreviousBankRecIDStartsWith = null; public String PreviousBankRecIDEndsWith = null; public String PreviousBankRecIDContains = null; public String PreviousBankRecIDLike = null; public ArrayList PreviousBankRecIDBetween = null; public ArrayList PreviousBankRecIDIn = null; public String getOpeningBalanceTransactionID() { return OpeningBalanceTransactionID; } public BR_OpeningBalanceTransactionsQuery setOpeningBalanceTransactionID(String value) { this.OpeningBalanceTransactionID = value; return this; } public String getOpeningBalanceTransactionIDStartsWith() { return OpeningBalanceTransactionIDStartsWith; } public BR_OpeningBalanceTransactionsQuery setOpeningBalanceTransactionIDStartsWith(String value) { this.OpeningBalanceTransactionIDStartsWith = value; return this; } public String getOpeningBalanceTransactionIDEndsWith() { return OpeningBalanceTransactionIDEndsWith; } public BR_OpeningBalanceTransactionsQuery setOpeningBalanceTransactionIDEndsWith(String value) { this.OpeningBalanceTransactionIDEndsWith = value; return this; } public String getOpeningBalanceTransactionIDContains() { return OpeningBalanceTransactionIDContains; } public BR_OpeningBalanceTransactionsQuery setOpeningBalanceTransactionIDContains(String value) { this.OpeningBalanceTransactionIDContains = value; return this; } public String getOpeningBalanceTransactionIDLike() { return OpeningBalanceTransactionIDLike; } public BR_OpeningBalanceTransactionsQuery setOpeningBalanceTransactionIDLike(String value) { this.OpeningBalanceTransactionIDLike = value; return this; } public ArrayList getOpeningBalanceTransactionIDBetween() { return OpeningBalanceTransactionIDBetween; } public BR_OpeningBalanceTransactionsQuery setOpeningBalanceTransactionIDBetween(ArrayList value) { this.OpeningBalanceTransactionIDBetween = value; return this; } public ArrayList getOpeningBalanceTransactionIDIn() { return OpeningBalanceTransactionIDIn; } public BR_OpeningBalanceTransactionsQuery setOpeningBalanceTransactionIDIn(ArrayList value) { this.OpeningBalanceTransactionIDIn = value; return this; } public String getBankRecID() { return BankRecID; } public BR_OpeningBalanceTransactionsQuery setBankRecID(String value) { this.BankRecID = value; return this; } public String getBankRecIDStartsWith() { return BankRecIDStartsWith; } public BR_OpeningBalanceTransactionsQuery setBankRecIDStartsWith(String value) { this.BankRecIDStartsWith = value; return this; } public String getBankRecIDEndsWith() { return BankRecIDEndsWith; } public BR_OpeningBalanceTransactionsQuery setBankRecIDEndsWith(String value) { this.BankRecIDEndsWith = value; return this; } public String getBankRecIDContains() { return BankRecIDContains; } public BR_OpeningBalanceTransactionsQuery setBankRecIDContains(String value) { this.BankRecIDContains = value; return this; } public String getBankRecIDLike() { return BankRecIDLike; } public BR_OpeningBalanceTransactionsQuery setBankRecIDLike(String value) { this.BankRecIDLike = value; return this; } public ArrayList getBankRecIDBetween() { return BankRecIDBetween; } public BR_OpeningBalanceTransactionsQuery setBankRecIDBetween(ArrayList value) { this.BankRecIDBetween = value; return this; } public ArrayList getBankRecIDIn() { return BankRecIDIn; } public BR_OpeningBalanceTransactionsQuery setBankRecIDIn(ArrayList value) { this.BankRecIDIn = value; return this; } public String getCreatedByStaffID() { return CreatedByStaffID; } public BR_OpeningBalanceTransactionsQuery setCreatedByStaffID(String value) { this.CreatedByStaffID = value; return this; } public String getCreatedByStaffIDStartsWith() { return CreatedByStaffIDStartsWith; } public BR_OpeningBalanceTransactionsQuery setCreatedByStaffIDStartsWith(String value) { this.CreatedByStaffIDStartsWith = value; return this; } public String getCreatedByStaffIDEndsWith() { return CreatedByStaffIDEndsWith; } public BR_OpeningBalanceTransactionsQuery setCreatedByStaffIDEndsWith(String value) { this.CreatedByStaffIDEndsWith = value; return this; } public String getCreatedByStaffIDContains() { return CreatedByStaffIDContains; } public BR_OpeningBalanceTransactionsQuery setCreatedByStaffIDContains(String value) { this.CreatedByStaffIDContains = value; return this; } public String getCreatedByStaffIDLike() { return CreatedByStaffIDLike; } public BR_OpeningBalanceTransactionsQuery setCreatedByStaffIDLike(String value) { this.CreatedByStaffIDLike = value; return this; } public ArrayList getCreatedByStaffIDBetween() { return CreatedByStaffIDBetween; } public BR_OpeningBalanceTransactionsQuery setCreatedByStaffIDBetween(ArrayList value) { this.CreatedByStaffIDBetween = value; return this; } public ArrayList getCreatedByStaffIDIn() { return CreatedByStaffIDIn; } public BR_OpeningBalanceTransactionsQuery setCreatedByStaffIDIn(ArrayList value) { this.CreatedByStaffIDIn = value; return this; } public Date getCreatedDateTime() { return CreatedDateTime; } public BR_OpeningBalanceTransactionsQuery setCreatedDateTime(Date value) { this.CreatedDateTime = value; return this; } public Date getCreatedDateTimeGreaterThanOrEqualTo() { return CreatedDateTimeGreaterThanOrEqualTo; } public BR_OpeningBalanceTransactionsQuery setCreatedDateTimeGreaterThanOrEqualTo(Date value) { this.CreatedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getCreatedDateTimeGreaterThan() { return CreatedDateTimeGreaterThan; } public BR_OpeningBalanceTransactionsQuery setCreatedDateTimeGreaterThan(Date value) { this.CreatedDateTimeGreaterThan = value; return this; } public Date getCreatedDateTimeLessThan() { return CreatedDateTimeLessThan; } public BR_OpeningBalanceTransactionsQuery setCreatedDateTimeLessThan(Date value) { this.CreatedDateTimeLessThan = value; return this; } public Date getCreatedDateTimeLessThanOrEqualTo() { return CreatedDateTimeLessThanOrEqualTo; } public BR_OpeningBalanceTransactionsQuery setCreatedDateTimeLessThanOrEqualTo(Date value) { this.CreatedDateTimeLessThanOrEqualTo = value; return this; } public Date getCreatedDateTimeNotEqualTo() { return CreatedDateTimeNotEqualTo; } public BR_OpeningBalanceTransactionsQuery setCreatedDateTimeNotEqualTo(Date value) { this.CreatedDateTimeNotEqualTo = value; return this; } public ArrayList getCreatedDateTimeBetween() { return CreatedDateTimeBetween; } public BR_OpeningBalanceTransactionsQuery setCreatedDateTimeBetween(ArrayList value) { this.CreatedDateTimeBetween = value; return this; } public ArrayList getCreatedDateTimeIn() { return CreatedDateTimeIn; } public BR_OpeningBalanceTransactionsQuery setCreatedDateTimeIn(ArrayList value) { this.CreatedDateTimeIn = value; return this; } public String getLastSavedByStaffID() { return LastSavedByStaffID; } public BR_OpeningBalanceTransactionsQuery setLastSavedByStaffID(String value) { this.LastSavedByStaffID = value; return this; } public String getLastSavedByStaffIDStartsWith() { return LastSavedByStaffIDStartsWith; } public BR_OpeningBalanceTransactionsQuery setLastSavedByStaffIDStartsWith(String value) { this.LastSavedByStaffIDStartsWith = value; return this; } public String getLastSavedByStaffIDEndsWith() { return LastSavedByStaffIDEndsWith; } public BR_OpeningBalanceTransactionsQuery setLastSavedByStaffIDEndsWith(String value) { this.LastSavedByStaffIDEndsWith = value; return this; } public String getLastSavedByStaffIDContains() { return LastSavedByStaffIDContains; } public BR_OpeningBalanceTransactionsQuery setLastSavedByStaffIDContains(String value) { this.LastSavedByStaffIDContains = value; return this; } public String getLastSavedByStaffIDLike() { return LastSavedByStaffIDLike; } public BR_OpeningBalanceTransactionsQuery setLastSavedByStaffIDLike(String value) { this.LastSavedByStaffIDLike = value; return this; } public ArrayList getLastSavedByStaffIDBetween() { return LastSavedByStaffIDBetween; } public BR_OpeningBalanceTransactionsQuery setLastSavedByStaffIDBetween(ArrayList value) { this.LastSavedByStaffIDBetween = value; return this; } public ArrayList getLastSavedByStaffIDIn() { return LastSavedByStaffIDIn; } public BR_OpeningBalanceTransactionsQuery setLastSavedByStaffIDIn(ArrayList value) { this.LastSavedByStaffIDIn = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public BR_OpeningBalanceTransactionsQuery setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getLastSavedDateTimeGreaterThanOrEqualTo() { return LastSavedDateTimeGreaterThanOrEqualTo; } public BR_OpeningBalanceTransactionsQuery setLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.LastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeGreaterThan() { return LastSavedDateTimeGreaterThan; } public BR_OpeningBalanceTransactionsQuery setLastSavedDateTimeGreaterThan(Date value) { this.LastSavedDateTimeGreaterThan = value; return this; } public Date getLastSavedDateTimeLessThan() { return LastSavedDateTimeLessThan; } public BR_OpeningBalanceTransactionsQuery setLastSavedDateTimeLessThan(Date value) { this.LastSavedDateTimeLessThan = value; return this; } public Date getLastSavedDateTimeLessThanOrEqualTo() { return LastSavedDateTimeLessThanOrEqualTo; } public BR_OpeningBalanceTransactionsQuery setLastSavedDateTimeLessThanOrEqualTo(Date value) { this.LastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeNotEqualTo() { return LastSavedDateTimeNotEqualTo; } public BR_OpeningBalanceTransactionsQuery setLastSavedDateTimeNotEqualTo(Date value) { this.LastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getLastSavedDateTimeBetween() { return LastSavedDateTimeBetween; } public BR_OpeningBalanceTransactionsQuery setLastSavedDateTimeBetween(ArrayList value) { this.LastSavedDateTimeBetween = value; return this; } public ArrayList getLastSavedDateTimeIn() { return LastSavedDateTimeIn; } public BR_OpeningBalanceTransactionsQuery setLastSavedDateTimeIn(ArrayList value) { this.LastSavedDateTimeIn = value; return this; } public Integer getLineNumber() { return LineNumber; } public BR_OpeningBalanceTransactionsQuery setLineNumber(Integer value) { this.LineNumber = value; return this; } public Integer getLineNumberGreaterThanOrEqualTo() { return LineNumberGreaterThanOrEqualTo; } public BR_OpeningBalanceTransactionsQuery setLineNumberGreaterThanOrEqualTo(Integer value) { this.LineNumberGreaterThanOrEqualTo = value; return this; } public Integer getLineNumberGreaterThan() { return LineNumberGreaterThan; } public BR_OpeningBalanceTransactionsQuery setLineNumberGreaterThan(Integer value) { this.LineNumberGreaterThan = value; return this; } public Integer getLineNumberLessThan() { return LineNumberLessThan; } public BR_OpeningBalanceTransactionsQuery setLineNumberLessThan(Integer value) { this.LineNumberLessThan = value; return this; } public Integer getLineNumberLessThanOrEqualTo() { return LineNumberLessThanOrEqualTo; } public BR_OpeningBalanceTransactionsQuery setLineNumberLessThanOrEqualTo(Integer value) { this.LineNumberLessThanOrEqualTo = value; return this; } public Integer getLineNumberNotEqualTo() { return LineNumberNotEqualTo; } public BR_OpeningBalanceTransactionsQuery setLineNumberNotEqualTo(Integer value) { this.LineNumberNotEqualTo = value; return this; } public ArrayList getLineNumberBetween() { return LineNumberBetween; } public BR_OpeningBalanceTransactionsQuery setLineNumberBetween(ArrayList value) { this.LineNumberBetween = value; return this; } public ArrayList getLineNumberIn() { return LineNumberIn; } public BR_OpeningBalanceTransactionsQuery setLineNumberIn(ArrayList value) { this.LineNumberIn = value; return this; } public Date getTransactionDateTime() { return TransactionDateTime; } public BR_OpeningBalanceTransactionsQuery setTransactionDateTime(Date value) { this.TransactionDateTime = value; return this; } public Date getTransactionDateTimeGreaterThanOrEqualTo() { return TransactionDateTimeGreaterThanOrEqualTo; } public BR_OpeningBalanceTransactionsQuery setTransactionDateTimeGreaterThanOrEqualTo(Date value) { this.TransactionDateTimeGreaterThanOrEqualTo = value; return this; } public Date getTransactionDateTimeGreaterThan() { return TransactionDateTimeGreaterThan; } public BR_OpeningBalanceTransactionsQuery setTransactionDateTimeGreaterThan(Date value) { this.TransactionDateTimeGreaterThan = value; return this; } public Date getTransactionDateTimeLessThan() { return TransactionDateTimeLessThan; } public BR_OpeningBalanceTransactionsQuery setTransactionDateTimeLessThan(Date value) { this.TransactionDateTimeLessThan = value; return this; } public Date getTransactionDateTimeLessThanOrEqualTo() { return TransactionDateTimeLessThanOrEqualTo; } public BR_OpeningBalanceTransactionsQuery setTransactionDateTimeLessThanOrEqualTo(Date value) { this.TransactionDateTimeLessThanOrEqualTo = value; return this; } public Date getTransactionDateTimeNotEqualTo() { return TransactionDateTimeNotEqualTo; } public BR_OpeningBalanceTransactionsQuery setTransactionDateTimeNotEqualTo(Date value) { this.TransactionDateTimeNotEqualTo = value; return this; } public ArrayList getTransactionDateTimeBetween() { return TransactionDateTimeBetween; } public BR_OpeningBalanceTransactionsQuery setTransactionDateTimeBetween(ArrayList value) { this.TransactionDateTimeBetween = value; return this; } public ArrayList getTransactionDateTimeIn() { return TransactionDateTimeIn; } public BR_OpeningBalanceTransactionsQuery setTransactionDateTimeIn(ArrayList value) { this.TransactionDateTimeIn = value; return this; } public Short getStatus() { return Status; } public BR_OpeningBalanceTransactionsQuery setStatus(Short value) { this.Status = value; return this; } public Short getStatusGreaterThanOrEqualTo() { return StatusGreaterThanOrEqualTo; } public BR_OpeningBalanceTransactionsQuery setStatusGreaterThanOrEqualTo(Short value) { this.StatusGreaterThanOrEqualTo = value; return this; } public Short getStatusGreaterThan() { return StatusGreaterThan; } public BR_OpeningBalanceTransactionsQuery setStatusGreaterThan(Short value) { this.StatusGreaterThan = value; return this; } public Short getStatusLessThan() { return StatusLessThan; } public BR_OpeningBalanceTransactionsQuery setStatusLessThan(Short value) { this.StatusLessThan = value; return this; } public Short getStatusLessThanOrEqualTo() { return StatusLessThanOrEqualTo; } public BR_OpeningBalanceTransactionsQuery setStatusLessThanOrEqualTo(Short value) { this.StatusLessThanOrEqualTo = value; return this; } public Short getStatusNotEqualTo() { return StatusNotEqualTo; } public BR_OpeningBalanceTransactionsQuery setStatusNotEqualTo(Short value) { this.StatusNotEqualTo = value; return this; } public ArrayList getStatusBetween() { return StatusBetween; } public BR_OpeningBalanceTransactionsQuery setStatusBetween(ArrayList value) { this.StatusBetween = value; return this; } public ArrayList getStatusIn() { return StatusIn; } public BR_OpeningBalanceTransactionsQuery setStatusIn(ArrayList value) { this.StatusIn = value; return this; } public BigDecimal getAmountReconciledIncGST() { return AmountReconciledIncGST; } public BR_OpeningBalanceTransactionsQuery setAmountReconciledIncGST(BigDecimal value) { this.AmountReconciledIncGST = value; return this; } public BigDecimal getAmountReconciledIncGSTGreaterThanOrEqualTo() { return AmountReconciledIncGSTGreaterThanOrEqualTo; } public BR_OpeningBalanceTransactionsQuery setAmountReconciledIncGSTGreaterThanOrEqualTo(BigDecimal value) { this.AmountReconciledIncGSTGreaterThanOrEqualTo = value; return this; } public BigDecimal getAmountReconciledIncGSTGreaterThan() { return AmountReconciledIncGSTGreaterThan; } public BR_OpeningBalanceTransactionsQuery setAmountReconciledIncGSTGreaterThan(BigDecimal value) { this.AmountReconciledIncGSTGreaterThan = value; return this; } public BigDecimal getAmountReconciledIncGSTLessThan() { return AmountReconciledIncGSTLessThan; } public BR_OpeningBalanceTransactionsQuery setAmountReconciledIncGSTLessThan(BigDecimal value) { this.AmountReconciledIncGSTLessThan = value; return this; } public BigDecimal getAmountReconciledIncGSTLessThanOrEqualTo() { return AmountReconciledIncGSTLessThanOrEqualTo; } public BR_OpeningBalanceTransactionsQuery setAmountReconciledIncGSTLessThanOrEqualTo(BigDecimal value) { this.AmountReconciledIncGSTLessThanOrEqualTo = value; return this; } public BigDecimal getAmountReconciledIncGSTNotEqualTo() { return AmountReconciledIncGSTNotEqualTo; } public BR_OpeningBalanceTransactionsQuery setAmountReconciledIncGSTNotEqualTo(BigDecimal value) { this.AmountReconciledIncGSTNotEqualTo = value; return this; } public ArrayList getAmountReconciledIncGSTBetween() { return AmountReconciledIncGSTBetween; } public BR_OpeningBalanceTransactionsQuery setAmountReconciledIncGSTBetween(ArrayList value) { this.AmountReconciledIncGSTBetween = value; return this; } public ArrayList getAmountReconciledIncGSTIn() { return AmountReconciledIncGSTIn; } public BR_OpeningBalanceTransactionsQuery setAmountReconciledIncGSTIn(ArrayList value) { this.AmountReconciledIncGSTIn = value; return this; } public String getReference() { return Reference; } public BR_OpeningBalanceTransactionsQuery setReference(String value) { this.Reference = value; return this; } public String getReferenceStartsWith() { return ReferenceStartsWith; } public BR_OpeningBalanceTransactionsQuery setReferenceStartsWith(String value) { this.ReferenceStartsWith = value; return this; } public String getReferenceEndsWith() { return ReferenceEndsWith; } public BR_OpeningBalanceTransactionsQuery setReferenceEndsWith(String value) { this.ReferenceEndsWith = value; return this; } public String getReferenceContains() { return ReferenceContains; } public BR_OpeningBalanceTransactionsQuery setReferenceContains(String value) { this.ReferenceContains = value; return this; } public String getReferenceLike() { return ReferenceLike; } public BR_OpeningBalanceTransactionsQuery setReferenceLike(String value) { this.ReferenceLike = value; return this; } public ArrayList getReferenceBetween() { return ReferenceBetween; } public BR_OpeningBalanceTransactionsQuery setReferenceBetween(ArrayList value) { this.ReferenceBetween = value; return this; } public ArrayList getReferenceIn() { return ReferenceIn; } public BR_OpeningBalanceTransactionsQuery setReferenceIn(ArrayList value) { this.ReferenceIn = value; return this; } public Short getDebitCredit() { return DebitCredit; } public BR_OpeningBalanceTransactionsQuery setDebitCredit(Short value) { this.DebitCredit = value; return this; } public Short getDebitCreditGreaterThanOrEqualTo() { return DebitCreditGreaterThanOrEqualTo; } public BR_OpeningBalanceTransactionsQuery setDebitCreditGreaterThanOrEqualTo(Short value) { this.DebitCreditGreaterThanOrEqualTo = value; return this; } public Short getDebitCreditGreaterThan() { return DebitCreditGreaterThan; } public BR_OpeningBalanceTransactionsQuery setDebitCreditGreaterThan(Short value) { this.DebitCreditGreaterThan = value; return this; } public Short getDebitCreditLessThan() { return DebitCreditLessThan; } public BR_OpeningBalanceTransactionsQuery setDebitCreditLessThan(Short value) { this.DebitCreditLessThan = value; return this; } public Short getDebitCreditLessThanOrEqualTo() { return DebitCreditLessThanOrEqualTo; } public BR_OpeningBalanceTransactionsQuery setDebitCreditLessThanOrEqualTo(Short value) { this.DebitCreditLessThanOrEqualTo = value; return this; } public Short getDebitCreditNotEqualTo() { return DebitCreditNotEqualTo; } public BR_OpeningBalanceTransactionsQuery setDebitCreditNotEqualTo(Short value) { this.DebitCreditNotEqualTo = value; return this; } public ArrayList getDebitCreditBetween() { return DebitCreditBetween; } public BR_OpeningBalanceTransactionsQuery setDebitCreditBetween(ArrayList value) { this.DebitCreditBetween = value; return this; } public ArrayList getDebitCreditIn() { return DebitCreditIn; } public BR_OpeningBalanceTransactionsQuery setDebitCreditIn(ArrayList value) { this.DebitCreditIn = value; return this; } public String getRemark() { return Remark; } public BR_OpeningBalanceTransactionsQuery setRemark(String value) { this.Remark = value; return this; } public String getRemarkStartsWith() { return RemarkStartsWith; } public BR_OpeningBalanceTransactionsQuery setRemarkStartsWith(String value) { this.RemarkStartsWith = value; return this; } public String getRemarkEndsWith() { return RemarkEndsWith; } public BR_OpeningBalanceTransactionsQuery setRemarkEndsWith(String value) { this.RemarkEndsWith = value; return this; } public String getRemarkContains() { return RemarkContains; } public BR_OpeningBalanceTransactionsQuery setRemarkContains(String value) { this.RemarkContains = value; return this; } public String getRemarkLike() { return RemarkLike; } public BR_OpeningBalanceTransactionsQuery setRemarkLike(String value) { this.RemarkLike = value; return this; } public ArrayList getRemarkBetween() { return RemarkBetween; } public BR_OpeningBalanceTransactionsQuery setRemarkBetween(ArrayList value) { this.RemarkBetween = value; return this; } public ArrayList getRemarkIn() { return RemarkIn; } public BR_OpeningBalanceTransactionsQuery setRemarkIn(ArrayList value) { this.RemarkIn = value; return this; } public BigDecimal getAmountIncGST() { return AmountIncGST; } public BR_OpeningBalanceTransactionsQuery setAmountIncGST(BigDecimal value) { this.AmountIncGST = value; return this; } public BigDecimal getAmountIncGSTGreaterThanOrEqualTo() { return AmountIncGSTGreaterThanOrEqualTo; } public BR_OpeningBalanceTransactionsQuery setAmountIncGSTGreaterThanOrEqualTo(BigDecimal value) { this.AmountIncGSTGreaterThanOrEqualTo = value; return this; } public BigDecimal getAmountIncGSTGreaterThan() { return AmountIncGSTGreaterThan; } public BR_OpeningBalanceTransactionsQuery setAmountIncGSTGreaterThan(BigDecimal value) { this.AmountIncGSTGreaterThan = value; return this; } public BigDecimal getAmountIncGSTLessThan() { return AmountIncGSTLessThan; } public BR_OpeningBalanceTransactionsQuery setAmountIncGSTLessThan(BigDecimal value) { this.AmountIncGSTLessThan = value; return this; } public BigDecimal getAmountIncGSTLessThanOrEqualTo() { return AmountIncGSTLessThanOrEqualTo; } public BR_OpeningBalanceTransactionsQuery setAmountIncGSTLessThanOrEqualTo(BigDecimal value) { this.AmountIncGSTLessThanOrEqualTo = value; return this; } public BigDecimal getAmountIncGSTNotEqualTo() { return AmountIncGSTNotEqualTo; } public BR_OpeningBalanceTransactionsQuery setAmountIncGSTNotEqualTo(BigDecimal value) { this.AmountIncGSTNotEqualTo = value; return this; } public ArrayList getAmountIncGSTBetween() { return AmountIncGSTBetween; } public BR_OpeningBalanceTransactionsQuery setAmountIncGSTBetween(ArrayList value) { this.AmountIncGSTBetween = value; return this; } public ArrayList getAmountIncGSTIn() { return AmountIncGSTIn; } public BR_OpeningBalanceTransactionsQuery setAmountIncGSTIn(ArrayList value) { this.AmountIncGSTIn = value; return this; } public String getPreviousBankRecID() { return PreviousBankRecID; } public BR_OpeningBalanceTransactionsQuery setPreviousBankRecID(String value) { this.PreviousBankRecID = value; return this; } public String getPreviousBankRecIDStartsWith() { return PreviousBankRecIDStartsWith; } public BR_OpeningBalanceTransactionsQuery setPreviousBankRecIDStartsWith(String value) { this.PreviousBankRecIDStartsWith = value; return this; } public String getPreviousBankRecIDEndsWith() { return PreviousBankRecIDEndsWith; } public BR_OpeningBalanceTransactionsQuery setPreviousBankRecIDEndsWith(String value) { this.PreviousBankRecIDEndsWith = value; return this; } public String getPreviousBankRecIDContains() { return PreviousBankRecIDContains; } public BR_OpeningBalanceTransactionsQuery setPreviousBankRecIDContains(String value) { this.PreviousBankRecIDContains = value; return this; } public String getPreviousBankRecIDLike() { return PreviousBankRecIDLike; } public BR_OpeningBalanceTransactionsQuery setPreviousBankRecIDLike(String value) { this.PreviousBankRecIDLike = value; return this; } public ArrayList getPreviousBankRecIDBetween() { return PreviousBankRecIDBetween; } public BR_OpeningBalanceTransactionsQuery setPreviousBankRecIDBetween(ArrayList value) { this.PreviousBankRecIDBetween = value; return this; } public ArrayList getPreviousBankRecIDIn() { return PreviousBankRecIDIn; } public BR_OpeningBalanceTransactionsQuery setPreviousBankRecIDIn(ArrayList value) { this.PreviousBankRecIDIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class CB_BatchTranLineCustomFieldsQuery extends QueryDb implements IReturn> { public String RecID = null; public String RecIDStartsWith = null; public String RecIDEndsWith = null; public String RecIDContains = null; public String RecIDLike = null; public ArrayList RecIDBetween = null; public ArrayList RecIDIn = null; public String SettingName = null; public String SettingNameStartsWith = null; public String SettingNameEndsWith = null; public String SettingNameContains = null; public String SettingNameLike = null; public ArrayList SettingNameBetween = null; public ArrayList SettingNameIn = null; public String SettingDescription = null; public String SettingDescriptionStartsWith = null; public String SettingDescriptionEndsWith = null; public String SettingDescriptionContains = null; public String SettingDescriptionLike = null; public ArrayList SettingDescriptionBetween = null; public ArrayList SettingDescriptionIn = null; public Integer CellType = null; public Integer CellTypeGreaterThanOrEqualTo = null; public Integer CellTypeGreaterThan = null; public Integer CellTypeLessThan = null; public Integer CellTypeLessThanOrEqualTo = null; public Integer CellTypeNotEqualTo = null; public ArrayList CellTypeBetween = null; public ArrayList CellTypeIn = null; public String FieldParameter = null; public String FieldParameterStartsWith = null; public String FieldParameterEndsWith = null; public String FieldParameterContains = null; public String FieldParameterLike = null; public ArrayList FieldParameterBetween = null; public ArrayList FieldParameterIn = null; public UUID SY_Plugin_RecID = null; public ArrayList SY_Plugin_RecIDIn = null; public Date LastSavedDateTime = null; public Date LastSavedDateTimeGreaterThanOrEqualTo = null; public Date LastSavedDateTimeGreaterThan = null; public Date LastSavedDateTimeLessThan = null; public Date LastSavedDateTimeLessThanOrEqualTo = null; public Date LastSavedDateTimeNotEqualTo = null; public ArrayList LastSavedDateTimeBetween = null; public ArrayList LastSavedDateTimeIn = null; public Integer DisplayOrder = null; public Integer DisplayOrderGreaterThanOrEqualTo = null; public Integer DisplayOrderGreaterThan = null; public Integer DisplayOrderLessThan = null; public Integer DisplayOrderLessThanOrEqualTo = null; public Integer DisplayOrderNotEqualTo = null; public ArrayList DisplayOrderBetween = null; public ArrayList DisplayOrderIn = null; public String getRecID() { return RecID; } public CB_BatchTranLineCustomFieldsQuery setRecID(String value) { this.RecID = value; return this; } public String getRecIDStartsWith() { return RecIDStartsWith; } public CB_BatchTranLineCustomFieldsQuery setRecIDStartsWith(String value) { this.RecIDStartsWith = value; return this; } public String getRecIDEndsWith() { return RecIDEndsWith; } public CB_BatchTranLineCustomFieldsQuery setRecIDEndsWith(String value) { this.RecIDEndsWith = value; return this; } public String getRecIDContains() { return RecIDContains; } public CB_BatchTranLineCustomFieldsQuery setRecIDContains(String value) { this.RecIDContains = value; return this; } public String getRecIDLike() { return RecIDLike; } public CB_BatchTranLineCustomFieldsQuery setRecIDLike(String value) { this.RecIDLike = value; return this; } public ArrayList getRecIDBetween() { return RecIDBetween; } public CB_BatchTranLineCustomFieldsQuery setRecIDBetween(ArrayList value) { this.RecIDBetween = value; return this; } public ArrayList getRecIDIn() { return RecIDIn; } public CB_BatchTranLineCustomFieldsQuery setRecIDIn(ArrayList value) { this.RecIDIn = value; return this; } public String getSettingName() { return SettingName; } public CB_BatchTranLineCustomFieldsQuery setSettingName(String value) { this.SettingName = value; return this; } public String getSettingNameStartsWith() { return SettingNameStartsWith; } public CB_BatchTranLineCustomFieldsQuery setSettingNameStartsWith(String value) { this.SettingNameStartsWith = value; return this; } public String getSettingNameEndsWith() { return SettingNameEndsWith; } public CB_BatchTranLineCustomFieldsQuery setSettingNameEndsWith(String value) { this.SettingNameEndsWith = value; return this; } public String getSettingNameContains() { return SettingNameContains; } public CB_BatchTranLineCustomFieldsQuery setSettingNameContains(String value) { this.SettingNameContains = value; return this; } public String getSettingNameLike() { return SettingNameLike; } public CB_BatchTranLineCustomFieldsQuery setSettingNameLike(String value) { this.SettingNameLike = value; return this; } public ArrayList getSettingNameBetween() { return SettingNameBetween; } public CB_BatchTranLineCustomFieldsQuery setSettingNameBetween(ArrayList value) { this.SettingNameBetween = value; return this; } public ArrayList getSettingNameIn() { return SettingNameIn; } public CB_BatchTranLineCustomFieldsQuery setSettingNameIn(ArrayList value) { this.SettingNameIn = value; return this; } public String getSettingDescription() { return SettingDescription; } public CB_BatchTranLineCustomFieldsQuery setSettingDescription(String value) { this.SettingDescription = value; return this; } public String getSettingDescriptionStartsWith() { return SettingDescriptionStartsWith; } public CB_BatchTranLineCustomFieldsQuery setSettingDescriptionStartsWith(String value) { this.SettingDescriptionStartsWith = value; return this; } public String getSettingDescriptionEndsWith() { return SettingDescriptionEndsWith; } public CB_BatchTranLineCustomFieldsQuery setSettingDescriptionEndsWith(String value) { this.SettingDescriptionEndsWith = value; return this; } public String getSettingDescriptionContains() { return SettingDescriptionContains; } public CB_BatchTranLineCustomFieldsQuery setSettingDescriptionContains(String value) { this.SettingDescriptionContains = value; return this; } public String getSettingDescriptionLike() { return SettingDescriptionLike; } public CB_BatchTranLineCustomFieldsQuery setSettingDescriptionLike(String value) { this.SettingDescriptionLike = value; return this; } public ArrayList getSettingDescriptionBetween() { return SettingDescriptionBetween; } public CB_BatchTranLineCustomFieldsQuery setSettingDescriptionBetween(ArrayList value) { this.SettingDescriptionBetween = value; return this; } public ArrayList getSettingDescriptionIn() { return SettingDescriptionIn; } public CB_BatchTranLineCustomFieldsQuery setSettingDescriptionIn(ArrayList value) { this.SettingDescriptionIn = value; return this; } public Integer getCellType() { return CellType; } public CB_BatchTranLineCustomFieldsQuery setCellType(Integer value) { this.CellType = value; return this; } public Integer getCellTypeGreaterThanOrEqualTo() { return CellTypeGreaterThanOrEqualTo; } public CB_BatchTranLineCustomFieldsQuery setCellTypeGreaterThanOrEqualTo(Integer value) { this.CellTypeGreaterThanOrEqualTo = value; return this; } public Integer getCellTypeGreaterThan() { return CellTypeGreaterThan; } public CB_BatchTranLineCustomFieldsQuery setCellTypeGreaterThan(Integer value) { this.CellTypeGreaterThan = value; return this; } public Integer getCellTypeLessThan() { return CellTypeLessThan; } public CB_BatchTranLineCustomFieldsQuery setCellTypeLessThan(Integer value) { this.CellTypeLessThan = value; return this; } public Integer getCellTypeLessThanOrEqualTo() { return CellTypeLessThanOrEqualTo; } public CB_BatchTranLineCustomFieldsQuery setCellTypeLessThanOrEqualTo(Integer value) { this.CellTypeLessThanOrEqualTo = value; return this; } public Integer getCellTypeNotEqualTo() { return CellTypeNotEqualTo; } public CB_BatchTranLineCustomFieldsQuery setCellTypeNotEqualTo(Integer value) { this.CellTypeNotEqualTo = value; return this; } public ArrayList getCellTypeBetween() { return CellTypeBetween; } public CB_BatchTranLineCustomFieldsQuery setCellTypeBetween(ArrayList value) { this.CellTypeBetween = value; return this; } public ArrayList getCellTypeIn() { return CellTypeIn; } public CB_BatchTranLineCustomFieldsQuery setCellTypeIn(ArrayList value) { this.CellTypeIn = value; return this; } public String getFieldParameter() { return FieldParameter; } public CB_BatchTranLineCustomFieldsQuery setFieldParameter(String value) { this.FieldParameter = value; return this; } public String getFieldParameterStartsWith() { return FieldParameterStartsWith; } public CB_BatchTranLineCustomFieldsQuery setFieldParameterStartsWith(String value) { this.FieldParameterStartsWith = value; return this; } public String getFieldParameterEndsWith() { return FieldParameterEndsWith; } public CB_BatchTranLineCustomFieldsQuery setFieldParameterEndsWith(String value) { this.FieldParameterEndsWith = value; return this; } public String getFieldParameterContains() { return FieldParameterContains; } public CB_BatchTranLineCustomFieldsQuery setFieldParameterContains(String value) { this.FieldParameterContains = value; return this; } public String getFieldParameterLike() { return FieldParameterLike; } public CB_BatchTranLineCustomFieldsQuery setFieldParameterLike(String value) { this.FieldParameterLike = value; return this; } public ArrayList getFieldParameterBetween() { return FieldParameterBetween; } public CB_BatchTranLineCustomFieldsQuery setFieldParameterBetween(ArrayList value) { this.FieldParameterBetween = value; return this; } public ArrayList getFieldParameterIn() { return FieldParameterIn; } public CB_BatchTranLineCustomFieldsQuery setFieldParameterIn(ArrayList value) { this.FieldParameterIn = value; return this; } public UUID getSyPluginRecID() { return SY_Plugin_RecID; } public CB_BatchTranLineCustomFieldsQuery setSyPluginRecID(UUID value) { this.SY_Plugin_RecID = value; return this; } public ArrayList getSyPluginRecIDIn() { return SY_Plugin_RecIDIn; } public CB_BatchTranLineCustomFieldsQuery setSyPluginRecIDIn(ArrayList value) { this.SY_Plugin_RecIDIn = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public CB_BatchTranLineCustomFieldsQuery setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getLastSavedDateTimeGreaterThanOrEqualTo() { return LastSavedDateTimeGreaterThanOrEqualTo; } public CB_BatchTranLineCustomFieldsQuery setLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.LastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeGreaterThan() { return LastSavedDateTimeGreaterThan; } public CB_BatchTranLineCustomFieldsQuery setLastSavedDateTimeGreaterThan(Date value) { this.LastSavedDateTimeGreaterThan = value; return this; } public Date getLastSavedDateTimeLessThan() { return LastSavedDateTimeLessThan; } public CB_BatchTranLineCustomFieldsQuery setLastSavedDateTimeLessThan(Date value) { this.LastSavedDateTimeLessThan = value; return this; } public Date getLastSavedDateTimeLessThanOrEqualTo() { return LastSavedDateTimeLessThanOrEqualTo; } public CB_BatchTranLineCustomFieldsQuery setLastSavedDateTimeLessThanOrEqualTo(Date value) { this.LastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeNotEqualTo() { return LastSavedDateTimeNotEqualTo; } public CB_BatchTranLineCustomFieldsQuery setLastSavedDateTimeNotEqualTo(Date value) { this.LastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getLastSavedDateTimeBetween() { return LastSavedDateTimeBetween; } public CB_BatchTranLineCustomFieldsQuery setLastSavedDateTimeBetween(ArrayList value) { this.LastSavedDateTimeBetween = value; return this; } public ArrayList getLastSavedDateTimeIn() { return LastSavedDateTimeIn; } public CB_BatchTranLineCustomFieldsQuery setLastSavedDateTimeIn(ArrayList value) { this.LastSavedDateTimeIn = value; return this; } public Integer getDisplayOrder() { return DisplayOrder; } public CB_BatchTranLineCustomFieldsQuery setDisplayOrder(Integer value) { this.DisplayOrder = value; return this; } public Integer getDisplayOrderGreaterThanOrEqualTo() { return DisplayOrderGreaterThanOrEqualTo; } public CB_BatchTranLineCustomFieldsQuery setDisplayOrderGreaterThanOrEqualTo(Integer value) { this.DisplayOrderGreaterThanOrEqualTo = value; return this; } public Integer getDisplayOrderGreaterThan() { return DisplayOrderGreaterThan; } public CB_BatchTranLineCustomFieldsQuery setDisplayOrderGreaterThan(Integer value) { this.DisplayOrderGreaterThan = value; return this; } public Integer getDisplayOrderLessThan() { return DisplayOrderLessThan; } public CB_BatchTranLineCustomFieldsQuery setDisplayOrderLessThan(Integer value) { this.DisplayOrderLessThan = value; return this; } public Integer getDisplayOrderLessThanOrEqualTo() { return DisplayOrderLessThanOrEqualTo; } public CB_BatchTranLineCustomFieldsQuery setDisplayOrderLessThanOrEqualTo(Integer value) { this.DisplayOrderLessThanOrEqualTo = value; return this; } public Integer getDisplayOrderNotEqualTo() { return DisplayOrderNotEqualTo; } public CB_BatchTranLineCustomFieldsQuery setDisplayOrderNotEqualTo(Integer value) { this.DisplayOrderNotEqualTo = value; return this; } public ArrayList getDisplayOrderBetween() { return DisplayOrderBetween; } public CB_BatchTranLineCustomFieldsQuery setDisplayOrderBetween(ArrayList value) { this.DisplayOrderBetween = value; return this; } public ArrayList getDisplayOrderIn() { return DisplayOrderIn; } public CB_BatchTranLineCustomFieldsQuery setDisplayOrderIn(ArrayList value) { this.DisplayOrderIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class CB_BatchTranLineCustomValuesQuery extends QueryDb implements IReturn> { public String RecID = null; public String RecIDStartsWith = null; public String RecIDEndsWith = null; public String RecIDContains = null; public String RecIDLike = null; public ArrayList RecIDBetween = null; public ArrayList RecIDIn = null; public String CB_BatchTranLine_CBBatchTranLineID = null; public String CB_BatchTranLine_CBBatchTranLineIDStartsWith = null; public String CB_BatchTranLine_CBBatchTranLineIDEndsWith = null; public String CB_BatchTranLine_CBBatchTranLineIDContains = null; public String CB_BatchTranLine_CBBatchTranLineIDLike = null; public ArrayList CB_BatchTranLine_CBBatchTranLineIDBetween = null; public ArrayList CB_BatchTranLine_CBBatchTranLineIDIn = null; public String CB_BatchTranLineCustomFields_RecID = null; public String CB_BatchTranLineCustomFields_RecIDStartsWith = null; public String CB_BatchTranLineCustomFields_RecIDEndsWith = null; public String CB_BatchTranLineCustomFields_RecIDContains = null; public String CB_BatchTranLineCustomFields_RecIDLike = null; public ArrayList CB_BatchTranLineCustomFields_RecIDBetween = null; public ArrayList CB_BatchTranLineCustomFields_RecIDIn = null; public String Contents = null; public String ContentsStartsWith = null; public String ContentsEndsWith = null; public String ContentsContains = null; public String ContentsLike = null; public ArrayList ContentsBetween = null; public ArrayList ContentsIn = null; public Date LastSavedDateTime = null; public Date LastSavedDateTimeGreaterThanOrEqualTo = null; public Date LastSavedDateTimeGreaterThan = null; public Date LastSavedDateTimeLessThan = null; public Date LastSavedDateTimeLessThanOrEqualTo = null; public Date LastSavedDateTimeNotEqualTo = null; public ArrayList LastSavedDateTimeBetween = null; public ArrayList LastSavedDateTimeIn = null; public String getRecID() { return RecID; } public CB_BatchTranLineCustomValuesQuery setRecID(String value) { this.RecID = value; return this; } public String getRecIDStartsWith() { return RecIDStartsWith; } public CB_BatchTranLineCustomValuesQuery setRecIDStartsWith(String value) { this.RecIDStartsWith = value; return this; } public String getRecIDEndsWith() { return RecIDEndsWith; } public CB_BatchTranLineCustomValuesQuery setRecIDEndsWith(String value) { this.RecIDEndsWith = value; return this; } public String getRecIDContains() { return RecIDContains; } public CB_BatchTranLineCustomValuesQuery setRecIDContains(String value) { this.RecIDContains = value; return this; } public String getRecIDLike() { return RecIDLike; } public CB_BatchTranLineCustomValuesQuery setRecIDLike(String value) { this.RecIDLike = value; return this; } public ArrayList getRecIDBetween() { return RecIDBetween; } public CB_BatchTranLineCustomValuesQuery setRecIDBetween(ArrayList value) { this.RecIDBetween = value; return this; } public ArrayList getRecIDIn() { return RecIDIn; } public CB_BatchTranLineCustomValuesQuery setRecIDIn(ArrayList value) { this.RecIDIn = value; return this; } public String getCbBatchTranLineCbBatchTranLineID() { return CB_BatchTranLine_CBBatchTranLineID; } public CB_BatchTranLineCustomValuesQuery setCbBatchTranLineCbBatchTranLineID(String value) { this.CB_BatchTranLine_CBBatchTranLineID = value; return this; } public String getCbBatchTranLineCbBatchTranLineIDStartsWith() { return CB_BatchTranLine_CBBatchTranLineIDStartsWith; } public CB_BatchTranLineCustomValuesQuery setCbBatchTranLineCbBatchTranLineIDStartsWith(String value) { this.CB_BatchTranLine_CBBatchTranLineIDStartsWith = value; return this; } public String getCbBatchTranLineCbBatchTranLineIDEndsWith() { return CB_BatchTranLine_CBBatchTranLineIDEndsWith; } public CB_BatchTranLineCustomValuesQuery setCbBatchTranLineCbBatchTranLineIDEndsWith(String value) { this.CB_BatchTranLine_CBBatchTranLineIDEndsWith = value; return this; } public String getCbBatchTranLineCbBatchTranLineIDContains() { return CB_BatchTranLine_CBBatchTranLineIDContains; } public CB_BatchTranLineCustomValuesQuery setCbBatchTranLineCbBatchTranLineIDContains(String value) { this.CB_BatchTranLine_CBBatchTranLineIDContains = value; return this; } public String getCbBatchTranLineCbBatchTranLineIDLike() { return CB_BatchTranLine_CBBatchTranLineIDLike; } public CB_BatchTranLineCustomValuesQuery setCbBatchTranLineCbBatchTranLineIDLike(String value) { this.CB_BatchTranLine_CBBatchTranLineIDLike = value; return this; } public ArrayList getCbBatchTranLineCbBatchTranLineIDBetween() { return CB_BatchTranLine_CBBatchTranLineIDBetween; } public CB_BatchTranLineCustomValuesQuery setCbBatchTranLineCbBatchTranLineIDBetween(ArrayList value) { this.CB_BatchTranLine_CBBatchTranLineIDBetween = value; return this; } public ArrayList getCbBatchTranLineCbBatchTranLineIDIn() { return CB_BatchTranLine_CBBatchTranLineIDIn; } public CB_BatchTranLineCustomValuesQuery setCbBatchTranLineCbBatchTranLineIDIn(ArrayList value) { this.CB_BatchTranLine_CBBatchTranLineIDIn = value; return this; } public String getCbBatchTranLineCustomFieldsRecID() { return CB_BatchTranLineCustomFields_RecID; } public CB_BatchTranLineCustomValuesQuery setCbBatchTranLineCustomFieldsRecID(String value) { this.CB_BatchTranLineCustomFields_RecID = value; return this; } public String getCbBatchTranLineCustomFieldsRecIDStartsWith() { return CB_BatchTranLineCustomFields_RecIDStartsWith; } public CB_BatchTranLineCustomValuesQuery setCbBatchTranLineCustomFieldsRecIDStartsWith(String value) { this.CB_BatchTranLineCustomFields_RecIDStartsWith = value; return this; } public String getCbBatchTranLineCustomFieldsRecIDEndsWith() { return CB_BatchTranLineCustomFields_RecIDEndsWith; } public CB_BatchTranLineCustomValuesQuery setCbBatchTranLineCustomFieldsRecIDEndsWith(String value) { this.CB_BatchTranLineCustomFields_RecIDEndsWith = value; return this; } public String getCbBatchTranLineCustomFieldsRecIDContains() { return CB_BatchTranLineCustomFields_RecIDContains; } public CB_BatchTranLineCustomValuesQuery setCbBatchTranLineCustomFieldsRecIDContains(String value) { this.CB_BatchTranLineCustomFields_RecIDContains = value; return this; } public String getCbBatchTranLineCustomFieldsRecIDLike() { return CB_BatchTranLineCustomFields_RecIDLike; } public CB_BatchTranLineCustomValuesQuery setCbBatchTranLineCustomFieldsRecIDLike(String value) { this.CB_BatchTranLineCustomFields_RecIDLike = value; return this; } public ArrayList getCbBatchTranLineCustomFieldsRecIDBetween() { return CB_BatchTranLineCustomFields_RecIDBetween; } public CB_BatchTranLineCustomValuesQuery setCbBatchTranLineCustomFieldsRecIDBetween(ArrayList value) { this.CB_BatchTranLineCustomFields_RecIDBetween = value; return this; } public ArrayList getCbBatchTranLineCustomFieldsRecIDIn() { return CB_BatchTranLineCustomFields_RecIDIn; } public CB_BatchTranLineCustomValuesQuery setCbBatchTranLineCustomFieldsRecIDIn(ArrayList value) { this.CB_BatchTranLineCustomFields_RecIDIn = value; return this; } public String getContents() { return Contents; } public CB_BatchTranLineCustomValuesQuery setContents(String value) { this.Contents = value; return this; } public String getContentsStartsWith() { return ContentsStartsWith; } public CB_BatchTranLineCustomValuesQuery setContentsStartsWith(String value) { this.ContentsStartsWith = value; return this; } public String getContentsEndsWith() { return ContentsEndsWith; } public CB_BatchTranLineCustomValuesQuery setContentsEndsWith(String value) { this.ContentsEndsWith = value; return this; } public String getContentsContains() { return ContentsContains; } public CB_BatchTranLineCustomValuesQuery setContentsContains(String value) { this.ContentsContains = value; return this; } public String getContentsLike() { return ContentsLike; } public CB_BatchTranLineCustomValuesQuery setContentsLike(String value) { this.ContentsLike = value; return this; } public ArrayList getContentsBetween() { return ContentsBetween; } public CB_BatchTranLineCustomValuesQuery setContentsBetween(ArrayList value) { this.ContentsBetween = value; return this; } public ArrayList getContentsIn() { return ContentsIn; } public CB_BatchTranLineCustomValuesQuery setContentsIn(ArrayList value) { this.ContentsIn = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public CB_BatchTranLineCustomValuesQuery setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getLastSavedDateTimeGreaterThanOrEqualTo() { return LastSavedDateTimeGreaterThanOrEqualTo; } public CB_BatchTranLineCustomValuesQuery setLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.LastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeGreaterThan() { return LastSavedDateTimeGreaterThan; } public CB_BatchTranLineCustomValuesQuery setLastSavedDateTimeGreaterThan(Date value) { this.LastSavedDateTimeGreaterThan = value; return this; } public Date getLastSavedDateTimeLessThan() { return LastSavedDateTimeLessThan; } public CB_BatchTranLineCustomValuesQuery setLastSavedDateTimeLessThan(Date value) { this.LastSavedDateTimeLessThan = value; return this; } public Date getLastSavedDateTimeLessThanOrEqualTo() { return LastSavedDateTimeLessThanOrEqualTo; } public CB_BatchTranLineCustomValuesQuery setLastSavedDateTimeLessThanOrEqualTo(Date value) { this.LastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeNotEqualTo() { return LastSavedDateTimeNotEqualTo; } public CB_BatchTranLineCustomValuesQuery setLastSavedDateTimeNotEqualTo(Date value) { this.LastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getLastSavedDateTimeBetween() { return LastSavedDateTimeBetween; } public CB_BatchTranLineCustomValuesQuery setLastSavedDateTimeBetween(ArrayList value) { this.LastSavedDateTimeBetween = value; return this; } public ArrayList getLastSavedDateTimeIn() { return LastSavedDateTimeIn; } public CB_BatchTranLineCustomValuesQuery setLastSavedDateTimeIn(ArrayList value) { this.LastSavedDateTimeIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class CB_BatchTranLinesQuery extends QueryDb implements IReturn> { public String CBBatchTranLineID = null; public String CBBatchTranLineIDStartsWith = null; public String CBBatchTranLineIDEndsWith = null; public String CBBatchTranLineIDContains = null; public String CBBatchTranLineIDLike = null; public ArrayList CBBatchTranLineIDBetween = null; public ArrayList CBBatchTranLineIDIn = null; public String CBBatchID = null; public String CBBatchIDStartsWith = null; public String CBBatchIDEndsWith = null; public String CBBatchIDContains = null; public String CBBatchIDLike = null; public ArrayList CBBatchIDBetween = null; public ArrayList CBBatchIDIn = null; public String OffsetLedgerID = null; public String OffsetLedgerIDStartsWith = null; public String OffsetLedgerIDEndsWith = null; public String OffsetLedgerIDContains = null; public String OffsetLedgerIDLike = null; public ArrayList OffsetLedgerIDBetween = null; public ArrayList OffsetLedgerIDIn = null; public String RemitNo = null; public String RemitNoStartsWith = null; public String RemitNoEndsWith = null; public String RemitNoContains = null; public String RemitNoLike = null; public ArrayList RemitNoBetween = null; public ArrayList RemitNoIn = null; public String Ref = null; public String RefStartsWith = null; public String RefEndsWith = null; public String RefContains = null; public String RefLike = null; public ArrayList RefBetween = null; public ArrayList RefIn = null; public Short DebtorCreditor = null; public Short DebtorCreditorGreaterThanOrEqualTo = null; public Short DebtorCreditorGreaterThan = null; public Short DebtorCreditorLessThan = null; public Short DebtorCreditorLessThanOrEqualTo = null; public Short DebtorCreditorNotEqualTo = null; public ArrayList DebtorCreditorBetween = null; public ArrayList DebtorCreditorIn = null; public String DebtorCreditorID = null; public String DebtorCreditorIDStartsWith = null; public String DebtorCreditorIDEndsWith = null; public String DebtorCreditorIDContains = null; public String DebtorCreditorIDLike = null; public ArrayList DebtorCreditorIDBetween = null; public ArrayList DebtorCreditorIDIn = null; public Short TransType = null; public Short TransTypeGreaterThanOrEqualTo = null; public Short TransTypeGreaterThan = null; public Short TransTypeLessThan = null; public Short TransTypeLessThanOrEqualTo = null; public Short TransTypeNotEqualTo = null; public ArrayList TransTypeBetween = null; public ArrayList TransTypeIn = null; public String Remark = null; public String RemarkStartsWith = null; public String RemarkEndsWith = null; public String RemarkContains = null; public String RemarkLike = null; public ArrayList RemarkBetween = null; public ArrayList RemarkIn = null; public Short LineNum = null; public Short LineNumGreaterThanOrEqualTo = null; public Short LineNumGreaterThan = null; public Short LineNumLessThan = null; public Short LineNumLessThanOrEqualTo = null; public Short LineNumNotEqualTo = null; public ArrayList LineNumBetween = null; public ArrayList LineNumIn = null; public BigDecimal HomeAmount = null; public BigDecimal HomeAmountGreaterThanOrEqualTo = null; public BigDecimal HomeAmountGreaterThan = null; public BigDecimal HomeAmountLessThan = null; public BigDecimal HomeAmountLessThanOrEqualTo = null; public BigDecimal HomeAmountNotEqualTo = null; public ArrayList HomeAmountBetween = null; public ArrayList HomeAmountIn = null; public Short GroupNo = null; public Short GroupNoGreaterThanOrEqualTo = null; public Short GroupNoGreaterThan = null; public Short GroupNoLessThan = null; public Short GroupNoLessThanOrEqualTo = null; public Short GroupNoNotEqualTo = null; public ArrayList GroupNoBetween = null; public ArrayList GroupNoIn = null; public Date TranDate = null; public Date TranDateGreaterThanOrEqualTo = null; public Date TranDateGreaterThan = null; public Date TranDateLessThan = null; public Date TranDateLessThanOrEqualTo = null; public Date TranDateNotEqualTo = null; public ArrayList TranDateBetween = null; public ArrayList TranDateIn = null; public String DiscountLedgerID = null; public String DiscountLedgerIDStartsWith = null; public String DiscountLedgerIDEndsWith = null; public String DiscountLedgerIDContains = null; public String DiscountLedgerIDLike = null; public ArrayList DiscountLedgerIDBetween = null; public ArrayList DiscountLedgerIDIn = null; public BigDecimal HomeDiscountTaken = null; public BigDecimal HomeDiscountTakenGreaterThanOrEqualTo = null; public BigDecimal HomeDiscountTakenGreaterThan = null; public BigDecimal HomeDiscountTakenLessThan = null; public BigDecimal HomeDiscountTakenLessThanOrEqualTo = null; public BigDecimal HomeDiscountTakenNotEqualTo = null; public ArrayList HomeDiscountTakenBetween = null; public ArrayList HomeDiscountTakenIn = null; public BigDecimal SupplierAmount = null; public BigDecimal SupplierAmountGreaterThanOrEqualTo = null; public BigDecimal SupplierAmountGreaterThan = null; public BigDecimal SupplierAmountLessThan = null; public BigDecimal SupplierAmountLessThanOrEqualTo = null; public BigDecimal SupplierAmountNotEqualTo = null; public ArrayList SupplierAmountBetween = null; public ArrayList SupplierAmountIn = null; public BigDecimal CurrencyRateUsed = null; public BigDecimal CurrencyRateUsedGreaterThanOrEqualTo = null; public BigDecimal CurrencyRateUsedGreaterThan = null; public BigDecimal CurrencyRateUsedLessThan = null; public BigDecimal CurrencyRateUsedLessThanOrEqualTo = null; public BigDecimal CurrencyRateUsedNotEqualTo = null; public ArrayList CurrencyRateUsedBetween = null; public ArrayList CurrencyRateUsedIn = null; public BigDecimal SupplierDiscountTaken = null; public BigDecimal SupplierDiscountTakenGreaterThanOrEqualTo = null; public BigDecimal SupplierDiscountTakenGreaterThan = null; public BigDecimal SupplierDiscountTakenLessThan = null; public BigDecimal SupplierDiscountTakenLessThanOrEqualTo = null; public BigDecimal SupplierDiscountTakenNotEqualTo = null; public ArrayList SupplierDiscountTakenBetween = null; public ArrayList SupplierDiscountTakenIn = null; public String ParentDebtorID = null; public String ParentDebtorIDStartsWith = null; public String ParentDebtorIDEndsWith = null; public String ParentDebtorIDContains = null; public String ParentDebtorIDLike = null; public ArrayList ParentDebtorIDBetween = null; public ArrayList ParentDebtorIDIn = null; public String BankName = null; public String BankNameStartsWith = null; public String BankNameEndsWith = null; public String BankNameContains = null; public String BankNameLike = null; public ArrayList BankNameBetween = null; public ArrayList BankNameIn = null; public String BankAcc = null; public String BankAccStartsWith = null; public String BankAccEndsWith = null; public String BankAccContains = null; public String BankAccLike = null; public ArrayList BankAccBetween = null; public ArrayList BankAccIn = null; public String BSBN = null; public String BSBNStartsWith = null; public String BSBNEndsWith = null; public String BSBNContains = null; public String BSBNLike = null; public ArrayList BSBNBetween = null; public ArrayList BSBNIn = null; public String AccountName = null; public String AccountNameStartsWith = null; public String AccountNameEndsWith = null; public String AccountNameContains = null; public String AccountNameLike = null; public ArrayList AccountNameBetween = null; public ArrayList AccountNameIn = null; public BigDecimal AllocatedAmount = null; public BigDecimal AllocatedAmountGreaterThanOrEqualTo = null; public BigDecimal AllocatedAmountGreaterThan = null; public BigDecimal AllocatedAmountLessThan = null; public BigDecimal AllocatedAmountLessThanOrEqualTo = null; public BigDecimal AllocatedAmountNotEqualTo = null; public ArrayList AllocatedAmountBetween = null; public ArrayList AllocatedAmountIn = null; public String PaymentTypeID = null; public String PaymentTypeIDStartsWith = null; public String PaymentTypeIDEndsWith = null; public String PaymentTypeIDContains = null; public String PaymentTypeIDLike = null; public ArrayList PaymentTypeIDBetween = null; public ArrayList PaymentTypeIDIn = null; public String Approval = null; public String ApprovalStartsWith = null; public String ApprovalEndsWith = null; public String ApprovalContains = null; public String ApprovalLike = null; public ArrayList ApprovalBetween = null; public ArrayList ApprovalIn = null; public Boolean UpdateDebtorBankDetails = null; public String GSTRateID = null; public String GSTRateIDStartsWith = null; public String GSTRateIDEndsWith = null; public String GSTRateIDContains = null; public String GSTRateIDLike = null; public ArrayList GSTRateIDBetween = null; public ArrayList GSTRateIDIn = null; public BigDecimal GSTRate = null; public BigDecimal GSTRateGreaterThanOrEqualTo = null; public BigDecimal GSTRateGreaterThan = null; public BigDecimal GSTRateLessThan = null; public BigDecimal GSTRateLessThanOrEqualTo = null; public BigDecimal GSTRateNotEqualTo = null; public ArrayList GSTRateBetween = null; public ArrayList GSTRateIn = null; public BigDecimal GSTAmount = null; public BigDecimal GSTAmountGreaterThanOrEqualTo = null; public BigDecimal GSTAmountGreaterThan = null; public BigDecimal GSTAmountLessThan = null; public BigDecimal GSTAmountLessThanOrEqualTo = null; public BigDecimal GSTAmountNotEqualTo = null; public ArrayList GSTAmountBetween = null; public ArrayList GSTAmountIn = null; public String DiscountGSTRateID = null; public String DiscountGSTRateIDStartsWith = null; public String DiscountGSTRateIDEndsWith = null; public String DiscountGSTRateIDContains = null; public String DiscountGSTRateIDLike = null; public ArrayList DiscountGSTRateIDBetween = null; public ArrayList DiscountGSTRateIDIn = null; public BigDecimal DiscountGSTRate = null; public BigDecimal DiscountGSTRateGreaterThanOrEqualTo = null; public BigDecimal DiscountGSTRateGreaterThan = null; public BigDecimal DiscountGSTRateLessThan = null; public BigDecimal DiscountGSTRateLessThanOrEqualTo = null; public BigDecimal DiscountGSTRateNotEqualTo = null; public ArrayList DiscountGSTRateBetween = null; public ArrayList DiscountGSTRateIn = null; public BigDecimal DiscountGSTAmount = null; public BigDecimal DiscountGSTAmountGreaterThanOrEqualTo = null; public BigDecimal DiscountGSTAmountGreaterThan = null; public BigDecimal DiscountGSTAmountLessThan = null; public BigDecimal DiscountGSTAmountLessThanOrEqualTo = null; public BigDecimal DiscountGSTAmountNotEqualTo = null; public ArrayList DiscountGSTAmountBetween = null; public ArrayList DiscountGSTAmountIn = null; public String JobNo = null; public String JobNoStartsWith = null; public String JobNoEndsWith = null; public String JobNoContains = null; public String JobNoLike = null; public ArrayList JobNoBetween = null; public ArrayList JobNoIn = null; public BigDecimal JobChargeAmount = null; public BigDecimal JobChargeAmountGreaterThanOrEqualTo = null; public BigDecimal JobChargeAmountGreaterThan = null; public BigDecimal JobChargeAmountLessThan = null; public BigDecimal JobChargeAmountLessThanOrEqualTo = null; public BigDecimal JobChargeAmountNotEqualTo = null; public ArrayList JobChargeAmountBetween = null; public ArrayList JobChargeAmountIn = null; public String FXCurrencyID = null; public String FXCurrencyIDStartsWith = null; public String FXCurrencyIDEndsWith = null; public String FXCurrencyIDContains = null; public String FXCurrencyIDLike = null; public ArrayList FXCurrencyIDBetween = null; public ArrayList FXCurrencyIDIn = null; public Short FXDecimalPlaces = null; public Short FXDecimalPlacesGreaterThanOrEqualTo = null; public Short FXDecimalPlacesGreaterThan = null; public Short FXDecimalPlacesLessThan = null; public Short FXDecimalPlacesLessThanOrEqualTo = null; public Short FXDecimalPlacesNotEqualTo = null; public ArrayList FXDecimalPlacesBetween = null; public ArrayList FXDecimalPlacesIn = null; public Short AUDDecimalPlaces = null; public Short AUDDecimalPlacesGreaterThanOrEqualTo = null; public Short AUDDecimalPlacesGreaterThan = null; public Short AUDDecimalPlacesLessThan = null; public Short AUDDecimalPlacesLessThanOrEqualTo = null; public Short AUDDecimalPlacesNotEqualTo = null; public ArrayList AUDDecimalPlacesBetween = null; public ArrayList AUDDecimalPlacesIn = null; public Date DueDate = null; public Date DueDateGreaterThanOrEqualTo = null; public Date DueDateGreaterThan = null; public Date DueDateLessThan = null; public Date DueDateLessThanOrEqualTo = null; public Date DueDateNotEqualTo = null; public ArrayList DueDateBetween = null; public ArrayList DueDateIn = null; public BigDecimal SupplierAllocatedAmount = null; public BigDecimal SupplierAllocatedAmountGreaterThanOrEqualTo = null; public BigDecimal SupplierAllocatedAmountGreaterThan = null; public BigDecimal SupplierAllocatedAmountLessThan = null; public BigDecimal SupplierAllocatedAmountLessThanOrEqualTo = null; public BigDecimal SupplierAllocatedAmountNotEqualTo = null; public ArrayList SupplierAllocatedAmountBetween = null; public ArrayList SupplierAllocatedAmountIn = null; public String getCbBatchTranLineID() { return CBBatchTranLineID; } public CB_BatchTranLinesQuery setCbBatchTranLineID(String value) { this.CBBatchTranLineID = value; return this; } public String getCbBatchTranLineIDStartsWith() { return CBBatchTranLineIDStartsWith; } public CB_BatchTranLinesQuery setCbBatchTranLineIDStartsWith(String value) { this.CBBatchTranLineIDStartsWith = value; return this; } public String getCbBatchTranLineIDEndsWith() { return CBBatchTranLineIDEndsWith; } public CB_BatchTranLinesQuery setCbBatchTranLineIDEndsWith(String value) { this.CBBatchTranLineIDEndsWith = value; return this; } public String getCbBatchTranLineIDContains() { return CBBatchTranLineIDContains; } public CB_BatchTranLinesQuery setCbBatchTranLineIDContains(String value) { this.CBBatchTranLineIDContains = value; return this; } public String getCbBatchTranLineIDLike() { return CBBatchTranLineIDLike; } public CB_BatchTranLinesQuery setCbBatchTranLineIDLike(String value) { this.CBBatchTranLineIDLike = value; return this; } public ArrayList getCbBatchTranLineIDBetween() { return CBBatchTranLineIDBetween; } public CB_BatchTranLinesQuery setCbBatchTranLineIDBetween(ArrayList value) { this.CBBatchTranLineIDBetween = value; return this; } public ArrayList getCbBatchTranLineIDIn() { return CBBatchTranLineIDIn; } public CB_BatchTranLinesQuery setCbBatchTranLineIDIn(ArrayList value) { this.CBBatchTranLineIDIn = value; return this; } public String getCbBatchID() { return CBBatchID; } public CB_BatchTranLinesQuery setCbBatchID(String value) { this.CBBatchID = value; return this; } public String getCbBatchIDStartsWith() { return CBBatchIDStartsWith; } public CB_BatchTranLinesQuery setCbBatchIDStartsWith(String value) { this.CBBatchIDStartsWith = value; return this; } public String getCbBatchIDEndsWith() { return CBBatchIDEndsWith; } public CB_BatchTranLinesQuery setCbBatchIDEndsWith(String value) { this.CBBatchIDEndsWith = value; return this; } public String getCbBatchIDContains() { return CBBatchIDContains; } public CB_BatchTranLinesQuery setCbBatchIDContains(String value) { this.CBBatchIDContains = value; return this; } public String getCbBatchIDLike() { return CBBatchIDLike; } public CB_BatchTranLinesQuery setCbBatchIDLike(String value) { this.CBBatchIDLike = value; return this; } public ArrayList getCbBatchIDBetween() { return CBBatchIDBetween; } public CB_BatchTranLinesQuery setCbBatchIDBetween(ArrayList value) { this.CBBatchIDBetween = value; return this; } public ArrayList getCbBatchIDIn() { return CBBatchIDIn; } public CB_BatchTranLinesQuery setCbBatchIDIn(ArrayList value) { this.CBBatchIDIn = value; return this; } public String getOffsetLedgerID() { return OffsetLedgerID; } public CB_BatchTranLinesQuery setOffsetLedgerID(String value) { this.OffsetLedgerID = value; return this; } public String getOffsetLedgerIDStartsWith() { return OffsetLedgerIDStartsWith; } public CB_BatchTranLinesQuery setOffsetLedgerIDStartsWith(String value) { this.OffsetLedgerIDStartsWith = value; return this; } public String getOffsetLedgerIDEndsWith() { return OffsetLedgerIDEndsWith; } public CB_BatchTranLinesQuery setOffsetLedgerIDEndsWith(String value) { this.OffsetLedgerIDEndsWith = value; return this; } public String getOffsetLedgerIDContains() { return OffsetLedgerIDContains; } public CB_BatchTranLinesQuery setOffsetLedgerIDContains(String value) { this.OffsetLedgerIDContains = value; return this; } public String getOffsetLedgerIDLike() { return OffsetLedgerIDLike; } public CB_BatchTranLinesQuery setOffsetLedgerIDLike(String value) { this.OffsetLedgerIDLike = value; return this; } public ArrayList getOffsetLedgerIDBetween() { return OffsetLedgerIDBetween; } public CB_BatchTranLinesQuery setOffsetLedgerIDBetween(ArrayList value) { this.OffsetLedgerIDBetween = value; return this; } public ArrayList getOffsetLedgerIDIn() { return OffsetLedgerIDIn; } public CB_BatchTranLinesQuery setOffsetLedgerIDIn(ArrayList value) { this.OffsetLedgerIDIn = value; return this; } public String getRemitNo() { return RemitNo; } public CB_BatchTranLinesQuery setRemitNo(String value) { this.RemitNo = value; return this; } public String getRemitNoStartsWith() { return RemitNoStartsWith; } public CB_BatchTranLinesQuery setRemitNoStartsWith(String value) { this.RemitNoStartsWith = value; return this; } public String getRemitNoEndsWith() { return RemitNoEndsWith; } public CB_BatchTranLinesQuery setRemitNoEndsWith(String value) { this.RemitNoEndsWith = value; return this; } public String getRemitNoContains() { return RemitNoContains; } public CB_BatchTranLinesQuery setRemitNoContains(String value) { this.RemitNoContains = value; return this; } public String getRemitNoLike() { return RemitNoLike; } public CB_BatchTranLinesQuery setRemitNoLike(String value) { this.RemitNoLike = value; return this; } public ArrayList getRemitNoBetween() { return RemitNoBetween; } public CB_BatchTranLinesQuery setRemitNoBetween(ArrayList value) { this.RemitNoBetween = value; return this; } public ArrayList getRemitNoIn() { return RemitNoIn; } public CB_BatchTranLinesQuery setRemitNoIn(ArrayList value) { this.RemitNoIn = value; return this; } public String getRef() { return Ref; } public CB_BatchTranLinesQuery setRef(String value) { this.Ref = value; return this; } public String getRefStartsWith() { return RefStartsWith; } public CB_BatchTranLinesQuery setRefStartsWith(String value) { this.RefStartsWith = value; return this; } public String getRefEndsWith() { return RefEndsWith; } public CB_BatchTranLinesQuery setRefEndsWith(String value) { this.RefEndsWith = value; return this; } public String getRefContains() { return RefContains; } public CB_BatchTranLinesQuery setRefContains(String value) { this.RefContains = value; return this; } public String getRefLike() { return RefLike; } public CB_BatchTranLinesQuery setRefLike(String value) { this.RefLike = value; return this; } public ArrayList getRefBetween() { return RefBetween; } public CB_BatchTranLinesQuery setRefBetween(ArrayList value) { this.RefBetween = value; return this; } public ArrayList getRefIn() { return RefIn; } public CB_BatchTranLinesQuery setRefIn(ArrayList value) { this.RefIn = value; return this; } public Short getDebtorCreditor() { return DebtorCreditor; } public CB_BatchTranLinesQuery setDebtorCreditor(Short value) { this.DebtorCreditor = value; return this; } public Short getDebtorCreditorGreaterThanOrEqualTo() { return DebtorCreditorGreaterThanOrEqualTo; } public CB_BatchTranLinesQuery setDebtorCreditorGreaterThanOrEqualTo(Short value) { this.DebtorCreditorGreaterThanOrEqualTo = value; return this; } public Short getDebtorCreditorGreaterThan() { return DebtorCreditorGreaterThan; } public CB_BatchTranLinesQuery setDebtorCreditorGreaterThan(Short value) { this.DebtorCreditorGreaterThan = value; return this; } public Short getDebtorCreditorLessThan() { return DebtorCreditorLessThan; } public CB_BatchTranLinesQuery setDebtorCreditorLessThan(Short value) { this.DebtorCreditorLessThan = value; return this; } public Short getDebtorCreditorLessThanOrEqualTo() { return DebtorCreditorLessThanOrEqualTo; } public CB_BatchTranLinesQuery setDebtorCreditorLessThanOrEqualTo(Short value) { this.DebtorCreditorLessThanOrEqualTo = value; return this; } public Short getDebtorCreditorNotEqualTo() { return DebtorCreditorNotEqualTo; } public CB_BatchTranLinesQuery setDebtorCreditorNotEqualTo(Short value) { this.DebtorCreditorNotEqualTo = value; return this; } public ArrayList getDebtorCreditorBetween() { return DebtorCreditorBetween; } public CB_BatchTranLinesQuery setDebtorCreditorBetween(ArrayList value) { this.DebtorCreditorBetween = value; return this; } public ArrayList getDebtorCreditorIn() { return DebtorCreditorIn; } public CB_BatchTranLinesQuery setDebtorCreditorIn(ArrayList value) { this.DebtorCreditorIn = value; return this; } public String getDebtorCreditorID() { return DebtorCreditorID; } public CB_BatchTranLinesQuery setDebtorCreditorID(String value) { this.DebtorCreditorID = value; return this; } public String getDebtorCreditorIDStartsWith() { return DebtorCreditorIDStartsWith; } public CB_BatchTranLinesQuery setDebtorCreditorIDStartsWith(String value) { this.DebtorCreditorIDStartsWith = value; return this; } public String getDebtorCreditorIDEndsWith() { return DebtorCreditorIDEndsWith; } public CB_BatchTranLinesQuery setDebtorCreditorIDEndsWith(String value) { this.DebtorCreditorIDEndsWith = value; return this; } public String getDebtorCreditorIDContains() { return DebtorCreditorIDContains; } public CB_BatchTranLinesQuery setDebtorCreditorIDContains(String value) { this.DebtorCreditorIDContains = value; return this; } public String getDebtorCreditorIDLike() { return DebtorCreditorIDLike; } public CB_BatchTranLinesQuery setDebtorCreditorIDLike(String value) { this.DebtorCreditorIDLike = value; return this; } public ArrayList getDebtorCreditorIDBetween() { return DebtorCreditorIDBetween; } public CB_BatchTranLinesQuery setDebtorCreditorIDBetween(ArrayList value) { this.DebtorCreditorIDBetween = value; return this; } public ArrayList getDebtorCreditorIDIn() { return DebtorCreditorIDIn; } public CB_BatchTranLinesQuery setDebtorCreditorIDIn(ArrayList value) { this.DebtorCreditorIDIn = value; return this; } public Short getTransType() { return TransType; } public CB_BatchTranLinesQuery setTransType(Short value) { this.TransType = value; return this; } public Short getTransTypeGreaterThanOrEqualTo() { return TransTypeGreaterThanOrEqualTo; } public CB_BatchTranLinesQuery setTransTypeGreaterThanOrEqualTo(Short value) { this.TransTypeGreaterThanOrEqualTo = value; return this; } public Short getTransTypeGreaterThan() { return TransTypeGreaterThan; } public CB_BatchTranLinesQuery setTransTypeGreaterThan(Short value) { this.TransTypeGreaterThan = value; return this; } public Short getTransTypeLessThan() { return TransTypeLessThan; } public CB_BatchTranLinesQuery setTransTypeLessThan(Short value) { this.TransTypeLessThan = value; return this; } public Short getTransTypeLessThanOrEqualTo() { return TransTypeLessThanOrEqualTo; } public CB_BatchTranLinesQuery setTransTypeLessThanOrEqualTo(Short value) { this.TransTypeLessThanOrEqualTo = value; return this; } public Short getTransTypeNotEqualTo() { return TransTypeNotEqualTo; } public CB_BatchTranLinesQuery setTransTypeNotEqualTo(Short value) { this.TransTypeNotEqualTo = value; return this; } public ArrayList getTransTypeBetween() { return TransTypeBetween; } public CB_BatchTranLinesQuery setTransTypeBetween(ArrayList value) { this.TransTypeBetween = value; return this; } public ArrayList getTransTypeIn() { return TransTypeIn; } public CB_BatchTranLinesQuery setTransTypeIn(ArrayList value) { this.TransTypeIn = value; return this; } public String getRemark() { return Remark; } public CB_BatchTranLinesQuery setRemark(String value) { this.Remark = value; return this; } public String getRemarkStartsWith() { return RemarkStartsWith; } public CB_BatchTranLinesQuery setRemarkStartsWith(String value) { this.RemarkStartsWith = value; return this; } public String getRemarkEndsWith() { return RemarkEndsWith; } public CB_BatchTranLinesQuery setRemarkEndsWith(String value) { this.RemarkEndsWith = value; return this; } public String getRemarkContains() { return RemarkContains; } public CB_BatchTranLinesQuery setRemarkContains(String value) { this.RemarkContains = value; return this; } public String getRemarkLike() { return RemarkLike; } public CB_BatchTranLinesQuery setRemarkLike(String value) { this.RemarkLike = value; return this; } public ArrayList getRemarkBetween() { return RemarkBetween; } public CB_BatchTranLinesQuery setRemarkBetween(ArrayList value) { this.RemarkBetween = value; return this; } public ArrayList getRemarkIn() { return RemarkIn; } public CB_BatchTranLinesQuery setRemarkIn(ArrayList value) { this.RemarkIn = value; return this; } public Short getLineNum() { return LineNum; } public CB_BatchTranLinesQuery setLineNum(Short value) { this.LineNum = value; return this; } public Short getLineNumGreaterThanOrEqualTo() { return LineNumGreaterThanOrEqualTo; } public CB_BatchTranLinesQuery setLineNumGreaterThanOrEqualTo(Short value) { this.LineNumGreaterThanOrEqualTo = value; return this; } public Short getLineNumGreaterThan() { return LineNumGreaterThan; } public CB_BatchTranLinesQuery setLineNumGreaterThan(Short value) { this.LineNumGreaterThan = value; return this; } public Short getLineNumLessThan() { return LineNumLessThan; } public CB_BatchTranLinesQuery setLineNumLessThan(Short value) { this.LineNumLessThan = value; return this; } public Short getLineNumLessThanOrEqualTo() { return LineNumLessThanOrEqualTo; } public CB_BatchTranLinesQuery setLineNumLessThanOrEqualTo(Short value) { this.LineNumLessThanOrEqualTo = value; return this; } public Short getLineNumNotEqualTo() { return LineNumNotEqualTo; } public CB_BatchTranLinesQuery setLineNumNotEqualTo(Short value) { this.LineNumNotEqualTo = value; return this; } public ArrayList getLineNumBetween() { return LineNumBetween; } public CB_BatchTranLinesQuery setLineNumBetween(ArrayList value) { this.LineNumBetween = value; return this; } public ArrayList getLineNumIn() { return LineNumIn; } public CB_BatchTranLinesQuery setLineNumIn(ArrayList value) { this.LineNumIn = value; return this; } public BigDecimal getHomeAmount() { return HomeAmount; } public CB_BatchTranLinesQuery setHomeAmount(BigDecimal value) { this.HomeAmount = value; return this; } public BigDecimal getHomeAmountGreaterThanOrEqualTo() { return HomeAmountGreaterThanOrEqualTo; } public CB_BatchTranLinesQuery setHomeAmountGreaterThanOrEqualTo(BigDecimal value) { this.HomeAmountGreaterThanOrEqualTo = value; return this; } public BigDecimal getHomeAmountGreaterThan() { return HomeAmountGreaterThan; } public CB_BatchTranLinesQuery setHomeAmountGreaterThan(BigDecimal value) { this.HomeAmountGreaterThan = value; return this; } public BigDecimal getHomeAmountLessThan() { return HomeAmountLessThan; } public CB_BatchTranLinesQuery setHomeAmountLessThan(BigDecimal value) { this.HomeAmountLessThan = value; return this; } public BigDecimal getHomeAmountLessThanOrEqualTo() { return HomeAmountLessThanOrEqualTo; } public CB_BatchTranLinesQuery setHomeAmountLessThanOrEqualTo(BigDecimal value) { this.HomeAmountLessThanOrEqualTo = value; return this; } public BigDecimal getHomeAmountNotEqualTo() { return HomeAmountNotEqualTo; } public CB_BatchTranLinesQuery setHomeAmountNotEqualTo(BigDecimal value) { this.HomeAmountNotEqualTo = value; return this; } public ArrayList getHomeAmountBetween() { return HomeAmountBetween; } public CB_BatchTranLinesQuery setHomeAmountBetween(ArrayList value) { this.HomeAmountBetween = value; return this; } public ArrayList getHomeAmountIn() { return HomeAmountIn; } public CB_BatchTranLinesQuery setHomeAmountIn(ArrayList value) { this.HomeAmountIn = value; return this; } public Short getGroupNo() { return GroupNo; } public CB_BatchTranLinesQuery setGroupNo(Short value) { this.GroupNo = value; return this; } public Short getGroupNoGreaterThanOrEqualTo() { return GroupNoGreaterThanOrEqualTo; } public CB_BatchTranLinesQuery setGroupNoGreaterThanOrEqualTo(Short value) { this.GroupNoGreaterThanOrEqualTo = value; return this; } public Short getGroupNoGreaterThan() { return GroupNoGreaterThan; } public CB_BatchTranLinesQuery setGroupNoGreaterThan(Short value) { this.GroupNoGreaterThan = value; return this; } public Short getGroupNoLessThan() { return GroupNoLessThan; } public CB_BatchTranLinesQuery setGroupNoLessThan(Short value) { this.GroupNoLessThan = value; return this; } public Short getGroupNoLessThanOrEqualTo() { return GroupNoLessThanOrEqualTo; } public CB_BatchTranLinesQuery setGroupNoLessThanOrEqualTo(Short value) { this.GroupNoLessThanOrEqualTo = value; return this; } public Short getGroupNoNotEqualTo() { return GroupNoNotEqualTo; } public CB_BatchTranLinesQuery setGroupNoNotEqualTo(Short value) { this.GroupNoNotEqualTo = value; return this; } public ArrayList getGroupNoBetween() { return GroupNoBetween; } public CB_BatchTranLinesQuery setGroupNoBetween(ArrayList value) { this.GroupNoBetween = value; return this; } public ArrayList getGroupNoIn() { return GroupNoIn; } public CB_BatchTranLinesQuery setGroupNoIn(ArrayList value) { this.GroupNoIn = value; return this; } public Date getTranDate() { return TranDate; } public CB_BatchTranLinesQuery setTranDate(Date value) { this.TranDate = value; return this; } public Date getTranDateGreaterThanOrEqualTo() { return TranDateGreaterThanOrEqualTo; } public CB_BatchTranLinesQuery setTranDateGreaterThanOrEqualTo(Date value) { this.TranDateGreaterThanOrEqualTo = value; return this; } public Date getTranDateGreaterThan() { return TranDateGreaterThan; } public CB_BatchTranLinesQuery setTranDateGreaterThan(Date value) { this.TranDateGreaterThan = value; return this; } public Date getTranDateLessThan() { return TranDateLessThan; } public CB_BatchTranLinesQuery setTranDateLessThan(Date value) { this.TranDateLessThan = value; return this; } public Date getTranDateLessThanOrEqualTo() { return TranDateLessThanOrEqualTo; } public CB_BatchTranLinesQuery setTranDateLessThanOrEqualTo(Date value) { this.TranDateLessThanOrEqualTo = value; return this; } public Date getTranDateNotEqualTo() { return TranDateNotEqualTo; } public CB_BatchTranLinesQuery setTranDateNotEqualTo(Date value) { this.TranDateNotEqualTo = value; return this; } public ArrayList getTranDateBetween() { return TranDateBetween; } public CB_BatchTranLinesQuery setTranDateBetween(ArrayList value) { this.TranDateBetween = value; return this; } public ArrayList getTranDateIn() { return TranDateIn; } public CB_BatchTranLinesQuery setTranDateIn(ArrayList value) { this.TranDateIn = value; return this; } public String getDiscountLedgerID() { return DiscountLedgerID; } public CB_BatchTranLinesQuery setDiscountLedgerID(String value) { this.DiscountLedgerID = value; return this; } public String getDiscountLedgerIDStartsWith() { return DiscountLedgerIDStartsWith; } public CB_BatchTranLinesQuery setDiscountLedgerIDStartsWith(String value) { this.DiscountLedgerIDStartsWith = value; return this; } public String getDiscountLedgerIDEndsWith() { return DiscountLedgerIDEndsWith; } public CB_BatchTranLinesQuery setDiscountLedgerIDEndsWith(String value) { this.DiscountLedgerIDEndsWith = value; return this; } public String getDiscountLedgerIDContains() { return DiscountLedgerIDContains; } public CB_BatchTranLinesQuery setDiscountLedgerIDContains(String value) { this.DiscountLedgerIDContains = value; return this; } public String getDiscountLedgerIDLike() { return DiscountLedgerIDLike; } public CB_BatchTranLinesQuery setDiscountLedgerIDLike(String value) { this.DiscountLedgerIDLike = value; return this; } public ArrayList getDiscountLedgerIDBetween() { return DiscountLedgerIDBetween; } public CB_BatchTranLinesQuery setDiscountLedgerIDBetween(ArrayList value) { this.DiscountLedgerIDBetween = value; return this; } public ArrayList getDiscountLedgerIDIn() { return DiscountLedgerIDIn; } public CB_BatchTranLinesQuery setDiscountLedgerIDIn(ArrayList value) { this.DiscountLedgerIDIn = value; return this; } public BigDecimal getHomeDiscountTaken() { return HomeDiscountTaken; } public CB_BatchTranLinesQuery setHomeDiscountTaken(BigDecimal value) { this.HomeDiscountTaken = value; return this; } public BigDecimal getHomeDiscountTakenGreaterThanOrEqualTo() { return HomeDiscountTakenGreaterThanOrEqualTo; } public CB_BatchTranLinesQuery setHomeDiscountTakenGreaterThanOrEqualTo(BigDecimal value) { this.HomeDiscountTakenGreaterThanOrEqualTo = value; return this; } public BigDecimal getHomeDiscountTakenGreaterThan() { return HomeDiscountTakenGreaterThan; } public CB_BatchTranLinesQuery setHomeDiscountTakenGreaterThan(BigDecimal value) { this.HomeDiscountTakenGreaterThan = value; return this; } public BigDecimal getHomeDiscountTakenLessThan() { return HomeDiscountTakenLessThan; } public CB_BatchTranLinesQuery setHomeDiscountTakenLessThan(BigDecimal value) { this.HomeDiscountTakenLessThan = value; return this; } public BigDecimal getHomeDiscountTakenLessThanOrEqualTo() { return HomeDiscountTakenLessThanOrEqualTo; } public CB_BatchTranLinesQuery setHomeDiscountTakenLessThanOrEqualTo(BigDecimal value) { this.HomeDiscountTakenLessThanOrEqualTo = value; return this; } public BigDecimal getHomeDiscountTakenNotEqualTo() { return HomeDiscountTakenNotEqualTo; } public CB_BatchTranLinesQuery setHomeDiscountTakenNotEqualTo(BigDecimal value) { this.HomeDiscountTakenNotEqualTo = value; return this; } public ArrayList getHomeDiscountTakenBetween() { return HomeDiscountTakenBetween; } public CB_BatchTranLinesQuery setHomeDiscountTakenBetween(ArrayList value) { this.HomeDiscountTakenBetween = value; return this; } public ArrayList getHomeDiscountTakenIn() { return HomeDiscountTakenIn; } public CB_BatchTranLinesQuery setHomeDiscountTakenIn(ArrayList value) { this.HomeDiscountTakenIn = value; return this; } public BigDecimal getSupplierAmount() { return SupplierAmount; } public CB_BatchTranLinesQuery setSupplierAmount(BigDecimal value) { this.SupplierAmount = value; return this; } public BigDecimal getSupplierAmountGreaterThanOrEqualTo() { return SupplierAmountGreaterThanOrEqualTo; } public CB_BatchTranLinesQuery setSupplierAmountGreaterThanOrEqualTo(BigDecimal value) { this.SupplierAmountGreaterThanOrEqualTo = value; return this; } public BigDecimal getSupplierAmountGreaterThan() { return SupplierAmountGreaterThan; } public CB_BatchTranLinesQuery setSupplierAmountGreaterThan(BigDecimal value) { this.SupplierAmountGreaterThan = value; return this; } public BigDecimal getSupplierAmountLessThan() { return SupplierAmountLessThan; } public CB_BatchTranLinesQuery setSupplierAmountLessThan(BigDecimal value) { this.SupplierAmountLessThan = value; return this; } public BigDecimal getSupplierAmountLessThanOrEqualTo() { return SupplierAmountLessThanOrEqualTo; } public CB_BatchTranLinesQuery setSupplierAmountLessThanOrEqualTo(BigDecimal value) { this.SupplierAmountLessThanOrEqualTo = value; return this; } public BigDecimal getSupplierAmountNotEqualTo() { return SupplierAmountNotEqualTo; } public CB_BatchTranLinesQuery setSupplierAmountNotEqualTo(BigDecimal value) { this.SupplierAmountNotEqualTo = value; return this; } public ArrayList getSupplierAmountBetween() { return SupplierAmountBetween; } public CB_BatchTranLinesQuery setSupplierAmountBetween(ArrayList value) { this.SupplierAmountBetween = value; return this; } public ArrayList getSupplierAmountIn() { return SupplierAmountIn; } public CB_BatchTranLinesQuery setSupplierAmountIn(ArrayList value) { this.SupplierAmountIn = value; return this; } public BigDecimal getCurrencyRateUsed() { return CurrencyRateUsed; } public CB_BatchTranLinesQuery setCurrencyRateUsed(BigDecimal value) { this.CurrencyRateUsed = value; return this; } public BigDecimal getCurrencyRateUsedGreaterThanOrEqualTo() { return CurrencyRateUsedGreaterThanOrEqualTo; } public CB_BatchTranLinesQuery setCurrencyRateUsedGreaterThanOrEqualTo(BigDecimal value) { this.CurrencyRateUsedGreaterThanOrEqualTo = value; return this; } public BigDecimal getCurrencyRateUsedGreaterThan() { return CurrencyRateUsedGreaterThan; } public CB_BatchTranLinesQuery setCurrencyRateUsedGreaterThan(BigDecimal value) { this.CurrencyRateUsedGreaterThan = value; return this; } public BigDecimal getCurrencyRateUsedLessThan() { return CurrencyRateUsedLessThan; } public CB_BatchTranLinesQuery setCurrencyRateUsedLessThan(BigDecimal value) { this.CurrencyRateUsedLessThan = value; return this; } public BigDecimal getCurrencyRateUsedLessThanOrEqualTo() { return CurrencyRateUsedLessThanOrEqualTo; } public CB_BatchTranLinesQuery setCurrencyRateUsedLessThanOrEqualTo(BigDecimal value) { this.CurrencyRateUsedLessThanOrEqualTo = value; return this; } public BigDecimal getCurrencyRateUsedNotEqualTo() { return CurrencyRateUsedNotEqualTo; } public CB_BatchTranLinesQuery setCurrencyRateUsedNotEqualTo(BigDecimal value) { this.CurrencyRateUsedNotEqualTo = value; return this; } public ArrayList getCurrencyRateUsedBetween() { return CurrencyRateUsedBetween; } public CB_BatchTranLinesQuery setCurrencyRateUsedBetween(ArrayList value) { this.CurrencyRateUsedBetween = value; return this; } public ArrayList getCurrencyRateUsedIn() { return CurrencyRateUsedIn; } public CB_BatchTranLinesQuery setCurrencyRateUsedIn(ArrayList value) { this.CurrencyRateUsedIn = value; return this; } public BigDecimal getSupplierDiscountTaken() { return SupplierDiscountTaken; } public CB_BatchTranLinesQuery setSupplierDiscountTaken(BigDecimal value) { this.SupplierDiscountTaken = value; return this; } public BigDecimal getSupplierDiscountTakenGreaterThanOrEqualTo() { return SupplierDiscountTakenGreaterThanOrEqualTo; } public CB_BatchTranLinesQuery setSupplierDiscountTakenGreaterThanOrEqualTo(BigDecimal value) { this.SupplierDiscountTakenGreaterThanOrEqualTo = value; return this; } public BigDecimal getSupplierDiscountTakenGreaterThan() { return SupplierDiscountTakenGreaterThan; } public CB_BatchTranLinesQuery setSupplierDiscountTakenGreaterThan(BigDecimal value) { this.SupplierDiscountTakenGreaterThan = value; return this; } public BigDecimal getSupplierDiscountTakenLessThan() { return SupplierDiscountTakenLessThan; } public CB_BatchTranLinesQuery setSupplierDiscountTakenLessThan(BigDecimal value) { this.SupplierDiscountTakenLessThan = value; return this; } public BigDecimal getSupplierDiscountTakenLessThanOrEqualTo() { return SupplierDiscountTakenLessThanOrEqualTo; } public CB_BatchTranLinesQuery setSupplierDiscountTakenLessThanOrEqualTo(BigDecimal value) { this.SupplierDiscountTakenLessThanOrEqualTo = value; return this; } public BigDecimal getSupplierDiscountTakenNotEqualTo() { return SupplierDiscountTakenNotEqualTo; } public CB_BatchTranLinesQuery setSupplierDiscountTakenNotEqualTo(BigDecimal value) { this.SupplierDiscountTakenNotEqualTo = value; return this; } public ArrayList getSupplierDiscountTakenBetween() { return SupplierDiscountTakenBetween; } public CB_BatchTranLinesQuery setSupplierDiscountTakenBetween(ArrayList value) { this.SupplierDiscountTakenBetween = value; return this; } public ArrayList getSupplierDiscountTakenIn() { return SupplierDiscountTakenIn; } public CB_BatchTranLinesQuery setSupplierDiscountTakenIn(ArrayList value) { this.SupplierDiscountTakenIn = value; return this; } public String getParentDebtorID() { return ParentDebtorID; } public CB_BatchTranLinesQuery setParentDebtorID(String value) { this.ParentDebtorID = value; return this; } public String getParentDebtorIDStartsWith() { return ParentDebtorIDStartsWith; } public CB_BatchTranLinesQuery setParentDebtorIDStartsWith(String value) { this.ParentDebtorIDStartsWith = value; return this; } public String getParentDebtorIDEndsWith() { return ParentDebtorIDEndsWith; } public CB_BatchTranLinesQuery setParentDebtorIDEndsWith(String value) { this.ParentDebtorIDEndsWith = value; return this; } public String getParentDebtorIDContains() { return ParentDebtorIDContains; } public CB_BatchTranLinesQuery setParentDebtorIDContains(String value) { this.ParentDebtorIDContains = value; return this; } public String getParentDebtorIDLike() { return ParentDebtorIDLike; } public CB_BatchTranLinesQuery setParentDebtorIDLike(String value) { this.ParentDebtorIDLike = value; return this; } public ArrayList getParentDebtorIDBetween() { return ParentDebtorIDBetween; } public CB_BatchTranLinesQuery setParentDebtorIDBetween(ArrayList value) { this.ParentDebtorIDBetween = value; return this; } public ArrayList getParentDebtorIDIn() { return ParentDebtorIDIn; } public CB_BatchTranLinesQuery setParentDebtorIDIn(ArrayList value) { this.ParentDebtorIDIn = value; return this; } public String getBankName() { return BankName; } public CB_BatchTranLinesQuery setBankName(String value) { this.BankName = value; return this; } public String getBankNameStartsWith() { return BankNameStartsWith; } public CB_BatchTranLinesQuery setBankNameStartsWith(String value) { this.BankNameStartsWith = value; return this; } public String getBankNameEndsWith() { return BankNameEndsWith; } public CB_BatchTranLinesQuery setBankNameEndsWith(String value) { this.BankNameEndsWith = value; return this; } public String getBankNameContains() { return BankNameContains; } public CB_BatchTranLinesQuery setBankNameContains(String value) { this.BankNameContains = value; return this; } public String getBankNameLike() { return BankNameLike; } public CB_BatchTranLinesQuery setBankNameLike(String value) { this.BankNameLike = value; return this; } public ArrayList getBankNameBetween() { return BankNameBetween; } public CB_BatchTranLinesQuery setBankNameBetween(ArrayList value) { this.BankNameBetween = value; return this; } public ArrayList getBankNameIn() { return BankNameIn; } public CB_BatchTranLinesQuery setBankNameIn(ArrayList value) { this.BankNameIn = value; return this; } public String getBankAcc() { return BankAcc; } public CB_BatchTranLinesQuery setBankAcc(String value) { this.BankAcc = value; return this; } public String getBankAccStartsWith() { return BankAccStartsWith; } public CB_BatchTranLinesQuery setBankAccStartsWith(String value) { this.BankAccStartsWith = value; return this; } public String getBankAccEndsWith() { return BankAccEndsWith; } public CB_BatchTranLinesQuery setBankAccEndsWith(String value) { this.BankAccEndsWith = value; return this; } public String getBankAccContains() { return BankAccContains; } public CB_BatchTranLinesQuery setBankAccContains(String value) { this.BankAccContains = value; return this; } public String getBankAccLike() { return BankAccLike; } public CB_BatchTranLinesQuery setBankAccLike(String value) { this.BankAccLike = value; return this; } public ArrayList getBankAccBetween() { return BankAccBetween; } public CB_BatchTranLinesQuery setBankAccBetween(ArrayList value) { this.BankAccBetween = value; return this; } public ArrayList getBankAccIn() { return BankAccIn; } public CB_BatchTranLinesQuery setBankAccIn(ArrayList value) { this.BankAccIn = value; return this; } public String getBsbn() { return BSBN; } public CB_BatchTranLinesQuery setBsbn(String value) { this.BSBN = value; return this; } public String getBsbnStartsWith() { return BSBNStartsWith; } public CB_BatchTranLinesQuery setBsbnStartsWith(String value) { this.BSBNStartsWith = value; return this; } public String getBsbnEndsWith() { return BSBNEndsWith; } public CB_BatchTranLinesQuery setBsbnEndsWith(String value) { this.BSBNEndsWith = value; return this; } public String getBsbnContains() { return BSBNContains; } public CB_BatchTranLinesQuery setBsbnContains(String value) { this.BSBNContains = value; return this; } public String getBsbnLike() { return BSBNLike; } public CB_BatchTranLinesQuery setBsbnLike(String value) { this.BSBNLike = value; return this; } public ArrayList getBsbnBetween() { return BSBNBetween; } public CB_BatchTranLinesQuery setBsbnBetween(ArrayList value) { this.BSBNBetween = value; return this; } public ArrayList getBsbnIn() { return BSBNIn; } public CB_BatchTranLinesQuery setBsbnIn(ArrayList value) { this.BSBNIn = value; return this; } public String getAccountName() { return AccountName; } public CB_BatchTranLinesQuery setAccountName(String value) { this.AccountName = value; return this; } public String getAccountNameStartsWith() { return AccountNameStartsWith; } public CB_BatchTranLinesQuery setAccountNameStartsWith(String value) { this.AccountNameStartsWith = value; return this; } public String getAccountNameEndsWith() { return AccountNameEndsWith; } public CB_BatchTranLinesQuery setAccountNameEndsWith(String value) { this.AccountNameEndsWith = value; return this; } public String getAccountNameContains() { return AccountNameContains; } public CB_BatchTranLinesQuery setAccountNameContains(String value) { this.AccountNameContains = value; return this; } public String getAccountNameLike() { return AccountNameLike; } public CB_BatchTranLinesQuery setAccountNameLike(String value) { this.AccountNameLike = value; return this; } public ArrayList getAccountNameBetween() { return AccountNameBetween; } public CB_BatchTranLinesQuery setAccountNameBetween(ArrayList value) { this.AccountNameBetween = value; return this; } public ArrayList getAccountNameIn() { return AccountNameIn; } public CB_BatchTranLinesQuery setAccountNameIn(ArrayList value) { this.AccountNameIn = value; return this; } public BigDecimal getAllocatedAmount() { return AllocatedAmount; } public CB_BatchTranLinesQuery setAllocatedAmount(BigDecimal value) { this.AllocatedAmount = value; return this; } public BigDecimal getAllocatedAmountGreaterThanOrEqualTo() { return AllocatedAmountGreaterThanOrEqualTo; } public CB_BatchTranLinesQuery setAllocatedAmountGreaterThanOrEqualTo(BigDecimal value) { this.AllocatedAmountGreaterThanOrEqualTo = value; return this; } public BigDecimal getAllocatedAmountGreaterThan() { return AllocatedAmountGreaterThan; } public CB_BatchTranLinesQuery setAllocatedAmountGreaterThan(BigDecimal value) { this.AllocatedAmountGreaterThan = value; return this; } public BigDecimal getAllocatedAmountLessThan() { return AllocatedAmountLessThan; } public CB_BatchTranLinesQuery setAllocatedAmountLessThan(BigDecimal value) { this.AllocatedAmountLessThan = value; return this; } public BigDecimal getAllocatedAmountLessThanOrEqualTo() { return AllocatedAmountLessThanOrEqualTo; } public CB_BatchTranLinesQuery setAllocatedAmountLessThanOrEqualTo(BigDecimal value) { this.AllocatedAmountLessThanOrEqualTo = value; return this; } public BigDecimal getAllocatedAmountNotEqualTo() { return AllocatedAmountNotEqualTo; } public CB_BatchTranLinesQuery setAllocatedAmountNotEqualTo(BigDecimal value) { this.AllocatedAmountNotEqualTo = value; return this; } public ArrayList getAllocatedAmountBetween() { return AllocatedAmountBetween; } public CB_BatchTranLinesQuery setAllocatedAmountBetween(ArrayList value) { this.AllocatedAmountBetween = value; return this; } public ArrayList getAllocatedAmountIn() { return AllocatedAmountIn; } public CB_BatchTranLinesQuery setAllocatedAmountIn(ArrayList value) { this.AllocatedAmountIn = value; return this; } public String getPaymentTypeID() { return PaymentTypeID; } public CB_BatchTranLinesQuery setPaymentTypeID(String value) { this.PaymentTypeID = value; return this; } public String getPaymentTypeIDStartsWith() { return PaymentTypeIDStartsWith; } public CB_BatchTranLinesQuery setPaymentTypeIDStartsWith(String value) { this.PaymentTypeIDStartsWith = value; return this; } public String getPaymentTypeIDEndsWith() { return PaymentTypeIDEndsWith; } public CB_BatchTranLinesQuery setPaymentTypeIDEndsWith(String value) { this.PaymentTypeIDEndsWith = value; return this; } public String getPaymentTypeIDContains() { return PaymentTypeIDContains; } public CB_BatchTranLinesQuery setPaymentTypeIDContains(String value) { this.PaymentTypeIDContains = value; return this; } public String getPaymentTypeIDLike() { return PaymentTypeIDLike; } public CB_BatchTranLinesQuery setPaymentTypeIDLike(String value) { this.PaymentTypeIDLike = value; return this; } public ArrayList getPaymentTypeIDBetween() { return PaymentTypeIDBetween; } public CB_BatchTranLinesQuery setPaymentTypeIDBetween(ArrayList value) { this.PaymentTypeIDBetween = value; return this; } public ArrayList getPaymentTypeIDIn() { return PaymentTypeIDIn; } public CB_BatchTranLinesQuery setPaymentTypeIDIn(ArrayList value) { this.PaymentTypeIDIn = value; return this; } public String getApproval() { return Approval; } public CB_BatchTranLinesQuery setApproval(String value) { this.Approval = value; return this; } public String getApprovalStartsWith() { return ApprovalStartsWith; } public CB_BatchTranLinesQuery setApprovalStartsWith(String value) { this.ApprovalStartsWith = value; return this; } public String getApprovalEndsWith() { return ApprovalEndsWith; } public CB_BatchTranLinesQuery setApprovalEndsWith(String value) { this.ApprovalEndsWith = value; return this; } public String getApprovalContains() { return ApprovalContains; } public CB_BatchTranLinesQuery setApprovalContains(String value) { this.ApprovalContains = value; return this; } public String getApprovalLike() { return ApprovalLike; } public CB_BatchTranLinesQuery setApprovalLike(String value) { this.ApprovalLike = value; return this; } public ArrayList getApprovalBetween() { return ApprovalBetween; } public CB_BatchTranLinesQuery setApprovalBetween(ArrayList value) { this.ApprovalBetween = value; return this; } public ArrayList getApprovalIn() { return ApprovalIn; } public CB_BatchTranLinesQuery setApprovalIn(ArrayList value) { this.ApprovalIn = value; return this; } public Boolean isUpdateDebtorBankDetails() { return UpdateDebtorBankDetails; } public CB_BatchTranLinesQuery setUpdateDebtorBankDetails(Boolean value) { this.UpdateDebtorBankDetails = value; return this; } public String getGstRateID() { return GSTRateID; } public CB_BatchTranLinesQuery setGstRateID(String value) { this.GSTRateID = value; return this; } public String getGstRateIDStartsWith() { return GSTRateIDStartsWith; } public CB_BatchTranLinesQuery setGstRateIDStartsWith(String value) { this.GSTRateIDStartsWith = value; return this; } public String getGstRateIDEndsWith() { return GSTRateIDEndsWith; } public CB_BatchTranLinesQuery setGstRateIDEndsWith(String value) { this.GSTRateIDEndsWith = value; return this; } public String getGstRateIDContains() { return GSTRateIDContains; } public CB_BatchTranLinesQuery setGstRateIDContains(String value) { this.GSTRateIDContains = value; return this; } public String getGstRateIDLike() { return GSTRateIDLike; } public CB_BatchTranLinesQuery setGstRateIDLike(String value) { this.GSTRateIDLike = value; return this; } public ArrayList getGstRateIDBetween() { return GSTRateIDBetween; } public CB_BatchTranLinesQuery setGstRateIDBetween(ArrayList value) { this.GSTRateIDBetween = value; return this; } public ArrayList getGstRateIDIn() { return GSTRateIDIn; } public CB_BatchTranLinesQuery setGstRateIDIn(ArrayList value) { this.GSTRateIDIn = value; return this; } public BigDecimal getGstRate() { return GSTRate; } public CB_BatchTranLinesQuery setGstRate(BigDecimal value) { this.GSTRate = value; return this; } public BigDecimal getGstRateGreaterThanOrEqualTo() { return GSTRateGreaterThanOrEqualTo; } public CB_BatchTranLinesQuery setGstRateGreaterThanOrEqualTo(BigDecimal value) { this.GSTRateGreaterThanOrEqualTo = value; return this; } public BigDecimal getGstRateGreaterThan() { return GSTRateGreaterThan; } public CB_BatchTranLinesQuery setGstRateGreaterThan(BigDecimal value) { this.GSTRateGreaterThan = value; return this; } public BigDecimal getGstRateLessThan() { return GSTRateLessThan; } public CB_BatchTranLinesQuery setGstRateLessThan(BigDecimal value) { this.GSTRateLessThan = value; return this; } public BigDecimal getGstRateLessThanOrEqualTo() { return GSTRateLessThanOrEqualTo; } public CB_BatchTranLinesQuery setGstRateLessThanOrEqualTo(BigDecimal value) { this.GSTRateLessThanOrEqualTo = value; return this; } public BigDecimal getGstRateNotEqualTo() { return GSTRateNotEqualTo; } public CB_BatchTranLinesQuery setGstRateNotEqualTo(BigDecimal value) { this.GSTRateNotEqualTo = value; return this; } public ArrayList getGstRateBetween() { return GSTRateBetween; } public CB_BatchTranLinesQuery setGstRateBetween(ArrayList value) { this.GSTRateBetween = value; return this; } public ArrayList getGstRateIn() { return GSTRateIn; } public CB_BatchTranLinesQuery setGstRateIn(ArrayList value) { this.GSTRateIn = value; return this; } public BigDecimal getGstAmount() { return GSTAmount; } public CB_BatchTranLinesQuery setGstAmount(BigDecimal value) { this.GSTAmount = value; return this; } public BigDecimal getGstAmountGreaterThanOrEqualTo() { return GSTAmountGreaterThanOrEqualTo; } public CB_BatchTranLinesQuery setGstAmountGreaterThanOrEqualTo(BigDecimal value) { this.GSTAmountGreaterThanOrEqualTo = value; return this; } public BigDecimal getGstAmountGreaterThan() { return GSTAmountGreaterThan; } public CB_BatchTranLinesQuery setGstAmountGreaterThan(BigDecimal value) { this.GSTAmountGreaterThan = value; return this; } public BigDecimal getGstAmountLessThan() { return GSTAmountLessThan; } public CB_BatchTranLinesQuery setGstAmountLessThan(BigDecimal value) { this.GSTAmountLessThan = value; return this; } public BigDecimal getGstAmountLessThanOrEqualTo() { return GSTAmountLessThanOrEqualTo; } public CB_BatchTranLinesQuery setGstAmountLessThanOrEqualTo(BigDecimal value) { this.GSTAmountLessThanOrEqualTo = value; return this; } public BigDecimal getGstAmountNotEqualTo() { return GSTAmountNotEqualTo; } public CB_BatchTranLinesQuery setGstAmountNotEqualTo(BigDecimal value) { this.GSTAmountNotEqualTo = value; return this; } public ArrayList getGstAmountBetween() { return GSTAmountBetween; } public CB_BatchTranLinesQuery setGstAmountBetween(ArrayList value) { this.GSTAmountBetween = value; return this; } public ArrayList getGstAmountIn() { return GSTAmountIn; } public CB_BatchTranLinesQuery setGstAmountIn(ArrayList value) { this.GSTAmountIn = value; return this; } public String getDiscountGSTRateID() { return DiscountGSTRateID; } public CB_BatchTranLinesQuery setDiscountGSTRateID(String value) { this.DiscountGSTRateID = value; return this; } public String getDiscountGSTRateIDStartsWith() { return DiscountGSTRateIDStartsWith; } public CB_BatchTranLinesQuery setDiscountGSTRateIDStartsWith(String value) { this.DiscountGSTRateIDStartsWith = value; return this; } public String getDiscountGSTRateIDEndsWith() { return DiscountGSTRateIDEndsWith; } public CB_BatchTranLinesQuery setDiscountGSTRateIDEndsWith(String value) { this.DiscountGSTRateIDEndsWith = value; return this; } public String getDiscountGSTRateIDContains() { return DiscountGSTRateIDContains; } public CB_BatchTranLinesQuery setDiscountGSTRateIDContains(String value) { this.DiscountGSTRateIDContains = value; return this; } public String getDiscountGSTRateIDLike() { return DiscountGSTRateIDLike; } public CB_BatchTranLinesQuery setDiscountGSTRateIDLike(String value) { this.DiscountGSTRateIDLike = value; return this; } public ArrayList getDiscountGSTRateIDBetween() { return DiscountGSTRateIDBetween; } public CB_BatchTranLinesQuery setDiscountGSTRateIDBetween(ArrayList value) { this.DiscountGSTRateIDBetween = value; return this; } public ArrayList getDiscountGSTRateIDIn() { return DiscountGSTRateIDIn; } public CB_BatchTranLinesQuery setDiscountGSTRateIDIn(ArrayList value) { this.DiscountGSTRateIDIn = value; return this; } public BigDecimal getDiscountGSTRate() { return DiscountGSTRate; } public CB_BatchTranLinesQuery setDiscountGSTRate(BigDecimal value) { this.DiscountGSTRate = value; return this; } public BigDecimal getDiscountGSTRateGreaterThanOrEqualTo() { return DiscountGSTRateGreaterThanOrEqualTo; } public CB_BatchTranLinesQuery setDiscountGSTRateGreaterThanOrEqualTo(BigDecimal value) { this.DiscountGSTRateGreaterThanOrEqualTo = value; return this; } public BigDecimal getDiscountGSTRateGreaterThan() { return DiscountGSTRateGreaterThan; } public CB_BatchTranLinesQuery setDiscountGSTRateGreaterThan(BigDecimal value) { this.DiscountGSTRateGreaterThan = value; return this; } public BigDecimal getDiscountGSTRateLessThan() { return DiscountGSTRateLessThan; } public CB_BatchTranLinesQuery setDiscountGSTRateLessThan(BigDecimal value) { this.DiscountGSTRateLessThan = value; return this; } public BigDecimal getDiscountGSTRateLessThanOrEqualTo() { return DiscountGSTRateLessThanOrEqualTo; } public CB_BatchTranLinesQuery setDiscountGSTRateLessThanOrEqualTo(BigDecimal value) { this.DiscountGSTRateLessThanOrEqualTo = value; return this; } public BigDecimal getDiscountGSTRateNotEqualTo() { return DiscountGSTRateNotEqualTo; } public CB_BatchTranLinesQuery setDiscountGSTRateNotEqualTo(BigDecimal value) { this.DiscountGSTRateNotEqualTo = value; return this; } public ArrayList getDiscountGSTRateBetween() { return DiscountGSTRateBetween; } public CB_BatchTranLinesQuery setDiscountGSTRateBetween(ArrayList value) { this.DiscountGSTRateBetween = value; return this; } public ArrayList getDiscountGSTRateIn() { return DiscountGSTRateIn; } public CB_BatchTranLinesQuery setDiscountGSTRateIn(ArrayList value) { this.DiscountGSTRateIn = value; return this; } public BigDecimal getDiscountGSTAmount() { return DiscountGSTAmount; } public CB_BatchTranLinesQuery setDiscountGSTAmount(BigDecimal value) { this.DiscountGSTAmount = value; return this; } public BigDecimal getDiscountGSTAmountGreaterThanOrEqualTo() { return DiscountGSTAmountGreaterThanOrEqualTo; } public CB_BatchTranLinesQuery setDiscountGSTAmountGreaterThanOrEqualTo(BigDecimal value) { this.DiscountGSTAmountGreaterThanOrEqualTo = value; return this; } public BigDecimal getDiscountGSTAmountGreaterThan() { return DiscountGSTAmountGreaterThan; } public CB_BatchTranLinesQuery setDiscountGSTAmountGreaterThan(BigDecimal value) { this.DiscountGSTAmountGreaterThan = value; return this; } public BigDecimal getDiscountGSTAmountLessThan() { return DiscountGSTAmountLessThan; } public CB_BatchTranLinesQuery setDiscountGSTAmountLessThan(BigDecimal value) { this.DiscountGSTAmountLessThan = value; return this; } public BigDecimal getDiscountGSTAmountLessThanOrEqualTo() { return DiscountGSTAmountLessThanOrEqualTo; } public CB_BatchTranLinesQuery setDiscountGSTAmountLessThanOrEqualTo(BigDecimal value) { this.DiscountGSTAmountLessThanOrEqualTo = value; return this; } public BigDecimal getDiscountGSTAmountNotEqualTo() { return DiscountGSTAmountNotEqualTo; } public CB_BatchTranLinesQuery setDiscountGSTAmountNotEqualTo(BigDecimal value) { this.DiscountGSTAmountNotEqualTo = value; return this; } public ArrayList getDiscountGSTAmountBetween() { return DiscountGSTAmountBetween; } public CB_BatchTranLinesQuery setDiscountGSTAmountBetween(ArrayList value) { this.DiscountGSTAmountBetween = value; return this; } public ArrayList getDiscountGSTAmountIn() { return DiscountGSTAmountIn; } public CB_BatchTranLinesQuery setDiscountGSTAmountIn(ArrayList value) { this.DiscountGSTAmountIn = value; return this; } public String getJobNo() { return JobNo; } public CB_BatchTranLinesQuery setJobNo(String value) { this.JobNo = value; return this; } public String getJobNoStartsWith() { return JobNoStartsWith; } public CB_BatchTranLinesQuery setJobNoStartsWith(String value) { this.JobNoStartsWith = value; return this; } public String getJobNoEndsWith() { return JobNoEndsWith; } public CB_BatchTranLinesQuery setJobNoEndsWith(String value) { this.JobNoEndsWith = value; return this; } public String getJobNoContains() { return JobNoContains; } public CB_BatchTranLinesQuery setJobNoContains(String value) { this.JobNoContains = value; return this; } public String getJobNoLike() { return JobNoLike; } public CB_BatchTranLinesQuery setJobNoLike(String value) { this.JobNoLike = value; return this; } public ArrayList getJobNoBetween() { return JobNoBetween; } public CB_BatchTranLinesQuery setJobNoBetween(ArrayList value) { this.JobNoBetween = value; return this; } public ArrayList getJobNoIn() { return JobNoIn; } public CB_BatchTranLinesQuery setJobNoIn(ArrayList value) { this.JobNoIn = value; return this; } public BigDecimal getJobChargeAmount() { return JobChargeAmount; } public CB_BatchTranLinesQuery setJobChargeAmount(BigDecimal value) { this.JobChargeAmount = value; return this; } public BigDecimal getJobChargeAmountGreaterThanOrEqualTo() { return JobChargeAmountGreaterThanOrEqualTo; } public CB_BatchTranLinesQuery setJobChargeAmountGreaterThanOrEqualTo(BigDecimal value) { this.JobChargeAmountGreaterThanOrEqualTo = value; return this; } public BigDecimal getJobChargeAmountGreaterThan() { return JobChargeAmountGreaterThan; } public CB_BatchTranLinesQuery setJobChargeAmountGreaterThan(BigDecimal value) { this.JobChargeAmountGreaterThan = value; return this; } public BigDecimal getJobChargeAmountLessThan() { return JobChargeAmountLessThan; } public CB_BatchTranLinesQuery setJobChargeAmountLessThan(BigDecimal value) { this.JobChargeAmountLessThan = value; return this; } public BigDecimal getJobChargeAmountLessThanOrEqualTo() { return JobChargeAmountLessThanOrEqualTo; } public CB_BatchTranLinesQuery setJobChargeAmountLessThanOrEqualTo(BigDecimal value) { this.JobChargeAmountLessThanOrEqualTo = value; return this; } public BigDecimal getJobChargeAmountNotEqualTo() { return JobChargeAmountNotEqualTo; } public CB_BatchTranLinesQuery setJobChargeAmountNotEqualTo(BigDecimal value) { this.JobChargeAmountNotEqualTo = value; return this; } public ArrayList getJobChargeAmountBetween() { return JobChargeAmountBetween; } public CB_BatchTranLinesQuery setJobChargeAmountBetween(ArrayList value) { this.JobChargeAmountBetween = value; return this; } public ArrayList getJobChargeAmountIn() { return JobChargeAmountIn; } public CB_BatchTranLinesQuery setJobChargeAmountIn(ArrayList value) { this.JobChargeAmountIn = value; return this; } public String getFxCurrencyID() { return FXCurrencyID; } public CB_BatchTranLinesQuery setFxCurrencyID(String value) { this.FXCurrencyID = value; return this; } public String getFxCurrencyIDStartsWith() { return FXCurrencyIDStartsWith; } public CB_BatchTranLinesQuery setFxCurrencyIDStartsWith(String value) { this.FXCurrencyIDStartsWith = value; return this; } public String getFxCurrencyIDEndsWith() { return FXCurrencyIDEndsWith; } public CB_BatchTranLinesQuery setFxCurrencyIDEndsWith(String value) { this.FXCurrencyIDEndsWith = value; return this; } public String getFxCurrencyIDContains() { return FXCurrencyIDContains; } public CB_BatchTranLinesQuery setFxCurrencyIDContains(String value) { this.FXCurrencyIDContains = value; return this; } public String getFxCurrencyIDLike() { return FXCurrencyIDLike; } public CB_BatchTranLinesQuery setFxCurrencyIDLike(String value) { this.FXCurrencyIDLike = value; return this; } public ArrayList getFxCurrencyIDBetween() { return FXCurrencyIDBetween; } public CB_BatchTranLinesQuery setFxCurrencyIDBetween(ArrayList value) { this.FXCurrencyIDBetween = value; return this; } public ArrayList getFxCurrencyIDIn() { return FXCurrencyIDIn; } public CB_BatchTranLinesQuery setFxCurrencyIDIn(ArrayList value) { this.FXCurrencyIDIn = value; return this; } public Short getFxDecimalPlaces() { return FXDecimalPlaces; } public CB_BatchTranLinesQuery setFxDecimalPlaces(Short value) { this.FXDecimalPlaces = value; return this; } public Short getFxDecimalPlacesGreaterThanOrEqualTo() { return FXDecimalPlacesGreaterThanOrEqualTo; } public CB_BatchTranLinesQuery setFxDecimalPlacesGreaterThanOrEqualTo(Short value) { this.FXDecimalPlacesGreaterThanOrEqualTo = value; return this; } public Short getFxDecimalPlacesGreaterThan() { return FXDecimalPlacesGreaterThan; } public CB_BatchTranLinesQuery setFxDecimalPlacesGreaterThan(Short value) { this.FXDecimalPlacesGreaterThan = value; return this; } public Short getFxDecimalPlacesLessThan() { return FXDecimalPlacesLessThan; } public CB_BatchTranLinesQuery setFxDecimalPlacesLessThan(Short value) { this.FXDecimalPlacesLessThan = value; return this; } public Short getFxDecimalPlacesLessThanOrEqualTo() { return FXDecimalPlacesLessThanOrEqualTo; } public CB_BatchTranLinesQuery setFxDecimalPlacesLessThanOrEqualTo(Short value) { this.FXDecimalPlacesLessThanOrEqualTo = value; return this; } public Short getFxDecimalPlacesNotEqualTo() { return FXDecimalPlacesNotEqualTo; } public CB_BatchTranLinesQuery setFxDecimalPlacesNotEqualTo(Short value) { this.FXDecimalPlacesNotEqualTo = value; return this; } public ArrayList getFxDecimalPlacesBetween() { return FXDecimalPlacesBetween; } public CB_BatchTranLinesQuery setFxDecimalPlacesBetween(ArrayList value) { this.FXDecimalPlacesBetween = value; return this; } public ArrayList getFxDecimalPlacesIn() { return FXDecimalPlacesIn; } public CB_BatchTranLinesQuery setFxDecimalPlacesIn(ArrayList value) { this.FXDecimalPlacesIn = value; return this; } public Short getAudDecimalPlaces() { return AUDDecimalPlaces; } public CB_BatchTranLinesQuery setAudDecimalPlaces(Short value) { this.AUDDecimalPlaces = value; return this; } public Short getAudDecimalPlacesGreaterThanOrEqualTo() { return AUDDecimalPlacesGreaterThanOrEqualTo; } public CB_BatchTranLinesQuery setAudDecimalPlacesGreaterThanOrEqualTo(Short value) { this.AUDDecimalPlacesGreaterThanOrEqualTo = value; return this; } public Short getAudDecimalPlacesGreaterThan() { return AUDDecimalPlacesGreaterThan; } public CB_BatchTranLinesQuery setAudDecimalPlacesGreaterThan(Short value) { this.AUDDecimalPlacesGreaterThan = value; return this; } public Short getAudDecimalPlacesLessThan() { return AUDDecimalPlacesLessThan; } public CB_BatchTranLinesQuery setAudDecimalPlacesLessThan(Short value) { this.AUDDecimalPlacesLessThan = value; return this; } public Short getAudDecimalPlacesLessThanOrEqualTo() { return AUDDecimalPlacesLessThanOrEqualTo; } public CB_BatchTranLinesQuery setAudDecimalPlacesLessThanOrEqualTo(Short value) { this.AUDDecimalPlacesLessThanOrEqualTo = value; return this; } public Short getAudDecimalPlacesNotEqualTo() { return AUDDecimalPlacesNotEqualTo; } public CB_BatchTranLinesQuery setAudDecimalPlacesNotEqualTo(Short value) { this.AUDDecimalPlacesNotEqualTo = value; return this; } public ArrayList getAudDecimalPlacesBetween() { return AUDDecimalPlacesBetween; } public CB_BatchTranLinesQuery setAudDecimalPlacesBetween(ArrayList value) { this.AUDDecimalPlacesBetween = value; return this; } public ArrayList getAudDecimalPlacesIn() { return AUDDecimalPlacesIn; } public CB_BatchTranLinesQuery setAudDecimalPlacesIn(ArrayList value) { this.AUDDecimalPlacesIn = value; return this; } public Date getDueDate() { return DueDate; } public CB_BatchTranLinesQuery setDueDate(Date value) { this.DueDate = value; return this; } public Date getDueDateGreaterThanOrEqualTo() { return DueDateGreaterThanOrEqualTo; } public CB_BatchTranLinesQuery setDueDateGreaterThanOrEqualTo(Date value) { this.DueDateGreaterThanOrEqualTo = value; return this; } public Date getDueDateGreaterThan() { return DueDateGreaterThan; } public CB_BatchTranLinesQuery setDueDateGreaterThan(Date value) { this.DueDateGreaterThan = value; return this; } public Date getDueDateLessThan() { return DueDateLessThan; } public CB_BatchTranLinesQuery setDueDateLessThan(Date value) { this.DueDateLessThan = value; return this; } public Date getDueDateLessThanOrEqualTo() { return DueDateLessThanOrEqualTo; } public CB_BatchTranLinesQuery setDueDateLessThanOrEqualTo(Date value) { this.DueDateLessThanOrEqualTo = value; return this; } public Date getDueDateNotEqualTo() { return DueDateNotEqualTo; } public CB_BatchTranLinesQuery setDueDateNotEqualTo(Date value) { this.DueDateNotEqualTo = value; return this; } public ArrayList getDueDateBetween() { return DueDateBetween; } public CB_BatchTranLinesQuery setDueDateBetween(ArrayList value) { this.DueDateBetween = value; return this; } public ArrayList getDueDateIn() { return DueDateIn; } public CB_BatchTranLinesQuery setDueDateIn(ArrayList value) { this.DueDateIn = value; return this; } public BigDecimal getSupplierAllocatedAmount() { return SupplierAllocatedAmount; } public CB_BatchTranLinesQuery setSupplierAllocatedAmount(BigDecimal value) { this.SupplierAllocatedAmount = value; return this; } public BigDecimal getSupplierAllocatedAmountGreaterThanOrEqualTo() { return SupplierAllocatedAmountGreaterThanOrEqualTo; } public CB_BatchTranLinesQuery setSupplierAllocatedAmountGreaterThanOrEqualTo(BigDecimal value) { this.SupplierAllocatedAmountGreaterThanOrEqualTo = value; return this; } public BigDecimal getSupplierAllocatedAmountGreaterThan() { return SupplierAllocatedAmountGreaterThan; } public CB_BatchTranLinesQuery setSupplierAllocatedAmountGreaterThan(BigDecimal value) { this.SupplierAllocatedAmountGreaterThan = value; return this; } public BigDecimal getSupplierAllocatedAmountLessThan() { return SupplierAllocatedAmountLessThan; } public CB_BatchTranLinesQuery setSupplierAllocatedAmountLessThan(BigDecimal value) { this.SupplierAllocatedAmountLessThan = value; return this; } public BigDecimal getSupplierAllocatedAmountLessThanOrEqualTo() { return SupplierAllocatedAmountLessThanOrEqualTo; } public CB_BatchTranLinesQuery setSupplierAllocatedAmountLessThanOrEqualTo(BigDecimal value) { this.SupplierAllocatedAmountLessThanOrEqualTo = value; return this; } public BigDecimal getSupplierAllocatedAmountNotEqualTo() { return SupplierAllocatedAmountNotEqualTo; } public CB_BatchTranLinesQuery setSupplierAllocatedAmountNotEqualTo(BigDecimal value) { this.SupplierAllocatedAmountNotEqualTo = value; return this; } public ArrayList getSupplierAllocatedAmountBetween() { return SupplierAllocatedAmountBetween; } public CB_BatchTranLinesQuery setSupplierAllocatedAmountBetween(ArrayList value) { this.SupplierAllocatedAmountBetween = value; return this; } public ArrayList getSupplierAllocatedAmountIn() { return SupplierAllocatedAmountIn; } public CB_BatchTranLinesQuery setSupplierAllocatedAmountIn(ArrayList value) { this.SupplierAllocatedAmountIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class CB_BatchTranLinesAllocsQuery extends QueryDb implements IReturn> { public String CBBatchTranLineAllocID = null; public String CBBatchTranLineAllocIDStartsWith = null; public String CBBatchTranLineAllocIDEndsWith = null; public String CBBatchTranLineAllocIDContains = null; public String CBBatchTranLineAllocIDLike = null; public ArrayList CBBatchTranLineAllocIDBetween = null; public ArrayList CBBatchTranLineAllocIDIn = null; public String CBBatchTranLineID = null; public String CBBatchTranLineIDStartsWith = null; public String CBBatchTranLineIDEndsWith = null; public String CBBatchTranLineIDContains = null; public String CBBatchTranLineIDLike = null; public ArrayList CBBatchTranLineIDBetween = null; public ArrayList CBBatchTranLineIDIn = null; public String AllocatedTransID = null; public String AllocatedTransIDStartsWith = null; public String AllocatedTransIDEndsWith = null; public String AllocatedTransIDContains = null; public String AllocatedTransIDLike = null; public ArrayList AllocatedTransIDBetween = null; public ArrayList AllocatedTransIDIn = null; public BigDecimal AllocatedAmount = null; public BigDecimal AllocatedAmountGreaterThanOrEqualTo = null; public BigDecimal AllocatedAmountGreaterThan = null; public BigDecimal AllocatedAmountLessThan = null; public BigDecimal AllocatedAmountLessThanOrEqualTo = null; public BigDecimal AllocatedAmountNotEqualTo = null; public ArrayList AllocatedAmountBetween = null; public ArrayList AllocatedAmountIn = null; public Short AllocType = null; public Short AllocTypeGreaterThanOrEqualTo = null; public Short AllocTypeGreaterThan = null; public Short AllocTypeLessThan = null; public Short AllocTypeLessThanOrEqualTo = null; public Short AllocTypeNotEqualTo = null; public ArrayList AllocTypeBetween = null; public ArrayList AllocTypeIn = null; public String CBBatchID = null; public String CBBatchIDStartsWith = null; public String CBBatchIDEndsWith = null; public String CBBatchIDContains = null; public String CBBatchIDLike = null; public ArrayList CBBatchIDBetween = null; public ArrayList CBBatchIDIn = null; public String getCbBatchTranLineAllocID() { return CBBatchTranLineAllocID; } public CB_BatchTranLinesAllocsQuery setCbBatchTranLineAllocID(String value) { this.CBBatchTranLineAllocID = value; return this; } public String getCbBatchTranLineAllocIDStartsWith() { return CBBatchTranLineAllocIDStartsWith; } public CB_BatchTranLinesAllocsQuery setCbBatchTranLineAllocIDStartsWith(String value) { this.CBBatchTranLineAllocIDStartsWith = value; return this; } public String getCbBatchTranLineAllocIDEndsWith() { return CBBatchTranLineAllocIDEndsWith; } public CB_BatchTranLinesAllocsQuery setCbBatchTranLineAllocIDEndsWith(String value) { this.CBBatchTranLineAllocIDEndsWith = value; return this; } public String getCbBatchTranLineAllocIDContains() { return CBBatchTranLineAllocIDContains; } public CB_BatchTranLinesAllocsQuery setCbBatchTranLineAllocIDContains(String value) { this.CBBatchTranLineAllocIDContains = value; return this; } public String getCbBatchTranLineAllocIDLike() { return CBBatchTranLineAllocIDLike; } public CB_BatchTranLinesAllocsQuery setCbBatchTranLineAllocIDLike(String value) { this.CBBatchTranLineAllocIDLike = value; return this; } public ArrayList getCbBatchTranLineAllocIDBetween() { return CBBatchTranLineAllocIDBetween; } public CB_BatchTranLinesAllocsQuery setCbBatchTranLineAllocIDBetween(ArrayList value) { this.CBBatchTranLineAllocIDBetween = value; return this; } public ArrayList getCbBatchTranLineAllocIDIn() { return CBBatchTranLineAllocIDIn; } public CB_BatchTranLinesAllocsQuery setCbBatchTranLineAllocIDIn(ArrayList value) { this.CBBatchTranLineAllocIDIn = value; return this; } public String getCbBatchTranLineID() { return CBBatchTranLineID; } public CB_BatchTranLinesAllocsQuery setCbBatchTranLineID(String value) { this.CBBatchTranLineID = value; return this; } public String getCbBatchTranLineIDStartsWith() { return CBBatchTranLineIDStartsWith; } public CB_BatchTranLinesAllocsQuery setCbBatchTranLineIDStartsWith(String value) { this.CBBatchTranLineIDStartsWith = value; return this; } public String getCbBatchTranLineIDEndsWith() { return CBBatchTranLineIDEndsWith; } public CB_BatchTranLinesAllocsQuery setCbBatchTranLineIDEndsWith(String value) { this.CBBatchTranLineIDEndsWith = value; return this; } public String getCbBatchTranLineIDContains() { return CBBatchTranLineIDContains; } public CB_BatchTranLinesAllocsQuery setCbBatchTranLineIDContains(String value) { this.CBBatchTranLineIDContains = value; return this; } public String getCbBatchTranLineIDLike() { return CBBatchTranLineIDLike; } public CB_BatchTranLinesAllocsQuery setCbBatchTranLineIDLike(String value) { this.CBBatchTranLineIDLike = value; return this; } public ArrayList getCbBatchTranLineIDBetween() { return CBBatchTranLineIDBetween; } public CB_BatchTranLinesAllocsQuery setCbBatchTranLineIDBetween(ArrayList value) { this.CBBatchTranLineIDBetween = value; return this; } public ArrayList getCbBatchTranLineIDIn() { return CBBatchTranLineIDIn; } public CB_BatchTranLinesAllocsQuery setCbBatchTranLineIDIn(ArrayList value) { this.CBBatchTranLineIDIn = value; return this; } public String getAllocatedTransID() { return AllocatedTransID; } public CB_BatchTranLinesAllocsQuery setAllocatedTransID(String value) { this.AllocatedTransID = value; return this; } public String getAllocatedTransIDStartsWith() { return AllocatedTransIDStartsWith; } public CB_BatchTranLinesAllocsQuery setAllocatedTransIDStartsWith(String value) { this.AllocatedTransIDStartsWith = value; return this; } public String getAllocatedTransIDEndsWith() { return AllocatedTransIDEndsWith; } public CB_BatchTranLinesAllocsQuery setAllocatedTransIDEndsWith(String value) { this.AllocatedTransIDEndsWith = value; return this; } public String getAllocatedTransIDContains() { return AllocatedTransIDContains; } public CB_BatchTranLinesAllocsQuery setAllocatedTransIDContains(String value) { this.AllocatedTransIDContains = value; return this; } public String getAllocatedTransIDLike() { return AllocatedTransIDLike; } public CB_BatchTranLinesAllocsQuery setAllocatedTransIDLike(String value) { this.AllocatedTransIDLike = value; return this; } public ArrayList getAllocatedTransIDBetween() { return AllocatedTransIDBetween; } public CB_BatchTranLinesAllocsQuery setAllocatedTransIDBetween(ArrayList value) { this.AllocatedTransIDBetween = value; return this; } public ArrayList getAllocatedTransIDIn() { return AllocatedTransIDIn; } public CB_BatchTranLinesAllocsQuery setAllocatedTransIDIn(ArrayList value) { this.AllocatedTransIDIn = value; return this; } public BigDecimal getAllocatedAmount() { return AllocatedAmount; } public CB_BatchTranLinesAllocsQuery setAllocatedAmount(BigDecimal value) { this.AllocatedAmount = value; return this; } public BigDecimal getAllocatedAmountGreaterThanOrEqualTo() { return AllocatedAmountGreaterThanOrEqualTo; } public CB_BatchTranLinesAllocsQuery setAllocatedAmountGreaterThanOrEqualTo(BigDecimal value) { this.AllocatedAmountGreaterThanOrEqualTo = value; return this; } public BigDecimal getAllocatedAmountGreaterThan() { return AllocatedAmountGreaterThan; } public CB_BatchTranLinesAllocsQuery setAllocatedAmountGreaterThan(BigDecimal value) { this.AllocatedAmountGreaterThan = value; return this; } public BigDecimal getAllocatedAmountLessThan() { return AllocatedAmountLessThan; } public CB_BatchTranLinesAllocsQuery setAllocatedAmountLessThan(BigDecimal value) { this.AllocatedAmountLessThan = value; return this; } public BigDecimal getAllocatedAmountLessThanOrEqualTo() { return AllocatedAmountLessThanOrEqualTo; } public CB_BatchTranLinesAllocsQuery setAllocatedAmountLessThanOrEqualTo(BigDecimal value) { this.AllocatedAmountLessThanOrEqualTo = value; return this; } public BigDecimal getAllocatedAmountNotEqualTo() { return AllocatedAmountNotEqualTo; } public CB_BatchTranLinesAllocsQuery setAllocatedAmountNotEqualTo(BigDecimal value) { this.AllocatedAmountNotEqualTo = value; return this; } public ArrayList getAllocatedAmountBetween() { return AllocatedAmountBetween; } public CB_BatchTranLinesAllocsQuery setAllocatedAmountBetween(ArrayList value) { this.AllocatedAmountBetween = value; return this; } public ArrayList getAllocatedAmountIn() { return AllocatedAmountIn; } public CB_BatchTranLinesAllocsQuery setAllocatedAmountIn(ArrayList value) { this.AllocatedAmountIn = value; return this; } public Short getAllocType() { return AllocType; } public CB_BatchTranLinesAllocsQuery setAllocType(Short value) { this.AllocType = value; return this; } public Short getAllocTypeGreaterThanOrEqualTo() { return AllocTypeGreaterThanOrEqualTo; } public CB_BatchTranLinesAllocsQuery setAllocTypeGreaterThanOrEqualTo(Short value) { this.AllocTypeGreaterThanOrEqualTo = value; return this; } public Short getAllocTypeGreaterThan() { return AllocTypeGreaterThan; } public CB_BatchTranLinesAllocsQuery setAllocTypeGreaterThan(Short value) { this.AllocTypeGreaterThan = value; return this; } public Short getAllocTypeLessThan() { return AllocTypeLessThan; } public CB_BatchTranLinesAllocsQuery setAllocTypeLessThan(Short value) { this.AllocTypeLessThan = value; return this; } public Short getAllocTypeLessThanOrEqualTo() { return AllocTypeLessThanOrEqualTo; } public CB_BatchTranLinesAllocsQuery setAllocTypeLessThanOrEqualTo(Short value) { this.AllocTypeLessThanOrEqualTo = value; return this; } public Short getAllocTypeNotEqualTo() { return AllocTypeNotEqualTo; } public CB_BatchTranLinesAllocsQuery setAllocTypeNotEqualTo(Short value) { this.AllocTypeNotEqualTo = value; return this; } public ArrayList getAllocTypeBetween() { return AllocTypeBetween; } public CB_BatchTranLinesAllocsQuery setAllocTypeBetween(ArrayList value) { this.AllocTypeBetween = value; return this; } public ArrayList getAllocTypeIn() { return AllocTypeIn; } public CB_BatchTranLinesAllocsQuery setAllocTypeIn(ArrayList value) { this.AllocTypeIn = value; return this; } public String getCbBatchID() { return CBBatchID; } public CB_BatchTranLinesAllocsQuery setCbBatchID(String value) { this.CBBatchID = value; return this; } public String getCbBatchIDStartsWith() { return CBBatchIDStartsWith; } public CB_BatchTranLinesAllocsQuery setCbBatchIDStartsWith(String value) { this.CBBatchIDStartsWith = value; return this; } public String getCbBatchIDEndsWith() { return CBBatchIDEndsWith; } public CB_BatchTranLinesAllocsQuery setCbBatchIDEndsWith(String value) { this.CBBatchIDEndsWith = value; return this; } public String getCbBatchIDContains() { return CBBatchIDContains; } public CB_BatchTranLinesAllocsQuery setCbBatchIDContains(String value) { this.CBBatchIDContains = value; return this; } public String getCbBatchIDLike() { return CBBatchIDLike; } public CB_BatchTranLinesAllocsQuery setCbBatchIDLike(String value) { this.CBBatchIDLike = value; return this; } public ArrayList getCbBatchIDBetween() { return CBBatchIDBetween; } public CB_BatchTranLinesAllocsQuery setCbBatchIDBetween(ArrayList value) { this.CBBatchIDBetween = value; return this; } public ArrayList getCbBatchIDIn() { return CBBatchIDIn; } public CB_BatchTranLinesAllocsQuery setCbBatchIDIn(ArrayList value) { this.CBBatchIDIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class CB_BatchTransQuery extends QueryDb implements IReturn> { public String CBBatchID = null; public String CBBatchIDStartsWith = null; public String CBBatchIDEndsWith = null; public String CBBatchIDContains = null; public String CBBatchIDLike = null; public ArrayList CBBatchIDBetween = null; public ArrayList CBBatchIDIn = null; public Date LastSavedDateTime = null; public Date LastSavedDateTimeGreaterThanOrEqualTo = null; public Date LastSavedDateTimeGreaterThan = null; public Date LastSavedDateTimeLessThan = null; public Date LastSavedDateTimeLessThanOrEqualTo = null; public Date LastSavedDateTimeNotEqualTo = null; public ArrayList LastSavedDateTimeBetween = null; public ArrayList LastSavedDateTimeIn = null; public String StaffID = null; public String StaffIDStartsWith = null; public String StaffIDEndsWith = null; public String StaffIDContains = null; public String StaffIDLike = null; public ArrayList StaffIDBetween = null; public ArrayList StaffIDIn = null; public Date BatchDate = null; public Date BatchDateGreaterThanOrEqualTo = null; public Date BatchDateGreaterThan = null; public Date BatchDateLessThan = null; public Date BatchDateLessThanOrEqualTo = null; public Date BatchDateNotEqualTo = null; public ArrayList BatchDateBetween = null; public ArrayList BatchDateIn = null; public String BatchNo = null; public String BatchNoStartsWith = null; public String BatchNoEndsWith = null; public String BatchNoContains = null; public String BatchNoLike = null; public ArrayList BatchNoBetween = null; public ArrayList BatchNoIn = null; public Boolean Activated = null; public String Description = null; public String DescriptionStartsWith = null; public String DescriptionEndsWith = null; public String DescriptionContains = null; public String DescriptionLike = null; public ArrayList DescriptionBetween = null; public ArrayList DescriptionIn = null; public Short ReceiptPayment = null; public Short ReceiptPaymentGreaterThanOrEqualTo = null; public Short ReceiptPaymentGreaterThan = null; public Short ReceiptPaymentLessThan = null; public Short ReceiptPaymentLessThanOrEqualTo = null; public Short ReceiptPaymentNotEqualTo = null; public ArrayList ReceiptPaymentBetween = null; public ArrayList ReceiptPaymentIn = null; public String BankLedgerID = null; public String BankLedgerIDStartsWith = null; public String BankLedgerIDEndsWith = null; public String BankLedgerIDContains = null; public String BankLedgerIDLike = null; public ArrayList BankLedgerIDBetween = null; public ArrayList BankLedgerIDIn = null; public Boolean GroupJournals = null; public String getCbBatchID() { return CBBatchID; } public CB_BatchTransQuery setCbBatchID(String value) { this.CBBatchID = value; return this; } public String getCbBatchIDStartsWith() { return CBBatchIDStartsWith; } public CB_BatchTransQuery setCbBatchIDStartsWith(String value) { this.CBBatchIDStartsWith = value; return this; } public String getCbBatchIDEndsWith() { return CBBatchIDEndsWith; } public CB_BatchTransQuery setCbBatchIDEndsWith(String value) { this.CBBatchIDEndsWith = value; return this; } public String getCbBatchIDContains() { return CBBatchIDContains; } public CB_BatchTransQuery setCbBatchIDContains(String value) { this.CBBatchIDContains = value; return this; } public String getCbBatchIDLike() { return CBBatchIDLike; } public CB_BatchTransQuery setCbBatchIDLike(String value) { this.CBBatchIDLike = value; return this; } public ArrayList getCbBatchIDBetween() { return CBBatchIDBetween; } public CB_BatchTransQuery setCbBatchIDBetween(ArrayList value) { this.CBBatchIDBetween = value; return this; } public ArrayList getCbBatchIDIn() { return CBBatchIDIn; } public CB_BatchTransQuery setCbBatchIDIn(ArrayList value) { this.CBBatchIDIn = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public CB_BatchTransQuery setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getLastSavedDateTimeGreaterThanOrEqualTo() { return LastSavedDateTimeGreaterThanOrEqualTo; } public CB_BatchTransQuery setLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.LastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeGreaterThan() { return LastSavedDateTimeGreaterThan; } public CB_BatchTransQuery setLastSavedDateTimeGreaterThan(Date value) { this.LastSavedDateTimeGreaterThan = value; return this; } public Date getLastSavedDateTimeLessThan() { return LastSavedDateTimeLessThan; } public CB_BatchTransQuery setLastSavedDateTimeLessThan(Date value) { this.LastSavedDateTimeLessThan = value; return this; } public Date getLastSavedDateTimeLessThanOrEqualTo() { return LastSavedDateTimeLessThanOrEqualTo; } public CB_BatchTransQuery setLastSavedDateTimeLessThanOrEqualTo(Date value) { this.LastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeNotEqualTo() { return LastSavedDateTimeNotEqualTo; } public CB_BatchTransQuery setLastSavedDateTimeNotEqualTo(Date value) { this.LastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getLastSavedDateTimeBetween() { return LastSavedDateTimeBetween; } public CB_BatchTransQuery setLastSavedDateTimeBetween(ArrayList value) { this.LastSavedDateTimeBetween = value; return this; } public ArrayList getLastSavedDateTimeIn() { return LastSavedDateTimeIn; } public CB_BatchTransQuery setLastSavedDateTimeIn(ArrayList value) { this.LastSavedDateTimeIn = value; return this; } public String getStaffID() { return StaffID; } public CB_BatchTransQuery setStaffID(String value) { this.StaffID = value; return this; } public String getStaffIDStartsWith() { return StaffIDStartsWith; } public CB_BatchTransQuery setStaffIDStartsWith(String value) { this.StaffIDStartsWith = value; return this; } public String getStaffIDEndsWith() { return StaffIDEndsWith; } public CB_BatchTransQuery setStaffIDEndsWith(String value) { this.StaffIDEndsWith = value; return this; } public String getStaffIDContains() { return StaffIDContains; } public CB_BatchTransQuery setStaffIDContains(String value) { this.StaffIDContains = value; return this; } public String getStaffIDLike() { return StaffIDLike; } public CB_BatchTransQuery setStaffIDLike(String value) { this.StaffIDLike = value; return this; } public ArrayList getStaffIDBetween() { return StaffIDBetween; } public CB_BatchTransQuery setStaffIDBetween(ArrayList value) { this.StaffIDBetween = value; return this; } public ArrayList getStaffIDIn() { return StaffIDIn; } public CB_BatchTransQuery setStaffIDIn(ArrayList value) { this.StaffIDIn = value; return this; } public Date getBatchDate() { return BatchDate; } public CB_BatchTransQuery setBatchDate(Date value) { this.BatchDate = value; return this; } public Date getBatchDateGreaterThanOrEqualTo() { return BatchDateGreaterThanOrEqualTo; } public CB_BatchTransQuery setBatchDateGreaterThanOrEqualTo(Date value) { this.BatchDateGreaterThanOrEqualTo = value; return this; } public Date getBatchDateGreaterThan() { return BatchDateGreaterThan; } public CB_BatchTransQuery setBatchDateGreaterThan(Date value) { this.BatchDateGreaterThan = value; return this; } public Date getBatchDateLessThan() { return BatchDateLessThan; } public CB_BatchTransQuery setBatchDateLessThan(Date value) { this.BatchDateLessThan = value; return this; } public Date getBatchDateLessThanOrEqualTo() { return BatchDateLessThanOrEqualTo; } public CB_BatchTransQuery setBatchDateLessThanOrEqualTo(Date value) { this.BatchDateLessThanOrEqualTo = value; return this; } public Date getBatchDateNotEqualTo() { return BatchDateNotEqualTo; } public CB_BatchTransQuery setBatchDateNotEqualTo(Date value) { this.BatchDateNotEqualTo = value; return this; } public ArrayList getBatchDateBetween() { return BatchDateBetween; } public CB_BatchTransQuery setBatchDateBetween(ArrayList value) { this.BatchDateBetween = value; return this; } public ArrayList getBatchDateIn() { return BatchDateIn; } public CB_BatchTransQuery setBatchDateIn(ArrayList value) { this.BatchDateIn = value; return this; } public String getBatchNo() { return BatchNo; } public CB_BatchTransQuery setBatchNo(String value) { this.BatchNo = value; return this; } public String getBatchNoStartsWith() { return BatchNoStartsWith; } public CB_BatchTransQuery setBatchNoStartsWith(String value) { this.BatchNoStartsWith = value; return this; } public String getBatchNoEndsWith() { return BatchNoEndsWith; } public CB_BatchTransQuery setBatchNoEndsWith(String value) { this.BatchNoEndsWith = value; return this; } public String getBatchNoContains() { return BatchNoContains; } public CB_BatchTransQuery setBatchNoContains(String value) { this.BatchNoContains = value; return this; } public String getBatchNoLike() { return BatchNoLike; } public CB_BatchTransQuery setBatchNoLike(String value) { this.BatchNoLike = value; return this; } public ArrayList getBatchNoBetween() { return BatchNoBetween; } public CB_BatchTransQuery setBatchNoBetween(ArrayList value) { this.BatchNoBetween = value; return this; } public ArrayList getBatchNoIn() { return BatchNoIn; } public CB_BatchTransQuery setBatchNoIn(ArrayList value) { this.BatchNoIn = value; return this; } public Boolean isActivated() { return Activated; } public CB_BatchTransQuery setActivated(Boolean value) { this.Activated = value; return this; } public String getDescription() { return Description; } public CB_BatchTransQuery setDescription(String value) { this.Description = value; return this; } public String getDescriptionStartsWith() { return DescriptionStartsWith; } public CB_BatchTransQuery setDescriptionStartsWith(String value) { this.DescriptionStartsWith = value; return this; } public String getDescriptionEndsWith() { return DescriptionEndsWith; } public CB_BatchTransQuery setDescriptionEndsWith(String value) { this.DescriptionEndsWith = value; return this; } public String getDescriptionContains() { return DescriptionContains; } public CB_BatchTransQuery setDescriptionContains(String value) { this.DescriptionContains = value; return this; } public String getDescriptionLike() { return DescriptionLike; } public CB_BatchTransQuery setDescriptionLike(String value) { this.DescriptionLike = value; return this; } public ArrayList getDescriptionBetween() { return DescriptionBetween; } public CB_BatchTransQuery setDescriptionBetween(ArrayList value) { this.DescriptionBetween = value; return this; } public ArrayList getDescriptionIn() { return DescriptionIn; } public CB_BatchTransQuery setDescriptionIn(ArrayList value) { this.DescriptionIn = value; return this; } public Short getReceiptPayment() { return ReceiptPayment; } public CB_BatchTransQuery setReceiptPayment(Short value) { this.ReceiptPayment = value; return this; } public Short getReceiptPaymentGreaterThanOrEqualTo() { return ReceiptPaymentGreaterThanOrEqualTo; } public CB_BatchTransQuery setReceiptPaymentGreaterThanOrEqualTo(Short value) { this.ReceiptPaymentGreaterThanOrEqualTo = value; return this; } public Short getReceiptPaymentGreaterThan() { return ReceiptPaymentGreaterThan; } public CB_BatchTransQuery setReceiptPaymentGreaterThan(Short value) { this.ReceiptPaymentGreaterThan = value; return this; } public Short getReceiptPaymentLessThan() { return ReceiptPaymentLessThan; } public CB_BatchTransQuery setReceiptPaymentLessThan(Short value) { this.ReceiptPaymentLessThan = value; return this; } public Short getReceiptPaymentLessThanOrEqualTo() { return ReceiptPaymentLessThanOrEqualTo; } public CB_BatchTransQuery setReceiptPaymentLessThanOrEqualTo(Short value) { this.ReceiptPaymentLessThanOrEqualTo = value; return this; } public Short getReceiptPaymentNotEqualTo() { return ReceiptPaymentNotEqualTo; } public CB_BatchTransQuery setReceiptPaymentNotEqualTo(Short value) { this.ReceiptPaymentNotEqualTo = value; return this; } public ArrayList getReceiptPaymentBetween() { return ReceiptPaymentBetween; } public CB_BatchTransQuery setReceiptPaymentBetween(ArrayList value) { this.ReceiptPaymentBetween = value; return this; } public ArrayList getReceiptPaymentIn() { return ReceiptPaymentIn; } public CB_BatchTransQuery setReceiptPaymentIn(ArrayList value) { this.ReceiptPaymentIn = value; return this; } public String getBankLedgerID() { return BankLedgerID; } public CB_BatchTransQuery setBankLedgerID(String value) { this.BankLedgerID = value; return this; } public String getBankLedgerIDStartsWith() { return BankLedgerIDStartsWith; } public CB_BatchTransQuery setBankLedgerIDStartsWith(String value) { this.BankLedgerIDStartsWith = value; return this; } public String getBankLedgerIDEndsWith() { return BankLedgerIDEndsWith; } public CB_BatchTransQuery setBankLedgerIDEndsWith(String value) { this.BankLedgerIDEndsWith = value; return this; } public String getBankLedgerIDContains() { return BankLedgerIDContains; } public CB_BatchTransQuery setBankLedgerIDContains(String value) { this.BankLedgerIDContains = value; return this; } public String getBankLedgerIDLike() { return BankLedgerIDLike; } public CB_BatchTransQuery setBankLedgerIDLike(String value) { this.BankLedgerIDLike = value; return this; } public ArrayList getBankLedgerIDBetween() { return BankLedgerIDBetween; } public CB_BatchTransQuery setBankLedgerIDBetween(ArrayList value) { this.BankLedgerIDBetween = value; return this; } public ArrayList getBankLedgerIDIn() { return BankLedgerIDIn; } public CB_BatchTransQuery setBankLedgerIDIn(ArrayList value) { this.BankLedgerIDIn = value; return this; } public Boolean isGroupJournals() { return GroupJournals; } public CB_BatchTransQuery setGroupJournals(Boolean value) { this.GroupJournals = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class CB_CustomSettingQuery extends QueryDb implements IReturn> { public String SettingID = null; public String SettingIDStartsWith = null; public String SettingIDEndsWith = null; public String SettingIDContains = null; public String SettingIDLike = null; public ArrayList SettingIDBetween = null; public ArrayList SettingIDIn = null; public Date LastSavedDateTime = null; public Date LastSavedDateTimeGreaterThanOrEqualTo = null; public Date LastSavedDateTimeGreaterThan = null; public Date LastSavedDateTimeLessThan = null; public Date LastSavedDateTimeLessThanOrEqualTo = null; public Date LastSavedDateTimeNotEqualTo = null; public ArrayList LastSavedDateTimeBetween = null; public ArrayList LastSavedDateTimeIn = null; public String SettingDescription = null; public String SettingDescriptionStartsWith = null; public String SettingDescriptionEndsWith = null; public String SettingDescriptionContains = null; public String SettingDescriptionLike = null; public ArrayList SettingDescriptionBetween = null; public ArrayList SettingDescriptionIn = null; public String SettingName = null; public String SettingNameStartsWith = null; public String SettingNameEndsWith = null; public String SettingNameContains = null; public String SettingNameLike = null; public ArrayList SettingNameBetween = null; public ArrayList SettingNameIn = null; public BigDecimal DisplayOrder = null; public BigDecimal DisplayOrderGreaterThanOrEqualTo = null; public BigDecimal DisplayOrderGreaterThan = null; public BigDecimal DisplayOrderLessThan = null; public BigDecimal DisplayOrderLessThanOrEqualTo = null; public BigDecimal DisplayOrderNotEqualTo = null; public ArrayList DisplayOrderBetween = null; public ArrayList DisplayOrderIn = null; public Short CellType = null; public Short CellTypeGreaterThanOrEqualTo = null; public Short CellTypeGreaterThan = null; public Short CellTypeLessThan = null; public Short CellTypeLessThanOrEqualTo = null; public Short CellTypeNotEqualTo = null; public ArrayList CellTypeBetween = null; public ArrayList CellTypeIn = null; public String ScriptFormatCell = null; public String ScriptFormatCellStartsWith = null; public String ScriptFormatCellEndsWith = null; public String ScriptFormatCellContains = null; public String ScriptFormatCellLike = null; public ArrayList ScriptFormatCellBetween = null; public ArrayList ScriptFormatCellIn = null; public String ScriptButtonClicked = null; public String ScriptButtonClickedStartsWith = null; public String ScriptButtonClickedEndsWith = null; public String ScriptButtonClickedContains = null; public String ScriptButtonClickedLike = null; public ArrayList ScriptButtonClickedBetween = null; public ArrayList ScriptButtonClickedIn = null; public String ScriptReadData = null; public String ScriptReadDataStartsWith = null; public String ScriptReadDataEndsWith = null; public String ScriptReadDataContains = null; public String ScriptReadDataLike = null; public ArrayList ScriptReadDataBetween = null; public ArrayList ScriptReadDataIn = null; public UUID SY_Plugin_RecID = null; public ArrayList SY_Plugin_RecIDIn = null; public String getSettingID() { return SettingID; } public CB_CustomSettingQuery setSettingID(String value) { this.SettingID = value; return this; } public String getSettingIDStartsWith() { return SettingIDStartsWith; } public CB_CustomSettingQuery setSettingIDStartsWith(String value) { this.SettingIDStartsWith = value; return this; } public String getSettingIDEndsWith() { return SettingIDEndsWith; } public CB_CustomSettingQuery setSettingIDEndsWith(String value) { this.SettingIDEndsWith = value; return this; } public String getSettingIDContains() { return SettingIDContains; } public CB_CustomSettingQuery setSettingIDContains(String value) { this.SettingIDContains = value; return this; } public String getSettingIDLike() { return SettingIDLike; } public CB_CustomSettingQuery setSettingIDLike(String value) { this.SettingIDLike = value; return this; } public ArrayList getSettingIDBetween() { return SettingIDBetween; } public CB_CustomSettingQuery setSettingIDBetween(ArrayList value) { this.SettingIDBetween = value; return this; } public ArrayList getSettingIDIn() { return SettingIDIn; } public CB_CustomSettingQuery setSettingIDIn(ArrayList value) { this.SettingIDIn = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public CB_CustomSettingQuery setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getLastSavedDateTimeGreaterThanOrEqualTo() { return LastSavedDateTimeGreaterThanOrEqualTo; } public CB_CustomSettingQuery setLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.LastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeGreaterThan() { return LastSavedDateTimeGreaterThan; } public CB_CustomSettingQuery setLastSavedDateTimeGreaterThan(Date value) { this.LastSavedDateTimeGreaterThan = value; return this; } public Date getLastSavedDateTimeLessThan() { return LastSavedDateTimeLessThan; } public CB_CustomSettingQuery setLastSavedDateTimeLessThan(Date value) { this.LastSavedDateTimeLessThan = value; return this; } public Date getLastSavedDateTimeLessThanOrEqualTo() { return LastSavedDateTimeLessThanOrEqualTo; } public CB_CustomSettingQuery setLastSavedDateTimeLessThanOrEqualTo(Date value) { this.LastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeNotEqualTo() { return LastSavedDateTimeNotEqualTo; } public CB_CustomSettingQuery setLastSavedDateTimeNotEqualTo(Date value) { this.LastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getLastSavedDateTimeBetween() { return LastSavedDateTimeBetween; } public CB_CustomSettingQuery setLastSavedDateTimeBetween(ArrayList value) { this.LastSavedDateTimeBetween = value; return this; } public ArrayList getLastSavedDateTimeIn() { return LastSavedDateTimeIn; } public CB_CustomSettingQuery setLastSavedDateTimeIn(ArrayList value) { this.LastSavedDateTimeIn = value; return this; } public String getSettingDescription() { return SettingDescription; } public CB_CustomSettingQuery setSettingDescription(String value) { this.SettingDescription = value; return this; } public String getSettingDescriptionStartsWith() { return SettingDescriptionStartsWith; } public CB_CustomSettingQuery setSettingDescriptionStartsWith(String value) { this.SettingDescriptionStartsWith = value; return this; } public String getSettingDescriptionEndsWith() { return SettingDescriptionEndsWith; } public CB_CustomSettingQuery setSettingDescriptionEndsWith(String value) { this.SettingDescriptionEndsWith = value; return this; } public String getSettingDescriptionContains() { return SettingDescriptionContains; } public CB_CustomSettingQuery setSettingDescriptionContains(String value) { this.SettingDescriptionContains = value; return this; } public String getSettingDescriptionLike() { return SettingDescriptionLike; } public CB_CustomSettingQuery setSettingDescriptionLike(String value) { this.SettingDescriptionLike = value; return this; } public ArrayList getSettingDescriptionBetween() { return SettingDescriptionBetween; } public CB_CustomSettingQuery setSettingDescriptionBetween(ArrayList value) { this.SettingDescriptionBetween = value; return this; } public ArrayList getSettingDescriptionIn() { return SettingDescriptionIn; } public CB_CustomSettingQuery setSettingDescriptionIn(ArrayList value) { this.SettingDescriptionIn = value; return this; } public String getSettingName() { return SettingName; } public CB_CustomSettingQuery setSettingName(String value) { this.SettingName = value; return this; } public String getSettingNameStartsWith() { return SettingNameStartsWith; } public CB_CustomSettingQuery setSettingNameStartsWith(String value) { this.SettingNameStartsWith = value; return this; } public String getSettingNameEndsWith() { return SettingNameEndsWith; } public CB_CustomSettingQuery setSettingNameEndsWith(String value) { this.SettingNameEndsWith = value; return this; } public String getSettingNameContains() { return SettingNameContains; } public CB_CustomSettingQuery setSettingNameContains(String value) { this.SettingNameContains = value; return this; } public String getSettingNameLike() { return SettingNameLike; } public CB_CustomSettingQuery setSettingNameLike(String value) { this.SettingNameLike = value; return this; } public ArrayList getSettingNameBetween() { return SettingNameBetween; } public CB_CustomSettingQuery setSettingNameBetween(ArrayList value) { this.SettingNameBetween = value; return this; } public ArrayList getSettingNameIn() { return SettingNameIn; } public CB_CustomSettingQuery setSettingNameIn(ArrayList value) { this.SettingNameIn = value; return this; } public BigDecimal getDisplayOrder() { return DisplayOrder; } public CB_CustomSettingQuery setDisplayOrder(BigDecimal value) { this.DisplayOrder = value; return this; } public BigDecimal getDisplayOrderGreaterThanOrEqualTo() { return DisplayOrderGreaterThanOrEqualTo; } public CB_CustomSettingQuery setDisplayOrderGreaterThanOrEqualTo(BigDecimal value) { this.DisplayOrderGreaterThanOrEqualTo = value; return this; } public BigDecimal getDisplayOrderGreaterThan() { return DisplayOrderGreaterThan; } public CB_CustomSettingQuery setDisplayOrderGreaterThan(BigDecimal value) { this.DisplayOrderGreaterThan = value; return this; } public BigDecimal getDisplayOrderLessThan() { return DisplayOrderLessThan; } public CB_CustomSettingQuery setDisplayOrderLessThan(BigDecimal value) { this.DisplayOrderLessThan = value; return this; } public BigDecimal getDisplayOrderLessThanOrEqualTo() { return DisplayOrderLessThanOrEqualTo; } public CB_CustomSettingQuery setDisplayOrderLessThanOrEqualTo(BigDecimal value) { this.DisplayOrderLessThanOrEqualTo = value; return this; } public BigDecimal getDisplayOrderNotEqualTo() { return DisplayOrderNotEqualTo; } public CB_CustomSettingQuery setDisplayOrderNotEqualTo(BigDecimal value) { this.DisplayOrderNotEqualTo = value; return this; } public ArrayList getDisplayOrderBetween() { return DisplayOrderBetween; } public CB_CustomSettingQuery setDisplayOrderBetween(ArrayList value) { this.DisplayOrderBetween = value; return this; } public ArrayList getDisplayOrderIn() { return DisplayOrderIn; } public CB_CustomSettingQuery setDisplayOrderIn(ArrayList value) { this.DisplayOrderIn = value; return this; } public Short getCellType() { return CellType; } public CB_CustomSettingQuery setCellType(Short value) { this.CellType = value; return this; } public Short getCellTypeGreaterThanOrEqualTo() { return CellTypeGreaterThanOrEqualTo; } public CB_CustomSettingQuery setCellTypeGreaterThanOrEqualTo(Short value) { this.CellTypeGreaterThanOrEqualTo = value; return this; } public Short getCellTypeGreaterThan() { return CellTypeGreaterThan; } public CB_CustomSettingQuery setCellTypeGreaterThan(Short value) { this.CellTypeGreaterThan = value; return this; } public Short getCellTypeLessThan() { return CellTypeLessThan; } public CB_CustomSettingQuery setCellTypeLessThan(Short value) { this.CellTypeLessThan = value; return this; } public Short getCellTypeLessThanOrEqualTo() { return CellTypeLessThanOrEqualTo; } public CB_CustomSettingQuery setCellTypeLessThanOrEqualTo(Short value) { this.CellTypeLessThanOrEqualTo = value; return this; } public Short getCellTypeNotEqualTo() { return CellTypeNotEqualTo; } public CB_CustomSettingQuery setCellTypeNotEqualTo(Short value) { this.CellTypeNotEqualTo = value; return this; } public ArrayList getCellTypeBetween() { return CellTypeBetween; } public CB_CustomSettingQuery setCellTypeBetween(ArrayList value) { this.CellTypeBetween = value; return this; } public ArrayList getCellTypeIn() { return CellTypeIn; } public CB_CustomSettingQuery setCellTypeIn(ArrayList value) { this.CellTypeIn = value; return this; } public String getScriptFormatCell() { return ScriptFormatCell; } public CB_CustomSettingQuery setScriptFormatCell(String value) { this.ScriptFormatCell = value; return this; } public String getScriptFormatCellStartsWith() { return ScriptFormatCellStartsWith; } public CB_CustomSettingQuery setScriptFormatCellStartsWith(String value) { this.ScriptFormatCellStartsWith = value; return this; } public String getScriptFormatCellEndsWith() { return ScriptFormatCellEndsWith; } public CB_CustomSettingQuery setScriptFormatCellEndsWith(String value) { this.ScriptFormatCellEndsWith = value; return this; } public String getScriptFormatCellContains() { return ScriptFormatCellContains; } public CB_CustomSettingQuery setScriptFormatCellContains(String value) { this.ScriptFormatCellContains = value; return this; } public String getScriptFormatCellLike() { return ScriptFormatCellLike; } public CB_CustomSettingQuery setScriptFormatCellLike(String value) { this.ScriptFormatCellLike = value; return this; } public ArrayList getScriptFormatCellBetween() { return ScriptFormatCellBetween; } public CB_CustomSettingQuery setScriptFormatCellBetween(ArrayList value) { this.ScriptFormatCellBetween = value; return this; } public ArrayList getScriptFormatCellIn() { return ScriptFormatCellIn; } public CB_CustomSettingQuery setScriptFormatCellIn(ArrayList value) { this.ScriptFormatCellIn = value; return this; } public String getScriptButtonClicked() { return ScriptButtonClicked; } public CB_CustomSettingQuery setScriptButtonClicked(String value) { this.ScriptButtonClicked = value; return this; } public String getScriptButtonClickedStartsWith() { return ScriptButtonClickedStartsWith; } public CB_CustomSettingQuery setScriptButtonClickedStartsWith(String value) { this.ScriptButtonClickedStartsWith = value; return this; } public String getScriptButtonClickedEndsWith() { return ScriptButtonClickedEndsWith; } public CB_CustomSettingQuery setScriptButtonClickedEndsWith(String value) { this.ScriptButtonClickedEndsWith = value; return this; } public String getScriptButtonClickedContains() { return ScriptButtonClickedContains; } public CB_CustomSettingQuery setScriptButtonClickedContains(String value) { this.ScriptButtonClickedContains = value; return this; } public String getScriptButtonClickedLike() { return ScriptButtonClickedLike; } public CB_CustomSettingQuery setScriptButtonClickedLike(String value) { this.ScriptButtonClickedLike = value; return this; } public ArrayList getScriptButtonClickedBetween() { return ScriptButtonClickedBetween; } public CB_CustomSettingQuery setScriptButtonClickedBetween(ArrayList value) { this.ScriptButtonClickedBetween = value; return this; } public ArrayList getScriptButtonClickedIn() { return ScriptButtonClickedIn; } public CB_CustomSettingQuery setScriptButtonClickedIn(ArrayList value) { this.ScriptButtonClickedIn = value; return this; } public String getScriptReadData() { return ScriptReadData; } public CB_CustomSettingQuery setScriptReadData(String value) { this.ScriptReadData = value; return this; } public String getScriptReadDataStartsWith() { return ScriptReadDataStartsWith; } public CB_CustomSettingQuery setScriptReadDataStartsWith(String value) { this.ScriptReadDataStartsWith = value; return this; } public String getScriptReadDataEndsWith() { return ScriptReadDataEndsWith; } public CB_CustomSettingQuery setScriptReadDataEndsWith(String value) { this.ScriptReadDataEndsWith = value; return this; } public String getScriptReadDataContains() { return ScriptReadDataContains; } public CB_CustomSettingQuery setScriptReadDataContains(String value) { this.ScriptReadDataContains = value; return this; } public String getScriptReadDataLike() { return ScriptReadDataLike; } public CB_CustomSettingQuery setScriptReadDataLike(String value) { this.ScriptReadDataLike = value; return this; } public ArrayList getScriptReadDataBetween() { return ScriptReadDataBetween; } public CB_CustomSettingQuery setScriptReadDataBetween(ArrayList value) { this.ScriptReadDataBetween = value; return this; } public ArrayList getScriptReadDataIn() { return ScriptReadDataIn; } public CB_CustomSettingQuery setScriptReadDataIn(ArrayList value) { this.ScriptReadDataIn = value; return this; } public UUID getSyPluginRecID() { return SY_Plugin_RecID; } public CB_CustomSettingQuery setSyPluginRecID(UUID value) { this.SY_Plugin_RecID = value; return this; } public ArrayList getSyPluginRecIDIn() { return SY_Plugin_RecIDIn; } public CB_CustomSettingQuery setSyPluginRecIDIn(ArrayList value) { this.SY_Plugin_RecIDIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class CB_CustomSettingValuesQuery extends QueryDb implements IReturn> { public String SettingValueID = null; public String SettingValueIDStartsWith = null; public String SettingValueIDEndsWith = null; public String SettingValueIDContains = null; public String SettingValueIDLike = null; public ArrayList SettingValueIDBetween = null; public ArrayList SettingValueIDIn = null; public String SettingID = null; public String SettingIDStartsWith = null; public String SettingIDEndsWith = null; public String SettingIDContains = null; public String SettingIDLike = null; public ArrayList SettingIDBetween = null; public ArrayList SettingIDIn = null; public String CashBookID = null; public String CashBookIDStartsWith = null; public String CashBookIDEndsWith = null; public String CashBookIDContains = null; public String CashBookIDLike = null; public ArrayList CashBookIDBetween = null; public ArrayList CashBookIDIn = null; public String Contents = null; public String ContentsStartsWith = null; public String ContentsEndsWith = null; public String ContentsContains = null; public String ContentsLike = null; public ArrayList ContentsBetween = null; public ArrayList ContentsIn = null; public Date LastSavedDateTime = null; public Date LastSavedDateTimeGreaterThanOrEqualTo = null; public Date LastSavedDateTimeGreaterThan = null; public Date LastSavedDateTimeLessThan = null; public Date LastSavedDateTimeLessThanOrEqualTo = null; public Date LastSavedDateTimeNotEqualTo = null; public ArrayList LastSavedDateTimeBetween = null; public ArrayList LastSavedDateTimeIn = null; public String getSettingValueID() { return SettingValueID; } public CB_CustomSettingValuesQuery setSettingValueID(String value) { this.SettingValueID = value; return this; } public String getSettingValueIDStartsWith() { return SettingValueIDStartsWith; } public CB_CustomSettingValuesQuery setSettingValueIDStartsWith(String value) { this.SettingValueIDStartsWith = value; return this; } public String getSettingValueIDEndsWith() { return SettingValueIDEndsWith; } public CB_CustomSettingValuesQuery setSettingValueIDEndsWith(String value) { this.SettingValueIDEndsWith = value; return this; } public String getSettingValueIDContains() { return SettingValueIDContains; } public CB_CustomSettingValuesQuery setSettingValueIDContains(String value) { this.SettingValueIDContains = value; return this; } public String getSettingValueIDLike() { return SettingValueIDLike; } public CB_CustomSettingValuesQuery setSettingValueIDLike(String value) { this.SettingValueIDLike = value; return this; } public ArrayList getSettingValueIDBetween() { return SettingValueIDBetween; } public CB_CustomSettingValuesQuery setSettingValueIDBetween(ArrayList value) { this.SettingValueIDBetween = value; return this; } public ArrayList getSettingValueIDIn() { return SettingValueIDIn; } public CB_CustomSettingValuesQuery setSettingValueIDIn(ArrayList value) { this.SettingValueIDIn = value; return this; } public String getSettingID() { return SettingID; } public CB_CustomSettingValuesQuery setSettingID(String value) { this.SettingID = value; return this; } public String getSettingIDStartsWith() { return SettingIDStartsWith; } public CB_CustomSettingValuesQuery setSettingIDStartsWith(String value) { this.SettingIDStartsWith = value; return this; } public String getSettingIDEndsWith() { return SettingIDEndsWith; } public CB_CustomSettingValuesQuery setSettingIDEndsWith(String value) { this.SettingIDEndsWith = value; return this; } public String getSettingIDContains() { return SettingIDContains; } public CB_CustomSettingValuesQuery setSettingIDContains(String value) { this.SettingIDContains = value; return this; } public String getSettingIDLike() { return SettingIDLike; } public CB_CustomSettingValuesQuery setSettingIDLike(String value) { this.SettingIDLike = value; return this; } public ArrayList getSettingIDBetween() { return SettingIDBetween; } public CB_CustomSettingValuesQuery setSettingIDBetween(ArrayList value) { this.SettingIDBetween = value; return this; } public ArrayList getSettingIDIn() { return SettingIDIn; } public CB_CustomSettingValuesQuery setSettingIDIn(ArrayList value) { this.SettingIDIn = value; return this; } public String getCashBookID() { return CashBookID; } public CB_CustomSettingValuesQuery setCashBookID(String value) { this.CashBookID = value; return this; } public String getCashBookIDStartsWith() { return CashBookIDStartsWith; } public CB_CustomSettingValuesQuery setCashBookIDStartsWith(String value) { this.CashBookIDStartsWith = value; return this; } public String getCashBookIDEndsWith() { return CashBookIDEndsWith; } public CB_CustomSettingValuesQuery setCashBookIDEndsWith(String value) { this.CashBookIDEndsWith = value; return this; } public String getCashBookIDContains() { return CashBookIDContains; } public CB_CustomSettingValuesQuery setCashBookIDContains(String value) { this.CashBookIDContains = value; return this; } public String getCashBookIDLike() { return CashBookIDLike; } public CB_CustomSettingValuesQuery setCashBookIDLike(String value) { this.CashBookIDLike = value; return this; } public ArrayList getCashBookIDBetween() { return CashBookIDBetween; } public CB_CustomSettingValuesQuery setCashBookIDBetween(ArrayList value) { this.CashBookIDBetween = value; return this; } public ArrayList getCashBookIDIn() { return CashBookIDIn; } public CB_CustomSettingValuesQuery setCashBookIDIn(ArrayList value) { this.CashBookIDIn = value; return this; } public String getContents() { return Contents; } public CB_CustomSettingValuesQuery setContents(String value) { this.Contents = value; return this; } public String getContentsStartsWith() { return ContentsStartsWith; } public CB_CustomSettingValuesQuery setContentsStartsWith(String value) { this.ContentsStartsWith = value; return this; } public String getContentsEndsWith() { return ContentsEndsWith; } public CB_CustomSettingValuesQuery setContentsEndsWith(String value) { this.ContentsEndsWith = value; return this; } public String getContentsContains() { return ContentsContains; } public CB_CustomSettingValuesQuery setContentsContains(String value) { this.ContentsContains = value; return this; } public String getContentsLike() { return ContentsLike; } public CB_CustomSettingValuesQuery setContentsLike(String value) { this.ContentsLike = value; return this; } public ArrayList getContentsBetween() { return ContentsBetween; } public CB_CustomSettingValuesQuery setContentsBetween(ArrayList value) { this.ContentsBetween = value; return this; } public ArrayList getContentsIn() { return ContentsIn; } public CB_CustomSettingValuesQuery setContentsIn(ArrayList value) { this.ContentsIn = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public CB_CustomSettingValuesQuery setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getLastSavedDateTimeGreaterThanOrEqualTo() { return LastSavedDateTimeGreaterThanOrEqualTo; } public CB_CustomSettingValuesQuery setLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.LastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeGreaterThan() { return LastSavedDateTimeGreaterThan; } public CB_CustomSettingValuesQuery setLastSavedDateTimeGreaterThan(Date value) { this.LastSavedDateTimeGreaterThan = value; return this; } public Date getLastSavedDateTimeLessThan() { return LastSavedDateTimeLessThan; } public CB_CustomSettingValuesQuery setLastSavedDateTimeLessThan(Date value) { this.LastSavedDateTimeLessThan = value; return this; } public Date getLastSavedDateTimeLessThanOrEqualTo() { return LastSavedDateTimeLessThanOrEqualTo; } public CB_CustomSettingValuesQuery setLastSavedDateTimeLessThanOrEqualTo(Date value) { this.LastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeNotEqualTo() { return LastSavedDateTimeNotEqualTo; } public CB_CustomSettingValuesQuery setLastSavedDateTimeNotEqualTo(Date value) { this.LastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getLastSavedDateTimeBetween() { return LastSavedDateTimeBetween; } public CB_CustomSettingValuesQuery setLastSavedDateTimeBetween(ArrayList value) { this.LastSavedDateTimeBetween = value; return this; } public ArrayList getLastSavedDateTimeIn() { return LastSavedDateTimeIn; } public CB_CustomSettingValuesQuery setLastSavedDateTimeIn(ArrayList value) { this.LastSavedDateTimeIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class CB_DocumentsQuery extends QueryDb implements IReturn> { public String RecID = null; public String RecIDStartsWith = null; public String RecIDEndsWith = null; public String RecIDContains = null; public String RecIDLike = null; public ArrayList RecIDBetween = null; public ArrayList RecIDIn = null; public String CashBookID = null; public String CashBookIDStartsWith = null; public String CashBookIDEndsWith = null; public String CashBookIDContains = null; public String CashBookIDLike = null; public ArrayList CashBookIDBetween = null; public ArrayList CashBookIDIn = null; public String DocumentTypeID = null; public String DocumentTypeIDStartsWith = null; public String DocumentTypeIDEndsWith = null; public String DocumentTypeIDContains = null; public String DocumentTypeIDLike = null; public ArrayList DocumentTypeIDBetween = null; public ArrayList DocumentTypeIDIn = null; public Date LastSavedDateTime = null; public Date LastSavedDateTimeGreaterThanOrEqualTo = null; public Date LastSavedDateTimeGreaterThan = null; public Date LastSavedDateTimeLessThan = null; public Date LastSavedDateTimeLessThanOrEqualTo = null; public Date LastSavedDateTimeNotEqualTo = null; public ArrayList LastSavedDateTimeBetween = null; public ArrayList LastSavedDateTimeIn = null; public String LastSavedByStaffID = null; public String LastSavedByStaffIDStartsWith = null; public String LastSavedByStaffIDEndsWith = null; public String LastSavedByStaffIDContains = null; public String LastSavedByStaffIDLike = null; public ArrayList LastSavedByStaffIDBetween = null; public ArrayList LastSavedByStaffIDIn = null; public ArrayList FileBinary = null; public String Description = null; public String DescriptionStartsWith = null; public String DescriptionEndsWith = null; public String DescriptionContains = null; public String DescriptionLike = null; public ArrayList DescriptionBetween = null; public ArrayList DescriptionIn = null; public String PhysicalFileName = null; public String PhysicalFileNameStartsWith = null; public String PhysicalFileNameEndsWith = null; public String PhysicalFileNameContains = null; public String PhysicalFileNameLike = null; public ArrayList PhysicalFileNameBetween = null; public ArrayList PhysicalFileNameIn = null; public Integer ItemNo = null; public Integer ItemNoGreaterThanOrEqualTo = null; public Integer ItemNoGreaterThan = null; public Integer ItemNoLessThan = null; public Integer ItemNoLessThanOrEqualTo = null; public Integer ItemNoNotEqualTo = null; public ArrayList ItemNoBetween = null; public ArrayList ItemNoIn = null; public String getRecID() { return RecID; } public CB_DocumentsQuery setRecID(String value) { this.RecID = value; return this; } public String getRecIDStartsWith() { return RecIDStartsWith; } public CB_DocumentsQuery setRecIDStartsWith(String value) { this.RecIDStartsWith = value; return this; } public String getRecIDEndsWith() { return RecIDEndsWith; } public CB_DocumentsQuery setRecIDEndsWith(String value) { this.RecIDEndsWith = value; return this; } public String getRecIDContains() { return RecIDContains; } public CB_DocumentsQuery setRecIDContains(String value) { this.RecIDContains = value; return this; } public String getRecIDLike() { return RecIDLike; } public CB_DocumentsQuery setRecIDLike(String value) { this.RecIDLike = value; return this; } public ArrayList getRecIDBetween() { return RecIDBetween; } public CB_DocumentsQuery setRecIDBetween(ArrayList value) { this.RecIDBetween = value; return this; } public ArrayList getRecIDIn() { return RecIDIn; } public CB_DocumentsQuery setRecIDIn(ArrayList value) { this.RecIDIn = value; return this; } public String getCashBookID() { return CashBookID; } public CB_DocumentsQuery setCashBookID(String value) { this.CashBookID = value; return this; } public String getCashBookIDStartsWith() { return CashBookIDStartsWith; } public CB_DocumentsQuery setCashBookIDStartsWith(String value) { this.CashBookIDStartsWith = value; return this; } public String getCashBookIDEndsWith() { return CashBookIDEndsWith; } public CB_DocumentsQuery setCashBookIDEndsWith(String value) { this.CashBookIDEndsWith = value; return this; } public String getCashBookIDContains() { return CashBookIDContains; } public CB_DocumentsQuery setCashBookIDContains(String value) { this.CashBookIDContains = value; return this; } public String getCashBookIDLike() { return CashBookIDLike; } public CB_DocumentsQuery setCashBookIDLike(String value) { this.CashBookIDLike = value; return this; } public ArrayList getCashBookIDBetween() { return CashBookIDBetween; } public CB_DocumentsQuery setCashBookIDBetween(ArrayList value) { this.CashBookIDBetween = value; return this; } public ArrayList getCashBookIDIn() { return CashBookIDIn; } public CB_DocumentsQuery setCashBookIDIn(ArrayList value) { this.CashBookIDIn = value; return this; } public String getDocumentTypeID() { return DocumentTypeID; } public CB_DocumentsQuery setDocumentTypeID(String value) { this.DocumentTypeID = value; return this; } public String getDocumentTypeIDStartsWith() { return DocumentTypeIDStartsWith; } public CB_DocumentsQuery setDocumentTypeIDStartsWith(String value) { this.DocumentTypeIDStartsWith = value; return this; } public String getDocumentTypeIDEndsWith() { return DocumentTypeIDEndsWith; } public CB_DocumentsQuery setDocumentTypeIDEndsWith(String value) { this.DocumentTypeIDEndsWith = value; return this; } public String getDocumentTypeIDContains() { return DocumentTypeIDContains; } public CB_DocumentsQuery setDocumentTypeIDContains(String value) { this.DocumentTypeIDContains = value; return this; } public String getDocumentTypeIDLike() { return DocumentTypeIDLike; } public CB_DocumentsQuery setDocumentTypeIDLike(String value) { this.DocumentTypeIDLike = value; return this; } public ArrayList getDocumentTypeIDBetween() { return DocumentTypeIDBetween; } public CB_DocumentsQuery setDocumentTypeIDBetween(ArrayList value) { this.DocumentTypeIDBetween = value; return this; } public ArrayList getDocumentTypeIDIn() { return DocumentTypeIDIn; } public CB_DocumentsQuery setDocumentTypeIDIn(ArrayList value) { this.DocumentTypeIDIn = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public CB_DocumentsQuery setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getLastSavedDateTimeGreaterThanOrEqualTo() { return LastSavedDateTimeGreaterThanOrEqualTo; } public CB_DocumentsQuery setLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.LastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeGreaterThan() { return LastSavedDateTimeGreaterThan; } public CB_DocumentsQuery setLastSavedDateTimeGreaterThan(Date value) { this.LastSavedDateTimeGreaterThan = value; return this; } public Date getLastSavedDateTimeLessThan() { return LastSavedDateTimeLessThan; } public CB_DocumentsQuery setLastSavedDateTimeLessThan(Date value) { this.LastSavedDateTimeLessThan = value; return this; } public Date getLastSavedDateTimeLessThanOrEqualTo() { return LastSavedDateTimeLessThanOrEqualTo; } public CB_DocumentsQuery setLastSavedDateTimeLessThanOrEqualTo(Date value) { this.LastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeNotEqualTo() { return LastSavedDateTimeNotEqualTo; } public CB_DocumentsQuery setLastSavedDateTimeNotEqualTo(Date value) { this.LastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getLastSavedDateTimeBetween() { return LastSavedDateTimeBetween; } public CB_DocumentsQuery setLastSavedDateTimeBetween(ArrayList value) { this.LastSavedDateTimeBetween = value; return this; } public ArrayList getLastSavedDateTimeIn() { return LastSavedDateTimeIn; } public CB_DocumentsQuery setLastSavedDateTimeIn(ArrayList value) { this.LastSavedDateTimeIn = value; return this; } public String getLastSavedByStaffID() { return LastSavedByStaffID; } public CB_DocumentsQuery setLastSavedByStaffID(String value) { this.LastSavedByStaffID = value; return this; } public String getLastSavedByStaffIDStartsWith() { return LastSavedByStaffIDStartsWith; } public CB_DocumentsQuery setLastSavedByStaffIDStartsWith(String value) { this.LastSavedByStaffIDStartsWith = value; return this; } public String getLastSavedByStaffIDEndsWith() { return LastSavedByStaffIDEndsWith; } public CB_DocumentsQuery setLastSavedByStaffIDEndsWith(String value) { this.LastSavedByStaffIDEndsWith = value; return this; } public String getLastSavedByStaffIDContains() { return LastSavedByStaffIDContains; } public CB_DocumentsQuery setLastSavedByStaffIDContains(String value) { this.LastSavedByStaffIDContains = value; return this; } public String getLastSavedByStaffIDLike() { return LastSavedByStaffIDLike; } public CB_DocumentsQuery setLastSavedByStaffIDLike(String value) { this.LastSavedByStaffIDLike = value; return this; } public ArrayList getLastSavedByStaffIDBetween() { return LastSavedByStaffIDBetween; } public CB_DocumentsQuery setLastSavedByStaffIDBetween(ArrayList value) { this.LastSavedByStaffIDBetween = value; return this; } public ArrayList getLastSavedByStaffIDIn() { return LastSavedByStaffIDIn; } public CB_DocumentsQuery setLastSavedByStaffIDIn(ArrayList value) { this.LastSavedByStaffIDIn = value; return this; } public ArrayList getFileBinary() { return FileBinary; } public CB_DocumentsQuery setFileBinary(ArrayList value) { this.FileBinary = value; return this; } public String getDescription() { return Description; } public CB_DocumentsQuery setDescription(String value) { this.Description = value; return this; } public String getDescriptionStartsWith() { return DescriptionStartsWith; } public CB_DocumentsQuery setDescriptionStartsWith(String value) { this.DescriptionStartsWith = value; return this; } public String getDescriptionEndsWith() { return DescriptionEndsWith; } public CB_DocumentsQuery setDescriptionEndsWith(String value) { this.DescriptionEndsWith = value; return this; } public String getDescriptionContains() { return DescriptionContains; } public CB_DocumentsQuery setDescriptionContains(String value) { this.DescriptionContains = value; return this; } public String getDescriptionLike() { return DescriptionLike; } public CB_DocumentsQuery setDescriptionLike(String value) { this.DescriptionLike = value; return this; } public ArrayList getDescriptionBetween() { return DescriptionBetween; } public CB_DocumentsQuery setDescriptionBetween(ArrayList value) { this.DescriptionBetween = value; return this; } public ArrayList getDescriptionIn() { return DescriptionIn; } public CB_DocumentsQuery setDescriptionIn(ArrayList value) { this.DescriptionIn = value; return this; } public String getPhysicalFileName() { return PhysicalFileName; } public CB_DocumentsQuery setPhysicalFileName(String value) { this.PhysicalFileName = value; return this; } public String getPhysicalFileNameStartsWith() { return PhysicalFileNameStartsWith; } public CB_DocumentsQuery setPhysicalFileNameStartsWith(String value) { this.PhysicalFileNameStartsWith = value; return this; } public String getPhysicalFileNameEndsWith() { return PhysicalFileNameEndsWith; } public CB_DocumentsQuery setPhysicalFileNameEndsWith(String value) { this.PhysicalFileNameEndsWith = value; return this; } public String getPhysicalFileNameContains() { return PhysicalFileNameContains; } public CB_DocumentsQuery setPhysicalFileNameContains(String value) { this.PhysicalFileNameContains = value; return this; } public String getPhysicalFileNameLike() { return PhysicalFileNameLike; } public CB_DocumentsQuery setPhysicalFileNameLike(String value) { this.PhysicalFileNameLike = value; return this; } public ArrayList getPhysicalFileNameBetween() { return PhysicalFileNameBetween; } public CB_DocumentsQuery setPhysicalFileNameBetween(ArrayList value) { this.PhysicalFileNameBetween = value; return this; } public ArrayList getPhysicalFileNameIn() { return PhysicalFileNameIn; } public CB_DocumentsQuery setPhysicalFileNameIn(ArrayList value) { this.PhysicalFileNameIn = value; return this; } public Integer getItemNo() { return ItemNo; } public CB_DocumentsQuery setItemNo(Integer value) { this.ItemNo = value; return this; } public Integer getItemNoGreaterThanOrEqualTo() { return ItemNoGreaterThanOrEqualTo; } public CB_DocumentsQuery setItemNoGreaterThanOrEqualTo(Integer value) { this.ItemNoGreaterThanOrEqualTo = value; return this; } public Integer getItemNoGreaterThan() { return ItemNoGreaterThan; } public CB_DocumentsQuery setItemNoGreaterThan(Integer value) { this.ItemNoGreaterThan = value; return this; } public Integer getItemNoLessThan() { return ItemNoLessThan; } public CB_DocumentsQuery setItemNoLessThan(Integer value) { this.ItemNoLessThan = value; return this; } public Integer getItemNoLessThanOrEqualTo() { return ItemNoLessThanOrEqualTo; } public CB_DocumentsQuery setItemNoLessThanOrEqualTo(Integer value) { this.ItemNoLessThanOrEqualTo = value; return this; } public Integer getItemNoNotEqualTo() { return ItemNoNotEqualTo; } public CB_DocumentsQuery setItemNoNotEqualTo(Integer value) { this.ItemNoNotEqualTo = value; return this; } public ArrayList getItemNoBetween() { return ItemNoBetween; } public CB_DocumentsQuery setItemNoBetween(ArrayList value) { this.ItemNoBetween = value; return this; } public ArrayList getItemNoIn() { return ItemNoIn; } public CB_DocumentsQuery setItemNoIn(ArrayList value) { this.ItemNoIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class CB_NotesQuery extends QueryDb implements IReturn> { public String RecID = null; public String RecIDStartsWith = null; public String RecIDEndsWith = null; public String RecIDContains = null; public String RecIDLike = null; public ArrayList RecIDBetween = null; public ArrayList RecIDIn = null; public String CashBookID = null; public String CashBookIDStartsWith = null; public String CashBookIDEndsWith = null; public String CashBookIDContains = null; public String CashBookIDLike = null; public ArrayList CashBookIDBetween = null; public ArrayList CashBookIDIn = null; public String NoteTypeID = null; public String NoteTypeIDStartsWith = null; public String NoteTypeIDEndsWith = null; public String NoteTypeIDContains = null; public String NoteTypeIDLike = null; public ArrayList NoteTypeIDBetween = null; public ArrayList NoteTypeIDIn = null; public Date LastSavedDateTime = null; public Date LastSavedDateTimeGreaterThanOrEqualTo = null; public Date LastSavedDateTimeGreaterThan = null; public Date LastSavedDateTimeLessThan = null; public Date LastSavedDateTimeLessThanOrEqualTo = null; public Date LastSavedDateTimeNotEqualTo = null; public ArrayList LastSavedDateTimeBetween = null; public ArrayList LastSavedDateTimeIn = null; public String LastSavedByStaffID = null; public String LastSavedByStaffIDStartsWith = null; public String LastSavedByStaffIDEndsWith = null; public String LastSavedByStaffIDContains = null; public String LastSavedByStaffIDLike = null; public ArrayList LastSavedByStaffIDBetween = null; public ArrayList LastSavedByStaffIDIn = null; public String NoteText = null; public String NoteTextStartsWith = null; public String NoteTextEndsWith = null; public String NoteTextContains = null; public String NoteTextLike = null; public ArrayList NoteTextBetween = null; public ArrayList NoteTextIn = null; public Integer ItemNo = null; public Integer ItemNoGreaterThanOrEqualTo = null; public Integer ItemNoGreaterThan = null; public Integer ItemNoLessThan = null; public Integer ItemNoLessThanOrEqualTo = null; public Integer ItemNoNotEqualTo = null; public ArrayList ItemNoBetween = null; public ArrayList ItemNoIn = null; public String getRecID() { return RecID; } public CB_NotesQuery setRecID(String value) { this.RecID = value; return this; } public String getRecIDStartsWith() { return RecIDStartsWith; } public CB_NotesQuery setRecIDStartsWith(String value) { this.RecIDStartsWith = value; return this; } public String getRecIDEndsWith() { return RecIDEndsWith; } public CB_NotesQuery setRecIDEndsWith(String value) { this.RecIDEndsWith = value; return this; } public String getRecIDContains() { return RecIDContains; } public CB_NotesQuery setRecIDContains(String value) { this.RecIDContains = value; return this; } public String getRecIDLike() { return RecIDLike; } public CB_NotesQuery setRecIDLike(String value) { this.RecIDLike = value; return this; } public ArrayList getRecIDBetween() { return RecIDBetween; } public CB_NotesQuery setRecIDBetween(ArrayList value) { this.RecIDBetween = value; return this; } public ArrayList getRecIDIn() { return RecIDIn; } public CB_NotesQuery setRecIDIn(ArrayList value) { this.RecIDIn = value; return this; } public String getCashBookID() { return CashBookID; } public CB_NotesQuery setCashBookID(String value) { this.CashBookID = value; return this; } public String getCashBookIDStartsWith() { return CashBookIDStartsWith; } public CB_NotesQuery setCashBookIDStartsWith(String value) { this.CashBookIDStartsWith = value; return this; } public String getCashBookIDEndsWith() { return CashBookIDEndsWith; } public CB_NotesQuery setCashBookIDEndsWith(String value) { this.CashBookIDEndsWith = value; return this; } public String getCashBookIDContains() { return CashBookIDContains; } public CB_NotesQuery setCashBookIDContains(String value) { this.CashBookIDContains = value; return this; } public String getCashBookIDLike() { return CashBookIDLike; } public CB_NotesQuery setCashBookIDLike(String value) { this.CashBookIDLike = value; return this; } public ArrayList getCashBookIDBetween() { return CashBookIDBetween; } public CB_NotesQuery setCashBookIDBetween(ArrayList value) { this.CashBookIDBetween = value; return this; } public ArrayList getCashBookIDIn() { return CashBookIDIn; } public CB_NotesQuery setCashBookIDIn(ArrayList value) { this.CashBookIDIn = value; return this; } public String getNoteTypeID() { return NoteTypeID; } public CB_NotesQuery setNoteTypeID(String value) { this.NoteTypeID = value; return this; } public String getNoteTypeIDStartsWith() { return NoteTypeIDStartsWith; } public CB_NotesQuery setNoteTypeIDStartsWith(String value) { this.NoteTypeIDStartsWith = value; return this; } public String getNoteTypeIDEndsWith() { return NoteTypeIDEndsWith; } public CB_NotesQuery setNoteTypeIDEndsWith(String value) { this.NoteTypeIDEndsWith = value; return this; } public String getNoteTypeIDContains() { return NoteTypeIDContains; } public CB_NotesQuery setNoteTypeIDContains(String value) { this.NoteTypeIDContains = value; return this; } public String getNoteTypeIDLike() { return NoteTypeIDLike; } public CB_NotesQuery setNoteTypeIDLike(String value) { this.NoteTypeIDLike = value; return this; } public ArrayList getNoteTypeIDBetween() { return NoteTypeIDBetween; } public CB_NotesQuery setNoteTypeIDBetween(ArrayList value) { this.NoteTypeIDBetween = value; return this; } public ArrayList getNoteTypeIDIn() { return NoteTypeIDIn; } public CB_NotesQuery setNoteTypeIDIn(ArrayList value) { this.NoteTypeIDIn = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public CB_NotesQuery setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getLastSavedDateTimeGreaterThanOrEqualTo() { return LastSavedDateTimeGreaterThanOrEqualTo; } public CB_NotesQuery setLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.LastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeGreaterThan() { return LastSavedDateTimeGreaterThan; } public CB_NotesQuery setLastSavedDateTimeGreaterThan(Date value) { this.LastSavedDateTimeGreaterThan = value; return this; } public Date getLastSavedDateTimeLessThan() { return LastSavedDateTimeLessThan; } public CB_NotesQuery setLastSavedDateTimeLessThan(Date value) { this.LastSavedDateTimeLessThan = value; return this; } public Date getLastSavedDateTimeLessThanOrEqualTo() { return LastSavedDateTimeLessThanOrEqualTo; } public CB_NotesQuery setLastSavedDateTimeLessThanOrEqualTo(Date value) { this.LastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeNotEqualTo() { return LastSavedDateTimeNotEqualTo; } public CB_NotesQuery setLastSavedDateTimeNotEqualTo(Date value) { this.LastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getLastSavedDateTimeBetween() { return LastSavedDateTimeBetween; } public CB_NotesQuery setLastSavedDateTimeBetween(ArrayList value) { this.LastSavedDateTimeBetween = value; return this; } public ArrayList getLastSavedDateTimeIn() { return LastSavedDateTimeIn; } public CB_NotesQuery setLastSavedDateTimeIn(ArrayList value) { this.LastSavedDateTimeIn = value; return this; } public String getLastSavedByStaffID() { return LastSavedByStaffID; } public CB_NotesQuery setLastSavedByStaffID(String value) { this.LastSavedByStaffID = value; return this; } public String getLastSavedByStaffIDStartsWith() { return LastSavedByStaffIDStartsWith; } public CB_NotesQuery setLastSavedByStaffIDStartsWith(String value) { this.LastSavedByStaffIDStartsWith = value; return this; } public String getLastSavedByStaffIDEndsWith() { return LastSavedByStaffIDEndsWith; } public CB_NotesQuery setLastSavedByStaffIDEndsWith(String value) { this.LastSavedByStaffIDEndsWith = value; return this; } public String getLastSavedByStaffIDContains() { return LastSavedByStaffIDContains; } public CB_NotesQuery setLastSavedByStaffIDContains(String value) { this.LastSavedByStaffIDContains = value; return this; } public String getLastSavedByStaffIDLike() { return LastSavedByStaffIDLike; } public CB_NotesQuery setLastSavedByStaffIDLike(String value) { this.LastSavedByStaffIDLike = value; return this; } public ArrayList getLastSavedByStaffIDBetween() { return LastSavedByStaffIDBetween; } public CB_NotesQuery setLastSavedByStaffIDBetween(ArrayList value) { this.LastSavedByStaffIDBetween = value; return this; } public ArrayList getLastSavedByStaffIDIn() { return LastSavedByStaffIDIn; } public CB_NotesQuery setLastSavedByStaffIDIn(ArrayList value) { this.LastSavedByStaffIDIn = value; return this; } public String getNoteText() { return NoteText; } public CB_NotesQuery setNoteText(String value) { this.NoteText = value; return this; } public String getNoteTextStartsWith() { return NoteTextStartsWith; } public CB_NotesQuery setNoteTextStartsWith(String value) { this.NoteTextStartsWith = value; return this; } public String getNoteTextEndsWith() { return NoteTextEndsWith; } public CB_NotesQuery setNoteTextEndsWith(String value) { this.NoteTextEndsWith = value; return this; } public String getNoteTextContains() { return NoteTextContains; } public CB_NotesQuery setNoteTextContains(String value) { this.NoteTextContains = value; return this; } public String getNoteTextLike() { return NoteTextLike; } public CB_NotesQuery setNoteTextLike(String value) { this.NoteTextLike = value; return this; } public ArrayList getNoteTextBetween() { return NoteTextBetween; } public CB_NotesQuery setNoteTextBetween(ArrayList value) { this.NoteTextBetween = value; return this; } public ArrayList getNoteTextIn() { return NoteTextIn; } public CB_NotesQuery setNoteTextIn(ArrayList value) { this.NoteTextIn = value; return this; } public Integer getItemNo() { return ItemNo; } public CB_NotesQuery setItemNo(Integer value) { this.ItemNo = value; return this; } public Integer getItemNoGreaterThanOrEqualTo() { return ItemNoGreaterThanOrEqualTo; } public CB_NotesQuery setItemNoGreaterThanOrEqualTo(Integer value) { this.ItemNoGreaterThanOrEqualTo = value; return this; } public Integer getItemNoGreaterThan() { return ItemNoGreaterThan; } public CB_NotesQuery setItemNoGreaterThan(Integer value) { this.ItemNoGreaterThan = value; return this; } public Integer getItemNoLessThan() { return ItemNoLessThan; } public CB_NotesQuery setItemNoLessThan(Integer value) { this.ItemNoLessThan = value; return this; } public Integer getItemNoLessThanOrEqualTo() { return ItemNoLessThanOrEqualTo; } public CB_NotesQuery setItemNoLessThanOrEqualTo(Integer value) { this.ItemNoLessThanOrEqualTo = value; return this; } public Integer getItemNoNotEqualTo() { return ItemNoNotEqualTo; } public CB_NotesQuery setItemNoNotEqualTo(Integer value) { this.ItemNoNotEqualTo = value; return this; } public ArrayList getItemNoBetween() { return ItemNoBetween; } public CB_NotesQuery setItemNoBetween(ArrayList value) { this.ItemNoBetween = value; return this; } public ArrayList getItemNoIn() { return ItemNoIn; } public CB_NotesQuery setItemNoIn(ArrayList value) { this.ItemNoIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class CN_ContactQuery extends QueryDb implements IReturn> { public String ContactID = null; public String ContactIDStartsWith = null; public String ContactIDEndsWith = null; public String ContactIDContains = null; public String ContactIDLike = null; public ArrayList ContactIDBetween = null; public ArrayList ContactIDIn = null; public String AccNo = null; public String AccNoStartsWith = null; public String AccNoEndsWith = null; public String AccNoContains = null; public String AccNoLike = null; public ArrayList AccNoBetween = null; public ArrayList AccNoIn = null; public String Title = null; public String TitleStartsWith = null; public String TitleEndsWith = null; public String TitleContains = null; public String TitleLike = null; public ArrayList TitleBetween = null; public ArrayList TitleIn = null; public String FName = null; public String FNameStartsWith = null; public String FNameEndsWith = null; public String FNameContains = null; public String FNameLike = null; public ArrayList FNameBetween = null; public ArrayList FNameIn = null; public String SName = null; public String SNameStartsWith = null; public String SNameEndsWith = null; public String SNameContains = null; public String SNameLike = null; public ArrayList SNameBetween = null; public ArrayList SNameIn = null; public String PrimaryID = null; public String PrimaryIDStartsWith = null; public String PrimaryIDEndsWith = null; public String PrimaryIDContains = null; public String PrimaryIDLike = null; public ArrayList PrimaryIDBetween = null; public ArrayList PrimaryIDIn = null; public String SecondaryID = null; public String SecondaryIDStartsWith = null; public String SecondaryIDEndsWith = null; public String SecondaryIDContains = null; public String SecondaryIDLike = null; public ArrayList SecondaryIDBetween = null; public ArrayList SecondaryIDIn = null; public String TertiaryID = null; public String TertiaryIDStartsWith = null; public String TertiaryIDEndsWith = null; public String TertiaryIDContains = null; public String TertiaryIDLike = null; public ArrayList TertiaryIDBetween = null; public ArrayList TertiaryIDIn = null; public String Phone = null; public String PhoneStartsWith = null; public String PhoneEndsWith = null; public String PhoneContains = null; public String PhoneLike = null; public ArrayList PhoneBetween = null; public ArrayList PhoneIn = null; public String Mobile = null; public String MobileStartsWith = null; public String MobileEndsWith = null; public String MobileContains = null; public String MobileLike = null; public ArrayList MobileBetween = null; public ArrayList MobileIn = null; public String Fax = null; public String FaxStartsWith = null; public String FaxEndsWith = null; public String FaxContains = null; public String FaxLike = null; public ArrayList FaxBetween = null; public ArrayList FaxIn = null; public String EmailAddress = null; public String EmailAddressStartsWith = null; public String EmailAddressEndsWith = null; public String EmailAddressContains = null; public String EmailAddressLike = null; public ArrayList EmailAddressBetween = null; public ArrayList EmailAddressIn = null; public String ProspectID = null; public String ProspectIDStartsWith = null; public String ProspectIDEndsWith = null; public String ProspectIDContains = null; public String ProspectIDLike = null; public ArrayList ProspectIDBetween = null; public ArrayList ProspectIDIn = null; public String LogonCode = null; public String LogonCodeStartsWith = null; public String LogonCodeEndsWith = null; public String LogonCodeContains = null; public String LogonCodeLike = null; public ArrayList LogonCodeBetween = null; public ArrayList LogonCodeIn = null; public String LogonPassword = null; public String LogonPasswordStartsWith = null; public String LogonPasswordEndsWith = null; public String LogonPasswordContains = null; public String LogonPasswordLike = null; public ArrayList LogonPasswordBetween = null; public ArrayList LogonPasswordIn = null; public String ExternalAppRecID = null; public String ExternalAppRecIDStartsWith = null; public String ExternalAppRecIDEndsWith = null; public String ExternalAppRecIDContains = null; public String ExternalAppRecIDLike = null; public ArrayList ExternalAppRecIDBetween = null; public ArrayList ExternalAppRecIDIn = null; public Boolean DefaultContact = null; public Boolean DebtorContact = null; public Boolean CreditorContact = null; public Date LastSavedDateTime = null; public Date LastSavedDateTimeGreaterThanOrEqualTo = null; public Date LastSavedDateTimeGreaterThan = null; public Date LastSavedDateTimeLessThan = null; public Date LastSavedDateTimeLessThanOrEqualTo = null; public Date LastSavedDateTimeNotEqualTo = null; public ArrayList LastSavedDateTimeBetween = null; public ArrayList LastSavedDateTimeIn = null; public Integer ItemNo = null; public Integer ItemNoGreaterThanOrEqualTo = null; public Integer ItemNoGreaterThan = null; public Integer ItemNoLessThan = null; public Integer ItemNoLessThanOrEqualTo = null; public Integer ItemNoNotEqualTo = null; public ArrayList ItemNoBetween = null; public ArrayList ItemNoIn = null; public String getContactID() { return ContactID; } public CN_ContactQuery setContactID(String value) { this.ContactID = value; return this; } public String getContactIDStartsWith() { return ContactIDStartsWith; } public CN_ContactQuery setContactIDStartsWith(String value) { this.ContactIDStartsWith = value; return this; } public String getContactIDEndsWith() { return ContactIDEndsWith; } public CN_ContactQuery setContactIDEndsWith(String value) { this.ContactIDEndsWith = value; return this; } public String getContactIDContains() { return ContactIDContains; } public CN_ContactQuery setContactIDContains(String value) { this.ContactIDContains = value; return this; } public String getContactIDLike() { return ContactIDLike; } public CN_ContactQuery setContactIDLike(String value) { this.ContactIDLike = value; return this; } public ArrayList getContactIDBetween() { return ContactIDBetween; } public CN_ContactQuery setContactIDBetween(ArrayList value) { this.ContactIDBetween = value; return this; } public ArrayList getContactIDIn() { return ContactIDIn; } public CN_ContactQuery setContactIDIn(ArrayList value) { this.ContactIDIn = value; return this; } public String getAccNo() { return AccNo; } public CN_ContactQuery setAccNo(String value) { this.AccNo = value; return this; } public String getAccNoStartsWith() { return AccNoStartsWith; } public CN_ContactQuery setAccNoStartsWith(String value) { this.AccNoStartsWith = value; return this; } public String getAccNoEndsWith() { return AccNoEndsWith; } public CN_ContactQuery setAccNoEndsWith(String value) { this.AccNoEndsWith = value; return this; } public String getAccNoContains() { return AccNoContains; } public CN_ContactQuery setAccNoContains(String value) { this.AccNoContains = value; return this; } public String getAccNoLike() { return AccNoLike; } public CN_ContactQuery setAccNoLike(String value) { this.AccNoLike = value; return this; } public ArrayList getAccNoBetween() { return AccNoBetween; } public CN_ContactQuery setAccNoBetween(ArrayList value) { this.AccNoBetween = value; return this; } public ArrayList getAccNoIn() { return AccNoIn; } public CN_ContactQuery setAccNoIn(ArrayList value) { this.AccNoIn = value; return this; } public String getTitle() { return Title; } public CN_ContactQuery setTitle(String value) { this.Title = value; return this; } public String getTitleStartsWith() { return TitleStartsWith; } public CN_ContactQuery setTitleStartsWith(String value) { this.TitleStartsWith = value; return this; } public String getTitleEndsWith() { return TitleEndsWith; } public CN_ContactQuery setTitleEndsWith(String value) { this.TitleEndsWith = value; return this; } public String getTitleContains() { return TitleContains; } public CN_ContactQuery setTitleContains(String value) { this.TitleContains = value; return this; } public String getTitleLike() { return TitleLike; } public CN_ContactQuery setTitleLike(String value) { this.TitleLike = value; return this; } public ArrayList getTitleBetween() { return TitleBetween; } public CN_ContactQuery setTitleBetween(ArrayList value) { this.TitleBetween = value; return this; } public ArrayList getTitleIn() { return TitleIn; } public CN_ContactQuery setTitleIn(ArrayList value) { this.TitleIn = value; return this; } public String getFName() { return FName; } public CN_ContactQuery setFName(String value) { this.FName = value; return this; } public String getFNameStartsWith() { return FNameStartsWith; } public CN_ContactQuery setFNameStartsWith(String value) { this.FNameStartsWith = value; return this; } public String getFNameEndsWith() { return FNameEndsWith; } public CN_ContactQuery setFNameEndsWith(String value) { this.FNameEndsWith = value; return this; } public String getFNameContains() { return FNameContains; } public CN_ContactQuery setFNameContains(String value) { this.FNameContains = value; return this; } public String getFNameLike() { return FNameLike; } public CN_ContactQuery setFNameLike(String value) { this.FNameLike = value; return this; } public ArrayList getFNameBetween() { return FNameBetween; } public CN_ContactQuery setFNameBetween(ArrayList value) { this.FNameBetween = value; return this; } public ArrayList getFNameIn() { return FNameIn; } public CN_ContactQuery setFNameIn(ArrayList value) { this.FNameIn = value; return this; } public String getSName() { return SName; } public CN_ContactQuery setSName(String value) { this.SName = value; return this; } public String getSNameStartsWith() { return SNameStartsWith; } public CN_ContactQuery setSNameStartsWith(String value) { this.SNameStartsWith = value; return this; } public String getSNameEndsWith() { return SNameEndsWith; } public CN_ContactQuery setSNameEndsWith(String value) { this.SNameEndsWith = value; return this; } public String getSNameContains() { return SNameContains; } public CN_ContactQuery setSNameContains(String value) { this.SNameContains = value; return this; } public String getSNameLike() { return SNameLike; } public CN_ContactQuery setSNameLike(String value) { this.SNameLike = value; return this; } public ArrayList getSNameBetween() { return SNameBetween; } public CN_ContactQuery setSNameBetween(ArrayList value) { this.SNameBetween = value; return this; } public ArrayList getSNameIn() { return SNameIn; } public CN_ContactQuery setSNameIn(ArrayList value) { this.SNameIn = value; return this; } public String getPrimaryID() { return PrimaryID; } public CN_ContactQuery setPrimaryID(String value) { this.PrimaryID = value; return this; } public String getPrimaryIDStartsWith() { return PrimaryIDStartsWith; } public CN_ContactQuery setPrimaryIDStartsWith(String value) { this.PrimaryIDStartsWith = value; return this; } public String getPrimaryIDEndsWith() { return PrimaryIDEndsWith; } public CN_ContactQuery setPrimaryIDEndsWith(String value) { this.PrimaryIDEndsWith = value; return this; } public String getPrimaryIDContains() { return PrimaryIDContains; } public CN_ContactQuery setPrimaryIDContains(String value) { this.PrimaryIDContains = value; return this; } public String getPrimaryIDLike() { return PrimaryIDLike; } public CN_ContactQuery setPrimaryIDLike(String value) { this.PrimaryIDLike = value; return this; } public ArrayList getPrimaryIDBetween() { return PrimaryIDBetween; } public CN_ContactQuery setPrimaryIDBetween(ArrayList value) { this.PrimaryIDBetween = value; return this; } public ArrayList getPrimaryIDIn() { return PrimaryIDIn; } public CN_ContactQuery setPrimaryIDIn(ArrayList value) { this.PrimaryIDIn = value; return this; } public String getSecondaryID() { return SecondaryID; } public CN_ContactQuery setSecondaryID(String value) { this.SecondaryID = value; return this; } public String getSecondaryIDStartsWith() { return SecondaryIDStartsWith; } public CN_ContactQuery setSecondaryIDStartsWith(String value) { this.SecondaryIDStartsWith = value; return this; } public String getSecondaryIDEndsWith() { return SecondaryIDEndsWith; } public CN_ContactQuery setSecondaryIDEndsWith(String value) { this.SecondaryIDEndsWith = value; return this; } public String getSecondaryIDContains() { return SecondaryIDContains; } public CN_ContactQuery setSecondaryIDContains(String value) { this.SecondaryIDContains = value; return this; } public String getSecondaryIDLike() { return SecondaryIDLike; } public CN_ContactQuery setSecondaryIDLike(String value) { this.SecondaryIDLike = value; return this; } public ArrayList getSecondaryIDBetween() { return SecondaryIDBetween; } public CN_ContactQuery setSecondaryIDBetween(ArrayList value) { this.SecondaryIDBetween = value; return this; } public ArrayList getSecondaryIDIn() { return SecondaryIDIn; } public CN_ContactQuery setSecondaryIDIn(ArrayList value) { this.SecondaryIDIn = value; return this; } public String getTertiaryID() { return TertiaryID; } public CN_ContactQuery setTertiaryID(String value) { this.TertiaryID = value; return this; } public String getTertiaryIDStartsWith() { return TertiaryIDStartsWith; } public CN_ContactQuery setTertiaryIDStartsWith(String value) { this.TertiaryIDStartsWith = value; return this; } public String getTertiaryIDEndsWith() { return TertiaryIDEndsWith; } public CN_ContactQuery setTertiaryIDEndsWith(String value) { this.TertiaryIDEndsWith = value; return this; } public String getTertiaryIDContains() { return TertiaryIDContains; } public CN_ContactQuery setTertiaryIDContains(String value) { this.TertiaryIDContains = value; return this; } public String getTertiaryIDLike() { return TertiaryIDLike; } public CN_ContactQuery setTertiaryIDLike(String value) { this.TertiaryIDLike = value; return this; } public ArrayList getTertiaryIDBetween() { return TertiaryIDBetween; } public CN_ContactQuery setTertiaryIDBetween(ArrayList value) { this.TertiaryIDBetween = value; return this; } public ArrayList getTertiaryIDIn() { return TertiaryIDIn; } public CN_ContactQuery setTertiaryIDIn(ArrayList value) { this.TertiaryIDIn = value; return this; } public String getPhone() { return Phone; } public CN_ContactQuery setPhone(String value) { this.Phone = value; return this; } public String getPhoneStartsWith() { return PhoneStartsWith; } public CN_ContactQuery setPhoneStartsWith(String value) { this.PhoneStartsWith = value; return this; } public String getPhoneEndsWith() { return PhoneEndsWith; } public CN_ContactQuery setPhoneEndsWith(String value) { this.PhoneEndsWith = value; return this; } public String getPhoneContains() { return PhoneContains; } public CN_ContactQuery setPhoneContains(String value) { this.PhoneContains = value; return this; } public String getPhoneLike() { return PhoneLike; } public CN_ContactQuery setPhoneLike(String value) { this.PhoneLike = value; return this; } public ArrayList getPhoneBetween() { return PhoneBetween; } public CN_ContactQuery setPhoneBetween(ArrayList value) { this.PhoneBetween = value; return this; } public ArrayList getPhoneIn() { return PhoneIn; } public CN_ContactQuery setPhoneIn(ArrayList value) { this.PhoneIn = value; return this; } public String getMobile() { return Mobile; } public CN_ContactQuery setMobile(String value) { this.Mobile = value; return this; } public String getMobileStartsWith() { return MobileStartsWith; } public CN_ContactQuery setMobileStartsWith(String value) { this.MobileStartsWith = value; return this; } public String getMobileEndsWith() { return MobileEndsWith; } public CN_ContactQuery setMobileEndsWith(String value) { this.MobileEndsWith = value; return this; } public String getMobileContains() { return MobileContains; } public CN_ContactQuery setMobileContains(String value) { this.MobileContains = value; return this; } public String getMobileLike() { return MobileLike; } public CN_ContactQuery setMobileLike(String value) { this.MobileLike = value; return this; } public ArrayList getMobileBetween() { return MobileBetween; } public CN_ContactQuery setMobileBetween(ArrayList value) { this.MobileBetween = value; return this; } public ArrayList getMobileIn() { return MobileIn; } public CN_ContactQuery setMobileIn(ArrayList value) { this.MobileIn = value; return this; } public String getFax() { return Fax; } public CN_ContactQuery setFax(String value) { this.Fax = value; return this; } public String getFaxStartsWith() { return FaxStartsWith; } public CN_ContactQuery setFaxStartsWith(String value) { this.FaxStartsWith = value; return this; } public String getFaxEndsWith() { return FaxEndsWith; } public CN_ContactQuery setFaxEndsWith(String value) { this.FaxEndsWith = value; return this; } public String getFaxContains() { return FaxContains; } public CN_ContactQuery setFaxContains(String value) { this.FaxContains = value; return this; } public String getFaxLike() { return FaxLike; } public CN_ContactQuery setFaxLike(String value) { this.FaxLike = value; return this; } public ArrayList getFaxBetween() { return FaxBetween; } public CN_ContactQuery setFaxBetween(ArrayList value) { this.FaxBetween = value; return this; } public ArrayList getFaxIn() { return FaxIn; } public CN_ContactQuery setFaxIn(ArrayList value) { this.FaxIn = value; return this; } public String getEmailAddress() { return EmailAddress; } public CN_ContactQuery setEmailAddress(String value) { this.EmailAddress = value; return this; } public String getEmailAddressStartsWith() { return EmailAddressStartsWith; } public CN_ContactQuery setEmailAddressStartsWith(String value) { this.EmailAddressStartsWith = value; return this; } public String getEmailAddressEndsWith() { return EmailAddressEndsWith; } public CN_ContactQuery setEmailAddressEndsWith(String value) { this.EmailAddressEndsWith = value; return this; } public String getEmailAddressContains() { return EmailAddressContains; } public CN_ContactQuery setEmailAddressContains(String value) { this.EmailAddressContains = value; return this; } public String getEmailAddressLike() { return EmailAddressLike; } public CN_ContactQuery setEmailAddressLike(String value) { this.EmailAddressLike = value; return this; } public ArrayList getEmailAddressBetween() { return EmailAddressBetween; } public CN_ContactQuery setEmailAddressBetween(ArrayList value) { this.EmailAddressBetween = value; return this; } public ArrayList getEmailAddressIn() { return EmailAddressIn; } public CN_ContactQuery setEmailAddressIn(ArrayList value) { this.EmailAddressIn = value; return this; } public String getProspectID() { return ProspectID; } public CN_ContactQuery setProspectID(String value) { this.ProspectID = value; return this; } public String getProspectIDStartsWith() { return ProspectIDStartsWith; } public CN_ContactQuery setProspectIDStartsWith(String value) { this.ProspectIDStartsWith = value; return this; } public String getProspectIDEndsWith() { return ProspectIDEndsWith; } public CN_ContactQuery setProspectIDEndsWith(String value) { this.ProspectIDEndsWith = value; return this; } public String getProspectIDContains() { return ProspectIDContains; } public CN_ContactQuery setProspectIDContains(String value) { this.ProspectIDContains = value; return this; } public String getProspectIDLike() { return ProspectIDLike; } public CN_ContactQuery setProspectIDLike(String value) { this.ProspectIDLike = value; return this; } public ArrayList getProspectIDBetween() { return ProspectIDBetween; } public CN_ContactQuery setProspectIDBetween(ArrayList value) { this.ProspectIDBetween = value; return this; } public ArrayList getProspectIDIn() { return ProspectIDIn; } public CN_ContactQuery setProspectIDIn(ArrayList value) { this.ProspectIDIn = value; return this; } public String getLogonCode() { return LogonCode; } public CN_ContactQuery setLogonCode(String value) { this.LogonCode = value; return this; } public String getLogonCodeStartsWith() { return LogonCodeStartsWith; } public CN_ContactQuery setLogonCodeStartsWith(String value) { this.LogonCodeStartsWith = value; return this; } public String getLogonCodeEndsWith() { return LogonCodeEndsWith; } public CN_ContactQuery setLogonCodeEndsWith(String value) { this.LogonCodeEndsWith = value; return this; } public String getLogonCodeContains() { return LogonCodeContains; } public CN_ContactQuery setLogonCodeContains(String value) { this.LogonCodeContains = value; return this; } public String getLogonCodeLike() { return LogonCodeLike; } public CN_ContactQuery setLogonCodeLike(String value) { this.LogonCodeLike = value; return this; } public ArrayList getLogonCodeBetween() { return LogonCodeBetween; } public CN_ContactQuery setLogonCodeBetween(ArrayList value) { this.LogonCodeBetween = value; return this; } public ArrayList getLogonCodeIn() { return LogonCodeIn; } public CN_ContactQuery setLogonCodeIn(ArrayList value) { this.LogonCodeIn = value; return this; } public String getLogonPassword() { return LogonPassword; } public CN_ContactQuery setLogonPassword(String value) { this.LogonPassword = value; return this; } public String getLogonPasswordStartsWith() { return LogonPasswordStartsWith; } public CN_ContactQuery setLogonPasswordStartsWith(String value) { this.LogonPasswordStartsWith = value; return this; } public String getLogonPasswordEndsWith() { return LogonPasswordEndsWith; } public CN_ContactQuery setLogonPasswordEndsWith(String value) { this.LogonPasswordEndsWith = value; return this; } public String getLogonPasswordContains() { return LogonPasswordContains; } public CN_ContactQuery setLogonPasswordContains(String value) { this.LogonPasswordContains = value; return this; } public String getLogonPasswordLike() { return LogonPasswordLike; } public CN_ContactQuery setLogonPasswordLike(String value) { this.LogonPasswordLike = value; return this; } public ArrayList getLogonPasswordBetween() { return LogonPasswordBetween; } public CN_ContactQuery setLogonPasswordBetween(ArrayList value) { this.LogonPasswordBetween = value; return this; } public ArrayList getLogonPasswordIn() { return LogonPasswordIn; } public CN_ContactQuery setLogonPasswordIn(ArrayList value) { this.LogonPasswordIn = value; return this; } public String getExternalAppRecID() { return ExternalAppRecID; } public CN_ContactQuery setExternalAppRecID(String value) { this.ExternalAppRecID = value; return this; } public String getExternalAppRecIDStartsWith() { return ExternalAppRecIDStartsWith; } public CN_ContactQuery setExternalAppRecIDStartsWith(String value) { this.ExternalAppRecIDStartsWith = value; return this; } public String getExternalAppRecIDEndsWith() { return ExternalAppRecIDEndsWith; } public CN_ContactQuery setExternalAppRecIDEndsWith(String value) { this.ExternalAppRecIDEndsWith = value; return this; } public String getExternalAppRecIDContains() { return ExternalAppRecIDContains; } public CN_ContactQuery setExternalAppRecIDContains(String value) { this.ExternalAppRecIDContains = value; return this; } public String getExternalAppRecIDLike() { return ExternalAppRecIDLike; } public CN_ContactQuery setExternalAppRecIDLike(String value) { this.ExternalAppRecIDLike = value; return this; } public ArrayList getExternalAppRecIDBetween() { return ExternalAppRecIDBetween; } public CN_ContactQuery setExternalAppRecIDBetween(ArrayList value) { this.ExternalAppRecIDBetween = value; return this; } public ArrayList getExternalAppRecIDIn() { return ExternalAppRecIDIn; } public CN_ContactQuery setExternalAppRecIDIn(ArrayList value) { this.ExternalAppRecIDIn = value; return this; } public Boolean isDefaultContact() { return DefaultContact; } public CN_ContactQuery setDefaultContact(Boolean value) { this.DefaultContact = value; return this; } public Boolean isDebtorContact() { return DebtorContact; } public CN_ContactQuery setDebtorContact(Boolean value) { this.DebtorContact = value; return this; } public Boolean isCreditorContact() { return CreditorContact; } public CN_ContactQuery setCreditorContact(Boolean value) { this.CreditorContact = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public CN_ContactQuery setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getLastSavedDateTimeGreaterThanOrEqualTo() { return LastSavedDateTimeGreaterThanOrEqualTo; } public CN_ContactQuery setLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.LastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeGreaterThan() { return LastSavedDateTimeGreaterThan; } public CN_ContactQuery setLastSavedDateTimeGreaterThan(Date value) { this.LastSavedDateTimeGreaterThan = value; return this; } public Date getLastSavedDateTimeLessThan() { return LastSavedDateTimeLessThan; } public CN_ContactQuery setLastSavedDateTimeLessThan(Date value) { this.LastSavedDateTimeLessThan = value; return this; } public Date getLastSavedDateTimeLessThanOrEqualTo() { return LastSavedDateTimeLessThanOrEqualTo; } public CN_ContactQuery setLastSavedDateTimeLessThanOrEqualTo(Date value) { this.LastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeNotEqualTo() { return LastSavedDateTimeNotEqualTo; } public CN_ContactQuery setLastSavedDateTimeNotEqualTo(Date value) { this.LastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getLastSavedDateTimeBetween() { return LastSavedDateTimeBetween; } public CN_ContactQuery setLastSavedDateTimeBetween(ArrayList value) { this.LastSavedDateTimeBetween = value; return this; } public ArrayList getLastSavedDateTimeIn() { return LastSavedDateTimeIn; } public CN_ContactQuery setLastSavedDateTimeIn(ArrayList value) { this.LastSavedDateTimeIn = value; return this; } public Integer getItemNo() { return ItemNo; } public CN_ContactQuery setItemNo(Integer value) { this.ItemNo = value; return this; } public Integer getItemNoGreaterThanOrEqualTo() { return ItemNoGreaterThanOrEqualTo; } public CN_ContactQuery setItemNoGreaterThanOrEqualTo(Integer value) { this.ItemNoGreaterThanOrEqualTo = value; return this; } public Integer getItemNoGreaterThan() { return ItemNoGreaterThan; } public CN_ContactQuery setItemNoGreaterThan(Integer value) { this.ItemNoGreaterThan = value; return this; } public Integer getItemNoLessThan() { return ItemNoLessThan; } public CN_ContactQuery setItemNoLessThan(Integer value) { this.ItemNoLessThan = value; return this; } public Integer getItemNoLessThanOrEqualTo() { return ItemNoLessThanOrEqualTo; } public CN_ContactQuery setItemNoLessThanOrEqualTo(Integer value) { this.ItemNoLessThanOrEqualTo = value; return this; } public Integer getItemNoNotEqualTo() { return ItemNoNotEqualTo; } public CN_ContactQuery setItemNoNotEqualTo(Integer value) { this.ItemNoNotEqualTo = value; return this; } public ArrayList getItemNoBetween() { return ItemNoBetween; } public CN_ContactQuery setItemNoBetween(ArrayList value) { this.ItemNoBetween = value; return this; } public ArrayList getItemNoIn() { return ItemNoIn; } public CN_ContactQuery setItemNoIn(ArrayList value) { this.ItemNoIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class CN_ContactPositionQuery extends QueryDb implements IReturn> { public String ContactPositionID = null; public String ContactPositionIDStartsWith = null; public String ContactPositionIDEndsWith = null; public String ContactPositionIDContains = null; public String ContactPositionIDLike = null; public ArrayList ContactPositionIDBetween = null; public ArrayList ContactPositionIDIn = null; public Date LastSavedDateTime = null; public Date LastSavedDateTimeGreaterThanOrEqualTo = null; public Date LastSavedDateTimeGreaterThan = null; public Date LastSavedDateTimeLessThan = null; public Date LastSavedDateTimeLessThanOrEqualTo = null; public Date LastSavedDateTimeNotEqualTo = null; public ArrayList LastSavedDateTimeBetween = null; public ArrayList LastSavedDateTimeIn = null; public String Position = null; public String PositionStartsWith = null; public String PositionEndsWith = null; public String PositionContains = null; public String PositionLike = null; public ArrayList PositionBetween = null; public ArrayList PositionIn = null; public Boolean IsDefault = null; public String getContactPositionID() { return ContactPositionID; } public CN_ContactPositionQuery setContactPositionID(String value) { this.ContactPositionID = value; return this; } public String getContactPositionIDStartsWith() { return ContactPositionIDStartsWith; } public CN_ContactPositionQuery setContactPositionIDStartsWith(String value) { this.ContactPositionIDStartsWith = value; return this; } public String getContactPositionIDEndsWith() { return ContactPositionIDEndsWith; } public CN_ContactPositionQuery setContactPositionIDEndsWith(String value) { this.ContactPositionIDEndsWith = value; return this; } public String getContactPositionIDContains() { return ContactPositionIDContains; } public CN_ContactPositionQuery setContactPositionIDContains(String value) { this.ContactPositionIDContains = value; return this; } public String getContactPositionIDLike() { return ContactPositionIDLike; } public CN_ContactPositionQuery setContactPositionIDLike(String value) { this.ContactPositionIDLike = value; return this; } public ArrayList getContactPositionIDBetween() { return ContactPositionIDBetween; } public CN_ContactPositionQuery setContactPositionIDBetween(ArrayList value) { this.ContactPositionIDBetween = value; return this; } public ArrayList getContactPositionIDIn() { return ContactPositionIDIn; } public CN_ContactPositionQuery setContactPositionIDIn(ArrayList value) { this.ContactPositionIDIn = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public CN_ContactPositionQuery setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getLastSavedDateTimeGreaterThanOrEqualTo() { return LastSavedDateTimeGreaterThanOrEqualTo; } public CN_ContactPositionQuery setLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.LastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeGreaterThan() { return LastSavedDateTimeGreaterThan; } public CN_ContactPositionQuery setLastSavedDateTimeGreaterThan(Date value) { this.LastSavedDateTimeGreaterThan = value; return this; } public Date getLastSavedDateTimeLessThan() { return LastSavedDateTimeLessThan; } public CN_ContactPositionQuery setLastSavedDateTimeLessThan(Date value) { this.LastSavedDateTimeLessThan = value; return this; } public Date getLastSavedDateTimeLessThanOrEqualTo() { return LastSavedDateTimeLessThanOrEqualTo; } public CN_ContactPositionQuery setLastSavedDateTimeLessThanOrEqualTo(Date value) { this.LastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeNotEqualTo() { return LastSavedDateTimeNotEqualTo; } public CN_ContactPositionQuery setLastSavedDateTimeNotEqualTo(Date value) { this.LastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getLastSavedDateTimeBetween() { return LastSavedDateTimeBetween; } public CN_ContactPositionQuery setLastSavedDateTimeBetween(ArrayList value) { this.LastSavedDateTimeBetween = value; return this; } public ArrayList getLastSavedDateTimeIn() { return LastSavedDateTimeIn; } public CN_ContactPositionQuery setLastSavedDateTimeIn(ArrayList value) { this.LastSavedDateTimeIn = value; return this; } public String getPosition() { return Position; } public CN_ContactPositionQuery setPosition(String value) { this.Position = value; return this; } public String getPositionStartsWith() { return PositionStartsWith; } public CN_ContactPositionQuery setPositionStartsWith(String value) { this.PositionStartsWith = value; return this; } public String getPositionEndsWith() { return PositionEndsWith; } public CN_ContactPositionQuery setPositionEndsWith(String value) { this.PositionEndsWith = value; return this; } public String getPositionContains() { return PositionContains; } public CN_ContactPositionQuery setPositionContains(String value) { this.PositionContains = value; return this; } public String getPositionLike() { return PositionLike; } public CN_ContactPositionQuery setPositionLike(String value) { this.PositionLike = value; return this; } public ArrayList getPositionBetween() { return PositionBetween; } public CN_ContactPositionQuery setPositionBetween(ArrayList value) { this.PositionBetween = value; return this; } public ArrayList getPositionIn() { return PositionIn; } public CN_ContactPositionQuery setPositionIn(ArrayList value) { this.PositionIn = value; return this; } public Boolean getIsDefault() { return IsDefault; } public CN_ContactPositionQuery setIsDefault(Boolean value) { this.IsDefault = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class CN_DocumentsQuery extends QueryDb implements IReturn> { public String RecID = null; public String RecIDStartsWith = null; public String RecIDEndsWith = null; public String RecIDContains = null; public String RecIDLike = null; public ArrayList RecIDBetween = null; public ArrayList RecIDIn = null; public String ProspectID = null; public String ProspectIDStartsWith = null; public String ProspectIDEndsWith = null; public String ProspectIDContains = null; public String ProspectIDLike = null; public ArrayList ProspectIDBetween = null; public ArrayList ProspectIDIn = null; public String DocumentTypeID = null; public String DocumentTypeIDStartsWith = null; public String DocumentTypeIDEndsWith = null; public String DocumentTypeIDContains = null; public String DocumentTypeIDLike = null; public ArrayList DocumentTypeIDBetween = null; public ArrayList DocumentTypeIDIn = null; public Date LastSavedDateTime = null; public Date LastSavedDateTimeGreaterThanOrEqualTo = null; public Date LastSavedDateTimeGreaterThan = null; public Date LastSavedDateTimeLessThan = null; public Date LastSavedDateTimeLessThanOrEqualTo = null; public Date LastSavedDateTimeNotEqualTo = null; public ArrayList LastSavedDateTimeBetween = null; public ArrayList LastSavedDateTimeIn = null; public String LastSavedByStaffID = null; public String LastSavedByStaffIDStartsWith = null; public String LastSavedByStaffIDEndsWith = null; public String LastSavedByStaffIDContains = null; public String LastSavedByStaffIDLike = null; public ArrayList LastSavedByStaffIDBetween = null; public ArrayList LastSavedByStaffIDIn = null; public ArrayList FileBinary = null; public String Description = null; public String DescriptionStartsWith = null; public String DescriptionEndsWith = null; public String DescriptionContains = null; public String DescriptionLike = null; public ArrayList DescriptionBetween = null; public ArrayList DescriptionIn = null; public String PhysicalFileName = null; public String PhysicalFileNameStartsWith = null; public String PhysicalFileNameEndsWith = null; public String PhysicalFileNameContains = null; public String PhysicalFileNameLike = null; public ArrayList PhysicalFileNameBetween = null; public ArrayList PhysicalFileNameIn = null; public Integer ItemNo = null; public Integer ItemNoGreaterThanOrEqualTo = null; public Integer ItemNoGreaterThan = null; public Integer ItemNoLessThan = null; public Integer ItemNoLessThanOrEqualTo = null; public Integer ItemNoNotEqualTo = null; public ArrayList ItemNoBetween = null; public ArrayList ItemNoIn = null; public String getRecID() { return RecID; } public CN_DocumentsQuery setRecID(String value) { this.RecID = value; return this; } public String getRecIDStartsWith() { return RecIDStartsWith; } public CN_DocumentsQuery setRecIDStartsWith(String value) { this.RecIDStartsWith = value; return this; } public String getRecIDEndsWith() { return RecIDEndsWith; } public CN_DocumentsQuery setRecIDEndsWith(String value) { this.RecIDEndsWith = value; return this; } public String getRecIDContains() { return RecIDContains; } public CN_DocumentsQuery setRecIDContains(String value) { this.RecIDContains = value; return this; } public String getRecIDLike() { return RecIDLike; } public CN_DocumentsQuery setRecIDLike(String value) { this.RecIDLike = value; return this; } public ArrayList getRecIDBetween() { return RecIDBetween; } public CN_DocumentsQuery setRecIDBetween(ArrayList value) { this.RecIDBetween = value; return this; } public ArrayList getRecIDIn() { return RecIDIn; } public CN_DocumentsQuery setRecIDIn(ArrayList value) { this.RecIDIn = value; return this; } public String getProspectID() { return ProspectID; } public CN_DocumentsQuery setProspectID(String value) { this.ProspectID = value; return this; } public String getProspectIDStartsWith() { return ProspectIDStartsWith; } public CN_DocumentsQuery setProspectIDStartsWith(String value) { this.ProspectIDStartsWith = value; return this; } public String getProspectIDEndsWith() { return ProspectIDEndsWith; } public CN_DocumentsQuery setProspectIDEndsWith(String value) { this.ProspectIDEndsWith = value; return this; } public String getProspectIDContains() { return ProspectIDContains; } public CN_DocumentsQuery setProspectIDContains(String value) { this.ProspectIDContains = value; return this; } public String getProspectIDLike() { return ProspectIDLike; } public CN_DocumentsQuery setProspectIDLike(String value) { this.ProspectIDLike = value; return this; } public ArrayList getProspectIDBetween() { return ProspectIDBetween; } public CN_DocumentsQuery setProspectIDBetween(ArrayList value) { this.ProspectIDBetween = value; return this; } public ArrayList getProspectIDIn() { return ProspectIDIn; } public CN_DocumentsQuery setProspectIDIn(ArrayList value) { this.ProspectIDIn = value; return this; } public String getDocumentTypeID() { return DocumentTypeID; } public CN_DocumentsQuery setDocumentTypeID(String value) { this.DocumentTypeID = value; return this; } public String getDocumentTypeIDStartsWith() { return DocumentTypeIDStartsWith; } public CN_DocumentsQuery setDocumentTypeIDStartsWith(String value) { this.DocumentTypeIDStartsWith = value; return this; } public String getDocumentTypeIDEndsWith() { return DocumentTypeIDEndsWith; } public CN_DocumentsQuery setDocumentTypeIDEndsWith(String value) { this.DocumentTypeIDEndsWith = value; return this; } public String getDocumentTypeIDContains() { return DocumentTypeIDContains; } public CN_DocumentsQuery setDocumentTypeIDContains(String value) { this.DocumentTypeIDContains = value; return this; } public String getDocumentTypeIDLike() { return DocumentTypeIDLike; } public CN_DocumentsQuery setDocumentTypeIDLike(String value) { this.DocumentTypeIDLike = value; return this; } public ArrayList getDocumentTypeIDBetween() { return DocumentTypeIDBetween; } public CN_DocumentsQuery setDocumentTypeIDBetween(ArrayList value) { this.DocumentTypeIDBetween = value; return this; } public ArrayList getDocumentTypeIDIn() { return DocumentTypeIDIn; } public CN_DocumentsQuery setDocumentTypeIDIn(ArrayList value) { this.DocumentTypeIDIn = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public CN_DocumentsQuery setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getLastSavedDateTimeGreaterThanOrEqualTo() { return LastSavedDateTimeGreaterThanOrEqualTo; } public CN_DocumentsQuery setLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.LastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeGreaterThan() { return LastSavedDateTimeGreaterThan; } public CN_DocumentsQuery setLastSavedDateTimeGreaterThan(Date value) { this.LastSavedDateTimeGreaterThan = value; return this; } public Date getLastSavedDateTimeLessThan() { return LastSavedDateTimeLessThan; } public CN_DocumentsQuery setLastSavedDateTimeLessThan(Date value) { this.LastSavedDateTimeLessThan = value; return this; } public Date getLastSavedDateTimeLessThanOrEqualTo() { return LastSavedDateTimeLessThanOrEqualTo; } public CN_DocumentsQuery setLastSavedDateTimeLessThanOrEqualTo(Date value) { this.LastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeNotEqualTo() { return LastSavedDateTimeNotEqualTo; } public CN_DocumentsQuery setLastSavedDateTimeNotEqualTo(Date value) { this.LastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getLastSavedDateTimeBetween() { return LastSavedDateTimeBetween; } public CN_DocumentsQuery setLastSavedDateTimeBetween(ArrayList value) { this.LastSavedDateTimeBetween = value; return this; } public ArrayList getLastSavedDateTimeIn() { return LastSavedDateTimeIn; } public CN_DocumentsQuery setLastSavedDateTimeIn(ArrayList value) { this.LastSavedDateTimeIn = value; return this; } public String getLastSavedByStaffID() { return LastSavedByStaffID; } public CN_DocumentsQuery setLastSavedByStaffID(String value) { this.LastSavedByStaffID = value; return this; } public String getLastSavedByStaffIDStartsWith() { return LastSavedByStaffIDStartsWith; } public CN_DocumentsQuery setLastSavedByStaffIDStartsWith(String value) { this.LastSavedByStaffIDStartsWith = value; return this; } public String getLastSavedByStaffIDEndsWith() { return LastSavedByStaffIDEndsWith; } public CN_DocumentsQuery setLastSavedByStaffIDEndsWith(String value) { this.LastSavedByStaffIDEndsWith = value; return this; } public String getLastSavedByStaffIDContains() { return LastSavedByStaffIDContains; } public CN_DocumentsQuery setLastSavedByStaffIDContains(String value) { this.LastSavedByStaffIDContains = value; return this; } public String getLastSavedByStaffIDLike() { return LastSavedByStaffIDLike; } public CN_DocumentsQuery setLastSavedByStaffIDLike(String value) { this.LastSavedByStaffIDLike = value; return this; } public ArrayList getLastSavedByStaffIDBetween() { return LastSavedByStaffIDBetween; } public CN_DocumentsQuery setLastSavedByStaffIDBetween(ArrayList value) { this.LastSavedByStaffIDBetween = value; return this; } public ArrayList getLastSavedByStaffIDIn() { return LastSavedByStaffIDIn; } public CN_DocumentsQuery setLastSavedByStaffIDIn(ArrayList value) { this.LastSavedByStaffIDIn = value; return this; } public ArrayList getFileBinary() { return FileBinary; } public CN_DocumentsQuery setFileBinary(ArrayList value) { this.FileBinary = value; return this; } public String getDescription() { return Description; } public CN_DocumentsQuery setDescription(String value) { this.Description = value; return this; } public String getDescriptionStartsWith() { return DescriptionStartsWith; } public CN_DocumentsQuery setDescriptionStartsWith(String value) { this.DescriptionStartsWith = value; return this; } public String getDescriptionEndsWith() { return DescriptionEndsWith; } public CN_DocumentsQuery setDescriptionEndsWith(String value) { this.DescriptionEndsWith = value; return this; } public String getDescriptionContains() { return DescriptionContains; } public CN_DocumentsQuery setDescriptionContains(String value) { this.DescriptionContains = value; return this; } public String getDescriptionLike() { return DescriptionLike; } public CN_DocumentsQuery setDescriptionLike(String value) { this.DescriptionLike = value; return this; } public ArrayList getDescriptionBetween() { return DescriptionBetween; } public CN_DocumentsQuery setDescriptionBetween(ArrayList value) { this.DescriptionBetween = value; return this; } public ArrayList getDescriptionIn() { return DescriptionIn; } public CN_DocumentsQuery setDescriptionIn(ArrayList value) { this.DescriptionIn = value; return this; } public String getPhysicalFileName() { return PhysicalFileName; } public CN_DocumentsQuery setPhysicalFileName(String value) { this.PhysicalFileName = value; return this; } public String getPhysicalFileNameStartsWith() { return PhysicalFileNameStartsWith; } public CN_DocumentsQuery setPhysicalFileNameStartsWith(String value) { this.PhysicalFileNameStartsWith = value; return this; } public String getPhysicalFileNameEndsWith() { return PhysicalFileNameEndsWith; } public CN_DocumentsQuery setPhysicalFileNameEndsWith(String value) { this.PhysicalFileNameEndsWith = value; return this; } public String getPhysicalFileNameContains() { return PhysicalFileNameContains; } public CN_DocumentsQuery setPhysicalFileNameContains(String value) { this.PhysicalFileNameContains = value; return this; } public String getPhysicalFileNameLike() { return PhysicalFileNameLike; } public CN_DocumentsQuery setPhysicalFileNameLike(String value) { this.PhysicalFileNameLike = value; return this; } public ArrayList getPhysicalFileNameBetween() { return PhysicalFileNameBetween; } public CN_DocumentsQuery setPhysicalFileNameBetween(ArrayList value) { this.PhysicalFileNameBetween = value; return this; } public ArrayList getPhysicalFileNameIn() { return PhysicalFileNameIn; } public CN_DocumentsQuery setPhysicalFileNameIn(ArrayList value) { this.PhysicalFileNameIn = value; return this; } public Integer getItemNo() { return ItemNo; } public CN_DocumentsQuery setItemNo(Integer value) { this.ItemNo = value; return this; } public Integer getItemNoGreaterThanOrEqualTo() { return ItemNoGreaterThanOrEqualTo; } public CN_DocumentsQuery setItemNoGreaterThanOrEqualTo(Integer value) { this.ItemNoGreaterThanOrEqualTo = value; return this; } public Integer getItemNoGreaterThan() { return ItemNoGreaterThan; } public CN_DocumentsQuery setItemNoGreaterThan(Integer value) { this.ItemNoGreaterThan = value; return this; } public Integer getItemNoLessThan() { return ItemNoLessThan; } public CN_DocumentsQuery setItemNoLessThan(Integer value) { this.ItemNoLessThan = value; return this; } public Integer getItemNoLessThanOrEqualTo() { return ItemNoLessThanOrEqualTo; } public CN_DocumentsQuery setItemNoLessThanOrEqualTo(Integer value) { this.ItemNoLessThanOrEqualTo = value; return this; } public Integer getItemNoNotEqualTo() { return ItemNoNotEqualTo; } public CN_DocumentsQuery setItemNoNotEqualTo(Integer value) { this.ItemNoNotEqualTo = value; return this; } public ArrayList getItemNoBetween() { return ItemNoBetween; } public CN_DocumentsQuery setItemNoBetween(ArrayList value) { this.ItemNoBetween = value; return this; } public ArrayList getItemNoIn() { return ItemNoIn; } public CN_DocumentsQuery setItemNoIn(ArrayList value) { this.ItemNoIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class CN_GroupQuery extends QueryDb implements IReturn> { public String GroupID = null; public String GroupIDStartsWith = null; public String GroupIDEndsWith = null; public String GroupIDContains = null; public String GroupIDLike = null; public ArrayList GroupIDBetween = null; public ArrayList GroupIDIn = null; public Date LastSavedDateTime = null; public Date LastSavedDateTimeGreaterThanOrEqualTo = null; public Date LastSavedDateTimeGreaterThan = null; public Date LastSavedDateTimeLessThan = null; public Date LastSavedDateTimeLessThanOrEqualTo = null; public Date LastSavedDateTimeNotEqualTo = null; public ArrayList LastSavedDateTimeBetween = null; public ArrayList LastSavedDateTimeIn = null; public String Description = null; public String DescriptionStartsWith = null; public String DescriptionEndsWith = null; public String DescriptionContains = null; public String DescriptionLike = null; public ArrayList DescriptionBetween = null; public ArrayList DescriptionIn = null; public String getGroupID() { return GroupID; } public CN_GroupQuery setGroupID(String value) { this.GroupID = value; return this; } public String getGroupIDStartsWith() { return GroupIDStartsWith; } public CN_GroupQuery setGroupIDStartsWith(String value) { this.GroupIDStartsWith = value; return this; } public String getGroupIDEndsWith() { return GroupIDEndsWith; } public CN_GroupQuery setGroupIDEndsWith(String value) { this.GroupIDEndsWith = value; return this; } public String getGroupIDContains() { return GroupIDContains; } public CN_GroupQuery setGroupIDContains(String value) { this.GroupIDContains = value; return this; } public String getGroupIDLike() { return GroupIDLike; } public CN_GroupQuery setGroupIDLike(String value) { this.GroupIDLike = value; return this; } public ArrayList getGroupIDBetween() { return GroupIDBetween; } public CN_GroupQuery setGroupIDBetween(ArrayList value) { this.GroupIDBetween = value; return this; } public ArrayList getGroupIDIn() { return GroupIDIn; } public CN_GroupQuery setGroupIDIn(ArrayList value) { this.GroupIDIn = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public CN_GroupQuery setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getLastSavedDateTimeGreaterThanOrEqualTo() { return LastSavedDateTimeGreaterThanOrEqualTo; } public CN_GroupQuery setLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.LastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeGreaterThan() { return LastSavedDateTimeGreaterThan; } public CN_GroupQuery setLastSavedDateTimeGreaterThan(Date value) { this.LastSavedDateTimeGreaterThan = value; return this; } public Date getLastSavedDateTimeLessThan() { return LastSavedDateTimeLessThan; } public CN_GroupQuery setLastSavedDateTimeLessThan(Date value) { this.LastSavedDateTimeLessThan = value; return this; } public Date getLastSavedDateTimeLessThanOrEqualTo() { return LastSavedDateTimeLessThanOrEqualTo; } public CN_GroupQuery setLastSavedDateTimeLessThanOrEqualTo(Date value) { this.LastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeNotEqualTo() { return LastSavedDateTimeNotEqualTo; } public CN_GroupQuery setLastSavedDateTimeNotEqualTo(Date value) { this.LastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getLastSavedDateTimeBetween() { return LastSavedDateTimeBetween; } public CN_GroupQuery setLastSavedDateTimeBetween(ArrayList value) { this.LastSavedDateTimeBetween = value; return this; } public ArrayList getLastSavedDateTimeIn() { return LastSavedDateTimeIn; } public CN_GroupQuery setLastSavedDateTimeIn(ArrayList value) { this.LastSavedDateTimeIn = value; return this; } public String getDescription() { return Description; } public CN_GroupQuery setDescription(String value) { this.Description = value; return this; } public String getDescriptionStartsWith() { return DescriptionStartsWith; } public CN_GroupQuery setDescriptionStartsWith(String value) { this.DescriptionStartsWith = value; return this; } public String getDescriptionEndsWith() { return DescriptionEndsWith; } public CN_GroupQuery setDescriptionEndsWith(String value) { this.DescriptionEndsWith = value; return this; } public String getDescriptionContains() { return DescriptionContains; } public CN_GroupQuery setDescriptionContains(String value) { this.DescriptionContains = value; return this; } public String getDescriptionLike() { return DescriptionLike; } public CN_GroupQuery setDescriptionLike(String value) { this.DescriptionLike = value; return this; } public ArrayList getDescriptionBetween() { return DescriptionBetween; } public CN_GroupQuery setDescriptionBetween(ArrayList value) { this.DescriptionBetween = value; return this; } public ArrayList getDescriptionIn() { return DescriptionIn; } public CN_GroupQuery setDescriptionIn(ArrayList value) { this.DescriptionIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class CN_GroupLinkQuery extends QueryDb implements IReturn> { public String LinkID = null; public String LinkIDStartsWith = null; public String LinkIDEndsWith = null; public String LinkIDContains = null; public String LinkIDLike = null; public ArrayList LinkIDBetween = null; public ArrayList LinkIDIn = null; public String GroupID = null; public String GroupIDStartsWith = null; public String GroupIDEndsWith = null; public String GroupIDContains = null; public String GroupIDLike = null; public ArrayList GroupIDBetween = null; public ArrayList GroupIDIn = null; public String ProspectID = null; public String ProspectIDStartsWith = null; public String ProspectIDEndsWith = null; public String ProspectIDContains = null; public String ProspectIDLike = null; public ArrayList ProspectIDBetween = null; public ArrayList ProspectIDIn = null; public String StaffID = null; public String StaffIDStartsWith = null; public String StaffIDEndsWith = null; public String StaffIDContains = null; public String StaffIDLike = null; public ArrayList StaffIDBetween = null; public ArrayList StaffIDIn = null; public Boolean DefaultItem = null; public Date LastSavedDateTime = null; public Date LastSavedDateTimeGreaterThanOrEqualTo = null; public Date LastSavedDateTimeGreaterThan = null; public Date LastSavedDateTimeLessThan = null; public Date LastSavedDateTimeLessThanOrEqualTo = null; public Date LastSavedDateTimeNotEqualTo = null; public ArrayList LastSavedDateTimeBetween = null; public ArrayList LastSavedDateTimeIn = null; public Integer ItemNo = null; public Integer ItemNoGreaterThanOrEqualTo = null; public Integer ItemNoGreaterThan = null; public Integer ItemNoLessThan = null; public Integer ItemNoLessThanOrEqualTo = null; public Integer ItemNoNotEqualTo = null; public ArrayList ItemNoBetween = null; public ArrayList ItemNoIn = null; public String getLinkID() { return LinkID; } public CN_GroupLinkQuery setLinkID(String value) { this.LinkID = value; return this; } public String getLinkIDStartsWith() { return LinkIDStartsWith; } public CN_GroupLinkQuery setLinkIDStartsWith(String value) { this.LinkIDStartsWith = value; return this; } public String getLinkIDEndsWith() { return LinkIDEndsWith; } public CN_GroupLinkQuery setLinkIDEndsWith(String value) { this.LinkIDEndsWith = value; return this; } public String getLinkIDContains() { return LinkIDContains; } public CN_GroupLinkQuery setLinkIDContains(String value) { this.LinkIDContains = value; return this; } public String getLinkIDLike() { return LinkIDLike; } public CN_GroupLinkQuery setLinkIDLike(String value) { this.LinkIDLike = value; return this; } public ArrayList getLinkIDBetween() { return LinkIDBetween; } public CN_GroupLinkQuery setLinkIDBetween(ArrayList value) { this.LinkIDBetween = value; return this; } public ArrayList getLinkIDIn() { return LinkIDIn; } public CN_GroupLinkQuery setLinkIDIn(ArrayList value) { this.LinkIDIn = value; return this; } public String getGroupID() { return GroupID; } public CN_GroupLinkQuery setGroupID(String value) { this.GroupID = value; return this; } public String getGroupIDStartsWith() { return GroupIDStartsWith; } public CN_GroupLinkQuery setGroupIDStartsWith(String value) { this.GroupIDStartsWith = value; return this; } public String getGroupIDEndsWith() { return GroupIDEndsWith; } public CN_GroupLinkQuery setGroupIDEndsWith(String value) { this.GroupIDEndsWith = value; return this; } public String getGroupIDContains() { return GroupIDContains; } public CN_GroupLinkQuery setGroupIDContains(String value) { this.GroupIDContains = value; return this; } public String getGroupIDLike() { return GroupIDLike; } public CN_GroupLinkQuery setGroupIDLike(String value) { this.GroupIDLike = value; return this; } public ArrayList getGroupIDBetween() { return GroupIDBetween; } public CN_GroupLinkQuery setGroupIDBetween(ArrayList value) { this.GroupIDBetween = value; return this; } public ArrayList getGroupIDIn() { return GroupIDIn; } public CN_GroupLinkQuery setGroupIDIn(ArrayList value) { this.GroupIDIn = value; return this; } public String getProspectID() { return ProspectID; } public CN_GroupLinkQuery setProspectID(String value) { this.ProspectID = value; return this; } public String getProspectIDStartsWith() { return ProspectIDStartsWith; } public CN_GroupLinkQuery setProspectIDStartsWith(String value) { this.ProspectIDStartsWith = value; return this; } public String getProspectIDEndsWith() { return ProspectIDEndsWith; } public CN_GroupLinkQuery setProspectIDEndsWith(String value) { this.ProspectIDEndsWith = value; return this; } public String getProspectIDContains() { return ProspectIDContains; } public CN_GroupLinkQuery setProspectIDContains(String value) { this.ProspectIDContains = value; return this; } public String getProspectIDLike() { return ProspectIDLike; } public CN_GroupLinkQuery setProspectIDLike(String value) { this.ProspectIDLike = value; return this; } public ArrayList getProspectIDBetween() { return ProspectIDBetween; } public CN_GroupLinkQuery setProspectIDBetween(ArrayList value) { this.ProspectIDBetween = value; return this; } public ArrayList getProspectIDIn() { return ProspectIDIn; } public CN_GroupLinkQuery setProspectIDIn(ArrayList value) { this.ProspectIDIn = value; return this; } public String getStaffID() { return StaffID; } public CN_GroupLinkQuery setStaffID(String value) { this.StaffID = value; return this; } public String getStaffIDStartsWith() { return StaffIDStartsWith; } public CN_GroupLinkQuery setStaffIDStartsWith(String value) { this.StaffIDStartsWith = value; return this; } public String getStaffIDEndsWith() { return StaffIDEndsWith; } public CN_GroupLinkQuery setStaffIDEndsWith(String value) { this.StaffIDEndsWith = value; return this; } public String getStaffIDContains() { return StaffIDContains; } public CN_GroupLinkQuery setStaffIDContains(String value) { this.StaffIDContains = value; return this; } public String getStaffIDLike() { return StaffIDLike; } public CN_GroupLinkQuery setStaffIDLike(String value) { this.StaffIDLike = value; return this; } public ArrayList getStaffIDBetween() { return StaffIDBetween; } public CN_GroupLinkQuery setStaffIDBetween(ArrayList value) { this.StaffIDBetween = value; return this; } public ArrayList getStaffIDIn() { return StaffIDIn; } public CN_GroupLinkQuery setStaffIDIn(ArrayList value) { this.StaffIDIn = value; return this; } public Boolean isDefaultItem() { return DefaultItem; } public CN_GroupLinkQuery setDefaultItem(Boolean value) { this.DefaultItem = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public CN_GroupLinkQuery setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getLastSavedDateTimeGreaterThanOrEqualTo() { return LastSavedDateTimeGreaterThanOrEqualTo; } public CN_GroupLinkQuery setLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.LastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeGreaterThan() { return LastSavedDateTimeGreaterThan; } public CN_GroupLinkQuery setLastSavedDateTimeGreaterThan(Date value) { this.LastSavedDateTimeGreaterThan = value; return this; } public Date getLastSavedDateTimeLessThan() { return LastSavedDateTimeLessThan; } public CN_GroupLinkQuery setLastSavedDateTimeLessThan(Date value) { this.LastSavedDateTimeLessThan = value; return this; } public Date getLastSavedDateTimeLessThanOrEqualTo() { return LastSavedDateTimeLessThanOrEqualTo; } public CN_GroupLinkQuery setLastSavedDateTimeLessThanOrEqualTo(Date value) { this.LastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeNotEqualTo() { return LastSavedDateTimeNotEqualTo; } public CN_GroupLinkQuery setLastSavedDateTimeNotEqualTo(Date value) { this.LastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getLastSavedDateTimeBetween() { return LastSavedDateTimeBetween; } public CN_GroupLinkQuery setLastSavedDateTimeBetween(ArrayList value) { this.LastSavedDateTimeBetween = value; return this; } public ArrayList getLastSavedDateTimeIn() { return LastSavedDateTimeIn; } public CN_GroupLinkQuery setLastSavedDateTimeIn(ArrayList value) { this.LastSavedDateTimeIn = value; return this; } public Integer getItemNo() { return ItemNo; } public CN_GroupLinkQuery setItemNo(Integer value) { this.ItemNo = value; return this; } public Integer getItemNoGreaterThanOrEqualTo() { return ItemNoGreaterThanOrEqualTo; } public CN_GroupLinkQuery setItemNoGreaterThanOrEqualTo(Integer value) { this.ItemNoGreaterThanOrEqualTo = value; return this; } public Integer getItemNoGreaterThan() { return ItemNoGreaterThan; } public CN_GroupLinkQuery setItemNoGreaterThan(Integer value) { this.ItemNoGreaterThan = value; return this; } public Integer getItemNoLessThan() { return ItemNoLessThan; } public CN_GroupLinkQuery setItemNoLessThan(Integer value) { this.ItemNoLessThan = value; return this; } public Integer getItemNoLessThanOrEqualTo() { return ItemNoLessThanOrEqualTo; } public CN_GroupLinkQuery setItemNoLessThanOrEqualTo(Integer value) { this.ItemNoLessThanOrEqualTo = value; return this; } public Integer getItemNoNotEqualTo() { return ItemNoNotEqualTo; } public CN_GroupLinkQuery setItemNoNotEqualTo(Integer value) { this.ItemNoNotEqualTo = value; return this; } public ArrayList getItemNoBetween() { return ItemNoBetween; } public CN_GroupLinkQuery setItemNoBetween(ArrayList value) { this.ItemNoBetween = value; return this; } public ArrayList getItemNoIn() { return ItemNoIn; } public CN_GroupLinkQuery setItemNoIn(ArrayList value) { this.ItemNoIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class CN_MainQuery extends QueryDb implements IReturn> { public String ProspectID = null; public String ProspectIDStartsWith = null; public String ProspectIDEndsWith = null; public String ProspectIDContains = null; public String ProspectIDLike = null; public ArrayList ProspectIDBetween = null; public ArrayList ProspectIDIn = null; public Date LastSavedDateTime = null; public Date LastSavedDateTimeGreaterThanOrEqualTo = null; public Date LastSavedDateTimeGreaterThan = null; public Date LastSavedDateTimeLessThan = null; public Date LastSavedDateTimeLessThanOrEqualTo = null; public Date LastSavedDateTimeNotEqualTo = null; public ArrayList LastSavedDateTimeBetween = null; public ArrayList LastSavedDateTimeIn = null; public String ProspectNumber = null; public String ProspectNumberStartsWith = null; public String ProspectNumberEndsWith = null; public String ProspectNumberContains = null; public String ProspectNumberLike = null; public ArrayList ProspectNumberBetween = null; public ArrayList ProspectNumberIn = null; public String CompanyName = null; public String CompanyNameStartsWith = null; public String CompanyNameEndsWith = null; public String CompanyNameContains = null; public String CompanyNameLike = null; public ArrayList CompanyNameBetween = null; public ArrayList CompanyNameIn = null; public String Address1 = null; public String Address1StartsWith = null; public String Address1EndsWith = null; public String Address1Contains = null; public String Address1Like = null; public ArrayList Address1Between = null; public ArrayList Address1In = null; public String Address2 = null; public String Address2StartsWith = null; public String Address2EndsWith = null; public String Address2Contains = null; public String Address2Like = null; public ArrayList Address2Between = null; public ArrayList Address2In = null; public String Address3 = null; public String Address3StartsWith = null; public String Address3EndsWith = null; public String Address3Contains = null; public String Address3Like = null; public ArrayList Address3Between = null; public ArrayList Address3In = null; public String State = null; public String StateStartsWith = null; public String StateEndsWith = null; public String StateContains = null; public String StateLike = null; public ArrayList StateBetween = null; public ArrayList StateIn = null; public String PostCode = null; public String PostCodeStartsWith = null; public String PostCodeEndsWith = null; public String PostCodeContains = null; public String PostCodeLike = null; public ArrayList PostCodeBetween = null; public ArrayList PostCodeIn = null; public String Phone = null; public String PhoneStartsWith = null; public String PhoneEndsWith = null; public String PhoneContains = null; public String PhoneLike = null; public ArrayList PhoneBetween = null; public ArrayList PhoneIn = null; public String Fax = null; public String FaxStartsWith = null; public String FaxEndsWith = null; public String FaxContains = null; public String FaxLike = null; public ArrayList FaxBetween = null; public ArrayList FaxIn = null; public String EmailAddress = null; public String EmailAddressStartsWith = null; public String EmailAddressEndsWith = null; public String EmailAddressContains = null; public String EmailAddressLike = null; public ArrayList EmailAddressBetween = null; public ArrayList EmailAddressIn = null; public String CRAccountNo = null; public String CRAccountNoStartsWith = null; public String CRAccountNoEndsWith = null; public String CRAccountNoContains = null; public String CRAccountNoLike = null; public ArrayList CRAccountNoBetween = null; public ArrayList CRAccountNoIn = null; public String DBAccountNo = null; public String DBAccountNoStartsWith = null; public String DBAccountNoEndsWith = null; public String DBAccountNoContains = null; public String DBAccountNoLike = null; public ArrayList DBAccountNoBetween = null; public ArrayList DBAccountNoIn = null; public String CreditorID = null; public String CreditorIDStartsWith = null; public String CreditorIDEndsWith = null; public String CreditorIDContains = null; public String CreditorIDLike = null; public ArrayList CreditorIDBetween = null; public ArrayList CreditorIDIn = null; public String DebtorID = null; public String DebtorIDStartsWith = null; public String DebtorIDEndsWith = null; public String DebtorIDContains = null; public String DebtorIDLike = null; public ArrayList DebtorIDBetween = null; public ArrayList DebtorIDIn = null; public String ExternalAppRecID = null; public String ExternalAppRecIDStartsWith = null; public String ExternalAppRecIDEndsWith = null; public String ExternalAppRecIDContains = null; public String ExternalAppRecIDLike = null; public ArrayList ExternalAppRecIDBetween = null; public ArrayList ExternalAppRecIDIn = null; public String AustPostDPID = null; public String AustPostDPIDStartsWith = null; public String AustPostDPIDEndsWith = null; public String AustPostDPIDContains = null; public String AustPostDPIDLike = null; public ArrayList AustPostDPIDBetween = null; public ArrayList AustPostDPIDIn = null; public String AustPostBCSP = null; public String AustPostBCSPStartsWith = null; public String AustPostBCSPEndsWith = null; public String AustPostBCSPContains = null; public String AustPostBCSPLike = null; public ArrayList AustPostBCSPBetween = null; public ArrayList AustPostBCSPIn = null; public String Country = null; public String CountryStartsWith = null; public String CountryEndsWith = null; public String CountryContains = null; public String CountryLike = null; public ArrayList CountryBetween = null; public ArrayList CountryIn = null; public String getProspectID() { return ProspectID; } public CN_MainQuery setProspectID(String value) { this.ProspectID = value; return this; } public String getProspectIDStartsWith() { return ProspectIDStartsWith; } public CN_MainQuery setProspectIDStartsWith(String value) { this.ProspectIDStartsWith = value; return this; } public String getProspectIDEndsWith() { return ProspectIDEndsWith; } public CN_MainQuery setProspectIDEndsWith(String value) { this.ProspectIDEndsWith = value; return this; } public String getProspectIDContains() { return ProspectIDContains; } public CN_MainQuery setProspectIDContains(String value) { this.ProspectIDContains = value; return this; } public String getProspectIDLike() { return ProspectIDLike; } public CN_MainQuery setProspectIDLike(String value) { this.ProspectIDLike = value; return this; } public ArrayList getProspectIDBetween() { return ProspectIDBetween; } public CN_MainQuery setProspectIDBetween(ArrayList value) { this.ProspectIDBetween = value; return this; } public ArrayList getProspectIDIn() { return ProspectIDIn; } public CN_MainQuery setProspectIDIn(ArrayList value) { this.ProspectIDIn = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public CN_MainQuery setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getLastSavedDateTimeGreaterThanOrEqualTo() { return LastSavedDateTimeGreaterThanOrEqualTo; } public CN_MainQuery setLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.LastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeGreaterThan() { return LastSavedDateTimeGreaterThan; } public CN_MainQuery setLastSavedDateTimeGreaterThan(Date value) { this.LastSavedDateTimeGreaterThan = value; return this; } public Date getLastSavedDateTimeLessThan() { return LastSavedDateTimeLessThan; } public CN_MainQuery setLastSavedDateTimeLessThan(Date value) { this.LastSavedDateTimeLessThan = value; return this; } public Date getLastSavedDateTimeLessThanOrEqualTo() { return LastSavedDateTimeLessThanOrEqualTo; } public CN_MainQuery setLastSavedDateTimeLessThanOrEqualTo(Date value) { this.LastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeNotEqualTo() { return LastSavedDateTimeNotEqualTo; } public CN_MainQuery setLastSavedDateTimeNotEqualTo(Date value) { this.LastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getLastSavedDateTimeBetween() { return LastSavedDateTimeBetween; } public CN_MainQuery setLastSavedDateTimeBetween(ArrayList value) { this.LastSavedDateTimeBetween = value; return this; } public ArrayList getLastSavedDateTimeIn() { return LastSavedDateTimeIn; } public CN_MainQuery setLastSavedDateTimeIn(ArrayList value) { this.LastSavedDateTimeIn = value; return this; } public String getProspectNumber() { return ProspectNumber; } public CN_MainQuery setProspectNumber(String value) { this.ProspectNumber = value; return this; } public String getProspectNumberStartsWith() { return ProspectNumberStartsWith; } public CN_MainQuery setProspectNumberStartsWith(String value) { this.ProspectNumberStartsWith = value; return this; } public String getProspectNumberEndsWith() { return ProspectNumberEndsWith; } public CN_MainQuery setProspectNumberEndsWith(String value) { this.ProspectNumberEndsWith = value; return this; } public String getProspectNumberContains() { return ProspectNumberContains; } public CN_MainQuery setProspectNumberContains(String value) { this.ProspectNumberContains = value; return this; } public String getProspectNumberLike() { return ProspectNumberLike; } public CN_MainQuery setProspectNumberLike(String value) { this.ProspectNumberLike = value; return this; } public ArrayList getProspectNumberBetween() { return ProspectNumberBetween; } public CN_MainQuery setProspectNumberBetween(ArrayList value) { this.ProspectNumberBetween = value; return this; } public ArrayList getProspectNumberIn() { return ProspectNumberIn; } public CN_MainQuery setProspectNumberIn(ArrayList value) { this.ProspectNumberIn = value; return this; } public String getCompanyName() { return CompanyName; } public CN_MainQuery setCompanyName(String value) { this.CompanyName = value; return this; } public String getCompanyNameStartsWith() { return CompanyNameStartsWith; } public CN_MainQuery setCompanyNameStartsWith(String value) { this.CompanyNameStartsWith = value; return this; } public String getCompanyNameEndsWith() { return CompanyNameEndsWith; } public CN_MainQuery setCompanyNameEndsWith(String value) { this.CompanyNameEndsWith = value; return this; } public String getCompanyNameContains() { return CompanyNameContains; } public CN_MainQuery setCompanyNameContains(String value) { this.CompanyNameContains = value; return this; } public String getCompanyNameLike() { return CompanyNameLike; } public CN_MainQuery setCompanyNameLike(String value) { this.CompanyNameLike = value; return this; } public ArrayList getCompanyNameBetween() { return CompanyNameBetween; } public CN_MainQuery setCompanyNameBetween(ArrayList value) { this.CompanyNameBetween = value; return this; } public ArrayList getCompanyNameIn() { return CompanyNameIn; } public CN_MainQuery setCompanyNameIn(ArrayList value) { this.CompanyNameIn = value; return this; } public String getAddress1() { return Address1; } public CN_MainQuery setAddress1(String value) { this.Address1 = value; return this; } public String getAddress1StartsWith() { return Address1StartsWith; } public CN_MainQuery setAddress1StartsWith(String value) { this.Address1StartsWith = value; return this; } public String getAddress1EndsWith() { return Address1EndsWith; } public CN_MainQuery setAddress1EndsWith(String value) { this.Address1EndsWith = value; return this; } public String getAddress1Contains() { return Address1Contains; } public CN_MainQuery setAddress1Contains(String value) { this.Address1Contains = value; return this; } public String getAddress1Like() { return Address1Like; } public CN_MainQuery setAddress1Like(String value) { this.Address1Like = value; return this; } public ArrayList getAddress1Between() { return Address1Between; } public CN_MainQuery setAddress1Between(ArrayList value) { this.Address1Between = value; return this; } public ArrayList getAddress1In() { return Address1In; } public CN_MainQuery setAddress1In(ArrayList value) { this.Address1In = value; return this; } public String getAddress2() { return Address2; } public CN_MainQuery setAddress2(String value) { this.Address2 = value; return this; } public String getAddress2StartsWith() { return Address2StartsWith; } public CN_MainQuery setAddress2StartsWith(String value) { this.Address2StartsWith = value; return this; } public String getAddress2EndsWith() { return Address2EndsWith; } public CN_MainQuery setAddress2EndsWith(String value) { this.Address2EndsWith = value; return this; } public String getAddress2Contains() { return Address2Contains; } public CN_MainQuery setAddress2Contains(String value) { this.Address2Contains = value; return this; } public String getAddress2Like() { return Address2Like; } public CN_MainQuery setAddress2Like(String value) { this.Address2Like = value; return this; } public ArrayList getAddress2Between() { return Address2Between; } public CN_MainQuery setAddress2Between(ArrayList value) { this.Address2Between = value; return this; } public ArrayList getAddress2In() { return Address2In; } public CN_MainQuery setAddress2In(ArrayList value) { this.Address2In = value; return this; } public String getAddress3() { return Address3; } public CN_MainQuery setAddress3(String value) { this.Address3 = value; return this; } public String getAddress3StartsWith() { return Address3StartsWith; } public CN_MainQuery setAddress3StartsWith(String value) { this.Address3StartsWith = value; return this; } public String getAddress3EndsWith() { return Address3EndsWith; } public CN_MainQuery setAddress3EndsWith(String value) { this.Address3EndsWith = value; return this; } public String getAddress3Contains() { return Address3Contains; } public CN_MainQuery setAddress3Contains(String value) { this.Address3Contains = value; return this; } public String getAddress3Like() { return Address3Like; } public CN_MainQuery setAddress3Like(String value) { this.Address3Like = value; return this; } public ArrayList getAddress3Between() { return Address3Between; } public CN_MainQuery setAddress3Between(ArrayList value) { this.Address3Between = value; return this; } public ArrayList getAddress3In() { return Address3In; } public CN_MainQuery setAddress3In(ArrayList value) { this.Address3In = value; return this; } public String getState() { return State; } public CN_MainQuery setState(String value) { this.State = value; return this; } public String getStateStartsWith() { return StateStartsWith; } public CN_MainQuery setStateStartsWith(String value) { this.StateStartsWith = value; return this; } public String getStateEndsWith() { return StateEndsWith; } public CN_MainQuery setStateEndsWith(String value) { this.StateEndsWith = value; return this; } public String getStateContains() { return StateContains; } public CN_MainQuery setStateContains(String value) { this.StateContains = value; return this; } public String getStateLike() { return StateLike; } public CN_MainQuery setStateLike(String value) { this.StateLike = value; return this; } public ArrayList getStateBetween() { return StateBetween; } public CN_MainQuery setStateBetween(ArrayList value) { this.StateBetween = value; return this; } public ArrayList getStateIn() { return StateIn; } public CN_MainQuery setStateIn(ArrayList value) { this.StateIn = value; return this; } public String getPostCode() { return PostCode; } public CN_MainQuery setPostCode(String value) { this.PostCode = value; return this; } public String getPostCodeStartsWith() { return PostCodeStartsWith; } public CN_MainQuery setPostCodeStartsWith(String value) { this.PostCodeStartsWith = value; return this; } public String getPostCodeEndsWith() { return PostCodeEndsWith; } public CN_MainQuery setPostCodeEndsWith(String value) { this.PostCodeEndsWith = value; return this; } public String getPostCodeContains() { return PostCodeContains; } public CN_MainQuery setPostCodeContains(String value) { this.PostCodeContains = value; return this; } public String getPostCodeLike() { return PostCodeLike; } public CN_MainQuery setPostCodeLike(String value) { this.PostCodeLike = value; return this; } public ArrayList getPostCodeBetween() { return PostCodeBetween; } public CN_MainQuery setPostCodeBetween(ArrayList value) { this.PostCodeBetween = value; return this; } public ArrayList getPostCodeIn() { return PostCodeIn; } public CN_MainQuery setPostCodeIn(ArrayList value) { this.PostCodeIn = value; return this; } public String getPhone() { return Phone; } public CN_MainQuery setPhone(String value) { this.Phone = value; return this; } public String getPhoneStartsWith() { return PhoneStartsWith; } public CN_MainQuery setPhoneStartsWith(String value) { this.PhoneStartsWith = value; return this; } public String getPhoneEndsWith() { return PhoneEndsWith; } public CN_MainQuery setPhoneEndsWith(String value) { this.PhoneEndsWith = value; return this; } public String getPhoneContains() { return PhoneContains; } public CN_MainQuery setPhoneContains(String value) { this.PhoneContains = value; return this; } public String getPhoneLike() { return PhoneLike; } public CN_MainQuery setPhoneLike(String value) { this.PhoneLike = value; return this; } public ArrayList getPhoneBetween() { return PhoneBetween; } public CN_MainQuery setPhoneBetween(ArrayList value) { this.PhoneBetween = value; return this; } public ArrayList getPhoneIn() { return PhoneIn; } public CN_MainQuery setPhoneIn(ArrayList value) { this.PhoneIn = value; return this; } public String getFax() { return Fax; } public CN_MainQuery setFax(String value) { this.Fax = value; return this; } public String getFaxStartsWith() { return FaxStartsWith; } public CN_MainQuery setFaxStartsWith(String value) { this.FaxStartsWith = value; return this; } public String getFaxEndsWith() { return FaxEndsWith; } public CN_MainQuery setFaxEndsWith(String value) { this.FaxEndsWith = value; return this; } public String getFaxContains() { return FaxContains; } public CN_MainQuery setFaxContains(String value) { this.FaxContains = value; return this; } public String getFaxLike() { return FaxLike; } public CN_MainQuery setFaxLike(String value) { this.FaxLike = value; return this; } public ArrayList getFaxBetween() { return FaxBetween; } public CN_MainQuery setFaxBetween(ArrayList value) { this.FaxBetween = value; return this; } public ArrayList getFaxIn() { return FaxIn; } public CN_MainQuery setFaxIn(ArrayList value) { this.FaxIn = value; return this; } public String getEmailAddress() { return EmailAddress; } public CN_MainQuery setEmailAddress(String value) { this.EmailAddress = value; return this; } public String getEmailAddressStartsWith() { return EmailAddressStartsWith; } public CN_MainQuery setEmailAddressStartsWith(String value) { this.EmailAddressStartsWith = value; return this; } public String getEmailAddressEndsWith() { return EmailAddressEndsWith; } public CN_MainQuery setEmailAddressEndsWith(String value) { this.EmailAddressEndsWith = value; return this; } public String getEmailAddressContains() { return EmailAddressContains; } public CN_MainQuery setEmailAddressContains(String value) { this.EmailAddressContains = value; return this; } public String getEmailAddressLike() { return EmailAddressLike; } public CN_MainQuery setEmailAddressLike(String value) { this.EmailAddressLike = value; return this; } public ArrayList getEmailAddressBetween() { return EmailAddressBetween; } public CN_MainQuery setEmailAddressBetween(ArrayList value) { this.EmailAddressBetween = value; return this; } public ArrayList getEmailAddressIn() { return EmailAddressIn; } public CN_MainQuery setEmailAddressIn(ArrayList value) { this.EmailAddressIn = value; return this; } public String getCrAccountNo() { return CRAccountNo; } public CN_MainQuery setCrAccountNo(String value) { this.CRAccountNo = value; return this; } public String getCrAccountNoStartsWith() { return CRAccountNoStartsWith; } public CN_MainQuery setCrAccountNoStartsWith(String value) { this.CRAccountNoStartsWith = value; return this; } public String getCrAccountNoEndsWith() { return CRAccountNoEndsWith; } public CN_MainQuery setCrAccountNoEndsWith(String value) { this.CRAccountNoEndsWith = value; return this; } public String getCrAccountNoContains() { return CRAccountNoContains; } public CN_MainQuery setCrAccountNoContains(String value) { this.CRAccountNoContains = value; return this; } public String getCrAccountNoLike() { return CRAccountNoLike; } public CN_MainQuery setCrAccountNoLike(String value) { this.CRAccountNoLike = value; return this; } public ArrayList getCrAccountNoBetween() { return CRAccountNoBetween; } public CN_MainQuery setCrAccountNoBetween(ArrayList value) { this.CRAccountNoBetween = value; return this; } public ArrayList getCrAccountNoIn() { return CRAccountNoIn; } public CN_MainQuery setCrAccountNoIn(ArrayList value) { this.CRAccountNoIn = value; return this; } public String getDbAccountNo() { return DBAccountNo; } public CN_MainQuery setDbAccountNo(String value) { this.DBAccountNo = value; return this; } public String getDbAccountNoStartsWith() { return DBAccountNoStartsWith; } public CN_MainQuery setDbAccountNoStartsWith(String value) { this.DBAccountNoStartsWith = value; return this; } public String getDbAccountNoEndsWith() { return DBAccountNoEndsWith; } public CN_MainQuery setDbAccountNoEndsWith(String value) { this.DBAccountNoEndsWith = value; return this; } public String getDbAccountNoContains() { return DBAccountNoContains; } public CN_MainQuery setDbAccountNoContains(String value) { this.DBAccountNoContains = value; return this; } public String getDbAccountNoLike() { return DBAccountNoLike; } public CN_MainQuery setDbAccountNoLike(String value) { this.DBAccountNoLike = value; return this; } public ArrayList getDbAccountNoBetween() { return DBAccountNoBetween; } public CN_MainQuery setDbAccountNoBetween(ArrayList value) { this.DBAccountNoBetween = value; return this; } public ArrayList getDbAccountNoIn() { return DBAccountNoIn; } public CN_MainQuery setDbAccountNoIn(ArrayList value) { this.DBAccountNoIn = value; return this; } public String getCreditorID() { return CreditorID; } public CN_MainQuery setCreditorID(String value) { this.CreditorID = value; return this; } public String getCreditorIDStartsWith() { return CreditorIDStartsWith; } public CN_MainQuery setCreditorIDStartsWith(String value) { this.CreditorIDStartsWith = value; return this; } public String getCreditorIDEndsWith() { return CreditorIDEndsWith; } public CN_MainQuery setCreditorIDEndsWith(String value) { this.CreditorIDEndsWith = value; return this; } public String getCreditorIDContains() { return CreditorIDContains; } public CN_MainQuery setCreditorIDContains(String value) { this.CreditorIDContains = value; return this; } public String getCreditorIDLike() { return CreditorIDLike; } public CN_MainQuery setCreditorIDLike(String value) { this.CreditorIDLike = value; return this; } public ArrayList getCreditorIDBetween() { return CreditorIDBetween; } public CN_MainQuery setCreditorIDBetween(ArrayList value) { this.CreditorIDBetween = value; return this; } public ArrayList getCreditorIDIn() { return CreditorIDIn; } public CN_MainQuery setCreditorIDIn(ArrayList value) { this.CreditorIDIn = value; return this; } public String getDebtorID() { return DebtorID; } public CN_MainQuery setDebtorID(String value) { this.DebtorID = value; return this; } public String getDebtorIDStartsWith() { return DebtorIDStartsWith; } public CN_MainQuery setDebtorIDStartsWith(String value) { this.DebtorIDStartsWith = value; return this; } public String getDebtorIDEndsWith() { return DebtorIDEndsWith; } public CN_MainQuery setDebtorIDEndsWith(String value) { this.DebtorIDEndsWith = value; return this; } public String getDebtorIDContains() { return DebtorIDContains; } public CN_MainQuery setDebtorIDContains(String value) { this.DebtorIDContains = value; return this; } public String getDebtorIDLike() { return DebtorIDLike; } public CN_MainQuery setDebtorIDLike(String value) { this.DebtorIDLike = value; return this; } public ArrayList getDebtorIDBetween() { return DebtorIDBetween; } public CN_MainQuery setDebtorIDBetween(ArrayList value) { this.DebtorIDBetween = value; return this; } public ArrayList getDebtorIDIn() { return DebtorIDIn; } public CN_MainQuery setDebtorIDIn(ArrayList value) { this.DebtorIDIn = value; return this; } public String getExternalAppRecID() { return ExternalAppRecID; } public CN_MainQuery setExternalAppRecID(String value) { this.ExternalAppRecID = value; return this; } public String getExternalAppRecIDStartsWith() { return ExternalAppRecIDStartsWith; } public CN_MainQuery setExternalAppRecIDStartsWith(String value) { this.ExternalAppRecIDStartsWith = value; return this; } public String getExternalAppRecIDEndsWith() { return ExternalAppRecIDEndsWith; } public CN_MainQuery setExternalAppRecIDEndsWith(String value) { this.ExternalAppRecIDEndsWith = value; return this; } public String getExternalAppRecIDContains() { return ExternalAppRecIDContains; } public CN_MainQuery setExternalAppRecIDContains(String value) { this.ExternalAppRecIDContains = value; return this; } public String getExternalAppRecIDLike() { return ExternalAppRecIDLike; } public CN_MainQuery setExternalAppRecIDLike(String value) { this.ExternalAppRecIDLike = value; return this; } public ArrayList getExternalAppRecIDBetween() { return ExternalAppRecIDBetween; } public CN_MainQuery setExternalAppRecIDBetween(ArrayList value) { this.ExternalAppRecIDBetween = value; return this; } public ArrayList getExternalAppRecIDIn() { return ExternalAppRecIDIn; } public CN_MainQuery setExternalAppRecIDIn(ArrayList value) { this.ExternalAppRecIDIn = value; return this; } public String getAustPostDPID() { return AustPostDPID; } public CN_MainQuery setAustPostDPID(String value) { this.AustPostDPID = value; return this; } public String getAustPostDPIDStartsWith() { return AustPostDPIDStartsWith; } public CN_MainQuery setAustPostDPIDStartsWith(String value) { this.AustPostDPIDStartsWith = value; return this; } public String getAustPostDPIDEndsWith() { return AustPostDPIDEndsWith; } public CN_MainQuery setAustPostDPIDEndsWith(String value) { this.AustPostDPIDEndsWith = value; return this; } public String getAustPostDPIDContains() { return AustPostDPIDContains; } public CN_MainQuery setAustPostDPIDContains(String value) { this.AustPostDPIDContains = value; return this; } public String getAustPostDPIDLike() { return AustPostDPIDLike; } public CN_MainQuery setAustPostDPIDLike(String value) { this.AustPostDPIDLike = value; return this; } public ArrayList getAustPostDPIDBetween() { return AustPostDPIDBetween; } public CN_MainQuery setAustPostDPIDBetween(ArrayList value) { this.AustPostDPIDBetween = value; return this; } public ArrayList getAustPostDPIDIn() { return AustPostDPIDIn; } public CN_MainQuery setAustPostDPIDIn(ArrayList value) { this.AustPostDPIDIn = value; return this; } public String getAustPostBCSP() { return AustPostBCSP; } public CN_MainQuery setAustPostBCSP(String value) { this.AustPostBCSP = value; return this; } public String getAustPostBCSPStartsWith() { return AustPostBCSPStartsWith; } public CN_MainQuery setAustPostBCSPStartsWith(String value) { this.AustPostBCSPStartsWith = value; return this; } public String getAustPostBCSPEndsWith() { return AustPostBCSPEndsWith; } public CN_MainQuery setAustPostBCSPEndsWith(String value) { this.AustPostBCSPEndsWith = value; return this; } public String getAustPostBCSPContains() { return AustPostBCSPContains; } public CN_MainQuery setAustPostBCSPContains(String value) { this.AustPostBCSPContains = value; return this; } public String getAustPostBCSPLike() { return AustPostBCSPLike; } public CN_MainQuery setAustPostBCSPLike(String value) { this.AustPostBCSPLike = value; return this; } public ArrayList getAustPostBCSPBetween() { return AustPostBCSPBetween; } public CN_MainQuery setAustPostBCSPBetween(ArrayList value) { this.AustPostBCSPBetween = value; return this; } public ArrayList getAustPostBCSPIn() { return AustPostBCSPIn; } public CN_MainQuery setAustPostBCSPIn(ArrayList value) { this.AustPostBCSPIn = value; return this; } public String getCountry() { return Country; } public CN_MainQuery setCountry(String value) { this.Country = value; return this; } public String getCountryStartsWith() { return CountryStartsWith; } public CN_MainQuery setCountryStartsWith(String value) { this.CountryStartsWith = value; return this; } public String getCountryEndsWith() { return CountryEndsWith; } public CN_MainQuery setCountryEndsWith(String value) { this.CountryEndsWith = value; return this; } public String getCountryContains() { return CountryContains; } public CN_MainQuery setCountryContains(String value) { this.CountryContains = value; return this; } public String getCountryLike() { return CountryLike; } public CN_MainQuery setCountryLike(String value) { this.CountryLike = value; return this; } public ArrayList getCountryBetween() { return CountryBetween; } public CN_MainQuery setCountryBetween(ArrayList value) { this.CountryBetween = value; return this; } public ArrayList getCountryIn() { return CountryIn; } public CN_MainQuery setCountryIn(ArrayList value) { this.CountryIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class CN_NotesQuery extends QueryDb implements IReturn> { public String RecID = null; public String RecIDStartsWith = null; public String RecIDEndsWith = null; public String RecIDContains = null; public String RecIDLike = null; public ArrayList RecIDBetween = null; public ArrayList RecIDIn = null; public String ProspectID = null; public String ProspectIDStartsWith = null; public String ProspectIDEndsWith = null; public String ProspectIDContains = null; public String ProspectIDLike = null; public ArrayList ProspectIDBetween = null; public ArrayList ProspectIDIn = null; public String NoteTypeID = null; public String NoteTypeIDStartsWith = null; public String NoteTypeIDEndsWith = null; public String NoteTypeIDContains = null; public String NoteTypeIDLike = null; public ArrayList NoteTypeIDBetween = null; public ArrayList NoteTypeIDIn = null; public Date LastSavedDateTime = null; public Date LastSavedDateTimeGreaterThanOrEqualTo = null; public Date LastSavedDateTimeGreaterThan = null; public Date LastSavedDateTimeLessThan = null; public Date LastSavedDateTimeLessThanOrEqualTo = null; public Date LastSavedDateTimeNotEqualTo = null; public ArrayList LastSavedDateTimeBetween = null; public ArrayList LastSavedDateTimeIn = null; public String LastSavedByStaffID = null; public String LastSavedByStaffIDStartsWith = null; public String LastSavedByStaffIDEndsWith = null; public String LastSavedByStaffIDContains = null; public String LastSavedByStaffIDLike = null; public ArrayList LastSavedByStaffIDBetween = null; public ArrayList LastSavedByStaffIDIn = null; public String NoteText = null; public String NoteTextStartsWith = null; public String NoteTextEndsWith = null; public String NoteTextContains = null; public String NoteTextLike = null; public ArrayList NoteTextBetween = null; public ArrayList NoteTextIn = null; public Integer ItemNo = null; public Integer ItemNoGreaterThanOrEqualTo = null; public Integer ItemNoGreaterThan = null; public Integer ItemNoLessThan = null; public Integer ItemNoLessThanOrEqualTo = null; public Integer ItemNoNotEqualTo = null; public ArrayList ItemNoBetween = null; public ArrayList ItemNoIn = null; public String getRecID() { return RecID; } public CN_NotesQuery setRecID(String value) { this.RecID = value; return this; } public String getRecIDStartsWith() { return RecIDStartsWith; } public CN_NotesQuery setRecIDStartsWith(String value) { this.RecIDStartsWith = value; return this; } public String getRecIDEndsWith() { return RecIDEndsWith; } public CN_NotesQuery setRecIDEndsWith(String value) { this.RecIDEndsWith = value; return this; } public String getRecIDContains() { return RecIDContains; } public CN_NotesQuery setRecIDContains(String value) { this.RecIDContains = value; return this; } public String getRecIDLike() { return RecIDLike; } public CN_NotesQuery setRecIDLike(String value) { this.RecIDLike = value; return this; } public ArrayList getRecIDBetween() { return RecIDBetween; } public CN_NotesQuery setRecIDBetween(ArrayList value) { this.RecIDBetween = value; return this; } public ArrayList getRecIDIn() { return RecIDIn; } public CN_NotesQuery setRecIDIn(ArrayList value) { this.RecIDIn = value; return this; } public String getProspectID() { return ProspectID; } public CN_NotesQuery setProspectID(String value) { this.ProspectID = value; return this; } public String getProspectIDStartsWith() { return ProspectIDStartsWith; } public CN_NotesQuery setProspectIDStartsWith(String value) { this.ProspectIDStartsWith = value; return this; } public String getProspectIDEndsWith() { return ProspectIDEndsWith; } public CN_NotesQuery setProspectIDEndsWith(String value) { this.ProspectIDEndsWith = value; return this; } public String getProspectIDContains() { return ProspectIDContains; } public CN_NotesQuery setProspectIDContains(String value) { this.ProspectIDContains = value; return this; } public String getProspectIDLike() { return ProspectIDLike; } public CN_NotesQuery setProspectIDLike(String value) { this.ProspectIDLike = value; return this; } public ArrayList getProspectIDBetween() { return ProspectIDBetween; } public CN_NotesQuery setProspectIDBetween(ArrayList value) { this.ProspectIDBetween = value; return this; } public ArrayList getProspectIDIn() { return ProspectIDIn; } public CN_NotesQuery setProspectIDIn(ArrayList value) { this.ProspectIDIn = value; return this; } public String getNoteTypeID() { return NoteTypeID; } public CN_NotesQuery setNoteTypeID(String value) { this.NoteTypeID = value; return this; } public String getNoteTypeIDStartsWith() { return NoteTypeIDStartsWith; } public CN_NotesQuery setNoteTypeIDStartsWith(String value) { this.NoteTypeIDStartsWith = value; return this; } public String getNoteTypeIDEndsWith() { return NoteTypeIDEndsWith; } public CN_NotesQuery setNoteTypeIDEndsWith(String value) { this.NoteTypeIDEndsWith = value; return this; } public String getNoteTypeIDContains() { return NoteTypeIDContains; } public CN_NotesQuery setNoteTypeIDContains(String value) { this.NoteTypeIDContains = value; return this; } public String getNoteTypeIDLike() { return NoteTypeIDLike; } public CN_NotesQuery setNoteTypeIDLike(String value) { this.NoteTypeIDLike = value; return this; } public ArrayList getNoteTypeIDBetween() { return NoteTypeIDBetween; } public CN_NotesQuery setNoteTypeIDBetween(ArrayList value) { this.NoteTypeIDBetween = value; return this; } public ArrayList getNoteTypeIDIn() { return NoteTypeIDIn; } public CN_NotesQuery setNoteTypeIDIn(ArrayList value) { this.NoteTypeIDIn = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public CN_NotesQuery setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getLastSavedDateTimeGreaterThanOrEqualTo() { return LastSavedDateTimeGreaterThanOrEqualTo; } public CN_NotesQuery setLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.LastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeGreaterThan() { return LastSavedDateTimeGreaterThan; } public CN_NotesQuery setLastSavedDateTimeGreaterThan(Date value) { this.LastSavedDateTimeGreaterThan = value; return this; } public Date getLastSavedDateTimeLessThan() { return LastSavedDateTimeLessThan; } public CN_NotesQuery setLastSavedDateTimeLessThan(Date value) { this.LastSavedDateTimeLessThan = value; return this; } public Date getLastSavedDateTimeLessThanOrEqualTo() { return LastSavedDateTimeLessThanOrEqualTo; } public CN_NotesQuery setLastSavedDateTimeLessThanOrEqualTo(Date value) { this.LastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeNotEqualTo() { return LastSavedDateTimeNotEqualTo; } public CN_NotesQuery setLastSavedDateTimeNotEqualTo(Date value) { this.LastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getLastSavedDateTimeBetween() { return LastSavedDateTimeBetween; } public CN_NotesQuery setLastSavedDateTimeBetween(ArrayList value) { this.LastSavedDateTimeBetween = value; return this; } public ArrayList getLastSavedDateTimeIn() { return LastSavedDateTimeIn; } public CN_NotesQuery setLastSavedDateTimeIn(ArrayList value) { this.LastSavedDateTimeIn = value; return this; } public String getLastSavedByStaffID() { return LastSavedByStaffID; } public CN_NotesQuery setLastSavedByStaffID(String value) { this.LastSavedByStaffID = value; return this; } public String getLastSavedByStaffIDStartsWith() { return LastSavedByStaffIDStartsWith; } public CN_NotesQuery setLastSavedByStaffIDStartsWith(String value) { this.LastSavedByStaffIDStartsWith = value; return this; } public String getLastSavedByStaffIDEndsWith() { return LastSavedByStaffIDEndsWith; } public CN_NotesQuery setLastSavedByStaffIDEndsWith(String value) { this.LastSavedByStaffIDEndsWith = value; return this; } public String getLastSavedByStaffIDContains() { return LastSavedByStaffIDContains; } public CN_NotesQuery setLastSavedByStaffIDContains(String value) { this.LastSavedByStaffIDContains = value; return this; } public String getLastSavedByStaffIDLike() { return LastSavedByStaffIDLike; } public CN_NotesQuery setLastSavedByStaffIDLike(String value) { this.LastSavedByStaffIDLike = value; return this; } public ArrayList getLastSavedByStaffIDBetween() { return LastSavedByStaffIDBetween; } public CN_NotesQuery setLastSavedByStaffIDBetween(ArrayList value) { this.LastSavedByStaffIDBetween = value; return this; } public ArrayList getLastSavedByStaffIDIn() { return LastSavedByStaffIDIn; } public CN_NotesQuery setLastSavedByStaffIDIn(ArrayList value) { this.LastSavedByStaffIDIn = value; return this; } public String getNoteText() { return NoteText; } public CN_NotesQuery setNoteText(String value) { this.NoteText = value; return this; } public String getNoteTextStartsWith() { return NoteTextStartsWith; } public CN_NotesQuery setNoteTextStartsWith(String value) { this.NoteTextStartsWith = value; return this; } public String getNoteTextEndsWith() { return NoteTextEndsWith; } public CN_NotesQuery setNoteTextEndsWith(String value) { this.NoteTextEndsWith = value; return this; } public String getNoteTextContains() { return NoteTextContains; } public CN_NotesQuery setNoteTextContains(String value) { this.NoteTextContains = value; return this; } public String getNoteTextLike() { return NoteTextLike; } public CN_NotesQuery setNoteTextLike(String value) { this.NoteTextLike = value; return this; } public ArrayList getNoteTextBetween() { return NoteTextBetween; } public CN_NotesQuery setNoteTextBetween(ArrayList value) { this.NoteTextBetween = value; return this; } public ArrayList getNoteTextIn() { return NoteTextIn; } public CN_NotesQuery setNoteTextIn(ArrayList value) { this.NoteTextIn = value; return this; } public Integer getItemNo() { return ItemNo; } public CN_NotesQuery setItemNo(Integer value) { this.ItemNo = value; return this; } public Integer getItemNoGreaterThanOrEqualTo() { return ItemNoGreaterThanOrEqualTo; } public CN_NotesQuery setItemNoGreaterThanOrEqualTo(Integer value) { this.ItemNoGreaterThanOrEqualTo = value; return this; } public Integer getItemNoGreaterThan() { return ItemNoGreaterThan; } public CN_NotesQuery setItemNoGreaterThan(Integer value) { this.ItemNoGreaterThan = value; return this; } public Integer getItemNoLessThan() { return ItemNoLessThan; } public CN_NotesQuery setItemNoLessThan(Integer value) { this.ItemNoLessThan = value; return this; } public Integer getItemNoLessThanOrEqualTo() { return ItemNoLessThanOrEqualTo; } public CN_NotesQuery setItemNoLessThanOrEqualTo(Integer value) { this.ItemNoLessThanOrEqualTo = value; return this; } public Integer getItemNoNotEqualTo() { return ItemNoNotEqualTo; } public CN_NotesQuery setItemNoNotEqualTo(Integer value) { this.ItemNoNotEqualTo = value; return this; } public ArrayList getItemNoBetween() { return ItemNoBetween; } public CN_NotesQuery setItemNoBetween(ArrayList value) { this.ItemNoBetween = value; return this; } public ArrayList getItemNoIn() { return ItemNoIn; } public CN_NotesQuery setItemNoIn(ArrayList value) { this.ItemNoIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class CN_SyncLogQuery extends QueryDb implements IReturn> { public String RecID = null; public String RecIDStartsWith = null; public String RecIDEndsWith = null; public String RecIDContains = null; public String RecIDLike = null; public ArrayList RecIDBetween = null; public ArrayList RecIDIn = null; public Date LastSavedDateTime = null; public Date LastSavedDateTimeGreaterThanOrEqualTo = null; public Date LastSavedDateTimeGreaterThan = null; public Date LastSavedDateTimeLessThan = null; public Date LastSavedDateTimeLessThanOrEqualTo = null; public Date LastSavedDateTimeNotEqualTo = null; public ArrayList LastSavedDateTimeBetween = null; public ArrayList LastSavedDateTimeIn = null; public String SyncFlag = null; public String SyncFlagStartsWith = null; public String SyncFlagEndsWith = null; public String SyncFlagContains = null; public String SyncFlagLike = null; public ArrayList SyncFlagBetween = null; public ArrayList SyncFlagIn = null; public String getRecID() { return RecID; } public CN_SyncLogQuery setRecID(String value) { this.RecID = value; return this; } public String getRecIDStartsWith() { return RecIDStartsWith; } public CN_SyncLogQuery setRecIDStartsWith(String value) { this.RecIDStartsWith = value; return this; } public String getRecIDEndsWith() { return RecIDEndsWith; } public CN_SyncLogQuery setRecIDEndsWith(String value) { this.RecIDEndsWith = value; return this; } public String getRecIDContains() { return RecIDContains; } public CN_SyncLogQuery setRecIDContains(String value) { this.RecIDContains = value; return this; } public String getRecIDLike() { return RecIDLike; } public CN_SyncLogQuery setRecIDLike(String value) { this.RecIDLike = value; return this; } public ArrayList getRecIDBetween() { return RecIDBetween; } public CN_SyncLogQuery setRecIDBetween(ArrayList value) { this.RecIDBetween = value; return this; } public ArrayList getRecIDIn() { return RecIDIn; } public CN_SyncLogQuery setRecIDIn(ArrayList value) { this.RecIDIn = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public CN_SyncLogQuery setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getLastSavedDateTimeGreaterThanOrEqualTo() { return LastSavedDateTimeGreaterThanOrEqualTo; } public CN_SyncLogQuery setLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.LastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeGreaterThan() { return LastSavedDateTimeGreaterThan; } public CN_SyncLogQuery setLastSavedDateTimeGreaterThan(Date value) { this.LastSavedDateTimeGreaterThan = value; return this; } public Date getLastSavedDateTimeLessThan() { return LastSavedDateTimeLessThan; } public CN_SyncLogQuery setLastSavedDateTimeLessThan(Date value) { this.LastSavedDateTimeLessThan = value; return this; } public Date getLastSavedDateTimeLessThanOrEqualTo() { return LastSavedDateTimeLessThanOrEqualTo; } public CN_SyncLogQuery setLastSavedDateTimeLessThanOrEqualTo(Date value) { this.LastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeNotEqualTo() { return LastSavedDateTimeNotEqualTo; } public CN_SyncLogQuery setLastSavedDateTimeNotEqualTo(Date value) { this.LastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getLastSavedDateTimeBetween() { return LastSavedDateTimeBetween; } public CN_SyncLogQuery setLastSavedDateTimeBetween(ArrayList value) { this.LastSavedDateTimeBetween = value; return this; } public ArrayList getLastSavedDateTimeIn() { return LastSavedDateTimeIn; } public CN_SyncLogQuery setLastSavedDateTimeIn(ArrayList value) { this.LastSavedDateTimeIn = value; return this; } public String getSyncFlag() { return SyncFlag; } public CN_SyncLogQuery setSyncFlag(String value) { this.SyncFlag = value; return this; } public String getSyncFlagStartsWith() { return SyncFlagStartsWith; } public CN_SyncLogQuery setSyncFlagStartsWith(String value) { this.SyncFlagStartsWith = value; return this; } public String getSyncFlagEndsWith() { return SyncFlagEndsWith; } public CN_SyncLogQuery setSyncFlagEndsWith(String value) { this.SyncFlagEndsWith = value; return this; } public String getSyncFlagContains() { return SyncFlagContains; } public CN_SyncLogQuery setSyncFlagContains(String value) { this.SyncFlagContains = value; return this; } public String getSyncFlagLike() { return SyncFlagLike; } public CN_SyncLogQuery setSyncFlagLike(String value) { this.SyncFlagLike = value; return this; } public ArrayList getSyncFlagBetween() { return SyncFlagBetween; } public CN_SyncLogQuery setSyncFlagBetween(ArrayList value) { this.SyncFlagBetween = value; return this; } public ArrayList getSyncFlagIn() { return SyncFlagIn; } public CN_SyncLogQuery setSyncFlagIn(ArrayList value) { this.SyncFlagIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class CR_AllocationBatchQuery extends QueryDb implements IReturn> { public String RecID = null; public String RecIDStartsWith = null; public String RecIDEndsWith = null; public String RecIDContains = null; public String RecIDLike = null; public ArrayList RecIDBetween = null; public ArrayList RecIDIn = null; public Date LastSavedDateTime = null; public Date LastSavedDateTimeGreaterThanOrEqualTo = null; public Date LastSavedDateTimeGreaterThan = null; public Date LastSavedDateTimeLessThan = null; public Date LastSavedDateTimeLessThanOrEqualTo = null; public Date LastSavedDateTimeNotEqualTo = null; public ArrayList LastSavedDateTimeBetween = null; public ArrayList LastSavedDateTimeIn = null; public String BatchNo = null; public String BatchNoStartsWith = null; public String BatchNoEndsWith = null; public String BatchNoContains = null; public String BatchNoLike = null; public ArrayList BatchNoBetween = null; public ArrayList BatchNoIn = null; public String StaffID = null; public String StaffIDStartsWith = null; public String StaffIDEndsWith = null; public String StaffIDContains = null; public String StaffIDLike = null; public ArrayList StaffIDBetween = null; public ArrayList StaffIDIn = null; public Date BatchDate = null; public Date BatchDateGreaterThanOrEqualTo = null; public Date BatchDateGreaterThan = null; public Date BatchDateLessThan = null; public Date BatchDateLessThanOrEqualTo = null; public Date BatchDateNotEqualTo = null; public ArrayList BatchDateBetween = null; public ArrayList BatchDateIn = null; public String CreditorID = null; public String CreditorIDStartsWith = null; public String CreditorIDEndsWith = null; public String CreditorIDContains = null; public String CreditorIDLike = null; public ArrayList CreditorIDBetween = null; public ArrayList CreditorIDIn = null; public String getRecID() { return RecID; } public CR_AllocationBatchQuery setRecID(String value) { this.RecID = value; return this; } public String getRecIDStartsWith() { return RecIDStartsWith; } public CR_AllocationBatchQuery setRecIDStartsWith(String value) { this.RecIDStartsWith = value; return this; } public String getRecIDEndsWith() { return RecIDEndsWith; } public CR_AllocationBatchQuery setRecIDEndsWith(String value) { this.RecIDEndsWith = value; return this; } public String getRecIDContains() { return RecIDContains; } public CR_AllocationBatchQuery setRecIDContains(String value) { this.RecIDContains = value; return this; } public String getRecIDLike() { return RecIDLike; } public CR_AllocationBatchQuery setRecIDLike(String value) { this.RecIDLike = value; return this; } public ArrayList getRecIDBetween() { return RecIDBetween; } public CR_AllocationBatchQuery setRecIDBetween(ArrayList value) { this.RecIDBetween = value; return this; } public ArrayList getRecIDIn() { return RecIDIn; } public CR_AllocationBatchQuery setRecIDIn(ArrayList value) { this.RecIDIn = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public CR_AllocationBatchQuery setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getLastSavedDateTimeGreaterThanOrEqualTo() { return LastSavedDateTimeGreaterThanOrEqualTo; } public CR_AllocationBatchQuery setLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.LastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeGreaterThan() { return LastSavedDateTimeGreaterThan; } public CR_AllocationBatchQuery setLastSavedDateTimeGreaterThan(Date value) { this.LastSavedDateTimeGreaterThan = value; return this; } public Date getLastSavedDateTimeLessThan() { return LastSavedDateTimeLessThan; } public CR_AllocationBatchQuery setLastSavedDateTimeLessThan(Date value) { this.LastSavedDateTimeLessThan = value; return this; } public Date getLastSavedDateTimeLessThanOrEqualTo() { return LastSavedDateTimeLessThanOrEqualTo; } public CR_AllocationBatchQuery setLastSavedDateTimeLessThanOrEqualTo(Date value) { this.LastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeNotEqualTo() { return LastSavedDateTimeNotEqualTo; } public CR_AllocationBatchQuery setLastSavedDateTimeNotEqualTo(Date value) { this.LastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getLastSavedDateTimeBetween() { return LastSavedDateTimeBetween; } public CR_AllocationBatchQuery setLastSavedDateTimeBetween(ArrayList value) { this.LastSavedDateTimeBetween = value; return this; } public ArrayList getLastSavedDateTimeIn() { return LastSavedDateTimeIn; } public CR_AllocationBatchQuery setLastSavedDateTimeIn(ArrayList value) { this.LastSavedDateTimeIn = value; return this; } public String getBatchNo() { return BatchNo; } public CR_AllocationBatchQuery setBatchNo(String value) { this.BatchNo = value; return this; } public String getBatchNoStartsWith() { return BatchNoStartsWith; } public CR_AllocationBatchQuery setBatchNoStartsWith(String value) { this.BatchNoStartsWith = value; return this; } public String getBatchNoEndsWith() { return BatchNoEndsWith; } public CR_AllocationBatchQuery setBatchNoEndsWith(String value) { this.BatchNoEndsWith = value; return this; } public String getBatchNoContains() { return BatchNoContains; } public CR_AllocationBatchQuery setBatchNoContains(String value) { this.BatchNoContains = value; return this; } public String getBatchNoLike() { return BatchNoLike; } public CR_AllocationBatchQuery setBatchNoLike(String value) { this.BatchNoLike = value; return this; } public ArrayList getBatchNoBetween() { return BatchNoBetween; } public CR_AllocationBatchQuery setBatchNoBetween(ArrayList value) { this.BatchNoBetween = value; return this; } public ArrayList getBatchNoIn() { return BatchNoIn; } public CR_AllocationBatchQuery setBatchNoIn(ArrayList value) { this.BatchNoIn = value; return this; } public String getStaffID() { return StaffID; } public CR_AllocationBatchQuery setStaffID(String value) { this.StaffID = value; return this; } public String getStaffIDStartsWith() { return StaffIDStartsWith; } public CR_AllocationBatchQuery setStaffIDStartsWith(String value) { this.StaffIDStartsWith = value; return this; } public String getStaffIDEndsWith() { return StaffIDEndsWith; } public CR_AllocationBatchQuery setStaffIDEndsWith(String value) { this.StaffIDEndsWith = value; return this; } public String getStaffIDContains() { return StaffIDContains; } public CR_AllocationBatchQuery setStaffIDContains(String value) { this.StaffIDContains = value; return this; } public String getStaffIDLike() { return StaffIDLike; } public CR_AllocationBatchQuery setStaffIDLike(String value) { this.StaffIDLike = value; return this; } public ArrayList getStaffIDBetween() { return StaffIDBetween; } public CR_AllocationBatchQuery setStaffIDBetween(ArrayList value) { this.StaffIDBetween = value; return this; } public ArrayList getStaffIDIn() { return StaffIDIn; } public CR_AllocationBatchQuery setStaffIDIn(ArrayList value) { this.StaffIDIn = value; return this; } public Date getBatchDate() { return BatchDate; } public CR_AllocationBatchQuery setBatchDate(Date value) { this.BatchDate = value; return this; } public Date getBatchDateGreaterThanOrEqualTo() { return BatchDateGreaterThanOrEqualTo; } public CR_AllocationBatchQuery setBatchDateGreaterThanOrEqualTo(Date value) { this.BatchDateGreaterThanOrEqualTo = value; return this; } public Date getBatchDateGreaterThan() { return BatchDateGreaterThan; } public CR_AllocationBatchQuery setBatchDateGreaterThan(Date value) { this.BatchDateGreaterThan = value; return this; } public Date getBatchDateLessThan() { return BatchDateLessThan; } public CR_AllocationBatchQuery setBatchDateLessThan(Date value) { this.BatchDateLessThan = value; return this; } public Date getBatchDateLessThanOrEqualTo() { return BatchDateLessThanOrEqualTo; } public CR_AllocationBatchQuery setBatchDateLessThanOrEqualTo(Date value) { this.BatchDateLessThanOrEqualTo = value; return this; } public Date getBatchDateNotEqualTo() { return BatchDateNotEqualTo; } public CR_AllocationBatchQuery setBatchDateNotEqualTo(Date value) { this.BatchDateNotEqualTo = value; return this; } public ArrayList getBatchDateBetween() { return BatchDateBetween; } public CR_AllocationBatchQuery setBatchDateBetween(ArrayList value) { this.BatchDateBetween = value; return this; } public ArrayList getBatchDateIn() { return BatchDateIn; } public CR_AllocationBatchQuery setBatchDateIn(ArrayList value) { this.BatchDateIn = value; return this; } public String getCreditorID() { return CreditorID; } public CR_AllocationBatchQuery setCreditorID(String value) { this.CreditorID = value; return this; } public String getCreditorIDStartsWith() { return CreditorIDStartsWith; } public CR_AllocationBatchQuery setCreditorIDStartsWith(String value) { this.CreditorIDStartsWith = value; return this; } public String getCreditorIDEndsWith() { return CreditorIDEndsWith; } public CR_AllocationBatchQuery setCreditorIDEndsWith(String value) { this.CreditorIDEndsWith = value; return this; } public String getCreditorIDContains() { return CreditorIDContains; } public CR_AllocationBatchQuery setCreditorIDContains(String value) { this.CreditorIDContains = value; return this; } public String getCreditorIDLike() { return CreditorIDLike; } public CR_AllocationBatchQuery setCreditorIDLike(String value) { this.CreditorIDLike = value; return this; } public ArrayList getCreditorIDBetween() { return CreditorIDBetween; } public CR_AllocationBatchQuery setCreditorIDBetween(ArrayList value) { this.CreditorIDBetween = value; return this; } public ArrayList getCreditorIDIn() { return CreditorIDIn; } public CR_AllocationBatchQuery setCreditorIDIn(ArrayList value) { this.CreditorIDIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class CR_AllocationBatchTransactionsQuery extends QueryDb implements IReturn> { public String CR_TransAlloc_AllocID = null; public String CR_TransAlloc_AllocIDStartsWith = null; public String CR_TransAlloc_AllocIDEndsWith = null; public String CR_TransAlloc_AllocIDContains = null; public String CR_TransAlloc_AllocIDLike = null; public ArrayList CR_TransAlloc_AllocIDBetween = null; public ArrayList CR_TransAlloc_AllocIDIn = null; public String CR_AllocationBatch_RecID = null; public String CR_AllocationBatch_RecIDStartsWith = null; public String CR_AllocationBatch_RecIDEndsWith = null; public String CR_AllocationBatch_RecIDContains = null; public String CR_AllocationBatch_RecIDLike = null; public ArrayList CR_AllocationBatch_RecIDBetween = null; public ArrayList CR_AllocationBatch_RecIDIn = null; public String getCrTransAllocAllocID() { return CR_TransAlloc_AllocID; } public CR_AllocationBatchTransactionsQuery setCrTransAllocAllocID(String value) { this.CR_TransAlloc_AllocID = value; return this; } public String getCrTransAllocAllocIDStartsWith() { return CR_TransAlloc_AllocIDStartsWith; } public CR_AllocationBatchTransactionsQuery setCrTransAllocAllocIDStartsWith(String value) { this.CR_TransAlloc_AllocIDStartsWith = value; return this; } public String getCrTransAllocAllocIDEndsWith() { return CR_TransAlloc_AllocIDEndsWith; } public CR_AllocationBatchTransactionsQuery setCrTransAllocAllocIDEndsWith(String value) { this.CR_TransAlloc_AllocIDEndsWith = value; return this; } public String getCrTransAllocAllocIDContains() { return CR_TransAlloc_AllocIDContains; } public CR_AllocationBatchTransactionsQuery setCrTransAllocAllocIDContains(String value) { this.CR_TransAlloc_AllocIDContains = value; return this; } public String getCrTransAllocAllocIDLike() { return CR_TransAlloc_AllocIDLike; } public CR_AllocationBatchTransactionsQuery setCrTransAllocAllocIDLike(String value) { this.CR_TransAlloc_AllocIDLike = value; return this; } public ArrayList getCrTransAllocAllocIDBetween() { return CR_TransAlloc_AllocIDBetween; } public CR_AllocationBatchTransactionsQuery setCrTransAllocAllocIDBetween(ArrayList value) { this.CR_TransAlloc_AllocIDBetween = value; return this; } public ArrayList getCrTransAllocAllocIDIn() { return CR_TransAlloc_AllocIDIn; } public CR_AllocationBatchTransactionsQuery setCrTransAllocAllocIDIn(ArrayList value) { this.CR_TransAlloc_AllocIDIn = value; return this; } public String getCrAllocationBatchRecID() { return CR_AllocationBatch_RecID; } public CR_AllocationBatchTransactionsQuery setCrAllocationBatchRecID(String value) { this.CR_AllocationBatch_RecID = value; return this; } public String getCrAllocationBatchRecIDStartsWith() { return CR_AllocationBatch_RecIDStartsWith; } public CR_AllocationBatchTransactionsQuery setCrAllocationBatchRecIDStartsWith(String value) { this.CR_AllocationBatch_RecIDStartsWith = value; return this; } public String getCrAllocationBatchRecIDEndsWith() { return CR_AllocationBatch_RecIDEndsWith; } public CR_AllocationBatchTransactionsQuery setCrAllocationBatchRecIDEndsWith(String value) { this.CR_AllocationBatch_RecIDEndsWith = value; return this; } public String getCrAllocationBatchRecIDContains() { return CR_AllocationBatch_RecIDContains; } public CR_AllocationBatchTransactionsQuery setCrAllocationBatchRecIDContains(String value) { this.CR_AllocationBatch_RecIDContains = value; return this; } public String getCrAllocationBatchRecIDLike() { return CR_AllocationBatch_RecIDLike; } public CR_AllocationBatchTransactionsQuery setCrAllocationBatchRecIDLike(String value) { this.CR_AllocationBatch_RecIDLike = value; return this; } public ArrayList getCrAllocationBatchRecIDBetween() { return CR_AllocationBatch_RecIDBetween; } public CR_AllocationBatchTransactionsQuery setCrAllocationBatchRecIDBetween(ArrayList value) { this.CR_AllocationBatch_RecIDBetween = value; return this; } public ArrayList getCrAllocationBatchRecIDIn() { return CR_AllocationBatch_RecIDIn; } public CR_AllocationBatchTransactionsQuery setCrAllocationBatchRecIDIn(ArrayList value) { this.CR_AllocationBatch_RecIDIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class CR_APIKeyQuery extends QueryDb implements IReturn> { public UUID RecID = null; public ArrayList RecIDIn = null; public String Name = null; public String NameStartsWith = null; public String NameEndsWith = null; public String NameContains = null; public String NameLike = null; public ArrayList NameBetween = null; public ArrayList NameIn = null; public String CR_Main_CreditorID = null; public String CR_Main_CreditorIDStartsWith = null; public String CR_Main_CreditorIDEndsWith = null; public String CR_Main_CreditorIDContains = null; public String CR_Main_CreditorIDLike = null; public ArrayList CR_Main_CreditorIDBetween = null; public ArrayList CR_Main_CreditorIDIn = null; public String HR_Staff_StaffID = null; public String HR_Staff_StaffIDStartsWith = null; public String HR_Staff_StaffIDEndsWith = null; public String HR_Staff_StaffIDContains = null; public String HR_Staff_StaffIDLike = null; public ArrayList HR_Staff_StaffIDBetween = null; public ArrayList HR_Staff_StaffIDIn = null; public Date CreatedDateTime = null; public Date CreatedDateTimeGreaterThanOrEqualTo = null; public Date CreatedDateTimeGreaterThan = null; public Date CreatedDateTimeLessThan = null; public Date CreatedDateTimeLessThanOrEqualTo = null; public Date CreatedDateTimeNotEqualTo = null; public ArrayList CreatedDateTimeBetween = null; public ArrayList CreatedDateTimeIn = null; public Date ExpiryDateTime = null; public Date ExpiryDateTimeGreaterThanOrEqualTo = null; public Date ExpiryDateTimeGreaterThan = null; public Date ExpiryDateTimeLessThan = null; public Date ExpiryDateTimeLessThanOrEqualTo = null; public Date ExpiryDateTimeNotEqualTo = null; public ArrayList ExpiryDateTimeBetween = null; public ArrayList ExpiryDateTimeIn = null; public Date CancelledDateTime = null; public Date CancelledDateTimeGreaterThanOrEqualTo = null; public Date CancelledDateTimeGreaterThan = null; public Date CancelledDateTimeLessThan = null; public Date CancelledDateTimeLessThanOrEqualTo = null; public Date CancelledDateTimeNotEqualTo = null; public ArrayList CancelledDateTimeBetween = null; public ArrayList CancelledDateTimeIn = null; public Date LastSavedDateTime = null; public Date LastSavedDateTimeGreaterThanOrEqualTo = null; public Date LastSavedDateTimeGreaterThan = null; public Date LastSavedDateTimeLessThan = null; public Date LastSavedDateTimeLessThanOrEqualTo = null; public Date LastSavedDateTimeNotEqualTo = null; public ArrayList LastSavedDateTimeBetween = null; public ArrayList LastSavedDateTimeIn = null; public String KeyValue = null; public String KeyValueStartsWith = null; public String KeyValueEndsWith = null; public String KeyValueContains = null; public String KeyValueLike = null; public ArrayList KeyValueBetween = null; public ArrayList KeyValueIn = null; public Boolean IsEnabled = null; public Integer ItemNo = null; public Integer ItemNoGreaterThanOrEqualTo = null; public Integer ItemNoGreaterThan = null; public Integer ItemNoLessThan = null; public Integer ItemNoLessThanOrEqualTo = null; public Integer ItemNoNotEqualTo = null; public ArrayList ItemNoBetween = null; public ArrayList ItemNoIn = null; public ArrayList RowHash = null; public UUID getRecID() { return RecID; } public CR_APIKeyQuery setRecID(UUID value) { this.RecID = value; return this; } public ArrayList getRecIDIn() { return RecIDIn; } public CR_APIKeyQuery setRecIDIn(ArrayList value) { this.RecIDIn = value; return this; } public String getName() { return Name; } public CR_APIKeyQuery setName(String value) { this.Name = value; return this; } public String getNameStartsWith() { return NameStartsWith; } public CR_APIKeyQuery setNameStartsWith(String value) { this.NameStartsWith = value; return this; } public String getNameEndsWith() { return NameEndsWith; } public CR_APIKeyQuery setNameEndsWith(String value) { this.NameEndsWith = value; return this; } public String getNameContains() { return NameContains; } public CR_APIKeyQuery setNameContains(String value) { this.NameContains = value; return this; } public String getNameLike() { return NameLike; } public CR_APIKeyQuery setNameLike(String value) { this.NameLike = value; return this; } public ArrayList getNameBetween() { return NameBetween; } public CR_APIKeyQuery setNameBetween(ArrayList value) { this.NameBetween = value; return this; } public ArrayList getNameIn() { return NameIn; } public CR_APIKeyQuery setNameIn(ArrayList value) { this.NameIn = value; return this; } public String getCrMainCreditorID() { return CR_Main_CreditorID; } public CR_APIKeyQuery setCrMainCreditorID(String value) { this.CR_Main_CreditorID = value; return this; } public String getCrMainCreditorIDStartsWith() { return CR_Main_CreditorIDStartsWith; } public CR_APIKeyQuery setCrMainCreditorIDStartsWith(String value) { this.CR_Main_CreditorIDStartsWith = value; return this; } public String getCrMainCreditorIDEndsWith() { return CR_Main_CreditorIDEndsWith; } public CR_APIKeyQuery setCrMainCreditorIDEndsWith(String value) { this.CR_Main_CreditorIDEndsWith = value; return this; } public String getCrMainCreditorIDContains() { return CR_Main_CreditorIDContains; } public CR_APIKeyQuery setCrMainCreditorIDContains(String value) { this.CR_Main_CreditorIDContains = value; return this; } public String getCrMainCreditorIDLike() { return CR_Main_CreditorIDLike; } public CR_APIKeyQuery setCrMainCreditorIDLike(String value) { this.CR_Main_CreditorIDLike = value; return this; } public ArrayList getCrMainCreditorIDBetween() { return CR_Main_CreditorIDBetween; } public CR_APIKeyQuery setCrMainCreditorIDBetween(ArrayList value) { this.CR_Main_CreditorIDBetween = value; return this; } public ArrayList getCrMainCreditorIDIn() { return CR_Main_CreditorIDIn; } public CR_APIKeyQuery setCrMainCreditorIDIn(ArrayList value) { this.CR_Main_CreditorIDIn = value; return this; } public String getHrStaffStaffID() { return HR_Staff_StaffID; } public CR_APIKeyQuery setHrStaffStaffID(String value) { this.HR_Staff_StaffID = value; return this; } public String getHrStaffStaffIDStartsWith() { return HR_Staff_StaffIDStartsWith; } public CR_APIKeyQuery setHrStaffStaffIDStartsWith(String value) { this.HR_Staff_StaffIDStartsWith = value; return this; } public String getHrStaffStaffIDEndsWith() { return HR_Staff_StaffIDEndsWith; } public CR_APIKeyQuery setHrStaffStaffIDEndsWith(String value) { this.HR_Staff_StaffIDEndsWith = value; return this; } public String getHrStaffStaffIDContains() { return HR_Staff_StaffIDContains; } public CR_APIKeyQuery setHrStaffStaffIDContains(String value) { this.HR_Staff_StaffIDContains = value; return this; } public String getHrStaffStaffIDLike() { return HR_Staff_StaffIDLike; } public CR_APIKeyQuery setHrStaffStaffIDLike(String value) { this.HR_Staff_StaffIDLike = value; return this; } public ArrayList getHrStaffStaffIDBetween() { return HR_Staff_StaffIDBetween; } public CR_APIKeyQuery setHrStaffStaffIDBetween(ArrayList value) { this.HR_Staff_StaffIDBetween = value; return this; } public ArrayList getHrStaffStaffIDIn() { return HR_Staff_StaffIDIn; } public CR_APIKeyQuery setHrStaffStaffIDIn(ArrayList value) { this.HR_Staff_StaffIDIn = value; return this; } public Date getCreatedDateTime() { return CreatedDateTime; } public CR_APIKeyQuery setCreatedDateTime(Date value) { this.CreatedDateTime = value; return this; } public Date getCreatedDateTimeGreaterThanOrEqualTo() { return CreatedDateTimeGreaterThanOrEqualTo; } public CR_APIKeyQuery setCreatedDateTimeGreaterThanOrEqualTo(Date value) { this.CreatedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getCreatedDateTimeGreaterThan() { return CreatedDateTimeGreaterThan; } public CR_APIKeyQuery setCreatedDateTimeGreaterThan(Date value) { this.CreatedDateTimeGreaterThan = value; return this; } public Date getCreatedDateTimeLessThan() { return CreatedDateTimeLessThan; } public CR_APIKeyQuery setCreatedDateTimeLessThan(Date value) { this.CreatedDateTimeLessThan = value; return this; } public Date getCreatedDateTimeLessThanOrEqualTo() { return CreatedDateTimeLessThanOrEqualTo; } public CR_APIKeyQuery setCreatedDateTimeLessThanOrEqualTo(Date value) { this.CreatedDateTimeLessThanOrEqualTo = value; return this; } public Date getCreatedDateTimeNotEqualTo() { return CreatedDateTimeNotEqualTo; } public CR_APIKeyQuery setCreatedDateTimeNotEqualTo(Date value) { this.CreatedDateTimeNotEqualTo = value; return this; } public ArrayList getCreatedDateTimeBetween() { return CreatedDateTimeBetween; } public CR_APIKeyQuery setCreatedDateTimeBetween(ArrayList value) { this.CreatedDateTimeBetween = value; return this; } public ArrayList getCreatedDateTimeIn() { return CreatedDateTimeIn; } public CR_APIKeyQuery setCreatedDateTimeIn(ArrayList value) { this.CreatedDateTimeIn = value; return this; } public Date getExpiryDateTime() { return ExpiryDateTime; } public CR_APIKeyQuery setExpiryDateTime(Date value) { this.ExpiryDateTime = value; return this; } public Date getExpiryDateTimeGreaterThanOrEqualTo() { return ExpiryDateTimeGreaterThanOrEqualTo; } public CR_APIKeyQuery setExpiryDateTimeGreaterThanOrEqualTo(Date value) { this.ExpiryDateTimeGreaterThanOrEqualTo = value; return this; } public Date getExpiryDateTimeGreaterThan() { return ExpiryDateTimeGreaterThan; } public CR_APIKeyQuery setExpiryDateTimeGreaterThan(Date value) { this.ExpiryDateTimeGreaterThan = value; return this; } public Date getExpiryDateTimeLessThan() { return ExpiryDateTimeLessThan; } public CR_APIKeyQuery setExpiryDateTimeLessThan(Date value) { this.ExpiryDateTimeLessThan = value; return this; } public Date getExpiryDateTimeLessThanOrEqualTo() { return ExpiryDateTimeLessThanOrEqualTo; } public CR_APIKeyQuery setExpiryDateTimeLessThanOrEqualTo(Date value) { this.ExpiryDateTimeLessThanOrEqualTo = value; return this; } public Date getExpiryDateTimeNotEqualTo() { return ExpiryDateTimeNotEqualTo; } public CR_APIKeyQuery setExpiryDateTimeNotEqualTo(Date value) { this.ExpiryDateTimeNotEqualTo = value; return this; } public ArrayList getExpiryDateTimeBetween() { return ExpiryDateTimeBetween; } public CR_APIKeyQuery setExpiryDateTimeBetween(ArrayList value) { this.ExpiryDateTimeBetween = value; return this; } public ArrayList getExpiryDateTimeIn() { return ExpiryDateTimeIn; } public CR_APIKeyQuery setExpiryDateTimeIn(ArrayList value) { this.ExpiryDateTimeIn = value; return this; } public Date getCancelledDateTime() { return CancelledDateTime; } public CR_APIKeyQuery setCancelledDateTime(Date value) { this.CancelledDateTime = value; return this; } public Date getCancelledDateTimeGreaterThanOrEqualTo() { return CancelledDateTimeGreaterThanOrEqualTo; } public CR_APIKeyQuery setCancelledDateTimeGreaterThanOrEqualTo(Date value) { this.CancelledDateTimeGreaterThanOrEqualTo = value; return this; } public Date getCancelledDateTimeGreaterThan() { return CancelledDateTimeGreaterThan; } public CR_APIKeyQuery setCancelledDateTimeGreaterThan(Date value) { this.CancelledDateTimeGreaterThan = value; return this; } public Date getCancelledDateTimeLessThan() { return CancelledDateTimeLessThan; } public CR_APIKeyQuery setCancelledDateTimeLessThan(Date value) { this.CancelledDateTimeLessThan = value; return this; } public Date getCancelledDateTimeLessThanOrEqualTo() { return CancelledDateTimeLessThanOrEqualTo; } public CR_APIKeyQuery setCancelledDateTimeLessThanOrEqualTo(Date value) { this.CancelledDateTimeLessThanOrEqualTo = value; return this; } public Date getCancelledDateTimeNotEqualTo() { return CancelledDateTimeNotEqualTo; } public CR_APIKeyQuery setCancelledDateTimeNotEqualTo(Date value) { this.CancelledDateTimeNotEqualTo = value; return this; } public ArrayList getCancelledDateTimeBetween() { return CancelledDateTimeBetween; } public CR_APIKeyQuery setCancelledDateTimeBetween(ArrayList value) { this.CancelledDateTimeBetween = value; return this; } public ArrayList getCancelledDateTimeIn() { return CancelledDateTimeIn; } public CR_APIKeyQuery setCancelledDateTimeIn(ArrayList value) { this.CancelledDateTimeIn = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public CR_APIKeyQuery setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getLastSavedDateTimeGreaterThanOrEqualTo() { return LastSavedDateTimeGreaterThanOrEqualTo; } public CR_APIKeyQuery setLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.LastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeGreaterThan() { return LastSavedDateTimeGreaterThan; } public CR_APIKeyQuery setLastSavedDateTimeGreaterThan(Date value) { this.LastSavedDateTimeGreaterThan = value; return this; } public Date getLastSavedDateTimeLessThan() { return LastSavedDateTimeLessThan; } public CR_APIKeyQuery setLastSavedDateTimeLessThan(Date value) { this.LastSavedDateTimeLessThan = value; return this; } public Date getLastSavedDateTimeLessThanOrEqualTo() { return LastSavedDateTimeLessThanOrEqualTo; } public CR_APIKeyQuery setLastSavedDateTimeLessThanOrEqualTo(Date value) { this.LastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeNotEqualTo() { return LastSavedDateTimeNotEqualTo; } public CR_APIKeyQuery setLastSavedDateTimeNotEqualTo(Date value) { this.LastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getLastSavedDateTimeBetween() { return LastSavedDateTimeBetween; } public CR_APIKeyQuery setLastSavedDateTimeBetween(ArrayList value) { this.LastSavedDateTimeBetween = value; return this; } public ArrayList getLastSavedDateTimeIn() { return LastSavedDateTimeIn; } public CR_APIKeyQuery setLastSavedDateTimeIn(ArrayList value) { this.LastSavedDateTimeIn = value; return this; } public String getKeyValue() { return KeyValue; } public CR_APIKeyQuery setKeyValue(String value) { this.KeyValue = value; return this; } public String getKeyValueStartsWith() { return KeyValueStartsWith; } public CR_APIKeyQuery setKeyValueStartsWith(String value) { this.KeyValueStartsWith = value; return this; } public String getKeyValueEndsWith() { return KeyValueEndsWith; } public CR_APIKeyQuery setKeyValueEndsWith(String value) { this.KeyValueEndsWith = value; return this; } public String getKeyValueContains() { return KeyValueContains; } public CR_APIKeyQuery setKeyValueContains(String value) { this.KeyValueContains = value; return this; } public String getKeyValueLike() { return KeyValueLike; } public CR_APIKeyQuery setKeyValueLike(String value) { this.KeyValueLike = value; return this; } public ArrayList getKeyValueBetween() { return KeyValueBetween; } public CR_APIKeyQuery setKeyValueBetween(ArrayList value) { this.KeyValueBetween = value; return this; } public ArrayList getKeyValueIn() { return KeyValueIn; } public CR_APIKeyQuery setKeyValueIn(ArrayList value) { this.KeyValueIn = value; return this; } public Boolean getIsEnabled() { return IsEnabled; } public CR_APIKeyQuery setIsEnabled(Boolean value) { this.IsEnabled = value; return this; } public Integer getItemNo() { return ItemNo; } public CR_APIKeyQuery setItemNo(Integer value) { this.ItemNo = value; return this; } public Integer getItemNoGreaterThanOrEqualTo() { return ItemNoGreaterThanOrEqualTo; } public CR_APIKeyQuery setItemNoGreaterThanOrEqualTo(Integer value) { this.ItemNoGreaterThanOrEqualTo = value; return this; } public Integer getItemNoGreaterThan() { return ItemNoGreaterThan; } public CR_APIKeyQuery setItemNoGreaterThan(Integer value) { this.ItemNoGreaterThan = value; return this; } public Integer getItemNoLessThan() { return ItemNoLessThan; } public CR_APIKeyQuery setItemNoLessThan(Integer value) { this.ItemNoLessThan = value; return this; } public Integer getItemNoLessThanOrEqualTo() { return ItemNoLessThanOrEqualTo; } public CR_APIKeyQuery setItemNoLessThanOrEqualTo(Integer value) { this.ItemNoLessThanOrEqualTo = value; return this; } public Integer getItemNoNotEqualTo() { return ItemNoNotEqualTo; } public CR_APIKeyQuery setItemNoNotEqualTo(Integer value) { this.ItemNoNotEqualTo = value; return this; } public ArrayList getItemNoBetween() { return ItemNoBetween; } public CR_APIKeyQuery setItemNoBetween(ArrayList value) { this.ItemNoBetween = value; return this; } public ArrayList getItemNoIn() { return ItemNoIn; } public CR_APIKeyQuery setItemNoIn(ArrayList value) { this.ItemNoIn = value; return this; } public ArrayList getRowHash() { return RowHash; } public CR_APIKeyQuery setRowHash(ArrayList value) { this.RowHash = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class CR_AUDITQuery extends QueryDb implements IReturn> { public String CreditorID = null; public String CreditorIDStartsWith = null; public String CreditorIDEndsWith = null; public String CreditorIDContains = null; public String CreditorIDLike = null; public ArrayList CreditorIDBetween = null; public ArrayList CreditorIDIn = null; public BigDecimal CreditorTotal = null; public BigDecimal CreditorTotalGreaterThanOrEqualTo = null; public BigDecimal CreditorTotalGreaterThan = null; public BigDecimal CreditorTotalLessThan = null; public BigDecimal CreditorTotalLessThanOrEqualTo = null; public BigDecimal CreditorTotalNotEqualTo = null; public ArrayList CreditorTotalBetween = null; public ArrayList CreditorTotalIn = null; public String ReportGroup = null; public String ReportGroupStartsWith = null; public String ReportGroupEndsWith = null; public String ReportGroupContains = null; public String ReportGroupLike = null; public ArrayList ReportGroupBetween = null; public ArrayList ReportGroupIn = null; public String getCreditorID() { return CreditorID; } public CR_AUDITQuery setCreditorID(String value) { this.CreditorID = value; return this; } public String getCreditorIDStartsWith() { return CreditorIDStartsWith; } public CR_AUDITQuery setCreditorIDStartsWith(String value) { this.CreditorIDStartsWith = value; return this; } public String getCreditorIDEndsWith() { return CreditorIDEndsWith; } public CR_AUDITQuery setCreditorIDEndsWith(String value) { this.CreditorIDEndsWith = value; return this; } public String getCreditorIDContains() { return CreditorIDContains; } public CR_AUDITQuery setCreditorIDContains(String value) { this.CreditorIDContains = value; return this; } public String getCreditorIDLike() { return CreditorIDLike; } public CR_AUDITQuery setCreditorIDLike(String value) { this.CreditorIDLike = value; return this; } public ArrayList getCreditorIDBetween() { return CreditorIDBetween; } public CR_AUDITQuery setCreditorIDBetween(ArrayList value) { this.CreditorIDBetween = value; return this; } public ArrayList getCreditorIDIn() { return CreditorIDIn; } public CR_AUDITQuery setCreditorIDIn(ArrayList value) { this.CreditorIDIn = value; return this; } public BigDecimal getCreditorTotal() { return CreditorTotal; } public CR_AUDITQuery setCreditorTotal(BigDecimal value) { this.CreditorTotal = value; return this; } public BigDecimal getCreditorTotalGreaterThanOrEqualTo() { return CreditorTotalGreaterThanOrEqualTo; } public CR_AUDITQuery setCreditorTotalGreaterThanOrEqualTo(BigDecimal value) { this.CreditorTotalGreaterThanOrEqualTo = value; return this; } public BigDecimal getCreditorTotalGreaterThan() { return CreditorTotalGreaterThan; } public CR_AUDITQuery setCreditorTotalGreaterThan(BigDecimal value) { this.CreditorTotalGreaterThan = value; return this; } public BigDecimal getCreditorTotalLessThan() { return CreditorTotalLessThan; } public CR_AUDITQuery setCreditorTotalLessThan(BigDecimal value) { this.CreditorTotalLessThan = value; return this; } public BigDecimal getCreditorTotalLessThanOrEqualTo() { return CreditorTotalLessThanOrEqualTo; } public CR_AUDITQuery setCreditorTotalLessThanOrEqualTo(BigDecimal value) { this.CreditorTotalLessThanOrEqualTo = value; return this; } public BigDecimal getCreditorTotalNotEqualTo() { return CreditorTotalNotEqualTo; } public CR_AUDITQuery setCreditorTotalNotEqualTo(BigDecimal value) { this.CreditorTotalNotEqualTo = value; return this; } public ArrayList getCreditorTotalBetween() { return CreditorTotalBetween; } public CR_AUDITQuery setCreditorTotalBetween(ArrayList value) { this.CreditorTotalBetween = value; return this; } public ArrayList getCreditorTotalIn() { return CreditorTotalIn; } public CR_AUDITQuery setCreditorTotalIn(ArrayList value) { this.CreditorTotalIn = value; return this; } public String getReportGroup() { return ReportGroup; } public CR_AUDITQuery setReportGroup(String value) { this.ReportGroup = value; return this; } public String getReportGroupStartsWith() { return ReportGroupStartsWith; } public CR_AUDITQuery setReportGroupStartsWith(String value) { this.ReportGroupStartsWith = value; return this; } public String getReportGroupEndsWith() { return ReportGroupEndsWith; } public CR_AUDITQuery setReportGroupEndsWith(String value) { this.ReportGroupEndsWith = value; return this; } public String getReportGroupContains() { return ReportGroupContains; } public CR_AUDITQuery setReportGroupContains(String value) { this.ReportGroupContains = value; return this; } public String getReportGroupLike() { return ReportGroupLike; } public CR_AUDITQuery setReportGroupLike(String value) { this.ReportGroupLike = value; return this; } public ArrayList getReportGroupBetween() { return ReportGroupBetween; } public CR_AUDITQuery setReportGroupBetween(ArrayList value) { this.ReportGroupBetween = value; return this; } public ArrayList getReportGroupIn() { return ReportGroupIn; } public CR_AUDITQuery setReportGroupIn(ArrayList value) { this.ReportGroupIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class CR_AutoTranQuery extends QueryDb implements IReturn> { public String CRAutoTranID = null; public String CRAutoTranIDStartsWith = null; public String CRAutoTranIDEndsWith = null; public String CRAutoTranIDContains = null; public String CRAutoTranIDLike = null; public ArrayList CRAutoTranIDBetween = null; public ArrayList CRAutoTranIDIn = null; public Date LastSavedDateTime = null; public Date LastSavedDateTimeGreaterThanOrEqualTo = null; public Date LastSavedDateTimeGreaterThan = null; public Date LastSavedDateTimeLessThan = null; public Date LastSavedDateTimeLessThanOrEqualTo = null; public Date LastSavedDateTimeNotEqualTo = null; public ArrayList LastSavedDateTimeBetween = null; public ArrayList LastSavedDateTimeIn = null; public Date RunDateTime = null; public Date RunDateTimeGreaterThanOrEqualTo = null; public Date RunDateTimeGreaterThan = null; public Date RunDateTimeLessThan = null; public Date RunDateTimeLessThanOrEqualTo = null; public Date RunDateTimeNotEqualTo = null; public ArrayList RunDateTimeBetween = null; public ArrayList RunDateTimeIn = null; public String UserName = null; public String UserNameStartsWith = null; public String UserNameEndsWith = null; public String UserNameContains = null; public String UserNameLike = null; public ArrayList UserNameBetween = null; public ArrayList UserNameIn = null; public String RunNo = null; public String RunNoStartsWith = null; public String RunNoEndsWith = null; public String RunNoContains = null; public String RunNoLike = null; public ArrayList RunNoBetween = null; public ArrayList RunNoIn = null; public String getCrAutoTranID() { return CRAutoTranID; } public CR_AutoTranQuery setCrAutoTranID(String value) { this.CRAutoTranID = value; return this; } public String getCrAutoTranIDStartsWith() { return CRAutoTranIDStartsWith; } public CR_AutoTranQuery setCrAutoTranIDStartsWith(String value) { this.CRAutoTranIDStartsWith = value; return this; } public String getCrAutoTranIDEndsWith() { return CRAutoTranIDEndsWith; } public CR_AutoTranQuery setCrAutoTranIDEndsWith(String value) { this.CRAutoTranIDEndsWith = value; return this; } public String getCrAutoTranIDContains() { return CRAutoTranIDContains; } public CR_AutoTranQuery setCrAutoTranIDContains(String value) { this.CRAutoTranIDContains = value; return this; } public String getCrAutoTranIDLike() { return CRAutoTranIDLike; } public CR_AutoTranQuery setCrAutoTranIDLike(String value) { this.CRAutoTranIDLike = value; return this; } public ArrayList getCrAutoTranIDBetween() { return CRAutoTranIDBetween; } public CR_AutoTranQuery setCrAutoTranIDBetween(ArrayList value) { this.CRAutoTranIDBetween = value; return this; } public ArrayList getCrAutoTranIDIn() { return CRAutoTranIDIn; } public CR_AutoTranQuery setCrAutoTranIDIn(ArrayList value) { this.CRAutoTranIDIn = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public CR_AutoTranQuery setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getLastSavedDateTimeGreaterThanOrEqualTo() { return LastSavedDateTimeGreaterThanOrEqualTo; } public CR_AutoTranQuery setLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.LastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeGreaterThan() { return LastSavedDateTimeGreaterThan; } public CR_AutoTranQuery setLastSavedDateTimeGreaterThan(Date value) { this.LastSavedDateTimeGreaterThan = value; return this; } public Date getLastSavedDateTimeLessThan() { return LastSavedDateTimeLessThan; } public CR_AutoTranQuery setLastSavedDateTimeLessThan(Date value) { this.LastSavedDateTimeLessThan = value; return this; } public Date getLastSavedDateTimeLessThanOrEqualTo() { return LastSavedDateTimeLessThanOrEqualTo; } public CR_AutoTranQuery setLastSavedDateTimeLessThanOrEqualTo(Date value) { this.LastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeNotEqualTo() { return LastSavedDateTimeNotEqualTo; } public CR_AutoTranQuery setLastSavedDateTimeNotEqualTo(Date value) { this.LastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getLastSavedDateTimeBetween() { return LastSavedDateTimeBetween; } public CR_AutoTranQuery setLastSavedDateTimeBetween(ArrayList value) { this.LastSavedDateTimeBetween = value; return this; } public ArrayList getLastSavedDateTimeIn() { return LastSavedDateTimeIn; } public CR_AutoTranQuery setLastSavedDateTimeIn(ArrayList value) { this.LastSavedDateTimeIn = value; return this; } public Date getRunDateTime() { return RunDateTime; } public CR_AutoTranQuery setRunDateTime(Date value) { this.RunDateTime = value; return this; } public Date getRunDateTimeGreaterThanOrEqualTo() { return RunDateTimeGreaterThanOrEqualTo; } public CR_AutoTranQuery setRunDateTimeGreaterThanOrEqualTo(Date value) { this.RunDateTimeGreaterThanOrEqualTo = value; return this; } public Date getRunDateTimeGreaterThan() { return RunDateTimeGreaterThan; } public CR_AutoTranQuery setRunDateTimeGreaterThan(Date value) { this.RunDateTimeGreaterThan = value; return this; } public Date getRunDateTimeLessThan() { return RunDateTimeLessThan; } public CR_AutoTranQuery setRunDateTimeLessThan(Date value) { this.RunDateTimeLessThan = value; return this; } public Date getRunDateTimeLessThanOrEqualTo() { return RunDateTimeLessThanOrEqualTo; } public CR_AutoTranQuery setRunDateTimeLessThanOrEqualTo(Date value) { this.RunDateTimeLessThanOrEqualTo = value; return this; } public Date getRunDateTimeNotEqualTo() { return RunDateTimeNotEqualTo; } public CR_AutoTranQuery setRunDateTimeNotEqualTo(Date value) { this.RunDateTimeNotEqualTo = value; return this; } public ArrayList getRunDateTimeBetween() { return RunDateTimeBetween; } public CR_AutoTranQuery setRunDateTimeBetween(ArrayList value) { this.RunDateTimeBetween = value; return this; } public ArrayList getRunDateTimeIn() { return RunDateTimeIn; } public CR_AutoTranQuery setRunDateTimeIn(ArrayList value) { this.RunDateTimeIn = value; return this; } public String getUserName() { return UserName; } public CR_AutoTranQuery setUserName(String value) { this.UserName = value; return this; } public String getUserNameStartsWith() { return UserNameStartsWith; } public CR_AutoTranQuery setUserNameStartsWith(String value) { this.UserNameStartsWith = value; return this; } public String getUserNameEndsWith() { return UserNameEndsWith; } public CR_AutoTranQuery setUserNameEndsWith(String value) { this.UserNameEndsWith = value; return this; } public String getUserNameContains() { return UserNameContains; } public CR_AutoTranQuery setUserNameContains(String value) { this.UserNameContains = value; return this; } public String getUserNameLike() { return UserNameLike; } public CR_AutoTranQuery setUserNameLike(String value) { this.UserNameLike = value; return this; } public ArrayList getUserNameBetween() { return UserNameBetween; } public CR_AutoTranQuery setUserNameBetween(ArrayList value) { this.UserNameBetween = value; return this; } public ArrayList getUserNameIn() { return UserNameIn; } public CR_AutoTranQuery setUserNameIn(ArrayList value) { this.UserNameIn = value; return this; } public String getRunNo() { return RunNo; } public CR_AutoTranQuery setRunNo(String value) { this.RunNo = value; return this; } public String getRunNoStartsWith() { return RunNoStartsWith; } public CR_AutoTranQuery setRunNoStartsWith(String value) { this.RunNoStartsWith = value; return this; } public String getRunNoEndsWith() { return RunNoEndsWith; } public CR_AutoTranQuery setRunNoEndsWith(String value) { this.RunNoEndsWith = value; return this; } public String getRunNoContains() { return RunNoContains; } public CR_AutoTranQuery setRunNoContains(String value) { this.RunNoContains = value; return this; } public String getRunNoLike() { return RunNoLike; } public CR_AutoTranQuery setRunNoLike(String value) { this.RunNoLike = value; return this; } public ArrayList getRunNoBetween() { return RunNoBetween; } public CR_AutoTranQuery setRunNoBetween(ArrayList value) { this.RunNoBetween = value; return this; } public ArrayList getRunNoIn() { return RunNoIn; } public CR_AutoTranQuery setRunNoIn(ArrayList value) { this.RunNoIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class CR_AutoTranLinesQuery extends QueryDb implements IReturn> { public String CRAutoTranLineID = null; public String CRAutoTranLineIDStartsWith = null; public String CRAutoTranLineIDEndsWith = null; public String CRAutoTranLineIDContains = null; public String CRAutoTranLineIDLike = null; public ArrayList CRAutoTranLineIDBetween = null; public ArrayList CRAutoTranLineIDIn = null; public String CRAutoTranID = null; public String CRAutoTranIDStartsWith = null; public String CRAutoTranIDEndsWith = null; public String CRAutoTranIDContains = null; public String CRAutoTranIDLike = null; public ArrayList CRAutoTranIDBetween = null; public ArrayList CRAutoTranIDIn = null; public String SourceCRBatchID = null; public String SourceCRBatchIDStartsWith = null; public String SourceCRBatchIDEndsWith = null; public String SourceCRBatchIDContains = null; public String SourceCRBatchIDLike = null; public ArrayList SourceCRBatchIDBetween = null; public ArrayList SourceCRBatchIDIn = null; public String SourceBatchNo = null; public String SourceBatchNoStartsWith = null; public String SourceBatchNoEndsWith = null; public String SourceBatchNoContains = null; public String SourceBatchNoLike = null; public ArrayList SourceBatchNoBetween = null; public ArrayList SourceBatchNoIn = null; public Short SourceReceiptType = null; public Short SourceReceiptTypeGreaterThanOrEqualTo = null; public Short SourceReceiptTypeGreaterThan = null; public Short SourceReceiptTypeLessThan = null; public Short SourceReceiptTypeLessThanOrEqualTo = null; public Short SourceReceiptTypeNotEqualTo = null; public ArrayList SourceReceiptTypeBetween = null; public ArrayList SourceReceiptTypeIn = null; public String SourceDesc = null; public String SourceDescStartsWith = null; public String SourceDescEndsWith = null; public String SourceDescContains = null; public String SourceDescLike = null; public ArrayList SourceDescBetween = null; public ArrayList SourceDescIn = null; public Date PostingDue = null; public Date PostingDueGreaterThanOrEqualTo = null; public Date PostingDueGreaterThan = null; public Date PostingDueLessThan = null; public Date PostingDueLessThanOrEqualTo = null; public Date PostingDueNotEqualTo = null; public ArrayList PostingDueBetween = null; public ArrayList PostingDueIn = null; public String Reason = null; public String ReasonStartsWith = null; public String ReasonEndsWith = null; public String ReasonContains = null; public String ReasonLike = null; public ArrayList ReasonBetween = null; public ArrayList ReasonIn = null; public String DestCRBatchID = null; public String DestCRBatchIDStartsWith = null; public String DestCRBatchIDEndsWith = null; public String DestCRBatchIDContains = null; public String DestCRBatchIDLike = null; public ArrayList DestCRBatchIDBetween = null; public ArrayList DestCRBatchIDIn = null; public String DestBatchNo = null; public String DestBatchNoStartsWith = null; public String DestBatchNoEndsWith = null; public String DestBatchNoContains = null; public String DestBatchNoLike = null; public ArrayList DestBatchNoBetween = null; public ArrayList DestBatchNoIn = null; public Short LineNum = null; public Short LineNumGreaterThanOrEqualTo = null; public Short LineNumGreaterThan = null; public Short LineNumLessThan = null; public Short LineNumLessThanOrEqualTo = null; public Short LineNumNotEqualTo = null; public ArrayList LineNumBetween = null; public ArrayList LineNumIn = null; public Date LastSavedDateTime = null; public Date LastSavedDateTimeGreaterThanOrEqualTo = null; public Date LastSavedDateTimeGreaterThan = null; public Date LastSavedDateTimeLessThan = null; public Date LastSavedDateTimeLessThanOrEqualTo = null; public Date LastSavedDateTimeNotEqualTo = null; public ArrayList LastSavedDateTimeBetween = null; public ArrayList LastSavedDateTimeIn = null; public String getCrAutoTranLineID() { return CRAutoTranLineID; } public CR_AutoTranLinesQuery setCrAutoTranLineID(String value) { this.CRAutoTranLineID = value; return this; } public String getCrAutoTranLineIDStartsWith() { return CRAutoTranLineIDStartsWith; } public CR_AutoTranLinesQuery setCrAutoTranLineIDStartsWith(String value) { this.CRAutoTranLineIDStartsWith = value; return this; } public String getCrAutoTranLineIDEndsWith() { return CRAutoTranLineIDEndsWith; } public CR_AutoTranLinesQuery setCrAutoTranLineIDEndsWith(String value) { this.CRAutoTranLineIDEndsWith = value; return this; } public String getCrAutoTranLineIDContains() { return CRAutoTranLineIDContains; } public CR_AutoTranLinesQuery setCrAutoTranLineIDContains(String value) { this.CRAutoTranLineIDContains = value; return this; } public String getCrAutoTranLineIDLike() { return CRAutoTranLineIDLike; } public CR_AutoTranLinesQuery setCrAutoTranLineIDLike(String value) { this.CRAutoTranLineIDLike = value; return this; } public ArrayList getCrAutoTranLineIDBetween() { return CRAutoTranLineIDBetween; } public CR_AutoTranLinesQuery setCrAutoTranLineIDBetween(ArrayList value) { this.CRAutoTranLineIDBetween = value; return this; } public ArrayList getCrAutoTranLineIDIn() { return CRAutoTranLineIDIn; } public CR_AutoTranLinesQuery setCrAutoTranLineIDIn(ArrayList value) { this.CRAutoTranLineIDIn = value; return this; } public String getCrAutoTranID() { return CRAutoTranID; } public CR_AutoTranLinesQuery setCrAutoTranID(String value) { this.CRAutoTranID = value; return this; } public String getCrAutoTranIDStartsWith() { return CRAutoTranIDStartsWith; } public CR_AutoTranLinesQuery setCrAutoTranIDStartsWith(String value) { this.CRAutoTranIDStartsWith = value; return this; } public String getCrAutoTranIDEndsWith() { return CRAutoTranIDEndsWith; } public CR_AutoTranLinesQuery setCrAutoTranIDEndsWith(String value) { this.CRAutoTranIDEndsWith = value; return this; } public String getCrAutoTranIDContains() { return CRAutoTranIDContains; } public CR_AutoTranLinesQuery setCrAutoTranIDContains(String value) { this.CRAutoTranIDContains = value; return this; } public String getCrAutoTranIDLike() { return CRAutoTranIDLike; } public CR_AutoTranLinesQuery setCrAutoTranIDLike(String value) { this.CRAutoTranIDLike = value; return this; } public ArrayList getCrAutoTranIDBetween() { return CRAutoTranIDBetween; } public CR_AutoTranLinesQuery setCrAutoTranIDBetween(ArrayList value) { this.CRAutoTranIDBetween = value; return this; } public ArrayList getCrAutoTranIDIn() { return CRAutoTranIDIn; } public CR_AutoTranLinesQuery setCrAutoTranIDIn(ArrayList value) { this.CRAutoTranIDIn = value; return this; } public String getSourceCRBatchID() { return SourceCRBatchID; } public CR_AutoTranLinesQuery setSourceCRBatchID(String value) { this.SourceCRBatchID = value; return this; } public String getSourceCRBatchIDStartsWith() { return SourceCRBatchIDStartsWith; } public CR_AutoTranLinesQuery setSourceCRBatchIDStartsWith(String value) { this.SourceCRBatchIDStartsWith = value; return this; } public String getSourceCRBatchIDEndsWith() { return SourceCRBatchIDEndsWith; } public CR_AutoTranLinesQuery setSourceCRBatchIDEndsWith(String value) { this.SourceCRBatchIDEndsWith = value; return this; } public String getSourceCRBatchIDContains() { return SourceCRBatchIDContains; } public CR_AutoTranLinesQuery setSourceCRBatchIDContains(String value) { this.SourceCRBatchIDContains = value; return this; } public String getSourceCRBatchIDLike() { return SourceCRBatchIDLike; } public CR_AutoTranLinesQuery setSourceCRBatchIDLike(String value) { this.SourceCRBatchIDLike = value; return this; } public ArrayList getSourceCRBatchIDBetween() { return SourceCRBatchIDBetween; } public CR_AutoTranLinesQuery setSourceCRBatchIDBetween(ArrayList value) { this.SourceCRBatchIDBetween = value; return this; } public ArrayList getSourceCRBatchIDIn() { return SourceCRBatchIDIn; } public CR_AutoTranLinesQuery setSourceCRBatchIDIn(ArrayList value) { this.SourceCRBatchIDIn = value; return this; } public String getSourceBatchNo() { return SourceBatchNo; } public CR_AutoTranLinesQuery setSourceBatchNo(String value) { this.SourceBatchNo = value; return this; } public String getSourceBatchNoStartsWith() { return SourceBatchNoStartsWith; } public CR_AutoTranLinesQuery setSourceBatchNoStartsWith(String value) { this.SourceBatchNoStartsWith = value; return this; } public String getSourceBatchNoEndsWith() { return SourceBatchNoEndsWith; } public CR_AutoTranLinesQuery setSourceBatchNoEndsWith(String value) { this.SourceBatchNoEndsWith = value; return this; } public String getSourceBatchNoContains() { return SourceBatchNoContains; } public CR_AutoTranLinesQuery setSourceBatchNoContains(String value) { this.SourceBatchNoContains = value; return this; } public String getSourceBatchNoLike() { return SourceBatchNoLike; } public CR_AutoTranLinesQuery setSourceBatchNoLike(String value) { this.SourceBatchNoLike = value; return this; } public ArrayList getSourceBatchNoBetween() { return SourceBatchNoBetween; } public CR_AutoTranLinesQuery setSourceBatchNoBetween(ArrayList value) { this.SourceBatchNoBetween = value; return this; } public ArrayList getSourceBatchNoIn() { return SourceBatchNoIn; } public CR_AutoTranLinesQuery setSourceBatchNoIn(ArrayList value) { this.SourceBatchNoIn = value; return this; } public Short getSourceReceiptType() { return SourceReceiptType; } public CR_AutoTranLinesQuery setSourceReceiptType(Short value) { this.SourceReceiptType = value; return this; } public Short getSourceReceiptTypeGreaterThanOrEqualTo() { return SourceReceiptTypeGreaterThanOrEqualTo; } public CR_AutoTranLinesQuery setSourceReceiptTypeGreaterThanOrEqualTo(Short value) { this.SourceReceiptTypeGreaterThanOrEqualTo = value; return this; } public Short getSourceReceiptTypeGreaterThan() { return SourceReceiptTypeGreaterThan; } public CR_AutoTranLinesQuery setSourceReceiptTypeGreaterThan(Short value) { this.SourceReceiptTypeGreaterThan = value; return this; } public Short getSourceReceiptTypeLessThan() { return SourceReceiptTypeLessThan; } public CR_AutoTranLinesQuery setSourceReceiptTypeLessThan(Short value) { this.SourceReceiptTypeLessThan = value; return this; } public Short getSourceReceiptTypeLessThanOrEqualTo() { return SourceReceiptTypeLessThanOrEqualTo; } public CR_AutoTranLinesQuery setSourceReceiptTypeLessThanOrEqualTo(Short value) { this.SourceReceiptTypeLessThanOrEqualTo = value; return this; } public Short getSourceReceiptTypeNotEqualTo() { return SourceReceiptTypeNotEqualTo; } public CR_AutoTranLinesQuery setSourceReceiptTypeNotEqualTo(Short value) { this.SourceReceiptTypeNotEqualTo = value; return this; } public ArrayList getSourceReceiptTypeBetween() { return SourceReceiptTypeBetween; } public CR_AutoTranLinesQuery setSourceReceiptTypeBetween(ArrayList value) { this.SourceReceiptTypeBetween = value; return this; } public ArrayList getSourceReceiptTypeIn() { return SourceReceiptTypeIn; } public CR_AutoTranLinesQuery setSourceReceiptTypeIn(ArrayList value) { this.SourceReceiptTypeIn = value; return this; } public String getSourceDesc() { return SourceDesc; } public CR_AutoTranLinesQuery setSourceDesc(String value) { this.SourceDesc = value; return this; } public String getSourceDescStartsWith() { return SourceDescStartsWith; } public CR_AutoTranLinesQuery setSourceDescStartsWith(String value) { this.SourceDescStartsWith = value; return this; } public String getSourceDescEndsWith() { return SourceDescEndsWith; } public CR_AutoTranLinesQuery setSourceDescEndsWith(String value) { this.SourceDescEndsWith = value; return this; } public String getSourceDescContains() { return SourceDescContains; } public CR_AutoTranLinesQuery setSourceDescContains(String value) { this.SourceDescContains = value; return this; } public String getSourceDescLike() { return SourceDescLike; } public CR_AutoTranLinesQuery setSourceDescLike(String value) { this.SourceDescLike = value; return this; } public ArrayList getSourceDescBetween() { return SourceDescBetween; } public CR_AutoTranLinesQuery setSourceDescBetween(ArrayList value) { this.SourceDescBetween = value; return this; } public ArrayList getSourceDescIn() { return SourceDescIn; } public CR_AutoTranLinesQuery setSourceDescIn(ArrayList value) { this.SourceDescIn = value; return this; } public Date getPostingDue() { return PostingDue; } public CR_AutoTranLinesQuery setPostingDue(Date value) { this.PostingDue = value; return this; } public Date getPostingDueGreaterThanOrEqualTo() { return PostingDueGreaterThanOrEqualTo; } public CR_AutoTranLinesQuery setPostingDueGreaterThanOrEqualTo(Date value) { this.PostingDueGreaterThanOrEqualTo = value; return this; } public Date getPostingDueGreaterThan() { return PostingDueGreaterThan; } public CR_AutoTranLinesQuery setPostingDueGreaterThan(Date value) { this.PostingDueGreaterThan = value; return this; } public Date getPostingDueLessThan() { return PostingDueLessThan; } public CR_AutoTranLinesQuery setPostingDueLessThan(Date value) { this.PostingDueLessThan = value; return this; } public Date getPostingDueLessThanOrEqualTo() { return PostingDueLessThanOrEqualTo; } public CR_AutoTranLinesQuery setPostingDueLessThanOrEqualTo(Date value) { this.PostingDueLessThanOrEqualTo = value; return this; } public Date getPostingDueNotEqualTo() { return PostingDueNotEqualTo; } public CR_AutoTranLinesQuery setPostingDueNotEqualTo(Date value) { this.PostingDueNotEqualTo = value; return this; } public ArrayList getPostingDueBetween() { return PostingDueBetween; } public CR_AutoTranLinesQuery setPostingDueBetween(ArrayList value) { this.PostingDueBetween = value; return this; } public ArrayList getPostingDueIn() { return PostingDueIn; } public CR_AutoTranLinesQuery setPostingDueIn(ArrayList value) { this.PostingDueIn = value; return this; } public String getReason() { return Reason; } public CR_AutoTranLinesQuery setReason(String value) { this.Reason = value; return this; } public String getReasonStartsWith() { return ReasonStartsWith; } public CR_AutoTranLinesQuery setReasonStartsWith(String value) { this.ReasonStartsWith = value; return this; } public String getReasonEndsWith() { return ReasonEndsWith; } public CR_AutoTranLinesQuery setReasonEndsWith(String value) { this.ReasonEndsWith = value; return this; } public String getReasonContains() { return ReasonContains; } public CR_AutoTranLinesQuery setReasonContains(String value) { this.ReasonContains = value; return this; } public String getReasonLike() { return ReasonLike; } public CR_AutoTranLinesQuery setReasonLike(String value) { this.ReasonLike = value; return this; } public ArrayList getReasonBetween() { return ReasonBetween; } public CR_AutoTranLinesQuery setReasonBetween(ArrayList value) { this.ReasonBetween = value; return this; } public ArrayList getReasonIn() { return ReasonIn; } public CR_AutoTranLinesQuery setReasonIn(ArrayList value) { this.ReasonIn = value; return this; } public String getDestCRBatchID() { return DestCRBatchID; } public CR_AutoTranLinesQuery setDestCRBatchID(String value) { this.DestCRBatchID = value; return this; } public String getDestCRBatchIDStartsWith() { return DestCRBatchIDStartsWith; } public CR_AutoTranLinesQuery setDestCRBatchIDStartsWith(String value) { this.DestCRBatchIDStartsWith = value; return this; } public String getDestCRBatchIDEndsWith() { return DestCRBatchIDEndsWith; } public CR_AutoTranLinesQuery setDestCRBatchIDEndsWith(String value) { this.DestCRBatchIDEndsWith = value; return this; } public String getDestCRBatchIDContains() { return DestCRBatchIDContains; } public CR_AutoTranLinesQuery setDestCRBatchIDContains(String value) { this.DestCRBatchIDContains = value; return this; } public String getDestCRBatchIDLike() { return DestCRBatchIDLike; } public CR_AutoTranLinesQuery setDestCRBatchIDLike(String value) { this.DestCRBatchIDLike = value; return this; } public ArrayList getDestCRBatchIDBetween() { return DestCRBatchIDBetween; } public CR_AutoTranLinesQuery setDestCRBatchIDBetween(ArrayList value) { this.DestCRBatchIDBetween = value; return this; } public ArrayList getDestCRBatchIDIn() { return DestCRBatchIDIn; } public CR_AutoTranLinesQuery setDestCRBatchIDIn(ArrayList value) { this.DestCRBatchIDIn = value; return this; } public String getDestBatchNo() { return DestBatchNo; } public CR_AutoTranLinesQuery setDestBatchNo(String value) { this.DestBatchNo = value; return this; } public String getDestBatchNoStartsWith() { return DestBatchNoStartsWith; } public CR_AutoTranLinesQuery setDestBatchNoStartsWith(String value) { this.DestBatchNoStartsWith = value; return this; } public String getDestBatchNoEndsWith() { return DestBatchNoEndsWith; } public CR_AutoTranLinesQuery setDestBatchNoEndsWith(String value) { this.DestBatchNoEndsWith = value; return this; } public String getDestBatchNoContains() { return DestBatchNoContains; } public CR_AutoTranLinesQuery setDestBatchNoContains(String value) { this.DestBatchNoContains = value; return this; } public String getDestBatchNoLike() { return DestBatchNoLike; } public CR_AutoTranLinesQuery setDestBatchNoLike(String value) { this.DestBatchNoLike = value; return this; } public ArrayList getDestBatchNoBetween() { return DestBatchNoBetween; } public CR_AutoTranLinesQuery setDestBatchNoBetween(ArrayList value) { this.DestBatchNoBetween = value; return this; } public ArrayList getDestBatchNoIn() { return DestBatchNoIn; } public CR_AutoTranLinesQuery setDestBatchNoIn(ArrayList value) { this.DestBatchNoIn = value; return this; } public Short getLineNum() { return LineNum; } public CR_AutoTranLinesQuery setLineNum(Short value) { this.LineNum = value; return this; } public Short getLineNumGreaterThanOrEqualTo() { return LineNumGreaterThanOrEqualTo; } public CR_AutoTranLinesQuery setLineNumGreaterThanOrEqualTo(Short value) { this.LineNumGreaterThanOrEqualTo = value; return this; } public Short getLineNumGreaterThan() { return LineNumGreaterThan; } public CR_AutoTranLinesQuery setLineNumGreaterThan(Short value) { this.LineNumGreaterThan = value; return this; } public Short getLineNumLessThan() { return LineNumLessThan; } public CR_AutoTranLinesQuery setLineNumLessThan(Short value) { this.LineNumLessThan = value; return this; } public Short getLineNumLessThanOrEqualTo() { return LineNumLessThanOrEqualTo; } public CR_AutoTranLinesQuery setLineNumLessThanOrEqualTo(Short value) { this.LineNumLessThanOrEqualTo = value; return this; } public Short getLineNumNotEqualTo() { return LineNumNotEqualTo; } public CR_AutoTranLinesQuery setLineNumNotEqualTo(Short value) { this.LineNumNotEqualTo = value; return this; } public ArrayList getLineNumBetween() { return LineNumBetween; } public CR_AutoTranLinesQuery setLineNumBetween(ArrayList value) { this.LineNumBetween = value; return this; } public ArrayList getLineNumIn() { return LineNumIn; } public CR_AutoTranLinesQuery setLineNumIn(ArrayList value) { this.LineNumIn = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public CR_AutoTranLinesQuery setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getLastSavedDateTimeGreaterThanOrEqualTo() { return LastSavedDateTimeGreaterThanOrEqualTo; } public CR_AutoTranLinesQuery setLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.LastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeGreaterThan() { return LastSavedDateTimeGreaterThan; } public CR_AutoTranLinesQuery setLastSavedDateTimeGreaterThan(Date value) { this.LastSavedDateTimeGreaterThan = value; return this; } public Date getLastSavedDateTimeLessThan() { return LastSavedDateTimeLessThan; } public CR_AutoTranLinesQuery setLastSavedDateTimeLessThan(Date value) { this.LastSavedDateTimeLessThan = value; return this; } public Date getLastSavedDateTimeLessThanOrEqualTo() { return LastSavedDateTimeLessThanOrEqualTo; } public CR_AutoTranLinesQuery setLastSavedDateTimeLessThanOrEqualTo(Date value) { this.LastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeNotEqualTo() { return LastSavedDateTimeNotEqualTo; } public CR_AutoTranLinesQuery setLastSavedDateTimeNotEqualTo(Date value) { this.LastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getLastSavedDateTimeBetween() { return LastSavedDateTimeBetween; } public CR_AutoTranLinesQuery setLastSavedDateTimeBetween(ArrayList value) { this.LastSavedDateTimeBetween = value; return this; } public ArrayList getLastSavedDateTimeIn() { return LastSavedDateTimeIn; } public CR_AutoTranLinesQuery setLastSavedDateTimeIn(ArrayList value) { this.LastSavedDateTimeIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class CR_BatchPayLinesQuery extends QueryDb implements IReturn> { public String CR_BatchPayLinesID = null; public String CR_BatchPayLinesIDStartsWith = null; public String CR_BatchPayLinesIDEndsWith = null; public String CR_BatchPayLinesIDContains = null; public String CR_BatchPayLinesIDLike = null; public ArrayList CR_BatchPayLinesIDBetween = null; public ArrayList CR_BatchPayLinesIDIn = null; public String CR_BatchPayID = null; public String CR_BatchPayIDStartsWith = null; public String CR_BatchPayIDEndsWith = null; public String CR_BatchPayIDContains = null; public String CR_BatchPayIDLike = null; public ArrayList CR_BatchPayIDBetween = null; public ArrayList CR_BatchPayIDIn = null; public String CR_TransID = null; public String CR_TransIDStartsWith = null; public String CR_TransIDEndsWith = null; public String CR_TransIDContains = null; public String CR_TransIDLike = null; public ArrayList CR_TransIDBetween = null; public ArrayList CR_TransIDIn = null; public BigDecimal PaymentAmount = null; public BigDecimal PaymentAmountGreaterThanOrEqualTo = null; public BigDecimal PaymentAmountGreaterThan = null; public BigDecimal PaymentAmountLessThan = null; public BigDecimal PaymentAmountLessThanOrEqualTo = null; public BigDecimal PaymentAmountNotEqualTo = null; public ArrayList PaymentAmountBetween = null; public ArrayList PaymentAmountIn = null; public Short BatchLineNo = null; public Short BatchLineNoGreaterThanOrEqualTo = null; public Short BatchLineNoGreaterThan = null; public Short BatchLineNoLessThan = null; public Short BatchLineNoLessThanOrEqualTo = null; public Short BatchLineNoNotEqualTo = null; public ArrayList BatchLineNoBetween = null; public ArrayList BatchLineNoIn = null; public String HistoryText = null; public String HistoryTextStartsWith = null; public String HistoryTextEndsWith = null; public String HistoryTextContains = null; public String HistoryTextLike = null; public ArrayList HistoryTextBetween = null; public ArrayList HistoryTextIn = null; public String PaymentTransID = null; public String PaymentTransIDStartsWith = null; public String PaymentTransIDEndsWith = null; public String PaymentTransIDContains = null; public String PaymentTransIDLike = null; public ArrayList PaymentTransIDBetween = null; public ArrayList PaymentTransIDIn = null; public String ChequeNo = null; public String ChequeNoStartsWith = null; public String ChequeNoEndsWith = null; public String ChequeNoContains = null; public String ChequeNoLike = null; public ArrayList ChequeNoBetween = null; public ArrayList ChequeNoIn = null; public String LedgerID = null; public String LedgerIDStartsWith = null; public String LedgerIDEndsWith = null; public String LedgerIDContains = null; public String LedgerIDLike = null; public ArrayList LedgerIDBetween = null; public ArrayList LedgerIDIn = null; public BigDecimal PaymentFromBankAmount = null; public BigDecimal PaymentFromBankAmountGreaterThanOrEqualTo = null; public BigDecimal PaymentFromBankAmountGreaterThan = null; public BigDecimal PaymentFromBankAmountLessThan = null; public BigDecimal PaymentFromBankAmountLessThanOrEqualTo = null; public BigDecimal PaymentFromBankAmountNotEqualTo = null; public ArrayList PaymentFromBankAmountBetween = null; public ArrayList PaymentFromBankAmountIn = null; public BigDecimal PaymentFXAmount = null; public BigDecimal PaymentFXAmountGreaterThanOrEqualTo = null; public BigDecimal PaymentFXAmountGreaterThan = null; public BigDecimal PaymentFXAmountLessThan = null; public BigDecimal PaymentFXAmountLessThanOrEqualTo = null; public BigDecimal PaymentFXAmountNotEqualTo = null; public ArrayList PaymentFXAmountBetween = null; public ArrayList PaymentFXAmountIn = null; public BigDecimal CurrencyRateUsed = null; public BigDecimal CurrencyRateUsedGreaterThanOrEqualTo = null; public BigDecimal CurrencyRateUsedGreaterThan = null; public BigDecimal CurrencyRateUsedLessThan = null; public BigDecimal CurrencyRateUsedLessThanOrEqualTo = null; public BigDecimal CurrencyRateUsedNotEqualTo = null; public ArrayList CurrencyRateUsedBetween = null; public ArrayList CurrencyRateUsedIn = null; public String FXShortCode = null; public String FXShortCodeStartsWith = null; public String FXShortCodeEndsWith = null; public String FXShortCodeContains = null; public String FXShortCodeLike = null; public ArrayList FXShortCodeBetween = null; public ArrayList FXShortCodeIn = null; public BigDecimal DiscountAmount = null; public BigDecimal DiscountAmountGreaterThanOrEqualTo = null; public BigDecimal DiscountAmountGreaterThan = null; public BigDecimal DiscountAmountLessThan = null; public BigDecimal DiscountAmountLessThanOrEqualTo = null; public BigDecimal DiscountAmountNotEqualTo = null; public ArrayList DiscountAmountBetween = null; public ArrayList DiscountAmountIn = null; public BigDecimal HomeDiscountAmount = null; public BigDecimal HomeDiscountAmountGreaterThanOrEqualTo = null; public BigDecimal HomeDiscountAmountGreaterThan = null; public BigDecimal HomeDiscountAmountLessThan = null; public BigDecimal HomeDiscountAmountLessThanOrEqualTo = null; public BigDecimal HomeDiscountAmountNotEqualTo = null; public ArrayList HomeDiscountAmountBetween = null; public ArrayList HomeDiscountAmountIn = null; public String GSTID = null; public String GSTIDStartsWith = null; public String GSTIDEndsWith = null; public String GSTIDContains = null; public String GSTIDLike = null; public ArrayList GSTIDBetween = null; public ArrayList GSTIDIn = null; public BigDecimal GSTAmount = null; public BigDecimal GSTAmountGreaterThanOrEqualTo = null; public BigDecimal GSTAmountGreaterThan = null; public BigDecimal GSTAmountLessThan = null; public BigDecimal GSTAmountLessThanOrEqualTo = null; public BigDecimal GSTAmountNotEqualTo = null; public ArrayList GSTAmountBetween = null; public ArrayList GSTAmountIn = null; public BigDecimal GSTRate = null; public BigDecimal GSTRateGreaterThanOrEqualTo = null; public BigDecimal GSTRateGreaterThan = null; public BigDecimal GSTRateLessThan = null; public BigDecimal GSTRateLessThanOrEqualTo = null; public BigDecimal GSTRateNotEqualTo = null; public ArrayList GSTRateBetween = null; public ArrayList GSTRateIn = null; public String DiscountLedgerID = null; public String DiscountLedgerIDStartsWith = null; public String DiscountLedgerIDEndsWith = null; public String DiscountLedgerIDContains = null; public String DiscountLedgerIDLike = null; public ArrayList DiscountLedgerIDBetween = null; public ArrayList DiscountLedgerIDIn = null; public Date LastSavedDateTime = null; public Date LastSavedDateTimeGreaterThanOrEqualTo = null; public Date LastSavedDateTimeGreaterThan = null; public Date LastSavedDateTimeLessThan = null; public Date LastSavedDateTimeLessThanOrEqualTo = null; public Date LastSavedDateTimeNotEqualTo = null; public ArrayList LastSavedDateTimeBetween = null; public ArrayList LastSavedDateTimeIn = null; public String CurrencyID = null; public String CurrencyIDStartsWith = null; public String CurrencyIDEndsWith = null; public String CurrencyIDContains = null; public String CurrencyIDLike = null; public ArrayList CurrencyIDBetween = null; public ArrayList CurrencyIDIn = null; public BigDecimal UnrealisedGainLoss = null; public BigDecimal UnrealisedGainLossGreaterThanOrEqualTo = null; public BigDecimal UnrealisedGainLossGreaterThan = null; public BigDecimal UnrealisedGainLossLessThan = null; public BigDecimal UnrealisedGainLossLessThanOrEqualTo = null; public BigDecimal UnrealisedGainLossNotEqualTo = null; public ArrayList UnrealisedGainLossBetween = null; public ArrayList UnrealisedGainLossIn = null; public BigDecimal RealisedGainLoss = null; public BigDecimal RealisedGainLossGreaterThanOrEqualTo = null; public BigDecimal RealisedGainLossGreaterThan = null; public BigDecimal RealisedGainLossLessThan = null; public BigDecimal RealisedGainLossLessThanOrEqualTo = null; public BigDecimal RealisedGainLossNotEqualTo = null; public ArrayList RealisedGainLossBetween = null; public ArrayList RealisedGainLossIn = null; public BigDecimal PaymentFromBankFXAmount = null; public BigDecimal PaymentFromBankFXAmountGreaterThanOrEqualTo = null; public BigDecimal PaymentFromBankFXAmountGreaterThan = null; public BigDecimal PaymentFromBankFXAmountLessThan = null; public BigDecimal PaymentFromBankFXAmountLessThanOrEqualTo = null; public BigDecimal PaymentFromBankFXAmountNotEqualTo = null; public ArrayList PaymentFromBankFXAmountBetween = null; public ArrayList PaymentFromBankFXAmountIn = null; public String BankLedgerID = null; public String BankLedgerIDStartsWith = null; public String BankLedgerIDEndsWith = null; public String BankLedgerIDContains = null; public String BankLedgerIDLike = null; public ArrayList BankLedgerIDBetween = null; public ArrayList BankLedgerIDIn = null; public BigDecimal FeeAmount = null; public BigDecimal FeeAmountGreaterThanOrEqualTo = null; public BigDecimal FeeAmountGreaterThan = null; public BigDecimal FeeAmountLessThan = null; public BigDecimal FeeAmountLessThanOrEqualTo = null; public BigDecimal FeeAmountNotEqualTo = null; public ArrayList FeeAmountBetween = null; public ArrayList FeeAmountIn = null; public String FeeGSTID = null; public String FeeGSTIDStartsWith = null; public String FeeGSTIDEndsWith = null; public String FeeGSTIDContains = null; public String FeeGSTIDLike = null; public ArrayList FeeGSTIDBetween = null; public ArrayList FeeGSTIDIn = null; public BigDecimal FeeGSTRate = null; public BigDecimal FeeGSTRateGreaterThanOrEqualTo = null; public BigDecimal FeeGSTRateGreaterThan = null; public BigDecimal FeeGSTRateLessThan = null; public BigDecimal FeeGSTRateLessThanOrEqualTo = null; public BigDecimal FeeGSTRateNotEqualTo = null; public ArrayList FeeGSTRateBetween = null; public ArrayList FeeGSTRateIn = null; public BigDecimal FeeGSTAmount = null; public BigDecimal FeeGSTAmountGreaterThanOrEqualTo = null; public BigDecimal FeeGSTAmountGreaterThan = null; public BigDecimal FeeGSTAmountLessThan = null; public BigDecimal FeeGSTAmountLessThanOrEqualTo = null; public BigDecimal FeeGSTAmountNotEqualTo = null; public ArrayList FeeGSTAmountBetween = null; public ArrayList FeeGSTAmountIn = null; public BigDecimal FeeIncGSTAmount = null; public BigDecimal FeeIncGSTAmountGreaterThanOrEqualTo = null; public BigDecimal FeeIncGSTAmountGreaterThan = null; public BigDecimal FeeIncGSTAmountLessThan = null; public BigDecimal FeeIncGSTAmountLessThanOrEqualTo = null; public BigDecimal FeeIncGSTAmountNotEqualTo = null; public ArrayList FeeIncGSTAmountBetween = null; public ArrayList FeeIncGSTAmountIn = null; public Integer LineNumber = null; public Integer LineNumberGreaterThanOrEqualTo = null; public Integer LineNumberGreaterThan = null; public Integer LineNumberLessThan = null; public Integer LineNumberLessThanOrEqualTo = null; public Integer LineNumberNotEqualTo = null; public ArrayList LineNumberBetween = null; public ArrayList LineNumberIn = null; public BigDecimal CR_TransOutstandingAmount = null; public BigDecimal CR_TransOutstandingAmountGreaterThanOrEqualTo = null; public BigDecimal CR_TransOutstandingAmountGreaterThan = null; public BigDecimal CR_TransOutstandingAmountLessThan = null; public BigDecimal CR_TransOutstandingAmountLessThanOrEqualTo = null; public BigDecimal CR_TransOutstandingAmountNotEqualTo = null; public ArrayList CR_TransOutstandingAmountBetween = null; public ArrayList CR_TransOutstandingAmountIn = null; public BigDecimal CR_TransOutstandingFXAmount = null; public BigDecimal CR_TransOutstandingFXAmountGreaterThanOrEqualTo = null; public BigDecimal CR_TransOutstandingFXAmountGreaterThan = null; public BigDecimal CR_TransOutstandingFXAmountLessThan = null; public BigDecimal CR_TransOutstandingFXAmountLessThanOrEqualTo = null; public BigDecimal CR_TransOutstandingFXAmountNotEqualTo = null; public ArrayList CR_TransOutstandingFXAmountBetween = null; public ArrayList CR_TransOutstandingFXAmountIn = null; public String EFTReference = null; public String EFTReferenceStartsWith = null; public String EFTReferenceEndsWith = null; public String EFTReferenceContains = null; public String EFTReferenceLike = null; public ArrayList EFTReferenceBetween = null; public ArrayList EFTReferenceIn = null; public String getCrBatchPayLinesID() { return CR_BatchPayLinesID; } public CR_BatchPayLinesQuery setCrBatchPayLinesID(String value) { this.CR_BatchPayLinesID = value; return this; } public String getCrBatchPayLinesIDStartsWith() { return CR_BatchPayLinesIDStartsWith; } public CR_BatchPayLinesQuery setCrBatchPayLinesIDStartsWith(String value) { this.CR_BatchPayLinesIDStartsWith = value; return this; } public String getCrBatchPayLinesIDEndsWith() { return CR_BatchPayLinesIDEndsWith; } public CR_BatchPayLinesQuery setCrBatchPayLinesIDEndsWith(String value) { this.CR_BatchPayLinesIDEndsWith = value; return this; } public String getCrBatchPayLinesIDContains() { return CR_BatchPayLinesIDContains; } public CR_BatchPayLinesQuery setCrBatchPayLinesIDContains(String value) { this.CR_BatchPayLinesIDContains = value; return this; } public String getCrBatchPayLinesIDLike() { return CR_BatchPayLinesIDLike; } public CR_BatchPayLinesQuery setCrBatchPayLinesIDLike(String value) { this.CR_BatchPayLinesIDLike = value; return this; } public ArrayList getCrBatchPayLinesIDBetween() { return CR_BatchPayLinesIDBetween; } public CR_BatchPayLinesQuery setCrBatchPayLinesIDBetween(ArrayList value) { this.CR_BatchPayLinesIDBetween = value; return this; } public ArrayList getCrBatchPayLinesIDIn() { return CR_BatchPayLinesIDIn; } public CR_BatchPayLinesQuery setCrBatchPayLinesIDIn(ArrayList value) { this.CR_BatchPayLinesIDIn = value; return this; } public String getCrBatchPayID() { return CR_BatchPayID; } public CR_BatchPayLinesQuery setCrBatchPayID(String value) { this.CR_BatchPayID = value; return this; } public String getCrBatchPayIDStartsWith() { return CR_BatchPayIDStartsWith; } public CR_BatchPayLinesQuery setCrBatchPayIDStartsWith(String value) { this.CR_BatchPayIDStartsWith = value; return this; } public String getCrBatchPayIDEndsWith() { return CR_BatchPayIDEndsWith; } public CR_BatchPayLinesQuery setCrBatchPayIDEndsWith(String value) { this.CR_BatchPayIDEndsWith = value; return this; } public String getCrBatchPayIDContains() { return CR_BatchPayIDContains; } public CR_BatchPayLinesQuery setCrBatchPayIDContains(String value) { this.CR_BatchPayIDContains = value; return this; } public String getCrBatchPayIDLike() { return CR_BatchPayIDLike; } public CR_BatchPayLinesQuery setCrBatchPayIDLike(String value) { this.CR_BatchPayIDLike = value; return this; } public ArrayList getCrBatchPayIDBetween() { return CR_BatchPayIDBetween; } public CR_BatchPayLinesQuery setCrBatchPayIDBetween(ArrayList value) { this.CR_BatchPayIDBetween = value; return this; } public ArrayList getCrBatchPayIDIn() { return CR_BatchPayIDIn; } public CR_BatchPayLinesQuery setCrBatchPayIDIn(ArrayList value) { this.CR_BatchPayIDIn = value; return this; } public String getCrTransID() { return CR_TransID; } public CR_BatchPayLinesQuery setCrTransID(String value) { this.CR_TransID = value; return this; } public String getCrTransIDStartsWith() { return CR_TransIDStartsWith; } public CR_BatchPayLinesQuery setCrTransIDStartsWith(String value) { this.CR_TransIDStartsWith = value; return this; } public String getCrTransIDEndsWith() { return CR_TransIDEndsWith; } public CR_BatchPayLinesQuery setCrTransIDEndsWith(String value) { this.CR_TransIDEndsWith = value; return this; } public String getCrTransIDContains() { return CR_TransIDContains; } public CR_BatchPayLinesQuery setCrTransIDContains(String value) { this.CR_TransIDContains = value; return this; } public String getCrTransIDLike() { return CR_TransIDLike; } public CR_BatchPayLinesQuery setCrTransIDLike(String value) { this.CR_TransIDLike = value; return this; } public ArrayList getCrTransIDBetween() { return CR_TransIDBetween; } public CR_BatchPayLinesQuery setCrTransIDBetween(ArrayList value) { this.CR_TransIDBetween = value; return this; } public ArrayList getCrTransIDIn() { return CR_TransIDIn; } public CR_BatchPayLinesQuery setCrTransIDIn(ArrayList value) { this.CR_TransIDIn = value; return this; } public BigDecimal getPaymentAmount() { return PaymentAmount; } public CR_BatchPayLinesQuery setPaymentAmount(BigDecimal value) { this.PaymentAmount = value; return this; } public BigDecimal getPaymentAmountGreaterThanOrEqualTo() { return PaymentAmountGreaterThanOrEqualTo; } public CR_BatchPayLinesQuery setPaymentAmountGreaterThanOrEqualTo(BigDecimal value) { this.PaymentAmountGreaterThanOrEqualTo = value; return this; } public BigDecimal getPaymentAmountGreaterThan() { return PaymentAmountGreaterThan; } public CR_BatchPayLinesQuery setPaymentAmountGreaterThan(BigDecimal value) { this.PaymentAmountGreaterThan = value; return this; } public BigDecimal getPaymentAmountLessThan() { return PaymentAmountLessThan; } public CR_BatchPayLinesQuery setPaymentAmountLessThan(BigDecimal value) { this.PaymentAmountLessThan = value; return this; } public BigDecimal getPaymentAmountLessThanOrEqualTo() { return PaymentAmountLessThanOrEqualTo; } public CR_BatchPayLinesQuery setPaymentAmountLessThanOrEqualTo(BigDecimal value) { this.PaymentAmountLessThanOrEqualTo = value; return this; } public BigDecimal getPaymentAmountNotEqualTo() { return PaymentAmountNotEqualTo; } public CR_BatchPayLinesQuery setPaymentAmountNotEqualTo(BigDecimal value) { this.PaymentAmountNotEqualTo = value; return this; } public ArrayList getPaymentAmountBetween() { return PaymentAmountBetween; } public CR_BatchPayLinesQuery setPaymentAmountBetween(ArrayList value) { this.PaymentAmountBetween = value; return this; } public ArrayList getPaymentAmountIn() { return PaymentAmountIn; } public CR_BatchPayLinesQuery setPaymentAmountIn(ArrayList value) { this.PaymentAmountIn = value; return this; } public Short getBatchLineNo() { return BatchLineNo; } public CR_BatchPayLinesQuery setBatchLineNo(Short value) { this.BatchLineNo = value; return this; } public Short getBatchLineNoGreaterThanOrEqualTo() { return BatchLineNoGreaterThanOrEqualTo; } public CR_BatchPayLinesQuery setBatchLineNoGreaterThanOrEqualTo(Short value) { this.BatchLineNoGreaterThanOrEqualTo = value; return this; } public Short getBatchLineNoGreaterThan() { return BatchLineNoGreaterThan; } public CR_BatchPayLinesQuery setBatchLineNoGreaterThan(Short value) { this.BatchLineNoGreaterThan = value; return this; } public Short getBatchLineNoLessThan() { return BatchLineNoLessThan; } public CR_BatchPayLinesQuery setBatchLineNoLessThan(Short value) { this.BatchLineNoLessThan = value; return this; } public Short getBatchLineNoLessThanOrEqualTo() { return BatchLineNoLessThanOrEqualTo; } public CR_BatchPayLinesQuery setBatchLineNoLessThanOrEqualTo(Short value) { this.BatchLineNoLessThanOrEqualTo = value; return this; } public Short getBatchLineNoNotEqualTo() { return BatchLineNoNotEqualTo; } public CR_BatchPayLinesQuery setBatchLineNoNotEqualTo(Short value) { this.BatchLineNoNotEqualTo = value; return this; } public ArrayList getBatchLineNoBetween() { return BatchLineNoBetween; } public CR_BatchPayLinesQuery setBatchLineNoBetween(ArrayList value) { this.BatchLineNoBetween = value; return this; } public ArrayList getBatchLineNoIn() { return BatchLineNoIn; } public CR_BatchPayLinesQuery setBatchLineNoIn(ArrayList value) { this.BatchLineNoIn = value; return this; } public String getHistoryText() { return HistoryText; } public CR_BatchPayLinesQuery setHistoryText(String value) { this.HistoryText = value; return this; } public String getHistoryTextStartsWith() { return HistoryTextStartsWith; } public CR_BatchPayLinesQuery setHistoryTextStartsWith(String value) { this.HistoryTextStartsWith = value; return this; } public String getHistoryTextEndsWith() { return HistoryTextEndsWith; } public CR_BatchPayLinesQuery setHistoryTextEndsWith(String value) { this.HistoryTextEndsWith = value; return this; } public String getHistoryTextContains() { return HistoryTextContains; } public CR_BatchPayLinesQuery setHistoryTextContains(String value) { this.HistoryTextContains = value; return this; } public String getHistoryTextLike() { return HistoryTextLike; } public CR_BatchPayLinesQuery setHistoryTextLike(String value) { this.HistoryTextLike = value; return this; } public ArrayList getHistoryTextBetween() { return HistoryTextBetween; } public CR_BatchPayLinesQuery setHistoryTextBetween(ArrayList value) { this.HistoryTextBetween = value; return this; } public ArrayList getHistoryTextIn() { return HistoryTextIn; } public CR_BatchPayLinesQuery setHistoryTextIn(ArrayList value) { this.HistoryTextIn = value; return this; } public String getPaymentTransID() { return PaymentTransID; } public CR_BatchPayLinesQuery setPaymentTransID(String value) { this.PaymentTransID = value; return this; } public String getPaymentTransIDStartsWith() { return PaymentTransIDStartsWith; } public CR_BatchPayLinesQuery setPaymentTransIDStartsWith(String value) { this.PaymentTransIDStartsWith = value; return this; } public String getPaymentTransIDEndsWith() { return PaymentTransIDEndsWith; } public CR_BatchPayLinesQuery setPaymentTransIDEndsWith(String value) { this.PaymentTransIDEndsWith = value; return this; } public String getPaymentTransIDContains() { return PaymentTransIDContains; } public CR_BatchPayLinesQuery setPaymentTransIDContains(String value) { this.PaymentTransIDContains = value; return this; } public String getPaymentTransIDLike() { return PaymentTransIDLike; } public CR_BatchPayLinesQuery setPaymentTransIDLike(String value) { this.PaymentTransIDLike = value; return this; } public ArrayList getPaymentTransIDBetween() { return PaymentTransIDBetween; } public CR_BatchPayLinesQuery setPaymentTransIDBetween(ArrayList value) { this.PaymentTransIDBetween = value; return this; } public ArrayList getPaymentTransIDIn() { return PaymentTransIDIn; } public CR_BatchPayLinesQuery setPaymentTransIDIn(ArrayList value) { this.PaymentTransIDIn = value; return this; } public String getChequeNo() { return ChequeNo; } public CR_BatchPayLinesQuery setChequeNo(String value) { this.ChequeNo = value; return this; } public String getChequeNoStartsWith() { return ChequeNoStartsWith; } public CR_BatchPayLinesQuery setChequeNoStartsWith(String value) { this.ChequeNoStartsWith = value; return this; } public String getChequeNoEndsWith() { return ChequeNoEndsWith; } public CR_BatchPayLinesQuery setChequeNoEndsWith(String value) { this.ChequeNoEndsWith = value; return this; } public String getChequeNoContains() { return ChequeNoContains; } public CR_BatchPayLinesQuery setChequeNoContains(String value) { this.ChequeNoContains = value; return this; } public String getChequeNoLike() { return ChequeNoLike; } public CR_BatchPayLinesQuery setChequeNoLike(String value) { this.ChequeNoLike = value; return this; } public ArrayList getChequeNoBetween() { return ChequeNoBetween; } public CR_BatchPayLinesQuery setChequeNoBetween(ArrayList value) { this.ChequeNoBetween = value; return this; } public ArrayList getChequeNoIn() { return ChequeNoIn; } public CR_BatchPayLinesQuery setChequeNoIn(ArrayList value) { this.ChequeNoIn = value; return this; } public String getLedgerID() { return LedgerID; } public CR_BatchPayLinesQuery setLedgerID(String value) { this.LedgerID = value; return this; } public String getLedgerIDStartsWith() { return LedgerIDStartsWith; } public CR_BatchPayLinesQuery setLedgerIDStartsWith(String value) { this.LedgerIDStartsWith = value; return this; } public String getLedgerIDEndsWith() { return LedgerIDEndsWith; } public CR_BatchPayLinesQuery setLedgerIDEndsWith(String value) { this.LedgerIDEndsWith = value; return this; } public String getLedgerIDContains() { return LedgerIDContains; } public CR_BatchPayLinesQuery setLedgerIDContains(String value) { this.LedgerIDContains = value; return this; } public String getLedgerIDLike() { return LedgerIDLike; } public CR_BatchPayLinesQuery setLedgerIDLike(String value) { this.LedgerIDLike = value; return this; } public ArrayList getLedgerIDBetween() { return LedgerIDBetween; } public CR_BatchPayLinesQuery setLedgerIDBetween(ArrayList value) { this.LedgerIDBetween = value; return this; } public ArrayList getLedgerIDIn() { return LedgerIDIn; } public CR_BatchPayLinesQuery setLedgerIDIn(ArrayList value) { this.LedgerIDIn = value; return this; } public BigDecimal getPaymentFromBankAmount() { return PaymentFromBankAmount; } public CR_BatchPayLinesQuery setPaymentFromBankAmount(BigDecimal value) { this.PaymentFromBankAmount = value; return this; } public BigDecimal getPaymentFromBankAmountGreaterThanOrEqualTo() { return PaymentFromBankAmountGreaterThanOrEqualTo; } public CR_BatchPayLinesQuery setPaymentFromBankAmountGreaterThanOrEqualTo(BigDecimal value) { this.PaymentFromBankAmountGreaterThanOrEqualTo = value; return this; } public BigDecimal getPaymentFromBankAmountGreaterThan() { return PaymentFromBankAmountGreaterThan; } public CR_BatchPayLinesQuery setPaymentFromBankAmountGreaterThan(BigDecimal value) { this.PaymentFromBankAmountGreaterThan = value; return this; } public BigDecimal getPaymentFromBankAmountLessThan() { return PaymentFromBankAmountLessThan; } public CR_BatchPayLinesQuery setPaymentFromBankAmountLessThan(BigDecimal value) { this.PaymentFromBankAmountLessThan = value; return this; } public BigDecimal getPaymentFromBankAmountLessThanOrEqualTo() { return PaymentFromBankAmountLessThanOrEqualTo; } public CR_BatchPayLinesQuery setPaymentFromBankAmountLessThanOrEqualTo(BigDecimal value) { this.PaymentFromBankAmountLessThanOrEqualTo = value; return this; } public BigDecimal getPaymentFromBankAmountNotEqualTo() { return PaymentFromBankAmountNotEqualTo; } public CR_BatchPayLinesQuery setPaymentFromBankAmountNotEqualTo(BigDecimal value) { this.PaymentFromBankAmountNotEqualTo = value; return this; } public ArrayList getPaymentFromBankAmountBetween() { return PaymentFromBankAmountBetween; } public CR_BatchPayLinesQuery setPaymentFromBankAmountBetween(ArrayList value) { this.PaymentFromBankAmountBetween = value; return this; } public ArrayList getPaymentFromBankAmountIn() { return PaymentFromBankAmountIn; } public CR_BatchPayLinesQuery setPaymentFromBankAmountIn(ArrayList value) { this.PaymentFromBankAmountIn = value; return this; } public BigDecimal getPaymentFXAmount() { return PaymentFXAmount; } public CR_BatchPayLinesQuery setPaymentFXAmount(BigDecimal value) { this.PaymentFXAmount = value; return this; } public BigDecimal getPaymentFXAmountGreaterThanOrEqualTo() { return PaymentFXAmountGreaterThanOrEqualTo; } public CR_BatchPayLinesQuery setPaymentFXAmountGreaterThanOrEqualTo(BigDecimal value) { this.PaymentFXAmountGreaterThanOrEqualTo = value; return this; } public BigDecimal getPaymentFXAmountGreaterThan() { return PaymentFXAmountGreaterThan; } public CR_BatchPayLinesQuery setPaymentFXAmountGreaterThan(BigDecimal value) { this.PaymentFXAmountGreaterThan = value; return this; } public BigDecimal getPaymentFXAmountLessThan() { return PaymentFXAmountLessThan; } public CR_BatchPayLinesQuery setPaymentFXAmountLessThan(BigDecimal value) { this.PaymentFXAmountLessThan = value; return this; } public BigDecimal getPaymentFXAmountLessThanOrEqualTo() { return PaymentFXAmountLessThanOrEqualTo; } public CR_BatchPayLinesQuery setPaymentFXAmountLessThanOrEqualTo(BigDecimal value) { this.PaymentFXAmountLessThanOrEqualTo = value; return this; } public BigDecimal getPaymentFXAmountNotEqualTo() { return PaymentFXAmountNotEqualTo; } public CR_BatchPayLinesQuery setPaymentFXAmountNotEqualTo(BigDecimal value) { this.PaymentFXAmountNotEqualTo = value; return this; } public ArrayList getPaymentFXAmountBetween() { return PaymentFXAmountBetween; } public CR_BatchPayLinesQuery setPaymentFXAmountBetween(ArrayList value) { this.PaymentFXAmountBetween = value; return this; } public ArrayList getPaymentFXAmountIn() { return PaymentFXAmountIn; } public CR_BatchPayLinesQuery setPaymentFXAmountIn(ArrayList value) { this.PaymentFXAmountIn = value; return this; } public BigDecimal getCurrencyRateUsed() { return CurrencyRateUsed; } public CR_BatchPayLinesQuery setCurrencyRateUsed(BigDecimal value) { this.CurrencyRateUsed = value; return this; } public BigDecimal getCurrencyRateUsedGreaterThanOrEqualTo() { return CurrencyRateUsedGreaterThanOrEqualTo; } public CR_BatchPayLinesQuery setCurrencyRateUsedGreaterThanOrEqualTo(BigDecimal value) { this.CurrencyRateUsedGreaterThanOrEqualTo = value; return this; } public BigDecimal getCurrencyRateUsedGreaterThan() { return CurrencyRateUsedGreaterThan; } public CR_BatchPayLinesQuery setCurrencyRateUsedGreaterThan(BigDecimal value) { this.CurrencyRateUsedGreaterThan = value; return this; } public BigDecimal getCurrencyRateUsedLessThan() { return CurrencyRateUsedLessThan; } public CR_BatchPayLinesQuery setCurrencyRateUsedLessThan(BigDecimal value) { this.CurrencyRateUsedLessThan = value; return this; } public BigDecimal getCurrencyRateUsedLessThanOrEqualTo() { return CurrencyRateUsedLessThanOrEqualTo; } public CR_BatchPayLinesQuery setCurrencyRateUsedLessThanOrEqualTo(BigDecimal value) { this.CurrencyRateUsedLessThanOrEqualTo = value; return this; } public BigDecimal getCurrencyRateUsedNotEqualTo() { return CurrencyRateUsedNotEqualTo; } public CR_BatchPayLinesQuery setCurrencyRateUsedNotEqualTo(BigDecimal value) { this.CurrencyRateUsedNotEqualTo = value; return this; } public ArrayList getCurrencyRateUsedBetween() { return CurrencyRateUsedBetween; } public CR_BatchPayLinesQuery setCurrencyRateUsedBetween(ArrayList value) { this.CurrencyRateUsedBetween = value; return this; } public ArrayList getCurrencyRateUsedIn() { return CurrencyRateUsedIn; } public CR_BatchPayLinesQuery setCurrencyRateUsedIn(ArrayList value) { this.CurrencyRateUsedIn = value; return this; } public String getFxShortCode() { return FXShortCode; } public CR_BatchPayLinesQuery setFxShortCode(String value) { this.FXShortCode = value; return this; } public String getFxShortCodeStartsWith() { return FXShortCodeStartsWith; } public CR_BatchPayLinesQuery setFxShortCodeStartsWith(String value) { this.FXShortCodeStartsWith = value; return this; } public String getFxShortCodeEndsWith() { return FXShortCodeEndsWith; } public CR_BatchPayLinesQuery setFxShortCodeEndsWith(String value) { this.FXShortCodeEndsWith = value; return this; } public String getFxShortCodeContains() { return FXShortCodeContains; } public CR_BatchPayLinesQuery setFxShortCodeContains(String value) { this.FXShortCodeContains = value; return this; } public String getFxShortCodeLike() { return FXShortCodeLike; } public CR_BatchPayLinesQuery setFxShortCodeLike(String value) { this.FXShortCodeLike = value; return this; } public ArrayList getFxShortCodeBetween() { return FXShortCodeBetween; } public CR_BatchPayLinesQuery setFxShortCodeBetween(ArrayList value) { this.FXShortCodeBetween = value; return this; } public ArrayList getFxShortCodeIn() { return FXShortCodeIn; } public CR_BatchPayLinesQuery setFxShortCodeIn(ArrayList value) { this.FXShortCodeIn = value; return this; } public BigDecimal getDiscountAmount() { return DiscountAmount; } public CR_BatchPayLinesQuery setDiscountAmount(BigDecimal value) { this.DiscountAmount = value; return this; } public BigDecimal getDiscountAmountGreaterThanOrEqualTo() { return DiscountAmountGreaterThanOrEqualTo; } public CR_BatchPayLinesQuery setDiscountAmountGreaterThanOrEqualTo(BigDecimal value) { this.DiscountAmountGreaterThanOrEqualTo = value; return this; } public BigDecimal getDiscountAmountGreaterThan() { return DiscountAmountGreaterThan; } public CR_BatchPayLinesQuery setDiscountAmountGreaterThan(BigDecimal value) { this.DiscountAmountGreaterThan = value; return this; } public BigDecimal getDiscountAmountLessThan() { return DiscountAmountLessThan; } public CR_BatchPayLinesQuery setDiscountAmountLessThan(BigDecimal value) { this.DiscountAmountLessThan = value; return this; } public BigDecimal getDiscountAmountLessThanOrEqualTo() { return DiscountAmountLessThanOrEqualTo; } public CR_BatchPayLinesQuery setDiscountAmountLessThanOrEqualTo(BigDecimal value) { this.DiscountAmountLessThanOrEqualTo = value; return this; } public BigDecimal getDiscountAmountNotEqualTo() { return DiscountAmountNotEqualTo; } public CR_BatchPayLinesQuery setDiscountAmountNotEqualTo(BigDecimal value) { this.DiscountAmountNotEqualTo = value; return this; } public ArrayList getDiscountAmountBetween() { return DiscountAmountBetween; } public CR_BatchPayLinesQuery setDiscountAmountBetween(ArrayList value) { this.DiscountAmountBetween = value; return this; } public ArrayList getDiscountAmountIn() { return DiscountAmountIn; } public CR_BatchPayLinesQuery setDiscountAmountIn(ArrayList value) { this.DiscountAmountIn = value; return this; } public BigDecimal getHomeDiscountAmount() { return HomeDiscountAmount; } public CR_BatchPayLinesQuery setHomeDiscountAmount(BigDecimal value) { this.HomeDiscountAmount = value; return this; } public BigDecimal getHomeDiscountAmountGreaterThanOrEqualTo() { return HomeDiscountAmountGreaterThanOrEqualTo; } public CR_BatchPayLinesQuery setHomeDiscountAmountGreaterThanOrEqualTo(BigDecimal value) { this.HomeDiscountAmountGreaterThanOrEqualTo = value; return this; } public BigDecimal getHomeDiscountAmountGreaterThan() { return HomeDiscountAmountGreaterThan; } public CR_BatchPayLinesQuery setHomeDiscountAmountGreaterThan(BigDecimal value) { this.HomeDiscountAmountGreaterThan = value; return this; } public BigDecimal getHomeDiscountAmountLessThan() { return HomeDiscountAmountLessThan; } public CR_BatchPayLinesQuery setHomeDiscountAmountLessThan(BigDecimal value) { this.HomeDiscountAmountLessThan = value; return this; } public BigDecimal getHomeDiscountAmountLessThanOrEqualTo() { return HomeDiscountAmountLessThanOrEqualTo; } public CR_BatchPayLinesQuery setHomeDiscountAmountLessThanOrEqualTo(BigDecimal value) { this.HomeDiscountAmountLessThanOrEqualTo = value; return this; } public BigDecimal getHomeDiscountAmountNotEqualTo() { return HomeDiscountAmountNotEqualTo; } public CR_BatchPayLinesQuery setHomeDiscountAmountNotEqualTo(BigDecimal value) { this.HomeDiscountAmountNotEqualTo = value; return this; } public ArrayList getHomeDiscountAmountBetween() { return HomeDiscountAmountBetween; } public CR_BatchPayLinesQuery setHomeDiscountAmountBetween(ArrayList value) { this.HomeDiscountAmountBetween = value; return this; } public ArrayList getHomeDiscountAmountIn() { return HomeDiscountAmountIn; } public CR_BatchPayLinesQuery setHomeDiscountAmountIn(ArrayList value) { this.HomeDiscountAmountIn = value; return this; } public String getGstid() { return GSTID; } public CR_BatchPayLinesQuery setGstid(String value) { this.GSTID = value; return this; } public String getGstidStartsWith() { return GSTIDStartsWith; } public CR_BatchPayLinesQuery setGstidStartsWith(String value) { this.GSTIDStartsWith = value; return this; } public String getGstidEndsWith() { return GSTIDEndsWith; } public CR_BatchPayLinesQuery setGstidEndsWith(String value) { this.GSTIDEndsWith = value; return this; } public String getGstidContains() { return GSTIDContains; } public CR_BatchPayLinesQuery setGstidContains(String value) { this.GSTIDContains = value; return this; } public String getGstidLike() { return GSTIDLike; } public CR_BatchPayLinesQuery setGstidLike(String value) { this.GSTIDLike = value; return this; } public ArrayList getGstidBetween() { return GSTIDBetween; } public CR_BatchPayLinesQuery setGstidBetween(ArrayList value) { this.GSTIDBetween = value; return this; } public ArrayList getGstidIn() { return GSTIDIn; } public CR_BatchPayLinesQuery setGstidIn(ArrayList value) { this.GSTIDIn = value; return this; } public BigDecimal getGstAmount() { return GSTAmount; } public CR_BatchPayLinesQuery setGstAmount(BigDecimal value) { this.GSTAmount = value; return this; } public BigDecimal getGstAmountGreaterThanOrEqualTo() { return GSTAmountGreaterThanOrEqualTo; } public CR_BatchPayLinesQuery setGstAmountGreaterThanOrEqualTo(BigDecimal value) { this.GSTAmountGreaterThanOrEqualTo = value; return this; } public BigDecimal getGstAmountGreaterThan() { return GSTAmountGreaterThan; } public CR_BatchPayLinesQuery setGstAmountGreaterThan(BigDecimal value) { this.GSTAmountGreaterThan = value; return this; } public BigDecimal getGstAmountLessThan() { return GSTAmountLessThan; } public CR_BatchPayLinesQuery setGstAmountLessThan(BigDecimal value) { this.GSTAmountLessThan = value; return this; } public BigDecimal getGstAmountLessThanOrEqualTo() { return GSTAmountLessThanOrEqualTo; } public CR_BatchPayLinesQuery setGstAmountLessThanOrEqualTo(BigDecimal value) { this.GSTAmountLessThanOrEqualTo = value; return this; } public BigDecimal getGstAmountNotEqualTo() { return GSTAmountNotEqualTo; } public CR_BatchPayLinesQuery setGstAmountNotEqualTo(BigDecimal value) { this.GSTAmountNotEqualTo = value; return this; } public ArrayList getGstAmountBetween() { return GSTAmountBetween; } public CR_BatchPayLinesQuery setGstAmountBetween(ArrayList value) { this.GSTAmountBetween = value; return this; } public ArrayList getGstAmountIn() { return GSTAmountIn; } public CR_BatchPayLinesQuery setGstAmountIn(ArrayList value) { this.GSTAmountIn = value; return this; } public BigDecimal getGstRate() { return GSTRate; } public CR_BatchPayLinesQuery setGstRate(BigDecimal value) { this.GSTRate = value; return this; } public BigDecimal getGstRateGreaterThanOrEqualTo() { return GSTRateGreaterThanOrEqualTo; } public CR_BatchPayLinesQuery setGstRateGreaterThanOrEqualTo(BigDecimal value) { this.GSTRateGreaterThanOrEqualTo = value; return this; } public BigDecimal getGstRateGreaterThan() { return GSTRateGreaterThan; } public CR_BatchPayLinesQuery setGstRateGreaterThan(BigDecimal value) { this.GSTRateGreaterThan = value; return this; } public BigDecimal getGstRateLessThan() { return GSTRateLessThan; } public CR_BatchPayLinesQuery setGstRateLessThan(BigDecimal value) { this.GSTRateLessThan = value; return this; } public BigDecimal getGstRateLessThanOrEqualTo() { return GSTRateLessThanOrEqualTo; } public CR_BatchPayLinesQuery setGstRateLessThanOrEqualTo(BigDecimal value) { this.GSTRateLessThanOrEqualTo = value; return this; } public BigDecimal getGstRateNotEqualTo() { return GSTRateNotEqualTo; } public CR_BatchPayLinesQuery setGstRateNotEqualTo(BigDecimal value) { this.GSTRateNotEqualTo = value; return this; } public ArrayList getGstRateBetween() { return GSTRateBetween; } public CR_BatchPayLinesQuery setGstRateBetween(ArrayList value) { this.GSTRateBetween = value; return this; } public ArrayList getGstRateIn() { return GSTRateIn; } public CR_BatchPayLinesQuery setGstRateIn(ArrayList value) { this.GSTRateIn = value; return this; } public String getDiscountLedgerID() { return DiscountLedgerID; } public CR_BatchPayLinesQuery setDiscountLedgerID(String value) { this.DiscountLedgerID = value; return this; } public String getDiscountLedgerIDStartsWith() { return DiscountLedgerIDStartsWith; } public CR_BatchPayLinesQuery setDiscountLedgerIDStartsWith(String value) { this.DiscountLedgerIDStartsWith = value; return this; } public String getDiscountLedgerIDEndsWith() { return DiscountLedgerIDEndsWith; } public CR_BatchPayLinesQuery setDiscountLedgerIDEndsWith(String value) { this.DiscountLedgerIDEndsWith = value; return this; } public String getDiscountLedgerIDContains() { return DiscountLedgerIDContains; } public CR_BatchPayLinesQuery setDiscountLedgerIDContains(String value) { this.DiscountLedgerIDContains = value; return this; } public String getDiscountLedgerIDLike() { return DiscountLedgerIDLike; } public CR_BatchPayLinesQuery setDiscountLedgerIDLike(String value) { this.DiscountLedgerIDLike = value; return this; } public ArrayList getDiscountLedgerIDBetween() { return DiscountLedgerIDBetween; } public CR_BatchPayLinesQuery setDiscountLedgerIDBetween(ArrayList value) { this.DiscountLedgerIDBetween = value; return this; } public ArrayList getDiscountLedgerIDIn() { return DiscountLedgerIDIn; } public CR_BatchPayLinesQuery setDiscountLedgerIDIn(ArrayList value) { this.DiscountLedgerIDIn = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public CR_BatchPayLinesQuery setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getLastSavedDateTimeGreaterThanOrEqualTo() { return LastSavedDateTimeGreaterThanOrEqualTo; } public CR_BatchPayLinesQuery setLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.LastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeGreaterThan() { return LastSavedDateTimeGreaterThan; } public CR_BatchPayLinesQuery setLastSavedDateTimeGreaterThan(Date value) { this.LastSavedDateTimeGreaterThan = value; return this; } public Date getLastSavedDateTimeLessThan() { return LastSavedDateTimeLessThan; } public CR_BatchPayLinesQuery setLastSavedDateTimeLessThan(Date value) { this.LastSavedDateTimeLessThan = value; return this; } public Date getLastSavedDateTimeLessThanOrEqualTo() { return LastSavedDateTimeLessThanOrEqualTo; } public CR_BatchPayLinesQuery setLastSavedDateTimeLessThanOrEqualTo(Date value) { this.LastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeNotEqualTo() { return LastSavedDateTimeNotEqualTo; } public CR_BatchPayLinesQuery setLastSavedDateTimeNotEqualTo(Date value) { this.LastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getLastSavedDateTimeBetween() { return LastSavedDateTimeBetween; } public CR_BatchPayLinesQuery setLastSavedDateTimeBetween(ArrayList value) { this.LastSavedDateTimeBetween = value; return this; } public ArrayList getLastSavedDateTimeIn() { return LastSavedDateTimeIn; } public CR_BatchPayLinesQuery setLastSavedDateTimeIn(ArrayList value) { this.LastSavedDateTimeIn = value; return this; } public String getCurrencyID() { return CurrencyID; } public CR_BatchPayLinesQuery setCurrencyID(String value) { this.CurrencyID = value; return this; } public String getCurrencyIDStartsWith() { return CurrencyIDStartsWith; } public CR_BatchPayLinesQuery setCurrencyIDStartsWith(String value) { this.CurrencyIDStartsWith = value; return this; } public String getCurrencyIDEndsWith() { return CurrencyIDEndsWith; } public CR_BatchPayLinesQuery setCurrencyIDEndsWith(String value) { this.CurrencyIDEndsWith = value; return this; } public String getCurrencyIDContains() { return CurrencyIDContains; } public CR_BatchPayLinesQuery setCurrencyIDContains(String value) { this.CurrencyIDContains = value; return this; } public String getCurrencyIDLike() { return CurrencyIDLike; } public CR_BatchPayLinesQuery setCurrencyIDLike(String value) { this.CurrencyIDLike = value; return this; } public ArrayList getCurrencyIDBetween() { return CurrencyIDBetween; } public CR_BatchPayLinesQuery setCurrencyIDBetween(ArrayList value) { this.CurrencyIDBetween = value; return this; } public ArrayList getCurrencyIDIn() { return CurrencyIDIn; } public CR_BatchPayLinesQuery setCurrencyIDIn(ArrayList value) { this.CurrencyIDIn = value; return this; } public BigDecimal getUnrealisedGainLoss() { return UnrealisedGainLoss; } public CR_BatchPayLinesQuery setUnrealisedGainLoss(BigDecimal value) { this.UnrealisedGainLoss = value; return this; } public BigDecimal getUnrealisedGainLossGreaterThanOrEqualTo() { return UnrealisedGainLossGreaterThanOrEqualTo; } public CR_BatchPayLinesQuery setUnrealisedGainLossGreaterThanOrEqualTo(BigDecimal value) { this.UnrealisedGainLossGreaterThanOrEqualTo = value; return this; } public BigDecimal getUnrealisedGainLossGreaterThan() { return UnrealisedGainLossGreaterThan; } public CR_BatchPayLinesQuery setUnrealisedGainLossGreaterThan(BigDecimal value) { this.UnrealisedGainLossGreaterThan = value; return this; } public BigDecimal getUnrealisedGainLossLessThan() { return UnrealisedGainLossLessThan; } public CR_BatchPayLinesQuery setUnrealisedGainLossLessThan(BigDecimal value) { this.UnrealisedGainLossLessThan = value; return this; } public BigDecimal getUnrealisedGainLossLessThanOrEqualTo() { return UnrealisedGainLossLessThanOrEqualTo; } public CR_BatchPayLinesQuery setUnrealisedGainLossLessThanOrEqualTo(BigDecimal value) { this.UnrealisedGainLossLessThanOrEqualTo = value; return this; } public BigDecimal getUnrealisedGainLossNotEqualTo() { return UnrealisedGainLossNotEqualTo; } public CR_BatchPayLinesQuery setUnrealisedGainLossNotEqualTo(BigDecimal value) { this.UnrealisedGainLossNotEqualTo = value; return this; } public ArrayList getUnrealisedGainLossBetween() { return UnrealisedGainLossBetween; } public CR_BatchPayLinesQuery setUnrealisedGainLossBetween(ArrayList value) { this.UnrealisedGainLossBetween = value; return this; } public ArrayList getUnrealisedGainLossIn() { return UnrealisedGainLossIn; } public CR_BatchPayLinesQuery setUnrealisedGainLossIn(ArrayList value) { this.UnrealisedGainLossIn = value; return this; } public BigDecimal getRealisedGainLoss() { return RealisedGainLoss; } public CR_BatchPayLinesQuery setRealisedGainLoss(BigDecimal value) { this.RealisedGainLoss = value; return this; } public BigDecimal getRealisedGainLossGreaterThanOrEqualTo() { return RealisedGainLossGreaterThanOrEqualTo; } public CR_BatchPayLinesQuery setRealisedGainLossGreaterThanOrEqualTo(BigDecimal value) { this.RealisedGainLossGreaterThanOrEqualTo = value; return this; } public BigDecimal getRealisedGainLossGreaterThan() { return RealisedGainLossGreaterThan; } public CR_BatchPayLinesQuery setRealisedGainLossGreaterThan(BigDecimal value) { this.RealisedGainLossGreaterThan = value; return this; } public BigDecimal getRealisedGainLossLessThan() { return RealisedGainLossLessThan; } public CR_BatchPayLinesQuery setRealisedGainLossLessThan(BigDecimal value) { this.RealisedGainLossLessThan = value; return this; } public BigDecimal getRealisedGainLossLessThanOrEqualTo() { return RealisedGainLossLessThanOrEqualTo; } public CR_BatchPayLinesQuery setRealisedGainLossLessThanOrEqualTo(BigDecimal value) { this.RealisedGainLossLessThanOrEqualTo = value; return this; } public BigDecimal getRealisedGainLossNotEqualTo() { return RealisedGainLossNotEqualTo; } public CR_BatchPayLinesQuery setRealisedGainLossNotEqualTo(BigDecimal value) { this.RealisedGainLossNotEqualTo = value; return this; } public ArrayList getRealisedGainLossBetween() { return RealisedGainLossBetween; } public CR_BatchPayLinesQuery setRealisedGainLossBetween(ArrayList value) { this.RealisedGainLossBetween = value; return this; } public ArrayList getRealisedGainLossIn() { return RealisedGainLossIn; } public CR_BatchPayLinesQuery setRealisedGainLossIn(ArrayList value) { this.RealisedGainLossIn = value; return this; } public BigDecimal getPaymentFromBankFXAmount() { return PaymentFromBankFXAmount; } public CR_BatchPayLinesQuery setPaymentFromBankFXAmount(BigDecimal value) { this.PaymentFromBankFXAmount = value; return this; } public BigDecimal getPaymentFromBankFXAmountGreaterThanOrEqualTo() { return PaymentFromBankFXAmountGreaterThanOrEqualTo; } public CR_BatchPayLinesQuery setPaymentFromBankFXAmountGreaterThanOrEqualTo(BigDecimal value) { this.PaymentFromBankFXAmountGreaterThanOrEqualTo = value; return this; } public BigDecimal getPaymentFromBankFXAmountGreaterThan() { return PaymentFromBankFXAmountGreaterThan; } public CR_BatchPayLinesQuery setPaymentFromBankFXAmountGreaterThan(BigDecimal value) { this.PaymentFromBankFXAmountGreaterThan = value; return this; } public BigDecimal getPaymentFromBankFXAmountLessThan() { return PaymentFromBankFXAmountLessThan; } public CR_BatchPayLinesQuery setPaymentFromBankFXAmountLessThan(BigDecimal value) { this.PaymentFromBankFXAmountLessThan = value; return this; } public BigDecimal getPaymentFromBankFXAmountLessThanOrEqualTo() { return PaymentFromBankFXAmountLessThanOrEqualTo; } public CR_BatchPayLinesQuery setPaymentFromBankFXAmountLessThanOrEqualTo(BigDecimal value) { this.PaymentFromBankFXAmountLessThanOrEqualTo = value; return this; } public BigDecimal getPaymentFromBankFXAmountNotEqualTo() { return PaymentFromBankFXAmountNotEqualTo; } public CR_BatchPayLinesQuery setPaymentFromBankFXAmountNotEqualTo(BigDecimal value) { this.PaymentFromBankFXAmountNotEqualTo = value; return this; } public ArrayList getPaymentFromBankFXAmountBetween() { return PaymentFromBankFXAmountBetween; } public CR_BatchPayLinesQuery setPaymentFromBankFXAmountBetween(ArrayList value) { this.PaymentFromBankFXAmountBetween = value; return this; } public ArrayList getPaymentFromBankFXAmountIn() { return PaymentFromBankFXAmountIn; } public CR_BatchPayLinesQuery setPaymentFromBankFXAmountIn(ArrayList value) { this.PaymentFromBankFXAmountIn = value; return this; } public String getBankLedgerID() { return BankLedgerID; } public CR_BatchPayLinesQuery setBankLedgerID(String value) { this.BankLedgerID = value; return this; } public String getBankLedgerIDStartsWith() { return BankLedgerIDStartsWith; } public CR_BatchPayLinesQuery setBankLedgerIDStartsWith(String value) { this.BankLedgerIDStartsWith = value; return this; } public String getBankLedgerIDEndsWith() { return BankLedgerIDEndsWith; } public CR_BatchPayLinesQuery setBankLedgerIDEndsWith(String value) { this.BankLedgerIDEndsWith = value; return this; } public String getBankLedgerIDContains() { return BankLedgerIDContains; } public CR_BatchPayLinesQuery setBankLedgerIDContains(String value) { this.BankLedgerIDContains = value; return this; } public String getBankLedgerIDLike() { return BankLedgerIDLike; } public CR_BatchPayLinesQuery setBankLedgerIDLike(String value) { this.BankLedgerIDLike = value; return this; } public ArrayList getBankLedgerIDBetween() { return BankLedgerIDBetween; } public CR_BatchPayLinesQuery setBankLedgerIDBetween(ArrayList value) { this.BankLedgerIDBetween = value; return this; } public ArrayList getBankLedgerIDIn() { return BankLedgerIDIn; } public CR_BatchPayLinesQuery setBankLedgerIDIn(ArrayList value) { this.BankLedgerIDIn = value; return this; } public BigDecimal getFeeAmount() { return FeeAmount; } public CR_BatchPayLinesQuery setFeeAmount(BigDecimal value) { this.FeeAmount = value; return this; } public BigDecimal getFeeAmountGreaterThanOrEqualTo() { return FeeAmountGreaterThanOrEqualTo; } public CR_BatchPayLinesQuery setFeeAmountGreaterThanOrEqualTo(BigDecimal value) { this.FeeAmountGreaterThanOrEqualTo = value; return this; } public BigDecimal getFeeAmountGreaterThan() { return FeeAmountGreaterThan; } public CR_BatchPayLinesQuery setFeeAmountGreaterThan(BigDecimal value) { this.FeeAmountGreaterThan = value; return this; } public BigDecimal getFeeAmountLessThan() { return FeeAmountLessThan; } public CR_BatchPayLinesQuery setFeeAmountLessThan(BigDecimal value) { this.FeeAmountLessThan = value; return this; } public BigDecimal getFeeAmountLessThanOrEqualTo() { return FeeAmountLessThanOrEqualTo; } public CR_BatchPayLinesQuery setFeeAmountLessThanOrEqualTo(BigDecimal value) { this.FeeAmountLessThanOrEqualTo = value; return this; } public BigDecimal getFeeAmountNotEqualTo() { return FeeAmountNotEqualTo; } public CR_BatchPayLinesQuery setFeeAmountNotEqualTo(BigDecimal value) { this.FeeAmountNotEqualTo = value; return this; } public ArrayList getFeeAmountBetween() { return FeeAmountBetween; } public CR_BatchPayLinesQuery setFeeAmountBetween(ArrayList value) { this.FeeAmountBetween = value; return this; } public ArrayList getFeeAmountIn() { return FeeAmountIn; } public CR_BatchPayLinesQuery setFeeAmountIn(ArrayList value) { this.FeeAmountIn = value; return this; } public String getFeeGSTID() { return FeeGSTID; } public CR_BatchPayLinesQuery setFeeGSTID(String value) { this.FeeGSTID = value; return this; } public String getFeeGSTIDStartsWith() { return FeeGSTIDStartsWith; } public CR_BatchPayLinesQuery setFeeGSTIDStartsWith(String value) { this.FeeGSTIDStartsWith = value; return this; } public String getFeeGSTIDEndsWith() { return FeeGSTIDEndsWith; } public CR_BatchPayLinesQuery setFeeGSTIDEndsWith(String value) { this.FeeGSTIDEndsWith = value; return this; } public String getFeeGSTIDContains() { return FeeGSTIDContains; } public CR_BatchPayLinesQuery setFeeGSTIDContains(String value) { this.FeeGSTIDContains = value; return this; } public String getFeeGSTIDLike() { return FeeGSTIDLike; } public CR_BatchPayLinesQuery setFeeGSTIDLike(String value) { this.FeeGSTIDLike = value; return this; } public ArrayList getFeeGSTIDBetween() { return FeeGSTIDBetween; } public CR_BatchPayLinesQuery setFeeGSTIDBetween(ArrayList value) { this.FeeGSTIDBetween = value; return this; } public ArrayList getFeeGSTIDIn() { return FeeGSTIDIn; } public CR_BatchPayLinesQuery setFeeGSTIDIn(ArrayList value) { this.FeeGSTIDIn = value; return this; } public BigDecimal getFeeGSTRate() { return FeeGSTRate; } public CR_BatchPayLinesQuery setFeeGSTRate(BigDecimal value) { this.FeeGSTRate = value; return this; } public BigDecimal getFeeGSTRateGreaterThanOrEqualTo() { return FeeGSTRateGreaterThanOrEqualTo; } public CR_BatchPayLinesQuery setFeeGSTRateGreaterThanOrEqualTo(BigDecimal value) { this.FeeGSTRateGreaterThanOrEqualTo = value; return this; } public BigDecimal getFeeGSTRateGreaterThan() { return FeeGSTRateGreaterThan; } public CR_BatchPayLinesQuery setFeeGSTRateGreaterThan(BigDecimal value) { this.FeeGSTRateGreaterThan = value; return this; } public BigDecimal getFeeGSTRateLessThan() { return FeeGSTRateLessThan; } public CR_BatchPayLinesQuery setFeeGSTRateLessThan(BigDecimal value) { this.FeeGSTRateLessThan = value; return this; } public BigDecimal getFeeGSTRateLessThanOrEqualTo() { return FeeGSTRateLessThanOrEqualTo; } public CR_BatchPayLinesQuery setFeeGSTRateLessThanOrEqualTo(BigDecimal value) { this.FeeGSTRateLessThanOrEqualTo = value; return this; } public BigDecimal getFeeGSTRateNotEqualTo() { return FeeGSTRateNotEqualTo; } public CR_BatchPayLinesQuery setFeeGSTRateNotEqualTo(BigDecimal value) { this.FeeGSTRateNotEqualTo = value; return this; } public ArrayList getFeeGSTRateBetween() { return FeeGSTRateBetween; } public CR_BatchPayLinesQuery setFeeGSTRateBetween(ArrayList value) { this.FeeGSTRateBetween = value; return this; } public ArrayList getFeeGSTRateIn() { return FeeGSTRateIn; } public CR_BatchPayLinesQuery setFeeGSTRateIn(ArrayList value) { this.FeeGSTRateIn = value; return this; } public BigDecimal getFeeGSTAmount() { return FeeGSTAmount; } public CR_BatchPayLinesQuery setFeeGSTAmount(BigDecimal value) { this.FeeGSTAmount = value; return this; } public BigDecimal getFeeGSTAmountGreaterThanOrEqualTo() { return FeeGSTAmountGreaterThanOrEqualTo; } public CR_BatchPayLinesQuery setFeeGSTAmountGreaterThanOrEqualTo(BigDecimal value) { this.FeeGSTAmountGreaterThanOrEqualTo = value; return this; } public BigDecimal getFeeGSTAmountGreaterThan() { return FeeGSTAmountGreaterThan; } public CR_BatchPayLinesQuery setFeeGSTAmountGreaterThan(BigDecimal value) { this.FeeGSTAmountGreaterThan = value; return this; } public BigDecimal getFeeGSTAmountLessThan() { return FeeGSTAmountLessThan; } public CR_BatchPayLinesQuery setFeeGSTAmountLessThan(BigDecimal value) { this.FeeGSTAmountLessThan = value; return this; } public BigDecimal getFeeGSTAmountLessThanOrEqualTo() { return FeeGSTAmountLessThanOrEqualTo; } public CR_BatchPayLinesQuery setFeeGSTAmountLessThanOrEqualTo(BigDecimal value) { this.FeeGSTAmountLessThanOrEqualTo = value; return this; } public BigDecimal getFeeGSTAmountNotEqualTo() { return FeeGSTAmountNotEqualTo; } public CR_BatchPayLinesQuery setFeeGSTAmountNotEqualTo(BigDecimal value) { this.FeeGSTAmountNotEqualTo = value; return this; } public ArrayList getFeeGSTAmountBetween() { return FeeGSTAmountBetween; } public CR_BatchPayLinesQuery setFeeGSTAmountBetween(ArrayList value) { this.FeeGSTAmountBetween = value; return this; } public ArrayList getFeeGSTAmountIn() { return FeeGSTAmountIn; } public CR_BatchPayLinesQuery setFeeGSTAmountIn(ArrayList value) { this.FeeGSTAmountIn = value; return this; } public BigDecimal getFeeIncGSTAmount() { return FeeIncGSTAmount; } public CR_BatchPayLinesQuery setFeeIncGSTAmount(BigDecimal value) { this.FeeIncGSTAmount = value; return this; } public BigDecimal getFeeIncGSTAmountGreaterThanOrEqualTo() { return FeeIncGSTAmountGreaterThanOrEqualTo; } public CR_BatchPayLinesQuery setFeeIncGSTAmountGreaterThanOrEqualTo(BigDecimal value) { this.FeeIncGSTAmountGreaterThanOrEqualTo = value; return this; } public BigDecimal getFeeIncGSTAmountGreaterThan() { return FeeIncGSTAmountGreaterThan; } public CR_BatchPayLinesQuery setFeeIncGSTAmountGreaterThan(BigDecimal value) { this.FeeIncGSTAmountGreaterThan = value; return this; } public BigDecimal getFeeIncGSTAmountLessThan() { return FeeIncGSTAmountLessThan; } public CR_BatchPayLinesQuery setFeeIncGSTAmountLessThan(BigDecimal value) { this.FeeIncGSTAmountLessThan = value; return this; } public BigDecimal getFeeIncGSTAmountLessThanOrEqualTo() { return FeeIncGSTAmountLessThanOrEqualTo; } public CR_BatchPayLinesQuery setFeeIncGSTAmountLessThanOrEqualTo(BigDecimal value) { this.FeeIncGSTAmountLessThanOrEqualTo = value; return this; } public BigDecimal getFeeIncGSTAmountNotEqualTo() { return FeeIncGSTAmountNotEqualTo; } public CR_BatchPayLinesQuery setFeeIncGSTAmountNotEqualTo(BigDecimal value) { this.FeeIncGSTAmountNotEqualTo = value; return this; } public ArrayList getFeeIncGSTAmountBetween() { return FeeIncGSTAmountBetween; } public CR_BatchPayLinesQuery setFeeIncGSTAmountBetween(ArrayList value) { this.FeeIncGSTAmountBetween = value; return this; } public ArrayList getFeeIncGSTAmountIn() { return FeeIncGSTAmountIn; } public CR_BatchPayLinesQuery setFeeIncGSTAmountIn(ArrayList value) { this.FeeIncGSTAmountIn = value; return this; } public Integer getLineNumber() { return LineNumber; } public CR_BatchPayLinesQuery setLineNumber(Integer value) { this.LineNumber = value; return this; } public Integer getLineNumberGreaterThanOrEqualTo() { return LineNumberGreaterThanOrEqualTo; } public CR_BatchPayLinesQuery setLineNumberGreaterThanOrEqualTo(Integer value) { this.LineNumberGreaterThanOrEqualTo = value; return this; } public Integer getLineNumberGreaterThan() { return LineNumberGreaterThan; } public CR_BatchPayLinesQuery setLineNumberGreaterThan(Integer value) { this.LineNumberGreaterThan = value; return this; } public Integer getLineNumberLessThan() { return LineNumberLessThan; } public CR_BatchPayLinesQuery setLineNumberLessThan(Integer value) { this.LineNumberLessThan = value; return this; } public Integer getLineNumberLessThanOrEqualTo() { return LineNumberLessThanOrEqualTo; } public CR_BatchPayLinesQuery setLineNumberLessThanOrEqualTo(Integer value) { this.LineNumberLessThanOrEqualTo = value; return this; } public Integer getLineNumberNotEqualTo() { return LineNumberNotEqualTo; } public CR_BatchPayLinesQuery setLineNumberNotEqualTo(Integer value) { this.LineNumberNotEqualTo = value; return this; } public ArrayList getLineNumberBetween() { return LineNumberBetween; } public CR_BatchPayLinesQuery setLineNumberBetween(ArrayList value) { this.LineNumberBetween = value; return this; } public ArrayList getLineNumberIn() { return LineNumberIn; } public CR_BatchPayLinesQuery setLineNumberIn(ArrayList value) { this.LineNumberIn = value; return this; } public BigDecimal getCrTransOutstandingAmount() { return CR_TransOutstandingAmount; } public CR_BatchPayLinesQuery setCrTransOutstandingAmount(BigDecimal value) { this.CR_TransOutstandingAmount = value; return this; } public BigDecimal getCrTransOutstandingAmountGreaterThanOrEqualTo() { return CR_TransOutstandingAmountGreaterThanOrEqualTo; } public CR_BatchPayLinesQuery setCrTransOutstandingAmountGreaterThanOrEqualTo(BigDecimal value) { this.CR_TransOutstandingAmountGreaterThanOrEqualTo = value; return this; } public BigDecimal getCrTransOutstandingAmountGreaterThan() { return CR_TransOutstandingAmountGreaterThan; } public CR_BatchPayLinesQuery setCrTransOutstandingAmountGreaterThan(BigDecimal value) { this.CR_TransOutstandingAmountGreaterThan = value; return this; } public BigDecimal getCrTransOutstandingAmountLessThan() { return CR_TransOutstandingAmountLessThan; } public CR_BatchPayLinesQuery setCrTransOutstandingAmountLessThan(BigDecimal value) { this.CR_TransOutstandingAmountLessThan = value; return this; } public BigDecimal getCrTransOutstandingAmountLessThanOrEqualTo() { return CR_TransOutstandingAmountLessThanOrEqualTo; } public CR_BatchPayLinesQuery setCrTransOutstandingAmountLessThanOrEqualTo(BigDecimal value) { this.CR_TransOutstandingAmountLessThanOrEqualTo = value; return this; } public BigDecimal getCrTransOutstandingAmountNotEqualTo() { return CR_TransOutstandingAmountNotEqualTo; } public CR_BatchPayLinesQuery setCrTransOutstandingAmountNotEqualTo(BigDecimal value) { this.CR_TransOutstandingAmountNotEqualTo = value; return this; } public ArrayList getCrTransOutstandingAmountBetween() { return CR_TransOutstandingAmountBetween; } public CR_BatchPayLinesQuery setCrTransOutstandingAmountBetween(ArrayList value) { this.CR_TransOutstandingAmountBetween = value; return this; } public ArrayList getCrTransOutstandingAmountIn() { return CR_TransOutstandingAmountIn; } public CR_BatchPayLinesQuery setCrTransOutstandingAmountIn(ArrayList value) { this.CR_TransOutstandingAmountIn = value; return this; } public BigDecimal getCrTransOutstandingFXAmount() { return CR_TransOutstandingFXAmount; } public CR_BatchPayLinesQuery setCrTransOutstandingFXAmount(BigDecimal value) { this.CR_TransOutstandingFXAmount = value; return this; } public BigDecimal getCrTransOutstandingFXAmountGreaterThanOrEqualTo() { return CR_TransOutstandingFXAmountGreaterThanOrEqualTo; } public CR_BatchPayLinesQuery setCrTransOutstandingFXAmountGreaterThanOrEqualTo(BigDecimal value) { this.CR_TransOutstandingFXAmountGreaterThanOrEqualTo = value; return this; } public BigDecimal getCrTransOutstandingFXAmountGreaterThan() { return CR_TransOutstandingFXAmountGreaterThan; } public CR_BatchPayLinesQuery setCrTransOutstandingFXAmountGreaterThan(BigDecimal value) { this.CR_TransOutstandingFXAmountGreaterThan = value; return this; } public BigDecimal getCrTransOutstandingFXAmountLessThan() { return CR_TransOutstandingFXAmountLessThan; } public CR_BatchPayLinesQuery setCrTransOutstandingFXAmountLessThan(BigDecimal value) { this.CR_TransOutstandingFXAmountLessThan = value; return this; } public BigDecimal getCrTransOutstandingFXAmountLessThanOrEqualTo() { return CR_TransOutstandingFXAmountLessThanOrEqualTo; } public CR_BatchPayLinesQuery setCrTransOutstandingFXAmountLessThanOrEqualTo(BigDecimal value) { this.CR_TransOutstandingFXAmountLessThanOrEqualTo = value; return this; } public BigDecimal getCrTransOutstandingFXAmountNotEqualTo() { return CR_TransOutstandingFXAmountNotEqualTo; } public CR_BatchPayLinesQuery setCrTransOutstandingFXAmountNotEqualTo(BigDecimal value) { this.CR_TransOutstandingFXAmountNotEqualTo = value; return this; } public ArrayList getCrTransOutstandingFXAmountBetween() { return CR_TransOutstandingFXAmountBetween; } public CR_BatchPayLinesQuery setCrTransOutstandingFXAmountBetween(ArrayList value) { this.CR_TransOutstandingFXAmountBetween = value; return this; } public ArrayList getCrTransOutstandingFXAmountIn() { return CR_TransOutstandingFXAmountIn; } public CR_BatchPayLinesQuery setCrTransOutstandingFXAmountIn(ArrayList value) { this.CR_TransOutstandingFXAmountIn = value; return this; } public String getEftReference() { return EFTReference; } public CR_BatchPayLinesQuery setEftReference(String value) { this.EFTReference = value; return this; } public String getEftReferenceStartsWith() { return EFTReferenceStartsWith; } public CR_BatchPayLinesQuery setEftReferenceStartsWith(String value) { this.EFTReferenceStartsWith = value; return this; } public String getEftReferenceEndsWith() { return EFTReferenceEndsWith; } public CR_BatchPayLinesQuery setEftReferenceEndsWith(String value) { this.EFTReferenceEndsWith = value; return this; } public String getEftReferenceContains() { return EFTReferenceContains; } public CR_BatchPayLinesQuery setEftReferenceContains(String value) { this.EFTReferenceContains = value; return this; } public String getEftReferenceLike() { return EFTReferenceLike; } public CR_BatchPayLinesQuery setEftReferenceLike(String value) { this.EFTReferenceLike = value; return this; } public ArrayList getEftReferenceBetween() { return EFTReferenceBetween; } public CR_BatchPayLinesQuery setEftReferenceBetween(ArrayList value) { this.EFTReferenceBetween = value; return this; } public ArrayList getEftReferenceIn() { return EFTReferenceIn; } public CR_BatchPayLinesQuery setEftReferenceIn(ArrayList value) { this.EFTReferenceIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class CR_BatchPaymentQuery extends QueryDb implements IReturn> { public String CR_BatchPayID = null; public String CR_BatchPayIDStartsWith = null; public String CR_BatchPayIDEndsWith = null; public String CR_BatchPayIDContains = null; public String CR_BatchPayIDLike = null; public ArrayList CR_BatchPayIDBetween = null; public ArrayList CR_BatchPayIDIn = null; public String BatchNo = null; public String BatchNoStartsWith = null; public String BatchNoEndsWith = null; public String BatchNoContains = null; public String BatchNoLike = null; public ArrayList BatchNoBetween = null; public ArrayList BatchNoIn = null; public Date CreationDate = null; public Date CreationDateGreaterThanOrEqualTo = null; public Date CreationDateGreaterThan = null; public Date CreationDateLessThan = null; public Date CreationDateLessThanOrEqualTo = null; public Date CreationDateNotEqualTo = null; public ArrayList CreationDateBetween = null; public ArrayList CreationDateIn = null; public Date ActivationDate = null; public Date ActivationDateGreaterThanOrEqualTo = null; public Date ActivationDateGreaterThan = null; public Date ActivationDateLessThan = null; public Date ActivationDateLessThanOrEqualTo = null; public Date ActivationDateNotEqualTo = null; public ArrayList ActivationDateBetween = null; public ArrayList ActivationDateIn = null; public Date LastSavedDateTime = null; public Date LastSavedDateTimeGreaterThanOrEqualTo = null; public Date LastSavedDateTimeGreaterThan = null; public Date LastSavedDateTimeLessThan = null; public Date LastSavedDateTimeLessThanOrEqualTo = null; public Date LastSavedDateTimeNotEqualTo = null; public ArrayList LastSavedDateTimeBetween = null; public ArrayList LastSavedDateTimeIn = null; public Short Status = null; public Short StatusGreaterThanOrEqualTo = null; public Short StatusGreaterThan = null; public Short StatusLessThan = null; public Short StatusLessThanOrEqualTo = null; public Short StatusNotEqualTo = null; public ArrayList StatusBetween = null; public ArrayList StatusIn = null; public String GLBankID = null; public String GLBankIDStartsWith = null; public String GLBankIDEndsWith = null; public String GLBankIDContains = null; public String GLBankIDLike = null; public ArrayList GLBankIDBetween = null; public ArrayList GLBankIDIn = null; public Boolean OneCheque = null; public Boolean UseSelectedBank = null; public Boolean TypeCheque = null; public String StartChequeNo = null; public String StartChequeNoStartsWith = null; public String StartChequeNoEndsWith = null; public String StartChequeNoContains = null; public String StartChequeNoLike = null; public ArrayList StartChequeNoBetween = null; public ArrayList StartChequeNoIn = null; public String CreatedBy_HR_Staff_RecID = null; public String CreatedBy_HR_Staff_RecIDStartsWith = null; public String CreatedBy_HR_Staff_RecIDEndsWith = null; public String CreatedBy_HR_Staff_RecIDContains = null; public String CreatedBy_HR_Staff_RecIDLike = null; public ArrayList CreatedBy_HR_Staff_RecIDBetween = null; public ArrayList CreatedBy_HR_Staff_RecIDIn = null; public String getCrBatchPayID() { return CR_BatchPayID; } public CR_BatchPaymentQuery setCrBatchPayID(String value) { this.CR_BatchPayID = value; return this; } public String getCrBatchPayIDStartsWith() { return CR_BatchPayIDStartsWith; } public CR_BatchPaymentQuery setCrBatchPayIDStartsWith(String value) { this.CR_BatchPayIDStartsWith = value; return this; } public String getCrBatchPayIDEndsWith() { return CR_BatchPayIDEndsWith; } public CR_BatchPaymentQuery setCrBatchPayIDEndsWith(String value) { this.CR_BatchPayIDEndsWith = value; return this; } public String getCrBatchPayIDContains() { return CR_BatchPayIDContains; } public CR_BatchPaymentQuery setCrBatchPayIDContains(String value) { this.CR_BatchPayIDContains = value; return this; } public String getCrBatchPayIDLike() { return CR_BatchPayIDLike; } public CR_BatchPaymentQuery setCrBatchPayIDLike(String value) { this.CR_BatchPayIDLike = value; return this; } public ArrayList getCrBatchPayIDBetween() { return CR_BatchPayIDBetween; } public CR_BatchPaymentQuery setCrBatchPayIDBetween(ArrayList value) { this.CR_BatchPayIDBetween = value; return this; } public ArrayList getCrBatchPayIDIn() { return CR_BatchPayIDIn; } public CR_BatchPaymentQuery setCrBatchPayIDIn(ArrayList value) { this.CR_BatchPayIDIn = value; return this; } public String getBatchNo() { return BatchNo; } public CR_BatchPaymentQuery setBatchNo(String value) { this.BatchNo = value; return this; } public String getBatchNoStartsWith() { return BatchNoStartsWith; } public CR_BatchPaymentQuery setBatchNoStartsWith(String value) { this.BatchNoStartsWith = value; return this; } public String getBatchNoEndsWith() { return BatchNoEndsWith; } public CR_BatchPaymentQuery setBatchNoEndsWith(String value) { this.BatchNoEndsWith = value; return this; } public String getBatchNoContains() { return BatchNoContains; } public CR_BatchPaymentQuery setBatchNoContains(String value) { this.BatchNoContains = value; return this; } public String getBatchNoLike() { return BatchNoLike; } public CR_BatchPaymentQuery setBatchNoLike(String value) { this.BatchNoLike = value; return this; } public ArrayList getBatchNoBetween() { return BatchNoBetween; } public CR_BatchPaymentQuery setBatchNoBetween(ArrayList value) { this.BatchNoBetween = value; return this; } public ArrayList getBatchNoIn() { return BatchNoIn; } public CR_BatchPaymentQuery setBatchNoIn(ArrayList value) { this.BatchNoIn = value; return this; } public Date getCreationDate() { return CreationDate; } public CR_BatchPaymentQuery setCreationDate(Date value) { this.CreationDate = value; return this; } public Date getCreationDateGreaterThanOrEqualTo() { return CreationDateGreaterThanOrEqualTo; } public CR_BatchPaymentQuery setCreationDateGreaterThanOrEqualTo(Date value) { this.CreationDateGreaterThanOrEqualTo = value; return this; } public Date getCreationDateGreaterThan() { return CreationDateGreaterThan; } public CR_BatchPaymentQuery setCreationDateGreaterThan(Date value) { this.CreationDateGreaterThan = value; return this; } public Date getCreationDateLessThan() { return CreationDateLessThan; } public CR_BatchPaymentQuery setCreationDateLessThan(Date value) { this.CreationDateLessThan = value; return this; } public Date getCreationDateLessThanOrEqualTo() { return CreationDateLessThanOrEqualTo; } public CR_BatchPaymentQuery setCreationDateLessThanOrEqualTo(Date value) { this.CreationDateLessThanOrEqualTo = value; return this; } public Date getCreationDateNotEqualTo() { return CreationDateNotEqualTo; } public CR_BatchPaymentQuery setCreationDateNotEqualTo(Date value) { this.CreationDateNotEqualTo = value; return this; } public ArrayList getCreationDateBetween() { return CreationDateBetween; } public CR_BatchPaymentQuery setCreationDateBetween(ArrayList value) { this.CreationDateBetween = value; return this; } public ArrayList getCreationDateIn() { return CreationDateIn; } public CR_BatchPaymentQuery setCreationDateIn(ArrayList value) { this.CreationDateIn = value; return this; } public Date getActivationDate() { return ActivationDate; } public CR_BatchPaymentQuery setActivationDate(Date value) { this.ActivationDate = value; return this; } public Date getActivationDateGreaterThanOrEqualTo() { return ActivationDateGreaterThanOrEqualTo; } public CR_BatchPaymentQuery setActivationDateGreaterThanOrEqualTo(Date value) { this.ActivationDateGreaterThanOrEqualTo = value; return this; } public Date getActivationDateGreaterThan() { return ActivationDateGreaterThan; } public CR_BatchPaymentQuery setActivationDateGreaterThan(Date value) { this.ActivationDateGreaterThan = value; return this; } public Date getActivationDateLessThan() { return ActivationDateLessThan; } public CR_BatchPaymentQuery setActivationDateLessThan(Date value) { this.ActivationDateLessThan = value; return this; } public Date getActivationDateLessThanOrEqualTo() { return ActivationDateLessThanOrEqualTo; } public CR_BatchPaymentQuery setActivationDateLessThanOrEqualTo(Date value) { this.ActivationDateLessThanOrEqualTo = value; return this; } public Date getActivationDateNotEqualTo() { return ActivationDateNotEqualTo; } public CR_BatchPaymentQuery setActivationDateNotEqualTo(Date value) { this.ActivationDateNotEqualTo = value; return this; } public ArrayList getActivationDateBetween() { return ActivationDateBetween; } public CR_BatchPaymentQuery setActivationDateBetween(ArrayList value) { this.ActivationDateBetween = value; return this; } public ArrayList getActivationDateIn() { return ActivationDateIn; } public CR_BatchPaymentQuery setActivationDateIn(ArrayList value) { this.ActivationDateIn = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public CR_BatchPaymentQuery setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getLastSavedDateTimeGreaterThanOrEqualTo() { return LastSavedDateTimeGreaterThanOrEqualTo; } public CR_BatchPaymentQuery setLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.LastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeGreaterThan() { return LastSavedDateTimeGreaterThan; } public CR_BatchPaymentQuery setLastSavedDateTimeGreaterThan(Date value) { this.LastSavedDateTimeGreaterThan = value; return this; } public Date getLastSavedDateTimeLessThan() { return LastSavedDateTimeLessThan; } public CR_BatchPaymentQuery setLastSavedDateTimeLessThan(Date value) { this.LastSavedDateTimeLessThan = value; return this; } public Date getLastSavedDateTimeLessThanOrEqualTo() { return LastSavedDateTimeLessThanOrEqualTo; } public CR_BatchPaymentQuery setLastSavedDateTimeLessThanOrEqualTo(Date value) { this.LastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeNotEqualTo() { return LastSavedDateTimeNotEqualTo; } public CR_BatchPaymentQuery setLastSavedDateTimeNotEqualTo(Date value) { this.LastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getLastSavedDateTimeBetween() { return LastSavedDateTimeBetween; } public CR_BatchPaymentQuery setLastSavedDateTimeBetween(ArrayList value) { this.LastSavedDateTimeBetween = value; return this; } public ArrayList getLastSavedDateTimeIn() { return LastSavedDateTimeIn; } public CR_BatchPaymentQuery setLastSavedDateTimeIn(ArrayList value) { this.LastSavedDateTimeIn = value; return this; } public Short getStatus() { return Status; } public CR_BatchPaymentQuery setStatus(Short value) { this.Status = value; return this; } public Short getStatusGreaterThanOrEqualTo() { return StatusGreaterThanOrEqualTo; } public CR_BatchPaymentQuery setStatusGreaterThanOrEqualTo(Short value) { this.StatusGreaterThanOrEqualTo = value; return this; } public Short getStatusGreaterThan() { return StatusGreaterThan; } public CR_BatchPaymentQuery setStatusGreaterThan(Short value) { this.StatusGreaterThan = value; return this; } public Short getStatusLessThan() { return StatusLessThan; } public CR_BatchPaymentQuery setStatusLessThan(Short value) { this.StatusLessThan = value; return this; } public Short getStatusLessThanOrEqualTo() { return StatusLessThanOrEqualTo; } public CR_BatchPaymentQuery setStatusLessThanOrEqualTo(Short value) { this.StatusLessThanOrEqualTo = value; return this; } public Short getStatusNotEqualTo() { return StatusNotEqualTo; } public CR_BatchPaymentQuery setStatusNotEqualTo(Short value) { this.StatusNotEqualTo = value; return this; } public ArrayList getStatusBetween() { return StatusBetween; } public CR_BatchPaymentQuery setStatusBetween(ArrayList value) { this.StatusBetween = value; return this; } public ArrayList getStatusIn() { return StatusIn; } public CR_BatchPaymentQuery setStatusIn(ArrayList value) { this.StatusIn = value; return this; } public String getGlBankID() { return GLBankID; } public CR_BatchPaymentQuery setGlBankID(String value) { this.GLBankID = value; return this; } public String getGlBankIDStartsWith() { return GLBankIDStartsWith; } public CR_BatchPaymentQuery setGlBankIDStartsWith(String value) { this.GLBankIDStartsWith = value; return this; } public String getGlBankIDEndsWith() { return GLBankIDEndsWith; } public CR_BatchPaymentQuery setGlBankIDEndsWith(String value) { this.GLBankIDEndsWith = value; return this; } public String getGlBankIDContains() { return GLBankIDContains; } public CR_BatchPaymentQuery setGlBankIDContains(String value) { this.GLBankIDContains = value; return this; } public String getGlBankIDLike() { return GLBankIDLike; } public CR_BatchPaymentQuery setGlBankIDLike(String value) { this.GLBankIDLike = value; return this; } public ArrayList getGlBankIDBetween() { return GLBankIDBetween; } public CR_BatchPaymentQuery setGlBankIDBetween(ArrayList value) { this.GLBankIDBetween = value; return this; } public ArrayList getGlBankIDIn() { return GLBankIDIn; } public CR_BatchPaymentQuery setGlBankIDIn(ArrayList value) { this.GLBankIDIn = value; return this; } public Boolean isOneCheque() { return OneCheque; } public CR_BatchPaymentQuery setOneCheque(Boolean value) { this.OneCheque = value; return this; } public Boolean isUseSelectedBank() { return UseSelectedBank; } public CR_BatchPaymentQuery setUseSelectedBank(Boolean value) { this.UseSelectedBank = value; return this; } public Boolean isTypeCheque() { return TypeCheque; } public CR_BatchPaymentQuery setTypeCheque(Boolean value) { this.TypeCheque = value; return this; } public String getStartChequeNo() { return StartChequeNo; } public CR_BatchPaymentQuery setStartChequeNo(String value) { this.StartChequeNo = value; return this; } public String getStartChequeNoStartsWith() { return StartChequeNoStartsWith; } public CR_BatchPaymentQuery setStartChequeNoStartsWith(String value) { this.StartChequeNoStartsWith = value; return this; } public String getStartChequeNoEndsWith() { return StartChequeNoEndsWith; } public CR_BatchPaymentQuery setStartChequeNoEndsWith(String value) { this.StartChequeNoEndsWith = value; return this; } public String getStartChequeNoContains() { return StartChequeNoContains; } public CR_BatchPaymentQuery setStartChequeNoContains(String value) { this.StartChequeNoContains = value; return this; } public String getStartChequeNoLike() { return StartChequeNoLike; } public CR_BatchPaymentQuery setStartChequeNoLike(String value) { this.StartChequeNoLike = value; return this; } public ArrayList getStartChequeNoBetween() { return StartChequeNoBetween; } public CR_BatchPaymentQuery setStartChequeNoBetween(ArrayList value) { this.StartChequeNoBetween = value; return this; } public ArrayList getStartChequeNoIn() { return StartChequeNoIn; } public CR_BatchPaymentQuery setStartChequeNoIn(ArrayList value) { this.StartChequeNoIn = value; return this; } public String getCreatedByHrStaffRecID() { return CreatedBy_HR_Staff_RecID; } public CR_BatchPaymentQuery setCreatedByHrStaffRecID(String value) { this.CreatedBy_HR_Staff_RecID = value; return this; } public String getCreatedByHrStaffRecIDStartsWith() { return CreatedBy_HR_Staff_RecIDStartsWith; } public CR_BatchPaymentQuery setCreatedByHrStaffRecIDStartsWith(String value) { this.CreatedBy_HR_Staff_RecIDStartsWith = value; return this; } public String getCreatedByHrStaffRecIDEndsWith() { return CreatedBy_HR_Staff_RecIDEndsWith; } public CR_BatchPaymentQuery setCreatedByHrStaffRecIDEndsWith(String value) { this.CreatedBy_HR_Staff_RecIDEndsWith = value; return this; } public String getCreatedByHrStaffRecIDContains() { return CreatedBy_HR_Staff_RecIDContains; } public CR_BatchPaymentQuery setCreatedByHrStaffRecIDContains(String value) { this.CreatedBy_HR_Staff_RecIDContains = value; return this; } public String getCreatedByHrStaffRecIDLike() { return CreatedBy_HR_Staff_RecIDLike; } public CR_BatchPaymentQuery setCreatedByHrStaffRecIDLike(String value) { this.CreatedBy_HR_Staff_RecIDLike = value; return this; } public ArrayList getCreatedByHrStaffRecIDBetween() { return CreatedBy_HR_Staff_RecIDBetween; } public CR_BatchPaymentQuery setCreatedByHrStaffRecIDBetween(ArrayList value) { this.CreatedBy_HR_Staff_RecIDBetween = value; return this; } public ArrayList getCreatedByHrStaffRecIDIn() { return CreatedBy_HR_Staff_RecIDIn; } public CR_BatchPaymentQuery setCreatedByHrStaffRecIDIn(ArrayList value) { this.CreatedBy_HR_Staff_RecIDIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class CR_BatchTranLinesQuery extends QueryDb implements IReturn> { public String ReceiptLineID = null; public String ReceiptLineIDStartsWith = null; public String ReceiptLineIDEndsWith = null; public String ReceiptLineIDContains = null; public String ReceiptLineIDLike = null; public ArrayList ReceiptLineIDBetween = null; public ArrayList ReceiptLineIDIn = null; public String ReceiptID = null; public String ReceiptIDStartsWith = null; public String ReceiptIDEndsWith = null; public String ReceiptIDContains = null; public String ReceiptIDLike = null; public ArrayList ReceiptIDBetween = null; public ArrayList ReceiptIDIn = null; public Date LastSavedDateTime = null; public Date LastSavedDateTimeGreaterThanOrEqualTo = null; public Date LastSavedDateTimeGreaterThan = null; public Date LastSavedDateTimeLessThan = null; public Date LastSavedDateTimeLessThanOrEqualTo = null; public Date LastSavedDateTimeNotEqualTo = null; public ArrayList LastSavedDateTimeBetween = null; public ArrayList LastSavedDateTimeIn = null; public String AccountID = null; public String AccountIDStartsWith = null; public String AccountIDEndsWith = null; public String AccountIDContains = null; public String AccountIDLike = null; public ArrayList AccountIDBetween = null; public ArrayList AccountIDIn = null; public String LedgerID = null; public String LedgerIDStartsWith = null; public String LedgerIDEndsWith = null; public String LedgerIDContains = null; public String LedgerIDLike = null; public ArrayList LedgerIDBetween = null; public ArrayList LedgerIDIn = null; public String LineReference = null; public String LineReferenceStartsWith = null; public String LineReferenceEndsWith = null; public String LineReferenceContains = null; public String LineReferenceLike = null; public ArrayList LineReferenceBetween = null; public ArrayList LineReferenceIn = null; public String Remark = null; public String RemarkStartsWith = null; public String RemarkEndsWith = null; public String RemarkContains = null; public String RemarkLike = null; public ArrayList RemarkBetween = null; public ArrayList RemarkIn = null; public String RemitNo = null; public String RemitNoStartsWith = null; public String RemitNoEndsWith = null; public String RemitNoContains = null; public String RemitNoLike = null; public ArrayList RemitNoBetween = null; public ArrayList RemitNoIn = null; public BigDecimal HomeTransAmount = null; public BigDecimal HomeTransAmountGreaterThanOrEqualTo = null; public BigDecimal HomeTransAmountGreaterThan = null; public BigDecimal HomeTransAmountLessThan = null; public BigDecimal HomeTransAmountLessThanOrEqualTo = null; public BigDecimal HomeTransAmountNotEqualTo = null; public ArrayList HomeTransAmountBetween = null; public ArrayList HomeTransAmountIn = null; public Integer LineNum = null; public Integer LineNumGreaterThanOrEqualTo = null; public Integer LineNumGreaterThan = null; public Integer LineNumLessThan = null; public Integer LineNumLessThanOrEqualTo = null; public Integer LineNumNotEqualTo = null; public ArrayList LineNumBetween = null; public ArrayList LineNumIn = null; public String OtherLedgerID = null; public String OtherLedgerIDStartsWith = null; public String OtherLedgerIDEndsWith = null; public String OtherLedgerIDContains = null; public String OtherLedgerIDLike = null; public ArrayList OtherLedgerIDBetween = null; public ArrayList OtherLedgerIDIn = null; public BigDecimal HomeDispAmount = null; public BigDecimal HomeDispAmountGreaterThanOrEqualTo = null; public BigDecimal HomeDispAmountGreaterThan = null; public BigDecimal HomeDispAmountLessThan = null; public BigDecimal HomeDispAmountLessThanOrEqualTo = null; public BigDecimal HomeDispAmountNotEqualTo = null; public ArrayList HomeDispAmountBetween = null; public ArrayList HomeDispAmountIn = null; public Date ReceiptDate = null; public Date ReceiptDateGreaterThanOrEqualTo = null; public Date ReceiptDateGreaterThan = null; public Date ReceiptDateLessThan = null; public Date ReceiptDateLessThanOrEqualTo = null; public Date ReceiptDateNotEqualTo = null; public ArrayList ReceiptDateBetween = null; public ArrayList ReceiptDateIn = null; public BigDecimal SupplierTransAmount = null; public BigDecimal SupplierTransAmountGreaterThanOrEqualTo = null; public BigDecimal SupplierTransAmountGreaterThan = null; public BigDecimal SupplierTransAmountLessThan = null; public BigDecimal SupplierTransAmountLessThanOrEqualTo = null; public BigDecimal SupplierTransAmountNotEqualTo = null; public ArrayList SupplierTransAmountBetween = null; public ArrayList SupplierTransAmountIn = null; public BigDecimal SupplierDispAmount = null; public BigDecimal SupplierDispAmountGreaterThanOrEqualTo = null; public BigDecimal SupplierDispAmountGreaterThan = null; public BigDecimal SupplierDispAmountLessThan = null; public BigDecimal SupplierDispAmountLessThanOrEqualTo = null; public BigDecimal SupplierDispAmountNotEqualTo = null; public ArrayList SupplierDispAmountBetween = null; public ArrayList SupplierDispAmountIn = null; public BigDecimal CurrencyRateUsed = null; public BigDecimal CurrencyRateUsedGreaterThanOrEqualTo = null; public BigDecimal CurrencyRateUsedGreaterThan = null; public BigDecimal CurrencyRateUsedLessThan = null; public BigDecimal CurrencyRateUsedLessThanOrEqualTo = null; public BigDecimal CurrencyRateUsedNotEqualTo = null; public ArrayList CurrencyRateUsedBetween = null; public ArrayList CurrencyRateUsedIn = null; public String TaxID = null; public String TaxIDStartsWith = null; public String TaxIDEndsWith = null; public String TaxIDContains = null; public String TaxIDLike = null; public ArrayList TaxIDBetween = null; public ArrayList TaxIDIn = null; public BigDecimal TaxRate = null; public BigDecimal TaxRateGreaterThanOrEqualTo = null; public BigDecimal TaxRateGreaterThan = null; public BigDecimal TaxRateLessThan = null; public BigDecimal TaxRateLessThanOrEqualTo = null; public BigDecimal TaxRateNotEqualTo = null; public ArrayList TaxRateBetween = null; public ArrayList TaxRateIn = null; public BigDecimal TaxAmount = null; public BigDecimal TaxAmountGreaterThanOrEqualTo = null; public BigDecimal TaxAmountGreaterThan = null; public BigDecimal TaxAmountLessThan = null; public BigDecimal TaxAmountLessThanOrEqualTo = null; public BigDecimal TaxAmountNotEqualTo = null; public ArrayList TaxAmountBetween = null; public ArrayList TaxAmountIn = null; public Date DueDate = null; public Date DueDateGreaterThanOrEqualTo = null; public Date DueDateGreaterThan = null; public Date DueDateLessThan = null; public Date DueDateLessThanOrEqualTo = null; public Date DueDateNotEqualTo = null; public ArrayList DueDateBetween = null; public ArrayList DueDateIn = null; public BigDecimal HomeDispAmountIncGST = null; public BigDecimal HomeDispAmountIncGSTGreaterThanOrEqualTo = null; public BigDecimal HomeDispAmountIncGSTGreaterThan = null; public BigDecimal HomeDispAmountIncGSTLessThan = null; public BigDecimal HomeDispAmountIncGSTLessThanOrEqualTo = null; public BigDecimal HomeDispAmountIncGSTNotEqualTo = null; public ArrayList HomeDispAmountIncGSTBetween = null; public ArrayList HomeDispAmountIncGSTIn = null; public String CurrencyID = null; public String CurrencyIDStartsWith = null; public String CurrencyIDEndsWith = null; public String CurrencyIDContains = null; public String CurrencyIDLike = null; public ArrayList CurrencyIDBetween = null; public ArrayList CurrencyIDIn = null; public BigDecimal JobChargeAmount = null; public BigDecimal JobChargeAmountGreaterThanOrEqualTo = null; public BigDecimal JobChargeAmountGreaterThan = null; public BigDecimal JobChargeAmountLessThan = null; public BigDecimal JobChargeAmountLessThanOrEqualTo = null; public BigDecimal JobChargeAmountNotEqualTo = null; public ArrayList JobChargeAmountBetween = null; public ArrayList JobChargeAmountIn = null; public String JB_JobStages_RecID = null; public String JB_JobStages_RecIDStartsWith = null; public String JB_JobStages_RecIDEndsWith = null; public String JB_JobStages_RecIDContains = null; public String JB_JobStages_RecIDLike = null; public ArrayList JB_JobStages_RecIDBetween = null; public ArrayList JB_JobStages_RecIDIn = null; public String getReceiptLineID() { return ReceiptLineID; } public CR_BatchTranLinesQuery setReceiptLineID(String value) { this.ReceiptLineID = value; return this; } public String getReceiptLineIDStartsWith() { return ReceiptLineIDStartsWith; } public CR_BatchTranLinesQuery setReceiptLineIDStartsWith(String value) { this.ReceiptLineIDStartsWith = value; return this; } public String getReceiptLineIDEndsWith() { return ReceiptLineIDEndsWith; } public CR_BatchTranLinesQuery setReceiptLineIDEndsWith(String value) { this.ReceiptLineIDEndsWith = value; return this; } public String getReceiptLineIDContains() { return ReceiptLineIDContains; } public CR_BatchTranLinesQuery setReceiptLineIDContains(String value) { this.ReceiptLineIDContains = value; return this; } public String getReceiptLineIDLike() { return ReceiptLineIDLike; } public CR_BatchTranLinesQuery setReceiptLineIDLike(String value) { this.ReceiptLineIDLike = value; return this; } public ArrayList getReceiptLineIDBetween() { return ReceiptLineIDBetween; } public CR_BatchTranLinesQuery setReceiptLineIDBetween(ArrayList value) { this.ReceiptLineIDBetween = value; return this; } public ArrayList getReceiptLineIDIn() { return ReceiptLineIDIn; } public CR_BatchTranLinesQuery setReceiptLineIDIn(ArrayList value) { this.ReceiptLineIDIn = value; return this; } public String getReceiptID() { return ReceiptID; } public CR_BatchTranLinesQuery setReceiptID(String value) { this.ReceiptID = value; return this; } public String getReceiptIDStartsWith() { return ReceiptIDStartsWith; } public CR_BatchTranLinesQuery setReceiptIDStartsWith(String value) { this.ReceiptIDStartsWith = value; return this; } public String getReceiptIDEndsWith() { return ReceiptIDEndsWith; } public CR_BatchTranLinesQuery setReceiptIDEndsWith(String value) { this.ReceiptIDEndsWith = value; return this; } public String getReceiptIDContains() { return ReceiptIDContains; } public CR_BatchTranLinesQuery setReceiptIDContains(String value) { this.ReceiptIDContains = value; return this; } public String getReceiptIDLike() { return ReceiptIDLike; } public CR_BatchTranLinesQuery setReceiptIDLike(String value) { this.ReceiptIDLike = value; return this; } public ArrayList getReceiptIDBetween() { return ReceiptIDBetween; } public CR_BatchTranLinesQuery setReceiptIDBetween(ArrayList value) { this.ReceiptIDBetween = value; return this; } public ArrayList getReceiptIDIn() { return ReceiptIDIn; } public CR_BatchTranLinesQuery setReceiptIDIn(ArrayList value) { this.ReceiptIDIn = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public CR_BatchTranLinesQuery setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getLastSavedDateTimeGreaterThanOrEqualTo() { return LastSavedDateTimeGreaterThanOrEqualTo; } public CR_BatchTranLinesQuery setLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.LastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeGreaterThan() { return LastSavedDateTimeGreaterThan; } public CR_BatchTranLinesQuery setLastSavedDateTimeGreaterThan(Date value) { this.LastSavedDateTimeGreaterThan = value; return this; } public Date getLastSavedDateTimeLessThan() { return LastSavedDateTimeLessThan; } public CR_BatchTranLinesQuery setLastSavedDateTimeLessThan(Date value) { this.LastSavedDateTimeLessThan = value; return this; } public Date getLastSavedDateTimeLessThanOrEqualTo() { return LastSavedDateTimeLessThanOrEqualTo; } public CR_BatchTranLinesQuery setLastSavedDateTimeLessThanOrEqualTo(Date value) { this.LastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeNotEqualTo() { return LastSavedDateTimeNotEqualTo; } public CR_BatchTranLinesQuery setLastSavedDateTimeNotEqualTo(Date value) { this.LastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getLastSavedDateTimeBetween() { return LastSavedDateTimeBetween; } public CR_BatchTranLinesQuery setLastSavedDateTimeBetween(ArrayList value) { this.LastSavedDateTimeBetween = value; return this; } public ArrayList getLastSavedDateTimeIn() { return LastSavedDateTimeIn; } public CR_BatchTranLinesQuery setLastSavedDateTimeIn(ArrayList value) { this.LastSavedDateTimeIn = value; return this; } public String getAccountID() { return AccountID; } public CR_BatchTranLinesQuery setAccountID(String value) { this.AccountID = value; return this; } public String getAccountIDStartsWith() { return AccountIDStartsWith; } public CR_BatchTranLinesQuery setAccountIDStartsWith(String value) { this.AccountIDStartsWith = value; return this; } public String getAccountIDEndsWith() { return AccountIDEndsWith; } public CR_BatchTranLinesQuery setAccountIDEndsWith(String value) { this.AccountIDEndsWith = value; return this; } public String getAccountIDContains() { return AccountIDContains; } public CR_BatchTranLinesQuery setAccountIDContains(String value) { this.AccountIDContains = value; return this; } public String getAccountIDLike() { return AccountIDLike; } public CR_BatchTranLinesQuery setAccountIDLike(String value) { this.AccountIDLike = value; return this; } public ArrayList getAccountIDBetween() { return AccountIDBetween; } public CR_BatchTranLinesQuery setAccountIDBetween(ArrayList value) { this.AccountIDBetween = value; return this; } public ArrayList getAccountIDIn() { return AccountIDIn; } public CR_BatchTranLinesQuery setAccountIDIn(ArrayList value) { this.AccountIDIn = value; return this; } public String getLedgerID() { return LedgerID; } public CR_BatchTranLinesQuery setLedgerID(String value) { this.LedgerID = value; return this; } public String getLedgerIDStartsWith() { return LedgerIDStartsWith; } public CR_BatchTranLinesQuery setLedgerIDStartsWith(String value) { this.LedgerIDStartsWith = value; return this; } public String getLedgerIDEndsWith() { return LedgerIDEndsWith; } public CR_BatchTranLinesQuery setLedgerIDEndsWith(String value) { this.LedgerIDEndsWith = value; return this; } public String getLedgerIDContains() { return LedgerIDContains; } public CR_BatchTranLinesQuery setLedgerIDContains(String value) { this.LedgerIDContains = value; return this; } public String getLedgerIDLike() { return LedgerIDLike; } public CR_BatchTranLinesQuery setLedgerIDLike(String value) { this.LedgerIDLike = value; return this; } public ArrayList getLedgerIDBetween() { return LedgerIDBetween; } public CR_BatchTranLinesQuery setLedgerIDBetween(ArrayList value) { this.LedgerIDBetween = value; return this; } public ArrayList getLedgerIDIn() { return LedgerIDIn; } public CR_BatchTranLinesQuery setLedgerIDIn(ArrayList value) { this.LedgerIDIn = value; return this; } public String getLineReference() { return LineReference; } public CR_BatchTranLinesQuery setLineReference(String value) { this.LineReference = value; return this; } public String getLineReferenceStartsWith() { return LineReferenceStartsWith; } public CR_BatchTranLinesQuery setLineReferenceStartsWith(String value) { this.LineReferenceStartsWith = value; return this; } public String getLineReferenceEndsWith() { return LineReferenceEndsWith; } public CR_BatchTranLinesQuery setLineReferenceEndsWith(String value) { this.LineReferenceEndsWith = value; return this; } public String getLineReferenceContains() { return LineReferenceContains; } public CR_BatchTranLinesQuery setLineReferenceContains(String value) { this.LineReferenceContains = value; return this; } public String getLineReferenceLike() { return LineReferenceLike; } public CR_BatchTranLinesQuery setLineReferenceLike(String value) { this.LineReferenceLike = value; return this; } public ArrayList getLineReferenceBetween() { return LineReferenceBetween; } public CR_BatchTranLinesQuery setLineReferenceBetween(ArrayList value) { this.LineReferenceBetween = value; return this; } public ArrayList getLineReferenceIn() { return LineReferenceIn; } public CR_BatchTranLinesQuery setLineReferenceIn(ArrayList value) { this.LineReferenceIn = value; return this; } public String getRemark() { return Remark; } public CR_BatchTranLinesQuery setRemark(String value) { this.Remark = value; return this; } public String getRemarkStartsWith() { return RemarkStartsWith; } public CR_BatchTranLinesQuery setRemarkStartsWith(String value) { this.RemarkStartsWith = value; return this; } public String getRemarkEndsWith() { return RemarkEndsWith; } public CR_BatchTranLinesQuery setRemarkEndsWith(String value) { this.RemarkEndsWith = value; return this; } public String getRemarkContains() { return RemarkContains; } public CR_BatchTranLinesQuery setRemarkContains(String value) { this.RemarkContains = value; return this; } public String getRemarkLike() { return RemarkLike; } public CR_BatchTranLinesQuery setRemarkLike(String value) { this.RemarkLike = value; return this; } public ArrayList getRemarkBetween() { return RemarkBetween; } public CR_BatchTranLinesQuery setRemarkBetween(ArrayList value) { this.RemarkBetween = value; return this; } public ArrayList getRemarkIn() { return RemarkIn; } public CR_BatchTranLinesQuery setRemarkIn(ArrayList value) { this.RemarkIn = value; return this; } public String getRemitNo() { return RemitNo; } public CR_BatchTranLinesQuery setRemitNo(String value) { this.RemitNo = value; return this; } public String getRemitNoStartsWith() { return RemitNoStartsWith; } public CR_BatchTranLinesQuery setRemitNoStartsWith(String value) { this.RemitNoStartsWith = value; return this; } public String getRemitNoEndsWith() { return RemitNoEndsWith; } public CR_BatchTranLinesQuery setRemitNoEndsWith(String value) { this.RemitNoEndsWith = value; return this; } public String getRemitNoContains() { return RemitNoContains; } public CR_BatchTranLinesQuery setRemitNoContains(String value) { this.RemitNoContains = value; return this; } public String getRemitNoLike() { return RemitNoLike; } public CR_BatchTranLinesQuery setRemitNoLike(String value) { this.RemitNoLike = value; return this; } public ArrayList getRemitNoBetween() { return RemitNoBetween; } public CR_BatchTranLinesQuery setRemitNoBetween(ArrayList value) { this.RemitNoBetween = value; return this; } public ArrayList getRemitNoIn() { return RemitNoIn; } public CR_BatchTranLinesQuery setRemitNoIn(ArrayList value) { this.RemitNoIn = value; return this; } public BigDecimal getHomeTransAmount() { return HomeTransAmount; } public CR_BatchTranLinesQuery setHomeTransAmount(BigDecimal value) { this.HomeTransAmount = value; return this; } public BigDecimal getHomeTransAmountGreaterThanOrEqualTo() { return HomeTransAmountGreaterThanOrEqualTo; } public CR_BatchTranLinesQuery setHomeTransAmountGreaterThanOrEqualTo(BigDecimal value) { this.HomeTransAmountGreaterThanOrEqualTo = value; return this; } public BigDecimal getHomeTransAmountGreaterThan() { return HomeTransAmountGreaterThan; } public CR_BatchTranLinesQuery setHomeTransAmountGreaterThan(BigDecimal value) { this.HomeTransAmountGreaterThan = value; return this; } public BigDecimal getHomeTransAmountLessThan() { return HomeTransAmountLessThan; } public CR_BatchTranLinesQuery setHomeTransAmountLessThan(BigDecimal value) { this.HomeTransAmountLessThan = value; return this; } public BigDecimal getHomeTransAmountLessThanOrEqualTo() { return HomeTransAmountLessThanOrEqualTo; } public CR_BatchTranLinesQuery setHomeTransAmountLessThanOrEqualTo(BigDecimal value) { this.HomeTransAmountLessThanOrEqualTo = value; return this; } public BigDecimal getHomeTransAmountNotEqualTo() { return HomeTransAmountNotEqualTo; } public CR_BatchTranLinesQuery setHomeTransAmountNotEqualTo(BigDecimal value) { this.HomeTransAmountNotEqualTo = value; return this; } public ArrayList getHomeTransAmountBetween() { return HomeTransAmountBetween; } public CR_BatchTranLinesQuery setHomeTransAmountBetween(ArrayList value) { this.HomeTransAmountBetween = value; return this; } public ArrayList getHomeTransAmountIn() { return HomeTransAmountIn; } public CR_BatchTranLinesQuery setHomeTransAmountIn(ArrayList value) { this.HomeTransAmountIn = value; return this; } public Integer getLineNum() { return LineNum; } public CR_BatchTranLinesQuery setLineNum(Integer value) { this.LineNum = value; return this; } public Integer getLineNumGreaterThanOrEqualTo() { return LineNumGreaterThanOrEqualTo; } public CR_BatchTranLinesQuery setLineNumGreaterThanOrEqualTo(Integer value) { this.LineNumGreaterThanOrEqualTo = value; return this; } public Integer getLineNumGreaterThan() { return LineNumGreaterThan; } public CR_BatchTranLinesQuery setLineNumGreaterThan(Integer value) { this.LineNumGreaterThan = value; return this; } public Integer getLineNumLessThan() { return LineNumLessThan; } public CR_BatchTranLinesQuery setLineNumLessThan(Integer value) { this.LineNumLessThan = value; return this; } public Integer getLineNumLessThanOrEqualTo() { return LineNumLessThanOrEqualTo; } public CR_BatchTranLinesQuery setLineNumLessThanOrEqualTo(Integer value) { this.LineNumLessThanOrEqualTo = value; return this; } public Integer getLineNumNotEqualTo() { return LineNumNotEqualTo; } public CR_BatchTranLinesQuery setLineNumNotEqualTo(Integer value) { this.LineNumNotEqualTo = value; return this; } public ArrayList getLineNumBetween() { return LineNumBetween; } public CR_BatchTranLinesQuery setLineNumBetween(ArrayList value) { this.LineNumBetween = value; return this; } public ArrayList getLineNumIn() { return LineNumIn; } public CR_BatchTranLinesQuery setLineNumIn(ArrayList value) { this.LineNumIn = value; return this; } public String getOtherLedgerID() { return OtherLedgerID; } public CR_BatchTranLinesQuery setOtherLedgerID(String value) { this.OtherLedgerID = value; return this; } public String getOtherLedgerIDStartsWith() { return OtherLedgerIDStartsWith; } public CR_BatchTranLinesQuery setOtherLedgerIDStartsWith(String value) { this.OtherLedgerIDStartsWith = value; return this; } public String getOtherLedgerIDEndsWith() { return OtherLedgerIDEndsWith; } public CR_BatchTranLinesQuery setOtherLedgerIDEndsWith(String value) { this.OtherLedgerIDEndsWith = value; return this; } public String getOtherLedgerIDContains() { return OtherLedgerIDContains; } public CR_BatchTranLinesQuery setOtherLedgerIDContains(String value) { this.OtherLedgerIDContains = value; return this; } public String getOtherLedgerIDLike() { return OtherLedgerIDLike; } public CR_BatchTranLinesQuery setOtherLedgerIDLike(String value) { this.OtherLedgerIDLike = value; return this; } public ArrayList getOtherLedgerIDBetween() { return OtherLedgerIDBetween; } public CR_BatchTranLinesQuery setOtherLedgerIDBetween(ArrayList value) { this.OtherLedgerIDBetween = value; return this; } public ArrayList getOtherLedgerIDIn() { return OtherLedgerIDIn; } public CR_BatchTranLinesQuery setOtherLedgerIDIn(ArrayList value) { this.OtherLedgerIDIn = value; return this; } public BigDecimal getHomeDispAmount() { return HomeDispAmount; } public CR_BatchTranLinesQuery setHomeDispAmount(BigDecimal value) { this.HomeDispAmount = value; return this; } public BigDecimal getHomeDispAmountGreaterThanOrEqualTo() { return HomeDispAmountGreaterThanOrEqualTo; } public CR_BatchTranLinesQuery setHomeDispAmountGreaterThanOrEqualTo(BigDecimal value) { this.HomeDispAmountGreaterThanOrEqualTo = value; return this; } public BigDecimal getHomeDispAmountGreaterThan() { return HomeDispAmountGreaterThan; } public CR_BatchTranLinesQuery setHomeDispAmountGreaterThan(BigDecimal value) { this.HomeDispAmountGreaterThan = value; return this; } public BigDecimal getHomeDispAmountLessThan() { return HomeDispAmountLessThan; } public CR_BatchTranLinesQuery setHomeDispAmountLessThan(BigDecimal value) { this.HomeDispAmountLessThan = value; return this; } public BigDecimal getHomeDispAmountLessThanOrEqualTo() { return HomeDispAmountLessThanOrEqualTo; } public CR_BatchTranLinesQuery setHomeDispAmountLessThanOrEqualTo(BigDecimal value) { this.HomeDispAmountLessThanOrEqualTo = value; return this; } public BigDecimal getHomeDispAmountNotEqualTo() { return HomeDispAmountNotEqualTo; } public CR_BatchTranLinesQuery setHomeDispAmountNotEqualTo(BigDecimal value) { this.HomeDispAmountNotEqualTo = value; return this; } public ArrayList getHomeDispAmountBetween() { return HomeDispAmountBetween; } public CR_BatchTranLinesQuery setHomeDispAmountBetween(ArrayList value) { this.HomeDispAmountBetween = value; return this; } public ArrayList getHomeDispAmountIn() { return HomeDispAmountIn; } public CR_BatchTranLinesQuery setHomeDispAmountIn(ArrayList value) { this.HomeDispAmountIn = value; return this; } public Date getReceiptDate() { return ReceiptDate; } public CR_BatchTranLinesQuery setReceiptDate(Date value) { this.ReceiptDate = value; return this; } public Date getReceiptDateGreaterThanOrEqualTo() { return ReceiptDateGreaterThanOrEqualTo; } public CR_BatchTranLinesQuery setReceiptDateGreaterThanOrEqualTo(Date value) { this.ReceiptDateGreaterThanOrEqualTo = value; return this; } public Date getReceiptDateGreaterThan() { return ReceiptDateGreaterThan; } public CR_BatchTranLinesQuery setReceiptDateGreaterThan(Date value) { this.ReceiptDateGreaterThan = value; return this; } public Date getReceiptDateLessThan() { return ReceiptDateLessThan; } public CR_BatchTranLinesQuery setReceiptDateLessThan(Date value) { this.ReceiptDateLessThan = value; return this; } public Date getReceiptDateLessThanOrEqualTo() { return ReceiptDateLessThanOrEqualTo; } public CR_BatchTranLinesQuery setReceiptDateLessThanOrEqualTo(Date value) { this.ReceiptDateLessThanOrEqualTo = value; return this; } public Date getReceiptDateNotEqualTo() { return ReceiptDateNotEqualTo; } public CR_BatchTranLinesQuery setReceiptDateNotEqualTo(Date value) { this.ReceiptDateNotEqualTo = value; return this; } public ArrayList getReceiptDateBetween() { return ReceiptDateBetween; } public CR_BatchTranLinesQuery setReceiptDateBetween(ArrayList value) { this.ReceiptDateBetween = value; return this; } public ArrayList getReceiptDateIn() { return ReceiptDateIn; } public CR_BatchTranLinesQuery setReceiptDateIn(ArrayList value) { this.ReceiptDateIn = value; return this; } public BigDecimal getSupplierTransAmount() { return SupplierTransAmount; } public CR_BatchTranLinesQuery setSupplierTransAmount(BigDecimal value) { this.SupplierTransAmount = value; return this; } public BigDecimal getSupplierTransAmountGreaterThanOrEqualTo() { return SupplierTransAmountGreaterThanOrEqualTo; } public CR_BatchTranLinesQuery setSupplierTransAmountGreaterThanOrEqualTo(BigDecimal value) { this.SupplierTransAmountGreaterThanOrEqualTo = value; return this; } public BigDecimal getSupplierTransAmountGreaterThan() { return SupplierTransAmountGreaterThan; } public CR_BatchTranLinesQuery setSupplierTransAmountGreaterThan(BigDecimal value) { this.SupplierTransAmountGreaterThan = value; return this; } public BigDecimal getSupplierTransAmountLessThan() { return SupplierTransAmountLessThan; } public CR_BatchTranLinesQuery setSupplierTransAmountLessThan(BigDecimal value) { this.SupplierTransAmountLessThan = value; return this; } public BigDecimal getSupplierTransAmountLessThanOrEqualTo() { return SupplierTransAmountLessThanOrEqualTo; } public CR_BatchTranLinesQuery setSupplierTransAmountLessThanOrEqualTo(BigDecimal value) { this.SupplierTransAmountLessThanOrEqualTo = value; return this; } public BigDecimal getSupplierTransAmountNotEqualTo() { return SupplierTransAmountNotEqualTo; } public CR_BatchTranLinesQuery setSupplierTransAmountNotEqualTo(BigDecimal value) { this.SupplierTransAmountNotEqualTo = value; return this; } public ArrayList getSupplierTransAmountBetween() { return SupplierTransAmountBetween; } public CR_BatchTranLinesQuery setSupplierTransAmountBetween(ArrayList value) { this.SupplierTransAmountBetween = value; return this; } public ArrayList getSupplierTransAmountIn() { return SupplierTransAmountIn; } public CR_BatchTranLinesQuery setSupplierTransAmountIn(ArrayList value) { this.SupplierTransAmountIn = value; return this; } public BigDecimal getSupplierDispAmount() { return SupplierDispAmount; } public CR_BatchTranLinesQuery setSupplierDispAmount(BigDecimal value) { this.SupplierDispAmount = value; return this; } public BigDecimal getSupplierDispAmountGreaterThanOrEqualTo() { return SupplierDispAmountGreaterThanOrEqualTo; } public CR_BatchTranLinesQuery setSupplierDispAmountGreaterThanOrEqualTo(BigDecimal value) { this.SupplierDispAmountGreaterThanOrEqualTo = value; return this; } public BigDecimal getSupplierDispAmountGreaterThan() { return SupplierDispAmountGreaterThan; } public CR_BatchTranLinesQuery setSupplierDispAmountGreaterThan(BigDecimal value) { this.SupplierDispAmountGreaterThan = value; return this; } public BigDecimal getSupplierDispAmountLessThan() { return SupplierDispAmountLessThan; } public CR_BatchTranLinesQuery setSupplierDispAmountLessThan(BigDecimal value) { this.SupplierDispAmountLessThan = value; return this; } public BigDecimal getSupplierDispAmountLessThanOrEqualTo() { return SupplierDispAmountLessThanOrEqualTo; } public CR_BatchTranLinesQuery setSupplierDispAmountLessThanOrEqualTo(BigDecimal value) { this.SupplierDispAmountLessThanOrEqualTo = value; return this; } public BigDecimal getSupplierDispAmountNotEqualTo() { return SupplierDispAmountNotEqualTo; } public CR_BatchTranLinesQuery setSupplierDispAmountNotEqualTo(BigDecimal value) { this.SupplierDispAmountNotEqualTo = value; return this; } public ArrayList getSupplierDispAmountBetween() { return SupplierDispAmountBetween; } public CR_BatchTranLinesQuery setSupplierDispAmountBetween(ArrayList value) { this.SupplierDispAmountBetween = value; return this; } public ArrayList getSupplierDispAmountIn() { return SupplierDispAmountIn; } public CR_BatchTranLinesQuery setSupplierDispAmountIn(ArrayList value) { this.SupplierDispAmountIn = value; return this; } public BigDecimal getCurrencyRateUsed() { return CurrencyRateUsed; } public CR_BatchTranLinesQuery setCurrencyRateUsed(BigDecimal value) { this.CurrencyRateUsed = value; return this; } public BigDecimal getCurrencyRateUsedGreaterThanOrEqualTo() { return CurrencyRateUsedGreaterThanOrEqualTo; } public CR_BatchTranLinesQuery setCurrencyRateUsedGreaterThanOrEqualTo(BigDecimal value) { this.CurrencyRateUsedGreaterThanOrEqualTo = value; return this; } public BigDecimal getCurrencyRateUsedGreaterThan() { return CurrencyRateUsedGreaterThan; } public CR_BatchTranLinesQuery setCurrencyRateUsedGreaterThan(BigDecimal value) { this.CurrencyRateUsedGreaterThan = value; return this; } public BigDecimal getCurrencyRateUsedLessThan() { return CurrencyRateUsedLessThan; } public CR_BatchTranLinesQuery setCurrencyRateUsedLessThan(BigDecimal value) { this.CurrencyRateUsedLessThan = value; return this; } public BigDecimal getCurrencyRateUsedLessThanOrEqualTo() { return CurrencyRateUsedLessThanOrEqualTo; } public CR_BatchTranLinesQuery setCurrencyRateUsedLessThanOrEqualTo(BigDecimal value) { this.CurrencyRateUsedLessThanOrEqualTo = value; return this; } public BigDecimal getCurrencyRateUsedNotEqualTo() { return CurrencyRateUsedNotEqualTo; } public CR_BatchTranLinesQuery setCurrencyRateUsedNotEqualTo(BigDecimal value) { this.CurrencyRateUsedNotEqualTo = value; return this; } public ArrayList getCurrencyRateUsedBetween() { return CurrencyRateUsedBetween; } public CR_BatchTranLinesQuery setCurrencyRateUsedBetween(ArrayList value) { this.CurrencyRateUsedBetween = value; return this; } public ArrayList getCurrencyRateUsedIn() { return CurrencyRateUsedIn; } public CR_BatchTranLinesQuery setCurrencyRateUsedIn(ArrayList value) { this.CurrencyRateUsedIn = value; return this; } public String getTaxID() { return TaxID; } public CR_BatchTranLinesQuery setTaxID(String value) { this.TaxID = value; return this; } public String getTaxIDStartsWith() { return TaxIDStartsWith; } public CR_BatchTranLinesQuery setTaxIDStartsWith(String value) { this.TaxIDStartsWith = value; return this; } public String getTaxIDEndsWith() { return TaxIDEndsWith; } public CR_BatchTranLinesQuery setTaxIDEndsWith(String value) { this.TaxIDEndsWith = value; return this; } public String getTaxIDContains() { return TaxIDContains; } public CR_BatchTranLinesQuery setTaxIDContains(String value) { this.TaxIDContains = value; return this; } public String getTaxIDLike() { return TaxIDLike; } public CR_BatchTranLinesQuery setTaxIDLike(String value) { this.TaxIDLike = value; return this; } public ArrayList getTaxIDBetween() { return TaxIDBetween; } public CR_BatchTranLinesQuery setTaxIDBetween(ArrayList value) { this.TaxIDBetween = value; return this; } public ArrayList getTaxIDIn() { return TaxIDIn; } public CR_BatchTranLinesQuery setTaxIDIn(ArrayList value) { this.TaxIDIn = value; return this; } public BigDecimal getTaxRate() { return TaxRate; } public CR_BatchTranLinesQuery setTaxRate(BigDecimal value) { this.TaxRate = value; return this; } public BigDecimal getTaxRateGreaterThanOrEqualTo() { return TaxRateGreaterThanOrEqualTo; } public CR_BatchTranLinesQuery setTaxRateGreaterThanOrEqualTo(BigDecimal value) { this.TaxRateGreaterThanOrEqualTo = value; return this; } public BigDecimal getTaxRateGreaterThan() { return TaxRateGreaterThan; } public CR_BatchTranLinesQuery setTaxRateGreaterThan(BigDecimal value) { this.TaxRateGreaterThan = value; return this; } public BigDecimal getTaxRateLessThan() { return TaxRateLessThan; } public CR_BatchTranLinesQuery setTaxRateLessThan(BigDecimal value) { this.TaxRateLessThan = value; return this; } public BigDecimal getTaxRateLessThanOrEqualTo() { return TaxRateLessThanOrEqualTo; } public CR_BatchTranLinesQuery setTaxRateLessThanOrEqualTo(BigDecimal value) { this.TaxRateLessThanOrEqualTo = value; return this; } public BigDecimal getTaxRateNotEqualTo() { return TaxRateNotEqualTo; } public CR_BatchTranLinesQuery setTaxRateNotEqualTo(BigDecimal value) { this.TaxRateNotEqualTo = value; return this; } public ArrayList getTaxRateBetween() { return TaxRateBetween; } public CR_BatchTranLinesQuery setTaxRateBetween(ArrayList value) { this.TaxRateBetween = value; return this; } public ArrayList getTaxRateIn() { return TaxRateIn; } public CR_BatchTranLinesQuery setTaxRateIn(ArrayList value) { this.TaxRateIn = value; return this; } public BigDecimal getTaxAmount() { return TaxAmount; } public CR_BatchTranLinesQuery setTaxAmount(BigDecimal value) { this.TaxAmount = value; return this; } public BigDecimal getTaxAmountGreaterThanOrEqualTo() { return TaxAmountGreaterThanOrEqualTo; } public CR_BatchTranLinesQuery setTaxAmountGreaterThanOrEqualTo(BigDecimal value) { this.TaxAmountGreaterThanOrEqualTo = value; return this; } public BigDecimal getTaxAmountGreaterThan() { return TaxAmountGreaterThan; } public CR_BatchTranLinesQuery setTaxAmountGreaterThan(BigDecimal value) { this.TaxAmountGreaterThan = value; return this; } public BigDecimal getTaxAmountLessThan() { return TaxAmountLessThan; } public CR_BatchTranLinesQuery setTaxAmountLessThan(BigDecimal value) { this.TaxAmountLessThan = value; return this; } public BigDecimal getTaxAmountLessThanOrEqualTo() { return TaxAmountLessThanOrEqualTo; } public CR_BatchTranLinesQuery setTaxAmountLessThanOrEqualTo(BigDecimal value) { this.TaxAmountLessThanOrEqualTo = value; return this; } public BigDecimal getTaxAmountNotEqualTo() { return TaxAmountNotEqualTo; } public CR_BatchTranLinesQuery setTaxAmountNotEqualTo(BigDecimal value) { this.TaxAmountNotEqualTo = value; return this; } public ArrayList getTaxAmountBetween() { return TaxAmountBetween; } public CR_BatchTranLinesQuery setTaxAmountBetween(ArrayList value) { this.TaxAmountBetween = value; return this; } public ArrayList getTaxAmountIn() { return TaxAmountIn; } public CR_BatchTranLinesQuery setTaxAmountIn(ArrayList value) { this.TaxAmountIn = value; return this; } public Date getDueDate() { return DueDate; } public CR_BatchTranLinesQuery setDueDate(Date value) { this.DueDate = value; return this; } public Date getDueDateGreaterThanOrEqualTo() { return DueDateGreaterThanOrEqualTo; } public CR_BatchTranLinesQuery setDueDateGreaterThanOrEqualTo(Date value) { this.DueDateGreaterThanOrEqualTo = value; return this; } public Date getDueDateGreaterThan() { return DueDateGreaterThan; } public CR_BatchTranLinesQuery setDueDateGreaterThan(Date value) { this.DueDateGreaterThan = value; return this; } public Date getDueDateLessThan() { return DueDateLessThan; } public CR_BatchTranLinesQuery setDueDateLessThan(Date value) { this.DueDateLessThan = value; return this; } public Date getDueDateLessThanOrEqualTo() { return DueDateLessThanOrEqualTo; } public CR_BatchTranLinesQuery setDueDateLessThanOrEqualTo(Date value) { this.DueDateLessThanOrEqualTo = value; return this; } public Date getDueDateNotEqualTo() { return DueDateNotEqualTo; } public CR_BatchTranLinesQuery setDueDateNotEqualTo(Date value) { this.DueDateNotEqualTo = value; return this; } public ArrayList getDueDateBetween() { return DueDateBetween; } public CR_BatchTranLinesQuery setDueDateBetween(ArrayList value) { this.DueDateBetween = value; return this; } public ArrayList getDueDateIn() { return DueDateIn; } public CR_BatchTranLinesQuery setDueDateIn(ArrayList value) { this.DueDateIn = value; return this; } public BigDecimal getHomeDispAmountIncGST() { return HomeDispAmountIncGST; } public CR_BatchTranLinesQuery setHomeDispAmountIncGST(BigDecimal value) { this.HomeDispAmountIncGST = value; return this; } public BigDecimal getHomeDispAmountIncGSTGreaterThanOrEqualTo() { return HomeDispAmountIncGSTGreaterThanOrEqualTo; } public CR_BatchTranLinesQuery setHomeDispAmountIncGSTGreaterThanOrEqualTo(BigDecimal value) { this.HomeDispAmountIncGSTGreaterThanOrEqualTo = value; return this; } public BigDecimal getHomeDispAmountIncGSTGreaterThan() { return HomeDispAmountIncGSTGreaterThan; } public CR_BatchTranLinesQuery setHomeDispAmountIncGSTGreaterThan(BigDecimal value) { this.HomeDispAmountIncGSTGreaterThan = value; return this; } public BigDecimal getHomeDispAmountIncGSTLessThan() { return HomeDispAmountIncGSTLessThan; } public CR_BatchTranLinesQuery setHomeDispAmountIncGSTLessThan(BigDecimal value) { this.HomeDispAmountIncGSTLessThan = value; return this; } public BigDecimal getHomeDispAmountIncGSTLessThanOrEqualTo() { return HomeDispAmountIncGSTLessThanOrEqualTo; } public CR_BatchTranLinesQuery setHomeDispAmountIncGSTLessThanOrEqualTo(BigDecimal value) { this.HomeDispAmountIncGSTLessThanOrEqualTo = value; return this; } public BigDecimal getHomeDispAmountIncGSTNotEqualTo() { return HomeDispAmountIncGSTNotEqualTo; } public CR_BatchTranLinesQuery setHomeDispAmountIncGSTNotEqualTo(BigDecimal value) { this.HomeDispAmountIncGSTNotEqualTo = value; return this; } public ArrayList getHomeDispAmountIncGSTBetween() { return HomeDispAmountIncGSTBetween; } public CR_BatchTranLinesQuery setHomeDispAmountIncGSTBetween(ArrayList value) { this.HomeDispAmountIncGSTBetween = value; return this; } public ArrayList getHomeDispAmountIncGSTIn() { return HomeDispAmountIncGSTIn; } public CR_BatchTranLinesQuery setHomeDispAmountIncGSTIn(ArrayList value) { this.HomeDispAmountIncGSTIn = value; return this; } public String getCurrencyID() { return CurrencyID; } public CR_BatchTranLinesQuery setCurrencyID(String value) { this.CurrencyID = value; return this; } public String getCurrencyIDStartsWith() { return CurrencyIDStartsWith; } public CR_BatchTranLinesQuery setCurrencyIDStartsWith(String value) { this.CurrencyIDStartsWith = value; return this; } public String getCurrencyIDEndsWith() { return CurrencyIDEndsWith; } public CR_BatchTranLinesQuery setCurrencyIDEndsWith(String value) { this.CurrencyIDEndsWith = value; return this; } public String getCurrencyIDContains() { return CurrencyIDContains; } public CR_BatchTranLinesQuery setCurrencyIDContains(String value) { this.CurrencyIDContains = value; return this; } public String getCurrencyIDLike() { return CurrencyIDLike; } public CR_BatchTranLinesQuery setCurrencyIDLike(String value) { this.CurrencyIDLike = value; return this; } public ArrayList getCurrencyIDBetween() { return CurrencyIDBetween; } public CR_BatchTranLinesQuery setCurrencyIDBetween(ArrayList value) { this.CurrencyIDBetween = value; return this; } public ArrayList getCurrencyIDIn() { return CurrencyIDIn; } public CR_BatchTranLinesQuery setCurrencyIDIn(ArrayList value) { this.CurrencyIDIn = value; return this; } public BigDecimal getJobChargeAmount() { return JobChargeAmount; } public CR_BatchTranLinesQuery setJobChargeAmount(BigDecimal value) { this.JobChargeAmount = value; return this; } public BigDecimal getJobChargeAmountGreaterThanOrEqualTo() { return JobChargeAmountGreaterThanOrEqualTo; } public CR_BatchTranLinesQuery setJobChargeAmountGreaterThanOrEqualTo(BigDecimal value) { this.JobChargeAmountGreaterThanOrEqualTo = value; return this; } public BigDecimal getJobChargeAmountGreaterThan() { return JobChargeAmountGreaterThan; } public CR_BatchTranLinesQuery setJobChargeAmountGreaterThan(BigDecimal value) { this.JobChargeAmountGreaterThan = value; return this; } public BigDecimal getJobChargeAmountLessThan() { return JobChargeAmountLessThan; } public CR_BatchTranLinesQuery setJobChargeAmountLessThan(BigDecimal value) { this.JobChargeAmountLessThan = value; return this; } public BigDecimal getJobChargeAmountLessThanOrEqualTo() { return JobChargeAmountLessThanOrEqualTo; } public CR_BatchTranLinesQuery setJobChargeAmountLessThanOrEqualTo(BigDecimal value) { this.JobChargeAmountLessThanOrEqualTo = value; return this; } public BigDecimal getJobChargeAmountNotEqualTo() { return JobChargeAmountNotEqualTo; } public CR_BatchTranLinesQuery setJobChargeAmountNotEqualTo(BigDecimal value) { this.JobChargeAmountNotEqualTo = value; return this; } public ArrayList getJobChargeAmountBetween() { return JobChargeAmountBetween; } public CR_BatchTranLinesQuery setJobChargeAmountBetween(ArrayList value) { this.JobChargeAmountBetween = value; return this; } public ArrayList getJobChargeAmountIn() { return JobChargeAmountIn; } public CR_BatchTranLinesQuery setJobChargeAmountIn(ArrayList value) { this.JobChargeAmountIn = value; return this; } public String getJbJobStagesRecID() { return JB_JobStages_RecID; } public CR_BatchTranLinesQuery setJbJobStagesRecID(String value) { this.JB_JobStages_RecID = value; return this; } public String getJbJobStagesRecIDStartsWith() { return JB_JobStages_RecIDStartsWith; } public CR_BatchTranLinesQuery setJbJobStagesRecIDStartsWith(String value) { this.JB_JobStages_RecIDStartsWith = value; return this; } public String getJbJobStagesRecIDEndsWith() { return JB_JobStages_RecIDEndsWith; } public CR_BatchTranLinesQuery setJbJobStagesRecIDEndsWith(String value) { this.JB_JobStages_RecIDEndsWith = value; return this; } public String getJbJobStagesRecIDContains() { return JB_JobStages_RecIDContains; } public CR_BatchTranLinesQuery setJbJobStagesRecIDContains(String value) { this.JB_JobStages_RecIDContains = value; return this; } public String getJbJobStagesRecIDLike() { return JB_JobStages_RecIDLike; } public CR_BatchTranLinesQuery setJbJobStagesRecIDLike(String value) { this.JB_JobStages_RecIDLike = value; return this; } public ArrayList getJbJobStagesRecIDBetween() { return JB_JobStages_RecIDBetween; } public CR_BatchTranLinesQuery setJbJobStagesRecIDBetween(ArrayList value) { this.JB_JobStages_RecIDBetween = value; return this; } public ArrayList getJbJobStagesRecIDIn() { return JB_JobStages_RecIDIn; } public CR_BatchTranLinesQuery setJbJobStagesRecIDIn(ArrayList value) { this.JB_JobStages_RecIDIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class CR_BatchTransQuery extends QueryDb implements IReturn> { public String ReceiptID = null; public String ReceiptIDStartsWith = null; public String ReceiptIDEndsWith = null; public String ReceiptIDContains = null; public String ReceiptIDLike = null; public ArrayList ReceiptIDBetween = null; public ArrayList ReceiptIDIn = null; public Date LastSavedDateTime = null; public Date LastSavedDateTimeGreaterThanOrEqualTo = null; public Date LastSavedDateTimeGreaterThan = null; public Date LastSavedDateTimeLessThan = null; public Date LastSavedDateTimeLessThanOrEqualTo = null; public Date LastSavedDateTimeNotEqualTo = null; public ArrayList LastSavedDateTimeBetween = null; public ArrayList LastSavedDateTimeIn = null; public String JiwaUser = null; public String JiwaUserStartsWith = null; public String JiwaUserEndsWith = null; public String JiwaUserContains = null; public String JiwaUserLike = null; public ArrayList JiwaUserBetween = null; public ArrayList JiwaUserIn = null; public Date ReceiptDate = null; public Date ReceiptDateGreaterThanOrEqualTo = null; public Date ReceiptDateGreaterThan = null; public Date ReceiptDateLessThan = null; public Date ReceiptDateLessThanOrEqualTo = null; public Date ReceiptDateNotEqualTo = null; public ArrayList ReceiptDateBetween = null; public ArrayList ReceiptDateIn = null; public String BatchNum = null; public String BatchNumStartsWith = null; public String BatchNumEndsWith = null; public String BatchNumContains = null; public String BatchNumLike = null; public ArrayList BatchNumBetween = null; public ArrayList BatchNumIn = null; public Short ReceiptType = null; public Short ReceiptTypeGreaterThanOrEqualTo = null; public Short ReceiptTypeGreaterThan = null; public Short ReceiptTypeLessThan = null; public Short ReceiptTypeLessThanOrEqualTo = null; public Short ReceiptTypeNotEqualTo = null; public ArrayList ReceiptTypeBetween = null; public ArrayList ReceiptTypeIn = null; public Short ReceiptStatus = null; public Short ReceiptStatusGreaterThanOrEqualTo = null; public Short ReceiptStatusGreaterThan = null; public Short ReceiptStatusLessThan = null; public Short ReceiptStatusLessThanOrEqualTo = null; public Short ReceiptStatusNotEqualTo = null; public ArrayList ReceiptStatusBetween = null; public ArrayList ReceiptStatusIn = null; public Short BatchType = null; public Short BatchTypeGreaterThanOrEqualTo = null; public Short BatchTypeGreaterThan = null; public Short BatchTypeLessThan = null; public Short BatchTypeLessThanOrEqualTo = null; public Short BatchTypeNotEqualTo = null; public ArrayList BatchTypeBetween = null; public ArrayList BatchTypeIn = null; public Short RepeatingType = null; public Short RepeatingTypeGreaterThanOrEqualTo = null; public Short RepeatingTypeGreaterThan = null; public Short RepeatingTypeLessThan = null; public Short RepeatingTypeLessThanOrEqualTo = null; public Short RepeatingTypeNotEqualTo = null; public ArrayList RepeatingTypeBetween = null; public ArrayList RepeatingTypeIn = null; public Short RepeatingUnits = null; public Short RepeatingUnitsGreaterThanOrEqualTo = null; public Short RepeatingUnitsGreaterThan = null; public Short RepeatingUnitsLessThan = null; public Short RepeatingUnitsLessThanOrEqualTo = null; public Short RepeatingUnitsNotEqualTo = null; public ArrayList RepeatingUnitsBetween = null; public ArrayList RepeatingUnitsIn = null; public Date NextRepeatingDate = null; public Date NextRepeatingDateGreaterThanOrEqualTo = null; public Date NextRepeatingDateGreaterThan = null; public Date NextRepeatingDateLessThan = null; public Date NextRepeatingDateLessThanOrEqualTo = null; public Date NextRepeatingDateNotEqualTo = null; public ArrayList NextRepeatingDateBetween = null; public ArrayList NextRepeatingDateIn = null; public Boolean RepeatingWillEnd = null; public Date RepeatingEndDate = null; public Date RepeatingEndDateGreaterThanOrEqualTo = null; public Date RepeatingEndDateGreaterThan = null; public Date RepeatingEndDateLessThan = null; public Date RepeatingEndDateLessThanOrEqualTo = null; public Date RepeatingEndDateNotEqualTo = null; public ArrayList RepeatingEndDateBetween = null; public ArrayList RepeatingEndDateIn = null; public String Description = null; public String DescriptionStartsWith = null; public String DescriptionEndsWith = null; public String DescriptionContains = null; public String DescriptionLike = null; public ArrayList DescriptionBetween = null; public ArrayList DescriptionIn = null; public String getReceiptID() { return ReceiptID; } public CR_BatchTransQuery setReceiptID(String value) { this.ReceiptID = value; return this; } public String getReceiptIDStartsWith() { return ReceiptIDStartsWith; } public CR_BatchTransQuery setReceiptIDStartsWith(String value) { this.ReceiptIDStartsWith = value; return this; } public String getReceiptIDEndsWith() { return ReceiptIDEndsWith; } public CR_BatchTransQuery setReceiptIDEndsWith(String value) { this.ReceiptIDEndsWith = value; return this; } public String getReceiptIDContains() { return ReceiptIDContains; } public CR_BatchTransQuery setReceiptIDContains(String value) { this.ReceiptIDContains = value; return this; } public String getReceiptIDLike() { return ReceiptIDLike; } public CR_BatchTransQuery setReceiptIDLike(String value) { this.ReceiptIDLike = value; return this; } public ArrayList getReceiptIDBetween() { return ReceiptIDBetween; } public CR_BatchTransQuery setReceiptIDBetween(ArrayList value) { this.ReceiptIDBetween = value; return this; } public ArrayList getReceiptIDIn() { return ReceiptIDIn; } public CR_BatchTransQuery setReceiptIDIn(ArrayList value) { this.ReceiptIDIn = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public CR_BatchTransQuery setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getLastSavedDateTimeGreaterThanOrEqualTo() { return LastSavedDateTimeGreaterThanOrEqualTo; } public CR_BatchTransQuery setLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.LastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeGreaterThan() { return LastSavedDateTimeGreaterThan; } public CR_BatchTransQuery setLastSavedDateTimeGreaterThan(Date value) { this.LastSavedDateTimeGreaterThan = value; return this; } public Date getLastSavedDateTimeLessThan() { return LastSavedDateTimeLessThan; } public CR_BatchTransQuery setLastSavedDateTimeLessThan(Date value) { this.LastSavedDateTimeLessThan = value; return this; } public Date getLastSavedDateTimeLessThanOrEqualTo() { return LastSavedDateTimeLessThanOrEqualTo; } public CR_BatchTransQuery setLastSavedDateTimeLessThanOrEqualTo(Date value) { this.LastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeNotEqualTo() { return LastSavedDateTimeNotEqualTo; } public CR_BatchTransQuery setLastSavedDateTimeNotEqualTo(Date value) { this.LastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getLastSavedDateTimeBetween() { return LastSavedDateTimeBetween; } public CR_BatchTransQuery setLastSavedDateTimeBetween(ArrayList value) { this.LastSavedDateTimeBetween = value; return this; } public ArrayList getLastSavedDateTimeIn() { return LastSavedDateTimeIn; } public CR_BatchTransQuery setLastSavedDateTimeIn(ArrayList value) { this.LastSavedDateTimeIn = value; return this; } public String getJiwaUser() { return JiwaUser; } public CR_BatchTransQuery setJiwaUser(String value) { this.JiwaUser = value; return this; } public String getJiwaUserStartsWith() { return JiwaUserStartsWith; } public CR_BatchTransQuery setJiwaUserStartsWith(String value) { this.JiwaUserStartsWith = value; return this; } public String getJiwaUserEndsWith() { return JiwaUserEndsWith; } public CR_BatchTransQuery setJiwaUserEndsWith(String value) { this.JiwaUserEndsWith = value; return this; } public String getJiwaUserContains() { return JiwaUserContains; } public CR_BatchTransQuery setJiwaUserContains(String value) { this.JiwaUserContains = value; return this; } public String getJiwaUserLike() { return JiwaUserLike; } public CR_BatchTransQuery setJiwaUserLike(String value) { this.JiwaUserLike = value; return this; } public ArrayList getJiwaUserBetween() { return JiwaUserBetween; } public CR_BatchTransQuery setJiwaUserBetween(ArrayList value) { this.JiwaUserBetween = value; return this; } public ArrayList getJiwaUserIn() { return JiwaUserIn; } public CR_BatchTransQuery setJiwaUserIn(ArrayList value) { this.JiwaUserIn = value; return this; } public Date getReceiptDate() { return ReceiptDate; } public CR_BatchTransQuery setReceiptDate(Date value) { this.ReceiptDate = value; return this; } public Date getReceiptDateGreaterThanOrEqualTo() { return ReceiptDateGreaterThanOrEqualTo; } public CR_BatchTransQuery setReceiptDateGreaterThanOrEqualTo(Date value) { this.ReceiptDateGreaterThanOrEqualTo = value; return this; } public Date getReceiptDateGreaterThan() { return ReceiptDateGreaterThan; } public CR_BatchTransQuery setReceiptDateGreaterThan(Date value) { this.ReceiptDateGreaterThan = value; return this; } public Date getReceiptDateLessThan() { return ReceiptDateLessThan; } public CR_BatchTransQuery setReceiptDateLessThan(Date value) { this.ReceiptDateLessThan = value; return this; } public Date getReceiptDateLessThanOrEqualTo() { return ReceiptDateLessThanOrEqualTo; } public CR_BatchTransQuery setReceiptDateLessThanOrEqualTo(Date value) { this.ReceiptDateLessThanOrEqualTo = value; return this; } public Date getReceiptDateNotEqualTo() { return ReceiptDateNotEqualTo; } public CR_BatchTransQuery setReceiptDateNotEqualTo(Date value) { this.ReceiptDateNotEqualTo = value; return this; } public ArrayList getReceiptDateBetween() { return ReceiptDateBetween; } public CR_BatchTransQuery setReceiptDateBetween(ArrayList value) { this.ReceiptDateBetween = value; return this; } public ArrayList getReceiptDateIn() { return ReceiptDateIn; } public CR_BatchTransQuery setReceiptDateIn(ArrayList value) { this.ReceiptDateIn = value; return this; } public String getBatchNum() { return BatchNum; } public CR_BatchTransQuery setBatchNum(String value) { this.BatchNum = value; return this; } public String getBatchNumStartsWith() { return BatchNumStartsWith; } public CR_BatchTransQuery setBatchNumStartsWith(String value) { this.BatchNumStartsWith = value; return this; } public String getBatchNumEndsWith() { return BatchNumEndsWith; } public CR_BatchTransQuery setBatchNumEndsWith(String value) { this.BatchNumEndsWith = value; return this; } public String getBatchNumContains() { return BatchNumContains; } public CR_BatchTransQuery setBatchNumContains(String value) { this.BatchNumContains = value; return this; } public String getBatchNumLike() { return BatchNumLike; } public CR_BatchTransQuery setBatchNumLike(String value) { this.BatchNumLike = value; return this; } public ArrayList getBatchNumBetween() { return BatchNumBetween; } public CR_BatchTransQuery setBatchNumBetween(ArrayList value) { this.BatchNumBetween = value; return this; } public ArrayList getBatchNumIn() { return BatchNumIn; } public CR_BatchTransQuery setBatchNumIn(ArrayList value) { this.BatchNumIn = value; return this; } public Short getReceiptType() { return ReceiptType; } public CR_BatchTransQuery setReceiptType(Short value) { this.ReceiptType = value; return this; } public Short getReceiptTypeGreaterThanOrEqualTo() { return ReceiptTypeGreaterThanOrEqualTo; } public CR_BatchTransQuery setReceiptTypeGreaterThanOrEqualTo(Short value) { this.ReceiptTypeGreaterThanOrEqualTo = value; return this; } public Short getReceiptTypeGreaterThan() { return ReceiptTypeGreaterThan; } public CR_BatchTransQuery setReceiptTypeGreaterThan(Short value) { this.ReceiptTypeGreaterThan = value; return this; } public Short getReceiptTypeLessThan() { return ReceiptTypeLessThan; } public CR_BatchTransQuery setReceiptTypeLessThan(Short value) { this.ReceiptTypeLessThan = value; return this; } public Short getReceiptTypeLessThanOrEqualTo() { return ReceiptTypeLessThanOrEqualTo; } public CR_BatchTransQuery setReceiptTypeLessThanOrEqualTo(Short value) { this.ReceiptTypeLessThanOrEqualTo = value; return this; } public Short getReceiptTypeNotEqualTo() { return ReceiptTypeNotEqualTo; } public CR_BatchTransQuery setReceiptTypeNotEqualTo(Short value) { this.ReceiptTypeNotEqualTo = value; return this; } public ArrayList getReceiptTypeBetween() { return ReceiptTypeBetween; } public CR_BatchTransQuery setReceiptTypeBetween(ArrayList value) { this.ReceiptTypeBetween = value; return this; } public ArrayList getReceiptTypeIn() { return ReceiptTypeIn; } public CR_BatchTransQuery setReceiptTypeIn(ArrayList value) { this.ReceiptTypeIn = value; return this; } public Short getReceiptStatus() { return ReceiptStatus; } public CR_BatchTransQuery setReceiptStatus(Short value) { this.ReceiptStatus = value; return this; } public Short getReceiptStatusGreaterThanOrEqualTo() { return ReceiptStatusGreaterThanOrEqualTo; } public CR_BatchTransQuery setReceiptStatusGreaterThanOrEqualTo(Short value) { this.ReceiptStatusGreaterThanOrEqualTo = value; return this; } public Short getReceiptStatusGreaterThan() { return ReceiptStatusGreaterThan; } public CR_BatchTransQuery setReceiptStatusGreaterThan(Short value) { this.ReceiptStatusGreaterThan = value; return this; } public Short getReceiptStatusLessThan() { return ReceiptStatusLessThan; } public CR_BatchTransQuery setReceiptStatusLessThan(Short value) { this.ReceiptStatusLessThan = value; return this; } public Short getReceiptStatusLessThanOrEqualTo() { return ReceiptStatusLessThanOrEqualTo; } public CR_BatchTransQuery setReceiptStatusLessThanOrEqualTo(Short value) { this.ReceiptStatusLessThanOrEqualTo = value; return this; } public Short getReceiptStatusNotEqualTo() { return ReceiptStatusNotEqualTo; } public CR_BatchTransQuery setReceiptStatusNotEqualTo(Short value) { this.ReceiptStatusNotEqualTo = value; return this; } public ArrayList getReceiptStatusBetween() { return ReceiptStatusBetween; } public CR_BatchTransQuery setReceiptStatusBetween(ArrayList value) { this.ReceiptStatusBetween = value; return this; } public ArrayList getReceiptStatusIn() { return ReceiptStatusIn; } public CR_BatchTransQuery setReceiptStatusIn(ArrayList value) { this.ReceiptStatusIn = value; return this; } public Short getBatchType() { return BatchType; } public CR_BatchTransQuery setBatchType(Short value) { this.BatchType = value; return this; } public Short getBatchTypeGreaterThanOrEqualTo() { return BatchTypeGreaterThanOrEqualTo; } public CR_BatchTransQuery setBatchTypeGreaterThanOrEqualTo(Short value) { this.BatchTypeGreaterThanOrEqualTo = value; return this; } public Short getBatchTypeGreaterThan() { return BatchTypeGreaterThan; } public CR_BatchTransQuery setBatchTypeGreaterThan(Short value) { this.BatchTypeGreaterThan = value; return this; } public Short getBatchTypeLessThan() { return BatchTypeLessThan; } public CR_BatchTransQuery setBatchTypeLessThan(Short value) { this.BatchTypeLessThan = value; return this; } public Short getBatchTypeLessThanOrEqualTo() { return BatchTypeLessThanOrEqualTo; } public CR_BatchTransQuery setBatchTypeLessThanOrEqualTo(Short value) { this.BatchTypeLessThanOrEqualTo = value; return this; } public Short getBatchTypeNotEqualTo() { return BatchTypeNotEqualTo; } public CR_BatchTransQuery setBatchTypeNotEqualTo(Short value) { this.BatchTypeNotEqualTo = value; return this; } public ArrayList getBatchTypeBetween() { return BatchTypeBetween; } public CR_BatchTransQuery setBatchTypeBetween(ArrayList value) { this.BatchTypeBetween = value; return this; } public ArrayList getBatchTypeIn() { return BatchTypeIn; } public CR_BatchTransQuery setBatchTypeIn(ArrayList value) { this.BatchTypeIn = value; return this; } public Short getRepeatingType() { return RepeatingType; } public CR_BatchTransQuery setRepeatingType(Short value) { this.RepeatingType = value; return this; } public Short getRepeatingTypeGreaterThanOrEqualTo() { return RepeatingTypeGreaterThanOrEqualTo; } public CR_BatchTransQuery setRepeatingTypeGreaterThanOrEqualTo(Short value) { this.RepeatingTypeGreaterThanOrEqualTo = value; return this; } public Short getRepeatingTypeGreaterThan() { return RepeatingTypeGreaterThan; } public CR_BatchTransQuery setRepeatingTypeGreaterThan(Short value) { this.RepeatingTypeGreaterThan = value; return this; } public Short getRepeatingTypeLessThan() { return RepeatingTypeLessThan; } public CR_BatchTransQuery setRepeatingTypeLessThan(Short value) { this.RepeatingTypeLessThan = value; return this; } public Short getRepeatingTypeLessThanOrEqualTo() { return RepeatingTypeLessThanOrEqualTo; } public CR_BatchTransQuery setRepeatingTypeLessThanOrEqualTo(Short value) { this.RepeatingTypeLessThanOrEqualTo = value; return this; } public Short getRepeatingTypeNotEqualTo() { return RepeatingTypeNotEqualTo; } public CR_BatchTransQuery setRepeatingTypeNotEqualTo(Short value) { this.RepeatingTypeNotEqualTo = value; return this; } public ArrayList getRepeatingTypeBetween() { return RepeatingTypeBetween; } public CR_BatchTransQuery setRepeatingTypeBetween(ArrayList value) { this.RepeatingTypeBetween = value; return this; } public ArrayList getRepeatingTypeIn() { return RepeatingTypeIn; } public CR_BatchTransQuery setRepeatingTypeIn(ArrayList value) { this.RepeatingTypeIn = value; return this; } public Short getRepeatingUnits() { return RepeatingUnits; } public CR_BatchTransQuery setRepeatingUnits(Short value) { this.RepeatingUnits = value; return this; } public Short getRepeatingUnitsGreaterThanOrEqualTo() { return RepeatingUnitsGreaterThanOrEqualTo; } public CR_BatchTransQuery setRepeatingUnitsGreaterThanOrEqualTo(Short value) { this.RepeatingUnitsGreaterThanOrEqualTo = value; return this; } public Short getRepeatingUnitsGreaterThan() { return RepeatingUnitsGreaterThan; } public CR_BatchTransQuery setRepeatingUnitsGreaterThan(Short value) { this.RepeatingUnitsGreaterThan = value; return this; } public Short getRepeatingUnitsLessThan() { return RepeatingUnitsLessThan; } public CR_BatchTransQuery setRepeatingUnitsLessThan(Short value) { this.RepeatingUnitsLessThan = value; return this; } public Short getRepeatingUnitsLessThanOrEqualTo() { return RepeatingUnitsLessThanOrEqualTo; } public CR_BatchTransQuery setRepeatingUnitsLessThanOrEqualTo(Short value) { this.RepeatingUnitsLessThanOrEqualTo = value; return this; } public Short getRepeatingUnitsNotEqualTo() { return RepeatingUnitsNotEqualTo; } public CR_BatchTransQuery setRepeatingUnitsNotEqualTo(Short value) { this.RepeatingUnitsNotEqualTo = value; return this; } public ArrayList getRepeatingUnitsBetween() { return RepeatingUnitsBetween; } public CR_BatchTransQuery setRepeatingUnitsBetween(ArrayList value) { this.RepeatingUnitsBetween = value; return this; } public ArrayList getRepeatingUnitsIn() { return RepeatingUnitsIn; } public CR_BatchTransQuery setRepeatingUnitsIn(ArrayList value) { this.RepeatingUnitsIn = value; return this; } public Date getNextRepeatingDate() { return NextRepeatingDate; } public CR_BatchTransQuery setNextRepeatingDate(Date value) { this.NextRepeatingDate = value; return this; } public Date getNextRepeatingDateGreaterThanOrEqualTo() { return NextRepeatingDateGreaterThanOrEqualTo; } public CR_BatchTransQuery setNextRepeatingDateGreaterThanOrEqualTo(Date value) { this.NextRepeatingDateGreaterThanOrEqualTo = value; return this; } public Date getNextRepeatingDateGreaterThan() { return NextRepeatingDateGreaterThan; } public CR_BatchTransQuery setNextRepeatingDateGreaterThan(Date value) { this.NextRepeatingDateGreaterThan = value; return this; } public Date getNextRepeatingDateLessThan() { return NextRepeatingDateLessThan; } public CR_BatchTransQuery setNextRepeatingDateLessThan(Date value) { this.NextRepeatingDateLessThan = value; return this; } public Date getNextRepeatingDateLessThanOrEqualTo() { return NextRepeatingDateLessThanOrEqualTo; } public CR_BatchTransQuery setNextRepeatingDateLessThanOrEqualTo(Date value) { this.NextRepeatingDateLessThanOrEqualTo = value; return this; } public Date getNextRepeatingDateNotEqualTo() { return NextRepeatingDateNotEqualTo; } public CR_BatchTransQuery setNextRepeatingDateNotEqualTo(Date value) { this.NextRepeatingDateNotEqualTo = value; return this; } public ArrayList getNextRepeatingDateBetween() { return NextRepeatingDateBetween; } public CR_BatchTransQuery setNextRepeatingDateBetween(ArrayList value) { this.NextRepeatingDateBetween = value; return this; } public ArrayList getNextRepeatingDateIn() { return NextRepeatingDateIn; } public CR_BatchTransQuery setNextRepeatingDateIn(ArrayList value) { this.NextRepeatingDateIn = value; return this; } public Boolean isRepeatingWillEnd() { return RepeatingWillEnd; } public CR_BatchTransQuery setRepeatingWillEnd(Boolean value) { this.RepeatingWillEnd = value; return this; } public Date getRepeatingEndDate() { return RepeatingEndDate; } public CR_BatchTransQuery setRepeatingEndDate(Date value) { this.RepeatingEndDate = value; return this; } public Date getRepeatingEndDateGreaterThanOrEqualTo() { return RepeatingEndDateGreaterThanOrEqualTo; } public CR_BatchTransQuery setRepeatingEndDateGreaterThanOrEqualTo(Date value) { this.RepeatingEndDateGreaterThanOrEqualTo = value; return this; } public Date getRepeatingEndDateGreaterThan() { return RepeatingEndDateGreaterThan; } public CR_BatchTransQuery setRepeatingEndDateGreaterThan(Date value) { this.RepeatingEndDateGreaterThan = value; return this; } public Date getRepeatingEndDateLessThan() { return RepeatingEndDateLessThan; } public CR_BatchTransQuery setRepeatingEndDateLessThan(Date value) { this.RepeatingEndDateLessThan = value; return this; } public Date getRepeatingEndDateLessThanOrEqualTo() { return RepeatingEndDateLessThanOrEqualTo; } public CR_BatchTransQuery setRepeatingEndDateLessThanOrEqualTo(Date value) { this.RepeatingEndDateLessThanOrEqualTo = value; return this; } public Date getRepeatingEndDateNotEqualTo() { return RepeatingEndDateNotEqualTo; } public CR_BatchTransQuery setRepeatingEndDateNotEqualTo(Date value) { this.RepeatingEndDateNotEqualTo = value; return this; } public ArrayList getRepeatingEndDateBetween() { return RepeatingEndDateBetween; } public CR_BatchTransQuery setRepeatingEndDateBetween(ArrayList value) { this.RepeatingEndDateBetween = value; return this; } public ArrayList getRepeatingEndDateIn() { return RepeatingEndDateIn; } public CR_BatchTransQuery setRepeatingEndDateIn(ArrayList value) { this.RepeatingEndDateIn = value; return this; } public String getDescription() { return Description; } public CR_BatchTransQuery setDescription(String value) { this.Description = value; return this; } public String getDescriptionStartsWith() { return DescriptionStartsWith; } public CR_BatchTransQuery setDescriptionStartsWith(String value) { this.DescriptionStartsWith = value; return this; } public String getDescriptionEndsWith() { return DescriptionEndsWith; } public CR_BatchTransQuery setDescriptionEndsWith(String value) { this.DescriptionEndsWith = value; return this; } public String getDescriptionContains() { return DescriptionContains; } public CR_BatchTransQuery setDescriptionContains(String value) { this.DescriptionContains = value; return this; } public String getDescriptionLike() { return DescriptionLike; } public CR_BatchTransQuery setDescriptionLike(String value) { this.DescriptionLike = value; return this; } public ArrayList getDescriptionBetween() { return DescriptionBetween; } public CR_BatchTransQuery setDescriptionBetween(ArrayList value) { this.DescriptionBetween = value; return this; } public ArrayList getDescriptionIn() { return DescriptionIn; } public CR_BatchTransQuery setDescriptionIn(ArrayList value) { this.DescriptionIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class CR_BatchTransDocumentsQuery extends QueryDb implements IReturn> { public String RecID = null; public String RecIDStartsWith = null; public String RecIDEndsWith = null; public String RecIDContains = null; public String RecIDLike = null; public ArrayList RecIDBetween = null; public ArrayList RecIDIn = null; public String CR_BatchTrans_ReceiptID = null; public String CR_BatchTrans_ReceiptIDStartsWith = null; public String CR_BatchTrans_ReceiptIDEndsWith = null; public String CR_BatchTrans_ReceiptIDContains = null; public String CR_BatchTrans_ReceiptIDLike = null; public ArrayList CR_BatchTrans_ReceiptIDBetween = null; public ArrayList CR_BatchTrans_ReceiptIDIn = null; public String DocumentTypeID = null; public String DocumentTypeIDStartsWith = null; public String DocumentTypeIDEndsWith = null; public String DocumentTypeIDContains = null; public String DocumentTypeIDLike = null; public ArrayList DocumentTypeIDBetween = null; public ArrayList DocumentTypeIDIn = null; public Date LastSavedDateTime = null; public Date LastSavedDateTimeGreaterThanOrEqualTo = null; public Date LastSavedDateTimeGreaterThan = null; public Date LastSavedDateTimeLessThan = null; public Date LastSavedDateTimeLessThanOrEqualTo = null; public Date LastSavedDateTimeNotEqualTo = null; public ArrayList LastSavedDateTimeBetween = null; public ArrayList LastSavedDateTimeIn = null; public String LastSavedByStaffID = null; public String LastSavedByStaffIDStartsWith = null; public String LastSavedByStaffIDEndsWith = null; public String LastSavedByStaffIDContains = null; public String LastSavedByStaffIDLike = null; public ArrayList LastSavedByStaffIDBetween = null; public ArrayList LastSavedByStaffIDIn = null; public ArrayList FileBinary = null; public String Description = null; public String DescriptionStartsWith = null; public String DescriptionEndsWith = null; public String DescriptionContains = null; public String DescriptionLike = null; public ArrayList DescriptionBetween = null; public ArrayList DescriptionIn = null; public String PhysicalFileName = null; public String PhysicalFileNameStartsWith = null; public String PhysicalFileNameEndsWith = null; public String PhysicalFileNameContains = null; public String PhysicalFileNameLike = null; public ArrayList PhysicalFileNameBetween = null; public ArrayList PhysicalFileNameIn = null; public Integer ItemNo = null; public Integer ItemNoGreaterThanOrEqualTo = null; public Integer ItemNoGreaterThan = null; public Integer ItemNoLessThan = null; public Integer ItemNoLessThanOrEqualTo = null; public Integer ItemNoNotEqualTo = null; public ArrayList ItemNoBetween = null; public ArrayList ItemNoIn = null; public String getRecID() { return RecID; } public CR_BatchTransDocumentsQuery setRecID(String value) { this.RecID = value; return this; } public String getRecIDStartsWith() { return RecIDStartsWith; } public CR_BatchTransDocumentsQuery setRecIDStartsWith(String value) { this.RecIDStartsWith = value; return this; } public String getRecIDEndsWith() { return RecIDEndsWith; } public CR_BatchTransDocumentsQuery setRecIDEndsWith(String value) { this.RecIDEndsWith = value; return this; } public String getRecIDContains() { return RecIDContains; } public CR_BatchTransDocumentsQuery setRecIDContains(String value) { this.RecIDContains = value; return this; } public String getRecIDLike() { return RecIDLike; } public CR_BatchTransDocumentsQuery setRecIDLike(String value) { this.RecIDLike = value; return this; } public ArrayList getRecIDBetween() { return RecIDBetween; } public CR_BatchTransDocumentsQuery setRecIDBetween(ArrayList value) { this.RecIDBetween = value; return this; } public ArrayList getRecIDIn() { return RecIDIn; } public CR_BatchTransDocumentsQuery setRecIDIn(ArrayList value) { this.RecIDIn = value; return this; } public String getCrBatchTransReceiptID() { return CR_BatchTrans_ReceiptID; } public CR_BatchTransDocumentsQuery setCrBatchTransReceiptID(String value) { this.CR_BatchTrans_ReceiptID = value; return this; } public String getCrBatchTransReceiptIDStartsWith() { return CR_BatchTrans_ReceiptIDStartsWith; } public CR_BatchTransDocumentsQuery setCrBatchTransReceiptIDStartsWith(String value) { this.CR_BatchTrans_ReceiptIDStartsWith = value; return this; } public String getCrBatchTransReceiptIDEndsWith() { return CR_BatchTrans_ReceiptIDEndsWith; } public CR_BatchTransDocumentsQuery setCrBatchTransReceiptIDEndsWith(String value) { this.CR_BatchTrans_ReceiptIDEndsWith = value; return this; } public String getCrBatchTransReceiptIDContains() { return CR_BatchTrans_ReceiptIDContains; } public CR_BatchTransDocumentsQuery setCrBatchTransReceiptIDContains(String value) { this.CR_BatchTrans_ReceiptIDContains = value; return this; } public String getCrBatchTransReceiptIDLike() { return CR_BatchTrans_ReceiptIDLike; } public CR_BatchTransDocumentsQuery setCrBatchTransReceiptIDLike(String value) { this.CR_BatchTrans_ReceiptIDLike = value; return this; } public ArrayList getCrBatchTransReceiptIDBetween() { return CR_BatchTrans_ReceiptIDBetween; } public CR_BatchTransDocumentsQuery setCrBatchTransReceiptIDBetween(ArrayList value) { this.CR_BatchTrans_ReceiptIDBetween = value; return this; } public ArrayList getCrBatchTransReceiptIDIn() { return CR_BatchTrans_ReceiptIDIn; } public CR_BatchTransDocumentsQuery setCrBatchTransReceiptIDIn(ArrayList value) { this.CR_BatchTrans_ReceiptIDIn = value; return this; } public String getDocumentTypeID() { return DocumentTypeID; } public CR_BatchTransDocumentsQuery setDocumentTypeID(String value) { this.DocumentTypeID = value; return this; } public String getDocumentTypeIDStartsWith() { return DocumentTypeIDStartsWith; } public CR_BatchTransDocumentsQuery setDocumentTypeIDStartsWith(String value) { this.DocumentTypeIDStartsWith = value; return this; } public String getDocumentTypeIDEndsWith() { return DocumentTypeIDEndsWith; } public CR_BatchTransDocumentsQuery setDocumentTypeIDEndsWith(String value) { this.DocumentTypeIDEndsWith = value; return this; } public String getDocumentTypeIDContains() { return DocumentTypeIDContains; } public CR_BatchTransDocumentsQuery setDocumentTypeIDContains(String value) { this.DocumentTypeIDContains = value; return this; } public String getDocumentTypeIDLike() { return DocumentTypeIDLike; } public CR_BatchTransDocumentsQuery setDocumentTypeIDLike(String value) { this.DocumentTypeIDLike = value; return this; } public ArrayList getDocumentTypeIDBetween() { return DocumentTypeIDBetween; } public CR_BatchTransDocumentsQuery setDocumentTypeIDBetween(ArrayList value) { this.DocumentTypeIDBetween = value; return this; } public ArrayList getDocumentTypeIDIn() { return DocumentTypeIDIn; } public CR_BatchTransDocumentsQuery setDocumentTypeIDIn(ArrayList value) { this.DocumentTypeIDIn = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public CR_BatchTransDocumentsQuery setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getLastSavedDateTimeGreaterThanOrEqualTo() { return LastSavedDateTimeGreaterThanOrEqualTo; } public CR_BatchTransDocumentsQuery setLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.LastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeGreaterThan() { return LastSavedDateTimeGreaterThan; } public CR_BatchTransDocumentsQuery setLastSavedDateTimeGreaterThan(Date value) { this.LastSavedDateTimeGreaterThan = value; return this; } public Date getLastSavedDateTimeLessThan() { return LastSavedDateTimeLessThan; } public CR_BatchTransDocumentsQuery setLastSavedDateTimeLessThan(Date value) { this.LastSavedDateTimeLessThan = value; return this; } public Date getLastSavedDateTimeLessThanOrEqualTo() { return LastSavedDateTimeLessThanOrEqualTo; } public CR_BatchTransDocumentsQuery setLastSavedDateTimeLessThanOrEqualTo(Date value) { this.LastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeNotEqualTo() { return LastSavedDateTimeNotEqualTo; } public CR_BatchTransDocumentsQuery setLastSavedDateTimeNotEqualTo(Date value) { this.LastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getLastSavedDateTimeBetween() { return LastSavedDateTimeBetween; } public CR_BatchTransDocumentsQuery setLastSavedDateTimeBetween(ArrayList value) { this.LastSavedDateTimeBetween = value; return this; } public ArrayList getLastSavedDateTimeIn() { return LastSavedDateTimeIn; } public CR_BatchTransDocumentsQuery setLastSavedDateTimeIn(ArrayList value) { this.LastSavedDateTimeIn = value; return this; } public String getLastSavedByStaffID() { return LastSavedByStaffID; } public CR_BatchTransDocumentsQuery setLastSavedByStaffID(String value) { this.LastSavedByStaffID = value; return this; } public String getLastSavedByStaffIDStartsWith() { return LastSavedByStaffIDStartsWith; } public CR_BatchTransDocumentsQuery setLastSavedByStaffIDStartsWith(String value) { this.LastSavedByStaffIDStartsWith = value; return this; } public String getLastSavedByStaffIDEndsWith() { return LastSavedByStaffIDEndsWith; } public CR_BatchTransDocumentsQuery setLastSavedByStaffIDEndsWith(String value) { this.LastSavedByStaffIDEndsWith = value; return this; } public String getLastSavedByStaffIDContains() { return LastSavedByStaffIDContains; } public CR_BatchTransDocumentsQuery setLastSavedByStaffIDContains(String value) { this.LastSavedByStaffIDContains = value; return this; } public String getLastSavedByStaffIDLike() { return LastSavedByStaffIDLike; } public CR_BatchTransDocumentsQuery setLastSavedByStaffIDLike(String value) { this.LastSavedByStaffIDLike = value; return this; } public ArrayList getLastSavedByStaffIDBetween() { return LastSavedByStaffIDBetween; } public CR_BatchTransDocumentsQuery setLastSavedByStaffIDBetween(ArrayList value) { this.LastSavedByStaffIDBetween = value; return this; } public ArrayList getLastSavedByStaffIDIn() { return LastSavedByStaffIDIn; } public CR_BatchTransDocumentsQuery setLastSavedByStaffIDIn(ArrayList value) { this.LastSavedByStaffIDIn = value; return this; } public ArrayList getFileBinary() { return FileBinary; } public CR_BatchTransDocumentsQuery setFileBinary(ArrayList value) { this.FileBinary = value; return this; } public String getDescription() { return Description; } public CR_BatchTransDocumentsQuery setDescription(String value) { this.Description = value; return this; } public String getDescriptionStartsWith() { return DescriptionStartsWith; } public CR_BatchTransDocumentsQuery setDescriptionStartsWith(String value) { this.DescriptionStartsWith = value; return this; } public String getDescriptionEndsWith() { return DescriptionEndsWith; } public CR_BatchTransDocumentsQuery setDescriptionEndsWith(String value) { this.DescriptionEndsWith = value; return this; } public String getDescriptionContains() { return DescriptionContains; } public CR_BatchTransDocumentsQuery setDescriptionContains(String value) { this.DescriptionContains = value; return this; } public String getDescriptionLike() { return DescriptionLike; } public CR_BatchTransDocumentsQuery setDescriptionLike(String value) { this.DescriptionLike = value; return this; } public ArrayList getDescriptionBetween() { return DescriptionBetween; } public CR_BatchTransDocumentsQuery setDescriptionBetween(ArrayList value) { this.DescriptionBetween = value; return this; } public ArrayList getDescriptionIn() { return DescriptionIn; } public CR_BatchTransDocumentsQuery setDescriptionIn(ArrayList value) { this.DescriptionIn = value; return this; } public String getPhysicalFileName() { return PhysicalFileName; } public CR_BatchTransDocumentsQuery setPhysicalFileName(String value) { this.PhysicalFileName = value; return this; } public String getPhysicalFileNameStartsWith() { return PhysicalFileNameStartsWith; } public CR_BatchTransDocumentsQuery setPhysicalFileNameStartsWith(String value) { this.PhysicalFileNameStartsWith = value; return this; } public String getPhysicalFileNameEndsWith() { return PhysicalFileNameEndsWith; } public CR_BatchTransDocumentsQuery setPhysicalFileNameEndsWith(String value) { this.PhysicalFileNameEndsWith = value; return this; } public String getPhysicalFileNameContains() { return PhysicalFileNameContains; } public CR_BatchTransDocumentsQuery setPhysicalFileNameContains(String value) { this.PhysicalFileNameContains = value; return this; } public String getPhysicalFileNameLike() { return PhysicalFileNameLike; } public CR_BatchTransDocumentsQuery setPhysicalFileNameLike(String value) { this.PhysicalFileNameLike = value; return this; } public ArrayList getPhysicalFileNameBetween() { return PhysicalFileNameBetween; } public CR_BatchTransDocumentsQuery setPhysicalFileNameBetween(ArrayList value) { this.PhysicalFileNameBetween = value; return this; } public ArrayList getPhysicalFileNameIn() { return PhysicalFileNameIn; } public CR_BatchTransDocumentsQuery setPhysicalFileNameIn(ArrayList value) { this.PhysicalFileNameIn = value; return this; } public Integer getItemNo() { return ItemNo; } public CR_BatchTransDocumentsQuery setItemNo(Integer value) { this.ItemNo = value; return this; } public Integer getItemNoGreaterThanOrEqualTo() { return ItemNoGreaterThanOrEqualTo; } public CR_BatchTransDocumentsQuery setItemNoGreaterThanOrEqualTo(Integer value) { this.ItemNoGreaterThanOrEqualTo = value; return this; } public Integer getItemNoGreaterThan() { return ItemNoGreaterThan; } public CR_BatchTransDocumentsQuery setItemNoGreaterThan(Integer value) { this.ItemNoGreaterThan = value; return this; } public Integer getItemNoLessThan() { return ItemNoLessThan; } public CR_BatchTransDocumentsQuery setItemNoLessThan(Integer value) { this.ItemNoLessThan = value; return this; } public Integer getItemNoLessThanOrEqualTo() { return ItemNoLessThanOrEqualTo; } public CR_BatchTransDocumentsQuery setItemNoLessThanOrEqualTo(Integer value) { this.ItemNoLessThanOrEqualTo = value; return this; } public Integer getItemNoNotEqualTo() { return ItemNoNotEqualTo; } public CR_BatchTransDocumentsQuery setItemNoNotEqualTo(Integer value) { this.ItemNoNotEqualTo = value; return this; } public ArrayList getItemNoBetween() { return ItemNoBetween; } public CR_BatchTransDocumentsQuery setItemNoBetween(ArrayList value) { this.ItemNoBetween = value; return this; } public ArrayList getItemNoIn() { return ItemNoIn; } public CR_BatchTransDocumentsQuery setItemNoIn(ArrayList value) { this.ItemNoIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class CR_BatchTransNotesQuery extends QueryDb implements IReturn> { public String RecID = null; public String RecIDStartsWith = null; public String RecIDEndsWith = null; public String RecIDContains = null; public String RecIDLike = null; public ArrayList RecIDBetween = null; public ArrayList RecIDIn = null; public String CR_BatchTrans_ReceiptID = null; public String CR_BatchTrans_ReceiptIDStartsWith = null; public String CR_BatchTrans_ReceiptIDEndsWith = null; public String CR_BatchTrans_ReceiptIDContains = null; public String CR_BatchTrans_ReceiptIDLike = null; public ArrayList CR_BatchTrans_ReceiptIDBetween = null; public ArrayList CR_BatchTrans_ReceiptIDIn = null; public String NoteTypeID = null; public String NoteTypeIDStartsWith = null; public String NoteTypeIDEndsWith = null; public String NoteTypeIDContains = null; public String NoteTypeIDLike = null; public ArrayList NoteTypeIDBetween = null; public ArrayList NoteTypeIDIn = null; public Date LastSavedDateTime = null; public Date LastSavedDateTimeGreaterThanOrEqualTo = null; public Date LastSavedDateTimeGreaterThan = null; public Date LastSavedDateTimeLessThan = null; public Date LastSavedDateTimeLessThanOrEqualTo = null; public Date LastSavedDateTimeNotEqualTo = null; public ArrayList LastSavedDateTimeBetween = null; public ArrayList LastSavedDateTimeIn = null; public String LastSavedByStaffID = null; public String LastSavedByStaffIDStartsWith = null; public String LastSavedByStaffIDEndsWith = null; public String LastSavedByStaffIDContains = null; public String LastSavedByStaffIDLike = null; public ArrayList LastSavedByStaffIDBetween = null; public ArrayList LastSavedByStaffIDIn = null; public String NoteText = null; public String NoteTextStartsWith = null; public String NoteTextEndsWith = null; public String NoteTextContains = null; public String NoteTextLike = null; public ArrayList NoteTextBetween = null; public ArrayList NoteTextIn = null; public Integer ItemNo = null; public Integer ItemNoGreaterThanOrEqualTo = null; public Integer ItemNoGreaterThan = null; public Integer ItemNoLessThan = null; public Integer ItemNoLessThanOrEqualTo = null; public Integer ItemNoNotEqualTo = null; public ArrayList ItemNoBetween = null; public ArrayList ItemNoIn = null; public String getRecID() { return RecID; } public CR_BatchTransNotesQuery setRecID(String value) { this.RecID = value; return this; } public String getRecIDStartsWith() { return RecIDStartsWith; } public CR_BatchTransNotesQuery setRecIDStartsWith(String value) { this.RecIDStartsWith = value; return this; } public String getRecIDEndsWith() { return RecIDEndsWith; } public CR_BatchTransNotesQuery setRecIDEndsWith(String value) { this.RecIDEndsWith = value; return this; } public String getRecIDContains() { return RecIDContains; } public CR_BatchTransNotesQuery setRecIDContains(String value) { this.RecIDContains = value; return this; } public String getRecIDLike() { return RecIDLike; } public CR_BatchTransNotesQuery setRecIDLike(String value) { this.RecIDLike = value; return this; } public ArrayList getRecIDBetween() { return RecIDBetween; } public CR_BatchTransNotesQuery setRecIDBetween(ArrayList value) { this.RecIDBetween = value; return this; } public ArrayList getRecIDIn() { return RecIDIn; } public CR_BatchTransNotesQuery setRecIDIn(ArrayList value) { this.RecIDIn = value; return this; } public String getCrBatchTransReceiptID() { return CR_BatchTrans_ReceiptID; } public CR_BatchTransNotesQuery setCrBatchTransReceiptID(String value) { this.CR_BatchTrans_ReceiptID = value; return this; } public String getCrBatchTransReceiptIDStartsWith() { return CR_BatchTrans_ReceiptIDStartsWith; } public CR_BatchTransNotesQuery setCrBatchTransReceiptIDStartsWith(String value) { this.CR_BatchTrans_ReceiptIDStartsWith = value; return this; } public String getCrBatchTransReceiptIDEndsWith() { return CR_BatchTrans_ReceiptIDEndsWith; } public CR_BatchTransNotesQuery setCrBatchTransReceiptIDEndsWith(String value) { this.CR_BatchTrans_ReceiptIDEndsWith = value; return this; } public String getCrBatchTransReceiptIDContains() { return CR_BatchTrans_ReceiptIDContains; } public CR_BatchTransNotesQuery setCrBatchTransReceiptIDContains(String value) { this.CR_BatchTrans_ReceiptIDContains = value; return this; } public String getCrBatchTransReceiptIDLike() { return CR_BatchTrans_ReceiptIDLike; } public CR_BatchTransNotesQuery setCrBatchTransReceiptIDLike(String value) { this.CR_BatchTrans_ReceiptIDLike = value; return this; } public ArrayList getCrBatchTransReceiptIDBetween() { return CR_BatchTrans_ReceiptIDBetween; } public CR_BatchTransNotesQuery setCrBatchTransReceiptIDBetween(ArrayList value) { this.CR_BatchTrans_ReceiptIDBetween = value; return this; } public ArrayList getCrBatchTransReceiptIDIn() { return CR_BatchTrans_ReceiptIDIn; } public CR_BatchTransNotesQuery setCrBatchTransReceiptIDIn(ArrayList value) { this.CR_BatchTrans_ReceiptIDIn = value; return this; } public String getNoteTypeID() { return NoteTypeID; } public CR_BatchTransNotesQuery setNoteTypeID(String value) { this.NoteTypeID = value; return this; } public String getNoteTypeIDStartsWith() { return NoteTypeIDStartsWith; } public CR_BatchTransNotesQuery setNoteTypeIDStartsWith(String value) { this.NoteTypeIDStartsWith = value; return this; } public String getNoteTypeIDEndsWith() { return NoteTypeIDEndsWith; } public CR_BatchTransNotesQuery setNoteTypeIDEndsWith(String value) { this.NoteTypeIDEndsWith = value; return this; } public String getNoteTypeIDContains() { return NoteTypeIDContains; } public CR_BatchTransNotesQuery setNoteTypeIDContains(String value) { this.NoteTypeIDContains = value; return this; } public String getNoteTypeIDLike() { return NoteTypeIDLike; } public CR_BatchTransNotesQuery setNoteTypeIDLike(String value) { this.NoteTypeIDLike = value; return this; } public ArrayList getNoteTypeIDBetween() { return NoteTypeIDBetween; } public CR_BatchTransNotesQuery setNoteTypeIDBetween(ArrayList value) { this.NoteTypeIDBetween = value; return this; } public ArrayList getNoteTypeIDIn() { return NoteTypeIDIn; } public CR_BatchTransNotesQuery setNoteTypeIDIn(ArrayList value) { this.NoteTypeIDIn = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public CR_BatchTransNotesQuery setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getLastSavedDateTimeGreaterThanOrEqualTo() { return LastSavedDateTimeGreaterThanOrEqualTo; } public CR_BatchTransNotesQuery setLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.LastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeGreaterThan() { return LastSavedDateTimeGreaterThan; } public CR_BatchTransNotesQuery setLastSavedDateTimeGreaterThan(Date value) { this.LastSavedDateTimeGreaterThan = value; return this; } public Date getLastSavedDateTimeLessThan() { return LastSavedDateTimeLessThan; } public CR_BatchTransNotesQuery setLastSavedDateTimeLessThan(Date value) { this.LastSavedDateTimeLessThan = value; return this; } public Date getLastSavedDateTimeLessThanOrEqualTo() { return LastSavedDateTimeLessThanOrEqualTo; } public CR_BatchTransNotesQuery setLastSavedDateTimeLessThanOrEqualTo(Date value) { this.LastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeNotEqualTo() { return LastSavedDateTimeNotEqualTo; } public CR_BatchTransNotesQuery setLastSavedDateTimeNotEqualTo(Date value) { this.LastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getLastSavedDateTimeBetween() { return LastSavedDateTimeBetween; } public CR_BatchTransNotesQuery setLastSavedDateTimeBetween(ArrayList value) { this.LastSavedDateTimeBetween = value; return this; } public ArrayList getLastSavedDateTimeIn() { return LastSavedDateTimeIn; } public CR_BatchTransNotesQuery setLastSavedDateTimeIn(ArrayList value) { this.LastSavedDateTimeIn = value; return this; } public String getLastSavedByStaffID() { return LastSavedByStaffID; } public CR_BatchTransNotesQuery setLastSavedByStaffID(String value) { this.LastSavedByStaffID = value; return this; } public String getLastSavedByStaffIDStartsWith() { return LastSavedByStaffIDStartsWith; } public CR_BatchTransNotesQuery setLastSavedByStaffIDStartsWith(String value) { this.LastSavedByStaffIDStartsWith = value; return this; } public String getLastSavedByStaffIDEndsWith() { return LastSavedByStaffIDEndsWith; } public CR_BatchTransNotesQuery setLastSavedByStaffIDEndsWith(String value) { this.LastSavedByStaffIDEndsWith = value; return this; } public String getLastSavedByStaffIDContains() { return LastSavedByStaffIDContains; } public CR_BatchTransNotesQuery setLastSavedByStaffIDContains(String value) { this.LastSavedByStaffIDContains = value; return this; } public String getLastSavedByStaffIDLike() { return LastSavedByStaffIDLike; } public CR_BatchTransNotesQuery setLastSavedByStaffIDLike(String value) { this.LastSavedByStaffIDLike = value; return this; } public ArrayList getLastSavedByStaffIDBetween() { return LastSavedByStaffIDBetween; } public CR_BatchTransNotesQuery setLastSavedByStaffIDBetween(ArrayList value) { this.LastSavedByStaffIDBetween = value; return this; } public ArrayList getLastSavedByStaffIDIn() { return LastSavedByStaffIDIn; } public CR_BatchTransNotesQuery setLastSavedByStaffIDIn(ArrayList value) { this.LastSavedByStaffIDIn = value; return this; } public String getNoteText() { return NoteText; } public CR_BatchTransNotesQuery setNoteText(String value) { this.NoteText = value; return this; } public String getNoteTextStartsWith() { return NoteTextStartsWith; } public CR_BatchTransNotesQuery setNoteTextStartsWith(String value) { this.NoteTextStartsWith = value; return this; } public String getNoteTextEndsWith() { return NoteTextEndsWith; } public CR_BatchTransNotesQuery setNoteTextEndsWith(String value) { this.NoteTextEndsWith = value; return this; } public String getNoteTextContains() { return NoteTextContains; } public CR_BatchTransNotesQuery setNoteTextContains(String value) { this.NoteTextContains = value; return this; } public String getNoteTextLike() { return NoteTextLike; } public CR_BatchTransNotesQuery setNoteTextLike(String value) { this.NoteTextLike = value; return this; } public ArrayList getNoteTextBetween() { return NoteTextBetween; } public CR_BatchTransNotesQuery setNoteTextBetween(ArrayList value) { this.NoteTextBetween = value; return this; } public ArrayList getNoteTextIn() { return NoteTextIn; } public CR_BatchTransNotesQuery setNoteTextIn(ArrayList value) { this.NoteTextIn = value; return this; } public Integer getItemNo() { return ItemNo; } public CR_BatchTransNotesQuery setItemNo(Integer value) { this.ItemNo = value; return this; } public Integer getItemNoGreaterThanOrEqualTo() { return ItemNoGreaterThanOrEqualTo; } public CR_BatchTransNotesQuery setItemNoGreaterThanOrEqualTo(Integer value) { this.ItemNoGreaterThanOrEqualTo = value; return this; } public Integer getItemNoGreaterThan() { return ItemNoGreaterThan; } public CR_BatchTransNotesQuery setItemNoGreaterThan(Integer value) { this.ItemNoGreaterThan = value; return this; } public Integer getItemNoLessThan() { return ItemNoLessThan; } public CR_BatchTransNotesQuery setItemNoLessThan(Integer value) { this.ItemNoLessThan = value; return this; } public Integer getItemNoLessThanOrEqualTo() { return ItemNoLessThanOrEqualTo; } public CR_BatchTransNotesQuery setItemNoLessThanOrEqualTo(Integer value) { this.ItemNoLessThanOrEqualTo = value; return this; } public Integer getItemNoNotEqualTo() { return ItemNoNotEqualTo; } public CR_BatchTransNotesQuery setItemNoNotEqualTo(Integer value) { this.ItemNoNotEqualTo = value; return this; } public ArrayList getItemNoBetween() { return ItemNoBetween; } public CR_BatchTransNotesQuery setItemNoBetween(ArrayList value) { this.ItemNoBetween = value; return this; } public ArrayList getItemNoIn() { return ItemNoIn; } public CR_BatchTransNotesQuery setItemNoIn(ArrayList value) { this.ItemNoIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class CR_ClassificationQuery extends QueryDb implements IReturn> { public String CreditorClassificationID = null; public String CreditorClassificationIDStartsWith = null; public String CreditorClassificationIDEndsWith = null; public String CreditorClassificationIDContains = null; public String CreditorClassificationIDLike = null; public ArrayList CreditorClassificationIDBetween = null; public ArrayList CreditorClassificationIDIn = null; public Date LastSavedDateTime = null; public Date LastSavedDateTimeGreaterThanOrEqualTo = null; public Date LastSavedDateTimeGreaterThan = null; public Date LastSavedDateTimeLessThan = null; public Date LastSavedDateTimeLessThanOrEqualTo = null; public Date LastSavedDateTimeNotEqualTo = null; public ArrayList LastSavedDateTimeBetween = null; public ArrayList LastSavedDateTimeIn = null; public String Description = null; public String DescriptionStartsWith = null; public String DescriptionEndsWith = null; public String DescriptionContains = null; public String DescriptionLike = null; public ArrayList DescriptionBetween = null; public ArrayList DescriptionIn = null; public String LedgerIDCreditorControl = null; public String LedgerIDCreditorControlStartsWith = null; public String LedgerIDCreditorControlEndsWith = null; public String LedgerIDCreditorControlContains = null; public String LedgerIDCreditorControlLike = null; public ArrayList LedgerIDCreditorControlBetween = null; public ArrayList LedgerIDCreditorControlIn = null; public String LedgerIDCreditorPurchases = null; public String LedgerIDCreditorPurchasesStartsWith = null; public String LedgerIDCreditorPurchasesEndsWith = null; public String LedgerIDCreditorPurchasesContains = null; public String LedgerIDCreditorPurchasesLike = null; public ArrayList LedgerIDCreditorPurchasesBetween = null; public ArrayList LedgerIDCreditorPurchasesIn = null; public String LedgerIDCreditorDiscounts = null; public String LedgerIDCreditorDiscountsStartsWith = null; public String LedgerIDCreditorDiscountsEndsWith = null; public String LedgerIDCreditorDiscountsContains = null; public String LedgerIDCreditorDiscountsLike = null; public ArrayList LedgerIDCreditorDiscountsBetween = null; public ArrayList LedgerIDCreditorDiscountsIn = null; public String LedgerIDCreditorSourcedPayments = null; public String LedgerIDCreditorSourcedPaymentsStartsWith = null; public String LedgerIDCreditorSourcedPaymentsEndsWith = null; public String LedgerIDCreditorSourcedPaymentsContains = null; public String LedgerIDCreditorSourcedPaymentsLike = null; public ArrayList LedgerIDCreditorSourcedPaymentsBetween = null; public ArrayList LedgerIDCreditorSourcedPaymentsIn = null; public String LedgerIDCreditorSourcedDebitAdjustment = null; public String LedgerIDCreditorSourcedDebitAdjustmentStartsWith = null; public String LedgerIDCreditorSourcedDebitAdjustmentEndsWith = null; public String LedgerIDCreditorSourcedDebitAdjustmentContains = null; public String LedgerIDCreditorSourcedDebitAdjustmentLike = null; public ArrayList LedgerIDCreditorSourcedDebitAdjustmentBetween = null; public ArrayList LedgerIDCreditorSourcedDebitAdjustmentIn = null; public String LedgerIDCreditorSourcedPurchase = null; public String LedgerIDCreditorSourcedPurchaseStartsWith = null; public String LedgerIDCreditorSourcedPurchaseEndsWith = null; public String LedgerIDCreditorSourcedPurchaseContains = null; public String LedgerIDCreditorSourcedPurchaseLike = null; public ArrayList LedgerIDCreditorSourcedPurchaseBetween = null; public ArrayList LedgerIDCreditorSourcedPurchaseIn = null; public String LedgerIDCreditorSourcedCreditAdjustment = null; public String LedgerIDCreditorSourcedCreditAdjustmentStartsWith = null; public String LedgerIDCreditorSourcedCreditAdjustmentEndsWith = null; public String LedgerIDCreditorSourcedCreditAdjustmentContains = null; public String LedgerIDCreditorSourcedCreditAdjustmentLike = null; public ArrayList LedgerIDCreditorSourcedCreditAdjustmentBetween = null; public ArrayList LedgerIDCreditorSourcedCreditAdjustmentIn = null; public String LedgerIDCreditorFreight = null; public String LedgerIDCreditorFreightStartsWith = null; public String LedgerIDCreditorFreightEndsWith = null; public String LedgerIDCreditorFreightContains = null; public String LedgerIDCreditorFreightLike = null; public ArrayList LedgerIDCreditorFreightBetween = null; public ArrayList LedgerIDCreditorFreightIn = null; public String LedgerIDCreditorInsurance = null; public String LedgerIDCreditorInsuranceStartsWith = null; public String LedgerIDCreditorInsuranceEndsWith = null; public String LedgerIDCreditorInsuranceContains = null; public String LedgerIDCreditorInsuranceLike = null; public ArrayList LedgerIDCreditorInsuranceBetween = null; public ArrayList LedgerIDCreditorInsuranceIn = null; public String LedgerIDCreditorDuty = null; public String LedgerIDCreditorDutyStartsWith = null; public String LedgerIDCreditorDutyEndsWith = null; public String LedgerIDCreditorDutyContains = null; public String LedgerIDCreditorDutyLike = null; public ArrayList LedgerIDCreditorDutyBetween = null; public ArrayList LedgerIDCreditorDutyIn = null; public String LedgerIDCreditorRealisedGainLoss = null; public String LedgerIDCreditorRealisedGainLossStartsWith = null; public String LedgerIDCreditorRealisedGainLossEndsWith = null; public String LedgerIDCreditorRealisedGainLossContains = null; public String LedgerIDCreditorRealisedGainLossLike = null; public ArrayList LedgerIDCreditorRealisedGainLossBetween = null; public ArrayList LedgerIDCreditorRealisedGainLossIn = null; public String LedgerIDCreditorUnRealisedGainLoss = null; public String LedgerIDCreditorUnRealisedGainLossStartsWith = null; public String LedgerIDCreditorUnRealisedGainLossEndsWith = null; public String LedgerIDCreditorUnRealisedGainLossContains = null; public String LedgerIDCreditorUnRealisedGainLossLike = null; public ArrayList LedgerIDCreditorUnRealisedGainLossBetween = null; public ArrayList LedgerIDCreditorUnRealisedGainLossIn = null; public Short TermsDays = null; public Short TermsDaysGreaterThanOrEqualTo = null; public Short TermsDaysGreaterThan = null; public Short TermsDaysLessThan = null; public Short TermsDaysLessThanOrEqualTo = null; public Short TermsDaysNotEqualTo = null; public ArrayList TermsDaysBetween = null; public ArrayList TermsDaysIn = null; public Short TermsType = null; public Short TermsTypeGreaterThanOrEqualTo = null; public Short TermsTypeGreaterThan = null; public Short TermsTypeLessThan = null; public Short TermsTypeLessThanOrEqualTo = null; public Short TermsTypeNotEqualTo = null; public ArrayList TermsTypeBetween = null; public ArrayList TermsTypeIn = null; public String PO_Workflows_RecID = null; public String PO_Workflows_RecIDStartsWith = null; public String PO_Workflows_RecIDEndsWith = null; public String PO_Workflows_RecIDContains = null; public String PO_Workflows_RecIDLike = null; public ArrayList PO_Workflows_RecIDBetween = null; public ArrayList PO_Workflows_RecIDIn = null; public Boolean IsDefault = null; public String getCreditorClassificationID() { return CreditorClassificationID; } public CR_ClassificationQuery setCreditorClassificationID(String value) { this.CreditorClassificationID = value; return this; } public String getCreditorClassificationIDStartsWith() { return CreditorClassificationIDStartsWith; } public CR_ClassificationQuery setCreditorClassificationIDStartsWith(String value) { this.CreditorClassificationIDStartsWith = value; return this; } public String getCreditorClassificationIDEndsWith() { return CreditorClassificationIDEndsWith; } public CR_ClassificationQuery setCreditorClassificationIDEndsWith(String value) { this.CreditorClassificationIDEndsWith = value; return this; } public String getCreditorClassificationIDContains() { return CreditorClassificationIDContains; } public CR_ClassificationQuery setCreditorClassificationIDContains(String value) { this.CreditorClassificationIDContains = value; return this; } public String getCreditorClassificationIDLike() { return CreditorClassificationIDLike; } public CR_ClassificationQuery setCreditorClassificationIDLike(String value) { this.CreditorClassificationIDLike = value; return this; } public ArrayList getCreditorClassificationIDBetween() { return CreditorClassificationIDBetween; } public CR_ClassificationQuery setCreditorClassificationIDBetween(ArrayList value) { this.CreditorClassificationIDBetween = value; return this; } public ArrayList getCreditorClassificationIDIn() { return CreditorClassificationIDIn; } public CR_ClassificationQuery setCreditorClassificationIDIn(ArrayList value) { this.CreditorClassificationIDIn = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public CR_ClassificationQuery setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getLastSavedDateTimeGreaterThanOrEqualTo() { return LastSavedDateTimeGreaterThanOrEqualTo; } public CR_ClassificationQuery setLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.LastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeGreaterThan() { return LastSavedDateTimeGreaterThan; } public CR_ClassificationQuery setLastSavedDateTimeGreaterThan(Date value) { this.LastSavedDateTimeGreaterThan = value; return this; } public Date getLastSavedDateTimeLessThan() { return LastSavedDateTimeLessThan; } public CR_ClassificationQuery setLastSavedDateTimeLessThan(Date value) { this.LastSavedDateTimeLessThan = value; return this; } public Date getLastSavedDateTimeLessThanOrEqualTo() { return LastSavedDateTimeLessThanOrEqualTo; } public CR_ClassificationQuery setLastSavedDateTimeLessThanOrEqualTo(Date value) { this.LastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeNotEqualTo() { return LastSavedDateTimeNotEqualTo; } public CR_ClassificationQuery setLastSavedDateTimeNotEqualTo(Date value) { this.LastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getLastSavedDateTimeBetween() { return LastSavedDateTimeBetween; } public CR_ClassificationQuery setLastSavedDateTimeBetween(ArrayList value) { this.LastSavedDateTimeBetween = value; return this; } public ArrayList getLastSavedDateTimeIn() { return LastSavedDateTimeIn; } public CR_ClassificationQuery setLastSavedDateTimeIn(ArrayList value) { this.LastSavedDateTimeIn = value; return this; } public String getDescription() { return Description; } public CR_ClassificationQuery setDescription(String value) { this.Description = value; return this; } public String getDescriptionStartsWith() { return DescriptionStartsWith; } public CR_ClassificationQuery setDescriptionStartsWith(String value) { this.DescriptionStartsWith = value; return this; } public String getDescriptionEndsWith() { return DescriptionEndsWith; } public CR_ClassificationQuery setDescriptionEndsWith(String value) { this.DescriptionEndsWith = value; return this; } public String getDescriptionContains() { return DescriptionContains; } public CR_ClassificationQuery setDescriptionContains(String value) { this.DescriptionContains = value; return this; } public String getDescriptionLike() { return DescriptionLike; } public CR_ClassificationQuery setDescriptionLike(String value) { this.DescriptionLike = value; return this; } public ArrayList getDescriptionBetween() { return DescriptionBetween; } public CR_ClassificationQuery setDescriptionBetween(ArrayList value) { this.DescriptionBetween = value; return this; } public ArrayList getDescriptionIn() { return DescriptionIn; } public CR_ClassificationQuery setDescriptionIn(ArrayList value) { this.DescriptionIn = value; return this; } public String getLedgerIDCreditorControl() { return LedgerIDCreditorControl; } public CR_ClassificationQuery setLedgerIDCreditorControl(String value) { this.LedgerIDCreditorControl = value; return this; } public String getLedgerIDCreditorControlStartsWith() { return LedgerIDCreditorControlStartsWith; } public CR_ClassificationQuery setLedgerIDCreditorControlStartsWith(String value) { this.LedgerIDCreditorControlStartsWith = value; return this; } public String getLedgerIDCreditorControlEndsWith() { return LedgerIDCreditorControlEndsWith; } public CR_ClassificationQuery setLedgerIDCreditorControlEndsWith(String value) { this.LedgerIDCreditorControlEndsWith = value; return this; } public String getLedgerIDCreditorControlContains() { return LedgerIDCreditorControlContains; } public CR_ClassificationQuery setLedgerIDCreditorControlContains(String value) { this.LedgerIDCreditorControlContains = value; return this; } public String getLedgerIDCreditorControlLike() { return LedgerIDCreditorControlLike; } public CR_ClassificationQuery setLedgerIDCreditorControlLike(String value) { this.LedgerIDCreditorControlLike = value; return this; } public ArrayList getLedgerIDCreditorControlBetween() { return LedgerIDCreditorControlBetween; } public CR_ClassificationQuery setLedgerIDCreditorControlBetween(ArrayList value) { this.LedgerIDCreditorControlBetween = value; return this; } public ArrayList getLedgerIDCreditorControlIn() { return LedgerIDCreditorControlIn; } public CR_ClassificationQuery setLedgerIDCreditorControlIn(ArrayList value) { this.LedgerIDCreditorControlIn = value; return this; } public String getLedgerIDCreditorPurchases() { return LedgerIDCreditorPurchases; } public CR_ClassificationQuery setLedgerIDCreditorPurchases(String value) { this.LedgerIDCreditorPurchases = value; return this; } public String getLedgerIDCreditorPurchasesStartsWith() { return LedgerIDCreditorPurchasesStartsWith; } public CR_ClassificationQuery setLedgerIDCreditorPurchasesStartsWith(String value) { this.LedgerIDCreditorPurchasesStartsWith = value; return this; } public String getLedgerIDCreditorPurchasesEndsWith() { return LedgerIDCreditorPurchasesEndsWith; } public CR_ClassificationQuery setLedgerIDCreditorPurchasesEndsWith(String value) { this.LedgerIDCreditorPurchasesEndsWith = value; return this; } public String getLedgerIDCreditorPurchasesContains() { return LedgerIDCreditorPurchasesContains; } public CR_ClassificationQuery setLedgerIDCreditorPurchasesContains(String value) { this.LedgerIDCreditorPurchasesContains = value; return this; } public String getLedgerIDCreditorPurchasesLike() { return LedgerIDCreditorPurchasesLike; } public CR_ClassificationQuery setLedgerIDCreditorPurchasesLike(String value) { this.LedgerIDCreditorPurchasesLike = value; return this; } public ArrayList getLedgerIDCreditorPurchasesBetween() { return LedgerIDCreditorPurchasesBetween; } public CR_ClassificationQuery setLedgerIDCreditorPurchasesBetween(ArrayList value) { this.LedgerIDCreditorPurchasesBetween = value; return this; } public ArrayList getLedgerIDCreditorPurchasesIn() { return LedgerIDCreditorPurchasesIn; } public CR_ClassificationQuery setLedgerIDCreditorPurchasesIn(ArrayList value) { this.LedgerIDCreditorPurchasesIn = value; return this; } public String getLedgerIDCreditorDiscounts() { return LedgerIDCreditorDiscounts; } public CR_ClassificationQuery setLedgerIDCreditorDiscounts(String value) { this.LedgerIDCreditorDiscounts = value; return this; } public String getLedgerIDCreditorDiscountsStartsWith() { return LedgerIDCreditorDiscountsStartsWith; } public CR_ClassificationQuery setLedgerIDCreditorDiscountsStartsWith(String value) { this.LedgerIDCreditorDiscountsStartsWith = value; return this; } public String getLedgerIDCreditorDiscountsEndsWith() { return LedgerIDCreditorDiscountsEndsWith; } public CR_ClassificationQuery setLedgerIDCreditorDiscountsEndsWith(String value) { this.LedgerIDCreditorDiscountsEndsWith = value; return this; } public String getLedgerIDCreditorDiscountsContains() { return LedgerIDCreditorDiscountsContains; } public CR_ClassificationQuery setLedgerIDCreditorDiscountsContains(String value) { this.LedgerIDCreditorDiscountsContains = value; return this; } public String getLedgerIDCreditorDiscountsLike() { return LedgerIDCreditorDiscountsLike; } public CR_ClassificationQuery setLedgerIDCreditorDiscountsLike(String value) { this.LedgerIDCreditorDiscountsLike = value; return this; } public ArrayList getLedgerIDCreditorDiscountsBetween() { return LedgerIDCreditorDiscountsBetween; } public CR_ClassificationQuery setLedgerIDCreditorDiscountsBetween(ArrayList value) { this.LedgerIDCreditorDiscountsBetween = value; return this; } public ArrayList getLedgerIDCreditorDiscountsIn() { return LedgerIDCreditorDiscountsIn; } public CR_ClassificationQuery setLedgerIDCreditorDiscountsIn(ArrayList value) { this.LedgerIDCreditorDiscountsIn = value; return this; } public String getLedgerIDCreditorSourcedPayments() { return LedgerIDCreditorSourcedPayments; } public CR_ClassificationQuery setLedgerIDCreditorSourcedPayments(String value) { this.LedgerIDCreditorSourcedPayments = value; return this; } public String getLedgerIDCreditorSourcedPaymentsStartsWith() { return LedgerIDCreditorSourcedPaymentsStartsWith; } public CR_ClassificationQuery setLedgerIDCreditorSourcedPaymentsStartsWith(String value) { this.LedgerIDCreditorSourcedPaymentsStartsWith = value; return this; } public String getLedgerIDCreditorSourcedPaymentsEndsWith() { return LedgerIDCreditorSourcedPaymentsEndsWith; } public CR_ClassificationQuery setLedgerIDCreditorSourcedPaymentsEndsWith(String value) { this.LedgerIDCreditorSourcedPaymentsEndsWith = value; return this; } public String getLedgerIDCreditorSourcedPaymentsContains() { return LedgerIDCreditorSourcedPaymentsContains; } public CR_ClassificationQuery setLedgerIDCreditorSourcedPaymentsContains(String value) { this.LedgerIDCreditorSourcedPaymentsContains = value; return this; } public String getLedgerIDCreditorSourcedPaymentsLike() { return LedgerIDCreditorSourcedPaymentsLike; } public CR_ClassificationQuery setLedgerIDCreditorSourcedPaymentsLike(String value) { this.LedgerIDCreditorSourcedPaymentsLike = value; return this; } public ArrayList getLedgerIDCreditorSourcedPaymentsBetween() { return LedgerIDCreditorSourcedPaymentsBetween; } public CR_ClassificationQuery setLedgerIDCreditorSourcedPaymentsBetween(ArrayList value) { this.LedgerIDCreditorSourcedPaymentsBetween = value; return this; } public ArrayList getLedgerIDCreditorSourcedPaymentsIn() { return LedgerIDCreditorSourcedPaymentsIn; } public CR_ClassificationQuery setLedgerIDCreditorSourcedPaymentsIn(ArrayList value) { this.LedgerIDCreditorSourcedPaymentsIn = value; return this; } public String getLedgerIDCreditorSourcedDebitAdjustment() { return LedgerIDCreditorSourcedDebitAdjustment; } public CR_ClassificationQuery setLedgerIDCreditorSourcedDebitAdjustment(String value) { this.LedgerIDCreditorSourcedDebitAdjustment = value; return this; } public String getLedgerIDCreditorSourcedDebitAdjustmentStartsWith() { return LedgerIDCreditorSourcedDebitAdjustmentStartsWith; } public CR_ClassificationQuery setLedgerIDCreditorSourcedDebitAdjustmentStartsWith(String value) { this.LedgerIDCreditorSourcedDebitAdjustmentStartsWith = value; return this; } public String getLedgerIDCreditorSourcedDebitAdjustmentEndsWith() { return LedgerIDCreditorSourcedDebitAdjustmentEndsWith; } public CR_ClassificationQuery setLedgerIDCreditorSourcedDebitAdjustmentEndsWith(String value) { this.LedgerIDCreditorSourcedDebitAdjustmentEndsWith = value; return this; } public String getLedgerIDCreditorSourcedDebitAdjustmentContains() { return LedgerIDCreditorSourcedDebitAdjustmentContains; } public CR_ClassificationQuery setLedgerIDCreditorSourcedDebitAdjustmentContains(String value) { this.LedgerIDCreditorSourcedDebitAdjustmentContains = value; return this; } public String getLedgerIDCreditorSourcedDebitAdjustmentLike() { return LedgerIDCreditorSourcedDebitAdjustmentLike; } public CR_ClassificationQuery setLedgerIDCreditorSourcedDebitAdjustmentLike(String value) { this.LedgerIDCreditorSourcedDebitAdjustmentLike = value; return this; } public ArrayList getLedgerIDCreditorSourcedDebitAdjustmentBetween() { return LedgerIDCreditorSourcedDebitAdjustmentBetween; } public CR_ClassificationQuery setLedgerIDCreditorSourcedDebitAdjustmentBetween(ArrayList value) { this.LedgerIDCreditorSourcedDebitAdjustmentBetween = value; return this; } public ArrayList getLedgerIDCreditorSourcedDebitAdjustmentIn() { return LedgerIDCreditorSourcedDebitAdjustmentIn; } public CR_ClassificationQuery setLedgerIDCreditorSourcedDebitAdjustmentIn(ArrayList value) { this.LedgerIDCreditorSourcedDebitAdjustmentIn = value; return this; } public String getLedgerIDCreditorSourcedPurchase() { return LedgerIDCreditorSourcedPurchase; } public CR_ClassificationQuery setLedgerIDCreditorSourcedPurchase(String value) { this.LedgerIDCreditorSourcedPurchase = value; return this; } public String getLedgerIDCreditorSourcedPurchaseStartsWith() { return LedgerIDCreditorSourcedPurchaseStartsWith; } public CR_ClassificationQuery setLedgerIDCreditorSourcedPurchaseStartsWith(String value) { this.LedgerIDCreditorSourcedPurchaseStartsWith = value; return this; } public String getLedgerIDCreditorSourcedPurchaseEndsWith() { return LedgerIDCreditorSourcedPurchaseEndsWith; } public CR_ClassificationQuery setLedgerIDCreditorSourcedPurchaseEndsWith(String value) { this.LedgerIDCreditorSourcedPurchaseEndsWith = value; return this; } public String getLedgerIDCreditorSourcedPurchaseContains() { return LedgerIDCreditorSourcedPurchaseContains; } public CR_ClassificationQuery setLedgerIDCreditorSourcedPurchaseContains(String value) { this.LedgerIDCreditorSourcedPurchaseContains = value; return this; } public String getLedgerIDCreditorSourcedPurchaseLike() { return LedgerIDCreditorSourcedPurchaseLike; } public CR_ClassificationQuery setLedgerIDCreditorSourcedPurchaseLike(String value) { this.LedgerIDCreditorSourcedPurchaseLike = value; return this; } public ArrayList getLedgerIDCreditorSourcedPurchaseBetween() { return LedgerIDCreditorSourcedPurchaseBetween; } public CR_ClassificationQuery setLedgerIDCreditorSourcedPurchaseBetween(ArrayList value) { this.LedgerIDCreditorSourcedPurchaseBetween = value; return this; } public ArrayList getLedgerIDCreditorSourcedPurchaseIn() { return LedgerIDCreditorSourcedPurchaseIn; } public CR_ClassificationQuery setLedgerIDCreditorSourcedPurchaseIn(ArrayList value) { this.LedgerIDCreditorSourcedPurchaseIn = value; return this; } public String getLedgerIDCreditorSourcedCreditAdjustment() { return LedgerIDCreditorSourcedCreditAdjustment; } public CR_ClassificationQuery setLedgerIDCreditorSourcedCreditAdjustment(String value) { this.LedgerIDCreditorSourcedCreditAdjustment = value; return this; } public String getLedgerIDCreditorSourcedCreditAdjustmentStartsWith() { return LedgerIDCreditorSourcedCreditAdjustmentStartsWith; } public CR_ClassificationQuery setLedgerIDCreditorSourcedCreditAdjustmentStartsWith(String value) { this.LedgerIDCreditorSourcedCreditAdjustmentStartsWith = value; return this; } public String getLedgerIDCreditorSourcedCreditAdjustmentEndsWith() { return LedgerIDCreditorSourcedCreditAdjustmentEndsWith; } public CR_ClassificationQuery setLedgerIDCreditorSourcedCreditAdjustmentEndsWith(String value) { this.LedgerIDCreditorSourcedCreditAdjustmentEndsWith = value; return this; } public String getLedgerIDCreditorSourcedCreditAdjustmentContains() { return LedgerIDCreditorSourcedCreditAdjustmentContains; } public CR_ClassificationQuery setLedgerIDCreditorSourcedCreditAdjustmentContains(String value) { this.LedgerIDCreditorSourcedCreditAdjustmentContains = value; return this; } public String getLedgerIDCreditorSourcedCreditAdjustmentLike() { return LedgerIDCreditorSourcedCreditAdjustmentLike; } public CR_ClassificationQuery setLedgerIDCreditorSourcedCreditAdjustmentLike(String value) { this.LedgerIDCreditorSourcedCreditAdjustmentLike = value; return this; } public ArrayList getLedgerIDCreditorSourcedCreditAdjustmentBetween() { return LedgerIDCreditorSourcedCreditAdjustmentBetween; } public CR_ClassificationQuery setLedgerIDCreditorSourcedCreditAdjustmentBetween(ArrayList value) { this.LedgerIDCreditorSourcedCreditAdjustmentBetween = value; return this; } public ArrayList getLedgerIDCreditorSourcedCreditAdjustmentIn() { return LedgerIDCreditorSourcedCreditAdjustmentIn; } public CR_ClassificationQuery setLedgerIDCreditorSourcedCreditAdjustmentIn(ArrayList value) { this.LedgerIDCreditorSourcedCreditAdjustmentIn = value; return this; } public String getLedgerIDCreditorFreight() { return LedgerIDCreditorFreight; } public CR_ClassificationQuery setLedgerIDCreditorFreight(String value) { this.LedgerIDCreditorFreight = value; return this; } public String getLedgerIDCreditorFreightStartsWith() { return LedgerIDCreditorFreightStartsWith; } public CR_ClassificationQuery setLedgerIDCreditorFreightStartsWith(String value) { this.LedgerIDCreditorFreightStartsWith = value; return this; } public String getLedgerIDCreditorFreightEndsWith() { return LedgerIDCreditorFreightEndsWith; } public CR_ClassificationQuery setLedgerIDCreditorFreightEndsWith(String value) { this.LedgerIDCreditorFreightEndsWith = value; return this; } public String getLedgerIDCreditorFreightContains() { return LedgerIDCreditorFreightContains; } public CR_ClassificationQuery setLedgerIDCreditorFreightContains(String value) { this.LedgerIDCreditorFreightContains = value; return this; } public String getLedgerIDCreditorFreightLike() { return LedgerIDCreditorFreightLike; } public CR_ClassificationQuery setLedgerIDCreditorFreightLike(String value) { this.LedgerIDCreditorFreightLike = value; return this; } public ArrayList getLedgerIDCreditorFreightBetween() { return LedgerIDCreditorFreightBetween; } public CR_ClassificationQuery setLedgerIDCreditorFreightBetween(ArrayList value) { this.LedgerIDCreditorFreightBetween = value; return this; } public ArrayList getLedgerIDCreditorFreightIn() { return LedgerIDCreditorFreightIn; } public CR_ClassificationQuery setLedgerIDCreditorFreightIn(ArrayList value) { this.LedgerIDCreditorFreightIn = value; return this; } public String getLedgerIDCreditorInsurance() { return LedgerIDCreditorInsurance; } public CR_ClassificationQuery setLedgerIDCreditorInsurance(String value) { this.LedgerIDCreditorInsurance = value; return this; } public String getLedgerIDCreditorInsuranceStartsWith() { return LedgerIDCreditorInsuranceStartsWith; } public CR_ClassificationQuery setLedgerIDCreditorInsuranceStartsWith(String value) { this.LedgerIDCreditorInsuranceStartsWith = value; return this; } public String getLedgerIDCreditorInsuranceEndsWith() { return LedgerIDCreditorInsuranceEndsWith; } public CR_ClassificationQuery setLedgerIDCreditorInsuranceEndsWith(String value) { this.LedgerIDCreditorInsuranceEndsWith = value; return this; } public String getLedgerIDCreditorInsuranceContains() { return LedgerIDCreditorInsuranceContains; } public CR_ClassificationQuery setLedgerIDCreditorInsuranceContains(String value) { this.LedgerIDCreditorInsuranceContains = value; return this; } public String getLedgerIDCreditorInsuranceLike() { return LedgerIDCreditorInsuranceLike; } public CR_ClassificationQuery setLedgerIDCreditorInsuranceLike(String value) { this.LedgerIDCreditorInsuranceLike = value; return this; } public ArrayList getLedgerIDCreditorInsuranceBetween() { return LedgerIDCreditorInsuranceBetween; } public CR_ClassificationQuery setLedgerIDCreditorInsuranceBetween(ArrayList value) { this.LedgerIDCreditorInsuranceBetween = value; return this; } public ArrayList getLedgerIDCreditorInsuranceIn() { return LedgerIDCreditorInsuranceIn; } public CR_ClassificationQuery setLedgerIDCreditorInsuranceIn(ArrayList value) { this.LedgerIDCreditorInsuranceIn = value; return this; } public String getLedgerIDCreditorDuty() { return LedgerIDCreditorDuty; } public CR_ClassificationQuery setLedgerIDCreditorDuty(String value) { this.LedgerIDCreditorDuty = value; return this; } public String getLedgerIDCreditorDutyStartsWith() { return LedgerIDCreditorDutyStartsWith; } public CR_ClassificationQuery setLedgerIDCreditorDutyStartsWith(String value) { this.LedgerIDCreditorDutyStartsWith = value; return this; } public String getLedgerIDCreditorDutyEndsWith() { return LedgerIDCreditorDutyEndsWith; } public CR_ClassificationQuery setLedgerIDCreditorDutyEndsWith(String value) { this.LedgerIDCreditorDutyEndsWith = value; return this; } public String getLedgerIDCreditorDutyContains() { return LedgerIDCreditorDutyContains; } public CR_ClassificationQuery setLedgerIDCreditorDutyContains(String value) { this.LedgerIDCreditorDutyContains = value; return this; } public String getLedgerIDCreditorDutyLike() { return LedgerIDCreditorDutyLike; } public CR_ClassificationQuery setLedgerIDCreditorDutyLike(String value) { this.LedgerIDCreditorDutyLike = value; return this; } public ArrayList getLedgerIDCreditorDutyBetween() { return LedgerIDCreditorDutyBetween; } public CR_ClassificationQuery setLedgerIDCreditorDutyBetween(ArrayList value) { this.LedgerIDCreditorDutyBetween = value; return this; } public ArrayList getLedgerIDCreditorDutyIn() { return LedgerIDCreditorDutyIn; } public CR_ClassificationQuery setLedgerIDCreditorDutyIn(ArrayList value) { this.LedgerIDCreditorDutyIn = value; return this; } public String getLedgerIDCreditorRealisedGainLoss() { return LedgerIDCreditorRealisedGainLoss; } public CR_ClassificationQuery setLedgerIDCreditorRealisedGainLoss(String value) { this.LedgerIDCreditorRealisedGainLoss = value; return this; } public String getLedgerIDCreditorRealisedGainLossStartsWith() { return LedgerIDCreditorRealisedGainLossStartsWith; } public CR_ClassificationQuery setLedgerIDCreditorRealisedGainLossStartsWith(String value) { this.LedgerIDCreditorRealisedGainLossStartsWith = value; return this; } public String getLedgerIDCreditorRealisedGainLossEndsWith() { return LedgerIDCreditorRealisedGainLossEndsWith; } public CR_ClassificationQuery setLedgerIDCreditorRealisedGainLossEndsWith(String value) { this.LedgerIDCreditorRealisedGainLossEndsWith = value; return this; } public String getLedgerIDCreditorRealisedGainLossContains() { return LedgerIDCreditorRealisedGainLossContains; } public CR_ClassificationQuery setLedgerIDCreditorRealisedGainLossContains(String value) { this.LedgerIDCreditorRealisedGainLossContains = value; return this; } public String getLedgerIDCreditorRealisedGainLossLike() { return LedgerIDCreditorRealisedGainLossLike; } public CR_ClassificationQuery setLedgerIDCreditorRealisedGainLossLike(String value) { this.LedgerIDCreditorRealisedGainLossLike = value; return this; } public ArrayList getLedgerIDCreditorRealisedGainLossBetween() { return LedgerIDCreditorRealisedGainLossBetween; } public CR_ClassificationQuery setLedgerIDCreditorRealisedGainLossBetween(ArrayList value) { this.LedgerIDCreditorRealisedGainLossBetween = value; return this; } public ArrayList getLedgerIDCreditorRealisedGainLossIn() { return LedgerIDCreditorRealisedGainLossIn; } public CR_ClassificationQuery setLedgerIDCreditorRealisedGainLossIn(ArrayList value) { this.LedgerIDCreditorRealisedGainLossIn = value; return this; } public String getLedgerIDCreditorUnRealisedGainLoss() { return LedgerIDCreditorUnRealisedGainLoss; } public CR_ClassificationQuery setLedgerIDCreditorUnRealisedGainLoss(String value) { this.LedgerIDCreditorUnRealisedGainLoss = value; return this; } public String getLedgerIDCreditorUnRealisedGainLossStartsWith() { return LedgerIDCreditorUnRealisedGainLossStartsWith; } public CR_ClassificationQuery setLedgerIDCreditorUnRealisedGainLossStartsWith(String value) { this.LedgerIDCreditorUnRealisedGainLossStartsWith = value; return this; } public String getLedgerIDCreditorUnRealisedGainLossEndsWith() { return LedgerIDCreditorUnRealisedGainLossEndsWith; } public CR_ClassificationQuery setLedgerIDCreditorUnRealisedGainLossEndsWith(String value) { this.LedgerIDCreditorUnRealisedGainLossEndsWith = value; return this; } public String getLedgerIDCreditorUnRealisedGainLossContains() { return LedgerIDCreditorUnRealisedGainLossContains; } public CR_ClassificationQuery setLedgerIDCreditorUnRealisedGainLossContains(String value) { this.LedgerIDCreditorUnRealisedGainLossContains = value; return this; } public String getLedgerIDCreditorUnRealisedGainLossLike() { return LedgerIDCreditorUnRealisedGainLossLike; } public CR_ClassificationQuery setLedgerIDCreditorUnRealisedGainLossLike(String value) { this.LedgerIDCreditorUnRealisedGainLossLike = value; return this; } public ArrayList getLedgerIDCreditorUnRealisedGainLossBetween() { return LedgerIDCreditorUnRealisedGainLossBetween; } public CR_ClassificationQuery setLedgerIDCreditorUnRealisedGainLossBetween(ArrayList value) { this.LedgerIDCreditorUnRealisedGainLossBetween = value; return this; } public ArrayList getLedgerIDCreditorUnRealisedGainLossIn() { return LedgerIDCreditorUnRealisedGainLossIn; } public CR_ClassificationQuery setLedgerIDCreditorUnRealisedGainLossIn(ArrayList value) { this.LedgerIDCreditorUnRealisedGainLossIn = value; return this; } public Short getTermsDays() { return TermsDays; } public CR_ClassificationQuery setTermsDays(Short value) { this.TermsDays = value; return this; } public Short getTermsDaysGreaterThanOrEqualTo() { return TermsDaysGreaterThanOrEqualTo; } public CR_ClassificationQuery setTermsDaysGreaterThanOrEqualTo(Short value) { this.TermsDaysGreaterThanOrEqualTo = value; return this; } public Short getTermsDaysGreaterThan() { return TermsDaysGreaterThan; } public CR_ClassificationQuery setTermsDaysGreaterThan(Short value) { this.TermsDaysGreaterThan = value; return this; } public Short getTermsDaysLessThan() { return TermsDaysLessThan; } public CR_ClassificationQuery setTermsDaysLessThan(Short value) { this.TermsDaysLessThan = value; return this; } public Short getTermsDaysLessThanOrEqualTo() { return TermsDaysLessThanOrEqualTo; } public CR_ClassificationQuery setTermsDaysLessThanOrEqualTo(Short value) { this.TermsDaysLessThanOrEqualTo = value; return this; } public Short getTermsDaysNotEqualTo() { return TermsDaysNotEqualTo; } public CR_ClassificationQuery setTermsDaysNotEqualTo(Short value) { this.TermsDaysNotEqualTo = value; return this; } public ArrayList getTermsDaysBetween() { return TermsDaysBetween; } public CR_ClassificationQuery setTermsDaysBetween(ArrayList value) { this.TermsDaysBetween = value; return this; } public ArrayList getTermsDaysIn() { return TermsDaysIn; } public CR_ClassificationQuery setTermsDaysIn(ArrayList value) { this.TermsDaysIn = value; return this; } public Short getTermsType() { return TermsType; } public CR_ClassificationQuery setTermsType(Short value) { this.TermsType = value; return this; } public Short getTermsTypeGreaterThanOrEqualTo() { return TermsTypeGreaterThanOrEqualTo; } public CR_ClassificationQuery setTermsTypeGreaterThanOrEqualTo(Short value) { this.TermsTypeGreaterThanOrEqualTo = value; return this; } public Short getTermsTypeGreaterThan() { return TermsTypeGreaterThan; } public CR_ClassificationQuery setTermsTypeGreaterThan(Short value) { this.TermsTypeGreaterThan = value; return this; } public Short getTermsTypeLessThan() { return TermsTypeLessThan; } public CR_ClassificationQuery setTermsTypeLessThan(Short value) { this.TermsTypeLessThan = value; return this; } public Short getTermsTypeLessThanOrEqualTo() { return TermsTypeLessThanOrEqualTo; } public CR_ClassificationQuery setTermsTypeLessThanOrEqualTo(Short value) { this.TermsTypeLessThanOrEqualTo = value; return this; } public Short getTermsTypeNotEqualTo() { return TermsTypeNotEqualTo; } public CR_ClassificationQuery setTermsTypeNotEqualTo(Short value) { this.TermsTypeNotEqualTo = value; return this; } public ArrayList getTermsTypeBetween() { return TermsTypeBetween; } public CR_ClassificationQuery setTermsTypeBetween(ArrayList value) { this.TermsTypeBetween = value; return this; } public ArrayList getTermsTypeIn() { return TermsTypeIn; } public CR_ClassificationQuery setTermsTypeIn(ArrayList value) { this.TermsTypeIn = value; return this; } public String getPoWorkflowsRecID() { return PO_Workflows_RecID; } public CR_ClassificationQuery setPoWorkflowsRecID(String value) { this.PO_Workflows_RecID = value; return this; } public String getPoWorkflowsRecIDStartsWith() { return PO_Workflows_RecIDStartsWith; } public CR_ClassificationQuery setPoWorkflowsRecIDStartsWith(String value) { this.PO_Workflows_RecIDStartsWith = value; return this; } public String getPoWorkflowsRecIDEndsWith() { return PO_Workflows_RecIDEndsWith; } public CR_ClassificationQuery setPoWorkflowsRecIDEndsWith(String value) { this.PO_Workflows_RecIDEndsWith = value; return this; } public String getPoWorkflowsRecIDContains() { return PO_Workflows_RecIDContains; } public CR_ClassificationQuery setPoWorkflowsRecIDContains(String value) { this.PO_Workflows_RecIDContains = value; return this; } public String getPoWorkflowsRecIDLike() { return PO_Workflows_RecIDLike; } public CR_ClassificationQuery setPoWorkflowsRecIDLike(String value) { this.PO_Workflows_RecIDLike = value; return this; } public ArrayList getPoWorkflowsRecIDBetween() { return PO_Workflows_RecIDBetween; } public CR_ClassificationQuery setPoWorkflowsRecIDBetween(ArrayList value) { this.PO_Workflows_RecIDBetween = value; return this; } public ArrayList getPoWorkflowsRecIDIn() { return PO_Workflows_RecIDIn; } public CR_ClassificationQuery setPoWorkflowsRecIDIn(ArrayList value) { this.PO_Workflows_RecIDIn = value; return this; } public Boolean getIsDefault() { return IsDefault; } public CR_ClassificationQuery setIsDefault(Boolean value) { this.IsDefault = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class CR_CreditAdjustmentCustomSettingQuery extends QueryDb implements IReturn> { public String SettingID = null; public String SettingIDStartsWith = null; public String SettingIDEndsWith = null; public String SettingIDContains = null; public String SettingIDLike = null; public ArrayList SettingIDBetween = null; public ArrayList SettingIDIn = null; public Date LastSavedDateTime = null; public Date LastSavedDateTimeGreaterThanOrEqualTo = null; public Date LastSavedDateTimeGreaterThan = null; public Date LastSavedDateTimeLessThan = null; public Date LastSavedDateTimeLessThanOrEqualTo = null; public Date LastSavedDateTimeNotEqualTo = null; public ArrayList LastSavedDateTimeBetween = null; public ArrayList LastSavedDateTimeIn = null; public String SettingDescription = null; public String SettingDescriptionStartsWith = null; public String SettingDescriptionEndsWith = null; public String SettingDescriptionContains = null; public String SettingDescriptionLike = null; public ArrayList SettingDescriptionBetween = null; public ArrayList SettingDescriptionIn = null; public String SettingName = null; public String SettingNameStartsWith = null; public String SettingNameEndsWith = null; public String SettingNameContains = null; public String SettingNameLike = null; public ArrayList SettingNameBetween = null; public ArrayList SettingNameIn = null; public Integer DisplayOrder = null; public Integer DisplayOrderGreaterThanOrEqualTo = null; public Integer DisplayOrderGreaterThan = null; public Integer DisplayOrderLessThan = null; public Integer DisplayOrderLessThanOrEqualTo = null; public Integer DisplayOrderNotEqualTo = null; public ArrayList DisplayOrderBetween = null; public ArrayList DisplayOrderIn = null; public Short CellType = null; public Short CellTypeGreaterThanOrEqualTo = null; public Short CellTypeGreaterThan = null; public Short CellTypeLessThan = null; public Short CellTypeLessThanOrEqualTo = null; public Short CellTypeNotEqualTo = null; public ArrayList CellTypeBetween = null; public ArrayList CellTypeIn = null; public String ScriptFormatCell = null; public String ScriptFormatCellStartsWith = null; public String ScriptFormatCellEndsWith = null; public String ScriptFormatCellContains = null; public String ScriptFormatCellLike = null; public ArrayList ScriptFormatCellBetween = null; public ArrayList ScriptFormatCellIn = null; public String ScriptButtonClicked = null; public String ScriptButtonClickedStartsWith = null; public String ScriptButtonClickedEndsWith = null; public String ScriptButtonClickedContains = null; public String ScriptButtonClickedLike = null; public ArrayList ScriptButtonClickedBetween = null; public ArrayList ScriptButtonClickedIn = null; public String ScriptReadData = null; public String ScriptReadDataStartsWith = null; public String ScriptReadDataEndsWith = null; public String ScriptReadDataContains = null; public String ScriptReadDataLike = null; public ArrayList ScriptReadDataBetween = null; public ArrayList ScriptReadDataIn = null; public String GridHandlerCode = null; public String GridHandlerCodeStartsWith = null; public String GridHandlerCodeEndsWith = null; public String GridHandlerCodeContains = null; public String GridHandlerCodeLike = null; public ArrayList GridHandlerCodeBetween = null; public ArrayList GridHandlerCodeIn = null; public UUID SY_Plugin_RecID = null; public ArrayList SY_Plugin_RecIDIn = null; public String getSettingID() { return SettingID; } public CR_CreditAdjustmentCustomSettingQuery setSettingID(String value) { this.SettingID = value; return this; } public String getSettingIDStartsWith() { return SettingIDStartsWith; } public CR_CreditAdjustmentCustomSettingQuery setSettingIDStartsWith(String value) { this.SettingIDStartsWith = value; return this; } public String getSettingIDEndsWith() { return SettingIDEndsWith; } public CR_CreditAdjustmentCustomSettingQuery setSettingIDEndsWith(String value) { this.SettingIDEndsWith = value; return this; } public String getSettingIDContains() { return SettingIDContains; } public CR_CreditAdjustmentCustomSettingQuery setSettingIDContains(String value) { this.SettingIDContains = value; return this; } public String getSettingIDLike() { return SettingIDLike; } public CR_CreditAdjustmentCustomSettingQuery setSettingIDLike(String value) { this.SettingIDLike = value; return this; } public ArrayList getSettingIDBetween() { return SettingIDBetween; } public CR_CreditAdjustmentCustomSettingQuery setSettingIDBetween(ArrayList value) { this.SettingIDBetween = value; return this; } public ArrayList getSettingIDIn() { return SettingIDIn; } public CR_CreditAdjustmentCustomSettingQuery setSettingIDIn(ArrayList value) { this.SettingIDIn = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public CR_CreditAdjustmentCustomSettingQuery setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getLastSavedDateTimeGreaterThanOrEqualTo() { return LastSavedDateTimeGreaterThanOrEqualTo; } public CR_CreditAdjustmentCustomSettingQuery setLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.LastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeGreaterThan() { return LastSavedDateTimeGreaterThan; } public CR_CreditAdjustmentCustomSettingQuery setLastSavedDateTimeGreaterThan(Date value) { this.LastSavedDateTimeGreaterThan = value; return this; } public Date getLastSavedDateTimeLessThan() { return LastSavedDateTimeLessThan; } public CR_CreditAdjustmentCustomSettingQuery setLastSavedDateTimeLessThan(Date value) { this.LastSavedDateTimeLessThan = value; return this; } public Date getLastSavedDateTimeLessThanOrEqualTo() { return LastSavedDateTimeLessThanOrEqualTo; } public CR_CreditAdjustmentCustomSettingQuery setLastSavedDateTimeLessThanOrEqualTo(Date value) { this.LastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeNotEqualTo() { return LastSavedDateTimeNotEqualTo; } public CR_CreditAdjustmentCustomSettingQuery setLastSavedDateTimeNotEqualTo(Date value) { this.LastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getLastSavedDateTimeBetween() { return LastSavedDateTimeBetween; } public CR_CreditAdjustmentCustomSettingQuery setLastSavedDateTimeBetween(ArrayList value) { this.LastSavedDateTimeBetween = value; return this; } public ArrayList getLastSavedDateTimeIn() { return LastSavedDateTimeIn; } public CR_CreditAdjustmentCustomSettingQuery setLastSavedDateTimeIn(ArrayList value) { this.LastSavedDateTimeIn = value; return this; } public String getSettingDescription() { return SettingDescription; } public CR_CreditAdjustmentCustomSettingQuery setSettingDescription(String value) { this.SettingDescription = value; return this; } public String getSettingDescriptionStartsWith() { return SettingDescriptionStartsWith; } public CR_CreditAdjustmentCustomSettingQuery setSettingDescriptionStartsWith(String value) { this.SettingDescriptionStartsWith = value; return this; } public String getSettingDescriptionEndsWith() { return SettingDescriptionEndsWith; } public CR_CreditAdjustmentCustomSettingQuery setSettingDescriptionEndsWith(String value) { this.SettingDescriptionEndsWith = value; return this; } public String getSettingDescriptionContains() { return SettingDescriptionContains; } public CR_CreditAdjustmentCustomSettingQuery setSettingDescriptionContains(String value) { this.SettingDescriptionContains = value; return this; } public String getSettingDescriptionLike() { return SettingDescriptionLike; } public CR_CreditAdjustmentCustomSettingQuery setSettingDescriptionLike(String value) { this.SettingDescriptionLike = value; return this; } public ArrayList getSettingDescriptionBetween() { return SettingDescriptionBetween; } public CR_CreditAdjustmentCustomSettingQuery setSettingDescriptionBetween(ArrayList value) { this.SettingDescriptionBetween = value; return this; } public ArrayList getSettingDescriptionIn() { return SettingDescriptionIn; } public CR_CreditAdjustmentCustomSettingQuery setSettingDescriptionIn(ArrayList value) { this.SettingDescriptionIn = value; return this; } public String getSettingName() { return SettingName; } public CR_CreditAdjustmentCustomSettingQuery setSettingName(String value) { this.SettingName = value; return this; } public String getSettingNameStartsWith() { return SettingNameStartsWith; } public CR_CreditAdjustmentCustomSettingQuery setSettingNameStartsWith(String value) { this.SettingNameStartsWith = value; return this; } public String getSettingNameEndsWith() { return SettingNameEndsWith; } public CR_CreditAdjustmentCustomSettingQuery setSettingNameEndsWith(String value) { this.SettingNameEndsWith = value; return this; } public String getSettingNameContains() { return SettingNameContains; } public CR_CreditAdjustmentCustomSettingQuery setSettingNameContains(String value) { this.SettingNameContains = value; return this; } public String getSettingNameLike() { return SettingNameLike; } public CR_CreditAdjustmentCustomSettingQuery setSettingNameLike(String value) { this.SettingNameLike = value; return this; } public ArrayList getSettingNameBetween() { return SettingNameBetween; } public CR_CreditAdjustmentCustomSettingQuery setSettingNameBetween(ArrayList value) { this.SettingNameBetween = value; return this; } public ArrayList getSettingNameIn() { return SettingNameIn; } public CR_CreditAdjustmentCustomSettingQuery setSettingNameIn(ArrayList value) { this.SettingNameIn = value; return this; } public Integer getDisplayOrder() { return DisplayOrder; } public CR_CreditAdjustmentCustomSettingQuery setDisplayOrder(Integer value) { this.DisplayOrder = value; return this; } public Integer getDisplayOrderGreaterThanOrEqualTo() { return DisplayOrderGreaterThanOrEqualTo; } public CR_CreditAdjustmentCustomSettingQuery setDisplayOrderGreaterThanOrEqualTo(Integer value) { this.DisplayOrderGreaterThanOrEqualTo = value; return this; } public Integer getDisplayOrderGreaterThan() { return DisplayOrderGreaterThan; } public CR_CreditAdjustmentCustomSettingQuery setDisplayOrderGreaterThan(Integer value) { this.DisplayOrderGreaterThan = value; return this; } public Integer getDisplayOrderLessThan() { return DisplayOrderLessThan; } public CR_CreditAdjustmentCustomSettingQuery setDisplayOrderLessThan(Integer value) { this.DisplayOrderLessThan = value; return this; } public Integer getDisplayOrderLessThanOrEqualTo() { return DisplayOrderLessThanOrEqualTo; } public CR_CreditAdjustmentCustomSettingQuery setDisplayOrderLessThanOrEqualTo(Integer value) { this.DisplayOrderLessThanOrEqualTo = value; return this; } public Integer getDisplayOrderNotEqualTo() { return DisplayOrderNotEqualTo; } public CR_CreditAdjustmentCustomSettingQuery setDisplayOrderNotEqualTo(Integer value) { this.DisplayOrderNotEqualTo = value; return this; } public ArrayList getDisplayOrderBetween() { return DisplayOrderBetween; } public CR_CreditAdjustmentCustomSettingQuery setDisplayOrderBetween(ArrayList value) { this.DisplayOrderBetween = value; return this; } public ArrayList getDisplayOrderIn() { return DisplayOrderIn; } public CR_CreditAdjustmentCustomSettingQuery setDisplayOrderIn(ArrayList value) { this.DisplayOrderIn = value; return this; } public Short getCellType() { return CellType; } public CR_CreditAdjustmentCustomSettingQuery setCellType(Short value) { this.CellType = value; return this; } public Short getCellTypeGreaterThanOrEqualTo() { return CellTypeGreaterThanOrEqualTo; } public CR_CreditAdjustmentCustomSettingQuery setCellTypeGreaterThanOrEqualTo(Short value) { this.CellTypeGreaterThanOrEqualTo = value; return this; } public Short getCellTypeGreaterThan() { return CellTypeGreaterThan; } public CR_CreditAdjustmentCustomSettingQuery setCellTypeGreaterThan(Short value) { this.CellTypeGreaterThan = value; return this; } public Short getCellTypeLessThan() { return CellTypeLessThan; } public CR_CreditAdjustmentCustomSettingQuery setCellTypeLessThan(Short value) { this.CellTypeLessThan = value; return this; } public Short getCellTypeLessThanOrEqualTo() { return CellTypeLessThanOrEqualTo; } public CR_CreditAdjustmentCustomSettingQuery setCellTypeLessThanOrEqualTo(Short value) { this.CellTypeLessThanOrEqualTo = value; return this; } public Short getCellTypeNotEqualTo() { return CellTypeNotEqualTo; } public CR_CreditAdjustmentCustomSettingQuery setCellTypeNotEqualTo(Short value) { this.CellTypeNotEqualTo = value; return this; } public ArrayList getCellTypeBetween() { return CellTypeBetween; } public CR_CreditAdjustmentCustomSettingQuery setCellTypeBetween(ArrayList value) { this.CellTypeBetween = value; return this; } public ArrayList getCellTypeIn() { return CellTypeIn; } public CR_CreditAdjustmentCustomSettingQuery setCellTypeIn(ArrayList value) { this.CellTypeIn = value; return this; } public String getScriptFormatCell() { return ScriptFormatCell; } public CR_CreditAdjustmentCustomSettingQuery setScriptFormatCell(String value) { this.ScriptFormatCell = value; return this; } public String getScriptFormatCellStartsWith() { return ScriptFormatCellStartsWith; } public CR_CreditAdjustmentCustomSettingQuery setScriptFormatCellStartsWith(String value) { this.ScriptFormatCellStartsWith = value; return this; } public String getScriptFormatCellEndsWith() { return ScriptFormatCellEndsWith; } public CR_CreditAdjustmentCustomSettingQuery setScriptFormatCellEndsWith(String value) { this.ScriptFormatCellEndsWith = value; return this; } public String getScriptFormatCellContains() { return ScriptFormatCellContains; } public CR_CreditAdjustmentCustomSettingQuery setScriptFormatCellContains(String value) { this.ScriptFormatCellContains = value; return this; } public String getScriptFormatCellLike() { return ScriptFormatCellLike; } public CR_CreditAdjustmentCustomSettingQuery setScriptFormatCellLike(String value) { this.ScriptFormatCellLike = value; return this; } public ArrayList getScriptFormatCellBetween() { return ScriptFormatCellBetween; } public CR_CreditAdjustmentCustomSettingQuery setScriptFormatCellBetween(ArrayList value) { this.ScriptFormatCellBetween = value; return this; } public ArrayList getScriptFormatCellIn() { return ScriptFormatCellIn; } public CR_CreditAdjustmentCustomSettingQuery setScriptFormatCellIn(ArrayList value) { this.ScriptFormatCellIn = value; return this; } public String getScriptButtonClicked() { return ScriptButtonClicked; } public CR_CreditAdjustmentCustomSettingQuery setScriptButtonClicked(String value) { this.ScriptButtonClicked = value; return this; } public String getScriptButtonClickedStartsWith() { return ScriptButtonClickedStartsWith; } public CR_CreditAdjustmentCustomSettingQuery setScriptButtonClickedStartsWith(String value) { this.ScriptButtonClickedStartsWith = value; return this; } public String getScriptButtonClickedEndsWith() { return ScriptButtonClickedEndsWith; } public CR_CreditAdjustmentCustomSettingQuery setScriptButtonClickedEndsWith(String value) { this.ScriptButtonClickedEndsWith = value; return this; } public String getScriptButtonClickedContains() { return ScriptButtonClickedContains; } public CR_CreditAdjustmentCustomSettingQuery setScriptButtonClickedContains(String value) { this.ScriptButtonClickedContains = value; return this; } public String getScriptButtonClickedLike() { return ScriptButtonClickedLike; } public CR_CreditAdjustmentCustomSettingQuery setScriptButtonClickedLike(String value) { this.ScriptButtonClickedLike = value; return this; } public ArrayList getScriptButtonClickedBetween() { return ScriptButtonClickedBetween; } public CR_CreditAdjustmentCustomSettingQuery setScriptButtonClickedBetween(ArrayList value) { this.ScriptButtonClickedBetween = value; return this; } public ArrayList getScriptButtonClickedIn() { return ScriptButtonClickedIn; } public CR_CreditAdjustmentCustomSettingQuery setScriptButtonClickedIn(ArrayList value) { this.ScriptButtonClickedIn = value; return this; } public String getScriptReadData() { return ScriptReadData; } public CR_CreditAdjustmentCustomSettingQuery setScriptReadData(String value) { this.ScriptReadData = value; return this; } public String getScriptReadDataStartsWith() { return ScriptReadDataStartsWith; } public CR_CreditAdjustmentCustomSettingQuery setScriptReadDataStartsWith(String value) { this.ScriptReadDataStartsWith = value; return this; } public String getScriptReadDataEndsWith() { return ScriptReadDataEndsWith; } public CR_CreditAdjustmentCustomSettingQuery setScriptReadDataEndsWith(String value) { this.ScriptReadDataEndsWith = value; return this; } public String getScriptReadDataContains() { return ScriptReadDataContains; } public CR_CreditAdjustmentCustomSettingQuery setScriptReadDataContains(String value) { this.ScriptReadDataContains = value; return this; } public String getScriptReadDataLike() { return ScriptReadDataLike; } public CR_CreditAdjustmentCustomSettingQuery setScriptReadDataLike(String value) { this.ScriptReadDataLike = value; return this; } public ArrayList getScriptReadDataBetween() { return ScriptReadDataBetween; } public CR_CreditAdjustmentCustomSettingQuery setScriptReadDataBetween(ArrayList value) { this.ScriptReadDataBetween = value; return this; } public ArrayList getScriptReadDataIn() { return ScriptReadDataIn; } public CR_CreditAdjustmentCustomSettingQuery setScriptReadDataIn(ArrayList value) { this.ScriptReadDataIn = value; return this; } public String getGridHandlerCode() { return GridHandlerCode; } public CR_CreditAdjustmentCustomSettingQuery setGridHandlerCode(String value) { this.GridHandlerCode = value; return this; } public String getGridHandlerCodeStartsWith() { return GridHandlerCodeStartsWith; } public CR_CreditAdjustmentCustomSettingQuery setGridHandlerCodeStartsWith(String value) { this.GridHandlerCodeStartsWith = value; return this; } public String getGridHandlerCodeEndsWith() { return GridHandlerCodeEndsWith; } public CR_CreditAdjustmentCustomSettingQuery setGridHandlerCodeEndsWith(String value) { this.GridHandlerCodeEndsWith = value; return this; } public String getGridHandlerCodeContains() { return GridHandlerCodeContains; } public CR_CreditAdjustmentCustomSettingQuery setGridHandlerCodeContains(String value) { this.GridHandlerCodeContains = value; return this; } public String getGridHandlerCodeLike() { return GridHandlerCodeLike; } public CR_CreditAdjustmentCustomSettingQuery setGridHandlerCodeLike(String value) { this.GridHandlerCodeLike = value; return this; } public ArrayList getGridHandlerCodeBetween() { return GridHandlerCodeBetween; } public CR_CreditAdjustmentCustomSettingQuery setGridHandlerCodeBetween(ArrayList value) { this.GridHandlerCodeBetween = value; return this; } public ArrayList getGridHandlerCodeIn() { return GridHandlerCodeIn; } public CR_CreditAdjustmentCustomSettingQuery setGridHandlerCodeIn(ArrayList value) { this.GridHandlerCodeIn = value; return this; } public UUID getSyPluginRecID() { return SY_Plugin_RecID; } public CR_CreditAdjustmentCustomSettingQuery setSyPluginRecID(UUID value) { this.SY_Plugin_RecID = value; return this; } public ArrayList getSyPluginRecIDIn() { return SY_Plugin_RecIDIn; } public CR_CreditAdjustmentCustomSettingQuery setSyPluginRecIDIn(ArrayList value) { this.SY_Plugin_RecIDIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class CR_CreditAdjustmentCustomSettingValuesQuery extends QueryDb implements IReturn> { public String SettingValueID = null; public String SettingValueIDStartsWith = null; public String SettingValueIDEndsWith = null; public String SettingValueIDContains = null; public String SettingValueIDLike = null; public ArrayList SettingValueIDBetween = null; public ArrayList SettingValueIDIn = null; public String SettingID = null; public String SettingIDStartsWith = null; public String SettingIDEndsWith = null; public String SettingIDContains = null; public String SettingIDLike = null; public ArrayList SettingIDBetween = null; public ArrayList SettingIDIn = null; public String CR_BatchTrans_ReceiptID = null; public String CR_BatchTrans_ReceiptIDStartsWith = null; public String CR_BatchTrans_ReceiptIDEndsWith = null; public String CR_BatchTrans_ReceiptIDContains = null; public String CR_BatchTrans_ReceiptIDLike = null; public ArrayList CR_BatchTrans_ReceiptIDBetween = null; public ArrayList CR_BatchTrans_ReceiptIDIn = null; public String Contents = null; public String ContentsStartsWith = null; public String ContentsEndsWith = null; public String ContentsContains = null; public String ContentsLike = null; public ArrayList ContentsBetween = null; public ArrayList ContentsIn = null; public Date LastSavedDateTime = null; public Date LastSavedDateTimeGreaterThanOrEqualTo = null; public Date LastSavedDateTimeGreaterThan = null; public Date LastSavedDateTimeLessThan = null; public Date LastSavedDateTimeLessThanOrEqualTo = null; public Date LastSavedDateTimeNotEqualTo = null; public ArrayList LastSavedDateTimeBetween = null; public ArrayList LastSavedDateTimeIn = null; public String getSettingValueID() { return SettingValueID; } public CR_CreditAdjustmentCustomSettingValuesQuery setSettingValueID(String value) { this.SettingValueID = value; return this; } public String getSettingValueIDStartsWith() { return SettingValueIDStartsWith; } public CR_CreditAdjustmentCustomSettingValuesQuery setSettingValueIDStartsWith(String value) { this.SettingValueIDStartsWith = value; return this; } public String getSettingValueIDEndsWith() { return SettingValueIDEndsWith; } public CR_CreditAdjustmentCustomSettingValuesQuery setSettingValueIDEndsWith(String value) { this.SettingValueIDEndsWith = value; return this; } public String getSettingValueIDContains() { return SettingValueIDContains; } public CR_CreditAdjustmentCustomSettingValuesQuery setSettingValueIDContains(String value) { this.SettingValueIDContains = value; return this; } public String getSettingValueIDLike() { return SettingValueIDLike; } public CR_CreditAdjustmentCustomSettingValuesQuery setSettingValueIDLike(String value) { this.SettingValueIDLike = value; return this; } public ArrayList getSettingValueIDBetween() { return SettingValueIDBetween; } public CR_CreditAdjustmentCustomSettingValuesQuery setSettingValueIDBetween(ArrayList value) { this.SettingValueIDBetween = value; return this; } public ArrayList getSettingValueIDIn() { return SettingValueIDIn; } public CR_CreditAdjustmentCustomSettingValuesQuery setSettingValueIDIn(ArrayList value) { this.SettingValueIDIn = value; return this; } public String getSettingID() { return SettingID; } public CR_CreditAdjustmentCustomSettingValuesQuery setSettingID(String value) { this.SettingID = value; return this; } public String getSettingIDStartsWith() { return SettingIDStartsWith; } public CR_CreditAdjustmentCustomSettingValuesQuery setSettingIDStartsWith(String value) { this.SettingIDStartsWith = value; return this; } public String getSettingIDEndsWith() { return SettingIDEndsWith; } public CR_CreditAdjustmentCustomSettingValuesQuery setSettingIDEndsWith(String value) { this.SettingIDEndsWith = value; return this; } public String getSettingIDContains() { return SettingIDContains; } public CR_CreditAdjustmentCustomSettingValuesQuery setSettingIDContains(String value) { this.SettingIDContains = value; return this; } public String getSettingIDLike() { return SettingIDLike; } public CR_CreditAdjustmentCustomSettingValuesQuery setSettingIDLike(String value) { this.SettingIDLike = value; return this; } public ArrayList getSettingIDBetween() { return SettingIDBetween; } public CR_CreditAdjustmentCustomSettingValuesQuery setSettingIDBetween(ArrayList value) { this.SettingIDBetween = value; return this; } public ArrayList getSettingIDIn() { return SettingIDIn; } public CR_CreditAdjustmentCustomSettingValuesQuery setSettingIDIn(ArrayList value) { this.SettingIDIn = value; return this; } public String getCrBatchTransReceiptID() { return CR_BatchTrans_ReceiptID; } public CR_CreditAdjustmentCustomSettingValuesQuery setCrBatchTransReceiptID(String value) { this.CR_BatchTrans_ReceiptID = value; return this; } public String getCrBatchTransReceiptIDStartsWith() { return CR_BatchTrans_ReceiptIDStartsWith; } public CR_CreditAdjustmentCustomSettingValuesQuery setCrBatchTransReceiptIDStartsWith(String value) { this.CR_BatchTrans_ReceiptIDStartsWith = value; return this; } public String getCrBatchTransReceiptIDEndsWith() { return CR_BatchTrans_ReceiptIDEndsWith; } public CR_CreditAdjustmentCustomSettingValuesQuery setCrBatchTransReceiptIDEndsWith(String value) { this.CR_BatchTrans_ReceiptIDEndsWith = value; return this; } public String getCrBatchTransReceiptIDContains() { return CR_BatchTrans_ReceiptIDContains; } public CR_CreditAdjustmentCustomSettingValuesQuery setCrBatchTransReceiptIDContains(String value) { this.CR_BatchTrans_ReceiptIDContains = value; return this; } public String getCrBatchTransReceiptIDLike() { return CR_BatchTrans_ReceiptIDLike; } public CR_CreditAdjustmentCustomSettingValuesQuery setCrBatchTransReceiptIDLike(String value) { this.CR_BatchTrans_ReceiptIDLike = value; return this; } public ArrayList getCrBatchTransReceiptIDBetween() { return CR_BatchTrans_ReceiptIDBetween; } public CR_CreditAdjustmentCustomSettingValuesQuery setCrBatchTransReceiptIDBetween(ArrayList value) { this.CR_BatchTrans_ReceiptIDBetween = value; return this; } public ArrayList getCrBatchTransReceiptIDIn() { return CR_BatchTrans_ReceiptIDIn; } public CR_CreditAdjustmentCustomSettingValuesQuery setCrBatchTransReceiptIDIn(ArrayList value) { this.CR_BatchTrans_ReceiptIDIn = value; return this; } public String getContents() { return Contents; } public CR_CreditAdjustmentCustomSettingValuesQuery setContents(String value) { this.Contents = value; return this; } public String getContentsStartsWith() { return ContentsStartsWith; } public CR_CreditAdjustmentCustomSettingValuesQuery setContentsStartsWith(String value) { this.ContentsStartsWith = value; return this; } public String getContentsEndsWith() { return ContentsEndsWith; } public CR_CreditAdjustmentCustomSettingValuesQuery setContentsEndsWith(String value) { this.ContentsEndsWith = value; return this; } public String getContentsContains() { return ContentsContains; } public CR_CreditAdjustmentCustomSettingValuesQuery setContentsContains(String value) { this.ContentsContains = value; return this; } public String getContentsLike() { return ContentsLike; } public CR_CreditAdjustmentCustomSettingValuesQuery setContentsLike(String value) { this.ContentsLike = value; return this; } public ArrayList getContentsBetween() { return ContentsBetween; } public CR_CreditAdjustmentCustomSettingValuesQuery setContentsBetween(ArrayList value) { this.ContentsBetween = value; return this; } public ArrayList getContentsIn() { return ContentsIn; } public CR_CreditAdjustmentCustomSettingValuesQuery setContentsIn(ArrayList value) { this.ContentsIn = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public CR_CreditAdjustmentCustomSettingValuesQuery setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getLastSavedDateTimeGreaterThanOrEqualTo() { return LastSavedDateTimeGreaterThanOrEqualTo; } public CR_CreditAdjustmentCustomSettingValuesQuery setLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.LastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeGreaterThan() { return LastSavedDateTimeGreaterThan; } public CR_CreditAdjustmentCustomSettingValuesQuery setLastSavedDateTimeGreaterThan(Date value) { this.LastSavedDateTimeGreaterThan = value; return this; } public Date getLastSavedDateTimeLessThan() { return LastSavedDateTimeLessThan; } public CR_CreditAdjustmentCustomSettingValuesQuery setLastSavedDateTimeLessThan(Date value) { this.LastSavedDateTimeLessThan = value; return this; } public Date getLastSavedDateTimeLessThanOrEqualTo() { return LastSavedDateTimeLessThanOrEqualTo; } public CR_CreditAdjustmentCustomSettingValuesQuery setLastSavedDateTimeLessThanOrEqualTo(Date value) { this.LastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeNotEqualTo() { return LastSavedDateTimeNotEqualTo; } public CR_CreditAdjustmentCustomSettingValuesQuery setLastSavedDateTimeNotEqualTo(Date value) { this.LastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getLastSavedDateTimeBetween() { return LastSavedDateTimeBetween; } public CR_CreditAdjustmentCustomSettingValuesQuery setLastSavedDateTimeBetween(ArrayList value) { this.LastSavedDateTimeBetween = value; return this; } public ArrayList getLastSavedDateTimeIn() { return LastSavedDateTimeIn; } public CR_CreditAdjustmentCustomSettingValuesQuery setLastSavedDateTimeIn(ArrayList value) { this.LastSavedDateTimeIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class CR_CreditorCreditAdjustmentLineCustomFieldsQuery extends QueryDb implements IReturn> { public String RecID = null; public String RecIDStartsWith = null; public String RecIDEndsWith = null; public String RecIDContains = null; public String RecIDLike = null; public ArrayList RecIDBetween = null; public ArrayList RecIDIn = null; public String SettingName = null; public String SettingNameStartsWith = null; public String SettingNameEndsWith = null; public String SettingNameContains = null; public String SettingNameLike = null; public ArrayList SettingNameBetween = null; public ArrayList SettingNameIn = null; public String SettingDescription = null; public String SettingDescriptionStartsWith = null; public String SettingDescriptionEndsWith = null; public String SettingDescriptionContains = null; public String SettingDescriptionLike = null; public ArrayList SettingDescriptionBetween = null; public ArrayList SettingDescriptionIn = null; public Integer CellType = null; public Integer CellTypeGreaterThanOrEqualTo = null; public Integer CellTypeGreaterThan = null; public Integer CellTypeLessThan = null; public Integer CellTypeLessThanOrEqualTo = null; public Integer CellTypeNotEqualTo = null; public ArrayList CellTypeBetween = null; public ArrayList CellTypeIn = null; public String FieldParameter = null; public String FieldParameterStartsWith = null; public String FieldParameterEndsWith = null; public String FieldParameterContains = null; public String FieldParameterLike = null; public ArrayList FieldParameterBetween = null; public ArrayList FieldParameterIn = null; public UUID SY_Plugin_RecID = null; public ArrayList SY_Plugin_RecIDIn = null; public Date LastSavedDateTime = null; public Date LastSavedDateTimeGreaterThanOrEqualTo = null; public Date LastSavedDateTimeGreaterThan = null; public Date LastSavedDateTimeLessThan = null; public Date LastSavedDateTimeLessThanOrEqualTo = null; public Date LastSavedDateTimeNotEqualTo = null; public ArrayList LastSavedDateTimeBetween = null; public ArrayList LastSavedDateTimeIn = null; public Integer DisplayOrder = null; public Integer DisplayOrderGreaterThanOrEqualTo = null; public Integer DisplayOrderGreaterThan = null; public Integer DisplayOrderLessThan = null; public Integer DisplayOrderLessThanOrEqualTo = null; public Integer DisplayOrderNotEqualTo = null; public ArrayList DisplayOrderBetween = null; public ArrayList DisplayOrderIn = null; public String getRecID() { return RecID; } public CR_CreditorCreditAdjustmentLineCustomFieldsQuery setRecID(String value) { this.RecID = value; return this; } public String getRecIDStartsWith() { return RecIDStartsWith; } public CR_CreditorCreditAdjustmentLineCustomFieldsQuery setRecIDStartsWith(String value) { this.RecIDStartsWith = value; return this; } public String getRecIDEndsWith() { return RecIDEndsWith; } public CR_CreditorCreditAdjustmentLineCustomFieldsQuery setRecIDEndsWith(String value) { this.RecIDEndsWith = value; return this; } public String getRecIDContains() { return RecIDContains; } public CR_CreditorCreditAdjustmentLineCustomFieldsQuery setRecIDContains(String value) { this.RecIDContains = value; return this; } public String getRecIDLike() { return RecIDLike; } public CR_CreditorCreditAdjustmentLineCustomFieldsQuery setRecIDLike(String value) { this.RecIDLike = value; return this; } public ArrayList getRecIDBetween() { return RecIDBetween; } public CR_CreditorCreditAdjustmentLineCustomFieldsQuery setRecIDBetween(ArrayList value) { this.RecIDBetween = value; return this; } public ArrayList getRecIDIn() { return RecIDIn; } public CR_CreditorCreditAdjustmentLineCustomFieldsQuery setRecIDIn(ArrayList value) { this.RecIDIn = value; return this; } public String getSettingName() { return SettingName; } public CR_CreditorCreditAdjustmentLineCustomFieldsQuery setSettingName(String value) { this.SettingName = value; return this; } public String getSettingNameStartsWith() { return SettingNameStartsWith; } public CR_CreditorCreditAdjustmentLineCustomFieldsQuery setSettingNameStartsWith(String value) { this.SettingNameStartsWith = value; return this; } public String getSettingNameEndsWith() { return SettingNameEndsWith; } public CR_CreditorCreditAdjustmentLineCustomFieldsQuery setSettingNameEndsWith(String value) { this.SettingNameEndsWith = value; return this; } public String getSettingNameContains() { return SettingNameContains; } public CR_CreditorCreditAdjustmentLineCustomFieldsQuery setSettingNameContains(String value) { this.SettingNameContains = value; return this; } public String getSettingNameLike() { return SettingNameLike; } public CR_CreditorCreditAdjustmentLineCustomFieldsQuery setSettingNameLike(String value) { this.SettingNameLike = value; return this; } public ArrayList getSettingNameBetween() { return SettingNameBetween; } public CR_CreditorCreditAdjustmentLineCustomFieldsQuery setSettingNameBetween(ArrayList value) { this.SettingNameBetween = value; return this; } public ArrayList getSettingNameIn() { return SettingNameIn; } public CR_CreditorCreditAdjustmentLineCustomFieldsQuery setSettingNameIn(ArrayList value) { this.SettingNameIn = value; return this; } public String getSettingDescription() { return SettingDescription; } public CR_CreditorCreditAdjustmentLineCustomFieldsQuery setSettingDescription(String value) { this.SettingDescription = value; return this; } public String getSettingDescriptionStartsWith() { return SettingDescriptionStartsWith; } public CR_CreditorCreditAdjustmentLineCustomFieldsQuery setSettingDescriptionStartsWith(String value) { this.SettingDescriptionStartsWith = value; return this; } public String getSettingDescriptionEndsWith() { return SettingDescriptionEndsWith; } public CR_CreditorCreditAdjustmentLineCustomFieldsQuery setSettingDescriptionEndsWith(String value) { this.SettingDescriptionEndsWith = value; return this; } public String getSettingDescriptionContains() { return SettingDescriptionContains; } public CR_CreditorCreditAdjustmentLineCustomFieldsQuery setSettingDescriptionContains(String value) { this.SettingDescriptionContains = value; return this; } public String getSettingDescriptionLike() { return SettingDescriptionLike; } public CR_CreditorCreditAdjustmentLineCustomFieldsQuery setSettingDescriptionLike(String value) { this.SettingDescriptionLike = value; return this; } public ArrayList getSettingDescriptionBetween() { return SettingDescriptionBetween; } public CR_CreditorCreditAdjustmentLineCustomFieldsQuery setSettingDescriptionBetween(ArrayList value) { this.SettingDescriptionBetween = value; return this; } public ArrayList getSettingDescriptionIn() { return SettingDescriptionIn; } public CR_CreditorCreditAdjustmentLineCustomFieldsQuery setSettingDescriptionIn(ArrayList value) { this.SettingDescriptionIn = value; return this; } public Integer getCellType() { return CellType; } public CR_CreditorCreditAdjustmentLineCustomFieldsQuery setCellType(Integer value) { this.CellType = value; return this; } public Integer getCellTypeGreaterThanOrEqualTo() { return CellTypeGreaterThanOrEqualTo; } public CR_CreditorCreditAdjustmentLineCustomFieldsQuery setCellTypeGreaterThanOrEqualTo(Integer value) { this.CellTypeGreaterThanOrEqualTo = value; return this; } public Integer getCellTypeGreaterThan() { return CellTypeGreaterThan; } public CR_CreditorCreditAdjustmentLineCustomFieldsQuery setCellTypeGreaterThan(Integer value) { this.CellTypeGreaterThan = value; return this; } public Integer getCellTypeLessThan() { return CellTypeLessThan; } public CR_CreditorCreditAdjustmentLineCustomFieldsQuery setCellTypeLessThan(Integer value) { this.CellTypeLessThan = value; return this; } public Integer getCellTypeLessThanOrEqualTo() { return CellTypeLessThanOrEqualTo; } public CR_CreditorCreditAdjustmentLineCustomFieldsQuery setCellTypeLessThanOrEqualTo(Integer value) { this.CellTypeLessThanOrEqualTo = value; return this; } public Integer getCellTypeNotEqualTo() { return CellTypeNotEqualTo; } public CR_CreditorCreditAdjustmentLineCustomFieldsQuery setCellTypeNotEqualTo(Integer value) { this.CellTypeNotEqualTo = value; return this; } public ArrayList getCellTypeBetween() { return CellTypeBetween; } public CR_CreditorCreditAdjustmentLineCustomFieldsQuery setCellTypeBetween(ArrayList value) { this.CellTypeBetween = value; return this; } public ArrayList getCellTypeIn() { return CellTypeIn; } public CR_CreditorCreditAdjustmentLineCustomFieldsQuery setCellTypeIn(ArrayList value) { this.CellTypeIn = value; return this; } public String getFieldParameter() { return FieldParameter; } public CR_CreditorCreditAdjustmentLineCustomFieldsQuery setFieldParameter(String value) { this.FieldParameter = value; return this; } public String getFieldParameterStartsWith() { return FieldParameterStartsWith; } public CR_CreditorCreditAdjustmentLineCustomFieldsQuery setFieldParameterStartsWith(String value) { this.FieldParameterStartsWith = value; return this; } public String getFieldParameterEndsWith() { return FieldParameterEndsWith; } public CR_CreditorCreditAdjustmentLineCustomFieldsQuery setFieldParameterEndsWith(String value) { this.FieldParameterEndsWith = value; return this; } public String getFieldParameterContains() { return FieldParameterContains; } public CR_CreditorCreditAdjustmentLineCustomFieldsQuery setFieldParameterContains(String value) { this.FieldParameterContains = value; return this; } public String getFieldParameterLike() { return FieldParameterLike; } public CR_CreditorCreditAdjustmentLineCustomFieldsQuery setFieldParameterLike(String value) { this.FieldParameterLike = value; return this; } public ArrayList getFieldParameterBetween() { return FieldParameterBetween; } public CR_CreditorCreditAdjustmentLineCustomFieldsQuery setFieldParameterBetween(ArrayList value) { this.FieldParameterBetween = value; return this; } public ArrayList getFieldParameterIn() { return FieldParameterIn; } public CR_CreditorCreditAdjustmentLineCustomFieldsQuery setFieldParameterIn(ArrayList value) { this.FieldParameterIn = value; return this; } public UUID getSyPluginRecID() { return SY_Plugin_RecID; } public CR_CreditorCreditAdjustmentLineCustomFieldsQuery setSyPluginRecID(UUID value) { this.SY_Plugin_RecID = value; return this; } public ArrayList getSyPluginRecIDIn() { return SY_Plugin_RecIDIn; } public CR_CreditorCreditAdjustmentLineCustomFieldsQuery setSyPluginRecIDIn(ArrayList value) { this.SY_Plugin_RecIDIn = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public CR_CreditorCreditAdjustmentLineCustomFieldsQuery setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getLastSavedDateTimeGreaterThanOrEqualTo() { return LastSavedDateTimeGreaterThanOrEqualTo; } public CR_CreditorCreditAdjustmentLineCustomFieldsQuery setLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.LastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeGreaterThan() { return LastSavedDateTimeGreaterThan; } public CR_CreditorCreditAdjustmentLineCustomFieldsQuery setLastSavedDateTimeGreaterThan(Date value) { this.LastSavedDateTimeGreaterThan = value; return this; } public Date getLastSavedDateTimeLessThan() { return LastSavedDateTimeLessThan; } public CR_CreditorCreditAdjustmentLineCustomFieldsQuery setLastSavedDateTimeLessThan(Date value) { this.LastSavedDateTimeLessThan = value; return this; } public Date getLastSavedDateTimeLessThanOrEqualTo() { return LastSavedDateTimeLessThanOrEqualTo; } public CR_CreditorCreditAdjustmentLineCustomFieldsQuery setLastSavedDateTimeLessThanOrEqualTo(Date value) { this.LastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeNotEqualTo() { return LastSavedDateTimeNotEqualTo; } public CR_CreditorCreditAdjustmentLineCustomFieldsQuery setLastSavedDateTimeNotEqualTo(Date value) { this.LastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getLastSavedDateTimeBetween() { return LastSavedDateTimeBetween; } public CR_CreditorCreditAdjustmentLineCustomFieldsQuery setLastSavedDateTimeBetween(ArrayList value) { this.LastSavedDateTimeBetween = value; return this; } public ArrayList getLastSavedDateTimeIn() { return LastSavedDateTimeIn; } public CR_CreditorCreditAdjustmentLineCustomFieldsQuery setLastSavedDateTimeIn(ArrayList value) { this.LastSavedDateTimeIn = value; return this; } public Integer getDisplayOrder() { return DisplayOrder; } public CR_CreditorCreditAdjustmentLineCustomFieldsQuery setDisplayOrder(Integer value) { this.DisplayOrder = value; return this; } public Integer getDisplayOrderGreaterThanOrEqualTo() { return DisplayOrderGreaterThanOrEqualTo; } public CR_CreditorCreditAdjustmentLineCustomFieldsQuery setDisplayOrderGreaterThanOrEqualTo(Integer value) { this.DisplayOrderGreaterThanOrEqualTo = value; return this; } public Integer getDisplayOrderGreaterThan() { return DisplayOrderGreaterThan; } public CR_CreditorCreditAdjustmentLineCustomFieldsQuery setDisplayOrderGreaterThan(Integer value) { this.DisplayOrderGreaterThan = value; return this; } public Integer getDisplayOrderLessThan() { return DisplayOrderLessThan; } public CR_CreditorCreditAdjustmentLineCustomFieldsQuery setDisplayOrderLessThan(Integer value) { this.DisplayOrderLessThan = value; return this; } public Integer getDisplayOrderLessThanOrEqualTo() { return DisplayOrderLessThanOrEqualTo; } public CR_CreditorCreditAdjustmentLineCustomFieldsQuery setDisplayOrderLessThanOrEqualTo(Integer value) { this.DisplayOrderLessThanOrEqualTo = value; return this; } public Integer getDisplayOrderNotEqualTo() { return DisplayOrderNotEqualTo; } public CR_CreditorCreditAdjustmentLineCustomFieldsQuery setDisplayOrderNotEqualTo(Integer value) { this.DisplayOrderNotEqualTo = value; return this; } public ArrayList getDisplayOrderBetween() { return DisplayOrderBetween; } public CR_CreditorCreditAdjustmentLineCustomFieldsQuery setDisplayOrderBetween(ArrayList value) { this.DisplayOrderBetween = value; return this; } public ArrayList getDisplayOrderIn() { return DisplayOrderIn; } public CR_CreditorCreditAdjustmentLineCustomFieldsQuery setDisplayOrderIn(ArrayList value) { this.DisplayOrderIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class CR_CreditorCreditAdjustmentLineCustomValuesQuery extends QueryDb implements IReturn> { public String RecID = null; public String RecIDStartsWith = null; public String RecIDEndsWith = null; public String RecIDContains = null; public String RecIDLike = null; public ArrayList RecIDBetween = null; public ArrayList RecIDIn = null; public String CR_CreditorCreditAdjustmentLines_RecID = null; public String CR_CreditorCreditAdjustmentLines_RecIDStartsWith = null; public String CR_CreditorCreditAdjustmentLines_RecIDEndsWith = null; public String CR_CreditorCreditAdjustmentLines_RecIDContains = null; public String CR_CreditorCreditAdjustmentLines_RecIDLike = null; public ArrayList CR_CreditorCreditAdjustmentLines_RecIDBetween = null; public ArrayList CR_CreditorCreditAdjustmentLines_RecIDIn = null; public String CR_CreditorCreditAdjustmentLineCustomFields_RecID = null; public String CR_CreditorCreditAdjustmentLineCustomFields_RecIDStartsWith = null; public String CR_CreditorCreditAdjustmentLineCustomFields_RecIDEndsWith = null; public String CR_CreditorCreditAdjustmentLineCustomFields_RecIDContains = null; public String CR_CreditorCreditAdjustmentLineCustomFields_RecIDLike = null; public ArrayList CR_CreditorCreditAdjustmentLineCustomFields_RecIDBetween = null; public ArrayList CR_CreditorCreditAdjustmentLineCustomFields_RecIDIn = null; public String Contents = null; public String ContentsStartsWith = null; public String ContentsEndsWith = null; public String ContentsContains = null; public String ContentsLike = null; public ArrayList ContentsBetween = null; public ArrayList ContentsIn = null; public Date LastSavedDateTime = null; public Date LastSavedDateTimeGreaterThanOrEqualTo = null; public Date LastSavedDateTimeGreaterThan = null; public Date LastSavedDateTimeLessThan = null; public Date LastSavedDateTimeLessThanOrEqualTo = null; public Date LastSavedDateTimeNotEqualTo = null; public ArrayList LastSavedDateTimeBetween = null; public ArrayList LastSavedDateTimeIn = null; public String getRecID() { return RecID; } public CR_CreditorCreditAdjustmentLineCustomValuesQuery setRecID(String value) { this.RecID = value; return this; } public String getRecIDStartsWith() { return RecIDStartsWith; } public CR_CreditorCreditAdjustmentLineCustomValuesQuery setRecIDStartsWith(String value) { this.RecIDStartsWith = value; return this; } public String getRecIDEndsWith() { return RecIDEndsWith; } public CR_CreditorCreditAdjustmentLineCustomValuesQuery setRecIDEndsWith(String value) { this.RecIDEndsWith = value; return this; } public String getRecIDContains() { return RecIDContains; } public CR_CreditorCreditAdjustmentLineCustomValuesQuery setRecIDContains(String value) { this.RecIDContains = value; return this; } public String getRecIDLike() { return RecIDLike; } public CR_CreditorCreditAdjustmentLineCustomValuesQuery setRecIDLike(String value) { this.RecIDLike = value; return this; } public ArrayList getRecIDBetween() { return RecIDBetween; } public CR_CreditorCreditAdjustmentLineCustomValuesQuery setRecIDBetween(ArrayList value) { this.RecIDBetween = value; return this; } public ArrayList getRecIDIn() { return RecIDIn; } public CR_CreditorCreditAdjustmentLineCustomValuesQuery setRecIDIn(ArrayList value) { this.RecIDIn = value; return this; } public String getCrCreditorCreditAdjustmentLinesRecID() { return CR_CreditorCreditAdjustmentLines_RecID; } public CR_CreditorCreditAdjustmentLineCustomValuesQuery setCrCreditorCreditAdjustmentLinesRecID(String value) { this.CR_CreditorCreditAdjustmentLines_RecID = value; return this; } public String getCrCreditorCreditAdjustmentLinesRecIDStartsWith() { return CR_CreditorCreditAdjustmentLines_RecIDStartsWith; } public CR_CreditorCreditAdjustmentLineCustomValuesQuery setCrCreditorCreditAdjustmentLinesRecIDStartsWith(String value) { this.CR_CreditorCreditAdjustmentLines_RecIDStartsWith = value; return this; } public String getCrCreditorCreditAdjustmentLinesRecIDEndsWith() { return CR_CreditorCreditAdjustmentLines_RecIDEndsWith; } public CR_CreditorCreditAdjustmentLineCustomValuesQuery setCrCreditorCreditAdjustmentLinesRecIDEndsWith(String value) { this.CR_CreditorCreditAdjustmentLines_RecIDEndsWith = value; return this; } public String getCrCreditorCreditAdjustmentLinesRecIDContains() { return CR_CreditorCreditAdjustmentLines_RecIDContains; } public CR_CreditorCreditAdjustmentLineCustomValuesQuery setCrCreditorCreditAdjustmentLinesRecIDContains(String value) { this.CR_CreditorCreditAdjustmentLines_RecIDContains = value; return this; } public String getCrCreditorCreditAdjustmentLinesRecIDLike() { return CR_CreditorCreditAdjustmentLines_RecIDLike; } public CR_CreditorCreditAdjustmentLineCustomValuesQuery setCrCreditorCreditAdjustmentLinesRecIDLike(String value) { this.CR_CreditorCreditAdjustmentLines_RecIDLike = value; return this; } public ArrayList getCrCreditorCreditAdjustmentLinesRecIDBetween() { return CR_CreditorCreditAdjustmentLines_RecIDBetween; } public CR_CreditorCreditAdjustmentLineCustomValuesQuery setCrCreditorCreditAdjustmentLinesRecIDBetween(ArrayList value) { this.CR_CreditorCreditAdjustmentLines_RecIDBetween = value; return this; } public ArrayList getCrCreditorCreditAdjustmentLinesRecIDIn() { return CR_CreditorCreditAdjustmentLines_RecIDIn; } public CR_CreditorCreditAdjustmentLineCustomValuesQuery setCrCreditorCreditAdjustmentLinesRecIDIn(ArrayList value) { this.CR_CreditorCreditAdjustmentLines_RecIDIn = value; return this; } public String getCrCreditorCreditAdjustmentLineCustomFieldsRecID() { return CR_CreditorCreditAdjustmentLineCustomFields_RecID; } public CR_CreditorCreditAdjustmentLineCustomValuesQuery setCrCreditorCreditAdjustmentLineCustomFieldsRecID(String value) { this.CR_CreditorCreditAdjustmentLineCustomFields_RecID = value; return this; } public String getCrCreditorCreditAdjustmentLineCustomFieldsRecIDStartsWith() { return CR_CreditorCreditAdjustmentLineCustomFields_RecIDStartsWith; } public CR_CreditorCreditAdjustmentLineCustomValuesQuery setCrCreditorCreditAdjustmentLineCustomFieldsRecIDStartsWith(String value) { this.CR_CreditorCreditAdjustmentLineCustomFields_RecIDStartsWith = value; return this; } public String getCrCreditorCreditAdjustmentLineCustomFieldsRecIDEndsWith() { return CR_CreditorCreditAdjustmentLineCustomFields_RecIDEndsWith; } public CR_CreditorCreditAdjustmentLineCustomValuesQuery setCrCreditorCreditAdjustmentLineCustomFieldsRecIDEndsWith(String value) { this.CR_CreditorCreditAdjustmentLineCustomFields_RecIDEndsWith = value; return this; } public String getCrCreditorCreditAdjustmentLineCustomFieldsRecIDContains() { return CR_CreditorCreditAdjustmentLineCustomFields_RecIDContains; } public CR_CreditorCreditAdjustmentLineCustomValuesQuery setCrCreditorCreditAdjustmentLineCustomFieldsRecIDContains(String value) { this.CR_CreditorCreditAdjustmentLineCustomFields_RecIDContains = value; return this; } public String getCrCreditorCreditAdjustmentLineCustomFieldsRecIDLike() { return CR_CreditorCreditAdjustmentLineCustomFields_RecIDLike; } public CR_CreditorCreditAdjustmentLineCustomValuesQuery setCrCreditorCreditAdjustmentLineCustomFieldsRecIDLike(String value) { this.CR_CreditorCreditAdjustmentLineCustomFields_RecIDLike = value; return this; } public ArrayList getCrCreditorCreditAdjustmentLineCustomFieldsRecIDBetween() { return CR_CreditorCreditAdjustmentLineCustomFields_RecIDBetween; } public CR_CreditorCreditAdjustmentLineCustomValuesQuery setCrCreditorCreditAdjustmentLineCustomFieldsRecIDBetween(ArrayList value) { this.CR_CreditorCreditAdjustmentLineCustomFields_RecIDBetween = value; return this; } public ArrayList getCrCreditorCreditAdjustmentLineCustomFieldsRecIDIn() { return CR_CreditorCreditAdjustmentLineCustomFields_RecIDIn; } public CR_CreditorCreditAdjustmentLineCustomValuesQuery setCrCreditorCreditAdjustmentLineCustomFieldsRecIDIn(ArrayList value) { this.CR_CreditorCreditAdjustmentLineCustomFields_RecIDIn = value; return this; } public String getContents() { return Contents; } public CR_CreditorCreditAdjustmentLineCustomValuesQuery setContents(String value) { this.Contents = value; return this; } public String getContentsStartsWith() { return ContentsStartsWith; } public CR_CreditorCreditAdjustmentLineCustomValuesQuery setContentsStartsWith(String value) { this.ContentsStartsWith = value; return this; } public String getContentsEndsWith() { return ContentsEndsWith; } public CR_CreditorCreditAdjustmentLineCustomValuesQuery setContentsEndsWith(String value) { this.ContentsEndsWith = value; return this; } public String getContentsContains() { return ContentsContains; } public CR_CreditorCreditAdjustmentLineCustomValuesQuery setContentsContains(String value) { this.ContentsContains = value; return this; } public String getContentsLike() { return ContentsLike; } public CR_CreditorCreditAdjustmentLineCustomValuesQuery setContentsLike(String value) { this.ContentsLike = value; return this; } public ArrayList getContentsBetween() { return ContentsBetween; } public CR_CreditorCreditAdjustmentLineCustomValuesQuery setContentsBetween(ArrayList value) { this.ContentsBetween = value; return this; } public ArrayList getContentsIn() { return ContentsIn; } public CR_CreditorCreditAdjustmentLineCustomValuesQuery setContentsIn(ArrayList value) { this.ContentsIn = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public CR_CreditorCreditAdjustmentLineCustomValuesQuery setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getLastSavedDateTimeGreaterThanOrEqualTo() { return LastSavedDateTimeGreaterThanOrEqualTo; } public CR_CreditorCreditAdjustmentLineCustomValuesQuery setLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.LastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeGreaterThan() { return LastSavedDateTimeGreaterThan; } public CR_CreditorCreditAdjustmentLineCustomValuesQuery setLastSavedDateTimeGreaterThan(Date value) { this.LastSavedDateTimeGreaterThan = value; return this; } public Date getLastSavedDateTimeLessThan() { return LastSavedDateTimeLessThan; } public CR_CreditorCreditAdjustmentLineCustomValuesQuery setLastSavedDateTimeLessThan(Date value) { this.LastSavedDateTimeLessThan = value; return this; } public Date getLastSavedDateTimeLessThanOrEqualTo() { return LastSavedDateTimeLessThanOrEqualTo; } public CR_CreditorCreditAdjustmentLineCustomValuesQuery setLastSavedDateTimeLessThanOrEqualTo(Date value) { this.LastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeNotEqualTo() { return LastSavedDateTimeNotEqualTo; } public CR_CreditorCreditAdjustmentLineCustomValuesQuery setLastSavedDateTimeNotEqualTo(Date value) { this.LastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getLastSavedDateTimeBetween() { return LastSavedDateTimeBetween; } public CR_CreditorCreditAdjustmentLineCustomValuesQuery setLastSavedDateTimeBetween(ArrayList value) { this.LastSavedDateTimeBetween = value; return this; } public ArrayList getLastSavedDateTimeIn() { return LastSavedDateTimeIn; } public CR_CreditorCreditAdjustmentLineCustomValuesQuery setLastSavedDateTimeIn(ArrayList value) { this.LastSavedDateTimeIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class CR_CreditorDebitAdjustmentLineCustomFieldsQuery extends QueryDb implements IReturn> { public String RecID = null; public String RecIDStartsWith = null; public String RecIDEndsWith = null; public String RecIDContains = null; public String RecIDLike = null; public ArrayList RecIDBetween = null; public ArrayList RecIDIn = null; public String SettingName = null; public String SettingNameStartsWith = null; public String SettingNameEndsWith = null; public String SettingNameContains = null; public String SettingNameLike = null; public ArrayList SettingNameBetween = null; public ArrayList SettingNameIn = null; public String SettingDescription = null; public String SettingDescriptionStartsWith = null; public String SettingDescriptionEndsWith = null; public String SettingDescriptionContains = null; public String SettingDescriptionLike = null; public ArrayList SettingDescriptionBetween = null; public ArrayList SettingDescriptionIn = null; public Integer CellType = null; public Integer CellTypeGreaterThanOrEqualTo = null; public Integer CellTypeGreaterThan = null; public Integer CellTypeLessThan = null; public Integer CellTypeLessThanOrEqualTo = null; public Integer CellTypeNotEqualTo = null; public ArrayList CellTypeBetween = null; public ArrayList CellTypeIn = null; public String FieldParameter = null; public String FieldParameterStartsWith = null; public String FieldParameterEndsWith = null; public String FieldParameterContains = null; public String FieldParameterLike = null; public ArrayList FieldParameterBetween = null; public ArrayList FieldParameterIn = null; public UUID SY_Plugin_RecID = null; public ArrayList SY_Plugin_RecIDIn = null; public Date LastSavedDateTime = null; public Date LastSavedDateTimeGreaterThanOrEqualTo = null; public Date LastSavedDateTimeGreaterThan = null; public Date LastSavedDateTimeLessThan = null; public Date LastSavedDateTimeLessThanOrEqualTo = null; public Date LastSavedDateTimeNotEqualTo = null; public ArrayList LastSavedDateTimeBetween = null; public ArrayList LastSavedDateTimeIn = null; public Integer DisplayOrder = null; public Integer DisplayOrderGreaterThanOrEqualTo = null; public Integer DisplayOrderGreaterThan = null; public Integer DisplayOrderLessThan = null; public Integer DisplayOrderLessThanOrEqualTo = null; public Integer DisplayOrderNotEqualTo = null; public ArrayList DisplayOrderBetween = null; public ArrayList DisplayOrderIn = null; public String getRecID() { return RecID; } public CR_CreditorDebitAdjustmentLineCustomFieldsQuery setRecID(String value) { this.RecID = value; return this; } public String getRecIDStartsWith() { return RecIDStartsWith; } public CR_CreditorDebitAdjustmentLineCustomFieldsQuery setRecIDStartsWith(String value) { this.RecIDStartsWith = value; return this; } public String getRecIDEndsWith() { return RecIDEndsWith; } public CR_CreditorDebitAdjustmentLineCustomFieldsQuery setRecIDEndsWith(String value) { this.RecIDEndsWith = value; return this; } public String getRecIDContains() { return RecIDContains; } public CR_CreditorDebitAdjustmentLineCustomFieldsQuery setRecIDContains(String value) { this.RecIDContains = value; return this; } public String getRecIDLike() { return RecIDLike; } public CR_CreditorDebitAdjustmentLineCustomFieldsQuery setRecIDLike(String value) { this.RecIDLike = value; return this; } public ArrayList getRecIDBetween() { return RecIDBetween; } public CR_CreditorDebitAdjustmentLineCustomFieldsQuery setRecIDBetween(ArrayList value) { this.RecIDBetween = value; return this; } public ArrayList getRecIDIn() { return RecIDIn; } public CR_CreditorDebitAdjustmentLineCustomFieldsQuery setRecIDIn(ArrayList value) { this.RecIDIn = value; return this; } public String getSettingName() { return SettingName; } public CR_CreditorDebitAdjustmentLineCustomFieldsQuery setSettingName(String value) { this.SettingName = value; return this; } public String getSettingNameStartsWith() { return SettingNameStartsWith; } public CR_CreditorDebitAdjustmentLineCustomFieldsQuery setSettingNameStartsWith(String value) { this.SettingNameStartsWith = value; return this; } public String getSettingNameEndsWith() { return SettingNameEndsWith; } public CR_CreditorDebitAdjustmentLineCustomFieldsQuery setSettingNameEndsWith(String value) { this.SettingNameEndsWith = value; return this; } public String getSettingNameContains() { return SettingNameContains; } public CR_CreditorDebitAdjustmentLineCustomFieldsQuery setSettingNameContains(String value) { this.SettingNameContains = value; return this; } public String getSettingNameLike() { return SettingNameLike; } public CR_CreditorDebitAdjustmentLineCustomFieldsQuery setSettingNameLike(String value) { this.SettingNameLike = value; return this; } public ArrayList getSettingNameBetween() { return SettingNameBetween; } public CR_CreditorDebitAdjustmentLineCustomFieldsQuery setSettingNameBetween(ArrayList value) { this.SettingNameBetween = value; return this; } public ArrayList getSettingNameIn() { return SettingNameIn; } public CR_CreditorDebitAdjustmentLineCustomFieldsQuery setSettingNameIn(ArrayList value) { this.SettingNameIn = value; return this; } public String getSettingDescription() { return SettingDescription; } public CR_CreditorDebitAdjustmentLineCustomFieldsQuery setSettingDescription(String value) { this.SettingDescription = value; return this; } public String getSettingDescriptionStartsWith() { return SettingDescriptionStartsWith; } public CR_CreditorDebitAdjustmentLineCustomFieldsQuery setSettingDescriptionStartsWith(String value) { this.SettingDescriptionStartsWith = value; return this; } public String getSettingDescriptionEndsWith() { return SettingDescriptionEndsWith; } public CR_CreditorDebitAdjustmentLineCustomFieldsQuery setSettingDescriptionEndsWith(String value) { this.SettingDescriptionEndsWith = value; return this; } public String getSettingDescriptionContains() { return SettingDescriptionContains; } public CR_CreditorDebitAdjustmentLineCustomFieldsQuery setSettingDescriptionContains(String value) { this.SettingDescriptionContains = value; return this; } public String getSettingDescriptionLike() { return SettingDescriptionLike; } public CR_CreditorDebitAdjustmentLineCustomFieldsQuery setSettingDescriptionLike(String value) { this.SettingDescriptionLike = value; return this; } public ArrayList getSettingDescriptionBetween() { return SettingDescriptionBetween; } public CR_CreditorDebitAdjustmentLineCustomFieldsQuery setSettingDescriptionBetween(ArrayList value) { this.SettingDescriptionBetween = value; return this; } public ArrayList getSettingDescriptionIn() { return SettingDescriptionIn; } public CR_CreditorDebitAdjustmentLineCustomFieldsQuery setSettingDescriptionIn(ArrayList value) { this.SettingDescriptionIn = value; return this; } public Integer getCellType() { return CellType; } public CR_CreditorDebitAdjustmentLineCustomFieldsQuery setCellType(Integer value) { this.CellType = value; return this; } public Integer getCellTypeGreaterThanOrEqualTo() { return CellTypeGreaterThanOrEqualTo; } public CR_CreditorDebitAdjustmentLineCustomFieldsQuery setCellTypeGreaterThanOrEqualTo(Integer value) { this.CellTypeGreaterThanOrEqualTo = value; return this; } public Integer getCellTypeGreaterThan() { return CellTypeGreaterThan; } public CR_CreditorDebitAdjustmentLineCustomFieldsQuery setCellTypeGreaterThan(Integer value) { this.CellTypeGreaterThan = value; return this; } public Integer getCellTypeLessThan() { return CellTypeLessThan; } public CR_CreditorDebitAdjustmentLineCustomFieldsQuery setCellTypeLessThan(Integer value) { this.CellTypeLessThan = value; return this; } public Integer getCellTypeLessThanOrEqualTo() { return CellTypeLessThanOrEqualTo; } public CR_CreditorDebitAdjustmentLineCustomFieldsQuery setCellTypeLessThanOrEqualTo(Integer value) { this.CellTypeLessThanOrEqualTo = value; return this; } public Integer getCellTypeNotEqualTo() { return CellTypeNotEqualTo; } public CR_CreditorDebitAdjustmentLineCustomFieldsQuery setCellTypeNotEqualTo(Integer value) { this.CellTypeNotEqualTo = value; return this; } public ArrayList getCellTypeBetween() { return CellTypeBetween; } public CR_CreditorDebitAdjustmentLineCustomFieldsQuery setCellTypeBetween(ArrayList value) { this.CellTypeBetween = value; return this; } public ArrayList getCellTypeIn() { return CellTypeIn; } public CR_CreditorDebitAdjustmentLineCustomFieldsQuery setCellTypeIn(ArrayList value) { this.CellTypeIn = value; return this; } public String getFieldParameter() { return FieldParameter; } public CR_CreditorDebitAdjustmentLineCustomFieldsQuery setFieldParameter(String value) { this.FieldParameter = value; return this; } public String getFieldParameterStartsWith() { return FieldParameterStartsWith; } public CR_CreditorDebitAdjustmentLineCustomFieldsQuery setFieldParameterStartsWith(String value) { this.FieldParameterStartsWith = value; return this; } public String getFieldParameterEndsWith() { return FieldParameterEndsWith; } public CR_CreditorDebitAdjustmentLineCustomFieldsQuery setFieldParameterEndsWith(String value) { this.FieldParameterEndsWith = value; return this; } public String getFieldParameterContains() { return FieldParameterContains; } public CR_CreditorDebitAdjustmentLineCustomFieldsQuery setFieldParameterContains(String value) { this.FieldParameterContains = value; return this; } public String getFieldParameterLike() { return FieldParameterLike; } public CR_CreditorDebitAdjustmentLineCustomFieldsQuery setFieldParameterLike(String value) { this.FieldParameterLike = value; return this; } public ArrayList getFieldParameterBetween() { return FieldParameterBetween; } public CR_CreditorDebitAdjustmentLineCustomFieldsQuery setFieldParameterBetween(ArrayList value) { this.FieldParameterBetween = value; return this; } public ArrayList getFieldParameterIn() { return FieldParameterIn; } public CR_CreditorDebitAdjustmentLineCustomFieldsQuery setFieldParameterIn(ArrayList value) { this.FieldParameterIn = value; return this; } public UUID getSyPluginRecID() { return SY_Plugin_RecID; } public CR_CreditorDebitAdjustmentLineCustomFieldsQuery setSyPluginRecID(UUID value) { this.SY_Plugin_RecID = value; return this; } public ArrayList getSyPluginRecIDIn() { return SY_Plugin_RecIDIn; } public CR_CreditorDebitAdjustmentLineCustomFieldsQuery setSyPluginRecIDIn(ArrayList value) { this.SY_Plugin_RecIDIn = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public CR_CreditorDebitAdjustmentLineCustomFieldsQuery setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getLastSavedDateTimeGreaterThanOrEqualTo() { return LastSavedDateTimeGreaterThanOrEqualTo; } public CR_CreditorDebitAdjustmentLineCustomFieldsQuery setLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.LastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeGreaterThan() { return LastSavedDateTimeGreaterThan; } public CR_CreditorDebitAdjustmentLineCustomFieldsQuery setLastSavedDateTimeGreaterThan(Date value) { this.LastSavedDateTimeGreaterThan = value; return this; } public Date getLastSavedDateTimeLessThan() { return LastSavedDateTimeLessThan; } public CR_CreditorDebitAdjustmentLineCustomFieldsQuery setLastSavedDateTimeLessThan(Date value) { this.LastSavedDateTimeLessThan = value; return this; } public Date getLastSavedDateTimeLessThanOrEqualTo() { return LastSavedDateTimeLessThanOrEqualTo; } public CR_CreditorDebitAdjustmentLineCustomFieldsQuery setLastSavedDateTimeLessThanOrEqualTo(Date value) { this.LastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeNotEqualTo() { return LastSavedDateTimeNotEqualTo; } public CR_CreditorDebitAdjustmentLineCustomFieldsQuery setLastSavedDateTimeNotEqualTo(Date value) { this.LastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getLastSavedDateTimeBetween() { return LastSavedDateTimeBetween; } public CR_CreditorDebitAdjustmentLineCustomFieldsQuery setLastSavedDateTimeBetween(ArrayList value) { this.LastSavedDateTimeBetween = value; return this; } public ArrayList getLastSavedDateTimeIn() { return LastSavedDateTimeIn; } public CR_CreditorDebitAdjustmentLineCustomFieldsQuery setLastSavedDateTimeIn(ArrayList value) { this.LastSavedDateTimeIn = value; return this; } public Integer getDisplayOrder() { return DisplayOrder; } public CR_CreditorDebitAdjustmentLineCustomFieldsQuery setDisplayOrder(Integer value) { this.DisplayOrder = value; return this; } public Integer getDisplayOrderGreaterThanOrEqualTo() { return DisplayOrderGreaterThanOrEqualTo; } public CR_CreditorDebitAdjustmentLineCustomFieldsQuery setDisplayOrderGreaterThanOrEqualTo(Integer value) { this.DisplayOrderGreaterThanOrEqualTo = value; return this; } public Integer getDisplayOrderGreaterThan() { return DisplayOrderGreaterThan; } public CR_CreditorDebitAdjustmentLineCustomFieldsQuery setDisplayOrderGreaterThan(Integer value) { this.DisplayOrderGreaterThan = value; return this; } public Integer getDisplayOrderLessThan() { return DisplayOrderLessThan; } public CR_CreditorDebitAdjustmentLineCustomFieldsQuery setDisplayOrderLessThan(Integer value) { this.DisplayOrderLessThan = value; return this; } public Integer getDisplayOrderLessThanOrEqualTo() { return DisplayOrderLessThanOrEqualTo; } public CR_CreditorDebitAdjustmentLineCustomFieldsQuery setDisplayOrderLessThanOrEqualTo(Integer value) { this.DisplayOrderLessThanOrEqualTo = value; return this; } public Integer getDisplayOrderNotEqualTo() { return DisplayOrderNotEqualTo; } public CR_CreditorDebitAdjustmentLineCustomFieldsQuery setDisplayOrderNotEqualTo(Integer value) { this.DisplayOrderNotEqualTo = value; return this; } public ArrayList getDisplayOrderBetween() { return DisplayOrderBetween; } public CR_CreditorDebitAdjustmentLineCustomFieldsQuery setDisplayOrderBetween(ArrayList value) { this.DisplayOrderBetween = value; return this; } public ArrayList getDisplayOrderIn() { return DisplayOrderIn; } public CR_CreditorDebitAdjustmentLineCustomFieldsQuery setDisplayOrderIn(ArrayList value) { this.DisplayOrderIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class CR_CreditorDebitAdjustmentLineCustomValuesQuery extends QueryDb implements IReturn> { public String RecID = null; public String RecIDStartsWith = null; public String RecIDEndsWith = null; public String RecIDContains = null; public String RecIDLike = null; public ArrayList RecIDBetween = null; public ArrayList RecIDIn = null; public String CR_CreditorDebitAdjustmentLines_RecID = null; public String CR_CreditorDebitAdjustmentLines_RecIDStartsWith = null; public String CR_CreditorDebitAdjustmentLines_RecIDEndsWith = null; public String CR_CreditorDebitAdjustmentLines_RecIDContains = null; public String CR_CreditorDebitAdjustmentLines_RecIDLike = null; public ArrayList CR_CreditorDebitAdjustmentLines_RecIDBetween = null; public ArrayList CR_CreditorDebitAdjustmentLines_RecIDIn = null; public String CR_CreditorDebitAdjustmentLineCustomFields_RecID = null; public String CR_CreditorDebitAdjustmentLineCustomFields_RecIDStartsWith = null; public String CR_CreditorDebitAdjustmentLineCustomFields_RecIDEndsWith = null; public String CR_CreditorDebitAdjustmentLineCustomFields_RecIDContains = null; public String CR_CreditorDebitAdjustmentLineCustomFields_RecIDLike = null; public ArrayList CR_CreditorDebitAdjustmentLineCustomFields_RecIDBetween = null; public ArrayList CR_CreditorDebitAdjustmentLineCustomFields_RecIDIn = null; public String Contents = null; public String ContentsStartsWith = null; public String ContentsEndsWith = null; public String ContentsContains = null; public String ContentsLike = null; public ArrayList ContentsBetween = null; public ArrayList ContentsIn = null; public Date LastSavedDateTime = null; public Date LastSavedDateTimeGreaterThanOrEqualTo = null; public Date LastSavedDateTimeGreaterThan = null; public Date LastSavedDateTimeLessThan = null; public Date LastSavedDateTimeLessThanOrEqualTo = null; public Date LastSavedDateTimeNotEqualTo = null; public ArrayList LastSavedDateTimeBetween = null; public ArrayList LastSavedDateTimeIn = null; public String getRecID() { return RecID; } public CR_CreditorDebitAdjustmentLineCustomValuesQuery setRecID(String value) { this.RecID = value; return this; } public String getRecIDStartsWith() { return RecIDStartsWith; } public CR_CreditorDebitAdjustmentLineCustomValuesQuery setRecIDStartsWith(String value) { this.RecIDStartsWith = value; return this; } public String getRecIDEndsWith() { return RecIDEndsWith; } public CR_CreditorDebitAdjustmentLineCustomValuesQuery setRecIDEndsWith(String value) { this.RecIDEndsWith = value; return this; } public String getRecIDContains() { return RecIDContains; } public CR_CreditorDebitAdjustmentLineCustomValuesQuery setRecIDContains(String value) { this.RecIDContains = value; return this; } public String getRecIDLike() { return RecIDLike; } public CR_CreditorDebitAdjustmentLineCustomValuesQuery setRecIDLike(String value) { this.RecIDLike = value; return this; } public ArrayList getRecIDBetween() { return RecIDBetween; } public CR_CreditorDebitAdjustmentLineCustomValuesQuery setRecIDBetween(ArrayList value) { this.RecIDBetween = value; return this; } public ArrayList getRecIDIn() { return RecIDIn; } public CR_CreditorDebitAdjustmentLineCustomValuesQuery setRecIDIn(ArrayList value) { this.RecIDIn = value; return this; } public String getCrCreditorDebitAdjustmentLinesRecID() { return CR_CreditorDebitAdjustmentLines_RecID; } public CR_CreditorDebitAdjustmentLineCustomValuesQuery setCrCreditorDebitAdjustmentLinesRecID(String value) { this.CR_CreditorDebitAdjustmentLines_RecID = value; return this; } public String getCrCreditorDebitAdjustmentLinesRecIDStartsWith() { return CR_CreditorDebitAdjustmentLines_RecIDStartsWith; } public CR_CreditorDebitAdjustmentLineCustomValuesQuery setCrCreditorDebitAdjustmentLinesRecIDStartsWith(String value) { this.CR_CreditorDebitAdjustmentLines_RecIDStartsWith = value; return this; } public String getCrCreditorDebitAdjustmentLinesRecIDEndsWith() { return CR_CreditorDebitAdjustmentLines_RecIDEndsWith; } public CR_CreditorDebitAdjustmentLineCustomValuesQuery setCrCreditorDebitAdjustmentLinesRecIDEndsWith(String value) { this.CR_CreditorDebitAdjustmentLines_RecIDEndsWith = value; return this; } public String getCrCreditorDebitAdjustmentLinesRecIDContains() { return CR_CreditorDebitAdjustmentLines_RecIDContains; } public CR_CreditorDebitAdjustmentLineCustomValuesQuery setCrCreditorDebitAdjustmentLinesRecIDContains(String value) { this.CR_CreditorDebitAdjustmentLines_RecIDContains = value; return this; } public String getCrCreditorDebitAdjustmentLinesRecIDLike() { return CR_CreditorDebitAdjustmentLines_RecIDLike; } public CR_CreditorDebitAdjustmentLineCustomValuesQuery setCrCreditorDebitAdjustmentLinesRecIDLike(String value) { this.CR_CreditorDebitAdjustmentLines_RecIDLike = value; return this; } public ArrayList getCrCreditorDebitAdjustmentLinesRecIDBetween() { return CR_CreditorDebitAdjustmentLines_RecIDBetween; } public CR_CreditorDebitAdjustmentLineCustomValuesQuery setCrCreditorDebitAdjustmentLinesRecIDBetween(ArrayList value) { this.CR_CreditorDebitAdjustmentLines_RecIDBetween = value; return this; } public ArrayList getCrCreditorDebitAdjustmentLinesRecIDIn() { return CR_CreditorDebitAdjustmentLines_RecIDIn; } public CR_CreditorDebitAdjustmentLineCustomValuesQuery setCrCreditorDebitAdjustmentLinesRecIDIn(ArrayList value) { this.CR_CreditorDebitAdjustmentLines_RecIDIn = value; return this; } public String getCrCreditorDebitAdjustmentLineCustomFieldsRecID() { return CR_CreditorDebitAdjustmentLineCustomFields_RecID; } public CR_CreditorDebitAdjustmentLineCustomValuesQuery setCrCreditorDebitAdjustmentLineCustomFieldsRecID(String value) { this.CR_CreditorDebitAdjustmentLineCustomFields_RecID = value; return this; } public String getCrCreditorDebitAdjustmentLineCustomFieldsRecIDStartsWith() { return CR_CreditorDebitAdjustmentLineCustomFields_RecIDStartsWith; } public CR_CreditorDebitAdjustmentLineCustomValuesQuery setCrCreditorDebitAdjustmentLineCustomFieldsRecIDStartsWith(String value) { this.CR_CreditorDebitAdjustmentLineCustomFields_RecIDStartsWith = value; return this; } public String getCrCreditorDebitAdjustmentLineCustomFieldsRecIDEndsWith() { return CR_CreditorDebitAdjustmentLineCustomFields_RecIDEndsWith; } public CR_CreditorDebitAdjustmentLineCustomValuesQuery setCrCreditorDebitAdjustmentLineCustomFieldsRecIDEndsWith(String value) { this.CR_CreditorDebitAdjustmentLineCustomFields_RecIDEndsWith = value; return this; } public String getCrCreditorDebitAdjustmentLineCustomFieldsRecIDContains() { return CR_CreditorDebitAdjustmentLineCustomFields_RecIDContains; } public CR_CreditorDebitAdjustmentLineCustomValuesQuery setCrCreditorDebitAdjustmentLineCustomFieldsRecIDContains(String value) { this.CR_CreditorDebitAdjustmentLineCustomFields_RecIDContains = value; return this; } public String getCrCreditorDebitAdjustmentLineCustomFieldsRecIDLike() { return CR_CreditorDebitAdjustmentLineCustomFields_RecIDLike; } public CR_CreditorDebitAdjustmentLineCustomValuesQuery setCrCreditorDebitAdjustmentLineCustomFieldsRecIDLike(String value) { this.CR_CreditorDebitAdjustmentLineCustomFields_RecIDLike = value; return this; } public ArrayList getCrCreditorDebitAdjustmentLineCustomFieldsRecIDBetween() { return CR_CreditorDebitAdjustmentLineCustomFields_RecIDBetween; } public CR_CreditorDebitAdjustmentLineCustomValuesQuery setCrCreditorDebitAdjustmentLineCustomFieldsRecIDBetween(ArrayList value) { this.CR_CreditorDebitAdjustmentLineCustomFields_RecIDBetween = value; return this; } public ArrayList getCrCreditorDebitAdjustmentLineCustomFieldsRecIDIn() { return CR_CreditorDebitAdjustmentLineCustomFields_RecIDIn; } public CR_CreditorDebitAdjustmentLineCustomValuesQuery setCrCreditorDebitAdjustmentLineCustomFieldsRecIDIn(ArrayList value) { this.CR_CreditorDebitAdjustmentLineCustomFields_RecIDIn = value; return this; } public String getContents() { return Contents; } public CR_CreditorDebitAdjustmentLineCustomValuesQuery setContents(String value) { this.Contents = value; return this; } public String getContentsStartsWith() { return ContentsStartsWith; } public CR_CreditorDebitAdjustmentLineCustomValuesQuery setContentsStartsWith(String value) { this.ContentsStartsWith = value; return this; } public String getContentsEndsWith() { return ContentsEndsWith; } public CR_CreditorDebitAdjustmentLineCustomValuesQuery setContentsEndsWith(String value) { this.ContentsEndsWith = value; return this; } public String getContentsContains() { return ContentsContains; } public CR_CreditorDebitAdjustmentLineCustomValuesQuery setContentsContains(String value) { this.ContentsContains = value; return this; } public String getContentsLike() { return ContentsLike; } public CR_CreditorDebitAdjustmentLineCustomValuesQuery setContentsLike(String value) { this.ContentsLike = value; return this; } public ArrayList getContentsBetween() { return ContentsBetween; } public CR_CreditorDebitAdjustmentLineCustomValuesQuery setContentsBetween(ArrayList value) { this.ContentsBetween = value; return this; } public ArrayList getContentsIn() { return ContentsIn; } public CR_CreditorDebitAdjustmentLineCustomValuesQuery setContentsIn(ArrayList value) { this.ContentsIn = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public CR_CreditorDebitAdjustmentLineCustomValuesQuery setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getLastSavedDateTimeGreaterThanOrEqualTo() { return LastSavedDateTimeGreaterThanOrEqualTo; } public CR_CreditorDebitAdjustmentLineCustomValuesQuery setLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.LastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeGreaterThan() { return LastSavedDateTimeGreaterThan; } public CR_CreditorDebitAdjustmentLineCustomValuesQuery setLastSavedDateTimeGreaterThan(Date value) { this.LastSavedDateTimeGreaterThan = value; return this; } public Date getLastSavedDateTimeLessThan() { return LastSavedDateTimeLessThan; } public CR_CreditorDebitAdjustmentLineCustomValuesQuery setLastSavedDateTimeLessThan(Date value) { this.LastSavedDateTimeLessThan = value; return this; } public Date getLastSavedDateTimeLessThanOrEqualTo() { return LastSavedDateTimeLessThanOrEqualTo; } public CR_CreditorDebitAdjustmentLineCustomValuesQuery setLastSavedDateTimeLessThanOrEqualTo(Date value) { this.LastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeNotEqualTo() { return LastSavedDateTimeNotEqualTo; } public CR_CreditorDebitAdjustmentLineCustomValuesQuery setLastSavedDateTimeNotEqualTo(Date value) { this.LastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getLastSavedDateTimeBetween() { return LastSavedDateTimeBetween; } public CR_CreditorDebitAdjustmentLineCustomValuesQuery setLastSavedDateTimeBetween(ArrayList value) { this.LastSavedDateTimeBetween = value; return this; } public ArrayList getLastSavedDateTimeIn() { return LastSavedDateTimeIn; } public CR_CreditorDebitAdjustmentLineCustomValuesQuery setLastSavedDateTimeIn(ArrayList value) { this.LastSavedDateTimeIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class CR_CreditorPaymentLineCustomFieldsQuery extends QueryDb implements IReturn> { public String RecID = null; public String RecIDStartsWith = null; public String RecIDEndsWith = null; public String RecIDContains = null; public String RecIDLike = null; public ArrayList RecIDBetween = null; public ArrayList RecIDIn = null; public String SettingName = null; public String SettingNameStartsWith = null; public String SettingNameEndsWith = null; public String SettingNameContains = null; public String SettingNameLike = null; public ArrayList SettingNameBetween = null; public ArrayList SettingNameIn = null; public String SettingDescription = null; public String SettingDescriptionStartsWith = null; public String SettingDescriptionEndsWith = null; public String SettingDescriptionContains = null; public String SettingDescriptionLike = null; public ArrayList SettingDescriptionBetween = null; public ArrayList SettingDescriptionIn = null; public Integer CellType = null; public Integer CellTypeGreaterThanOrEqualTo = null; public Integer CellTypeGreaterThan = null; public Integer CellTypeLessThan = null; public Integer CellTypeLessThanOrEqualTo = null; public Integer CellTypeNotEqualTo = null; public ArrayList CellTypeBetween = null; public ArrayList CellTypeIn = null; public String FieldParameter = null; public String FieldParameterStartsWith = null; public String FieldParameterEndsWith = null; public String FieldParameterContains = null; public String FieldParameterLike = null; public ArrayList FieldParameterBetween = null; public ArrayList FieldParameterIn = null; public UUID SY_Plugin_RecID = null; public ArrayList SY_Plugin_RecIDIn = null; public Date LastSavedDateTime = null; public Date LastSavedDateTimeGreaterThanOrEqualTo = null; public Date LastSavedDateTimeGreaterThan = null; public Date LastSavedDateTimeLessThan = null; public Date LastSavedDateTimeLessThanOrEqualTo = null; public Date LastSavedDateTimeNotEqualTo = null; public ArrayList LastSavedDateTimeBetween = null; public ArrayList LastSavedDateTimeIn = null; public Integer DisplayOrder = null; public Integer DisplayOrderGreaterThanOrEqualTo = null; public Integer DisplayOrderGreaterThan = null; public Integer DisplayOrderLessThan = null; public Integer DisplayOrderLessThanOrEqualTo = null; public Integer DisplayOrderNotEqualTo = null; public ArrayList DisplayOrderBetween = null; public ArrayList DisplayOrderIn = null; public String getRecID() { return RecID; } public CR_CreditorPaymentLineCustomFieldsQuery setRecID(String value) { this.RecID = value; return this; } public String getRecIDStartsWith() { return RecIDStartsWith; } public CR_CreditorPaymentLineCustomFieldsQuery setRecIDStartsWith(String value) { this.RecIDStartsWith = value; return this; } public String getRecIDEndsWith() { return RecIDEndsWith; } public CR_CreditorPaymentLineCustomFieldsQuery setRecIDEndsWith(String value) { this.RecIDEndsWith = value; return this; } public String getRecIDContains() { return RecIDContains; } public CR_CreditorPaymentLineCustomFieldsQuery setRecIDContains(String value) { this.RecIDContains = value; return this; } public String getRecIDLike() { return RecIDLike; } public CR_CreditorPaymentLineCustomFieldsQuery setRecIDLike(String value) { this.RecIDLike = value; return this; } public ArrayList getRecIDBetween() { return RecIDBetween; } public CR_CreditorPaymentLineCustomFieldsQuery setRecIDBetween(ArrayList value) { this.RecIDBetween = value; return this; } public ArrayList getRecIDIn() { return RecIDIn; } public CR_CreditorPaymentLineCustomFieldsQuery setRecIDIn(ArrayList value) { this.RecIDIn = value; return this; } public String getSettingName() { return SettingName; } public CR_CreditorPaymentLineCustomFieldsQuery setSettingName(String value) { this.SettingName = value; return this; } public String getSettingNameStartsWith() { return SettingNameStartsWith; } public CR_CreditorPaymentLineCustomFieldsQuery setSettingNameStartsWith(String value) { this.SettingNameStartsWith = value; return this; } public String getSettingNameEndsWith() { return SettingNameEndsWith; } public CR_CreditorPaymentLineCustomFieldsQuery setSettingNameEndsWith(String value) { this.SettingNameEndsWith = value; return this; } public String getSettingNameContains() { return SettingNameContains; } public CR_CreditorPaymentLineCustomFieldsQuery setSettingNameContains(String value) { this.SettingNameContains = value; return this; } public String getSettingNameLike() { return SettingNameLike; } public CR_CreditorPaymentLineCustomFieldsQuery setSettingNameLike(String value) { this.SettingNameLike = value; return this; } public ArrayList getSettingNameBetween() { return SettingNameBetween; } public CR_CreditorPaymentLineCustomFieldsQuery setSettingNameBetween(ArrayList value) { this.SettingNameBetween = value; return this; } public ArrayList getSettingNameIn() { return SettingNameIn; } public CR_CreditorPaymentLineCustomFieldsQuery setSettingNameIn(ArrayList value) { this.SettingNameIn = value; return this; } public String getSettingDescription() { return SettingDescription; } public CR_CreditorPaymentLineCustomFieldsQuery setSettingDescription(String value) { this.SettingDescription = value; return this; } public String getSettingDescriptionStartsWith() { return SettingDescriptionStartsWith; } public CR_CreditorPaymentLineCustomFieldsQuery setSettingDescriptionStartsWith(String value) { this.SettingDescriptionStartsWith = value; return this; } public String getSettingDescriptionEndsWith() { return SettingDescriptionEndsWith; } public CR_CreditorPaymentLineCustomFieldsQuery setSettingDescriptionEndsWith(String value) { this.SettingDescriptionEndsWith = value; return this; } public String getSettingDescriptionContains() { return SettingDescriptionContains; } public CR_CreditorPaymentLineCustomFieldsQuery setSettingDescriptionContains(String value) { this.SettingDescriptionContains = value; return this; } public String getSettingDescriptionLike() { return SettingDescriptionLike; } public CR_CreditorPaymentLineCustomFieldsQuery setSettingDescriptionLike(String value) { this.SettingDescriptionLike = value; return this; } public ArrayList getSettingDescriptionBetween() { return SettingDescriptionBetween; } public CR_CreditorPaymentLineCustomFieldsQuery setSettingDescriptionBetween(ArrayList value) { this.SettingDescriptionBetween = value; return this; } public ArrayList getSettingDescriptionIn() { return SettingDescriptionIn; } public CR_CreditorPaymentLineCustomFieldsQuery setSettingDescriptionIn(ArrayList value) { this.SettingDescriptionIn = value; return this; } public Integer getCellType() { return CellType; } public CR_CreditorPaymentLineCustomFieldsQuery setCellType(Integer value) { this.CellType = value; return this; } public Integer getCellTypeGreaterThanOrEqualTo() { return CellTypeGreaterThanOrEqualTo; } public CR_CreditorPaymentLineCustomFieldsQuery setCellTypeGreaterThanOrEqualTo(Integer value) { this.CellTypeGreaterThanOrEqualTo = value; return this; } public Integer getCellTypeGreaterThan() { return CellTypeGreaterThan; } public CR_CreditorPaymentLineCustomFieldsQuery setCellTypeGreaterThan(Integer value) { this.CellTypeGreaterThan = value; return this; } public Integer getCellTypeLessThan() { return CellTypeLessThan; } public CR_CreditorPaymentLineCustomFieldsQuery setCellTypeLessThan(Integer value) { this.CellTypeLessThan = value; return this; } public Integer getCellTypeLessThanOrEqualTo() { return CellTypeLessThanOrEqualTo; } public CR_CreditorPaymentLineCustomFieldsQuery setCellTypeLessThanOrEqualTo(Integer value) { this.CellTypeLessThanOrEqualTo = value; return this; } public Integer getCellTypeNotEqualTo() { return CellTypeNotEqualTo; } public CR_CreditorPaymentLineCustomFieldsQuery setCellTypeNotEqualTo(Integer value) { this.CellTypeNotEqualTo = value; return this; } public ArrayList getCellTypeBetween() { return CellTypeBetween; } public CR_CreditorPaymentLineCustomFieldsQuery setCellTypeBetween(ArrayList value) { this.CellTypeBetween = value; return this; } public ArrayList getCellTypeIn() { return CellTypeIn; } public CR_CreditorPaymentLineCustomFieldsQuery setCellTypeIn(ArrayList value) { this.CellTypeIn = value; return this; } public String getFieldParameter() { return FieldParameter; } public CR_CreditorPaymentLineCustomFieldsQuery setFieldParameter(String value) { this.FieldParameter = value; return this; } public String getFieldParameterStartsWith() { return FieldParameterStartsWith; } public CR_CreditorPaymentLineCustomFieldsQuery setFieldParameterStartsWith(String value) { this.FieldParameterStartsWith = value; return this; } public String getFieldParameterEndsWith() { return FieldParameterEndsWith; } public CR_CreditorPaymentLineCustomFieldsQuery setFieldParameterEndsWith(String value) { this.FieldParameterEndsWith = value; return this; } public String getFieldParameterContains() { return FieldParameterContains; } public CR_CreditorPaymentLineCustomFieldsQuery setFieldParameterContains(String value) { this.FieldParameterContains = value; return this; } public String getFieldParameterLike() { return FieldParameterLike; } public CR_CreditorPaymentLineCustomFieldsQuery setFieldParameterLike(String value) { this.FieldParameterLike = value; return this; } public ArrayList getFieldParameterBetween() { return FieldParameterBetween; } public CR_CreditorPaymentLineCustomFieldsQuery setFieldParameterBetween(ArrayList value) { this.FieldParameterBetween = value; return this; } public ArrayList getFieldParameterIn() { return FieldParameterIn; } public CR_CreditorPaymentLineCustomFieldsQuery setFieldParameterIn(ArrayList value) { this.FieldParameterIn = value; return this; } public UUID getSyPluginRecID() { return SY_Plugin_RecID; } public CR_CreditorPaymentLineCustomFieldsQuery setSyPluginRecID(UUID value) { this.SY_Plugin_RecID = value; return this; } public ArrayList getSyPluginRecIDIn() { return SY_Plugin_RecIDIn; } public CR_CreditorPaymentLineCustomFieldsQuery setSyPluginRecIDIn(ArrayList value) { this.SY_Plugin_RecIDIn = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public CR_CreditorPaymentLineCustomFieldsQuery setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getLastSavedDateTimeGreaterThanOrEqualTo() { return LastSavedDateTimeGreaterThanOrEqualTo; } public CR_CreditorPaymentLineCustomFieldsQuery setLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.LastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeGreaterThan() { return LastSavedDateTimeGreaterThan; } public CR_CreditorPaymentLineCustomFieldsQuery setLastSavedDateTimeGreaterThan(Date value) { this.LastSavedDateTimeGreaterThan = value; return this; } public Date getLastSavedDateTimeLessThan() { return LastSavedDateTimeLessThan; } public CR_CreditorPaymentLineCustomFieldsQuery setLastSavedDateTimeLessThan(Date value) { this.LastSavedDateTimeLessThan = value; return this; } public Date getLastSavedDateTimeLessThanOrEqualTo() { return LastSavedDateTimeLessThanOrEqualTo; } public CR_CreditorPaymentLineCustomFieldsQuery setLastSavedDateTimeLessThanOrEqualTo(Date value) { this.LastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeNotEqualTo() { return LastSavedDateTimeNotEqualTo; } public CR_CreditorPaymentLineCustomFieldsQuery setLastSavedDateTimeNotEqualTo(Date value) { this.LastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getLastSavedDateTimeBetween() { return LastSavedDateTimeBetween; } public CR_CreditorPaymentLineCustomFieldsQuery setLastSavedDateTimeBetween(ArrayList value) { this.LastSavedDateTimeBetween = value; return this; } public ArrayList getLastSavedDateTimeIn() { return LastSavedDateTimeIn; } public CR_CreditorPaymentLineCustomFieldsQuery setLastSavedDateTimeIn(ArrayList value) { this.LastSavedDateTimeIn = value; return this; } public Integer getDisplayOrder() { return DisplayOrder; } public CR_CreditorPaymentLineCustomFieldsQuery setDisplayOrder(Integer value) { this.DisplayOrder = value; return this; } public Integer getDisplayOrderGreaterThanOrEqualTo() { return DisplayOrderGreaterThanOrEqualTo; } public CR_CreditorPaymentLineCustomFieldsQuery setDisplayOrderGreaterThanOrEqualTo(Integer value) { this.DisplayOrderGreaterThanOrEqualTo = value; return this; } public Integer getDisplayOrderGreaterThan() { return DisplayOrderGreaterThan; } public CR_CreditorPaymentLineCustomFieldsQuery setDisplayOrderGreaterThan(Integer value) { this.DisplayOrderGreaterThan = value; return this; } public Integer getDisplayOrderLessThan() { return DisplayOrderLessThan; } public CR_CreditorPaymentLineCustomFieldsQuery setDisplayOrderLessThan(Integer value) { this.DisplayOrderLessThan = value; return this; } public Integer getDisplayOrderLessThanOrEqualTo() { return DisplayOrderLessThanOrEqualTo; } public CR_CreditorPaymentLineCustomFieldsQuery setDisplayOrderLessThanOrEqualTo(Integer value) { this.DisplayOrderLessThanOrEqualTo = value; return this; } public Integer getDisplayOrderNotEqualTo() { return DisplayOrderNotEqualTo; } public CR_CreditorPaymentLineCustomFieldsQuery setDisplayOrderNotEqualTo(Integer value) { this.DisplayOrderNotEqualTo = value; return this; } public ArrayList getDisplayOrderBetween() { return DisplayOrderBetween; } public CR_CreditorPaymentLineCustomFieldsQuery setDisplayOrderBetween(ArrayList value) { this.DisplayOrderBetween = value; return this; } public ArrayList getDisplayOrderIn() { return DisplayOrderIn; } public CR_CreditorPaymentLineCustomFieldsQuery setDisplayOrderIn(ArrayList value) { this.DisplayOrderIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class CR_CreditorPaymentLineCustomValuesQuery extends QueryDb implements IReturn> { public String RecID = null; public String RecIDStartsWith = null; public String RecIDEndsWith = null; public String RecIDContains = null; public String RecIDLike = null; public ArrayList RecIDBetween = null; public ArrayList RecIDIn = null; public String CR_CreditorPaymentLines_RecID = null; public String CR_CreditorPaymentLines_RecIDStartsWith = null; public String CR_CreditorPaymentLines_RecIDEndsWith = null; public String CR_CreditorPaymentLines_RecIDContains = null; public String CR_CreditorPaymentLines_RecIDLike = null; public ArrayList CR_CreditorPaymentLines_RecIDBetween = null; public ArrayList CR_CreditorPaymentLines_RecIDIn = null; public String CR_CreditorPaymentLineCustomFields_RecID = null; public String CR_CreditorPaymentLineCustomFields_RecIDStartsWith = null; public String CR_CreditorPaymentLineCustomFields_RecIDEndsWith = null; public String CR_CreditorPaymentLineCustomFields_RecIDContains = null; public String CR_CreditorPaymentLineCustomFields_RecIDLike = null; public ArrayList CR_CreditorPaymentLineCustomFields_RecIDBetween = null; public ArrayList CR_CreditorPaymentLineCustomFields_RecIDIn = null; public String Contents = null; public String ContentsStartsWith = null; public String ContentsEndsWith = null; public String ContentsContains = null; public String ContentsLike = null; public ArrayList ContentsBetween = null; public ArrayList ContentsIn = null; public Date LastSavedDateTime = null; public Date LastSavedDateTimeGreaterThanOrEqualTo = null; public Date LastSavedDateTimeGreaterThan = null; public Date LastSavedDateTimeLessThan = null; public Date LastSavedDateTimeLessThanOrEqualTo = null; public Date LastSavedDateTimeNotEqualTo = null; public ArrayList LastSavedDateTimeBetween = null; public ArrayList LastSavedDateTimeIn = null; public String getRecID() { return RecID; } public CR_CreditorPaymentLineCustomValuesQuery setRecID(String value) { this.RecID = value; return this; } public String getRecIDStartsWith() { return RecIDStartsWith; } public CR_CreditorPaymentLineCustomValuesQuery setRecIDStartsWith(String value) { this.RecIDStartsWith = value; return this; } public String getRecIDEndsWith() { return RecIDEndsWith; } public CR_CreditorPaymentLineCustomValuesQuery setRecIDEndsWith(String value) { this.RecIDEndsWith = value; return this; } public String getRecIDContains() { return RecIDContains; } public CR_CreditorPaymentLineCustomValuesQuery setRecIDContains(String value) { this.RecIDContains = value; return this; } public String getRecIDLike() { return RecIDLike; } public CR_CreditorPaymentLineCustomValuesQuery setRecIDLike(String value) { this.RecIDLike = value; return this; } public ArrayList getRecIDBetween() { return RecIDBetween; } public CR_CreditorPaymentLineCustomValuesQuery setRecIDBetween(ArrayList value) { this.RecIDBetween = value; return this; } public ArrayList getRecIDIn() { return RecIDIn; } public CR_CreditorPaymentLineCustomValuesQuery setRecIDIn(ArrayList value) { this.RecIDIn = value; return this; } public String getCrCreditorPaymentLinesRecID() { return CR_CreditorPaymentLines_RecID; } public CR_CreditorPaymentLineCustomValuesQuery setCrCreditorPaymentLinesRecID(String value) { this.CR_CreditorPaymentLines_RecID = value; return this; } public String getCrCreditorPaymentLinesRecIDStartsWith() { return CR_CreditorPaymentLines_RecIDStartsWith; } public CR_CreditorPaymentLineCustomValuesQuery setCrCreditorPaymentLinesRecIDStartsWith(String value) { this.CR_CreditorPaymentLines_RecIDStartsWith = value; return this; } public String getCrCreditorPaymentLinesRecIDEndsWith() { return CR_CreditorPaymentLines_RecIDEndsWith; } public CR_CreditorPaymentLineCustomValuesQuery setCrCreditorPaymentLinesRecIDEndsWith(String value) { this.CR_CreditorPaymentLines_RecIDEndsWith = value; return this; } public String getCrCreditorPaymentLinesRecIDContains() { return CR_CreditorPaymentLines_RecIDContains; } public CR_CreditorPaymentLineCustomValuesQuery setCrCreditorPaymentLinesRecIDContains(String value) { this.CR_CreditorPaymentLines_RecIDContains = value; return this; } public String getCrCreditorPaymentLinesRecIDLike() { return CR_CreditorPaymentLines_RecIDLike; } public CR_CreditorPaymentLineCustomValuesQuery setCrCreditorPaymentLinesRecIDLike(String value) { this.CR_CreditorPaymentLines_RecIDLike = value; return this; } public ArrayList getCrCreditorPaymentLinesRecIDBetween() { return CR_CreditorPaymentLines_RecIDBetween; } public CR_CreditorPaymentLineCustomValuesQuery setCrCreditorPaymentLinesRecIDBetween(ArrayList value) { this.CR_CreditorPaymentLines_RecIDBetween = value; return this; } public ArrayList getCrCreditorPaymentLinesRecIDIn() { return CR_CreditorPaymentLines_RecIDIn; } public CR_CreditorPaymentLineCustomValuesQuery setCrCreditorPaymentLinesRecIDIn(ArrayList value) { this.CR_CreditorPaymentLines_RecIDIn = value; return this; } public String getCrCreditorPaymentLineCustomFieldsRecID() { return CR_CreditorPaymentLineCustomFields_RecID; } public CR_CreditorPaymentLineCustomValuesQuery setCrCreditorPaymentLineCustomFieldsRecID(String value) { this.CR_CreditorPaymentLineCustomFields_RecID = value; return this; } public String getCrCreditorPaymentLineCustomFieldsRecIDStartsWith() { return CR_CreditorPaymentLineCustomFields_RecIDStartsWith; } public CR_CreditorPaymentLineCustomValuesQuery setCrCreditorPaymentLineCustomFieldsRecIDStartsWith(String value) { this.CR_CreditorPaymentLineCustomFields_RecIDStartsWith = value; return this; } public String getCrCreditorPaymentLineCustomFieldsRecIDEndsWith() { return CR_CreditorPaymentLineCustomFields_RecIDEndsWith; } public CR_CreditorPaymentLineCustomValuesQuery setCrCreditorPaymentLineCustomFieldsRecIDEndsWith(String value) { this.CR_CreditorPaymentLineCustomFields_RecIDEndsWith = value; return this; } public String getCrCreditorPaymentLineCustomFieldsRecIDContains() { return CR_CreditorPaymentLineCustomFields_RecIDContains; } public CR_CreditorPaymentLineCustomValuesQuery setCrCreditorPaymentLineCustomFieldsRecIDContains(String value) { this.CR_CreditorPaymentLineCustomFields_RecIDContains = value; return this; } public String getCrCreditorPaymentLineCustomFieldsRecIDLike() { return CR_CreditorPaymentLineCustomFields_RecIDLike; } public CR_CreditorPaymentLineCustomValuesQuery setCrCreditorPaymentLineCustomFieldsRecIDLike(String value) { this.CR_CreditorPaymentLineCustomFields_RecIDLike = value; return this; } public ArrayList getCrCreditorPaymentLineCustomFieldsRecIDBetween() { return CR_CreditorPaymentLineCustomFields_RecIDBetween; } public CR_CreditorPaymentLineCustomValuesQuery setCrCreditorPaymentLineCustomFieldsRecIDBetween(ArrayList value) { this.CR_CreditorPaymentLineCustomFields_RecIDBetween = value; return this; } public ArrayList getCrCreditorPaymentLineCustomFieldsRecIDIn() { return CR_CreditorPaymentLineCustomFields_RecIDIn; } public CR_CreditorPaymentLineCustomValuesQuery setCrCreditorPaymentLineCustomFieldsRecIDIn(ArrayList value) { this.CR_CreditorPaymentLineCustomFields_RecIDIn = value; return this; } public String getContents() { return Contents; } public CR_CreditorPaymentLineCustomValuesQuery setContents(String value) { this.Contents = value; return this; } public String getContentsStartsWith() { return ContentsStartsWith; } public CR_CreditorPaymentLineCustomValuesQuery setContentsStartsWith(String value) { this.ContentsStartsWith = value; return this; } public String getContentsEndsWith() { return ContentsEndsWith; } public CR_CreditorPaymentLineCustomValuesQuery setContentsEndsWith(String value) { this.ContentsEndsWith = value; return this; } public String getContentsContains() { return ContentsContains; } public CR_CreditorPaymentLineCustomValuesQuery setContentsContains(String value) { this.ContentsContains = value; return this; } public String getContentsLike() { return ContentsLike; } public CR_CreditorPaymentLineCustomValuesQuery setContentsLike(String value) { this.ContentsLike = value; return this; } public ArrayList getContentsBetween() { return ContentsBetween; } public CR_CreditorPaymentLineCustomValuesQuery setContentsBetween(ArrayList value) { this.ContentsBetween = value; return this; } public ArrayList getContentsIn() { return ContentsIn; } public CR_CreditorPaymentLineCustomValuesQuery setContentsIn(ArrayList value) { this.ContentsIn = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public CR_CreditorPaymentLineCustomValuesQuery setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getLastSavedDateTimeGreaterThanOrEqualTo() { return LastSavedDateTimeGreaterThanOrEqualTo; } public CR_CreditorPaymentLineCustomValuesQuery setLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.LastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeGreaterThan() { return LastSavedDateTimeGreaterThan; } public CR_CreditorPaymentLineCustomValuesQuery setLastSavedDateTimeGreaterThan(Date value) { this.LastSavedDateTimeGreaterThan = value; return this; } public Date getLastSavedDateTimeLessThan() { return LastSavedDateTimeLessThan; } public CR_CreditorPaymentLineCustomValuesQuery setLastSavedDateTimeLessThan(Date value) { this.LastSavedDateTimeLessThan = value; return this; } public Date getLastSavedDateTimeLessThanOrEqualTo() { return LastSavedDateTimeLessThanOrEqualTo; } public CR_CreditorPaymentLineCustomValuesQuery setLastSavedDateTimeLessThanOrEqualTo(Date value) { this.LastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeNotEqualTo() { return LastSavedDateTimeNotEqualTo; } public CR_CreditorPaymentLineCustomValuesQuery setLastSavedDateTimeNotEqualTo(Date value) { this.LastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getLastSavedDateTimeBetween() { return LastSavedDateTimeBetween; } public CR_CreditorPaymentLineCustomValuesQuery setLastSavedDateTimeBetween(ArrayList value) { this.LastSavedDateTimeBetween = value; return this; } public ArrayList getLastSavedDateTimeIn() { return LastSavedDateTimeIn; } public CR_CreditorPaymentLineCustomValuesQuery setLastSavedDateTimeIn(ArrayList value) { this.LastSavedDateTimeIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class CR_CreditorPurchaseLineCustomFieldsQuery extends QueryDb implements IReturn> { public String RecID = null; public String RecIDStartsWith = null; public String RecIDEndsWith = null; public String RecIDContains = null; public String RecIDLike = null; public ArrayList RecIDBetween = null; public ArrayList RecIDIn = null; public String SettingName = null; public String SettingNameStartsWith = null; public String SettingNameEndsWith = null; public String SettingNameContains = null; public String SettingNameLike = null; public ArrayList SettingNameBetween = null; public ArrayList SettingNameIn = null; public String SettingDescription = null; public String SettingDescriptionStartsWith = null; public String SettingDescriptionEndsWith = null; public String SettingDescriptionContains = null; public String SettingDescriptionLike = null; public ArrayList SettingDescriptionBetween = null; public ArrayList SettingDescriptionIn = null; public Integer CellType = null; public Integer CellTypeGreaterThanOrEqualTo = null; public Integer CellTypeGreaterThan = null; public Integer CellTypeLessThan = null; public Integer CellTypeLessThanOrEqualTo = null; public Integer CellTypeNotEqualTo = null; public ArrayList CellTypeBetween = null; public ArrayList CellTypeIn = null; public String FieldParameter = null; public String FieldParameterStartsWith = null; public String FieldParameterEndsWith = null; public String FieldParameterContains = null; public String FieldParameterLike = null; public ArrayList FieldParameterBetween = null; public ArrayList FieldParameterIn = null; public UUID SY_Plugin_RecID = null; public ArrayList SY_Plugin_RecIDIn = null; public Date LastSavedDateTime = null; public Date LastSavedDateTimeGreaterThanOrEqualTo = null; public Date LastSavedDateTimeGreaterThan = null; public Date LastSavedDateTimeLessThan = null; public Date LastSavedDateTimeLessThanOrEqualTo = null; public Date LastSavedDateTimeNotEqualTo = null; public ArrayList LastSavedDateTimeBetween = null; public ArrayList LastSavedDateTimeIn = null; public Integer DisplayOrder = null; public Integer DisplayOrderGreaterThanOrEqualTo = null; public Integer DisplayOrderGreaterThan = null; public Integer DisplayOrderLessThan = null; public Integer DisplayOrderLessThanOrEqualTo = null; public Integer DisplayOrderNotEqualTo = null; public ArrayList DisplayOrderBetween = null; public ArrayList DisplayOrderIn = null; public String getRecID() { return RecID; } public CR_CreditorPurchaseLineCustomFieldsQuery setRecID(String value) { this.RecID = value; return this; } public String getRecIDStartsWith() { return RecIDStartsWith; } public CR_CreditorPurchaseLineCustomFieldsQuery setRecIDStartsWith(String value) { this.RecIDStartsWith = value; return this; } public String getRecIDEndsWith() { return RecIDEndsWith; } public CR_CreditorPurchaseLineCustomFieldsQuery setRecIDEndsWith(String value) { this.RecIDEndsWith = value; return this; } public String getRecIDContains() { return RecIDContains; } public CR_CreditorPurchaseLineCustomFieldsQuery setRecIDContains(String value) { this.RecIDContains = value; return this; } public String getRecIDLike() { return RecIDLike; } public CR_CreditorPurchaseLineCustomFieldsQuery setRecIDLike(String value) { this.RecIDLike = value; return this; } public ArrayList getRecIDBetween() { return RecIDBetween; } public CR_CreditorPurchaseLineCustomFieldsQuery setRecIDBetween(ArrayList value) { this.RecIDBetween = value; return this; } public ArrayList getRecIDIn() { return RecIDIn; } public CR_CreditorPurchaseLineCustomFieldsQuery setRecIDIn(ArrayList value) { this.RecIDIn = value; return this; } public String getSettingName() { return SettingName; } public CR_CreditorPurchaseLineCustomFieldsQuery setSettingName(String value) { this.SettingName = value; return this; } public String getSettingNameStartsWith() { return SettingNameStartsWith; } public CR_CreditorPurchaseLineCustomFieldsQuery setSettingNameStartsWith(String value) { this.SettingNameStartsWith = value; return this; } public String getSettingNameEndsWith() { return SettingNameEndsWith; } public CR_CreditorPurchaseLineCustomFieldsQuery setSettingNameEndsWith(String value) { this.SettingNameEndsWith = value; return this; } public String getSettingNameContains() { return SettingNameContains; } public CR_CreditorPurchaseLineCustomFieldsQuery setSettingNameContains(String value) { this.SettingNameContains = value; return this; } public String getSettingNameLike() { return SettingNameLike; } public CR_CreditorPurchaseLineCustomFieldsQuery setSettingNameLike(String value) { this.SettingNameLike = value; return this; } public ArrayList getSettingNameBetween() { return SettingNameBetween; } public CR_CreditorPurchaseLineCustomFieldsQuery setSettingNameBetween(ArrayList value) { this.SettingNameBetween = value; return this; } public ArrayList getSettingNameIn() { return SettingNameIn; } public CR_CreditorPurchaseLineCustomFieldsQuery setSettingNameIn(ArrayList value) { this.SettingNameIn = value; return this; } public String getSettingDescription() { return SettingDescription; } public CR_CreditorPurchaseLineCustomFieldsQuery setSettingDescription(String value) { this.SettingDescription = value; return this; } public String getSettingDescriptionStartsWith() { return SettingDescriptionStartsWith; } public CR_CreditorPurchaseLineCustomFieldsQuery setSettingDescriptionStartsWith(String value) { this.SettingDescriptionStartsWith = value; return this; } public String getSettingDescriptionEndsWith() { return SettingDescriptionEndsWith; } public CR_CreditorPurchaseLineCustomFieldsQuery setSettingDescriptionEndsWith(String value) { this.SettingDescriptionEndsWith = value; return this; } public String getSettingDescriptionContains() { return SettingDescriptionContains; } public CR_CreditorPurchaseLineCustomFieldsQuery setSettingDescriptionContains(String value) { this.SettingDescriptionContains = value; return this; } public String getSettingDescriptionLike() { return SettingDescriptionLike; } public CR_CreditorPurchaseLineCustomFieldsQuery setSettingDescriptionLike(String value) { this.SettingDescriptionLike = value; return this; } public ArrayList getSettingDescriptionBetween() { return SettingDescriptionBetween; } public CR_CreditorPurchaseLineCustomFieldsQuery setSettingDescriptionBetween(ArrayList value) { this.SettingDescriptionBetween = value; return this; } public ArrayList getSettingDescriptionIn() { return SettingDescriptionIn; } public CR_CreditorPurchaseLineCustomFieldsQuery setSettingDescriptionIn(ArrayList value) { this.SettingDescriptionIn = value; return this; } public Integer getCellType() { return CellType; } public CR_CreditorPurchaseLineCustomFieldsQuery setCellType(Integer value) { this.CellType = value; return this; } public Integer getCellTypeGreaterThanOrEqualTo() { return CellTypeGreaterThanOrEqualTo; } public CR_CreditorPurchaseLineCustomFieldsQuery setCellTypeGreaterThanOrEqualTo(Integer value) { this.CellTypeGreaterThanOrEqualTo = value; return this; } public Integer getCellTypeGreaterThan() { return CellTypeGreaterThan; } public CR_CreditorPurchaseLineCustomFieldsQuery setCellTypeGreaterThan(Integer value) { this.CellTypeGreaterThan = value; return this; } public Integer getCellTypeLessThan() { return CellTypeLessThan; } public CR_CreditorPurchaseLineCustomFieldsQuery setCellTypeLessThan(Integer value) { this.CellTypeLessThan = value; return this; } public Integer getCellTypeLessThanOrEqualTo() { return CellTypeLessThanOrEqualTo; } public CR_CreditorPurchaseLineCustomFieldsQuery setCellTypeLessThanOrEqualTo(Integer value) { this.CellTypeLessThanOrEqualTo = value; return this; } public Integer getCellTypeNotEqualTo() { return CellTypeNotEqualTo; } public CR_CreditorPurchaseLineCustomFieldsQuery setCellTypeNotEqualTo(Integer value) { this.CellTypeNotEqualTo = value; return this; } public ArrayList getCellTypeBetween() { return CellTypeBetween; } public CR_CreditorPurchaseLineCustomFieldsQuery setCellTypeBetween(ArrayList value) { this.CellTypeBetween = value; return this; } public ArrayList getCellTypeIn() { return CellTypeIn; } public CR_CreditorPurchaseLineCustomFieldsQuery setCellTypeIn(ArrayList value) { this.CellTypeIn = value; return this; } public String getFieldParameter() { return FieldParameter; } public CR_CreditorPurchaseLineCustomFieldsQuery setFieldParameter(String value) { this.FieldParameter = value; return this; } public String getFieldParameterStartsWith() { return FieldParameterStartsWith; } public CR_CreditorPurchaseLineCustomFieldsQuery setFieldParameterStartsWith(String value) { this.FieldParameterStartsWith = value; return this; } public String getFieldParameterEndsWith() { return FieldParameterEndsWith; } public CR_CreditorPurchaseLineCustomFieldsQuery setFieldParameterEndsWith(String value) { this.FieldParameterEndsWith = value; return this; } public String getFieldParameterContains() { return FieldParameterContains; } public CR_CreditorPurchaseLineCustomFieldsQuery setFieldParameterContains(String value) { this.FieldParameterContains = value; return this; } public String getFieldParameterLike() { return FieldParameterLike; } public CR_CreditorPurchaseLineCustomFieldsQuery setFieldParameterLike(String value) { this.FieldParameterLike = value; return this; } public ArrayList getFieldParameterBetween() { return FieldParameterBetween; } public CR_CreditorPurchaseLineCustomFieldsQuery setFieldParameterBetween(ArrayList value) { this.FieldParameterBetween = value; return this; } public ArrayList getFieldParameterIn() { return FieldParameterIn; } public CR_CreditorPurchaseLineCustomFieldsQuery setFieldParameterIn(ArrayList value) { this.FieldParameterIn = value; return this; } public UUID getSyPluginRecID() { return SY_Plugin_RecID; } public CR_CreditorPurchaseLineCustomFieldsQuery setSyPluginRecID(UUID value) { this.SY_Plugin_RecID = value; return this; } public ArrayList getSyPluginRecIDIn() { return SY_Plugin_RecIDIn; } public CR_CreditorPurchaseLineCustomFieldsQuery setSyPluginRecIDIn(ArrayList value) { this.SY_Plugin_RecIDIn = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public CR_CreditorPurchaseLineCustomFieldsQuery setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getLastSavedDateTimeGreaterThanOrEqualTo() { return LastSavedDateTimeGreaterThanOrEqualTo; } public CR_CreditorPurchaseLineCustomFieldsQuery setLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.LastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeGreaterThan() { return LastSavedDateTimeGreaterThan; } public CR_CreditorPurchaseLineCustomFieldsQuery setLastSavedDateTimeGreaterThan(Date value) { this.LastSavedDateTimeGreaterThan = value; return this; } public Date getLastSavedDateTimeLessThan() { return LastSavedDateTimeLessThan; } public CR_CreditorPurchaseLineCustomFieldsQuery setLastSavedDateTimeLessThan(Date value) { this.LastSavedDateTimeLessThan = value; return this; } public Date getLastSavedDateTimeLessThanOrEqualTo() { return LastSavedDateTimeLessThanOrEqualTo; } public CR_CreditorPurchaseLineCustomFieldsQuery setLastSavedDateTimeLessThanOrEqualTo(Date value) { this.LastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeNotEqualTo() { return LastSavedDateTimeNotEqualTo; } public CR_CreditorPurchaseLineCustomFieldsQuery setLastSavedDateTimeNotEqualTo(Date value) { this.LastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getLastSavedDateTimeBetween() { return LastSavedDateTimeBetween; } public CR_CreditorPurchaseLineCustomFieldsQuery setLastSavedDateTimeBetween(ArrayList value) { this.LastSavedDateTimeBetween = value; return this; } public ArrayList getLastSavedDateTimeIn() { return LastSavedDateTimeIn; } public CR_CreditorPurchaseLineCustomFieldsQuery setLastSavedDateTimeIn(ArrayList value) { this.LastSavedDateTimeIn = value; return this; } public Integer getDisplayOrder() { return DisplayOrder; } public CR_CreditorPurchaseLineCustomFieldsQuery setDisplayOrder(Integer value) { this.DisplayOrder = value; return this; } public Integer getDisplayOrderGreaterThanOrEqualTo() { return DisplayOrderGreaterThanOrEqualTo; } public CR_CreditorPurchaseLineCustomFieldsQuery setDisplayOrderGreaterThanOrEqualTo(Integer value) { this.DisplayOrderGreaterThanOrEqualTo = value; return this; } public Integer getDisplayOrderGreaterThan() { return DisplayOrderGreaterThan; } public CR_CreditorPurchaseLineCustomFieldsQuery setDisplayOrderGreaterThan(Integer value) { this.DisplayOrderGreaterThan = value; return this; } public Integer getDisplayOrderLessThan() { return DisplayOrderLessThan; } public CR_CreditorPurchaseLineCustomFieldsQuery setDisplayOrderLessThan(Integer value) { this.DisplayOrderLessThan = value; return this; } public Integer getDisplayOrderLessThanOrEqualTo() { return DisplayOrderLessThanOrEqualTo; } public CR_CreditorPurchaseLineCustomFieldsQuery setDisplayOrderLessThanOrEqualTo(Integer value) { this.DisplayOrderLessThanOrEqualTo = value; return this; } public Integer getDisplayOrderNotEqualTo() { return DisplayOrderNotEqualTo; } public CR_CreditorPurchaseLineCustomFieldsQuery setDisplayOrderNotEqualTo(Integer value) { this.DisplayOrderNotEqualTo = value; return this; } public ArrayList getDisplayOrderBetween() { return DisplayOrderBetween; } public CR_CreditorPurchaseLineCustomFieldsQuery setDisplayOrderBetween(ArrayList value) { this.DisplayOrderBetween = value; return this; } public ArrayList getDisplayOrderIn() { return DisplayOrderIn; } public CR_CreditorPurchaseLineCustomFieldsQuery setDisplayOrderIn(ArrayList value) { this.DisplayOrderIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class CR_CreditorPurchaseLineCustomValuesQuery extends QueryDb implements IReturn> { public String RecID = null; public String RecIDStartsWith = null; public String RecIDEndsWith = null; public String RecIDContains = null; public String RecIDLike = null; public ArrayList RecIDBetween = null; public ArrayList RecIDIn = null; public String CR_CreditorPurchaseLines_RecID = null; public String CR_CreditorPurchaseLines_RecIDStartsWith = null; public String CR_CreditorPurchaseLines_RecIDEndsWith = null; public String CR_CreditorPurchaseLines_RecIDContains = null; public String CR_CreditorPurchaseLines_RecIDLike = null; public ArrayList CR_CreditorPurchaseLines_RecIDBetween = null; public ArrayList CR_CreditorPurchaseLines_RecIDIn = null; public String CR_CreditorPurchaseLineCustomFields_RecID = null; public String CR_CreditorPurchaseLineCustomFields_RecIDStartsWith = null; public String CR_CreditorPurchaseLineCustomFields_RecIDEndsWith = null; public String CR_CreditorPurchaseLineCustomFields_RecIDContains = null; public String CR_CreditorPurchaseLineCustomFields_RecIDLike = null; public ArrayList CR_CreditorPurchaseLineCustomFields_RecIDBetween = null; public ArrayList CR_CreditorPurchaseLineCustomFields_RecIDIn = null; public String Contents = null; public String ContentsStartsWith = null; public String ContentsEndsWith = null; public String ContentsContains = null; public String ContentsLike = null; public ArrayList ContentsBetween = null; public ArrayList ContentsIn = null; public Date LastSavedDateTime = null; public Date LastSavedDateTimeGreaterThanOrEqualTo = null; public Date LastSavedDateTimeGreaterThan = null; public Date LastSavedDateTimeLessThan = null; public Date LastSavedDateTimeLessThanOrEqualTo = null; public Date LastSavedDateTimeNotEqualTo = null; public ArrayList LastSavedDateTimeBetween = null; public ArrayList LastSavedDateTimeIn = null; public String getRecID() { return RecID; } public CR_CreditorPurchaseLineCustomValuesQuery setRecID(String value) { this.RecID = value; return this; } public String getRecIDStartsWith() { return RecIDStartsWith; } public CR_CreditorPurchaseLineCustomValuesQuery setRecIDStartsWith(String value) { this.RecIDStartsWith = value; return this; } public String getRecIDEndsWith() { return RecIDEndsWith; } public CR_CreditorPurchaseLineCustomValuesQuery setRecIDEndsWith(String value) { this.RecIDEndsWith = value; return this; } public String getRecIDContains() { return RecIDContains; } public CR_CreditorPurchaseLineCustomValuesQuery setRecIDContains(String value) { this.RecIDContains = value; return this; } public String getRecIDLike() { return RecIDLike; } public CR_CreditorPurchaseLineCustomValuesQuery setRecIDLike(String value) { this.RecIDLike = value; return this; } public ArrayList getRecIDBetween() { return RecIDBetween; } public CR_CreditorPurchaseLineCustomValuesQuery setRecIDBetween(ArrayList value) { this.RecIDBetween = value; return this; } public ArrayList getRecIDIn() { return RecIDIn; } public CR_CreditorPurchaseLineCustomValuesQuery setRecIDIn(ArrayList value) { this.RecIDIn = value; return this; } public String getCrCreditorPurchaseLinesRecID() { return CR_CreditorPurchaseLines_RecID; } public CR_CreditorPurchaseLineCustomValuesQuery setCrCreditorPurchaseLinesRecID(String value) { this.CR_CreditorPurchaseLines_RecID = value; return this; } public String getCrCreditorPurchaseLinesRecIDStartsWith() { return CR_CreditorPurchaseLines_RecIDStartsWith; } public CR_CreditorPurchaseLineCustomValuesQuery setCrCreditorPurchaseLinesRecIDStartsWith(String value) { this.CR_CreditorPurchaseLines_RecIDStartsWith = value; return this; } public String getCrCreditorPurchaseLinesRecIDEndsWith() { return CR_CreditorPurchaseLines_RecIDEndsWith; } public CR_CreditorPurchaseLineCustomValuesQuery setCrCreditorPurchaseLinesRecIDEndsWith(String value) { this.CR_CreditorPurchaseLines_RecIDEndsWith = value; return this; } public String getCrCreditorPurchaseLinesRecIDContains() { return CR_CreditorPurchaseLines_RecIDContains; } public CR_CreditorPurchaseLineCustomValuesQuery setCrCreditorPurchaseLinesRecIDContains(String value) { this.CR_CreditorPurchaseLines_RecIDContains = value; return this; } public String getCrCreditorPurchaseLinesRecIDLike() { return CR_CreditorPurchaseLines_RecIDLike; } public CR_CreditorPurchaseLineCustomValuesQuery setCrCreditorPurchaseLinesRecIDLike(String value) { this.CR_CreditorPurchaseLines_RecIDLike = value; return this; } public ArrayList getCrCreditorPurchaseLinesRecIDBetween() { return CR_CreditorPurchaseLines_RecIDBetween; } public CR_CreditorPurchaseLineCustomValuesQuery setCrCreditorPurchaseLinesRecIDBetween(ArrayList value) { this.CR_CreditorPurchaseLines_RecIDBetween = value; return this; } public ArrayList getCrCreditorPurchaseLinesRecIDIn() { return CR_CreditorPurchaseLines_RecIDIn; } public CR_CreditorPurchaseLineCustomValuesQuery setCrCreditorPurchaseLinesRecIDIn(ArrayList value) { this.CR_CreditorPurchaseLines_RecIDIn = value; return this; } public String getCrCreditorPurchaseLineCustomFieldsRecID() { return CR_CreditorPurchaseLineCustomFields_RecID; } public CR_CreditorPurchaseLineCustomValuesQuery setCrCreditorPurchaseLineCustomFieldsRecID(String value) { this.CR_CreditorPurchaseLineCustomFields_RecID = value; return this; } public String getCrCreditorPurchaseLineCustomFieldsRecIDStartsWith() { return CR_CreditorPurchaseLineCustomFields_RecIDStartsWith; } public CR_CreditorPurchaseLineCustomValuesQuery setCrCreditorPurchaseLineCustomFieldsRecIDStartsWith(String value) { this.CR_CreditorPurchaseLineCustomFields_RecIDStartsWith = value; return this; } public String getCrCreditorPurchaseLineCustomFieldsRecIDEndsWith() { return CR_CreditorPurchaseLineCustomFields_RecIDEndsWith; } public CR_CreditorPurchaseLineCustomValuesQuery setCrCreditorPurchaseLineCustomFieldsRecIDEndsWith(String value) { this.CR_CreditorPurchaseLineCustomFields_RecIDEndsWith = value; return this; } public String getCrCreditorPurchaseLineCustomFieldsRecIDContains() { return CR_CreditorPurchaseLineCustomFields_RecIDContains; } public CR_CreditorPurchaseLineCustomValuesQuery setCrCreditorPurchaseLineCustomFieldsRecIDContains(String value) { this.CR_CreditorPurchaseLineCustomFields_RecIDContains = value; return this; } public String getCrCreditorPurchaseLineCustomFieldsRecIDLike() { return CR_CreditorPurchaseLineCustomFields_RecIDLike; } public CR_CreditorPurchaseLineCustomValuesQuery setCrCreditorPurchaseLineCustomFieldsRecIDLike(String value) { this.CR_CreditorPurchaseLineCustomFields_RecIDLike = value; return this; } public ArrayList getCrCreditorPurchaseLineCustomFieldsRecIDBetween() { return CR_CreditorPurchaseLineCustomFields_RecIDBetween; } public CR_CreditorPurchaseLineCustomValuesQuery setCrCreditorPurchaseLineCustomFieldsRecIDBetween(ArrayList value) { this.CR_CreditorPurchaseLineCustomFields_RecIDBetween = value; return this; } public ArrayList getCrCreditorPurchaseLineCustomFieldsRecIDIn() { return CR_CreditorPurchaseLineCustomFields_RecIDIn; } public CR_CreditorPurchaseLineCustomValuesQuery setCrCreditorPurchaseLineCustomFieldsRecIDIn(ArrayList value) { this.CR_CreditorPurchaseLineCustomFields_RecIDIn = value; return this; } public String getContents() { return Contents; } public CR_CreditorPurchaseLineCustomValuesQuery setContents(String value) { this.Contents = value; return this; } public String getContentsStartsWith() { return ContentsStartsWith; } public CR_CreditorPurchaseLineCustomValuesQuery setContentsStartsWith(String value) { this.ContentsStartsWith = value; return this; } public String getContentsEndsWith() { return ContentsEndsWith; } public CR_CreditorPurchaseLineCustomValuesQuery setContentsEndsWith(String value) { this.ContentsEndsWith = value; return this; } public String getContentsContains() { return ContentsContains; } public CR_CreditorPurchaseLineCustomValuesQuery setContentsContains(String value) { this.ContentsContains = value; return this; } public String getContentsLike() { return ContentsLike; } public CR_CreditorPurchaseLineCustomValuesQuery setContentsLike(String value) { this.ContentsLike = value; return this; } public ArrayList getContentsBetween() { return ContentsBetween; } public CR_CreditorPurchaseLineCustomValuesQuery setContentsBetween(ArrayList value) { this.ContentsBetween = value; return this; } public ArrayList getContentsIn() { return ContentsIn; } public CR_CreditorPurchaseLineCustomValuesQuery setContentsIn(ArrayList value) { this.ContentsIn = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public CR_CreditorPurchaseLineCustomValuesQuery setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getLastSavedDateTimeGreaterThanOrEqualTo() { return LastSavedDateTimeGreaterThanOrEqualTo; } public CR_CreditorPurchaseLineCustomValuesQuery setLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.LastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeGreaterThan() { return LastSavedDateTimeGreaterThan; } public CR_CreditorPurchaseLineCustomValuesQuery setLastSavedDateTimeGreaterThan(Date value) { this.LastSavedDateTimeGreaterThan = value; return this; } public Date getLastSavedDateTimeLessThan() { return LastSavedDateTimeLessThan; } public CR_CreditorPurchaseLineCustomValuesQuery setLastSavedDateTimeLessThan(Date value) { this.LastSavedDateTimeLessThan = value; return this; } public Date getLastSavedDateTimeLessThanOrEqualTo() { return LastSavedDateTimeLessThanOrEqualTo; } public CR_CreditorPurchaseLineCustomValuesQuery setLastSavedDateTimeLessThanOrEqualTo(Date value) { this.LastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeNotEqualTo() { return LastSavedDateTimeNotEqualTo; } public CR_CreditorPurchaseLineCustomValuesQuery setLastSavedDateTimeNotEqualTo(Date value) { this.LastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getLastSavedDateTimeBetween() { return LastSavedDateTimeBetween; } public CR_CreditorPurchaseLineCustomValuesQuery setLastSavedDateTimeBetween(ArrayList value) { this.LastSavedDateTimeBetween = value; return this; } public ArrayList getLastSavedDateTimeIn() { return LastSavedDateTimeIn; } public CR_CreditorPurchaseLineCustomValuesQuery setLastSavedDateTimeIn(ArrayList value) { this.LastSavedDateTimeIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class CR_CustomSettingQuery extends QueryDb implements IReturn> { public String SettingID = null; public String SettingIDStartsWith = null; public String SettingIDEndsWith = null; public String SettingIDContains = null; public String SettingIDLike = null; public ArrayList SettingIDBetween = null; public ArrayList SettingIDIn = null; public Date LastSavedDateTime = null; public Date LastSavedDateTimeGreaterThanOrEqualTo = null; public Date LastSavedDateTimeGreaterThan = null; public Date LastSavedDateTimeLessThan = null; public Date LastSavedDateTimeLessThanOrEqualTo = null; public Date LastSavedDateTimeNotEqualTo = null; public ArrayList LastSavedDateTimeBetween = null; public ArrayList LastSavedDateTimeIn = null; public String SettingDescription = null; public String SettingDescriptionStartsWith = null; public String SettingDescriptionEndsWith = null; public String SettingDescriptionContains = null; public String SettingDescriptionLike = null; public ArrayList SettingDescriptionBetween = null; public ArrayList SettingDescriptionIn = null; public String SettingName = null; public String SettingNameStartsWith = null; public String SettingNameEndsWith = null; public String SettingNameContains = null; public String SettingNameLike = null; public ArrayList SettingNameBetween = null; public ArrayList SettingNameIn = null; public BigDecimal DisplayOrder = null; public BigDecimal DisplayOrderGreaterThanOrEqualTo = null; public BigDecimal DisplayOrderGreaterThan = null; public BigDecimal DisplayOrderLessThan = null; public BigDecimal DisplayOrderLessThanOrEqualTo = null; public BigDecimal DisplayOrderNotEqualTo = null; public ArrayList DisplayOrderBetween = null; public ArrayList DisplayOrderIn = null; public Short CellType = null; public Short CellTypeGreaterThanOrEqualTo = null; public Short CellTypeGreaterThan = null; public Short CellTypeLessThan = null; public Short CellTypeLessThanOrEqualTo = null; public Short CellTypeNotEqualTo = null; public ArrayList CellTypeBetween = null; public ArrayList CellTypeIn = null; public String ScriptFormatCell = null; public String ScriptFormatCellStartsWith = null; public String ScriptFormatCellEndsWith = null; public String ScriptFormatCellContains = null; public String ScriptFormatCellLike = null; public ArrayList ScriptFormatCellBetween = null; public ArrayList ScriptFormatCellIn = null; public String ScriptButtonClicked = null; public String ScriptButtonClickedStartsWith = null; public String ScriptButtonClickedEndsWith = null; public String ScriptButtonClickedContains = null; public String ScriptButtonClickedLike = null; public ArrayList ScriptButtonClickedBetween = null; public ArrayList ScriptButtonClickedIn = null; public String ScriptReadData = null; public String ScriptReadDataStartsWith = null; public String ScriptReadDataEndsWith = null; public String ScriptReadDataContains = null; public String ScriptReadDataLike = null; public ArrayList ScriptReadDataBetween = null; public ArrayList ScriptReadDataIn = null; public String GridHandlerCode = null; public String GridHandlerCodeStartsWith = null; public String GridHandlerCodeEndsWith = null; public String GridHandlerCodeContains = null; public String GridHandlerCodeLike = null; public ArrayList GridHandlerCodeBetween = null; public ArrayList GridHandlerCodeIn = null; public UUID SY_Plugin_RecID = null; public ArrayList SY_Plugin_RecIDIn = null; public String getSettingID() { return SettingID; } public CR_CustomSettingQuery setSettingID(String value) { this.SettingID = value; return this; } public String getSettingIDStartsWith() { return SettingIDStartsWith; } public CR_CustomSettingQuery setSettingIDStartsWith(String value) { this.SettingIDStartsWith = value; return this; } public String getSettingIDEndsWith() { return SettingIDEndsWith; } public CR_CustomSettingQuery setSettingIDEndsWith(String value) { this.SettingIDEndsWith = value; return this; } public String getSettingIDContains() { return SettingIDContains; } public CR_CustomSettingQuery setSettingIDContains(String value) { this.SettingIDContains = value; return this; } public String getSettingIDLike() { return SettingIDLike; } public CR_CustomSettingQuery setSettingIDLike(String value) { this.SettingIDLike = value; return this; } public ArrayList getSettingIDBetween() { return SettingIDBetween; } public CR_CustomSettingQuery setSettingIDBetween(ArrayList value) { this.SettingIDBetween = value; return this; } public ArrayList getSettingIDIn() { return SettingIDIn; } public CR_CustomSettingQuery setSettingIDIn(ArrayList value) { this.SettingIDIn = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public CR_CustomSettingQuery setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getLastSavedDateTimeGreaterThanOrEqualTo() { return LastSavedDateTimeGreaterThanOrEqualTo; } public CR_CustomSettingQuery setLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.LastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeGreaterThan() { return LastSavedDateTimeGreaterThan; } public CR_CustomSettingQuery setLastSavedDateTimeGreaterThan(Date value) { this.LastSavedDateTimeGreaterThan = value; return this; } public Date getLastSavedDateTimeLessThan() { return LastSavedDateTimeLessThan; } public CR_CustomSettingQuery setLastSavedDateTimeLessThan(Date value) { this.LastSavedDateTimeLessThan = value; return this; } public Date getLastSavedDateTimeLessThanOrEqualTo() { return LastSavedDateTimeLessThanOrEqualTo; } public CR_CustomSettingQuery setLastSavedDateTimeLessThanOrEqualTo(Date value) { this.LastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeNotEqualTo() { return LastSavedDateTimeNotEqualTo; } public CR_CustomSettingQuery setLastSavedDateTimeNotEqualTo(Date value) { this.LastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getLastSavedDateTimeBetween() { return LastSavedDateTimeBetween; } public CR_CustomSettingQuery setLastSavedDateTimeBetween(ArrayList value) { this.LastSavedDateTimeBetween = value; return this; } public ArrayList getLastSavedDateTimeIn() { return LastSavedDateTimeIn; } public CR_CustomSettingQuery setLastSavedDateTimeIn(ArrayList value) { this.LastSavedDateTimeIn = value; return this; } public String getSettingDescription() { return SettingDescription; } public CR_CustomSettingQuery setSettingDescription(String value) { this.SettingDescription = value; return this; } public String getSettingDescriptionStartsWith() { return SettingDescriptionStartsWith; } public CR_CustomSettingQuery setSettingDescriptionStartsWith(String value) { this.SettingDescriptionStartsWith = value; return this; } public String getSettingDescriptionEndsWith() { return SettingDescriptionEndsWith; } public CR_CustomSettingQuery setSettingDescriptionEndsWith(String value) { this.SettingDescriptionEndsWith = value; return this; } public String getSettingDescriptionContains() { return SettingDescriptionContains; } public CR_CustomSettingQuery setSettingDescriptionContains(String value) { this.SettingDescriptionContains = value; return this; } public String getSettingDescriptionLike() { return SettingDescriptionLike; } public CR_CustomSettingQuery setSettingDescriptionLike(String value) { this.SettingDescriptionLike = value; return this; } public ArrayList getSettingDescriptionBetween() { return SettingDescriptionBetween; } public CR_CustomSettingQuery setSettingDescriptionBetween(ArrayList value) { this.SettingDescriptionBetween = value; return this; } public ArrayList getSettingDescriptionIn() { return SettingDescriptionIn; } public CR_CustomSettingQuery setSettingDescriptionIn(ArrayList value) { this.SettingDescriptionIn = value; return this; } public String getSettingName() { return SettingName; } public CR_CustomSettingQuery setSettingName(String value) { this.SettingName = value; return this; } public String getSettingNameStartsWith() { return SettingNameStartsWith; } public CR_CustomSettingQuery setSettingNameStartsWith(String value) { this.SettingNameStartsWith = value; return this; } public String getSettingNameEndsWith() { return SettingNameEndsWith; } public CR_CustomSettingQuery setSettingNameEndsWith(String value) { this.SettingNameEndsWith = value; return this; } public String getSettingNameContains() { return SettingNameContains; } public CR_CustomSettingQuery setSettingNameContains(String value) { this.SettingNameContains = value; return this; } public String getSettingNameLike() { return SettingNameLike; } public CR_CustomSettingQuery setSettingNameLike(String value) { this.SettingNameLike = value; return this; } public ArrayList getSettingNameBetween() { return SettingNameBetween; } public CR_CustomSettingQuery setSettingNameBetween(ArrayList value) { this.SettingNameBetween = value; return this; } public ArrayList getSettingNameIn() { return SettingNameIn; } public CR_CustomSettingQuery setSettingNameIn(ArrayList value) { this.SettingNameIn = value; return this; } public BigDecimal getDisplayOrder() { return DisplayOrder; } public CR_CustomSettingQuery setDisplayOrder(BigDecimal value) { this.DisplayOrder = value; return this; } public BigDecimal getDisplayOrderGreaterThanOrEqualTo() { return DisplayOrderGreaterThanOrEqualTo; } public CR_CustomSettingQuery setDisplayOrderGreaterThanOrEqualTo(BigDecimal value) { this.DisplayOrderGreaterThanOrEqualTo = value; return this; } public BigDecimal getDisplayOrderGreaterThan() { return DisplayOrderGreaterThan; } public CR_CustomSettingQuery setDisplayOrderGreaterThan(BigDecimal value) { this.DisplayOrderGreaterThan = value; return this; } public BigDecimal getDisplayOrderLessThan() { return DisplayOrderLessThan; } public CR_CustomSettingQuery setDisplayOrderLessThan(BigDecimal value) { this.DisplayOrderLessThan = value; return this; } public BigDecimal getDisplayOrderLessThanOrEqualTo() { return DisplayOrderLessThanOrEqualTo; } public CR_CustomSettingQuery setDisplayOrderLessThanOrEqualTo(BigDecimal value) { this.DisplayOrderLessThanOrEqualTo = value; return this; } public BigDecimal getDisplayOrderNotEqualTo() { return DisplayOrderNotEqualTo; } public CR_CustomSettingQuery setDisplayOrderNotEqualTo(BigDecimal value) { this.DisplayOrderNotEqualTo = value; return this; } public ArrayList getDisplayOrderBetween() { return DisplayOrderBetween; } public CR_CustomSettingQuery setDisplayOrderBetween(ArrayList value) { this.DisplayOrderBetween = value; return this; } public ArrayList getDisplayOrderIn() { return DisplayOrderIn; } public CR_CustomSettingQuery setDisplayOrderIn(ArrayList value) { this.DisplayOrderIn = value; return this; } public Short getCellType() { return CellType; } public CR_CustomSettingQuery setCellType(Short value) { this.CellType = value; return this; } public Short getCellTypeGreaterThanOrEqualTo() { return CellTypeGreaterThanOrEqualTo; } public CR_CustomSettingQuery setCellTypeGreaterThanOrEqualTo(Short value) { this.CellTypeGreaterThanOrEqualTo = value; return this; } public Short getCellTypeGreaterThan() { return CellTypeGreaterThan; } public CR_CustomSettingQuery setCellTypeGreaterThan(Short value) { this.CellTypeGreaterThan = value; return this; } public Short getCellTypeLessThan() { return CellTypeLessThan; } public CR_CustomSettingQuery setCellTypeLessThan(Short value) { this.CellTypeLessThan = value; return this; } public Short getCellTypeLessThanOrEqualTo() { return CellTypeLessThanOrEqualTo; } public CR_CustomSettingQuery setCellTypeLessThanOrEqualTo(Short value) { this.CellTypeLessThanOrEqualTo = value; return this; } public Short getCellTypeNotEqualTo() { return CellTypeNotEqualTo; } public CR_CustomSettingQuery setCellTypeNotEqualTo(Short value) { this.CellTypeNotEqualTo = value; return this; } public ArrayList getCellTypeBetween() { return CellTypeBetween; } public CR_CustomSettingQuery setCellTypeBetween(ArrayList value) { this.CellTypeBetween = value; return this; } public ArrayList getCellTypeIn() { return CellTypeIn; } public CR_CustomSettingQuery setCellTypeIn(ArrayList value) { this.CellTypeIn = value; return this; } public String getScriptFormatCell() { return ScriptFormatCell; } public CR_CustomSettingQuery setScriptFormatCell(String value) { this.ScriptFormatCell = value; return this; } public String getScriptFormatCellStartsWith() { return ScriptFormatCellStartsWith; } public CR_CustomSettingQuery setScriptFormatCellStartsWith(String value) { this.ScriptFormatCellStartsWith = value; return this; } public String getScriptFormatCellEndsWith() { return ScriptFormatCellEndsWith; } public CR_CustomSettingQuery setScriptFormatCellEndsWith(String value) { this.ScriptFormatCellEndsWith = value; return this; } public String getScriptFormatCellContains() { return ScriptFormatCellContains; } public CR_CustomSettingQuery setScriptFormatCellContains(String value) { this.ScriptFormatCellContains = value; return this; } public String getScriptFormatCellLike() { return ScriptFormatCellLike; } public CR_CustomSettingQuery setScriptFormatCellLike(String value) { this.ScriptFormatCellLike = value; return this; } public ArrayList getScriptFormatCellBetween() { return ScriptFormatCellBetween; } public CR_CustomSettingQuery setScriptFormatCellBetween(ArrayList value) { this.ScriptFormatCellBetween = value; return this; } public ArrayList getScriptFormatCellIn() { return ScriptFormatCellIn; } public CR_CustomSettingQuery setScriptFormatCellIn(ArrayList value) { this.ScriptFormatCellIn = value; return this; } public String getScriptButtonClicked() { return ScriptButtonClicked; } public CR_CustomSettingQuery setScriptButtonClicked(String value) { this.ScriptButtonClicked = value; return this; } public String getScriptButtonClickedStartsWith() { return ScriptButtonClickedStartsWith; } public CR_CustomSettingQuery setScriptButtonClickedStartsWith(String value) { this.ScriptButtonClickedStartsWith = value; return this; } public String getScriptButtonClickedEndsWith() { return ScriptButtonClickedEndsWith; } public CR_CustomSettingQuery setScriptButtonClickedEndsWith(String value) { this.ScriptButtonClickedEndsWith = value; return this; } public String getScriptButtonClickedContains() { return ScriptButtonClickedContains; } public CR_CustomSettingQuery setScriptButtonClickedContains(String value) { this.ScriptButtonClickedContains = value; return this; } public String getScriptButtonClickedLike() { return ScriptButtonClickedLike; } public CR_CustomSettingQuery setScriptButtonClickedLike(String value) { this.ScriptButtonClickedLike = value; return this; } public ArrayList getScriptButtonClickedBetween() { return ScriptButtonClickedBetween; } public CR_CustomSettingQuery setScriptButtonClickedBetween(ArrayList value) { this.ScriptButtonClickedBetween = value; return this; } public ArrayList getScriptButtonClickedIn() { return ScriptButtonClickedIn; } public CR_CustomSettingQuery setScriptButtonClickedIn(ArrayList value) { this.ScriptButtonClickedIn = value; return this; } public String getScriptReadData() { return ScriptReadData; } public CR_CustomSettingQuery setScriptReadData(String value) { this.ScriptReadData = value; return this; } public String getScriptReadDataStartsWith() { return ScriptReadDataStartsWith; } public CR_CustomSettingQuery setScriptReadDataStartsWith(String value) { this.ScriptReadDataStartsWith = value; return this; } public String getScriptReadDataEndsWith() { return ScriptReadDataEndsWith; } public CR_CustomSettingQuery setScriptReadDataEndsWith(String value) { this.ScriptReadDataEndsWith = value; return this; } public String getScriptReadDataContains() { return ScriptReadDataContains; } public CR_CustomSettingQuery setScriptReadDataContains(String value) { this.ScriptReadDataContains = value; return this; } public String getScriptReadDataLike() { return ScriptReadDataLike; } public CR_CustomSettingQuery setScriptReadDataLike(String value) { this.ScriptReadDataLike = value; return this; } public ArrayList getScriptReadDataBetween() { return ScriptReadDataBetween; } public CR_CustomSettingQuery setScriptReadDataBetween(ArrayList value) { this.ScriptReadDataBetween = value; return this; } public ArrayList getScriptReadDataIn() { return ScriptReadDataIn; } public CR_CustomSettingQuery setScriptReadDataIn(ArrayList value) { this.ScriptReadDataIn = value; return this; } public String getGridHandlerCode() { return GridHandlerCode; } public CR_CustomSettingQuery setGridHandlerCode(String value) { this.GridHandlerCode = value; return this; } public String getGridHandlerCodeStartsWith() { return GridHandlerCodeStartsWith; } public CR_CustomSettingQuery setGridHandlerCodeStartsWith(String value) { this.GridHandlerCodeStartsWith = value; return this; } public String getGridHandlerCodeEndsWith() { return GridHandlerCodeEndsWith; } public CR_CustomSettingQuery setGridHandlerCodeEndsWith(String value) { this.GridHandlerCodeEndsWith = value; return this; } public String getGridHandlerCodeContains() { return GridHandlerCodeContains; } public CR_CustomSettingQuery setGridHandlerCodeContains(String value) { this.GridHandlerCodeContains = value; return this; } public String getGridHandlerCodeLike() { return GridHandlerCodeLike; } public CR_CustomSettingQuery setGridHandlerCodeLike(String value) { this.GridHandlerCodeLike = value; return this; } public ArrayList getGridHandlerCodeBetween() { return GridHandlerCodeBetween; } public CR_CustomSettingQuery setGridHandlerCodeBetween(ArrayList value) { this.GridHandlerCodeBetween = value; return this; } public ArrayList getGridHandlerCodeIn() { return GridHandlerCodeIn; } public CR_CustomSettingQuery setGridHandlerCodeIn(ArrayList value) { this.GridHandlerCodeIn = value; return this; } public UUID getSyPluginRecID() { return SY_Plugin_RecID; } public CR_CustomSettingQuery setSyPluginRecID(UUID value) { this.SY_Plugin_RecID = value; return this; } public ArrayList getSyPluginRecIDIn() { return SY_Plugin_RecIDIn; } public CR_CustomSettingQuery setSyPluginRecIDIn(ArrayList value) { this.SY_Plugin_RecIDIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class CR_CustomSettingValuesQuery extends QueryDb implements IReturn> { public String SettingValueID = null; public String SettingValueIDStartsWith = null; public String SettingValueIDEndsWith = null; public String SettingValueIDContains = null; public String SettingValueIDLike = null; public ArrayList SettingValueIDBetween = null; public ArrayList SettingValueIDIn = null; public String SettingID = null; public String SettingIDStartsWith = null; public String SettingIDEndsWith = null; public String SettingIDContains = null; public String SettingIDLike = null; public ArrayList SettingIDBetween = null; public ArrayList SettingIDIn = null; public String CreditorID = null; public String CreditorIDStartsWith = null; public String CreditorIDEndsWith = null; public String CreditorIDContains = null; public String CreditorIDLike = null; public ArrayList CreditorIDBetween = null; public ArrayList CreditorIDIn = null; public String Contents = null; public String ContentsStartsWith = null; public String ContentsEndsWith = null; public String ContentsContains = null; public String ContentsLike = null; public ArrayList ContentsBetween = null; public ArrayList ContentsIn = null; public Date LastSavedDateTime = null; public Date LastSavedDateTimeGreaterThanOrEqualTo = null; public Date LastSavedDateTimeGreaterThan = null; public Date LastSavedDateTimeLessThan = null; public Date LastSavedDateTimeLessThanOrEqualTo = null; public Date LastSavedDateTimeNotEqualTo = null; public ArrayList LastSavedDateTimeBetween = null; public ArrayList LastSavedDateTimeIn = null; public String getSettingValueID() { return SettingValueID; } public CR_CustomSettingValuesQuery setSettingValueID(String value) { this.SettingValueID = value; return this; } public String getSettingValueIDStartsWith() { return SettingValueIDStartsWith; } public CR_CustomSettingValuesQuery setSettingValueIDStartsWith(String value) { this.SettingValueIDStartsWith = value; return this; } public String getSettingValueIDEndsWith() { return SettingValueIDEndsWith; } public CR_CustomSettingValuesQuery setSettingValueIDEndsWith(String value) { this.SettingValueIDEndsWith = value; return this; } public String getSettingValueIDContains() { return SettingValueIDContains; } public CR_CustomSettingValuesQuery setSettingValueIDContains(String value) { this.SettingValueIDContains = value; return this; } public String getSettingValueIDLike() { return SettingValueIDLike; } public CR_CustomSettingValuesQuery setSettingValueIDLike(String value) { this.SettingValueIDLike = value; return this; } public ArrayList getSettingValueIDBetween() { return SettingValueIDBetween; } public CR_CustomSettingValuesQuery setSettingValueIDBetween(ArrayList value) { this.SettingValueIDBetween = value; return this; } public ArrayList getSettingValueIDIn() { return SettingValueIDIn; } public CR_CustomSettingValuesQuery setSettingValueIDIn(ArrayList value) { this.SettingValueIDIn = value; return this; } public String getSettingID() { return SettingID; } public CR_CustomSettingValuesQuery setSettingID(String value) { this.SettingID = value; return this; } public String getSettingIDStartsWith() { return SettingIDStartsWith; } public CR_CustomSettingValuesQuery setSettingIDStartsWith(String value) { this.SettingIDStartsWith = value; return this; } public String getSettingIDEndsWith() { return SettingIDEndsWith; } public CR_CustomSettingValuesQuery setSettingIDEndsWith(String value) { this.SettingIDEndsWith = value; return this; } public String getSettingIDContains() { return SettingIDContains; } public CR_CustomSettingValuesQuery setSettingIDContains(String value) { this.SettingIDContains = value; return this; } public String getSettingIDLike() { return SettingIDLike; } public CR_CustomSettingValuesQuery setSettingIDLike(String value) { this.SettingIDLike = value; return this; } public ArrayList getSettingIDBetween() { return SettingIDBetween; } public CR_CustomSettingValuesQuery setSettingIDBetween(ArrayList value) { this.SettingIDBetween = value; return this; } public ArrayList getSettingIDIn() { return SettingIDIn; } public CR_CustomSettingValuesQuery setSettingIDIn(ArrayList value) { this.SettingIDIn = value; return this; } public String getCreditorID() { return CreditorID; } public CR_CustomSettingValuesQuery setCreditorID(String value) { this.CreditorID = value; return this; } public String getCreditorIDStartsWith() { return CreditorIDStartsWith; } public CR_CustomSettingValuesQuery setCreditorIDStartsWith(String value) { this.CreditorIDStartsWith = value; return this; } public String getCreditorIDEndsWith() { return CreditorIDEndsWith; } public CR_CustomSettingValuesQuery setCreditorIDEndsWith(String value) { this.CreditorIDEndsWith = value; return this; } public String getCreditorIDContains() { return CreditorIDContains; } public CR_CustomSettingValuesQuery setCreditorIDContains(String value) { this.CreditorIDContains = value; return this; } public String getCreditorIDLike() { return CreditorIDLike; } public CR_CustomSettingValuesQuery setCreditorIDLike(String value) { this.CreditorIDLike = value; return this; } public ArrayList getCreditorIDBetween() { return CreditorIDBetween; } public CR_CustomSettingValuesQuery setCreditorIDBetween(ArrayList value) { this.CreditorIDBetween = value; return this; } public ArrayList getCreditorIDIn() { return CreditorIDIn; } public CR_CustomSettingValuesQuery setCreditorIDIn(ArrayList value) { this.CreditorIDIn = value; return this; } public String getContents() { return Contents; } public CR_CustomSettingValuesQuery setContents(String value) { this.Contents = value; return this; } public String getContentsStartsWith() { return ContentsStartsWith; } public CR_CustomSettingValuesQuery setContentsStartsWith(String value) { this.ContentsStartsWith = value; return this; } public String getContentsEndsWith() { return ContentsEndsWith; } public CR_CustomSettingValuesQuery setContentsEndsWith(String value) { this.ContentsEndsWith = value; return this; } public String getContentsContains() { return ContentsContains; } public CR_CustomSettingValuesQuery setContentsContains(String value) { this.ContentsContains = value; return this; } public String getContentsLike() { return ContentsLike; } public CR_CustomSettingValuesQuery setContentsLike(String value) { this.ContentsLike = value; return this; } public ArrayList getContentsBetween() { return ContentsBetween; } public CR_CustomSettingValuesQuery setContentsBetween(ArrayList value) { this.ContentsBetween = value; return this; } public ArrayList getContentsIn() { return ContentsIn; } public CR_CustomSettingValuesQuery setContentsIn(ArrayList value) { this.ContentsIn = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public CR_CustomSettingValuesQuery setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getLastSavedDateTimeGreaterThanOrEqualTo() { return LastSavedDateTimeGreaterThanOrEqualTo; } public CR_CustomSettingValuesQuery setLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.LastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeGreaterThan() { return LastSavedDateTimeGreaterThan; } public CR_CustomSettingValuesQuery setLastSavedDateTimeGreaterThan(Date value) { this.LastSavedDateTimeGreaterThan = value; return this; } public Date getLastSavedDateTimeLessThan() { return LastSavedDateTimeLessThan; } public CR_CustomSettingValuesQuery setLastSavedDateTimeLessThan(Date value) { this.LastSavedDateTimeLessThan = value; return this; } public Date getLastSavedDateTimeLessThanOrEqualTo() { return LastSavedDateTimeLessThanOrEqualTo; } public CR_CustomSettingValuesQuery setLastSavedDateTimeLessThanOrEqualTo(Date value) { this.LastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeNotEqualTo() { return LastSavedDateTimeNotEqualTo; } public CR_CustomSettingValuesQuery setLastSavedDateTimeNotEqualTo(Date value) { this.LastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getLastSavedDateTimeBetween() { return LastSavedDateTimeBetween; } public CR_CustomSettingValuesQuery setLastSavedDateTimeBetween(ArrayList value) { this.LastSavedDateTimeBetween = value; return this; } public ArrayList getLastSavedDateTimeIn() { return LastSavedDateTimeIn; } public CR_CustomSettingValuesQuery setLastSavedDateTimeIn(ArrayList value) { this.LastSavedDateTimeIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class CR_DebitAdjustmentCustomSettingQuery extends QueryDb implements IReturn> { public String SettingID = null; public String SettingIDStartsWith = null; public String SettingIDEndsWith = null; public String SettingIDContains = null; public String SettingIDLike = null; public ArrayList SettingIDBetween = null; public ArrayList SettingIDIn = null; public Date LastSavedDateTime = null; public Date LastSavedDateTimeGreaterThanOrEqualTo = null; public Date LastSavedDateTimeGreaterThan = null; public Date LastSavedDateTimeLessThan = null; public Date LastSavedDateTimeLessThanOrEqualTo = null; public Date LastSavedDateTimeNotEqualTo = null; public ArrayList LastSavedDateTimeBetween = null; public ArrayList LastSavedDateTimeIn = null; public String SettingDescription = null; public String SettingDescriptionStartsWith = null; public String SettingDescriptionEndsWith = null; public String SettingDescriptionContains = null; public String SettingDescriptionLike = null; public ArrayList SettingDescriptionBetween = null; public ArrayList SettingDescriptionIn = null; public String SettingName = null; public String SettingNameStartsWith = null; public String SettingNameEndsWith = null; public String SettingNameContains = null; public String SettingNameLike = null; public ArrayList SettingNameBetween = null; public ArrayList SettingNameIn = null; public Integer DisplayOrder = null; public Integer DisplayOrderGreaterThanOrEqualTo = null; public Integer DisplayOrderGreaterThan = null; public Integer DisplayOrderLessThan = null; public Integer DisplayOrderLessThanOrEqualTo = null; public Integer DisplayOrderNotEqualTo = null; public ArrayList DisplayOrderBetween = null; public ArrayList DisplayOrderIn = null; public Short CellType = null; public Short CellTypeGreaterThanOrEqualTo = null; public Short CellTypeGreaterThan = null; public Short CellTypeLessThan = null; public Short CellTypeLessThanOrEqualTo = null; public Short CellTypeNotEqualTo = null; public ArrayList CellTypeBetween = null; public ArrayList CellTypeIn = null; public String ScriptFormatCell = null; public String ScriptFormatCellStartsWith = null; public String ScriptFormatCellEndsWith = null; public String ScriptFormatCellContains = null; public String ScriptFormatCellLike = null; public ArrayList ScriptFormatCellBetween = null; public ArrayList ScriptFormatCellIn = null; public String ScriptButtonClicked = null; public String ScriptButtonClickedStartsWith = null; public String ScriptButtonClickedEndsWith = null; public String ScriptButtonClickedContains = null; public String ScriptButtonClickedLike = null; public ArrayList ScriptButtonClickedBetween = null; public ArrayList ScriptButtonClickedIn = null; public String ScriptReadData = null; public String ScriptReadDataStartsWith = null; public String ScriptReadDataEndsWith = null; public String ScriptReadDataContains = null; public String ScriptReadDataLike = null; public ArrayList ScriptReadDataBetween = null; public ArrayList ScriptReadDataIn = null; public String GridHandlerCode = null; public String GridHandlerCodeStartsWith = null; public String GridHandlerCodeEndsWith = null; public String GridHandlerCodeContains = null; public String GridHandlerCodeLike = null; public ArrayList GridHandlerCodeBetween = null; public ArrayList GridHandlerCodeIn = null; public UUID SY_Plugin_RecID = null; public ArrayList SY_Plugin_RecIDIn = null; public String getSettingID() { return SettingID; } public CR_DebitAdjustmentCustomSettingQuery setSettingID(String value) { this.SettingID = value; return this; } public String getSettingIDStartsWith() { return SettingIDStartsWith; } public CR_DebitAdjustmentCustomSettingQuery setSettingIDStartsWith(String value) { this.SettingIDStartsWith = value; return this; } public String getSettingIDEndsWith() { return SettingIDEndsWith; } public CR_DebitAdjustmentCustomSettingQuery setSettingIDEndsWith(String value) { this.SettingIDEndsWith = value; return this; } public String getSettingIDContains() { return SettingIDContains; } public CR_DebitAdjustmentCustomSettingQuery setSettingIDContains(String value) { this.SettingIDContains = value; return this; } public String getSettingIDLike() { return SettingIDLike; } public CR_DebitAdjustmentCustomSettingQuery setSettingIDLike(String value) { this.SettingIDLike = value; return this; } public ArrayList getSettingIDBetween() { return SettingIDBetween; } public CR_DebitAdjustmentCustomSettingQuery setSettingIDBetween(ArrayList value) { this.SettingIDBetween = value; return this; } public ArrayList getSettingIDIn() { return SettingIDIn; } public CR_DebitAdjustmentCustomSettingQuery setSettingIDIn(ArrayList value) { this.SettingIDIn = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public CR_DebitAdjustmentCustomSettingQuery setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getLastSavedDateTimeGreaterThanOrEqualTo() { return LastSavedDateTimeGreaterThanOrEqualTo; } public CR_DebitAdjustmentCustomSettingQuery setLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.LastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeGreaterThan() { return LastSavedDateTimeGreaterThan; } public CR_DebitAdjustmentCustomSettingQuery setLastSavedDateTimeGreaterThan(Date value) { this.LastSavedDateTimeGreaterThan = value; return this; } public Date getLastSavedDateTimeLessThan() { return LastSavedDateTimeLessThan; } public CR_DebitAdjustmentCustomSettingQuery setLastSavedDateTimeLessThan(Date value) { this.LastSavedDateTimeLessThan = value; return this; } public Date getLastSavedDateTimeLessThanOrEqualTo() { return LastSavedDateTimeLessThanOrEqualTo; } public CR_DebitAdjustmentCustomSettingQuery setLastSavedDateTimeLessThanOrEqualTo(Date value) { this.LastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeNotEqualTo() { return LastSavedDateTimeNotEqualTo; } public CR_DebitAdjustmentCustomSettingQuery setLastSavedDateTimeNotEqualTo(Date value) { this.LastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getLastSavedDateTimeBetween() { return LastSavedDateTimeBetween; } public CR_DebitAdjustmentCustomSettingQuery setLastSavedDateTimeBetween(ArrayList value) { this.LastSavedDateTimeBetween = value; return this; } public ArrayList getLastSavedDateTimeIn() { return LastSavedDateTimeIn; } public CR_DebitAdjustmentCustomSettingQuery setLastSavedDateTimeIn(ArrayList value) { this.LastSavedDateTimeIn = value; return this; } public String getSettingDescription() { return SettingDescription; } public CR_DebitAdjustmentCustomSettingQuery setSettingDescription(String value) { this.SettingDescription = value; return this; } public String getSettingDescriptionStartsWith() { return SettingDescriptionStartsWith; } public CR_DebitAdjustmentCustomSettingQuery setSettingDescriptionStartsWith(String value) { this.SettingDescriptionStartsWith = value; return this; } public String getSettingDescriptionEndsWith() { return SettingDescriptionEndsWith; } public CR_DebitAdjustmentCustomSettingQuery setSettingDescriptionEndsWith(String value) { this.SettingDescriptionEndsWith = value; return this; } public String getSettingDescriptionContains() { return SettingDescriptionContains; } public CR_DebitAdjustmentCustomSettingQuery setSettingDescriptionContains(String value) { this.SettingDescriptionContains = value; return this; } public String getSettingDescriptionLike() { return SettingDescriptionLike; } public CR_DebitAdjustmentCustomSettingQuery setSettingDescriptionLike(String value) { this.SettingDescriptionLike = value; return this; } public ArrayList getSettingDescriptionBetween() { return SettingDescriptionBetween; } public CR_DebitAdjustmentCustomSettingQuery setSettingDescriptionBetween(ArrayList value) { this.SettingDescriptionBetween = value; return this; } public ArrayList getSettingDescriptionIn() { return SettingDescriptionIn; } public CR_DebitAdjustmentCustomSettingQuery setSettingDescriptionIn(ArrayList value) { this.SettingDescriptionIn = value; return this; } public String getSettingName() { return SettingName; } public CR_DebitAdjustmentCustomSettingQuery setSettingName(String value) { this.SettingName = value; return this; } public String getSettingNameStartsWith() { return SettingNameStartsWith; } public CR_DebitAdjustmentCustomSettingQuery setSettingNameStartsWith(String value) { this.SettingNameStartsWith = value; return this; } public String getSettingNameEndsWith() { return SettingNameEndsWith; } public CR_DebitAdjustmentCustomSettingQuery setSettingNameEndsWith(String value) { this.SettingNameEndsWith = value; return this; } public String getSettingNameContains() { return SettingNameContains; } public CR_DebitAdjustmentCustomSettingQuery setSettingNameContains(String value) { this.SettingNameContains = value; return this; } public String getSettingNameLike() { return SettingNameLike; } public CR_DebitAdjustmentCustomSettingQuery setSettingNameLike(String value) { this.SettingNameLike = value; return this; } public ArrayList getSettingNameBetween() { return SettingNameBetween; } public CR_DebitAdjustmentCustomSettingQuery setSettingNameBetween(ArrayList value) { this.SettingNameBetween = value; return this; } public ArrayList getSettingNameIn() { return SettingNameIn; } public CR_DebitAdjustmentCustomSettingQuery setSettingNameIn(ArrayList value) { this.SettingNameIn = value; return this; } public Integer getDisplayOrder() { return DisplayOrder; } public CR_DebitAdjustmentCustomSettingQuery setDisplayOrder(Integer value) { this.DisplayOrder = value; return this; } public Integer getDisplayOrderGreaterThanOrEqualTo() { return DisplayOrderGreaterThanOrEqualTo; } public CR_DebitAdjustmentCustomSettingQuery setDisplayOrderGreaterThanOrEqualTo(Integer value) { this.DisplayOrderGreaterThanOrEqualTo = value; return this; } public Integer getDisplayOrderGreaterThan() { return DisplayOrderGreaterThan; } public CR_DebitAdjustmentCustomSettingQuery setDisplayOrderGreaterThan(Integer value) { this.DisplayOrderGreaterThan = value; return this; } public Integer getDisplayOrderLessThan() { return DisplayOrderLessThan; } public CR_DebitAdjustmentCustomSettingQuery setDisplayOrderLessThan(Integer value) { this.DisplayOrderLessThan = value; return this; } public Integer getDisplayOrderLessThanOrEqualTo() { return DisplayOrderLessThanOrEqualTo; } public CR_DebitAdjustmentCustomSettingQuery setDisplayOrderLessThanOrEqualTo(Integer value) { this.DisplayOrderLessThanOrEqualTo = value; return this; } public Integer getDisplayOrderNotEqualTo() { return DisplayOrderNotEqualTo; } public CR_DebitAdjustmentCustomSettingQuery setDisplayOrderNotEqualTo(Integer value) { this.DisplayOrderNotEqualTo = value; return this; } public ArrayList getDisplayOrderBetween() { return DisplayOrderBetween; } public CR_DebitAdjustmentCustomSettingQuery setDisplayOrderBetween(ArrayList value) { this.DisplayOrderBetween = value; return this; } public ArrayList getDisplayOrderIn() { return DisplayOrderIn; } public CR_DebitAdjustmentCustomSettingQuery setDisplayOrderIn(ArrayList value) { this.DisplayOrderIn = value; return this; } public Short getCellType() { return CellType; } public CR_DebitAdjustmentCustomSettingQuery setCellType(Short value) { this.CellType = value; return this; } public Short getCellTypeGreaterThanOrEqualTo() { return CellTypeGreaterThanOrEqualTo; } public CR_DebitAdjustmentCustomSettingQuery setCellTypeGreaterThanOrEqualTo(Short value) { this.CellTypeGreaterThanOrEqualTo = value; return this; } public Short getCellTypeGreaterThan() { return CellTypeGreaterThan; } public CR_DebitAdjustmentCustomSettingQuery setCellTypeGreaterThan(Short value) { this.CellTypeGreaterThan = value; return this; } public Short getCellTypeLessThan() { return CellTypeLessThan; } public CR_DebitAdjustmentCustomSettingQuery setCellTypeLessThan(Short value) { this.CellTypeLessThan = value; return this; } public Short getCellTypeLessThanOrEqualTo() { return CellTypeLessThanOrEqualTo; } public CR_DebitAdjustmentCustomSettingQuery setCellTypeLessThanOrEqualTo(Short value) { this.CellTypeLessThanOrEqualTo = value; return this; } public Short getCellTypeNotEqualTo() { return CellTypeNotEqualTo; } public CR_DebitAdjustmentCustomSettingQuery setCellTypeNotEqualTo(Short value) { this.CellTypeNotEqualTo = value; return this; } public ArrayList getCellTypeBetween() { return CellTypeBetween; } public CR_DebitAdjustmentCustomSettingQuery setCellTypeBetween(ArrayList value) { this.CellTypeBetween = value; return this; } public ArrayList getCellTypeIn() { return CellTypeIn; } public CR_DebitAdjustmentCustomSettingQuery setCellTypeIn(ArrayList value) { this.CellTypeIn = value; return this; } public String getScriptFormatCell() { return ScriptFormatCell; } public CR_DebitAdjustmentCustomSettingQuery setScriptFormatCell(String value) { this.ScriptFormatCell = value; return this; } public String getScriptFormatCellStartsWith() { return ScriptFormatCellStartsWith; } public CR_DebitAdjustmentCustomSettingQuery setScriptFormatCellStartsWith(String value) { this.ScriptFormatCellStartsWith = value; return this; } public String getScriptFormatCellEndsWith() { return ScriptFormatCellEndsWith; } public CR_DebitAdjustmentCustomSettingQuery setScriptFormatCellEndsWith(String value) { this.ScriptFormatCellEndsWith = value; return this; } public String getScriptFormatCellContains() { return ScriptFormatCellContains; } public CR_DebitAdjustmentCustomSettingQuery setScriptFormatCellContains(String value) { this.ScriptFormatCellContains = value; return this; } public String getScriptFormatCellLike() { return ScriptFormatCellLike; } public CR_DebitAdjustmentCustomSettingQuery setScriptFormatCellLike(String value) { this.ScriptFormatCellLike = value; return this; } public ArrayList getScriptFormatCellBetween() { return ScriptFormatCellBetween; } public CR_DebitAdjustmentCustomSettingQuery setScriptFormatCellBetween(ArrayList value) { this.ScriptFormatCellBetween = value; return this; } public ArrayList getScriptFormatCellIn() { return ScriptFormatCellIn; } public CR_DebitAdjustmentCustomSettingQuery setScriptFormatCellIn(ArrayList value) { this.ScriptFormatCellIn = value; return this; } public String getScriptButtonClicked() { return ScriptButtonClicked; } public CR_DebitAdjustmentCustomSettingQuery setScriptButtonClicked(String value) { this.ScriptButtonClicked = value; return this; } public String getScriptButtonClickedStartsWith() { return ScriptButtonClickedStartsWith; } public CR_DebitAdjustmentCustomSettingQuery setScriptButtonClickedStartsWith(String value) { this.ScriptButtonClickedStartsWith = value; return this; } public String getScriptButtonClickedEndsWith() { return ScriptButtonClickedEndsWith; } public CR_DebitAdjustmentCustomSettingQuery setScriptButtonClickedEndsWith(String value) { this.ScriptButtonClickedEndsWith = value; return this; } public String getScriptButtonClickedContains() { return ScriptButtonClickedContains; } public CR_DebitAdjustmentCustomSettingQuery setScriptButtonClickedContains(String value) { this.ScriptButtonClickedContains = value; return this; } public String getScriptButtonClickedLike() { return ScriptButtonClickedLike; } public CR_DebitAdjustmentCustomSettingQuery setScriptButtonClickedLike(String value) { this.ScriptButtonClickedLike = value; return this; } public ArrayList getScriptButtonClickedBetween() { return ScriptButtonClickedBetween; } public CR_DebitAdjustmentCustomSettingQuery setScriptButtonClickedBetween(ArrayList value) { this.ScriptButtonClickedBetween = value; return this; } public ArrayList getScriptButtonClickedIn() { return ScriptButtonClickedIn; } public CR_DebitAdjustmentCustomSettingQuery setScriptButtonClickedIn(ArrayList value) { this.ScriptButtonClickedIn = value; return this; } public String getScriptReadData() { return ScriptReadData; } public CR_DebitAdjustmentCustomSettingQuery setScriptReadData(String value) { this.ScriptReadData = value; return this; } public String getScriptReadDataStartsWith() { return ScriptReadDataStartsWith; } public CR_DebitAdjustmentCustomSettingQuery setScriptReadDataStartsWith(String value) { this.ScriptReadDataStartsWith = value; return this; } public String getScriptReadDataEndsWith() { return ScriptReadDataEndsWith; } public CR_DebitAdjustmentCustomSettingQuery setScriptReadDataEndsWith(String value) { this.ScriptReadDataEndsWith = value; return this; } public String getScriptReadDataContains() { return ScriptReadDataContains; } public CR_DebitAdjustmentCustomSettingQuery setScriptReadDataContains(String value) { this.ScriptReadDataContains = value; return this; } public String getScriptReadDataLike() { return ScriptReadDataLike; } public CR_DebitAdjustmentCustomSettingQuery setScriptReadDataLike(String value) { this.ScriptReadDataLike = value; return this; } public ArrayList getScriptReadDataBetween() { return ScriptReadDataBetween; } public CR_DebitAdjustmentCustomSettingQuery setScriptReadDataBetween(ArrayList value) { this.ScriptReadDataBetween = value; return this; } public ArrayList getScriptReadDataIn() { return ScriptReadDataIn; } public CR_DebitAdjustmentCustomSettingQuery setScriptReadDataIn(ArrayList value) { this.ScriptReadDataIn = value; return this; } public String getGridHandlerCode() { return GridHandlerCode; } public CR_DebitAdjustmentCustomSettingQuery setGridHandlerCode(String value) { this.GridHandlerCode = value; return this; } public String getGridHandlerCodeStartsWith() { return GridHandlerCodeStartsWith; } public CR_DebitAdjustmentCustomSettingQuery setGridHandlerCodeStartsWith(String value) { this.GridHandlerCodeStartsWith = value; return this; } public String getGridHandlerCodeEndsWith() { return GridHandlerCodeEndsWith; } public CR_DebitAdjustmentCustomSettingQuery setGridHandlerCodeEndsWith(String value) { this.GridHandlerCodeEndsWith = value; return this; } public String getGridHandlerCodeContains() { return GridHandlerCodeContains; } public CR_DebitAdjustmentCustomSettingQuery setGridHandlerCodeContains(String value) { this.GridHandlerCodeContains = value; return this; } public String getGridHandlerCodeLike() { return GridHandlerCodeLike; } public CR_DebitAdjustmentCustomSettingQuery setGridHandlerCodeLike(String value) { this.GridHandlerCodeLike = value; return this; } public ArrayList getGridHandlerCodeBetween() { return GridHandlerCodeBetween; } public CR_DebitAdjustmentCustomSettingQuery setGridHandlerCodeBetween(ArrayList value) { this.GridHandlerCodeBetween = value; return this; } public ArrayList getGridHandlerCodeIn() { return GridHandlerCodeIn; } public CR_DebitAdjustmentCustomSettingQuery setGridHandlerCodeIn(ArrayList value) { this.GridHandlerCodeIn = value; return this; } public UUID getSyPluginRecID() { return SY_Plugin_RecID; } public CR_DebitAdjustmentCustomSettingQuery setSyPluginRecID(UUID value) { this.SY_Plugin_RecID = value; return this; } public ArrayList getSyPluginRecIDIn() { return SY_Plugin_RecIDIn; } public CR_DebitAdjustmentCustomSettingQuery setSyPluginRecIDIn(ArrayList value) { this.SY_Plugin_RecIDIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class CR_DebitAdjustmentCustomSettingValuesQuery extends QueryDb implements IReturn> { public String SettingValueID = null; public String SettingValueIDStartsWith = null; public String SettingValueIDEndsWith = null; public String SettingValueIDContains = null; public String SettingValueIDLike = null; public ArrayList SettingValueIDBetween = null; public ArrayList SettingValueIDIn = null; public String SettingID = null; public String SettingIDStartsWith = null; public String SettingIDEndsWith = null; public String SettingIDContains = null; public String SettingIDLike = null; public ArrayList SettingIDBetween = null; public ArrayList SettingIDIn = null; public String CR_BatchTrans_ReceiptID = null; public String CR_BatchTrans_ReceiptIDStartsWith = null; public String CR_BatchTrans_ReceiptIDEndsWith = null; public String CR_BatchTrans_ReceiptIDContains = null; public String CR_BatchTrans_ReceiptIDLike = null; public ArrayList CR_BatchTrans_ReceiptIDBetween = null; public ArrayList CR_BatchTrans_ReceiptIDIn = null; public String Contents = null; public String ContentsStartsWith = null; public String ContentsEndsWith = null; public String ContentsContains = null; public String ContentsLike = null; public ArrayList ContentsBetween = null; public ArrayList ContentsIn = null; public Date LastSavedDateTime = null; public Date LastSavedDateTimeGreaterThanOrEqualTo = null; public Date LastSavedDateTimeGreaterThan = null; public Date LastSavedDateTimeLessThan = null; public Date LastSavedDateTimeLessThanOrEqualTo = null; public Date LastSavedDateTimeNotEqualTo = null; public ArrayList LastSavedDateTimeBetween = null; public ArrayList LastSavedDateTimeIn = null; public String getSettingValueID() { return SettingValueID; } public CR_DebitAdjustmentCustomSettingValuesQuery setSettingValueID(String value) { this.SettingValueID = value; return this; } public String getSettingValueIDStartsWith() { return SettingValueIDStartsWith; } public CR_DebitAdjustmentCustomSettingValuesQuery setSettingValueIDStartsWith(String value) { this.SettingValueIDStartsWith = value; return this; } public String getSettingValueIDEndsWith() { return SettingValueIDEndsWith; } public CR_DebitAdjustmentCustomSettingValuesQuery setSettingValueIDEndsWith(String value) { this.SettingValueIDEndsWith = value; return this; } public String getSettingValueIDContains() { return SettingValueIDContains; } public CR_DebitAdjustmentCustomSettingValuesQuery setSettingValueIDContains(String value) { this.SettingValueIDContains = value; return this; } public String getSettingValueIDLike() { return SettingValueIDLike; } public CR_DebitAdjustmentCustomSettingValuesQuery setSettingValueIDLike(String value) { this.SettingValueIDLike = value; return this; } public ArrayList getSettingValueIDBetween() { return SettingValueIDBetween; } public CR_DebitAdjustmentCustomSettingValuesQuery setSettingValueIDBetween(ArrayList value) { this.SettingValueIDBetween = value; return this; } public ArrayList getSettingValueIDIn() { return SettingValueIDIn; } public CR_DebitAdjustmentCustomSettingValuesQuery setSettingValueIDIn(ArrayList value) { this.SettingValueIDIn = value; return this; } public String getSettingID() { return SettingID; } public CR_DebitAdjustmentCustomSettingValuesQuery setSettingID(String value) { this.SettingID = value; return this; } public String getSettingIDStartsWith() { return SettingIDStartsWith; } public CR_DebitAdjustmentCustomSettingValuesQuery setSettingIDStartsWith(String value) { this.SettingIDStartsWith = value; return this; } public String getSettingIDEndsWith() { return SettingIDEndsWith; } public CR_DebitAdjustmentCustomSettingValuesQuery setSettingIDEndsWith(String value) { this.SettingIDEndsWith = value; return this; } public String getSettingIDContains() { return SettingIDContains; } public CR_DebitAdjustmentCustomSettingValuesQuery setSettingIDContains(String value) { this.SettingIDContains = value; return this; } public String getSettingIDLike() { return SettingIDLike; } public CR_DebitAdjustmentCustomSettingValuesQuery setSettingIDLike(String value) { this.SettingIDLike = value; return this; } public ArrayList getSettingIDBetween() { return SettingIDBetween; } public CR_DebitAdjustmentCustomSettingValuesQuery setSettingIDBetween(ArrayList value) { this.SettingIDBetween = value; return this; } public ArrayList getSettingIDIn() { return SettingIDIn; } public CR_DebitAdjustmentCustomSettingValuesQuery setSettingIDIn(ArrayList value) { this.SettingIDIn = value; return this; } public String getCrBatchTransReceiptID() { return CR_BatchTrans_ReceiptID; } public CR_DebitAdjustmentCustomSettingValuesQuery setCrBatchTransReceiptID(String value) { this.CR_BatchTrans_ReceiptID = value; return this; } public String getCrBatchTransReceiptIDStartsWith() { return CR_BatchTrans_ReceiptIDStartsWith; } public CR_DebitAdjustmentCustomSettingValuesQuery setCrBatchTransReceiptIDStartsWith(String value) { this.CR_BatchTrans_ReceiptIDStartsWith = value; return this; } public String getCrBatchTransReceiptIDEndsWith() { return CR_BatchTrans_ReceiptIDEndsWith; } public CR_DebitAdjustmentCustomSettingValuesQuery setCrBatchTransReceiptIDEndsWith(String value) { this.CR_BatchTrans_ReceiptIDEndsWith = value; return this; } public String getCrBatchTransReceiptIDContains() { return CR_BatchTrans_ReceiptIDContains; } public CR_DebitAdjustmentCustomSettingValuesQuery setCrBatchTransReceiptIDContains(String value) { this.CR_BatchTrans_ReceiptIDContains = value; return this; } public String getCrBatchTransReceiptIDLike() { return CR_BatchTrans_ReceiptIDLike; } public CR_DebitAdjustmentCustomSettingValuesQuery setCrBatchTransReceiptIDLike(String value) { this.CR_BatchTrans_ReceiptIDLike = value; return this; } public ArrayList getCrBatchTransReceiptIDBetween() { return CR_BatchTrans_ReceiptIDBetween; } public CR_DebitAdjustmentCustomSettingValuesQuery setCrBatchTransReceiptIDBetween(ArrayList value) { this.CR_BatchTrans_ReceiptIDBetween = value; return this; } public ArrayList getCrBatchTransReceiptIDIn() { return CR_BatchTrans_ReceiptIDIn; } public CR_DebitAdjustmentCustomSettingValuesQuery setCrBatchTransReceiptIDIn(ArrayList value) { this.CR_BatchTrans_ReceiptIDIn = value; return this; } public String getContents() { return Contents; } public CR_DebitAdjustmentCustomSettingValuesQuery setContents(String value) { this.Contents = value; return this; } public String getContentsStartsWith() { return ContentsStartsWith; } public CR_DebitAdjustmentCustomSettingValuesQuery setContentsStartsWith(String value) { this.ContentsStartsWith = value; return this; } public String getContentsEndsWith() { return ContentsEndsWith; } public CR_DebitAdjustmentCustomSettingValuesQuery setContentsEndsWith(String value) { this.ContentsEndsWith = value; return this; } public String getContentsContains() { return ContentsContains; } public CR_DebitAdjustmentCustomSettingValuesQuery setContentsContains(String value) { this.ContentsContains = value; return this; } public String getContentsLike() { return ContentsLike; } public CR_DebitAdjustmentCustomSettingValuesQuery setContentsLike(String value) { this.ContentsLike = value; return this; } public ArrayList getContentsBetween() { return ContentsBetween; } public CR_DebitAdjustmentCustomSettingValuesQuery setContentsBetween(ArrayList value) { this.ContentsBetween = value; return this; } public ArrayList getContentsIn() { return ContentsIn; } public CR_DebitAdjustmentCustomSettingValuesQuery setContentsIn(ArrayList value) { this.ContentsIn = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public CR_DebitAdjustmentCustomSettingValuesQuery setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getLastSavedDateTimeGreaterThanOrEqualTo() { return LastSavedDateTimeGreaterThanOrEqualTo; } public CR_DebitAdjustmentCustomSettingValuesQuery setLastSavedDateTimeGreaterThanOrEqualTo(Date value) { this.LastSavedDateTimeGreaterThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeGreaterThan() { return LastSavedDateTimeGreaterThan; } public CR_DebitAdjustmentCustomSettingValuesQuery setLastSavedDateTimeGreaterThan(Date value) { this.LastSavedDateTimeGreaterThan = value; return this; } public Date getLastSavedDateTimeLessThan() { return LastSavedDateTimeLessThan; } public CR_DebitAdjustmentCustomSettingValuesQuery setLastSavedDateTimeLessThan(Date value) { this.LastSavedDateTimeLessThan = value; return this; } public Date getLastSavedDateTimeLessThanOrEqualTo() { return LastSavedDateTimeLessThanOrEqualTo; } public CR_DebitAdjustmentCustomSettingValuesQuery setLastSavedDateTimeLessThanOrEqualTo(Date value) { this.LastSavedDateTimeLessThanOrEqualTo = value; return this; } public Date getLastSavedDateTimeNotEqualTo() { return LastSavedDateTimeNotEqualTo; } public CR_DebitAdjustmentCustomSettingValuesQuery setLastSavedDateTimeNotEqualTo(Date value) { this.LastSavedDateTimeNotEqualTo = value; return this; } public ArrayList getLastSavedDateTimeBetween() { return LastSavedDateTimeBetween; } public CR_DebitAdjustmentCustomSettingValuesQuery setLastSavedDateTimeBetween(ArrayList value) { this.LastSavedDateTimeBetween = value; return this; } public ArrayList getLastSavedDateTimeIn() { return LastSavedDateTimeIn; } public CR_DebitAdjustmentCustomSettingValuesQuery setLastSavedDateTimeIn(ArrayList value) { this.LastSavedDateTimeIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @ApiResponse(Description="Read OK", StatusCode=200) // @ApiResponse(Description="Not authenticated", StatusCode=401) // @ApiResponse(Description="Not authorised", StatusCode=403) public static class CR_DetailedGLAuditQuery extends QueryDb implements IReturn> { public String ReceiptID = null; public String ReceiptIDStartsWith = null; public String ReceiptIDEndsWith = null; public String ReceiptIDContains = null; public String ReceiptIDLike = null; public ArrayList ReceiptIDBetween = null; public ArrayList ReceiptIDIn = null; public String AccountID = null; public String AccountIDStartsWith = null; public String AccountIDEndsWith = null; public String AccountIDContains = null; public String AccountIDLike = null; public ArrayList AccountIDBetween = null; public ArrayList AccountIDIn = null; public String CRAccountNo = null; public String CRAccountNoStartsWith = null; public String CRAccountNoEndsWith = null; public String CRAccountNoContains = null; public String CRAccountNoLike = null; public ArrayList CRAccountNoBetween = null; public ArrayList CRAccountNoIn = null; public String RemitNo = null; public String RemitNoStartsWith = null; public String RemitNoEndsWith = null; public String RemitNoContains = null; public String RemitNoLike = null; public ArrayList RemitNoBetween = null; public ArrayList RemitNoIn = null; public Date ReceiptDate = null; public Date ReceiptDateGreaterThanOrEqualTo = null; public Date ReceiptDateGreaterThan = null; public Date ReceiptDateLessThan = null; public Date ReceiptDateLessThanOrEqualTo = null; public Date ReceiptDateNotEqualTo = null; public ArrayList ReceiptDateBetween = null; public ArrayList ReceiptDateIn = null; public BigDecimal HomeTransAmount = null; public BigDecimal HomeTransAmountGreaterThanOrEqualTo = null; public BigDecimal HomeTransAmountGreaterThan = null; public BigDecimal HomeTransAmountLessThan = null; public BigDecimal HomeTransAmountLessThanOrEqualTo = null; public BigDecimal HomeTransAmountNotEqualTo = null; public ArrayList HomeTransAmountBetween = null; public ArrayList HomeTransAmountIn = null; public String SourceID = null; public String SourceIDStartsWith = null; public String SourceIDEndsWith = null; public String SourceIDContains = null; public String SourceIDLike = null; public ArrayList SourceIDBetween = null; public ArrayList SourceIDIn = null; public Short SetType = null; public Short SetTypeGreaterThanOrEqualTo = null; public Short SetTypeGreaterThan = null; public Short SetTypeLessThan = null; public Short SetTypeLessThanOrEqualTo = null; public Short SetTypeNotEqualTo = null; public ArrayList SetTypeBetween = null; public ArrayList SetTypeIn = null; public String GLSetID = null; public String GLSetIDStartsWith = null; public String GLSetIDEndsWith = null; public String GLSetIDContains = null; public String GLSetIDLike = null; public ArrayList GLSetIDBetween = null; public ArrayList GLSetIDIn = null; public String GLAccountNo = null; public String GLAccountNoStartsWith = null; public String GLAccountNoEndsWith = null; public String GLAccountNoContains = null; public String GLAccountNoLike = null; public ArrayList GLAccountNoBetween = null; public ArrayList GLAccountNoIn = null; public String Ref = null; public String RefStartsWith = null; public String RefEndsWith = null; public String RefContains = null; public String RefLike = null; public ArrayList RefBetween = null; public ArrayList RefIn = null; public BigDecimal GLTransAmount = null; public BigDecimal GLTransAmountGreaterThanOrEqualTo = null; public BigDecimal GLTransAmountGreaterThan = null; public BigDecimal GLTransAmountLessThan = null; public BigDecimal GLTransAmountLessThanOrEqualTo = null; public BigDecimal GLTransAmountNotEqualTo = null; public ArrayList GLTransAmountBetween = null; public ArrayList GLTransAmountIn = null; public String getReceiptID() { return ReceiptID; } public CR_DetailedGLAuditQuery setReceiptID(String value) { this.ReceiptID = value; return this; } public String getReceiptIDStartsWith() { return ReceiptIDStartsWith; } public CR_DetailedGLAuditQuery setReceiptIDStartsWith(String value) { this.ReceiptIDStartsWith = value; return this; } public String getReceiptIDEndsWith() { return ReceiptIDEndsWith; } public CR_DetailedGLAuditQuery setReceiptIDEndsWith(String value) { this.ReceiptIDEndsWith = value; return this; } public String getReceiptIDContains() { return ReceiptIDContains; } public CR_DetailedGLAuditQuery setReceiptIDContains(String value) { this.ReceiptIDContains = value; return this; } public String getReceiptIDLike() { return ReceiptIDLike; } public CR_DetailedGLAuditQuery setReceiptIDLike(String value) { this.ReceiptIDLike = value; return this; } public ArrayList getReceiptIDBetween() { return ReceiptIDBetween; } public CR_DetailedGLAuditQuery setReceiptIDBetween(ArrayList value) { this.ReceiptIDBetween = value; return this; } public ArrayList getReceiptIDIn() { return ReceiptIDIn; } public CR_DetailedGLAuditQuery setReceiptIDIn(ArrayList value) { this.ReceiptIDIn = value; return this; } public String getAccountID() { return AccountID; } public CR_DetailedGLAuditQuery setAccountID(String value) { this.AccountID = value; return this; } public String getAccountIDStartsWith() { return AccountIDStartsWith; } public CR_DetailedGLAuditQuery setAccountIDStartsWith(String value) { this.AccountIDStartsWith = value; return this; } public String getAccountIDEndsWith() { return AccountIDEndsWith; } public CR_DetailedGLAuditQuery setAccountIDEndsWith(String value) { this.AccountIDEndsWith = value; return this; } public String getAccountIDContains() { return AccountIDContains; } public CR_DetailedGLAuditQuery setAccountIDContains(String value) { this.AccountIDContains = value; return this; } public String getAccountIDLike() { return AccountIDLike; } public CR_DetailedGLAuditQuery setAccountIDLike(String value) { this.AccountIDLike = value; return this; } public ArrayList getAccountIDBetween() { return AccountIDBetween; } public CR_DetailedGLAuditQuery setAccountIDBetween(ArrayList value) { this.AccountIDBetween = value; return this; } public ArrayList getAccountIDIn() { return AccountIDIn; } public CR_DetailedGLAuditQuery setAccountIDIn(ArrayList value) { this.AccountIDIn = value; return this; } public String getCrAccountNo() { return CRAccountNo; } public CR_DetailedGLAuditQuery setCrAccountNo(String value) { this.CRAccountNo = value; return this; } public String getCrAccountNoStartsWith() { return CRAccountNoStartsWith; } public CR_DetailedGLAuditQuery setCrAccountNoStartsWith(String value) { this.CRAccountNoStartsWith = value; return this; } public String getCrAccountNoEndsWith() { return CRAccountNoEndsWith; } public CR_DetailedGLAuditQuery setCrAccountNoEndsWith(String value) { this.CRAccountNoEndsWith = value; return this; } public String getCrAccountNoContains() { return CRAccountNoContains; } public CR_DetailedGLAuditQuery setCrAccountNoContains(String value) { this.CRAccountNoContains = value; return this; } public String getCrAccountNoLike() { return CRAccountNoLike; } public CR_DetailedGLAuditQuery setCrAccountNoLike(String value) { this.CRAccountNoLike = value; return this; } public ArrayList getCrAccountNoBetween() { return CRAccountNoBetween; } public CR_DetailedGLAuditQuery setCrAccountNoBetween(ArrayList value) { this.CRAccountNoBetween = value; return this; } public ArrayList getCrAccountNoIn() { return CRAccountNoIn; } public CR_DetailedGLAuditQuery setCrAccountNoIn(ArrayList value) { this.CRAccountNoIn = value; return this; } public String getRemitNo() { return RemitNo; } public CR_DetailedGLAuditQuery setRemitNo(String value) { this.RemitNo = value; return this; } public String getRemitNoStartsWith() { return RemitNoStartsWith; } public CR_DetailedGLAuditQuery setRemitNoStartsWith(String value) { this.RemitNoStartsWith = value; return this; } public String getRemitNoEndsWith() { return RemitNoEndsWith; } public CR_DetailedGLAuditQuery setRemitNoEndsWith(String value) { this.RemitNoEndsWith = value; return this; } public String getRemitNoContains() { return RemitNoContains; } public CR_DetailedGLAuditQuery setRemitNoContains(String value) { this.RemitNoContains = value; return this; } public String getRemitNoLike() { return RemitNoLike; } public CR_DetailedGLAuditQuery setRemitNoLike(String value) { this.RemitNoLike = value; return this; } public ArrayList getRemitNoBetween() { return RemitNoBetween; } public CR_DetailedGLAuditQuery setRemitNoBetween(ArrayList value) { this.RemitNoBetween = value; return this; } public ArrayList getRemitNoIn() { return RemitNoIn; } public CR_DetailedGLAuditQuery setRemitNoIn(ArrayList value) { this.RemitNoIn = value; return this; } public Date getReceiptDate() { return ReceiptDate; } public CR_DetailedGLAuditQuery setReceiptDate(Date value) { this.ReceiptDate = value; return this; } public Date getReceiptDateGreaterThanOrEqualTo() { return ReceiptDateGreaterThanOrEqualTo; } public CR_DetailedGLAuditQuery setReceiptDateGreaterThanOrEqualTo(Date value) { this.ReceiptDateGreaterThanOrEqualTo = value; return this; } public Date getReceiptDateGreaterThan() { return ReceiptDateGreaterThan; } public CR_DetailedGLAuditQuery setReceiptDateGreaterThan(Date value) { this.ReceiptDateGreaterThan = value; return this; } public Date getReceiptDateLessThan() { return ReceiptDateLessThan; } public CR_DetailedGLAuditQuery setReceiptDateLessThan(Date value) { this.ReceiptDateLessThan = value; return this; } public Date getReceiptDateLessThanOrEqualTo() { return ReceiptDateLessThanOrEqualTo; } public CR_DetailedGLAuditQuery setReceiptDateLessThanOrEqualTo(Date value) { this.ReceiptDateLessThanOrEqualTo = value; return this; } public Date getReceiptDateNotEqualTo() { return ReceiptDateNotEqualTo; } public CR_DetailedGLAuditQuery setReceiptDateNotEqualTo(Date value) { this.ReceiptDateNotEqualTo = value; return this; } public ArrayList getReceiptDateBetween() { return ReceiptDateBetween; } public CR_DetailedGLAuditQuery setReceiptDateBetween(ArrayList value) { this.ReceiptDateBetween = value; return this; } public ArrayList getReceiptDateIn() { return ReceiptDateIn; } public CR_DetailedGLAuditQuery setReceiptDateIn(ArrayList value) { this.ReceiptDateIn = value; return this; } public BigDecimal getHomeTransAmount() { return HomeTransAmount; } public CR_DetailedGLAuditQuery setHomeTransAmount(BigDecimal value) { this.HomeTransAmount = value; return this; } public BigDecimal getHomeTransAmountGreaterThanOrEqualTo() { return HomeTransAmountGreaterThanOrEqualTo; } public CR_DetailedGLAuditQuery setHomeTransAmountGreaterThanOrEqualTo(BigDecimal value) { this.HomeTransAmountGreaterThanOrEqualTo = value; return this; } public BigDecimal getHomeTransAmountGreaterThan() { return HomeTransAmountGreaterThan; } public CR_DetailedGLAuditQuery setHomeTransAmountGreaterThan(BigDecimal value) { this.HomeTransAmountGreaterThan = value; return this; } public BigDecimal getHomeTransAmountLessThan() { return HomeTransAmountLessThan; } public CR_DetailedGLAuditQuery setHomeTransAmountLessThan(BigDecimal value) { this.HomeTransAmountLessThan = value; return this; } public BigDecimal getHomeTransAmountLessThanOrEqualTo() { return HomeTransAmountLessThanOrEqualTo; } public CR_DetailedGLAuditQuery setHomeTransAmountLessThanOrEqualTo(BigDecimal value) { this.HomeTransAmountLessThanOrEqualTo = value; return this; } public BigDecimal getHomeTransAmountNotEqualTo() { return HomeTransAmountNotEqualTo; } public CR_DetailedGLAuditQuery setHomeTransAmountNotEqualTo(BigDecimal value) { this.HomeTransAmountNotEqualTo = value; return this; } public ArrayList getHomeTransAmountBetween() { return HomeTransAmountBetween; } public CR_DetailedGLAuditQuery setHomeTransAmountBetween(ArrayList value) { this.HomeTransAmountBetween = value; return this; } public ArrayList getHomeTransAmountIn() { return HomeTransAmountIn; } public CR_DetailedGLAuditQuery setHomeTransAmountIn(ArrayList value) { this.HomeTransAmountIn = value; return this; } public String getSourceID() { return SourceID; } public CR_DetailedGLAuditQuery setSourceID(String value) { this.SourceID = value; return this; } public String getSourceIDStartsWith() { return SourceIDStartsWith; } public CR_DetailedGLAuditQuery setSourceIDStartsWith(String value) { this.SourceIDStartsWith = value; return this; } public String getSourceIDEndsWith() { return SourceIDEndsWith; } public CR_DetailedGLAuditQuery setSourceIDEndsWith(String value) { this.SourceIDEndsWith = value; return this; } public String getSourceIDContains() { return SourceIDContains; } public CR_DetailedGLAuditQuery setSourceIDContains(String value) { this.SourceIDContains = value; return this; } public String getSourceIDLike() { return SourceIDLike; } public CR_DetailedGLAuditQuery setSourceIDLike(String value) { this.SourceIDLike = value; return this; } public ArrayList getSourceIDBetween() { return SourceIDBetween; } public CR_DetailedGLAuditQuery setSourceIDBetween(ArrayList value) { this.SourceIDBetween = value; return this; } public ArrayList getSourceIDIn() { return SourceIDIn; } public CR_DetailedGLAuditQuery setSourceIDIn(ArrayList value) { this.SourceIDIn = value; return this; } public Short getSetType() { return SetType; } public CR_DetailedGLAuditQuery setSetType(Short value) { this.SetType = value; return this; } public Short getSetTypeGreaterThanOrEqualTo() { return SetTypeGreaterThanOrEqualTo; } public CR_DetailedGLAuditQuery setSetTypeGreaterThanOrEqualTo(Short value) { this.SetTypeGreaterThanOrEqualTo = value; return this; } public Short getSetTypeGreaterThan() { return SetTypeGreaterThan; } public CR_DetailedGLAuditQuery setSetTypeGreaterThan(Short value) { this.SetTypeGreaterThan = value; return this; } public Short getSetTypeLessThan() { return SetTypeLessThan; } public CR_DetailedGLAuditQuery setSetTypeLessThan(Short value) { this.SetTypeLessThan = value; return this; } public Short getSetTypeLessThanOrEqualTo() { return SetTypeLessThanOrEqualTo; } public CR_DetailedGLAuditQuery setSetTypeLessThanOrEqualTo(Short value) { this.SetTypeLessThanOrEqualTo = value; return this; } public Short getSetTypeNotEqualTo() { return SetTypeNotEqualTo; } public CR_DetailedGLAuditQuery setSetTypeNotEqualTo(Short value) { this.SetTypeNotEqualTo = value; return this; } public ArrayList getSetTypeBetween() { return SetTypeBetween; } public CR_DetailedGLAuditQuery setSetTypeBetween(ArrayList value) { this.SetTypeBetween = value; return this; } public ArrayList getSetTypeIn() { return SetTypeIn; } public CR_DetailedGLAuditQuery setSetTypeIn(ArrayList value) { this.SetTypeIn = value; return this; } public String getGlSetID() { return GLSetID; } public CR_DetailedGLAuditQuery setGlSetID(String value) { this.GLSetID = value; return this; } public String getGlSetIDStartsWith() { return GLSetIDStartsWith; } public CR_DetailedGLAuditQuery setGlSetIDStartsWith(String value) { this.GLSetIDStartsWith = value; return this; } public String getGlSetIDEndsWith() { return GLSetIDEndsWith; } public CR_DetailedGLAuditQuery setGlSetIDEndsWith(String value) { this.GLSetIDEndsWith = value; return this; } public String getGlSetIDContains() { return GLSetIDContains; } public CR_DetailedGLAuditQuery setGlSetIDContains(String value) { this.GLSetIDContains = value; return this; } public String getGlSetIDLike() { return GLSetIDLike; } public CR_DetailedGLAuditQuery setGlSetIDLike(String value) { this.GLSetIDLike = value; return this; } public ArrayList getGlSetIDBetween() { return GLSetIDBetween; } public CR_DetailedGLAuditQuery setGlSetIDBetween(ArrayList value) { this.GLSetIDBetween = value; return this; } public ArrayList getGlSetIDIn() { return GLSetIDIn; } public CR_DetailedGLAuditQuery setGlSetIDIn(ArrayList value) { this.GLSetIDIn = value; return this; } public String getGlAccountNo() { return GLAccountNo; } public CR_DetailedGLAuditQuery setGlAccountNo(String value) { this.GLAccountNo = value; return this; } public String getGlAccountNoStartsWith() { return GLAccountNoStartsWith; } public CR_DetailedGLAuditQuery setGlAccountNoStartsWith(String value) { this.GLAccountNoStartsWith = value; return this; } public String getGlAccountNoEndsWith() { return GLAccountNoEndsWith; } public CR_DetailedGLAuditQuery setGlAccountNoEndsWith(String value) { this.GLAccountNoEndsWith = value; return this; } public String getGlAccountNoContains() { return GLAccountNoContains; } public CR_DetailedGLAuditQuery setGlAccountNoContains(String value) { this.GLAccountNoContains = value; return this; } public String getGlAccountNoLike() { return GLAccountNoLike; } public CR_DetailedGLAuditQuery setGlAccountNoLike(String value) { this.GLAccountNoLike = value; return this; } public ArrayList getGlAccountNoBetween() { return GLAccountNoBetween; } public CR_DetailedGLAuditQuery setGlAccountNoBetween(ArrayList value) { this.GLAccountNoBetween = value; return this; } public ArrayList getGlAccountNoIn() { return GLAccountNoIn; } public CR_DetailedGLAuditQuery setGlAccountNoIn(ArrayList value) { this.GLAccountNoIn = value; return this; } public String getRef() { return Ref; } public CR_DetailedGLAuditQuery setRef(String value) { this.Ref = value; return this; } public String getRefStartsWith() { return RefStartsWith; } public CR_DetailedGLAuditQuery setRefStartsWith(String value) { this.RefStartsWith = value; return this; } public String getRefEndsWith() { return RefEndsWith; } public CR_DetailedGLAuditQuery setRefEndsWith(String value) { this.RefEndsWith = value; return this; } public String getRefContains() { return RefContains; } public CR_DetailedGLAuditQuery setRefContains(String value) { this.RefContains = value; return this; } public String getRefLike() { return RefLike; } public CR_DetailedGLAuditQuery setRefLike(String value) { this.RefLike = value; return this; } public ArrayList getRefBetween() { return RefBetween; } public CR_DetailedGLAuditQuery setRefBetween(ArrayList value) { this.RefBetween = value; return this; } public ArrayList getRefIn() { return RefIn; } public CR_DetailedGLAuditQuery setRefIn(ArrayList value) { this.RefIn = value; return this; } public BigDecimal getGlTransAmount() { return GLTransAmount; } public CR_DetailedGLAuditQuery setGlTransAmount(BigDecimal value) { this.GLTransAmount = value; return this; } public BigDecimal getGlTransAmountGreaterThanOrEqualTo() { return GLTransAmountGreaterThanOrEqualTo; } public CR_DetailedGLAuditQuery setGlTransAmountGreaterThanOrEqualTo(BigDecimal value) { this.GLTransAmountGreaterThanOrEqualTo = value; return this; } public BigDecimal getGlTransAmountGreaterThan() { return GLTransAmountGreaterThan; } public CR_DetailedGLAuditQuery setGlTransAmountGreaterThan(BigDecimal value) { this.GLTransAmountGreaterThan = value; return this; } public BigDecimal getGlTransAmountLessThan() { return GLTransAmountLessThan; } public CR_DetailedGLAuditQuery setGlTransAmountLessThan(BigDecimal value) { this.GLTransAmountLessThan = value; return this; } public BigDecimal getGlTransAmountLessThanOrEqualTo() { return GLTransAmountLessThanOrEqualTo; } public CR_DetailedGLAuditQuery setGlTransAmountLessThanOrEqualTo(BigDecimal value) { this.GLTransAmountLessThanOrEqualTo = value; return this; } public BigDecimal getGlTransAmountNotEqualTo() { return GLTransAmountNotEqualTo; } public CR_DetailedGLAuditQuery setGlTransAmountNotEqualTo(BigDecimal value) { this.GLTransAmountNotEqualTo = value; return this; } public ArrayList getGlTransAmountBetween() { return GLTransAmountBetween; } public CR_DetailedGLAuditQuery setGlTransAmountBetween(ArrayList value) { this.GLTransAmountBetween = value; return this; } public ArrayList getGlTransAmountIn() { return GLTransAmountIn; } public CR_DetailedGLAuditQuery setGlTransAmountIn(ArrayList value) { this.GLTransAmountIn = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } public static class TodayLogsGETManyRequest extends QueryData implements IReturn> { private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } public static class TodayErrorLogsGETManyRequest extends QueryData implements IReturn> { private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } public static class YesterdayLogsGETManyRequest extends QueryData implements IReturn> { private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } public static class YesterdayErrorLogsGETManyRequest extends QueryData implements IReturn> { private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } public static class QueryRequestLogsGETManyRequest extends QueryData implements IReturn> { public Date Date = null; public Boolean ViewErrors = null; public Date getDate() { return Date; } public QueryRequestLogsGETManyRequest setDate(Date value) { this.Date = value; return this; } public Boolean isViewErrors() { return ViewErrors; } public QueryRequestLogsGETManyRequest setViewErrors(Boolean value) { this.ViewErrors = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } public static class LogoutGetResponse { public String Username = null; public Date LoginDateTime = null; public Date LogoutDateTime = null; public String getUsername() { return Username; } public LogoutGetResponse setUsername(String value) { this.Username = value; return this; } public Date getLoginDateTime() { return LoginDateTime; } public LogoutGetResponse setLoginDateTime(Date value) { this.LoginDateTime = value; return this; } public Date getLogoutDateTime() { return LogoutDateTime; } public LogoutGetResponse setLogoutDateTime(Date value) { this.LogoutDateTime = value; return this; } } public static class LoginGetResponse { public String redirect = null; public String getRedirect() { return redirect; } public LoginGetResponse setRedirect(String value) { this.redirect = value; return this; } } public static class Bill { public String BillID = null; public String BillNo = null; public String Description = null; public Boolean IsEnabled = null; public BigDecimal MaximumProductionCapability = null; public Date LastSavedDateTime = null; public ArrayList RowHash = null; public ArrayList Stages = null; public ArrayList Outputs = null; public ArrayList Documents = null; public ArrayList CustomFieldValues = null; public ArrayList Notes = null; public ProductionLine ProductionLine = null; public ArrayList BillParents = null; public String getBillID() { return BillID; } public Bill setBillID(String value) { this.BillID = value; return this; } public String getBillNo() { return BillNo; } public Bill setBillNo(String value) { this.BillNo = value; return this; } public String getDescription() { return Description; } public Bill setDescription(String value) { this.Description = value; return this; } public Boolean getIsEnabled() { return IsEnabled; } public Bill setIsEnabled(Boolean value) { this.IsEnabled = value; return this; } public BigDecimal getMaximumProductionCapability() { return MaximumProductionCapability; } public Bill setMaximumProductionCapability(BigDecimal value) { this.MaximumProductionCapability = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public Bill setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public ArrayList getRowHash() { return RowHash; } public Bill setRowHash(ArrayList value) { this.RowHash = value; return this; } public ArrayList getStages() { return Stages; } public Bill setStages(ArrayList value) { this.Stages = value; return this; } public ArrayList getOutputs() { return Outputs; } public Bill setOutputs(ArrayList value) { this.Outputs = value; return this; } public ArrayList getDocuments() { return Documents; } public Bill setDocuments(ArrayList value) { this.Documents = value; return this; } public ArrayList getCustomFieldValues() { return CustomFieldValues; } public Bill setCustomFieldValues(ArrayList value) { this.CustomFieldValues = value; return this; } public ArrayList getNotes() { return Notes; } public Bill setNotes(ArrayList value) { this.Notes = value; return this; } public ProductionLine getProductionLine() { return ProductionLine; } public Bill setProductionLine(ProductionLine value) { this.ProductionLine = value; return this; } public ArrayList getBillParents() { return BillParents; } public Bill setBillParents(ArrayList value) { this.BillParents = value; return this; } } public static class CustomFieldValue { public String SettingID = null; public String SettingName = null; public String Contents = null; public String PluginID = null; public String PluginName = null; public String getSettingID() { return SettingID; } public CustomFieldValue setSettingID(String value) { this.SettingID = value; return this; } public String getSettingName() { return SettingName; } public CustomFieldValue setSettingName(String value) { this.SettingName = value; return this; } public String getContents() { return Contents; } public CustomFieldValue setContents(String value) { this.Contents = value; return this; } public String getPluginID() { return PluginID; } public CustomFieldValue setPluginID(String value) { this.PluginID = value; return this; } public String getPluginName() { return PluginName; } public CustomFieldValue setPluginName(String value) { this.PluginName = value; return this; } } public static class CustomField { public String SettingID = null; public String SettingName = null; public String PluginID = null; public String PluginName = null; public CellTypes CellType = null; public Integer DisplayOrder = null; public String getSettingID() { return SettingID; } public CustomField setSettingID(String value) { this.SettingID = value; return this; } public String getSettingName() { return SettingName; } public CustomField setSettingName(String value) { this.SettingName = value; return this; } public String getPluginID() { return PluginID; } public CustomField setPluginID(String value) { this.PluginID = value; return this; } public String getPluginName() { return PluginName; } public CustomField setPluginName(String value) { this.PluginName = value; return this; } public CellTypes getCellType() { return CellType; } public CustomField setCellType(CellTypes value) { this.CellType = value; return this; } public Integer getDisplayOrder() { return DisplayOrder; } public CustomField setDisplayOrder(Integer value) { this.DisplayOrder = value; return this; } } public static class DocumentType { public String DocumentTypeID = null; public String Description = null; public Boolean DefaultType = null; public Integer ItemNo = null; public Date LastSavedDateTime = null; public ArrayList RowHash = null; public String getDocumentTypeID() { return DocumentTypeID; } public DocumentType setDocumentTypeID(String value) { this.DocumentTypeID = value; return this; } public String getDescription() { return Description; } public DocumentType setDescription(String value) { this.Description = value; return this; } public Boolean isDefaultType() { return DefaultType; } public DocumentType setDefaultType(Boolean value) { this.DefaultType = value; return this; } public Integer getItemNo() { return ItemNo; } public DocumentType setItemNo(Integer value) { this.ItemNo = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public DocumentType setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public ArrayList getRowHash() { return RowHash; } public DocumentType setRowHash(ArrayList value) { this.RowHash = value; return this; } } public static class Document { public String DocumentID = null; public DocumentType DocumentType = null; public String FileID = null; public String PhysicalFileName = null; public String FullPhysicalFileName = null; public String Description = null; public Date LastSavedDateTime = null; public String LastModifiedByStaffID = null; public String LastModifiedByStaffUsername = null; public String LastModifiedByStaffTitle = null; public String LastModifiedByStaffFirstName = null; public String LastModifiedByStaffSurname = null; public ArrayList FileBinary = null; public String getDocumentID() { return DocumentID; } public Document setDocumentID(String value) { this.DocumentID = value; return this; } public DocumentType getDocumentType() { return DocumentType; } public Document setDocumentType(DocumentType value) { this.DocumentType = value; return this; } public String getFileID() { return FileID; } public Document setFileID(String value) { this.FileID = value; return this; } public String getPhysicalFileName() { return PhysicalFileName; } public Document setPhysicalFileName(String value) { this.PhysicalFileName = value; return this; } public String getFullPhysicalFileName() { return FullPhysicalFileName; } public Document setFullPhysicalFileName(String value) { this.FullPhysicalFileName = value; return this; } public String getDescription() { return Description; } public Document setDescription(String value) { this.Description = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public Document setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public String getLastModifiedByStaffID() { return LastModifiedByStaffID; } public Document setLastModifiedByStaffID(String value) { this.LastModifiedByStaffID = value; return this; } public String getLastModifiedByStaffUsername() { return LastModifiedByStaffUsername; } public Document setLastModifiedByStaffUsername(String value) { this.LastModifiedByStaffUsername = value; return this; } public String getLastModifiedByStaffTitle() { return LastModifiedByStaffTitle; } public Document setLastModifiedByStaffTitle(String value) { this.LastModifiedByStaffTitle = value; return this; } public String getLastModifiedByStaffFirstName() { return LastModifiedByStaffFirstName; } public Document setLastModifiedByStaffFirstName(String value) { this.LastModifiedByStaffFirstName = value; return this; } public String getLastModifiedByStaffSurname() { return LastModifiedByStaffSurname; } public Document setLastModifiedByStaffSurname(String value) { this.LastModifiedByStaffSurname = value; return this; } public ArrayList getFileBinary() { return FileBinary; } public Document setFileBinary(ArrayList value) { this.FileBinary = value; return this; } } public static class BillInput { public String InputID = null; public Integer ItemNo = null; public String InventoryID = null; public String PartNo = null; public String Description = null; public Boolean IsRatio = null; public BigDecimal Quantity = null; public String Note = null; public Boolean IsBoMItem = null; public String SubAssemblyBillID = null; public SubAssemblyExplodePolicyOptions SubAssemblyExplodePolicy = null; public ArrayList CustomFieldValues = null; public BigDecimal TotalLineCost = null; public BigDecimal LastCost = null; public String UnitMeasure = null; public String getInputID() { return InputID; } public BillInput setInputID(String value) { this.InputID = value; return this; } public Integer getItemNo() { return ItemNo; } public BillInput setItemNo(Integer value) { this.ItemNo = value; return this; } public String getInventoryID() { return InventoryID; } public BillInput setInventoryID(String value) { this.InventoryID = value; return this; } public String getPartNo() { return PartNo; } public BillInput setPartNo(String value) { this.PartNo = value; return this; } public String getDescription() { return Description; } public BillInput setDescription(String value) { this.Description = value; return this; } public Boolean getIsRatio() { return IsRatio; } public BillInput setIsRatio(Boolean value) { this.IsRatio = value; return this; } public BigDecimal getQuantity() { return Quantity; } public BillInput setQuantity(BigDecimal value) { this.Quantity = value; return this; } public String getNote() { return Note; } public BillInput setNote(String value) { this.Note = value; return this; } public Boolean getIsBoMItem() { return IsBoMItem; } public BillInput setIsBoMItem(Boolean value) { this.IsBoMItem = value; return this; } public String getSubAssemblyBillID() { return SubAssemblyBillID; } public BillInput setSubAssemblyBillID(String value) { this.SubAssemblyBillID = value; return this; } public SubAssemblyExplodePolicyOptions getSubAssemblyExplodePolicy() { return SubAssemblyExplodePolicy; } public BillInput setSubAssemblyExplodePolicy(SubAssemblyExplodePolicyOptions value) { this.SubAssemblyExplodePolicy = value; return this; } public ArrayList getCustomFieldValues() { return CustomFieldValues; } public BillInput setCustomFieldValues(ArrayList value) { this.CustomFieldValues = value; return this; } public BigDecimal getTotalLineCost() { return TotalLineCost; } public BillInput setTotalLineCost(BigDecimal value) { this.TotalLineCost = value; return this; } public BigDecimal getLastCost() { return LastCost; } public BillInput setLastCost(BigDecimal value) { this.LastCost = value; return this; } public String getUnitMeasure() { return UnitMeasure; } public BillInput setUnitMeasure(String value) { this.UnitMeasure = value; return this; } } public static class BillInstruction { public String InstructionID = null; public Integer ItemNo = null; public String InstructionText = null; public ArrayList CustomFieldValues = null; public String getInstructionID() { return InstructionID; } public BillInstruction setInstructionID(String value) { this.InstructionID = value; return this; } public Integer getItemNo() { return ItemNo; } public BillInstruction setItemNo(Integer value) { this.ItemNo = value; return this; } public String getInstructionText() { return InstructionText; } public BillInstruction setInstructionText(String value) { this.InstructionText = value; return this; } public ArrayList getCustomFieldValues() { return CustomFieldValues; } public BillInstruction setCustomFieldValues(ArrayList value) { this.CustomFieldValues = value; return this; } } public static class NoteType { public String NoteTypeID = null; public String Description = null; public Boolean DefaultType = null; public Integer ItemNo = null; public String getNoteTypeID() { return NoteTypeID; } public NoteType setNoteTypeID(String value) { this.NoteTypeID = value; return this; } public String getDescription() { return Description; } public NoteType setDescription(String value) { this.Description = value; return this; } public Boolean isDefaultType() { return DefaultType; } public NoteType setDefaultType(Boolean value) { this.DefaultType = value; return this; } public Integer getItemNo() { return ItemNo; } public NoteType setItemNo(Integer value) { this.ItemNo = value; return this; } } public static class Note { public String NoteID = null; public NoteType NoteType = null; public Integer LineNo = null; public Date LastSavedDateTime = null; public String LastModifiedByStaffID = null; public String LastModifiedByStaffUsername = null; public String LastModifiedByStaffTitle = null; public String LastModifiedByStaffFirstName = null; public String LastModifiedByStaffSurname = null; public String NoteText = null; public String getNoteID() { return NoteID; } public Note setNoteID(String value) { this.NoteID = value; return this; } public NoteType getNoteType() { return NoteType; } public Note setNoteType(NoteType value) { this.NoteType = value; return this; } public Integer getLineNo() { return LineNo; } public Note setLineNo(Integer value) { this.LineNo = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public Note setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public String getLastModifiedByStaffID() { return LastModifiedByStaffID; } public Note setLastModifiedByStaffID(String value) { this.LastModifiedByStaffID = value; return this; } public String getLastModifiedByStaffUsername() { return LastModifiedByStaffUsername; } public Note setLastModifiedByStaffUsername(String value) { this.LastModifiedByStaffUsername = value; return this; } public String getLastModifiedByStaffTitle() { return LastModifiedByStaffTitle; } public Note setLastModifiedByStaffTitle(String value) { this.LastModifiedByStaffTitle = value; return this; } public String getLastModifiedByStaffFirstName() { return LastModifiedByStaffFirstName; } public Note setLastModifiedByStaffFirstName(String value) { this.LastModifiedByStaffFirstName = value; return this; } public String getLastModifiedByStaffSurname() { return LastModifiedByStaffSurname; } public Note setLastModifiedByStaffSurname(String value) { this.LastModifiedByStaffSurname = value; return this; } public String getNoteText() { return NoteText; } public Note setNoteText(String value) { this.NoteText = value; return this; } } public static class BillOutput { public String OutputID = null; public Integer ItemNo = null; public String InventoryID = null; public String PartNo = null; public String Description = null; public Boolean IsRatio = null; public BigDecimal Quantity = null; public String Note = null; public Boolean IsPrimary = null; public BigDecimal CostPercentage = null; public BigDecimal Cost = null; public BigDecimal LastCost = null; public ArrayList CustomFieldValues = null; public String getOutputID() { return OutputID; } public BillOutput setOutputID(String value) { this.OutputID = value; return this; } public Integer getItemNo() { return ItemNo; } public BillOutput setItemNo(Integer value) { this.ItemNo = value; return this; } public String getInventoryID() { return InventoryID; } public BillOutput setInventoryID(String value) { this.InventoryID = value; return this; } public String getPartNo() { return PartNo; } public BillOutput setPartNo(String value) { this.PartNo = value; return this; } public String getDescription() { return Description; } public BillOutput setDescription(String value) { this.Description = value; return this; } public Boolean getIsRatio() { return IsRatio; } public BillOutput setIsRatio(Boolean value) { this.IsRatio = value; return this; } public BigDecimal getQuantity() { return Quantity; } public BillOutput setQuantity(BigDecimal value) { this.Quantity = value; return this; } public String getNote() { return Note; } public BillOutput setNote(String value) { this.Note = value; return this; } public Boolean getIsPrimary() { return IsPrimary; } public BillOutput setIsPrimary(Boolean value) { this.IsPrimary = value; return this; } public BigDecimal getCostPercentage() { return CostPercentage; } public BillOutput setCostPercentage(BigDecimal value) { this.CostPercentage = value; return this; } public BigDecimal getCost() { return Cost; } public BillOutput setCost(BigDecimal value) { this.Cost = value; return this; } public BigDecimal getLastCost() { return LastCost; } public BillOutput setLastCost(BigDecimal value) { this.LastCost = value; return this; } public ArrayList getCustomFieldValues() { return CustomFieldValues; } public BillOutput setCustomFieldValues(ArrayList value) { this.CustomFieldValues = value; return this; } } public static class BillStage { public String StageID = null; public Integer ItemNo = null; public String Name = null; public BigDecimal RequiredCapacity = null; public ProductionLineWorkCentre ProductionLineWorkCentre = null; public ArrayList Inputs = null; public ArrayList Instructions = null; public ArrayList CustomFieldValues = null; public String getStageID() { return StageID; } public BillStage setStageID(String value) { this.StageID = value; return this; } public Integer getItemNo() { return ItemNo; } public BillStage setItemNo(Integer value) { this.ItemNo = value; return this; } public String getName() { return Name; } public BillStage setName(String value) { this.Name = value; return this; } public BigDecimal getRequiredCapacity() { return RequiredCapacity; } public BillStage setRequiredCapacity(BigDecimal value) { this.RequiredCapacity = value; return this; } public ProductionLineWorkCentre getProductionLineWorkCentre() { return ProductionLineWorkCentre; } public BillStage setProductionLineWorkCentre(ProductionLineWorkCentre value) { this.ProductionLineWorkCentre = value; return this; } public ArrayList getInputs() { return Inputs; } public BillStage setInputs(ArrayList value) { this.Inputs = value; return this; } public ArrayList getInstructions() { return Instructions; } public BillStage setInstructions(ArrayList value) { this.Instructions = value; return this; } public ArrayList getCustomFieldValues() { return CustomFieldValues; } public BillStage setCustomFieldValues(ArrayList value) { this.CustomFieldValues = value; return this; } } public static class Carrier { public String CarrierID = null; public String CarrierName = null; public String AccountNo = null; public Boolean Enabled = null; public String Notes = null; public Date LastSavedDateTime = null; public ArrayList Services = null; public ArrayList FreightDescriptions = null; public String getCarrierID() { return CarrierID; } public Carrier setCarrierID(String value) { this.CarrierID = value; return this; } public String getCarrierName() { return CarrierName; } public Carrier setCarrierName(String value) { this.CarrierName = value; return this; } public String getAccountNo() { return AccountNo; } public Carrier setAccountNo(String value) { this.AccountNo = value; return this; } public Boolean isEnabled() { return Enabled; } public Carrier setEnabled(Boolean value) { this.Enabled = value; return this; } public String getNotes() { return Notes; } public Carrier setNotes(String value) { this.Notes = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public Carrier setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public ArrayList getServices() { return Services; } public Carrier setServices(ArrayList value) { this.Services = value; return this; } public ArrayList getFreightDescriptions() { return FreightDescriptions; } public Carrier setFreightDescriptions(ArrayList value) { this.FreightDescriptions = value; return this; } } public static class CarrierService { public String ServiceID = null; public String ServiceName = null; public Boolean DefaultItem = null; public Date LastSavedDateTime = null; public Boolean Enabled = null; public String getServiceID() { return ServiceID; } public CarrierService setServiceID(String value) { this.ServiceID = value; return this; } public String getServiceName() { return ServiceName; } public CarrierService setServiceName(String value) { this.ServiceName = value; return this; } public Boolean isDefaultItem() { return DefaultItem; } public CarrierService setDefaultItem(Boolean value) { this.DefaultItem = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public CarrierService setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Boolean isEnabled() { return Enabled; } public CarrierService setEnabled(Boolean value) { this.Enabled = value; return this; } } public static class CarrierFreightDescription { public String FreightDescriptionID = null; public String Description = null; public Boolean DefaultItem = null; public Date LastSavedDateTime = null; public Boolean Enabled = null; public String getFreightDescriptionID() { return FreightDescriptionID; } public CarrierFreightDescription setFreightDescriptionID(String value) { this.FreightDescriptionID = value; return this; } public String getDescription() { return Description; } public CarrierFreightDescription setDescription(String value) { this.Description = value; return this; } public Boolean isDefaultItem() { return DefaultItem; } public CarrierFreightDescription setDefaultItem(Boolean value) { this.DefaultItem = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public CarrierFreightDescription setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Boolean isEnabled() { return Enabled; } public CarrierFreightDescription setEnabled(Boolean value) { this.Enabled = value; return this; } } public static class Creditor { public String CreditorID = null; public String AccountNo = null; public String AltAccountNo = null; public String Name = null; public ArrayList WarehouseAddresses = null; public Date LastSavedDateTime = null; public String getCreditorID() { return CreditorID; } public Creditor setCreditorID(String value) { this.CreditorID = value; return this; } public String getAccountNo() { return AccountNo; } public Creditor setAccountNo(String value) { this.AccountNo = value; return this; } public String getAltAccountNo() { return AltAccountNo; } public Creditor setAltAccountNo(String value) { this.AltAccountNo = value; return this; } public String getName() { return Name; } public Creditor setName(String value) { this.Name = value; return this; } public ArrayList getWarehouseAddresses() { return WarehouseAddresses; } public Creditor setWarehouseAddresses(ArrayList value) { this.WarehouseAddresses = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public Creditor setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } } public static class CreditorClassification { public String ClassificationID = null; public String Description = null; public Date LastSavedDateTime = null; public Boolean IsDefault = null; public Integer TermsDays = null; public CreditorTermsTypes TermsType = null; public String PO_Workflows_RecID = null; public String PO_Workflows_Name = null; public String PO_Workflows_Description = null; public ArrayList CreditorLedgers = null; public String getClassificationID() { return ClassificationID; } public CreditorClassification setClassificationID(String value) { this.ClassificationID = value; return this; } public String getDescription() { return Description; } public CreditorClassification setDescription(String value) { this.Description = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public CreditorClassification setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Boolean getIsDefault() { return IsDefault; } public CreditorClassification setIsDefault(Boolean value) { this.IsDefault = value; return this; } public Integer getTermsDays() { return TermsDays; } public CreditorClassification setTermsDays(Integer value) { this.TermsDays = value; return this; } public CreditorTermsTypes getTermsType() { return TermsType; } public CreditorClassification setTermsType(CreditorTermsTypes value) { this.TermsType = value; return this; } public String getPoWorkflowsRecID() { return PO_Workflows_RecID; } public CreditorClassification setPoWorkflowsRecID(String value) { this.PO_Workflows_RecID = value; return this; } public String getPoWorkflowsName() { return PO_Workflows_Name; } public CreditorClassification setPoWorkflowsName(String value) { this.PO_Workflows_Name = value; return this; } public String getPoWorkflowsDescription() { return PO_Workflows_Description; } public CreditorClassification setPoWorkflowsDescription(String value) { this.PO_Workflows_Description = value; return this; } public ArrayList getCreditorLedgers() { return CreditorLedgers; } public CreditorClassification setCreditorLedgers(ArrayList value) { this.CreditorLedgers = value; return this; } } public static class CreditorWarehouseAddress { public String WarehouseAddressID = null; public String Description = null; public String Address1 = null; public String Address2 = null; public String Address3 = null; public String Address4 = null; public String Postcode = null; public String Country = null; public String Notes = null; public String CourierDetails = null; public Integer DefaultDeliveryDays = null; public Boolean IsDefault = null; public String getWarehouseAddressID() { return WarehouseAddressID; } public CreditorWarehouseAddress setWarehouseAddressID(String value) { this.WarehouseAddressID = value; return this; } public String getDescription() { return Description; } public CreditorWarehouseAddress setDescription(String value) { this.Description = value; return this; } public String getAddress1() { return Address1; } public CreditorWarehouseAddress setAddress1(String value) { this.Address1 = value; return this; } public String getAddress2() { return Address2; } public CreditorWarehouseAddress setAddress2(String value) { this.Address2 = value; return this; } public String getAddress3() { return Address3; } public CreditorWarehouseAddress setAddress3(String value) { this.Address3 = value; return this; } public String getAddress4() { return Address4; } public CreditorWarehouseAddress setAddress4(String value) { this.Address4 = value; return this; } public String getPostcode() { return Postcode; } public CreditorWarehouseAddress setPostcode(String value) { this.Postcode = value; return this; } public String getCountry() { return Country; } public CreditorWarehouseAddress setCountry(String value) { this.Country = value; return this; } public String getNotes() { return Notes; } public CreditorWarehouseAddress setNotes(String value) { this.Notes = value; return this; } public String getCourierDetails() { return CourierDetails; } public CreditorWarehouseAddress setCourierDetails(String value) { this.CourierDetails = value; return this; } public Integer getDefaultDeliveryDays() { return DefaultDeliveryDays; } public CreditorWarehouseAddress setDefaultDeliveryDays(Integer value) { this.DefaultDeliveryDays = value; return this; } public Boolean getIsDefault() { return IsDefault; } public CreditorWarehouseAddress setIsDefault(Boolean value) { this.IsDefault = value; return this; } } public static class Currency { public String CurrencyID = null; public String Name = null; public String ShortName = null; public Integer DecimalPlaces = null; public Boolean IsEnabled = null; public Boolean IsLocal = null; public Date LastSavedDateTime = null; public ArrayList Rates = null; public String getCurrencyID() { return CurrencyID; } public Currency setCurrencyID(String value) { this.CurrencyID = value; return this; } public String getName() { return Name; } public Currency setName(String value) { this.Name = value; return this; } public String getShortName() { return ShortName; } public Currency setShortName(String value) { this.ShortName = value; return this; } public Integer getDecimalPlaces() { return DecimalPlaces; } public Currency setDecimalPlaces(Integer value) { this.DecimalPlaces = value; return this; } public Boolean getIsEnabled() { return IsEnabled; } public Currency setIsEnabled(Boolean value) { this.IsEnabled = value; return this; } public Boolean getIsLocal() { return IsLocal; } public Currency setIsLocal(Boolean value) { this.IsLocal = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public Currency setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public ArrayList getRates() { return Rates; } public Currency setRates(ArrayList value) { this.Rates = value; return this; } } public static class CurrencyRate { public String RateID = null; public Date DateEntered = null; public Date EffectiveDate = null; public Date EffectiveDateEnd = null; public BigDecimal TransactionRate = null; public String getRateID() { return RateID; } public CurrencyRate setRateID(String value) { this.RateID = value; return this; } public Date getDateEntered() { return DateEntered; } public CurrencyRate setDateEntered(Date value) { this.DateEntered = value; return this; } public Date getEffectiveDate() { return EffectiveDate; } public CurrencyRate setEffectiveDate(Date value) { this.EffectiveDate = value; return this; } public Date getEffectiveDateEnd() { return EffectiveDateEnd; } public CurrencyRate setEffectiveDateEnd(Date value) { this.EffectiveDateEnd = value; return this; } public BigDecimal getTransactionRate() { return TransactionRate; } public CurrencyRate setTransactionRate(BigDecimal value) { this.TransactionRate = value; return this; } } public static class Debtor { public BigDecimal CreditLimit = null; public Integer EarlyPaymentDiscountDays = null; public BigDecimal EarlyPaymentDiscountAmount = null; public Date LastPurchaseDate = null; public Date LastPaymentDate = null; public BigDecimal StandingDiscountOnInvoices = null; public Boolean AccountOnHold = null; public BigDecimal CurrentBalance = null; public BigDecimal Period1Balance = null; public BigDecimal Period2Balance = null; public BigDecimal Period3Balance = null; public BigDecimal Period4Balance = null; public BigDecimal FXCurrentBalance = null; public BigDecimal FXPeriod1Balance = null; public BigDecimal FXPeriod2Balance = null; public BigDecimal FXPeriod3Balance = null; public BigDecimal FXPeriod4Balance = null; public Boolean NotifyRequired = null; public Boolean WebAccess = null; public Date CommenceDate = null; public TradingStatuses TradingStatus = null; public PeriodTypes PeriodType = null; public Boolean UsesFX = null; public Boolean IsCashOnly = null; public Integer TermsDays = null; public TermsTypes TermsType = null; public Boolean ExcludeFromAging = null; public Boolean DebtorIsBranchAccount = null; public BigDecimal RemainingNormalPrepaidLabourPackHours = null; public BigDecimal RemainingSpecialPrepaidLabourPackHours = null; public Integer FXDecimalPlaces = null; public String DebtorID = null; public String ProspectID = null; public Date LastSavedDateTime = null; public String AccountNo = null; public String AltAccountNo = null; public String Name = null; public String Address1 = null; public String Address2 = null; public String Address3 = null; public String Address4 = null; public String Postcode = null; public String Phone = null; public String Fax = null; public String EmailAddress = null; public String ACN = null; public String ABN = null; public String AustPostDPID = null; public String AustPostBCSP = null; public String BankName = null; public String BankAccountNo = null; public String BankBSBN = null; public String BankAccountName = null; public String TaxExemptionNo = null; public String NotifyAddress = null; public String ParentDebtorID = null; public String ParentDebtorAccountNo = null; public String ParentDebtorName = null; public String PriceSchemeID = null; public String PriceSchemeDescription = null; public String TradingName = null; public String CompanyName = null; public String ProprietorsName = null; public String FaxHeader = null; public String FXID = null; public String FXName = null; public String FXShortName = null; public String BPayReference = null; public DebtorClassification Classification = null; public DebtorCategory Category1 = null; public DebtorCategory Category2 = null; public DebtorCategory Category3 = null; public DebtorCategory Category4 = null; public DebtorCategory Category5 = null; public ArrayList ContactNames = null; public ArrayList GroupMemberships = null; public ArrayList BranchDebtors = null; public ArrayList DeliveryAddresses = null; public ArrayList FreightForwarderAddresses = null; public ArrayList Notes = null; public ArrayList CreditNotes = null; public ArrayList Directors = null; public ArrayList Budgets = null; public ArrayList DebtorPartNumbers = null; public ArrayList CustomFieldValues = null; public ArrayList Documents = null; public ArrayList DebtorSystems = null; public ArrayList DebtorLedgers = null; public BigDecimal getCreditLimit() { return CreditLimit; } public Debtor setCreditLimit(BigDecimal value) { this.CreditLimit = value; return this; } public Integer getEarlyPaymentDiscountDays() { return EarlyPaymentDiscountDays; } public Debtor setEarlyPaymentDiscountDays(Integer value) { this.EarlyPaymentDiscountDays = value; return this; } public BigDecimal getEarlyPaymentDiscountAmount() { return EarlyPaymentDiscountAmount; } public Debtor setEarlyPaymentDiscountAmount(BigDecimal value) { this.EarlyPaymentDiscountAmount = value; return this; } public Date getLastPurchaseDate() { return LastPurchaseDate; } public Debtor setLastPurchaseDate(Date value) { this.LastPurchaseDate = value; return this; } public Date getLastPaymentDate() { return LastPaymentDate; } public Debtor setLastPaymentDate(Date value) { this.LastPaymentDate = value; return this; } public BigDecimal getStandingDiscountOnInvoices() { return StandingDiscountOnInvoices; } public Debtor setStandingDiscountOnInvoices(BigDecimal value) { this.StandingDiscountOnInvoices = value; return this; } public Boolean isAccountOnHold() { return AccountOnHold; } public Debtor setAccountOnHold(Boolean value) { this.AccountOnHold = value; return this; } public BigDecimal getCurrentBalance() { return CurrentBalance; } public Debtor setCurrentBalance(BigDecimal value) { this.CurrentBalance = value; return this; } public BigDecimal getPeriod1Balance() { return Period1Balance; } public Debtor setPeriod1Balance(BigDecimal value) { this.Period1Balance = value; return this; } public BigDecimal getPeriod2Balance() { return Period2Balance; } public Debtor setPeriod2Balance(BigDecimal value) { this.Period2Balance = value; return this; } public BigDecimal getPeriod3Balance() { return Period3Balance; } public Debtor setPeriod3Balance(BigDecimal value) { this.Period3Balance = value; return this; } public BigDecimal getPeriod4Balance() { return Period4Balance; } public Debtor setPeriod4Balance(BigDecimal value) { this.Period4Balance = value; return this; } public BigDecimal getFxCurrentBalance() { return FXCurrentBalance; } public Debtor setFxCurrentBalance(BigDecimal value) { this.FXCurrentBalance = value; return this; } public BigDecimal getFxPeriod1Balance() { return FXPeriod1Balance; } public Debtor setFxPeriod1Balance(BigDecimal value) { this.FXPeriod1Balance = value; return this; } public BigDecimal getFxPeriod2Balance() { return FXPeriod2Balance; } public Debtor setFxPeriod2Balance(BigDecimal value) { this.FXPeriod2Balance = value; return this; } public BigDecimal getFxPeriod3Balance() { return FXPeriod3Balance; } public Debtor setFxPeriod3Balance(BigDecimal value) { this.FXPeriod3Balance = value; return this; } public BigDecimal getFxPeriod4Balance() { return FXPeriod4Balance; } public Debtor setFxPeriod4Balance(BigDecimal value) { this.FXPeriod4Balance = value; return this; } public Boolean isNotifyRequired() { return NotifyRequired; } public Debtor setNotifyRequired(Boolean value) { this.NotifyRequired = value; return this; } public Boolean isWebAccess() { return WebAccess; } public Debtor setWebAccess(Boolean value) { this.WebAccess = value; return this; } public Date getCommenceDate() { return CommenceDate; } public Debtor setCommenceDate(Date value) { this.CommenceDate = value; return this; } public TradingStatuses getTradingStatus() { return TradingStatus; } public Debtor setTradingStatus(TradingStatuses value) { this.TradingStatus = value; return this; } public PeriodTypes getPeriodType() { return PeriodType; } public Debtor setPeriodType(PeriodTypes value) { this.PeriodType = value; return this; } public Boolean isUsesFX() { return UsesFX; } public Debtor setUsesFX(Boolean value) { this.UsesFX = value; return this; } public Boolean getIsCashOnly() { return IsCashOnly; } public Debtor setIsCashOnly(Boolean value) { this.IsCashOnly = value; return this; } public Integer getTermsDays() { return TermsDays; } public Debtor setTermsDays(Integer value) { this.TermsDays = value; return this; } public TermsTypes getTermsType() { return TermsType; } public Debtor setTermsType(TermsTypes value) { this.TermsType = value; return this; } public Boolean isExcludeFromAging() { return ExcludeFromAging; } public Debtor setExcludeFromAging(Boolean value) { this.ExcludeFromAging = value; return this; } public Boolean isDebtorIsBranchAccount() { return DebtorIsBranchAccount; } public Debtor setDebtorIsBranchAccount(Boolean value) { this.DebtorIsBranchAccount = value; return this; } public BigDecimal getRemainingNormalPrepaidLabourPackHours() { return RemainingNormalPrepaidLabourPackHours; } public Debtor setRemainingNormalPrepaidLabourPackHours(BigDecimal value) { this.RemainingNormalPrepaidLabourPackHours = value; return this; } public BigDecimal getRemainingSpecialPrepaidLabourPackHours() { return RemainingSpecialPrepaidLabourPackHours; } public Debtor setRemainingSpecialPrepaidLabourPackHours(BigDecimal value) { this.RemainingSpecialPrepaidLabourPackHours = value; return this; } public Integer getFxDecimalPlaces() { return FXDecimalPlaces; } public Debtor setFxDecimalPlaces(Integer value) { this.FXDecimalPlaces = value; return this; } public String getDebtorID() { return DebtorID; } public Debtor setDebtorID(String value) { this.DebtorID = value; return this; } public String getProspectID() { return ProspectID; } public Debtor setProspectID(String value) { this.ProspectID = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public Debtor setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public String getAccountNo() { return AccountNo; } public Debtor setAccountNo(String value) { this.AccountNo = value; return this; } public String getAltAccountNo() { return AltAccountNo; } public Debtor setAltAccountNo(String value) { this.AltAccountNo = value; return this; } public String getName() { return Name; } public Debtor setName(String value) { this.Name = value; return this; } public String getAddress1() { return Address1; } public Debtor setAddress1(String value) { this.Address1 = value; return this; } public String getAddress2() { return Address2; } public Debtor setAddress2(String value) { this.Address2 = value; return this; } public String getAddress3() { return Address3; } public Debtor setAddress3(String value) { this.Address3 = value; return this; } public String getAddress4() { return Address4; } public Debtor setAddress4(String value) { this.Address4 = value; return this; } public String getPostcode() { return Postcode; } public Debtor setPostcode(String value) { this.Postcode = value; return this; } public String getPhone() { return Phone; } public Debtor setPhone(String value) { this.Phone = value; return this; } public String getFax() { return Fax; } public Debtor setFax(String value) { this.Fax = value; return this; } public String getEmailAddress() { return EmailAddress; } public Debtor setEmailAddress(String value) { this.EmailAddress = value; return this; } public String getAcn() { return ACN; } public Debtor setAcn(String value) { this.ACN = value; return this; } public String getAbn() { return ABN; } public Debtor setAbn(String value) { this.ABN = value; return this; } public String getAustPostDPID() { return AustPostDPID; } public Debtor setAustPostDPID(String value) { this.AustPostDPID = value; return this; } public String getAustPostBCSP() { return AustPostBCSP; } public Debtor setAustPostBCSP(String value) { this.AustPostBCSP = value; return this; } public String getBankName() { return BankName; } public Debtor setBankName(String value) { this.BankName = value; return this; } public String getBankAccountNo() { return BankAccountNo; } public Debtor setBankAccountNo(String value) { this.BankAccountNo = value; return this; } public String getBankBSBN() { return BankBSBN; } public Debtor setBankBSBN(String value) { this.BankBSBN = value; return this; } public String getBankAccountName() { return BankAccountName; } public Debtor setBankAccountName(String value) { this.BankAccountName = value; return this; } public String getTaxExemptionNo() { return TaxExemptionNo; } public Debtor setTaxExemptionNo(String value) { this.TaxExemptionNo = value; return this; } public String getNotifyAddress() { return NotifyAddress; } public Debtor setNotifyAddress(String value) { this.NotifyAddress = value; return this; } public String getParentDebtorID() { return ParentDebtorID; } public Debtor setParentDebtorID(String value) { this.ParentDebtorID = value; return this; } public String getParentDebtorAccountNo() { return ParentDebtorAccountNo; } public Debtor setParentDebtorAccountNo(String value) { this.ParentDebtorAccountNo = value; return this; } public String getParentDebtorName() { return ParentDebtorName; } public Debtor setParentDebtorName(String value) { this.ParentDebtorName = value; return this; } public String getPriceSchemeID() { return PriceSchemeID; } public Debtor setPriceSchemeID(String value) { this.PriceSchemeID = value; return this; } public String getPriceSchemeDescription() { return PriceSchemeDescription; } public Debtor setPriceSchemeDescription(String value) { this.PriceSchemeDescription = value; return this; } public String getTradingName() { return TradingName; } public Debtor setTradingName(String value) { this.TradingName = value; return this; } public String getCompanyName() { return CompanyName; } public Debtor setCompanyName(String value) { this.CompanyName = value; return this; } public String getProprietorsName() { return ProprietorsName; } public Debtor setProprietorsName(String value) { this.ProprietorsName = value; return this; } public String getFaxHeader() { return FaxHeader; } public Debtor setFaxHeader(String value) { this.FaxHeader = value; return this; } public String getFxid() { return FXID; } public Debtor setFxid(String value) { this.FXID = value; return this; } public String getFxName() { return FXName; } public Debtor setFxName(String value) { this.FXName = value; return this; } public String getFxShortName() { return FXShortName; } public Debtor setFxShortName(String value) { this.FXShortName = value; return this; } public String getBPayReference() { return BPayReference; } public Debtor setBPayReference(String value) { this.BPayReference = value; return this; } public DebtorClassification getClassification() { return Classification; } public Debtor setClassification(DebtorClassification value) { this.Classification = value; return this; } public DebtorCategory getCategory1() { return Category1; } public Debtor setCategory1(DebtorCategory value) { this.Category1 = value; return this; } public DebtorCategory getCategory2() { return Category2; } public Debtor setCategory2(DebtorCategory value) { this.Category2 = value; return this; } public DebtorCategory getCategory3() { return Category3; } public Debtor setCategory3(DebtorCategory value) { this.Category3 = value; return this; } public DebtorCategory getCategory4() { return Category4; } public Debtor setCategory4(DebtorCategory value) { this.Category4 = value; return this; } public DebtorCategory getCategory5() { return Category5; } public Debtor setCategory5(DebtorCategory value) { this.Category5 = value; return this; } public ArrayList getContactNames() { return ContactNames; } public Debtor setContactNames(ArrayList value) { this.ContactNames = value; return this; } public ArrayList getGroupMemberships() { return GroupMemberships; } public Debtor setGroupMemberships(ArrayList value) { this.GroupMemberships = value; return this; } public ArrayList getBranchDebtors() { return BranchDebtors; } public Debtor setBranchDebtors(ArrayList value) { this.BranchDebtors = value; return this; } public ArrayList getDeliveryAddresses() { return DeliveryAddresses; } public Debtor setDeliveryAddresses(ArrayList value) { this.DeliveryAddresses = value; return this; } public ArrayList getFreightForwarderAddresses() { return FreightForwarderAddresses; } public Debtor setFreightForwarderAddresses(ArrayList value) { this.FreightForwarderAddresses = value; return this; } public ArrayList getNotes() { return Notes; } public Debtor setNotes(ArrayList value) { this.Notes = value; return this; } public ArrayList getCreditNotes() { return CreditNotes; } public Debtor setCreditNotes(ArrayList value) { this.CreditNotes = value; return this; } public ArrayList getDirectors() { return Directors; } public Debtor setDirectors(ArrayList value) { this.Directors = value; return this; } public ArrayList getBudgets() { return Budgets; } public Debtor setBudgets(ArrayList value) { this.Budgets = value; return this; } public ArrayList getDebtorPartNumbers() { return DebtorPartNumbers; } public Debtor setDebtorPartNumbers(ArrayList value) { this.DebtorPartNumbers = value; return this; } public ArrayList getCustomFieldValues() { return CustomFieldValues; } public Debtor setCustomFieldValues(ArrayList value) { this.CustomFieldValues = value; return this; } public ArrayList getDocuments() { return Documents; } public Debtor setDocuments(ArrayList value) { this.Documents = value; return this; } public ArrayList getDebtorSystems() { return DebtorSystems; } public Debtor setDebtorSystems(ArrayList value) { this.DebtorSystems = value; return this; } public ArrayList getDebtorLedgers() { return DebtorLedgers; } public Debtor setDebtorLedgers(ArrayList value) { this.DebtorLedgers = value; return this; } } public static class DebtorCategory { public String CategoryID = null; public String Description = null; public Integer CategoryNo = null; public Boolean IsDefault = null; public Date LastSavedDateTime = null; public String getCategoryID() { return CategoryID; } public DebtorCategory setCategoryID(String value) { this.CategoryID = value; return this; } public String getDescription() { return Description; } public DebtorCategory setDescription(String value) { this.Description = value; return this; } public Integer getCategoryNo() { return CategoryNo; } public DebtorCategory setCategoryNo(Integer value) { this.CategoryNo = value; return this; } public Boolean getIsDefault() { return IsDefault; } public DebtorCategory setIsDefault(Boolean value) { this.IsDefault = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public DebtorCategory setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } } public static class DebtorClassification { public String ClassificationID = null; public String Description = null; public Date LastSavedDateTime = null; public Boolean IsDefault = null; public Integer TermsDays = null; public DebtorTermsTypes TermsType = null; public String PricingGroupID = null; public String PricingGroupDescription = null; public String SellPricingSchemeID = null; public String SellPricingSchemeDescription = null; public ArrayList DebtorLedgers = null; public String getClassificationID() { return ClassificationID; } public DebtorClassification setClassificationID(String value) { this.ClassificationID = value; return this; } public String getDescription() { return Description; } public DebtorClassification setDescription(String value) { this.Description = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public DebtorClassification setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Boolean getIsDefault() { return IsDefault; } public DebtorClassification setIsDefault(Boolean value) { this.IsDefault = value; return this; } public Integer getTermsDays() { return TermsDays; } public DebtorClassification setTermsDays(Integer value) { this.TermsDays = value; return this; } public DebtorTermsTypes getTermsType() { return TermsType; } public DebtorClassification setTermsType(DebtorTermsTypes value) { this.TermsType = value; return this; } public String getPricingGroupID() { return PricingGroupID; } public DebtorClassification setPricingGroupID(String value) { this.PricingGroupID = value; return this; } public String getPricingGroupDescription() { return PricingGroupDescription; } public DebtorClassification setPricingGroupDescription(String value) { this.PricingGroupDescription = value; return this; } public String getSellPricingSchemeID() { return SellPricingSchemeID; } public DebtorClassification setSellPricingSchemeID(String value) { this.SellPricingSchemeID = value; return this; } public String getSellPricingSchemeDescription() { return SellPricingSchemeDescription; } public DebtorClassification setSellPricingSchemeDescription(String value) { this.SellPricingSchemeDescription = value; return this; } public ArrayList getDebtorLedgers() { return DebtorLedgers; } public DebtorClassification setDebtorLedgers(ArrayList value) { this.DebtorLedgers = value; return this; } } public static class DebtorContactName { public Boolean DefaultContact = null; public Boolean DebtorContact = null; public Boolean CreditorContact = null; public String ContactNameID = null; public String ContactID = null; public String AccountNo = null; public String Title = null; public String FirstName = null; public String Surname = null; public String PrimaryPositionID = null; public String PrimaryPositionName = null; public String SecondaryPositionID = null; public String SecondaryPositionName = null; public String TertiaryPositionID = null; public String TertiaryPositionName = null; public String Phone = null; public String Mobile = null; public String Fax = null; public String EmailAddress = null; public String ProspectID = null; public String LogonCode = null; public String LogonPassword = null; public String ExternalAppRecID = null; public Date LastSavedDateTime = null; public Boolean LogonCodeChangedByUser = null; public Boolean isDefaultContact() { return DefaultContact; } public DebtorContactName setDefaultContact(Boolean value) { this.DefaultContact = value; return this; } public Boolean isDebtorContact() { return DebtorContact; } public DebtorContactName setDebtorContact(Boolean value) { this.DebtorContact = value; return this; } public Boolean isCreditorContact() { return CreditorContact; } public DebtorContactName setCreditorContact(Boolean value) { this.CreditorContact = value; return this; } public String getContactNameID() { return ContactNameID; } public DebtorContactName setContactNameID(String value) { this.ContactNameID = value; return this; } public String getContactID() { return ContactID; } public DebtorContactName setContactID(String value) { this.ContactID = value; return this; } public String getAccountNo() { return AccountNo; } public DebtorContactName setAccountNo(String value) { this.AccountNo = value; return this; } public String getTitle() { return Title; } public DebtorContactName setTitle(String value) { this.Title = value; return this; } public String getFirstName() { return FirstName; } public DebtorContactName setFirstName(String value) { this.FirstName = value; return this; } public String getSurname() { return Surname; } public DebtorContactName setSurname(String value) { this.Surname = value; return this; } public String getPrimaryPositionID() { return PrimaryPositionID; } public DebtorContactName setPrimaryPositionID(String value) { this.PrimaryPositionID = value; return this; } public String getPrimaryPositionName() { return PrimaryPositionName; } public DebtorContactName setPrimaryPositionName(String value) { this.PrimaryPositionName = value; return this; } public String getSecondaryPositionID() { return SecondaryPositionID; } public DebtorContactName setSecondaryPositionID(String value) { this.SecondaryPositionID = value; return this; } public String getSecondaryPositionName() { return SecondaryPositionName; } public DebtorContactName setSecondaryPositionName(String value) { this.SecondaryPositionName = value; return this; } public String getTertiaryPositionID() { return TertiaryPositionID; } public DebtorContactName setTertiaryPositionID(String value) { this.TertiaryPositionID = value; return this; } public String getTertiaryPositionName() { return TertiaryPositionName; } public DebtorContactName setTertiaryPositionName(String value) { this.TertiaryPositionName = value; return this; } public String getPhone() { return Phone; } public DebtorContactName setPhone(String value) { this.Phone = value; return this; } public String getMobile() { return Mobile; } public DebtorContactName setMobile(String value) { this.Mobile = value; return this; } public String getFax() { return Fax; } public DebtorContactName setFax(String value) { this.Fax = value; return this; } public String getEmailAddress() { return EmailAddress; } public DebtorContactName setEmailAddress(String value) { this.EmailAddress = value; return this; } public String getProspectID() { return ProspectID; } public DebtorContactName setProspectID(String value) { this.ProspectID = value; return this; } public String getLogonCode() { return LogonCode; } public DebtorContactName setLogonCode(String value) { this.LogonCode = value; return this; } public String getLogonPassword() { return LogonPassword; } public DebtorContactName setLogonPassword(String value) { this.LogonPassword = value; return this; } public String getExternalAppRecID() { return ExternalAppRecID; } public DebtorContactName setExternalAppRecID(String value) { this.ExternalAppRecID = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public DebtorContactName setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Boolean isLogonCodeChangedByUser() { return LogonCodeChangedByUser; } public DebtorContactName setLogonCodeChangedByUser(Boolean value) { this.LogonCodeChangedByUser = value; return this; } } public static class DebtorPartNumber { public String PartNumberID = null; public String InventoryID = null; public String PartNo = null; public String DebtorPartNo = null; public String DebtorBarcode = null; public String getPartNumberID() { return PartNumberID; } public DebtorPartNumber setPartNumberID(String value) { this.PartNumberID = value; return this; } public String getInventoryID() { return InventoryID; } public DebtorPartNumber setInventoryID(String value) { this.InventoryID = value; return this; } public String getPartNo() { return PartNo; } public DebtorPartNumber setPartNo(String value) { this.PartNo = value; return this; } public String getDebtorPartNo() { return DebtorPartNo; } public DebtorPartNumber setDebtorPartNo(String value) { this.DebtorPartNo = value; return this; } public String getDebtorBarcode() { return DebtorBarcode; } public DebtorPartNumber setDebtorBarcode(String value) { this.DebtorBarcode = value; return this; } } public static class DebtorDeliveryAddress { public Boolean IsDefault = null; public String DeliveryAddressID = null; public String DeliveryAddressName = null; public String DeliveryAddressCode = null; public String Address1 = null; public String Address2 = null; public String Address3 = null; public String Address4 = null; public String Postcode = null; public String Country = null; public String Notes = null; public String CourierDetails = null; public String EDIStoreLocationCode = null; public Boolean getIsDefault() { return IsDefault; } public DebtorDeliveryAddress setIsDefault(Boolean value) { this.IsDefault = value; return this; } public String getDeliveryAddressID() { return DeliveryAddressID; } public DebtorDeliveryAddress setDeliveryAddressID(String value) { this.DeliveryAddressID = value; return this; } public String getDeliveryAddressName() { return DeliveryAddressName; } public DebtorDeliveryAddress setDeliveryAddressName(String value) { this.DeliveryAddressName = value; return this; } public String getDeliveryAddressCode() { return DeliveryAddressCode; } public DebtorDeliveryAddress setDeliveryAddressCode(String value) { this.DeliveryAddressCode = value; return this; } public String getAddress1() { return Address1; } public DebtorDeliveryAddress setAddress1(String value) { this.Address1 = value; return this; } public String getAddress2() { return Address2; } public DebtorDeliveryAddress setAddress2(String value) { this.Address2 = value; return this; } public String getAddress3() { return Address3; } public DebtorDeliveryAddress setAddress3(String value) { this.Address3 = value; return this; } public String getAddress4() { return Address4; } public DebtorDeliveryAddress setAddress4(String value) { this.Address4 = value; return this; } public String getPostcode() { return Postcode; } public DebtorDeliveryAddress setPostcode(String value) { this.Postcode = value; return this; } public String getCountry() { return Country; } public DebtorDeliveryAddress setCountry(String value) { this.Country = value; return this; } public String getNotes() { return Notes; } public DebtorDeliveryAddress setNotes(String value) { this.Notes = value; return this; } public String getCourierDetails() { return CourierDetails; } public DebtorDeliveryAddress setCourierDetails(String value) { this.CourierDetails = value; return this; } public String getEdiStoreLocationCode() { return EDIStoreLocationCode; } public DebtorDeliveryAddress setEdiStoreLocationCode(String value) { this.EDIStoreLocationCode = value; return this; } } public static class DebtorFreightForwarderAddress { public Boolean IsDefault = null; public String FreightForwarderAddressID = null; public String Address1 = null; public String Address2 = null; public String Address3 = null; public String Address4 = null; public String Country = null; public String Notes = null; public Boolean getIsDefault() { return IsDefault; } public DebtorFreightForwarderAddress setIsDefault(Boolean value) { this.IsDefault = value; return this; } public String getFreightForwarderAddressID() { return FreightForwarderAddressID; } public DebtorFreightForwarderAddress setFreightForwarderAddressID(String value) { this.FreightForwarderAddressID = value; return this; } public String getAddress1() { return Address1; } public DebtorFreightForwarderAddress setAddress1(String value) { this.Address1 = value; return this; } public String getAddress2() { return Address2; } public DebtorFreightForwarderAddress setAddress2(String value) { this.Address2 = value; return this; } public String getAddress3() { return Address3; } public DebtorFreightForwarderAddress setAddress3(String value) { this.Address3 = value; return this; } public String getAddress4() { return Address4; } public DebtorFreightForwarderAddress setAddress4(String value) { this.Address4 = value; return this; } public String getCountry() { return Country; } public DebtorFreightForwarderAddress setCountry(String value) { this.Country = value; return this; } public String getNotes() { return Notes; } public DebtorFreightForwarderAddress setNotes(String value) { this.Notes = value; return this; } } public static class DebtorGroupMembership { public Boolean IsDefault = null; public String GroupMembershipID = null; public String GroupRecID = null; public String GroupDescription = null; public String StaffID = null; public String StaffUsername = null; public String StaffTitle = null; public String StaffFirstName = null; public String StaffSurname = null; public Date LastSavedDateTime = null; public Integer ItemNo = null; public Boolean getIsDefault() { return IsDefault; } public DebtorGroupMembership setIsDefault(Boolean value) { this.IsDefault = value; return this; } public String getGroupMembershipID() { return GroupMembershipID; } public DebtorGroupMembership setGroupMembershipID(String value) { this.GroupMembershipID = value; return this; } public String getGroupRecID() { return GroupRecID; } public DebtorGroupMembership setGroupRecID(String value) { this.GroupRecID = value; return this; } public String getGroupDescription() { return GroupDescription; } public DebtorGroupMembership setGroupDescription(String value) { this.GroupDescription = value; return this; } public String getStaffID() { return StaffID; } public DebtorGroupMembership setStaffID(String value) { this.StaffID = value; return this; } public String getStaffUsername() { return StaffUsername; } public DebtorGroupMembership setStaffUsername(String value) { this.StaffUsername = value; return this; } public String getStaffTitle() { return StaffTitle; } public DebtorGroupMembership setStaffTitle(String value) { this.StaffTitle = value; return this; } public String getStaffFirstName() { return StaffFirstName; } public DebtorGroupMembership setStaffFirstName(String value) { this.StaffFirstName = value; return this; } public String getStaffSurname() { return StaffSurname; } public DebtorGroupMembership setStaffSurname(String value) { this.StaffSurname = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public DebtorGroupMembership setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Integer getItemNo() { return ItemNo; } public DebtorGroupMembership setItemNo(Integer value) { this.ItemNo = value; return this; } } public static class DebtorPricingGroup { public String PricingGroupID = null; public String Description = null; public Boolean IsDefault = null; public Date LastSavedDateTime = null; public String getPricingGroupID() { return PricingGroupID; } public DebtorPricingGroup setPricingGroupID(String value) { this.PricingGroupID = value; return this; } public String getDescription() { return Description; } public DebtorPricingGroup setDescription(String value) { this.Description = value; return this; } public Boolean getIsDefault() { return IsDefault; } public DebtorPricingGroup setIsDefault(Boolean value) { this.IsDefault = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public DebtorPricingGroup setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } } public static class EmailMessage { public String EmailMessageID = null; public String EmailNo = null; public Date DateCreated = null; public Date DateSent = null; public String Reference = null; public String SourceID = null; public String SourceType = null; public String SourceDisplayNo = null; public String SourceForm = null; public EmailStatuses Status = null; public StaffMember Staff = null; public String EmailFrom = null; public String EmailTo = null; public Boolean RequestReadReceipt = null; public String EmailCC = null; public String EmailBCC = null; public String EmailSubject = null; public String EmailBody = null; public ArrayList Attachments = null; public Boolean BodyIsHTML = null; public Date LastSavedDateTime = null; public String getEmailMessageID() { return EmailMessageID; } public EmailMessage setEmailMessageID(String value) { this.EmailMessageID = value; return this; } public String getEmailNo() { return EmailNo; } public EmailMessage setEmailNo(String value) { this.EmailNo = value; return this; } public Date getDateCreated() { return DateCreated; } public EmailMessage setDateCreated(Date value) { this.DateCreated = value; return this; } public Date getDateSent() { return DateSent; } public EmailMessage setDateSent(Date value) { this.DateSent = value; return this; } public String getReference() { return Reference; } public EmailMessage setReference(String value) { this.Reference = value; return this; } public String getSourceID() { return SourceID; } public EmailMessage setSourceID(String value) { this.SourceID = value; return this; } public String getSourceType() { return SourceType; } public EmailMessage setSourceType(String value) { this.SourceType = value; return this; } public String getSourceDisplayNo() { return SourceDisplayNo; } public EmailMessage setSourceDisplayNo(String value) { this.SourceDisplayNo = value; return this; } public String getSourceForm() { return SourceForm; } public EmailMessage setSourceForm(String value) { this.SourceForm = value; return this; } public EmailStatuses getStatus() { return Status; } public EmailMessage setStatus(EmailStatuses value) { this.Status = value; return this; } public StaffMember getStaff() { return Staff; } public EmailMessage setStaff(StaffMember value) { this.Staff = value; return this; } public String getEmailFrom() { return EmailFrom; } public EmailMessage setEmailFrom(String value) { this.EmailFrom = value; return this; } public String getEmailTo() { return EmailTo; } public EmailMessage setEmailTo(String value) { this.EmailTo = value; return this; } public Boolean isRequestReadReceipt() { return RequestReadReceipt; } public EmailMessage setRequestReadReceipt(Boolean value) { this.RequestReadReceipt = value; return this; } public String getEmailCC() { return EmailCC; } public EmailMessage setEmailCC(String value) { this.EmailCC = value; return this; } public String getEmailBCC() { return EmailBCC; } public EmailMessage setEmailBCC(String value) { this.EmailBCC = value; return this; } public String getEmailSubject() { return EmailSubject; } public EmailMessage setEmailSubject(String value) { this.EmailSubject = value; return this; } public String getEmailBody() { return EmailBody; } public EmailMessage setEmailBody(String value) { this.EmailBody = value; return this; } public ArrayList getAttachments() { return Attachments; } public EmailMessage setAttachments(ArrayList value) { this.Attachments = value; return this; } public Boolean isBodyIsHTML() { return BodyIsHTML; } public EmailMessage setBodyIsHTML(Boolean value) { this.BodyIsHTML = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public EmailMessage setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } } public static class GoodsReceivedNote { public String GRNID = null; public String CreditorID = null; public String CreditorAccountNo = null; public String CreditorName = null; public Date LastSavedDateTime = null; public String SlipNo = null; public Date SlipDate = null; public Statuses Status = null; public BigDecimal Freight = null; public BigDecimal Duty = null; public Boolean Invoiced = null; public String PI_MainID = null; public BigDecimal Insurance = null; public String LogicalWarehouseID = null; public String LogicalWarehouseDescription = null; public String PhysicalWarehouseID = null; public String PhysicalWarehouseDescription = null; public BigDecimal TaxTotal = null; public String FreightTaxID = null; public BigDecimal FreightTaxRate = null; public BigDecimal FreightTaxAmount = null; public String DutyTaxID = null; public BigDecimal DutyTaxRate = null; public BigDecimal DutyTaxAmount = null; public String InsuranceTaxID = null; public BigDecimal InsuranceTaxRate = null; public BigDecimal InsuranceTaxAmount = null; public String Reference = null; public BigDecimal TotalGross = null; public BigDecimal TotalNet = null; public BigDecimal TotalFx = null; public BigDecimal FreightInc = null; public BigDecimal DutyInc = null; public BigDecimal InsuranceInc = null; public BigDecimal InventoryTotalQuantity = null; public BigDecimal InventoryTotalQuantityDecimalPlaces = null; public ArrayList Lines = null; public ArrayList PurchaseOrders = null; public ArrayList CustomFieldValues = null; public String getGrnid() { return GRNID; } public GoodsReceivedNote setGrnid(String value) { this.GRNID = value; return this; } public String getCreditorID() { return CreditorID; } public GoodsReceivedNote setCreditorID(String value) { this.CreditorID = value; return this; } public String getCreditorAccountNo() { return CreditorAccountNo; } public GoodsReceivedNote setCreditorAccountNo(String value) { this.CreditorAccountNo = value; return this; } public String getCreditorName() { return CreditorName; } public GoodsReceivedNote setCreditorName(String value) { this.CreditorName = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public GoodsReceivedNote setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public String getSlipNo() { return SlipNo; } public GoodsReceivedNote setSlipNo(String value) { this.SlipNo = value; return this; } public Date getSlipDate() { return SlipDate; } public GoodsReceivedNote setSlipDate(Date value) { this.SlipDate = value; return this; } public Statuses getStatus() { return Status; } public GoodsReceivedNote setStatus(Statuses value) { this.Status = value; return this; } public BigDecimal getFreight() { return Freight; } public GoodsReceivedNote setFreight(BigDecimal value) { this.Freight = value; return this; } public BigDecimal getDuty() { return Duty; } public GoodsReceivedNote setDuty(BigDecimal value) { this.Duty = value; return this; } public Boolean isInvoiced() { return Invoiced; } public GoodsReceivedNote setInvoiced(Boolean value) { this.Invoiced = value; return this; } public String getPiMainID() { return PI_MainID; } public GoodsReceivedNote setPiMainID(String value) { this.PI_MainID = value; return this; } public BigDecimal getInsurance() { return Insurance; } public GoodsReceivedNote setInsurance(BigDecimal value) { this.Insurance = value; return this; } public String getLogicalWarehouseID() { return LogicalWarehouseID; } public GoodsReceivedNote setLogicalWarehouseID(String value) { this.LogicalWarehouseID = value; return this; } public String getLogicalWarehouseDescription() { return LogicalWarehouseDescription; } public GoodsReceivedNote setLogicalWarehouseDescription(String value) { this.LogicalWarehouseDescription = value; return this; } public String getPhysicalWarehouseID() { return PhysicalWarehouseID; } public GoodsReceivedNote setPhysicalWarehouseID(String value) { this.PhysicalWarehouseID = value; return this; } public String getPhysicalWarehouseDescription() { return PhysicalWarehouseDescription; } public GoodsReceivedNote setPhysicalWarehouseDescription(String value) { this.PhysicalWarehouseDescription = value; return this; } public BigDecimal getTaxTotal() { return TaxTotal; } public GoodsReceivedNote setTaxTotal(BigDecimal value) { this.TaxTotal = value; return this; } public String getFreightTaxID() { return FreightTaxID; } public GoodsReceivedNote setFreightTaxID(String value) { this.FreightTaxID = value; return this; } public BigDecimal getFreightTaxRate() { return FreightTaxRate; } public GoodsReceivedNote setFreightTaxRate(BigDecimal value) { this.FreightTaxRate = value; return this; } public BigDecimal getFreightTaxAmount() { return FreightTaxAmount; } public GoodsReceivedNote setFreightTaxAmount(BigDecimal value) { this.FreightTaxAmount = value; return this; } public String getDutyTaxID() { return DutyTaxID; } public GoodsReceivedNote setDutyTaxID(String value) { this.DutyTaxID = value; return this; } public BigDecimal getDutyTaxRate() { return DutyTaxRate; } public GoodsReceivedNote setDutyTaxRate(BigDecimal value) { this.DutyTaxRate = value; return this; } public BigDecimal getDutyTaxAmount() { return DutyTaxAmount; } public GoodsReceivedNote setDutyTaxAmount(BigDecimal value) { this.DutyTaxAmount = value; return this; } public String getInsuranceTaxID() { return InsuranceTaxID; } public GoodsReceivedNote setInsuranceTaxID(String value) { this.InsuranceTaxID = value; return this; } public BigDecimal getInsuranceTaxRate() { return InsuranceTaxRate; } public GoodsReceivedNote setInsuranceTaxRate(BigDecimal value) { this.InsuranceTaxRate = value; return this; } public BigDecimal getInsuranceTaxAmount() { return InsuranceTaxAmount; } public GoodsReceivedNote setInsuranceTaxAmount(BigDecimal value) { this.InsuranceTaxAmount = value; return this; } public String getReference() { return Reference; } public GoodsReceivedNote setReference(String value) { this.Reference = value; return this; } public BigDecimal getTotalGross() { return TotalGross; } public GoodsReceivedNote setTotalGross(BigDecimal value) { this.TotalGross = value; return this; } public BigDecimal getTotalNet() { return TotalNet; } public GoodsReceivedNote setTotalNet(BigDecimal value) { this.TotalNet = value; return this; } public BigDecimal getTotalFx() { return TotalFx; } public GoodsReceivedNote setTotalFx(BigDecimal value) { this.TotalFx = value; return this; } public BigDecimal getFreightInc() { return FreightInc; } public GoodsReceivedNote setFreightInc(BigDecimal value) { this.FreightInc = value; return this; } public BigDecimal getDutyInc() { return DutyInc; } public GoodsReceivedNote setDutyInc(BigDecimal value) { this.DutyInc = value; return this; } public BigDecimal getInsuranceInc() { return InsuranceInc; } public GoodsReceivedNote setInsuranceInc(BigDecimal value) { this.InsuranceInc = value; return this; } public BigDecimal getInventoryTotalQuantity() { return InventoryTotalQuantity; } public GoodsReceivedNote setInventoryTotalQuantity(BigDecimal value) { this.InventoryTotalQuantity = value; return this; } public BigDecimal getInventoryTotalQuantityDecimalPlaces() { return InventoryTotalQuantityDecimalPlaces; } public GoodsReceivedNote setInventoryTotalQuantityDecimalPlaces(BigDecimal value) { this.InventoryTotalQuantityDecimalPlaces = value; return this; } public ArrayList getLines() { return Lines; } public GoodsReceivedNote setLines(ArrayList value) { this.Lines = value; return this; } public ArrayList getPurchaseOrders() { return PurchaseOrders; } public GoodsReceivedNote setPurchaseOrders(ArrayList value) { this.PurchaseOrders = value; return this; } public ArrayList getCustomFieldValues() { return CustomFieldValues; } public GoodsReceivedNote setCustomFieldValues(ArrayList value) { this.CustomFieldValues = value; return this; } } public static class GoodsReceivedNotePurchaseOrderReceived { public String PurchaseOrderReceivedID = null; public String OrderID = null; public String OrderNo = null; public PurchaseOrderType OrderType = null; public Date OrderedDate = null; public String FreightTaxID = null; public BigDecimal Freight = null; public BigDecimal FreightTaxAmount = null; public String DutyTaxID = null; public BigDecimal Duty = null; public BigDecimal DutyTaxAmount = null; public String InsuranceTaxID = null; public BigDecimal Insurance = null; public BigDecimal InsuranceTaxAmount = null; public String getPurchaseOrderReceivedID() { return PurchaseOrderReceivedID; } public GoodsReceivedNotePurchaseOrderReceived setPurchaseOrderReceivedID(String value) { this.PurchaseOrderReceivedID = value; return this; } public String getOrderID() { return OrderID; } public GoodsReceivedNotePurchaseOrderReceived setOrderID(String value) { this.OrderID = value; return this; } public String getOrderNo() { return OrderNo; } public GoodsReceivedNotePurchaseOrderReceived setOrderNo(String value) { this.OrderNo = value; return this; } public PurchaseOrderType getOrderType() { return OrderType; } public GoodsReceivedNotePurchaseOrderReceived setOrderType(PurchaseOrderType value) { this.OrderType = value; return this; } public Date getOrderedDate() { return OrderedDate; } public GoodsReceivedNotePurchaseOrderReceived setOrderedDate(Date value) { this.OrderedDate = value; return this; } public String getFreightTaxID() { return FreightTaxID; } public GoodsReceivedNotePurchaseOrderReceived setFreightTaxID(String value) { this.FreightTaxID = value; return this; } public BigDecimal getFreight() { return Freight; } public GoodsReceivedNotePurchaseOrderReceived setFreight(BigDecimal value) { this.Freight = value; return this; } public BigDecimal getFreightTaxAmount() { return FreightTaxAmount; } public GoodsReceivedNotePurchaseOrderReceived setFreightTaxAmount(BigDecimal value) { this.FreightTaxAmount = value; return this; } public String getDutyTaxID() { return DutyTaxID; } public GoodsReceivedNotePurchaseOrderReceived setDutyTaxID(String value) { this.DutyTaxID = value; return this; } public BigDecimal getDuty() { return Duty; } public GoodsReceivedNotePurchaseOrderReceived setDuty(BigDecimal value) { this.Duty = value; return this; } public BigDecimal getDutyTaxAmount() { return DutyTaxAmount; } public GoodsReceivedNotePurchaseOrderReceived setDutyTaxAmount(BigDecimal value) { this.DutyTaxAmount = value; return this; } public String getInsuranceTaxID() { return InsuranceTaxID; } public GoodsReceivedNotePurchaseOrderReceived setInsuranceTaxID(String value) { this.InsuranceTaxID = value; return this; } public BigDecimal getInsurance() { return Insurance; } public GoodsReceivedNotePurchaseOrderReceived setInsurance(BigDecimal value) { this.Insurance = value; return this; } public BigDecimal getInsuranceTaxAmount() { return InsuranceTaxAmount; } public GoodsReceivedNotePurchaseOrderReceived setInsuranceTaxAmount(BigDecimal value) { this.InsuranceTaxAmount = value; return this; } } public static class GoodsReceivedNoteLine { public String LineID = null; public BigDecimal QuantityOrdered = null; public BigDecimal QuantityDelivered = null; public String OrderID = null; public String OrderNo = null; public String OrderLineID = null; public BigDecimal Quantity = null; public String InventoryID = null; public String PartNo = null; public String Aux2 = null; public String Description = null; public String SupplierPartNo = null; public ReceivalLineType GRNLineType = null; public Integer QuantityDecimalPlaces = null; public Date LastSavedDateTime = null; public String ClassificationID = null; public String ClassificationDescription = null; public BigDecimal TaxAmount = null; public String TaxID = null; public BigDecimal TaxRate = null; public BigDecimal Cost = null; public BigDecimal CurrencyRateUsed = null; public String PurchasingClassificationID = null; public String PurchasingClassificationDescription = null; public Boolean PostedToWIP = null; public BigDecimal JobCharge = null; public Boolean UseSerialNo = null; public BigDecimal FXCost = null; public Boolean PhysicalItem = null; public String InventoryExpectedLiability_LedgerAccountID = null; public String InventoryExpectedLiability_LedgerAccountNo = null; public String InventoryExpectedLiability_LedgerAccountDescription = null; public String InventoryExpectedAsset_LedgerAccountID = null; public String InventoryExpectedAsset_LedgerAccountNo = null; public String InventoryExpectedAsset_LedgerAccountDescription = null; public String InventoryDeliveredAsset_LedgerAccountID = null; public String InventoryDeliveredAsset_LedgerAccountNo = null; public String InventoryDeliveredAsset_LedgerAccountDescription = null; public String InventoryValue_LedgerAccountID = null; public String InventoryValue_LedgerAccountNo = null; public String InventoryValue_LedgerAccountDescription = null; public String InventoryDeliveredLiability_LedgerAccountID = null; public String InventoryDeliveredLiability_LedgerAccountNo = null; public String InventoryDeliveredLiability_LedgerAccountDescription = null; public String InventoryWIP_LedgerAccountID = null; public String InventoryWIP_LedgerAccountNo = null; public String InventoryWIP_LedgerAccountDescription = null; public Date POLineLastSavedDateTime = null; public BigDecimal OrderUnits = null; public Integer ItemNo = null; public String IN_Creditor_RecID = null; public String IN_SupplierWarehouse_RecID = null; public String JobCostingStageID = null; public String JobCostingStageNo = null; public String JobCostingStageName = null; public String JobCostingCostCentreID = null; public String JobCostingCostCentreNo = null; public String JobCostingCostCentreName = null; public String JobCostingJobID = null; public String JobCostingJobNo = null; public BigDecimal UnitIncTax = null; public BigDecimal LineTotalIncTax = null; public BigDecimal FXLineTotalExTax = null; public Integer FXDecimalPlaces = null; public Integer HomeDecimalPlaces = null; public Boolean UseExpiryDate = null; public ArrayList LineDetails = null; public ArrayList CustomFieldValues = null; public String getLineID() { return LineID; } public GoodsReceivedNoteLine setLineID(String value) { this.LineID = value; return this; } public BigDecimal getQuantityOrdered() { return QuantityOrdered; } public GoodsReceivedNoteLine setQuantityOrdered(BigDecimal value) { this.QuantityOrdered = value; return this; } public BigDecimal getQuantityDelivered() { return QuantityDelivered; } public GoodsReceivedNoteLine setQuantityDelivered(BigDecimal value) { this.QuantityDelivered = value; return this; } public String getOrderID() { return OrderID; } public GoodsReceivedNoteLine setOrderID(String value) { this.OrderID = value; return this; } public String getOrderNo() { return OrderNo; } public GoodsReceivedNoteLine setOrderNo(String value) { this.OrderNo = value; return this; } public String getOrderLineID() { return OrderLineID; } public GoodsReceivedNoteLine setOrderLineID(String value) { this.OrderLineID = value; return this; } public BigDecimal getQuantity() { return Quantity; } public GoodsReceivedNoteLine setQuantity(BigDecimal value) { this.Quantity = value; return this; } public String getInventoryID() { return InventoryID; } public GoodsReceivedNoteLine setInventoryID(String value) { this.InventoryID = value; return this; } public String getPartNo() { return PartNo; } public GoodsReceivedNoteLine setPartNo(String value) { this.PartNo = value; return this; } public String getAux2() { return Aux2; } public GoodsReceivedNoteLine setAux2(String value) { this.Aux2 = value; return this; } public String getDescription() { return Description; } public GoodsReceivedNoteLine setDescription(String value) { this.Description = value; return this; } public String getSupplierPartNo() { return SupplierPartNo; } public GoodsReceivedNoteLine setSupplierPartNo(String value) { this.SupplierPartNo = value; return this; } public ReceivalLineType getGrnLineType() { return GRNLineType; } public GoodsReceivedNoteLine setGrnLineType(ReceivalLineType value) { this.GRNLineType = value; return this; } public Integer getQuantityDecimalPlaces() { return QuantityDecimalPlaces; } public GoodsReceivedNoteLine setQuantityDecimalPlaces(Integer value) { this.QuantityDecimalPlaces = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public GoodsReceivedNoteLine setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public String getClassificationID() { return ClassificationID; } public GoodsReceivedNoteLine setClassificationID(String value) { this.ClassificationID = value; return this; } public String getClassificationDescription() { return ClassificationDescription; } public GoodsReceivedNoteLine setClassificationDescription(String value) { this.ClassificationDescription = value; return this; } public BigDecimal getTaxAmount() { return TaxAmount; } public GoodsReceivedNoteLine setTaxAmount(BigDecimal value) { this.TaxAmount = value; return this; } public String getTaxID() { return TaxID; } public GoodsReceivedNoteLine setTaxID(String value) { this.TaxID = value; return this; } public BigDecimal getTaxRate() { return TaxRate; } public GoodsReceivedNoteLine setTaxRate(BigDecimal value) { this.TaxRate = value; return this; } public BigDecimal getCost() { return Cost; } public GoodsReceivedNoteLine setCost(BigDecimal value) { this.Cost = value; return this; } public BigDecimal getCurrencyRateUsed() { return CurrencyRateUsed; } public GoodsReceivedNoteLine setCurrencyRateUsed(BigDecimal value) { this.CurrencyRateUsed = value; return this; } public String getPurchasingClassificationID() { return PurchasingClassificationID; } public GoodsReceivedNoteLine setPurchasingClassificationID(String value) { this.PurchasingClassificationID = value; return this; } public String getPurchasingClassificationDescription() { return PurchasingClassificationDescription; } public GoodsReceivedNoteLine setPurchasingClassificationDescription(String value) { this.PurchasingClassificationDescription = value; return this; } public Boolean isPostedToWIP() { return PostedToWIP; } public GoodsReceivedNoteLine setPostedToWIP(Boolean value) { this.PostedToWIP = value; return this; } public BigDecimal getJobCharge() { return JobCharge; } public GoodsReceivedNoteLine setJobCharge(BigDecimal value) { this.JobCharge = value; return this; } public Boolean isUseSerialNo() { return UseSerialNo; } public GoodsReceivedNoteLine setUseSerialNo(Boolean value) { this.UseSerialNo = value; return this; } public BigDecimal getFxCost() { return FXCost; } public GoodsReceivedNoteLine setFxCost(BigDecimal value) { this.FXCost = value; return this; } public Boolean isPhysicalItem() { return PhysicalItem; } public GoodsReceivedNoteLine setPhysicalItem(Boolean value) { this.PhysicalItem = value; return this; } public String getInventoryExpectedLiabilityLedgerAccountID() { return InventoryExpectedLiability_LedgerAccountID; } public GoodsReceivedNoteLine setInventoryExpectedLiabilityLedgerAccountID(String value) { this.InventoryExpectedLiability_LedgerAccountID = value; return this; } public String getInventoryExpectedLiabilityLedgerAccountNo() { return InventoryExpectedLiability_LedgerAccountNo; } public GoodsReceivedNoteLine setInventoryExpectedLiabilityLedgerAccountNo(String value) { this.InventoryExpectedLiability_LedgerAccountNo = value; return this; } public String getInventoryExpectedLiabilityLedgerAccountDescription() { return InventoryExpectedLiability_LedgerAccountDescription; } public GoodsReceivedNoteLine setInventoryExpectedLiabilityLedgerAccountDescription(String value) { this.InventoryExpectedLiability_LedgerAccountDescription = value; return this; } public String getInventoryExpectedAssetLedgerAccountID() { return InventoryExpectedAsset_LedgerAccountID; } public GoodsReceivedNoteLine setInventoryExpectedAssetLedgerAccountID(String value) { this.InventoryExpectedAsset_LedgerAccountID = value; return this; } public String getInventoryExpectedAssetLedgerAccountNo() { return InventoryExpectedAsset_LedgerAccountNo; } public GoodsReceivedNoteLine setInventoryExpectedAssetLedgerAccountNo(String value) { this.InventoryExpectedAsset_LedgerAccountNo = value; return this; } public String getInventoryExpectedAssetLedgerAccountDescription() { return InventoryExpectedAsset_LedgerAccountDescription; } public GoodsReceivedNoteLine setInventoryExpectedAssetLedgerAccountDescription(String value) { this.InventoryExpectedAsset_LedgerAccountDescription = value; return this; } public String getInventoryDeliveredAssetLedgerAccountID() { return InventoryDeliveredAsset_LedgerAccountID; } public GoodsReceivedNoteLine setInventoryDeliveredAssetLedgerAccountID(String value) { this.InventoryDeliveredAsset_LedgerAccountID = value; return this; } public String getInventoryDeliveredAssetLedgerAccountNo() { return InventoryDeliveredAsset_LedgerAccountNo; } public GoodsReceivedNoteLine setInventoryDeliveredAssetLedgerAccountNo(String value) { this.InventoryDeliveredAsset_LedgerAccountNo = value; return this; } public String getInventoryDeliveredAssetLedgerAccountDescription() { return InventoryDeliveredAsset_LedgerAccountDescription; } public GoodsReceivedNoteLine setInventoryDeliveredAssetLedgerAccountDescription(String value) { this.InventoryDeliveredAsset_LedgerAccountDescription = value; return this; } public String getInventoryValueLedgerAccountID() { return InventoryValue_LedgerAccountID; } public GoodsReceivedNoteLine setInventoryValueLedgerAccountID(String value) { this.InventoryValue_LedgerAccountID = value; return this; } public String getInventoryValueLedgerAccountNo() { return InventoryValue_LedgerAccountNo; } public GoodsReceivedNoteLine setInventoryValueLedgerAccountNo(String value) { this.InventoryValue_LedgerAccountNo = value; return this; } public String getInventoryValueLedgerAccountDescription() { return InventoryValue_LedgerAccountDescription; } public GoodsReceivedNoteLine setInventoryValueLedgerAccountDescription(String value) { this.InventoryValue_LedgerAccountDescription = value; return this; } public String getInventoryDeliveredLiabilityLedgerAccountID() { return InventoryDeliveredLiability_LedgerAccountID; } public GoodsReceivedNoteLine setInventoryDeliveredLiabilityLedgerAccountID(String value) { this.InventoryDeliveredLiability_LedgerAccountID = value; return this; } public String getInventoryDeliveredLiabilityLedgerAccountNo() { return InventoryDeliveredLiability_LedgerAccountNo; } public GoodsReceivedNoteLine setInventoryDeliveredLiabilityLedgerAccountNo(String value) { this.InventoryDeliveredLiability_LedgerAccountNo = value; return this; } public String getInventoryDeliveredLiabilityLedgerAccountDescription() { return InventoryDeliveredLiability_LedgerAccountDescription; } public GoodsReceivedNoteLine setInventoryDeliveredLiabilityLedgerAccountDescription(String value) { this.InventoryDeliveredLiability_LedgerAccountDescription = value; return this; } public String getInventoryWIPLedgerAccountID() { return InventoryWIP_LedgerAccountID; } public GoodsReceivedNoteLine setInventoryWIPLedgerAccountID(String value) { this.InventoryWIP_LedgerAccountID = value; return this; } public String getInventoryWIPLedgerAccountNo() { return InventoryWIP_LedgerAccountNo; } public GoodsReceivedNoteLine setInventoryWIPLedgerAccountNo(String value) { this.InventoryWIP_LedgerAccountNo = value; return this; } public String getInventoryWIPLedgerAccountDescription() { return InventoryWIP_LedgerAccountDescription; } public GoodsReceivedNoteLine setInventoryWIPLedgerAccountDescription(String value) { this.InventoryWIP_LedgerAccountDescription = value; return this; } public Date getPoLineLastSavedDateTime() { return POLineLastSavedDateTime; } public GoodsReceivedNoteLine setPoLineLastSavedDateTime(Date value) { this.POLineLastSavedDateTime = value; return this; } public BigDecimal getOrderUnits() { return OrderUnits; } public GoodsReceivedNoteLine setOrderUnits(BigDecimal value) { this.OrderUnits = value; return this; } public Integer getItemNo() { return ItemNo; } public GoodsReceivedNoteLine setItemNo(Integer value) { this.ItemNo = value; return this; } public String getInCreditorRecID() { return IN_Creditor_RecID; } public GoodsReceivedNoteLine setInCreditorRecID(String value) { this.IN_Creditor_RecID = value; return this; } public String getInSupplierWarehouseRecID() { return IN_SupplierWarehouse_RecID; } public GoodsReceivedNoteLine setInSupplierWarehouseRecID(String value) { this.IN_SupplierWarehouse_RecID = value; return this; } public String getJobCostingStageID() { return JobCostingStageID; } public GoodsReceivedNoteLine setJobCostingStageID(String value) { this.JobCostingStageID = value; return this; } public String getJobCostingStageNo() { return JobCostingStageNo; } public GoodsReceivedNoteLine setJobCostingStageNo(String value) { this.JobCostingStageNo = value; return this; } public String getJobCostingStageName() { return JobCostingStageName; } public GoodsReceivedNoteLine setJobCostingStageName(String value) { this.JobCostingStageName = value; return this; } public String getJobCostingCostCentreID() { return JobCostingCostCentreID; } public GoodsReceivedNoteLine setJobCostingCostCentreID(String value) { this.JobCostingCostCentreID = value; return this; } public String getJobCostingCostCentreNo() { return JobCostingCostCentreNo; } public GoodsReceivedNoteLine setJobCostingCostCentreNo(String value) { this.JobCostingCostCentreNo = value; return this; } public String getJobCostingCostCentreName() { return JobCostingCostCentreName; } public GoodsReceivedNoteLine setJobCostingCostCentreName(String value) { this.JobCostingCostCentreName = value; return this; } public String getJobCostingJobID() { return JobCostingJobID; } public GoodsReceivedNoteLine setJobCostingJobID(String value) { this.JobCostingJobID = value; return this; } public String getJobCostingJobNo() { return JobCostingJobNo; } public GoodsReceivedNoteLine setJobCostingJobNo(String value) { this.JobCostingJobNo = value; return this; } public BigDecimal getUnitIncTax() { return UnitIncTax; } public GoodsReceivedNoteLine setUnitIncTax(BigDecimal value) { this.UnitIncTax = value; return this; } public BigDecimal getLineTotalIncTax() { return LineTotalIncTax; } public GoodsReceivedNoteLine setLineTotalIncTax(BigDecimal value) { this.LineTotalIncTax = value; return this; } public BigDecimal getFxLineTotalExTax() { return FXLineTotalExTax; } public GoodsReceivedNoteLine setFxLineTotalExTax(BigDecimal value) { this.FXLineTotalExTax = value; return this; } public Integer getFxDecimalPlaces() { return FXDecimalPlaces; } public GoodsReceivedNoteLine setFxDecimalPlaces(Integer value) { this.FXDecimalPlaces = value; return this; } public Integer getHomeDecimalPlaces() { return HomeDecimalPlaces; } public GoodsReceivedNoteLine setHomeDecimalPlaces(Integer value) { this.HomeDecimalPlaces = value; return this; } public Boolean isUseExpiryDate() { return UseExpiryDate; } public GoodsReceivedNoteLine setUseExpiryDate(Boolean value) { this.UseExpiryDate = value; return this; } public ArrayList getLineDetails() { return LineDetails; } public GoodsReceivedNoteLine setLineDetails(ArrayList value) { this.LineDetails = value; return this; } public ArrayList getCustomFieldValues() { return CustomFieldValues; } public GoodsReceivedNoteLine setCustomFieldValues(ArrayList value) { this.CustomFieldValues = value; return this; } } public static class GoodsReceivedNoteLineDetail { public String LineDetailID = null; public String LinkID = null; public BigDecimal Quantity = null; public Date LastSavedDateTime = null; public String SerialNo = null; public String BinLocationID = null; public String BinLocationDescription = null; public Date ExpiryDate = null; public String getLineDetailID() { return LineDetailID; } public GoodsReceivedNoteLineDetail setLineDetailID(String value) { this.LineDetailID = value; return this; } public String getLinkID() { return LinkID; } public GoodsReceivedNoteLineDetail setLinkID(String value) { this.LinkID = value; return this; } public BigDecimal getQuantity() { return Quantity; } public GoodsReceivedNoteLineDetail setQuantity(BigDecimal value) { this.Quantity = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public GoodsReceivedNoteLineDetail setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public String getSerialNo() { return SerialNo; } public GoodsReceivedNoteLineDetail setSerialNo(String value) { this.SerialNo = value; return this; } public String getBinLocationID() { return BinLocationID; } public GoodsReceivedNoteLineDetail setBinLocationID(String value) { this.BinLocationID = value; return this; } public String getBinLocationDescription() { return BinLocationDescription; } public GoodsReceivedNoteLineDetail setBinLocationDescription(String value) { this.BinLocationDescription = value; return this; } public Date getExpiryDate() { return ExpiryDate; } public GoodsReceivedNoteLineDetail setExpiryDate(Date value) { this.ExpiryDate = value; return this; } } public static class InventoryItem { public Boolean PhysicalItem = null; public Boolean ShipWithPhysicalItem = null; public Boolean Discountable = null; public Date LastSavedDateTime = null; public BigDecimal DirectTax = null; public InventoryStatuses Status = null; public BigDecimal DefaultPrice = null; public BigDecimal RRPPrice = null; public BigDecimal LCost = null; public BigDecimal SCost = null; public Integer DecimalPlaces = null; public BigDecimal MinimumGP = null; public BigDecimal Weight = null; public BigDecimal Cubic = null; public Boolean UseSerialNo = null; public Boolean BackOrderable = null; public BigDecimal SalesManCost = null; public BigDecimal SecondaryCost = null; public InventoryBOMTypes BOMObject = null; public Boolean UseExpiryDate = null; public Boolean UseStandardCost = null; public BigDecimal StandardCost = null; public Boolean WebEnabled = null; public Boolean SellPriceIncTax = null; public InventoryStyle Style = null; public InventoryColour Colour = null; public InventorySize Size = null; public Integer PartEncodeOrder = null; public String InventoryID = null; public String PartNo = null; public ArrayList Picture = null; public String Description = null; public String UnitMeasure = null; public InventoryClassification Classification = null; public InventoryCategory Category1 = null; public InventoryCategory Category2 = null; public InventoryCategory Category3 = null; public InventoryCategory Category4 = null; public InventoryCategory Category5 = null; public String Aux1 = null; public String Aux2 = null; public String Aux3 = null; public String Aux4 = null; public String Aux5 = null; public String GSTInwardsID = null; public String GSTInwardsDescription = null; public BigDecimal GSTInwardsRate = null; public String GSTOutwardsID = null; public String GSTOutwardsDescription = null; public BigDecimal GSTOutwardsRate = null; public String GSTAdjustmentsINID = null; public String GSTAdjustmentsINDescription = null; public BigDecimal GSTAdjustmentsINRate = null; public String GSTAdjustmentsOUTID = null; public String GSTAdjustmentsOUTDescription = null; public BigDecimal GSTAdjustmentsOUTRate = null; public String MatrixDescription = null; public String PricingGroupID = null; public String PricingGroupDescription = null; public ArrayList InventoryLedgers = null; public ArrayList Notes = null; public ArrayList Documents = null; public ArrayList CustomFieldValues = null; public ArrayList Regions = null; public ArrayList DebtorPrices = null; public ArrayList DebtorClassPrices = null; public ArrayList DebtorPriceGroupInventorySpecificPrices = null; public ArrayList AlternateChildren = null; public ArrayList AlternateParents = null; public ArrayList Components = null; public ArrayList WarehouseSOHs = null; public ArrayList DebtorPartNumbers = null; public ArrayList GroupMemberships = null; public ArrayList OtherDescriptions = null; public ArrayList OrderLevels = null; public ArrayList Budgets = null; public ArrayList LogicalOrders = null; public ArrayList DefaultBinLocations = null; public ArrayList ProductAvailabilities = null; public InventorySellingPrices SellingPrices = null; public ArrayList UpSells = null; public ArrayList AttributeGroups = null; public ArrayList UnitOfMeasures = null; public Boolean isPhysicalItem() { return PhysicalItem; } public InventoryItem setPhysicalItem(Boolean value) { this.PhysicalItem = value; return this; } public Boolean isShipWithPhysicalItem() { return ShipWithPhysicalItem; } public InventoryItem setShipWithPhysicalItem(Boolean value) { this.ShipWithPhysicalItem = value; return this; } public Boolean isDiscountable() { return Discountable; } public InventoryItem setDiscountable(Boolean value) { this.Discountable = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public InventoryItem setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public BigDecimal getDirectTax() { return DirectTax; } public InventoryItem setDirectTax(BigDecimal value) { this.DirectTax = value; return this; } public InventoryStatuses getStatus() { return Status; } public InventoryItem setStatus(InventoryStatuses value) { this.Status = value; return this; } public BigDecimal getDefaultPrice() { return DefaultPrice; } public InventoryItem setDefaultPrice(BigDecimal value) { this.DefaultPrice = value; return this; } public BigDecimal getRrpPrice() { return RRPPrice; } public InventoryItem setRrpPrice(BigDecimal value) { this.RRPPrice = value; return this; } public BigDecimal getLCost() { return LCost; } public InventoryItem setLCost(BigDecimal value) { this.LCost = value; return this; } public BigDecimal getSCost() { return SCost; } public InventoryItem setSCost(BigDecimal value) { this.SCost = value; return this; } public Integer getDecimalPlaces() { return DecimalPlaces; } public InventoryItem setDecimalPlaces(Integer value) { this.DecimalPlaces = value; return this; } public BigDecimal getMinimumGP() { return MinimumGP; } public InventoryItem setMinimumGP(BigDecimal value) { this.MinimumGP = value; return this; } public BigDecimal getWeight() { return Weight; } public InventoryItem setWeight(BigDecimal value) { this.Weight = value; return this; } public BigDecimal getCubic() { return Cubic; } public InventoryItem setCubic(BigDecimal value) { this.Cubic = value; return this; } public Boolean isUseSerialNo() { return UseSerialNo; } public InventoryItem setUseSerialNo(Boolean value) { this.UseSerialNo = value; return this; } public Boolean isBackOrderable() { return BackOrderable; } public InventoryItem setBackOrderable(Boolean value) { this.BackOrderable = value; return this; } public BigDecimal getSalesManCost() { return SalesManCost; } public InventoryItem setSalesManCost(BigDecimal value) { this.SalesManCost = value; return this; } public BigDecimal getSecondaryCost() { return SecondaryCost; } public InventoryItem setSecondaryCost(BigDecimal value) { this.SecondaryCost = value; return this; } public InventoryBOMTypes getBomObject() { return BOMObject; } public InventoryItem setBomObject(InventoryBOMTypes value) { this.BOMObject = value; return this; } public Boolean isUseExpiryDate() { return UseExpiryDate; } public InventoryItem setUseExpiryDate(Boolean value) { this.UseExpiryDate = value; return this; } public Boolean isUseStandardCost() { return UseStandardCost; } public InventoryItem setUseStandardCost(Boolean value) { this.UseStandardCost = value; return this; } public BigDecimal getStandardCost() { return StandardCost; } public InventoryItem setStandardCost(BigDecimal value) { this.StandardCost = value; return this; } public Boolean isWebEnabled() { return WebEnabled; } public InventoryItem setWebEnabled(Boolean value) { this.WebEnabled = value; return this; } public Boolean isSellPriceIncTax() { return SellPriceIncTax; } public InventoryItem setSellPriceIncTax(Boolean value) { this.SellPriceIncTax = value; return this; } public InventoryStyle getStyle() { return Style; } public InventoryItem setStyle(InventoryStyle value) { this.Style = value; return this; } public InventoryColour getColour() { return Colour; } public InventoryItem setColour(InventoryColour value) { this.Colour = value; return this; } public InventorySize getSize() { return Size; } public InventoryItem setSize(InventorySize value) { this.Size = value; return this; } public Integer getPartEncodeOrder() { return PartEncodeOrder; } public InventoryItem setPartEncodeOrder(Integer value) { this.PartEncodeOrder = value; return this; } public String getInventoryID() { return InventoryID; } public InventoryItem setInventoryID(String value) { this.InventoryID = value; return this; } public String getPartNo() { return PartNo; } public InventoryItem setPartNo(String value) { this.PartNo = value; return this; } public ArrayList getPicture() { return Picture; } public InventoryItem setPicture(ArrayList value) { this.Picture = value; return this; } public String getDescription() { return Description; } public InventoryItem setDescription(String value) { this.Description = value; return this; } public String getUnitMeasure() { return UnitMeasure; } public InventoryItem setUnitMeasure(String value) { this.UnitMeasure = value; return this; } public InventoryClassification getClassification() { return Classification; } public InventoryItem setClassification(InventoryClassification value) { this.Classification = value; return this; } public InventoryCategory getCategory1() { return Category1; } public InventoryItem setCategory1(InventoryCategory value) { this.Category1 = value; return this; } public InventoryCategory getCategory2() { return Category2; } public InventoryItem setCategory2(InventoryCategory value) { this.Category2 = value; return this; } public InventoryCategory getCategory3() { return Category3; } public InventoryItem setCategory3(InventoryCategory value) { this.Category3 = value; return this; } public InventoryCategory getCategory4() { return Category4; } public InventoryItem setCategory4(InventoryCategory value) { this.Category4 = value; return this; } public InventoryCategory getCategory5() { return Category5; } public InventoryItem setCategory5(InventoryCategory value) { this.Category5 = value; return this; } public String getAux1() { return Aux1; } public InventoryItem setAux1(String value) { this.Aux1 = value; return this; } public String getAux2() { return Aux2; } public InventoryItem setAux2(String value) { this.Aux2 = value; return this; } public String getAux3() { return Aux3; } public InventoryItem setAux3(String value) { this.Aux3 = value; return this; } public String getAux4() { return Aux4; } public InventoryItem setAux4(String value) { this.Aux4 = value; return this; } public String getAux5() { return Aux5; } public InventoryItem setAux5(String value) { this.Aux5 = value; return this; } public String getGstInwardsID() { return GSTInwardsID; } public InventoryItem setGstInwardsID(String value) { this.GSTInwardsID = value; return this; } public String getGstInwardsDescription() { return GSTInwardsDescription; } public InventoryItem setGstInwardsDescription(String value) { this.GSTInwardsDescription = value; return this; } public BigDecimal getGstInwardsRate() { return GSTInwardsRate; } public InventoryItem setGstInwardsRate(BigDecimal value) { this.GSTInwardsRate = value; return this; } public String getGstOutwardsID() { return GSTOutwardsID; } public InventoryItem setGstOutwardsID(String value) { this.GSTOutwardsID = value; return this; } public String getGstOutwardsDescription() { return GSTOutwardsDescription; } public InventoryItem setGstOutwardsDescription(String value) { this.GSTOutwardsDescription = value; return this; } public BigDecimal getGstOutwardsRate() { return GSTOutwardsRate; } public InventoryItem setGstOutwardsRate(BigDecimal value) { this.GSTOutwardsRate = value; return this; } public String getGstAdjustmentsINID() { return GSTAdjustmentsINID; } public InventoryItem setGstAdjustmentsINID(String value) { this.GSTAdjustmentsINID = value; return this; } public String getGstAdjustmentsINDescription() { return GSTAdjustmentsINDescription; } public InventoryItem setGstAdjustmentsINDescription(String value) { this.GSTAdjustmentsINDescription = value; return this; } public BigDecimal getGstAdjustmentsINRate() { return GSTAdjustmentsINRate; } public InventoryItem setGstAdjustmentsINRate(BigDecimal value) { this.GSTAdjustmentsINRate = value; return this; } public String getGstAdjustmentsOUTID() { return GSTAdjustmentsOUTID; } public InventoryItem setGstAdjustmentsOUTID(String value) { this.GSTAdjustmentsOUTID = value; return this; } public String getGstAdjustmentsOUTDescription() { return GSTAdjustmentsOUTDescription; } public InventoryItem setGstAdjustmentsOUTDescription(String value) { this.GSTAdjustmentsOUTDescription = value; return this; } public BigDecimal getGstAdjustmentsOUTRate() { return GSTAdjustmentsOUTRate; } public InventoryItem setGstAdjustmentsOUTRate(BigDecimal value) { this.GSTAdjustmentsOUTRate = value; return this; } public String getMatrixDescription() { return MatrixDescription; } public InventoryItem setMatrixDescription(String value) { this.MatrixDescription = value; return this; } public String getPricingGroupID() { return PricingGroupID; } public InventoryItem setPricingGroupID(String value) { this.PricingGroupID = value; return this; } public String getPricingGroupDescription() { return PricingGroupDescription; } public InventoryItem setPricingGroupDescription(String value) { this.PricingGroupDescription = value; return this; } public ArrayList getInventoryLedgers() { return InventoryLedgers; } public InventoryItem setInventoryLedgers(ArrayList value) { this.InventoryLedgers = value; return this; } public ArrayList getNotes() { return Notes; } public InventoryItem setNotes(ArrayList value) { this.Notes = value; return this; } public ArrayList getDocuments() { return Documents; } public InventoryItem setDocuments(ArrayList value) { this.Documents = value; return this; } public ArrayList getCustomFieldValues() { return CustomFieldValues; } public InventoryItem setCustomFieldValues(ArrayList value) { this.CustomFieldValues = value; return this; } public ArrayList getRegions() { return Regions; } public InventoryItem setRegions(ArrayList value) { this.Regions = value; return this; } public ArrayList getDebtorPrices() { return DebtorPrices; } public InventoryItem setDebtorPrices(ArrayList value) { this.DebtorPrices = value; return this; } public ArrayList getDebtorClassPrices() { return DebtorClassPrices; } public InventoryItem setDebtorClassPrices(ArrayList value) { this.DebtorClassPrices = value; return this; } public ArrayList getDebtorPriceGroupInventorySpecificPrices() { return DebtorPriceGroupInventorySpecificPrices; } public InventoryItem setDebtorPriceGroupInventorySpecificPrices(ArrayList value) { this.DebtorPriceGroupInventorySpecificPrices = value; return this; } public ArrayList getAlternateChildren() { return AlternateChildren; } public InventoryItem setAlternateChildren(ArrayList value) { this.AlternateChildren = value; return this; } public ArrayList getAlternateParents() { return AlternateParents; } public InventoryItem setAlternateParents(ArrayList value) { this.AlternateParents = value; return this; } public ArrayList getComponents() { return Components; } public InventoryItem setComponents(ArrayList value) { this.Components = value; return this; } public ArrayList getWarehouseSOHs() { return WarehouseSOHs; } public InventoryItem setWarehouseSOHs(ArrayList value) { this.WarehouseSOHs = value; return this; } public ArrayList getDebtorPartNumbers() { return DebtorPartNumbers; } public InventoryItem setDebtorPartNumbers(ArrayList value) { this.DebtorPartNumbers = value; return this; } public ArrayList getGroupMemberships() { return GroupMemberships; } public InventoryItem setGroupMemberships(ArrayList value) { this.GroupMemberships = value; return this; } public ArrayList getOtherDescriptions() { return OtherDescriptions; } public InventoryItem setOtherDescriptions(ArrayList value) { this.OtherDescriptions = value; return this; } public ArrayList getOrderLevels() { return OrderLevels; } public InventoryItem setOrderLevels(ArrayList value) { this.OrderLevels = value; return this; } public ArrayList getBudgets() { return Budgets; } public InventoryItem setBudgets(ArrayList value) { this.Budgets = value; return this; } public ArrayList getLogicalOrders() { return LogicalOrders; } public InventoryItem setLogicalOrders(ArrayList value) { this.LogicalOrders = value; return this; } public ArrayList getDefaultBinLocations() { return DefaultBinLocations; } public InventoryItem setDefaultBinLocations(ArrayList value) { this.DefaultBinLocations = value; return this; } public ArrayList getProductAvailabilities() { return ProductAvailabilities; } public InventoryItem setProductAvailabilities(ArrayList value) { this.ProductAvailabilities = value; return this; } public InventorySellingPrices getSellingPrices() { return SellingPrices; } public InventoryItem setSellingPrices(InventorySellingPrices value) { this.SellingPrices = value; return this; } public ArrayList getUpSells() { return UpSells; } public InventoryItem setUpSells(ArrayList value) { this.UpSells = value; return this; } public ArrayList getAttributeGroups() { return AttributeGroups; } public InventoryItem setAttributeGroups(ArrayList value) { this.AttributeGroups = value; return this; } public ArrayList getUnitOfMeasures() { return UnitOfMeasures; } public InventoryItem setUnitOfMeasures(ArrayList value) { this.UnitOfMeasures = value; return this; } } public static class InventoryAlternateChild { public String AlternateChildID = null; public String LinkedInventoryID = null; public String LinkedInventoryPartNo = null; public String LinkedInventoryDescription = null; public String Notes = null; public String getAlternateChildID() { return AlternateChildID; } public InventoryAlternateChild setAlternateChildID(String value) { this.AlternateChildID = value; return this; } public String getLinkedInventoryID() { return LinkedInventoryID; } public InventoryAlternateChild setLinkedInventoryID(String value) { this.LinkedInventoryID = value; return this; } public String getLinkedInventoryPartNo() { return LinkedInventoryPartNo; } public InventoryAlternateChild setLinkedInventoryPartNo(String value) { this.LinkedInventoryPartNo = value; return this; } public String getLinkedInventoryDescription() { return LinkedInventoryDescription; } public InventoryAlternateChild setLinkedInventoryDescription(String value) { this.LinkedInventoryDescription = value; return this; } public String getNotes() { return Notes; } public InventoryAlternateChild setNotes(String value) { this.Notes = value; return this; } } public static class InventoryAlternateParent { public String AlternateParentID = null; public String LinkedInventoryID = null; public String LinkedInventoryPartNo = null; public String LinkedInventoryDescription = null; public String Notes = null; public String getAlternateParentID() { return AlternateParentID; } public InventoryAlternateParent setAlternateParentID(String value) { this.AlternateParentID = value; return this; } public String getLinkedInventoryID() { return LinkedInventoryID; } public InventoryAlternateParent setLinkedInventoryID(String value) { this.LinkedInventoryID = value; return this; } public String getLinkedInventoryPartNo() { return LinkedInventoryPartNo; } public InventoryAlternateParent setLinkedInventoryPartNo(String value) { this.LinkedInventoryPartNo = value; return this; } public String getLinkedInventoryDescription() { return LinkedInventoryDescription; } public InventoryAlternateParent setLinkedInventoryDescription(String value) { this.LinkedInventoryDescription = value; return this; } public String getNotes() { return Notes; } public InventoryAlternateParent setNotes(String value) { this.Notes = value; return this; } } public static class InventoryAttributeGroupTemplateAttribute { public String TemplateAttributeID = null; public String AttributeGroupTemplateID = null; public Integer AttributeType = null; public Integer ItemNo = null; public String Name = null; public String getTemplateAttributeID() { return TemplateAttributeID; } public InventoryAttributeGroupTemplateAttribute setTemplateAttributeID(String value) { this.TemplateAttributeID = value; return this; } public String getAttributeGroupTemplateID() { return AttributeGroupTemplateID; } public InventoryAttributeGroupTemplateAttribute setAttributeGroupTemplateID(String value) { this.AttributeGroupTemplateID = value; return this; } public Integer getAttributeType() { return AttributeType; } public InventoryAttributeGroupTemplateAttribute setAttributeType(Integer value) { this.AttributeType = value; return this; } public Integer getItemNo() { return ItemNo; } public InventoryAttributeGroupTemplateAttribute setItemNo(Integer value) { this.ItemNo = value; return this; } public String getName() { return Name; } public InventoryAttributeGroupTemplateAttribute setName(String value) { this.Name = value; return this; } } public static class InventoryAttributeGroupTemplate { public String AttributeGroupTemplateID = null; public String Name = null; public Boolean IsEnabled = null; public ArrayList TemplateAttributes = null; public String getAttributeGroupTemplateID() { return AttributeGroupTemplateID; } public InventoryAttributeGroupTemplate setAttributeGroupTemplateID(String value) { this.AttributeGroupTemplateID = value; return this; } public String getName() { return Name; } public InventoryAttributeGroupTemplate setName(String value) { this.Name = value; return this; } public Boolean getIsEnabled() { return IsEnabled; } public InventoryAttributeGroupTemplate setIsEnabled(Boolean value) { this.IsEnabled = value; return this; } public ArrayList getTemplateAttributes() { return TemplateAttributes; } public InventoryAttributeGroupTemplate setTemplateAttributes(ArrayList value) { this.TemplateAttributes = value; return this; } } public static class InventoryAttributeGroup { public String AttributeGroupID = null; public InventoryAttributeGroupTemplate Template = null; public Date LastSavedDateTime = null; public String Description = null; public ArrayList Attributes = null; public String getAttributeGroupID() { return AttributeGroupID; } public InventoryAttributeGroup setAttributeGroupID(String value) { this.AttributeGroupID = value; return this; } public InventoryAttributeGroupTemplate getTemplate() { return Template; } public InventoryAttributeGroup setTemplate(InventoryAttributeGroupTemplate value) { this.Template = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public InventoryAttributeGroup setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public String getDescription() { return Description; } public InventoryAttributeGroup setDescription(String value) { this.Description = value; return this; } public ArrayList getAttributes() { return Attributes; } public InventoryAttributeGroup setAttributes(ArrayList value) { this.Attributes = value; return this; } } public static class InventoryAttributeGroupAttribute { public String AttributeID = null; public String AttributeGroupID = null; public InventoryAttributeGroupTemplateAttribute TemplateAttribute = null; public Date LastSavedDateTime = null; public String Contents = null; public String getAttributeID() { return AttributeID; } public InventoryAttributeGroupAttribute setAttributeID(String value) { this.AttributeID = value; return this; } public String getAttributeGroupID() { return AttributeGroupID; } public InventoryAttributeGroupAttribute setAttributeGroupID(String value) { this.AttributeGroupID = value; return this; } public InventoryAttributeGroupTemplateAttribute getTemplateAttribute() { return TemplateAttribute; } public InventoryAttributeGroupAttribute setTemplateAttribute(InventoryAttributeGroupTemplateAttribute value) { this.TemplateAttribute = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public InventoryAttributeGroupAttribute setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public String getContents() { return Contents; } public InventoryAttributeGroupAttribute setContents(String value) { this.Contents = value; return this; } } public static class InventoryBudget { public Integer MonthIndex = null; public Date MonthStartDate = null; public Date MonthEndDate = null; public BigDecimal BudgetUnits = null; public BigDecimal BudgetValue = null; public String LogicalWarehouseID = null; public String LogicalWarehouseDescription = null; public String PhysicalWarehouseID = null; public String PhysicalWarehouseDescription = null; public Integer getMonthIndex() { return MonthIndex; } public InventoryBudget setMonthIndex(Integer value) { this.MonthIndex = value; return this; } public Date getMonthStartDate() { return MonthStartDate; } public InventoryBudget setMonthStartDate(Date value) { this.MonthStartDate = value; return this; } public Date getMonthEndDate() { return MonthEndDate; } public InventoryBudget setMonthEndDate(Date value) { this.MonthEndDate = value; return this; } public BigDecimal getBudgetUnits() { return BudgetUnits; } public InventoryBudget setBudgetUnits(BigDecimal value) { this.BudgetUnits = value; return this; } public BigDecimal getBudgetValue() { return BudgetValue; } public InventoryBudget setBudgetValue(BigDecimal value) { this.BudgetValue = value; return this; } public String getLogicalWarehouseID() { return LogicalWarehouseID; } public InventoryBudget setLogicalWarehouseID(String value) { this.LogicalWarehouseID = value; return this; } public String getLogicalWarehouseDescription() { return LogicalWarehouseDescription; } public InventoryBudget setLogicalWarehouseDescription(String value) { this.LogicalWarehouseDescription = value; return this; } public String getPhysicalWarehouseID() { return PhysicalWarehouseID; } public InventoryBudget setPhysicalWarehouseID(String value) { this.PhysicalWarehouseID = value; return this; } public String getPhysicalWarehouseDescription() { return PhysicalWarehouseDescription; } public InventoryBudget setPhysicalWarehouseDescription(String value) { this.PhysicalWarehouseDescription = value; return this; } } public static class InventoryCategory { public String CategoryID = null; public Integer CategoryNo = null; public String Description = null; public Boolean IsDefault = null; public Date LastSavedDateTime = null; public ArrayList Picture = null; public ArrayList CustomFieldValues = null; public String getCategoryID() { return CategoryID; } public InventoryCategory setCategoryID(String value) { this.CategoryID = value; return this; } public Integer getCategoryNo() { return CategoryNo; } public InventoryCategory setCategoryNo(Integer value) { this.CategoryNo = value; return this; } public String getDescription() { return Description; } public InventoryCategory setDescription(String value) { this.Description = value; return this; } public Boolean getIsDefault() { return IsDefault; } public InventoryCategory setIsDefault(Boolean value) { this.IsDefault = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public InventoryCategory setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public ArrayList getPicture() { return Picture; } public InventoryCategory setPicture(ArrayList value) { this.Picture = value; return this; } public ArrayList getCustomFieldValues() { return CustomFieldValues; } public InventoryCategory setCustomFieldValues(ArrayList value) { this.CustomFieldValues = value; return this; } } public static class InventoryClassification { public String ClassificationID = null; public String Description = null; public Date LastSavedDateTime = null; public Boolean WebEnabled = null; public Boolean IsDefault = null; public String GSTInwardsTaxRateID = null; public String GSTInwardsTaxRateDescription = null; public BigDecimal GSTInwardsTaxRate = null; public String GSTOutwardsTaxRateID = null; public String GSTOutwardsTaxRateDescription = null; public BigDecimal GSTOutwardsTaxRate = null; public String GSTAdjustmentsINTaxRateID = null; public String GSTAdjustmentsINTaxRateDescription = null; public BigDecimal GSTAdjustmentsINTaxRate = null; public String GSTAdjustmentsOUTTaxRateID = null; public String GSTAdjustmentsOUTTaxRateDescription = null; public BigDecimal GSTAdjustmentsOUTTaxRate = null; public ArrayList InventoryLedgers = null; public String PricingGroupID = null; public String PricingGroupDescription = null; public ArrayList CustomFields = null; public String getClassificationID() { return ClassificationID; } public InventoryClassification setClassificationID(String value) { this.ClassificationID = value; return this; } public String getDescription() { return Description; } public InventoryClassification setDescription(String value) { this.Description = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public InventoryClassification setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Boolean isWebEnabled() { return WebEnabled; } public InventoryClassification setWebEnabled(Boolean value) { this.WebEnabled = value; return this; } public Boolean getIsDefault() { return IsDefault; } public InventoryClassification setIsDefault(Boolean value) { this.IsDefault = value; return this; } public String getGstInwardsTaxRateID() { return GSTInwardsTaxRateID; } public InventoryClassification setGstInwardsTaxRateID(String value) { this.GSTInwardsTaxRateID = value; return this; } public String getGstInwardsTaxRateDescription() { return GSTInwardsTaxRateDescription; } public InventoryClassification setGstInwardsTaxRateDescription(String value) { this.GSTInwardsTaxRateDescription = value; return this; } public BigDecimal getGstInwardsTaxRate() { return GSTInwardsTaxRate; } public InventoryClassification setGstInwardsTaxRate(BigDecimal value) { this.GSTInwardsTaxRate = value; return this; } public String getGstOutwardsTaxRateID() { return GSTOutwardsTaxRateID; } public InventoryClassification setGstOutwardsTaxRateID(String value) { this.GSTOutwardsTaxRateID = value; return this; } public String getGstOutwardsTaxRateDescription() { return GSTOutwardsTaxRateDescription; } public InventoryClassification setGstOutwardsTaxRateDescription(String value) { this.GSTOutwardsTaxRateDescription = value; return this; } public BigDecimal getGstOutwardsTaxRate() { return GSTOutwardsTaxRate; } public InventoryClassification setGstOutwardsTaxRate(BigDecimal value) { this.GSTOutwardsTaxRate = value; return this; } public String getGstAdjustmentsINTaxRateID() { return GSTAdjustmentsINTaxRateID; } public InventoryClassification setGstAdjustmentsINTaxRateID(String value) { this.GSTAdjustmentsINTaxRateID = value; return this; } public String getGstAdjustmentsINTaxRateDescription() { return GSTAdjustmentsINTaxRateDescription; } public InventoryClassification setGstAdjustmentsINTaxRateDescription(String value) { this.GSTAdjustmentsINTaxRateDescription = value; return this; } public BigDecimal getGstAdjustmentsINTaxRate() { return GSTAdjustmentsINTaxRate; } public InventoryClassification setGstAdjustmentsINTaxRate(BigDecimal value) { this.GSTAdjustmentsINTaxRate = value; return this; } public String getGstAdjustmentsOUTTaxRateID() { return GSTAdjustmentsOUTTaxRateID; } public InventoryClassification setGstAdjustmentsOUTTaxRateID(String value) { this.GSTAdjustmentsOUTTaxRateID = value; return this; } public String getGstAdjustmentsOUTTaxRateDescription() { return GSTAdjustmentsOUTTaxRateDescription; } public InventoryClassification setGstAdjustmentsOUTTaxRateDescription(String value) { this.GSTAdjustmentsOUTTaxRateDescription = value; return this; } public BigDecimal getGstAdjustmentsOUTTaxRate() { return GSTAdjustmentsOUTTaxRate; } public InventoryClassification setGstAdjustmentsOUTTaxRate(BigDecimal value) { this.GSTAdjustmentsOUTTaxRate = value; return this; } public ArrayList getInventoryLedgers() { return InventoryLedgers; } public InventoryClassification setInventoryLedgers(ArrayList value) { this.InventoryLedgers = value; return this; } public String getPricingGroupID() { return PricingGroupID; } public InventoryClassification setPricingGroupID(String value) { this.PricingGroupID = value; return this; } public String getPricingGroupDescription() { return PricingGroupDescription; } public InventoryClassification setPricingGroupDescription(String value) { this.PricingGroupDescription = value; return this; } public ArrayList getCustomFields() { return CustomFields; } public InventoryClassification setCustomFields(ArrayList value) { this.CustomFields = value; return this; } } public static class InventoryComponent { public BigDecimal ComponentQuantity = null; public Integer ItemNo = null; public String ComponentID = null; public String ComponentInventoryID = null; public String ComponentInventoryPartNo = null; public String ComponentInventoryDescription = null; public BigDecimal getComponentQuantity() { return ComponentQuantity; } public InventoryComponent setComponentQuantity(BigDecimal value) { this.ComponentQuantity = value; return this; } public Integer getItemNo() { return ItemNo; } public InventoryComponent setItemNo(Integer value) { this.ItemNo = value; return this; } public String getComponentID() { return ComponentID; } public InventoryComponent setComponentID(String value) { this.ComponentID = value; return this; } public String getComponentInventoryID() { return ComponentInventoryID; } public InventoryComponent setComponentInventoryID(String value) { this.ComponentInventoryID = value; return this; } public String getComponentInventoryPartNo() { return ComponentInventoryPartNo; } public InventoryComponent setComponentInventoryPartNo(String value) { this.ComponentInventoryPartNo = value; return this; } public String getComponentInventoryDescription() { return ComponentInventoryDescription; } public InventoryComponent setComponentInventoryDescription(String value) { this.ComponentInventoryDescription = value; return this; } } public static class InventoryLedger { public String LedgerID = null; public String Name = null; public String LedgerAccountID = null; public String LedgerAccountNo = null; public String LedgerAccountDescription = null; public String getLedgerID() { return LedgerID; } public InventoryLedger setLedgerID(String value) { this.LedgerID = value; return this; } public String getName() { return Name; } public InventoryLedger setName(String value) { this.Name = value; return this; } public String getLedgerAccountID() { return LedgerAccountID; } public InventoryLedger setLedgerAccountID(String value) { this.LedgerAccountID = value; return this; } public String getLedgerAccountNo() { return LedgerAccountNo; } public InventoryLedger setLedgerAccountNo(String value) { this.LedgerAccountNo = value; return this; } public String getLedgerAccountDescription() { return LedgerAccountDescription; } public InventoryLedger setLedgerAccountDescription(String value) { this.LedgerAccountDescription = value; return this; } } public static class InventoryOrderLevel { public Date MonthStartDate = null; public Date MonthEndDate = null; public BigDecimal MinSOHUnits = null; public BigDecimal MinSafetySOHUnits = null; public BigDecimal MaxSafetySOHUnits = null; public String LogicalWarehouseID = null; public String LogicalWarehouseDescription = null; public String PhysicalWarehouseID = null; public String PhysicalWarehouseDescription = null; public Integer PeriodNo = null; public Date getMonthStartDate() { return MonthStartDate; } public InventoryOrderLevel setMonthStartDate(Date value) { this.MonthStartDate = value; return this; } public Date getMonthEndDate() { return MonthEndDate; } public InventoryOrderLevel setMonthEndDate(Date value) { this.MonthEndDate = value; return this; } public BigDecimal getMinSOHUnits() { return MinSOHUnits; } public InventoryOrderLevel setMinSOHUnits(BigDecimal value) { this.MinSOHUnits = value; return this; } public BigDecimal getMinSafetySOHUnits() { return MinSafetySOHUnits; } public InventoryOrderLevel setMinSafetySOHUnits(BigDecimal value) { this.MinSafetySOHUnits = value; return this; } public BigDecimal getMaxSafetySOHUnits() { return MaxSafetySOHUnits; } public InventoryOrderLevel setMaxSafetySOHUnits(BigDecimal value) { this.MaxSafetySOHUnits = value; return this; } public String getLogicalWarehouseID() { return LogicalWarehouseID; } public InventoryOrderLevel setLogicalWarehouseID(String value) { this.LogicalWarehouseID = value; return this; } public String getLogicalWarehouseDescription() { return LogicalWarehouseDescription; } public InventoryOrderLevel setLogicalWarehouseDescription(String value) { this.LogicalWarehouseDescription = value; return this; } public String getPhysicalWarehouseID() { return PhysicalWarehouseID; } public InventoryOrderLevel setPhysicalWarehouseID(String value) { this.PhysicalWarehouseID = value; return this; } public String getPhysicalWarehouseDescription() { return PhysicalWarehouseDescription; } public InventoryOrderLevel setPhysicalWarehouseDescription(String value) { this.PhysicalWarehouseDescription = value; return this; } public Integer getPeriodNo() { return PeriodNo; } public InventoryOrderLevel setPeriodNo(Integer value) { this.PeriodNo = value; return this; } } public static class InventoryOtherDescription { public String OtherDescriptionID = null; public String Description = null; public String getOtherDescriptionID() { return OtherDescriptionID; } public InventoryOtherDescription setOtherDescriptionID(String value) { this.OtherDescriptionID = value; return this; } public String getDescription() { return Description; } public InventoryOtherDescription setDescription(String value) { this.Description = value; return this; } } public static class InventoryPriceGETResponse { public BigDecimal Price = null; public Boolean IncludesTax = null; public BigDecimal getPrice() { return Price; } public InventoryPriceGETResponse setPrice(BigDecimal value) { this.Price = value; return this; } public Boolean isIncludesTax() { return IncludesTax; } public InventoryPriceGETResponse setIncludesTax(Boolean value) { this.IncludesTax = value; return this; } } public static class InventoryDebtorPrice { public PriceSources Source = null; public PriceModes Mode = null; public BigDecimal Amount = null; public Date StartDate = null; public Date EndDate = null; public Boolean UseQuantityPriceBreak = null; public BigDecimal QuantityPriceBreak = null; public String DebtorSpecificPriceID = null; public String DebtorID = null; public String DebtorAccountNo = null; public String DebtorName = null; public BigDecimal Price = null; public String Note = null; public PriceSources getSource() { return Source; } public InventoryDebtorPrice setSource(PriceSources value) { this.Source = value; return this; } public PriceModes getMode() { return Mode; } public InventoryDebtorPrice setMode(PriceModes value) { this.Mode = value; return this; } public BigDecimal getAmount() { return Amount; } public InventoryDebtorPrice setAmount(BigDecimal value) { this.Amount = value; return this; } public Date getStartDate() { return StartDate; } public InventoryDebtorPrice setStartDate(Date value) { this.StartDate = value; return this; } public Date getEndDate() { return EndDate; } public InventoryDebtorPrice setEndDate(Date value) { this.EndDate = value; return this; } public Boolean isUseQuantityPriceBreak() { return UseQuantityPriceBreak; } public InventoryDebtorPrice setUseQuantityPriceBreak(Boolean value) { this.UseQuantityPriceBreak = value; return this; } public BigDecimal getQuantityPriceBreak() { return QuantityPriceBreak; } public InventoryDebtorPrice setQuantityPriceBreak(BigDecimal value) { this.QuantityPriceBreak = value; return this; } public String getDebtorSpecificPriceID() { return DebtorSpecificPriceID; } public InventoryDebtorPrice setDebtorSpecificPriceID(String value) { this.DebtorSpecificPriceID = value; return this; } public String getDebtorID() { return DebtorID; } public InventoryDebtorPrice setDebtorID(String value) { this.DebtorID = value; return this; } public String getDebtorAccountNo() { return DebtorAccountNo; } public InventoryDebtorPrice setDebtorAccountNo(String value) { this.DebtorAccountNo = value; return this; } public String getDebtorName() { return DebtorName; } public InventoryDebtorPrice setDebtorName(String value) { this.DebtorName = value; return this; } public BigDecimal getPrice() { return Price; } public InventoryDebtorPrice setPrice(BigDecimal value) { this.Price = value; return this; } public String getNote() { return Note; } public InventoryDebtorPrice setNote(String value) { this.Note = value; return this; } } public static class InventoryDebtorClassificationPrice { public PriceSources Source = null; public PriceModes Mode = null; public BigDecimal Amount = null; public Date StartDate = null; public Date EndDate = null; public Boolean UseQuantityPriceBreak = null; public BigDecimal QuantityPriceBreak = null; public String DebtorClassificationPriceID = null; public String DebtorClassificationID = null; public String DebtorClassificationDescription = null; public BigDecimal Price = null; public String Note = null; public PriceSources getSource() { return Source; } public InventoryDebtorClassificationPrice setSource(PriceSources value) { this.Source = value; return this; } public PriceModes getMode() { return Mode; } public InventoryDebtorClassificationPrice setMode(PriceModes value) { this.Mode = value; return this; } public BigDecimal getAmount() { return Amount; } public InventoryDebtorClassificationPrice setAmount(BigDecimal value) { this.Amount = value; return this; } public Date getStartDate() { return StartDate; } public InventoryDebtorClassificationPrice setStartDate(Date value) { this.StartDate = value; return this; } public Date getEndDate() { return EndDate; } public InventoryDebtorClassificationPrice setEndDate(Date value) { this.EndDate = value; return this; } public Boolean isUseQuantityPriceBreak() { return UseQuantityPriceBreak; } public InventoryDebtorClassificationPrice setUseQuantityPriceBreak(Boolean value) { this.UseQuantityPriceBreak = value; return this; } public BigDecimal getQuantityPriceBreak() { return QuantityPriceBreak; } public InventoryDebtorClassificationPrice setQuantityPriceBreak(BigDecimal value) { this.QuantityPriceBreak = value; return this; } public String getDebtorClassificationPriceID() { return DebtorClassificationPriceID; } public InventoryDebtorClassificationPrice setDebtorClassificationPriceID(String value) { this.DebtorClassificationPriceID = value; return this; } public String getDebtorClassificationID() { return DebtorClassificationID; } public InventoryDebtorClassificationPrice setDebtorClassificationID(String value) { this.DebtorClassificationID = value; return this; } public String getDebtorClassificationDescription() { return DebtorClassificationDescription; } public InventoryDebtorClassificationPrice setDebtorClassificationDescription(String value) { this.DebtorClassificationDescription = value; return this; } public BigDecimal getPrice() { return Price; } public InventoryDebtorClassificationPrice setPrice(BigDecimal value) { this.Price = value; return this; } public String getNote() { return Note; } public InventoryDebtorClassificationPrice setNote(String value) { this.Note = value; return this; } } public static class InventoryDebtorPriceGroupInventorySpecific { public PriceSources Source = null; public PriceModes Mode = null; public BigDecimal Amount = null; public Date StartDate = null; public Date EndDate = null; public Boolean UseQuantityPriceBreak = null; public BigDecimal QuantityPriceBreak = null; public String DebtorPriceGroupInventorySpecificID = null; public String DebtorPriceGroupID = null; public String DebtorPriceGroupDescription = null; public BigDecimal Price = null; public String Note = null; public PriceSources getSource() { return Source; } public InventoryDebtorPriceGroupInventorySpecific setSource(PriceSources value) { this.Source = value; return this; } public PriceModes getMode() { return Mode; } public InventoryDebtorPriceGroupInventorySpecific setMode(PriceModes value) { this.Mode = value; return this; } public BigDecimal getAmount() { return Amount; } public InventoryDebtorPriceGroupInventorySpecific setAmount(BigDecimal value) { this.Amount = value; return this; } public Date getStartDate() { return StartDate; } public InventoryDebtorPriceGroupInventorySpecific setStartDate(Date value) { this.StartDate = value; return this; } public Date getEndDate() { return EndDate; } public InventoryDebtorPriceGroupInventorySpecific setEndDate(Date value) { this.EndDate = value; return this; } public Boolean isUseQuantityPriceBreak() { return UseQuantityPriceBreak; } public InventoryDebtorPriceGroupInventorySpecific setUseQuantityPriceBreak(Boolean value) { this.UseQuantityPriceBreak = value; return this; } public BigDecimal getQuantityPriceBreak() { return QuantityPriceBreak; } public InventoryDebtorPriceGroupInventorySpecific setQuantityPriceBreak(BigDecimal value) { this.QuantityPriceBreak = value; return this; } public String getDebtorPriceGroupInventorySpecificID() { return DebtorPriceGroupInventorySpecificID; } public InventoryDebtorPriceGroupInventorySpecific setDebtorPriceGroupInventorySpecificID(String value) { this.DebtorPriceGroupInventorySpecificID = value; return this; } public String getDebtorPriceGroupID() { return DebtorPriceGroupID; } public InventoryDebtorPriceGroupInventorySpecific setDebtorPriceGroupID(String value) { this.DebtorPriceGroupID = value; return this; } public String getDebtorPriceGroupDescription() { return DebtorPriceGroupDescription; } public InventoryDebtorPriceGroupInventorySpecific setDebtorPriceGroupDescription(String value) { this.DebtorPriceGroupDescription = value; return this; } public BigDecimal getPrice() { return Price; } public InventoryDebtorPriceGroupInventorySpecific setPrice(BigDecimal value) { this.Price = value; return this; } public String getNote() { return Note; } public InventoryDebtorPriceGroupInventorySpecific setNote(String value) { this.Note = value; return this; } } public static class InventorySellingPrices { public ArrayList SellPrices = null; public Date CurrentPriceDate = null; public Date ForwardPriceDate = null; public ArrayList getSellPrices() { return SellPrices; } public InventorySellingPrices setSellPrices(ArrayList value) { this.SellPrices = value; return this; } public Date getCurrentPriceDate() { return CurrentPriceDate; } public InventorySellingPrices setCurrentPriceDate(Date value) { this.CurrentPriceDate = value; return this; } public Date getForwardPriceDate() { return ForwardPriceDate; } public InventorySellingPrices setForwardPriceDate(Date value) { this.ForwardPriceDate = value; return this; } } public static class InventoryPricingGroup { public String PricingGroupID = null; public String Description = null; public Boolean IsDefault = null; public Date LastSavedDateTime = null; public String getPricingGroupID() { return PricingGroupID; } public InventoryPricingGroup setPricingGroupID(String value) { this.PricingGroupID = value; return this; } public String getDescription() { return Description; } public InventoryPricingGroup setDescription(String value) { this.Description = value; return this; } public Boolean getIsDefault() { return IsDefault; } public InventoryPricingGroup setIsDefault(Boolean value) { this.IsDefault = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public InventoryPricingGroup setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } } public static class InventoryProductAvailability { public Boolean Available = null; public String ProductAvailabilityID = null; public String LogicalWarehouseID = null; public String LogicalWarehouseDescription = null; public String PhysicalWarehouseID = null; public String PhysicalWarehouseDescription = null; public Boolean isAvailable() { return Available; } public InventoryProductAvailability setAvailable(Boolean value) { this.Available = value; return this; } public String getProductAvailabilityID() { return ProductAvailabilityID; } public InventoryProductAvailability setProductAvailabilityID(String value) { this.ProductAvailabilityID = value; return this; } public String getLogicalWarehouseID() { return LogicalWarehouseID; } public InventoryProductAvailability setLogicalWarehouseID(String value) { this.LogicalWarehouseID = value; return this; } public String getLogicalWarehouseDescription() { return LogicalWarehouseDescription; } public InventoryProductAvailability setLogicalWarehouseDescription(String value) { this.LogicalWarehouseDescription = value; return this; } public String getPhysicalWarehouseID() { return PhysicalWarehouseID; } public InventoryProductAvailability setPhysicalWarehouseID(String value) { this.PhysicalWarehouseID = value; return this; } public String getPhysicalWarehouseDescription() { return PhysicalWarehouseDescription; } public InventoryProductAvailability setPhysicalWarehouseDescription(String value) { this.PhysicalWarehouseDescription = value; return this; } } public static class InventoryRegion { public String RegionSupplierOrderingID = null; public Boolean OrderEnabled = null; public String RegionID = null; public String RegionName = null; public ArrayList Suppliers = null; public String getRegionSupplierOrderingID() { return RegionSupplierOrderingID; } public InventoryRegion setRegionSupplierOrderingID(String value) { this.RegionSupplierOrderingID = value; return this; } public Boolean isOrderEnabled() { return OrderEnabled; } public InventoryRegion setOrderEnabled(Boolean value) { this.OrderEnabled = value; return this; } public String getRegionID() { return RegionID; } public InventoryRegion setRegionID(String value) { this.RegionID = value; return this; } public String getRegionName() { return RegionName; } public InventoryRegion setRegionName(String value) { this.RegionName = value; return this; } public ArrayList getSuppliers() { return Suppliers; } public InventoryRegion setSuppliers(ArrayList value) { this.Suppliers = value; return this; } } public static class InventorySupplier { public BigDecimal FXRate = null; public Boolean DefaultSupplier = null; public BigDecimal SpareFloat1 = null; public BigDecimal SpareFloat2 = null; public BigDecimal SpareFloat3 = null; public Date SpareDate1 = null; public Date SpareDate2 = null; public Date SpareDate3 = null; public String SupplierID = null; public String CreditorID = null; public String CreditorAccountNo = null; public String CreditorName = null; public String SupplierPartNo = null; public String SupplierUPC = null; public String SpareString1 = null; public String SpareString2 = null; public String SpareString3 = null; public ArrayList CustomFieldValues = null; public ArrayList SupplierWarehouses = null; public ArrayList SupplierQuantityPriceBreaks = null; public BigDecimal getFxRate() { return FXRate; } public InventorySupplier setFxRate(BigDecimal value) { this.FXRate = value; return this; } public Boolean isDefaultSupplier() { return DefaultSupplier; } public InventorySupplier setDefaultSupplier(Boolean value) { this.DefaultSupplier = value; return this; } public BigDecimal getSpareFloat1() { return SpareFloat1; } public InventorySupplier setSpareFloat1(BigDecimal value) { this.SpareFloat1 = value; return this; } public BigDecimal getSpareFloat2() { return SpareFloat2; } public InventorySupplier setSpareFloat2(BigDecimal value) { this.SpareFloat2 = value; return this; } public BigDecimal getSpareFloat3() { return SpareFloat3; } public InventorySupplier setSpareFloat3(BigDecimal value) { this.SpareFloat3 = value; return this; } public Date getSpareDate1() { return SpareDate1; } public InventorySupplier setSpareDate1(Date value) { this.SpareDate1 = value; return this; } public Date getSpareDate2() { return SpareDate2; } public InventorySupplier setSpareDate2(Date value) { this.SpareDate2 = value; return this; } public Date getSpareDate3() { return SpareDate3; } public InventorySupplier setSpareDate3(Date value) { this.SpareDate3 = value; return this; } public String getSupplierID() { return SupplierID; } public InventorySupplier setSupplierID(String value) { this.SupplierID = value; return this; } public String getCreditorID() { return CreditorID; } public InventorySupplier setCreditorID(String value) { this.CreditorID = value; return this; } public String getCreditorAccountNo() { return CreditorAccountNo; } public InventorySupplier setCreditorAccountNo(String value) { this.CreditorAccountNo = value; return this; } public String getCreditorName() { return CreditorName; } public InventorySupplier setCreditorName(String value) { this.CreditorName = value; return this; } public String getSupplierPartNo() { return SupplierPartNo; } public InventorySupplier setSupplierPartNo(String value) { this.SupplierPartNo = value; return this; } public String getSupplierUPC() { return SupplierUPC; } public InventorySupplier setSupplierUPC(String value) { this.SupplierUPC = value; return this; } public String getSpareString1() { return SpareString1; } public InventorySupplier setSpareString1(String value) { this.SpareString1 = value; return this; } public String getSpareString2() { return SpareString2; } public InventorySupplier setSpareString2(String value) { this.SpareString2 = value; return this; } public String getSpareString3() { return SpareString3; } public InventorySupplier setSpareString3(String value) { this.SpareString3 = value; return this; } public ArrayList getCustomFieldValues() { return CustomFieldValues; } public InventorySupplier setCustomFieldValues(ArrayList value) { this.CustomFieldValues = value; return this; } public ArrayList getSupplierWarehouses() { return SupplierWarehouses; } public InventorySupplier setSupplierWarehouses(ArrayList value) { this.SupplierWarehouses = value; return this; } public ArrayList getSupplierQuantityPriceBreaks() { return SupplierQuantityPriceBreaks; } public InventorySupplier setSupplierQuantityPriceBreaks(ArrayList value) { this.SupplierQuantityPriceBreaks = value; return this; } } public static class InventorySupplierWarehouse { public Boolean DefaultWarehouse = null; public BigDecimal HomeSuppliersCost = null; public BigDecimal SuppliersCost = null; public BigDecimal SuppliersCost2 = null; public BigDecimal HomeSuppliersCost2 = null; public BigDecimal SupplierSOH = null; public Integer DeliveryDays = null; public BigDecimal SpareFloat1 = null; public BigDecimal SpareFloat2 = null; public BigDecimal SpareFloat3 = null; public Date SpareDate1 = null; public Date SpareDate2 = null; public Date SpareDate3 = null; public String SupplierWarehouseID = null; public String CreditorWarehouseID = null; public String CreditorWarehouseDescription = null; public String SpareString1 = null; public String SpareString2 = null; public String SpareString3 = null; public ArrayList CustomFieldValues = null; public InventoryUnitOfMeasure UnitOfMeasure = null; public BigDecimal OrderUnits = null; public Boolean isDefaultWarehouse() { return DefaultWarehouse; } public InventorySupplierWarehouse setDefaultWarehouse(Boolean value) { this.DefaultWarehouse = value; return this; } public BigDecimal getHomeSuppliersCost() { return HomeSuppliersCost; } public InventorySupplierWarehouse setHomeSuppliersCost(BigDecimal value) { this.HomeSuppliersCost = value; return this; } public BigDecimal getSuppliersCost() { return SuppliersCost; } public InventorySupplierWarehouse setSuppliersCost(BigDecimal value) { this.SuppliersCost = value; return this; } public BigDecimal getSuppliersCost2() { return SuppliersCost2; } public InventorySupplierWarehouse setSuppliersCost2(BigDecimal value) { this.SuppliersCost2 = value; return this; } public BigDecimal getHomeSuppliersCost2() { return HomeSuppliersCost2; } public InventorySupplierWarehouse setHomeSuppliersCost2(BigDecimal value) { this.HomeSuppliersCost2 = value; return this; } public BigDecimal getSupplierSOH() { return SupplierSOH; } public InventorySupplierWarehouse setSupplierSOH(BigDecimal value) { this.SupplierSOH = value; return this; } public Integer getDeliveryDays() { return DeliveryDays; } public InventorySupplierWarehouse setDeliveryDays(Integer value) { this.DeliveryDays = value; return this; } public BigDecimal getSpareFloat1() { return SpareFloat1; } public InventorySupplierWarehouse setSpareFloat1(BigDecimal value) { this.SpareFloat1 = value; return this; } public BigDecimal getSpareFloat2() { return SpareFloat2; } public InventorySupplierWarehouse setSpareFloat2(BigDecimal value) { this.SpareFloat2 = value; return this; } public BigDecimal getSpareFloat3() { return SpareFloat3; } public InventorySupplierWarehouse setSpareFloat3(BigDecimal value) { this.SpareFloat3 = value; return this; } public Date getSpareDate1() { return SpareDate1; } public InventorySupplierWarehouse setSpareDate1(Date value) { this.SpareDate1 = value; return this; } public Date getSpareDate2() { return SpareDate2; } public InventorySupplierWarehouse setSpareDate2(Date value) { this.SpareDate2 = value; return this; } public Date getSpareDate3() { return SpareDate3; } public InventorySupplierWarehouse setSpareDate3(Date value) { this.SpareDate3 = value; return this; } public String getSupplierWarehouseID() { return SupplierWarehouseID; } public InventorySupplierWarehouse setSupplierWarehouseID(String value) { this.SupplierWarehouseID = value; return this; } public String getCreditorWarehouseID() { return CreditorWarehouseID; } public InventorySupplierWarehouse setCreditorWarehouseID(String value) { this.CreditorWarehouseID = value; return this; } public String getCreditorWarehouseDescription() { return CreditorWarehouseDescription; } public InventorySupplierWarehouse setCreditorWarehouseDescription(String value) { this.CreditorWarehouseDescription = value; return this; } public String getSpareString1() { return SpareString1; } public InventorySupplierWarehouse setSpareString1(String value) { this.SpareString1 = value; return this; } public String getSpareString2() { return SpareString2; } public InventorySupplierWarehouse setSpareString2(String value) { this.SpareString2 = value; return this; } public String getSpareString3() { return SpareString3; } public InventorySupplierWarehouse setSpareString3(String value) { this.SpareString3 = value; return this; } public ArrayList getCustomFieldValues() { return CustomFieldValues; } public InventorySupplierWarehouse setCustomFieldValues(ArrayList value) { this.CustomFieldValues = value; return this; } public InventoryUnitOfMeasure getUnitOfMeasure() { return UnitOfMeasure; } public InventorySupplierWarehouse setUnitOfMeasure(InventoryUnitOfMeasure value) { this.UnitOfMeasure = value; return this; } public BigDecimal getOrderUnits() { return OrderUnits; } public InventorySupplierWarehouse setOrderUnits(BigDecimal value) { this.OrderUnits = value; return this; } } public static class InventoryUnitOfMeasure { public String RecID = null; public InventoryUnitOfMeasure InnerUnitOfMeasure = null; public BigDecimal QuantityInnersPerUnitOfMeasure = null; public Boolean IsSell = null; public Boolean IsPurchase = null; public Integer ItemNo = null; public Date LastSavedDateTime = null; public String UnitOfMeasureID = null; public String Name = null; public String PartNo = null; public String Barcode = null; public String getRecID() { return RecID; } public InventoryUnitOfMeasure setRecID(String value) { this.RecID = value; return this; } public InventoryUnitOfMeasure getInnerUnitOfMeasure() { return InnerUnitOfMeasure; } public InventoryUnitOfMeasure setInnerUnitOfMeasure(InventoryUnitOfMeasure value) { this.InnerUnitOfMeasure = value; return this; } public BigDecimal getQuantityInnersPerUnitOfMeasure() { return QuantityInnersPerUnitOfMeasure; } public InventoryUnitOfMeasure setQuantityInnersPerUnitOfMeasure(BigDecimal value) { this.QuantityInnersPerUnitOfMeasure = value; return this; } public Boolean getIsSell() { return IsSell; } public InventoryUnitOfMeasure setIsSell(Boolean value) { this.IsSell = value; return this; } public Boolean getIsPurchase() { return IsPurchase; } public InventoryUnitOfMeasure setIsPurchase(Boolean value) { this.IsPurchase = value; return this; } public Integer getItemNo() { return ItemNo; } public InventoryUnitOfMeasure setItemNo(Integer value) { this.ItemNo = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public InventoryUnitOfMeasure setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public String getUnitOfMeasureID() { return UnitOfMeasureID; } public InventoryUnitOfMeasure setUnitOfMeasureID(String value) { this.UnitOfMeasureID = value; return this; } public String getName() { return Name; } public InventoryUnitOfMeasure setName(String value) { this.Name = value; return this; } public String getPartNo() { return PartNo; } public InventoryUnitOfMeasure setPartNo(String value) { this.PartNo = value; return this; } public String getBarcode() { return Barcode; } public InventoryUnitOfMeasure setBarcode(String value) { this.Barcode = value; return this; } } public static class InventoryUpSell { public String UpSellID = null; public BigDecimal UpSellQuantity = null; public String UpSellInventoryID = null; public String UpSellInventoryPartNo = null; public String UpSellInventoryDescription = null; public String UpSellDescription = null; public String PrimaryCategoryID = null; public String PrimaryCategoryDescription = null; public Integer PrimaryCategoryNo = null; public String SecondaryCategoryID = null; public String SecondaryCategoryDescription = null; public Integer SecondaryCategoryNo = null; public String getUpSellID() { return UpSellID; } public InventoryUpSell setUpSellID(String value) { this.UpSellID = value; return this; } public BigDecimal getUpSellQuantity() { return UpSellQuantity; } public InventoryUpSell setUpSellQuantity(BigDecimal value) { this.UpSellQuantity = value; return this; } public String getUpSellInventoryID() { return UpSellInventoryID; } public InventoryUpSell setUpSellInventoryID(String value) { this.UpSellInventoryID = value; return this; } public String getUpSellInventoryPartNo() { return UpSellInventoryPartNo; } public InventoryUpSell setUpSellInventoryPartNo(String value) { this.UpSellInventoryPartNo = value; return this; } public String getUpSellInventoryDescription() { return UpSellInventoryDescription; } public InventoryUpSell setUpSellInventoryDescription(String value) { this.UpSellInventoryDescription = value; return this; } public String getUpSellDescription() { return UpSellDescription; } public InventoryUpSell setUpSellDescription(String value) { this.UpSellDescription = value; return this; } public String getPrimaryCategoryID() { return PrimaryCategoryID; } public InventoryUpSell setPrimaryCategoryID(String value) { this.PrimaryCategoryID = value; return this; } public String getPrimaryCategoryDescription() { return PrimaryCategoryDescription; } public InventoryUpSell setPrimaryCategoryDescription(String value) { this.PrimaryCategoryDescription = value; return this; } public Integer getPrimaryCategoryNo() { return PrimaryCategoryNo; } public InventoryUpSell setPrimaryCategoryNo(Integer value) { this.PrimaryCategoryNo = value; return this; } public String getSecondaryCategoryID() { return SecondaryCategoryID; } public InventoryUpSell setSecondaryCategoryID(String value) { this.SecondaryCategoryID = value; return this; } public String getSecondaryCategoryDescription() { return SecondaryCategoryDescription; } public InventoryUpSell setSecondaryCategoryDescription(String value) { this.SecondaryCategoryDescription = value; return this; } public Integer getSecondaryCategoryNo() { return SecondaryCategoryNo; } public InventoryUpSell setSecondaryCategoryNo(Integer value) { this.SecondaryCategoryNo = value; return this; } } public static class JournalSet { public String JournalSetID = null; public String SetNo = null; public SetTypes SetType = null; public String Description = null; public String Source = null; public String SourceID = null; public Date PostedDate = null; public Boolean IsReversed = null; public ReverseTypes ReverseType = null; public Date ReverseDate = null; public Integer RepeatingUnits = null; public RepeatingTypes RepeatingType = null; public Date NextRepeatingDate = null; public Boolean RepeatingWillEnd = null; public Date RepeatingEndDate = null; public Date LastSavedDateTime = null; public StaffMember Staff = null; public ArrayList Lines = null; public ArrayList Notes = null; public ArrayList Documents = null; public Integer PostedToPeriodNo = null; public String PostedToPeriodName = null; public YearTypes PostedToYearType = null; public Integer PostedToYearNo = null; public Boolean PostedToPeriodNoIsGloballyLocked = null; public Boolean PostedToPeriodNoIsExternallyLocked = null; public String getJournalSetID() { return JournalSetID; } public JournalSet setJournalSetID(String value) { this.JournalSetID = value; return this; } public String getSetNo() { return SetNo; } public JournalSet setSetNo(String value) { this.SetNo = value; return this; } public SetTypes getSetType() { return SetType; } public JournalSet setSetType(SetTypes value) { this.SetType = value; return this; } public String getDescription() { return Description; } public JournalSet setDescription(String value) { this.Description = value; return this; } public String getSource() { return Source; } public JournalSet setSource(String value) { this.Source = value; return this; } public String getSourceID() { return SourceID; } public JournalSet setSourceID(String value) { this.SourceID = value; return this; } public Date getPostedDate() { return PostedDate; } public JournalSet setPostedDate(Date value) { this.PostedDate = value; return this; } public Boolean getIsReversed() { return IsReversed; } public JournalSet setIsReversed(Boolean value) { this.IsReversed = value; return this; } public ReverseTypes getReverseType() { return ReverseType; } public JournalSet setReverseType(ReverseTypes value) { this.ReverseType = value; return this; } public Date getReverseDate() { return ReverseDate; } public JournalSet setReverseDate(Date value) { this.ReverseDate = value; return this; } public Integer getRepeatingUnits() { return RepeatingUnits; } public JournalSet setRepeatingUnits(Integer value) { this.RepeatingUnits = value; return this; } public RepeatingTypes getRepeatingType() { return RepeatingType; } public JournalSet setRepeatingType(RepeatingTypes value) { this.RepeatingType = value; return this; } public Date getNextRepeatingDate() { return NextRepeatingDate; } public JournalSet setNextRepeatingDate(Date value) { this.NextRepeatingDate = value; return this; } public Boolean isRepeatingWillEnd() { return RepeatingWillEnd; } public JournalSet setRepeatingWillEnd(Boolean value) { this.RepeatingWillEnd = value; return this; } public Date getRepeatingEndDate() { return RepeatingEndDate; } public JournalSet setRepeatingEndDate(Date value) { this.RepeatingEndDate = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public JournalSet setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public StaffMember getStaff() { return Staff; } public JournalSet setStaff(StaffMember value) { this.Staff = value; return this; } public ArrayList getLines() { return Lines; } public JournalSet setLines(ArrayList value) { this.Lines = value; return this; } public ArrayList getNotes() { return Notes; } public JournalSet setNotes(ArrayList value) { this.Notes = value; return this; } public ArrayList getDocuments() { return Documents; } public JournalSet setDocuments(ArrayList value) { this.Documents = value; return this; } public Integer getPostedToPeriodNo() { return PostedToPeriodNo; } public JournalSet setPostedToPeriodNo(Integer value) { this.PostedToPeriodNo = value; return this; } public String getPostedToPeriodName() { return PostedToPeriodName; } public JournalSet setPostedToPeriodName(String value) { this.PostedToPeriodName = value; return this; } public YearTypes getPostedToYearType() { return PostedToYearType; } public JournalSet setPostedToYearType(YearTypes value) { this.PostedToYearType = value; return this; } public Integer getPostedToYearNo() { return PostedToYearNo; } public JournalSet setPostedToYearNo(Integer value) { this.PostedToYearNo = value; return this; } public Boolean isPostedToPeriodNoIsGloballyLocked() { return PostedToPeriodNoIsGloballyLocked; } public JournalSet setPostedToPeriodNoIsGloballyLocked(Boolean value) { this.PostedToPeriodNoIsGloballyLocked = value; return this; } public Boolean isPostedToPeriodNoIsExternallyLocked() { return PostedToPeriodNoIsExternallyLocked; } public JournalSet setPostedToPeriodNoIsExternallyLocked(Boolean value) { this.PostedToPeriodNoIsExternallyLocked = value; return this; } } public static class JournalSetLine { public String JournalSetLineID = null; public Integer ItemNo = null; public String Reference = null; public String Remark = null; public String TransCode1ID = null; public String TransCode1Description = null; public String TransCode2ID = null; public String TransCode2Description = null; public BASCodes BASCode = null; public Date TransPostDateTime = null; public BigDecimal DebitAmount = null; public BigDecimal CreditAmount = null; public Boolean AllowGroup = null; public StaffMember Staff = null; public String JobCostingStageID = null; public String JobCostingFullJobNo = null; public String GeneralLedgerAccountRecID = null; public String GeneralLedgerAccountAccountNo = null; public String GeneralLedgerAccountDescription = null; public String getJournalSetLineID() { return JournalSetLineID; } public JournalSetLine setJournalSetLineID(String value) { this.JournalSetLineID = value; return this; } public Integer getItemNo() { return ItemNo; } public JournalSetLine setItemNo(Integer value) { this.ItemNo = value; return this; } public String getReference() { return Reference; } public JournalSetLine setReference(String value) { this.Reference = value; return this; } public String getRemark() { return Remark; } public JournalSetLine setRemark(String value) { this.Remark = value; return this; } public String getTransCode1ID() { return TransCode1ID; } public JournalSetLine setTransCode1ID(String value) { this.TransCode1ID = value; return this; } public String getTransCode1Description() { return TransCode1Description; } public JournalSetLine setTransCode1Description(String value) { this.TransCode1Description = value; return this; } public String getTransCode2ID() { return TransCode2ID; } public JournalSetLine setTransCode2ID(String value) { this.TransCode2ID = value; return this; } public String getTransCode2Description() { return TransCode2Description; } public JournalSetLine setTransCode2Description(String value) { this.TransCode2Description = value; return this; } public BASCodes getBasCode() { return BASCode; } public JournalSetLine setBasCode(BASCodes value) { this.BASCode = value; return this; } public Date getTransPostDateTime() { return TransPostDateTime; } public JournalSetLine setTransPostDateTime(Date value) { this.TransPostDateTime = value; return this; } public BigDecimal getDebitAmount() { return DebitAmount; } public JournalSetLine setDebitAmount(BigDecimal value) { this.DebitAmount = value; return this; } public BigDecimal getCreditAmount() { return CreditAmount; } public JournalSetLine setCreditAmount(BigDecimal value) { this.CreditAmount = value; return this; } public Boolean isAllowGroup() { return AllowGroup; } public JournalSetLine setAllowGroup(Boolean value) { this.AllowGroup = value; return this; } public StaffMember getStaff() { return Staff; } public JournalSetLine setStaff(StaffMember value) { this.Staff = value; return this; } public String getJobCostingStageID() { return JobCostingStageID; } public JournalSetLine setJobCostingStageID(String value) { this.JobCostingStageID = value; return this; } public String getJobCostingFullJobNo() { return JobCostingFullJobNo; } public JournalSetLine setJobCostingFullJobNo(String value) { this.JobCostingFullJobNo = value; return this; } public String getGeneralLedgerAccountRecID() { return GeneralLedgerAccountRecID; } public JournalSetLine setGeneralLedgerAccountRecID(String value) { this.GeneralLedgerAccountRecID = value; return this; } public String getGeneralLedgerAccountAccountNo() { return GeneralLedgerAccountAccountNo; } public JournalSetLine setGeneralLedgerAccountAccountNo(String value) { this.GeneralLedgerAccountAccountNo = value; return this; } public String getGeneralLedgerAccountDescription() { return GeneralLedgerAccountDescription; } public JournalSetLine setGeneralLedgerAccountDescription(String value) { this.GeneralLedgerAccountDescription = value; return this; } } public static class BookIn { public String BookInID = null; public String BookInNo = null; public BookInShipment Shipment = null; public Date BookInDate = null; public Boolean Activated = null; public String GL_Sets_RecID = null; public Date LastSavedDateTime = null; public ArrayList Lines = null; public ArrayList OtherBookInsForThisShipment = null; public String getBookInID() { return BookInID; } public BookIn setBookInID(String value) { this.BookInID = value; return this; } public String getBookInNo() { return BookInNo; } public BookIn setBookInNo(String value) { this.BookInNo = value; return this; } public BookInShipment getShipment() { return Shipment; } public BookIn setShipment(BookInShipment value) { this.Shipment = value; return this; } public Date getBookInDate() { return BookInDate; } public BookIn setBookInDate(Date value) { this.BookInDate = value; return this; } public Boolean isActivated() { return Activated; } public BookIn setActivated(Boolean value) { this.Activated = value; return this; } public String getGlSetsRecID() { return GL_Sets_RecID; } public BookIn setGlSetsRecID(String value) { this.GL_Sets_RecID = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public BookIn setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public ArrayList getLines() { return Lines; } public BookIn setLines(ArrayList value) { this.Lines = value; return this; } public ArrayList getOtherBookInsForThisShipment() { return OtherBookInsForThisShipment; } public BookIn setOtherBookInsForThisShipment(ArrayList value) { this.OtherBookInsForThisShipment = value; return this; } } public static class BookInLine { public String LineID = null; public Integer ItemNo = null; public BigDecimal Quantity = null; public BigDecimal QuantityPreviouslyBookedIn = null; public BigDecimal QuantityOutstanding = null; public BookInShipmentLine ShipmentLine = null; public ArrayList LineDetails = null; public ArrayList CustomFieldValues = null; public String getLineID() { return LineID; } public BookInLine setLineID(String value) { this.LineID = value; return this; } public Integer getItemNo() { return ItemNo; } public BookInLine setItemNo(Integer value) { this.ItemNo = value; return this; } public BigDecimal getQuantity() { return Quantity; } public BookInLine setQuantity(BigDecimal value) { this.Quantity = value; return this; } public BigDecimal getQuantityPreviouslyBookedIn() { return QuantityPreviouslyBookedIn; } public BookInLine setQuantityPreviouslyBookedIn(BigDecimal value) { this.QuantityPreviouslyBookedIn = value; return this; } public BigDecimal getQuantityOutstanding() { return QuantityOutstanding; } public BookInLine setQuantityOutstanding(BigDecimal value) { this.QuantityOutstanding = value; return this; } public BookInShipmentLine getShipmentLine() { return ShipmentLine; } public BookInLine setShipmentLine(BookInShipmentLine value) { this.ShipmentLine = value; return this; } public ArrayList getLineDetails() { return LineDetails; } public BookInLine setLineDetails(ArrayList value) { this.LineDetails = value; return this; } public ArrayList getCustomFieldValues() { return CustomFieldValues; } public BookInLine setCustomFieldValues(ArrayList value) { this.CustomFieldValues = value; return this; } } public static class Shipment { public String ShipmentID = null; public String ShipmentNo = null; public Date LastSavedDateTime = null; public Date InitiatedDate = null; public Date DepartureDate = null; public Date ExpectedArrivalDate = null; public Date ScheduledArrivalDate = null; public Date ReceiptDate = null; public String DeliveryNotes = null; public StatusType Status = null; public String WayBillNo = null; public String VesselName = null; public String ContainerNo = null; public Boolean UseVOTI = null; public String ShippingAgentCreditorID = null; public String ShippingAgentCreditorAccountNo = null; public String ShippingAgentCreditorName = null; public Account ImportCostClearingAccount = null; public ArrayList Lines = null; public ArrayList PurchaseOrders = null; public ArrayList ImportCosts = null; public ArrayList VOTIs = null; public ArrayList Invoices = null; public ArrayList CustomFieldValues = null; public String getShipmentID() { return ShipmentID; } public Shipment setShipmentID(String value) { this.ShipmentID = value; return this; } public String getShipmentNo() { return ShipmentNo; } public Shipment setShipmentNo(String value) { this.ShipmentNo = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public Shipment setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getInitiatedDate() { return InitiatedDate; } public Shipment setInitiatedDate(Date value) { this.InitiatedDate = value; return this; } public Date getDepartureDate() { return DepartureDate; } public Shipment setDepartureDate(Date value) { this.DepartureDate = value; return this; } public Date getExpectedArrivalDate() { return ExpectedArrivalDate; } public Shipment setExpectedArrivalDate(Date value) { this.ExpectedArrivalDate = value; return this; } public Date getScheduledArrivalDate() { return ScheduledArrivalDate; } public Shipment setScheduledArrivalDate(Date value) { this.ScheduledArrivalDate = value; return this; } public Date getReceiptDate() { return ReceiptDate; } public Shipment setReceiptDate(Date value) { this.ReceiptDate = value; return this; } public String getDeliveryNotes() { return DeliveryNotes; } public Shipment setDeliveryNotes(String value) { this.DeliveryNotes = value; return this; } public StatusType getStatus() { return Status; } public Shipment setStatus(StatusType value) { this.Status = value; return this; } public String getWayBillNo() { return WayBillNo; } public Shipment setWayBillNo(String value) { this.WayBillNo = value; return this; } public String getVesselName() { return VesselName; } public Shipment setVesselName(String value) { this.VesselName = value; return this; } public String getContainerNo() { return ContainerNo; } public Shipment setContainerNo(String value) { this.ContainerNo = value; return this; } public Boolean isUseVOTI() { return UseVOTI; } public Shipment setUseVOTI(Boolean value) { this.UseVOTI = value; return this; } public String getShippingAgentCreditorID() { return ShippingAgentCreditorID; } public Shipment setShippingAgentCreditorID(String value) { this.ShippingAgentCreditorID = value; return this; } public String getShippingAgentCreditorAccountNo() { return ShippingAgentCreditorAccountNo; } public Shipment setShippingAgentCreditorAccountNo(String value) { this.ShippingAgentCreditorAccountNo = value; return this; } public String getShippingAgentCreditorName() { return ShippingAgentCreditorName; } public Shipment setShippingAgentCreditorName(String value) { this.ShippingAgentCreditorName = value; return this; } public Account getImportCostClearingAccount() { return ImportCostClearingAccount; } public Shipment setImportCostClearingAccount(Account value) { this.ImportCostClearingAccount = value; return this; } public ArrayList getLines() { return Lines; } public Shipment setLines(ArrayList value) { this.Lines = value; return this; } public ArrayList getPurchaseOrders() { return PurchaseOrders; } public Shipment setPurchaseOrders(ArrayList value) { this.PurchaseOrders = value; return this; } public ArrayList getImportCosts() { return ImportCosts; } public Shipment setImportCosts(ArrayList value) { this.ImportCosts = value; return this; } public ArrayList getVotIs() { return VOTIs; } public Shipment setVotIs(ArrayList value) { this.VOTIs = value; return this; } public ArrayList getInvoices() { return Invoices; } public Shipment setInvoices(ArrayList value) { this.Invoices = value; return this; } public ArrayList getCustomFieldValues() { return CustomFieldValues; } public Shipment setCustomFieldValues(ArrayList value) { this.CustomFieldValues = value; return this; } } public static class ShipmentPurchaseOrderReceived { public String PurchaseOrderReceivedID = null; public String OrderID = null; public String OrderNo = null; public Date OrderedDate = null; public Integer ItemNo = null; public String UserField1 = null; public String UserField2 = null; public String UserField3 = null; public String UserField4 = null; public String UserField5 = null; public String UserField6 = null; public String UserField7 = null; public String UserField8 = null; public String UserField9 = null; public String UserField10 = null; public String getPurchaseOrderReceivedID() { return PurchaseOrderReceivedID; } public ShipmentPurchaseOrderReceived setPurchaseOrderReceivedID(String value) { this.PurchaseOrderReceivedID = value; return this; } public String getOrderID() { return OrderID; } public ShipmentPurchaseOrderReceived setOrderID(String value) { this.OrderID = value; return this; } public String getOrderNo() { return OrderNo; } public ShipmentPurchaseOrderReceived setOrderNo(String value) { this.OrderNo = value; return this; } public Date getOrderedDate() { return OrderedDate; } public ShipmentPurchaseOrderReceived setOrderedDate(Date value) { this.OrderedDate = value; return this; } public Integer getItemNo() { return ItemNo; } public ShipmentPurchaseOrderReceived setItemNo(Integer value) { this.ItemNo = value; return this; } public String getUserField1() { return UserField1; } public ShipmentPurchaseOrderReceived setUserField1(String value) { this.UserField1 = value; return this; } public String getUserField2() { return UserField2; } public ShipmentPurchaseOrderReceived setUserField2(String value) { this.UserField2 = value; return this; } public String getUserField3() { return UserField3; } public ShipmentPurchaseOrderReceived setUserField3(String value) { this.UserField3 = value; return this; } public String getUserField4() { return UserField4; } public ShipmentPurchaseOrderReceived setUserField4(String value) { this.UserField4 = value; return this; } public String getUserField5() { return UserField5; } public ShipmentPurchaseOrderReceived setUserField5(String value) { this.UserField5 = value; return this; } public String getUserField6() { return UserField6; } public ShipmentPurchaseOrderReceived setUserField6(String value) { this.UserField6 = value; return this; } public String getUserField7() { return UserField7; } public ShipmentPurchaseOrderReceived setUserField7(String value) { this.UserField7 = value; return this; } public String getUserField8() { return UserField8; } public ShipmentPurchaseOrderReceived setUserField8(String value) { this.UserField8 = value; return this; } public String getUserField9() { return UserField9; } public ShipmentPurchaseOrderReceived setUserField9(String value) { this.UserField9 = value; return this; } public String getUserField10() { return UserField10; } public ShipmentPurchaseOrderReceived setUserField10(String value) { this.UserField10 = value; return this; } } public static class ShipmentLine { public String LineID = null; public Integer ItemNo = null; public String InventoryID = null; public String InventoryPartNo = null; public String InventoryDescription = null; public String CreditorID = null; public String CreditorAccountNo = null; public String CreditorName = null; public String SHInvoicesRecID = null; public String SHInvoicesInvoiceNo = null; public String PurchaseOrderLineID = null; public String PurchaseOrderLineOrderLineNo = null; public String PurchaseOrderLineOrderID = null; public String PurchaseOrderLineOrderNo = null; public String PurchaseOrderLineQuantity = null; public String PurchaseOrderLineQuantityDelivered = null; public BigDecimal QuantityOrdered = null; public BigDecimal QuantityThisShipment = null; public BigDecimal OrderedCost = null; public BigDecimal FXOrderedCost = null; public BigDecimal UnitCostExTax = null; public BigDecimal FXRate = null; public BigDecimal FXUnitCostExTax = null; public TaxRate TaxRate = null; public BigDecimal TaxAmount = null; public BigDecimal UnitCostIncTax = null; public BigDecimal LineTotalExTax = null; public BigDecimal LineTotalIncTax = null; public BigDecimal FXLineTotalExTax = null; public BigDecimal LandedCostLineTotal = null; public BigDecimal LandedCost = null; public String getLineID() { return LineID; } public ShipmentLine setLineID(String value) { this.LineID = value; return this; } public Integer getItemNo() { return ItemNo; } public ShipmentLine setItemNo(Integer value) { this.ItemNo = value; return this; } public String getInventoryID() { return InventoryID; } public ShipmentLine setInventoryID(String value) { this.InventoryID = value; return this; } public String getInventoryPartNo() { return InventoryPartNo; } public ShipmentLine setInventoryPartNo(String value) { this.InventoryPartNo = value; return this; } public String getInventoryDescription() { return InventoryDescription; } public ShipmentLine setInventoryDescription(String value) { this.InventoryDescription = value; return this; } public String getCreditorID() { return CreditorID; } public ShipmentLine setCreditorID(String value) { this.CreditorID = value; return this; } public String getCreditorAccountNo() { return CreditorAccountNo; } public ShipmentLine setCreditorAccountNo(String value) { this.CreditorAccountNo = value; return this; } public String getCreditorName() { return CreditorName; } public ShipmentLine setCreditorName(String value) { this.CreditorName = value; return this; } public String getShInvoicesRecID() { return SHInvoicesRecID; } public ShipmentLine setShInvoicesRecID(String value) { this.SHInvoicesRecID = value; return this; } public String getShInvoicesInvoiceNo() { return SHInvoicesInvoiceNo; } public ShipmentLine setShInvoicesInvoiceNo(String value) { this.SHInvoicesInvoiceNo = value; return this; } public String getPurchaseOrderLineID() { return PurchaseOrderLineID; } public ShipmentLine setPurchaseOrderLineID(String value) { this.PurchaseOrderLineID = value; return this; } public String getPurchaseOrderLineOrderLineNo() { return PurchaseOrderLineOrderLineNo; } public ShipmentLine setPurchaseOrderLineOrderLineNo(String value) { this.PurchaseOrderLineOrderLineNo = value; return this; } public String getPurchaseOrderLineOrderID() { return PurchaseOrderLineOrderID; } public ShipmentLine setPurchaseOrderLineOrderID(String value) { this.PurchaseOrderLineOrderID = value; return this; } public String getPurchaseOrderLineOrderNo() { return PurchaseOrderLineOrderNo; } public ShipmentLine setPurchaseOrderLineOrderNo(String value) { this.PurchaseOrderLineOrderNo = value; return this; } public String getPurchaseOrderLineQuantity() { return PurchaseOrderLineQuantity; } public ShipmentLine setPurchaseOrderLineQuantity(String value) { this.PurchaseOrderLineQuantity = value; return this; } public String getPurchaseOrderLineQuantityDelivered() { return PurchaseOrderLineQuantityDelivered; } public ShipmentLine setPurchaseOrderLineQuantityDelivered(String value) { this.PurchaseOrderLineQuantityDelivered = value; return this; } public BigDecimal getQuantityOrdered() { return QuantityOrdered; } public ShipmentLine setQuantityOrdered(BigDecimal value) { this.QuantityOrdered = value; return this; } public BigDecimal getQuantityThisShipment() { return QuantityThisShipment; } public ShipmentLine setQuantityThisShipment(BigDecimal value) { this.QuantityThisShipment = value; return this; } public BigDecimal getOrderedCost() { return OrderedCost; } public ShipmentLine setOrderedCost(BigDecimal value) { this.OrderedCost = value; return this; } public BigDecimal getFxOrderedCost() { return FXOrderedCost; } public ShipmentLine setFxOrderedCost(BigDecimal value) { this.FXOrderedCost = value; return this; } public BigDecimal getUnitCostExTax() { return UnitCostExTax; } public ShipmentLine setUnitCostExTax(BigDecimal value) { this.UnitCostExTax = value; return this; } public BigDecimal getFxRate() { return FXRate; } public ShipmentLine setFxRate(BigDecimal value) { this.FXRate = value; return this; } public BigDecimal getFxUnitCostExTax() { return FXUnitCostExTax; } public ShipmentLine setFxUnitCostExTax(BigDecimal value) { this.FXUnitCostExTax = value; return this; } public TaxRate getTaxRate() { return TaxRate; } public ShipmentLine setTaxRate(TaxRate value) { this.TaxRate = value; return this; } public BigDecimal getTaxAmount() { return TaxAmount; } public ShipmentLine setTaxAmount(BigDecimal value) { this.TaxAmount = value; return this; } public BigDecimal getUnitCostIncTax() { return UnitCostIncTax; } public ShipmentLine setUnitCostIncTax(BigDecimal value) { this.UnitCostIncTax = value; return this; } public BigDecimal getLineTotalExTax() { return LineTotalExTax; } public ShipmentLine setLineTotalExTax(BigDecimal value) { this.LineTotalExTax = value; return this; } public BigDecimal getLineTotalIncTax() { return LineTotalIncTax; } public ShipmentLine setLineTotalIncTax(BigDecimal value) { this.LineTotalIncTax = value; return this; } public BigDecimal getFxLineTotalExTax() { return FXLineTotalExTax; } public ShipmentLine setFxLineTotalExTax(BigDecimal value) { this.FXLineTotalExTax = value; return this; } public BigDecimal getLandedCostLineTotal() { return LandedCostLineTotal; } public ShipmentLine setLandedCostLineTotal(BigDecimal value) { this.LandedCostLineTotal = value; return this; } public BigDecimal getLandedCost() { return LandedCost; } public ShipmentLine setLandedCost(BigDecimal value) { this.LandedCost = value; return this; } } public static class Language { public String LanguageID = null; public String Description = null; public String LanguageCode = null; public Boolean IsDefault = null; public String getLanguageID() { return LanguageID; } public Language setLanguageID(String value) { this.LanguageID = value; return this; } public String getDescription() { return Description; } public Language setDescription(String value) { this.Description = value; return this; } public String getLanguageCode() { return LanguageCode; } public Language setLanguageCode(String value) { this.LanguageCode = value; return this; } public Boolean getIsDefault() { return IsDefault; } public Language setIsDefault(Boolean value) { this.IsDefault = value; return this; } } public static class IN_Logical { @Required() public String IN_LogicalID = null; @References(IN_Physical.class) @Required() public String IN_PhysicalID = null; @Required() public Date LastSavedDateTime = null; public String Description = null; public String LedgerMask = null; public String WarehouseCode = null; public Boolean InTransit = null; public Boolean DefaultInTransit = null; @References(IN_Region.class) @Required() public String IN_Region_RecID = null; @Required() public Integer ItemNo = null; @Required() public ArrayList RowHash = null; public Integer Colour = null; public String getInLogicalID() { return IN_LogicalID; } public IN_Logical setInLogicalID(String value) { this.IN_LogicalID = value; return this; } public String getInPhysicalID() { return IN_PhysicalID; } public IN_Logical setInPhysicalID(String value) { this.IN_PhysicalID = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public IN_Logical setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public String getDescription() { return Description; } public IN_Logical setDescription(String value) { this.Description = value; return this; } public String getLedgerMask() { return LedgerMask; } public IN_Logical setLedgerMask(String value) { this.LedgerMask = value; return this; } public String getWarehouseCode() { return WarehouseCode; } public IN_Logical setWarehouseCode(String value) { this.WarehouseCode = value; return this; } public Boolean isInTransit() { return InTransit; } public IN_Logical setInTransit(Boolean value) { this.InTransit = value; return this; } public Boolean isDefaultInTransit() { return DefaultInTransit; } public IN_Logical setDefaultInTransit(Boolean value) { this.DefaultInTransit = value; return this; } public String getInRegionRecID() { return IN_Region_RecID; } public IN_Logical setInRegionRecID(String value) { this.IN_Region_RecID = value; return this; } public Integer getItemNo() { return ItemNo; } public IN_Logical setItemNo(Integer value) { this.ItemNo = value; return this; } public ArrayList getRowHash() { return RowHash; } public IN_Logical setRowHash(ArrayList value) { this.RowHash = value; return this; } public Integer getColour() { return Colour; } public IN_Logical setColour(Integer value) { this.Colour = value; return this; } } public static class PurchaseOrder { public String PurchaseOrderID = null; public String CreditorRecID = null; public String CreditorAccountNo = null; public String CreditorName = null; public String CreditorWarehouseRecID = null; public String CreditorWarehouseDescription = null; public String LogicalWarehouseResidingInRecID = null; public String LogicalWarehouseResidingInDescription = null; public String PhysicalWarehouseResidingInRecID = null; public String PhysicalWarehouseResidingInDescription = null; public String LogicalWarehouseOrderingFromRecID = null; public String LogicalWarehouseOrderingFromDescription = null; public String PhysicalWarehouseOrderingFromRecID = null; public String PhysicalWarehouseOrderingFromDescription = null; public String InTransitLogicalWarehouseRecID = null; public String InTransitLogicalWarehouseDescription = null; public String InTransitPhysicalWarehouseRecID = null; public String InTransitPhysicalWarehouseDescription = null; public String OrderNo = null; public Date OrderDate = null; public String Attention = null; public String ContactBy = null; public String StaffID = null; public String StaffUserName = null; public String StaffTitle = null; public String StaffFirstName = null; public String StaffSurname = null; public Status OrderStatus = null; public PurchaseOrderType OrderType = null; public SupplierType OrderSupplierType = null; public BigDecimal TaxTotal = null; public Boolean UseInTransit = null; public String Reference = null; public BigDecimal TotalGross = null; public BigDecimal TotalNet = null; public BigDecimal TotalFx = null; public ArrayList Notes = null; public ArrayList Documents = null; public ArrayList CustomFieldValues = null; public ArrayList Lines = null; public String ShippingAddressAddressLine1 = null; public String ShippingAddressAddressLine2 = null; public String ShippingAddressAddressLine3 = null; public String ShippingAddressAddressLine4 = null; public String ShippingAddressAddressLine5 = null; public String ShippingAddressCountry = null; public String ShippingAddressPostCode = null; public String ShippingAddressContactName = null; public String ShippingAddressPhone = null; public String ShippingAddressFax = null; public String ShippingAddressSpare1 = null; public String ShippingAddressSpare2 = null; public String ShippingAddressSpare3 = null; public String ShippingAddressSpare4 = null; public String ShippingAddressSpare5 = null; public BigDecimal Freight = null; public BigDecimal Duty = null; public BigDecimal Insurance = null; public String FreightTaxID = null; public BigDecimal FreightTaxRate = null; public BigDecimal FreightTaxAmount = null; public String DutyTaxID = null; public BigDecimal DutyTaxRate = null; public BigDecimal DutyTaxAmount = null; public String InsuranceTaxID = null; public BigDecimal InsuranceTaxRate = null; public BigDecimal InsuranceTaxAmount = null; public BigDecimal FreightInc = null; public BigDecimal DutyInc = null; public BigDecimal InsuranceInc = null; public String getPurchaseOrderID() { return PurchaseOrderID; } public PurchaseOrder setPurchaseOrderID(String value) { this.PurchaseOrderID = value; return this; } public String getCreditorRecID() { return CreditorRecID; } public PurchaseOrder setCreditorRecID(String value) { this.CreditorRecID = value; return this; } public String getCreditorAccountNo() { return CreditorAccountNo; } public PurchaseOrder setCreditorAccountNo(String value) { this.CreditorAccountNo = value; return this; } public String getCreditorName() { return CreditorName; } public PurchaseOrder setCreditorName(String value) { this.CreditorName = value; return this; } public String getCreditorWarehouseRecID() { return CreditorWarehouseRecID; } public PurchaseOrder setCreditorWarehouseRecID(String value) { this.CreditorWarehouseRecID = value; return this; } public String getCreditorWarehouseDescription() { return CreditorWarehouseDescription; } public PurchaseOrder setCreditorWarehouseDescription(String value) { this.CreditorWarehouseDescription = value; return this; } public String getLogicalWarehouseResidingInRecID() { return LogicalWarehouseResidingInRecID; } public PurchaseOrder setLogicalWarehouseResidingInRecID(String value) { this.LogicalWarehouseResidingInRecID = value; return this; } public String getLogicalWarehouseResidingInDescription() { return LogicalWarehouseResidingInDescription; } public PurchaseOrder setLogicalWarehouseResidingInDescription(String value) { this.LogicalWarehouseResidingInDescription = value; return this; } public String getPhysicalWarehouseResidingInRecID() { return PhysicalWarehouseResidingInRecID; } public PurchaseOrder setPhysicalWarehouseResidingInRecID(String value) { this.PhysicalWarehouseResidingInRecID = value; return this; } public String getPhysicalWarehouseResidingInDescription() { return PhysicalWarehouseResidingInDescription; } public PurchaseOrder setPhysicalWarehouseResidingInDescription(String value) { this.PhysicalWarehouseResidingInDescription = value; return this; } public String getLogicalWarehouseOrderingFromRecID() { return LogicalWarehouseOrderingFromRecID; } public PurchaseOrder setLogicalWarehouseOrderingFromRecID(String value) { this.LogicalWarehouseOrderingFromRecID = value; return this; } public String getLogicalWarehouseOrderingFromDescription() { return LogicalWarehouseOrderingFromDescription; } public PurchaseOrder setLogicalWarehouseOrderingFromDescription(String value) { this.LogicalWarehouseOrderingFromDescription = value; return this; } public String getPhysicalWarehouseOrderingFromRecID() { return PhysicalWarehouseOrderingFromRecID; } public PurchaseOrder setPhysicalWarehouseOrderingFromRecID(String value) { this.PhysicalWarehouseOrderingFromRecID = value; return this; } public String getPhysicalWarehouseOrderingFromDescription() { return PhysicalWarehouseOrderingFromDescription; } public PurchaseOrder setPhysicalWarehouseOrderingFromDescription(String value) { this.PhysicalWarehouseOrderingFromDescription = value; return this; } public String getInTransitLogicalWarehouseRecID() { return InTransitLogicalWarehouseRecID; } public PurchaseOrder setInTransitLogicalWarehouseRecID(String value) { this.InTransitLogicalWarehouseRecID = value; return this; } public String getInTransitLogicalWarehouseDescription() { return InTransitLogicalWarehouseDescription; } public PurchaseOrder setInTransitLogicalWarehouseDescription(String value) { this.InTransitLogicalWarehouseDescription = value; return this; } public String getInTransitPhysicalWarehouseRecID() { return InTransitPhysicalWarehouseRecID; } public PurchaseOrder setInTransitPhysicalWarehouseRecID(String value) { this.InTransitPhysicalWarehouseRecID = value; return this; } public String getInTransitPhysicalWarehouseDescription() { return InTransitPhysicalWarehouseDescription; } public PurchaseOrder setInTransitPhysicalWarehouseDescription(String value) { this.InTransitPhysicalWarehouseDescription = value; return this; } public String getOrderNo() { return OrderNo; } public PurchaseOrder setOrderNo(String value) { this.OrderNo = value; return this; } public Date getOrderDate() { return OrderDate; } public PurchaseOrder setOrderDate(Date value) { this.OrderDate = value; return this; } public String getAttention() { return Attention; } public PurchaseOrder setAttention(String value) { this.Attention = value; return this; } public String getContactBy() { return ContactBy; } public PurchaseOrder setContactBy(String value) { this.ContactBy = value; return this; } public String getStaffID() { return StaffID; } public PurchaseOrder setStaffID(String value) { this.StaffID = value; return this; } public String getStaffUserName() { return StaffUserName; } public PurchaseOrder setStaffUserName(String value) { this.StaffUserName = value; return this; } public String getStaffTitle() { return StaffTitle; } public PurchaseOrder setStaffTitle(String value) { this.StaffTitle = value; return this; } public String getStaffFirstName() { return StaffFirstName; } public PurchaseOrder setStaffFirstName(String value) { this.StaffFirstName = value; return this; } public String getStaffSurname() { return StaffSurname; } public PurchaseOrder setStaffSurname(String value) { this.StaffSurname = value; return this; } public Status getOrderStatus() { return OrderStatus; } public PurchaseOrder setOrderStatus(Status value) { this.OrderStatus = value; return this; } public PurchaseOrderType getOrderType() { return OrderType; } public PurchaseOrder setOrderType(PurchaseOrderType value) { this.OrderType = value; return this; } public SupplierType getOrderSupplierType() { return OrderSupplierType; } public PurchaseOrder setOrderSupplierType(SupplierType value) { this.OrderSupplierType = value; return this; } public BigDecimal getTaxTotal() { return TaxTotal; } public PurchaseOrder setTaxTotal(BigDecimal value) { this.TaxTotal = value; return this; } public Boolean isUseInTransit() { return UseInTransit; } public PurchaseOrder setUseInTransit(Boolean value) { this.UseInTransit = value; return this; } public String getReference() { return Reference; } public PurchaseOrder setReference(String value) { this.Reference = value; return this; } public BigDecimal getTotalGross() { return TotalGross; } public PurchaseOrder setTotalGross(BigDecimal value) { this.TotalGross = value; return this; } public BigDecimal getTotalNet() { return TotalNet; } public PurchaseOrder setTotalNet(BigDecimal value) { this.TotalNet = value; return this; } public BigDecimal getTotalFx() { return TotalFx; } public PurchaseOrder setTotalFx(BigDecimal value) { this.TotalFx = value; return this; } public ArrayList getNotes() { return Notes; } public PurchaseOrder setNotes(ArrayList value) { this.Notes = value; return this; } public ArrayList getDocuments() { return Documents; } public PurchaseOrder setDocuments(ArrayList value) { this.Documents = value; return this; } public ArrayList getCustomFieldValues() { return CustomFieldValues; } public PurchaseOrder setCustomFieldValues(ArrayList value) { this.CustomFieldValues = value; return this; } public ArrayList getLines() { return Lines; } public PurchaseOrder setLines(ArrayList value) { this.Lines = value; return this; } public String getShippingAddressAddressLine1() { return ShippingAddressAddressLine1; } public PurchaseOrder setShippingAddressAddressLine1(String value) { this.ShippingAddressAddressLine1 = value; return this; } public String getShippingAddressAddressLine2() { return ShippingAddressAddressLine2; } public PurchaseOrder setShippingAddressAddressLine2(String value) { this.ShippingAddressAddressLine2 = value; return this; } public String getShippingAddressAddressLine3() { return ShippingAddressAddressLine3; } public PurchaseOrder setShippingAddressAddressLine3(String value) { this.ShippingAddressAddressLine3 = value; return this; } public String getShippingAddressAddressLine4() { return ShippingAddressAddressLine4; } public PurchaseOrder setShippingAddressAddressLine4(String value) { this.ShippingAddressAddressLine4 = value; return this; } public String getShippingAddressAddressLine5() { return ShippingAddressAddressLine5; } public PurchaseOrder setShippingAddressAddressLine5(String value) { this.ShippingAddressAddressLine5 = value; return this; } public String getShippingAddressCountry() { return ShippingAddressCountry; } public PurchaseOrder setShippingAddressCountry(String value) { this.ShippingAddressCountry = value; return this; } public String getShippingAddressPostCode() { return ShippingAddressPostCode; } public PurchaseOrder setShippingAddressPostCode(String value) { this.ShippingAddressPostCode = value; return this; } public String getShippingAddressContactName() { return ShippingAddressContactName; } public PurchaseOrder setShippingAddressContactName(String value) { this.ShippingAddressContactName = value; return this; } public String getShippingAddressPhone() { return ShippingAddressPhone; } public PurchaseOrder setShippingAddressPhone(String value) { this.ShippingAddressPhone = value; return this; } public String getShippingAddressFax() { return ShippingAddressFax; } public PurchaseOrder setShippingAddressFax(String value) { this.ShippingAddressFax = value; return this; } public String getShippingAddressSpare1() { return ShippingAddressSpare1; } public PurchaseOrder setShippingAddressSpare1(String value) { this.ShippingAddressSpare1 = value; return this; } public String getShippingAddressSpare2() { return ShippingAddressSpare2; } public PurchaseOrder setShippingAddressSpare2(String value) { this.ShippingAddressSpare2 = value; return this; } public String getShippingAddressSpare3() { return ShippingAddressSpare3; } public PurchaseOrder setShippingAddressSpare3(String value) { this.ShippingAddressSpare3 = value; return this; } public String getShippingAddressSpare4() { return ShippingAddressSpare4; } public PurchaseOrder setShippingAddressSpare4(String value) { this.ShippingAddressSpare4 = value; return this; } public String getShippingAddressSpare5() { return ShippingAddressSpare5; } public PurchaseOrder setShippingAddressSpare5(String value) { this.ShippingAddressSpare5 = value; return this; } public BigDecimal getFreight() { return Freight; } public PurchaseOrder setFreight(BigDecimal value) { this.Freight = value; return this; } public BigDecimal getDuty() { return Duty; } public PurchaseOrder setDuty(BigDecimal value) { this.Duty = value; return this; } public BigDecimal getInsurance() { return Insurance; } public PurchaseOrder setInsurance(BigDecimal value) { this.Insurance = value; return this; } public String getFreightTaxID() { return FreightTaxID; } public PurchaseOrder setFreightTaxID(String value) { this.FreightTaxID = value; return this; } public BigDecimal getFreightTaxRate() { return FreightTaxRate; } public PurchaseOrder setFreightTaxRate(BigDecimal value) { this.FreightTaxRate = value; return this; } public BigDecimal getFreightTaxAmount() { return FreightTaxAmount; } public PurchaseOrder setFreightTaxAmount(BigDecimal value) { this.FreightTaxAmount = value; return this; } public String getDutyTaxID() { return DutyTaxID; } public PurchaseOrder setDutyTaxID(String value) { this.DutyTaxID = value; return this; } public BigDecimal getDutyTaxRate() { return DutyTaxRate; } public PurchaseOrder setDutyTaxRate(BigDecimal value) { this.DutyTaxRate = value; return this; } public BigDecimal getDutyTaxAmount() { return DutyTaxAmount; } public PurchaseOrder setDutyTaxAmount(BigDecimal value) { this.DutyTaxAmount = value; return this; } public String getInsuranceTaxID() { return InsuranceTaxID; } public PurchaseOrder setInsuranceTaxID(String value) { this.InsuranceTaxID = value; return this; } public BigDecimal getInsuranceTaxRate() { return InsuranceTaxRate; } public PurchaseOrder setInsuranceTaxRate(BigDecimal value) { this.InsuranceTaxRate = value; return this; } public BigDecimal getInsuranceTaxAmount() { return InsuranceTaxAmount; } public PurchaseOrder setInsuranceTaxAmount(BigDecimal value) { this.InsuranceTaxAmount = value; return this; } public BigDecimal getFreightInc() { return FreightInc; } public PurchaseOrder setFreightInc(BigDecimal value) { this.FreightInc = value; return this; } public BigDecimal getDutyInc() { return DutyInc; } public PurchaseOrder setDutyInc(BigDecimal value) { this.DutyInc = value; return this; } public BigDecimal getInsuranceInc() { return InsuranceInc; } public PurchaseOrder setInsuranceInc(BigDecimal value) { this.InsuranceInc = value; return this; } } public static class PurchaseOrderLine { public String PurchaseOrderLineID = null; public Integer ItemNo = null; public String InventoryID = null; public Boolean IsPhysical = null; public String PartNo = null; public String Description = null; public Integer QuantityDecimalPlaces = null; public Boolean MakeSupplierTheNewDefault = null; public OrderLineType PurchaseOrderLineType = null; public BigDecimal Quantity = null; public BigDecimal IncPrice = null; public BigDecimal TaxAmount = null; public BigDecimal LineTotal = null; public BigDecimal LineTotalExTax = null; public BigDecimal FxTotal = null; public BigDecimal CurrencyRateUsed = null; public Integer FXDecimalPlaces = null; public Integer HomeCurrencyDecimalPlaces = null; public Date DeliveryDate = null; public BigDecimal Delivered = null; public String HistoryText_Comment = null; public String JobCostingStageRecID = null; public String JobCostingStageNo = null; public String JobCostingStageName = null; public String JobCostingStageClassificationRecID = null; public String JobCostingStageClassificationDescription = null; public String JobCostingCostCentreRecID = null; public String JobCostingCostCentreNo = null; public String JobCostingCostCentreName = null; public String JobCostingJobRecID = null; public String JobCostingJobNo = null; public String JobCostingJobDescription = null; public String IN_OnBackOrder_OrdersOnBackID = null; public BigDecimal IN_OnBackOrder_Quantity = null; public BigDecimal IN_OnBackOrder_EstBOValue = null; public Date IN_OnBackOrder_LastSavedDateTime = null; public String InvoiceLineID = null; public BigDecimal UserDefinedFloat1 = null; public BigDecimal UserDefinedFloat2 = null; public BigDecimal UserDefinedFloat3 = null; public Date UserDefinedDate1 = null; public Date UserDefinedDate2 = null; public Date UserDefinedDate3 = null; public String UserDefinedString1 = null; public String UserDefinedString2 = null; public String UserDefinedString3 = null; public String PurchasingClassificationRecID = null; public String PurchasingClassificationDescription = null; public String PurchasingClassificationLedgerAccountRecID = null; public String PurchasingClassificationLedgerAccountAccountNo = null; public String PurchasingClassificationLedgerAccountDescription = null; public String ServiceManagerTaskRecID = null; public Integer ServiceManagerTaskNo = null; public String ServiceManagerTaskDescription = null; public String ServiceManagerJobRecID = null; public String ServiceManagerJobNo = null; public String ServiceManagerJobDescription = null; public String IN_Creditor_RecID = null; public String SupplierPartNo = null; public String IN_SupplierWarehouse_RecID = null; public BigDecimal OrderUnits = null; public Integer DeliveryDays = null; public BigDecimal FXCost = null; public BigDecimal Cost = null; public BigDecimal CostOriginal = null; public String Units = null; public String TaxRateRecID = null; public String TaxRateDescription = null; public BigDecimal TaxRate = null; public Integer TaxRateBASCode = null; public String InventoryExpectedLiabilityLedgerAccountRecID = null; public String InventoryExpectedLiabilityLedgerAccountAccountNo = null; public String InventoryExpectedLiabilityLedgerAccountDescription = null; public String InventoryExpectedAssetLedgerAccountRecID = null; public String InventoryExpectedAssetLedgerAccountAccountNo = null; public String InventoryExpectedAssetLedgerAccountDescription = null; public String ClassificationID = null; public String ClassificationDescription = null; public ArrayList CustomFieldValues = null; public String getPurchaseOrderLineID() { return PurchaseOrderLineID; } public PurchaseOrderLine setPurchaseOrderLineID(String value) { this.PurchaseOrderLineID = value; return this; } public Integer getItemNo() { return ItemNo; } public PurchaseOrderLine setItemNo(Integer value) { this.ItemNo = value; return this; } public String getInventoryID() { return InventoryID; } public PurchaseOrderLine setInventoryID(String value) { this.InventoryID = value; return this; } public Boolean getIsPhysical() { return IsPhysical; } public PurchaseOrderLine setIsPhysical(Boolean value) { this.IsPhysical = value; return this; } public String getPartNo() { return PartNo; } public PurchaseOrderLine setPartNo(String value) { this.PartNo = value; return this; } public String getDescription() { return Description; } public PurchaseOrderLine setDescription(String value) { this.Description = value; return this; } public Integer getQuantityDecimalPlaces() { return QuantityDecimalPlaces; } public PurchaseOrderLine setQuantityDecimalPlaces(Integer value) { this.QuantityDecimalPlaces = value; return this; } public Boolean isMakeSupplierTheNewDefault() { return MakeSupplierTheNewDefault; } public PurchaseOrderLine setMakeSupplierTheNewDefault(Boolean value) { this.MakeSupplierTheNewDefault = value; return this; } public OrderLineType getPurchaseOrderLineType() { return PurchaseOrderLineType; } public PurchaseOrderLine setPurchaseOrderLineType(OrderLineType value) { this.PurchaseOrderLineType = value; return this; } public BigDecimal getQuantity() { return Quantity; } public PurchaseOrderLine setQuantity(BigDecimal value) { this.Quantity = value; return this; } public BigDecimal getIncPrice() { return IncPrice; } public PurchaseOrderLine setIncPrice(BigDecimal value) { this.IncPrice = value; return this; } public BigDecimal getTaxAmount() { return TaxAmount; } public PurchaseOrderLine setTaxAmount(BigDecimal value) { this.TaxAmount = value; return this; } public BigDecimal getLineTotal() { return LineTotal; } public PurchaseOrderLine setLineTotal(BigDecimal value) { this.LineTotal = value; return this; } public BigDecimal getLineTotalExTax() { return LineTotalExTax; } public PurchaseOrderLine setLineTotalExTax(BigDecimal value) { this.LineTotalExTax = value; return this; } public BigDecimal getFxTotal() { return FxTotal; } public PurchaseOrderLine setFxTotal(BigDecimal value) { this.FxTotal = value; return this; } public BigDecimal getCurrencyRateUsed() { return CurrencyRateUsed; } public PurchaseOrderLine setCurrencyRateUsed(BigDecimal value) { this.CurrencyRateUsed = value; return this; } public Integer getFxDecimalPlaces() { return FXDecimalPlaces; } public PurchaseOrderLine setFxDecimalPlaces(Integer value) { this.FXDecimalPlaces = value; return this; } public Integer getHomeCurrencyDecimalPlaces() { return HomeCurrencyDecimalPlaces; } public PurchaseOrderLine setHomeCurrencyDecimalPlaces(Integer value) { this.HomeCurrencyDecimalPlaces = value; return this; } public Date getDeliveryDate() { return DeliveryDate; } public PurchaseOrderLine setDeliveryDate(Date value) { this.DeliveryDate = value; return this; } public BigDecimal getDelivered() { return Delivered; } public PurchaseOrderLine setDelivered(BigDecimal value) { this.Delivered = value; return this; } public String getHistoryTextComment() { return HistoryText_Comment; } public PurchaseOrderLine setHistoryTextComment(String value) { this.HistoryText_Comment = value; return this; } public String getJobCostingStageRecID() { return JobCostingStageRecID; } public PurchaseOrderLine setJobCostingStageRecID(String value) { this.JobCostingStageRecID = value; return this; } public String getJobCostingStageNo() { return JobCostingStageNo; } public PurchaseOrderLine setJobCostingStageNo(String value) { this.JobCostingStageNo = value; return this; } public String getJobCostingStageName() { return JobCostingStageName; } public PurchaseOrderLine setJobCostingStageName(String value) { this.JobCostingStageName = value; return this; } public String getJobCostingStageClassificationRecID() { return JobCostingStageClassificationRecID; } public PurchaseOrderLine setJobCostingStageClassificationRecID(String value) { this.JobCostingStageClassificationRecID = value; return this; } public String getJobCostingStageClassificationDescription() { return JobCostingStageClassificationDescription; } public PurchaseOrderLine setJobCostingStageClassificationDescription(String value) { this.JobCostingStageClassificationDescription = value; return this; } public String getJobCostingCostCentreRecID() { return JobCostingCostCentreRecID; } public PurchaseOrderLine setJobCostingCostCentreRecID(String value) { this.JobCostingCostCentreRecID = value; return this; } public String getJobCostingCostCentreNo() { return JobCostingCostCentreNo; } public PurchaseOrderLine setJobCostingCostCentreNo(String value) { this.JobCostingCostCentreNo = value; return this; } public String getJobCostingCostCentreName() { return JobCostingCostCentreName; } public PurchaseOrderLine setJobCostingCostCentreName(String value) { this.JobCostingCostCentreName = value; return this; } public String getJobCostingJobRecID() { return JobCostingJobRecID; } public PurchaseOrderLine setJobCostingJobRecID(String value) { this.JobCostingJobRecID = value; return this; } public String getJobCostingJobNo() { return JobCostingJobNo; } public PurchaseOrderLine setJobCostingJobNo(String value) { this.JobCostingJobNo = value; return this; } public String getJobCostingJobDescription() { return JobCostingJobDescription; } public PurchaseOrderLine setJobCostingJobDescription(String value) { this.JobCostingJobDescription = value; return this; } public String getInOnBackOrderOrdersOnBackID() { return IN_OnBackOrder_OrdersOnBackID; } public PurchaseOrderLine setInOnBackOrderOrdersOnBackID(String value) { this.IN_OnBackOrder_OrdersOnBackID = value; return this; } public BigDecimal getInOnBackOrderQuantity() { return IN_OnBackOrder_Quantity; } public PurchaseOrderLine setInOnBackOrderQuantity(BigDecimal value) { this.IN_OnBackOrder_Quantity = value; return this; } public BigDecimal getInOnBackOrderEstBOValue() { return IN_OnBackOrder_EstBOValue; } public PurchaseOrderLine setInOnBackOrderEstBOValue(BigDecimal value) { this.IN_OnBackOrder_EstBOValue = value; return this; } public Date getInOnBackOrderLastSavedDateTime() { return IN_OnBackOrder_LastSavedDateTime; } public PurchaseOrderLine setInOnBackOrderLastSavedDateTime(Date value) { this.IN_OnBackOrder_LastSavedDateTime = value; return this; } public String getInvoiceLineID() { return InvoiceLineID; } public PurchaseOrderLine setInvoiceLineID(String value) { this.InvoiceLineID = value; return this; } public BigDecimal getUserDefinedFloat1() { return UserDefinedFloat1; } public PurchaseOrderLine setUserDefinedFloat1(BigDecimal value) { this.UserDefinedFloat1 = value; return this; } public BigDecimal getUserDefinedFloat2() { return UserDefinedFloat2; } public PurchaseOrderLine setUserDefinedFloat2(BigDecimal value) { this.UserDefinedFloat2 = value; return this; } public BigDecimal getUserDefinedFloat3() { return UserDefinedFloat3; } public PurchaseOrderLine setUserDefinedFloat3(BigDecimal value) { this.UserDefinedFloat3 = value; return this; } public Date getUserDefinedDate1() { return UserDefinedDate1; } public PurchaseOrderLine setUserDefinedDate1(Date value) { this.UserDefinedDate1 = value; return this; } public Date getUserDefinedDate2() { return UserDefinedDate2; } public PurchaseOrderLine setUserDefinedDate2(Date value) { this.UserDefinedDate2 = value; return this; } public Date getUserDefinedDate3() { return UserDefinedDate3; } public PurchaseOrderLine setUserDefinedDate3(Date value) { this.UserDefinedDate3 = value; return this; } public String getUserDefinedString1() { return UserDefinedString1; } public PurchaseOrderLine setUserDefinedString1(String value) { this.UserDefinedString1 = value; return this; } public String getUserDefinedString2() { return UserDefinedString2; } public PurchaseOrderLine setUserDefinedString2(String value) { this.UserDefinedString2 = value; return this; } public String getUserDefinedString3() { return UserDefinedString3; } public PurchaseOrderLine setUserDefinedString3(String value) { this.UserDefinedString3 = value; return this; } public String getPurchasingClassificationRecID() { return PurchasingClassificationRecID; } public PurchaseOrderLine setPurchasingClassificationRecID(String value) { this.PurchasingClassificationRecID = value; return this; } public String getPurchasingClassificationDescription() { return PurchasingClassificationDescription; } public PurchaseOrderLine setPurchasingClassificationDescription(String value) { this.PurchasingClassificationDescription = value; return this; } public String getPurchasingClassificationLedgerAccountRecID() { return PurchasingClassificationLedgerAccountRecID; } public PurchaseOrderLine setPurchasingClassificationLedgerAccountRecID(String value) { this.PurchasingClassificationLedgerAccountRecID = value; return this; } public String getPurchasingClassificationLedgerAccountAccountNo() { return PurchasingClassificationLedgerAccountAccountNo; } public PurchaseOrderLine setPurchasingClassificationLedgerAccountAccountNo(String value) { this.PurchasingClassificationLedgerAccountAccountNo = value; return this; } public String getPurchasingClassificationLedgerAccountDescription() { return PurchasingClassificationLedgerAccountDescription; } public PurchaseOrderLine setPurchasingClassificationLedgerAccountDescription(String value) { this.PurchasingClassificationLedgerAccountDescription = value; return this; } public String getServiceManagerTaskRecID() { return ServiceManagerTaskRecID; } public PurchaseOrderLine setServiceManagerTaskRecID(String value) { this.ServiceManagerTaskRecID = value; return this; } public Integer getServiceManagerTaskNo() { return ServiceManagerTaskNo; } public PurchaseOrderLine setServiceManagerTaskNo(Integer value) { this.ServiceManagerTaskNo = value; return this; } public String getServiceManagerTaskDescription() { return ServiceManagerTaskDescription; } public PurchaseOrderLine setServiceManagerTaskDescription(String value) { this.ServiceManagerTaskDescription = value; return this; } public String getServiceManagerJobRecID() { return ServiceManagerJobRecID; } public PurchaseOrderLine setServiceManagerJobRecID(String value) { this.ServiceManagerJobRecID = value; return this; } public String getServiceManagerJobNo() { return ServiceManagerJobNo; } public PurchaseOrderLine setServiceManagerJobNo(String value) { this.ServiceManagerJobNo = value; return this; } public String getServiceManagerJobDescription() { return ServiceManagerJobDescription; } public PurchaseOrderLine setServiceManagerJobDescription(String value) { this.ServiceManagerJobDescription = value; return this; } public String getInCreditorRecID() { return IN_Creditor_RecID; } public PurchaseOrderLine setInCreditorRecID(String value) { this.IN_Creditor_RecID = value; return this; } public String getSupplierPartNo() { return SupplierPartNo; } public PurchaseOrderLine setSupplierPartNo(String value) { this.SupplierPartNo = value; return this; } public String getInSupplierWarehouseRecID() { return IN_SupplierWarehouse_RecID; } public PurchaseOrderLine setInSupplierWarehouseRecID(String value) { this.IN_SupplierWarehouse_RecID = value; return this; } public BigDecimal getOrderUnits() { return OrderUnits; } public PurchaseOrderLine setOrderUnits(BigDecimal value) { this.OrderUnits = value; return this; } public Integer getDeliveryDays() { return DeliveryDays; } public PurchaseOrderLine setDeliveryDays(Integer value) { this.DeliveryDays = value; return this; } public BigDecimal getFxCost() { return FXCost; } public PurchaseOrderLine setFxCost(BigDecimal value) { this.FXCost = value; return this; } public BigDecimal getCost() { return Cost; } public PurchaseOrderLine setCost(BigDecimal value) { this.Cost = value; return this; } public BigDecimal getCostOriginal() { return CostOriginal; } public PurchaseOrderLine setCostOriginal(BigDecimal value) { this.CostOriginal = value; return this; } public String getUnits() { return Units; } public PurchaseOrderLine setUnits(String value) { this.Units = value; return this; } public String getTaxRateRecID() { return TaxRateRecID; } public PurchaseOrderLine setTaxRateRecID(String value) { this.TaxRateRecID = value; return this; } public String getTaxRateDescription() { return TaxRateDescription; } public PurchaseOrderLine setTaxRateDescription(String value) { this.TaxRateDescription = value; return this; } public BigDecimal getTaxRate() { return TaxRate; } public PurchaseOrderLine setTaxRate(BigDecimal value) { this.TaxRate = value; return this; } public Integer getTaxRateBASCode() { return TaxRateBASCode; } public PurchaseOrderLine setTaxRateBASCode(Integer value) { this.TaxRateBASCode = value; return this; } public String getInventoryExpectedLiabilityLedgerAccountRecID() { return InventoryExpectedLiabilityLedgerAccountRecID; } public PurchaseOrderLine setInventoryExpectedLiabilityLedgerAccountRecID(String value) { this.InventoryExpectedLiabilityLedgerAccountRecID = value; return this; } public String getInventoryExpectedLiabilityLedgerAccountAccountNo() { return InventoryExpectedLiabilityLedgerAccountAccountNo; } public PurchaseOrderLine setInventoryExpectedLiabilityLedgerAccountAccountNo(String value) { this.InventoryExpectedLiabilityLedgerAccountAccountNo = value; return this; } public String getInventoryExpectedLiabilityLedgerAccountDescription() { return InventoryExpectedLiabilityLedgerAccountDescription; } public PurchaseOrderLine setInventoryExpectedLiabilityLedgerAccountDescription(String value) { this.InventoryExpectedLiabilityLedgerAccountDescription = value; return this; } public String getInventoryExpectedAssetLedgerAccountRecID() { return InventoryExpectedAssetLedgerAccountRecID; } public PurchaseOrderLine setInventoryExpectedAssetLedgerAccountRecID(String value) { this.InventoryExpectedAssetLedgerAccountRecID = value; return this; } public String getInventoryExpectedAssetLedgerAccountAccountNo() { return InventoryExpectedAssetLedgerAccountAccountNo; } public PurchaseOrderLine setInventoryExpectedAssetLedgerAccountAccountNo(String value) { this.InventoryExpectedAssetLedgerAccountAccountNo = value; return this; } public String getInventoryExpectedAssetLedgerAccountDescription() { return InventoryExpectedAssetLedgerAccountDescription; } public PurchaseOrderLine setInventoryExpectedAssetLedgerAccountDescription(String value) { this.InventoryExpectedAssetLedgerAccountDescription = value; return this; } public String getClassificationID() { return ClassificationID; } public PurchaseOrderLine setClassificationID(String value) { this.ClassificationID = value; return this; } public String getClassificationDescription() { return ClassificationDescription; } public PurchaseOrderLine setClassificationDescription(String value) { this.ClassificationDescription = value; return this; } public ArrayList getCustomFieldValues() { return CustomFieldValues; } public PurchaseOrderLine setCustomFieldValues(ArrayList value) { this.CustomFieldValues = value; return this; } } public static class PurchaseInvoice { public String PurchaseInvoiceID = null; public String CreditorID = null; public String CreditorAccountNo = null; public String CreditorName = null; public Date LastSavedDateTime = null; public String InvoiceNo = null; public Date InvoiceDate = null; public Statuses Status = null; public BigDecimal Freight = null; public BigDecimal Duty = null; public BigDecimal Insurance = null; public BigDecimal TaxTotal = null; public String FreightTaxID = null; public BigDecimal FreightTaxRate = null; public BigDecimal FreightTaxAmount = null; public String DutyTaxID = null; public BigDecimal DutyTaxRate = null; public BigDecimal DutyTaxAmount = null; public String InsuranceTaxID = null; public BigDecimal InsuranceTaxRate = null; public BigDecimal InsuranceTaxAmount = null; public ArrayList Lines = null; public ArrayList GoodsReceivedNotes = null; public BigDecimal TotalGross = null; public BigDecimal TotalNet = null; public BigDecimal TotalFx = null; public BigDecimal FreightInc = null; public BigDecimal DutyInc = null; public BigDecimal InsuranceInc = null; public Integer HomeDecimalPlaces = null; public Integer FXDecimalPlaces = null; public BigDecimal TaxAdjustment = null; public Date DueDate = null; public String CurrencyID = null; public BigDecimal TotalNetOnInventoryReceivals = null; public ArrayList CustomFieldValues = null; public ArrayList Notes = null; public ArrayList Documents = null; public String LogicalWarehouseID = null; public String LogicalWarehouseDescription = null; public String PhysicalWarehouseID = null; public String PhysicalWarehouseDescription = null; public String getPurchaseInvoiceID() { return PurchaseInvoiceID; } public PurchaseInvoice setPurchaseInvoiceID(String value) { this.PurchaseInvoiceID = value; return this; } public String getCreditorID() { return CreditorID; } public PurchaseInvoice setCreditorID(String value) { this.CreditorID = value; return this; } public String getCreditorAccountNo() { return CreditorAccountNo; } public PurchaseInvoice setCreditorAccountNo(String value) { this.CreditorAccountNo = value; return this; } public String getCreditorName() { return CreditorName; } public PurchaseInvoice setCreditorName(String value) { this.CreditorName = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public PurchaseInvoice setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public String getInvoiceNo() { return InvoiceNo; } public PurchaseInvoice setInvoiceNo(String value) { this.InvoiceNo = value; return this; } public Date getInvoiceDate() { return InvoiceDate; } public PurchaseInvoice setInvoiceDate(Date value) { this.InvoiceDate = value; return this; } public Statuses getStatus() { return Status; } public PurchaseInvoice setStatus(Statuses value) { this.Status = value; return this; } public BigDecimal getFreight() { return Freight; } public PurchaseInvoice setFreight(BigDecimal value) { this.Freight = value; return this; } public BigDecimal getDuty() { return Duty; } public PurchaseInvoice setDuty(BigDecimal value) { this.Duty = value; return this; } public BigDecimal getInsurance() { return Insurance; } public PurchaseInvoice setInsurance(BigDecimal value) { this.Insurance = value; return this; } public BigDecimal getTaxTotal() { return TaxTotal; } public PurchaseInvoice setTaxTotal(BigDecimal value) { this.TaxTotal = value; return this; } public String getFreightTaxID() { return FreightTaxID; } public PurchaseInvoice setFreightTaxID(String value) { this.FreightTaxID = value; return this; } public BigDecimal getFreightTaxRate() { return FreightTaxRate; } public PurchaseInvoice setFreightTaxRate(BigDecimal value) { this.FreightTaxRate = value; return this; } public BigDecimal getFreightTaxAmount() { return FreightTaxAmount; } public PurchaseInvoice setFreightTaxAmount(BigDecimal value) { this.FreightTaxAmount = value; return this; } public String getDutyTaxID() { return DutyTaxID; } public PurchaseInvoice setDutyTaxID(String value) { this.DutyTaxID = value; return this; } public BigDecimal getDutyTaxRate() { return DutyTaxRate; } public PurchaseInvoice setDutyTaxRate(BigDecimal value) { this.DutyTaxRate = value; return this; } public BigDecimal getDutyTaxAmount() { return DutyTaxAmount; } public PurchaseInvoice setDutyTaxAmount(BigDecimal value) { this.DutyTaxAmount = value; return this; } public String getInsuranceTaxID() { return InsuranceTaxID; } public PurchaseInvoice setInsuranceTaxID(String value) { this.InsuranceTaxID = value; return this; } public BigDecimal getInsuranceTaxRate() { return InsuranceTaxRate; } public PurchaseInvoice setInsuranceTaxRate(BigDecimal value) { this.InsuranceTaxRate = value; return this; } public BigDecimal getInsuranceTaxAmount() { return InsuranceTaxAmount; } public PurchaseInvoice setInsuranceTaxAmount(BigDecimal value) { this.InsuranceTaxAmount = value; return this; } public ArrayList getLines() { return Lines; } public PurchaseInvoice setLines(ArrayList value) { this.Lines = value; return this; } public ArrayList getGoodsReceivedNotes() { return GoodsReceivedNotes; } public PurchaseInvoice setGoodsReceivedNotes(ArrayList value) { this.GoodsReceivedNotes = value; return this; } public BigDecimal getTotalGross() { return TotalGross; } public PurchaseInvoice setTotalGross(BigDecimal value) { this.TotalGross = value; return this; } public BigDecimal getTotalNet() { return TotalNet; } public PurchaseInvoice setTotalNet(BigDecimal value) { this.TotalNet = value; return this; } public BigDecimal getTotalFx() { return TotalFx; } public PurchaseInvoice setTotalFx(BigDecimal value) { this.TotalFx = value; return this; } public BigDecimal getFreightInc() { return FreightInc; } public PurchaseInvoice setFreightInc(BigDecimal value) { this.FreightInc = value; return this; } public BigDecimal getDutyInc() { return DutyInc; } public PurchaseInvoice setDutyInc(BigDecimal value) { this.DutyInc = value; return this; } public BigDecimal getInsuranceInc() { return InsuranceInc; } public PurchaseInvoice setInsuranceInc(BigDecimal value) { this.InsuranceInc = value; return this; } public Integer getHomeDecimalPlaces() { return HomeDecimalPlaces; } public PurchaseInvoice setHomeDecimalPlaces(Integer value) { this.HomeDecimalPlaces = value; return this; } public Integer getFxDecimalPlaces() { return FXDecimalPlaces; } public PurchaseInvoice setFxDecimalPlaces(Integer value) { this.FXDecimalPlaces = value; return this; } public BigDecimal getTaxAdjustment() { return TaxAdjustment; } public PurchaseInvoice setTaxAdjustment(BigDecimal value) { this.TaxAdjustment = value; return this; } public Date getDueDate() { return DueDate; } public PurchaseInvoice setDueDate(Date value) { this.DueDate = value; return this; } public String getCurrencyID() { return CurrencyID; } public PurchaseInvoice setCurrencyID(String value) { this.CurrencyID = value; return this; } public BigDecimal getTotalNetOnInventoryReceivals() { return TotalNetOnInventoryReceivals; } public PurchaseInvoice setTotalNetOnInventoryReceivals(BigDecimal value) { this.TotalNetOnInventoryReceivals = value; return this; } public ArrayList getCustomFieldValues() { return CustomFieldValues; } public PurchaseInvoice setCustomFieldValues(ArrayList value) { this.CustomFieldValues = value; return this; } public ArrayList getNotes() { return Notes; } public PurchaseInvoice setNotes(ArrayList value) { this.Notes = value; return this; } public ArrayList getDocuments() { return Documents; } public PurchaseInvoice setDocuments(ArrayList value) { this.Documents = value; return this; } public String getLogicalWarehouseID() { return LogicalWarehouseID; } public PurchaseInvoice setLogicalWarehouseID(String value) { this.LogicalWarehouseID = value; return this; } public String getLogicalWarehouseDescription() { return LogicalWarehouseDescription; } public PurchaseInvoice setLogicalWarehouseDescription(String value) { this.LogicalWarehouseDescription = value; return this; } public String getPhysicalWarehouseID() { return PhysicalWarehouseID; } public PurchaseInvoice setPhysicalWarehouseID(String value) { this.PhysicalWarehouseID = value; return this; } public String getPhysicalWarehouseDescription() { return PhysicalWarehouseDescription; } public PurchaseInvoice setPhysicalWarehouseDescription(String value) { this.PhysicalWarehouseDescription = value; return this; } } public static class PurchaseInvoiceGoodsReceivedNoteInvoiced { public String GoodsReceivedNoteInvoicedID = null; public String GRNID = null; public String SlipNo = null; public Date ReceivedDate = null; public String FreightTaxID = null; public BigDecimal Freight = null; public BigDecimal FreightTaxAmount = null; public String DutyTaxID = null; public BigDecimal Duty = null; public BigDecimal DutyTaxAmount = null; public String InsuranceTaxID = null; public BigDecimal Insurance = null; public BigDecimal InsuranceTaxAmount = null; public Date RE_Main_LastSavedDateTime = null; public String getGoodsReceivedNoteInvoicedID() { return GoodsReceivedNoteInvoicedID; } public PurchaseInvoiceGoodsReceivedNoteInvoiced setGoodsReceivedNoteInvoicedID(String value) { this.GoodsReceivedNoteInvoicedID = value; return this; } public String getGrnid() { return GRNID; } public PurchaseInvoiceGoodsReceivedNoteInvoiced setGrnid(String value) { this.GRNID = value; return this; } public String getSlipNo() { return SlipNo; } public PurchaseInvoiceGoodsReceivedNoteInvoiced setSlipNo(String value) { this.SlipNo = value; return this; } public Date getReceivedDate() { return ReceivedDate; } public PurchaseInvoiceGoodsReceivedNoteInvoiced setReceivedDate(Date value) { this.ReceivedDate = value; return this; } public String getFreightTaxID() { return FreightTaxID; } public PurchaseInvoiceGoodsReceivedNoteInvoiced setFreightTaxID(String value) { this.FreightTaxID = value; return this; } public BigDecimal getFreight() { return Freight; } public PurchaseInvoiceGoodsReceivedNoteInvoiced setFreight(BigDecimal value) { this.Freight = value; return this; } public BigDecimal getFreightTaxAmount() { return FreightTaxAmount; } public PurchaseInvoiceGoodsReceivedNoteInvoiced setFreightTaxAmount(BigDecimal value) { this.FreightTaxAmount = value; return this; } public String getDutyTaxID() { return DutyTaxID; } public PurchaseInvoiceGoodsReceivedNoteInvoiced setDutyTaxID(String value) { this.DutyTaxID = value; return this; } public BigDecimal getDuty() { return Duty; } public PurchaseInvoiceGoodsReceivedNoteInvoiced setDuty(BigDecimal value) { this.Duty = value; return this; } public BigDecimal getDutyTaxAmount() { return DutyTaxAmount; } public PurchaseInvoiceGoodsReceivedNoteInvoiced setDutyTaxAmount(BigDecimal value) { this.DutyTaxAmount = value; return this; } public String getInsuranceTaxID() { return InsuranceTaxID; } public PurchaseInvoiceGoodsReceivedNoteInvoiced setInsuranceTaxID(String value) { this.InsuranceTaxID = value; return this; } public BigDecimal getInsurance() { return Insurance; } public PurchaseInvoiceGoodsReceivedNoteInvoiced setInsurance(BigDecimal value) { this.Insurance = value; return this; } public BigDecimal getInsuranceTaxAmount() { return InsuranceTaxAmount; } public PurchaseInvoiceGoodsReceivedNoteInvoiced setInsuranceTaxAmount(BigDecimal value) { this.InsuranceTaxAmount = value; return this; } public Date getReMainLastSavedDateTime() { return RE_Main_LastSavedDateTime; } public PurchaseInvoiceGoodsReceivedNoteInvoiced setReMainLastSavedDateTime(Date value) { this.RE_Main_LastSavedDateTime = value; return this; } } public static class PurchaseInvoiceLine { public String PurchaseInvoiceLineID = null; public BigDecimal Quantity = null; public String InventoryID = null; public String PartNo = null; public String Aux2 = null; public String Description = null; public String SupplierPartNo = null; public InvoiceLineType PurchaseInvoiceLineType = null; public Integer QuantityDecimalPlaces = null; public Date LastSavedDateTime = null; public BigDecimal TaxAmount = null; public String TaxID = null; public BigDecimal TaxRate = null; public BigDecimal Cost = null; public BigDecimal CurrencyRateUsed = null; public String PurchasingClassificationID = null; public String PurchasingClassificationDescription = null; public ArrayList LineDetails = null; public Boolean UseSerialNo = null; public BigDecimal FXCost = null; public Boolean PhysicalItem = null; public String InventoryExpectedLiability_LedgerAccountID = null; public String InventoryExpectedLiability_LedgerAccountNo = null; public String InventoryExpectedLiability_LedgerAccountDescription = null; public String InventoryExpectedAsset_LedgerAccountID = null; public String InventoryExpectedAsset_LedgerAccountNo = null; public String InventoryExpectedAsset_LedgerAccountDescription = null; public String InventoryDeliveredAsset_LedgerAccountID = null; public String InventoryDeliveredAsset_LedgerAccountNo = null; public String InventoryDeliveredAsset_LedgerAccountDescription = null; public String InventoryValue_LedgerAccountID = null; public String InventoryValue_LedgerAccountNo = null; public String InventoryValue_LedgerAccountDescription = null; public String InventoryDeliveredLiability_LedgerAccountID = null; public String InventoryDeliveredLiability_LedgerAccountNo = null; public String InventoryDeliveredLiability_LedgerAccountDescription = null; public String InventoryCreditorPurchases_LedgerAccountID = null; public String InventoryCreditorPurchases_LedgerAccountNo = null; public String InventoryCreditorPurchases_LedgerAccountDescription = null; public String InventoryCostOfGoodsVariance_LedgerAccountID = null; public String InventoryCostOfGoodsVariance_LedgerAccountNo = null; public String InventoryCostOfGoodsVariance_LedgerAccountDescription = null; public String InventoryStockMovement_LedgerAccountID = null; public String InventoryStockMovement_LedgerAccountNo = null; public String InventoryStockMovement_LedgerAccountDescription = null; public Date InventoryLastSavedDateTime = null; public BigDecimal OrderUnits = null; public Integer ItemNo = null; public String IN_SupplierWarehouse_RecID = null; public BigDecimal IncPrice = null; public BigDecimal LineTotal = null; public BigDecimal FXTotal = null; public Integer FXDecimalPlaces = null; public Integer HomeDecimalPlaces = null; public Boolean UseExpiryDate = null; public Boolean PostedToWIP = null; public String JobCostingStageID = null; public String JobCostingStageNo = null; public String JobCostingStageName = null; public String JobCostingCostCentreID = null; public String JobCostingCostCentreNo = null; public String JobCostingCostCentreName = null; public String JobCostingJobID = null; public String JobCostingJobNo = null; public String OrderNo = null; public String OrderID = null; public Integer PurchaseOrderLineNo = null; public PurchaseOrderType PurchaseOrderType = null; public ArrayList CustomFieldValues = null; public BigDecimal LineTotalExTax = null; public String RE_Lines_SourceID = null; public String getPurchaseInvoiceLineID() { return PurchaseInvoiceLineID; } public PurchaseInvoiceLine setPurchaseInvoiceLineID(String value) { this.PurchaseInvoiceLineID = value; return this; } public BigDecimal getQuantity() { return Quantity; } public PurchaseInvoiceLine setQuantity(BigDecimal value) { this.Quantity = value; return this; } public String getInventoryID() { return InventoryID; } public PurchaseInvoiceLine setInventoryID(String value) { this.InventoryID = value; return this; } public String getPartNo() { return PartNo; } public PurchaseInvoiceLine setPartNo(String value) { this.PartNo = value; return this; } public String getAux2() { return Aux2; } public PurchaseInvoiceLine setAux2(String value) { this.Aux2 = value; return this; } public String getDescription() { return Description; } public PurchaseInvoiceLine setDescription(String value) { this.Description = value; return this; } public String getSupplierPartNo() { return SupplierPartNo; } public PurchaseInvoiceLine setSupplierPartNo(String value) { this.SupplierPartNo = value; return this; } public InvoiceLineType getPurchaseInvoiceLineType() { return PurchaseInvoiceLineType; } public PurchaseInvoiceLine setPurchaseInvoiceLineType(InvoiceLineType value) { this.PurchaseInvoiceLineType = value; return this; } public Integer getQuantityDecimalPlaces() { return QuantityDecimalPlaces; } public PurchaseInvoiceLine setQuantityDecimalPlaces(Integer value) { this.QuantityDecimalPlaces = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public PurchaseInvoiceLine setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public BigDecimal getTaxAmount() { return TaxAmount; } public PurchaseInvoiceLine setTaxAmount(BigDecimal value) { this.TaxAmount = value; return this; } public String getTaxID() { return TaxID; } public PurchaseInvoiceLine setTaxID(String value) { this.TaxID = value; return this; } public BigDecimal getTaxRate() { return TaxRate; } public PurchaseInvoiceLine setTaxRate(BigDecimal value) { this.TaxRate = value; return this; } public BigDecimal getCost() { return Cost; } public PurchaseInvoiceLine setCost(BigDecimal value) { this.Cost = value; return this; } public BigDecimal getCurrencyRateUsed() { return CurrencyRateUsed; } public PurchaseInvoiceLine setCurrencyRateUsed(BigDecimal value) { this.CurrencyRateUsed = value; return this; } public String getPurchasingClassificationID() { return PurchasingClassificationID; } public PurchaseInvoiceLine setPurchasingClassificationID(String value) { this.PurchasingClassificationID = value; return this; } public String getPurchasingClassificationDescription() { return PurchasingClassificationDescription; } public PurchaseInvoiceLine setPurchasingClassificationDescription(String value) { this.PurchasingClassificationDescription = value; return this; } public ArrayList getLineDetails() { return LineDetails; } public PurchaseInvoiceLine setLineDetails(ArrayList value) { this.LineDetails = value; return this; } public Boolean isUseSerialNo() { return UseSerialNo; } public PurchaseInvoiceLine setUseSerialNo(Boolean value) { this.UseSerialNo = value; return this; } public BigDecimal getFxCost() { return FXCost; } public PurchaseInvoiceLine setFxCost(BigDecimal value) { this.FXCost = value; return this; } public Boolean isPhysicalItem() { return PhysicalItem; } public PurchaseInvoiceLine setPhysicalItem(Boolean value) { this.PhysicalItem = value; return this; } public String getInventoryExpectedLiabilityLedgerAccountID() { return InventoryExpectedLiability_LedgerAccountID; } public PurchaseInvoiceLine setInventoryExpectedLiabilityLedgerAccountID(String value) { this.InventoryExpectedLiability_LedgerAccountID = value; return this; } public String getInventoryExpectedLiabilityLedgerAccountNo() { return InventoryExpectedLiability_LedgerAccountNo; } public PurchaseInvoiceLine setInventoryExpectedLiabilityLedgerAccountNo(String value) { this.InventoryExpectedLiability_LedgerAccountNo = value; return this; } public String getInventoryExpectedLiabilityLedgerAccountDescription() { return InventoryExpectedLiability_LedgerAccountDescription; } public PurchaseInvoiceLine setInventoryExpectedLiabilityLedgerAccountDescription(String value) { this.InventoryExpectedLiability_LedgerAccountDescription = value; return this; } public String getInventoryExpectedAssetLedgerAccountID() { return InventoryExpectedAsset_LedgerAccountID; } public PurchaseInvoiceLine setInventoryExpectedAssetLedgerAccountID(String value) { this.InventoryExpectedAsset_LedgerAccountID = value; return this; } public String getInventoryExpectedAssetLedgerAccountNo() { return InventoryExpectedAsset_LedgerAccountNo; } public PurchaseInvoiceLine setInventoryExpectedAssetLedgerAccountNo(String value) { this.InventoryExpectedAsset_LedgerAccountNo = value; return this; } public String getInventoryExpectedAssetLedgerAccountDescription() { return InventoryExpectedAsset_LedgerAccountDescription; } public PurchaseInvoiceLine setInventoryExpectedAssetLedgerAccountDescription(String value) { this.InventoryExpectedAsset_LedgerAccountDescription = value; return this; } public String getInventoryDeliveredAssetLedgerAccountID() { return InventoryDeliveredAsset_LedgerAccountID; } public PurchaseInvoiceLine setInventoryDeliveredAssetLedgerAccountID(String value) { this.InventoryDeliveredAsset_LedgerAccountID = value; return this; } public String getInventoryDeliveredAssetLedgerAccountNo() { return InventoryDeliveredAsset_LedgerAccountNo; } public PurchaseInvoiceLine setInventoryDeliveredAssetLedgerAccountNo(String value) { this.InventoryDeliveredAsset_LedgerAccountNo = value; return this; } public String getInventoryDeliveredAssetLedgerAccountDescription() { return InventoryDeliveredAsset_LedgerAccountDescription; } public PurchaseInvoiceLine setInventoryDeliveredAssetLedgerAccountDescription(String value) { this.InventoryDeliveredAsset_LedgerAccountDescription = value; return this; } public String getInventoryValueLedgerAccountID() { return InventoryValue_LedgerAccountID; } public PurchaseInvoiceLine setInventoryValueLedgerAccountID(String value) { this.InventoryValue_LedgerAccountID = value; return this; } public String getInventoryValueLedgerAccountNo() { return InventoryValue_LedgerAccountNo; } public PurchaseInvoiceLine setInventoryValueLedgerAccountNo(String value) { this.InventoryValue_LedgerAccountNo = value; return this; } public String getInventoryValueLedgerAccountDescription() { return InventoryValue_LedgerAccountDescription; } public PurchaseInvoiceLine setInventoryValueLedgerAccountDescription(String value) { this.InventoryValue_LedgerAccountDescription = value; return this; } public String getInventoryDeliveredLiabilityLedgerAccountID() { return InventoryDeliveredLiability_LedgerAccountID; } public PurchaseInvoiceLine setInventoryDeliveredLiabilityLedgerAccountID(String value) { this.InventoryDeliveredLiability_LedgerAccountID = value; return this; } public String getInventoryDeliveredLiabilityLedgerAccountNo() { return InventoryDeliveredLiability_LedgerAccountNo; } public PurchaseInvoiceLine setInventoryDeliveredLiabilityLedgerAccountNo(String value) { this.InventoryDeliveredLiability_LedgerAccountNo = value; return this; } public String getInventoryDeliveredLiabilityLedgerAccountDescription() { return InventoryDeliveredLiability_LedgerAccountDescription; } public PurchaseInvoiceLine setInventoryDeliveredLiabilityLedgerAccountDescription(String value) { this.InventoryDeliveredLiability_LedgerAccountDescription = value; return this; } public String getInventoryCreditorPurchasesLedgerAccountID() { return InventoryCreditorPurchases_LedgerAccountID; } public PurchaseInvoiceLine setInventoryCreditorPurchasesLedgerAccountID(String value) { this.InventoryCreditorPurchases_LedgerAccountID = value; return this; } public String getInventoryCreditorPurchasesLedgerAccountNo() { return InventoryCreditorPurchases_LedgerAccountNo; } public PurchaseInvoiceLine setInventoryCreditorPurchasesLedgerAccountNo(String value) { this.InventoryCreditorPurchases_LedgerAccountNo = value; return this; } public String getInventoryCreditorPurchasesLedgerAccountDescription() { return InventoryCreditorPurchases_LedgerAccountDescription; } public PurchaseInvoiceLine setInventoryCreditorPurchasesLedgerAccountDescription(String value) { this.InventoryCreditorPurchases_LedgerAccountDescription = value; return this; } public String getInventoryCostOfGoodsVarianceLedgerAccountID() { return InventoryCostOfGoodsVariance_LedgerAccountID; } public PurchaseInvoiceLine setInventoryCostOfGoodsVarianceLedgerAccountID(String value) { this.InventoryCostOfGoodsVariance_LedgerAccountID = value; return this; } public String getInventoryCostOfGoodsVarianceLedgerAccountNo() { return InventoryCostOfGoodsVariance_LedgerAccountNo; } public PurchaseInvoiceLine setInventoryCostOfGoodsVarianceLedgerAccountNo(String value) { this.InventoryCostOfGoodsVariance_LedgerAccountNo = value; return this; } public String getInventoryCostOfGoodsVarianceLedgerAccountDescription() { return InventoryCostOfGoodsVariance_LedgerAccountDescription; } public PurchaseInvoiceLine setInventoryCostOfGoodsVarianceLedgerAccountDescription(String value) { this.InventoryCostOfGoodsVariance_LedgerAccountDescription = value; return this; } public String getInventoryStockMovementLedgerAccountID() { return InventoryStockMovement_LedgerAccountID; } public PurchaseInvoiceLine setInventoryStockMovementLedgerAccountID(String value) { this.InventoryStockMovement_LedgerAccountID = value; return this; } public String getInventoryStockMovementLedgerAccountNo() { return InventoryStockMovement_LedgerAccountNo; } public PurchaseInvoiceLine setInventoryStockMovementLedgerAccountNo(String value) { this.InventoryStockMovement_LedgerAccountNo = value; return this; } public String getInventoryStockMovementLedgerAccountDescription() { return InventoryStockMovement_LedgerAccountDescription; } public PurchaseInvoiceLine setInventoryStockMovementLedgerAccountDescription(String value) { this.InventoryStockMovement_LedgerAccountDescription = value; return this; } public Date getInventoryLastSavedDateTime() { return InventoryLastSavedDateTime; } public PurchaseInvoiceLine setInventoryLastSavedDateTime(Date value) { this.InventoryLastSavedDateTime = value; return this; } public BigDecimal getOrderUnits() { return OrderUnits; } public PurchaseInvoiceLine setOrderUnits(BigDecimal value) { this.OrderUnits = value; return this; } public Integer getItemNo() { return ItemNo; } public PurchaseInvoiceLine setItemNo(Integer value) { this.ItemNo = value; return this; } public String getInSupplierWarehouseRecID() { return IN_SupplierWarehouse_RecID; } public PurchaseInvoiceLine setInSupplierWarehouseRecID(String value) { this.IN_SupplierWarehouse_RecID = value; return this; } public BigDecimal getIncPrice() { return IncPrice; } public PurchaseInvoiceLine setIncPrice(BigDecimal value) { this.IncPrice = value; return this; } public BigDecimal getLineTotal() { return LineTotal; } public PurchaseInvoiceLine setLineTotal(BigDecimal value) { this.LineTotal = value; return this; } public BigDecimal getFxTotal() { return FXTotal; } public PurchaseInvoiceLine setFxTotal(BigDecimal value) { this.FXTotal = value; return this; } public Integer getFxDecimalPlaces() { return FXDecimalPlaces; } public PurchaseInvoiceLine setFxDecimalPlaces(Integer value) { this.FXDecimalPlaces = value; return this; } public Integer getHomeDecimalPlaces() { return HomeDecimalPlaces; } public PurchaseInvoiceLine setHomeDecimalPlaces(Integer value) { this.HomeDecimalPlaces = value; return this; } public Boolean isUseExpiryDate() { return UseExpiryDate; } public PurchaseInvoiceLine setUseExpiryDate(Boolean value) { this.UseExpiryDate = value; return this; } public Boolean isPostedToWIP() { return PostedToWIP; } public PurchaseInvoiceLine setPostedToWIP(Boolean value) { this.PostedToWIP = value; return this; } public String getJobCostingStageID() { return JobCostingStageID; } public PurchaseInvoiceLine setJobCostingStageID(String value) { this.JobCostingStageID = value; return this; } public String getJobCostingStageNo() { return JobCostingStageNo; } public PurchaseInvoiceLine setJobCostingStageNo(String value) { this.JobCostingStageNo = value; return this; } public String getJobCostingStageName() { return JobCostingStageName; } public PurchaseInvoiceLine setJobCostingStageName(String value) { this.JobCostingStageName = value; return this; } public String getJobCostingCostCentreID() { return JobCostingCostCentreID; } public PurchaseInvoiceLine setJobCostingCostCentreID(String value) { this.JobCostingCostCentreID = value; return this; } public String getJobCostingCostCentreNo() { return JobCostingCostCentreNo; } public PurchaseInvoiceLine setJobCostingCostCentreNo(String value) { this.JobCostingCostCentreNo = value; return this; } public String getJobCostingCostCentreName() { return JobCostingCostCentreName; } public PurchaseInvoiceLine setJobCostingCostCentreName(String value) { this.JobCostingCostCentreName = value; return this; } public String getJobCostingJobID() { return JobCostingJobID; } public PurchaseInvoiceLine setJobCostingJobID(String value) { this.JobCostingJobID = value; return this; } public String getJobCostingJobNo() { return JobCostingJobNo; } public PurchaseInvoiceLine setJobCostingJobNo(String value) { this.JobCostingJobNo = value; return this; } public String getOrderNo() { return OrderNo; } public PurchaseInvoiceLine setOrderNo(String value) { this.OrderNo = value; return this; } public String getOrderID() { return OrderID; } public PurchaseInvoiceLine setOrderID(String value) { this.OrderID = value; return this; } public Integer getPurchaseOrderLineNo() { return PurchaseOrderLineNo; } public PurchaseInvoiceLine setPurchaseOrderLineNo(Integer value) { this.PurchaseOrderLineNo = value; return this; } public PurchaseOrderType getPurchaseOrderType() { return PurchaseOrderType; } public PurchaseInvoiceLine setPurchaseOrderType(PurchaseOrderType value) { this.PurchaseOrderType = value; return this; } public ArrayList getCustomFieldValues() { return CustomFieldValues; } public PurchaseInvoiceLine setCustomFieldValues(ArrayList value) { this.CustomFieldValues = value; return this; } public BigDecimal getLineTotalExTax() { return LineTotalExTax; } public PurchaseInvoiceLine setLineTotalExTax(BigDecimal value) { this.LineTotalExTax = value; return this; } public String getReLinesSourceID() { return RE_Lines_SourceID; } public PurchaseInvoiceLine setReLinesSourceID(String value) { this.RE_Lines_SourceID = value; return this; } } public static class Region { public String RegionID = null; public String Name = null; public Boolean IsDefault = null; public String Description = null; public Date CreatedDateTime = null; public Date LastSavedDateTime = null; public StaffMember CreatedByStaff = null; public StaffMember LastSavedByStaff = null; public String getRegionID() { return RegionID; } public Region setRegionID(String value) { this.RegionID = value; return this; } public String getName() { return Name; } public Region setName(String value) { this.Name = value; return this; } public Boolean getIsDefault() { return IsDefault; } public Region setIsDefault(Boolean value) { this.IsDefault = value; return this; } public String getDescription() { return Description; } public Region setDescription(String value) { this.Description = value; return this; } public Date getCreatedDateTime() { return CreatedDateTime; } public Region setCreatedDateTime(Date value) { this.CreatedDateTime = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public Region setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public StaffMember getCreatedByStaff() { return CreatedByStaff; } public Region setCreatedByStaff(StaffMember value) { this.CreatedByStaff = value; return this; } public StaffMember getLastSavedByStaff() { return LastSavedByStaff; } public Region setLastSavedByStaff(StaffMember value) { this.LastSavedByStaff = value; return this; } } public static interface IHttpResult { public Integer Status = null; public HttpStatusCode StatusCode = null; public String StatusDescription = null; public String ContentType = null; public HashMap Headers = null; public ArrayList Cookies = null; public Object Response = null; public IContentTypeWriter ResponseFilter = null; public IRequest RequestContext = null; public Integer PaddingLength = null; public Func ResultScope = null; } public static class SalesOrder { public String Type = null; public SalesOrderSystemSettings SystemSettings = null; public Date LastSavedDateTime = null; public Date InitiatedDate = null; public Date InvoiceInitDate = null; public SalesOrderTypes SalesOrderType = null; public SalesOrderOrderTypes OrderType = null; public SalesOrderStatuses Status = null; public SalesOrderHistoryEDIPickStatuses EDIStatus = null; public SalesOrderBillTypes BillType = null; public Date ExpectedDeliveryDate = null; public Date DeliveredDate = null; public Boolean Delivered = null; public SalesOrderHistoryEDIPickStatuses EDIPickStatus = null; public SalesOrderEDIOrderTypes EDIOrderType = null; public Date EDIDeliverNotBeforeDate = null; public Date EDIDeliverNotAfterDate = null; public SalesOrderCashSales CashSales = null; public Boolean DropShipment = null; public BigDecimal Cartage1ExGst = null; public BigDecimal Cartage1GstRate = null; public BigDecimal Cartage1Gst = null; public BigDecimal Cartage2ExGst = null; public BigDecimal Cartage2GstRate = null; public BigDecimal Cartage2Gst = null; public BigDecimal Cartage3ExGst = null; public BigDecimal Cartage3GstRate = null; public BigDecimal Cartage3Gst = null; public BigDecimal RCTIAmount = null; public Date RCTIDate = null; public SalesOrderJobCosting JobCosting = null; public String InvoiceID = null; public String InvoiceNo = null; public String LogicalID = null; public String LogicalWarehouseDescription = null; public String PhysicalWarehouseDescription = null; public Boolean CreditNote = null; public String StaffID = null; public String StaffUserName = null; public String StaffTitle = null; public String StaffFirstName = null; public String StaffSurname = null; public String BranchID = null; public String BranchDescription = null; public String BranchName = null; public String OrderNo = null; public String SOReference = null; public String SenderEDIAddress = null; public String ReceiverEDIAddress = null; public String EDIVendorNumber = null; public String EDIBuyerNumber = null; public String DebtorID = null; public String DebtorAccountNo = null; public String DebtorName = null; public String DebtorEmailAddress = null; public String DebtorContactName = null; public String EDIASN = null; public String DeliveryAddressee = null; public String DeliveryAddress1 = null; public String DeliveryAddress2 = null; public String DeliveryAddressSuburb = null; public String DeliveryAddressState = null; public String DeliveryAddressContactName = null; public String DeliveryAddressPostcode = null; public String DeliveryAddressCountry = null; public String DeliveryAddressNotes = null; public String DeliveryAddressCourierDetails = null; public String RCTINo = null; public ArrayList CustomFieldValues = null; public ArrayList Notes = null; public ArrayList Documents = null; public ArrayList Payments = null; public ArrayList Lines = null; public ArrayList Histories = null; public ArrayList ASNs = null; public CreditReason CreditReason = null; public String CreditNoteFromInvoiceHistoryID = null; public String getType() { return Type; } public SalesOrder setType(String value) { this.Type = value; return this; } public SalesOrderSystemSettings getSystemSettings() { return SystemSettings; } public SalesOrder setSystemSettings(SalesOrderSystemSettings value) { this.SystemSettings = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public SalesOrder setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getInitiatedDate() { return InitiatedDate; } public SalesOrder setInitiatedDate(Date value) { this.InitiatedDate = value; return this; } public Date getInvoiceInitDate() { return InvoiceInitDate; } public SalesOrder setInvoiceInitDate(Date value) { this.InvoiceInitDate = value; return this; } public SalesOrderTypes getSalesOrderType() { return SalesOrderType; } public SalesOrder setSalesOrderType(SalesOrderTypes value) { this.SalesOrderType = value; return this; } public SalesOrderOrderTypes getOrderType() { return OrderType; } public SalesOrder setOrderType(SalesOrderOrderTypes value) { this.OrderType = value; return this; } public SalesOrderStatuses getStatus() { return Status; } public SalesOrder setStatus(SalesOrderStatuses value) { this.Status = value; return this; } public SalesOrderHistoryEDIPickStatuses getEdiStatus() { return EDIStatus; } public SalesOrder setEdiStatus(SalesOrderHistoryEDIPickStatuses value) { this.EDIStatus = value; return this; } public SalesOrderBillTypes getBillType() { return BillType; } public SalesOrder setBillType(SalesOrderBillTypes value) { this.BillType = value; return this; } public Date getExpectedDeliveryDate() { return ExpectedDeliveryDate; } public SalesOrder setExpectedDeliveryDate(Date value) { this.ExpectedDeliveryDate = value; return this; } public Date getDeliveredDate() { return DeliveredDate; } public SalesOrder setDeliveredDate(Date value) { this.DeliveredDate = value; return this; } public Boolean isDelivered() { return Delivered; } public SalesOrder setDelivered(Boolean value) { this.Delivered = value; return this; } public SalesOrderHistoryEDIPickStatuses getEdiPickStatus() { return EDIPickStatus; } public SalesOrder setEdiPickStatus(SalesOrderHistoryEDIPickStatuses value) { this.EDIPickStatus = value; return this; } public SalesOrderEDIOrderTypes getEdiOrderType() { return EDIOrderType; } public SalesOrder setEdiOrderType(SalesOrderEDIOrderTypes value) { this.EDIOrderType = value; return this; } public Date getEdiDeliverNotBeforeDate() { return EDIDeliverNotBeforeDate; } public SalesOrder setEdiDeliverNotBeforeDate(Date value) { this.EDIDeliverNotBeforeDate = value; return this; } public Date getEdiDeliverNotAfterDate() { return EDIDeliverNotAfterDate; } public SalesOrder setEdiDeliverNotAfterDate(Date value) { this.EDIDeliverNotAfterDate = value; return this; } public SalesOrderCashSales getCashSales() { return CashSales; } public SalesOrder setCashSales(SalesOrderCashSales value) { this.CashSales = value; return this; } public Boolean isDropShipment() { return DropShipment; } public SalesOrder setDropShipment(Boolean value) { this.DropShipment = value; return this; } public BigDecimal getCartage1ExGst() { return Cartage1ExGst; } public SalesOrder setCartage1ExGst(BigDecimal value) { this.Cartage1ExGst = value; return this; } public BigDecimal getCartage1GstRate() { return Cartage1GstRate; } public SalesOrder setCartage1GstRate(BigDecimal value) { this.Cartage1GstRate = value; return this; } public BigDecimal getCartage1Gst() { return Cartage1Gst; } public SalesOrder setCartage1Gst(BigDecimal value) { this.Cartage1Gst = value; return this; } public BigDecimal getCartage2ExGst() { return Cartage2ExGst; } public SalesOrder setCartage2ExGst(BigDecimal value) { this.Cartage2ExGst = value; return this; } public BigDecimal getCartage2GstRate() { return Cartage2GstRate; } public SalesOrder setCartage2GstRate(BigDecimal value) { this.Cartage2GstRate = value; return this; } public BigDecimal getCartage2Gst() { return Cartage2Gst; } public SalesOrder setCartage2Gst(BigDecimal value) { this.Cartage2Gst = value; return this; } public BigDecimal getCartage3ExGst() { return Cartage3ExGst; } public SalesOrder setCartage3ExGst(BigDecimal value) { this.Cartage3ExGst = value; return this; } public BigDecimal getCartage3GstRate() { return Cartage3GstRate; } public SalesOrder setCartage3GstRate(BigDecimal value) { this.Cartage3GstRate = value; return this; } public BigDecimal getCartage3Gst() { return Cartage3Gst; } public SalesOrder setCartage3Gst(BigDecimal value) { this.Cartage3Gst = value; return this; } public BigDecimal getRctiAmount() { return RCTIAmount; } public SalesOrder setRctiAmount(BigDecimal value) { this.RCTIAmount = value; return this; } public Date getRctiDate() { return RCTIDate; } public SalesOrder setRctiDate(Date value) { this.RCTIDate = value; return this; } public SalesOrderJobCosting getJobCosting() { return JobCosting; } public SalesOrder setJobCosting(SalesOrderJobCosting value) { this.JobCosting = value; return this; } public String getInvoiceID() { return InvoiceID; } public SalesOrder setInvoiceID(String value) { this.InvoiceID = value; return this; } public String getInvoiceNo() { return InvoiceNo; } public SalesOrder setInvoiceNo(String value) { this.InvoiceNo = value; return this; } public String getLogicalID() { return LogicalID; } public SalesOrder setLogicalID(String value) { this.LogicalID = value; return this; } public String getLogicalWarehouseDescription() { return LogicalWarehouseDescription; } public SalesOrder setLogicalWarehouseDescription(String value) { this.LogicalWarehouseDescription = value; return this; } public String getPhysicalWarehouseDescription() { return PhysicalWarehouseDescription; } public SalesOrder setPhysicalWarehouseDescription(String value) { this.PhysicalWarehouseDescription = value; return this; } public Boolean isCreditNote() { return CreditNote; } public SalesOrder setCreditNote(Boolean value) { this.CreditNote = value; return this; } public String getStaffID() { return StaffID; } public SalesOrder setStaffID(String value) { this.StaffID = value; return this; } public String getStaffUserName() { return StaffUserName; } public SalesOrder setStaffUserName(String value) { this.StaffUserName = value; return this; } public String getStaffTitle() { return StaffTitle; } public SalesOrder setStaffTitle(String value) { this.StaffTitle = value; return this; } public String getStaffFirstName() { return StaffFirstName; } public SalesOrder setStaffFirstName(String value) { this.StaffFirstName = value; return this; } public String getStaffSurname() { return StaffSurname; } public SalesOrder setStaffSurname(String value) { this.StaffSurname = value; return this; } public String getBranchID() { return BranchID; } public SalesOrder setBranchID(String value) { this.BranchID = value; return this; } public String getBranchDescription() { return BranchDescription; } public SalesOrder setBranchDescription(String value) { this.BranchDescription = value; return this; } public String getBranchName() { return BranchName; } public SalesOrder setBranchName(String value) { this.BranchName = value; return this; } public String getOrderNo() { return OrderNo; } public SalesOrder setOrderNo(String value) { this.OrderNo = value; return this; } public String getSoReference() { return SOReference; } public SalesOrder setSoReference(String value) { this.SOReference = value; return this; } public String getSenderEDIAddress() { return SenderEDIAddress; } public SalesOrder setSenderEDIAddress(String value) { this.SenderEDIAddress = value; return this; } public String getReceiverEDIAddress() { return ReceiverEDIAddress; } public SalesOrder setReceiverEDIAddress(String value) { this.ReceiverEDIAddress = value; return this; } public String getEdiVendorNumber() { return EDIVendorNumber; } public SalesOrder setEdiVendorNumber(String value) { this.EDIVendorNumber = value; return this; } public String getEdiBuyerNumber() { return EDIBuyerNumber; } public SalesOrder setEdiBuyerNumber(String value) { this.EDIBuyerNumber = value; return this; } public String getDebtorID() { return DebtorID; } public SalesOrder setDebtorID(String value) { this.DebtorID = value; return this; } public String getDebtorAccountNo() { return DebtorAccountNo; } public SalesOrder setDebtorAccountNo(String value) { this.DebtorAccountNo = value; return this; } public String getDebtorName() { return DebtorName; } public SalesOrder setDebtorName(String value) { this.DebtorName = value; return this; } public String getDebtorEmailAddress() { return DebtorEmailAddress; } public SalesOrder setDebtorEmailAddress(String value) { this.DebtorEmailAddress = value; return this; } public String getDebtorContactName() { return DebtorContactName; } public SalesOrder setDebtorContactName(String value) { this.DebtorContactName = value; return this; } public String getEdiasn() { return EDIASN; } public SalesOrder setEdiasn(String value) { this.EDIASN = value; return this; } public String getDeliveryAddressee() { return DeliveryAddressee; } public SalesOrder setDeliveryAddressee(String value) { this.DeliveryAddressee = value; return this; } public String getDeliveryAddress1() { return DeliveryAddress1; } public SalesOrder setDeliveryAddress1(String value) { this.DeliveryAddress1 = value; return this; } public String getDeliveryAddress2() { return DeliveryAddress2; } public SalesOrder setDeliveryAddress2(String value) { this.DeliveryAddress2 = value; return this; } public String getDeliveryAddressSuburb() { return DeliveryAddressSuburb; } public SalesOrder setDeliveryAddressSuburb(String value) { this.DeliveryAddressSuburb = value; return this; } public String getDeliveryAddressState() { return DeliveryAddressState; } public SalesOrder setDeliveryAddressState(String value) { this.DeliveryAddressState = value; return this; } public String getDeliveryAddressContactName() { return DeliveryAddressContactName; } public SalesOrder setDeliveryAddressContactName(String value) { this.DeliveryAddressContactName = value; return this; } public String getDeliveryAddressPostcode() { return DeliveryAddressPostcode; } public SalesOrder setDeliveryAddressPostcode(String value) { this.DeliveryAddressPostcode = value; return this; } public String getDeliveryAddressCountry() { return DeliveryAddressCountry; } public SalesOrder setDeliveryAddressCountry(String value) { this.DeliveryAddressCountry = value; return this; } public String getDeliveryAddressNotes() { return DeliveryAddressNotes; } public SalesOrder setDeliveryAddressNotes(String value) { this.DeliveryAddressNotes = value; return this; } public String getDeliveryAddressCourierDetails() { return DeliveryAddressCourierDetails; } public SalesOrder setDeliveryAddressCourierDetails(String value) { this.DeliveryAddressCourierDetails = value; return this; } public String getRctiNo() { return RCTINo; } public SalesOrder setRctiNo(String value) { this.RCTINo = value; return this; } public ArrayList getCustomFieldValues() { return CustomFieldValues; } public SalesOrder setCustomFieldValues(ArrayList value) { this.CustomFieldValues = value; return this; } public ArrayList getNotes() { return Notes; } public SalesOrder setNotes(ArrayList value) { this.Notes = value; return this; } public ArrayList getDocuments() { return Documents; } public SalesOrder setDocuments(ArrayList value) { this.Documents = value; return this; } public ArrayList getPayments() { return Payments; } public SalesOrder setPayments(ArrayList value) { this.Payments = value; return this; } public ArrayList getLines() { return Lines; } public SalesOrder setLines(ArrayList value) { this.Lines = value; return this; } public ArrayList getHistories() { return Histories; } public SalesOrder setHistories(ArrayList value) { this.Histories = value; return this; } public ArrayList getAsNs() { return ASNs; } public SalesOrder setAsNs(ArrayList value) { this.ASNs = value; return this; } public CreditReason getCreditReason() { return CreditReason; } public SalesOrder setCreditReason(CreditReason value) { this.CreditReason = value; return this; } public String getCreditNoteFromInvoiceHistoryID() { return CreditNoteFromInvoiceHistoryID; } public SalesOrder setCreditNoteFromInvoiceHistoryID(String value) { this.CreditNoteFromInvoiceHistoryID = value; return this; } } public static class SalesOrderHistory { public String InvoiceHistoryID = null; public Integer HistoryNo = null; public SalesOrderHistoryStatuses Status = null; public SalesOrderHistoryEDIPickStatuses EDIPickStatus = null; public String DBTransID = null; public String Ref = null; public String LastModifiedBy = null; public BigDecimal HistoryTotal = null; public BigDecimal AmountPaid = null; public BigDecimal TotalQuantityDelivered = null; public String RunNo = null; public Boolean Delivered = null; public Date DeliveredDate = null; public Date RecordDate = null; public Date DateCreated = null; public Date DateLastSaved = null; public Date DatePosted = null; public Date DateProcessed = null; public Boolean InvoicePrinted = null; public Boolean DocketPrinted = null; public Boolean PackSlipPrinted = null; public Boolean PickSheetPrinted = null; public Boolean OtherPrinted = null; public Boolean InvoiceEmailed = null; public Boolean DocketEmailed = null; public Boolean PackSlipEmailed = null; public Boolean PickSheetEmailed = null; public Boolean OtherEmailed = null; public String DeliveryAddressContactName = null; public String DeliveryAddressee = null; public String DeliveryAddressEmailAddress = null; public String DeliveryAddress1 = null; public String DeliveryAddress2 = null; public String DeliveryAddress3 = null; public String DeliveryAddress4 = null; public String DeliveryAddressPostcode = null; public String DeliveryAddressCountry = null; public String Notes = null; public String CourierDetails = null; public String FreightForwardAddress1 = null; public String FreightForwardAddress2 = null; public String FreightForwardAddress3 = null; public String FreightForwardAddress4 = null; public String FreightForwardAddressCountry = null; public String FreightForwardAddressNotes = null; public String ConsignmentNote = null; public String EDIASNNumber = null; public Boolean DropShipment = null; public CartageCharge CartageCharge1 = null; public CartageCharge CartageCharge2 = null; public CartageCharge CartageCharge3 = null; public SalesOrderCarrier Carrier = null; public ArrayList CustomFieldValues = null; public String getInvoiceHistoryID() { return InvoiceHistoryID; } public SalesOrderHistory setInvoiceHistoryID(String value) { this.InvoiceHistoryID = value; return this; } public Integer getHistoryNo() { return HistoryNo; } public SalesOrderHistory setHistoryNo(Integer value) { this.HistoryNo = value; return this; } public SalesOrderHistoryStatuses getStatus() { return Status; } public SalesOrderHistory setStatus(SalesOrderHistoryStatuses value) { this.Status = value; return this; } public SalesOrderHistoryEDIPickStatuses getEdiPickStatus() { return EDIPickStatus; } public SalesOrderHistory setEdiPickStatus(SalesOrderHistoryEDIPickStatuses value) { this.EDIPickStatus = value; return this; } public String getDbTransID() { return DBTransID; } public SalesOrderHistory setDbTransID(String value) { this.DBTransID = value; return this; } public String getRef() { return Ref; } public SalesOrderHistory setRef(String value) { this.Ref = value; return this; } public String getLastModifiedBy() { return LastModifiedBy; } public SalesOrderHistory setLastModifiedBy(String value) { this.LastModifiedBy = value; return this; } public BigDecimal getHistoryTotal() { return HistoryTotal; } public SalesOrderHistory setHistoryTotal(BigDecimal value) { this.HistoryTotal = value; return this; } public BigDecimal getAmountPaid() { return AmountPaid; } public SalesOrderHistory setAmountPaid(BigDecimal value) { this.AmountPaid = value; return this; } public BigDecimal getTotalQuantityDelivered() { return TotalQuantityDelivered; } public SalesOrderHistory setTotalQuantityDelivered(BigDecimal value) { this.TotalQuantityDelivered = value; return this; } public String getRunNo() { return RunNo; } public SalesOrderHistory setRunNo(String value) { this.RunNo = value; return this; } public Boolean isDelivered() { return Delivered; } public SalesOrderHistory setDelivered(Boolean value) { this.Delivered = value; return this; } public Date getDeliveredDate() { return DeliveredDate; } public SalesOrderHistory setDeliveredDate(Date value) { this.DeliveredDate = value; return this; } public Date getRecordDate() { return RecordDate; } public SalesOrderHistory setRecordDate(Date value) { this.RecordDate = value; return this; } public Date getDateCreated() { return DateCreated; } public SalesOrderHistory setDateCreated(Date value) { this.DateCreated = value; return this; } public Date getDateLastSaved() { return DateLastSaved; } public SalesOrderHistory setDateLastSaved(Date value) { this.DateLastSaved = value; return this; } public Date getDatePosted() { return DatePosted; } public SalesOrderHistory setDatePosted(Date value) { this.DatePosted = value; return this; } public Date getDateProcessed() { return DateProcessed; } public SalesOrderHistory setDateProcessed(Date value) { this.DateProcessed = value; return this; } public Boolean isInvoicePrinted() { return InvoicePrinted; } public SalesOrderHistory setInvoicePrinted(Boolean value) { this.InvoicePrinted = value; return this; } public Boolean isDocketPrinted() { return DocketPrinted; } public SalesOrderHistory setDocketPrinted(Boolean value) { this.DocketPrinted = value; return this; } public Boolean isPackSlipPrinted() { return PackSlipPrinted; } public SalesOrderHistory setPackSlipPrinted(Boolean value) { this.PackSlipPrinted = value; return this; } public Boolean isPickSheetPrinted() { return PickSheetPrinted; } public SalesOrderHistory setPickSheetPrinted(Boolean value) { this.PickSheetPrinted = value; return this; } public Boolean isOtherPrinted() { return OtherPrinted; } public SalesOrderHistory setOtherPrinted(Boolean value) { this.OtherPrinted = value; return this; } public Boolean isInvoiceEmailed() { return InvoiceEmailed; } public SalesOrderHistory setInvoiceEmailed(Boolean value) { this.InvoiceEmailed = value; return this; } public Boolean isDocketEmailed() { return DocketEmailed; } public SalesOrderHistory setDocketEmailed(Boolean value) { this.DocketEmailed = value; return this; } public Boolean isPackSlipEmailed() { return PackSlipEmailed; } public SalesOrderHistory setPackSlipEmailed(Boolean value) { this.PackSlipEmailed = value; return this; } public Boolean isPickSheetEmailed() { return PickSheetEmailed; } public SalesOrderHistory setPickSheetEmailed(Boolean value) { this.PickSheetEmailed = value; return this; } public Boolean isOtherEmailed() { return OtherEmailed; } public SalesOrderHistory setOtherEmailed(Boolean value) { this.OtherEmailed = value; return this; } public String getDeliveryAddressContactName() { return DeliveryAddressContactName; } public SalesOrderHistory setDeliveryAddressContactName(String value) { this.DeliveryAddressContactName = value; return this; } public String getDeliveryAddressee() { return DeliveryAddressee; } public SalesOrderHistory setDeliveryAddressee(String value) { this.DeliveryAddressee = value; return this; } public String getDeliveryAddressEmailAddress() { return DeliveryAddressEmailAddress; } public SalesOrderHistory setDeliveryAddressEmailAddress(String value) { this.DeliveryAddressEmailAddress = value; return this; } public String getDeliveryAddress1() { return DeliveryAddress1; } public SalesOrderHistory setDeliveryAddress1(String value) { this.DeliveryAddress1 = value; return this; } public String getDeliveryAddress2() { return DeliveryAddress2; } public SalesOrderHistory setDeliveryAddress2(String value) { this.DeliveryAddress2 = value; return this; } public String getDeliveryAddress3() { return DeliveryAddress3; } public SalesOrderHistory setDeliveryAddress3(String value) { this.DeliveryAddress3 = value; return this; } public String getDeliveryAddress4() { return DeliveryAddress4; } public SalesOrderHistory setDeliveryAddress4(String value) { this.DeliveryAddress4 = value; return this; } public String getDeliveryAddressPostcode() { return DeliveryAddressPostcode; } public SalesOrderHistory setDeliveryAddressPostcode(String value) { this.DeliveryAddressPostcode = value; return this; } public String getDeliveryAddressCountry() { return DeliveryAddressCountry; } public SalesOrderHistory setDeliveryAddressCountry(String value) { this.DeliveryAddressCountry = value; return this; } public String getNotes() { return Notes; } public SalesOrderHistory setNotes(String value) { this.Notes = value; return this; } public String getCourierDetails() { return CourierDetails; } public SalesOrderHistory setCourierDetails(String value) { this.CourierDetails = value; return this; } public String getFreightForwardAddress1() { return FreightForwardAddress1; } public SalesOrderHistory setFreightForwardAddress1(String value) { this.FreightForwardAddress1 = value; return this; } public String getFreightForwardAddress2() { return FreightForwardAddress2; } public SalesOrderHistory setFreightForwardAddress2(String value) { this.FreightForwardAddress2 = value; return this; } public String getFreightForwardAddress3() { return FreightForwardAddress3; } public SalesOrderHistory setFreightForwardAddress3(String value) { this.FreightForwardAddress3 = value; return this; } public String getFreightForwardAddress4() { return FreightForwardAddress4; } public SalesOrderHistory setFreightForwardAddress4(String value) { this.FreightForwardAddress4 = value; return this; } public String getFreightForwardAddressCountry() { return FreightForwardAddressCountry; } public SalesOrderHistory setFreightForwardAddressCountry(String value) { this.FreightForwardAddressCountry = value; return this; } public String getFreightForwardAddressNotes() { return FreightForwardAddressNotes; } public SalesOrderHistory setFreightForwardAddressNotes(String value) { this.FreightForwardAddressNotes = value; return this; } public String getConsignmentNote() { return ConsignmentNote; } public SalesOrderHistory setConsignmentNote(String value) { this.ConsignmentNote = value; return this; } public String getEdiasnNumber() { return EDIASNNumber; } public SalesOrderHistory setEdiasnNumber(String value) { this.EDIASNNumber = value; return this; } public Boolean isDropShipment() { return DropShipment; } public SalesOrderHistory setDropShipment(Boolean value) { this.DropShipment = value; return this; } public CartageCharge getCartageCharge1() { return CartageCharge1; } public SalesOrderHistory setCartageCharge1(CartageCharge value) { this.CartageCharge1 = value; return this; } public CartageCharge getCartageCharge2() { return CartageCharge2; } public SalesOrderHistory setCartageCharge2(CartageCharge value) { this.CartageCharge2 = value; return this; } public CartageCharge getCartageCharge3() { return CartageCharge3; } public SalesOrderHistory setCartageCharge3(CartageCharge value) { this.CartageCharge3 = value; return this; } public SalesOrderCarrier getCarrier() { return Carrier; } public SalesOrderHistory setCarrier(SalesOrderCarrier value) { this.Carrier = value; return this; } public ArrayList getCustomFieldValues() { return CustomFieldValues; } public SalesOrderHistory setCustomFieldValues(ArrayList value) { this.CustomFieldValues = value; return this; } } public static class SalesOrderConsignmentNote { public String ConsignmentNoteID = null; public Date ConsignmentNoteDate = null; public BigDecimal ExGSTAmount = null; public BigDecimal GSTAmount = null; public String ConsignmentNoteNo = null; public String getConsignmentNoteID() { return ConsignmentNoteID; } public SalesOrderConsignmentNote setConsignmentNoteID(String value) { this.ConsignmentNoteID = value; return this; } public Date getConsignmentNoteDate() { return ConsignmentNoteDate; } public SalesOrderConsignmentNote setConsignmentNoteDate(Date value) { this.ConsignmentNoteDate = value; return this; } public BigDecimal getExGSTAmount() { return ExGSTAmount; } public SalesOrderConsignmentNote setExGSTAmount(BigDecimal value) { this.ExGSTAmount = value; return this; } public BigDecimal getGstAmount() { return GSTAmount; } public SalesOrderConsignmentNote setGstAmount(BigDecimal value) { this.GSTAmount = value; return this; } public String getConsignmentNoteNo() { return ConsignmentNoteNo; } public SalesOrderConsignmentNote setConsignmentNoteNo(String value) { this.ConsignmentNoteNo = value; return this; } } public static class SalesOrderFreightItem { public String FreightItemID = null; public Integer NumberItems = null; public BigDecimal ItemWeight = null; public BigDecimal ItemCubic = null; public BigDecimal ItemLength = null; public BigDecimal ItemWidth = null; public BigDecimal ItemHeight = null; public String Reference = null; public SalesOrderCarrierFreightDescription FreightDescription = null; public SalesOrderConsignmentNote ConsignmentNote = null; public String getFreightItemID() { return FreightItemID; } public SalesOrderFreightItem setFreightItemID(String value) { this.FreightItemID = value; return this; } public Integer getNumberItems() { return NumberItems; } public SalesOrderFreightItem setNumberItems(Integer value) { this.NumberItems = value; return this; } public BigDecimal getItemWeight() { return ItemWeight; } public SalesOrderFreightItem setItemWeight(BigDecimal value) { this.ItemWeight = value; return this; } public BigDecimal getItemCubic() { return ItemCubic; } public SalesOrderFreightItem setItemCubic(BigDecimal value) { this.ItemCubic = value; return this; } public BigDecimal getItemLength() { return ItemLength; } public SalesOrderFreightItem setItemLength(BigDecimal value) { this.ItemLength = value; return this; } public BigDecimal getItemWidth() { return ItemWidth; } public SalesOrderFreightItem setItemWidth(BigDecimal value) { this.ItemWidth = value; return this; } public BigDecimal getItemHeight() { return ItemHeight; } public SalesOrderFreightItem setItemHeight(BigDecimal value) { this.ItemHeight = value; return this; } public String getReference() { return Reference; } public SalesOrderFreightItem setReference(String value) { this.Reference = value; return this; } public SalesOrderCarrierFreightDescription getFreightDescription() { return FreightDescription; } public SalesOrderFreightItem setFreightDescription(SalesOrderCarrierFreightDescription value) { this.FreightDescription = value; return this; } public SalesOrderConsignmentNote getConsignmentNote() { return ConsignmentNote; } public SalesOrderFreightItem setConsignmentNote(SalesOrderConsignmentNote value) { this.ConsignmentNote = value; return this; } } public static class SalesOrderLine { public Integer ItemNo = null; public Boolean CommentLine = null; public BigDecimal QuantityOrdered = null; public BigDecimal QuantityDemand = null; public BigDecimal QuantityThisDel = null; public BigDecimal QuantityBackOrd = null; public Boolean Picked = null; public BigDecimal PriceExGst = null; public BigDecimal PriceIncGst = null; public BigDecimal DiscountedPrice = null; public BigDecimal TaxToCharge = null; public TaxRate TaxRate = null; public BigDecimal UnitCost = null; public Boolean FixSellPrice = null; public Boolean FixPrice = null; public BigDecimal UserDefinedFloat1 = null; public BigDecimal UserDefinedFloat2 = null; public BigDecimal UserDefinedFloat3 = null; public Date ForwardOrderDate = null; public Date ScheduledDate = null; public BigDecimal LineTotal = null; public BigDecimal Weight = null; public BigDecimal Cubic = null; public BigDecimal QuotedDiscountedPrice = null; public BigDecimal QuotedDiscountPercentage = null; public BigDecimal DiscountedPercentage = null; public BigDecimal DiscountGiven = null; public BigDecimal QuantityDecimalPlaces = null; public BigDecimal QuantityOriginalOrdered = null; public SalesOrderSerialStockSelectionTypesEnum SalesOrderSerialStockSelectionTypes = null; public Boolean NonInventory = null; public String InvoiceLineID = null; public String InventoryID = null; public String PartNo = null; public String Description = null; public String CommentText = null; public String Aux2 = null; public String LineLinkID = null; public String EDIStoreLocationCode = null; public String EDIDCLocationCode = null; public String CostCenter = null; public String Stage = null; public ArrayList CustomFieldValues = null; public ArrayList LineDetails = null; public ArrayList ShippingLabels = null; public InventoryUnitOfMeasure UnitOfMeasure = null; public SalesOrderKitLineTypesEnum KitLineType = null; public BigDecimal KitUnits = null; public String KitHeaderLineID = null; public Integer getItemNo() { return ItemNo; } public SalesOrderLine setItemNo(Integer value) { this.ItemNo = value; return this; } public Boolean isCommentLine() { return CommentLine; } public SalesOrderLine setCommentLine(Boolean value) { this.CommentLine = value; return this; } public BigDecimal getQuantityOrdered() { return QuantityOrdered; } public SalesOrderLine setQuantityOrdered(BigDecimal value) { this.QuantityOrdered = value; return this; } public BigDecimal getQuantityDemand() { return QuantityDemand; } public SalesOrderLine setQuantityDemand(BigDecimal value) { this.QuantityDemand = value; return this; } public BigDecimal getQuantityThisDel() { return QuantityThisDel; } public SalesOrderLine setQuantityThisDel(BigDecimal value) { this.QuantityThisDel = value; return this; } public BigDecimal getQuantityBackOrd() { return QuantityBackOrd; } public SalesOrderLine setQuantityBackOrd(BigDecimal value) { this.QuantityBackOrd = value; return this; } public Boolean isPicked() { return Picked; } public SalesOrderLine setPicked(Boolean value) { this.Picked = value; return this; } public BigDecimal getPriceExGst() { return PriceExGst; } public SalesOrderLine setPriceExGst(BigDecimal value) { this.PriceExGst = value; return this; } public BigDecimal getPriceIncGst() { return PriceIncGst; } public SalesOrderLine setPriceIncGst(BigDecimal value) { this.PriceIncGst = value; return this; } public BigDecimal getDiscountedPrice() { return DiscountedPrice; } public SalesOrderLine setDiscountedPrice(BigDecimal value) { this.DiscountedPrice = value; return this; } public BigDecimal getTaxToCharge() { return TaxToCharge; } public SalesOrderLine setTaxToCharge(BigDecimal value) { this.TaxToCharge = value; return this; } public TaxRate getTaxRate() { return TaxRate; } public SalesOrderLine setTaxRate(TaxRate value) { this.TaxRate = value; return this; } public BigDecimal getUnitCost() { return UnitCost; } public SalesOrderLine setUnitCost(BigDecimal value) { this.UnitCost = value; return this; } public Boolean isFixSellPrice() { return FixSellPrice; } public SalesOrderLine setFixSellPrice(Boolean value) { this.FixSellPrice = value; return this; } public Boolean isFixPrice() { return FixPrice; } public SalesOrderLine setFixPrice(Boolean value) { this.FixPrice = value; return this; } public BigDecimal getUserDefinedFloat1() { return UserDefinedFloat1; } public SalesOrderLine setUserDefinedFloat1(BigDecimal value) { this.UserDefinedFloat1 = value; return this; } public BigDecimal getUserDefinedFloat2() { return UserDefinedFloat2; } public SalesOrderLine setUserDefinedFloat2(BigDecimal value) { this.UserDefinedFloat2 = value; return this; } public BigDecimal getUserDefinedFloat3() { return UserDefinedFloat3; } public SalesOrderLine setUserDefinedFloat3(BigDecimal value) { this.UserDefinedFloat3 = value; return this; } public Date getForwardOrderDate() { return ForwardOrderDate; } public SalesOrderLine setForwardOrderDate(Date value) { this.ForwardOrderDate = value; return this; } public Date getScheduledDate() { return ScheduledDate; } public SalesOrderLine setScheduledDate(Date value) { this.ScheduledDate = value; return this; } public BigDecimal getLineTotal() { return LineTotal; } public SalesOrderLine setLineTotal(BigDecimal value) { this.LineTotal = value; return this; } public BigDecimal getWeight() { return Weight; } public SalesOrderLine setWeight(BigDecimal value) { this.Weight = value; return this; } public BigDecimal getCubic() { return Cubic; } public SalesOrderLine setCubic(BigDecimal value) { this.Cubic = value; return this; } public BigDecimal getQuotedDiscountedPrice() { return QuotedDiscountedPrice; } public SalesOrderLine setQuotedDiscountedPrice(BigDecimal value) { this.QuotedDiscountedPrice = value; return this; } public BigDecimal getQuotedDiscountPercentage() { return QuotedDiscountPercentage; } public SalesOrderLine setQuotedDiscountPercentage(BigDecimal value) { this.QuotedDiscountPercentage = value; return this; } public BigDecimal getDiscountedPercentage() { return DiscountedPercentage; } public SalesOrderLine setDiscountedPercentage(BigDecimal value) { this.DiscountedPercentage = value; return this; } public BigDecimal getDiscountGiven() { return DiscountGiven; } public SalesOrderLine setDiscountGiven(BigDecimal value) { this.DiscountGiven = value; return this; } public BigDecimal getQuantityDecimalPlaces() { return QuantityDecimalPlaces; } public SalesOrderLine setQuantityDecimalPlaces(BigDecimal value) { this.QuantityDecimalPlaces = value; return this; } public BigDecimal getQuantityOriginalOrdered() { return QuantityOriginalOrdered; } public SalesOrderLine setQuantityOriginalOrdered(BigDecimal value) { this.QuantityOriginalOrdered = value; return this; } public SalesOrderSerialStockSelectionTypesEnum getSalesOrderSerialStockSelectionTypes() { return SalesOrderSerialStockSelectionTypes; } public SalesOrderLine setSalesOrderSerialStockSelectionTypes(SalesOrderSerialStockSelectionTypesEnum value) { this.SalesOrderSerialStockSelectionTypes = value; return this; } public Boolean isNonInventory() { return NonInventory; } public SalesOrderLine setNonInventory(Boolean value) { this.NonInventory = value; return this; } public String getInvoiceLineID() { return InvoiceLineID; } public SalesOrderLine setInvoiceLineID(String value) { this.InvoiceLineID = value; return this; } public String getInventoryID() { return InventoryID; } public SalesOrderLine setInventoryID(String value) { this.InventoryID = value; return this; } public String getPartNo() { return PartNo; } public SalesOrderLine setPartNo(String value) { this.PartNo = value; return this; } public String getDescription() { return Description; } public SalesOrderLine setDescription(String value) { this.Description = value; return this; } public String getCommentText() { return CommentText; } public SalesOrderLine setCommentText(String value) { this.CommentText = value; return this; } public String getAux2() { return Aux2; } public SalesOrderLine setAux2(String value) { this.Aux2 = value; return this; } public String getLineLinkID() { return LineLinkID; } public SalesOrderLine setLineLinkID(String value) { this.LineLinkID = value; return this; } public String getEdiStoreLocationCode() { return EDIStoreLocationCode; } public SalesOrderLine setEdiStoreLocationCode(String value) { this.EDIStoreLocationCode = value; return this; } public String getEdidcLocationCode() { return EDIDCLocationCode; } public SalesOrderLine setEdidcLocationCode(String value) { this.EDIDCLocationCode = value; return this; } public String getCostCenter() { return CostCenter; } public SalesOrderLine setCostCenter(String value) { this.CostCenter = value; return this; } public String getStage() { return Stage; } public SalesOrderLine setStage(String value) { this.Stage = value; return this; } public ArrayList getCustomFieldValues() { return CustomFieldValues; } public SalesOrderLine setCustomFieldValues(ArrayList value) { this.CustomFieldValues = value; return this; } public ArrayList getLineDetails() { return LineDetails; } public SalesOrderLine setLineDetails(ArrayList value) { this.LineDetails = value; return this; } public ArrayList getShippingLabels() { return ShippingLabels; } public SalesOrderLine setShippingLabels(ArrayList value) { this.ShippingLabels = value; return this; } public InventoryUnitOfMeasure getUnitOfMeasure() { return UnitOfMeasure; } public SalesOrderLine setUnitOfMeasure(InventoryUnitOfMeasure value) { this.UnitOfMeasure = value; return this; } public SalesOrderKitLineTypesEnum getKitLineType() { return KitLineType; } public SalesOrderLine setKitLineType(SalesOrderKitLineTypesEnum value) { this.KitLineType = value; return this; } public BigDecimal getKitUnits() { return KitUnits; } public SalesOrderLine setKitUnits(BigDecimal value) { this.KitUnits = value; return this; } public String getKitHeaderLineID() { return KitHeaderLineID; } public SalesOrderLine setKitHeaderLineID(String value) { this.KitHeaderLineID = value; return this; } } public static class SalesOrderLineDetail { public BigDecimal Cost = null; public Date DateIn = null; public Date ExpiryDate = null; public BigDecimal SpecialPrice = null; public BigDecimal Quantity = null; public String LineDetailID = null; public String BinLocation = null; public String SerialNo = null; public String SOHID = null; public String IN_LogicalID = null; public BigDecimal getCost() { return Cost; } public SalesOrderLineDetail setCost(BigDecimal value) { this.Cost = value; return this; } public Date getDateIn() { return DateIn; } public SalesOrderLineDetail setDateIn(Date value) { this.DateIn = value; return this; } public Date getExpiryDate() { return ExpiryDate; } public SalesOrderLineDetail setExpiryDate(Date value) { this.ExpiryDate = value; return this; } public BigDecimal getSpecialPrice() { return SpecialPrice; } public SalesOrderLineDetail setSpecialPrice(BigDecimal value) { this.SpecialPrice = value; return this; } public BigDecimal getQuantity() { return Quantity; } public SalesOrderLineDetail setQuantity(BigDecimal value) { this.Quantity = value; return this; } public String getLineDetailID() { return LineDetailID; } public SalesOrderLineDetail setLineDetailID(String value) { this.LineDetailID = value; return this; } public String getBinLocation() { return BinLocation; } public SalesOrderLineDetail setBinLocation(String value) { this.BinLocation = value; return this; } public String getSerialNo() { return SerialNo; } public SalesOrderLineDetail setSerialNo(String value) { this.SerialNo = value; return this; } public String getSohid() { return SOHID; } public SalesOrderLineDetail setSohid(String value) { this.SOHID = value; return this; } public String getInLogicalID() { return IN_LogicalID; } public SalesOrderLineDetail setInLogicalID(String value) { this.IN_LogicalID = value; return this; } } public static class PaymentType { public String PaymentTypeID = null; public String Name = null; public String Code = null; public Integer ItemNo = null; public Boolean IsEnabled = null; public Boolean IsDefault = null; public Boolean IsCreditCard = null; public Boolean IsPOS = null; public Account GeneralLedgerAccount = null; public String getPaymentTypeID() { return PaymentTypeID; } public PaymentType setPaymentTypeID(String value) { this.PaymentTypeID = value; return this; } public String getName() { return Name; } public PaymentType setName(String value) { this.Name = value; return this; } public String getCode() { return Code; } public PaymentType setCode(String value) { this.Code = value; return this; } public Integer getItemNo() { return ItemNo; } public PaymentType setItemNo(Integer value) { this.ItemNo = value; return this; } public Boolean getIsEnabled() { return IsEnabled; } public PaymentType setIsEnabled(Boolean value) { this.IsEnabled = value; return this; } public Boolean getIsDefault() { return IsDefault; } public PaymentType setIsDefault(Boolean value) { this.IsDefault = value; return this; } public Boolean getIsCreditCard() { return IsCreditCard; } public PaymentType setIsCreditCard(Boolean value) { this.IsCreditCard = value; return this; } public Boolean getIsPOS() { return IsPOS; } public PaymentType setIsPOS(Boolean value) { this.IsPOS = value; return this; } public Account getGeneralLedgerAccount() { return GeneralLedgerAccount; } public PaymentType setGeneralLedgerAccount(Account value) { this.GeneralLedgerAccount = value; return this; } } public static class SalesOrderPayment { public Integer HistoryNo = null; public PaymentType PaymentType = null; public BigDecimal AmountPaid = null; public Date PaymentDate = null; public Boolean ProcessPayment = null; public PaymentAuthStatuses AuthorisationStatus = null; public Integer PaymentGatewayReturnCode = null; public Boolean Processed = null; public Date CardExpiry = null; public String PaymentID = null; public String PaymentRef = null; public String AuthorisationNumber = null; public String PaymentGatewayReturnMessage = null; public String CardNumber = null; public String CardHolder = null; public String BankName = null; public String BSBN = null; public String BankAcc = null; public String AccountName = null; public Integer getHistoryNo() { return HistoryNo; } public SalesOrderPayment setHistoryNo(Integer value) { this.HistoryNo = value; return this; } public PaymentType getPaymentType() { return PaymentType; } public SalesOrderPayment setPaymentType(PaymentType value) { this.PaymentType = value; return this; } public BigDecimal getAmountPaid() { return AmountPaid; } public SalesOrderPayment setAmountPaid(BigDecimal value) { this.AmountPaid = value; return this; } public Date getPaymentDate() { return PaymentDate; } public SalesOrderPayment setPaymentDate(Date value) { this.PaymentDate = value; return this; } public Boolean isProcessPayment() { return ProcessPayment; } public SalesOrderPayment setProcessPayment(Boolean value) { this.ProcessPayment = value; return this; } public PaymentAuthStatuses getAuthorisationStatus() { return AuthorisationStatus; } public SalesOrderPayment setAuthorisationStatus(PaymentAuthStatuses value) { this.AuthorisationStatus = value; return this; } public Integer getPaymentGatewayReturnCode() { return PaymentGatewayReturnCode; } public SalesOrderPayment setPaymentGatewayReturnCode(Integer value) { this.PaymentGatewayReturnCode = value; return this; } public Boolean isProcessed() { return Processed; } public SalesOrderPayment setProcessed(Boolean value) { this.Processed = value; return this; } public Date getCardExpiry() { return CardExpiry; } public SalesOrderPayment setCardExpiry(Date value) { this.CardExpiry = value; return this; } public String getPaymentID() { return PaymentID; } public SalesOrderPayment setPaymentID(String value) { this.PaymentID = value; return this; } public String getPaymentRef() { return PaymentRef; } public SalesOrderPayment setPaymentRef(String value) { this.PaymentRef = value; return this; } public String getAuthorisationNumber() { return AuthorisationNumber; } public SalesOrderPayment setAuthorisationNumber(String value) { this.AuthorisationNumber = value; return this; } public String getPaymentGatewayReturnMessage() { return PaymentGatewayReturnMessage; } public SalesOrderPayment setPaymentGatewayReturnMessage(String value) { this.PaymentGatewayReturnMessage = value; return this; } public String getCardNumber() { return CardNumber; } public SalesOrderPayment setCardNumber(String value) { this.CardNumber = value; return this; } public String getCardHolder() { return CardHolder; } public SalesOrderPayment setCardHolder(String value) { this.CardHolder = value; return this; } public String getBankName() { return BankName; } public SalesOrderPayment setBankName(String value) { this.BankName = value; return this; } public String getBsbn() { return BSBN; } public SalesOrderPayment setBsbn(String value) { this.BSBN = value; return this; } public String getBankAcc() { return BankAcc; } public SalesOrderPayment setBankAcc(String value) { this.BankAcc = value; return this; } public String getAccountName() { return AccountName; } public SalesOrderPayment setAccountName(String value) { this.AccountName = value; return this; } } public static class SalesQuote { public String Type = null; public SalesQuoteSettings SystemSettings = null; public Date LastSavedDateTime = null; public String QuoteID = null; public String QuoteNo = null; public String LogicalID = null; public String LogicalWarehouseDescription = null; public String PhysicalWarehouseDescription = null; public String StaffID = null; public String StaffUserName = null; public String StaffTitle = null; public String StaffFirstName = null; public String StaffSurname = null; public String BranchID = null; public String BranchName = null; public String BranchDescription = null; public Date InitiatedDate = null; public Date InvoiceInitDate = null; public String OrderNo = null; public String TaxExemptionNo = null; public String SOReference = null; public e_SalesQuoteTypes SalesQuoteType = null; public e_SalesQuoteOrderTypes OrderType = null; public e_SalesQuoteStatuses Status = null; public e_SalesQuoteBillTypes BillType = null; public Date ExpectedDeliveryDate = null; public String DebtorID = null; public String DebtorAccountNo = null; public String DebtorName = null; public String DebtorEmailAddress = null; public String DebtorContactName = null; public String DeliveryAddressee = null; public String DeliveryAddress1 = null; public String DeliveryAddress2 = null; public String DeliveryAddressSuburb = null; public String DeliveryAddressState = null; public String DeliveryAddressContactName = null; public String DeliveryAddressPostcode = null; public String DeliveryAddressCountry = null; public String DeliveryAddressNotes = null; public String DeliveryAddressCourierDetails = null; public Boolean DropShipment = null; public BigDecimal Cartage1ExGst = null; public BigDecimal Cartage1GstRate = null; public BigDecimal Cartage1Gst = null; public BigDecimal Cartage2ExGst = null; public BigDecimal Cartage2GstRate = null; public BigDecimal Cartage2Gst = null; public BigDecimal Cartage3ExGst = null; public BigDecimal Cartage3GstRate = null; public BigDecimal Cartage3Gst = null; public ArrayList CustomFieldValues = null; public ArrayList Notes = null; public ArrayList Documents = null; public ArrayList Lines = null; public ArrayList Histories = null; public SalesQuoteCashSales CashSales = null; public SalesQuoteJobCosting JobCosting = null; public String getType() { return Type; } public SalesQuote setType(String value) { this.Type = value; return this; } public SalesQuoteSettings getSystemSettings() { return SystemSettings; } public SalesQuote setSystemSettings(SalesQuoteSettings value) { this.SystemSettings = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public SalesQuote setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public String getQuoteID() { return QuoteID; } public SalesQuote setQuoteID(String value) { this.QuoteID = value; return this; } public String getQuoteNo() { return QuoteNo; } public SalesQuote setQuoteNo(String value) { this.QuoteNo = value; return this; } public String getLogicalID() { return LogicalID; } public SalesQuote setLogicalID(String value) { this.LogicalID = value; return this; } public String getLogicalWarehouseDescription() { return LogicalWarehouseDescription; } public SalesQuote setLogicalWarehouseDescription(String value) { this.LogicalWarehouseDescription = value; return this; } public String getPhysicalWarehouseDescription() { return PhysicalWarehouseDescription; } public SalesQuote setPhysicalWarehouseDescription(String value) { this.PhysicalWarehouseDescription = value; return this; } public String getStaffID() { return StaffID; } public SalesQuote setStaffID(String value) { this.StaffID = value; return this; } public String getStaffUserName() { return StaffUserName; } public SalesQuote setStaffUserName(String value) { this.StaffUserName = value; return this; } public String getStaffTitle() { return StaffTitle; } public SalesQuote setStaffTitle(String value) { this.StaffTitle = value; return this; } public String getStaffFirstName() { return StaffFirstName; } public SalesQuote setStaffFirstName(String value) { this.StaffFirstName = value; return this; } public String getStaffSurname() { return StaffSurname; } public SalesQuote setStaffSurname(String value) { this.StaffSurname = value; return this; } public String getBranchID() { return BranchID; } public SalesQuote setBranchID(String value) { this.BranchID = value; return this; } public String getBranchName() { return BranchName; } public SalesQuote setBranchName(String value) { this.BranchName = value; return this; } public String getBranchDescription() { return BranchDescription; } public SalesQuote setBranchDescription(String value) { this.BranchDescription = value; return this; } public Date getInitiatedDate() { return InitiatedDate; } public SalesQuote setInitiatedDate(Date value) { this.InitiatedDate = value; return this; } public Date getInvoiceInitDate() { return InvoiceInitDate; } public SalesQuote setInvoiceInitDate(Date value) { this.InvoiceInitDate = value; return this; } public String getOrderNo() { return OrderNo; } public SalesQuote setOrderNo(String value) { this.OrderNo = value; return this; } public String getTaxExemptionNo() { return TaxExemptionNo; } public SalesQuote setTaxExemptionNo(String value) { this.TaxExemptionNo = value; return this; } public String getSoReference() { return SOReference; } public SalesQuote setSoReference(String value) { this.SOReference = value; return this; } public e_SalesQuoteTypes getSalesQuoteType() { return SalesQuoteType; } public SalesQuote setSalesQuoteType(e_SalesQuoteTypes value) { this.SalesQuoteType = value; return this; } public e_SalesQuoteOrderTypes getOrderType() { return OrderType; } public SalesQuote setOrderType(e_SalesQuoteOrderTypes value) { this.OrderType = value; return this; } public e_SalesQuoteStatuses getStatus() { return Status; } public SalesQuote setStatus(e_SalesQuoteStatuses value) { this.Status = value; return this; } public e_SalesQuoteBillTypes getBillType() { return BillType; } public SalesQuote setBillType(e_SalesQuoteBillTypes value) { this.BillType = value; return this; } public Date getExpectedDeliveryDate() { return ExpectedDeliveryDate; } public SalesQuote setExpectedDeliveryDate(Date value) { this.ExpectedDeliveryDate = value; return this; } public String getDebtorID() { return DebtorID; } public SalesQuote setDebtorID(String value) { this.DebtorID = value; return this; } public String getDebtorAccountNo() { return DebtorAccountNo; } public SalesQuote setDebtorAccountNo(String value) { this.DebtorAccountNo = value; return this; } public String getDebtorName() { return DebtorName; } public SalesQuote setDebtorName(String value) { this.DebtorName = value; return this; } public String getDebtorEmailAddress() { return DebtorEmailAddress; } public SalesQuote setDebtorEmailAddress(String value) { this.DebtorEmailAddress = value; return this; } public String getDebtorContactName() { return DebtorContactName; } public SalesQuote setDebtorContactName(String value) { this.DebtorContactName = value; return this; } public String getDeliveryAddressee() { return DeliveryAddressee; } public SalesQuote setDeliveryAddressee(String value) { this.DeliveryAddressee = value; return this; } public String getDeliveryAddress1() { return DeliveryAddress1; } public SalesQuote setDeliveryAddress1(String value) { this.DeliveryAddress1 = value; return this; } public String getDeliveryAddress2() { return DeliveryAddress2; } public SalesQuote setDeliveryAddress2(String value) { this.DeliveryAddress2 = value; return this; } public String getDeliveryAddressSuburb() { return DeliveryAddressSuburb; } public SalesQuote setDeliveryAddressSuburb(String value) { this.DeliveryAddressSuburb = value; return this; } public String getDeliveryAddressState() { return DeliveryAddressState; } public SalesQuote setDeliveryAddressState(String value) { this.DeliveryAddressState = value; return this; } public String getDeliveryAddressContactName() { return DeliveryAddressContactName; } public SalesQuote setDeliveryAddressContactName(String value) { this.DeliveryAddressContactName = value; return this; } public String getDeliveryAddressPostcode() { return DeliveryAddressPostcode; } public SalesQuote setDeliveryAddressPostcode(String value) { this.DeliveryAddressPostcode = value; return this; } public String getDeliveryAddressCountry() { return DeliveryAddressCountry; } public SalesQuote setDeliveryAddressCountry(String value) { this.DeliveryAddressCountry = value; return this; } public String getDeliveryAddressNotes() { return DeliveryAddressNotes; } public SalesQuote setDeliveryAddressNotes(String value) { this.DeliveryAddressNotes = value; return this; } public String getDeliveryAddressCourierDetails() { return DeliveryAddressCourierDetails; } public SalesQuote setDeliveryAddressCourierDetails(String value) { this.DeliveryAddressCourierDetails = value; return this; } public Boolean isDropShipment() { return DropShipment; } public SalesQuote setDropShipment(Boolean value) { this.DropShipment = value; return this; } public BigDecimal getCartage1ExGst() { return Cartage1ExGst; } public SalesQuote setCartage1ExGst(BigDecimal value) { this.Cartage1ExGst = value; return this; } public BigDecimal getCartage1GstRate() { return Cartage1GstRate; } public SalesQuote setCartage1GstRate(BigDecimal value) { this.Cartage1GstRate = value; return this; } public BigDecimal getCartage1Gst() { return Cartage1Gst; } public SalesQuote setCartage1Gst(BigDecimal value) { this.Cartage1Gst = value; return this; } public BigDecimal getCartage2ExGst() { return Cartage2ExGst; } public SalesQuote setCartage2ExGst(BigDecimal value) { this.Cartage2ExGst = value; return this; } public BigDecimal getCartage2GstRate() { return Cartage2GstRate; } public SalesQuote setCartage2GstRate(BigDecimal value) { this.Cartage2GstRate = value; return this; } public BigDecimal getCartage2Gst() { return Cartage2Gst; } public SalesQuote setCartage2Gst(BigDecimal value) { this.Cartage2Gst = value; return this; } public BigDecimal getCartage3ExGst() { return Cartage3ExGst; } public SalesQuote setCartage3ExGst(BigDecimal value) { this.Cartage3ExGst = value; return this; } public BigDecimal getCartage3GstRate() { return Cartage3GstRate; } public SalesQuote setCartage3GstRate(BigDecimal value) { this.Cartage3GstRate = value; return this; } public BigDecimal getCartage3Gst() { return Cartage3Gst; } public SalesQuote setCartage3Gst(BigDecimal value) { this.Cartage3Gst = value; return this; } public ArrayList getCustomFieldValues() { return CustomFieldValues; } public SalesQuote setCustomFieldValues(ArrayList value) { this.CustomFieldValues = value; return this; } public ArrayList getNotes() { return Notes; } public SalesQuote setNotes(ArrayList value) { this.Notes = value; return this; } public ArrayList getDocuments() { return Documents; } public SalesQuote setDocuments(ArrayList value) { this.Documents = value; return this; } public ArrayList getLines() { return Lines; } public SalesQuote setLines(ArrayList value) { this.Lines = value; return this; } public ArrayList getHistories() { return Histories; } public SalesQuote setHistories(ArrayList value) { this.Histories = value; return this; } public SalesQuoteCashSales getCashSales() { return CashSales; } public SalesQuote setCashSales(SalesQuoteCashSales value) { this.CashSales = value; return this; } public SalesQuoteJobCosting getJobCosting() { return JobCosting; } public SalesQuote setJobCosting(SalesQuoteJobCosting value) { this.JobCosting = value; return this; } } public static class SalesQuoteHistory { public String QuoteHistoryID = null; public Integer HistoryNo = null; public SalesStage SalesStage = null; public CartageCharge CartageCharge1 = null; public CartageCharge CartageCharge2 = null; public CartageCharge CartageCharge3 = null; public OpportunityStatusReason OpportunityStatusReason = null; public String Ref = null; public String LastModifiedBy = null; public BigDecimal HistoryTotal = null; public Date RecordDate = null; public Date ExpiryDate = null; public Integer ExpiryDays = null; public Boolean DocketPrinted = null; public String DelAddress1 = null; public String DelAddress2 = null; public String DelAddress3 = null; public String DelAddress4 = null; public String PostCode = null; public String DeliveryAddressCountry = null; public String Notes = null; public String CourierDetails = null; public String FreightForwardAddress1 = null; public String FreightForwardAddress2 = null; public String FreightForwardAddress3 = null; public String FreightForwardAddress4 = null; public String FreightForwardAddressCountry = null; public String FreightForwardNotes = null; public Boolean InvoicePrinted = null; public String DelContactName = null; public Date ExpectedCloseDate = null; public StatusTypes OpportunityStatus = null; public String OpportunityNote = null; public Boolean InvoiceEmailed = null; public Boolean DropShipment = null; public String DeliveryAddressee = null; public String getQuoteHistoryID() { return QuoteHistoryID; } public SalesQuoteHistory setQuoteHistoryID(String value) { this.QuoteHistoryID = value; return this; } public Integer getHistoryNo() { return HistoryNo; } public SalesQuoteHistory setHistoryNo(Integer value) { this.HistoryNo = value; return this; } public SalesStage getSalesStage() { return SalesStage; } public SalesQuoteHistory setSalesStage(SalesStage value) { this.SalesStage = value; return this; } public CartageCharge getCartageCharge1() { return CartageCharge1; } public SalesQuoteHistory setCartageCharge1(CartageCharge value) { this.CartageCharge1 = value; return this; } public CartageCharge getCartageCharge2() { return CartageCharge2; } public SalesQuoteHistory setCartageCharge2(CartageCharge value) { this.CartageCharge2 = value; return this; } public CartageCharge getCartageCharge3() { return CartageCharge3; } public SalesQuoteHistory setCartageCharge3(CartageCharge value) { this.CartageCharge3 = value; return this; } public OpportunityStatusReason getOpportunityStatusReason() { return OpportunityStatusReason; } public SalesQuoteHistory setOpportunityStatusReason(OpportunityStatusReason value) { this.OpportunityStatusReason = value; return this; } public String getRef() { return Ref; } public SalesQuoteHistory setRef(String value) { this.Ref = value; return this; } public String getLastModifiedBy() { return LastModifiedBy; } public SalesQuoteHistory setLastModifiedBy(String value) { this.LastModifiedBy = value; return this; } public BigDecimal getHistoryTotal() { return HistoryTotal; } public SalesQuoteHistory setHistoryTotal(BigDecimal value) { this.HistoryTotal = value; return this; } public Date getRecordDate() { return RecordDate; } public SalesQuoteHistory setRecordDate(Date value) { this.RecordDate = value; return this; } public Date getExpiryDate() { return ExpiryDate; } public SalesQuoteHistory setExpiryDate(Date value) { this.ExpiryDate = value; return this; } public Integer getExpiryDays() { return ExpiryDays; } public SalesQuoteHistory setExpiryDays(Integer value) { this.ExpiryDays = value; return this; } public Boolean isDocketPrinted() { return DocketPrinted; } public SalesQuoteHistory setDocketPrinted(Boolean value) { this.DocketPrinted = value; return this; } public String getDelAddress1() { return DelAddress1; } public SalesQuoteHistory setDelAddress1(String value) { this.DelAddress1 = value; return this; } public String getDelAddress2() { return DelAddress2; } public SalesQuoteHistory setDelAddress2(String value) { this.DelAddress2 = value; return this; } public String getDelAddress3() { return DelAddress3; } public SalesQuoteHistory setDelAddress3(String value) { this.DelAddress3 = value; return this; } public String getDelAddress4() { return DelAddress4; } public SalesQuoteHistory setDelAddress4(String value) { this.DelAddress4 = value; return this; } public String getPostCode() { return PostCode; } public SalesQuoteHistory setPostCode(String value) { this.PostCode = value; return this; } public String getDeliveryAddressCountry() { return DeliveryAddressCountry; } public SalesQuoteHistory setDeliveryAddressCountry(String value) { this.DeliveryAddressCountry = value; return this; } public String getNotes() { return Notes; } public SalesQuoteHistory setNotes(String value) { this.Notes = value; return this; } public String getCourierDetails() { return CourierDetails; } public SalesQuoteHistory setCourierDetails(String value) { this.CourierDetails = value; return this; } public String getFreightForwardAddress1() { return FreightForwardAddress1; } public SalesQuoteHistory setFreightForwardAddress1(String value) { this.FreightForwardAddress1 = value; return this; } public String getFreightForwardAddress2() { return FreightForwardAddress2; } public SalesQuoteHistory setFreightForwardAddress2(String value) { this.FreightForwardAddress2 = value; return this; } public String getFreightForwardAddress3() { return FreightForwardAddress3; } public SalesQuoteHistory setFreightForwardAddress3(String value) { this.FreightForwardAddress3 = value; return this; } public String getFreightForwardAddress4() { return FreightForwardAddress4; } public SalesQuoteHistory setFreightForwardAddress4(String value) { this.FreightForwardAddress4 = value; return this; } public String getFreightForwardAddressCountry() { return FreightForwardAddressCountry; } public SalesQuoteHistory setFreightForwardAddressCountry(String value) { this.FreightForwardAddressCountry = value; return this; } public String getFreightForwardNotes() { return FreightForwardNotes; } public SalesQuoteHistory setFreightForwardNotes(String value) { this.FreightForwardNotes = value; return this; } public Boolean isInvoicePrinted() { return InvoicePrinted; } public SalesQuoteHistory setInvoicePrinted(Boolean value) { this.InvoicePrinted = value; return this; } public String getDelContactName() { return DelContactName; } public SalesQuoteHistory setDelContactName(String value) { this.DelContactName = value; return this; } public Date getExpectedCloseDate() { return ExpectedCloseDate; } public SalesQuoteHistory setExpectedCloseDate(Date value) { this.ExpectedCloseDate = value; return this; } public StatusTypes getOpportunityStatus() { return OpportunityStatus; } public SalesQuoteHistory setOpportunityStatus(StatusTypes value) { this.OpportunityStatus = value; return this; } public String getOpportunityNote() { return OpportunityNote; } public SalesQuoteHistory setOpportunityNote(String value) { this.OpportunityNote = value; return this; } public Boolean isInvoiceEmailed() { return InvoiceEmailed; } public SalesQuoteHistory setInvoiceEmailed(Boolean value) { this.InvoiceEmailed = value; return this; } public Boolean isDropShipment() { return DropShipment; } public SalesQuoteHistory setDropShipment(Boolean value) { this.DropShipment = value; return this; } public String getDeliveryAddressee() { return DeliveryAddressee; } public SalesQuoteHistory setDeliveryAddressee(String value) { this.DeliveryAddressee = value; return this; } } public static class SalesQuoteLine { public Integer ItemNo = null; public String QuoteLineID = null; public String InventoryID = null; public String PartNo = null; public String Description = null; public Boolean CommentLine = null; public String CommentText = null; public BigDecimal QuantityOrdered = null; public BigDecimal PriceExGst = null; public BigDecimal PriceIncGst = null; public BigDecimal DiscountedPrice = null; public BigDecimal TaxToCharge = null; public BigDecimal TaxRate = null; public BigDecimal UnitCost = null; public String LineLinkID = null; public Boolean FixSellPrice = null; public BigDecimal UserDefinedFloat1 = null; public BigDecimal UserDefinedFloat2 = null; public BigDecimal UserDefinedFloat3 = null; public BigDecimal LineTotal = null; public BigDecimal Weight = null; public BigDecimal Cubic = null; public BigDecimal DiscountedPercentage = null; public BigDecimal DiscountGiven = null; public BigDecimal QuantityDecimalPlaces = null; public BigDecimal QuantityOriginalOrdered = null; public Boolean NonInventory = null; public ArrayList CustomFieldValues = null; public SalesQuoteKitLineTypesEnum KitLineType = null; public BigDecimal KitUnits = null; public String KitHeaderLineID = null; public Integer getItemNo() { return ItemNo; } public SalesQuoteLine setItemNo(Integer value) { this.ItemNo = value; return this; } public String getQuoteLineID() { return QuoteLineID; } public SalesQuoteLine setQuoteLineID(String value) { this.QuoteLineID = value; return this; } public String getInventoryID() { return InventoryID; } public SalesQuoteLine setInventoryID(String value) { this.InventoryID = value; return this; } public String getPartNo() { return PartNo; } public SalesQuoteLine setPartNo(String value) { this.PartNo = value; return this; } public String getDescription() { return Description; } public SalesQuoteLine setDescription(String value) { this.Description = value; return this; } public Boolean isCommentLine() { return CommentLine; } public SalesQuoteLine setCommentLine(Boolean value) { this.CommentLine = value; return this; } public String getCommentText() { return CommentText; } public SalesQuoteLine setCommentText(String value) { this.CommentText = value; return this; } public BigDecimal getQuantityOrdered() { return QuantityOrdered; } public SalesQuoteLine setQuantityOrdered(BigDecimal value) { this.QuantityOrdered = value; return this; } public BigDecimal getPriceExGst() { return PriceExGst; } public SalesQuoteLine setPriceExGst(BigDecimal value) { this.PriceExGst = value; return this; } public BigDecimal getPriceIncGst() { return PriceIncGst; } public SalesQuoteLine setPriceIncGst(BigDecimal value) { this.PriceIncGst = value; return this; } public BigDecimal getDiscountedPrice() { return DiscountedPrice; } public SalesQuoteLine setDiscountedPrice(BigDecimal value) { this.DiscountedPrice = value; return this; } public BigDecimal getTaxToCharge() { return TaxToCharge; } public SalesQuoteLine setTaxToCharge(BigDecimal value) { this.TaxToCharge = value; return this; } public BigDecimal getTaxRate() { return TaxRate; } public SalesQuoteLine setTaxRate(BigDecimal value) { this.TaxRate = value; return this; } public BigDecimal getUnitCost() { return UnitCost; } public SalesQuoteLine setUnitCost(BigDecimal value) { this.UnitCost = value; return this; } public String getLineLinkID() { return LineLinkID; } public SalesQuoteLine setLineLinkID(String value) { this.LineLinkID = value; return this; } public Boolean isFixSellPrice() { return FixSellPrice; } public SalesQuoteLine setFixSellPrice(Boolean value) { this.FixSellPrice = value; return this; } public BigDecimal getUserDefinedFloat1() { return UserDefinedFloat1; } public SalesQuoteLine setUserDefinedFloat1(BigDecimal value) { this.UserDefinedFloat1 = value; return this; } public BigDecimal getUserDefinedFloat2() { return UserDefinedFloat2; } public SalesQuoteLine setUserDefinedFloat2(BigDecimal value) { this.UserDefinedFloat2 = value; return this; } public BigDecimal getUserDefinedFloat3() { return UserDefinedFloat3; } public SalesQuoteLine setUserDefinedFloat3(BigDecimal value) { this.UserDefinedFloat3 = value; return this; } public BigDecimal getLineTotal() { return LineTotal; } public SalesQuoteLine setLineTotal(BigDecimal value) { this.LineTotal = value; return this; } public BigDecimal getWeight() { return Weight; } public SalesQuoteLine setWeight(BigDecimal value) { this.Weight = value; return this; } public BigDecimal getCubic() { return Cubic; } public SalesQuoteLine setCubic(BigDecimal value) { this.Cubic = value; return this; } public BigDecimal getDiscountedPercentage() { return DiscountedPercentage; } public SalesQuoteLine setDiscountedPercentage(BigDecimal value) { this.DiscountedPercentage = value; return this; } public BigDecimal getDiscountGiven() { return DiscountGiven; } public SalesQuoteLine setDiscountGiven(BigDecimal value) { this.DiscountGiven = value; return this; } public BigDecimal getQuantityDecimalPlaces() { return QuantityDecimalPlaces; } public SalesQuoteLine setQuantityDecimalPlaces(BigDecimal value) { this.QuantityDecimalPlaces = value; return this; } public BigDecimal getQuantityOriginalOrdered() { return QuantityOriginalOrdered; } public SalesQuoteLine setQuantityOriginalOrdered(BigDecimal value) { this.QuantityOriginalOrdered = value; return this; } public Boolean isNonInventory() { return NonInventory; } public SalesQuoteLine setNonInventory(Boolean value) { this.NonInventory = value; return this; } public ArrayList getCustomFieldValues() { return CustomFieldValues; } public SalesQuoteLine setCustomFieldValues(ArrayList value) { this.CustomFieldValues = value; return this; } public SalesQuoteKitLineTypesEnum getKitLineType() { return KitLineType; } public SalesQuoteLine setKitLineType(SalesQuoteKitLineTypesEnum value) { this.KitLineType = value; return this; } public BigDecimal getKitUnits() { return KitUnits; } public SalesQuoteLine setKitUnits(BigDecimal value) { this.KitUnits = value; return this; } public String getKitHeaderLineID() { return KitHeaderLineID; } public SalesQuoteLine setKitHeaderLineID(String value) { this.KitHeaderLineID = value; return this; } } public static class StaffCurrentUserGETResponse { public String SessionID = null; public String IPAddress = null; public String Username = null; public String StaffID = null; public Date LoginDateTime = null; public Integer DurationDays = null; public Integer DurationHours = null; public Integer DurationMinutes = null; public Integer DurationSeconds = null; public Long RequestCount = null; public Long ConcurrentRequestCount = null; public Long MaxConcurrentRequestCount = null; public String getSessionID() { return SessionID; } public StaffCurrentUserGETResponse setSessionID(String value) { this.SessionID = value; return this; } public String getIpAddress() { return IPAddress; } public StaffCurrentUserGETResponse setIpAddress(String value) { this.IPAddress = value; return this; } public String getUsername() { return Username; } public StaffCurrentUserGETResponse setUsername(String value) { this.Username = value; return this; } public String getStaffID() { return StaffID; } public StaffCurrentUserGETResponse setStaffID(String value) { this.StaffID = value; return this; } public Date getLoginDateTime() { return LoginDateTime; } public StaffCurrentUserGETResponse setLoginDateTime(Date value) { this.LoginDateTime = value; return this; } public Integer getDurationDays() { return DurationDays; } public StaffCurrentUserGETResponse setDurationDays(Integer value) { this.DurationDays = value; return this; } public Integer getDurationHours() { return DurationHours; } public StaffCurrentUserGETResponse setDurationHours(Integer value) { this.DurationHours = value; return this; } public Integer getDurationMinutes() { return DurationMinutes; } public StaffCurrentUserGETResponse setDurationMinutes(Integer value) { this.DurationMinutes = value; return this; } public Integer getDurationSeconds() { return DurationSeconds; } public StaffCurrentUserGETResponse setDurationSeconds(Integer value) { this.DurationSeconds = value; return this; } public Long getRequestCount() { return RequestCount; } public StaffCurrentUserGETResponse setRequestCount(Long value) { this.RequestCount = value; return this; } public Long getConcurrentRequestCount() { return ConcurrentRequestCount; } public StaffCurrentUserGETResponse setConcurrentRequestCount(Long value) { this.ConcurrentRequestCount = value; return this; } public Long getMaxConcurrentRequestCount() { return MaxConcurrentRequestCount; } public StaffCurrentUserGETResponse setMaxConcurrentRequestCount(Long value) { this.MaxConcurrentRequestCount = value; return this; } } @DataContract public static class QueryResponse { @DataMember(Order=1) public Integer Offset = null; @DataMember(Order=2) public Integer Total = null; @DataMember(Order=3) public ArrayList Results = null; @DataMember(Order=4) public HashMap Meta = null; @DataMember(Order=5) public ResponseStatus ResponseStatus = null; public Integer getOffset() { return Offset; } public QueryResponse setOffset(Integer value) { this.Offset = value; return this; } public Integer getTotal() { return Total; } public QueryResponse setTotal(Integer value) { this.Total = value; return this; } public ArrayList getResults() { return Results; } public QueryResponse setResults(ArrayList value) { this.Results = value; return this; } public HashMap getMeta() { return Meta; } public QueryResponse setMeta(HashMap value) { this.Meta = value; return this; } public ResponseStatus getResponseStatus() { return ResponseStatus; } public QueryResponse setResponseStatus(ResponseStatus value) { this.ResponseStatus = value; return this; } } public static class StockTransfer { public String TransferID = null; public String TransferNo = null; public Statuses Status = null; public Date TransferDate = null; public String Reference = null; public String LogicalWarehouseID = null; public String LogicalWarehouseDescription = null; public String PhysicalWarehouseID = null; public String PhysicalWarehouseDescription = null; public String LastSavedByStaffID = null; public String LastSavedByStaffUserName = null; public String LastSavedByStaffTitle = null; public String LastSavedByStaffFirstName = null; public String LastSavedByStaffSurname = null; public Date LastSavedDateTime = null; public String CreatedByStaffID = null; public String CreatedByStaffUserName = null; public String CreatedByStaffTitle = null; public String CreatedByStaffFirstName = null; public String CreatedByStaffSurname = null; public Date CreatedDateTime = null; public ArrayList Lines = null; public ArrayList Notes = null; public ArrayList Documents = null; public ArrayList CustomFieldValues = null; public String StockTransferReasonRecID = null; public String StockTransferReasonName = null; public Boolean StockTransferReasonIsDefault = null; public Boolean StockTransferReasonWriteOffLedgerAccountOverride = null; public String StockTransferReasonWriteOffLedgerAccountRecID = null; public String StockTransferReasonWriteOffLedgerAccountNo = null; public String StockTransferReasonWriteOffLedgerAccountDescription = null; public Boolean StockTransferReasonWriteOnLedgerAccountOverride = null; public String StockTransferReasonWriteOnLedgerAccountRecID = null; public String StockTransferReasonWriteOnLedgerAccountNo = null; public String StockTransferReasonWriteOnLedgerAccountDescription = null; public String getTransferID() { return TransferID; } public StockTransfer setTransferID(String value) { this.TransferID = value; return this; } public String getTransferNo() { return TransferNo; } public StockTransfer setTransferNo(String value) { this.TransferNo = value; return this; } public Statuses getStatus() { return Status; } public StockTransfer setStatus(Statuses value) { this.Status = value; return this; } public Date getTransferDate() { return TransferDate; } public StockTransfer setTransferDate(Date value) { this.TransferDate = value; return this; } public String getReference() { return Reference; } public StockTransfer setReference(String value) { this.Reference = value; return this; } public String getLogicalWarehouseID() { return LogicalWarehouseID; } public StockTransfer setLogicalWarehouseID(String value) { this.LogicalWarehouseID = value; return this; } public String getLogicalWarehouseDescription() { return LogicalWarehouseDescription; } public StockTransfer setLogicalWarehouseDescription(String value) { this.LogicalWarehouseDescription = value; return this; } public String getPhysicalWarehouseID() { return PhysicalWarehouseID; } public StockTransfer setPhysicalWarehouseID(String value) { this.PhysicalWarehouseID = value; return this; } public String getPhysicalWarehouseDescription() { return PhysicalWarehouseDescription; } public StockTransfer setPhysicalWarehouseDescription(String value) { this.PhysicalWarehouseDescription = value; return this; } public String getLastSavedByStaffID() { return LastSavedByStaffID; } public StockTransfer setLastSavedByStaffID(String value) { this.LastSavedByStaffID = value; return this; } public String getLastSavedByStaffUserName() { return LastSavedByStaffUserName; } public StockTransfer setLastSavedByStaffUserName(String value) { this.LastSavedByStaffUserName = value; return this; } public String getLastSavedByStaffTitle() { return LastSavedByStaffTitle; } public StockTransfer setLastSavedByStaffTitle(String value) { this.LastSavedByStaffTitle = value; return this; } public String getLastSavedByStaffFirstName() { return LastSavedByStaffFirstName; } public StockTransfer setLastSavedByStaffFirstName(String value) { this.LastSavedByStaffFirstName = value; return this; } public String getLastSavedByStaffSurname() { return LastSavedByStaffSurname; } public StockTransfer setLastSavedByStaffSurname(String value) { this.LastSavedByStaffSurname = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public StockTransfer setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public String getCreatedByStaffID() { return CreatedByStaffID; } public StockTransfer setCreatedByStaffID(String value) { this.CreatedByStaffID = value; return this; } public String getCreatedByStaffUserName() { return CreatedByStaffUserName; } public StockTransfer setCreatedByStaffUserName(String value) { this.CreatedByStaffUserName = value; return this; } public String getCreatedByStaffTitle() { return CreatedByStaffTitle; } public StockTransfer setCreatedByStaffTitle(String value) { this.CreatedByStaffTitle = value; return this; } public String getCreatedByStaffFirstName() { return CreatedByStaffFirstName; } public StockTransfer setCreatedByStaffFirstName(String value) { this.CreatedByStaffFirstName = value; return this; } public String getCreatedByStaffSurname() { return CreatedByStaffSurname; } public StockTransfer setCreatedByStaffSurname(String value) { this.CreatedByStaffSurname = value; return this; } public Date getCreatedDateTime() { return CreatedDateTime; } public StockTransfer setCreatedDateTime(Date value) { this.CreatedDateTime = value; return this; } public ArrayList getLines() { return Lines; } public StockTransfer setLines(ArrayList value) { this.Lines = value; return this; } public ArrayList getNotes() { return Notes; } public StockTransfer setNotes(ArrayList value) { this.Notes = value; return this; } public ArrayList getDocuments() { return Documents; } public StockTransfer setDocuments(ArrayList value) { this.Documents = value; return this; } public ArrayList getCustomFieldValues() { return CustomFieldValues; } public StockTransfer setCustomFieldValues(ArrayList value) { this.CustomFieldValues = value; return this; } public String getStockTransferReasonRecID() { return StockTransferReasonRecID; } public StockTransfer setStockTransferReasonRecID(String value) { this.StockTransferReasonRecID = value; return this; } public String getStockTransferReasonName() { return StockTransferReasonName; } public StockTransfer setStockTransferReasonName(String value) { this.StockTransferReasonName = value; return this; } public Boolean isStockTransferReasonIsDefault() { return StockTransferReasonIsDefault; } public StockTransfer setStockTransferReasonIsDefault(Boolean value) { this.StockTransferReasonIsDefault = value; return this; } public Boolean isStockTransferReasonWriteOffLedgerAccountOverride() { return StockTransferReasonWriteOffLedgerAccountOverride; } public StockTransfer setStockTransferReasonWriteOffLedgerAccountOverride(Boolean value) { this.StockTransferReasonWriteOffLedgerAccountOverride = value; return this; } public String getStockTransferReasonWriteOffLedgerAccountRecID() { return StockTransferReasonWriteOffLedgerAccountRecID; } public StockTransfer setStockTransferReasonWriteOffLedgerAccountRecID(String value) { this.StockTransferReasonWriteOffLedgerAccountRecID = value; return this; } public String getStockTransferReasonWriteOffLedgerAccountNo() { return StockTransferReasonWriteOffLedgerAccountNo; } public StockTransfer setStockTransferReasonWriteOffLedgerAccountNo(String value) { this.StockTransferReasonWriteOffLedgerAccountNo = value; return this; } public String getStockTransferReasonWriteOffLedgerAccountDescription() { return StockTransferReasonWriteOffLedgerAccountDescription; } public StockTransfer setStockTransferReasonWriteOffLedgerAccountDescription(String value) { this.StockTransferReasonWriteOffLedgerAccountDescription = value; return this; } public Boolean isStockTransferReasonWriteOnLedgerAccountOverride() { return StockTransferReasonWriteOnLedgerAccountOverride; } public StockTransfer setStockTransferReasonWriteOnLedgerAccountOverride(Boolean value) { this.StockTransferReasonWriteOnLedgerAccountOverride = value; return this; } public String getStockTransferReasonWriteOnLedgerAccountRecID() { return StockTransferReasonWriteOnLedgerAccountRecID; } public StockTransfer setStockTransferReasonWriteOnLedgerAccountRecID(String value) { this.StockTransferReasonWriteOnLedgerAccountRecID = value; return this; } public String getStockTransferReasonWriteOnLedgerAccountNo() { return StockTransferReasonWriteOnLedgerAccountNo; } public StockTransfer setStockTransferReasonWriteOnLedgerAccountNo(String value) { this.StockTransferReasonWriteOnLedgerAccountNo = value; return this; } public String getStockTransferReasonWriteOnLedgerAccountDescription() { return StockTransferReasonWriteOnLedgerAccountDescription; } public StockTransfer setStockTransferReasonWriteOnLedgerAccountDescription(String value) { this.StockTransferReasonWriteOnLedgerAccountDescription = value; return this; } } public static class Credit { public String RecID = null; public String CreditNo = null; public String CreditorRef = null; public CreditStatuses Status = null; public Date LastSavedDateTime = null; public StaffMember CreatedBy = null; public Date CreditDate = null; public String CreditorID = null; public String CreditorAccountNo = null; public String CreditorName = null; public ArrayList RowHash = null; public ArrayList Documents = null; public ArrayList Notes = null; public ArrayList CustomFieldValues = null; public ArrayList Lines = null; public ArrayList Shippings = null; public ArrayList PurchaseOrders = null; public String getRecID() { return RecID; } public Credit setRecID(String value) { this.RecID = value; return this; } public String getCreditNo() { return CreditNo; } public Credit setCreditNo(String value) { this.CreditNo = value; return this; } public String getCreditorRef() { return CreditorRef; } public Credit setCreditorRef(String value) { this.CreditorRef = value; return this; } public CreditStatuses getStatus() { return Status; } public Credit setStatus(CreditStatuses value) { this.Status = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public Credit setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public StaffMember getCreatedBy() { return CreatedBy; } public Credit setCreatedBy(StaffMember value) { this.CreatedBy = value; return this; } public Date getCreditDate() { return CreditDate; } public Credit setCreditDate(Date value) { this.CreditDate = value; return this; } public String getCreditorID() { return CreditorID; } public Credit setCreditorID(String value) { this.CreditorID = value; return this; } public String getCreditorAccountNo() { return CreditorAccountNo; } public Credit setCreditorAccountNo(String value) { this.CreditorAccountNo = value; return this; } public String getCreditorName() { return CreditorName; } public Credit setCreditorName(String value) { this.CreditorName = value; return this; } public ArrayList getRowHash() { return RowHash; } public Credit setRowHash(ArrayList value) { this.RowHash = value; return this; } public ArrayList getDocuments() { return Documents; } public Credit setDocuments(ArrayList value) { this.Documents = value; return this; } public ArrayList getNotes() { return Notes; } public Credit setNotes(ArrayList value) { this.Notes = value; return this; } public ArrayList getCustomFieldValues() { return CustomFieldValues; } public Credit setCustomFieldValues(ArrayList value) { this.CustomFieldValues = value; return this; } public ArrayList getLines() { return Lines; } public Credit setLines(ArrayList value) { this.Lines = value; return this; } public ArrayList getShippings() { return Shippings; } public Credit setShippings(ArrayList value) { this.Shippings = value; return this; } public ArrayList getPurchaseOrders() { return PurchaseOrders; } public Credit setPurchaseOrders(ArrayList value) { this.PurchaseOrders = value; return this; } } public static class Shipping { public String RecID = null; public String ShippingNo = null; public String RANumber = null; public String Reference = null; public ShippingStatuses Status = null; public ReturnCode ReturnCode = null; public StaffMember CreatedBy = null; public String CreditorID = null; public String CreditorAccountNo = null; public String CreditorName = null; public String ContactName = null; public ArrayList RowHash = null; public Date LastSavedDateTime = null; public String CourierDetails = null; public Date ShippingDate = null; public ArrayList Lines = null; public ArrayList CustomFieldValues = null; public ArrayList Documents = null; public ArrayList Notes = null; public ArrayList Requests = null; public ArrayList Credits = null; public ArrayList PurchaseOrders = null; public String getRecID() { return RecID; } public Shipping setRecID(String value) { this.RecID = value; return this; } public String getShippingNo() { return ShippingNo; } public Shipping setShippingNo(String value) { this.ShippingNo = value; return this; } public String getRaNumber() { return RANumber; } public Shipping setRaNumber(String value) { this.RANumber = value; return this; } public String getReference() { return Reference; } public Shipping setReference(String value) { this.Reference = value; return this; } public ShippingStatuses getStatus() { return Status; } public Shipping setStatus(ShippingStatuses value) { this.Status = value; return this; } public ReturnCode getReturnCode() { return ReturnCode; } public Shipping setReturnCode(ReturnCode value) { this.ReturnCode = value; return this; } public StaffMember getCreatedBy() { return CreatedBy; } public Shipping setCreatedBy(StaffMember value) { this.CreatedBy = value; return this; } public String getCreditorID() { return CreditorID; } public Shipping setCreditorID(String value) { this.CreditorID = value; return this; } public String getCreditorAccountNo() { return CreditorAccountNo; } public Shipping setCreditorAccountNo(String value) { this.CreditorAccountNo = value; return this; } public String getCreditorName() { return CreditorName; } public Shipping setCreditorName(String value) { this.CreditorName = value; return this; } public String getContactName() { return ContactName; } public Shipping setContactName(String value) { this.ContactName = value; return this; } public ArrayList getRowHash() { return RowHash; } public Shipping setRowHash(ArrayList value) { this.RowHash = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public Shipping setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public String getCourierDetails() { return CourierDetails; } public Shipping setCourierDetails(String value) { this.CourierDetails = value; return this; } public Date getShippingDate() { return ShippingDate; } public Shipping setShippingDate(Date value) { this.ShippingDate = value; return this; } public ArrayList getLines() { return Lines; } public Shipping setLines(ArrayList value) { this.Lines = value; return this; } public ArrayList getCustomFieldValues() { return CustomFieldValues; } public Shipping setCustomFieldValues(ArrayList value) { this.CustomFieldValues = value; return this; } public ArrayList getDocuments() { return Documents; } public Shipping setDocuments(ArrayList value) { this.Documents = value; return this; } public ArrayList getNotes() { return Notes; } public Shipping setNotes(ArrayList value) { this.Notes = value; return this; } public ArrayList getRequests() { return Requests; } public Shipping setRequests(ArrayList value) { this.Requests = value; return this; } public ArrayList getCredits() { return Credits; } public Shipping setCredits(ArrayList value) { this.Credits = value; return this; } public ArrayList getPurchaseOrders() { return PurchaseOrders; } public Shipping setPurchaseOrders(ArrayList value) { this.PurchaseOrders = value; return this; } } public static class SystemInformationGETResponse { public String JiwaVersion = null; public Date SQLServerDateTime = null; public String getJiwaVersion() { return JiwaVersion; } public SystemInformationGETResponse setJiwaVersion(String value) { this.JiwaVersion = value; return this; } public Date getSqlServerDateTime() { return SQLServerDateTime; } public SystemInformationGETResponse setSqlServerDateTime(Date value) { this.SQLServerDateTime = value; return this; } } public static class TaxRate { public String RecID = null; public String TaxID = null; public String Description = null; public TaxRateTypes GSTTaxGroup = null; public BigDecimal Rate = null; public Boolean IsDefaultRate = null; public BigDecimal BASCode = null; public Boolean IsDefaultRateInGroup = null; public Boolean IsEnabled = null; public Account LedgerAccount = null; public String getRecID() { return RecID; } public TaxRate setRecID(String value) { this.RecID = value; return this; } public String getTaxID() { return TaxID; } public TaxRate setTaxID(String value) { this.TaxID = value; return this; } public String getDescription() { return Description; } public TaxRate setDescription(String value) { this.Description = value; return this; } public TaxRateTypes getGstTaxGroup() { return GSTTaxGroup; } public TaxRate setGstTaxGroup(TaxRateTypes value) { this.GSTTaxGroup = value; return this; } public BigDecimal getRate() { return Rate; } public TaxRate setRate(BigDecimal value) { this.Rate = value; return this; } public Boolean getIsDefaultRate() { return IsDefaultRate; } public TaxRate setIsDefaultRate(Boolean value) { this.IsDefaultRate = value; return this; } public BigDecimal getBasCode() { return BASCode; } public TaxRate setBasCode(BigDecimal value) { this.BASCode = value; return this; } public Boolean getIsDefaultRateInGroup() { return IsDefaultRateInGroup; } public TaxRate setIsDefaultRateInGroup(Boolean value) { this.IsDefaultRateInGroup = value; return this; } public Boolean getIsEnabled() { return IsEnabled; } public TaxRate setIsEnabled(Boolean value) { this.IsEnabled = value; return this; } public Account getLedgerAccount() { return LedgerAccount; } public TaxRate setLedgerAccount(Account value) { this.LedgerAccount = value; return this; } } public static class WarehouseTransferOut { public String WarehouseTransferOutID = null; public Date LastSavedDateTime = null; public Date TransferDate = null; public Date ActivatedDate = null; public Statuses Status = null; public String CreatedByStaffID = null; public String CreatedByStaffUserName = null; public String CreatedByStaffTitle = null; public String CreatedByStaffFirstName = null; public String CreatedByStaffSurname = null; public String Source = null; public SourceTypes SourceType = null; public String SourceID = null; public String SourceNo = null; public String Notes = null; public String SourceWarehouseID = null; public String SourceWarehouseLogicalDescription = null; public String SourceWarehousePhysicalDescription = null; public String SourceWarehouseMask = null; public String DestinationWarehouseID = null; public String DestinationWarehouseLogicalDescription = null; public String DestinationWarehousePhysicalDescription = null; public String DestinationWarehouseMask = null; public String TransferNo = null; public Boolean UseInTransit = null; public String TransitNotes = null; public String InTransitWarehouseID = null; public String InTransitWarehouseLogicalDescription = null; public String InTransitWarehousePhysicalDescription = null; public String InTransitWarehouseMask = null; public BigDecimal AddedCost1 = null; public BigDecimal AddedCost2 = null; public BigDecimal AddedCost3 = null; public String PickedByStaffID = null; public String PickedByStaffUserName = null; public String PickedByStaffTitle = null; public String PickedByStaffFirstName = null; public String PickedByStaffSurname = null; public String AddedCostMethodName = null; public BigDecimal TransferredCost = null; public BigDecimal TotalCost = null; public ArrayList ReceiveIns = null; public ArrayList Lines = null; public String getWarehouseTransferOutID() { return WarehouseTransferOutID; } public WarehouseTransferOut setWarehouseTransferOutID(String value) { this.WarehouseTransferOutID = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public WarehouseTransferOut setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getTransferDate() { return TransferDate; } public WarehouseTransferOut setTransferDate(Date value) { this.TransferDate = value; return this; } public Date getActivatedDate() { return ActivatedDate; } public WarehouseTransferOut setActivatedDate(Date value) { this.ActivatedDate = value; return this; } public Statuses getStatus() { return Status; } public WarehouseTransferOut setStatus(Statuses value) { this.Status = value; return this; } public String getCreatedByStaffID() { return CreatedByStaffID; } public WarehouseTransferOut setCreatedByStaffID(String value) { this.CreatedByStaffID = value; return this; } public String getCreatedByStaffUserName() { return CreatedByStaffUserName; } public WarehouseTransferOut setCreatedByStaffUserName(String value) { this.CreatedByStaffUserName = value; return this; } public String getCreatedByStaffTitle() { return CreatedByStaffTitle; } public WarehouseTransferOut setCreatedByStaffTitle(String value) { this.CreatedByStaffTitle = value; return this; } public String getCreatedByStaffFirstName() { return CreatedByStaffFirstName; } public WarehouseTransferOut setCreatedByStaffFirstName(String value) { this.CreatedByStaffFirstName = value; return this; } public String getCreatedByStaffSurname() { return CreatedByStaffSurname; } public WarehouseTransferOut setCreatedByStaffSurname(String value) { this.CreatedByStaffSurname = value; return this; } public String getSource() { return Source; } public WarehouseTransferOut setSource(String value) { this.Source = value; return this; } public SourceTypes getSourceType() { return SourceType; } public WarehouseTransferOut setSourceType(SourceTypes value) { this.SourceType = value; return this; } public String getSourceID() { return SourceID; } public WarehouseTransferOut setSourceID(String value) { this.SourceID = value; return this; } public String getSourceNo() { return SourceNo; } public WarehouseTransferOut setSourceNo(String value) { this.SourceNo = value; return this; } public String getNotes() { return Notes; } public WarehouseTransferOut setNotes(String value) { this.Notes = value; return this; } public String getSourceWarehouseID() { return SourceWarehouseID; } public WarehouseTransferOut setSourceWarehouseID(String value) { this.SourceWarehouseID = value; return this; } public String getSourceWarehouseLogicalDescription() { return SourceWarehouseLogicalDescription; } public WarehouseTransferOut setSourceWarehouseLogicalDescription(String value) { this.SourceWarehouseLogicalDescription = value; return this; } public String getSourceWarehousePhysicalDescription() { return SourceWarehousePhysicalDescription; } public WarehouseTransferOut setSourceWarehousePhysicalDescription(String value) { this.SourceWarehousePhysicalDescription = value; return this; } public String getSourceWarehouseMask() { return SourceWarehouseMask; } public WarehouseTransferOut setSourceWarehouseMask(String value) { this.SourceWarehouseMask = value; return this; } public String getDestinationWarehouseID() { return DestinationWarehouseID; } public WarehouseTransferOut setDestinationWarehouseID(String value) { this.DestinationWarehouseID = value; return this; } public String getDestinationWarehouseLogicalDescription() { return DestinationWarehouseLogicalDescription; } public WarehouseTransferOut setDestinationWarehouseLogicalDescription(String value) { this.DestinationWarehouseLogicalDescription = value; return this; } public String getDestinationWarehousePhysicalDescription() { return DestinationWarehousePhysicalDescription; } public WarehouseTransferOut setDestinationWarehousePhysicalDescription(String value) { this.DestinationWarehousePhysicalDescription = value; return this; } public String getDestinationWarehouseMask() { return DestinationWarehouseMask; } public WarehouseTransferOut setDestinationWarehouseMask(String value) { this.DestinationWarehouseMask = value; return this; } public String getTransferNo() { return TransferNo; } public WarehouseTransferOut setTransferNo(String value) { this.TransferNo = value; return this; } public Boolean isUseInTransit() { return UseInTransit; } public WarehouseTransferOut setUseInTransit(Boolean value) { this.UseInTransit = value; return this; } public String getTransitNotes() { return TransitNotes; } public WarehouseTransferOut setTransitNotes(String value) { this.TransitNotes = value; return this; } public String getInTransitWarehouseID() { return InTransitWarehouseID; } public WarehouseTransferOut setInTransitWarehouseID(String value) { this.InTransitWarehouseID = value; return this; } public String getInTransitWarehouseLogicalDescription() { return InTransitWarehouseLogicalDescription; } public WarehouseTransferOut setInTransitWarehouseLogicalDescription(String value) { this.InTransitWarehouseLogicalDescription = value; return this; } public String getInTransitWarehousePhysicalDescription() { return InTransitWarehousePhysicalDescription; } public WarehouseTransferOut setInTransitWarehousePhysicalDescription(String value) { this.InTransitWarehousePhysicalDescription = value; return this; } public String getInTransitWarehouseMask() { return InTransitWarehouseMask; } public WarehouseTransferOut setInTransitWarehouseMask(String value) { this.InTransitWarehouseMask = value; return this; } public BigDecimal getAddedCost1() { return AddedCost1; } public WarehouseTransferOut setAddedCost1(BigDecimal value) { this.AddedCost1 = value; return this; } public BigDecimal getAddedCost2() { return AddedCost2; } public WarehouseTransferOut setAddedCost2(BigDecimal value) { this.AddedCost2 = value; return this; } public BigDecimal getAddedCost3() { return AddedCost3; } public WarehouseTransferOut setAddedCost3(BigDecimal value) { this.AddedCost3 = value; return this; } public String getPickedByStaffID() { return PickedByStaffID; } public WarehouseTransferOut setPickedByStaffID(String value) { this.PickedByStaffID = value; return this; } public String getPickedByStaffUserName() { return PickedByStaffUserName; } public WarehouseTransferOut setPickedByStaffUserName(String value) { this.PickedByStaffUserName = value; return this; } public String getPickedByStaffTitle() { return PickedByStaffTitle; } public WarehouseTransferOut setPickedByStaffTitle(String value) { this.PickedByStaffTitle = value; return this; } public String getPickedByStaffFirstName() { return PickedByStaffFirstName; } public WarehouseTransferOut setPickedByStaffFirstName(String value) { this.PickedByStaffFirstName = value; return this; } public String getPickedByStaffSurname() { return PickedByStaffSurname; } public WarehouseTransferOut setPickedByStaffSurname(String value) { this.PickedByStaffSurname = value; return this; } public String getAddedCostMethodName() { return AddedCostMethodName; } public WarehouseTransferOut setAddedCostMethodName(String value) { this.AddedCostMethodName = value; return this; } public BigDecimal getTransferredCost() { return TransferredCost; } public WarehouseTransferOut setTransferredCost(BigDecimal value) { this.TransferredCost = value; return this; } public BigDecimal getTotalCost() { return TotalCost; } public WarehouseTransferOut setTotalCost(BigDecimal value) { this.TotalCost = value; return this; } public ArrayList getReceiveIns() { return ReceiveIns; } public WarehouseTransferOut setReceiveIns(ArrayList value) { this.ReceiveIns = value; return this; } public ArrayList getLines() { return Lines; } public WarehouseTransferOut setLines(ArrayList value) { this.Lines = value; return this; } } public static class WarehouseTransferOutLine { public String WarehouseTransferOutLineID = null; public Integer ItemNo = null; public String InventoryID = null; public String PartNo = null; public String Description = null; public Integer DecimalPlaces = null; public BigDecimal QuantityWanted = null; public BigDecimal QuantityTransferred = null; public BigDecimal QuantityBackOrdered = null; public BigDecimal Cost = null; public String Ref = null; public String BackOrderID = null; public String PurchaseOrderID = null; public String PurchaseOrderLineID = null; public BigDecimal TotalCostTransferred = null; public BigDecimal TotalCostReceived = null; public String AddedCostLedger1RecID = null; public String AddedCostLedger1AccountNo = null; public String AddedCostLedger1Description = null; public String AddedCostLedger2RecID = null; public String AddedCostLedger2AccountNo = null; public String AddedCostLedger2Description = null; public String AddedCostLedger3RecID = null; public String AddedCostLedger3AccountNo = null; public String AddedCostLedger3Description = null; public ArrayList LineDetails = null; public String getWarehouseTransferOutLineID() { return WarehouseTransferOutLineID; } public WarehouseTransferOutLine setWarehouseTransferOutLineID(String value) { this.WarehouseTransferOutLineID = value; return this; } public Integer getItemNo() { return ItemNo; } public WarehouseTransferOutLine setItemNo(Integer value) { this.ItemNo = value; return this; } public String getInventoryID() { return InventoryID; } public WarehouseTransferOutLine setInventoryID(String value) { this.InventoryID = value; return this; } public String getPartNo() { return PartNo; } public WarehouseTransferOutLine setPartNo(String value) { this.PartNo = value; return this; } public String getDescription() { return Description; } public WarehouseTransferOutLine setDescription(String value) { this.Description = value; return this; } public Integer getDecimalPlaces() { return DecimalPlaces; } public WarehouseTransferOutLine setDecimalPlaces(Integer value) { this.DecimalPlaces = value; return this; } public BigDecimal getQuantityWanted() { return QuantityWanted; } public WarehouseTransferOutLine setQuantityWanted(BigDecimal value) { this.QuantityWanted = value; return this; } public BigDecimal getQuantityTransferred() { return QuantityTransferred; } public WarehouseTransferOutLine setQuantityTransferred(BigDecimal value) { this.QuantityTransferred = value; return this; } public BigDecimal getQuantityBackOrdered() { return QuantityBackOrdered; } public WarehouseTransferOutLine setQuantityBackOrdered(BigDecimal value) { this.QuantityBackOrdered = value; return this; } public BigDecimal getCost() { return Cost; } public WarehouseTransferOutLine setCost(BigDecimal value) { this.Cost = value; return this; } public String getRef() { return Ref; } public WarehouseTransferOutLine setRef(String value) { this.Ref = value; return this; } public String getBackOrderID() { return BackOrderID; } public WarehouseTransferOutLine setBackOrderID(String value) { this.BackOrderID = value; return this; } public String getPurchaseOrderID() { return PurchaseOrderID; } public WarehouseTransferOutLine setPurchaseOrderID(String value) { this.PurchaseOrderID = value; return this; } public String getPurchaseOrderLineID() { return PurchaseOrderLineID; } public WarehouseTransferOutLine setPurchaseOrderLineID(String value) { this.PurchaseOrderLineID = value; return this; } public BigDecimal getTotalCostTransferred() { return TotalCostTransferred; } public WarehouseTransferOutLine setTotalCostTransferred(BigDecimal value) { this.TotalCostTransferred = value; return this; } public BigDecimal getTotalCostReceived() { return TotalCostReceived; } public WarehouseTransferOutLine setTotalCostReceived(BigDecimal value) { this.TotalCostReceived = value; return this; } public String getAddedCostLedger1RecID() { return AddedCostLedger1RecID; } public WarehouseTransferOutLine setAddedCostLedger1RecID(String value) { this.AddedCostLedger1RecID = value; return this; } public String getAddedCostLedger1AccountNo() { return AddedCostLedger1AccountNo; } public WarehouseTransferOutLine setAddedCostLedger1AccountNo(String value) { this.AddedCostLedger1AccountNo = value; return this; } public String getAddedCostLedger1Description() { return AddedCostLedger1Description; } public WarehouseTransferOutLine setAddedCostLedger1Description(String value) { this.AddedCostLedger1Description = value; return this; } public String getAddedCostLedger2RecID() { return AddedCostLedger2RecID; } public WarehouseTransferOutLine setAddedCostLedger2RecID(String value) { this.AddedCostLedger2RecID = value; return this; } public String getAddedCostLedger2AccountNo() { return AddedCostLedger2AccountNo; } public WarehouseTransferOutLine setAddedCostLedger2AccountNo(String value) { this.AddedCostLedger2AccountNo = value; return this; } public String getAddedCostLedger2Description() { return AddedCostLedger2Description; } public WarehouseTransferOutLine setAddedCostLedger2Description(String value) { this.AddedCostLedger2Description = value; return this; } public String getAddedCostLedger3RecID() { return AddedCostLedger3RecID; } public WarehouseTransferOutLine setAddedCostLedger3RecID(String value) { this.AddedCostLedger3RecID = value; return this; } public String getAddedCostLedger3AccountNo() { return AddedCostLedger3AccountNo; } public WarehouseTransferOutLine setAddedCostLedger3AccountNo(String value) { this.AddedCostLedger3AccountNo = value; return this; } public String getAddedCostLedger3Description() { return AddedCostLedger3Description; } public WarehouseTransferOutLine setAddedCostLedger3Description(String value) { this.AddedCostLedger3Description = value; return this; } public ArrayList getLineDetails() { return LineDetails; } public WarehouseTransferOutLine setLineDetails(ArrayList value) { this.LineDetails = value; return this; } } public static class WarehouseTransferIn { public String WarehouseTransferInID = null; public String WarehouseTransferOutID = null; public Date LastSavedDateTime = null; public Date TransferDate = null; public Date ActivatedDate = null; public Statuses Status = null; public String CreatedByStaffID = null; public String CreatedByStaffUserName = null; public String CreatedByStaffTitle = null; public String CreatedByStaffFirstName = null; public String CreatedByStaffSurname = null; public String Source = null; public SourceTypes SourceType = null; public String SourceID = null; public String SourceNo = null; public String Notes = null; public String SourceWarehouseID = null; public String SourceWarehouseLogicalDescription = null; public String SourceWarehousePhysicalDescription = null; public String SourceWarehouseMask = null; public String DestinationWarehouseID = null; public String DestinationWarehouseLogicalDescription = null; public String DestinationWarehousePhysicalDescription = null; public String DestinationWarehouseMask = null; public String TransferNo = null; public Boolean UseInTransit = null; public String TransitNotes = null; public String InTransitWarehouseID = null; public String InTransitWarehouseLogicalDescription = null; public String InTransitWarehousePhysicalDescription = null; public String InTransitWarehouseMask = null; public BigDecimal AddedCost1 = null; public BigDecimal AddedCost2 = null; public BigDecimal AddedCost3 = null; public String PickedByStaffID = null; public String PickedByStaffUserName = null; public String PickedByStaffTitle = null; public String PickedByStaffFirstName = null; public String PickedByStaffSurname = null; public String AddedCostMethodName = null; public BigDecimal TransferredCost = null; public BigDecimal TotalCost = null; public ArrayList ReceiveIns = null; public ArrayList Lines = null; public String getWarehouseTransferInID() { return WarehouseTransferInID; } public WarehouseTransferIn setWarehouseTransferInID(String value) { this.WarehouseTransferInID = value; return this; } public String getWarehouseTransferOutID() { return WarehouseTransferOutID; } public WarehouseTransferIn setWarehouseTransferOutID(String value) { this.WarehouseTransferOutID = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public WarehouseTransferIn setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getTransferDate() { return TransferDate; } public WarehouseTransferIn setTransferDate(Date value) { this.TransferDate = value; return this; } public Date getActivatedDate() { return ActivatedDate; } public WarehouseTransferIn setActivatedDate(Date value) { this.ActivatedDate = value; return this; } public Statuses getStatus() { return Status; } public WarehouseTransferIn setStatus(Statuses value) { this.Status = value; return this; } public String getCreatedByStaffID() { return CreatedByStaffID; } public WarehouseTransferIn setCreatedByStaffID(String value) { this.CreatedByStaffID = value; return this; } public String getCreatedByStaffUserName() { return CreatedByStaffUserName; } public WarehouseTransferIn setCreatedByStaffUserName(String value) { this.CreatedByStaffUserName = value; return this; } public String getCreatedByStaffTitle() { return CreatedByStaffTitle; } public WarehouseTransferIn setCreatedByStaffTitle(String value) { this.CreatedByStaffTitle = value; return this; } public String getCreatedByStaffFirstName() { return CreatedByStaffFirstName; } public WarehouseTransferIn setCreatedByStaffFirstName(String value) { this.CreatedByStaffFirstName = value; return this; } public String getCreatedByStaffSurname() { return CreatedByStaffSurname; } public WarehouseTransferIn setCreatedByStaffSurname(String value) { this.CreatedByStaffSurname = value; return this; } public String getSource() { return Source; } public WarehouseTransferIn setSource(String value) { this.Source = value; return this; } public SourceTypes getSourceType() { return SourceType; } public WarehouseTransferIn setSourceType(SourceTypes value) { this.SourceType = value; return this; } public String getSourceID() { return SourceID; } public WarehouseTransferIn setSourceID(String value) { this.SourceID = value; return this; } public String getSourceNo() { return SourceNo; } public WarehouseTransferIn setSourceNo(String value) { this.SourceNo = value; return this; } public String getNotes() { return Notes; } public WarehouseTransferIn setNotes(String value) { this.Notes = value; return this; } public String getSourceWarehouseID() { return SourceWarehouseID; } public WarehouseTransferIn setSourceWarehouseID(String value) { this.SourceWarehouseID = value; return this; } public String getSourceWarehouseLogicalDescription() { return SourceWarehouseLogicalDescription; } public WarehouseTransferIn setSourceWarehouseLogicalDescription(String value) { this.SourceWarehouseLogicalDescription = value; return this; } public String getSourceWarehousePhysicalDescription() { return SourceWarehousePhysicalDescription; } public WarehouseTransferIn setSourceWarehousePhysicalDescription(String value) { this.SourceWarehousePhysicalDescription = value; return this; } public String getSourceWarehouseMask() { return SourceWarehouseMask; } public WarehouseTransferIn setSourceWarehouseMask(String value) { this.SourceWarehouseMask = value; return this; } public String getDestinationWarehouseID() { return DestinationWarehouseID; } public WarehouseTransferIn setDestinationWarehouseID(String value) { this.DestinationWarehouseID = value; return this; } public String getDestinationWarehouseLogicalDescription() { return DestinationWarehouseLogicalDescription; } public WarehouseTransferIn setDestinationWarehouseLogicalDescription(String value) { this.DestinationWarehouseLogicalDescription = value; return this; } public String getDestinationWarehousePhysicalDescription() { return DestinationWarehousePhysicalDescription; } public WarehouseTransferIn setDestinationWarehousePhysicalDescription(String value) { this.DestinationWarehousePhysicalDescription = value; return this; } public String getDestinationWarehouseMask() { return DestinationWarehouseMask; } public WarehouseTransferIn setDestinationWarehouseMask(String value) { this.DestinationWarehouseMask = value; return this; } public String getTransferNo() { return TransferNo; } public WarehouseTransferIn setTransferNo(String value) { this.TransferNo = value; return this; } public Boolean isUseInTransit() { return UseInTransit; } public WarehouseTransferIn setUseInTransit(Boolean value) { this.UseInTransit = value; return this; } public String getTransitNotes() { return TransitNotes; } public WarehouseTransferIn setTransitNotes(String value) { this.TransitNotes = value; return this; } public String getInTransitWarehouseID() { return InTransitWarehouseID; } public WarehouseTransferIn setInTransitWarehouseID(String value) { this.InTransitWarehouseID = value; return this; } public String getInTransitWarehouseLogicalDescription() { return InTransitWarehouseLogicalDescription; } public WarehouseTransferIn setInTransitWarehouseLogicalDescription(String value) { this.InTransitWarehouseLogicalDescription = value; return this; } public String getInTransitWarehousePhysicalDescription() { return InTransitWarehousePhysicalDescription; } public WarehouseTransferIn setInTransitWarehousePhysicalDescription(String value) { this.InTransitWarehousePhysicalDescription = value; return this; } public String getInTransitWarehouseMask() { return InTransitWarehouseMask; } public WarehouseTransferIn setInTransitWarehouseMask(String value) { this.InTransitWarehouseMask = value; return this; } public BigDecimal getAddedCost1() { return AddedCost1; } public WarehouseTransferIn setAddedCost1(BigDecimal value) { this.AddedCost1 = value; return this; } public BigDecimal getAddedCost2() { return AddedCost2; } public WarehouseTransferIn setAddedCost2(BigDecimal value) { this.AddedCost2 = value; return this; } public BigDecimal getAddedCost3() { return AddedCost3; } public WarehouseTransferIn setAddedCost3(BigDecimal value) { this.AddedCost3 = value; return this; } public String getPickedByStaffID() { return PickedByStaffID; } public WarehouseTransferIn setPickedByStaffID(String value) { this.PickedByStaffID = value; return this; } public String getPickedByStaffUserName() { return PickedByStaffUserName; } public WarehouseTransferIn setPickedByStaffUserName(String value) { this.PickedByStaffUserName = value; return this; } public String getPickedByStaffTitle() { return PickedByStaffTitle; } public WarehouseTransferIn setPickedByStaffTitle(String value) { this.PickedByStaffTitle = value; return this; } public String getPickedByStaffFirstName() { return PickedByStaffFirstName; } public WarehouseTransferIn setPickedByStaffFirstName(String value) { this.PickedByStaffFirstName = value; return this; } public String getPickedByStaffSurname() { return PickedByStaffSurname; } public WarehouseTransferIn setPickedByStaffSurname(String value) { this.PickedByStaffSurname = value; return this; } public String getAddedCostMethodName() { return AddedCostMethodName; } public WarehouseTransferIn setAddedCostMethodName(String value) { this.AddedCostMethodName = value; return this; } public BigDecimal getTransferredCost() { return TransferredCost; } public WarehouseTransferIn setTransferredCost(BigDecimal value) { this.TransferredCost = value; return this; } public BigDecimal getTotalCost() { return TotalCost; } public WarehouseTransferIn setTotalCost(BigDecimal value) { this.TotalCost = value; return this; } public ArrayList getReceiveIns() { return ReceiveIns; } public WarehouseTransferIn setReceiveIns(ArrayList value) { this.ReceiveIns = value; return this; } public ArrayList getLines() { return Lines; } public WarehouseTransferIn setLines(ArrayList value) { this.Lines = value; return this; } } public static class WarehouseTransferInLine { public String WarehouseTransferInLineID = null; public Integer ItemNo = null; public String InventoryID = null; public String PartNo = null; public String Description = null; public Integer DecimalPlaces = null; public BigDecimal QuantityWanted = null; public BigDecimal QuantityTransferred = null; public BigDecimal QuantityBackOrdered = null; public BigDecimal QuantityReceived = null; public BigDecimal Cost = null; public String Ref = null; public String BackOrderID = null; public String PurchaseOrderID = null; public String PurchaseOrderLineID = null; public BigDecimal TotalCostTransferred = null; public BigDecimal TotalCostReceived = null; public String AddedCostLedger1RecID = null; public String AddedCostLedger1AccountNo = null; public String AddedCostLedger1Description = null; public String AddedCostLedger2RecID = null; public String AddedCostLedger2AccountNo = null; public String AddedCostLedger2Description = null; public String AddedCostLedger3RecID = null; public String AddedCostLedger3AccountNo = null; public String AddedCostLedger3Description = null; public ArrayList LineDetails = null; public String getWarehouseTransferInLineID() { return WarehouseTransferInLineID; } public WarehouseTransferInLine setWarehouseTransferInLineID(String value) { this.WarehouseTransferInLineID = value; return this; } public Integer getItemNo() { return ItemNo; } public WarehouseTransferInLine setItemNo(Integer value) { this.ItemNo = value; return this; } public String getInventoryID() { return InventoryID; } public WarehouseTransferInLine setInventoryID(String value) { this.InventoryID = value; return this; } public String getPartNo() { return PartNo; } public WarehouseTransferInLine setPartNo(String value) { this.PartNo = value; return this; } public String getDescription() { return Description; } public WarehouseTransferInLine setDescription(String value) { this.Description = value; return this; } public Integer getDecimalPlaces() { return DecimalPlaces; } public WarehouseTransferInLine setDecimalPlaces(Integer value) { this.DecimalPlaces = value; return this; } public BigDecimal getQuantityWanted() { return QuantityWanted; } public WarehouseTransferInLine setQuantityWanted(BigDecimal value) { this.QuantityWanted = value; return this; } public BigDecimal getQuantityTransferred() { return QuantityTransferred; } public WarehouseTransferInLine setQuantityTransferred(BigDecimal value) { this.QuantityTransferred = value; return this; } public BigDecimal getQuantityBackOrdered() { return QuantityBackOrdered; } public WarehouseTransferInLine setQuantityBackOrdered(BigDecimal value) { this.QuantityBackOrdered = value; return this; } public BigDecimal getQuantityReceived() { return QuantityReceived; } public WarehouseTransferInLine setQuantityReceived(BigDecimal value) { this.QuantityReceived = value; return this; } public BigDecimal getCost() { return Cost; } public WarehouseTransferInLine setCost(BigDecimal value) { this.Cost = value; return this; } public String getRef() { return Ref; } public WarehouseTransferInLine setRef(String value) { this.Ref = value; return this; } public String getBackOrderID() { return BackOrderID; } public WarehouseTransferInLine setBackOrderID(String value) { this.BackOrderID = value; return this; } public String getPurchaseOrderID() { return PurchaseOrderID; } public WarehouseTransferInLine setPurchaseOrderID(String value) { this.PurchaseOrderID = value; return this; } public String getPurchaseOrderLineID() { return PurchaseOrderLineID; } public WarehouseTransferInLine setPurchaseOrderLineID(String value) { this.PurchaseOrderLineID = value; return this; } public BigDecimal getTotalCostTransferred() { return TotalCostTransferred; } public WarehouseTransferInLine setTotalCostTransferred(BigDecimal value) { this.TotalCostTransferred = value; return this; } public BigDecimal getTotalCostReceived() { return TotalCostReceived; } public WarehouseTransferInLine setTotalCostReceived(BigDecimal value) { this.TotalCostReceived = value; return this; } public String getAddedCostLedger1RecID() { return AddedCostLedger1RecID; } public WarehouseTransferInLine setAddedCostLedger1RecID(String value) { this.AddedCostLedger1RecID = value; return this; } public String getAddedCostLedger1AccountNo() { return AddedCostLedger1AccountNo; } public WarehouseTransferInLine setAddedCostLedger1AccountNo(String value) { this.AddedCostLedger1AccountNo = value; return this; } public String getAddedCostLedger1Description() { return AddedCostLedger1Description; } public WarehouseTransferInLine setAddedCostLedger1Description(String value) { this.AddedCostLedger1Description = value; return this; } public String getAddedCostLedger2RecID() { return AddedCostLedger2RecID; } public WarehouseTransferInLine setAddedCostLedger2RecID(String value) { this.AddedCostLedger2RecID = value; return this; } public String getAddedCostLedger2AccountNo() { return AddedCostLedger2AccountNo; } public WarehouseTransferInLine setAddedCostLedger2AccountNo(String value) { this.AddedCostLedger2AccountNo = value; return this; } public String getAddedCostLedger2Description() { return AddedCostLedger2Description; } public WarehouseTransferInLine setAddedCostLedger2Description(String value) { this.AddedCostLedger2Description = value; return this; } public String getAddedCostLedger3RecID() { return AddedCostLedger3RecID; } public WarehouseTransferInLine setAddedCostLedger3RecID(String value) { this.AddedCostLedger3RecID = value; return this; } public String getAddedCostLedger3AccountNo() { return AddedCostLedger3AccountNo; } public WarehouseTransferInLine setAddedCostLedger3AccountNo(String value) { this.AddedCostLedger3AccountNo = value; return this; } public String getAddedCostLedger3Description() { return AddedCostLedger3Description; } public WarehouseTransferInLine setAddedCostLedger3Description(String value) { this.AddedCostLedger3Description = value; return this; } public ArrayList getLineDetails() { return LineDetails; } public WarehouseTransferInLine setLineDetails(ArrayList value) { this.LineDetails = value; return this; } } public static class WebhookSubscriber extends SY_WebhookSubscriber { public ArrayList Subscriptions = null; public ArrayList getSubscriptions() { return Subscriptions; } public WebhookSubscriber setSubscriptions(ArrayList value) { this.Subscriptions = value; return this; } } public static class SY_WebhookSubscriber { @Required() public UUID RecID = null; @Required() public String Name = null; @Required() public Boolean IsEnabled = null; @Required() public Integer ItemNo = null; @Required() public Date LastSavedDateTime = null; @Required() public ArrayList RowHash = null; public UUID getRecID() { return RecID; } public SY_WebhookSubscriber setRecID(UUID value) { this.RecID = value; return this; } public String getName() { return Name; } public SY_WebhookSubscriber setName(String value) { this.Name = value; return this; } public Boolean getIsEnabled() { return IsEnabled; } public SY_WebhookSubscriber setIsEnabled(Boolean value) { this.IsEnabled = value; return this; } public Integer getItemNo() { return ItemNo; } public SY_WebhookSubscriber setItemNo(Integer value) { this.ItemNo = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public SY_WebhookSubscriber setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public ArrayList getRowHash() { return RowHash; } public SY_WebhookSubscriber setRowHash(ArrayList value) { this.RowHash = value; return this; } } @Route(Path="/Queries/SY_WebhookSubscription", Verbs="GET") public static class SY_WebhookSubscription { @Required() public UUID RecID = null; @References(SY_WebhookSubscriber.class) @Required() public UUID SY_WebhookSubscriber_RecID = null; @Required() public String EventName = null; @Required() public String URL = null; @Required() public Integer ItemNo = null; @Required() public Date LastSavedDateTime = null; @Required() public ArrayList RowHash = null; public UUID getRecID() { return RecID; } public SY_WebhookSubscription setRecID(UUID value) { this.RecID = value; return this; } public UUID getSyWebhookSubscriberRecID() { return SY_WebhookSubscriber_RecID; } public SY_WebhookSubscription setSyWebhookSubscriberRecID(UUID value) { this.SY_WebhookSubscriber_RecID = value; return this; } public String getEventName() { return EventName; } public SY_WebhookSubscription setEventName(String value) { this.EventName = value; return this; } public String getUrl() { return URL; } public SY_WebhookSubscription setUrl(String value) { this.URL = value; return this; } public Integer getItemNo() { return ItemNo; } public SY_WebhookSubscription setItemNo(Integer value) { this.ItemNo = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public SY_WebhookSubscription setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public ArrayList getRowHash() { return RowHash; } public SY_WebhookSubscription setRowHash(ArrayList value) { this.RowHash = value; return this; } } public static class WorkOrder { public String WorkOrderID = null; public String WorkOrderNo = null; public String Reference = null; public String BillID = null; public String BillNo = null; public String BillDescription = null; public Date DateCreated = null; public Date DateRequired = null; public Date PlannedStartDate = null; public Date ActualStartDate = null; public Date DateCompleted = null; public BigDecimal ProductionQuantity = null; public Date LastSavedDateTime = null; public ArrayList RowHash = null; public ArrayList Stages = null; public ArrayList Outputs = null; public ArrayList Allocations = null; public String LogicalID = null; public String LogicalWarehouseDescription = null; public String PhysicalWarehouseDescription = null; public ArrayList Documents = null; public ArrayList CustomFieldValues = null; public ArrayList Notes = null; public ProductionLine ProductionLine = null; public WorkOrderInput ParentInputItem = null; public Statuses Status = null; public WorkOrderTypes WorkOrderType = null; public String InvoiceLineID = null; public String getWorkOrderID() { return WorkOrderID; } public WorkOrder setWorkOrderID(String value) { this.WorkOrderID = value; return this; } public String getWorkOrderNo() { return WorkOrderNo; } public WorkOrder setWorkOrderNo(String value) { this.WorkOrderNo = value; return this; } public String getReference() { return Reference; } public WorkOrder setReference(String value) { this.Reference = value; return this; } public String getBillID() { return BillID; } public WorkOrder setBillID(String value) { this.BillID = value; return this; } public String getBillNo() { return BillNo; } public WorkOrder setBillNo(String value) { this.BillNo = value; return this; } public String getBillDescription() { return BillDescription; } public WorkOrder setBillDescription(String value) { this.BillDescription = value; return this; } public Date getDateCreated() { return DateCreated; } public WorkOrder setDateCreated(Date value) { this.DateCreated = value; return this; } public Date getDateRequired() { return DateRequired; } public WorkOrder setDateRequired(Date value) { this.DateRequired = value; return this; } public Date getPlannedStartDate() { return PlannedStartDate; } public WorkOrder setPlannedStartDate(Date value) { this.PlannedStartDate = value; return this; } public Date getActualStartDate() { return ActualStartDate; } public WorkOrder setActualStartDate(Date value) { this.ActualStartDate = value; return this; } public Date getDateCompleted() { return DateCompleted; } public WorkOrder setDateCompleted(Date value) { this.DateCompleted = value; return this; } public BigDecimal getProductionQuantity() { return ProductionQuantity; } public WorkOrder setProductionQuantity(BigDecimal value) { this.ProductionQuantity = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public WorkOrder setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public ArrayList getRowHash() { return RowHash; } public WorkOrder setRowHash(ArrayList value) { this.RowHash = value; return this; } public ArrayList getStages() { return Stages; } public WorkOrder setStages(ArrayList value) { this.Stages = value; return this; } public ArrayList getOutputs() { return Outputs; } public WorkOrder setOutputs(ArrayList value) { this.Outputs = value; return this; } public ArrayList getAllocations() { return Allocations; } public WorkOrder setAllocations(ArrayList value) { this.Allocations = value; return this; } public String getLogicalID() { return LogicalID; } public WorkOrder setLogicalID(String value) { this.LogicalID = value; return this; } public String getLogicalWarehouseDescription() { return LogicalWarehouseDescription; } public WorkOrder setLogicalWarehouseDescription(String value) { this.LogicalWarehouseDescription = value; return this; } public String getPhysicalWarehouseDescription() { return PhysicalWarehouseDescription; } public WorkOrder setPhysicalWarehouseDescription(String value) { this.PhysicalWarehouseDescription = value; return this; } public ArrayList getDocuments() { return Documents; } public WorkOrder setDocuments(ArrayList value) { this.Documents = value; return this; } public ArrayList getCustomFieldValues() { return CustomFieldValues; } public WorkOrder setCustomFieldValues(ArrayList value) { this.CustomFieldValues = value; return this; } public ArrayList getNotes() { return Notes; } public WorkOrder setNotes(ArrayList value) { this.Notes = value; return this; } public ProductionLine getProductionLine() { return ProductionLine; } public WorkOrder setProductionLine(ProductionLine value) { this.ProductionLine = value; return this; } public WorkOrderInput getParentInputItem() { return ParentInputItem; } public WorkOrder setParentInputItem(WorkOrderInput value) { this.ParentInputItem = value; return this; } public Statuses getStatus() { return Status; } public WorkOrder setStatus(Statuses value) { this.Status = value; return this; } public WorkOrderTypes getWorkOrderType() { return WorkOrderType; } public WorkOrder setWorkOrderType(WorkOrderTypes value) { this.WorkOrderType = value; return this; } public String getInvoiceLineID() { return InvoiceLineID; } public WorkOrder setInvoiceLineID(String value) { this.InvoiceLineID = value; return this; } } public static class Allocation { public String AllocationID = null; public Boolean OutputIsWastage = null; public String InputLineDetailID = null; public String OutputLineDetailID = null; public Date LastSavedDateTime = null; public BigDecimal InputQuantity = null; public BigDecimal OutputQuantity = null; public String getAllocationID() { return AllocationID; } public Allocation setAllocationID(String value) { this.AllocationID = value; return this; } public Boolean isOutputIsWastage() { return OutputIsWastage; } public Allocation setOutputIsWastage(Boolean value) { this.OutputIsWastage = value; return this; } public String getInputLineDetailID() { return InputLineDetailID; } public Allocation setInputLineDetailID(String value) { this.InputLineDetailID = value; return this; } public String getOutputLineDetailID() { return OutputLineDetailID; } public Allocation setOutputLineDetailID(String value) { this.OutputLineDetailID = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public Allocation setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public BigDecimal getInputQuantity() { return InputQuantity; } public Allocation setInputQuantity(BigDecimal value) { this.InputQuantity = value; return this; } public BigDecimal getOutputQuantity() { return OutputQuantity; } public Allocation setOutputQuantity(BigDecimal value) { this.OutputQuantity = value; return this; } } public static class InventorySOHLineDetail { public String IN_SOH_LinkID = null; public BigDecimal Cost = null; public Date DateIn = null; public Date ExpiryDate = null; public BigDecimal SpecialPrice = null; public BigDecimal Quantity = null; public BigDecimal QuantityIn = null; public BigDecimal QuantityLeft = null; public BigDecimal QuantityAllocated = null; public String LineDetailID = null; public String SerialNo = null; public String IN_LogicalID = null; public String Ref = null; public String HistoryText = null; public String SourceID = null; public InventoryBinLocation BinLocation = null; public String getInSohLinkID() { return IN_SOH_LinkID; } public InventorySOHLineDetail setInSohLinkID(String value) { this.IN_SOH_LinkID = value; return this; } public BigDecimal getCost() { return Cost; } public InventorySOHLineDetail setCost(BigDecimal value) { this.Cost = value; return this; } public Date getDateIn() { return DateIn; } public InventorySOHLineDetail setDateIn(Date value) { this.DateIn = value; return this; } public Date getExpiryDate() { return ExpiryDate; } public InventorySOHLineDetail setExpiryDate(Date value) { this.ExpiryDate = value; return this; } public BigDecimal getSpecialPrice() { return SpecialPrice; } public InventorySOHLineDetail setSpecialPrice(BigDecimal value) { this.SpecialPrice = value; return this; } public BigDecimal getQuantity() { return Quantity; } public InventorySOHLineDetail setQuantity(BigDecimal value) { this.Quantity = value; return this; } public BigDecimal getQuantityIn() { return QuantityIn; } public InventorySOHLineDetail setQuantityIn(BigDecimal value) { this.QuantityIn = value; return this; } public BigDecimal getQuantityLeft() { return QuantityLeft; } public InventorySOHLineDetail setQuantityLeft(BigDecimal value) { this.QuantityLeft = value; return this; } public BigDecimal getQuantityAllocated() { return QuantityAllocated; } public InventorySOHLineDetail setQuantityAllocated(BigDecimal value) { this.QuantityAllocated = value; return this; } public String getLineDetailID() { return LineDetailID; } public InventorySOHLineDetail setLineDetailID(String value) { this.LineDetailID = value; return this; } public String getSerialNo() { return SerialNo; } public InventorySOHLineDetail setSerialNo(String value) { this.SerialNo = value; return this; } public String getInLogicalID() { return IN_LogicalID; } public InventorySOHLineDetail setInLogicalID(String value) { this.IN_LogicalID = value; return this; } public String getRef() { return Ref; } public InventorySOHLineDetail setRef(String value) { this.Ref = value; return this; } public String getHistoryText() { return HistoryText; } public InventorySOHLineDetail setHistoryText(String value) { this.HistoryText = value; return this; } public String getSourceID() { return SourceID; } public InventorySOHLineDetail setSourceID(String value) { this.SourceID = value; return this; } public InventoryBinLocation getBinLocation() { return BinLocation; } public InventorySOHLineDetail setBinLocation(InventoryBinLocation value) { this.BinLocation = value; return this; } } public static class WorkOrderInput { public String InputID = null; public Integer ItemNo = null; public String InventoryID = null; public String PartNo = null; public String Description = null; public Boolean IsRatio = null; public BigDecimal Quantity = null; public BigDecimal QuantityOnBackorder = null; public String Note = null; public Boolean IsNonStock = null; public Date LastSavedDateTime = null; public ArrayList LineDetails = null; public ArrayList WastageLineDetails = null; public Boolean IsBoMItem = null; public String SubAssemblyBillID = null; public SubAssemblyExplodePolicyOptions SubAssemblyExplodePolicy = null; public ArrayList SubAssemblyWorkOrders = null; public ArrayList CustomFieldValues = null; public String getInputID() { return InputID; } public WorkOrderInput setInputID(String value) { this.InputID = value; return this; } public Integer getItemNo() { return ItemNo; } public WorkOrderInput setItemNo(Integer value) { this.ItemNo = value; return this; } public String getInventoryID() { return InventoryID; } public WorkOrderInput setInventoryID(String value) { this.InventoryID = value; return this; } public String getPartNo() { return PartNo; } public WorkOrderInput setPartNo(String value) { this.PartNo = value; return this; } public String getDescription() { return Description; } public WorkOrderInput setDescription(String value) { this.Description = value; return this; } public Boolean getIsRatio() { return IsRatio; } public WorkOrderInput setIsRatio(Boolean value) { this.IsRatio = value; return this; } public BigDecimal getQuantity() { return Quantity; } public WorkOrderInput setQuantity(BigDecimal value) { this.Quantity = value; return this; } public BigDecimal getQuantityOnBackorder() { return QuantityOnBackorder; } public WorkOrderInput setQuantityOnBackorder(BigDecimal value) { this.QuantityOnBackorder = value; return this; } public String getNote() { return Note; } public WorkOrderInput setNote(String value) { this.Note = value; return this; } public Boolean getIsNonStock() { return IsNonStock; } public WorkOrderInput setIsNonStock(Boolean value) { this.IsNonStock = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public WorkOrderInput setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public ArrayList getLineDetails() { return LineDetails; } public WorkOrderInput setLineDetails(ArrayList value) { this.LineDetails = value; return this; } public ArrayList getWastageLineDetails() { return WastageLineDetails; } public WorkOrderInput setWastageLineDetails(ArrayList value) { this.WastageLineDetails = value; return this; } public Boolean getIsBoMItem() { return IsBoMItem; } public WorkOrderInput setIsBoMItem(Boolean value) { this.IsBoMItem = value; return this; } public String getSubAssemblyBillID() { return SubAssemblyBillID; } public WorkOrderInput setSubAssemblyBillID(String value) { this.SubAssemblyBillID = value; return this; } public SubAssemblyExplodePolicyOptions getSubAssemblyExplodePolicy() { return SubAssemblyExplodePolicy; } public WorkOrderInput setSubAssemblyExplodePolicy(SubAssemblyExplodePolicyOptions value) { this.SubAssemblyExplodePolicy = value; return this; } public ArrayList getSubAssemblyWorkOrders() { return SubAssemblyWorkOrders; } public WorkOrderInput setSubAssemblyWorkOrders(ArrayList value) { this.SubAssemblyWorkOrders = value; return this; } public ArrayList getCustomFieldValues() { return CustomFieldValues; } public WorkOrderInput setCustomFieldValues(ArrayList value) { this.CustomFieldValues = value; return this; } } public static class WorkOrderInstruction { public String InstructionID = null; public Integer ItemNo = null; public String InstructionText = null; public ArrayList CustomFieldValues = null; public String getInstructionID() { return InstructionID; } public WorkOrderInstruction setInstructionID(String value) { this.InstructionID = value; return this; } public Integer getItemNo() { return ItemNo; } public WorkOrderInstruction setItemNo(Integer value) { this.ItemNo = value; return this; } public String getInstructionText() { return InstructionText; } public WorkOrderInstruction setInstructionText(String value) { this.InstructionText = value; return this; } public ArrayList getCustomFieldValues() { return CustomFieldValues; } public WorkOrderInstruction setCustomFieldValues(ArrayList value) { this.CustomFieldValues = value; return this; } } public static class WorkOrderOutput { public String OutputID = null; public Integer ItemNo = null; public String InventoryID = null; public String PartNo = null; public String Description = null; public Boolean IsRatio = null; public BigDecimal Quantity = null; public BigDecimal QuantityExpected = null; public BigDecimal QuantityWrittenOff = null; public String Note = null; public Boolean IsPrimary = null; public BigDecimal CostPercentage = null; public BigDecimal Cost = null; public Date LastSavedDateTime = null; public ArrayList LineDetails = null; public ArrayList WastageLineDetails = null; public ArrayList CustomFieldValues = null; public String getOutputID() { return OutputID; } public WorkOrderOutput setOutputID(String value) { this.OutputID = value; return this; } public Integer getItemNo() { return ItemNo; } public WorkOrderOutput setItemNo(Integer value) { this.ItemNo = value; return this; } public String getInventoryID() { return InventoryID; } public WorkOrderOutput setInventoryID(String value) { this.InventoryID = value; return this; } public String getPartNo() { return PartNo; } public WorkOrderOutput setPartNo(String value) { this.PartNo = value; return this; } public String getDescription() { return Description; } public WorkOrderOutput setDescription(String value) { this.Description = value; return this; } public Boolean getIsRatio() { return IsRatio; } public WorkOrderOutput setIsRatio(Boolean value) { this.IsRatio = value; return this; } public BigDecimal getQuantity() { return Quantity; } public WorkOrderOutput setQuantity(BigDecimal value) { this.Quantity = value; return this; } public BigDecimal getQuantityExpected() { return QuantityExpected; } public WorkOrderOutput setQuantityExpected(BigDecimal value) { this.QuantityExpected = value; return this; } public BigDecimal getQuantityWrittenOff() { return QuantityWrittenOff; } public WorkOrderOutput setQuantityWrittenOff(BigDecimal value) { this.QuantityWrittenOff = value; return this; } public String getNote() { return Note; } public WorkOrderOutput setNote(String value) { this.Note = value; return this; } public Boolean getIsPrimary() { return IsPrimary; } public WorkOrderOutput setIsPrimary(Boolean value) { this.IsPrimary = value; return this; } public BigDecimal getCostPercentage() { return CostPercentage; } public WorkOrderOutput setCostPercentage(BigDecimal value) { this.CostPercentage = value; return this; } public BigDecimal getCost() { return Cost; } public WorkOrderOutput setCost(BigDecimal value) { this.Cost = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public WorkOrderOutput setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public ArrayList getLineDetails() { return LineDetails; } public WorkOrderOutput setLineDetails(ArrayList value) { this.LineDetails = value; return this; } public ArrayList getWastageLineDetails() { return WastageLineDetails; } public WorkOrderOutput setWastageLineDetails(ArrayList value) { this.WastageLineDetails = value; return this; } public ArrayList getCustomFieldValues() { return CustomFieldValues; } public WorkOrderOutput setCustomFieldValues(ArrayList value) { this.CustomFieldValues = value; return this; } } public static class WorkOrderStage { public String StageID = null; public Integer ItemNo = null; public String Name = null; public BigDecimal RequiredCapacity = null; public Date StartDate = null; public ProductionLineWorkCentre ProductionLineWorkCentre = null; public ArrayList Inputs = null; public ArrayList Instructions = null; public ArrayList CustomFieldValues = null; public Statuses Status = null; public String getStageID() { return StageID; } public WorkOrderStage setStageID(String value) { this.StageID = value; return this; } public Integer getItemNo() { return ItemNo; } public WorkOrderStage setItemNo(Integer value) { this.ItemNo = value; return this; } public String getName() { return Name; } public WorkOrderStage setName(String value) { this.Name = value; return this; } public BigDecimal getRequiredCapacity() { return RequiredCapacity; } public WorkOrderStage setRequiredCapacity(BigDecimal value) { this.RequiredCapacity = value; return this; } public Date getStartDate() { return StartDate; } public WorkOrderStage setStartDate(Date value) { this.StartDate = value; return this; } public ProductionLineWorkCentre getProductionLineWorkCentre() { return ProductionLineWorkCentre; } public WorkOrderStage setProductionLineWorkCentre(ProductionLineWorkCentre value) { this.ProductionLineWorkCentre = value; return this; } public ArrayList getInputs() { return Inputs; } public WorkOrderStage setInputs(ArrayList value) { this.Inputs = value; return this; } public ArrayList getInstructions() { return Instructions; } public WorkOrderStage setInstructions(ArrayList value) { this.Instructions = value; return this; } public ArrayList getCustomFieldValues() { return CustomFieldValues; } public WorkOrderStage setCustomFieldValues(ArrayList value) { this.CustomFieldValues = value; return this; } public Statuses getStatus() { return Status; } public WorkOrderStage setStatus(Statuses value) { this.Status = value; return this; } } public static class DebtorContact { public String ContactID = null; @Required() public String DebtorID = null; public String AccountNo = null; public String Title = null; @Required() public String FName = null; @Required() public String SName = null; public String PrimaryID = null; public String PrimaryPositionName = null; public String SecondaryID = null; public String TertiaryID = null; @Required() public String Phone = null; public String Mobile = null; public String Fax = null; @Required() public String EmailAddress = null; public String ProspectID = null; public Boolean DefaultContact = null; public Boolean CreditorContact = null; public Date LastSavedDateTime = null; public Integer ItemNo = null; public String getContactID() { return ContactID; } public DebtorContact setContactID(String value) { this.ContactID = value; return this; } public String getDebtorID() { return DebtorID; } public DebtorContact setDebtorID(String value) { this.DebtorID = value; return this; } public String getAccountNo() { return AccountNo; } public DebtorContact setAccountNo(String value) { this.AccountNo = value; return this; } public String getTitle() { return Title; } public DebtorContact setTitle(String value) { this.Title = value; return this; } public String getFName() { return FName; } public DebtorContact setFName(String value) { this.FName = value; return this; } public String getSName() { return SName; } public DebtorContact setSName(String value) { this.SName = value; return this; } public String getPrimaryID() { return PrimaryID; } public DebtorContact setPrimaryID(String value) { this.PrimaryID = value; return this; } public String getPrimaryPositionName() { return PrimaryPositionName; } public DebtorContact setPrimaryPositionName(String value) { this.PrimaryPositionName = value; return this; } public String getSecondaryID() { return SecondaryID; } public DebtorContact setSecondaryID(String value) { this.SecondaryID = value; return this; } public String getTertiaryID() { return TertiaryID; } public DebtorContact setTertiaryID(String value) { this.TertiaryID = value; return this; } public String getPhone() { return Phone; } public DebtorContact setPhone(String value) { this.Phone = value; return this; } public String getMobile() { return Mobile; } public DebtorContact setMobile(String value) { this.Mobile = value; return this; } public String getFax() { return Fax; } public DebtorContact setFax(String value) { this.Fax = value; return this; } public String getEmailAddress() { return EmailAddress; } public DebtorContact setEmailAddress(String value) { this.EmailAddress = value; return this; } public String getProspectID() { return ProspectID; } public DebtorContact setProspectID(String value) { this.ProspectID = value; return this; } public Boolean isDefaultContact() { return DefaultContact; } public DebtorContact setDefaultContact(Boolean value) { this.DefaultContact = value; return this; } public Boolean isCreditorContact() { return CreditorContact; } public DebtorContact setCreditorContact(Boolean value) { this.CreditorContact = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public DebtorContact setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Integer getItemNo() { return ItemNo; } public DebtorContact setItemNo(Integer value) { this.ItemNo = value; return this; } } @DataContract public static class AuthenticateResponse { @DataMember(Order=1) public String UserId = null; @DataMember(Order=2) public String SessionId = null; @DataMember(Order=3) public String UserName = null; @DataMember(Order=4) public String DisplayName = null; @DataMember(Order=5) public String ReferrerUrl = null; @DataMember(Order=6) public String BearerToken = null; @DataMember(Order=7) public String RefreshToken = null; @DataMember(Order=8) public ResponseStatus ResponseStatus = null; @DataMember(Order=9) public HashMap Meta = null; public String getUserId() { return UserId; } public AuthenticateResponse setUserId(String value) { this.UserId = value; return this; } public String getSessionId() { return SessionId; } public AuthenticateResponse setSessionId(String value) { this.SessionId = value; return this; } public String getUserName() { return UserName; } public AuthenticateResponse setUserName(String value) { this.UserName = value; return this; } public String getDisplayName() { return DisplayName; } public AuthenticateResponse setDisplayName(String value) { this.DisplayName = value; return this; } public String getReferrerUrl() { return ReferrerUrl; } public AuthenticateResponse setReferrerUrl(String value) { this.ReferrerUrl = value; return this; } public String getBearerToken() { return BearerToken; } public AuthenticateResponse setBearerToken(String value) { this.BearerToken = value; return this; } public String getRefreshToken() { return RefreshToken; } public AuthenticateResponse setRefreshToken(String value) { this.RefreshToken = value; return this; } public ResponseStatus getResponseStatus() { return ResponseStatus; } public AuthenticateResponse setResponseStatus(ResponseStatus value) { this.ResponseStatus = value; return this; } public HashMap getMeta() { return Meta; } public AuthenticateResponse setMeta(HashMap value) { this.Meta = value; return this; } } public static class ProductionLine { public String ProductionLineID = null; public String Name = null; public String Description = null; public Boolean IsEnabled = null; public ProductionArea ProductionArea = null; public String getProductionLineID() { return ProductionLineID; } public ProductionLine setProductionLineID(String value) { this.ProductionLineID = value; return this; } public String getName() { return Name; } public ProductionLine setName(String value) { this.Name = value; return this; } public String getDescription() { return Description; } public ProductionLine setDescription(String value) { this.Description = value; return this; } public Boolean getIsEnabled() { return IsEnabled; } public ProductionLine setIsEnabled(Boolean value) { this.IsEnabled = value; return this; } public ProductionArea getProductionArea() { return ProductionArea; } public ProductionLine setProductionArea(ProductionArea value) { this.ProductionArea = value; return this; } } public static class BillParent { public String BillID = null; public String BillNo = null; public String Description = null; public String getBillID() { return BillID; } public BillParent setBillID(String value) { this.BillID = value; return this; } public String getBillNo() { return BillNo; } public BillParent setBillNo(String value) { this.BillNo = value; return this; } public String getDescription() { return Description; } public BillParent setDescription(String value) { this.Description = value; return this; } } public static enum CellTypes { Date(0), Text(1), Float(2), Integer(3), Lookup(7), Combo(8), Checkbox(10); private final int value; CellTypes(final int intValue) { value = intValue; } public int getValue() { return value; } } public static enum SubAssemblyExplodePolicyOptions { AlwaysExplode, NeverExplode, ExplodeShortfalls; } public static class ProductionLineWorkCentre { public String ProductionLineWorkCentreID = null; public WorkCentre WorkCentre = null; public String getProductionLineWorkCentreID() { return ProductionLineWorkCentreID; } public ProductionLineWorkCentre setProductionLineWorkCentreID(String value) { this.ProductionLineWorkCentreID = value; return this; } public WorkCentre getWorkCentre() { return WorkCentre; } public ProductionLineWorkCentre setWorkCentre(WorkCentre value) { this.WorkCentre = value; return this; } } public static enum CreditorTermsTypes { Invoice, Statement; } public static class CreditorLedger { public String LedgerID = null; public String Name = null; public String LedgerAccountID = null; public String LedgerAccountNo = null; public String LedgerAccountDescription = null; public String getLedgerID() { return LedgerID; } public CreditorLedger setLedgerID(String value) { this.LedgerID = value; return this; } public String getName() { return Name; } public CreditorLedger setName(String value) { this.Name = value; return this; } public String getLedgerAccountID() { return LedgerAccountID; } public CreditorLedger setLedgerAccountID(String value) { this.LedgerAccountID = value; return this; } public String getLedgerAccountNo() { return LedgerAccountNo; } public CreditorLedger setLedgerAccountNo(String value) { this.LedgerAccountNo = value; return this; } public String getLedgerAccountDescription() { return LedgerAccountDescription; } public CreditorLedger setLedgerAccountDescription(String value) { this.LedgerAccountDescription = value; return this; } } public static enum TradingStatuses { EDebtorTradingStatusInActive, EDebtorTradingStatusActive; } public static enum PeriodTypes { Weekly, Fortnightly, Monthly, Custom; } public static enum TermsTypes { Invoice, Statement; } public static class DebtorBranchDebtor { public String DebtorID = null; public String AccountNo = null; public String Name = null; public Date LastSavedDateTime = null; public String getDebtorID() { return DebtorID; } public DebtorBranchDebtor setDebtorID(String value) { this.DebtorID = value; return this; } public String getAccountNo() { return AccountNo; } public DebtorBranchDebtor setAccountNo(String value) { this.AccountNo = value; return this; } public String getName() { return Name; } public DebtorBranchDebtor setName(String value) { this.Name = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public DebtorBranchDebtor setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } } public static class DebtorDirector { public String DirectorID = null; public String Name = null; public String Address = null; public String OfficeHeld = null; public String getDirectorID() { return DirectorID; } public DebtorDirector setDirectorID(String value) { this.DirectorID = value; return this; } public String getName() { return Name; } public DebtorDirector setName(String value) { this.Name = value; return this; } public String getAddress() { return Address; } public DebtorDirector setAddress(String value) { this.Address = value; return this; } public String getOfficeHeld() { return OfficeHeld; } public DebtorDirector setOfficeHeld(String value) { this.OfficeHeld = value; return this; } } public static class DebtorBudget { public String BudgetID = null; public DebtorMonth Month = null; public BigDecimal LastBudget = null; public BigDecimal CurrentBudget = null; public BigDecimal NextBudget = null; public String getBudgetID() { return BudgetID; } public DebtorBudget setBudgetID(String value) { this.BudgetID = value; return this; } public DebtorMonth getMonth() { return Month; } public DebtorBudget setMonth(DebtorMonth value) { this.Month = value; return this; } public BigDecimal getLastBudget() { return LastBudget; } public DebtorBudget setLastBudget(BigDecimal value) { this.LastBudget = value; return this; } public BigDecimal getCurrentBudget() { return CurrentBudget; } public DebtorBudget setCurrentBudget(BigDecimal value) { this.CurrentBudget = value; return this; } public BigDecimal getNextBudget() { return NextBudget; } public DebtorBudget setNextBudget(BigDecimal value) { this.NextBudget = value; return this; } } public static class DebtorSystem { public DebtorSystemTemplate Template = null; public String SystemID = null; public Date LastSavedDateTime = null; public String Description = null; public ArrayList Fields = null; public DebtorSystemTemplate getTemplate() { return Template; } public DebtorSystem setTemplate(DebtorSystemTemplate value) { this.Template = value; return this; } public String getSystemID() { return SystemID; } public DebtorSystem setSystemID(String value) { this.SystemID = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public DebtorSystem setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public String getDescription() { return Description; } public DebtorSystem setDescription(String value) { this.Description = value; return this; } public ArrayList getFields() { return Fields; } public DebtorSystem setFields(ArrayList value) { this.Fields = value; return this; } } public static class DebtorLedger { public String LedgerID = null; public String Name = null; public String LedgerAccountID = null; public String LedgerAccountNo = null; public String LedgerAccountDescription = null; public String getLedgerID() { return LedgerID; } public DebtorLedger setLedgerID(String value) { this.LedgerID = value; return this; } public String getName() { return Name; } public DebtorLedger setName(String value) { this.Name = value; return this; } public String getLedgerAccountID() { return LedgerAccountID; } public DebtorLedger setLedgerAccountID(String value) { this.LedgerAccountID = value; return this; } public String getLedgerAccountNo() { return LedgerAccountNo; } public DebtorLedger setLedgerAccountNo(String value) { this.LedgerAccountNo = value; return this; } public String getLedgerAccountDescription() { return LedgerAccountDescription; } public DebtorLedger setLedgerAccountDescription(String value) { this.LedgerAccountDescription = value; return this; } } public static class DebtorBackOrder { public String InvoiceID = null; public String InvoiceNo = null; public String CustomerOrderNo = null; public Date Date = null; public BigDecimal Quantity = null; public Integer QuantityDecimalPlaces = null; public String Warehouse = null; public String InventoryID = null; public String PartNo = null; public String Description = null; public String CreditorID = null; public String SupplierName = null; public String OrderNo = null; public Date ExpectedDeliveryDate = null; public String HistoryTextComment = null; public BigDecimal QuantityConsumed = null; public String getInvoiceID() { return InvoiceID; } public DebtorBackOrder setInvoiceID(String value) { this.InvoiceID = value; return this; } public String getInvoiceNo() { return InvoiceNo; } public DebtorBackOrder setInvoiceNo(String value) { this.InvoiceNo = value; return this; } public String getCustomerOrderNo() { return CustomerOrderNo; } public DebtorBackOrder setCustomerOrderNo(String value) { this.CustomerOrderNo = value; return this; } public Date getDate() { return Date; } public DebtorBackOrder setDate(Date value) { this.Date = value; return this; } public BigDecimal getQuantity() { return Quantity; } public DebtorBackOrder setQuantity(BigDecimal value) { this.Quantity = value; return this; } public Integer getQuantityDecimalPlaces() { return QuantityDecimalPlaces; } public DebtorBackOrder setQuantityDecimalPlaces(Integer value) { this.QuantityDecimalPlaces = value; return this; } public String getWarehouse() { return Warehouse; } public DebtorBackOrder setWarehouse(String value) { this.Warehouse = value; return this; } public String getInventoryID() { return InventoryID; } public DebtorBackOrder setInventoryID(String value) { this.InventoryID = value; return this; } public String getPartNo() { return PartNo; } public DebtorBackOrder setPartNo(String value) { this.PartNo = value; return this; } public String getDescription() { return Description; } public DebtorBackOrder setDescription(String value) { this.Description = value; return this; } public String getCreditorID() { return CreditorID; } public DebtorBackOrder setCreditorID(String value) { this.CreditorID = value; return this; } public String getSupplierName() { return SupplierName; } public DebtorBackOrder setSupplierName(String value) { this.SupplierName = value; return this; } public String getOrderNo() { return OrderNo; } public DebtorBackOrder setOrderNo(String value) { this.OrderNo = value; return this; } public Date getExpectedDeliveryDate() { return ExpectedDeliveryDate; } public DebtorBackOrder setExpectedDeliveryDate(Date value) { this.ExpectedDeliveryDate = value; return this; } public String getHistoryTextComment() { return HistoryTextComment; } public DebtorBackOrder setHistoryTextComment(String value) { this.HistoryTextComment = value; return this; } public BigDecimal getQuantityConsumed() { return QuantityConsumed; } public DebtorBackOrder setQuantityConsumed(BigDecimal value) { this.QuantityConsumed = value; return this; } } public static enum DebtorTermsTypes { Invoice, Statement; } public static enum EmailStatuses { Entered, ReadyToSend, Sent; } public static class StaffMember { public String StaffID = null; public String Title = null; public String FirstName = null; public String Surname = null; public String Username = null; public Boolean IsActive = null; public Boolean IsEnabled = null; public String getStaffID() { return StaffID; } public StaffMember setStaffID(String value) { this.StaffID = value; return this; } public String getTitle() { return Title; } public StaffMember setTitle(String value) { this.Title = value; return this; } public String getFirstName() { return FirstName; } public StaffMember setFirstName(String value) { this.FirstName = value; return this; } public String getSurname() { return Surname; } public StaffMember setSurname(String value) { this.Surname = value; return this; } public String getUsername() { return Username; } public StaffMember setUsername(String value) { this.Username = value; return this; } public Boolean getIsActive() { return IsActive; } public StaffMember setIsActive(Boolean value) { this.IsActive = value; return this; } public Boolean getIsEnabled() { return IsEnabled; } public StaffMember setIsEnabled(Boolean value) { this.IsEnabled = value; return this; } } public static enum Statuses { Activated, UnActivated; } public static class ReceivedPOLineQuantity { public String OrderLineID = null; public BigDecimal Quantity = null; public ArrayList Details = null; public String getOrderLineID() { return OrderLineID; } public ReceivedPOLineQuantity setOrderLineID(String value) { this.OrderLineID = value; return this; } public BigDecimal getQuantity() { return Quantity; } public ReceivedPOLineQuantity setQuantity(BigDecimal value) { this.Quantity = value; return this; } public ArrayList getDetails() { return Details; } public ReceivedPOLineQuantity setDetails(ArrayList value) { this.Details = value; return this; } } public static enum PurchaseOrderType { DefaultOrderType, BackToBack, MultiBack; } public static enum ReceivalLineType { Unknown, Inventory, NonInventory; } public static enum InventoryStatuses { EInventoryStatusActive, EInventoryStatusDiscontinued, EInventoryStatusDeleted, EInventoryStatusSlow, EInventoryStatusObsolete; } public static enum InventoryBOMTypes { EInventoryBOMTypeNone, EInventoryBOMTypeBOM, EInventoryBOMTypeTemplate, EInventoryBOMTypeKit, EInventoryBOMTypeKitTaxOverride; } public static class InventoryStyle { public String StyleID = null; public String StyleCode = null; public String StyleDescription = null; public String getStyleID() { return StyleID; } public InventoryStyle setStyleID(String value) { this.StyleID = value; return this; } public String getStyleCode() { return StyleCode; } public InventoryStyle setStyleCode(String value) { this.StyleCode = value; return this; } public String getStyleDescription() { return StyleDescription; } public InventoryStyle setStyleDescription(String value) { this.StyleDescription = value; return this; } } public static class InventoryColour { public String ColourID = null; public String Description = null; public String getColourID() { return ColourID; } public InventoryColour setColourID(String value) { this.ColourID = value; return this; } public String getDescription() { return Description; } public InventoryColour setDescription(String value) { this.Description = value; return this; } } public static class InventorySize { public String SizeID = null; public String Description = null; public String getSizeID() { return SizeID; } public InventorySize setSizeID(String value) { this.SizeID = value; return this; } public String getDescription() { return Description; } public InventorySize setDescription(String value) { this.Description = value; return this; } } public static class InventoryWarehouseSOH { public String IN_LogicalID = null; public String Warehouse = null; public BigDecimal TotalSOH = null; public BigDecimal TotalBackOrders = null; public BigDecimal ManualBackOrders = null; public BigDecimal AutoBackOrders = null; public BigDecimal ShipOnCompletion = null; public BigDecimal WarehouseTransfers = null; public BigDecimal UnprocessedSales = null; public BigDecimal ForwardRequirements = null; public BigDecimal BOMComponentWIP = null; public String getInLogicalID() { return IN_LogicalID; } public InventoryWarehouseSOH setInLogicalID(String value) { this.IN_LogicalID = value; return this; } public String getWarehouse() { return Warehouse; } public InventoryWarehouseSOH setWarehouse(String value) { this.Warehouse = value; return this; } public BigDecimal getTotalSOH() { return TotalSOH; } public InventoryWarehouseSOH setTotalSOH(BigDecimal value) { this.TotalSOH = value; return this; } public BigDecimal getTotalBackOrders() { return TotalBackOrders; } public InventoryWarehouseSOH setTotalBackOrders(BigDecimal value) { this.TotalBackOrders = value; return this; } public BigDecimal getManualBackOrders() { return ManualBackOrders; } public InventoryWarehouseSOH setManualBackOrders(BigDecimal value) { this.ManualBackOrders = value; return this; } public BigDecimal getAutoBackOrders() { return AutoBackOrders; } public InventoryWarehouseSOH setAutoBackOrders(BigDecimal value) { this.AutoBackOrders = value; return this; } public BigDecimal getShipOnCompletion() { return ShipOnCompletion; } public InventoryWarehouseSOH setShipOnCompletion(BigDecimal value) { this.ShipOnCompletion = value; return this; } public BigDecimal getWarehouseTransfers() { return WarehouseTransfers; } public InventoryWarehouseSOH setWarehouseTransfers(BigDecimal value) { this.WarehouseTransfers = value; return this; } public BigDecimal getUnprocessedSales() { return UnprocessedSales; } public InventoryWarehouseSOH setUnprocessedSales(BigDecimal value) { this.UnprocessedSales = value; return this; } public BigDecimal getForwardRequirements() { return ForwardRequirements; } public InventoryWarehouseSOH setForwardRequirements(BigDecimal value) { this.ForwardRequirements = value; return this; } public BigDecimal getBomComponentWIP() { return BOMComponentWIP; } public InventoryWarehouseSOH setBomComponentWIP(BigDecimal value) { this.BOMComponentWIP = value; return this; } } public static class InventoryDebtorPartNumber { public String DebtorPartNumberID = null; public String DebtorID = null; public String DebtorAccountNo = null; public String DebtorName = null; public String DebtorPartNo = null; public String DebtorBarcode = null; public String getDebtorPartNumberID() { return DebtorPartNumberID; } public InventoryDebtorPartNumber setDebtorPartNumberID(String value) { this.DebtorPartNumberID = value; return this; } public String getDebtorID() { return DebtorID; } public InventoryDebtorPartNumber setDebtorID(String value) { this.DebtorID = value; return this; } public String getDebtorAccountNo() { return DebtorAccountNo; } public InventoryDebtorPartNumber setDebtorAccountNo(String value) { this.DebtorAccountNo = value; return this; } public String getDebtorName() { return DebtorName; } public InventoryDebtorPartNumber setDebtorName(String value) { this.DebtorName = value; return this; } public String getDebtorPartNo() { return DebtorPartNo; } public InventoryDebtorPartNumber setDebtorPartNo(String value) { this.DebtorPartNo = value; return this; } public String getDebtorBarcode() { return DebtorBarcode; } public InventoryDebtorPartNumber setDebtorBarcode(String value) { this.DebtorBarcode = value; return this; } } public static class InventoryGroupMembership { public String GroupMembershipID = null; public String GroupID = null; public String GroupDescription = null; public String getGroupMembershipID() { return GroupMembershipID; } public InventoryGroupMembership setGroupMembershipID(String value) { this.GroupMembershipID = value; return this; } public String getGroupID() { return GroupID; } public InventoryGroupMembership setGroupID(String value) { this.GroupID = value; return this; } public String getGroupDescription() { return GroupDescription; } public InventoryGroupMembership setGroupDescription(String value) { this.GroupDescription = value; return this; } } public static class InventoryLogicalOrder { public String LogicalOrderID = null; public String LogicalOrderWarehouseLogicalWarehouseID = null; public String LogicalOrderWarehouseLogicalDescription = null; public String LogicalOrderWarehousePhysicalWarehouseID = null; public String LogicalOrderWarehousePhysicalDescription = null; public String LogicalOrderCentralWarehouseLogicalID = null; public String LogicalOrderCentralWarehouseLogicalDescription = null; public String LogicalOrderCentralWarehousePhysicalID = null; public String LogicalOrderCentralWarehousePhysicalDescription = null; public String getLogicalOrderID() { return LogicalOrderID; } public InventoryLogicalOrder setLogicalOrderID(String value) { this.LogicalOrderID = value; return this; } public String getLogicalOrderWarehouseLogicalWarehouseID() { return LogicalOrderWarehouseLogicalWarehouseID; } public InventoryLogicalOrder setLogicalOrderWarehouseLogicalWarehouseID(String value) { this.LogicalOrderWarehouseLogicalWarehouseID = value; return this; } public String getLogicalOrderWarehouseLogicalDescription() { return LogicalOrderWarehouseLogicalDescription; } public InventoryLogicalOrder setLogicalOrderWarehouseLogicalDescription(String value) { this.LogicalOrderWarehouseLogicalDescription = value; return this; } public String getLogicalOrderWarehousePhysicalWarehouseID() { return LogicalOrderWarehousePhysicalWarehouseID; } public InventoryLogicalOrder setLogicalOrderWarehousePhysicalWarehouseID(String value) { this.LogicalOrderWarehousePhysicalWarehouseID = value; return this; } public String getLogicalOrderWarehousePhysicalDescription() { return LogicalOrderWarehousePhysicalDescription; } public InventoryLogicalOrder setLogicalOrderWarehousePhysicalDescription(String value) { this.LogicalOrderWarehousePhysicalDescription = value; return this; } public String getLogicalOrderCentralWarehouseLogicalID() { return LogicalOrderCentralWarehouseLogicalID; } public InventoryLogicalOrder setLogicalOrderCentralWarehouseLogicalID(String value) { this.LogicalOrderCentralWarehouseLogicalID = value; return this; } public String getLogicalOrderCentralWarehouseLogicalDescription() { return LogicalOrderCentralWarehouseLogicalDescription; } public InventoryLogicalOrder setLogicalOrderCentralWarehouseLogicalDescription(String value) { this.LogicalOrderCentralWarehouseLogicalDescription = value; return this; } public String getLogicalOrderCentralWarehousePhysicalID() { return LogicalOrderCentralWarehousePhysicalID; } public InventoryLogicalOrder setLogicalOrderCentralWarehousePhysicalID(String value) { this.LogicalOrderCentralWarehousePhysicalID = value; return this; } public String getLogicalOrderCentralWarehousePhysicalDescription() { return LogicalOrderCentralWarehousePhysicalDescription; } public InventoryLogicalOrder setLogicalOrderCentralWarehousePhysicalDescription(String value) { this.LogicalOrderCentralWarehousePhysicalDescription = value; return this; } } public static class InventoryDefaultBinLocation { public String DefaultBinLocationID = null; public String LogicalWarehouseID = null; public String LogicalWarehouseDescription = null; public String PhysicalWarehouseID = null; public String PhysicalWarehouseDescription = null; public InventoryBinLocation BinLocation = null; public ArrayList CustomFieldValues = null; public String getDefaultBinLocationID() { return DefaultBinLocationID; } public InventoryDefaultBinLocation setDefaultBinLocationID(String value) { this.DefaultBinLocationID = value; return this; } public String getLogicalWarehouseID() { return LogicalWarehouseID; } public InventoryDefaultBinLocation setLogicalWarehouseID(String value) { this.LogicalWarehouseID = value; return this; } public String getLogicalWarehouseDescription() { return LogicalWarehouseDescription; } public InventoryDefaultBinLocation setLogicalWarehouseDescription(String value) { this.LogicalWarehouseDescription = value; return this; } public String getPhysicalWarehouseID() { return PhysicalWarehouseID; } public InventoryDefaultBinLocation setPhysicalWarehouseID(String value) { this.PhysicalWarehouseID = value; return this; } public String getPhysicalWarehouseDescription() { return PhysicalWarehouseDescription; } public InventoryDefaultBinLocation setPhysicalWarehouseDescription(String value) { this.PhysicalWarehouseDescription = value; return this; } public InventoryBinLocation getBinLocation() { return BinLocation; } public InventoryDefaultBinLocation setBinLocation(InventoryBinLocation value) { this.BinLocation = value; return this; } public ArrayList getCustomFieldValues() { return CustomFieldValues; } public InventoryDefaultBinLocation setCustomFieldValues(ArrayList value) { this.CustomFieldValues = value; return this; } } public static enum PriceSources { SellPrice, LastCost, Rrp, P1, P2, P3, P4, P5, P6, P7, P8, P9, P10; } public static enum PriceModes { Percentage, Actual, None; } public static enum PriceSources { SellPrice, LastCost, Rrp, P1, P2, P3, P4, P5, P6, P7, P8, P9, P10; } public static enum PriceModes { Percentage, Actual, None; } public static enum PriceSources { SellPrice, LastCost, Rrp, P1, P2, P3, P4, P5, P6, P7, P8, P9, P10; } public static enum PriceModes { Percentage, Actual, None; } public static class InventorySellingPrice { public BigDecimal Price = null; public Boolean PriceIsIncTax = null; public BigDecimal ForwardPrice = null; public String SellingPriceID = null; public BigDecimal getPrice() { return Price; } public InventorySellingPrice setPrice(BigDecimal value) { this.Price = value; return this; } public Boolean isPriceIsIncTax() { return PriceIsIncTax; } public InventorySellingPrice setPriceIsIncTax(Boolean value) { this.PriceIsIncTax = value; return this; } public BigDecimal getForwardPrice() { return ForwardPrice; } public InventorySellingPrice setForwardPrice(BigDecimal value) { this.ForwardPrice = value; return this; } public String getSellingPriceID() { return SellingPriceID; } public InventorySellingPrice setSellingPriceID(String value) { this.SellingPriceID = value; return this; } } public static class InventorySupplierQuantityPriceBreak { public BigDecimal QuantityBreak = null; public BigDecimal Price = null; public String SupplierQuantityPriceBreakID = null; public BigDecimal getQuantityBreak() { return QuantityBreak; } public InventorySupplierQuantityPriceBreak setQuantityBreak(BigDecimal value) { this.QuantityBreak = value; return this; } public BigDecimal getPrice() { return Price; } public InventorySupplierQuantityPriceBreak setPrice(BigDecimal value) { this.Price = value; return this; } public String getSupplierQuantityPriceBreakID() { return SupplierQuantityPriceBreakID; } public InventorySupplierQuantityPriceBreak setSupplierQuantityPriceBreakID(String value) { this.SupplierQuantityPriceBreakID = value; return this; } } public static enum SetTypes { Normal, Template, Pending, Errored; } public static enum ReverseTypes { None, NextPeriodStart, SpecificPeriodStart, OnASpecificDate; } public static enum RepeatingTypes { None, Days, Months; } public static enum YearTypes { LastYear, CurrentYear, NextYear, Other; } public static enum BASCodes { NoCode, SalesG1, ExportsG2, SalesGstFreeG3, InputTaxSalesG4, NotUsedG5, NotUsedG6, SalesAdjustmentsG7, NotUsedG8, NotUsedG9, CapitalPurchasesG10, PurchasesG11, NotUsedG12, PurchasesForSalesG13, PurchasesGstFreeG14, PurchasesPrivateG15, NotUsedG16, NotUsedG17, PurchaseAdjustmentsG18, NotUsedG19, NotUsedG20, SalariesPaidW1, SalaryDeductionsW2, InvestmentDeductionsW3, NoAbnW4, WineEqualisationPayable1C, WineEqualisationRefundable1D, LuxuryCarPayable1E, LuxuryCarRefundable1F, WstCredit1G, PayAsYouGo4; } public static class BookInShipment { public String ShipmentID = null; public String ShipmentNo = null; public String getShipmentID() { return ShipmentID; } public BookInShipment setShipmentID(String value) { this.ShipmentID = value; return this; } public String getShipmentNo() { return ShipmentNo; } public BookInShipment setShipmentNo(String value) { this.ShipmentNo = value; return this; } } public static class BookInOtherBookIn { public String BookInID = null; public ArrayList Lines = null; public String getBookInID() { return BookInID; } public BookInOtherBookIn setBookInID(String value) { this.BookInID = value; return this; } public ArrayList getLines() { return Lines; } public BookInOtherBookIn setLines(ArrayList value) { this.Lines = value; return this; } } public static class BookInShipmentLine { public String ShipmentLineID = null; public Integer ItemNo = null; public String SHInvoicesRecID = null; public BigDecimal QuantityOrdered = null; public BigDecimal QuantityThisShipment = null; public BigDecimal OrderedCost = null; public BigDecimal FXOrderedCost = null; public BigDecimal UnitCostExTax = null; public CurrencyRate FXRate = null; public BigDecimal FXUnitCostExTax = null; public TaxRate TaxRate = null; public BigDecimal TaxAmount = null; public BigDecimal UnitCostIncTax = null; public BigDecimal LineTotalExTax = null; public BigDecimal LineTotalIncTax = null; public BigDecimal FXLineTotalExTax = null; public BigDecimal LandedCostLineTotal = null; public BigDecimal LandedCost = null; public String InventoryID = null; public String PartNo = null; public String getShipmentLineID() { return ShipmentLineID; } public BookInShipmentLine setShipmentLineID(String value) { this.ShipmentLineID = value; return this; } public Integer getItemNo() { return ItemNo; } public BookInShipmentLine setItemNo(Integer value) { this.ItemNo = value; return this; } public String getShInvoicesRecID() { return SHInvoicesRecID; } public BookInShipmentLine setShInvoicesRecID(String value) { this.SHInvoicesRecID = value; return this; } public BigDecimal getQuantityOrdered() { return QuantityOrdered; } public BookInShipmentLine setQuantityOrdered(BigDecimal value) { this.QuantityOrdered = value; return this; } public BigDecimal getQuantityThisShipment() { return QuantityThisShipment; } public BookInShipmentLine setQuantityThisShipment(BigDecimal value) { this.QuantityThisShipment = value; return this; } public BigDecimal getOrderedCost() { return OrderedCost; } public BookInShipmentLine setOrderedCost(BigDecimal value) { this.OrderedCost = value; return this; } public BigDecimal getFxOrderedCost() { return FXOrderedCost; } public BookInShipmentLine setFxOrderedCost(BigDecimal value) { this.FXOrderedCost = value; return this; } public BigDecimal getUnitCostExTax() { return UnitCostExTax; } public BookInShipmentLine setUnitCostExTax(BigDecimal value) { this.UnitCostExTax = value; return this; } public CurrencyRate getFxRate() { return FXRate; } public BookInShipmentLine setFxRate(CurrencyRate value) { this.FXRate = value; return this; } public BigDecimal getFxUnitCostExTax() { return FXUnitCostExTax; } public BookInShipmentLine setFxUnitCostExTax(BigDecimal value) { this.FXUnitCostExTax = value; return this; } public TaxRate getTaxRate() { return TaxRate; } public BookInShipmentLine setTaxRate(TaxRate value) { this.TaxRate = value; return this; } public BigDecimal getTaxAmount() { return TaxAmount; } public BookInShipmentLine setTaxAmount(BigDecimal value) { this.TaxAmount = value; return this; } public BigDecimal getUnitCostIncTax() { return UnitCostIncTax; } public BookInShipmentLine setUnitCostIncTax(BigDecimal value) { this.UnitCostIncTax = value; return this; } public BigDecimal getLineTotalExTax() { return LineTotalExTax; } public BookInShipmentLine setLineTotalExTax(BigDecimal value) { this.LineTotalExTax = value; return this; } public BigDecimal getLineTotalIncTax() { return LineTotalIncTax; } public BookInShipmentLine setLineTotalIncTax(BigDecimal value) { this.LineTotalIncTax = value; return this; } public BigDecimal getFxLineTotalExTax() { return FXLineTotalExTax; } public BookInShipmentLine setFxLineTotalExTax(BigDecimal value) { this.FXLineTotalExTax = value; return this; } public BigDecimal getLandedCostLineTotal() { return LandedCostLineTotal; } public BookInShipmentLine setLandedCostLineTotal(BigDecimal value) { this.LandedCostLineTotal = value; return this; } public BigDecimal getLandedCost() { return LandedCost; } public BookInShipmentLine setLandedCost(BigDecimal value) { this.LandedCost = value; return this; } public String getInventoryID() { return InventoryID; } public BookInShipmentLine setInventoryID(String value) { this.InventoryID = value; return this; } public String getPartNo() { return PartNo; } public BookInShipmentLine setPartNo(String value) { this.PartNo = value; return this; } } public static enum StatusType { Entered, BookingIn, Closed; } public static class Account { public String LedgerID = null; public String AccountNo = null; public String Description = null; public String getLedgerID() { return LedgerID; } public Account setLedgerID(String value) { this.LedgerID = value; return this; } public String getAccountNo() { return AccountNo; } public Account setAccountNo(String value) { this.AccountNo = value; return this; } public String getDescription() { return Description; } public Account setDescription(String value) { this.Description = value; return this; } } public static class ShipmentImportCost { public String ImportCostID = null; public Integer ItemNo = null; public String CreditorID = null; public String CreditorAccountNo = null; public String CreditorName = null; public ShipmentCostType CostType = null; public Boolean UseForwardCoverContract = null; public BigDecimal FXRate = null; public BigDecimal FXAmount = null; public BigDecimal HomeAmount = null; public TaxRate TaxRate = null; public BigDecimal TaxAmount = null; public BigDecimal TotalAmount = null; public ArrayList ApportionedOnPurchaseOrders = null; public ApportionMethods ApportionMethod = null; public Boolean Apportioned = null; public Boolean Invoiced = null; public Date InvoiceDate = null; public Date DueDate = null; public String InvoiceNo = null; public String Reference = null; public String CR_TransID = null; public Date LastSavedDateTime = null; public String UserField1 = null; public String UserField2 = null; public String UserField3 = null; public String UserField4 = null; public String UserField5 = null; public String UserField6 = null; public String UserField7 = null; public String UserField8 = null; public String UserField9 = null; public String UserField10 = null; public String getImportCostID() { return ImportCostID; } public ShipmentImportCost setImportCostID(String value) { this.ImportCostID = value; return this; } public Integer getItemNo() { return ItemNo; } public ShipmentImportCost setItemNo(Integer value) { this.ItemNo = value; return this; } public String getCreditorID() { return CreditorID; } public ShipmentImportCost setCreditorID(String value) { this.CreditorID = value; return this; } public String getCreditorAccountNo() { return CreditorAccountNo; } public ShipmentImportCost setCreditorAccountNo(String value) { this.CreditorAccountNo = value; return this; } public String getCreditorName() { return CreditorName; } public ShipmentImportCost setCreditorName(String value) { this.CreditorName = value; return this; } public ShipmentCostType getCostType() { return CostType; } public ShipmentImportCost setCostType(ShipmentCostType value) { this.CostType = value; return this; } public Boolean isUseForwardCoverContract() { return UseForwardCoverContract; } public ShipmentImportCost setUseForwardCoverContract(Boolean value) { this.UseForwardCoverContract = value; return this; } public BigDecimal getFxRate() { return FXRate; } public ShipmentImportCost setFxRate(BigDecimal value) { this.FXRate = value; return this; } public BigDecimal getFxAmount() { return FXAmount; } public ShipmentImportCost setFxAmount(BigDecimal value) { this.FXAmount = value; return this; } public BigDecimal getHomeAmount() { return HomeAmount; } public ShipmentImportCost setHomeAmount(BigDecimal value) { this.HomeAmount = value; return this; } public TaxRate getTaxRate() { return TaxRate; } public ShipmentImportCost setTaxRate(TaxRate value) { this.TaxRate = value; return this; } public BigDecimal getTaxAmount() { return TaxAmount; } public ShipmentImportCost setTaxAmount(BigDecimal value) { this.TaxAmount = value; return this; } public BigDecimal getTotalAmount() { return TotalAmount; } public ShipmentImportCost setTotalAmount(BigDecimal value) { this.TotalAmount = value; return this; } public ArrayList getApportionedOnPurchaseOrders() { return ApportionedOnPurchaseOrders; } public ShipmentImportCost setApportionedOnPurchaseOrders(ArrayList value) { this.ApportionedOnPurchaseOrders = value; return this; } public ApportionMethods getApportionMethod() { return ApportionMethod; } public ShipmentImportCost setApportionMethod(ApportionMethods value) { this.ApportionMethod = value; return this; } public Boolean isApportioned() { return Apportioned; } public ShipmentImportCost setApportioned(Boolean value) { this.Apportioned = value; return this; } public Boolean isInvoiced() { return Invoiced; } public ShipmentImportCost setInvoiced(Boolean value) { this.Invoiced = value; return this; } public Date getInvoiceDate() { return InvoiceDate; } public ShipmentImportCost setInvoiceDate(Date value) { this.InvoiceDate = value; return this; } public Date getDueDate() { return DueDate; } public ShipmentImportCost setDueDate(Date value) { this.DueDate = value; return this; } public String getInvoiceNo() { return InvoiceNo; } public ShipmentImportCost setInvoiceNo(String value) { this.InvoiceNo = value; return this; } public String getReference() { return Reference; } public ShipmentImportCost setReference(String value) { this.Reference = value; return this; } public String getCrTransID() { return CR_TransID; } public ShipmentImportCost setCrTransID(String value) { this.CR_TransID = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public ShipmentImportCost setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public String getUserField1() { return UserField1; } public ShipmentImportCost setUserField1(String value) { this.UserField1 = value; return this; } public String getUserField2() { return UserField2; } public ShipmentImportCost setUserField2(String value) { this.UserField2 = value; return this; } public String getUserField3() { return UserField3; } public ShipmentImportCost setUserField3(String value) { this.UserField3 = value; return this; } public String getUserField4() { return UserField4; } public ShipmentImportCost setUserField4(String value) { this.UserField4 = value; return this; } public String getUserField5() { return UserField5; } public ShipmentImportCost setUserField5(String value) { this.UserField5 = value; return this; } public String getUserField6() { return UserField6; } public ShipmentImportCost setUserField6(String value) { this.UserField6 = value; return this; } public String getUserField7() { return UserField7; } public ShipmentImportCost setUserField7(String value) { this.UserField7 = value; return this; } public String getUserField8() { return UserField8; } public ShipmentImportCost setUserField8(String value) { this.UserField8 = value; return this; } public String getUserField9() { return UserField9; } public ShipmentImportCost setUserField9(String value) { this.UserField9 = value; return this; } public String getUserField10() { return UserField10; } public ShipmentImportCost setUserField10(String value) { this.UserField10 = value; return this; } } public static class ShipmentVOTI { public String VOTIID = null; public Integer ItemNo = null; public String CreditorID = null; public String CreditorAccountNo = null; public String CreditorName = null; public TaxRate TaxRate = null; public String Description = null; public String InvoiceNo = null; public String Reference = null; public BigDecimal Amount = null; public BigDecimal TaxAmount = null; public Date InvoiceDate = null; public Date DueDate = null; public String CR_TransID = null; public String UserField1 = null; public String UserField2 = null; public String UserField3 = null; public String UserField4 = null; public String UserField5 = null; public String UserField6 = null; public String UserField7 = null; public String UserField8 = null; public String UserField9 = null; public String UserField10 = null; public Boolean Invoiced = null; public String getVotiid() { return VOTIID; } public ShipmentVOTI setVotiid(String value) { this.VOTIID = value; return this; } public Integer getItemNo() { return ItemNo; } public ShipmentVOTI setItemNo(Integer value) { this.ItemNo = value; return this; } public String getCreditorID() { return CreditorID; } public ShipmentVOTI setCreditorID(String value) { this.CreditorID = value; return this; } public String getCreditorAccountNo() { return CreditorAccountNo; } public ShipmentVOTI setCreditorAccountNo(String value) { this.CreditorAccountNo = value; return this; } public String getCreditorName() { return CreditorName; } public ShipmentVOTI setCreditorName(String value) { this.CreditorName = value; return this; } public TaxRate getTaxRate() { return TaxRate; } public ShipmentVOTI setTaxRate(TaxRate value) { this.TaxRate = value; return this; } public String getDescription() { return Description; } public ShipmentVOTI setDescription(String value) { this.Description = value; return this; } public String getInvoiceNo() { return InvoiceNo; } public ShipmentVOTI setInvoiceNo(String value) { this.InvoiceNo = value; return this; } public String getReference() { return Reference; } public ShipmentVOTI setReference(String value) { this.Reference = value; return this; } public BigDecimal getAmount() { return Amount; } public ShipmentVOTI setAmount(BigDecimal value) { this.Amount = value; return this; } public BigDecimal getTaxAmount() { return TaxAmount; } public ShipmentVOTI setTaxAmount(BigDecimal value) { this.TaxAmount = value; return this; } public Date getInvoiceDate() { return InvoiceDate; } public ShipmentVOTI setInvoiceDate(Date value) { this.InvoiceDate = value; return this; } public Date getDueDate() { return DueDate; } public ShipmentVOTI setDueDate(Date value) { this.DueDate = value; return this; } public String getCrTransID() { return CR_TransID; } public ShipmentVOTI setCrTransID(String value) { this.CR_TransID = value; return this; } public String getUserField1() { return UserField1; } public ShipmentVOTI setUserField1(String value) { this.UserField1 = value; return this; } public String getUserField2() { return UserField2; } public ShipmentVOTI setUserField2(String value) { this.UserField2 = value; return this; } public String getUserField3() { return UserField3; } public ShipmentVOTI setUserField3(String value) { this.UserField3 = value; return this; } public String getUserField4() { return UserField4; } public ShipmentVOTI setUserField4(String value) { this.UserField4 = value; return this; } public String getUserField5() { return UserField5; } public ShipmentVOTI setUserField5(String value) { this.UserField5 = value; return this; } public String getUserField6() { return UserField6; } public ShipmentVOTI setUserField6(String value) { this.UserField6 = value; return this; } public String getUserField7() { return UserField7; } public ShipmentVOTI setUserField7(String value) { this.UserField7 = value; return this; } public String getUserField8() { return UserField8; } public ShipmentVOTI setUserField8(String value) { this.UserField8 = value; return this; } public String getUserField9() { return UserField9; } public ShipmentVOTI setUserField9(String value) { this.UserField9 = value; return this; } public String getUserField10() { return UserField10; } public ShipmentVOTI setUserField10(String value) { this.UserField10 = value; return this; } public Boolean isInvoiced() { return Invoiced; } public ShipmentVOTI setInvoiced(Boolean value) { this.Invoiced = value; return this; } } public static class ShipmentInvoice { public String InvoiceID = null; public String InvoiceNo = null; public Integer ItemNo = null; public String Reference = null; public String Remark = null; public Date InvoiceDate = null; public Date DueDate = null; public String CreditorID = null; public String CreditorAccountNo = null; public String CreditorName = null; public Boolean UseForwardCoverContract = null; public ArrayList ForwardCoverContracts = null; public String CR_TransID = null; public String UserField1 = null; public String UserField2 = null; public String UserField3 = null; public String UserField4 = null; public String UserField5 = null; public String UserField6 = null; public String UserField7 = null; public String UserField8 = null; public String UserField9 = null; public String UserField10 = null; public Boolean Invoiced = null; public BigDecimal FXRate = null; public BigDecimal ExpectedHomeAmount = null; public BigDecimal ExpectedFXAmount = null; public BigDecimal HomeAmount = null; public BigDecimal FXAmount = null; public BigDecimal TaxAmount = null; public BigDecimal AmountIncTax = null; public String getInvoiceID() { return InvoiceID; } public ShipmentInvoice setInvoiceID(String value) { this.InvoiceID = value; return this; } public String getInvoiceNo() { return InvoiceNo; } public ShipmentInvoice setInvoiceNo(String value) { this.InvoiceNo = value; return this; } public Integer getItemNo() { return ItemNo; } public ShipmentInvoice setItemNo(Integer value) { this.ItemNo = value; return this; } public String getReference() { return Reference; } public ShipmentInvoice setReference(String value) { this.Reference = value; return this; } public String getRemark() { return Remark; } public ShipmentInvoice setRemark(String value) { this.Remark = value; return this; } public Date getInvoiceDate() { return InvoiceDate; } public ShipmentInvoice setInvoiceDate(Date value) { this.InvoiceDate = value; return this; } public Date getDueDate() { return DueDate; } public ShipmentInvoice setDueDate(Date value) { this.DueDate = value; return this; } public String getCreditorID() { return CreditorID; } public ShipmentInvoice setCreditorID(String value) { this.CreditorID = value; return this; } public String getCreditorAccountNo() { return CreditorAccountNo; } public ShipmentInvoice setCreditorAccountNo(String value) { this.CreditorAccountNo = value; return this; } public String getCreditorName() { return CreditorName; } public ShipmentInvoice setCreditorName(String value) { this.CreditorName = value; return this; } public Boolean isUseForwardCoverContract() { return UseForwardCoverContract; } public ShipmentInvoice setUseForwardCoverContract(Boolean value) { this.UseForwardCoverContract = value; return this; } public ArrayList getForwardCoverContracts() { return ForwardCoverContracts; } public ShipmentInvoice setForwardCoverContracts(ArrayList value) { this.ForwardCoverContracts = value; return this; } public String getCrTransID() { return CR_TransID; } public ShipmentInvoice setCrTransID(String value) { this.CR_TransID = value; return this; } public String getUserField1() { return UserField1; } public ShipmentInvoice setUserField1(String value) { this.UserField1 = value; return this; } public String getUserField2() { return UserField2; } public ShipmentInvoice setUserField2(String value) { this.UserField2 = value; return this; } public String getUserField3() { return UserField3; } public ShipmentInvoice setUserField3(String value) { this.UserField3 = value; return this; } public String getUserField4() { return UserField4; } public ShipmentInvoice setUserField4(String value) { this.UserField4 = value; return this; } public String getUserField5() { return UserField5; } public ShipmentInvoice setUserField5(String value) { this.UserField5 = value; return this; } public String getUserField6() { return UserField6; } public ShipmentInvoice setUserField6(String value) { this.UserField6 = value; return this; } public String getUserField7() { return UserField7; } public ShipmentInvoice setUserField7(String value) { this.UserField7 = value; return this; } public String getUserField8() { return UserField8; } public ShipmentInvoice setUserField8(String value) { this.UserField8 = value; return this; } public String getUserField9() { return UserField9; } public ShipmentInvoice setUserField9(String value) { this.UserField9 = value; return this; } public String getUserField10() { return UserField10; } public ShipmentInvoice setUserField10(String value) { this.UserField10 = value; return this; } public Boolean isInvoiced() { return Invoiced; } public ShipmentInvoice setInvoiced(Boolean value) { this.Invoiced = value; return this; } public BigDecimal getFxRate() { return FXRate; } public ShipmentInvoice setFxRate(BigDecimal value) { this.FXRate = value; return this; } public BigDecimal getExpectedHomeAmount() { return ExpectedHomeAmount; } public ShipmentInvoice setExpectedHomeAmount(BigDecimal value) { this.ExpectedHomeAmount = value; return this; } public BigDecimal getExpectedFXAmount() { return ExpectedFXAmount; } public ShipmentInvoice setExpectedFXAmount(BigDecimal value) { this.ExpectedFXAmount = value; return this; } public BigDecimal getHomeAmount() { return HomeAmount; } public ShipmentInvoice setHomeAmount(BigDecimal value) { this.HomeAmount = value; return this; } public BigDecimal getFxAmount() { return FXAmount; } public ShipmentInvoice setFxAmount(BigDecimal value) { this.FXAmount = value; return this; } public BigDecimal getTaxAmount() { return TaxAmount; } public ShipmentInvoice setTaxAmount(BigDecimal value) { this.TaxAmount = value; return this; } public BigDecimal getAmountIncTax() { return AmountIncTax; } public ShipmentInvoice setAmountIncTax(BigDecimal value) { this.AmountIncTax = value; return this; } } public static enum Status { NotSent(0), AwaitingOrderApproval(1), AwaitingEDIProcessing(2), Sent(3), ReceiptAcknowledged(4), Accepted(5), AcceptedWithUpdates(6), Rejected(7), AwaitingInvoiceApproval(8), Invoicing(9), Closed(10), NewStatus(-1); private final int value; Status(final int intValue) { value = intValue; } public int getValue() { return value; } } public static enum PurchaseOrderType { DefaultOrderType, BackToBack, MultiBack; } public static enum SupplierType { Creditor, Warehouse; } public static class ReceivalDocument { public String DocumentNo = null; public String DocumentID = null; public Boolean IsGoodsReceivedNote = null; public Boolean IsLandedCostBookIn = null; public Date ReceivalDate = null; public String getDocumentNo() { return DocumentNo; } public ReceivalDocument setDocumentNo(String value) { this.DocumentNo = value; return this; } public String getDocumentID() { return DocumentID; } public ReceivalDocument setDocumentID(String value) { this.DocumentID = value; return this; } public Boolean getIsGoodsReceivedNote() { return IsGoodsReceivedNote; } public ReceivalDocument setIsGoodsReceivedNote(Boolean value) { this.IsGoodsReceivedNote = value; return this; } public Boolean getIsLandedCostBookIn() { return IsLandedCostBookIn; } public ReceivalDocument setIsLandedCostBookIn(Boolean value) { this.IsLandedCostBookIn = value; return this; } public Date getReceivalDate() { return ReceivalDate; } public ReceivalDocument setReceivalDate(Date value) { this.ReceivalDate = value; return this; } } public static enum OrderLineType { Unknown, Inventory, NonInventory, Comment; } public static enum Statuses { UnActivated, Activated; } public static enum InvoiceLineType { Inventory(1), NonInventory(2); private final int value; InvoiceLineType(final int intValue) { value = intValue; } public int getValue() { return value; } } public static class PurchaseInvoiceLineDetail { public String LineDetailID = null; public String LinkID = null; public BigDecimal Quantity = null; public Date LastSavedDateTime = null; public String SerialNo = null; public String BinLocationID = null; public String BinLocationDescription = null; public Date ExpiryDate = null; public String RE_LineDetails_RecID = null; public String getLineDetailID() { return LineDetailID; } public PurchaseInvoiceLineDetail setLineDetailID(String value) { this.LineDetailID = value; return this; } public String getLinkID() { return LinkID; } public PurchaseInvoiceLineDetail setLinkID(String value) { this.LinkID = value; return this; } public BigDecimal getQuantity() { return Quantity; } public PurchaseInvoiceLineDetail setQuantity(BigDecimal value) { this.Quantity = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public PurchaseInvoiceLineDetail setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public String getSerialNo() { return SerialNo; } public PurchaseInvoiceLineDetail setSerialNo(String value) { this.SerialNo = value; return this; } public String getBinLocationID() { return BinLocationID; } public PurchaseInvoiceLineDetail setBinLocationID(String value) { this.BinLocationID = value; return this; } public String getBinLocationDescription() { return BinLocationDescription; } public PurchaseInvoiceLineDetail setBinLocationDescription(String value) { this.BinLocationDescription = value; return this; } public Date getExpiryDate() { return ExpiryDate; } public PurchaseInvoiceLineDetail setExpiryDate(Date value) { this.ExpiryDate = value; return this; } public String getReLineDetailsRecID() { return RE_LineDetails_RecID; } public PurchaseInvoiceLineDetail setReLineDetailsRecID(String value) { this.RE_LineDetails_RecID = value; return this; } } public static class ReportParameter { public String Name = null; public String Value = null; public String getName() { return Name; } public ReportParameter setName(String value) { this.Name = value; return this; } public String getValue() { return Value; } public ReportParameter setValue(String value) { this.Value = value; return this; } } public static interface IContentTypeWriter { } public static interface IRequest { public Object OriginalRequest = null; public IResponse Response = null; public String OperationName = null; public String Verb = null; public RequestAttributes RequestAttributes = null; public IRequestPreferences RequestPreferences = null; public Object Dto = null; public String ContentType = null; public Boolean IsLocal = null; public String UserAgent = null; public HashMap Cookies = null; public String ResponseContentType = null; public Boolean HasExplicitResponseContentType = null; public HashMap Items = null; public NameValueCollection Headers = null; public NameValueCollection QueryString = null; public NameValueCollection FormData = null; public Boolean UseBufferedStream = null; public String RawUrl = null; public String AbsoluteUri = null; public String UserHostAddress = null; public String RemoteIp = null; public String Authorization = null; public Boolean IsSecureConnection = null; public ArrayList AcceptTypes = null; public String PathInfo = null; public String OriginalPathInfo = null; public Long ContentLength = null; public ArrayList Files = null; public Uri UrlReferrer = null; } public static class RestPath { public String Path = null; public String RequestType = null; public String Summary = null; public String AllowedVerbs = null; public String getPath() { return Path; } public RestPath setPath(String value) { this.Path = value; return this; } public String getRequestType() { return RequestType; } public RestPath setRequestType(String value) { this.RequestType = value; return this; } public String getSummary() { return Summary; } public RestPath setSummary(String value) { this.Summary = value; return this; } public String getAllowedVerbs() { return AllowedVerbs; } public RestPath setAllowedVerbs(String value) { this.AllowedVerbs = value; return this; } } public static class SalesOrderSystemSettings { public Boolean ForceInventorySelection = null; public Boolean SuppressLineRetotalling = null; public Boolean IgnoreDebtorOnHold = null; public Boolean CompensateTaxRounding = null; public Boolean isForceInventorySelection() { return ForceInventorySelection; } public SalesOrderSystemSettings setForceInventorySelection(Boolean value) { this.ForceInventorySelection = value; return this; } public Boolean isSuppressLineRetotalling() { return SuppressLineRetotalling; } public SalesOrderSystemSettings setSuppressLineRetotalling(Boolean value) { this.SuppressLineRetotalling = value; return this; } public Boolean isIgnoreDebtorOnHold() { return IgnoreDebtorOnHold; } public SalesOrderSystemSettings setIgnoreDebtorOnHold(Boolean value) { this.IgnoreDebtorOnHold = value; return this; } public Boolean isCompensateTaxRounding() { return CompensateTaxRounding; } public SalesOrderSystemSettings setCompensateTaxRounding(Boolean value) { this.CompensateTaxRounding = value; return this; } } public static enum SalesOrderTypes { ESalesOrderNormalSalesOrder, ESalesOrderBackToBack; } public static enum SalesOrderOrderTypes { ESalesOrderOrderTypeReserveOrder, ESalesOrderOrderTypeInvoiceOrder, ESalesOrderOrderTypeForwardOrder, ESalesOrderOrderTypeActiveOrder; } public static enum SalesOrderStatuses { ESalesOrderEntered, ESalesOrderProcessed, ESalesOrderClosed, ESalesOrderUnprocessedPrinted; } public static enum SalesOrderHistoryEDIPickStatuses { ESalesOrderHistoryEDIPickStatusNone, ESalesOrderHistoryEDIPickStatusPOReceived, ESalesOrderHistoryEDIPickStatusPOAcknowledgementReadyToSend, ESalesOrderHistoryEDIPickStatusPOAcknowledgementSent, ESalesOrderHistoryEDIPickStatusReadyToBePicked, ESalesOrderHistoryEDIPickStatusPicking, ESalesOrderHistoryEDIPickStatusPicked, ESalesOrderHistoryEDIPickStatusASNReadyToSend, ESalesOrderHistoryEDIPickStatusASNSent, ESalesOrderHistoryEDIPickStatusRCTIReceived, ESalesOrderHistoryEDIPickStatusError, ESalesOrderHistoryEDIPickStatusRejectionReadyToSend, ESalesOrderHistoryEDIPickStatusRejectionSent; } public static enum SalesOrderBillTypes { ESalesOrderShipAndBill, ESalesOrderBillWhenComplete, ESalesOrderShipWhenComplete; } public static enum SalesOrderEDIOrderTypes { ESalesOrderEDIOrderTypeNormal, ESalesOrderEDIOrderTypeConsolidated; } public static class SalesOrderCashSales { public String Name = null; public String Company = null; public String Address1 = null; public String Address2 = null; public String Address3 = null; public String Address4 = null; public String PostCode = null; public String Phone = null; public String Fax = null; public String ContactName = null; public String getName() { return Name; } public SalesOrderCashSales setName(String value) { this.Name = value; return this; } public String getCompany() { return Company; } public SalesOrderCashSales setCompany(String value) { this.Company = value; return this; } public String getAddress1() { return Address1; } public SalesOrderCashSales setAddress1(String value) { this.Address1 = value; return this; } public String getAddress2() { return Address2; } public SalesOrderCashSales setAddress2(String value) { this.Address2 = value; return this; } public String getAddress3() { return Address3; } public SalesOrderCashSales setAddress3(String value) { this.Address3 = value; return this; } public String getAddress4() { return Address4; } public SalesOrderCashSales setAddress4(String value) { this.Address4 = value; return this; } public String getPostCode() { return PostCode; } public SalesOrderCashSales setPostCode(String value) { this.PostCode = value; return this; } public String getPhone() { return Phone; } public SalesOrderCashSales setPhone(String value) { this.Phone = value; return this; } public String getFax() { return Fax; } public SalesOrderCashSales setFax(String value) { this.Fax = value; return this; } public String getContactName() { return ContactName; } public SalesOrderCashSales setContactName(String value) { this.ContactName = value; return this; } } public static class SalesOrderJobCosting { public Boolean GSTApplicable = null; public String JobCostID = null; public String JobCostNo = null; public String Description = null; public Boolean isGstApplicable() { return GSTApplicable; } public SalesOrderJobCosting setGstApplicable(Boolean value) { this.GSTApplicable = value; return this; } public String getJobCostID() { return JobCostID; } public SalesOrderJobCosting setJobCostID(String value) { this.JobCostID = value; return this; } public String getJobCostNo() { return JobCostNo; } public SalesOrderJobCosting setJobCostNo(String value) { this.JobCostNo = value; return this; } public String getDescription() { return Description; } public SalesOrderJobCosting setDescription(String value) { this.Description = value; return this; } } public static class SalesOrderASN { public String ASNNo = null; public String PurchaseOrderNo = null; public String ReceiptNo = null; public BigDecimal GrossAmount = null; public BigDecimal TotalGSTAmount = null; public Date ReceiptDate = null; public String getAsnNo() { return ASNNo; } public SalesOrderASN setAsnNo(String value) { this.ASNNo = value; return this; } public String getPurchaseOrderNo() { return PurchaseOrderNo; } public SalesOrderASN setPurchaseOrderNo(String value) { this.PurchaseOrderNo = value; return this; } public String getReceiptNo() { return ReceiptNo; } public SalesOrderASN setReceiptNo(String value) { this.ReceiptNo = value; return this; } public BigDecimal getGrossAmount() { return GrossAmount; } public SalesOrderASN setGrossAmount(BigDecimal value) { this.GrossAmount = value; return this; } public BigDecimal getTotalGSTAmount() { return TotalGSTAmount; } public SalesOrderASN setTotalGSTAmount(BigDecimal value) { this.TotalGSTAmount = value; return this; } public Date getReceiptDate() { return ReceiptDate; } public SalesOrderASN setReceiptDate(Date value) { this.ReceiptDate = value; return this; } } public static class CreditReason { public String CreditReasonID = null; public String CreditReasonDescription = null; public Boolean CreditIntoStock = null; public String getCreditReasonID() { return CreditReasonID; } public CreditReason setCreditReasonID(String value) { this.CreditReasonID = value; return this; } public String getCreditReasonDescription() { return CreditReasonDescription; } public CreditReason setCreditReasonDescription(String value) { this.CreditReasonDescription = value; return this; } public Boolean isCreditIntoStock() { return CreditIntoStock; } public CreditReason setCreditIntoStock(Boolean value) { this.CreditIntoStock = value; return this; } } public static enum SalesOrderHistoryStatuses { ESalesOrderHistoryStatusEntering, ESalesOrderHistoryStatusEntered, ESalesOrderHistoryStatusReadyForPicking, ESalesOrderHistoryStatusPicking, ESalesOrderHistoryStatusPicked, ESalesOrderHistoryStatusDelivery, ESalesOrderHistoryStatusDelivered, ESalesOrderHistoryStatusInvoicing, ESalesOrderHistoryStatusInvoiced; } public static enum SalesOrderHistoryEDIPickStatuses { ESalesOrderHistoryEDIPickStatusNone, ESalesOrderHistoryStatuseSalesOrderHistoryEDIPickStatusPOReceivedEntered, ESalesOrderHistoryEDIPickStatusPOAcknowledgementReadyToSend, ESalesOrderHistoryEDIPickStatusPOAcknowledgementSent, ESalesOrderHistoryEDIPickStatusReadyToBePicked, ESalesOrderHistoryEDIPickStatusPicking, ESalesOrderHistoryEDIPickStatusPicked, ESalesOrderHistoryEDIPickStatusASNReadyToSend, ESalesOrderHistoryEDIPickStatusASNSent, ESalesOrderHistoryEDIPickStatusRCTIReceived, ESalesOrderHistoryEDIPickStatusError, ESalesOrderHistoryEDIPickStatusRejectionReadyToSend, ESalesOrderHistoryEDIPickStatusRejectionSent; } public static class CartageCharge { public BigDecimal ExTaxAmount = null; public BigDecimal TaxAmount = null; public TaxRate TaxRate = null; public BigDecimal getExTaxAmount() { return ExTaxAmount; } public CartageCharge setExTaxAmount(BigDecimal value) { this.ExTaxAmount = value; return this; } public BigDecimal getTaxAmount() { return TaxAmount; } public CartageCharge setTaxAmount(BigDecimal value) { this.TaxAmount = value; return this; } public TaxRate getTaxRate() { return TaxRate; } public CartageCharge setTaxRate(TaxRate value) { this.TaxRate = value; return this; } } public static class SalesOrderCarrier { public String CarrierID = null; public String CarrierName = null; public String AccountNo = null; public SalesOrderCarrierService Service = null; public Boolean UseLeastCost = null; public FreightChargeTos ChargeTo = null; public FreightSystemStatuses Status = null; public ArrayList FreightItemCollection = null; public ArrayList ConsignmentNoteCollection = null; public String getCarrierID() { return CarrierID; } public SalesOrderCarrier setCarrierID(String value) { this.CarrierID = value; return this; } public String getCarrierName() { return CarrierName; } public SalesOrderCarrier setCarrierName(String value) { this.CarrierName = value; return this; } public String getAccountNo() { return AccountNo; } public SalesOrderCarrier setAccountNo(String value) { this.AccountNo = value; return this; } public SalesOrderCarrierService getService() { return Service; } public SalesOrderCarrier setService(SalesOrderCarrierService value) { this.Service = value; return this; } public Boolean isUseLeastCost() { return UseLeastCost; } public SalesOrderCarrier setUseLeastCost(Boolean value) { this.UseLeastCost = value; return this; } public FreightChargeTos getChargeTo() { return ChargeTo; } public SalesOrderCarrier setChargeTo(FreightChargeTos value) { this.ChargeTo = value; return this; } public FreightSystemStatuses getStatus() { return Status; } public SalesOrderCarrier setStatus(FreightSystemStatuses value) { this.Status = value; return this; } public ArrayList getFreightItemCollection() { return FreightItemCollection; } public SalesOrderCarrier setFreightItemCollection(ArrayList value) { this.FreightItemCollection = value; return this; } public ArrayList getConsignmentNoteCollection() { return ConsignmentNoteCollection; } public SalesOrderCarrier setConsignmentNoteCollection(ArrayList value) { this.ConsignmentNoteCollection = value; return this; } } public static class SalesOrderCarrierFreightDescription { public String CarrierFreightDescriptionID = null; public String Description = null; public String getCarrierFreightDescriptionID() { return CarrierFreightDescriptionID; } public SalesOrderCarrierFreightDescription setCarrierFreightDescriptionID(String value) { this.CarrierFreightDescriptionID = value; return this; } public String getDescription() { return Description; } public SalesOrderCarrierFreightDescription setDescription(String value) { this.Description = value; return this; } } public static enum SalesOrderSerialStockSelectionTypesEnum { ESalesOrderSerialStockSelectionPrompted, ESalesOrderSerialStockSelectionFIFO; } public static class SalesOrderShippingLabel { public BigDecimal Quantity = null; public Date UseByDate = null; public Integer LabelNumber = null; public BigDecimal SpareNumeric1 = null; public BigDecimal SpareNumeric2 = null; public BigDecimal SpareNumeric3 = null; public Date SpareDate1 = null; public Date SpareDate2 = null; public Date SpareDate3 = null; public String ShippingLabelID = null; public String SSCCNumber = null; public String BatchNo = null; public String Reference = null; public String SpareString1 = null; public String SpareString2 = null; public String SpareString3 = null; public Date LastSavedDateTime = null; public BigDecimal getQuantity() { return Quantity; } public SalesOrderShippingLabel setQuantity(BigDecimal value) { this.Quantity = value; return this; } public Date getUseByDate() { return UseByDate; } public SalesOrderShippingLabel setUseByDate(Date value) { this.UseByDate = value; return this; } public Integer getLabelNumber() { return LabelNumber; } public SalesOrderShippingLabel setLabelNumber(Integer value) { this.LabelNumber = value; return this; } public BigDecimal getSpareNumeric1() { return SpareNumeric1; } public SalesOrderShippingLabel setSpareNumeric1(BigDecimal value) { this.SpareNumeric1 = value; return this; } public BigDecimal getSpareNumeric2() { return SpareNumeric2; } public SalesOrderShippingLabel setSpareNumeric2(BigDecimal value) { this.SpareNumeric2 = value; return this; } public BigDecimal getSpareNumeric3() { return SpareNumeric3; } public SalesOrderShippingLabel setSpareNumeric3(BigDecimal value) { this.SpareNumeric3 = value; return this; } public Date getSpareDate1() { return SpareDate1; } public SalesOrderShippingLabel setSpareDate1(Date value) { this.SpareDate1 = value; return this; } public Date getSpareDate2() { return SpareDate2; } public SalesOrderShippingLabel setSpareDate2(Date value) { this.SpareDate2 = value; return this; } public Date getSpareDate3() { return SpareDate3; } public SalesOrderShippingLabel setSpareDate3(Date value) { this.SpareDate3 = value; return this; } public String getShippingLabelID() { return ShippingLabelID; } public SalesOrderShippingLabel setShippingLabelID(String value) { this.ShippingLabelID = value; return this; } public String getSsccNumber() { return SSCCNumber; } public SalesOrderShippingLabel setSsccNumber(String value) { this.SSCCNumber = value; return this; } public String getBatchNo() { return BatchNo; } public SalesOrderShippingLabel setBatchNo(String value) { this.BatchNo = value; return this; } public String getReference() { return Reference; } public SalesOrderShippingLabel setReference(String value) { this.Reference = value; return this; } public String getSpareString1() { return SpareString1; } public SalesOrderShippingLabel setSpareString1(String value) { this.SpareString1 = value; return this; } public String getSpareString2() { return SpareString2; } public SalesOrderShippingLabel setSpareString2(String value) { this.SpareString2 = value; return this; } public String getSpareString3() { return SpareString3; } public SalesOrderShippingLabel setSpareString3(String value) { this.SpareString3 = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public SalesOrderShippingLabel setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } } public static enum SalesOrderKitLineTypesEnum { ESalesOrderNormalLine, ESalesOrderKitHeader, ESalesOrderKitComponent; } public static enum PaymentAuthStatuses { NoAuthorisationNeeded, AuthorisationRequired, Authorised, Declined, Error; } public static class SalesQuoteSettings { public String Cat1Description = null; public String Cat2Description = null; public String Cat3Description = null; public String Cat4Description = null; public String Cat5Description = null; public Boolean DisplayProductUpSellPopUp = null; public Short MoneyDecimalPlaces = null; public Short SalesOrdersMoneyDecimalPlaces = null; public String SalesOrdersMoneyFormatStr = null; public String MoneyFormatStr = null; public Integer ComponentsForeColour = null; public Integer KitRoundingForeColour = null; public Integer KitForeColour = null; public Integer NonInventoryForeColour = null; public BigDecimal DefaultQuantity = null; public String GroupedCaption2 = null; public Boolean AllowInvoiceNumberOverride = null; public Boolean AllowPriceOverride = null; public Boolean AllowOtherOverrides = null; public Boolean AllowManualPartNoEntry = null; public Boolean AllowNonInventoryItems = null; public Boolean AllowTaxRateOverrides = null; public Boolean IncludeValueOfBackOrdersInCreditLimitCheck = null; public Boolean PrintInvoicesWithZeroQuantityDel = null; public Short InvoicePrinterCopies = null; public Boolean PrintToScreen = null; public Boolean AllowModificationOfPrintedUnprocessedInvoices = null; public Boolean CheckForDuplicateOrderNos = null; public Boolean UseDefaultSalesPerson = null; public Boolean DefaultInvoiceTypeIsWholesale = null; public String LinkSELECT = null; public String LinkTITLE = null; public String LinkDESC = null; public String LinkKEY = null; public String LinkID = null; public Boolean AllowKitComponentOverride = null; public Boolean PostTendered = null; public Boolean AllowInitDateEdit = null; public Boolean UseZeroCreditLimit = null; public Boolean CollectJobCostCode = null; public Boolean IgnoreBackOrderAllocations = null; public Boolean UsePicking = null; public Boolean ShowOnlyUsersDebtors = null; public Boolean AllowSaveToOrderWhenDebtorOnHold = null; public Boolean AddFreightToAllSnapshots = null; public Boolean DontChangePickPrices = null; public Boolean AutoKitPricing = null; public Boolean InvoicesFromQuotesUseActivateDate = null; public Boolean GrabSOHFromDefaultBin = null; public Boolean UseTaxExemption = null; public Boolean ValidateABN = null; public Boolean CompensateTaxRounding = null; public Boolean UseBranching = null; public String InvoiceTypeDescription1 = null; public String InvoiceTypeDescription2 = null; public Boolean AllowInvoiceTypeChange = null; public Boolean AllowForwardOrders = null; public Boolean AllowActiveOrders = null; public String DocketNumHeader = null; public String CreditNoteHeader = null; public Boolean BuildPaymentReferenceFromDebtor = null; public String QuoteNoDescription = null; public String ShortDateFormat = null; public Boolean ManualPrintSelection = null; public Boolean UseDirectTaxIfSellPriceIncTax = null; public String JobCodeSeparator = null; public Boolean UseKitRoundingPart = null; public String KitRoundingPartID = null; public Short DiscountPercentDecimalPlaces = null; public Short DefaultQuoteExpiryDays = null; public Boolean AllowDocumentManipulationOnClosedQuote = null; public String DefaultDocumentTypeKey = null; public String DefaultNoteTypeKey = null; public Boolean CopySalesQuoteIncludesNotes = null; public Boolean CopySalesQuoteIncludesDocuments = null; public Boolean DontApplyDebtorDiscounts = null; public Boolean UserTodoOnly = null; public Boolean DoNotReadSOHLevelsForQuotes = null; public String getCat1Description() { return Cat1Description; } public SalesQuoteSettings setCat1Description(String value) { this.Cat1Description = value; return this; } public String getCat2Description() { return Cat2Description; } public SalesQuoteSettings setCat2Description(String value) { this.Cat2Description = value; return this; } public String getCat3Description() { return Cat3Description; } public SalesQuoteSettings setCat3Description(String value) { this.Cat3Description = value; return this; } public String getCat4Description() { return Cat4Description; } public SalesQuoteSettings setCat4Description(String value) { this.Cat4Description = value; return this; } public String getCat5Description() { return Cat5Description; } public SalesQuoteSettings setCat5Description(String value) { this.Cat5Description = value; return this; } public Boolean isDisplayProductUpSellPopUp() { return DisplayProductUpSellPopUp; } public SalesQuoteSettings setDisplayProductUpSellPopUp(Boolean value) { this.DisplayProductUpSellPopUp = value; return this; } public Short getMoneyDecimalPlaces() { return MoneyDecimalPlaces; } public SalesQuoteSettings setMoneyDecimalPlaces(Short value) { this.MoneyDecimalPlaces = value; return this; } public Short getSalesOrdersMoneyDecimalPlaces() { return SalesOrdersMoneyDecimalPlaces; } public SalesQuoteSettings setSalesOrdersMoneyDecimalPlaces(Short value) { this.SalesOrdersMoneyDecimalPlaces = value; return this; } public String getSalesOrdersMoneyFormatStr() { return SalesOrdersMoneyFormatStr; } public SalesQuoteSettings setSalesOrdersMoneyFormatStr(String value) { this.SalesOrdersMoneyFormatStr = value; return this; } public String getMoneyFormatStr() { return MoneyFormatStr; } public SalesQuoteSettings setMoneyFormatStr(String value) { this.MoneyFormatStr = value; return this; } public Integer getComponentsForeColour() { return ComponentsForeColour; } public SalesQuoteSettings setComponentsForeColour(Integer value) { this.ComponentsForeColour = value; return this; } public Integer getKitRoundingForeColour() { return KitRoundingForeColour; } public SalesQuoteSettings setKitRoundingForeColour(Integer value) { this.KitRoundingForeColour = value; return this; } public Integer getKitForeColour() { return KitForeColour; } public SalesQuoteSettings setKitForeColour(Integer value) { this.KitForeColour = value; return this; } public Integer getNonInventoryForeColour() { return NonInventoryForeColour; } public SalesQuoteSettings setNonInventoryForeColour(Integer value) { this.NonInventoryForeColour = value; return this; } public BigDecimal getDefaultQuantity() { return DefaultQuantity; } public SalesQuoteSettings setDefaultQuantity(BigDecimal value) { this.DefaultQuantity = value; return this; } public String getGroupedCaption2() { return GroupedCaption2; } public SalesQuoteSettings setGroupedCaption2(String value) { this.GroupedCaption2 = value; return this; } public Boolean isAllowInvoiceNumberOverride() { return AllowInvoiceNumberOverride; } public SalesQuoteSettings setAllowInvoiceNumberOverride(Boolean value) { this.AllowInvoiceNumberOverride = value; return this; } public Boolean isAllowPriceOverride() { return AllowPriceOverride; } public SalesQuoteSettings setAllowPriceOverride(Boolean value) { this.AllowPriceOverride = value; return this; } public Boolean isAllowOtherOverrides() { return AllowOtherOverrides; } public SalesQuoteSettings setAllowOtherOverrides(Boolean value) { this.AllowOtherOverrides = value; return this; } public Boolean isAllowManualPartNoEntry() { return AllowManualPartNoEntry; } public SalesQuoteSettings setAllowManualPartNoEntry(Boolean value) { this.AllowManualPartNoEntry = value; return this; } public Boolean isAllowNonInventoryItems() { return AllowNonInventoryItems; } public SalesQuoteSettings setAllowNonInventoryItems(Boolean value) { this.AllowNonInventoryItems = value; return this; } public Boolean isAllowTaxRateOverrides() { return AllowTaxRateOverrides; } public SalesQuoteSettings setAllowTaxRateOverrides(Boolean value) { this.AllowTaxRateOverrides = value; return this; } public Boolean isIncludeValueOfBackOrdersInCreditLimitCheck() { return IncludeValueOfBackOrdersInCreditLimitCheck; } public SalesQuoteSettings setIncludeValueOfBackOrdersInCreditLimitCheck(Boolean value) { this.IncludeValueOfBackOrdersInCreditLimitCheck = value; return this; } public Boolean isPrintInvoicesWithZeroQuantityDel() { return PrintInvoicesWithZeroQuantityDel; } public SalesQuoteSettings setPrintInvoicesWithZeroQuantityDel(Boolean value) { this.PrintInvoicesWithZeroQuantityDel = value; return this; } public Short getInvoicePrinterCopies() { return InvoicePrinterCopies; } public SalesQuoteSettings setInvoicePrinterCopies(Short value) { this.InvoicePrinterCopies = value; return this; } public Boolean isPrintToScreen() { return PrintToScreen; } public SalesQuoteSettings setPrintToScreen(Boolean value) { this.PrintToScreen = value; return this; } public Boolean isAllowModificationOfPrintedUnprocessedInvoices() { return AllowModificationOfPrintedUnprocessedInvoices; } public SalesQuoteSettings setAllowModificationOfPrintedUnprocessedInvoices(Boolean value) { this.AllowModificationOfPrintedUnprocessedInvoices = value; return this; } public Boolean isCheckForDuplicateOrderNos() { return CheckForDuplicateOrderNos; } public SalesQuoteSettings setCheckForDuplicateOrderNos(Boolean value) { this.CheckForDuplicateOrderNos = value; return this; } public Boolean isUseDefaultSalesPerson() { return UseDefaultSalesPerson; } public SalesQuoteSettings setUseDefaultSalesPerson(Boolean value) { this.UseDefaultSalesPerson = value; return this; } public Boolean isDefaultInvoiceTypeIsWholesale() { return DefaultInvoiceTypeIsWholesale; } public SalesQuoteSettings setDefaultInvoiceTypeIsWholesale(Boolean value) { this.DefaultInvoiceTypeIsWholesale = value; return this; } public String getLinkSELECT() { return LinkSELECT; } public SalesQuoteSettings setLinkSELECT(String value) { this.LinkSELECT = value; return this; } public String getLinkTITLE() { return LinkTITLE; } public SalesQuoteSettings setLinkTITLE(String value) { this.LinkTITLE = value; return this; } public String getLinkDESC() { return LinkDESC; } public SalesQuoteSettings setLinkDESC(String value) { this.LinkDESC = value; return this; } public String getLinkKEY() { return LinkKEY; } public SalesQuoteSettings setLinkKEY(String value) { this.LinkKEY = value; return this; } public String getLinkID() { return LinkID; } public SalesQuoteSettings setLinkID(String value) { this.LinkID = value; return this; } public Boolean isAllowKitComponentOverride() { return AllowKitComponentOverride; } public SalesQuoteSettings setAllowKitComponentOverride(Boolean value) { this.AllowKitComponentOverride = value; return this; } public Boolean isPostTendered() { return PostTendered; } public SalesQuoteSettings setPostTendered(Boolean value) { this.PostTendered = value; return this; } public Boolean isAllowInitDateEdit() { return AllowInitDateEdit; } public SalesQuoteSettings setAllowInitDateEdit(Boolean value) { this.AllowInitDateEdit = value; return this; } public Boolean isUseZeroCreditLimit() { return UseZeroCreditLimit; } public SalesQuoteSettings setUseZeroCreditLimit(Boolean value) { this.UseZeroCreditLimit = value; return this; } public Boolean isCollectJobCostCode() { return CollectJobCostCode; } public SalesQuoteSettings setCollectJobCostCode(Boolean value) { this.CollectJobCostCode = value; return this; } public Boolean isIgnoreBackOrderAllocations() { return IgnoreBackOrderAllocations; } public SalesQuoteSettings setIgnoreBackOrderAllocations(Boolean value) { this.IgnoreBackOrderAllocations = value; return this; } public Boolean isUsePicking() { return UsePicking; } public SalesQuoteSettings setUsePicking(Boolean value) { this.UsePicking = value; return this; } public Boolean isShowOnlyUsersDebtors() { return ShowOnlyUsersDebtors; } public SalesQuoteSettings setShowOnlyUsersDebtors(Boolean value) { this.ShowOnlyUsersDebtors = value; return this; } public Boolean isAllowSaveToOrderWhenDebtorOnHold() { return AllowSaveToOrderWhenDebtorOnHold; } public SalesQuoteSettings setAllowSaveToOrderWhenDebtorOnHold(Boolean value) { this.AllowSaveToOrderWhenDebtorOnHold = value; return this; } public Boolean isAddFreightToAllSnapshots() { return AddFreightToAllSnapshots; } public SalesQuoteSettings setAddFreightToAllSnapshots(Boolean value) { this.AddFreightToAllSnapshots = value; return this; } public Boolean isDontChangePickPrices() { return DontChangePickPrices; } public SalesQuoteSettings setDontChangePickPrices(Boolean value) { this.DontChangePickPrices = value; return this; } public Boolean isAutoKitPricing() { return AutoKitPricing; } public SalesQuoteSettings setAutoKitPricing(Boolean value) { this.AutoKitPricing = value; return this; } public Boolean isInvoicesFromQuotesUseActivateDate() { return InvoicesFromQuotesUseActivateDate; } public SalesQuoteSettings setInvoicesFromQuotesUseActivateDate(Boolean value) { this.InvoicesFromQuotesUseActivateDate = value; return this; } public Boolean isGrabSOHFromDefaultBin() { return GrabSOHFromDefaultBin; } public SalesQuoteSettings setGrabSOHFromDefaultBin(Boolean value) { this.GrabSOHFromDefaultBin = value; return this; } public Boolean isUseTaxExemption() { return UseTaxExemption; } public SalesQuoteSettings setUseTaxExemption(Boolean value) { this.UseTaxExemption = value; return this; } public Boolean isValidateABN() { return ValidateABN; } public SalesQuoteSettings setValidateABN(Boolean value) { this.ValidateABN = value; return this; } public Boolean isCompensateTaxRounding() { return CompensateTaxRounding; } public SalesQuoteSettings setCompensateTaxRounding(Boolean value) { this.CompensateTaxRounding = value; return this; } public Boolean isUseBranching() { return UseBranching; } public SalesQuoteSettings setUseBranching(Boolean value) { this.UseBranching = value; return this; } public String getInvoiceTypeDescription1() { return InvoiceTypeDescription1; } public SalesQuoteSettings setInvoiceTypeDescription1(String value) { this.InvoiceTypeDescription1 = value; return this; } public String getInvoiceTypeDescription2() { return InvoiceTypeDescription2; } public SalesQuoteSettings setInvoiceTypeDescription2(String value) { this.InvoiceTypeDescription2 = value; return this; } public Boolean isAllowInvoiceTypeChange() { return AllowInvoiceTypeChange; } public SalesQuoteSettings setAllowInvoiceTypeChange(Boolean value) { this.AllowInvoiceTypeChange = value; return this; } public Boolean isAllowForwardOrders() { return AllowForwardOrders; } public SalesQuoteSettings setAllowForwardOrders(Boolean value) { this.AllowForwardOrders = value; return this; } public Boolean isAllowActiveOrders() { return AllowActiveOrders; } public SalesQuoteSettings setAllowActiveOrders(Boolean value) { this.AllowActiveOrders = value; return this; } public String getDocketNumHeader() { return DocketNumHeader; } public SalesQuoteSettings setDocketNumHeader(String value) { this.DocketNumHeader = value; return this; } public String getCreditNoteHeader() { return CreditNoteHeader; } public SalesQuoteSettings setCreditNoteHeader(String value) { this.CreditNoteHeader = value; return this; } public Boolean isBuildPaymentReferenceFromDebtor() { return BuildPaymentReferenceFromDebtor; } public SalesQuoteSettings setBuildPaymentReferenceFromDebtor(Boolean value) { this.BuildPaymentReferenceFromDebtor = value; return this; } public String getQuoteNoDescription() { return QuoteNoDescription; } public SalesQuoteSettings setQuoteNoDescription(String value) { this.QuoteNoDescription = value; return this; } public String getShortDateFormat() { return ShortDateFormat; } public SalesQuoteSettings setShortDateFormat(String value) { this.ShortDateFormat = value; return this; } public Boolean isManualPrintSelection() { return ManualPrintSelection; } public SalesQuoteSettings setManualPrintSelection(Boolean value) { this.ManualPrintSelection = value; return this; } public Boolean isUseDirectTaxIfSellPriceIncTax() { return UseDirectTaxIfSellPriceIncTax; } public SalesQuoteSettings setUseDirectTaxIfSellPriceIncTax(Boolean value) { this.UseDirectTaxIfSellPriceIncTax = value; return this; } public String getJobCodeSeparator() { return JobCodeSeparator; } public SalesQuoteSettings setJobCodeSeparator(String value) { this.JobCodeSeparator = value; return this; } public Boolean isUseKitRoundingPart() { return UseKitRoundingPart; } public SalesQuoteSettings setUseKitRoundingPart(Boolean value) { this.UseKitRoundingPart = value; return this; } public String getKitRoundingPartID() { return KitRoundingPartID; } public SalesQuoteSettings setKitRoundingPartID(String value) { this.KitRoundingPartID = value; return this; } public Short getDiscountPercentDecimalPlaces() { return DiscountPercentDecimalPlaces; } public SalesQuoteSettings setDiscountPercentDecimalPlaces(Short value) { this.DiscountPercentDecimalPlaces = value; return this; } public Short getDefaultQuoteExpiryDays() { return DefaultQuoteExpiryDays; } public SalesQuoteSettings setDefaultQuoteExpiryDays(Short value) { this.DefaultQuoteExpiryDays = value; return this; } public Boolean isAllowDocumentManipulationOnClosedQuote() { return AllowDocumentManipulationOnClosedQuote; } public SalesQuoteSettings setAllowDocumentManipulationOnClosedQuote(Boolean value) { this.AllowDocumentManipulationOnClosedQuote = value; return this; } public String getDefaultDocumentTypeKey() { return DefaultDocumentTypeKey; } public SalesQuoteSettings setDefaultDocumentTypeKey(String value) { this.DefaultDocumentTypeKey = value; return this; } public String getDefaultNoteTypeKey() { return DefaultNoteTypeKey; } public SalesQuoteSettings setDefaultNoteTypeKey(String value) { this.DefaultNoteTypeKey = value; return this; } public Boolean isCopySalesQuoteIncludesNotes() { return CopySalesQuoteIncludesNotes; } public SalesQuoteSettings setCopySalesQuoteIncludesNotes(Boolean value) { this.CopySalesQuoteIncludesNotes = value; return this; } public Boolean isCopySalesQuoteIncludesDocuments() { return CopySalesQuoteIncludesDocuments; } public SalesQuoteSettings setCopySalesQuoteIncludesDocuments(Boolean value) { this.CopySalesQuoteIncludesDocuments = value; return this; } public Boolean isDontApplyDebtorDiscounts() { return DontApplyDebtorDiscounts; } public SalesQuoteSettings setDontApplyDebtorDiscounts(Boolean value) { this.DontApplyDebtorDiscounts = value; return this; } public Boolean isUserTodoOnly() { return UserTodoOnly; } public SalesQuoteSettings setUserTodoOnly(Boolean value) { this.UserTodoOnly = value; return this; } public Boolean isDoNotReadSOHLevelsForQuotes() { return DoNotReadSOHLevelsForQuotes; } public SalesQuoteSettings setDoNotReadSOHLevelsForQuotes(Boolean value) { this.DoNotReadSOHLevelsForQuotes = value; return this; } } public static enum e_SalesQuoteTypes { ESalesQuoteNormalSalesOrder, ESalesQuoteBackToBack; } public static enum e_SalesQuoteOrderTypes { ESalesQuoteOrderTypeReserveOrder, ESalesQuoteOrderTypeInvoiceOrder, ESalesQuoteOrderTypeForwardOrder, ESalesQuoteOrderTypeActiveOrder; } public static enum e_SalesQuoteStatuses { ESalesQuoteEntered, ESalesQuoteClosed; } public static enum e_SalesQuoteBillTypes { ESalesQuoteShipAndBill, ESalesQuoteBillWhenComplete, ESalesQuoteShipWhenComplete; } public static class SalesQuoteCashSales { public String Name = null; public String Company = null; public String Address1 = null; public String Address2 = null; public String Address3 = null; public String Address4 = null; public String PostCode = null; public String Phone = null; public String Fax = null; public String ContactName = null; public String getName() { return Name; } public SalesQuoteCashSales setName(String value) { this.Name = value; return this; } public String getCompany() { return Company; } public SalesQuoteCashSales setCompany(String value) { this.Company = value; return this; } public String getAddress1() { return Address1; } public SalesQuoteCashSales setAddress1(String value) { this.Address1 = value; return this; } public String getAddress2() { return Address2; } public SalesQuoteCashSales setAddress2(String value) { this.Address2 = value; return this; } public String getAddress3() { return Address3; } public SalesQuoteCashSales setAddress3(String value) { this.Address3 = value; return this; } public String getAddress4() { return Address4; } public SalesQuoteCashSales setAddress4(String value) { this.Address4 = value; return this; } public String getPostCode() { return PostCode; } public SalesQuoteCashSales setPostCode(String value) { this.PostCode = value; return this; } public String getPhone() { return Phone; } public SalesQuoteCashSales setPhone(String value) { this.Phone = value; return this; } public String getFax() { return Fax; } public SalesQuoteCashSales setFax(String value) { this.Fax = value; return this; } public String getContactName() { return ContactName; } public SalesQuoteCashSales setContactName(String value) { this.ContactName = value; return this; } } public static class SalesQuoteJobCosting { public Boolean GSTApplicable = null; public String JobCostID = null; public String JobCostNo = null; public String Description = null; public Boolean isGstApplicable() { return GSTApplicable; } public SalesQuoteJobCosting setGstApplicable(Boolean value) { this.GSTApplicable = value; return this; } public String getJobCostID() { return JobCostID; } public SalesQuoteJobCosting setJobCostID(String value) { this.JobCostID = value; return this; } public String getJobCostNo() { return JobCostNo; } public SalesQuoteJobCosting setJobCostNo(String value) { this.JobCostNo = value; return this; } public String getDescription() { return Description; } public SalesQuoteJobCosting setDescription(String value) { this.Description = value; return this; } } public static class SalesStage { public String SalesStageID = null; public Date LastSavedDateTime = null; public Integer ItemNo = null; public String Description = null; public Short PercentComplete = null; public Boolean IsDefault = null; public Boolean IsEnabled = null; public String getSalesStageID() { return SalesStageID; } public SalesStage setSalesStageID(String value) { this.SalesStageID = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public SalesStage setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Integer getItemNo() { return ItemNo; } public SalesStage setItemNo(Integer value) { this.ItemNo = value; return this; } public String getDescription() { return Description; } public SalesStage setDescription(String value) { this.Description = value; return this; } public Short getPercentComplete() { return PercentComplete; } public SalesStage setPercentComplete(Short value) { this.PercentComplete = value; return this; } public Boolean getIsDefault() { return IsDefault; } public SalesStage setIsDefault(Boolean value) { this.IsDefault = value; return this; } public Boolean getIsEnabled() { return IsEnabled; } public SalesStage setIsEnabled(Boolean value) { this.IsEnabled = value; return this; } } public static class CartageCharge { public BigDecimal ExTaxAmount = null; public BigDecimal TaxAmount = null; public TaxRate TaxRate = null; public BigDecimal getExTaxAmount() { return ExTaxAmount; } public CartageCharge setExTaxAmount(BigDecimal value) { this.ExTaxAmount = value; return this; } public BigDecimal getTaxAmount() { return TaxAmount; } public CartageCharge setTaxAmount(BigDecimal value) { this.TaxAmount = value; return this; } public TaxRate getTaxRate() { return TaxRate; } public CartageCharge setTaxRate(TaxRate value) { this.TaxRate = value; return this; } } public static class OpportunityStatusReason { public String OpportunityStatusReasonID = null; public String Description = null; public String Note = null; public StatusTypes StatusType = null; public String getOpportunityStatusReasonID() { return OpportunityStatusReasonID; } public OpportunityStatusReason setOpportunityStatusReasonID(String value) { this.OpportunityStatusReasonID = value; return this; } public String getDescription() { return Description; } public OpportunityStatusReason setDescription(String value) { this.Description = value; return this; } public String getNote() { return Note; } public OpportunityStatusReason setNote(String value) { this.Note = value; return this; } public StatusTypes getStatusType() { return StatusType; } public OpportunityStatusReason setStatusType(StatusTypes value) { this.StatusType = value; return this; } } public static enum StatusTypes { OnGoing(0), Won(1), Lost(1); private final int value; StatusTypes(final int intValue) { value = intValue; } public int getValue() { return value; } } public static enum SalesQuoteKitLineTypesEnum { ESalesQuoteNormalLine, ESalesQuoteKitHeader, ESalesQuoteKitComponent; } public static class JiwaAuthUserSessionResponse extends JiwaAuthUserSession { } public static class QueryData extends QueryBase { } public static class StartupLogEntry { public String Description = null; public Date StartDateTime = null; public Date EndDateTime = null; public Long ElapsedMilliseconds = null; public Integer Depth = null; public String getDescription() { return Description; } public StartupLogEntry setDescription(String value) { this.Description = value; return this; } public Date getStartDateTime() { return StartDateTime; } public StartupLogEntry setStartDateTime(Date value) { this.StartDateTime = value; return this; } public Date getEndDateTime() { return EndDateTime; } public StartupLogEntry setEndDateTime(Date value) { this.EndDateTime = value; return this; } public Long getElapsedMilliseconds() { return ElapsedMilliseconds; } public StartupLogEntry setElapsedMilliseconds(Long value) { this.ElapsedMilliseconds = value; return this; } public Integer getDepth() { return Depth; } public StartupLogEntry setDepth(Integer value) { this.Depth = value; return this; } } public static class PluginException { public String RecID = null; public String Name = null; public Exception Exception = null; public ExceptionPolicies ExceptionPolicy = null; public String getRecID() { return RecID; } public PluginException setRecID(String value) { this.RecID = value; return this; } public String getName() { return Name; } public PluginException setName(String value) { this.Name = value; return this; } public Exception getException() { return Exception; } public PluginException setException(Exception value) { this.Exception = value; return this; } public ExceptionPolicies getExceptionPolicy() { return ExceptionPolicy; } public PluginException setExceptionPolicy(ExceptionPolicies value) { this.ExceptionPolicy = value; return this; } } public static enum Statuses { UnActivated, Activated; } public static class StockTransferLine { public String TransferLineID = null; public Integer ItemNo = null; public String FromInventoryRecID = null; public String FromInventoryPartNo = null; public String FromInventoryDescription = null; public Integer FromInventoryDecimalPlaces = null; public BigDecimal FromInventoryLastCost = null; public BigDecimal FromInventoryCubic = null; public BigDecimal FromInventoryWeight = null; public String FromInventoryUnits = null; public Boolean FromInventoryIsPhysical = null; public Boolean FromInventoryIsSerial = null; public String FromInventoryInventoryValueLedgerRecID = null; public String FromInventoryInventoryValueLedgerAccountNo = null; public String FromInventoryInventoryValueLedgerDescription = null; public String FromInventoryWriteOnLedgerAccountRecID = null; public String FromInventoryWriteOnLedgerAccountNo = null; public String FromInventoryWriteOnLedgerAccountDescription = null; public String FromInventoryWriteOffLedgerAccountRecID = null; public String FromInventoryWriteOffLedgerAccountNo = null; public String FromInventoryWriteOffLedgerAccountDescription = null; public String FromPartInventorySOHID = null; public BigDecimal FromPartOriginalQuantity = null; public String FromPartSerialNo = null; public String FromPartComment = null; public Date FromPartExpiryDate = null; public String FromPartBinLocation = null; public String Reference = null; public BigDecimal AvailableQuantity = null; public BigDecimal TransferQuantity = null; public String StockTransferReasonRecID = null; public String StockTransferReasonName = null; public Boolean StockTransferReasonIsDefault = null; public Boolean StockTransferReasonWriteOffLedgerAccountOverride = null; public String StockTransferReasonWriteOffLedgerAccountRecID = null; public String StockTransferReasonWriteOffLedgerAccountNo = null; public String StockTransferReasonWriteOffLedgerAccountDescription = null; public Boolean StockTransferReasonWriteOnLedgerAccountOverride = null; public String StockTransferReasonWriteOnLedgerAccountRecID = null; public String StockTransferReasonWriteOnLedgerAccountNo = null; public String StockTransferReasonWriteOnLedgerAccountDescription = null; public String ToInventoryRecID = null; public String ToInventoryPartNo = null; public String ToInventoryDescription = null; public Integer ToInventoryDecimalPlaces = null; public BigDecimal ToInventoryLastCost = null; public BigDecimal ToInventoryCubic = null; public BigDecimal ToInventoryWeight = null; public String ToInventoryUnits = null; public Boolean ToInventoryIsPhysical = null; public Boolean ToInventoryIsSerial = null; public String ToInventoryInventoryValueLedgerRecID = null; public String ToInventoryInventoryValueLedgerAccountNo = null; public String ToInventoryInventoryValueLedgerDescription = null; public String ToInventoryWriteOnLedgerAccountRecID = null; public String ToInventoryWriteOnLedgerAccountNo = null; public String ToInventoryWriteOnLedgerAccountDescription = null; public String ToInventoryWriteOffLedgerAccountRecID = null; public String ToInventoryWriteOffLedgerAccountNo = null; public String ToInventoryWriteOffLedgerAccountDescription = null; public String ToPartInventorySOHID = null; public String ToPartSerialNo = null; public String ToPartComment = null; public Date ToPartExpiryDate = null; public String ToPartBinLocation = null; public String LastSavedByStaffID = null; public String LastSavedByStaffUserName = null; public String LastSavedByStaffTitle = null; public String LastSavedByStaffFirstName = null; public String LastSavedByStaffSurname = null; public Date LastSavedDateTime = null; public String CreatedByStaffID = null; public String CreatedByStaffUserName = null; public String CreatedByStaffTitle = null; public String CreatedByStaffFirstName = null; public String CreatedByStaffSurname = null; public Date CreatedDateTime = null; public ArrayList CustomFieldValues = null; public String getTransferLineID() { return TransferLineID; } public StockTransferLine setTransferLineID(String value) { this.TransferLineID = value; return this; } public Integer getItemNo() { return ItemNo; } public StockTransferLine setItemNo(Integer value) { this.ItemNo = value; return this; } public String getFromInventoryRecID() { return FromInventoryRecID; } public StockTransferLine setFromInventoryRecID(String value) { this.FromInventoryRecID = value; return this; } public String getFromInventoryPartNo() { return FromInventoryPartNo; } public StockTransferLine setFromInventoryPartNo(String value) { this.FromInventoryPartNo = value; return this; } public String getFromInventoryDescription() { return FromInventoryDescription; } public StockTransferLine setFromInventoryDescription(String value) { this.FromInventoryDescription = value; return this; } public Integer getFromInventoryDecimalPlaces() { return FromInventoryDecimalPlaces; } public StockTransferLine setFromInventoryDecimalPlaces(Integer value) { this.FromInventoryDecimalPlaces = value; return this; } public BigDecimal getFromInventoryLastCost() { return FromInventoryLastCost; } public StockTransferLine setFromInventoryLastCost(BigDecimal value) { this.FromInventoryLastCost = value; return this; } public BigDecimal getFromInventoryCubic() { return FromInventoryCubic; } public StockTransferLine setFromInventoryCubic(BigDecimal value) { this.FromInventoryCubic = value; return this; } public BigDecimal getFromInventoryWeight() { return FromInventoryWeight; } public StockTransferLine setFromInventoryWeight(BigDecimal value) { this.FromInventoryWeight = value; return this; } public String getFromInventoryUnits() { return FromInventoryUnits; } public StockTransferLine setFromInventoryUnits(String value) { this.FromInventoryUnits = value; return this; } public Boolean isFromInventoryIsPhysical() { return FromInventoryIsPhysical; } public StockTransferLine setFromInventoryIsPhysical(Boolean value) { this.FromInventoryIsPhysical = value; return this; } public Boolean isFromInventoryIsSerial() { return FromInventoryIsSerial; } public StockTransferLine setFromInventoryIsSerial(Boolean value) { this.FromInventoryIsSerial = value; return this; } public String getFromInventoryInventoryValueLedgerRecID() { return FromInventoryInventoryValueLedgerRecID; } public StockTransferLine setFromInventoryInventoryValueLedgerRecID(String value) { this.FromInventoryInventoryValueLedgerRecID = value; return this; } public String getFromInventoryInventoryValueLedgerAccountNo() { return FromInventoryInventoryValueLedgerAccountNo; } public StockTransferLine setFromInventoryInventoryValueLedgerAccountNo(String value) { this.FromInventoryInventoryValueLedgerAccountNo = value; return this; } public String getFromInventoryInventoryValueLedgerDescription() { return FromInventoryInventoryValueLedgerDescription; } public StockTransferLine setFromInventoryInventoryValueLedgerDescription(String value) { this.FromInventoryInventoryValueLedgerDescription = value; return this; } public String getFromInventoryWriteOnLedgerAccountRecID() { return FromInventoryWriteOnLedgerAccountRecID; } public StockTransferLine setFromInventoryWriteOnLedgerAccountRecID(String value) { this.FromInventoryWriteOnLedgerAccountRecID = value; return this; } public String getFromInventoryWriteOnLedgerAccountNo() { return FromInventoryWriteOnLedgerAccountNo; } public StockTransferLine setFromInventoryWriteOnLedgerAccountNo(String value) { this.FromInventoryWriteOnLedgerAccountNo = value; return this; } public String getFromInventoryWriteOnLedgerAccountDescription() { return FromInventoryWriteOnLedgerAccountDescription; } public StockTransferLine setFromInventoryWriteOnLedgerAccountDescription(String value) { this.FromInventoryWriteOnLedgerAccountDescription = value; return this; } public String getFromInventoryWriteOffLedgerAccountRecID() { return FromInventoryWriteOffLedgerAccountRecID; } public StockTransferLine setFromInventoryWriteOffLedgerAccountRecID(String value) { this.FromInventoryWriteOffLedgerAccountRecID = value; return this; } public String getFromInventoryWriteOffLedgerAccountNo() { return FromInventoryWriteOffLedgerAccountNo; } public StockTransferLine setFromInventoryWriteOffLedgerAccountNo(String value) { this.FromInventoryWriteOffLedgerAccountNo = value; return this; } public String getFromInventoryWriteOffLedgerAccountDescription() { return FromInventoryWriteOffLedgerAccountDescription; } public StockTransferLine setFromInventoryWriteOffLedgerAccountDescription(String value) { this.FromInventoryWriteOffLedgerAccountDescription = value; return this; } public String getFromPartInventorySOHID() { return FromPartInventorySOHID; } public StockTransferLine setFromPartInventorySOHID(String value) { this.FromPartInventorySOHID = value; return this; } public BigDecimal getFromPartOriginalQuantity() { return FromPartOriginalQuantity; } public StockTransferLine setFromPartOriginalQuantity(BigDecimal value) { this.FromPartOriginalQuantity = value; return this; } public String getFromPartSerialNo() { return FromPartSerialNo; } public StockTransferLine setFromPartSerialNo(String value) { this.FromPartSerialNo = value; return this; } public String getFromPartComment() { return FromPartComment; } public StockTransferLine setFromPartComment(String value) { this.FromPartComment = value; return this; } public Date getFromPartExpiryDate() { return FromPartExpiryDate; } public StockTransferLine setFromPartExpiryDate(Date value) { this.FromPartExpiryDate = value; return this; } public String getFromPartBinLocation() { return FromPartBinLocation; } public StockTransferLine setFromPartBinLocation(String value) { this.FromPartBinLocation = value; return this; } public String getReference() { return Reference; } public StockTransferLine setReference(String value) { this.Reference = value; return this; } public BigDecimal getAvailableQuantity() { return AvailableQuantity; } public StockTransferLine setAvailableQuantity(BigDecimal value) { this.AvailableQuantity = value; return this; } public BigDecimal getTransferQuantity() { return TransferQuantity; } public StockTransferLine setTransferQuantity(BigDecimal value) { this.TransferQuantity = value; return this; } public String getStockTransferReasonRecID() { return StockTransferReasonRecID; } public StockTransferLine setStockTransferReasonRecID(String value) { this.StockTransferReasonRecID = value; return this; } public String getStockTransferReasonName() { return StockTransferReasonName; } public StockTransferLine setStockTransferReasonName(String value) { this.StockTransferReasonName = value; return this; } public Boolean isStockTransferReasonIsDefault() { return StockTransferReasonIsDefault; } public StockTransferLine setStockTransferReasonIsDefault(Boolean value) { this.StockTransferReasonIsDefault = value; return this; } public Boolean isStockTransferReasonWriteOffLedgerAccountOverride() { return StockTransferReasonWriteOffLedgerAccountOverride; } public StockTransferLine setStockTransferReasonWriteOffLedgerAccountOverride(Boolean value) { this.StockTransferReasonWriteOffLedgerAccountOverride = value; return this; } public String getStockTransferReasonWriteOffLedgerAccountRecID() { return StockTransferReasonWriteOffLedgerAccountRecID; } public StockTransferLine setStockTransferReasonWriteOffLedgerAccountRecID(String value) { this.StockTransferReasonWriteOffLedgerAccountRecID = value; return this; } public String getStockTransferReasonWriteOffLedgerAccountNo() { return StockTransferReasonWriteOffLedgerAccountNo; } public StockTransferLine setStockTransferReasonWriteOffLedgerAccountNo(String value) { this.StockTransferReasonWriteOffLedgerAccountNo = value; return this; } public String getStockTransferReasonWriteOffLedgerAccountDescription() { return StockTransferReasonWriteOffLedgerAccountDescription; } public StockTransferLine setStockTransferReasonWriteOffLedgerAccountDescription(String value) { this.StockTransferReasonWriteOffLedgerAccountDescription = value; return this; } public Boolean isStockTransferReasonWriteOnLedgerAccountOverride() { return StockTransferReasonWriteOnLedgerAccountOverride; } public StockTransferLine setStockTransferReasonWriteOnLedgerAccountOverride(Boolean value) { this.StockTransferReasonWriteOnLedgerAccountOverride = value; return this; } public String getStockTransferReasonWriteOnLedgerAccountRecID() { return StockTransferReasonWriteOnLedgerAccountRecID; } public StockTransferLine setStockTransferReasonWriteOnLedgerAccountRecID(String value) { this.StockTransferReasonWriteOnLedgerAccountRecID = value; return this; } public String getStockTransferReasonWriteOnLedgerAccountNo() { return StockTransferReasonWriteOnLedgerAccountNo; } public StockTransferLine setStockTransferReasonWriteOnLedgerAccountNo(String value) { this.StockTransferReasonWriteOnLedgerAccountNo = value; return this; } public String getStockTransferReasonWriteOnLedgerAccountDescription() { return StockTransferReasonWriteOnLedgerAccountDescription; } public StockTransferLine setStockTransferReasonWriteOnLedgerAccountDescription(String value) { this.StockTransferReasonWriteOnLedgerAccountDescription = value; return this; } public String getToInventoryRecID() { return ToInventoryRecID; } public StockTransferLine setToInventoryRecID(String value) { this.ToInventoryRecID = value; return this; } public String getToInventoryPartNo() { return ToInventoryPartNo; } public StockTransferLine setToInventoryPartNo(String value) { this.ToInventoryPartNo = value; return this; } public String getToInventoryDescription() { return ToInventoryDescription; } public StockTransferLine setToInventoryDescription(String value) { this.ToInventoryDescription = value; return this; } public Integer getToInventoryDecimalPlaces() { return ToInventoryDecimalPlaces; } public StockTransferLine setToInventoryDecimalPlaces(Integer value) { this.ToInventoryDecimalPlaces = value; return this; } public BigDecimal getToInventoryLastCost() { return ToInventoryLastCost; } public StockTransferLine setToInventoryLastCost(BigDecimal value) { this.ToInventoryLastCost = value; return this; } public BigDecimal getToInventoryCubic() { return ToInventoryCubic; } public StockTransferLine setToInventoryCubic(BigDecimal value) { this.ToInventoryCubic = value; return this; } public BigDecimal getToInventoryWeight() { return ToInventoryWeight; } public StockTransferLine setToInventoryWeight(BigDecimal value) { this.ToInventoryWeight = value; return this; } public String getToInventoryUnits() { return ToInventoryUnits; } public StockTransferLine setToInventoryUnits(String value) { this.ToInventoryUnits = value; return this; } public Boolean isToInventoryIsPhysical() { return ToInventoryIsPhysical; } public StockTransferLine setToInventoryIsPhysical(Boolean value) { this.ToInventoryIsPhysical = value; return this; } public Boolean isToInventoryIsSerial() { return ToInventoryIsSerial; } public StockTransferLine setToInventoryIsSerial(Boolean value) { this.ToInventoryIsSerial = value; return this; } public String getToInventoryInventoryValueLedgerRecID() { return ToInventoryInventoryValueLedgerRecID; } public StockTransferLine setToInventoryInventoryValueLedgerRecID(String value) { this.ToInventoryInventoryValueLedgerRecID = value; return this; } public String getToInventoryInventoryValueLedgerAccountNo() { return ToInventoryInventoryValueLedgerAccountNo; } public StockTransferLine setToInventoryInventoryValueLedgerAccountNo(String value) { this.ToInventoryInventoryValueLedgerAccountNo = value; return this; } public String getToInventoryInventoryValueLedgerDescription() { return ToInventoryInventoryValueLedgerDescription; } public StockTransferLine setToInventoryInventoryValueLedgerDescription(String value) { this.ToInventoryInventoryValueLedgerDescription = value; return this; } public String getToInventoryWriteOnLedgerAccountRecID() { return ToInventoryWriteOnLedgerAccountRecID; } public StockTransferLine setToInventoryWriteOnLedgerAccountRecID(String value) { this.ToInventoryWriteOnLedgerAccountRecID = value; return this; } public String getToInventoryWriteOnLedgerAccountNo() { return ToInventoryWriteOnLedgerAccountNo; } public StockTransferLine setToInventoryWriteOnLedgerAccountNo(String value) { this.ToInventoryWriteOnLedgerAccountNo = value; return this; } public String getToInventoryWriteOnLedgerAccountDescription() { return ToInventoryWriteOnLedgerAccountDescription; } public StockTransferLine setToInventoryWriteOnLedgerAccountDescription(String value) { this.ToInventoryWriteOnLedgerAccountDescription = value; return this; } public String getToInventoryWriteOffLedgerAccountRecID() { return ToInventoryWriteOffLedgerAccountRecID; } public StockTransferLine setToInventoryWriteOffLedgerAccountRecID(String value) { this.ToInventoryWriteOffLedgerAccountRecID = value; return this; } public String getToInventoryWriteOffLedgerAccountNo() { return ToInventoryWriteOffLedgerAccountNo; } public StockTransferLine setToInventoryWriteOffLedgerAccountNo(String value) { this.ToInventoryWriteOffLedgerAccountNo = value; return this; } public String getToInventoryWriteOffLedgerAccountDescription() { return ToInventoryWriteOffLedgerAccountDescription; } public StockTransferLine setToInventoryWriteOffLedgerAccountDescription(String value) { this.ToInventoryWriteOffLedgerAccountDescription = value; return this; } public String getToPartInventorySOHID() { return ToPartInventorySOHID; } public StockTransferLine setToPartInventorySOHID(String value) { this.ToPartInventorySOHID = value; return this; } public String getToPartSerialNo() { return ToPartSerialNo; } public StockTransferLine setToPartSerialNo(String value) { this.ToPartSerialNo = value; return this; } public String getToPartComment() { return ToPartComment; } public StockTransferLine setToPartComment(String value) { this.ToPartComment = value; return this; } public Date getToPartExpiryDate() { return ToPartExpiryDate; } public StockTransferLine setToPartExpiryDate(Date value) { this.ToPartExpiryDate = value; return this; } public String getToPartBinLocation() { return ToPartBinLocation; } public StockTransferLine setToPartBinLocation(String value) { this.ToPartBinLocation = value; return this; } public String getLastSavedByStaffID() { return LastSavedByStaffID; } public StockTransferLine setLastSavedByStaffID(String value) { this.LastSavedByStaffID = value; return this; } public String getLastSavedByStaffUserName() { return LastSavedByStaffUserName; } public StockTransferLine setLastSavedByStaffUserName(String value) { this.LastSavedByStaffUserName = value; return this; } public String getLastSavedByStaffTitle() { return LastSavedByStaffTitle; } public StockTransferLine setLastSavedByStaffTitle(String value) { this.LastSavedByStaffTitle = value; return this; } public String getLastSavedByStaffFirstName() { return LastSavedByStaffFirstName; } public StockTransferLine setLastSavedByStaffFirstName(String value) { this.LastSavedByStaffFirstName = value; return this; } public String getLastSavedByStaffSurname() { return LastSavedByStaffSurname; } public StockTransferLine setLastSavedByStaffSurname(String value) { this.LastSavedByStaffSurname = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public StockTransferLine setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public String getCreatedByStaffID() { return CreatedByStaffID; } public StockTransferLine setCreatedByStaffID(String value) { this.CreatedByStaffID = value; return this; } public String getCreatedByStaffUserName() { return CreatedByStaffUserName; } public StockTransferLine setCreatedByStaffUserName(String value) { this.CreatedByStaffUserName = value; return this; } public String getCreatedByStaffTitle() { return CreatedByStaffTitle; } public StockTransferLine setCreatedByStaffTitle(String value) { this.CreatedByStaffTitle = value; return this; } public String getCreatedByStaffFirstName() { return CreatedByStaffFirstName; } public StockTransferLine setCreatedByStaffFirstName(String value) { this.CreatedByStaffFirstName = value; return this; } public String getCreatedByStaffSurname() { return CreatedByStaffSurname; } public StockTransferLine setCreatedByStaffSurname(String value) { this.CreatedByStaffSurname = value; return this; } public Date getCreatedDateTime() { return CreatedDateTime; } public StockTransferLine setCreatedDateTime(Date value) { this.CreatedDateTime = value; return this; } public ArrayList getCustomFieldValues() { return CustomFieldValues; } public StockTransferLine setCustomFieldValues(ArrayList value) { this.CustomFieldValues = value; return this; } } public static enum CreditStatuses { Open, Activated, Closed; } public static class Line { public String RecID = null; public Integer ItemNo = null; public Date LastSavedDateTime = null; public ArrayList RowHash = null; public String InventoryID = null; public String PartNo = null; public String Description = null; public Short DecimalPlaces = null; public BigDecimal Quantity = null; public String Remark = null; public BigDecimal UnitCreditValue = null; public BigDecimal TotalCreditValue = null; public BigDecimal TaxAmount = null; public BigDecimal FXUnitCreditValue = null; public BigDecimal FXTotalCreditValue = null; public BigDecimal FXRate = null; public String TaxRateID = null; public String TaxRateDescription = null; public BigDecimal TaxRate = null; public ReturnCode ReturnCode = null; public ArrayList CustomFieldValues = null; public ArrayList LineDetails = null; public String PurchaseOrderLineID = null; public String ShippingLineID = null; public Boolean IsCompleted = null; public String getRecID() { return RecID; } public Line setRecID(String value) { this.RecID = value; return this; } public Integer getItemNo() { return ItemNo; } public Line setItemNo(Integer value) { this.ItemNo = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public Line setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public ArrayList getRowHash() { return RowHash; } public Line setRowHash(ArrayList value) { this.RowHash = value; return this; } public String getInventoryID() { return InventoryID; } public Line setInventoryID(String value) { this.InventoryID = value; return this; } public String getPartNo() { return PartNo; } public Line setPartNo(String value) { this.PartNo = value; return this; } public String getDescription() { return Description; } public Line setDescription(String value) { this.Description = value; return this; } public Short getDecimalPlaces() { return DecimalPlaces; } public Line setDecimalPlaces(Short value) { this.DecimalPlaces = value; return this; } public BigDecimal getQuantity() { return Quantity; } public Line setQuantity(BigDecimal value) { this.Quantity = value; return this; } public String getRemark() { return Remark; } public Line setRemark(String value) { this.Remark = value; return this; } public BigDecimal getUnitCreditValue() { return UnitCreditValue; } public Line setUnitCreditValue(BigDecimal value) { this.UnitCreditValue = value; return this; } public BigDecimal getTotalCreditValue() { return TotalCreditValue; } public Line setTotalCreditValue(BigDecimal value) { this.TotalCreditValue = value; return this; } public BigDecimal getTaxAmount() { return TaxAmount; } public Line setTaxAmount(BigDecimal value) { this.TaxAmount = value; return this; } public BigDecimal getFxUnitCreditValue() { return FXUnitCreditValue; } public Line setFxUnitCreditValue(BigDecimal value) { this.FXUnitCreditValue = value; return this; } public BigDecimal getFxTotalCreditValue() { return FXTotalCreditValue; } public Line setFxTotalCreditValue(BigDecimal value) { this.FXTotalCreditValue = value; return this; } public BigDecimal getFxRate() { return FXRate; } public Line setFxRate(BigDecimal value) { this.FXRate = value; return this; } public String getTaxRateID() { return TaxRateID; } public Line setTaxRateID(String value) { this.TaxRateID = value; return this; } public String getTaxRateDescription() { return TaxRateDescription; } public Line setTaxRateDescription(String value) { this.TaxRateDescription = value; return this; } public BigDecimal getTaxRate() { return TaxRate; } public Line setTaxRate(BigDecimal value) { this.TaxRate = value; return this; } public ReturnCode getReturnCode() { return ReturnCode; } public Line setReturnCode(ReturnCode value) { this.ReturnCode = value; return this; } public ArrayList getCustomFieldValues() { return CustomFieldValues; } public Line setCustomFieldValues(ArrayList value) { this.CustomFieldValues = value; return this; } public ArrayList getLineDetails() { return LineDetails; } public Line setLineDetails(ArrayList value) { this.LineDetails = value; return this; } public String getPurchaseOrderLineID() { return PurchaseOrderLineID; } public Line setPurchaseOrderLineID(String value) { this.PurchaseOrderLineID = value; return this; } public String getShippingLineID() { return ShippingLineID; } public Line setShippingLineID(String value) { this.ShippingLineID = value; return this; } public Boolean getIsCompleted() { return IsCompleted; } public Line setIsCompleted(Boolean value) { this.IsCompleted = value; return this; } } public static class ShippingEntity { public String RecID = null; public String ShippingNo = null; public String RANumber = null; public String Reference = null; public ShippingEntityStatuses Status = null; public ReturnCode ReturnCode = null; public String CreditorID = null; public String CreditorAccountNo = null; public String CreditorName = null; public Date ShippingDate = null; public String getRecID() { return RecID; } public ShippingEntity setRecID(String value) { this.RecID = value; return this; } public String getShippingNo() { return ShippingNo; } public ShippingEntity setShippingNo(String value) { this.ShippingNo = value; return this; } public String getRaNumber() { return RANumber; } public ShippingEntity setRaNumber(String value) { this.RANumber = value; return this; } public String getReference() { return Reference; } public ShippingEntity setReference(String value) { this.Reference = value; return this; } public ShippingEntityStatuses getStatus() { return Status; } public ShippingEntity setStatus(ShippingEntityStatuses value) { this.Status = value; return this; } public ReturnCode getReturnCode() { return ReturnCode; } public ShippingEntity setReturnCode(ReturnCode value) { this.ReturnCode = value; return this; } public String getCreditorID() { return CreditorID; } public ShippingEntity setCreditorID(String value) { this.CreditorID = value; return this; } public String getCreditorAccountNo() { return CreditorAccountNo; } public ShippingEntity setCreditorAccountNo(String value) { this.CreditorAccountNo = value; return this; } public String getCreditorName() { return CreditorName; } public ShippingEntity setCreditorName(String value) { this.CreditorName = value; return this; } public Date getShippingDate() { return ShippingDate; } public ShippingEntity setShippingDate(Date value) { this.ShippingDate = value; return this; } } public static enum ShippingStatuses { Open, Activated, Closed; } public static class ReturnCode { public String RecID = null; public String Code = null; public String Description = null; public Boolean IsDefault = null; public ReturnTypes ReturnType = null; public String getRecID() { return RecID; } public ReturnCode setRecID(String value) { this.RecID = value; return this; } public String getCode() { return Code; } public ReturnCode setCode(String value) { this.Code = value; return this; } public String getDescription() { return Description; } public ReturnCode setDescription(String value) { this.Description = value; return this; } public Boolean getIsDefault() { return IsDefault; } public ReturnCode setIsDefault(Boolean value) { this.IsDefault = value; return this; } public ReturnTypes getReturnType() { return ReturnType; } public ReturnCode setReturnType(ReturnTypes value) { this.ReturnType = value; return this; } } public static class Line { public String RecID = null; public Integer ItemNo = null; public Date LastSavedDateTime = null; public ArrayList RowHash = null; public String InventoryID = null; public String PartNo = null; public String Description = null; public Short DecimalPlaces = null; public BigDecimal Quantity = null; public BigDecimal QuantityTaken = null; public String Remark = null; public BigDecimal UnitReturnValue = null; public BigDecimal TotalReturnValue = null; public BigDecimal TaxAmount = null; public String TaxRateID = null; public String TaxRateDescription = null; public BigDecimal TaxRate = null; public BigDecimal FXUnitReturnValue = null; public BigDecimal FXTotalReturnValue = null; public BigDecimal FXRate = null; public BigDecimal LineTotalIncTax = null; public Boolean IsCompleted = null; public ReturnCode ReturnCode = null; public String PurchaseOrderLineID = null; public ArrayList CustomFieldValues = null; public ArrayList LineDetails = null; public String getRecID() { return RecID; } public Line setRecID(String value) { this.RecID = value; return this; } public Integer getItemNo() { return ItemNo; } public Line setItemNo(Integer value) { this.ItemNo = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public Line setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public ArrayList getRowHash() { return RowHash; } public Line setRowHash(ArrayList value) { this.RowHash = value; return this; } public String getInventoryID() { return InventoryID; } public Line setInventoryID(String value) { this.InventoryID = value; return this; } public String getPartNo() { return PartNo; } public Line setPartNo(String value) { this.PartNo = value; return this; } public String getDescription() { return Description; } public Line setDescription(String value) { this.Description = value; return this; } public Short getDecimalPlaces() { return DecimalPlaces; } public Line setDecimalPlaces(Short value) { this.DecimalPlaces = value; return this; } public BigDecimal getQuantity() { return Quantity; } public Line setQuantity(BigDecimal value) { this.Quantity = value; return this; } public BigDecimal getQuantityTaken() { return QuantityTaken; } public Line setQuantityTaken(BigDecimal value) { this.QuantityTaken = value; return this; } public String getRemark() { return Remark; } public Line setRemark(String value) { this.Remark = value; return this; } public BigDecimal getUnitReturnValue() { return UnitReturnValue; } public Line setUnitReturnValue(BigDecimal value) { this.UnitReturnValue = value; return this; } public BigDecimal getTotalReturnValue() { return TotalReturnValue; } public Line setTotalReturnValue(BigDecimal value) { this.TotalReturnValue = value; return this; } public BigDecimal getTaxAmount() { return TaxAmount; } public Line setTaxAmount(BigDecimal value) { this.TaxAmount = value; return this; } public String getTaxRateID() { return TaxRateID; } public Line setTaxRateID(String value) { this.TaxRateID = value; return this; } public String getTaxRateDescription() { return TaxRateDescription; } public Line setTaxRateDescription(String value) { this.TaxRateDescription = value; return this; } public BigDecimal getTaxRate() { return TaxRate; } public Line setTaxRate(BigDecimal value) { this.TaxRate = value; return this; } public BigDecimal getFxUnitReturnValue() { return FXUnitReturnValue; } public Line setFxUnitReturnValue(BigDecimal value) { this.FXUnitReturnValue = value; return this; } public BigDecimal getFxTotalReturnValue() { return FXTotalReturnValue; } public Line setFxTotalReturnValue(BigDecimal value) { this.FXTotalReturnValue = value; return this; } public BigDecimal getFxRate() { return FXRate; } public Line setFxRate(BigDecimal value) { this.FXRate = value; return this; } public BigDecimal getLineTotalIncTax() { return LineTotalIncTax; } public Line setLineTotalIncTax(BigDecimal value) { this.LineTotalIncTax = value; return this; } public Boolean getIsCompleted() { return IsCompleted; } public Line setIsCompleted(Boolean value) { this.IsCompleted = value; return this; } public ReturnCode getReturnCode() { return ReturnCode; } public Line setReturnCode(ReturnCode value) { this.ReturnCode = value; return this; } public String getPurchaseOrderLineID() { return PurchaseOrderLineID; } public Line setPurchaseOrderLineID(String value) { this.PurchaseOrderLineID = value; return this; } public ArrayList getCustomFieldValues() { return CustomFieldValues; } public Line setCustomFieldValues(ArrayList value) { this.CustomFieldValues = value; return this; } public ArrayList getLineDetails() { return LineDetails; } public Line setLineDetails(ArrayList value) { this.LineDetails = value; return this; } } public static class RequestEntity { public String RecID = null; public String RequestNo = null; public String Reference = null; public RequestEntityStatuses Status = null; public ReturnCode ReturnCode = null; public String CreditorID = null; public String CreditorAccountNo = null; public String CreditorName = null; public String ContactName = null; public String Note = null; public String CourierDetails = null; public Date RequestDate = null; public String getRecID() { return RecID; } public RequestEntity setRecID(String value) { this.RecID = value; return this; } public String getRequestNo() { return RequestNo; } public RequestEntity setRequestNo(String value) { this.RequestNo = value; return this; } public String getReference() { return Reference; } public RequestEntity setReference(String value) { this.Reference = value; return this; } public RequestEntityStatuses getStatus() { return Status; } public RequestEntity setStatus(RequestEntityStatuses value) { this.Status = value; return this; } public ReturnCode getReturnCode() { return ReturnCode; } public RequestEntity setReturnCode(ReturnCode value) { this.ReturnCode = value; return this; } public String getCreditorID() { return CreditorID; } public RequestEntity setCreditorID(String value) { this.CreditorID = value; return this; } public String getCreditorAccountNo() { return CreditorAccountNo; } public RequestEntity setCreditorAccountNo(String value) { this.CreditorAccountNo = value; return this; } public String getCreditorName() { return CreditorName; } public RequestEntity setCreditorName(String value) { this.CreditorName = value; return this; } public String getContactName() { return ContactName; } public RequestEntity setContactName(String value) { this.ContactName = value; return this; } public String getNote() { return Note; } public RequestEntity setNote(String value) { this.Note = value; return this; } public String getCourierDetails() { return CourierDetails; } public RequestEntity setCourierDetails(String value) { this.CourierDetails = value; return this; } public Date getRequestDate() { return RequestDate; } public RequestEntity setRequestDate(Date value) { this.RequestDate = value; return this; } } public static class CreditEntity { public String RecID = null; public String CreditNo = null; public String Reference = null; public String CreditorRef = null; public CreditEntityStatuses Status = null; public String CreditorID = null; public String CreditorAccountNo = null; public String CreditorName = null; public String ContactName = null; public Date CreditDate = null; public String getRecID() { return RecID; } public CreditEntity setRecID(String value) { this.RecID = value; return this; } public String getCreditNo() { return CreditNo; } public CreditEntity setCreditNo(String value) { this.CreditNo = value; return this; } public String getReference() { return Reference; } public CreditEntity setReference(String value) { this.Reference = value; return this; } public String getCreditorRef() { return CreditorRef; } public CreditEntity setCreditorRef(String value) { this.CreditorRef = value; return this; } public CreditEntityStatuses getStatus() { return Status; } public CreditEntity setStatus(CreditEntityStatuses value) { this.Status = value; return this; } public String getCreditorID() { return CreditorID; } public CreditEntity setCreditorID(String value) { this.CreditorID = value; return this; } public String getCreditorAccountNo() { return CreditorAccountNo; } public CreditEntity setCreditorAccountNo(String value) { this.CreditorAccountNo = value; return this; } public String getCreditorName() { return CreditorName; } public CreditEntity setCreditorName(String value) { this.CreditorName = value; return this; } public String getContactName() { return ContactName; } public CreditEntity setContactName(String value) { this.ContactName = value; return this; } public Date getCreditDate() { return CreditDate; } public CreditEntity setCreditDate(Date value) { this.CreditDate = value; return this; } } public static enum TaxRateTypes { Wst, GstIn, GstOut, GstAdjustmentsIn, GstAdjustmentsout; } public static class UserSetting { public String Section = null; public String IDKey = null; public String Contents = null; public String getSection() { return Section; } public UserSetting setSection(String value) { this.Section = value; return this; } public String getIdKey() { return IDKey; } public UserSetting setIdKey(String value) { this.IDKey = value; return this; } public String getContents() { return Contents; } public UserSetting setContents(String value) { this.Contents = value; return this; } } public static class QueryDb extends QueryBase { } public static class SY_UserProfile { @Required() public String ProfileID = null; @Required() public Date LastSavedDateTime = null; @References(HR_Staff.class) @Required() public String UserID = null; public String Section = null; public String IDKey = null; public String Contents = null; public String getProfileID() { return ProfileID; } public SY_UserProfile setProfileID(String value) { this.ProfileID = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public SY_UserProfile setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public String getUserID() { return UserID; } public SY_UserProfile setUserID(String value) { this.UserID = value; return this; } public String getSection() { return Section; } public SY_UserProfile setSection(String value) { this.Section = value; return this; } public String getIdKey() { return IDKey; } public SY_UserProfile setIdKey(String value) { this.IDKey = value; return this; } public String getContents() { return Contents; } public SY_UserProfile setContents(String value) { this.Contents = value; return this; } } public static enum Statuses { Entered, Closed, Picking, InTransit, Cancelled; } public static enum SourceTypes { EWarehouseTransferSourceTypeNormal, EWarehouseTransferSourceTypePurchaseOrder, EWarehouseTransferSourceTypeBackOrder, EWarehouseTransferSourceSupplierReturnRequest, EWarehouseTransferSourceSupplierReturnShipping; } public static class WarehouseTransferOutReceiveIn { public String WarehouseTransferOutReceiveInID = null; public String WarehouseTransferOutID = null; public String WarehouseTransferInID = null; public String TransferNo = null; public Date TransferDate = null; public String ReceivedByStaffID = null; public String ReceivedByStaffUserName = null; public String ReceivedByStaffTitle = null; public String ReceivedByStaffFirstName = null; public String ReceivedByStaffSurname = null; public Statuses Status = null; public String getWarehouseTransferOutReceiveInID() { return WarehouseTransferOutReceiveInID; } public WarehouseTransferOutReceiveIn setWarehouseTransferOutReceiveInID(String value) { this.WarehouseTransferOutReceiveInID = value; return this; } public String getWarehouseTransferOutID() { return WarehouseTransferOutID; } public WarehouseTransferOutReceiveIn setWarehouseTransferOutID(String value) { this.WarehouseTransferOutID = value; return this; } public String getWarehouseTransferInID() { return WarehouseTransferInID; } public WarehouseTransferOutReceiveIn setWarehouseTransferInID(String value) { this.WarehouseTransferInID = value; return this; } public String getTransferNo() { return TransferNo; } public WarehouseTransferOutReceiveIn setTransferNo(String value) { this.TransferNo = value; return this; } public Date getTransferDate() { return TransferDate; } public WarehouseTransferOutReceiveIn setTransferDate(Date value) { this.TransferDate = value; return this; } public String getReceivedByStaffID() { return ReceivedByStaffID; } public WarehouseTransferOutReceiveIn setReceivedByStaffID(String value) { this.ReceivedByStaffID = value; return this; } public String getReceivedByStaffUserName() { return ReceivedByStaffUserName; } public WarehouseTransferOutReceiveIn setReceivedByStaffUserName(String value) { this.ReceivedByStaffUserName = value; return this; } public String getReceivedByStaffTitle() { return ReceivedByStaffTitle; } public WarehouseTransferOutReceiveIn setReceivedByStaffTitle(String value) { this.ReceivedByStaffTitle = value; return this; } public String getReceivedByStaffFirstName() { return ReceivedByStaffFirstName; } public WarehouseTransferOutReceiveIn setReceivedByStaffFirstName(String value) { this.ReceivedByStaffFirstName = value; return this; } public String getReceivedByStaffSurname() { return ReceivedByStaffSurname; } public WarehouseTransferOutReceiveIn setReceivedByStaffSurname(String value) { this.ReceivedByStaffSurname = value; return this; } public Statuses getStatus() { return Status; } public WarehouseTransferOutReceiveIn setStatus(Statuses value) { this.Status = value; return this; } } public static class WarehouseTransferOutLineDetail { public String TransferLineDetailsID = null; public BigDecimal Quantity = null; public BigDecimal Cost = null; public String SourceSerialNo = null; public String SourceBinLocation = null; public Date SourceExpiryDate = null; public String Source_IN_SOHID = null; public String InTransit_IN_SOHID = null; public String getTransferLineDetailsID() { return TransferLineDetailsID; } public WarehouseTransferOutLineDetail setTransferLineDetailsID(String value) { this.TransferLineDetailsID = value; return this; } public BigDecimal getQuantity() { return Quantity; } public WarehouseTransferOutLineDetail setQuantity(BigDecimal value) { this.Quantity = value; return this; } public BigDecimal getCost() { return Cost; } public WarehouseTransferOutLineDetail setCost(BigDecimal value) { this.Cost = value; return this; } public String getSourceSerialNo() { return SourceSerialNo; } public WarehouseTransferOutLineDetail setSourceSerialNo(String value) { this.SourceSerialNo = value; return this; } public String getSourceBinLocation() { return SourceBinLocation; } public WarehouseTransferOutLineDetail setSourceBinLocation(String value) { this.SourceBinLocation = value; return this; } public Date getSourceExpiryDate() { return SourceExpiryDate; } public WarehouseTransferOutLineDetail setSourceExpiryDate(Date value) { this.SourceExpiryDate = value; return this; } public String getSourceInSohid() { return Source_IN_SOHID; } public WarehouseTransferOutLineDetail setSourceInSohid(String value) { this.Source_IN_SOHID = value; return this; } public String getInTransitInSohid() { return InTransit_IN_SOHID; } public WarehouseTransferOutLineDetail setInTransitInSohid(String value) { this.InTransit_IN_SOHID = value; return this; } } public static enum Statuses { Entered, Closed, Picking, InTransit, Cancelled; } public static enum SourceTypes { EWarehouseTransferSourceTypeNormal, EWarehouseTransferSourceTypePurchaseOrder, EWarehouseTransferSourceTypeBackOrder, EWarehouseTransferSourceSupplierReturnRequest, EWarehouseTransferSourceSupplierReturnShipping; } public static class WarehouseTransferInReceiveIn { public String WarehouseTransferInReceiveInID = null; public String WarehouseTransferInID = null; public String WarehouseTransferOutID = null; public String TransferNo = null; public Date TransferDate = null; public String ReceivedByStaffID = null; public String ReceivedByStaffUserName = null; public String ReceivedByStaffTitle = null; public String ReceivedByStaffFirstName = null; public String ReceivedByStaffSurname = null; public Statuses Status = null; public String getWarehouseTransferInReceiveInID() { return WarehouseTransferInReceiveInID; } public WarehouseTransferInReceiveIn setWarehouseTransferInReceiveInID(String value) { this.WarehouseTransferInReceiveInID = value; return this; } public String getWarehouseTransferInID() { return WarehouseTransferInID; } public WarehouseTransferInReceiveIn setWarehouseTransferInID(String value) { this.WarehouseTransferInID = value; return this; } public String getWarehouseTransferOutID() { return WarehouseTransferOutID; } public WarehouseTransferInReceiveIn setWarehouseTransferOutID(String value) { this.WarehouseTransferOutID = value; return this; } public String getTransferNo() { return TransferNo; } public WarehouseTransferInReceiveIn setTransferNo(String value) { this.TransferNo = value; return this; } public Date getTransferDate() { return TransferDate; } public WarehouseTransferInReceiveIn setTransferDate(Date value) { this.TransferDate = value; return this; } public String getReceivedByStaffID() { return ReceivedByStaffID; } public WarehouseTransferInReceiveIn setReceivedByStaffID(String value) { this.ReceivedByStaffID = value; return this; } public String getReceivedByStaffUserName() { return ReceivedByStaffUserName; } public WarehouseTransferInReceiveIn setReceivedByStaffUserName(String value) { this.ReceivedByStaffUserName = value; return this; } public String getReceivedByStaffTitle() { return ReceivedByStaffTitle; } public WarehouseTransferInReceiveIn setReceivedByStaffTitle(String value) { this.ReceivedByStaffTitle = value; return this; } public String getReceivedByStaffFirstName() { return ReceivedByStaffFirstName; } public WarehouseTransferInReceiveIn setReceivedByStaffFirstName(String value) { this.ReceivedByStaffFirstName = value; return this; } public String getReceivedByStaffSurname() { return ReceivedByStaffSurname; } public WarehouseTransferInReceiveIn setReceivedByStaffSurname(String value) { this.ReceivedByStaffSurname = value; return this; } public Statuses getStatus() { return Status; } public WarehouseTransferInReceiveIn setStatus(Statuses value) { this.Status = value; return this; } } public static class WarehouseTransferInLineDetail { public String TransferLineDetailsID = null; public BigDecimal Quantity = null; public BigDecimal Cost = null; public String SourceSerialNo = null; public String SourceBinLocation = null; public Date SourceExpiryDate = null; public Date SourceDateIn = null; public BigDecimal SourceSpecialPrice = null; public String Source_IN_SOHID = null; public String InTransit_IN_SOHID = null; public String Destination_IN_SOHID = null; public BigDecimal QuantityReceived = null; public BigDecimal CostReceived = null; public String DestinationSerialNo = null; public String DestinationBinLocation = null; public Date DestinationExpiryDate = null; public BigDecimal AddedCost = null; public String getTransferLineDetailsID() { return TransferLineDetailsID; } public WarehouseTransferInLineDetail setTransferLineDetailsID(String value) { this.TransferLineDetailsID = value; return this; } public BigDecimal getQuantity() { return Quantity; } public WarehouseTransferInLineDetail setQuantity(BigDecimal value) { this.Quantity = value; return this; } public BigDecimal getCost() { return Cost; } public WarehouseTransferInLineDetail setCost(BigDecimal value) { this.Cost = value; return this; } public String getSourceSerialNo() { return SourceSerialNo; } public WarehouseTransferInLineDetail setSourceSerialNo(String value) { this.SourceSerialNo = value; return this; } public String getSourceBinLocation() { return SourceBinLocation; } public WarehouseTransferInLineDetail setSourceBinLocation(String value) { this.SourceBinLocation = value; return this; } public Date getSourceExpiryDate() { return SourceExpiryDate; } public WarehouseTransferInLineDetail setSourceExpiryDate(Date value) { this.SourceExpiryDate = value; return this; } public Date getSourceDateIn() { return SourceDateIn; } public WarehouseTransferInLineDetail setSourceDateIn(Date value) { this.SourceDateIn = value; return this; } public BigDecimal getSourceSpecialPrice() { return SourceSpecialPrice; } public WarehouseTransferInLineDetail setSourceSpecialPrice(BigDecimal value) { this.SourceSpecialPrice = value; return this; } public String getSourceInSohid() { return Source_IN_SOHID; } public WarehouseTransferInLineDetail setSourceInSohid(String value) { this.Source_IN_SOHID = value; return this; } public String getInTransitInSohid() { return InTransit_IN_SOHID; } public WarehouseTransferInLineDetail setInTransitInSohid(String value) { this.InTransit_IN_SOHID = value; return this; } public String getDestinationInSohid() { return Destination_IN_SOHID; } public WarehouseTransferInLineDetail setDestinationInSohid(String value) { this.Destination_IN_SOHID = value; return this; } public BigDecimal getQuantityReceived() { return QuantityReceived; } public WarehouseTransferInLineDetail setQuantityReceived(BigDecimal value) { this.QuantityReceived = value; return this; } public BigDecimal getCostReceived() { return CostReceived; } public WarehouseTransferInLineDetail setCostReceived(BigDecimal value) { this.CostReceived = value; return this; } public String getDestinationSerialNo() { return DestinationSerialNo; } public WarehouseTransferInLineDetail setDestinationSerialNo(String value) { this.DestinationSerialNo = value; return this; } public String getDestinationBinLocation() { return DestinationBinLocation; } public WarehouseTransferInLineDetail setDestinationBinLocation(String value) { this.DestinationBinLocation = value; return this; } public Date getDestinationExpiryDate() { return DestinationExpiryDate; } public WarehouseTransferInLineDetail setDestinationExpiryDate(Date value) { this.DestinationExpiryDate = value; return this; } public BigDecimal getAddedCost() { return AddedCost; } public WarehouseTransferInLineDetail setAddedCost(BigDecimal value) { this.AddedCost = value; return this; } } public static class WebhooksSubscriptionHeader { public String Name = null; public String Value = null; public String getName() { return Name; } public WebhooksSubscriptionHeader setName(String value) { this.Name = value; return this; } public String getValue() { return Value; } public WebhooksSubscriptionHeader setValue(String value) { this.Value = value; return this; } } public static class v_SY_WebhookSubscriber_Messages { @Required() public UUID SubscriberID = null; @Required() public UUID SubscriptionID = null; @Required() public UUID MessageID = null; @Required() public String EventName = null; @Required() public String URL = null; public String Body = null; @Required() public Integer ItemNo = null; @Required() public Short Status = null; @Required() public Integer Retries = null; @Required() public Date AddedDateTime = null; @Required() public Date LastSavedDateTime = null; public Integer LastMessageResponseHTTPCode = null; public String LastMessageResponseMessage = null; public UUID getSubscriberID() { return SubscriberID; } public v_SY_WebhookSubscriber_Messages setSubscriberID(UUID value) { this.SubscriberID = value; return this; } public UUID getSubscriptionID() { return SubscriptionID; } public v_SY_WebhookSubscriber_Messages setSubscriptionID(UUID value) { this.SubscriptionID = value; return this; } public UUID getMessageID() { return MessageID; } public v_SY_WebhookSubscriber_Messages setMessageID(UUID value) { this.MessageID = value; return this; } public String getEventName() { return EventName; } public v_SY_WebhookSubscriber_Messages setEventName(String value) { this.EventName = value; return this; } public String getUrl() { return URL; } public v_SY_WebhookSubscriber_Messages setUrl(String value) { this.URL = value; return this; } public String getBody() { return Body; } public v_SY_WebhookSubscriber_Messages setBody(String value) { this.Body = value; return this; } public Integer getItemNo() { return ItemNo; } public v_SY_WebhookSubscriber_Messages setItemNo(Integer value) { this.ItemNo = value; return this; } public Short getStatus() { return Status; } public v_SY_WebhookSubscriber_Messages setStatus(Short value) { this.Status = value; return this; } public Integer getRetries() { return Retries; } public v_SY_WebhookSubscriber_Messages setRetries(Integer value) { this.Retries = value; return this; } public Date getAddedDateTime() { return AddedDateTime; } public v_SY_WebhookSubscriber_Messages setAddedDateTime(Date value) { this.AddedDateTime = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public v_SY_WebhookSubscriber_Messages setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Integer getLastMessageResponseHTTPCode() { return LastMessageResponseHTTPCode; } public v_SY_WebhookSubscriber_Messages setLastMessageResponseHTTPCode(Integer value) { this.LastMessageResponseHTTPCode = value; return this; } public String getLastMessageResponseMessage() { return LastMessageResponseMessage; } public v_SY_WebhookSubscriber_Messages setLastMessageResponseMessage(String value) { this.LastMessageResponseMessage = value; return this; } } public static class v_SY_WebhookSubscriber_MessageResponses { @Required() public UUID SubscriberID = null; @Required() public UUID SubscriptionID = null; @Required() public UUID MessageID = null; @Required() public UUID MessageResponseID = null; @Required() public String EventName = null; @Required() public String URL = null; public String Body = null; @Required() public Integer MessageItemNo = null; @Required() public Short Status = null; @Required() public Integer Retries = null; @Required() public Date AddedDateTime = null; @Required() public Date MessageLastSavedDateTime = null; @Required() public Integer HTTPCode = null; public String Message = null; @Required() public Integer ItemNo = null; @Required() public Date LastSavedDateTime = null; public UUID getSubscriberID() { return SubscriberID; } public v_SY_WebhookSubscriber_MessageResponses setSubscriberID(UUID value) { this.SubscriberID = value; return this; } public UUID getSubscriptionID() { return SubscriptionID; } public v_SY_WebhookSubscriber_MessageResponses setSubscriptionID(UUID value) { this.SubscriptionID = value; return this; } public UUID getMessageID() { return MessageID; } public v_SY_WebhookSubscriber_MessageResponses setMessageID(UUID value) { this.MessageID = value; return this; } public UUID getMessageResponseID() { return MessageResponseID; } public v_SY_WebhookSubscriber_MessageResponses setMessageResponseID(UUID value) { this.MessageResponseID = value; return this; } public String getEventName() { return EventName; } public v_SY_WebhookSubscriber_MessageResponses setEventName(String value) { this.EventName = value; return this; } public String getUrl() { return URL; } public v_SY_WebhookSubscriber_MessageResponses setUrl(String value) { this.URL = value; return this; } public String getBody() { return Body; } public v_SY_WebhookSubscriber_MessageResponses setBody(String value) { this.Body = value; return this; } public Integer getMessageItemNo() { return MessageItemNo; } public v_SY_WebhookSubscriber_MessageResponses setMessageItemNo(Integer value) { this.MessageItemNo = value; return this; } public Short getStatus() { return Status; } public v_SY_WebhookSubscriber_MessageResponses setStatus(Short value) { this.Status = value; return this; } public Integer getRetries() { return Retries; } public v_SY_WebhookSubscriber_MessageResponses setRetries(Integer value) { this.Retries = value; return this; } public Date getAddedDateTime() { return AddedDateTime; } public v_SY_WebhookSubscriber_MessageResponses setAddedDateTime(Date value) { this.AddedDateTime = value; return this; } public Date getMessageLastSavedDateTime() { return MessageLastSavedDateTime; } public v_SY_WebhookSubscriber_MessageResponses setMessageLastSavedDateTime(Date value) { this.MessageLastSavedDateTime = value; return this; } public Integer getHttpCode() { return HTTPCode; } public v_SY_WebhookSubscriber_MessageResponses setHttpCode(Integer value) { this.HTTPCode = value; return this; } public String getMessage() { return Message; } public v_SY_WebhookSubscriber_MessageResponses setMessage(String value) { this.Message = value; return this; } public Integer getItemNo() { return ItemNo; } public v_SY_WebhookSubscriber_MessageResponses setItemNo(Integer value) { this.ItemNo = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public v_SY_WebhookSubscriber_MessageResponses setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } } public static class WebHookEvent { @Required() public String Name = null; public String Description = null; public String getName() { return Name; } public WebHookEvent setName(String value) { this.Name = value; return this; } public String getDescription() { return Description; } public WebHookEvent setDescription(String value) { this.Description = value; return this; } } public static class ProductionLine { public String ProductionLineID = null; public String Name = null; public String Description = null; public Boolean IsEnabled = null; public ProductionArea ProductionArea = null; public String getProductionLineID() { return ProductionLineID; } public ProductionLine setProductionLineID(String value) { this.ProductionLineID = value; return this; } public String getName() { return Name; } public ProductionLine setName(String value) { this.Name = value; return this; } public String getDescription() { return Description; } public ProductionLine setDescription(String value) { this.Description = value; return this; } public Boolean getIsEnabled() { return IsEnabled; } public ProductionLine setIsEnabled(Boolean value) { this.IsEnabled = value; return this; } public ProductionArea getProductionArea() { return ProductionArea; } public ProductionLine setProductionArea(ProductionArea value) { this.ProductionArea = value; return this; } } public static enum Statuses { NotStarted(0), Started(1), OnHold(2), Closed(3), Forecast(-1); private final int value; Statuses(final int intValue) { value = intValue; } public int getValue() { return value; } } public static enum WorkOrderTypes { WorkOrder, Disassembly, Reversal; } public static class InventoryBinLocation { public String BinLocationID = null; public String LogicalWarehouseID = null; public String LogicalWarehouseDescription = null; public String PhysicalWarehouseID = null; public String PhysicalWarehouseDescription = null; public String Description = null; public String ShortName = null; public Integer ItemNo = null; public Boolean IsDefault = null; public ArrayList CustomFieldValues = null; public String getBinLocationID() { return BinLocationID; } public InventoryBinLocation setBinLocationID(String value) { this.BinLocationID = value; return this; } public String getLogicalWarehouseID() { return LogicalWarehouseID; } public InventoryBinLocation setLogicalWarehouseID(String value) { this.LogicalWarehouseID = value; return this; } public String getLogicalWarehouseDescription() { return LogicalWarehouseDescription; } public InventoryBinLocation setLogicalWarehouseDescription(String value) { this.LogicalWarehouseDescription = value; return this; } public String getPhysicalWarehouseID() { return PhysicalWarehouseID; } public InventoryBinLocation setPhysicalWarehouseID(String value) { this.PhysicalWarehouseID = value; return this; } public String getPhysicalWarehouseDescription() { return PhysicalWarehouseDescription; } public InventoryBinLocation setPhysicalWarehouseDescription(String value) { this.PhysicalWarehouseDescription = value; return this; } public String getDescription() { return Description; } public InventoryBinLocation setDescription(String value) { this.Description = value; return this; } public String getShortName() { return ShortName; } public InventoryBinLocation setShortName(String value) { this.ShortName = value; return this; } public Integer getItemNo() { return ItemNo; } public InventoryBinLocation setItemNo(Integer value) { this.ItemNo = value; return this; } public Boolean getIsDefault() { return IsDefault; } public InventoryBinLocation setIsDefault(Boolean value) { this.IsDefault = value; return this; } public ArrayList getCustomFieldValues() { return CustomFieldValues; } public InventoryBinLocation setCustomFieldValues(ArrayList value) { this.CustomFieldValues = value; return this; } } public static enum SubAssemblyExplodePolicyOptions { AlwaysExplode, NeverExplode, ExplodeShortfalls; } public static class SubAssemblyWorkOrder { public WorkOrder WorkOrder = null; public WorkOrder getWorkOrder() { return WorkOrder; } public SubAssemblyWorkOrder setWorkOrder(WorkOrder value) { this.WorkOrder = value; return this; } } public static class ProductionLineWorkCentre { public String ProductionLineWorkCentreID = null; public WorkCentre WorkCentre = null; public String getProductionLineWorkCentreID() { return ProductionLineWorkCentreID; } public ProductionLineWorkCentre setProductionLineWorkCentreID(String value) { this.ProductionLineWorkCentreID = value; return this; } public WorkCentre getWorkCentre() { return WorkCentre; } public ProductionLineWorkCentre setWorkCentre(WorkCentre value) { this.WorkCentre = value; return this; } } public static enum Statuses { NotStarted, InProgress, Completed; } public static class RESTAPICustomRoutesPlugin extends MarshalByRefObject { } public static class sh_WarehouseStock { public String InventoryID = null; public Integer StockOnHand = null; public BigDecimal ValueOnHand = null; public String IN_LogicalID = null; public String WarehouseDescription = null; public String PartNo = null; public Date LatestDateIn = null; public Date LatestLastSavedDateTime = null; public Boolean ProductWebEnabled = null; public String getInventoryID() { return InventoryID; } public sh_WarehouseStock setInventoryID(String value) { this.InventoryID = value; return this; } public Integer getStockOnHand() { return StockOnHand; } public sh_WarehouseStock setStockOnHand(Integer value) { this.StockOnHand = value; return this; } public BigDecimal getValueOnHand() { return ValueOnHand; } public sh_WarehouseStock setValueOnHand(BigDecimal value) { this.ValueOnHand = value; return this; } public String getInLogicalID() { return IN_LogicalID; } public sh_WarehouseStock setInLogicalID(String value) { this.IN_LogicalID = value; return this; } public String getWarehouseDescription() { return WarehouseDescription; } public sh_WarehouseStock setWarehouseDescription(String value) { this.WarehouseDescription = value; return this; } public String getPartNo() { return PartNo; } public sh_WarehouseStock setPartNo(String value) { this.PartNo = value; return this; } public Date getLatestDateIn() { return LatestDateIn; } public sh_WarehouseStock setLatestDateIn(Date value) { this.LatestDateIn = value; return this; } public Date getLatestLastSavedDateTime() { return LatestLastSavedDateTime; } public sh_WarehouseStock setLatestLastSavedDateTime(Date value) { this.LatestLastSavedDateTime = value; return this; } public Boolean isProductWebEnabled() { return ProductWebEnabled; } public sh_WarehouseStock setProductWebEnabled(Boolean value) { this.ProductWebEnabled = value; return this; } } public static class v_Jiwa_Inventory_Item_List { @Required() public String InventoryID = null; @Required() public String PartNo = null; public String Description = null; public ArrayList Picture = null; @Required() public String InventoryClassificationID = null; public String ClassificationDescription = null; @Required() public String Category1ID = null; public String Category1Description = null; @Required() public String Category2ID = null; public String Category2Description = null; @Required() public String Category3ID = null; public String Category3Description = null; @Required() public String Category4ID = null; public String Category4Description = null; @Required() public String Category5ID = null; public String Category5Description = null; @Required() public String IN_LogicalID = null; public String LogicalWarehouseDescription = null; @Required() public String IN_PhysicalID = null; @Required() public String PhysicalWarehouseDescription = null; public BigDecimal AvailableStock = null; public BigDecimal SellPrice = null; public BigDecimal RRPPrice = null; public Date LastSavedDateTime = null; public String getInventoryID() { return InventoryID; } public v_Jiwa_Inventory_Item_List setInventoryID(String value) { this.InventoryID = value; return this; } public String getPartNo() { return PartNo; } public v_Jiwa_Inventory_Item_List setPartNo(String value) { this.PartNo = value; return this; } public String getDescription() { return Description; } public v_Jiwa_Inventory_Item_List setDescription(String value) { this.Description = value; return this; } public ArrayList getPicture() { return Picture; } public v_Jiwa_Inventory_Item_List setPicture(ArrayList value) { this.Picture = value; return this; } public String getInventoryClassificationID() { return InventoryClassificationID; } public v_Jiwa_Inventory_Item_List setInventoryClassificationID(String value) { this.InventoryClassificationID = value; return this; } public String getClassificationDescription() { return ClassificationDescription; } public v_Jiwa_Inventory_Item_List setClassificationDescription(String value) { this.ClassificationDescription = value; return this; } public String getCategory1ID() { return Category1ID; } public v_Jiwa_Inventory_Item_List setCategory1ID(String value) { this.Category1ID = value; return this; } public String getCategory1Description() { return Category1Description; } public v_Jiwa_Inventory_Item_List setCategory1Description(String value) { this.Category1Description = value; return this; } public String getCategory2ID() { return Category2ID; } public v_Jiwa_Inventory_Item_List setCategory2ID(String value) { this.Category2ID = value; return this; } public String getCategory2Description() { return Category2Description; } public v_Jiwa_Inventory_Item_List setCategory2Description(String value) { this.Category2Description = value; return this; } public String getCategory3ID() { return Category3ID; } public v_Jiwa_Inventory_Item_List setCategory3ID(String value) { this.Category3ID = value; return this; } public String getCategory3Description() { return Category3Description; } public v_Jiwa_Inventory_Item_List setCategory3Description(String value) { this.Category3Description = value; return this; } public String getCategory4ID() { return Category4ID; } public v_Jiwa_Inventory_Item_List setCategory4ID(String value) { this.Category4ID = value; return this; } public String getCategory4Description() { return Category4Description; } public v_Jiwa_Inventory_Item_List setCategory4Description(String value) { this.Category4Description = value; return this; } public String getCategory5ID() { return Category5ID; } public v_Jiwa_Inventory_Item_List setCategory5ID(String value) { this.Category5ID = value; return this; } public String getCategory5Description() { return Category5Description; } public v_Jiwa_Inventory_Item_List setCategory5Description(String value) { this.Category5Description = value; return this; } public String getInLogicalID() { return IN_LogicalID; } public v_Jiwa_Inventory_Item_List setInLogicalID(String value) { this.IN_LogicalID = value; return this; } public String getLogicalWarehouseDescription() { return LogicalWarehouseDescription; } public v_Jiwa_Inventory_Item_List setLogicalWarehouseDescription(String value) { this.LogicalWarehouseDescription = value; return this; } public String getInPhysicalID() { return IN_PhysicalID; } public v_Jiwa_Inventory_Item_List setInPhysicalID(String value) { this.IN_PhysicalID = value; return this; } public String getPhysicalWarehouseDescription() { return PhysicalWarehouseDescription; } public v_Jiwa_Inventory_Item_List setPhysicalWarehouseDescription(String value) { this.PhysicalWarehouseDescription = value; return this; } public BigDecimal getAvailableStock() { return AvailableStock; } public v_Jiwa_Inventory_Item_List setAvailableStock(BigDecimal value) { this.AvailableStock = value; return this; } public BigDecimal getSellPrice() { return SellPrice; } public v_Jiwa_Inventory_Item_List setSellPrice(BigDecimal value) { this.SellPrice = value; return this; } public BigDecimal getRrpPrice() { return RRPPrice; } public v_Jiwa_Inventory_Item_List setRrpPrice(BigDecimal value) { this.RRPPrice = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public v_Jiwa_Inventory_Item_List setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } } public static class v_JIWA_JobCosting_EstimateAndActualLines { @Required() public String JB_Estimates_RecID = null; @Required() public String JB_JobStages_RecID = null; public String ComponentID = null; public String ComponentNo = null; public String ComponentDescription = null; @Required() public Date TransactionDate = null; @Required() public BigDecimal Quantity = null; @Required() public BigDecimal UnitCost = null; @Required() public BigDecimal UnitCharge = null; public String Remark = null; @Required() public Integer ItemNo = null; public String Units = null; public Integer ComponentType = null; @Required() public Integer IsEstimate = null; public String getJbEstimatesRecID() { return JB_Estimates_RecID; } public v_JIWA_JobCosting_EstimateAndActualLines setJbEstimatesRecID(String value) { this.JB_Estimates_RecID = value; return this; } public String getJbJobStagesRecID() { return JB_JobStages_RecID; } public v_JIWA_JobCosting_EstimateAndActualLines setJbJobStagesRecID(String value) { this.JB_JobStages_RecID = value; return this; } public String getComponentID() { return ComponentID; } public v_JIWA_JobCosting_EstimateAndActualLines setComponentID(String value) { this.ComponentID = value; return this; } public String getComponentNo() { return ComponentNo; } public v_JIWA_JobCosting_EstimateAndActualLines setComponentNo(String value) { this.ComponentNo = value; return this; } public String getComponentDescription() { return ComponentDescription; } public v_JIWA_JobCosting_EstimateAndActualLines setComponentDescription(String value) { this.ComponentDescription = value; return this; } public Date getTransactionDate() { return TransactionDate; } public v_JIWA_JobCosting_EstimateAndActualLines setTransactionDate(Date value) { this.TransactionDate = value; return this; } public BigDecimal getQuantity() { return Quantity; } public v_JIWA_JobCosting_EstimateAndActualLines setQuantity(BigDecimal value) { this.Quantity = value; return this; } public BigDecimal getUnitCost() { return UnitCost; } public v_JIWA_JobCosting_EstimateAndActualLines setUnitCost(BigDecimal value) { this.UnitCost = value; return this; } public BigDecimal getUnitCharge() { return UnitCharge; } public v_JIWA_JobCosting_EstimateAndActualLines setUnitCharge(BigDecimal value) { this.UnitCharge = value; return this; } public String getRemark() { return Remark; } public v_JIWA_JobCosting_EstimateAndActualLines setRemark(String value) { this.Remark = value; return this; } public Integer getItemNo() { return ItemNo; } public v_JIWA_JobCosting_EstimateAndActualLines setItemNo(Integer value) { this.ItemNo = value; return this; } public String getUnits() { return Units; } public v_JIWA_JobCosting_EstimateAndActualLines setUnits(String value) { this.Units = value; return this; } public Integer getComponentType() { return ComponentType; } public v_JIWA_JobCosting_EstimateAndActualLines setComponentType(Integer value) { this.ComponentType = value; return this; } public Integer getIsEstimate() { return IsEstimate; } public v_JIWA_JobCosting_EstimateAndActualLines setIsEstimate(Integer value) { this.IsEstimate = value; return this; } } public static class v_Jiwa_JobCosting_EstimateLines { @Required() public String JB_Estimates_RecID = null; @Required() public String JB_JobStages_RecID = null; @Required() public String ComponentID = null; @Required() public String ComponentNo = null; public String ComponentDescription = null; @Required() public Date TransactionDate = null; @Required() public BigDecimal Quantity = null; @Required() public BigDecimal UnitCost = null; @Required() public BigDecimal UnitCharge = null; public String Remark = null; @Required() public Integer ItemNo = null; public String Units = null; @Required() public Integer ComponentType = null; public String getJbEstimatesRecID() { return JB_Estimates_RecID; } public v_Jiwa_JobCosting_EstimateLines setJbEstimatesRecID(String value) { this.JB_Estimates_RecID = value; return this; } public String getJbJobStagesRecID() { return JB_JobStages_RecID; } public v_Jiwa_JobCosting_EstimateLines setJbJobStagesRecID(String value) { this.JB_JobStages_RecID = value; return this; } public String getComponentID() { return ComponentID; } public v_Jiwa_JobCosting_EstimateLines setComponentID(String value) { this.ComponentID = value; return this; } public String getComponentNo() { return ComponentNo; } public v_Jiwa_JobCosting_EstimateLines setComponentNo(String value) { this.ComponentNo = value; return this; } public String getComponentDescription() { return ComponentDescription; } public v_Jiwa_JobCosting_EstimateLines setComponentDescription(String value) { this.ComponentDescription = value; return this; } public Date getTransactionDate() { return TransactionDate; } public v_Jiwa_JobCosting_EstimateLines setTransactionDate(Date value) { this.TransactionDate = value; return this; } public BigDecimal getQuantity() { return Quantity; } public v_Jiwa_JobCosting_EstimateLines setQuantity(BigDecimal value) { this.Quantity = value; return this; } public BigDecimal getUnitCost() { return UnitCost; } public v_Jiwa_JobCosting_EstimateLines setUnitCost(BigDecimal value) { this.UnitCost = value; return this; } public BigDecimal getUnitCharge() { return UnitCharge; } public v_Jiwa_JobCosting_EstimateLines setUnitCharge(BigDecimal value) { this.UnitCharge = value; return this; } public String getRemark() { return Remark; } public v_Jiwa_JobCosting_EstimateLines setRemark(String value) { this.Remark = value; return this; } public Integer getItemNo() { return ItemNo; } public v_Jiwa_JobCosting_EstimateLines setItemNo(Integer value) { this.ItemNo = value; return this; } public String getUnits() { return Units; } public v_Jiwa_JobCosting_EstimateLines setUnits(String value) { this.Units = value; return this; } public Integer getComponentType() { return ComponentType; } public v_Jiwa_JobCosting_EstimateLines setComponentType(Integer value) { this.ComponentType = value; return this; } } public static class v_JIWA_JobCosting_EstimatesAndActuals { @Required() public String RecID = null; @Required() public String EstimateNo = null; public String Description = null; @Required() public String JB_Main_RecID = null; @Required() public Date LastSavedDateTime = null; public String HR_Staff_RecID = null; @Required() public String IN_Logical_RecID = null; @Required() public Integer IsDefault = null; public Integer Status = null; @Required() public Integer IsEstimate = null; public String getRecID() { return RecID; } public v_JIWA_JobCosting_EstimatesAndActuals setRecID(String value) { this.RecID = value; return this; } public String getEstimateNo() { return EstimateNo; } public v_JIWA_JobCosting_EstimatesAndActuals setEstimateNo(String value) { this.EstimateNo = value; return this; } public String getDescription() { return Description; } public v_JIWA_JobCosting_EstimatesAndActuals setDescription(String value) { this.Description = value; return this; } public String getJbMainRecID() { return JB_Main_RecID; } public v_JIWA_JobCosting_EstimatesAndActuals setJbMainRecID(String value) { this.JB_Main_RecID = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public v_JIWA_JobCosting_EstimatesAndActuals setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public String getHrStaffRecID() { return HR_Staff_RecID; } public v_JIWA_JobCosting_EstimatesAndActuals setHrStaffRecID(String value) { this.HR_Staff_RecID = value; return this; } public String getInLogicalRecID() { return IN_Logical_RecID; } public v_JIWA_JobCosting_EstimatesAndActuals setInLogicalRecID(String value) { this.IN_Logical_RecID = value; return this; } public Integer getIsDefault() { return IsDefault; } public v_JIWA_JobCosting_EstimatesAndActuals setIsDefault(Integer value) { this.IsDefault = value; return this; } public Integer getStatus() { return Status; } public v_JIWA_JobCosting_EstimatesAndActuals setStatus(Integer value) { this.Status = value; return this; } public Integer getIsEstimate() { return IsEstimate; } public v_JIWA_JobCosting_EstimatesAndActuals setIsEstimate(Integer value) { this.IsEstimate = value; return this; } } public static class v_Jiwa_Licences { @Required() public String RecID = null; @Required() public String ResourceID = null; @Required() public String ResourceName = null; @Required() public Date IssueDate = null; @Required() public String Scope = null; public String Note = null; @Required() public Date CommenceDate = null; @Required() public Date ExpiryDate = null; @Required() public Integer CALs = null; public Integer Used = null; public Integer Unused = null; @Required() public String Version = null; @Required() public String Signature = null; public String getRecID() { return RecID; } public v_Jiwa_Licences setRecID(String value) { this.RecID = value; return this; } public String getResourceID() { return ResourceID; } public v_Jiwa_Licences setResourceID(String value) { this.ResourceID = value; return this; } public String getResourceName() { return ResourceName; } public v_Jiwa_Licences setResourceName(String value) { this.ResourceName = value; return this; } public Date getIssueDate() { return IssueDate; } public v_Jiwa_Licences setIssueDate(Date value) { this.IssueDate = value; return this; } public String getScope() { return Scope; } public v_Jiwa_Licences setScope(String value) { this.Scope = value; return this; } public String getNote() { return Note; } public v_Jiwa_Licences setNote(String value) { this.Note = value; return this; } public Date getCommenceDate() { return CommenceDate; } public v_Jiwa_Licences setCommenceDate(Date value) { this.CommenceDate = value; return this; } public Date getExpiryDate() { return ExpiryDate; } public v_Jiwa_Licences setExpiryDate(Date value) { this.ExpiryDate = value; return this; } public Integer getCaLs() { return CALs; } public v_Jiwa_Licences setCaLs(Integer value) { this.CALs = value; return this; } public Integer getUsed() { return Used; } public v_Jiwa_Licences setUsed(Integer value) { this.Used = value; return this; } public Integer getUnused() { return Unused; } public v_Jiwa_Licences setUnused(Integer value) { this.Unused = value; return this; } public String getVersion() { return Version; } public v_Jiwa_Licences setVersion(String value) { this.Version = value; return this; } public String getSignature() { return Signature; } public v_Jiwa_Licences setSignature(String value) { this.Signature = value; return this; } } public static class v_JIWA_PurchaseOrders_DeliveryNotes { @Required() public String PurchaseOrderID = null; public String DeliveryNote = null; public String getPurchaseOrderID() { return PurchaseOrderID; } public v_JIWA_PurchaseOrders_DeliveryNotes setPurchaseOrderID(String value) { this.PurchaseOrderID = value; return this; } public String getDeliveryNote() { return DeliveryNote; } public v_JIWA_PurchaseOrders_DeliveryNotes setDeliveryNote(String value) { this.DeliveryNote = value; return this; } } public static class v_JIWA_PurchaseOrders_UOM { @Required() public String OrderLineID = null; public BigDecimal QtyUom = null; public String Name = null; public String getOrderLineID() { return OrderLineID; } public v_JIWA_PurchaseOrders_UOM setOrderLineID(String value) { this.OrderLineID = value; return this; } public BigDecimal getQtyUom() { return QtyUom; } public v_JIWA_PurchaseOrders_UOM setQtyUom(BigDecimal value) { this.QtyUom = value; return this; } public String getName() { return Name; } public v_JIWA_PurchaseOrders_UOM setName(String value) { this.Name = value; return this; } } public static class v_JIWA_QO_LinesKitHeaderTax { @Required() public String InvoiceLineID = null; public BigDecimal KitHeaderTax = null; public BigDecimal KitHeaderTotalIncTax = null; public String getInvoiceLineID() { return InvoiceLineID; } public v_JIWA_QO_LinesKitHeaderTax setInvoiceLineID(String value) { this.InvoiceLineID = value; return this; } public BigDecimal getKitHeaderTax() { return KitHeaderTax; } public v_JIWA_QO_LinesKitHeaderTax setKitHeaderTax(BigDecimal value) { this.KitHeaderTax = value; return this; } public BigDecimal getKitHeaderTotalIncTax() { return KitHeaderTotalIncTax; } public v_JIWA_QO_LinesKitHeaderTax setKitHeaderTotalIncTax(BigDecimal value) { this.KitHeaderTotalIncTax = value; return this; } } public static class v_Jiwa_SalesOrder_List { @Required() public String InvoiceID = null; @Required() public String InvoiceNo = null; public String OrderNo = null; public String SOReference = null; @Required() public Date InvoiceInitDate = null; public Short Status = null; @Required() public Boolean CreditNote = null; @Required() public Date LastSavedDateTime = null; public BigDecimal InvoiceTotal = null; @Required() public String DebtorID = null; @Required() public String AccountNo = null; public String DebtorName = null; @Required() public String IN_LogicalID = null; public String LogicalWarehouseDescription = null; @Required() public String IN_PhysicalID = null; @Required() public String PhysicalWarehouseDescription = null; @Required() public String BranchID = null; @Required() public String BranchDescription = null; public String CashSaleAddress1 = null; public String CashSaleAddress2 = null; public String CashSaleAddress3 = null; public String CashSaleAddress4 = null; public String CashSalePostcode = null; public String CashSaleCompany = null; public String CashSaleName = null; public String CashSalePhone = null; public String DeliveryAddressContactName = null; @Required() public String DeliveryAddressee = null; public String DeliveryAddress1 = null; public String DeliveryAddress2 = null; public String DeliveryAddress3 = null; public String DeliveryAddress4 = null; public String DeliveryAddressPostcode = null; @Required() public String DeliveryAddressCountry = null; @Required() public Boolean Delivered = null; public Date DeliveredDate = null; public String ConsignmentNote = null; public BigDecimal CartageCharge1 = null; public BigDecimal Cartage1TaxAmount = null; public BigDecimal CartageCharge2 = null; public BigDecimal Cartage2TaxAmount = null; public BigDecimal CartageCharge3 = null; public BigDecimal Cartage3TaxAmount = null; public String CourierDetails = null; public String Notes = null; public String EmailAddress = null; @Required() public String StaffID = null; public String StaffTitle = null; public String StaffFirstName = null; public String StaffSurname = null; @Required() public String StaffUsername = null; public String getInvoiceID() { return InvoiceID; } public v_Jiwa_SalesOrder_List setInvoiceID(String value) { this.InvoiceID = value; return this; } public String getInvoiceNo() { return InvoiceNo; } public v_Jiwa_SalesOrder_List setInvoiceNo(String value) { this.InvoiceNo = value; return this; } public String getOrderNo() { return OrderNo; } public v_Jiwa_SalesOrder_List setOrderNo(String value) { this.OrderNo = value; return this; } public String getSoReference() { return SOReference; } public v_Jiwa_SalesOrder_List setSoReference(String value) { this.SOReference = value; return this; } public Date getInvoiceInitDate() { return InvoiceInitDate; } public v_Jiwa_SalesOrder_List setInvoiceInitDate(Date value) { this.InvoiceInitDate = value; return this; } public Short getStatus() { return Status; } public v_Jiwa_SalesOrder_List setStatus(Short value) { this.Status = value; return this; } public Boolean isCreditNote() { return CreditNote; } public v_Jiwa_SalesOrder_List setCreditNote(Boolean value) { this.CreditNote = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public v_Jiwa_SalesOrder_List setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public BigDecimal getInvoiceTotal() { return InvoiceTotal; } public v_Jiwa_SalesOrder_List setInvoiceTotal(BigDecimal value) { this.InvoiceTotal = value; return this; } public String getDebtorID() { return DebtorID; } public v_Jiwa_SalesOrder_List setDebtorID(String value) { this.DebtorID = value; return this; } public String getAccountNo() { return AccountNo; } public v_Jiwa_SalesOrder_List setAccountNo(String value) { this.AccountNo = value; return this; } public String getDebtorName() { return DebtorName; } public v_Jiwa_SalesOrder_List setDebtorName(String value) { this.DebtorName = value; return this; } public String getInLogicalID() { return IN_LogicalID; } public v_Jiwa_SalesOrder_List setInLogicalID(String value) { this.IN_LogicalID = value; return this; } public String getLogicalWarehouseDescription() { return LogicalWarehouseDescription; } public v_Jiwa_SalesOrder_List setLogicalWarehouseDescription(String value) { this.LogicalWarehouseDescription = value; return this; } public String getInPhysicalID() { return IN_PhysicalID; } public v_Jiwa_SalesOrder_List setInPhysicalID(String value) { this.IN_PhysicalID = value; return this; } public String getPhysicalWarehouseDescription() { return PhysicalWarehouseDescription; } public v_Jiwa_SalesOrder_List setPhysicalWarehouseDescription(String value) { this.PhysicalWarehouseDescription = value; return this; } public String getBranchID() { return BranchID; } public v_Jiwa_SalesOrder_List setBranchID(String value) { this.BranchID = value; return this; } public String getBranchDescription() { return BranchDescription; } public v_Jiwa_SalesOrder_List setBranchDescription(String value) { this.BranchDescription = value; return this; } public String getCashSaleAddress1() { return CashSaleAddress1; } public v_Jiwa_SalesOrder_List setCashSaleAddress1(String value) { this.CashSaleAddress1 = value; return this; } public String getCashSaleAddress2() { return CashSaleAddress2; } public v_Jiwa_SalesOrder_List setCashSaleAddress2(String value) { this.CashSaleAddress2 = value; return this; } public String getCashSaleAddress3() { return CashSaleAddress3; } public v_Jiwa_SalesOrder_List setCashSaleAddress3(String value) { this.CashSaleAddress3 = value; return this; } public String getCashSaleAddress4() { return CashSaleAddress4; } public v_Jiwa_SalesOrder_List setCashSaleAddress4(String value) { this.CashSaleAddress4 = value; return this; } public String getCashSalePostcode() { return CashSalePostcode; } public v_Jiwa_SalesOrder_List setCashSalePostcode(String value) { this.CashSalePostcode = value; return this; } public String getCashSaleCompany() { return CashSaleCompany; } public v_Jiwa_SalesOrder_List setCashSaleCompany(String value) { this.CashSaleCompany = value; return this; } public String getCashSaleName() { return CashSaleName; } public v_Jiwa_SalesOrder_List setCashSaleName(String value) { this.CashSaleName = value; return this; } public String getCashSalePhone() { return CashSalePhone; } public v_Jiwa_SalesOrder_List setCashSalePhone(String value) { this.CashSalePhone = value; return this; } public String getDeliveryAddressContactName() { return DeliveryAddressContactName; } public v_Jiwa_SalesOrder_List setDeliveryAddressContactName(String value) { this.DeliveryAddressContactName = value; return this; } public String getDeliveryAddressee() { return DeliveryAddressee; } public v_Jiwa_SalesOrder_List setDeliveryAddressee(String value) { this.DeliveryAddressee = value; return this; } public String getDeliveryAddress1() { return DeliveryAddress1; } public v_Jiwa_SalesOrder_List setDeliveryAddress1(String value) { this.DeliveryAddress1 = value; return this; } public String getDeliveryAddress2() { return DeliveryAddress2; } public v_Jiwa_SalesOrder_List setDeliveryAddress2(String value) { this.DeliveryAddress2 = value; return this; } public String getDeliveryAddress3() { return DeliveryAddress3; } public v_Jiwa_SalesOrder_List setDeliveryAddress3(String value) { this.DeliveryAddress3 = value; return this; } public String getDeliveryAddress4() { return DeliveryAddress4; } public v_Jiwa_SalesOrder_List setDeliveryAddress4(String value) { this.DeliveryAddress4 = value; return this; } public String getDeliveryAddressPostcode() { return DeliveryAddressPostcode; } public v_Jiwa_SalesOrder_List setDeliveryAddressPostcode(String value) { this.DeliveryAddressPostcode = value; return this; } public String getDeliveryAddressCountry() { return DeliveryAddressCountry; } public v_Jiwa_SalesOrder_List setDeliveryAddressCountry(String value) { this.DeliveryAddressCountry = value; return this; } public Boolean isDelivered() { return Delivered; } public v_Jiwa_SalesOrder_List setDelivered(Boolean value) { this.Delivered = value; return this; } public Date getDeliveredDate() { return DeliveredDate; } public v_Jiwa_SalesOrder_List setDeliveredDate(Date value) { this.DeliveredDate = value; return this; } public String getConsignmentNote() { return ConsignmentNote; } public v_Jiwa_SalesOrder_List setConsignmentNote(String value) { this.ConsignmentNote = value; return this; } public BigDecimal getCartageCharge1() { return CartageCharge1; } public v_Jiwa_SalesOrder_List setCartageCharge1(BigDecimal value) { this.CartageCharge1 = value; return this; } public BigDecimal getCartage1TaxAmount() { return Cartage1TaxAmount; } public v_Jiwa_SalesOrder_List setCartage1TaxAmount(BigDecimal value) { this.Cartage1TaxAmount = value; return this; } public BigDecimal getCartageCharge2() { return CartageCharge2; } public v_Jiwa_SalesOrder_List setCartageCharge2(BigDecimal value) { this.CartageCharge2 = value; return this; } public BigDecimal getCartage2TaxAmount() { return Cartage2TaxAmount; } public v_Jiwa_SalesOrder_List setCartage2TaxAmount(BigDecimal value) { this.Cartage2TaxAmount = value; return this; } public BigDecimal getCartageCharge3() { return CartageCharge3; } public v_Jiwa_SalesOrder_List setCartageCharge3(BigDecimal value) { this.CartageCharge3 = value; return this; } public BigDecimal getCartage3TaxAmount() { return Cartage3TaxAmount; } public v_Jiwa_SalesOrder_List setCartage3TaxAmount(BigDecimal value) { this.Cartage3TaxAmount = value; return this; } public String getCourierDetails() { return CourierDetails; } public v_Jiwa_SalesOrder_List setCourierDetails(String value) { this.CourierDetails = value; return this; } public String getNotes() { return Notes; } public v_Jiwa_SalesOrder_List setNotes(String value) { this.Notes = value; return this; } public String getEmailAddress() { return EmailAddress; } public v_Jiwa_SalesOrder_List setEmailAddress(String value) { this.EmailAddress = value; return this; } public String getStaffID() { return StaffID; } public v_Jiwa_SalesOrder_List setStaffID(String value) { this.StaffID = value; return this; } public String getStaffTitle() { return StaffTitle; } public v_Jiwa_SalesOrder_List setStaffTitle(String value) { this.StaffTitle = value; return this; } public String getStaffFirstName() { return StaffFirstName; } public v_Jiwa_SalesOrder_List setStaffFirstName(String value) { this.StaffFirstName = value; return this; } public String getStaffSurname() { return StaffSurname; } public v_Jiwa_SalesOrder_List setStaffSurname(String value) { this.StaffSurname = value; return this; } public String getStaffUsername() { return StaffUsername; } public v_Jiwa_SalesOrder_List setStaffUsername(String value) { this.StaffUsername = value; return this; } } public static class v_Jiwa_SalesQuote_List { @Required() public String InvoiceID = null; @Required() public String InvoiceNo = null; public String OrderNo = null; public String QOReference = null; @Required() public Date InvoiceInitDate = null; public Short Status = null; @Required() public Date LastSavedDateTime = null; public BigDecimal InvoiceTotal = null; @Required() public String DebtorID = null; @Required() public String AccountNo = null; public String DebtorName = null; @Required() public String IN_LogicalID = null; public String LogicalWarehouseDescription = null; @Required() public String IN_PhysicalID = null; @Required() public String PhysicalWarehouseDescription = null; @Required() public String BranchID = null; @Required() public String BranchDescription = null; public String CashSaleAddress1 = null; public String CashSaleAddress2 = null; public String CashSaleAddress3 = null; public String CashSaleAddress4 = null; public String CashSalePostcode = null; public String CashSaleCompany = null; public String CashSaleName = null; public String CashSalePhone = null; public String DeliveryAddressContactName = null; @Required() public String DeliveryAddressee = null; public String DeliveryAddress1 = null; public String DeliveryAddress2 = null; public String DeliveryAddress3 = null; public String DeliveryAddress4 = null; public String DeliveryAddressPostcode = null; @Required() public String DeliveryAddressCountry = null; public BigDecimal CartageCharge1 = null; public BigDecimal Cartage1TaxAmount = null; public BigDecimal CartageCharge2 = null; public BigDecimal Cartage2TaxAmount = null; public BigDecimal CartageCharge3 = null; public BigDecimal Cartage3TaxAmount = null; public String CourierDetails = null; public String Notes = null; @Required() public String StaffID = null; public String StaffTitle = null; public String StaffFirstName = null; public String StaffSurname = null; @Required() public String StaffUsername = null; public String getInvoiceID() { return InvoiceID; } public v_Jiwa_SalesQuote_List setInvoiceID(String value) { this.InvoiceID = value; return this; } public String getInvoiceNo() { return InvoiceNo; } public v_Jiwa_SalesQuote_List setInvoiceNo(String value) { this.InvoiceNo = value; return this; } public String getOrderNo() { return OrderNo; } public v_Jiwa_SalesQuote_List setOrderNo(String value) { this.OrderNo = value; return this; } public String getQoReference() { return QOReference; } public v_Jiwa_SalesQuote_List setQoReference(String value) { this.QOReference = value; return this; } public Date getInvoiceInitDate() { return InvoiceInitDate; } public v_Jiwa_SalesQuote_List setInvoiceInitDate(Date value) { this.InvoiceInitDate = value; return this; } public Short getStatus() { return Status; } public v_Jiwa_SalesQuote_List setStatus(Short value) { this.Status = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public v_Jiwa_SalesQuote_List setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public BigDecimal getInvoiceTotal() { return InvoiceTotal; } public v_Jiwa_SalesQuote_List setInvoiceTotal(BigDecimal value) { this.InvoiceTotal = value; return this; } public String getDebtorID() { return DebtorID; } public v_Jiwa_SalesQuote_List setDebtorID(String value) { this.DebtorID = value; return this; } public String getAccountNo() { return AccountNo; } public v_Jiwa_SalesQuote_List setAccountNo(String value) { this.AccountNo = value; return this; } public String getDebtorName() { return DebtorName; } public v_Jiwa_SalesQuote_List setDebtorName(String value) { this.DebtorName = value; return this; } public String getInLogicalID() { return IN_LogicalID; } public v_Jiwa_SalesQuote_List setInLogicalID(String value) { this.IN_LogicalID = value; return this; } public String getLogicalWarehouseDescription() { return LogicalWarehouseDescription; } public v_Jiwa_SalesQuote_List setLogicalWarehouseDescription(String value) { this.LogicalWarehouseDescription = value; return this; } public String getInPhysicalID() { return IN_PhysicalID; } public v_Jiwa_SalesQuote_List setInPhysicalID(String value) { this.IN_PhysicalID = value; return this; } public String getPhysicalWarehouseDescription() { return PhysicalWarehouseDescription; } public v_Jiwa_SalesQuote_List setPhysicalWarehouseDescription(String value) { this.PhysicalWarehouseDescription = value; return this; } public String getBranchID() { return BranchID; } public v_Jiwa_SalesQuote_List setBranchID(String value) { this.BranchID = value; return this; } public String getBranchDescription() { return BranchDescription; } public v_Jiwa_SalesQuote_List setBranchDescription(String value) { this.BranchDescription = value; return this; } public String getCashSaleAddress1() { return CashSaleAddress1; } public v_Jiwa_SalesQuote_List setCashSaleAddress1(String value) { this.CashSaleAddress1 = value; return this; } public String getCashSaleAddress2() { return CashSaleAddress2; } public v_Jiwa_SalesQuote_List setCashSaleAddress2(String value) { this.CashSaleAddress2 = value; return this; } public String getCashSaleAddress3() { return CashSaleAddress3; } public v_Jiwa_SalesQuote_List setCashSaleAddress3(String value) { this.CashSaleAddress3 = value; return this; } public String getCashSaleAddress4() { return CashSaleAddress4; } public v_Jiwa_SalesQuote_List setCashSaleAddress4(String value) { this.CashSaleAddress4 = value; return this; } public String getCashSalePostcode() { return CashSalePostcode; } public v_Jiwa_SalesQuote_List setCashSalePostcode(String value) { this.CashSalePostcode = value; return this; } public String getCashSaleCompany() { return CashSaleCompany; } public v_Jiwa_SalesQuote_List setCashSaleCompany(String value) { this.CashSaleCompany = value; return this; } public String getCashSaleName() { return CashSaleName; } public v_Jiwa_SalesQuote_List setCashSaleName(String value) { this.CashSaleName = value; return this; } public String getCashSalePhone() { return CashSalePhone; } public v_Jiwa_SalesQuote_List setCashSalePhone(String value) { this.CashSalePhone = value; return this; } public String getDeliveryAddressContactName() { return DeliveryAddressContactName; } public v_Jiwa_SalesQuote_List setDeliveryAddressContactName(String value) { this.DeliveryAddressContactName = value; return this; } public String getDeliveryAddressee() { return DeliveryAddressee; } public v_Jiwa_SalesQuote_List setDeliveryAddressee(String value) { this.DeliveryAddressee = value; return this; } public String getDeliveryAddress1() { return DeliveryAddress1; } public v_Jiwa_SalesQuote_List setDeliveryAddress1(String value) { this.DeliveryAddress1 = value; return this; } public String getDeliveryAddress2() { return DeliveryAddress2; } public v_Jiwa_SalesQuote_List setDeliveryAddress2(String value) { this.DeliveryAddress2 = value; return this; } public String getDeliveryAddress3() { return DeliveryAddress3; } public v_Jiwa_SalesQuote_List setDeliveryAddress3(String value) { this.DeliveryAddress3 = value; return this; } public String getDeliveryAddress4() { return DeliveryAddress4; } public v_Jiwa_SalesQuote_List setDeliveryAddress4(String value) { this.DeliveryAddress4 = value; return this; } public String getDeliveryAddressPostcode() { return DeliveryAddressPostcode; } public v_Jiwa_SalesQuote_List setDeliveryAddressPostcode(String value) { this.DeliveryAddressPostcode = value; return this; } public String getDeliveryAddressCountry() { return DeliveryAddressCountry; } public v_Jiwa_SalesQuote_List setDeliveryAddressCountry(String value) { this.DeliveryAddressCountry = value; return this; } public BigDecimal getCartageCharge1() { return CartageCharge1; } public v_Jiwa_SalesQuote_List setCartageCharge1(BigDecimal value) { this.CartageCharge1 = value; return this; } public BigDecimal getCartage1TaxAmount() { return Cartage1TaxAmount; } public v_Jiwa_SalesQuote_List setCartage1TaxAmount(BigDecimal value) { this.Cartage1TaxAmount = value; return this; } public BigDecimal getCartageCharge2() { return CartageCharge2; } public v_Jiwa_SalesQuote_List setCartageCharge2(BigDecimal value) { this.CartageCharge2 = value; return this; } public BigDecimal getCartage2TaxAmount() { return Cartage2TaxAmount; } public v_Jiwa_SalesQuote_List setCartage2TaxAmount(BigDecimal value) { this.Cartage2TaxAmount = value; return this; } public BigDecimal getCartageCharge3() { return CartageCharge3; } public v_Jiwa_SalesQuote_List setCartageCharge3(BigDecimal value) { this.CartageCharge3 = value; return this; } public BigDecimal getCartage3TaxAmount() { return Cartage3TaxAmount; } public v_Jiwa_SalesQuote_List setCartage3TaxAmount(BigDecimal value) { this.Cartage3TaxAmount = value; return this; } public String getCourierDetails() { return CourierDetails; } public v_Jiwa_SalesQuote_List setCourierDetails(String value) { this.CourierDetails = value; return this; } public String getNotes() { return Notes; } public v_Jiwa_SalesQuote_List setNotes(String value) { this.Notes = value; return this; } public String getStaffID() { return StaffID; } public v_Jiwa_SalesQuote_List setStaffID(String value) { this.StaffID = value; return this; } public String getStaffTitle() { return StaffTitle; } public v_Jiwa_SalesQuote_List setStaffTitle(String value) { this.StaffTitle = value; return this; } public String getStaffFirstName() { return StaffFirstName; } public v_Jiwa_SalesQuote_List setStaffFirstName(String value) { this.StaffFirstName = value; return this; } public String getStaffSurname() { return StaffSurname; } public v_Jiwa_SalesQuote_List setStaffSurname(String value) { this.StaffSurname = value; return this; } public String getStaffUsername() { return StaffUsername; } public v_Jiwa_SalesQuote_List setStaffUsername(String value) { this.StaffUsername = value; return this; } } public static class v_JIWA_SO_LinesKitHeaderTax { @Required() public String InvoiceLineID = null; public BigDecimal KitHeaderTax = null; public BigDecimal KitHeaderTotalIncTax = null; public String getInvoiceLineID() { return InvoiceLineID; } public v_JIWA_SO_LinesKitHeaderTax setInvoiceLineID(String value) { this.InvoiceLineID = value; return this; } public BigDecimal getKitHeaderTax() { return KitHeaderTax; } public v_JIWA_SO_LinesKitHeaderTax setKitHeaderTax(BigDecimal value) { this.KitHeaderTax = value; return this; } public BigDecimal getKitHeaderTotalIncTax() { return KitHeaderTotalIncTax; } public v_JIWA_SO_LinesKitHeaderTax setKitHeaderTotalIncTax(BigDecimal value) { this.KitHeaderTotalIncTax = value; return this; } } public static class v_JobPriorities { @Required() public String RecID = null; public String HighestTaskPriorityRecID = null; public String getRecID() { return RecID; } public v_JobPriorities setRecID(String value) { this.RecID = value; return this; } public String getHighestTaskPriorityRecID() { return HighestTaskPriorityRecID; } public v_JobPriorities setHighestTaskPriorityRecID(String value) { this.HighestTaskPriorityRecID = value; return this; } } public static class v_JobStatuses { @Required() public String RecID = null; @Required() public String SM_Jobs_RecID = null; public String getRecID() { return RecID; } public v_JobStatuses setRecID(String value) { this.RecID = value; return this; } public String getSmJobsRecID() { return SM_Jobs_RecID; } public v_JobStatuses setSmJobsRecID(String value) { this.SM_Jobs_RecID = value; return this; } } public static class v_JobStatusesMinDisplayOrder { @Required() public String SM_Jobs_RecID = null; public Integer ItemNo = null; public String getSmJobsRecID() { return SM_Jobs_RecID; } public v_JobStatusesMinDisplayOrder setSmJobsRecID(String value) { this.SM_Jobs_RecID = value; return this; } public Integer getItemNo() { return ItemNo; } public v_JobStatusesMinDisplayOrder setItemNo(Integer value) { this.ItemNo = value; return this; } } public static class v_JobsWithActiveTask { public String JobID = null; @Required() public String JobNo = null; public String DB_Main_RecID = null; public String AccountNo = null; public String Name = null; public String JobDescription = null; public String CoordinatorName = null; public Date JobDateLogged = null; public String getJobID() { return JobID; } public v_JobsWithActiveTask setJobID(String value) { this.JobID = value; return this; } public String getJobNo() { return JobNo; } public v_JobsWithActiveTask setJobNo(String value) { this.JobNo = value; return this; } public String getDbMainRecID() { return DB_Main_RecID; } public v_JobsWithActiveTask setDbMainRecID(String value) { this.DB_Main_RecID = value; return this; } public String getAccountNo() { return AccountNo; } public v_JobsWithActiveTask setAccountNo(String value) { this.AccountNo = value; return this; } public String getName() { return Name; } public v_JobsWithActiveTask setName(String value) { this.Name = value; return this; } public String getJobDescription() { return JobDescription; } public v_JobsWithActiveTask setJobDescription(String value) { this.JobDescription = value; return this; } public String getCoordinatorName() { return CoordinatorName; } public v_JobsWithActiveTask setCoordinatorName(String value) { this.CoordinatorName = value; return this; } public Date getJobDateLogged() { return JobDateLogged; } public v_JobsWithActiveTask setJobDateLogged(Date value) { this.JobDateLogged = value; return this; } } public static class v_PrepaidLabourPacksHoursInvoiced { @Required() public String SM_PrepaidLabourPacks_RecID = null; public BigDecimal HoursInvoiced = null; public String getSmPrepaidLabourPacksRecID() { return SM_PrepaidLabourPacks_RecID; } public v_PrepaidLabourPacksHoursInvoiced setSmPrepaidLabourPacksRecID(String value) { this.SM_PrepaidLabourPacks_RecID = value; return this; } public BigDecimal getHoursInvoiced() { return HoursInvoiced; } public v_PrepaidLabourPacksHoursInvoiced setHoursInvoiced(BigDecimal value) { this.HoursInvoiced = value; return this; } } public static class v_PrepaidLabourPacksHoursUsed { @Required() public String SM_PrepaidLabourPacks_RecID = null; public BigDecimal HoursUsed = null; public String getSmPrepaidLabourPacksRecID() { return SM_PrepaidLabourPacks_RecID; } public v_PrepaidLabourPacksHoursUsed setSmPrepaidLabourPacksRecID(String value) { this.SM_PrepaidLabourPacks_RecID = value; return this; } public BigDecimal getHoursUsed() { return HoursUsed; } public v_PrepaidLabourPacksHoursUsed setHoursUsed(BigDecimal value) { this.HoursUsed = value; return this; } } public static class v_SalesInformation { @Required() public String InvoiceLineID = null; @Required() public String InvoiceNo = null; public String StaffID = null; @Required() public String IN_LogicalID = null; public String IN_PhysicalID = null; @Required() public String BranchID = null; public String PartNo = null; public String PartDescription = null; public BigDecimal Quantity = null; public BigDecimal LineTotalIncGST = null; public BigDecimal LineTaxTotal = null; public BigDecimal LineTotalExGST = null; public BigDecimal LineCost = null; public BigDecimal LineProfit = null; public String ClassificationDescription = null; public String Category1DescriptionAtTimeOfSale = null; public String Category2DescriptionAtTimeOfSale = null; public String Category3DescriptionAtTimeOfSale = null; @Required() public String DebtorID = null; public String DebtorClassificationID = null; public Date ProcessDate = null; public String InventoryID = null; public String getInvoiceLineID() { return InvoiceLineID; } public v_SalesInformation setInvoiceLineID(String value) { this.InvoiceLineID = value; return this; } public String getInvoiceNo() { return InvoiceNo; } public v_SalesInformation setInvoiceNo(String value) { this.InvoiceNo = value; return this; } public String getStaffID() { return StaffID; } public v_SalesInformation setStaffID(String value) { this.StaffID = value; return this; } public String getInLogicalID() { return IN_LogicalID; } public v_SalesInformation setInLogicalID(String value) { this.IN_LogicalID = value; return this; } public String getInPhysicalID() { return IN_PhysicalID; } public v_SalesInformation setInPhysicalID(String value) { this.IN_PhysicalID = value; return this; } public String getBranchID() { return BranchID; } public v_SalesInformation setBranchID(String value) { this.BranchID = value; return this; } public String getPartNo() { return PartNo; } public v_SalesInformation setPartNo(String value) { this.PartNo = value; return this; } public String getPartDescription() { return PartDescription; } public v_SalesInformation setPartDescription(String value) { this.PartDescription = value; return this; } public BigDecimal getQuantity() { return Quantity; } public v_SalesInformation setQuantity(BigDecimal value) { this.Quantity = value; return this; } public BigDecimal getLineTotalIncGST() { return LineTotalIncGST; } public v_SalesInformation setLineTotalIncGST(BigDecimal value) { this.LineTotalIncGST = value; return this; } public BigDecimal getLineTaxTotal() { return LineTaxTotal; } public v_SalesInformation setLineTaxTotal(BigDecimal value) { this.LineTaxTotal = value; return this; } public BigDecimal getLineTotalExGST() { return LineTotalExGST; } public v_SalesInformation setLineTotalExGST(BigDecimal value) { this.LineTotalExGST = value; return this; } public BigDecimal getLineCost() { return LineCost; } public v_SalesInformation setLineCost(BigDecimal value) { this.LineCost = value; return this; } public BigDecimal getLineProfit() { return LineProfit; } public v_SalesInformation setLineProfit(BigDecimal value) { this.LineProfit = value; return this; } public String getClassificationDescription() { return ClassificationDescription; } public v_SalesInformation setClassificationDescription(String value) { this.ClassificationDescription = value; return this; } public String getCategory1DescriptionAtTimeOfSale() { return Category1DescriptionAtTimeOfSale; } public v_SalesInformation setCategory1DescriptionAtTimeOfSale(String value) { this.Category1DescriptionAtTimeOfSale = value; return this; } public String getCategory2DescriptionAtTimeOfSale() { return Category2DescriptionAtTimeOfSale; } public v_SalesInformation setCategory2DescriptionAtTimeOfSale(String value) { this.Category2DescriptionAtTimeOfSale = value; return this; } public String getCategory3DescriptionAtTimeOfSale() { return Category3DescriptionAtTimeOfSale; } public v_SalesInformation setCategory3DescriptionAtTimeOfSale(String value) { this.Category3DescriptionAtTimeOfSale = value; return this; } public String getDebtorID() { return DebtorID; } public v_SalesInformation setDebtorID(String value) { this.DebtorID = value; return this; } public String getDebtorClassificationID() { return DebtorClassificationID; } public v_SalesInformation setDebtorClassificationID(String value) { this.DebtorClassificationID = value; return this; } public Date getProcessDate() { return ProcessDate; } public v_SalesInformation setProcessDate(Date value) { this.ProcessDate = value; return this; } public String getInventoryID() { return InventoryID; } public v_SalesInformation setInventoryID(String value) { this.InventoryID = value; return this; } } public static class v_SerialNumbersSold { public String inventoryid = null; public String SerialNo = null; public String PartNo = null; public String Description = null; public String getInventoryid() { return inventoryid; } public v_SerialNumbersSold setInventoryid(String value) { this.inventoryid = value; return this; } public String getSerialNo() { return SerialNo; } public v_SerialNumbersSold setSerialNo(String value) { this.SerialNo = value; return this; } public String getPartNo() { return PartNo; } public v_SerialNumbersSold setPartNo(String value) { this.PartNo = value; return this; } public String getDescription() { return Description; } public v_SerialNumbersSold setDescription(String value) { this.Description = value; return this; } } public static class V_SHBookinShipments { @Required() public String ShipmentID = null; public String getShipmentID() { return ShipmentID; } public V_SHBookinShipments setShipmentID(String value) { this.ShipmentID = value; return this; } } public static class V_Shipment { @Required() public String ShipmentID = null; @Required() public String LineID = null; public String OrderNo = null; public String InvoiceNo = null; public String CreditorID = null; public String PartNo = null; public String Description = null; public String SuppPartNo = null; public BigDecimal QtyOrdered = null; public BigDecimal QtyThisShip = null; public BigDecimal LineCost = null; public BigDecimal LandedCost = null; public BigDecimal LandedTotal = null; public String CostType = null; public String CurrencyID = null; public BigDecimal FXrate = null; public BigDecimal FXAmount = null; public BigDecimal HomeAmount = null; public String GSTDesc = null; public BigDecimal GSTAmount = null; public BigDecimal GSTRate = null; public BigDecimal TotalAmount = null; public String ApportionedOnPO = null; public Date DueDate = null; @Required() public Date Date = null; @Required() public String SectionDesc = null; public BigDecimal TotalCost = null; public BigDecimal UnitCostExGST = null; public BigDecimal Duty = null; public BigDecimal Expenses = null; public BigDecimal FXShipUnitCostExGST = null; public String getShipmentID() { return ShipmentID; } public V_Shipment setShipmentID(String value) { this.ShipmentID = value; return this; } public String getLineID() { return LineID; } public V_Shipment setLineID(String value) { this.LineID = value; return this; } public String getOrderNo() { return OrderNo; } public V_Shipment setOrderNo(String value) { this.OrderNo = value; return this; } public String getInvoiceNo() { return InvoiceNo; } public V_Shipment setInvoiceNo(String value) { this.InvoiceNo = value; return this; } public String getCreditorID() { return CreditorID; } public V_Shipment setCreditorID(String value) { this.CreditorID = value; return this; } public String getPartNo() { return PartNo; } public V_Shipment setPartNo(String value) { this.PartNo = value; return this; } public String getDescription() { return Description; } public V_Shipment setDescription(String value) { this.Description = value; return this; } public String getSuppPartNo() { return SuppPartNo; } public V_Shipment setSuppPartNo(String value) { this.SuppPartNo = value; return this; } public BigDecimal getQtyOrdered() { return QtyOrdered; } public V_Shipment setQtyOrdered(BigDecimal value) { this.QtyOrdered = value; return this; } public BigDecimal getQtyThisShip() { return QtyThisShip; } public V_Shipment setQtyThisShip(BigDecimal value) { this.QtyThisShip = value; return this; } public BigDecimal getLineCost() { return LineCost; } public V_Shipment setLineCost(BigDecimal value) { this.LineCost = value; return this; } public BigDecimal getLandedCost() { return LandedCost; } public V_Shipment setLandedCost(BigDecimal value) { this.LandedCost = value; return this; } public BigDecimal getLandedTotal() { return LandedTotal; } public V_Shipment setLandedTotal(BigDecimal value) { this.LandedTotal = value; return this; } public String getCostType() { return CostType; } public V_Shipment setCostType(String value) { this.CostType = value; return this; } public String getCurrencyID() { return CurrencyID; } public V_Shipment setCurrencyID(String value) { this.CurrencyID = value; return this; } public BigDecimal getFXrate() { return FXrate; } public V_Shipment setFXrate(BigDecimal value) { this.FXrate = value; return this; } public BigDecimal getFxAmount() { return FXAmount; } public V_Shipment setFxAmount(BigDecimal value) { this.FXAmount = value; return this; } public BigDecimal getHomeAmount() { return HomeAmount; } public V_Shipment setHomeAmount(BigDecimal value) { this.HomeAmount = value; return this; } public String getGstDesc() { return GSTDesc; } public V_Shipment setGstDesc(String value) { this.GSTDesc = value; return this; } public BigDecimal getGstAmount() { return GSTAmount; } public V_Shipment setGstAmount(BigDecimal value) { this.GSTAmount = value; return this; } public BigDecimal getGstRate() { return GSTRate; } public V_Shipment setGstRate(BigDecimal value) { this.GSTRate = value; return this; } public BigDecimal getTotalAmount() { return TotalAmount; } public V_Shipment setTotalAmount(BigDecimal value) { this.TotalAmount = value; return this; } public String getApportionedOnPO() { return ApportionedOnPO; } public V_Shipment setApportionedOnPO(String value) { this.ApportionedOnPO = value; return this; } public Date getDueDate() { return DueDate; } public V_Shipment setDueDate(Date value) { this.DueDate = value; return this; } public Date getDate() { return Date; } public V_Shipment setDate(Date value) { this.Date = value; return this; } public String getSectionDesc() { return SectionDesc; } public V_Shipment setSectionDesc(String value) { this.SectionDesc = value; return this; } public BigDecimal getTotalCost() { return TotalCost; } public V_Shipment setTotalCost(BigDecimal value) { this.TotalCost = value; return this; } public BigDecimal getUnitCostExGST() { return UnitCostExGST; } public V_Shipment setUnitCostExGST(BigDecimal value) { this.UnitCostExGST = value; return this; } public BigDecimal getDuty() { return Duty; } public V_Shipment setDuty(BigDecimal value) { this.Duty = value; return this; } public BigDecimal getExpenses() { return Expenses; } public V_Shipment setExpenses(BigDecimal value) { this.Expenses = value; return this; } public BigDecimal getFxShipUnitCostExGST() { return FXShipUnitCostExGST; } public V_Shipment setFxShipUnitCostExGST(BigDecimal value) { this.FXShipUnitCostExGST = value; return this; } } public static class V_Shipment_BO { @Required() public String InvoiceNo = null; public Date RecordDate = null; public String OrderNo = null; @Required() public String DebtorID = null; public Short HistoryNo = null; public String PartNo = null; public String Description = null; public BigDecimal QuantityOrdered = null; public BigDecimal QuantityThisDel = null; public BigDecimal QuantityBackord = null; public BigDecimal QuantityPrevDel = null; public BigDecimal ItemPrice = null; public BigDecimal TaxToCharge = null; @Required() public String InvoiceLineID = null; @Required() public String RptType = null; public String getInvoiceNo() { return InvoiceNo; } public V_Shipment_BO setInvoiceNo(String value) { this.InvoiceNo = value; return this; } public Date getRecordDate() { return RecordDate; } public V_Shipment_BO setRecordDate(Date value) { this.RecordDate = value; return this; } public String getOrderNo() { return OrderNo; } public V_Shipment_BO setOrderNo(String value) { this.OrderNo = value; return this; } public String getDebtorID() { return DebtorID; } public V_Shipment_BO setDebtorID(String value) { this.DebtorID = value; return this; } public Short getHistoryNo() { return HistoryNo; } public V_Shipment_BO setHistoryNo(Short value) { this.HistoryNo = value; return this; } public String getPartNo() { return PartNo; } public V_Shipment_BO setPartNo(String value) { this.PartNo = value; return this; } public String getDescription() { return Description; } public V_Shipment_BO setDescription(String value) { this.Description = value; return this; } public BigDecimal getQuantityOrdered() { return QuantityOrdered; } public V_Shipment_BO setQuantityOrdered(BigDecimal value) { this.QuantityOrdered = value; return this; } public BigDecimal getQuantityThisDel() { return QuantityThisDel; } public V_Shipment_BO setQuantityThisDel(BigDecimal value) { this.QuantityThisDel = value; return this; } public BigDecimal getQuantityBackord() { return QuantityBackord; } public V_Shipment_BO setQuantityBackord(BigDecimal value) { this.QuantityBackord = value; return this; } public BigDecimal getQuantityPrevDel() { return QuantityPrevDel; } public V_Shipment_BO setQuantityPrevDel(BigDecimal value) { this.QuantityPrevDel = value; return this; } public BigDecimal getItemPrice() { return ItemPrice; } public V_Shipment_BO setItemPrice(BigDecimal value) { this.ItemPrice = value; return this; } public BigDecimal getTaxToCharge() { return TaxToCharge; } public V_Shipment_BO setTaxToCharge(BigDecimal value) { this.TaxToCharge = value; return this; } public String getInvoiceLineID() { return InvoiceLineID; } public V_Shipment_BO setInvoiceLineID(String value) { this.InvoiceLineID = value; return this; } public String getRptType() { return RptType; } public V_Shipment_BO setRptType(String value) { this.RptType = value; return this; } } public static class V_ShipmentReconciliation { @Required() public String SourceID = null; @Required() public String ShipmentNo = null; public String ImportCostClearingAccountID = null; public String getSourceID() { return SourceID; } public V_ShipmentReconciliation setSourceID(String value) { this.SourceID = value; return this; } public String getShipmentNo() { return ShipmentNo; } public V_ShipmentReconciliation setShipmentNo(String value) { this.ShipmentNo = value; return this; } public String getImportCostClearingAccountID() { return ImportCostClearingAccountID; } public V_ShipmentReconciliation setImportCostClearingAccountID(String value) { this.ImportCostClearingAccountID = value; return this; } } public static class v_Staff { @Required() public String StaffID = null; public String FullName = null; public String getStaffID() { return StaffID; } public v_Staff setStaffID(String value) { this.StaffID = value; return this; } public String getFullName() { return FullName; } public v_Staff setFullName(String value) { this.FullName = value; return this; } } public static class V_STK_LineDetails { @Required() public String StockTakeDetailsID = null; @Required() public String StockTakeLineID = null; public String SerialNumber = null; public String LinkID = null; public BigDecimal QtyFound = null; public BigDecimal Qty = null; @Required() public Integer Inc_Dec = null; public BigDecimal Cost = null; public Date ExpiryDate = null; public String BinLocation = null; public String getStockTakeDetailsID() { return StockTakeDetailsID; } public V_STK_LineDetails setStockTakeDetailsID(String value) { this.StockTakeDetailsID = value; return this; } public String getStockTakeLineID() { return StockTakeLineID; } public V_STK_LineDetails setStockTakeLineID(String value) { this.StockTakeLineID = value; return this; } public String getSerialNumber() { return SerialNumber; } public V_STK_LineDetails setSerialNumber(String value) { this.SerialNumber = value; return this; } public String getLinkID() { return LinkID; } public V_STK_LineDetails setLinkID(String value) { this.LinkID = value; return this; } public BigDecimal getQtyFound() { return QtyFound; } public V_STK_LineDetails setQtyFound(BigDecimal value) { this.QtyFound = value; return this; } public BigDecimal getQty() { return Qty; } public V_STK_LineDetails setQty(BigDecimal value) { this.Qty = value; return this; } public Integer getIncDec() { return Inc_Dec; } public V_STK_LineDetails setIncDec(Integer value) { this.Inc_Dec = value; return this; } public BigDecimal getCost() { return Cost; } public V_STK_LineDetails setCost(BigDecimal value) { this.Cost = value; return this; } public Date getExpiryDate() { return ExpiryDate; } public V_STK_LineDetails setExpiryDate(Date value) { this.ExpiryDate = value; return this; } public String getBinLocation() { return BinLocation; } public V_STK_LineDetails setBinLocation(String value) { this.BinLocation = value; return this; } } public static class v_SupportPackHoursRemaining { @Required() public String DB_Main_RecID = null; public BigDecimal HoursRemining = null; public String getDbMainRecID() { return DB_Main_RecID; } public v_SupportPackHoursRemaining setDbMainRecID(String value) { this.DB_Main_RecID = value; return this; } public BigDecimal getHoursRemining() { return HoursRemining; } public v_SupportPackHoursRemaining setHoursRemining(BigDecimal value) { this.HoursRemining = value; return this; } } public static class v_SupportPackNormalHoursRemainingByDebtor { @Required() public String DebtorID = null; public BigDecimal NormalHoursRemaining = null; public String getDebtorID() { return DebtorID; } public v_SupportPackNormalHoursRemainingByDebtor setDebtorID(String value) { this.DebtorID = value; return this; } public BigDecimal getNormalHoursRemaining() { return NormalHoursRemaining; } public v_SupportPackNormalHoursRemainingByDebtor setNormalHoursRemaining(BigDecimal value) { this.NormalHoursRemaining = value; return this; } } public static class v_SupportPackNormalHoursTotalByDebtor { @Required() public String DebtorID = null; public BigDecimal NormalHoursTotal = null; public String getDebtorID() { return DebtorID; } public v_SupportPackNormalHoursTotalByDebtor setDebtorID(String value) { this.DebtorID = value; return this; } public BigDecimal getNormalHoursTotal() { return NormalHoursTotal; } public v_SupportPackNormalHoursTotalByDebtor setNormalHoursTotal(BigDecimal value) { this.NormalHoursTotal = value; return this; } } public static class v_SupportPackSpecialHoursRemainingByDebtor { @Required() public String DebtorID = null; public BigDecimal SpecialHoursRemaining = null; public String getDebtorID() { return DebtorID; } public v_SupportPackSpecialHoursRemainingByDebtor setDebtorID(String value) { this.DebtorID = value; return this; } public BigDecimal getSpecialHoursRemaining() { return SpecialHoursRemaining; } public v_SupportPackSpecialHoursRemainingByDebtor setSpecialHoursRemaining(BigDecimal value) { this.SpecialHoursRemaining = value; return this; } } public static class v_SupportPackSpecialHoursTotalByDebtor { @Required() public String DebtorID = null; public BigDecimal SpecialHoursTotal = null; public String getDebtorID() { return DebtorID; } public v_SupportPackSpecialHoursTotalByDebtor setDebtorID(String value) { this.DebtorID = value; return this; } public BigDecimal getSpecialHoursTotal() { return SpecialHoursTotal; } public v_SupportPackSpecialHoursTotalByDebtor setSpecialHoursTotal(BigDecimal value) { this.SpecialHoursTotal = value; return this; } } public static class v_TaskPriorities { @Required() public String SM_Jobs_RecID = null; @Required() public String SM_Tasks_RecID = null; public String SM_Priorities_RecID = null; public BigDecimal ResponseTime = null; public String getSmJobsRecID() { return SM_Jobs_RecID; } public v_TaskPriorities setSmJobsRecID(String value) { this.SM_Jobs_RecID = value; return this; } public String getSmTasksRecID() { return SM_Tasks_RecID; } public v_TaskPriorities setSmTasksRecID(String value) { this.SM_Tasks_RecID = value; return this; } public String getSmPrioritiesRecID() { return SM_Priorities_RecID; } public v_TaskPriorities setSmPrioritiesRecID(String value) { this.SM_Priorities_RecID = value; return this; } public BigDecimal getResponseTime() { return ResponseTime; } public v_TaskPriorities setResponseTime(BigDecimal value) { this.ResponseTime = value; return this; } } public static class v_TaskStatuses { @Required() public String SM_Jobs_RecID = null; @Required() public String SM_Tasks_RecID = null; public String SM_Statuses_RecID = null; public Integer ItemNo = null; public String getSmJobsRecID() { return SM_Jobs_RecID; } public v_TaskStatuses setSmJobsRecID(String value) { this.SM_Jobs_RecID = value; return this; } public String getSmTasksRecID() { return SM_Tasks_RecID; } public v_TaskStatuses setSmTasksRecID(String value) { this.SM_Tasks_RecID = value; return this; } public String getSmStatusesRecID() { return SM_Statuses_RecID; } public v_TaskStatuses setSmStatusesRecID(String value) { this.SM_Statuses_RecID = value; return this; } public Integer getItemNo() { return ItemNo; } public v_TaskStatuses setItemNo(Integer value) { this.ItemNo = value; return this; } } public static class VLogicalWH { public String LogicalWH = null; public String getLogicalWH() { return LogicalWH; } public VLogicalWH setLogicalWH(String value) { this.LogicalWH = value; return this; } } public static class VPhysicalWH { @Required() public String PhysicalWH = null; public String getPhysicalWH() { return PhysicalWH; } public VPhysicalWH setPhysicalWH(String value) { this.PhysicalWH = value; return this; } } public static class WH_Transfer { @Required() public String WH_TransferID = null; @Required() public Date LastSavedDateTime = null; @Required() public Date TransferDate = null; @Required() public Date ActivateDate = null; public Short Status = null; @References(HR_Staff.class) @Required() public String TransferBy = null; public String Ref = null; public String Notes = null; public Short SourceType = null; public String SourceID = null; @References(IN_Logical.class) @Required() public String SrcIN_LogicalID = null; @References(IN_Logical.class) @Required() public String DstIN_LogicalID = null; @Required() public String TransferNo = null; @Required() public Boolean InTransit = null; public String TransitNotes = null; @References(IN_Logical.class) public String IN_TransitID = null; @Required() public BigDecimal AddedCost1 = null; @Required() public BigDecimal AddedCost2 = null; @Required() public BigDecimal AddedCost3 = null; @References(HR_Staff.class) public String PickedBy = null; @References(HR_Staff.class) public String ReceivedBy = null; @Required() public Short Type = null; @Required() public String AddCostMethod = null; public String getWhTransferID() { return WH_TransferID; } public WH_Transfer setWhTransferID(String value) { this.WH_TransferID = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public WH_Transfer setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getTransferDate() { return TransferDate; } public WH_Transfer setTransferDate(Date value) { this.TransferDate = value; return this; } public Date getActivateDate() { return ActivateDate; } public WH_Transfer setActivateDate(Date value) { this.ActivateDate = value; return this; } public Short getStatus() { return Status; } public WH_Transfer setStatus(Short value) { this.Status = value; return this; } public String getTransferBy() { return TransferBy; } public WH_Transfer setTransferBy(String value) { this.TransferBy = value; return this; } public String getRef() { return Ref; } public WH_Transfer setRef(String value) { this.Ref = value; return this; } public String getNotes() { return Notes; } public WH_Transfer setNotes(String value) { this.Notes = value; return this; } public Short getSourceType() { return SourceType; } public WH_Transfer setSourceType(Short value) { this.SourceType = value; return this; } public String getSourceID() { return SourceID; } public WH_Transfer setSourceID(String value) { this.SourceID = value; return this; } public String getSrcINLogicalID() { return SrcIN_LogicalID; } public WH_Transfer setSrcINLogicalID(String value) { this.SrcIN_LogicalID = value; return this; } public String getDstINLogicalID() { return DstIN_LogicalID; } public WH_Transfer setDstINLogicalID(String value) { this.DstIN_LogicalID = value; return this; } public String getTransferNo() { return TransferNo; } public WH_Transfer setTransferNo(String value) { this.TransferNo = value; return this; } public Boolean isInTransit() { return InTransit; } public WH_Transfer setInTransit(Boolean value) { this.InTransit = value; return this; } public String getTransitNotes() { return TransitNotes; } public WH_Transfer setTransitNotes(String value) { this.TransitNotes = value; return this; } public String getInTransitID() { return IN_TransitID; } public WH_Transfer setInTransitID(String value) { this.IN_TransitID = value; return this; } public BigDecimal getAddedCost1() { return AddedCost1; } public WH_Transfer setAddedCost1(BigDecimal value) { this.AddedCost1 = value; return this; } public BigDecimal getAddedCost2() { return AddedCost2; } public WH_Transfer setAddedCost2(BigDecimal value) { this.AddedCost2 = value; return this; } public BigDecimal getAddedCost3() { return AddedCost3; } public WH_Transfer setAddedCost3(BigDecimal value) { this.AddedCost3 = value; return this; } public String getPickedBy() { return PickedBy; } public WH_Transfer setPickedBy(String value) { this.PickedBy = value; return this; } public String getReceivedBy() { return ReceivedBy; } public WH_Transfer setReceivedBy(String value) { this.ReceivedBy = value; return this; } public Short getType() { return Type; } public WH_Transfer setType(Short value) { this.Type = value; return this; } public String getAddCostMethod() { return AddCostMethod; } public WH_Transfer setAddCostMethod(String value) { this.AddCostMethod = value; return this; } } public static class WH_TransferLineDetails { @Required() public String WH_TransferLineDetailsID = null; @Required() public String WH_TransferLineID = null; @Required() public String InventoryID = null; public BigDecimal Quantity = null; public BigDecimal Cost = null; public String SerialNo = null; @Required() public String IN_SOHID = null; public String Source_IN_SOHID = null; @Required() public String InTransit_IN_SOHID = null; @Required() public BigDecimal CostReceived = null; @Required() public BigDecimal QuantityReceived = null; @Required() public String SerialNoInwards = null; @Required() public String BinLocation = null; @Required() public String BinLocationInwards = null; public Date ExpiryDate = null; public Date ExpiryDateInwards = null; public Date DateIn = null; @Required() public BigDecimal SpecialPrice = null; @Required() public BigDecimal AddedCost = null; public String getWhTransferLineDetailsID() { return WH_TransferLineDetailsID; } public WH_TransferLineDetails setWhTransferLineDetailsID(String value) { this.WH_TransferLineDetailsID = value; return this; } public String getWhTransferLineID() { return WH_TransferLineID; } public WH_TransferLineDetails setWhTransferLineID(String value) { this.WH_TransferLineID = value; return this; } public String getInventoryID() { return InventoryID; } public WH_TransferLineDetails setInventoryID(String value) { this.InventoryID = value; return this; } public BigDecimal getQuantity() { return Quantity; } public WH_TransferLineDetails setQuantity(BigDecimal value) { this.Quantity = value; return this; } public BigDecimal getCost() { return Cost; } public WH_TransferLineDetails setCost(BigDecimal value) { this.Cost = value; return this; } public String getSerialNo() { return SerialNo; } public WH_TransferLineDetails setSerialNo(String value) { this.SerialNo = value; return this; } public String getInSohid() { return IN_SOHID; } public WH_TransferLineDetails setInSohid(String value) { this.IN_SOHID = value; return this; } public String getSourceInSohid() { return Source_IN_SOHID; } public WH_TransferLineDetails setSourceInSohid(String value) { this.Source_IN_SOHID = value; return this; } public String getInTransitInSohid() { return InTransit_IN_SOHID; } public WH_TransferLineDetails setInTransitInSohid(String value) { this.InTransit_IN_SOHID = value; return this; } public BigDecimal getCostReceived() { return CostReceived; } public WH_TransferLineDetails setCostReceived(BigDecimal value) { this.CostReceived = value; return this; } public BigDecimal getQuantityReceived() { return QuantityReceived; } public WH_TransferLineDetails setQuantityReceived(BigDecimal value) { this.QuantityReceived = value; return this; } public String getSerialNoInwards() { return SerialNoInwards; } public WH_TransferLineDetails setSerialNoInwards(String value) { this.SerialNoInwards = value; return this; } public String getBinLocation() { return BinLocation; } public WH_TransferLineDetails setBinLocation(String value) { this.BinLocation = value; return this; } public String getBinLocationInwards() { return BinLocationInwards; } public WH_TransferLineDetails setBinLocationInwards(String value) { this.BinLocationInwards = value; return this; } public Date getExpiryDate() { return ExpiryDate; } public WH_TransferLineDetails setExpiryDate(Date value) { this.ExpiryDate = value; return this; } public Date getExpiryDateInwards() { return ExpiryDateInwards; } public WH_TransferLineDetails setExpiryDateInwards(Date value) { this.ExpiryDateInwards = value; return this; } public Date getDateIn() { return DateIn; } public WH_TransferLineDetails setDateIn(Date value) { this.DateIn = value; return this; } public BigDecimal getSpecialPrice() { return SpecialPrice; } public WH_TransferLineDetails setSpecialPrice(BigDecimal value) { this.SpecialPrice = value; return this; } public BigDecimal getAddedCost() { return AddedCost; } public WH_TransferLineDetails setAddedCost(BigDecimal value) { this.AddedCost = value; return this; } } public static class WH_TransferLines { @Required() public String WH_TransferLineID = null; @Required() public String WH_TransferID = null; @Required() public String InventoryID = null; public String PartNo = null; public String Description = null; public BigDecimal QtyWanted = null; public BigDecimal QtyTrans = null; public BigDecimal Cost = null; public String Ref = null; @Required() public Short LineNum = null; public String BackOrderID = null; public String PurchaseOrderID = null; public String PurchaseOrderLineID = null; public String DestinationBinLoc = null; @Required() public BigDecimal QtyReceived = null; @Required() public String LinkID = null; @Required() public String AddCostLedgerID1 = null; @Required() public String AddCostLedgerID2 = null; @Required() public String AddCostLedgerID3 = null; @Required() public BigDecimal Weight = null; @Required() public BigDecimal Cubic = null; @Required() public BigDecimal QtyBackOrdered = null; @Required() public Date LastSavedDateTime = null; public String getWhTransferLineID() { return WH_TransferLineID; } public WH_TransferLines setWhTransferLineID(String value) { this.WH_TransferLineID = value; return this; } public String getWhTransferID() { return WH_TransferID; } public WH_TransferLines setWhTransferID(String value) { this.WH_TransferID = value; return this; } public String getInventoryID() { return InventoryID; } public WH_TransferLines setInventoryID(String value) { this.InventoryID = value; return this; } public String getPartNo() { return PartNo; } public WH_TransferLines setPartNo(String value) { this.PartNo = value; return this; } public String getDescription() { return Description; } public WH_TransferLines setDescription(String value) { this.Description = value; return this; } public BigDecimal getQtyWanted() { return QtyWanted; } public WH_TransferLines setQtyWanted(BigDecimal value) { this.QtyWanted = value; return this; } public BigDecimal getQtyTrans() { return QtyTrans; } public WH_TransferLines setQtyTrans(BigDecimal value) { this.QtyTrans = value; return this; } public BigDecimal getCost() { return Cost; } public WH_TransferLines setCost(BigDecimal value) { this.Cost = value; return this; } public String getRef() { return Ref; } public WH_TransferLines setRef(String value) { this.Ref = value; return this; } public Short getLineNum() { return LineNum; } public WH_TransferLines setLineNum(Short value) { this.LineNum = value; return this; } public String getBackOrderID() { return BackOrderID; } public WH_TransferLines setBackOrderID(String value) { this.BackOrderID = value; return this; } public String getPurchaseOrderID() { return PurchaseOrderID; } public WH_TransferLines setPurchaseOrderID(String value) { this.PurchaseOrderID = value; return this; } public String getPurchaseOrderLineID() { return PurchaseOrderLineID; } public WH_TransferLines setPurchaseOrderLineID(String value) { this.PurchaseOrderLineID = value; return this; } public String getDestinationBinLoc() { return DestinationBinLoc; } public WH_TransferLines setDestinationBinLoc(String value) { this.DestinationBinLoc = value; return this; } public BigDecimal getQtyReceived() { return QtyReceived; } public WH_TransferLines setQtyReceived(BigDecimal value) { this.QtyReceived = value; return this; } public String getLinkID() { return LinkID; } public WH_TransferLines setLinkID(String value) { this.LinkID = value; return this; } public String getAddCostLedgerID1() { return AddCostLedgerID1; } public WH_TransferLines setAddCostLedgerID1(String value) { this.AddCostLedgerID1 = value; return this; } public String getAddCostLedgerID2() { return AddCostLedgerID2; } public WH_TransferLines setAddCostLedgerID2(String value) { this.AddCostLedgerID2 = value; return this; } public String getAddCostLedgerID3() { return AddCostLedgerID3; } public WH_TransferLines setAddCostLedgerID3(String value) { this.AddCostLedgerID3 = value; return this; } public BigDecimal getWeight() { return Weight; } public WH_TransferLines setWeight(BigDecimal value) { this.Weight = value; return this; } public BigDecimal getCubic() { return Cubic; } public WH_TransferLines setCubic(BigDecimal value) { this.Cubic = value; return this; } public BigDecimal getQtyBackOrdered() { return QtyBackOrdered; } public WH_TransferLines setQtyBackOrdered(BigDecimal value) { this.QtyBackOrdered = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public WH_TransferLines setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } } public static class sh_SalesOrderLine { public String InvoiceID = null; public String InvoiceLineID = null; public String InvoiceHistoryID = null; public Short LineNum = null; public Boolean CommentLine = null; public String PartNo = null; public String Description = null; public Short PhysicalItem = null; public BigDecimal UnitCost = null; public BigDecimal UnitExGST = null; public BigDecimal TotalTax = null; public BigDecimal TotalIncGST = null; public BigDecimal QuantityOrdered = null; public BigDecimal QuantityPrevDel = null; public BigDecimal QuantityThisDel = null; public BigDecimal QuantityBackOrd = null; public String HistoryText_Comment = null; public Boolean NonStock = null; public String InventoryID = null; public Boolean UseSerialNo = null; public BigDecimal UnitTax = null; public Integer BOMObject = null; public Short KitStyle = null; public BigDecimal LineCost = null; public String OrigInvoiceNo = null; public BigDecimal UnitIncGST = null; public BigDecimal TotalExGST = null; public BigDecimal DemandQuantity = null; public BigDecimal QuantityPrevDemand = null; public BigDecimal UserDefinedFloat1 = null; public Date ETAToSHEffective = null; public Date ETAToSHOverride = null; public Date ETAToSupplier = null; public Integer ETAToSupplierOffsetInDays = null; public String PurchaseOrderId = null; public String getInvoiceID() { return InvoiceID; } public sh_SalesOrderLine setInvoiceID(String value) { this.InvoiceID = value; return this; } public String getInvoiceLineID() { return InvoiceLineID; } public sh_SalesOrderLine setInvoiceLineID(String value) { this.InvoiceLineID = value; return this; } public String getInvoiceHistoryID() { return InvoiceHistoryID; } public sh_SalesOrderLine setInvoiceHistoryID(String value) { this.InvoiceHistoryID = value; return this; } public Short getLineNum() { return LineNum; } public sh_SalesOrderLine setLineNum(Short value) { this.LineNum = value; return this; } public Boolean isCommentLine() { return CommentLine; } public sh_SalesOrderLine setCommentLine(Boolean value) { this.CommentLine = value; return this; } public String getPartNo() { return PartNo; } public sh_SalesOrderLine setPartNo(String value) { this.PartNo = value; return this; } public String getDescription() { return Description; } public sh_SalesOrderLine setDescription(String value) { this.Description = value; return this; } public Short getPhysicalItem() { return PhysicalItem; } public sh_SalesOrderLine setPhysicalItem(Short value) { this.PhysicalItem = value; return this; } public BigDecimal getUnitCost() { return UnitCost; } public sh_SalesOrderLine setUnitCost(BigDecimal value) { this.UnitCost = value; return this; } public BigDecimal getUnitExGST() { return UnitExGST; } public sh_SalesOrderLine setUnitExGST(BigDecimal value) { this.UnitExGST = value; return this; } public BigDecimal getTotalTax() { return TotalTax; } public sh_SalesOrderLine setTotalTax(BigDecimal value) { this.TotalTax = value; return this; } public BigDecimal getTotalIncGST() { return TotalIncGST; } public sh_SalesOrderLine setTotalIncGST(BigDecimal value) { this.TotalIncGST = value; return this; } public BigDecimal getQuantityOrdered() { return QuantityOrdered; } public sh_SalesOrderLine setQuantityOrdered(BigDecimal value) { this.QuantityOrdered = value; return this; } public BigDecimal getQuantityPrevDel() { return QuantityPrevDel; } public sh_SalesOrderLine setQuantityPrevDel(BigDecimal value) { this.QuantityPrevDel = value; return this; } public BigDecimal getQuantityThisDel() { return QuantityThisDel; } public sh_SalesOrderLine setQuantityThisDel(BigDecimal value) { this.QuantityThisDel = value; return this; } public BigDecimal getQuantityBackOrd() { return QuantityBackOrd; } public sh_SalesOrderLine setQuantityBackOrd(BigDecimal value) { this.QuantityBackOrd = value; return this; } public String getHistoryTextComment() { return HistoryText_Comment; } public sh_SalesOrderLine setHistoryTextComment(String value) { this.HistoryText_Comment = value; return this; } public Boolean isNonStock() { return NonStock; } public sh_SalesOrderLine setNonStock(Boolean value) { this.NonStock = value; return this; } public String getInventoryID() { return InventoryID; } public sh_SalesOrderLine setInventoryID(String value) { this.InventoryID = value; return this; } public Boolean isUseSerialNo() { return UseSerialNo; } public sh_SalesOrderLine setUseSerialNo(Boolean value) { this.UseSerialNo = value; return this; } public BigDecimal getUnitTax() { return UnitTax; } public sh_SalesOrderLine setUnitTax(BigDecimal value) { this.UnitTax = value; return this; } public Integer getBomObject() { return BOMObject; } public sh_SalesOrderLine setBomObject(Integer value) { this.BOMObject = value; return this; } public Short getKitStyle() { return KitStyle; } public sh_SalesOrderLine setKitStyle(Short value) { this.KitStyle = value; return this; } public BigDecimal getLineCost() { return LineCost; } public sh_SalesOrderLine setLineCost(BigDecimal value) { this.LineCost = value; return this; } public String getOrigInvoiceNo() { return OrigInvoiceNo; } public sh_SalesOrderLine setOrigInvoiceNo(String value) { this.OrigInvoiceNo = value; return this; } public BigDecimal getUnitIncGST() { return UnitIncGST; } public sh_SalesOrderLine setUnitIncGST(BigDecimal value) { this.UnitIncGST = value; return this; } public BigDecimal getTotalExGST() { return TotalExGST; } public sh_SalesOrderLine setTotalExGST(BigDecimal value) { this.TotalExGST = value; return this; } public BigDecimal getDemandQuantity() { return DemandQuantity; } public sh_SalesOrderLine setDemandQuantity(BigDecimal value) { this.DemandQuantity = value; return this; } public BigDecimal getQuantityPrevDemand() { return QuantityPrevDemand; } public sh_SalesOrderLine setQuantityPrevDemand(BigDecimal value) { this.QuantityPrevDemand = value; return this; } public BigDecimal getUserDefinedFloat1() { return UserDefinedFloat1; } public sh_SalesOrderLine setUserDefinedFloat1(BigDecimal value) { this.UserDefinedFloat1 = value; return this; } public Date getEtaToSHEffective() { return ETAToSHEffective; } public sh_SalesOrderLine setEtaToSHEffective(Date value) { this.ETAToSHEffective = value; return this; } public Date getEtaToSHOverride() { return ETAToSHOverride; } public sh_SalesOrderLine setEtaToSHOverride(Date value) { this.ETAToSHOverride = value; return this; } public Date getEtaToSupplier() { return ETAToSupplier; } public sh_SalesOrderLine setEtaToSupplier(Date value) { this.ETAToSupplier = value; return this; } public Integer getEtaToSupplierOffsetInDays() { return ETAToSupplierOffsetInDays; } public sh_SalesOrderLine setEtaToSupplierOffsetInDays(Integer value) { this.ETAToSupplierOffsetInDays = value; return this; } public String getPurchaseOrderId() { return PurchaseOrderId; } public sh_SalesOrderLine setPurchaseOrderId(String value) { this.PurchaseOrderId = value; return this; } } public static class sh_SalesOrder { public String InvoiceID = null; public Date LastSavedDateTime = null; public String DebtorID = null; public String StaffID = null; public String InvoiceNo = null; public Date InvoiceInitDate = null; public Date InvoiceLastDate = null; public String OrderNo = null; public String TaxExemptNo = null; public BigDecimal InvoiceTotal = null; public Short CurrentHistoryNo = null; public Integer Status = null; public Short BillWhenComplete = null; public Boolean CreditNote = null; public Short InvoiceType = null; public String GroupSupplierID = null; public String IN_LogicalID = null; public String BranchID = null; public String SOReference = null; public String ParentDebtorID = null; public Short BackOrderMode = null; public Integer DocType = null; public Boolean GSTInvoice = null; public Date ExpectedDeliveryDate = null; public String SourceQuoteID = null; public String PriceSchemeID = null; public String LastModifiedBy = null; public String InvoiceHistoryID = null; public Date RecordDate = null; public String Ref = null; public Short HistoryNo = null; public BigDecimal HistoryTotal = null; public String DelAddress1 = null; public String DelAddress2 = null; public String DelAddress3 = null; public String DelAddress4 = null; public String HistoryPostCode = null; public String Notes = null; public String CourierDetails = null; public String PaymentTypeID = null; public String PaymentRef = null; public BigDecimal AmountPaid = null; public String RunNo = null; public String DelContactName = null; public Boolean Delivered = null; public Date DeliveredDate = null; public String FreightForwardAddress1 = null; public String FreightForwardAddress2 = null; public String FreightForwardAddress3 = null; public String FreightForwardAddress4 = null; public String FreightForwardNotes = null; public Short HistoryStatus = null; public String EmailAddress = null; public String ConsignmentNote = null; public Date DateCreated = null; public Date DateLastSaved = null; public Date DatePosted = null; public Date DateProcessed = null; public Boolean DropShipment = null; public String DeliveryAddressee = null; public String DeliveryAddressCountry = null; public String FreightForwardAddressCountry = null; public String OrderedByID = null; public String DeliveryContactID = null; public String CostCenter = null; public Boolean ExpressedInterestInInsurance = null; public String PrimaryOrderID = null; public String InsuranceOrderID = null; public Boolean HasWarrantyUplift = null; public Boolean HasLicensing = null; public Integer WarrantyUpliftDocumentCount = null; public Integer LicenseDocumentCount = null; public String Source = null; public Date DispatchedOn = null; public String getInvoiceID() { return InvoiceID; } public sh_SalesOrder setInvoiceID(String value) { this.InvoiceID = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public sh_SalesOrder setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public String getDebtorID() { return DebtorID; } public sh_SalesOrder setDebtorID(String value) { this.DebtorID = value; return this; } public String getStaffID() { return StaffID; } public sh_SalesOrder setStaffID(String value) { this.StaffID = value; return this; } public String getInvoiceNo() { return InvoiceNo; } public sh_SalesOrder setInvoiceNo(String value) { this.InvoiceNo = value; return this; } public Date getInvoiceInitDate() { return InvoiceInitDate; } public sh_SalesOrder setInvoiceInitDate(Date value) { this.InvoiceInitDate = value; return this; } public Date getInvoiceLastDate() { return InvoiceLastDate; } public sh_SalesOrder setInvoiceLastDate(Date value) { this.InvoiceLastDate = value; return this; } public String getOrderNo() { return OrderNo; } public sh_SalesOrder setOrderNo(String value) { this.OrderNo = value; return this; } public String getTaxExemptNo() { return TaxExemptNo; } public sh_SalesOrder setTaxExemptNo(String value) { this.TaxExemptNo = value; return this; } public BigDecimal getInvoiceTotal() { return InvoiceTotal; } public sh_SalesOrder setInvoiceTotal(BigDecimal value) { this.InvoiceTotal = value; return this; } public Short getCurrentHistoryNo() { return CurrentHistoryNo; } public sh_SalesOrder setCurrentHistoryNo(Short value) { this.CurrentHistoryNo = value; return this; } public Integer getStatus() { return Status; } public sh_SalesOrder setStatus(Integer value) { this.Status = value; return this; } public Short getBillWhenComplete() { return BillWhenComplete; } public sh_SalesOrder setBillWhenComplete(Short value) { this.BillWhenComplete = value; return this; } public Boolean isCreditNote() { return CreditNote; } public sh_SalesOrder setCreditNote(Boolean value) { this.CreditNote = value; return this; } public Short getInvoiceType() { return InvoiceType; } public sh_SalesOrder setInvoiceType(Short value) { this.InvoiceType = value; return this; } public String getGroupSupplierID() { return GroupSupplierID; } public sh_SalesOrder setGroupSupplierID(String value) { this.GroupSupplierID = value; return this; } public String getInLogicalID() { return IN_LogicalID; } public sh_SalesOrder setInLogicalID(String value) { this.IN_LogicalID = value; return this; } public String getBranchID() { return BranchID; } public sh_SalesOrder setBranchID(String value) { this.BranchID = value; return this; } public String getSoReference() { return SOReference; } public sh_SalesOrder setSoReference(String value) { this.SOReference = value; return this; } public String getParentDebtorID() { return ParentDebtorID; } public sh_SalesOrder setParentDebtorID(String value) { this.ParentDebtorID = value; return this; } public Short getBackOrderMode() { return BackOrderMode; } public sh_SalesOrder setBackOrderMode(Short value) { this.BackOrderMode = value; return this; } public Integer getDocType() { return DocType; } public sh_SalesOrder setDocType(Integer value) { this.DocType = value; return this; } public Boolean isGstInvoice() { return GSTInvoice; } public sh_SalesOrder setGstInvoice(Boolean value) { this.GSTInvoice = value; return this; } public Date getExpectedDeliveryDate() { return ExpectedDeliveryDate; } public sh_SalesOrder setExpectedDeliveryDate(Date value) { this.ExpectedDeliveryDate = value; return this; } public String getSourceQuoteID() { return SourceQuoteID; } public sh_SalesOrder setSourceQuoteID(String value) { this.SourceQuoteID = value; return this; } public String getPriceSchemeID() { return PriceSchemeID; } public sh_SalesOrder setPriceSchemeID(String value) { this.PriceSchemeID = value; return this; } public String getLastModifiedBy() { return LastModifiedBy; } public sh_SalesOrder setLastModifiedBy(String value) { this.LastModifiedBy = value; return this; } public String getInvoiceHistoryID() { return InvoiceHistoryID; } public sh_SalesOrder setInvoiceHistoryID(String value) { this.InvoiceHistoryID = value; return this; } public Date getRecordDate() { return RecordDate; } public sh_SalesOrder setRecordDate(Date value) { this.RecordDate = value; return this; } public String getRef() { return Ref; } public sh_SalesOrder setRef(String value) { this.Ref = value; return this; } public Short getHistoryNo() { return HistoryNo; } public sh_SalesOrder setHistoryNo(Short value) { this.HistoryNo = value; return this; } public BigDecimal getHistoryTotal() { return HistoryTotal; } public sh_SalesOrder setHistoryTotal(BigDecimal value) { this.HistoryTotal = value; return this; } public String getDelAddress1() { return DelAddress1; } public sh_SalesOrder setDelAddress1(String value) { this.DelAddress1 = value; return this; } public String getDelAddress2() { return DelAddress2; } public sh_SalesOrder setDelAddress2(String value) { this.DelAddress2 = value; return this; } public String getDelAddress3() { return DelAddress3; } public sh_SalesOrder setDelAddress3(String value) { this.DelAddress3 = value; return this; } public String getDelAddress4() { return DelAddress4; } public sh_SalesOrder setDelAddress4(String value) { this.DelAddress4 = value; return this; } public String getHistoryPostCode() { return HistoryPostCode; } public sh_SalesOrder setHistoryPostCode(String value) { this.HistoryPostCode = value; return this; } public String getNotes() { return Notes; } public sh_SalesOrder setNotes(String value) { this.Notes = value; return this; } public String getCourierDetails() { return CourierDetails; } public sh_SalesOrder setCourierDetails(String value) { this.CourierDetails = value; return this; } public String getPaymentTypeID() { return PaymentTypeID; } public sh_SalesOrder setPaymentTypeID(String value) { this.PaymentTypeID = value; return this; } public String getPaymentRef() { return PaymentRef; } public sh_SalesOrder setPaymentRef(String value) { this.PaymentRef = value; return this; } public BigDecimal getAmountPaid() { return AmountPaid; } public sh_SalesOrder setAmountPaid(BigDecimal value) { this.AmountPaid = value; return this; } public String getRunNo() { return RunNo; } public sh_SalesOrder setRunNo(String value) { this.RunNo = value; return this; } public String getDelContactName() { return DelContactName; } public sh_SalesOrder setDelContactName(String value) { this.DelContactName = value; return this; } public Boolean isDelivered() { return Delivered; } public sh_SalesOrder setDelivered(Boolean value) { this.Delivered = value; return this; } public Date getDeliveredDate() { return DeliveredDate; } public sh_SalesOrder setDeliveredDate(Date value) { this.DeliveredDate = value; return this; } public String getFreightForwardAddress1() { return FreightForwardAddress1; } public sh_SalesOrder setFreightForwardAddress1(String value) { this.FreightForwardAddress1 = value; return this; } public String getFreightForwardAddress2() { return FreightForwardAddress2; } public sh_SalesOrder setFreightForwardAddress2(String value) { this.FreightForwardAddress2 = value; return this; } public String getFreightForwardAddress3() { return FreightForwardAddress3; } public sh_SalesOrder setFreightForwardAddress3(String value) { this.FreightForwardAddress3 = value; return this; } public String getFreightForwardAddress4() { return FreightForwardAddress4; } public sh_SalesOrder setFreightForwardAddress4(String value) { this.FreightForwardAddress4 = value; return this; } public String getFreightForwardNotes() { return FreightForwardNotes; } public sh_SalesOrder setFreightForwardNotes(String value) { this.FreightForwardNotes = value; return this; } public Short getHistoryStatus() { return HistoryStatus; } public sh_SalesOrder setHistoryStatus(Short value) { this.HistoryStatus = value; return this; } public String getEmailAddress() { return EmailAddress; } public sh_SalesOrder setEmailAddress(String value) { this.EmailAddress = value; return this; } public String getConsignmentNote() { return ConsignmentNote; } public sh_SalesOrder setConsignmentNote(String value) { this.ConsignmentNote = value; return this; } public Date getDateCreated() { return DateCreated; } public sh_SalesOrder setDateCreated(Date value) { this.DateCreated = value; return this; } public Date getDateLastSaved() { return DateLastSaved; } public sh_SalesOrder setDateLastSaved(Date value) { this.DateLastSaved = value; return this; } public Date getDatePosted() { return DatePosted; } public sh_SalesOrder setDatePosted(Date value) { this.DatePosted = value; return this; } public Date getDateProcessed() { return DateProcessed; } public sh_SalesOrder setDateProcessed(Date value) { this.DateProcessed = value; return this; } public Boolean isDropShipment() { return DropShipment; } public sh_SalesOrder setDropShipment(Boolean value) { this.DropShipment = value; return this; } public String getDeliveryAddressee() { return DeliveryAddressee; } public sh_SalesOrder setDeliveryAddressee(String value) { this.DeliveryAddressee = value; return this; } public String getDeliveryAddressCountry() { return DeliveryAddressCountry; } public sh_SalesOrder setDeliveryAddressCountry(String value) { this.DeliveryAddressCountry = value; return this; } public String getFreightForwardAddressCountry() { return FreightForwardAddressCountry; } public sh_SalesOrder setFreightForwardAddressCountry(String value) { this.FreightForwardAddressCountry = value; return this; } public String getOrderedByID() { return OrderedByID; } public sh_SalesOrder setOrderedByID(String value) { this.OrderedByID = value; return this; } public String getDeliveryContactID() { return DeliveryContactID; } public sh_SalesOrder setDeliveryContactID(String value) { this.DeliveryContactID = value; return this; } public String getCostCenter() { return CostCenter; } public sh_SalesOrder setCostCenter(String value) { this.CostCenter = value; return this; } public Boolean isExpressedInterestInInsurance() { return ExpressedInterestInInsurance; } public sh_SalesOrder setExpressedInterestInInsurance(Boolean value) { this.ExpressedInterestInInsurance = value; return this; } public String getPrimaryOrderID() { return PrimaryOrderID; } public sh_SalesOrder setPrimaryOrderID(String value) { this.PrimaryOrderID = value; return this; } public String getInsuranceOrderID() { return InsuranceOrderID; } public sh_SalesOrder setInsuranceOrderID(String value) { this.InsuranceOrderID = value; return this; } public Boolean isHasWarrantyUplift() { return HasWarrantyUplift; } public sh_SalesOrder setHasWarrantyUplift(Boolean value) { this.HasWarrantyUplift = value; return this; } public Boolean isHasLicensing() { return HasLicensing; } public sh_SalesOrder setHasLicensing(Boolean value) { this.HasLicensing = value; return this; } public Integer getWarrantyUpliftDocumentCount() { return WarrantyUpliftDocumentCount; } public sh_SalesOrder setWarrantyUpliftDocumentCount(Integer value) { this.WarrantyUpliftDocumentCount = value; return this; } public Integer getLicenseDocumentCount() { return LicenseDocumentCount; } public sh_SalesOrder setLicenseDocumentCount(Integer value) { this.LicenseDocumentCount = value; return this; } public String getSource() { return Source; } public sh_SalesOrder setSource(String value) { this.Source = value; return this; } public Date getDispatchedOn() { return DispatchedOn; } public sh_SalesOrder setDispatchedOn(Date value) { this.DispatchedOn = value; return this; } } public static class sh_Debtor { public String DebtorID = null; public Date LastSavedDateTime = null; public String AccountNo = null; public String Name = null; public String Address1 = null; public String Address2 = null; public String Address3 = null; public String Address4 = null; public String PostCode = null; public String Phone = null; public String Fax = null; public String BSBN = null; public String AccountName = null; public String TaxExemptNo = null; public BigDecimal CreditLimit = null; public String ClassificationID = null; public String Classification = null; public Boolean AccountOnHold = null; public String EmailAddress = null; public BigDecimal CurrentBalance = null; public String AltAccountNo = null; public Boolean NotifyRequired = null; public String NotifyAddress = null; public Date CommenceDate = null; public Boolean WebAccess = null; public String ParentDebtorID = null; public Date AllocLastSavedDateTime = null; public String PriceSchemeID = null; public String AustPostDPID = null; public String AustPostBCSP = null; public String TradingName = null; public String CompanyName = null; public String ACN = null; public String ProprietorsName = null; public Short PeriodType = null; public Short TermsDays = null; public Short TermsType = null; public String ABN = null; public String BPayReference = null; public Short TradingStatus = null; public String IndustryID = null; public String IndustryName = null; public String AccountSizeID = null; public String AccountSizeName = null; public String Category3ID = null; public String Category4ID = null; public String Category5ID = null; public String BO_Priorities_RecID = null; public String PricingGroupID = null; public BigDecimal BudgetedGPPercentage = null; public String Country = null; public String FR_Carriers_RecID = null; public String FR_CarrierServices_RecID = null; public String CarrierAccountNo = null; public Short ChargeTo = null; public Boolean IsCashOnly = null; public String getDebtorID() { return DebtorID; } public sh_Debtor setDebtorID(String value) { this.DebtorID = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public sh_Debtor setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public String getAccountNo() { return AccountNo; } public sh_Debtor setAccountNo(String value) { this.AccountNo = value; return this; } public String getName() { return Name; } public sh_Debtor setName(String value) { this.Name = value; return this; } public String getAddress1() { return Address1; } public sh_Debtor setAddress1(String value) { this.Address1 = value; return this; } public String getAddress2() { return Address2; } public sh_Debtor setAddress2(String value) { this.Address2 = value; return this; } public String getAddress3() { return Address3; } public sh_Debtor setAddress3(String value) { this.Address3 = value; return this; } public String getAddress4() { return Address4; } public sh_Debtor setAddress4(String value) { this.Address4 = value; return this; } public String getPostCode() { return PostCode; } public sh_Debtor setPostCode(String value) { this.PostCode = value; return this; } public String getPhone() { return Phone; } public sh_Debtor setPhone(String value) { this.Phone = value; return this; } public String getFax() { return Fax; } public sh_Debtor setFax(String value) { this.Fax = value; return this; } public String getBsbn() { return BSBN; } public sh_Debtor setBsbn(String value) { this.BSBN = value; return this; } public String getAccountName() { return AccountName; } public sh_Debtor setAccountName(String value) { this.AccountName = value; return this; } public String getTaxExemptNo() { return TaxExemptNo; } public sh_Debtor setTaxExemptNo(String value) { this.TaxExemptNo = value; return this; } public BigDecimal getCreditLimit() { return CreditLimit; } public sh_Debtor setCreditLimit(BigDecimal value) { this.CreditLimit = value; return this; } public String getClassificationID() { return ClassificationID; } public sh_Debtor setClassificationID(String value) { this.ClassificationID = value; return this; } public String getClassification() { return Classification; } public sh_Debtor setClassification(String value) { this.Classification = value; return this; } public Boolean isAccountOnHold() { return AccountOnHold; } public sh_Debtor setAccountOnHold(Boolean value) { this.AccountOnHold = value; return this; } public String getEmailAddress() { return EmailAddress; } public sh_Debtor setEmailAddress(String value) { this.EmailAddress = value; return this; } public BigDecimal getCurrentBalance() { return CurrentBalance; } public sh_Debtor setCurrentBalance(BigDecimal value) { this.CurrentBalance = value; return this; } public String getAltAccountNo() { return AltAccountNo; } public sh_Debtor setAltAccountNo(String value) { this.AltAccountNo = value; return this; } public Boolean isNotifyRequired() { return NotifyRequired; } public sh_Debtor setNotifyRequired(Boolean value) { this.NotifyRequired = value; return this; } public String getNotifyAddress() { return NotifyAddress; } public sh_Debtor setNotifyAddress(String value) { this.NotifyAddress = value; return this; } public Date getCommenceDate() { return CommenceDate; } public sh_Debtor setCommenceDate(Date value) { this.CommenceDate = value; return this; } public Boolean isWebAccess() { return WebAccess; } public sh_Debtor setWebAccess(Boolean value) { this.WebAccess = value; return this; } public String getParentDebtorID() { return ParentDebtorID; } public sh_Debtor setParentDebtorID(String value) { this.ParentDebtorID = value; return this; } public Date getAllocLastSavedDateTime() { return AllocLastSavedDateTime; } public sh_Debtor setAllocLastSavedDateTime(Date value) { this.AllocLastSavedDateTime = value; return this; } public String getPriceSchemeID() { return PriceSchemeID; } public sh_Debtor setPriceSchemeID(String value) { this.PriceSchemeID = value; return this; } public String getAustPostDPID() { return AustPostDPID; } public sh_Debtor setAustPostDPID(String value) { this.AustPostDPID = value; return this; } public String getAustPostBCSP() { return AustPostBCSP; } public sh_Debtor setAustPostBCSP(String value) { this.AustPostBCSP = value; return this; } public String getTradingName() { return TradingName; } public sh_Debtor setTradingName(String value) { this.TradingName = value; return this; } public String getCompanyName() { return CompanyName; } public sh_Debtor setCompanyName(String value) { this.CompanyName = value; return this; } public String getAcn() { return ACN; } public sh_Debtor setAcn(String value) { this.ACN = value; return this; } public String getProprietorsName() { return ProprietorsName; } public sh_Debtor setProprietorsName(String value) { this.ProprietorsName = value; return this; } public Short getPeriodType() { return PeriodType; } public sh_Debtor setPeriodType(Short value) { this.PeriodType = value; return this; } public Short getTermsDays() { return TermsDays; } public sh_Debtor setTermsDays(Short value) { this.TermsDays = value; return this; } public Short getTermsType() { return TermsType; } public sh_Debtor setTermsType(Short value) { this.TermsType = value; return this; } public String getAbn() { return ABN; } public sh_Debtor setAbn(String value) { this.ABN = value; return this; } public String getBPayReference() { return BPayReference; } public sh_Debtor setBPayReference(String value) { this.BPayReference = value; return this; } public Short getTradingStatus() { return TradingStatus; } public sh_Debtor setTradingStatus(Short value) { this.TradingStatus = value; return this; } public String getIndustryID() { return IndustryID; } public sh_Debtor setIndustryID(String value) { this.IndustryID = value; return this; } public String getIndustryName() { return IndustryName; } public sh_Debtor setIndustryName(String value) { this.IndustryName = value; return this; } public String getAccountSizeID() { return AccountSizeID; } public sh_Debtor setAccountSizeID(String value) { this.AccountSizeID = value; return this; } public String getAccountSizeName() { return AccountSizeName; } public sh_Debtor setAccountSizeName(String value) { this.AccountSizeName = value; return this; } public String getCategory3ID() { return Category3ID; } public sh_Debtor setCategory3ID(String value) { this.Category3ID = value; return this; } public String getCategory4ID() { return Category4ID; } public sh_Debtor setCategory4ID(String value) { this.Category4ID = value; return this; } public String getCategory5ID() { return Category5ID; } public sh_Debtor setCategory5ID(String value) { this.Category5ID = value; return this; } public String getBoPrioritiesRecID() { return BO_Priorities_RecID; } public sh_Debtor setBoPrioritiesRecID(String value) { this.BO_Priorities_RecID = value; return this; } public String getPricingGroupID() { return PricingGroupID; } public sh_Debtor setPricingGroupID(String value) { this.PricingGroupID = value; return this; } public BigDecimal getBudgetedGPPercentage() { return BudgetedGPPercentage; } public sh_Debtor setBudgetedGPPercentage(BigDecimal value) { this.BudgetedGPPercentage = value; return this; } public String getCountry() { return Country; } public sh_Debtor setCountry(String value) { this.Country = value; return this; } public String getFrCarriersRecID() { return FR_Carriers_RecID; } public sh_Debtor setFrCarriersRecID(String value) { this.FR_Carriers_RecID = value; return this; } public String getFrCarrierServicesRecID() { return FR_CarrierServices_RecID; } public sh_Debtor setFrCarrierServicesRecID(String value) { this.FR_CarrierServices_RecID = value; return this; } public String getCarrierAccountNo() { return CarrierAccountNo; } public sh_Debtor setCarrierAccountNo(String value) { this.CarrierAccountNo = value; return this; } public Short getChargeTo() { return ChargeTo; } public sh_Debtor setChargeTo(Short value) { this.ChargeTo = value; return this; } public Boolean getIsCashOnly() { return IsCashOnly; } public sh_Debtor setIsCashOnly(Boolean value) { this.IsCashOnly = value; return this; } } public static class sh_GoodsReceived_Device { public String SerialNo = null; public String PartNo = null; public String IN_SOH_LinkID = null; public String RE_LineDetails_RecID = null; public String OrderID = null; public String OrderLineID = null; public String PackSlipID = null; public String getSerialNo() { return SerialNo; } public sh_GoodsReceived_Device setSerialNo(String value) { this.SerialNo = value; return this; } public String getPartNo() { return PartNo; } public sh_GoodsReceived_Device setPartNo(String value) { this.PartNo = value; return this; } public String getInSohLinkID() { return IN_SOH_LinkID; } public sh_GoodsReceived_Device setInSohLinkID(String value) { this.IN_SOH_LinkID = value; return this; } public String getReLineDetailsRecID() { return RE_LineDetails_RecID; } public sh_GoodsReceived_Device setReLineDetailsRecID(String value) { this.RE_LineDetails_RecID = value; return this; } public String getOrderID() { return OrderID; } public sh_GoodsReceived_Device setOrderID(String value) { this.OrderID = value; return this; } public String getOrderLineID() { return OrderLineID; } public sh_GoodsReceived_Device setOrderLineID(String value) { this.OrderLineID = value; return this; } public String getPackSlipID() { return PackSlipID; } public sh_GoodsReceived_Device setPackSlipID(String value) { this.PackSlipID = value; return this; } } public static class SY_Plugin_Image { @Required() public UUID RecID = null; @References(SY_Plugin.class) @Required() public UUID SY_Plugin_RecID = null; public ArrayList Picture = null; public Date LastSavedDateTime = null; @Required() public Integer ItemNo = null; @Required() public ArrayList RowHash = null; public UUID getRecID() { return RecID; } public SY_Plugin_Image setRecID(UUID value) { this.RecID = value; return this; } public UUID getSyPluginRecID() { return SY_Plugin_RecID; } public SY_Plugin_Image setSyPluginRecID(UUID value) { this.SY_Plugin_RecID = value; return this; } public ArrayList getPicture() { return Picture; } public SY_Plugin_Image setPicture(ArrayList value) { this.Picture = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public SY_Plugin_Image setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Integer getItemNo() { return ItemNo; } public SY_Plugin_Image setItemNo(Integer value) { this.ItemNo = value; return this; } public ArrayList getRowHash() { return RowHash; } public SY_Plugin_Image setRowHash(ArrayList value) { this.RowHash = value; return this; } } public static class SY_Plugin_Notes { @Required() public String RecID = null; @References(SY_Plugin.class) @Required() public UUID SY_Plugin_RecID = null; @References(SY_NoteTypes.class) @Required() public String NoteTypeID = null; @Required() public Date LastSavedDateTime = null; @References(HR_Staff.class) @Required() public String LastSavedByStaffID = null; public String NoteText = null; @Required() public Integer ItemNo = null; public String getRecID() { return RecID; } public SY_Plugin_Notes setRecID(String value) { this.RecID = value; return this; } public UUID getSyPluginRecID() { return SY_Plugin_RecID; } public SY_Plugin_Notes setSyPluginRecID(UUID value) { this.SY_Plugin_RecID = value; return this; } public String getNoteTypeID() { return NoteTypeID; } public SY_Plugin_Notes setNoteTypeID(String value) { this.NoteTypeID = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public SY_Plugin_Notes setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public String getLastSavedByStaffID() { return LastSavedByStaffID; } public SY_Plugin_Notes setLastSavedByStaffID(String value) { this.LastSavedByStaffID = value; return this; } public String getNoteText() { return NoteText; } public SY_Plugin_Notes setNoteText(String value) { this.NoteText = value; return this; } public Integer getItemNo() { return ItemNo; } public SY_Plugin_Notes setItemNo(Integer value) { this.ItemNo = value; return this; } } public static class SY_PluginBusinessLogic { @Required() public UUID RecID = null; @References(SY_Plugin.class) @Required() public UUID SY_Plugin_RecID = null; @References(SY_BusinessLogic.class) @Required() public UUID SY_BusinessLogic_RecID = null; @Required() public Integer ItemNo = null; @Required() public ArrayList RowHash = null; public UUID getRecID() { return RecID; } public SY_PluginBusinessLogic setRecID(UUID value) { this.RecID = value; return this; } public UUID getSyPluginRecID() { return SY_Plugin_RecID; } public SY_PluginBusinessLogic setSyPluginRecID(UUID value) { this.SY_Plugin_RecID = value; return this; } public UUID getSyBusinessLogicRecID() { return SY_BusinessLogic_RecID; } public SY_PluginBusinessLogic setSyBusinessLogicRecID(UUID value) { this.SY_BusinessLogic_RecID = value; return this; } public Integer getItemNo() { return ItemNo; } public SY_PluginBusinessLogic setItemNo(Integer value) { this.ItemNo = value; return this; } public ArrayList getRowHash() { return RowHash; } public SY_PluginBusinessLogic setRowHash(ArrayList value) { this.RowHash = value; return this; } } public static class SY_PluginCustomSettingModules { @Required() public UUID RecID = null; @Required() public String ModuleName = null; @Required() public String TableName = null; @Required() public String IDColumnName = null; @Required() public Integer ItemNo = null; @Required() public ArrayList RowHash = null; public String ValuesTableName = null; public String ValuesIDColumnName = null; public String ValuesSettingIDColumnName = null; public String ValuesFKIDColumnName = null; public UUID getRecID() { return RecID; } public SY_PluginCustomSettingModules setRecID(UUID value) { this.RecID = value; return this; } public String getModuleName() { return ModuleName; } public SY_PluginCustomSettingModules setModuleName(String value) { this.ModuleName = value; return this; } public String getTableName() { return TableName; } public SY_PluginCustomSettingModules setTableName(String value) { this.TableName = value; return this; } public String getIdColumnName() { return IDColumnName; } public SY_PluginCustomSettingModules setIdColumnName(String value) { this.IDColumnName = value; return this; } public Integer getItemNo() { return ItemNo; } public SY_PluginCustomSettingModules setItemNo(Integer value) { this.ItemNo = value; return this; } public ArrayList getRowHash() { return RowHash; } public SY_PluginCustomSettingModules setRowHash(ArrayList value) { this.RowHash = value; return this; } public String getValuesTableName() { return ValuesTableName; } public SY_PluginCustomSettingModules setValuesTableName(String value) { this.ValuesTableName = value; return this; } public String getValuesIDColumnName() { return ValuesIDColumnName; } public SY_PluginCustomSettingModules setValuesIDColumnName(String value) { this.ValuesIDColumnName = value; return this; } public String getValuesSettingIDColumnName() { return ValuesSettingIDColumnName; } public SY_PluginCustomSettingModules setValuesSettingIDColumnName(String value) { this.ValuesSettingIDColumnName = value; return this; } public String getValuesFKIDColumnName() { return ValuesFKIDColumnName; } public SY_PluginCustomSettingModules setValuesFKIDColumnName(String value) { this.ValuesFKIDColumnName = value; return this; } } public static class SY_PluginDocuments { @Required() public String RecID = null; @References(SY_Plugin.class) @Required() public UUID SY_Plugin_RecID = null; @References(SY_DocumentTypes.class) @Required() public String DocumentTypeID = null; public Date LastSavedDateTime = null; @References(HR_Staff.class) @Required() public String LastSavedByStaffID = null; public ArrayList FileBinary = null; public String Description = null; public String PhysicalFileName = null; @Required() public Integer ItemNo = null; public String getRecID() { return RecID; } public SY_PluginDocuments setRecID(String value) { this.RecID = value; return this; } public UUID getSyPluginRecID() { return SY_Plugin_RecID; } public SY_PluginDocuments setSyPluginRecID(UUID value) { this.SY_Plugin_RecID = value; return this; } public String getDocumentTypeID() { return DocumentTypeID; } public SY_PluginDocuments setDocumentTypeID(String value) { this.DocumentTypeID = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public SY_PluginDocuments setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public String getLastSavedByStaffID() { return LastSavedByStaffID; } public SY_PluginDocuments setLastSavedByStaffID(String value) { this.LastSavedByStaffID = value; return this; } public ArrayList getFileBinary() { return FileBinary; } public SY_PluginDocuments setFileBinary(ArrayList value) { this.FileBinary = value; return this; } public String getDescription() { return Description; } public SY_PluginDocuments setDescription(String value) { this.Description = value; return this; } public String getPhysicalFileName() { return PhysicalFileName; } public SY_PluginDocuments setPhysicalFileName(String value) { this.PhysicalFileName = value; return this; } public Integer getItemNo() { return ItemNo; } public SY_PluginDocuments setItemNo(Integer value) { this.ItemNo = value; return this; } } public static class SY_PluginEmbeddedReference { @Required() public UUID RecID = null; @References(SY_Plugin.class) @Required() public UUID SY_Plugin_RecID = null; @Required() public String AssemblyName = null; @Required() public ArrayList FileBinary = null; @Required() public Integer ItemNo = null; @Required() public ArrayList RowHash = null; public UUID getRecID() { return RecID; } public SY_PluginEmbeddedReference setRecID(UUID value) { this.RecID = value; return this; } public UUID getSyPluginRecID() { return SY_Plugin_RecID; } public SY_PluginEmbeddedReference setSyPluginRecID(UUID value) { this.SY_Plugin_RecID = value; return this; } public String getAssemblyName() { return AssemblyName; } public SY_PluginEmbeddedReference setAssemblyName(String value) { this.AssemblyName = value; return this; } public ArrayList getFileBinary() { return FileBinary; } public SY_PluginEmbeddedReference setFileBinary(ArrayList value) { this.FileBinary = value; return this; } public Integer getItemNo() { return ItemNo; } public SY_PluginEmbeddedReference setItemNo(Integer value) { this.ItemNo = value; return this; } public ArrayList getRowHash() { return RowHash; } public SY_PluginEmbeddedReference setRowHash(ArrayList value) { this.RowHash = value; return this; } } public static class SY_PluginForm { @Required() public UUID RecID = null; @References(SY_Plugin.class) @Required() public UUID SY_Plugin_RecID = null; @References(SY_Forms.class) @Required() public String SY_Forms_ClassName = null; @Required() public Integer ItemNo = null; @Required() public ArrayList RowHash = null; public UUID getRecID() { return RecID; } public SY_PluginForm setRecID(UUID value) { this.RecID = value; return this; } public UUID getSyPluginRecID() { return SY_Plugin_RecID; } public SY_PluginForm setSyPluginRecID(UUID value) { this.SY_Plugin_RecID = value; return this; } public String getSyFormsClassName() { return SY_Forms_ClassName; } public SY_PluginForm setSyFormsClassName(String value) { this.SY_Forms_ClassName = value; return this; } public Integer getItemNo() { return ItemNo; } public SY_PluginForm setItemNo(Integer value) { this.ItemNo = value; return this; } public ArrayList getRowHash() { return RowHash; } public SY_PluginForm setRowHash(ArrayList value) { this.RowHash = value; return this; } } public static class SY_PluginPluginReference { @Required() public UUID RecID = null; @References(SY_Plugin.class) @Required() public UUID SY_Plugin_RecID = null; @References(SY_Plugin.class) @Required() public UUID Referenced_SY_Plugin_RecID = null; @Required() public Integer ItemNo = null; @Required() public ArrayList RowHash = null; public UUID getRecID() { return RecID; } public SY_PluginPluginReference setRecID(UUID value) { this.RecID = value; return this; } public UUID getSyPluginRecID() { return SY_Plugin_RecID; } public SY_PluginPluginReference setSyPluginRecID(UUID value) { this.SY_Plugin_RecID = value; return this; } public UUID getReferencedSyPluginRecID() { return Referenced_SY_Plugin_RecID; } public SY_PluginPluginReference setReferencedSyPluginRecID(UUID value) { this.Referenced_SY_Plugin_RecID = value; return this; } public Integer getItemNo() { return ItemNo; } public SY_PluginPluginReference setItemNo(Integer value) { this.ItemNo = value; return this; } public ArrayList getRowHash() { return RowHash; } public SY_PluginPluginReference setRowHash(ArrayList value) { this.RowHash = value; return this; } } public static class SY_PluginReference { @Required() public UUID RecID = null; @References(SY_Plugin.class) @Required() public UUID SY_Plugin_RecID = null; @Required() public String AssemblyFullName = null; @Required() public String AssemblyName = null; @Required() public Integer ItemNo = null; @Required() public ArrayList RowHash = null; public UUID getRecID() { return RecID; } public SY_PluginReference setRecID(UUID value) { this.RecID = value; return this; } public UUID getSyPluginRecID() { return SY_Plugin_RecID; } public SY_PluginReference setSyPluginRecID(UUID value) { this.SY_Plugin_RecID = value; return this; } public String getAssemblyFullName() { return AssemblyFullName; } public SY_PluginReference setAssemblyFullName(String value) { this.AssemblyFullName = value; return this; } public String getAssemblyName() { return AssemblyName; } public SY_PluginReference setAssemblyName(String value) { this.AssemblyName = value; return this; } public Integer getItemNo() { return ItemNo; } public SY_PluginReference setItemNo(Integer value) { this.ItemNo = value; return this; } public ArrayList getRowHash() { return RowHash; } public SY_PluginReference setRowHash(ArrayList value) { this.RowHash = value; return this; } } public static class SY_PluginSchedule { @Required() public UUID RecID = null; @References(SY_Plugin.class) @Required() public UUID SY_Plugin_RecID = null; @Required() public String Name = null; @Required() public Boolean IsEnabled = null; @Required() public Short ScheduleType = null; @Required() public Short OccurrenceType = null; @Required() public Integer OccurrenceFrequencyInterval = null; @Required() public Short DailyFrequencyType = null; @Required() public Long DailyOccursOnceTime = null; @Required() public Integer DailyRepeatsInterval = null; @Required() public Long DailyRepeatsStartTime = null; @Required() public Long DailyRepeatsEndTime = null; @Required() public Integer WeeklyRepeatsInterval = null; @Required() public Short WeeklyDaysOfWeek = null; @Required() public Short MonthlyFrequencyType = null; @Required() public Short MonthlyDayOfMonth = null; @Required() public Integer MonthlyRepeatInterval = null; @Required() public Short MonthlyFrequencyAdjective = null; @Required() public Short MonthlyFrequencyDayOfWeek = null; @Required() public Date StartDate = null; @Required() public Boolean HasEndDate = null; public Date EndDate = null; @Required() public Short ItemNo = null; public Date LastRunDate = null; public Date NextRunDate = null; @Required() public ArrayList RowHash = null; public UUID getRecID() { return RecID; } public SY_PluginSchedule setRecID(UUID value) { this.RecID = value; return this; } public UUID getSyPluginRecID() { return SY_Plugin_RecID; } public SY_PluginSchedule setSyPluginRecID(UUID value) { this.SY_Plugin_RecID = value; return this; } public String getName() { return Name; } public SY_PluginSchedule setName(String value) { this.Name = value; return this; } public Boolean getIsEnabled() { return IsEnabled; } public SY_PluginSchedule setIsEnabled(Boolean value) { this.IsEnabled = value; return this; } public Short getScheduleType() { return ScheduleType; } public SY_PluginSchedule setScheduleType(Short value) { this.ScheduleType = value; return this; } public Short getOccurrenceType() { return OccurrenceType; } public SY_PluginSchedule setOccurrenceType(Short value) { this.OccurrenceType = value; return this; } public Integer getOccurrenceFrequencyInterval() { return OccurrenceFrequencyInterval; } public SY_PluginSchedule setOccurrenceFrequencyInterval(Integer value) { this.OccurrenceFrequencyInterval = value; return this; } public Short getDailyFrequencyType() { return DailyFrequencyType; } public SY_PluginSchedule setDailyFrequencyType(Short value) { this.DailyFrequencyType = value; return this; } public Long getDailyOccursOnceTime() { return DailyOccursOnceTime; } public SY_PluginSchedule setDailyOccursOnceTime(Long value) { this.DailyOccursOnceTime = value; return this; } public Integer getDailyRepeatsInterval() { return DailyRepeatsInterval; } public SY_PluginSchedule setDailyRepeatsInterval(Integer value) { this.DailyRepeatsInterval = value; return this; } public Long getDailyRepeatsStartTime() { return DailyRepeatsStartTime; } public SY_PluginSchedule setDailyRepeatsStartTime(Long value) { this.DailyRepeatsStartTime = value; return this; } public Long getDailyRepeatsEndTime() { return DailyRepeatsEndTime; } public SY_PluginSchedule setDailyRepeatsEndTime(Long value) { this.DailyRepeatsEndTime = value; return this; } public Integer getWeeklyRepeatsInterval() { return WeeklyRepeatsInterval; } public SY_PluginSchedule setWeeklyRepeatsInterval(Integer value) { this.WeeklyRepeatsInterval = value; return this; } public Short getWeeklyDaysOfWeek() { return WeeklyDaysOfWeek; } public SY_PluginSchedule setWeeklyDaysOfWeek(Short value) { this.WeeklyDaysOfWeek = value; return this; } public Short getMonthlyFrequencyType() { return MonthlyFrequencyType; } public SY_PluginSchedule setMonthlyFrequencyType(Short value) { this.MonthlyFrequencyType = value; return this; } public Short getMonthlyDayOfMonth() { return MonthlyDayOfMonth; } public SY_PluginSchedule setMonthlyDayOfMonth(Short value) { this.MonthlyDayOfMonth = value; return this; } public Integer getMonthlyRepeatInterval() { return MonthlyRepeatInterval; } public SY_PluginSchedule setMonthlyRepeatInterval(Integer value) { this.MonthlyRepeatInterval = value; return this; } public Short getMonthlyFrequencyAdjective() { return MonthlyFrequencyAdjective; } public SY_PluginSchedule setMonthlyFrequencyAdjective(Short value) { this.MonthlyFrequencyAdjective = value; return this; } public Short getMonthlyFrequencyDayOfWeek() { return MonthlyFrequencyDayOfWeek; } public SY_PluginSchedule setMonthlyFrequencyDayOfWeek(Short value) { this.MonthlyFrequencyDayOfWeek = value; return this; } public Date getStartDate() { return StartDate; } public SY_PluginSchedule setStartDate(Date value) { this.StartDate = value; return this; } public Boolean isHasEndDate() { return HasEndDate; } public SY_PluginSchedule setHasEndDate(Boolean value) { this.HasEndDate = value; return this; } public Date getEndDate() { return EndDate; } public SY_PluginSchedule setEndDate(Date value) { this.EndDate = value; return this; } public Short getItemNo() { return ItemNo; } public SY_PluginSchedule setItemNo(Short value) { this.ItemNo = value; return this; } public Date getLastRunDate() { return LastRunDate; } public SY_PluginSchedule setLastRunDate(Date value) { this.LastRunDate = value; return this; } public Date getNextRunDate() { return NextRunDate; } public SY_PluginSchedule setNextRunDate(Date value) { this.NextRunDate = value; return this; } public ArrayList getRowHash() { return RowHash; } public SY_PluginSchedule setRowHash(ArrayList value) { this.RowHash = value; return this; } } public static class SY_PluginSnippet { @Required() public UUID RecID = null; @Required() public String Title = null; @Required() public String Description = null; @Required() public String Shortcut = null; public String Author = null; @Required() public Boolean IsEnabled = null; @Required() public String Code = null; @Required() public Short Language = null; public String FolderPath = null; @Required() public String SnippetTypes = null; @Required() public ArrayList RowHash = null; @Required() public Date LastSavedDateTime = null; public UUID getRecID() { return RecID; } public SY_PluginSnippet setRecID(UUID value) { this.RecID = value; return this; } public String getTitle() { return Title; } public SY_PluginSnippet setTitle(String value) { this.Title = value; return this; } public String getDescription() { return Description; } public SY_PluginSnippet setDescription(String value) { this.Description = value; return this; } public String getShortcut() { return Shortcut; } public SY_PluginSnippet setShortcut(String value) { this.Shortcut = value; return this; } public String getAuthor() { return Author; } public SY_PluginSnippet setAuthor(String value) { this.Author = value; return this; } public Boolean getIsEnabled() { return IsEnabled; } public SY_PluginSnippet setIsEnabled(Boolean value) { this.IsEnabled = value; return this; } public String getCode() { return Code; } public SY_PluginSnippet setCode(String value) { this.Code = value; return this; } public Short getLanguage() { return Language; } public SY_PluginSnippet setLanguage(Short value) { this.Language = value; return this; } public String getFolderPath() { return FolderPath; } public SY_PluginSnippet setFolderPath(String value) { this.FolderPath = value; return this; } public String getSnippetTypes() { return SnippetTypes; } public SY_PluginSnippet setSnippetTypes(String value) { this.SnippetTypes = value; return this; } public ArrayList getRowHash() { return RowHash; } public SY_PluginSnippet setRowHash(ArrayList value) { this.RowHash = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public SY_PluginSnippet setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } } public static class SY_PluginSnippetDeclaration { @Required() public UUID RecID = null; @References(SY_PluginSnippet.class) @Required() public UUID SY_PluginSnippet_RecID = null; @Required() public String ID = null; @Required() public String Type = null; @Required() public String Tooltip = null; @Required() public String Default = null; @Required() public Integer ItemNo = null; @Required() public ArrayList RowHash = null; public UUID getRecID() { return RecID; } public SY_PluginSnippetDeclaration setRecID(UUID value) { this.RecID = value; return this; } public UUID getSyPluginSnippetRecID() { return SY_PluginSnippet_RecID; } public SY_PluginSnippetDeclaration setSyPluginSnippetRecID(UUID value) { this.SY_PluginSnippet_RecID = value; return this; } public String getId() { return ID; } public SY_PluginSnippetDeclaration setId(String value) { this.ID = value; return this; } public String getType() { return Type; } public SY_PluginSnippetDeclaration setType(String value) { this.Type = value; return this; } public String getTooltip() { return Tooltip; } public SY_PluginSnippetDeclaration setTooltip(String value) { this.Tooltip = value; return this; } public String getDefault() { return Default; } public SY_PluginSnippetDeclaration setDefault(String value) { this.Default = value; return this; } public Integer getItemNo() { return ItemNo; } public SY_PluginSnippetDeclaration setItemNo(Integer value) { this.ItemNo = value; return this; } public ArrayList getRowHash() { return RowHash; } public SY_PluginSnippetDeclaration setRowHash(ArrayList value) { this.RowHash = value; return this; } } public static class SY_PluginSystemSettings { @References(SY_Plugin.class) @Required() public UUID SY_Plugin_RecID = null; @References(SY_SysValues.class) @Required() public String SY_Sysvalues_RecID = null; public UUID getSyPluginRecID() { return SY_Plugin_RecID; } public SY_PluginSystemSettings setSyPluginRecID(UUID value) { this.SY_Plugin_RecID = value; return this; } public String getSySysvaluesRecID() { return SY_Sysvalues_RecID; } public SY_PluginSystemSettings setSySysvaluesRecID(String value) { this.SY_Sysvalues_RecID = value; return this; } } public static class SY_PrintGroup { @Required() public String RecID = null; @Required() public ArrayList RowHash = null; @Required() public Date LastSavedDateTime = null; @Required() public String Name = null; public String Description = null; @Required() public Boolean IsDefault = null; public String getRecID() { return RecID; } public SY_PrintGroup setRecID(String value) { this.RecID = value; return this; } public ArrayList getRowHash() { return RowHash; } public SY_PrintGroup setRowHash(ArrayList value) { this.RowHash = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public SY_PrintGroup setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public String getName() { return Name; } public SY_PrintGroup setName(String value) { this.Name = value; return this; } public String getDescription() { return Description; } public SY_PrintGroup setDescription(String value) { this.Description = value; return this; } public Boolean getIsDefault() { return IsDefault; } public SY_PrintGroup setIsDefault(Boolean value) { this.IsDefault = value; return this; } } public static class SY_PrintGroupLogicalPrinter { @Required() public String RecID = null; @Required() public ArrayList RowHash = null; @Required() public Date LastSavedDateTime = null; @Required() public Integer ItemNo = null; @References(SY_PrintGroup.class) @Required() public String SY_PrintGroup_RecID = null; @Required() public String Name = null; @Required() public String PhysicalPrinterName = null; public String Description = null; @Required() public Boolean IsDefault = null; public String getRecID() { return RecID; } public SY_PrintGroupLogicalPrinter setRecID(String value) { this.RecID = value; return this; } public ArrayList getRowHash() { return RowHash; } public SY_PrintGroupLogicalPrinter setRowHash(ArrayList value) { this.RowHash = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public SY_PrintGroupLogicalPrinter setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Integer getItemNo() { return ItemNo; } public SY_PrintGroupLogicalPrinter setItemNo(Integer value) { this.ItemNo = value; return this; } public String getSyPrintGroupRecID() { return SY_PrintGroup_RecID; } public SY_PrintGroupLogicalPrinter setSyPrintGroupRecID(String value) { this.SY_PrintGroup_RecID = value; return this; } public String getName() { return Name; } public SY_PrintGroupLogicalPrinter setName(String value) { this.Name = value; return this; } public String getPhysicalPrinterName() { return PhysicalPrinterName; } public SY_PrintGroupLogicalPrinter setPhysicalPrinterName(String value) { this.PhysicalPrinterName = value; return this; } public String getDescription() { return Description; } public SY_PrintGroupLogicalPrinter setDescription(String value) { this.Description = value; return this; } public Boolean getIsDefault() { return IsDefault; } public SY_PrintGroupLogicalPrinter setIsDefault(Boolean value) { this.IsDefault = value; return this; } } public static class SY_RecentlyViewed { @Required() public UUID RecID = null; @References(SY_Forms.class) @Required() public String SY_Forms_ClassName = null; @References(HR_Staff.class) @Required() public String HR_Staff_StaffID = null; @Required() public String Document_RecID = null; @Required() public String Document_DisplayText = null; @Required() public Boolean IsPinned = null; @Required() public Date LastSavedDateTime = null; public UUID getRecID() { return RecID; } public SY_RecentlyViewed setRecID(UUID value) { this.RecID = value; return this; } public String getSyFormsClassName() { return SY_Forms_ClassName; } public SY_RecentlyViewed setSyFormsClassName(String value) { this.SY_Forms_ClassName = value; return this; } public String getHrStaffStaffID() { return HR_Staff_StaffID; } public SY_RecentlyViewed setHrStaffStaffID(String value) { this.HR_Staff_StaffID = value; return this; } public String getDocumentRecID() { return Document_RecID; } public SY_RecentlyViewed setDocumentRecID(String value) { this.Document_RecID = value; return this; } public String getDocumentDisplayText() { return Document_DisplayText; } public SY_RecentlyViewed setDocumentDisplayText(String value) { this.Document_DisplayText = value; return this; } public Boolean getIsPinned() { return IsPinned; } public SY_RecentlyViewed setIsPinned(Boolean value) { this.IsPinned = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public SY_RecentlyViewed setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } } public static class SY_RemittanceAdviceEmailTemplates { @Required() public String RecID = null; @Required() public String Name = null; @Required() public String Header = null; @Required() public String Body = null; @Required() public String Footer = null; @Required() public String ToField = null; @Required() public String FromField = null; @Required() public String CCField = null; @Required() public String BCCField = null; @Required() public String Subject = null; @Required() public Boolean RequestReadReceipt = null; @Required() public ArrayList RowHash = null; public String getRecID() { return RecID; } public SY_RemittanceAdviceEmailTemplates setRecID(String value) { this.RecID = value; return this; } public String getName() { return Name; } public SY_RemittanceAdviceEmailTemplates setName(String value) { this.Name = value; return this; } public String getHeader() { return Header; } public SY_RemittanceAdviceEmailTemplates setHeader(String value) { this.Header = value; return this; } public String getBody() { return Body; } public SY_RemittanceAdviceEmailTemplates setBody(String value) { this.Body = value; return this; } public String getFooter() { return Footer; } public SY_RemittanceAdviceEmailTemplates setFooter(String value) { this.Footer = value; return this; } public String getToField() { return ToField; } public SY_RemittanceAdviceEmailTemplates setToField(String value) { this.ToField = value; return this; } public String getFromField() { return FromField; } public SY_RemittanceAdviceEmailTemplates setFromField(String value) { this.FromField = value; return this; } public String getCcField() { return CCField; } public SY_RemittanceAdviceEmailTemplates setCcField(String value) { this.CCField = value; return this; } public String getBccField() { return BCCField; } public SY_RemittanceAdviceEmailTemplates setBccField(String value) { this.BCCField = value; return this; } public String getSubject() { return Subject; } public SY_RemittanceAdviceEmailTemplates setSubject(String value) { this.Subject = value; return this; } public Boolean isRequestReadReceipt() { return RequestReadReceipt; } public SY_RemittanceAdviceEmailTemplates setRequestReadReceipt(Boolean value) { this.RequestReadReceipt = value; return this; } public ArrayList getRowHash() { return RowHash; } public SY_RemittanceAdviceEmailTemplates setRowHash(ArrayList value) { this.RowHash = value; return this; } } public static class SY_Report { @Required() public String RecID = null; @Required() public String FileName = null; @Required() public String Title = null; public String Description = null; public String Author = null; @References(SY_ReportSection.class) @Required() public String SY_ReportSection_RecID = null; @Required() public Short ReportType = null; @Required() public Boolean IsEnabled = null; @Required() public ArrayList FileBinary = null; @Required() public String FileHash = null; public String Comment = null; @Required() public Integer ItemNo = null; @Required() public Date LastSavedDateTime = null; @Required() public ArrayList RowHash = null; @Required() public Boolean IsReadOnly = null; public String getRecID() { return RecID; } public SY_Report setRecID(String value) { this.RecID = value; return this; } public String getFileName() { return FileName; } public SY_Report setFileName(String value) { this.FileName = value; return this; } public String getTitle() { return Title; } public SY_Report setTitle(String value) { this.Title = value; return this; } public String getDescription() { return Description; } public SY_Report setDescription(String value) { this.Description = value; return this; } public String getAuthor() { return Author; } public SY_Report setAuthor(String value) { this.Author = value; return this; } public String getSyReportSectionRecID() { return SY_ReportSection_RecID; } public SY_Report setSyReportSectionRecID(String value) { this.SY_ReportSection_RecID = value; return this; } public Short getReportType() { return ReportType; } public SY_Report setReportType(Short value) { this.ReportType = value; return this; } public Boolean getIsEnabled() { return IsEnabled; } public SY_Report setIsEnabled(Boolean value) { this.IsEnabled = value; return this; } public ArrayList getFileBinary() { return FileBinary; } public SY_Report setFileBinary(ArrayList value) { this.FileBinary = value; return this; } public String getFileHash() { return FileHash; } public SY_Report setFileHash(String value) { this.FileHash = value; return this; } public String getComment() { return Comment; } public SY_Report setComment(String value) { this.Comment = value; return this; } public Integer getItemNo() { return ItemNo; } public SY_Report setItemNo(Integer value) { this.ItemNo = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public SY_Report setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public ArrayList getRowHash() { return RowHash; } public SY_Report setRowHash(ArrayList value) { this.RowHash = value; return this; } public Boolean getIsReadOnly() { return IsReadOnly; } public SY_Report setIsReadOnly(Boolean value) { this.IsReadOnly = value; return this; } } public static class SY_ReportSection { @Required() public String RecID = null; @Required() public String Name = null; public String Description = null; @Required() public Boolean IsDefault = null; @Required() public Integer ItemNo = null; @Required() public Date LastSavedDateTime = null; @Required() public ArrayList RowHash = null; public String getRecID() { return RecID; } public SY_ReportSection setRecID(String value) { this.RecID = value; return this; } public String getName() { return Name; } public SY_ReportSection setName(String value) { this.Name = value; return this; } public String getDescription() { return Description; } public SY_ReportSection setDescription(String value) { this.Description = value; return this; } public Boolean getIsDefault() { return IsDefault; } public SY_ReportSection setIsDefault(Boolean value) { this.IsDefault = value; return this; } public Integer getItemNo() { return ItemNo; } public SY_ReportSection setItemNo(Integer value) { this.ItemNo = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public SY_ReportSection setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public ArrayList getRowHash() { return RowHash; } public SY_ReportSection setRowHash(ArrayList value) { this.RowHash = value; return this; } } public static class SY_SavedReportRanges { @Required() public String SavedReportRangeID = null; @Required() public Date LastSavedDateTime = null; @Required() public String StaffID = null; @Required() public String IDKey = null; @Required() public String Description = null; public String Contents = null; public String getSavedReportRangeID() { return SavedReportRangeID; } public SY_SavedReportRanges setSavedReportRangeID(String value) { this.SavedReportRangeID = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public SY_SavedReportRanges setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public String getStaffID() { return StaffID; } public SY_SavedReportRanges setStaffID(String value) { this.StaffID = value; return this; } public String getIdKey() { return IDKey; } public SY_SavedReportRanges setIdKey(String value) { this.IDKey = value; return this; } public String getDescription() { return Description; } public SY_SavedReportRanges setDescription(String value) { this.Description = value; return this; } public String getContents() { return Contents; } public SY_SavedReportRanges setContents(String value) { this.Contents = value; return this; } } public static class SY_SearchItem { @Required() public String RecID = null; @Required() public Integer ItemNo = null; @Required() public String Name = null; @Required() public String StoredProcedureName = null; @Required() public Boolean IsEnabled = null; @Required() public ArrayList RowHash = null; public String getRecID() { return RecID; } public SY_SearchItem setRecID(String value) { this.RecID = value; return this; } public Integer getItemNo() { return ItemNo; } public SY_SearchItem setItemNo(Integer value) { this.ItemNo = value; return this; } public String getName() { return Name; } public SY_SearchItem setName(String value) { this.Name = value; return this; } public String getStoredProcedureName() { return StoredProcedureName; } public SY_SearchItem setStoredProcedureName(String value) { this.StoredProcedureName = value; return this; } public Boolean getIsEnabled() { return IsEnabled; } public SY_SearchItem setIsEnabled(Boolean value) { this.IsEnabled = value; return this; } public ArrayList getRowHash() { return RowHash; } public SY_SearchItem setRowHash(ArrayList value) { this.RowHash = value; return this; } } public static class SY_SysValues { @Required() public String RecID = null; public String Section = null; public String IDKey = null; public String Contents = null; public String Description = null; @Required() public Short CellType = null; @Required() public Integer DisplayOrder = null; public String SectionCaption = null; @Required() public Boolean ReadOnly = null; public String ScriptFormatCell = null; public String ScriptButtonClicked = null; public String ScriptReadData = null; public String GridHandlerCode = null; public String getRecID() { return RecID; } public SY_SysValues setRecID(String value) { this.RecID = value; return this; } public String getSection() { return Section; } public SY_SysValues setSection(String value) { this.Section = value; return this; } public String getIdKey() { return IDKey; } public SY_SysValues setIdKey(String value) { this.IDKey = value; return this; } public String getContents() { return Contents; } public SY_SysValues setContents(String value) { this.Contents = value; return this; } public String getDescription() { return Description; } public SY_SysValues setDescription(String value) { this.Description = value; return this; } public Short getCellType() { return CellType; } public SY_SysValues setCellType(Short value) { this.CellType = value; return this; } public Integer getDisplayOrder() { return DisplayOrder; } public SY_SysValues setDisplayOrder(Integer value) { this.DisplayOrder = value; return this; } public String getSectionCaption() { return SectionCaption; } public SY_SysValues setSectionCaption(String value) { this.SectionCaption = value; return this; } public Boolean isReadOnly() { return ReadOnly; } public SY_SysValues setReadOnly(Boolean value) { this.ReadOnly = value; return this; } public String getScriptFormatCell() { return ScriptFormatCell; } public SY_SysValues setScriptFormatCell(String value) { this.ScriptFormatCell = value; return this; } public String getScriptButtonClicked() { return ScriptButtonClicked; } public SY_SysValues setScriptButtonClicked(String value) { this.ScriptButtonClicked = value; return this; } public String getScriptReadData() { return ScriptReadData; } public SY_SysValues setScriptReadData(String value) { this.ScriptReadData = value; return this; } public String getGridHandlerCode() { return GridHandlerCode; } public SY_SysValues setGridHandlerCode(String value) { this.GridHandlerCode = value; return this; } } public static class SY_SysValuesLog { @Required() public String RecID = null; @Required() public String BatchID = null; @Required() public String DatabaseVersion = null; @Required() public String Section = null; public String SectionCaption = null; @Required() public String IDKey = null; public String Contents = null; public String NewContents = null; public String Description = null; @Required() public Short CellType = null; @Required() public String LastModifiedByStaffID = null; @Required() public Date LastSavedDateTime = null; public String getRecID() { return RecID; } public SY_SysValuesLog setRecID(String value) { this.RecID = value; return this; } public String getBatchID() { return BatchID; } public SY_SysValuesLog setBatchID(String value) { this.BatchID = value; return this; } public String getDatabaseVersion() { return DatabaseVersion; } public SY_SysValuesLog setDatabaseVersion(String value) { this.DatabaseVersion = value; return this; } public String getSection() { return Section; } public SY_SysValuesLog setSection(String value) { this.Section = value; return this; } public String getSectionCaption() { return SectionCaption; } public SY_SysValuesLog setSectionCaption(String value) { this.SectionCaption = value; return this; } public String getIdKey() { return IDKey; } public SY_SysValuesLog setIdKey(String value) { this.IDKey = value; return this; } public String getContents() { return Contents; } public SY_SysValuesLog setContents(String value) { this.Contents = value; return this; } public String getNewContents() { return NewContents; } public SY_SysValuesLog setNewContents(String value) { this.NewContents = value; return this; } public String getDescription() { return Description; } public SY_SysValuesLog setDescription(String value) { this.Description = value; return this; } public Short getCellType() { return CellType; } public SY_SysValuesLog setCellType(Short value) { this.CellType = value; return this; } public String getLastModifiedByStaffID() { return LastModifiedByStaffID; } public SY_SysValuesLog setLastModifiedByStaffID(String value) { this.LastModifiedByStaffID = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public SY_SysValuesLog setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } } public static class SY_TabControlSettings { @Required() public String RecID = null; @References(HR_Staff.class) @Required() public String HR_Staff_RecID = null; @Required() public String Context = null; @Required() public String FullName = null; @Required() public Boolean UseCustomTabs = null; public String TabOrderXML = null; @Required() public ArrayList RowHash = null; public String getRecID() { return RecID; } public SY_TabControlSettings setRecID(String value) { this.RecID = value; return this; } public String getHrStaffRecID() { return HR_Staff_RecID; } public SY_TabControlSettings setHrStaffRecID(String value) { this.HR_Staff_RecID = value; return this; } public String getContext() { return Context; } public SY_TabControlSettings setContext(String value) { this.Context = value; return this; } public String getFullName() { return FullName; } public SY_TabControlSettings setFullName(String value) { this.FullName = value; return this; } public Boolean isUseCustomTabs() { return UseCustomTabs; } public SY_TabControlSettings setUseCustomTabs(Boolean value) { this.UseCustomTabs = value; return this; } public String getTabOrderXML() { return TabOrderXML; } public SY_TabControlSettings setTabOrderXML(String value) { this.TabOrderXML = value; return this; } public ArrayList getRowHash() { return RowHash; } public SY_TabControlSettings setRowHash(ArrayList value) { this.RowHash = value; return this; } } public static class SY_TabSettings { @Required() public String RecID = null; @References(SY_TabControlSettings.class) @Required() public String SY_TabControlSettings_RecID = null; @Required() public String TabKey = null; @Required() public String Text = null; @Required() public Boolean Visible = null; @Required() public ArrayList RowHash = null; public String getRecID() { return RecID; } public SY_TabSettings setRecID(String value) { this.RecID = value; return this; } public String getSyTabControlSettingsRecID() { return SY_TabControlSettings_RecID; } public SY_TabSettings setSyTabControlSettingsRecID(String value) { this.SY_TabControlSettings_RecID = value; return this; } public String getTabKey() { return TabKey; } public SY_TabSettings setTabKey(String value) { this.TabKey = value; return this; } public String getText() { return Text; } public SY_TabSettings setText(String value) { this.Text = value; return this; } public Boolean isVisible() { return Visible; } public SY_TabSettings setVisible(Boolean value) { this.Visible = value; return this; } public ArrayList getRowHash() { return RowHash; } public SY_TabSettings setRowHash(ArrayList value) { this.RowHash = value; return this; } } public static class SY_UpgradeLog { @Required() public Integer PK = null; @Required() public Integer DatabaseMajor = null; @Required() public Integer DatabaseMinor = null; @Required() public Integer DatabaseRelease = null; public Integer getPk() { return PK; } public SY_UpgradeLog setPk(Integer value) { this.PK = value; return this; } public Integer getDatabaseMajor() { return DatabaseMajor; } public SY_UpgradeLog setDatabaseMajor(Integer value) { this.DatabaseMajor = value; return this; } public Integer getDatabaseMinor() { return DatabaseMinor; } public SY_UpgradeLog setDatabaseMinor(Integer value) { this.DatabaseMinor = value; return this; } public Integer getDatabaseRelease() { return DatabaseRelease; } public SY_UpgradeLog setDatabaseRelease(Integer value) { this.DatabaseRelease = value; return this; } } public static class SY_UpgradeScripts { @Required() public String RecId = null; @Required() public Integer PK = null; @Required() public Short DatabaseMajor = null; @Required() public Short DatabaseMinor = null; @Required() public Short DatabaseRelease = null; @Required() public Integer ScriptOrder = null; @Required() public String Script = null; @Required() public Short Status = null; @Required() public String Message = null; @Required() public Short ScriptType = null; @Required() public ArrayList RowHash = null; public String getRecId() { return RecId; } public SY_UpgradeScripts setRecId(String value) { this.RecId = value; return this; } public Integer getPk() { return PK; } public SY_UpgradeScripts setPk(Integer value) { this.PK = value; return this; } public Short getDatabaseMajor() { return DatabaseMajor; } public SY_UpgradeScripts setDatabaseMajor(Short value) { this.DatabaseMajor = value; return this; } public Short getDatabaseMinor() { return DatabaseMinor; } public SY_UpgradeScripts setDatabaseMinor(Short value) { this.DatabaseMinor = value; return this; } public Short getDatabaseRelease() { return DatabaseRelease; } public SY_UpgradeScripts setDatabaseRelease(Short value) { this.DatabaseRelease = value; return this; } public Integer getScriptOrder() { return ScriptOrder; } public SY_UpgradeScripts setScriptOrder(Integer value) { this.ScriptOrder = value; return this; } public String getScript() { return Script; } public SY_UpgradeScripts setScript(String value) { this.Script = value; return this; } public Short getStatus() { return Status; } public SY_UpgradeScripts setStatus(Short value) { this.Status = value; return this; } public String getMessage() { return Message; } public SY_UpgradeScripts setMessage(String value) { this.Message = value; return this; } public Short getScriptType() { return ScriptType; } public SY_UpgradeScripts setScriptType(Short value) { this.ScriptType = value; return this; } public ArrayList getRowHash() { return RowHash; } public SY_UpgradeScripts setRowHash(ArrayList value) { this.RowHash = value; return this; } } public static class SY_UserGroupAbstractPermissions { @Required() public UUID RecID = null; @References(SY_UserGroups.class) @Required() public UUID SY_UserGroups_RecID = null; @References(SY_FormsAbstractPermissions.class) @Required() public UUID SY_FormsAbstractPermissions_RecID = null; @Required() public Short AccessLevel = null; @Required() public ArrayList RowHash = null; public UUID getRecID() { return RecID; } public SY_UserGroupAbstractPermissions setRecID(UUID value) { this.RecID = value; return this; } public UUID getSyUserGroupsRecID() { return SY_UserGroups_RecID; } public SY_UserGroupAbstractPermissions setSyUserGroupsRecID(UUID value) { this.SY_UserGroups_RecID = value; return this; } public UUID getSyFormsAbstractPermissionsRecID() { return SY_FormsAbstractPermissions_RecID; } public SY_UserGroupAbstractPermissions setSyFormsAbstractPermissionsRecID(UUID value) { this.SY_FormsAbstractPermissions_RecID = value; return this; } public Short getAccessLevel() { return AccessLevel; } public SY_UserGroupAbstractPermissions setAccessLevel(Short value) { this.AccessLevel = value; return this; } public ArrayList getRowHash() { return RowHash; } public SY_UserGroupAbstractPermissions setRowHash(ArrayList value) { this.RowHash = value; return this; } } public static class SY_UserGroupMemberships { @Required() public UUID RecID = null; @References(HR_Staff.class) @Required() public String HR_Staff_StaffID = null; @Required() public ArrayList RowHash = null; @References(SY_UserGroups.class) @Required() public UUID SY_UserGroups_RecID = null; public Integer ItemNo = null; public UUID getRecID() { return RecID; } public SY_UserGroupMemberships setRecID(UUID value) { this.RecID = value; return this; } public String getHrStaffStaffID() { return HR_Staff_StaffID; } public SY_UserGroupMemberships setHrStaffStaffID(String value) { this.HR_Staff_StaffID = value; return this; } public ArrayList getRowHash() { return RowHash; } public SY_UserGroupMemberships setRowHash(ArrayList value) { this.RowHash = value; return this; } public UUID getSyUserGroupsRecID() { return SY_UserGroups_RecID; } public SY_UserGroupMemberships setSyUserGroupsRecID(UUID value) { this.SY_UserGroups_RecID = value; return this; } public Integer getItemNo() { return ItemNo; } public SY_UserGroupMemberships setItemNo(Integer value) { this.ItemNo = value; return this; } } public static class SY_UserGroupPermissions { @Required() public UUID RecID = null; @References(SY_UserGroups.class) @Required() public UUID SY_UserGroups_RecID = null; @References(SY_Forms.class) @Required() public String SY_Forms_ClassName = null; @Required() public String ControlType = null; @Required() public String ControlName = null; @Required() public Short ReadAccessLevel = null; @Required() public Short WriteAccessLevel = null; @Required() public Integer ItemNo = null; @Required() public ArrayList RowHash = null; public UUID getRecID() { return RecID; } public SY_UserGroupPermissions setRecID(UUID value) { this.RecID = value; return this; } public UUID getSyUserGroupsRecID() { return SY_UserGroups_RecID; } public SY_UserGroupPermissions setSyUserGroupsRecID(UUID value) { this.SY_UserGroups_RecID = value; return this; } public String getSyFormsClassName() { return SY_Forms_ClassName; } public SY_UserGroupPermissions setSyFormsClassName(String value) { this.SY_Forms_ClassName = value; return this; } public String getControlType() { return ControlType; } public SY_UserGroupPermissions setControlType(String value) { this.ControlType = value; return this; } public String getControlName() { return ControlName; } public SY_UserGroupPermissions setControlName(String value) { this.ControlName = value; return this; } public Short getReadAccessLevel() { return ReadAccessLevel; } public SY_UserGroupPermissions setReadAccessLevel(Short value) { this.ReadAccessLevel = value; return this; } public Short getWriteAccessLevel() { return WriteAccessLevel; } public SY_UserGroupPermissions setWriteAccessLevel(Short value) { this.WriteAccessLevel = value; return this; } public Integer getItemNo() { return ItemNo; } public SY_UserGroupPermissions setItemNo(Integer value) { this.ItemNo = value; return this; } public ArrayList getRowHash() { return RowHash; } public SY_UserGroupPermissions setRowHash(ArrayList value) { this.RowHash = value; return this; } } public static class SY_UserGroupRESTAPIPermissions { @Required() public UUID RecID = null; @References(SY_UserGroups.class) @Required() public UUID SY_UserGroups_RecID = null; @Required() public String RESTPath = null; @Required() public String Verb = null; public String Summary = null; @Required() public Short AccessLevel = null; @Required() public Integer ItemNo = null; @Required() public ArrayList RowHash = null; public UUID getRecID() { return RecID; } public SY_UserGroupRESTAPIPermissions setRecID(UUID value) { this.RecID = value; return this; } public UUID getSyUserGroupsRecID() { return SY_UserGroups_RecID; } public SY_UserGroupRESTAPIPermissions setSyUserGroupsRecID(UUID value) { this.SY_UserGroups_RecID = value; return this; } public String getRestPath() { return RESTPath; } public SY_UserGroupRESTAPIPermissions setRestPath(String value) { this.RESTPath = value; return this; } public String getVerb() { return Verb; } public SY_UserGroupRESTAPIPermissions setVerb(String value) { this.Verb = value; return this; } public String getSummary() { return Summary; } public SY_UserGroupRESTAPIPermissions setSummary(String value) { this.Summary = value; return this; } public Short getAccessLevel() { return AccessLevel; } public SY_UserGroupRESTAPIPermissions setAccessLevel(Short value) { this.AccessLevel = value; return this; } public Integer getItemNo() { return ItemNo; } public SY_UserGroupRESTAPIPermissions setItemNo(Integer value) { this.ItemNo = value; return this; } public ArrayList getRowHash() { return RowHash; } public SY_UserGroupRESTAPIPermissions setRowHash(ArrayList value) { this.RowHash = value; return this; } } public static class SY_UserGroups { @Required() public UUID RecID = null; public String Name = null; public String Description = null; @Required() public ArrayList RowHash = null; @Required() public Boolean IsDefault = null; @Required() public Boolean IsEnabled = null; @Required() public Boolean IsReadOnly = null; @Required() public Short DefaultReadAccessLevel = null; @Required() public Short DefaultWriteAccessLevel = null; @Required() public Short DefaultAbstractAccessLevel = null; @References(SY_Menu.class) public String SY_Menu_RecID = null; @Required() public Short DefaultRESTAPIAccessLevel = null; public UUID getRecID() { return RecID; } public SY_UserGroups setRecID(UUID value) { this.RecID = value; return this; } public String getName() { return Name; } public SY_UserGroups setName(String value) { this.Name = value; return this; } public String getDescription() { return Description; } public SY_UserGroups setDescription(String value) { this.Description = value; return this; } public ArrayList getRowHash() { return RowHash; } public SY_UserGroups setRowHash(ArrayList value) { this.RowHash = value; return this; } public Boolean getIsDefault() { return IsDefault; } public SY_UserGroups setIsDefault(Boolean value) { this.IsDefault = value; return this; } public Boolean getIsEnabled() { return IsEnabled; } public SY_UserGroups setIsEnabled(Boolean value) { this.IsEnabled = value; return this; } public Boolean getIsReadOnly() { return IsReadOnly; } public SY_UserGroups setIsReadOnly(Boolean value) { this.IsReadOnly = value; return this; } public Short getDefaultReadAccessLevel() { return DefaultReadAccessLevel; } public SY_UserGroups setDefaultReadAccessLevel(Short value) { this.DefaultReadAccessLevel = value; return this; } public Short getDefaultWriteAccessLevel() { return DefaultWriteAccessLevel; } public SY_UserGroups setDefaultWriteAccessLevel(Short value) { this.DefaultWriteAccessLevel = value; return this; } public Short getDefaultAbstractAccessLevel() { return DefaultAbstractAccessLevel; } public SY_UserGroups setDefaultAbstractAccessLevel(Short value) { this.DefaultAbstractAccessLevel = value; return this; } public String getSyMenuRecID() { return SY_Menu_RecID; } public SY_UserGroups setSyMenuRecID(String value) { this.SY_Menu_RecID = value; return this; } public Short getDefaultRESTAPIAccessLevel() { return DefaultRESTAPIAccessLevel; } public SY_UserGroups setDefaultRESTAPIAccessLevel(Short value) { this.DefaultRESTAPIAccessLevel = value; return this; } } @Route(Path="/Queries/SY_WebhookMessage", Verbs="GET") public static class SY_WebhookMessage { @Required() public UUID RecID = null; @References(SY_WebhookSubscription.class) @Required() public UUID SY_WebhookSubscription_RecID = null; public String Body = null; @Required() public Integer ItemNo = null; @Required() public Short Status = null; @Required() public Date LastSavedDateTime = null; @Required() public Date AddedDateTime = null; @Required() public Integer Retries = null; @Required() public ArrayList RowHash = null; public UUID getRecID() { return RecID; } public SY_WebhookMessage setRecID(UUID value) { this.RecID = value; return this; } public UUID getSyWebhookSubscriptionRecID() { return SY_WebhookSubscription_RecID; } public SY_WebhookMessage setSyWebhookSubscriptionRecID(UUID value) { this.SY_WebhookSubscription_RecID = value; return this; } public String getBody() { return Body; } public SY_WebhookMessage setBody(String value) { this.Body = value; return this; } public Integer getItemNo() { return ItemNo; } public SY_WebhookMessage setItemNo(Integer value) { this.ItemNo = value; return this; } public Short getStatus() { return Status; } public SY_WebhookMessage setStatus(Short value) { this.Status = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public SY_WebhookMessage setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getAddedDateTime() { return AddedDateTime; } public SY_WebhookMessage setAddedDateTime(Date value) { this.AddedDateTime = value; return this; } public Integer getRetries() { return Retries; } public SY_WebhookMessage setRetries(Integer value) { this.Retries = value; return this; } public ArrayList getRowHash() { return RowHash; } public SY_WebhookMessage setRowHash(ArrayList value) { this.RowHash = value; return this; } } @Route(Path="/Queries/SY_WebhookMessageResponse", Verbs="GET") public static class SY_WebhookMessageResponse { @Required() public UUID RecID = null; @References(SY_WebhookMessage.class) @Required() public UUID SY_WebhookMessage_RecID = null; @Required() public Integer HTTPCode = null; public String Message = null; @Required() public Integer ItemNo = null; @Required() public Date LastSavedDateTime = null; public UUID getRecID() { return RecID; } public SY_WebhookMessageResponse setRecID(UUID value) { this.RecID = value; return this; } public UUID getSyWebhookMessageRecID() { return SY_WebhookMessage_RecID; } public SY_WebhookMessageResponse setSyWebhookMessageRecID(UUID value) { this.SY_WebhookMessage_RecID = value; return this; } public Integer getHttpCode() { return HTTPCode; } public SY_WebhookMessageResponse setHttpCode(Integer value) { this.HTTPCode = value; return this; } public String getMessage() { return Message; } public SY_WebhookMessageResponse setMessage(String value) { this.Message = value; return this; } public Integer getItemNo() { return ItemNo; } public SY_WebhookMessageResponse setItemNo(Integer value) { this.ItemNo = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public SY_WebhookMessageResponse setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } } @Route(Path="/Queries/SY_WebhookSubscriptionRequestHeader", Verbs="GET") public static class SY_WebhookSubscriptionRequestHeader { @Required() public UUID RecID = null; @References(SY_WebhookSubscription.class) @Required() public UUID SY_WebhookSubscription_RecID = null; @Required() public String Name = null; @Required() public String Value = null; @Required() public Integer ItemNo = null; @Required() public Date LastSavedDateTime = null; @Required() public ArrayList RowHash = null; public UUID getRecID() { return RecID; } public SY_WebhookSubscriptionRequestHeader setRecID(UUID value) { this.RecID = value; return this; } public UUID getSyWebhookSubscriptionRecID() { return SY_WebhookSubscription_RecID; } public SY_WebhookSubscriptionRequestHeader setSyWebhookSubscriptionRecID(UUID value) { this.SY_WebhookSubscription_RecID = value; return this; } public String getName() { return Name; } public SY_WebhookSubscriptionRequestHeader setName(String value) { this.Name = value; return this; } public String getValue() { return Value; } public SY_WebhookSubscriptionRequestHeader setValue(String value) { this.Value = value; return this; } public Integer getItemNo() { return ItemNo; } public SY_WebhookSubscriptionRequestHeader setItemNo(Integer value) { this.ItemNo = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public SY_WebhookSubscriptionRequestHeader setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public ArrayList getRowHash() { return RowHash; } public SY_WebhookSubscriptionRequestHeader setRowHash(ArrayList value) { this.RowHash = value; return this; } } public static class SYS_Processes { @Required() public String ID = null; public Date LastSavedDateTime = null; @Required() public String IDKey = null; public String Contents = null; public String getId() { return ID; } public SYS_Processes setId(String value) { this.ID = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public SYS_Processes setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public String getIdKey() { return IDKey; } public SYS_Processes setIdKey(String value) { this.IDKey = value; return this; } public String getContents() { return Contents; } public SYS_Processes setContents(String value) { this.Contents = value; return this; } } public static class TD_Collaborations { @Required() public String RecID = null; @References(TD_Main.class) @Required() public String TD_Main_RecID = null; @References(HR_Staff.class) @Required() public String HR_Staff_RecID = null; @Required() public Boolean NotificationEnabled = null; public String NotificationText = null; @Required() public Date LastSavedDateTime = null; @Required() public ArrayList RowHash = null; @Required() public Integer ItemNo = null; @Required() public Boolean NotificationSent = null; public String getRecID() { return RecID; } public TD_Collaborations setRecID(String value) { this.RecID = value; return this; } public String getTdMainRecID() { return TD_Main_RecID; } public TD_Collaborations setTdMainRecID(String value) { this.TD_Main_RecID = value; return this; } public String getHrStaffRecID() { return HR_Staff_RecID; } public TD_Collaborations setHrStaffRecID(String value) { this.HR_Staff_RecID = value; return this; } public Boolean isNotificationEnabled() { return NotificationEnabled; } public TD_Collaborations setNotificationEnabled(Boolean value) { this.NotificationEnabled = value; return this; } public String getNotificationText() { return NotificationText; } public TD_Collaborations setNotificationText(String value) { this.NotificationText = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public TD_Collaborations setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public ArrayList getRowHash() { return RowHash; } public TD_Collaborations setRowHash(ArrayList value) { this.RowHash = value; return this; } public Integer getItemNo() { return ItemNo; } public TD_Collaborations setItemNo(Integer value) { this.ItemNo = value; return this; } public Boolean isNotificationSent() { return NotificationSent; } public TD_Collaborations setNotificationSent(Boolean value) { this.NotificationSent = value; return this; } } public static class TD_CustomSettings { @Required() public String SettingID = null; @Required() public Date LastSavedDateTime = null; public String SettingDescription = null; public String SettingName = null; public BigDecimal DisplayOrder = null; public Short CellType = null; public String ScriptFormatCell = null; public String ScriptButtonClicked = null; public String ScriptReadData = null; @References(SY_Plugin.class) @Required() public UUID SY_Plugin_RecID = null; public String getSettingID() { return SettingID; } public TD_CustomSettings setSettingID(String value) { this.SettingID = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public TD_CustomSettings setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public String getSettingDescription() { return SettingDescription; } public TD_CustomSettings setSettingDescription(String value) { this.SettingDescription = value; return this; } public String getSettingName() { return SettingName; } public TD_CustomSettings setSettingName(String value) { this.SettingName = value; return this; } public BigDecimal getDisplayOrder() { return DisplayOrder; } public TD_CustomSettings setDisplayOrder(BigDecimal value) { this.DisplayOrder = value; return this; } public Short getCellType() { return CellType; } public TD_CustomSettings setCellType(Short value) { this.CellType = value; return this; } public String getScriptFormatCell() { return ScriptFormatCell; } public TD_CustomSettings setScriptFormatCell(String value) { this.ScriptFormatCell = value; return this; } public String getScriptButtonClicked() { return ScriptButtonClicked; } public TD_CustomSettings setScriptButtonClicked(String value) { this.ScriptButtonClicked = value; return this; } public String getScriptReadData() { return ScriptReadData; } public TD_CustomSettings setScriptReadData(String value) { this.ScriptReadData = value; return this; } public UUID getSyPluginRecID() { return SY_Plugin_RecID; } public TD_CustomSettings setSyPluginRecID(UUID value) { this.SY_Plugin_RecID = value; return this; } } public static class TD_CustomSettingValues { @Required() public String SettingValueID = null; @Required() public String SettingID = null; @Required() public String TD_Main_RecID = null; public String Contents = null; @Required() public Date LastSavedDateTime = null; public String getSettingValueID() { return SettingValueID; } public TD_CustomSettingValues setSettingValueID(String value) { this.SettingValueID = value; return this; } public String getSettingID() { return SettingID; } public TD_CustomSettingValues setSettingID(String value) { this.SettingID = value; return this; } public String getTdMainRecID() { return TD_Main_RecID; } public TD_CustomSettingValues setTdMainRecID(String value) { this.TD_Main_RecID = value; return this; } public String getContents() { return Contents; } public TD_CustomSettingValues setContents(String value) { this.Contents = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public TD_CustomSettingValues setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } } public static class TD_Dependencies { @Required() public String RecID = null; @References(TD_Main.class) @Required() public String TD_Main_RecID_Dependent = null; @References(TD_Main.class) @Required() public String TD_Main_RecID_Dependency = null; @Required() public Date LastSavedDateTime = null; @Required() public Integer ItemNo = null; @Required() public ArrayList RowHash = null; public String getRecID() { return RecID; } public TD_Dependencies setRecID(String value) { this.RecID = value; return this; } public String getTdMainRecIDDependent() { return TD_Main_RecID_Dependent; } public TD_Dependencies setTdMainRecIDDependent(String value) { this.TD_Main_RecID_Dependent = value; return this; } public String getTdMainRecIDDependency() { return TD_Main_RecID_Dependency; } public TD_Dependencies setTdMainRecIDDependency(String value) { this.TD_Main_RecID_Dependency = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public TD_Dependencies setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Integer getItemNo() { return ItemNo; } public TD_Dependencies setItemNo(Integer value) { this.ItemNo = value; return this; } public ArrayList getRowHash() { return RowHash; } public TD_Dependencies setRowHash(ArrayList value) { this.RowHash = value; return this; } } public static class TD_Documents { @Required() public String RecID = null; @References(TD_Main.class) @Required() public String TD_Main_RecID = null; @Required() public String DocumentTypeID = null; public Date LastSavedDateTime = null; @References(HR_Staff.class) @Required() public String LastSavedByStaffID = null; public ArrayList FileBinary = null; public String Description = null; public String PhysicalFileName = null; @Required() public Integer ItemNo = null; public String getRecID() { return RecID; } public TD_Documents setRecID(String value) { this.RecID = value; return this; } public String getTdMainRecID() { return TD_Main_RecID; } public TD_Documents setTdMainRecID(String value) { this.TD_Main_RecID = value; return this; } public String getDocumentTypeID() { return DocumentTypeID; } public TD_Documents setDocumentTypeID(String value) { this.DocumentTypeID = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public TD_Documents setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public String getLastSavedByStaffID() { return LastSavedByStaffID; } public TD_Documents setLastSavedByStaffID(String value) { this.LastSavedByStaffID = value; return this; } public ArrayList getFileBinary() { return FileBinary; } public TD_Documents setFileBinary(ArrayList value) { this.FileBinary = value; return this; } public String getDescription() { return Description; } public TD_Documents setDescription(String value) { this.Description = value; return this; } public String getPhysicalFileName() { return PhysicalFileName; } public TD_Documents setPhysicalFileName(String value) { this.PhysicalFileName = value; return this; } public Integer getItemNo() { return ItemNo; } public TD_Documents setItemNo(Integer value) { this.ItemNo = value; return this; } } public static class TD_Main { @Required() public String RecID = null; @Required() public String ToDoNo = null; @Required() public String Subject = null; @Required() public String Body = null; @References(TD_Priorities.class) @Required() public String TD_Priorities_RecID = null; @Required() public Integer DurationInHours = null; @References(HR_Staff.class) @Required() public String AssignedBy_HR_Staff_RecID = null; @References(HR_Staff.class) public String AssignedTo_HR_Staff_RecID = null; @Required() public Boolean ReminderEnabled = null; @Required() public Integer ReminderTrigger = null; @Required() public Integer ReminderPredefinedSetting = null; @Required() public Date ReminderSpecificDateTime = null; public String Source_SY_Forms_ClassName = null; public String Source_RecID = null; public String TD_ToDoTypes_RecID = null; @Required() public Boolean UsesStatusTracking = null; public String TD_Statuses_RecID = null; @Required() public Integer CompletePercentage = null; @References(HR_Staff.class) @Required() public String LastSaved_HR_Staff_RecID = null; @Required() public Date LastSavedDateTime = null; @Required() public Date DueDateTime = null; public Date FinishedDateTime = null; @Required() public Boolean HasBeenRead = null; @Required() public Boolean ReminderSent = null; public String Source_DisplayText = null; public String getRecID() { return RecID; } public TD_Main setRecID(String value) { this.RecID = value; return this; } public String getToDoNo() { return ToDoNo; } public TD_Main setToDoNo(String value) { this.ToDoNo = value; return this; } public String getSubject() { return Subject; } public TD_Main setSubject(String value) { this.Subject = value; return this; } public String getBody() { return Body; } public TD_Main setBody(String value) { this.Body = value; return this; } public String getTdPrioritiesRecID() { return TD_Priorities_RecID; } public TD_Main setTdPrioritiesRecID(String value) { this.TD_Priorities_RecID = value; return this; } public Integer getDurationInHours() { return DurationInHours; } public TD_Main setDurationInHours(Integer value) { this.DurationInHours = value; return this; } public String getAssignedByHrStaffRecID() { return AssignedBy_HR_Staff_RecID; } public TD_Main setAssignedByHrStaffRecID(String value) { this.AssignedBy_HR_Staff_RecID = value; return this; } public String getAssignedToHrStaffRecID() { return AssignedTo_HR_Staff_RecID; } public TD_Main setAssignedToHrStaffRecID(String value) { this.AssignedTo_HR_Staff_RecID = value; return this; } public Boolean isReminderEnabled() { return ReminderEnabled; } public TD_Main setReminderEnabled(Boolean value) { this.ReminderEnabled = value; return this; } public Integer getReminderTrigger() { return ReminderTrigger; } public TD_Main setReminderTrigger(Integer value) { this.ReminderTrigger = value; return this; } public Integer getReminderPredefinedSetting() { return ReminderPredefinedSetting; } public TD_Main setReminderPredefinedSetting(Integer value) { this.ReminderPredefinedSetting = value; return this; } public Date getReminderSpecificDateTime() { return ReminderSpecificDateTime; } public TD_Main setReminderSpecificDateTime(Date value) { this.ReminderSpecificDateTime = value; return this; } public String getSourceSyFormsClassName() { return Source_SY_Forms_ClassName; } public TD_Main setSourceSyFormsClassName(String value) { this.Source_SY_Forms_ClassName = value; return this; } public String getSourceRecID() { return Source_RecID; } public TD_Main setSourceRecID(String value) { this.Source_RecID = value; return this; } public String getTdToDoTypesRecID() { return TD_ToDoTypes_RecID; } public TD_Main setTdToDoTypesRecID(String value) { this.TD_ToDoTypes_RecID = value; return this; } public Boolean isUsesStatusTracking() { return UsesStatusTracking; } public TD_Main setUsesStatusTracking(Boolean value) { this.UsesStatusTracking = value; return this; } public String getTdStatusesRecID() { return TD_Statuses_RecID; } public TD_Main setTdStatusesRecID(String value) { this.TD_Statuses_RecID = value; return this; } public Integer getCompletePercentage() { return CompletePercentage; } public TD_Main setCompletePercentage(Integer value) { this.CompletePercentage = value; return this; } public String getLastSavedHrStaffRecID() { return LastSaved_HR_Staff_RecID; } public TD_Main setLastSavedHrStaffRecID(String value) { this.LastSaved_HR_Staff_RecID = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public TD_Main setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getDueDateTime() { return DueDateTime; } public TD_Main setDueDateTime(Date value) { this.DueDateTime = value; return this; } public Date getFinishedDateTime() { return FinishedDateTime; } public TD_Main setFinishedDateTime(Date value) { this.FinishedDateTime = value; return this; } public Boolean isHasBeenRead() { return HasBeenRead; } public TD_Main setHasBeenRead(Boolean value) { this.HasBeenRead = value; return this; } public Boolean isReminderSent() { return ReminderSent; } public TD_Main setReminderSent(Boolean value) { this.ReminderSent = value; return this; } public String getSourceDisplayText() { return Source_DisplayText; } public TD_Main setSourceDisplayText(String value) { this.Source_DisplayText = value; return this; } } public static class TD_Notes { @Required() public String RecID = null; @References(TD_Main.class) @Required() public String TD_Main_RecID = null; @References(SY_NoteTypes.class) @Required() public String NoteTypeID = null; @Required() public Date LastSavedDateTime = null; @Required() public String LastSavedByStaffID = null; public String NoteText = null; @Required() public Integer ItemNo = null; public String getRecID() { return RecID; } public TD_Notes setRecID(String value) { this.RecID = value; return this; } public String getTdMainRecID() { return TD_Main_RecID; } public TD_Notes setTdMainRecID(String value) { this.TD_Main_RecID = value; return this; } public String getNoteTypeID() { return NoteTypeID; } public TD_Notes setNoteTypeID(String value) { this.NoteTypeID = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public TD_Notes setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public String getLastSavedByStaffID() { return LastSavedByStaffID; } public TD_Notes setLastSavedByStaffID(String value) { this.LastSavedByStaffID = value; return this; } public String getNoteText() { return NoteText; } public TD_Notes setNoteText(String value) { this.NoteText = value; return this; } public Integer getItemNo() { return ItemNo; } public TD_Notes setItemNo(Integer value) { this.ItemNo = value; return this; } } public static class TD_Priorities { @Required() public String RecID = null; @Required() public String Name = null; public String Description = null; @Required() public Integer ItemNo = null; public Boolean IsEnabled = null; @Required() public ArrayList RowHash = null; public Boolean IsDefault = null; public String getRecID() { return RecID; } public TD_Priorities setRecID(String value) { this.RecID = value; return this; } public String getName() { return Name; } public TD_Priorities setName(String value) { this.Name = value; return this; } public String getDescription() { return Description; } public TD_Priorities setDescription(String value) { this.Description = value; return this; } public Integer getItemNo() { return ItemNo; } public TD_Priorities setItemNo(Integer value) { this.ItemNo = value; return this; } public Boolean getIsEnabled() { return IsEnabled; } public TD_Priorities setIsEnabled(Boolean value) { this.IsEnabled = value; return this; } public ArrayList getRowHash() { return RowHash; } public TD_Priorities setRowHash(ArrayList value) { this.RowHash = value; return this; } public Boolean getIsDefault() { return IsDefault; } public TD_Priorities setIsDefault(Boolean value) { this.IsDefault = value; return this; } } public static class TD_SourceTypes { @Required() public String RecID = null; @References(SY_Forms.class) public String ClassName = null; @Required() public ArrayList RowHash = null; public String getRecID() { return RecID; } public TD_SourceTypes setRecID(String value) { this.RecID = value; return this; } public String getClassName() { return ClassName; } public TD_SourceTypes setClassName(String value) { this.ClassName = value; return this; } public ArrayList getRowHash() { return RowHash; } public TD_SourceTypes setRowHash(ArrayList value) { this.RowHash = value; return this; } } public static class TD_Statuses { @Required() public String RecID = null; @Required() public String Name = null; public String Description = null; @Required() public Integer ItemNo = null; @Required() public Integer PercentageComplete = null; @Required() public Boolean IsEnabled = null; @Required() public ArrayList RowHash = null; public String getRecID() { return RecID; } public TD_Statuses setRecID(String value) { this.RecID = value; return this; } public String getName() { return Name; } public TD_Statuses setName(String value) { this.Name = value; return this; } public String getDescription() { return Description; } public TD_Statuses setDescription(String value) { this.Description = value; return this; } public Integer getItemNo() { return ItemNo; } public TD_Statuses setItemNo(Integer value) { this.ItemNo = value; return this; } public Integer getPercentageComplete() { return PercentageComplete; } public TD_Statuses setPercentageComplete(Integer value) { this.PercentageComplete = value; return this; } public Boolean getIsEnabled() { return IsEnabled; } public TD_Statuses setIsEnabled(Boolean value) { this.IsEnabled = value; return this; } public ArrayList getRowHash() { return RowHash; } public TD_Statuses setRowHash(ArrayList value) { this.RowHash = value; return this; } } public static class TD_ToDoTypes { @Required() public String RecID = null; @Required() public Boolean IsDefault = null; @Required() public String Description = null; @Required() public Date LastSavedDateTime = null; @Required() public Integer ItemNo = null; @Required() public String TD_SourceTypes_RecID = null; public String getRecID() { return RecID; } public TD_ToDoTypes setRecID(String value) { this.RecID = value; return this; } public Boolean getIsDefault() { return IsDefault; } public TD_ToDoTypes setIsDefault(Boolean value) { this.IsDefault = value; return this; } public String getDescription() { return Description; } public TD_ToDoTypes setDescription(String value) { this.Description = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public TD_ToDoTypes setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Integer getItemNo() { return ItemNo; } public TD_ToDoTypes setItemNo(Integer value) { this.ItemNo = value; return this; } public String getTdSourceTypesRecID() { return TD_SourceTypes_RecID; } public TD_ToDoTypes setTdSourceTypesRecID(String value) { this.TD_SourceTypes_RecID = value; return this; } } public static class TX_Main { @Required() public String TaxID = null; public String Description = null; public BigDecimal TaxRate = null; public Date LastSavedDateTime = null; public String S1 = null; public String S2 = null; public String S3 = null; public String S4 = null; public Integer DefaultRate = null; @Required() public Integer GSTTaxGroup = null; @Required() public Boolean DefaultRateInGroup = null; public Integer BASCode = null; @Required() public Boolean Disabled = null; public String getTaxID() { return TaxID; } public TX_Main setTaxID(String value) { this.TaxID = value; return this; } public String getDescription() { return Description; } public TX_Main setDescription(String value) { this.Description = value; return this; } public BigDecimal getTaxRate() { return TaxRate; } public TX_Main setTaxRate(BigDecimal value) { this.TaxRate = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public TX_Main setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public String getS1() { return S1; } public TX_Main setS1(String value) { this.S1 = value; return this; } public String getS2() { return S2; } public TX_Main setS2(String value) { this.S2 = value; return this; } public String getS3() { return S3; } public TX_Main setS3(String value) { this.S3 = value; return this; } public String getS4() { return S4; } public TX_Main setS4(String value) { this.S4 = value; return this; } public Integer getDefaultRate() { return DefaultRate; } public TX_Main setDefaultRate(Integer value) { this.DefaultRate = value; return this; } public Integer getGstTaxGroup() { return GSTTaxGroup; } public TX_Main setGstTaxGroup(Integer value) { this.GSTTaxGroup = value; return this; } public Boolean isDefaultRateInGroup() { return DefaultRateInGroup; } public TX_Main setDefaultRateInGroup(Boolean value) { this.DefaultRateInGroup = value; return this; } public Integer getBasCode() { return BASCode; } public TX_Main setBasCode(Integer value) { this.BASCode = value; return this; } public Boolean isDisabled() { return Disabled; } public TX_Main setDisabled(Boolean value) { this.Disabled = value; return this; } } public static class v_AllWarehouses { public String Warehouse = null; public String getWarehouse() { return Warehouse; } public v_AllWarehouses setWarehouse(String value) { this.Warehouse = value; return this; } } public static class v_APIKey { @Required() public UUID RecID = null; public String Name = null; @Required() public String PrincipalID = null; @Required() public String HR_Staff_StaffID = null; @Required() public Date CreatedDateTime = null; public Date ExpiryDateTime = null; public Date CancelledDateTime = null; @Required() public Date LastSavedDateTime = null; @Required() public String KeyValue = null; @Required() public Boolean IsEnabled = null; @Required() public Integer ItemNo = null; @Required() public String KeyType = null; public UUID getRecID() { return RecID; } public v_APIKey setRecID(UUID value) { this.RecID = value; return this; } public String getName() { return Name; } public v_APIKey setName(String value) { this.Name = value; return this; } public String getPrincipalID() { return PrincipalID; } public v_APIKey setPrincipalID(String value) { this.PrincipalID = value; return this; } public String getHrStaffStaffID() { return HR_Staff_StaffID; } public v_APIKey setHrStaffStaffID(String value) { this.HR_Staff_StaffID = value; return this; } public Date getCreatedDateTime() { return CreatedDateTime; } public v_APIKey setCreatedDateTime(Date value) { this.CreatedDateTime = value; return this; } public Date getExpiryDateTime() { return ExpiryDateTime; } public v_APIKey setExpiryDateTime(Date value) { this.ExpiryDateTime = value; return this; } public Date getCancelledDateTime() { return CancelledDateTime; } public v_APIKey setCancelledDateTime(Date value) { this.CancelledDateTime = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public v_APIKey setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public String getKeyValue() { return KeyValue; } public v_APIKey setKeyValue(String value) { this.KeyValue = value; return this; } public Boolean getIsEnabled() { return IsEnabled; } public v_APIKey setIsEnabled(Boolean value) { this.IsEnabled = value; return this; } public Integer getItemNo() { return ItemNo; } public v_APIKey setItemNo(Integer value) { this.ItemNo = value; return this; } public String getKeyType() { return KeyType; } public v_APIKey setKeyType(String value) { this.KeyType = value; return this; } } public static class V_BASCodeNum { @Required() public String transcode3id = null; @Required() public String Description = null; public String getTranscode3id() { return transcode3id; } public V_BASCodeNum setTranscode3id(String value) { this.transcode3id = value; return this; } public String getDescription() { return Description; } public V_BASCodeNum setDescription(String value) { this.Description = value; return this; } } public static class V_BOMSold { public String SourceID = null; public BigDecimal BOM_QuantitySold = null; public String getSourceID() { return SourceID; } public V_BOMSold setSourceID(String value) { this.SourceID = value; return this; } public BigDecimal getBomQuantitySold() { return BOM_QuantitySold; } public V_BOMSold setBomQuantitySold(BigDecimal value) { this.BOM_QuantitySold = value; return this; } } public static class V_CR_AgedTrans { @Required() public String TransID = null; @Required() public String CreditorID = null; @Required() public Boolean DebitCredit = null; public String Ref = null; public String Remark = null; public Date TranDate = null; public String InvRemitNo = null; public BigDecimal AllocatedAmount = null; public String Source = null; public BigDecimal Amount = null; public String getTransID() { return TransID; } public V_CR_AgedTrans setTransID(String value) { this.TransID = value; return this; } public String getCreditorID() { return CreditorID; } public V_CR_AgedTrans setCreditorID(String value) { this.CreditorID = value; return this; } public Boolean isDebitCredit() { return DebitCredit; } public V_CR_AgedTrans setDebitCredit(Boolean value) { this.DebitCredit = value; return this; } public String getRef() { return Ref; } public V_CR_AgedTrans setRef(String value) { this.Ref = value; return this; } public String getRemark() { return Remark; } public V_CR_AgedTrans setRemark(String value) { this.Remark = value; return this; } public Date getTranDate() { return TranDate; } public V_CR_AgedTrans setTranDate(Date value) { this.TranDate = value; return this; } public String getInvRemitNo() { return InvRemitNo; } public V_CR_AgedTrans setInvRemitNo(String value) { this.InvRemitNo = value; return this; } public BigDecimal getAllocatedAmount() { return AllocatedAmount; } public V_CR_AgedTrans setAllocatedAmount(BigDecimal value) { this.AllocatedAmount = value; return this; } public String getSource() { return Source; } public V_CR_AgedTrans setSource(String value) { this.Source = value; return this; } public BigDecimal getAmount() { return Amount; } public V_CR_AgedTrans setAmount(BigDecimal value) { this.Amount = value; return this; } } public static class V_CR_PurchaseShipments { public String CreditorID = null; @Required() public String Type = null; public Date TranDate = null; public Date DueDate = null; public String InvoiceNo = null; public String PartNo = null; public String PartDescription = null; public BigDecimal Quantity = null; public BigDecimal UnitCost = null; public BigDecimal TotalCost = null; public BigDecimal TaxAmount = null; public BigDecimal IncTotal = null; public BigDecimal CurrencyRate = null; public BigDecimal FxUnitCost = null; public BigDecimal FxTotalCost = null; public String getCreditorID() { return CreditorID; } public V_CR_PurchaseShipments setCreditorID(String value) { this.CreditorID = value; return this; } public String getType() { return Type; } public V_CR_PurchaseShipments setType(String value) { this.Type = value; return this; } public Date getTranDate() { return TranDate; } public V_CR_PurchaseShipments setTranDate(Date value) { this.TranDate = value; return this; } public Date getDueDate() { return DueDate; } public V_CR_PurchaseShipments setDueDate(Date value) { this.DueDate = value; return this; } public String getInvoiceNo() { return InvoiceNo; } public V_CR_PurchaseShipments setInvoiceNo(String value) { this.InvoiceNo = value; return this; } public String getPartNo() { return PartNo; } public V_CR_PurchaseShipments setPartNo(String value) { this.PartNo = value; return this; } public String getPartDescription() { return PartDescription; } public V_CR_PurchaseShipments setPartDescription(String value) { this.PartDescription = value; return this; } public BigDecimal getQuantity() { return Quantity; } public V_CR_PurchaseShipments setQuantity(BigDecimal value) { this.Quantity = value; return this; } public BigDecimal getUnitCost() { return UnitCost; } public V_CR_PurchaseShipments setUnitCost(BigDecimal value) { this.UnitCost = value; return this; } public BigDecimal getTotalCost() { return TotalCost; } public V_CR_PurchaseShipments setTotalCost(BigDecimal value) { this.TotalCost = value; return this; } public BigDecimal getTaxAmount() { return TaxAmount; } public V_CR_PurchaseShipments setTaxAmount(BigDecimal value) { this.TaxAmount = value; return this; } public BigDecimal getIncTotal() { return IncTotal; } public V_CR_PurchaseShipments setIncTotal(BigDecimal value) { this.IncTotal = value; return this; } public BigDecimal getCurrencyRate() { return CurrencyRate; } public V_CR_PurchaseShipments setCurrencyRate(BigDecimal value) { this.CurrencyRate = value; return this; } public BigDecimal getFxUnitCost() { return FxUnitCost; } public V_CR_PurchaseShipments setFxUnitCost(BigDecimal value) { this.FxUnitCost = value; return this; } public BigDecimal getFxTotalCost() { return FxTotalCost; } public V_CR_PurchaseShipments setFxTotalCost(BigDecimal value) { this.FxTotalCost = value; return this; } } public static class V_CRGL_Reconciliation { @Required() public String ID = null; @Required() public String Accountno = null; public String Description = null; public Date TransDate = null; public String SourceText = null; @Required() public String SourceID = null; public Integer SourceNum = null; @Required() public Integer SubTypeNum = null; public BigDecimal Value = null; public Boolean DebitCredit = null; @Required() public String ReportType = null; public String getId() { return ID; } public V_CRGL_Reconciliation setId(String value) { this.ID = value; return this; } public String getAccountno() { return Accountno; } public V_CRGL_Reconciliation setAccountno(String value) { this.Accountno = value; return this; } public String getDescription() { return Description; } public V_CRGL_Reconciliation setDescription(String value) { this.Description = value; return this; } public Date getTransDate() { return TransDate; } public V_CRGL_Reconciliation setTransDate(Date value) { this.TransDate = value; return this; } public String getSourceText() { return SourceText; } public V_CRGL_Reconciliation setSourceText(String value) { this.SourceText = value; return this; } public String getSourceID() { return SourceID; } public V_CRGL_Reconciliation setSourceID(String value) { this.SourceID = value; return this; } public Integer getSourceNum() { return SourceNum; } public V_CRGL_Reconciliation setSourceNum(Integer value) { this.SourceNum = value; return this; } public Integer getSubTypeNum() { return SubTypeNum; } public V_CRGL_Reconciliation setSubTypeNum(Integer value) { this.SubTypeNum = value; return this; } public BigDecimal getValue() { return Value; } public V_CRGL_Reconciliation setValue(BigDecimal value) { this.Value = value; return this; } public Boolean isDebitCredit() { return DebitCredit; } public V_CRGL_Reconciliation setDebitCredit(Boolean value) { this.DebitCredit = value; return this; } public String getReportType() { return ReportType; } public V_CRGL_Reconciliation setReportType(String value) { this.ReportType = value; return this; } } public static class V_DBGL_Reconciliation { @Required() public String ID = null; @Required() public String Accountno = null; public String Description = null; public Date TransDate = null; public String SourceText = null; @Required() public String SourceID = null; public Integer SourceNum = null; public Integer SubTypeNum = null; public BigDecimal Value = null; public Boolean DebitCredit = null; @Required() public String ReportType = null; public String getId() { return ID; } public V_DBGL_Reconciliation setId(String value) { this.ID = value; return this; } public String getAccountno() { return Accountno; } public V_DBGL_Reconciliation setAccountno(String value) { this.Accountno = value; return this; } public String getDescription() { return Description; } public V_DBGL_Reconciliation setDescription(String value) { this.Description = value; return this; } public Date getTransDate() { return TransDate; } public V_DBGL_Reconciliation setTransDate(Date value) { this.TransDate = value; return this; } public String getSourceText() { return SourceText; } public V_DBGL_Reconciliation setSourceText(String value) { this.SourceText = value; return this; } public String getSourceID() { return SourceID; } public V_DBGL_Reconciliation setSourceID(String value) { this.SourceID = value; return this; } public Integer getSourceNum() { return SourceNum; } public V_DBGL_Reconciliation setSourceNum(Integer value) { this.SourceNum = value; return this; } public Integer getSubTypeNum() { return SubTypeNum; } public V_DBGL_Reconciliation setSubTypeNum(Integer value) { this.SubTypeNum = value; return this; } public BigDecimal getValue() { return Value; } public V_DBGL_Reconciliation setValue(BigDecimal value) { this.Value = value; return this; } public Boolean isDebitCredit() { return DebitCredit; } public V_DBGL_Reconciliation setDebitCredit(Boolean value) { this.DebitCredit = value; return this; } public String getReportType() { return ReportType; } public V_DBGL_Reconciliation setReportType(String value) { this.ReportType = value; return this; } } public static class V_DBStatement_Trans { @Required() public String AccountNo = null; @Required() public String DebtorID = null; public Boolean DebitCredit = null; public String Ref = null; public String Remark = null; public Date TranDate = null; public String InvRemitNo = null; public BigDecimal DiscountedAmount = null; public BigDecimal AllocatedAmount = null; public Short SubType = null; public Boolean AgedOut = null; public String TransID = null; public String getAccountNo() { return AccountNo; } public V_DBStatement_Trans setAccountNo(String value) { this.AccountNo = value; return this; } public String getDebtorID() { return DebtorID; } public V_DBStatement_Trans setDebtorID(String value) { this.DebtorID = value; return this; } public Boolean isDebitCredit() { return DebitCredit; } public V_DBStatement_Trans setDebitCredit(Boolean value) { this.DebitCredit = value; return this; } public String getRef() { return Ref; } public V_DBStatement_Trans setRef(String value) { this.Ref = value; return this; } public String getRemark() { return Remark; } public V_DBStatement_Trans setRemark(String value) { this.Remark = value; return this; } public Date getTranDate() { return TranDate; } public V_DBStatement_Trans setTranDate(Date value) { this.TranDate = value; return this; } public String getInvRemitNo() { return InvRemitNo; } public V_DBStatement_Trans setInvRemitNo(String value) { this.InvRemitNo = value; return this; } public BigDecimal getDiscountedAmount() { return DiscountedAmount; } public V_DBStatement_Trans setDiscountedAmount(BigDecimal value) { this.DiscountedAmount = value; return this; } public BigDecimal getAllocatedAmount() { return AllocatedAmount; } public V_DBStatement_Trans setAllocatedAmount(BigDecimal value) { this.AllocatedAmount = value; return this; } public Short getSubType() { return SubType; } public V_DBStatement_Trans setSubType(Short value) { this.SubType = value; return this; } public Boolean isAgedOut() { return AgedOut; } public V_DBStatement_Trans setAgedOut(Boolean value) { this.AgedOut = value; return this; } public String getTransID() { return TransID; } public V_DBStatement_Trans setTransID(String value) { this.TransID = value; return this; } } public static class V_DBStatement_TransAsAt { @Required() public String AccountNo = null; @Required() public String DebtorID = null; public String TransID = null; public Boolean DebitCredit = null; public String Ref = null; public String Remark = null; public Date TranDate = null; public String InvRemitNo = null; public BigDecimal DiscountedAmount = null; public BigDecimal AllocatedAmount = null; public Short SubType = null; public Boolean AgedOut = null; public String getAccountNo() { return AccountNo; } public V_DBStatement_TransAsAt setAccountNo(String value) { this.AccountNo = value; return this; } public String getDebtorID() { return DebtorID; } public V_DBStatement_TransAsAt setDebtorID(String value) { this.DebtorID = value; return this; } public String getTransID() { return TransID; } public V_DBStatement_TransAsAt setTransID(String value) { this.TransID = value; return this; } public Boolean isDebitCredit() { return DebitCredit; } public V_DBStatement_TransAsAt setDebitCredit(Boolean value) { this.DebitCredit = value; return this; } public String getRef() { return Ref; } public V_DBStatement_TransAsAt setRef(String value) { this.Ref = value; return this; } public String getRemark() { return Remark; } public V_DBStatement_TransAsAt setRemark(String value) { this.Remark = value; return this; } public Date getTranDate() { return TranDate; } public V_DBStatement_TransAsAt setTranDate(Date value) { this.TranDate = value; return this; } public String getInvRemitNo() { return InvRemitNo; } public V_DBStatement_TransAsAt setInvRemitNo(String value) { this.InvRemitNo = value; return this; } public BigDecimal getDiscountedAmount() { return DiscountedAmount; } public V_DBStatement_TransAsAt setDiscountedAmount(BigDecimal value) { this.DiscountedAmount = value; return this; } public BigDecimal getAllocatedAmount() { return AllocatedAmount; } public V_DBStatement_TransAsAt setAllocatedAmount(BigDecimal value) { this.AllocatedAmount = value; return this; } public Short getSubType() { return SubType; } public V_DBStatement_TransAsAt setSubType(Short value) { this.SubType = value; return this; } public Boolean isAgedOut() { return AgedOut; } public V_DBStatement_TransAsAt setAgedOut(Boolean value) { this.AgedOut = value; return this; } } public static class v_DebtorBalanceInformation { public String DebtorID = null; public Date DueDate = null; public BigDecimal Balance = null; public String Source = null; public String getDebtorID() { return DebtorID; } public v_DebtorBalanceInformation setDebtorID(String value) { this.DebtorID = value; return this; } public Date getDueDate() { return DueDate; } public v_DebtorBalanceInformation setDueDate(Date value) { this.DueDate = value; return this; } public BigDecimal getBalance() { return Balance; } public v_DebtorBalanceInformation setBalance(BigDecimal value) { this.Balance = value; return this; } public String getSource() { return Source; } public v_DebtorBalanceInformation setSource(String value) { this.Source = value; return this; } } public static class v_Debtors { @Required() public String DebtorID = null; public String DebtorAccountnoAndName = null; @Required() public String ClassificationID = null; public String getDebtorID() { return DebtorID; } public v_Debtors setDebtorID(String value) { this.DebtorID = value; return this; } public String getDebtorAccountnoAndName() { return DebtorAccountnoAndName; } public v_Debtors setDebtorAccountnoAndName(String value) { this.DebtorAccountnoAndName = value; return this; } public String getClassificationID() { return ClassificationID; } public v_Debtors setClassificationID(String value) { this.ClassificationID = value; return this; } } public static class v_DebtorTransactionSources { @Required() public Integer SourceNo = null; @Required() public String SourceName = null; public Integer getSourceNo() { return SourceNo; } public v_DebtorTransactionSources setSourceNo(Integer value) { this.SourceNo = value; return this; } public String getSourceName() { return SourceName; } public v_DebtorTransactionSources setSourceName(String value) { this.SourceName = value; return this; } } public static class V_G_Category { @Required() public String GLCategoryID = null; public String Description = null; public String Group1 = null; @Required() public String ExpSign = null; @Required() public String AccType = null; public String Group2 = null; public String getGlCategoryID() { return GLCategoryID; } public V_G_Category setGlCategoryID(String value) { this.GLCategoryID = value; return this; } public String getDescription() { return Description; } public V_G_Category setDescription(String value) { this.Description = value; return this; } public String getGroup1() { return Group1; } public V_G_Category setGroup1(String value) { this.Group1 = value; return this; } public String getExpSign() { return ExpSign; } public V_G_Category setExpSign(String value) { this.ExpSign = value; return this; } public String getAccType() { return AccType; } public V_G_Category setAccType(String value) { this.AccType = value; return this; } public String getGroup2() { return Group2; } public V_G_Category setGroup2(String value) { this.Group2 = value; return this; } } public static class v_GL_Ledger { @Required() public String GLLedgerID = null; public Date LastSavedDateTime = null; @Required() public String GLCategoryID = null; @Required() public String AccountNo = null; public String Seg1 = null; public String Seg2 = null; public String Seg3 = null; public String Seg4 = null; public String Seg5 = null; public String Seg6 = null; public String Description = null; public BigDecimal LastYearOpen = null; public BigDecimal CurrYearOpen = null; public BigDecimal CurrBal = null; public Short ExpSign = null; @Required() public Short AccClass = null; public Boolean DistributionAcc = null; @Required() public String ShortCut = null; @Required() public Short PostingAcc = null; public String ParentAccNo = null; public Boolean UseTransCode1 = null; public Boolean UseTransCode2 = null; public Boolean UseTransCode3 = null; public Boolean UseStaffCode = null; public String ClearingAccountID = null; public String Details = null; public Boolean IsEnabled = null; public Short AccType = null; public String getGlLedgerID() { return GLLedgerID; } public v_GL_Ledger setGlLedgerID(String value) { this.GLLedgerID = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public v_GL_Ledger setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public String getGlCategoryID() { return GLCategoryID; } public v_GL_Ledger setGlCategoryID(String value) { this.GLCategoryID = value; return this; } public String getAccountNo() { return AccountNo; } public v_GL_Ledger setAccountNo(String value) { this.AccountNo = value; return this; } public String getSeg1() { return Seg1; } public v_GL_Ledger setSeg1(String value) { this.Seg1 = value; return this; } public String getSeg2() { return Seg2; } public v_GL_Ledger setSeg2(String value) { this.Seg2 = value; return this; } public String getSeg3() { return Seg3; } public v_GL_Ledger setSeg3(String value) { this.Seg3 = value; return this; } public String getSeg4() { return Seg4; } public v_GL_Ledger setSeg4(String value) { this.Seg4 = value; return this; } public String getSeg5() { return Seg5; } public v_GL_Ledger setSeg5(String value) { this.Seg5 = value; return this; } public String getSeg6() { return Seg6; } public v_GL_Ledger setSeg6(String value) { this.Seg6 = value; return this; } public String getDescription() { return Description; } public v_GL_Ledger setDescription(String value) { this.Description = value; return this; } public BigDecimal getLastYearOpen() { return LastYearOpen; } public v_GL_Ledger setLastYearOpen(BigDecimal value) { this.LastYearOpen = value; return this; } public BigDecimal getCurrYearOpen() { return CurrYearOpen; } public v_GL_Ledger setCurrYearOpen(BigDecimal value) { this.CurrYearOpen = value; return this; } public BigDecimal getCurrBal() { return CurrBal; } public v_GL_Ledger setCurrBal(BigDecimal value) { this.CurrBal = value; return this; } public Short getExpSign() { return ExpSign; } public v_GL_Ledger setExpSign(Short value) { this.ExpSign = value; return this; } public Short getAccClass() { return AccClass; } public v_GL_Ledger setAccClass(Short value) { this.AccClass = value; return this; } public Boolean isDistributionAcc() { return DistributionAcc; } public v_GL_Ledger setDistributionAcc(Boolean value) { this.DistributionAcc = value; return this; } public String getShortCut() { return ShortCut; } public v_GL_Ledger setShortCut(String value) { this.ShortCut = value; return this; } public Short getPostingAcc() { return PostingAcc; } public v_GL_Ledger setPostingAcc(Short value) { this.PostingAcc = value; return this; } public String getParentAccNo() { return ParentAccNo; } public v_GL_Ledger setParentAccNo(String value) { this.ParentAccNo = value; return this; } public Boolean isUseTransCode1() { return UseTransCode1; } public v_GL_Ledger setUseTransCode1(Boolean value) { this.UseTransCode1 = value; return this; } public Boolean isUseTransCode2() { return UseTransCode2; } public v_GL_Ledger setUseTransCode2(Boolean value) { this.UseTransCode2 = value; return this; } public Boolean isUseTransCode3() { return UseTransCode3; } public v_GL_Ledger setUseTransCode3(Boolean value) { this.UseTransCode3 = value; return this; } public Boolean isUseStaffCode() { return UseStaffCode; } public v_GL_Ledger setUseStaffCode(Boolean value) { this.UseStaffCode = value; return this; } public String getClearingAccountID() { return ClearingAccountID; } public v_GL_Ledger setClearingAccountID(String value) { this.ClearingAccountID = value; return this; } public String getDetails() { return Details; } public v_GL_Ledger setDetails(String value) { this.Details = value; return this; } public Boolean getIsEnabled() { return IsEnabled; } public v_GL_Ledger setIsEnabled(Boolean value) { this.IsEnabled = value; return this; } public Short getAccType() { return AccType; } public v_GL_Ledger setAccType(Short value) { this.AccType = value; return this; } } public static class v_GL_Segment1 { public String Seg1 = null; public String getSeg1() { return Seg1; } public v_GL_Segment1 setSeg1(String value) { this.Seg1 = value; return this; } } public static class v_GL_Segment2 { public String Seg2 = null; public String getSeg2() { return Seg2; } public v_GL_Segment2 setSeg2(String value) { this.Seg2 = value; return this; } } public static class v_GL_Segment3 { public String Seg3 = null; public String getSeg3() { return Seg3; } public v_GL_Segment3 setSeg3(String value) { this.Seg3 = value; return this; } } public static class v_GL_Segment4 { public String Seg4 = null; public String getSeg4() { return Seg4; } public v_GL_Segment4 setSeg4(String value) { this.Seg4 = value; return this; } } public static class v_GL_Segment5 { public String Seg5 = null; public String getSeg5() { return Seg5; } public v_GL_Segment5 setSeg5(String value) { this.Seg5 = value; return this; } } public static class v_GL_Segment6 { public String Seg6 = null; public String getSeg6() { return Seg6; } public v_GL_Segment6 setSeg6(String value) { this.Seg6 = value; return this; } } public static class v_GL_Transactions { public String Seg1 = null; public String Seg2 = null; public String Seg3 = null; public String Seg4 = null; public String Seg5 = null; public String Seg6 = null; public BigDecimal Amount = null; public Date TransPostDateTime = null; public String Category = null; public String AccountDescription = null; public String getSeg1() { return Seg1; } public v_GL_Transactions setSeg1(String value) { this.Seg1 = value; return this; } public String getSeg2() { return Seg2; } public v_GL_Transactions setSeg2(String value) { this.Seg2 = value; return this; } public String getSeg3() { return Seg3; } public v_GL_Transactions setSeg3(String value) { this.Seg3 = value; return this; } public String getSeg4() { return Seg4; } public v_GL_Transactions setSeg4(String value) { this.Seg4 = value; return this; } public String getSeg5() { return Seg5; } public v_GL_Transactions setSeg5(String value) { this.Seg5 = value; return this; } public String getSeg6() { return Seg6; } public v_GL_Transactions setSeg6(String value) { this.Seg6 = value; return this; } public BigDecimal getAmount() { return Amount; } public v_GL_Transactions setAmount(BigDecimal value) { this.Amount = value; return this; } public Date getTransPostDateTime() { return TransPostDateTime; } public v_GL_Transactions setTransPostDateTime(Date value) { this.TransPostDateTime = value; return this; } public String getCategory() { return Category; } public v_GL_Transactions setCategory(String value) { this.Category = value; return this; } public String getAccountDescription() { return AccountDescription; } public v_GL_Transactions setAccountDescription(String value) { this.AccountDescription = value; return this; } } public static class V_INV_Assembly { public String AssemblyNO = null; public String Date = null; public String AssembleTo = null; @Required() public String AssemblyType = null; public String AssembleFrom = null; @Required() public String INAssemblyHistoryID = null; @Required() public String INAssemblyLineID = null; public String getAssemblyNO() { return AssemblyNO; } public V_INV_Assembly setAssemblyNO(String value) { this.AssemblyNO = value; return this; } public String getDate() { return Date; } public V_INV_Assembly setDate(String value) { this.Date = value; return this; } public String getAssembleTo() { return AssembleTo; } public V_INV_Assembly setAssembleTo(String value) { this.AssembleTo = value; return this; } public String getAssemblyType() { return AssemblyType; } public V_INV_Assembly setAssemblyType(String value) { this.AssemblyType = value; return this; } public String getAssembleFrom() { return AssembleFrom; } public V_INV_Assembly setAssembleFrom(String value) { this.AssembleFrom = value; return this; } public String getInAssemblyHistoryID() { return INAssemblyHistoryID; } public V_INV_Assembly setInAssemblyHistoryID(String value) { this.INAssemblyHistoryID = value; return this; } public String getInAssemblyLineID() { return INAssemblyLineID; } public V_INV_Assembly setInAssemblyLineID(String value) { this.INAssemblyLineID = value; return this; } } public static class V_INV_PI { public String InvoiceNO = null; public String SuppPart = null; public String Date = null; public String AccountNo = null; public String SerialNo = null; public String BinLoc = null; @Required() public String PI_LinesDetailsID = null; public String getInvoiceNO() { return InvoiceNO; } public V_INV_PI setInvoiceNO(String value) { this.InvoiceNO = value; return this; } public String getSuppPart() { return SuppPart; } public V_INV_PI setSuppPart(String value) { this.SuppPart = value; return this; } public String getDate() { return Date; } public V_INV_PI setDate(String value) { this.Date = value; return this; } public String getAccountNo() { return AccountNo; } public V_INV_PI setAccountNo(String value) { this.AccountNo = value; return this; } public String getSerialNo() { return SerialNo; } public V_INV_PI setSerialNo(String value) { this.SerialNo = value; return this; } public String getBinLoc() { return BinLoc; } public V_INV_PI setBinLoc(String value) { this.BinLoc = value; return this; } public String getPiLinesDetailsID() { return PI_LinesDetailsID; } public V_INV_PI setPiLinesDetailsID(String value) { this.PI_LinesDetailsID = value; return this; } } public static class V_INV_Receival { public String SlipNo = null; public String Date = null; public String SuppPart = null; public String AccountNO = null; @Required() public String SourceID = null; public String getSlipNo() { return SlipNo; } public V_INV_Receival setSlipNo(String value) { this.SlipNo = value; return this; } public String getDate() { return Date; } public V_INV_Receival setDate(String value) { this.Date = value; return this; } public String getSuppPart() { return SuppPart; } public V_INV_Receival setSuppPart(String value) { this.SuppPart = value; return this; } public String getAccountNO() { return AccountNO; } public V_INV_Receival setAccountNO(String value) { this.AccountNO = value; return this; } public String getSourceID() { return SourceID; } public V_INV_Receival setSourceID(String value) { this.SourceID = value; return this; } } public static class V_Inv_Sales { public String FullInvNo = null; public String Date = null; public String orderno = null; public String Accountno = null; public String QtyOrd = null; @Required() public String InvoiceLineID = null; public String InventoryID = null; @Required() public String InvoiceHistoryID = null; public String getFullInvNo() { return FullInvNo; } public V_Inv_Sales setFullInvNo(String value) { this.FullInvNo = value; return this; } public String getDate() { return Date; } public V_Inv_Sales setDate(String value) { this.Date = value; return this; } public String getOrderno() { return orderno; } public V_Inv_Sales setOrderno(String value) { this.orderno = value; return this; } public String getAccountno() { return Accountno; } public V_Inv_Sales setAccountno(String value) { this.Accountno = value; return this; } public String getQtyOrd() { return QtyOrd; } public V_Inv_Sales setQtyOrd(String value) { this.QtyOrd = value; return this; } public String getInvoiceLineID() { return InvoiceLineID; } public V_Inv_Sales setInvoiceLineID(String value) { this.InvoiceLineID = value; return this; } public String getInventoryID() { return InventoryID; } public V_Inv_Sales setInventoryID(String value) { this.InventoryID = value; return this; } public String getInvoiceHistoryID() { return InvoiceHistoryID; } public V_Inv_Sales setInvoiceHistoryID(String value) { this.InvoiceHistoryID = value; return this; } } public static class V_INV_UnProQtyBin { public String InventoryID = null; public BigDecimal QTY = null; public BigDecimal Value = null; @Required() public String IN_LogicalID = null; public String BinLocation = null; public String getInventoryID() { return InventoryID; } public V_INV_UnProQtyBin setInventoryID(String value) { this.InventoryID = value; return this; } public BigDecimal getQty() { return QTY; } public V_INV_UnProQtyBin setQty(BigDecimal value) { this.QTY = value; return this; } public BigDecimal getValue() { return Value; } public V_INV_UnProQtyBin setValue(BigDecimal value) { this.Value = value; return this; } public String getInLogicalID() { return IN_LogicalID; } public V_INV_UnProQtyBin setInLogicalID(String value) { this.IN_LogicalID = value; return this; } public String getBinLocation() { return BinLocation; } public V_INV_UnProQtyBin setBinLocation(String value) { this.BinLocation = value; return this; } } public static class V_INV_WHTransfer { public String TransferNo = null; public String Date = null; public String Ref = null; public String FromWH = null; public String ToWH = null; @Required() public String WH_TransferLineID = null; @Required() public String WH_TransferLineDetailsID = null; public String SerialNo = null; public String getTransferNo() { return TransferNo; } public V_INV_WHTransfer setTransferNo(String value) { this.TransferNo = value; return this; } public String getDate() { return Date; } public V_INV_WHTransfer setDate(String value) { this.Date = value; return this; } public String getRef() { return Ref; } public V_INV_WHTransfer setRef(String value) { this.Ref = value; return this; } public String getFromWH() { return FromWH; } public V_INV_WHTransfer setFromWH(String value) { this.FromWH = value; return this; } public String getToWH() { return ToWH; } public V_INV_WHTransfer setToWH(String value) { this.ToWH = value; return this; } public String getWhTransferLineID() { return WH_TransferLineID; } public V_INV_WHTransfer setWhTransferLineID(String value) { this.WH_TransferLineID = value; return this; } public String getWhTransferLineDetailsID() { return WH_TransferLineDetailsID; } public V_INV_WHTransfer setWhTransferLineDetailsID(String value) { this.WH_TransferLineDetailsID = value; return this; } public String getSerialNo() { return SerialNo; } public V_INV_WHTransfer setSerialNo(String value) { this.SerialNo = value; return this; } } public static class v_Inventory { @Required() public String InventoryID = null; @Required() public String PartNo = null; public String Description = null; public String PartNoAndDescription = null; @Required() public String Category1ID = null; @Required() public String Category2ID = null; @Required() public String Category3ID = null; @Required() public String Category4ID = null; @Required() public String Category5ID = null; @Required() public String ClassificationID = null; public String getInventoryID() { return InventoryID; } public v_Inventory setInventoryID(String value) { this.InventoryID = value; return this; } public String getPartNo() { return PartNo; } public v_Inventory setPartNo(String value) { this.PartNo = value; return this; } public String getDescription() { return Description; } public v_Inventory setDescription(String value) { this.Description = value; return this; } public String getPartNoAndDescription() { return PartNoAndDescription; } public v_Inventory setPartNoAndDescription(String value) { this.PartNoAndDescription = value; return this; } public String getCategory1ID() { return Category1ID; } public v_Inventory setCategory1ID(String value) { this.Category1ID = value; return this; } public String getCategory2ID() { return Category2ID; } public v_Inventory setCategory2ID(String value) { this.Category2ID = value; return this; } public String getCategory3ID() { return Category3ID; } public v_Inventory setCategory3ID(String value) { this.Category3ID = value; return this; } public String getCategory4ID() { return Category4ID; } public v_Inventory setCategory4ID(String value) { this.Category4ID = value; return this; } public String getCategory5ID() { return Category5ID; } public v_Inventory setCategory5ID(String value) { this.Category5ID = value; return this; } public String getClassificationID() { return ClassificationID; } public v_Inventory setClassificationID(String value) { this.ClassificationID = value; return this; } } public static class v_JB_BackOrders { @Required() public String SourceType = null; @Required() public String BatchNo = null; @Required() public String JobCostStage = null; @Required() public String Item = null; public String Description = null; public Date TranDate = null; public BigDecimal Qty = null; public BigDecimal TotalCost = null; public BigDecimal TotalCharge = null; public String Remark = null; public String JobNo = null; public String getSourceType() { return SourceType; } public v_JB_BackOrders setSourceType(String value) { this.SourceType = value; return this; } public String getBatchNo() { return BatchNo; } public v_JB_BackOrders setBatchNo(String value) { this.BatchNo = value; return this; } public String getJobCostStage() { return JobCostStage; } public v_JB_BackOrders setJobCostStage(String value) { this.JobCostStage = value; return this; } public String getItem() { return Item; } public v_JB_BackOrders setItem(String value) { this.Item = value; return this; } public String getDescription() { return Description; } public v_JB_BackOrders setDescription(String value) { this.Description = value; return this; } public Date getTranDate() { return TranDate; } public v_JB_BackOrders setTranDate(Date value) { this.TranDate = value; return this; } public BigDecimal getQty() { return Qty; } public v_JB_BackOrders setQty(BigDecimal value) { this.Qty = value; return this; } public BigDecimal getTotalCost() { return TotalCost; } public v_JB_BackOrders setTotalCost(BigDecimal value) { this.TotalCost = value; return this; } public BigDecimal getTotalCharge() { return TotalCharge; } public v_JB_BackOrders setTotalCharge(BigDecimal value) { this.TotalCharge = value; return this; } public String getRemark() { return Remark; } public v_JB_BackOrders setRemark(String value) { this.Remark = value; return this; } public String getJobNo() { return JobNo; } public v_JB_BackOrders setJobNo(String value) { this.JobNo = value; return this; } } public static class v_JB_Cashbook { @Required() public String SourceType = null; @Required() public String BatchNo = null; @Required() public String JobCostStage = null; public String Item = null; public String Description = null; @Required() public Date TranDate = null; public BigDecimal Qty = null; @Required() public BigDecimal TotalCost = null; @Required() public BigDecimal TotalCharge = null; public String Remark = null; public String JobNo = null; public String getSourceType() { return SourceType; } public v_JB_Cashbook setSourceType(String value) { this.SourceType = value; return this; } public String getBatchNo() { return BatchNo; } public v_JB_Cashbook setBatchNo(String value) { this.BatchNo = value; return this; } public String getJobCostStage() { return JobCostStage; } public v_JB_Cashbook setJobCostStage(String value) { this.JobCostStage = value; return this; } public String getItem() { return Item; } public v_JB_Cashbook setItem(String value) { this.Item = value; return this; } public String getDescription() { return Description; } public v_JB_Cashbook setDescription(String value) { this.Description = value; return this; } public Date getTranDate() { return TranDate; } public v_JB_Cashbook setTranDate(Date value) { this.TranDate = value; return this; } public BigDecimal getQty() { return Qty; } public v_JB_Cashbook setQty(BigDecimal value) { this.Qty = value; return this; } public BigDecimal getTotalCost() { return TotalCost; } public v_JB_Cashbook setTotalCost(BigDecimal value) { this.TotalCost = value; return this; } public BigDecimal getTotalCharge() { return TotalCharge; } public v_JB_Cashbook setTotalCharge(BigDecimal value) { this.TotalCharge = value; return this; } public String getRemark() { return Remark; } public v_JB_Cashbook setRemark(String value) { this.Remark = value; return this; } public String getJobNo() { return JobNo; } public v_JB_Cashbook setJobNo(String value) { this.JobNo = value; return this; } } public static class v_JB_CashbookEstimateTotalsToDate { public BigDecimal Charge = null; public BigDecimal Cost = null; public BigDecimal Qty = null; @Required() public String JobID = null; public Short DefaultEstimate = null; public BigDecimal getCharge() { return Charge; } public v_JB_CashbookEstimateTotalsToDate setCharge(BigDecimal value) { this.Charge = value; return this; } public BigDecimal getCost() { return Cost; } public v_JB_CashbookEstimateTotalsToDate setCost(BigDecimal value) { this.Cost = value; return this; } public BigDecimal getQty() { return Qty; } public v_JB_CashbookEstimateTotalsToDate setQty(BigDecimal value) { this.Qty = value; return this; } public String getJobID() { return JobID; } public v_JB_CashbookEstimateTotalsToDate setJobID(String value) { this.JobID = value; return this; } public Short getDefaultEstimate() { return DefaultEstimate; } public v_JB_CashbookEstimateTotalsToDate setDefaultEstimate(Short value) { this.DefaultEstimate = value; return this; } } public static class v_JB_CashbookTotalsToDate { public BigDecimal Charge = null; public BigDecimal Cost = null; @Required() public String JobID = null; public BigDecimal getCharge() { return Charge; } public v_JB_CashbookTotalsToDate setCharge(BigDecimal value) { this.Charge = value; return this; } public BigDecimal getCost() { return Cost; } public v_JB_CashbookTotalsToDate setCost(BigDecimal value) { this.Cost = value; return this; } public String getJobID() { return JobID; } public v_JB_CashbookTotalsToDate setJobID(String value) { this.JobID = value; return this; } } public static class v_JB_ChargesToDate { public BigDecimal TotalCharge = null; @Required() public String JobID = null; public BigDecimal getTotalCharge() { return TotalCharge; } public v_JB_ChargesToDate setTotalCharge(BigDecimal value) { this.TotalCharge = value; return this; } public String getJobID() { return JobID; } public v_JB_ChargesToDate setJobID(String value) { this.JobID = value; return this; } } public static class v_JB_CostsToDate { public BigDecimal TotalCost = null; @Required() public String JobID = null; public BigDecimal getTotalCost() { return TotalCost; } public v_JB_CostsToDate setTotalCost(BigDecimal value) { this.TotalCost = value; return this; } public String getJobID() { return JobID; } public v_JB_CostsToDate setJobID(String value) { this.JobID = value; return this; } } public static class v_JB_CreditNotes { @Required() public String SourceType = null; @Required() public String BatchNo = null; public String JobCostStage = null; @Required() public String Item = null; @Required() public String Description = null; @Required() public Date TranDate = null; @Required() public String Qty = null; public BigDecimal TotalCost = null; public BigDecimal TotalCharge = null; @Required() public String Remark = null; public String JobNo = null; public String getSourceType() { return SourceType; } public v_JB_CreditNotes setSourceType(String value) { this.SourceType = value; return this; } public String getBatchNo() { return BatchNo; } public v_JB_CreditNotes setBatchNo(String value) { this.BatchNo = value; return this; } public String getJobCostStage() { return JobCostStage; } public v_JB_CreditNotes setJobCostStage(String value) { this.JobCostStage = value; return this; } public String getItem() { return Item; } public v_JB_CreditNotes setItem(String value) { this.Item = value; return this; } public String getDescription() { return Description; } public v_JB_CreditNotes setDescription(String value) { this.Description = value; return this; } public Date getTranDate() { return TranDate; } public v_JB_CreditNotes setTranDate(Date value) { this.TranDate = value; return this; } public String getQty() { return Qty; } public v_JB_CreditNotes setQty(String value) { this.Qty = value; return this; } public BigDecimal getTotalCost() { return TotalCost; } public v_JB_CreditNotes setTotalCost(BigDecimal value) { this.TotalCost = value; return this; } public BigDecimal getTotalCharge() { return TotalCharge; } public v_JB_CreditNotes setTotalCharge(BigDecimal value) { this.TotalCharge = value; return this; } public String getRemark() { return Remark; } public v_JB_CreditNotes setRemark(String value) { this.Remark = value; return this; } public String getJobNo() { return JobNo; } public v_JB_CreditNotes setJobNo(String value) { this.JobNo = value; return this; } } public static class v_JB_DefaultEstimate { public BigDecimal EstimateCharge = null; public BigDecimal EstimateCost = null; @Required() public String JobID = null; public BigDecimal getEstimateCharge() { return EstimateCharge; } public v_JB_DefaultEstimate setEstimateCharge(BigDecimal value) { this.EstimateCharge = value; return this; } public BigDecimal getEstimateCost() { return EstimateCost; } public v_JB_DefaultEstimate setEstimateCost(BigDecimal value) { this.EstimateCost = value; return this; } public String getJobID() { return JobID; } public v_JB_DefaultEstimate setJobID(String value) { this.JobID = value; return this; } } public static class v_JB_FinishedGoods { @Required() public String SourceType = null; @Required() public String BatchNo = null; @Required() public String JobCostStage = null; public String Item = null; public String Description = null; @Required() public Date TranDate = null; public BigDecimal Qty = null; @Required() public BigDecimal TotalCost = null; @Required() public BigDecimal TotalCharge = null; public String Remark = null; public String JobNo = null; public String getSourceType() { return SourceType; } public v_JB_FinishedGoods setSourceType(String value) { this.SourceType = value; return this; } public String getBatchNo() { return BatchNo; } public v_JB_FinishedGoods setBatchNo(String value) { this.BatchNo = value; return this; } public String getJobCostStage() { return JobCostStage; } public v_JB_FinishedGoods setJobCostStage(String value) { this.JobCostStage = value; return this; } public String getItem() { return Item; } public v_JB_FinishedGoods setItem(String value) { this.Item = value; return this; } public String getDescription() { return Description; } public v_JB_FinishedGoods setDescription(String value) { this.Description = value; return this; } public Date getTranDate() { return TranDate; } public v_JB_FinishedGoods setTranDate(Date value) { this.TranDate = value; return this; } public BigDecimal getQty() { return Qty; } public v_JB_FinishedGoods setQty(BigDecimal value) { this.Qty = value; return this; } public BigDecimal getTotalCost() { return TotalCost; } public v_JB_FinishedGoods setTotalCost(BigDecimal value) { this.TotalCost = value; return this; } public BigDecimal getTotalCharge() { return TotalCharge; } public v_JB_FinishedGoods setTotalCharge(BigDecimal value) { this.TotalCharge = value; return this; } public String getRemark() { return Remark; } public v_JB_FinishedGoods setRemark(String value) { this.Remark = value; return this; } public String getJobNo() { return JobNo; } public v_JB_FinishedGoods setJobNo(String value) { this.JobNo = value; return this; } } public static class v_JB_GoodProducedTotalsToDate { public BigDecimal Charge = null; public BigDecimal Cost = null; public String JobID = null; public BigDecimal getCharge() { return Charge; } public v_JB_GoodProducedTotalsToDate setCharge(BigDecimal value) { this.Charge = value; return this; } public BigDecimal getCost() { return Cost; } public v_JB_GoodProducedTotalsToDate setCost(BigDecimal value) { this.Cost = value; return this; } public String getJobID() { return JobID; } public v_JB_GoodProducedTotalsToDate setJobID(String value) { this.JobID = value; return this; } } public static class v_JB_GoodsReceived { @Required() public String SourceType = null; @Required() public String BatchNo = null; @Required() public String JobCostStage = null; public String Item = null; public String Description = null; @Required() public Date TranDate = null; public BigDecimal Qty = null; @Required() public BigDecimal TotalCost = null; @Required() public BigDecimal TotalCharge = null; public String Remark = null; public String JobNo = null; public String getSourceType() { return SourceType; } public v_JB_GoodsReceived setSourceType(String value) { this.SourceType = value; return this; } public String getBatchNo() { return BatchNo; } public v_JB_GoodsReceived setBatchNo(String value) { this.BatchNo = value; return this; } public String getJobCostStage() { return JobCostStage; } public v_JB_GoodsReceived setJobCostStage(String value) { this.JobCostStage = value; return this; } public String getItem() { return Item; } public v_JB_GoodsReceived setItem(String value) { this.Item = value; return this; } public String getDescription() { return Description; } public v_JB_GoodsReceived setDescription(String value) { this.Description = value; return this; } public Date getTranDate() { return TranDate; } public v_JB_GoodsReceived setTranDate(Date value) { this.TranDate = value; return this; } public BigDecimal getQty() { return Qty; } public v_JB_GoodsReceived setQty(BigDecimal value) { this.Qty = value; return this; } public BigDecimal getTotalCost() { return TotalCost; } public v_JB_GoodsReceived setTotalCost(BigDecimal value) { this.TotalCost = value; return this; } public BigDecimal getTotalCharge() { return TotalCharge; } public v_JB_GoodsReceived setTotalCharge(BigDecimal value) { this.TotalCharge = value; return this; } public String getRemark() { return Remark; } public v_JB_GoodsReceived setRemark(String value) { this.Remark = value; return this; } public String getJobNo() { return JobNo; } public v_JB_GoodsReceived setJobNo(String value) { this.JobNo = value; return this; } } public static class v_JB_GoodsReceivedTotalsToDate { public BigDecimal Charge = null; public BigDecimal Cost = null; @Required() public String JobID = null; public BigDecimal getCharge() { return Charge; } public v_JB_GoodsReceivedTotalsToDate setCharge(BigDecimal value) { this.Charge = value; return this; } public BigDecimal getCost() { return Cost; } public v_JB_GoodsReceivedTotalsToDate setCost(BigDecimal value) { this.Cost = value; return this; } public String getJobID() { return JobID; } public v_JB_GoodsReceivedTotalsToDate setJobID(String value) { this.JobID = value; return this; } } public static class v_JB_GoodsWrittenOnOffTotalsToDate { public BigDecimal Charge = null; public BigDecimal Cost = null; public String JobID = null; public BigDecimal getCharge() { return Charge; } public v_JB_GoodsWrittenOnOffTotalsToDate setCharge(BigDecimal value) { this.Charge = value; return this; } public BigDecimal getCost() { return Cost; } public v_JB_GoodsWrittenOnOffTotalsToDate setCost(BigDecimal value) { this.Cost = value; return this; } public String getJobID() { return JobID; } public v_JB_GoodsWrittenOnOffTotalsToDate setJobID(String value) { this.JobID = value; return this; } } public static class v_JB_InvoicedToDate { public BigDecimal InvoicedAmount = null; public BigDecimal InvoicedCost = null; public String JobID = null; public BigDecimal getInvoicedAmount() { return InvoicedAmount; } public v_JB_InvoicedToDate setInvoicedAmount(BigDecimal value) { this.InvoicedAmount = value; return this; } public BigDecimal getInvoicedCost() { return InvoicedCost; } public v_JB_InvoicedToDate setInvoicedCost(BigDecimal value) { this.InvoicedCost = value; return this; } public String getJobID() { return JobID; } public v_JB_InvoicedToDate setJobID(String value) { this.JobID = value; return this; } } public static class v_JB_Invoices { @Required() public String SourceType = null; @Required() public String BatchNo = null; public String JobCostStage = null; @Required() public String Item = null; @Required() public String Description = null; @Required() public Date TranDate = null; @Required() public String Qty = null; public BigDecimal TotalCost = null; public BigDecimal TotalCharge = null; @Required() public String Remark = null; public String JobNo = null; public String getSourceType() { return SourceType; } public v_JB_Invoices setSourceType(String value) { this.SourceType = value; return this; } public String getBatchNo() { return BatchNo; } public v_JB_Invoices setBatchNo(String value) { this.BatchNo = value; return this; } public String getJobCostStage() { return JobCostStage; } public v_JB_Invoices setJobCostStage(String value) { this.JobCostStage = value; return this; } public String getItem() { return Item; } public v_JB_Invoices setItem(String value) { this.Item = value; return this; } public String getDescription() { return Description; } public v_JB_Invoices setDescription(String value) { this.Description = value; return this; } public Date getTranDate() { return TranDate; } public v_JB_Invoices setTranDate(Date value) { this.TranDate = value; return this; } public String getQty() { return Qty; } public v_JB_Invoices setQty(String value) { this.Qty = value; return this; } public BigDecimal getTotalCost() { return TotalCost; } public v_JB_Invoices setTotalCost(BigDecimal value) { this.TotalCost = value; return this; } public BigDecimal getTotalCharge() { return TotalCharge; } public v_JB_Invoices setTotalCharge(BigDecimal value) { this.TotalCharge = value; return this; } public String getRemark() { return Remark; } public v_JB_Invoices setRemark(String value) { this.Remark = value; return this; } public String getJobNo() { return JobNo; } public v_JB_Invoices setJobNo(String value) { this.JobNo = value; return this; } } public static class v_JB_InvoiceWrittenOnOffTotalsToDate { public BigDecimal Charge = null; public BigDecimal Cost = null; public String JobID = null; public BigDecimal getCharge() { return Charge; } public v_JB_InvoiceWrittenOnOffTotalsToDate setCharge(BigDecimal value) { this.Charge = value; return this; } public BigDecimal getCost() { return Cost; } public v_JB_InvoiceWrittenOnOffTotalsToDate setCost(BigDecimal value) { this.Cost = value; return this; } public String getJobID() { return JobID; } public v_JB_InvoiceWrittenOnOffTotalsToDate setJobID(String value) { this.JobID = value; return this; } } public static class V_JB_JobCodeSearch { @Required() public String JobID = null; public String JobNo = null; public String JobDescription = null; public String CostCentreID = null; public String CostCentreNo = null; public String CostCentreDesc = null; public String StageID = null; public String StageNo = null; public String StageDesc = null; public String getJobID() { return JobID; } public V_JB_JobCodeSearch setJobID(String value) { this.JobID = value; return this; } public String getJobNo() { return JobNo; } public V_JB_JobCodeSearch setJobNo(String value) { this.JobNo = value; return this; } public String getJobDescription() { return JobDescription; } public V_JB_JobCodeSearch setJobDescription(String value) { this.JobDescription = value; return this; } public String getCostCentreID() { return CostCentreID; } public V_JB_JobCodeSearch setCostCentreID(String value) { this.CostCentreID = value; return this; } public String getCostCentreNo() { return CostCentreNo; } public V_JB_JobCodeSearch setCostCentreNo(String value) { this.CostCentreNo = value; return this; } public String getCostCentreDesc() { return CostCentreDesc; } public V_JB_JobCodeSearch setCostCentreDesc(String value) { this.CostCentreDesc = value; return this; } public String getStageID() { return StageID; } public V_JB_JobCodeSearch setStageID(String value) { this.StageID = value; return this; } public String getStageNo() { return StageNo; } public V_JB_JobCodeSearch setStageNo(String value) { this.StageNo = value; return this; } public String getStageDesc() { return StageDesc; } public V_JB_JobCodeSearch setStageDesc(String value) { this.StageDesc = value; return this; } } public static class v_JB_Jobs { public String AccountNo = null; public String Name = null; public String JobNo = null; public String Description = null; public String Status = null; public Date EstEndDate = null; @Required() public String JobID = null; public BigDecimal ChargeToDate = null; public BigDecimal CostToDate = null; public Date LastInvoiceDate = null; public BigDecimal WIPValueCost = null; public BigDecimal WIPValueCharge = null; public BigDecimal EstimateCharge = null; public BigDecimal InvoicedToDate = null; public BigDecimal EstimateCost = null; public BigDecimal InvoicedCostToDate = null; public BigDecimal MarginPercentage = null; public BigDecimal PercentageInvoiced = null; public String getAccountNo() { return AccountNo; } public v_JB_Jobs setAccountNo(String value) { this.AccountNo = value; return this; } public String getName() { return Name; } public v_JB_Jobs setName(String value) { this.Name = value; return this; } public String getJobNo() { return JobNo; } public v_JB_Jobs setJobNo(String value) { this.JobNo = value; return this; } public String getDescription() { return Description; } public v_JB_Jobs setDescription(String value) { this.Description = value; return this; } public String getStatus() { return Status; } public v_JB_Jobs setStatus(String value) { this.Status = value; return this; } public Date getEstEndDate() { return EstEndDate; } public v_JB_Jobs setEstEndDate(Date value) { this.EstEndDate = value; return this; } public String getJobID() { return JobID; } public v_JB_Jobs setJobID(String value) { this.JobID = value; return this; } public BigDecimal getChargeToDate() { return ChargeToDate; } public v_JB_Jobs setChargeToDate(BigDecimal value) { this.ChargeToDate = value; return this; } public BigDecimal getCostToDate() { return CostToDate; } public v_JB_Jobs setCostToDate(BigDecimal value) { this.CostToDate = value; return this; } public Date getLastInvoiceDate() { return LastInvoiceDate; } public v_JB_Jobs setLastInvoiceDate(Date value) { this.LastInvoiceDate = value; return this; } public BigDecimal getWipValueCost() { return WIPValueCost; } public v_JB_Jobs setWipValueCost(BigDecimal value) { this.WIPValueCost = value; return this; } public BigDecimal getWipValueCharge() { return WIPValueCharge; } public v_JB_Jobs setWipValueCharge(BigDecimal value) { this.WIPValueCharge = value; return this; } public BigDecimal getEstimateCharge() { return EstimateCharge; } public v_JB_Jobs setEstimateCharge(BigDecimal value) { this.EstimateCharge = value; return this; } public BigDecimal getInvoicedToDate() { return InvoicedToDate; } public v_JB_Jobs setInvoicedToDate(BigDecimal value) { this.InvoicedToDate = value; return this; } public BigDecimal getEstimateCost() { return EstimateCost; } public v_JB_Jobs setEstimateCost(BigDecimal value) { this.EstimateCost = value; return this; } public BigDecimal getInvoicedCostToDate() { return InvoicedCostToDate; } public v_JB_Jobs setInvoicedCostToDate(BigDecimal value) { this.InvoicedCostToDate = value; return this; } public BigDecimal getMarginPercentage() { return MarginPercentage; } public v_JB_Jobs setMarginPercentage(BigDecimal value) { this.MarginPercentage = value; return this; } public BigDecimal getPercentageInvoiced() { return PercentageInvoiced; } public v_JB_Jobs setPercentageInvoiced(BigDecimal value) { this.PercentageInvoiced = value; return this; } } public static class v_JB_Journals { @Required() public String SourceType = null; @Required() public String BatchNo = null; @Required() public String JobCostStage = null; public String Item = null; public String Description = null; @Required() public Date TranDate = null; public BigDecimal Qty = null; @Required() public BigDecimal TotalCost = null; @Required() public BigDecimal TotalCharge = null; public String Remark = null; public String JobNo = null; public String getSourceType() { return SourceType; } public v_JB_Journals setSourceType(String value) { this.SourceType = value; return this; } public String getBatchNo() { return BatchNo; } public v_JB_Journals setBatchNo(String value) { this.BatchNo = value; return this; } public String getJobCostStage() { return JobCostStage; } public v_JB_Journals setJobCostStage(String value) { this.JobCostStage = value; return this; } public String getItem() { return Item; } public v_JB_Journals setItem(String value) { this.Item = value; return this; } public String getDescription() { return Description; } public v_JB_Journals setDescription(String value) { this.Description = value; return this; } public Date getTranDate() { return TranDate; } public v_JB_Journals setTranDate(Date value) { this.TranDate = value; return this; } public BigDecimal getQty() { return Qty; } public v_JB_Journals setQty(BigDecimal value) { this.Qty = value; return this; } public BigDecimal getTotalCost() { return TotalCost; } public v_JB_Journals setTotalCost(BigDecimal value) { this.TotalCost = value; return this; } public BigDecimal getTotalCharge() { return TotalCharge; } public v_JB_Journals setTotalCharge(BigDecimal value) { this.TotalCharge = value; return this; } public String getRemark() { return Remark; } public v_JB_Journals setRemark(String value) { this.Remark = value; return this; } public String getJobNo() { return JobNo; } public v_JB_Journals setJobNo(String value) { this.JobNo = value; return this; } } public static class v_JB_JournalsEstimateTotalsToDate { public BigDecimal Charge = null; public BigDecimal Cost = null; public BigDecimal Qty = null; @Required() public String JobID = null; public Short DefaultEstimate = null; public BigDecimal getCharge() { return Charge; } public v_JB_JournalsEstimateTotalsToDate setCharge(BigDecimal value) { this.Charge = value; return this; } public BigDecimal getCost() { return Cost; } public v_JB_JournalsEstimateTotalsToDate setCost(BigDecimal value) { this.Cost = value; return this; } public BigDecimal getQty() { return Qty; } public v_JB_JournalsEstimateTotalsToDate setQty(BigDecimal value) { this.Qty = value; return this; } public String getJobID() { return JobID; } public v_JB_JournalsEstimateTotalsToDate setJobID(String value) { this.JobID = value; return this; } public Short getDefaultEstimate() { return DefaultEstimate; } public v_JB_JournalsEstimateTotalsToDate setDefaultEstimate(Short value) { this.DefaultEstimate = value; return this; } } public static class v_JB_JournalsTotalsToDate { public BigDecimal Charge = null; public BigDecimal Cost = null; @Required() public String JobID = null; public BigDecimal getCharge() { return Charge; } public v_JB_JournalsTotalsToDate setCharge(BigDecimal value) { this.Charge = value; return this; } public BigDecimal getCost() { return Cost; } public v_JB_JournalsTotalsToDate setCost(BigDecimal value) { this.Cost = value; return this; } public String getJobID() { return JobID; } public v_JB_JournalsTotalsToDate setJobID(String value) { this.JobID = value; return this; } } public static class v_JB_Labour { @Required() public String SourceType = null; @Required() public String BatchNo = null; public String JobCostStage = null; public String Item = null; public String Description = null; @Required() public Date TranDate = null; public BigDecimal Qty = null; @Required() public BigDecimal TotalCost = null; @Required() public BigDecimal TotalCharge = null; public String Remark = null; public String JobNo = null; public String getSourceType() { return SourceType; } public v_JB_Labour setSourceType(String value) { this.SourceType = value; return this; } public String getBatchNo() { return BatchNo; } public v_JB_Labour setBatchNo(String value) { this.BatchNo = value; return this; } public String getJobCostStage() { return JobCostStage; } public v_JB_Labour setJobCostStage(String value) { this.JobCostStage = value; return this; } public String getItem() { return Item; } public v_JB_Labour setItem(String value) { this.Item = value; return this; } public String getDescription() { return Description; } public v_JB_Labour setDescription(String value) { this.Description = value; return this; } public Date getTranDate() { return TranDate; } public v_JB_Labour setTranDate(Date value) { this.TranDate = value; return this; } public BigDecimal getQty() { return Qty; } public v_JB_Labour setQty(BigDecimal value) { this.Qty = value; return this; } public BigDecimal getTotalCost() { return TotalCost; } public v_JB_Labour setTotalCost(BigDecimal value) { this.TotalCost = value; return this; } public BigDecimal getTotalCharge() { return TotalCharge; } public v_JB_Labour setTotalCharge(BigDecimal value) { this.TotalCharge = value; return this; } public String getRemark() { return Remark; } public v_JB_Labour setRemark(String value) { this.Remark = value; return this; } public String getJobNo() { return JobNo; } public v_JB_Labour setJobNo(String value) { this.JobNo = value; return this; } } public static class v_JB_LabourEstimateTotalsToDate { public BigDecimal Charge = null; public BigDecimal Cost = null; public BigDecimal Qty = null; @Required() public String JobID = null; public Short DefaultEstimate = null; public BigDecimal getCharge() { return Charge; } public v_JB_LabourEstimateTotalsToDate setCharge(BigDecimal value) { this.Charge = value; return this; } public BigDecimal getCost() { return Cost; } public v_JB_LabourEstimateTotalsToDate setCost(BigDecimal value) { this.Cost = value; return this; } public BigDecimal getQty() { return Qty; } public v_JB_LabourEstimateTotalsToDate setQty(BigDecimal value) { this.Qty = value; return this; } public String getJobID() { return JobID; } public v_JB_LabourEstimateTotalsToDate setJobID(String value) { this.JobID = value; return this; } public Short getDefaultEstimate() { return DefaultEstimate; } public v_JB_LabourEstimateTotalsToDate setDefaultEstimate(Short value) { this.DefaultEstimate = value; return this; } } public static class v_JB_LabourTotalsToDate { public BigDecimal Charge = null; public BigDecimal Cost = null; public BigDecimal Qty = null; @Required() public String JobID = null; public BigDecimal getCharge() { return Charge; } public v_JB_LabourTotalsToDate setCharge(BigDecimal value) { this.Charge = value; return this; } public BigDecimal getCost() { return Cost; } public v_JB_LabourTotalsToDate setCost(BigDecimal value) { this.Cost = value; return this; } public BigDecimal getQty() { return Qty; } public v_JB_LabourTotalsToDate setQty(BigDecimal value) { this.Qty = value; return this; } public String getJobID() { return JobID; } public v_JB_LabourTotalsToDate setJobID(String value) { this.JobID = value; return this; } } public static class v_JB_LastInvoiceDate { public String JobID = null; public Date LastInvoiceDate = null; public String getJobID() { return JobID; } public v_JB_LastInvoiceDate setJobID(String value) { this.JobID = value; return this; } public Date getLastInvoiceDate() { return LastInvoiceDate; } public v_JB_LastInvoiceDate setLastInvoiceDate(Date value) { this.LastInvoiceDate = value; return this; } } public static class v_JB_Main { @Required() public String JobID = null; public String JobNo = null; public String Description = null; @Required() public String JobGroup = null; public String AccountNo = null; public String Name = null; public String OrderNo = null; public Boolean IsTemplate = null; @Required() public String Status = null; @Required() public Date StartDate = null; @Required() public Date EstEndDate = null; @Required() public Date EstStartDate = null; @Required() public Date ClosedDate = null; public Short InventorySellType = null; public BigDecimal ContractAmount = null; public BigDecimal MarkUpMaterials = null; public BigDecimal MarkUpLabour = null; public BigDecimal MarkUpSubContract = null; public BigDecimal MarkUpResource = null; public Short RetentionType = null; public BigDecimal RetentionValue = null; public Boolean GstApplicable = null; @Required() public String Priority = null; public String CostCentreNo = null; public String CostCentreDesc = null; public Boolean CostCentreIsEnabled = null; public String StageNo = null; public String StageDesc = null; public Boolean StageIsEnabled = null; public String ClassDesc = null; public String JobClass = null; public String getJobID() { return JobID; } public v_JB_Main setJobID(String value) { this.JobID = value; return this; } public String getJobNo() { return JobNo; } public v_JB_Main setJobNo(String value) { this.JobNo = value; return this; } public String getDescription() { return Description; } public v_JB_Main setDescription(String value) { this.Description = value; return this; } public String getJobGroup() { return JobGroup; } public v_JB_Main setJobGroup(String value) { this.JobGroup = value; return this; } public String getAccountNo() { return AccountNo; } public v_JB_Main setAccountNo(String value) { this.AccountNo = value; return this; } public String getName() { return Name; } public v_JB_Main setName(String value) { this.Name = value; return this; } public String getOrderNo() { return OrderNo; } public v_JB_Main setOrderNo(String value) { this.OrderNo = value; return this; } public Boolean getIsTemplate() { return IsTemplate; } public v_JB_Main setIsTemplate(Boolean value) { this.IsTemplate = value; return this; } public String getStatus() { return Status; } public v_JB_Main setStatus(String value) { this.Status = value; return this; } public Date getStartDate() { return StartDate; } public v_JB_Main setStartDate(Date value) { this.StartDate = value; return this; } public Date getEstEndDate() { return EstEndDate; } public v_JB_Main setEstEndDate(Date value) { this.EstEndDate = value; return this; } public Date getEstStartDate() { return EstStartDate; } public v_JB_Main setEstStartDate(Date value) { this.EstStartDate = value; return this; } public Date getClosedDate() { return ClosedDate; } public v_JB_Main setClosedDate(Date value) { this.ClosedDate = value; return this; } public Short getInventorySellType() { return InventorySellType; } public v_JB_Main setInventorySellType(Short value) { this.InventorySellType = value; return this; } public BigDecimal getContractAmount() { return ContractAmount; } public v_JB_Main setContractAmount(BigDecimal value) { this.ContractAmount = value; return this; } public BigDecimal getMarkUpMaterials() { return MarkUpMaterials; } public v_JB_Main setMarkUpMaterials(BigDecimal value) { this.MarkUpMaterials = value; return this; } public BigDecimal getMarkUpLabour() { return MarkUpLabour; } public v_JB_Main setMarkUpLabour(BigDecimal value) { this.MarkUpLabour = value; return this; } public BigDecimal getMarkUpSubContract() { return MarkUpSubContract; } public v_JB_Main setMarkUpSubContract(BigDecimal value) { this.MarkUpSubContract = value; return this; } public BigDecimal getMarkUpResource() { return MarkUpResource; } public v_JB_Main setMarkUpResource(BigDecimal value) { this.MarkUpResource = value; return this; } public Short getRetentionType() { return RetentionType; } public v_JB_Main setRetentionType(Short value) { this.RetentionType = value; return this; } public BigDecimal getRetentionValue() { return RetentionValue; } public v_JB_Main setRetentionValue(BigDecimal value) { this.RetentionValue = value; return this; } public Boolean isGstApplicable() { return GstApplicable; } public v_JB_Main setGstApplicable(Boolean value) { this.GstApplicable = value; return this; } public String getPriority() { return Priority; } public v_JB_Main setPriority(String value) { this.Priority = value; return this; } public String getCostCentreNo() { return CostCentreNo; } public v_JB_Main setCostCentreNo(String value) { this.CostCentreNo = value; return this; } public String getCostCentreDesc() { return CostCentreDesc; } public v_JB_Main setCostCentreDesc(String value) { this.CostCentreDesc = value; return this; } public Boolean isCostCentreIsEnabled() { return CostCentreIsEnabled; } public v_JB_Main setCostCentreIsEnabled(Boolean value) { this.CostCentreIsEnabled = value; return this; } public String getStageNo() { return StageNo; } public v_JB_Main setStageNo(String value) { this.StageNo = value; return this; } public String getStageDesc() { return StageDesc; } public v_JB_Main setStageDesc(String value) { this.StageDesc = value; return this; } public Boolean isStageIsEnabled() { return StageIsEnabled; } public v_JB_Main setStageIsEnabled(Boolean value) { this.StageIsEnabled = value; return this; } public String getClassDesc() { return ClassDesc; } public v_JB_Main setClassDesc(String value) { this.ClassDesc = value; return this; } public String getJobClass() { return JobClass; } public v_JB_Main setJobClass(String value) { this.JobClass = value; return this; } } public static class v_JB_MarginPercentageToDate { public BigDecimal MarginPercentage = null; @Required() public String JobID = null; public BigDecimal getMarginPercentage() { return MarginPercentage; } public v_JB_MarginPercentageToDate setMarginPercentage(BigDecimal value) { this.MarginPercentage = value; return this; } public String getJobID() { return JobID; } public v_JB_MarginPercentageToDate setJobID(String value) { this.JobID = value; return this; } } public static class v_JB_Materials { @Required() public String SourceType = null; @Required() public String BatchNo = null; @Required() public String JobCostStage = null; public String Item = null; public String Description = null; @Required() public Date TranDate = null; public BigDecimal Qty = null; @Required() public BigDecimal TotalCost = null; @Required() public BigDecimal TotalCharge = null; public String Remark = null; public String JobNo = null; public String getSourceType() { return SourceType; } public v_JB_Materials setSourceType(String value) { this.SourceType = value; return this; } public String getBatchNo() { return BatchNo; } public v_JB_Materials setBatchNo(String value) { this.BatchNo = value; return this; } public String getJobCostStage() { return JobCostStage; } public v_JB_Materials setJobCostStage(String value) { this.JobCostStage = value; return this; } public String getItem() { return Item; } public v_JB_Materials setItem(String value) { this.Item = value; return this; } public String getDescription() { return Description; } public v_JB_Materials setDescription(String value) { this.Description = value; return this; } public Date getTranDate() { return TranDate; } public v_JB_Materials setTranDate(Date value) { this.TranDate = value; return this; } public BigDecimal getQty() { return Qty; } public v_JB_Materials setQty(BigDecimal value) { this.Qty = value; return this; } public BigDecimal getTotalCost() { return TotalCost; } public v_JB_Materials setTotalCost(BigDecimal value) { this.TotalCost = value; return this; } public BigDecimal getTotalCharge() { return TotalCharge; } public v_JB_Materials setTotalCharge(BigDecimal value) { this.TotalCharge = value; return this; } public String getRemark() { return Remark; } public v_JB_Materials setRemark(String value) { this.Remark = value; return this; } public String getJobNo() { return JobNo; } public v_JB_Materials setJobNo(String value) { this.JobNo = value; return this; } } public static class v_JB_MaterialsEstimateTotalsToDate { public BigDecimal Charge = null; public BigDecimal Cost = null; public BigDecimal Qty = null; @Required() public String JobID = null; public Short DefaultEstimate = null; public BigDecimal getCharge() { return Charge; } public v_JB_MaterialsEstimateTotalsToDate setCharge(BigDecimal value) { this.Charge = value; return this; } public BigDecimal getCost() { return Cost; } public v_JB_MaterialsEstimateTotalsToDate setCost(BigDecimal value) { this.Cost = value; return this; } public BigDecimal getQty() { return Qty; } public v_JB_MaterialsEstimateTotalsToDate setQty(BigDecimal value) { this.Qty = value; return this; } public String getJobID() { return JobID; } public v_JB_MaterialsEstimateTotalsToDate setJobID(String value) { this.JobID = value; return this; } public Short getDefaultEstimate() { return DefaultEstimate; } public v_JB_MaterialsEstimateTotalsToDate setDefaultEstimate(Short value) { this.DefaultEstimate = value; return this; } } public static class v_JB_MaterialsTotalsToDate { public BigDecimal Charge = null; public BigDecimal Cost = null; public BigDecimal Qty = null; @Required() public String JobID = null; public BigDecimal getCharge() { return Charge; } public v_JB_MaterialsTotalsToDate setCharge(BigDecimal value) { this.Charge = value; return this; } public BigDecimal getCost() { return Cost; } public v_JB_MaterialsTotalsToDate setCost(BigDecimal value) { this.Cost = value; return this; } public BigDecimal getQty() { return Qty; } public v_JB_MaterialsTotalsToDate setQty(BigDecimal value) { this.Qty = value; return this; } public String getJobID() { return JobID; } public v_JB_MaterialsTotalsToDate setJobID(String value) { this.JobID = value; return this; } } public static class v_JB_PercentInvoiced { public BigDecimal PercentageInvoiced = null; @Required() public String JobID = null; public BigDecimal getPercentageInvoiced() { return PercentageInvoiced; } public v_JB_PercentInvoiced setPercentageInvoiced(BigDecimal value) { this.PercentageInvoiced = value; return this; } public String getJobID() { return JobID; } public v_JB_PercentInvoiced setJobID(String value) { this.JobID = value; return this; } } public static class v_JB_PurchaseOrders { @Required() public String SourceType = null; @Required() public String BatchNo = null; public String JobCostStage = null; @Required() public String Item = null; public String Description = null; @Required() public Date TranDate = null; public BigDecimal Qty = null; public BigDecimal TotalCost = null; public BigDecimal TotalCharge = null; @Required() public String Remark = null; public String JobNo = null; public String getSourceType() { return SourceType; } public v_JB_PurchaseOrders setSourceType(String value) { this.SourceType = value; return this; } public String getBatchNo() { return BatchNo; } public v_JB_PurchaseOrders setBatchNo(String value) { this.BatchNo = value; return this; } public String getJobCostStage() { return JobCostStage; } public v_JB_PurchaseOrders setJobCostStage(String value) { this.JobCostStage = value; return this; } public String getItem() { return Item; } public v_JB_PurchaseOrders setItem(String value) { this.Item = value; return this; } public String getDescription() { return Description; } public v_JB_PurchaseOrders setDescription(String value) { this.Description = value; return this; } public Date getTranDate() { return TranDate; } public v_JB_PurchaseOrders setTranDate(Date value) { this.TranDate = value; return this; } public BigDecimal getQty() { return Qty; } public v_JB_PurchaseOrders setQty(BigDecimal value) { this.Qty = value; return this; } public BigDecimal getTotalCost() { return TotalCost; } public v_JB_PurchaseOrders setTotalCost(BigDecimal value) { this.TotalCost = value; return this; } public BigDecimal getTotalCharge() { return TotalCharge; } public v_JB_PurchaseOrders setTotalCharge(BigDecimal value) { this.TotalCharge = value; return this; } public String getRemark() { return Remark; } public v_JB_PurchaseOrders setRemark(String value) { this.Remark = value; return this; } public String getJobNo() { return JobNo; } public v_JB_PurchaseOrders setJobNo(String value) { this.JobNo = value; return this; } } public static class v_JB_Purchases { @Required() public String SourceType = null; @Required() public String BatchNo = null; @Required() public String JobCostStage = null; public String Item = null; public String Description = null; @Required() public Date TranDate = null; public BigDecimal Qty = null; @Required() public BigDecimal TotalCost = null; @Required() public BigDecimal TotalCharge = null; public String Remark = null; public String JobNo = null; public String getSourceType() { return SourceType; } public v_JB_Purchases setSourceType(String value) { this.SourceType = value; return this; } public String getBatchNo() { return BatchNo; } public v_JB_Purchases setBatchNo(String value) { this.BatchNo = value; return this; } public String getJobCostStage() { return JobCostStage; } public v_JB_Purchases setJobCostStage(String value) { this.JobCostStage = value; return this; } public String getItem() { return Item; } public v_JB_Purchases setItem(String value) { this.Item = value; return this; } public String getDescription() { return Description; } public v_JB_Purchases setDescription(String value) { this.Description = value; return this; } public Date getTranDate() { return TranDate; } public v_JB_Purchases setTranDate(Date value) { this.TranDate = value; return this; } public BigDecimal getQty() { return Qty; } public v_JB_Purchases setQty(BigDecimal value) { this.Qty = value; return this; } public BigDecimal getTotalCost() { return TotalCost; } public v_JB_Purchases setTotalCost(BigDecimal value) { this.TotalCost = value; return this; } public BigDecimal getTotalCharge() { return TotalCharge; } public v_JB_Purchases setTotalCharge(BigDecimal value) { this.TotalCharge = value; return this; } public String getRemark() { return Remark; } public v_JB_Purchases setRemark(String value) { this.Remark = value; return this; } public String getJobNo() { return JobNo; } public v_JB_Purchases setJobNo(String value) { this.JobNo = value; return this; } } public static class v_JB_PurchasesEstimateTotalsToDate { public BigDecimal Charge = null; public BigDecimal Cost = null; public BigDecimal Qty = null; @Required() public String JobID = null; public Short DefaultEstimate = null; public BigDecimal getCharge() { return Charge; } public v_JB_PurchasesEstimateTotalsToDate setCharge(BigDecimal value) { this.Charge = value; return this; } public BigDecimal getCost() { return Cost; } public v_JB_PurchasesEstimateTotalsToDate setCost(BigDecimal value) { this.Cost = value; return this; } public BigDecimal getQty() { return Qty; } public v_JB_PurchasesEstimateTotalsToDate setQty(BigDecimal value) { this.Qty = value; return this; } public String getJobID() { return JobID; } public v_JB_PurchasesEstimateTotalsToDate setJobID(String value) { this.JobID = value; return this; } public Short getDefaultEstimate() { return DefaultEstimate; } public v_JB_PurchasesEstimateTotalsToDate setDefaultEstimate(Short value) { this.DefaultEstimate = value; return this; } } public static class v_JB_PurchasesTotalsToDate { public BigDecimal Charge = null; public BigDecimal Cost = null; public BigDecimal Qty = null; @Required() public String JobID = null; public BigDecimal getCharge() { return Charge; } public v_JB_PurchasesTotalsToDate setCharge(BigDecimal value) { this.Charge = value; return this; } public BigDecimal getCost() { return Cost; } public v_JB_PurchasesTotalsToDate setCost(BigDecimal value) { this.Cost = value; return this; } public BigDecimal getQty() { return Qty; } public v_JB_PurchasesTotalsToDate setQty(BigDecimal value) { this.Qty = value; return this; } public String getJobID() { return JobID; } public v_JB_PurchasesTotalsToDate setJobID(String value) { this.JobID = value; return this; } } public static class v_JB_Resources { @Required() public String SourceType = null; @Required() public String BatchNo = null; @Required() public String JobCostStage = null; public String Item = null; public String Description = null; @Required() public Date TranDate = null; public BigDecimal Qty = null; @Required() public BigDecimal TotalCost = null; @Required() public BigDecimal TotalCharge = null; public String Remark = null; public String JobNo = null; public String getSourceType() { return SourceType; } public v_JB_Resources setSourceType(String value) { this.SourceType = value; return this; } public String getBatchNo() { return BatchNo; } public v_JB_Resources setBatchNo(String value) { this.BatchNo = value; return this; } public String getJobCostStage() { return JobCostStage; } public v_JB_Resources setJobCostStage(String value) { this.JobCostStage = value; return this; } public String getItem() { return Item; } public v_JB_Resources setItem(String value) { this.Item = value; return this; } public String getDescription() { return Description; } public v_JB_Resources setDescription(String value) { this.Description = value; return this; } public Date getTranDate() { return TranDate; } public v_JB_Resources setTranDate(Date value) { this.TranDate = value; return this; } public BigDecimal getQty() { return Qty; } public v_JB_Resources setQty(BigDecimal value) { this.Qty = value; return this; } public BigDecimal getTotalCost() { return TotalCost; } public v_JB_Resources setTotalCost(BigDecimal value) { this.TotalCost = value; return this; } public BigDecimal getTotalCharge() { return TotalCharge; } public v_JB_Resources setTotalCharge(BigDecimal value) { this.TotalCharge = value; return this; } public String getRemark() { return Remark; } public v_JB_Resources setRemark(String value) { this.Remark = value; return this; } public String getJobNo() { return JobNo; } public v_JB_Resources setJobNo(String value) { this.JobNo = value; return this; } } public static class v_JB_ResourcesEstimateTotalsToDate { public BigDecimal Charge = null; public BigDecimal Cost = null; public BigDecimal Qty = null; @Required() public String JobID = null; public Short DefaultEstimate = null; public BigDecimal getCharge() { return Charge; } public v_JB_ResourcesEstimateTotalsToDate setCharge(BigDecimal value) { this.Charge = value; return this; } public BigDecimal getCost() { return Cost; } public v_JB_ResourcesEstimateTotalsToDate setCost(BigDecimal value) { this.Cost = value; return this; } public BigDecimal getQty() { return Qty; } public v_JB_ResourcesEstimateTotalsToDate setQty(BigDecimal value) { this.Qty = value; return this; } public String getJobID() { return JobID; } public v_JB_ResourcesEstimateTotalsToDate setJobID(String value) { this.JobID = value; return this; } public Short getDefaultEstimate() { return DefaultEstimate; } public v_JB_ResourcesEstimateTotalsToDate setDefaultEstimate(Short value) { this.DefaultEstimate = value; return this; } } public static class v_JB_ResourcesTotalsToDate { public BigDecimal Charge = null; public BigDecimal Cost = null; public BigDecimal Qty = null; @Required() public String JobID = null; public BigDecimal getCharge() { return Charge; } public v_JB_ResourcesTotalsToDate setCharge(BigDecimal value) { this.Charge = value; return this; } public BigDecimal getCost() { return Cost; } public v_JB_ResourcesTotalsToDate setCost(BigDecimal value) { this.Cost = value; return this; } public BigDecimal getQty() { return Qty; } public v_JB_ResourcesTotalsToDate setQty(BigDecimal value) { this.Qty = value; return this; } public String getJobID() { return JobID; } public v_JB_ResourcesTotalsToDate setJobID(String value) { this.JobID = value; return this; } } public static class v_JB_Transactions { @Required() public String SourceType = null; @Required() public String BatchNo = null; public String JobCostStage = null; public String Item = null; public String Description = null; public Date TranDate = null; public BigDecimal Qty = null; public BigDecimal TotalCost = null; public BigDecimal TotalCharge = null; public String Remark = null; public String JobNo = null; public String getSourceType() { return SourceType; } public v_JB_Transactions setSourceType(String value) { this.SourceType = value; return this; } public String getBatchNo() { return BatchNo; } public v_JB_Transactions setBatchNo(String value) { this.BatchNo = value; return this; } public String getJobCostStage() { return JobCostStage; } public v_JB_Transactions setJobCostStage(String value) { this.JobCostStage = value; return this; } public String getItem() { return Item; } public v_JB_Transactions setItem(String value) { this.Item = value; return this; } public String getDescription() { return Description; } public v_JB_Transactions setDescription(String value) { this.Description = value; return this; } public Date getTranDate() { return TranDate; } public v_JB_Transactions setTranDate(Date value) { this.TranDate = value; return this; } public BigDecimal getQty() { return Qty; } public v_JB_Transactions setQty(BigDecimal value) { this.Qty = value; return this; } public BigDecimal getTotalCost() { return TotalCost; } public v_JB_Transactions setTotalCost(BigDecimal value) { this.TotalCost = value; return this; } public BigDecimal getTotalCharge() { return TotalCharge; } public v_JB_Transactions setTotalCharge(BigDecimal value) { this.TotalCharge = value; return this; } public String getRemark() { return Remark; } public v_JB_Transactions setRemark(String value) { this.Remark = value; return this; } public String getJobNo() { return JobNo; } public v_JB_Transactions setJobNo(String value) { this.JobNo = value; return this; } } public static class v_JB_WIPValue { public BigDecimal Cost = null; public BigDecimal Charge = null; @Required() public String JobID = null; public BigDecimal getCost() { return Cost; } public v_JB_WIPValue setCost(BigDecimal value) { this.Cost = value; return this; } public BigDecimal getCharge() { return Charge; } public v_JB_WIPValue setCharge(BigDecimal value) { this.Charge = value; return this; } public String getJobID() { return JobID; } public v_JB_WIPValue setJobID(String value) { this.JobID = value; return this; } } public static class V_JIWA_Debtor_ALL { @Required() public String DebtorID = null; public String SearchField = null; @Required() public String AccountNo = null; public String Name = null; public String Phone = null; public String PostCode = null; public String Address3 = null; public String Address2 = null; public String getDebtorID() { return DebtorID; } public V_JIWA_Debtor_ALL setDebtorID(String value) { this.DebtorID = value; return this; } public String getSearchField() { return SearchField; } public V_JIWA_Debtor_ALL setSearchField(String value) { this.SearchField = value; return this; } public String getAccountNo() { return AccountNo; } public V_JIWA_Debtor_ALL setAccountNo(String value) { this.AccountNo = value; return this; } public String getName() { return Name; } public V_JIWA_Debtor_ALL setName(String value) { this.Name = value; return this; } public String getPhone() { return Phone; } public V_JIWA_Debtor_ALL setPhone(String value) { this.Phone = value; return this; } public String getPostCode() { return PostCode; } public V_JIWA_Debtor_ALL setPostCode(String value) { this.PostCode = value; return this; } public String getAddress3() { return Address3; } public V_JIWA_Debtor_ALL setAddress3(String value) { this.Address3 = value; return this; } public String getAddress2() { return Address2; } public V_JIWA_Debtor_ALL setAddress2(String value) { this.Address2 = value; return this; } } public static class v_Jiwa_Debtor_List { @Required() public String DebtorID = null; @Required() public String AccountNo = null; public String Name = null; public String AltAccountNo = null; public String Address1 = null; public String Address2 = null; public String Address3 = null; public String Address4 = null; public String PostCode = null; @Required() public String Country = null; public String Phone = null; public Boolean AccountOnHold = null; public String EmailAddress = null; public BigDecimal CurrentBalance = null; @Required() public Boolean WebAccess = null; public Date LastSavedDateTime = null; public Short TradingStatus = null; @Required() public String DebtorClassificationID = null; @Required() public String ClassificationDescription = null; @Required() public String Category1ID = null; public String Category1Description = null; @Required() public String Category2ID = null; public String Category2Description = null; @Required() public String Category3ID = null; public String Category3Description = null; @Required() public String Category4ID = null; public String Category4Description = null; @Required() public String Category5ID = null; public String Category5Description = null; @Required() public String PriceSchemeID = null; @Required() public String PriceSchemeDescription = null; @Required() public String PricingGroupDescription = null; public String getDebtorID() { return DebtorID; } public v_Jiwa_Debtor_List setDebtorID(String value) { this.DebtorID = value; return this; } public String getAccountNo() { return AccountNo; } public v_Jiwa_Debtor_List setAccountNo(String value) { this.AccountNo = value; return this; } public String getName() { return Name; } public v_Jiwa_Debtor_List setName(String value) { this.Name = value; return this; } public String getAltAccountNo() { return AltAccountNo; } public v_Jiwa_Debtor_List setAltAccountNo(String value) { this.AltAccountNo = value; return this; } public String getAddress1() { return Address1; } public v_Jiwa_Debtor_List setAddress1(String value) { this.Address1 = value; return this; } public String getAddress2() { return Address2; } public v_Jiwa_Debtor_List setAddress2(String value) { this.Address2 = value; return this; } public String getAddress3() { return Address3; } public v_Jiwa_Debtor_List setAddress3(String value) { this.Address3 = value; return this; } public String getAddress4() { return Address4; } public v_Jiwa_Debtor_List setAddress4(String value) { this.Address4 = value; return this; } public String getPostCode() { return PostCode; } public v_Jiwa_Debtor_List setPostCode(String value) { this.PostCode = value; return this; } public String getCountry() { return Country; } public v_Jiwa_Debtor_List setCountry(String value) { this.Country = value; return this; } public String getPhone() { return Phone; } public v_Jiwa_Debtor_List setPhone(String value) { this.Phone = value; return this; } public Boolean isAccountOnHold() { return AccountOnHold; } public v_Jiwa_Debtor_List setAccountOnHold(Boolean value) { this.AccountOnHold = value; return this; } public String getEmailAddress() { return EmailAddress; } public v_Jiwa_Debtor_List setEmailAddress(String value) { this.EmailAddress = value; return this; } public BigDecimal getCurrentBalance() { return CurrentBalance; } public v_Jiwa_Debtor_List setCurrentBalance(BigDecimal value) { this.CurrentBalance = value; return this; } public Boolean isWebAccess() { return WebAccess; } public v_Jiwa_Debtor_List setWebAccess(Boolean value) { this.WebAccess = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public v_Jiwa_Debtor_List setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Short getTradingStatus() { return TradingStatus; } public v_Jiwa_Debtor_List setTradingStatus(Short value) { this.TradingStatus = value; return this; } public String getDebtorClassificationID() { return DebtorClassificationID; } public v_Jiwa_Debtor_List setDebtorClassificationID(String value) { this.DebtorClassificationID = value; return this; } public String getClassificationDescription() { return ClassificationDescription; } public v_Jiwa_Debtor_List setClassificationDescription(String value) { this.ClassificationDescription = value; return this; } public String getCategory1ID() { return Category1ID; } public v_Jiwa_Debtor_List setCategory1ID(String value) { this.Category1ID = value; return this; } public String getCategory1Description() { return Category1Description; } public v_Jiwa_Debtor_List setCategory1Description(String value) { this.Category1Description = value; return this; } public String getCategory2ID() { return Category2ID; } public v_Jiwa_Debtor_List setCategory2ID(String value) { this.Category2ID = value; return this; } public String getCategory2Description() { return Category2Description; } public v_Jiwa_Debtor_List setCategory2Description(String value) { this.Category2Description = value; return this; } public String getCategory3ID() { return Category3ID; } public v_Jiwa_Debtor_List setCategory3ID(String value) { this.Category3ID = value; return this; } public String getCategory3Description() { return Category3Description; } public v_Jiwa_Debtor_List setCategory3Description(String value) { this.Category3Description = value; return this; } public String getCategory4ID() { return Category4ID; } public v_Jiwa_Debtor_List setCategory4ID(String value) { this.Category4ID = value; return this; } public String getCategory4Description() { return Category4Description; } public v_Jiwa_Debtor_List setCategory4Description(String value) { this.Category4Description = value; return this; } public String getCategory5ID() { return Category5ID; } public v_Jiwa_Debtor_List setCategory5ID(String value) { this.Category5ID = value; return this; } public String getCategory5Description() { return Category5Description; } public v_Jiwa_Debtor_List setCategory5Description(String value) { this.Category5Description = value; return this; } public String getPriceSchemeID() { return PriceSchemeID; } public v_Jiwa_Debtor_List setPriceSchemeID(String value) { this.PriceSchemeID = value; return this; } public String getPriceSchemeDescription() { return PriceSchemeDescription; } public v_Jiwa_Debtor_List setPriceSchemeDescription(String value) { this.PriceSchemeDescription = value; return this; } public String getPricingGroupDescription() { return PricingGroupDescription; } public v_Jiwa_Debtor_List setPricingGroupDescription(String value) { this.PricingGroupDescription = value; return this; } } public static class v_Jiwa_Debtor_Transactions_List { @Required() public String TransID = null; public String DebtorID = null; @Required() public String AccountNo = null; public String Name = null; public Date TranDate = null; public Date DueDate = null; public String InvRemitNo = null; @Required() public Boolean DebitCredit = null; public BigDecimal Amount = null; public BigDecimal AllocatedAmount = null; public BigDecimal GSTAmount = null; public BigDecimal OutstandingAmount = null; public String Description = null; public String SourceID = null; public String Ref = null; public String Remark = null; public String Note = null; @Required() public Boolean AgedOut = null; public String getTransID() { return TransID; } public v_Jiwa_Debtor_Transactions_List setTransID(String value) { this.TransID = value; return this; } public String getDebtorID() { return DebtorID; } public v_Jiwa_Debtor_Transactions_List setDebtorID(String value) { this.DebtorID = value; return this; } public String getAccountNo() { return AccountNo; } public v_Jiwa_Debtor_Transactions_List setAccountNo(String value) { this.AccountNo = value; return this; } public String getName() { return Name; } public v_Jiwa_Debtor_Transactions_List setName(String value) { this.Name = value; return this; } public Date getTranDate() { return TranDate; } public v_Jiwa_Debtor_Transactions_List setTranDate(Date value) { this.TranDate = value; return this; } public Date getDueDate() { return DueDate; } public v_Jiwa_Debtor_Transactions_List setDueDate(Date value) { this.DueDate = value; return this; } public String getInvRemitNo() { return InvRemitNo; } public v_Jiwa_Debtor_Transactions_List setInvRemitNo(String value) { this.InvRemitNo = value; return this; } public Boolean isDebitCredit() { return DebitCredit; } public v_Jiwa_Debtor_Transactions_List setDebitCredit(Boolean value) { this.DebitCredit = value; return this; } public BigDecimal getAmount() { return Amount; } public v_Jiwa_Debtor_Transactions_List setAmount(BigDecimal value) { this.Amount = value; return this; } public BigDecimal getAllocatedAmount() { return AllocatedAmount; } public v_Jiwa_Debtor_Transactions_List setAllocatedAmount(BigDecimal value) { this.AllocatedAmount = value; return this; } public BigDecimal getGstAmount() { return GSTAmount; } public v_Jiwa_Debtor_Transactions_List setGstAmount(BigDecimal value) { this.GSTAmount = value; return this; } public BigDecimal getOutstandingAmount() { return OutstandingAmount; } public v_Jiwa_Debtor_Transactions_List setOutstandingAmount(BigDecimal value) { this.OutstandingAmount = value; return this; } public String getDescription() { return Description; } public v_Jiwa_Debtor_Transactions_List setDescription(String value) { this.Description = value; return this; } public String getSourceID() { return SourceID; } public v_Jiwa_Debtor_Transactions_List setSourceID(String value) { this.SourceID = value; return this; } public String getRef() { return Ref; } public v_Jiwa_Debtor_Transactions_List setRef(String value) { this.Ref = value; return this; } public String getRemark() { return Remark; } public v_Jiwa_Debtor_Transactions_List setRemark(String value) { this.Remark = value; return this; } public String getNote() { return Note; } public v_Jiwa_Debtor_Transactions_List setNote(String value) { this.Note = value; return this; } public Boolean isAgedOut() { return AgedOut; } public v_Jiwa_Debtor_Transactions_List setAgedOut(Boolean value) { this.AgedOut = value; return this; } } public static class v_JIWA_DefaultOrderLocations { @Required() public String IN_LogicalID = null; @Required() public String IN_PhysicalID = null; public String LogicalWarehouseDesciption = null; @Required() public String PhysicalWarehouseDesciption = null; public String getInLogicalID() { return IN_LogicalID; } public v_JIWA_DefaultOrderLocations setInLogicalID(String value) { this.IN_LogicalID = value; return this; } public String getInPhysicalID() { return IN_PhysicalID; } public v_JIWA_DefaultOrderLocations setInPhysicalID(String value) { this.IN_PhysicalID = value; return this; } public String getLogicalWarehouseDesciption() { return LogicalWarehouseDesciption; } public v_JIWA_DefaultOrderLocations setLogicalWarehouseDesciption(String value) { this.LogicalWarehouseDesciption = value; return this; } public String getPhysicalWarehouseDesciption() { return PhysicalWarehouseDesciption; } public v_JIWA_DefaultOrderLocations setPhysicalWarehouseDesciption(String value) { this.PhysicalWarehouseDesciption = value; return this; } } public static class v_Jiwa_GL_PeriodsFromGL_Config { @Required() public Short Year_No = null; public String Period_Name = null; @Required() public Date Period_Start_Date = null; public Date Period_End_Date = null; public Short getYearNo() { return Year_No; } public v_Jiwa_GL_PeriodsFromGL_Config setYearNo(Short value) { this.Year_No = value; return this; } public String getPeriodName() { return Period_Name; } public v_Jiwa_GL_PeriodsFromGL_Config setPeriodName(String value) { this.Period_Name = value; return this; } public Date getPeriodStartDate() { return Period_Start_Date; } public v_Jiwa_GL_PeriodsFromGL_Config setPeriodStartDate(Date value) { this.Period_Start_Date = value; return this; } public Date getPeriodEndDate() { return Period_End_Date; } public v_Jiwa_GL_PeriodsFromGL_Config setPeriodEndDate(Date value) { this.Period_End_Date = value; return this; } } public static class v_Jiwa_GL_PeriodsFromGL_ConfigAndSO_SalesHistory { public Short Year_No = null; public String Period_Name = null; public Date Period_Start_Date = null; public Date Period_End_Date = null; public Short getYearNo() { return Year_No; } public v_Jiwa_GL_PeriodsFromGL_ConfigAndSO_SalesHistory setYearNo(Short value) { this.Year_No = value; return this; } public String getPeriodName() { return Period_Name; } public v_Jiwa_GL_PeriodsFromGL_ConfigAndSO_SalesHistory setPeriodName(String value) { this.Period_Name = value; return this; } public Date getPeriodStartDate() { return Period_Start_Date; } public v_Jiwa_GL_PeriodsFromGL_ConfigAndSO_SalesHistory setPeriodStartDate(Date value) { this.Period_Start_Date = value; return this; } public Date getPeriodEndDate() { return Period_End_Date; } public v_Jiwa_GL_PeriodsFromGL_ConfigAndSO_SalesHistory setPeriodEndDate(Date value) { this.Period_End_Date = value; return this; } } public static class v_Jiwa_GL_PeriodsFromSO_SalesHistory { public Short Year_No = null; public String Period_Name = null; public Date Period_Start_Date = null; public Date Period_End_Date = null; public Short getYearNo() { return Year_No; } public v_Jiwa_GL_PeriodsFromSO_SalesHistory setYearNo(Short value) { this.Year_No = value; return this; } public String getPeriodName() { return Period_Name; } public v_Jiwa_GL_PeriodsFromSO_SalesHistory setPeriodName(String value) { this.Period_Name = value; return this; } public Date getPeriodStartDate() { return Period_Start_Date; } public v_Jiwa_GL_PeriodsFromSO_SalesHistory setPeriodStartDate(Date value) { this.Period_Start_Date = value; return this; } public Date getPeriodEndDate() { return Period_End_Date; } public v_Jiwa_GL_PeriodsFromSO_SalesHistory setPeriodEndDate(Date value) { this.Period_End_Date = value; return this; } } public static class v_JIWA_Inventory_AllPartsIncludingOldPartNumbers { public String InventoryID = null; public String PartNo = null; public String Description = null; public String getInventoryID() { return InventoryID; } public v_JIWA_Inventory_AllPartsIncludingOldPartNumbers setInventoryID(String value) { this.InventoryID = value; return this; } public String getPartNo() { return PartNo; } public v_JIWA_Inventory_AllPartsIncludingOldPartNumbers setPartNo(String value) { this.PartNo = value; return this; } public String getDescription() { return Description; } public v_JIWA_Inventory_AllPartsIncludingOldPartNumbers setDescription(String value) { this.Description = value; return this; } } public static class SH_Main { @Required() public String ShipmentID = null; @Required() public Date LastSavedDateTime = null; @Required() public String IN_LogicalID = null; @Required() public String ShipmentNo = null; @Required() public Short Status = null; @Required() public Date ShipInitDate = null; public String WayBillNo = null; public String VesselName = null; public String ContainerNo = null; @References(CR_Main.class) public String ShippingAgent = null; public String DeliveryNotes = null; public Date DepartureDate = null; public Date ArrivalDate = null; public Date ReceiptDate = null; @Required() public Boolean UseVOTI = null; public String ImportCostClearingAccountID = null; @Required() public Date ExpectedArrivalDate = null; public String getShipmentID() { return ShipmentID; } public SH_Main setShipmentID(String value) { this.ShipmentID = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public SH_Main setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public String getInLogicalID() { return IN_LogicalID; } public SH_Main setInLogicalID(String value) { this.IN_LogicalID = value; return this; } public String getShipmentNo() { return ShipmentNo; } public SH_Main setShipmentNo(String value) { this.ShipmentNo = value; return this; } public Short getStatus() { return Status; } public SH_Main setStatus(Short value) { this.Status = value; return this; } public Date getShipInitDate() { return ShipInitDate; } public SH_Main setShipInitDate(Date value) { this.ShipInitDate = value; return this; } public String getWayBillNo() { return WayBillNo; } public SH_Main setWayBillNo(String value) { this.WayBillNo = value; return this; } public String getVesselName() { return VesselName; } public SH_Main setVesselName(String value) { this.VesselName = value; return this; } public String getContainerNo() { return ContainerNo; } public SH_Main setContainerNo(String value) { this.ContainerNo = value; return this; } public String getShippingAgent() { return ShippingAgent; } public SH_Main setShippingAgent(String value) { this.ShippingAgent = value; return this; } public String getDeliveryNotes() { return DeliveryNotes; } public SH_Main setDeliveryNotes(String value) { this.DeliveryNotes = value; return this; } public Date getDepartureDate() { return DepartureDate; } public SH_Main setDepartureDate(Date value) { this.DepartureDate = value; return this; } public Date getArrivalDate() { return ArrivalDate; } public SH_Main setArrivalDate(Date value) { this.ArrivalDate = value; return this; } public Date getReceiptDate() { return ReceiptDate; } public SH_Main setReceiptDate(Date value) { this.ReceiptDate = value; return this; } public Boolean isUseVOTI() { return UseVOTI; } public SH_Main setUseVOTI(Boolean value) { this.UseVOTI = value; return this; } public String getImportCostClearingAccountID() { return ImportCostClearingAccountID; } public SH_Main setImportCostClearingAccountID(String value) { this.ImportCostClearingAccountID = value; return this; } public Date getExpectedArrivalDate() { return ExpectedArrivalDate; } public SH_Main setExpectedArrivalDate(Date value) { this.ExpectedArrivalDate = value; return this; } } public static class SH_PurchaseOrders { @Required() public String RecID = null; @Required() public String SH_Main_RecID = null; @Required() public String PO_Main_RecID = null; @Required() public Boolean DisplayLines = null; public BigDecimal FXRate = null; public String UserField1 = null; public String UserField2 = null; public String UserField3 = null; public String UserField4 = null; public String UserField5 = null; public String UserField6 = null; public String UserField7 = null; public String UserField8 = null; public String UserField9 = null; public String UserField10 = null; @Required() public Integer ItemNo = null; @Required() public ArrayList RowHash = null; public String getRecID() { return RecID; } public SH_PurchaseOrders setRecID(String value) { this.RecID = value; return this; } public String getShMainRecID() { return SH_Main_RecID; } public SH_PurchaseOrders setShMainRecID(String value) { this.SH_Main_RecID = value; return this; } public String getPoMainRecID() { return PO_Main_RecID; } public SH_PurchaseOrders setPoMainRecID(String value) { this.PO_Main_RecID = value; return this; } public Boolean isDisplayLines() { return DisplayLines; } public SH_PurchaseOrders setDisplayLines(Boolean value) { this.DisplayLines = value; return this; } public BigDecimal getFxRate() { return FXRate; } public SH_PurchaseOrders setFxRate(BigDecimal value) { this.FXRate = value; return this; } public String getUserField1() { return UserField1; } public SH_PurchaseOrders setUserField1(String value) { this.UserField1 = value; return this; } public String getUserField2() { return UserField2; } public SH_PurchaseOrders setUserField2(String value) { this.UserField2 = value; return this; } public String getUserField3() { return UserField3; } public SH_PurchaseOrders setUserField3(String value) { this.UserField3 = value; return this; } public String getUserField4() { return UserField4; } public SH_PurchaseOrders setUserField4(String value) { this.UserField4 = value; return this; } public String getUserField5() { return UserField5; } public SH_PurchaseOrders setUserField5(String value) { this.UserField5 = value; return this; } public String getUserField6() { return UserField6; } public SH_PurchaseOrders setUserField6(String value) { this.UserField6 = value; return this; } public String getUserField7() { return UserField7; } public SH_PurchaseOrders setUserField7(String value) { this.UserField7 = value; return this; } public String getUserField8() { return UserField8; } public SH_PurchaseOrders setUserField8(String value) { this.UserField8 = value; return this; } public String getUserField9() { return UserField9; } public SH_PurchaseOrders setUserField9(String value) { this.UserField9 = value; return this; } public String getUserField10() { return UserField10; } public SH_PurchaseOrders setUserField10(String value) { this.UserField10 = value; return this; } public Integer getItemNo() { return ItemNo; } public SH_PurchaseOrders setItemNo(Integer value) { this.ItemNo = value; return this; } public ArrayList getRowHash() { return RowHash; } public SH_PurchaseOrders setRowHash(ArrayList value) { this.RowHash = value; return this; } } public static class SH_Voti { @Required() public String VotiID = null; @Required() public String ShipmentID = null; @Required() public String CreditorID = null; public String CreditorLedgerID = null; public String GSTID = null; public String LedgerID = null; public String Description = null; public String InvoiceNo = null; public String Reference = null; public BigDecimal Amount = null; public BigDecimal GSTAmount = null; public Date DueDate = null; @Required() public Boolean Invoiced = null; public String CR_TransID = null; public String UserField1 = null; public String UserField2 = null; public String UserField3 = null; public String UserField4 = null; public String UserField5 = null; public String UserField6 = null; public String UserField7 = null; public String UserField8 = null; public String UserField9 = null; public String UserField10 = null; public Integer DecimalPlaces = null; public Date InvoiceDate = null; @Required() public ArrayList RowHash = null; @Required() public Integer ItemNo = null; public String getVotiID() { return VotiID; } public SH_Voti setVotiID(String value) { this.VotiID = value; return this; } public String getShipmentID() { return ShipmentID; } public SH_Voti setShipmentID(String value) { this.ShipmentID = value; return this; } public String getCreditorID() { return CreditorID; } public SH_Voti setCreditorID(String value) { this.CreditorID = value; return this; } public String getCreditorLedgerID() { return CreditorLedgerID; } public SH_Voti setCreditorLedgerID(String value) { this.CreditorLedgerID = value; return this; } public String getGstid() { return GSTID; } public SH_Voti setGstid(String value) { this.GSTID = value; return this; } public String getLedgerID() { return LedgerID; } public SH_Voti setLedgerID(String value) { this.LedgerID = value; return this; } public String getDescription() { return Description; } public SH_Voti setDescription(String value) { this.Description = value; return this; } public String getInvoiceNo() { return InvoiceNo; } public SH_Voti setInvoiceNo(String value) { this.InvoiceNo = value; return this; } public String getReference() { return Reference; } public SH_Voti setReference(String value) { this.Reference = value; return this; } public BigDecimal getAmount() { return Amount; } public SH_Voti setAmount(BigDecimal value) { this.Amount = value; return this; } public BigDecimal getGstAmount() { return GSTAmount; } public SH_Voti setGstAmount(BigDecimal value) { this.GSTAmount = value; return this; } public Date getDueDate() { return DueDate; } public SH_Voti setDueDate(Date value) { this.DueDate = value; return this; } public Boolean isInvoiced() { return Invoiced; } public SH_Voti setInvoiced(Boolean value) { this.Invoiced = value; return this; } public String getCrTransID() { return CR_TransID; } public SH_Voti setCrTransID(String value) { this.CR_TransID = value; return this; } public String getUserField1() { return UserField1; } public SH_Voti setUserField1(String value) { this.UserField1 = value; return this; } public String getUserField2() { return UserField2; } public SH_Voti setUserField2(String value) { this.UserField2 = value; return this; } public String getUserField3() { return UserField3; } public SH_Voti setUserField3(String value) { this.UserField3 = value; return this; } public String getUserField4() { return UserField4; } public SH_Voti setUserField4(String value) { this.UserField4 = value; return this; } public String getUserField5() { return UserField5; } public SH_Voti setUserField5(String value) { this.UserField5 = value; return this; } public String getUserField6() { return UserField6; } public SH_Voti setUserField6(String value) { this.UserField6 = value; return this; } public String getUserField7() { return UserField7; } public SH_Voti setUserField7(String value) { this.UserField7 = value; return this; } public String getUserField8() { return UserField8; } public SH_Voti setUserField8(String value) { this.UserField8 = value; return this; } public String getUserField9() { return UserField9; } public SH_Voti setUserField9(String value) { this.UserField9 = value; return this; } public String getUserField10() { return UserField10; } public SH_Voti setUserField10(String value) { this.UserField10 = value; return this; } public Integer getDecimalPlaces() { return DecimalPlaces; } public SH_Voti setDecimalPlaces(Integer value) { this.DecimalPlaces = value; return this; } public Date getInvoiceDate() { return InvoiceDate; } public SH_Voti setInvoiceDate(Date value) { this.InvoiceDate = value; return this; } public ArrayList getRowHash() { return RowHash; } public SH_Voti setRowHash(ArrayList value) { this.RowHash = value; return this; } public Integer getItemNo() { return ItemNo; } public SH_Voti setItemNo(Integer value) { this.ItemNo = value; return this; } } public static class SM_Activities { @Required() public String RecID = null; @Required() public String Name = null; public String Description = null; @Required() public Integer ItemNo = null; public Boolean IsEnabled = null; @Required() public ArrayList RowHash = null; public Boolean IsDefault = null; public String getRecID() { return RecID; } public SM_Activities setRecID(String value) { this.RecID = value; return this; } public String getName() { return Name; } public SM_Activities setName(String value) { this.Name = value; return this; } public String getDescription() { return Description; } public SM_Activities setDescription(String value) { this.Description = value; return this; } public Integer getItemNo() { return ItemNo; } public SM_Activities setItemNo(Integer value) { this.ItemNo = value; return this; } public Boolean getIsEnabled() { return IsEnabled; } public SM_Activities setIsEnabled(Boolean value) { this.IsEnabled = value; return this; } public ArrayList getRowHash() { return RowHash; } public SM_Activities setRowHash(ArrayList value) { this.RowHash = value; return this; } public Boolean getIsDefault() { return IsDefault; } public SM_Activities setIsDefault(Boolean value) { this.IsDefault = value; return this; } } public static class SM_ActivityBudgets { @Required() public String RecID = null; @References(SM_Activities.class) @Required() public String SM_Activities_RecID = null; @References(SM_Tasks.class) @Required() public String SM_Tasks_RecID = null; public BigDecimal BudgetedBillingTime = null; public BigDecimal BudgetedElapsedTime = null; public BigDecimal BudgetedBillingValue = null; @Required() public Date LastSavedDateTime = null; @Required() public Integer ItemNo = null; @Required() public ArrayList RowHash = null; public String getRecID() { return RecID; } public SM_ActivityBudgets setRecID(String value) { this.RecID = value; return this; } public String getSmActivitiesRecID() { return SM_Activities_RecID; } public SM_ActivityBudgets setSmActivitiesRecID(String value) { this.SM_Activities_RecID = value; return this; } public String getSmTasksRecID() { return SM_Tasks_RecID; } public SM_ActivityBudgets setSmTasksRecID(String value) { this.SM_Tasks_RecID = value; return this; } public BigDecimal getBudgetedBillingTime() { return BudgetedBillingTime; } public SM_ActivityBudgets setBudgetedBillingTime(BigDecimal value) { this.BudgetedBillingTime = value; return this; } public BigDecimal getBudgetedElapsedTime() { return BudgetedElapsedTime; } public SM_ActivityBudgets setBudgetedElapsedTime(BigDecimal value) { this.BudgetedElapsedTime = value; return this; } public BigDecimal getBudgetedBillingValue() { return BudgetedBillingValue; } public SM_ActivityBudgets setBudgetedBillingValue(BigDecimal value) { this.BudgetedBillingValue = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public SM_ActivityBudgets setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Integer getItemNo() { return ItemNo; } public SM_ActivityBudgets setItemNo(Integer value) { this.ItemNo = value; return this; } public ArrayList getRowHash() { return RowHash; } public SM_ActivityBudgets setRowHash(ArrayList value) { this.RowHash = value; return this; } } public static class SM_ActivityBudgetsCustomFields { @Required() public String RecID = null; @Required() public String SettingName = null; public String SettingDescription = null; public Integer CellType = null; public String FieldParameter = null; @References(SY_Plugin.class) @Required() public UUID SY_Plugin_RecID = null; public Date LastSavedDateTime = null; public Integer DisplayOrder = null; public String getRecID() { return RecID; } public SM_ActivityBudgetsCustomFields setRecID(String value) { this.RecID = value; return this; } public String getSettingName() { return SettingName; } public SM_ActivityBudgetsCustomFields setSettingName(String value) { this.SettingName = value; return this; } public String getSettingDescription() { return SettingDescription; } public SM_ActivityBudgetsCustomFields setSettingDescription(String value) { this.SettingDescription = value; return this; } public Integer getCellType() { return CellType; } public SM_ActivityBudgetsCustomFields setCellType(Integer value) { this.CellType = value; return this; } public String getFieldParameter() { return FieldParameter; } public SM_ActivityBudgetsCustomFields setFieldParameter(String value) { this.FieldParameter = value; return this; } public UUID getSyPluginRecID() { return SY_Plugin_RecID; } public SM_ActivityBudgetsCustomFields setSyPluginRecID(UUID value) { this.SY_Plugin_RecID = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public SM_ActivityBudgetsCustomFields setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Integer getDisplayOrder() { return DisplayOrder; } public SM_ActivityBudgetsCustomFields setDisplayOrder(Integer value) { this.DisplayOrder = value; return this; } } public static class SM_ActivityBudgetsCustomValues { @Required() public String RecID = null; @References(SM_ActivityBudgets.class) @Required() public String SM_ActivityBudgets_RecID = null; @References(SM_ActivityBudgetsCustomFields.class) @Required() public String SM_ActivityBudgetsCustomFields_RecID = null; public String Contents = null; public Date LastSavedDateTime = null; public String getRecID() { return RecID; } public SM_ActivityBudgetsCustomValues setRecID(String value) { this.RecID = value; return this; } public String getSmActivityBudgetsRecID() { return SM_ActivityBudgets_RecID; } public SM_ActivityBudgetsCustomValues setSmActivityBudgetsRecID(String value) { this.SM_ActivityBudgets_RecID = value; return this; } public String getSmActivityBudgetsCustomFieldsRecID() { return SM_ActivityBudgetsCustomFields_RecID; } public SM_ActivityBudgetsCustomValues setSmActivityBudgetsCustomFieldsRecID(String value) { this.SM_ActivityBudgetsCustomFields_RecID = value; return this; } public String getContents() { return Contents; } public SM_ActivityBudgetsCustomValues setContents(String value) { this.Contents = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public SM_ActivityBudgetsCustomValues setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } } public static class SM_CashSale { @Required() public String RecID = null; @References(SM_Tasks.class) @Required() public String SM_Tasks_RecID = null; public String Name = null; public String Company = null; public String Address1 = null; public String Address2 = null; public String Address3 = null; public String Address4 = null; public String PostCode = null; public String Phone = null; public String Fax = null; public String ContactName = null; @Required() public ArrayList RowHash = null; public String Country = null; public String getRecID() { return RecID; } public SM_CashSale setRecID(String value) { this.RecID = value; return this; } public String getSmTasksRecID() { return SM_Tasks_RecID; } public SM_CashSale setSmTasksRecID(String value) { this.SM_Tasks_RecID = value; return this; } public String getName() { return Name; } public SM_CashSale setName(String value) { this.Name = value; return this; } public String getCompany() { return Company; } public SM_CashSale setCompany(String value) { this.Company = value; return this; } public String getAddress1() { return Address1; } public SM_CashSale setAddress1(String value) { this.Address1 = value; return this; } public String getAddress2() { return Address2; } public SM_CashSale setAddress2(String value) { this.Address2 = value; return this; } public String getAddress3() { return Address3; } public SM_CashSale setAddress3(String value) { this.Address3 = value; return this; } public String getAddress4() { return Address4; } public SM_CashSale setAddress4(String value) { this.Address4 = value; return this; } public String getPostCode() { return PostCode; } public SM_CashSale setPostCode(String value) { this.PostCode = value; return this; } public String getPhone() { return Phone; } public SM_CashSale setPhone(String value) { this.Phone = value; return this; } public String getFax() { return Fax; } public SM_CashSale setFax(String value) { this.Fax = value; return this; } public String getContactName() { return ContactName; } public SM_CashSale setContactName(String value) { this.ContactName = value; return this; } public ArrayList getRowHash() { return RowHash; } public SM_CashSale setRowHash(ArrayList value) { this.RowHash = value; return this; } public String getCountry() { return Country; } public SM_CashSale setCountry(String value) { this.Country = value; return this; } } public static class SM_CustomerReturnLineDetails { @Required() public String CustomerReturnLineDetailsID = null; @Required() public Date LastSavedDateTime = null; @Required() public String CustomerReturnID = null; public BigDecimal Quantity = null; public BigDecimal Cost = null; public String SerialNo = null; public String BinLocationDesc = null; public Date ExpiryDate = null; public String SOHID = null; @References(SY_Plugin.class) public UUID SY_Plugin_RecID = null; public String getCustomerReturnLineDetailsID() { return CustomerReturnLineDetailsID; } public SM_CustomerReturnLineDetails setCustomerReturnLineDetailsID(String value) { this.CustomerReturnLineDetailsID = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public SM_CustomerReturnLineDetails setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public String getCustomerReturnID() { return CustomerReturnID; } public SM_CustomerReturnLineDetails setCustomerReturnID(String value) { this.CustomerReturnID = value; return this; } public BigDecimal getQuantity() { return Quantity; } public SM_CustomerReturnLineDetails setQuantity(BigDecimal value) { this.Quantity = value; return this; } public BigDecimal getCost() { return Cost; } public SM_CustomerReturnLineDetails setCost(BigDecimal value) { this.Cost = value; return this; } public String getSerialNo() { return SerialNo; } public SM_CustomerReturnLineDetails setSerialNo(String value) { this.SerialNo = value; return this; } public String getBinLocationDesc() { return BinLocationDesc; } public SM_CustomerReturnLineDetails setBinLocationDesc(String value) { this.BinLocationDesc = value; return this; } public Date getExpiryDate() { return ExpiryDate; } public SM_CustomerReturnLineDetails setExpiryDate(Date value) { this.ExpiryDate = value; return this; } public String getSohid() { return SOHID; } public SM_CustomerReturnLineDetails setSohid(String value) { this.SOHID = value; return this; } public UUID getSyPluginRecID() { return SY_Plugin_RecID; } public SM_CustomerReturnLineDetails setSyPluginRecID(UUID value) { this.SY_Plugin_RecID = value; return this; } } public static class SM_CustomerReturns { @Required() public String RecID = null; @Required() public Date LastSavedDateTime = null; @Required() public String TaskID = null; public String InventoryID = null; public String PartNo = null; public String Description = null; public Boolean CommentLine = null; public BigDecimal Quantity = null; public BigDecimal PriceExGST = null; public String GSTID = null; public BigDecimal GSTRate = null; public BigDecimal GSTAmount = null; public BigDecimal LineTotalIncGST = null; public Boolean Processed = null; public String InvoiceID = null; public String InvoiceLineID = null; public Integer DisplayOrder = null; public Boolean PhysicalItem = null; public Boolean UseSerials = null; public Short QuantityDecimalPlaces = null; public Boolean SellPriceIsIncTax = null; public String CreditReasonID = null; public Boolean CreditIntoStock = null; public String Notes = null; public Boolean UserDefinedBit1 = null; public Boolean UserDefinedBit2 = null; public Boolean UserDefinedBit3 = null; public String UserDefinedString1 = null; public String UserDefinedString2 = null; public String UserDefinedString3 = null; public Date UserDefinedDate1 = null; public Date UserDefinedDate2 = null; public Date UserDefinedDate3 = null; public BigDecimal UserDefinedFloat1 = null; public BigDecimal UserDefinedFloat2 = null; public BigDecimal UserDefinedFloat3 = null; @References(SY_Plugin.class) public UUID SY_Plugin_RecID = null; public String getRecID() { return RecID; } public SM_CustomerReturns setRecID(String value) { this.RecID = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public SM_CustomerReturns setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public String getTaskID() { return TaskID; } public SM_CustomerReturns setTaskID(String value) { this.TaskID = value; return this; } public String getInventoryID() { return InventoryID; } public SM_CustomerReturns setInventoryID(String value) { this.InventoryID = value; return this; } public String getPartNo() { return PartNo; } public SM_CustomerReturns setPartNo(String value) { this.PartNo = value; return this; } public String getDescription() { return Description; } public SM_CustomerReturns setDescription(String value) { this.Description = value; return this; } public Boolean isCommentLine() { return CommentLine; } public SM_CustomerReturns setCommentLine(Boolean value) { this.CommentLine = value; return this; } public BigDecimal getQuantity() { return Quantity; } public SM_CustomerReturns setQuantity(BigDecimal value) { this.Quantity = value; return this; } public BigDecimal getPriceExGST() { return PriceExGST; } public SM_CustomerReturns setPriceExGST(BigDecimal value) { this.PriceExGST = value; return this; } public String getGstid() { return GSTID; } public SM_CustomerReturns setGstid(String value) { this.GSTID = value; return this; } public BigDecimal getGstRate() { return GSTRate; } public SM_CustomerReturns setGstRate(BigDecimal value) { this.GSTRate = value; return this; } public BigDecimal getGstAmount() { return GSTAmount; } public SM_CustomerReturns setGstAmount(BigDecimal value) { this.GSTAmount = value; return this; } public BigDecimal getLineTotalIncGST() { return LineTotalIncGST; } public SM_CustomerReturns setLineTotalIncGST(BigDecimal value) { this.LineTotalIncGST = value; return this; } public Boolean isProcessed() { return Processed; } public SM_CustomerReturns setProcessed(Boolean value) { this.Processed = value; return this; } public String getInvoiceID() { return InvoiceID; } public SM_CustomerReturns setInvoiceID(String value) { this.InvoiceID = value; return this; } public String getInvoiceLineID() { return InvoiceLineID; } public SM_CustomerReturns setInvoiceLineID(String value) { this.InvoiceLineID = value; return this; } public Integer getDisplayOrder() { return DisplayOrder; } public SM_CustomerReturns setDisplayOrder(Integer value) { this.DisplayOrder = value; return this; } public Boolean isPhysicalItem() { return PhysicalItem; } public SM_CustomerReturns setPhysicalItem(Boolean value) { this.PhysicalItem = value; return this; } public Boolean isUseSerials() { return UseSerials; } public SM_CustomerReturns setUseSerials(Boolean value) { this.UseSerials = value; return this; } public Short getQuantityDecimalPlaces() { return QuantityDecimalPlaces; } public SM_CustomerReturns setQuantityDecimalPlaces(Short value) { this.QuantityDecimalPlaces = value; return this; } public Boolean isSellPriceIsIncTax() { return SellPriceIsIncTax; } public SM_CustomerReturns setSellPriceIsIncTax(Boolean value) { this.SellPriceIsIncTax = value; return this; } public String getCreditReasonID() { return CreditReasonID; } public SM_CustomerReturns setCreditReasonID(String value) { this.CreditReasonID = value; return this; } public Boolean isCreditIntoStock() { return CreditIntoStock; } public SM_CustomerReturns setCreditIntoStock(Boolean value) { this.CreditIntoStock = value; return this; } public String getNotes() { return Notes; } public SM_CustomerReturns setNotes(String value) { this.Notes = value; return this; } public Boolean isUserDefinedBit1() { return UserDefinedBit1; } public SM_CustomerReturns setUserDefinedBit1(Boolean value) { this.UserDefinedBit1 = value; return this; } public Boolean isUserDefinedBit2() { return UserDefinedBit2; } public SM_CustomerReturns setUserDefinedBit2(Boolean value) { this.UserDefinedBit2 = value; return this; } public Boolean isUserDefinedBit3() { return UserDefinedBit3; } public SM_CustomerReturns setUserDefinedBit3(Boolean value) { this.UserDefinedBit3 = value; return this; } public String getUserDefinedString1() { return UserDefinedString1; } public SM_CustomerReturns setUserDefinedString1(String value) { this.UserDefinedString1 = value; return this; } public String getUserDefinedString2() { return UserDefinedString2; } public SM_CustomerReturns setUserDefinedString2(String value) { this.UserDefinedString2 = value; return this; } public String getUserDefinedString3() { return UserDefinedString3; } public SM_CustomerReturns setUserDefinedString3(String value) { this.UserDefinedString3 = value; return this; } public Date getUserDefinedDate1() { return UserDefinedDate1; } public SM_CustomerReturns setUserDefinedDate1(Date value) { this.UserDefinedDate1 = value; return this; } public Date getUserDefinedDate2() { return UserDefinedDate2; } public SM_CustomerReturns setUserDefinedDate2(Date value) { this.UserDefinedDate2 = value; return this; } public Date getUserDefinedDate3() { return UserDefinedDate3; } public SM_CustomerReturns setUserDefinedDate3(Date value) { this.UserDefinedDate3 = value; return this; } public BigDecimal getUserDefinedFloat1() { return UserDefinedFloat1; } public SM_CustomerReturns setUserDefinedFloat1(BigDecimal value) { this.UserDefinedFloat1 = value; return this; } public BigDecimal getUserDefinedFloat2() { return UserDefinedFloat2; } public SM_CustomerReturns setUserDefinedFloat2(BigDecimal value) { this.UserDefinedFloat2 = value; return this; } public BigDecimal getUserDefinedFloat3() { return UserDefinedFloat3; } public SM_CustomerReturns setUserDefinedFloat3(BigDecimal value) { this.UserDefinedFloat3 = value; return this; } public UUID getSyPluginRecID() { return SY_Plugin_RecID; } public SM_CustomerReturns setSyPluginRecID(UUID value) { this.SY_Plugin_RecID = value; return this; } } public static class SM_CustomSettings { @Required() public String SettingID = null; @Required() public Date LastSavedDateTime = null; public String SettingDescription = null; public String SettingName = null; public BigDecimal DisplayOrder = null; public Short CellType = null; public String ScriptFormatCell = null; public String ScriptButtonClicked = null; public String ScriptReadData = null; @References(SY_Plugin.class) @Required() public UUID SY_Plugin_RecID = null; public String getSettingID() { return SettingID; } public SM_CustomSettings setSettingID(String value) { this.SettingID = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public SM_CustomSettings setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public String getSettingDescription() { return SettingDescription; } public SM_CustomSettings setSettingDescription(String value) { this.SettingDescription = value; return this; } public String getSettingName() { return SettingName; } public SM_CustomSettings setSettingName(String value) { this.SettingName = value; return this; } public BigDecimal getDisplayOrder() { return DisplayOrder; } public SM_CustomSettings setDisplayOrder(BigDecimal value) { this.DisplayOrder = value; return this; } public Short getCellType() { return CellType; } public SM_CustomSettings setCellType(Short value) { this.CellType = value; return this; } public String getScriptFormatCell() { return ScriptFormatCell; } public SM_CustomSettings setScriptFormatCell(String value) { this.ScriptFormatCell = value; return this; } public String getScriptButtonClicked() { return ScriptButtonClicked; } public SM_CustomSettings setScriptButtonClicked(String value) { this.ScriptButtonClicked = value; return this; } public String getScriptReadData() { return ScriptReadData; } public SM_CustomSettings setScriptReadData(String value) { this.ScriptReadData = value; return this; } public UUID getSyPluginRecID() { return SY_Plugin_RecID; } public SM_CustomSettings setSyPluginRecID(UUID value) { this.SY_Plugin_RecID = value; return this; } } public static class SM_CustomSettingValues { @Required() public String SettingValueID = null; @References(SM_CustomSettings.class) @Required() public String SettingID = null; @References(SM_Tasks.class) @Required() public String TaskID = null; public String Contents = null; @Required() public Date LastSavedDateTime = null; public String getSettingValueID() { return SettingValueID; } public SM_CustomSettingValues setSettingValueID(String value) { this.SettingValueID = value; return this; } public String getSettingID() { return SettingID; } public SM_CustomSettingValues setSettingID(String value) { this.SettingID = value; return this; } public String getTaskID() { return TaskID; } public SM_CustomSettingValues setTaskID(String value) { this.TaskID = value; return this; } public String getContents() { return Contents; } public SM_CustomSettingValues setContents(String value) { this.Contents = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public SM_CustomSettingValues setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } } public static class SM_DebtorManager { @Required() public String DebtorID = null; public String Name = null; @Required() public String StaffID = null; public String FName = null; public String SName = null; public String getDebtorID() { return DebtorID; } public SM_DebtorManager setDebtorID(String value) { this.DebtorID = value; return this; } public String getName() { return Name; } public SM_DebtorManager setName(String value) { this.Name = value; return this; } public String getStaffID() { return StaffID; } public SM_DebtorManager setStaffID(String value) { this.StaffID = value; return this; } public String getFName() { return FName; } public SM_DebtorManager setFName(String value) { this.FName = value; return this; } public String getSName() { return SName; } public SM_DebtorManager setSName(String value) { this.SName = value; return this; } } public static class SM_Documents { @Required() public String RecID = null; @Required() public String SM_Tasks_RecID = null; @Required() public String DocumentTypeID = null; public Date LastSavedDateTime = null; public String LastSavedByStaffID = null; public ArrayList FileBinary = null; public String Description = null; public String PhysicalFileName = null; @Required() public Integer ItemNo = null; public String getRecID() { return RecID; } public SM_Documents setRecID(String value) { this.RecID = value; return this; } public String getSmTasksRecID() { return SM_Tasks_RecID; } public SM_Documents setSmTasksRecID(String value) { this.SM_Tasks_RecID = value; return this; } public String getDocumentTypeID() { return DocumentTypeID; } public SM_Documents setDocumentTypeID(String value) { this.DocumentTypeID = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public SM_Documents setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public String getLastSavedByStaffID() { return LastSavedByStaffID; } public SM_Documents setLastSavedByStaffID(String value) { this.LastSavedByStaffID = value; return this; } public ArrayList getFileBinary() { return FileBinary; } public SM_Documents setFileBinary(ArrayList value) { this.FileBinary = value; return this; } public String getDescription() { return Description; } public SM_Documents setDescription(String value) { this.Description = value; return this; } public String getPhysicalFileName() { return PhysicalFileName; } public SM_Documents setPhysicalFileName(String value) { this.PhysicalFileName = value; return this; } public Integer getItemNo() { return ItemNo; } public SM_Documents setItemNo(Integer value) { this.ItemNo = value; return this; } } public static class SM_EmailLog { @Required() public String RecID = null; @References(SM_Tasks.class) @Required() public String SM_Tasks_RecID = null; @Required() public Date EmailDateTime = null; public String From = null; public String To = null; public String CC = null; public String BCC = null; public String Attachments = null; public String Subject = null; public String Body = null; @References(SM_Jobs.class) @Required() public String SM_Jobs_RecID = null; @References(HR_Staff.class) @Required() public String HR_Staff_RecID = null; @References(EM_Main.class) public String EM_Main_RecID = null; public Boolean RequestReadReceipt = null; public String getRecID() { return RecID; } public SM_EmailLog setRecID(String value) { this.RecID = value; return this; } public String getSmTasksRecID() { return SM_Tasks_RecID; } public SM_EmailLog setSmTasksRecID(String value) { this.SM_Tasks_RecID = value; return this; } public Date getEmailDateTime() { return EmailDateTime; } public SM_EmailLog setEmailDateTime(Date value) { this.EmailDateTime = value; return this; } public String getFrom() { return From; } public SM_EmailLog setFrom(String value) { this.From = value; return this; } public String getTo() { return To; } public SM_EmailLog setTo(String value) { this.To = value; return this; } public String getCc() { return CC; } public SM_EmailLog setCc(String value) { this.CC = value; return this; } public String getBcc() { return BCC; } public SM_EmailLog setBcc(String value) { this.BCC = value; return this; } public String getAttachments() { return Attachments; } public SM_EmailLog setAttachments(String value) { this.Attachments = value; return this; } public String getSubject() { return Subject; } public SM_EmailLog setSubject(String value) { this.Subject = value; return this; } public String getBody() { return Body; } public SM_EmailLog setBody(String value) { this.Body = value; return this; } public String getSmJobsRecID() { return SM_Jobs_RecID; } public SM_EmailLog setSmJobsRecID(String value) { this.SM_Jobs_RecID = value; return this; } public String getHrStaffRecID() { return HR_Staff_RecID; } public SM_EmailLog setHrStaffRecID(String value) { this.HR_Staff_RecID = value; return this; } public String getEmMainRecID() { return EM_Main_RecID; } public SM_EmailLog setEmMainRecID(String value) { this.EM_Main_RecID = value; return this; } public Boolean isRequestReadReceipt() { return RequestReadReceipt; } public SM_EmailLog setRequestReadReceipt(Boolean value) { this.RequestReadReceipt = value; return this; } } public static class SM_JobActivityBudgets { @Required() public String RecID = null; @Required() public String SM_Activities_RecID = null; @References(SM_Jobs.class) @Required() public String SM_Jobs_RecID = null; public BigDecimal BudgetedBillingTime = null; public BigDecimal BudgetedElapsedTime = null; public BigDecimal BudgetedBillingValue = null; @Required() public Date LastSavedDateTime = null; @Required() public Integer ItemNo = null; @Required() public ArrayList RowHash = null; public String getRecID() { return RecID; } public SM_JobActivityBudgets setRecID(String value) { this.RecID = value; return this; } public String getSmActivitiesRecID() { return SM_Activities_RecID; } public SM_JobActivityBudgets setSmActivitiesRecID(String value) { this.SM_Activities_RecID = value; return this; } public String getSmJobsRecID() { return SM_Jobs_RecID; } public SM_JobActivityBudgets setSmJobsRecID(String value) { this.SM_Jobs_RecID = value; return this; } public BigDecimal getBudgetedBillingTime() { return BudgetedBillingTime; } public SM_JobActivityBudgets setBudgetedBillingTime(BigDecimal value) { this.BudgetedBillingTime = value; return this; } public BigDecimal getBudgetedElapsedTime() { return BudgetedElapsedTime; } public SM_JobActivityBudgets setBudgetedElapsedTime(BigDecimal value) { this.BudgetedElapsedTime = value; return this; } public BigDecimal getBudgetedBillingValue() { return BudgetedBillingValue; } public SM_JobActivityBudgets setBudgetedBillingValue(BigDecimal value) { this.BudgetedBillingValue = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public SM_JobActivityBudgets setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Integer getItemNo() { return ItemNo; } public SM_JobActivityBudgets setItemNo(Integer value) { this.ItemNo = value; return this; } public ArrayList getRowHash() { return RowHash; } public SM_JobActivityBudgets setRowHash(ArrayList value) { this.RowHash = value; return this; } } public static class SM_JobActivityBudgetsCustomFields { @Required() public String RecID = null; @Required() public String SettingName = null; public String SettingDescription = null; public Integer CellType = null; public String FieldParameter = null; @References(SY_Plugin.class) @Required() public UUID SY_Plugin_RecID = null; public Date LastSavedDateTime = null; public Integer DisplayOrder = null; public String getRecID() { return RecID; } public SM_JobActivityBudgetsCustomFields setRecID(String value) { this.RecID = value; return this; } public String getSettingName() { return SettingName; } public SM_JobActivityBudgetsCustomFields setSettingName(String value) { this.SettingName = value; return this; } public String getSettingDescription() { return SettingDescription; } public SM_JobActivityBudgetsCustomFields setSettingDescription(String value) { this.SettingDescription = value; return this; } public Integer getCellType() { return CellType; } public SM_JobActivityBudgetsCustomFields setCellType(Integer value) { this.CellType = value; return this; } public String getFieldParameter() { return FieldParameter; } public SM_JobActivityBudgetsCustomFields setFieldParameter(String value) { this.FieldParameter = value; return this; } public UUID getSyPluginRecID() { return SY_Plugin_RecID; } public SM_JobActivityBudgetsCustomFields setSyPluginRecID(UUID value) { this.SY_Plugin_RecID = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public SM_JobActivityBudgetsCustomFields setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Integer getDisplayOrder() { return DisplayOrder; } public SM_JobActivityBudgetsCustomFields setDisplayOrder(Integer value) { this.DisplayOrder = value; return this; } } public static class SM_JobActivityBudgetsCustomValues { @Required() public String RecID = null; @References(SM_JobActivityBudgets.class) @Required() public String SM_JobActivityBudgets_RecID = null; @References(SM_JobActivityBudgetsCustomFields.class) @Required() public String SM_JobActivityBudgetsCustomFields_RecID = null; public String Contents = null; public Date LastSavedDateTime = null; public String getRecID() { return RecID; } public SM_JobActivityBudgetsCustomValues setRecID(String value) { this.RecID = value; return this; } public String getSmJobActivityBudgetsRecID() { return SM_JobActivityBudgets_RecID; } public SM_JobActivityBudgetsCustomValues setSmJobActivityBudgetsRecID(String value) { this.SM_JobActivityBudgets_RecID = value; return this; } public String getSmJobActivityBudgetsCustomFieldsRecID() { return SM_JobActivityBudgetsCustomFields_RecID; } public SM_JobActivityBudgetsCustomValues setSmJobActivityBudgetsCustomFieldsRecID(String value) { this.SM_JobActivityBudgetsCustomFields_RecID = value; return this; } public String getContents() { return Contents; } public SM_JobActivityBudgetsCustomValues setContents(String value) { this.Contents = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public SM_JobActivityBudgetsCustomValues setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } } public static class SM_JobEquipment { @Required() public String EquipmentID = null; @Required() public String JobID = null; public String InventoryID = null; public String PartNo = null; public String Description = null; public String Notes = null; public String SerialNumber = null; @Required() public Integer Damaged = null; @Required() public String WarrantyItemID = null; public String Reference = null; public Date DateSent = null; public Date DateReturn = null; public Short Status = null; public String getEquipmentID() { return EquipmentID; } public SM_JobEquipment setEquipmentID(String value) { this.EquipmentID = value; return this; } public String getJobID() { return JobID; } public SM_JobEquipment setJobID(String value) { this.JobID = value; return this; } public String getInventoryID() { return InventoryID; } public SM_JobEquipment setInventoryID(String value) { this.InventoryID = value; return this; } public String getPartNo() { return PartNo; } public SM_JobEquipment setPartNo(String value) { this.PartNo = value; return this; } public String getDescription() { return Description; } public SM_JobEquipment setDescription(String value) { this.Description = value; return this; } public String getNotes() { return Notes; } public SM_JobEquipment setNotes(String value) { this.Notes = value; return this; } public String getSerialNumber() { return SerialNumber; } public SM_JobEquipment setSerialNumber(String value) { this.SerialNumber = value; return this; } public Integer getDamaged() { return Damaged; } public SM_JobEquipment setDamaged(Integer value) { this.Damaged = value; return this; } public String getWarrantyItemID() { return WarrantyItemID; } public SM_JobEquipment setWarrantyItemID(String value) { this.WarrantyItemID = value; return this; } public String getReference() { return Reference; } public SM_JobEquipment setReference(String value) { this.Reference = value; return this; } public Date getDateSent() { return DateSent; } public SM_JobEquipment setDateSent(Date value) { this.DateSent = value; return this; } public Date getDateReturn() { return DateReturn; } public SM_JobEquipment setDateReturn(Date value) { this.DateReturn = value; return this; } public Short getStatus() { return Status; } public SM_JobEquipment setStatus(Short value) { this.Status = value; return this; } } public static class SM_JobPLLink { public String SM_Tasks_RecID = null; public String RecID = null; public String PartID = null; public String EquipmentID = null; public String getSmTasksRecID() { return SM_Tasks_RecID; } public SM_JobPLLink setSmTasksRecID(String value) { this.SM_Tasks_RecID = value; return this; } public String getRecID() { return RecID; } public SM_JobPLLink setRecID(String value) { this.RecID = value; return this; } public String getPartID() { return PartID; } public SM_JobPLLink setPartID(String value) { this.PartID = value; return this; } public String getEquipmentID() { return EquipmentID; } public SM_JobPLLink setEquipmentID(String value) { this.EquipmentID = value; return this; } } public static class SM_Jobs { @Required() public String RecID = null; @Required() public String JobNo = null; @References(DB_Main.class) @Required() public String DB_Main_RecID = null; @References(CN_Contact.class) public String CN_Contact_RecID = null; public String Reference = null; public String Description = null; @References(HR_Staff.class) public String Coordinator_HR_Staff_RecID = null; @Required() public Date DateLogged = null; @Required() public Date LastSavedDateTime = null; @References(HR_Staff.class) @Required() public String LastSaved_HR_Staff_RecID = null; @References(IN_PriceSchemes.class) public String IN_PriceSchemes_RecID = null; public String TaxExemptNo = null; @Required() public ArrayList RowHash = null; @References(IN_Logical.class) @Required() public String IN_LogicalID = null; public String getRecID() { return RecID; } public SM_Jobs setRecID(String value) { this.RecID = value; return this; } public String getJobNo() { return JobNo; } public SM_Jobs setJobNo(String value) { this.JobNo = value; return this; } public String getDbMainRecID() { return DB_Main_RecID; } public SM_Jobs setDbMainRecID(String value) { this.DB_Main_RecID = value; return this; } public String getCnContactRecID() { return CN_Contact_RecID; } public SM_Jobs setCnContactRecID(String value) { this.CN_Contact_RecID = value; return this; } public String getReference() { return Reference; } public SM_Jobs setReference(String value) { this.Reference = value; return this; } public String getDescription() { return Description; } public SM_Jobs setDescription(String value) { this.Description = value; return this; } public String getCoordinatorHrStaffRecID() { return Coordinator_HR_Staff_RecID; } public SM_Jobs setCoordinatorHrStaffRecID(String value) { this.Coordinator_HR_Staff_RecID = value; return this; } public Date getDateLogged() { return DateLogged; } public SM_Jobs setDateLogged(Date value) { this.DateLogged = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public SM_Jobs setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public String getLastSavedHrStaffRecID() { return LastSaved_HR_Staff_RecID; } public SM_Jobs setLastSavedHrStaffRecID(String value) { this.LastSaved_HR_Staff_RecID = value; return this; } public String getInPriceSchemesRecID() { return IN_PriceSchemes_RecID; } public SM_Jobs setInPriceSchemesRecID(String value) { this.IN_PriceSchemes_RecID = value; return this; } public String getTaxExemptNo() { return TaxExemptNo; } public SM_Jobs setTaxExemptNo(String value) { this.TaxExemptNo = value; return this; } public ArrayList getRowHash() { return RowHash; } public SM_Jobs setRowHash(ArrayList value) { this.RowHash = value; return this; } public String getInLogicalID() { return IN_LogicalID; } public SM_Jobs setInLogicalID(String value) { this.IN_LogicalID = value; return this; } } public static class SM_Labour { @Required() public String RecID = null; @References(IN_Main.class) @Required() public String IN_Main_RecID = null; @References(SM_Tasks.class) @Required() public String SM_Tasks_RecID = null; @References(HR_Staff.class) @Required() public String StaffID = null; @Required() public Date StartTime = null; @Required() public Date EndTime = null; public String Description = null; @Required() public BigDecimal BillingTime = null; @Required() public BigDecimal Rate = null; @Required() public Date LastSavedDateTime = null; @References(HR_Staff.class) @Required() public String LastSavedStaffID = null; @Required() public Boolean IsPrepaid = null; @Required() public Integer ItemNo = null; @Required() public Boolean SitesheetReceived = null; @References(TX_Main.class) @Required() public String TX_Main_RecID = null; @Required() public BigDecimal Tax = null; @Required() public BigDecimal TaxRate = null; @Required() public BigDecimal LCostIn = null; @References(SM_Activities.class) @Required() public String SM_Activities_RecID = null; @References(SO_Lines.class) public String SO_Lines_RecID = null; public String getRecID() { return RecID; } public SM_Labour setRecID(String value) { this.RecID = value; return this; } public String getInMainRecID() { return IN_Main_RecID; } public SM_Labour setInMainRecID(String value) { this.IN_Main_RecID = value; return this; } public String getSmTasksRecID() { return SM_Tasks_RecID; } public SM_Labour setSmTasksRecID(String value) { this.SM_Tasks_RecID = value; return this; } public String getStaffID() { return StaffID; } public SM_Labour setStaffID(String value) { this.StaffID = value; return this; } public Date getStartTime() { return StartTime; } public SM_Labour setStartTime(Date value) { this.StartTime = value; return this; } public Date getEndTime() { return EndTime; } public SM_Labour setEndTime(Date value) { this.EndTime = value; return this; } public String getDescription() { return Description; } public SM_Labour setDescription(String value) { this.Description = value; return this; } public BigDecimal getBillingTime() { return BillingTime; } public SM_Labour setBillingTime(BigDecimal value) { this.BillingTime = value; return this; } public BigDecimal getRate() { return Rate; } public SM_Labour setRate(BigDecimal value) { this.Rate = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public SM_Labour setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public String getLastSavedStaffID() { return LastSavedStaffID; } public SM_Labour setLastSavedStaffID(String value) { this.LastSavedStaffID = value; return this; } public Boolean getIsPrepaid() { return IsPrepaid; } public SM_Labour setIsPrepaid(Boolean value) { this.IsPrepaid = value; return this; } public Integer getItemNo() { return ItemNo; } public SM_Labour setItemNo(Integer value) { this.ItemNo = value; return this; } public Boolean isSitesheetReceived() { return SitesheetReceived; } public SM_Labour setSitesheetReceived(Boolean value) { this.SitesheetReceived = value; return this; } public String getTxMainRecID() { return TX_Main_RecID; } public SM_Labour setTxMainRecID(String value) { this.TX_Main_RecID = value; return this; } public BigDecimal getTax() { return Tax; } public SM_Labour setTax(BigDecimal value) { this.Tax = value; return this; } public BigDecimal getTaxRate() { return TaxRate; } public SM_Labour setTaxRate(BigDecimal value) { this.TaxRate = value; return this; } public BigDecimal getLCostIn() { return LCostIn; } public SM_Labour setLCostIn(BigDecimal value) { this.LCostIn = value; return this; } public String getSmActivitiesRecID() { return SM_Activities_RecID; } public SM_Labour setSmActivitiesRecID(String value) { this.SM_Activities_RecID = value; return this; } public String getSoLinesRecID() { return SO_Lines_RecID; } public SM_Labour setSoLinesRecID(String value) { this.SO_Lines_RecID = value; return this; } } public static class SM_LabourLineCustomFields { @Required() public String FieldID = null; @Required() public String SettingName = null; public String SettingDescription = null; public Integer CellType = null; public String FieldParameter = null; @References(SY_Plugin.class) @Required() public UUID SY_Plugin_RecID = null; @Required() public Date LastSavedDateTime = null; public Integer DisplayOrder = null; public String getFieldID() { return FieldID; } public SM_LabourLineCustomFields setFieldID(String value) { this.FieldID = value; return this; } public String getSettingName() { return SettingName; } public SM_LabourLineCustomFields setSettingName(String value) { this.SettingName = value; return this; } public String getSettingDescription() { return SettingDescription; } public SM_LabourLineCustomFields setSettingDescription(String value) { this.SettingDescription = value; return this; } public Integer getCellType() { return CellType; } public SM_LabourLineCustomFields setCellType(Integer value) { this.CellType = value; return this; } public String getFieldParameter() { return FieldParameter; } public SM_LabourLineCustomFields setFieldParameter(String value) { this.FieldParameter = value; return this; } public UUID getSyPluginRecID() { return SY_Plugin_RecID; } public SM_LabourLineCustomFields setSyPluginRecID(UUID value) { this.SY_Plugin_RecID = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public SM_LabourLineCustomFields setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Integer getDisplayOrder() { return DisplayOrder; } public SM_LabourLineCustomFields setDisplayOrder(Integer value) { this.DisplayOrder = value; return this; } } public static class SM_LabourLineCustomValues { @Required() public String RecID = null; @References(SM_Labour.class) @Required() public String LabourID = null; @References(SM_LabourLineCustomFields.class) @Required() public String FieldID = null; public String Contents = null; @Required() public Date LastSavedDateTime = null; public String getRecID() { return RecID; } public SM_LabourLineCustomValues setRecID(String value) { this.RecID = value; return this; } public String getLabourID() { return LabourID; } public SM_LabourLineCustomValues setLabourID(String value) { this.LabourID = value; return this; } public String getFieldID() { return FieldID; } public SM_LabourLineCustomValues setFieldID(String value) { this.FieldID = value; return this; } public String getContents() { return Contents; } public SM_LabourLineCustomValues setContents(String value) { this.Contents = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public SM_LabourLineCustomValues setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } } public static class SM_LabourLineDetails { @Required() public String RecID = null; @Required() public BigDecimal Quantity = null; @References(SM_PrepaidLabourPacks.class) @Required() public String SM_PrepaidLabourPacks_RecID = null; @References(SM_Labour.class) @Required() public String SM_Labour_RecID = null; public String getRecID() { return RecID; } public SM_LabourLineDetails setRecID(String value) { this.RecID = value; return this; } public BigDecimal getQuantity() { return Quantity; } public SM_LabourLineDetails setQuantity(BigDecimal value) { this.Quantity = value; return this; } public String getSmPrepaidLabourPacksRecID() { return SM_PrepaidLabourPacks_RecID; } public SM_LabourLineDetails setSmPrepaidLabourPacksRecID(String value) { this.SM_PrepaidLabourPacks_RecID = value; return this; } public String getSmLabourRecID() { return SM_Labour_RecID; } public SM_LabourLineDetails setSmLabourRecID(String value) { this.SM_Labour_RecID = value; return this; } } public static class SM_Notes { @Required() public String RecID = null; @References(SM_Tasks.class) @Required() public String SM_Tasks_RecID = null; @References(SY_NoteTypes.class) @Required() public String NoteTypeID = null; @Required() public Date LastSavedDateTime = null; @Required() public String LastSavedByStaffID = null; public String NoteText = null; @Required() public Integer ItemNo = null; public String getRecID() { return RecID; } public SM_Notes setRecID(String value) { this.RecID = value; return this; } public String getSmTasksRecID() { return SM_Tasks_RecID; } public SM_Notes setSmTasksRecID(String value) { this.SM_Tasks_RecID = value; return this; } public String getNoteTypeID() { return NoteTypeID; } public SM_Notes setNoteTypeID(String value) { this.NoteTypeID = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public SM_Notes setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public String getLastSavedByStaffID() { return LastSavedByStaffID; } public SM_Notes setLastSavedByStaffID(String value) { this.LastSavedByStaffID = value; return this; } public String getNoteText() { return NoteText; } public SM_Notes setNoteText(String value) { this.NoteText = value; return this; } public Integer getItemNo() { return ItemNo; } public SM_Notes setItemNo(Integer value) { this.ItemNo = value; return this; } } public static class SM_PartLineCustomFields { @Required() public String FieldID = null; @Required() public String SettingName = null; public String SettingDescription = null; public Integer CellType = null; public String FieldParameter = null; @References(SY_Plugin.class) @Required() public UUID SY_Plugin_RecID = null; @Required() public Date LastSavedDateTime = null; public Integer DisplayOrder = null; public String getFieldID() { return FieldID; } public SM_PartLineCustomFields setFieldID(String value) { this.FieldID = value; return this; } public String getSettingName() { return SettingName; } public SM_PartLineCustomFields setSettingName(String value) { this.SettingName = value; return this; } public String getSettingDescription() { return SettingDescription; } public SM_PartLineCustomFields setSettingDescription(String value) { this.SettingDescription = value; return this; } public Integer getCellType() { return CellType; } public SM_PartLineCustomFields setCellType(Integer value) { this.CellType = value; return this; } public String getFieldParameter() { return FieldParameter; } public SM_PartLineCustomFields setFieldParameter(String value) { this.FieldParameter = value; return this; } public UUID getSyPluginRecID() { return SY_Plugin_RecID; } public SM_PartLineCustomFields setSyPluginRecID(UUID value) { this.SY_Plugin_RecID = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public SM_PartLineCustomFields setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Integer getDisplayOrder() { return DisplayOrder; } public SM_PartLineCustomFields setDisplayOrder(Integer value) { this.DisplayOrder = value; return this; } } public static class SM_PartLineCustomValues { @Required() public String RecID = null; @References(SM_Parts.class) @Required() public String PartID = null; @References(SM_PartLineCustomFields.class) @Required() public String FieldID = null; public String Contents = null; @Required() public Date LastSavedDateTime = null; public String getRecID() { return RecID; } public SM_PartLineCustomValues setRecID(String value) { this.RecID = value; return this; } public String getPartID() { return PartID; } public SM_PartLineCustomValues setPartID(String value) { this.PartID = value; return this; } public String getFieldID() { return FieldID; } public SM_PartLineCustomValues setFieldID(String value) { this.FieldID = value; return this; } public String getContents() { return Contents; } public SM_PartLineCustomValues setContents(String value) { this.Contents = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public SM_PartLineCustomValues setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } } public static class SM_PartLineDetails { @Required() public String RecID = null; @References(SM_Parts.class) @Required() public String SM_Parts_RecID = null; @Required() public String LinkID = null; public BigDecimal Quantity = null; public Short Mode = null; public BigDecimal Cost = null; public BigDecimal TaxPaid = null; public String SerialNo = null; public Date ExpiryDate = null; @Required() public Date LastSavedDateTime = null; public String getRecID() { return RecID; } public SM_PartLineDetails setRecID(String value) { this.RecID = value; return this; } public String getSmPartsRecID() { return SM_Parts_RecID; } public SM_PartLineDetails setSmPartsRecID(String value) { this.SM_Parts_RecID = value; return this; } public String getLinkID() { return LinkID; } public SM_PartLineDetails setLinkID(String value) { this.LinkID = value; return this; } public BigDecimal getQuantity() { return Quantity; } public SM_PartLineDetails setQuantity(BigDecimal value) { this.Quantity = value; return this; } public Short getMode() { return Mode; } public SM_PartLineDetails setMode(Short value) { this.Mode = value; return this; } public BigDecimal getCost() { return Cost; } public SM_PartLineDetails setCost(BigDecimal value) { this.Cost = value; return this; } public BigDecimal getTaxPaid() { return TaxPaid; } public SM_PartLineDetails setTaxPaid(BigDecimal value) { this.TaxPaid = value; return this; } public String getSerialNo() { return SerialNo; } public SM_PartLineDetails setSerialNo(String value) { this.SerialNo = value; return this; } public Date getExpiryDate() { return ExpiryDate; } public SM_PartLineDetails setExpiryDate(Date value) { this.ExpiryDate = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public SM_PartLineDetails setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } } public static class SM_Parts { @Required() public String RecID = null; @References(SM_Tasks.class) public String SM_Tasks_RecID = null; @References(IN_Main.class) @Required() public String IN_Main_RecID = null; @Required() public String PartNo = null; @Required() public String Description = null; public BigDecimal Quantity = null; public BigDecimal ItemPrice = null; public BigDecimal Tax = null; @Required() public Date LastSavedDateTime = null; @Required() public String LastSavedStaffID = null; public String QOReference = null; @Required() public Integer ItemNo = null; public BigDecimal Discount = null; public BigDecimal DiscountPercentage = null; public Boolean SellPriceIsIncTax = null; public Short QuantityDecimalPlaces = null; public Boolean Discountable = null; public BigDecimal DefaultPrice = null; public BigDecimal MinimumGP = null; public BigDecimal LastCost = null; public String TaxID = null; public BigDecimal TaxRate = null; public Boolean UserDefinedBit1 = null; public Boolean UserDefinedBit2 = null; public Boolean UserDefinedBit3 = null; public String UserDefinedString1 = null; public String UserDefinedString2 = null; public String UserDefinedString3 = null; public Date UserDefinedDate1 = null; public Date UserDefinedDate2 = null; public Date UserDefinedDate3 = null; public BigDecimal UserDefinedFloat1 = null; public BigDecimal UserDefinedFloat2 = null; public BigDecimal UserDefinedFloat3 = null; @References(SO_Lines.class) public String SO_Lines_RecID = null; public String getRecID() { return RecID; } public SM_Parts setRecID(String value) { this.RecID = value; return this; } public String getSmTasksRecID() { return SM_Tasks_RecID; } public SM_Parts setSmTasksRecID(String value) { this.SM_Tasks_RecID = value; return this; } public String getInMainRecID() { return IN_Main_RecID; } public SM_Parts setInMainRecID(String value) { this.IN_Main_RecID = value; return this; } public String getPartNo() { return PartNo; } public SM_Parts setPartNo(String value) { this.PartNo = value; return this; } public String getDescription() { return Description; } public SM_Parts setDescription(String value) { this.Description = value; return this; } public BigDecimal getQuantity() { return Quantity; } public SM_Parts setQuantity(BigDecimal value) { this.Quantity = value; return this; } public BigDecimal getItemPrice() { return ItemPrice; } public SM_Parts setItemPrice(BigDecimal value) { this.ItemPrice = value; return this; } public BigDecimal getTax() { return Tax; } public SM_Parts setTax(BigDecimal value) { this.Tax = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public SM_Parts setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public String getLastSavedStaffID() { return LastSavedStaffID; } public SM_Parts setLastSavedStaffID(String value) { this.LastSavedStaffID = value; return this; } public String getQoReference() { return QOReference; } public SM_Parts setQoReference(String value) { this.QOReference = value; return this; } public Integer getItemNo() { return ItemNo; } public SM_Parts setItemNo(Integer value) { this.ItemNo = value; return this; } public BigDecimal getDiscount() { return Discount; } public SM_Parts setDiscount(BigDecimal value) { this.Discount = value; return this; } public BigDecimal getDiscountPercentage() { return DiscountPercentage; } public SM_Parts setDiscountPercentage(BigDecimal value) { this.DiscountPercentage = value; return this; } public Boolean isSellPriceIsIncTax() { return SellPriceIsIncTax; } public SM_Parts setSellPriceIsIncTax(Boolean value) { this.SellPriceIsIncTax = value; return this; } public Short getQuantityDecimalPlaces() { return QuantityDecimalPlaces; } public SM_Parts setQuantityDecimalPlaces(Short value) { this.QuantityDecimalPlaces = value; return this; } public Boolean isDiscountable() { return Discountable; } public SM_Parts setDiscountable(Boolean value) { this.Discountable = value; return this; } public BigDecimal getDefaultPrice() { return DefaultPrice; } public SM_Parts setDefaultPrice(BigDecimal value) { this.DefaultPrice = value; return this; } public BigDecimal getMinimumGP() { return MinimumGP; } public SM_Parts setMinimumGP(BigDecimal value) { this.MinimumGP = value; return this; } public BigDecimal getLastCost() { return LastCost; } public SM_Parts setLastCost(BigDecimal value) { this.LastCost = value; return this; } public String getTaxID() { return TaxID; } public SM_Parts setTaxID(String value) { this.TaxID = value; return this; } public BigDecimal getTaxRate() { return TaxRate; } public SM_Parts setTaxRate(BigDecimal value) { this.TaxRate = value; return this; } public Boolean isUserDefinedBit1() { return UserDefinedBit1; } public SM_Parts setUserDefinedBit1(Boolean value) { this.UserDefinedBit1 = value; return this; } public Boolean isUserDefinedBit2() { return UserDefinedBit2; } public SM_Parts setUserDefinedBit2(Boolean value) { this.UserDefinedBit2 = value; return this; } public Boolean isUserDefinedBit3() { return UserDefinedBit3; } public SM_Parts setUserDefinedBit3(Boolean value) { this.UserDefinedBit3 = value; return this; } public String getUserDefinedString1() { return UserDefinedString1; } public SM_Parts setUserDefinedString1(String value) { this.UserDefinedString1 = value; return this; } public String getUserDefinedString2() { return UserDefinedString2; } public SM_Parts setUserDefinedString2(String value) { this.UserDefinedString2 = value; return this; } public String getUserDefinedString3() { return UserDefinedString3; } public SM_Parts setUserDefinedString3(String value) { this.UserDefinedString3 = value; return this; } public Date getUserDefinedDate1() { return UserDefinedDate1; } public SM_Parts setUserDefinedDate1(Date value) { this.UserDefinedDate1 = value; return this; } public Date getUserDefinedDate2() { return UserDefinedDate2; } public SM_Parts setUserDefinedDate2(Date value) { this.UserDefinedDate2 = value; return this; } public Date getUserDefinedDate3() { return UserDefinedDate3; } public SM_Parts setUserDefinedDate3(Date value) { this.UserDefinedDate3 = value; return this; } public BigDecimal getUserDefinedFloat1() { return UserDefinedFloat1; } public SM_Parts setUserDefinedFloat1(BigDecimal value) { this.UserDefinedFloat1 = value; return this; } public BigDecimal getUserDefinedFloat2() { return UserDefinedFloat2; } public SM_Parts setUserDefinedFloat2(BigDecimal value) { this.UserDefinedFloat2 = value; return this; } public BigDecimal getUserDefinedFloat3() { return UserDefinedFloat3; } public SM_Parts setUserDefinedFloat3(BigDecimal value) { this.UserDefinedFloat3 = value; return this; } public String getSoLinesRecID() { return SO_Lines_RecID; } public SM_Parts setSoLinesRecID(String value) { this.SO_Lines_RecID = value; return this; } } public static class SM_PrepaidLabourPacks { @Required() public String RecID = null; @Required() public String Name = null; public String Description = null; @Required() public Short Status = null; @References(DB_Main.class) @Required() public String DB_Main_RecID = null; @References(SO_Main.class) public String Invoice_SO_Main_RecID = null; @References(SO_Main.class) public String CreditNote_SO_Main_RecID = null; public BigDecimal TotalHours = null; public BigDecimal ReorderLevel = null; public BigDecimal Rate = null; public BigDecimal Ratio = null; @Required() public Date CreatedDateTime = null; @References(HR_Staff.class) @Required() public String CreatedBy_HR_Staff_RecID = null; @Required() public Date LastSavedDateTime = null; @References(HR_Staff.class) @Required() public String LastSavedBy_HR_Staff_RecID = null; @References(GL_Ledger.class) @Required() public String UnearnedIncomeAccount_GL_Ledger_RecID = null; @References(GL_Ledger.class) @Required() public String IncomeAccount_GL_Ledger_RecID = null; public Boolean SpecialUse = null; @Required() public ArrayList RowHash = null; @Required() public String PackNo = null; public String getRecID() { return RecID; } public SM_PrepaidLabourPacks setRecID(String value) { this.RecID = value; return this; } public String getName() { return Name; } public SM_PrepaidLabourPacks setName(String value) { this.Name = value; return this; } public String getDescription() { return Description; } public SM_PrepaidLabourPacks setDescription(String value) { this.Description = value; return this; } public Short getStatus() { return Status; } public SM_PrepaidLabourPacks setStatus(Short value) { this.Status = value; return this; } public String getDbMainRecID() { return DB_Main_RecID; } public SM_PrepaidLabourPacks setDbMainRecID(String value) { this.DB_Main_RecID = value; return this; } public String getInvoiceSoMainRecID() { return Invoice_SO_Main_RecID; } public SM_PrepaidLabourPacks setInvoiceSoMainRecID(String value) { this.Invoice_SO_Main_RecID = value; return this; } public String getCreditNoteSoMainRecID() { return CreditNote_SO_Main_RecID; } public SM_PrepaidLabourPacks setCreditNoteSoMainRecID(String value) { this.CreditNote_SO_Main_RecID = value; return this; } public BigDecimal getTotalHours() { return TotalHours; } public SM_PrepaidLabourPacks setTotalHours(BigDecimal value) { this.TotalHours = value; return this; } public BigDecimal getReorderLevel() { return ReorderLevel; } public SM_PrepaidLabourPacks setReorderLevel(BigDecimal value) { this.ReorderLevel = value; return this; } public BigDecimal getRate() { return Rate; } public SM_PrepaidLabourPacks setRate(BigDecimal value) { this.Rate = value; return this; } public BigDecimal getRatio() { return Ratio; } public SM_PrepaidLabourPacks setRatio(BigDecimal value) { this.Ratio = value; return this; } public Date getCreatedDateTime() { return CreatedDateTime; } public SM_PrepaidLabourPacks setCreatedDateTime(Date value) { this.CreatedDateTime = value; return this; } public String getCreatedByHrStaffRecID() { return CreatedBy_HR_Staff_RecID; } public SM_PrepaidLabourPacks setCreatedByHrStaffRecID(String value) { this.CreatedBy_HR_Staff_RecID = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public SM_PrepaidLabourPacks setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public String getLastSavedByHrStaffRecID() { return LastSavedBy_HR_Staff_RecID; } public SM_PrepaidLabourPacks setLastSavedByHrStaffRecID(String value) { this.LastSavedBy_HR_Staff_RecID = value; return this; } public String getUnearnedIncomeAccountGlLedgerRecID() { return UnearnedIncomeAccount_GL_Ledger_RecID; } public SM_PrepaidLabourPacks setUnearnedIncomeAccountGlLedgerRecID(String value) { this.UnearnedIncomeAccount_GL_Ledger_RecID = value; return this; } public String getIncomeAccountGlLedgerRecID() { return IncomeAccount_GL_Ledger_RecID; } public SM_PrepaidLabourPacks setIncomeAccountGlLedgerRecID(String value) { this.IncomeAccount_GL_Ledger_RecID = value; return this; } public Boolean isSpecialUse() { return SpecialUse; } public SM_PrepaidLabourPacks setSpecialUse(Boolean value) { this.SpecialUse = value; return this; } public ArrayList getRowHash() { return RowHash; } public SM_PrepaidLabourPacks setRowHash(ArrayList value) { this.RowHash = value; return this; } public String getPackNo() { return PackNo; } public SM_PrepaidLabourPacks setPackNo(String value) { this.PackNo = value; return this; } } public static class SM_Priorities { @Required() public String RecID = null; @Required() public String Name = null; public String Description = null; @Required() public Integer ItemNo = null; public Boolean IsEnabled = null; @Required() public ArrayList RowHash = null; public Boolean IsDefault = null; public BigDecimal ResponseTime = null; public Boolean Deadline = null; public String getRecID() { return RecID; } public SM_Priorities setRecID(String value) { this.RecID = value; return this; } public String getName() { return Name; } public SM_Priorities setName(String value) { this.Name = value; return this; } public String getDescription() { return Description; } public SM_Priorities setDescription(String value) { this.Description = value; return this; } public Integer getItemNo() { return ItemNo; } public SM_Priorities setItemNo(Integer value) { this.ItemNo = value; return this; } public Boolean getIsEnabled() { return IsEnabled; } public SM_Priorities setIsEnabled(Boolean value) { this.IsEnabled = value; return this; } public ArrayList getRowHash() { return RowHash; } public SM_Priorities setRowHash(ArrayList value) { this.RowHash = value; return this; } public Boolean getIsDefault() { return IsDefault; } public SM_Priorities setIsDefault(Boolean value) { this.IsDefault = value; return this; } public BigDecimal getResponseTime() { return ResponseTime; } public SM_Priorities setResponseTime(BigDecimal value) { this.ResponseTime = value; return this; } public Boolean isDeadline() { return Deadline; } public SM_Priorities setDeadline(Boolean value) { this.Deadline = value; return this; } } public static class SM_SalesInvoiceNoSearch { @Required() public String InvoiceNo = null; @Required() public Date InvoiceInitDate = null; @Required() public String AccountNo = null; public String Name = null; public String getInvoiceNo() { return InvoiceNo; } public SM_SalesInvoiceNoSearch setInvoiceNo(String value) { this.InvoiceNo = value; return this; } public Date getInvoiceInitDate() { return InvoiceInitDate; } public SM_SalesInvoiceNoSearch setInvoiceInitDate(Date value) { this.InvoiceInitDate = value; return this; } public String getAccountNo() { return AccountNo; } public SM_SalesInvoiceNoSearch setAccountNo(String value) { this.AccountNo = value; return this; } public String getName() { return Name; } public SM_SalesInvoiceNoSearch setName(String value) { this.Name = value; return this; } } public static class SM_Statuses { @Required() public String RecID = null; @Required() public String Name = null; public String Description = null; @Required() public Integer ItemNo = null; public Boolean IsEnabled = null; @Required() public ArrayList RowHash = null; public Boolean IsDefault = null; public String getRecID() { return RecID; } public SM_Statuses setRecID(String value) { this.RecID = value; return this; } public String getName() { return Name; } public SM_Statuses setName(String value) { this.Name = value; return this; } public String getDescription() { return Description; } public SM_Statuses setDescription(String value) { this.Description = value; return this; } public Integer getItemNo() { return ItemNo; } public SM_Statuses setItemNo(Integer value) { this.ItemNo = value; return this; } public Boolean getIsEnabled() { return IsEnabled; } public SM_Statuses setIsEnabled(Boolean value) { this.IsEnabled = value; return this; } public ArrayList getRowHash() { return RowHash; } public SM_Statuses setRowHash(ArrayList value) { this.RowHash = value; return this; } public Boolean getIsDefault() { return IsDefault; } public SM_Statuses setIsDefault(Boolean value) { this.IsDefault = value; return this; } } public static class SM_Tasks { @Required() public String RecID = null; @Required() public Integer TaskNo = null; @References(SM_Jobs.class) @Required() public String SM_Jobs_RecID = null; @References(HR_Departments.class) public String HR_Departments_RecID = null; @References(HR_DepartmentCategories.class) public String HR_DepartmentCategories_RecID = null; @References(SM_Priorities.class) public String SM_Priorities_RecID = null; @References(SM_Statuses.class) public String SM_Statuses_RecID = null; @References(HR_Staff.class) public String AssignedTo_HR_Staff_RecID = null; public String Description = null; public String Note = null; @Required() public Date DateLogged = null; @References(HR_Staff.class) @Required() public String LoggedBy_HR_Staff_RecID = null; public Boolean HasDeadline = null; public Date Deadline = null; public Date CompletionDate = null; @Required() public Date LastSavedDateTime = null; @References(HR_Staff.class) @Required() public String LastSaved_HR_Staff_RecID = null; @References(SM_PrepaidLabourPacks.class) public String SM_PrepaidLabourPacks_RecID = null; @References(DB_DeliveryAddress.class) public String DB_DeliveryAddress_RecID = null; @References(DB_DebtorSystems.class) public String DB_DebtorSystems_RecID = null; public Boolean IsRetired = null; @Required() public ArrayList RowHash = null; @References(DB_Main.class) public String BillingDebtor_DB_Main_RecID = null; @References(DB_DeliveryAddress.class) public String BillingDebtor_DB_DeliveryAddress_RecID = null; public String getRecID() { return RecID; } public SM_Tasks setRecID(String value) { this.RecID = value; return this; } public Integer getTaskNo() { return TaskNo; } public SM_Tasks setTaskNo(Integer value) { this.TaskNo = value; return this; } public String getSmJobsRecID() { return SM_Jobs_RecID; } public SM_Tasks setSmJobsRecID(String value) { this.SM_Jobs_RecID = value; return this; } public String getHrDepartmentsRecID() { return HR_Departments_RecID; } public SM_Tasks setHrDepartmentsRecID(String value) { this.HR_Departments_RecID = value; return this; } public String getHrDepartmentCategoriesRecID() { return HR_DepartmentCategories_RecID; } public SM_Tasks setHrDepartmentCategoriesRecID(String value) { this.HR_DepartmentCategories_RecID = value; return this; } public String getSmPrioritiesRecID() { return SM_Priorities_RecID; } public SM_Tasks setSmPrioritiesRecID(String value) { this.SM_Priorities_RecID = value; return this; } public String getSmStatusesRecID() { return SM_Statuses_RecID; } public SM_Tasks setSmStatusesRecID(String value) { this.SM_Statuses_RecID = value; return this; } public String getAssignedToHrStaffRecID() { return AssignedTo_HR_Staff_RecID; } public SM_Tasks setAssignedToHrStaffRecID(String value) { this.AssignedTo_HR_Staff_RecID = value; return this; } public String getDescription() { return Description; } public SM_Tasks setDescription(String value) { this.Description = value; return this; } public String getNote() { return Note; } public SM_Tasks setNote(String value) { this.Note = value; return this; } public Date getDateLogged() { return DateLogged; } public SM_Tasks setDateLogged(Date value) { this.DateLogged = value; return this; } public String getLoggedByHrStaffRecID() { return LoggedBy_HR_Staff_RecID; } public SM_Tasks setLoggedByHrStaffRecID(String value) { this.LoggedBy_HR_Staff_RecID = value; return this; } public Boolean isHasDeadline() { return HasDeadline; } public SM_Tasks setHasDeadline(Boolean value) { this.HasDeadline = value; return this; } public Date getDeadline() { return Deadline; } public SM_Tasks setDeadline(Date value) { this.Deadline = value; return this; } public Date getCompletionDate() { return CompletionDate; } public SM_Tasks setCompletionDate(Date value) { this.CompletionDate = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public SM_Tasks setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public String getLastSavedHrStaffRecID() { return LastSaved_HR_Staff_RecID; } public SM_Tasks setLastSavedHrStaffRecID(String value) { this.LastSaved_HR_Staff_RecID = value; return this; } public String getSmPrepaidLabourPacksRecID() { return SM_PrepaidLabourPacks_RecID; } public SM_Tasks setSmPrepaidLabourPacksRecID(String value) { this.SM_PrepaidLabourPacks_RecID = value; return this; } public String getDbDeliveryAddressRecID() { return DB_DeliveryAddress_RecID; } public SM_Tasks setDbDeliveryAddressRecID(String value) { this.DB_DeliveryAddress_RecID = value; return this; } public String getDbDebtorSystemsRecID() { return DB_DebtorSystems_RecID; } public SM_Tasks setDbDebtorSystemsRecID(String value) { this.DB_DebtorSystems_RecID = value; return this; } public Boolean getIsRetired() { return IsRetired; } public SM_Tasks setIsRetired(Boolean value) { this.IsRetired = value; return this; } public ArrayList getRowHash() { return RowHash; } public SM_Tasks setRowHash(ArrayList value) { this.RowHash = value; return this; } public String getBillingDebtorDbMainRecID() { return BillingDebtor_DB_Main_RecID; } public SM_Tasks setBillingDebtorDbMainRecID(String value) { this.BillingDebtor_DB_Main_RecID = value; return this; } public String getBillingDebtorDbDeliveryAddressRecID() { return BillingDebtor_DB_DeliveryAddress_RecID; } public SM_Tasks setBillingDebtorDbDeliveryAddressRecID(String value) { this.BillingDebtor_DB_DeliveryAddress_RecID = value; return this; } } public static class SM_TimesheetLines { @Required() public UUID RecID = null; @References(SM_Timesheets.class) @Required() public UUID SM_Timesheets_RecID = null; @References(SM_Tasks.class) @Required() public String SM_Tasks_RecID = null; @Required() public Date StartTime = null; public Date EndTime = null; public String Description = null; @Required() public Integer ItemNo = null; @Required() public String SM_Activities_RecID = null; @Required() public ArrayList RowHash = null; public UUID getRecID() { return RecID; } public SM_TimesheetLines setRecID(UUID value) { this.RecID = value; return this; } public UUID getSmTimesheetsRecID() { return SM_Timesheets_RecID; } public SM_TimesheetLines setSmTimesheetsRecID(UUID value) { this.SM_Timesheets_RecID = value; return this; } public String getSmTasksRecID() { return SM_Tasks_RecID; } public SM_TimesheetLines setSmTasksRecID(String value) { this.SM_Tasks_RecID = value; return this; } public Date getStartTime() { return StartTime; } public SM_TimesheetLines setStartTime(Date value) { this.StartTime = value; return this; } public Date getEndTime() { return EndTime; } public SM_TimesheetLines setEndTime(Date value) { this.EndTime = value; return this; } public String getDescription() { return Description; } public SM_TimesheetLines setDescription(String value) { this.Description = value; return this; } public Integer getItemNo() { return ItemNo; } public SM_TimesheetLines setItemNo(Integer value) { this.ItemNo = value; return this; } public String getSmActivitiesRecID() { return SM_Activities_RecID; } public SM_TimesheetLines setSmActivitiesRecID(String value) { this.SM_Activities_RecID = value; return this; } public ArrayList getRowHash() { return RowHash; } public SM_TimesheetLines setRowHash(ArrayList value) { this.RowHash = value; return this; } } public static class SM_Timesheets { @Required() public UUID RecID = null; @Required() public String TimesheetNo = null; @References(HR_Staff.class) @Required() public String HR_Staff_RecID = null; @Required() public Date TimeSheetDate = null; @Required() public Date LastSavedDateTime = null; @Required() public Boolean IsActivated = null; @Required() public ArrayList RowHash = null; public UUID getRecID() { return RecID; } public SM_Timesheets setRecID(UUID value) { this.RecID = value; return this; } public String getTimesheetNo() { return TimesheetNo; } public SM_Timesheets setTimesheetNo(String value) { this.TimesheetNo = value; return this; } public String getHrStaffRecID() { return HR_Staff_RecID; } public SM_Timesheets setHrStaffRecID(String value) { this.HR_Staff_RecID = value; return this; } public Date getTimeSheetDate() { return TimeSheetDate; } public SM_Timesheets setTimeSheetDate(Date value) { this.TimeSheetDate = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public SM_Timesheets setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Boolean getIsActivated() { return IsActivated; } public SM_Timesheets setIsActivated(Boolean value) { this.IsActivated = value; return this; } public ArrayList getRowHash() { return RowHash; } public SM_Timesheets setRowHash(ArrayList value) { this.RowHash = value; return this; } } public static class SO_BatchPrintFilters { @Required() public String RecID = null; @Required() public String Name = null; @Required() public String StoredProcedureName = null; public Boolean IsDefault = null; @Required() public Integer ItemNo = null; public Boolean IsReadOnly = null; public String getRecID() { return RecID; } public SO_BatchPrintFilters setRecID(String value) { this.RecID = value; return this; } public String getName() { return Name; } public SO_BatchPrintFilters setName(String value) { this.Name = value; return this; } public String getStoredProcedureName() { return StoredProcedureName; } public SO_BatchPrintFilters setStoredProcedureName(String value) { this.StoredProcedureName = value; return this; } public Boolean getIsDefault() { return IsDefault; } public SO_BatchPrintFilters setIsDefault(Boolean value) { this.IsDefault = value; return this; } public Integer getItemNo() { return ItemNo; } public SO_BatchPrintFilters setItemNo(Integer value) { this.ItemNo = value; return this; } public Boolean getIsReadOnly() { return IsReadOnly; } public SO_BatchPrintFilters setIsReadOnly(Boolean value) { this.IsReadOnly = value; return this; } } public static class SO_BatchPrintSettings { @Required() public String Name = null; public String Description = null; @Required() public Date LastSavedDateTime = null; @Required() public Short DeliveryDocketPrintedStatus = null; @Required() public Short SalesOrderPrintedStatus = null; @Required() public Short PackSlipPrintedStatus = null; @Required() public Short PickSheetPrintedStatus = null; @Required() public Short OtherPrintedStatus = null; @Required() public Short SalesOrderType = null; @Required() public Short DocumentType = null; @Required() public Short BillingType = null; @Required() public Short BackOrderMode = null; @Required() public Short SalesOrderStatus = null; public Boolean CurrentSnapOnly = null; @References(SO_BatchPrintFilters.class) public String BatchPrintFilterRecID = null; public Boolean PrintDeliveryDocket = null; public Boolean PrintInvoice = null; public Boolean PrintPackSlip = null; public Boolean PrintPickSheet = null; public Boolean PrintOther = null; @Required() public String RecID = null; public Boolean EmailDeliveryDocket = null; public Boolean EmailInvoice = null; public Boolean EmailPackSlip = null; public Boolean EmailPickSheet = null; public Boolean EmailOther = null; public Short DeliveryDocketEmailedStatus = null; public Short SalesOrderEmailedStatus = null; public Short PackSlipEmailedStatus = null; public Short PickSheetEmailedStatus = null; public Short OtherEmailedStatus = null; @References(EM_Templates.class) @Required() public String BatchPrintEmailTemplateRecID = null; public String AppliesTo_IN_PhysicalID = null; public String AppliesTo_IN_LogicalID = null; public String VisibleTo_IN_PhysicalID = null; public String VisibleTo_IN_LogicalID = null; public String getName() { return Name; } public SO_BatchPrintSettings setName(String value) { this.Name = value; return this; } public String getDescription() { return Description; } public SO_BatchPrintSettings setDescription(String value) { this.Description = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public SO_BatchPrintSettings setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Short getDeliveryDocketPrintedStatus() { return DeliveryDocketPrintedStatus; } public SO_BatchPrintSettings setDeliveryDocketPrintedStatus(Short value) { this.DeliveryDocketPrintedStatus = value; return this; } public Short getSalesOrderPrintedStatus() { return SalesOrderPrintedStatus; } public SO_BatchPrintSettings setSalesOrderPrintedStatus(Short value) { this.SalesOrderPrintedStatus = value; return this; } public Short getPackSlipPrintedStatus() { return PackSlipPrintedStatus; } public SO_BatchPrintSettings setPackSlipPrintedStatus(Short value) { this.PackSlipPrintedStatus = value; return this; } public Short getPickSheetPrintedStatus() { return PickSheetPrintedStatus; } public SO_BatchPrintSettings setPickSheetPrintedStatus(Short value) { this.PickSheetPrintedStatus = value; return this; } public Short getOtherPrintedStatus() { return OtherPrintedStatus; } public SO_BatchPrintSettings setOtherPrintedStatus(Short value) { this.OtherPrintedStatus = value; return this; } public Short getSalesOrderType() { return SalesOrderType; } public SO_BatchPrintSettings setSalesOrderType(Short value) { this.SalesOrderType = value; return this; } public Short getDocumentType() { return DocumentType; } public SO_BatchPrintSettings setDocumentType(Short value) { this.DocumentType = value; return this; } public Short getBillingType() { return BillingType; } public SO_BatchPrintSettings setBillingType(Short value) { this.BillingType = value; return this; } public Short getBackOrderMode() { return BackOrderMode; } public SO_BatchPrintSettings setBackOrderMode(Short value) { this.BackOrderMode = value; return this; } public Short getSalesOrderStatus() { return SalesOrderStatus; } public SO_BatchPrintSettings setSalesOrderStatus(Short value) { this.SalesOrderStatus = value; return this; } public Boolean isCurrentSnapOnly() { return CurrentSnapOnly; } public SO_BatchPrintSettings setCurrentSnapOnly(Boolean value) { this.CurrentSnapOnly = value; return this; } public String getBatchPrintFilterRecID() { return BatchPrintFilterRecID; } public SO_BatchPrintSettings setBatchPrintFilterRecID(String value) { this.BatchPrintFilterRecID = value; return this; } public Boolean isPrintDeliveryDocket() { return PrintDeliveryDocket; } public SO_BatchPrintSettings setPrintDeliveryDocket(Boolean value) { this.PrintDeliveryDocket = value; return this; } public Boolean isPrintInvoice() { return PrintInvoice; } public SO_BatchPrintSettings setPrintInvoice(Boolean value) { this.PrintInvoice = value; return this; } public Boolean isPrintPackSlip() { return PrintPackSlip; } public SO_BatchPrintSettings setPrintPackSlip(Boolean value) { this.PrintPackSlip = value; return this; } public Boolean isPrintPickSheet() { return PrintPickSheet; } public SO_BatchPrintSettings setPrintPickSheet(Boolean value) { this.PrintPickSheet = value; return this; } public Boolean isPrintOther() { return PrintOther; } public SO_BatchPrintSettings setPrintOther(Boolean value) { this.PrintOther = value; return this; } public String getRecID() { return RecID; } public SO_BatchPrintSettings setRecID(String value) { this.RecID = value; return this; } public Boolean isEmailDeliveryDocket() { return EmailDeliveryDocket; } public SO_BatchPrintSettings setEmailDeliveryDocket(Boolean value) { this.EmailDeliveryDocket = value; return this; } public Boolean isEmailInvoice() { return EmailInvoice; } public SO_BatchPrintSettings setEmailInvoice(Boolean value) { this.EmailInvoice = value; return this; } public Boolean isEmailPackSlip() { return EmailPackSlip; } public SO_BatchPrintSettings setEmailPackSlip(Boolean value) { this.EmailPackSlip = value; return this; } public Boolean isEmailPickSheet() { return EmailPickSheet; } public SO_BatchPrintSettings setEmailPickSheet(Boolean value) { this.EmailPickSheet = value; return this; } public Boolean isEmailOther() { return EmailOther; } public SO_BatchPrintSettings setEmailOther(Boolean value) { this.EmailOther = value; return this; } public Short getDeliveryDocketEmailedStatus() { return DeliveryDocketEmailedStatus; } public SO_BatchPrintSettings setDeliveryDocketEmailedStatus(Short value) { this.DeliveryDocketEmailedStatus = value; return this; } public Short getSalesOrderEmailedStatus() { return SalesOrderEmailedStatus; } public SO_BatchPrintSettings setSalesOrderEmailedStatus(Short value) { this.SalesOrderEmailedStatus = value; return this; } public Short getPackSlipEmailedStatus() { return PackSlipEmailedStatus; } public SO_BatchPrintSettings setPackSlipEmailedStatus(Short value) { this.PackSlipEmailedStatus = value; return this; } public Short getPickSheetEmailedStatus() { return PickSheetEmailedStatus; } public SO_BatchPrintSettings setPickSheetEmailedStatus(Short value) { this.PickSheetEmailedStatus = value; return this; } public Short getOtherEmailedStatus() { return OtherEmailedStatus; } public SO_BatchPrintSettings setOtherEmailedStatus(Short value) { this.OtherEmailedStatus = value; return this; } public String getBatchPrintEmailTemplateRecID() { return BatchPrintEmailTemplateRecID; } public SO_BatchPrintSettings setBatchPrintEmailTemplateRecID(String value) { this.BatchPrintEmailTemplateRecID = value; return this; } public String getAppliesToInPhysicalID() { return AppliesTo_IN_PhysicalID; } public SO_BatchPrintSettings setAppliesToInPhysicalID(String value) { this.AppliesTo_IN_PhysicalID = value; return this; } public String getAppliesToInLogicalID() { return AppliesTo_IN_LogicalID; } public SO_BatchPrintSettings setAppliesToInLogicalID(String value) { this.AppliesTo_IN_LogicalID = value; return this; } public String getVisibleToInPhysicalID() { return VisibleTo_IN_PhysicalID; } public SO_BatchPrintSettings setVisibleToInPhysicalID(String value) { this.VisibleTo_IN_PhysicalID = value; return this; } public String getVisibleToInLogicalID() { return VisibleTo_IN_LogicalID; } public SO_BatchPrintSettings setVisibleToInLogicalID(String value) { this.VisibleTo_IN_LogicalID = value; return this; } } public static class SO_BatchProcessTypes { @Required() public String RecID = null; @Required() public String Description = null; @Required() public String ListOfSalesOrdersToProcessStoredProcedure = null; public String PostProcessingStoredProcedure = null; public String getRecID() { return RecID; } public SO_BatchProcessTypes setRecID(String value) { this.RecID = value; return this; } public String getDescription() { return Description; } public SO_BatchProcessTypes setDescription(String value) { this.Description = value; return this; } public String getListOfSalesOrdersToProcessStoredProcedure() { return ListOfSalesOrdersToProcessStoredProcedure; } public SO_BatchProcessTypes setListOfSalesOrdersToProcessStoredProcedure(String value) { this.ListOfSalesOrdersToProcessStoredProcedure = value; return this; } public String getPostProcessingStoredProcedure() { return PostProcessingStoredProcedure; } public SO_BatchProcessTypes setPostProcessingStoredProcedure(String value) { this.PostProcessingStoredProcedure = value; return this; } } public static class SO_BORun { @Required() public String RunID = null; @Required() public Date LastSavedDateTime = null; @Required() public String RunBy = null; @Required() public String RunNo = null; public String getRunID() { return RunID; } public SO_BORun setRunID(String value) { this.RunID = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public SO_BORun setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public String getRunBy() { return RunBy; } public SO_BORun setRunBy(String value) { this.RunBy = value; return this; } public String getRunNo() { return RunNo; } public SO_BORun setRunNo(String value) { this.RunNo = value; return this; } } public static class SO_BORunLines { @Required() public String RecID = null; @Required() public String RunID = null; public Short SourceType = null; @Required() public String SourceLineID = null; public String getRecID() { return RecID; } public SO_BORunLines setRecID(String value) { this.RecID = value; return this; } public String getRunID() { return RunID; } public SO_BORunLines setRunID(String value) { this.RunID = value; return this; } public Short getSourceType() { return SourceType; } public SO_BORunLines setSourceType(Short value) { this.SourceType = value; return this; } public String getSourceLineID() { return SourceLineID; } public SO_BORunLines setSourceLineID(String value) { this.SourceLineID = value; return this; } } public static class SO_BulkCreditNoteBatch { @Required() public String RecID = null; @Required() public String BatchNo = null; @Required() public String StaffID = null; @Required() public Date DateActivated = null; public Boolean BatchActivated = null; @Required() public Date LastSavedDateTime = null; public String getRecID() { return RecID; } public SO_BulkCreditNoteBatch setRecID(String value) { this.RecID = value; return this; } public String getBatchNo() { return BatchNo; } public SO_BulkCreditNoteBatch setBatchNo(String value) { this.BatchNo = value; return this; } public String getStaffID() { return StaffID; } public SO_BulkCreditNoteBatch setStaffID(String value) { this.StaffID = value; return this; } public Date getDateActivated() { return DateActivated; } public SO_BulkCreditNoteBatch setDateActivated(Date value) { this.DateActivated = value; return this; } public Boolean isBatchActivated() { return BatchActivated; } public SO_BulkCreditNoteBatch setBatchActivated(Boolean value) { this.BatchActivated = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public SO_BulkCreditNoteBatch setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } } public static class SO_BulkCreditNoteBatchLines { @Required() public String RecID = null; @Required() public String BulkCreditNoteBatchID = null; @Required() public Integer LineNumber = null; @Required() public String InvoiceHistoryID = null; @Required() public String InvoiceID = null; @Required() public String InvoiceNo = null; @Required() public String DebtorID = null; @Required() public String DebtorAccountNo = null; public String DebtorName = null; public String CreditNoteInvoiceID = null; public String CreditNoteInvoiceNo = null; public Boolean CreditFlag = null; public Boolean CreditFailed = null; public String FailReason = null; public String getRecID() { return RecID; } public SO_BulkCreditNoteBatchLines setRecID(String value) { this.RecID = value; return this; } public String getBulkCreditNoteBatchID() { return BulkCreditNoteBatchID; } public SO_BulkCreditNoteBatchLines setBulkCreditNoteBatchID(String value) { this.BulkCreditNoteBatchID = value; return this; } public Integer getLineNumber() { return LineNumber; } public SO_BulkCreditNoteBatchLines setLineNumber(Integer value) { this.LineNumber = value; return this; } public String getInvoiceHistoryID() { return InvoiceHistoryID; } public SO_BulkCreditNoteBatchLines setInvoiceHistoryID(String value) { this.InvoiceHistoryID = value; return this; } public String getInvoiceID() { return InvoiceID; } public SO_BulkCreditNoteBatchLines setInvoiceID(String value) { this.InvoiceID = value; return this; } public String getInvoiceNo() { return InvoiceNo; } public SO_BulkCreditNoteBatchLines setInvoiceNo(String value) { this.InvoiceNo = value; return this; } public String getDebtorID() { return DebtorID; } public SO_BulkCreditNoteBatchLines setDebtorID(String value) { this.DebtorID = value; return this; } public String getDebtorAccountNo() { return DebtorAccountNo; } public SO_BulkCreditNoteBatchLines setDebtorAccountNo(String value) { this.DebtorAccountNo = value; return this; } public String getDebtorName() { return DebtorName; } public SO_BulkCreditNoteBatchLines setDebtorName(String value) { this.DebtorName = value; return this; } public String getCreditNoteInvoiceID() { return CreditNoteInvoiceID; } public SO_BulkCreditNoteBatchLines setCreditNoteInvoiceID(String value) { this.CreditNoteInvoiceID = value; return this; } public String getCreditNoteInvoiceNo() { return CreditNoteInvoiceNo; } public SO_BulkCreditNoteBatchLines setCreditNoteInvoiceNo(String value) { this.CreditNoteInvoiceNo = value; return this; } public Boolean isCreditFlag() { return CreditFlag; } public SO_BulkCreditNoteBatchLines setCreditFlag(Boolean value) { this.CreditFlag = value; return this; } public Boolean isCreditFailed() { return CreditFailed; } public SO_BulkCreditNoteBatchLines setCreditFailed(Boolean value) { this.CreditFailed = value; return this; } public String getFailReason() { return FailReason; } public SO_BulkCreditNoteBatchLines setFailReason(String value) { this.FailReason = value; return this; } } public static class SO_CashSale { @References(SO_Main.class) @Required() public String InvoiceID = null; public String Name = null; public String Company = null; public String Address1 = null; public String Address2 = null; public String Address3 = null; public String Address4 = null; public String PostCode = null; public String Phone = null; public String Fax = null; public String ContactName = null; public String getInvoiceID() { return InvoiceID; } public SO_CashSale setInvoiceID(String value) { this.InvoiceID = value; return this; } public String getName() { return Name; } public SO_CashSale setName(String value) { this.Name = value; return this; } public String getCompany() { return Company; } public SO_CashSale setCompany(String value) { this.Company = value; return this; } public String getAddress1() { return Address1; } public SO_CashSale setAddress1(String value) { this.Address1 = value; return this; } public String getAddress2() { return Address2; } public SO_CashSale setAddress2(String value) { this.Address2 = value; return this; } public String getAddress3() { return Address3; } public SO_CashSale setAddress3(String value) { this.Address3 = value; return this; } public String getAddress4() { return Address4; } public SO_CashSale setAddress4(String value) { this.Address4 = value; return this; } public String getPostCode() { return PostCode; } public SO_CashSale setPostCode(String value) { this.PostCode = value; return this; } public String getPhone() { return Phone; } public SO_CashSale setPhone(String value) { this.Phone = value; return this; } public String getFax() { return Fax; } public SO_CashSale setFax(String value) { this.Fax = value; return this; } public String getContactName() { return ContactName; } public SO_CashSale setContactName(String value) { this.ContactName = value; return this; } } public static class SO_CreditNoteInvoiceLink { @Required() public String RecID = null; @Required() public String CreditNoteInvoiceID = null; @Required() public String SourceInvoiceHistoryID = null; public String getRecID() { return RecID; } public SO_CreditNoteInvoiceLink setRecID(String value) { this.RecID = value; return this; } public String getCreditNoteInvoiceID() { return CreditNoteInvoiceID; } public SO_CreditNoteInvoiceLink setCreditNoteInvoiceID(String value) { this.CreditNoteInvoiceID = value; return this; } public String getSourceInvoiceHistoryID() { return SourceInvoiceHistoryID; } public SO_CreditNoteInvoiceLink setSourceInvoiceHistoryID(String value) { this.SourceInvoiceHistoryID = value; return this; } } public static class SO_CreditReasons { @Required() public String CreditReasonID = null; @Required() public String CreditReasonDescription = null; @Required() public Boolean DefaultCreditReason = null; @Required() public Boolean CreditIntoStock = null; public String getCreditReasonID() { return CreditReasonID; } public SO_CreditReasons setCreditReasonID(String value) { this.CreditReasonID = value; return this; } public String getCreditReasonDescription() { return CreditReasonDescription; } public SO_CreditReasons setCreditReasonDescription(String value) { this.CreditReasonDescription = value; return this; } public Boolean isDefaultCreditReason() { return DefaultCreditReason; } public SO_CreditReasons setDefaultCreditReason(Boolean value) { this.DefaultCreditReason = value; return this; } public Boolean isCreditIntoStock() { return CreditIntoStock; } public SO_CreditReasons setCreditIntoStock(Boolean value) { this.CreditIntoStock = value; return this; } } public static class SO_CustomSetting { @Required() public String SettingID = null; @Required() public Date LastSavedDateTime = null; public String SettingDescription = null; @Required() public String SettingName = null; public BigDecimal DisplayOrder = null; public Short CellType = null; public String ScriptFormatCell = null; public String ScriptButtonClicked = null; public String ScriptReadData = null; public String GridHandlerCode = null; @References(SY_Plugin.class) @Required() public UUID SY_Plugin_RecID = null; public String getSettingID() { return SettingID; } public SO_CustomSetting setSettingID(String value) { this.SettingID = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public SO_CustomSetting setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public String getSettingDescription() { return SettingDescription; } public SO_CustomSetting setSettingDescription(String value) { this.SettingDescription = value; return this; } public String getSettingName() { return SettingName; } public SO_CustomSetting setSettingName(String value) { this.SettingName = value; return this; } public BigDecimal getDisplayOrder() { return DisplayOrder; } public SO_CustomSetting setDisplayOrder(BigDecimal value) { this.DisplayOrder = value; return this; } public Short getCellType() { return CellType; } public SO_CustomSetting setCellType(Short value) { this.CellType = value; return this; } public String getScriptFormatCell() { return ScriptFormatCell; } public SO_CustomSetting setScriptFormatCell(String value) { this.ScriptFormatCell = value; return this; } public String getScriptButtonClicked() { return ScriptButtonClicked; } public SO_CustomSetting setScriptButtonClicked(String value) { this.ScriptButtonClicked = value; return this; } public String getScriptReadData() { return ScriptReadData; } public SO_CustomSetting setScriptReadData(String value) { this.ScriptReadData = value; return this; } public String getGridHandlerCode() { return GridHandlerCode; } public SO_CustomSetting setGridHandlerCode(String value) { this.GridHandlerCode = value; return this; } public UUID getSyPluginRecID() { return SY_Plugin_RecID; } public SO_CustomSetting setSyPluginRecID(UUID value) { this.SY_Plugin_RecID = value; return this; } } public static class SO_CustomSettingValues { @Required() public String SettingValueID = null; @References(SO_CustomSetting.class) @Required() public String SettingID = null; @References(SO_Main.class) @Required() public String InvoiceID = null; public String Contents = null; @Required() public Date LastSavedDateTime = null; public String getSettingValueID() { return SettingValueID; } public SO_CustomSettingValues setSettingValueID(String value) { this.SettingValueID = value; return this; } public String getSettingID() { return SettingID; } public SO_CustomSettingValues setSettingID(String value) { this.SettingID = value; return this; } public String getInvoiceID() { return InvoiceID; } public SO_CustomSettingValues setInvoiceID(String value) { this.InvoiceID = value; return this; } public String getContents() { return Contents; } public SO_CustomSettingValues setContents(String value) { this.Contents = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public SO_CustomSettingValues setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } } public static class SO_Documents { @Required() public String RecID = null; @Required() public String InvoiceID = null; @Required() public String DocumentTypeID = null; @Required() public Date LastSavedDateTime = null; @Required() public String LastSavedByStaffID = null; public ArrayList FileBinary = null; public String Description = null; public String PhysicalFileName = null; @Required() public Integer ItemNo = null; public String getRecID() { return RecID; } public SO_Documents setRecID(String value) { this.RecID = value; return this; } public String getInvoiceID() { return InvoiceID; } public SO_Documents setInvoiceID(String value) { this.InvoiceID = value; return this; } public String getDocumentTypeID() { return DocumentTypeID; } public SO_Documents setDocumentTypeID(String value) { this.DocumentTypeID = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public SO_Documents setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public String getLastSavedByStaffID() { return LastSavedByStaffID; } public SO_Documents setLastSavedByStaffID(String value) { this.LastSavedByStaffID = value; return this; } public ArrayList getFileBinary() { return FileBinary; } public SO_Documents setFileBinary(ArrayList value) { this.FileBinary = value; return this; } public String getDescription() { return Description; } public SO_Documents setDescription(String value) { this.Description = value; return this; } public String getPhysicalFileName() { return PhysicalFileName; } public SO_Documents setPhysicalFileName(String value) { this.PhysicalFileName = value; return this; } public Integer getItemNo() { return ItemNo; } public SO_Documents setItemNo(Integer value) { this.ItemNo = value; return this; } } public static class SO_EDIMain { @Required() public String InvoiceID = null; public Short EDIOrderType = null; public String EDIAddress = null; public Date EDIDeliverNotBeforeDate = null; public Date EDIDeliverNotAfterDate = null; public String ReceiverEDIAddress = null; public String VendorNumber = null; public String BuyerNumber = null; public String getInvoiceID() { return InvoiceID; } public SO_EDIMain setInvoiceID(String value) { this.InvoiceID = value; return this; } public Short getEdiOrderType() { return EDIOrderType; } public SO_EDIMain setEdiOrderType(Short value) { this.EDIOrderType = value; return this; } public String getEdiAddress() { return EDIAddress; } public SO_EDIMain setEdiAddress(String value) { this.EDIAddress = value; return this; } public Date getEdiDeliverNotBeforeDate() { return EDIDeliverNotBeforeDate; } public SO_EDIMain setEdiDeliverNotBeforeDate(Date value) { this.EDIDeliverNotBeforeDate = value; return this; } public Date getEdiDeliverNotAfterDate() { return EDIDeliverNotAfterDate; } public SO_EDIMain setEdiDeliverNotAfterDate(Date value) { this.EDIDeliverNotAfterDate = value; return this; } public String getReceiverEDIAddress() { return ReceiverEDIAddress; } public SO_EDIMain setReceiverEDIAddress(String value) { this.ReceiverEDIAddress = value; return this; } public String getVendorNumber() { return VendorNumber; } public SO_EDIMain setVendorNumber(String value) { this.VendorNumber = value; return this; } public String getBuyerNumber() { return BuyerNumber; } public SO_EDIMain setBuyerNumber(String value) { this.BuyerNumber = value; return this; } } public static class SO_EmailLog { @Required() public String EmailLogID = null; @References(SO_History.class) @Required() public String InvoiceHistoryID = null; @Required() public Date EmailDateTime = null; public String From = null; public String To = null; public String CC = null; public String BCC = null; public String Attachments = null; public String Subject = null; public String Body = null; @Required() public String InvoiceID = null; @References(HR_Staff.class) @Required() public String StaffID = null; public String EM_Main_RecID = null; public Boolean RequestReadReceipt = null; public Short ReportType = null; public String getEmailLogID() { return EmailLogID; } public SO_EmailLog setEmailLogID(String value) { this.EmailLogID = value; return this; } public String getInvoiceHistoryID() { return InvoiceHistoryID; } public SO_EmailLog setInvoiceHistoryID(String value) { this.InvoiceHistoryID = value; return this; } public Date getEmailDateTime() { return EmailDateTime; } public SO_EmailLog setEmailDateTime(Date value) { this.EmailDateTime = value; return this; } public String getFrom() { return From; } public SO_EmailLog setFrom(String value) { this.From = value; return this; } public String getTo() { return To; } public SO_EmailLog setTo(String value) { this.To = value; return this; } public String getCc() { return CC; } public SO_EmailLog setCc(String value) { this.CC = value; return this; } public String getBcc() { return BCC; } public SO_EmailLog setBcc(String value) { this.BCC = value; return this; } public String getAttachments() { return Attachments; } public SO_EmailLog setAttachments(String value) { this.Attachments = value; return this; } public String getSubject() { return Subject; } public SO_EmailLog setSubject(String value) { this.Subject = value; return this; } public String getBody() { return Body; } public SO_EmailLog setBody(String value) { this.Body = value; return this; } public String getInvoiceID() { return InvoiceID; } public SO_EmailLog setInvoiceID(String value) { this.InvoiceID = value; return this; } public String getStaffID() { return StaffID; } public SO_EmailLog setStaffID(String value) { this.StaffID = value; return this; } public String getEmMainRecID() { return EM_Main_RecID; } public SO_EmailLog setEmMainRecID(String value) { this.EM_Main_RecID = value; return this; } public Boolean isRequestReadReceipt() { return RequestReadReceipt; } public SO_EmailLog setRequestReadReceipt(Boolean value) { this.RequestReadReceipt = value; return this; } public Short getReportType() { return ReportType; } public SO_EmailLog setReportType(Short value) { this.ReportType = value; return this; } } public static class SO_ExportLines { @Required() public String RecID = null; @References(SO_ExportMain.class) @Required() public String SO_ExportMain_RecID = null; @Required() public Date LastSavedDateTime = null; @Required() public Integer ItemNo = null; @Required() public String SO_Main_InvoiceID = null; public Boolean FlaggedForExport = null; public String SO_History_InvoiceHistoryID = null; @Required() public ArrayList RowHash = null; public String getRecID() { return RecID; } public SO_ExportLines setRecID(String value) { this.RecID = value; return this; } public String getSoExportMainRecID() { return SO_ExportMain_RecID; } public SO_ExportLines setSoExportMainRecID(String value) { this.SO_ExportMain_RecID = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public SO_ExportLines setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Integer getItemNo() { return ItemNo; } public SO_ExportLines setItemNo(Integer value) { this.ItemNo = value; return this; } public String getSoMainInvoiceID() { return SO_Main_InvoiceID; } public SO_ExportLines setSoMainInvoiceID(String value) { this.SO_Main_InvoiceID = value; return this; } public Boolean isFlaggedForExport() { return FlaggedForExport; } public SO_ExportLines setFlaggedForExport(Boolean value) { this.FlaggedForExport = value; return this; } public String getSoHistoryInvoiceHistoryID() { return SO_History_InvoiceHistoryID; } public SO_ExportLines setSoHistoryInvoiceHistoryID(String value) { this.SO_History_InvoiceHistoryID = value; return this; } public ArrayList getRowHash() { return RowHash; } public SO_ExportLines setRowHash(ArrayList value) { this.RowHash = value; return this; } } public static class SO_ExportMain { @Required() public String RecID = null; @Required() public Date LastSavedDateTime = null; @Required() public String BatchNo = null; @Required() public Date DateCreated = null; @Required() public Date DateActivated = null; @Required() public String HR_Staff_StaffID = null; @Required() public Short Status = null; public String ExportFileNameAndPath = null; public String getRecID() { return RecID; } public SO_ExportMain setRecID(String value) { this.RecID = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public SO_ExportMain setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public String getBatchNo() { return BatchNo; } public SO_ExportMain setBatchNo(String value) { this.BatchNo = value; return this; } public Date getDateCreated() { return DateCreated; } public SO_ExportMain setDateCreated(Date value) { this.DateCreated = value; return this; } public Date getDateActivated() { return DateActivated; } public SO_ExportMain setDateActivated(Date value) { this.DateActivated = value; return this; } public String getHrStaffStaffID() { return HR_Staff_StaffID; } public SO_ExportMain setHrStaffStaffID(String value) { this.HR_Staff_StaffID = value; return this; } public Short getStatus() { return Status; } public SO_ExportMain setStatus(Short value) { this.Status = value; return this; } public String getExportFileNameAndPath() { return ExportFileNameAndPath; } public SO_ExportMain setExportFileNameAndPath(String value) { this.ExportFileNameAndPath = value; return this; } } public static class SO_ForwardOrderProcessBatch { @Required() public String RecID = null; @Required() public String BatchNo = null; @Required() public String StaffID = null; public Date DateActivated = null; public Boolean BatchActivated = null; @Required() public Date LastSavedDateTime = null; @References(IN_Logical.class) public String IN_Logical_RecID = null; public Boolean UseSpecificWarehouse = null; public String getRecID() { return RecID; } public SO_ForwardOrderProcessBatch setRecID(String value) { this.RecID = value; return this; } public String getBatchNo() { return BatchNo; } public SO_ForwardOrderProcessBatch setBatchNo(String value) { this.BatchNo = value; return this; } public String getStaffID() { return StaffID; } public SO_ForwardOrderProcessBatch setStaffID(String value) { this.StaffID = value; return this; } public Date getDateActivated() { return DateActivated; } public SO_ForwardOrderProcessBatch setDateActivated(Date value) { this.DateActivated = value; return this; } public Boolean isBatchActivated() { return BatchActivated; } public SO_ForwardOrderProcessBatch setBatchActivated(Boolean value) { this.BatchActivated = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public SO_ForwardOrderProcessBatch setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public String getInLogicalRecID() { return IN_Logical_RecID; } public SO_ForwardOrderProcessBatch setInLogicalRecID(String value) { this.IN_Logical_RecID = value; return this; } public Boolean isUseSpecificWarehouse() { return UseSpecificWarehouse; } public SO_ForwardOrderProcessBatch setUseSpecificWarehouse(Boolean value) { this.UseSpecificWarehouse = value; return this; } } public static class SO_ForwardOrderProcessBatchLines { @Required() public String RecID = null; @Required() public String ForwardOrderProcessBatchID = null; @Required() public Integer LineNumber = null; @Required() public String InvoiceID = null; @Required() public String InvoiceNo = null; @Required() public String DebtorID = null; @Required() public String DebtorAccountNo = null; public String DebtorName = null; public Boolean ConvertFlag = null; public Boolean ConvertFailed = null; public String FailReason = null; public String getRecID() { return RecID; } public SO_ForwardOrderProcessBatchLines setRecID(String value) { this.RecID = value; return this; } public String getForwardOrderProcessBatchID() { return ForwardOrderProcessBatchID; } public SO_ForwardOrderProcessBatchLines setForwardOrderProcessBatchID(String value) { this.ForwardOrderProcessBatchID = value; return this; } public Integer getLineNumber() { return LineNumber; } public SO_ForwardOrderProcessBatchLines setLineNumber(Integer value) { this.LineNumber = value; return this; } public String getInvoiceID() { return InvoiceID; } public SO_ForwardOrderProcessBatchLines setInvoiceID(String value) { this.InvoiceID = value; return this; } public String getInvoiceNo() { return InvoiceNo; } public SO_ForwardOrderProcessBatchLines setInvoiceNo(String value) { this.InvoiceNo = value; return this; } public String getDebtorID() { return DebtorID; } public SO_ForwardOrderProcessBatchLines setDebtorID(String value) { this.DebtorID = value; return this; } public String getDebtorAccountNo() { return DebtorAccountNo; } public SO_ForwardOrderProcessBatchLines setDebtorAccountNo(String value) { this.DebtorAccountNo = value; return this; } public String getDebtorName() { return DebtorName; } public SO_ForwardOrderProcessBatchLines setDebtorName(String value) { this.DebtorName = value; return this; } public Boolean isConvertFlag() { return ConvertFlag; } public SO_ForwardOrderProcessBatchLines setConvertFlag(Boolean value) { this.ConvertFlag = value; return this; } public Boolean isConvertFailed() { return ConvertFailed; } public SO_ForwardOrderProcessBatchLines setConvertFailed(Boolean value) { this.ConvertFailed = value; return this; } public String getFailReason() { return FailReason; } public SO_ForwardOrderProcessBatchLines setFailReason(String value) { this.FailReason = value; return this; } } public static class SO_ForwardOrderScheduleBatch { @Required() public String RecID = null; @Required() public String BatchNo = null; @Required() public String StaffID = null; public Date DateActivated = null; public Boolean BatchActivated = null; @Required() public Date LastSavedDateTime = null; @References(IN_Logical.class) public String IN_Logical_RecID = null; public Boolean UseSpecificWarehouse = null; public Boolean IncludeForwardOrders = null; public Boolean IncludeOrders = null; public Boolean IncludeInvoices = null; public Boolean IncludeActiveOrders = null; public String getRecID() { return RecID; } public SO_ForwardOrderScheduleBatch setRecID(String value) { this.RecID = value; return this; } public String getBatchNo() { return BatchNo; } public SO_ForwardOrderScheduleBatch setBatchNo(String value) { this.BatchNo = value; return this; } public String getStaffID() { return StaffID; } public SO_ForwardOrderScheduleBatch setStaffID(String value) { this.StaffID = value; return this; } public Date getDateActivated() { return DateActivated; } public SO_ForwardOrderScheduleBatch setDateActivated(Date value) { this.DateActivated = value; return this; } public Boolean isBatchActivated() { return BatchActivated; } public SO_ForwardOrderScheduleBatch setBatchActivated(Boolean value) { this.BatchActivated = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public SO_ForwardOrderScheduleBatch setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public String getInLogicalRecID() { return IN_Logical_RecID; } public SO_ForwardOrderScheduleBatch setInLogicalRecID(String value) { this.IN_Logical_RecID = value; return this; } public Boolean isUseSpecificWarehouse() { return UseSpecificWarehouse; } public SO_ForwardOrderScheduleBatch setUseSpecificWarehouse(Boolean value) { this.UseSpecificWarehouse = value; return this; } public Boolean isIncludeForwardOrders() { return IncludeForwardOrders; } public SO_ForwardOrderScheduleBatch setIncludeForwardOrders(Boolean value) { this.IncludeForwardOrders = value; return this; } public Boolean isIncludeOrders() { return IncludeOrders; } public SO_ForwardOrderScheduleBatch setIncludeOrders(Boolean value) { this.IncludeOrders = value; return this; } public Boolean isIncludeInvoices() { return IncludeInvoices; } public SO_ForwardOrderScheduleBatch setIncludeInvoices(Boolean value) { this.IncludeInvoices = value; return this; } public Boolean isIncludeActiveOrders() { return IncludeActiveOrders; } public SO_ForwardOrderScheduleBatch setIncludeActiveOrders(Boolean value) { this.IncludeActiveOrders = value; return this; } } public static class SO_ForwardOrderScheduleBatchLines { @Required() public String RecID = null; @Required() public String ForwardOrderScheduleBatchID = null; @Required() public Integer LineNumber = null; @Required() public String InvoiceID = null; @Required() public String InvoiceNo = null; @Required() public String DebtorID = null; @Required() public String DebtorAccountNo = null; public String DebtorName = null; @Required() public String InvoiceLineID = null; @Required() public String InventoryID = null; @Required() public String PartNo = null; public String Description = null; @Required() public BigDecimal Quantity = null; @Required() public Date ForwardOrderDate = null; @Required() public Date CurrentScheduledDate = null; @Required() public Date NewScheduledDate = null; public Boolean UpdateFailed = null; public String FailReason = null; public String getRecID() { return RecID; } public SO_ForwardOrderScheduleBatchLines setRecID(String value) { this.RecID = value; return this; } public String getForwardOrderScheduleBatchID() { return ForwardOrderScheduleBatchID; } public SO_ForwardOrderScheduleBatchLines setForwardOrderScheduleBatchID(String value) { this.ForwardOrderScheduleBatchID = value; return this; } public Integer getLineNumber() { return LineNumber; } public SO_ForwardOrderScheduleBatchLines setLineNumber(Integer value) { this.LineNumber = value; return this; } public String getInvoiceID() { return InvoiceID; } public SO_ForwardOrderScheduleBatchLines setInvoiceID(String value) { this.InvoiceID = value; return this; } public String getInvoiceNo() { return InvoiceNo; } public SO_ForwardOrderScheduleBatchLines setInvoiceNo(String value) { this.InvoiceNo = value; return this; } public String getDebtorID() { return DebtorID; } public SO_ForwardOrderScheduleBatchLines setDebtorID(String value) { this.DebtorID = value; return this; } public String getDebtorAccountNo() { return DebtorAccountNo; } public SO_ForwardOrderScheduleBatchLines setDebtorAccountNo(String value) { this.DebtorAccountNo = value; return this; } public String getDebtorName() { return DebtorName; } public SO_ForwardOrderScheduleBatchLines setDebtorName(String value) { this.DebtorName = value; return this; } public String getInvoiceLineID() { return InvoiceLineID; } public SO_ForwardOrderScheduleBatchLines setInvoiceLineID(String value) { this.InvoiceLineID = value; return this; } public String getInventoryID() { return InventoryID; } public SO_ForwardOrderScheduleBatchLines setInventoryID(String value) { this.InventoryID = value; return this; } public String getPartNo() { return PartNo; } public SO_ForwardOrderScheduleBatchLines setPartNo(String value) { this.PartNo = value; return this; } public String getDescription() { return Description; } public SO_ForwardOrderScheduleBatchLines setDescription(String value) { this.Description = value; return this; } public BigDecimal getQuantity() { return Quantity; } public SO_ForwardOrderScheduleBatchLines setQuantity(BigDecimal value) { this.Quantity = value; return this; } public Date getForwardOrderDate() { return ForwardOrderDate; } public SO_ForwardOrderScheduleBatchLines setForwardOrderDate(Date value) { this.ForwardOrderDate = value; return this; } public Date getCurrentScheduledDate() { return CurrentScheduledDate; } public SO_ForwardOrderScheduleBatchLines setCurrentScheduledDate(Date value) { this.CurrentScheduledDate = value; return this; } public Date getNewScheduledDate() { return NewScheduledDate; } public SO_ForwardOrderScheduleBatchLines setNewScheduledDate(Date value) { this.NewScheduledDate = value; return this; } public Boolean isUpdateFailed() { return UpdateFailed; } public SO_ForwardOrderScheduleBatchLines setUpdateFailed(Boolean value) { this.UpdateFailed = value; return this; } public String getFailReason() { return FailReason; } public SO_ForwardOrderScheduleBatchLines setFailReason(String value) { this.FailReason = value; return this; } } public static class SO_FoundStockAudit { @Required() public String RecID = null; @Required() public String DestInvoiceID = null; @Required() public String DestHistoryID = null; @Required() public String DestInvoiceLineID = null; public BigDecimal DestQuantityRequired = null; public String getRecID() { return RecID; } public SO_FoundStockAudit setRecID(String value) { this.RecID = value; return this; } public String getDestInvoiceID() { return DestInvoiceID; } public SO_FoundStockAudit setDestInvoiceID(String value) { this.DestInvoiceID = value; return this; } public String getDestHistoryID() { return DestHistoryID; } public SO_FoundStockAudit setDestHistoryID(String value) { this.DestHistoryID = value; return this; } public String getDestInvoiceLineID() { return DestInvoiceLineID; } public SO_FoundStockAudit setDestInvoiceLineID(String value) { this.DestInvoiceLineID = value; return this; } public BigDecimal getDestQuantityRequired() { return DestQuantityRequired; } public SO_FoundStockAudit setDestQuantityRequired(BigDecimal value) { this.DestQuantityRequired = value; return this; } } public static class SO_FoundStockAuditLines { @Required() public String RecID = null; @Required() public String FoundStockAuditID = null; @Required() public String SourceInvoiceID = null; @Required() public String SourceHistoryID = null; @Required() public String SourceInvoiceLineID = null; public BigDecimal QuantityTaken = null; public String getRecID() { return RecID; } public SO_FoundStockAuditLines setRecID(String value) { this.RecID = value; return this; } public String getFoundStockAuditID() { return FoundStockAuditID; } public SO_FoundStockAuditLines setFoundStockAuditID(String value) { this.FoundStockAuditID = value; return this; } public String getSourceInvoiceID() { return SourceInvoiceID; } public SO_FoundStockAuditLines setSourceInvoiceID(String value) { this.SourceInvoiceID = value; return this; } public String getSourceHistoryID() { return SourceHistoryID; } public SO_FoundStockAuditLines setSourceHistoryID(String value) { this.SourceHistoryID = value; return this; } public String getSourceInvoiceLineID() { return SourceInvoiceLineID; } public SO_FoundStockAuditLines setSourceInvoiceLineID(String value) { this.SourceInvoiceLineID = value; return this; } public BigDecimal getQuantityTaken() { return QuantityTaken; } public SO_FoundStockAuditLines setQuantityTaken(BigDecimal value) { this.QuantityTaken = value; return this; } } public static class SO_History { @Required() public String InvoiceHistoryID = null; @References(SO_Main.class) @Required() public String InvoiceID = null; @Required() public String LastModifiedBy = null; @Required() public Date RecordDate = null; public String Ref = null; public Short HistoryNo = null; public BigDecimal HistoryTotal = null; public String DelAddress1 = null; public String DelAddress2 = null; public String DelAddress3 = null; public String DelAddress4 = null; public String PostCode = null; public String Notes = null; public String CourierDetails = null; @Required() public String PaymentTypeID = null; public String PaymentRef = null; public BigDecimal AmountPaid = null; public String RunNo = null; public BigDecimal CartageCharge1 = null; public BigDecimal CartageCharge2 = null; public BigDecimal CartageCharge3 = null; public String DelContactName = null; @Required() public Boolean Delivered = null; public Date DeliveredDate = null; @References(TX_Main.class) public String Cartage1TaxRateID = null; public BigDecimal Cartage1TaxRate = null; public BigDecimal Cartage1TaxAmount = null; @References(TX_Main.class) public String Cartage2TaxRateID = null; public BigDecimal Cartage2TaxRate = null; public BigDecimal Cartage2TaxAmount = null; @References(TX_Main.class) public String Cartage3TaxRateID = null; public BigDecimal Cartage3TaxRate = null; public BigDecimal Cartage3TaxAmount = null; public String FreightForwardAddress1 = null; public String FreightForwardAddress2 = null; public String FreightForwardAddress3 = null; public String FreightForwardAddress4 = null; public String FreightForwardNotes = null; public String DBTransID = null; public Short Status = null; public String EmailAddress = null; public String ConsignmentNote = null; public String EDIASNNumber = null; public Short EDIPickStatus = null; public Date DateCreated = null; public Date DateLastSaved = null; public Date DatePosted = null; public Date DateProcessed = null; @Required() public Boolean DropShipment = null; @Required() public String DeliveryAddressee = null; @Required() public String DeliveryAddressCountry = null; @Required() public String FreightForwardAddressCountry = null; public String getInvoiceHistoryID() { return InvoiceHistoryID; } public SO_History setInvoiceHistoryID(String value) { this.InvoiceHistoryID = value; return this; } public String getInvoiceID() { return InvoiceID; } public SO_History setInvoiceID(String value) { this.InvoiceID = value; return this; } public String getLastModifiedBy() { return LastModifiedBy; } public SO_History setLastModifiedBy(String value) { this.LastModifiedBy = value; return this; } public Date getRecordDate() { return RecordDate; } public SO_History setRecordDate(Date value) { this.RecordDate = value; return this; } public String getRef() { return Ref; } public SO_History setRef(String value) { this.Ref = value; return this; } public Short getHistoryNo() { return HistoryNo; } public SO_History setHistoryNo(Short value) { this.HistoryNo = value; return this; } public BigDecimal getHistoryTotal() { return HistoryTotal; } public SO_History setHistoryTotal(BigDecimal value) { this.HistoryTotal = value; return this; } public String getDelAddress1() { return DelAddress1; } public SO_History setDelAddress1(String value) { this.DelAddress1 = value; return this; } public String getDelAddress2() { return DelAddress2; } public SO_History setDelAddress2(String value) { this.DelAddress2 = value; return this; } public String getDelAddress3() { return DelAddress3; } public SO_History setDelAddress3(String value) { this.DelAddress3 = value; return this; } public String getDelAddress4() { return DelAddress4; } public SO_History setDelAddress4(String value) { this.DelAddress4 = value; return this; } public String getPostCode() { return PostCode; } public SO_History setPostCode(String value) { this.PostCode = value; return this; } public String getNotes() { return Notes; } public SO_History setNotes(String value) { this.Notes = value; return this; } public String getCourierDetails() { return CourierDetails; } public SO_History setCourierDetails(String value) { this.CourierDetails = value; return this; } public String getPaymentTypeID() { return PaymentTypeID; } public SO_History setPaymentTypeID(String value) { this.PaymentTypeID = value; return this; } public String getPaymentRef() { return PaymentRef; } public SO_History setPaymentRef(String value) { this.PaymentRef = value; return this; } public BigDecimal getAmountPaid() { return AmountPaid; } public SO_History setAmountPaid(BigDecimal value) { this.AmountPaid = value; return this; } public String getRunNo() { return RunNo; } public SO_History setRunNo(String value) { this.RunNo = value; return this; } public BigDecimal getCartageCharge1() { return CartageCharge1; } public SO_History setCartageCharge1(BigDecimal value) { this.CartageCharge1 = value; return this; } public BigDecimal getCartageCharge2() { return CartageCharge2; } public SO_History setCartageCharge2(BigDecimal value) { this.CartageCharge2 = value; return this; } public BigDecimal getCartageCharge3() { return CartageCharge3; } public SO_History setCartageCharge3(BigDecimal value) { this.CartageCharge3 = value; return this; } public String getDelContactName() { return DelContactName; } public SO_History setDelContactName(String value) { this.DelContactName = value; return this; } public Boolean isDelivered() { return Delivered; } public SO_History setDelivered(Boolean value) { this.Delivered = value; return this; } public Date getDeliveredDate() { return DeliveredDate; } public SO_History setDeliveredDate(Date value) { this.DeliveredDate = value; return this; } public String getCartage1TaxRateID() { return Cartage1TaxRateID; } public SO_History setCartage1TaxRateID(String value) { this.Cartage1TaxRateID = value; return this; } public BigDecimal getCartage1TaxRate() { return Cartage1TaxRate; } public SO_History setCartage1TaxRate(BigDecimal value) { this.Cartage1TaxRate = value; return this; } public BigDecimal getCartage1TaxAmount() { return Cartage1TaxAmount; } public SO_History setCartage1TaxAmount(BigDecimal value) { this.Cartage1TaxAmount = value; return this; } public String getCartage2TaxRateID() { return Cartage2TaxRateID; } public SO_History setCartage2TaxRateID(String value) { this.Cartage2TaxRateID = value; return this; } public BigDecimal getCartage2TaxRate() { return Cartage2TaxRate; } public SO_History setCartage2TaxRate(BigDecimal value) { this.Cartage2TaxRate = value; return this; } public BigDecimal getCartage2TaxAmount() { return Cartage2TaxAmount; } public SO_History setCartage2TaxAmount(BigDecimal value) { this.Cartage2TaxAmount = value; return this; } public String getCartage3TaxRateID() { return Cartage3TaxRateID; } public SO_History setCartage3TaxRateID(String value) { this.Cartage3TaxRateID = value; return this; } public BigDecimal getCartage3TaxRate() { return Cartage3TaxRate; } public SO_History setCartage3TaxRate(BigDecimal value) { this.Cartage3TaxRate = value; return this; } public BigDecimal getCartage3TaxAmount() { return Cartage3TaxAmount; } public SO_History setCartage3TaxAmount(BigDecimal value) { this.Cartage3TaxAmount = value; return this; } public String getFreightForwardAddress1() { return FreightForwardAddress1; } public SO_History setFreightForwardAddress1(String value) { this.FreightForwardAddress1 = value; return this; } public String getFreightForwardAddress2() { return FreightForwardAddress2; } public SO_History setFreightForwardAddress2(String value) { this.FreightForwardAddress2 = value; return this; } public String getFreightForwardAddress3() { return FreightForwardAddress3; } public SO_History setFreightForwardAddress3(String value) { this.FreightForwardAddress3 = value; return this; } public String getFreightForwardAddress4() { return FreightForwardAddress4; } public SO_History setFreightForwardAddress4(String value) { this.FreightForwardAddress4 = value; return this; } public String getFreightForwardNotes() { return FreightForwardNotes; } public SO_History setFreightForwardNotes(String value) { this.FreightForwardNotes = value; return this; } public String getDbTransID() { return DBTransID; } public SO_History setDbTransID(String value) { this.DBTransID = value; return this; } public Short getStatus() { return Status; } public SO_History setStatus(Short value) { this.Status = value; return this; } public String getEmailAddress() { return EmailAddress; } public SO_History setEmailAddress(String value) { this.EmailAddress = value; return this; } public String getConsignmentNote() { return ConsignmentNote; } public SO_History setConsignmentNote(String value) { this.ConsignmentNote = value; return this; } public String getEdiasnNumber() { return EDIASNNumber; } public SO_History setEdiasnNumber(String value) { this.EDIASNNumber = value; return this; } public Short getEdiPickStatus() { return EDIPickStatus; } public SO_History setEdiPickStatus(Short value) { this.EDIPickStatus = value; return this; } public Date getDateCreated() { return DateCreated; } public SO_History setDateCreated(Date value) { this.DateCreated = value; return this; } public Date getDateLastSaved() { return DateLastSaved; } public SO_History setDateLastSaved(Date value) { this.DateLastSaved = value; return this; } public Date getDatePosted() { return DatePosted; } public SO_History setDatePosted(Date value) { this.DatePosted = value; return this; } public Date getDateProcessed() { return DateProcessed; } public SO_History setDateProcessed(Date value) { this.DateProcessed = value; return this; } public Boolean isDropShipment() { return DropShipment; } public SO_History setDropShipment(Boolean value) { this.DropShipment = value; return this; } public String getDeliveryAddressee() { return DeliveryAddressee; } public SO_History setDeliveryAddressee(String value) { this.DeliveryAddressee = value; return this; } public String getDeliveryAddressCountry() { return DeliveryAddressCountry; } public SO_History setDeliveryAddressCountry(String value) { this.DeliveryAddressCountry = value; return this; } public String getFreightForwardAddressCountry() { return FreightForwardAddressCountry; } public SO_History setFreightForwardAddressCountry(String value) { this.FreightForwardAddressCountry = value; return this; } } public static class SO_HistoryCarrier { @Required() public String SO_History_InvoiceHistoryID = null; public Boolean UseLeastCost = null; @References(FR_Carriers.class) @Required() public String FR_Carriers_RecID = null; @References(FR_CarrierServices.class) @Required() public String FR_CarrierServices_RecID = null; @Required() public Short FreightSystemStatus = null; @Required() public Short ChargeTo = null; public String CarrierAccountNo = null; public String getSoHistoryInvoiceHistoryID() { return SO_History_InvoiceHistoryID; } public SO_HistoryCarrier setSoHistoryInvoiceHistoryID(String value) { this.SO_History_InvoiceHistoryID = value; return this; } public Boolean isUseLeastCost() { return UseLeastCost; } public SO_HistoryCarrier setUseLeastCost(Boolean value) { this.UseLeastCost = value; return this; } public String getFrCarriersRecID() { return FR_Carriers_RecID; } public SO_HistoryCarrier setFrCarriersRecID(String value) { this.FR_Carriers_RecID = value; return this; } public String getFrCarrierServicesRecID() { return FR_CarrierServices_RecID; } public SO_HistoryCarrier setFrCarrierServicesRecID(String value) { this.FR_CarrierServices_RecID = value; return this; } public Short getFreightSystemStatus() { return FreightSystemStatus; } public SO_HistoryCarrier setFreightSystemStatus(Short value) { this.FreightSystemStatus = value; return this; } public Short getChargeTo() { return ChargeTo; } public SO_HistoryCarrier setChargeTo(Short value) { this.ChargeTo = value; return this; } public String getCarrierAccountNo() { return CarrierAccountNo; } public SO_HistoryCarrier setCarrierAccountNo(String value) { this.CarrierAccountNo = value; return this; } } public static class SO_HistoryConsignmentNotes { @Required() public String RecID = null; @Required() public String SO_History_InvoiceHistoryID = null; @Required() public String ConsignmentNoteNo = null; @Required() public Date LastSavedDateTime = null; public Date ConsignmentNoteDate = null; @Required() public BigDecimal ExGSTAmount = null; @Required() public BigDecimal GSTAmount = null; public String getRecID() { return RecID; } public SO_HistoryConsignmentNotes setRecID(String value) { this.RecID = value; return this; } public String getSoHistoryInvoiceHistoryID() { return SO_History_InvoiceHistoryID; } public SO_HistoryConsignmentNotes setSoHistoryInvoiceHistoryID(String value) { this.SO_History_InvoiceHistoryID = value; return this; } public String getConsignmentNoteNo() { return ConsignmentNoteNo; } public SO_HistoryConsignmentNotes setConsignmentNoteNo(String value) { this.ConsignmentNoteNo = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public SO_HistoryConsignmentNotes setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getConsignmentNoteDate() { return ConsignmentNoteDate; } public SO_HistoryConsignmentNotes setConsignmentNoteDate(Date value) { this.ConsignmentNoteDate = value; return this; } public BigDecimal getExGSTAmount() { return ExGSTAmount; } public SO_HistoryConsignmentNotes setExGSTAmount(BigDecimal value) { this.ExGSTAmount = value; return this; } public BigDecimal getGstAmount() { return GSTAmount; } public SO_HistoryConsignmentNotes setGstAmount(BigDecimal value) { this.GSTAmount = value; return this; } } public static class SO_HistoryCustomSetting { @Required() public String SettingID = null; @Required() public Date LastSavedDateTime = null; public String SettingDescription = null; @Required() public String SettingName = null; public BigDecimal DisplayOrder = null; public Short CellType = null; public String ScriptFormatCell = null; public String ScriptButtonClicked = null; public String ScriptReadData = null; public String GridHandlerCode = null; @References(SY_Plugin.class) @Required() public UUID SY_Plugin_RecID = null; public String getSettingID() { return SettingID; } public SO_HistoryCustomSetting setSettingID(String value) { this.SettingID = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public SO_HistoryCustomSetting setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public String getSettingDescription() { return SettingDescription; } public SO_HistoryCustomSetting setSettingDescription(String value) { this.SettingDescription = value; return this; } public String getSettingName() { return SettingName; } public SO_HistoryCustomSetting setSettingName(String value) { this.SettingName = value; return this; } public BigDecimal getDisplayOrder() { return DisplayOrder; } public SO_HistoryCustomSetting setDisplayOrder(BigDecimal value) { this.DisplayOrder = value; return this; } public Short getCellType() { return CellType; } public SO_HistoryCustomSetting setCellType(Short value) { this.CellType = value; return this; } public String getScriptFormatCell() { return ScriptFormatCell; } public SO_HistoryCustomSetting setScriptFormatCell(String value) { this.ScriptFormatCell = value; return this; } public String getScriptButtonClicked() { return ScriptButtonClicked; } public SO_HistoryCustomSetting setScriptButtonClicked(String value) { this.ScriptButtonClicked = value; return this; } public String getScriptReadData() { return ScriptReadData; } public SO_HistoryCustomSetting setScriptReadData(String value) { this.ScriptReadData = value; return this; } public String getGridHandlerCode() { return GridHandlerCode; } public SO_HistoryCustomSetting setGridHandlerCode(String value) { this.GridHandlerCode = value; return this; } public UUID getSyPluginRecID() { return SY_Plugin_RecID; } public SO_HistoryCustomSetting setSyPluginRecID(UUID value) { this.SY_Plugin_RecID = value; return this; } } public static class SO_HistoryCustomSettingValues { @Required() public String SettingValueID = null; @References(SO_HistoryCustomSetting.class) @Required() public String SettingID = null; @References(SO_History.class) @Required() public String HistoryID = null; public String Contents = null; @Required() public Date LastSavedDateTime = null; public String getSettingValueID() { return SettingValueID; } public SO_HistoryCustomSettingValues setSettingValueID(String value) { this.SettingValueID = value; return this; } public String getSettingID() { return SettingID; } public SO_HistoryCustomSettingValues setSettingID(String value) { this.SettingID = value; return this; } public String getHistoryID() { return HistoryID; } public SO_HistoryCustomSettingValues setHistoryID(String value) { this.HistoryID = value; return this; } public String getContents() { return Contents; } public SO_HistoryCustomSettingValues setContents(String value) { this.Contents = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public SO_HistoryCustomSettingValues setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } } public static class SO_HistoryFreightItems { @Required() public String RecID = null; @Required() public String Reference = null; @Required() public String SO_History_InvoiceHistoryID = null; @Required() public String FR_CarrierFreightDescriptions_RecID = null; @Required() public Date LastSavedDateTime = null; @Required() public BigDecimal NumberItems = null; @Required() public BigDecimal ItemWeight = null; @Required() public BigDecimal ItemCubic = null; @Required() public BigDecimal ItemLength = null; @Required() public BigDecimal ItemWidth = null; @Required() public BigDecimal ItemHeight = null; @Required() public String SO_HistoryConsignmentNotes_RecID = null; public String getRecID() { return RecID; } public SO_HistoryFreightItems setRecID(String value) { this.RecID = value; return this; } public String getReference() { return Reference; } public SO_HistoryFreightItems setReference(String value) { this.Reference = value; return this; } public String getSoHistoryInvoiceHistoryID() { return SO_History_InvoiceHistoryID; } public SO_HistoryFreightItems setSoHistoryInvoiceHistoryID(String value) { this.SO_History_InvoiceHistoryID = value; return this; } public String getFrCarrierFreightDescriptionsRecID() { return FR_CarrierFreightDescriptions_RecID; } public SO_HistoryFreightItems setFrCarrierFreightDescriptionsRecID(String value) { this.FR_CarrierFreightDescriptions_RecID = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public SO_HistoryFreightItems setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public BigDecimal getNumberItems() { return NumberItems; } public SO_HistoryFreightItems setNumberItems(BigDecimal value) { this.NumberItems = value; return this; } public BigDecimal getItemWeight() { return ItemWeight; } public SO_HistoryFreightItems setItemWeight(BigDecimal value) { this.ItemWeight = value; return this; } public BigDecimal getItemCubic() { return ItemCubic; } public SO_HistoryFreightItems setItemCubic(BigDecimal value) { this.ItemCubic = value; return this; } public BigDecimal getItemLength() { return ItemLength; } public SO_HistoryFreightItems setItemLength(BigDecimal value) { this.ItemLength = value; return this; } public BigDecimal getItemWidth() { return ItemWidth; } public SO_HistoryFreightItems setItemWidth(BigDecimal value) { this.ItemWidth = value; return this; } public BigDecimal getItemHeight() { return ItemHeight; } public SO_HistoryFreightItems setItemHeight(BigDecimal value) { this.ItemHeight = value; return this; } public String getSoHistoryConsignmentNotesRecID() { return SO_HistoryConsignmentNotes_RecID; } public SO_HistoryFreightItems setSoHistoryConsignmentNotesRecID(String value) { this.SO_HistoryConsignmentNotes_RecID = value; return this; } } public static class SO_Incidents { @Required() public String RecID = null; @Required() public String IncidentNo = null; @Required() public String DebtorID = null; public String ContactName = null; @Required() public String InvoiceID = null; @Required() public String InvoiceHistoryID = null; public String InvoiceLineID = null; @References(SO_IncidentTypes.class) @Required() public String SO_IncidentTypes_RecID = null; public String Details = null; @Required() public Date CreatedDateTime = null; @Required() public String CreatedByStaffID = null; @Required() public Date LastSavedDateTime = null; @Required() public String LastSavedByStaffID = null; public Date IncidentDate = null; public String getRecID() { return RecID; } public SO_Incidents setRecID(String value) { this.RecID = value; return this; } public String getIncidentNo() { return IncidentNo; } public SO_Incidents setIncidentNo(String value) { this.IncidentNo = value; return this; } public String getDebtorID() { return DebtorID; } public SO_Incidents setDebtorID(String value) { this.DebtorID = value; return this; } public String getContactName() { return ContactName; } public SO_Incidents setContactName(String value) { this.ContactName = value; return this; } public String getInvoiceID() { return InvoiceID; } public SO_Incidents setInvoiceID(String value) { this.InvoiceID = value; return this; } public String getInvoiceHistoryID() { return InvoiceHistoryID; } public SO_Incidents setInvoiceHistoryID(String value) { this.InvoiceHistoryID = value; return this; } public String getInvoiceLineID() { return InvoiceLineID; } public SO_Incidents setInvoiceLineID(String value) { this.InvoiceLineID = value; return this; } public String getSoIncidentTypesRecID() { return SO_IncidentTypes_RecID; } public SO_Incidents setSoIncidentTypesRecID(String value) { this.SO_IncidentTypes_RecID = value; return this; } public String getDetails() { return Details; } public SO_Incidents setDetails(String value) { this.Details = value; return this; } public Date getCreatedDateTime() { return CreatedDateTime; } public SO_Incidents setCreatedDateTime(Date value) { this.CreatedDateTime = value; return this; } public String getCreatedByStaffID() { return CreatedByStaffID; } public SO_Incidents setCreatedByStaffID(String value) { this.CreatedByStaffID = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public SO_Incidents setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public String getLastSavedByStaffID() { return LastSavedByStaffID; } public SO_Incidents setLastSavedByStaffID(String value) { this.LastSavedByStaffID = value; return this; } public Date getIncidentDate() { return IncidentDate; } public SO_Incidents setIncidentDate(Date value) { this.IncidentDate = value; return this; } } public static class SO_IncidentTypes { @Required() public String RecID = null; public Integer DisplayOrder = null; public String Description = null; public Boolean DefaultType = null; @Required() public Date CreatedDateTime = null; @Required() public String CreatedByStaffID = null; @Required() public Date LastSavedDateTime = null; @Required() public String LastSavedByStaffID = null; public String getRecID() { return RecID; } public SO_IncidentTypes setRecID(String value) { this.RecID = value; return this; } public Integer getDisplayOrder() { return DisplayOrder; } public SO_IncidentTypes setDisplayOrder(Integer value) { this.DisplayOrder = value; return this; } public String getDescription() { return Description; } public SO_IncidentTypes setDescription(String value) { this.Description = value; return this; } public Boolean isDefaultType() { return DefaultType; } public SO_IncidentTypes setDefaultType(Boolean value) { this.DefaultType = value; return this; } public Date getCreatedDateTime() { return CreatedDateTime; } public SO_IncidentTypes setCreatedDateTime(Date value) { this.CreatedDateTime = value; return this; } public String getCreatedByStaffID() { return CreatedByStaffID; } public SO_IncidentTypes setCreatedByStaffID(String value) { this.CreatedByStaffID = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public SO_IncidentTypes setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public String getLastSavedByStaffID() { return LastSavedByStaffID; } public SO_IncidentTypes setLastSavedByStaffID(String value) { this.LastSavedByStaffID = value; return this; } } public static class SO_LineCustomFields { @Required() public String FieldID = null; @Required() public String SettingName = null; public String SettingDescription = null; public Integer CellType = null; public String FieldParameter = null; @References(SY_Plugin.class) @Required() public UUID SY_Plugin_RecID = null; @Required() public Date LastSavedDateTime = null; public Integer DisplayOrder = null; public String getFieldID() { return FieldID; } public SO_LineCustomFields setFieldID(String value) { this.FieldID = value; return this; } public String getSettingName() { return SettingName; } public SO_LineCustomFields setSettingName(String value) { this.SettingName = value; return this; } public String getSettingDescription() { return SettingDescription; } public SO_LineCustomFields setSettingDescription(String value) { this.SettingDescription = value; return this; } public Integer getCellType() { return CellType; } public SO_LineCustomFields setCellType(Integer value) { this.CellType = value; return this; } public String getFieldParameter() { return FieldParameter; } public SO_LineCustomFields setFieldParameter(String value) { this.FieldParameter = value; return this; } public UUID getSyPluginRecID() { return SY_Plugin_RecID; } public SO_LineCustomFields setSyPluginRecID(UUID value) { this.SY_Plugin_RecID = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public SO_LineCustomFields setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Integer getDisplayOrder() { return DisplayOrder; } public SO_LineCustomFields setDisplayOrder(Integer value) { this.DisplayOrder = value; return this; } } public static class SO_LineCustomValues { @Required() public String RecID = null; @References(SO_Lines.class) @Required() public String InvoiceLineID = null; @References(SO_LineCustomFields.class) @Required() public String FieldID = null; public String Contents = null; @Required() public Date LastSavedDateTime = null; public String getRecID() { return RecID; } public SO_LineCustomValues setRecID(String value) { this.RecID = value; return this; } public String getInvoiceLineID() { return InvoiceLineID; } public SO_LineCustomValues setInvoiceLineID(String value) { this.InvoiceLineID = value; return this; } public String getFieldID() { return FieldID; } public SO_LineCustomValues setFieldID(String value) { this.FieldID = value; return this; } public String getContents() { return Contents; } public SO_LineCustomValues setContents(String value) { this.Contents = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public SO_LineCustomValues setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } } public static class SO_LineDetails { @Required() public String DetailsLineID = null; @Required() public String InvoiceHistoryID = null; @References(SO_Lines.class) @Required() public String InvoiceLineID = null; @References(IN_SOH.class) public String SOHID = null; public BigDecimal Cost = null; public BigDecimal SpecialPrice = null; public BigDecimal Quantity = null; public BigDecimal TaxPaid = null; public String SerialNo = null; public Date ExpiryDate = null; public String BinLocation = null; public String getDetailsLineID() { return DetailsLineID; } public SO_LineDetails setDetailsLineID(String value) { this.DetailsLineID = value; return this; } public String getInvoiceHistoryID() { return InvoiceHistoryID; } public SO_LineDetails setInvoiceHistoryID(String value) { this.InvoiceHistoryID = value; return this; } public String getInvoiceLineID() { return InvoiceLineID; } public SO_LineDetails setInvoiceLineID(String value) { this.InvoiceLineID = value; return this; } public String getSohid() { return SOHID; } public SO_LineDetails setSohid(String value) { this.SOHID = value; return this; } public BigDecimal getCost() { return Cost; } public SO_LineDetails setCost(BigDecimal value) { this.Cost = value; return this; } public BigDecimal getSpecialPrice() { return SpecialPrice; } public SO_LineDetails setSpecialPrice(BigDecimal value) { this.SpecialPrice = value; return this; } public BigDecimal getQuantity() { return Quantity; } public SO_LineDetails setQuantity(BigDecimal value) { this.Quantity = value; return this; } public BigDecimal getTaxPaid() { return TaxPaid; } public SO_LineDetails setTaxPaid(BigDecimal value) { this.TaxPaid = value; return this; } public String getSerialNo() { return SerialNo; } public SO_LineDetails setSerialNo(String value) { this.SerialNo = value; return this; } public Date getExpiryDate() { return ExpiryDate; } public SO_LineDetails setExpiryDate(Date value) { this.ExpiryDate = value; return this; } public String getBinLocation() { return BinLocation; } public SO_LineDetails setBinLocation(String value) { this.BinLocation = value; return this; } } public static class SO_Lines { @Required() public String InvoiceLineID = null; @References(SO_History.class) @Required() public String InvoiceHistoryID = null; public Short GroupNo = null; public Short LineNum = null; public Boolean CommentLine = null; public String PartNo = null; public String Description = null; public Short PhysicalItem = null; public BigDecimal ItemWeight = null; public BigDecimal ItemCubic = null; @References(TX_Main.class) public String TaxID = null; public String ClassDescription = null; public String Cat1Description = null; public String Cat2Description = null; public String Cat3Description = null; public String Units = null; public BigDecimal CostIn = null; public BigDecimal DefaultPrice = null; public BigDecimal ItemPrice = null; public BigDecimal Discount = null; public BigDecimal InvoicePrice = null; public BigDecimal RRPPrice = null; public BigDecimal TaxToCharge = null; public BigDecimal TaxToPay = null; public BigDecimal CurrentLineTotal = null; public BigDecimal QuantityOrdered = null; public BigDecimal QuantityPrevDel = null; public BigDecimal QuantityThisDel = null; public BigDecimal QuantityBackOrd = null; public String HistoryText_Comment = null; public Boolean Discountable = null; public Boolean TaxInc = null; public BigDecimal DirectTax = null; public Short DecimalPlaces = null; public BigDecimal MinimumGP = null; @References(GL_Ledger.class) public String DebitLedger = null; @References(GL_Ledger.class) public String CreditLedger = null; public Boolean NonStock = null; @References(IN_Main.class) public String InventoryID = null; public Boolean UseSerialNo = null; public Boolean Backorderable = null; public Boolean Picked = null; public BigDecimal TaxPaid = null; public BigDecimal TaxRate = null; public Boolean UsingSpecialPrice = null; public BigDecimal EstBOValue = null; public BigDecimal ItemTaxToCharge = null; public BigDecimal ItemTaxToPay = null; public String LineLinkID = null; @Required() public Short KittingStatus = null; public BigDecimal KittingUnits = null; public String JobConnectorID = null; public Short KitStyle = null; public BigDecimal DiscountPercentage = null; public BigDecimal SalesmanCost = null; public BigDecimal LineCost = null; public String OrigInvoiceNo = null; public BigDecimal ItemPriceIncGST = null; public BigDecimal ItemPriceUnDiscounted = null; public BigDecimal DemandQuantity = null; @References(GL_Ledger.class) public String NonStockLedgerSalesAccID = null; @References(SO_Lines.class) public String KitLineID = null; public String JobCostNo = null; @Required() public Boolean SellPriceIncTax = null; public Short JobInvoiceItem = null; public BigDecimal QuantityPrevDemand = null; public String JobID = null; @References(JB_JobCostCentres.class) public String CostCentreID = null; @References(JB_JobStages.class) public String StageID = null; public BigDecimal UserDefinedFloat1 = null; public BigDecimal UserDefinedFloat2 = null; public BigDecimal UserDefinedFloat3 = null; public Date ForwardOrderDate = null; public Date ScheduledDate = null; @Required() public Boolean DeliverStock = null; @Required() public Boolean FixSellPrice = null; public Boolean TypeKitRounding = null; public String EDIStoreLocationCode = null; public String EDIDCLocationCode = null; @References(SM_Parts.class) public String SM_Parts_RecID = null; @References(SM_Labour.class) public String SM_Labour_RecID = null; @References(IN_UnitOfMeasure.class) public UUID IN_UnitOfMeasure_RecID = null; public String getInvoiceLineID() { return InvoiceLineID; } public SO_Lines setInvoiceLineID(String value) { this.InvoiceLineID = value; return this; } public String getInvoiceHistoryID() { return InvoiceHistoryID; } public SO_Lines setInvoiceHistoryID(String value) { this.InvoiceHistoryID = value; return this; } public Short getGroupNo() { return GroupNo; } public SO_Lines setGroupNo(Short value) { this.GroupNo = value; return this; } public Short getLineNum() { return LineNum; } public SO_Lines setLineNum(Short value) { this.LineNum = value; return this; } public Boolean isCommentLine() { return CommentLine; } public SO_Lines setCommentLine(Boolean value) { this.CommentLine = value; return this; } public String getPartNo() { return PartNo; } public SO_Lines setPartNo(String value) { this.PartNo = value; return this; } public String getDescription() { return Description; } public SO_Lines setDescription(String value) { this.Description = value; return this; } public Short getPhysicalItem() { return PhysicalItem; } public SO_Lines setPhysicalItem(Short value) { this.PhysicalItem = value; return this; } public BigDecimal getItemWeight() { return ItemWeight; } public SO_Lines setItemWeight(BigDecimal value) { this.ItemWeight = value; return this; } public BigDecimal getItemCubic() { return ItemCubic; } public SO_Lines setItemCubic(BigDecimal value) { this.ItemCubic = value; return this; } public String getTaxID() { return TaxID; } public SO_Lines setTaxID(String value) { this.TaxID = value; return this; } public String getClassDescription() { return ClassDescription; } public SO_Lines setClassDescription(String value) { this.ClassDescription = value; return this; } public String getCat1Description() { return Cat1Description; } public SO_Lines setCat1Description(String value) { this.Cat1Description = value; return this; } public String getCat2Description() { return Cat2Description; } public SO_Lines setCat2Description(String value) { this.Cat2Description = value; return this; } public String getCat3Description() { return Cat3Description; } public SO_Lines setCat3Description(String value) { this.Cat3Description = value; return this; } public String getUnits() { return Units; } public SO_Lines setUnits(String value) { this.Units = value; return this; } public BigDecimal getCostIn() { return CostIn; } public SO_Lines setCostIn(BigDecimal value) { this.CostIn = value; return this; } public BigDecimal getDefaultPrice() { return DefaultPrice; } public SO_Lines setDefaultPrice(BigDecimal value) { this.DefaultPrice = value; return this; } public BigDecimal getItemPrice() { return ItemPrice; } public SO_Lines setItemPrice(BigDecimal value) { this.ItemPrice = value; return this; } public BigDecimal getDiscount() { return Discount; } public SO_Lines setDiscount(BigDecimal value) { this.Discount = value; return this; } public BigDecimal getInvoicePrice() { return InvoicePrice; } public SO_Lines setInvoicePrice(BigDecimal value) { this.InvoicePrice = value; return this; } public BigDecimal getRrpPrice() { return RRPPrice; } public SO_Lines setRrpPrice(BigDecimal value) { this.RRPPrice = value; return this; } public BigDecimal getTaxToCharge() { return TaxToCharge; } public SO_Lines setTaxToCharge(BigDecimal value) { this.TaxToCharge = value; return this; } public BigDecimal getTaxToPay() { return TaxToPay; } public SO_Lines setTaxToPay(BigDecimal value) { this.TaxToPay = value; return this; } public BigDecimal getCurrentLineTotal() { return CurrentLineTotal; } public SO_Lines setCurrentLineTotal(BigDecimal value) { this.CurrentLineTotal = value; return this; } public BigDecimal getQuantityOrdered() { return QuantityOrdered; } public SO_Lines setQuantityOrdered(BigDecimal value) { this.QuantityOrdered = value; return this; } public BigDecimal getQuantityPrevDel() { return QuantityPrevDel; } public SO_Lines setQuantityPrevDel(BigDecimal value) { this.QuantityPrevDel = value; return this; } public BigDecimal getQuantityThisDel() { return QuantityThisDel; } public SO_Lines setQuantityThisDel(BigDecimal value) { this.QuantityThisDel = value; return this; } public BigDecimal getQuantityBackOrd() { return QuantityBackOrd; } public SO_Lines setQuantityBackOrd(BigDecimal value) { this.QuantityBackOrd = value; return this; } public String getHistoryTextComment() { return HistoryText_Comment; } public SO_Lines setHistoryTextComment(String value) { this.HistoryText_Comment = value; return this; } public Boolean isDiscountable() { return Discountable; } public SO_Lines setDiscountable(Boolean value) { this.Discountable = value; return this; } public Boolean isTaxInc() { return TaxInc; } public SO_Lines setTaxInc(Boolean value) { this.TaxInc = value; return this; } public BigDecimal getDirectTax() { return DirectTax; } public SO_Lines setDirectTax(BigDecimal value) { this.DirectTax = value; return this; } public Short getDecimalPlaces() { return DecimalPlaces; } public SO_Lines setDecimalPlaces(Short value) { this.DecimalPlaces = value; return this; } public BigDecimal getMinimumGP() { return MinimumGP; } public SO_Lines setMinimumGP(BigDecimal value) { this.MinimumGP = value; return this; } public String getDebitLedger() { return DebitLedger; } public SO_Lines setDebitLedger(String value) { this.DebitLedger = value; return this; } public String getCreditLedger() { return CreditLedger; } public SO_Lines setCreditLedger(String value) { this.CreditLedger = value; return this; } public Boolean isNonStock() { return NonStock; } public SO_Lines setNonStock(Boolean value) { this.NonStock = value; return this; } public String getInventoryID() { return InventoryID; } public SO_Lines setInventoryID(String value) { this.InventoryID = value; return this; } public Boolean isUseSerialNo() { return UseSerialNo; } public SO_Lines setUseSerialNo(Boolean value) { this.UseSerialNo = value; return this; } public Boolean isBackorderable() { return Backorderable; } public SO_Lines setBackorderable(Boolean value) { this.Backorderable = value; return this; } public Boolean isPicked() { return Picked; } public SO_Lines setPicked(Boolean value) { this.Picked = value; return this; } public BigDecimal getTaxPaid() { return TaxPaid; } public SO_Lines setTaxPaid(BigDecimal value) { this.TaxPaid = value; return this; } public BigDecimal getTaxRate() { return TaxRate; } public SO_Lines setTaxRate(BigDecimal value) { this.TaxRate = value; return this; } public Boolean isUsingSpecialPrice() { return UsingSpecialPrice; } public SO_Lines setUsingSpecialPrice(Boolean value) { this.UsingSpecialPrice = value; return this; } public BigDecimal getEstBOValue() { return EstBOValue; } public SO_Lines setEstBOValue(BigDecimal value) { this.EstBOValue = value; return this; } public BigDecimal getItemTaxToCharge() { return ItemTaxToCharge; } public SO_Lines setItemTaxToCharge(BigDecimal value) { this.ItemTaxToCharge = value; return this; } public BigDecimal getItemTaxToPay() { return ItemTaxToPay; } public SO_Lines setItemTaxToPay(BigDecimal value) { this.ItemTaxToPay = value; return this; } public String getLineLinkID() { return LineLinkID; } public SO_Lines setLineLinkID(String value) { this.LineLinkID = value; return this; } public Short getKittingStatus() { return KittingStatus; } public SO_Lines setKittingStatus(Short value) { this.KittingStatus = value; return this; } public BigDecimal getKittingUnits() { return KittingUnits; } public SO_Lines setKittingUnits(BigDecimal value) { this.KittingUnits = value; return this; } public String getJobConnectorID() { return JobConnectorID; } public SO_Lines setJobConnectorID(String value) { this.JobConnectorID = value; return this; } public Short getKitStyle() { return KitStyle; } public SO_Lines setKitStyle(Short value) { this.KitStyle = value; return this; } public BigDecimal getDiscountPercentage() { return DiscountPercentage; } public SO_Lines setDiscountPercentage(BigDecimal value) { this.DiscountPercentage = value; return this; } public BigDecimal getSalesmanCost() { return SalesmanCost; } public SO_Lines setSalesmanCost(BigDecimal value) { this.SalesmanCost = value; return this; } public BigDecimal getLineCost() { return LineCost; } public SO_Lines setLineCost(BigDecimal value) { this.LineCost = value; return this; } public String getOrigInvoiceNo() { return OrigInvoiceNo; } public SO_Lines setOrigInvoiceNo(String value) { this.OrigInvoiceNo = value; return this; } public BigDecimal getItemPriceIncGST() { return ItemPriceIncGST; } public SO_Lines setItemPriceIncGST(BigDecimal value) { this.ItemPriceIncGST = value; return this; } public BigDecimal getItemPriceUnDiscounted() { return ItemPriceUnDiscounted; } public SO_Lines setItemPriceUnDiscounted(BigDecimal value) { this.ItemPriceUnDiscounted = value; return this; } public BigDecimal getDemandQuantity() { return DemandQuantity; } public SO_Lines setDemandQuantity(BigDecimal value) { this.DemandQuantity = value; return this; } public String getNonStockLedgerSalesAccID() { return NonStockLedgerSalesAccID; } public SO_Lines setNonStockLedgerSalesAccID(String value) { this.NonStockLedgerSalesAccID = value; return this; } public String getKitLineID() { return KitLineID; } public SO_Lines setKitLineID(String value) { this.KitLineID = value; return this; } public String getJobCostNo() { return JobCostNo; } public SO_Lines setJobCostNo(String value) { this.JobCostNo = value; return this; } public Boolean isSellPriceIncTax() { return SellPriceIncTax; } public SO_Lines setSellPriceIncTax(Boolean value) { this.SellPriceIncTax = value; return this; } public Short getJobInvoiceItem() { return JobInvoiceItem; } public SO_Lines setJobInvoiceItem(Short value) { this.JobInvoiceItem = value; return this; } public BigDecimal getQuantityPrevDemand() { return QuantityPrevDemand; } public SO_Lines setQuantityPrevDemand(BigDecimal value) { this.QuantityPrevDemand = value; return this; } public String getJobID() { return JobID; } public SO_Lines setJobID(String value) { this.JobID = value; return this; } public String getCostCentreID() { return CostCentreID; } public SO_Lines setCostCentreID(String value) { this.CostCentreID = value; return this; } public String getStageID() { return StageID; } public SO_Lines setStageID(String value) { this.StageID = value; return this; } public BigDecimal getUserDefinedFloat1() { return UserDefinedFloat1; } public SO_Lines setUserDefinedFloat1(BigDecimal value) { this.UserDefinedFloat1 = value; return this; } public BigDecimal getUserDefinedFloat2() { return UserDefinedFloat2; } public SO_Lines setUserDefinedFloat2(BigDecimal value) { this.UserDefinedFloat2 = value; return this; } public BigDecimal getUserDefinedFloat3() { return UserDefinedFloat3; } public SO_Lines setUserDefinedFloat3(BigDecimal value) { this.UserDefinedFloat3 = value; return this; } public Date getForwardOrderDate() { return ForwardOrderDate; } public SO_Lines setForwardOrderDate(Date value) { this.ForwardOrderDate = value; return this; } public Date getScheduledDate() { return ScheduledDate; } public SO_Lines setScheduledDate(Date value) { this.ScheduledDate = value; return this; } public Boolean isDeliverStock() { return DeliverStock; } public SO_Lines setDeliverStock(Boolean value) { this.DeliverStock = value; return this; } public Boolean isFixSellPrice() { return FixSellPrice; } public SO_Lines setFixSellPrice(Boolean value) { this.FixSellPrice = value; return this; } public Boolean isTypeKitRounding() { return TypeKitRounding; } public SO_Lines setTypeKitRounding(Boolean value) { this.TypeKitRounding = value; return this; } public String getEdiStoreLocationCode() { return EDIStoreLocationCode; } public SO_Lines setEdiStoreLocationCode(String value) { this.EDIStoreLocationCode = value; return this; } public String getEdidcLocationCode() { return EDIDCLocationCode; } public SO_Lines setEdidcLocationCode(String value) { this.EDIDCLocationCode = value; return this; } public String getSmPartsRecID() { return SM_Parts_RecID; } public SO_Lines setSmPartsRecID(String value) { this.SM_Parts_RecID = value; return this; } public String getSmLabourRecID() { return SM_Labour_RecID; } public SO_Lines setSmLabourRecID(String value) { this.SM_Labour_RecID = value; return this; } public UUID getInUnitOfMeasureRecID() { return IN_UnitOfMeasure_RecID; } public SO_Lines setInUnitOfMeasureRecID(UUID value) { this.IN_UnitOfMeasure_RecID = value; return this; } } public static class SO_LineSerials { @Required() public String RecID = null; @References(SO_Lines.class) @Required() public String SOLineID = null; @Required() public String InvoiceID = null; @Required() public String HistoryID = null; @Required() public Short LineNum = null; public String SerialNo = null; public BigDecimal Quantity = null; public String getRecID() { return RecID; } public SO_LineSerials setRecID(String value) { this.RecID = value; return this; } public String getSoLineID() { return SOLineID; } public SO_LineSerials setSoLineID(String value) { this.SOLineID = value; return this; } public String getInvoiceID() { return InvoiceID; } public SO_LineSerials setInvoiceID(String value) { this.InvoiceID = value; return this; } public String getHistoryID() { return HistoryID; } public SO_LineSerials setHistoryID(String value) { this.HistoryID = value; return this; } public Short getLineNum() { return LineNum; } public SO_LineSerials setLineNum(Short value) { this.LineNum = value; return this; } public String getSerialNo() { return SerialNo; } public SO_LineSerials setSerialNo(String value) { this.SerialNo = value; return this; } public BigDecimal getQuantity() { return Quantity; } public SO_LineSerials setQuantity(BigDecimal value) { this.Quantity = value; return this; } } public static class SO_LineShippingLabels { @Required() public String RecID = null; @Required() public String SO_Lines_InvoiceLineID = null; @Required() public BigDecimal Quantity = null; public String SSCC_Number = null; public String BatchNo = null; public Date UseByDate = null; public String Reference = null; @Required() public Integer LabelNumber = null; public String SpareString1 = null; public String SpareString2 = null; public String SpareString3 = null; public BigDecimal SpareNumeric1 = null; public BigDecimal SpareNumeric2 = null; public BigDecimal SpareNumeric3 = null; public Date SpareDate1 = null; public Date SpareDate2 = null; public Date SpareDate3 = null; @Required() public Date LastSavedDateTime = null; public String getRecID() { return RecID; } public SO_LineShippingLabels setRecID(String value) { this.RecID = value; return this; } public String getSoLinesInvoiceLineID() { return SO_Lines_InvoiceLineID; } public SO_LineShippingLabels setSoLinesInvoiceLineID(String value) { this.SO_Lines_InvoiceLineID = value; return this; } public BigDecimal getQuantity() { return Quantity; } public SO_LineShippingLabels setQuantity(BigDecimal value) { this.Quantity = value; return this; } public String getSsccNumber() { return SSCC_Number; } public SO_LineShippingLabels setSsccNumber(String value) { this.SSCC_Number = value; return this; } public String getBatchNo() { return BatchNo; } public SO_LineShippingLabels setBatchNo(String value) { this.BatchNo = value; return this; } public Date getUseByDate() { return UseByDate; } public SO_LineShippingLabels setUseByDate(Date value) { this.UseByDate = value; return this; } public String getReference() { return Reference; } public SO_LineShippingLabels setReference(String value) { this.Reference = value; return this; } public Integer getLabelNumber() { return LabelNumber; } public SO_LineShippingLabels setLabelNumber(Integer value) { this.LabelNumber = value; return this; } public String getSpareString1() { return SpareString1; } public SO_LineShippingLabels setSpareString1(String value) { this.SpareString1 = value; return this; } public String getSpareString2() { return SpareString2; } public SO_LineShippingLabels setSpareString2(String value) { this.SpareString2 = value; return this; } public String getSpareString3() { return SpareString3; } public SO_LineShippingLabels setSpareString3(String value) { this.SpareString3 = value; return this; } public BigDecimal getSpareNumeric1() { return SpareNumeric1; } public SO_LineShippingLabels setSpareNumeric1(BigDecimal value) { this.SpareNumeric1 = value; return this; } public BigDecimal getSpareNumeric2() { return SpareNumeric2; } public SO_LineShippingLabels setSpareNumeric2(BigDecimal value) { this.SpareNumeric2 = value; return this; } public BigDecimal getSpareNumeric3() { return SpareNumeric3; } public SO_LineShippingLabels setSpareNumeric3(BigDecimal value) { this.SpareNumeric3 = value; return this; } public Date getSpareDate1() { return SpareDate1; } public SO_LineShippingLabels setSpareDate1(Date value) { this.SpareDate1 = value; return this; } public Date getSpareDate2() { return SpareDate2; } public SO_LineShippingLabels setSpareDate2(Date value) { this.SpareDate2 = value; return this; } public Date getSpareDate3() { return SpareDate3; } public SO_LineShippingLabels setSpareDate3(Date value) { this.SpareDate3 = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public SO_LineShippingLabels setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } } public static class SO_Main { @Required() public String InvoiceID = null; @Required() public Date LastSavedDateTime = null; @References(DB_Main.class) @Required() public String DebtorID = null; @References(HR_Staff.class) public String StaffID = null; @Required() public String InvoiceNo = null; @Required() public Date InvoiceInitDate = null; @Required() public Date InvoiceLastDate = null; public String OrderNo = null; public String TaxExemptNo = null; @Required() public Boolean WholeSaleInvoice = null; public BigDecimal InvoiceTotal = null; public Short CurrentHistoryNo = null; public Short Status = null; @Required() public Short BillWhenComplete = null; @Required() public Boolean CreditNote = null; public Short InvoiceType = null; public String GroupSupplierID = null; @Required() public Boolean GroupOrdered = null; @References(IN_Logical.class) @Required() public String IN_LogicalID = null; @References(SY_Branch.class) @Required() public String BranchID = null; public String SOReference = null; @References(JB_Main.class) public String JobCostID = null; @References(DB_Main.class) @Required() public String ParentDebtorID = null; @Required() public Short BackOrderMode = null; public String DebtorContactName = null; public Integer DocType = null; @Required() public Boolean GSTInvoice = null; public Date ExpectedDeliveryDate = null; public String SourceQuoteHistoryID = null; @References(IN_PriceSchemes.class) @Required() public String PriceSchemeID = null; @References(SO_CreditReasons.class) public String CreditReasonID = null; @Required() public Boolean CreditIntoStock = null; public String getInvoiceID() { return InvoiceID; } public SO_Main setInvoiceID(String value) { this.InvoiceID = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public SO_Main setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public String getDebtorID() { return DebtorID; } public SO_Main setDebtorID(String value) { this.DebtorID = value; return this; } public String getStaffID() { return StaffID; } public SO_Main setStaffID(String value) { this.StaffID = value; return this; } public String getInvoiceNo() { return InvoiceNo; } public SO_Main setInvoiceNo(String value) { this.InvoiceNo = value; return this; } public Date getInvoiceInitDate() { return InvoiceInitDate; } public SO_Main setInvoiceInitDate(Date value) { this.InvoiceInitDate = value; return this; } public Date getInvoiceLastDate() { return InvoiceLastDate; } public SO_Main setInvoiceLastDate(Date value) { this.InvoiceLastDate = value; return this; } public String getOrderNo() { return OrderNo; } public SO_Main setOrderNo(String value) { this.OrderNo = value; return this; } public String getTaxExemptNo() { return TaxExemptNo; } public SO_Main setTaxExemptNo(String value) { this.TaxExemptNo = value; return this; } public Boolean isWholeSaleInvoice() { return WholeSaleInvoice; } public SO_Main setWholeSaleInvoice(Boolean value) { this.WholeSaleInvoice = value; return this; } public BigDecimal getInvoiceTotal() { return InvoiceTotal; } public SO_Main setInvoiceTotal(BigDecimal value) { this.InvoiceTotal = value; return this; } public Short getCurrentHistoryNo() { return CurrentHistoryNo; } public SO_Main setCurrentHistoryNo(Short value) { this.CurrentHistoryNo = value; return this; } public Short getStatus() { return Status; } public SO_Main setStatus(Short value) { this.Status = value; return this; } public Short getBillWhenComplete() { return BillWhenComplete; } public SO_Main setBillWhenComplete(Short value) { this.BillWhenComplete = value; return this; } public Boolean isCreditNote() { return CreditNote; } public SO_Main setCreditNote(Boolean value) { this.CreditNote = value; return this; } public Short getInvoiceType() { return InvoiceType; } public SO_Main setInvoiceType(Short value) { this.InvoiceType = value; return this; } public String getGroupSupplierID() { return GroupSupplierID; } public SO_Main setGroupSupplierID(String value) { this.GroupSupplierID = value; return this; } public Boolean isGroupOrdered() { return GroupOrdered; } public SO_Main setGroupOrdered(Boolean value) { this.GroupOrdered = value; return this; } public String getInLogicalID() { return IN_LogicalID; } public SO_Main setInLogicalID(String value) { this.IN_LogicalID = value; return this; } public String getBranchID() { return BranchID; } public SO_Main setBranchID(String value) { this.BranchID = value; return this; } public String getSoReference() { return SOReference; } public SO_Main setSoReference(String value) { this.SOReference = value; return this; } public String getJobCostID() { return JobCostID; } public SO_Main setJobCostID(String value) { this.JobCostID = value; return this; } public String getParentDebtorID() { return ParentDebtorID; } public SO_Main setParentDebtorID(String value) { this.ParentDebtorID = value; return this; } public Short getBackOrderMode() { return BackOrderMode; } public SO_Main setBackOrderMode(Short value) { this.BackOrderMode = value; return this; } public String getDebtorContactName() { return DebtorContactName; } public SO_Main setDebtorContactName(String value) { this.DebtorContactName = value; return this; } public Integer getDocType() { return DocType; } public SO_Main setDocType(Integer value) { this.DocType = value; return this; } public Boolean isGstInvoice() { return GSTInvoice; } public SO_Main setGstInvoice(Boolean value) { this.GSTInvoice = value; return this; } public Date getExpectedDeliveryDate() { return ExpectedDeliveryDate; } public SO_Main setExpectedDeliveryDate(Date value) { this.ExpectedDeliveryDate = value; return this; } public String getSourceQuoteHistoryID() { return SourceQuoteHistoryID; } public SO_Main setSourceQuoteHistoryID(String value) { this.SourceQuoteHistoryID = value; return this; } public String getPriceSchemeID() { return PriceSchemeID; } public SO_Main setPriceSchemeID(String value) { this.PriceSchemeID = value; return this; } public String getCreditReasonID() { return CreditReasonID; } public SO_Main setCreditReasonID(String value) { this.CreditReasonID = value; return this; } public Boolean isCreditIntoStock() { return CreditIntoStock; } public SO_Main setCreditIntoStock(Boolean value) { this.CreditIntoStock = value; return this; } } public static class SO_Notes { @Required() public String RecID = null; @Required() public String InvoiceID = null; @Required() public String NoteTypeID = null; @Required() public Date LastSavedDateTime = null; @Required() public String LastSavedByStaffID = null; public String NoteText = null; @Required() public Integer ItemNo = null; public String getRecID() { return RecID; } public SO_Notes setRecID(String value) { this.RecID = value; return this; } public String getInvoiceID() { return InvoiceID; } public SO_Notes setInvoiceID(String value) { this.InvoiceID = value; return this; } public String getNoteTypeID() { return NoteTypeID; } public SO_Notes setNoteTypeID(String value) { this.NoteTypeID = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public SO_Notes setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public String getLastSavedByStaffID() { return LastSavedByStaffID; } public SO_Notes setLastSavedByStaffID(String value) { this.LastSavedByStaffID = value; return this; } public String getNoteText() { return NoteText; } public SO_Notes setNoteText(String value) { this.NoteText = value; return this; } public Integer getItemNo() { return ItemNo; } public SO_Notes setItemNo(Integer value) { this.ItemNo = value; return this; } } public static class SO_PaymentDetails { @Required() public String PaymentID = null; public String CardNumber = null; public Date CardExpiry = null; public String CardHolder = null; public String BankName = null; public String BSBN = null; public String BankAcc = null; public String AccountName = null; public String getPaymentID() { return PaymentID; } public SO_PaymentDetails setPaymentID(String value) { this.PaymentID = value; return this; } public String getCardNumber() { return CardNumber; } public SO_PaymentDetails setCardNumber(String value) { this.CardNumber = value; return this; } public Date getCardExpiry() { return CardExpiry; } public SO_PaymentDetails setCardExpiry(Date value) { this.CardExpiry = value; return this; } public String getCardHolder() { return CardHolder; } public SO_PaymentDetails setCardHolder(String value) { this.CardHolder = value; return this; } public String getBankName() { return BankName; } public SO_PaymentDetails setBankName(String value) { this.BankName = value; return this; } public String getBsbn() { return BSBN; } public SO_PaymentDetails setBsbn(String value) { this.BSBN = value; return this; } public String getBankAcc() { return BankAcc; } public SO_PaymentDetails setBankAcc(String value) { this.BankAcc = value; return this; } public String getAccountName() { return AccountName; } public SO_PaymentDetails setAccountName(String value) { this.AccountName = value; return this; } } public static class SO_Payments { @Required() public String PaymentID = null; @Required() public String InvoiceHistoryID = null; @Required() public String InvoiceID = null; @References(SO_PaymentTypes.class) @Required() public String PaymentTypeID = null; public String PaymentRef = null; public BigDecimal AmountPaid = null; @Required() public Date PaymentDate = null; @Required() public Short AuthorisationStatus = null; public String AuthorisationNumber = null; @Required() public Boolean ProcessPayment = null; @Required() public Boolean Processed = null; public String DBTransID = null; public Integer PaymentGatewayReturnCode = null; public String PaymentGatewayReturnMessage = null; public BigDecimal AmountTendered = null; public String getPaymentID() { return PaymentID; } public SO_Payments setPaymentID(String value) { this.PaymentID = value; return this; } public String getInvoiceHistoryID() { return InvoiceHistoryID; } public SO_Payments setInvoiceHistoryID(String value) { this.InvoiceHistoryID = value; return this; } public String getInvoiceID() { return InvoiceID; } public SO_Payments setInvoiceID(String value) { this.InvoiceID = value; return this; } public String getPaymentTypeID() { return PaymentTypeID; } public SO_Payments setPaymentTypeID(String value) { this.PaymentTypeID = value; return this; } public String getPaymentRef() { return PaymentRef; } public SO_Payments setPaymentRef(String value) { this.PaymentRef = value; return this; } public BigDecimal getAmountPaid() { return AmountPaid; } public SO_Payments setAmountPaid(BigDecimal value) { this.AmountPaid = value; return this; } public Date getPaymentDate() { return PaymentDate; } public SO_Payments setPaymentDate(Date value) { this.PaymentDate = value; return this; } public Short getAuthorisationStatus() { return AuthorisationStatus; } public SO_Payments setAuthorisationStatus(Short value) { this.AuthorisationStatus = value; return this; } public String getAuthorisationNumber() { return AuthorisationNumber; } public SO_Payments setAuthorisationNumber(String value) { this.AuthorisationNumber = value; return this; } public Boolean isProcessPayment() { return ProcessPayment; } public SO_Payments setProcessPayment(Boolean value) { this.ProcessPayment = value; return this; } public Boolean isProcessed() { return Processed; } public SO_Payments setProcessed(Boolean value) { this.Processed = value; return this; } public String getDbTransID() { return DBTransID; } public SO_Payments setDbTransID(String value) { this.DBTransID = value; return this; } public Integer getPaymentGatewayReturnCode() { return PaymentGatewayReturnCode; } public SO_Payments setPaymentGatewayReturnCode(Integer value) { this.PaymentGatewayReturnCode = value; return this; } public String getPaymentGatewayReturnMessage() { return PaymentGatewayReturnMessage; } public SO_Payments setPaymentGatewayReturnMessage(String value) { this.PaymentGatewayReturnMessage = value; return this; } public BigDecimal getAmountTendered() { return AmountTendered; } public SO_Payments setAmountTendered(BigDecimal value) { this.AmountTendered = value; return this; } } public static class SO_PaymentTypes { @Required() public String RecID = null; @Required() public String Name = null; @Required() public Boolean IsEnabled = null; @Required() public Boolean IsDefault = null; @Required() public Boolean IsCreditCard = null; @References(GL_Ledger.class) public String GL_Main_RecID = null; @Required() public Integer ItemNo = null; @Required() public ArrayList RowHash = null; @Required() public Boolean IsPOS = null; @Required() public String Code = null; public String getRecID() { return RecID; } public SO_PaymentTypes setRecID(String value) { this.RecID = value; return this; } public String getName() { return Name; } public SO_PaymentTypes setName(String value) { this.Name = value; return this; } public Boolean getIsEnabled() { return IsEnabled; } public SO_PaymentTypes setIsEnabled(Boolean value) { this.IsEnabled = value; return this; } public Boolean getIsDefault() { return IsDefault; } public SO_PaymentTypes setIsDefault(Boolean value) { this.IsDefault = value; return this; } public Boolean getIsCreditCard() { return IsCreditCard; } public SO_PaymentTypes setIsCreditCard(Boolean value) { this.IsCreditCard = value; return this; } public String getGlMainRecID() { return GL_Main_RecID; } public SO_PaymentTypes setGlMainRecID(String value) { this.GL_Main_RecID = value; return this; } public Integer getItemNo() { return ItemNo; } public SO_PaymentTypes setItemNo(Integer value) { this.ItemNo = value; return this; } public ArrayList getRowHash() { return RowHash; } public SO_PaymentTypes setRowHash(ArrayList value) { this.RowHash = value; return this; } public Boolean getIsPOS() { return IsPOS; } public SO_PaymentTypes setIsPOS(Boolean value) { this.IsPOS = value; return this; } public String getCode() { return Code; } public SO_PaymentTypes setCode(String value) { this.Code = value; return this; } } public static class SO_PrintLog { @Required() public String PrintLogID = null; @Required() public String InvoiceID = null; @Required() public Date SysDateTime = null; public String Description = null; public String InvoiceHistoryID = null; public Short ReportType = null; @References(HR_Staff.class) public String StaffID = null; public String getPrintLogID() { return PrintLogID; } public SO_PrintLog setPrintLogID(String value) { this.PrintLogID = value; return this; } public String getInvoiceID() { return InvoiceID; } public SO_PrintLog setInvoiceID(String value) { this.InvoiceID = value; return this; } public Date getSysDateTime() { return SysDateTime; } public SO_PrintLog setSysDateTime(Date value) { this.SysDateTime = value; return this; } public String getDescription() { return Description; } public SO_PrintLog setDescription(String value) { this.Description = value; return this; } public String getInvoiceHistoryID() { return InvoiceHistoryID; } public SO_PrintLog setInvoiceHistoryID(String value) { this.InvoiceHistoryID = value; return this; } public Short getReportType() { return ReportType; } public SO_PrintLog setReportType(Short value) { this.ReportType = value; return this; } public String getStaffID() { return StaffID; } public SO_PrintLog setStaffID(String value) { this.StaffID = value; return this; } } public static class SO_Profit { @Required() public String InvoiceID = null; @Required() public String InvoiceNo = null; @Required() public Short BillWhenComplete = null; public String OrderNo = null; @Required() public Boolean CreditNote = null; @Required() public Boolean WholeSaleInvoice = null; public String TaxExemptNo = null; @Required() public String InvoiceHistoryID = null; public Short HistoryNo = null; public String RunNo = null; @Required() public Date RecordDate = null; @Required() public String InvoiceLineID = null; public String PartNo = null; public String Description = null; public BigDecimal CostIn = null; public BigDecimal QuantityThisDel = null; public BigDecimal CurrentLineTotal = null; public BigDecimal TaxToCharge = null; public BigDecimal TaxPaid = null; public Short DecimalPlaces = null; public String TaxID = null; public Short PhysicalItem = null; public Boolean NonStock = null; @Required() public String DebtorID = null; @Required() public String AccountNo = null; public String Name = null; @Required() public String InventoryClassificationID = null; public String ClassDescription = null; public String getInvoiceID() { return InvoiceID; } public SO_Profit setInvoiceID(String value) { this.InvoiceID = value; return this; } public String getInvoiceNo() { return InvoiceNo; } public SO_Profit setInvoiceNo(String value) { this.InvoiceNo = value; return this; } public Short getBillWhenComplete() { return BillWhenComplete; } public SO_Profit setBillWhenComplete(Short value) { this.BillWhenComplete = value; return this; } public String getOrderNo() { return OrderNo; } public SO_Profit setOrderNo(String value) { this.OrderNo = value; return this; } public Boolean isCreditNote() { return CreditNote; } public SO_Profit setCreditNote(Boolean value) { this.CreditNote = value; return this; } public Boolean isWholeSaleInvoice() { return WholeSaleInvoice; } public SO_Profit setWholeSaleInvoice(Boolean value) { this.WholeSaleInvoice = value; return this; } public String getTaxExemptNo() { return TaxExemptNo; } public SO_Profit setTaxExemptNo(String value) { this.TaxExemptNo = value; return this; } public String getInvoiceHistoryID() { return InvoiceHistoryID; } public SO_Profit setInvoiceHistoryID(String value) { this.InvoiceHistoryID = value; return this; } public Short getHistoryNo() { return HistoryNo; } public SO_Profit setHistoryNo(Short value) { this.HistoryNo = value; return this; } public String getRunNo() { return RunNo; } public SO_Profit setRunNo(String value) { this.RunNo = value; return this; } public Date getRecordDate() { return RecordDate; } public SO_Profit setRecordDate(Date value) { this.RecordDate = value; return this; } public String getInvoiceLineID() { return InvoiceLineID; } public SO_Profit setInvoiceLineID(String value) { this.InvoiceLineID = value; return this; } public String getPartNo() { return PartNo; } public SO_Profit setPartNo(String value) { this.PartNo = value; return this; } public String getDescription() { return Description; } public SO_Profit setDescription(String value) { this.Description = value; return this; } public BigDecimal getCostIn() { return CostIn; } public SO_Profit setCostIn(BigDecimal value) { this.CostIn = value; return this; } public BigDecimal getQuantityThisDel() { return QuantityThisDel; } public SO_Profit setQuantityThisDel(BigDecimal value) { this.QuantityThisDel = value; return this; } public BigDecimal getCurrentLineTotal() { return CurrentLineTotal; } public SO_Profit setCurrentLineTotal(BigDecimal value) { this.CurrentLineTotal = value; return this; } public BigDecimal getTaxToCharge() { return TaxToCharge; } public SO_Profit setTaxToCharge(BigDecimal value) { this.TaxToCharge = value; return this; } public BigDecimal getTaxPaid() { return TaxPaid; } public SO_Profit setTaxPaid(BigDecimal value) { this.TaxPaid = value; return this; } public Short getDecimalPlaces() { return DecimalPlaces; } public SO_Profit setDecimalPlaces(Short value) { this.DecimalPlaces = value; return this; } public String getTaxID() { return TaxID; } public SO_Profit setTaxID(String value) { this.TaxID = value; return this; } public Short getPhysicalItem() { return PhysicalItem; } public SO_Profit setPhysicalItem(Short value) { this.PhysicalItem = value; return this; } public Boolean isNonStock() { return NonStock; } public SO_Profit setNonStock(Boolean value) { this.NonStock = value; return this; } public String getDebtorID() { return DebtorID; } public SO_Profit setDebtorID(String value) { this.DebtorID = value; return this; } public String getAccountNo() { return AccountNo; } public SO_Profit setAccountNo(String value) { this.AccountNo = value; return this; } public String getName() { return Name; } public SO_Profit setName(String value) { this.Name = value; return this; } public String getInventoryClassificationID() { return InventoryClassificationID; } public SO_Profit setInventoryClassificationID(String value) { this.InventoryClassificationID = value; return this; } public String getClassDescription() { return ClassDescription; } public SO_Profit setClassDescription(String value) { this.ClassDescription = value; return this; } } public static class SO_ReportDefinition { @Required() public String RecID = null; @Required() public String Name = null; @Required() public Short BillingType = null; @Required() public Integer TradingCategory = null; @Required() public Short DocumentType = null; @Required() public Short NumberOfCopies = null; @Required() public Boolean UseRange = null; @Required() public Short RangeType = null; @Required() public BigDecimal MinRange = null; @Required() public BigDecimal MaxRange = null; @Required() public Short BackOrderStatus = null; @References(SY_Report.class) @Required() public String SY_Report_RecID = null; @References(SY_PrintGroupLogicalPrinter.class) public String SY_PrintGroupLogicalPrinter_RecID = null; @Required() public Integer ItemNo = null; @Required() public ArrayList RowHash = null; @References(SY_PrintGroup.class) @Required() public String SY_PrintGroup_RecID = null; public String getRecID() { return RecID; } public SO_ReportDefinition setRecID(String value) { this.RecID = value; return this; } public String getName() { return Name; } public SO_ReportDefinition setName(String value) { this.Name = value; return this; } public Short getBillingType() { return BillingType; } public SO_ReportDefinition setBillingType(Short value) { this.BillingType = value; return this; } public Integer getTradingCategory() { return TradingCategory; } public SO_ReportDefinition setTradingCategory(Integer value) { this.TradingCategory = value; return this; } public Short getDocumentType() { return DocumentType; } public SO_ReportDefinition setDocumentType(Short value) { this.DocumentType = value; return this; } public Short getNumberOfCopies() { return NumberOfCopies; } public SO_ReportDefinition setNumberOfCopies(Short value) { this.NumberOfCopies = value; return this; } public Boolean isUseRange() { return UseRange; } public SO_ReportDefinition setUseRange(Boolean value) { this.UseRange = value; return this; } public Short getRangeType() { return RangeType; } public SO_ReportDefinition setRangeType(Short value) { this.RangeType = value; return this; } public BigDecimal getMinRange() { return MinRange; } public SO_ReportDefinition setMinRange(BigDecimal value) { this.MinRange = value; return this; } public BigDecimal getMaxRange() { return MaxRange; } public SO_ReportDefinition setMaxRange(BigDecimal value) { this.MaxRange = value; return this; } public Short getBackOrderStatus() { return BackOrderStatus; } public SO_ReportDefinition setBackOrderStatus(Short value) { this.BackOrderStatus = value; return this; } public String getSyReportRecID() { return SY_Report_RecID; } public SO_ReportDefinition setSyReportRecID(String value) { this.SY_Report_RecID = value; return this; } public String getSyPrintGroupLogicalPrinterRecID() { return SY_PrintGroupLogicalPrinter_RecID; } public SO_ReportDefinition setSyPrintGroupLogicalPrinterRecID(String value) { this.SY_PrintGroupLogicalPrinter_RecID = value; return this; } public Integer getItemNo() { return ItemNo; } public SO_ReportDefinition setItemNo(Integer value) { this.ItemNo = value; return this; } public ArrayList getRowHash() { return RowHash; } public SO_ReportDefinition setRowHash(ArrayList value) { this.RowHash = value; return this; } public String getSyPrintGroupRecID() { return SY_PrintGroup_RecID; } public SO_ReportDefinition setSyPrintGroupRecID(String value) { this.SY_PrintGroup_RecID = value; return this; } } public static class SO_Run { @Required() public String RunID = null; @Required() public Date LastSavedDateTime = null; @Required() public String RunBy = null; @Required() public String RunNo = null; public String getRunID() { return RunID; } public SO_Run setRunID(String value) { this.RunID = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public SO_Run setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public String getRunBy() { return RunBy; } public SO_Run setRunBy(String value) { this.RunBy = value; return this; } public String getRunNo() { return RunNo; } public SO_Run setRunNo(String value) { this.RunNo = value; return this; } } public static class SO_Sales { public String SalesID = null; @Required() public Date DateRun = null; @Required() public Date InvoiceDate = null; @Required() public String DebtorID = null; public String InvoiceNo = null; public String PartNo = null; public String Description = null; public String ClassDescription = null; public String Cat1Description = null; public String Cat2Description = null; public String Cat3Description = null; public BigDecimal Quantity = null; public BigDecimal UnitCost = null; public BigDecimal UnitSellPrice = null; public BigDecimal LineTax = null; public BigDecimal LineTotal = null; public String RunNo = null; public Short HistoryNo = null; public String InvoiceID = null; public String InventoryID = null; public Integer YearNo = null; public Integer MonthNo = null; @Required() public String IN_LogicalID = null; public String Cat4Description = null; public String Cat5Description = null; public Short KitStyle = null; public Short KitStatus = null; public String SO_LinesID = null; public BigDecimal LineCost = null; public String DebtorAccountNo = null; public String DebtorName = null; public String DebtorClassification = null; public String PhysicalWarehouse = null; public String LogicalWarehouse = null; public BigDecimal GPDollars = null; public BigDecimal GPPercent = null; public String getSalesID() { return SalesID; } public SO_Sales setSalesID(String value) { this.SalesID = value; return this; } public Date getDateRun() { return DateRun; } public SO_Sales setDateRun(Date value) { this.DateRun = value; return this; } public Date getInvoiceDate() { return InvoiceDate; } public SO_Sales setInvoiceDate(Date value) { this.InvoiceDate = value; return this; } public String getDebtorID() { return DebtorID; } public SO_Sales setDebtorID(String value) { this.DebtorID = value; return this; } public String getInvoiceNo() { return InvoiceNo; } public SO_Sales setInvoiceNo(String value) { this.InvoiceNo = value; return this; } public String getPartNo() { return PartNo; } public SO_Sales setPartNo(String value) { this.PartNo = value; return this; } public String getDescription() { return Description; } public SO_Sales setDescription(String value) { this.Description = value; return this; } public String getClassDescription() { return ClassDescription; } public SO_Sales setClassDescription(String value) { this.ClassDescription = value; return this; } public String getCat1Description() { return Cat1Description; } public SO_Sales setCat1Description(String value) { this.Cat1Description = value; return this; } public String getCat2Description() { return Cat2Description; } public SO_Sales setCat2Description(String value) { this.Cat2Description = value; return this; } public String getCat3Description() { return Cat3Description; } public SO_Sales setCat3Description(String value) { this.Cat3Description = value; return this; } public BigDecimal getQuantity() { return Quantity; } public SO_Sales setQuantity(BigDecimal value) { this.Quantity = value; return this; } public BigDecimal getUnitCost() { return UnitCost; } public SO_Sales setUnitCost(BigDecimal value) { this.UnitCost = value; return this; } public BigDecimal getUnitSellPrice() { return UnitSellPrice; } public SO_Sales setUnitSellPrice(BigDecimal value) { this.UnitSellPrice = value; return this; } public BigDecimal getLineTax() { return LineTax; } public SO_Sales setLineTax(BigDecimal value) { this.LineTax = value; return this; } public BigDecimal getLineTotal() { return LineTotal; } public SO_Sales setLineTotal(BigDecimal value) { this.LineTotal = value; return this; } public String getRunNo() { return RunNo; } public SO_Sales setRunNo(String value) { this.RunNo = value; return this; } public Short getHistoryNo() { return HistoryNo; } public SO_Sales setHistoryNo(Short value) { this.HistoryNo = value; return this; } public String getInvoiceID() { return InvoiceID; } public SO_Sales setInvoiceID(String value) { this.InvoiceID = value; return this; } public String getInventoryID() { return InventoryID; } public SO_Sales setInventoryID(String value) { this.InventoryID = value; return this; } public Integer getYearNo() { return YearNo; } public SO_Sales setYearNo(Integer value) { this.YearNo = value; return this; } public Integer getMonthNo() { return MonthNo; } public SO_Sales setMonthNo(Integer value) { this.MonthNo = value; return this; } public String getInLogicalID() { return IN_LogicalID; } public SO_Sales setInLogicalID(String value) { this.IN_LogicalID = value; return this; } public String getCat4Description() { return Cat4Description; } public SO_Sales setCat4Description(String value) { this.Cat4Description = value; return this; } public String getCat5Description() { return Cat5Description; } public SO_Sales setCat5Description(String value) { this.Cat5Description = value; return this; } public Short getKitStyle() { return KitStyle; } public SO_Sales setKitStyle(Short value) { this.KitStyle = value; return this; } public Short getKitStatus() { return KitStatus; } public SO_Sales setKitStatus(Short value) { this.KitStatus = value; return this; } public String getSoLinesID() { return SO_LinesID; } public SO_Sales setSoLinesID(String value) { this.SO_LinesID = value; return this; } public BigDecimal getLineCost() { return LineCost; } public SO_Sales setLineCost(BigDecimal value) { this.LineCost = value; return this; } public String getDebtorAccountNo() { return DebtorAccountNo; } public SO_Sales setDebtorAccountNo(String value) { this.DebtorAccountNo = value; return this; } public String getDebtorName() { return DebtorName; } public SO_Sales setDebtorName(String value) { this.DebtorName = value; return this; } public String getDebtorClassification() { return DebtorClassification; } public SO_Sales setDebtorClassification(String value) { this.DebtorClassification = value; return this; } public String getPhysicalWarehouse() { return PhysicalWarehouse; } public SO_Sales setPhysicalWarehouse(String value) { this.PhysicalWarehouse = value; return this; } public String getLogicalWarehouse() { return LogicalWarehouse; } public SO_Sales setLogicalWarehouse(String value) { this.LogicalWarehouse = value; return this; } public BigDecimal getGpDollars() { return GPDollars; } public SO_Sales setGpDollars(BigDecimal value) { this.GPDollars = value; return this; } public BigDecimal getGpPercent() { return GPPercent; } public SO_Sales setGpPercent(BigDecimal value) { this.GPPercent = value; return this; } } public static class SO_Sales_InvoiceNo { public String InvoiceNo = null; public String getInvoiceNo() { return InvoiceNo; } public SO_Sales_InvoiceNo setInvoiceNo(String value) { this.InvoiceNo = value; return this; } } public static class SO_SalesDelBatch { @Required() public String RecID = null; @Required() public String BatchNo = null; @Required() public String StaffID = null; public Date DateActivated = null; public Boolean BatchActivated = null; @Required() public Date LastSavedDateTime = null; public Boolean SplitOrder = null; public Boolean SplitBackOrders = null; @References(IN_Logical.class) public String IN_Logical_RecID = null; public Boolean UseSpecificWarehouse = null; public String getRecID() { return RecID; } public SO_SalesDelBatch setRecID(String value) { this.RecID = value; return this; } public String getBatchNo() { return BatchNo; } public SO_SalesDelBatch setBatchNo(String value) { this.BatchNo = value; return this; } public String getStaffID() { return StaffID; } public SO_SalesDelBatch setStaffID(String value) { this.StaffID = value; return this; } public Date getDateActivated() { return DateActivated; } public SO_SalesDelBatch setDateActivated(Date value) { this.DateActivated = value; return this; } public Boolean isBatchActivated() { return BatchActivated; } public SO_SalesDelBatch setBatchActivated(Boolean value) { this.BatchActivated = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public SO_SalesDelBatch setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Boolean isSplitOrder() { return SplitOrder; } public SO_SalesDelBatch setSplitOrder(Boolean value) { this.SplitOrder = value; return this; } public Boolean isSplitBackOrders() { return SplitBackOrders; } public SO_SalesDelBatch setSplitBackOrders(Boolean value) { this.SplitBackOrders = value; return this; } public String getInLogicalRecID() { return IN_Logical_RecID; } public SO_SalesDelBatch setInLogicalRecID(String value) { this.IN_Logical_RecID = value; return this; } public Boolean isUseSpecificWarehouse() { return UseSpecificWarehouse; } public SO_SalesDelBatch setUseSpecificWarehouse(Boolean value) { this.UseSpecificWarehouse = value; return this; } } public static class SO_SalesDelBatchLines { @Required() public String RecID = null; @Required() public String SalesDelBatchID = null; @Required() public Integer LineNumber = null; @Required() public String InvoiceID = null; @Required() public String InvoiceNo = null; @Required() public String DebtorID = null; @Required() public String DebtorAccountNo = null; public String DebtorName = null; @Required() public String InvoiceLineID = null; @Required() public String InventoryID = null; @Required() public String PartNo = null; public String Description = null; @Required() public BigDecimal Quantity = null; @Required() public BigDecimal QuantityBackOrdered = null; @Required() public Date ForwardOrderDate = null; @Required() public Date ScheduledDate = null; public Boolean NewDeliverStockFlag = null; @Required() public BigDecimal NewQuantityDelivered = null; public Boolean UpdateFailed = null; public String FailReason = null; @Required() public Short QuantityDecimalPlaces = null; public String getRecID() { return RecID; } public SO_SalesDelBatchLines setRecID(String value) { this.RecID = value; return this; } public String getSalesDelBatchID() { return SalesDelBatchID; } public SO_SalesDelBatchLines setSalesDelBatchID(String value) { this.SalesDelBatchID = value; return this; } public Integer getLineNumber() { return LineNumber; } public SO_SalesDelBatchLines setLineNumber(Integer value) { this.LineNumber = value; return this; } public String getInvoiceID() { return InvoiceID; } public SO_SalesDelBatchLines setInvoiceID(String value) { this.InvoiceID = value; return this; } public String getInvoiceNo() { return InvoiceNo; } public SO_SalesDelBatchLines setInvoiceNo(String value) { this.InvoiceNo = value; return this; } public String getDebtorID() { return DebtorID; } public SO_SalesDelBatchLines setDebtorID(String value) { this.DebtorID = value; return this; } public String getDebtorAccountNo() { return DebtorAccountNo; } public SO_SalesDelBatchLines setDebtorAccountNo(String value) { this.DebtorAccountNo = value; return this; } public String getDebtorName() { return DebtorName; } public SO_SalesDelBatchLines setDebtorName(String value) { this.DebtorName = value; return this; } public String getInvoiceLineID() { return InvoiceLineID; } public SO_SalesDelBatchLines setInvoiceLineID(String value) { this.InvoiceLineID = value; return this; } public String getInventoryID() { return InventoryID; } public SO_SalesDelBatchLines setInventoryID(String value) { this.InventoryID = value; return this; } public String getPartNo() { return PartNo; } public SO_SalesDelBatchLines setPartNo(String value) { this.PartNo = value; return this; } public String getDescription() { return Description; } public SO_SalesDelBatchLines setDescription(String value) { this.Description = value; return this; } public BigDecimal getQuantity() { return Quantity; } public SO_SalesDelBatchLines setQuantity(BigDecimal value) { this.Quantity = value; return this; } public BigDecimal getQuantityBackOrdered() { return QuantityBackOrdered; } public SO_SalesDelBatchLines setQuantityBackOrdered(BigDecimal value) { this.QuantityBackOrdered = value; return this; } public Date getForwardOrderDate() { return ForwardOrderDate; } public SO_SalesDelBatchLines setForwardOrderDate(Date value) { this.ForwardOrderDate = value; return this; } public Date getScheduledDate() { return ScheduledDate; } public SO_SalesDelBatchLines setScheduledDate(Date value) { this.ScheduledDate = value; return this; } public Boolean isNewDeliverStockFlag() { return NewDeliverStockFlag; } public SO_SalesDelBatchLines setNewDeliverStockFlag(Boolean value) { this.NewDeliverStockFlag = value; return this; } public BigDecimal getNewQuantityDelivered() { return NewQuantityDelivered; } public SO_SalesDelBatchLines setNewQuantityDelivered(BigDecimal value) { this.NewQuantityDelivered = value; return this; } public Boolean isUpdateFailed() { return UpdateFailed; } public SO_SalesDelBatchLines setUpdateFailed(Boolean value) { this.UpdateFailed = value; return this; } public String getFailReason() { return FailReason; } public SO_SalesDelBatchLines setFailReason(String value) { this.FailReason = value; return this; } public Short getQuantityDecimalPlaces() { return QuantityDecimalPlaces; } public SO_SalesDelBatchLines setQuantityDecimalPlaces(Short value) { this.QuantityDecimalPlaces = value; return this; } } public static class SO_SalesHistory { @Required() public String SalesID = null; @Required() public Date DateRun = null; @Required() public Date InvoiceDate = null; @Required() public String DebtorID = null; public String InvoiceNo = null; public String PartNo = null; public String Description = null; public String ClassDescription = null; public String Cat1Description = null; public String Cat2Description = null; public String Cat3Description = null; public BigDecimal Quantity = null; public BigDecimal UnitCost = null; public BigDecimal UnitSellPrice = null; public BigDecimal LineTax = null; public BigDecimal LineTotal = null; public String RunNo = null; public Short HistoryNo = null; public String InvoiceID = null; public String InventoryID = null; public Short YearNo = null; public Short MonthNo = null; @Required() public String IN_LogicalID = null; public String Cat4Description = null; public String Cat5Description = null; public Short KitStyle = null; public Short KitStatus = null; public String SO_LinesID = null; public BigDecimal LineCost = null; public String InvoiceHistoryID = null; public String getSalesID() { return SalesID; } public SO_SalesHistory setSalesID(String value) { this.SalesID = value; return this; } public Date getDateRun() { return DateRun; } public SO_SalesHistory setDateRun(Date value) { this.DateRun = value; return this; } public Date getInvoiceDate() { return InvoiceDate; } public SO_SalesHistory setInvoiceDate(Date value) { this.InvoiceDate = value; return this; } public String getDebtorID() { return DebtorID; } public SO_SalesHistory setDebtorID(String value) { this.DebtorID = value; return this; } public String getInvoiceNo() { return InvoiceNo; } public SO_SalesHistory setInvoiceNo(String value) { this.InvoiceNo = value; return this; } public String getPartNo() { return PartNo; } public SO_SalesHistory setPartNo(String value) { this.PartNo = value; return this; } public String getDescription() { return Description; } public SO_SalesHistory setDescription(String value) { this.Description = value; return this; } public String getClassDescription() { return ClassDescription; } public SO_SalesHistory setClassDescription(String value) { this.ClassDescription = value; return this; } public String getCat1Description() { return Cat1Description; } public SO_SalesHistory setCat1Description(String value) { this.Cat1Description = value; return this; } public String getCat2Description() { return Cat2Description; } public SO_SalesHistory setCat2Description(String value) { this.Cat2Description = value; return this; } public String getCat3Description() { return Cat3Description; } public SO_SalesHistory setCat3Description(String value) { this.Cat3Description = value; return this; } public BigDecimal getQuantity() { return Quantity; } public SO_SalesHistory setQuantity(BigDecimal value) { this.Quantity = value; return this; } public BigDecimal getUnitCost() { return UnitCost; } public SO_SalesHistory setUnitCost(BigDecimal value) { this.UnitCost = value; return this; } public BigDecimal getUnitSellPrice() { return UnitSellPrice; } public SO_SalesHistory setUnitSellPrice(BigDecimal value) { this.UnitSellPrice = value; return this; } public BigDecimal getLineTax() { return LineTax; } public SO_SalesHistory setLineTax(BigDecimal value) { this.LineTax = value; return this; } public BigDecimal getLineTotal() { return LineTotal; } public SO_SalesHistory setLineTotal(BigDecimal value) { this.LineTotal = value; return this; } public String getRunNo() { return RunNo; } public SO_SalesHistory setRunNo(String value) { this.RunNo = value; return this; } public Short getHistoryNo() { return HistoryNo; } public SO_SalesHistory setHistoryNo(Short value) { this.HistoryNo = value; return this; } public String getInvoiceID() { return InvoiceID; } public SO_SalesHistory setInvoiceID(String value) { this.InvoiceID = value; return this; } public String getInventoryID() { return InventoryID; } public SO_SalesHistory setInventoryID(String value) { this.InventoryID = value; return this; } public Short getYearNo() { return YearNo; } public SO_SalesHistory setYearNo(Short value) { this.YearNo = value; return this; } public Short getMonthNo() { return MonthNo; } public SO_SalesHistory setMonthNo(Short value) { this.MonthNo = value; return this; } public String getInLogicalID() { return IN_LogicalID; } public SO_SalesHistory setInLogicalID(String value) { this.IN_LogicalID = value; return this; } public String getCat4Description() { return Cat4Description; } public SO_SalesHistory setCat4Description(String value) { this.Cat4Description = value; return this; } public String getCat5Description() { return Cat5Description; } public SO_SalesHistory setCat5Description(String value) { this.Cat5Description = value; return this; } public Short getKitStyle() { return KitStyle; } public SO_SalesHistory setKitStyle(Short value) { this.KitStyle = value; return this; } public Short getKitStatus() { return KitStatus; } public SO_SalesHistory setKitStatus(Short value) { this.KitStatus = value; return this; } public String getSoLinesID() { return SO_LinesID; } public SO_SalesHistory setSoLinesID(String value) { this.SO_LinesID = value; return this; } public BigDecimal getLineCost() { return LineCost; } public SO_SalesHistory setLineCost(BigDecimal value) { this.LineCost = value; return this; } public String getInvoiceHistoryID() { return InvoiceHistoryID; } public SO_SalesHistory setInvoiceHistoryID(String value) { this.InvoiceHistoryID = value; return this; } } public static class SO_SalesQty { public String InventoryID = null; public Integer YearNo = null; public Integer MonthNo = null; public BigDecimal TotalQty = null; public String getInventoryID() { return InventoryID; } public SO_SalesQty setInventoryID(String value) { this.InventoryID = value; return this; } public Integer getYearNo() { return YearNo; } public SO_SalesQty setYearNo(Integer value) { this.YearNo = value; return this; } public Integer getMonthNo() { return MonthNo; } public SO_SalesQty setMonthNo(Integer value) { this.MonthNo = value; return this; } public BigDecimal getTotalQty() { return TotalQty; } public SO_SalesQty setTotalQty(BigDecimal value) { this.TotalQty = value; return this; } } public static class SO_SplitOrders { @Required() public String RecID = null; @Required() public String SourceInvoiceID = null; @Required() public String SourceInvoiceNo = null; @Required() public String DestInvoiceID = null; @Required() public String DestInvoiceNo = null; @Required() public String HRStaffID = null; @Required() public Date LastSavedDateTime = null; public String getRecID() { return RecID; } public SO_SplitOrders setRecID(String value) { this.RecID = value; return this; } public String getSourceInvoiceID() { return SourceInvoiceID; } public SO_SplitOrders setSourceInvoiceID(String value) { this.SourceInvoiceID = value; return this; } public String getSourceInvoiceNo() { return SourceInvoiceNo; } public SO_SplitOrders setSourceInvoiceNo(String value) { this.SourceInvoiceNo = value; return this; } public String getDestInvoiceID() { return DestInvoiceID; } public SO_SplitOrders setDestInvoiceID(String value) { this.DestInvoiceID = value; return this; } public String getDestInvoiceNo() { return DestInvoiceNo; } public SO_SplitOrders setDestInvoiceNo(String value) { this.DestInvoiceNo = value; return this; } public String getHrStaffID() { return HRStaffID; } public SO_SplitOrders setHrStaffID(String value) { this.HRStaffID = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public SO_SplitOrders setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } } public static class SO_Totals { @Required() public String InvoiceID = null; public BigDecimal InvoiceTotal = null; public BigDecimal Cartage1Total = null; public BigDecimal Cartage1TaxTotal = null; public BigDecimal Cartage2Total = null; public BigDecimal Cartage2TaxTotal = null; public BigDecimal Cartage3Total = null; public BigDecimal Cartage3TaxTotal = null; public String getInvoiceID() { return InvoiceID; } public SO_Totals setInvoiceID(String value) { this.InvoiceID = value; return this; } public BigDecimal getInvoiceTotal() { return InvoiceTotal; } public SO_Totals setInvoiceTotal(BigDecimal value) { this.InvoiceTotal = value; return this; } public BigDecimal getCartage1Total() { return Cartage1Total; } public SO_Totals setCartage1Total(BigDecimal value) { this.Cartage1Total = value; return this; } public BigDecimal getCartage1TaxTotal() { return Cartage1TaxTotal; } public SO_Totals setCartage1TaxTotal(BigDecimal value) { this.Cartage1TaxTotal = value; return this; } public BigDecimal getCartage2Total() { return Cartage2Total; } public SO_Totals setCartage2Total(BigDecimal value) { this.Cartage2Total = value; return this; } public BigDecimal getCartage2TaxTotal() { return Cartage2TaxTotal; } public SO_Totals setCartage2TaxTotal(BigDecimal value) { this.Cartage2TaxTotal = value; return this; } public BigDecimal getCartage3Total() { return Cartage3Total; } public SO_Totals setCartage3Total(BigDecimal value) { this.Cartage3Total = value; return this; } public BigDecimal getCartage3TaxTotal() { return Cartage3TaxTotal; } public SO_Totals setCartage3TaxTotal(BigDecimal value) { this.Cartage3TaxTotal = value; return this; } } public static class SO_ViewInvoiced { @Required() public String InvoiceID = null; @Required() public String InvoiceNo = null; @Required() public Short BillWhenComplete = null; public String OrderNo = null; @Required() public Boolean CreditNote = null; @Required() public Boolean WholeSaleInvoice = null; public String TaxExemptNo = null; public Short Status = null; public String StaffID = null; @Required() public String InvoiceHistoryID = null; public BigDecimal Frieght = null; public Short ProcessedHistoryNo = null; public Short InvoicedHistoryNo = null; public String ProcessedOnRunNo = null; public String InvoicedOnRunNo = null; @Required() public Date ProcessedDate = null; @Required() public Date InvoicedDate = null; @Required() public String InvoiceLineID = null; public String PartNo = null; public String Description = null; public BigDecimal CostIn = null; public BigDecimal QuantityThisDel = null; public BigDecimal CurrentLineTotal = null; public BigDecimal TaxToCharge = null; public BigDecimal TaxPaid = null; public Short DecimalPlaces = null; public String TaxID = null; public Short PhysicalItem = null; public Boolean NonStock = null; @Required() public String DebtorID = null; @Required() public String AccountNo = null; public String Name = null; @Required() public String InventoryClassificationID = null; public String ClassDescription = null; public String getInvoiceID() { return InvoiceID; } public SO_ViewInvoiced setInvoiceID(String value) { this.InvoiceID = value; return this; } public String getInvoiceNo() { return InvoiceNo; } public SO_ViewInvoiced setInvoiceNo(String value) { this.InvoiceNo = value; return this; } public Short getBillWhenComplete() { return BillWhenComplete; } public SO_ViewInvoiced setBillWhenComplete(Short value) { this.BillWhenComplete = value; return this; } public String getOrderNo() { return OrderNo; } public SO_ViewInvoiced setOrderNo(String value) { this.OrderNo = value; return this; } public Boolean isCreditNote() { return CreditNote; } public SO_ViewInvoiced setCreditNote(Boolean value) { this.CreditNote = value; return this; } public Boolean isWholeSaleInvoice() { return WholeSaleInvoice; } public SO_ViewInvoiced setWholeSaleInvoice(Boolean value) { this.WholeSaleInvoice = value; return this; } public String getTaxExemptNo() { return TaxExemptNo; } public SO_ViewInvoiced setTaxExemptNo(String value) { this.TaxExemptNo = value; return this; } public Short getStatus() { return Status; } public SO_ViewInvoiced setStatus(Short value) { this.Status = value; return this; } public String getStaffID() { return StaffID; } public SO_ViewInvoiced setStaffID(String value) { this.StaffID = value; return this; } public String getInvoiceHistoryID() { return InvoiceHistoryID; } public SO_ViewInvoiced setInvoiceHistoryID(String value) { this.InvoiceHistoryID = value; return this; } public BigDecimal getFrieght() { return Frieght; } public SO_ViewInvoiced setFrieght(BigDecimal value) { this.Frieght = value; return this; } public Short getProcessedHistoryNo() { return ProcessedHistoryNo; } public SO_ViewInvoiced setProcessedHistoryNo(Short value) { this.ProcessedHistoryNo = value; return this; } public Short getInvoicedHistoryNo() { return InvoicedHistoryNo; } public SO_ViewInvoiced setInvoicedHistoryNo(Short value) { this.InvoicedHistoryNo = value; return this; } public String getProcessedOnRunNo() { return ProcessedOnRunNo; } public SO_ViewInvoiced setProcessedOnRunNo(String value) { this.ProcessedOnRunNo = value; return this; } public String getInvoicedOnRunNo() { return InvoicedOnRunNo; } public SO_ViewInvoiced setInvoicedOnRunNo(String value) { this.InvoicedOnRunNo = value; return this; } public Date getProcessedDate() { return ProcessedDate; } public SO_ViewInvoiced setProcessedDate(Date value) { this.ProcessedDate = value; return this; } public Date getInvoicedDate() { return InvoicedDate; } public SO_ViewInvoiced setInvoicedDate(Date value) { this.InvoicedDate = value; return this; } public String getInvoiceLineID() { return InvoiceLineID; } public SO_ViewInvoiced setInvoiceLineID(String value) { this.InvoiceLineID = value; return this; } public String getPartNo() { return PartNo; } public SO_ViewInvoiced setPartNo(String value) { this.PartNo = value; return this; } public String getDescription() { return Description; } public SO_ViewInvoiced setDescription(String value) { this.Description = value; return this; } public BigDecimal getCostIn() { return CostIn; } public SO_ViewInvoiced setCostIn(BigDecimal value) { this.CostIn = value; return this; } public BigDecimal getQuantityThisDel() { return QuantityThisDel; } public SO_ViewInvoiced setQuantityThisDel(BigDecimal value) { this.QuantityThisDel = value; return this; } public BigDecimal getCurrentLineTotal() { return CurrentLineTotal; } public SO_ViewInvoiced setCurrentLineTotal(BigDecimal value) { this.CurrentLineTotal = value; return this; } public BigDecimal getTaxToCharge() { return TaxToCharge; } public SO_ViewInvoiced setTaxToCharge(BigDecimal value) { this.TaxToCharge = value; return this; } public BigDecimal getTaxPaid() { return TaxPaid; } public SO_ViewInvoiced setTaxPaid(BigDecimal value) { this.TaxPaid = value; return this; } public Short getDecimalPlaces() { return DecimalPlaces; } public SO_ViewInvoiced setDecimalPlaces(Short value) { this.DecimalPlaces = value; return this; } public String getTaxID() { return TaxID; } public SO_ViewInvoiced setTaxID(String value) { this.TaxID = value; return this; } public Short getPhysicalItem() { return PhysicalItem; } public SO_ViewInvoiced setPhysicalItem(Short value) { this.PhysicalItem = value; return this; } public Boolean isNonStock() { return NonStock; } public SO_ViewInvoiced setNonStock(Boolean value) { this.NonStock = value; return this; } public String getDebtorID() { return DebtorID; } public SO_ViewInvoiced setDebtorID(String value) { this.DebtorID = value; return this; } public String getAccountNo() { return AccountNo; } public SO_ViewInvoiced setAccountNo(String value) { this.AccountNo = value; return this; } public String getName() { return Name; } public SO_ViewInvoiced setName(String value) { this.Name = value; return this; } public String getInventoryClassificationID() { return InventoryClassificationID; } public SO_ViewInvoiced setInventoryClassificationID(String value) { this.InventoryClassificationID = value; return this; } public String getClassDescription() { return ClassDescription; } public SO_ViewInvoiced setClassDescription(String value) { this.ClassDescription = value; return this; } } public static class SO_ViewShipped { @Required() public String InvoiceID = null; @Required() public String InvoiceNo = null; @Required() public Short BillWhenComplete = null; public String OrderNo = null; @Required() public Boolean CreditNote = null; @Required() public Boolean WholeSaleInvoice = null; public String TaxExemptNo = null; public Short Status = null; public String StaffID = null; @Required() public String InvoiceHistoryID = null; public BigDecimal Frieght = null; public Short ProcessedHistoryNo = null; public Short ShippedHistoryNo = null; public String ProcessedOnRunNo = null; public String ShippedOnRunNo = null; @Required() public Date ProcessedDate = null; @Required() public Date ShippedDate = null; @Required() public String InvoiceLineID = null; public String PartNo = null; public String Description = null; public BigDecimal CostIn = null; public BigDecimal QuantityThisDel = null; public BigDecimal CurrentLineTotal = null; public BigDecimal TaxToCharge = null; public BigDecimal TaxPaid = null; public Short DecimalPlaces = null; public String TaxID = null; public Short PhysicalItem = null; public Boolean NonStock = null; @Required() public String DebtorID = null; @Required() public String AccountNo = null; public String Name = null; @Required() public String InventoryClassificationID = null; public String ClassDescription = null; public String getInvoiceID() { return InvoiceID; } public SO_ViewShipped setInvoiceID(String value) { this.InvoiceID = value; return this; } public String getInvoiceNo() { return InvoiceNo; } public SO_ViewShipped setInvoiceNo(String value) { this.InvoiceNo = value; return this; } public Short getBillWhenComplete() { return BillWhenComplete; } public SO_ViewShipped setBillWhenComplete(Short value) { this.BillWhenComplete = value; return this; } public String getOrderNo() { return OrderNo; } public SO_ViewShipped setOrderNo(String value) { this.OrderNo = value; return this; } public Boolean isCreditNote() { return CreditNote; } public SO_ViewShipped setCreditNote(Boolean value) { this.CreditNote = value; return this; } public Boolean isWholeSaleInvoice() { return WholeSaleInvoice; } public SO_ViewShipped setWholeSaleInvoice(Boolean value) { this.WholeSaleInvoice = value; return this; } public String getTaxExemptNo() { return TaxExemptNo; } public SO_ViewShipped setTaxExemptNo(String value) { this.TaxExemptNo = value; return this; } public Short getStatus() { return Status; } public SO_ViewShipped setStatus(Short value) { this.Status = value; return this; } public String getStaffID() { return StaffID; } public SO_ViewShipped setStaffID(String value) { this.StaffID = value; return this; } public String getInvoiceHistoryID() { return InvoiceHistoryID; } public SO_ViewShipped setInvoiceHistoryID(String value) { this.InvoiceHistoryID = value; return this; } public BigDecimal getFrieght() { return Frieght; } public SO_ViewShipped setFrieght(BigDecimal value) { this.Frieght = value; return this; } public Short getProcessedHistoryNo() { return ProcessedHistoryNo; } public SO_ViewShipped setProcessedHistoryNo(Short value) { this.ProcessedHistoryNo = value; return this; } public Short getShippedHistoryNo() { return ShippedHistoryNo; } public SO_ViewShipped setShippedHistoryNo(Short value) { this.ShippedHistoryNo = value; return this; } public String getProcessedOnRunNo() { return ProcessedOnRunNo; } public SO_ViewShipped setProcessedOnRunNo(String value) { this.ProcessedOnRunNo = value; return this; } public String getShippedOnRunNo() { return ShippedOnRunNo; } public SO_ViewShipped setShippedOnRunNo(String value) { this.ShippedOnRunNo = value; return this; } public Date getProcessedDate() { return ProcessedDate; } public SO_ViewShipped setProcessedDate(Date value) { this.ProcessedDate = value; return this; } public Date getShippedDate() { return ShippedDate; } public SO_ViewShipped setShippedDate(Date value) { this.ShippedDate = value; return this; } public String getInvoiceLineID() { return InvoiceLineID; } public SO_ViewShipped setInvoiceLineID(String value) { this.InvoiceLineID = value; return this; } public String getPartNo() { return PartNo; } public SO_ViewShipped setPartNo(String value) { this.PartNo = value; return this; } public String getDescription() { return Description; } public SO_ViewShipped setDescription(String value) { this.Description = value; return this; } public BigDecimal getCostIn() { return CostIn; } public SO_ViewShipped setCostIn(BigDecimal value) { this.CostIn = value; return this; } public BigDecimal getQuantityThisDel() { return QuantityThisDel; } public SO_ViewShipped setQuantityThisDel(BigDecimal value) { this.QuantityThisDel = value; return this; } public BigDecimal getCurrentLineTotal() { return CurrentLineTotal; } public SO_ViewShipped setCurrentLineTotal(BigDecimal value) { this.CurrentLineTotal = value; return this; } public BigDecimal getTaxToCharge() { return TaxToCharge; } public SO_ViewShipped setTaxToCharge(BigDecimal value) { this.TaxToCharge = value; return this; } public BigDecimal getTaxPaid() { return TaxPaid; } public SO_ViewShipped setTaxPaid(BigDecimal value) { this.TaxPaid = value; return this; } public Short getDecimalPlaces() { return DecimalPlaces; } public SO_ViewShipped setDecimalPlaces(Short value) { this.DecimalPlaces = value; return this; } public String getTaxID() { return TaxID; } public SO_ViewShipped setTaxID(String value) { this.TaxID = value; return this; } public Short getPhysicalItem() { return PhysicalItem; } public SO_ViewShipped setPhysicalItem(Short value) { this.PhysicalItem = value; return this; } public Boolean isNonStock() { return NonStock; } public SO_ViewShipped setNonStock(Boolean value) { this.NonStock = value; return this; } public String getDebtorID() { return DebtorID; } public SO_ViewShipped setDebtorID(String value) { this.DebtorID = value; return this; } public String getAccountNo() { return AccountNo; } public SO_ViewShipped setAccountNo(String value) { this.AccountNo = value; return this; } public String getName() { return Name; } public SO_ViewShipped setName(String value) { this.Name = value; return this; } public String getInventoryClassificationID() { return InventoryClassificationID; } public SO_ViewShipped setInventoryClassificationID(String value) { this.InventoryClassificationID = value; return this; } public String getClassDescription() { return ClassDescription; } public SO_ViewShipped setClassDescription(String value) { this.ClassDescription = value; return this; } } public static class SO_VInv { @Required() public String InvoiceID = null; @Required() public String InvID = null; @Required() public String InvoiceNo = null; @Required() public String IN_LogicalID = null; @Required() public Short BillWhenComplete = null; public String OrderNo = null; @Required() public Boolean CreditNote = null; @Required() public Boolean WholeSaleInvoice = null; public String TaxExemptNo = null; public Short Status = null; public String StaffID = null; @Required() public String BranchID = null; @Required() public Boolean CreditIntoStock = null; @Required() public String InvoiceHistoryID = null; public BigDecimal HistoryTotal = null; public BigDecimal CartageCharge1 = null; public BigDecimal CartageCharge2 = null; public BigDecimal CartageCharge3 = null; public BigDecimal Frieght = null; public BigDecimal Frt = null; public BigDecimal FrtTax = null; public Short ProHistoryNo = null; public Short InvHistoryNo = null; public String ProRunNo = null; public String InvRunNo = null; public Date ProDate = null; public Date InvDate = null; @Required() public String InvoiceLineID = null; public String InventoryID = null; public String PartNo = null; public String Description = null; public String JobID = null; public BigDecimal CostIn = null; public BigDecimal QuantityThisDel = null; public BigDecimal CurrentLineTotal = null; public BigDecimal TaxToCharge = null; public BigDecimal TaxPaid = null; public Short DecimalPlaces = null; public String TaxID = null; public Short PhysicalItem = null; public Boolean NonStock = null; public String ClassDescription = null; @Required() public String DebtorID = null; @Required() public String AccountNo = null; public String Name = null; public BigDecimal LineCost = null; public String Cat1Description = null; public String Cat2Description = null; public String Cat3Description = null; public String getInvoiceID() { return InvoiceID; } public SO_VInv setInvoiceID(String value) { this.InvoiceID = value; return this; } public String getInvID() { return InvID; } public SO_VInv setInvID(String value) { this.InvID = value; return this; } public String getInvoiceNo() { return InvoiceNo; } public SO_VInv setInvoiceNo(String value) { this.InvoiceNo = value; return this; } public String getInLogicalID() { return IN_LogicalID; } public SO_VInv setInLogicalID(String value) { this.IN_LogicalID = value; return this; } public Short getBillWhenComplete() { return BillWhenComplete; } public SO_VInv setBillWhenComplete(Short value) { this.BillWhenComplete = value; return this; } public String getOrderNo() { return OrderNo; } public SO_VInv setOrderNo(String value) { this.OrderNo = value; return this; } public Boolean isCreditNote() { return CreditNote; } public SO_VInv setCreditNote(Boolean value) { this.CreditNote = value; return this; } public Boolean isWholeSaleInvoice() { return WholeSaleInvoice; } public SO_VInv setWholeSaleInvoice(Boolean value) { this.WholeSaleInvoice = value; return this; } public String getTaxExemptNo() { return TaxExemptNo; } public SO_VInv setTaxExemptNo(String value) { this.TaxExemptNo = value; return this; } public Short getStatus() { return Status; } public SO_VInv setStatus(Short value) { this.Status = value; return this; } public String getStaffID() { return StaffID; } public SO_VInv setStaffID(String value) { this.StaffID = value; return this; } public String getBranchID() { return BranchID; } public SO_VInv setBranchID(String value) { this.BranchID = value; return this; } public Boolean isCreditIntoStock() { return CreditIntoStock; } public SO_VInv setCreditIntoStock(Boolean value) { this.CreditIntoStock = value; return this; } public String getInvoiceHistoryID() { return InvoiceHistoryID; } public SO_VInv setInvoiceHistoryID(String value) { this.InvoiceHistoryID = value; return this; } public BigDecimal getHistoryTotal() { return HistoryTotal; } public SO_VInv setHistoryTotal(BigDecimal value) { this.HistoryTotal = value; return this; } public BigDecimal getCartageCharge1() { return CartageCharge1; } public SO_VInv setCartageCharge1(BigDecimal value) { this.CartageCharge1 = value; return this; } public BigDecimal getCartageCharge2() { return CartageCharge2; } public SO_VInv setCartageCharge2(BigDecimal value) { this.CartageCharge2 = value; return this; } public BigDecimal getCartageCharge3() { return CartageCharge3; } public SO_VInv setCartageCharge3(BigDecimal value) { this.CartageCharge3 = value; return this; } public BigDecimal getFrieght() { return Frieght; } public SO_VInv setFrieght(BigDecimal value) { this.Frieght = value; return this; } public BigDecimal getFrt() { return Frt; } public SO_VInv setFrt(BigDecimal value) { this.Frt = value; return this; } public BigDecimal getFrtTax() { return FrtTax; } public SO_VInv setFrtTax(BigDecimal value) { this.FrtTax = value; return this; } public Short getProHistoryNo() { return ProHistoryNo; } public SO_VInv setProHistoryNo(Short value) { this.ProHistoryNo = value; return this; } public Short getInvHistoryNo() { return InvHistoryNo; } public SO_VInv setInvHistoryNo(Short value) { this.InvHistoryNo = value; return this; } public String getProRunNo() { return ProRunNo; } public SO_VInv setProRunNo(String value) { this.ProRunNo = value; return this; } public String getInvRunNo() { return InvRunNo; } public SO_VInv setInvRunNo(String value) { this.InvRunNo = value; return this; } public Date getProDate() { return ProDate; } public SO_VInv setProDate(Date value) { this.ProDate = value; return this; } public Date getInvDate() { return InvDate; } public SO_VInv setInvDate(Date value) { this.InvDate = value; return this; } public String getInvoiceLineID() { return InvoiceLineID; } public SO_VInv setInvoiceLineID(String value) { this.InvoiceLineID = value; return this; } public String getInventoryID() { return InventoryID; } public SO_VInv setInventoryID(String value) { this.InventoryID = value; return this; } public String getPartNo() { return PartNo; } public SO_VInv setPartNo(String value) { this.PartNo = value; return this; } public String getDescription() { return Description; } public SO_VInv setDescription(String value) { this.Description = value; return this; } public String getJobID() { return JobID; } public SO_VInv setJobID(String value) { this.JobID = value; return this; } public BigDecimal getCostIn() { return CostIn; } public SO_VInv setCostIn(BigDecimal value) { this.CostIn = value; return this; } public BigDecimal getQuantityThisDel() { return QuantityThisDel; } public SO_VInv setQuantityThisDel(BigDecimal value) { this.QuantityThisDel = value; return this; } public BigDecimal getCurrentLineTotal() { return CurrentLineTotal; } public SO_VInv setCurrentLineTotal(BigDecimal value) { this.CurrentLineTotal = value; return this; } public BigDecimal getTaxToCharge() { return TaxToCharge; } public SO_VInv setTaxToCharge(BigDecimal value) { this.TaxToCharge = value; return this; } public BigDecimal getTaxPaid() { return TaxPaid; } public SO_VInv setTaxPaid(BigDecimal value) { this.TaxPaid = value; return this; } public Short getDecimalPlaces() { return DecimalPlaces; } public SO_VInv setDecimalPlaces(Short value) { this.DecimalPlaces = value; return this; } public String getTaxID() { return TaxID; } public SO_VInv setTaxID(String value) { this.TaxID = value; return this; } public Short getPhysicalItem() { return PhysicalItem; } public SO_VInv setPhysicalItem(Short value) { this.PhysicalItem = value; return this; } public Boolean isNonStock() { return NonStock; } public SO_VInv setNonStock(Boolean value) { this.NonStock = value; return this; } public String getClassDescription() { return ClassDescription; } public SO_VInv setClassDescription(String value) { this.ClassDescription = value; return this; } public String getDebtorID() { return DebtorID; } public SO_VInv setDebtorID(String value) { this.DebtorID = value; return this; } public String getAccountNo() { return AccountNo; } public SO_VInv setAccountNo(String value) { this.AccountNo = value; return this; } public String getName() { return Name; } public SO_VInv setName(String value) { this.Name = value; return this; } public BigDecimal getLineCost() { return LineCost; } public SO_VInv setLineCost(BigDecimal value) { this.LineCost = value; return this; } public String getCat1Description() { return Cat1Description; } public SO_VInv setCat1Description(String value) { this.Cat1Description = value; return this; } public String getCat2Description() { return Cat2Description; } public SO_VInv setCat2Description(String value) { this.Cat2Description = value; return this; } public String getCat3Description() { return Cat3Description; } public SO_VInv setCat3Description(String value) { this.Cat3Description = value; return this; } } public static class SY_Branch { @Required() public String BranchID = null; @Required() public String Description = null; @Required() public String LedgerMask = null; public Short DefaultBranch = null; public String getBranchID() { return BranchID; } public SY_Branch setBranchID(String value) { this.BranchID = value; return this; } public String getDescription() { return Description; } public SY_Branch setDescription(String value) { this.Description = value; return this; } public String getLedgerMask() { return LedgerMask; } public SY_Branch setLedgerMask(String value) { this.LedgerMask = value; return this; } public Short getDefaultBranch() { return DefaultBranch; } public SY_Branch setDefaultBranch(Short value) { this.DefaultBranch = value; return this; } } public static class SY_BusinessLogic { @Required() public UUID RecID = null; @Required() public String Description = null; @Required() public String AssemblyFullName = null; @Required() public String ClassName = null; @Required() public Integer ItemNo = null; @Required() public ArrayList RowHash = null; public UUID getRecID() { return RecID; } public SY_BusinessLogic setRecID(UUID value) { this.RecID = value; return this; } public String getDescription() { return Description; } public SY_BusinessLogic setDescription(String value) { this.Description = value; return this; } public String getAssemblyFullName() { return AssemblyFullName; } public SY_BusinessLogic setAssemblyFullName(String value) { this.AssemblyFullName = value; return this; } public String getClassName() { return ClassName; } public SY_BusinessLogic setClassName(String value) { this.ClassName = value; return this; } public Integer getItemNo() { return ItemNo; } public SY_BusinessLogic setItemNo(Integer value) { this.ItemNo = value; return this; } public ArrayList getRowHash() { return RowHash; } public SY_BusinessLogic setRowHash(ArrayList value) { this.RowHash = value; return this; } } public static class SY_Custom_MaintenanceForm_Tabs { @Required() public UUID RecID = null; public String Description = null; @References(SY_Forms.class) @Required() public String SY_Forms_ClassName = null; @Required() public String HostTabControlName = null; @Required() public String TabKey = null; @Required() public String TabCaption = null; @Required() public String StoredProcedureName = null; @Required() public Boolean IsEnabled = null; @Required() public ArrayList RowHash = null; public UUID getRecID() { return RecID; } public SY_Custom_MaintenanceForm_Tabs setRecID(UUID value) { this.RecID = value; return this; } public String getDescription() { return Description; } public SY_Custom_MaintenanceForm_Tabs setDescription(String value) { this.Description = value; return this; } public String getSyFormsClassName() { return SY_Forms_ClassName; } public SY_Custom_MaintenanceForm_Tabs setSyFormsClassName(String value) { this.SY_Forms_ClassName = value; return this; } public String getHostTabControlName() { return HostTabControlName; } public SY_Custom_MaintenanceForm_Tabs setHostTabControlName(String value) { this.HostTabControlName = value; return this; } public String getTabKey() { return TabKey; } public SY_Custom_MaintenanceForm_Tabs setTabKey(String value) { this.TabKey = value; return this; } public String getTabCaption() { return TabCaption; } public SY_Custom_MaintenanceForm_Tabs setTabCaption(String value) { this.TabCaption = value; return this; } public String getStoredProcedureName() { return StoredProcedureName; } public SY_Custom_MaintenanceForm_Tabs setStoredProcedureName(String value) { this.StoredProcedureName = value; return this; } public Boolean getIsEnabled() { return IsEnabled; } public SY_Custom_MaintenanceForm_Tabs setIsEnabled(Boolean value) { this.IsEnabled = value; return this; } public ArrayList getRowHash() { return RowHash; } public SY_Custom_MaintenanceForm_Tabs setRowHash(ArrayList value) { this.RowHash = value; return this; } } public static class SY_DebtorImportSavedMappings { @Required() public String RecID = null; @References(SY_DebtorImportSavedMappingSets.class) @Required() public String SY_DebtorImportSavedMappingSets_RecID = null; public String SourceColumnName = null; @Required() public String DestinationProperty = null; @Required() public ArrayList RowHash = null; public String getRecID() { return RecID; } public SY_DebtorImportSavedMappings setRecID(String value) { this.RecID = value; return this; } public String getSyDebtorImportSavedMappingSetsRecID() { return SY_DebtorImportSavedMappingSets_RecID; } public SY_DebtorImportSavedMappings setSyDebtorImportSavedMappingSetsRecID(String value) { this.SY_DebtorImportSavedMappingSets_RecID = value; return this; } public String getSourceColumnName() { return SourceColumnName; } public SY_DebtorImportSavedMappings setSourceColumnName(String value) { this.SourceColumnName = value; return this; } public String getDestinationProperty() { return DestinationProperty; } public SY_DebtorImportSavedMappings setDestinationProperty(String value) { this.DestinationProperty = value; return this; } public ArrayList getRowHash() { return RowHash; } public SY_DebtorImportSavedMappings setRowHash(ArrayList value) { this.RowHash = value; return this; } } public static class SY_DebtorImportSavedMappingSets { @Required() public String RecID = null; @Required() public Date LastSavedDateTime = null; @References(HR_Staff.class) @Required() public String HR_Staff_RecID = null; @Required() public String Name = null; public String getRecID() { return RecID; } public SY_DebtorImportSavedMappingSets setRecID(String value) { this.RecID = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public SY_DebtorImportSavedMappingSets setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public String getHrStaffRecID() { return HR_Staff_RecID; } public SY_DebtorImportSavedMappingSets setHrStaffRecID(String value) { this.HR_Staff_RecID = value; return this; } public String getName() { return Name; } public SY_DebtorImportSavedMappingSets setName(String value) { this.Name = value; return this; } } public static class SY_Dialogs { @Required() public String RecID = null; public Integer DialogNo = null; @Required() public String AssemblyName = null; @Required() public String ClassName = null; public String getRecID() { return RecID; } public SY_Dialogs setRecID(String value) { this.RecID = value; return this; } public Integer getDialogNo() { return DialogNo; } public SY_Dialogs setDialogNo(Integer value) { this.DialogNo = value; return this; } public String getAssemblyName() { return AssemblyName; } public SY_Dialogs setAssemblyName(String value) { this.AssemblyName = value; return this; } public String getClassName() { return ClassName; } public SY_Dialogs setClassName(String value) { this.ClassName = value; return this; } } public static class SY_DialogSettings { @Required() public String RecID = null; @Required() public String SY_Dialogs_RecID = null; @Required() public String HR_Staff_RecID = null; @Required() public Short WindowState = null; @Required() public Integer Top = null; @Required() public Integer Left = null; @Required() public Integer Width = null; @Required() public Integer Height = null; public String Context = null; public String getRecID() { return RecID; } public SY_DialogSettings setRecID(String value) { this.RecID = value; return this; } public String getSyDialogsRecID() { return SY_Dialogs_RecID; } public SY_DialogSettings setSyDialogsRecID(String value) { this.SY_Dialogs_RecID = value; return this; } public String getHrStaffRecID() { return HR_Staff_RecID; } public SY_DialogSettings setHrStaffRecID(String value) { this.HR_Staff_RecID = value; return this; } public Short getWindowState() { return WindowState; } public SY_DialogSettings setWindowState(Short value) { this.WindowState = value; return this; } public Integer getTop() { return Top; } public SY_DialogSettings setTop(Integer value) { this.Top = value; return this; } public Integer getLeft() { return Left; } public SY_DialogSettings setLeft(Integer value) { this.Left = value; return this; } public Integer getWidth() { return Width; } public SY_DialogSettings setWidth(Integer value) { this.Width = value; return this; } public Integer getHeight() { return Height; } public SY_DialogSettings setHeight(Integer value) { this.Height = value; return this; } public String getContext() { return Context; } public SY_DialogSettings setContext(String value) { this.Context = value; return this; } } public static class SY_DocumentLinks { @Required() public String PKID = null; @Required() public String SourceDocDesc = null; public String SourceDocID = null; @Required() public String DestDocDesc = null; @Required() public String DestDocID = null; public String LinkDescriptor = null; public Date LastSavedDateTime = null; public Date DateCreated = null; @Required() public String StaffID = null; public String StaffName = null; public String getPkid() { return PKID; } public SY_DocumentLinks setPkid(String value) { this.PKID = value; return this; } public String getSourceDocDesc() { return SourceDocDesc; } public SY_DocumentLinks setSourceDocDesc(String value) { this.SourceDocDesc = value; return this; } public String getSourceDocID() { return SourceDocID; } public SY_DocumentLinks setSourceDocID(String value) { this.SourceDocID = value; return this; } public String getDestDocDesc() { return DestDocDesc; } public SY_DocumentLinks setDestDocDesc(String value) { this.DestDocDesc = value; return this; } public String getDestDocID() { return DestDocID; } public SY_DocumentLinks setDestDocID(String value) { this.DestDocID = value; return this; } public String getLinkDescriptor() { return LinkDescriptor; } public SY_DocumentLinks setLinkDescriptor(String value) { this.LinkDescriptor = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public SY_DocumentLinks setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getDateCreated() { return DateCreated; } public SY_DocumentLinks setDateCreated(Date value) { this.DateCreated = value; return this; } public String getStaffID() { return StaffID; } public SY_DocumentLinks setStaffID(String value) { this.StaffID = value; return this; } public String getStaffName() { return StaffName; } public SY_DocumentLinks setStaffName(String value) { this.StaffName = value; return this; } } public static class SY_DocumentTypes { @Required() public String RecID = null; @Required() public String DocumentType = null; public Boolean DefaultType = null; public String DocumentDescription = null; public Date LastSavedDateTime = null; @Required() public Integer ItemNo = null; @Required() public ArrayList RowHash = null; public String getRecID() { return RecID; } public SY_DocumentTypes setRecID(String value) { this.RecID = value; return this; } public String getDocumentType() { return DocumentType; } public SY_DocumentTypes setDocumentType(String value) { this.DocumentType = value; return this; } public Boolean isDefaultType() { return DefaultType; } public SY_DocumentTypes setDefaultType(Boolean value) { this.DefaultType = value; return this; } public String getDocumentDescription() { return DocumentDescription; } public SY_DocumentTypes setDocumentDescription(String value) { this.DocumentDescription = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public SY_DocumentTypes setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Integer getItemNo() { return ItemNo; } public SY_DocumentTypes setItemNo(Integer value) { this.ItemNo = value; return this; } public ArrayList getRowHash() { return RowHash; } public SY_DocumentTypes setRowHash(ArrayList value) { this.RowHash = value; return this; } } public static class SY_File { @Required() public String FileID = null; @Required() public Date LastSavedDateTime = null; @Required() public String PhysicalFileName = null; @Required() public String FullPhysicalFileName = null; public String FileDescription = null; @Required() public Boolean FileInDB = null; public ArrayList FileBinary = null; @Required() public ArrayList RowHash = null; public String getFileID() { return FileID; } public SY_File setFileID(String value) { this.FileID = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public SY_File setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public String getPhysicalFileName() { return PhysicalFileName; } public SY_File setPhysicalFileName(String value) { this.PhysicalFileName = value; return this; } public String getFullPhysicalFileName() { return FullPhysicalFileName; } public SY_File setFullPhysicalFileName(String value) { this.FullPhysicalFileName = value; return this; } public String getFileDescription() { return FileDescription; } public SY_File setFileDescription(String value) { this.FileDescription = value; return this; } public Boolean isFileInDB() { return FileInDB; } public SY_File setFileInDB(Boolean value) { this.FileInDB = value; return this; } public ArrayList getFileBinary() { return FileBinary; } public SY_File setFileBinary(ArrayList value) { this.FileBinary = value; return this; } public ArrayList getRowHash() { return RowHash; } public SY_File setRowHash(ArrayList value) { this.RowHash = value; return this; } } public static class SY_FilterDefaults { @Required() public String FilterDefID = null; @References(HR_Staff.class) @Required() public String StaffID = null; @Required() public Integer FilterNo = null; public Short SortOrderIndex = null; @Required() public Boolean GetDataOnLoad = null; public Short SortOrderType = null; public Short StartType = null; @References(SY_Filters.class) public String SY_Filters_RecID = null; public String getFilterDefID() { return FilterDefID; } public SY_FilterDefaults setFilterDefID(String value) { this.FilterDefID = value; return this; } public String getStaffID() { return StaffID; } public SY_FilterDefaults setStaffID(String value) { this.StaffID = value; return this; } public Integer getFilterNo() { return FilterNo; } public SY_FilterDefaults setFilterNo(Integer value) { this.FilterNo = value; return this; } public Short getSortOrderIndex() { return SortOrderIndex; } public SY_FilterDefaults setSortOrderIndex(Short value) { this.SortOrderIndex = value; return this; } public Boolean isGetDataOnLoad() { return GetDataOnLoad; } public SY_FilterDefaults setGetDataOnLoad(Boolean value) { this.GetDataOnLoad = value; return this; } public Short getSortOrderType() { return SortOrderType; } public SY_FilterDefaults setSortOrderType(Short value) { this.SortOrderType = value; return this; } public Short getStartType() { return StartType; } public SY_FilterDefaults setStartType(Short value) { this.StartType = value; return this; } public String getSyFiltersRecID() { return SY_Filters_RecID; } public SY_FilterDefaults setSyFiltersRecID(String value) { this.SY_Filters_RecID = value; return this; } } public static class SY_Filters { @Required() public String RecID = null; @Required() public Integer FilterNo = null; @Required() public String FilterString = null; public String Description = null; @Required() public Integer ItemNo = null; @Required() public String Name = null; public String getRecID() { return RecID; } public SY_Filters setRecID(String value) { this.RecID = value; return this; } public Integer getFilterNo() { return FilterNo; } public SY_Filters setFilterNo(Integer value) { this.FilterNo = value; return this; } public String getFilterString() { return FilterString; } public SY_Filters setFilterString(String value) { this.FilterString = value; return this; } public String getDescription() { return Description; } public SY_Filters setDescription(String value) { this.Description = value; return this; } public Integer getItemNo() { return ItemNo; } public SY_Filters setItemNo(Integer value) { this.ItemNo = value; return this; } public String getName() { return Name; } public SY_Filters setName(String value) { this.Name = value; return this; } } public static class SY_FiltersTemp { @Required() public String FilterID = null; public Short Section = null; public String Filter = null; public String Description = null; public String getFilterID() { return FilterID; } public SY_FiltersTemp setFilterID(String value) { this.FilterID = value; return this; } public Short getSection() { return Section; } public SY_FiltersTemp setSection(Short value) { this.Section = value; return this; } public String getFilter() { return Filter; } public SY_FiltersTemp setFilter(String value) { this.Filter = value; return this; } public String getDescription() { return Description; } public SY_FiltersTemp setDescription(String value) { this.Description = value; return this; } } public static class SY_FormReportDefinition { @Required() public String RecID = null; @Required() public String Description = null; @References(SY_Report.class) @Required() public String SY_Report_RecID = null; @References(SY_PrintGroupLogicalPrinter.class) public String SY_PrintGroupLogicalPrinter_RecID = null; @References(SY_Forms.class) @Required() public String SY_Forms_ClassName = null; @References(SY_PrintGroup.class) @Required() public String SY_PrintGroup_RecID = null; @Required() public Integer ItemNo = null; @Required() public ArrayList RowHash = null; @Required() public Date LastSavedDateTime = null; @Required() public Boolean IsDefault = null; public String getRecID() { return RecID; } public SY_FormReportDefinition setRecID(String value) { this.RecID = value; return this; } public String getDescription() { return Description; } public SY_FormReportDefinition setDescription(String value) { this.Description = value; return this; } public String getSyReportRecID() { return SY_Report_RecID; } public SY_FormReportDefinition setSyReportRecID(String value) { this.SY_Report_RecID = value; return this; } public String getSyPrintGroupLogicalPrinterRecID() { return SY_PrintGroupLogicalPrinter_RecID; } public SY_FormReportDefinition setSyPrintGroupLogicalPrinterRecID(String value) { this.SY_PrintGroupLogicalPrinter_RecID = value; return this; } public String getSyFormsClassName() { return SY_Forms_ClassName; } public SY_FormReportDefinition setSyFormsClassName(String value) { this.SY_Forms_ClassName = value; return this; } public String getSyPrintGroupRecID() { return SY_PrintGroup_RecID; } public SY_FormReportDefinition setSyPrintGroupRecID(String value) { this.SY_PrintGroup_RecID = value; return this; } public Integer getItemNo() { return ItemNo; } public SY_FormReportDefinition setItemNo(Integer value) { this.ItemNo = value; return this; } public ArrayList getRowHash() { return RowHash; } public SY_FormReportDefinition setRowHash(ArrayList value) { this.RowHash = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public SY_FormReportDefinition setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Boolean getIsDefault() { return IsDefault; } public SY_FormReportDefinition setIsDefault(Boolean value) { this.IsDefault = value; return this; } } public static class SY_Forms { @Required() public String ClassName = null; public String Description = null; public Integer FormType = null; public String HelpFileName = null; public String HelpPageName = null; public String AssemblyFullName = null; public String getClassName() { return ClassName; } public SY_Forms setClassName(String value) { this.ClassName = value; return this; } public String getDescription() { return Description; } public SY_Forms setDescription(String value) { this.Description = value; return this; } public Integer getFormType() { return FormType; } public SY_Forms setFormType(Integer value) { this.FormType = value; return this; } public String getHelpFileName() { return HelpFileName; } public SY_Forms setHelpFileName(String value) { this.HelpFileName = value; return this; } public String getHelpPageName() { return HelpPageName; } public SY_Forms setHelpPageName(String value) { this.HelpPageName = value; return this; } public String getAssemblyFullName() { return AssemblyFullName; } public SY_Forms setAssemblyFullName(String value) { this.AssemblyFullName = value; return this; } } public static class SY_FormsAbstractPermissions { @Required() public UUID RecID = null; @References(SY_Forms.class) @Required() public String SY_Forms_ClassName = null; public String Name = null; public String Description = null; @Required() public Integer ItemNo = null; @Required() public ArrayList RowHash = null; public UUID getRecID() { return RecID; } public SY_FormsAbstractPermissions setRecID(UUID value) { this.RecID = value; return this; } public String getSyFormsClassName() { return SY_Forms_ClassName; } public SY_FormsAbstractPermissions setSyFormsClassName(String value) { this.SY_Forms_ClassName = value; return this; } public String getName() { return Name; } public SY_FormsAbstractPermissions setName(String value) { this.Name = value; return this; } public String getDescription() { return Description; } public SY_FormsAbstractPermissions setDescription(String value) { this.Description = value; return this; } public Integer getItemNo() { return ItemNo; } public SY_FormsAbstractPermissions setItemNo(Integer value) { this.ItemNo = value; return this; } public ArrayList getRowHash() { return RowHash; } public SY_FormsAbstractPermissions setRowHash(ArrayList value) { this.RowHash = value; return this; } } public static class SY_FormSettings { @Required() public String RecID = null; @References(SY_Forms.class) @Required() public String SY_Forms_ClassName = null; @Required() public String HR_Staff_RecID = null; @Required() public Short WindowState = null; @Required() public Integer Top = null; @Required() public Integer Left = null; @Required() public Integer Width = null; @Required() public Integer Height = null; public String Context = null; public Boolean Floating = null; public String getRecID() { return RecID; } public SY_FormSettings setRecID(String value) { this.RecID = value; return this; } public String getSyFormsClassName() { return SY_Forms_ClassName; } public SY_FormSettings setSyFormsClassName(String value) { this.SY_Forms_ClassName = value; return this; } public String getHrStaffRecID() { return HR_Staff_RecID; } public SY_FormSettings setHrStaffRecID(String value) { this.HR_Staff_RecID = value; return this; } public Short getWindowState() { return WindowState; } public SY_FormSettings setWindowState(Short value) { this.WindowState = value; return this; } public Integer getTop() { return Top; } public SY_FormSettings setTop(Integer value) { this.Top = value; return this; } public Integer getLeft() { return Left; } public SY_FormSettings setLeft(Integer value) { this.Left = value; return this; } public Integer getWidth() { return Width; } public SY_FormSettings setWidth(Integer value) { this.Width = value; return this; } public Integer getHeight() { return Height; } public SY_FormSettings setHeight(Integer value) { this.Height = value; return this; } public String getContext() { return Context; } public SY_FormSettings setContext(String value) { this.Context = value; return this; } public Boolean isFloating() { return Floating; } public SY_FormSettings setFloating(Boolean value) { this.Floating = value; return this; } } public static class SY_Icon { @Required() public String RecID = null; @Required() public String Name = null; public String Description = null; @Required() public ArrayList IconBinary = null; @Required() public String IconFileHash = null; @Required() public Boolean IsReadOnly = null; @Required() public ArrayList RowHash = null; public String getRecID() { return RecID; } public SY_Icon setRecID(String value) { this.RecID = value; return this; } public String getName() { return Name; } public SY_Icon setName(String value) { this.Name = value; return this; } public String getDescription() { return Description; } public SY_Icon setDescription(String value) { this.Description = value; return this; } public ArrayList getIconBinary() { return IconBinary; } public SY_Icon setIconBinary(ArrayList value) { this.IconBinary = value; return this; } public String getIconFileHash() { return IconFileHash; } public SY_Icon setIconFileHash(String value) { this.IconFileHash = value; return this; } public Boolean getIsReadOnly() { return IsReadOnly; } public SY_Icon setIsReadOnly(Boolean value) { this.IsReadOnly = value; return this; } public ArrayList getRowHash() { return RowHash; } public SY_Icon setRowHash(ArrayList value) { this.RowHash = value; return this; } } public static class SY_Image { @Required() public UUID RecID = null; @Required() public String Name = null; @Required() public ArrayList ImageBinary = null; @Required() public Boolean IsReadOnly = null; @Required() public Integer ItemNo = null; public Date LastSavedDateTime = null; @Required() public ArrayList RowHash = null; public UUID getRecID() { return RecID; } public SY_Image setRecID(UUID value) { this.RecID = value; return this; } public String getName() { return Name; } public SY_Image setName(String value) { this.Name = value; return this; } public ArrayList getImageBinary() { return ImageBinary; } public SY_Image setImageBinary(ArrayList value) { this.ImageBinary = value; return this; } public Boolean getIsReadOnly() { return IsReadOnly; } public SY_Image setIsReadOnly(Boolean value) { this.IsReadOnly = value; return this; } public Integer getItemNo() { return ItemNo; } public SY_Image setItemNo(Integer value) { this.ItemNo = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public SY_Image setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public ArrayList getRowHash() { return RowHash; } public SY_Image setRowHash(ArrayList value) { this.RowHash = value; return this; } } public static class SY_IntegrityCheckProvider { @Required() public UUID RecID = null; @Required() public String Name = null; public String Description = null; @Required() public Integer ItemNo = null; @Required() public String StoredProcedureName = null; @Required() public ArrayList RowHash = null; @Required() public Boolean IsEnabled = null; public UUID getRecID() { return RecID; } public SY_IntegrityCheckProvider setRecID(UUID value) { this.RecID = value; return this; } public String getName() { return Name; } public SY_IntegrityCheckProvider setName(String value) { this.Name = value; return this; } public String getDescription() { return Description; } public SY_IntegrityCheckProvider setDescription(String value) { this.Description = value; return this; } public Integer getItemNo() { return ItemNo; } public SY_IntegrityCheckProvider setItemNo(Integer value) { this.ItemNo = value; return this; } public String getStoredProcedureName() { return StoredProcedureName; } public SY_IntegrityCheckProvider setStoredProcedureName(String value) { this.StoredProcedureName = value; return this; } public ArrayList getRowHash() { return RowHash; } public SY_IntegrityCheckProvider setRowHash(ArrayList value) { this.RowHash = value; return this; } public Boolean getIsEnabled() { return IsEnabled; } public SY_IntegrityCheckProvider setIsEnabled(Boolean value) { this.IsEnabled = value; return this; } } public static class SY_InventoryImportSavedMappings { @Required() public String RecID = null; @References(SY_InventoryImportSavedMappingSets.class) @Required() public String SY_InventoryImportSavedMappingSets_RecID = null; public String SourceColumnName = null; @Required() public String DestinationProperty = null; @Required() public ArrayList RowHash = null; public String getRecID() { return RecID; } public SY_InventoryImportSavedMappings setRecID(String value) { this.RecID = value; return this; } public String getSyInventoryImportSavedMappingSetsRecID() { return SY_InventoryImportSavedMappingSets_RecID; } public SY_InventoryImportSavedMappings setSyInventoryImportSavedMappingSetsRecID(String value) { this.SY_InventoryImportSavedMappingSets_RecID = value; return this; } public String getSourceColumnName() { return SourceColumnName; } public SY_InventoryImportSavedMappings setSourceColumnName(String value) { this.SourceColumnName = value; return this; } public String getDestinationProperty() { return DestinationProperty; } public SY_InventoryImportSavedMappings setDestinationProperty(String value) { this.DestinationProperty = value; return this; } public ArrayList getRowHash() { return RowHash; } public SY_InventoryImportSavedMappings setRowHash(ArrayList value) { this.RowHash = value; return this; } } public static class SY_InventoryImportSavedMappingSets { @Required() public String RecID = null; @Required() public Date LastSavedDateTime = null; @References(HR_Staff.class) @Required() public String HR_Staff_RecID = null; @Required() public String Name = null; public String getRecID() { return RecID; } public SY_InventoryImportSavedMappingSets setRecID(String value) { this.RecID = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public SY_InventoryImportSavedMappingSets setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public String getHrStaffRecID() { return HR_Staff_RecID; } public SY_InventoryImportSavedMappingSets setHrStaffRecID(String value) { this.HR_Staff_RecID = value; return this; } public String getName() { return Name; } public SY_InventoryImportSavedMappingSets setName(String value) { this.Name = value; return this; } } public static class SY_Language { @Required() public String RecID = null; @Required() public String Description = null; public String LanguageCode = null; @Required() public Boolean IsDefault = null; public String getRecID() { return RecID; } public SY_Language setRecID(String value) { this.RecID = value; return this; } public String getDescription() { return Description; } public SY_Language setDescription(String value) { this.Description = value; return this; } public String getLanguageCode() { return LanguageCode; } public SY_Language setLanguageCode(String value) { this.LanguageCode = value; return this; } public Boolean getIsDefault() { return IsDefault; } public SY_Language setIsDefault(Boolean value) { this.IsDefault = value; return this; } } public static class SY_Licence { @Required() public String RecID = null; @Required() public String ResourceID = null; @Required() public String ResourceName = null; @Required() public Date IssueDate = null; @Required() public String Scope = null; public String Note = null; @Required() public Date CommenceDate = null; @Required() public Date ExpiryDate = null; @Required() public Integer CALs = null; @Required() public String Version = null; @Required() public String CompanyName = null; @Required() public String Signature = null; public String getRecID() { return RecID; } public SY_Licence setRecID(String value) { this.RecID = value; return this; } public String getResourceID() { return ResourceID; } public SY_Licence setResourceID(String value) { this.ResourceID = value; return this; } public String getResourceName() { return ResourceName; } public SY_Licence setResourceName(String value) { this.ResourceName = value; return this; } public Date getIssueDate() { return IssueDate; } public SY_Licence setIssueDate(Date value) { this.IssueDate = value; return this; } public String getScope() { return Scope; } public SY_Licence setScope(String value) { this.Scope = value; return this; } public String getNote() { return Note; } public SY_Licence setNote(String value) { this.Note = value; return this; } public Date getCommenceDate() { return CommenceDate; } public SY_Licence setCommenceDate(Date value) { this.CommenceDate = value; return this; } public Date getExpiryDate() { return ExpiryDate; } public SY_Licence setExpiryDate(Date value) { this.ExpiryDate = value; return this; } public Integer getCaLs() { return CALs; } public SY_Licence setCaLs(Integer value) { this.CALs = value; return this; } public String getVersion() { return Version; } public SY_Licence setVersion(String value) { this.Version = value; return this; } public String getCompanyName() { return CompanyName; } public SY_Licence setCompanyName(String value) { this.CompanyName = value; return this; } public String getSignature() { return Signature; } public SY_Licence setSignature(String value) { this.Signature = value; return this; } } public static class SY_LicenceUsage { @References(SY_Licence.class) @Required() public String SY_Licence_RecID = null; @References(HR_Staff.class) @Required() public String HR_Staff_StaffID = null; @Required() public Date LastSavedDateTime = null; @Required() public ArrayList RowHash = null; public String getSyLicenceRecID() { return SY_Licence_RecID; } public SY_LicenceUsage setSyLicenceRecID(String value) { this.SY_Licence_RecID = value; return this; } public String getHrStaffStaffID() { return HR_Staff_StaffID; } public SY_LicenceUsage setHrStaffStaffID(String value) { this.HR_Staff_StaffID = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public SY_LicenceUsage setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public ArrayList getRowHash() { return RowHash; } public SY_LicenceUsage setRowHash(ArrayList value) { this.RowHash = value; return this; } } public static class SY_LoginAudit { @Required() public String RecID = null; @Required() public String UserName = null; @Required() public String IPAddress = null; @Required() public String HostName = null; @Required() public Date AuditDateTime = null; @Required() public Short AuditResult = null; public String getRecID() { return RecID; } public SY_LoginAudit setRecID(String value) { this.RecID = value; return this; } public String getUserName() { return UserName; } public SY_LoginAudit setUserName(String value) { this.UserName = value; return this; } public String getIpAddress() { return IPAddress; } public SY_LoginAudit setIpAddress(String value) { this.IPAddress = value; return this; } public String getHostName() { return HostName; } public SY_LoginAudit setHostName(String value) { this.HostName = value; return this; } public Date getAuditDateTime() { return AuditDateTime; } public SY_LoginAudit setAuditDateTime(Date value) { this.AuditDateTime = value; return this; } public Short getAuditResult() { return AuditResult; } public SY_LoginAudit setAuditResult(Short value) { this.AuditResult = value; return this; } } public static class SY_Menu { @Required() public String RecID = null; @Required() public String Name = null; @Required() public String Description = null; @Required() public Boolean IsEnabled = null; @Required() public Date LastSavedDateTime = null; @Required() public ArrayList RowHash = null; @Required() public Boolean IsReadOnly = null; public String getRecID() { return RecID; } public SY_Menu setRecID(String value) { this.RecID = value; return this; } public String getName() { return Name; } public SY_Menu setName(String value) { this.Name = value; return this; } public String getDescription() { return Description; } public SY_Menu setDescription(String value) { this.Description = value; return this; } public Boolean getIsEnabled() { return IsEnabled; } public SY_Menu setIsEnabled(Boolean value) { this.IsEnabled = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public SY_Menu setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public ArrayList getRowHash() { return RowHash; } public SY_Menu setRowHash(ArrayList value) { this.RowHash = value; return this; } public Boolean getIsReadOnly() { return IsReadOnly; } public SY_Menu setIsReadOnly(Boolean value) { this.IsReadOnly = value; return this; } } public static class SY_MenuItem { @Required() public String RecID = null; @References(SY_Menu.class) @Required() public String SY_Menu_RecID = null; @Required() public Short Type = null; @Required() public String Caption = null; public String SY_MenuItem_RecID = null; @Required() public Integer ItemNo = null; @Required() public Date LastSavedDateTime = null; @Required() public ArrayList RowHash = null; @References(SY_Image.class) public UUID SY_Image_RecID = null; @References(SY_Image.class) public UUID SY_Image_RecID_Selected = null; @References(SY_Image.class) public UUID SY_Image_RecID_HotTracked = null; public String getRecID() { return RecID; } public SY_MenuItem setRecID(String value) { this.RecID = value; return this; } public String getSyMenuRecID() { return SY_Menu_RecID; } public SY_MenuItem setSyMenuRecID(String value) { this.SY_Menu_RecID = value; return this; } public Short getType() { return Type; } public SY_MenuItem setType(Short value) { this.Type = value; return this; } public String getCaption() { return Caption; } public SY_MenuItem setCaption(String value) { this.Caption = value; return this; } public String getSyMenuItemRecID() { return SY_MenuItem_RecID; } public SY_MenuItem setSyMenuItemRecID(String value) { this.SY_MenuItem_RecID = value; return this; } public Integer getItemNo() { return ItemNo; } public SY_MenuItem setItemNo(Integer value) { this.ItemNo = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public SY_MenuItem setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public ArrayList getRowHash() { return RowHash; } public SY_MenuItem setRowHash(ArrayList value) { this.RowHash = value; return this; } public UUID getSyImageRecID() { return SY_Image_RecID; } public SY_MenuItem setSyImageRecID(UUID value) { this.SY_Image_RecID = value; return this; } public UUID getSyImageRecIDSelected() { return SY_Image_RecID_Selected; } public SY_MenuItem setSyImageRecIDSelected(UUID value) { this.SY_Image_RecID_Selected = value; return this; } public UUID getSyImageRecIDHotTracked() { return SY_Image_RecID_HotTracked; } public SY_MenuItem setSyImageRecIDHotTracked(UUID value) { this.SY_Image_RecID_HotTracked = value; return this; } } public static class SY_MenuItemForm { @Required() public String RecID = null; @References(SY_MenuItem.class) @Required() public String SY_MenuItem_RecID = null; @References(SY_Forms.class) @Required() public String SY_Forms_ClassName = null; @Required() public Date LastSavedDateTime = null; @Required() public ArrayList RowHash = null; public String getRecID() { return RecID; } public SY_MenuItemForm setRecID(String value) { this.RecID = value; return this; } public String getSyMenuItemRecID() { return SY_MenuItem_RecID; } public SY_MenuItemForm setSyMenuItemRecID(String value) { this.SY_MenuItem_RecID = value; return this; } public String getSyFormsClassName() { return SY_Forms_ClassName; } public SY_MenuItemForm setSyFormsClassName(String value) { this.SY_Forms_ClassName = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public SY_MenuItemForm setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public ArrayList getRowHash() { return RowHash; } public SY_MenuItemForm setRowHash(ArrayList value) { this.RowHash = value; return this; } } public static class SY_MenuItemReport { @Required() public String RecID = null; @References(SY_MenuItem.class) @Required() public String SY_MenuItem_RecID = null; @References(SY_Report.class) @Required() public String SY_Report_RecID = null; @Required() public Date LastSavedDateTime = null; @Required() public ArrayList RowHash = null; public String getRecID() { return RecID; } public SY_MenuItemReport setRecID(String value) { this.RecID = value; return this; } public String getSyMenuItemRecID() { return SY_MenuItem_RecID; } public SY_MenuItemReport setSyMenuItemRecID(String value) { this.SY_MenuItem_RecID = value; return this; } public String getSyReportRecID() { return SY_Report_RecID; } public SY_MenuItemReport setSyReportRecID(String value) { this.SY_Report_RecID = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public SY_MenuItemReport setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public ArrayList getRowHash() { return RowHash; } public SY_MenuItemReport setRowHash(ArrayList value) { this.RowHash = value; return this; } } public static class SY_MessageLinks { @Required() public String RecID = null; @Required() public String Source = null; @Required() public String LinkName = null; @Required() public String Caption = null; public String Description = null; @Required() public String ScriptText = null; @Required() public Date LastSavedDateTime = null; public String getRecID() { return RecID; } public SY_MessageLinks setRecID(String value) { this.RecID = value; return this; } public String getSource() { return Source; } public SY_MessageLinks setSource(String value) { this.Source = value; return this; } public String getLinkName() { return LinkName; } public SY_MessageLinks setLinkName(String value) { this.LinkName = value; return this; } public String getCaption() { return Caption; } public SY_MessageLinks setCaption(String value) { this.Caption = value; return this; } public String getDescription() { return Description; } public SY_MessageLinks setDescription(String value) { this.Description = value; return this; } public String getScriptText() { return ScriptText; } public SY_MessageLinks setScriptText(String value) { this.ScriptText = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public SY_MessageLinks setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } } public static class SY_NoteTypes { @Required() public String RecID = null; @Required() public String NoteType = null; public Boolean DefaultType = null; public String NoteTypeDescription = null; public Date LastSavedDateTime = null; @Required() public Integer ItemNo = null; @Required() public ArrayList RowHash = null; public String getRecID() { return RecID; } public SY_NoteTypes setRecID(String value) { this.RecID = value; return this; } public String getNoteType() { return NoteType; } public SY_NoteTypes setNoteType(String value) { this.NoteType = value; return this; } public Boolean isDefaultType() { return DefaultType; } public SY_NoteTypes setDefaultType(Boolean value) { this.DefaultType = value; return this; } public String getNoteTypeDescription() { return NoteTypeDescription; } public SY_NoteTypes setNoteTypeDescription(String value) { this.NoteTypeDescription = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public SY_NoteTypes setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Integer getItemNo() { return ItemNo; } public SY_NoteTypes setItemNo(Integer value) { this.ItemNo = value; return this; } public ArrayList getRowHash() { return RowHash; } public SY_NoteTypes setRowHash(ArrayList value) { this.RowHash = value; return this; } } public static class SY_Numbers { @Required() public String InvoiceNumberID = null; public String Description = null; public String LastInvoiceNo = null; @Required() public Date LastSavedDateTime = null; public String getInvoiceNumberID() { return InvoiceNumberID; } public SY_Numbers setInvoiceNumberID(String value) { this.InvoiceNumberID = value; return this; } public String getDescription() { return Description; } public SY_Numbers setDescription(String value) { this.Description = value; return this; } public String getLastInvoiceNo() { return LastInvoiceNo; } public SY_Numbers setLastInvoiceNo(String value) { this.LastInvoiceNo = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public SY_Numbers setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } } public static class SY_Plugin { @Required() public UUID RecID = null; @Required() public String Name = null; public String Description = null; public Boolean IsEnabled = null; @Required() public Integer ExecutionOrder = null; @Required() public String Author = null; @Required() public String Version = null; @Required() public String LicenceKey = null; public String ViewPassword = null; public String EditPassword = null; public Boolean IsEncrypted = null; @Required() public ArrayList RowHash = null; public String Code = null; @Required() public Short ExceptionPolicy = null; public Boolean IsIsolatedToOwnAppDomain = null; public String FileHash = null; @Required() public Date CreateDateTime = null; @Required() public Date LastWriteDateTime = null; @Required() public Short Language = null; public UUID getRecID() { return RecID; } public SY_Plugin setRecID(UUID value) { this.RecID = value; return this; } public String getName() { return Name; } public SY_Plugin setName(String value) { this.Name = value; return this; } public String getDescription() { return Description; } public SY_Plugin setDescription(String value) { this.Description = value; return this; } public Boolean getIsEnabled() { return IsEnabled; } public SY_Plugin setIsEnabled(Boolean value) { this.IsEnabled = value; return this; } public Integer getExecutionOrder() { return ExecutionOrder; } public SY_Plugin setExecutionOrder(Integer value) { this.ExecutionOrder = value; return this; } public String getAuthor() { return Author; } public SY_Plugin setAuthor(String value) { this.Author = value; return this; } public String getVersion() { return Version; } public SY_Plugin setVersion(String value) { this.Version = value; return this; } public String getLicenceKey() { return LicenceKey; } public SY_Plugin setLicenceKey(String value) { this.LicenceKey = value; return this; } public String getViewPassword() { return ViewPassword; } public SY_Plugin setViewPassword(String value) { this.ViewPassword = value; return this; } public String getEditPassword() { return EditPassword; } public SY_Plugin setEditPassword(String value) { this.EditPassword = value; return this; } public Boolean getIsEncrypted() { return IsEncrypted; } public SY_Plugin setIsEncrypted(Boolean value) { this.IsEncrypted = value; return this; } public ArrayList getRowHash() { return RowHash; } public SY_Plugin setRowHash(ArrayList value) { this.RowHash = value; return this; } public String getCode() { return Code; } public SY_Plugin setCode(String value) { this.Code = value; return this; } public Short getExceptionPolicy() { return ExceptionPolicy; } public SY_Plugin setExceptionPolicy(Short value) { this.ExceptionPolicy = value; return this; } public Boolean getIsIsolatedToOwnAppDomain() { return IsIsolatedToOwnAppDomain; } public SY_Plugin setIsIsolatedToOwnAppDomain(Boolean value) { this.IsIsolatedToOwnAppDomain = value; return this; } public String getFileHash() { return FileHash; } public SY_Plugin setFileHash(String value) { this.FileHash = value; return this; } public Date getCreateDateTime() { return CreateDateTime; } public SY_Plugin setCreateDateTime(Date value) { this.CreateDateTime = value; return this; } public Date getLastWriteDateTime() { return LastWriteDateTime; } public SY_Plugin setLastWriteDateTime(Date value) { this.LastWriteDateTime = value; return this; } public Short getLanguage() { return Language; } public SY_Plugin setLanguage(Short value) { this.Language = value; return this; } } public static class JB_EstimateNotes { @Required() public String RecID = null; @References(JB_Estimates.class) @Required() public String JB_Estimate_RecID = null; @Required() public String NoteTypeID = null; @Required() public Date LastSavedDateTime = null; @References(HR_Staff.class) @Required() public String LastSavedByStaffID = null; public String NoteText = null; @Required() public Integer ItemNo = null; public String getRecID() { return RecID; } public JB_EstimateNotes setRecID(String value) { this.RecID = value; return this; } public String getJbEstimateRecID() { return JB_Estimate_RecID; } public JB_EstimateNotes setJbEstimateRecID(String value) { this.JB_Estimate_RecID = value; return this; } public String getNoteTypeID() { return NoteTypeID; } public JB_EstimateNotes setNoteTypeID(String value) { this.NoteTypeID = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public JB_EstimateNotes setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public String getLastSavedByStaffID() { return LastSavedByStaffID; } public JB_EstimateNotes setLastSavedByStaffID(String value) { this.LastSavedByStaffID = value; return this; } public String getNoteText() { return NoteText; } public JB_EstimateNotes setNoteText(String value) { this.NoteText = value; return this; } public Integer getItemNo() { return ItemNo; } public JB_EstimateNotes setItemNo(Integer value) { this.ItemNo = value; return this; } } public static class JB_EstimatePurchaseLines { @Required() public String RecID = null; @References(JB_JobStages.class) @Required() public String JB_JobStages_RecID = null; @References(CR_Main.class) @Required() public String CR_Main_RecID = null; @Required() public Date TransactionDate = null; @Required() public BigDecimal Quantity = null; @Required() public BigDecimal UnitCost = null; @Required() public BigDecimal UnitCharge = null; public String Remark = null; @Required() public Date LastSavedDateTime = null; @References(HR_Staff.class) @Required() public String HR_Staff_RecID = null; @Required() public ArrayList RowHash = null; public String Units = null; @Required() public String JB_EstimateLines_RecID = null; public String getRecID() { return RecID; } public JB_EstimatePurchaseLines setRecID(String value) { this.RecID = value; return this; } public String getJbJobStagesRecID() { return JB_JobStages_RecID; } public JB_EstimatePurchaseLines setJbJobStagesRecID(String value) { this.JB_JobStages_RecID = value; return this; } public String getCrMainRecID() { return CR_Main_RecID; } public JB_EstimatePurchaseLines setCrMainRecID(String value) { this.CR_Main_RecID = value; return this; } public Date getTransactionDate() { return TransactionDate; } public JB_EstimatePurchaseLines setTransactionDate(Date value) { this.TransactionDate = value; return this; } public BigDecimal getQuantity() { return Quantity; } public JB_EstimatePurchaseLines setQuantity(BigDecimal value) { this.Quantity = value; return this; } public BigDecimal getUnitCost() { return UnitCost; } public JB_EstimatePurchaseLines setUnitCost(BigDecimal value) { this.UnitCost = value; return this; } public BigDecimal getUnitCharge() { return UnitCharge; } public JB_EstimatePurchaseLines setUnitCharge(BigDecimal value) { this.UnitCharge = value; return this; } public String getRemark() { return Remark; } public JB_EstimatePurchaseLines setRemark(String value) { this.Remark = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public JB_EstimatePurchaseLines setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public String getHrStaffRecID() { return HR_Staff_RecID; } public JB_EstimatePurchaseLines setHrStaffRecID(String value) { this.HR_Staff_RecID = value; return this; } public ArrayList getRowHash() { return RowHash; } public JB_EstimatePurchaseLines setRowHash(ArrayList value) { this.RowHash = value; return this; } public String getUnits() { return Units; } public JB_EstimatePurchaseLines setUnits(String value) { this.Units = value; return this; } public String getJbEstimateLinesRecID() { return JB_EstimateLines_RecID; } public JB_EstimatePurchaseLines setJbEstimateLinesRecID(String value) { this.JB_EstimateLines_RecID = value; return this; } } public static class JB_EstimateResourceLines { @Required() public String RecID = null; @References(JB_JobStages.class) @Required() public String JB_JobStages_RecID = null; @References(JB_Resources.class) @Required() public String JB_Resources_RecID = null; @Required() public Date TransactionDate = null; @Required() public BigDecimal Quantity = null; @Required() public BigDecimal UnitCost = null; @Required() public BigDecimal UnitCharge = null; public String Remark = null; @Required() public Date LastSavedDateTime = null; @References(HR_Staff.class) @Required() public String HR_Staff_RecID = null; @Required() public ArrayList RowHash = null; public String Units = null; @Required() public String JB_EstimateLines_RecID = null; public String getRecID() { return RecID; } public JB_EstimateResourceLines setRecID(String value) { this.RecID = value; return this; } public String getJbJobStagesRecID() { return JB_JobStages_RecID; } public JB_EstimateResourceLines setJbJobStagesRecID(String value) { this.JB_JobStages_RecID = value; return this; } public String getJbResourcesRecID() { return JB_Resources_RecID; } public JB_EstimateResourceLines setJbResourcesRecID(String value) { this.JB_Resources_RecID = value; return this; } public Date getTransactionDate() { return TransactionDate; } public JB_EstimateResourceLines setTransactionDate(Date value) { this.TransactionDate = value; return this; } public BigDecimal getQuantity() { return Quantity; } public JB_EstimateResourceLines setQuantity(BigDecimal value) { this.Quantity = value; return this; } public BigDecimal getUnitCost() { return UnitCost; } public JB_EstimateResourceLines setUnitCost(BigDecimal value) { this.UnitCost = value; return this; } public BigDecimal getUnitCharge() { return UnitCharge; } public JB_EstimateResourceLines setUnitCharge(BigDecimal value) { this.UnitCharge = value; return this; } public String getRemark() { return Remark; } public JB_EstimateResourceLines setRemark(String value) { this.Remark = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public JB_EstimateResourceLines setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public String getHrStaffRecID() { return HR_Staff_RecID; } public JB_EstimateResourceLines setHrStaffRecID(String value) { this.HR_Staff_RecID = value; return this; } public ArrayList getRowHash() { return RowHash; } public JB_EstimateResourceLines setRowHash(ArrayList value) { this.RowHash = value; return this; } public String getUnits() { return Units; } public JB_EstimateResourceLines setUnits(String value) { this.Units = value; return this; } public String getJbEstimateLinesRecID() { return JB_EstimateLines_RecID; } public JB_EstimateResourceLines setJbEstimateLinesRecID(String value) { this.JB_EstimateLines_RecID = value; return this; } } public static class JB_Estimates { @Required() public String RecID = null; @Required() public String EstimateNo = null; public String Description = null; @References(JB_Main.class) @Required() public String JB_Main_RecID = null; @Required() public Date LastSavedDateTime = null; @References(HR_Staff.class) @Required() public String HR_Staff_RecID = null; @References(IN_Logical.class) @Required() public String IN_Logical_RecID = null; @Required() public Boolean IsDefault = null; @Required() public ArrayList RowHash = null; public String getRecID() { return RecID; } public JB_Estimates setRecID(String value) { this.RecID = value; return this; } public String getEstimateNo() { return EstimateNo; } public JB_Estimates setEstimateNo(String value) { this.EstimateNo = value; return this; } public String getDescription() { return Description; } public JB_Estimates setDescription(String value) { this.Description = value; return this; } public String getJbMainRecID() { return JB_Main_RecID; } public JB_Estimates setJbMainRecID(String value) { this.JB_Main_RecID = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public JB_Estimates setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public String getHrStaffRecID() { return HR_Staff_RecID; } public JB_Estimates setHrStaffRecID(String value) { this.HR_Staff_RecID = value; return this; } public String getInLogicalRecID() { return IN_Logical_RecID; } public JB_Estimates setInLogicalRecID(String value) { this.IN_Logical_RecID = value; return this; } public Boolean getIsDefault() { return IsDefault; } public JB_Estimates setIsDefault(Boolean value) { this.IsDefault = value; return this; } public ArrayList getRowHash() { return RowHash; } public JB_Estimates setRowHash(ArrayList value) { this.RowHash = value; return this; } } public static class JB_Groups { @Required() public String RecID = null; @Required() public String Name = null; public String Description = null; @Required() public Integer ItemNo = null; public Boolean IsEnabled = null; @Required() public ArrayList RowHash = null; public Boolean IsDefault = null; public String getRecID() { return RecID; } public JB_Groups setRecID(String value) { this.RecID = value; return this; } public String getName() { return Name; } public JB_Groups setName(String value) { this.Name = value; return this; } public String getDescription() { return Description; } public JB_Groups setDescription(String value) { this.Description = value; return this; } public Integer getItemNo() { return ItemNo; } public JB_Groups setItemNo(Integer value) { this.ItemNo = value; return this; } public Boolean getIsEnabled() { return IsEnabled; } public JB_Groups setIsEnabled(Boolean value) { this.IsEnabled = value; return this; } public ArrayList getRowHash() { return RowHash; } public JB_Groups setRowHash(ArrayList value) { this.RowHash = value; return this; } public Boolean getIsDefault() { return IsDefault; } public JB_Groups setIsDefault(Boolean value) { this.IsDefault = value; return this; } } public static class JB_JobCostCentres { @Required() public String RecID = null; @References(JB_Main.class) @Required() public String JobID = null; @References(JB_CostCentres.class) @Required() public String JB_CostCentres_RecID = null; @Required() public ArrayList RowHash = null; public String getRecID() { return RecID; } public JB_JobCostCentres setRecID(String value) { this.RecID = value; return this; } public String getJobID() { return JobID; } public JB_JobCostCentres setJobID(String value) { this.JobID = value; return this; } public String getJbCostCentresRecID() { return JB_CostCentres_RecID; } public JB_JobCostCentres setJbCostCentresRecID(String value) { this.JB_CostCentres_RecID = value; return this; } public ArrayList getRowHash() { return RowHash; } public JB_JobCostCentres setRowHash(ArrayList value) { this.RowHash = value; return this; } } public static class JB_JobStages { @Required() public String RecID = null; @References(JB_Classification.class) @Required() public String JB_Classifications_RecID = null; @References(JB_JobCostCentres.class) @Required() public String JB_JobCostCentres_RecID = null; @References(JB_Stages.class) @Required() public String JB_Stages_RecID = null; @Required() public ArrayList RowHash = null; public String getRecID() { return RecID; } public JB_JobStages setRecID(String value) { this.RecID = value; return this; } public String getJbClassificationsRecID() { return JB_Classifications_RecID; } public JB_JobStages setJbClassificationsRecID(String value) { this.JB_Classifications_RecID = value; return this; } public String getJbJobCostCentresRecID() { return JB_JobCostCentres_RecID; } public JB_JobStages setJbJobCostCentresRecID(String value) { this.JB_JobCostCentres_RecID = value; return this; } public String getJbStagesRecID() { return JB_Stages_RecID; } public JB_JobStages setJbStagesRecID(String value) { this.JB_Stages_RecID = value; return this; } public ArrayList getRowHash() { return RowHash; } public JB_JobStages setRowHash(ArrayList value) { this.RowHash = value; return this; } } public static class JB_Main { @Required() public String JobID = null; public String JobNo = null; public String Description = null; public String DebtorID = null; public String OrderNo = null; @Required() public Date StartDate = null; @Required() public Date EstEndDate = null; @Required() public Date ClosedDate = null; public Short InventorySellType = null; @Required() public Date LastSavedDateTime = null; public Boolean IsTemplate = null; public BigDecimal ContractAmount = null; public BigDecimal MarkUpMaterials = null; public BigDecimal MarkUpLabour = null; public BigDecimal MarkUpSubContract = null; public BigDecimal MarkUpResource = null; public Short RetentionType = null; public BigDecimal RetentionValue = null; public Boolean GstApplicable = null; public Short EstimateType = null; public String WarehouseID = null; public String ProductID = null; public String ProductDesc = null; public BigDecimal ProductQty = null; @Required() public Date EstStartDate = null; public String ClassificationID = null; public String CN_Contact_RecID = null; @Required() public Short JobStatus = null; @References(JB_Groups.class) @Required() public String JB_Groups_RecID = null; @References(JB_Statuses.class) @Required() public String JB_Statuses_RecID = null; @References(JB_Priorities.class) @Required() public String JB_Priorities_RecID = null; public String getJobID() { return JobID; } public JB_Main setJobID(String value) { this.JobID = value; return this; } public String getJobNo() { return JobNo; } public JB_Main setJobNo(String value) { this.JobNo = value; return this; } public String getDescription() { return Description; } public JB_Main setDescription(String value) { this.Description = value; return this; } public String getDebtorID() { return DebtorID; } public JB_Main setDebtorID(String value) { this.DebtorID = value; return this; } public String getOrderNo() { return OrderNo; } public JB_Main setOrderNo(String value) { this.OrderNo = value; return this; } public Date getStartDate() { return StartDate; } public JB_Main setStartDate(Date value) { this.StartDate = value; return this; } public Date getEstEndDate() { return EstEndDate; } public JB_Main setEstEndDate(Date value) { this.EstEndDate = value; return this; } public Date getClosedDate() { return ClosedDate; } public JB_Main setClosedDate(Date value) { this.ClosedDate = value; return this; } public Short getInventorySellType() { return InventorySellType; } public JB_Main setInventorySellType(Short value) { this.InventorySellType = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public JB_Main setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Boolean getIsTemplate() { return IsTemplate; } public JB_Main setIsTemplate(Boolean value) { this.IsTemplate = value; return this; } public BigDecimal getContractAmount() { return ContractAmount; } public JB_Main setContractAmount(BigDecimal value) { this.ContractAmount = value; return this; } public BigDecimal getMarkUpMaterials() { return MarkUpMaterials; } public JB_Main setMarkUpMaterials(BigDecimal value) { this.MarkUpMaterials = value; return this; } public BigDecimal getMarkUpLabour() { return MarkUpLabour; } public JB_Main setMarkUpLabour(BigDecimal value) { this.MarkUpLabour = value; return this; } public BigDecimal getMarkUpSubContract() { return MarkUpSubContract; } public JB_Main setMarkUpSubContract(BigDecimal value) { this.MarkUpSubContract = value; return this; } public BigDecimal getMarkUpResource() { return MarkUpResource; } public JB_Main setMarkUpResource(BigDecimal value) { this.MarkUpResource = value; return this; } public Short getRetentionType() { return RetentionType; } public JB_Main setRetentionType(Short value) { this.RetentionType = value; return this; } public BigDecimal getRetentionValue() { return RetentionValue; } public JB_Main setRetentionValue(BigDecimal value) { this.RetentionValue = value; return this; } public Boolean isGstApplicable() { return GstApplicable; } public JB_Main setGstApplicable(Boolean value) { this.GstApplicable = value; return this; } public Short getEstimateType() { return EstimateType; } public JB_Main setEstimateType(Short value) { this.EstimateType = value; return this; } public String getWarehouseID() { return WarehouseID; } public JB_Main setWarehouseID(String value) { this.WarehouseID = value; return this; } public String getProductID() { return ProductID; } public JB_Main setProductID(String value) { this.ProductID = value; return this; } public String getProductDesc() { return ProductDesc; } public JB_Main setProductDesc(String value) { this.ProductDesc = value; return this; } public BigDecimal getProductQty() { return ProductQty; } public JB_Main setProductQty(BigDecimal value) { this.ProductQty = value; return this; } public Date getEstStartDate() { return EstStartDate; } public JB_Main setEstStartDate(Date value) { this.EstStartDate = value; return this; } public String getClassificationID() { return ClassificationID; } public JB_Main setClassificationID(String value) { this.ClassificationID = value; return this; } public String getCnContactRecID() { return CN_Contact_RecID; } public JB_Main setCnContactRecID(String value) { this.CN_Contact_RecID = value; return this; } public Short getJobStatus() { return JobStatus; } public JB_Main setJobStatus(Short value) { this.JobStatus = value; return this; } public String getJbGroupsRecID() { return JB_Groups_RecID; } public JB_Main setJbGroupsRecID(String value) { this.JB_Groups_RecID = value; return this; } public String getJbStatusesRecID() { return JB_Statuses_RecID; } public JB_Main setJbStatusesRecID(String value) { this.JB_Statuses_RecID = value; return this; } public String getJbPrioritiesRecID() { return JB_Priorities_RecID; } public JB_Main setJbPrioritiesRecID(String value) { this.JB_Priorities_RecID = value; return this; } } public static class JB_Notes { @Required() public String RecID = null; @References(JB_Main.class) @Required() public String JB_Main_RecID = null; @References(SY_NoteTypes.class) @Required() public String NoteTypeID = null; @Required() public Date LastSavedDateTime = null; @Required() public String LastSavedByStaffID = null; public String NoteText = null; @Required() public Integer ItemNo = null; public String getRecID() { return RecID; } public JB_Notes setRecID(String value) { this.RecID = value; return this; } public String getJbMainRecID() { return JB_Main_RecID; } public JB_Notes setJbMainRecID(String value) { this.JB_Main_RecID = value; return this; } public String getNoteTypeID() { return NoteTypeID; } public JB_Notes setNoteTypeID(String value) { this.NoteTypeID = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public JB_Notes setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public String getLastSavedByStaffID() { return LastSavedByStaffID; } public JB_Notes setLastSavedByStaffID(String value) { this.LastSavedByStaffID = value; return this; } public String getNoteText() { return NoteText; } public JB_Notes setNoteText(String value) { this.NoteText = value; return this; } public Integer getItemNo() { return ItemNo; } public JB_Notes setItemNo(Integer value) { this.ItemNo = value; return this; } } public static class JB_PaymentDetails { @Required() public String RecID = null; @Required() public String JobNo = null; @Required() public String InvoiceID = null; public String CostEntryLineID = null; @Required() public Short InvoiceType = null; @Required() public BigDecimal BillAmount = null; @Required() public BigDecimal CostAmount = null; @Required() public Short Status = null; @Required() public BigDecimal WriteBill = null; @Required() public BigDecimal WriteCost = null; public String LinkLineID = null; public String getRecID() { return RecID; } public JB_PaymentDetails setRecID(String value) { this.RecID = value; return this; } public String getJobNo() { return JobNo; } public JB_PaymentDetails setJobNo(String value) { this.JobNo = value; return this; } public String getInvoiceID() { return InvoiceID; } public JB_PaymentDetails setInvoiceID(String value) { this.InvoiceID = value; return this; } public String getCostEntryLineID() { return CostEntryLineID; } public JB_PaymentDetails setCostEntryLineID(String value) { this.CostEntryLineID = value; return this; } public Short getInvoiceType() { return InvoiceType; } public JB_PaymentDetails setInvoiceType(Short value) { this.InvoiceType = value; return this; } public BigDecimal getBillAmount() { return BillAmount; } public JB_PaymentDetails setBillAmount(BigDecimal value) { this.BillAmount = value; return this; } public BigDecimal getCostAmount() { return CostAmount; } public JB_PaymentDetails setCostAmount(BigDecimal value) { this.CostAmount = value; return this; } public Short getStatus() { return Status; } public JB_PaymentDetails setStatus(Short value) { this.Status = value; return this; } public BigDecimal getWriteBill() { return WriteBill; } public JB_PaymentDetails setWriteBill(BigDecimal value) { this.WriteBill = value; return this; } public BigDecimal getWriteCost() { return WriteCost; } public JB_PaymentDetails setWriteCost(BigDecimal value) { this.WriteCost = value; return this; } public String getLinkLineID() { return LinkLineID; } public JB_PaymentDetails setLinkLineID(String value) { this.LinkLineID = value; return this; } } public static class JB_Priorities { @Required() public String RecID = null; @Required() public String Name = null; public String Description = null; @Required() public Integer ItemNo = null; public Boolean IsEnabled = null; @Required() public ArrayList RowHash = null; public Boolean IsDefault = null; public String getRecID() { return RecID; } public JB_Priorities setRecID(String value) { this.RecID = value; return this; } public String getName() { return Name; } public JB_Priorities setName(String value) { this.Name = value; return this; } public String getDescription() { return Description; } public JB_Priorities setDescription(String value) { this.Description = value; return this; } public Integer getItemNo() { return ItemNo; } public JB_Priorities setItemNo(Integer value) { this.ItemNo = value; return this; } public Boolean getIsEnabled() { return IsEnabled; } public JB_Priorities setIsEnabled(Boolean value) { this.IsEnabled = value; return this; } public ArrayList getRowHash() { return RowHash; } public JB_Priorities setRowHash(ArrayList value) { this.RowHash = value; return this; } public Boolean getIsDefault() { return IsDefault; } public JB_Priorities setIsDefault(Boolean value) { this.IsDefault = value; return this; } } public static class JB_Resources { @Required() public String RecID = null; @Required() public String RecNum = null; public String RecDescription = null; public Short RecType = null; public String RecGroup = null; public BigDecimal Cost = null; public BigDecimal Charge = null; public String Unit = null; public Boolean Status = null; public String Note = null; @Required() public Date LastSavedDateTime = null; @References(GL_Ledger.class) public String GLCode = null; public String getRecID() { return RecID; } public JB_Resources setRecID(String value) { this.RecID = value; return this; } public String getRecNum() { return RecNum; } public JB_Resources setRecNum(String value) { this.RecNum = value; return this; } public String getRecDescription() { return RecDescription; } public JB_Resources setRecDescription(String value) { this.RecDescription = value; return this; } public Short getRecType() { return RecType; } public JB_Resources setRecType(Short value) { this.RecType = value; return this; } public String getRecGroup() { return RecGroup; } public JB_Resources setRecGroup(String value) { this.RecGroup = value; return this; } public BigDecimal getCost() { return Cost; } public JB_Resources setCost(BigDecimal value) { this.Cost = value; return this; } public BigDecimal getCharge() { return Charge; } public JB_Resources setCharge(BigDecimal value) { this.Charge = value; return this; } public String getUnit() { return Unit; } public JB_Resources setUnit(String value) { this.Unit = value; return this; } public Boolean isStatus() { return Status; } public JB_Resources setStatus(Boolean value) { this.Status = value; return this; } public String getNote() { return Note; } public JB_Resources setNote(String value) { this.Note = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public JB_Resources setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public String getGlCode() { return GLCode; } public JB_Resources setGlCode(String value) { this.GLCode = value; return this; } } public static class JB_Staffs { @Required() public String RecID = null; @Required() public String RecNum = null; public String RecDescription = null; public BigDecimal Cost = null; public BigDecimal Charge = null; public String Unit = null; @Required() public Boolean IsEnabled = null; public String Note = null; @Required() public Date LastSavedDateTime = null; @References(GL_Ledger.class) public String GLCode = null; @References(JB_Groups.class) @Required() public String JB_Groups_RecID = null; public String getRecID() { return RecID; } public JB_Staffs setRecID(String value) { this.RecID = value; return this; } public String getRecNum() { return RecNum; } public JB_Staffs setRecNum(String value) { this.RecNum = value; return this; } public String getRecDescription() { return RecDescription; } public JB_Staffs setRecDescription(String value) { this.RecDescription = value; return this; } public BigDecimal getCost() { return Cost; } public JB_Staffs setCost(BigDecimal value) { this.Cost = value; return this; } public BigDecimal getCharge() { return Charge; } public JB_Staffs setCharge(BigDecimal value) { this.Charge = value; return this; } public String getUnit() { return Unit; } public JB_Staffs setUnit(String value) { this.Unit = value; return this; } public Boolean getIsEnabled() { return IsEnabled; } public JB_Staffs setIsEnabled(Boolean value) { this.IsEnabled = value; return this; } public String getNote() { return Note; } public JB_Staffs setNote(String value) { this.Note = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public JB_Staffs setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public String getGlCode() { return GLCode; } public JB_Staffs setGlCode(String value) { this.GLCode = value; return this; } public String getJbGroupsRecID() { return JB_Groups_RecID; } public JB_Staffs setJbGroupsRecID(String value) { this.JB_Groups_RecID = value; return this; } } public static class JB_Stages { @Required() public String RecID = null; @Required() public String StageNo = null; public String Name = null; public String Description = null; public Boolean IsEnabled = null; @Required() public ArrayList RowHash = null; public String getRecID() { return RecID; } public JB_Stages setRecID(String value) { this.RecID = value; return this; } public String getStageNo() { return StageNo; } public JB_Stages setStageNo(String value) { this.StageNo = value; return this; } public String getName() { return Name; } public JB_Stages setName(String value) { this.Name = value; return this; } public String getDescription() { return Description; } public JB_Stages setDescription(String value) { this.Description = value; return this; } public Boolean getIsEnabled() { return IsEnabled; } public JB_Stages setIsEnabled(Boolean value) { this.IsEnabled = value; return this; } public ArrayList getRowHash() { return RowHash; } public JB_Stages setRowHash(ArrayList value) { this.RowHash = value; return this; } } public static class JB_Statuses { @Required() public String RecID = null; @Required() public String Name = null; public String Description = null; @Required() public Integer ItemNo = null; public Boolean IsEnabled = null; @Required() public ArrayList RowHash = null; public Boolean IsDefault = null; public String getRecID() { return RecID; } public JB_Statuses setRecID(String value) { this.RecID = value; return this; } public String getName() { return Name; } public JB_Statuses setName(String value) { this.Name = value; return this; } public String getDescription() { return Description; } public JB_Statuses setDescription(String value) { this.Description = value; return this; } public Integer getItemNo() { return ItemNo; } public JB_Statuses setItemNo(Integer value) { this.ItemNo = value; return this; } public Boolean getIsEnabled() { return IsEnabled; } public JB_Statuses setIsEnabled(Boolean value) { this.IsEnabled = value; return this; } public ArrayList getRowHash() { return RowHash; } public JB_Statuses setRowHash(ArrayList value) { this.RowHash = value; return this; } public Boolean getIsDefault() { return IsDefault; } public JB_Statuses setIsDefault(Boolean value) { this.IsDefault = value; return this; } } public static class JB_TimesheetLines { @Required() public String RecID = null; @References(JB_Timesheets.class) @Required() public String JB_Timesheets_RecID = null; @References(JB_JobStages.class) @Required() public String JB_JobStages_RecID = null; @Required() public Date TransactionDate = null; @Required() public BigDecimal Quantity = null; @Required() public BigDecimal UnitCost = null; @Required() public BigDecimal UnitCharge = null; public String Remark = null; @Required() public Integer ItemNo = null; @Required() public Date LastSavedDateTime = null; @References(HR_Staff.class) @Required() public String HR_Staff_RecID = null; @Required() public ArrayList RowHash = null; public String getRecID() { return RecID; } public JB_TimesheetLines setRecID(String value) { this.RecID = value; return this; } public String getJbTimesheetsRecID() { return JB_Timesheets_RecID; } public JB_TimesheetLines setJbTimesheetsRecID(String value) { this.JB_Timesheets_RecID = value; return this; } public String getJbJobStagesRecID() { return JB_JobStages_RecID; } public JB_TimesheetLines setJbJobStagesRecID(String value) { this.JB_JobStages_RecID = value; return this; } public Date getTransactionDate() { return TransactionDate; } public JB_TimesheetLines setTransactionDate(Date value) { this.TransactionDate = value; return this; } public BigDecimal getQuantity() { return Quantity; } public JB_TimesheetLines setQuantity(BigDecimal value) { this.Quantity = value; return this; } public BigDecimal getUnitCost() { return UnitCost; } public JB_TimesheetLines setUnitCost(BigDecimal value) { this.UnitCost = value; return this; } public BigDecimal getUnitCharge() { return UnitCharge; } public JB_TimesheetLines setUnitCharge(BigDecimal value) { this.UnitCharge = value; return this; } public String getRemark() { return Remark; } public JB_TimesheetLines setRemark(String value) { this.Remark = value; return this; } public Integer getItemNo() { return ItemNo; } public JB_TimesheetLines setItemNo(Integer value) { this.ItemNo = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public JB_TimesheetLines setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public String getHrStaffRecID() { return HR_Staff_RecID; } public JB_TimesheetLines setHrStaffRecID(String value) { this.HR_Staff_RecID = value; return this; } public ArrayList getRowHash() { return RowHash; } public JB_TimesheetLines setRowHash(ArrayList value) { this.RowHash = value; return this; } } public static class JB_TimesheetNotes { @Required() public String RecID = null; @References(JB_Timesheets.class) @Required() public String JB_Timesheets_RecID = null; @Required() public String NoteTypeID = null; @Required() public Date LastSavedDateTime = null; @References(HR_Staff.class) @Required() public String LastSavedByStaffID = null; public String NoteText = null; @Required() public Integer ItemNo = null; public String getRecID() { return RecID; } public JB_TimesheetNotes setRecID(String value) { this.RecID = value; return this; } public String getJbTimesheetsRecID() { return JB_Timesheets_RecID; } public JB_TimesheetNotes setJbTimesheetsRecID(String value) { this.JB_Timesheets_RecID = value; return this; } public String getNoteTypeID() { return NoteTypeID; } public JB_TimesheetNotes setNoteTypeID(String value) { this.NoteTypeID = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public JB_TimesheetNotes setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public String getLastSavedByStaffID() { return LastSavedByStaffID; } public JB_TimesheetNotes setLastSavedByStaffID(String value) { this.LastSavedByStaffID = value; return this; } public String getNoteText() { return NoteText; } public JB_TimesheetNotes setNoteText(String value) { this.NoteText = value; return this; } public Integer getItemNo() { return ItemNo; } public JB_TimesheetNotes setItemNo(Integer value) { this.ItemNo = value; return this; } } public static class JB_Timesheets { @Required() public String RecID = null; @Required() public String BatchNo = null; @References(JB_Staffs.class) public String JB_Staff_RecID = null; public String Description = null; @Required() public Boolean IsActivated = null; @References(GL_Sets.class) public String GL_Sets_RecID = null; @References(IN_Logical.class) @Required() public String IN_LogicalID = null; @Required() public Date LastSavedDateTime = null; @References(HR_Staff.class) @Required() public String LastSavedBy_HR_Staff_RecID = null; @Required() public ArrayList RowHash = null; public String getRecID() { return RecID; } public JB_Timesheets setRecID(String value) { this.RecID = value; return this; } public String getBatchNo() { return BatchNo; } public JB_Timesheets setBatchNo(String value) { this.BatchNo = value; return this; } public String getJbStaffRecID() { return JB_Staff_RecID; } public JB_Timesheets setJbStaffRecID(String value) { this.JB_Staff_RecID = value; return this; } public String getDescription() { return Description; } public JB_Timesheets setDescription(String value) { this.Description = value; return this; } public Boolean getIsActivated() { return IsActivated; } public JB_Timesheets setIsActivated(Boolean value) { this.IsActivated = value; return this; } public String getGlSetsRecID() { return GL_Sets_RecID; } public JB_Timesheets setGlSetsRecID(String value) { this.GL_Sets_RecID = value; return this; } public String getInLogicalID() { return IN_LogicalID; } public JB_Timesheets setInLogicalID(String value) { this.IN_LogicalID = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public JB_Timesheets setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public String getLastSavedByHrStaffRecID() { return LastSavedBy_HR_Staff_RecID; } public JB_Timesheets setLastSavedByHrStaffRecID(String value) { this.LastSavedBy_HR_Staff_RecID = value; return this; } public ArrayList getRowHash() { return RowHash; } public JB_Timesheets setRowHash(ArrayList value) { this.RowHash = value; return this; } } public static class KitTax { public BigDecimal Tax = null; public Short LN = null; @Required() public String InvID = null; public BigDecimal getTax() { return Tax; } public KitTax setTax(BigDecimal value) { this.Tax = value; return this; } public Short getLn() { return LN; } public KitTax setLn(Short value) { this.LN = value; return this; } public String getInvID() { return InvID; } public KitTax setInvID(String value) { this.InvID = value; return this; } } public static class LastYearProfit { public BigDecimal Profit = null; public BigDecimal getProfit() { return Profit; } public LastYearProfit setProfit(BigDecimal value) { this.Profit = value; return this; } } public static class Magento_Integration { @Required() public UUID RecID = null; @Required() public String Name = null; public String Description = null; @Required() public Integer LogRetentionDays = null; @Required() public Integer CompletedQueueRetentionDays = null; @Required() public Date LastSavedDateTime = null; @Required() public ArrayList RowHash = null; public UUID getRecID() { return RecID; } public Magento_Integration setRecID(UUID value) { this.RecID = value; return this; } public String getName() { return Name; } public Magento_Integration setName(String value) { this.Name = value; return this; } public String getDescription() { return Description; } public Magento_Integration setDescription(String value) { this.Description = value; return this; } public Integer getLogRetentionDays() { return LogRetentionDays; } public Magento_Integration setLogRetentionDays(Integer value) { this.LogRetentionDays = value; return this; } public Integer getCompletedQueueRetentionDays() { return CompletedQueueRetentionDays; } public Magento_Integration setCompletedQueueRetentionDays(Integer value) { this.CompletedQueueRetentionDays = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public Magento_Integration setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public ArrayList getRowHash() { return RowHash; } public Magento_Integration setRowHash(ArrayList value) { this.RowHash = value; return this; } } public static class Magento_Integration_Schedule { @Required() public UUID RecID = null; @References(Magento_Integration.class) @Required() public UUID Magento_Integration_RecID = null; @References(SY_PluginSchedule.class) @Required() public UUID SY_PluginSchedule_RecID = null; @Required() public Integer ItemNo = null; @Required() public ArrayList RowHash = null; public UUID getRecID() { return RecID; } public Magento_Integration_Schedule setRecID(UUID value) { this.RecID = value; return this; } public UUID getMagentoIntegrationRecID() { return Magento_Integration_RecID; } public Magento_Integration_Schedule setMagentoIntegrationRecID(UUID value) { this.Magento_Integration_RecID = value; return this; } public UUID getSyPluginScheduleRecID() { return SY_PluginSchedule_RecID; } public Magento_Integration_Schedule setSyPluginScheduleRecID(UUID value) { this.SY_PluginSchedule_RecID = value; return this; } public Integer getItemNo() { return ItemNo; } public Magento_Integration_Schedule setItemNo(Integer value) { this.ItemNo = value; return this; } public ArrayList getRowHash() { return RowHash; } public Magento_Integration_Schedule setRowHash(ArrayList value) { this.RowHash = value; return this; } } public static class Magento_Integration_SelectedAction { @Required() public UUID RecID = null; @References(Magento_Integration.class) @Required() public UUID Magento_Integration_RecID = null; @Required() public UUID Action_RecID = null; @Required() public Short ExceptionPolicy = null; @Required() public Short LogPolicy = null; @Required() public Integer ItemNo = null; @Required() public ArrayList RowHash = null; public UUID getRecID() { return RecID; } public Magento_Integration_SelectedAction setRecID(UUID value) { this.RecID = value; return this; } public UUID getMagentoIntegrationRecID() { return Magento_Integration_RecID; } public Magento_Integration_SelectedAction setMagentoIntegrationRecID(UUID value) { this.Magento_Integration_RecID = value; return this; } public UUID getActionRecID() { return Action_RecID; } public Magento_Integration_SelectedAction setActionRecID(UUID value) { this.Action_RecID = value; return this; } public Short getExceptionPolicy() { return ExceptionPolicy; } public Magento_Integration_SelectedAction setExceptionPolicy(Short value) { this.ExceptionPolicy = value; return this; } public Short getLogPolicy() { return LogPolicy; } public Magento_Integration_SelectedAction setLogPolicy(Short value) { this.LogPolicy = value; return this; } public Integer getItemNo() { return ItemNo; } public Magento_Integration_SelectedAction setItemNo(Integer value) { this.ItemNo = value; return this; } public ArrayList getRowHash() { return RowHash; } public Magento_Integration_SelectedAction setRowHash(ArrayList value) { this.RowHash = value; return this; } } public static class Magento_Log { public Integer id = null; @Required() public UUID Magento_Integration_RecID = null; @Required() public Date LogDateTime = null; @Required() public Short LogType = null; public String IntegrationActionName = null; @Required() public Integer ElapsedMilliseconds = null; @Required() public String LogMessage = null; public Integer getId() { return id; } public Magento_Log setId(Integer value) { this.id = value; return this; } public UUID getMagentoIntegrationRecID() { return Magento_Integration_RecID; } public Magento_Log setMagentoIntegrationRecID(UUID value) { this.Magento_Integration_RecID = value; return this; } public Date getLogDateTime() { return LogDateTime; } public Magento_Log setLogDateTime(Date value) { this.LogDateTime = value; return this; } public Short getLogType() { return LogType; } public Magento_Log setLogType(Short value) { this.LogType = value; return this; } public String getIntegrationActionName() { return IntegrationActionName; } public Magento_Log setIntegrationActionName(String value) { this.IntegrationActionName = value; return this; } public Integer getElapsedMilliseconds() { return ElapsedMilliseconds; } public Magento_Log setElapsedMilliseconds(Integer value) { this.ElapsedMilliseconds = value; return this; } public String getLogMessage() { return LogMessage; } public Magento_Log setLogMessage(String value) { this.LogMessage = value; return this; } } public static class Magento_Queue { @Required() public UUID RecID = null; @Required() public String QueueName = null; @Required() public String Identifier = null; @Required() public Date QueueInsertionDateTime = null; @Required() public Date LastChangedDateTime = null; @Required() public Short Status = null; public String ExceptionText = null; @Required() public ArrayList RowHash = null; public UUID getRecID() { return RecID; } public Magento_Queue setRecID(UUID value) { this.RecID = value; return this; } public String getQueueName() { return QueueName; } public Magento_Queue setQueueName(String value) { this.QueueName = value; return this; } public String getIdentifier() { return Identifier; } public Magento_Queue setIdentifier(String value) { this.Identifier = value; return this; } public Date getQueueInsertionDateTime() { return QueueInsertionDateTime; } public Magento_Queue setQueueInsertionDateTime(Date value) { this.QueueInsertionDateTime = value; return this; } public Date getLastChangedDateTime() { return LastChangedDateTime; } public Magento_Queue setLastChangedDateTime(Date value) { this.LastChangedDateTime = value; return this; } public Short getStatus() { return Status; } public Magento_Queue setStatus(Short value) { this.Status = value; return this; } public String getExceptionText() { return ExceptionText; } public Magento_Queue setExceptionText(String value) { this.ExceptionText = value; return this; } public ArrayList getRowHash() { return RowHash; } public Magento_Queue setRowHash(ArrayList value) { this.RowHash = value; return this; } } public static class PI_CustomSettings { @Required() public String SettingID = null; public Date LastSavedDateTime = null; public String SettingDescription = null; public String SettingName = null; public BigDecimal DisplayOrder = null; public Short CellType = null; public String ScriptFormatCell = null; public String ScriptButtonClicked = null; public String ScriptReadData = null; @References(SY_Plugin.class) @Required() public UUID SY_Plugin_RecID = null; public String getSettingID() { return SettingID; } public PI_CustomSettings setSettingID(String value) { this.SettingID = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public PI_CustomSettings setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public String getSettingDescription() { return SettingDescription; } public PI_CustomSettings setSettingDescription(String value) { this.SettingDescription = value; return this; } public String getSettingName() { return SettingName; } public PI_CustomSettings setSettingName(String value) { this.SettingName = value; return this; } public BigDecimal getDisplayOrder() { return DisplayOrder; } public PI_CustomSettings setDisplayOrder(BigDecimal value) { this.DisplayOrder = value; return this; } public Short getCellType() { return CellType; } public PI_CustomSettings setCellType(Short value) { this.CellType = value; return this; } public String getScriptFormatCell() { return ScriptFormatCell; } public PI_CustomSettings setScriptFormatCell(String value) { this.ScriptFormatCell = value; return this; } public String getScriptButtonClicked() { return ScriptButtonClicked; } public PI_CustomSettings setScriptButtonClicked(String value) { this.ScriptButtonClicked = value; return this; } public String getScriptReadData() { return ScriptReadData; } public PI_CustomSettings setScriptReadData(String value) { this.ScriptReadData = value; return this; } public UUID getSyPluginRecID() { return SY_Plugin_RecID; } public PI_CustomSettings setSyPluginRecID(UUID value) { this.SY_Plugin_RecID = value; return this; } } public static class PI_CustomSettingValues { @Required() public String SettingValueID = null; @Required() public String SettingID = null; public String PI_Main_RecID = null; public String Contents = null; public Date LastSavedDateTime = null; public String getSettingValueID() { return SettingValueID; } public PI_CustomSettingValues setSettingValueID(String value) { this.SettingValueID = value; return this; } public String getSettingID() { return SettingID; } public PI_CustomSettingValues setSettingID(String value) { this.SettingID = value; return this; } public String getPiMainRecID() { return PI_Main_RecID; } public PI_CustomSettingValues setPiMainRecID(String value) { this.PI_Main_RecID = value; return this; } public String getContents() { return Contents; } public PI_CustomSettingValues setContents(String value) { this.Contents = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public PI_CustomSettingValues setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } } public static class PI_Documents { @Required() public String RecID = null; @References(PI_Main.class) @Required() public String PI_Main_PI_MainID = null; @References(SY_DocumentTypes.class) @Required() public String DocumentTypeID = null; public Date LastSavedDateTime = null; @References(HR_Staff.class) @Required() public String LastSavedByStaffID = null; public ArrayList FileBinary = null; public String Description = null; public String PhysicalFileName = null; @Required() public Integer ItemNo = null; public String getRecID() { return RecID; } public PI_Documents setRecID(String value) { this.RecID = value; return this; } public String getPiMainPiMainID() { return PI_Main_PI_MainID; } public PI_Documents setPiMainPiMainID(String value) { this.PI_Main_PI_MainID = value; return this; } public String getDocumentTypeID() { return DocumentTypeID; } public PI_Documents setDocumentTypeID(String value) { this.DocumentTypeID = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public PI_Documents setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public String getLastSavedByStaffID() { return LastSavedByStaffID; } public PI_Documents setLastSavedByStaffID(String value) { this.LastSavedByStaffID = value; return this; } public ArrayList getFileBinary() { return FileBinary; } public PI_Documents setFileBinary(ArrayList value) { this.FileBinary = value; return this; } public String getDescription() { return Description; } public PI_Documents setDescription(String value) { this.Description = value; return this; } public String getPhysicalFileName() { return PhysicalFileName; } public PI_Documents setPhysicalFileName(String value) { this.PhysicalFileName = value; return this; } public Integer getItemNo() { return ItemNo; } public PI_Documents setItemNo(Integer value) { this.ItemNo = value; return this; } } public static class PI_LineCustomFields { @Required() public String RecID = null; @Required() public String SettingName = null; public String SettingDescription = null; public Integer CellType = null; public String FieldParameter = null; @References(SY_Plugin.class) @Required() public UUID SY_Plugin_RecID = null; public Date LastSavedDateTime = null; public Integer DisplayOrder = null; public String getRecID() { return RecID; } public PI_LineCustomFields setRecID(String value) { this.RecID = value; return this; } public String getSettingName() { return SettingName; } public PI_LineCustomFields setSettingName(String value) { this.SettingName = value; return this; } public String getSettingDescription() { return SettingDescription; } public PI_LineCustomFields setSettingDescription(String value) { this.SettingDescription = value; return this; } public Integer getCellType() { return CellType; } public PI_LineCustomFields setCellType(Integer value) { this.CellType = value; return this; } public String getFieldParameter() { return FieldParameter; } public PI_LineCustomFields setFieldParameter(String value) { this.FieldParameter = value; return this; } public UUID getSyPluginRecID() { return SY_Plugin_RecID; } public PI_LineCustomFields setSyPluginRecID(UUID value) { this.SY_Plugin_RecID = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public PI_LineCustomFields setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Integer getDisplayOrder() { return DisplayOrder; } public PI_LineCustomFields setDisplayOrder(Integer value) { this.DisplayOrder = value; return this; } } public static class PI_LineCustomValues { @Required() public String RecID = null; @Required() public String PI_Lines_RecID = null; @References(PI_LineCustomFields.class) @Required() public String PI_LineCustomFields_RecID = null; public String Contents = null; public Date LastSavedDateTime = null; public String getRecID() { return RecID; } public PI_LineCustomValues setRecID(String value) { this.RecID = value; return this; } public String getPiLinesRecID() { return PI_Lines_RecID; } public PI_LineCustomValues setPiLinesRecID(String value) { this.PI_Lines_RecID = value; return this; } public String getPiLineCustomFieldsRecID() { return PI_LineCustomFields_RecID; } public PI_LineCustomValues setPiLineCustomFieldsRecID(String value) { this.PI_LineCustomFields_RecID = value; return this; } public String getContents() { return Contents; } public PI_LineCustomValues setContents(String value) { this.Contents = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public PI_LineCustomValues setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } } public static class PI_Lines { @Required() public String PI_LinesID = null; @References(PI_Main.class) @Required() public String PI_MainID = null; @References(RE_Main.class) @Required() public String RE_MainID = null; @References(RE_Lines.class) @Required() public String RE_LinesID = null; @Required() public BigDecimal Quantity = null; public BigDecimal SuppliersCost = null; @Required() public String InventoryID = null; public String PartNo = null; public String Description = null; public String SuppPartNo = null; public Short LineType = null; public Short DecimalPlaces = null; public Date LastSavedDateTime = null; public Short InvoiceLineNo = null; public BigDecimal HomeSuppliersCost = null; public BigDecimal TaxRate = null; public String TaxID = null; public BigDecimal TaxAmount = null; public BigDecimal CurrencyRateUsed = null; public String POClassID = null; public BigDecimal LineTotal = null; public Short FXDecimalPlaces = null; public Short HomeDecimalPlaces = null; public Boolean UnitChanged = null; public Boolean FXChanged = null; public Boolean ExChanged = null; public Boolean TaxRateChanged = null; @Required() public BigDecimal LineTotalExTax = null; public Boolean ChangeSourceIsFromGRNLine = null; @Required() public BigDecimal FXLineTotalExTax = null; @Required() public BigDecimal UnitCostIncTax = null; public String getPiLinesID() { return PI_LinesID; } public PI_Lines setPiLinesID(String value) { this.PI_LinesID = value; return this; } public String getPiMainID() { return PI_MainID; } public PI_Lines setPiMainID(String value) { this.PI_MainID = value; return this; } public String getReMainID() { return RE_MainID; } public PI_Lines setReMainID(String value) { this.RE_MainID = value; return this; } public String getReLinesID() { return RE_LinesID; } public PI_Lines setReLinesID(String value) { this.RE_LinesID = value; return this; } public BigDecimal getQuantity() { return Quantity; } public PI_Lines setQuantity(BigDecimal value) { this.Quantity = value; return this; } public BigDecimal getSuppliersCost() { return SuppliersCost; } public PI_Lines setSuppliersCost(BigDecimal value) { this.SuppliersCost = value; return this; } public String getInventoryID() { return InventoryID; } public PI_Lines setInventoryID(String value) { this.InventoryID = value; return this; } public String getPartNo() { return PartNo; } public PI_Lines setPartNo(String value) { this.PartNo = value; return this; } public String getDescription() { return Description; } public PI_Lines setDescription(String value) { this.Description = value; return this; } public String getSuppPartNo() { return SuppPartNo; } public PI_Lines setSuppPartNo(String value) { this.SuppPartNo = value; return this; } public Short getLineType() { return LineType; } public PI_Lines setLineType(Short value) { this.LineType = value; return this; } public Short getDecimalPlaces() { return DecimalPlaces; } public PI_Lines setDecimalPlaces(Short value) { this.DecimalPlaces = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public PI_Lines setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Short getInvoiceLineNo() { return InvoiceLineNo; } public PI_Lines setInvoiceLineNo(Short value) { this.InvoiceLineNo = value; return this; } public BigDecimal getHomeSuppliersCost() { return HomeSuppliersCost; } public PI_Lines setHomeSuppliersCost(BigDecimal value) { this.HomeSuppliersCost = value; return this; } public BigDecimal getTaxRate() { return TaxRate; } public PI_Lines setTaxRate(BigDecimal value) { this.TaxRate = value; return this; } public String getTaxID() { return TaxID; } public PI_Lines setTaxID(String value) { this.TaxID = value; return this; } public BigDecimal getTaxAmount() { return TaxAmount; } public PI_Lines setTaxAmount(BigDecimal value) { this.TaxAmount = value; return this; } public BigDecimal getCurrencyRateUsed() { return CurrencyRateUsed; } public PI_Lines setCurrencyRateUsed(BigDecimal value) { this.CurrencyRateUsed = value; return this; } public String getPoClassID() { return POClassID; } public PI_Lines setPoClassID(String value) { this.POClassID = value; return this; } public BigDecimal getLineTotal() { return LineTotal; } public PI_Lines setLineTotal(BigDecimal value) { this.LineTotal = value; return this; } public Short getFxDecimalPlaces() { return FXDecimalPlaces; } public PI_Lines setFxDecimalPlaces(Short value) { this.FXDecimalPlaces = value; return this; } public Short getHomeDecimalPlaces() { return HomeDecimalPlaces; } public PI_Lines setHomeDecimalPlaces(Short value) { this.HomeDecimalPlaces = value; return this; } public Boolean isUnitChanged() { return UnitChanged; } public PI_Lines setUnitChanged(Boolean value) { this.UnitChanged = value; return this; } public Boolean isFxChanged() { return FXChanged; } public PI_Lines setFxChanged(Boolean value) { this.FXChanged = value; return this; } public Boolean isExChanged() { return ExChanged; } public PI_Lines setExChanged(Boolean value) { this.ExChanged = value; return this; } public Boolean isTaxRateChanged() { return TaxRateChanged; } public PI_Lines setTaxRateChanged(Boolean value) { this.TaxRateChanged = value; return this; } public BigDecimal getLineTotalExTax() { return LineTotalExTax; } public PI_Lines setLineTotalExTax(BigDecimal value) { this.LineTotalExTax = value; return this; } public Boolean isChangeSourceIsFromGRNLine() { return ChangeSourceIsFromGRNLine; } public PI_Lines setChangeSourceIsFromGRNLine(Boolean value) { this.ChangeSourceIsFromGRNLine = value; return this; } public BigDecimal getFxLineTotalExTax() { return FXLineTotalExTax; } public PI_Lines setFxLineTotalExTax(BigDecimal value) { this.FXLineTotalExTax = value; return this; } public BigDecimal getUnitCostIncTax() { return UnitCostIncTax; } public PI_Lines setUnitCostIncTax(BigDecimal value) { this.UnitCostIncTax = value; return this; } } public static class PI_LinesDetails { @Required() public String PI_LinesDetailsID = null; @References(PI_Lines.class) @Required() public String PI_LinesID = null; @Required() public String SerialNo = null; @Required() public BigDecimal Quantity = null; public Date ExpiryDate = null; public String BinLocation = null; @Required() public ArrayList RowHash = null; @References(RE_LineDetails.class) public String RE_LineDetails_RecID = null; @References(IN_SOH.class) public String IN_SOH_RecID = null; public String getPiLinesDetailsID() { return PI_LinesDetailsID; } public PI_LinesDetails setPiLinesDetailsID(String value) { this.PI_LinesDetailsID = value; return this; } public String getPiLinesID() { return PI_LinesID; } public PI_LinesDetails setPiLinesID(String value) { this.PI_LinesID = value; return this; } public String getSerialNo() { return SerialNo; } public PI_LinesDetails setSerialNo(String value) { this.SerialNo = value; return this; } public BigDecimal getQuantity() { return Quantity; } public PI_LinesDetails setQuantity(BigDecimal value) { this.Quantity = value; return this; } public Date getExpiryDate() { return ExpiryDate; } public PI_LinesDetails setExpiryDate(Date value) { this.ExpiryDate = value; return this; } public String getBinLocation() { return BinLocation; } public PI_LinesDetails setBinLocation(String value) { this.BinLocation = value; return this; } public ArrayList getRowHash() { return RowHash; } public PI_LinesDetails setRowHash(ArrayList value) { this.RowHash = value; return this; } public String getReLineDetailsRecID() { return RE_LineDetails_RecID; } public PI_LinesDetails setReLineDetailsRecID(String value) { this.RE_LineDetails_RecID = value; return this; } public String getInSohRecID() { return IN_SOH_RecID; } public PI_LinesDetails setInSohRecID(String value) { this.IN_SOH_RecID = value; return this; } } public static class PI_Main { @Required() public String PI_MainID = null; public Date LastSavedDateTime = null; public String InvoiceNo = null; @References(CR_Main.class) @Required() public String CreditorID = null; public Date InvoiceDate = null; @Required() public Short Status = null; public BigDecimal Freight = null; public BigDecimal Duty = null; public BigDecimal Insurance = null; public Date DueDate = null; @References(IN_Logical.class) @Required() public String IN_LogicalID = null; @Required() public BigDecimal TotalLineTax = null; @Required() public BigDecimal AdjTax = null; @References(TX_Main.class) public String FreightTaxID = null; public BigDecimal FreightTaxRate = null; public BigDecimal FreightTaxAmount = null; @References(TX_Main.class) public String DutyTaxID = null; public BigDecimal DutyTaxRate = null; public BigDecimal DutyTaxAmount = null; @References(TX_Main.class) public String InsuranceTaxID = null; public BigDecimal InsuranceTaxRate = null; public BigDecimal InsuranceTaxAmount = null; @References(FX_Currency.class) public String CurrencyID = null; public Short DecimalPlaces = null; public Short FXDecimalPlaces = null; public String getPiMainID() { return PI_MainID; } public PI_Main setPiMainID(String value) { this.PI_MainID = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public PI_Main setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public String getInvoiceNo() { return InvoiceNo; } public PI_Main setInvoiceNo(String value) { this.InvoiceNo = value; return this; } public String getCreditorID() { return CreditorID; } public PI_Main setCreditorID(String value) { this.CreditorID = value; return this; } public Date getInvoiceDate() { return InvoiceDate; } public PI_Main setInvoiceDate(Date value) { this.InvoiceDate = value; return this; } public Short getStatus() { return Status; } public PI_Main setStatus(Short value) { this.Status = value; return this; } public BigDecimal getFreight() { return Freight; } public PI_Main setFreight(BigDecimal value) { this.Freight = value; return this; } public BigDecimal getDuty() { return Duty; } public PI_Main setDuty(BigDecimal value) { this.Duty = value; return this; } public BigDecimal getInsurance() { return Insurance; } public PI_Main setInsurance(BigDecimal value) { this.Insurance = value; return this; } public Date getDueDate() { return DueDate; } public PI_Main setDueDate(Date value) { this.DueDate = value; return this; } public String getInLogicalID() { return IN_LogicalID; } public PI_Main setInLogicalID(String value) { this.IN_LogicalID = value; return this; } public BigDecimal getTotalLineTax() { return TotalLineTax; } public PI_Main setTotalLineTax(BigDecimal value) { this.TotalLineTax = value; return this; } public BigDecimal getAdjTax() { return AdjTax; } public PI_Main setAdjTax(BigDecimal value) { this.AdjTax = value; return this; } public String getFreightTaxID() { return FreightTaxID; } public PI_Main setFreightTaxID(String value) { this.FreightTaxID = value; return this; } public BigDecimal getFreightTaxRate() { return FreightTaxRate; } public PI_Main setFreightTaxRate(BigDecimal value) { this.FreightTaxRate = value; return this; } public BigDecimal getFreightTaxAmount() { return FreightTaxAmount; } public PI_Main setFreightTaxAmount(BigDecimal value) { this.FreightTaxAmount = value; return this; } public String getDutyTaxID() { return DutyTaxID; } public PI_Main setDutyTaxID(String value) { this.DutyTaxID = value; return this; } public BigDecimal getDutyTaxRate() { return DutyTaxRate; } public PI_Main setDutyTaxRate(BigDecimal value) { this.DutyTaxRate = value; return this; } public BigDecimal getDutyTaxAmount() { return DutyTaxAmount; } public PI_Main setDutyTaxAmount(BigDecimal value) { this.DutyTaxAmount = value; return this; } public String getInsuranceTaxID() { return InsuranceTaxID; } public PI_Main setInsuranceTaxID(String value) { this.InsuranceTaxID = value; return this; } public BigDecimal getInsuranceTaxRate() { return InsuranceTaxRate; } public PI_Main setInsuranceTaxRate(BigDecimal value) { this.InsuranceTaxRate = value; return this; } public BigDecimal getInsuranceTaxAmount() { return InsuranceTaxAmount; } public PI_Main setInsuranceTaxAmount(BigDecimal value) { this.InsuranceTaxAmount = value; return this; } public String getCurrencyID() { return CurrencyID; } public PI_Main setCurrencyID(String value) { this.CurrencyID = value; return this; } public Short getDecimalPlaces() { return DecimalPlaces; } public PI_Main setDecimalPlaces(Short value) { this.DecimalPlaces = value; return this; } public Short getFxDecimalPlaces() { return FXDecimalPlaces; } public PI_Main setFxDecimalPlaces(Short value) { this.FXDecimalPlaces = value; return this; } } public static class PI_Notes { @Required() public String RecID = null; @References(PI_Main.class) @Required() public String PI_Main_PI_MainID = null; @References(SY_NoteTypes.class) @Required() public String NoteTypeID = null; @Required() public Date LastSavedDateTime = null; @References(HR_Staff.class) @Required() public String LastSavedByStaffID = null; public String NoteText = null; @Required() public Integer ItemNo = null; public String getRecID() { return RecID; } public PI_Notes setRecID(String value) { this.RecID = value; return this; } public String getPiMainPiMainID() { return PI_Main_PI_MainID; } public PI_Notes setPiMainPiMainID(String value) { this.PI_Main_PI_MainID = value; return this; } public String getNoteTypeID() { return NoteTypeID; } public PI_Notes setNoteTypeID(String value) { this.NoteTypeID = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public PI_Notes setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public String getLastSavedByStaffID() { return LastSavedByStaffID; } public PI_Notes setLastSavedByStaffID(String value) { this.LastSavedByStaffID = value; return this; } public String getNoteText() { return NoteText; } public PI_Notes setNoteText(String value) { this.NoteText = value; return this; } public Integer getItemNo() { return ItemNo; } public PI_Notes setItemNo(Integer value) { this.ItemNo = value; return this; } } public static class PI_Receipts { @Required() public String PI_ReceiptsID = null; @References(PI_Main.class) @Required() public String PI_MainID = null; @References(RE_Main.class) @Required() public String RE_MainID = null; public String getPiReceiptsID() { return PI_ReceiptsID; } public PI_Receipts setPiReceiptsID(String value) { this.PI_ReceiptsID = value; return this; } public String getPiMainID() { return PI_MainID; } public PI_Receipts setPiMainID(String value) { this.PI_MainID = value; return this; } public String getReMainID() { return RE_MainID; } public PI_Receipts setReMainID(String value) { this.RE_MainID = value; return this; } } public static class PO_BatchHeader { @Required() public String RecID = null; @Required() public String BatchNo = null; @References(IN_Logical.class) @Required() public String IN_LogicalID = null; @References(HR_Staff.class) @Required() public String CreatedByStaffID = null; @Required() public Date CreatedDateTime = null; @References(HR_Staff.class) @Required() public String LastModifiedByStaffID = null; @Required() public Date LastSavedDateTime = null; @Required() public Short BatchStatus = null; @Required() public Short ReOrderMonth = null; @Required() public Boolean IncludeDefaultSuppliersOnly = null; public String getRecID() { return RecID; } public PO_BatchHeader setRecID(String value) { this.RecID = value; return this; } public String getBatchNo() { return BatchNo; } public PO_BatchHeader setBatchNo(String value) { this.BatchNo = value; return this; } public String getInLogicalID() { return IN_LogicalID; } public PO_BatchHeader setInLogicalID(String value) { this.IN_LogicalID = value; return this; } public String getCreatedByStaffID() { return CreatedByStaffID; } public PO_BatchHeader setCreatedByStaffID(String value) { this.CreatedByStaffID = value; return this; } public Date getCreatedDateTime() { return CreatedDateTime; } public PO_BatchHeader setCreatedDateTime(Date value) { this.CreatedDateTime = value; return this; } public String getLastModifiedByStaffID() { return LastModifiedByStaffID; } public PO_BatchHeader setLastModifiedByStaffID(String value) { this.LastModifiedByStaffID = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public PO_BatchHeader setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Short getBatchStatus() { return BatchStatus; } public PO_BatchHeader setBatchStatus(Short value) { this.BatchStatus = value; return this; } public Short getReOrderMonth() { return ReOrderMonth; } public PO_BatchHeader setReOrderMonth(Short value) { this.ReOrderMonth = value; return this; } public Boolean isIncludeDefaultSuppliersOnly() { return IncludeDefaultSuppliersOnly; } public PO_BatchHeader setIncludeDefaultSuppliersOnly(Boolean value) { this.IncludeDefaultSuppliersOnly = value; return this; } } public static class PO_BatchPurchaseOrderLines { @Required() public String RecID = null; @References(PO_BatchPurchaseOrders.class) @Required() public String PO_BatchPurchaseOrders_RecID = null; @Required() public Integer ItemNo = null; @References(IN_Main.class) @Required() public String IN_Main_RecID = null; @Required() public BigDecimal UnitCost = null; @Required() public BigDecimal FXUnitCost = null; @Required() public BigDecimal SuggestedOrderQuantity = null; @Required() public BigDecimal OrderQuantity = null; @Required() public BigDecimal LineCost = null; @Required() public BigDecimal FXLineCost = null; @Required() public BigDecimal QuantitySOH = null; @Required() public BigDecimal QuantityMinSOH = null; @Required() public BigDecimal QuantityOnPO = null; @Required() public BigDecimal QuantityOnBO = null; @Required() public BigDecimal QuantitySalesForecast = null; @Required() public BigDecimal QuantityLastYearPurchases = null; @Required() public BigDecimal QuantityLastYearSales = null; @References(PO_Lines.class) public String PO_Lines_RecID = null; @Required() public BigDecimal UnitCubic = null; @Required() public BigDecimal UnitWeight = null; @Required() public BigDecimal LineCubic = null; @Required() public BigDecimal LineWeight = null; @Required() public Integer DeliveryDays = null; @Required() public BigDecimal OrderUnits = null; @Required() public ArrayList RowHash = null; public String getRecID() { return RecID; } public PO_BatchPurchaseOrderLines setRecID(String value) { this.RecID = value; return this; } public String getPoBatchPurchaseOrdersRecID() { return PO_BatchPurchaseOrders_RecID; } public PO_BatchPurchaseOrderLines setPoBatchPurchaseOrdersRecID(String value) { this.PO_BatchPurchaseOrders_RecID = value; return this; } public Integer getItemNo() { return ItemNo; } public PO_BatchPurchaseOrderLines setItemNo(Integer value) { this.ItemNo = value; return this; } public String getInMainRecID() { return IN_Main_RecID; } public PO_BatchPurchaseOrderLines setInMainRecID(String value) { this.IN_Main_RecID = value; return this; } public BigDecimal getUnitCost() { return UnitCost; } public PO_BatchPurchaseOrderLines setUnitCost(BigDecimal value) { this.UnitCost = value; return this; } public BigDecimal getFxUnitCost() { return FXUnitCost; } public PO_BatchPurchaseOrderLines setFxUnitCost(BigDecimal value) { this.FXUnitCost = value; return this; } public BigDecimal getSuggestedOrderQuantity() { return SuggestedOrderQuantity; } public PO_BatchPurchaseOrderLines setSuggestedOrderQuantity(BigDecimal value) { this.SuggestedOrderQuantity = value; return this; } public BigDecimal getOrderQuantity() { return OrderQuantity; } public PO_BatchPurchaseOrderLines setOrderQuantity(BigDecimal value) { this.OrderQuantity = value; return this; } public BigDecimal getLineCost() { return LineCost; } public PO_BatchPurchaseOrderLines setLineCost(BigDecimal value) { this.LineCost = value; return this; } public BigDecimal getFxLineCost() { return FXLineCost; } public PO_BatchPurchaseOrderLines setFxLineCost(BigDecimal value) { this.FXLineCost = value; return this; } public BigDecimal getQuantitySOH() { return QuantitySOH; } public PO_BatchPurchaseOrderLines setQuantitySOH(BigDecimal value) { this.QuantitySOH = value; return this; } public BigDecimal getQuantityMinSOH() { return QuantityMinSOH; } public PO_BatchPurchaseOrderLines setQuantityMinSOH(BigDecimal value) { this.QuantityMinSOH = value; return this; } public BigDecimal getQuantityOnPO() { return QuantityOnPO; } public PO_BatchPurchaseOrderLines setQuantityOnPO(BigDecimal value) { this.QuantityOnPO = value; return this; } public BigDecimal getQuantityOnBO() { return QuantityOnBO; } public PO_BatchPurchaseOrderLines setQuantityOnBO(BigDecimal value) { this.QuantityOnBO = value; return this; } public BigDecimal getQuantitySalesForecast() { return QuantitySalesForecast; } public PO_BatchPurchaseOrderLines setQuantitySalesForecast(BigDecimal value) { this.QuantitySalesForecast = value; return this; } public BigDecimal getQuantityLastYearPurchases() { return QuantityLastYearPurchases; } public PO_BatchPurchaseOrderLines setQuantityLastYearPurchases(BigDecimal value) { this.QuantityLastYearPurchases = value; return this; } public BigDecimal getQuantityLastYearSales() { return QuantityLastYearSales; } public PO_BatchPurchaseOrderLines setQuantityLastYearSales(BigDecimal value) { this.QuantityLastYearSales = value; return this; } public String getPoLinesRecID() { return PO_Lines_RecID; } public PO_BatchPurchaseOrderLines setPoLinesRecID(String value) { this.PO_Lines_RecID = value; return this; } public BigDecimal getUnitCubic() { return UnitCubic; } public PO_BatchPurchaseOrderLines setUnitCubic(BigDecimal value) { this.UnitCubic = value; return this; } public BigDecimal getUnitWeight() { return UnitWeight; } public PO_BatchPurchaseOrderLines setUnitWeight(BigDecimal value) { this.UnitWeight = value; return this; } public BigDecimal getLineCubic() { return LineCubic; } public PO_BatchPurchaseOrderLines setLineCubic(BigDecimal value) { this.LineCubic = value; return this; } public BigDecimal getLineWeight() { return LineWeight; } public PO_BatchPurchaseOrderLines setLineWeight(BigDecimal value) { this.LineWeight = value; return this; } public Integer getDeliveryDays() { return DeliveryDays; } public PO_BatchPurchaseOrderLines setDeliveryDays(Integer value) { this.DeliveryDays = value; return this; } public BigDecimal getOrderUnits() { return OrderUnits; } public PO_BatchPurchaseOrderLines setOrderUnits(BigDecimal value) { this.OrderUnits = value; return this; } public ArrayList getRowHash() { return RowHash; } public PO_BatchPurchaseOrderLines setRowHash(ArrayList value) { this.RowHash = value; return this; } } public static class PO_BatchPurchaseOrders { @Required() public String RecID = null; @References(PO_BatchHeader.class) @Required() public String PO_BatchHeader_RecID = null; public String PO_Main_RecID = null; @Required() public String CR_Main_RecID = null; @Required() public BigDecimal FXCurrencyRate = null; @Required() public ArrayList RowHash = null; public String getRecID() { return RecID; } public PO_BatchPurchaseOrders setRecID(String value) { this.RecID = value; return this; } public String getPoBatchHeaderRecID() { return PO_BatchHeader_RecID; } public PO_BatchPurchaseOrders setPoBatchHeaderRecID(String value) { this.PO_BatchHeader_RecID = value; return this; } public String getPoMainRecID() { return PO_Main_RecID; } public PO_BatchPurchaseOrders setPoMainRecID(String value) { this.PO_Main_RecID = value; return this; } public String getCrMainRecID() { return CR_Main_RecID; } public PO_BatchPurchaseOrders setCrMainRecID(String value) { this.CR_Main_RecID = value; return this; } public BigDecimal getFxCurrencyRate() { return FXCurrencyRate; } public PO_BatchPurchaseOrders setFxCurrencyRate(BigDecimal value) { this.FXCurrencyRate = value; return this; } public ArrayList getRowHash() { return RowHash; } public PO_BatchPurchaseOrders setRowHash(ArrayList value) { this.RowHash = value; return this; } } public static class PO_Classification { @Required() public String POClassificationID = null; @Required() public String Description = null; @Required() public String PurchClassLedgerID = null; public Short DefaultClass = null; public Date LastSavedDateTime = null; public String getPoClassificationID() { return POClassificationID; } public PO_Classification setPoClassificationID(String value) { this.POClassificationID = value; return this; } public String getDescription() { return Description; } public PO_Classification setDescription(String value) { this.Description = value; return this; } public String getPurchClassLedgerID() { return PurchClassLedgerID; } public PO_Classification setPurchClassLedgerID(String value) { this.PurchClassLedgerID = value; return this; } public Short getDefaultClass() { return DefaultClass; } public PO_Classification setDefaultClass(Short value) { this.DefaultClass = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public PO_Classification setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } } public static class PO_CustomSettings { @Required() public String SettingID = null; @Required() public Date LastSavedDateTime = null; public String SettingDescription = null; public String SettingName = null; public BigDecimal DisplayOrder = null; public Short CellType = null; public String ScriptFormatCell = null; public String ScriptButtonClicked = null; public String ScriptReadData = null; @References(SY_Plugin.class) @Required() public UUID SY_Plugin_RecID = null; public String getSettingID() { return SettingID; } public PO_CustomSettings setSettingID(String value) { this.SettingID = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public PO_CustomSettings setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public String getSettingDescription() { return SettingDescription; } public PO_CustomSettings setSettingDescription(String value) { this.SettingDescription = value; return this; } public String getSettingName() { return SettingName; } public PO_CustomSettings setSettingName(String value) { this.SettingName = value; return this; } public BigDecimal getDisplayOrder() { return DisplayOrder; } public PO_CustomSettings setDisplayOrder(BigDecimal value) { this.DisplayOrder = value; return this; } public Short getCellType() { return CellType; } public PO_CustomSettings setCellType(Short value) { this.CellType = value; return this; } public String getScriptFormatCell() { return ScriptFormatCell; } public PO_CustomSettings setScriptFormatCell(String value) { this.ScriptFormatCell = value; return this; } public String getScriptButtonClicked() { return ScriptButtonClicked; } public PO_CustomSettings setScriptButtonClicked(String value) { this.ScriptButtonClicked = value; return this; } public String getScriptReadData() { return ScriptReadData; } public PO_CustomSettings setScriptReadData(String value) { this.ScriptReadData = value; return this; } public UUID getSyPluginRecID() { return SY_Plugin_RecID; } public PO_CustomSettings setSyPluginRecID(UUID value) { this.SY_Plugin_RecID = value; return this; } } public static class PO_CustomSettingValues { @Required() public String SettingValueID = null; @References(PO_CustomSettings.class) @Required() public String SettingID = null; @References(PO_Main.class) @Required() public String PurchaseOrderID = null; public String Contents = null; @Required() public Date LastSavedDateTime = null; public String getSettingValueID() { return SettingValueID; } public PO_CustomSettingValues setSettingValueID(String value) { this.SettingValueID = value; return this; } public String getSettingID() { return SettingID; } public PO_CustomSettingValues setSettingID(String value) { this.SettingID = value; return this; } public String getPurchaseOrderID() { return PurchaseOrderID; } public PO_CustomSettingValues setPurchaseOrderID(String value) { this.PurchaseOrderID = value; return this; } public String getContents() { return Contents; } public PO_CustomSettingValues setContents(String value) { this.Contents = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public PO_CustomSettingValues setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } } public static class PO_Documents { @Required() public String RecID = null; @References(PO_Main.class) @Required() public String PurchaseOrderID = null; public String FileID = null; public String DocumentTypeID = null; public Date LastSavedDateTime = null; @Required() public String LastSavedByStaffID = null; public ArrayList FileBinary = null; public String Description = null; public String PhysicalFileName = null; @Required() public Integer ItemNo = null; public String getRecID() { return RecID; } public PO_Documents setRecID(String value) { this.RecID = value; return this; } public String getPurchaseOrderID() { return PurchaseOrderID; } public PO_Documents setPurchaseOrderID(String value) { this.PurchaseOrderID = value; return this; } public String getFileID() { return FileID; } public PO_Documents setFileID(String value) { this.FileID = value; return this; } public String getDocumentTypeID() { return DocumentTypeID; } public PO_Documents setDocumentTypeID(String value) { this.DocumentTypeID = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public PO_Documents setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public String getLastSavedByStaffID() { return LastSavedByStaffID; } public PO_Documents setLastSavedByStaffID(String value) { this.LastSavedByStaffID = value; return this; } public ArrayList getFileBinary() { return FileBinary; } public PO_Documents setFileBinary(ArrayList value) { this.FileBinary = value; return this; } public String getDescription() { return Description; } public PO_Documents setDescription(String value) { this.Description = value; return this; } public String getPhysicalFileName() { return PhysicalFileName; } public PO_Documents setPhysicalFileName(String value) { this.PhysicalFileName = value; return this; } public Integer getItemNo() { return ItemNo; } public PO_Documents setItemNo(Integer value) { this.ItemNo = value; return this; } } public static class PO_EmailLog { @Required() public String EmailLogID = null; @References(PO_Main.class) @Required() public String OrderID = null; @Required() public Date EmailDateTime = null; public String From = null; public String To = null; public String CC = null; public String BCC = null; public String Attachments = null; public String FileID = null; public String Subject = null; public String Body = null; @References(HR_Staff.class) @Required() public String StaffID = null; public String EM_Main_RecID = null; public Boolean RequestReadReceipt = null; public String getEmailLogID() { return EmailLogID; } public PO_EmailLog setEmailLogID(String value) { this.EmailLogID = value; return this; } public String getOrderID() { return OrderID; } public PO_EmailLog setOrderID(String value) { this.OrderID = value; return this; } public Date getEmailDateTime() { return EmailDateTime; } public PO_EmailLog setEmailDateTime(Date value) { this.EmailDateTime = value; return this; } public String getFrom() { return From; } public PO_EmailLog setFrom(String value) { this.From = value; return this; } public String getTo() { return To; } public PO_EmailLog setTo(String value) { this.To = value; return this; } public String getCc() { return CC; } public PO_EmailLog setCc(String value) { this.CC = value; return this; } public String getBcc() { return BCC; } public PO_EmailLog setBcc(String value) { this.BCC = value; return this; } public String getAttachments() { return Attachments; } public PO_EmailLog setAttachments(String value) { this.Attachments = value; return this; } public String getFileID() { return FileID; } public PO_EmailLog setFileID(String value) { this.FileID = value; return this; } public String getSubject() { return Subject; } public PO_EmailLog setSubject(String value) { this.Subject = value; return this; } public String getBody() { return Body; } public PO_EmailLog setBody(String value) { this.Body = value; return this; } public String getStaffID() { return StaffID; } public PO_EmailLog setStaffID(String value) { this.StaffID = value; return this; } public String getEmMainRecID() { return EM_Main_RecID; } public PO_EmailLog setEmMainRecID(String value) { this.EM_Main_RecID = value; return this; } public Boolean isRequestReadReceipt() { return RequestReadReceipt; } public PO_EmailLog setRequestReadReceipt(Boolean value) { this.RequestReadReceipt = value; return this; } } public static class PO_LineCustomFields { @Required() public String RecID = null; @Required() public String SettingName = null; public String SettingDescription = null; public Integer CellType = null; public String FieldParameter = null; @References(SY_Plugin.class) @Required() public UUID SY_Plugin_RecID = null; @Required() public Date LastSavedDateTime = null; public Integer DisplayOrder = null; public String getRecID() { return RecID; } public PO_LineCustomFields setRecID(String value) { this.RecID = value; return this; } public String getSettingName() { return SettingName; } public PO_LineCustomFields setSettingName(String value) { this.SettingName = value; return this; } public String getSettingDescription() { return SettingDescription; } public PO_LineCustomFields setSettingDescription(String value) { this.SettingDescription = value; return this; } public Integer getCellType() { return CellType; } public PO_LineCustomFields setCellType(Integer value) { this.CellType = value; return this; } public String getFieldParameter() { return FieldParameter; } public PO_LineCustomFields setFieldParameter(String value) { this.FieldParameter = value; return this; } public UUID getSyPluginRecID() { return SY_Plugin_RecID; } public PO_LineCustomFields setSyPluginRecID(UUID value) { this.SY_Plugin_RecID = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public PO_LineCustomFields setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Integer getDisplayOrder() { return DisplayOrder; } public PO_LineCustomFields setDisplayOrder(Integer value) { this.DisplayOrder = value; return this; } } public static class PO_LineCustomValues { @Required() public String RecID = null; @References(PO_Lines.class) @Required() public String PO_Lines_RecID = null; @References(PO_LineCustomFields.class) @Required() public String PO_LineCustomFields_RecID = null; public String Contents = null; @Required() public Date LastSavedDateTime = null; public String getRecID() { return RecID; } public PO_LineCustomValues setRecID(String value) { this.RecID = value; return this; } public String getPoLinesRecID() { return PO_Lines_RecID; } public PO_LineCustomValues setPoLinesRecID(String value) { this.PO_Lines_RecID = value; return this; } public String getPoLineCustomFieldsRecID() { return PO_LineCustomFields_RecID; } public PO_LineCustomValues setPoLineCustomFieldsRecID(String value) { this.PO_LineCustomFields_RecID = value; return this; } public String getContents() { return Contents; } public PO_LineCustomValues setContents(String value) { this.Contents = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public PO_LineCustomValues setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } } public static class PO_Lines { @Required() public String OrderLineID = null; @References(PO_Main.class) @Required() public String OrderID = null; @Required() public String InventoryID = null; public BigDecimal Quantity = null; public BigDecimal SuppliersCost = null; public Date DeliveryDate = null; public BigDecimal Delivered = null; public Short DecimalPlaces = null; public Short OrderLineNo = null; public String SuppPartNo = null; public Date LastSavedDateTime = null; public String HistoryText_Comment = null; public BigDecimal OrderUnits = null; public Short LineType = null; public String PartNo = null; public String Description = null; public Short DeliveryDays = null; @Required() public String ClassificationID = null; public String ClassDescription = null; public BigDecimal TaxAmount = null; public String TaxID = null; public BigDecimal TaxRate = null; public BigDecimal HomeSuppliersCost = null; public BigDecimal CurrencyRateUsed = null; public String POClassID = null; public BigDecimal IncPrice = null; public BigDecimal LineTotal = null; public Short FxDecimalPlaces = null; public Short AUDDecimalPlaces = null; public BigDecimal FxTotal = null; @References(IN_SupplierWarehouse.class) public String IN_SupplierWarehouse_RecID = null; public String Unit = null; public Date UserDefinedDate3 = null; public String UserDefinedString1 = null; public String UserDefinedString2 = null; public String UserDefinedString3 = null; public BigDecimal UserDefinedFloat1 = null; public BigDecimal UserDefinedFloat2 = null; public BigDecimal UserDefinedFloat3 = null; public Date UserDefinedDate1 = null; public Date UserDefinedDate2 = null; public String SM_Task_RecID = null; @References(JB_JobStages.class) public String JB_JobStages_RecID = null; @Required() public BigDecimal LineTotalExTax = null; @References(IN_UnitOfMeasure.class) public UUID IN_UnitOfMeasure_RecID = null; public Boolean UnitChanged = null; public Boolean FXChanged = null; public Boolean ExChanged = null; public Boolean TaxRateChanged = null; public String getOrderLineID() { return OrderLineID; } public PO_Lines setOrderLineID(String value) { this.OrderLineID = value; return this; } public String getOrderID() { return OrderID; } public PO_Lines setOrderID(String value) { this.OrderID = value; return this; } public String getInventoryID() { return InventoryID; } public PO_Lines setInventoryID(String value) { this.InventoryID = value; return this; } public BigDecimal getQuantity() { return Quantity; } public PO_Lines setQuantity(BigDecimal value) { this.Quantity = value; return this; } public BigDecimal getSuppliersCost() { return SuppliersCost; } public PO_Lines setSuppliersCost(BigDecimal value) { this.SuppliersCost = value; return this; } public Date getDeliveryDate() { return DeliveryDate; } public PO_Lines setDeliveryDate(Date value) { this.DeliveryDate = value; return this; } public BigDecimal getDelivered() { return Delivered; } public PO_Lines setDelivered(BigDecimal value) { this.Delivered = value; return this; } public Short getDecimalPlaces() { return DecimalPlaces; } public PO_Lines setDecimalPlaces(Short value) { this.DecimalPlaces = value; return this; } public Short getOrderLineNo() { return OrderLineNo; } public PO_Lines setOrderLineNo(Short value) { this.OrderLineNo = value; return this; } public String getSuppPartNo() { return SuppPartNo; } public PO_Lines setSuppPartNo(String value) { this.SuppPartNo = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public PO_Lines setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public String getHistoryTextComment() { return HistoryText_Comment; } public PO_Lines setHistoryTextComment(String value) { this.HistoryText_Comment = value; return this; } public BigDecimal getOrderUnits() { return OrderUnits; } public PO_Lines setOrderUnits(BigDecimal value) { this.OrderUnits = value; return this; } public Short getLineType() { return LineType; } public PO_Lines setLineType(Short value) { this.LineType = value; return this; } public String getPartNo() { return PartNo; } public PO_Lines setPartNo(String value) { this.PartNo = value; return this; } public String getDescription() { return Description; } public PO_Lines setDescription(String value) { this.Description = value; return this; } public Short getDeliveryDays() { return DeliveryDays; } public PO_Lines setDeliveryDays(Short value) { this.DeliveryDays = value; return this; } public String getClassificationID() { return ClassificationID; } public PO_Lines setClassificationID(String value) { this.ClassificationID = value; return this; } public String getClassDescription() { return ClassDescription; } public PO_Lines setClassDescription(String value) { this.ClassDescription = value; return this; } public BigDecimal getTaxAmount() { return TaxAmount; } public PO_Lines setTaxAmount(BigDecimal value) { this.TaxAmount = value; return this; } public String getTaxID() { return TaxID; } public PO_Lines setTaxID(String value) { this.TaxID = value; return this; } public BigDecimal getTaxRate() { return TaxRate; } public PO_Lines setTaxRate(BigDecimal value) { this.TaxRate = value; return this; } public BigDecimal getHomeSuppliersCost() { return HomeSuppliersCost; } public PO_Lines setHomeSuppliersCost(BigDecimal value) { this.HomeSuppliersCost = value; return this; } public BigDecimal getCurrencyRateUsed() { return CurrencyRateUsed; } public PO_Lines setCurrencyRateUsed(BigDecimal value) { this.CurrencyRateUsed = value; return this; } public String getPoClassID() { return POClassID; } public PO_Lines setPoClassID(String value) { this.POClassID = value; return this; } public BigDecimal getIncPrice() { return IncPrice; } public PO_Lines setIncPrice(BigDecimal value) { this.IncPrice = value; return this; } public BigDecimal getLineTotal() { return LineTotal; } public PO_Lines setLineTotal(BigDecimal value) { this.LineTotal = value; return this; } public Short getFxDecimalPlaces() { return FxDecimalPlaces; } public PO_Lines setFxDecimalPlaces(Short value) { this.FxDecimalPlaces = value; return this; } public Short getAudDecimalPlaces() { return AUDDecimalPlaces; } public PO_Lines setAudDecimalPlaces(Short value) { this.AUDDecimalPlaces = value; return this; } public BigDecimal getFxTotal() { return FxTotal; } public PO_Lines setFxTotal(BigDecimal value) { this.FxTotal = value; return this; } public String getInSupplierWarehouseRecID() { return IN_SupplierWarehouse_RecID; } public PO_Lines setInSupplierWarehouseRecID(String value) { this.IN_SupplierWarehouse_RecID = value; return this; } public String getUnit() { return Unit; } public PO_Lines setUnit(String value) { this.Unit = value; return this; } public Date getUserDefinedDate3() { return UserDefinedDate3; } public PO_Lines setUserDefinedDate3(Date value) { this.UserDefinedDate3 = value; return this; } public String getUserDefinedString1() { return UserDefinedString1; } public PO_Lines setUserDefinedString1(String value) { this.UserDefinedString1 = value; return this; } public String getUserDefinedString2() { return UserDefinedString2; } public PO_Lines setUserDefinedString2(String value) { this.UserDefinedString2 = value; return this; } public String getUserDefinedString3() { return UserDefinedString3; } public PO_Lines setUserDefinedString3(String value) { this.UserDefinedString3 = value; return this; } public BigDecimal getUserDefinedFloat1() { return UserDefinedFloat1; } public PO_Lines setUserDefinedFloat1(BigDecimal value) { this.UserDefinedFloat1 = value; return this; } public BigDecimal getUserDefinedFloat2() { return UserDefinedFloat2; } public PO_Lines setUserDefinedFloat2(BigDecimal value) { this.UserDefinedFloat2 = value; return this; } public BigDecimal getUserDefinedFloat3() { return UserDefinedFloat3; } public PO_Lines setUserDefinedFloat3(BigDecimal value) { this.UserDefinedFloat3 = value; return this; } public Date getUserDefinedDate1() { return UserDefinedDate1; } public PO_Lines setUserDefinedDate1(Date value) { this.UserDefinedDate1 = value; return this; } public Date getUserDefinedDate2() { return UserDefinedDate2; } public PO_Lines setUserDefinedDate2(Date value) { this.UserDefinedDate2 = value; return this; } public String getSmTaskRecID() { return SM_Task_RecID; } public PO_Lines setSmTaskRecID(String value) { this.SM_Task_RecID = value; return this; } public String getJbJobStagesRecID() { return JB_JobStages_RecID; } public PO_Lines setJbJobStagesRecID(String value) { this.JB_JobStages_RecID = value; return this; } public BigDecimal getLineTotalExTax() { return LineTotalExTax; } public PO_Lines setLineTotalExTax(BigDecimal value) { this.LineTotalExTax = value; return this; } public UUID getInUnitOfMeasureRecID() { return IN_UnitOfMeasure_RecID; } public PO_Lines setInUnitOfMeasureRecID(UUID value) { this.IN_UnitOfMeasure_RecID = value; return this; } public Boolean isUnitChanged() { return UnitChanged; } public PO_Lines setUnitChanged(Boolean value) { this.UnitChanged = value; return this; } public Boolean isFxChanged() { return FXChanged; } public PO_Lines setFxChanged(Boolean value) { this.FXChanged = value; return this; } public Boolean isExChanged() { return ExChanged; } public PO_Lines setExChanged(Boolean value) { this.ExChanged = value; return this; } public Boolean isTaxRateChanged() { return TaxRateChanged; } public PO_Lines setTaxRateChanged(Boolean value) { this.TaxRateChanged = value; return this; } } public static class PO_Main { @Required() public String OrderID = null; public Date LastSavedDateTime = null; @Required() public String CreditorID = null; @Required() public String OrderNo = null; @Required() public Date OrderedDate = null; public String Header1 = null; public String Header2 = null; public String Header5 = null; @Required() public Short Status = null; public Short OrderType = null; public String OrderTypeInvID = null; @Required() public String IN_LogicalID = null; @Required() public Short OrderSupplierType = null; public String CentralWarehouseID = null; public BigDecimal TaxTotal = null; @References(FX_Currency.class) @Required() public String CurrencyID = null; @Required() public String InTransitWarehouseID = null; public String Reference = null; @References(PO_Workflows.class) @Required() public String PO_Workflows_RecID = null; public String HR_Staff_RecID = null; @References(CR_Warehouse.class) public String CR_Warehouse_WarehouseID = null; @Required() public BigDecimal Freight = null; @Required() public BigDecimal Duty = null; @Required() public BigDecimal Insurance = null; @References(TX_Main.class) @Required() public String FreightTaxID = null; @Required() public BigDecimal FreightTaxRate = null; @Required() public BigDecimal FreightTaxAmount = null; @References(TX_Main.class) @Required() public String DutyTaxID = null; @Required() public BigDecimal DutyTaxRate = null; @Required() public BigDecimal DutyTaxAmount = null; @References(TX_Main.class) @Required() public String InsuranceTaxID = null; @Required() public BigDecimal InsuranceTaxRate = null; @Required() public BigDecimal InsuranceTaxAmount = null; public String getOrderID() { return OrderID; } public PO_Main setOrderID(String value) { this.OrderID = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public PO_Main setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public String getCreditorID() { return CreditorID; } public PO_Main setCreditorID(String value) { this.CreditorID = value; return this; } public String getOrderNo() { return OrderNo; } public PO_Main setOrderNo(String value) { this.OrderNo = value; return this; } public Date getOrderedDate() { return OrderedDate; } public PO_Main setOrderedDate(Date value) { this.OrderedDate = value; return this; } public String getHeader1() { return Header1; } public PO_Main setHeader1(String value) { this.Header1 = value; return this; } public String getHeader2() { return Header2; } public PO_Main setHeader2(String value) { this.Header2 = value; return this; } public String getHeader5() { return Header5; } public PO_Main setHeader5(String value) { this.Header5 = value; return this; } public Short getStatus() { return Status; } public PO_Main setStatus(Short value) { this.Status = value; return this; } public Short getOrderType() { return OrderType; } public PO_Main setOrderType(Short value) { this.OrderType = value; return this; } public String getOrderTypeInvID() { return OrderTypeInvID; } public PO_Main setOrderTypeInvID(String value) { this.OrderTypeInvID = value; return this; } public String getInLogicalID() { return IN_LogicalID; } public PO_Main setInLogicalID(String value) { this.IN_LogicalID = value; return this; } public Short getOrderSupplierType() { return OrderSupplierType; } public PO_Main setOrderSupplierType(Short value) { this.OrderSupplierType = value; return this; } public String getCentralWarehouseID() { return CentralWarehouseID; } public PO_Main setCentralWarehouseID(String value) { this.CentralWarehouseID = value; return this; } public BigDecimal getTaxTotal() { return TaxTotal; } public PO_Main setTaxTotal(BigDecimal value) { this.TaxTotal = value; return this; } public String getCurrencyID() { return CurrencyID; } public PO_Main setCurrencyID(String value) { this.CurrencyID = value; return this; } public String getInTransitWarehouseID() { return InTransitWarehouseID; } public PO_Main setInTransitWarehouseID(String value) { this.InTransitWarehouseID = value; return this; } public String getReference() { return Reference; } public PO_Main setReference(String value) { this.Reference = value; return this; } public String getPoWorkflowsRecID() { return PO_Workflows_RecID; } public PO_Main setPoWorkflowsRecID(String value) { this.PO_Workflows_RecID = value; return this; } public String getHrStaffRecID() { return HR_Staff_RecID; } public PO_Main setHrStaffRecID(String value) { this.HR_Staff_RecID = value; return this; } public String getCrWarehouseWarehouseID() { return CR_Warehouse_WarehouseID; } public PO_Main setCrWarehouseWarehouseID(String value) { this.CR_Warehouse_WarehouseID = value; return this; } public BigDecimal getFreight() { return Freight; } public PO_Main setFreight(BigDecimal value) { this.Freight = value; return this; } public BigDecimal getDuty() { return Duty; } public PO_Main setDuty(BigDecimal value) { this.Duty = value; return this; } public BigDecimal getInsurance() { return Insurance; } public PO_Main setInsurance(BigDecimal value) { this.Insurance = value; return this; } public String getFreightTaxID() { return FreightTaxID; } public PO_Main setFreightTaxID(String value) { this.FreightTaxID = value; return this; } public BigDecimal getFreightTaxRate() { return FreightTaxRate; } public PO_Main setFreightTaxRate(BigDecimal value) { this.FreightTaxRate = value; return this; } public BigDecimal getFreightTaxAmount() { return FreightTaxAmount; } public PO_Main setFreightTaxAmount(BigDecimal value) { this.FreightTaxAmount = value; return this; } public String getDutyTaxID() { return DutyTaxID; } public PO_Main setDutyTaxID(String value) { this.DutyTaxID = value; return this; } public BigDecimal getDutyTaxRate() { return DutyTaxRate; } public PO_Main setDutyTaxRate(BigDecimal value) { this.DutyTaxRate = value; return this; } public BigDecimal getDutyTaxAmount() { return DutyTaxAmount; } public PO_Main setDutyTaxAmount(BigDecimal value) { this.DutyTaxAmount = value; return this; } public String getInsuranceTaxID() { return InsuranceTaxID; } public PO_Main setInsuranceTaxID(String value) { this.InsuranceTaxID = value; return this; } public BigDecimal getInsuranceTaxRate() { return InsuranceTaxRate; } public PO_Main setInsuranceTaxRate(BigDecimal value) { this.InsuranceTaxRate = value; return this; } public BigDecimal getInsuranceTaxAmount() { return InsuranceTaxAmount; } public PO_Main setInsuranceTaxAmount(BigDecimal value) { this.InsuranceTaxAmount = value; return this; } } public static class PO_Notes { @Required() public String RecID = null; @References(PO_Main.class) @Required() public String PurchaseOrderID = null; @Required() public String NoteTypeID = null; @Required() public Date LastSavedDateTime = null; @Required() public String LastSavedByStaffID = null; public String NoteText = null; public Boolean ReminderFlag = null; public Date ReminderDueDate = null; public String ReminderStaffID = null; public Short LineNum = null; @Required() public Integer ItemNo = null; public String getRecID() { return RecID; } public PO_Notes setRecID(String value) { this.RecID = value; return this; } public String getPurchaseOrderID() { return PurchaseOrderID; } public PO_Notes setPurchaseOrderID(String value) { this.PurchaseOrderID = value; return this; } public String getNoteTypeID() { return NoteTypeID; } public PO_Notes setNoteTypeID(String value) { this.NoteTypeID = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public PO_Notes setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public String getLastSavedByStaffID() { return LastSavedByStaffID; } public PO_Notes setLastSavedByStaffID(String value) { this.LastSavedByStaffID = value; return this; } public String getNoteText() { return NoteText; } public PO_Notes setNoteText(String value) { this.NoteText = value; return this; } public Boolean isReminderFlag() { return ReminderFlag; } public PO_Notes setReminderFlag(Boolean value) { this.ReminderFlag = value; return this; } public Date getReminderDueDate() { return ReminderDueDate; } public PO_Notes setReminderDueDate(Date value) { this.ReminderDueDate = value; return this; } public String getReminderStaffID() { return ReminderStaffID; } public PO_Notes setReminderStaffID(String value) { this.ReminderStaffID = value; return this; } public Short getLineNum() { return LineNum; } public PO_Notes setLineNum(Short value) { this.LineNum = value; return this; } public Integer getItemNo() { return ItemNo; } public PO_Notes setItemNo(Integer value) { this.ItemNo = value; return this; } } public static class PO_OrderQty { @Required() public String InventoryID = null; public BigDecimal Qty = null; public BigDecimal Delivered = null; public String getInventoryID() { return InventoryID; } public PO_OrderQty setInventoryID(String value) { this.InventoryID = value; return this; } public BigDecimal getQty() { return Qty; } public PO_OrderQty setQty(BigDecimal value) { this.Qty = value; return this; } public BigDecimal getDelivered() { return Delivered; } public PO_OrderQty setDelivered(BigDecimal value) { this.Delivered = value; return this; } } public static class PO_ShippingAddress { @References(PO_Main.class) @Required() public String OrderID = null; @Required() public Date LastSavedDateTime = null; public String AddressLine1 = null; public String AddressLine2 = null; public String AddressLine3 = null; public String AddressLine4 = null; public String Country = null; public String Postcode = null; public String ContactName = null; public String Phone = null; public String Fax = null; public String Spare1 = null; public String Spare2 = null; public String Spare3 = null; public String Spare4 = null; public String Spare5 = null; public String getOrderID() { return OrderID; } public PO_ShippingAddress setOrderID(String value) { this.OrderID = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public PO_ShippingAddress setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public String getAddressLine1() { return AddressLine1; } public PO_ShippingAddress setAddressLine1(String value) { this.AddressLine1 = value; return this; } public String getAddressLine2() { return AddressLine2; } public PO_ShippingAddress setAddressLine2(String value) { this.AddressLine2 = value; return this; } public String getAddressLine3() { return AddressLine3; } public PO_ShippingAddress setAddressLine3(String value) { this.AddressLine3 = value; return this; } public String getAddressLine4() { return AddressLine4; } public PO_ShippingAddress setAddressLine4(String value) { this.AddressLine4 = value; return this; } public String getCountry() { return Country; } public PO_ShippingAddress setCountry(String value) { this.Country = value; return this; } public String getPostcode() { return Postcode; } public PO_ShippingAddress setPostcode(String value) { this.Postcode = value; return this; } public String getContactName() { return ContactName; } public PO_ShippingAddress setContactName(String value) { this.ContactName = value; return this; } public String getPhone() { return Phone; } public PO_ShippingAddress setPhone(String value) { this.Phone = value; return this; } public String getFax() { return Fax; } public PO_ShippingAddress setFax(String value) { this.Fax = value; return this; } public String getSpare1() { return Spare1; } public PO_ShippingAddress setSpare1(String value) { this.Spare1 = value; return this; } public String getSpare2() { return Spare2; } public PO_ShippingAddress setSpare2(String value) { this.Spare2 = value; return this; } public String getSpare3() { return Spare3; } public PO_ShippingAddress setSpare3(String value) { this.Spare3 = value; return this; } public String getSpare4() { return Spare4; } public PO_ShippingAddress setSpare4(String value) { this.Spare4 = value; return this; } public String getSpare5() { return Spare5; } public PO_ShippingAddress setSpare5(String value) { this.Spare5 = value; return this; } } public static class PO_WorkflowLines { @Required() public String RecID = null; @References(PO_Workflows.class) @Required() public String PO_Workflows_RecID = null; @Required() public Integer StatusValue = null; public Integer NextStatusValue = null; @Required() public Date LastSavedDateTime = null; public String getRecID() { return RecID; } public PO_WorkflowLines setRecID(String value) { this.RecID = value; return this; } public String getPoWorkflowsRecID() { return PO_Workflows_RecID; } public PO_WorkflowLines setPoWorkflowsRecID(String value) { this.PO_Workflows_RecID = value; return this; } public Integer getStatusValue() { return StatusValue; } public PO_WorkflowLines setStatusValue(Integer value) { this.StatusValue = value; return this; } public Integer getNextStatusValue() { return NextStatusValue; } public PO_WorkflowLines setNextStatusValue(Integer value) { this.NextStatusValue = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public PO_WorkflowLines setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } } public static class PO_Workflows { @Required() public String RecID = null; @Required() public String Name = null; public String Description = null; @Required() public Date LastSavedDateTime = null; public String getRecID() { return RecID; } public PO_Workflows setRecID(String value) { this.RecID = value; return this; } public String getName() { return Name; } public PO_Workflows setName(String value) { this.Name = value; return this; } public String getDescription() { return Description; } public PO_Workflows setDescription(String value) { this.Description = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public PO_Workflows setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } } public static class PR_ClassificationPricing { @Required() public String RecID = null; @References(DB_Classification.class) public String DB_Classification_RecID = null; @References(IN_Classification.class) public String IN_Classification_RecID = null; @Required() public Short Source = null; @Required() public Short Mode = null; @Required() public BigDecimal Amount = null; @Required() public Date StartDate = null; @Required() public Date EndDate = null; @Required() public Boolean UseQuantityBreak = null; @Required() public BigDecimal QuantityBreak = null; @Required() public ArrayList RowHash = null; @Required() public Integer ItemNo = null; public String getRecID() { return RecID; } public PR_ClassificationPricing setRecID(String value) { this.RecID = value; return this; } public String getDbClassificationRecID() { return DB_Classification_RecID; } public PR_ClassificationPricing setDbClassificationRecID(String value) { this.DB_Classification_RecID = value; return this; } public String getInClassificationRecID() { return IN_Classification_RecID; } public PR_ClassificationPricing setInClassificationRecID(String value) { this.IN_Classification_RecID = value; return this; } public Short getSource() { return Source; } public PR_ClassificationPricing setSource(Short value) { this.Source = value; return this; } public Short getMode() { return Mode; } public PR_ClassificationPricing setMode(Short value) { this.Mode = value; return this; } public BigDecimal getAmount() { return Amount; } public PR_ClassificationPricing setAmount(BigDecimal value) { this.Amount = value; return this; } public Date getStartDate() { return StartDate; } public PR_ClassificationPricing setStartDate(Date value) { this.StartDate = value; return this; } public Date getEndDate() { return EndDate; } public PR_ClassificationPricing setEndDate(Date value) { this.EndDate = value; return this; } public Boolean isUseQuantityBreak() { return UseQuantityBreak; } public PR_ClassificationPricing setUseQuantityBreak(Boolean value) { this.UseQuantityBreak = value; return this; } public BigDecimal getQuantityBreak() { return QuantityBreak; } public PR_ClassificationPricing setQuantityBreak(BigDecimal value) { this.QuantityBreak = value; return this; } public ArrayList getRowHash() { return RowHash; } public PR_ClassificationPricing setRowHash(ArrayList value) { this.RowHash = value; return this; } public Integer getItemNo() { return ItemNo; } public PR_ClassificationPricing setItemNo(Integer value) { this.ItemNo = value; return this; } } public static class QO_ActivateBatch { @Required() public String BatchID = null; @Required() public String BatchNo = null; public Date BatchDateTime = null; @Required() public String StaffID = null; public String Notes = null; public String getBatchID() { return BatchID; } public QO_ActivateBatch setBatchID(String value) { this.BatchID = value; return this; } public String getBatchNo() { return BatchNo; } public QO_ActivateBatch setBatchNo(String value) { this.BatchNo = value; return this; } public Date getBatchDateTime() { return BatchDateTime; } public QO_ActivateBatch setBatchDateTime(Date value) { this.BatchDateTime = value; return this; } public String getStaffID() { return StaffID; } public QO_ActivateBatch setStaffID(String value) { this.StaffID = value; return this; } public String getNotes() { return Notes; } public QO_ActivateBatch setNotes(String value) { this.Notes = value; return this; } } public static class QO_ActivateBatchLines { @Required() public String BatchLineID = null; @Required() public String BatchID = null; public String DestInvoiceID = null; public String DestInvoiceNo = null; public String SourceQuoteID = null; public String SourceQuoteNo = null; public String SourceQuoteHistoryID = null; public Short SourceQuoteHistoryNo = null; public BigDecimal SourceQuoteTotal = null; public String DebtorID = null; public Date QuoteInitDate = null; public Date NextActivateDate = null; @Required() public Boolean Failed = null; public String FailReason = null; public Short DocType = null; public String getBatchLineID() { return BatchLineID; } public QO_ActivateBatchLines setBatchLineID(String value) { this.BatchLineID = value; return this; } public String getBatchID() { return BatchID; } public QO_ActivateBatchLines setBatchID(String value) { this.BatchID = value; return this; } public String getDestInvoiceID() { return DestInvoiceID; } public QO_ActivateBatchLines setDestInvoiceID(String value) { this.DestInvoiceID = value; return this; } public String getDestInvoiceNo() { return DestInvoiceNo; } public QO_ActivateBatchLines setDestInvoiceNo(String value) { this.DestInvoiceNo = value; return this; } public String getSourceQuoteID() { return SourceQuoteID; } public QO_ActivateBatchLines setSourceQuoteID(String value) { this.SourceQuoteID = value; return this; } public String getSourceQuoteNo() { return SourceQuoteNo; } public QO_ActivateBatchLines setSourceQuoteNo(String value) { this.SourceQuoteNo = value; return this; } public String getSourceQuoteHistoryID() { return SourceQuoteHistoryID; } public QO_ActivateBatchLines setSourceQuoteHistoryID(String value) { this.SourceQuoteHistoryID = value; return this; } public Short getSourceQuoteHistoryNo() { return SourceQuoteHistoryNo; } public QO_ActivateBatchLines setSourceQuoteHistoryNo(Short value) { this.SourceQuoteHistoryNo = value; return this; } public BigDecimal getSourceQuoteTotal() { return SourceQuoteTotal; } public QO_ActivateBatchLines setSourceQuoteTotal(BigDecimal value) { this.SourceQuoteTotal = value; return this; } public String getDebtorID() { return DebtorID; } public QO_ActivateBatchLines setDebtorID(String value) { this.DebtorID = value; return this; } public Date getQuoteInitDate() { return QuoteInitDate; } public QO_ActivateBatchLines setQuoteInitDate(Date value) { this.QuoteInitDate = value; return this; } public Date getNextActivateDate() { return NextActivateDate; } public QO_ActivateBatchLines setNextActivateDate(Date value) { this.NextActivateDate = value; return this; } public Boolean isFailed() { return Failed; } public QO_ActivateBatchLines setFailed(Boolean value) { this.Failed = value; return this; } public String getFailReason() { return FailReason; } public QO_ActivateBatchLines setFailReason(String value) { this.FailReason = value; return this; } public Short getDocType() { return DocType; } public QO_ActivateBatchLines setDocType(Short value) { this.DocType = value; return this; } } public static class QO_CashSale { @Required() public String InvoiceCashSaleID = null; @Required() public String InvoiceID = null; public String Name = null; public String Company = null; public String Address1 = null; public String Address2 = null; public String Address3 = null; public String Address4 = null; public String PostCode = null; public String Phone = null; public String Fax = null; public String ContactName = null; public String getInvoiceCashSaleID() { return InvoiceCashSaleID; } public QO_CashSale setInvoiceCashSaleID(String value) { this.InvoiceCashSaleID = value; return this; } public String getInvoiceID() { return InvoiceID; } public QO_CashSale setInvoiceID(String value) { this.InvoiceID = value; return this; } public String getName() { return Name; } public QO_CashSale setName(String value) { this.Name = value; return this; } public String getCompany() { return Company; } public QO_CashSale setCompany(String value) { this.Company = value; return this; } public String getAddress1() { return Address1; } public QO_CashSale setAddress1(String value) { this.Address1 = value; return this; } public String getAddress2() { return Address2; } public QO_CashSale setAddress2(String value) { this.Address2 = value; return this; } public String getAddress3() { return Address3; } public QO_CashSale setAddress3(String value) { this.Address3 = value; return this; } public String getAddress4() { return Address4; } public QO_CashSale setAddress4(String value) { this.Address4 = value; return this; } public String getPostCode() { return PostCode; } public QO_CashSale setPostCode(String value) { this.PostCode = value; return this; } public String getPhone() { return Phone; } public QO_CashSale setPhone(String value) { this.Phone = value; return this; } public String getFax() { return Fax; } public QO_CashSale setFax(String value) { this.Fax = value; return this; } public String getContactName() { return ContactName; } public QO_CashSale setContactName(String value) { this.ContactName = value; return this; } } public static class QO_CustomSetting { @Required() public String SettingID = null; @Required() public Date LastSavedDateTime = null; public String SettingDescription = null; @Required() public String SettingName = null; public BigDecimal DisplayOrder = null; public Short CellType = null; public String ScriptFormatCell = null; public String ScriptButtonClicked = null; public String ScriptReadData = null; @References(SY_Plugin.class) @Required() public UUID SY_Plugin_RecID = null; public String getSettingID() { return SettingID; } public QO_CustomSetting setSettingID(String value) { this.SettingID = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public QO_CustomSetting setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public String getSettingDescription() { return SettingDescription; } public QO_CustomSetting setSettingDescription(String value) { this.SettingDescription = value; return this; } public String getSettingName() { return SettingName; } public QO_CustomSetting setSettingName(String value) { this.SettingName = value; return this; } public BigDecimal getDisplayOrder() { return DisplayOrder; } public QO_CustomSetting setDisplayOrder(BigDecimal value) { this.DisplayOrder = value; return this; } public Short getCellType() { return CellType; } public QO_CustomSetting setCellType(Short value) { this.CellType = value; return this; } public String getScriptFormatCell() { return ScriptFormatCell; } public QO_CustomSetting setScriptFormatCell(String value) { this.ScriptFormatCell = value; return this; } public String getScriptButtonClicked() { return ScriptButtonClicked; } public QO_CustomSetting setScriptButtonClicked(String value) { this.ScriptButtonClicked = value; return this; } public String getScriptReadData() { return ScriptReadData; } public QO_CustomSetting setScriptReadData(String value) { this.ScriptReadData = value; return this; } public UUID getSyPluginRecID() { return SY_Plugin_RecID; } public QO_CustomSetting setSyPluginRecID(UUID value) { this.SY_Plugin_RecID = value; return this; } } public static class QO_CustomSettingValues { @Required() public String SettingValueID = null; @References(QO_CustomSetting.class) @Required() public String SettingID = null; @References(QO_Main.class) @Required() public String QuoteID = null; public String Contents = null; @Required() public Date LastSavedDateTime = null; public String getSettingValueID() { return SettingValueID; } public QO_CustomSettingValues setSettingValueID(String value) { this.SettingValueID = value; return this; } public String getSettingID() { return SettingID; } public QO_CustomSettingValues setSettingID(String value) { this.SettingID = value; return this; } public String getQuoteID() { return QuoteID; } public QO_CustomSettingValues setQuoteID(String value) { this.QuoteID = value; return this; } public String getContents() { return Contents; } public QO_CustomSettingValues setContents(String value) { this.Contents = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public QO_CustomSettingValues setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } } public static class QO_Documents { @Required() public String RecID = null; @Required() public String InvoiceID = null; @Required() public String DocumentTypeID = null; @Required() public Date LastSavedDateTime = null; @Required() public String LastSavedByStaffID = null; public ArrayList FileBinary = null; public String Description = null; public String PhysicalFileName = null; @Required() public Integer ItemNo = null; public String getRecID() { return RecID; } public QO_Documents setRecID(String value) { this.RecID = value; return this; } public String getInvoiceID() { return InvoiceID; } public QO_Documents setInvoiceID(String value) { this.InvoiceID = value; return this; } public String getDocumentTypeID() { return DocumentTypeID; } public QO_Documents setDocumentTypeID(String value) { this.DocumentTypeID = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public QO_Documents setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public String getLastSavedByStaffID() { return LastSavedByStaffID; } public QO_Documents setLastSavedByStaffID(String value) { this.LastSavedByStaffID = value; return this; } public ArrayList getFileBinary() { return FileBinary; } public QO_Documents setFileBinary(ArrayList value) { this.FileBinary = value; return this; } public String getDescription() { return Description; } public QO_Documents setDescription(String value) { this.Description = value; return this; } public String getPhysicalFileName() { return PhysicalFileName; } public QO_Documents setPhysicalFileName(String value) { this.PhysicalFileName = value; return this; } public Integer getItemNo() { return ItemNo; } public QO_Documents setItemNo(Integer value) { this.ItemNo = value; return this; } } public static class QO_EmailLog { @Required() public String EmailLogID = null; @References(QO_History.class) @Required() public String InvoiceHistoryID = null; @Required() public Date EmailDateTime = null; public String From = null; public String To = null; public String CC = null; public String BCC = null; public String Attachments = null; public String FileID = null; public String Subject = null; public String Body = null; @Required() public String InvoiceID = null; @References(HR_Staff.class) @Required() public String StaffID = null; public String EM_Main_RecID = null; public Boolean RequestReadReceipt = null; public String getEmailLogID() { return EmailLogID; } public QO_EmailLog setEmailLogID(String value) { this.EmailLogID = value; return this; } public String getInvoiceHistoryID() { return InvoiceHistoryID; } public QO_EmailLog setInvoiceHistoryID(String value) { this.InvoiceHistoryID = value; return this; } public Date getEmailDateTime() { return EmailDateTime; } public QO_EmailLog setEmailDateTime(Date value) { this.EmailDateTime = value; return this; } public String getFrom() { return From; } public QO_EmailLog setFrom(String value) { this.From = value; return this; } public String getTo() { return To; } public QO_EmailLog setTo(String value) { this.To = value; return this; } public String getCc() { return CC; } public QO_EmailLog setCc(String value) { this.CC = value; return this; } public String getBcc() { return BCC; } public QO_EmailLog setBcc(String value) { this.BCC = value; return this; } public String getAttachments() { return Attachments; } public QO_EmailLog setAttachments(String value) { this.Attachments = value; return this; } public String getFileID() { return FileID; } public QO_EmailLog setFileID(String value) { this.FileID = value; return this; } public String getSubject() { return Subject; } public QO_EmailLog setSubject(String value) { this.Subject = value; return this; } public String getBody() { return Body; } public QO_EmailLog setBody(String value) { this.Body = value; return this; } public String getInvoiceID() { return InvoiceID; } public QO_EmailLog setInvoiceID(String value) { this.InvoiceID = value; return this; } public String getStaffID() { return StaffID; } public QO_EmailLog setStaffID(String value) { this.StaffID = value; return this; } public String getEmMainRecID() { return EM_Main_RecID; } public QO_EmailLog setEmMainRecID(String value) { this.EM_Main_RecID = value; return this; } public Boolean isRequestReadReceipt() { return RequestReadReceipt; } public QO_EmailLog setRequestReadReceipt(Boolean value) { this.RequestReadReceipt = value; return this; } } public static class QO_History { @Required() public String InvoiceHistoryID = null; @Required() public String InvoiceID = null; @Required() public String LastModifiedBy = null; @Required() public Date RecordDate = null; public String Ref = null; public Short HistoryNo = null; public BigDecimal HistoryTotal = null; @Required() public Boolean DocketPrinted = null; public String DelAddress1 = null; public String DelAddress2 = null; public String DelAddress3 = null; public String DelAddress4 = null; public String PostCode = null; public String Notes = null; public String CourierDetails = null; @Required() public Boolean InvoicePrinted = null; public BigDecimal CartageCharge1 = null; public BigDecimal CartageCharge2 = null; public BigDecimal CartageCharge3 = null; public Date ExpiryDate = null; public String Cartage1TaxRateID = null; public BigDecimal Cartage1TaxRate = null; public BigDecimal Cartage1TaxAmount = null; public String Cartage2TaxRateID = null; public BigDecimal Cartage2TaxRate = null; public BigDecimal Cartage2TaxAmount = null; public String Cartage3TaxRateID = null; public BigDecimal Cartage3TaxRate = null; public BigDecimal Cartage3TaxAmount = null; public String DelContactName = null; public String FreightForwardAddress1 = null; public String FreightForwardAddress2 = null; public String FreightForwardAddress3 = null; public String FreightForwardAddress4 = null; public String FreightForwardNotes = null; public Date ExpectedCloseDate = null; public Short OpportunityStatus = null; @Required() public String SalesStageID = null; @Required() public String OpportunityStatusReasonID = null; public String OpportunityNote = null; public Boolean InvoiceEmailed = null; @Required() public Boolean DropShipment = null; @Required() public String DeliveryAddressee = null; @Required() public String DeliveryAddressCountry = null; @Required() public String FreightForwardAddressCountry = null; public String getInvoiceHistoryID() { return InvoiceHistoryID; } public QO_History setInvoiceHistoryID(String value) { this.InvoiceHistoryID = value; return this; } public String getInvoiceID() { return InvoiceID; } public QO_History setInvoiceID(String value) { this.InvoiceID = value; return this; } public String getLastModifiedBy() { return LastModifiedBy; } public QO_History setLastModifiedBy(String value) { this.LastModifiedBy = value; return this; } public Date getRecordDate() { return RecordDate; } public QO_History setRecordDate(Date value) { this.RecordDate = value; return this; } public String getRef() { return Ref; } public QO_History setRef(String value) { this.Ref = value; return this; } public Short getHistoryNo() { return HistoryNo; } public QO_History setHistoryNo(Short value) { this.HistoryNo = value; return this; } public BigDecimal getHistoryTotal() { return HistoryTotal; } public QO_History setHistoryTotal(BigDecimal value) { this.HistoryTotal = value; return this; } public Boolean isDocketPrinted() { return DocketPrinted; } public QO_History setDocketPrinted(Boolean value) { this.DocketPrinted = value; return this; } public String getDelAddress1() { return DelAddress1; } public QO_History setDelAddress1(String value) { this.DelAddress1 = value; return this; } public String getDelAddress2() { return DelAddress2; } public QO_History setDelAddress2(String value) { this.DelAddress2 = value; return this; } public String getDelAddress3() { return DelAddress3; } public QO_History setDelAddress3(String value) { this.DelAddress3 = value; return this; } public String getDelAddress4() { return DelAddress4; } public QO_History setDelAddress4(String value) { this.DelAddress4 = value; return this; } public String getPostCode() { return PostCode; } public QO_History setPostCode(String value) { this.PostCode = value; return this; } public String getNotes() { return Notes; } public QO_History setNotes(String value) { this.Notes = value; return this; } public String getCourierDetails() { return CourierDetails; } public QO_History setCourierDetails(String value) { this.CourierDetails = value; return this; } public Boolean isInvoicePrinted() { return InvoicePrinted; } public QO_History setInvoicePrinted(Boolean value) { this.InvoicePrinted = value; return this; } public BigDecimal getCartageCharge1() { return CartageCharge1; } public QO_History setCartageCharge1(BigDecimal value) { this.CartageCharge1 = value; return this; } public BigDecimal getCartageCharge2() { return CartageCharge2; } public QO_History setCartageCharge2(BigDecimal value) { this.CartageCharge2 = value; return this; } public BigDecimal getCartageCharge3() { return CartageCharge3; } public QO_History setCartageCharge3(BigDecimal value) { this.CartageCharge3 = value; return this; } public Date getExpiryDate() { return ExpiryDate; } public QO_History setExpiryDate(Date value) { this.ExpiryDate = value; return this; } public String getCartage1TaxRateID() { return Cartage1TaxRateID; } public QO_History setCartage1TaxRateID(String value) { this.Cartage1TaxRateID = value; return this; } public BigDecimal getCartage1TaxRate() { return Cartage1TaxRate; } public QO_History setCartage1TaxRate(BigDecimal value) { this.Cartage1TaxRate = value; return this; } public BigDecimal getCartage1TaxAmount() { return Cartage1TaxAmount; } public QO_History setCartage1TaxAmount(BigDecimal value) { this.Cartage1TaxAmount = value; return this; } public String getCartage2TaxRateID() { return Cartage2TaxRateID; } public QO_History setCartage2TaxRateID(String value) { this.Cartage2TaxRateID = value; return this; } public BigDecimal getCartage2TaxRate() { return Cartage2TaxRate; } public QO_History setCartage2TaxRate(BigDecimal value) { this.Cartage2TaxRate = value; return this; } public BigDecimal getCartage2TaxAmount() { return Cartage2TaxAmount; } public QO_History setCartage2TaxAmount(BigDecimal value) { this.Cartage2TaxAmount = value; return this; } public String getCartage3TaxRateID() { return Cartage3TaxRateID; } public QO_History setCartage3TaxRateID(String value) { this.Cartage3TaxRateID = value; return this; } public BigDecimal getCartage3TaxRate() { return Cartage3TaxRate; } public QO_History setCartage3TaxRate(BigDecimal value) { this.Cartage3TaxRate = value; return this; } public BigDecimal getCartage3TaxAmount() { return Cartage3TaxAmount; } public QO_History setCartage3TaxAmount(BigDecimal value) { this.Cartage3TaxAmount = value; return this; } public String getDelContactName() { return DelContactName; } public QO_History setDelContactName(String value) { this.DelContactName = value; return this; } public String getFreightForwardAddress1() { return FreightForwardAddress1; } public QO_History setFreightForwardAddress1(String value) { this.FreightForwardAddress1 = value; return this; } public String getFreightForwardAddress2() { return FreightForwardAddress2; } public QO_History setFreightForwardAddress2(String value) { this.FreightForwardAddress2 = value; return this; } public String getFreightForwardAddress3() { return FreightForwardAddress3; } public QO_History setFreightForwardAddress3(String value) { this.FreightForwardAddress3 = value; return this; } public String getFreightForwardAddress4() { return FreightForwardAddress4; } public QO_History setFreightForwardAddress4(String value) { this.FreightForwardAddress4 = value; return this; } public String getFreightForwardNotes() { return FreightForwardNotes; } public QO_History setFreightForwardNotes(String value) { this.FreightForwardNotes = value; return this; } public Date getExpectedCloseDate() { return ExpectedCloseDate; } public QO_History setExpectedCloseDate(Date value) { this.ExpectedCloseDate = value; return this; } public Short getOpportunityStatus() { return OpportunityStatus; } public QO_History setOpportunityStatus(Short value) { this.OpportunityStatus = value; return this; } public String getSalesStageID() { return SalesStageID; } public QO_History setSalesStageID(String value) { this.SalesStageID = value; return this; } public String getOpportunityStatusReasonID() { return OpportunityStatusReasonID; } public QO_History setOpportunityStatusReasonID(String value) { this.OpportunityStatusReasonID = value; return this; } public String getOpportunityNote() { return OpportunityNote; } public QO_History setOpportunityNote(String value) { this.OpportunityNote = value; return this; } public Boolean isInvoiceEmailed() { return InvoiceEmailed; } public QO_History setInvoiceEmailed(Boolean value) { this.InvoiceEmailed = value; return this; } public Boolean isDropShipment() { return DropShipment; } public QO_History setDropShipment(Boolean value) { this.DropShipment = value; return this; } public String getDeliveryAddressee() { return DeliveryAddressee; } public QO_History setDeliveryAddressee(String value) { this.DeliveryAddressee = value; return this; } public String getDeliveryAddressCountry() { return DeliveryAddressCountry; } public QO_History setDeliveryAddressCountry(String value) { this.DeliveryAddressCountry = value; return this; } public String getFreightForwardAddressCountry() { return FreightForwardAddressCountry; } public QO_History setFreightForwardAddressCountry(String value) { this.FreightForwardAddressCountry = value; return this; } } public static class QO_HistoryActivate { @Required() public String QuoteActivateID = null; @Required() public String QuoteHistoryID = null; public Date LastActivated = null; public Short RepeatEvery = null; public Short RepeatPeriod = null; public Date NextActivate = null; @Required() public Boolean EndingFlag = null; public Date EndDate = null; public String getQuoteActivateID() { return QuoteActivateID; } public QO_HistoryActivate setQuoteActivateID(String value) { this.QuoteActivateID = value; return this; } public String getQuoteHistoryID() { return QuoteHistoryID; } public QO_HistoryActivate setQuoteHistoryID(String value) { this.QuoteHistoryID = value; return this; } public Date getLastActivated() { return LastActivated; } public QO_HistoryActivate setLastActivated(Date value) { this.LastActivated = value; return this; } public Short getRepeatEvery() { return RepeatEvery; } public QO_HistoryActivate setRepeatEvery(Short value) { this.RepeatEvery = value; return this; } public Short getRepeatPeriod() { return RepeatPeriod; } public QO_HistoryActivate setRepeatPeriod(Short value) { this.RepeatPeriod = value; return this; } public Date getNextActivate() { return NextActivate; } public QO_HistoryActivate setNextActivate(Date value) { this.NextActivate = value; return this; } public Boolean isEndingFlag() { return EndingFlag; } public QO_HistoryActivate setEndingFlag(Boolean value) { this.EndingFlag = value; return this; } public Date getEndDate() { return EndDate; } public QO_HistoryActivate setEndDate(Date value) { this.EndDate = value; return this; } } public static class QO_LineCustomFields { @Required() public String FieldID = null; @Required() public String SettingName = null; public String SettingDescription = null; public Integer CellType = null; public String FieldParameter = null; @References(SY_Plugin.class) @Required() public UUID SY_Plugin_RecID = null; @Required() public Date LastSavedDateTime = null; public Integer DisplayOrder = null; public String getFieldID() { return FieldID; } public QO_LineCustomFields setFieldID(String value) { this.FieldID = value; return this; } public String getSettingName() { return SettingName; } public QO_LineCustomFields setSettingName(String value) { this.SettingName = value; return this; } public String getSettingDescription() { return SettingDescription; } public QO_LineCustomFields setSettingDescription(String value) { this.SettingDescription = value; return this; } public Integer getCellType() { return CellType; } public QO_LineCustomFields setCellType(Integer value) { this.CellType = value; return this; } public String getFieldParameter() { return FieldParameter; } public QO_LineCustomFields setFieldParameter(String value) { this.FieldParameter = value; return this; } public UUID getSyPluginRecID() { return SY_Plugin_RecID; } public QO_LineCustomFields setSyPluginRecID(UUID value) { this.SY_Plugin_RecID = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public QO_LineCustomFields setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Integer getDisplayOrder() { return DisplayOrder; } public QO_LineCustomFields setDisplayOrder(Integer value) { this.DisplayOrder = value; return this; } } public static class QO_LineCustomValues { @Required() public String RecID = null; @References(QO_Lines.class) @Required() public String InvoiceLineID = null; @References(QO_LineCustomFields.class) @Required() public String FieldID = null; public String Contents = null; @Required() public Date LastSavedDateTime = null; public String getRecID() { return RecID; } public QO_LineCustomValues setRecID(String value) { this.RecID = value; return this; } public String getInvoiceLineID() { return InvoiceLineID; } public QO_LineCustomValues setInvoiceLineID(String value) { this.InvoiceLineID = value; return this; } public String getFieldID() { return FieldID; } public QO_LineCustomValues setFieldID(String value) { this.FieldID = value; return this; } public String getContents() { return Contents; } public QO_LineCustomValues setContents(String value) { this.Contents = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public QO_LineCustomValues setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } } public static class QO_LineExtra { @Required() public String SOLineExtraRecID = null; @Required() public String InvoiceLineID = null; @Required() public String InvoiceHistoryID = null; public String LedgerReversePurchaseAccID = null; public String LedgerMovement_COGAccID = null; public String LedgerSalesAccID = null; public String LedgerSalesReturnsAccID = null; public String LedgerTaxLiabAccID = null; public String LedgerTaxExpAccID = null; public String getSoLineExtraRecID() { return SOLineExtraRecID; } public QO_LineExtra setSoLineExtraRecID(String value) { this.SOLineExtraRecID = value; return this; } public String getInvoiceLineID() { return InvoiceLineID; } public QO_LineExtra setInvoiceLineID(String value) { this.InvoiceLineID = value; return this; } public String getInvoiceHistoryID() { return InvoiceHistoryID; } public QO_LineExtra setInvoiceHistoryID(String value) { this.InvoiceHistoryID = value; return this; } public String getLedgerReversePurchaseAccID() { return LedgerReversePurchaseAccID; } public QO_LineExtra setLedgerReversePurchaseAccID(String value) { this.LedgerReversePurchaseAccID = value; return this; } public String getLedgerMovementCogAccID() { return LedgerMovement_COGAccID; } public QO_LineExtra setLedgerMovementCogAccID(String value) { this.LedgerMovement_COGAccID = value; return this; } public String getLedgerSalesAccID() { return LedgerSalesAccID; } public QO_LineExtra setLedgerSalesAccID(String value) { this.LedgerSalesAccID = value; return this; } public String getLedgerSalesReturnsAccID() { return LedgerSalesReturnsAccID; } public QO_LineExtra setLedgerSalesReturnsAccID(String value) { this.LedgerSalesReturnsAccID = value; return this; } public String getLedgerTaxLiabAccID() { return LedgerTaxLiabAccID; } public QO_LineExtra setLedgerTaxLiabAccID(String value) { this.LedgerTaxLiabAccID = value; return this; } public String getLedgerTaxExpAccID() { return LedgerTaxExpAccID; } public QO_LineExtra setLedgerTaxExpAccID(String value) { this.LedgerTaxExpAccID = value; return this; } } public static class QO_Lines { @Required() public String InvoiceLineID = null; @Required() public String InvoiceHistoryID = null; public Short GroupNo = null; public Short LineNum = null; public Boolean CommentLine = null; public String PartNo = null; public String Description = null; public Short PhysicalItem = null; public BigDecimal ItemWeight = null; public BigDecimal ItemCubic = null; @Required() public String TaxID = null; public String ClassDescription = null; public String Cat1Description = null; public String Cat2Description = null; public String Cat3Description = null; public String Units = null; public BigDecimal CostIn = null; public BigDecimal DefaultPrice = null; public BigDecimal ItemPrice = null; public BigDecimal Discount = null; public BigDecimal InvoicePrice = null; public BigDecimal RRPPrice = null; public BigDecimal TaxToCharge = null; public BigDecimal CurrentLineTotal = null; public BigDecimal QuantityOrdered = null; public String HistoryText_Comment = null; public Boolean Discountable = null; public BigDecimal DirectTax = null; public Short DecimalPlaces = null; public BigDecimal MinimumGP = null; public String DebitLedger = null; public String CreditLedger = null; public Boolean NonStock = null; @References(IN_Main.class) public String InventoryID = null; public Boolean UseSerialNo = null; public Boolean Backorderable = null; public BigDecimal TaxRate = null; public BigDecimal ItemTaxToCharge = null; public String LineLinkID = null; @Required() public Short KittingStatus = null; public BigDecimal KittingUnits = null; public String JobConnectorID = null; @Required() public Short KitStyle = null; public BigDecimal DiscountPercentage = null; public BigDecimal SalesmanCost = null; public BigDecimal ItemPriceIncGST = null; public BigDecimal ItemPriceUnDiscounted = null; public String NonStockLedgerSalesAccID = null; public String KitLineID = null; @Required() public Boolean SellPriceIncTax = null; public BigDecimal UserDefinedFloat1 = null; public BigDecimal UserDefinedFloat2 = null; public BigDecimal UserDefinedFloat3 = null; @Required() public Boolean FixSellPrice = null; public Boolean TypeKitRounding = null; @References(IN_UnitOfMeasure.class) public UUID IN_UnitOfMeasure_RecID = null; public String getInvoiceLineID() { return InvoiceLineID; } public QO_Lines setInvoiceLineID(String value) { this.InvoiceLineID = value; return this; } public String getInvoiceHistoryID() { return InvoiceHistoryID; } public QO_Lines setInvoiceHistoryID(String value) { this.InvoiceHistoryID = value; return this; } public Short getGroupNo() { return GroupNo; } public QO_Lines setGroupNo(Short value) { this.GroupNo = value; return this; } public Short getLineNum() { return LineNum; } public QO_Lines setLineNum(Short value) { this.LineNum = value; return this; } public Boolean isCommentLine() { return CommentLine; } public QO_Lines setCommentLine(Boolean value) { this.CommentLine = value; return this; } public String getPartNo() { return PartNo; } public QO_Lines setPartNo(String value) { this.PartNo = value; return this; } public String getDescription() { return Description; } public QO_Lines setDescription(String value) { this.Description = value; return this; } public Short getPhysicalItem() { return PhysicalItem; } public QO_Lines setPhysicalItem(Short value) { this.PhysicalItem = value; return this; } public BigDecimal getItemWeight() { return ItemWeight; } public QO_Lines setItemWeight(BigDecimal value) { this.ItemWeight = value; return this; } public BigDecimal getItemCubic() { return ItemCubic; } public QO_Lines setItemCubic(BigDecimal value) { this.ItemCubic = value; return this; } public String getTaxID() { return TaxID; } public QO_Lines setTaxID(String value) { this.TaxID = value; return this; } public String getClassDescription() { return ClassDescription; } public QO_Lines setClassDescription(String value) { this.ClassDescription = value; return this; } public String getCat1Description() { return Cat1Description; } public QO_Lines setCat1Description(String value) { this.Cat1Description = value; return this; } public String getCat2Description() { return Cat2Description; } public QO_Lines setCat2Description(String value) { this.Cat2Description = value; return this; } public String getCat3Description() { return Cat3Description; } public QO_Lines setCat3Description(String value) { this.Cat3Description = value; return this; } public String getUnits() { return Units; } public QO_Lines setUnits(String value) { this.Units = value; return this; } public BigDecimal getCostIn() { return CostIn; } public QO_Lines setCostIn(BigDecimal value) { this.CostIn = value; return this; } public BigDecimal getDefaultPrice() { return DefaultPrice; } public QO_Lines setDefaultPrice(BigDecimal value) { this.DefaultPrice = value; return this; } public BigDecimal getItemPrice() { return ItemPrice; } public QO_Lines setItemPrice(BigDecimal value) { this.ItemPrice = value; return this; } public BigDecimal getDiscount() { return Discount; } public QO_Lines setDiscount(BigDecimal value) { this.Discount = value; return this; } public BigDecimal getInvoicePrice() { return InvoicePrice; } public QO_Lines setInvoicePrice(BigDecimal value) { this.InvoicePrice = value; return this; } public BigDecimal getRrpPrice() { return RRPPrice; } public QO_Lines setRrpPrice(BigDecimal value) { this.RRPPrice = value; return this; } public BigDecimal getTaxToCharge() { return TaxToCharge; } public QO_Lines setTaxToCharge(BigDecimal value) { this.TaxToCharge = value; return this; } public BigDecimal getCurrentLineTotal() { return CurrentLineTotal; } public QO_Lines setCurrentLineTotal(BigDecimal value) { this.CurrentLineTotal = value; return this; } public BigDecimal getQuantityOrdered() { return QuantityOrdered; } public QO_Lines setQuantityOrdered(BigDecimal value) { this.QuantityOrdered = value; return this; } public String getHistoryTextComment() { return HistoryText_Comment; } public QO_Lines setHistoryTextComment(String value) { this.HistoryText_Comment = value; return this; } public Boolean isDiscountable() { return Discountable; } public QO_Lines setDiscountable(Boolean value) { this.Discountable = value; return this; } public BigDecimal getDirectTax() { return DirectTax; } public QO_Lines setDirectTax(BigDecimal value) { this.DirectTax = value; return this; } public Short getDecimalPlaces() { return DecimalPlaces; } public QO_Lines setDecimalPlaces(Short value) { this.DecimalPlaces = value; return this; } public BigDecimal getMinimumGP() { return MinimumGP; } public QO_Lines setMinimumGP(BigDecimal value) { this.MinimumGP = value; return this; } public String getDebitLedger() { return DebitLedger; } public QO_Lines setDebitLedger(String value) { this.DebitLedger = value; return this; } public String getCreditLedger() { return CreditLedger; } public QO_Lines setCreditLedger(String value) { this.CreditLedger = value; return this; } public Boolean isNonStock() { return NonStock; } public QO_Lines setNonStock(Boolean value) { this.NonStock = value; return this; } public String getInventoryID() { return InventoryID; } public QO_Lines setInventoryID(String value) { this.InventoryID = value; return this; } public Boolean isUseSerialNo() { return UseSerialNo; } public QO_Lines setUseSerialNo(Boolean value) { this.UseSerialNo = value; return this; } public Boolean isBackorderable() { return Backorderable; } public QO_Lines setBackorderable(Boolean value) { this.Backorderable = value; return this; } public BigDecimal getTaxRate() { return TaxRate; } public QO_Lines setTaxRate(BigDecimal value) { this.TaxRate = value; return this; } public BigDecimal getItemTaxToCharge() { return ItemTaxToCharge; } public QO_Lines setItemTaxToCharge(BigDecimal value) { this.ItemTaxToCharge = value; return this; } public String getLineLinkID() { return LineLinkID; } public QO_Lines setLineLinkID(String value) { this.LineLinkID = value; return this; } public Short getKittingStatus() { return KittingStatus; } public QO_Lines setKittingStatus(Short value) { this.KittingStatus = value; return this; } public BigDecimal getKittingUnits() { return KittingUnits; } public QO_Lines setKittingUnits(BigDecimal value) { this.KittingUnits = value; return this; } public String getJobConnectorID() { return JobConnectorID; } public QO_Lines setJobConnectorID(String value) { this.JobConnectorID = value; return this; } public Short getKitStyle() { return KitStyle; } public QO_Lines setKitStyle(Short value) { this.KitStyle = value; return this; } public BigDecimal getDiscountPercentage() { return DiscountPercentage; } public QO_Lines setDiscountPercentage(BigDecimal value) { this.DiscountPercentage = value; return this; } public BigDecimal getSalesmanCost() { return SalesmanCost; } public QO_Lines setSalesmanCost(BigDecimal value) { this.SalesmanCost = value; return this; } public BigDecimal getItemPriceIncGST() { return ItemPriceIncGST; } public QO_Lines setItemPriceIncGST(BigDecimal value) { this.ItemPriceIncGST = value; return this; } public BigDecimal getItemPriceUnDiscounted() { return ItemPriceUnDiscounted; } public QO_Lines setItemPriceUnDiscounted(BigDecimal value) { this.ItemPriceUnDiscounted = value; return this; } public String getNonStockLedgerSalesAccID() { return NonStockLedgerSalesAccID; } public QO_Lines setNonStockLedgerSalesAccID(String value) { this.NonStockLedgerSalesAccID = value; return this; } public String getKitLineID() { return KitLineID; } public QO_Lines setKitLineID(String value) { this.KitLineID = value; return this; } public Boolean isSellPriceIncTax() { return SellPriceIncTax; } public QO_Lines setSellPriceIncTax(Boolean value) { this.SellPriceIncTax = value; return this; } public BigDecimal getUserDefinedFloat1() { return UserDefinedFloat1; } public QO_Lines setUserDefinedFloat1(BigDecimal value) { this.UserDefinedFloat1 = value; return this; } public BigDecimal getUserDefinedFloat2() { return UserDefinedFloat2; } public QO_Lines setUserDefinedFloat2(BigDecimal value) { this.UserDefinedFloat2 = value; return this; } public BigDecimal getUserDefinedFloat3() { return UserDefinedFloat3; } public QO_Lines setUserDefinedFloat3(BigDecimal value) { this.UserDefinedFloat3 = value; return this; } public Boolean isFixSellPrice() { return FixSellPrice; } public QO_Lines setFixSellPrice(Boolean value) { this.FixSellPrice = value; return this; } public Boolean isTypeKitRounding() { return TypeKitRounding; } public QO_Lines setTypeKitRounding(Boolean value) { this.TypeKitRounding = value; return this; } public UUID getInUnitOfMeasureRecID() { return IN_UnitOfMeasure_RecID; } public QO_Lines setInUnitOfMeasureRecID(UUID value) { this.IN_UnitOfMeasure_RecID = value; return this; } } public static class QO_Main { @Required() public String InvoiceID = null; @Required() public Date LastSavedDateTime = null; @References(DB_Main.class) @Required() public String DebtorID = null; public String StaffID = null; @Required() public String InvoiceNo = null; @Required() public Date InvoiceInitDate = null; @Required() public Date InvoiceLastDate = null; public String OrderNo = null; public String TaxExemptNo = null; @Required() public Boolean WholeSaleInvoice = null; public BigDecimal InvoiceTotal = null; @Required() public Boolean InvoicePrinted = null; public Short CurrentHistoryNo = null; public Short Status = null; @Required() public Short BillWhenComplete = null; public Short InvoiceType = null; public String GroupSupplierID = null; @Required() public Boolean GroupOrdered = null; @Required() public String IN_LogicalID = null; @Required() public String BranchID = null; public String QOReference = null; @Required() public String JobCostID = null; @Required() public Integer DocType = null; @Required() public Short BackOrderMode = null; public Date ExpectedDeliveryDate = null; public String DebtorContactName = null; public String ParentDebtorID = null; @References(IN_PriceSchemes.class) @Required() public String PriceSchemeID = null; public Boolean InvoiceEmailed = null; public String getInvoiceID() { return InvoiceID; } public QO_Main setInvoiceID(String value) { this.InvoiceID = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public QO_Main setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public String getDebtorID() { return DebtorID; } public QO_Main setDebtorID(String value) { this.DebtorID = value; return this; } public String getStaffID() { return StaffID; } public QO_Main setStaffID(String value) { this.StaffID = value; return this; } public String getInvoiceNo() { return InvoiceNo; } public QO_Main setInvoiceNo(String value) { this.InvoiceNo = value; return this; } public Date getInvoiceInitDate() { return InvoiceInitDate; } public QO_Main setInvoiceInitDate(Date value) { this.InvoiceInitDate = value; return this; } public Date getInvoiceLastDate() { return InvoiceLastDate; } public QO_Main setInvoiceLastDate(Date value) { this.InvoiceLastDate = value; return this; } public String getOrderNo() { return OrderNo; } public QO_Main setOrderNo(String value) { this.OrderNo = value; return this; } public String getTaxExemptNo() { return TaxExemptNo; } public QO_Main setTaxExemptNo(String value) { this.TaxExemptNo = value; return this; } public Boolean isWholeSaleInvoice() { return WholeSaleInvoice; } public QO_Main setWholeSaleInvoice(Boolean value) { this.WholeSaleInvoice = value; return this; } public BigDecimal getInvoiceTotal() { return InvoiceTotal; } public QO_Main setInvoiceTotal(BigDecimal value) { this.InvoiceTotal = value; return this; } public Boolean isInvoicePrinted() { return InvoicePrinted; } public QO_Main setInvoicePrinted(Boolean value) { this.InvoicePrinted = value; return this; } public Short getCurrentHistoryNo() { return CurrentHistoryNo; } public QO_Main setCurrentHistoryNo(Short value) { this.CurrentHistoryNo = value; return this; } public Short getStatus() { return Status; } public QO_Main setStatus(Short value) { this.Status = value; return this; } public Short getBillWhenComplete() { return BillWhenComplete; } public QO_Main setBillWhenComplete(Short value) { this.BillWhenComplete = value; return this; } public Short getInvoiceType() { return InvoiceType; } public QO_Main setInvoiceType(Short value) { this.InvoiceType = value; return this; } public String getGroupSupplierID() { return GroupSupplierID; } public QO_Main setGroupSupplierID(String value) { this.GroupSupplierID = value; return this; } public Boolean isGroupOrdered() { return GroupOrdered; } public QO_Main setGroupOrdered(Boolean value) { this.GroupOrdered = value; return this; } public String getInLogicalID() { return IN_LogicalID; } public QO_Main setInLogicalID(String value) { this.IN_LogicalID = value; return this; } public String getBranchID() { return BranchID; } public QO_Main setBranchID(String value) { this.BranchID = value; return this; } public String getQoReference() { return QOReference; } public QO_Main setQoReference(String value) { this.QOReference = value; return this; } public String getJobCostID() { return JobCostID; } public QO_Main setJobCostID(String value) { this.JobCostID = value; return this; } public Integer getDocType() { return DocType; } public QO_Main setDocType(Integer value) { this.DocType = value; return this; } public Short getBackOrderMode() { return BackOrderMode; } public QO_Main setBackOrderMode(Short value) { this.BackOrderMode = value; return this; } public Date getExpectedDeliveryDate() { return ExpectedDeliveryDate; } public QO_Main setExpectedDeliveryDate(Date value) { this.ExpectedDeliveryDate = value; return this; } public String getDebtorContactName() { return DebtorContactName; } public QO_Main setDebtorContactName(String value) { this.DebtorContactName = value; return this; } public String getParentDebtorID() { return ParentDebtorID; } public QO_Main setParentDebtorID(String value) { this.ParentDebtorID = value; return this; } public String getPriceSchemeID() { return PriceSchemeID; } public QO_Main setPriceSchemeID(String value) { this.PriceSchemeID = value; return this; } public Boolean isInvoiceEmailed() { return InvoiceEmailed; } public QO_Main setInvoiceEmailed(Boolean value) { this.InvoiceEmailed = value; return this; } } public static class QO_Notes { @Required() public String RecID = null; @Required() public String InvoiceID = null; @Required() public String NoteTypeID = null; @Required() public Date LastSavedDateTime = null; @Required() public String LastSavedByStaffID = null; public String NoteText = null; @Required() public Integer ItemNo = null; public String getRecID() { return RecID; } public QO_Notes setRecID(String value) { this.RecID = value; return this; } public String getInvoiceID() { return InvoiceID; } public QO_Notes setInvoiceID(String value) { this.InvoiceID = value; return this; } public String getNoteTypeID() { return NoteTypeID; } public QO_Notes setNoteTypeID(String value) { this.NoteTypeID = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public QO_Notes setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public String getLastSavedByStaffID() { return LastSavedByStaffID; } public QO_Notes setLastSavedByStaffID(String value) { this.LastSavedByStaffID = value; return this; } public String getNoteText() { return NoteText; } public QO_Notes setNoteText(String value) { this.NoteText = value; return this; } public Integer getItemNo() { return ItemNo; } public QO_Notes setItemNo(Integer value) { this.ItemNo = value; return this; } } public static class QO_OpportunityStatusReasons { @Required() public String RecID = null; @Required() public Date LastSavedDateTime = null; @Required() public Integer DisplayOrder = null; @Required() public String Description = null; @Required() public Short OpportunityStatusType = null; public String Note = null; public Boolean DefaultOpportunityReason = null; @Required() public Boolean IsEnabled = null; public String getRecID() { return RecID; } public QO_OpportunityStatusReasons setRecID(String value) { this.RecID = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public QO_OpportunityStatusReasons setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Integer getDisplayOrder() { return DisplayOrder; } public QO_OpportunityStatusReasons setDisplayOrder(Integer value) { this.DisplayOrder = value; return this; } public String getDescription() { return Description; } public QO_OpportunityStatusReasons setDescription(String value) { this.Description = value; return this; } public Short getOpportunityStatusType() { return OpportunityStatusType; } public QO_OpportunityStatusReasons setOpportunityStatusType(Short value) { this.OpportunityStatusType = value; return this; } public String getNote() { return Note; } public QO_OpportunityStatusReasons setNote(String value) { this.Note = value; return this; } public Boolean isDefaultOpportunityReason() { return DefaultOpportunityReason; } public QO_OpportunityStatusReasons setDefaultOpportunityReason(Boolean value) { this.DefaultOpportunityReason = value; return this; } public Boolean getIsEnabled() { return IsEnabled; } public QO_OpportunityStatusReasons setIsEnabled(Boolean value) { this.IsEnabled = value; return this; } } public static class QO_SalesStages { @Required() public String RecID = null; @Required() public Date LastSavedDateTime = null; @Required() public Integer DisplayOrder = null; @Required() public String Description = null; @Required() public Integer PercentComplete = null; public Boolean DefaultSalesStage = null; @Required() public Boolean IsEnabled = null; public String getRecID() { return RecID; } public QO_SalesStages setRecID(String value) { this.RecID = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public QO_SalesStages setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Integer getDisplayOrder() { return DisplayOrder; } public QO_SalesStages setDisplayOrder(Integer value) { this.DisplayOrder = value; return this; } public String getDescription() { return Description; } public QO_SalesStages setDescription(String value) { this.Description = value; return this; } public Integer getPercentComplete() { return PercentComplete; } public QO_SalesStages setPercentComplete(Integer value) { this.PercentComplete = value; return this; } public Boolean isDefaultSalesStage() { return DefaultSalesStage; } public QO_SalesStages setDefaultSalesStage(Boolean value) { this.DefaultSalesStage = value; return this; } public Boolean getIsEnabled() { return IsEnabled; } public QO_SalesStages setIsEnabled(Boolean value) { this.IsEnabled = value; return this; } } public static class QO_SOLink { @Required() public String LinkID = null; @Required() public String QuoteID = null; @Required() public String InvoiceID = null; public String getLinkID() { return LinkID; } public QO_SOLink setLinkID(String value) { this.LinkID = value; return this; } public String getQuoteID() { return QuoteID; } public QO_SOLink setQuoteID(String value) { this.QuoteID = value; return this; } public String getInvoiceID() { return InvoiceID; } public QO_SOLink setInvoiceID(String value) { this.InvoiceID = value; return this; } } public static class RA_CreditDocuments { @Required() public String RecID = null; @References(RA_CreditMain.class) @Required() public String RA_CreditMain_RecID = null; @References(SY_DocumentTypes.class) public String DocumentTypeID = null; public Date LastSavedDateTime = null; @References(HR_Staff.class) @Required() public String LastSavedByStaffID = null; public ArrayList FileBinary = null; public String Description = null; public String PhysicalFileName = null; @Required() public Integer ItemNo = null; public String getRecID() { return RecID; } public RA_CreditDocuments setRecID(String value) { this.RecID = value; return this; } public String getRaCreditMainRecID() { return RA_CreditMain_RecID; } public RA_CreditDocuments setRaCreditMainRecID(String value) { this.RA_CreditMain_RecID = value; return this; } public String getDocumentTypeID() { return DocumentTypeID; } public RA_CreditDocuments setDocumentTypeID(String value) { this.DocumentTypeID = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public RA_CreditDocuments setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public String getLastSavedByStaffID() { return LastSavedByStaffID; } public RA_CreditDocuments setLastSavedByStaffID(String value) { this.LastSavedByStaffID = value; return this; } public ArrayList getFileBinary() { return FileBinary; } public RA_CreditDocuments setFileBinary(ArrayList value) { this.FileBinary = value; return this; } public String getDescription() { return Description; } public RA_CreditDocuments setDescription(String value) { this.Description = value; return this; } public String getPhysicalFileName() { return PhysicalFileName; } public RA_CreditDocuments setPhysicalFileName(String value) { this.PhysicalFileName = value; return this; } public Integer getItemNo() { return ItemNo; } public RA_CreditDocuments setItemNo(Integer value) { this.ItemNo = value; return this; } } public static class RA_CreditExchangeLineDetails { @Required() public String RecID = null; @References(RA_CreditExchangeLines.class) @Required() public String Parent_RecID = null; @References(IN_SOH.class) public String IN_SOH_LinkID = null; @Required() public BigDecimal Cost = null; @Required() public BigDecimal SpecialPrice = null; @Required() public BigDecimal Quantity = null; @Required() public String SerialNo = null; public Date ExpiryDate = null; @Required() public String BinLocation = null; public Date LastSavedDateTime = null; @Required() public ArrayList RowHash = null; @Required() public Integer ItemNo = null; public String getRecID() { return RecID; } public RA_CreditExchangeLineDetails setRecID(String value) { this.RecID = value; return this; } public String getParentRecID() { return Parent_RecID; } public RA_CreditExchangeLineDetails setParentRecID(String value) { this.Parent_RecID = value; return this; } public String getInSohLinkID() { return IN_SOH_LinkID; } public RA_CreditExchangeLineDetails setInSohLinkID(String value) { this.IN_SOH_LinkID = value; return this; } public BigDecimal getCost() { return Cost; } public RA_CreditExchangeLineDetails setCost(BigDecimal value) { this.Cost = value; return this; } public BigDecimal getSpecialPrice() { return SpecialPrice; } public RA_CreditExchangeLineDetails setSpecialPrice(BigDecimal value) { this.SpecialPrice = value; return this; } public BigDecimal getQuantity() { return Quantity; } public RA_CreditExchangeLineDetails setQuantity(BigDecimal value) { this.Quantity = value; return this; } public String getSerialNo() { return SerialNo; } public RA_CreditExchangeLineDetails setSerialNo(String value) { this.SerialNo = value; return this; } public Date getExpiryDate() { return ExpiryDate; } public RA_CreditExchangeLineDetails setExpiryDate(Date value) { this.ExpiryDate = value; return this; } public String getBinLocation() { return BinLocation; } public RA_CreditExchangeLineDetails setBinLocation(String value) { this.BinLocation = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public RA_CreditExchangeLineDetails setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public ArrayList getRowHash() { return RowHash; } public RA_CreditExchangeLineDetails setRowHash(ArrayList value) { this.RowHash = value; return this; } public Integer getItemNo() { return ItemNo; } public RA_CreditExchangeLineDetails setItemNo(Integer value) { this.ItemNo = value; return this; } } public static class RA_CreditExchangeLines { @Required() public String RecID = null; @References(RA_CreditMain.class) @Required() public String RA_CreditMain_RecID = null; @References(RA_CreditLines.class) @Required() public String RA_CreditLines_RecID = null; public BigDecimal Quantity = null; @Required() public Date LastSavedDateTime = null; public String Remark = null; public BigDecimal TotalCreditValue = null; @References(IN_Main.class) @Required() public String InventoryID = null; @References(TX_Main.class) @Required() public String TaxID = null; public BigDecimal TaxAmount = null; @Required() public ArrayList RowHash = null; @Required() public Integer ItemNo = null; @Required() public BigDecimal FXUnitCreditValue = null; @Required() public BigDecimal FXTotalCreditValue = null; @Required() public BigDecimal FXRate = null; public BigDecimal UnitCreditValue = null; public String getRecID() { return RecID; } public RA_CreditExchangeLines setRecID(String value) { this.RecID = value; return this; } public String getRaCreditMainRecID() { return RA_CreditMain_RecID; } public RA_CreditExchangeLines setRaCreditMainRecID(String value) { this.RA_CreditMain_RecID = value; return this; } public String getRaCreditLinesRecID() { return RA_CreditLines_RecID; } public RA_CreditExchangeLines setRaCreditLinesRecID(String value) { this.RA_CreditLines_RecID = value; return this; } public BigDecimal getQuantity() { return Quantity; } public RA_CreditExchangeLines setQuantity(BigDecimal value) { this.Quantity = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public RA_CreditExchangeLines setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public String getRemark() { return Remark; } public RA_CreditExchangeLines setRemark(String value) { this.Remark = value; return this; } public BigDecimal getTotalCreditValue() { return TotalCreditValue; } public RA_CreditExchangeLines setTotalCreditValue(BigDecimal value) { this.TotalCreditValue = value; return this; } public String getInventoryID() { return InventoryID; } public RA_CreditExchangeLines setInventoryID(String value) { this.InventoryID = value; return this; } public String getTaxID() { return TaxID; } public RA_CreditExchangeLines setTaxID(String value) { this.TaxID = value; return this; } public BigDecimal getTaxAmount() { return TaxAmount; } public RA_CreditExchangeLines setTaxAmount(BigDecimal value) { this.TaxAmount = value; return this; } public ArrayList getRowHash() { return RowHash; } public RA_CreditExchangeLines setRowHash(ArrayList value) { this.RowHash = value; return this; } public Integer getItemNo() { return ItemNo; } public RA_CreditExchangeLines setItemNo(Integer value) { this.ItemNo = value; return this; } public BigDecimal getFxUnitCreditValue() { return FXUnitCreditValue; } public RA_CreditExchangeLines setFxUnitCreditValue(BigDecimal value) { this.FXUnitCreditValue = value; return this; } public BigDecimal getFxTotalCreditValue() { return FXTotalCreditValue; } public RA_CreditExchangeLines setFxTotalCreditValue(BigDecimal value) { this.FXTotalCreditValue = value; return this; } public BigDecimal getFxRate() { return FXRate; } public RA_CreditExchangeLines setFxRate(BigDecimal value) { this.FXRate = value; return this; } public BigDecimal getUnitCreditValue() { return UnitCreditValue; } public RA_CreditExchangeLines setUnitCreditValue(BigDecimal value) { this.UnitCreditValue = value; return this; } } public static class RA_CreditLineDetails { @Required() public String RecID = null; @References(RA_CreditLines.class) @Required() public String Parent_RecID = null; @References(IN_SOH.class) public String IN_SOH_LinkID = null; @Required() public BigDecimal Cost = null; @Required() public BigDecimal SpecialPrice = null; @Required() public BigDecimal Quantity = null; @Required() public String SerialNo = null; public Date ExpiryDate = null; @Required() public String BinLocation = null; public Date LastSavedDateTime = null; @Required() public ArrayList RowHash = null; @Required() public Integer ItemNo = null; public String getRecID() { return RecID; } public RA_CreditLineDetails setRecID(String value) { this.RecID = value; return this; } public String getParentRecID() { return Parent_RecID; } public RA_CreditLineDetails setParentRecID(String value) { this.Parent_RecID = value; return this; } public String getInSohLinkID() { return IN_SOH_LinkID; } public RA_CreditLineDetails setInSohLinkID(String value) { this.IN_SOH_LinkID = value; return this; } public BigDecimal getCost() { return Cost; } public RA_CreditLineDetails setCost(BigDecimal value) { this.Cost = value; return this; } public BigDecimal getSpecialPrice() { return SpecialPrice; } public RA_CreditLineDetails setSpecialPrice(BigDecimal value) { this.SpecialPrice = value; return this; } public BigDecimal getQuantity() { return Quantity; } public RA_CreditLineDetails setQuantity(BigDecimal value) { this.Quantity = value; return this; } public String getSerialNo() { return SerialNo; } public RA_CreditLineDetails setSerialNo(String value) { this.SerialNo = value; return this; } public Date getExpiryDate() { return ExpiryDate; } public RA_CreditLineDetails setExpiryDate(Date value) { this.ExpiryDate = value; return this; } public String getBinLocation() { return BinLocation; } public RA_CreditLineDetails setBinLocation(String value) { this.BinLocation = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public RA_CreditLineDetails setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public ArrayList getRowHash() { return RowHash; } public RA_CreditLineDetails setRowHash(ArrayList value) { this.RowHash = value; return this; } public Integer getItemNo() { return ItemNo; } public RA_CreditLineDetails setItemNo(Integer value) { this.ItemNo = value; return this; } } public static class RA_CreditLines { @Required() public String RecID = null; @References(RA_CreditMain.class) @Required() public String RA_CreditMain_RecID = null; @References(RA_ShipLines.class) public String RA_ShipLines_RecID = null; public BigDecimal Quantity = null; @References(RA_ReturnCodes.class) @Required() public String RA_ReturnCodes_RecID = null; @Required() public Date LastSavedDateTime = null; public String Remark = null; public BigDecimal TotalCreditValue = null; @Required() public Boolean Completed = null; @References(IN_Main.class) @Required() public String InventoryID = null; public String LinkLineID = null; @References(TX_Main.class) @Required() public String TaxID = null; public BigDecimal TaxAmount = null; @Required() public ArrayList RowHash = null; @Required() public Integer ItemNo = null; @References(PO_Lines.class) public String PO_Lines_OrderLineID = null; @Required() public BigDecimal FXUnitCreditValue = null; @Required() public BigDecimal FXTotalCreditValue = null; @Required() public BigDecimal FXRate = null; public BigDecimal UnitCreditValue = null; public String getRecID() { return RecID; } public RA_CreditLines setRecID(String value) { this.RecID = value; return this; } public String getRaCreditMainRecID() { return RA_CreditMain_RecID; } public RA_CreditLines setRaCreditMainRecID(String value) { this.RA_CreditMain_RecID = value; return this; } public String getRaShipLinesRecID() { return RA_ShipLines_RecID; } public RA_CreditLines setRaShipLinesRecID(String value) { this.RA_ShipLines_RecID = value; return this; } public BigDecimal getQuantity() { return Quantity; } public RA_CreditLines setQuantity(BigDecimal value) { this.Quantity = value; return this; } public String getRaReturnCodesRecID() { return RA_ReturnCodes_RecID; } public RA_CreditLines setRaReturnCodesRecID(String value) { this.RA_ReturnCodes_RecID = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public RA_CreditLines setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public String getRemark() { return Remark; } public RA_CreditLines setRemark(String value) { this.Remark = value; return this; } public BigDecimal getTotalCreditValue() { return TotalCreditValue; } public RA_CreditLines setTotalCreditValue(BigDecimal value) { this.TotalCreditValue = value; return this; } public Boolean isCompleted() { return Completed; } public RA_CreditLines setCompleted(Boolean value) { this.Completed = value; return this; } public String getInventoryID() { return InventoryID; } public RA_CreditLines setInventoryID(String value) { this.InventoryID = value; return this; } public String getLinkLineID() { return LinkLineID; } public RA_CreditLines setLinkLineID(String value) { this.LinkLineID = value; return this; } public String getTaxID() { return TaxID; } public RA_CreditLines setTaxID(String value) { this.TaxID = value; return this; } public BigDecimal getTaxAmount() { return TaxAmount; } public RA_CreditLines setTaxAmount(BigDecimal value) { this.TaxAmount = value; return this; } public ArrayList getRowHash() { return RowHash; } public RA_CreditLines setRowHash(ArrayList value) { this.RowHash = value; return this; } public Integer getItemNo() { return ItemNo; } public RA_CreditLines setItemNo(Integer value) { this.ItemNo = value; return this; } public String getPoLinesOrderLineID() { return PO_Lines_OrderLineID; } public RA_CreditLines setPoLinesOrderLineID(String value) { this.PO_Lines_OrderLineID = value; return this; } public BigDecimal getFxUnitCreditValue() { return FXUnitCreditValue; } public RA_CreditLines setFxUnitCreditValue(BigDecimal value) { this.FXUnitCreditValue = value; return this; } public BigDecimal getFxTotalCreditValue() { return FXTotalCreditValue; } public RA_CreditLines setFxTotalCreditValue(BigDecimal value) { this.FXTotalCreditValue = value; return this; } public BigDecimal getFxRate() { return FXRate; } public RA_CreditLines setFxRate(BigDecimal value) { this.FXRate = value; return this; } public BigDecimal getUnitCreditValue() { return UnitCreditValue; } public RA_CreditLines setUnitCreditValue(BigDecimal value) { this.UnitCreditValue = value; return this; } } public static class RA_CreditLinesCustomFields { @Required() public String RecID = null; @Required() public String SettingName = null; public String SettingDescription = null; public Integer CellType = null; public String FieldParameter = null; @References(SY_Plugin.class) @Required() public UUID SY_Plugin_RecID = null; public Date LastSavedDateTime = null; public Integer DisplayOrder = null; public String getRecID() { return RecID; } public RA_CreditLinesCustomFields setRecID(String value) { this.RecID = value; return this; } public String getSettingName() { return SettingName; } public RA_CreditLinesCustomFields setSettingName(String value) { this.SettingName = value; return this; } public String getSettingDescription() { return SettingDescription; } public RA_CreditLinesCustomFields setSettingDescription(String value) { this.SettingDescription = value; return this; } public Integer getCellType() { return CellType; } public RA_CreditLinesCustomFields setCellType(Integer value) { this.CellType = value; return this; } public String getFieldParameter() { return FieldParameter; } public RA_CreditLinesCustomFields setFieldParameter(String value) { this.FieldParameter = value; return this; } public UUID getSyPluginRecID() { return SY_Plugin_RecID; } public RA_CreditLinesCustomFields setSyPluginRecID(UUID value) { this.SY_Plugin_RecID = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public RA_CreditLinesCustomFields setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Integer getDisplayOrder() { return DisplayOrder; } public RA_CreditLinesCustomFields setDisplayOrder(Integer value) { this.DisplayOrder = value; return this; } } public static class RA_CreditLinesCustomValues { @Required() public String RecID = null; @References(RA_CreditLines.class) @Required() public String RA_CreditLines_RecID = null; @References(RA_CreditLinesCustomFields.class) @Required() public String RA_CreditLinesCustomFields_RecID = null; public String Contents = null; public Date LastSavedDateTime = null; public String getRecID() { return RecID; } public RA_CreditLinesCustomValues setRecID(String value) { this.RecID = value; return this; } public String getRaCreditLinesRecID() { return RA_CreditLines_RecID; } public RA_CreditLinesCustomValues setRaCreditLinesRecID(String value) { this.RA_CreditLines_RecID = value; return this; } public String getRaCreditLinesCustomFieldsRecID() { return RA_CreditLinesCustomFields_RecID; } public RA_CreditLinesCustomValues setRaCreditLinesCustomFieldsRecID(String value) { this.RA_CreditLinesCustomFields_RecID = value; return this; } public String getContents() { return Contents; } public RA_CreditLinesCustomValues setContents(String value) { this.Contents = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public RA_CreditLinesCustomValues setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } } public static class RA_CreditMain { @Required() public String RecID = null; @Required() public String CreditNo = null; public String Reference = null; @References(IN_Logical.class) @Required() public String WarehouseID = null; @Required() public Short Status = null; @Required() public Date LastSavedDateTime = null; @References(HR_Staff.class) @Required() public String CreatedBy = null; @Required() public Date CreditDate = null; @References(CR_Main.class) @Required() public String CreditorID = null; public String CreditorRef = null; @Required() public ArrayList RowHash = null; @References(RA_ReturnCodes.class) @Required() public String ReturnCode = null; public String getRecID() { return RecID; } public RA_CreditMain setRecID(String value) { this.RecID = value; return this; } public String getCreditNo() { return CreditNo; } public RA_CreditMain setCreditNo(String value) { this.CreditNo = value; return this; } public String getReference() { return Reference; } public RA_CreditMain setReference(String value) { this.Reference = value; return this; } public String getWarehouseID() { return WarehouseID; } public RA_CreditMain setWarehouseID(String value) { this.WarehouseID = value; return this; } public Short getStatus() { return Status; } public RA_CreditMain setStatus(Short value) { this.Status = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public RA_CreditMain setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public String getCreatedBy() { return CreatedBy; } public RA_CreditMain setCreatedBy(String value) { this.CreatedBy = value; return this; } public Date getCreditDate() { return CreditDate; } public RA_CreditMain setCreditDate(Date value) { this.CreditDate = value; return this; } public String getCreditorID() { return CreditorID; } public RA_CreditMain setCreditorID(String value) { this.CreditorID = value; return this; } public String getCreditorRef() { return CreditorRef; } public RA_CreditMain setCreditorRef(String value) { this.CreditorRef = value; return this; } public ArrayList getRowHash() { return RowHash; } public RA_CreditMain setRowHash(ArrayList value) { this.RowHash = value; return this; } public String getReturnCode() { return ReturnCode; } public RA_CreditMain setReturnCode(String value) { this.ReturnCode = value; return this; } } public static class RA_CreditMainCustomFields { @Required() public String RecID = null; @Required() public String SettingName = null; public String SettingDescription = null; public Integer CellType = null; public String FieldParameter = null; @References(SY_Plugin.class) @Required() public UUID SY_Plugin_RecID = null; public Date LastSavedDateTime = null; public Integer DisplayOrder = null; public String getRecID() { return RecID; } public RA_CreditMainCustomFields setRecID(String value) { this.RecID = value; return this; } public String getSettingName() { return SettingName; } public RA_CreditMainCustomFields setSettingName(String value) { this.SettingName = value; return this; } public String getSettingDescription() { return SettingDescription; } public RA_CreditMainCustomFields setSettingDescription(String value) { this.SettingDescription = value; return this; } public Integer getCellType() { return CellType; } public RA_CreditMainCustomFields setCellType(Integer value) { this.CellType = value; return this; } public String getFieldParameter() { return FieldParameter; } public RA_CreditMainCustomFields setFieldParameter(String value) { this.FieldParameter = value; return this; } public UUID getSyPluginRecID() { return SY_Plugin_RecID; } public RA_CreditMainCustomFields setSyPluginRecID(UUID value) { this.SY_Plugin_RecID = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public RA_CreditMainCustomFields setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Integer getDisplayOrder() { return DisplayOrder; } public RA_CreditMainCustomFields setDisplayOrder(Integer value) { this.DisplayOrder = value; return this; } } public static class RA_CreditMainCustomValues { @Required() public String RecID = null; @References(RA_CreditMain.class) @Required() public String RA_CreditMain_RecID = null; @References(RA_CreditMainCustomFields.class) @Required() public String RA_CreditMainCustomFields_RecID = null; public String Contents = null; public Date LastSavedDateTime = null; public String getRecID() { return RecID; } public RA_CreditMainCustomValues setRecID(String value) { this.RecID = value; return this; } public String getRaCreditMainRecID() { return RA_CreditMain_RecID; } public RA_CreditMainCustomValues setRaCreditMainRecID(String value) { this.RA_CreditMain_RecID = value; return this; } public String getRaCreditMainCustomFieldsRecID() { return RA_CreditMainCustomFields_RecID; } public RA_CreditMainCustomValues setRaCreditMainCustomFieldsRecID(String value) { this.RA_CreditMainCustomFields_RecID = value; return this; } public String getContents() { return Contents; } public RA_CreditMainCustomValues setContents(String value) { this.Contents = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public RA_CreditMainCustomValues setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } } public static class RA_CreditNotes { @Required() public String RecID = null; @References(RA_CreditMain.class) @Required() public String RA_CreditMain_RecID = null; @References(SY_NoteTypes.class) @Required() public String NoteTypeID = null; @Required() public Date LastSavedDateTime = null; @References(HR_Staff.class) @Required() public String LastSavedByStaffID = null; public String NoteText = null; @Required() public Integer ItemNo = null; public String getRecID() { return RecID; } public RA_CreditNotes setRecID(String value) { this.RecID = value; return this; } public String getRaCreditMainRecID() { return RA_CreditMain_RecID; } public RA_CreditNotes setRaCreditMainRecID(String value) { this.RA_CreditMain_RecID = value; return this; } public String getNoteTypeID() { return NoteTypeID; } public RA_CreditNotes setNoteTypeID(String value) { this.NoteTypeID = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public RA_CreditNotes setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public String getLastSavedByStaffID() { return LastSavedByStaffID; } public RA_CreditNotes setLastSavedByStaffID(String value) { this.LastSavedByStaffID = value; return this; } public String getNoteText() { return NoteText; } public RA_CreditNotes setNoteText(String value) { this.NoteText = value; return this; } public Integer getItemNo() { return ItemNo; } public RA_CreditNotes setItemNo(Integer value) { this.ItemNo = value; return this; } } public static class RA_Documents { @Required() public String RecID = null; public String FileID = null; public String ParentID = null; public String Remark = null; public String UserName = null; public Date LastSavedDateTime = null; public String DocTypeID = null; @Required() public Short ParentType = null; public String getRecID() { return RecID; } public RA_Documents setRecID(String value) { this.RecID = value; return this; } public String getFileID() { return FileID; } public RA_Documents setFileID(String value) { this.FileID = value; return this; } public String getParentID() { return ParentID; } public RA_Documents setParentID(String value) { this.ParentID = value; return this; } public String getRemark() { return Remark; } public RA_Documents setRemark(String value) { this.Remark = value; return this; } public String getUserName() { return UserName; } public RA_Documents setUserName(String value) { this.UserName = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public RA_Documents setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public String getDocTypeID() { return DocTypeID; } public RA_Documents setDocTypeID(String value) { this.DocTypeID = value; return this; } public Short getParentType() { return ParentType; } public RA_Documents setParentType(Short value) { this.ParentType = value; return this; } } public static class RA_RequestDocuments { @Required() public String RecID = null; @References(RA_RequestMain.class) @Required() public String RA_RequestMain_RecID = null; @References(SY_DocumentTypes.class) public String DocumentTypeID = null; public Date LastSavedDateTime = null; @References(HR_Staff.class) @Required() public String LastSavedByStaffID = null; public ArrayList FileBinary = null; public String Description = null; public String PhysicalFileName = null; @Required() public Integer ItemNo = null; public String getRecID() { return RecID; } public RA_RequestDocuments setRecID(String value) { this.RecID = value; return this; } public String getRaRequestMainRecID() { return RA_RequestMain_RecID; } public RA_RequestDocuments setRaRequestMainRecID(String value) { this.RA_RequestMain_RecID = value; return this; } public String getDocumentTypeID() { return DocumentTypeID; } public RA_RequestDocuments setDocumentTypeID(String value) { this.DocumentTypeID = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public RA_RequestDocuments setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public String getLastSavedByStaffID() { return LastSavedByStaffID; } public RA_RequestDocuments setLastSavedByStaffID(String value) { this.LastSavedByStaffID = value; return this; } public ArrayList getFileBinary() { return FileBinary; } public RA_RequestDocuments setFileBinary(ArrayList value) { this.FileBinary = value; return this; } public String getDescription() { return Description; } public RA_RequestDocuments setDescription(String value) { this.Description = value; return this; } public String getPhysicalFileName() { return PhysicalFileName; } public RA_RequestDocuments setPhysicalFileName(String value) { this.PhysicalFileName = value; return this; } public Integer getItemNo() { return ItemNo; } public RA_RequestDocuments setItemNo(Integer value) { this.ItemNo = value; return this; } } public static class RA_RequestIn { @References(RA_ShipMain.class) public String RA_ShipMain_RecID = null; @References(RA_RequestMain.class) public String RA_RequestMain_RecID = null; public String getRaShipMainRecID() { return RA_ShipMain_RecID; } public RA_RequestIn setRaShipMainRecID(String value) { this.RA_ShipMain_RecID = value; return this; } public String getRaRequestMainRecID() { return RA_RequestMain_RecID; } public RA_RequestIn setRaRequestMainRecID(String value) { this.RA_RequestMain_RecID = value; return this; } } public static class RA_RequestLineDetails { @Required() public String RecID = null; @References(RA_RequestLines.class) @Required() public String Parent_RecID = null; @References(IN_SOH.class) public String IN_SOH_LinkID = null; @Required() public BigDecimal Cost = null; @Required() public BigDecimal SpecialPrice = null; @Required() public BigDecimal Quantity = null; @Required() public String SerialNo = null; public Date ExpiryDate = null; @Required() public String BinLocation = null; public Date LastSavedDateTime = null; @Required() public ArrayList RowHash = null; @Required() public Integer ItemNo = null; public String getRecID() { return RecID; } public RA_RequestLineDetails setRecID(String value) { this.RecID = value; return this; } public String getParentRecID() { return Parent_RecID; } public RA_RequestLineDetails setParentRecID(String value) { this.Parent_RecID = value; return this; } public String getInSohLinkID() { return IN_SOH_LinkID; } public RA_RequestLineDetails setInSohLinkID(String value) { this.IN_SOH_LinkID = value; return this; } public BigDecimal getCost() { return Cost; } public RA_RequestLineDetails setCost(BigDecimal value) { this.Cost = value; return this; } public BigDecimal getSpecialPrice() { return SpecialPrice; } public RA_RequestLineDetails setSpecialPrice(BigDecimal value) { this.SpecialPrice = value; return this; } public BigDecimal getQuantity() { return Quantity; } public RA_RequestLineDetails setQuantity(BigDecimal value) { this.Quantity = value; return this; } public String getSerialNo() { return SerialNo; } public RA_RequestLineDetails setSerialNo(String value) { this.SerialNo = value; return this; } public Date getExpiryDate() { return ExpiryDate; } public RA_RequestLineDetails setExpiryDate(Date value) { this.ExpiryDate = value; return this; } public String getBinLocation() { return BinLocation; } public RA_RequestLineDetails setBinLocation(String value) { this.BinLocation = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public RA_RequestLineDetails setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public ArrayList getRowHash() { return RowHash; } public RA_RequestLineDetails setRowHash(ArrayList value) { this.RowHash = value; return this; } public Integer getItemNo() { return ItemNo; } public RA_RequestLineDetails setItemNo(Integer value) { this.ItemNo = value; return this; } } public static class RA_RequestLines { @Required() public String RecID = null; @Required() public Short ItemNo = null; @References(RA_RequestMain.class) @Required() public String RA_RequestMain_RecID = null; @Required() public BigDecimal Quantity = null; @References(IN_Main.class) @Required() public String InventoryID = null; @References(RA_ReturnCodes.class) @Required() public String RA_ReturnCodes_RecID = null; @Required() public Date LastSavedDateTime = null; public String Remark = null; @Required() public BigDecimal UnitReturnValue = null; @Required() public BigDecimal TotalReturnValue = null; @References(TX_Main.class) @Required() public String TaxID = null; @Required() public BigDecimal TaxAmount = null; @Required() public ArrayList RowHash = null; @References(PO_Lines.class) public String PO_Lines_OrderLineID = null; @Required() public BigDecimal FXUnitReturnValue = null; @Required() public BigDecimal FXTotalReturnValue = null; @Required() public BigDecimal FXRate = null; public String getRecID() { return RecID; } public RA_RequestLines setRecID(String value) { this.RecID = value; return this; } public Short getItemNo() { return ItemNo; } public RA_RequestLines setItemNo(Short value) { this.ItemNo = value; return this; } public String getRaRequestMainRecID() { return RA_RequestMain_RecID; } public RA_RequestLines setRaRequestMainRecID(String value) { this.RA_RequestMain_RecID = value; return this; } public BigDecimal getQuantity() { return Quantity; } public RA_RequestLines setQuantity(BigDecimal value) { this.Quantity = value; return this; } public String getInventoryID() { return InventoryID; } public RA_RequestLines setInventoryID(String value) { this.InventoryID = value; return this; } public String getRaReturnCodesRecID() { return RA_ReturnCodes_RecID; } public RA_RequestLines setRaReturnCodesRecID(String value) { this.RA_ReturnCodes_RecID = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public RA_RequestLines setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public String getRemark() { return Remark; } public RA_RequestLines setRemark(String value) { this.Remark = value; return this; } public BigDecimal getUnitReturnValue() { return UnitReturnValue; } public RA_RequestLines setUnitReturnValue(BigDecimal value) { this.UnitReturnValue = value; return this; } public BigDecimal getTotalReturnValue() { return TotalReturnValue; } public RA_RequestLines setTotalReturnValue(BigDecimal value) { this.TotalReturnValue = value; return this; } public String getTaxID() { return TaxID; } public RA_RequestLines setTaxID(String value) { this.TaxID = value; return this; } public BigDecimal getTaxAmount() { return TaxAmount; } public RA_RequestLines setTaxAmount(BigDecimal value) { this.TaxAmount = value; return this; } public ArrayList getRowHash() { return RowHash; } public RA_RequestLines setRowHash(ArrayList value) { this.RowHash = value; return this; } public String getPoLinesOrderLineID() { return PO_Lines_OrderLineID; } public RA_RequestLines setPoLinesOrderLineID(String value) { this.PO_Lines_OrderLineID = value; return this; } public BigDecimal getFxUnitReturnValue() { return FXUnitReturnValue; } public RA_RequestLines setFxUnitReturnValue(BigDecimal value) { this.FXUnitReturnValue = value; return this; } public BigDecimal getFxTotalReturnValue() { return FXTotalReturnValue; } public RA_RequestLines setFxTotalReturnValue(BigDecimal value) { this.FXTotalReturnValue = value; return this; } public BigDecimal getFxRate() { return FXRate; } public RA_RequestLines setFxRate(BigDecimal value) { this.FXRate = value; return this; } } public static class RA_RequestLinesCustomFields { @Required() public String RecID = null; @Required() public String SettingName = null; public String SettingDescription = null; public Integer CellType = null; public String FieldParameter = null; @References(SY_Plugin.class) @Required() public UUID SY_Plugin_RecID = null; public Date LastSavedDateTime = null; public Integer DisplayOrder = null; public String getRecID() { return RecID; } public RA_RequestLinesCustomFields setRecID(String value) { this.RecID = value; return this; } public String getSettingName() { return SettingName; } public RA_RequestLinesCustomFields setSettingName(String value) { this.SettingName = value; return this; } public String getSettingDescription() { return SettingDescription; } public RA_RequestLinesCustomFields setSettingDescription(String value) { this.SettingDescription = value; return this; } public Integer getCellType() { return CellType; } public RA_RequestLinesCustomFields setCellType(Integer value) { this.CellType = value; return this; } public String getFieldParameter() { return FieldParameter; } public RA_RequestLinesCustomFields setFieldParameter(String value) { this.FieldParameter = value; return this; } public UUID getSyPluginRecID() { return SY_Plugin_RecID; } public RA_RequestLinesCustomFields setSyPluginRecID(UUID value) { this.SY_Plugin_RecID = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public RA_RequestLinesCustomFields setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Integer getDisplayOrder() { return DisplayOrder; } public RA_RequestLinesCustomFields setDisplayOrder(Integer value) { this.DisplayOrder = value; return this; } } public static class RA_RequestLinesCustomValues { @Required() public String RecID = null; @References(RA_RequestLines.class) @Required() public String RA_RequestLines_RecID = null; @References(RA_RequestLinesCustomFields.class) @Required() public String RA_RequestLinesCustomFields_RecID = null; public String Contents = null; public Date LastSavedDateTime = null; public String getRecID() { return RecID; } public RA_RequestLinesCustomValues setRecID(String value) { this.RecID = value; return this; } public String getRaRequestLinesRecID() { return RA_RequestLines_RecID; } public RA_RequestLinesCustomValues setRaRequestLinesRecID(String value) { this.RA_RequestLines_RecID = value; return this; } public String getRaRequestLinesCustomFieldsRecID() { return RA_RequestLinesCustomFields_RecID; } public RA_RequestLinesCustomValues setRaRequestLinesCustomFieldsRecID(String value) { this.RA_RequestLinesCustomFields_RecID = value; return this; } public String getContents() { return Contents; } public RA_RequestLinesCustomValues setContents(String value) { this.Contents = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public RA_RequestLinesCustomValues setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } } public static class RA_RequestMain { @Required() public String RecID = null; public String RequestNo = null; public String Reference = null; @References(IN_Logical.class) @Required() public String WarehouseID = null; public Short Status = null; @Required() public Date LastSavedDateTime = null; @References(HR_Staff.class) @Required() public String CreatedBy = null; @References(RA_ReturnCodes.class) @Required() public String ReturnCode = null; public String DeliveryAddressee = null; public String DeliveryStreetAddress1 = null; public String DeliveryStreetAddress2 = null; public String DeliveryLocality = null; public String DeliveryRegion = null; public String DeliveryPostCode = null; public String DeliveryCountry = null; public String DeliveryTelephone = null; public String DeliveryFacsimile = null; public String ContactName = null; public String Note = null; public String CourierDetails = null; @Required() public Date RequestDate = null; @References(CR_Main.class) @Required() public String CreditorID = null; @References(IN_Logical.class) @Required() public String ReturnsWarehouseID = null; @Required() public ArrayList RowHash = null; public String getRecID() { return RecID; } public RA_RequestMain setRecID(String value) { this.RecID = value; return this; } public String getRequestNo() { return RequestNo; } public RA_RequestMain setRequestNo(String value) { this.RequestNo = value; return this; } public String getReference() { return Reference; } public RA_RequestMain setReference(String value) { this.Reference = value; return this; } public String getWarehouseID() { return WarehouseID; } public RA_RequestMain setWarehouseID(String value) { this.WarehouseID = value; return this; } public Short getStatus() { return Status; } public RA_RequestMain setStatus(Short value) { this.Status = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public RA_RequestMain setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public String getCreatedBy() { return CreatedBy; } public RA_RequestMain setCreatedBy(String value) { this.CreatedBy = value; return this; } public String getReturnCode() { return ReturnCode; } public RA_RequestMain setReturnCode(String value) { this.ReturnCode = value; return this; } public String getDeliveryAddressee() { return DeliveryAddressee; } public RA_RequestMain setDeliveryAddressee(String value) { this.DeliveryAddressee = value; return this; } public String getDeliveryStreetAddress1() { return DeliveryStreetAddress1; } public RA_RequestMain setDeliveryStreetAddress1(String value) { this.DeliveryStreetAddress1 = value; return this; } public String getDeliveryStreetAddress2() { return DeliveryStreetAddress2; } public RA_RequestMain setDeliveryStreetAddress2(String value) { this.DeliveryStreetAddress2 = value; return this; } public String getDeliveryLocality() { return DeliveryLocality; } public RA_RequestMain setDeliveryLocality(String value) { this.DeliveryLocality = value; return this; } public String getDeliveryRegion() { return DeliveryRegion; } public RA_RequestMain setDeliveryRegion(String value) { this.DeliveryRegion = value; return this; } public String getDeliveryPostCode() { return DeliveryPostCode; } public RA_RequestMain setDeliveryPostCode(String value) { this.DeliveryPostCode = value; return this; } public String getDeliveryCountry() { return DeliveryCountry; } public RA_RequestMain setDeliveryCountry(String value) { this.DeliveryCountry = value; return this; } public String getDeliveryTelephone() { return DeliveryTelephone; } public RA_RequestMain setDeliveryTelephone(String value) { this.DeliveryTelephone = value; return this; } public String getDeliveryFacsimile() { return DeliveryFacsimile; } public RA_RequestMain setDeliveryFacsimile(String value) { this.DeliveryFacsimile = value; return this; } public String getContactName() { return ContactName; } public RA_RequestMain setContactName(String value) { this.ContactName = value; return this; } public String getNote() { return Note; } public RA_RequestMain setNote(String value) { this.Note = value; return this; } public String getCourierDetails() { return CourierDetails; } public RA_RequestMain setCourierDetails(String value) { this.CourierDetails = value; return this; } public Date getRequestDate() { return RequestDate; } public RA_RequestMain setRequestDate(Date value) { this.RequestDate = value; return this; } public String getCreditorID() { return CreditorID; } public RA_RequestMain setCreditorID(String value) { this.CreditorID = value; return this; } public String getReturnsWarehouseID() { return ReturnsWarehouseID; } public RA_RequestMain setReturnsWarehouseID(String value) { this.ReturnsWarehouseID = value; return this; } public ArrayList getRowHash() { return RowHash; } public RA_RequestMain setRowHash(ArrayList value) { this.RowHash = value; return this; } } public static class RA_RequestMainCustomFields { @Required() public String RecID = null; @Required() public String SettingName = null; public String SettingDescription = null; public Integer CellType = null; public String FieldParameter = null; @References(SY_Plugin.class) @Required() public UUID SY_Plugin_RecID = null; public Date LastSavedDateTime = null; public Integer DisplayOrder = null; public String getRecID() { return RecID; } public RA_RequestMainCustomFields setRecID(String value) { this.RecID = value; return this; } public String getSettingName() { return SettingName; } public RA_RequestMainCustomFields setSettingName(String value) { this.SettingName = value; return this; } public String getSettingDescription() { return SettingDescription; } public RA_RequestMainCustomFields setSettingDescription(String value) { this.SettingDescription = value; return this; } public Integer getCellType() { return CellType; } public RA_RequestMainCustomFields setCellType(Integer value) { this.CellType = value; return this; } public String getFieldParameter() { return FieldParameter; } public RA_RequestMainCustomFields setFieldParameter(String value) { this.FieldParameter = value; return this; } public UUID getSyPluginRecID() { return SY_Plugin_RecID; } public RA_RequestMainCustomFields setSyPluginRecID(UUID value) { this.SY_Plugin_RecID = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public RA_RequestMainCustomFields setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Integer getDisplayOrder() { return DisplayOrder; } public RA_RequestMainCustomFields setDisplayOrder(Integer value) { this.DisplayOrder = value; return this; } } public static class RA_RequestMainCustomValues { @Required() public String RecID = null; @References(RA_RequestMain.class) @Required() public String RA_RequestMain_RecID = null; @References(RA_RequestMainCustomFields.class) @Required() public String RA_RequestMainCustomFields_RecID = null; public String Contents = null; public Date LastSavedDateTime = null; public String getRecID() { return RecID; } public RA_RequestMainCustomValues setRecID(String value) { this.RecID = value; return this; } public String getRaRequestMainRecID() { return RA_RequestMain_RecID; } public RA_RequestMainCustomValues setRaRequestMainRecID(String value) { this.RA_RequestMain_RecID = value; return this; } public String getRaRequestMainCustomFieldsRecID() { return RA_RequestMainCustomFields_RecID; } public RA_RequestMainCustomValues setRaRequestMainCustomFieldsRecID(String value) { this.RA_RequestMainCustomFields_RecID = value; return this; } public String getContents() { return Contents; } public RA_RequestMainCustomValues setContents(String value) { this.Contents = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public RA_RequestMainCustomValues setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } } public static class RA_RequestNotes { @Required() public String RecID = null; @References(RA_RequestMain.class) @Required() public String RA_RequestMain_RecID = null; @References(SY_NoteTypes.class) @Required() public String NoteTypeID = null; @Required() public Date LastSavedDateTime = null; @References(HR_Staff.class) @Required() public String LastSavedByStaffID = null; public String NoteText = null; @Required() public Integer ItemNo = null; public String getRecID() { return RecID; } public RA_RequestNotes setRecID(String value) { this.RecID = value; return this; } public String getRaRequestMainRecID() { return RA_RequestMain_RecID; } public RA_RequestNotes setRaRequestMainRecID(String value) { this.RA_RequestMain_RecID = value; return this; } public String getNoteTypeID() { return NoteTypeID; } public RA_RequestNotes setNoteTypeID(String value) { this.NoteTypeID = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public RA_RequestNotes setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public String getLastSavedByStaffID() { return LastSavedByStaffID; } public RA_RequestNotes setLastSavedByStaffID(String value) { this.LastSavedByStaffID = value; return this; } public String getNoteText() { return NoteText; } public RA_RequestNotes setNoteText(String value) { this.NoteText = value; return this; } public Integer getItemNo() { return ItemNo; } public RA_RequestNotes setItemNo(Integer value) { this.ItemNo = value; return this; } } public static class RA_ReturnCodes { @Required() public String RecID = null; public String ReturnCode = null; public String Description = null; public Boolean IsDefault = null; public Short ReturnType = null; public Date LastSavedDateTime = null; @Required() public Integer ItemNo = null; @Required() public ArrayList RowHash = null; @Required() public Boolean IsEnabled = null; public String getRecID() { return RecID; } public RA_ReturnCodes setRecID(String value) { this.RecID = value; return this; } public String getReturnCode() { return ReturnCode; } public RA_ReturnCodes setReturnCode(String value) { this.ReturnCode = value; return this; } public String getDescription() { return Description; } public RA_ReturnCodes setDescription(String value) { this.Description = value; return this; } public Boolean getIsDefault() { return IsDefault; } public RA_ReturnCodes setIsDefault(Boolean value) { this.IsDefault = value; return this; } public Short getReturnType() { return ReturnType; } public RA_ReturnCodes setReturnType(Short value) { this.ReturnType = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public RA_ReturnCodes setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Integer getItemNo() { return ItemNo; } public RA_ReturnCodes setItemNo(Integer value) { this.ItemNo = value; return this; } public ArrayList getRowHash() { return RowHash; } public RA_ReturnCodes setRowHash(ArrayList value) { this.RowHash = value; return this; } public Boolean getIsEnabled() { return IsEnabled; } public RA_ReturnCodes setIsEnabled(Boolean value) { this.IsEnabled = value; return this; } } public static class RA_SelectedShipLines { @Required() public String RecID = null; public String CreditID = null; public String CreditLineID = null; public String ShipID = null; public String ShipLineID = null; public String ShipLineDetailID = null; @Required() public String InvID = null; public BigDecimal Quantity = null; public String SOHID = null; public String getRecID() { return RecID; } public RA_SelectedShipLines setRecID(String value) { this.RecID = value; return this; } public String getCreditID() { return CreditID; } public RA_SelectedShipLines setCreditID(String value) { this.CreditID = value; return this; } public String getCreditLineID() { return CreditLineID; } public RA_SelectedShipLines setCreditLineID(String value) { this.CreditLineID = value; return this; } public String getShipID() { return ShipID; } public RA_SelectedShipLines setShipID(String value) { this.ShipID = value; return this; } public String getShipLineID() { return ShipLineID; } public RA_SelectedShipLines setShipLineID(String value) { this.ShipLineID = value; return this; } public String getShipLineDetailID() { return ShipLineDetailID; } public RA_SelectedShipLines setShipLineDetailID(String value) { this.ShipLineDetailID = value; return this; } public String getInvID() { return InvID; } public RA_SelectedShipLines setInvID(String value) { this.InvID = value; return this; } public BigDecimal getQuantity() { return Quantity; } public RA_SelectedShipLines setQuantity(BigDecimal value) { this.Quantity = value; return this; } public String getSohid() { return SOHID; } public RA_SelectedShipLines setSohid(String value) { this.SOHID = value; return this; } } public static class RA_ShipDocuments { @Required() public String RecID = null; @References(RA_ShipMain.class) @Required() public String RA_ShipMain_RecID = null; @References(SY_DocumentTypes.class) public String DocumentTypeID = null; public Date LastSavedDateTime = null; @Required() public String LastSavedByStaffID = null; public ArrayList FileBinary = null; public String Description = null; public String PhysicalFileName = null; @Required() public Integer ItemNo = null; public String getRecID() { return RecID; } public RA_ShipDocuments setRecID(String value) { this.RecID = value; return this; } public String getRaShipMainRecID() { return RA_ShipMain_RecID; } public RA_ShipDocuments setRaShipMainRecID(String value) { this.RA_ShipMain_RecID = value; return this; } public String getDocumentTypeID() { return DocumentTypeID; } public RA_ShipDocuments setDocumentTypeID(String value) { this.DocumentTypeID = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public RA_ShipDocuments setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public String getLastSavedByStaffID() { return LastSavedByStaffID; } public RA_ShipDocuments setLastSavedByStaffID(String value) { this.LastSavedByStaffID = value; return this; } public ArrayList getFileBinary() { return FileBinary; } public RA_ShipDocuments setFileBinary(ArrayList value) { this.FileBinary = value; return this; } public String getDescription() { return Description; } public RA_ShipDocuments setDescription(String value) { this.Description = value; return this; } public String getPhysicalFileName() { return PhysicalFileName; } public RA_ShipDocuments setPhysicalFileName(String value) { this.PhysicalFileName = value; return this; } public Integer getItemNo() { return ItemNo; } public RA_ShipDocuments setItemNo(Integer value) { this.ItemNo = value; return this; } } public static class RA_ShipIn { @References(RA_CreditMain.class) public String RA_CreditMain_RecID = null; @References(RA_ShipMain.class) public String RA_ShipMain_RecID = null; public String getRaCreditMainRecID() { return RA_CreditMain_RecID; } public RA_ShipIn setRaCreditMainRecID(String value) { this.RA_CreditMain_RecID = value; return this; } public String getRaShipMainRecID() { return RA_ShipMain_RecID; } public RA_ShipIn setRaShipMainRecID(String value) { this.RA_ShipMain_RecID = value; return this; } } public static class RA_ShipLineDetails { @Required() public String RecID = null; @References(RA_ShipLines.class) @Required() public String Parent_RecID = null; @References(IN_SOH.class) public String IN_SOH_LinkID = null; @Required() public BigDecimal Cost = null; @Required() public BigDecimal SpecialPrice = null; @Required() public BigDecimal Quantity = null; @Required() public String SerialNo = null; public Date ExpiryDate = null; @Required() public String BinLocation = null; public Date LastSavedDateTime = null; @Required() public ArrayList RowHash = null; @Required() public Integer ItemNo = null; public String getRecID() { return RecID; } public RA_ShipLineDetails setRecID(String value) { this.RecID = value; return this; } public String getParentRecID() { return Parent_RecID; } public RA_ShipLineDetails setParentRecID(String value) { this.Parent_RecID = value; return this; } public String getInSohLinkID() { return IN_SOH_LinkID; } public RA_ShipLineDetails setInSohLinkID(String value) { this.IN_SOH_LinkID = value; return this; } public BigDecimal getCost() { return Cost; } public RA_ShipLineDetails setCost(BigDecimal value) { this.Cost = value; return this; } public BigDecimal getSpecialPrice() { return SpecialPrice; } public RA_ShipLineDetails setSpecialPrice(BigDecimal value) { this.SpecialPrice = value; return this; } public BigDecimal getQuantity() { return Quantity; } public RA_ShipLineDetails setQuantity(BigDecimal value) { this.Quantity = value; return this; } public String getSerialNo() { return SerialNo; } public RA_ShipLineDetails setSerialNo(String value) { this.SerialNo = value; return this; } public Date getExpiryDate() { return ExpiryDate; } public RA_ShipLineDetails setExpiryDate(Date value) { this.ExpiryDate = value; return this; } public String getBinLocation() { return BinLocation; } public RA_ShipLineDetails setBinLocation(String value) { this.BinLocation = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public RA_ShipLineDetails setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public ArrayList getRowHash() { return RowHash; } public RA_ShipLineDetails setRowHash(ArrayList value) { this.RowHash = value; return this; } public Integer getItemNo() { return ItemNo; } public RA_ShipLineDetails setItemNo(Integer value) { this.ItemNo = value; return this; } } public static class RA_ShipLines { @Required() public String RecID = null; @Required() public Short ItemNo = null; @References(RA_ShipMain.class) @Required() public String RA_ShipMain_RecID = null; @Required() public BigDecimal Quantity = null; @References(IN_Main.class) @Required() public String InventoryID = null; @References(RA_ReturnCodes.class) @Required() public String RA_ReturnCodes_RecID = null; @Required() public Date LastSavedDateTime = null; public String Remark = null; @Required() public BigDecimal UnitReturnValue = null; @Required() public BigDecimal TotalReturnValue = null; @References(RA_RequestLines.class) public String RA_RequestLines_RecID = null; @References(TX_Main.class) @Required() public String TaxID = null; @Required() public BigDecimal TaxAmount = null; @Required() public ArrayList RowHash = null; @Required() public BigDecimal FXUnitReturnValue = null; @Required() public BigDecimal FXTotalReturnValue = null; @Required() public BigDecimal FXRate = null; @References(PO_Lines.class) public String PO_Lines_OrderLineID = null; public String getRecID() { return RecID; } public RA_ShipLines setRecID(String value) { this.RecID = value; return this; } public Short getItemNo() { return ItemNo; } public RA_ShipLines setItemNo(Short value) { this.ItemNo = value; return this; } public String getRaShipMainRecID() { return RA_ShipMain_RecID; } public RA_ShipLines setRaShipMainRecID(String value) { this.RA_ShipMain_RecID = value; return this; } public BigDecimal getQuantity() { return Quantity; } public RA_ShipLines setQuantity(BigDecimal value) { this.Quantity = value; return this; } public String getInventoryID() { return InventoryID; } public RA_ShipLines setInventoryID(String value) { this.InventoryID = value; return this; } public String getRaReturnCodesRecID() { return RA_ReturnCodes_RecID; } public RA_ShipLines setRaReturnCodesRecID(String value) { this.RA_ReturnCodes_RecID = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public RA_ShipLines setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public String getRemark() { return Remark; } public RA_ShipLines setRemark(String value) { this.Remark = value; return this; } public BigDecimal getUnitReturnValue() { return UnitReturnValue; } public RA_ShipLines setUnitReturnValue(BigDecimal value) { this.UnitReturnValue = value; return this; } public BigDecimal getTotalReturnValue() { return TotalReturnValue; } public RA_ShipLines setTotalReturnValue(BigDecimal value) { this.TotalReturnValue = value; return this; } public String getRaRequestLinesRecID() { return RA_RequestLines_RecID; } public RA_ShipLines setRaRequestLinesRecID(String value) { this.RA_RequestLines_RecID = value; return this; } public String getTaxID() { return TaxID; } public RA_ShipLines setTaxID(String value) { this.TaxID = value; return this; } public BigDecimal getTaxAmount() { return TaxAmount; } public RA_ShipLines setTaxAmount(BigDecimal value) { this.TaxAmount = value; return this; } public ArrayList getRowHash() { return RowHash; } public RA_ShipLines setRowHash(ArrayList value) { this.RowHash = value; return this; } public BigDecimal getFxUnitReturnValue() { return FXUnitReturnValue; } public RA_ShipLines setFxUnitReturnValue(BigDecimal value) { this.FXUnitReturnValue = value; return this; } public BigDecimal getFxTotalReturnValue() { return FXTotalReturnValue; } public RA_ShipLines setFxTotalReturnValue(BigDecimal value) { this.FXTotalReturnValue = value; return this; } public BigDecimal getFxRate() { return FXRate; } public RA_ShipLines setFxRate(BigDecimal value) { this.FXRate = value; return this; } public String getPoLinesOrderLineID() { return PO_Lines_OrderLineID; } public RA_ShipLines setPoLinesOrderLineID(String value) { this.PO_Lines_OrderLineID = value; return this; } } public static class RA_ShipLinesCustomFields { @Required() public String RecID = null; @Required() public String SettingName = null; public String SettingDescription = null; public Integer CellType = null; public String FieldParameter = null; @References(SY_Plugin.class) @Required() public UUID SY_Plugin_RecID = null; public Date LastSavedDateTime = null; public Integer DisplayOrder = null; public String getRecID() { return RecID; } public RA_ShipLinesCustomFields setRecID(String value) { this.RecID = value; return this; } public String getSettingName() { return SettingName; } public RA_ShipLinesCustomFields setSettingName(String value) { this.SettingName = value; return this; } public String getSettingDescription() { return SettingDescription; } public RA_ShipLinesCustomFields setSettingDescription(String value) { this.SettingDescription = value; return this; } public Integer getCellType() { return CellType; } public RA_ShipLinesCustomFields setCellType(Integer value) { this.CellType = value; return this; } public String getFieldParameter() { return FieldParameter; } public RA_ShipLinesCustomFields setFieldParameter(String value) { this.FieldParameter = value; return this; } public UUID getSyPluginRecID() { return SY_Plugin_RecID; } public RA_ShipLinesCustomFields setSyPluginRecID(UUID value) { this.SY_Plugin_RecID = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public RA_ShipLinesCustomFields setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Integer getDisplayOrder() { return DisplayOrder; } public RA_ShipLinesCustomFields setDisplayOrder(Integer value) { this.DisplayOrder = value; return this; } } public static class RA_ShipLinesCustomValues { @Required() public String RecID = null; @References(RA_ShipLines.class) @Required() public String RA_ShipLines_RecID = null; @References(RA_ShipLinesCustomFields.class) @Required() public String RA_ShipLinesCustomFields_RecID = null; public String Contents = null; public Date LastSavedDateTime = null; public String getRecID() { return RecID; } public RA_ShipLinesCustomValues setRecID(String value) { this.RecID = value; return this; } public String getRaShipLinesRecID() { return RA_ShipLines_RecID; } public RA_ShipLinesCustomValues setRaShipLinesRecID(String value) { this.RA_ShipLines_RecID = value; return this; } public String getRaShipLinesCustomFieldsRecID() { return RA_ShipLinesCustomFields_RecID; } public RA_ShipLinesCustomValues setRaShipLinesCustomFieldsRecID(String value) { this.RA_ShipLinesCustomFields_RecID = value; return this; } public String getContents() { return Contents; } public RA_ShipLinesCustomValues setContents(String value) { this.Contents = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public RA_ShipLinesCustomValues setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } } public static class RA_ShipMain { @Required() public String RecID = null; public String ShippingNo = null; public String RANumber = null; public String Reference = null; @References(IN_Logical.class) @Required() public String WarehouseID = null; @Required() public Short Status = null; @Required() public Date LastSavedDateTime = null; @References(HR_Staff.class) @Required() public String CreatedBy = null; @References(RA_ReturnCodes.class) @Required() public String ReturnCode = null; public String DeliveryStreetAddress1 = null; public String DeliveryStreetAddress2 = null; public String DeliveryLocality = null; public String DeliveryRegion = null; public String DeliveryPostCode = null; public String ContactName = null; public String Note = null; public String CourierDetails = null; @Required() public Date ShippingDate = null; @References(CR_Main.class) @Required() public String CreditorID = null; @References(IN_Logical.class) @Required() public String TransitWarehouseID = null; @Required() public ArrayList RowHash = null; public String DeliveryAddressee = null; public String DeliveryCountry = null; public String DeliveryTelephone = null; public String DeliveryFacsimile = null; public String getRecID() { return RecID; } public RA_ShipMain setRecID(String value) { this.RecID = value; return this; } public String getShippingNo() { return ShippingNo; } public RA_ShipMain setShippingNo(String value) { this.ShippingNo = value; return this; } public String getRaNumber() { return RANumber; } public RA_ShipMain setRaNumber(String value) { this.RANumber = value; return this; } public String getReference() { return Reference; } public RA_ShipMain setReference(String value) { this.Reference = value; return this; } public String getWarehouseID() { return WarehouseID; } public RA_ShipMain setWarehouseID(String value) { this.WarehouseID = value; return this; } public Short getStatus() { return Status; } public RA_ShipMain setStatus(Short value) { this.Status = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public RA_ShipMain setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public String getCreatedBy() { return CreatedBy; } public RA_ShipMain setCreatedBy(String value) { this.CreatedBy = value; return this; } public String getReturnCode() { return ReturnCode; } public RA_ShipMain setReturnCode(String value) { this.ReturnCode = value; return this; } public String getDeliveryStreetAddress1() { return DeliveryStreetAddress1; } public RA_ShipMain setDeliveryStreetAddress1(String value) { this.DeliveryStreetAddress1 = value; return this; } public String getDeliveryStreetAddress2() { return DeliveryStreetAddress2; } public RA_ShipMain setDeliveryStreetAddress2(String value) { this.DeliveryStreetAddress2 = value; return this; } public String getDeliveryLocality() { return DeliveryLocality; } public RA_ShipMain setDeliveryLocality(String value) { this.DeliveryLocality = value; return this; } public String getDeliveryRegion() { return DeliveryRegion; } public RA_ShipMain setDeliveryRegion(String value) { this.DeliveryRegion = value; return this; } public String getDeliveryPostCode() { return DeliveryPostCode; } public RA_ShipMain setDeliveryPostCode(String value) { this.DeliveryPostCode = value; return this; } public String getContactName() { return ContactName; } public RA_ShipMain setContactName(String value) { this.ContactName = value; return this; } public String getNote() { return Note; } public RA_ShipMain setNote(String value) { this.Note = value; return this; } public String getCourierDetails() { return CourierDetails; } public RA_ShipMain setCourierDetails(String value) { this.CourierDetails = value; return this; } public Date getShippingDate() { return ShippingDate; } public RA_ShipMain setShippingDate(Date value) { this.ShippingDate = value; return this; } public String getCreditorID() { return CreditorID; } public RA_ShipMain setCreditorID(String value) { this.CreditorID = value; return this; } public String getTransitWarehouseID() { return TransitWarehouseID; } public RA_ShipMain setTransitWarehouseID(String value) { this.TransitWarehouseID = value; return this; } public ArrayList getRowHash() { return RowHash; } public RA_ShipMain setRowHash(ArrayList value) { this.RowHash = value; return this; } public String getDeliveryAddressee() { return DeliveryAddressee; } public RA_ShipMain setDeliveryAddressee(String value) { this.DeliveryAddressee = value; return this; } public String getDeliveryCountry() { return DeliveryCountry; } public RA_ShipMain setDeliveryCountry(String value) { this.DeliveryCountry = value; return this; } public String getDeliveryTelephone() { return DeliveryTelephone; } public RA_ShipMain setDeliveryTelephone(String value) { this.DeliveryTelephone = value; return this; } public String getDeliveryFacsimile() { return DeliveryFacsimile; } public RA_ShipMain setDeliveryFacsimile(String value) { this.DeliveryFacsimile = value; return this; } } public static class RA_ShipMainCustomFields { @Required() public String RecID = null; @Required() public String SettingName = null; public String SettingDescription = null; public Integer CellType = null; public String FieldParameter = null; @References(SY_Plugin.class) @Required() public UUID SY_Plugin_RecID = null; public Date LastSavedDateTime = null; public Integer DisplayOrder = null; public String getRecID() { return RecID; } public RA_ShipMainCustomFields setRecID(String value) { this.RecID = value; return this; } public String getSettingName() { return SettingName; } public RA_ShipMainCustomFields setSettingName(String value) { this.SettingName = value; return this; } public String getSettingDescription() { return SettingDescription; } public RA_ShipMainCustomFields setSettingDescription(String value) { this.SettingDescription = value; return this; } public Integer getCellType() { return CellType; } public RA_ShipMainCustomFields setCellType(Integer value) { this.CellType = value; return this; } public String getFieldParameter() { return FieldParameter; } public RA_ShipMainCustomFields setFieldParameter(String value) { this.FieldParameter = value; return this; } public UUID getSyPluginRecID() { return SY_Plugin_RecID; } public RA_ShipMainCustomFields setSyPluginRecID(UUID value) { this.SY_Plugin_RecID = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public RA_ShipMainCustomFields setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Integer getDisplayOrder() { return DisplayOrder; } public RA_ShipMainCustomFields setDisplayOrder(Integer value) { this.DisplayOrder = value; return this; } } public static class RA_ShipMainCustomValues { @Required() public String RecID = null; @References(RA_ShipMain.class) @Required() public String RA_ShipMain_RecID = null; @References(RA_ShipMainCustomFields.class) @Required() public String RA_ShipMainCustomFields_RecID = null; public String Contents = null; public Date LastSavedDateTime = null; public String getRecID() { return RecID; } public RA_ShipMainCustomValues setRecID(String value) { this.RecID = value; return this; } public String getRaShipMainRecID() { return RA_ShipMain_RecID; } public RA_ShipMainCustomValues setRaShipMainRecID(String value) { this.RA_ShipMain_RecID = value; return this; } public String getRaShipMainCustomFieldsRecID() { return RA_ShipMainCustomFields_RecID; } public RA_ShipMainCustomValues setRaShipMainCustomFieldsRecID(String value) { this.RA_ShipMainCustomFields_RecID = value; return this; } public String getContents() { return Contents; } public RA_ShipMainCustomValues setContents(String value) { this.Contents = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public RA_ShipMainCustomValues setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } } public static class RA_ShipNotes { @Required() public String RecID = null; @References(RA_ShipMain.class) @Required() public String RA_ShipMain_RecID = null; @References(SY_NoteTypes.class) @Required() public String NoteTypeID = null; @Required() public Date LastSavedDateTime = null; @References(HR_Staff.class) @Required() public String LastSavedByStaffID = null; public String NoteText = null; @Required() public Integer ItemNo = null; public String getRecID() { return RecID; } public RA_ShipNotes setRecID(String value) { this.RecID = value; return this; } public String getRaShipMainRecID() { return RA_ShipMain_RecID; } public RA_ShipNotes setRaShipMainRecID(String value) { this.RA_ShipMain_RecID = value; return this; } public String getNoteTypeID() { return NoteTypeID; } public RA_ShipNotes setNoteTypeID(String value) { this.NoteTypeID = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public RA_ShipNotes setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public String getLastSavedByStaffID() { return LastSavedByStaffID; } public RA_ShipNotes setLastSavedByStaffID(String value) { this.LastSavedByStaffID = value; return this; } public String getNoteText() { return NoteText; } public RA_ShipNotes setNoteText(String value) { this.NoteText = value; return this; } public Integer getItemNo() { return ItemNo; } public RA_ShipNotes setItemNo(Integer value) { this.ItemNo = value; return this; } } public static class RE_CustomSettings { @Required() public String SettingID = null; @Required() public Date LastSavedDateTime = null; public String SettingDescription = null; public String SettingName = null; public BigDecimal DisplayOrder = null; public Short CellType = null; public String ScriptFormatCell = null; public String ScriptButtonClicked = null; public String ScriptReadData = null; @References(SY_Plugin.class) @Required() public UUID SY_Plugin_RecID = null; public String getSettingID() { return SettingID; } public RE_CustomSettings setSettingID(String value) { this.SettingID = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public RE_CustomSettings setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public String getSettingDescription() { return SettingDescription; } public RE_CustomSettings setSettingDescription(String value) { this.SettingDescription = value; return this; } public String getSettingName() { return SettingName; } public RE_CustomSettings setSettingName(String value) { this.SettingName = value; return this; } public BigDecimal getDisplayOrder() { return DisplayOrder; } public RE_CustomSettings setDisplayOrder(BigDecimal value) { this.DisplayOrder = value; return this; } public Short getCellType() { return CellType; } public RE_CustomSettings setCellType(Short value) { this.CellType = value; return this; } public String getScriptFormatCell() { return ScriptFormatCell; } public RE_CustomSettings setScriptFormatCell(String value) { this.ScriptFormatCell = value; return this; } public String getScriptButtonClicked() { return ScriptButtonClicked; } public RE_CustomSettings setScriptButtonClicked(String value) { this.ScriptButtonClicked = value; return this; } public String getScriptReadData() { return ScriptReadData; } public RE_CustomSettings setScriptReadData(String value) { this.ScriptReadData = value; return this; } public UUID getSyPluginRecID() { return SY_Plugin_RecID; } public RE_CustomSettings setSyPluginRecID(UUID value) { this.SY_Plugin_RecID = value; return this; } } public static class RE_CustomSettingValues { @Required() public String SettingValueID = null; @Required() public String SettingID = null; public String RE_Main_RecID = null; public String Contents = null; @Required() public Date LastSavedDateTime = null; public String getSettingValueID() { return SettingValueID; } public RE_CustomSettingValues setSettingValueID(String value) { this.SettingValueID = value; return this; } public String getSettingID() { return SettingID; } public RE_CustomSettingValues setSettingID(String value) { this.SettingID = value; return this; } public String getReMainRecID() { return RE_Main_RecID; } public RE_CustomSettingValues setReMainRecID(String value) { this.RE_Main_RecID = value; return this; } public String getContents() { return Contents; } public RE_CustomSettingValues setContents(String value) { this.Contents = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public RE_CustomSettingValues setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } } public static class RE_LineCustomFields { @Required() public String RecID = null; @Required() public String SettingName = null; public String SettingDescription = null; public Integer CellType = null; public String FieldParameter = null; @References(SY_Plugin.class) @Required() public UUID SY_Plugin_RecID = null; @Required() public Date LastSavedDateTime = null; public Integer DisplayOrder = null; public String getRecID() { return RecID; } public RE_LineCustomFields setRecID(String value) { this.RecID = value; return this; } public String getSettingName() { return SettingName; } public RE_LineCustomFields setSettingName(String value) { this.SettingName = value; return this; } public String getSettingDescription() { return SettingDescription; } public RE_LineCustomFields setSettingDescription(String value) { this.SettingDescription = value; return this; } public Integer getCellType() { return CellType; } public RE_LineCustomFields setCellType(Integer value) { this.CellType = value; return this; } public String getFieldParameter() { return FieldParameter; } public RE_LineCustomFields setFieldParameter(String value) { this.FieldParameter = value; return this; } public UUID getSyPluginRecID() { return SY_Plugin_RecID; } public RE_LineCustomFields setSyPluginRecID(UUID value) { this.SY_Plugin_RecID = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public RE_LineCustomFields setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Integer getDisplayOrder() { return DisplayOrder; } public RE_LineCustomFields setDisplayOrder(Integer value) { this.DisplayOrder = value; return this; } } public static class RE_LineCustomValues { @Required() public String RecID = null; @Required() public String RE_Lines_RecID = null; @References(RE_LineCustomFields.class) @Required() public String RE_LineCustomFields_RecID = null; public String Contents = null; @Required() public Date LastSavedDateTime = null; public String getRecID() { return RecID; } public RE_LineCustomValues setRecID(String value) { this.RecID = value; return this; } public String getReLinesRecID() { return RE_Lines_RecID; } public RE_LineCustomValues setReLinesRecID(String value) { this.RE_Lines_RecID = value; return this; } public String getReLineCustomFieldsRecID() { return RE_LineCustomFields_RecID; } public RE_LineCustomValues setReLineCustomFieldsRecID(String value) { this.RE_LineCustomFields_RecID = value; return this; } public String getContents() { return Contents; } public RE_LineCustomValues setContents(String value) { this.Contents = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public RE_LineCustomValues setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } } public static class RE_LineDetails { @Required() public String RecID = null; @References(RE_Lines.class) @Required() public String RE_Lines_RecID = null; public String LinkID = null; @Required() public BigDecimal Quantity = null; public String SerialNo = null; public String BinLocationDescription = null; @Required() public Date LastSavedDateTime = null; @Required() public ArrayList RowHash = null; public Date ExpiryDate = null; @Required() public Integer ItemNo = null; public String getRecID() { return RecID; } public RE_LineDetails setRecID(String value) { this.RecID = value; return this; } public String getReLinesRecID() { return RE_Lines_RecID; } public RE_LineDetails setReLinesRecID(String value) { this.RE_Lines_RecID = value; return this; } public String getLinkID() { return LinkID; } public RE_LineDetails setLinkID(String value) { this.LinkID = value; return this; } public BigDecimal getQuantity() { return Quantity; } public RE_LineDetails setQuantity(BigDecimal value) { this.Quantity = value; return this; } public String getSerialNo() { return SerialNo; } public RE_LineDetails setSerialNo(String value) { this.SerialNo = value; return this; } public String getBinLocationDescription() { return BinLocationDescription; } public RE_LineDetails setBinLocationDescription(String value) { this.BinLocationDescription = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public RE_LineDetails setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public ArrayList getRowHash() { return RowHash; } public RE_LineDetails setRowHash(ArrayList value) { this.RowHash = value; return this; } public Date getExpiryDate() { return ExpiryDate; } public RE_LineDetails setExpiryDate(Date value) { this.ExpiryDate = value; return this; } public Integer getItemNo() { return ItemNo; } public RE_LineDetails setItemNo(Integer value) { this.ItemNo = value; return this; } } public static class RE_Lines { @Required() public String SourceID = null; @References(RE_Main.class) @Required() public String PackSlipID = null; @Required() public String OrderID = null; @Required() public String OrderLineID = null; public BigDecimal Quantity = null; public BigDecimal SuppliersCost = null; @Required() public String InventoryID = null; public String PartNo = null; public String Description = null; public String SuppPartNo = null; public Short LineType = null; public Short DecimalPlaces = null; public Date LastSavedDateTime = null; @Required() public String ClassificationID = null; public String ClassDescription = null; public BigDecimal TaxAmount = null; public String TaxID = null; public BigDecimal TaxRate = null; public BigDecimal HomeSuppliersCost = null; public BigDecimal CurrencyRateUsed = null; public String POClassID = null; @Required() public Boolean PostedToWIP = null; @Required() public BigDecimal JobCharge = null; public Integer LineNumber = null; @References(JB_JobStages.class) public String JB_JobStages_RecID = null; public Short FXDecimalPlaces = null; public Short HomeDecimalPlaces = null; @Required() public BigDecimal LineTotalExTax = null; @Required() public BigDecimal UnitIncTax = null; @Required() public BigDecimal LineTotalIncTax = null; @Required() public BigDecimal FXLineTotalExTax = null; public Boolean UnitChanged = null; public Boolean FXChanged = null; public Boolean ExChanged = null; public Boolean TaxRateChanged = null; public Boolean ChangeSourceIsFromPurchaseOrderLine = null; public String getSourceID() { return SourceID; } public RE_Lines setSourceID(String value) { this.SourceID = value; return this; } public String getPackSlipID() { return PackSlipID; } public RE_Lines setPackSlipID(String value) { this.PackSlipID = value; return this; } public String getOrderID() { return OrderID; } public RE_Lines setOrderID(String value) { this.OrderID = value; return this; } public String getOrderLineID() { return OrderLineID; } public RE_Lines setOrderLineID(String value) { this.OrderLineID = value; return this; } public BigDecimal getQuantity() { return Quantity; } public RE_Lines setQuantity(BigDecimal value) { this.Quantity = value; return this; } public BigDecimal getSuppliersCost() { return SuppliersCost; } public RE_Lines setSuppliersCost(BigDecimal value) { this.SuppliersCost = value; return this; } public String getInventoryID() { return InventoryID; } public RE_Lines setInventoryID(String value) { this.InventoryID = value; return this; } public String getPartNo() { return PartNo; } public RE_Lines setPartNo(String value) { this.PartNo = value; return this; } public String getDescription() { return Description; } public RE_Lines setDescription(String value) { this.Description = value; return this; } public String getSuppPartNo() { return SuppPartNo; } public RE_Lines setSuppPartNo(String value) { this.SuppPartNo = value; return this; } public Short getLineType() { return LineType; } public RE_Lines setLineType(Short value) { this.LineType = value; return this; } public Short getDecimalPlaces() { return DecimalPlaces; } public RE_Lines setDecimalPlaces(Short value) { this.DecimalPlaces = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public RE_Lines setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public String getClassificationID() { return ClassificationID; } public RE_Lines setClassificationID(String value) { this.ClassificationID = value; return this; } public String getClassDescription() { return ClassDescription; } public RE_Lines setClassDescription(String value) { this.ClassDescription = value; return this; } public BigDecimal getTaxAmount() { return TaxAmount; } public RE_Lines setTaxAmount(BigDecimal value) { this.TaxAmount = value; return this; } public String getTaxID() { return TaxID; } public RE_Lines setTaxID(String value) { this.TaxID = value; return this; } public BigDecimal getTaxRate() { return TaxRate; } public RE_Lines setTaxRate(BigDecimal value) { this.TaxRate = value; return this; } public BigDecimal getHomeSuppliersCost() { return HomeSuppliersCost; } public RE_Lines setHomeSuppliersCost(BigDecimal value) { this.HomeSuppliersCost = value; return this; } public BigDecimal getCurrencyRateUsed() { return CurrencyRateUsed; } public RE_Lines setCurrencyRateUsed(BigDecimal value) { this.CurrencyRateUsed = value; return this; } public String getPoClassID() { return POClassID; } public RE_Lines setPoClassID(String value) { this.POClassID = value; return this; } public Boolean isPostedToWIP() { return PostedToWIP; } public RE_Lines setPostedToWIP(Boolean value) { this.PostedToWIP = value; return this; } public BigDecimal getJobCharge() { return JobCharge; } public RE_Lines setJobCharge(BigDecimal value) { this.JobCharge = value; return this; } public Integer getLineNumber() { return LineNumber; } public RE_Lines setLineNumber(Integer value) { this.LineNumber = value; return this; } public String getJbJobStagesRecID() { return JB_JobStages_RecID; } public RE_Lines setJbJobStagesRecID(String value) { this.JB_JobStages_RecID = value; return this; } public Short getFxDecimalPlaces() { return FXDecimalPlaces; } public RE_Lines setFxDecimalPlaces(Short value) { this.FXDecimalPlaces = value; return this; } public Short getHomeDecimalPlaces() { return HomeDecimalPlaces; } public RE_Lines setHomeDecimalPlaces(Short value) { this.HomeDecimalPlaces = value; return this; } public BigDecimal getLineTotalExTax() { return LineTotalExTax; } public RE_Lines setLineTotalExTax(BigDecimal value) { this.LineTotalExTax = value; return this; } public BigDecimal getUnitIncTax() { return UnitIncTax; } public RE_Lines setUnitIncTax(BigDecimal value) { this.UnitIncTax = value; return this; } public BigDecimal getLineTotalIncTax() { return LineTotalIncTax; } public RE_Lines setLineTotalIncTax(BigDecimal value) { this.LineTotalIncTax = value; return this; } public BigDecimal getFxLineTotalExTax() { return FXLineTotalExTax; } public RE_Lines setFxLineTotalExTax(BigDecimal value) { this.FXLineTotalExTax = value; return this; } public Boolean isUnitChanged() { return UnitChanged; } public RE_Lines setUnitChanged(Boolean value) { this.UnitChanged = value; return this; } public Boolean isFxChanged() { return FXChanged; } public RE_Lines setFxChanged(Boolean value) { this.FXChanged = value; return this; } public Boolean isExChanged() { return ExChanged; } public RE_Lines setExChanged(Boolean value) { this.ExChanged = value; return this; } public Boolean isTaxRateChanged() { return TaxRateChanged; } public RE_Lines setTaxRateChanged(Boolean value) { this.TaxRateChanged = value; return this; } public Boolean isChangeSourceIsFromPurchaseOrderLine() { return ChangeSourceIsFromPurchaseOrderLine; } public RE_Lines setChangeSourceIsFromPurchaseOrderLine(Boolean value) { this.ChangeSourceIsFromPurchaseOrderLine = value; return this; } } public static class RE_Main { @Required() public String PackSlipID = null; public Date LastSavedDateTime = null; public String SlipNo = null; @References(CR_Main.class) @Required() public String CreditorID = null; public Date SlipDate = null; @Required() public Short Status = null; public BigDecimal Freight = null; public BigDecimal Duty = null; @Required() public Boolean Invoiced = null; @References(PI_Main.class) public String PI_MainID = null; public BigDecimal Insurance = null; @Required() public String IN_LogicalID = null; public BigDecimal TaxTotal = null; public String FreightTaxID = null; public BigDecimal FreightTaxRate = null; public BigDecimal FreightTaxAmount = null; public String DutyTaxID = null; public BigDecimal DutyTaxRate = null; public BigDecimal DutyTaxAmount = null; public String InsuranceTaxID = null; public BigDecimal InsuranceTaxRate = null; public BigDecimal InsuranceTaxAmount = null; public String Reference = null; public String getPackSlipID() { return PackSlipID; } public RE_Main setPackSlipID(String value) { this.PackSlipID = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public RE_Main setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public String getSlipNo() { return SlipNo; } public RE_Main setSlipNo(String value) { this.SlipNo = value; return this; } public String getCreditorID() { return CreditorID; } public RE_Main setCreditorID(String value) { this.CreditorID = value; return this; } public Date getSlipDate() { return SlipDate; } public RE_Main setSlipDate(Date value) { this.SlipDate = value; return this; } public Short getStatus() { return Status; } public RE_Main setStatus(Short value) { this.Status = value; return this; } public BigDecimal getFreight() { return Freight; } public RE_Main setFreight(BigDecimal value) { this.Freight = value; return this; } public BigDecimal getDuty() { return Duty; } public RE_Main setDuty(BigDecimal value) { this.Duty = value; return this; } public Boolean isInvoiced() { return Invoiced; } public RE_Main setInvoiced(Boolean value) { this.Invoiced = value; return this; } public String getPiMainID() { return PI_MainID; } public RE_Main setPiMainID(String value) { this.PI_MainID = value; return this; } public BigDecimal getInsurance() { return Insurance; } public RE_Main setInsurance(BigDecimal value) { this.Insurance = value; return this; } public String getInLogicalID() { return IN_LogicalID; } public RE_Main setInLogicalID(String value) { this.IN_LogicalID = value; return this; } public BigDecimal getTaxTotal() { return TaxTotal; } public RE_Main setTaxTotal(BigDecimal value) { this.TaxTotal = value; return this; } public String getFreightTaxID() { return FreightTaxID; } public RE_Main setFreightTaxID(String value) { this.FreightTaxID = value; return this; } public BigDecimal getFreightTaxRate() { return FreightTaxRate; } public RE_Main setFreightTaxRate(BigDecimal value) { this.FreightTaxRate = value; return this; } public BigDecimal getFreightTaxAmount() { return FreightTaxAmount; } public RE_Main setFreightTaxAmount(BigDecimal value) { this.FreightTaxAmount = value; return this; } public String getDutyTaxID() { return DutyTaxID; } public RE_Main setDutyTaxID(String value) { this.DutyTaxID = value; return this; } public BigDecimal getDutyTaxRate() { return DutyTaxRate; } public RE_Main setDutyTaxRate(BigDecimal value) { this.DutyTaxRate = value; return this; } public BigDecimal getDutyTaxAmount() { return DutyTaxAmount; } public RE_Main setDutyTaxAmount(BigDecimal value) { this.DutyTaxAmount = value; return this; } public String getInsuranceTaxID() { return InsuranceTaxID; } public RE_Main setInsuranceTaxID(String value) { this.InsuranceTaxID = value; return this; } public BigDecimal getInsuranceTaxRate() { return InsuranceTaxRate; } public RE_Main setInsuranceTaxRate(BigDecimal value) { this.InsuranceTaxRate = value; return this; } public BigDecimal getInsuranceTaxAmount() { return InsuranceTaxAmount; } public RE_Main setInsuranceTaxAmount(BigDecimal value) { this.InsuranceTaxAmount = value; return this; } public String getReference() { return Reference; } public RE_Main setReference(String value) { this.Reference = value; return this; } } public static class RE_OrdersUsed { @Required() public String OrdersPSOrdersID = null; @Required() public String PackSlipID = null; @Required() public String OrderID = null; @Required() public Boolean TypeReceival = null; public String getOrdersPSOrdersID() { return OrdersPSOrdersID; } public RE_OrdersUsed setOrdersPSOrdersID(String value) { this.OrdersPSOrdersID = value; return this; } public String getPackSlipID() { return PackSlipID; } public RE_OrdersUsed setPackSlipID(String value) { this.PackSlipID = value; return this; } public String getOrderID() { return OrderID; } public RE_OrdersUsed setOrderID(String value) { this.OrderID = value; return this; } public Boolean isTypeReceival() { return TypeReceival; } public RE_OrdersUsed setTypeReceival(Boolean value) { this.TypeReceival = value; return this; } } public static class RE_Reversal { @Required() public UUID RecID = null; @References(RE_Main.class) @Required() public String Reversed_RE_Main_RecID = null; @References(RE_Main.class) @Required() public String Reversal_RE_Main_RecID = null; public UUID getRecID() { return RecID; } public RE_Reversal setRecID(UUID value) { this.RecID = value; return this; } public String getReversedReMainRecID() { return Reversed_RE_Main_RecID; } public RE_Reversal setReversedReMainRecID(String value) { this.Reversed_RE_Main_RecID = value; return this; } public String getReversalReMainRecID() { return Reversal_RE_Main_RecID; } public RE_Reversal setReversalReMainRecID(String value) { this.Reversal_RE_Main_RecID = value; return this; } } public static class SH_ApportionedCostsAmounts { @Required() public String CostsAmountsID = null; @Required() public String ShipmentLineID = null; @References(SH_Costs.class) @Required() public String CostsID = null; public BigDecimal Amount = null; @Required() public Boolean IncludeFlag = null; @Required() public ArrayList RowHash = null; public String getCostsAmountsID() { return CostsAmountsID; } public SH_ApportionedCostsAmounts setCostsAmountsID(String value) { this.CostsAmountsID = value; return this; } public String getShipmentLineID() { return ShipmentLineID; } public SH_ApportionedCostsAmounts setShipmentLineID(String value) { this.ShipmentLineID = value; return this; } public String getCostsID() { return CostsID; } public SH_ApportionedCostsAmounts setCostsID(String value) { this.CostsID = value; return this; } public BigDecimal getAmount() { return Amount; } public SH_ApportionedCostsAmounts setAmount(BigDecimal value) { this.Amount = value; return this; } public Boolean isIncludeFlag() { return IncludeFlag; } public SH_ApportionedCostsAmounts setIncludeFlag(Boolean value) { this.IncludeFlag = value; return this; } public ArrayList getRowHash() { return RowHash; } public SH_ApportionedCostsAmounts setRowHash(ArrayList value) { this.RowHash = value; return this; } } public static class SH_ApportionedCostsOnPO { @Required() public String ApportionedID = null; @Required() public String CostsID = null; @Required() public String ShipmentID = null; @References(SH_PurchaseOrders.class) @Required() public String OrdersUsedID = null; @Required() public ArrayList RowHash = null; public String getApportionedID() { return ApportionedID; } public SH_ApportionedCostsOnPO setApportionedID(String value) { this.ApportionedID = value; return this; } public String getCostsID() { return CostsID; } public SH_ApportionedCostsOnPO setCostsID(String value) { this.CostsID = value; return this; } public String getShipmentID() { return ShipmentID; } public SH_ApportionedCostsOnPO setShipmentID(String value) { this.ShipmentID = value; return this; } public String getOrdersUsedID() { return OrdersUsedID; } public SH_ApportionedCostsOnPO setOrdersUsedID(String value) { this.OrdersUsedID = value; return this; } public ArrayList getRowHash() { return RowHash; } public SH_ApportionedCostsOnPO setRowHash(ArrayList value) { this.RowHash = value; return this; } } public static class SH_BookInDetailLines { @Required() public String RecID = null; @References(SH_BookInLines.class) @Required() public String Parent_RecID = null; public BigDecimal Quantity = null; public String SerialNo = null; public Date ExpiryDate = null; public String BinLocation = null; @References(IN_SOH.class) public String IN_SOH_LinkID = null; public BigDecimal Cost = null; @Required() public ArrayList RowHash = null; public BigDecimal SpecialPrice = null; @Required() public Date LastSavedDateTime = null; @Required() public Integer ItemNo = null; public String getRecID() { return RecID; } public SH_BookInDetailLines setRecID(String value) { this.RecID = value; return this; } public String getParentRecID() { return Parent_RecID; } public SH_BookInDetailLines setParentRecID(String value) { this.Parent_RecID = value; return this; } public BigDecimal getQuantity() { return Quantity; } public SH_BookInDetailLines setQuantity(BigDecimal value) { this.Quantity = value; return this; } public String getSerialNo() { return SerialNo; } public SH_BookInDetailLines setSerialNo(String value) { this.SerialNo = value; return this; } public Date getExpiryDate() { return ExpiryDate; } public SH_BookInDetailLines setExpiryDate(Date value) { this.ExpiryDate = value; return this; } public String getBinLocation() { return BinLocation; } public SH_BookInDetailLines setBinLocation(String value) { this.BinLocation = value; return this; } public String getInSohLinkID() { return IN_SOH_LinkID; } public SH_BookInDetailLines setInSohLinkID(String value) { this.IN_SOH_LinkID = value; return this; } public BigDecimal getCost() { return Cost; } public SH_BookInDetailLines setCost(BigDecimal value) { this.Cost = value; return this; } public ArrayList getRowHash() { return RowHash; } public SH_BookInDetailLines setRowHash(ArrayList value) { this.RowHash = value; return this; } public BigDecimal getSpecialPrice() { return SpecialPrice; } public SH_BookInDetailLines setSpecialPrice(BigDecimal value) { this.SpecialPrice = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public SH_BookInDetailLines setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Integer getItemNo() { return ItemNo; } public SH_BookInDetailLines setItemNo(Integer value) { this.ItemNo = value; return this; } } public static class SH_BookInDetailLinesCostAudit { @Required() public String RecID = null; @References(SH_BookInDetailLines.class) @Required() public String BookInDetailLineID = null; @Required() public Date DateCostChanged = null; public BigDecimal CostBefore = null; public BigDecimal CostAfter = null; public String getRecID() { return RecID; } public SH_BookInDetailLinesCostAudit setRecID(String value) { this.RecID = value; return this; } public String getBookInDetailLineID() { return BookInDetailLineID; } public SH_BookInDetailLinesCostAudit setBookInDetailLineID(String value) { this.BookInDetailLineID = value; return this; } public Date getDateCostChanged() { return DateCostChanged; } public SH_BookInDetailLinesCostAudit setDateCostChanged(Date value) { this.DateCostChanged = value; return this; } public BigDecimal getCostBefore() { return CostBefore; } public SH_BookInDetailLinesCostAudit setCostBefore(BigDecimal value) { this.CostBefore = value; return this; } public BigDecimal getCostAfter() { return CostAfter; } public SH_BookInDetailLinesCostAudit setCostAfter(BigDecimal value) { this.CostAfter = value; return this; } } public static class SH_BookInLineCustomFields { @Required() public String RecID = null; @Required() public String SettingName = null; public String SettingDescription = null; public Integer CellType = null; public String FieldParameter = null; @References(SY_Plugin.class) @Required() public UUID SY_Plugin_RecID = null; @Required() public Date LastSavedDateTime = null; public Integer DisplayOrder = null; public String getRecID() { return RecID; } public SH_BookInLineCustomFields setRecID(String value) { this.RecID = value; return this; } public String getSettingName() { return SettingName; } public SH_BookInLineCustomFields setSettingName(String value) { this.SettingName = value; return this; } public String getSettingDescription() { return SettingDescription; } public SH_BookInLineCustomFields setSettingDescription(String value) { this.SettingDescription = value; return this; } public Integer getCellType() { return CellType; } public SH_BookInLineCustomFields setCellType(Integer value) { this.CellType = value; return this; } public String getFieldParameter() { return FieldParameter; } public SH_BookInLineCustomFields setFieldParameter(String value) { this.FieldParameter = value; return this; } public UUID getSyPluginRecID() { return SY_Plugin_RecID; } public SH_BookInLineCustomFields setSyPluginRecID(UUID value) { this.SY_Plugin_RecID = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public SH_BookInLineCustomFields setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Integer getDisplayOrder() { return DisplayOrder; } public SH_BookInLineCustomFields setDisplayOrder(Integer value) { this.DisplayOrder = value; return this; } } public static class SH_BookInLineCustomValues { @Required() public String RecID = null; @Required() public String SH_BookInLines_RecID = null; @References(SH_BookInLineCustomFields.class) @Required() public String SH_BookInLineCustomFields_RecID = null; public String Contents = null; @Required() public Date LastSavedDateTime = null; public String getRecID() { return RecID; } public SH_BookInLineCustomValues setRecID(String value) { this.RecID = value; return this; } public String getShBookInLinesRecID() { return SH_BookInLines_RecID; } public SH_BookInLineCustomValues setShBookInLinesRecID(String value) { this.SH_BookInLines_RecID = value; return this; } public String getShBookInLineCustomFieldsRecID() { return SH_BookInLineCustomFields_RecID; } public SH_BookInLineCustomValues setShBookInLineCustomFieldsRecID(String value) { this.SH_BookInLineCustomFields_RecID = value; return this; } public String getContents() { return Contents; } public SH_BookInLineCustomValues setContents(String value) { this.Contents = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public SH_BookInLineCustomValues setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } } public static class SH_BookInLines { @Required() public String BookInLineID = null; @Required() public String BookInID = null; @Required() public String PartNo = null; public String InventoryID = null; public BigDecimal Quantity = null; @References(SH_Lines.class) @Required() public String ShipmentLineID = null; @Required() public Boolean UseSerialNo = null; @Required() public Boolean UseExpiry = null; public Short DecimalPlaces = null; public String POClassID = null; public Short DeliveryDays = null; public String Description = null; public BigDecimal OrderUnits = null; public String ClassificationID = null; public String SupplierPartNo = null; public BigDecimal OrderedCost = null; public BigDecimal GSTRate = null; public BigDecimal GSTAmount = null; public String GSTID = null; public String JobCostID = null; public String CreditorID = null; public BigDecimal FXRate = null; public BigDecimal UnitCost = null; public BigDecimal Weight = null; public BigDecimal Volume = null; @References(FX_Currency.class) public String CurrencyID = null; @Required() public Boolean PhysicalItem = null; public BigDecimal FXOrderedCost = null; @Required() public ArrayList RowHash = null; @Required() public Integer ItemNo = null; public String getBookInLineID() { return BookInLineID; } public SH_BookInLines setBookInLineID(String value) { this.BookInLineID = value; return this; } public String getBookInID() { return BookInID; } public SH_BookInLines setBookInID(String value) { this.BookInID = value; return this; } public String getPartNo() { return PartNo; } public SH_BookInLines setPartNo(String value) { this.PartNo = value; return this; } public String getInventoryID() { return InventoryID; } public SH_BookInLines setInventoryID(String value) { this.InventoryID = value; return this; } public BigDecimal getQuantity() { return Quantity; } public SH_BookInLines setQuantity(BigDecimal value) { this.Quantity = value; return this; } public String getShipmentLineID() { return ShipmentLineID; } public SH_BookInLines setShipmentLineID(String value) { this.ShipmentLineID = value; return this; } public Boolean isUseSerialNo() { return UseSerialNo; } public SH_BookInLines setUseSerialNo(Boolean value) { this.UseSerialNo = value; return this; } public Boolean isUseExpiry() { return UseExpiry; } public SH_BookInLines setUseExpiry(Boolean value) { this.UseExpiry = value; return this; } public Short getDecimalPlaces() { return DecimalPlaces; } public SH_BookInLines setDecimalPlaces(Short value) { this.DecimalPlaces = value; return this; } public String getPoClassID() { return POClassID; } public SH_BookInLines setPoClassID(String value) { this.POClassID = value; return this; } public Short getDeliveryDays() { return DeliveryDays; } public SH_BookInLines setDeliveryDays(Short value) { this.DeliveryDays = value; return this; } public String getDescription() { return Description; } public SH_BookInLines setDescription(String value) { this.Description = value; return this; } public BigDecimal getOrderUnits() { return OrderUnits; } public SH_BookInLines setOrderUnits(BigDecimal value) { this.OrderUnits = value; return this; } public String getClassificationID() { return ClassificationID; } public SH_BookInLines setClassificationID(String value) { this.ClassificationID = value; return this; } public String getSupplierPartNo() { return SupplierPartNo; } public SH_BookInLines setSupplierPartNo(String value) { this.SupplierPartNo = value; return this; } public BigDecimal getOrderedCost() { return OrderedCost; } public SH_BookInLines setOrderedCost(BigDecimal value) { this.OrderedCost = value; return this; } public BigDecimal getGstRate() { return GSTRate; } public SH_BookInLines setGstRate(BigDecimal value) { this.GSTRate = value; return this; } public BigDecimal getGstAmount() { return GSTAmount; } public SH_BookInLines setGstAmount(BigDecimal value) { this.GSTAmount = value; return this; } public String getGstid() { return GSTID; } public SH_BookInLines setGstid(String value) { this.GSTID = value; return this; } public String getJobCostID() { return JobCostID; } public SH_BookInLines setJobCostID(String value) { this.JobCostID = value; return this; } public String getCreditorID() { return CreditorID; } public SH_BookInLines setCreditorID(String value) { this.CreditorID = value; return this; } public BigDecimal getFxRate() { return FXRate; } public SH_BookInLines setFxRate(BigDecimal value) { this.FXRate = value; return this; } public BigDecimal getUnitCost() { return UnitCost; } public SH_BookInLines setUnitCost(BigDecimal value) { this.UnitCost = value; return this; } public BigDecimal getWeight() { return Weight; } public SH_BookInLines setWeight(BigDecimal value) { this.Weight = value; return this; } public BigDecimal getVolume() { return Volume; } public SH_BookInLines setVolume(BigDecimal value) { this.Volume = value; return this; } public String getCurrencyID() { return CurrencyID; } public SH_BookInLines setCurrencyID(String value) { this.CurrencyID = value; return this; } public Boolean isPhysicalItem() { return PhysicalItem; } public SH_BookInLines setPhysicalItem(Boolean value) { this.PhysicalItem = value; return this; } public BigDecimal getFxOrderedCost() { return FXOrderedCost; } public SH_BookInLines setFxOrderedCost(BigDecimal value) { this.FXOrderedCost = value; return this; } public ArrayList getRowHash() { return RowHash; } public SH_BookInLines setRowHash(ArrayList value) { this.RowHash = value; return this; } public Integer getItemNo() { return ItemNo; } public SH_BookInLines setItemNo(Integer value) { this.ItemNo = value; return this; } } public static class SH_BookInMain { @Required() public String BookInID = null; @Required() public String BookInNo = null; public Date LastSavedDateTime = null; @Required() public String ShipmentID = null; public Date BookInDate = null; @Required() public Boolean Status = null; @Required() public String IN_LogicalID = null; public String SETID = null; public String getBookInID() { return BookInID; } public SH_BookInMain setBookInID(String value) { this.BookInID = value; return this; } public String getBookInNo() { return BookInNo; } public SH_BookInMain setBookInNo(String value) { this.BookInNo = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public SH_BookInMain setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public String getShipmentID() { return ShipmentID; } public SH_BookInMain setShipmentID(String value) { this.ShipmentID = value; return this; } public Date getBookInDate() { return BookInDate; } public SH_BookInMain setBookInDate(Date value) { this.BookInDate = value; return this; } public Boolean isStatus() { return Status; } public SH_BookInMain setStatus(Boolean value) { this.Status = value; return this; } public String getInLogicalID() { return IN_LogicalID; } public SH_BookInMain setInLogicalID(String value) { this.IN_LogicalID = value; return this; } public String getSetid() { return SETID; } public SH_BookInMain setSetid(String value) { this.SETID = value; return this; } } public static class SH_Costs { @Required() public String CostsID = null; @Required() public String ShipmentID = null; @References(CR_Main.class) public String CreditorID = null; public String CostType = null; public BigDecimal FXAmount = null; public BigDecimal FXRate = null; @References(FX_Currency.class) public String CurrencyID = null; public BigDecimal HomeAmount = null; public BigDecimal GSTAmount = null; public BigDecimal GSTRate = null; public String GSTID = null; public BigDecimal TotalAmount = null; public Short ApportionMethod = null; @Required() public Boolean Apportioned = null; @Required() public Boolean Invoiced = null; public String CR_TransID = null; public Date DueDate = null; public String InvoiceNo = null; public String Reference = null; public String CreditorLedgerID = null; public String LedgerID = null; public String UserField1 = null; public String UserField2 = null; public String UserField3 = null; public String UserField4 = null; public String UserField5 = null; public String UserField6 = null; public String UserField7 = null; public String UserField8 = null; public String UserField9 = null; public String UserField10 = null; @Required() public Date LastSavedDateTime = null; public Integer AUDDecimalPlaces = null; public Integer FXDecimalPlaces = null; public Date InvoiceDate = null; public Integer DisplayOrder = null; @Required() public String SH_CostTypes_RecID = null; public String getCostsID() { return CostsID; } public SH_Costs setCostsID(String value) { this.CostsID = value; return this; } public String getShipmentID() { return ShipmentID; } public SH_Costs setShipmentID(String value) { this.ShipmentID = value; return this; } public String getCreditorID() { return CreditorID; } public SH_Costs setCreditorID(String value) { this.CreditorID = value; return this; } public String getCostType() { return CostType; } public SH_Costs setCostType(String value) { this.CostType = value; return this; } public BigDecimal getFxAmount() { return FXAmount; } public SH_Costs setFxAmount(BigDecimal value) { this.FXAmount = value; return this; } public BigDecimal getFxRate() { return FXRate; } public SH_Costs setFxRate(BigDecimal value) { this.FXRate = value; return this; } public String getCurrencyID() { return CurrencyID; } public SH_Costs setCurrencyID(String value) { this.CurrencyID = value; return this; } public BigDecimal getHomeAmount() { return HomeAmount; } public SH_Costs setHomeAmount(BigDecimal value) { this.HomeAmount = value; return this; } public BigDecimal getGstAmount() { return GSTAmount; } public SH_Costs setGstAmount(BigDecimal value) { this.GSTAmount = value; return this; } public BigDecimal getGstRate() { return GSTRate; } public SH_Costs setGstRate(BigDecimal value) { this.GSTRate = value; return this; } public String getGstid() { return GSTID; } public SH_Costs setGstid(String value) { this.GSTID = value; return this; } public BigDecimal getTotalAmount() { return TotalAmount; } public SH_Costs setTotalAmount(BigDecimal value) { this.TotalAmount = value; return this; } public Short getApportionMethod() { return ApportionMethod; } public SH_Costs setApportionMethod(Short value) { this.ApportionMethod = value; return this; } public Boolean isApportioned() { return Apportioned; } public SH_Costs setApportioned(Boolean value) { this.Apportioned = value; return this; } public Boolean isInvoiced() { return Invoiced; } public SH_Costs setInvoiced(Boolean value) { this.Invoiced = value; return this; } public String getCrTransID() { return CR_TransID; } public SH_Costs setCrTransID(String value) { this.CR_TransID = value; return this; } public Date getDueDate() { return DueDate; } public SH_Costs setDueDate(Date value) { this.DueDate = value; return this; } public String getInvoiceNo() { return InvoiceNo; } public SH_Costs setInvoiceNo(String value) { this.InvoiceNo = value; return this; } public String getReference() { return Reference; } public SH_Costs setReference(String value) { this.Reference = value; return this; } public String getCreditorLedgerID() { return CreditorLedgerID; } public SH_Costs setCreditorLedgerID(String value) { this.CreditorLedgerID = value; return this; } public String getLedgerID() { return LedgerID; } public SH_Costs setLedgerID(String value) { this.LedgerID = value; return this; } public String getUserField1() { return UserField1; } public SH_Costs setUserField1(String value) { this.UserField1 = value; return this; } public String getUserField2() { return UserField2; } public SH_Costs setUserField2(String value) { this.UserField2 = value; return this; } public String getUserField3() { return UserField3; } public SH_Costs setUserField3(String value) { this.UserField3 = value; return this; } public String getUserField4() { return UserField4; } public SH_Costs setUserField4(String value) { this.UserField4 = value; return this; } public String getUserField5() { return UserField5; } public SH_Costs setUserField5(String value) { this.UserField5 = value; return this; } public String getUserField6() { return UserField6; } public SH_Costs setUserField6(String value) { this.UserField6 = value; return this; } public String getUserField7() { return UserField7; } public SH_Costs setUserField7(String value) { this.UserField7 = value; return this; } public String getUserField8() { return UserField8; } public SH_Costs setUserField8(String value) { this.UserField8 = value; return this; } public String getUserField9() { return UserField9; } public SH_Costs setUserField9(String value) { this.UserField9 = value; return this; } public String getUserField10() { return UserField10; } public SH_Costs setUserField10(String value) { this.UserField10 = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public SH_Costs setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Integer getAudDecimalPlaces() { return AUDDecimalPlaces; } public SH_Costs setAudDecimalPlaces(Integer value) { this.AUDDecimalPlaces = value; return this; } public Integer getFxDecimalPlaces() { return FXDecimalPlaces; } public SH_Costs setFxDecimalPlaces(Integer value) { this.FXDecimalPlaces = value; return this; } public Date getInvoiceDate() { return InvoiceDate; } public SH_Costs setInvoiceDate(Date value) { this.InvoiceDate = value; return this; } public Integer getDisplayOrder() { return DisplayOrder; } public SH_Costs setDisplayOrder(Integer value) { this.DisplayOrder = value; return this; } public String getShCostTypesRecID() { return SH_CostTypes_RecID; } public SH_Costs setShCostTypesRecID(String value) { this.SH_CostTypes_RecID = value; return this; } } public static class SH_CostTypes { @Required() public String RecID = null; public String Description = null; @Required() public String Name = null; public Boolean IsEnabled = null; @Required() public Boolean IsDefault = null; @Required() public Integer ItemNo = null; @Required() public ArrayList RowHash = null; public String getRecID() { return RecID; } public SH_CostTypes setRecID(String value) { this.RecID = value; return this; } public String getDescription() { return Description; } public SH_CostTypes setDescription(String value) { this.Description = value; return this; } public String getName() { return Name; } public SH_CostTypes setName(String value) { this.Name = value; return this; } public Boolean getIsEnabled() { return IsEnabled; } public SH_CostTypes setIsEnabled(Boolean value) { this.IsEnabled = value; return this; } public Boolean getIsDefault() { return IsDefault; } public SH_CostTypes setIsDefault(Boolean value) { this.IsDefault = value; return this; } public Integer getItemNo() { return ItemNo; } public SH_CostTypes setItemNo(Integer value) { this.ItemNo = value; return this; } public ArrayList getRowHash() { return RowHash; } public SH_CostTypes setRowHash(ArrayList value) { this.RowHash = value; return this; } } public static class SH_CustomSettings { @Required() public String SettingID = null; @Required() public Date LastSavedDateTime = null; public String SettingDescription = null; public String SettingName = null; public BigDecimal DisplayOrder = null; public Short CellType = null; public String ScriptFormatCell = null; public String ScriptButtonClicked = null; public String ScriptReadData = null; @References(SY_Plugin.class) @Required() public UUID SY_Plugin_RecID = null; public String getSettingID() { return SettingID; } public SH_CustomSettings setSettingID(String value) { this.SettingID = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public SH_CustomSettings setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public String getSettingDescription() { return SettingDescription; } public SH_CustomSettings setSettingDescription(String value) { this.SettingDescription = value; return this; } public String getSettingName() { return SettingName; } public SH_CustomSettings setSettingName(String value) { this.SettingName = value; return this; } public BigDecimal getDisplayOrder() { return DisplayOrder; } public SH_CustomSettings setDisplayOrder(BigDecimal value) { this.DisplayOrder = value; return this; } public Short getCellType() { return CellType; } public SH_CustomSettings setCellType(Short value) { this.CellType = value; return this; } public String getScriptFormatCell() { return ScriptFormatCell; } public SH_CustomSettings setScriptFormatCell(String value) { this.ScriptFormatCell = value; return this; } public String getScriptButtonClicked() { return ScriptButtonClicked; } public SH_CustomSettings setScriptButtonClicked(String value) { this.ScriptButtonClicked = value; return this; } public String getScriptReadData() { return ScriptReadData; } public SH_CustomSettings setScriptReadData(String value) { this.ScriptReadData = value; return this; } public UUID getSyPluginRecID() { return SY_Plugin_RecID; } public SH_CustomSettings setSyPluginRecID(UUID value) { this.SY_Plugin_RecID = value; return this; } } public static class SH_CustomSettingValues { @Required() public String SettingValueID = null; @Required() public String SettingID = null; public String SH_Main_RecID = null; public String Contents = null; @Required() public Date LastSavedDateTime = null; public String getSettingValueID() { return SettingValueID; } public SH_CustomSettingValues setSettingValueID(String value) { this.SettingValueID = value; return this; } public String getSettingID() { return SettingID; } public SH_CustomSettingValues setSettingID(String value) { this.SettingID = value; return this; } public String getShMainRecID() { return SH_Main_RecID; } public SH_CustomSettingValues setShMainRecID(String value) { this.SH_Main_RecID = value; return this; } public String getContents() { return Contents; } public SH_CustomSettingValues setContents(String value) { this.Contents = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public SH_CustomSettingValues setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } } public static class SH_Invoices { @Required() public String InvoicesID = null; @Required() public String ShipmentID = null; public String InvoiceNo = null; public String Reference = null; public String Remark = null; public Date DueDate = null; @Required() public String CreditorID = null; public BigDecimal FXRate = null; @References(FX_Currency.class) public String CurrencyID = null; public BigDecimal HomeAmount = null; public BigDecimal FXAmount = null; public String CR_TransID = null; public String CreditorLedgerID = null; public String UserField1 = null; public String UserField2 = null; public String UserField3 = null; public String UserField4 = null; public String UserField5 = null; public String UserField6 = null; public String UserField7 = null; public String UserField8 = null; public String UserField9 = null; public String UserField10 = null; public BigDecimal ExpectedHomeAmount = null; public BigDecimal ExpectedFXAmount = null; @Required() public Boolean Invoiced = null; public Date InvoiceDate = null; @Required() public ArrayList RowHash = null; @Required() public Integer ItemNo = null; public BigDecimal TaxAmount = null; public BigDecimal AmountIncTax = null; public String getInvoicesID() { return InvoicesID; } public SH_Invoices setInvoicesID(String value) { this.InvoicesID = value; return this; } public String getShipmentID() { return ShipmentID; } public SH_Invoices setShipmentID(String value) { this.ShipmentID = value; return this; } public String getInvoiceNo() { return InvoiceNo; } public SH_Invoices setInvoiceNo(String value) { this.InvoiceNo = value; return this; } public String getReference() { return Reference; } public SH_Invoices setReference(String value) { this.Reference = value; return this; } public String getRemark() { return Remark; } public SH_Invoices setRemark(String value) { this.Remark = value; return this; } public Date getDueDate() { return DueDate; } public SH_Invoices setDueDate(Date value) { this.DueDate = value; return this; } public String getCreditorID() { return CreditorID; } public SH_Invoices setCreditorID(String value) { this.CreditorID = value; return this; } public BigDecimal getFxRate() { return FXRate; } public SH_Invoices setFxRate(BigDecimal value) { this.FXRate = value; return this; } public String getCurrencyID() { return CurrencyID; } public SH_Invoices setCurrencyID(String value) { this.CurrencyID = value; return this; } public BigDecimal getHomeAmount() { return HomeAmount; } public SH_Invoices setHomeAmount(BigDecimal value) { this.HomeAmount = value; return this; } public BigDecimal getFxAmount() { return FXAmount; } public SH_Invoices setFxAmount(BigDecimal value) { this.FXAmount = value; return this; } public String getCrTransID() { return CR_TransID; } public SH_Invoices setCrTransID(String value) { this.CR_TransID = value; return this; } public String getCreditorLedgerID() { return CreditorLedgerID; } public SH_Invoices setCreditorLedgerID(String value) { this.CreditorLedgerID = value; return this; } public String getUserField1() { return UserField1; } public SH_Invoices setUserField1(String value) { this.UserField1 = value; return this; } public String getUserField2() { return UserField2; } public SH_Invoices setUserField2(String value) { this.UserField2 = value; return this; } public String getUserField3() { return UserField3; } public SH_Invoices setUserField3(String value) { this.UserField3 = value; return this; } public String getUserField4() { return UserField4; } public SH_Invoices setUserField4(String value) { this.UserField4 = value; return this; } public String getUserField5() { return UserField5; } public SH_Invoices setUserField5(String value) { this.UserField5 = value; return this; } public String getUserField6() { return UserField6; } public SH_Invoices setUserField6(String value) { this.UserField6 = value; return this; } public String getUserField7() { return UserField7; } public SH_Invoices setUserField7(String value) { this.UserField7 = value; return this; } public String getUserField8() { return UserField8; } public SH_Invoices setUserField8(String value) { this.UserField8 = value; return this; } public String getUserField9() { return UserField9; } public SH_Invoices setUserField9(String value) { this.UserField9 = value; return this; } public String getUserField10() { return UserField10; } public SH_Invoices setUserField10(String value) { this.UserField10 = value; return this; } public BigDecimal getExpectedHomeAmount() { return ExpectedHomeAmount; } public SH_Invoices setExpectedHomeAmount(BigDecimal value) { this.ExpectedHomeAmount = value; return this; } public BigDecimal getExpectedFXAmount() { return ExpectedFXAmount; } public SH_Invoices setExpectedFXAmount(BigDecimal value) { this.ExpectedFXAmount = value; return this; } public Boolean isInvoiced() { return Invoiced; } public SH_Invoices setInvoiced(Boolean value) { this.Invoiced = value; return this; } public Date getInvoiceDate() { return InvoiceDate; } public SH_Invoices setInvoiceDate(Date value) { this.InvoiceDate = value; return this; } public ArrayList getRowHash() { return RowHash; } public SH_Invoices setRowHash(ArrayList value) { this.RowHash = value; return this; } public Integer getItemNo() { return ItemNo; } public SH_Invoices setItemNo(Integer value) { this.ItemNo = value; return this; } public BigDecimal getTaxAmount() { return TaxAmount; } public SH_Invoices setTaxAmount(BigDecimal value) { this.TaxAmount = value; return this; } public BigDecimal getAmountIncTax() { return AmountIncTax; } public SH_Invoices setAmountIncTax(BigDecimal value) { this.AmountIncTax = value; return this; } } public static class SH_Lines { @Required() public String ShipmentLineID = null; @Required() public String ShipmentID = null; @References(SH_PurchaseOrders.class) public String PurchaseOrdersID = null; @References(PO_Lines.class) public String PurchaseOrderLineID = null; public String InventoryID = null; public String PartNo = null; public String SupplierPartNo = null; public BigDecimal QuantityOrdered = null; public BigDecimal QuantityThisShipment = null; public BigDecimal OrderedCost = null; public BigDecimal ShipUnitCostExGST = null; public BigDecimal ShipUnitCostIncGST = null; public BigDecimal FXShipUnitCostExGST = null; public BigDecimal AdjustedUnitCost = null; public BigDecimal GSTRate = null; public BigDecimal GSTAmount = null; public String GSTID = null; @Required() public Boolean UseSerialNo = null; @Required() public Boolean UseExpiry = null; public Short DecimalPlaces = null; public String POClassID = null; public String InvoicesID = null; public Short DeliveryDays = null; public String Description = null; public BigDecimal OrderUnits = null; public String ClassificationID = null; public String JobCostID = null; public BigDecimal FXRate = null; public BigDecimal Weight = null; public BigDecimal Volume = null; public BigDecimal LineTotalExGST = null; public BigDecimal FXLineTotalExGST = null; public BigDecimal LineTotalIncGST = null; public BigDecimal LandedCostTotal = null; @References(FX_Currency.class) public String CurrencyID = null; public String CreditorID = null; public String UserField1 = null; public String UserField2 = null; public String UserField3 = null; public String UserField4 = null; public String UserField5 = null; public String UserField6 = null; public String UserField7 = null; public String UserField8 = null; public String UserField9 = null; public String UserField10 = null; @Required() public Boolean PhysicalItem = null; public BigDecimal FXOrderedCost = null; public Integer DisplayOrder = null; public String IN_SupplierWarehouse_RecID = null; public String IN_Creditor_RecID = null; @Required() public ArrayList RowHash = null; public Boolean UnitChanged = null; public Boolean FXChanged = null; public Boolean ExChanged = null; public Boolean TaxRateChanged = null; public Boolean ChangeSourceIsFromPurchaseOrderLine = null; public String getShipmentLineID() { return ShipmentLineID; } public SH_Lines setShipmentLineID(String value) { this.ShipmentLineID = value; return this; } public String getShipmentID() { return ShipmentID; } public SH_Lines setShipmentID(String value) { this.ShipmentID = value; return this; } public String getPurchaseOrdersID() { return PurchaseOrdersID; } public SH_Lines setPurchaseOrdersID(String value) { this.PurchaseOrdersID = value; return this; } public String getPurchaseOrderLineID() { return PurchaseOrderLineID; } public SH_Lines setPurchaseOrderLineID(String value) { this.PurchaseOrderLineID = value; return this; } public String getInventoryID() { return InventoryID; } public SH_Lines setInventoryID(String value) { this.InventoryID = value; return this; } public String getPartNo() { return PartNo; } public SH_Lines setPartNo(String value) { this.PartNo = value; return this; } public String getSupplierPartNo() { return SupplierPartNo; } public SH_Lines setSupplierPartNo(String value) { this.SupplierPartNo = value; return this; } public BigDecimal getQuantityOrdered() { return QuantityOrdered; } public SH_Lines setQuantityOrdered(BigDecimal value) { this.QuantityOrdered = value; return this; } public BigDecimal getQuantityThisShipment() { return QuantityThisShipment; } public SH_Lines setQuantityThisShipment(BigDecimal value) { this.QuantityThisShipment = value; return this; } public BigDecimal getOrderedCost() { return OrderedCost; } public SH_Lines setOrderedCost(BigDecimal value) { this.OrderedCost = value; return this; } public BigDecimal getShipUnitCostExGST() { return ShipUnitCostExGST; } public SH_Lines setShipUnitCostExGST(BigDecimal value) { this.ShipUnitCostExGST = value; return this; } public BigDecimal getShipUnitCostIncGST() { return ShipUnitCostIncGST; } public SH_Lines setShipUnitCostIncGST(BigDecimal value) { this.ShipUnitCostIncGST = value; return this; } public BigDecimal getFxShipUnitCostExGST() { return FXShipUnitCostExGST; } public SH_Lines setFxShipUnitCostExGST(BigDecimal value) { this.FXShipUnitCostExGST = value; return this; } public BigDecimal getAdjustedUnitCost() { return AdjustedUnitCost; } public SH_Lines setAdjustedUnitCost(BigDecimal value) { this.AdjustedUnitCost = value; return this; } public BigDecimal getGstRate() { return GSTRate; } public SH_Lines setGstRate(BigDecimal value) { this.GSTRate = value; return this; } public BigDecimal getGstAmount() { return GSTAmount; } public SH_Lines setGstAmount(BigDecimal value) { this.GSTAmount = value; return this; } public String getGstid() { return GSTID; } public SH_Lines setGstid(String value) { this.GSTID = value; return this; } public Boolean isUseSerialNo() { return UseSerialNo; } public SH_Lines setUseSerialNo(Boolean value) { this.UseSerialNo = value; return this; } public Boolean isUseExpiry() { return UseExpiry; } public SH_Lines setUseExpiry(Boolean value) { this.UseExpiry = value; return this; } public Short getDecimalPlaces() { return DecimalPlaces; } public SH_Lines setDecimalPlaces(Short value) { this.DecimalPlaces = value; return this; } public String getPoClassID() { return POClassID; } public SH_Lines setPoClassID(String value) { this.POClassID = value; return this; } public String getInvoicesID() { return InvoicesID; } public SH_Lines setInvoicesID(String value) { this.InvoicesID = value; return this; } public Short getDeliveryDays() { return DeliveryDays; } public SH_Lines setDeliveryDays(Short value) { this.DeliveryDays = value; return this; } public String getDescription() { return Description; } public SH_Lines setDescription(String value) { this.Description = value; return this; } public BigDecimal getOrderUnits() { return OrderUnits; } public SH_Lines setOrderUnits(BigDecimal value) { this.OrderUnits = value; return this; } public String getClassificationID() { return ClassificationID; } public SH_Lines setClassificationID(String value) { this.ClassificationID = value; return this; } public String getJobCostID() { return JobCostID; } public SH_Lines setJobCostID(String value) { this.JobCostID = value; return this; } public BigDecimal getFxRate() { return FXRate; } public SH_Lines setFxRate(BigDecimal value) { this.FXRate = value; return this; } public BigDecimal getWeight() { return Weight; } public SH_Lines setWeight(BigDecimal value) { this.Weight = value; return this; } public BigDecimal getVolume() { return Volume; } public SH_Lines setVolume(BigDecimal value) { this.Volume = value; return this; } public BigDecimal getLineTotalExGST() { return LineTotalExGST; } public SH_Lines setLineTotalExGST(BigDecimal value) { this.LineTotalExGST = value; return this; } public BigDecimal getFxLineTotalExGST() { return FXLineTotalExGST; } public SH_Lines setFxLineTotalExGST(BigDecimal value) { this.FXLineTotalExGST = value; return this; } public BigDecimal getLineTotalIncGST() { return LineTotalIncGST; } public SH_Lines setLineTotalIncGST(BigDecimal value) { this.LineTotalIncGST = value; return this; } public BigDecimal getLandedCostTotal() { return LandedCostTotal; } public SH_Lines setLandedCostTotal(BigDecimal value) { this.LandedCostTotal = value; return this; } public String getCurrencyID() { return CurrencyID; } public SH_Lines setCurrencyID(String value) { this.CurrencyID = value; return this; } public String getCreditorID() { return CreditorID; } public SH_Lines setCreditorID(String value) { this.CreditorID = value; return this; } public String getUserField1() { return UserField1; } public SH_Lines setUserField1(String value) { this.UserField1 = value; return this; } public String getUserField2() { return UserField2; } public SH_Lines setUserField2(String value) { this.UserField2 = value; return this; } public String getUserField3() { return UserField3; } public SH_Lines setUserField3(String value) { this.UserField3 = value; return this; } public String getUserField4() { return UserField4; } public SH_Lines setUserField4(String value) { this.UserField4 = value; return this; } public String getUserField5() { return UserField5; } public SH_Lines setUserField5(String value) { this.UserField5 = value; return this; } public String getUserField6() { return UserField6; } public SH_Lines setUserField6(String value) { this.UserField6 = value; return this; } public String getUserField7() { return UserField7; } public SH_Lines setUserField7(String value) { this.UserField7 = value; return this; } public String getUserField8() { return UserField8; } public SH_Lines setUserField8(String value) { this.UserField8 = value; return this; } public String getUserField9() { return UserField9; } public SH_Lines setUserField9(String value) { this.UserField9 = value; return this; } public String getUserField10() { return UserField10; } public SH_Lines setUserField10(String value) { this.UserField10 = value; return this; } public Boolean isPhysicalItem() { return PhysicalItem; } public SH_Lines setPhysicalItem(Boolean value) { this.PhysicalItem = value; return this; } public BigDecimal getFxOrderedCost() { return FXOrderedCost; } public SH_Lines setFxOrderedCost(BigDecimal value) { this.FXOrderedCost = value; return this; } public Integer getDisplayOrder() { return DisplayOrder; } public SH_Lines setDisplayOrder(Integer value) { this.DisplayOrder = value; return this; } public String getInSupplierWarehouseRecID() { return IN_SupplierWarehouse_RecID; } public SH_Lines setInSupplierWarehouseRecID(String value) { this.IN_SupplierWarehouse_RecID = value; return this; } public String getInCreditorRecID() { return IN_Creditor_RecID; } public SH_Lines setInCreditorRecID(String value) { this.IN_Creditor_RecID = value; return this; } public ArrayList getRowHash() { return RowHash; } public SH_Lines setRowHash(ArrayList value) { this.RowHash = value; return this; } public Boolean isUnitChanged() { return UnitChanged; } public SH_Lines setUnitChanged(Boolean value) { this.UnitChanged = value; return this; } public Boolean isFxChanged() { return FXChanged; } public SH_Lines setFxChanged(Boolean value) { this.FXChanged = value; return this; } public Boolean isExChanged() { return ExChanged; } public SH_Lines setExChanged(Boolean value) { this.ExChanged = value; return this; } public Boolean isTaxRateChanged() { return TaxRateChanged; } public SH_Lines setTaxRateChanged(Boolean value) { this.TaxRateChanged = value; return this; } public Boolean isChangeSourceIsFromPurchaseOrderLine() { return ChangeSourceIsFromPurchaseOrderLine; } public SH_Lines setChangeSourceIsFromPurchaseOrderLine(Boolean value) { this.ChangeSourceIsFromPurchaseOrderLine = value; return this; } } public static class IN_BinLocationLookup { @Required() public String INBinLookupID = null; @Required() public Date LastSavedDateTime = null; @References(IN_Logical.class) @Required() public String INLogicalID = null; public String Description = null; public String ShortName = null; public Integer ItemNo = null; public Boolean IsDefault = null; @Required() public ArrayList RowHash = null; public String getInBinLookupID() { return INBinLookupID; } public IN_BinLocationLookup setInBinLookupID(String value) { this.INBinLookupID = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public IN_BinLocationLookup setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public String getInLogicalID() { return INLogicalID; } public IN_BinLocationLookup setInLogicalID(String value) { this.INLogicalID = value; return this; } public String getDescription() { return Description; } public IN_BinLocationLookup setDescription(String value) { this.Description = value; return this; } public String getShortName() { return ShortName; } public IN_BinLocationLookup setShortName(String value) { this.ShortName = value; return this; } public Integer getItemNo() { return ItemNo; } public IN_BinLocationLookup setItemNo(Integer value) { this.ItemNo = value; return this; } public Boolean getIsDefault() { return IsDefault; } public IN_BinLocationLookup setIsDefault(Boolean value) { this.IsDefault = value; return this; } public ArrayList getRowHash() { return RowHash; } public IN_BinLocationLookup setRowHash(ArrayList value) { this.RowHash = value; return this; } } public static class IN_BinLocationLookupCustomFields { @Required() public String RecID = null; @Required() public String SettingName = null; public String SettingDescription = null; public Integer CellType = null; public String FieldParameter = null; @References(SY_Plugin.class) @Required() public UUID SY_Plugin_RecID = null; @Required() public Date LastSavedDateTime = null; public Integer DisplayOrder = null; public String getRecID() { return RecID; } public IN_BinLocationLookupCustomFields setRecID(String value) { this.RecID = value; return this; } public String getSettingName() { return SettingName; } public IN_BinLocationLookupCustomFields setSettingName(String value) { this.SettingName = value; return this; } public String getSettingDescription() { return SettingDescription; } public IN_BinLocationLookupCustomFields setSettingDescription(String value) { this.SettingDescription = value; return this; } public Integer getCellType() { return CellType; } public IN_BinLocationLookupCustomFields setCellType(Integer value) { this.CellType = value; return this; } public String getFieldParameter() { return FieldParameter; } public IN_BinLocationLookupCustomFields setFieldParameter(String value) { this.FieldParameter = value; return this; } public UUID getSyPluginRecID() { return SY_Plugin_RecID; } public IN_BinLocationLookupCustomFields setSyPluginRecID(UUID value) { this.SY_Plugin_RecID = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public IN_BinLocationLookupCustomFields setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Integer getDisplayOrder() { return DisplayOrder; } public IN_BinLocationLookupCustomFields setDisplayOrder(Integer value) { this.DisplayOrder = value; return this; } } public static class IN_BinLocationLookupCustomValues { @Required() public String RecID = null; @References(IN_BinLocationLookup.class) @Required() public String IN_BinLocationLookup_RecID = null; @References(IN_BinLocationLookupCustomFields.class) @Required() public String IN_BinLocationLookupCustomFields_RecID = null; public String Contents = null; @Required() public Date LastSavedDateTime = null; public String getRecID() { return RecID; } public IN_BinLocationLookupCustomValues setRecID(String value) { this.RecID = value; return this; } public String getInBinLocationLookupRecID() { return IN_BinLocationLookup_RecID; } public IN_BinLocationLookupCustomValues setInBinLocationLookupRecID(String value) { this.IN_BinLocationLookup_RecID = value; return this; } public String getInBinLocationLookupCustomFieldsRecID() { return IN_BinLocationLookupCustomFields_RecID; } public IN_BinLocationLookupCustomValues setInBinLocationLookupCustomFieldsRecID(String value) { this.IN_BinLocationLookupCustomFields_RecID = value; return this; } public String getContents() { return Contents; } public IN_BinLocationLookupCustomValues setContents(String value) { this.Contents = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public IN_BinLocationLookupCustomValues setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } } public static class IN_BOQty { @Required() public String InventoryID = null; public BigDecimal Qty = null; public BigDecimal Price = null; public BigDecimal EstBOValue = null; public String getInventoryID() { return InventoryID; } public IN_BOQty setInventoryID(String value) { this.InventoryID = value; return this; } public BigDecimal getQty() { return Qty; } public IN_BOQty setQty(BigDecimal value) { this.Qty = value; return this; } public BigDecimal getPrice() { return Price; } public IN_BOQty setPrice(BigDecimal value) { this.Price = value; return this; } public BigDecimal getEstBOValue() { return EstBOValue; } public IN_BOQty setEstBOValue(BigDecimal value) { this.EstBOValue = value; return this; } } public static class IN_Budget { @Required() public String InventoryBudgetID = null; @References(IN_Main.class) @Required() public String InventoryID = null; @Required() public BigDecimal Quantity1 = null; @Required() public BigDecimal Dollars1 = null; @Required() public BigDecimal Quantity2 = null; @Required() public BigDecimal Dollars2 = null; @Required() public BigDecimal Quantity3 = null; @Required() public BigDecimal Dollars3 = null; @Required() public BigDecimal Quantity4 = null; @Required() public BigDecimal Dollars4 = null; @Required() public BigDecimal Quantity5 = null; @Required() public BigDecimal Dollars5 = null; @Required() public BigDecimal Quantity6 = null; @Required() public BigDecimal Dollars6 = null; @Required() public BigDecimal Quantity7 = null; @Required() public BigDecimal Dollars7 = null; @Required() public BigDecimal Quantity8 = null; @Required() public BigDecimal Dollars8 = null; @Required() public BigDecimal Quantity9 = null; @Required() public BigDecimal Dollars9 = null; @Required() public BigDecimal Quantity10 = null; @Required() public BigDecimal Dollars10 = null; @Required() public BigDecimal Quantity11 = null; @Required() public BigDecimal Dollars11 = null; @Required() public BigDecimal Quantity12 = null; @Required() public BigDecimal Dollars12 = null; @Required() public BigDecimal Quantity13 = null; @Required() public BigDecimal Dollars13 = null; @Required() public BigDecimal Quantity14 = null; @Required() public BigDecimal Dollars14 = null; @Required() public BigDecimal Quantity15 = null; @Required() public BigDecimal Dollars15 = null; @Required() public BigDecimal Quantity16 = null; @Required() public BigDecimal Dollars16 = null; @Required() public BigDecimal Quantity17 = null; @Required() public BigDecimal Dollars17 = null; @Required() public BigDecimal Quantity18 = null; @Required() public BigDecimal Dollars18 = null; @Required() public BigDecimal Quantity19 = null; @Required() public BigDecimal Dollars19 = null; @Required() public BigDecimal Quantity20 = null; @Required() public BigDecimal Dollars20 = null; @Required() public BigDecimal Quantity21 = null; @Required() public BigDecimal Dollars21 = null; @Required() public BigDecimal Quantity22 = null; @Required() public BigDecimal Dollars22 = null; @Required() public BigDecimal Quantity23 = null; @Required() public BigDecimal Dollars23 = null; @Required() public BigDecimal Quantity24 = null; @Required() public BigDecimal Dollars24 = null; @References(IN_Logical.class) @Required() public String IN_LogicalID = null; public String getInventoryBudgetID() { return InventoryBudgetID; } public IN_Budget setInventoryBudgetID(String value) { this.InventoryBudgetID = value; return this; } public String getInventoryID() { return InventoryID; } public IN_Budget setInventoryID(String value) { this.InventoryID = value; return this; } public BigDecimal getQuantity1() { return Quantity1; } public IN_Budget setQuantity1(BigDecimal value) { this.Quantity1 = value; return this; } public BigDecimal getDollars1() { return Dollars1; } public IN_Budget setDollars1(BigDecimal value) { this.Dollars1 = value; return this; } public BigDecimal getQuantity2() { return Quantity2; } public IN_Budget setQuantity2(BigDecimal value) { this.Quantity2 = value; return this; } public BigDecimal getDollars2() { return Dollars2; } public IN_Budget setDollars2(BigDecimal value) { this.Dollars2 = value; return this; } public BigDecimal getQuantity3() { return Quantity3; } public IN_Budget setQuantity3(BigDecimal value) { this.Quantity3 = value; return this; } public BigDecimal getDollars3() { return Dollars3; } public IN_Budget setDollars3(BigDecimal value) { this.Dollars3 = value; return this; } public BigDecimal getQuantity4() { return Quantity4; } public IN_Budget setQuantity4(BigDecimal value) { this.Quantity4 = value; return this; } public BigDecimal getDollars4() { return Dollars4; } public IN_Budget setDollars4(BigDecimal value) { this.Dollars4 = value; return this; } public BigDecimal getQuantity5() { return Quantity5; } public IN_Budget setQuantity5(BigDecimal value) { this.Quantity5 = value; return this; } public BigDecimal getDollars5() { return Dollars5; } public IN_Budget setDollars5(BigDecimal value) { this.Dollars5 = value; return this; } public BigDecimal getQuantity6() { return Quantity6; } public IN_Budget setQuantity6(BigDecimal value) { this.Quantity6 = value; return this; } public BigDecimal getDollars6() { return Dollars6; } public IN_Budget setDollars6(BigDecimal value) { this.Dollars6 = value; return this; } public BigDecimal getQuantity7() { return Quantity7; } public IN_Budget setQuantity7(BigDecimal value) { this.Quantity7 = value; return this; } public BigDecimal getDollars7() { return Dollars7; } public IN_Budget setDollars7(BigDecimal value) { this.Dollars7 = value; return this; } public BigDecimal getQuantity8() { return Quantity8; } public IN_Budget setQuantity8(BigDecimal value) { this.Quantity8 = value; return this; } public BigDecimal getDollars8() { return Dollars8; } public IN_Budget setDollars8(BigDecimal value) { this.Dollars8 = value; return this; } public BigDecimal getQuantity9() { return Quantity9; } public IN_Budget setQuantity9(BigDecimal value) { this.Quantity9 = value; return this; } public BigDecimal getDollars9() { return Dollars9; } public IN_Budget setDollars9(BigDecimal value) { this.Dollars9 = value; return this; } public BigDecimal getQuantity10() { return Quantity10; } public IN_Budget setQuantity10(BigDecimal value) { this.Quantity10 = value; return this; } public BigDecimal getDollars10() { return Dollars10; } public IN_Budget setDollars10(BigDecimal value) { this.Dollars10 = value; return this; } public BigDecimal getQuantity11() { return Quantity11; } public IN_Budget setQuantity11(BigDecimal value) { this.Quantity11 = value; return this; } public BigDecimal getDollars11() { return Dollars11; } public IN_Budget setDollars11(BigDecimal value) { this.Dollars11 = value; return this; } public BigDecimal getQuantity12() { return Quantity12; } public IN_Budget setQuantity12(BigDecimal value) { this.Quantity12 = value; return this; } public BigDecimal getDollars12() { return Dollars12; } public IN_Budget setDollars12(BigDecimal value) { this.Dollars12 = value; return this; } public BigDecimal getQuantity13() { return Quantity13; } public IN_Budget setQuantity13(BigDecimal value) { this.Quantity13 = value; return this; } public BigDecimal getDollars13() { return Dollars13; } public IN_Budget setDollars13(BigDecimal value) { this.Dollars13 = value; return this; } public BigDecimal getQuantity14() { return Quantity14; } public IN_Budget setQuantity14(BigDecimal value) { this.Quantity14 = value; return this; } public BigDecimal getDollars14() { return Dollars14; } public IN_Budget setDollars14(BigDecimal value) { this.Dollars14 = value; return this; } public BigDecimal getQuantity15() { return Quantity15; } public IN_Budget setQuantity15(BigDecimal value) { this.Quantity15 = value; return this; } public BigDecimal getDollars15() { return Dollars15; } public IN_Budget setDollars15(BigDecimal value) { this.Dollars15 = value; return this; } public BigDecimal getQuantity16() { return Quantity16; } public IN_Budget setQuantity16(BigDecimal value) { this.Quantity16 = value; return this; } public BigDecimal getDollars16() { return Dollars16; } public IN_Budget setDollars16(BigDecimal value) { this.Dollars16 = value; return this; } public BigDecimal getQuantity17() { return Quantity17; } public IN_Budget setQuantity17(BigDecimal value) { this.Quantity17 = value; return this; } public BigDecimal getDollars17() { return Dollars17; } public IN_Budget setDollars17(BigDecimal value) { this.Dollars17 = value; return this; } public BigDecimal getQuantity18() { return Quantity18; } public IN_Budget setQuantity18(BigDecimal value) { this.Quantity18 = value; return this; } public BigDecimal getDollars18() { return Dollars18; } public IN_Budget setDollars18(BigDecimal value) { this.Dollars18 = value; return this; } public BigDecimal getQuantity19() { return Quantity19; } public IN_Budget setQuantity19(BigDecimal value) { this.Quantity19 = value; return this; } public BigDecimal getDollars19() { return Dollars19; } public IN_Budget setDollars19(BigDecimal value) { this.Dollars19 = value; return this; } public BigDecimal getQuantity20() { return Quantity20; } public IN_Budget setQuantity20(BigDecimal value) { this.Quantity20 = value; return this; } public BigDecimal getDollars20() { return Dollars20; } public IN_Budget setDollars20(BigDecimal value) { this.Dollars20 = value; return this; } public BigDecimal getQuantity21() { return Quantity21; } public IN_Budget setQuantity21(BigDecimal value) { this.Quantity21 = value; return this; } public BigDecimal getDollars21() { return Dollars21; } public IN_Budget setDollars21(BigDecimal value) { this.Dollars21 = value; return this; } public BigDecimal getQuantity22() { return Quantity22; } public IN_Budget setQuantity22(BigDecimal value) { this.Quantity22 = value; return this; } public BigDecimal getDollars22() { return Dollars22; } public IN_Budget setDollars22(BigDecimal value) { this.Dollars22 = value; return this; } public BigDecimal getQuantity23() { return Quantity23; } public IN_Budget setQuantity23(BigDecimal value) { this.Quantity23 = value; return this; } public BigDecimal getDollars23() { return Dollars23; } public IN_Budget setDollars23(BigDecimal value) { this.Dollars23 = value; return this; } public BigDecimal getQuantity24() { return Quantity24; } public IN_Budget setQuantity24(BigDecimal value) { this.Quantity24 = value; return this; } public BigDecimal getDollars24() { return Dollars24; } public IN_Budget setDollars24(BigDecimal value) { this.Dollars24 = value; return this; } public String getInLogicalID() { return IN_LogicalID; } public IN_Budget setInLogicalID(String value) { this.IN_LogicalID = value; return this; } } public static class IN_Categories { @Required() public Integer CategoryNo = null; @Required() public String CategoryID = null; public String Description = null; @Required() public Boolean DefaultCategory = null; public Date LastSavedDateTime = null; public ArrayList Picture = null; public Integer getCategoryNo() { return CategoryNo; } public IN_Categories setCategoryNo(Integer value) { this.CategoryNo = value; return this; } public String getCategoryID() { return CategoryID; } public IN_Categories setCategoryID(String value) { this.CategoryID = value; return this; } public String getDescription() { return Description; } public IN_Categories setDescription(String value) { this.Description = value; return this; } public Boolean isDefaultCategory() { return DefaultCategory; } public IN_Categories setDefaultCategory(Boolean value) { this.DefaultCategory = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public IN_Categories setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public ArrayList getPicture() { return Picture; } public IN_Categories setPicture(ArrayList value) { this.Picture = value; return this; } } public static class IN_Category1 { @Required() public String Category1ID = null; public String Description = null; @Required() public Boolean DefaultCategory = null; public Date LastSavedDateTime = null; public ArrayList Picture = null; public String getCategory1ID() { return Category1ID; } public IN_Category1 setCategory1ID(String value) { this.Category1ID = value; return this; } public String getDescription() { return Description; } public IN_Category1 setDescription(String value) { this.Description = value; return this; } public Boolean isDefaultCategory() { return DefaultCategory; } public IN_Category1 setDefaultCategory(Boolean value) { this.DefaultCategory = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public IN_Category1 setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public ArrayList getPicture() { return Picture; } public IN_Category1 setPicture(ArrayList value) { this.Picture = value; return this; } } public static class IN_Category1CustomFields { @Required() public String RecID = null; @Required() public String SettingName = null; public String SettingDescription = null; public Integer CellType = null; public String FieldParameter = null; @References(SY_Plugin.class) @Required() public UUID SY_Plugin_RecID = null; @Required() public Date LastSavedDateTime = null; public Integer DisplayOrder = null; public String getRecID() { return RecID; } public IN_Category1CustomFields setRecID(String value) { this.RecID = value; return this; } public String getSettingName() { return SettingName; } public IN_Category1CustomFields setSettingName(String value) { this.SettingName = value; return this; } public String getSettingDescription() { return SettingDescription; } public IN_Category1CustomFields setSettingDescription(String value) { this.SettingDescription = value; return this; } public Integer getCellType() { return CellType; } public IN_Category1CustomFields setCellType(Integer value) { this.CellType = value; return this; } public String getFieldParameter() { return FieldParameter; } public IN_Category1CustomFields setFieldParameter(String value) { this.FieldParameter = value; return this; } public UUID getSyPluginRecID() { return SY_Plugin_RecID; } public IN_Category1CustomFields setSyPluginRecID(UUID value) { this.SY_Plugin_RecID = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public IN_Category1CustomFields setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Integer getDisplayOrder() { return DisplayOrder; } public IN_Category1CustomFields setDisplayOrder(Integer value) { this.DisplayOrder = value; return this; } } public static class IN_Category1CustomValues { @Required() public String RecID = null; @References(IN_Category1.class) @Required() public String IN_Category1_RecID = null; @References(IN_Category1CustomFields.class) @Required() public String IN_Category1CustomFields_RecID = null; public String Contents = null; @Required() public Date LastSavedDateTime = null; public String getRecID() { return RecID; } public IN_Category1CustomValues setRecID(String value) { this.RecID = value; return this; } public String getInCategory1RecID() { return IN_Category1_RecID; } public IN_Category1CustomValues setInCategory1RecID(String value) { this.IN_Category1_RecID = value; return this; } public String getInCategory1CustomFieldsRecID() { return IN_Category1CustomFields_RecID; } public IN_Category1CustomValues setInCategory1CustomFieldsRecID(String value) { this.IN_Category1CustomFields_RecID = value; return this; } public String getContents() { return Contents; } public IN_Category1CustomValues setContents(String value) { this.Contents = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public IN_Category1CustomValues setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } } public static class IN_Category2 { @Required() public String Category2ID = null; public String Description = null; @Required() public Boolean DefaultCategory = null; public Date LastSavedDateTime = null; public ArrayList Picture = null; public String getCategory2ID() { return Category2ID; } public IN_Category2 setCategory2ID(String value) { this.Category2ID = value; return this; } public String getDescription() { return Description; } public IN_Category2 setDescription(String value) { this.Description = value; return this; } public Boolean isDefaultCategory() { return DefaultCategory; } public IN_Category2 setDefaultCategory(Boolean value) { this.DefaultCategory = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public IN_Category2 setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public ArrayList getPicture() { return Picture; } public IN_Category2 setPicture(ArrayList value) { this.Picture = value; return this; } } public static class IN_Category2CustomFields { @Required() public String RecID = null; @Required() public String SettingName = null; public String SettingDescription = null; public Integer CellType = null; public String FieldParameter = null; @References(SY_Plugin.class) @Required() public UUID SY_Plugin_RecID = null; @Required() public Date LastSavedDateTime = null; public Integer DisplayOrder = null; public String getRecID() { return RecID; } public IN_Category2CustomFields setRecID(String value) { this.RecID = value; return this; } public String getSettingName() { return SettingName; } public IN_Category2CustomFields setSettingName(String value) { this.SettingName = value; return this; } public String getSettingDescription() { return SettingDescription; } public IN_Category2CustomFields setSettingDescription(String value) { this.SettingDescription = value; return this; } public Integer getCellType() { return CellType; } public IN_Category2CustomFields setCellType(Integer value) { this.CellType = value; return this; } public String getFieldParameter() { return FieldParameter; } public IN_Category2CustomFields setFieldParameter(String value) { this.FieldParameter = value; return this; } public UUID getSyPluginRecID() { return SY_Plugin_RecID; } public IN_Category2CustomFields setSyPluginRecID(UUID value) { this.SY_Plugin_RecID = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public IN_Category2CustomFields setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Integer getDisplayOrder() { return DisplayOrder; } public IN_Category2CustomFields setDisplayOrder(Integer value) { this.DisplayOrder = value; return this; } } public static class IN_Category2CustomValues { @Required() public String RecID = null; @References(IN_Category2.class) @Required() public String IN_Category2_RecID = null; @References(IN_Category2CustomFields.class) @Required() public String IN_Category2CustomFields_RecID = null; public String Contents = null; @Required() public Date LastSavedDateTime = null; public String getRecID() { return RecID; } public IN_Category2CustomValues setRecID(String value) { this.RecID = value; return this; } public String getInCategory2RecID() { return IN_Category2_RecID; } public IN_Category2CustomValues setInCategory2RecID(String value) { this.IN_Category2_RecID = value; return this; } public String getInCategory2CustomFieldsRecID() { return IN_Category2CustomFields_RecID; } public IN_Category2CustomValues setInCategory2CustomFieldsRecID(String value) { this.IN_Category2CustomFields_RecID = value; return this; } public String getContents() { return Contents; } public IN_Category2CustomValues setContents(String value) { this.Contents = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public IN_Category2CustomValues setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } } public static class IN_Category3 { @Required() public String Category3ID = null; public String Description = null; @Required() public Boolean DefaultCategory = null; public Date LastSavedDateTime = null; public ArrayList Picture = null; public String getCategory3ID() { return Category3ID; } public IN_Category3 setCategory3ID(String value) { this.Category3ID = value; return this; } public String getDescription() { return Description; } public IN_Category3 setDescription(String value) { this.Description = value; return this; } public Boolean isDefaultCategory() { return DefaultCategory; } public IN_Category3 setDefaultCategory(Boolean value) { this.DefaultCategory = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public IN_Category3 setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public ArrayList getPicture() { return Picture; } public IN_Category3 setPicture(ArrayList value) { this.Picture = value; return this; } } public static class IN_Category3CustomFields { @Required() public String RecID = null; @Required() public String SettingName = null; public String SettingDescription = null; public Integer CellType = null; public String FieldParameter = null; @References(SY_Plugin.class) @Required() public UUID SY_Plugin_RecID = null; @Required() public Date LastSavedDateTime = null; public Integer DisplayOrder = null; public String getRecID() { return RecID; } public IN_Category3CustomFields setRecID(String value) { this.RecID = value; return this; } public String getSettingName() { return SettingName; } public IN_Category3CustomFields setSettingName(String value) { this.SettingName = value; return this; } public String getSettingDescription() { return SettingDescription; } public IN_Category3CustomFields setSettingDescription(String value) { this.SettingDescription = value; return this; } public Integer getCellType() { return CellType; } public IN_Category3CustomFields setCellType(Integer value) { this.CellType = value; return this; } public String getFieldParameter() { return FieldParameter; } public IN_Category3CustomFields setFieldParameter(String value) { this.FieldParameter = value; return this; } public UUID getSyPluginRecID() { return SY_Plugin_RecID; } public IN_Category3CustomFields setSyPluginRecID(UUID value) { this.SY_Plugin_RecID = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public IN_Category3CustomFields setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Integer getDisplayOrder() { return DisplayOrder; } public IN_Category3CustomFields setDisplayOrder(Integer value) { this.DisplayOrder = value; return this; } } public static class IN_Category3CustomValues { @Required() public String RecID = null; @References(IN_Category3.class) @Required() public String IN_Category3_RecID = null; @References(IN_Category3CustomFields.class) @Required() public String IN_Category3CustomFields_RecID = null; public String Contents = null; @Required() public Date LastSavedDateTime = null; public String getRecID() { return RecID; } public IN_Category3CustomValues setRecID(String value) { this.RecID = value; return this; } public String getInCategory3RecID() { return IN_Category3_RecID; } public IN_Category3CustomValues setInCategory3RecID(String value) { this.IN_Category3_RecID = value; return this; } public String getInCategory3CustomFieldsRecID() { return IN_Category3CustomFields_RecID; } public IN_Category3CustomValues setInCategory3CustomFieldsRecID(String value) { this.IN_Category3CustomFields_RecID = value; return this; } public String getContents() { return Contents; } public IN_Category3CustomValues setContents(String value) { this.Contents = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public IN_Category3CustomValues setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } } public static class IN_Category4 { @Required() public String Category4ID = null; public String Description = null; @Required() public Boolean DefaultCategory = null; public Date LastSavedDateTime = null; public ArrayList Picture = null; public String getCategory4ID() { return Category4ID; } public IN_Category4 setCategory4ID(String value) { this.Category4ID = value; return this; } public String getDescription() { return Description; } public IN_Category4 setDescription(String value) { this.Description = value; return this; } public Boolean isDefaultCategory() { return DefaultCategory; } public IN_Category4 setDefaultCategory(Boolean value) { this.DefaultCategory = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public IN_Category4 setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public ArrayList getPicture() { return Picture; } public IN_Category4 setPicture(ArrayList value) { this.Picture = value; return this; } } public static class IN_Category4CustomFields { @Required() public String RecID = null; @Required() public String SettingName = null; public String SettingDescription = null; public Integer CellType = null; public String FieldParameter = null; @References(SY_Plugin.class) @Required() public UUID SY_Plugin_RecID = null; @Required() public Date LastSavedDateTime = null; public Integer DisplayOrder = null; public String getRecID() { return RecID; } public IN_Category4CustomFields setRecID(String value) { this.RecID = value; return this; } public String getSettingName() { return SettingName; } public IN_Category4CustomFields setSettingName(String value) { this.SettingName = value; return this; } public String getSettingDescription() { return SettingDescription; } public IN_Category4CustomFields setSettingDescription(String value) { this.SettingDescription = value; return this; } public Integer getCellType() { return CellType; } public IN_Category4CustomFields setCellType(Integer value) { this.CellType = value; return this; } public String getFieldParameter() { return FieldParameter; } public IN_Category4CustomFields setFieldParameter(String value) { this.FieldParameter = value; return this; } public UUID getSyPluginRecID() { return SY_Plugin_RecID; } public IN_Category4CustomFields setSyPluginRecID(UUID value) { this.SY_Plugin_RecID = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public IN_Category4CustomFields setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Integer getDisplayOrder() { return DisplayOrder; } public IN_Category4CustomFields setDisplayOrder(Integer value) { this.DisplayOrder = value; return this; } } public static class IN_Category4CustomValues { @Required() public String RecID = null; @References(IN_Category4.class) @Required() public String IN_Category4_RecID = null; @References(IN_Category4CustomFields.class) @Required() public String IN_Category4CustomFields_RecID = null; public String Contents = null; @Required() public Date LastSavedDateTime = null; public String getRecID() { return RecID; } public IN_Category4CustomValues setRecID(String value) { this.RecID = value; return this; } public String getInCategory4RecID() { return IN_Category4_RecID; } public IN_Category4CustomValues setInCategory4RecID(String value) { this.IN_Category4_RecID = value; return this; } public String getInCategory4CustomFieldsRecID() { return IN_Category4CustomFields_RecID; } public IN_Category4CustomValues setInCategory4CustomFieldsRecID(String value) { this.IN_Category4CustomFields_RecID = value; return this; } public String getContents() { return Contents; } public IN_Category4CustomValues setContents(String value) { this.Contents = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public IN_Category4CustomValues setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } } public static class IN_Category5 { @Required() public String Category5ID = null; public String Description = null; @Required() public Boolean DefaultCategory = null; public Date LastSavedDateTime = null; public ArrayList Picture = null; public String getCategory5ID() { return Category5ID; } public IN_Category5 setCategory5ID(String value) { this.Category5ID = value; return this; } public String getDescription() { return Description; } public IN_Category5 setDescription(String value) { this.Description = value; return this; } public Boolean isDefaultCategory() { return DefaultCategory; } public IN_Category5 setDefaultCategory(Boolean value) { this.DefaultCategory = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public IN_Category5 setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public ArrayList getPicture() { return Picture; } public IN_Category5 setPicture(ArrayList value) { this.Picture = value; return this; } } public static class IN_Category5CustomFields { @Required() public String RecID = null; @Required() public String SettingName = null; public String SettingDescription = null; public Integer CellType = null; public String FieldParameter = null; @References(SY_Plugin.class) @Required() public UUID SY_Plugin_RecID = null; @Required() public Date LastSavedDateTime = null; public Integer DisplayOrder = null; public String getRecID() { return RecID; } public IN_Category5CustomFields setRecID(String value) { this.RecID = value; return this; } public String getSettingName() { return SettingName; } public IN_Category5CustomFields setSettingName(String value) { this.SettingName = value; return this; } public String getSettingDescription() { return SettingDescription; } public IN_Category5CustomFields setSettingDescription(String value) { this.SettingDescription = value; return this; } public Integer getCellType() { return CellType; } public IN_Category5CustomFields setCellType(Integer value) { this.CellType = value; return this; } public String getFieldParameter() { return FieldParameter; } public IN_Category5CustomFields setFieldParameter(String value) { this.FieldParameter = value; return this; } public UUID getSyPluginRecID() { return SY_Plugin_RecID; } public IN_Category5CustomFields setSyPluginRecID(UUID value) { this.SY_Plugin_RecID = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public IN_Category5CustomFields setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Integer getDisplayOrder() { return DisplayOrder; } public IN_Category5CustomFields setDisplayOrder(Integer value) { this.DisplayOrder = value; return this; } } public static class IN_Category5CustomValues { @Required() public String RecID = null; @References(IN_Category5.class) @Required() public String IN_Category5_RecID = null; @References(IN_Category5CustomFields.class) @Required() public String IN_Category5CustomFields_RecID = null; public String Contents = null; @Required() public Date LastSavedDateTime = null; public String getRecID() { return RecID; } public IN_Category5CustomValues setRecID(String value) { this.RecID = value; return this; } public String getInCategory5RecID() { return IN_Category5_RecID; } public IN_Category5CustomValues setInCategory5RecID(String value) { this.IN_Category5_RecID = value; return this; } public String getInCategory5CustomFieldsRecID() { return IN_Category5CustomFields_RecID; } public IN_Category5CustomValues setInCategory5CustomFieldsRecID(String value) { this.IN_Category5CustomFields_RecID = value; return this; } public String getContents() { return Contents; } public IN_Category5CustomValues setContents(String value) { this.Contents = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public IN_Category5CustomValues setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } } public static class IN_Class { public String Class = null; public String getClass() { return Class; } public IN_Class setClass(String value) { this.Class = value; return this; } } public static class IN_Classification { @Required() public String InventoryClassificationID = null; public String Description = null; public Date LastSavedDateTime = null; @References(GL_Ledger.class) public String LedgerInvValue = null; @References(GL_Ledger.class) public String LedgerMovement_COG = null; @References(GL_Ledger.class) public String LedgerExpAsset = null; @References(GL_Ledger.class) public String LedgerExpLiab = null; @References(GL_Ledger.class) public String LedgerDelAsset = null; @References(GL_Ledger.class) public String LedgerDelLiab = null; @References(GL_Ledger.class) public String LedgerAssignedValue = null; @References(GL_Ledger.class) public String LedgerCogVariance = null; @References(GL_Ledger.class) public String LedgerInvSales = null; @References(GL_Ledger.class) public String LedgerAccumulator = null; @References(GL_Ledger.class) public String LedgerPurchases = null; @References(GL_Ledger.class) public String LedgerShipComplete = null; @References(GL_Ledger.class) public String LedgerWriteOn = null; @References(GL_Ledger.class) public String LedgerWriteOff = null; @References(GL_Ledger.class) public String LedgerCostPriceAdj = null; public String GSTInwardsID = null; public String GSTOutwardsID = null; public String GSTAdjustmentsINID = null; public String GSTAdjustmentsOUTID = null; @Required() public Boolean WebEnabled = null; public Boolean DefaultClassification = null; public String PricingGroupID = null; public String getInventoryClassificationID() { return InventoryClassificationID; } public IN_Classification setInventoryClassificationID(String value) { this.InventoryClassificationID = value; return this; } public String getDescription() { return Description; } public IN_Classification setDescription(String value) { this.Description = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public IN_Classification setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public String getLedgerInvValue() { return LedgerInvValue; } public IN_Classification setLedgerInvValue(String value) { this.LedgerInvValue = value; return this; } public String getLedgerMovementCog() { return LedgerMovement_COG; } public IN_Classification setLedgerMovementCog(String value) { this.LedgerMovement_COG = value; return this; } public String getLedgerExpAsset() { return LedgerExpAsset; } public IN_Classification setLedgerExpAsset(String value) { this.LedgerExpAsset = value; return this; } public String getLedgerExpLiab() { return LedgerExpLiab; } public IN_Classification setLedgerExpLiab(String value) { this.LedgerExpLiab = value; return this; } public String getLedgerDelAsset() { return LedgerDelAsset; } public IN_Classification setLedgerDelAsset(String value) { this.LedgerDelAsset = value; return this; } public String getLedgerDelLiab() { return LedgerDelLiab; } public IN_Classification setLedgerDelLiab(String value) { this.LedgerDelLiab = value; return this; } public String getLedgerAssignedValue() { return LedgerAssignedValue; } public IN_Classification setLedgerAssignedValue(String value) { this.LedgerAssignedValue = value; return this; } public String getLedgerCogVariance() { return LedgerCogVariance; } public IN_Classification setLedgerCogVariance(String value) { this.LedgerCogVariance = value; return this; } public String getLedgerInvSales() { return LedgerInvSales; } public IN_Classification setLedgerInvSales(String value) { this.LedgerInvSales = value; return this; } public String getLedgerAccumulator() { return LedgerAccumulator; } public IN_Classification setLedgerAccumulator(String value) { this.LedgerAccumulator = value; return this; } public String getLedgerPurchases() { return LedgerPurchases; } public IN_Classification setLedgerPurchases(String value) { this.LedgerPurchases = value; return this; } public String getLedgerShipComplete() { return LedgerShipComplete; } public IN_Classification setLedgerShipComplete(String value) { this.LedgerShipComplete = value; return this; } public String getLedgerWriteOn() { return LedgerWriteOn; } public IN_Classification setLedgerWriteOn(String value) { this.LedgerWriteOn = value; return this; } public String getLedgerWriteOff() { return LedgerWriteOff; } public IN_Classification setLedgerWriteOff(String value) { this.LedgerWriteOff = value; return this; } public String getLedgerCostPriceAdj() { return LedgerCostPriceAdj; } public IN_Classification setLedgerCostPriceAdj(String value) { this.LedgerCostPriceAdj = value; return this; } public String getGstInwardsID() { return GSTInwardsID; } public IN_Classification setGstInwardsID(String value) { this.GSTInwardsID = value; return this; } public String getGstOutwardsID() { return GSTOutwardsID; } public IN_Classification setGstOutwardsID(String value) { this.GSTOutwardsID = value; return this; } public String getGstAdjustmentsINID() { return GSTAdjustmentsINID; } public IN_Classification setGstAdjustmentsINID(String value) { this.GSTAdjustmentsINID = value; return this; } public String getGstAdjustmentsOUTID() { return GSTAdjustmentsOUTID; } public IN_Classification setGstAdjustmentsOUTID(String value) { this.GSTAdjustmentsOUTID = value; return this; } public Boolean isWebEnabled() { return WebEnabled; } public IN_Classification setWebEnabled(Boolean value) { this.WebEnabled = value; return this; } public Boolean isDefaultClassification() { return DefaultClassification; } public IN_Classification setDefaultClassification(Boolean value) { this.DefaultClassification = value; return this; } public String getPricingGroupID() { return PricingGroupID; } public IN_Classification setPricingGroupID(String value) { this.PricingGroupID = value; return this; } } public static class IN_ClassificationCustomSetting { @Required() public String SettingID = null; @Required() public Date LastSavedDateTime = null; public String SettingDescription = null; public String SettingName = null; public Integer DisplayOrder = null; public Short CellType = null; public String ScriptFormatCell = null; public String ScriptButtonClicked = null; public String ScriptReadData = null; public String GridHandlerCode = null; @References(SY_Plugin.class) @Required() public UUID SY_Plugin_RecID = null; public String getSettingID() { return SettingID; } public IN_ClassificationCustomSetting setSettingID(String value) { this.SettingID = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public IN_ClassificationCustomSetting setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public String getSettingDescription() { return SettingDescription; } public IN_ClassificationCustomSetting setSettingDescription(String value) { this.SettingDescription = value; return this; } public String getSettingName() { return SettingName; } public IN_ClassificationCustomSetting setSettingName(String value) { this.SettingName = value; return this; } public Integer getDisplayOrder() { return DisplayOrder; } public IN_ClassificationCustomSetting setDisplayOrder(Integer value) { this.DisplayOrder = value; return this; } public Short getCellType() { return CellType; } public IN_ClassificationCustomSetting setCellType(Short value) { this.CellType = value; return this; } public String getScriptFormatCell() { return ScriptFormatCell; } public IN_ClassificationCustomSetting setScriptFormatCell(String value) { this.ScriptFormatCell = value; return this; } public String getScriptButtonClicked() { return ScriptButtonClicked; } public IN_ClassificationCustomSetting setScriptButtonClicked(String value) { this.ScriptButtonClicked = value; return this; } public String getScriptReadData() { return ScriptReadData; } public IN_ClassificationCustomSetting setScriptReadData(String value) { this.ScriptReadData = value; return this; } public String getGridHandlerCode() { return GridHandlerCode; } public IN_ClassificationCustomSetting setGridHandlerCode(String value) { this.GridHandlerCode = value; return this; } public UUID getSyPluginRecID() { return SY_Plugin_RecID; } public IN_ClassificationCustomSetting setSyPluginRecID(UUID value) { this.SY_Plugin_RecID = value; return this; } } public static class IN_ClassificationCustomValues { @Required() public String SettingValueID = null; @References(IN_ClassificationCustomSetting.class) public String SettingID = null; @References(IN_Classification.class) @Required() public String IN_Classification_RecID = null; public String Contents = null; @Required() public Date LastSavedDateTime = null; public String getSettingValueID() { return SettingValueID; } public IN_ClassificationCustomValues setSettingValueID(String value) { this.SettingValueID = value; return this; } public String getSettingID() { return SettingID; } public IN_ClassificationCustomValues setSettingID(String value) { this.SettingID = value; return this; } public String getInClassificationRecID() { return IN_Classification_RecID; } public IN_ClassificationCustomValues setInClassificationRecID(String value) { this.IN_Classification_RecID = value; return this; } public String getContents() { return Contents; } public IN_ClassificationCustomValues setContents(String value) { this.Contents = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public IN_ClassificationCustomValues setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } } public static class IN_CollectionOfGroups { @Required() public String InventoryGroupCollectionID = null; public Date LastSavedDateTime = null; @Required() public String Description = null; @Required() public Boolean IsDefault = null; public String getInventoryGroupCollectionID() { return InventoryGroupCollectionID; } public IN_CollectionOfGroups setInventoryGroupCollectionID(String value) { this.InventoryGroupCollectionID = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public IN_CollectionOfGroups setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public String getDescription() { return Description; } public IN_CollectionOfGroups setDescription(String value) { this.Description = value; return this; } public Boolean getIsDefault() { return IsDefault; } public IN_CollectionOfGroups setIsDefault(Boolean value) { this.IsDefault = value; return this; } } public static class IN_Colours { @Required() public String RecID = null; public String Description = null; @Required() public String ColourCode = null; @Required() public String StyleID = null; public Integer DisplayOrder = null; public String getRecID() { return RecID; } public IN_Colours setRecID(String value) { this.RecID = value; return this; } public String getDescription() { return Description; } public IN_Colours setDescription(String value) { this.Description = value; return this; } public String getColourCode() { return ColourCode; } public IN_Colours setColourCode(String value) { this.ColourCode = value; return this; } public String getStyleID() { return StyleID; } public IN_Colours setStyleID(String value) { this.StyleID = value; return this; } public Integer getDisplayOrder() { return DisplayOrder; } public IN_Colours setDisplayOrder(Integer value) { this.DisplayOrder = value; return this; } } public static class IN_Components { @Required() public String INComponentRecID = null; @Required() public String InventoryID = null; @Required() public String ComponentID = null; public BigDecimal Quantity = null; @Required() public Integer LineNumber = null; public String getInComponentRecID() { return INComponentRecID; } public IN_Components setInComponentRecID(String value) { this.INComponentRecID = value; return this; } public String getInventoryID() { return InventoryID; } public IN_Components setInventoryID(String value) { this.InventoryID = value; return this; } public String getComponentID() { return ComponentID; } public IN_Components setComponentID(String value) { this.ComponentID = value; return this; } public BigDecimal getQuantity() { return Quantity; } public IN_Components setQuantity(BigDecimal value) { this.Quantity = value; return this; } public Integer getLineNumber() { return LineNumber; } public IN_Components setLineNumber(Integer value) { this.LineNumber = value; return this; } } public static class IN_CostChange { @Required() public String RecID = null; @Required() public Date LastSavedDateTime = null; @Required() public String ChangeNo = null; public String Notes = null; @References(HR_Staff.class) @Required() public String LastSaved_HR_Staff_RecID = null; @Required() public ArrayList RowHash = null; @Required() public Short Status = null; public String getRecID() { return RecID; } public IN_CostChange setRecID(String value) { this.RecID = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public IN_CostChange setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public String getChangeNo() { return ChangeNo; } public IN_CostChange setChangeNo(String value) { this.ChangeNo = value; return this; } public String getNotes() { return Notes; } public IN_CostChange setNotes(String value) { this.Notes = value; return this; } public String getLastSavedHrStaffRecID() { return LastSaved_HR_Staff_RecID; } public IN_CostChange setLastSavedHrStaffRecID(String value) { this.LastSaved_HR_Staff_RecID = value; return this; } public ArrayList getRowHash() { return RowHash; } public IN_CostChange setRowHash(ArrayList value) { this.RowHash = value; return this; } public Short getStatus() { return Status; } public IN_CostChange setStatus(Short value) { this.Status = value; return this; } } public static class IN_CostChangeLines { @Required() public String RecID = null; @References(IN_CostChange.class) @Required() public String IN_CostChange_RecID = null; @References(IN_SOH.class) @Required() public String Old_IN_SOH_RecID = null; @Required() public BigDecimal NewCost = null; public String Reference = null; @Required() public Integer ItemNo = null; @Required() public ArrayList RowHash = null; public String New_IN_SOH_RecID = null; public String getRecID() { return RecID; } public IN_CostChangeLines setRecID(String value) { this.RecID = value; return this; } public String getInCostChangeRecID() { return IN_CostChange_RecID; } public IN_CostChangeLines setInCostChangeRecID(String value) { this.IN_CostChange_RecID = value; return this; } public String getOldInSohRecID() { return Old_IN_SOH_RecID; } public IN_CostChangeLines setOldInSohRecID(String value) { this.Old_IN_SOH_RecID = value; return this; } public BigDecimal getNewCost() { return NewCost; } public IN_CostChangeLines setNewCost(BigDecimal value) { this.NewCost = value; return this; } public String getReference() { return Reference; } public IN_CostChangeLines setReference(String value) { this.Reference = value; return this; } public Integer getItemNo() { return ItemNo; } public IN_CostChangeLines setItemNo(Integer value) { this.ItemNo = value; return this; } public ArrayList getRowHash() { return RowHash; } public IN_CostChangeLines setRowHash(ArrayList value) { this.RowHash = value; return this; } public String getNewInSohRecID() { return New_IN_SOH_RecID; } public IN_CostChangeLines setNewInSohRecID(String value) { this.New_IN_SOH_RecID = value; return this; } } public static class IN_Creditor { @Required() public String RecID = null; @References(IN_Main.class) @Required() public String InventoryID = null; @References(CR_Main.class) @Required() public String CreditorID = null; public String PartNo = null; public String SupplierUPC = null; public BigDecimal SpareFloat1 = null; public BigDecimal SpareFloat2 = null; public BigDecimal SpareFloat3 = null; public String SpareString1 = null; public String SpareString2 = null; public String SpareString3 = null; public Date SpareDate1 = null; public Date SpareDate2 = null; public Date SpareDate3 = null; public Boolean DefaultSupplier = null; @References(IN_Region.class) @Required() public String IN_Region_RecID = null; @Required() public Integer ItemNo = null; public String getRecID() { return RecID; } public IN_Creditor setRecID(String value) { this.RecID = value; return this; } public String getInventoryID() { return InventoryID; } public IN_Creditor setInventoryID(String value) { this.InventoryID = value; return this; } public String getCreditorID() { return CreditorID; } public IN_Creditor setCreditorID(String value) { this.CreditorID = value; return this; } public String getPartNo() { return PartNo; } public IN_Creditor setPartNo(String value) { this.PartNo = value; return this; } public String getSupplierUPC() { return SupplierUPC; } public IN_Creditor setSupplierUPC(String value) { this.SupplierUPC = value; return this; } public BigDecimal getSpareFloat1() { return SpareFloat1; } public IN_Creditor setSpareFloat1(BigDecimal value) { this.SpareFloat1 = value; return this; } public BigDecimal getSpareFloat2() { return SpareFloat2; } public IN_Creditor setSpareFloat2(BigDecimal value) { this.SpareFloat2 = value; return this; } public BigDecimal getSpareFloat3() { return SpareFloat3; } public IN_Creditor setSpareFloat3(BigDecimal value) { this.SpareFloat3 = value; return this; } public String getSpareString1() { return SpareString1; } public IN_Creditor setSpareString1(String value) { this.SpareString1 = value; return this; } public String getSpareString2() { return SpareString2; } public IN_Creditor setSpareString2(String value) { this.SpareString2 = value; return this; } public String getSpareString3() { return SpareString3; } public IN_Creditor setSpareString3(String value) { this.SpareString3 = value; return this; } public Date getSpareDate1() { return SpareDate1; } public IN_Creditor setSpareDate1(Date value) { this.SpareDate1 = value; return this; } public Date getSpareDate2() { return SpareDate2; } public IN_Creditor setSpareDate2(Date value) { this.SpareDate2 = value; return this; } public Date getSpareDate3() { return SpareDate3; } public IN_Creditor setSpareDate3(Date value) { this.SpareDate3 = value; return this; } public Boolean isDefaultSupplier() { return DefaultSupplier; } public IN_Creditor setDefaultSupplier(Boolean value) { this.DefaultSupplier = value; return this; } public String getInRegionRecID() { return IN_Region_RecID; } public IN_Creditor setInRegionRecID(String value) { this.IN_Region_RecID = value; return this; } public Integer getItemNo() { return ItemNo; } public IN_Creditor setItemNo(Integer value) { this.ItemNo = value; return this; } } public static class IN_Creditor_QuantityPriceBreak { @Required() public UUID RecID = null; @References(IN_Creditor.class) @Required() public String IN_Creditor_RecID = null; @Required() public String InventoryID = null; @Required() public ArrayList RowHash = null; @Required() public BigDecimal QuantityBreak = null; @Required() public BigDecimal Price = null; public UUID getRecID() { return RecID; } public IN_Creditor_QuantityPriceBreak setRecID(UUID value) { this.RecID = value; return this; } public String getInCreditorRecID() { return IN_Creditor_RecID; } public IN_Creditor_QuantityPriceBreak setInCreditorRecID(String value) { this.IN_Creditor_RecID = value; return this; } public String getInventoryID() { return InventoryID; } public IN_Creditor_QuantityPriceBreak setInventoryID(String value) { this.InventoryID = value; return this; } public ArrayList getRowHash() { return RowHash; } public IN_Creditor_QuantityPriceBreak setRowHash(ArrayList value) { this.RowHash = value; return this; } public BigDecimal getQuantityBreak() { return QuantityBreak; } public IN_Creditor_QuantityPriceBreak setQuantityBreak(BigDecimal value) { this.QuantityBreak = value; return this; } public BigDecimal getPrice() { return Price; } public IN_Creditor_QuantityPriceBreak setPrice(BigDecimal value) { this.Price = value; return this; } } public static class IN_CreditorCustomFields { @Required() public String FieldID = null; @Required() public String SettingName = null; public String SettingDescription = null; public Integer CellType = null; public String FieldParameter = null; @References(SY_Plugin.class) @Required() public UUID SY_Plugin_RecID = null; @Required() public Date LastSavedDateTime = null; public Integer DisplayOrder = null; public String getFieldID() { return FieldID; } public IN_CreditorCustomFields setFieldID(String value) { this.FieldID = value; return this; } public String getSettingName() { return SettingName; } public IN_CreditorCustomFields setSettingName(String value) { this.SettingName = value; return this; } public String getSettingDescription() { return SettingDescription; } public IN_CreditorCustomFields setSettingDescription(String value) { this.SettingDescription = value; return this; } public Integer getCellType() { return CellType; } public IN_CreditorCustomFields setCellType(Integer value) { this.CellType = value; return this; } public String getFieldParameter() { return FieldParameter; } public IN_CreditorCustomFields setFieldParameter(String value) { this.FieldParameter = value; return this; } public UUID getSyPluginRecID() { return SY_Plugin_RecID; } public IN_CreditorCustomFields setSyPluginRecID(UUID value) { this.SY_Plugin_RecID = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public IN_CreditorCustomFields setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Integer getDisplayOrder() { return DisplayOrder; } public IN_CreditorCustomFields setDisplayOrder(Integer value) { this.DisplayOrder = value; return this; } } public static class IN_CreditorCustomValues { @Required() public String RecID = null; @References(IN_Creditor.class) public String InvSuppID = null; @References(IN_CreditorCustomFields.class) @Required() public String FieldID = null; public String Contents = null; @Required() public Date LastSavedDateTime = null; public String getRecID() { return RecID; } public IN_CreditorCustomValues setRecID(String value) { this.RecID = value; return this; } public String getInvSuppID() { return InvSuppID; } public IN_CreditorCustomValues setInvSuppID(String value) { this.InvSuppID = value; return this; } public String getFieldID() { return FieldID; } public IN_CreditorCustomValues setFieldID(String value) { this.FieldID = value; return this; } public String getContents() { return Contents; } public IN_CreditorCustomValues setContents(String value) { this.Contents = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public IN_CreditorCustomValues setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } } public static class IN_CustomSetting { @Required() public String SettingID = null; @Required() public Date LastSavedDateTime = null; public String SettingDescription = null; @Required() public String SettingName = null; @Required() public BigDecimal DisplayOrder = null; @Required() public Short CellType = null; public String ScriptFormatCell = null; public String ScriptButtonClicked = null; public String ScriptReadData = null; @References(SY_Plugin.class) @Required() public UUID SY_Plugin_RecID = null; public String getSettingID() { return SettingID; } public IN_CustomSetting setSettingID(String value) { this.SettingID = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public IN_CustomSetting setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public String getSettingDescription() { return SettingDescription; } public IN_CustomSetting setSettingDescription(String value) { this.SettingDescription = value; return this; } public String getSettingName() { return SettingName; } public IN_CustomSetting setSettingName(String value) { this.SettingName = value; return this; } public BigDecimal getDisplayOrder() { return DisplayOrder; } public IN_CustomSetting setDisplayOrder(BigDecimal value) { this.DisplayOrder = value; return this; } public Short getCellType() { return CellType; } public IN_CustomSetting setCellType(Short value) { this.CellType = value; return this; } public String getScriptFormatCell() { return ScriptFormatCell; } public IN_CustomSetting setScriptFormatCell(String value) { this.ScriptFormatCell = value; return this; } public String getScriptButtonClicked() { return ScriptButtonClicked; } public IN_CustomSetting setScriptButtonClicked(String value) { this.ScriptButtonClicked = value; return this; } public String getScriptReadData() { return ScriptReadData; } public IN_CustomSetting setScriptReadData(String value) { this.ScriptReadData = value; return this; } public UUID getSyPluginRecID() { return SY_Plugin_RecID; } public IN_CustomSetting setSyPluginRecID(UUID value) { this.SY_Plugin_RecID = value; return this; } } public static class IN_CustomSettingValues { @Required() public String SettingValueID = null; @References(IN_CustomSetting.class) @Required() public String SettingID = null; @References(IN_Main.class) @Required() public String InventoryID = null; public String Contents = null; @Required() public Date LastSavedDateTime = null; public String getSettingValueID() { return SettingValueID; } public IN_CustomSettingValues setSettingValueID(String value) { this.SettingValueID = value; return this; } public String getSettingID() { return SettingID; } public IN_CustomSettingValues setSettingID(String value) { this.SettingID = value; return this; } public String getInventoryID() { return InventoryID; } public IN_CustomSettingValues setInventoryID(String value) { this.InventoryID = value; return this; } public String getContents() { return Contents; } public IN_CustomSettingValues setContents(String value) { this.Contents = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public IN_CustomSettingValues setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } } public static class IN_DebtorClassificationSpecificPrice { @Required() public String RecID = null; @References(IN_Main.class) public String InventoryID = null; @References(DB_Classification.class) public String DebtorClassificationID = null; @Required() public Short Source = null; @Required() public Short OPMode = null; public BigDecimal Amount = null; public Date StartDate = null; public Date EndDate = null; @Required() public Boolean UseQuantityBreak = null; public BigDecimal QuantityBreak = null; public String Note = null; @Required() public Integer ItemNo = null; @Required() public ArrayList RowHash = null; public String getRecID() { return RecID; } public IN_DebtorClassificationSpecificPrice setRecID(String value) { this.RecID = value; return this; } public String getInventoryID() { return InventoryID; } public IN_DebtorClassificationSpecificPrice setInventoryID(String value) { this.InventoryID = value; return this; } public String getDebtorClassificationID() { return DebtorClassificationID; } public IN_DebtorClassificationSpecificPrice setDebtorClassificationID(String value) { this.DebtorClassificationID = value; return this; } public Short getSource() { return Source; } public IN_DebtorClassificationSpecificPrice setSource(Short value) { this.Source = value; return this; } public Short getOpMode() { return OPMode; } public IN_DebtorClassificationSpecificPrice setOpMode(Short value) { this.OPMode = value; return this; } public BigDecimal getAmount() { return Amount; } public IN_DebtorClassificationSpecificPrice setAmount(BigDecimal value) { this.Amount = value; return this; } public Date getStartDate() { return StartDate; } public IN_DebtorClassificationSpecificPrice setStartDate(Date value) { this.StartDate = value; return this; } public Date getEndDate() { return EndDate; } public IN_DebtorClassificationSpecificPrice setEndDate(Date value) { this.EndDate = value; return this; } public Boolean isUseQuantityBreak() { return UseQuantityBreak; } public IN_DebtorClassificationSpecificPrice setUseQuantityBreak(Boolean value) { this.UseQuantityBreak = value; return this; } public BigDecimal getQuantityBreak() { return QuantityBreak; } public IN_DebtorClassificationSpecificPrice setQuantityBreak(BigDecimal value) { this.QuantityBreak = value; return this; } public String getNote() { return Note; } public IN_DebtorClassificationSpecificPrice setNote(String value) { this.Note = value; return this; } public Integer getItemNo() { return ItemNo; } public IN_DebtorClassificationSpecificPrice setItemNo(Integer value) { this.ItemNo = value; return this; } public ArrayList getRowHash() { return RowHash; } public IN_DebtorClassificationSpecificPrice setRowHash(ArrayList value) { this.RowHash = value; return this; } } public static class IN_DebtorPartNumbers { @Required() public String RecID = null; @References(IN_Main.class) @Required() public String InventoryID = null; @References(DB_Main.class) @Required() public String DebtorID = null; public String DebtorPartNo = null; public String DebtorBarcode = null; public String getRecID() { return RecID; } public IN_DebtorPartNumbers setRecID(String value) { this.RecID = value; return this; } public String getInventoryID() { return InventoryID; } public IN_DebtorPartNumbers setInventoryID(String value) { this.InventoryID = value; return this; } public String getDebtorID() { return DebtorID; } public IN_DebtorPartNumbers setDebtorID(String value) { this.DebtorID = value; return this; } public String getDebtorPartNo() { return DebtorPartNo; } public IN_DebtorPartNumbers setDebtorPartNo(String value) { this.DebtorPartNo = value; return this; } public String getDebtorBarcode() { return DebtorBarcode; } public IN_DebtorPartNumbers setDebtorBarcode(String value) { this.DebtorBarcode = value; return this; } } public static class IN_DebtorPricingGroupSpecificPrice { @Required() public String RecID = null; @References(IN_Main.class) public String InventoryID = null; @References(DB_PricingGroups.class) public String DB_PricingGroups_RecID = null; @Required() public Short Source = null; @Required() public Short OPMode = null; public BigDecimal Amount = null; public Date StartDate = null; public Date EndDate = null; @Required() public Boolean UseQuantityBreak = null; public BigDecimal QuantityBreak = null; public String Note = null; @Required() public Integer ItemNo = null; @Required() public ArrayList RowHash = null; public String getRecID() { return RecID; } public IN_DebtorPricingGroupSpecificPrice setRecID(String value) { this.RecID = value; return this; } public String getInventoryID() { return InventoryID; } public IN_DebtorPricingGroupSpecificPrice setInventoryID(String value) { this.InventoryID = value; return this; } public String getDbPricingGroupsRecID() { return DB_PricingGroups_RecID; } public IN_DebtorPricingGroupSpecificPrice setDbPricingGroupsRecID(String value) { this.DB_PricingGroups_RecID = value; return this; } public Short getSource() { return Source; } public IN_DebtorPricingGroupSpecificPrice setSource(Short value) { this.Source = value; return this; } public Short getOpMode() { return OPMode; } public IN_DebtorPricingGroupSpecificPrice setOpMode(Short value) { this.OPMode = value; return this; } public BigDecimal getAmount() { return Amount; } public IN_DebtorPricingGroupSpecificPrice setAmount(BigDecimal value) { this.Amount = value; return this; } public Date getStartDate() { return StartDate; } public IN_DebtorPricingGroupSpecificPrice setStartDate(Date value) { this.StartDate = value; return this; } public Date getEndDate() { return EndDate; } public IN_DebtorPricingGroupSpecificPrice setEndDate(Date value) { this.EndDate = value; return this; } public Boolean isUseQuantityBreak() { return UseQuantityBreak; } public IN_DebtorPricingGroupSpecificPrice setUseQuantityBreak(Boolean value) { this.UseQuantityBreak = value; return this; } public BigDecimal getQuantityBreak() { return QuantityBreak; } public IN_DebtorPricingGroupSpecificPrice setQuantityBreak(BigDecimal value) { this.QuantityBreak = value; return this; } public String getNote() { return Note; } public IN_DebtorPricingGroupSpecificPrice setNote(String value) { this.Note = value; return this; } public Integer getItemNo() { return ItemNo; } public IN_DebtorPricingGroupSpecificPrice setItemNo(Integer value) { this.ItemNo = value; return this; } public ArrayList getRowHash() { return RowHash; } public IN_DebtorPricingGroupSpecificPrice setRowHash(ArrayList value) { this.RowHash = value; return this; } } public static class IN_DebtorSpecificPrice { @Required() public String RecID = null; @References(IN_Main.class) public String InventoryID = null; @References(DB_Main.class) public String DebtorID = null; @Required() public Short Source = null; @Required() public Short OPMode = null; public BigDecimal Amount = null; public Date StartDate = null; public Date EndDate = null; @Required() public Boolean UseQuantityBreak = null; public BigDecimal QuantityBreak = null; @Required() public Integer ItemNo = null; @Required() public ArrayList RowHash = null; public String Note = null; public String getRecID() { return RecID; } public IN_DebtorSpecificPrice setRecID(String value) { this.RecID = value; return this; } public String getInventoryID() { return InventoryID; } public IN_DebtorSpecificPrice setInventoryID(String value) { this.InventoryID = value; return this; } public String getDebtorID() { return DebtorID; } public IN_DebtorSpecificPrice setDebtorID(String value) { this.DebtorID = value; return this; } public Short getSource() { return Source; } public IN_DebtorSpecificPrice setSource(Short value) { this.Source = value; return this; } public Short getOpMode() { return OPMode; } public IN_DebtorSpecificPrice setOpMode(Short value) { this.OPMode = value; return this; } public BigDecimal getAmount() { return Amount; } public IN_DebtorSpecificPrice setAmount(BigDecimal value) { this.Amount = value; return this; } public Date getStartDate() { return StartDate; } public IN_DebtorSpecificPrice setStartDate(Date value) { this.StartDate = value; return this; } public Date getEndDate() { return EndDate; } public IN_DebtorSpecificPrice setEndDate(Date value) { this.EndDate = value; return this; } public Boolean isUseQuantityBreak() { return UseQuantityBreak; } public IN_DebtorSpecificPrice setUseQuantityBreak(Boolean value) { this.UseQuantityBreak = value; return this; } public BigDecimal getQuantityBreak() { return QuantityBreak; } public IN_DebtorSpecificPrice setQuantityBreak(BigDecimal value) { this.QuantityBreak = value; return this; } public Integer getItemNo() { return ItemNo; } public IN_DebtorSpecificPrice setItemNo(Integer value) { this.ItemNo = value; return this; } public ArrayList getRowHash() { return RowHash; } public IN_DebtorSpecificPrice setRowHash(ArrayList value) { this.RowHash = value; return this; } public String getNote() { return Note; } public IN_DebtorSpecificPrice setNote(String value) { this.Note = value; return this; } } public static class IN_Description { @Required() public String DescriptionID = null; @References(IN_Main.class) @Required() public String InventoryID = null; @Required() public String Description = null; @References(SY_Language.class) @Required() public String SY_Language_RecID = null; public String getDescriptionID() { return DescriptionID; } public IN_Description setDescriptionID(String value) { this.DescriptionID = value; return this; } public String getInventoryID() { return InventoryID; } public IN_Description setInventoryID(String value) { this.InventoryID = value; return this; } public String getDescription() { return Description; } public IN_Description setDescription(String value) { this.Description = value; return this; } public String getSyLanguageRecID() { return SY_Language_RecID; } public IN_Description setSyLanguageRecID(String value) { this.SY_Language_RecID = value; return this; } } public static class IN_Documents { @Required() public String RecID = null; @Required() public String InventoryID = null; public String DocumentTypeID = null; public Date LastSavedDateTime = null; @Required() public String LastSavedByStaffID = null; public ArrayList FileBinary = null; public String Description = null; public String PhysicalFileName = null; @Required() public Integer ItemNo = null; public String getRecID() { return RecID; } public IN_Documents setRecID(String value) { this.RecID = value; return this; } public String getInventoryID() { return InventoryID; } public IN_Documents setInventoryID(String value) { this.InventoryID = value; return this; } public String getDocumentTypeID() { return DocumentTypeID; } public IN_Documents setDocumentTypeID(String value) { this.DocumentTypeID = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public IN_Documents setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public String getLastSavedByStaffID() { return LastSavedByStaffID; } public IN_Documents setLastSavedByStaffID(String value) { this.LastSavedByStaffID = value; return this; } public ArrayList getFileBinary() { return FileBinary; } public IN_Documents setFileBinary(ArrayList value) { this.FileBinary = value; return this; } public String getDescription() { return Description; } public IN_Documents setDescription(String value) { this.Description = value; return this; } public String getPhysicalFileName() { return PhysicalFileName; } public IN_Documents setPhysicalFileName(String value) { this.PhysicalFileName = value; return this; } public Integer getItemNo() { return ItemNo; } public IN_Documents setItemNo(Integer value) { this.ItemNo = value; return this; } } public static class IN_Duty { @Required() public String DutyID = null; public String Description = null; public BigDecimal Value = null; @Required() public Boolean IsDefault = null; public String getDutyID() { return DutyID; } public IN_Duty setDutyID(String value) { this.DutyID = value; return this; } public String getDescription() { return Description; } public IN_Duty setDescription(String value) { this.Description = value; return this; } public BigDecimal getValue() { return Value; } public IN_Duty setValue(BigDecimal value) { this.Value = value; return this; } public Boolean getIsDefault() { return IsDefault; } public IN_Duty setIsDefault(Boolean value) { this.IsDefault = value; return this; } } public static class IN_Freight { @Required() public String FreightInID = null; public String Description = null; public BigDecimal FreightValue = null; public Short FreightType = null; public Boolean FreightFactor = null; @Required() public Boolean IsDefault = null; public String getFreightInID() { return FreightInID; } public IN_Freight setFreightInID(String value) { this.FreightInID = value; return this; } public String getDescription() { return Description; } public IN_Freight setDescription(String value) { this.Description = value; return this; } public BigDecimal getFreightValue() { return FreightValue; } public IN_Freight setFreightValue(BigDecimal value) { this.FreightValue = value; return this; } public Short getFreightType() { return FreightType; } public IN_Freight setFreightType(Short value) { this.FreightType = value; return this; } public Boolean isFreightFactor() { return FreightFactor; } public IN_Freight setFreightFactor(Boolean value) { this.FreightFactor = value; return this; } public Boolean getIsDefault() { return IsDefault; } public IN_Freight setIsDefault(Boolean value) { this.IsDefault = value; return this; } } public static class IN_Group { @Required() public String InventoryGroupID = null; public Date LastSavedDateTime = null; @Required() public String Description = null; @References(IN_CollectionOfGroups.class) @Required() public String InventoryGroupCollectionID = null; public String getInventoryGroupID() { return InventoryGroupID; } public IN_Group setInventoryGroupID(String value) { this.InventoryGroupID = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public IN_Group setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public String getDescription() { return Description; } public IN_Group setDescription(String value) { this.Description = value; return this; } public String getInventoryGroupCollectionID() { return InventoryGroupCollectionID; } public IN_Group setInventoryGroupCollectionID(String value) { this.InventoryGroupCollectionID = value; return this; } } public static class IN_GroupLink { @Required() public String LinkID = null; @Required() public String InventoryGroupID = null; @Required() public String InventoryID = null; public String getLinkID() { return LinkID; } public IN_GroupLink setLinkID(String value) { this.LinkID = value; return this; } public String getInventoryGroupID() { return InventoryGroupID; } public IN_GroupLink setInventoryGroupID(String value) { this.InventoryGroupID = value; return this; } public String getInventoryID() { return InventoryID; } public IN_GroupLink setInventoryID(String value) { this.InventoryID = value; return this; } } public static class IN_InTransitWH { @Required() public String IN_LogicalID = null; @Required() public String IN_PhysicalID = null; @Required() public Integer IsDefault = null; public String getInLogicalID() { return IN_LogicalID; } public IN_InTransitWH setInLogicalID(String value) { this.IN_LogicalID = value; return this; } public String getInPhysicalID() { return IN_PhysicalID; } public IN_InTransitWH setInPhysicalID(String value) { this.IN_PhysicalID = value; return this; } public Integer getIsDefault() { return IsDefault; } public IN_InTransitWH setIsDefault(Integer value) { this.IsDefault = value; return this; } } public static class IN_KitStockTakeLineKitComponents { @Required() public String KitStockTakeLineComponentID = null; @Required() public String KitStockTakeLineID = null; @Required() public String InventoryID = null; @Required() public Short BOMObject = null; @Required() public Short DecimalPlaces = null; @Required() public BigDecimal KitRatioQuantity = null; @Required() public BigDecimal QuantityCounted = null; public String getKitStockTakeLineComponentID() { return KitStockTakeLineComponentID; } public IN_KitStockTakeLineKitComponents setKitStockTakeLineComponentID(String value) { this.KitStockTakeLineComponentID = value; return this; } public String getKitStockTakeLineID() { return KitStockTakeLineID; } public IN_KitStockTakeLineKitComponents setKitStockTakeLineID(String value) { this.KitStockTakeLineID = value; return this; } public String getInventoryID() { return InventoryID; } public IN_KitStockTakeLineKitComponents setInventoryID(String value) { this.InventoryID = value; return this; } public Short getBomObject() { return BOMObject; } public IN_KitStockTakeLineKitComponents setBomObject(Short value) { this.BOMObject = value; return this; } public Short getDecimalPlaces() { return DecimalPlaces; } public IN_KitStockTakeLineKitComponents setDecimalPlaces(Short value) { this.DecimalPlaces = value; return this; } public BigDecimal getKitRatioQuantity() { return KitRatioQuantity; } public IN_KitStockTakeLineKitComponents setKitRatioQuantity(BigDecimal value) { this.KitRatioQuantity = value; return this; } public BigDecimal getQuantityCounted() { return QuantityCounted; } public IN_KitStockTakeLineKitComponents setQuantityCounted(BigDecimal value) { this.QuantityCounted = value; return this; } } public static class IN_KitStockTakeLineKits { @Required() public String KitStockTakeLineID = null; @Required() public String KitStockTakeID = null; @Required() public String InventoryID = null; @Required() public Short BOMObject = null; @Required() public Short DecimalPlaces = null; @Required() public BigDecimal Quantity = null; @Required() public Integer LineNumber = null; @Required() public Date LastSavedDateTime = null; public String getKitStockTakeLineID() { return KitStockTakeLineID; } public IN_KitStockTakeLineKits setKitStockTakeLineID(String value) { this.KitStockTakeLineID = value; return this; } public String getKitStockTakeID() { return KitStockTakeID; } public IN_KitStockTakeLineKits setKitStockTakeID(String value) { this.KitStockTakeID = value; return this; } public String getInventoryID() { return InventoryID; } public IN_KitStockTakeLineKits setInventoryID(String value) { this.InventoryID = value; return this; } public Short getBomObject() { return BOMObject; } public IN_KitStockTakeLineKits setBomObject(Short value) { this.BOMObject = value; return this; } public Short getDecimalPlaces() { return DecimalPlaces; } public IN_KitStockTakeLineKits setDecimalPlaces(Short value) { this.DecimalPlaces = value; return this; } public BigDecimal getQuantity() { return Quantity; } public IN_KitStockTakeLineKits setQuantity(BigDecimal value) { this.Quantity = value; return this; } public Integer getLineNumber() { return LineNumber; } public IN_KitStockTakeLineKits setLineNumber(Integer value) { this.LineNumber = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public IN_KitStockTakeLineKits setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } } public static class IN_KitStockTakeMain { @Required() public String KitStockTakeID = null; public String KitStockTakeNo = null; public String KitStockTakeNotes = null; public Boolean KitStockTakeStatus = null; @Required() public Date KitStockTakeDate = null; public String StaffID = null; public String IN_LogicalID = null; @Required() public Date LastSavedDateTime = null; public String getKitStockTakeID() { return KitStockTakeID; } public IN_KitStockTakeMain setKitStockTakeID(String value) { this.KitStockTakeID = value; return this; } public String getKitStockTakeNo() { return KitStockTakeNo; } public IN_KitStockTakeMain setKitStockTakeNo(String value) { this.KitStockTakeNo = value; return this; } public String getKitStockTakeNotes() { return KitStockTakeNotes; } public IN_KitStockTakeMain setKitStockTakeNotes(String value) { this.KitStockTakeNotes = value; return this; } public Boolean isKitStockTakeStatus() { return KitStockTakeStatus; } public IN_KitStockTakeMain setKitStockTakeStatus(Boolean value) { this.KitStockTakeStatus = value; return this; } public Date getKitStockTakeDate() { return KitStockTakeDate; } public IN_KitStockTakeMain setKitStockTakeDate(Date value) { this.KitStockTakeDate = value; return this; } public String getStaffID() { return StaffID; } public IN_KitStockTakeMain setStaffID(String value) { this.StaffID = value; return this; } public String getInLogicalID() { return IN_LogicalID; } public IN_KitStockTakeMain setInLogicalID(String value) { this.IN_LogicalID = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public IN_KitStockTakeMain setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } } public static class IN_LogicalOrder { @Required() public String IN_LogicalOrderID = null; @References(IN_Main.class) @Required() public String InventoryID = null; @References(IN_Logical.class) @Required() public String IN_LogicalID = null; public String CentralWarehouseID = null; public String getInLogicalOrderID() { return IN_LogicalOrderID; } public IN_LogicalOrder setInLogicalOrderID(String value) { this.IN_LogicalOrderID = value; return this; } public String getInventoryID() { return InventoryID; } public IN_LogicalOrder setInventoryID(String value) { this.InventoryID = value; return this; } public String getInLogicalID() { return IN_LogicalID; } public IN_LogicalOrder setInLogicalID(String value) { this.IN_LogicalID = value; return this; } public String getCentralWarehouseID() { return CentralWarehouseID; } public IN_LogicalOrder setCentralWarehouseID(String value) { this.CentralWarehouseID = value; return this; } } public static class IN_LogicalWarehouseCustomFields { @Required() public String RecID = null; @Required() public String SettingName = null; public String SettingDescription = null; public Integer CellType = null; public String FieldParameter = null; @References(SY_Plugin.class) @Required() public UUID SY_Plugin_RecID = null; @Required() public Date LastSavedDateTime = null; public Integer DisplayOrder = null; public String getRecID() { return RecID; } public IN_LogicalWarehouseCustomFields setRecID(String value) { this.RecID = value; return this; } public String getSettingName() { return SettingName; } public IN_LogicalWarehouseCustomFields setSettingName(String value) { this.SettingName = value; return this; } public String getSettingDescription() { return SettingDescription; } public IN_LogicalWarehouseCustomFields setSettingDescription(String value) { this.SettingDescription = value; return this; } public Integer getCellType() { return CellType; } public IN_LogicalWarehouseCustomFields setCellType(Integer value) { this.CellType = value; return this; } public String getFieldParameter() { return FieldParameter; } public IN_LogicalWarehouseCustomFields setFieldParameter(String value) { this.FieldParameter = value; return this; } public UUID getSyPluginRecID() { return SY_Plugin_RecID; } public IN_LogicalWarehouseCustomFields setSyPluginRecID(UUID value) { this.SY_Plugin_RecID = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public IN_LogicalWarehouseCustomFields setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Integer getDisplayOrder() { return DisplayOrder; } public IN_LogicalWarehouseCustomFields setDisplayOrder(Integer value) { this.DisplayOrder = value; return this; } } public static class IN_LogicalWarehouseCustomValues { @Required() public String RecID = null; @References(IN_Logical.class) @Required() public String IN_Logical_RecID = null; @References(IN_LogicalWarehouseCustomFields.class) @Required() public String IN_LogicalWarehouseCustomFields_RecID = null; public String Contents = null; @Required() public Date LastSavedDateTime = null; public String getRecID() { return RecID; } public IN_LogicalWarehouseCustomValues setRecID(String value) { this.RecID = value; return this; } public String getInLogicalRecID() { return IN_Logical_RecID; } public IN_LogicalWarehouseCustomValues setInLogicalRecID(String value) { this.IN_Logical_RecID = value; return this; } public String getInLogicalWarehouseCustomFieldsRecID() { return IN_LogicalWarehouseCustomFields_RecID; } public IN_LogicalWarehouseCustomValues setInLogicalWarehouseCustomFieldsRecID(String value) { this.IN_LogicalWarehouseCustomFields_RecID = value; return this; } public String getContents() { return Contents; } public IN_LogicalWarehouseCustomValues setContents(String value) { this.Contents = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public IN_LogicalWarehouseCustomValues setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } } public static class IN_Main { @Required() public String InventoryID = null; public Date LastSavedDateTime = null; @Required() public String PartNo = null; public String Description = null; public String Units = null; @Required() public Boolean PhysicalItem = null; @Required() public Boolean Discountable = null; public BigDecimal DirectTax = null; @Required() public String Catagory1ID = null; @Required() public String Catagory2ID = null; @Required() public String Catagory3ID = null; @Required() public String Catagory4ID = null; @Required() public String Catagory5ID = null; @Required() public String ClassificationID = null; @Required() public Short Status = null; public BigDecimal DefaultPrice = null; public BigDecimal RRPPrice = null; public BigDecimal LCost = null; public BigDecimal SCost = null; public Short DecimalPlaces = null; public BigDecimal MinimumGP = null; public BigDecimal Weight = null; public BigDecimal Cubic = null; @Required() public Boolean UseSerialNo = null; public String Aux1 = null; public String Aux2 = null; public String Aux3 = null; public String Aux4 = null; public String Aux5 = null; @Required() public Boolean BackOrderable = null; public String LedgerInvValue = null; public String LedgerMovement_COG = null; public String LedgerExpAsset = null; public String LedgerExpLiab = null; public String LedgerDelAsset = null; public String LedgerDelLiab = null; public BigDecimal SalesManCost = null; public String LedgerAssignedValue = null; public String LedgerCogVariance = null; public String LedgerInvSales = null; public String LedgerAccumulator = null; public String LedgerPurchases = null; public String LedgerShipComplete = null; public String LedgerWriteOn = null; public String LedgerWriteOff = null; public String LedgerCostPriceAdj = null; @Required() public Short BOMObject = null; @Required() public Boolean UseExpiryDate = null; @Required() public Boolean UseStandardCost = null; public BigDecimal StandardCost = null; @Required() public Boolean WebEnabled = null; public String GSTInwardsID = null; public String GSTOutwardsID = null; public String GSTAdjustmentsINID = null; public String GSTAdjustmentsOUTID = null; @Required() public Boolean SellPriceIncTax = null; public String StyleID = null; public String ColourID = null; public String SizeID = null; public Short PartEncodeOrder = null; public Boolean TypeStyle = null; public String MatrixDescription = null; public BigDecimal SecondaryCost = null; public String PricingGroupID = null; public Boolean ShipWithPhysicalItem = null; @Required() public ArrayList RowHash = null; public ArrayList Picture = null; public String getInventoryID() { return InventoryID; } public IN_Main setInventoryID(String value) { this.InventoryID = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public IN_Main setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public String getPartNo() { return PartNo; } public IN_Main setPartNo(String value) { this.PartNo = value; return this; } public String getDescription() { return Description; } public IN_Main setDescription(String value) { this.Description = value; return this; } public String getUnits() { return Units; } public IN_Main setUnits(String value) { this.Units = value; return this; } public Boolean isPhysicalItem() { return PhysicalItem; } public IN_Main setPhysicalItem(Boolean value) { this.PhysicalItem = value; return this; } public Boolean isDiscountable() { return Discountable; } public IN_Main setDiscountable(Boolean value) { this.Discountable = value; return this; } public BigDecimal getDirectTax() { return DirectTax; } public IN_Main setDirectTax(BigDecimal value) { this.DirectTax = value; return this; } public String getCatagory1ID() { return Catagory1ID; } public IN_Main setCatagory1ID(String value) { this.Catagory1ID = value; return this; } public String getCatagory2ID() { return Catagory2ID; } public IN_Main setCatagory2ID(String value) { this.Catagory2ID = value; return this; } public String getCatagory3ID() { return Catagory3ID; } public IN_Main setCatagory3ID(String value) { this.Catagory3ID = value; return this; } public String getCatagory4ID() { return Catagory4ID; } public IN_Main setCatagory4ID(String value) { this.Catagory4ID = value; return this; } public String getCatagory5ID() { return Catagory5ID; } public IN_Main setCatagory5ID(String value) { this.Catagory5ID = value; return this; } public String getClassificationID() { return ClassificationID; } public IN_Main setClassificationID(String value) { this.ClassificationID = value; return this; } public Short getStatus() { return Status; } public IN_Main setStatus(Short value) { this.Status = value; return this; } public BigDecimal getDefaultPrice() { return DefaultPrice; } public IN_Main setDefaultPrice(BigDecimal value) { this.DefaultPrice = value; return this; } public BigDecimal getRrpPrice() { return RRPPrice; } public IN_Main setRrpPrice(BigDecimal value) { this.RRPPrice = value; return this; } public BigDecimal getLCost() { return LCost; } public IN_Main setLCost(BigDecimal value) { this.LCost = value; return this; } public BigDecimal getSCost() { return SCost; } public IN_Main setSCost(BigDecimal value) { this.SCost = value; return this; } public Short getDecimalPlaces() { return DecimalPlaces; } public IN_Main setDecimalPlaces(Short value) { this.DecimalPlaces = value; return this; } public BigDecimal getMinimumGP() { return MinimumGP; } public IN_Main setMinimumGP(BigDecimal value) { this.MinimumGP = value; return this; } public BigDecimal getWeight() { return Weight; } public IN_Main setWeight(BigDecimal value) { this.Weight = value; return this; } public BigDecimal getCubic() { return Cubic; } public IN_Main setCubic(BigDecimal value) { this.Cubic = value; return this; } public Boolean isUseSerialNo() { return UseSerialNo; } public IN_Main setUseSerialNo(Boolean value) { this.UseSerialNo = value; return this; } public String getAux1() { return Aux1; } public IN_Main setAux1(String value) { this.Aux1 = value; return this; } public String getAux2() { return Aux2; } public IN_Main setAux2(String value) { this.Aux2 = value; return this; } public String getAux3() { return Aux3; } public IN_Main setAux3(String value) { this.Aux3 = value; return this; } public String getAux4() { return Aux4; } public IN_Main setAux4(String value) { this.Aux4 = value; return this; } public String getAux5() { return Aux5; } public IN_Main setAux5(String value) { this.Aux5 = value; return this; } public Boolean isBackOrderable() { return BackOrderable; } public IN_Main setBackOrderable(Boolean value) { this.BackOrderable = value; return this; } public String getLedgerInvValue() { return LedgerInvValue; } public IN_Main setLedgerInvValue(String value) { this.LedgerInvValue = value; return this; } public String getLedgerMovementCog() { return LedgerMovement_COG; } public IN_Main setLedgerMovementCog(String value) { this.LedgerMovement_COG = value; return this; } public String getLedgerExpAsset() { return LedgerExpAsset; } public IN_Main setLedgerExpAsset(String value) { this.LedgerExpAsset = value; return this; } public String getLedgerExpLiab() { return LedgerExpLiab; } public IN_Main setLedgerExpLiab(String value) { this.LedgerExpLiab = value; return this; } public String getLedgerDelAsset() { return LedgerDelAsset; } public IN_Main setLedgerDelAsset(String value) { this.LedgerDelAsset = value; return this; } public String getLedgerDelLiab() { return LedgerDelLiab; } public IN_Main setLedgerDelLiab(String value) { this.LedgerDelLiab = value; return this; } public BigDecimal getSalesManCost() { return SalesManCost; } public IN_Main setSalesManCost(BigDecimal value) { this.SalesManCost = value; return this; } public String getLedgerAssignedValue() { return LedgerAssignedValue; } public IN_Main setLedgerAssignedValue(String value) { this.LedgerAssignedValue = value; return this; } public String getLedgerCogVariance() { return LedgerCogVariance; } public IN_Main setLedgerCogVariance(String value) { this.LedgerCogVariance = value; return this; } public String getLedgerInvSales() { return LedgerInvSales; } public IN_Main setLedgerInvSales(String value) { this.LedgerInvSales = value; return this; } public String getLedgerAccumulator() { return LedgerAccumulator; } public IN_Main setLedgerAccumulator(String value) { this.LedgerAccumulator = value; return this; } public String getLedgerPurchases() { return LedgerPurchases; } public IN_Main setLedgerPurchases(String value) { this.LedgerPurchases = value; return this; } public String getLedgerShipComplete() { return LedgerShipComplete; } public IN_Main setLedgerShipComplete(String value) { this.LedgerShipComplete = value; return this; } public String getLedgerWriteOn() { return LedgerWriteOn; } public IN_Main setLedgerWriteOn(String value) { this.LedgerWriteOn = value; return this; } public String getLedgerWriteOff() { return LedgerWriteOff; } public IN_Main setLedgerWriteOff(String value) { this.LedgerWriteOff = value; return this; } public String getLedgerCostPriceAdj() { return LedgerCostPriceAdj; } public IN_Main setLedgerCostPriceAdj(String value) { this.LedgerCostPriceAdj = value; return this; } public Short getBomObject() { return BOMObject; } public IN_Main setBomObject(Short value) { this.BOMObject = value; return this; } public Boolean isUseExpiryDate() { return UseExpiryDate; } public IN_Main setUseExpiryDate(Boolean value) { this.UseExpiryDate = value; return this; } public Boolean isUseStandardCost() { return UseStandardCost; } public IN_Main setUseStandardCost(Boolean value) { this.UseStandardCost = value; return this; } public BigDecimal getStandardCost() { return StandardCost; } public IN_Main setStandardCost(BigDecimal value) { this.StandardCost = value; return this; } public Boolean isWebEnabled() { return WebEnabled; } public IN_Main setWebEnabled(Boolean value) { this.WebEnabled = value; return this; } public String getGstInwardsID() { return GSTInwardsID; } public IN_Main setGstInwardsID(String value) { this.GSTInwardsID = value; return this; } public String getGstOutwardsID() { return GSTOutwardsID; } public IN_Main setGstOutwardsID(String value) { this.GSTOutwardsID = value; return this; } public String getGstAdjustmentsINID() { return GSTAdjustmentsINID; } public IN_Main setGstAdjustmentsINID(String value) { this.GSTAdjustmentsINID = value; return this; } public String getGstAdjustmentsOUTID() { return GSTAdjustmentsOUTID; } public IN_Main setGstAdjustmentsOUTID(String value) { this.GSTAdjustmentsOUTID = value; return this; } public Boolean isSellPriceIncTax() { return SellPriceIncTax; } public IN_Main setSellPriceIncTax(Boolean value) { this.SellPriceIncTax = value; return this; } public String getStyleID() { return StyleID; } public IN_Main setStyleID(String value) { this.StyleID = value; return this; } public String getColourID() { return ColourID; } public IN_Main setColourID(String value) { this.ColourID = value; return this; } public String getSizeID() { return SizeID; } public IN_Main setSizeID(String value) { this.SizeID = value; return this; } public Short getPartEncodeOrder() { return PartEncodeOrder; } public IN_Main setPartEncodeOrder(Short value) { this.PartEncodeOrder = value; return this; } public Boolean isTypeStyle() { return TypeStyle; } public IN_Main setTypeStyle(Boolean value) { this.TypeStyle = value; return this; } public String getMatrixDescription() { return MatrixDescription; } public IN_Main setMatrixDescription(String value) { this.MatrixDescription = value; return this; } public BigDecimal getSecondaryCost() { return SecondaryCost; } public IN_Main setSecondaryCost(BigDecimal value) { this.SecondaryCost = value; return this; } public String getPricingGroupID() { return PricingGroupID; } public IN_Main setPricingGroupID(String value) { this.PricingGroupID = value; return this; } public Boolean isShipWithPhysicalItem() { return ShipWithPhysicalItem; } public IN_Main setShipWithPhysicalItem(Boolean value) { this.ShipWithPhysicalItem = value; return this; } public ArrayList getRowHash() { return RowHash; } public IN_Main setRowHash(ArrayList value) { this.RowHash = value; return this; } public ArrayList getPicture() { return Picture; } public IN_Main setPicture(ArrayList value) { this.Picture = value; return this; } } public static class IN_Notes { @Required() public String RecID = null; @Required() public String InventoryID = null; @Required() public String NoteTypeID = null; @Required() public Date LastSavedDateTime = null; @Required() public String LastSavedByStaffID = null; public String NoteText = null; @Required() public Integer ItemNo = null; public String getRecID() { return RecID; } public IN_Notes setRecID(String value) { this.RecID = value; return this; } public String getInventoryID() { return InventoryID; } public IN_Notes setInventoryID(String value) { this.InventoryID = value; return this; } public String getNoteTypeID() { return NoteTypeID; } public IN_Notes setNoteTypeID(String value) { this.NoteTypeID = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public IN_Notes setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public String getLastSavedByStaffID() { return LastSavedByStaffID; } public IN_Notes setLastSavedByStaffID(String value) { this.LastSavedByStaffID = value; return this; } public String getNoteText() { return NoteText; } public IN_Notes setNoteText(String value) { this.NoteText = value; return this; } public Integer getItemNo() { return ItemNo; } public IN_Notes setItemNo(Integer value) { this.ItemNo = value; return this; } } public static class IN_OnBackOrder { @Required() public String OrdersOnBackID = null; public Date LastSavedDateTime = null; public Date TranDate = null; public Short InvoiceType = null; @Required() public String InvoiceID = null; @Required() public String InvoiceLineID = null; @References(DB_Main.class) public String DebtorID = null; @References(IN_Main.class) @Required() public String InventoryID = null; public String OrderID = null; public String OrderLineID = null; public BigDecimal Quantity = null; public BigDecimal Price = null; public BigDecimal EstBOValue = null; @Required() public String Priority = null; @References(IN_Logical.class) @Required() public String IN_LogicalID = null; @References(IN_Logical.class) public String ForLogicalID = null; public Short ForAnotherWarehouse = null; public String INAssemblyID = null; public Short BackOrderMode = null; public Integer PriorityWeight = null; public String getOrdersOnBackID() { return OrdersOnBackID; } public IN_OnBackOrder setOrdersOnBackID(String value) { this.OrdersOnBackID = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public IN_OnBackOrder setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getTranDate() { return TranDate; } public IN_OnBackOrder setTranDate(Date value) { this.TranDate = value; return this; } public Short getInvoiceType() { return InvoiceType; } public IN_OnBackOrder setInvoiceType(Short value) { this.InvoiceType = value; return this; } public String getInvoiceID() { return InvoiceID; } public IN_OnBackOrder setInvoiceID(String value) { this.InvoiceID = value; return this; } public String getInvoiceLineID() { return InvoiceLineID; } public IN_OnBackOrder setInvoiceLineID(String value) { this.InvoiceLineID = value; return this; } public String getDebtorID() { return DebtorID; } public IN_OnBackOrder setDebtorID(String value) { this.DebtorID = value; return this; } public String getInventoryID() { return InventoryID; } public IN_OnBackOrder setInventoryID(String value) { this.InventoryID = value; return this; } public String getOrderID() { return OrderID; } public IN_OnBackOrder setOrderID(String value) { this.OrderID = value; return this; } public String getOrderLineID() { return OrderLineID; } public IN_OnBackOrder setOrderLineID(String value) { this.OrderLineID = value; return this; } public BigDecimal getQuantity() { return Quantity; } public IN_OnBackOrder setQuantity(BigDecimal value) { this.Quantity = value; return this; } public BigDecimal getPrice() { return Price; } public IN_OnBackOrder setPrice(BigDecimal value) { this.Price = value; return this; } public BigDecimal getEstBOValue() { return EstBOValue; } public IN_OnBackOrder setEstBOValue(BigDecimal value) { this.EstBOValue = value; return this; } public String getPriority() { return Priority; } public IN_OnBackOrder setPriority(String value) { this.Priority = value; return this; } public String getInLogicalID() { return IN_LogicalID; } public IN_OnBackOrder setInLogicalID(String value) { this.IN_LogicalID = value; return this; } public String getForLogicalID() { return ForLogicalID; } public IN_OnBackOrder setForLogicalID(String value) { this.ForLogicalID = value; return this; } public Short getForAnotherWarehouse() { return ForAnotherWarehouse; } public IN_OnBackOrder setForAnotherWarehouse(Short value) { this.ForAnotherWarehouse = value; return this; } public String getInAssemblyID() { return INAssemblyID; } public IN_OnBackOrder setInAssemblyID(String value) { this.INAssemblyID = value; return this; } public Short getBackOrderMode() { return BackOrderMode; } public IN_OnBackOrder setBackOrderMode(Short value) { this.BackOrderMode = value; return this; } public Integer getPriorityWeight() { return PriorityWeight; } public IN_OnBackOrder setPriorityWeight(Integer value) { this.PriorityWeight = value; return this; } } public static class IN_OrderLevels { @Required() public String InventoryLevelsID = null; @References(IN_Main.class) @Required() public String InventoryID = null; @Required() public BigDecimal Quantity1 = null; @Required() public BigDecimal Quantity2 = null; @Required() public BigDecimal Quantity3 = null; @Required() public BigDecimal Quantity4 = null; @Required() public BigDecimal Quantity5 = null; @Required() public BigDecimal Quantity6 = null; @Required() public BigDecimal Quantity7 = null; @Required() public BigDecimal Quantity8 = null; @Required() public BigDecimal Quantity9 = null; @Required() public BigDecimal Quantity10 = null; @Required() public BigDecimal Quantity11 = null; @Required() public BigDecimal Quantity12 = null; @Required() public BigDecimal Quantity13 = null; @Required() public BigDecimal Quantity14 = null; @Required() public BigDecimal Quantity15 = null; @Required() public BigDecimal Quantity16 = null; @Required() public BigDecimal Quantity17 = null; @Required() public BigDecimal Quantity18 = null; @Required() public BigDecimal Quantity19 = null; @Required() public BigDecimal Quantity20 = null; @Required() public BigDecimal Quantity21 = null; @Required() public BigDecimal Quantity22 = null; @Required() public BigDecimal Quantity23 = null; @Required() public BigDecimal Quantity24 = null; @References(IN_Logical.class) @Required() public String IN_LogicalID = null; public BigDecimal SafetyMinQuantity1 = null; public BigDecimal SafetyMinQuantity2 = null; public BigDecimal SafetyMinQuantity3 = null; public BigDecimal SafetyMinQuantity4 = null; public BigDecimal SafetyMinQuantity5 = null; public BigDecimal SafetyMinQuantity6 = null; public BigDecimal SafetyMinQuantity7 = null; public BigDecimal SafetyMinQuantity8 = null; public BigDecimal SafetyMinQuantity9 = null; public BigDecimal SafetyMinQuantity10 = null; public BigDecimal SafetyMinQuantity11 = null; public BigDecimal SafetyMinQuantity12 = null; public BigDecimal SafetyMaxQuantity1 = null; public BigDecimal SafetyMaxQuantity2 = null; public BigDecimal SafetyMaxQuantity3 = null; public BigDecimal SafetyMaxQuantity4 = null; public BigDecimal SafetyMaxQuantity5 = null; public BigDecimal SafetyMaxQuantity6 = null; public BigDecimal SafetyMaxQuantity7 = null; public BigDecimal SafetyMaxQuantity8 = null; public BigDecimal SafetyMaxQuantity9 = null; public BigDecimal SafetyMaxQuantity10 = null; public BigDecimal SafetyMaxQuantity11 = null; public BigDecimal SafetyMaxQuantity12 = null; public String getInventoryLevelsID() { return InventoryLevelsID; } public IN_OrderLevels setInventoryLevelsID(String value) { this.InventoryLevelsID = value; return this; } public String getInventoryID() { return InventoryID; } public IN_OrderLevels setInventoryID(String value) { this.InventoryID = value; return this; } public BigDecimal getQuantity1() { return Quantity1; } public IN_OrderLevels setQuantity1(BigDecimal value) { this.Quantity1 = value; return this; } public BigDecimal getQuantity2() { return Quantity2; } public IN_OrderLevels setQuantity2(BigDecimal value) { this.Quantity2 = value; return this; } public BigDecimal getQuantity3() { return Quantity3; } public IN_OrderLevels setQuantity3(BigDecimal value) { this.Quantity3 = value; return this; } public BigDecimal getQuantity4() { return Quantity4; } public IN_OrderLevels setQuantity4(BigDecimal value) { this.Quantity4 = value; return this; } public BigDecimal getQuantity5() { return Quantity5; } public IN_OrderLevels setQuantity5(BigDecimal value) { this.Quantity5 = value; return this; } public BigDecimal getQuantity6() { return Quantity6; } public IN_OrderLevels setQuantity6(BigDecimal value) { this.Quantity6 = value; return this; } public BigDecimal getQuantity7() { return Quantity7; } public IN_OrderLevels setQuantity7(BigDecimal value) { this.Quantity7 = value; return this; } public BigDecimal getQuantity8() { return Quantity8; } public IN_OrderLevels setQuantity8(BigDecimal value) { this.Quantity8 = value; return this; } public BigDecimal getQuantity9() { return Quantity9; } public IN_OrderLevels setQuantity9(BigDecimal value) { this.Quantity9 = value; return this; } public BigDecimal getQuantity10() { return Quantity10; } public IN_OrderLevels setQuantity10(BigDecimal value) { this.Quantity10 = value; return this; } public BigDecimal getQuantity11() { return Quantity11; } public IN_OrderLevels setQuantity11(BigDecimal value) { this.Quantity11 = value; return this; } public BigDecimal getQuantity12() { return Quantity12; } public IN_OrderLevels setQuantity12(BigDecimal value) { this.Quantity12 = value; return this; } public BigDecimal getQuantity13() { return Quantity13; } public IN_OrderLevels setQuantity13(BigDecimal value) { this.Quantity13 = value; return this; } public BigDecimal getQuantity14() { return Quantity14; } public IN_OrderLevels setQuantity14(BigDecimal value) { this.Quantity14 = value; return this; } public BigDecimal getQuantity15() { return Quantity15; } public IN_OrderLevels setQuantity15(BigDecimal value) { this.Quantity15 = value; return this; } public BigDecimal getQuantity16() { return Quantity16; } public IN_OrderLevels setQuantity16(BigDecimal value) { this.Quantity16 = value; return this; } public BigDecimal getQuantity17() { return Quantity17; } public IN_OrderLevels setQuantity17(BigDecimal value) { this.Quantity17 = value; return this; } public BigDecimal getQuantity18() { return Quantity18; } public IN_OrderLevels setQuantity18(BigDecimal value) { this.Quantity18 = value; return this; } public BigDecimal getQuantity19() { return Quantity19; } public IN_OrderLevels setQuantity19(BigDecimal value) { this.Quantity19 = value; return this; } public BigDecimal getQuantity20() { return Quantity20; } public IN_OrderLevels setQuantity20(BigDecimal value) { this.Quantity20 = value; return this; } public BigDecimal getQuantity21() { return Quantity21; } public IN_OrderLevels setQuantity21(BigDecimal value) { this.Quantity21 = value; return this; } public BigDecimal getQuantity22() { return Quantity22; } public IN_OrderLevels setQuantity22(BigDecimal value) { this.Quantity22 = value; return this; } public BigDecimal getQuantity23() { return Quantity23; } public IN_OrderLevels setQuantity23(BigDecimal value) { this.Quantity23 = value; return this; } public BigDecimal getQuantity24() { return Quantity24; } public IN_OrderLevels setQuantity24(BigDecimal value) { this.Quantity24 = value; return this; } public String getInLogicalID() { return IN_LogicalID; } public IN_OrderLevels setInLogicalID(String value) { this.IN_LogicalID = value; return this; } public BigDecimal getSafetyMinQuantity1() { return SafetyMinQuantity1; } public IN_OrderLevels setSafetyMinQuantity1(BigDecimal value) { this.SafetyMinQuantity1 = value; return this; } public BigDecimal getSafetyMinQuantity2() { return SafetyMinQuantity2; } public IN_OrderLevels setSafetyMinQuantity2(BigDecimal value) { this.SafetyMinQuantity2 = value; return this; } public BigDecimal getSafetyMinQuantity3() { return SafetyMinQuantity3; } public IN_OrderLevels setSafetyMinQuantity3(BigDecimal value) { this.SafetyMinQuantity3 = value; return this; } public BigDecimal getSafetyMinQuantity4() { return SafetyMinQuantity4; } public IN_OrderLevels setSafetyMinQuantity4(BigDecimal value) { this.SafetyMinQuantity4 = value; return this; } public BigDecimal getSafetyMinQuantity5() { return SafetyMinQuantity5; } public IN_OrderLevels setSafetyMinQuantity5(BigDecimal value) { this.SafetyMinQuantity5 = value; return this; } public BigDecimal getSafetyMinQuantity6() { return SafetyMinQuantity6; } public IN_OrderLevels setSafetyMinQuantity6(BigDecimal value) { this.SafetyMinQuantity6 = value; return this; } public BigDecimal getSafetyMinQuantity7() { return SafetyMinQuantity7; } public IN_OrderLevels setSafetyMinQuantity7(BigDecimal value) { this.SafetyMinQuantity7 = value; return this; } public BigDecimal getSafetyMinQuantity8() { return SafetyMinQuantity8; } public IN_OrderLevels setSafetyMinQuantity8(BigDecimal value) { this.SafetyMinQuantity8 = value; return this; } public BigDecimal getSafetyMinQuantity9() { return SafetyMinQuantity9; } public IN_OrderLevels setSafetyMinQuantity9(BigDecimal value) { this.SafetyMinQuantity9 = value; return this; } public BigDecimal getSafetyMinQuantity10() { return SafetyMinQuantity10; } public IN_OrderLevels setSafetyMinQuantity10(BigDecimal value) { this.SafetyMinQuantity10 = value; return this; } public BigDecimal getSafetyMinQuantity11() { return SafetyMinQuantity11; } public IN_OrderLevels setSafetyMinQuantity11(BigDecimal value) { this.SafetyMinQuantity11 = value; return this; } public BigDecimal getSafetyMinQuantity12() { return SafetyMinQuantity12; } public IN_OrderLevels setSafetyMinQuantity12(BigDecimal value) { this.SafetyMinQuantity12 = value; return this; } public BigDecimal getSafetyMaxQuantity1() { return SafetyMaxQuantity1; } public IN_OrderLevels setSafetyMaxQuantity1(BigDecimal value) { this.SafetyMaxQuantity1 = value; return this; } public BigDecimal getSafetyMaxQuantity2() { return SafetyMaxQuantity2; } public IN_OrderLevels setSafetyMaxQuantity2(BigDecimal value) { this.SafetyMaxQuantity2 = value; return this; } public BigDecimal getSafetyMaxQuantity3() { return SafetyMaxQuantity3; } public IN_OrderLevels setSafetyMaxQuantity3(BigDecimal value) { this.SafetyMaxQuantity3 = value; return this; } public BigDecimal getSafetyMaxQuantity4() { return SafetyMaxQuantity4; } public IN_OrderLevels setSafetyMaxQuantity4(BigDecimal value) { this.SafetyMaxQuantity4 = value; return this; } public BigDecimal getSafetyMaxQuantity5() { return SafetyMaxQuantity5; } public IN_OrderLevels setSafetyMaxQuantity5(BigDecimal value) { this.SafetyMaxQuantity5 = value; return this; } public BigDecimal getSafetyMaxQuantity6() { return SafetyMaxQuantity6; } public IN_OrderLevels setSafetyMaxQuantity6(BigDecimal value) { this.SafetyMaxQuantity6 = value; return this; } public BigDecimal getSafetyMaxQuantity7() { return SafetyMaxQuantity7; } public IN_OrderLevels setSafetyMaxQuantity7(BigDecimal value) { this.SafetyMaxQuantity7 = value; return this; } public BigDecimal getSafetyMaxQuantity8() { return SafetyMaxQuantity8; } public IN_OrderLevels setSafetyMaxQuantity8(BigDecimal value) { this.SafetyMaxQuantity8 = value; return this; } public BigDecimal getSafetyMaxQuantity9() { return SafetyMaxQuantity9; } public IN_OrderLevels setSafetyMaxQuantity9(BigDecimal value) { this.SafetyMaxQuantity9 = value; return this; } public BigDecimal getSafetyMaxQuantity10() { return SafetyMaxQuantity10; } public IN_OrderLevels setSafetyMaxQuantity10(BigDecimal value) { this.SafetyMaxQuantity10 = value; return this; } public BigDecimal getSafetyMaxQuantity11() { return SafetyMaxQuantity11; } public IN_OrderLevels setSafetyMaxQuantity11(BigDecimal value) { this.SafetyMaxQuantity11 = value; return this; } public BigDecimal getSafetyMaxQuantity12() { return SafetyMaxQuantity12; } public IN_OrderLevels setSafetyMaxQuantity12(BigDecimal value) { this.SafetyMaxQuantity12 = value; return this; } } public static class IN_Physical { @Required() public String IN_PhysicalID = null; @Required() public Date LastSavedDateTime = null; @Required() public String Description = null; public String Address1 = null; public String Address2 = null; public String Address3 = null; public String Address4 = null; public String PostCode = null; public String Phone = null; public String Fax = null; public String RefComment = null; public String getInPhysicalID() { return IN_PhysicalID; } public IN_Physical setInPhysicalID(String value) { this.IN_PhysicalID = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public IN_Physical setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public String getDescription() { return Description; } public IN_Physical setDescription(String value) { this.Description = value; return this; } public String getAddress1() { return Address1; } public IN_Physical setAddress1(String value) { this.Address1 = value; return this; } public String getAddress2() { return Address2; } public IN_Physical setAddress2(String value) { this.Address2 = value; return this; } public String getAddress3() { return Address3; } public IN_Physical setAddress3(String value) { this.Address3 = value; return this; } public String getAddress4() { return Address4; } public IN_Physical setAddress4(String value) { this.Address4 = value; return this; } public String getPostCode() { return PostCode; } public IN_Physical setPostCode(String value) { this.PostCode = value; return this; } public String getPhone() { return Phone; } public IN_Physical setPhone(String value) { this.Phone = value; return this; } public String getFax() { return Fax; } public IN_Physical setFax(String value) { this.Fax = value; return this; } public String getRefComment() { return RefComment; } public IN_Physical setRefComment(String value) { this.RefComment = value; return this; } } public static class IN_PhysicalWarehouseCustomSetting { @Required() public String SettingID = null; @Required() public Date LastSavedDateTime = null; public String SettingDescription = null; public String SettingName = null; public Integer DisplayOrder = null; public Short CellType = null; public String ScriptFormatCell = null; public String ScriptButtonClicked = null; public String ScriptReadData = null; public String GridHandlerCode = null; @References(SY_Plugin.class) @Required() public UUID SY_Plugin_RecID = null; public String getSettingID() { return SettingID; } public IN_PhysicalWarehouseCustomSetting setSettingID(String value) { this.SettingID = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public IN_PhysicalWarehouseCustomSetting setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public String getSettingDescription() { return SettingDescription; } public IN_PhysicalWarehouseCustomSetting setSettingDescription(String value) { this.SettingDescription = value; return this; } public String getSettingName() { return SettingName; } public IN_PhysicalWarehouseCustomSetting setSettingName(String value) { this.SettingName = value; return this; } public Integer getDisplayOrder() { return DisplayOrder; } public IN_PhysicalWarehouseCustomSetting setDisplayOrder(Integer value) { this.DisplayOrder = value; return this; } public Short getCellType() { return CellType; } public IN_PhysicalWarehouseCustomSetting setCellType(Short value) { this.CellType = value; return this; } public String getScriptFormatCell() { return ScriptFormatCell; } public IN_PhysicalWarehouseCustomSetting setScriptFormatCell(String value) { this.ScriptFormatCell = value; return this; } public String getScriptButtonClicked() { return ScriptButtonClicked; } public IN_PhysicalWarehouseCustomSetting setScriptButtonClicked(String value) { this.ScriptButtonClicked = value; return this; } public String getScriptReadData() { return ScriptReadData; } public IN_PhysicalWarehouseCustomSetting setScriptReadData(String value) { this.ScriptReadData = value; return this; } public String getGridHandlerCode() { return GridHandlerCode; } public IN_PhysicalWarehouseCustomSetting setGridHandlerCode(String value) { this.GridHandlerCode = value; return this; } public UUID getSyPluginRecID() { return SY_Plugin_RecID; } public IN_PhysicalWarehouseCustomSetting setSyPluginRecID(UUID value) { this.SY_Plugin_RecID = value; return this; } } public static class IN_PhysicalWarehouseCustomValues { @Required() public String SettingValueID = null; @References(IN_PhysicalWarehouseCustomSetting.class) public String SettingID = null; @References(IN_Physical.class) @Required() public String IN_Physical_RecID = null; public String Contents = null; @Required() public Date LastSavedDateTime = null; public String getSettingValueID() { return SettingValueID; } public IN_PhysicalWarehouseCustomValues setSettingValueID(String value) { this.SettingValueID = value; return this; } public String getSettingID() { return SettingID; } public IN_PhysicalWarehouseCustomValues setSettingID(String value) { this.SettingID = value; return this; } public String getInPhysicalRecID() { return IN_Physical_RecID; } public IN_PhysicalWarehouseCustomValues setInPhysicalRecID(String value) { this.IN_Physical_RecID = value; return this; } public String getContents() { return Contents; } public IN_PhysicalWarehouseCustomValues setContents(String value) { this.Contents = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public IN_PhysicalWarehouseCustomValues setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } } public static class IN_Price { @Required() public String PriceID = null; public Date LastSavedDateTime = null; public String Description = null; public BigDecimal QuantityBreak = null; public Date ExpiryDate = null; public String getPriceID() { return PriceID; } public IN_Price setPriceID(String value) { this.PriceID = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public IN_Price setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public String getDescription() { return Description; } public IN_Price setDescription(String value) { this.Description = value; return this; } public BigDecimal getQuantityBreak() { return QuantityBreak; } public IN_Price setQuantityBreak(BigDecimal value) { this.QuantityBreak = value; return this; } public Date getExpiryDate() { return ExpiryDate; } public IN_Price setExpiryDate(Date value) { this.ExpiryDate = value; return this; } } public static class IN_PriceLink { @Required() public String LinkID = null; @References(IN_Price.class) @Required() public String PriceID = null; @References(IN_Main.class) @Required() public String InventoryID = null; public BigDecimal Price = null; public String getLinkID() { return LinkID; } public IN_PriceLink setLinkID(String value) { this.LinkID = value; return this; } public String getPriceID() { return PriceID; } public IN_PriceLink setPriceID(String value) { this.PriceID = value; return this; } public String getInventoryID() { return InventoryID; } public IN_PriceLink setInventoryID(String value) { this.InventoryID = value; return this; } public BigDecimal getPrice() { return Price; } public IN_PriceLink setPrice(BigDecimal value) { this.Price = value; return this; } } public static class IN_PriceSchemePrice { @Required() public String PriceSchemePriceID = null; @Required() public String PriceDescription = null; @Required() public Boolean PriceIsStoredProc = null; public String PriceStoredProcName = null; @Required() public Boolean PriceActive = null; public String PriceVBScript = null; public Boolean UseZeroPrice = null; public String getPriceSchemePriceID() { return PriceSchemePriceID; } public IN_PriceSchemePrice setPriceSchemePriceID(String value) { this.PriceSchemePriceID = value; return this; } public String getPriceDescription() { return PriceDescription; } public IN_PriceSchemePrice setPriceDescription(String value) { this.PriceDescription = value; return this; } public Boolean isPriceIsStoredProc() { return PriceIsStoredProc; } public IN_PriceSchemePrice setPriceIsStoredProc(Boolean value) { this.PriceIsStoredProc = value; return this; } public String getPriceStoredProcName() { return PriceStoredProcName; } public IN_PriceSchemePrice setPriceStoredProcName(String value) { this.PriceStoredProcName = value; return this; } public Boolean isPriceActive() { return PriceActive; } public IN_PriceSchemePrice setPriceActive(Boolean value) { this.PriceActive = value; return this; } public String getPriceVBScript() { return PriceVBScript; } public IN_PriceSchemePrice setPriceVBScript(String value) { this.PriceVBScript = value; return this; } public Boolean isUseZeroPrice() { return UseZeroPrice; } public IN_PriceSchemePrice setUseZeroPrice(Boolean value) { this.UseZeroPrice = value; return this; } } public static class IN_PriceSchemePriority { @Required() public String PriceSchemePriorityID = null; @References(IN_PriceSchemes.class) @Required() public String PriceSchemeID = null; @References(IN_PriceSchemePrice.class) @Required() public String PriceSchemePriceID = null; public Short SchemePriority = null; public String getPriceSchemePriorityID() { return PriceSchemePriorityID; } public IN_PriceSchemePriority setPriceSchemePriorityID(String value) { this.PriceSchemePriorityID = value; return this; } public String getPriceSchemeID() { return PriceSchemeID; } public IN_PriceSchemePriority setPriceSchemeID(String value) { this.PriceSchemeID = value; return this; } public String getPriceSchemePriceID() { return PriceSchemePriceID; } public IN_PriceSchemePriority setPriceSchemePriceID(String value) { this.PriceSchemePriceID = value; return this; } public Short getSchemePriority() { return SchemePriority; } public IN_PriceSchemePriority setSchemePriority(Short value) { this.SchemePriority = value; return this; } } public static class IN_PriceSchemes { @Required() public String PriceSchemeID = null; @Required() public String PriceSchemeDescription = null; @Required() public Date LastSavedDateTime = null; @Required() public Boolean SchemeActive = null; @Required() public Boolean FindTheCheapest = null; public Boolean IsDefault = null; public String getPriceSchemeID() { return PriceSchemeID; } public IN_PriceSchemes setPriceSchemeID(String value) { this.PriceSchemeID = value; return this; } public String getPriceSchemeDescription() { return PriceSchemeDescription; } public IN_PriceSchemes setPriceSchemeDescription(String value) { this.PriceSchemeDescription = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public IN_PriceSchemes setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Boolean isSchemeActive() { return SchemeActive; } public IN_PriceSchemes setSchemeActive(Boolean value) { this.SchemeActive = value; return this; } public Boolean isFindTheCheapest() { return FindTheCheapest; } public IN_PriceSchemes setFindTheCheapest(Boolean value) { this.FindTheCheapest = value; return this; } public Boolean getIsDefault() { return IsDefault; } public IN_PriceSchemes setIsDefault(Boolean value) { this.IsDefault = value; return this; } } public static class IN_PricingGroupMatrix { @Required() public String RecID = null; @References(IN_PricingGroups.class) public String IN_PricingGroups_RecID = null; @References(DB_PricingGroups.class) public String DB_PricingGroups_RecID = null; @Required() public Short SourcePrice = null; @Required() public Short Mode = null; @Required() public BigDecimal Amount = null; public Boolean UseQuantityBreak = null; public BigDecimal QuantityBreak = null; @Required() public ArrayList RowHash = null; @Required() public Integer ItemNo = null; public Date StartDate = null; public Date EndDate = null; public String getRecID() { return RecID; } public IN_PricingGroupMatrix setRecID(String value) { this.RecID = value; return this; } public String getInPricingGroupsRecID() { return IN_PricingGroups_RecID; } public IN_PricingGroupMatrix setInPricingGroupsRecID(String value) { this.IN_PricingGroups_RecID = value; return this; } public String getDbPricingGroupsRecID() { return DB_PricingGroups_RecID; } public IN_PricingGroupMatrix setDbPricingGroupsRecID(String value) { this.DB_PricingGroups_RecID = value; return this; } public Short getSourcePrice() { return SourcePrice; } public IN_PricingGroupMatrix setSourcePrice(Short value) { this.SourcePrice = value; return this; } public Short getMode() { return Mode; } public IN_PricingGroupMatrix setMode(Short value) { this.Mode = value; return this; } public BigDecimal getAmount() { return Amount; } public IN_PricingGroupMatrix setAmount(BigDecimal value) { this.Amount = value; return this; } public Boolean isUseQuantityBreak() { return UseQuantityBreak; } public IN_PricingGroupMatrix setUseQuantityBreak(Boolean value) { this.UseQuantityBreak = value; return this; } public BigDecimal getQuantityBreak() { return QuantityBreak; } public IN_PricingGroupMatrix setQuantityBreak(BigDecimal value) { this.QuantityBreak = value; return this; } public ArrayList getRowHash() { return RowHash; } public IN_PricingGroupMatrix setRowHash(ArrayList value) { this.RowHash = value; return this; } public Integer getItemNo() { return ItemNo; } public IN_PricingGroupMatrix setItemNo(Integer value) { this.ItemNo = value; return this; } public Date getStartDate() { return StartDate; } public IN_PricingGroupMatrix setStartDate(Date value) { this.StartDate = value; return this; } public Date getEndDate() { return EndDate; } public IN_PricingGroupMatrix setEndDate(Date value) { this.EndDate = value; return this; } } public static class IN_PricingGroups { @Required() public String RecID = null; @Required() public Date LastSavedDateTime = null; @Required() public String Description = null; public Boolean DefaultPriceGroup = null; public String getRecID() { return RecID; } public IN_PricingGroups setRecID(String value) { this.RecID = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public IN_PricingGroups setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public String getDescription() { return Description; } public IN_PricingGroups setDescription(String value) { this.Description = value; return this; } public Boolean isDefaultPriceGroup() { return DefaultPriceGroup; } public IN_PricingGroups setDefaultPriceGroup(Boolean value) { this.DefaultPriceGroup = value; return this; } } public static class IN_ProductAvailability { @Required() public String RecID = null; @References(IN_Main.class) @Required() public String InventoryID = null; @References(IN_Logical.class) @Required() public String LogicalID = null; @Required() public Boolean Available = null; public String getRecID() { return RecID; } public IN_ProductAvailability setRecID(String value) { this.RecID = value; return this; } public String getInventoryID() { return InventoryID; } public IN_ProductAvailability setInventoryID(String value) { this.InventoryID = value; return this; } public String getLogicalID() { return LogicalID; } public IN_ProductAvailability setLogicalID(String value) { this.LogicalID = value; return this; } public Boolean isAvailable() { return Available; } public IN_ProductAvailability setAvailable(Boolean value) { this.Available = value; return this; } } public static class IN_Region { @Required() public String RecID = null; @Required() public String Name = null; public String Description = null; @Required() public Boolean IsDefault = null; @Required() public String HR_Staff_RecID_CreatedBy = null; @Required() public Date CreatedDateTime = null; @Required() public String HR_Staff_RecID_LastSavedBy = null; @Required() public Date LastSavedDateTime = null; public String getRecID() { return RecID; } public IN_Region setRecID(String value) { this.RecID = value; return this; } public String getName() { return Name; } public IN_Region setName(String value) { this.Name = value; return this; } public String getDescription() { return Description; } public IN_Region setDescription(String value) { this.Description = value; return this; } public Boolean getIsDefault() { return IsDefault; } public IN_Region setIsDefault(Boolean value) { this.IsDefault = value; return this; } public String getHrStaffRecIDCreatedBy() { return HR_Staff_RecID_CreatedBy; } public IN_Region setHrStaffRecIDCreatedBy(String value) { this.HR_Staff_RecID_CreatedBy = value; return this; } public Date getCreatedDateTime() { return CreatedDateTime; } public IN_Region setCreatedDateTime(Date value) { this.CreatedDateTime = value; return this; } public String getHrStaffRecIDLastSavedBy() { return HR_Staff_RecID_LastSavedBy; } public IN_Region setHrStaffRecIDLastSavedBy(String value) { this.HR_Staff_RecID_LastSavedBy = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public IN_Region setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } } public static class IN_RegionSupplierOrdering { @Required() public String RecID = null; @References(IN_Region.class) @Required() public String IN_Region_RecID = null; @References(IN_Main.class) @Required() public String IN_Main_InventoryID = null; @Required() public Date LastSavedDateTime = null; public Boolean OrderEnabled = null; public String getRecID() { return RecID; } public IN_RegionSupplierOrdering setRecID(String value) { this.RecID = value; return this; } public String getInRegionRecID() { return IN_Region_RecID; } public IN_RegionSupplierOrdering setInRegionRecID(String value) { this.IN_Region_RecID = value; return this; } public String getInMainInventoryID() { return IN_Main_InventoryID; } public IN_RegionSupplierOrdering setInMainInventoryID(String value) { this.IN_Main_InventoryID = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public IN_RegionSupplierOrdering setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Boolean isOrderEnabled() { return OrderEnabled; } public IN_RegionSupplierOrdering setOrderEnabled(Boolean value) { this.OrderEnabled = value; return this; } } public static class IN_SellingPrices { @References(IN_Main.class) @Required() public String InventoryID = null; @Required() public Date ForwardPriceDate = null; @Required() public Date CurrentPriceDate = null; public BigDecimal Price1 = null; public BigDecimal ForwardPrice1 = null; public Boolean Price1IsIncTax = null; public BigDecimal Price2 = null; public BigDecimal ForwardPrice2 = null; public Boolean Price2IsIncTax = null; public BigDecimal Price3 = null; public BigDecimal ForwardPrice3 = null; public Boolean Price3IsIncTax = null; public BigDecimal Price4 = null; public BigDecimal ForwardPrice4 = null; public Boolean Price4IsIncTax = null; public BigDecimal Price5 = null; public BigDecimal ForwardPrice5 = null; public Boolean Price5IsIncTax = null; public BigDecimal Price6 = null; public BigDecimal ForwardPrice6 = null; public Boolean Price6IsIncTax = null; public BigDecimal Price7 = null; public BigDecimal ForwardPrice7 = null; public Boolean Price7IsIncTax = null; public BigDecimal Price8 = null; public BigDecimal ForwardPrice8 = null; public Boolean Price8IsIncTax = null; public BigDecimal Price9 = null; public BigDecimal ForwardPrice9 = null; public Boolean Price9IsIncTax = null; public BigDecimal Price10 = null; public BigDecimal ForwardPrice10 = null; public Boolean Price10IsIncTax = null; public String getInventoryID() { return InventoryID; } public IN_SellingPrices setInventoryID(String value) { this.InventoryID = value; return this; } public Date getForwardPriceDate() { return ForwardPriceDate; } public IN_SellingPrices setForwardPriceDate(Date value) { this.ForwardPriceDate = value; return this; } public Date getCurrentPriceDate() { return CurrentPriceDate; } public IN_SellingPrices setCurrentPriceDate(Date value) { this.CurrentPriceDate = value; return this; } public BigDecimal getPrice1() { return Price1; } public IN_SellingPrices setPrice1(BigDecimal value) { this.Price1 = value; return this; } public BigDecimal getForwardPrice1() { return ForwardPrice1; } public IN_SellingPrices setForwardPrice1(BigDecimal value) { this.ForwardPrice1 = value; return this; } public Boolean isPrice1IsIncTax() { return Price1IsIncTax; } public IN_SellingPrices setPrice1IsIncTax(Boolean value) { this.Price1IsIncTax = value; return this; } public BigDecimal getPrice2() { return Price2; } public IN_SellingPrices setPrice2(BigDecimal value) { this.Price2 = value; return this; } public BigDecimal getForwardPrice2() { return ForwardPrice2; } public IN_SellingPrices setForwardPrice2(BigDecimal value) { this.ForwardPrice2 = value; return this; } public Boolean isPrice2IsIncTax() { return Price2IsIncTax; } public IN_SellingPrices setPrice2IsIncTax(Boolean value) { this.Price2IsIncTax = value; return this; } public BigDecimal getPrice3() { return Price3; } public IN_SellingPrices setPrice3(BigDecimal value) { this.Price3 = value; return this; } public BigDecimal getForwardPrice3() { return ForwardPrice3; } public IN_SellingPrices setForwardPrice3(BigDecimal value) { this.ForwardPrice3 = value; return this; } public Boolean isPrice3IsIncTax() { return Price3IsIncTax; } public IN_SellingPrices setPrice3IsIncTax(Boolean value) { this.Price3IsIncTax = value; return this; } public BigDecimal getPrice4() { return Price4; } public IN_SellingPrices setPrice4(BigDecimal value) { this.Price4 = value; return this; } public BigDecimal getForwardPrice4() { return ForwardPrice4; } public IN_SellingPrices setForwardPrice4(BigDecimal value) { this.ForwardPrice4 = value; return this; } public Boolean isPrice4IsIncTax() { return Price4IsIncTax; } public IN_SellingPrices setPrice4IsIncTax(Boolean value) { this.Price4IsIncTax = value; return this; } public BigDecimal getPrice5() { return Price5; } public IN_SellingPrices setPrice5(BigDecimal value) { this.Price5 = value; return this; } public BigDecimal getForwardPrice5() { return ForwardPrice5; } public IN_SellingPrices setForwardPrice5(BigDecimal value) { this.ForwardPrice5 = value; return this; } public Boolean isPrice5IsIncTax() { return Price5IsIncTax; } public IN_SellingPrices setPrice5IsIncTax(Boolean value) { this.Price5IsIncTax = value; return this; } public BigDecimal getPrice6() { return Price6; } public IN_SellingPrices setPrice6(BigDecimal value) { this.Price6 = value; return this; } public BigDecimal getForwardPrice6() { return ForwardPrice6; } public IN_SellingPrices setForwardPrice6(BigDecimal value) { this.ForwardPrice6 = value; return this; } public Boolean isPrice6IsIncTax() { return Price6IsIncTax; } public IN_SellingPrices setPrice6IsIncTax(Boolean value) { this.Price6IsIncTax = value; return this; } public BigDecimal getPrice7() { return Price7; } public IN_SellingPrices setPrice7(BigDecimal value) { this.Price7 = value; return this; } public BigDecimal getForwardPrice7() { return ForwardPrice7; } public IN_SellingPrices setForwardPrice7(BigDecimal value) { this.ForwardPrice7 = value; return this; } public Boolean isPrice7IsIncTax() { return Price7IsIncTax; } public IN_SellingPrices setPrice7IsIncTax(Boolean value) { this.Price7IsIncTax = value; return this; } public BigDecimal getPrice8() { return Price8; } public IN_SellingPrices setPrice8(BigDecimal value) { this.Price8 = value; return this; } public BigDecimal getForwardPrice8() { return ForwardPrice8; } public IN_SellingPrices setForwardPrice8(BigDecimal value) { this.ForwardPrice8 = value; return this; } public Boolean isPrice8IsIncTax() { return Price8IsIncTax; } public IN_SellingPrices setPrice8IsIncTax(Boolean value) { this.Price8IsIncTax = value; return this; } public BigDecimal getPrice9() { return Price9; } public IN_SellingPrices setPrice9(BigDecimal value) { this.Price9 = value; return this; } public BigDecimal getForwardPrice9() { return ForwardPrice9; } public IN_SellingPrices setForwardPrice9(BigDecimal value) { this.ForwardPrice9 = value; return this; } public Boolean isPrice9IsIncTax() { return Price9IsIncTax; } public IN_SellingPrices setPrice9IsIncTax(Boolean value) { this.Price9IsIncTax = value; return this; } public BigDecimal getPrice10() { return Price10; } public IN_SellingPrices setPrice10(BigDecimal value) { this.Price10 = value; return this; } public BigDecimal getForwardPrice10() { return ForwardPrice10; } public IN_SellingPrices setForwardPrice10(BigDecimal value) { this.ForwardPrice10 = value; return this; } public Boolean isPrice10IsIncTax() { return Price10IsIncTax; } public IN_SellingPrices setPrice10IsIncTax(Boolean value) { this.Price10IsIncTax = value; return this; } } public static class IN_Sizes { @Required() public String RecID = null; public String Description = null; @Required() public String SizeCode = null; @Required() public String StyleID = null; public Integer DisplayOrder = null; public String getRecID() { return RecID; } public IN_Sizes setRecID(String value) { this.RecID = value; return this; } public String getDescription() { return Description; } public IN_Sizes setDescription(String value) { this.Description = value; return this; } public String getSizeCode() { return SizeCode; } public IN_Sizes setSizeCode(String value) { this.SizeCode = value; return this; } public String getStyleID() { return StyleID; } public IN_Sizes setStyleID(String value) { this.StyleID = value; return this; } public Integer getDisplayOrder() { return DisplayOrder; } public IN_Sizes setDisplayOrder(Integer value) { this.DisplayOrder = value; return this; } } public static class IN_SOH { @Required() public String LinkID = null; public Date LastSavedDateTime = null; @References(IN_Main.class) @Required() public String InventoryID = null; public Date DateIn = null; public BigDecimal QuantityIn = null; public BigDecimal LCostIn = null; public BigDecimal SCostIn = null; public BigDecimal SpecialPrice = null; public BigDecimal QuantityLeft = null; public String SerialNo = null; public BigDecimal TaxPaid = null; public String Ref = null; public String SourceID = null; public String HistoryText = null; public BigDecimal QuantityAllocated = null; @References(IN_Logical.class) @Required() public String IN_LogicalID = null; public String BinLocationDesc = null; public Date ExpiryDate = null; @References(SY_Forms.class) public String SY_Forms_ClassName = null; public String getLinkID() { return LinkID; } public IN_SOH setLinkID(String value) { this.LinkID = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public IN_SOH setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public String getInventoryID() { return InventoryID; } public IN_SOH setInventoryID(String value) { this.InventoryID = value; return this; } public Date getDateIn() { return DateIn; } public IN_SOH setDateIn(Date value) { this.DateIn = value; return this; } public BigDecimal getQuantityIn() { return QuantityIn; } public IN_SOH setQuantityIn(BigDecimal value) { this.QuantityIn = value; return this; } public BigDecimal getLCostIn() { return LCostIn; } public IN_SOH setLCostIn(BigDecimal value) { this.LCostIn = value; return this; } public BigDecimal getSCostIn() { return SCostIn; } public IN_SOH setSCostIn(BigDecimal value) { this.SCostIn = value; return this; } public BigDecimal getSpecialPrice() { return SpecialPrice; } public IN_SOH setSpecialPrice(BigDecimal value) { this.SpecialPrice = value; return this; } public BigDecimal getQuantityLeft() { return QuantityLeft; } public IN_SOH setQuantityLeft(BigDecimal value) { this.QuantityLeft = value; return this; } public String getSerialNo() { return SerialNo; } public IN_SOH setSerialNo(String value) { this.SerialNo = value; return this; } public BigDecimal getTaxPaid() { return TaxPaid; } public IN_SOH setTaxPaid(BigDecimal value) { this.TaxPaid = value; return this; } public String getRef() { return Ref; } public IN_SOH setRef(String value) { this.Ref = value; return this; } public String getSourceID() { return SourceID; } public IN_SOH setSourceID(String value) { this.SourceID = value; return this; } public String getHistoryText() { return HistoryText; } public IN_SOH setHistoryText(String value) { this.HistoryText = value; return this; } public BigDecimal getQuantityAllocated() { return QuantityAllocated; } public IN_SOH setQuantityAllocated(BigDecimal value) { this.QuantityAllocated = value; return this; } public String getInLogicalID() { return IN_LogicalID; } public IN_SOH setInLogicalID(String value) { this.IN_LogicalID = value; return this; } public String getBinLocationDesc() { return BinLocationDesc; } public IN_SOH setBinLocationDesc(String value) { this.BinLocationDesc = value; return this; } public Date getExpiryDate() { return ExpiryDate; } public IN_SOH setExpiryDate(Date value) { this.ExpiryDate = value; return this; } public String getSyFormsClassName() { return SY_Forms_ClassName; } public IN_SOH setSyFormsClassName(String value) { this.SY_Forms_ClassName = value; return this; } } public static class IN_SOHManualSplitAudit { @Required() public String RecID = null; @Required() public String SplitFromSOHID = null; @Required() public String SplitToSOHID = null; @Required() public BigDecimal QuantitySplit = null; @Required() public String StaffID = null; @Required() public Date SplitDateTime = null; public String getRecID() { return RecID; } public IN_SOHManualSplitAudit setRecID(String value) { this.RecID = value; return this; } public String getSplitFromSOHID() { return SplitFromSOHID; } public IN_SOHManualSplitAudit setSplitFromSOHID(String value) { this.SplitFromSOHID = value; return this; } public String getSplitToSOHID() { return SplitToSOHID; } public IN_SOHManualSplitAudit setSplitToSOHID(String value) { this.SplitToSOHID = value; return this; } public BigDecimal getQuantitySplit() { return QuantitySplit; } public IN_SOHManualSplitAudit setQuantitySplit(BigDecimal value) { this.QuantitySplit = value; return this; } public String getStaffID() { return StaffID; } public IN_SOHManualSplitAudit setStaffID(String value) { this.StaffID = value; return this; } public Date getSplitDateTime() { return SplitDateTime; } public IN_SOHManualSplitAudit setSplitDateTime(Date value) { this.SplitDateTime = value; return this; } } public static class IN_StandCost { @Required() public String INStandCostID = null; @Required() public Date LastSavedDateTime = null; @Required() public String DocumentNo = null; @Required() public Date InitDate = null; public Date UsageDate = null; public String Formula = null; public Boolean Status = null; public String Ref = null; public String FromPartNo = null; public String ToPartNo = null; public String FromSupplier = null; public String ToSupplier = null; public String FromClass = null; public String ToClass = null; public String FromCat1 = null; public String ToCat1 = null; public String FromCat2 = null; public String ToCat2 = null; public String FromCat3 = null; public String ToCat3 = null; public String FromCat4 = null; public String ToCat4 = null; public String FromCat5 = null; public String ToCat5 = null; public String getInStandCostID() { return INStandCostID; } public IN_StandCost setInStandCostID(String value) { this.INStandCostID = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public IN_StandCost setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public String getDocumentNo() { return DocumentNo; } public IN_StandCost setDocumentNo(String value) { this.DocumentNo = value; return this; } public Date getInitDate() { return InitDate; } public IN_StandCost setInitDate(Date value) { this.InitDate = value; return this; } public Date getUsageDate() { return UsageDate; } public IN_StandCost setUsageDate(Date value) { this.UsageDate = value; return this; } public String getFormula() { return Formula; } public IN_StandCost setFormula(String value) { this.Formula = value; return this; } public Boolean isStatus() { return Status; } public IN_StandCost setStatus(Boolean value) { this.Status = value; return this; } public String getRef() { return Ref; } public IN_StandCost setRef(String value) { this.Ref = value; return this; } public String getFromPartNo() { return FromPartNo; } public IN_StandCost setFromPartNo(String value) { this.FromPartNo = value; return this; } public String getToPartNo() { return ToPartNo; } public IN_StandCost setToPartNo(String value) { this.ToPartNo = value; return this; } public String getFromSupplier() { return FromSupplier; } public IN_StandCost setFromSupplier(String value) { this.FromSupplier = value; return this; } public String getToSupplier() { return ToSupplier; } public IN_StandCost setToSupplier(String value) { this.ToSupplier = value; return this; } public String getFromClass() { return FromClass; } public IN_StandCost setFromClass(String value) { this.FromClass = value; return this; } public String getToClass() { return ToClass; } public IN_StandCost setToClass(String value) { this.ToClass = value; return this; } public String getFromCat1() { return FromCat1; } public IN_StandCost setFromCat1(String value) { this.FromCat1 = value; return this; } public String getToCat1() { return ToCat1; } public IN_StandCost setToCat1(String value) { this.ToCat1 = value; return this; } public String getFromCat2() { return FromCat2; } public IN_StandCost setFromCat2(String value) { this.FromCat2 = value; return this; } public String getToCat2() { return ToCat2; } public IN_StandCost setToCat2(String value) { this.ToCat2 = value; return this; } public String getFromCat3() { return FromCat3; } public IN_StandCost setFromCat3(String value) { this.FromCat3 = value; return this; } public String getToCat3() { return ToCat3; } public IN_StandCost setToCat3(String value) { this.ToCat3 = value; return this; } public String getFromCat4() { return FromCat4; } public IN_StandCost setFromCat4(String value) { this.FromCat4 = value; return this; } public String getToCat4() { return ToCat4; } public IN_StandCost setToCat4(String value) { this.ToCat4 = value; return this; } public String getFromCat5() { return FromCat5; } public IN_StandCost setFromCat5(String value) { this.FromCat5 = value; return this; } public String getToCat5() { return ToCat5; } public IN_StandCost setToCat5(String value) { this.ToCat5 = value; return this; } } public static class IN_StandCostLine { @Required() public String INStandCostLineID = null; @Required() public String INStandCostID = null; @Required() public String InventoryID = null; @Required() public String PartNo = null; public String Description = null; public BigDecimal OldCost = null; public BigDecimal NewCost = null; public BigDecimal LastHomeCost = null; public BigDecimal LastSupplierCost = null; public BigDecimal StandardDuty = null; public BigDecimal StandardFreight = null; public BigDecimal FXRate = null; public BigDecimal UserValue = null; public BigDecimal TotalSOH = null; public BigDecimal CurrentValue = null; public BigDecimal NewValue = null; public BigDecimal Variance = null; public Short DecimalPlaces = null; public BigDecimal FXCapitalRate = null; public String getInStandCostLineID() { return INStandCostLineID; } public IN_StandCostLine setInStandCostLineID(String value) { this.INStandCostLineID = value; return this; } public String getInStandCostID() { return INStandCostID; } public IN_StandCostLine setInStandCostID(String value) { this.INStandCostID = value; return this; } public String getInventoryID() { return InventoryID; } public IN_StandCostLine setInventoryID(String value) { this.InventoryID = value; return this; } public String getPartNo() { return PartNo; } public IN_StandCostLine setPartNo(String value) { this.PartNo = value; return this; } public String getDescription() { return Description; } public IN_StandCostLine setDescription(String value) { this.Description = value; return this; } public BigDecimal getOldCost() { return OldCost; } public IN_StandCostLine setOldCost(BigDecimal value) { this.OldCost = value; return this; } public BigDecimal getNewCost() { return NewCost; } public IN_StandCostLine setNewCost(BigDecimal value) { this.NewCost = value; return this; } public BigDecimal getLastHomeCost() { return LastHomeCost; } public IN_StandCostLine setLastHomeCost(BigDecimal value) { this.LastHomeCost = value; return this; } public BigDecimal getLastSupplierCost() { return LastSupplierCost; } public IN_StandCostLine setLastSupplierCost(BigDecimal value) { this.LastSupplierCost = value; return this; } public BigDecimal getStandardDuty() { return StandardDuty; } public IN_StandCostLine setStandardDuty(BigDecimal value) { this.StandardDuty = value; return this; } public BigDecimal getStandardFreight() { return StandardFreight; } public IN_StandCostLine setStandardFreight(BigDecimal value) { this.StandardFreight = value; return this; } public BigDecimal getFxRate() { return FXRate; } public IN_StandCostLine setFxRate(BigDecimal value) { this.FXRate = value; return this; } public BigDecimal getUserValue() { return UserValue; } public IN_StandCostLine setUserValue(BigDecimal value) { this.UserValue = value; return this; } public BigDecimal getTotalSOH() { return TotalSOH; } public IN_StandCostLine setTotalSOH(BigDecimal value) { this.TotalSOH = value; return this; } public BigDecimal getCurrentValue() { return CurrentValue; } public IN_StandCostLine setCurrentValue(BigDecimal value) { this.CurrentValue = value; return this; } public BigDecimal getNewValue() { return NewValue; } public IN_StandCostLine setNewValue(BigDecimal value) { this.NewValue = value; return this; } public BigDecimal getVariance() { return Variance; } public IN_StandCostLine setVariance(BigDecimal value) { this.Variance = value; return this; } public Short getDecimalPlaces() { return DecimalPlaces; } public IN_StandCostLine setDecimalPlaces(Short value) { this.DecimalPlaces = value; return this; } public BigDecimal getFxCapitalRate() { return FXCapitalRate; } public IN_StandCostLine setFxCapitalRate(BigDecimal value) { this.FXCapitalRate = value; return this; } } public static class IN_StockTakeLineDetails { @Required() public String StockTakeDetailsID = null; @References(IN_StockTakeLines.class) @Required() public String StockTakeLineID = null; public String SerialNumber = null; @References(IN_SOH.class) public String LinkID = null; public BigDecimal QtyFound = null; public BigDecimal QtyNotFound = null; public BigDecimal QtyAdded = null; public BigDecimal Cost = null; public Date ExpiryDate = null; @References(IN_BinLocationLookup.class) public String IN_BinLocationLookup_RecID = null; @Required() public Integer ItemNo = null; public String getStockTakeDetailsID() { return StockTakeDetailsID; } public IN_StockTakeLineDetails setStockTakeDetailsID(String value) { this.StockTakeDetailsID = value; return this; } public String getStockTakeLineID() { return StockTakeLineID; } public IN_StockTakeLineDetails setStockTakeLineID(String value) { this.StockTakeLineID = value; return this; } public String getSerialNumber() { return SerialNumber; } public IN_StockTakeLineDetails setSerialNumber(String value) { this.SerialNumber = value; return this; } public String getLinkID() { return LinkID; } public IN_StockTakeLineDetails setLinkID(String value) { this.LinkID = value; return this; } public BigDecimal getQtyFound() { return QtyFound; } public IN_StockTakeLineDetails setQtyFound(BigDecimal value) { this.QtyFound = value; return this; } public BigDecimal getQtyNotFound() { return QtyNotFound; } public IN_StockTakeLineDetails setQtyNotFound(BigDecimal value) { this.QtyNotFound = value; return this; } public BigDecimal getQtyAdded() { return QtyAdded; } public IN_StockTakeLineDetails setQtyAdded(BigDecimal value) { this.QtyAdded = value; return this; } public BigDecimal getCost() { return Cost; } public IN_StockTakeLineDetails setCost(BigDecimal value) { this.Cost = value; return this; } public Date getExpiryDate() { return ExpiryDate; } public IN_StockTakeLineDetails setExpiryDate(Date value) { this.ExpiryDate = value; return this; } public String getInBinLocationLookupRecID() { return IN_BinLocationLookup_RecID; } public IN_StockTakeLineDetails setInBinLocationLookupRecID(String value) { this.IN_BinLocationLookup_RecID = value; return this; } public Integer getItemNo() { return ItemNo; } public IN_StockTakeLineDetails setItemNo(Integer value) { this.ItemNo = value; return this; } } public static class IN_StockTakeLines { @Required() public String StockTakeLineID = null; @References(IN_StockTakeMain.class) @Required() public String StockTakeID = null; @Required() public String InventoryID = null; @Required() public String PartNo = null; public String Description = null; public BigDecimal QtyOnHand = null; public BigDecimal QtyFound = null; public BigDecimal AmountVar = null; public String BinLocation = null; public Integer LineNum = null; public String DefaultBin = null; public String Comment = null; public String getStockTakeLineID() { return StockTakeLineID; } public IN_StockTakeLines setStockTakeLineID(String value) { this.StockTakeLineID = value; return this; } public String getStockTakeID() { return StockTakeID; } public IN_StockTakeLines setStockTakeID(String value) { this.StockTakeID = value; return this; } public String getInventoryID() { return InventoryID; } public IN_StockTakeLines setInventoryID(String value) { this.InventoryID = value; return this; } public String getPartNo() { return PartNo; } public IN_StockTakeLines setPartNo(String value) { this.PartNo = value; return this; } public String getDescription() { return Description; } public IN_StockTakeLines setDescription(String value) { this.Description = value; return this; } public BigDecimal getQtyOnHand() { return QtyOnHand; } public IN_StockTakeLines setQtyOnHand(BigDecimal value) { this.QtyOnHand = value; return this; } public BigDecimal getQtyFound() { return QtyFound; } public IN_StockTakeLines setQtyFound(BigDecimal value) { this.QtyFound = value; return this; } public BigDecimal getAmountVar() { return AmountVar; } public IN_StockTakeLines setAmountVar(BigDecimal value) { this.AmountVar = value; return this; } public String getBinLocation() { return BinLocation; } public IN_StockTakeLines setBinLocation(String value) { this.BinLocation = value; return this; } public Integer getLineNum() { return LineNum; } public IN_StockTakeLines setLineNum(Integer value) { this.LineNum = value; return this; } public String getDefaultBin() { return DefaultBin; } public IN_StockTakeLines setDefaultBin(String value) { this.DefaultBin = value; return this; } public String getComment() { return Comment; } public IN_StockTakeLines setComment(String value) { this.Comment = value; return this; } } public static class IN_StockTakeMain { @Required() public String StockTakeID = null; @Required() public Date LastSavedDateTime = null; @Required() public String StockTakeNumber = null; @Required() public Date DateCreated = null; @Required() public String UserID = null; public String WarehouseID = null; @Required() public Short Status = null; @Required() public Boolean Mode = null; public String getStockTakeID() { return StockTakeID; } public IN_StockTakeMain setStockTakeID(String value) { this.StockTakeID = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public IN_StockTakeMain setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public String getStockTakeNumber() { return StockTakeNumber; } public IN_StockTakeMain setStockTakeNumber(String value) { this.StockTakeNumber = value; return this; } public Date getDateCreated() { return DateCreated; } public IN_StockTakeMain setDateCreated(Date value) { this.DateCreated = value; return this; } public String getUserID() { return UserID; } public IN_StockTakeMain setUserID(String value) { this.UserID = value; return this; } public String getWarehouseID() { return WarehouseID; } public IN_StockTakeMain setWarehouseID(String value) { this.WarehouseID = value; return this; } public Short getStatus() { return Status; } public IN_StockTakeMain setStatus(Short value) { this.Status = value; return this; } public Boolean isMode() { return Mode; } public IN_StockTakeMain setMode(Boolean value) { this.Mode = value; return this; } } public static class IN_StyleColourSizeMatrix { @Required() public String RecID = null; @References(IN_Styles.class) @Required() public String StyleID = null; @References(IN_Colours.class) @Required() public String ColourID = null; @References(IN_Sizes.class) @Required() public String SizeID = null; @References(IN_Main.class) @Required() public String InventoryID = null; @Required() public String PartNo = null; public String getRecID() { return RecID; } public IN_StyleColourSizeMatrix setRecID(String value) { this.RecID = value; return this; } public String getStyleID() { return StyleID; } public IN_StyleColourSizeMatrix setStyleID(String value) { this.StyleID = value; return this; } public String getColourID() { return ColourID; } public IN_StyleColourSizeMatrix setColourID(String value) { this.ColourID = value; return this; } public String getSizeID() { return SizeID; } public IN_StyleColourSizeMatrix setSizeID(String value) { this.SizeID = value; return this; } public String getInventoryID() { return InventoryID; } public IN_StyleColourSizeMatrix setInventoryID(String value) { this.InventoryID = value; return this; } public String getPartNo() { return PartNo; } public IN_StyleColourSizeMatrix setPartNo(String value) { this.PartNo = value; return this; } } public static class IN_Styles { @Required() public String RecID = null; public String Description = null; @Required() public String StyleCode = null; public String getRecID() { return RecID; } public IN_Styles setRecID(String value) { this.RecID = value; return this; } public String getDescription() { return Description; } public IN_Styles setDescription(String value) { this.Description = value; return this; } public String getStyleCode() { return StyleCode; } public IN_Styles setStyleCode(String value) { this.StyleCode = value; return this; } } public static class IN_SupplierWarehouse { @Required() public String RecID = null; @References(IN_Creditor.class) @Required() public String IN_Creditor_RecID = null; @References(IN_Main.class) @Required() public String InventoryID = null; @References(CR_Warehouse.class) @Required() public String WarehouseID = null; @References(IN_Freight.class) @Required() public String FreightInID = null; public BigDecimal OrderUnits = null; public Short DeliveryDays = null; public BigDecimal SuppliersCost = null; public BigDecimal HomeSuppliersCost = null; @References(IN_Duty.class) @Required() public String DutyID = null; public BigDecimal SupplierSOH = null; public BigDecimal SuppliersCost2 = null; public BigDecimal HomeSuppliersCost2 = null; public BigDecimal SpareFloat1 = null; public BigDecimal SpareFloat2 = null; public BigDecimal SpareFloat3 = null; public String SpareString1 = null; public String SpareString2 = null; public String SpareString3 = null; public Date SpareDate1 = null; public Date SpareDate2 = null; public Date SpareDate3 = null; public Boolean DefaultSupplierWarehouse = null; @Required() public Integer ItemNo = null; @References(IN_UnitOfMeasure.class) public UUID IN_UnitOfMeasure_RecID = null; public String getRecID() { return RecID; } public IN_SupplierWarehouse setRecID(String value) { this.RecID = value; return this; } public String getInCreditorRecID() { return IN_Creditor_RecID; } public IN_SupplierWarehouse setInCreditorRecID(String value) { this.IN_Creditor_RecID = value; return this; } public String getInventoryID() { return InventoryID; } public IN_SupplierWarehouse setInventoryID(String value) { this.InventoryID = value; return this; } public String getWarehouseID() { return WarehouseID; } public IN_SupplierWarehouse setWarehouseID(String value) { this.WarehouseID = value; return this; } public String getFreightInID() { return FreightInID; } public IN_SupplierWarehouse setFreightInID(String value) { this.FreightInID = value; return this; } public BigDecimal getOrderUnits() { return OrderUnits; } public IN_SupplierWarehouse setOrderUnits(BigDecimal value) { this.OrderUnits = value; return this; } public Short getDeliveryDays() { return DeliveryDays; } public IN_SupplierWarehouse setDeliveryDays(Short value) { this.DeliveryDays = value; return this; } public BigDecimal getSuppliersCost() { return SuppliersCost; } public IN_SupplierWarehouse setSuppliersCost(BigDecimal value) { this.SuppliersCost = value; return this; } public BigDecimal getHomeSuppliersCost() { return HomeSuppliersCost; } public IN_SupplierWarehouse setHomeSuppliersCost(BigDecimal value) { this.HomeSuppliersCost = value; return this; } public String getDutyID() { return DutyID; } public IN_SupplierWarehouse setDutyID(String value) { this.DutyID = value; return this; } public BigDecimal getSupplierSOH() { return SupplierSOH; } public IN_SupplierWarehouse setSupplierSOH(BigDecimal value) { this.SupplierSOH = value; return this; } public BigDecimal getSuppliersCost2() { return SuppliersCost2; } public IN_SupplierWarehouse setSuppliersCost2(BigDecimal value) { this.SuppliersCost2 = value; return this; } public BigDecimal getHomeSuppliersCost2() { return HomeSuppliersCost2; } public IN_SupplierWarehouse setHomeSuppliersCost2(BigDecimal value) { this.HomeSuppliersCost2 = value; return this; } public BigDecimal getSpareFloat1() { return SpareFloat1; } public IN_SupplierWarehouse setSpareFloat1(BigDecimal value) { this.SpareFloat1 = value; return this; } public BigDecimal getSpareFloat2() { return SpareFloat2; } public IN_SupplierWarehouse setSpareFloat2(BigDecimal value) { this.SpareFloat2 = value; return this; } public BigDecimal getSpareFloat3() { return SpareFloat3; } public IN_SupplierWarehouse setSpareFloat3(BigDecimal value) { this.SpareFloat3 = value; return this; } public String getSpareString1() { return SpareString1; } public IN_SupplierWarehouse setSpareString1(String value) { this.SpareString1 = value; return this; } public String getSpareString2() { return SpareString2; } public IN_SupplierWarehouse setSpareString2(String value) { this.SpareString2 = value; return this; } public String getSpareString3() { return SpareString3; } public IN_SupplierWarehouse setSpareString3(String value) { this.SpareString3 = value; return this; } public Date getSpareDate1() { return SpareDate1; } public IN_SupplierWarehouse setSpareDate1(Date value) { this.SpareDate1 = value; return this; } public Date getSpareDate2() { return SpareDate2; } public IN_SupplierWarehouse setSpareDate2(Date value) { this.SpareDate2 = value; return this; } public Date getSpareDate3() { return SpareDate3; } public IN_SupplierWarehouse setSpareDate3(Date value) { this.SpareDate3 = value; return this; } public Boolean isDefaultSupplierWarehouse() { return DefaultSupplierWarehouse; } public IN_SupplierWarehouse setDefaultSupplierWarehouse(Boolean value) { this.DefaultSupplierWarehouse = value; return this; } public Integer getItemNo() { return ItemNo; } public IN_SupplierWarehouse setItemNo(Integer value) { this.ItemNo = value; return this; } public UUID getInUnitOfMeasureRecID() { return IN_UnitOfMeasure_RecID; } public IN_SupplierWarehouse setInUnitOfMeasureRecID(UUID value) { this.IN_UnitOfMeasure_RecID = value; return this; } } public static class IN_SupplierWarehouseCustomFields { @Required() public String FieldID = null; @Required() public String SettingName = null; public String SettingDescription = null; public Integer CellType = null; public String FieldParameter = null; @References(SY_Plugin.class) @Required() public UUID SY_Plugin_RecID = null; @Required() public Date LastSavedDateTime = null; public Integer DisplayOrder = null; public String getFieldID() { return FieldID; } public IN_SupplierWarehouseCustomFields setFieldID(String value) { this.FieldID = value; return this; } public String getSettingName() { return SettingName; } public IN_SupplierWarehouseCustomFields setSettingName(String value) { this.SettingName = value; return this; } public String getSettingDescription() { return SettingDescription; } public IN_SupplierWarehouseCustomFields setSettingDescription(String value) { this.SettingDescription = value; return this; } public Integer getCellType() { return CellType; } public IN_SupplierWarehouseCustomFields setCellType(Integer value) { this.CellType = value; return this; } public String getFieldParameter() { return FieldParameter; } public IN_SupplierWarehouseCustomFields setFieldParameter(String value) { this.FieldParameter = value; return this; } public UUID getSyPluginRecID() { return SY_Plugin_RecID; } public IN_SupplierWarehouseCustomFields setSyPluginRecID(UUID value) { this.SY_Plugin_RecID = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public IN_SupplierWarehouseCustomFields setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Integer getDisplayOrder() { return DisplayOrder; } public IN_SupplierWarehouseCustomFields setDisplayOrder(Integer value) { this.DisplayOrder = value; return this; } } public static class IN_SupplierWarehouseCustomValues { @Required() public String RecID = null; @References(IN_SupplierWarehouse.class) public String InvSuppSourceID = null; @References(IN_SupplierWarehouseCustomFields.class) @Required() public String FieldID = null; public String Contents = null; @Required() public Date LastSavedDateTime = null; public String getRecID() { return RecID; } public IN_SupplierWarehouseCustomValues setRecID(String value) { this.RecID = value; return this; } public String getInvSuppSourceID() { return InvSuppSourceID; } public IN_SupplierWarehouseCustomValues setInvSuppSourceID(String value) { this.InvSuppSourceID = value; return this; } public String getFieldID() { return FieldID; } public IN_SupplierWarehouseCustomValues setFieldID(String value) { this.FieldID = value; return this; } public String getContents() { return Contents; } public IN_SupplierWarehouseCustomValues setContents(String value) { this.Contents = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public IN_SupplierWarehouseCustomValues setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } } public static class IN_Transfer { @Required() public String TransferID = null; public Date LastSavedDateTime = null; @Required() public String TransferNo = null; public Date TransferDate = null; public String Reference = null; @Required() public String IN_LogicalID = null; @Required() public Short Status = null; public Date CreatedDateTime = null; public String CreatedByStaffID = null; public String LastSavedByStaffID = null; @References(IN_TransferReasons.class) @Required() public String IN_TransferReasons_RecID = null; public String getTransferID() { return TransferID; } public IN_Transfer setTransferID(String value) { this.TransferID = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public IN_Transfer setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public String getTransferNo() { return TransferNo; } public IN_Transfer setTransferNo(String value) { this.TransferNo = value; return this; } public Date getTransferDate() { return TransferDate; } public IN_Transfer setTransferDate(Date value) { this.TransferDate = value; return this; } public String getReference() { return Reference; } public IN_Transfer setReference(String value) { this.Reference = value; return this; } public String getInLogicalID() { return IN_LogicalID; } public IN_Transfer setInLogicalID(String value) { this.IN_LogicalID = value; return this; } public Short getStatus() { return Status; } public IN_Transfer setStatus(Short value) { this.Status = value; return this; } public Date getCreatedDateTime() { return CreatedDateTime; } public IN_Transfer setCreatedDateTime(Date value) { this.CreatedDateTime = value; return this; } public String getCreatedByStaffID() { return CreatedByStaffID; } public IN_Transfer setCreatedByStaffID(String value) { this.CreatedByStaffID = value; return this; } public String getLastSavedByStaffID() { return LastSavedByStaffID; } public IN_Transfer setLastSavedByStaffID(String value) { this.LastSavedByStaffID = value; return this; } public String getInTransferReasonsRecID() { return IN_TransferReasons_RecID; } public IN_Transfer setInTransferReasonsRecID(String value) { this.IN_TransferReasons_RecID = value; return this; } } public static class IN_TransferCustomSetting { @Required() public String SettingID = null; @Required() public Date LastSavedDateTime = null; public String SettingDescription = null; public String SettingName = null; public BigDecimal DisplayOrder = null; public Short CellType = null; public String ScriptFormatCell = null; public String ScriptButtonClicked = null; public String ScriptReadData = null; @References(SY_Plugin.class) @Required() public UUID SY_Plugin_RecID = null; public String getSettingID() { return SettingID; } public IN_TransferCustomSetting setSettingID(String value) { this.SettingID = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public IN_TransferCustomSetting setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public String getSettingDescription() { return SettingDescription; } public IN_TransferCustomSetting setSettingDescription(String value) { this.SettingDescription = value; return this; } public String getSettingName() { return SettingName; } public IN_TransferCustomSetting setSettingName(String value) { this.SettingName = value; return this; } public BigDecimal getDisplayOrder() { return DisplayOrder; } public IN_TransferCustomSetting setDisplayOrder(BigDecimal value) { this.DisplayOrder = value; return this; } public Short getCellType() { return CellType; } public IN_TransferCustomSetting setCellType(Short value) { this.CellType = value; return this; } public String getScriptFormatCell() { return ScriptFormatCell; } public IN_TransferCustomSetting setScriptFormatCell(String value) { this.ScriptFormatCell = value; return this; } public String getScriptButtonClicked() { return ScriptButtonClicked; } public IN_TransferCustomSetting setScriptButtonClicked(String value) { this.ScriptButtonClicked = value; return this; } public String getScriptReadData() { return ScriptReadData; } public IN_TransferCustomSetting setScriptReadData(String value) { this.ScriptReadData = value; return this; } public UUID getSyPluginRecID() { return SY_Plugin_RecID; } public IN_TransferCustomSetting setSyPluginRecID(UUID value) { this.SY_Plugin_RecID = value; return this; } } public static class IN_TransferCustomSettingValues { @Required() public String SettingValueID = null; @References(IN_TransferCustomSetting.class) public String SettingID = null; @References(IN_Transfer.class) @Required() public String TransferID = null; public String Contents = null; @Required() public Date LastSavedDateTime = null; public String getSettingValueID() { return SettingValueID; } public IN_TransferCustomSettingValues setSettingValueID(String value) { this.SettingValueID = value; return this; } public String getSettingID() { return SettingID; } public IN_TransferCustomSettingValues setSettingID(String value) { this.SettingID = value; return this; } public String getTransferID() { return TransferID; } public IN_TransferCustomSettingValues setTransferID(String value) { this.TransferID = value; return this; } public String getContents() { return Contents; } public IN_TransferCustomSettingValues setContents(String value) { this.Contents = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public IN_TransferCustomSettingValues setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } } public static class IN_TransferDocuments { @Required() public String RecID = null; @Required() public String TransferID = null; @Required() public String DocumentTypeID = null; public Date LastSavedDateTime = null; @Required() public String LastSavedByStaffID = null; public ArrayList FileBinary = null; public String Description = null; public String PhysicalFileName = null; @Required() public Integer ItemNo = null; public String getRecID() { return RecID; } public IN_TransferDocuments setRecID(String value) { this.RecID = value; return this; } public String getTransferID() { return TransferID; } public IN_TransferDocuments setTransferID(String value) { this.TransferID = value; return this; } public String getDocumentTypeID() { return DocumentTypeID; } public IN_TransferDocuments setDocumentTypeID(String value) { this.DocumentTypeID = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public IN_TransferDocuments setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public String getLastSavedByStaffID() { return LastSavedByStaffID; } public IN_TransferDocuments setLastSavedByStaffID(String value) { this.LastSavedByStaffID = value; return this; } public ArrayList getFileBinary() { return FileBinary; } public IN_TransferDocuments setFileBinary(ArrayList value) { this.FileBinary = value; return this; } public String getDescription() { return Description; } public IN_TransferDocuments setDescription(String value) { this.Description = value; return this; } public String getPhysicalFileName() { return PhysicalFileName; } public IN_TransferDocuments setPhysicalFileName(String value) { this.PhysicalFileName = value; return this; } public Integer getItemNo() { return ItemNo; } public IN_TransferDocuments setItemNo(Integer value) { this.ItemNo = value; return this; } } public static class IN_TransferLineCustomField { @Required() public String RecID = null; @Required() public String SettingName = null; public String SettingDescription = null; public Integer CellType = null; public String FieldParameter = null; @References(SY_Plugin.class) @Required() public UUID SY_Plugin_RecID = null; public Date LastSavedDateTime = null; public Integer DisplayOrder = null; public String getRecID() { return RecID; } public IN_TransferLineCustomField setRecID(String value) { this.RecID = value; return this; } public String getSettingName() { return SettingName; } public IN_TransferLineCustomField setSettingName(String value) { this.SettingName = value; return this; } public String getSettingDescription() { return SettingDescription; } public IN_TransferLineCustomField setSettingDescription(String value) { this.SettingDescription = value; return this; } public Integer getCellType() { return CellType; } public IN_TransferLineCustomField setCellType(Integer value) { this.CellType = value; return this; } public String getFieldParameter() { return FieldParameter; } public IN_TransferLineCustomField setFieldParameter(String value) { this.FieldParameter = value; return this; } public UUID getSyPluginRecID() { return SY_Plugin_RecID; } public IN_TransferLineCustomField setSyPluginRecID(UUID value) { this.SY_Plugin_RecID = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public IN_TransferLineCustomField setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Integer getDisplayOrder() { return DisplayOrder; } public IN_TransferLineCustomField setDisplayOrder(Integer value) { this.DisplayOrder = value; return this; } } public static class IN_TransferLineCustomValue { @Required() public String RecID = null; @References(IN_TransferLines.class) @Required() public String IN_TransferLines_TransferLineID = null; @References(IN_TransferLineCustomField.class) @Required() public String IN_TransferLineCustomField_RecID = null; public String Contents = null; public Date LastSavedDateTime = null; public String getRecID() { return RecID; } public IN_TransferLineCustomValue setRecID(String value) { this.RecID = value; return this; } public String getInTransferLinesTransferLineID() { return IN_TransferLines_TransferLineID; } public IN_TransferLineCustomValue setInTransferLinesTransferLineID(String value) { this.IN_TransferLines_TransferLineID = value; return this; } public String getInTransferLineCustomFieldRecID() { return IN_TransferLineCustomField_RecID; } public IN_TransferLineCustomValue setInTransferLineCustomFieldRecID(String value) { this.IN_TransferLineCustomField_RecID = value; return this; } public String getContents() { return Contents; } public IN_TransferLineCustomValue setContents(String value) { this.Contents = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public IN_TransferLineCustomValue setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } } public static class IN_TransferLines { @Required() public String TransferLineID = null; @References(IN_Transfer.class) @Required() public String TransferID = null; public String FromPartInventoryID = null; public String FromPartInventorySOHID = null; public String FromPartNo = null; public String FromPartDescription = null; public BigDecimal FromPartOriginalQuantity = null; public BigDecimal TransferQuantity = null; public String ToPartInventoryID = null; public String ToPartNo = null; public String ToPartDescription = null; public Integer TransferLineNo = null; public String ToPartSerialNo = null; public String Reference = null; public String ToPartInventorySOHID = null; public Date CreatedDateTime = null; public Date LastSavedDateTime = null; public String CreatedByStaffID = null; public String LastSavedByStaffID = null; public Short FromPartDecimalPlaces = null; public Short ToPartDecimalPlaces = null; @References(GL_Ledger.class) public String FromPartInventoryValueAccountID = null; @References(GL_Ledger.class) public String ToPartInventoryValueAccountID = null; @References(GL_Ledger.class) public String FromPartWriteOnAccountID = null; @References(GL_Ledger.class) public String ToPartWriteOnAccountID = null; @References(GL_Ledger.class) public String FromPartWriteOffAccountID = null; @References(GL_Ledger.class) public String ToPartWriteOffAccountID = null; public BigDecimal FromPartLastCost = null; public BigDecimal ToPartLastCost = null; public String ToPartBinLocation = null; public String ToPartComment = null; public Date ToPartExpiryDate = null; @References(IN_TransferReasons.class) public String IN_TransferReasons_RecID = null; public String getTransferLineID() { return TransferLineID; } public IN_TransferLines setTransferLineID(String value) { this.TransferLineID = value; return this; } public String getTransferID() { return TransferID; } public IN_TransferLines setTransferID(String value) { this.TransferID = value; return this; } public String getFromPartInventoryID() { return FromPartInventoryID; } public IN_TransferLines setFromPartInventoryID(String value) { this.FromPartInventoryID = value; return this; } public String getFromPartInventorySOHID() { return FromPartInventorySOHID; } public IN_TransferLines setFromPartInventorySOHID(String value) { this.FromPartInventorySOHID = value; return this; } public String getFromPartNo() { return FromPartNo; } public IN_TransferLines setFromPartNo(String value) { this.FromPartNo = value; return this; } public String getFromPartDescription() { return FromPartDescription; } public IN_TransferLines setFromPartDescription(String value) { this.FromPartDescription = value; return this; } public BigDecimal getFromPartOriginalQuantity() { return FromPartOriginalQuantity; } public IN_TransferLines setFromPartOriginalQuantity(BigDecimal value) { this.FromPartOriginalQuantity = value; return this; } public BigDecimal getTransferQuantity() { return TransferQuantity; } public IN_TransferLines setTransferQuantity(BigDecimal value) { this.TransferQuantity = value; return this; } public String getToPartInventoryID() { return ToPartInventoryID; } public IN_TransferLines setToPartInventoryID(String value) { this.ToPartInventoryID = value; return this; } public String getToPartNo() { return ToPartNo; } public IN_TransferLines setToPartNo(String value) { this.ToPartNo = value; return this; } public String getToPartDescription() { return ToPartDescription; } public IN_TransferLines setToPartDescription(String value) { this.ToPartDescription = value; return this; } public Integer getTransferLineNo() { return TransferLineNo; } public IN_TransferLines setTransferLineNo(Integer value) { this.TransferLineNo = value; return this; } public String getToPartSerialNo() { return ToPartSerialNo; } public IN_TransferLines setToPartSerialNo(String value) { this.ToPartSerialNo = value; return this; } public String getReference() { return Reference; } public IN_TransferLines setReference(String value) { this.Reference = value; return this; } public String getToPartInventorySOHID() { return ToPartInventorySOHID; } public IN_TransferLines setToPartInventorySOHID(String value) { this.ToPartInventorySOHID = value; return this; } public Date getCreatedDateTime() { return CreatedDateTime; } public IN_TransferLines setCreatedDateTime(Date value) { this.CreatedDateTime = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public IN_TransferLines setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public String getCreatedByStaffID() { return CreatedByStaffID; } public IN_TransferLines setCreatedByStaffID(String value) { this.CreatedByStaffID = value; return this; } public String getLastSavedByStaffID() { return LastSavedByStaffID; } public IN_TransferLines setLastSavedByStaffID(String value) { this.LastSavedByStaffID = value; return this; } public Short getFromPartDecimalPlaces() { return FromPartDecimalPlaces; } public IN_TransferLines setFromPartDecimalPlaces(Short value) { this.FromPartDecimalPlaces = value; return this; } public Short getToPartDecimalPlaces() { return ToPartDecimalPlaces; } public IN_TransferLines setToPartDecimalPlaces(Short value) { this.ToPartDecimalPlaces = value; return this; } public String getFromPartInventoryValueAccountID() { return FromPartInventoryValueAccountID; } public IN_TransferLines setFromPartInventoryValueAccountID(String value) { this.FromPartInventoryValueAccountID = value; return this; } public String getToPartInventoryValueAccountID() { return ToPartInventoryValueAccountID; } public IN_TransferLines setToPartInventoryValueAccountID(String value) { this.ToPartInventoryValueAccountID = value; return this; } public String getFromPartWriteOnAccountID() { return FromPartWriteOnAccountID; } public IN_TransferLines setFromPartWriteOnAccountID(String value) { this.FromPartWriteOnAccountID = value; return this; } public String getToPartWriteOnAccountID() { return ToPartWriteOnAccountID; } public IN_TransferLines setToPartWriteOnAccountID(String value) { this.ToPartWriteOnAccountID = value; return this; } public String getFromPartWriteOffAccountID() { return FromPartWriteOffAccountID; } public IN_TransferLines setFromPartWriteOffAccountID(String value) { this.FromPartWriteOffAccountID = value; return this; } public String getToPartWriteOffAccountID() { return ToPartWriteOffAccountID; } public IN_TransferLines setToPartWriteOffAccountID(String value) { this.ToPartWriteOffAccountID = value; return this; } public BigDecimal getFromPartLastCost() { return FromPartLastCost; } public IN_TransferLines setFromPartLastCost(BigDecimal value) { this.FromPartLastCost = value; return this; } public BigDecimal getToPartLastCost() { return ToPartLastCost; } public IN_TransferLines setToPartLastCost(BigDecimal value) { this.ToPartLastCost = value; return this; } public String getToPartBinLocation() { return ToPartBinLocation; } public IN_TransferLines setToPartBinLocation(String value) { this.ToPartBinLocation = value; return this; } public String getToPartComment() { return ToPartComment; } public IN_TransferLines setToPartComment(String value) { this.ToPartComment = value; return this; } public Date getToPartExpiryDate() { return ToPartExpiryDate; } public IN_TransferLines setToPartExpiryDate(Date value) { this.ToPartExpiryDate = value; return this; } public String getInTransferReasonsRecID() { return IN_TransferReasons_RecID; } public IN_TransferLines setInTransferReasonsRecID(String value) { this.IN_TransferReasons_RecID = value; return this; } } public static class IN_TransferNotes { @Required() public String RecID = null; @Required() public String TransferID = null; @Required() public String NoteTypeID = null; @Required() public Date LastSavedDateTime = null; @Required() public String LastSavedByStaffID = null; public String NoteText = null; @Required() public Integer ItemNo = null; public String getRecID() { return RecID; } public IN_TransferNotes setRecID(String value) { this.RecID = value; return this; } public String getTransferID() { return TransferID; } public IN_TransferNotes setTransferID(String value) { this.TransferID = value; return this; } public String getNoteTypeID() { return NoteTypeID; } public IN_TransferNotes setNoteTypeID(String value) { this.NoteTypeID = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public IN_TransferNotes setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public String getLastSavedByStaffID() { return LastSavedByStaffID; } public IN_TransferNotes setLastSavedByStaffID(String value) { this.LastSavedByStaffID = value; return this; } public String getNoteText() { return NoteText; } public IN_TransferNotes setNoteText(String value) { this.NoteText = value; return this; } public Integer getItemNo() { return ItemNo; } public IN_TransferNotes setItemNo(Integer value) { this.ItemNo = value; return this; } } public static class IN_TransferReasons { @Required() public String RecID = null; @Required() public String Name = null; public Boolean WriteOffAccountOverride = null; public String WriteOffAccountID = null; public Boolean WriteOnAccountOverride = null; public String WriteOnAccountID = null; public Boolean DefaultReason = null; public Boolean ReadOnly = null; public Date CreatedDateTime = null; @References(HR_Staff.class) @Required() public String CreatedByStaffID = null; public Date LastSavedDateTime = null; @References(HR_Staff.class) @Required() public String LastSavedByStaffID = null; public Integer ItemNo = null; @Required() public ArrayList RowHash = null; public String getRecID() { return RecID; } public IN_TransferReasons setRecID(String value) { this.RecID = value; return this; } public String getName() { return Name; } public IN_TransferReasons setName(String value) { this.Name = value; return this; } public Boolean isWriteOffAccountOverride() { return WriteOffAccountOverride; } public IN_TransferReasons setWriteOffAccountOverride(Boolean value) { this.WriteOffAccountOverride = value; return this; } public String getWriteOffAccountID() { return WriteOffAccountID; } public IN_TransferReasons setWriteOffAccountID(String value) { this.WriteOffAccountID = value; return this; } public Boolean isWriteOnAccountOverride() { return WriteOnAccountOverride; } public IN_TransferReasons setWriteOnAccountOverride(Boolean value) { this.WriteOnAccountOverride = value; return this; } public String getWriteOnAccountID() { return WriteOnAccountID; } public IN_TransferReasons setWriteOnAccountID(String value) { this.WriteOnAccountID = value; return this; } public Boolean isDefaultReason() { return DefaultReason; } public IN_TransferReasons setDefaultReason(Boolean value) { this.DefaultReason = value; return this; } public Boolean isReadOnly() { return ReadOnly; } public IN_TransferReasons setReadOnly(Boolean value) { this.ReadOnly = value; return this; } public Date getCreatedDateTime() { return CreatedDateTime; } public IN_TransferReasons setCreatedDateTime(Date value) { this.CreatedDateTime = value; return this; } public String getCreatedByStaffID() { return CreatedByStaffID; } public IN_TransferReasons setCreatedByStaffID(String value) { this.CreatedByStaffID = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public IN_TransferReasons setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public String getLastSavedByStaffID() { return LastSavedByStaffID; } public IN_TransferReasons setLastSavedByStaffID(String value) { this.LastSavedByStaffID = value; return this; } public Integer getItemNo() { return ItemNo; } public IN_TransferReasons setItemNo(Integer value) { this.ItemNo = value; return this; } public ArrayList getRowHash() { return RowHash; } public IN_TransferReasons setRowHash(ArrayList value) { this.RowHash = value; return this; } } public static class IN_UnitOfMeasure { @Required() public UUID RecID = null; @References(IN_Main.class) @Required() public String IN_Main_InventoryID = null; @Required() public String Name = null; @References(IN_UnitOfMeasure.class) public UUID Inner_IN_UnitOfMeasure_RecID = null; @Required() public BigDecimal QuantityInnersPerUnitOfMeasure = null; @Required() public Boolean IsSell = null; @Required() public Boolean IsPurchase = null; public String PartNo = null; public String Barcode = null; @Required() public Boolean IsEnabled = null; @Required() public Integer ItemNo = null; @Required() public Date LastSavedDateTime = null; @Required() public ArrayList RowHash = null; public UUID getRecID() { return RecID; } public IN_UnitOfMeasure setRecID(UUID value) { this.RecID = value; return this; } public String getInMainInventoryID() { return IN_Main_InventoryID; } public IN_UnitOfMeasure setInMainInventoryID(String value) { this.IN_Main_InventoryID = value; return this; } public String getName() { return Name; } public IN_UnitOfMeasure setName(String value) { this.Name = value; return this; } public UUID getInnerInUnitOfMeasureRecID() { return Inner_IN_UnitOfMeasure_RecID; } public IN_UnitOfMeasure setInnerInUnitOfMeasureRecID(UUID value) { this.Inner_IN_UnitOfMeasure_RecID = value; return this; } public BigDecimal getQuantityInnersPerUnitOfMeasure() { return QuantityInnersPerUnitOfMeasure; } public IN_UnitOfMeasure setQuantityInnersPerUnitOfMeasure(BigDecimal value) { this.QuantityInnersPerUnitOfMeasure = value; return this; } public Boolean getIsSell() { return IsSell; } public IN_UnitOfMeasure setIsSell(Boolean value) { this.IsSell = value; return this; } public Boolean getIsPurchase() { return IsPurchase; } public IN_UnitOfMeasure setIsPurchase(Boolean value) { this.IsPurchase = value; return this; } public String getPartNo() { return PartNo; } public IN_UnitOfMeasure setPartNo(String value) { this.PartNo = value; return this; } public String getBarcode() { return Barcode; } public IN_UnitOfMeasure setBarcode(String value) { this.Barcode = value; return this; } public Boolean getIsEnabled() { return IsEnabled; } public IN_UnitOfMeasure setIsEnabled(Boolean value) { this.IsEnabled = value; return this; } public Integer getItemNo() { return ItemNo; } public IN_UnitOfMeasure setItemNo(Integer value) { this.ItemNo = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public IN_UnitOfMeasure setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public ArrayList getRowHash() { return RowHash; } public IN_UnitOfMeasure setRowHash(ArrayList value) { this.RowHash = value; return this; } } public static class IN_UpSell { @Required() public String RecID = null; @Required() public String InventoryID = null; @Required() public String UpSellInventoryID = null; public String Description = null; @Required() public String PrimaryCategoryID = null; @Required() public String SecondaryCategoryID = null; public BigDecimal Quantity = null; public String getRecID() { return RecID; } public IN_UpSell setRecID(String value) { this.RecID = value; return this; } public String getInventoryID() { return InventoryID; } public IN_UpSell setInventoryID(String value) { this.InventoryID = value; return this; } public String getUpSellInventoryID() { return UpSellInventoryID; } public IN_UpSell setUpSellInventoryID(String value) { this.UpSellInventoryID = value; return this; } public String getDescription() { return Description; } public IN_UpSell setDescription(String value) { this.Description = value; return this; } public String getPrimaryCategoryID() { return PrimaryCategoryID; } public IN_UpSell setPrimaryCategoryID(String value) { this.PrimaryCategoryID = value; return this; } public String getSecondaryCategoryID() { return SecondaryCategoryID; } public IN_UpSell setSecondaryCategoryID(String value) { this.SecondaryCategoryID = value; return this; } public BigDecimal getQuantity() { return Quantity; } public IN_UpSell setQuantity(BigDecimal value) { this.Quantity = value; return this; } } public static class IN_WarehouseSOH { @Required() public String IN_WarehouseSOHID = null; @References(IN_Main.class) @Required() public String InventoryID = null; @References(IN_Logical.class) @Required() public String IN_LogicalID = null; public BigDecimal QuantityLeft = null; public BigDecimal QuantityAllocated = null; public BigDecimal PickAllocated = null; public BigDecimal ShipAllocated = null; public BigDecimal ForwardRequirements = null; public BigDecimal TransferAllocated = null; public BigDecimal BOMAllocated = null; public String getInWarehouseSOHID() { return IN_WarehouseSOHID; } public IN_WarehouseSOH setInWarehouseSOHID(String value) { this.IN_WarehouseSOHID = value; return this; } public String getInventoryID() { return InventoryID; } public IN_WarehouseSOH setInventoryID(String value) { this.InventoryID = value; return this; } public String getInLogicalID() { return IN_LogicalID; } public IN_WarehouseSOH setInLogicalID(String value) { this.IN_LogicalID = value; return this; } public BigDecimal getQuantityLeft() { return QuantityLeft; } public IN_WarehouseSOH setQuantityLeft(BigDecimal value) { this.QuantityLeft = value; return this; } public BigDecimal getQuantityAllocated() { return QuantityAllocated; } public IN_WarehouseSOH setQuantityAllocated(BigDecimal value) { this.QuantityAllocated = value; return this; } public BigDecimal getPickAllocated() { return PickAllocated; } public IN_WarehouseSOH setPickAllocated(BigDecimal value) { this.PickAllocated = value; return this; } public BigDecimal getShipAllocated() { return ShipAllocated; } public IN_WarehouseSOH setShipAllocated(BigDecimal value) { this.ShipAllocated = value; return this; } public BigDecimal getForwardRequirements() { return ForwardRequirements; } public IN_WarehouseSOH setForwardRequirements(BigDecimal value) { this.ForwardRequirements = value; return this; } public BigDecimal getTransferAllocated() { return TransferAllocated; } public IN_WarehouseSOH setTransferAllocated(BigDecimal value) { this.TransferAllocated = value; return this; } public BigDecimal getBomAllocated() { return BOMAllocated; } public IN_WarehouseSOH setBomAllocated(BigDecimal value) { this.BOMAllocated = value; return this; } } public static class IN_WHQtyLeft { @Required() public String InventoryID = null; public BigDecimal QtyLeft = null; public String getInventoryID() { return InventoryID; } public IN_WHQtyLeft setInventoryID(String value) { this.InventoryID = value; return this; } public BigDecimal getQtyLeft() { return QtyLeft; } public IN_WHQtyLeft setQtyLeft(BigDecimal value) { this.QtyLeft = value; return this; } } public static class INMGT020BOQTY { @Required() public String InventoryID = null; public BigDecimal Qty = null; public BigDecimal Price = null; public BigDecimal EstBOValue = null; @Required() public String IN_LogicalID = null; public String getInventoryID() { return InventoryID; } public INMGT020BOQTY setInventoryID(String value) { this.InventoryID = value; return this; } public BigDecimal getQty() { return Qty; } public INMGT020BOQTY setQty(BigDecimal value) { this.Qty = value; return this; } public BigDecimal getPrice() { return Price; } public INMGT020BOQTY setPrice(BigDecimal value) { this.Price = value; return this; } public BigDecimal getEstBOValue() { return EstBOValue; } public INMGT020BOQTY setEstBOValue(BigDecimal value) { this.EstBOValue = value; return this; } public String getInLogicalID() { return IN_LogicalID; } public INMGT020BOQTY setInLogicalID(String value) { this.IN_LogicalID = value; return this; } } public static class INMGT020POQty { @Required() public String InventoryID = null; public BigDecimal Qty = null; public BigDecimal Delivered = null; public BigDecimal UnactQty = null; public BigDecimal ActQty = null; @Required() public String IN_LogicalID = null; public String getInventoryID() { return InventoryID; } public INMGT020POQty setInventoryID(String value) { this.InventoryID = value; return this; } public BigDecimal getQty() { return Qty; } public INMGT020POQty setQty(BigDecimal value) { this.Qty = value; return this; } public BigDecimal getDelivered() { return Delivered; } public INMGT020POQty setDelivered(BigDecimal value) { this.Delivered = value; return this; } public BigDecimal getUnactQty() { return UnactQty; } public INMGT020POQty setUnactQty(BigDecimal value) { this.UnactQty = value; return this; } public BigDecimal getActQty() { return ActQty; } public INMGT020POQty setActQty(BigDecimal value) { this.ActQty = value; return this; } public String getInLogicalID() { return IN_LogicalID; } public INMGT020POQty setInLogicalID(String value) { this.IN_LogicalID = value; return this; } } public static class INV_Assembly { public String AssemblyNO = null; public String AssembleTo = null; @Required() public String AssemblyType = null; public String AssembleFrom = null; @Required() public String INAssemblyHistoryID = null; @Required() public String INAssemblyLineID = null; public String getAssemblyNO() { return AssemblyNO; } public INV_Assembly setAssemblyNO(String value) { this.AssemblyNO = value; return this; } public String getAssembleTo() { return AssembleTo; } public INV_Assembly setAssembleTo(String value) { this.AssembleTo = value; return this; } public String getAssemblyType() { return AssemblyType; } public INV_Assembly setAssemblyType(String value) { this.AssemblyType = value; return this; } public String getAssembleFrom() { return AssembleFrom; } public INV_Assembly setAssembleFrom(String value) { this.AssembleFrom = value; return this; } public String getInAssemblyHistoryID() { return INAssemblyHistoryID; } public INV_Assembly setInAssemblyHistoryID(String value) { this.INAssemblyHistoryID = value; return this; } public String getInAssemblyLineID() { return INAssemblyLineID; } public INV_Assembly setInAssemblyLineID(String value) { this.INAssemblyLineID = value; return this; } } public static class INV_BOQTY { @Required() public String InventoryID = null; public BigDecimal Qty = null; public BigDecimal ManualQty = null; public BigDecimal AutoQty = null; public BigDecimal Price = null; public BigDecimal EstBOValue = null; @Required() public String In_logicalID = null; public String getInventoryID() { return InventoryID; } public INV_BOQTY setInventoryID(String value) { this.InventoryID = value; return this; } public BigDecimal getQty() { return Qty; } public INV_BOQTY setQty(BigDecimal value) { this.Qty = value; return this; } public BigDecimal getManualQty() { return ManualQty; } public INV_BOQTY setManualQty(BigDecimal value) { this.ManualQty = value; return this; } public BigDecimal getAutoQty() { return AutoQty; } public INV_BOQTY setAutoQty(BigDecimal value) { this.AutoQty = value; return this; } public BigDecimal getPrice() { return Price; } public INV_BOQTY setPrice(BigDecimal value) { this.Price = value; return this; } public BigDecimal getEstBOValue() { return EstBOValue; } public INV_BOQTY setEstBOValue(BigDecimal value) { this.EstBOValue = value; return this; } public String getInLogicalID() { return In_logicalID; } public INV_BOQTY setInLogicalID(String value) { this.In_logicalID = value; return this; } } public static class INV_OnOrder { @Required() public String InventoryID = null; public BigDecimal OnOrder = null; @Required() public String IN_logicalID = null; public String getInventoryID() { return InventoryID; } public INV_OnOrder setInventoryID(String value) { this.InventoryID = value; return this; } public BigDecimal getOnOrder() { return OnOrder; } public INV_OnOrder setOnOrder(BigDecimal value) { this.OnOrder = value; return this; } public String getInLogicalID() { return IN_logicalID; } public INV_OnOrder setInLogicalID(String value) { this.IN_logicalID = value; return this; } } public static class INV_OnOrderStatus { @Required() public String InventoryID = null; public BigDecimal OnOrder = null; @Required() public Short Status = null; public String getInventoryID() { return InventoryID; } public INV_OnOrderStatus setInventoryID(String value) { this.InventoryID = value; return this; } public BigDecimal getOnOrder() { return OnOrder; } public INV_OnOrderStatus setOnOrder(BigDecimal value) { this.OnOrder = value; return this; } public Short getStatus() { return Status; } public INV_OnOrderStatus setStatus(Short value) { this.Status = value; return this; } } public static class INV_PI { public String InvoiceNO = null; public String SuppPart = null; public String AccountNo = null; public String SerialNo = null; public String BinLoc = null; @Required() public String PI_LinesDetailsID = null; public String getInvoiceNO() { return InvoiceNO; } public INV_PI setInvoiceNO(String value) { this.InvoiceNO = value; return this; } public String getSuppPart() { return SuppPart; } public INV_PI setSuppPart(String value) { this.SuppPart = value; return this; } public String getAccountNo() { return AccountNo; } public INV_PI setAccountNo(String value) { this.AccountNo = value; return this; } public String getSerialNo() { return SerialNo; } public INV_PI setSerialNo(String value) { this.SerialNo = value; return this; } public String getBinLoc() { return BinLoc; } public INV_PI setBinLoc(String value) { this.BinLoc = value; return this; } public String getPiLinesDetailsID() { return PI_LinesDetailsID; } public INV_PI setPiLinesDetailsID(String value) { this.PI_LinesDetailsID = value; return this; } } public static class INV_Receival { public String SlipNo = null; public String SuppPart = null; public String AccountNO = null; @Required() public String SourceID = null; public String getSlipNo() { return SlipNo; } public INV_Receival setSlipNo(String value) { this.SlipNo = value; return this; } public String getSuppPart() { return SuppPart; } public INV_Receival setSuppPart(String value) { this.SuppPart = value; return this; } public String getAccountNO() { return AccountNO; } public INV_Receival setAccountNO(String value) { this.AccountNO = value; return this; } public String getSourceID() { return SourceID; } public INV_Receival setSourceID(String value) { this.SourceID = value; return this; } } public static class Inv_Sales { public String FullInvNo = null; public String orderno = null; public String Accountno = null; public String QtyOrd = null; @Required() public String InvoiceLineID = null; public String InventoryID = null; @Required() public String InvoiceHistoryID = null; public String getFullInvNo() { return FullInvNo; } public Inv_Sales setFullInvNo(String value) { this.FullInvNo = value; return this; } public String getOrderno() { return orderno; } public Inv_Sales setOrderno(String value) { this.orderno = value; return this; } public String getAccountno() { return Accountno; } public Inv_Sales setAccountno(String value) { this.Accountno = value; return this; } public String getQtyOrd() { return QtyOrd; } public Inv_Sales setQtyOrd(String value) { this.QtyOrd = value; return this; } public String getInvoiceLineID() { return InvoiceLineID; } public Inv_Sales setInvoiceLineID(String value) { this.InvoiceLineID = value; return this; } public String getInventoryID() { return InventoryID; } public Inv_Sales setInventoryID(String value) { this.InventoryID = value; return this; } public String getInvoiceHistoryID() { return InvoiceHistoryID; } public Inv_Sales setInvoiceHistoryID(String value) { this.InvoiceHistoryID = value; return this; } } public static class INV_SOH_Con { @Required() public String InventoryID = null; public BigDecimal SOH = null; public String getInventoryID() { return InventoryID; } public INV_SOH_Con setInventoryID(String value) { this.InventoryID = value; return this; } public BigDecimal getSoh() { return SOH; } public INV_SOH_Con setSoh(BigDecimal value) { this.SOH = value; return this; } } public static class INV_SOH1 { @Required() public String InventoryID = null; public BigDecimal SOH = null; public BigDecimal Tax = null; public BigDecimal VOH = null; @Required() public String IN_LogicalID = null; public String getInventoryID() { return InventoryID; } public INV_SOH1 setInventoryID(String value) { this.InventoryID = value; return this; } public BigDecimal getSoh() { return SOH; } public INV_SOH1 setSoh(BigDecimal value) { this.SOH = value; return this; } public BigDecimal getTax() { return Tax; } public INV_SOH1 setTax(BigDecimal value) { this.Tax = value; return this; } public BigDecimal getVoh() { return VOH; } public INV_SOH1 setVoh(BigDecimal value) { this.VOH = value; return this; } public String getInLogicalID() { return IN_LogicalID; } public INV_SOH1 setInLogicalID(String value) { this.IN_LogicalID = value; return this; } } public static class INV_UnProcessedQTY { public String InventoryID = null; public BigDecimal QTY = null; public BigDecimal Value = null; public BigDecimal Tax = null; @Required() public String IN_LogicalID = null; public String getInventoryID() { return InventoryID; } public INV_UnProcessedQTY setInventoryID(String value) { this.InventoryID = value; return this; } public BigDecimal getQty() { return QTY; } public INV_UnProcessedQTY setQty(BigDecimal value) { this.QTY = value; return this; } public BigDecimal getValue() { return Value; } public INV_UnProcessedQTY setValue(BigDecimal value) { this.Value = value; return this; } public BigDecimal getTax() { return Tax; } public INV_UnProcessedQTY setTax(BigDecimal value) { this.Tax = value; return this; } public String getInLogicalID() { return IN_LogicalID; } public INV_UnProcessedQTY setInLogicalID(String value) { this.IN_LogicalID = value; return this; } } public static class INV_WHTransfer { public String TransferNo = null; public String Ref = null; public String FromWH = null; public String ToWH = null; @Required() public String WH_TransferLineID = null; @Required() public String WH_TransferLineDetailsID = null; public String SerialNo = null; public String getTransferNo() { return TransferNo; } public INV_WHTransfer setTransferNo(String value) { this.TransferNo = value; return this; } public String getRef() { return Ref; } public INV_WHTransfer setRef(String value) { this.Ref = value; return this; } public String getFromWH() { return FromWH; } public INV_WHTransfer setFromWH(String value) { this.FromWH = value; return this; } public String getToWH() { return ToWH; } public INV_WHTransfer setToWH(String value) { this.ToWH = value; return this; } public String getWhTransferLineID() { return WH_TransferLineID; } public INV_WHTransfer setWhTransferLineID(String value) { this.WH_TransferLineID = value; return this; } public String getWhTransferLineDetailsID() { return WH_TransferLineDetailsID; } public INV_WHTransfer setWhTransferLineDetailsID(String value) { this.WH_TransferLineDetailsID = value; return this; } public String getSerialNo() { return SerialNo; } public INV_WHTransfer setSerialNo(String value) { this.SerialNo = value; return this; } } public static class JB_Budget { @Required() public String RecID = null; @References(JB_JobStages.class) @Required() public String JB_JobStages_RecID = null; @Required() public BigDecimal PurchaseQty = null; @Required() public BigDecimal PurchaseCost = null; @Required() public BigDecimal PurchaseCharge = null; public String PurchaseNote = null; @Required() public BigDecimal MaterialQty = null; @Required() public BigDecimal MaterialCost = null; @Required() public BigDecimal MaterialCharge = null; public String MaterialNote = null; @Required() public BigDecimal LabourQty = null; @Required() public BigDecimal LabourCost = null; @Required() public BigDecimal LabourCharge = null; public String LabourNote = null; @Required() public BigDecimal CashBookQty = null; @Required() public BigDecimal CashBookCost = null; @Required() public BigDecimal CashBookCharge = null; public String CashBookNote = null; @Required() public BigDecimal ResourceQty = null; @Required() public BigDecimal ResourceCost = null; @Required() public BigDecimal ResourceCharge = null; public String ResourceNote = null; @Required() public BigDecimal JournalQty = null; @Required() public BigDecimal JournalCost = null; @Required() public BigDecimal JournalCharge = null; public String JournalNote = null; @Required() public BigDecimal MaterialCreditorQty = null; @Required() public BigDecimal MaterialCreditorCost = null; @Required() public BigDecimal MaterialCreditorCharge = null; public String MaterialCreditorNote = null; @Required() public ArrayList RowHash = null; public String getRecID() { return RecID; } public JB_Budget setRecID(String value) { this.RecID = value; return this; } public String getJbJobStagesRecID() { return JB_JobStages_RecID; } public JB_Budget setJbJobStagesRecID(String value) { this.JB_JobStages_RecID = value; return this; } public BigDecimal getPurchaseQty() { return PurchaseQty; } public JB_Budget setPurchaseQty(BigDecimal value) { this.PurchaseQty = value; return this; } public BigDecimal getPurchaseCost() { return PurchaseCost; } public JB_Budget setPurchaseCost(BigDecimal value) { this.PurchaseCost = value; return this; } public BigDecimal getPurchaseCharge() { return PurchaseCharge; } public JB_Budget setPurchaseCharge(BigDecimal value) { this.PurchaseCharge = value; return this; } public String getPurchaseNote() { return PurchaseNote; } public JB_Budget setPurchaseNote(String value) { this.PurchaseNote = value; return this; } public BigDecimal getMaterialQty() { return MaterialQty; } public JB_Budget setMaterialQty(BigDecimal value) { this.MaterialQty = value; return this; } public BigDecimal getMaterialCost() { return MaterialCost; } public JB_Budget setMaterialCost(BigDecimal value) { this.MaterialCost = value; return this; } public BigDecimal getMaterialCharge() { return MaterialCharge; } public JB_Budget setMaterialCharge(BigDecimal value) { this.MaterialCharge = value; return this; } public String getMaterialNote() { return MaterialNote; } public JB_Budget setMaterialNote(String value) { this.MaterialNote = value; return this; } public BigDecimal getLabourQty() { return LabourQty; } public JB_Budget setLabourQty(BigDecimal value) { this.LabourQty = value; return this; } public BigDecimal getLabourCost() { return LabourCost; } public JB_Budget setLabourCost(BigDecimal value) { this.LabourCost = value; return this; } public BigDecimal getLabourCharge() { return LabourCharge; } public JB_Budget setLabourCharge(BigDecimal value) { this.LabourCharge = value; return this; } public String getLabourNote() { return LabourNote; } public JB_Budget setLabourNote(String value) { this.LabourNote = value; return this; } public BigDecimal getCashBookQty() { return CashBookQty; } public JB_Budget setCashBookQty(BigDecimal value) { this.CashBookQty = value; return this; } public BigDecimal getCashBookCost() { return CashBookCost; } public JB_Budget setCashBookCost(BigDecimal value) { this.CashBookCost = value; return this; } public BigDecimal getCashBookCharge() { return CashBookCharge; } public JB_Budget setCashBookCharge(BigDecimal value) { this.CashBookCharge = value; return this; } public String getCashBookNote() { return CashBookNote; } public JB_Budget setCashBookNote(String value) { this.CashBookNote = value; return this; } public BigDecimal getResourceQty() { return ResourceQty; } public JB_Budget setResourceQty(BigDecimal value) { this.ResourceQty = value; return this; } public BigDecimal getResourceCost() { return ResourceCost; } public JB_Budget setResourceCost(BigDecimal value) { this.ResourceCost = value; return this; } public BigDecimal getResourceCharge() { return ResourceCharge; } public JB_Budget setResourceCharge(BigDecimal value) { this.ResourceCharge = value; return this; } public String getResourceNote() { return ResourceNote; } public JB_Budget setResourceNote(String value) { this.ResourceNote = value; return this; } public BigDecimal getJournalQty() { return JournalQty; } public JB_Budget setJournalQty(BigDecimal value) { this.JournalQty = value; return this; } public BigDecimal getJournalCost() { return JournalCost; } public JB_Budget setJournalCost(BigDecimal value) { this.JournalCost = value; return this; } public BigDecimal getJournalCharge() { return JournalCharge; } public JB_Budget setJournalCharge(BigDecimal value) { this.JournalCharge = value; return this; } public String getJournalNote() { return JournalNote; } public JB_Budget setJournalNote(String value) { this.JournalNote = value; return this; } public BigDecimal getMaterialCreditorQty() { return MaterialCreditorQty; } public JB_Budget setMaterialCreditorQty(BigDecimal value) { this.MaterialCreditorQty = value; return this; } public BigDecimal getMaterialCreditorCost() { return MaterialCreditorCost; } public JB_Budget setMaterialCreditorCost(BigDecimal value) { this.MaterialCreditorCost = value; return this; } public BigDecimal getMaterialCreditorCharge() { return MaterialCreditorCharge; } public JB_Budget setMaterialCreditorCharge(BigDecimal value) { this.MaterialCreditorCharge = value; return this; } public String getMaterialCreditorNote() { return MaterialCreditorNote; } public JB_Budget setMaterialCreditorNote(String value) { this.MaterialCreditorNote = value; return this; } public ArrayList getRowHash() { return RowHash; } public JB_Budget setRowHash(ArrayList value) { this.RowHash = value; return this; } } public static class JB_Classification { @Required() public String ClassificationID = null; public String Description = null; @Required() public Date LastSavedDateTime = null; @References(GL_Ledger.class) public String WIPExpectedAsset = null; @References(GL_Ledger.class) public String WIPExpectedLiability = null; @References(GL_Ledger.class) public String WIPDeliveredAsett = null; @References(GL_Ledger.class) public String WIPDeliveredLiability = null; @References(GL_Ledger.class) public String WorkInProgress = null; @References(GL_Ledger.class) public String JobRevenue = null; @References(GL_Ledger.class) public String JobCostOfGoods = null; @References(GL_Ledger.class) public String Wages = null; @References(GL_Ledger.class) public String Resources = null; @References(GL_Ledger.class) public String WriteOn = null; @References(GL_Ledger.class) public String WriteOff = null; @Required() public Integer ItemNo = null; @Required() public ArrayList RowHash = null; public String getClassificationID() { return ClassificationID; } public JB_Classification setClassificationID(String value) { this.ClassificationID = value; return this; } public String getDescription() { return Description; } public JB_Classification setDescription(String value) { this.Description = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public JB_Classification setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public String getWipExpectedAsset() { return WIPExpectedAsset; } public JB_Classification setWipExpectedAsset(String value) { this.WIPExpectedAsset = value; return this; } public String getWipExpectedLiability() { return WIPExpectedLiability; } public JB_Classification setWipExpectedLiability(String value) { this.WIPExpectedLiability = value; return this; } public String getWipDeliveredAsett() { return WIPDeliveredAsett; } public JB_Classification setWipDeliveredAsett(String value) { this.WIPDeliveredAsett = value; return this; } public String getWipDeliveredLiability() { return WIPDeliveredLiability; } public JB_Classification setWipDeliveredLiability(String value) { this.WIPDeliveredLiability = value; return this; } public String getWorkInProgress() { return WorkInProgress; } public JB_Classification setWorkInProgress(String value) { this.WorkInProgress = value; return this; } public String getJobRevenue() { return JobRevenue; } public JB_Classification setJobRevenue(String value) { this.JobRevenue = value; return this; } public String getJobCostOfGoods() { return JobCostOfGoods; } public JB_Classification setJobCostOfGoods(String value) { this.JobCostOfGoods = value; return this; } public String getWages() { return Wages; } public JB_Classification setWages(String value) { this.Wages = value; return this; } public String getResources() { return Resources; } public JB_Classification setResources(String value) { this.Resources = value; return this; } public String getWriteOn() { return WriteOn; } public JB_Classification setWriteOn(String value) { this.WriteOn = value; return this; } public String getWriteOff() { return WriteOff; } public JB_Classification setWriteOff(String value) { this.WriteOff = value; return this; } public Integer getItemNo() { return ItemNo; } public JB_Classification setItemNo(Integer value) { this.ItemNo = value; return this; } public ArrayList getRowHash() { return RowHash; } public JB_Classification setRowHash(ArrayList value) { this.RowHash = value; return this; } } public static class JB_CostCentres { @Required() public String RecID = null; @Required() public String CostCentreNo = null; public String Name = null; public String Description = null; public Boolean IsEnabled = null; public ArrayList RowHash = null; public String getRecID() { return RecID; } public JB_CostCentres setRecID(String value) { this.RecID = value; return this; } public String getCostCentreNo() { return CostCentreNo; } public JB_CostCentres setCostCentreNo(String value) { this.CostCentreNo = value; return this; } public String getName() { return Name; } public JB_CostCentres setName(String value) { this.Name = value; return this; } public String getDescription() { return Description; } public JB_CostCentres setDescription(String value) { this.Description = value; return this; } public Boolean getIsEnabled() { return IsEnabled; } public JB_CostCentres setIsEnabled(Boolean value) { this.IsEnabled = value; return this; } public ArrayList getRowHash() { return RowHash; } public JB_CostCentres setRowHash(ArrayList value) { this.RowHash = value; return this; } } public static class JB_CostEntry { @Required() public String RecID = null; @Required() public String RecNum = null; public String Reference = null; public String Note = null; public Short Status = null; @Required() public String WarehouseID = null; @Required() public Date LastSavedDateTime = null; public Short EntryType = null; @Required() public String JobID = null; public String JrnlSetID = null; public String getRecID() { return RecID; } public JB_CostEntry setRecID(String value) { this.RecID = value; return this; } public String getRecNum() { return RecNum; } public JB_CostEntry setRecNum(String value) { this.RecNum = value; return this; } public String getReference() { return Reference; } public JB_CostEntry setReference(String value) { this.Reference = value; return this; } public String getNote() { return Note; } public JB_CostEntry setNote(String value) { this.Note = value; return this; } public Short getStatus() { return Status; } public JB_CostEntry setStatus(Short value) { this.Status = value; return this; } public String getWarehouseID() { return WarehouseID; } public JB_CostEntry setWarehouseID(String value) { this.WarehouseID = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public JB_CostEntry setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Short getEntryType() { return EntryType; } public JB_CostEntry setEntryType(Short value) { this.EntryType = value; return this; } public String getJobID() { return JobID; } public JB_CostEntry setJobID(String value) { this.JobID = value; return this; } public String getJrnlSetID() { return JrnlSetID; } public JB_CostEntry setJrnlSetID(String value) { this.JrnlSetID = value; return this; } } public static class JB_CostEntryLines { @Required() public String RecID = null; @Required() public String JobEntryID = null; @Required() public String JobCode = null; @Required() public String JobID = null; @Required() public String CostCentreID = null; @Required() public String StageID = null; @Required() public BigDecimal Qty = null; @Required() public BigDecimal UnitCost = null; @Required() public BigDecimal UnitCharge = null; public BigDecimal MarkUp = null; public String ComponentID = null; public String ComponentNo = null; public String ComponentDesc = null; public Short ComponentType = null; public String InvoiceNo = null; public Short TranType = null; @Required() public String TaxID = null; public Short Status = null; @Required() public String LinkID = null; @Required() public Date LastSavedDateTime = null; @Required() public Date TranDate = null; public BigDecimal InvoicedAmount = null; public String Unit = null; public String Remark = null; public String ServiceNo = null; public BigDecimal BackOrderQty = null; public BigDecimal QtyDelivered = null; public Short QtyDecimalPlaces = null; public String getRecID() { return RecID; } public JB_CostEntryLines setRecID(String value) { this.RecID = value; return this; } public String getJobEntryID() { return JobEntryID; } public JB_CostEntryLines setJobEntryID(String value) { this.JobEntryID = value; return this; } public String getJobCode() { return JobCode; } public JB_CostEntryLines setJobCode(String value) { this.JobCode = value; return this; } public String getJobID() { return JobID; } public JB_CostEntryLines setJobID(String value) { this.JobID = value; return this; } public String getCostCentreID() { return CostCentreID; } public JB_CostEntryLines setCostCentreID(String value) { this.CostCentreID = value; return this; } public String getStageID() { return StageID; } public JB_CostEntryLines setStageID(String value) { this.StageID = value; return this; } public BigDecimal getQty() { return Qty; } public JB_CostEntryLines setQty(BigDecimal value) { this.Qty = value; return this; } public BigDecimal getUnitCost() { return UnitCost; } public JB_CostEntryLines setUnitCost(BigDecimal value) { this.UnitCost = value; return this; } public BigDecimal getUnitCharge() { return UnitCharge; } public JB_CostEntryLines setUnitCharge(BigDecimal value) { this.UnitCharge = value; return this; } public BigDecimal getMarkUp() { return MarkUp; } public JB_CostEntryLines setMarkUp(BigDecimal value) { this.MarkUp = value; return this; } public String getComponentID() { return ComponentID; } public JB_CostEntryLines setComponentID(String value) { this.ComponentID = value; return this; } public String getComponentNo() { return ComponentNo; } public JB_CostEntryLines setComponentNo(String value) { this.ComponentNo = value; return this; } public String getComponentDesc() { return ComponentDesc; } public JB_CostEntryLines setComponentDesc(String value) { this.ComponentDesc = value; return this; } public Short getComponentType() { return ComponentType; } public JB_CostEntryLines setComponentType(Short value) { this.ComponentType = value; return this; } public String getInvoiceNo() { return InvoiceNo; } public JB_CostEntryLines setInvoiceNo(String value) { this.InvoiceNo = value; return this; } public Short getTranType() { return TranType; } public JB_CostEntryLines setTranType(Short value) { this.TranType = value; return this; } public String getTaxID() { return TaxID; } public JB_CostEntryLines setTaxID(String value) { this.TaxID = value; return this; } public Short getStatus() { return Status; } public JB_CostEntryLines setStatus(Short value) { this.Status = value; return this; } public String getLinkID() { return LinkID; } public JB_CostEntryLines setLinkID(String value) { this.LinkID = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public JB_CostEntryLines setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getTranDate() { return TranDate; } public JB_CostEntryLines setTranDate(Date value) { this.TranDate = value; return this; } public BigDecimal getInvoicedAmount() { return InvoicedAmount; } public JB_CostEntryLines setInvoicedAmount(BigDecimal value) { this.InvoicedAmount = value; return this; } public String getUnit() { return Unit; } public JB_CostEntryLines setUnit(String value) { this.Unit = value; return this; } public String getRemark() { return Remark; } public JB_CostEntryLines setRemark(String value) { this.Remark = value; return this; } public String getServiceNo() { return ServiceNo; } public JB_CostEntryLines setServiceNo(String value) { this.ServiceNo = value; return this; } public BigDecimal getBackOrderQty() { return BackOrderQty; } public JB_CostEntryLines setBackOrderQty(BigDecimal value) { this.BackOrderQty = value; return this; } public BigDecimal getQtyDelivered() { return QtyDelivered; } public JB_CostEntryLines setQtyDelivered(BigDecimal value) { this.QtyDelivered = value; return this; } public Short getQtyDecimalPlaces() { return QtyDecimalPlaces; } public JB_CostEntryLines setQtyDecimalPlaces(Short value) { this.QtyDecimalPlaces = value; return this; } } public static class JB_CostLineDetails { @Required() public String DetailsLineID = null; @Required() public String CostEntryLineID = null; @Required() public String SOHID = null; public BigDecimal Cost = null; public BigDecimal Quantity = null; public String SerialNo = null; public Date ExpiryDate = null; public String BinLocation = null; public Date DateIn = null; public Date DeliveredDate = null; public String getDetailsLineID() { return DetailsLineID; } public JB_CostLineDetails setDetailsLineID(String value) { this.DetailsLineID = value; return this; } public String getCostEntryLineID() { return CostEntryLineID; } public JB_CostLineDetails setCostEntryLineID(String value) { this.CostEntryLineID = value; return this; } public String getSohid() { return SOHID; } public JB_CostLineDetails setSohid(String value) { this.SOHID = value; return this; } public BigDecimal getCost() { return Cost; } public JB_CostLineDetails setCost(BigDecimal value) { this.Cost = value; return this; } public BigDecimal getQuantity() { return Quantity; } public JB_CostLineDetails setQuantity(BigDecimal value) { this.Quantity = value; return this; } public String getSerialNo() { return SerialNo; } public JB_CostLineDetails setSerialNo(String value) { this.SerialNo = value; return this; } public Date getExpiryDate() { return ExpiryDate; } public JB_CostLineDetails setExpiryDate(Date value) { this.ExpiryDate = value; return this; } public String getBinLocation() { return BinLocation; } public JB_CostLineDetails setBinLocation(String value) { this.BinLocation = value; return this; } public Date getDateIn() { return DateIn; } public JB_CostLineDetails setDateIn(Date value) { this.DateIn = value; return this; } public Date getDeliveredDate() { return DeliveredDate; } public JB_CostLineDetails setDeliveredDate(Date value) { this.DeliveredDate = value; return this; } } public static class JB_CustomSettings { @Required() public String SettingID = null; @Required() public Date LastSavedDateTime = null; public String SettingDescription = null; public String SettingName = null; public BigDecimal DisplayOrder = null; public Short CellType = null; public String ScriptFormatCell = null; public String ScriptButtonClicked = null; public String ScriptReadData = null; public String GridHandlerCode = null; @References(SY_Plugin.class) @Required() public UUID SY_Plugin_RecID = null; public String getSettingID() { return SettingID; } public JB_CustomSettings setSettingID(String value) { this.SettingID = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public JB_CustomSettings setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public String getSettingDescription() { return SettingDescription; } public JB_CustomSettings setSettingDescription(String value) { this.SettingDescription = value; return this; } public String getSettingName() { return SettingName; } public JB_CustomSettings setSettingName(String value) { this.SettingName = value; return this; } public BigDecimal getDisplayOrder() { return DisplayOrder; } public JB_CustomSettings setDisplayOrder(BigDecimal value) { this.DisplayOrder = value; return this; } public Short getCellType() { return CellType; } public JB_CustomSettings setCellType(Short value) { this.CellType = value; return this; } public String getScriptFormatCell() { return ScriptFormatCell; } public JB_CustomSettings setScriptFormatCell(String value) { this.ScriptFormatCell = value; return this; } public String getScriptButtonClicked() { return ScriptButtonClicked; } public JB_CustomSettings setScriptButtonClicked(String value) { this.ScriptButtonClicked = value; return this; } public String getScriptReadData() { return ScriptReadData; } public JB_CustomSettings setScriptReadData(String value) { this.ScriptReadData = value; return this; } public String getGridHandlerCode() { return GridHandlerCode; } public JB_CustomSettings setGridHandlerCode(String value) { this.GridHandlerCode = value; return this; } public UUID getSyPluginRecID() { return SY_Plugin_RecID; } public JB_CustomSettings setSyPluginRecID(UUID value) { this.SY_Plugin_RecID = value; return this; } } public static class JB_CustomSettingValues { @Required() public String SettingValueID = null; @References(JB_CustomSettings.class) public String SettingID = null; @References(JB_Main.class) @Required() public String JB_Main_RecID = null; public String Contents = null; @Required() public Date LastSavedDateTime = null; public String getSettingValueID() { return SettingValueID; } public JB_CustomSettingValues setSettingValueID(String value) { this.SettingValueID = value; return this; } public String getSettingID() { return SettingID; } public JB_CustomSettingValues setSettingID(String value) { this.SettingID = value; return this; } public String getJbMainRecID() { return JB_Main_RecID; } public JB_CustomSettingValues setJbMainRecID(String value) { this.JB_Main_RecID = value; return this; } public String getContents() { return Contents; } public JB_CustomSettingValues setContents(String value) { this.Contents = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public JB_CustomSettingValues setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } } public static class JB_Documents { @Required() public String RecID = null; @Required() public String JB_Main_RecID = null; @Required() public String DocumentTypeID = null; public Date LastSavedDateTime = null; public String LastSavedByStaffID = null; public ArrayList FileBinary = null; public String Description = null; public String PhysicalFileName = null; @Required() public Integer ItemNo = null; public String getRecID() { return RecID; } public JB_Documents setRecID(String value) { this.RecID = value; return this; } public String getJbMainRecID() { return JB_Main_RecID; } public JB_Documents setJbMainRecID(String value) { this.JB_Main_RecID = value; return this; } public String getDocumentTypeID() { return DocumentTypeID; } public JB_Documents setDocumentTypeID(String value) { this.DocumentTypeID = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public JB_Documents setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public String getLastSavedByStaffID() { return LastSavedByStaffID; } public JB_Documents setLastSavedByStaffID(String value) { this.LastSavedByStaffID = value; return this; } public ArrayList getFileBinary() { return FileBinary; } public JB_Documents setFileBinary(ArrayList value) { this.FileBinary = value; return this; } public String getDescription() { return Description; } public JB_Documents setDescription(String value) { this.Description = value; return this; } public String getPhysicalFileName() { return PhysicalFileName; } public JB_Documents setPhysicalFileName(String value) { this.PhysicalFileName = value; return this; } public Integer getItemNo() { return ItemNo; } public JB_Documents setItemNo(Integer value) { this.ItemNo = value; return this; } } public static class JB_EstimateCashBookLines { @Required() public String RecID = null; @References(JB_JobStages.class) @Required() public String JB_JobStages_RecID = null; @References(CR_Main.class) @Required() public String CR_Main_RecID = null; @Required() public Date TransactionDate = null; @Required() public BigDecimal Quantity = null; @Required() public BigDecimal UnitCost = null; @Required() public BigDecimal UnitCharge = null; public String Remark = null; @Required() public Date LastSavedDateTime = null; @References(HR_Staff.class) @Required() public String HR_Staff_RecID = null; @Required() public ArrayList RowHash = null; public String Units = null; @Required() public String JB_EstimateLines_RecID = null; public String getRecID() { return RecID; } public JB_EstimateCashBookLines setRecID(String value) { this.RecID = value; return this; } public String getJbJobStagesRecID() { return JB_JobStages_RecID; } public JB_EstimateCashBookLines setJbJobStagesRecID(String value) { this.JB_JobStages_RecID = value; return this; } public String getCrMainRecID() { return CR_Main_RecID; } public JB_EstimateCashBookLines setCrMainRecID(String value) { this.CR_Main_RecID = value; return this; } public Date getTransactionDate() { return TransactionDate; } public JB_EstimateCashBookLines setTransactionDate(Date value) { this.TransactionDate = value; return this; } public BigDecimal getQuantity() { return Quantity; } public JB_EstimateCashBookLines setQuantity(BigDecimal value) { this.Quantity = value; return this; } public BigDecimal getUnitCost() { return UnitCost; } public JB_EstimateCashBookLines setUnitCost(BigDecimal value) { this.UnitCost = value; return this; } public BigDecimal getUnitCharge() { return UnitCharge; } public JB_EstimateCashBookLines setUnitCharge(BigDecimal value) { this.UnitCharge = value; return this; } public String getRemark() { return Remark; } public JB_EstimateCashBookLines setRemark(String value) { this.Remark = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public JB_EstimateCashBookLines setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public String getHrStaffRecID() { return HR_Staff_RecID; } public JB_EstimateCashBookLines setHrStaffRecID(String value) { this.HR_Staff_RecID = value; return this; } public ArrayList getRowHash() { return RowHash; } public JB_EstimateCashBookLines setRowHash(ArrayList value) { this.RowHash = value; return this; } public String getUnits() { return Units; } public JB_EstimateCashBookLines setUnits(String value) { this.Units = value; return this; } public String getJbEstimateLinesRecID() { return JB_EstimateLines_RecID; } public JB_EstimateCashBookLines setJbEstimateLinesRecID(String value) { this.JB_EstimateLines_RecID = value; return this; } } public static class JB_EstimateCustomSetting { @Required() public String SettingID = null; @Required() public Date LastSavedDateTime = null; public String SettingDescription = null; public String SettingName = null; public Integer DisplayOrder = null; public Short CellType = null; public String ScriptFormatCell = null; public String ScriptButtonClicked = null; public String ScriptReadData = null; public String GridHandlerCode = null; @References(SY_Plugin.class) @Required() public UUID SY_Plugin_RecID = null; public String getSettingID() { return SettingID; } public JB_EstimateCustomSetting setSettingID(String value) { this.SettingID = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public JB_EstimateCustomSetting setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public String getSettingDescription() { return SettingDescription; } public JB_EstimateCustomSetting setSettingDescription(String value) { this.SettingDescription = value; return this; } public String getSettingName() { return SettingName; } public JB_EstimateCustomSetting setSettingName(String value) { this.SettingName = value; return this; } public Integer getDisplayOrder() { return DisplayOrder; } public JB_EstimateCustomSetting setDisplayOrder(Integer value) { this.DisplayOrder = value; return this; } public Short getCellType() { return CellType; } public JB_EstimateCustomSetting setCellType(Short value) { this.CellType = value; return this; } public String getScriptFormatCell() { return ScriptFormatCell; } public JB_EstimateCustomSetting setScriptFormatCell(String value) { this.ScriptFormatCell = value; return this; } public String getScriptButtonClicked() { return ScriptButtonClicked; } public JB_EstimateCustomSetting setScriptButtonClicked(String value) { this.ScriptButtonClicked = value; return this; } public String getScriptReadData() { return ScriptReadData; } public JB_EstimateCustomSetting setScriptReadData(String value) { this.ScriptReadData = value; return this; } public String getGridHandlerCode() { return GridHandlerCode; } public JB_EstimateCustomSetting setGridHandlerCode(String value) { this.GridHandlerCode = value; return this; } public UUID getSyPluginRecID() { return SY_Plugin_RecID; } public JB_EstimateCustomSetting setSyPluginRecID(UUID value) { this.SY_Plugin_RecID = value; return this; } } public static class JB_EstimateCustomSettingValues { @Required() public String SettingValueID = null; @References(JB_EstimateCustomSetting.class) public String SettingID = null; @References(JB_Estimates.class) @Required() public String JB_Estimates_RecID = null; public String Contents = null; @Required() public Date LastSavedDateTime = null; public String getSettingValueID() { return SettingValueID; } public JB_EstimateCustomSettingValues setSettingValueID(String value) { this.SettingValueID = value; return this; } public String getSettingID() { return SettingID; } public JB_EstimateCustomSettingValues setSettingID(String value) { this.SettingID = value; return this; } public String getJbEstimatesRecID() { return JB_Estimates_RecID; } public JB_EstimateCustomSettingValues setJbEstimatesRecID(String value) { this.JB_Estimates_RecID = value; return this; } public String getContents() { return Contents; } public JB_EstimateCustomSettingValues setContents(String value) { this.Contents = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public JB_EstimateCustomSettingValues setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } } public static class JB_EstimateFinishedGoodLines { @Required() public String RecID = null; @References(JB_Estimates.class) @Required() public String JB_Estimates_RecID = null; @References(JB_JobStages.class) @Required() public String JB_JobStages_RecID = null; @References(IN_Main.class) @Required() public String IN_Main_RecID = null; @Required() public Date TransactionDate = null; @Required() public BigDecimal Quantity = null; public String Remark = null; @Required() public Integer ItemNo = null; @Required() public Date LastSavedDateTime = null; @References(HR_Staff.class) @Required() public String HR_Staff_RecID = null; @Required() public ArrayList RowHash = null; @Required() public String JB_EstimateLines_RecID = null; public String getRecID() { return RecID; } public JB_EstimateFinishedGoodLines setRecID(String value) { this.RecID = value; return this; } public String getJbEstimatesRecID() { return JB_Estimates_RecID; } public JB_EstimateFinishedGoodLines setJbEstimatesRecID(String value) { this.JB_Estimates_RecID = value; return this; } public String getJbJobStagesRecID() { return JB_JobStages_RecID; } public JB_EstimateFinishedGoodLines setJbJobStagesRecID(String value) { this.JB_JobStages_RecID = value; return this; } public String getInMainRecID() { return IN_Main_RecID; } public JB_EstimateFinishedGoodLines setInMainRecID(String value) { this.IN_Main_RecID = value; return this; } public Date getTransactionDate() { return TransactionDate; } public JB_EstimateFinishedGoodLines setTransactionDate(Date value) { this.TransactionDate = value; return this; } public BigDecimal getQuantity() { return Quantity; } public JB_EstimateFinishedGoodLines setQuantity(BigDecimal value) { this.Quantity = value; return this; } public String getRemark() { return Remark; } public JB_EstimateFinishedGoodLines setRemark(String value) { this.Remark = value; return this; } public Integer getItemNo() { return ItemNo; } public JB_EstimateFinishedGoodLines setItemNo(Integer value) { this.ItemNo = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public JB_EstimateFinishedGoodLines setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public String getHrStaffRecID() { return HR_Staff_RecID; } public JB_EstimateFinishedGoodLines setHrStaffRecID(String value) { this.HR_Staff_RecID = value; return this; } public ArrayList getRowHash() { return RowHash; } public JB_EstimateFinishedGoodLines setRowHash(ArrayList value) { this.RowHash = value; return this; } public String getJbEstimateLinesRecID() { return JB_EstimateLines_RecID; } public JB_EstimateFinishedGoodLines setJbEstimateLinesRecID(String value) { this.JB_EstimateLines_RecID = value; return this; } } public static class JB_EstimateInventoryLines { @Required() public String RecID = null; @References(JB_JobStages.class) @Required() public String JB_JobStages_RecID = null; @References(IN_Main.class) @Required() public String IN_Main_RecID = null; @Required() public Date TransactionDate = null; @Required() public BigDecimal Quantity = null; @Required() public BigDecimal UnitCost = null; @Required() public BigDecimal UnitCharge = null; public String Remark = null; @Required() public Date LastSavedDateTime = null; @References(HR_Staff.class) @Required() public String HR_Staff_RecID = null; @Required() public ArrayList RowHash = null; public String Units = null; @Required() public String JB_EstimateLines_RecID = null; public String getRecID() { return RecID; } public JB_EstimateInventoryLines setRecID(String value) { this.RecID = value; return this; } public String getJbJobStagesRecID() { return JB_JobStages_RecID; } public JB_EstimateInventoryLines setJbJobStagesRecID(String value) { this.JB_JobStages_RecID = value; return this; } public String getInMainRecID() { return IN_Main_RecID; } public JB_EstimateInventoryLines setInMainRecID(String value) { this.IN_Main_RecID = value; return this; } public Date getTransactionDate() { return TransactionDate; } public JB_EstimateInventoryLines setTransactionDate(Date value) { this.TransactionDate = value; return this; } public BigDecimal getQuantity() { return Quantity; } public JB_EstimateInventoryLines setQuantity(BigDecimal value) { this.Quantity = value; return this; } public BigDecimal getUnitCost() { return UnitCost; } public JB_EstimateInventoryLines setUnitCost(BigDecimal value) { this.UnitCost = value; return this; } public BigDecimal getUnitCharge() { return UnitCharge; } public JB_EstimateInventoryLines setUnitCharge(BigDecimal value) { this.UnitCharge = value; return this; } public String getRemark() { return Remark; } public JB_EstimateInventoryLines setRemark(String value) { this.Remark = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public JB_EstimateInventoryLines setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public String getHrStaffRecID() { return HR_Staff_RecID; } public JB_EstimateInventoryLines setHrStaffRecID(String value) { this.HR_Staff_RecID = value; return this; } public ArrayList getRowHash() { return RowHash; } public JB_EstimateInventoryLines setRowHash(ArrayList value) { this.RowHash = value; return this; } public String getUnits() { return Units; } public JB_EstimateInventoryLines setUnits(String value) { this.Units = value; return this; } public String getJbEstimateLinesRecID() { return JB_EstimateLines_RecID; } public JB_EstimateInventoryLines setJbEstimateLinesRecID(String value) { this.JB_EstimateLines_RecID = value; return this; } } public static class JB_EstimateJournalSetLines { @Required() public String RecID = null; @References(JB_JobStages.class) @Required() public String JB_JobStages_RecID = null; @References(GL_Ledger.class) @Required() public String GL_Main_RecID = null; @Required() public Date TransactionDate = null; @Required() public BigDecimal Quantity = null; @Required() public BigDecimal UnitCost = null; @Required() public BigDecimal UnitCharge = null; public String Remark = null; @Required() public Date LastSavedDateTime = null; @References(HR_Staff.class) @Required() public String HR_Staff_RecID = null; @Required() public ArrayList RowHash = null; public String Units = null; @Required() public String JB_EstimateLines_RecID = null; public String getRecID() { return RecID; } public JB_EstimateJournalSetLines setRecID(String value) { this.RecID = value; return this; } public String getJbJobStagesRecID() { return JB_JobStages_RecID; } public JB_EstimateJournalSetLines setJbJobStagesRecID(String value) { this.JB_JobStages_RecID = value; return this; } public String getGlMainRecID() { return GL_Main_RecID; } public JB_EstimateJournalSetLines setGlMainRecID(String value) { this.GL_Main_RecID = value; return this; } public Date getTransactionDate() { return TransactionDate; } public JB_EstimateJournalSetLines setTransactionDate(Date value) { this.TransactionDate = value; return this; } public BigDecimal getQuantity() { return Quantity; } public JB_EstimateJournalSetLines setQuantity(BigDecimal value) { this.Quantity = value; return this; } public BigDecimal getUnitCost() { return UnitCost; } public JB_EstimateJournalSetLines setUnitCost(BigDecimal value) { this.UnitCost = value; return this; } public BigDecimal getUnitCharge() { return UnitCharge; } public JB_EstimateJournalSetLines setUnitCharge(BigDecimal value) { this.UnitCharge = value; return this; } public String getRemark() { return Remark; } public JB_EstimateJournalSetLines setRemark(String value) { this.Remark = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public JB_EstimateJournalSetLines setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public String getHrStaffRecID() { return HR_Staff_RecID; } public JB_EstimateJournalSetLines setHrStaffRecID(String value) { this.HR_Staff_RecID = value; return this; } public ArrayList getRowHash() { return RowHash; } public JB_EstimateJournalSetLines setRowHash(ArrayList value) { this.RowHash = value; return this; } public String getUnits() { return Units; } public JB_EstimateJournalSetLines setUnits(String value) { this.Units = value; return this; } public String getJbEstimateLinesRecID() { return JB_EstimateLines_RecID; } public JB_EstimateJournalSetLines setJbEstimateLinesRecID(String value) { this.JB_EstimateLines_RecID = value; return this; } } public static class JB_EstimateLabourLines { @Required() public String RecID = null; @References(JB_JobStages.class) @Required() public String JB_JobStages_RecID = null; @References(JB_Staffs.class) @Required() public String JB_Staff_RecID = null; @Required() public Date TransactionDate = null; @Required() public BigDecimal Quantity = null; @Required() public BigDecimal UnitCost = null; @Required() public BigDecimal UnitCharge = null; public String Remark = null; @Required() public Date LastSavedDateTime = null; @References(HR_Staff.class) @Required() public String HR_Staff_RecID = null; @Required() public ArrayList RowHash = null; public String Units = null; @Required() public String JB_EstimateLines_RecID = null; public String getRecID() { return RecID; } public JB_EstimateLabourLines setRecID(String value) { this.RecID = value; return this; } public String getJbJobStagesRecID() { return JB_JobStages_RecID; } public JB_EstimateLabourLines setJbJobStagesRecID(String value) { this.JB_JobStages_RecID = value; return this; } public String getJbStaffRecID() { return JB_Staff_RecID; } public JB_EstimateLabourLines setJbStaffRecID(String value) { this.JB_Staff_RecID = value; return this; } public Date getTransactionDate() { return TransactionDate; } public JB_EstimateLabourLines setTransactionDate(Date value) { this.TransactionDate = value; return this; } public BigDecimal getQuantity() { return Quantity; } public JB_EstimateLabourLines setQuantity(BigDecimal value) { this.Quantity = value; return this; } public BigDecimal getUnitCost() { return UnitCost; } public JB_EstimateLabourLines setUnitCost(BigDecimal value) { this.UnitCost = value; return this; } public BigDecimal getUnitCharge() { return UnitCharge; } public JB_EstimateLabourLines setUnitCharge(BigDecimal value) { this.UnitCharge = value; return this; } public String getRemark() { return Remark; } public JB_EstimateLabourLines setRemark(String value) { this.Remark = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public JB_EstimateLabourLines setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public String getHrStaffRecID() { return HR_Staff_RecID; } public JB_EstimateLabourLines setHrStaffRecID(String value) { this.HR_Staff_RecID = value; return this; } public ArrayList getRowHash() { return RowHash; } public JB_EstimateLabourLines setRowHash(ArrayList value) { this.RowHash = value; return this; } public String getUnits() { return Units; } public JB_EstimateLabourLines setUnits(String value) { this.Units = value; return this; } public String getJbEstimateLinesRecID() { return JB_EstimateLines_RecID; } public JB_EstimateLabourLines setJbEstimateLinesRecID(String value) { this.JB_EstimateLines_RecID = value; return this; } } public static class JB_EstimateLines { @Required() public String RecID = null; @Required() public Integer ItemNo = null; @References(JB_Estimates.class) @Required() public String JB_Estimates_RecID = null; public String getRecID() { return RecID; } public JB_EstimateLines setRecID(String value) { this.RecID = value; return this; } public Integer getItemNo() { return ItemNo; } public JB_EstimateLines setItemNo(Integer value) { this.ItemNo = value; return this; } public String getJbEstimatesRecID() { return JB_Estimates_RecID; } public JB_EstimateLines setJbEstimatesRecID(String value) { this.JB_Estimates_RecID = value; return this; } } public static class CR_Documents { @Required() public String RecID = null; @Required() public String CreditorID = null; @Required() public String DocumentTypeID = null; public Date LastSavedDateTime = null; @Required() public String LastSavedByStaffID = null; public ArrayList FileBinary = null; public String Description = null; public String PhysicalFileName = null; @Required() public Integer ItemNo = null; public String getRecID() { return RecID; } public CR_Documents setRecID(String value) { this.RecID = value; return this; } public String getCreditorID() { return CreditorID; } public CR_Documents setCreditorID(String value) { this.CreditorID = value; return this; } public String getDocumentTypeID() { return DocumentTypeID; } public CR_Documents setDocumentTypeID(String value) { this.DocumentTypeID = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public CR_Documents setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public String getLastSavedByStaffID() { return LastSavedByStaffID; } public CR_Documents setLastSavedByStaffID(String value) { this.LastSavedByStaffID = value; return this; } public ArrayList getFileBinary() { return FileBinary; } public CR_Documents setFileBinary(ArrayList value) { this.FileBinary = value; return this; } public String getDescription() { return Description; } public CR_Documents setDescription(String value) { this.Description = value; return this; } public String getPhysicalFileName() { return PhysicalFileName; } public CR_Documents setPhysicalFileName(String value) { this.PhysicalFileName = value; return this; } public Integer getItemNo() { return ItemNo; } public CR_Documents setItemNo(Integer value) { this.ItemNo = value; return this; } } public static class CR_ForwardCover { @Required() public String RecID = null; @Required() public Date LastSavedDateTime = null; @Required() public String ContractNo = null; public String Description = null; @References(FX_Currency.class) @Required() public String FX_Main_RecID = null; public Short CurrencyDecimalPlaces = null; public BigDecimal CurrencyRate = null; public BigDecimal FXAmount = null; public BigDecimal HomeAmount = null; public String Reference = null; @Required() public Date InitiatedDate = null; @Required() public Date StartDate = null; @Required() public Date EndDate = null; @Required() public Short Status = null; @Required() public Short AutoCloseContract = null; @References(HR_Staff.class) @Required() public String HR_Staff_RecID_CreatedBy = null; @References(HR_Staff.class) @Required() public String HR_Staff_RecID_LastSavedBy = null; @Required() public ArrayList RowHash = null; public String getRecID() { return RecID; } public CR_ForwardCover setRecID(String value) { this.RecID = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public CR_ForwardCover setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public String getContractNo() { return ContractNo; } public CR_ForwardCover setContractNo(String value) { this.ContractNo = value; return this; } public String getDescription() { return Description; } public CR_ForwardCover setDescription(String value) { this.Description = value; return this; } public String getFxMainRecID() { return FX_Main_RecID; } public CR_ForwardCover setFxMainRecID(String value) { this.FX_Main_RecID = value; return this; } public Short getCurrencyDecimalPlaces() { return CurrencyDecimalPlaces; } public CR_ForwardCover setCurrencyDecimalPlaces(Short value) { this.CurrencyDecimalPlaces = value; return this; } public BigDecimal getCurrencyRate() { return CurrencyRate; } public CR_ForwardCover setCurrencyRate(BigDecimal value) { this.CurrencyRate = value; return this; } public BigDecimal getFxAmount() { return FXAmount; } public CR_ForwardCover setFxAmount(BigDecimal value) { this.FXAmount = value; return this; } public BigDecimal getHomeAmount() { return HomeAmount; } public CR_ForwardCover setHomeAmount(BigDecimal value) { this.HomeAmount = value; return this; } public String getReference() { return Reference; } public CR_ForwardCover setReference(String value) { this.Reference = value; return this; } public Date getInitiatedDate() { return InitiatedDate; } public CR_ForwardCover setInitiatedDate(Date value) { this.InitiatedDate = value; return this; } public Date getStartDate() { return StartDate; } public CR_ForwardCover setStartDate(Date value) { this.StartDate = value; return this; } public Date getEndDate() { return EndDate; } public CR_ForwardCover setEndDate(Date value) { this.EndDate = value; return this; } public Short getStatus() { return Status; } public CR_ForwardCover setStatus(Short value) { this.Status = value; return this; } public Short getAutoCloseContract() { return AutoCloseContract; } public CR_ForwardCover setAutoCloseContract(Short value) { this.AutoCloseContract = value; return this; } public String getHrStaffRecIDCreatedBy() { return HR_Staff_RecID_CreatedBy; } public CR_ForwardCover setHrStaffRecIDCreatedBy(String value) { this.HR_Staff_RecID_CreatedBy = value; return this; } public String getHrStaffRecIDLastSavedBy() { return HR_Staff_RecID_LastSavedBy; } public CR_ForwardCover setHrStaffRecIDLastSavedBy(String value) { this.HR_Staff_RecID_LastSavedBy = value; return this; } public ArrayList getRowHash() { return RowHash; } public CR_ForwardCover setRowHash(ArrayList value) { this.RowHash = value; return this; } } public static class CR_ForwardCoverNotes { @Required() public String RecID = null; @References(CR_ForwardCover.class) @Required() public String CR_ForwardCover_RecID = null; @Required() public String NoteTypeID = null; @Required() public Date LastSavedDateTime = null; @References(HR_Staff.class) @Required() public String LastSavedByStaffID = null; public String NoteText = null; @Required() public Integer ItemNo = null; public String getRecID() { return RecID; } public CR_ForwardCoverNotes setRecID(String value) { this.RecID = value; return this; } public String getCrForwardCoverRecID() { return CR_ForwardCover_RecID; } public CR_ForwardCoverNotes setCrForwardCoverRecID(String value) { this.CR_ForwardCover_RecID = value; return this; } public String getNoteTypeID() { return NoteTypeID; } public CR_ForwardCoverNotes setNoteTypeID(String value) { this.NoteTypeID = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public CR_ForwardCoverNotes setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public String getLastSavedByStaffID() { return LastSavedByStaffID; } public CR_ForwardCoverNotes setLastSavedByStaffID(String value) { this.LastSavedByStaffID = value; return this; } public String getNoteText() { return NoteText; } public CR_ForwardCoverNotes setNoteText(String value) { this.NoteText = value; return this; } public Integer getItemNo() { return ItemNo; } public CR_ForwardCoverNotes setItemNo(Integer value) { this.ItemNo = value; return this; } } public static class CR_ForwardCoverTransactions { @Required() public String RecID = null; @References(CR_ForwardCover.class) @Required() public String CR_ForwardCover_RecID = null; @Required() public Date LastSavedDateTime = null; @Required() public Date TransactionDate = null; @Required() public BigDecimal FXAmount = null; @Required() public BigDecimal HomeAmount = null; @Required() public Short SourceType = null; @Required() public String SourceID = null; public String SourceReference = null; @References(CR_Trans.class) @Required() public String CRTrans_RecID = null; @Required() public Short TransactionType = null; public String getRecID() { return RecID; } public CR_ForwardCoverTransactions setRecID(String value) { this.RecID = value; return this; } public String getCrForwardCoverRecID() { return CR_ForwardCover_RecID; } public CR_ForwardCoverTransactions setCrForwardCoverRecID(String value) { this.CR_ForwardCover_RecID = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public CR_ForwardCoverTransactions setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getTransactionDate() { return TransactionDate; } public CR_ForwardCoverTransactions setTransactionDate(Date value) { this.TransactionDate = value; return this; } public BigDecimal getFxAmount() { return FXAmount; } public CR_ForwardCoverTransactions setFxAmount(BigDecimal value) { this.FXAmount = value; return this; } public BigDecimal getHomeAmount() { return HomeAmount; } public CR_ForwardCoverTransactions setHomeAmount(BigDecimal value) { this.HomeAmount = value; return this; } public Short getSourceType() { return SourceType; } public CR_ForwardCoverTransactions setSourceType(Short value) { this.SourceType = value; return this; } public String getSourceID() { return SourceID; } public CR_ForwardCoverTransactions setSourceID(String value) { this.SourceID = value; return this; } public String getSourceReference() { return SourceReference; } public CR_ForwardCoverTransactions setSourceReference(String value) { this.SourceReference = value; return this; } public String getCrTransRecID() { return CRTrans_RecID; } public CR_ForwardCoverTransactions setCrTransRecID(String value) { this.CRTrans_RecID = value; return this; } public Short getTransactionType() { return TransactionType; } public CR_ForwardCoverTransactions setTransactionType(Short value) { this.TransactionType = value; return this; } } public static class CR_GLAudit { @Required() public String GLLedgerID = null; public BigDecimal LedgerValue = null; @Required() public String ReportGroup = null; public String getGlLedgerID() { return GLLedgerID; } public CR_GLAudit setGlLedgerID(String value) { this.GLLedgerID = value; return this; } public BigDecimal getLedgerValue() { return LedgerValue; } public CR_GLAudit setLedgerValue(BigDecimal value) { this.LedgerValue = value; return this; } public String getReportGroup() { return ReportGroup; } public CR_GLAudit setReportGroup(String value) { this.ReportGroup = value; return this; } } public static class CR_Main { @Required() public String CreditorID = null; public Date LastSavedDateTime = null; @Required() public String AccountNo = null; public String Name = null; public String Address1 = null; public String Address2 = null; public String Address3 = null; public String Address4 = null; public String PostCode = null; public String Phone = null; public String Fax = null; public String BankName = null; public String BankAcc = null; public String BSBN = null; public String AccountName = null; public Short DefaultPaymentType = null; public BigDecimal CreditLimit = null; public Short EarlyPayDisOnRemitDays = null; @Required() public BigDecimal EarlyPayDisOnRemitAmt = null; public Date LastSaleDate = null; public Date LastPaymentDate = null; @Required() public String ClassificationID = null; @Required() public Boolean AccountOnHold = null; public String EmailAddress = null; public BigDecimal CurrentBalance = null; @Required() public BigDecimal Period1 = null; @Required() public BigDecimal Period2 = null; @Required() public BigDecimal Period3 = null; @Required() public BigDecimal Period4 = null; public String AltAccountNo = null; public Date CommenceDate = null; public Short TermsDays = null; public String ACN = null; @References(FX_Currency.class) public String CurrencyID = null; @Required() public Boolean UsesFX = null; public String ABN = null; public Short TermsType = null; public String AustPostDPID = null; public String AustPostBCSP = null; @Required() public BigDecimal MinPOValue = null; @Required() public BigDecimal MaxPOValue = null; public Short PeriodType = null; public String TradingName = null; public String CompanyName = null; public String ProprietorName = null; @Required() public BigDecimal FXCurrentBalance = null; @Required() public BigDecimal FXPeriod1 = null; @Required() public BigDecimal FXPeriod2 = null; @Required() public BigDecimal FXPeriod3 = null; @Required() public BigDecimal FXPeriod4 = null; public Short TradingStatus = null; @References(GL_Ledger.class) public String LedgerIDCreditorControl = null; @References(GL_Ledger.class) public String LedgerIDCreditorPurchases = null; @References(GL_Ledger.class) public String LedgerIDCreditorDiscounts = null; @References(GL_Ledger.class) public String LedgerIDCreditorSourcedPayments = null; @References(GL_Ledger.class) public String LedgerIDCreditorSourcedDebitAdjustment = null; @References(GL_Ledger.class) public String LedgerIDCreditorSourcedPurchase = null; @References(GL_Ledger.class) public String LedgerIDCreditorSourcedCreditAdjustment = null; @References(GL_Ledger.class) public String LedgerIDCreditorFreight = null; @References(GL_Ledger.class) public String LedgerIDCreditorInsurance = null; @References(GL_Ledger.class) public String LedgerIDCreditorDuty = null; @References(GL_Ledger.class) public String LedgerIDCreditorRealisedGainLoss = null; @References(GL_Ledger.class) public String LedgerIDCreditorUnRealisedGainLoss = null; @Required() public String PO_Workflows_RecID = null; @Required() public String Country = null; public String getCreditorID() { return CreditorID; } public CR_Main setCreditorID(String value) { this.CreditorID = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public CR_Main setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public String getAccountNo() { return AccountNo; } public CR_Main setAccountNo(String value) { this.AccountNo = value; return this; } public String getName() { return Name; } public CR_Main setName(String value) { this.Name = value; return this; } public String getAddress1() { return Address1; } public CR_Main setAddress1(String value) { this.Address1 = value; return this; } public String getAddress2() { return Address2; } public CR_Main setAddress2(String value) { this.Address2 = value; return this; } public String getAddress3() { return Address3; } public CR_Main setAddress3(String value) { this.Address3 = value; return this; } public String getAddress4() { return Address4; } public CR_Main setAddress4(String value) { this.Address4 = value; return this; } public String getPostCode() { return PostCode; } public CR_Main setPostCode(String value) { this.PostCode = value; return this; } public String getPhone() { return Phone; } public CR_Main setPhone(String value) { this.Phone = value; return this; } public String getFax() { return Fax; } public CR_Main setFax(String value) { this.Fax = value; return this; } public String getBankName() { return BankName; } public CR_Main setBankName(String value) { this.BankName = value; return this; } public String getBankAcc() { return BankAcc; } public CR_Main setBankAcc(String value) { this.BankAcc = value; return this; } public String getBsbn() { return BSBN; } public CR_Main setBsbn(String value) { this.BSBN = value; return this; } public String getAccountName() { return AccountName; } public CR_Main setAccountName(String value) { this.AccountName = value; return this; } public Short getDefaultPaymentType() { return DefaultPaymentType; } public CR_Main setDefaultPaymentType(Short value) { this.DefaultPaymentType = value; return this; } public BigDecimal getCreditLimit() { return CreditLimit; } public CR_Main setCreditLimit(BigDecimal value) { this.CreditLimit = value; return this; } public Short getEarlyPayDisOnRemitDays() { return EarlyPayDisOnRemitDays; } public CR_Main setEarlyPayDisOnRemitDays(Short value) { this.EarlyPayDisOnRemitDays = value; return this; } public BigDecimal getEarlyPayDisOnRemitAmt() { return EarlyPayDisOnRemitAmt; } public CR_Main setEarlyPayDisOnRemitAmt(BigDecimal value) { this.EarlyPayDisOnRemitAmt = value; return this; } public Date getLastSaleDate() { return LastSaleDate; } public CR_Main setLastSaleDate(Date value) { this.LastSaleDate = value; return this; } public Date getLastPaymentDate() { return LastPaymentDate; } public CR_Main setLastPaymentDate(Date value) { this.LastPaymentDate = value; return this; } public String getClassificationID() { return ClassificationID; } public CR_Main setClassificationID(String value) { this.ClassificationID = value; return this; } public Boolean isAccountOnHold() { return AccountOnHold; } public CR_Main setAccountOnHold(Boolean value) { this.AccountOnHold = value; return this; } public String getEmailAddress() { return EmailAddress; } public CR_Main setEmailAddress(String value) { this.EmailAddress = value; return this; } public BigDecimal getCurrentBalance() { return CurrentBalance; } public CR_Main setCurrentBalance(BigDecimal value) { this.CurrentBalance = value; return this; } public BigDecimal getPeriod1() { return Period1; } public CR_Main setPeriod1(BigDecimal value) { this.Period1 = value; return this; } public BigDecimal getPeriod2() { return Period2; } public CR_Main setPeriod2(BigDecimal value) { this.Period2 = value; return this; } public BigDecimal getPeriod3() { return Period3; } public CR_Main setPeriod3(BigDecimal value) { this.Period3 = value; return this; } public BigDecimal getPeriod4() { return Period4; } public CR_Main setPeriod4(BigDecimal value) { this.Period4 = value; return this; } public String getAltAccountNo() { return AltAccountNo; } public CR_Main setAltAccountNo(String value) { this.AltAccountNo = value; return this; } public Date getCommenceDate() { return CommenceDate; } public CR_Main setCommenceDate(Date value) { this.CommenceDate = value; return this; } public Short getTermsDays() { return TermsDays; } public CR_Main setTermsDays(Short value) { this.TermsDays = value; return this; } public String getAcn() { return ACN; } public CR_Main setAcn(String value) { this.ACN = value; return this; } public String getCurrencyID() { return CurrencyID; } public CR_Main setCurrencyID(String value) { this.CurrencyID = value; return this; } public Boolean isUsesFX() { return UsesFX; } public CR_Main setUsesFX(Boolean value) { this.UsesFX = value; return this; } public String getAbn() { return ABN; } public CR_Main setAbn(String value) { this.ABN = value; return this; } public Short getTermsType() { return TermsType; } public CR_Main setTermsType(Short value) { this.TermsType = value; return this; } public String getAustPostDPID() { return AustPostDPID; } public CR_Main setAustPostDPID(String value) { this.AustPostDPID = value; return this; } public String getAustPostBCSP() { return AustPostBCSP; } public CR_Main setAustPostBCSP(String value) { this.AustPostBCSP = value; return this; } public BigDecimal getMinPOValue() { return MinPOValue; } public CR_Main setMinPOValue(BigDecimal value) { this.MinPOValue = value; return this; } public BigDecimal getMaxPOValue() { return MaxPOValue; } public CR_Main setMaxPOValue(BigDecimal value) { this.MaxPOValue = value; return this; } public Short getPeriodType() { return PeriodType; } public CR_Main setPeriodType(Short value) { this.PeriodType = value; return this; } public String getTradingName() { return TradingName; } public CR_Main setTradingName(String value) { this.TradingName = value; return this; } public String getCompanyName() { return CompanyName; } public CR_Main setCompanyName(String value) { this.CompanyName = value; return this; } public String getProprietorName() { return ProprietorName; } public CR_Main setProprietorName(String value) { this.ProprietorName = value; return this; } public BigDecimal getFxCurrentBalance() { return FXCurrentBalance; } public CR_Main setFxCurrentBalance(BigDecimal value) { this.FXCurrentBalance = value; return this; } public BigDecimal getFxPeriod1() { return FXPeriod1; } public CR_Main setFxPeriod1(BigDecimal value) { this.FXPeriod1 = value; return this; } public BigDecimal getFxPeriod2() { return FXPeriod2; } public CR_Main setFxPeriod2(BigDecimal value) { this.FXPeriod2 = value; return this; } public BigDecimal getFxPeriod3() { return FXPeriod3; } public CR_Main setFxPeriod3(BigDecimal value) { this.FXPeriod3 = value; return this; } public BigDecimal getFxPeriod4() { return FXPeriod4; } public CR_Main setFxPeriod4(BigDecimal value) { this.FXPeriod4 = value; return this; } public Short getTradingStatus() { return TradingStatus; } public CR_Main setTradingStatus(Short value) { this.TradingStatus = value; return this; } public String getLedgerIDCreditorControl() { return LedgerIDCreditorControl; } public CR_Main setLedgerIDCreditorControl(String value) { this.LedgerIDCreditorControl = value; return this; } public String getLedgerIDCreditorPurchases() { return LedgerIDCreditorPurchases; } public CR_Main setLedgerIDCreditorPurchases(String value) { this.LedgerIDCreditorPurchases = value; return this; } public String getLedgerIDCreditorDiscounts() { return LedgerIDCreditorDiscounts; } public CR_Main setLedgerIDCreditorDiscounts(String value) { this.LedgerIDCreditorDiscounts = value; return this; } public String getLedgerIDCreditorSourcedPayments() { return LedgerIDCreditorSourcedPayments; } public CR_Main setLedgerIDCreditorSourcedPayments(String value) { this.LedgerIDCreditorSourcedPayments = value; return this; } public String getLedgerIDCreditorSourcedDebitAdjustment() { return LedgerIDCreditorSourcedDebitAdjustment; } public CR_Main setLedgerIDCreditorSourcedDebitAdjustment(String value) { this.LedgerIDCreditorSourcedDebitAdjustment = value; return this; } public String getLedgerIDCreditorSourcedPurchase() { return LedgerIDCreditorSourcedPurchase; } public CR_Main setLedgerIDCreditorSourcedPurchase(String value) { this.LedgerIDCreditorSourcedPurchase = value; return this; } public String getLedgerIDCreditorSourcedCreditAdjustment() { return LedgerIDCreditorSourcedCreditAdjustment; } public CR_Main setLedgerIDCreditorSourcedCreditAdjustment(String value) { this.LedgerIDCreditorSourcedCreditAdjustment = value; return this; } public String getLedgerIDCreditorFreight() { return LedgerIDCreditorFreight; } public CR_Main setLedgerIDCreditorFreight(String value) { this.LedgerIDCreditorFreight = value; return this; } public String getLedgerIDCreditorInsurance() { return LedgerIDCreditorInsurance; } public CR_Main setLedgerIDCreditorInsurance(String value) { this.LedgerIDCreditorInsurance = value; return this; } public String getLedgerIDCreditorDuty() { return LedgerIDCreditorDuty; } public CR_Main setLedgerIDCreditorDuty(String value) { this.LedgerIDCreditorDuty = value; return this; } public String getLedgerIDCreditorRealisedGainLoss() { return LedgerIDCreditorRealisedGainLoss; } public CR_Main setLedgerIDCreditorRealisedGainLoss(String value) { this.LedgerIDCreditorRealisedGainLoss = value; return this; } public String getLedgerIDCreditorUnRealisedGainLoss() { return LedgerIDCreditorUnRealisedGainLoss; } public CR_Main setLedgerIDCreditorUnRealisedGainLoss(String value) { this.LedgerIDCreditorUnRealisedGainLoss = value; return this; } public String getPoWorkflowsRecID() { return PO_Workflows_RecID; } public CR_Main setPoWorkflowsRecID(String value) { this.PO_Workflows_RecID = value; return this; } public String getCountry() { return Country; } public CR_Main setCountry(String value) { this.Country = value; return this; } } public static class CR_Main1 { @Required() public String CreditorID = null; public Date LastSavedDateTime = null; @Required() public String AccountNo = null; public String Name = null; public String Address1 = null; public String Address2 = null; public String Address3 = null; public String Address4 = null; public String PostCode = null; public String Phone = null; public String Fax = null; public String BankName = null; public String BankAcc = null; public String BSBN = null; public String AccountName = null; public Short DefaultPaymentType = null; public BigDecimal CreditLimit = null; public Short EarlyPayDisOnRemitDays = null; @Required() public BigDecimal EarlyPayDisOnRemitAmt = null; public Date LastSaleDate = null; public Date LastPaymentDate = null; @Required() public String ClassificationID = null; @Required() public Boolean AccountOnHold = null; public String EmailAddress = null; public BigDecimal CurrentBalance = null; @Required() public BigDecimal Period1 = null; @Required() public BigDecimal Period2 = null; @Required() public BigDecimal Period3 = null; @Required() public BigDecimal Period4 = null; public String AltAccountNo = null; public Date CommenceDate = null; @Required() public Integer ContactType = null; public Short TermsDays = null; public String ACN = null; public String CurrencyID = null; @Required() public Boolean UsesFX = null; public String ABN = null; public Short TermsType = null; public String AustPostDPID = null; public String AustPostBCSP = null; @Required() public BigDecimal MinPOValue = null; @Required() public BigDecimal MaxPOValue = null; public String getCreditorID() { return CreditorID; } public CR_Main1 setCreditorID(String value) { this.CreditorID = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public CR_Main1 setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public String getAccountNo() { return AccountNo; } public CR_Main1 setAccountNo(String value) { this.AccountNo = value; return this; } public String getName() { return Name; } public CR_Main1 setName(String value) { this.Name = value; return this; } public String getAddress1() { return Address1; } public CR_Main1 setAddress1(String value) { this.Address1 = value; return this; } public String getAddress2() { return Address2; } public CR_Main1 setAddress2(String value) { this.Address2 = value; return this; } public String getAddress3() { return Address3; } public CR_Main1 setAddress3(String value) { this.Address3 = value; return this; } public String getAddress4() { return Address4; } public CR_Main1 setAddress4(String value) { this.Address4 = value; return this; } public String getPostCode() { return PostCode; } public CR_Main1 setPostCode(String value) { this.PostCode = value; return this; } public String getPhone() { return Phone; } public CR_Main1 setPhone(String value) { this.Phone = value; return this; } public String getFax() { return Fax; } public CR_Main1 setFax(String value) { this.Fax = value; return this; } public String getBankName() { return BankName; } public CR_Main1 setBankName(String value) { this.BankName = value; return this; } public String getBankAcc() { return BankAcc; } public CR_Main1 setBankAcc(String value) { this.BankAcc = value; return this; } public String getBsbn() { return BSBN; } public CR_Main1 setBsbn(String value) { this.BSBN = value; return this; } public String getAccountName() { return AccountName; } public CR_Main1 setAccountName(String value) { this.AccountName = value; return this; } public Short getDefaultPaymentType() { return DefaultPaymentType; } public CR_Main1 setDefaultPaymentType(Short value) { this.DefaultPaymentType = value; return this; } public BigDecimal getCreditLimit() { return CreditLimit; } public CR_Main1 setCreditLimit(BigDecimal value) { this.CreditLimit = value; return this; } public Short getEarlyPayDisOnRemitDays() { return EarlyPayDisOnRemitDays; } public CR_Main1 setEarlyPayDisOnRemitDays(Short value) { this.EarlyPayDisOnRemitDays = value; return this; } public BigDecimal getEarlyPayDisOnRemitAmt() { return EarlyPayDisOnRemitAmt; } public CR_Main1 setEarlyPayDisOnRemitAmt(BigDecimal value) { this.EarlyPayDisOnRemitAmt = value; return this; } public Date getLastSaleDate() { return LastSaleDate; } public CR_Main1 setLastSaleDate(Date value) { this.LastSaleDate = value; return this; } public Date getLastPaymentDate() { return LastPaymentDate; } public CR_Main1 setLastPaymentDate(Date value) { this.LastPaymentDate = value; return this; } public String getClassificationID() { return ClassificationID; } public CR_Main1 setClassificationID(String value) { this.ClassificationID = value; return this; } public Boolean isAccountOnHold() { return AccountOnHold; } public CR_Main1 setAccountOnHold(Boolean value) { this.AccountOnHold = value; return this; } public String getEmailAddress() { return EmailAddress; } public CR_Main1 setEmailAddress(String value) { this.EmailAddress = value; return this; } public BigDecimal getCurrentBalance() { return CurrentBalance; } public CR_Main1 setCurrentBalance(BigDecimal value) { this.CurrentBalance = value; return this; } public BigDecimal getPeriod1() { return Period1; } public CR_Main1 setPeriod1(BigDecimal value) { this.Period1 = value; return this; } public BigDecimal getPeriod2() { return Period2; } public CR_Main1 setPeriod2(BigDecimal value) { this.Period2 = value; return this; } public BigDecimal getPeriod3() { return Period3; } public CR_Main1 setPeriod3(BigDecimal value) { this.Period3 = value; return this; } public BigDecimal getPeriod4() { return Period4; } public CR_Main1 setPeriod4(BigDecimal value) { this.Period4 = value; return this; } public String getAltAccountNo() { return AltAccountNo; } public CR_Main1 setAltAccountNo(String value) { this.AltAccountNo = value; return this; } public Date getCommenceDate() { return CommenceDate; } public CR_Main1 setCommenceDate(Date value) { this.CommenceDate = value; return this; } public Integer getContactType() { return ContactType; } public CR_Main1 setContactType(Integer value) { this.ContactType = value; return this; } public Short getTermsDays() { return TermsDays; } public CR_Main1 setTermsDays(Short value) { this.TermsDays = value; return this; } public String getAcn() { return ACN; } public CR_Main1 setAcn(String value) { this.ACN = value; return this; } public String getCurrencyID() { return CurrencyID; } public CR_Main1 setCurrencyID(String value) { this.CurrencyID = value; return this; } public Boolean isUsesFX() { return UsesFX; } public CR_Main1 setUsesFX(Boolean value) { this.UsesFX = value; return this; } public String getAbn() { return ABN; } public CR_Main1 setAbn(String value) { this.ABN = value; return this; } public Short getTermsType() { return TermsType; } public CR_Main1 setTermsType(Short value) { this.TermsType = value; return this; } public String getAustPostDPID() { return AustPostDPID; } public CR_Main1 setAustPostDPID(String value) { this.AustPostDPID = value; return this; } public String getAustPostBCSP() { return AustPostBCSP; } public CR_Main1 setAustPostBCSP(String value) { this.AustPostBCSP = value; return this; } public BigDecimal getMinPOValue() { return MinPOValue; } public CR_Main1 setMinPOValue(BigDecimal value) { this.MinPOValue = value; return this; } public BigDecimal getMaxPOValue() { return MaxPOValue; } public CR_Main1 setMaxPOValue(BigDecimal value) { this.MaxPOValue = value; return this; } } public static class CR_Main2 { @Required() public String CreditorID = null; public Date LastSavedDateTime = null; public String C1 = null; public String C2 = null; public String C3 = null; public String C4 = null; public String C5 = null; public String C7 = null; public String C8 = null; public String C10 = null; public String C11 = null; public String C12 = null; @Required() public Integer OpeningBal1 = null; @Required() public Integer OpeningBal2 = null; @Required() public Integer OpeningBal3 = null; @Required() public Integer OpeningBal4 = null; @Required() public Integer OpeningBal5 = null; @Required() public Integer OpeningBal6 = null; @Required() public Integer OpeningBal7 = null; @Required() public Integer OpeningBal8 = null; @Required() public Integer OpeningBal9 = null; @Required() public Integer OpeningBal10 = null; @Required() public Integer OpeningBal11 = null; @Required() public Integer OpeningBal12 = null; @Required() public Integer OpeningBal14 = null; @Required() public Integer OpeningBal15 = null; @Required() public Integer OpeningBal13 = null; @Required() public Integer OpeningBal16 = null; @Required() public Integer OpeningBal17 = null; @Required() public Integer OpeningBal18 = null; @Required() public Integer OpeningBal19 = null; @Required() public Integer OpeningBal20 = null; @Required() public Integer OpeningBal21 = null; @Required() public Integer OpeningBal22 = null; @Required() public Integer OpeningBal23 = null; @Required() public Integer OpeningBal24 = null; @Required() public Integer OpeningBal25 = null; @Required() public Integer OpeningBal26 = null; @Required() public Integer OpeningBal27 = null; @Required() public Integer OpeningBal28 = null; @Required() public Integer OpeningBal29 = null; @Required() public Integer OpeningBal30 = null; @Required() public Integer OpeningBal31 = null; @Required() public Integer OpeningBal32 = null; @Required() public Integer OpeningBal33 = null; @Required() public Integer OpeningBal34 = null; @Required() public Integer OpeningBal35 = null; @Required() public Integer OpeningBal36 = null; @Required() public Integer OpeningBal37 = null; @Required() public Integer OpeningBal38 = null; @Required() public Integer OpeningBal39 = null; @Required() public Integer OpeningBal40 = null; @Required() public Integer OpeningBal41 = null; @Required() public Integer OpeningBal42 = null; @Required() public Integer OpeningBal43 = null; @Required() public Integer OpeningBal44 = null; @Required() public Integer OpeningBal45 = null; @Required() public Integer OpeningBal46 = null; @Required() public Integer OpeningBal47 = null; @Required() public Integer OpeningBal48 = null; @Required() public Integer OpeningBal49 = null; @Required() public Integer OpeningBal50 = null; @Required() public Integer OpeningBal51 = null; @Required() public Integer OpeningBal52 = null; @Required() public Integer OpeningBal53 = null; public Short PeriodType = null; public String FXGainLossLedgerID = null; public String FXUnRealizedLedgerID = null; public String CustomField1 = null; public String CustomField2 = null; public String CustomField3 = null; public String CustomField4 = null; public String getCreditorID() { return CreditorID; } public CR_Main2 setCreditorID(String value) { this.CreditorID = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public CR_Main2 setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public String getC1() { return C1; } public CR_Main2 setC1(String value) { this.C1 = value; return this; } public String getC2() { return C2; } public CR_Main2 setC2(String value) { this.C2 = value; return this; } public String getC3() { return C3; } public CR_Main2 setC3(String value) { this.C3 = value; return this; } public String getC4() { return C4; } public CR_Main2 setC4(String value) { this.C4 = value; return this; } public String getC5() { return C5; } public CR_Main2 setC5(String value) { this.C5 = value; return this; } public String getC7() { return C7; } public CR_Main2 setC7(String value) { this.C7 = value; return this; } public String getC8() { return C8; } public CR_Main2 setC8(String value) { this.C8 = value; return this; } public String getC10() { return C10; } public CR_Main2 setC10(String value) { this.C10 = value; return this; } public String getC11() { return C11; } public CR_Main2 setC11(String value) { this.C11 = value; return this; } public String getC12() { return C12; } public CR_Main2 setC12(String value) { this.C12 = value; return this; } public Integer getOpeningBal1() { return OpeningBal1; } public CR_Main2 setOpeningBal1(Integer value) { this.OpeningBal1 = value; return this; } public Integer getOpeningBal2() { return OpeningBal2; } public CR_Main2 setOpeningBal2(Integer value) { this.OpeningBal2 = value; return this; } public Integer getOpeningBal3() { return OpeningBal3; } public CR_Main2 setOpeningBal3(Integer value) { this.OpeningBal3 = value; return this; } public Integer getOpeningBal4() { return OpeningBal4; } public CR_Main2 setOpeningBal4(Integer value) { this.OpeningBal4 = value; return this; } public Integer getOpeningBal5() { return OpeningBal5; } public CR_Main2 setOpeningBal5(Integer value) { this.OpeningBal5 = value; return this; } public Integer getOpeningBal6() { return OpeningBal6; } public CR_Main2 setOpeningBal6(Integer value) { this.OpeningBal6 = value; return this; } public Integer getOpeningBal7() { return OpeningBal7; } public CR_Main2 setOpeningBal7(Integer value) { this.OpeningBal7 = value; return this; } public Integer getOpeningBal8() { return OpeningBal8; } public CR_Main2 setOpeningBal8(Integer value) { this.OpeningBal8 = value; return this; } public Integer getOpeningBal9() { return OpeningBal9; } public CR_Main2 setOpeningBal9(Integer value) { this.OpeningBal9 = value; return this; } public Integer getOpeningBal10() { return OpeningBal10; } public CR_Main2 setOpeningBal10(Integer value) { this.OpeningBal10 = value; return this; } public Integer getOpeningBal11() { return OpeningBal11; } public CR_Main2 setOpeningBal11(Integer value) { this.OpeningBal11 = value; return this; } public Integer getOpeningBal12() { return OpeningBal12; } public CR_Main2 setOpeningBal12(Integer value) { this.OpeningBal12 = value; return this; } public Integer getOpeningBal14() { return OpeningBal14; } public CR_Main2 setOpeningBal14(Integer value) { this.OpeningBal14 = value; return this; } public Integer getOpeningBal15() { return OpeningBal15; } public CR_Main2 setOpeningBal15(Integer value) { this.OpeningBal15 = value; return this; } public Integer getOpeningBal13() { return OpeningBal13; } public CR_Main2 setOpeningBal13(Integer value) { this.OpeningBal13 = value; return this; } public Integer getOpeningBal16() { return OpeningBal16; } public CR_Main2 setOpeningBal16(Integer value) { this.OpeningBal16 = value; return this; } public Integer getOpeningBal17() { return OpeningBal17; } public CR_Main2 setOpeningBal17(Integer value) { this.OpeningBal17 = value; return this; } public Integer getOpeningBal18() { return OpeningBal18; } public CR_Main2 setOpeningBal18(Integer value) { this.OpeningBal18 = value; return this; } public Integer getOpeningBal19() { return OpeningBal19; } public CR_Main2 setOpeningBal19(Integer value) { this.OpeningBal19 = value; return this; } public Integer getOpeningBal20() { return OpeningBal20; } public CR_Main2 setOpeningBal20(Integer value) { this.OpeningBal20 = value; return this; } public Integer getOpeningBal21() { return OpeningBal21; } public CR_Main2 setOpeningBal21(Integer value) { this.OpeningBal21 = value; return this; } public Integer getOpeningBal22() { return OpeningBal22; } public CR_Main2 setOpeningBal22(Integer value) { this.OpeningBal22 = value; return this; } public Integer getOpeningBal23() { return OpeningBal23; } public CR_Main2 setOpeningBal23(Integer value) { this.OpeningBal23 = value; return this; } public Integer getOpeningBal24() { return OpeningBal24; } public CR_Main2 setOpeningBal24(Integer value) { this.OpeningBal24 = value; return this; } public Integer getOpeningBal25() { return OpeningBal25; } public CR_Main2 setOpeningBal25(Integer value) { this.OpeningBal25 = value; return this; } public Integer getOpeningBal26() { return OpeningBal26; } public CR_Main2 setOpeningBal26(Integer value) { this.OpeningBal26 = value; return this; } public Integer getOpeningBal27() { return OpeningBal27; } public CR_Main2 setOpeningBal27(Integer value) { this.OpeningBal27 = value; return this; } public Integer getOpeningBal28() { return OpeningBal28; } public CR_Main2 setOpeningBal28(Integer value) { this.OpeningBal28 = value; return this; } public Integer getOpeningBal29() { return OpeningBal29; } public CR_Main2 setOpeningBal29(Integer value) { this.OpeningBal29 = value; return this; } public Integer getOpeningBal30() { return OpeningBal30; } public CR_Main2 setOpeningBal30(Integer value) { this.OpeningBal30 = value; return this; } public Integer getOpeningBal31() { return OpeningBal31; } public CR_Main2 setOpeningBal31(Integer value) { this.OpeningBal31 = value; return this; } public Integer getOpeningBal32() { return OpeningBal32; } public CR_Main2 setOpeningBal32(Integer value) { this.OpeningBal32 = value; return this; } public Integer getOpeningBal33() { return OpeningBal33; } public CR_Main2 setOpeningBal33(Integer value) { this.OpeningBal33 = value; return this; } public Integer getOpeningBal34() { return OpeningBal34; } public CR_Main2 setOpeningBal34(Integer value) { this.OpeningBal34 = value; return this; } public Integer getOpeningBal35() { return OpeningBal35; } public CR_Main2 setOpeningBal35(Integer value) { this.OpeningBal35 = value; return this; } public Integer getOpeningBal36() { return OpeningBal36; } public CR_Main2 setOpeningBal36(Integer value) { this.OpeningBal36 = value; return this; } public Integer getOpeningBal37() { return OpeningBal37; } public CR_Main2 setOpeningBal37(Integer value) { this.OpeningBal37 = value; return this; } public Integer getOpeningBal38() { return OpeningBal38; } public CR_Main2 setOpeningBal38(Integer value) { this.OpeningBal38 = value; return this; } public Integer getOpeningBal39() { return OpeningBal39; } public CR_Main2 setOpeningBal39(Integer value) { this.OpeningBal39 = value; return this; } public Integer getOpeningBal40() { return OpeningBal40; } public CR_Main2 setOpeningBal40(Integer value) { this.OpeningBal40 = value; return this; } public Integer getOpeningBal41() { return OpeningBal41; } public CR_Main2 setOpeningBal41(Integer value) { this.OpeningBal41 = value; return this; } public Integer getOpeningBal42() { return OpeningBal42; } public CR_Main2 setOpeningBal42(Integer value) { this.OpeningBal42 = value; return this; } public Integer getOpeningBal43() { return OpeningBal43; } public CR_Main2 setOpeningBal43(Integer value) { this.OpeningBal43 = value; return this; } public Integer getOpeningBal44() { return OpeningBal44; } public CR_Main2 setOpeningBal44(Integer value) { this.OpeningBal44 = value; return this; } public Integer getOpeningBal45() { return OpeningBal45; } public CR_Main2 setOpeningBal45(Integer value) { this.OpeningBal45 = value; return this; } public Integer getOpeningBal46() { return OpeningBal46; } public CR_Main2 setOpeningBal46(Integer value) { this.OpeningBal46 = value; return this; } public Integer getOpeningBal47() { return OpeningBal47; } public CR_Main2 setOpeningBal47(Integer value) { this.OpeningBal47 = value; return this; } public Integer getOpeningBal48() { return OpeningBal48; } public CR_Main2 setOpeningBal48(Integer value) { this.OpeningBal48 = value; return this; } public Integer getOpeningBal49() { return OpeningBal49; } public CR_Main2 setOpeningBal49(Integer value) { this.OpeningBal49 = value; return this; } public Integer getOpeningBal50() { return OpeningBal50; } public CR_Main2 setOpeningBal50(Integer value) { this.OpeningBal50 = value; return this; } public Integer getOpeningBal51() { return OpeningBal51; } public CR_Main2 setOpeningBal51(Integer value) { this.OpeningBal51 = value; return this; } public Integer getOpeningBal52() { return OpeningBal52; } public CR_Main2 setOpeningBal52(Integer value) { this.OpeningBal52 = value; return this; } public Integer getOpeningBal53() { return OpeningBal53; } public CR_Main2 setOpeningBal53(Integer value) { this.OpeningBal53 = value; return this; } public Short getPeriodType() { return PeriodType; } public CR_Main2 setPeriodType(Short value) { this.PeriodType = value; return this; } public String getFxGainLossLedgerID() { return FXGainLossLedgerID; } public CR_Main2 setFxGainLossLedgerID(String value) { this.FXGainLossLedgerID = value; return this; } public String getFxUnRealizedLedgerID() { return FXUnRealizedLedgerID; } public CR_Main2 setFxUnRealizedLedgerID(String value) { this.FXUnRealizedLedgerID = value; return this; } public String getCustomField1() { return CustomField1; } public CR_Main2 setCustomField1(String value) { this.CustomField1 = value; return this; } public String getCustomField2() { return CustomField2; } public CR_Main2 setCustomField2(String value) { this.CustomField2 = value; return this; } public String getCustomField3() { return CustomField3; } public CR_Main2 setCustomField3(String value) { this.CustomField3 = value; return this; } public String getCustomField4() { return CustomField4; } public CR_Main2 setCustomField4(String value) { this.CustomField4 = value; return this; } } public static class CR_Notes { @Required() public String RecID = null; @Required() public String CreditorID = null; @Required() public String NoteTypeID = null; @Required() public Date LastSavedDateTime = null; @Required() public String LastSavedByStaffID = null; public String NoteText = null; @Required() public Integer ItemNo = null; public String getRecID() { return RecID; } public CR_Notes setRecID(String value) { this.RecID = value; return this; } public String getCreditorID() { return CreditorID; } public CR_Notes setCreditorID(String value) { this.CreditorID = value; return this; } public String getNoteTypeID() { return NoteTypeID; } public CR_Notes setNoteTypeID(String value) { this.NoteTypeID = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public CR_Notes setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public String getLastSavedByStaffID() { return LastSavedByStaffID; } public CR_Notes setLastSavedByStaffID(String value) { this.LastSavedByStaffID = value; return this; } public String getNoteText() { return NoteText; } public CR_Notes setNoteText(String value) { this.NoteText = value; return this; } public Integer getItemNo() { return ItemNo; } public CR_Notes setItemNo(Integer value) { this.ItemNo = value; return this; } } public static class CR_PaymentCustomSetting { @Required() public String SettingID = null; @Required() public Date LastSavedDateTime = null; public String SettingDescription = null; public String SettingName = null; public Integer DisplayOrder = null; public Short CellType = null; public String ScriptFormatCell = null; public String ScriptButtonClicked = null; public String ScriptReadData = null; public String GridHandlerCode = null; @References(SY_Plugin.class) @Required() public UUID SY_Plugin_RecID = null; public String getSettingID() { return SettingID; } public CR_PaymentCustomSetting setSettingID(String value) { this.SettingID = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public CR_PaymentCustomSetting setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public String getSettingDescription() { return SettingDescription; } public CR_PaymentCustomSetting setSettingDescription(String value) { this.SettingDescription = value; return this; } public String getSettingName() { return SettingName; } public CR_PaymentCustomSetting setSettingName(String value) { this.SettingName = value; return this; } public Integer getDisplayOrder() { return DisplayOrder; } public CR_PaymentCustomSetting setDisplayOrder(Integer value) { this.DisplayOrder = value; return this; } public Short getCellType() { return CellType; } public CR_PaymentCustomSetting setCellType(Short value) { this.CellType = value; return this; } public String getScriptFormatCell() { return ScriptFormatCell; } public CR_PaymentCustomSetting setScriptFormatCell(String value) { this.ScriptFormatCell = value; return this; } public String getScriptButtonClicked() { return ScriptButtonClicked; } public CR_PaymentCustomSetting setScriptButtonClicked(String value) { this.ScriptButtonClicked = value; return this; } public String getScriptReadData() { return ScriptReadData; } public CR_PaymentCustomSetting setScriptReadData(String value) { this.ScriptReadData = value; return this; } public String getGridHandlerCode() { return GridHandlerCode; } public CR_PaymentCustomSetting setGridHandlerCode(String value) { this.GridHandlerCode = value; return this; } public UUID getSyPluginRecID() { return SY_Plugin_RecID; } public CR_PaymentCustomSetting setSyPluginRecID(UUID value) { this.SY_Plugin_RecID = value; return this; } } public static class CR_PaymentCustomSettingValues { @Required() public String SettingValueID = null; @References(CR_PaymentCustomSetting.class) public String SettingID = null; @References(CR_BatchTrans.class) @Required() public String CR_BatchTrans_ReceiptID = null; public String Contents = null; @Required() public Date LastSavedDateTime = null; public String getSettingValueID() { return SettingValueID; } public CR_PaymentCustomSettingValues setSettingValueID(String value) { this.SettingValueID = value; return this; } public String getSettingID() { return SettingID; } public CR_PaymentCustomSettingValues setSettingID(String value) { this.SettingID = value; return this; } public String getCrBatchTransReceiptID() { return CR_BatchTrans_ReceiptID; } public CR_PaymentCustomSettingValues setCrBatchTransReceiptID(String value) { this.CR_BatchTrans_ReceiptID = value; return this; } public String getContents() { return Contents; } public CR_PaymentCustomSettingValues setContents(String value) { this.Contents = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public CR_PaymentCustomSettingValues setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } } public static class CR_PurchaseCustomSetting { @Required() public String SettingID = null; @Required() public Date LastSavedDateTime = null; public String SettingDescription = null; public String SettingName = null; public Integer DisplayOrder = null; public Short CellType = null; public String ScriptFormatCell = null; public String ScriptButtonClicked = null; public String ScriptReadData = null; public String GridHandlerCode = null; @References(SY_Plugin.class) @Required() public UUID SY_Plugin_RecID = null; public String getSettingID() { return SettingID; } public CR_PurchaseCustomSetting setSettingID(String value) { this.SettingID = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public CR_PurchaseCustomSetting setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public String getSettingDescription() { return SettingDescription; } public CR_PurchaseCustomSetting setSettingDescription(String value) { this.SettingDescription = value; return this; } public String getSettingName() { return SettingName; } public CR_PurchaseCustomSetting setSettingName(String value) { this.SettingName = value; return this; } public Integer getDisplayOrder() { return DisplayOrder; } public CR_PurchaseCustomSetting setDisplayOrder(Integer value) { this.DisplayOrder = value; return this; } public Short getCellType() { return CellType; } public CR_PurchaseCustomSetting setCellType(Short value) { this.CellType = value; return this; } public String getScriptFormatCell() { return ScriptFormatCell; } public CR_PurchaseCustomSetting setScriptFormatCell(String value) { this.ScriptFormatCell = value; return this; } public String getScriptButtonClicked() { return ScriptButtonClicked; } public CR_PurchaseCustomSetting setScriptButtonClicked(String value) { this.ScriptButtonClicked = value; return this; } public String getScriptReadData() { return ScriptReadData; } public CR_PurchaseCustomSetting setScriptReadData(String value) { this.ScriptReadData = value; return this; } public String getGridHandlerCode() { return GridHandlerCode; } public CR_PurchaseCustomSetting setGridHandlerCode(String value) { this.GridHandlerCode = value; return this; } public UUID getSyPluginRecID() { return SY_Plugin_RecID; } public CR_PurchaseCustomSetting setSyPluginRecID(UUID value) { this.SY_Plugin_RecID = value; return this; } } public static class CR_PurchaseCustomSettingValues { @Required() public String SettingValueID = null; @References(CR_PurchaseCustomSetting.class) public String SettingID = null; @References(CR_BatchTrans.class) @Required() public String CR_BatchTrans_ReceiptID = null; public String Contents = null; @Required() public Date LastSavedDateTime = null; public String getSettingValueID() { return SettingValueID; } public CR_PurchaseCustomSettingValues setSettingValueID(String value) { this.SettingValueID = value; return this; } public String getSettingID() { return SettingID; } public CR_PurchaseCustomSettingValues setSettingID(String value) { this.SettingID = value; return this; } public String getCrBatchTransReceiptID() { return CR_BatchTrans_ReceiptID; } public CR_PurchaseCustomSettingValues setCrBatchTransReceiptID(String value) { this.CR_BatchTrans_ReceiptID = value; return this; } public String getContents() { return Contents; } public CR_PurchaseCustomSettingValues setContents(String value) { this.Contents = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public CR_PurchaseCustomSettingValues setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } } public static class CR_Purchases { @Required() public String CR_PurchID = null; public Date DateRun = null; public Date InvoiceDate = null; @Required() public String CreditorID = null; public String InvoiceNo = null; public String PartNo = null; public String Description = null; public String ClassDescription = null; public BigDecimal Quantity = null; public BigDecimal UnitCost = null; public BigDecimal LineTotal = null; @Required() public String InvoiceID = null; @Required() public String InventoryID = null; public Short MonthNo = null; public Short YearNo = null; @Required() public String IN_LogicalID = null; public String getCrPurchID() { return CR_PurchID; } public CR_Purchases setCrPurchID(String value) { this.CR_PurchID = value; return this; } public Date getDateRun() { return DateRun; } public CR_Purchases setDateRun(Date value) { this.DateRun = value; return this; } public Date getInvoiceDate() { return InvoiceDate; } public CR_Purchases setInvoiceDate(Date value) { this.InvoiceDate = value; return this; } public String getCreditorID() { return CreditorID; } public CR_Purchases setCreditorID(String value) { this.CreditorID = value; return this; } public String getInvoiceNo() { return InvoiceNo; } public CR_Purchases setInvoiceNo(String value) { this.InvoiceNo = value; return this; } public String getPartNo() { return PartNo; } public CR_Purchases setPartNo(String value) { this.PartNo = value; return this; } public String getDescription() { return Description; } public CR_Purchases setDescription(String value) { this.Description = value; return this; } public String getClassDescription() { return ClassDescription; } public CR_Purchases setClassDescription(String value) { this.ClassDescription = value; return this; } public BigDecimal getQuantity() { return Quantity; } public CR_Purchases setQuantity(BigDecimal value) { this.Quantity = value; return this; } public BigDecimal getUnitCost() { return UnitCost; } public CR_Purchases setUnitCost(BigDecimal value) { this.UnitCost = value; return this; } public BigDecimal getLineTotal() { return LineTotal; } public CR_Purchases setLineTotal(BigDecimal value) { this.LineTotal = value; return this; } public String getInvoiceID() { return InvoiceID; } public CR_Purchases setInvoiceID(String value) { this.InvoiceID = value; return this; } public String getInventoryID() { return InventoryID; } public CR_Purchases setInventoryID(String value) { this.InventoryID = value; return this; } public Short getMonthNo() { return MonthNo; } public CR_Purchases setMonthNo(Short value) { this.MonthNo = value; return this; } public Short getYearNo() { return YearNo; } public CR_Purchases setYearNo(Short value) { this.YearNo = value; return this; } public String getInLogicalID() { return IN_LogicalID; } public CR_Purchases setInLogicalID(String value) { this.IN_LogicalID = value; return this; } } public static class CR_Trans { @Required() public String TransID = null; @References(CR_Main.class) @Required() public String CreditorID = null; @Required() public Boolean DebitCredit = null; public String Ref = null; public String Remark = null; public Date TranDate = null; public String InvRemitNo = null; public BigDecimal FXAmount = null; public BigDecimal DiscountedAmount = null; @Required() public Boolean AgedOut = null; public String SourceID = null; public BigDecimal AllocatedAmount = null; public Date InitDateTime = null; public Date LastSavedDateTime = null; public String BatchNo = null; @Required() public Boolean ChequePrinting = null; public String ChequeRunID = null; public Date DueDate = null; public BigDecimal Amount = null; public BigDecimal CurrencyRateUsed = null; public BigDecimal FXAllocAmount = null; public BigDecimal GSTAmount = null; public BigDecimal RealisedGainLoss = null; public BigDecimal UnRealisedGainLoss = null; public Short FXDecimalPlaces = null; public Short DecimalPlaces = null; @References(FX_Currency.class) public String CurrencyID = null; public String Source = null; public String Note = null; public String getTransID() { return TransID; } public CR_Trans setTransID(String value) { this.TransID = value; return this; } public String getCreditorID() { return CreditorID; } public CR_Trans setCreditorID(String value) { this.CreditorID = value; return this; } public Boolean isDebitCredit() { return DebitCredit; } public CR_Trans setDebitCredit(Boolean value) { this.DebitCredit = value; return this; } public String getRef() { return Ref; } public CR_Trans setRef(String value) { this.Ref = value; return this; } public String getRemark() { return Remark; } public CR_Trans setRemark(String value) { this.Remark = value; return this; } public Date getTranDate() { return TranDate; } public CR_Trans setTranDate(Date value) { this.TranDate = value; return this; } public String getInvRemitNo() { return InvRemitNo; } public CR_Trans setInvRemitNo(String value) { this.InvRemitNo = value; return this; } public BigDecimal getFxAmount() { return FXAmount; } public CR_Trans setFxAmount(BigDecimal value) { this.FXAmount = value; return this; } public BigDecimal getDiscountedAmount() { return DiscountedAmount; } public CR_Trans setDiscountedAmount(BigDecimal value) { this.DiscountedAmount = value; return this; } public Boolean isAgedOut() { return AgedOut; } public CR_Trans setAgedOut(Boolean value) { this.AgedOut = value; return this; } public String getSourceID() { return SourceID; } public CR_Trans setSourceID(String value) { this.SourceID = value; return this; } public BigDecimal getAllocatedAmount() { return AllocatedAmount; } public CR_Trans setAllocatedAmount(BigDecimal value) { this.AllocatedAmount = value; return this; } public Date getInitDateTime() { return InitDateTime; } public CR_Trans setInitDateTime(Date value) { this.InitDateTime = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public CR_Trans setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public String getBatchNo() { return BatchNo; } public CR_Trans setBatchNo(String value) { this.BatchNo = value; return this; } public Boolean isChequePrinting() { return ChequePrinting; } public CR_Trans setChequePrinting(Boolean value) { this.ChequePrinting = value; return this; } public String getChequeRunID() { return ChequeRunID; } public CR_Trans setChequeRunID(String value) { this.ChequeRunID = value; return this; } public Date getDueDate() { return DueDate; } public CR_Trans setDueDate(Date value) { this.DueDate = value; return this; } public BigDecimal getAmount() { return Amount; } public CR_Trans setAmount(BigDecimal value) { this.Amount = value; return this; } public BigDecimal getCurrencyRateUsed() { return CurrencyRateUsed; } public CR_Trans setCurrencyRateUsed(BigDecimal value) { this.CurrencyRateUsed = value; return this; } public BigDecimal getFxAllocAmount() { return FXAllocAmount; } public CR_Trans setFxAllocAmount(BigDecimal value) { this.FXAllocAmount = value; return this; } public BigDecimal getGstAmount() { return GSTAmount; } public CR_Trans setGstAmount(BigDecimal value) { this.GSTAmount = value; return this; } public BigDecimal getRealisedGainLoss() { return RealisedGainLoss; } public CR_Trans setRealisedGainLoss(BigDecimal value) { this.RealisedGainLoss = value; return this; } public BigDecimal getUnRealisedGainLoss() { return UnRealisedGainLoss; } public CR_Trans setUnRealisedGainLoss(BigDecimal value) { this.UnRealisedGainLoss = value; return this; } public Short getFxDecimalPlaces() { return FXDecimalPlaces; } public CR_Trans setFxDecimalPlaces(Short value) { this.FXDecimalPlaces = value; return this; } public Short getDecimalPlaces() { return DecimalPlaces; } public CR_Trans setDecimalPlaces(Short value) { this.DecimalPlaces = value; return this; } public String getCurrencyID() { return CurrencyID; } public CR_Trans setCurrencyID(String value) { this.CurrencyID = value; return this; } public String getSource() { return Source; } public CR_Trans setSource(String value) { this.Source = value; return this; } public String getNote() { return Note; } public CR_Trans setNote(String value) { this.Note = value; return this; } } public static class CR_TransAlloc { @Required() public String AllocID = null; @Required() public String CreditorID = null; @Required() public String DebitTransID = null; @Required() public String CreditTransID = null; public BigDecimal FXAmount = null; public BigDecimal DebitAmount = null; public BigDecimal CreditAmount = null; public Boolean DebitAged = null; public Boolean CreditAged = null; @Required() public Date DateAlloc = null; public Integer Version = null; public String getAllocID() { return AllocID; } public CR_TransAlloc setAllocID(String value) { this.AllocID = value; return this; } public String getCreditorID() { return CreditorID; } public CR_TransAlloc setCreditorID(String value) { this.CreditorID = value; return this; } public String getDebitTransID() { return DebitTransID; } public CR_TransAlloc setDebitTransID(String value) { this.DebitTransID = value; return this; } public String getCreditTransID() { return CreditTransID; } public CR_TransAlloc setCreditTransID(String value) { this.CreditTransID = value; return this; } public BigDecimal getFxAmount() { return FXAmount; } public CR_TransAlloc setFxAmount(BigDecimal value) { this.FXAmount = value; return this; } public BigDecimal getDebitAmount() { return DebitAmount; } public CR_TransAlloc setDebitAmount(BigDecimal value) { this.DebitAmount = value; return this; } public BigDecimal getCreditAmount() { return CreditAmount; } public CR_TransAlloc setCreditAmount(BigDecimal value) { this.CreditAmount = value; return this; } public Boolean isDebitAged() { return DebitAged; } public CR_TransAlloc setDebitAged(Boolean value) { this.DebitAged = value; return this; } public Boolean isCreditAged() { return CreditAged; } public CR_TransAlloc setCreditAged(Boolean value) { this.CreditAged = value; return this; } public Date getDateAlloc() { return DateAlloc; } public CR_TransAlloc setDateAlloc(Date value) { this.DateAlloc = value; return this; } public Integer getVersion() { return Version; } public CR_TransAlloc setVersion(Integer value) { this.Version = value; return this; } } public static class CR_TransCustomFields { @Required() public String RecID = null; @Required() public String SettingName = null; public String SettingDescription = null; public Integer CellType = null; public String FieldParameter = null; @References(SY_Plugin.class) @Required() public UUID SY_Plugin_RecID = null; @Required() public Date LastSavedDateTime = null; public Integer DisplayOrder = null; public String getRecID() { return RecID; } public CR_TransCustomFields setRecID(String value) { this.RecID = value; return this; } public String getSettingName() { return SettingName; } public CR_TransCustomFields setSettingName(String value) { this.SettingName = value; return this; } public String getSettingDescription() { return SettingDescription; } public CR_TransCustomFields setSettingDescription(String value) { this.SettingDescription = value; return this; } public Integer getCellType() { return CellType; } public CR_TransCustomFields setCellType(Integer value) { this.CellType = value; return this; } public String getFieldParameter() { return FieldParameter; } public CR_TransCustomFields setFieldParameter(String value) { this.FieldParameter = value; return this; } public UUID getSyPluginRecID() { return SY_Plugin_RecID; } public CR_TransCustomFields setSyPluginRecID(UUID value) { this.SY_Plugin_RecID = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public CR_TransCustomFields setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Integer getDisplayOrder() { return DisplayOrder; } public CR_TransCustomFields setDisplayOrder(Integer value) { this.DisplayOrder = value; return this; } } public static class CR_TransCustomFieldValues { @Required() public String RecID = null; @References(CR_Trans.class) @Required() public String CR_Trans_TransID = null; @References(CR_TransCustomFields.class) @Required() public String CR_TransCustomFields_RecID = null; public String Contents = null; @Required() public Date LastSavedDateTime = null; public String getRecID() { return RecID; } public CR_TransCustomFieldValues setRecID(String value) { this.RecID = value; return this; } public String getCrTransTransID() { return CR_Trans_TransID; } public CR_TransCustomFieldValues setCrTransTransID(String value) { this.CR_Trans_TransID = value; return this; } public String getCrTransCustomFieldsRecID() { return CR_TransCustomFields_RecID; } public CR_TransCustomFieldValues setCrTransCustomFieldsRecID(String value) { this.CR_TransCustomFields_RecID = value; return this; } public String getContents() { return Contents; } public CR_TransCustomFieldValues setContents(String value) { this.Contents = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public CR_TransCustomFieldValues setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } } public static class CR_Warehouse { @Required() public String WarehouseID = null; @Required() public String CreditorID = null; public String Description = null; public String Address1 = null; public String Address2 = null; public String Address3 = null; public String Address4 = null; public String PostCode = null; public String Notes = null; public String CourierDetails = null; public Boolean DefaultItem = null; public Short DefaultDelDays = null; @Required() public String Country = null; public String getWarehouseID() { return WarehouseID; } public CR_Warehouse setWarehouseID(String value) { this.WarehouseID = value; return this; } public String getCreditorID() { return CreditorID; } public CR_Warehouse setCreditorID(String value) { this.CreditorID = value; return this; } public String getDescription() { return Description; } public CR_Warehouse setDescription(String value) { this.Description = value; return this; } public String getAddress1() { return Address1; } public CR_Warehouse setAddress1(String value) { this.Address1 = value; return this; } public String getAddress2() { return Address2; } public CR_Warehouse setAddress2(String value) { this.Address2 = value; return this; } public String getAddress3() { return Address3; } public CR_Warehouse setAddress3(String value) { this.Address3 = value; return this; } public String getAddress4() { return Address4; } public CR_Warehouse setAddress4(String value) { this.Address4 = value; return this; } public String getPostCode() { return PostCode; } public CR_Warehouse setPostCode(String value) { this.PostCode = value; return this; } public String getNotes() { return Notes; } public CR_Warehouse setNotes(String value) { this.Notes = value; return this; } public String getCourierDetails() { return CourierDetails; } public CR_Warehouse setCourierDetails(String value) { this.CourierDetails = value; return this; } public Boolean isDefaultItem() { return DefaultItem; } public CR_Warehouse setDefaultItem(Boolean value) { this.DefaultItem = value; return this; } public Short getDefaultDelDays() { return DefaultDelDays; } public CR_Warehouse setDefaultDelDays(Short value) { this.DefaultDelDays = value; return this; } public String getCountry() { return Country; } public CR_Warehouse setCountry(String value) { this.Country = value; return this; } } public static class CurrYearProfit { public BigDecimal Profit = null; public BigDecimal getProfit() { return Profit; } public CurrYearProfit setProfit(BigDecimal value) { this.Profit = value; return this; } } public static class DB_AdjustmentLines { @Required() public String RecID = null; @References(DB_Adjustments.class) @Required() public String DB_Adjustments_RecID = null; @Required() public Integer ItemNo = null; @Required() public Date DueDate = null; @References(DB_Main.class) @Required() public String DB_Main_RecID = null; @References(GL_Ledger.class) @Required() public String GL_Ledger_RecID_DebtorsControl = null; @Required() public String InvoiceRemittanceNo = null; @Required() public BigDecimal WriteOnAmount = null; @Required() public BigDecimal WriteOffAmount = null; @References(GL_Ledger.class) public String GL_Ledger_RecID_OtherLedger = null; @Required() public String Reference = null; @Required() public String Remark = null; @References(DB_Trans.class) public String DB_Trans_RecID = null; @References(TX_Main.class) @Required() public String TX_Main_RecID = null; @Required() public BigDecimal TaxRate = null; @Required() public BigDecimal TaxAmount = null; @Required() public Date LastSavedDateTime = null; @Required() public ArrayList RowHash = null; @Required() public Date AdjustmentDate = null; public String getRecID() { return RecID; } public DB_AdjustmentLines setRecID(String value) { this.RecID = value; return this; } public String getDbAdjustmentsRecID() { return DB_Adjustments_RecID; } public DB_AdjustmentLines setDbAdjustmentsRecID(String value) { this.DB_Adjustments_RecID = value; return this; } public Integer getItemNo() { return ItemNo; } public DB_AdjustmentLines setItemNo(Integer value) { this.ItemNo = value; return this; } public Date getDueDate() { return DueDate; } public DB_AdjustmentLines setDueDate(Date value) { this.DueDate = value; return this; } public String getDbMainRecID() { return DB_Main_RecID; } public DB_AdjustmentLines setDbMainRecID(String value) { this.DB_Main_RecID = value; return this; } public String getGlLedgerRecIDDebtorsControl() { return GL_Ledger_RecID_DebtorsControl; } public DB_AdjustmentLines setGlLedgerRecIDDebtorsControl(String value) { this.GL_Ledger_RecID_DebtorsControl = value; return this; } public String getInvoiceRemittanceNo() { return InvoiceRemittanceNo; } public DB_AdjustmentLines setInvoiceRemittanceNo(String value) { this.InvoiceRemittanceNo = value; return this; } public BigDecimal getWriteOnAmount() { return WriteOnAmount; } public DB_AdjustmentLines setWriteOnAmount(BigDecimal value) { this.WriteOnAmount = value; return this; } public BigDecimal getWriteOffAmount() { return WriteOffAmount; } public DB_AdjustmentLines setWriteOffAmount(BigDecimal value) { this.WriteOffAmount = value; return this; } public String getGlLedgerRecIDOtherLedger() { return GL_Ledger_RecID_OtherLedger; } public DB_AdjustmentLines setGlLedgerRecIDOtherLedger(String value) { this.GL_Ledger_RecID_OtherLedger = value; return this; } public String getReference() { return Reference; } public DB_AdjustmentLines setReference(String value) { this.Reference = value; return this; } public String getRemark() { return Remark; } public DB_AdjustmentLines setRemark(String value) { this.Remark = value; return this; } public String getDbTransRecID() { return DB_Trans_RecID; } public DB_AdjustmentLines setDbTransRecID(String value) { this.DB_Trans_RecID = value; return this; } public String getTxMainRecID() { return TX_Main_RecID; } public DB_AdjustmentLines setTxMainRecID(String value) { this.TX_Main_RecID = value; return this; } public BigDecimal getTaxRate() { return TaxRate; } public DB_AdjustmentLines setTaxRate(BigDecimal value) { this.TaxRate = value; return this; } public BigDecimal getTaxAmount() { return TaxAmount; } public DB_AdjustmentLines setTaxAmount(BigDecimal value) { this.TaxAmount = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public DB_AdjustmentLines setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public ArrayList getRowHash() { return RowHash; } public DB_AdjustmentLines setRowHash(ArrayList value) { this.RowHash = value; return this; } public Date getAdjustmentDate() { return AdjustmentDate; } public DB_AdjustmentLines setAdjustmentDate(Date value) { this.AdjustmentDate = value; return this; } } public static class DB_Adjustments { @Required() public String RecID = null; @Required() public String BatchNo = null; @Required() public Date BatchDate = null; @Required() public Short Status = null; @References(HR_Staff.class) @Required() public String LastSavedBy_HR_Staff_RecID = null; @Required() public Date LastSavedDateTime = null; @Required() public String Description = null; @Required() public ArrayList RowHash = null; public String getRecID() { return RecID; } public DB_Adjustments setRecID(String value) { this.RecID = value; return this; } public String getBatchNo() { return BatchNo; } public DB_Adjustments setBatchNo(String value) { this.BatchNo = value; return this; } public Date getBatchDate() { return BatchDate; } public DB_Adjustments setBatchDate(Date value) { this.BatchDate = value; return this; } public Short getStatus() { return Status; } public DB_Adjustments setStatus(Short value) { this.Status = value; return this; } public String getLastSavedByHrStaffRecID() { return LastSavedBy_HR_Staff_RecID; } public DB_Adjustments setLastSavedByHrStaffRecID(String value) { this.LastSavedBy_HR_Staff_RecID = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public DB_Adjustments setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public String getDescription() { return Description; } public DB_Adjustments setDescription(String value) { this.Description = value; return this; } public ArrayList getRowHash() { return RowHash; } public DB_Adjustments setRowHash(ArrayList value) { this.RowHash = value; return this; } } public static class DB_APIKey { @Required() public UUID RecID = null; public String Name = null; @References(DB_Main.class) @Required() public String DB_Main_DebtorID = null; @References(HR_Staff.class) @Required() public String HR_Staff_StaffID = null; @Required() public Date CreatedDateTime = null; public Date ExpiryDateTime = null; public Date CancelledDateTime = null; @Required() public Date LastSavedDateTime = null; @Required() public String KeyValue = null; @Required() public Boolean IsEnabled = null; @Required() public Integer ItemNo = null; @Required() public ArrayList RowHash = null; public UUID getRecID() { return RecID; } public DB_APIKey setRecID(UUID value) { this.RecID = value; return this; } public String getName() { return Name; } public DB_APIKey setName(String value) { this.Name = value; return this; } public String getDbMainDebtorID() { return DB_Main_DebtorID; } public DB_APIKey setDbMainDebtorID(String value) { this.DB_Main_DebtorID = value; return this; } public String getHrStaffStaffID() { return HR_Staff_StaffID; } public DB_APIKey setHrStaffStaffID(String value) { this.HR_Staff_StaffID = value; return this; } public Date getCreatedDateTime() { return CreatedDateTime; } public DB_APIKey setCreatedDateTime(Date value) { this.CreatedDateTime = value; return this; } public Date getExpiryDateTime() { return ExpiryDateTime; } public DB_APIKey setExpiryDateTime(Date value) { this.ExpiryDateTime = value; return this; } public Date getCancelledDateTime() { return CancelledDateTime; } public DB_APIKey setCancelledDateTime(Date value) { this.CancelledDateTime = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public DB_APIKey setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public String getKeyValue() { return KeyValue; } public DB_APIKey setKeyValue(String value) { this.KeyValue = value; return this; } public Boolean getIsEnabled() { return IsEnabled; } public DB_APIKey setIsEnabled(Boolean value) { this.IsEnabled = value; return this; } public Integer getItemNo() { return ItemNo; } public DB_APIKey setItemNo(Integer value) { this.ItemNo = value; return this; } public ArrayList getRowHash() { return RowHash; } public DB_APIKey setRowHash(ArrayList value) { this.RowHash = value; return this; } } public static class DB_Audit { @Required() public String DebtorID = null; public BigDecimal DebtorTotal = null; @Required() public String ReportGroup = null; public String getDebtorID() { return DebtorID; } public DB_Audit setDebtorID(String value) { this.DebtorID = value; return this; } public BigDecimal getDebtorTotal() { return DebtorTotal; } public DB_Audit setDebtorTotal(BigDecimal value) { this.DebtorTotal = value; return this; } public String getReportGroup() { return ReportGroup; } public DB_Audit setReportGroup(String value) { this.ReportGroup = value; return this; } } public static class DB_AutoTran { @Required() public String DBAutoTranID = null; public Date LastSavedDateTime = null; public Date RunDateTime = null; public String UserName = null; @Required() public String RunNo = null; public String getDbAutoTranID() { return DBAutoTranID; } public DB_AutoTran setDbAutoTranID(String value) { this.DBAutoTranID = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public DB_AutoTran setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getRunDateTime() { return RunDateTime; } public DB_AutoTran setRunDateTime(Date value) { this.RunDateTime = value; return this; } public String getUserName() { return UserName; } public DB_AutoTran setUserName(String value) { this.UserName = value; return this; } public String getRunNo() { return RunNo; } public DB_AutoTran setRunNo(String value) { this.RunNo = value; return this; } } public static class DB_AutoTranLines { @Required() public String DBAutoTranLineID = null; @References(DB_AutoTran.class) @Required() public String DBAutoTranID = null; @Required() public String SourceDBBatchID = null; @Required() public String SourceBatchNo = null; @Required() public Short SourceReceiptType = null; public String SourceDesc = null; public Date PostingDue = null; public String Reason = null; @Required() public String DestDBBatchID = null; @Required() public String DestBatchNo = null; @Required() public Short LineNum = null; @Required() public Date LastSavedDateTime = null; public String getDbAutoTranLineID() { return DBAutoTranLineID; } public DB_AutoTranLines setDbAutoTranLineID(String value) { this.DBAutoTranLineID = value; return this; } public String getDbAutoTranID() { return DBAutoTranID; } public DB_AutoTranLines setDbAutoTranID(String value) { this.DBAutoTranID = value; return this; } public String getSourceDBBatchID() { return SourceDBBatchID; } public DB_AutoTranLines setSourceDBBatchID(String value) { this.SourceDBBatchID = value; return this; } public String getSourceBatchNo() { return SourceBatchNo; } public DB_AutoTranLines setSourceBatchNo(String value) { this.SourceBatchNo = value; return this; } public Short getSourceReceiptType() { return SourceReceiptType; } public DB_AutoTranLines setSourceReceiptType(Short value) { this.SourceReceiptType = value; return this; } public String getSourceDesc() { return SourceDesc; } public DB_AutoTranLines setSourceDesc(String value) { this.SourceDesc = value; return this; } public Date getPostingDue() { return PostingDue; } public DB_AutoTranLines setPostingDue(Date value) { this.PostingDue = value; return this; } public String getReason() { return Reason; } public DB_AutoTranLines setReason(String value) { this.Reason = value; return this; } public String getDestDBBatchID() { return DestDBBatchID; } public DB_AutoTranLines setDestDBBatchID(String value) { this.DestDBBatchID = value; return this; } public String getDestBatchNo() { return DestBatchNo; } public DB_AutoTranLines setDestBatchNo(String value) { this.DestBatchNo = value; return this; } public Short getLineNum() { return LineNum; } public DB_AutoTranLines setLineNum(Short value) { this.LineNum = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public DB_AutoTranLines setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } } public static class DB_BatchTranLines { @Required() public String ReceiptLineID = null; @References(DB_BatchTrans.class) @Required() public String ReceiptID = null; public Date LastSavedDateTime = null; @References(DB_Main.class) public String AccountID = null; @References(GL_Ledger.class) public String LedgerID = null; public String LineReference = null; public String Remark = null; public String RemitNo = null; public BigDecimal Amount = null; public String DBTransID = null; @Required() public Integer LineNum = null; @References(GL_Ledger.class) public String OtherLedgerID = null; public BigDecimal OtherAmount = null; public Date ReceiptDate = null; public String BankName = null; public String BankAcc = null; public String BSBN = null; public String AccountName = null; @References(DB_Main.class) public String ParentAccountID = null; public String TaxID = null; public BigDecimal TaxRate = null; public BigDecimal TaxAmount = null; public String TaxLedgerID = null; public BigDecimal DiscountAmount = null; public String DiscountLedgerID = null; public String DiscountTransID = null; public String HomeTaxID = null; public BigDecimal HomeTaxRate = null; public BigDecimal HomeTaxAmount = null; public String DiscountTaxID = null; public BigDecimal DiscountTaxRate = null; public BigDecimal DiscountTaxAmount = null; public Date DueDate = null; public String getReceiptLineID() { return ReceiptLineID; } public DB_BatchTranLines setReceiptLineID(String value) { this.ReceiptLineID = value; return this; } public String getReceiptID() { return ReceiptID; } public DB_BatchTranLines setReceiptID(String value) { this.ReceiptID = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public DB_BatchTranLines setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public String getAccountID() { return AccountID; } public DB_BatchTranLines setAccountID(String value) { this.AccountID = value; return this; } public String getLedgerID() { return LedgerID; } public DB_BatchTranLines setLedgerID(String value) { this.LedgerID = value; return this; } public String getLineReference() { return LineReference; } public DB_BatchTranLines setLineReference(String value) { this.LineReference = value; return this; } public String getRemark() { return Remark; } public DB_BatchTranLines setRemark(String value) { this.Remark = value; return this; } public String getRemitNo() { return RemitNo; } public DB_BatchTranLines setRemitNo(String value) { this.RemitNo = value; return this; } public BigDecimal getAmount() { return Amount; } public DB_BatchTranLines setAmount(BigDecimal value) { this.Amount = value; return this; } public String getDbTransID() { return DBTransID; } public DB_BatchTranLines setDbTransID(String value) { this.DBTransID = value; return this; } public Integer getLineNum() { return LineNum; } public DB_BatchTranLines setLineNum(Integer value) { this.LineNum = value; return this; } public String getOtherLedgerID() { return OtherLedgerID; } public DB_BatchTranLines setOtherLedgerID(String value) { this.OtherLedgerID = value; return this; } public BigDecimal getOtherAmount() { return OtherAmount; } public DB_BatchTranLines setOtherAmount(BigDecimal value) { this.OtherAmount = value; return this; } public Date getReceiptDate() { return ReceiptDate; } public DB_BatchTranLines setReceiptDate(Date value) { this.ReceiptDate = value; return this; } public String getBankName() { return BankName; } public DB_BatchTranLines setBankName(String value) { this.BankName = value; return this; } public String getBankAcc() { return BankAcc; } public DB_BatchTranLines setBankAcc(String value) { this.BankAcc = value; return this; } public String getBsbn() { return BSBN; } public DB_BatchTranLines setBsbn(String value) { this.BSBN = value; return this; } public String getAccountName() { return AccountName; } public DB_BatchTranLines setAccountName(String value) { this.AccountName = value; return this; } public String getParentAccountID() { return ParentAccountID; } public DB_BatchTranLines setParentAccountID(String value) { this.ParentAccountID = value; return this; } public String getTaxID() { return TaxID; } public DB_BatchTranLines setTaxID(String value) { this.TaxID = value; return this; } public BigDecimal getTaxRate() { return TaxRate; } public DB_BatchTranLines setTaxRate(BigDecimal value) { this.TaxRate = value; return this; } public BigDecimal getTaxAmount() { return TaxAmount; } public DB_BatchTranLines setTaxAmount(BigDecimal value) { this.TaxAmount = value; return this; } public String getTaxLedgerID() { return TaxLedgerID; } public DB_BatchTranLines setTaxLedgerID(String value) { this.TaxLedgerID = value; return this; } public BigDecimal getDiscountAmount() { return DiscountAmount; } public DB_BatchTranLines setDiscountAmount(BigDecimal value) { this.DiscountAmount = value; return this; } public String getDiscountLedgerID() { return DiscountLedgerID; } public DB_BatchTranLines setDiscountLedgerID(String value) { this.DiscountLedgerID = value; return this; } public String getDiscountTransID() { return DiscountTransID; } public DB_BatchTranLines setDiscountTransID(String value) { this.DiscountTransID = value; return this; } public String getHomeTaxID() { return HomeTaxID; } public DB_BatchTranLines setHomeTaxID(String value) { this.HomeTaxID = value; return this; } public BigDecimal getHomeTaxRate() { return HomeTaxRate; } public DB_BatchTranLines setHomeTaxRate(BigDecimal value) { this.HomeTaxRate = value; return this; } public BigDecimal getHomeTaxAmount() { return HomeTaxAmount; } public DB_BatchTranLines setHomeTaxAmount(BigDecimal value) { this.HomeTaxAmount = value; return this; } public String getDiscountTaxID() { return DiscountTaxID; } public DB_BatchTranLines setDiscountTaxID(String value) { this.DiscountTaxID = value; return this; } public BigDecimal getDiscountTaxRate() { return DiscountTaxRate; } public DB_BatchTranLines setDiscountTaxRate(BigDecimal value) { this.DiscountTaxRate = value; return this; } public BigDecimal getDiscountTaxAmount() { return DiscountTaxAmount; } public DB_BatchTranLines setDiscountTaxAmount(BigDecimal value) { this.DiscountTaxAmount = value; return this; } public Date getDueDate() { return DueDate; } public DB_BatchTranLines setDueDate(Date value) { this.DueDate = value; return this; } } public static class DB_BatchTrans { @Required() public String ReceiptID = null; public Date LastSavedDateTime = null; public String JiwaUser = null; public Date ReceiptDate = null; public String BatchNum = null; public Short ReceiptType = null; public Short ReceiptStatus = null; @Required() public Short BatchType = null; @Required() public Short RepeatingType = null; @Required() public Short RepeatingUnits = null; public Date NextRepeatingDate = null; @Required() public Boolean RepeatingWillEnd = null; public Date RepeatingEndDate = null; public String Description = null; @References(HR_Staff.class) @Required() public String LastSaved_HR_Staff_RecID = null; public String getReceiptID() { return ReceiptID; } public DB_BatchTrans setReceiptID(String value) { this.ReceiptID = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public DB_BatchTrans setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public String getJiwaUser() { return JiwaUser; } public DB_BatchTrans setJiwaUser(String value) { this.JiwaUser = value; return this; } public Date getReceiptDate() { return ReceiptDate; } public DB_BatchTrans setReceiptDate(Date value) { this.ReceiptDate = value; return this; } public String getBatchNum() { return BatchNum; } public DB_BatchTrans setBatchNum(String value) { this.BatchNum = value; return this; } public Short getReceiptType() { return ReceiptType; } public DB_BatchTrans setReceiptType(Short value) { this.ReceiptType = value; return this; } public Short getReceiptStatus() { return ReceiptStatus; } public DB_BatchTrans setReceiptStatus(Short value) { this.ReceiptStatus = value; return this; } public Short getBatchType() { return BatchType; } public DB_BatchTrans setBatchType(Short value) { this.BatchType = value; return this; } public Short getRepeatingType() { return RepeatingType; } public DB_BatchTrans setRepeatingType(Short value) { this.RepeatingType = value; return this; } public Short getRepeatingUnits() { return RepeatingUnits; } public DB_BatchTrans setRepeatingUnits(Short value) { this.RepeatingUnits = value; return this; } public Date getNextRepeatingDate() { return NextRepeatingDate; } public DB_BatchTrans setNextRepeatingDate(Date value) { this.NextRepeatingDate = value; return this; } public Boolean isRepeatingWillEnd() { return RepeatingWillEnd; } public DB_BatchTrans setRepeatingWillEnd(Boolean value) { this.RepeatingWillEnd = value; return this; } public Date getRepeatingEndDate() { return RepeatingEndDate; } public DB_BatchTrans setRepeatingEndDate(Date value) { this.RepeatingEndDate = value; return this; } public String getDescription() { return Description; } public DB_BatchTrans setDescription(String value) { this.Description = value; return this; } public String getLastSavedHrStaffRecID() { return LastSaved_HR_Staff_RecID; } public DB_BatchTrans setLastSavedHrStaffRecID(String value) { this.LastSaved_HR_Staff_RecID = value; return this; } } public static class DB_Budget { @Required() public String BudgetID = null; @References(DB_Main.class) @Required() public String DebtorID = null; public BigDecimal LastBudget1 = null; public BigDecimal LastBudget2 = null; public BigDecimal LastBudget3 = null; public BigDecimal LastBudget4 = null; public BigDecimal LastBudget5 = null; public BigDecimal LastBudget6 = null; public BigDecimal LastBudget7 = null; public BigDecimal LastBudget8 = null; public BigDecimal LastBudget9 = null; public BigDecimal LastBudget10 = null; public BigDecimal LastBudget11 = null; public BigDecimal LastBudget12 = null; public BigDecimal CurrBudget1 = null; public BigDecimal CurrBudget2 = null; public BigDecimal CurrBudget3 = null; public BigDecimal CurrBudget4 = null; public BigDecimal CurrBudget5 = null; public BigDecimal CurrBudget6 = null; public BigDecimal CurrBudget7 = null; public BigDecimal CurrBudget8 = null; public BigDecimal CurrBudget9 = null; public BigDecimal CurrBudget10 = null; public BigDecimal CurrBudget11 = null; public BigDecimal CurrBudget12 = null; public BigDecimal NextBudget1 = null; public BigDecimal NextBudget2 = null; public BigDecimal NextBudget3 = null; public BigDecimal NextBudget4 = null; public BigDecimal NextBudget5 = null; public BigDecimal NextBudget6 = null; public BigDecimal NextBudget7 = null; public BigDecimal NextBudget8 = null; public BigDecimal NextBudget9 = null; public BigDecimal NextBudget10 = null; public BigDecimal NextBudget11 = null; public BigDecimal NextBudget12 = null; public String getBudgetID() { return BudgetID; } public DB_Budget setBudgetID(String value) { this.BudgetID = value; return this; } public String getDebtorID() { return DebtorID; } public DB_Budget setDebtorID(String value) { this.DebtorID = value; return this; } public BigDecimal getLastBudget1() { return LastBudget1; } public DB_Budget setLastBudget1(BigDecimal value) { this.LastBudget1 = value; return this; } public BigDecimal getLastBudget2() { return LastBudget2; } public DB_Budget setLastBudget2(BigDecimal value) { this.LastBudget2 = value; return this; } public BigDecimal getLastBudget3() { return LastBudget3; } public DB_Budget setLastBudget3(BigDecimal value) { this.LastBudget3 = value; return this; } public BigDecimal getLastBudget4() { return LastBudget4; } public DB_Budget setLastBudget4(BigDecimal value) { this.LastBudget4 = value; return this; } public BigDecimal getLastBudget5() { return LastBudget5; } public DB_Budget setLastBudget5(BigDecimal value) { this.LastBudget5 = value; return this; } public BigDecimal getLastBudget6() { return LastBudget6; } public DB_Budget setLastBudget6(BigDecimal value) { this.LastBudget6 = value; return this; } public BigDecimal getLastBudget7() { return LastBudget7; } public DB_Budget setLastBudget7(BigDecimal value) { this.LastBudget7 = value; return this; } public BigDecimal getLastBudget8() { return LastBudget8; } public DB_Budget setLastBudget8(BigDecimal value) { this.LastBudget8 = value; return this; } public BigDecimal getLastBudget9() { return LastBudget9; } public DB_Budget setLastBudget9(BigDecimal value) { this.LastBudget9 = value; return this; } public BigDecimal getLastBudget10() { return LastBudget10; } public DB_Budget setLastBudget10(BigDecimal value) { this.LastBudget10 = value; return this; } public BigDecimal getLastBudget11() { return LastBudget11; } public DB_Budget setLastBudget11(BigDecimal value) { this.LastBudget11 = value; return this; } public BigDecimal getLastBudget12() { return LastBudget12; } public DB_Budget setLastBudget12(BigDecimal value) { this.LastBudget12 = value; return this; } public BigDecimal getCurrBudget1() { return CurrBudget1; } public DB_Budget setCurrBudget1(BigDecimal value) { this.CurrBudget1 = value; return this; } public BigDecimal getCurrBudget2() { return CurrBudget2; } public DB_Budget setCurrBudget2(BigDecimal value) { this.CurrBudget2 = value; return this; } public BigDecimal getCurrBudget3() { return CurrBudget3; } public DB_Budget setCurrBudget3(BigDecimal value) { this.CurrBudget3 = value; return this; } public BigDecimal getCurrBudget4() { return CurrBudget4; } public DB_Budget setCurrBudget4(BigDecimal value) { this.CurrBudget4 = value; return this; } public BigDecimal getCurrBudget5() { return CurrBudget5; } public DB_Budget setCurrBudget5(BigDecimal value) { this.CurrBudget5 = value; return this; } public BigDecimal getCurrBudget6() { return CurrBudget6; } public DB_Budget setCurrBudget6(BigDecimal value) { this.CurrBudget6 = value; return this; } public BigDecimal getCurrBudget7() { return CurrBudget7; } public DB_Budget setCurrBudget7(BigDecimal value) { this.CurrBudget7 = value; return this; } public BigDecimal getCurrBudget8() { return CurrBudget8; } public DB_Budget setCurrBudget8(BigDecimal value) { this.CurrBudget8 = value; return this; } public BigDecimal getCurrBudget9() { return CurrBudget9; } public DB_Budget setCurrBudget9(BigDecimal value) { this.CurrBudget9 = value; return this; } public BigDecimal getCurrBudget10() { return CurrBudget10; } public DB_Budget setCurrBudget10(BigDecimal value) { this.CurrBudget10 = value; return this; } public BigDecimal getCurrBudget11() { return CurrBudget11; } public DB_Budget setCurrBudget11(BigDecimal value) { this.CurrBudget11 = value; return this; } public BigDecimal getCurrBudget12() { return CurrBudget12; } public DB_Budget setCurrBudget12(BigDecimal value) { this.CurrBudget12 = value; return this; } public BigDecimal getNextBudget1() { return NextBudget1; } public DB_Budget setNextBudget1(BigDecimal value) { this.NextBudget1 = value; return this; } public BigDecimal getNextBudget2() { return NextBudget2; } public DB_Budget setNextBudget2(BigDecimal value) { this.NextBudget2 = value; return this; } public BigDecimal getNextBudget3() { return NextBudget3; } public DB_Budget setNextBudget3(BigDecimal value) { this.NextBudget3 = value; return this; } public BigDecimal getNextBudget4() { return NextBudget4; } public DB_Budget setNextBudget4(BigDecimal value) { this.NextBudget4 = value; return this; } public BigDecimal getNextBudget5() { return NextBudget5; } public DB_Budget setNextBudget5(BigDecimal value) { this.NextBudget5 = value; return this; } public BigDecimal getNextBudget6() { return NextBudget6; } public DB_Budget setNextBudget6(BigDecimal value) { this.NextBudget6 = value; return this; } public BigDecimal getNextBudget7() { return NextBudget7; } public DB_Budget setNextBudget7(BigDecimal value) { this.NextBudget7 = value; return this; } public BigDecimal getNextBudget8() { return NextBudget8; } public DB_Budget setNextBudget8(BigDecimal value) { this.NextBudget8 = value; return this; } public BigDecimal getNextBudget9() { return NextBudget9; } public DB_Budget setNextBudget9(BigDecimal value) { this.NextBudget9 = value; return this; } public BigDecimal getNextBudget10() { return NextBudget10; } public DB_Budget setNextBudget10(BigDecimal value) { this.NextBudget10 = value; return this; } public BigDecimal getNextBudget11() { return NextBudget11; } public DB_Budget setNextBudget11(BigDecimal value) { this.NextBudget11 = value; return this; } public BigDecimal getNextBudget12() { return NextBudget12; } public DB_Budget setNextBudget12(BigDecimal value) { this.NextBudget12 = value; return this; } } public static class DB_Categories { @Required() public Integer CategoryNo = null; @Required() public String CategoryID = null; public String Description = null; @Required() public Boolean DefaultCategory = null; public Date LastSavedDateTime = null; public Integer getCategoryNo() { return CategoryNo; } public DB_Categories setCategoryNo(Integer value) { this.CategoryNo = value; return this; } public String getCategoryID() { return CategoryID; } public DB_Categories setCategoryID(String value) { this.CategoryID = value; return this; } public String getDescription() { return Description; } public DB_Categories setDescription(String value) { this.Description = value; return this; } public Boolean isDefaultCategory() { return DefaultCategory; } public DB_Categories setDefaultCategory(Boolean value) { this.DefaultCategory = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public DB_Categories setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } } public static class DB_Category1 { @Required() public String Category1ID = null; public String Description = null; @Required() public Boolean DefaultCategory = null; public Date LastSavedDateTime = null; public String getCategory1ID() { return Category1ID; } public DB_Category1 setCategory1ID(String value) { this.Category1ID = value; return this; } public String getDescription() { return Description; } public DB_Category1 setDescription(String value) { this.Description = value; return this; } public Boolean isDefaultCategory() { return DefaultCategory; } public DB_Category1 setDefaultCategory(Boolean value) { this.DefaultCategory = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public DB_Category1 setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } } public static class DB_Category2 { @Required() public String Category2ID = null; public String Description = null; @Required() public Boolean DefaultCategory = null; public Date LastSavedDateTime = null; public String getCategory2ID() { return Category2ID; } public DB_Category2 setCategory2ID(String value) { this.Category2ID = value; return this; } public String getDescription() { return Description; } public DB_Category2 setDescription(String value) { this.Description = value; return this; } public Boolean isDefaultCategory() { return DefaultCategory; } public DB_Category2 setDefaultCategory(Boolean value) { this.DefaultCategory = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public DB_Category2 setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } } public static class DB_Category3 { @Required() public String Category3ID = null; public String Description = null; @Required() public Boolean DefaultCategory = null; public Date LastSavedDateTime = null; public String getCategory3ID() { return Category3ID; } public DB_Category3 setCategory3ID(String value) { this.Category3ID = value; return this; } public String getDescription() { return Description; } public DB_Category3 setDescription(String value) { this.Description = value; return this; } public Boolean isDefaultCategory() { return DefaultCategory; } public DB_Category3 setDefaultCategory(Boolean value) { this.DefaultCategory = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public DB_Category3 setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } } public static class DB_Category4 { @Required() public String Category4ID = null; public String Description = null; @Required() public Boolean DefaultCategory = null; public Date LastSavedDateTime = null; public String getCategory4ID() { return Category4ID; } public DB_Category4 setCategory4ID(String value) { this.Category4ID = value; return this; } public String getDescription() { return Description; } public DB_Category4 setDescription(String value) { this.Description = value; return this; } public Boolean isDefaultCategory() { return DefaultCategory; } public DB_Category4 setDefaultCategory(Boolean value) { this.DefaultCategory = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public DB_Category4 setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } } public static class DB_Category5 { @Required() public String Category5ID = null; public String Description = null; @Required() public Boolean DefaultCategory = null; public Date LastSavedDateTime = null; public String getCategory5ID() { return Category5ID; } public DB_Category5 setCategory5ID(String value) { this.Category5ID = value; return this; } public String getDescription() { return Description; } public DB_Category5 setDescription(String value) { this.Description = value; return this; } public Boolean isDefaultCategory() { return DefaultCategory; } public DB_Category5 setDefaultCategory(Boolean value) { this.DefaultCategory = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public DB_Category5 setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } } public static class DB_Class { @Required() public String Class = null; public String getClass() { return Class; } public DB_Class setClass(String value) { this.Class = value; return this; } } public static class DB_Classification { @Required() public String DebtorClassificationID = null; public Date LastSavedDateTime = null; @Required() public String Description = null; @References(GL_Ledger.class) public String LedgerIDDebtorControl = null; @References(GL_Ledger.class) public String LedgerIDDebtorSales = null; @References(GL_Ledger.class) public String LedgerIDDebtorDiscounts = null; @References(GL_Ledger.class) public String LedgerIDDebtorSourcedInvoices = null; @References(GL_Ledger.class) public String LedgerIDDebtorDebitAdjustment = null; @References(GL_Ledger.class) public String LedgerIDDebtorSourcedReceipts = null; @References(GL_Ledger.class) public String LedgerIDDebtorCreditAdjustment = null; @References(GL_Ledger.class) public String LedgerIDDebtorFreight = null; @References(GL_Ledger.class) public String LedgerIDDebtorInsurance = null; public Short TermsDays = null; @Required() public Short TermsType = null; @References(IN_PriceSchemes.class) public String PriceSchemeID = null; @References(DB_PricingGroups.class) public String PricingGroupID = null; public String LedgerIDDebtorRealisedGainLoss = null; public String LedgerIDDebtorUnRealisedGainLoss = null; @Required() public Boolean IsDefault = null; public String getDebtorClassificationID() { return DebtorClassificationID; } public DB_Classification setDebtorClassificationID(String value) { this.DebtorClassificationID = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public DB_Classification setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public String getDescription() { return Description; } public DB_Classification setDescription(String value) { this.Description = value; return this; } public String getLedgerIDDebtorControl() { return LedgerIDDebtorControl; } public DB_Classification setLedgerIDDebtorControl(String value) { this.LedgerIDDebtorControl = value; return this; } public String getLedgerIDDebtorSales() { return LedgerIDDebtorSales; } public DB_Classification setLedgerIDDebtorSales(String value) { this.LedgerIDDebtorSales = value; return this; } public String getLedgerIDDebtorDiscounts() { return LedgerIDDebtorDiscounts; } public DB_Classification setLedgerIDDebtorDiscounts(String value) { this.LedgerIDDebtorDiscounts = value; return this; } public String getLedgerIDDebtorSourcedInvoices() { return LedgerIDDebtorSourcedInvoices; } public DB_Classification setLedgerIDDebtorSourcedInvoices(String value) { this.LedgerIDDebtorSourcedInvoices = value; return this; } public String getLedgerIDDebtorDebitAdjustment() { return LedgerIDDebtorDebitAdjustment; } public DB_Classification setLedgerIDDebtorDebitAdjustment(String value) { this.LedgerIDDebtorDebitAdjustment = value; return this; } public String getLedgerIDDebtorSourcedReceipts() { return LedgerIDDebtorSourcedReceipts; } public DB_Classification setLedgerIDDebtorSourcedReceipts(String value) { this.LedgerIDDebtorSourcedReceipts = value; return this; } public String getLedgerIDDebtorCreditAdjustment() { return LedgerIDDebtorCreditAdjustment; } public DB_Classification setLedgerIDDebtorCreditAdjustment(String value) { this.LedgerIDDebtorCreditAdjustment = value; return this; } public String getLedgerIDDebtorFreight() { return LedgerIDDebtorFreight; } public DB_Classification setLedgerIDDebtorFreight(String value) { this.LedgerIDDebtorFreight = value; return this; } public String getLedgerIDDebtorInsurance() { return LedgerIDDebtorInsurance; } public DB_Classification setLedgerIDDebtorInsurance(String value) { this.LedgerIDDebtorInsurance = value; return this; } public Short getTermsDays() { return TermsDays; } public DB_Classification setTermsDays(Short value) { this.TermsDays = value; return this; } public Short getTermsType() { return TermsType; } public DB_Classification setTermsType(Short value) { this.TermsType = value; return this; } public String getPriceSchemeID() { return PriceSchemeID; } public DB_Classification setPriceSchemeID(String value) { this.PriceSchemeID = value; return this; } public String getPricingGroupID() { return PricingGroupID; } public DB_Classification setPricingGroupID(String value) { this.PricingGroupID = value; return this; } public String getLedgerIDDebtorRealisedGainLoss() { return LedgerIDDebtorRealisedGainLoss; } public DB_Classification setLedgerIDDebtorRealisedGainLoss(String value) { this.LedgerIDDebtorRealisedGainLoss = value; return this; } public String getLedgerIDDebtorUnRealisedGainLoss() { return LedgerIDDebtorUnRealisedGainLoss; } public DB_Classification setLedgerIDDebtorUnRealisedGainLoss(String value) { this.LedgerIDDebtorUnRealisedGainLoss = value; return this; } public Boolean getIsDefault() { return IsDefault; } public DB_Classification setIsDefault(Boolean value) { this.IsDefault = value; return this; } } public static class DB_CreditNotes { @Required() public String RecID = null; @References(DB_Main.class) @Required() public String DebtorID = null; @References(SY_NoteTypes.class) @Required() public String NoteTypeID = null; @Required() public Date LastSavedDateTime = null; @References(HR_Staff.class) @Required() public String LastSavedByStaffID = null; public String NoteText = null; @Required() public Integer ItemNo = null; public String getRecID() { return RecID; } public DB_CreditNotes setRecID(String value) { this.RecID = value; return this; } public String getDebtorID() { return DebtorID; } public DB_CreditNotes setDebtorID(String value) { this.DebtorID = value; return this; } public String getNoteTypeID() { return NoteTypeID; } public DB_CreditNotes setNoteTypeID(String value) { this.NoteTypeID = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public DB_CreditNotes setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public String getLastSavedByStaffID() { return LastSavedByStaffID; } public DB_CreditNotes setLastSavedByStaffID(String value) { this.LastSavedByStaffID = value; return this; } public String getNoteText() { return NoteText; } public DB_CreditNotes setNoteText(String value) { this.NoteText = value; return this; } public Integer getItemNo() { return ItemNo; } public DB_CreditNotes setItemNo(Integer value) { this.ItemNo = value; return this; } } public static class DB_CustomSetting { @Required() public String SettingID = null; @Required() public Date LastSavedDateTime = null; public String SettingDescription = null; public String SettingName = null; public Integer DisplayOrder = null; public Short CellType = null; public String ScriptFormatCell = null; public String ScriptButtonClicked = null; public String ScriptReadData = null; public String GridHandlerCode = null; @References(SY_Plugin.class) @Required() public UUID SY_Plugin_RecID = null; public String getSettingID() { return SettingID; } public DB_CustomSetting setSettingID(String value) { this.SettingID = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public DB_CustomSetting setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public String getSettingDescription() { return SettingDescription; } public DB_CustomSetting setSettingDescription(String value) { this.SettingDescription = value; return this; } public String getSettingName() { return SettingName; } public DB_CustomSetting setSettingName(String value) { this.SettingName = value; return this; } public Integer getDisplayOrder() { return DisplayOrder; } public DB_CustomSetting setDisplayOrder(Integer value) { this.DisplayOrder = value; return this; } public Short getCellType() { return CellType; } public DB_CustomSetting setCellType(Short value) { this.CellType = value; return this; } public String getScriptFormatCell() { return ScriptFormatCell; } public DB_CustomSetting setScriptFormatCell(String value) { this.ScriptFormatCell = value; return this; } public String getScriptButtonClicked() { return ScriptButtonClicked; } public DB_CustomSetting setScriptButtonClicked(String value) { this.ScriptButtonClicked = value; return this; } public String getScriptReadData() { return ScriptReadData; } public DB_CustomSetting setScriptReadData(String value) { this.ScriptReadData = value; return this; } public String getGridHandlerCode() { return GridHandlerCode; } public DB_CustomSetting setGridHandlerCode(String value) { this.GridHandlerCode = value; return this; } public UUID getSyPluginRecID() { return SY_Plugin_RecID; } public DB_CustomSetting setSyPluginRecID(UUID value) { this.SY_Plugin_RecID = value; return this; } } public static class DB_CustomSettingValues { @Required() public String SettingValueID = null; @References(DB_CustomSetting.class) public String SettingID = null; @References(DB_Main.class) @Required() public String DebtorID = null; public String Contents = null; @Required() public Date LastSavedDateTime = null; public String getSettingValueID() { return SettingValueID; } public DB_CustomSettingValues setSettingValueID(String value) { this.SettingValueID = value; return this; } public String getSettingID() { return SettingID; } public DB_CustomSettingValues setSettingID(String value) { this.SettingID = value; return this; } public String getDebtorID() { return DebtorID; } public DB_CustomSettingValues setDebtorID(String value) { this.DebtorID = value; return this; } public String getContents() { return Contents; } public DB_CustomSettingValues setContents(String value) { this.Contents = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public DB_CustomSettingValues setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } } public static class DB_DebtorSystemFieldValues { @Required() public String RecID = null; @Required() public String DB_DebtorSystemTemplateFields_RecID = null; @Required() public String DB_DebtorSystems_RecID = null; public Date LastSavedDateTime = null; public String Contents = null; public String getRecID() { return RecID; } public DB_DebtorSystemFieldValues setRecID(String value) { this.RecID = value; return this; } public String getDbDebtorSystemTemplateFieldsRecID() { return DB_DebtorSystemTemplateFields_RecID; } public DB_DebtorSystemFieldValues setDbDebtorSystemTemplateFieldsRecID(String value) { this.DB_DebtorSystemTemplateFields_RecID = value; return this; } public String getDbDebtorSystemsRecID() { return DB_DebtorSystems_RecID; } public DB_DebtorSystemFieldValues setDbDebtorSystemsRecID(String value) { this.DB_DebtorSystems_RecID = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public DB_DebtorSystemFieldValues setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public String getContents() { return Contents; } public DB_DebtorSystemFieldValues setContents(String value) { this.Contents = value; return this; } } public static class DB_DebtorSystems { @Required() public String RecID = null; @References(DB_DebtorSystemTemplates.class) @Required() public String DB_DebtorSystemTemplates_RecID = null; @References(DB_Main.class) @Required() public String DebtorID = null; public Date LastSavedDateTime = null; public String Description = null; @Required() public ArrayList RowHash = null; public String getRecID() { return RecID; } public DB_DebtorSystems setRecID(String value) { this.RecID = value; return this; } public String getDbDebtorSystemTemplatesRecID() { return DB_DebtorSystemTemplates_RecID; } public DB_DebtorSystems setDbDebtorSystemTemplatesRecID(String value) { this.DB_DebtorSystemTemplates_RecID = value; return this; } public String getDebtorID() { return DebtorID; } public DB_DebtorSystems setDebtorID(String value) { this.DebtorID = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public DB_DebtorSystems setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public String getDescription() { return Description; } public DB_DebtorSystems setDescription(String value) { this.Description = value; return this; } public ArrayList getRowHash() { return RowHash; } public DB_DebtorSystems setRowHash(ArrayList value) { this.RowHash = value; return this; } } public static class DB_DebtorSystemTemplateDefaultReference { @Required() public UUID RecID = null; @Required() public String AssemblyFullName = null; @Required() public Integer ItemNo = null; @Required() public ArrayList RowHash = null; public UUID getRecID() { return RecID; } public DB_DebtorSystemTemplateDefaultReference setRecID(UUID value) { this.RecID = value; return this; } public String getAssemblyFullName() { return AssemblyFullName; } public DB_DebtorSystemTemplateDefaultReference setAssemblyFullName(String value) { this.AssemblyFullName = value; return this; } public Integer getItemNo() { return ItemNo; } public DB_DebtorSystemTemplateDefaultReference setItemNo(Integer value) { this.ItemNo = value; return this; } public ArrayList getRowHash() { return RowHash; } public DB_DebtorSystemTemplateDefaultReference setRowHash(ArrayList value) { this.RowHash = value; return this; } } public static class DB_DebtorSystemTemplateFields { @Required() public String RecID = null; @References(DB_DebtorSystemTemplates.class) @Required() public String DB_DebtorSystemTemplates_RecID = null; public Date LastSavedDateTime = null; @Required() public String Name = null; @Required() public Short FieldType = null; public String ComboText = null; public String DefaultValue = null; @Required() public Integer ItemNo = null; @Required() public ArrayList RowHash = null; public String getRecID() { return RecID; } public DB_DebtorSystemTemplateFields setRecID(String value) { this.RecID = value; return this; } public String getDbDebtorSystemTemplatesRecID() { return DB_DebtorSystemTemplates_RecID; } public DB_DebtorSystemTemplateFields setDbDebtorSystemTemplatesRecID(String value) { this.DB_DebtorSystemTemplates_RecID = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public DB_DebtorSystemTemplateFields setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public String getName() { return Name; } public DB_DebtorSystemTemplateFields setName(String value) { this.Name = value; return this; } public Short getFieldType() { return FieldType; } public DB_DebtorSystemTemplateFields setFieldType(Short value) { this.FieldType = value; return this; } public String getComboText() { return ComboText; } public DB_DebtorSystemTemplateFields setComboText(String value) { this.ComboText = value; return this; } public String getDefaultValue() { return DefaultValue; } public DB_DebtorSystemTemplateFields setDefaultValue(String value) { this.DefaultValue = value; return this; } public Integer getItemNo() { return ItemNo; } public DB_DebtorSystemTemplateFields setItemNo(Integer value) { this.ItemNo = value; return this; } public ArrayList getRowHash() { return RowHash; } public DB_DebtorSystemTemplateFields setRowHash(ArrayList value) { this.RowHash = value; return this; } } public static class DB_DebtorSystemTemplateFieldsReferences { @Required() public UUID RecID = null; @References(DB_DebtorSystemTemplateFields.class) @Required() public String DebtorSystemTemplateFieldID = null; @Required() public String AssemblyFullName = null; @Required() public String AssemblyName = null; @Required() public Integer ItemNo = null; @Required() public ArrayList RowHash = null; public UUID getRecID() { return RecID; } public DB_DebtorSystemTemplateFieldsReferences setRecID(UUID value) { this.RecID = value; return this; } public String getDebtorSystemTemplateFieldID() { return DebtorSystemTemplateFieldID; } public DB_DebtorSystemTemplateFieldsReferences setDebtorSystemTemplateFieldID(String value) { this.DebtorSystemTemplateFieldID = value; return this; } public String getAssemblyFullName() { return AssemblyFullName; } public DB_DebtorSystemTemplateFieldsReferences setAssemblyFullName(String value) { this.AssemblyFullName = value; return this; } public String getAssemblyName() { return AssemblyName; } public DB_DebtorSystemTemplateFieldsReferences setAssemblyName(String value) { this.AssemblyName = value; return this; } public Integer getItemNo() { return ItemNo; } public DB_DebtorSystemTemplateFieldsReferences setItemNo(Integer value) { this.ItemNo = value; return this; } public ArrayList getRowHash() { return RowHash; } public DB_DebtorSystemTemplateFieldsReferences setRowHash(ArrayList value) { this.RowHash = value; return this; } } public static class DB_DebtorSystemTemplateReference { @Required() public UUID RecID = null; @References(DB_DebtorSystemTemplates.class) @Required() public String DB_DebtorSystemTemplates_RecID = null; @Required() public String AssemblyFullName = null; @Required() public String AssemblyName = null; @Required() public Integer ItemNo = null; @Required() public ArrayList RowHash = null; public UUID getRecID() { return RecID; } public DB_DebtorSystemTemplateReference setRecID(UUID value) { this.RecID = value; return this; } public String getDbDebtorSystemTemplatesRecID() { return DB_DebtorSystemTemplates_RecID; } public DB_DebtorSystemTemplateReference setDbDebtorSystemTemplatesRecID(String value) { this.DB_DebtorSystemTemplates_RecID = value; return this; } public String getAssemblyFullName() { return AssemblyFullName; } public DB_DebtorSystemTemplateReference setAssemblyFullName(String value) { this.AssemblyFullName = value; return this; } public String getAssemblyName() { return AssemblyName; } public DB_DebtorSystemTemplateReference setAssemblyName(String value) { this.AssemblyName = value; return this; } public Integer getItemNo() { return ItemNo; } public DB_DebtorSystemTemplateReference setItemNo(Integer value) { this.ItemNo = value; return this; } public ArrayList getRowHash() { return RowHash; } public DB_DebtorSystemTemplateReference setRowHash(ArrayList value) { this.RowHash = value; return this; } } public static class DB_DebtorSystemTemplates { @Required() public String RecID = null; public Date LastSavedDateTime = null; @Required() public Boolean Enabled = null; @Required() public String Name = null; public String Code = null; @Required() public ArrayList RowHash = null; public String getRecID() { return RecID; } public DB_DebtorSystemTemplates setRecID(String value) { this.RecID = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public DB_DebtorSystemTemplates setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Boolean isEnabled() { return Enabled; } public DB_DebtorSystemTemplates setEnabled(Boolean value) { this.Enabled = value; return this; } public String getName() { return Name; } public DB_DebtorSystemTemplates setName(String value) { this.Name = value; return this; } public String getCode() { return Code; } public DB_DebtorSystemTemplates setCode(String value) { this.Code = value; return this; } public ArrayList getRowHash() { return RowHash; } public DB_DebtorSystemTemplates setRowHash(ArrayList value) { this.RowHash = value; return this; } } public static class DB_DeliveryAddress { @Required() public String DeliveryID = null; @References(DB_Main.class) @Required() public String DebtorID = null; public String Address1 = null; public String Address2 = null; public String Address3 = null; public String Address4 = null; public String PostCode = null; public String Notes = null; public String CourierDetails = null; public Boolean DefaultItem = null; public Integer LineNum = null; public String EDIStoreLocationCode = null; public String DeliveryAddressCode = null; public String DeliveryAddressName = null; @Required() public String Country = null; public String getDeliveryID() { return DeliveryID; } public DB_DeliveryAddress setDeliveryID(String value) { this.DeliveryID = value; return this; } public String getDebtorID() { return DebtorID; } public DB_DeliveryAddress setDebtorID(String value) { this.DebtorID = value; return this; } public String getAddress1() { return Address1; } public DB_DeliveryAddress setAddress1(String value) { this.Address1 = value; return this; } public String getAddress2() { return Address2; } public DB_DeliveryAddress setAddress2(String value) { this.Address2 = value; return this; } public String getAddress3() { return Address3; } public DB_DeliveryAddress setAddress3(String value) { this.Address3 = value; return this; } public String getAddress4() { return Address4; } public DB_DeliveryAddress setAddress4(String value) { this.Address4 = value; return this; } public String getPostCode() { return PostCode; } public DB_DeliveryAddress setPostCode(String value) { this.PostCode = value; return this; } public String getNotes() { return Notes; } public DB_DeliveryAddress setNotes(String value) { this.Notes = value; return this; } public String getCourierDetails() { return CourierDetails; } public DB_DeliveryAddress setCourierDetails(String value) { this.CourierDetails = value; return this; } public Boolean isDefaultItem() { return DefaultItem; } public DB_DeliveryAddress setDefaultItem(Boolean value) { this.DefaultItem = value; return this; } public Integer getLineNum() { return LineNum; } public DB_DeliveryAddress setLineNum(Integer value) { this.LineNum = value; return this; } public String getEdiStoreLocationCode() { return EDIStoreLocationCode; } public DB_DeliveryAddress setEdiStoreLocationCode(String value) { this.EDIStoreLocationCode = value; return this; } public String getDeliveryAddressCode() { return DeliveryAddressCode; } public DB_DeliveryAddress setDeliveryAddressCode(String value) { this.DeliveryAddressCode = value; return this; } public String getDeliveryAddressName() { return DeliveryAddressName; } public DB_DeliveryAddress setDeliveryAddressName(String value) { this.DeliveryAddressName = value; return this; } public String getCountry() { return Country; } public DB_DeliveryAddress setCountry(String value) { this.Country = value; return this; } } public static class DB_DetailedGLAudit { @Required() public String ReceiptID = null; public String AccountID = null; @Required() public String DBAccountNo = null; public String RemitNo = null; public Date ReceiptDate = null; public BigDecimal Amount = null; public String SourceID = null; public Short SetType = null; public String GLSetID = null; public String GLAccountNo = null; public String Ref = null; public BigDecimal GLTransAmount = null; public String getReceiptID() { return ReceiptID; } public DB_DetailedGLAudit setReceiptID(String value) { this.ReceiptID = value; return this; } public String getAccountID() { return AccountID; } public DB_DetailedGLAudit setAccountID(String value) { this.AccountID = value; return this; } public String getDbAccountNo() { return DBAccountNo; } public DB_DetailedGLAudit setDbAccountNo(String value) { this.DBAccountNo = value; return this; } public String getRemitNo() { return RemitNo; } public DB_DetailedGLAudit setRemitNo(String value) { this.RemitNo = value; return this; } public Date getReceiptDate() { return ReceiptDate; } public DB_DetailedGLAudit setReceiptDate(Date value) { this.ReceiptDate = value; return this; } public BigDecimal getAmount() { return Amount; } public DB_DetailedGLAudit setAmount(BigDecimal value) { this.Amount = value; return this; } public String getSourceID() { return SourceID; } public DB_DetailedGLAudit setSourceID(String value) { this.SourceID = value; return this; } public Short getSetType() { return SetType; } public DB_DetailedGLAudit setSetType(Short value) { this.SetType = value; return this; } public String getGlSetID() { return GLSetID; } public DB_DetailedGLAudit setGlSetID(String value) { this.GLSetID = value; return this; } public String getGlAccountNo() { return GLAccountNo; } public DB_DetailedGLAudit setGlAccountNo(String value) { this.GLAccountNo = value; return this; } public String getRef() { return Ref; } public DB_DetailedGLAudit setRef(String value) { this.Ref = value; return this; } public BigDecimal getGlTransAmount() { return GLTransAmount; } public DB_DetailedGLAudit setGlTransAmount(BigDecimal value) { this.GLTransAmount = value; return this; } } public static class DB_Directors { @Required() public String DirectorID = null; @References(DB_Main.class) @Required() public String DebtorID = null; public String DirectorName = null; public String Address = null; public String OfficeHeld = null; public String getDirectorID() { return DirectorID; } public DB_Directors setDirectorID(String value) { this.DirectorID = value; return this; } public String getDebtorID() { return DebtorID; } public DB_Directors setDebtorID(String value) { this.DebtorID = value; return this; } public String getDirectorName() { return DirectorName; } public DB_Directors setDirectorName(String value) { this.DirectorName = value; return this; } public String getAddress() { return Address; } public DB_Directors setAddress(String value) { this.Address = value; return this; } public String getOfficeHeld() { return OfficeHeld; } public DB_Directors setOfficeHeld(String value) { this.OfficeHeld = value; return this; } } public static class DB_Documents { @Required() public String RecID = null; @References(DB_Main.class) @Required() public String DebtorID = null; @References(SY_DocumentTypes.class) @Required() public String DocumentTypeID = null; public Date LastSavedDateTime = null; @References(HR_Staff.class) @Required() public String LastSavedByStaffID = null; public ArrayList FileBinary = null; public String Description = null; public String PhysicalFileName = null; @Required() public Integer ItemNo = null; public String getRecID() { return RecID; } public DB_Documents setRecID(String value) { this.RecID = value; return this; } public String getDebtorID() { return DebtorID; } public DB_Documents setDebtorID(String value) { this.DebtorID = value; return this; } public String getDocumentTypeID() { return DocumentTypeID; } public DB_Documents setDocumentTypeID(String value) { this.DocumentTypeID = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public DB_Documents setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public String getLastSavedByStaffID() { return LastSavedByStaffID; } public DB_Documents setLastSavedByStaffID(String value) { this.LastSavedByStaffID = value; return this; } public ArrayList getFileBinary() { return FileBinary; } public DB_Documents setFileBinary(ArrayList value) { this.FileBinary = value; return this; } public String getDescription() { return Description; } public DB_Documents setDescription(String value) { this.Description = value; return this; } public String getPhysicalFileName() { return PhysicalFileName; } public DB_Documents setPhysicalFileName(String value) { this.PhysicalFileName = value; return this; } public Integer getItemNo() { return ItemNo; } public DB_Documents setItemNo(Integer value) { this.ItemNo = value; return this; } } public static class DB_EDIMain { @References(DB_Main.class) @Required() public String DebtorID = null; public Boolean EDIEnabled = null; public String EDIAddress = null; public Short EDIOrderType = null; public Boolean EDIPricesIncludeTax = null; public String getDebtorID() { return DebtorID; } public DB_EDIMain setDebtorID(String value) { this.DebtorID = value; return this; } public Boolean isEdiEnabled() { return EDIEnabled; } public DB_EDIMain setEdiEnabled(Boolean value) { this.EDIEnabled = value; return this; } public String getEdiAddress() { return EDIAddress; } public DB_EDIMain setEdiAddress(String value) { this.EDIAddress = value; return this; } public Short getEdiOrderType() { return EDIOrderType; } public DB_EDIMain setEdiOrderType(Short value) { this.EDIOrderType = value; return this; } public Boolean isEdiPricesIncludeTax() { return EDIPricesIncludeTax; } public DB_EDIMain setEdiPricesIncludeTax(Boolean value) { this.EDIPricesIncludeTax = value; return this; } } public static class DB_FreightForwardAddress { @Required() public String FreightForwardID = null; @References(DB_Main.class) @Required() public String DebtorID = null; public String Address1 = null; public String Address2 = null; public String Address3 = null; public String Address4 = null; public String Notes = null; public Boolean DefaultItem = null; public Integer LineNum = null; public String Country = null; public String getFreightForwardID() { return FreightForwardID; } public DB_FreightForwardAddress setFreightForwardID(String value) { this.FreightForwardID = value; return this; } public String getDebtorID() { return DebtorID; } public DB_FreightForwardAddress setDebtorID(String value) { this.DebtorID = value; return this; } public String getAddress1() { return Address1; } public DB_FreightForwardAddress setAddress1(String value) { this.Address1 = value; return this; } public String getAddress2() { return Address2; } public DB_FreightForwardAddress setAddress2(String value) { this.Address2 = value; return this; } public String getAddress3() { return Address3; } public DB_FreightForwardAddress setAddress3(String value) { this.Address3 = value; return this; } public String getAddress4() { return Address4; } public DB_FreightForwardAddress setAddress4(String value) { this.Address4 = value; return this; } public String getNotes() { return Notes; } public DB_FreightForwardAddress setNotes(String value) { this.Notes = value; return this; } public Boolean isDefaultItem() { return DefaultItem; } public DB_FreightForwardAddress setDefaultItem(Boolean value) { this.DefaultItem = value; return this; } public Integer getLineNum() { return LineNum; } public DB_FreightForwardAddress setLineNum(Integer value) { this.LineNum = value; return this; } public String getCountry() { return Country; } public DB_FreightForwardAddress setCountry(String value) { this.Country = value; return this; } } public static class DB_GLAudit { @Required() public String GLLedgerID = null; public BigDecimal LedgerValue = null; @Required() public String ReportGroup = null; public String getGlLedgerID() { return GLLedgerID; } public DB_GLAudit setGlLedgerID(String value) { this.GLLedgerID = value; return this; } public BigDecimal getLedgerValue() { return LedgerValue; } public DB_GLAudit setLedgerValue(BigDecimal value) { this.LedgerValue = value; return this; } public String getReportGroup() { return ReportGroup; } public DB_GLAudit setReportGroup(String value) { this.ReportGroup = value; return this; } } public static class DB_Main { @Required() public String DebtorID = null; public Date LastSavedDateTime = null; @Required() public String AccountNo = null; public String Name = null; public String Address1 = null; public String Address2 = null; public String Address3 = null; public String Address4 = null; public String PostCode = null; public String Phone = null; public String Fax = null; public String BankName = null; public String BankAcc = null; public String BSBN = null; public String AccountName = null; public String TaxExemptNo = null; public BigDecimal CreditLimit = null; public Short EarlyPayDisOnStatsDays = null; public BigDecimal EarlyPayDisOnStatsAmt = null; public Date LastPurchaseDate = null; public Date LastPaymentDate = null; public BigDecimal StandingDisOnInvoices = null; @References(DB_Classification.class) @Required() public String ClassificationID = null; public Boolean AccountOnHold = null; public String EmailAddress = null; public BigDecimal CurrentBalance = null; public BigDecimal Period1 = null; public BigDecimal Period2 = null; public BigDecimal Period3 = null; public BigDecimal Period4 = null; public String AltAccountNo = null; @Required() public Boolean NotifyRequired = null; public String NotifyAddress = null; public Date CommenceDate = null; @Required() public Boolean WebAccess = null; @References(DB_Main.class) @Required() public String ParentDebtorID = null; public Date AllocLastSavedDateTime = null; @References(IN_PriceSchemes.class) public String PriceSchemeID = null; public String AustPostDPID = null; public String AustPostBCSP = null; public String TradingName = null; public String CompanyName = null; public String ACN = null; public String ProprietorsName = null; public String FaxHeader = null; @References(GL_Ledger.class) public String LedgerIDDebtorControl = null; @References(GL_Ledger.class) public String LedgerIDDebtorSales = null; @References(GL_Ledger.class) public String LedgerIDDebtorDiscounts = null; @References(GL_Ledger.class) public String LedgerIDDebtorSourcedInvoices = null; @References(GL_Ledger.class) public String LedgerIDDebtorDebitAdjustment = null; @References(GL_Ledger.class) public String LedgerIDDebtorSourcedReceipts = null; @References(GL_Ledger.class) public String LedgerIDDebtorCreditAdjustment = null; @References(GL_Ledger.class) public String LedgerIDDebtorFreight = null; @References(GL_Ledger.class) public String LedgerIDDebtorInsurance = null; @References(GL_Ledger.class) public String LedgerIDDebtorRealisedGainLoss = null; @References(GL_Ledger.class) public String LedgerIDDebtorUnRealisedGainLoss = null; public Short PeriodType = null; public Short TermsDays = null; public Short TermsType = null; public String ABN = null; @Required() public Boolean ExcludeFromAging = null; public String BPayReference = null; @Required() public Boolean UsesFX = null; @References(FX_Currency.class) public String FXCurrencyID = null; public BigDecimal FXCurrentBalance = null; public BigDecimal FXPeriod1 = null; public BigDecimal FXPeriod2 = null; public BigDecimal FXPeriod3 = null; public BigDecimal FXPeriod4 = null; public Short TradingStatus = null; @References(DB_Category1.class) @Required() public String Category1ID = null; @References(DB_Category2.class) @Required() public String Category2ID = null; @References(DB_Category3.class) @Required() public String Category3ID = null; @References(DB_Category4.class) @Required() public String Category4ID = null; @References(DB_Category5.class) @Required() public String Category5ID = null; @References(BO_Priorities.class) public String BO_Priorities_RecID = null; @References(DB_PricingGroups.class) public String PricingGroupID = null; public BigDecimal BudgetedGPPercentage = null; @Required() public String Country = null; @References(FR_Carriers.class) public String FR_Carriers_RecID = null; @References(FR_CarrierServices.class) public String FR_CarrierServices_RecID = null; public String CarrierAccountNo = null; @Required() public Short ChargeTo = null; @Required() public Boolean IsCashOnly = null; public String getDebtorID() { return DebtorID; } public DB_Main setDebtorID(String value) { this.DebtorID = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public DB_Main setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public String getAccountNo() { return AccountNo; } public DB_Main setAccountNo(String value) { this.AccountNo = value; return this; } public String getName() { return Name; } public DB_Main setName(String value) { this.Name = value; return this; } public String getAddress1() { return Address1; } public DB_Main setAddress1(String value) { this.Address1 = value; return this; } public String getAddress2() { return Address2; } public DB_Main setAddress2(String value) { this.Address2 = value; return this; } public String getAddress3() { return Address3; } public DB_Main setAddress3(String value) { this.Address3 = value; return this; } public String getAddress4() { return Address4; } public DB_Main setAddress4(String value) { this.Address4 = value; return this; } public String getPostCode() { return PostCode; } public DB_Main setPostCode(String value) { this.PostCode = value; return this; } public String getPhone() { return Phone; } public DB_Main setPhone(String value) { this.Phone = value; return this; } public String getFax() { return Fax; } public DB_Main setFax(String value) { this.Fax = value; return this; } public String getBankName() { return BankName; } public DB_Main setBankName(String value) { this.BankName = value; return this; } public String getBankAcc() { return BankAcc; } public DB_Main setBankAcc(String value) { this.BankAcc = value; return this; } public String getBsbn() { return BSBN; } public DB_Main setBsbn(String value) { this.BSBN = value; return this; } public String getAccountName() { return AccountName; } public DB_Main setAccountName(String value) { this.AccountName = value; return this; } public String getTaxExemptNo() { return TaxExemptNo; } public DB_Main setTaxExemptNo(String value) { this.TaxExemptNo = value; return this; } public BigDecimal getCreditLimit() { return CreditLimit; } public DB_Main setCreditLimit(BigDecimal value) { this.CreditLimit = value; return this; } public Short getEarlyPayDisOnStatsDays() { return EarlyPayDisOnStatsDays; } public DB_Main setEarlyPayDisOnStatsDays(Short value) { this.EarlyPayDisOnStatsDays = value; return this; } public BigDecimal getEarlyPayDisOnStatsAmt() { return EarlyPayDisOnStatsAmt; } public DB_Main setEarlyPayDisOnStatsAmt(BigDecimal value) { this.EarlyPayDisOnStatsAmt = value; return this; } public Date getLastPurchaseDate() { return LastPurchaseDate; } public DB_Main setLastPurchaseDate(Date value) { this.LastPurchaseDate = value; return this; } public Date getLastPaymentDate() { return LastPaymentDate; } public DB_Main setLastPaymentDate(Date value) { this.LastPaymentDate = value; return this; } public BigDecimal getStandingDisOnInvoices() { return StandingDisOnInvoices; } public DB_Main setStandingDisOnInvoices(BigDecimal value) { this.StandingDisOnInvoices = value; return this; } public String getClassificationID() { return ClassificationID; } public DB_Main setClassificationID(String value) { this.ClassificationID = value; return this; } public Boolean isAccountOnHold() { return AccountOnHold; } public DB_Main setAccountOnHold(Boolean value) { this.AccountOnHold = value; return this; } public String getEmailAddress() { return EmailAddress; } public DB_Main setEmailAddress(String value) { this.EmailAddress = value; return this; } public BigDecimal getCurrentBalance() { return CurrentBalance; } public DB_Main setCurrentBalance(BigDecimal value) { this.CurrentBalance = value; return this; } public BigDecimal getPeriod1() { return Period1; } public DB_Main setPeriod1(BigDecimal value) { this.Period1 = value; return this; } public BigDecimal getPeriod2() { return Period2; } public DB_Main setPeriod2(BigDecimal value) { this.Period2 = value; return this; } public BigDecimal getPeriod3() { return Period3; } public DB_Main setPeriod3(BigDecimal value) { this.Period3 = value; return this; } public BigDecimal getPeriod4() { return Period4; } public DB_Main setPeriod4(BigDecimal value) { this.Period4 = value; return this; } public String getAltAccountNo() { return AltAccountNo; } public DB_Main setAltAccountNo(String value) { this.AltAccountNo = value; return this; } public Boolean isNotifyRequired() { return NotifyRequired; } public DB_Main setNotifyRequired(Boolean value) { this.NotifyRequired = value; return this; } public String getNotifyAddress() { return NotifyAddress; } public DB_Main setNotifyAddress(String value) { this.NotifyAddress = value; return this; } public Date getCommenceDate() { return CommenceDate; } public DB_Main setCommenceDate(Date value) { this.CommenceDate = value; return this; } public Boolean isWebAccess() { return WebAccess; } public DB_Main setWebAccess(Boolean value) { this.WebAccess = value; return this; } public String getParentDebtorID() { return ParentDebtorID; } public DB_Main setParentDebtorID(String value) { this.ParentDebtorID = value; return this; } public Date getAllocLastSavedDateTime() { return AllocLastSavedDateTime; } public DB_Main setAllocLastSavedDateTime(Date value) { this.AllocLastSavedDateTime = value; return this; } public String getPriceSchemeID() { return PriceSchemeID; } public DB_Main setPriceSchemeID(String value) { this.PriceSchemeID = value; return this; } public String getAustPostDPID() { return AustPostDPID; } public DB_Main setAustPostDPID(String value) { this.AustPostDPID = value; return this; } public String getAustPostBCSP() { return AustPostBCSP; } public DB_Main setAustPostBCSP(String value) { this.AustPostBCSP = value; return this; } public String getTradingName() { return TradingName; } public DB_Main setTradingName(String value) { this.TradingName = value; return this; } public String getCompanyName() { return CompanyName; } public DB_Main setCompanyName(String value) { this.CompanyName = value; return this; } public String getAcn() { return ACN; } public DB_Main setAcn(String value) { this.ACN = value; return this; } public String getProprietorsName() { return ProprietorsName; } public DB_Main setProprietorsName(String value) { this.ProprietorsName = value; return this; } public String getFaxHeader() { return FaxHeader; } public DB_Main setFaxHeader(String value) { this.FaxHeader = value; return this; } public String getLedgerIDDebtorControl() { return LedgerIDDebtorControl; } public DB_Main setLedgerIDDebtorControl(String value) { this.LedgerIDDebtorControl = value; return this; } public String getLedgerIDDebtorSales() { return LedgerIDDebtorSales; } public DB_Main setLedgerIDDebtorSales(String value) { this.LedgerIDDebtorSales = value; return this; } public String getLedgerIDDebtorDiscounts() { return LedgerIDDebtorDiscounts; } public DB_Main setLedgerIDDebtorDiscounts(String value) { this.LedgerIDDebtorDiscounts = value; return this; } public String getLedgerIDDebtorSourcedInvoices() { return LedgerIDDebtorSourcedInvoices; } public DB_Main setLedgerIDDebtorSourcedInvoices(String value) { this.LedgerIDDebtorSourcedInvoices = value; return this; } public String getLedgerIDDebtorDebitAdjustment() { return LedgerIDDebtorDebitAdjustment; } public DB_Main setLedgerIDDebtorDebitAdjustment(String value) { this.LedgerIDDebtorDebitAdjustment = value; return this; } public String getLedgerIDDebtorSourcedReceipts() { return LedgerIDDebtorSourcedReceipts; } public DB_Main setLedgerIDDebtorSourcedReceipts(String value) { this.LedgerIDDebtorSourcedReceipts = value; return this; } public String getLedgerIDDebtorCreditAdjustment() { return LedgerIDDebtorCreditAdjustment; } public DB_Main setLedgerIDDebtorCreditAdjustment(String value) { this.LedgerIDDebtorCreditAdjustment = value; return this; } public String getLedgerIDDebtorFreight() { return LedgerIDDebtorFreight; } public DB_Main setLedgerIDDebtorFreight(String value) { this.LedgerIDDebtorFreight = value; return this; } public String getLedgerIDDebtorInsurance() { return LedgerIDDebtorInsurance; } public DB_Main setLedgerIDDebtorInsurance(String value) { this.LedgerIDDebtorInsurance = value; return this; } public String getLedgerIDDebtorRealisedGainLoss() { return LedgerIDDebtorRealisedGainLoss; } public DB_Main setLedgerIDDebtorRealisedGainLoss(String value) { this.LedgerIDDebtorRealisedGainLoss = value; return this; } public String getLedgerIDDebtorUnRealisedGainLoss() { return LedgerIDDebtorUnRealisedGainLoss; } public DB_Main setLedgerIDDebtorUnRealisedGainLoss(String value) { this.LedgerIDDebtorUnRealisedGainLoss = value; return this; } public Short getPeriodType() { return PeriodType; } public DB_Main setPeriodType(Short value) { this.PeriodType = value; return this; } public Short getTermsDays() { return TermsDays; } public DB_Main setTermsDays(Short value) { this.TermsDays = value; return this; } public Short getTermsType() { return TermsType; } public DB_Main setTermsType(Short value) { this.TermsType = value; return this; } public String getAbn() { return ABN; } public DB_Main setAbn(String value) { this.ABN = value; return this; } public Boolean isExcludeFromAging() { return ExcludeFromAging; } public DB_Main setExcludeFromAging(Boolean value) { this.ExcludeFromAging = value; return this; } public String getBPayReference() { return BPayReference; } public DB_Main setBPayReference(String value) { this.BPayReference = value; return this; } public Boolean isUsesFX() { return UsesFX; } public DB_Main setUsesFX(Boolean value) { this.UsesFX = value; return this; } public String getFxCurrencyID() { return FXCurrencyID; } public DB_Main setFxCurrencyID(String value) { this.FXCurrencyID = value; return this; } public BigDecimal getFxCurrentBalance() { return FXCurrentBalance; } public DB_Main setFxCurrentBalance(BigDecimal value) { this.FXCurrentBalance = value; return this; } public BigDecimal getFxPeriod1() { return FXPeriod1; } public DB_Main setFxPeriod1(BigDecimal value) { this.FXPeriod1 = value; return this; } public BigDecimal getFxPeriod2() { return FXPeriod2; } public DB_Main setFxPeriod2(BigDecimal value) { this.FXPeriod2 = value; return this; } public BigDecimal getFxPeriod3() { return FXPeriod3; } public DB_Main setFxPeriod3(BigDecimal value) { this.FXPeriod3 = value; return this; } public BigDecimal getFxPeriod4() { return FXPeriod4; } public DB_Main setFxPeriod4(BigDecimal value) { this.FXPeriod4 = value; return this; } public Short getTradingStatus() { return TradingStatus; } public DB_Main setTradingStatus(Short value) { this.TradingStatus = value; return this; } public String getCategory1ID() { return Category1ID; } public DB_Main setCategory1ID(String value) { this.Category1ID = value; return this; } public String getCategory2ID() { return Category2ID; } public DB_Main setCategory2ID(String value) { this.Category2ID = value; return this; } public String getCategory3ID() { return Category3ID; } public DB_Main setCategory3ID(String value) { this.Category3ID = value; return this; } public String getCategory4ID() { return Category4ID; } public DB_Main setCategory4ID(String value) { this.Category4ID = value; return this; } public String getCategory5ID() { return Category5ID; } public DB_Main setCategory5ID(String value) { this.Category5ID = value; return this; } public String getBoPrioritiesRecID() { return BO_Priorities_RecID; } public DB_Main setBoPrioritiesRecID(String value) { this.BO_Priorities_RecID = value; return this; } public String getPricingGroupID() { return PricingGroupID; } public DB_Main setPricingGroupID(String value) { this.PricingGroupID = value; return this; } public BigDecimal getBudgetedGPPercentage() { return BudgetedGPPercentage; } public DB_Main setBudgetedGPPercentage(BigDecimal value) { this.BudgetedGPPercentage = value; return this; } public String getCountry() { return Country; } public DB_Main setCountry(String value) { this.Country = value; return this; } public String getFrCarriersRecID() { return FR_Carriers_RecID; } public DB_Main setFrCarriersRecID(String value) { this.FR_Carriers_RecID = value; return this; } public String getFrCarrierServicesRecID() { return FR_CarrierServices_RecID; } public DB_Main setFrCarrierServicesRecID(String value) { this.FR_CarrierServices_RecID = value; return this; } public String getCarrierAccountNo() { return CarrierAccountNo; } public DB_Main setCarrierAccountNo(String value) { this.CarrierAccountNo = value; return this; } public Short getChargeTo() { return ChargeTo; } public DB_Main setChargeTo(Short value) { this.ChargeTo = value; return this; } public Boolean getIsCashOnly() { return IsCashOnly; } public DB_Main setIsCashOnly(Boolean value) { this.IsCashOnly = value; return this; } } public static class DB_Main1 { @Required() public String DebtorID = null; public Date LastSavedDateTime = null; @Required() public String AccountNo = null; public String Name = null; public String Address1 = null; public String Address2 = null; public String Address3 = null; public String Address4 = null; public String PostCode = null; public String Phone = null; public String Fax = null; public String BankName = null; public String BankAcc = null; public String BSBN = null; public String AccountName = null; public String TaxExemptNo = null; @Required() public Integer AccountType = null; public BigDecimal CreditLimit = null; public Short EarlyPayDisOnStatsDays = null; public BigDecimal EarlyPayDisOnStatsAmt = null; public Date LastPurchaseDate = null; public Date LastPaymentDate = null; public BigDecimal StandingDisOnInvoices = null; @Required() public String ClassificationID = null; public Boolean AccountOnHold = null; public String EmailAddress = null; public BigDecimal CurrentBalance = null; public BigDecimal Period1 = null; public BigDecimal Period2 = null; public BigDecimal Period3 = null; public BigDecimal Period4 = null; @Required() public Integer Period5 = null; @Required() public Integer Period6 = null; @Required() public Integer Period7 = null; @Required() public Integer Period8 = null; public String AltAccountNo = null; @Required() public Boolean NotifyRequired = null; public String NotifyAddress = null; public Date CommenceDate = null; @Required() public Boolean WebAccess = null; @Required() public String ParentDebtorID = null; public Date AllocLastSavedDateTime = null; public String PriceSchemeID = null; public String AustPostDPID = null; public String AustPostBCSP = null; public String getDebtorID() { return DebtorID; } public DB_Main1 setDebtorID(String value) { this.DebtorID = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public DB_Main1 setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public String getAccountNo() { return AccountNo; } public DB_Main1 setAccountNo(String value) { this.AccountNo = value; return this; } public String getName() { return Name; } public DB_Main1 setName(String value) { this.Name = value; return this; } public String getAddress1() { return Address1; } public DB_Main1 setAddress1(String value) { this.Address1 = value; return this; } public String getAddress2() { return Address2; } public DB_Main1 setAddress2(String value) { this.Address2 = value; return this; } public String getAddress3() { return Address3; } public DB_Main1 setAddress3(String value) { this.Address3 = value; return this; } public String getAddress4() { return Address4; } public DB_Main1 setAddress4(String value) { this.Address4 = value; return this; } public String getPostCode() { return PostCode; } public DB_Main1 setPostCode(String value) { this.PostCode = value; return this; } public String getPhone() { return Phone; } public DB_Main1 setPhone(String value) { this.Phone = value; return this; } public String getFax() { return Fax; } public DB_Main1 setFax(String value) { this.Fax = value; return this; } public String getBankName() { return BankName; } public DB_Main1 setBankName(String value) { this.BankName = value; return this; } public String getBankAcc() { return BankAcc; } public DB_Main1 setBankAcc(String value) { this.BankAcc = value; return this; } public String getBsbn() { return BSBN; } public DB_Main1 setBsbn(String value) { this.BSBN = value; return this; } public String getAccountName() { return AccountName; } public DB_Main1 setAccountName(String value) { this.AccountName = value; return this; } public String getTaxExemptNo() { return TaxExemptNo; } public DB_Main1 setTaxExemptNo(String value) { this.TaxExemptNo = value; return this; } public Integer getAccountType() { return AccountType; } public DB_Main1 setAccountType(Integer value) { this.AccountType = value; return this; } public BigDecimal getCreditLimit() { return CreditLimit; } public DB_Main1 setCreditLimit(BigDecimal value) { this.CreditLimit = value; return this; } public Short getEarlyPayDisOnStatsDays() { return EarlyPayDisOnStatsDays; } public DB_Main1 setEarlyPayDisOnStatsDays(Short value) { this.EarlyPayDisOnStatsDays = value; return this; } public BigDecimal getEarlyPayDisOnStatsAmt() { return EarlyPayDisOnStatsAmt; } public DB_Main1 setEarlyPayDisOnStatsAmt(BigDecimal value) { this.EarlyPayDisOnStatsAmt = value; return this; } public Date getLastPurchaseDate() { return LastPurchaseDate; } public DB_Main1 setLastPurchaseDate(Date value) { this.LastPurchaseDate = value; return this; } public Date getLastPaymentDate() { return LastPaymentDate; } public DB_Main1 setLastPaymentDate(Date value) { this.LastPaymentDate = value; return this; } public BigDecimal getStandingDisOnInvoices() { return StandingDisOnInvoices; } public DB_Main1 setStandingDisOnInvoices(BigDecimal value) { this.StandingDisOnInvoices = value; return this; } public String getClassificationID() { return ClassificationID; } public DB_Main1 setClassificationID(String value) { this.ClassificationID = value; return this; } public Boolean isAccountOnHold() { return AccountOnHold; } public DB_Main1 setAccountOnHold(Boolean value) { this.AccountOnHold = value; return this; } public String getEmailAddress() { return EmailAddress; } public DB_Main1 setEmailAddress(String value) { this.EmailAddress = value; return this; } public BigDecimal getCurrentBalance() { return CurrentBalance; } public DB_Main1 setCurrentBalance(BigDecimal value) { this.CurrentBalance = value; return this; } public BigDecimal getPeriod1() { return Period1; } public DB_Main1 setPeriod1(BigDecimal value) { this.Period1 = value; return this; } public BigDecimal getPeriod2() { return Period2; } public DB_Main1 setPeriod2(BigDecimal value) { this.Period2 = value; return this; } public BigDecimal getPeriod3() { return Period3; } public DB_Main1 setPeriod3(BigDecimal value) { this.Period3 = value; return this; } public BigDecimal getPeriod4() { return Period4; } public DB_Main1 setPeriod4(BigDecimal value) { this.Period4 = value; return this; } public Integer getPeriod5() { return Period5; } public DB_Main1 setPeriod5(Integer value) { this.Period5 = value; return this; } public Integer getPeriod6() { return Period6; } public DB_Main1 setPeriod6(Integer value) { this.Period6 = value; return this; } public Integer getPeriod7() { return Period7; } public DB_Main1 setPeriod7(Integer value) { this.Period7 = value; return this; } public Integer getPeriod8() { return Period8; } public DB_Main1 setPeriod8(Integer value) { this.Period8 = value; return this; } public String getAltAccountNo() { return AltAccountNo; } public DB_Main1 setAltAccountNo(String value) { this.AltAccountNo = value; return this; } public Boolean isNotifyRequired() { return NotifyRequired; } public DB_Main1 setNotifyRequired(Boolean value) { this.NotifyRequired = value; return this; } public String getNotifyAddress() { return NotifyAddress; } public DB_Main1 setNotifyAddress(String value) { this.NotifyAddress = value; return this; } public Date getCommenceDate() { return CommenceDate; } public DB_Main1 setCommenceDate(Date value) { this.CommenceDate = value; return this; } public Boolean isWebAccess() { return WebAccess; } public DB_Main1 setWebAccess(Boolean value) { this.WebAccess = value; return this; } public String getParentDebtorID() { return ParentDebtorID; } public DB_Main1 setParentDebtorID(String value) { this.ParentDebtorID = value; return this; } public Date getAllocLastSavedDateTime() { return AllocLastSavedDateTime; } public DB_Main1 setAllocLastSavedDateTime(Date value) { this.AllocLastSavedDateTime = value; return this; } public String getPriceSchemeID() { return PriceSchemeID; } public DB_Main1 setPriceSchemeID(String value) { this.PriceSchemeID = value; return this; } public String getAustPostDPID() { return AustPostDPID; } public DB_Main1 setAustPostDPID(String value) { this.AustPostDPID = value; return this; } public String getAustPostBCSP() { return AustPostBCSP; } public DB_Main1 setAustPostBCSP(String value) { this.AustPostBCSP = value; return this; } } public static class DB_Main2 { @Required() public String DebtorID = null; public Date LastSavedDateTime = null; public String TradingName = null; public String CompanyName = null; public String ACN = null; public String ProprietorsName = null; public String FaxHeader = null; public String D1 = null; public String D2 = null; public String D3 = null; public String D4 = null; public String D5 = null; public String D6 = null; public String D7 = null; public String D8 = null; public String D9 = null; public String D10 = null; public String D11 = null; @Required() public Integer OpeningBal1 = null; @Required() public Integer OpeningBal2 = null; @Required() public Integer OpeningBal3 = null; @Required() public Integer OpeningBal4 = null; @Required() public Integer OpeningBal5 = null; @Required() public Integer OpeningBal6 = null; @Required() public Integer OpeningBal7 = null; @Required() public Integer OpeningBal8 = null; @Required() public Integer OpeningBal9 = null; @Required() public Integer OpeningBal10 = null; @Required() public Integer OpeningBal11 = null; @Required() public Integer OpeningBal12 = null; @Required() public Integer OpeningBal13 = null; @Required() public Integer OpeningBal14 = null; @Required() public Integer OpeningBal15 = null; @Required() public Integer OpeningBal16 = null; @Required() public Integer OpeningBal17 = null; @Required() public Integer OpeningBal18 = null; @Required() public Integer OpeningBal19 = null; @Required() public Integer OpeningBal20 = null; @Required() public Integer OpeningBal21 = null; @Required() public Integer OpeningBal22 = null; @Required() public Integer OpeningBal23 = null; @Required() public Integer OpeningBal24 = null; @Required() public Integer OpeningBal25 = null; @Required() public Integer OpeningBal26 = null; @Required() public Integer OpeningBal27 = null; @Required() public Integer OpeningBal28 = null; @Required() public Integer OpeningBal29 = null; @Required() public Integer OpeningBal30 = null; @Required() public Integer OpeningBal31 = null; @Required() public Integer OpeningBal32 = null; @Required() public Integer OpeningBal33 = null; @Required() public Integer OpeningBal34 = null; @Required() public Integer OpeningBal35 = null; @Required() public Integer OpeningBal36 = null; @Required() public Integer OpeningBal37 = null; @Required() public Integer OpeningBal38 = null; @Required() public Integer OpeningBal39 = null; @Required() public Integer OpeningBal40 = null; @Required() public Integer OpeningBal41 = null; @Required() public Integer OpeningBal42 = null; @Required() public Integer OpeningBal43 = null; @Required() public Integer OpeningBal44 = null; @Required() public Integer OpeningBal45 = null; @Required() public Integer OpeningBal46 = null; @Required() public Integer OpeningBal47 = null; @Required() public Integer OpeningBal48 = null; @Required() public Integer OpeningBal49 = null; @Required() public Integer OpeningBal50 = null; @Required() public Integer OpeningBal51 = null; @Required() public Integer OpeningBal52 = null; @Required() public Integer OpeningBal53 = null; public Short PeriodType = null; public Short TermsDays = null; public Short TermsType = null; public String ABN = null; @Required() public Boolean ExcludeFromAging = null; public String BPayReference = null; public String getDebtorID() { return DebtorID; } public DB_Main2 setDebtorID(String value) { this.DebtorID = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public DB_Main2 setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public String getTradingName() { return TradingName; } public DB_Main2 setTradingName(String value) { this.TradingName = value; return this; } public String getCompanyName() { return CompanyName; } public DB_Main2 setCompanyName(String value) { this.CompanyName = value; return this; } public String getAcn() { return ACN; } public DB_Main2 setAcn(String value) { this.ACN = value; return this; } public String getProprietorsName() { return ProprietorsName; } public DB_Main2 setProprietorsName(String value) { this.ProprietorsName = value; return this; } public String getFaxHeader() { return FaxHeader; } public DB_Main2 setFaxHeader(String value) { this.FaxHeader = value; return this; } public String getD1() { return D1; } public DB_Main2 setD1(String value) { this.D1 = value; return this; } public String getD2() { return D2; } public DB_Main2 setD2(String value) { this.D2 = value; return this; } public String getD3() { return D3; } public DB_Main2 setD3(String value) { this.D3 = value; return this; } public String getD4() { return D4; } public DB_Main2 setD4(String value) { this.D4 = value; return this; } public String getD5() { return D5; } public DB_Main2 setD5(String value) { this.D5 = value; return this; } public String getD6() { return D6; } public DB_Main2 setD6(String value) { this.D6 = value; return this; } public String getD7() { return D7; } public DB_Main2 setD7(String value) { this.D7 = value; return this; } public String getD8() { return D8; } public DB_Main2 setD8(String value) { this.D8 = value; return this; } public String getD9() { return D9; } public DB_Main2 setD9(String value) { this.D9 = value; return this; } public String getD10() { return D10; } public DB_Main2 setD10(String value) { this.D10 = value; return this; } public String getD11() { return D11; } public DB_Main2 setD11(String value) { this.D11 = value; return this; } public Integer getOpeningBal1() { return OpeningBal1; } public DB_Main2 setOpeningBal1(Integer value) { this.OpeningBal1 = value; return this; } public Integer getOpeningBal2() { return OpeningBal2; } public DB_Main2 setOpeningBal2(Integer value) { this.OpeningBal2 = value; return this; } public Integer getOpeningBal3() { return OpeningBal3; } public DB_Main2 setOpeningBal3(Integer value) { this.OpeningBal3 = value; return this; } public Integer getOpeningBal4() { return OpeningBal4; } public DB_Main2 setOpeningBal4(Integer value) { this.OpeningBal4 = value; return this; } public Integer getOpeningBal5() { return OpeningBal5; } public DB_Main2 setOpeningBal5(Integer value) { this.OpeningBal5 = value; return this; } public Integer getOpeningBal6() { return OpeningBal6; } public DB_Main2 setOpeningBal6(Integer value) { this.OpeningBal6 = value; return this; } public Integer getOpeningBal7() { return OpeningBal7; } public DB_Main2 setOpeningBal7(Integer value) { this.OpeningBal7 = value; return this; } public Integer getOpeningBal8() { return OpeningBal8; } public DB_Main2 setOpeningBal8(Integer value) { this.OpeningBal8 = value; return this; } public Integer getOpeningBal9() { return OpeningBal9; } public DB_Main2 setOpeningBal9(Integer value) { this.OpeningBal9 = value; return this; } public Integer getOpeningBal10() { return OpeningBal10; } public DB_Main2 setOpeningBal10(Integer value) { this.OpeningBal10 = value; return this; } public Integer getOpeningBal11() { return OpeningBal11; } public DB_Main2 setOpeningBal11(Integer value) { this.OpeningBal11 = value; return this; } public Integer getOpeningBal12() { return OpeningBal12; } public DB_Main2 setOpeningBal12(Integer value) { this.OpeningBal12 = value; return this; } public Integer getOpeningBal13() { return OpeningBal13; } public DB_Main2 setOpeningBal13(Integer value) { this.OpeningBal13 = value; return this; } public Integer getOpeningBal14() { return OpeningBal14; } public DB_Main2 setOpeningBal14(Integer value) { this.OpeningBal14 = value; return this; } public Integer getOpeningBal15() { return OpeningBal15; } public DB_Main2 setOpeningBal15(Integer value) { this.OpeningBal15 = value; return this; } public Integer getOpeningBal16() { return OpeningBal16; } public DB_Main2 setOpeningBal16(Integer value) { this.OpeningBal16 = value; return this; } public Integer getOpeningBal17() { return OpeningBal17; } public DB_Main2 setOpeningBal17(Integer value) { this.OpeningBal17 = value; return this; } public Integer getOpeningBal18() { return OpeningBal18; } public DB_Main2 setOpeningBal18(Integer value) { this.OpeningBal18 = value; return this; } public Integer getOpeningBal19() { return OpeningBal19; } public DB_Main2 setOpeningBal19(Integer value) { this.OpeningBal19 = value; return this; } public Integer getOpeningBal20() { return OpeningBal20; } public DB_Main2 setOpeningBal20(Integer value) { this.OpeningBal20 = value; return this; } public Integer getOpeningBal21() { return OpeningBal21; } public DB_Main2 setOpeningBal21(Integer value) { this.OpeningBal21 = value; return this; } public Integer getOpeningBal22() { return OpeningBal22; } public DB_Main2 setOpeningBal22(Integer value) { this.OpeningBal22 = value; return this; } public Integer getOpeningBal23() { return OpeningBal23; } public DB_Main2 setOpeningBal23(Integer value) { this.OpeningBal23 = value; return this; } public Integer getOpeningBal24() { return OpeningBal24; } public DB_Main2 setOpeningBal24(Integer value) { this.OpeningBal24 = value; return this; } public Integer getOpeningBal25() { return OpeningBal25; } public DB_Main2 setOpeningBal25(Integer value) { this.OpeningBal25 = value; return this; } public Integer getOpeningBal26() { return OpeningBal26; } public DB_Main2 setOpeningBal26(Integer value) { this.OpeningBal26 = value; return this; } public Integer getOpeningBal27() { return OpeningBal27; } public DB_Main2 setOpeningBal27(Integer value) { this.OpeningBal27 = value; return this; } public Integer getOpeningBal28() { return OpeningBal28; } public DB_Main2 setOpeningBal28(Integer value) { this.OpeningBal28 = value; return this; } public Integer getOpeningBal29() { return OpeningBal29; } public DB_Main2 setOpeningBal29(Integer value) { this.OpeningBal29 = value; return this; } public Integer getOpeningBal30() { return OpeningBal30; } public DB_Main2 setOpeningBal30(Integer value) { this.OpeningBal30 = value; return this; } public Integer getOpeningBal31() { return OpeningBal31; } public DB_Main2 setOpeningBal31(Integer value) { this.OpeningBal31 = value; return this; } public Integer getOpeningBal32() { return OpeningBal32; } public DB_Main2 setOpeningBal32(Integer value) { this.OpeningBal32 = value; return this; } public Integer getOpeningBal33() { return OpeningBal33; } public DB_Main2 setOpeningBal33(Integer value) { this.OpeningBal33 = value; return this; } public Integer getOpeningBal34() { return OpeningBal34; } public DB_Main2 setOpeningBal34(Integer value) { this.OpeningBal34 = value; return this; } public Integer getOpeningBal35() { return OpeningBal35; } public DB_Main2 setOpeningBal35(Integer value) { this.OpeningBal35 = value; return this; } public Integer getOpeningBal36() { return OpeningBal36; } public DB_Main2 setOpeningBal36(Integer value) { this.OpeningBal36 = value; return this; } public Integer getOpeningBal37() { return OpeningBal37; } public DB_Main2 setOpeningBal37(Integer value) { this.OpeningBal37 = value; return this; } public Integer getOpeningBal38() { return OpeningBal38; } public DB_Main2 setOpeningBal38(Integer value) { this.OpeningBal38 = value; return this; } public Integer getOpeningBal39() { return OpeningBal39; } public DB_Main2 setOpeningBal39(Integer value) { this.OpeningBal39 = value; return this; } public Integer getOpeningBal40() { return OpeningBal40; } public DB_Main2 setOpeningBal40(Integer value) { this.OpeningBal40 = value; return this; } public Integer getOpeningBal41() { return OpeningBal41; } public DB_Main2 setOpeningBal41(Integer value) { this.OpeningBal41 = value; return this; } public Integer getOpeningBal42() { return OpeningBal42; } public DB_Main2 setOpeningBal42(Integer value) { this.OpeningBal42 = value; return this; } public Integer getOpeningBal43() { return OpeningBal43; } public DB_Main2 setOpeningBal43(Integer value) { this.OpeningBal43 = value; return this; } public Integer getOpeningBal44() { return OpeningBal44; } public DB_Main2 setOpeningBal44(Integer value) { this.OpeningBal44 = value; return this; } public Integer getOpeningBal45() { return OpeningBal45; } public DB_Main2 setOpeningBal45(Integer value) { this.OpeningBal45 = value; return this; } public Integer getOpeningBal46() { return OpeningBal46; } public DB_Main2 setOpeningBal46(Integer value) { this.OpeningBal46 = value; return this; } public Integer getOpeningBal47() { return OpeningBal47; } public DB_Main2 setOpeningBal47(Integer value) { this.OpeningBal47 = value; return this; } public Integer getOpeningBal48() { return OpeningBal48; } public DB_Main2 setOpeningBal48(Integer value) { this.OpeningBal48 = value; return this; } public Integer getOpeningBal49() { return OpeningBal49; } public DB_Main2 setOpeningBal49(Integer value) { this.OpeningBal49 = value; return this; } public Integer getOpeningBal50() { return OpeningBal50; } public DB_Main2 setOpeningBal50(Integer value) { this.OpeningBal50 = value; return this; } public Integer getOpeningBal51() { return OpeningBal51; } public DB_Main2 setOpeningBal51(Integer value) { this.OpeningBal51 = value; return this; } public Integer getOpeningBal52() { return OpeningBal52; } public DB_Main2 setOpeningBal52(Integer value) { this.OpeningBal52 = value; return this; } public Integer getOpeningBal53() { return OpeningBal53; } public DB_Main2 setOpeningBal53(Integer value) { this.OpeningBal53 = value; return this; } public Short getPeriodType() { return PeriodType; } public DB_Main2 setPeriodType(Short value) { this.PeriodType = value; return this; } public Short getTermsDays() { return TermsDays; } public DB_Main2 setTermsDays(Short value) { this.TermsDays = value; return this; } public Short getTermsType() { return TermsType; } public DB_Main2 setTermsType(Short value) { this.TermsType = value; return this; } public String getAbn() { return ABN; } public DB_Main2 setAbn(String value) { this.ABN = value; return this; } public Boolean isExcludeFromAging() { return ExcludeFromAging; } public DB_Main2 setExcludeFromAging(Boolean value) { this.ExcludeFromAging = value; return this; } public String getBPayReference() { return BPayReference; } public DB_Main2 setBPayReference(String value) { this.BPayReference = value; return this; } } public static class DB_Notes { @Required() public String RecID = null; @Required() public String DebtorID = null; @References(SY_NoteTypes.class) @Required() public String NoteTypeID = null; @Required() public Date LastSavedDateTime = null; @References(HR_Staff.class) @Required() public String LastSavedByStaffID = null; public String NoteText = null; @Required() public Integer ItemNo = null; public String getRecID() { return RecID; } public DB_Notes setRecID(String value) { this.RecID = value; return this; } public String getDebtorID() { return DebtorID; } public DB_Notes setDebtorID(String value) { this.DebtorID = value; return this; } public String getNoteTypeID() { return NoteTypeID; } public DB_Notes setNoteTypeID(String value) { this.NoteTypeID = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public DB_Notes setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public String getLastSavedByStaffID() { return LastSavedByStaffID; } public DB_Notes setLastSavedByStaffID(String value) { this.LastSavedByStaffID = value; return this; } public String getNoteText() { return NoteText; } public DB_Notes setNoteText(String value) { this.NoteText = value; return this; } public Integer getItemNo() { return ItemNo; } public DB_Notes setItemNo(Integer value) { this.ItemNo = value; return this; } } public static class DB_PricingGroups { @Required() public String RecID = null; @Required() public Date LastSavedDateTime = null; @Required() public String Description = null; public Boolean DefaultPriceGroup = null; public String getRecID() { return RecID; } public DB_PricingGroups setRecID(String value) { this.RecID = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public DB_PricingGroups setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public String getDescription() { return Description; } public DB_PricingGroups setDescription(String value) { this.Description = value; return this; } public Boolean isDefaultPriceGroup() { return DefaultPriceGroup; } public DB_PricingGroups setDefaultPriceGroup(Boolean value) { this.DefaultPriceGroup = value; return this; } } public static class DB_Trans { @Required() public String TransID = null; @References(DB_Main.class) public String DebtorID = null; @Required() public Boolean DebitCredit = null; @References(SY_Forms.class) public String Source = null; public String Ref = null; public String Remark = null; public Date TranDate = null; public String InvRemitNo = null; public BigDecimal Amount = null; public BigDecimal DiscountedAmount = null; @Required() public Boolean AgedOut = null; public String SourceID = null; public BigDecimal AllocatedAmount = null; public Date InitDateTime = null; public Date LastSavedDateTime = null; public Short SubType = null; public String BatchNo = null; @References(DB_Main.class) public String ChildDebtorID = null; public BigDecimal GSTAmount = null; public Date DueDate = null; public BigDecimal FXAmount = null; public BigDecimal FXAllocAmount = null; public BigDecimal CurrencyRateUsed = null; public BigDecimal RealisedGainLoss = null; public BigDecimal UnRealisedGainLoss = null; @References(FX_Currency.class) public String CurrencyID = null; public BigDecimal Cartage1Amount = null; public BigDecimal Cartage1TaxAmount = null; public BigDecimal Cartage2Amount = null; public BigDecimal Cartage2TaxAmount = null; public BigDecimal Cartage3Amount = null; public BigDecimal Cartage3TaxAmount = null; public Short FXDecimalPlaces = null; public Short DecimalPlaces = null; public String Note = null; public String getTransID() { return TransID; } public DB_Trans setTransID(String value) { this.TransID = value; return this; } public String getDebtorID() { return DebtorID; } public DB_Trans setDebtorID(String value) { this.DebtorID = value; return this; } public Boolean isDebitCredit() { return DebitCredit; } public DB_Trans setDebitCredit(Boolean value) { this.DebitCredit = value; return this; } public String getSource() { return Source; } public DB_Trans setSource(String value) { this.Source = value; return this; } public String getRef() { return Ref; } public DB_Trans setRef(String value) { this.Ref = value; return this; } public String getRemark() { return Remark; } public DB_Trans setRemark(String value) { this.Remark = value; return this; } public Date getTranDate() { return TranDate; } public DB_Trans setTranDate(Date value) { this.TranDate = value; return this; } public String getInvRemitNo() { return InvRemitNo; } public DB_Trans setInvRemitNo(String value) { this.InvRemitNo = value; return this; } public BigDecimal getAmount() { return Amount; } public DB_Trans setAmount(BigDecimal value) { this.Amount = value; return this; } public BigDecimal getDiscountedAmount() { return DiscountedAmount; } public DB_Trans setDiscountedAmount(BigDecimal value) { this.DiscountedAmount = value; return this; } public Boolean isAgedOut() { return AgedOut; } public DB_Trans setAgedOut(Boolean value) { this.AgedOut = value; return this; } public String getSourceID() { return SourceID; } public DB_Trans setSourceID(String value) { this.SourceID = value; return this; } public BigDecimal getAllocatedAmount() { return AllocatedAmount; } public DB_Trans setAllocatedAmount(BigDecimal value) { this.AllocatedAmount = value; return this; } public Date getInitDateTime() { return InitDateTime; } public DB_Trans setInitDateTime(Date value) { this.InitDateTime = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public DB_Trans setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Short getSubType() { return SubType; } public DB_Trans setSubType(Short value) { this.SubType = value; return this; } public String getBatchNo() { return BatchNo; } public DB_Trans setBatchNo(String value) { this.BatchNo = value; return this; } public String getChildDebtorID() { return ChildDebtorID; } public DB_Trans setChildDebtorID(String value) { this.ChildDebtorID = value; return this; } public BigDecimal getGstAmount() { return GSTAmount; } public DB_Trans setGstAmount(BigDecimal value) { this.GSTAmount = value; return this; } public Date getDueDate() { return DueDate; } public DB_Trans setDueDate(Date value) { this.DueDate = value; return this; } public BigDecimal getFxAmount() { return FXAmount; } public DB_Trans setFxAmount(BigDecimal value) { this.FXAmount = value; return this; } public BigDecimal getFxAllocAmount() { return FXAllocAmount; } public DB_Trans setFxAllocAmount(BigDecimal value) { this.FXAllocAmount = value; return this; } public BigDecimal getCurrencyRateUsed() { return CurrencyRateUsed; } public DB_Trans setCurrencyRateUsed(BigDecimal value) { this.CurrencyRateUsed = value; return this; } public BigDecimal getRealisedGainLoss() { return RealisedGainLoss; } public DB_Trans setRealisedGainLoss(BigDecimal value) { this.RealisedGainLoss = value; return this; } public BigDecimal getUnRealisedGainLoss() { return UnRealisedGainLoss; } public DB_Trans setUnRealisedGainLoss(BigDecimal value) { this.UnRealisedGainLoss = value; return this; } public String getCurrencyID() { return CurrencyID; } public DB_Trans setCurrencyID(String value) { this.CurrencyID = value; return this; } public BigDecimal getCartage1Amount() { return Cartage1Amount; } public DB_Trans setCartage1Amount(BigDecimal value) { this.Cartage1Amount = value; return this; } public BigDecimal getCartage1TaxAmount() { return Cartage1TaxAmount; } public DB_Trans setCartage1TaxAmount(BigDecimal value) { this.Cartage1TaxAmount = value; return this; } public BigDecimal getCartage2Amount() { return Cartage2Amount; } public DB_Trans setCartage2Amount(BigDecimal value) { this.Cartage2Amount = value; return this; } public BigDecimal getCartage2TaxAmount() { return Cartage2TaxAmount; } public DB_Trans setCartage2TaxAmount(BigDecimal value) { this.Cartage2TaxAmount = value; return this; } public BigDecimal getCartage3Amount() { return Cartage3Amount; } public DB_Trans setCartage3Amount(BigDecimal value) { this.Cartage3Amount = value; return this; } public BigDecimal getCartage3TaxAmount() { return Cartage3TaxAmount; } public DB_Trans setCartage3TaxAmount(BigDecimal value) { this.Cartage3TaxAmount = value; return this; } public Short getFxDecimalPlaces() { return FXDecimalPlaces; } public DB_Trans setFxDecimalPlaces(Short value) { this.FXDecimalPlaces = value; return this; } public Short getDecimalPlaces() { return DecimalPlaces; } public DB_Trans setDecimalPlaces(Short value) { this.DecimalPlaces = value; return this; } public String getNote() { return Note; } public DB_Trans setNote(String value) { this.Note = value; return this; } } public static class DB_TransAlloc { @Required() public String AllocID = null; @References(DB_Main.class) @Required() public String DebtorID = null; @References(DB_Trans.class) @Required() public String DebitTransID = null; @References(DB_Trans.class) @Required() public String CreditTransID = null; public BigDecimal FXAmount = null; public BigDecimal DebitAmount = null; public BigDecimal CreditAmount = null; public Boolean DebitAged = null; public Boolean CreditAged = null; @Required() public Date DateAlloc = null; public Integer Version = null; public String getAllocID() { return AllocID; } public DB_TransAlloc setAllocID(String value) { this.AllocID = value; return this; } public String getDebtorID() { return DebtorID; } public DB_TransAlloc setDebtorID(String value) { this.DebtorID = value; return this; } public String getDebitTransID() { return DebitTransID; } public DB_TransAlloc setDebitTransID(String value) { this.DebitTransID = value; return this; } public String getCreditTransID() { return CreditTransID; } public DB_TransAlloc setCreditTransID(String value) { this.CreditTransID = value; return this; } public BigDecimal getFxAmount() { return FXAmount; } public DB_TransAlloc setFxAmount(BigDecimal value) { this.FXAmount = value; return this; } public BigDecimal getDebitAmount() { return DebitAmount; } public DB_TransAlloc setDebitAmount(BigDecimal value) { this.DebitAmount = value; return this; } public BigDecimal getCreditAmount() { return CreditAmount; } public DB_TransAlloc setCreditAmount(BigDecimal value) { this.CreditAmount = value; return this; } public Boolean isDebitAged() { return DebitAged; } public DB_TransAlloc setDebitAged(Boolean value) { this.DebitAged = value; return this; } public Boolean isCreditAged() { return CreditAged; } public DB_TransAlloc setCreditAged(Boolean value) { this.CreditAged = value; return this; } public Date getDateAlloc() { return DateAlloc; } public DB_TransAlloc setDateAlloc(Date value) { this.DateAlloc = value; return this; } public Integer getVersion() { return Version; } public DB_TransAlloc setVersion(Integer value) { this.Version = value; return this; } } public static class DB_TransCustomFields { @Required() public String RecID = null; @Required() public String SettingName = null; public String SettingDescription = null; public Integer CellType = null; public String FieldParameter = null; @References(SY_Plugin.class) @Required() public UUID SY_Plugin_RecID = null; @Required() public Date LastSavedDateTime = null; public Integer DisplayOrder = null; public String getRecID() { return RecID; } public DB_TransCustomFields setRecID(String value) { this.RecID = value; return this; } public String getSettingName() { return SettingName; } public DB_TransCustomFields setSettingName(String value) { this.SettingName = value; return this; } public String getSettingDescription() { return SettingDescription; } public DB_TransCustomFields setSettingDescription(String value) { this.SettingDescription = value; return this; } public Integer getCellType() { return CellType; } public DB_TransCustomFields setCellType(Integer value) { this.CellType = value; return this; } public String getFieldParameter() { return FieldParameter; } public DB_TransCustomFields setFieldParameter(String value) { this.FieldParameter = value; return this; } public UUID getSyPluginRecID() { return SY_Plugin_RecID; } public DB_TransCustomFields setSyPluginRecID(UUID value) { this.SY_Plugin_RecID = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public DB_TransCustomFields setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Integer getDisplayOrder() { return DisplayOrder; } public DB_TransCustomFields setDisplayOrder(Integer value) { this.DisplayOrder = value; return this; } } public static class DB_TransCustomFieldValues { @Required() public String RecID = null; @References(DB_Trans.class) @Required() public String DB_Trans_TransID = null; @References(DB_TransCustomFields.class) @Required() public String DB_TransCustomFields_RecID = null; public String Contents = null; @Required() public Date LastSavedDateTime = null; public String getRecID() { return RecID; } public DB_TransCustomFieldValues setRecID(String value) { this.RecID = value; return this; } public String getDbTransTransID() { return DB_Trans_TransID; } public DB_TransCustomFieldValues setDbTransTransID(String value) { this.DB_Trans_TransID = value; return this; } public String getDbTransCustomFieldsRecID() { return DB_TransCustomFields_RecID; } public DB_TransCustomFieldValues setDbTransCustomFieldsRecID(String value) { this.DB_TransCustomFields_RecID = value; return this; } public String getContents() { return Contents; } public DB_TransCustomFieldValues setContents(String value) { this.Contents = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public DB_TransCustomFieldValues setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } } public static class EM_Attachments { @Required() public String RecID = null; @References(EM_Main.class) @Required() public String EmailMessageID = null; @Required() public String DocumentTypeID = null; public Date LastSavedDateTime = null; @Required() public String LastSavedByStaffID = null; public ArrayList FileBinary = null; public String Description = null; public String PhysicalFileName = null; @Required() public Integer ItemNo = null; public String getRecID() { return RecID; } public EM_Attachments setRecID(String value) { this.RecID = value; return this; } public String getEmailMessageID() { return EmailMessageID; } public EM_Attachments setEmailMessageID(String value) { this.EmailMessageID = value; return this; } public String getDocumentTypeID() { return DocumentTypeID; } public EM_Attachments setDocumentTypeID(String value) { this.DocumentTypeID = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public EM_Attachments setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public String getLastSavedByStaffID() { return LastSavedByStaffID; } public EM_Attachments setLastSavedByStaffID(String value) { this.LastSavedByStaffID = value; return this; } public ArrayList getFileBinary() { return FileBinary; } public EM_Attachments setFileBinary(ArrayList value) { this.FileBinary = value; return this; } public String getDescription() { return Description; } public EM_Attachments setDescription(String value) { this.Description = value; return this; } public String getPhysicalFileName() { return PhysicalFileName; } public EM_Attachments setPhysicalFileName(String value) { this.PhysicalFileName = value; return this; } public Integer getItemNo() { return ItemNo; } public EM_Attachments setItemNo(Integer value) { this.ItemNo = value; return this; } } public static class EM_Main { @Required() public String RecID = null; @Required() public String EmailNo = null; @Required() public Date LastSavedDateTime = null; @Required() public Date DateCreated = null; public Date DateSent = null; @Required() public String StaffID = null; public String Reference = null; public String SourceID = null; public String SourceType = null; public String SourceDisplayNo = null; @References(SY_Forms.class) public String SY_Forms_ClassName = null; public Short EmailStatus = null; public String EmailFrom = null; public String EmailTo = null; public String EmailCC = null; public String EmailBCC = null; public String EmailSubject = null; public String EmailBody = null; public Boolean RequestReadReceipt = null; public String getRecID() { return RecID; } public EM_Main setRecID(String value) { this.RecID = value; return this; } public String getEmailNo() { return EmailNo; } public EM_Main setEmailNo(String value) { this.EmailNo = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public EM_Main setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getDateCreated() { return DateCreated; } public EM_Main setDateCreated(Date value) { this.DateCreated = value; return this; } public Date getDateSent() { return DateSent; } public EM_Main setDateSent(Date value) { this.DateSent = value; return this; } public String getStaffID() { return StaffID; } public EM_Main setStaffID(String value) { this.StaffID = value; return this; } public String getReference() { return Reference; } public EM_Main setReference(String value) { this.Reference = value; return this; } public String getSourceID() { return SourceID; } public EM_Main setSourceID(String value) { this.SourceID = value; return this; } public String getSourceType() { return SourceType; } public EM_Main setSourceType(String value) { this.SourceType = value; return this; } public String getSourceDisplayNo() { return SourceDisplayNo; } public EM_Main setSourceDisplayNo(String value) { this.SourceDisplayNo = value; return this; } public String getSyFormsClassName() { return SY_Forms_ClassName; } public EM_Main setSyFormsClassName(String value) { this.SY_Forms_ClassName = value; return this; } public Short getEmailStatus() { return EmailStatus; } public EM_Main setEmailStatus(Short value) { this.EmailStatus = value; return this; } public String getEmailFrom() { return EmailFrom; } public EM_Main setEmailFrom(String value) { this.EmailFrom = value; return this; } public String getEmailTo() { return EmailTo; } public EM_Main setEmailTo(String value) { this.EmailTo = value; return this; } public String getEmailCC() { return EmailCC; } public EM_Main setEmailCC(String value) { this.EmailCC = value; return this; } public String getEmailBCC() { return EmailBCC; } public EM_Main setEmailBCC(String value) { this.EmailBCC = value; return this; } public String getEmailSubject() { return EmailSubject; } public EM_Main setEmailSubject(String value) { this.EmailSubject = value; return this; } public String getEmailBody() { return EmailBody; } public EM_Main setEmailBody(String value) { this.EmailBody = value; return this; } public Boolean isRequestReadReceipt() { return RequestReadReceipt; } public EM_Main setRequestReadReceipt(Boolean value) { this.RequestReadReceipt = value; return this; } } public static class EM_TemplateAttachments { @Required() public String RecID = null; @References(EM_Templates.class) @Required() public String EM_Templates_RecID = null; public String SY_File_FileID = null; public String getRecID() { return RecID; } public EM_TemplateAttachments setRecID(String value) { this.RecID = value; return this; } public String getEmTemplatesRecID() { return EM_Templates_RecID; } public EM_TemplateAttachments setEmTemplatesRecID(String value) { this.EM_Templates_RecID = value; return this; } public String getSyFileFileID() { return SY_File_FileID; } public EM_TemplateAttachments setSyFileFileID(String value) { this.SY_File_FileID = value; return this; } } public static class EM_Templates { @Required() public String RecID = null; public String Name = null; public String EmailFrom = null; public String EmailTo = null; public Boolean RequestReadReceipt = null; public String EmailCC = null; public String EmailBCC = null; public String EmailSubject = null; public String EmailBody = null; @References(HR_Staff.class) @Required() public String CreatedByStaffID = null; @Required() public Date CreatedDateTime = null; @References(HR_Staff.class) @Required() public String LastSavedByStaffID = null; @Required() public Date LastSavedDateTime = null; public Boolean DefaultItem = null; public String getRecID() { return RecID; } public EM_Templates setRecID(String value) { this.RecID = value; return this; } public String getName() { return Name; } public EM_Templates setName(String value) { this.Name = value; return this; } public String getEmailFrom() { return EmailFrom; } public EM_Templates setEmailFrom(String value) { this.EmailFrom = value; return this; } public String getEmailTo() { return EmailTo; } public EM_Templates setEmailTo(String value) { this.EmailTo = value; return this; } public Boolean isRequestReadReceipt() { return RequestReadReceipt; } public EM_Templates setRequestReadReceipt(Boolean value) { this.RequestReadReceipt = value; return this; } public String getEmailCC() { return EmailCC; } public EM_Templates setEmailCC(String value) { this.EmailCC = value; return this; } public String getEmailBCC() { return EmailBCC; } public EM_Templates setEmailBCC(String value) { this.EmailBCC = value; return this; } public String getEmailSubject() { return EmailSubject; } public EM_Templates setEmailSubject(String value) { this.EmailSubject = value; return this; } public String getEmailBody() { return EmailBody; } public EM_Templates setEmailBody(String value) { this.EmailBody = value; return this; } public String getCreatedByStaffID() { return CreatedByStaffID; } public EM_Templates setCreatedByStaffID(String value) { this.CreatedByStaffID = value; return this; } public Date getCreatedDateTime() { return CreatedDateTime; } public EM_Templates setCreatedDateTime(Date value) { this.CreatedDateTime = value; return this; } public String getLastSavedByStaffID() { return LastSavedByStaffID; } public EM_Templates setLastSavedByStaffID(String value) { this.LastSavedByStaffID = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public EM_Templates setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Boolean isDefaultItem() { return DefaultItem; } public EM_Templates setDefaultItem(Boolean value) { this.DefaultItem = value; return this; } } public static class EX_ExportPending { @Required() public String ExportPendingID = null; public String ActionScript = null; public String ScriptErrorMessage = null; public Date DateTimeAdded = null; public String Status = null; public String getExportPendingID() { return ExportPendingID; } public EX_ExportPending setExportPendingID(String value) { this.ExportPendingID = value; return this; } public String getActionScript() { return ActionScript; } public EX_ExportPending setActionScript(String value) { this.ActionScript = value; return this; } public String getScriptErrorMessage() { return ScriptErrorMessage; } public EX_ExportPending setScriptErrorMessage(String value) { this.ScriptErrorMessage = value; return this; } public Date getDateTimeAdded() { return DateTimeAdded; } public EX_ExportPending setDateTimeAdded(Date value) { this.DateTimeAdded = value; return this; } public String getStatus() { return Status; } public EX_ExportPending setStatus(String value) { this.Status = value; return this; } } public static class EX_ExportQueue { @Required() public String ExportQueueID = null; public String ExportData = null; @Required() public Short Status = null; @Required() public Date AddedToQueueDateTime = null; @Required() public String AddedToQueueByStaffID = null; public Date LastSavedDateTime = null; @Required() public String LastSavedByStaffID = null; public String ExportErrorMessage = null; @Required() public String ExportBatchID = null; @Required() public String BatchNo = null; @Required() public String ItemNo = null; public String getExportQueueID() { return ExportQueueID; } public EX_ExportQueue setExportQueueID(String value) { this.ExportQueueID = value; return this; } public String getExportData() { return ExportData; } public EX_ExportQueue setExportData(String value) { this.ExportData = value; return this; } public Short getStatus() { return Status; } public EX_ExportQueue setStatus(Short value) { this.Status = value; return this; } public Date getAddedToQueueDateTime() { return AddedToQueueDateTime; } public EX_ExportQueue setAddedToQueueDateTime(Date value) { this.AddedToQueueDateTime = value; return this; } public String getAddedToQueueByStaffID() { return AddedToQueueByStaffID; } public EX_ExportQueue setAddedToQueueByStaffID(String value) { this.AddedToQueueByStaffID = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public EX_ExportQueue setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public String getLastSavedByStaffID() { return LastSavedByStaffID; } public EX_ExportQueue setLastSavedByStaffID(String value) { this.LastSavedByStaffID = value; return this; } public String getExportErrorMessage() { return ExportErrorMessage; } public EX_ExportQueue setExportErrorMessage(String value) { this.ExportErrorMessage = value; return this; } public String getExportBatchID() { return ExportBatchID; } public EX_ExportQueue setExportBatchID(String value) { this.ExportBatchID = value; return this; } public String getBatchNo() { return BatchNo; } public EX_ExportQueue setBatchNo(String value) { this.BatchNo = value; return this; } public String getItemNo() { return ItemNo; } public EX_ExportQueue setItemNo(String value) { this.ItemNo = value; return this; } } public static class FR_CarrierFreightDescriptions { @Required() public String RecID = null; @References(FR_Carriers.class) @Required() public String FR_Carriers_RecID = null; @Required() public String FreightDescription = null; public Boolean DefaultItem = null; @Required() public Date LastSavedDateTime = null; public Boolean FreightDescriptionEnabled = null; public String getRecID() { return RecID; } public FR_CarrierFreightDescriptions setRecID(String value) { this.RecID = value; return this; } public String getFrCarriersRecID() { return FR_Carriers_RecID; } public FR_CarrierFreightDescriptions setFrCarriersRecID(String value) { this.FR_Carriers_RecID = value; return this; } public String getFreightDescription() { return FreightDescription; } public FR_CarrierFreightDescriptions setFreightDescription(String value) { this.FreightDescription = value; return this; } public Boolean isDefaultItem() { return DefaultItem; } public FR_CarrierFreightDescriptions setDefaultItem(Boolean value) { this.DefaultItem = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public FR_CarrierFreightDescriptions setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Boolean isFreightDescriptionEnabled() { return FreightDescriptionEnabled; } public FR_CarrierFreightDescriptions setFreightDescriptionEnabled(Boolean value) { this.FreightDescriptionEnabled = value; return this; } } public static class FR_Carriers { @Required() public String RecID = null; @Required() public String CarrierName = null; public Boolean CarrierEnabled = null; @Required() public Date LastSavedDateTime = null; public String Notes = null; public String AccountNo = null; public String getRecID() { return RecID; } public FR_Carriers setRecID(String value) { this.RecID = value; return this; } public String getCarrierName() { return CarrierName; } public FR_Carriers setCarrierName(String value) { this.CarrierName = value; return this; } public Boolean isCarrierEnabled() { return CarrierEnabled; } public FR_Carriers setCarrierEnabled(Boolean value) { this.CarrierEnabled = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public FR_Carriers setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public String getNotes() { return Notes; } public FR_Carriers setNotes(String value) { this.Notes = value; return this; } public String getAccountNo() { return AccountNo; } public FR_Carriers setAccountNo(String value) { this.AccountNo = value; return this; } } public static class FR_CarrierServices { @Required() public String RecID = null; @References(FR_Carriers.class) @Required() public String FR_Carriers_RecID = null; @Required() public String ServiceName = null; public Boolean DefaultItem = null; @Required() public Date LastSavedDateTime = null; public Boolean ServiceEnabled = null; public String getRecID() { return RecID; } public FR_CarrierServices setRecID(String value) { this.RecID = value; return this; } public String getFrCarriersRecID() { return FR_Carriers_RecID; } public FR_CarrierServices setFrCarriersRecID(String value) { this.FR_Carriers_RecID = value; return this; } public String getServiceName() { return ServiceName; } public FR_CarrierServices setServiceName(String value) { this.ServiceName = value; return this; } public Boolean isDefaultItem() { return DefaultItem; } public FR_CarrierServices setDefaultItem(Boolean value) { this.DefaultItem = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public FR_CarrierServices setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Boolean isServiceEnabled() { return ServiceEnabled; } public FR_CarrierServices setServiceEnabled(Boolean value) { this.ServiceEnabled = value; return this; } } public static class FX_Currency { @Required() public String RecID = null; @Required() public Date LastSavedDateTime = null; @Required() public String LastSavedByStaffID = null; public String Name = null; public String ShortName = null; public Short DecimalPlaces = null; @Required() public Boolean IsLocal = null; @Required() public Boolean IsEnabled = null; public String getRecID() { return RecID; } public FX_Currency setRecID(String value) { this.RecID = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public FX_Currency setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public String getLastSavedByStaffID() { return LastSavedByStaffID; } public FX_Currency setLastSavedByStaffID(String value) { this.LastSavedByStaffID = value; return this; } public String getName() { return Name; } public FX_Currency setName(String value) { this.Name = value; return this; } public String getShortName() { return ShortName; } public FX_Currency setShortName(String value) { this.ShortName = value; return this; } public Short getDecimalPlaces() { return DecimalPlaces; } public FX_Currency setDecimalPlaces(Short value) { this.DecimalPlaces = value; return this; } public Boolean getIsLocal() { return IsLocal; } public FX_Currency setIsLocal(Boolean value) { this.IsLocal = value; return this; } public Boolean getIsEnabled() { return IsEnabled; } public FX_Currency setIsEnabled(Boolean value) { this.IsEnabled = value; return this; } } public static class FX_CurrencyRates { @Required() public String RecID = null; @References(FX_Currency.class) public String FX_Main_RecID = null; @Required() public Date DateEntered = null; @Required() public Date EffectiveDate = null; @Required() public Date EffectiveDateEnd = null; public BigDecimal TransactionRate = null; @Required() public Integer ItemNo = null; @Required() public ArrayList RowHash = null; public String getRecID() { return RecID; } public FX_CurrencyRates setRecID(String value) { this.RecID = value; return this; } public String getFxMainRecID() { return FX_Main_RecID; } public FX_CurrencyRates setFxMainRecID(String value) { this.FX_Main_RecID = value; return this; } public Date getDateEntered() { return DateEntered; } public FX_CurrencyRates setDateEntered(Date value) { this.DateEntered = value; return this; } public Date getEffectiveDate() { return EffectiveDate; } public FX_CurrencyRates setEffectiveDate(Date value) { this.EffectiveDate = value; return this; } public Date getEffectiveDateEnd() { return EffectiveDateEnd; } public FX_CurrencyRates setEffectiveDateEnd(Date value) { this.EffectiveDateEnd = value; return this; } public BigDecimal getTransactionRate() { return TransactionRate; } public FX_CurrencyRates setTransactionRate(BigDecimal value) { this.TransactionRate = value; return this; } public Integer getItemNo() { return ItemNo; } public FX_CurrencyRates setItemNo(Integer value) { this.ItemNo = value; return this; } public ArrayList getRowHash() { return RowHash; } public FX_CurrencyRates setRowHash(ArrayList value) { this.RowHash = value; return this; } } public static class GL_AutoJournalLines { @Required() public String RecID = null; @References(GL_AutoJournals.class) @Required() public String GL_AutoJournals_RecID = null; @References(GL_Sets.class) public String GL_Sets_RecID_Source = null; public String GL_Sets_SourceDescription = null; @Required() public Date PostingDue = null; public String Reason = null; @References(GL_Sets.class) @Required() public String GL_Sets_RecID_Destination = null; @Required() public Integer ItemNo = null; @Required() public ArrayList RowHash = null; public String getRecID() { return RecID; } public GL_AutoJournalLines setRecID(String value) { this.RecID = value; return this; } public String getGlAutoJournalsRecID() { return GL_AutoJournals_RecID; } public GL_AutoJournalLines setGlAutoJournalsRecID(String value) { this.GL_AutoJournals_RecID = value; return this; } public String getGlSetsRecIDSource() { return GL_Sets_RecID_Source; } public GL_AutoJournalLines setGlSetsRecIDSource(String value) { this.GL_Sets_RecID_Source = value; return this; } public String getGlSetsSourceDescription() { return GL_Sets_SourceDescription; } public GL_AutoJournalLines setGlSetsSourceDescription(String value) { this.GL_Sets_SourceDescription = value; return this; } public Date getPostingDue() { return PostingDue; } public GL_AutoJournalLines setPostingDue(Date value) { this.PostingDue = value; return this; } public String getReason() { return Reason; } public GL_AutoJournalLines setReason(String value) { this.Reason = value; return this; } public String getGlSetsRecIDDestination() { return GL_Sets_RecID_Destination; } public GL_AutoJournalLines setGlSetsRecIDDestination(String value) { this.GL_Sets_RecID_Destination = value; return this; } public Integer getItemNo() { return ItemNo; } public GL_AutoJournalLines setItemNo(Integer value) { this.ItemNo = value; return this; } public ArrayList getRowHash() { return RowHash; } public GL_AutoJournalLines setRowHash(ArrayList value) { this.RowHash = value; return this; } } public static class GL_AutoJournals { @Required() public String RecID = null; public Date LastSavedDateTime = null; public Date RunDateTime = null; @References(HR_Staff.class) @Required() public String LastSavedBy_HR_Staff_RecID = null; @Required() public ArrayList RowHash = null; public String getRecID() { return RecID; } public GL_AutoJournals setRecID(String value) { this.RecID = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public GL_AutoJournals setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getRunDateTime() { return RunDateTime; } public GL_AutoJournals setRunDateTime(Date value) { this.RunDateTime = value; return this; } public String getLastSavedByHrStaffRecID() { return LastSavedBy_HR_Staff_RecID; } public GL_AutoJournals setLastSavedByHrStaffRecID(String value) { this.LastSavedBy_HR_Staff_RecID = value; return this; } public ArrayList getRowHash() { return RowHash; } public GL_AutoJournals setRowHash(ArrayList value) { this.RowHash = value; return this; } } public static class GL_BankDetails { @Required() public String RecID = null; @Required() public String GLLedgerID = null; public String NextChequeNumber = null; public String BankName = null; public String BSBN = null; public String AccountNumber = null; public String AccountName = null; public Boolean DefaultBank = null; @Required() public Date LastSavedDateTime = null; public String FeesLedgerID = null; public String EFTBankCode = null; public String UserIdentificationNumber = null; public String getRecID() { return RecID; } public GL_BankDetails setRecID(String value) { this.RecID = value; return this; } public String getGlLedgerID() { return GLLedgerID; } public GL_BankDetails setGlLedgerID(String value) { this.GLLedgerID = value; return this; } public String getNextChequeNumber() { return NextChequeNumber; } public GL_BankDetails setNextChequeNumber(String value) { this.NextChequeNumber = value; return this; } public String getBankName() { return BankName; } public GL_BankDetails setBankName(String value) { this.BankName = value; return this; } public String getBsbn() { return BSBN; } public GL_BankDetails setBsbn(String value) { this.BSBN = value; return this; } public String getAccountNumber() { return AccountNumber; } public GL_BankDetails setAccountNumber(String value) { this.AccountNumber = value; return this; } public String getAccountName() { return AccountName; } public GL_BankDetails setAccountName(String value) { this.AccountName = value; return this; } public Boolean isDefaultBank() { return DefaultBank; } public GL_BankDetails setDefaultBank(Boolean value) { this.DefaultBank = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public GL_BankDetails setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public String getFeesLedgerID() { return FeesLedgerID; } public GL_BankDetails setFeesLedgerID(String value) { this.FeesLedgerID = value; return this; } public String getEftBankCode() { return EFTBankCode; } public GL_BankDetails setEftBankCode(String value) { this.EFTBankCode = value; return this; } public String getUserIdentificationNumber() { return UserIdentificationNumber; } public GL_BankDetails setUserIdentificationNumber(String value) { this.UserIdentificationNumber = value; return this; } } public static class GL_Budget1 { @Required() public String GLBudgetID = null; @References(GL_Ledger.class) @Required() public String GLLedgerID = null; public BigDecimal LastYearBudget1 = null; public BigDecimal LastYearBudget2 = null; public BigDecimal LastYearBudget3 = null; public BigDecimal LastYearBudget4 = null; public BigDecimal LastYearBudget5 = null; public BigDecimal LastYearBudget6 = null; public BigDecimal LastYearBudget7 = null; public BigDecimal LastYearBudget8 = null; public BigDecimal LastYearBudget9 = null; public BigDecimal LastYearBudget10 = null; public BigDecimal LastYearBudget11 = null; public BigDecimal LastYearBudget12 = null; public BigDecimal CurrYearBudget1 = null; public BigDecimal CurrYearBudget2 = null; public BigDecimal CurrYearBudget3 = null; public BigDecimal CurrYearBudget4 = null; public BigDecimal CurrYearBudget5 = null; public BigDecimal CurrYearBudget6 = null; public BigDecimal CurrYearBudget7 = null; public BigDecimal CurrYearBudget8 = null; public BigDecimal CurrYearBudget9 = null; public BigDecimal CurrYearBudget10 = null; public BigDecimal CurrYearBudget11 = null; public BigDecimal CurrYearBudget12 = null; public BigDecimal NextYearBudget1 = null; public BigDecimal NextYearBudget2 = null; public BigDecimal NextYearBudget3 = null; public BigDecimal NextYearBudget4 = null; public BigDecimal NextYearBudget5 = null; public BigDecimal NextYearBudget6 = null; public BigDecimal NextYearBudget7 = null; public BigDecimal NextYearBudget8 = null; public BigDecimal NextYearBudget9 = null; public BigDecimal NextYearBudget10 = null; public BigDecimal NextYearBudget11 = null; public BigDecimal NextYearBudget12 = null; public String getGlBudgetID() { return GLBudgetID; } public GL_Budget1 setGlBudgetID(String value) { this.GLBudgetID = value; return this; } public String getGlLedgerID() { return GLLedgerID; } public GL_Budget1 setGlLedgerID(String value) { this.GLLedgerID = value; return this; } public BigDecimal getLastYearBudget1() { return LastYearBudget1; } public GL_Budget1 setLastYearBudget1(BigDecimal value) { this.LastYearBudget1 = value; return this; } public BigDecimal getLastYearBudget2() { return LastYearBudget2; } public GL_Budget1 setLastYearBudget2(BigDecimal value) { this.LastYearBudget2 = value; return this; } public BigDecimal getLastYearBudget3() { return LastYearBudget3; } public GL_Budget1 setLastYearBudget3(BigDecimal value) { this.LastYearBudget3 = value; return this; } public BigDecimal getLastYearBudget4() { return LastYearBudget4; } public GL_Budget1 setLastYearBudget4(BigDecimal value) { this.LastYearBudget4 = value; return this; } public BigDecimal getLastYearBudget5() { return LastYearBudget5; } public GL_Budget1 setLastYearBudget5(BigDecimal value) { this.LastYearBudget5 = value; return this; } public BigDecimal getLastYearBudget6() { return LastYearBudget6; } public GL_Budget1 setLastYearBudget6(BigDecimal value) { this.LastYearBudget6 = value; return this; } public BigDecimal getLastYearBudget7() { return LastYearBudget7; } public GL_Budget1 setLastYearBudget7(BigDecimal value) { this.LastYearBudget7 = value; return this; } public BigDecimal getLastYearBudget8() { return LastYearBudget8; } public GL_Budget1 setLastYearBudget8(BigDecimal value) { this.LastYearBudget8 = value; return this; } public BigDecimal getLastYearBudget9() { return LastYearBudget9; } public GL_Budget1 setLastYearBudget9(BigDecimal value) { this.LastYearBudget9 = value; return this; } public BigDecimal getLastYearBudget10() { return LastYearBudget10; } public GL_Budget1 setLastYearBudget10(BigDecimal value) { this.LastYearBudget10 = value; return this; } public BigDecimal getLastYearBudget11() { return LastYearBudget11; } public GL_Budget1 setLastYearBudget11(BigDecimal value) { this.LastYearBudget11 = value; return this; } public BigDecimal getLastYearBudget12() { return LastYearBudget12; } public GL_Budget1 setLastYearBudget12(BigDecimal value) { this.LastYearBudget12 = value; return this; } public BigDecimal getCurrYearBudget1() { return CurrYearBudget1; } public GL_Budget1 setCurrYearBudget1(BigDecimal value) { this.CurrYearBudget1 = value; return this; } public BigDecimal getCurrYearBudget2() { return CurrYearBudget2; } public GL_Budget1 setCurrYearBudget2(BigDecimal value) { this.CurrYearBudget2 = value; return this; } public BigDecimal getCurrYearBudget3() { return CurrYearBudget3; } public GL_Budget1 setCurrYearBudget3(BigDecimal value) { this.CurrYearBudget3 = value; return this; } public BigDecimal getCurrYearBudget4() { return CurrYearBudget4; } public GL_Budget1 setCurrYearBudget4(BigDecimal value) { this.CurrYearBudget4 = value; return this; } public BigDecimal getCurrYearBudget5() { return CurrYearBudget5; } public GL_Budget1 setCurrYearBudget5(BigDecimal value) { this.CurrYearBudget5 = value; return this; } public BigDecimal getCurrYearBudget6() { return CurrYearBudget6; } public GL_Budget1 setCurrYearBudget6(BigDecimal value) { this.CurrYearBudget6 = value; return this; } public BigDecimal getCurrYearBudget7() { return CurrYearBudget7; } public GL_Budget1 setCurrYearBudget7(BigDecimal value) { this.CurrYearBudget7 = value; return this; } public BigDecimal getCurrYearBudget8() { return CurrYearBudget8; } public GL_Budget1 setCurrYearBudget8(BigDecimal value) { this.CurrYearBudget8 = value; return this; } public BigDecimal getCurrYearBudget9() { return CurrYearBudget9; } public GL_Budget1 setCurrYearBudget9(BigDecimal value) { this.CurrYearBudget9 = value; return this; } public BigDecimal getCurrYearBudget10() { return CurrYearBudget10; } public GL_Budget1 setCurrYearBudget10(BigDecimal value) { this.CurrYearBudget10 = value; return this; } public BigDecimal getCurrYearBudget11() { return CurrYearBudget11; } public GL_Budget1 setCurrYearBudget11(BigDecimal value) { this.CurrYearBudget11 = value; return this; } public BigDecimal getCurrYearBudget12() { return CurrYearBudget12; } public GL_Budget1 setCurrYearBudget12(BigDecimal value) { this.CurrYearBudget12 = value; return this; } public BigDecimal getNextYearBudget1() { return NextYearBudget1; } public GL_Budget1 setNextYearBudget1(BigDecimal value) { this.NextYearBudget1 = value; return this; } public BigDecimal getNextYearBudget2() { return NextYearBudget2; } public GL_Budget1 setNextYearBudget2(BigDecimal value) { this.NextYearBudget2 = value; return this; } public BigDecimal getNextYearBudget3() { return NextYearBudget3; } public GL_Budget1 setNextYearBudget3(BigDecimal value) { this.NextYearBudget3 = value; return this; } public BigDecimal getNextYearBudget4() { return NextYearBudget4; } public GL_Budget1 setNextYearBudget4(BigDecimal value) { this.NextYearBudget4 = value; return this; } public BigDecimal getNextYearBudget5() { return NextYearBudget5; } public GL_Budget1 setNextYearBudget5(BigDecimal value) { this.NextYearBudget5 = value; return this; } public BigDecimal getNextYearBudget6() { return NextYearBudget6; } public GL_Budget1 setNextYearBudget6(BigDecimal value) { this.NextYearBudget6 = value; return this; } public BigDecimal getNextYearBudget7() { return NextYearBudget7; } public GL_Budget1 setNextYearBudget7(BigDecimal value) { this.NextYearBudget7 = value; return this; } public BigDecimal getNextYearBudget8() { return NextYearBudget8; } public GL_Budget1 setNextYearBudget8(BigDecimal value) { this.NextYearBudget8 = value; return this; } public BigDecimal getNextYearBudget9() { return NextYearBudget9; } public GL_Budget1 setNextYearBudget9(BigDecimal value) { this.NextYearBudget9 = value; return this; } public BigDecimal getNextYearBudget10() { return NextYearBudget10; } public GL_Budget1 setNextYearBudget10(BigDecimal value) { this.NextYearBudget10 = value; return this; } public BigDecimal getNextYearBudget11() { return NextYearBudget11; } public GL_Budget1 setNextYearBudget11(BigDecimal value) { this.NextYearBudget11 = value; return this; } public BigDecimal getNextYearBudget12() { return NextYearBudget12; } public GL_Budget1 setNextYearBudget12(BigDecimal value) { this.NextYearBudget12 = value; return this; } } public static class GL_Budget2 { @Required() public String GLBudgetID = null; @References(GL_Ledger.class) @Required() public String GLLedgerID = null; public BigDecimal LastYearBudget1 = null; public BigDecimal LastYearBudget2 = null; public BigDecimal LastYearBudget3 = null; public BigDecimal LastYearBudget4 = null; public BigDecimal LastYearBudget5 = null; public BigDecimal LastYearBudget6 = null; public BigDecimal LastYearBudget7 = null; public BigDecimal LastYearBudget8 = null; public BigDecimal LastYearBudget9 = null; public BigDecimal LastYearBudget10 = null; public BigDecimal LastYearBudget11 = null; public BigDecimal LastYearBudget12 = null; public BigDecimal CurrYearBudget1 = null; public BigDecimal CurrYearBudget2 = null; public BigDecimal CurrYearBudget3 = null; public BigDecimal CurrYearBudget4 = null; public BigDecimal CurrYearBudget5 = null; public BigDecimal CurrYearBudget6 = null; public BigDecimal CurrYearBudget7 = null; public BigDecimal CurrYearBudget8 = null; public BigDecimal CurrYearBudget9 = null; public BigDecimal CurrYearBudget10 = null; public BigDecimal CurrYearBudget11 = null; public BigDecimal CurrYearBudget12 = null; public BigDecimal NextYearBudget1 = null; public BigDecimal NextYearBudget2 = null; public BigDecimal NextYearBudget3 = null; public BigDecimal NextYearBudget4 = null; public BigDecimal NextYearBudget5 = null; public BigDecimal NextYearBudget6 = null; public BigDecimal NextYearBudget7 = null; public BigDecimal NextYearBudget8 = null; public BigDecimal NextYearBudget9 = null; public BigDecimal NextYearBudget10 = null; public BigDecimal NextYearBudget11 = null; public BigDecimal NextYearBudget12 = null; public String getGlBudgetID() { return GLBudgetID; } public GL_Budget2 setGlBudgetID(String value) { this.GLBudgetID = value; return this; } public String getGlLedgerID() { return GLLedgerID; } public GL_Budget2 setGlLedgerID(String value) { this.GLLedgerID = value; return this; } public BigDecimal getLastYearBudget1() { return LastYearBudget1; } public GL_Budget2 setLastYearBudget1(BigDecimal value) { this.LastYearBudget1 = value; return this; } public BigDecimal getLastYearBudget2() { return LastYearBudget2; } public GL_Budget2 setLastYearBudget2(BigDecimal value) { this.LastYearBudget2 = value; return this; } public BigDecimal getLastYearBudget3() { return LastYearBudget3; } public GL_Budget2 setLastYearBudget3(BigDecimal value) { this.LastYearBudget3 = value; return this; } public BigDecimal getLastYearBudget4() { return LastYearBudget4; } public GL_Budget2 setLastYearBudget4(BigDecimal value) { this.LastYearBudget4 = value; return this; } public BigDecimal getLastYearBudget5() { return LastYearBudget5; } public GL_Budget2 setLastYearBudget5(BigDecimal value) { this.LastYearBudget5 = value; return this; } public BigDecimal getLastYearBudget6() { return LastYearBudget6; } public GL_Budget2 setLastYearBudget6(BigDecimal value) { this.LastYearBudget6 = value; return this; } public BigDecimal getLastYearBudget7() { return LastYearBudget7; } public GL_Budget2 setLastYearBudget7(BigDecimal value) { this.LastYearBudget7 = value; return this; } public BigDecimal getLastYearBudget8() { return LastYearBudget8; } public GL_Budget2 setLastYearBudget8(BigDecimal value) { this.LastYearBudget8 = value; return this; } public BigDecimal getLastYearBudget9() { return LastYearBudget9; } public GL_Budget2 setLastYearBudget9(BigDecimal value) { this.LastYearBudget9 = value; return this; } public BigDecimal getLastYearBudget10() { return LastYearBudget10; } public GL_Budget2 setLastYearBudget10(BigDecimal value) { this.LastYearBudget10 = value; return this; } public BigDecimal getLastYearBudget11() { return LastYearBudget11; } public GL_Budget2 setLastYearBudget11(BigDecimal value) { this.LastYearBudget11 = value; return this; } public BigDecimal getLastYearBudget12() { return LastYearBudget12; } public GL_Budget2 setLastYearBudget12(BigDecimal value) { this.LastYearBudget12 = value; return this; } public BigDecimal getCurrYearBudget1() { return CurrYearBudget1; } public GL_Budget2 setCurrYearBudget1(BigDecimal value) { this.CurrYearBudget1 = value; return this; } public BigDecimal getCurrYearBudget2() { return CurrYearBudget2; } public GL_Budget2 setCurrYearBudget2(BigDecimal value) { this.CurrYearBudget2 = value; return this; } public BigDecimal getCurrYearBudget3() { return CurrYearBudget3; } public GL_Budget2 setCurrYearBudget3(BigDecimal value) { this.CurrYearBudget3 = value; return this; } public BigDecimal getCurrYearBudget4() { return CurrYearBudget4; } public GL_Budget2 setCurrYearBudget4(BigDecimal value) { this.CurrYearBudget4 = value; return this; } public BigDecimal getCurrYearBudget5() { return CurrYearBudget5; } public GL_Budget2 setCurrYearBudget5(BigDecimal value) { this.CurrYearBudget5 = value; return this; } public BigDecimal getCurrYearBudget6() { return CurrYearBudget6; } public GL_Budget2 setCurrYearBudget6(BigDecimal value) { this.CurrYearBudget6 = value; return this; } public BigDecimal getCurrYearBudget7() { return CurrYearBudget7; } public GL_Budget2 setCurrYearBudget7(BigDecimal value) { this.CurrYearBudget7 = value; return this; } public BigDecimal getCurrYearBudget8() { return CurrYearBudget8; } public GL_Budget2 setCurrYearBudget8(BigDecimal value) { this.CurrYearBudget8 = value; return this; } public BigDecimal getCurrYearBudget9() { return CurrYearBudget9; } public GL_Budget2 setCurrYearBudget9(BigDecimal value) { this.CurrYearBudget9 = value; return this; } public BigDecimal getCurrYearBudget10() { return CurrYearBudget10; } public GL_Budget2 setCurrYearBudget10(BigDecimal value) { this.CurrYearBudget10 = value; return this; } public BigDecimal getCurrYearBudget11() { return CurrYearBudget11; } public GL_Budget2 setCurrYearBudget11(BigDecimal value) { this.CurrYearBudget11 = value; return this; } public BigDecimal getCurrYearBudget12() { return CurrYearBudget12; } public GL_Budget2 setCurrYearBudget12(BigDecimal value) { this.CurrYearBudget12 = value; return this; } public BigDecimal getNextYearBudget1() { return NextYearBudget1; } public GL_Budget2 setNextYearBudget1(BigDecimal value) { this.NextYearBudget1 = value; return this; } public BigDecimal getNextYearBudget2() { return NextYearBudget2; } public GL_Budget2 setNextYearBudget2(BigDecimal value) { this.NextYearBudget2 = value; return this; } public BigDecimal getNextYearBudget3() { return NextYearBudget3; } public GL_Budget2 setNextYearBudget3(BigDecimal value) { this.NextYearBudget3 = value; return this; } public BigDecimal getNextYearBudget4() { return NextYearBudget4; } public GL_Budget2 setNextYearBudget4(BigDecimal value) { this.NextYearBudget4 = value; return this; } public BigDecimal getNextYearBudget5() { return NextYearBudget5; } public GL_Budget2 setNextYearBudget5(BigDecimal value) { this.NextYearBudget5 = value; return this; } public BigDecimal getNextYearBudget6() { return NextYearBudget6; } public GL_Budget2 setNextYearBudget6(BigDecimal value) { this.NextYearBudget6 = value; return this; } public BigDecimal getNextYearBudget7() { return NextYearBudget7; } public GL_Budget2 setNextYearBudget7(BigDecimal value) { this.NextYearBudget7 = value; return this; } public BigDecimal getNextYearBudget8() { return NextYearBudget8; } public GL_Budget2 setNextYearBudget8(BigDecimal value) { this.NextYearBudget8 = value; return this; } public BigDecimal getNextYearBudget9() { return NextYearBudget9; } public GL_Budget2 setNextYearBudget9(BigDecimal value) { this.NextYearBudget9 = value; return this; } public BigDecimal getNextYearBudget10() { return NextYearBudget10; } public GL_Budget2 setNextYearBudget10(BigDecimal value) { this.NextYearBudget10 = value; return this; } public BigDecimal getNextYearBudget11() { return NextYearBudget11; } public GL_Budget2 setNextYearBudget11(BigDecimal value) { this.NextYearBudget11 = value; return this; } public BigDecimal getNextYearBudget12() { return NextYearBudget12; } public GL_Budget2 setNextYearBudget12(BigDecimal value) { this.NextYearBudget12 = value; return this; } } public static class GL_Budget3 { @Required() public String GLBudgetID = null; @References(GL_Ledger.class) @Required() public String GLLedgerID = null; public BigDecimal LastYearBudget1 = null; public BigDecimal LastYearBudget2 = null; public BigDecimal LastYearBudget3 = null; public BigDecimal LastYearBudget4 = null; public BigDecimal LastYearBudget5 = null; public BigDecimal LastYearBudget6 = null; public BigDecimal LastYearBudget7 = null; public BigDecimal LastYearBudget8 = null; public BigDecimal LastYearBudget9 = null; public BigDecimal LastYearBudget10 = null; public BigDecimal LastYearBudget11 = null; public BigDecimal LastYearBudget12 = null; public BigDecimal CurrYearBudget1 = null; public BigDecimal CurrYearBudget2 = null; public BigDecimal CurrYearBudget3 = null; public BigDecimal CurrYearBudget4 = null; public BigDecimal CurrYearBudget5 = null; public BigDecimal CurrYearBudget6 = null; public BigDecimal CurrYearBudget7 = null; public BigDecimal CurrYearBudget8 = null; public BigDecimal CurrYearBudget9 = null; public BigDecimal CurrYearBudget10 = null; public BigDecimal CurrYearBudget11 = null; public BigDecimal CurrYearBudget12 = null; public BigDecimal NextYearBudget1 = null; public BigDecimal NextYearBudget2 = null; public BigDecimal NextYearBudget3 = null; public BigDecimal NextYearBudget4 = null; public BigDecimal NextYearBudget5 = null; public BigDecimal NextYearBudget6 = null; public BigDecimal NextYearBudget7 = null; public BigDecimal NextYearBudget8 = null; public BigDecimal NextYearBudget9 = null; public BigDecimal NextYearBudget10 = null; public BigDecimal NextYearBudget11 = null; public BigDecimal NextYearBudget12 = null; public String getGlBudgetID() { return GLBudgetID; } public GL_Budget3 setGlBudgetID(String value) { this.GLBudgetID = value; return this; } public String getGlLedgerID() { return GLLedgerID; } public GL_Budget3 setGlLedgerID(String value) { this.GLLedgerID = value; return this; } public BigDecimal getLastYearBudget1() { return LastYearBudget1; } public GL_Budget3 setLastYearBudget1(BigDecimal value) { this.LastYearBudget1 = value; return this; } public BigDecimal getLastYearBudget2() { return LastYearBudget2; } public GL_Budget3 setLastYearBudget2(BigDecimal value) { this.LastYearBudget2 = value; return this; } public BigDecimal getLastYearBudget3() { return LastYearBudget3; } public GL_Budget3 setLastYearBudget3(BigDecimal value) { this.LastYearBudget3 = value; return this; } public BigDecimal getLastYearBudget4() { return LastYearBudget4; } public GL_Budget3 setLastYearBudget4(BigDecimal value) { this.LastYearBudget4 = value; return this; } public BigDecimal getLastYearBudget5() { return LastYearBudget5; } public GL_Budget3 setLastYearBudget5(BigDecimal value) { this.LastYearBudget5 = value; return this; } public BigDecimal getLastYearBudget6() { return LastYearBudget6; } public GL_Budget3 setLastYearBudget6(BigDecimal value) { this.LastYearBudget6 = value; return this; } public BigDecimal getLastYearBudget7() { return LastYearBudget7; } public GL_Budget3 setLastYearBudget7(BigDecimal value) { this.LastYearBudget7 = value; return this; } public BigDecimal getLastYearBudget8() { return LastYearBudget8; } public GL_Budget3 setLastYearBudget8(BigDecimal value) { this.LastYearBudget8 = value; return this; } public BigDecimal getLastYearBudget9() { return LastYearBudget9; } public GL_Budget3 setLastYearBudget9(BigDecimal value) { this.LastYearBudget9 = value; return this; } public BigDecimal getLastYearBudget10() { return LastYearBudget10; } public GL_Budget3 setLastYearBudget10(BigDecimal value) { this.LastYearBudget10 = value; return this; } public BigDecimal getLastYearBudget11() { return LastYearBudget11; } public GL_Budget3 setLastYearBudget11(BigDecimal value) { this.LastYearBudget11 = value; return this; } public BigDecimal getLastYearBudget12() { return LastYearBudget12; } public GL_Budget3 setLastYearBudget12(BigDecimal value) { this.LastYearBudget12 = value; return this; } public BigDecimal getCurrYearBudget1() { return CurrYearBudget1; } public GL_Budget3 setCurrYearBudget1(BigDecimal value) { this.CurrYearBudget1 = value; return this; } public BigDecimal getCurrYearBudget2() { return CurrYearBudget2; } public GL_Budget3 setCurrYearBudget2(BigDecimal value) { this.CurrYearBudget2 = value; return this; } public BigDecimal getCurrYearBudget3() { return CurrYearBudget3; } public GL_Budget3 setCurrYearBudget3(BigDecimal value) { this.CurrYearBudget3 = value; return this; } public BigDecimal getCurrYearBudget4() { return CurrYearBudget4; } public GL_Budget3 setCurrYearBudget4(BigDecimal value) { this.CurrYearBudget4 = value; return this; } public BigDecimal getCurrYearBudget5() { return CurrYearBudget5; } public GL_Budget3 setCurrYearBudget5(BigDecimal value) { this.CurrYearBudget5 = value; return this; } public BigDecimal getCurrYearBudget6() { return CurrYearBudget6; } public GL_Budget3 setCurrYearBudget6(BigDecimal value) { this.CurrYearBudget6 = value; return this; } public BigDecimal getCurrYearBudget7() { return CurrYearBudget7; } public GL_Budget3 setCurrYearBudget7(BigDecimal value) { this.CurrYearBudget7 = value; return this; } public BigDecimal getCurrYearBudget8() { return CurrYearBudget8; } public GL_Budget3 setCurrYearBudget8(BigDecimal value) { this.CurrYearBudget8 = value; return this; } public BigDecimal getCurrYearBudget9() { return CurrYearBudget9; } public GL_Budget3 setCurrYearBudget9(BigDecimal value) { this.CurrYearBudget9 = value; return this; } public BigDecimal getCurrYearBudget10() { return CurrYearBudget10; } public GL_Budget3 setCurrYearBudget10(BigDecimal value) { this.CurrYearBudget10 = value; return this; } public BigDecimal getCurrYearBudget11() { return CurrYearBudget11; } public GL_Budget3 setCurrYearBudget11(BigDecimal value) { this.CurrYearBudget11 = value; return this; } public BigDecimal getCurrYearBudget12() { return CurrYearBudget12; } public GL_Budget3 setCurrYearBudget12(BigDecimal value) { this.CurrYearBudget12 = value; return this; } public BigDecimal getNextYearBudget1() { return NextYearBudget1; } public GL_Budget3 setNextYearBudget1(BigDecimal value) { this.NextYearBudget1 = value; return this; } public BigDecimal getNextYearBudget2() { return NextYearBudget2; } public GL_Budget3 setNextYearBudget2(BigDecimal value) { this.NextYearBudget2 = value; return this; } public BigDecimal getNextYearBudget3() { return NextYearBudget3; } public GL_Budget3 setNextYearBudget3(BigDecimal value) { this.NextYearBudget3 = value; return this; } public BigDecimal getNextYearBudget4() { return NextYearBudget4; } public GL_Budget3 setNextYearBudget4(BigDecimal value) { this.NextYearBudget4 = value; return this; } public BigDecimal getNextYearBudget5() { return NextYearBudget5; } public GL_Budget3 setNextYearBudget5(BigDecimal value) { this.NextYearBudget5 = value; return this; } public BigDecimal getNextYearBudget6() { return NextYearBudget6; } public GL_Budget3 setNextYearBudget6(BigDecimal value) { this.NextYearBudget6 = value; return this; } public BigDecimal getNextYearBudget7() { return NextYearBudget7; } public GL_Budget3 setNextYearBudget7(BigDecimal value) { this.NextYearBudget7 = value; return this; } public BigDecimal getNextYearBudget8() { return NextYearBudget8; } public GL_Budget3 setNextYearBudget8(BigDecimal value) { this.NextYearBudget8 = value; return this; } public BigDecimal getNextYearBudget9() { return NextYearBudget9; } public GL_Budget3 setNextYearBudget9(BigDecimal value) { this.NextYearBudget9 = value; return this; } public BigDecimal getNextYearBudget10() { return NextYearBudget10; } public GL_Budget3 setNextYearBudget10(BigDecimal value) { this.NextYearBudget10 = value; return this; } public BigDecimal getNextYearBudget11() { return NextYearBudget11; } public GL_Budget3 setNextYearBudget11(BigDecimal value) { this.NextYearBudget11 = value; return this; } public BigDecimal getNextYearBudget12() { return NextYearBudget12; } public GL_Budget3 setNextYearBudget12(BigDecimal value) { this.NextYearBudget12 = value; return this; } } public static class GL_Category { @Required() public String GLCategoryID = null; public Date LastSavedDateTime = null; public String Description = null; public Short ExpSign = null; public Short AccType = null; public String Group1 = null; public String Group2 = null; public Integer Group2DisplayOrder = null; public Integer Group1DisplayOrder = null; public String getGlCategoryID() { return GLCategoryID; } public GL_Category setGlCategoryID(String value) { this.GLCategoryID = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public GL_Category setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public String getDescription() { return Description; } public GL_Category setDescription(String value) { this.Description = value; return this; } public Short getExpSign() { return ExpSign; } public GL_Category setExpSign(Short value) { this.ExpSign = value; return this; } public Short getAccType() { return AccType; } public GL_Category setAccType(Short value) { this.AccType = value; return this; } public String getGroup1() { return Group1; } public GL_Category setGroup1(String value) { this.Group1 = value; return this; } public String getGroup2() { return Group2; } public GL_Category setGroup2(String value) { this.Group2 = value; return this; } public Integer getGroup2DisplayOrder() { return Group2DisplayOrder; } public GL_Category setGroup2DisplayOrder(Integer value) { this.Group2DisplayOrder = value; return this; } public Integer getGroup1DisplayOrder() { return Group1DisplayOrder; } public GL_Category setGroup1DisplayOrder(Integer value) { this.Group1DisplayOrder = value; return this; } } public static class GL_Config { @Required() public String GLSetUpID = null; public Date LastSavedDateTime = null; @Required() public Short YearNo = null; public Date YearStartingDate = null; public String RetainedEarningsNo = null; public String PeriodName1 = null; @Required() public Date PeriodStart1 = null; public Short PeriodLocked1 = null; public Boolean PeriodRolled1 = null; public String PeriodName2 = null; @Required() public Date PeriodStart2 = null; public Short PeriodLocked2 = null; public Boolean PeriodRolled2 = null; public String PeriodName3 = null; @Required() public Date PeriodStart3 = null; public Short PeriodLocked3 = null; public Boolean PeriodRolled3 = null; public String PeriodName4 = null; @Required() public Date PeriodStart4 = null; public Short PeriodLocked4 = null; public Boolean PeriodRolled4 = null; public String PeriodName5 = null; @Required() public Date PeriodStart5 = null; public Short PeriodLocked5 = null; public Boolean PeriodRolled5 = null; public String PeriodName6 = null; @Required() public Date PeriodStart6 = null; public Short PeriodLocked6 = null; public Boolean PeriodRolled6 = null; public String PeriodName7 = null; @Required() public Date PeriodStart7 = null; public Short PeriodLocked7 = null; public Boolean PeriodRolled7 = null; public String PeriodName8 = null; @Required() public Date PeriodStart8 = null; public Short PeriodLocked8 = null; public Boolean PeriodRolled8 = null; public String PeriodName9 = null; @Required() public Date PeriodStart9 = null; public Short PeriodLocked9 = null; public Boolean PeriodRolled9 = null; public String PeriodName10 = null; @Required() public Date PeriodStart10 = null; public Short PeriodLocked10 = null; public Boolean PeriodRolled10 = null; public String PeriodName11 = null; @Required() public Date PeriodStart11 = null; public Short PeriodLocked11 = null; public Boolean PeriodRolled11 = null; public String PeriodName12 = null; @Required() public Date PeriodStart12 = null; public Short PeriodLocked12 = null; public Boolean PeriodRolled12 = null; @Required() public Boolean YearRolled = null; public String getGlSetUpID() { return GLSetUpID; } public GL_Config setGlSetUpID(String value) { this.GLSetUpID = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public GL_Config setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Short getYearNo() { return YearNo; } public GL_Config setYearNo(Short value) { this.YearNo = value; return this; } public Date getYearStartingDate() { return YearStartingDate; } public GL_Config setYearStartingDate(Date value) { this.YearStartingDate = value; return this; } public String getRetainedEarningsNo() { return RetainedEarningsNo; } public GL_Config setRetainedEarningsNo(String value) { this.RetainedEarningsNo = value; return this; } public String getPeriodName1() { return PeriodName1; } public GL_Config setPeriodName1(String value) { this.PeriodName1 = value; return this; } public Date getPeriodStart1() { return PeriodStart1; } public GL_Config setPeriodStart1(Date value) { this.PeriodStart1 = value; return this; } public Short getPeriodLocked1() { return PeriodLocked1; } public GL_Config setPeriodLocked1(Short value) { this.PeriodLocked1 = value; return this; } public Boolean isPeriodRolled1() { return PeriodRolled1; } public GL_Config setPeriodRolled1(Boolean value) { this.PeriodRolled1 = value; return this; } public String getPeriodName2() { return PeriodName2; } public GL_Config setPeriodName2(String value) { this.PeriodName2 = value; return this; } public Date getPeriodStart2() { return PeriodStart2; } public GL_Config setPeriodStart2(Date value) { this.PeriodStart2 = value; return this; } public Short getPeriodLocked2() { return PeriodLocked2; } public GL_Config setPeriodLocked2(Short value) { this.PeriodLocked2 = value; return this; } public Boolean isPeriodRolled2() { return PeriodRolled2; } public GL_Config setPeriodRolled2(Boolean value) { this.PeriodRolled2 = value; return this; } public String getPeriodName3() { return PeriodName3; } public GL_Config setPeriodName3(String value) { this.PeriodName3 = value; return this; } public Date getPeriodStart3() { return PeriodStart3; } public GL_Config setPeriodStart3(Date value) { this.PeriodStart3 = value; return this; } public Short getPeriodLocked3() { return PeriodLocked3; } public GL_Config setPeriodLocked3(Short value) { this.PeriodLocked3 = value; return this; } public Boolean isPeriodRolled3() { return PeriodRolled3; } public GL_Config setPeriodRolled3(Boolean value) { this.PeriodRolled3 = value; return this; } public String getPeriodName4() { return PeriodName4; } public GL_Config setPeriodName4(String value) { this.PeriodName4 = value; return this; } public Date getPeriodStart4() { return PeriodStart4; } public GL_Config setPeriodStart4(Date value) { this.PeriodStart4 = value; return this; } public Short getPeriodLocked4() { return PeriodLocked4; } public GL_Config setPeriodLocked4(Short value) { this.PeriodLocked4 = value; return this; } public Boolean isPeriodRolled4() { return PeriodRolled4; } public GL_Config setPeriodRolled4(Boolean value) { this.PeriodRolled4 = value; return this; } public String getPeriodName5() { return PeriodName5; } public GL_Config setPeriodName5(String value) { this.PeriodName5 = value; return this; } public Date getPeriodStart5() { return PeriodStart5; } public GL_Config setPeriodStart5(Date value) { this.PeriodStart5 = value; return this; } public Short getPeriodLocked5() { return PeriodLocked5; } public GL_Config setPeriodLocked5(Short value) { this.PeriodLocked5 = value; return this; } public Boolean isPeriodRolled5() { return PeriodRolled5; } public GL_Config setPeriodRolled5(Boolean value) { this.PeriodRolled5 = value; return this; } public String getPeriodName6() { return PeriodName6; } public GL_Config setPeriodName6(String value) { this.PeriodName6 = value; return this; } public Date getPeriodStart6() { return PeriodStart6; } public GL_Config setPeriodStart6(Date value) { this.PeriodStart6 = value; return this; } public Short getPeriodLocked6() { return PeriodLocked6; } public GL_Config setPeriodLocked6(Short value) { this.PeriodLocked6 = value; return this; } public Boolean isPeriodRolled6() { return PeriodRolled6; } public GL_Config setPeriodRolled6(Boolean value) { this.PeriodRolled6 = value; return this; } public String getPeriodName7() { return PeriodName7; } public GL_Config setPeriodName7(String value) { this.PeriodName7 = value; return this; } public Date getPeriodStart7() { return PeriodStart7; } public GL_Config setPeriodStart7(Date value) { this.PeriodStart7 = value; return this; } public Short getPeriodLocked7() { return PeriodLocked7; } public GL_Config setPeriodLocked7(Short value) { this.PeriodLocked7 = value; return this; } public Boolean isPeriodRolled7() { return PeriodRolled7; } public GL_Config setPeriodRolled7(Boolean value) { this.PeriodRolled7 = value; return this; } public String getPeriodName8() { return PeriodName8; } public GL_Config setPeriodName8(String value) { this.PeriodName8 = value; return this; } public Date getPeriodStart8() { return PeriodStart8; } public GL_Config setPeriodStart8(Date value) { this.PeriodStart8 = value; return this; } public Short getPeriodLocked8() { return PeriodLocked8; } public GL_Config setPeriodLocked8(Short value) { this.PeriodLocked8 = value; return this; } public Boolean isPeriodRolled8() { return PeriodRolled8; } public GL_Config setPeriodRolled8(Boolean value) { this.PeriodRolled8 = value; return this; } public String getPeriodName9() { return PeriodName9; } public GL_Config setPeriodName9(String value) { this.PeriodName9 = value; return this; } public Date getPeriodStart9() { return PeriodStart9; } public GL_Config setPeriodStart9(Date value) { this.PeriodStart9 = value; return this; } public Short getPeriodLocked9() { return PeriodLocked9; } public GL_Config setPeriodLocked9(Short value) { this.PeriodLocked9 = value; return this; } public Boolean isPeriodRolled9() { return PeriodRolled9; } public GL_Config setPeriodRolled9(Boolean value) { this.PeriodRolled9 = value; return this; } public String getPeriodName10() { return PeriodName10; } public GL_Config setPeriodName10(String value) { this.PeriodName10 = value; return this; } public Date getPeriodStart10() { return PeriodStart10; } public GL_Config setPeriodStart10(Date value) { this.PeriodStart10 = value; return this; } public Short getPeriodLocked10() { return PeriodLocked10; } public GL_Config setPeriodLocked10(Short value) { this.PeriodLocked10 = value; return this; } public Boolean isPeriodRolled10() { return PeriodRolled10; } public GL_Config setPeriodRolled10(Boolean value) { this.PeriodRolled10 = value; return this; } public String getPeriodName11() { return PeriodName11; } public GL_Config setPeriodName11(String value) { this.PeriodName11 = value; return this; } public Date getPeriodStart11() { return PeriodStart11; } public GL_Config setPeriodStart11(Date value) { this.PeriodStart11 = value; return this; } public Short getPeriodLocked11() { return PeriodLocked11; } public GL_Config setPeriodLocked11(Short value) { this.PeriodLocked11 = value; return this; } public Boolean isPeriodRolled11() { return PeriodRolled11; } public GL_Config setPeriodRolled11(Boolean value) { this.PeriodRolled11 = value; return this; } public String getPeriodName12() { return PeriodName12; } public GL_Config setPeriodName12(String value) { this.PeriodName12 = value; return this; } public Date getPeriodStart12() { return PeriodStart12; } public GL_Config setPeriodStart12(Date value) { this.PeriodStart12 = value; return this; } public Short getPeriodLocked12() { return PeriodLocked12; } public GL_Config setPeriodLocked12(Short value) { this.PeriodLocked12 = value; return this; } public Boolean isPeriodRolled12() { return PeriodRolled12; } public GL_Config setPeriodRolled12(Boolean value) { this.PeriodRolled12 = value; return this; } public Boolean isYearRolled() { return YearRolled; } public GL_Config setYearRolled(Boolean value) { this.YearRolled = value; return this; } } public static class GL_Distribution { @Required() public String GLDistID = null; @References(GL_Ledger.class) @Required() public String GLLedgerID = null; @References(GL_Ledger.class) @Required() public String GLDistLedgerID = null; public BigDecimal DistAmount = null; public Integer LineNum = null; public String getGlDistID() { return GLDistID; } public GL_Distribution setGlDistID(String value) { this.GLDistID = value; return this; } public String getGlLedgerID() { return GLLedgerID; } public GL_Distribution setGlLedgerID(String value) { this.GLLedgerID = value; return this; } public String getGlDistLedgerID() { return GLDistLedgerID; } public GL_Distribution setGlDistLedgerID(String value) { this.GLDistLedgerID = value; return this; } public BigDecimal getDistAmount() { return DistAmount; } public GL_Distribution setDistAmount(BigDecimal value) { this.DistAmount = value; return this; } public Integer getLineNum() { return LineNum; } public GL_Distribution setLineNum(Integer value) { this.LineNum = value; return this; } } public static class GL_Documents { @Required() public String RecID = null; @References(GL_Sets.class) @Required() public String GL_Sets_RecID = null; @Required() public String DocumentTypeID = null; public Date LastSavedDateTime = null; @References(HR_Staff.class) @Required() public String LastSavedByStaffID = null; public ArrayList FileBinary = null; public String Description = null; public String PhysicalFileName = null; @Required() public Integer ItemNo = null; public String getRecID() { return RecID; } public GL_Documents setRecID(String value) { this.RecID = value; return this; } public String getGlSetsRecID() { return GL_Sets_RecID; } public GL_Documents setGlSetsRecID(String value) { this.GL_Sets_RecID = value; return this; } public String getDocumentTypeID() { return DocumentTypeID; } public GL_Documents setDocumentTypeID(String value) { this.DocumentTypeID = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public GL_Documents setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public String getLastSavedByStaffID() { return LastSavedByStaffID; } public GL_Documents setLastSavedByStaffID(String value) { this.LastSavedByStaffID = value; return this; } public ArrayList getFileBinary() { return FileBinary; } public GL_Documents setFileBinary(ArrayList value) { this.FileBinary = value; return this; } public String getDescription() { return Description; } public GL_Documents setDescription(String value) { this.Description = value; return this; } public String getPhysicalFileName() { return PhysicalFileName; } public GL_Documents setPhysicalFileName(String value) { this.PhysicalFileName = value; return this; } public Integer getItemNo() { return ItemNo; } public GL_Documents setItemNo(Integer value) { this.ItemNo = value; return this; } } public static class GL_Duplicates { @Required() public String SetNo = null; public Date PostDateTime = null; public String Source = null; @Required() public String SourceID = null; @Required() public Short SetType = null; public String Description = null; public String getSetNo() { return SetNo; } public GL_Duplicates setSetNo(String value) { this.SetNo = value; return this; } public Date getPostDateTime() { return PostDateTime; } public GL_Duplicates setPostDateTime(Date value) { this.PostDateTime = value; return this; } public String getSource() { return Source; } public GL_Duplicates setSource(String value) { this.Source = value; return this; } public String getSourceID() { return SourceID; } public GL_Duplicates setSourceID(String value) { this.SourceID = value; return this; } public Short getSetType() { return SetType; } public GL_Duplicates setSetType(Short value) { this.SetType = value; return this; } public String getDescription() { return Description; } public GL_Duplicates setDescription(String value) { this.Description = value; return this; } } public static class GL_Ledger { @Required() public String GLLedgerID = null; public Date LastSavedDateTime = null; @References(GL_Category.class) @Required() public String GLCategoryID = null; @Required() public String AccountNo = null; public String Seg1 = null; public String Seg2 = null; public String Seg3 = null; public String Seg4 = null; public String Seg5 = null; public String Seg6 = null; public String Description = null; public BigDecimal LastYearOpen = null; public BigDecimal CurrYearOpen = null; public BigDecimal CurrBal = null; public Short ExpSign = null; @Required() public Short AccClass = null; public Boolean DistributionAcc = null; @Required() public String ShortCut = null; @Required() public Short PostingAcc = null; public String ParentAccNo = null; public Boolean UseTransCode1 = null; public Boolean UseTransCode2 = null; public Boolean UseTransCode3 = null; public Boolean UseStaffCode = null; public String ClearingAccountID = null; public String Details = null; public Boolean IsEnabled = null; public String getGlLedgerID() { return GLLedgerID; } public GL_Ledger setGlLedgerID(String value) { this.GLLedgerID = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public GL_Ledger setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public String getGlCategoryID() { return GLCategoryID; } public GL_Ledger setGlCategoryID(String value) { this.GLCategoryID = value; return this; } public String getAccountNo() { return AccountNo; } public GL_Ledger setAccountNo(String value) { this.AccountNo = value; return this; } public String getSeg1() { return Seg1; } public GL_Ledger setSeg1(String value) { this.Seg1 = value; return this; } public String getSeg2() { return Seg2; } public GL_Ledger setSeg2(String value) { this.Seg2 = value; return this; } public String getSeg3() { return Seg3; } public GL_Ledger setSeg3(String value) { this.Seg3 = value; return this; } public String getSeg4() { return Seg4; } public GL_Ledger setSeg4(String value) { this.Seg4 = value; return this; } public String getSeg5() { return Seg5; } public GL_Ledger setSeg5(String value) { this.Seg5 = value; return this; } public String getSeg6() { return Seg6; } public GL_Ledger setSeg6(String value) { this.Seg6 = value; return this; } public String getDescription() { return Description; } public GL_Ledger setDescription(String value) { this.Description = value; return this; } public BigDecimal getLastYearOpen() { return LastYearOpen; } public GL_Ledger setLastYearOpen(BigDecimal value) { this.LastYearOpen = value; return this; } public BigDecimal getCurrYearOpen() { return CurrYearOpen; } public GL_Ledger setCurrYearOpen(BigDecimal value) { this.CurrYearOpen = value; return this; } public BigDecimal getCurrBal() { return CurrBal; } public GL_Ledger setCurrBal(BigDecimal value) { this.CurrBal = value; return this; } public Short getExpSign() { return ExpSign; } public GL_Ledger setExpSign(Short value) { this.ExpSign = value; return this; } public Short getAccClass() { return AccClass; } public GL_Ledger setAccClass(Short value) { this.AccClass = value; return this; } public Boolean isDistributionAcc() { return DistributionAcc; } public GL_Ledger setDistributionAcc(Boolean value) { this.DistributionAcc = value; return this; } public String getShortCut() { return ShortCut; } public GL_Ledger setShortCut(String value) { this.ShortCut = value; return this; } public Short getPostingAcc() { return PostingAcc; } public GL_Ledger setPostingAcc(Short value) { this.PostingAcc = value; return this; } public String getParentAccNo() { return ParentAccNo; } public GL_Ledger setParentAccNo(String value) { this.ParentAccNo = value; return this; } public Boolean isUseTransCode1() { return UseTransCode1; } public GL_Ledger setUseTransCode1(Boolean value) { this.UseTransCode1 = value; return this; } public Boolean isUseTransCode2() { return UseTransCode2; } public GL_Ledger setUseTransCode2(Boolean value) { this.UseTransCode2 = value; return this; } public Boolean isUseTransCode3() { return UseTransCode3; } public GL_Ledger setUseTransCode3(Boolean value) { this.UseTransCode3 = value; return this; } public Boolean isUseStaffCode() { return UseStaffCode; } public GL_Ledger setUseStaffCode(Boolean value) { this.UseStaffCode = value; return this; } public String getClearingAccountID() { return ClearingAccountID; } public GL_Ledger setClearingAccountID(String value) { this.ClearingAccountID = value; return this; } public String getDetails() { return Details; } public GL_Ledger setDetails(String value) { this.Details = value; return this; } public Boolean getIsEnabled() { return IsEnabled; } public GL_Ledger setIsEnabled(Boolean value) { this.IsEnabled = value; return this; } } public static class GL_Movement { @Required() public String GLMovementID = null; @References(GL_Ledger.class) @Required() public String GLLedgerID = null; public BigDecimal LastYearMovement1 = null; public BigDecimal LastYearMovement2 = null; public BigDecimal LastYearMovement3 = null; public BigDecimal LastYearMovement4 = null; public BigDecimal LastYearMovement5 = null; public BigDecimal LastYearMovement6 = null; public BigDecimal LastYearMovement7 = null; public BigDecimal LastYearMovement8 = null; public BigDecimal LastYearMovement9 = null; public BigDecimal LastYearMovement10 = null; public BigDecimal LastYearMovement11 = null; public BigDecimal LastYearMovement12 = null; public BigDecimal CurrYearMovement1 = null; public BigDecimal CurrYearMovement2 = null; public BigDecimal CurrYearMovement3 = null; public BigDecimal CurrYearMovement4 = null; public BigDecimal CurrYearMovement5 = null; public BigDecimal CurrYearMovement6 = null; public BigDecimal CurrYearMovement7 = null; public BigDecimal CurrYearMovement8 = null; public BigDecimal CurrYearMovement9 = null; public BigDecimal CurrYearMovement10 = null; public BigDecimal CurrYearMovement11 = null; public BigDecimal CurrYearMovement12 = null; public BigDecimal NextYearMovement1 = null; public BigDecimal NextYearMovement2 = null; public BigDecimal NextYearMovement3 = null; public BigDecimal NextYearMovement4 = null; public BigDecimal NextYearMovement5 = null; public BigDecimal NextYearMovement6 = null; public BigDecimal NextYearMovement7 = null; public BigDecimal NextYearMovement8 = null; public BigDecimal NextYearMovement9 = null; public BigDecimal NextYearMovement10 = null; public BigDecimal NextYearMovement11 = null; public BigDecimal NextYearMovement12 = null; public String getGlMovementID() { return GLMovementID; } public GL_Movement setGlMovementID(String value) { this.GLMovementID = value; return this; } public String getGlLedgerID() { return GLLedgerID; } public GL_Movement setGlLedgerID(String value) { this.GLLedgerID = value; return this; } public BigDecimal getLastYearMovement1() { return LastYearMovement1; } public GL_Movement setLastYearMovement1(BigDecimal value) { this.LastYearMovement1 = value; return this; } public BigDecimal getLastYearMovement2() { return LastYearMovement2; } public GL_Movement setLastYearMovement2(BigDecimal value) { this.LastYearMovement2 = value; return this; } public BigDecimal getLastYearMovement3() { return LastYearMovement3; } public GL_Movement setLastYearMovement3(BigDecimal value) { this.LastYearMovement3 = value; return this; } public BigDecimal getLastYearMovement4() { return LastYearMovement4; } public GL_Movement setLastYearMovement4(BigDecimal value) { this.LastYearMovement4 = value; return this; } public BigDecimal getLastYearMovement5() { return LastYearMovement5; } public GL_Movement setLastYearMovement5(BigDecimal value) { this.LastYearMovement5 = value; return this; } public BigDecimal getLastYearMovement6() { return LastYearMovement6; } public GL_Movement setLastYearMovement6(BigDecimal value) { this.LastYearMovement6 = value; return this; } public BigDecimal getLastYearMovement7() { return LastYearMovement7; } public GL_Movement setLastYearMovement7(BigDecimal value) { this.LastYearMovement7 = value; return this; } public BigDecimal getLastYearMovement8() { return LastYearMovement8; } public GL_Movement setLastYearMovement8(BigDecimal value) { this.LastYearMovement8 = value; return this; } public BigDecimal getLastYearMovement9() { return LastYearMovement9; } public GL_Movement setLastYearMovement9(BigDecimal value) { this.LastYearMovement9 = value; return this; } public BigDecimal getLastYearMovement10() { return LastYearMovement10; } public GL_Movement setLastYearMovement10(BigDecimal value) { this.LastYearMovement10 = value; return this; } public BigDecimal getLastYearMovement11() { return LastYearMovement11; } public GL_Movement setLastYearMovement11(BigDecimal value) { this.LastYearMovement11 = value; return this; } public BigDecimal getLastYearMovement12() { return LastYearMovement12; } public GL_Movement setLastYearMovement12(BigDecimal value) { this.LastYearMovement12 = value; return this; } public BigDecimal getCurrYearMovement1() { return CurrYearMovement1; } public GL_Movement setCurrYearMovement1(BigDecimal value) { this.CurrYearMovement1 = value; return this; } public BigDecimal getCurrYearMovement2() { return CurrYearMovement2; } public GL_Movement setCurrYearMovement2(BigDecimal value) { this.CurrYearMovement2 = value; return this; } public BigDecimal getCurrYearMovement3() { return CurrYearMovement3; } public GL_Movement setCurrYearMovement3(BigDecimal value) { this.CurrYearMovement3 = value; return this; } public BigDecimal getCurrYearMovement4() { return CurrYearMovement4; } public GL_Movement setCurrYearMovement4(BigDecimal value) { this.CurrYearMovement4 = value; return this; } public BigDecimal getCurrYearMovement5() { return CurrYearMovement5; } public GL_Movement setCurrYearMovement5(BigDecimal value) { this.CurrYearMovement5 = value; return this; } public BigDecimal getCurrYearMovement6() { return CurrYearMovement6; } public GL_Movement setCurrYearMovement6(BigDecimal value) { this.CurrYearMovement6 = value; return this; } public BigDecimal getCurrYearMovement7() { return CurrYearMovement7; } public GL_Movement setCurrYearMovement7(BigDecimal value) { this.CurrYearMovement7 = value; return this; } public BigDecimal getCurrYearMovement8() { return CurrYearMovement8; } public GL_Movement setCurrYearMovement8(BigDecimal value) { this.CurrYearMovement8 = value; return this; } public BigDecimal getCurrYearMovement9() { return CurrYearMovement9; } public GL_Movement setCurrYearMovement9(BigDecimal value) { this.CurrYearMovement9 = value; return this; } public BigDecimal getCurrYearMovement10() { return CurrYearMovement10; } public GL_Movement setCurrYearMovement10(BigDecimal value) { this.CurrYearMovement10 = value; return this; } public BigDecimal getCurrYearMovement11() { return CurrYearMovement11; } public GL_Movement setCurrYearMovement11(BigDecimal value) { this.CurrYearMovement11 = value; return this; } public BigDecimal getCurrYearMovement12() { return CurrYearMovement12; } public GL_Movement setCurrYearMovement12(BigDecimal value) { this.CurrYearMovement12 = value; return this; } public BigDecimal getNextYearMovement1() { return NextYearMovement1; } public GL_Movement setNextYearMovement1(BigDecimal value) { this.NextYearMovement1 = value; return this; } public BigDecimal getNextYearMovement2() { return NextYearMovement2; } public GL_Movement setNextYearMovement2(BigDecimal value) { this.NextYearMovement2 = value; return this; } public BigDecimal getNextYearMovement3() { return NextYearMovement3; } public GL_Movement setNextYearMovement3(BigDecimal value) { this.NextYearMovement3 = value; return this; } public BigDecimal getNextYearMovement4() { return NextYearMovement4; } public GL_Movement setNextYearMovement4(BigDecimal value) { this.NextYearMovement4 = value; return this; } public BigDecimal getNextYearMovement5() { return NextYearMovement5; } public GL_Movement setNextYearMovement5(BigDecimal value) { this.NextYearMovement5 = value; return this; } public BigDecimal getNextYearMovement6() { return NextYearMovement6; } public GL_Movement setNextYearMovement6(BigDecimal value) { this.NextYearMovement6 = value; return this; } public BigDecimal getNextYearMovement7() { return NextYearMovement7; } public GL_Movement setNextYearMovement7(BigDecimal value) { this.NextYearMovement7 = value; return this; } public BigDecimal getNextYearMovement8() { return NextYearMovement8; } public GL_Movement setNextYearMovement8(BigDecimal value) { this.NextYearMovement8 = value; return this; } public BigDecimal getNextYearMovement9() { return NextYearMovement9; } public GL_Movement setNextYearMovement9(BigDecimal value) { this.NextYearMovement9 = value; return this; } public BigDecimal getNextYearMovement10() { return NextYearMovement10; } public GL_Movement setNextYearMovement10(BigDecimal value) { this.NextYearMovement10 = value; return this; } public BigDecimal getNextYearMovement11() { return NextYearMovement11; } public GL_Movement setNextYearMovement11(BigDecimal value) { this.NextYearMovement11 = value; return this; } public BigDecimal getNextYearMovement12() { return NextYearMovement12; } public GL_Movement setNextYearMovement12(BigDecimal value) { this.NextYearMovement12 = value; return this; } } public static class GL_Notes { @Required() public String RecID = null; @References(GL_Sets.class) @Required() public String GL_Sets_RecID = null; @Required() public String NoteTypeID = null; @Required() public Date LastSavedDateTime = null; @References(HR_Staff.class) @Required() public String LastSavedByStaffID = null; public String NoteText = null; @Required() public Integer ItemNo = null; public String getRecID() { return RecID; } public GL_Notes setRecID(String value) { this.RecID = value; return this; } public String getGlSetsRecID() { return GL_Sets_RecID; } public GL_Notes setGlSetsRecID(String value) { this.GL_Sets_RecID = value; return this; } public String getNoteTypeID() { return NoteTypeID; } public GL_Notes setNoteTypeID(String value) { this.NoteTypeID = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public GL_Notes setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public String getLastSavedByStaffID() { return LastSavedByStaffID; } public GL_Notes setLastSavedByStaffID(String value) { this.LastSavedByStaffID = value; return this; } public String getNoteText() { return NoteText; } public GL_Notes setNoteText(String value) { this.NoteText = value; return this; } public Integer getItemNo() { return ItemNo; } public GL_Notes setItemNo(Integer value) { this.ItemNo = value; return this; } } public static class GL_SegmentConfiguration { @Required() public String RecID = null; public Short SegmentNo = null; public String Name = null; public Short SegmentLength = null; public Short SegmentType = null; @Required() public ArrayList RowHash = null; public String getRecID() { return RecID; } public GL_SegmentConfiguration setRecID(String value) { this.RecID = value; return this; } public Short getSegmentNo() { return SegmentNo; } public GL_SegmentConfiguration setSegmentNo(Short value) { this.SegmentNo = value; return this; } public String getName() { return Name; } public GL_SegmentConfiguration setName(String value) { this.Name = value; return this; } public Short getSegmentLength() { return SegmentLength; } public GL_SegmentConfiguration setSegmentLength(Short value) { this.SegmentLength = value; return this; } public Short getSegmentType() { return SegmentType; } public GL_SegmentConfiguration setSegmentType(Short value) { this.SegmentType = value; return this; } public ArrayList getRowHash() { return RowHash; } public GL_SegmentConfiguration setRowHash(ArrayList value) { this.RowHash = value; return this; } } public static class GL_Segments { @Required() public String GLSegmentID = null; public Date LastSavedDateTime = null; @Required() public Short SegmentNo = null; public String SegContents = null; public String SegContentsDesc = null; public String getGlSegmentID() { return GLSegmentID; } public GL_Segments setGlSegmentID(String value) { this.GLSegmentID = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public GL_Segments setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Short getSegmentNo() { return SegmentNo; } public GL_Segments setSegmentNo(Short value) { this.SegmentNo = value; return this; } public String getSegContents() { return SegContents; } public GL_Segments setSegContents(String value) { this.SegContents = value; return this; } public String getSegContentsDesc() { return SegContentsDesc; } public GL_Segments setSegContentsDesc(String value) { this.SegContentsDesc = value; return this; } } public static class GL_Sets { @Required() public String GLSetID = null; public Date LastSavedDateTime = null; @Required() public String SetNo = null; public Date PostDateTime = null; @Required() public Short PostedToPeriodNo = null; public String Description = null; public String Source = null; @Required() public String SourceID = null; @References(HR_Staff.class) public String UserName = null; @Required() public Short SetType = null; @Required() public Short RepeatingType = null; @Required() public Short RepeatingUnits = null; public Date NextRepeatingDate = null; public Boolean RepeatingWillEnd = null; public Date RepeatingEndDate = null; @Required() public Short ReverseType = null; public Short ReversePeriod = null; public Date ReverseDate = null; public Boolean Reversed = null; public Short YearNo = null; public String getGlSetID() { return GLSetID; } public GL_Sets setGlSetID(String value) { this.GLSetID = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public GL_Sets setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public String getSetNo() { return SetNo; } public GL_Sets setSetNo(String value) { this.SetNo = value; return this; } public Date getPostDateTime() { return PostDateTime; } public GL_Sets setPostDateTime(Date value) { this.PostDateTime = value; return this; } public Short getPostedToPeriodNo() { return PostedToPeriodNo; } public GL_Sets setPostedToPeriodNo(Short value) { this.PostedToPeriodNo = value; return this; } public String getDescription() { return Description; } public GL_Sets setDescription(String value) { this.Description = value; return this; } public String getSource() { return Source; } public GL_Sets setSource(String value) { this.Source = value; return this; } public String getSourceID() { return SourceID; } public GL_Sets setSourceID(String value) { this.SourceID = value; return this; } public String getUserName() { return UserName; } public GL_Sets setUserName(String value) { this.UserName = value; return this; } public Short getSetType() { return SetType; } public GL_Sets setSetType(Short value) { this.SetType = value; return this; } public Short getRepeatingType() { return RepeatingType; } public GL_Sets setRepeatingType(Short value) { this.RepeatingType = value; return this; } public Short getRepeatingUnits() { return RepeatingUnits; } public GL_Sets setRepeatingUnits(Short value) { this.RepeatingUnits = value; return this; } public Date getNextRepeatingDate() { return NextRepeatingDate; } public GL_Sets setNextRepeatingDate(Date value) { this.NextRepeatingDate = value; return this; } public Boolean isRepeatingWillEnd() { return RepeatingWillEnd; } public GL_Sets setRepeatingWillEnd(Boolean value) { this.RepeatingWillEnd = value; return this; } public Date getRepeatingEndDate() { return RepeatingEndDate; } public GL_Sets setRepeatingEndDate(Date value) { this.RepeatingEndDate = value; return this; } public Short getReverseType() { return ReverseType; } public GL_Sets setReverseType(Short value) { this.ReverseType = value; return this; } public Short getReversePeriod() { return ReversePeriod; } public GL_Sets setReversePeriod(Short value) { this.ReversePeriod = value; return this; } public Date getReverseDate() { return ReverseDate; } public GL_Sets setReverseDate(Date value) { this.ReverseDate = value; return this; } public Boolean isReversed() { return Reversed; } public GL_Sets setReversed(Boolean value) { this.Reversed = value; return this; } public Short getYearNo() { return YearNo; } public GL_Sets setYearNo(Short value) { this.YearNo = value; return this; } } public static class GL_TranAllocs { @Required() public String GLTranAllocsID = null; @Required() public String GLDebitTransID = null; @Required() public String GLCreditTransID = null; public BigDecimal Amount = null; public String getGlTranAllocsID() { return GLTranAllocsID; } public GL_TranAllocs setGlTranAllocsID(String value) { this.GLTranAllocsID = value; return this; } public String getGlDebitTransID() { return GLDebitTransID; } public GL_TranAllocs setGlDebitTransID(String value) { this.GLDebitTransID = value; return this; } public String getGlCreditTransID() { return GLCreditTransID; } public GL_TranAllocs setGlCreditTransID(String value) { this.GLCreditTransID = value; return this; } public BigDecimal getAmount() { return Amount; } public GL_TranAllocs setAmount(BigDecimal value) { this.Amount = value; return this; } } public static class GL_TranCodes { @Required() public String GLTransCodeID = null; @Required() public Date LastSavedDateTime = null; public String Description = null; @Required() public Integer TransNo = null; public String getGlTransCodeID() { return GLTransCodeID; } public GL_TranCodes setGlTransCodeID(String value) { this.GLTransCodeID = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public GL_TranCodes setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public String getDescription() { return Description; } public GL_TranCodes setDescription(String value) { this.Description = value; return this; } public Integer getTransNo() { return TransNo; } public GL_TranCodes setTransNo(Integer value) { this.TransNo = value; return this; } } public static class GL_TransactionCode1 { @Required() public String RecID = null; public String Name = null; @Required() public Date CreatedDateTime = null; @References(HR_Staff.class) @Required() public String HR_Staff_CreatedBy = null; @Required() public Date LastSavedDateTime = null; @References(HR_Staff.class) @Required() public String HR_Staff_LastSavedBy = null; @Required() public Integer ItemNo = null; @Required() public ArrayList RowHash = null; public String getRecID() { return RecID; } public GL_TransactionCode1 setRecID(String value) { this.RecID = value; return this; } public String getName() { return Name; } public GL_TransactionCode1 setName(String value) { this.Name = value; return this; } public Date getCreatedDateTime() { return CreatedDateTime; } public GL_TransactionCode1 setCreatedDateTime(Date value) { this.CreatedDateTime = value; return this; } public String getHrStaffCreatedBy() { return HR_Staff_CreatedBy; } public GL_TransactionCode1 setHrStaffCreatedBy(String value) { this.HR_Staff_CreatedBy = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public GL_TransactionCode1 setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public String getHrStaffLastSavedBy() { return HR_Staff_LastSavedBy; } public GL_TransactionCode1 setHrStaffLastSavedBy(String value) { this.HR_Staff_LastSavedBy = value; return this; } public Integer getItemNo() { return ItemNo; } public GL_TransactionCode1 setItemNo(Integer value) { this.ItemNo = value; return this; } public ArrayList getRowHash() { return RowHash; } public GL_TransactionCode1 setRowHash(ArrayList value) { this.RowHash = value; return this; } } public static class GL_TransactionCode2 { @Required() public String RecID = null; public String Name = null; @Required() public Date CreatedDateTime = null; @References(HR_Staff.class) @Required() public String HR_Staff_CreatedBy = null; @Required() public Date LastSavedDateTime = null; @References(HR_Staff.class) @Required() public String HR_Staff_LastSavedBy = null; @Required() public Integer ItemNo = null; @Required() public ArrayList RowHash = null; public String getRecID() { return RecID; } public GL_TransactionCode2 setRecID(String value) { this.RecID = value; return this; } public String getName() { return Name; } public GL_TransactionCode2 setName(String value) { this.Name = value; return this; } public Date getCreatedDateTime() { return CreatedDateTime; } public GL_TransactionCode2 setCreatedDateTime(Date value) { this.CreatedDateTime = value; return this; } public String getHrStaffCreatedBy() { return HR_Staff_CreatedBy; } public GL_TransactionCode2 setHrStaffCreatedBy(String value) { this.HR_Staff_CreatedBy = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public GL_TransactionCode2 setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public String getHrStaffLastSavedBy() { return HR_Staff_LastSavedBy; } public GL_TransactionCode2 setHrStaffLastSavedBy(String value) { this.HR_Staff_LastSavedBy = value; return this; } public Integer getItemNo() { return ItemNo; } public GL_TransactionCode2 setItemNo(Integer value) { this.ItemNo = value; return this; } public ArrayList getRowHash() { return RowHash; } public GL_TransactionCode2 setRowHash(ArrayList value) { this.RowHash = value; return this; } } public static class GL_TransactionCode3 { @Required() public String RecID = null; public String Name = null; @Required() public Date CreatedDateTime = null; @References(HR_Staff.class) @Required() public String HR_Staff_CreatedBy = null; @Required() public Date LastSavedDateTime = null; @References(HR_Staff.class) @Required() public String HR_Staff_LastSavedBy = null; @Required() public Integer ItemNo = null; @Required() public ArrayList RowHash = null; public String getRecID() { return RecID; } public GL_TransactionCode3 setRecID(String value) { this.RecID = value; return this; } public String getName() { return Name; } public GL_TransactionCode3 setName(String value) { this.Name = value; return this; } public Date getCreatedDateTime() { return CreatedDateTime; } public GL_TransactionCode3 setCreatedDateTime(Date value) { this.CreatedDateTime = value; return this; } public String getHrStaffCreatedBy() { return HR_Staff_CreatedBy; } public GL_TransactionCode3 setHrStaffCreatedBy(String value) { this.HR_Staff_CreatedBy = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public GL_TransactionCode3 setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public String getHrStaffLastSavedBy() { return HR_Staff_LastSavedBy; } public GL_TransactionCode3 setHrStaffLastSavedBy(String value) { this.HR_Staff_LastSavedBy = value; return this; } public Integer getItemNo() { return ItemNo; } public GL_TransactionCode3 setItemNo(Integer value) { this.ItemNo = value; return this; } public ArrayList getRowHash() { return RowHash; } public GL_TransactionCode3 setRowHash(ArrayList value) { this.RowHash = value; return this; } } public static class GL_Transactions { @Required() public String GLTransactionID = null; @References(GL_Sets.class) @Required() public String GLSetID = null; @References(GL_Ledger.class) @Required() public String GLLedgerID = null; public Boolean DebitCredit = null; public BigDecimal Amount = null; public String Ref = null; public String Remark = null; @Required() public Integer LineNum = null; @Required() public String TransCode1ID = null; @Required() public String TransCode2ID = null; @Required() public String TransCode3ID = null; @References(HR_Staff.class) public String StaffID = null; public Boolean Reconciled = null; public Boolean Cleared = null; public Date TransPostDateTime = null; public String JB_JobStages_RecID = null; public String getGlTransactionID() { return GLTransactionID; } public GL_Transactions setGlTransactionID(String value) { this.GLTransactionID = value; return this; } public String getGlSetID() { return GLSetID; } public GL_Transactions setGlSetID(String value) { this.GLSetID = value; return this; } public String getGlLedgerID() { return GLLedgerID; } public GL_Transactions setGlLedgerID(String value) { this.GLLedgerID = value; return this; } public Boolean isDebitCredit() { return DebitCredit; } public GL_Transactions setDebitCredit(Boolean value) { this.DebitCredit = value; return this; } public BigDecimal getAmount() { return Amount; } public GL_Transactions setAmount(BigDecimal value) { this.Amount = value; return this; } public String getRef() { return Ref; } public GL_Transactions setRef(String value) { this.Ref = value; return this; } public String getRemark() { return Remark; } public GL_Transactions setRemark(String value) { this.Remark = value; return this; } public Integer getLineNum() { return LineNum; } public GL_Transactions setLineNum(Integer value) { this.LineNum = value; return this; } public String getTransCode1ID() { return TransCode1ID; } public GL_Transactions setTransCode1ID(String value) { this.TransCode1ID = value; return this; } public String getTransCode2ID() { return TransCode2ID; } public GL_Transactions setTransCode2ID(String value) { this.TransCode2ID = value; return this; } public String getTransCode3ID() { return TransCode3ID; } public GL_Transactions setTransCode3ID(String value) { this.TransCode3ID = value; return this; } public String getStaffID() { return StaffID; } public GL_Transactions setStaffID(String value) { this.StaffID = value; return this; } public Boolean isReconciled() { return Reconciled; } public GL_Transactions setReconciled(Boolean value) { this.Reconciled = value; return this; } public Boolean isCleared() { return Cleared; } public GL_Transactions setCleared(Boolean value) { this.Cleared = value; return this; } public Date getTransPostDateTime() { return TransPostDateTime; } public GL_Transactions setTransPostDateTime(Date value) { this.TransPostDateTime = value; return this; } public String getJbJobStagesRecID() { return JB_JobStages_RecID; } public GL_Transactions setJbJobStagesRecID(String value) { this.JB_JobStages_RecID = value; return this; } } public static class HR_APIKey { @Required() public UUID RecID = null; public String Name = null; @References(HR_Staff.class) @Required() public String HR_Staff_StaffID = null; @Required() public Date CreatedDateTime = null; public Date ExpiryDateTime = null; public Date CancelledDateTime = null; @Required() public Date LastSavedDateTime = null; @Required() public String KeyValue = null; @Required() public Boolean IsEnabled = null; @Required() public Integer ItemNo = null; @Required() public ArrayList RowHash = null; public UUID getRecID() { return RecID; } public HR_APIKey setRecID(UUID value) { this.RecID = value; return this; } public String getName() { return Name; } public HR_APIKey setName(String value) { this.Name = value; return this; } public String getHrStaffStaffID() { return HR_Staff_StaffID; } public HR_APIKey setHrStaffStaffID(String value) { this.HR_Staff_StaffID = value; return this; } public Date getCreatedDateTime() { return CreatedDateTime; } public HR_APIKey setCreatedDateTime(Date value) { this.CreatedDateTime = value; return this; } public Date getExpiryDateTime() { return ExpiryDateTime; } public HR_APIKey setExpiryDateTime(Date value) { this.ExpiryDateTime = value; return this; } public Date getCancelledDateTime() { return CancelledDateTime; } public HR_APIKey setCancelledDateTime(Date value) { this.CancelledDateTime = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public HR_APIKey setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public String getKeyValue() { return KeyValue; } public HR_APIKey setKeyValue(String value) { this.KeyValue = value; return this; } public Boolean getIsEnabled() { return IsEnabled; } public HR_APIKey setIsEnabled(Boolean value) { this.IsEnabled = value; return this; } public Integer getItemNo() { return ItemNo; } public HR_APIKey setItemNo(Integer value) { this.ItemNo = value; return this; } public ArrayList getRowHash() { return RowHash; } public HR_APIKey setRowHash(ArrayList value) { this.RowHash = value; return this; } } public static class HR_CustomSetting { @Required() public String SettingID = null; @Required() public Date LastSavedDateTime = null; public String SettingDescription = null; public String SettingName = null; public BigDecimal DisplayOrder = null; public Short CellType = null; public String ScriptFormatCell = null; public String ScriptButtonClicked = null; public String ScriptReadData = null; @References(SY_Plugin.class) @Required() public UUID SY_Plugin_RecID = null; public String getSettingID() { return SettingID; } public HR_CustomSetting setSettingID(String value) { this.SettingID = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public HR_CustomSetting setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public String getSettingDescription() { return SettingDescription; } public HR_CustomSetting setSettingDescription(String value) { this.SettingDescription = value; return this; } public String getSettingName() { return SettingName; } public HR_CustomSetting setSettingName(String value) { this.SettingName = value; return this; } public BigDecimal getDisplayOrder() { return DisplayOrder; } public HR_CustomSetting setDisplayOrder(BigDecimal value) { this.DisplayOrder = value; return this; } public Short getCellType() { return CellType; } public HR_CustomSetting setCellType(Short value) { this.CellType = value; return this; } public String getScriptFormatCell() { return ScriptFormatCell; } public HR_CustomSetting setScriptFormatCell(String value) { this.ScriptFormatCell = value; return this; } public String getScriptButtonClicked() { return ScriptButtonClicked; } public HR_CustomSetting setScriptButtonClicked(String value) { this.ScriptButtonClicked = value; return this; } public String getScriptReadData() { return ScriptReadData; } public HR_CustomSetting setScriptReadData(String value) { this.ScriptReadData = value; return this; } public UUID getSyPluginRecID() { return SY_Plugin_RecID; } public HR_CustomSetting setSyPluginRecID(UUID value) { this.SY_Plugin_RecID = value; return this; } } public static class HR_CustomSettingValues { @Required() public String SettingValueID = null; @References(HR_CustomSetting.class) public String SettingID = null; @References(HR_Staff.class) @Required() public String StaffID = null; public String Contents = null; @Required() public Date LastSavedDateTime = null; public String getSettingValueID() { return SettingValueID; } public HR_CustomSettingValues setSettingValueID(String value) { this.SettingValueID = value; return this; } public String getSettingID() { return SettingID; } public HR_CustomSettingValues setSettingID(String value) { this.SettingID = value; return this; } public String getStaffID() { return StaffID; } public HR_CustomSettingValues setStaffID(String value) { this.StaffID = value; return this; } public String getContents() { return Contents; } public HR_CustomSettingValues setContents(String value) { this.Contents = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public HR_CustomSettingValues setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } } public static class HR_DepartmentCategories { @Required() public String RecID = null; @References(HR_Departments.class) @Required() public String HR_Departments_RecID = null; @Required() public String Name = null; @Required() public ArrayList RowHash = null; @Required() public Boolean IsEnabled = null; @Required() public Integer ItemNo = null; public String getRecID() { return RecID; } public HR_DepartmentCategories setRecID(String value) { this.RecID = value; return this; } public String getHrDepartmentsRecID() { return HR_Departments_RecID; } public HR_DepartmentCategories setHrDepartmentsRecID(String value) { this.HR_Departments_RecID = value; return this; } public String getName() { return Name; } public HR_DepartmentCategories setName(String value) { this.Name = value; return this; } public ArrayList getRowHash() { return RowHash; } public HR_DepartmentCategories setRowHash(ArrayList value) { this.RowHash = value; return this; } public Boolean getIsEnabled() { return IsEnabled; } public HR_DepartmentCategories setIsEnabled(Boolean value) { this.IsEnabled = value; return this; } public Integer getItemNo() { return ItemNo; } public HR_DepartmentCategories setItemNo(Integer value) { this.ItemNo = value; return this; } } public static class HR_Departments { @Required() public String RecID = null; @Required() public String Name = null; @References(HR_Staff.class) @Required() public String Manager_HR_Staff_RecID = null; @Required() public ArrayList RowHash = null; @Required() public Boolean IsEnabled = null; @Required() public Boolean IsDefault = null; public String getRecID() { return RecID; } public HR_Departments setRecID(String value) { this.RecID = value; return this; } public String getName() { return Name; } public HR_Departments setName(String value) { this.Name = value; return this; } public String getManagerHrStaffRecID() { return Manager_HR_Staff_RecID; } public HR_Departments setManagerHrStaffRecID(String value) { this.Manager_HR_Staff_RecID = value; return this; } public ArrayList getRowHash() { return RowHash; } public HR_Departments setRowHash(ArrayList value) { this.RowHash = value; return this; } public Boolean getIsEnabled() { return IsEnabled; } public HR_Departments setIsEnabled(Boolean value) { this.IsEnabled = value; return this; } public Boolean getIsDefault() { return IsDefault; } public HR_Departments setIsDefault(Boolean value) { this.IsDefault = value; return this; } } public static class HR_Documents { @Required() public String RecID = null; @Required() public String StaffID = null; @Required() public String DocumentTypeID = null; public Date LastSavedDateTime = null; @Required() public String LastSavedByStaffID = null; public ArrayList FileBinary = null; public String Description = null; public String PhysicalFileName = null; @Required() public Integer ItemNo = null; public String getRecID() { return RecID; } public HR_Documents setRecID(String value) { this.RecID = value; return this; } public String getStaffID() { return StaffID; } public HR_Documents setStaffID(String value) { this.StaffID = value; return this; } public String getDocumentTypeID() { return DocumentTypeID; } public HR_Documents setDocumentTypeID(String value) { this.DocumentTypeID = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public HR_Documents setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public String getLastSavedByStaffID() { return LastSavedByStaffID; } public HR_Documents setLastSavedByStaffID(String value) { this.LastSavedByStaffID = value; return this; } public ArrayList getFileBinary() { return FileBinary; } public HR_Documents setFileBinary(ArrayList value) { this.FileBinary = value; return this; } public String getDescription() { return Description; } public HR_Documents setDescription(String value) { this.Description = value; return this; } public String getPhysicalFileName() { return PhysicalFileName; } public HR_Documents setPhysicalFileName(String value) { this.PhysicalFileName = value; return this; } public Integer getItemNo() { return ItemNo; } public HR_Documents setItemNo(Integer value) { this.ItemNo = value; return this; } } public static class HR_Notes { @Required() public String RecID = null; @Required() public String StaffID = null; @Required() public String NoteTypeID = null; @Required() public Date LastSavedDateTime = null; @Required() public String LastSavedByStaffID = null; public String NoteText = null; @Required() public Integer ItemNo = null; public String getRecID() { return RecID; } public HR_Notes setRecID(String value) { this.RecID = value; return this; } public String getStaffID() { return StaffID; } public HR_Notes setStaffID(String value) { this.StaffID = value; return this; } public String getNoteTypeID() { return NoteTypeID; } public HR_Notes setNoteTypeID(String value) { this.NoteTypeID = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public HR_Notes setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public String getLastSavedByStaffID() { return LastSavedByStaffID; } public HR_Notes setLastSavedByStaffID(String value) { this.LastSavedByStaffID = value; return this; } public String getNoteText() { return NoteText; } public HR_Notes setNoteText(String value) { this.NoteText = value; return this; } public Integer getItemNo() { return ItemNo; } public HR_Notes setItemNo(Integer value) { this.ItemNo = value; return this; } } public static class HR_SkillRatings { @Required() public String RecID = null; @Required() public String Name = null; public String Description = null; @Required() public Integer ItemNo = null; public Boolean IsEnabled = null; @Required() public ArrayList RowHash = null; public Boolean IsDefault = null; public String getRecID() { return RecID; } public HR_SkillRatings setRecID(String value) { this.RecID = value; return this; } public String getName() { return Name; } public HR_SkillRatings setName(String value) { this.Name = value; return this; } public String getDescription() { return Description; } public HR_SkillRatings setDescription(String value) { this.Description = value; return this; } public Integer getItemNo() { return ItemNo; } public HR_SkillRatings setItemNo(Integer value) { this.ItemNo = value; return this; } public Boolean getIsEnabled() { return IsEnabled; } public HR_SkillRatings setIsEnabled(Boolean value) { this.IsEnabled = value; return this; } public ArrayList getRowHash() { return RowHash; } public HR_SkillRatings setRowHash(ArrayList value) { this.RowHash = value; return this; } public Boolean getIsDefault() { return IsDefault; } public HR_SkillRatings setIsDefault(Boolean value) { this.IsDefault = value; return this; } } public static class HR_Skills { @Required() public String RecID = null; public String Name = null; public String Description = null; public Boolean ExamRequired = null; @References(HR_Departments.class) @Required() public String HR_Departments_RecID = null; public Boolean IsEnabled = null; public Integer ItemNo = null; @Required() public ArrayList RowHash = null; public String getRecID() { return RecID; } public HR_Skills setRecID(String value) { this.RecID = value; return this; } public String getName() { return Name; } public HR_Skills setName(String value) { this.Name = value; return this; } public String getDescription() { return Description; } public HR_Skills setDescription(String value) { this.Description = value; return this; } public Boolean isExamRequired() { return ExamRequired; } public HR_Skills setExamRequired(Boolean value) { this.ExamRequired = value; return this; } public String getHrDepartmentsRecID() { return HR_Departments_RecID; } public HR_Skills setHrDepartmentsRecID(String value) { this.HR_Departments_RecID = value; return this; } public Boolean getIsEnabled() { return IsEnabled; } public HR_Skills setIsEnabled(Boolean value) { this.IsEnabled = value; return this; } public Integer getItemNo() { return ItemNo; } public HR_Skills setItemNo(Integer value) { this.ItemNo = value; return this; } public ArrayList getRowHash() { return RowHash; } public HR_Skills setRowHash(ArrayList value) { this.RowHash = value; return this; } } public static class HR_Staff { @Required() public String StaffID = null; public Date LastSavedDateTime = null; public String Title = null; public String FName = null; public String SName = null; public String Position1 = null; public String Position2 = null; public String Password = null; public Boolean IsActive = null; public String EmailAddress = null; public String EmailDisplayName = null; public String SMTPUsername = null; public String SMTPPassword = null; @Required() public String Username = null; public Boolean MustChangePasswordNextLogin = null; public Date PasswordLastChangedDateTime = null; public String SQLLogin = null; public String SQLPassword = null; public String ReportSQLLogin = null; public String ReportSQLPassword = null; public ArrayList Picture = null; @References(HR_Departments.class) public String HR_Departments_RecID = null; public String Extension = null; public String Mobile = null; public Boolean UsePrepaidLabourPacks = null; @Required() public Short AuthenticationModes = null; public String WindowsDomainAccount = null; public Date SMTPPasswordLastChangedDateTime = null; @References(SY_Menu.class) public String SY_Menu_RecID = null; @References(SY_PrintGroup.class) @Required() public String SY_PrintGroup_RecID = null; @Required() public Date SQLLoginLastSavedDateTime = null; @Required() public Date ReportsLoginLastSavedDateTime = null; @Required() public Boolean IsEnabled = null; public String getStaffID() { return StaffID; } public HR_Staff setStaffID(String value) { this.StaffID = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public HR_Staff setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public String getTitle() { return Title; } public HR_Staff setTitle(String value) { this.Title = value; return this; } public String getFName() { return FName; } public HR_Staff setFName(String value) { this.FName = value; return this; } public String getSName() { return SName; } public HR_Staff setSName(String value) { this.SName = value; return this; } public String getPosition1() { return Position1; } public HR_Staff setPosition1(String value) { this.Position1 = value; return this; } public String getPosition2() { return Position2; } public HR_Staff setPosition2(String value) { this.Position2 = value; return this; } public String getPassword() { return Password; } public HR_Staff setPassword(String value) { this.Password = value; return this; } public Boolean getIsActive() { return IsActive; } public HR_Staff setIsActive(Boolean value) { this.IsActive = value; return this; } public String getEmailAddress() { return EmailAddress; } public HR_Staff setEmailAddress(String value) { this.EmailAddress = value; return this; } public String getEmailDisplayName() { return EmailDisplayName; } public HR_Staff setEmailDisplayName(String value) { this.EmailDisplayName = value; return this; } public String getSmtpUsername() { return SMTPUsername; } public HR_Staff setSmtpUsername(String value) { this.SMTPUsername = value; return this; } public String getSmtpPassword() { return SMTPPassword; } public HR_Staff setSmtpPassword(String value) { this.SMTPPassword = value; return this; } public String getUsername() { return Username; } public HR_Staff setUsername(String value) { this.Username = value; return this; } public Boolean isMustChangePasswordNextLogin() { return MustChangePasswordNextLogin; } public HR_Staff setMustChangePasswordNextLogin(Boolean value) { this.MustChangePasswordNextLogin = value; return this; } public Date getPasswordLastChangedDateTime() { return PasswordLastChangedDateTime; } public HR_Staff setPasswordLastChangedDateTime(Date value) { this.PasswordLastChangedDateTime = value; return this; } public String getSqlLogin() { return SQLLogin; } public HR_Staff setSqlLogin(String value) { this.SQLLogin = value; return this; } public String getSqlPassword() { return SQLPassword; } public HR_Staff setSqlPassword(String value) { this.SQLPassword = value; return this; } public String getReportSQLLogin() { return ReportSQLLogin; } public HR_Staff setReportSQLLogin(String value) { this.ReportSQLLogin = value; return this; } public String getReportSQLPassword() { return ReportSQLPassword; } public HR_Staff setReportSQLPassword(String value) { this.ReportSQLPassword = value; return this; } public ArrayList getPicture() { return Picture; } public HR_Staff setPicture(ArrayList value) { this.Picture = value; return this; } public String getHrDepartmentsRecID() { return HR_Departments_RecID; } public HR_Staff setHrDepartmentsRecID(String value) { this.HR_Departments_RecID = value; return this; } public String getExtension() { return Extension; } public HR_Staff setExtension(String value) { this.Extension = value; return this; } public String getMobile() { return Mobile; } public HR_Staff setMobile(String value) { this.Mobile = value; return this; } public Boolean isUsePrepaidLabourPacks() { return UsePrepaidLabourPacks; } public HR_Staff setUsePrepaidLabourPacks(Boolean value) { this.UsePrepaidLabourPacks = value; return this; } public Short getAuthenticationModes() { return AuthenticationModes; } public HR_Staff setAuthenticationModes(Short value) { this.AuthenticationModes = value; return this; } public String getWindowsDomainAccount() { return WindowsDomainAccount; } public HR_Staff setWindowsDomainAccount(String value) { this.WindowsDomainAccount = value; return this; } public Date getSmtpPasswordLastChangedDateTime() { return SMTPPasswordLastChangedDateTime; } public HR_Staff setSmtpPasswordLastChangedDateTime(Date value) { this.SMTPPasswordLastChangedDateTime = value; return this; } public String getSyMenuRecID() { return SY_Menu_RecID; } public HR_Staff setSyMenuRecID(String value) { this.SY_Menu_RecID = value; return this; } public String getSyPrintGroupRecID() { return SY_PrintGroup_RecID; } public HR_Staff setSyPrintGroupRecID(String value) { this.SY_PrintGroup_RecID = value; return this; } public Date getSqlLoginLastSavedDateTime() { return SQLLoginLastSavedDateTime; } public HR_Staff setSqlLoginLastSavedDateTime(Date value) { this.SQLLoginLastSavedDateTime = value; return this; } public Date getReportsLoginLastSavedDateTime() { return ReportsLoginLastSavedDateTime; } public HR_Staff setReportsLoginLastSavedDateTime(Date value) { this.ReportsLoginLastSavedDateTime = value; return this; } public Boolean getIsEnabled() { return IsEnabled; } public HR_Staff setIsEnabled(Boolean value) { this.IsEnabled = value; return this; } } public static class HR_StaffSkills { @Required() public String RecID = null; @References(HR_Staff.class) @Required() public String HR_Staff_RecID = null; @References(HR_Skills.class) @Required() public String HR_Skills_RecID = null; @References(HR_SkillRatings.class) @Required() public String HR_SkillRatings_RecID = null; @Required() public Date QualificationDate = null; public String Notes = null; @Required() public Integer ItemNo = null; @Required() public ArrayList RowHash = null; public String getRecID() { return RecID; } public HR_StaffSkills setRecID(String value) { this.RecID = value; return this; } public String getHrStaffRecID() { return HR_Staff_RecID; } public HR_StaffSkills setHrStaffRecID(String value) { this.HR_Staff_RecID = value; return this; } public String getHrSkillsRecID() { return HR_Skills_RecID; } public HR_StaffSkills setHrSkillsRecID(String value) { this.HR_Skills_RecID = value; return this; } public String getHrSkillRatingsRecID() { return HR_SkillRatings_RecID; } public HR_StaffSkills setHrSkillRatingsRecID(String value) { this.HR_SkillRatings_RecID = value; return this; } public Date getQualificationDate() { return QualificationDate; } public HR_StaffSkills setQualificationDate(Date value) { this.QualificationDate = value; return this; } public String getNotes() { return Notes; } public HR_StaffSkills setNotes(String value) { this.Notes = value; return this; } public Integer getItemNo() { return ItemNo; } public HR_StaffSkills setItemNo(Integer value) { this.ItemNo = value; return this; } public ArrayList getRowHash() { return RowHash; } public HR_StaffSkills setRowHash(ArrayList value) { this.RowHash = value; return this; } } public static class HR_StaffUserSettings { @References(HR_Staff.class) @Required() public String HR_Staff_StaffID = null; @Required() public Boolean PreviewJournal = null; @References(IN_Logical.class) public String LastLogicalWarehouse_RecID = null; @Required() public Short StockTakeOrder = null; @Required() public Short EnforceMinGP = null; @Required() public Integer SearchAutoStart = null; @Required() public Boolean SearchReplaceText = null; @Required() public String SearchFontName = null; @Required() public BigDecimal SearchFontSize = null; @Required() public Boolean CreditorsPrintToScreen = null; @Required() public Boolean IgnoreBackOrderAllocations = null; @Required() public Boolean InvoicingPrintToScreen = null; @Required() public Boolean AllowModificationOfPrintedUnprocessedInvoices = null; @Required() public String IncrementInvoiceNumbers = null; @Required() public Boolean ParticipateInCustomerExperienceImprovementProgram = null; public String getHrStaffStaffID() { return HR_Staff_StaffID; } public HR_StaffUserSettings setHrStaffStaffID(String value) { this.HR_Staff_StaffID = value; return this; } public Boolean isPreviewJournal() { return PreviewJournal; } public HR_StaffUserSettings setPreviewJournal(Boolean value) { this.PreviewJournal = value; return this; } public String getLastLogicalWarehouseRecID() { return LastLogicalWarehouse_RecID; } public HR_StaffUserSettings setLastLogicalWarehouseRecID(String value) { this.LastLogicalWarehouse_RecID = value; return this; } public Short getStockTakeOrder() { return StockTakeOrder; } public HR_StaffUserSettings setStockTakeOrder(Short value) { this.StockTakeOrder = value; return this; } public Short getEnforceMinGP() { return EnforceMinGP; } public HR_StaffUserSettings setEnforceMinGP(Short value) { this.EnforceMinGP = value; return this; } public Integer getSearchAutoStart() { return SearchAutoStart; } public HR_StaffUserSettings setSearchAutoStart(Integer value) { this.SearchAutoStart = value; return this; } public Boolean isSearchReplaceText() { return SearchReplaceText; } public HR_StaffUserSettings setSearchReplaceText(Boolean value) { this.SearchReplaceText = value; return this; } public String getSearchFontName() { return SearchFontName; } public HR_StaffUserSettings setSearchFontName(String value) { this.SearchFontName = value; return this; } public BigDecimal getSearchFontSize() { return SearchFontSize; } public HR_StaffUserSettings setSearchFontSize(BigDecimal value) { this.SearchFontSize = value; return this; } public Boolean isCreditorsPrintToScreen() { return CreditorsPrintToScreen; } public HR_StaffUserSettings setCreditorsPrintToScreen(Boolean value) { this.CreditorsPrintToScreen = value; return this; } public Boolean isIgnoreBackOrderAllocations() { return IgnoreBackOrderAllocations; } public HR_StaffUserSettings setIgnoreBackOrderAllocations(Boolean value) { this.IgnoreBackOrderAllocations = value; return this; } public Boolean isInvoicingPrintToScreen() { return InvoicingPrintToScreen; } public HR_StaffUserSettings setInvoicingPrintToScreen(Boolean value) { this.InvoicingPrintToScreen = value; return this; } public Boolean isAllowModificationOfPrintedUnprocessedInvoices() { return AllowModificationOfPrintedUnprocessedInvoices; } public HR_StaffUserSettings setAllowModificationOfPrintedUnprocessedInvoices(Boolean value) { this.AllowModificationOfPrintedUnprocessedInvoices = value; return this; } public String getIncrementInvoiceNumbers() { return IncrementInvoiceNumbers; } public HR_StaffUserSettings setIncrementInvoiceNumbers(String value) { this.IncrementInvoiceNumbers = value; return this; } public Boolean isParticipateInCustomerExperienceImprovementProgram() { return ParticipateInCustomerExperienceImprovementProgram; } public HR_StaffUserSettings setParticipateInCustomerExperienceImprovementProgram(Boolean value) { this.ParticipateInCustomerExperienceImprovementProgram = value; return this; } } public static class HR_StartupItems { @Required() public String RecID = null; @References(HR_Staff.class) @Required() public String HR_Staff_RecID = null; @References(SY_Forms.class) @Required() public String SY_Forms_ClassName = null; @Required() public Integer ItemNo = null; @Required() public ArrayList RowHash = null; public String getRecID() { return RecID; } public HR_StartupItems setRecID(String value) { this.RecID = value; return this; } public String getHrStaffRecID() { return HR_Staff_RecID; } public HR_StartupItems setHrStaffRecID(String value) { this.HR_Staff_RecID = value; return this; } public String getSyFormsClassName() { return SY_Forms_ClassName; } public HR_StartupItems setSyFormsClassName(String value) { this.SY_Forms_ClassName = value; return this; } public Integer getItemNo() { return ItemNo; } public HR_StartupItems setItemNo(Integer value) { this.ItemNo = value; return this; } public ArrayList getRowHash() { return RowHash; } public HR_StartupItems setRowHash(ArrayList value) { this.RowHash = value; return this; } } public static class IM_CSV_Staging { @Required() public String RecID = null; @Required() public String BatchID = null; @Required() public Integer LineNumber = null; public String Reference = null; @Required() public Date DateCreated = null; @Required() public String ImportStatus = null; public String ImportMessage = null; public String Column1 = null; public String Column2 = null; public String Column3 = null; public String Column4 = null; public String Column5 = null; public String Column6 = null; public String Column7 = null; public String Column8 = null; public String Column9 = null; public String Column10 = null; public String Column11 = null; public String Column12 = null; public String Column13 = null; public String Column14 = null; public String Column15 = null; public String Column16 = null; public String Column17 = null; public String Column18 = null; public String Column19 = null; public String Column20 = null; public String Column21 = null; public String Column22 = null; public String Column23 = null; public String Column24 = null; public String Column25 = null; public String Column26 = null; public String Column27 = null; public String Column28 = null; public String Column29 = null; public String Column30 = null; public String Column31 = null; public String Column32 = null; public String Column33 = null; public String Column34 = null; public String Column35 = null; public String Column36 = null; public String Column37 = null; public String Column38 = null; public String Column39 = null; public String Column40 = null; public String Column41 = null; public String Column42 = null; public String Column43 = null; public String Column44 = null; public String Column45 = null; public String Column46 = null; public String Column47 = null; public String Column48 = null; public String Column49 = null; public String Column50 = null; public String getRecID() { return RecID; } public IM_CSV_Staging setRecID(String value) { this.RecID = value; return this; } public String getBatchID() { return BatchID; } public IM_CSV_Staging setBatchID(String value) { this.BatchID = value; return this; } public Integer getLineNumber() { return LineNumber; } public IM_CSV_Staging setLineNumber(Integer value) { this.LineNumber = value; return this; } public String getReference() { return Reference; } public IM_CSV_Staging setReference(String value) { this.Reference = value; return this; } public Date getDateCreated() { return DateCreated; } public IM_CSV_Staging setDateCreated(Date value) { this.DateCreated = value; return this; } public String getImportStatus() { return ImportStatus; } public IM_CSV_Staging setImportStatus(String value) { this.ImportStatus = value; return this; } public String getImportMessage() { return ImportMessage; } public IM_CSV_Staging setImportMessage(String value) { this.ImportMessage = value; return this; } public String getColumn1() { return Column1; } public IM_CSV_Staging setColumn1(String value) { this.Column1 = value; return this; } public String getColumn2() { return Column2; } public IM_CSV_Staging setColumn2(String value) { this.Column2 = value; return this; } public String getColumn3() { return Column3; } public IM_CSV_Staging setColumn3(String value) { this.Column3 = value; return this; } public String getColumn4() { return Column4; } public IM_CSV_Staging setColumn4(String value) { this.Column4 = value; return this; } public String getColumn5() { return Column5; } public IM_CSV_Staging setColumn5(String value) { this.Column5 = value; return this; } public String getColumn6() { return Column6; } public IM_CSV_Staging setColumn6(String value) { this.Column6 = value; return this; } public String getColumn7() { return Column7; } public IM_CSV_Staging setColumn7(String value) { this.Column7 = value; return this; } public String getColumn8() { return Column8; } public IM_CSV_Staging setColumn8(String value) { this.Column8 = value; return this; } public String getColumn9() { return Column9; } public IM_CSV_Staging setColumn9(String value) { this.Column9 = value; return this; } public String getColumn10() { return Column10; } public IM_CSV_Staging setColumn10(String value) { this.Column10 = value; return this; } public String getColumn11() { return Column11; } public IM_CSV_Staging setColumn11(String value) { this.Column11 = value; return this; } public String getColumn12() { return Column12; } public IM_CSV_Staging setColumn12(String value) { this.Column12 = value; return this; } public String getColumn13() { return Column13; } public IM_CSV_Staging setColumn13(String value) { this.Column13 = value; return this; } public String getColumn14() { return Column14; } public IM_CSV_Staging setColumn14(String value) { this.Column14 = value; return this; } public String getColumn15() { return Column15; } public IM_CSV_Staging setColumn15(String value) { this.Column15 = value; return this; } public String getColumn16() { return Column16; } public IM_CSV_Staging setColumn16(String value) { this.Column16 = value; return this; } public String getColumn17() { return Column17; } public IM_CSV_Staging setColumn17(String value) { this.Column17 = value; return this; } public String getColumn18() { return Column18; } public IM_CSV_Staging setColumn18(String value) { this.Column18 = value; return this; } public String getColumn19() { return Column19; } public IM_CSV_Staging setColumn19(String value) { this.Column19 = value; return this; } public String getColumn20() { return Column20; } public IM_CSV_Staging setColumn20(String value) { this.Column20 = value; return this; } public String getColumn21() { return Column21; } public IM_CSV_Staging setColumn21(String value) { this.Column21 = value; return this; } public String getColumn22() { return Column22; } public IM_CSV_Staging setColumn22(String value) { this.Column22 = value; return this; } public String getColumn23() { return Column23; } public IM_CSV_Staging setColumn23(String value) { this.Column23 = value; return this; } public String getColumn24() { return Column24; } public IM_CSV_Staging setColumn24(String value) { this.Column24 = value; return this; } public String getColumn25() { return Column25; } public IM_CSV_Staging setColumn25(String value) { this.Column25 = value; return this; } public String getColumn26() { return Column26; } public IM_CSV_Staging setColumn26(String value) { this.Column26 = value; return this; } public String getColumn27() { return Column27; } public IM_CSV_Staging setColumn27(String value) { this.Column27 = value; return this; } public String getColumn28() { return Column28; } public IM_CSV_Staging setColumn28(String value) { this.Column28 = value; return this; } public String getColumn29() { return Column29; } public IM_CSV_Staging setColumn29(String value) { this.Column29 = value; return this; } public String getColumn30() { return Column30; } public IM_CSV_Staging setColumn30(String value) { this.Column30 = value; return this; } public String getColumn31() { return Column31; } public IM_CSV_Staging setColumn31(String value) { this.Column31 = value; return this; } public String getColumn32() { return Column32; } public IM_CSV_Staging setColumn32(String value) { this.Column32 = value; return this; } public String getColumn33() { return Column33; } public IM_CSV_Staging setColumn33(String value) { this.Column33 = value; return this; } public String getColumn34() { return Column34; } public IM_CSV_Staging setColumn34(String value) { this.Column34 = value; return this; } public String getColumn35() { return Column35; } public IM_CSV_Staging setColumn35(String value) { this.Column35 = value; return this; } public String getColumn36() { return Column36; } public IM_CSV_Staging setColumn36(String value) { this.Column36 = value; return this; } public String getColumn37() { return Column37; } public IM_CSV_Staging setColumn37(String value) { this.Column37 = value; return this; } public String getColumn38() { return Column38; } public IM_CSV_Staging setColumn38(String value) { this.Column38 = value; return this; } public String getColumn39() { return Column39; } public IM_CSV_Staging setColumn39(String value) { this.Column39 = value; return this; } public String getColumn40() { return Column40; } public IM_CSV_Staging setColumn40(String value) { this.Column40 = value; return this; } public String getColumn41() { return Column41; } public IM_CSV_Staging setColumn41(String value) { this.Column41 = value; return this; } public String getColumn42() { return Column42; } public IM_CSV_Staging setColumn42(String value) { this.Column42 = value; return this; } public String getColumn43() { return Column43; } public IM_CSV_Staging setColumn43(String value) { this.Column43 = value; return this; } public String getColumn44() { return Column44; } public IM_CSV_Staging setColumn44(String value) { this.Column44 = value; return this; } public String getColumn45() { return Column45; } public IM_CSV_Staging setColumn45(String value) { this.Column45 = value; return this; } public String getColumn46() { return Column46; } public IM_CSV_Staging setColumn46(String value) { this.Column46 = value; return this; } public String getColumn47() { return Column47; } public IM_CSV_Staging setColumn47(String value) { this.Column47 = value; return this; } public String getColumn48() { return Column48; } public IM_CSV_Staging setColumn48(String value) { this.Column48 = value; return this; } public String getColumn49() { return Column49; } public IM_CSV_Staging setColumn49(String value) { this.Column49 = value; return this; } public String getColumn50() { return Column50; } public IM_CSV_Staging setColumn50(String value) { this.Column50 = value; return this; } } public static class IM_ImportQueue { @Required() public String ImportQueueID = null; public String OriginalXML = null; public String TransformedXML = null; @Required() public Short Status = null; @Required() public Date AddedToQueueDateTime = null; @Required() public String AddedToQueueByStaffID = null; public Date LastSavedDateTime = null; @Required() public String LastSavedByStaffID = null; public String ImportErrorMessage = null; @Required() public String ImportBatchID = null; @Required() public String BatchNo = null; public Integer ItemNo = null; public String ImportSuccessMessage = null; public String getImportQueueID() { return ImportQueueID; } public IM_ImportQueue setImportQueueID(String value) { this.ImportQueueID = value; return this; } public String getOriginalXML() { return OriginalXML; } public IM_ImportQueue setOriginalXML(String value) { this.OriginalXML = value; return this; } public String getTransformedXML() { return TransformedXML; } public IM_ImportQueue setTransformedXML(String value) { this.TransformedXML = value; return this; } public Short getStatus() { return Status; } public IM_ImportQueue setStatus(Short value) { this.Status = value; return this; } public Date getAddedToQueueDateTime() { return AddedToQueueDateTime; } public IM_ImportQueue setAddedToQueueDateTime(Date value) { this.AddedToQueueDateTime = value; return this; } public String getAddedToQueueByStaffID() { return AddedToQueueByStaffID; } public IM_ImportQueue setAddedToQueueByStaffID(String value) { this.AddedToQueueByStaffID = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public IM_ImportQueue setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public String getLastSavedByStaffID() { return LastSavedByStaffID; } public IM_ImportQueue setLastSavedByStaffID(String value) { this.LastSavedByStaffID = value; return this; } public String getImportErrorMessage() { return ImportErrorMessage; } public IM_ImportQueue setImportErrorMessage(String value) { this.ImportErrorMessage = value; return this; } public String getImportBatchID() { return ImportBatchID; } public IM_ImportQueue setImportBatchID(String value) { this.ImportBatchID = value; return this; } public String getBatchNo() { return BatchNo; } public IM_ImportQueue setBatchNo(String value) { this.BatchNo = value; return this; } public Integer getItemNo() { return ItemNo; } public IM_ImportQueue setItemNo(Integer value) { this.ItemNo = value; return this; } public String getImportSuccessMessage() { return ImportSuccessMessage; } public IM_ImportQueue setImportSuccessMessage(String value) { this.ImportSuccessMessage = value; return this; } } public static class IN_Alternate { @Required() public String LinkID = null; public String InventoryID = null; public String LinkedInventoryID = null; public String Notes = null; public String getLinkID() { return LinkID; } public IN_Alternate setLinkID(String value) { this.LinkID = value; return this; } public String getInventoryID() { return InventoryID; } public IN_Alternate setInventoryID(String value) { this.InventoryID = value; return this; } public String getLinkedInventoryID() { return LinkedInventoryID; } public IN_Alternate setLinkedInventoryID(String value) { this.LinkedInventoryID = value; return this; } public String getNotes() { return Notes; } public IN_Alternate setNotes(String value) { this.Notes = value; return this; } } public static class IN_Assembly { @Required() public String INAssemblyID = null; @Required() public Date LastSavedDateTime = null; @Required() public String InventoryID = null; @Required() public String AssemblyNo = null; @Required() public Date AssemblyInitDate = null; @Required() public Date AssemblyLastDate = null; @Required() public BigDecimal QtyRequired = null; @Required() public Short AssemblyType = null; @Required() public Short Status = null; @Required() public Short CurrentHistoryNo = null; @Required() public String IN_LogicalID = null; public String PartNo = null; public String Description = null; @Required() public BigDecimal AssemblyTotal = null; @Required() public Boolean UpdateSell = null; @Required() public Short SellPriceMode = null; @Required() public BigDecimal SellPriceAmount = null; @Required() public BigDecimal NewPrice = null; @Required() public BigDecimal CalcSell = null; public String getInAssemblyID() { return INAssemblyID; } public IN_Assembly setInAssemblyID(String value) { this.INAssemblyID = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public IN_Assembly setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public String getInventoryID() { return InventoryID; } public IN_Assembly setInventoryID(String value) { this.InventoryID = value; return this; } public String getAssemblyNo() { return AssemblyNo; } public IN_Assembly setAssemblyNo(String value) { this.AssemblyNo = value; return this; } public Date getAssemblyInitDate() { return AssemblyInitDate; } public IN_Assembly setAssemblyInitDate(Date value) { this.AssemblyInitDate = value; return this; } public Date getAssemblyLastDate() { return AssemblyLastDate; } public IN_Assembly setAssemblyLastDate(Date value) { this.AssemblyLastDate = value; return this; } public BigDecimal getQtyRequired() { return QtyRequired; } public IN_Assembly setQtyRequired(BigDecimal value) { this.QtyRequired = value; return this; } public Short getAssemblyType() { return AssemblyType; } public IN_Assembly setAssemblyType(Short value) { this.AssemblyType = value; return this; } public Short getStatus() { return Status; } public IN_Assembly setStatus(Short value) { this.Status = value; return this; } public Short getCurrentHistoryNo() { return CurrentHistoryNo; } public IN_Assembly setCurrentHistoryNo(Short value) { this.CurrentHistoryNo = value; return this; } public String getInLogicalID() { return IN_LogicalID; } public IN_Assembly setInLogicalID(String value) { this.IN_LogicalID = value; return this; } public String getPartNo() { return PartNo; } public IN_Assembly setPartNo(String value) { this.PartNo = value; return this; } public String getDescription() { return Description; } public IN_Assembly setDescription(String value) { this.Description = value; return this; } public BigDecimal getAssemblyTotal() { return AssemblyTotal; } public IN_Assembly setAssemblyTotal(BigDecimal value) { this.AssemblyTotal = value; return this; } public Boolean isUpdateSell() { return UpdateSell; } public IN_Assembly setUpdateSell(Boolean value) { this.UpdateSell = value; return this; } public Short getSellPriceMode() { return SellPriceMode; } public IN_Assembly setSellPriceMode(Short value) { this.SellPriceMode = value; return this; } public BigDecimal getSellPriceAmount() { return SellPriceAmount; } public IN_Assembly setSellPriceAmount(BigDecimal value) { this.SellPriceAmount = value; return this; } public BigDecimal getNewPrice() { return NewPrice; } public IN_Assembly setNewPrice(BigDecimal value) { this.NewPrice = value; return this; } public BigDecimal getCalcSell() { return CalcSell; } public IN_Assembly setCalcSell(BigDecimal value) { this.CalcSell = value; return this; } } public static class IN_AssemblyHistory { @Required() public String INAssemblyHistoryID = null; @Required() public String INAssemblyID = null; @Required() public Short HistoryNo = null; public Date RecordDate = null; @Required() public BigDecimal QtyAssembled = null; @Required() public BigDecimal QtyBackOrd = null; public String HistoryText = null; @Required() public BigDecimal HistoryTotal = null; public String StartSerialNo = null; @Required() public Boolean AutoIncrement = null; public Short ExpiryDays = null; public String getInAssemblyHistoryID() { return INAssemblyHistoryID; } public IN_AssemblyHistory setInAssemblyHistoryID(String value) { this.INAssemblyHistoryID = value; return this; } public String getInAssemblyID() { return INAssemblyID; } public IN_AssemblyHistory setInAssemblyID(String value) { this.INAssemblyID = value; return this; } public Short getHistoryNo() { return HistoryNo; } public IN_AssemblyHistory setHistoryNo(Short value) { this.HistoryNo = value; return this; } public Date getRecordDate() { return RecordDate; } public IN_AssemblyHistory setRecordDate(Date value) { this.RecordDate = value; return this; } public BigDecimal getQtyAssembled() { return QtyAssembled; } public IN_AssemblyHistory setQtyAssembled(BigDecimal value) { this.QtyAssembled = value; return this; } public BigDecimal getQtyBackOrd() { return QtyBackOrd; } public IN_AssemblyHistory setQtyBackOrd(BigDecimal value) { this.QtyBackOrd = value; return this; } public String getHistoryText() { return HistoryText; } public IN_AssemblyHistory setHistoryText(String value) { this.HistoryText = value; return this; } public BigDecimal getHistoryTotal() { return HistoryTotal; } public IN_AssemblyHistory setHistoryTotal(BigDecimal value) { this.HistoryTotal = value; return this; } public String getStartSerialNo() { return StartSerialNo; } public IN_AssemblyHistory setStartSerialNo(String value) { this.StartSerialNo = value; return this; } public Boolean isAutoIncrement() { return AutoIncrement; } public IN_AssemblyHistory setAutoIncrement(Boolean value) { this.AutoIncrement = value; return this; } public Short getExpiryDays() { return ExpiryDays; } public IN_AssemblyHistory setExpiryDays(Short value) { this.ExpiryDays = value; return this; } } public static class IN_AssemblyLineDetails { @Required() public String INAssemblyLineDetailsID = null; @Required() public String INAssemblyHistoryID = null; @Required() public String INAssemblyLineID = null; @Required() public String SOHID = null; @Required() public BigDecimal Cost = null; @Required() public BigDecimal SpecialPrice = null; @Required() public BigDecimal Quantity = null; @Required() public BigDecimal TaxPaid = null; public String SerialNo = null; public String getInAssemblyLineDetailsID() { return INAssemblyLineDetailsID; } public IN_AssemblyLineDetails setInAssemblyLineDetailsID(String value) { this.INAssemblyLineDetailsID = value; return this; } public String getInAssemblyHistoryID() { return INAssemblyHistoryID; } public IN_AssemblyLineDetails setInAssemblyHistoryID(String value) { this.INAssemblyHistoryID = value; return this; } public String getInAssemblyLineID() { return INAssemblyLineID; } public IN_AssemblyLineDetails setInAssemblyLineID(String value) { this.INAssemblyLineID = value; return this; } public String getSohid() { return SOHID; } public IN_AssemblyLineDetails setSohid(String value) { this.SOHID = value; return this; } public BigDecimal getCost() { return Cost; } public IN_AssemblyLineDetails setCost(BigDecimal value) { this.Cost = value; return this; } public BigDecimal getSpecialPrice() { return SpecialPrice; } public IN_AssemblyLineDetails setSpecialPrice(BigDecimal value) { this.SpecialPrice = value; return this; } public BigDecimal getQuantity() { return Quantity; } public IN_AssemblyLineDetails setQuantity(BigDecimal value) { this.Quantity = value; return this; } public BigDecimal getTaxPaid() { return TaxPaid; } public IN_AssemblyLineDetails setTaxPaid(BigDecimal value) { this.TaxPaid = value; return this; } public String getSerialNo() { return SerialNo; } public IN_AssemblyLineDetails setSerialNo(String value) { this.SerialNo = value; return this; } } public static class IN_AssemblyLines { @Required() public String INAssemblyLineID = null; @Required() public String INAssemblyHistoryID = null; public Short LineNum = null; @Required() public String ComponentID = null; public String PartNo = null; public String Description = null; @Required() public Short DecimalPlaces = null; @Required() public BigDecimal CostPrice = null; @Required() public BigDecimal QtyNeeded = null; @Required() public BigDecimal QtyRequired = null; @Required() public BigDecimal QtyAvailable = null; @Required() public BigDecimal QtyOutstanding = null; @Required() public BigDecimal ThisAssemble = null; @Required() public BigDecimal PrevAssemble = null; public String getInAssemblyLineID() { return INAssemblyLineID; } public IN_AssemblyLines setInAssemblyLineID(String value) { this.INAssemblyLineID = value; return this; } public String getInAssemblyHistoryID() { return INAssemblyHistoryID; } public IN_AssemblyLines setInAssemblyHistoryID(String value) { this.INAssemblyHistoryID = value; return this; } public Short getLineNum() { return LineNum; } public IN_AssemblyLines setLineNum(Short value) { this.LineNum = value; return this; } public String getComponentID() { return ComponentID; } public IN_AssemblyLines setComponentID(String value) { this.ComponentID = value; return this; } public String getPartNo() { return PartNo; } public IN_AssemblyLines setPartNo(String value) { this.PartNo = value; return this; } public String getDescription() { return Description; } public IN_AssemblyLines setDescription(String value) { this.Description = value; return this; } public Short getDecimalPlaces() { return DecimalPlaces; } public IN_AssemblyLines setDecimalPlaces(Short value) { this.DecimalPlaces = value; return this; } public BigDecimal getCostPrice() { return CostPrice; } public IN_AssemblyLines setCostPrice(BigDecimal value) { this.CostPrice = value; return this; } public BigDecimal getQtyNeeded() { return QtyNeeded; } public IN_AssemblyLines setQtyNeeded(BigDecimal value) { this.QtyNeeded = value; return this; } public BigDecimal getQtyRequired() { return QtyRequired; } public IN_AssemblyLines setQtyRequired(BigDecimal value) { this.QtyRequired = value; return this; } public BigDecimal getQtyAvailable() { return QtyAvailable; } public IN_AssemblyLines setQtyAvailable(BigDecimal value) { this.QtyAvailable = value; return this; } public BigDecimal getQtyOutstanding() { return QtyOutstanding; } public IN_AssemblyLines setQtyOutstanding(BigDecimal value) { this.QtyOutstanding = value; return this; } public BigDecimal getThisAssemble() { return ThisAssemble; } public IN_AssemblyLines setThisAssemble(BigDecimal value) { this.ThisAssemble = value; return this; } public BigDecimal getPrevAssemble() { return PrevAssemble; } public IN_AssemblyLines setPrevAssemble(BigDecimal value) { this.PrevAssemble = value; return this; } } public static class IN_AttributeGroup { @Required() public UUID RecID = null; @References(IN_AttributeGroupTemplate.class) @Required() public UUID IN_AttributeGroupTemplate_RecID = null; @References(IN_Main.class) @Required() public String IN_Main_InventoryID = null; @Required() public Date LastSavedDateTime = null; public String Description = null; @Required() public Integer ItemNo = null; @Required() public ArrayList RowHash = null; public UUID getRecID() { return RecID; } public IN_AttributeGroup setRecID(UUID value) { this.RecID = value; return this; } public UUID getInAttributeGroupTemplateRecID() { return IN_AttributeGroupTemplate_RecID; } public IN_AttributeGroup setInAttributeGroupTemplateRecID(UUID value) { this.IN_AttributeGroupTemplate_RecID = value; return this; } public String getInMainInventoryID() { return IN_Main_InventoryID; } public IN_AttributeGroup setInMainInventoryID(String value) { this.IN_Main_InventoryID = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public IN_AttributeGroup setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public String getDescription() { return Description; } public IN_AttributeGroup setDescription(String value) { this.Description = value; return this; } public Integer getItemNo() { return ItemNo; } public IN_AttributeGroup setItemNo(Integer value) { this.ItemNo = value; return this; } public ArrayList getRowHash() { return RowHash; } public IN_AttributeGroup setRowHash(ArrayList value) { this.RowHash = value; return this; } } public static class IN_AttributeGroupAttributeValue { @Required() public UUID RecID = null; @References(IN_AttributeGroupTemplateAttribute.class) @Required() public UUID IN_AttributeGroupTemplateAttribute_RecID = null; @References(IN_AttributeGroup.class) @Required() public UUID IN_AttributeGroup_RecID = null; @Required() public Date LastSavedDateTime = null; public String Contents = null; @Required() public ArrayList RowHash = null; public UUID getRecID() { return RecID; } public IN_AttributeGroupAttributeValue setRecID(UUID value) { this.RecID = value; return this; } public UUID getInAttributeGroupTemplateAttributeRecID() { return IN_AttributeGroupTemplateAttribute_RecID; } public IN_AttributeGroupAttributeValue setInAttributeGroupTemplateAttributeRecID(UUID value) { this.IN_AttributeGroupTemplateAttribute_RecID = value; return this; } public UUID getInAttributeGroupRecID() { return IN_AttributeGroup_RecID; } public IN_AttributeGroupAttributeValue setInAttributeGroupRecID(UUID value) { this.IN_AttributeGroup_RecID = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public IN_AttributeGroupAttributeValue setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public String getContents() { return Contents; } public IN_AttributeGroupAttributeValue setContents(String value) { this.Contents = value; return this; } public ArrayList getRowHash() { return RowHash; } public IN_AttributeGroupAttributeValue setRowHash(ArrayList value) { this.RowHash = value; return this; } } public static class IN_AttributeGroupTemplate { @Required() public UUID RecID = null; @Required() public String Name = null; @Required() public Boolean IsEnabled = null; public String Code = null; @Required() public ArrayList RowHash = null; public Date LastSavedDateTime = null; public UUID getRecID() { return RecID; } public IN_AttributeGroupTemplate setRecID(UUID value) { this.RecID = value; return this; } public String getName() { return Name; } public IN_AttributeGroupTemplate setName(String value) { this.Name = value; return this; } public Boolean getIsEnabled() { return IsEnabled; } public IN_AttributeGroupTemplate setIsEnabled(Boolean value) { this.IsEnabled = value; return this; } public String getCode() { return Code; } public IN_AttributeGroupTemplate setCode(String value) { this.Code = value; return this; } public ArrayList getRowHash() { return RowHash; } public IN_AttributeGroupTemplate setRowHash(ArrayList value) { this.RowHash = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public IN_AttributeGroupTemplate setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } } public static class IN_AttributeGroupTemplateAttribute { @Required() public UUID RecID = null; @References(IN_AttributeGroupTemplate.class) @Required() public UUID IN_AttributeGroupTemplate_RecID = null; @Required() public String Name = null; @Required() public Short AttributeType = null; public String ComboText = null; public String DefaultValue = null; @Required() public Integer ItemNo = null; @Required() public ArrayList RowHash = null; public Date LastSavedDateTime = null; public UUID getRecID() { return RecID; } public IN_AttributeGroupTemplateAttribute setRecID(UUID value) { this.RecID = value; return this; } public UUID getInAttributeGroupTemplateRecID() { return IN_AttributeGroupTemplate_RecID; } public IN_AttributeGroupTemplateAttribute setInAttributeGroupTemplateRecID(UUID value) { this.IN_AttributeGroupTemplate_RecID = value; return this; } public String getName() { return Name; } public IN_AttributeGroupTemplateAttribute setName(String value) { this.Name = value; return this; } public Short getAttributeType() { return AttributeType; } public IN_AttributeGroupTemplateAttribute setAttributeType(Short value) { this.AttributeType = value; return this; } public String getComboText() { return ComboText; } public IN_AttributeGroupTemplateAttribute setComboText(String value) { this.ComboText = value; return this; } public String getDefaultValue() { return DefaultValue; } public IN_AttributeGroupTemplateAttribute setDefaultValue(String value) { this.DefaultValue = value; return this; } public Integer getItemNo() { return ItemNo; } public IN_AttributeGroupTemplateAttribute setItemNo(Integer value) { this.ItemNo = value; return this; } public ArrayList getRowHash() { return RowHash; } public IN_AttributeGroupTemplateAttribute setRowHash(ArrayList value) { this.RowHash = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public IN_AttributeGroupTemplateAttribute setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } } public static class IN_AttributeGroupTemplateDefaultReference { @Required() public UUID RecID = null; @Required() public String AssemblyFullName = null; @Required() public Integer ItemNo = null; @Required() public ArrayList RowHash = null; public UUID getRecID() { return RecID; } public IN_AttributeGroupTemplateDefaultReference setRecID(UUID value) { this.RecID = value; return this; } public String getAssemblyFullName() { return AssemblyFullName; } public IN_AttributeGroupTemplateDefaultReference setAssemblyFullName(String value) { this.AssemblyFullName = value; return this; } public Integer getItemNo() { return ItemNo; } public IN_AttributeGroupTemplateDefaultReference setItemNo(Integer value) { this.ItemNo = value; return this; } public ArrayList getRowHash() { return RowHash; } public IN_AttributeGroupTemplateDefaultReference setRowHash(ArrayList value) { this.RowHash = value; return this; } } public static class IN_AttributeGroupTemplateReference { @Required() public UUID RecID = null; @References(IN_AttributeGroupTemplate.class) @Required() public UUID IN_AttributeGroupTemplate_RecID = null; @Required() public String AssemblyFullName = null; @Required() public Integer ItemNo = null; @Required() public ArrayList RowHash = null; public UUID getRecID() { return RecID; } public IN_AttributeGroupTemplateReference setRecID(UUID value) { this.RecID = value; return this; } public UUID getInAttributeGroupTemplateRecID() { return IN_AttributeGroupTemplate_RecID; } public IN_AttributeGroupTemplateReference setInAttributeGroupTemplateRecID(UUID value) { this.IN_AttributeGroupTemplate_RecID = value; return this; } public String getAssemblyFullName() { return AssemblyFullName; } public IN_AttributeGroupTemplateReference setAssemblyFullName(String value) { this.AssemblyFullName = value; return this; } public Integer getItemNo() { return ItemNo; } public IN_AttributeGroupTemplateReference setItemNo(Integer value) { this.ItemNo = value; return this; } public ArrayList getRowHash() { return RowHash; } public IN_AttributeGroupTemplateReference setRowHash(ArrayList value) { this.RowHash = value; return this; } } public static class IN_BackOrderAlloc { @Required() public String AllocID = null; public Date LastSavedDateTime = null; public String AllocNo = null; public Date AllocDate = null; @Required() public String InventoryID = null; @Required() public String PartNo = null; @Required() public String Description = null; @Required() public String AllocFrom = null; @Required() public String Ref = null; public Short Decimals = null; @Required() public String IN_LogicalID = null; public String getAllocID() { return AllocID; } public IN_BackOrderAlloc setAllocID(String value) { this.AllocID = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public IN_BackOrderAlloc setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public String getAllocNo() { return AllocNo; } public IN_BackOrderAlloc setAllocNo(String value) { this.AllocNo = value; return this; } public Date getAllocDate() { return AllocDate; } public IN_BackOrderAlloc setAllocDate(Date value) { this.AllocDate = value; return this; } public String getInventoryID() { return InventoryID; } public IN_BackOrderAlloc setInventoryID(String value) { this.InventoryID = value; return this; } public String getPartNo() { return PartNo; } public IN_BackOrderAlloc setPartNo(String value) { this.PartNo = value; return this; } public String getDescription() { return Description; } public IN_BackOrderAlloc setDescription(String value) { this.Description = value; return this; } public String getAllocFrom() { return AllocFrom; } public IN_BackOrderAlloc setAllocFrom(String value) { this.AllocFrom = value; return this; } public String getRef() { return Ref; } public IN_BackOrderAlloc setRef(String value) { this.Ref = value; return this; } public Short getDecimals() { return Decimals; } public IN_BackOrderAlloc setDecimals(Short value) { this.Decimals = value; return this; } public String getInLogicalID() { return IN_LogicalID; } public IN_BackOrderAlloc setInLogicalID(String value) { this.IN_LogicalID = value; return this; } } public static class IN_BackOrderAllocLines { @Required() public String AllocLineID = null; @Required() public String AllocID = null; public Date AllocDate = null; @Required() public String InvoiceNo = null; @Required() public String OrderNo = null; @Required() public String DebtorID = null; public BigDecimal Quantity = null; public BigDecimal Price = null; public BigDecimal EstBOValue = null; public Date Priority = null; @Required() public Short BackOrderMode = null; @Required() public Short SourceType = null; public Integer PriorityWeight = null; public String getAllocLineID() { return AllocLineID; } public IN_BackOrderAllocLines setAllocLineID(String value) { this.AllocLineID = value; return this; } public String getAllocID() { return AllocID; } public IN_BackOrderAllocLines setAllocID(String value) { this.AllocID = value; return this; } public Date getAllocDate() { return AllocDate; } public IN_BackOrderAllocLines setAllocDate(Date value) { this.AllocDate = value; return this; } public String getInvoiceNo() { return InvoiceNo; } public IN_BackOrderAllocLines setInvoiceNo(String value) { this.InvoiceNo = value; return this; } public String getOrderNo() { return OrderNo; } public IN_BackOrderAllocLines setOrderNo(String value) { this.OrderNo = value; return this; } public String getDebtorID() { return DebtorID; } public IN_BackOrderAllocLines setDebtorID(String value) { this.DebtorID = value; return this; } public BigDecimal getQuantity() { return Quantity; } public IN_BackOrderAllocLines setQuantity(BigDecimal value) { this.Quantity = value; return this; } public BigDecimal getPrice() { return Price; } public IN_BackOrderAllocLines setPrice(BigDecimal value) { this.Price = value; return this; } public BigDecimal getEstBOValue() { return EstBOValue; } public IN_BackOrderAllocLines setEstBOValue(BigDecimal value) { this.EstBOValue = value; return this; } public Date getPriority() { return Priority; } public IN_BackOrderAllocLines setPriority(Date value) { this.Priority = value; return this; } public Short getBackOrderMode() { return BackOrderMode; } public IN_BackOrderAllocLines setBackOrderMode(Short value) { this.BackOrderMode = value; return this; } public Short getSourceType() { return SourceType; } public IN_BackOrderAllocLines setSourceType(Short value) { this.SourceType = value; return this; } public Integer getPriorityWeight() { return PriorityWeight; } public IN_BackOrderAllocLines setPriorityWeight(Integer value) { this.PriorityWeight = value; return this; } } public static class IN_BinLocation { @Required() public String IN_BinLocationID = null; @References(IN_Main.class) @Required() public String IN_MainID = null; @References(IN_Logical.class) @Required() public String IN_LogicalID = null; public Date LastSavedDateTime = null; @References(IN_BinLocationLookup.class) @Required() public String IN_BinLocationLookup_INBinLookupID = null; public String getInBinLocationID() { return IN_BinLocationID; } public IN_BinLocation setInBinLocationID(String value) { this.IN_BinLocationID = value; return this; } public String getInMainID() { return IN_MainID; } public IN_BinLocation setInMainID(String value) { this.IN_MainID = value; return this; } public String getInLogicalID() { return IN_LogicalID; } public IN_BinLocation setInLogicalID(String value) { this.IN_LogicalID = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public IN_BinLocation setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public String getInBinLocationLookupInBinLookupID() { return IN_BinLocationLookup_INBinLookupID; } public IN_BinLocation setInBinLocationLookupInBinLookupID(String value) { this.IN_BinLocationLookup_INBinLookupID = value; return this; } } public static class IN_BinLocationCustomFields { @Required() public String FieldID = null; @Required() public String SettingName = null; public String SettingDescription = null; public Integer CellType = null; public String FieldParameter = null; @References(SY_Plugin.class) @Required() public UUID SY_Plugin_RecID = null; @Required() public Date LastSavedDateTime = null; public Integer DisplayOrder = null; public String getFieldID() { return FieldID; } public IN_BinLocationCustomFields setFieldID(String value) { this.FieldID = value; return this; } public String getSettingName() { return SettingName; } public IN_BinLocationCustomFields setSettingName(String value) { this.SettingName = value; return this; } public String getSettingDescription() { return SettingDescription; } public IN_BinLocationCustomFields setSettingDescription(String value) { this.SettingDescription = value; return this; } public Integer getCellType() { return CellType; } public IN_BinLocationCustomFields setCellType(Integer value) { this.CellType = value; return this; } public String getFieldParameter() { return FieldParameter; } public IN_BinLocationCustomFields setFieldParameter(String value) { this.FieldParameter = value; return this; } public UUID getSyPluginRecID() { return SY_Plugin_RecID; } public IN_BinLocationCustomFields setSyPluginRecID(UUID value) { this.SY_Plugin_RecID = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public IN_BinLocationCustomFields setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Integer getDisplayOrder() { return DisplayOrder; } public IN_BinLocationCustomFields setDisplayOrder(Integer value) { this.DisplayOrder = value; return this; } } public static class IN_BinLocationCustomValues { @Required() public String RecID = null; @References(IN_BinLocation.class) @Required() public String IN_BinLocationID = null; @References(IN_BinLocationCustomFields.class) @Required() public String FieldID = null; public String Contents = null; @Required() public Date LastSavedDateTime = null; public String getRecID() { return RecID; } public IN_BinLocationCustomValues setRecID(String value) { this.RecID = value; return this; } public String getInBinLocationID() { return IN_BinLocationID; } public IN_BinLocationCustomValues setInBinLocationID(String value) { this.IN_BinLocationID = value; return this; } public String getFieldID() { return FieldID; } public IN_BinLocationCustomValues setFieldID(String value) { this.FieldID = value; return this; } public String getContents() { return Contents; } public IN_BinLocationCustomValues setContents(String value) { this.Contents = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public IN_BinLocationCustomValues setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } } public static class AR_History { @Required() public String RecID = null; @References(AR_Main.class) @Required() public String AR_Main_RecID = null; public Short Status = null; @Required() public Date StartDateTime = null; @Required() public Date EndDateTime = null; public String Message = null; public String Report = null; @Required() public Date CreatedDateTime = null; @References(HR_Staff.class) @Required() public String CreatedByStaffID = null; @Required() public Date LastSavedDateTime = null; @References(HR_Staff.class) @Required() public String LastSavedByStaffID = null; public String ExecutionID = null; public String getRecID() { return RecID; } public AR_History setRecID(String value) { this.RecID = value; return this; } public String getArMainRecID() { return AR_Main_RecID; } public AR_History setArMainRecID(String value) { this.AR_Main_RecID = value; return this; } public Short getStatus() { return Status; } public AR_History setStatus(Short value) { this.Status = value; return this; } public Date getStartDateTime() { return StartDateTime; } public AR_History setStartDateTime(Date value) { this.StartDateTime = value; return this; } public Date getEndDateTime() { return EndDateTime; } public AR_History setEndDateTime(Date value) { this.EndDateTime = value; return this; } public String getMessage() { return Message; } public AR_History setMessage(String value) { this.Message = value; return this; } public String getReport() { return Report; } public AR_History setReport(String value) { this.Report = value; return this; } public Date getCreatedDateTime() { return CreatedDateTime; } public AR_History setCreatedDateTime(Date value) { this.CreatedDateTime = value; return this; } public String getCreatedByStaffID() { return CreatedByStaffID; } public AR_History setCreatedByStaffID(String value) { this.CreatedByStaffID = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public AR_History setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public String getLastSavedByStaffID() { return LastSavedByStaffID; } public AR_History setLastSavedByStaffID(String value) { this.LastSavedByStaffID = value; return this; } public String getExecutionID() { return ExecutionID; } public AR_History setExecutionID(String value) { this.ExecutionID = value; return this; } } public static class AR_Main { @Required() public String RecID = null; @Required() public String Name = null; public Short Enabled = null; public String Description = null; @Required() public Date CreatedDateTime = null; @References(HR_Staff.class) @Required() public String CreatedByStaffID = null; @Required() public Date LastSavedDateTime = null; @References(HR_Staff.class) @Required() public String LastSavedByStaffID = null; public Date NextScheduledRunDateTime = null; public String getRecID() { return RecID; } public AR_Main setRecID(String value) { this.RecID = value; return this; } public String getName() { return Name; } public AR_Main setName(String value) { this.Name = value; return this; } public Short getEnabled() { return Enabled; } public AR_Main setEnabled(Short value) { this.Enabled = value; return this; } public String getDescription() { return Description; } public AR_Main setDescription(String value) { this.Description = value; return this; } public Date getCreatedDateTime() { return CreatedDateTime; } public AR_Main setCreatedDateTime(Date value) { this.CreatedDateTime = value; return this; } public String getCreatedByStaffID() { return CreatedByStaffID; } public AR_Main setCreatedByStaffID(String value) { this.CreatedByStaffID = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public AR_Main setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public String getLastSavedByStaffID() { return LastSavedByStaffID; } public AR_Main setLastSavedByStaffID(String value) { this.LastSavedByStaffID = value; return this; } public Date getNextScheduledRunDateTime() { return NextScheduledRunDateTime; } public AR_Main setNextScheduledRunDateTime(Date value) { this.NextScheduledRunDateTime = value; return this; } } public static class AR_Provider { @Required() public String ProviderID = null; @Required() public String ProviderName = null; @Required() public String StoredProcedureName = null; public String ProviderDescription = null; @Required() public Date LastSavedDateTime = null; public String getProviderID() { return ProviderID; } public AR_Provider setProviderID(String value) { this.ProviderID = value; return this; } public String getProviderName() { return ProviderName; } public AR_Provider setProviderName(String value) { this.ProviderName = value; return this; } public String getStoredProcedureName() { return StoredProcedureName; } public AR_Provider setStoredProcedureName(String value) { this.StoredProcedureName = value; return this; } public String getProviderDescription() { return ProviderDescription; } public AR_Provider setProviderDescription(String value) { this.ProviderDescription = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public AR_Provider setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } } public static class AR_ProviderFilters { @References(AR_ProviderHeaders.class) @Required() public String HeaderID = null; @Required() public String FilterID = null; @Required() public String Description = null; public String FilterScript = null; @Required() public Date LastSavedDateTime = null; public String getHeaderID() { return HeaderID; } public AR_ProviderFilters setHeaderID(String value) { this.HeaderID = value; return this; } public String getFilterID() { return FilterID; } public AR_ProviderFilters setFilterID(String value) { this.FilterID = value; return this; } public String getDescription() { return Description; } public AR_ProviderFilters setDescription(String value) { this.Description = value; return this; } public String getFilterScript() { return FilterScript; } public AR_ProviderFilters setFilterScript(String value) { this.FilterScript = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public AR_ProviderFilters setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } } public static class AR_ProviderHeaders { @References(AR_Provider.class) @Required() public String ProviderID = null; @Required() public String HeaderID = null; @Required() public String HeaderName = null; @Required() public Integer DataType = null; @Required() public Date LastSavedDateTime = null; @Required() public Short OrdinalPosition = null; public String getProviderID() { return ProviderID; } public AR_ProviderHeaders setProviderID(String value) { this.ProviderID = value; return this; } public String getHeaderID() { return HeaderID; } public AR_ProviderHeaders setHeaderID(String value) { this.HeaderID = value; return this; } public String getHeaderName() { return HeaderName; } public AR_ProviderHeaders setHeaderName(String value) { this.HeaderName = value; return this; } public Integer getDataType() { return DataType; } public AR_ProviderHeaders setDataType(Integer value) { this.DataType = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public AR_ProviderHeaders setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Short getOrdinalPosition() { return OrdinalPosition; } public AR_ProviderHeaders setOrdinalPosition(Short value) { this.OrdinalPosition = value; return this; } } public static class AR_Schedules { @Required() public String RecID = null; @References(AR_Main.class) @Required() public String AR_Main_RecID = null; @Required() public String Name = null; public Short Enabled = null; @Required() public Integer FrequencyType = null; @Required() public Integer FrequencyInterval = null; @Required() public Integer FrequencySubdayType = null; @Required() public Integer FrequencySubdayInterval = null; @Required() public Integer FrequencyRelativeInterval = null; @Required() public Integer FrequencyRecurrenceFactor = null; @Required() public Date StartDateTime = null; @Required() public Date EndDateTime = null; @Required() public Date CreatedDateTime = null; @References(HR_Staff.class) @Required() public String CreatedByStaffID = null; @Required() public Date LastSavedDateTime = null; @References(HR_Staff.class) @Required() public String LastSavedByStaffID = null; public String getRecID() { return RecID; } public AR_Schedules setRecID(String value) { this.RecID = value; return this; } public String getArMainRecID() { return AR_Main_RecID; } public AR_Schedules setArMainRecID(String value) { this.AR_Main_RecID = value; return this; } public String getName() { return Name; } public AR_Schedules setName(String value) { this.Name = value; return this; } public Short getEnabled() { return Enabled; } public AR_Schedules setEnabled(Short value) { this.Enabled = value; return this; } public Integer getFrequencyType() { return FrequencyType; } public AR_Schedules setFrequencyType(Integer value) { this.FrequencyType = value; return this; } public Integer getFrequencyInterval() { return FrequencyInterval; } public AR_Schedules setFrequencyInterval(Integer value) { this.FrequencyInterval = value; return this; } public Integer getFrequencySubdayType() { return FrequencySubdayType; } public AR_Schedules setFrequencySubdayType(Integer value) { this.FrequencySubdayType = value; return this; } public Integer getFrequencySubdayInterval() { return FrequencySubdayInterval; } public AR_Schedules setFrequencySubdayInterval(Integer value) { this.FrequencySubdayInterval = value; return this; } public Integer getFrequencyRelativeInterval() { return FrequencyRelativeInterval; } public AR_Schedules setFrequencyRelativeInterval(Integer value) { this.FrequencyRelativeInterval = value; return this; } public Integer getFrequencyRecurrenceFactor() { return FrequencyRecurrenceFactor; } public AR_Schedules setFrequencyRecurrenceFactor(Integer value) { this.FrequencyRecurrenceFactor = value; return this; } public Date getStartDateTime() { return StartDateTime; } public AR_Schedules setStartDateTime(Date value) { this.StartDateTime = value; return this; } public Date getEndDateTime() { return EndDateTime; } public AR_Schedules setEndDateTime(Date value) { this.EndDateTime = value; return this; } public Date getCreatedDateTime() { return CreatedDateTime; } public AR_Schedules setCreatedDateTime(Date value) { this.CreatedDateTime = value; return this; } public String getCreatedByStaffID() { return CreatedByStaffID; } public AR_Schedules setCreatedByStaffID(String value) { this.CreatedByStaffID = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public AR_Schedules setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public String getLastSavedByStaffID() { return LastSavedByStaffID; } public AR_Schedules setLastSavedByStaffID(String value) { this.LastSavedByStaffID = value; return this; } } public static class AR_TaskFilters { @Required() public String RecID = null; @References(AR_Tasks.class) @Required() public String AR_Tasks_RecID = null; @References(AR_ProviderHeaders.class) @Required() public String AR_ProviderHeaders_HeaderID = null; @References(AR_ProviderFilters.class) @Required() public String AR_ProviderFilters_FilterID = null; @Required() public Date CreatedDateTime = null; @References(HR_Staff.class) @Required() public String CreatedByStaffID = null; @Required() public Date LastSavedDateTime = null; @References(HR_Staff.class) @Required() public String LastSavedByStaffID = null; public String getRecID() { return RecID; } public AR_TaskFilters setRecID(String value) { this.RecID = value; return this; } public String getArTasksRecID() { return AR_Tasks_RecID; } public AR_TaskFilters setArTasksRecID(String value) { this.AR_Tasks_RecID = value; return this; } public String getArProviderHeadersHeaderID() { return AR_ProviderHeaders_HeaderID; } public AR_TaskFilters setArProviderHeadersHeaderID(String value) { this.AR_ProviderHeaders_HeaderID = value; return this; } public String getArProviderFiltersFilterID() { return AR_ProviderFilters_FilterID; } public AR_TaskFilters setArProviderFiltersFilterID(String value) { this.AR_ProviderFilters_FilterID = value; return this; } public Date getCreatedDateTime() { return CreatedDateTime; } public AR_TaskFilters setCreatedDateTime(Date value) { this.CreatedDateTime = value; return this; } public String getCreatedByStaffID() { return CreatedByStaffID; } public AR_TaskFilters setCreatedByStaffID(String value) { this.CreatedByStaffID = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public AR_TaskFilters setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public String getLastSavedByStaffID() { return LastSavedByStaffID; } public AR_TaskFilters setLastSavedByStaffID(String value) { this.LastSavedByStaffID = value; return this; } } public static class AR_TaskHistory { @Required() public String RecID = null; @References(AR_Tasks.class) @Required() public String AR_Tasks_RecID = null; public Short Status = null; @Required() public Date StartDateTime = null; @Required() public Date EndDateTime = null; public String Message = null; public String Report = null; @Required() public Date CreatedDateTime = null; @References(HR_Staff.class) @Required() public String CreatedByStaffID = null; @Required() public Date LastSavedDateTime = null; @References(HR_Staff.class) @Required() public String LastSavedByStaffID = null; public String ExecutionID = null; public String getRecID() { return RecID; } public AR_TaskHistory setRecID(String value) { this.RecID = value; return this; } public String getArTasksRecID() { return AR_Tasks_RecID; } public AR_TaskHistory setArTasksRecID(String value) { this.AR_Tasks_RecID = value; return this; } public Short getStatus() { return Status; } public AR_TaskHistory setStatus(Short value) { this.Status = value; return this; } public Date getStartDateTime() { return StartDateTime; } public AR_TaskHistory setStartDateTime(Date value) { this.StartDateTime = value; return this; } public Date getEndDateTime() { return EndDateTime; } public AR_TaskHistory setEndDateTime(Date value) { this.EndDateTime = value; return this; } public String getMessage() { return Message; } public AR_TaskHistory setMessage(String value) { this.Message = value; return this; } public String getReport() { return Report; } public AR_TaskHistory setReport(String value) { this.Report = value; return this; } public Date getCreatedDateTime() { return CreatedDateTime; } public AR_TaskHistory setCreatedDateTime(Date value) { this.CreatedDateTime = value; return this; } public String getCreatedByStaffID() { return CreatedByStaffID; } public AR_TaskHistory setCreatedByStaffID(String value) { this.CreatedByStaffID = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public AR_TaskHistory setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public String getLastSavedByStaffID() { return LastSavedByStaffID; } public AR_TaskHistory setLastSavedByStaffID(String value) { this.LastSavedByStaffID = value; return this; } public String getExecutionID() { return ExecutionID; } public AR_TaskHistory setExecutionID(String value) { this.ExecutionID = value; return this; } } public static class AR_Tasks { @Required() public String RecID = null; @References(AR_Main.class) @Required() public String AR_Main_RecID = null; @Required() public Integer TaskNo = null; @Required() public String Name = null; @References(AR_Provider.class) @Required() public String AR_Provider_ProviderID = null; public Short Enabled = null; public String Description = null; @Required() public Date CreatedDateTime = null; @References(HR_Staff.class) @Required() public String CreatedByStaffID = null; @Required() public Date LastSavedDateTime = null; @References(HR_Staff.class) @Required() public String LastSavedByStaffID = null; public String getRecID() { return RecID; } public AR_Tasks setRecID(String value) { this.RecID = value; return this; } public String getArMainRecID() { return AR_Main_RecID; } public AR_Tasks setArMainRecID(String value) { this.AR_Main_RecID = value; return this; } public Integer getTaskNo() { return TaskNo; } public AR_Tasks setTaskNo(Integer value) { this.TaskNo = value; return this; } public String getName() { return Name; } public AR_Tasks setName(String value) { this.Name = value; return this; } public String getArProviderProviderID() { return AR_Provider_ProviderID; } public AR_Tasks setArProviderProviderID(String value) { this.AR_Provider_ProviderID = value; return this; } public Short getEnabled() { return Enabled; } public AR_Tasks setEnabled(Short value) { this.Enabled = value; return this; } public String getDescription() { return Description; } public AR_Tasks setDescription(String value) { this.Description = value; return this; } public Date getCreatedDateTime() { return CreatedDateTime; } public AR_Tasks setCreatedDateTime(Date value) { this.CreatedDateTime = value; return this; } public String getCreatedByStaffID() { return CreatedByStaffID; } public AR_Tasks setCreatedByStaffID(String value) { this.CreatedByStaffID = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public AR_Tasks setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public String getLastSavedByStaffID() { return LastSavedByStaffID; } public AR_Tasks setLastSavedByStaffID(String value) { this.LastSavedByStaffID = value; return this; } } public static class BM_BatchProduction { @Required() public String RecID = null; @Required() public String BatchNo = null; @Required() public Date BatchDate = null; @Required() public String Description = null; @References(BM_Main.class) @Required() public String BM_Main_RecID = null; @Required() public BigDecimal Quantity = null; @Required() public BigDecimal QuantityPerWorkOrder = null; @Required() public Boolean IsActivated = null; @Required() public Date LastSavedDateTime = null; @Required() public ArrayList RowHash = null; public String getRecID() { return RecID; } public BM_BatchProduction setRecID(String value) { this.RecID = value; return this; } public String getBatchNo() { return BatchNo; } public BM_BatchProduction setBatchNo(String value) { this.BatchNo = value; return this; } public Date getBatchDate() { return BatchDate; } public BM_BatchProduction setBatchDate(Date value) { this.BatchDate = value; return this; } public String getDescription() { return Description; } public BM_BatchProduction setDescription(String value) { this.Description = value; return this; } public String getBmMainRecID() { return BM_Main_RecID; } public BM_BatchProduction setBmMainRecID(String value) { this.BM_Main_RecID = value; return this; } public BigDecimal getQuantity() { return Quantity; } public BM_BatchProduction setQuantity(BigDecimal value) { this.Quantity = value; return this; } public BigDecimal getQuantityPerWorkOrder() { return QuantityPerWorkOrder; } public BM_BatchProduction setQuantityPerWorkOrder(BigDecimal value) { this.QuantityPerWorkOrder = value; return this; } public Boolean getIsActivated() { return IsActivated; } public BM_BatchProduction setIsActivated(Boolean value) { this.IsActivated = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public BM_BatchProduction setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public ArrayList getRowHash() { return RowHash; } public BM_BatchProduction setRowHash(ArrayList value) { this.RowHash = value; return this; } } public static class BM_BatchProductionCustomFields { @Required() public String RecID = null; @Required() public String SettingName = null; public String SettingDescription = null; public Integer CellType = null; public String FieldParameter = null; @References(SY_Plugin.class) @Required() public UUID SY_Plugin_RecID = null; public Date LastSavedDateTime = null; public Integer DisplayOrder = null; public String getRecID() { return RecID; } public BM_BatchProductionCustomFields setRecID(String value) { this.RecID = value; return this; } public String getSettingName() { return SettingName; } public BM_BatchProductionCustomFields setSettingName(String value) { this.SettingName = value; return this; } public String getSettingDescription() { return SettingDescription; } public BM_BatchProductionCustomFields setSettingDescription(String value) { this.SettingDescription = value; return this; } public Integer getCellType() { return CellType; } public BM_BatchProductionCustomFields setCellType(Integer value) { this.CellType = value; return this; } public String getFieldParameter() { return FieldParameter; } public BM_BatchProductionCustomFields setFieldParameter(String value) { this.FieldParameter = value; return this; } public UUID getSyPluginRecID() { return SY_Plugin_RecID; } public BM_BatchProductionCustomFields setSyPluginRecID(UUID value) { this.SY_Plugin_RecID = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public BM_BatchProductionCustomFields setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Integer getDisplayOrder() { return DisplayOrder; } public BM_BatchProductionCustomFields setDisplayOrder(Integer value) { this.DisplayOrder = value; return this; } } public static class BM_BatchProductionCustomValues { @Required() public String RecID = null; @References(BM_BatchProduction.class) @Required() public String BM_BatchProduction_RecID = null; @References(BM_BatchProductionCustomFields.class) @Required() public String BM_BatchProductionCustomFields_RecID = null; public String Contents = null; public Date LastSavedDateTime = null; public String getRecID() { return RecID; } public BM_BatchProductionCustomValues setRecID(String value) { this.RecID = value; return this; } public String getBmBatchProductionRecID() { return BM_BatchProduction_RecID; } public BM_BatchProductionCustomValues setBmBatchProductionRecID(String value) { this.BM_BatchProduction_RecID = value; return this; } public String getBmBatchProductionCustomFieldsRecID() { return BM_BatchProductionCustomFields_RecID; } public BM_BatchProductionCustomValues setBmBatchProductionCustomFieldsRecID(String value) { this.BM_BatchProductionCustomFields_RecID = value; return this; } public String getContents() { return Contents; } public BM_BatchProductionCustomValues setContents(String value) { this.Contents = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public BM_BatchProductionCustomValues setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } } public static class BM_BatchProductionDocuments { @Required() public String RecID = null; @References(BM_BatchProduction.class) @Required() public String BM_BatchProduction_RecID = null; @References(SY_DocumentTypes.class) @Required() public String DocumentTypeID = null; public Date LastSavedDateTime = null; @References(HR_Staff.class) @Required() public String LastSavedByStaffID = null; public ArrayList FileBinary = null; public String Description = null; public String PhysicalFileName = null; @Required() public Integer ItemNo = null; public String getRecID() { return RecID; } public BM_BatchProductionDocuments setRecID(String value) { this.RecID = value; return this; } public String getBmBatchProductionRecID() { return BM_BatchProduction_RecID; } public BM_BatchProductionDocuments setBmBatchProductionRecID(String value) { this.BM_BatchProduction_RecID = value; return this; } public String getDocumentTypeID() { return DocumentTypeID; } public BM_BatchProductionDocuments setDocumentTypeID(String value) { this.DocumentTypeID = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public BM_BatchProductionDocuments setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public String getLastSavedByStaffID() { return LastSavedByStaffID; } public BM_BatchProductionDocuments setLastSavedByStaffID(String value) { this.LastSavedByStaffID = value; return this; } public ArrayList getFileBinary() { return FileBinary; } public BM_BatchProductionDocuments setFileBinary(ArrayList value) { this.FileBinary = value; return this; } public String getDescription() { return Description; } public BM_BatchProductionDocuments setDescription(String value) { this.Description = value; return this; } public String getPhysicalFileName() { return PhysicalFileName; } public BM_BatchProductionDocuments setPhysicalFileName(String value) { this.PhysicalFileName = value; return this; } public Integer getItemNo() { return ItemNo; } public BM_BatchProductionDocuments setItemNo(Integer value) { this.ItemNo = value; return this; } } public static class BM_BatchProductionNotes { @Required() public String RecID = null; @References(BM_BatchProduction.class) @Required() public String BM_BatchProduction_RecID = null; @References(SY_NoteTypes.class) @Required() public String NoteTypeID = null; @Required() public Date LastSavedDateTime = null; @References(HR_Staff.class) @Required() public String LastSavedByStaffID = null; public String NoteText = null; @Required() public Integer ItemNo = null; public String getRecID() { return RecID; } public BM_BatchProductionNotes setRecID(String value) { this.RecID = value; return this; } public String getBmBatchProductionRecID() { return BM_BatchProduction_RecID; } public BM_BatchProductionNotes setBmBatchProductionRecID(String value) { this.BM_BatchProduction_RecID = value; return this; } public String getNoteTypeID() { return NoteTypeID; } public BM_BatchProductionNotes setNoteTypeID(String value) { this.NoteTypeID = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public BM_BatchProductionNotes setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public String getLastSavedByStaffID() { return LastSavedByStaffID; } public BM_BatchProductionNotes setLastSavedByStaffID(String value) { this.LastSavedByStaffID = value; return this; } public String getNoteText() { return NoteText; } public BM_BatchProductionNotes setNoteText(String value) { this.NoteText = value; return this; } public Integer getItemNo() { return ItemNo; } public BM_BatchProductionNotes setItemNo(Integer value) { this.ItemNo = value; return this; } } public static class BM_BatchProductionWorkOrder { @Required() public String RecID = null; @Required() public BigDecimal ProductionQuantity = null; @Required() public Date PlannedStartDate = null; @Required() public Integer ItemNo = null; @References(BM_BatchProduction.class) @Required() public String BM_BatchProduction_RecID = null; @References(BM_WorkOrder.class) public String BM_WorkOrder_RecID = null; @Required() public ArrayList RowHash = null; public String getRecID() { return RecID; } public BM_BatchProductionWorkOrder setRecID(String value) { this.RecID = value; return this; } public BigDecimal getProductionQuantity() { return ProductionQuantity; } public BM_BatchProductionWorkOrder setProductionQuantity(BigDecimal value) { this.ProductionQuantity = value; return this; } public Date getPlannedStartDate() { return PlannedStartDate; } public BM_BatchProductionWorkOrder setPlannedStartDate(Date value) { this.PlannedStartDate = value; return this; } public Integer getItemNo() { return ItemNo; } public BM_BatchProductionWorkOrder setItemNo(Integer value) { this.ItemNo = value; return this; } public String getBmBatchProductionRecID() { return BM_BatchProduction_RecID; } public BM_BatchProductionWorkOrder setBmBatchProductionRecID(String value) { this.BM_BatchProduction_RecID = value; return this; } public String getBmWorkOrderRecID() { return BM_WorkOrder_RecID; } public BM_BatchProductionWorkOrder setBmWorkOrderRecID(String value) { this.BM_WorkOrder_RecID = value; return this; } public ArrayList getRowHash() { return RowHash; } public BM_BatchProductionWorkOrder setRowHash(ArrayList value) { this.RowHash = value; return this; } } public static class BM_CustomSetting { @Required() public String SettingID = null; @Required() public Date LastSavedDateTime = null; public String SettingDescription = null; public String SettingName = null; public Integer DisplayOrder = null; public Short CellType = null; public String ScriptFormatCell = null; public String ScriptButtonClicked = null; public String ScriptReadData = null; public String GridHandlerCode = null; @References(SY_Plugin.class) @Required() public UUID SY_Plugin_RecID = null; public String getSettingID() { return SettingID; } public BM_CustomSetting setSettingID(String value) { this.SettingID = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public BM_CustomSetting setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public String getSettingDescription() { return SettingDescription; } public BM_CustomSetting setSettingDescription(String value) { this.SettingDescription = value; return this; } public String getSettingName() { return SettingName; } public BM_CustomSetting setSettingName(String value) { this.SettingName = value; return this; } public Integer getDisplayOrder() { return DisplayOrder; } public BM_CustomSetting setDisplayOrder(Integer value) { this.DisplayOrder = value; return this; } public Short getCellType() { return CellType; } public BM_CustomSetting setCellType(Short value) { this.CellType = value; return this; } public String getScriptFormatCell() { return ScriptFormatCell; } public BM_CustomSetting setScriptFormatCell(String value) { this.ScriptFormatCell = value; return this; } public String getScriptButtonClicked() { return ScriptButtonClicked; } public BM_CustomSetting setScriptButtonClicked(String value) { this.ScriptButtonClicked = value; return this; } public String getScriptReadData() { return ScriptReadData; } public BM_CustomSetting setScriptReadData(String value) { this.ScriptReadData = value; return this; } public String getGridHandlerCode() { return GridHandlerCode; } public BM_CustomSetting setGridHandlerCode(String value) { this.GridHandlerCode = value; return this; } public UUID getSyPluginRecID() { return SY_Plugin_RecID; } public BM_CustomSetting setSyPluginRecID(UUID value) { this.SY_Plugin_RecID = value; return this; } } public static class BM_CustomSettingValues { @Required() public String SettingValueID = null; @References(BM_CustomSetting.class) public String SettingID = null; @References(BM_Main.class) @Required() public String BM_Main_RecID = null; public String Contents = null; @Required() public Date LastSavedDateTime = null; public String getSettingValueID() { return SettingValueID; } public BM_CustomSettingValues setSettingValueID(String value) { this.SettingValueID = value; return this; } public String getSettingID() { return SettingID; } public BM_CustomSettingValues setSettingID(String value) { this.SettingID = value; return this; } public String getBmMainRecID() { return BM_Main_RecID; } public BM_CustomSettingValues setBmMainRecID(String value) { this.BM_Main_RecID = value; return this; } public String getContents() { return Contents; } public BM_CustomSettingValues setContents(String value) { this.Contents = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public BM_CustomSettingValues setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } } public static class BM_Documents { @Required() public String RecID = null; @References(BM_Main.class) @Required() public String BM_Main_RecID = null; @Required() public String DocumentTypeID = null; public Date LastSavedDateTime = null; @References(HR_Staff.class) @Required() public String LastSavedByStaffID = null; public ArrayList FileBinary = null; public String Description = null; public String PhysicalFileName = null; @Required() public Integer ItemNo = null; public String getRecID() { return RecID; } public BM_Documents setRecID(String value) { this.RecID = value; return this; } public String getBmMainRecID() { return BM_Main_RecID; } public BM_Documents setBmMainRecID(String value) { this.BM_Main_RecID = value; return this; } public String getDocumentTypeID() { return DocumentTypeID; } public BM_Documents setDocumentTypeID(String value) { this.DocumentTypeID = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public BM_Documents setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public String getLastSavedByStaffID() { return LastSavedByStaffID; } public BM_Documents setLastSavedByStaffID(String value) { this.LastSavedByStaffID = value; return this; } public ArrayList getFileBinary() { return FileBinary; } public BM_Documents setFileBinary(ArrayList value) { this.FileBinary = value; return this; } public String getDescription() { return Description; } public BM_Documents setDescription(String value) { this.Description = value; return this; } public String getPhysicalFileName() { return PhysicalFileName; } public BM_Documents setPhysicalFileName(String value) { this.PhysicalFileName = value; return this; } public Integer getItemNo() { return ItemNo; } public BM_Documents setItemNo(Integer value) { this.ItemNo = value; return this; } } public static class BM_InputCustomFields { @Required() public String RecID = null; @Required() public String SettingName = null; public String SettingDescription = null; public Integer CellType = null; public String FieldParameter = null; @References(SY_Plugin.class) @Required() public UUID SY_Plugin_RecID = null; @Required() public Date LastSavedDateTime = null; public Integer DisplayOrder = null; public String getRecID() { return RecID; } public BM_InputCustomFields setRecID(String value) { this.RecID = value; return this; } public String getSettingName() { return SettingName; } public BM_InputCustomFields setSettingName(String value) { this.SettingName = value; return this; } public String getSettingDescription() { return SettingDescription; } public BM_InputCustomFields setSettingDescription(String value) { this.SettingDescription = value; return this; } public Integer getCellType() { return CellType; } public BM_InputCustomFields setCellType(Integer value) { this.CellType = value; return this; } public String getFieldParameter() { return FieldParameter; } public BM_InputCustomFields setFieldParameter(String value) { this.FieldParameter = value; return this; } public UUID getSyPluginRecID() { return SY_Plugin_RecID; } public BM_InputCustomFields setSyPluginRecID(UUID value) { this.SY_Plugin_RecID = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public BM_InputCustomFields setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Integer getDisplayOrder() { return DisplayOrder; } public BM_InputCustomFields setDisplayOrder(Integer value) { this.DisplayOrder = value; return this; } } public static class BM_InputCustomValues { @Required() public String RecID = null; @References(BM_Inputs.class) @Required() public String BM_Inputs_RecID = null; @References(BM_InputCustomFields.class) @Required() public String BM_InputCustomFields_RecID = null; public String Contents = null; @Required() public Date LastSavedDateTime = null; public String getRecID() { return RecID; } public BM_InputCustomValues setRecID(String value) { this.RecID = value; return this; } public String getBmInputsRecID() { return BM_Inputs_RecID; } public BM_InputCustomValues setBmInputsRecID(String value) { this.BM_Inputs_RecID = value; return this; } public String getBmInputCustomFieldsRecID() { return BM_InputCustomFields_RecID; } public BM_InputCustomValues setBmInputCustomFieldsRecID(String value) { this.BM_InputCustomFields_RecID = value; return this; } public String getContents() { return Contents; } public BM_InputCustomValues setContents(String value) { this.Contents = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public BM_InputCustomValues setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } } public static class BM_Inputs { @Required() public String RecID = null; @References(BM_Stages.class) @Required() public String BM_Stages_RecID = null; @Required() public Integer ItemNo = null; @References(IN_Main.class) @Required() public String InventoryID = null; @Required() public Boolean IsRatio = null; @Required() public BigDecimal Quantity = null; public String Note = null; @References(BM_Main.class) public String SubAssembly = null; @Required() public Short SubAssemblyExplodePolicy = null; @Required() public ArrayList RowHash = null; public String getRecID() { return RecID; } public BM_Inputs setRecID(String value) { this.RecID = value; return this; } public String getBmStagesRecID() { return BM_Stages_RecID; } public BM_Inputs setBmStagesRecID(String value) { this.BM_Stages_RecID = value; return this; } public Integer getItemNo() { return ItemNo; } public BM_Inputs setItemNo(Integer value) { this.ItemNo = value; return this; } public String getInventoryID() { return InventoryID; } public BM_Inputs setInventoryID(String value) { this.InventoryID = value; return this; } public Boolean getIsRatio() { return IsRatio; } public BM_Inputs setIsRatio(Boolean value) { this.IsRatio = value; return this; } public BigDecimal getQuantity() { return Quantity; } public BM_Inputs setQuantity(BigDecimal value) { this.Quantity = value; return this; } public String getNote() { return Note; } public BM_Inputs setNote(String value) { this.Note = value; return this; } public String getSubAssembly() { return SubAssembly; } public BM_Inputs setSubAssembly(String value) { this.SubAssembly = value; return this; } public Short getSubAssemblyExplodePolicy() { return SubAssemblyExplodePolicy; } public BM_Inputs setSubAssemblyExplodePolicy(Short value) { this.SubAssemblyExplodePolicy = value; return this; } public ArrayList getRowHash() { return RowHash; } public BM_Inputs setRowHash(ArrayList value) { this.RowHash = value; return this; } } public static class BM_InstructionCustomFields { @Required() public String RecID = null; @Required() public String SettingName = null; public String SettingDescription = null; public Integer CellType = null; public String FieldParameter = null; @References(SY_Plugin.class) @Required() public UUID SY_Plugin_RecID = null; @Required() public Date LastSavedDateTime = null; public Integer DisplayOrder = null; public String getRecID() { return RecID; } public BM_InstructionCustomFields setRecID(String value) { this.RecID = value; return this; } public String getSettingName() { return SettingName; } public BM_InstructionCustomFields setSettingName(String value) { this.SettingName = value; return this; } public String getSettingDescription() { return SettingDescription; } public BM_InstructionCustomFields setSettingDescription(String value) { this.SettingDescription = value; return this; } public Integer getCellType() { return CellType; } public BM_InstructionCustomFields setCellType(Integer value) { this.CellType = value; return this; } public String getFieldParameter() { return FieldParameter; } public BM_InstructionCustomFields setFieldParameter(String value) { this.FieldParameter = value; return this; } public UUID getSyPluginRecID() { return SY_Plugin_RecID; } public BM_InstructionCustomFields setSyPluginRecID(UUID value) { this.SY_Plugin_RecID = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public BM_InstructionCustomFields setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Integer getDisplayOrder() { return DisplayOrder; } public BM_InstructionCustomFields setDisplayOrder(Integer value) { this.DisplayOrder = value; return this; } } public static class BM_InstructionCustomValues { @Required() public String RecID = null; @References(BM_Instructions.class) @Required() public String BM_Instructions_RecID = null; @References(BM_InstructionCustomFields.class) @Required() public String BM_InstructionCustomFields_RecID = null; public String Contents = null; @Required() public Date LastSavedDateTime = null; public String getRecID() { return RecID; } public BM_InstructionCustomValues setRecID(String value) { this.RecID = value; return this; } public String getBmInstructionsRecID() { return BM_Instructions_RecID; } public BM_InstructionCustomValues setBmInstructionsRecID(String value) { this.BM_Instructions_RecID = value; return this; } public String getBmInstructionCustomFieldsRecID() { return BM_InstructionCustomFields_RecID; } public BM_InstructionCustomValues setBmInstructionCustomFieldsRecID(String value) { this.BM_InstructionCustomFields_RecID = value; return this; } public String getContents() { return Contents; } public BM_InstructionCustomValues setContents(String value) { this.Contents = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public BM_InstructionCustomValues setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } } public static class BM_Instructions { @Required() public String RecID = null; @References(BM_Stages.class) @Required() public String BM_Stages_RecID = null; @Required() public Integer ItemNo = null; @Required() public String InstructionText = null; @Required() public ArrayList RowHash = null; public String getRecID() { return RecID; } public BM_Instructions setRecID(String value) { this.RecID = value; return this; } public String getBmStagesRecID() { return BM_Stages_RecID; } public BM_Instructions setBmStagesRecID(String value) { this.BM_Stages_RecID = value; return this; } public Integer getItemNo() { return ItemNo; } public BM_Instructions setItemNo(Integer value) { this.ItemNo = value; return this; } public String getInstructionText() { return InstructionText; } public BM_Instructions setInstructionText(String value) { this.InstructionText = value; return this; } public ArrayList getRowHash() { return RowHash; } public BM_Instructions setRowHash(ArrayList value) { this.RowHash = value; return this; } } public static class BM_Main { @Required() public String RecID = null; @Required() public String BillNo = null; @Required() public String Description = null; @Required() public Boolean IsEnabled = null; @Required() public Date LastSavedDateTime = null; @Required() public ArrayList RowHash = null; @References(BM_ProductionLine.class) public String BM_ProductionLine_RecID = null; public String getRecID() { return RecID; } public BM_Main setRecID(String value) { this.RecID = value; return this; } public String getBillNo() { return BillNo; } public BM_Main setBillNo(String value) { this.BillNo = value; return this; } public String getDescription() { return Description; } public BM_Main setDescription(String value) { this.Description = value; return this; } public Boolean getIsEnabled() { return IsEnabled; } public BM_Main setIsEnabled(Boolean value) { this.IsEnabled = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public BM_Main setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public ArrayList getRowHash() { return RowHash; } public BM_Main setRowHash(ArrayList value) { this.RowHash = value; return this; } public String getBmProductionLineRecID() { return BM_ProductionLine_RecID; } public BM_Main setBmProductionLineRecID(String value) { this.BM_ProductionLine_RecID = value; return this; } } public static class BM_Notes { @Required() public String RecID = null; @References(BM_Main.class) @Required() public String BM_Main_RecID = null; @Required() public String NoteTypeID = null; @Required() public Date LastSavedDateTime = null; @References(HR_Staff.class) @Required() public String LastSavedByStaffID = null; public String NoteText = null; @Required() public Integer ItemNo = null; public String getRecID() { return RecID; } public BM_Notes setRecID(String value) { this.RecID = value; return this; } public String getBmMainRecID() { return BM_Main_RecID; } public BM_Notes setBmMainRecID(String value) { this.BM_Main_RecID = value; return this; } public String getNoteTypeID() { return NoteTypeID; } public BM_Notes setNoteTypeID(String value) { this.NoteTypeID = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public BM_Notes setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public String getLastSavedByStaffID() { return LastSavedByStaffID; } public BM_Notes setLastSavedByStaffID(String value) { this.LastSavedByStaffID = value; return this; } public String getNoteText() { return NoteText; } public BM_Notes setNoteText(String value) { this.NoteText = value; return this; } public Integer getItemNo() { return ItemNo; } public BM_Notes setItemNo(Integer value) { this.ItemNo = value; return this; } } public static class BM_OutputCustomFields { @Required() public String RecID = null; @Required() public String SettingName = null; public String SettingDescription = null; public Integer CellType = null; public String FieldParameter = null; @References(SY_Plugin.class) @Required() public UUID SY_Plugin_RecID = null; @Required() public Date LastSavedDateTime = null; public Integer DisplayOrder = null; public String getRecID() { return RecID; } public BM_OutputCustomFields setRecID(String value) { this.RecID = value; return this; } public String getSettingName() { return SettingName; } public BM_OutputCustomFields setSettingName(String value) { this.SettingName = value; return this; } public String getSettingDescription() { return SettingDescription; } public BM_OutputCustomFields setSettingDescription(String value) { this.SettingDescription = value; return this; } public Integer getCellType() { return CellType; } public BM_OutputCustomFields setCellType(Integer value) { this.CellType = value; return this; } public String getFieldParameter() { return FieldParameter; } public BM_OutputCustomFields setFieldParameter(String value) { this.FieldParameter = value; return this; } public UUID getSyPluginRecID() { return SY_Plugin_RecID; } public BM_OutputCustomFields setSyPluginRecID(UUID value) { this.SY_Plugin_RecID = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public BM_OutputCustomFields setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Integer getDisplayOrder() { return DisplayOrder; } public BM_OutputCustomFields setDisplayOrder(Integer value) { this.DisplayOrder = value; return this; } } public static class BM_OutputCustomValues { @Required() public String RecID = null; @References(BM_Outputs.class) @Required() public String BM_Outputs_RecID = null; @References(BM_OutputCustomFields.class) @Required() public String BM_OutputCustomFields_RecID = null; public String Contents = null; @Required() public Date LastSavedDateTime = null; public String getRecID() { return RecID; } public BM_OutputCustomValues setRecID(String value) { this.RecID = value; return this; } public String getBmOutputsRecID() { return BM_Outputs_RecID; } public BM_OutputCustomValues setBmOutputsRecID(String value) { this.BM_Outputs_RecID = value; return this; } public String getBmOutputCustomFieldsRecID() { return BM_OutputCustomFields_RecID; } public BM_OutputCustomValues setBmOutputCustomFieldsRecID(String value) { this.BM_OutputCustomFields_RecID = value; return this; } public String getContents() { return Contents; } public BM_OutputCustomValues setContents(String value) { this.Contents = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public BM_OutputCustomValues setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } } public static class BM_Outputs { @Required() public String RecID = null; @References(BM_Main.class) @Required() public String BM_Main_RecID = null; @Required() public Integer ItemNo = null; @References(IN_Main.class) @Required() public String InventoryID = null; @Required() public Boolean IsRatio = null; @Required() public Boolean IsPrimary = null; @Required() public BigDecimal Quantity = null; public String Note = null; @Required() public BigDecimal CostPercentage = null; @Required() public ArrayList RowHash = null; public String getRecID() { return RecID; } public BM_Outputs setRecID(String value) { this.RecID = value; return this; } public String getBmMainRecID() { return BM_Main_RecID; } public BM_Outputs setBmMainRecID(String value) { this.BM_Main_RecID = value; return this; } public Integer getItemNo() { return ItemNo; } public BM_Outputs setItemNo(Integer value) { this.ItemNo = value; return this; } public String getInventoryID() { return InventoryID; } public BM_Outputs setInventoryID(String value) { this.InventoryID = value; return this; } public Boolean getIsRatio() { return IsRatio; } public BM_Outputs setIsRatio(Boolean value) { this.IsRatio = value; return this; } public Boolean getIsPrimary() { return IsPrimary; } public BM_Outputs setIsPrimary(Boolean value) { this.IsPrimary = value; return this; } public BigDecimal getQuantity() { return Quantity; } public BM_Outputs setQuantity(BigDecimal value) { this.Quantity = value; return this; } public String getNote() { return Note; } public BM_Outputs setNote(String value) { this.Note = value; return this; } public BigDecimal getCostPercentage() { return CostPercentage; } public BM_Outputs setCostPercentage(BigDecimal value) { this.CostPercentage = value; return this; } public ArrayList getRowHash() { return RowHash; } public BM_Outputs setRowHash(ArrayList value) { this.RowHash = value; return this; } } public static class BM_ProductionArea { @Required() public String RecID = null; @Required() public String ProductionAreaNo = null; @Required() public String Name = null; public String Description = null; @Required() public Boolean IsEnabled = null; @Required() public Date LastSavedDateTime = null; @Required() public ArrayList RowHash = null; public String getRecID() { return RecID; } public BM_ProductionArea setRecID(String value) { this.RecID = value; return this; } public String getProductionAreaNo() { return ProductionAreaNo; } public BM_ProductionArea setProductionAreaNo(String value) { this.ProductionAreaNo = value; return this; } public String getName() { return Name; } public BM_ProductionArea setName(String value) { this.Name = value; return this; } public String getDescription() { return Description; } public BM_ProductionArea setDescription(String value) { this.Description = value; return this; } public Boolean getIsEnabled() { return IsEnabled; } public BM_ProductionArea setIsEnabled(Boolean value) { this.IsEnabled = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public BM_ProductionArea setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public ArrayList getRowHash() { return RowHash; } public BM_ProductionArea setRowHash(ArrayList value) { this.RowHash = value; return this; } } public static class BM_ProductionLine { @Required() public String RecID = null; @References(BM_ProductionArea.class) @Required() public String BM_ProductionArea_RecID = null; @Required() public String Name = null; public String Description = null; @Required() public Boolean IsEnabled = null; @Required() public Integer ItemNo = null; @Required() public ArrayList RowHash = null; public String getRecID() { return RecID; } public BM_ProductionLine setRecID(String value) { this.RecID = value; return this; } public String getBmProductionAreaRecID() { return BM_ProductionArea_RecID; } public BM_ProductionLine setBmProductionAreaRecID(String value) { this.BM_ProductionArea_RecID = value; return this; } public String getName() { return Name; } public BM_ProductionLine setName(String value) { this.Name = value; return this; } public String getDescription() { return Description; } public BM_ProductionLine setDescription(String value) { this.Description = value; return this; } public Boolean getIsEnabled() { return IsEnabled; } public BM_ProductionLine setIsEnabled(Boolean value) { this.IsEnabled = value; return this; } public Integer getItemNo() { return ItemNo; } public BM_ProductionLine setItemNo(Integer value) { this.ItemNo = value; return this; } public ArrayList getRowHash() { return RowHash; } public BM_ProductionLine setRowHash(ArrayList value) { this.RowHash = value; return this; } } public static class BM_ProductionLineWorkCentre { @Required() public String RecID = null; @References(BM_ProductionLine.class) @Required() public String BM_ProductionLine_RecID = null; @References(BM_WorkCentre.class) @Required() public String BM_WorkCentre_RecID = null; @Required() public Integer ItemNo = null; @Required() public ArrayList RowHash = null; public String getRecID() { return RecID; } public BM_ProductionLineWorkCentre setRecID(String value) { this.RecID = value; return this; } public String getBmProductionLineRecID() { return BM_ProductionLine_RecID; } public BM_ProductionLineWorkCentre setBmProductionLineRecID(String value) { this.BM_ProductionLine_RecID = value; return this; } public String getBmWorkCentreRecID() { return BM_WorkCentre_RecID; } public BM_ProductionLineWorkCentre setBmWorkCentreRecID(String value) { this.BM_WorkCentre_RecID = value; return this; } public Integer getItemNo() { return ItemNo; } public BM_ProductionLineWorkCentre setItemNo(Integer value) { this.ItemNo = value; return this; } public ArrayList getRowHash() { return RowHash; } public BM_ProductionLineWorkCentre setRowHash(ArrayList value) { this.RowHash = value; return this; } } public static class BM_Shift { @Required() public String RecID = null; @References(IN_Logical.class) @Required() public String IN_LogicalID = null; @Required() public String Name = null; @Required() public String Description = null; @Required() public Boolean IsEnabled = null; @Required() public Date LastSavedDateTime = null; @Required() public ArrayList RowHash = null; @Required() public Boolean IsDefault = null; public String getRecID() { return RecID; } public BM_Shift setRecID(String value) { this.RecID = value; return this; } public String getInLogicalID() { return IN_LogicalID; } public BM_Shift setInLogicalID(String value) { this.IN_LogicalID = value; return this; } public String getName() { return Name; } public BM_Shift setName(String value) { this.Name = value; return this; } public String getDescription() { return Description; } public BM_Shift setDescription(String value) { this.Description = value; return this; } public Boolean getIsEnabled() { return IsEnabled; } public BM_Shift setIsEnabled(Boolean value) { this.IsEnabled = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public BM_Shift setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public ArrayList getRowHash() { return RowHash; } public BM_Shift setRowHash(ArrayList value) { this.RowHash = value; return this; } public Boolean getIsDefault() { return IsDefault; } public BM_Shift setIsDefault(Boolean value) { this.IsDefault = value; return this; } } public static class BM_ShiftWeekday { @Required() public String RecID = null; @Required() public Integer ItemNo = null; @References(BM_Shift.class) @Required() public String BM_Shift_RecID = null; @Required() public String Name = null; @Required() public Boolean IsWorkDay = null; public Date StartDateTime = null; public Date EndDateTime = null; @Required() public ArrayList RowHash = null; public String getRecID() { return RecID; } public BM_ShiftWeekday setRecID(String value) { this.RecID = value; return this; } public Integer getItemNo() { return ItemNo; } public BM_ShiftWeekday setItemNo(Integer value) { this.ItemNo = value; return this; } public String getBmShiftRecID() { return BM_Shift_RecID; } public BM_ShiftWeekday setBmShiftRecID(String value) { this.BM_Shift_RecID = value; return this; } public String getName() { return Name; } public BM_ShiftWeekday setName(String value) { this.Name = value; return this; } public Boolean getIsWorkDay() { return IsWorkDay; } public BM_ShiftWeekday setIsWorkDay(Boolean value) { this.IsWorkDay = value; return this; } public Date getStartDateTime() { return StartDateTime; } public BM_ShiftWeekday setStartDateTime(Date value) { this.StartDateTime = value; return this; } public Date getEndDateTime() { return EndDateTime; } public BM_ShiftWeekday setEndDateTime(Date value) { this.EndDateTime = value; return this; } public ArrayList getRowHash() { return RowHash; } public BM_ShiftWeekday setRowHash(ArrayList value) { this.RowHash = value; return this; } } public static class BM_StageCustomFields { @Required() public String RecID = null; @Required() public String SettingName = null; public String SettingDescription = null; public Integer CellType = null; public String FieldParameter = null; @References(SY_Plugin.class) @Required() public UUID SY_Plugin_RecID = null; @Required() public Date LastSavedDateTime = null; public Integer DisplayOrder = null; public String getRecID() { return RecID; } public BM_StageCustomFields setRecID(String value) { this.RecID = value; return this; } public String getSettingName() { return SettingName; } public BM_StageCustomFields setSettingName(String value) { this.SettingName = value; return this; } public String getSettingDescription() { return SettingDescription; } public BM_StageCustomFields setSettingDescription(String value) { this.SettingDescription = value; return this; } public Integer getCellType() { return CellType; } public BM_StageCustomFields setCellType(Integer value) { this.CellType = value; return this; } public String getFieldParameter() { return FieldParameter; } public BM_StageCustomFields setFieldParameter(String value) { this.FieldParameter = value; return this; } public UUID getSyPluginRecID() { return SY_Plugin_RecID; } public BM_StageCustomFields setSyPluginRecID(UUID value) { this.SY_Plugin_RecID = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public BM_StageCustomFields setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Integer getDisplayOrder() { return DisplayOrder; } public BM_StageCustomFields setDisplayOrder(Integer value) { this.DisplayOrder = value; return this; } } public static class BM_StageCustomValues { @Required() public String RecID = null; @References(BM_Stages.class) @Required() public String BM_Stages_RecID = null; @References(BM_StageCustomFields.class) @Required() public String BM_StageCustomFields_RecID = null; public String Contents = null; @Required() public Date LastSavedDateTime = null; public String getRecID() { return RecID; } public BM_StageCustomValues setRecID(String value) { this.RecID = value; return this; } public String getBmStagesRecID() { return BM_Stages_RecID; } public BM_StageCustomValues setBmStagesRecID(String value) { this.BM_Stages_RecID = value; return this; } public String getBmStageCustomFieldsRecID() { return BM_StageCustomFields_RecID; } public BM_StageCustomValues setBmStageCustomFieldsRecID(String value) { this.BM_StageCustomFields_RecID = value; return this; } public String getContents() { return Contents; } public BM_StageCustomValues setContents(String value) { this.Contents = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public BM_StageCustomValues setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } } public static class BM_Stages { @Required() public String RecID = null; @References(BM_Main.class) @Required() public String BM_Main_RecID = null; @Required() public Integer ItemNo = null; @Required() public String Name = null; @References(BM_ProductionLineWorkCentre.class) public String BM_ProductionLineWorkCentre_RecID = null; public BigDecimal RequiredCapacity = null; @Required() public ArrayList RowHash = null; public String getRecID() { return RecID; } public BM_Stages setRecID(String value) { this.RecID = value; return this; } public String getBmMainRecID() { return BM_Main_RecID; } public BM_Stages setBmMainRecID(String value) { this.BM_Main_RecID = value; return this; } public Integer getItemNo() { return ItemNo; } public BM_Stages setItemNo(Integer value) { this.ItemNo = value; return this; } public String getName() { return Name; } public BM_Stages setName(String value) { this.Name = value; return this; } public String getBmProductionLineWorkCentreRecID() { return BM_ProductionLineWorkCentre_RecID; } public BM_Stages setBmProductionLineWorkCentreRecID(String value) { this.BM_ProductionLineWorkCentre_RecID = value; return this; } public BigDecimal getRequiredCapacity() { return RequiredCapacity; } public BM_Stages setRequiredCapacity(BigDecimal value) { this.RequiredCapacity = value; return this; } public ArrayList getRowHash() { return RowHash; } public BM_Stages setRowHash(ArrayList value) { this.RowHash = value; return this; } } public static class BM_WarehouseProductionArea { @Required() public String RecID = null; @References(BM_ProductionArea.class) @Required() public String BM_ProductionArea_RecID = null; @References(IN_Logical.class) @Required() public String IN_Logical_IN_LogicalID = null; @Required() public String ProductionAreaNo = null; @Required() public String Name = null; public String Description = null; @Required() public Boolean IsEnabled = null; @Required() public Integer ItemNo = null; @Required() public Date LastSavedDateTime = null; @Required() public ArrayList RowHash = null; public String getRecID() { return RecID; } public BM_WarehouseProductionArea setRecID(String value) { this.RecID = value; return this; } public String getBmProductionAreaRecID() { return BM_ProductionArea_RecID; } public BM_WarehouseProductionArea setBmProductionAreaRecID(String value) { this.BM_ProductionArea_RecID = value; return this; } public String getInLogicalInLogicalID() { return IN_Logical_IN_LogicalID; } public BM_WarehouseProductionArea setInLogicalInLogicalID(String value) { this.IN_Logical_IN_LogicalID = value; return this; } public String getProductionAreaNo() { return ProductionAreaNo; } public BM_WarehouseProductionArea setProductionAreaNo(String value) { this.ProductionAreaNo = value; return this; } public String getName() { return Name; } public BM_WarehouseProductionArea setName(String value) { this.Name = value; return this; } public String getDescription() { return Description; } public BM_WarehouseProductionArea setDescription(String value) { this.Description = value; return this; } public Boolean getIsEnabled() { return IsEnabled; } public BM_WarehouseProductionArea setIsEnabled(Boolean value) { this.IsEnabled = value; return this; } public Integer getItemNo() { return ItemNo; } public BM_WarehouseProductionArea setItemNo(Integer value) { this.ItemNo = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public BM_WarehouseProductionArea setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public ArrayList getRowHash() { return RowHash; } public BM_WarehouseProductionArea setRowHash(ArrayList value) { this.RowHash = value; return this; } } public static class BM_WarehouseProductionLine { @Required() public String RecID = null; @References(BM_WarehouseProductionArea.class) @Required() public String BM_WarehouseProductionArea_RecID = null; @References(BM_ProductionLine.class) @Required() public String BM_ProductionLine_RecID = null; @Required() public String Name = null; public String Description = null; @Required() public Boolean IsEnabled = null; @Required() public Integer ItemNo = null; @Required() public ArrayList RowHash = null; public String getRecID() { return RecID; } public BM_WarehouseProductionLine setRecID(String value) { this.RecID = value; return this; } public String getBmWarehouseProductionAreaRecID() { return BM_WarehouseProductionArea_RecID; } public BM_WarehouseProductionLine setBmWarehouseProductionAreaRecID(String value) { this.BM_WarehouseProductionArea_RecID = value; return this; } public String getBmProductionLineRecID() { return BM_ProductionLine_RecID; } public BM_WarehouseProductionLine setBmProductionLineRecID(String value) { this.BM_ProductionLine_RecID = value; return this; } public String getName() { return Name; } public BM_WarehouseProductionLine setName(String value) { this.Name = value; return this; } public String getDescription() { return Description; } public BM_WarehouseProductionLine setDescription(String value) { this.Description = value; return this; } public Boolean getIsEnabled() { return IsEnabled; } public BM_WarehouseProductionLine setIsEnabled(Boolean value) { this.IsEnabled = value; return this; } public Integer getItemNo() { return ItemNo; } public BM_WarehouseProductionLine setItemNo(Integer value) { this.ItemNo = value; return this; } public ArrayList getRowHash() { return RowHash; } public BM_WarehouseProductionLine setRowHash(ArrayList value) { this.RowHash = value; return this; } } public static class BM_WarehouseProductionLineWorkCentre { @Required() public String RecID = null; @References(BM_WarehouseProductionLine.class) @Required() public String BM_WarehouseProductionLine_RecID = null; @References(BM_WarehouseWorkCentre.class) @Required() public String BM_WarehouseWorkCentre_RecID = null; @Required() public Integer ItemNo = null; @Required() public ArrayList RowHash = null; public String getRecID() { return RecID; } public BM_WarehouseProductionLineWorkCentre setRecID(String value) { this.RecID = value; return this; } public String getBmWarehouseProductionLineRecID() { return BM_WarehouseProductionLine_RecID; } public BM_WarehouseProductionLineWorkCentre setBmWarehouseProductionLineRecID(String value) { this.BM_WarehouseProductionLine_RecID = value; return this; } public String getBmWarehouseWorkCentreRecID() { return BM_WarehouseWorkCentre_RecID; } public BM_WarehouseProductionLineWorkCentre setBmWarehouseWorkCentreRecID(String value) { this.BM_WarehouseWorkCentre_RecID = value; return this; } public Integer getItemNo() { return ItemNo; } public BM_WarehouseProductionLineWorkCentre setItemNo(Integer value) { this.ItemNo = value; return this; } public ArrayList getRowHash() { return RowHash; } public BM_WarehouseProductionLineWorkCentre setRowHash(ArrayList value) { this.RowHash = value; return this; } } public static class BM_WarehouseWorkCentre { @Required() public String RecID = null; @References(IN_Logical.class) @Required() public String IN_Logical_IN_LogicalID = null; @References(BM_WorkCentre.class) @Required() public String BM_WorkCentre_RecID = null; @Required() public String Name = null; public String Description = null; @Required() public Boolean IsEnabled = null; @References(HR_Skills.class) public String HR_skills_RecID = null; @Required() public Integer ItemNo = null; @Required() public Date LastSavedDateTime = null; @Required() public ArrayList RowHash = null; public String getRecID() { return RecID; } public BM_WarehouseWorkCentre setRecID(String value) { this.RecID = value; return this; } public String getInLogicalInLogicalID() { return IN_Logical_IN_LogicalID; } public BM_WarehouseWorkCentre setInLogicalInLogicalID(String value) { this.IN_Logical_IN_LogicalID = value; return this; } public String getBmWorkCentreRecID() { return BM_WorkCentre_RecID; } public BM_WarehouseWorkCentre setBmWorkCentreRecID(String value) { this.BM_WorkCentre_RecID = value; return this; } public String getName() { return Name; } public BM_WarehouseWorkCentre setName(String value) { this.Name = value; return this; } public String getDescription() { return Description; } public BM_WarehouseWorkCentre setDescription(String value) { this.Description = value; return this; } public Boolean getIsEnabled() { return IsEnabled; } public BM_WarehouseWorkCentre setIsEnabled(Boolean value) { this.IsEnabled = value; return this; } public String getHrSkillsRecID() { return HR_skills_RecID; } public BM_WarehouseWorkCentre setHrSkillsRecID(String value) { this.HR_skills_RecID = value; return this; } public Integer getItemNo() { return ItemNo; } public BM_WarehouseWorkCentre setItemNo(Integer value) { this.ItemNo = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public BM_WarehouseWorkCentre setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public ArrayList getRowHash() { return RowHash; } public BM_WarehouseWorkCentre setRowHash(ArrayList value) { this.RowHash = value; return this; } } public static class BM_WarehouseWorkCentreShiftWeekdayCapacity { @Required() public String RecID = null; @References(BM_WarehouseWorkCentre.class) @Required() public String BM_WarehouseWorkCentre_RecID = null; @Required() public String BM_Shift_RecID = null; @References(BM_ShiftWeekday.class) @Required() public String BM_ShiftWeekday_RecID = null; public BigDecimal Capacity = null; @Required() public Integer ItemNo = null; @Required() public Date LastSavedDateTime = null; @Required() public ArrayList RowHash = null; public String getRecID() { return RecID; } public BM_WarehouseWorkCentreShiftWeekdayCapacity setRecID(String value) { this.RecID = value; return this; } public String getBmWarehouseWorkCentreRecID() { return BM_WarehouseWorkCentre_RecID; } public BM_WarehouseWorkCentreShiftWeekdayCapacity setBmWarehouseWorkCentreRecID(String value) { this.BM_WarehouseWorkCentre_RecID = value; return this; } public String getBmShiftRecID() { return BM_Shift_RecID; } public BM_WarehouseWorkCentreShiftWeekdayCapacity setBmShiftRecID(String value) { this.BM_Shift_RecID = value; return this; } public String getBmShiftWeekdayRecID() { return BM_ShiftWeekday_RecID; } public BM_WarehouseWorkCentreShiftWeekdayCapacity setBmShiftWeekdayRecID(String value) { this.BM_ShiftWeekday_RecID = value; return this; } public BigDecimal getCapacity() { return Capacity; } public BM_WarehouseWorkCentreShiftWeekdayCapacity setCapacity(BigDecimal value) { this.Capacity = value; return this; } public Integer getItemNo() { return ItemNo; } public BM_WarehouseWorkCentreShiftWeekdayCapacity setItemNo(Integer value) { this.ItemNo = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public BM_WarehouseWorkCentreShiftWeekdayCapacity setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public ArrayList getRowHash() { return RowHash; } public BM_WarehouseWorkCentreShiftWeekdayCapacity setRowHash(ArrayList value) { this.RowHash = value; return this; } } public static class BM_WorkCentre { @Required() public String RecID = null; @Required() public String Name = null; public String Description = null; @Required() public Boolean IsEnabled = null; @Required() public Integer ItemNo = null; @Required() public Date LastSavedDateTime = null; @Required() public ArrayList RowHash = null; @References(HR_Skills.class) public String HR_skills_RecID = null; public String getRecID() { return RecID; } public BM_WorkCentre setRecID(String value) { this.RecID = value; return this; } public String getName() { return Name; } public BM_WorkCentre setName(String value) { this.Name = value; return this; } public String getDescription() { return Description; } public BM_WorkCentre setDescription(String value) { this.Description = value; return this; } public Boolean getIsEnabled() { return IsEnabled; } public BM_WorkCentre setIsEnabled(Boolean value) { this.IsEnabled = value; return this; } public Integer getItemNo() { return ItemNo; } public BM_WorkCentre setItemNo(Integer value) { this.ItemNo = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public BM_WorkCentre setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public ArrayList getRowHash() { return RowHash; } public BM_WorkCentre setRowHash(ArrayList value) { this.RowHash = value; return this; } public String getHrSkillsRecID() { return HR_skills_RecID; } public BM_WorkCentre setHrSkillsRecID(String value) { this.HR_skills_RecID = value; return this; } } public static class BM_WorkOrder { @Required() public String RecID = null; @Required() public String WorkOrderNo = null; public String Reference = null; @References(BM_Main.class) public String BM_Main_RecID = null; @Required() public String IN_LogicalID = null; @Required() public Date DateCreated = null; @Required() public Date DateRequired = null; @Required() public Date PlannedStartDate = null; @Required() public Date ActualStartDate = null; @Required() public Date DateCompleted = null; @Required() public BigDecimal ProductionQuantity = null; @Required() public Date LastSavedDateTime = null; @Required() public ArrayList RowHash = null; @References(BM_WarehouseProductionLine.class) public String BM_WarehouseProductionLine_RecID = null; @Required() public Integer Status = null; @References(BM_WorkOrder.class) public String Parent_BM_WorkOrder_RecID = null; @References(BM_WorkOrderInputs.class) public String Parent_BM_WorkOrderInputs_RecID = null; @Required() public Short WorkOrderType = null; @References(BM_WorkOrder.class) public String Reversal_BM_WorkOrder_RecID = null; public Boolean Migrated = null; @References(SO_Lines.class) public String SO_Lines_InvoiceLineID = null; public String getRecID() { return RecID; } public BM_WorkOrder setRecID(String value) { this.RecID = value; return this; } public String getWorkOrderNo() { return WorkOrderNo; } public BM_WorkOrder setWorkOrderNo(String value) { this.WorkOrderNo = value; return this; } public String getReference() { return Reference; } public BM_WorkOrder setReference(String value) { this.Reference = value; return this; } public String getBmMainRecID() { return BM_Main_RecID; } public BM_WorkOrder setBmMainRecID(String value) { this.BM_Main_RecID = value; return this; } public String getInLogicalID() { return IN_LogicalID; } public BM_WorkOrder setInLogicalID(String value) { this.IN_LogicalID = value; return this; } public Date getDateCreated() { return DateCreated; } public BM_WorkOrder setDateCreated(Date value) { this.DateCreated = value; return this; } public Date getDateRequired() { return DateRequired; } public BM_WorkOrder setDateRequired(Date value) { this.DateRequired = value; return this; } public Date getPlannedStartDate() { return PlannedStartDate; } public BM_WorkOrder setPlannedStartDate(Date value) { this.PlannedStartDate = value; return this; } public Date getActualStartDate() { return ActualStartDate; } public BM_WorkOrder setActualStartDate(Date value) { this.ActualStartDate = value; return this; } public Date getDateCompleted() { return DateCompleted; } public BM_WorkOrder setDateCompleted(Date value) { this.DateCompleted = value; return this; } public BigDecimal getProductionQuantity() { return ProductionQuantity; } public BM_WorkOrder setProductionQuantity(BigDecimal value) { this.ProductionQuantity = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public BM_WorkOrder setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public ArrayList getRowHash() { return RowHash; } public BM_WorkOrder setRowHash(ArrayList value) { this.RowHash = value; return this; } public String getBmWarehouseProductionLineRecID() { return BM_WarehouseProductionLine_RecID; } public BM_WorkOrder setBmWarehouseProductionLineRecID(String value) { this.BM_WarehouseProductionLine_RecID = value; return this; } public Integer getStatus() { return Status; } public BM_WorkOrder setStatus(Integer value) { this.Status = value; return this; } public String getParentBmWorkOrderRecID() { return Parent_BM_WorkOrder_RecID; } public BM_WorkOrder setParentBmWorkOrderRecID(String value) { this.Parent_BM_WorkOrder_RecID = value; return this; } public String getParentBmWorkOrderInputsRecID() { return Parent_BM_WorkOrderInputs_RecID; } public BM_WorkOrder setParentBmWorkOrderInputsRecID(String value) { this.Parent_BM_WorkOrderInputs_RecID = value; return this; } public Short getWorkOrderType() { return WorkOrderType; } public BM_WorkOrder setWorkOrderType(Short value) { this.WorkOrderType = value; return this; } public String getReversalBmWorkOrderRecID() { return Reversal_BM_WorkOrder_RecID; } public BM_WorkOrder setReversalBmWorkOrderRecID(String value) { this.Reversal_BM_WorkOrder_RecID = value; return this; } public Boolean isMigrated() { return Migrated; } public BM_WorkOrder setMigrated(Boolean value) { this.Migrated = value; return this; } public String getSoLinesInvoiceLineID() { return SO_Lines_InvoiceLineID; } public BM_WorkOrder setSoLinesInvoiceLineID(String value) { this.SO_Lines_InvoiceLineID = value; return this; } } public static class BM_WorkOrderCustomSetting { @Required() public String SettingID = null; @Required() public Date LastSavedDateTime = null; public String SettingDescription = null; public String SettingName = null; public Integer DisplayOrder = null; public Short CellType = null; public String ScriptFormatCell = null; public String ScriptButtonClicked = null; public String ScriptReadData = null; public String GridHandlerCode = null; @References(SY_Plugin.class) @Required() public UUID SY_Plugin_RecID = null; public String getSettingID() { return SettingID; } public BM_WorkOrderCustomSetting setSettingID(String value) { this.SettingID = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public BM_WorkOrderCustomSetting setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public String getSettingDescription() { return SettingDescription; } public BM_WorkOrderCustomSetting setSettingDescription(String value) { this.SettingDescription = value; return this; } public String getSettingName() { return SettingName; } public BM_WorkOrderCustomSetting setSettingName(String value) { this.SettingName = value; return this; } public Integer getDisplayOrder() { return DisplayOrder; } public BM_WorkOrderCustomSetting setDisplayOrder(Integer value) { this.DisplayOrder = value; return this; } public Short getCellType() { return CellType; } public BM_WorkOrderCustomSetting setCellType(Short value) { this.CellType = value; return this; } public String getScriptFormatCell() { return ScriptFormatCell; } public BM_WorkOrderCustomSetting setScriptFormatCell(String value) { this.ScriptFormatCell = value; return this; } public String getScriptButtonClicked() { return ScriptButtonClicked; } public BM_WorkOrderCustomSetting setScriptButtonClicked(String value) { this.ScriptButtonClicked = value; return this; } public String getScriptReadData() { return ScriptReadData; } public BM_WorkOrderCustomSetting setScriptReadData(String value) { this.ScriptReadData = value; return this; } public String getGridHandlerCode() { return GridHandlerCode; } public BM_WorkOrderCustomSetting setGridHandlerCode(String value) { this.GridHandlerCode = value; return this; } public UUID getSyPluginRecID() { return SY_Plugin_RecID; } public BM_WorkOrderCustomSetting setSyPluginRecID(UUID value) { this.SY_Plugin_RecID = value; return this; } } public static class BM_WorkOrderCustomSettingValues { @Required() public String SettingValueID = null; @References(BM_WorkOrderCustomSetting.class) public String SettingID = null; @References(BM_WorkOrder.class) @Required() public String BM_WorkOrder_RecID = null; public String Contents = null; @Required() public Date LastSavedDateTime = null; public String getSettingValueID() { return SettingValueID; } public BM_WorkOrderCustomSettingValues setSettingValueID(String value) { this.SettingValueID = value; return this; } public String getSettingID() { return SettingID; } public BM_WorkOrderCustomSettingValues setSettingID(String value) { this.SettingID = value; return this; } public String getBmWorkOrderRecID() { return BM_WorkOrder_RecID; } public BM_WorkOrderCustomSettingValues setBmWorkOrderRecID(String value) { this.BM_WorkOrder_RecID = value; return this; } public String getContents() { return Contents; } public BM_WorkOrderCustomSettingValues setContents(String value) { this.Contents = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public BM_WorkOrderCustomSettingValues setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } } public static class BM_WorkOrderDocuments { @Required() public String RecID = null; @References(BM_WorkOrder.class) @Required() public String BM_WorkOrder_RecID = null; @Required() public String DocumentTypeID = null; public Date LastSavedDateTime = null; @References(HR_Staff.class) @Required() public String LastSavedByStaffID = null; public ArrayList FileBinary = null; public String Description = null; public String PhysicalFileName = null; @Required() public Integer ItemNo = null; public String getRecID() { return RecID; } public BM_WorkOrderDocuments setRecID(String value) { this.RecID = value; return this; } public String getBmWorkOrderRecID() { return BM_WorkOrder_RecID; } public BM_WorkOrderDocuments setBmWorkOrderRecID(String value) { this.BM_WorkOrder_RecID = value; return this; } public String getDocumentTypeID() { return DocumentTypeID; } public BM_WorkOrderDocuments setDocumentTypeID(String value) { this.DocumentTypeID = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public BM_WorkOrderDocuments setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public String getLastSavedByStaffID() { return LastSavedByStaffID; } public BM_WorkOrderDocuments setLastSavedByStaffID(String value) { this.LastSavedByStaffID = value; return this; } public ArrayList getFileBinary() { return FileBinary; } public BM_WorkOrderDocuments setFileBinary(ArrayList value) { this.FileBinary = value; return this; } public String getDescription() { return Description; } public BM_WorkOrderDocuments setDescription(String value) { this.Description = value; return this; } public String getPhysicalFileName() { return PhysicalFileName; } public BM_WorkOrderDocuments setPhysicalFileName(String value) { this.PhysicalFileName = value; return this; } public Integer getItemNo() { return ItemNo; } public BM_WorkOrderDocuments setItemNo(Integer value) { this.ItemNo = value; return this; } } public static class BM_WorkOrderInputCustomFields { @Required() public String RecID = null; @Required() public String SettingName = null; public String SettingDescription = null; public Integer CellType = null; public String FieldParameter = null; @References(SY_Plugin.class) @Required() public UUID SY_Plugin_RecID = null; @Required() public Date LastSavedDateTime = null; public Integer DisplayOrder = null; public String getRecID() { return RecID; } public BM_WorkOrderInputCustomFields setRecID(String value) { this.RecID = value; return this; } public String getSettingName() { return SettingName; } public BM_WorkOrderInputCustomFields setSettingName(String value) { this.SettingName = value; return this; } public String getSettingDescription() { return SettingDescription; } public BM_WorkOrderInputCustomFields setSettingDescription(String value) { this.SettingDescription = value; return this; } public Integer getCellType() { return CellType; } public BM_WorkOrderInputCustomFields setCellType(Integer value) { this.CellType = value; return this; } public String getFieldParameter() { return FieldParameter; } public BM_WorkOrderInputCustomFields setFieldParameter(String value) { this.FieldParameter = value; return this; } public UUID getSyPluginRecID() { return SY_Plugin_RecID; } public BM_WorkOrderInputCustomFields setSyPluginRecID(UUID value) { this.SY_Plugin_RecID = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public BM_WorkOrderInputCustomFields setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Integer getDisplayOrder() { return DisplayOrder; } public BM_WorkOrderInputCustomFields setDisplayOrder(Integer value) { this.DisplayOrder = value; return this; } } public static class BM_WorkOrderInputCustomValues { @Required() public String RecID = null; @References(BM_WorkOrderInputs.class) @Required() public String BM_WorkOrderInputs_RecID = null; @References(BM_WorkOrderInputCustomFields.class) @Required() public String BM_WorkOrderInputCustomFields_RecID = null; public String Contents = null; @Required() public Date LastSavedDateTime = null; public String getRecID() { return RecID; } public BM_WorkOrderInputCustomValues setRecID(String value) { this.RecID = value; return this; } public String getBmWorkOrderInputsRecID() { return BM_WorkOrderInputs_RecID; } public BM_WorkOrderInputCustomValues setBmWorkOrderInputsRecID(String value) { this.BM_WorkOrderInputs_RecID = value; return this; } public String getBmWorkOrderInputCustomFieldsRecID() { return BM_WorkOrderInputCustomFields_RecID; } public BM_WorkOrderInputCustomValues setBmWorkOrderInputCustomFieldsRecID(String value) { this.BM_WorkOrderInputCustomFields_RecID = value; return this; } public String getContents() { return Contents; } public BM_WorkOrderInputCustomValues setContents(String value) { this.Contents = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public BM_WorkOrderInputCustomValues setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } } public static class BM_WorkOrderInputDetails { @Required() public String RecID = null; @References(BM_WorkOrderInputs.class) @Required() public String Parent_RecID = null; @References(IN_SOH.class) public String IN_SOH_LinkID = null; @Required() public BigDecimal Cost = null; @Required() public BigDecimal SpecialPrice = null; @Required() public BigDecimal Quantity = null; @Required() public String SerialNo = null; public Date ExpiryDate = null; @Required() public String BinLocation = null; @Required() public Date LastSavedDateTime = null; @Required() public ArrayList RowHash = null; @Required() public Integer ItemNo = null; public String getRecID() { return RecID; } public BM_WorkOrderInputDetails setRecID(String value) { this.RecID = value; return this; } public String getParentRecID() { return Parent_RecID; } public BM_WorkOrderInputDetails setParentRecID(String value) { this.Parent_RecID = value; return this; } public String getInSohLinkID() { return IN_SOH_LinkID; } public BM_WorkOrderInputDetails setInSohLinkID(String value) { this.IN_SOH_LinkID = value; return this; } public BigDecimal getCost() { return Cost; } public BM_WorkOrderInputDetails setCost(BigDecimal value) { this.Cost = value; return this; } public BigDecimal getSpecialPrice() { return SpecialPrice; } public BM_WorkOrderInputDetails setSpecialPrice(BigDecimal value) { this.SpecialPrice = value; return this; } public BigDecimal getQuantity() { return Quantity; } public BM_WorkOrderInputDetails setQuantity(BigDecimal value) { this.Quantity = value; return this; } public String getSerialNo() { return SerialNo; } public BM_WorkOrderInputDetails setSerialNo(String value) { this.SerialNo = value; return this; } public Date getExpiryDate() { return ExpiryDate; } public BM_WorkOrderInputDetails setExpiryDate(Date value) { this.ExpiryDate = value; return this; } public String getBinLocation() { return BinLocation; } public BM_WorkOrderInputDetails setBinLocation(String value) { this.BinLocation = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public BM_WorkOrderInputDetails setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public ArrayList getRowHash() { return RowHash; } public BM_WorkOrderInputDetails setRowHash(ArrayList value) { this.RowHash = value; return this; } public Integer getItemNo() { return ItemNo; } public BM_WorkOrderInputDetails setItemNo(Integer value) { this.ItemNo = value; return this; } } public static class BM_WorkOrderInputs { @Required() public String RecID = null; @References(BM_WorkOrderStages.class) @Required() public String BM_WorkOrderStages_RecID = null; @Required() public Integer ItemNo = null; @References(IN_Main.class) @Required() public String InventoryID = null; @Required() public Boolean IsRatio = null; @Required() public BigDecimal Quantity = null; @Required() public BigDecimal QuantityOnBackOrder = null; public String Note = null; @Required() public Date LastSavedDateTime = null; @Required() public ArrayList RowHash = null; @References(BM_Main.class) public String SubAssembly = null; @Required() public Short SubAssemblyExplodePolicy = null; public String getRecID() { return RecID; } public BM_WorkOrderInputs setRecID(String value) { this.RecID = value; return this; } public String getBmWorkOrderStagesRecID() { return BM_WorkOrderStages_RecID; } public BM_WorkOrderInputs setBmWorkOrderStagesRecID(String value) { this.BM_WorkOrderStages_RecID = value; return this; } public Integer getItemNo() { return ItemNo; } public BM_WorkOrderInputs setItemNo(Integer value) { this.ItemNo = value; return this; } public String getInventoryID() { return InventoryID; } public BM_WorkOrderInputs setInventoryID(String value) { this.InventoryID = value; return this; } public Boolean getIsRatio() { return IsRatio; } public BM_WorkOrderInputs setIsRatio(Boolean value) { this.IsRatio = value; return this; } public BigDecimal getQuantity() { return Quantity; } public BM_WorkOrderInputs setQuantity(BigDecimal value) { this.Quantity = value; return this; } public BigDecimal getQuantityOnBackOrder() { return QuantityOnBackOrder; } public BM_WorkOrderInputs setQuantityOnBackOrder(BigDecimal value) { this.QuantityOnBackOrder = value; return this; } public String getNote() { return Note; } public BM_WorkOrderInputs setNote(String value) { this.Note = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public BM_WorkOrderInputs setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public ArrayList getRowHash() { return RowHash; } public BM_WorkOrderInputs setRowHash(ArrayList value) { this.RowHash = value; return this; } public String getSubAssembly() { return SubAssembly; } public BM_WorkOrderInputs setSubAssembly(String value) { this.SubAssembly = value; return this; } public Short getSubAssemblyExplodePolicy() { return SubAssemblyExplodePolicy; } public BM_WorkOrderInputs setSubAssemblyExplodePolicy(Short value) { this.SubAssemblyExplodePolicy = value; return this; } } public static class BM_WorkOrderInputWastageDetails { @Required() public String RecID = null; @References(BM_WorkOrderInputs.class) @Required() public String Parent_RecID = null; @Required() public String IN_SOH_LinkID = null; @Required() public BigDecimal Cost = null; @Required() public BigDecimal SpecialPrice = null; @Required() public BigDecimal Quantity = null; @Required() public String SerialNo = null; @Required() public Date ExpiryDate = null; @Required() public String BinLocation = null; @Required() public Date LastSavedDateTime = null; @Required() public ArrayList RowHash = null; @Required() public Integer ItemNo = null; public String getRecID() { return RecID; } public BM_WorkOrderInputWastageDetails setRecID(String value) { this.RecID = value; return this; } public String getParentRecID() { return Parent_RecID; } public BM_WorkOrderInputWastageDetails setParentRecID(String value) { this.Parent_RecID = value; return this; } public String getInSohLinkID() { return IN_SOH_LinkID; } public BM_WorkOrderInputWastageDetails setInSohLinkID(String value) { this.IN_SOH_LinkID = value; return this; } public BigDecimal getCost() { return Cost; } public BM_WorkOrderInputWastageDetails setCost(BigDecimal value) { this.Cost = value; return this; } public BigDecimal getSpecialPrice() { return SpecialPrice; } public BM_WorkOrderInputWastageDetails setSpecialPrice(BigDecimal value) { this.SpecialPrice = value; return this; } public BigDecimal getQuantity() { return Quantity; } public BM_WorkOrderInputWastageDetails setQuantity(BigDecimal value) { this.Quantity = value; return this; } public String getSerialNo() { return SerialNo; } public BM_WorkOrderInputWastageDetails setSerialNo(String value) { this.SerialNo = value; return this; } public Date getExpiryDate() { return ExpiryDate; } public BM_WorkOrderInputWastageDetails setExpiryDate(Date value) { this.ExpiryDate = value; return this; } public String getBinLocation() { return BinLocation; } public BM_WorkOrderInputWastageDetails setBinLocation(String value) { this.BinLocation = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public BM_WorkOrderInputWastageDetails setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public ArrayList getRowHash() { return RowHash; } public BM_WorkOrderInputWastageDetails setRowHash(ArrayList value) { this.RowHash = value; return this; } public Integer getItemNo() { return ItemNo; } public BM_WorkOrderInputWastageDetails setItemNo(Integer value) { this.ItemNo = value; return this; } } public static class BM_WorkOrderInstructionCustomFields { @Required() public String RecID = null; @Required() public String SettingName = null; public String SettingDescription = null; public Integer CellType = null; public String FieldParameter = null; @References(SY_Plugin.class) @Required() public UUID SY_Plugin_RecID = null; @Required() public Date LastSavedDateTime = null; public Integer DisplayOrder = null; public String getRecID() { return RecID; } public BM_WorkOrderInstructionCustomFields setRecID(String value) { this.RecID = value; return this; } public String getSettingName() { return SettingName; } public BM_WorkOrderInstructionCustomFields setSettingName(String value) { this.SettingName = value; return this; } public String getSettingDescription() { return SettingDescription; } public BM_WorkOrderInstructionCustomFields setSettingDescription(String value) { this.SettingDescription = value; return this; } public Integer getCellType() { return CellType; } public BM_WorkOrderInstructionCustomFields setCellType(Integer value) { this.CellType = value; return this; } public String getFieldParameter() { return FieldParameter; } public BM_WorkOrderInstructionCustomFields setFieldParameter(String value) { this.FieldParameter = value; return this; } public UUID getSyPluginRecID() { return SY_Plugin_RecID; } public BM_WorkOrderInstructionCustomFields setSyPluginRecID(UUID value) { this.SY_Plugin_RecID = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public BM_WorkOrderInstructionCustomFields setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Integer getDisplayOrder() { return DisplayOrder; } public BM_WorkOrderInstructionCustomFields setDisplayOrder(Integer value) { this.DisplayOrder = value; return this; } } public static class BM_WorkOrderInstructionCustomValues { @Required() public String RecID = null; @References(BM_WorkOrderInstructions.class) @Required() public String BM_WorkOrderInstructions_RecID = null; @References(BM_WorkOrderInstructionCustomFields.class) @Required() public String BM_WorkOrderInstructionCustomFields_RecID = null; public String Contents = null; @Required() public Date LastSavedDateTime = null; public String getRecID() { return RecID; } public BM_WorkOrderInstructionCustomValues setRecID(String value) { this.RecID = value; return this; } public String getBmWorkOrderInstructionsRecID() { return BM_WorkOrderInstructions_RecID; } public BM_WorkOrderInstructionCustomValues setBmWorkOrderInstructionsRecID(String value) { this.BM_WorkOrderInstructions_RecID = value; return this; } public String getBmWorkOrderInstructionCustomFieldsRecID() { return BM_WorkOrderInstructionCustomFields_RecID; } public BM_WorkOrderInstructionCustomValues setBmWorkOrderInstructionCustomFieldsRecID(String value) { this.BM_WorkOrderInstructionCustomFields_RecID = value; return this; } public String getContents() { return Contents; } public BM_WorkOrderInstructionCustomValues setContents(String value) { this.Contents = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public BM_WorkOrderInstructionCustomValues setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } } public static class BM_WorkOrderInstructions { @Required() public String RecID = null; @References(BM_WorkOrderStages.class) @Required() public String BM_WorkOrderStages_RecID = null; @Required() public Integer ItemNo = null; @Required() public String InstructionText = null; @Required() public ArrayList RowHash = null; public String getRecID() { return RecID; } public BM_WorkOrderInstructions setRecID(String value) { this.RecID = value; return this; } public String getBmWorkOrderStagesRecID() { return BM_WorkOrderStages_RecID; } public BM_WorkOrderInstructions setBmWorkOrderStagesRecID(String value) { this.BM_WorkOrderStages_RecID = value; return this; } public Integer getItemNo() { return ItemNo; } public BM_WorkOrderInstructions setItemNo(Integer value) { this.ItemNo = value; return this; } public String getInstructionText() { return InstructionText; } public BM_WorkOrderInstructions setInstructionText(String value) { this.InstructionText = value; return this; } public ArrayList getRowHash() { return RowHash; } public BM_WorkOrderInstructions setRowHash(ArrayList value) { this.RowHash = value; return this; } } public static class BM_WorkOrderLineDetailsAllocation { @Required() public String RecID = null; @References(BM_WorkOrder.class) @Required() public String BM_WorkOrder_RecID = null; @References(BM_WorkOrderInputDetails.class) @Required() public String BM_WorkOrderInputDetails_RecID = null; @References(BM_WorkOrderOutputDetails.class) @Required() public String BM_WorkOrderOutputDetails_RecID = null; @Required() public BigDecimal InputQuantity = null; @Required() public BigDecimal OutputQuantity = null; @Required() public Date LastSavedDateTime = null; @Required() public ArrayList RowHash = null; public String getRecID() { return RecID; } public BM_WorkOrderLineDetailsAllocation setRecID(String value) { this.RecID = value; return this; } public String getBmWorkOrderRecID() { return BM_WorkOrder_RecID; } public BM_WorkOrderLineDetailsAllocation setBmWorkOrderRecID(String value) { this.BM_WorkOrder_RecID = value; return this; } public String getBmWorkOrderInputDetailsRecID() { return BM_WorkOrderInputDetails_RecID; } public BM_WorkOrderLineDetailsAllocation setBmWorkOrderInputDetailsRecID(String value) { this.BM_WorkOrderInputDetails_RecID = value; return this; } public String getBmWorkOrderOutputDetailsRecID() { return BM_WorkOrderOutputDetails_RecID; } public BM_WorkOrderLineDetailsAllocation setBmWorkOrderOutputDetailsRecID(String value) { this.BM_WorkOrderOutputDetails_RecID = value; return this; } public BigDecimal getInputQuantity() { return InputQuantity; } public BM_WorkOrderLineDetailsAllocation setInputQuantity(BigDecimal value) { this.InputQuantity = value; return this; } public BigDecimal getOutputQuantity() { return OutputQuantity; } public BM_WorkOrderLineDetailsAllocation setOutputQuantity(BigDecimal value) { this.OutputQuantity = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public BM_WorkOrderLineDetailsAllocation setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public ArrayList getRowHash() { return RowHash; } public BM_WorkOrderLineDetailsAllocation setRowHash(ArrayList value) { this.RowHash = value; return this; } } public static class BM_WorkOrderNotes { @Required() public String RecID = null; @References(BM_WorkOrder.class) @Required() public String BM_WorkOrder_RecID = null; @Required() public String NoteTypeID = null; @Required() public Date LastSavedDateTime = null; @References(HR_Staff.class) @Required() public String LastSavedByStaffID = null; public String NoteText = null; @Required() public Integer ItemNo = null; public String getRecID() { return RecID; } public BM_WorkOrderNotes setRecID(String value) { this.RecID = value; return this; } public String getBmWorkOrderRecID() { return BM_WorkOrder_RecID; } public BM_WorkOrderNotes setBmWorkOrderRecID(String value) { this.BM_WorkOrder_RecID = value; return this; } public String getNoteTypeID() { return NoteTypeID; } public BM_WorkOrderNotes setNoteTypeID(String value) { this.NoteTypeID = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public BM_WorkOrderNotes setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public String getLastSavedByStaffID() { return LastSavedByStaffID; } public BM_WorkOrderNotes setLastSavedByStaffID(String value) { this.LastSavedByStaffID = value; return this; } public String getNoteText() { return NoteText; } public BM_WorkOrderNotes setNoteText(String value) { this.NoteText = value; return this; } public Integer getItemNo() { return ItemNo; } public BM_WorkOrderNotes setItemNo(Integer value) { this.ItemNo = value; return this; } } public static class BM_WorkOrderOutputCustomFields { @Required() public String RecID = null; @Required() public String SettingName = null; public String SettingDescription = null; public Integer CellType = null; public String FieldParameter = null; @References(SY_Plugin.class) @Required() public UUID SY_Plugin_RecID = null; @Required() public Date LastSavedDateTime = null; public Integer DisplayOrder = null; public String getRecID() { return RecID; } public BM_WorkOrderOutputCustomFields setRecID(String value) { this.RecID = value; return this; } public String getSettingName() { return SettingName; } public BM_WorkOrderOutputCustomFields setSettingName(String value) { this.SettingName = value; return this; } public String getSettingDescription() { return SettingDescription; } public BM_WorkOrderOutputCustomFields setSettingDescription(String value) { this.SettingDescription = value; return this; } public Integer getCellType() { return CellType; } public BM_WorkOrderOutputCustomFields setCellType(Integer value) { this.CellType = value; return this; } public String getFieldParameter() { return FieldParameter; } public BM_WorkOrderOutputCustomFields setFieldParameter(String value) { this.FieldParameter = value; return this; } public UUID getSyPluginRecID() { return SY_Plugin_RecID; } public BM_WorkOrderOutputCustomFields setSyPluginRecID(UUID value) { this.SY_Plugin_RecID = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public BM_WorkOrderOutputCustomFields setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Integer getDisplayOrder() { return DisplayOrder; } public BM_WorkOrderOutputCustomFields setDisplayOrder(Integer value) { this.DisplayOrder = value; return this; } } public static class BM_WorkOrderOutputCustomValues { @Required() public String RecID = null; @References(BM_WorkOrderOutputs.class) @Required() public String BM_WorkOrderOutputs_RecID = null; @References(BM_WorkOrderOutputCustomFields.class) @Required() public String BM_WorkOrderOutputCustomFields_RecID = null; public String Contents = null; @Required() public Date LastSavedDateTime = null; public String getRecID() { return RecID; } public BM_WorkOrderOutputCustomValues setRecID(String value) { this.RecID = value; return this; } public String getBmWorkOrderOutputsRecID() { return BM_WorkOrderOutputs_RecID; } public BM_WorkOrderOutputCustomValues setBmWorkOrderOutputsRecID(String value) { this.BM_WorkOrderOutputs_RecID = value; return this; } public String getBmWorkOrderOutputCustomFieldsRecID() { return BM_WorkOrderOutputCustomFields_RecID; } public BM_WorkOrderOutputCustomValues setBmWorkOrderOutputCustomFieldsRecID(String value) { this.BM_WorkOrderOutputCustomFields_RecID = value; return this; } public String getContents() { return Contents; } public BM_WorkOrderOutputCustomValues setContents(String value) { this.Contents = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public BM_WorkOrderOutputCustomValues setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } } public static class BM_WorkOrderOutputDetails { @Required() public String RecID = null; @References(BM_WorkOrderOutputs.class) @Required() public String Parent_RecID = null; @References(IN_SOH.class) public String IN_SOH_LinkID = null; @Required() public BigDecimal Cost = null; @Required() public BigDecimal SpecialPrice = null; @Required() public BigDecimal Quantity = null; public String SerialNo = null; public Date ExpiryDate = null; @Required() public String BinLocation = null; @Required() public Date LastSavedDateTime = null; @Required() public ArrayList RowHash = null; @Required() public Integer ItemNo = null; public String getRecID() { return RecID; } public BM_WorkOrderOutputDetails setRecID(String value) { this.RecID = value; return this; } public String getParentRecID() { return Parent_RecID; } public BM_WorkOrderOutputDetails setParentRecID(String value) { this.Parent_RecID = value; return this; } public String getInSohLinkID() { return IN_SOH_LinkID; } public BM_WorkOrderOutputDetails setInSohLinkID(String value) { this.IN_SOH_LinkID = value; return this; } public BigDecimal getCost() { return Cost; } public BM_WorkOrderOutputDetails setCost(BigDecimal value) { this.Cost = value; return this; } public BigDecimal getSpecialPrice() { return SpecialPrice; } public BM_WorkOrderOutputDetails setSpecialPrice(BigDecimal value) { this.SpecialPrice = value; return this; } public BigDecimal getQuantity() { return Quantity; } public BM_WorkOrderOutputDetails setQuantity(BigDecimal value) { this.Quantity = value; return this; } public String getSerialNo() { return SerialNo; } public BM_WorkOrderOutputDetails setSerialNo(String value) { this.SerialNo = value; return this; } public Date getExpiryDate() { return ExpiryDate; } public BM_WorkOrderOutputDetails setExpiryDate(Date value) { this.ExpiryDate = value; return this; } public String getBinLocation() { return BinLocation; } public BM_WorkOrderOutputDetails setBinLocation(String value) { this.BinLocation = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public BM_WorkOrderOutputDetails setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public ArrayList getRowHash() { return RowHash; } public BM_WorkOrderOutputDetails setRowHash(ArrayList value) { this.RowHash = value; return this; } public Integer getItemNo() { return ItemNo; } public BM_WorkOrderOutputDetails setItemNo(Integer value) { this.ItemNo = value; return this; } } public static class BM_WorkOrderOutputs { @Required() public String RecID = null; @References(BM_WorkOrder.class) @Required() public String BM_WorkOrder_RecID = null; @Required() public Integer ItemNo = null; @References(IN_Main.class) @Required() public String InventoryID = null; @Required() public Boolean IsRatio = null; @Required() public Boolean IsPrimary = null; @Required() public BigDecimal Quantity = null; @Required() public BigDecimal QuantityOutput = null; @Required() public BigDecimal QuantityWrittenoff = null; public String Note = null; @Required() public BigDecimal CostPercentage = null; @Required() public Date LastSavedDateTime = null; @Required() public ArrayList RowHash = null; public String getRecID() { return RecID; } public BM_WorkOrderOutputs setRecID(String value) { this.RecID = value; return this; } public String getBmWorkOrderRecID() { return BM_WorkOrder_RecID; } public BM_WorkOrderOutputs setBmWorkOrderRecID(String value) { this.BM_WorkOrder_RecID = value; return this; } public Integer getItemNo() { return ItemNo; } public BM_WorkOrderOutputs setItemNo(Integer value) { this.ItemNo = value; return this; } public String getInventoryID() { return InventoryID; } public BM_WorkOrderOutputs setInventoryID(String value) { this.InventoryID = value; return this; } public Boolean getIsRatio() { return IsRatio; } public BM_WorkOrderOutputs setIsRatio(Boolean value) { this.IsRatio = value; return this; } public Boolean getIsPrimary() { return IsPrimary; } public BM_WorkOrderOutputs setIsPrimary(Boolean value) { this.IsPrimary = value; return this; } public BigDecimal getQuantity() { return Quantity; } public BM_WorkOrderOutputs setQuantity(BigDecimal value) { this.Quantity = value; return this; } public BigDecimal getQuantityOutput() { return QuantityOutput; } public BM_WorkOrderOutputs setQuantityOutput(BigDecimal value) { this.QuantityOutput = value; return this; } public BigDecimal getQuantityWrittenoff() { return QuantityWrittenoff; } public BM_WorkOrderOutputs setQuantityWrittenoff(BigDecimal value) { this.QuantityWrittenoff = value; return this; } public String getNote() { return Note; } public BM_WorkOrderOutputs setNote(String value) { this.Note = value; return this; } public BigDecimal getCostPercentage() { return CostPercentage; } public BM_WorkOrderOutputs setCostPercentage(BigDecimal value) { this.CostPercentage = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public BM_WorkOrderOutputs setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public ArrayList getRowHash() { return RowHash; } public BM_WorkOrderOutputs setRowHash(ArrayList value) { this.RowHash = value; return this; } } public static class BM_WorkOrderOutputWastageDetails { @Required() public String RecID = null; @References(BM_WorkOrderOutputs.class) @Required() public String Parent_RecID = null; public String IN_SOH_LinkID = null; @Required() public BigDecimal Cost = null; @Required() public BigDecimal SpecialPrice = null; @Required() public BigDecimal Quantity = null; public String SerialNo = null; public Date ExpiryDate = null; public String BinLocation = null; @Required() public Date LastSavedDateTime = null; @Required() public ArrayList RowHash = null; @Required() public Integer ItemNo = null; public String getRecID() { return RecID; } public BM_WorkOrderOutputWastageDetails setRecID(String value) { this.RecID = value; return this; } public String getParentRecID() { return Parent_RecID; } public BM_WorkOrderOutputWastageDetails setParentRecID(String value) { this.Parent_RecID = value; return this; } public String getInSohLinkID() { return IN_SOH_LinkID; } public BM_WorkOrderOutputWastageDetails setInSohLinkID(String value) { this.IN_SOH_LinkID = value; return this; } public BigDecimal getCost() { return Cost; } public BM_WorkOrderOutputWastageDetails setCost(BigDecimal value) { this.Cost = value; return this; } public BigDecimal getSpecialPrice() { return SpecialPrice; } public BM_WorkOrderOutputWastageDetails setSpecialPrice(BigDecimal value) { this.SpecialPrice = value; return this; } public BigDecimal getQuantity() { return Quantity; } public BM_WorkOrderOutputWastageDetails setQuantity(BigDecimal value) { this.Quantity = value; return this; } public String getSerialNo() { return SerialNo; } public BM_WorkOrderOutputWastageDetails setSerialNo(String value) { this.SerialNo = value; return this; } public Date getExpiryDate() { return ExpiryDate; } public BM_WorkOrderOutputWastageDetails setExpiryDate(Date value) { this.ExpiryDate = value; return this; } public String getBinLocation() { return BinLocation; } public BM_WorkOrderOutputWastageDetails setBinLocation(String value) { this.BinLocation = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public BM_WorkOrderOutputWastageDetails setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public ArrayList getRowHash() { return RowHash; } public BM_WorkOrderOutputWastageDetails setRowHash(ArrayList value) { this.RowHash = value; return this; } public Integer getItemNo() { return ItemNo; } public BM_WorkOrderOutputWastageDetails setItemNo(Integer value) { this.ItemNo = value; return this; } } public static class BM_WorkOrderStageCustomFields { @Required() public String RecID = null; @Required() public String SettingName = null; public String SettingDescription = null; public Integer CellType = null; public String FieldParameter = null; @References(SY_Plugin.class) @Required() public UUID SY_Plugin_RecID = null; @Required() public Date LastSavedDateTime = null; public Integer DisplayOrder = null; public String getRecID() { return RecID; } public BM_WorkOrderStageCustomFields setRecID(String value) { this.RecID = value; return this; } public String getSettingName() { return SettingName; } public BM_WorkOrderStageCustomFields setSettingName(String value) { this.SettingName = value; return this; } public String getSettingDescription() { return SettingDescription; } public BM_WorkOrderStageCustomFields setSettingDescription(String value) { this.SettingDescription = value; return this; } public Integer getCellType() { return CellType; } public BM_WorkOrderStageCustomFields setCellType(Integer value) { this.CellType = value; return this; } public String getFieldParameter() { return FieldParameter; } public BM_WorkOrderStageCustomFields setFieldParameter(String value) { this.FieldParameter = value; return this; } public UUID getSyPluginRecID() { return SY_Plugin_RecID; } public BM_WorkOrderStageCustomFields setSyPluginRecID(UUID value) { this.SY_Plugin_RecID = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public BM_WorkOrderStageCustomFields setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Integer getDisplayOrder() { return DisplayOrder; } public BM_WorkOrderStageCustomFields setDisplayOrder(Integer value) { this.DisplayOrder = value; return this; } } public static class BM_WorkOrderStageCustomValues { @Required() public String RecID = null; @References(BM_WorkOrderStages.class) @Required() public String BM_WorkOrderStages_RecID = null; @References(BM_WorkOrderStageCustomFields.class) @Required() public String BM_WorkOrderStageCustomFields_RecID = null; public String Contents = null; @Required() public Date LastSavedDateTime = null; public String getRecID() { return RecID; } public BM_WorkOrderStageCustomValues setRecID(String value) { this.RecID = value; return this; } public String getBmWorkOrderStagesRecID() { return BM_WorkOrderStages_RecID; } public BM_WorkOrderStageCustomValues setBmWorkOrderStagesRecID(String value) { this.BM_WorkOrderStages_RecID = value; return this; } public String getBmWorkOrderStageCustomFieldsRecID() { return BM_WorkOrderStageCustomFields_RecID; } public BM_WorkOrderStageCustomValues setBmWorkOrderStageCustomFieldsRecID(String value) { this.BM_WorkOrderStageCustomFields_RecID = value; return this; } public String getContents() { return Contents; } public BM_WorkOrderStageCustomValues setContents(String value) { this.Contents = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public BM_WorkOrderStageCustomValues setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } } public static class BM_WorkOrderStages { @Required() public String RecID = null; @References(BM_WorkOrder.class) @Required() public String BM_WorkOrder_RecID = null; @Required() public Integer ItemNo = null; @Required() public String Name = null; @References(BM_WarehouseProductionLineWorkCentre.class) public String BM_WarehouseProductionLineWorkCentre_RecID = null; public BigDecimal RequiredCapacity = null; @Required() public Short Status = null; @Required() public ArrayList RowHash = null; @Required() public Date StartDate = null; public String getRecID() { return RecID; } public BM_WorkOrderStages setRecID(String value) { this.RecID = value; return this; } public String getBmWorkOrderRecID() { return BM_WorkOrder_RecID; } public BM_WorkOrderStages setBmWorkOrderRecID(String value) { this.BM_WorkOrder_RecID = value; return this; } public Integer getItemNo() { return ItemNo; } public BM_WorkOrderStages setItemNo(Integer value) { this.ItemNo = value; return this; } public String getName() { return Name; } public BM_WorkOrderStages setName(String value) { this.Name = value; return this; } public String getBmWarehouseProductionLineWorkCentreRecID() { return BM_WarehouseProductionLineWorkCentre_RecID; } public BM_WorkOrderStages setBmWarehouseProductionLineWorkCentreRecID(String value) { this.BM_WarehouseProductionLineWorkCentre_RecID = value; return this; } public BigDecimal getRequiredCapacity() { return RequiredCapacity; } public BM_WorkOrderStages setRequiredCapacity(BigDecimal value) { this.RequiredCapacity = value; return this; } public Short getStatus() { return Status; } public BM_WorkOrderStages setStatus(Short value) { this.Status = value; return this; } public ArrayList getRowHash() { return RowHash; } public BM_WorkOrderStages setRowHash(ArrayList value) { this.RowHash = value; return this; } public Date getStartDate() { return StartDate; } public BM_WorkOrderStages setStartDate(Date value) { this.StartDate = value; return this; } } public static class BM_WorkOrderWastageLineDetailsAllocation { @Required() public String RecID = null; @References(BM_WorkOrder.class) @Required() public String BM_WorkOrder_RecID = null; @References(BM_WorkOrderInputDetails.class) @Required() public String BM_WorkOrderInputDetails_RecID = null; @References(BM_WorkOrderOutputWastageDetails.class) @Required() public String BM_WorkOrderOutputWastageDetails_RecID = null; @Required() public BigDecimal InputQuantity = null; @Required() public BigDecimal OutputQuantity = null; @Required() public Date LastSavedDateTime = null; @Required() public ArrayList RowHash = null; public String getRecID() { return RecID; } public BM_WorkOrderWastageLineDetailsAllocation setRecID(String value) { this.RecID = value; return this; } public String getBmWorkOrderRecID() { return BM_WorkOrder_RecID; } public BM_WorkOrderWastageLineDetailsAllocation setBmWorkOrderRecID(String value) { this.BM_WorkOrder_RecID = value; return this; } public String getBmWorkOrderInputDetailsRecID() { return BM_WorkOrderInputDetails_RecID; } public BM_WorkOrderWastageLineDetailsAllocation setBmWorkOrderInputDetailsRecID(String value) { this.BM_WorkOrderInputDetails_RecID = value; return this; } public String getBmWorkOrderOutputWastageDetailsRecID() { return BM_WorkOrderOutputWastageDetails_RecID; } public BM_WorkOrderWastageLineDetailsAllocation setBmWorkOrderOutputWastageDetailsRecID(String value) { this.BM_WorkOrderOutputWastageDetails_RecID = value; return this; } public BigDecimal getInputQuantity() { return InputQuantity; } public BM_WorkOrderWastageLineDetailsAllocation setInputQuantity(BigDecimal value) { this.InputQuantity = value; return this; } public BigDecimal getOutputQuantity() { return OutputQuantity; } public BM_WorkOrderWastageLineDetailsAllocation setOutputQuantity(BigDecimal value) { this.OutputQuantity = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public BM_WorkOrderWastageLineDetailsAllocation setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public ArrayList getRowHash() { return RowHash; } public BM_WorkOrderWastageLineDetailsAllocation setRowHash(ArrayList value) { this.RowHash = value; return this; } } public static class BO_ManualReleaseBatch { @Required() public String RecID = null; @Required() public String BatchNo = null; @Required() public Date LastSavedDateTime = null; @Required() public String LastSavedByStaffID = null; @Required() public Date CreatedDateTime = null; @Required() public String CreatedByStaffID = null; public Date ActivatedDateTime = null; @Required() public String ActivatedByStaffID = null; @Required() public String IN_LogicalID = null; @Required() public Short Status = null; public String Notes = null; public String BORunNo = null; public String getRecID() { return RecID; } public BO_ManualReleaseBatch setRecID(String value) { this.RecID = value; return this; } public String getBatchNo() { return BatchNo; } public BO_ManualReleaseBatch setBatchNo(String value) { this.BatchNo = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public BO_ManualReleaseBatch setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public String getLastSavedByStaffID() { return LastSavedByStaffID; } public BO_ManualReleaseBatch setLastSavedByStaffID(String value) { this.LastSavedByStaffID = value; return this; } public Date getCreatedDateTime() { return CreatedDateTime; } public BO_ManualReleaseBatch setCreatedDateTime(Date value) { this.CreatedDateTime = value; return this; } public String getCreatedByStaffID() { return CreatedByStaffID; } public BO_ManualReleaseBatch setCreatedByStaffID(String value) { this.CreatedByStaffID = value; return this; } public Date getActivatedDateTime() { return ActivatedDateTime; } public BO_ManualReleaseBatch setActivatedDateTime(Date value) { this.ActivatedDateTime = value; return this; } public String getActivatedByStaffID() { return ActivatedByStaffID; } public BO_ManualReleaseBatch setActivatedByStaffID(String value) { this.ActivatedByStaffID = value; return this; } public String getInLogicalID() { return IN_LogicalID; } public BO_ManualReleaseBatch setInLogicalID(String value) { this.IN_LogicalID = value; return this; } public Short getStatus() { return Status; } public BO_ManualReleaseBatch setStatus(Short value) { this.Status = value; return this; } public String getNotes() { return Notes; } public BO_ManualReleaseBatch setNotes(String value) { this.Notes = value; return this; } public String getBoRunNo() { return BORunNo; } public BO_ManualReleaseBatch setBoRunNo(String value) { this.BORunNo = value; return this; } } public static class BO_ManualReleaseBatchLines { @Required() public String RecID = null; @References(BO_ManualReleaseBatch.class) @Required() public String BatchID = null; @Required() public Integer LineNumber = null; @Required() public Date LastSavedDateTime = null; @Required() public String IN_OnBackOrder_OrdersOnBackID = null; @Required() public String InventoryID = null; @Required() public String PartNo = null; public String Description = null; @Required() public Integer QuantityDecimalPlaces = null; @Required() public BigDecimal BackOrderQuantity = null; @Required() public BigDecimal BackOrderValue = null; @Required() public BigDecimal QuantityAvailable = null; @Required() public Date InvoiceInitDate = null; @Required() public Date ExpectedDeliveryDate = null; @Required() public String BackOrderPriority = null; @Required() public Integer BackOrderPriorityWeight = null; @Required() public String DebtorID = null; @Required() public String DebtorAccountNo = null; public String DebtorName = null; @Required() public String InvoiceID = null; @Required() public String InvoiceNo = null; @Required() public String InvoiceHistoryID = null; @Required() public Integer HistoryNo = null; public String InvoiceLineID = null; public Boolean FulfillBackOrderFlag = null; @Required() public Short KitType = null; @Required() public Short BillType = null; @Required() public Short WholesaleInvoice = null; @Required() public Short OrderType = null; public String ErrorMessage = null; @Required() public BigDecimal QuantityLeft = null; public String getRecID() { return RecID; } public BO_ManualReleaseBatchLines setRecID(String value) { this.RecID = value; return this; } public String getBatchID() { return BatchID; } public BO_ManualReleaseBatchLines setBatchID(String value) { this.BatchID = value; return this; } public Integer getLineNumber() { return LineNumber; } public BO_ManualReleaseBatchLines setLineNumber(Integer value) { this.LineNumber = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public BO_ManualReleaseBatchLines setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public String getInOnBackOrderOrdersOnBackID() { return IN_OnBackOrder_OrdersOnBackID; } public BO_ManualReleaseBatchLines setInOnBackOrderOrdersOnBackID(String value) { this.IN_OnBackOrder_OrdersOnBackID = value; return this; } public String getInventoryID() { return InventoryID; } public BO_ManualReleaseBatchLines setInventoryID(String value) { this.InventoryID = value; return this; } public String getPartNo() { return PartNo; } public BO_ManualReleaseBatchLines setPartNo(String value) { this.PartNo = value; return this; } public String getDescription() { return Description; } public BO_ManualReleaseBatchLines setDescription(String value) { this.Description = value; return this; } public Integer getQuantityDecimalPlaces() { return QuantityDecimalPlaces; } public BO_ManualReleaseBatchLines setQuantityDecimalPlaces(Integer value) { this.QuantityDecimalPlaces = value; return this; } public BigDecimal getBackOrderQuantity() { return BackOrderQuantity; } public BO_ManualReleaseBatchLines setBackOrderQuantity(BigDecimal value) { this.BackOrderQuantity = value; return this; } public BigDecimal getBackOrderValue() { return BackOrderValue; } public BO_ManualReleaseBatchLines setBackOrderValue(BigDecimal value) { this.BackOrderValue = value; return this; } public BigDecimal getQuantityAvailable() { return QuantityAvailable; } public BO_ManualReleaseBatchLines setQuantityAvailable(BigDecimal value) { this.QuantityAvailable = value; return this; } public Date getInvoiceInitDate() { return InvoiceInitDate; } public BO_ManualReleaseBatchLines setInvoiceInitDate(Date value) { this.InvoiceInitDate = value; return this; } public Date getExpectedDeliveryDate() { return ExpectedDeliveryDate; } public BO_ManualReleaseBatchLines setExpectedDeliveryDate(Date value) { this.ExpectedDeliveryDate = value; return this; } public String getBackOrderPriority() { return BackOrderPriority; } public BO_ManualReleaseBatchLines setBackOrderPriority(String value) { this.BackOrderPriority = value; return this; } public Integer getBackOrderPriorityWeight() { return BackOrderPriorityWeight; } public BO_ManualReleaseBatchLines setBackOrderPriorityWeight(Integer value) { this.BackOrderPriorityWeight = value; return this; } public String getDebtorID() { return DebtorID; } public BO_ManualReleaseBatchLines setDebtorID(String value) { this.DebtorID = value; return this; } public String getDebtorAccountNo() { return DebtorAccountNo; } public BO_ManualReleaseBatchLines setDebtorAccountNo(String value) { this.DebtorAccountNo = value; return this; } public String getDebtorName() { return DebtorName; } public BO_ManualReleaseBatchLines setDebtorName(String value) { this.DebtorName = value; return this; } public String getInvoiceID() { return InvoiceID; } public BO_ManualReleaseBatchLines setInvoiceID(String value) { this.InvoiceID = value; return this; } public String getInvoiceNo() { return InvoiceNo; } public BO_ManualReleaseBatchLines setInvoiceNo(String value) { this.InvoiceNo = value; return this; } public String getInvoiceHistoryID() { return InvoiceHistoryID; } public BO_ManualReleaseBatchLines setInvoiceHistoryID(String value) { this.InvoiceHistoryID = value; return this; } public Integer getHistoryNo() { return HistoryNo; } public BO_ManualReleaseBatchLines setHistoryNo(Integer value) { this.HistoryNo = value; return this; } public String getInvoiceLineID() { return InvoiceLineID; } public BO_ManualReleaseBatchLines setInvoiceLineID(String value) { this.InvoiceLineID = value; return this; } public Boolean isFulfillBackOrderFlag() { return FulfillBackOrderFlag; } public BO_ManualReleaseBatchLines setFulfillBackOrderFlag(Boolean value) { this.FulfillBackOrderFlag = value; return this; } public Short getKitType() { return KitType; } public BO_ManualReleaseBatchLines setKitType(Short value) { this.KitType = value; return this; } public Short getBillType() { return BillType; } public BO_ManualReleaseBatchLines setBillType(Short value) { this.BillType = value; return this; } public Short getWholesaleInvoice() { return WholesaleInvoice; } public BO_ManualReleaseBatchLines setWholesaleInvoice(Short value) { this.WholesaleInvoice = value; return this; } public Short getOrderType() { return OrderType; } public BO_ManualReleaseBatchLines setOrderType(Short value) { this.OrderType = value; return this; } public String getErrorMessage() { return ErrorMessage; } public BO_ManualReleaseBatchLines setErrorMessage(String value) { this.ErrorMessage = value; return this; } public BigDecimal getQuantityLeft() { return QuantityLeft; } public BO_ManualReleaseBatchLines setQuantityLeft(BigDecimal value) { this.QuantityLeft = value; return this; } } public static class BO_ManualReleaseBatchReports { @Required() public String RecID = null; @References(BO_ManualReleaseBatch.class) @Required() public String BatchID = null; @Required() public Date LastSavedDateTime = null; @Required() public Integer DisplayOrder = null; @Required() public Short BillType = null; @Required() public Short TradingCategory = null; @Required() public Short BackOrderStatus = null; @Required() public Short ReportType = null; public String ReportDescription = null; public Integer NumberOfCopies = null; public Boolean PrintFlag = null; @References(SY_Report.class) @Required() public String SY_Report_RecID = null; @References(SY_PrintGroupLogicalPrinter.class) public String SY_PrintGroupLogicalPrinter_RecID = null; public String getRecID() { return RecID; } public BO_ManualReleaseBatchReports setRecID(String value) { this.RecID = value; return this; } public String getBatchID() { return BatchID; } public BO_ManualReleaseBatchReports setBatchID(String value) { this.BatchID = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public BO_ManualReleaseBatchReports setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Integer getDisplayOrder() { return DisplayOrder; } public BO_ManualReleaseBatchReports setDisplayOrder(Integer value) { this.DisplayOrder = value; return this; } public Short getBillType() { return BillType; } public BO_ManualReleaseBatchReports setBillType(Short value) { this.BillType = value; return this; } public Short getTradingCategory() { return TradingCategory; } public BO_ManualReleaseBatchReports setTradingCategory(Short value) { this.TradingCategory = value; return this; } public Short getBackOrderStatus() { return BackOrderStatus; } public BO_ManualReleaseBatchReports setBackOrderStatus(Short value) { this.BackOrderStatus = value; return this; } public Short getReportType() { return ReportType; } public BO_ManualReleaseBatchReports setReportType(Short value) { this.ReportType = value; return this; } public String getReportDescription() { return ReportDescription; } public BO_ManualReleaseBatchReports setReportDescription(String value) { this.ReportDescription = value; return this; } public Integer getNumberOfCopies() { return NumberOfCopies; } public BO_ManualReleaseBatchReports setNumberOfCopies(Integer value) { this.NumberOfCopies = value; return this; } public Boolean isPrintFlag() { return PrintFlag; } public BO_ManualReleaseBatchReports setPrintFlag(Boolean value) { this.PrintFlag = value; return this; } public String getSyReportRecID() { return SY_Report_RecID; } public BO_ManualReleaseBatchReports setSyReportRecID(String value) { this.SY_Report_RecID = value; return this; } public String getSyPrintGroupLogicalPrinterRecID() { return SY_PrintGroupLogicalPrinter_RecID; } public BO_ManualReleaseBatchReports setSyPrintGroupLogicalPrinterRecID(String value) { this.SY_PrintGroupLogicalPrinter_RecID = value; return this; } } public static class BO_Priorities { @Required() public String RecID = null; @Required() public String PriorityDescription = null; @Required() public Integer PriorityWeight = null; public Boolean DefaultPriority = null; public Date LastSavedDateTime = null; public String getRecID() { return RecID; } public BO_Priorities setRecID(String value) { this.RecID = value; return this; } public String getPriorityDescription() { return PriorityDescription; } public BO_Priorities setPriorityDescription(String value) { this.PriorityDescription = value; return this; } public Integer getPriorityWeight() { return PriorityWeight; } public BO_Priorities setPriorityWeight(Integer value) { this.PriorityWeight = value; return this; } public Boolean isDefaultPriority() { return DefaultPriority; } public BO_Priorities setDefaultPriority(Boolean value) { this.DefaultPriority = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public BO_Priorities setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } } public static class BR_CustomSetting { @Required() public String SettingID = null; @Required() public Date LastSavedDateTime = null; public String SettingDescription = null; public String SettingName = null; public BigDecimal DisplayOrder = null; public Short CellType = null; public String ScriptFormatCell = null; public String ScriptButtonClicked = null; public String ScriptReadData = null; @References(SY_Plugin.class) @Required() public UUID SY_Plugin_RecID = null; public String getSettingID() { return SettingID; } public BR_CustomSetting setSettingID(String value) { this.SettingID = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public BR_CustomSetting setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public String getSettingDescription() { return SettingDescription; } public BR_CustomSetting setSettingDescription(String value) { this.SettingDescription = value; return this; } public String getSettingName() { return SettingName; } public BR_CustomSetting setSettingName(String value) { this.SettingName = value; return this; } public BigDecimal getDisplayOrder() { return DisplayOrder; } public BR_CustomSetting setDisplayOrder(BigDecimal value) { this.DisplayOrder = value; return this; } public Short getCellType() { return CellType; } public BR_CustomSetting setCellType(Short value) { this.CellType = value; return this; } public String getScriptFormatCell() { return ScriptFormatCell; } public BR_CustomSetting setScriptFormatCell(String value) { this.ScriptFormatCell = value; return this; } public String getScriptButtonClicked() { return ScriptButtonClicked; } public BR_CustomSetting setScriptButtonClicked(String value) { this.ScriptButtonClicked = value; return this; } public String getScriptReadData() { return ScriptReadData; } public BR_CustomSetting setScriptReadData(String value) { this.ScriptReadData = value; return this; } public UUID getSyPluginRecID() { return SY_Plugin_RecID; } public BR_CustomSetting setSyPluginRecID(UUID value) { this.SY_Plugin_RecID = value; return this; } } public static class BR_CustomSettingValues { @Required() public String SettingValueID = null; @References(BR_CustomSetting.class) public String SettingID = null; @References(BR_Main.class) @Required() public String BankRecID = null; public String Contents = null; @Required() public Date LastSavedDateTime = null; public String getSettingValueID() { return SettingValueID; } public BR_CustomSettingValues setSettingValueID(String value) { this.SettingValueID = value; return this; } public String getSettingID() { return SettingID; } public BR_CustomSettingValues setSettingID(String value) { this.SettingID = value; return this; } public String getBankRecID() { return BankRecID; } public BR_CustomSettingValues setBankRecID(String value) { this.BankRecID = value; return this; } public String getContents() { return Contents; } public BR_CustomSettingValues setContents(String value) { this.Contents = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public BR_CustomSettingValues setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } } public static class BR_DirectCreditorPaymentAllocations { @Required() public String DirectCreditorPaymentAllocationID = null; @References(BR_DirectCreditorPayments.class) @Required() public String DirectCreditorPaymentID = null; public BigDecimal AmountAllocated = null; @References(CR_Trans.class) public String TransID = null; @References(HR_Staff.class) @Required() public String LastSavedByStaffID = null; public Date LastSavedDateTime = null; public BigDecimal DiscountAmountAllocated = null; public String getDirectCreditorPaymentAllocationID() { return DirectCreditorPaymentAllocationID; } public BR_DirectCreditorPaymentAllocations setDirectCreditorPaymentAllocationID(String value) { this.DirectCreditorPaymentAllocationID = value; return this; } public String getDirectCreditorPaymentID() { return DirectCreditorPaymentID; } public BR_DirectCreditorPaymentAllocations setDirectCreditorPaymentID(String value) { this.DirectCreditorPaymentID = value; return this; } public BigDecimal getAmountAllocated() { return AmountAllocated; } public BR_DirectCreditorPaymentAllocations setAmountAllocated(BigDecimal value) { this.AmountAllocated = value; return this; } public String getTransID() { return TransID; } public BR_DirectCreditorPaymentAllocations setTransID(String value) { this.TransID = value; return this; } public String getLastSavedByStaffID() { return LastSavedByStaffID; } public BR_DirectCreditorPaymentAllocations setLastSavedByStaffID(String value) { this.LastSavedByStaffID = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public BR_DirectCreditorPaymentAllocations setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public BigDecimal getDiscountAmountAllocated() { return DiscountAmountAllocated; } public BR_DirectCreditorPaymentAllocations setDiscountAmountAllocated(BigDecimal value) { this.DiscountAmountAllocated = value; return this; } } public static class BR_DirectCreditorPayments { @Required() public String DirectCreditorPaymentID = null; @References(BR_Main.class) @Required() public String BankRecID = null; @References(HR_Staff.class) @Required() public String CreatedByStaffID = null; public Date CreatedDateTime = null; @References(HR_Staff.class) @Required() public String LastSavedByStaffID = null; public Date LastSavedDateTime = null; public Integer LineNumber = null; public Date TransactionDateTime = null; public BigDecimal AmountIncGST = null; public Short DebitCredit = null; public String Remark = null; public Short Status = null; @References(GL_Ledger.class) public String GLLedgerID = null; @References(CR_Main.class) public String CreditorID = null; @References(GL_Ledger.class) public String DiscountGLLedgerID = null; public BigDecimal DiscountAmountIncGST = null; public String BankName = null; public String BankAccountNo = null; public String BSBN = null; public String BankAccountName = null; @References(TX_Main.class) public String DiscountTaxID = null; public BigDecimal DiscountTaxAmount = null; public BigDecimal DiscountTaxRate = null; public BigDecimal AmountReconciledIncGST = null; public String Reference = null; @References(SO_PaymentTypes.class) @Required() public String PaymentTypeID = null; public String RemitNo = null; public String getDirectCreditorPaymentID() { return DirectCreditorPaymentID; } public BR_DirectCreditorPayments setDirectCreditorPaymentID(String value) { this.DirectCreditorPaymentID = value; return this; } public String getBankRecID() { return BankRecID; } public BR_DirectCreditorPayments setBankRecID(String value) { this.BankRecID = value; return this; } public String getCreatedByStaffID() { return CreatedByStaffID; } public BR_DirectCreditorPayments setCreatedByStaffID(String value) { this.CreatedByStaffID = value; return this; } public Date getCreatedDateTime() { return CreatedDateTime; } public BR_DirectCreditorPayments setCreatedDateTime(Date value) { this.CreatedDateTime = value; return this; } public String getLastSavedByStaffID() { return LastSavedByStaffID; } public BR_DirectCreditorPayments setLastSavedByStaffID(String value) { this.LastSavedByStaffID = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public BR_DirectCreditorPayments setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Integer getLineNumber() { return LineNumber; } public BR_DirectCreditorPayments setLineNumber(Integer value) { this.LineNumber = value; return this; } public Date getTransactionDateTime() { return TransactionDateTime; } public BR_DirectCreditorPayments setTransactionDateTime(Date value) { this.TransactionDateTime = value; return this; } public BigDecimal getAmountIncGST() { return AmountIncGST; } public BR_DirectCreditorPayments setAmountIncGST(BigDecimal value) { this.AmountIncGST = value; return this; } public Short getDebitCredit() { return DebitCredit; } public BR_DirectCreditorPayments setDebitCredit(Short value) { this.DebitCredit = value; return this; } public String getRemark() { return Remark; } public BR_DirectCreditorPayments setRemark(String value) { this.Remark = value; return this; } public Short getStatus() { return Status; } public BR_DirectCreditorPayments setStatus(Short value) { this.Status = value; return this; } public String getGlLedgerID() { return GLLedgerID; } public BR_DirectCreditorPayments setGlLedgerID(String value) { this.GLLedgerID = value; return this; } public String getCreditorID() { return CreditorID; } public BR_DirectCreditorPayments setCreditorID(String value) { this.CreditorID = value; return this; } public String getDiscountGLLedgerID() { return DiscountGLLedgerID; } public BR_DirectCreditorPayments setDiscountGLLedgerID(String value) { this.DiscountGLLedgerID = value; return this; } public BigDecimal getDiscountAmountIncGST() { return DiscountAmountIncGST; } public BR_DirectCreditorPayments setDiscountAmountIncGST(BigDecimal value) { this.DiscountAmountIncGST = value; return this; } public String getBankName() { return BankName; } public BR_DirectCreditorPayments setBankName(String value) { this.BankName = value; return this; } public String getBankAccountNo() { return BankAccountNo; } public BR_DirectCreditorPayments setBankAccountNo(String value) { this.BankAccountNo = value; return this; } public String getBsbn() { return BSBN; } public BR_DirectCreditorPayments setBsbn(String value) { this.BSBN = value; return this; } public String getBankAccountName() { return BankAccountName; } public BR_DirectCreditorPayments setBankAccountName(String value) { this.BankAccountName = value; return this; } public String getDiscountTaxID() { return DiscountTaxID; } public BR_DirectCreditorPayments setDiscountTaxID(String value) { this.DiscountTaxID = value; return this; } public BigDecimal getDiscountTaxAmount() { return DiscountTaxAmount; } public BR_DirectCreditorPayments setDiscountTaxAmount(BigDecimal value) { this.DiscountTaxAmount = value; return this; } public BigDecimal getDiscountTaxRate() { return DiscountTaxRate; } public BR_DirectCreditorPayments setDiscountTaxRate(BigDecimal value) { this.DiscountTaxRate = value; return this; } public BigDecimal getAmountReconciledIncGST() { return AmountReconciledIncGST; } public BR_DirectCreditorPayments setAmountReconciledIncGST(BigDecimal value) { this.AmountReconciledIncGST = value; return this; } public String getReference() { return Reference; } public BR_DirectCreditorPayments setReference(String value) { this.Reference = value; return this; } public String getPaymentTypeID() { return PaymentTypeID; } public BR_DirectCreditorPayments setPaymentTypeID(String value) { this.PaymentTypeID = value; return this; } public String getRemitNo() { return RemitNo; } public BR_DirectCreditorPayments setRemitNo(String value) { this.RemitNo = value; return this; } } public static class BR_DirectCreditorReceipts { @Required() public String DirectCreditorReceiptID = null; @References(BR_Main.class) @Required() public String BankRecID = null; @References(HR_Staff.class) @Required() public String CreatedByStaffID = null; public Date CreatedDateTime = null; @References(HR_Staff.class) @Required() public String LastSavedByStaffID = null; public Date LastSavedDateTime = null; public Integer LineNumber = null; public Date TransactionDateTime = null; public BigDecimal AmountIncGST = null; public Short DebitCredit = null; public String Remark = null; public Short Status = null; @References(GL_Ledger.class) public String GLLedgerID = null; @References(CR_Main.class) public String CreditorID = null; public String BankName = null; public String BankAccountNo = null; public String BSBN = null; public String BankAccountName = null; public BigDecimal AmountReconciledIncGST = null; public String Reference = null; @References(TX_Main.class) public String TaxID = null; public BigDecimal TaxRate = null; public BigDecimal TaxAmount = null; @References(SO_PaymentTypes.class) @Required() public String ReceiptTypeID = null; public String InvoiceNo = null; public String getDirectCreditorReceiptID() { return DirectCreditorReceiptID; } public BR_DirectCreditorReceipts setDirectCreditorReceiptID(String value) { this.DirectCreditorReceiptID = value; return this; } public String getBankRecID() { return BankRecID; } public BR_DirectCreditorReceipts setBankRecID(String value) { this.BankRecID = value; return this; } public String getCreatedByStaffID() { return CreatedByStaffID; } public BR_DirectCreditorReceipts setCreatedByStaffID(String value) { this.CreatedByStaffID = value; return this; } public Date getCreatedDateTime() { return CreatedDateTime; } public BR_DirectCreditorReceipts setCreatedDateTime(Date value) { this.CreatedDateTime = value; return this; } public String getLastSavedByStaffID() { return LastSavedByStaffID; } public BR_DirectCreditorReceipts setLastSavedByStaffID(String value) { this.LastSavedByStaffID = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public BR_DirectCreditorReceipts setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Integer getLineNumber() { return LineNumber; } public BR_DirectCreditorReceipts setLineNumber(Integer value) { this.LineNumber = value; return this; } public Date getTransactionDateTime() { return TransactionDateTime; } public BR_DirectCreditorReceipts setTransactionDateTime(Date value) { this.TransactionDateTime = value; return this; } public BigDecimal getAmountIncGST() { return AmountIncGST; } public BR_DirectCreditorReceipts setAmountIncGST(BigDecimal value) { this.AmountIncGST = value; return this; } public Short getDebitCredit() { return DebitCredit; } public BR_DirectCreditorReceipts setDebitCredit(Short value) { this.DebitCredit = value; return this; } public String getRemark() { return Remark; } public BR_DirectCreditorReceipts setRemark(String value) { this.Remark = value; return this; } public Short getStatus() { return Status; } public BR_DirectCreditorReceipts setStatus(Short value) { this.Status = value; return this; } public String getGlLedgerID() { return GLLedgerID; } public BR_DirectCreditorReceipts setGlLedgerID(String value) { this.GLLedgerID = value; return this; } public String getCreditorID() { return CreditorID; } public BR_DirectCreditorReceipts setCreditorID(String value) { this.CreditorID = value; return this; } public String getBankName() { return BankName; } public BR_DirectCreditorReceipts setBankName(String value) { this.BankName = value; return this; } public String getBankAccountNo() { return BankAccountNo; } public BR_DirectCreditorReceipts setBankAccountNo(String value) { this.BankAccountNo = value; return this; } public String getBsbn() { return BSBN; } public BR_DirectCreditorReceipts setBsbn(String value) { this.BSBN = value; return this; } public String getBankAccountName() { return BankAccountName; } public BR_DirectCreditorReceipts setBankAccountName(String value) { this.BankAccountName = value; return this; } public BigDecimal getAmountReconciledIncGST() { return AmountReconciledIncGST; } public BR_DirectCreditorReceipts setAmountReconciledIncGST(BigDecimal value) { this.AmountReconciledIncGST = value; return this; } public String getReference() { return Reference; } public BR_DirectCreditorReceipts setReference(String value) { this.Reference = value; return this; } public String getTaxID() { return TaxID; } public BR_DirectCreditorReceipts setTaxID(String value) { this.TaxID = value; return this; } public BigDecimal getTaxRate() { return TaxRate; } public BR_DirectCreditorReceipts setTaxRate(BigDecimal value) { this.TaxRate = value; return this; } public BigDecimal getTaxAmount() { return TaxAmount; } public BR_DirectCreditorReceipts setTaxAmount(BigDecimal value) { this.TaxAmount = value; return this; } public String getReceiptTypeID() { return ReceiptTypeID; } public BR_DirectCreditorReceipts setReceiptTypeID(String value) { this.ReceiptTypeID = value; return this; } public String getInvoiceNo() { return InvoiceNo; } public BR_DirectCreditorReceipts setInvoiceNo(String value) { this.InvoiceNo = value; return this; } } public static class BR_DirectDebtorPayments { @Required() public String DirectDebtorPaymentID = null; @References(BR_Main.class) @Required() public String BankRecID = null; @References(HR_Staff.class) @Required() public String CreatedByStaffID = null; public Date CreatedDateTime = null; @References(HR_Staff.class) @Required() public String LastSavedByStaffID = null; public Date LastSavedDateTime = null; public Integer LineNumber = null; public Date TransactionDateTime = null; public BigDecimal AmountIncGST = null; public Short DebitCredit = null; public String Remark = null; public Short Status = null; @References(GL_Ledger.class) public String GLLedgerID = null; @References(DB_Main.class) public String DebtorID = null; @References(DB_Main.class) public String ParentDebtorID = null; public String BankName = null; public String BankAccountNo = null; public String BSBN = null; public String BankAccountName = null; public BigDecimal AmountReconciledIncGST = null; public String Reference = null; @References(SO_PaymentTypes.class) @Required() public String PaymentTypeID = null; @References(TX_Main.class) public String TaxID = null; public BigDecimal TaxRate = null; public BigDecimal TaxAmount = null; public String InvoiceNo = null; public String getDirectDebtorPaymentID() { return DirectDebtorPaymentID; } public BR_DirectDebtorPayments setDirectDebtorPaymentID(String value) { this.DirectDebtorPaymentID = value; return this; } public String getBankRecID() { return BankRecID; } public BR_DirectDebtorPayments setBankRecID(String value) { this.BankRecID = value; return this; } public String getCreatedByStaffID() { return CreatedByStaffID; } public BR_DirectDebtorPayments setCreatedByStaffID(String value) { this.CreatedByStaffID = value; return this; } public Date getCreatedDateTime() { return CreatedDateTime; } public BR_DirectDebtorPayments setCreatedDateTime(Date value) { this.CreatedDateTime = value; return this; } public String getLastSavedByStaffID() { return LastSavedByStaffID; } public BR_DirectDebtorPayments setLastSavedByStaffID(String value) { this.LastSavedByStaffID = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public BR_DirectDebtorPayments setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Integer getLineNumber() { return LineNumber; } public BR_DirectDebtorPayments setLineNumber(Integer value) { this.LineNumber = value; return this; } public Date getTransactionDateTime() { return TransactionDateTime; } public BR_DirectDebtorPayments setTransactionDateTime(Date value) { this.TransactionDateTime = value; return this; } public BigDecimal getAmountIncGST() { return AmountIncGST; } public BR_DirectDebtorPayments setAmountIncGST(BigDecimal value) { this.AmountIncGST = value; return this; } public Short getDebitCredit() { return DebitCredit; } public BR_DirectDebtorPayments setDebitCredit(Short value) { this.DebitCredit = value; return this; } public String getRemark() { return Remark; } public BR_DirectDebtorPayments setRemark(String value) { this.Remark = value; return this; } public Short getStatus() { return Status; } public BR_DirectDebtorPayments setStatus(Short value) { this.Status = value; return this; } public String getGlLedgerID() { return GLLedgerID; } public BR_DirectDebtorPayments setGlLedgerID(String value) { this.GLLedgerID = value; return this; } public String getDebtorID() { return DebtorID; } public BR_DirectDebtorPayments setDebtorID(String value) { this.DebtorID = value; return this; } public String getParentDebtorID() { return ParentDebtorID; } public BR_DirectDebtorPayments setParentDebtorID(String value) { this.ParentDebtorID = value; return this; } public String getBankName() { return BankName; } public BR_DirectDebtorPayments setBankName(String value) { this.BankName = value; return this; } public String getBankAccountNo() { return BankAccountNo; } public BR_DirectDebtorPayments setBankAccountNo(String value) { this.BankAccountNo = value; return this; } public String getBsbn() { return BSBN; } public BR_DirectDebtorPayments setBsbn(String value) { this.BSBN = value; return this; } public String getBankAccountName() { return BankAccountName; } public BR_DirectDebtorPayments setBankAccountName(String value) { this.BankAccountName = value; return this; } public BigDecimal getAmountReconciledIncGST() { return AmountReconciledIncGST; } public BR_DirectDebtorPayments setAmountReconciledIncGST(BigDecimal value) { this.AmountReconciledIncGST = value; return this; } public String getReference() { return Reference; } public BR_DirectDebtorPayments setReference(String value) { this.Reference = value; return this; } public String getPaymentTypeID() { return PaymentTypeID; } public BR_DirectDebtorPayments setPaymentTypeID(String value) { this.PaymentTypeID = value; return this; } public String getTaxID() { return TaxID; } public BR_DirectDebtorPayments setTaxID(String value) { this.TaxID = value; return this; } public BigDecimal getTaxRate() { return TaxRate; } public BR_DirectDebtorPayments setTaxRate(BigDecimal value) { this.TaxRate = value; return this; } public BigDecimal getTaxAmount() { return TaxAmount; } public BR_DirectDebtorPayments setTaxAmount(BigDecimal value) { this.TaxAmount = value; return this; } public String getInvoiceNo() { return InvoiceNo; } public BR_DirectDebtorPayments setInvoiceNo(String value) { this.InvoiceNo = value; return this; } } public static class BR_DirectDebtorReceiptAllocations { @Required() public String DirectDebtorReceiptAllocationID = null; @Required() public String DirectDebtorReceiptID = null; public BigDecimal AmountAllocated = null; @Required() public String TransID = null; @Required() public String LastSavedByStaffID = null; public Date LastSavedDateTime = null; public BigDecimal DiscountAmountAllocated = null; public String getDirectDebtorReceiptAllocationID() { return DirectDebtorReceiptAllocationID; } public BR_DirectDebtorReceiptAllocations setDirectDebtorReceiptAllocationID(String value) { this.DirectDebtorReceiptAllocationID = value; return this; } public String getDirectDebtorReceiptID() { return DirectDebtorReceiptID; } public BR_DirectDebtorReceiptAllocations setDirectDebtorReceiptID(String value) { this.DirectDebtorReceiptID = value; return this; } public BigDecimal getAmountAllocated() { return AmountAllocated; } public BR_DirectDebtorReceiptAllocations setAmountAllocated(BigDecimal value) { this.AmountAllocated = value; return this; } public String getTransID() { return TransID; } public BR_DirectDebtorReceiptAllocations setTransID(String value) { this.TransID = value; return this; } public String getLastSavedByStaffID() { return LastSavedByStaffID; } public BR_DirectDebtorReceiptAllocations setLastSavedByStaffID(String value) { this.LastSavedByStaffID = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public BR_DirectDebtorReceiptAllocations setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public BigDecimal getDiscountAmountAllocated() { return DiscountAmountAllocated; } public BR_DirectDebtorReceiptAllocations setDiscountAmountAllocated(BigDecimal value) { this.DiscountAmountAllocated = value; return this; } } public static class BR_DirectDebtorReceipts { @Required() public String DirectDebtorReceiptID = null; @References(BR_Main.class) @Required() public String BankRecID = null; @References(HR_Staff.class) @Required() public String CreatedByStaffID = null; public Date CreatedDateTime = null; @References(HR_Staff.class) @Required() public String LastSavedByStaffID = null; public Date LastSavedDateTime = null; public Integer LineNumber = null; public Date TransactionDateTime = null; public BigDecimal AmountIncGST = null; public Short DebitCredit = null; public String Remark = null; public Short Status = null; @References(GL_Ledger.class) public String GLLedgerID = null; @References(DB_Main.class) @Required() public String DebtorID = null; @References(GL_Ledger.class) public String DiscountGLLedgerID = null; public BigDecimal DiscountAmountIncGST = null; @References(DB_Main.class) public String ParentDebtorID = null; public String BankName = null; public String BankAccountNo = null; public String BSBN = null; public String BankAccountName = null; @References(TX_Main.class) public String DiscountTaxID = null; public BigDecimal DiscountTaxAmount = null; public BigDecimal DiscountTaxRate = null; public BigDecimal AmountReconciledIncGST = null; public String Reference = null; @References(SO_PaymentTypes.class) @Required() public String ReceiptTypeID = null; public String RemitNo = null; public String getDirectDebtorReceiptID() { return DirectDebtorReceiptID; } public BR_DirectDebtorReceipts setDirectDebtorReceiptID(String value) { this.DirectDebtorReceiptID = value; return this; } public String getBankRecID() { return BankRecID; } public BR_DirectDebtorReceipts setBankRecID(String value) { this.BankRecID = value; return this; } public String getCreatedByStaffID() { return CreatedByStaffID; } public BR_DirectDebtorReceipts setCreatedByStaffID(String value) { this.CreatedByStaffID = value; return this; } public Date getCreatedDateTime() { return CreatedDateTime; } public BR_DirectDebtorReceipts setCreatedDateTime(Date value) { this.CreatedDateTime = value; return this; } public String getLastSavedByStaffID() { return LastSavedByStaffID; } public BR_DirectDebtorReceipts setLastSavedByStaffID(String value) { this.LastSavedByStaffID = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public BR_DirectDebtorReceipts setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Integer getLineNumber() { return LineNumber; } public BR_DirectDebtorReceipts setLineNumber(Integer value) { this.LineNumber = value; return this; } public Date getTransactionDateTime() { return TransactionDateTime; } public BR_DirectDebtorReceipts setTransactionDateTime(Date value) { this.TransactionDateTime = value; return this; } public BigDecimal getAmountIncGST() { return AmountIncGST; } public BR_DirectDebtorReceipts setAmountIncGST(BigDecimal value) { this.AmountIncGST = value; return this; } public Short getDebitCredit() { return DebitCredit; } public BR_DirectDebtorReceipts setDebitCredit(Short value) { this.DebitCredit = value; return this; } public String getRemark() { return Remark; } public BR_DirectDebtorReceipts setRemark(String value) { this.Remark = value; return this; } public Short getStatus() { return Status; } public BR_DirectDebtorReceipts setStatus(Short value) { this.Status = value; return this; } public String getGlLedgerID() { return GLLedgerID; } public BR_DirectDebtorReceipts setGlLedgerID(String value) { this.GLLedgerID = value; return this; } public String getDebtorID() { return DebtorID; } public BR_DirectDebtorReceipts setDebtorID(String value) { this.DebtorID = value; return this; } public String getDiscountGLLedgerID() { return DiscountGLLedgerID; } public BR_DirectDebtorReceipts setDiscountGLLedgerID(String value) { this.DiscountGLLedgerID = value; return this; } public BigDecimal getDiscountAmountIncGST() { return DiscountAmountIncGST; } public BR_DirectDebtorReceipts setDiscountAmountIncGST(BigDecimal value) { this.DiscountAmountIncGST = value; return this; } public String getParentDebtorID() { return ParentDebtorID; } public BR_DirectDebtorReceipts setParentDebtorID(String value) { this.ParentDebtorID = value; return this; } public String getBankName() { return BankName; } public BR_DirectDebtorReceipts setBankName(String value) { this.BankName = value; return this; } public String getBankAccountNo() { return BankAccountNo; } public BR_DirectDebtorReceipts setBankAccountNo(String value) { this.BankAccountNo = value; return this; } public String getBsbn() { return BSBN; } public BR_DirectDebtorReceipts setBsbn(String value) { this.BSBN = value; return this; } public String getBankAccountName() { return BankAccountName; } public BR_DirectDebtorReceipts setBankAccountName(String value) { this.BankAccountName = value; return this; } public String getDiscountTaxID() { return DiscountTaxID; } public BR_DirectDebtorReceipts setDiscountTaxID(String value) { this.DiscountTaxID = value; return this; } public BigDecimal getDiscountTaxAmount() { return DiscountTaxAmount; } public BR_DirectDebtorReceipts setDiscountTaxAmount(BigDecimal value) { this.DiscountTaxAmount = value; return this; } public BigDecimal getDiscountTaxRate() { return DiscountTaxRate; } public BR_DirectDebtorReceipts setDiscountTaxRate(BigDecimal value) { this.DiscountTaxRate = value; return this; } public BigDecimal getAmountReconciledIncGST() { return AmountReconciledIncGST; } public BR_DirectDebtorReceipts setAmountReconciledIncGST(BigDecimal value) { this.AmountReconciledIncGST = value; return this; } public String getReference() { return Reference; } public BR_DirectDebtorReceipts setReference(String value) { this.Reference = value; return this; } public String getReceiptTypeID() { return ReceiptTypeID; } public BR_DirectDebtorReceipts setReceiptTypeID(String value) { this.ReceiptTypeID = value; return this; } public String getRemitNo() { return RemitNo; } public BR_DirectDebtorReceipts setRemitNo(String value) { this.RemitNo = value; return this; } } public static class BR_DirectGLTransactions { @Required() public String DirectGLTransactionID = null; @References(BR_Main.class) @Required() public String BankRecID = null; @References(HR_Staff.class) @Required() public String CreatedByStaffID = null; public Date CreatedDateTime = null; @References(HR_Staff.class) @Required() public String LastSavedByStaffID = null; public Date LastSavedDateTime = null; public Integer LineNumber = null; public Date TransactionDateTime = null; public BigDecimal AmountIncGST = null; public Short DebitCredit = null; public String Remark = null; public Short Status = null; @References(GL_Ledger.class) public String GLLedgerID = null; public Short TransactionType = null; public String Reference = null; @References(SO_PaymentTypes.class) @Required() public String PaymentTypeID = null; @References(TX_Main.class) public String TaxID = null; public BigDecimal TaxRate = null; public BigDecimal TaxAmount = null; public BigDecimal AmountReconciledIncGST = null; public String getDirectGLTransactionID() { return DirectGLTransactionID; } public BR_DirectGLTransactions setDirectGLTransactionID(String value) { this.DirectGLTransactionID = value; return this; } public String getBankRecID() { return BankRecID; } public BR_DirectGLTransactions setBankRecID(String value) { this.BankRecID = value; return this; } public String getCreatedByStaffID() { return CreatedByStaffID; } public BR_DirectGLTransactions setCreatedByStaffID(String value) { this.CreatedByStaffID = value; return this; } public Date getCreatedDateTime() { return CreatedDateTime; } public BR_DirectGLTransactions setCreatedDateTime(Date value) { this.CreatedDateTime = value; return this; } public String getLastSavedByStaffID() { return LastSavedByStaffID; } public BR_DirectGLTransactions setLastSavedByStaffID(String value) { this.LastSavedByStaffID = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public BR_DirectGLTransactions setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Integer getLineNumber() { return LineNumber; } public BR_DirectGLTransactions setLineNumber(Integer value) { this.LineNumber = value; return this; } public Date getTransactionDateTime() { return TransactionDateTime; } public BR_DirectGLTransactions setTransactionDateTime(Date value) { this.TransactionDateTime = value; return this; } public BigDecimal getAmountIncGST() { return AmountIncGST; } public BR_DirectGLTransactions setAmountIncGST(BigDecimal value) { this.AmountIncGST = value; return this; } public Short getDebitCredit() { return DebitCredit; } public BR_DirectGLTransactions setDebitCredit(Short value) { this.DebitCredit = value; return this; } public String getRemark() { return Remark; } public BR_DirectGLTransactions setRemark(String value) { this.Remark = value; return this; } public Short getStatus() { return Status; } public BR_DirectGLTransactions setStatus(Short value) { this.Status = value; return this; } public String getGlLedgerID() { return GLLedgerID; } public BR_DirectGLTransactions setGlLedgerID(String value) { this.GLLedgerID = value; return this; } public Short getTransactionType() { return TransactionType; } public BR_DirectGLTransactions setTransactionType(Short value) { this.TransactionType = value; return this; } public String getReference() { return Reference; } public BR_DirectGLTransactions setReference(String value) { this.Reference = value; return this; } public String getPaymentTypeID() { return PaymentTypeID; } public BR_DirectGLTransactions setPaymentTypeID(String value) { this.PaymentTypeID = value; return this; } public String getTaxID() { return TaxID; } public BR_DirectGLTransactions setTaxID(String value) { this.TaxID = value; return this; } public BigDecimal getTaxRate() { return TaxRate; } public BR_DirectGLTransactions setTaxRate(BigDecimal value) { this.TaxRate = value; return this; } public BigDecimal getTaxAmount() { return TaxAmount; } public BR_DirectGLTransactions setTaxAmount(BigDecimal value) { this.TaxAmount = value; return this; } public BigDecimal getAmountReconciledIncGST() { return AmountReconciledIncGST; } public BR_DirectGLTransactions setAmountReconciledIncGST(BigDecimal value) { this.AmountReconciledIncGST = value; return this; } } public static class BR_Documents { @Required() public String RecID = null; @References(BR_Main.class) @Required() public String BankRecID = null; @References(SY_DocumentTypes.class) @Required() public String DocumentTypeID = null; public Date LastSavedDateTime = null; @References(HR_Staff.class) @Required() public String LastSavedByStaffID = null; public ArrayList FileBinary = null; public String Description = null; public String PhysicalFileName = null; @Required() public Integer ItemNo = null; public String getRecID() { return RecID; } public BR_Documents setRecID(String value) { this.RecID = value; return this; } public String getBankRecID() { return BankRecID; } public BR_Documents setBankRecID(String value) { this.BankRecID = value; return this; } public String getDocumentTypeID() { return DocumentTypeID; } public BR_Documents setDocumentTypeID(String value) { this.DocumentTypeID = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public BR_Documents setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public String getLastSavedByStaffID() { return LastSavedByStaffID; } public BR_Documents setLastSavedByStaffID(String value) { this.LastSavedByStaffID = value; return this; } public ArrayList getFileBinary() { return FileBinary; } public BR_Documents setFileBinary(ArrayList value) { this.FileBinary = value; return this; } public String getDescription() { return Description; } public BR_Documents setDescription(String value) { this.Description = value; return this; } public String getPhysicalFileName() { return PhysicalFileName; } public BR_Documents setPhysicalFileName(String value) { this.PhysicalFileName = value; return this; } public Integer getItemNo() { return ItemNo; } public BR_Documents setItemNo(Integer value) { this.ItemNo = value; return this; } } public static class BR_GLTransactions { @Required() public String BRGLTransactionID = null; @References(BR_Main.class) @Required() public String BankRecID = null; @References(HR_Staff.class) @Required() public String CreatedByStaffID = null; public Date CreatedDateTime = null; @References(HR_Staff.class) @Required() public String LastSavedByStaffID = null; public Date LastSavedDateTime = null; public Integer LineNumber = null; public Date TransactionDateTime = null; public Short Status = null; @Required() public String GLTransactionID = null; public BigDecimal AmountReconciledIncGST = null; public String Reference = null; public Short DebitCredit = null; public String Remark = null; public BigDecimal AmountIncGST = null; @References(BR_Main.class) public String FirstAppearanceBankRecID = null; public String getBrglTransactionID() { return BRGLTransactionID; } public BR_GLTransactions setBrglTransactionID(String value) { this.BRGLTransactionID = value; return this; } public String getBankRecID() { return BankRecID; } public BR_GLTransactions setBankRecID(String value) { this.BankRecID = value; return this; } public String getCreatedByStaffID() { return CreatedByStaffID; } public BR_GLTransactions setCreatedByStaffID(String value) { this.CreatedByStaffID = value; return this; } public Date getCreatedDateTime() { return CreatedDateTime; } public BR_GLTransactions setCreatedDateTime(Date value) { this.CreatedDateTime = value; return this; } public String getLastSavedByStaffID() { return LastSavedByStaffID; } public BR_GLTransactions setLastSavedByStaffID(String value) { this.LastSavedByStaffID = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public BR_GLTransactions setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Integer getLineNumber() { return LineNumber; } public BR_GLTransactions setLineNumber(Integer value) { this.LineNumber = value; return this; } public Date getTransactionDateTime() { return TransactionDateTime; } public BR_GLTransactions setTransactionDateTime(Date value) { this.TransactionDateTime = value; return this; } public Short getStatus() { return Status; } public BR_GLTransactions setStatus(Short value) { this.Status = value; return this; } public String getGlTransactionID() { return GLTransactionID; } public BR_GLTransactions setGlTransactionID(String value) { this.GLTransactionID = value; return this; } public BigDecimal getAmountReconciledIncGST() { return AmountReconciledIncGST; } public BR_GLTransactions setAmountReconciledIncGST(BigDecimal value) { this.AmountReconciledIncGST = value; return this; } public String getReference() { return Reference; } public BR_GLTransactions setReference(String value) { this.Reference = value; return this; } public Short getDebitCredit() { return DebitCredit; } public BR_GLTransactions setDebitCredit(Short value) { this.DebitCredit = value; return this; } public String getRemark() { return Remark; } public BR_GLTransactions setRemark(String value) { this.Remark = value; return this; } public BigDecimal getAmountIncGST() { return AmountIncGST; } public BR_GLTransactions setAmountIncGST(BigDecimal value) { this.AmountIncGST = value; return this; } public String getFirstAppearanceBankRecID() { return FirstAppearanceBankRecID; } public BR_GLTransactions setFirstAppearanceBankRecID(String value) { this.FirstAppearanceBankRecID = value; return this; } } public static class BR_Main { @Required() public String BankRecID = null; @Required() public String BankRecNo = null; @Required() public String Reference = null; @Required() public String BankAccountLedgerID = null; public Date BankStatementDate = null; public Integer Status = null; @Required() public String CreatedByStaffID = null; public Date CreatedDateTime = null; @Required() public String LastSavedByStaffID = null; public Date LastSavedDateTime = null; public BigDecimal BankStatementOpeningBalance = null; public BigDecimal BankAccountLedgerCurrentBalance = null; public BigDecimal BankStatementClosingBalance = null; public BigDecimal BankAccountLedgerBalanceBroughtForward = null; public String getBankRecID() { return BankRecID; } public BR_Main setBankRecID(String value) { this.BankRecID = value; return this; } public String getBankRecNo() { return BankRecNo; } public BR_Main setBankRecNo(String value) { this.BankRecNo = value; return this; } public String getReference() { return Reference; } public BR_Main setReference(String value) { this.Reference = value; return this; } public String getBankAccountLedgerID() { return BankAccountLedgerID; } public BR_Main setBankAccountLedgerID(String value) { this.BankAccountLedgerID = value; return this; } public Date getBankStatementDate() { return BankStatementDate; } public BR_Main setBankStatementDate(Date value) { this.BankStatementDate = value; return this; } public Integer getStatus() { return Status; } public BR_Main setStatus(Integer value) { this.Status = value; return this; } public String getCreatedByStaffID() { return CreatedByStaffID; } public BR_Main setCreatedByStaffID(String value) { this.CreatedByStaffID = value; return this; } public Date getCreatedDateTime() { return CreatedDateTime; } public BR_Main setCreatedDateTime(Date value) { this.CreatedDateTime = value; return this; } public String getLastSavedByStaffID() { return LastSavedByStaffID; } public BR_Main setLastSavedByStaffID(String value) { this.LastSavedByStaffID = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public BR_Main setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public BigDecimal getBankStatementOpeningBalance() { return BankStatementOpeningBalance; } public BR_Main setBankStatementOpeningBalance(BigDecimal value) { this.BankStatementOpeningBalance = value; return this; } public BigDecimal getBankAccountLedgerCurrentBalance() { return BankAccountLedgerCurrentBalance; } public BR_Main setBankAccountLedgerCurrentBalance(BigDecimal value) { this.BankAccountLedgerCurrentBalance = value; return this; } public BigDecimal getBankStatementClosingBalance() { return BankStatementClosingBalance; } public BR_Main setBankStatementClosingBalance(BigDecimal value) { this.BankStatementClosingBalance = value; return this; } public BigDecimal getBankAccountLedgerBalanceBroughtForward() { return BankAccountLedgerBalanceBroughtForward; } public BR_Main setBankAccountLedgerBalanceBroughtForward(BigDecimal value) { this.BankAccountLedgerBalanceBroughtForward = value; return this; } } public static class BR_OpeningBalanceTransactions { @Required() public String OpeningBalanceTransactionID = null; @References(BR_Main.class) @Required() public String BankRecID = null; @References(HR_Staff.class) @Required() public String CreatedByStaffID = null; public Date CreatedDateTime = null; @References(HR_Staff.class) @Required() public String LastSavedByStaffID = null; public Date LastSavedDateTime = null; public Integer LineNumber = null; public Date TransactionDateTime = null; public Short Status = null; public BigDecimal AmountReconciledIncGST = null; public String Reference = null; public Short DebitCredit = null; public String Remark = null; public BigDecimal AmountIncGST = null; @References(BR_Main.class) public String PreviousBankRecID = null; public String getOpeningBalanceTransactionID() { return OpeningBalanceTransactionID; } public BR_OpeningBalanceTransactions setOpeningBalanceTransactionID(String value) { this.OpeningBalanceTransactionID = value; return this; } public String getBankRecID() { return BankRecID; } public BR_OpeningBalanceTransactions setBankRecID(String value) { this.BankRecID = value; return this; } public String getCreatedByStaffID() { return CreatedByStaffID; } public BR_OpeningBalanceTransactions setCreatedByStaffID(String value) { this.CreatedByStaffID = value; return this; } public Date getCreatedDateTime() { return CreatedDateTime; } public BR_OpeningBalanceTransactions setCreatedDateTime(Date value) { this.CreatedDateTime = value; return this; } public String getLastSavedByStaffID() { return LastSavedByStaffID; } public BR_OpeningBalanceTransactions setLastSavedByStaffID(String value) { this.LastSavedByStaffID = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public BR_OpeningBalanceTransactions setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Integer getLineNumber() { return LineNumber; } public BR_OpeningBalanceTransactions setLineNumber(Integer value) { this.LineNumber = value; return this; } public Date getTransactionDateTime() { return TransactionDateTime; } public BR_OpeningBalanceTransactions setTransactionDateTime(Date value) { this.TransactionDateTime = value; return this; } public Short getStatus() { return Status; } public BR_OpeningBalanceTransactions setStatus(Short value) { this.Status = value; return this; } public BigDecimal getAmountReconciledIncGST() { return AmountReconciledIncGST; } public BR_OpeningBalanceTransactions setAmountReconciledIncGST(BigDecimal value) { this.AmountReconciledIncGST = value; return this; } public String getReference() { return Reference; } public BR_OpeningBalanceTransactions setReference(String value) { this.Reference = value; return this; } public Short getDebitCredit() { return DebitCredit; } public BR_OpeningBalanceTransactions setDebitCredit(Short value) { this.DebitCredit = value; return this; } public String getRemark() { return Remark; } public BR_OpeningBalanceTransactions setRemark(String value) { this.Remark = value; return this; } public BigDecimal getAmountIncGST() { return AmountIncGST; } public BR_OpeningBalanceTransactions setAmountIncGST(BigDecimal value) { this.AmountIncGST = value; return this; } public String getPreviousBankRecID() { return PreviousBankRecID; } public BR_OpeningBalanceTransactions setPreviousBankRecID(String value) { this.PreviousBankRecID = value; return this; } } public static class CB_BatchTranLineCustomFields { @Required() public String RecID = null; @Required() public String SettingName = null; public String SettingDescription = null; public Integer CellType = null; public String FieldParameter = null; @References(SY_Plugin.class) @Required() public UUID SY_Plugin_RecID = null; public Date LastSavedDateTime = null; public Integer DisplayOrder = null; public String getRecID() { return RecID; } public CB_BatchTranLineCustomFields setRecID(String value) { this.RecID = value; return this; } public String getSettingName() { return SettingName; } public CB_BatchTranLineCustomFields setSettingName(String value) { this.SettingName = value; return this; } public String getSettingDescription() { return SettingDescription; } public CB_BatchTranLineCustomFields setSettingDescription(String value) { this.SettingDescription = value; return this; } public Integer getCellType() { return CellType; } public CB_BatchTranLineCustomFields setCellType(Integer value) { this.CellType = value; return this; } public String getFieldParameter() { return FieldParameter; } public CB_BatchTranLineCustomFields setFieldParameter(String value) { this.FieldParameter = value; return this; } public UUID getSyPluginRecID() { return SY_Plugin_RecID; } public CB_BatchTranLineCustomFields setSyPluginRecID(UUID value) { this.SY_Plugin_RecID = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public CB_BatchTranLineCustomFields setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Integer getDisplayOrder() { return DisplayOrder; } public CB_BatchTranLineCustomFields setDisplayOrder(Integer value) { this.DisplayOrder = value; return this; } } public static class CB_BatchTranLineCustomValues { @Required() public String RecID = null; @References(CB_BatchTranLines.class) @Required() public String CB_BatchTranLine_CBBatchTranLineID = null; @References(CB_BatchTranLineCustomFields.class) @Required() public String CB_BatchTranLineCustomFields_RecID = null; public String Contents = null; public Date LastSavedDateTime = null; public String getRecID() { return RecID; } public CB_BatchTranLineCustomValues setRecID(String value) { this.RecID = value; return this; } public String getCbBatchTranLineCbBatchTranLineID() { return CB_BatchTranLine_CBBatchTranLineID; } public CB_BatchTranLineCustomValues setCbBatchTranLineCbBatchTranLineID(String value) { this.CB_BatchTranLine_CBBatchTranLineID = value; return this; } public String getCbBatchTranLineCustomFieldsRecID() { return CB_BatchTranLineCustomFields_RecID; } public CB_BatchTranLineCustomValues setCbBatchTranLineCustomFieldsRecID(String value) { this.CB_BatchTranLineCustomFields_RecID = value; return this; } public String getContents() { return Contents; } public CB_BatchTranLineCustomValues setContents(String value) { this.Contents = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public CB_BatchTranLineCustomValues setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } } public static class CB_BatchTranLines { @Required() public String CBBatchTranLineID = null; @References(CB_BatchTrans.class) @Required() public String CBBatchID = null; @Required() public String OffsetLedgerID = null; @Required() public String RemitNo = null; public String Ref = null; @Required() public Short DebtorCreditor = null; @Required() public String DebtorCreditorID = null; @Required() public Short TransType = null; public String Remark = null; @Required() public Short LineNum = null; public BigDecimal HomeAmount = null; @Required() public Short GroupNo = null; public Date TranDate = null; @Required() public String DiscountLedgerID = null; public BigDecimal HomeDiscountTaken = null; public BigDecimal SupplierAmount = null; public BigDecimal CurrencyRateUsed = null; public BigDecimal SupplierDiscountTaken = null; @Required() public String ParentDebtorID = null; public String BankName = null; public String BankAcc = null; public String BSBN = null; public String AccountName = null; public BigDecimal AllocatedAmount = null; public String PaymentTypeID = null; public String Approval = null; @Required() public Boolean UpdateDebtorBankDetails = null; public String GSTRateID = null; public BigDecimal GSTRate = null; public BigDecimal GSTAmount = null; public String DiscountGSTRateID = null; public BigDecimal DiscountGSTRate = null; public BigDecimal DiscountGSTAmount = null; public String JobNo = null; public BigDecimal JobChargeAmount = null; @References(FX_Currency.class) public String FXCurrencyID = null; public Short FXDecimalPlaces = null; public Short AUDDecimalPlaces = null; public Date DueDate = null; public BigDecimal SupplierAllocatedAmount = null; public String getCbBatchTranLineID() { return CBBatchTranLineID; } public CB_BatchTranLines setCbBatchTranLineID(String value) { this.CBBatchTranLineID = value; return this; } public String getCbBatchID() { return CBBatchID; } public CB_BatchTranLines setCbBatchID(String value) { this.CBBatchID = value; return this; } public String getOffsetLedgerID() { return OffsetLedgerID; } public CB_BatchTranLines setOffsetLedgerID(String value) { this.OffsetLedgerID = value; return this; } public String getRemitNo() { return RemitNo; } public CB_BatchTranLines setRemitNo(String value) { this.RemitNo = value; return this; } public String getRef() { return Ref; } public CB_BatchTranLines setRef(String value) { this.Ref = value; return this; } public Short getDebtorCreditor() { return DebtorCreditor; } public CB_BatchTranLines setDebtorCreditor(Short value) { this.DebtorCreditor = value; return this; } public String getDebtorCreditorID() { return DebtorCreditorID; } public CB_BatchTranLines setDebtorCreditorID(String value) { this.DebtorCreditorID = value; return this; } public Short getTransType() { return TransType; } public CB_BatchTranLines setTransType(Short value) { this.TransType = value; return this; } public String getRemark() { return Remark; } public CB_BatchTranLines setRemark(String value) { this.Remark = value; return this; } public Short getLineNum() { return LineNum; } public CB_BatchTranLines setLineNum(Short value) { this.LineNum = value; return this; } public BigDecimal getHomeAmount() { return HomeAmount; } public CB_BatchTranLines setHomeAmount(BigDecimal value) { this.HomeAmount = value; return this; } public Short getGroupNo() { return GroupNo; } public CB_BatchTranLines setGroupNo(Short value) { this.GroupNo = value; return this; } public Date getTranDate() { return TranDate; } public CB_BatchTranLines setTranDate(Date value) { this.TranDate = value; return this; } public String getDiscountLedgerID() { return DiscountLedgerID; } public CB_BatchTranLines setDiscountLedgerID(String value) { this.DiscountLedgerID = value; return this; } public BigDecimal getHomeDiscountTaken() { return HomeDiscountTaken; } public CB_BatchTranLines setHomeDiscountTaken(BigDecimal value) { this.HomeDiscountTaken = value; return this; } public BigDecimal getSupplierAmount() { return SupplierAmount; } public CB_BatchTranLines setSupplierAmount(BigDecimal value) { this.SupplierAmount = value; return this; } public BigDecimal getCurrencyRateUsed() { return CurrencyRateUsed; } public CB_BatchTranLines setCurrencyRateUsed(BigDecimal value) { this.CurrencyRateUsed = value; return this; } public BigDecimal getSupplierDiscountTaken() { return SupplierDiscountTaken; } public CB_BatchTranLines setSupplierDiscountTaken(BigDecimal value) { this.SupplierDiscountTaken = value; return this; } public String getParentDebtorID() { return ParentDebtorID; } public CB_BatchTranLines setParentDebtorID(String value) { this.ParentDebtorID = value; return this; } public String getBankName() { return BankName; } public CB_BatchTranLines setBankName(String value) { this.BankName = value; return this; } public String getBankAcc() { return BankAcc; } public CB_BatchTranLines setBankAcc(String value) { this.BankAcc = value; return this; } public String getBsbn() { return BSBN; } public CB_BatchTranLines setBsbn(String value) { this.BSBN = value; return this; } public String getAccountName() { return AccountName; } public CB_BatchTranLines setAccountName(String value) { this.AccountName = value; return this; } public BigDecimal getAllocatedAmount() { return AllocatedAmount; } public CB_BatchTranLines setAllocatedAmount(BigDecimal value) { this.AllocatedAmount = value; return this; } public String getPaymentTypeID() { return PaymentTypeID; } public CB_BatchTranLines setPaymentTypeID(String value) { this.PaymentTypeID = value; return this; } public String getApproval() { return Approval; } public CB_BatchTranLines setApproval(String value) { this.Approval = value; return this; } public Boolean isUpdateDebtorBankDetails() { return UpdateDebtorBankDetails; } public CB_BatchTranLines setUpdateDebtorBankDetails(Boolean value) { this.UpdateDebtorBankDetails = value; return this; } public String getGstRateID() { return GSTRateID; } public CB_BatchTranLines setGstRateID(String value) { this.GSTRateID = value; return this; } public BigDecimal getGstRate() { return GSTRate; } public CB_BatchTranLines setGstRate(BigDecimal value) { this.GSTRate = value; return this; } public BigDecimal getGstAmount() { return GSTAmount; } public CB_BatchTranLines setGstAmount(BigDecimal value) { this.GSTAmount = value; return this; } public String getDiscountGSTRateID() { return DiscountGSTRateID; } public CB_BatchTranLines setDiscountGSTRateID(String value) { this.DiscountGSTRateID = value; return this; } public BigDecimal getDiscountGSTRate() { return DiscountGSTRate; } public CB_BatchTranLines setDiscountGSTRate(BigDecimal value) { this.DiscountGSTRate = value; return this; } public BigDecimal getDiscountGSTAmount() { return DiscountGSTAmount; } public CB_BatchTranLines setDiscountGSTAmount(BigDecimal value) { this.DiscountGSTAmount = value; return this; } public String getJobNo() { return JobNo; } public CB_BatchTranLines setJobNo(String value) { this.JobNo = value; return this; } public BigDecimal getJobChargeAmount() { return JobChargeAmount; } public CB_BatchTranLines setJobChargeAmount(BigDecimal value) { this.JobChargeAmount = value; return this; } public String getFxCurrencyID() { return FXCurrencyID; } public CB_BatchTranLines setFxCurrencyID(String value) { this.FXCurrencyID = value; return this; } public Short getFxDecimalPlaces() { return FXDecimalPlaces; } public CB_BatchTranLines setFxDecimalPlaces(Short value) { this.FXDecimalPlaces = value; return this; } public Short getAudDecimalPlaces() { return AUDDecimalPlaces; } public CB_BatchTranLines setAudDecimalPlaces(Short value) { this.AUDDecimalPlaces = value; return this; } public Date getDueDate() { return DueDate; } public CB_BatchTranLines setDueDate(Date value) { this.DueDate = value; return this; } public BigDecimal getSupplierAllocatedAmount() { return SupplierAllocatedAmount; } public CB_BatchTranLines setSupplierAllocatedAmount(BigDecimal value) { this.SupplierAllocatedAmount = value; return this; } } public static class CB_BatchTranLinesAllocs { @Required() public String CBBatchTranLineAllocID = null; @References(CB_BatchTranLines.class) @Required() public String CBBatchTranLineID = null; @Required() public String AllocatedTransID = null; public BigDecimal AllocatedAmount = null; @Required() public Short AllocType = null; @Required() public String CBBatchID = null; public String getCbBatchTranLineAllocID() { return CBBatchTranLineAllocID; } public CB_BatchTranLinesAllocs setCbBatchTranLineAllocID(String value) { this.CBBatchTranLineAllocID = value; return this; } public String getCbBatchTranLineID() { return CBBatchTranLineID; } public CB_BatchTranLinesAllocs setCbBatchTranLineID(String value) { this.CBBatchTranLineID = value; return this; } public String getAllocatedTransID() { return AllocatedTransID; } public CB_BatchTranLinesAllocs setAllocatedTransID(String value) { this.AllocatedTransID = value; return this; } public BigDecimal getAllocatedAmount() { return AllocatedAmount; } public CB_BatchTranLinesAllocs setAllocatedAmount(BigDecimal value) { this.AllocatedAmount = value; return this; } public Short getAllocType() { return AllocType; } public CB_BatchTranLinesAllocs setAllocType(Short value) { this.AllocType = value; return this; } public String getCbBatchID() { return CBBatchID; } public CB_BatchTranLinesAllocs setCbBatchID(String value) { this.CBBatchID = value; return this; } } public static class CB_BatchTrans { @Required() public String CBBatchID = null; public Date LastSavedDateTime = null; @Required() public String StaffID = null; public Date BatchDate = null; public String BatchNo = null; public Boolean Activated = null; @Required() public String Description = null; public Short ReceiptPayment = null; @Required() public String BankLedgerID = null; @Required() public Boolean GroupJournals = null; public String getCbBatchID() { return CBBatchID; } public CB_BatchTrans setCbBatchID(String value) { this.CBBatchID = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public CB_BatchTrans setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public String getStaffID() { return StaffID; } public CB_BatchTrans setStaffID(String value) { this.StaffID = value; return this; } public Date getBatchDate() { return BatchDate; } public CB_BatchTrans setBatchDate(Date value) { this.BatchDate = value; return this; } public String getBatchNo() { return BatchNo; } public CB_BatchTrans setBatchNo(String value) { this.BatchNo = value; return this; } public Boolean isActivated() { return Activated; } public CB_BatchTrans setActivated(Boolean value) { this.Activated = value; return this; } public String getDescription() { return Description; } public CB_BatchTrans setDescription(String value) { this.Description = value; return this; } public Short getReceiptPayment() { return ReceiptPayment; } public CB_BatchTrans setReceiptPayment(Short value) { this.ReceiptPayment = value; return this; } public String getBankLedgerID() { return BankLedgerID; } public CB_BatchTrans setBankLedgerID(String value) { this.BankLedgerID = value; return this; } public Boolean isGroupJournals() { return GroupJournals; } public CB_BatchTrans setGroupJournals(Boolean value) { this.GroupJournals = value; return this; } } public static class CB_CustomSetting { @Required() public String SettingID = null; @Required() public Date LastSavedDateTime = null; public String SettingDescription = null; public String SettingName = null; public BigDecimal DisplayOrder = null; public Short CellType = null; public String ScriptFormatCell = null; public String ScriptButtonClicked = null; public String ScriptReadData = null; @References(SY_Plugin.class) @Required() public UUID SY_Plugin_RecID = null; public String getSettingID() { return SettingID; } public CB_CustomSetting setSettingID(String value) { this.SettingID = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public CB_CustomSetting setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public String getSettingDescription() { return SettingDescription; } public CB_CustomSetting setSettingDescription(String value) { this.SettingDescription = value; return this; } public String getSettingName() { return SettingName; } public CB_CustomSetting setSettingName(String value) { this.SettingName = value; return this; } public BigDecimal getDisplayOrder() { return DisplayOrder; } public CB_CustomSetting setDisplayOrder(BigDecimal value) { this.DisplayOrder = value; return this; } public Short getCellType() { return CellType; } public CB_CustomSetting setCellType(Short value) { this.CellType = value; return this; } public String getScriptFormatCell() { return ScriptFormatCell; } public CB_CustomSetting setScriptFormatCell(String value) { this.ScriptFormatCell = value; return this; } public String getScriptButtonClicked() { return ScriptButtonClicked; } public CB_CustomSetting setScriptButtonClicked(String value) { this.ScriptButtonClicked = value; return this; } public String getScriptReadData() { return ScriptReadData; } public CB_CustomSetting setScriptReadData(String value) { this.ScriptReadData = value; return this; } public UUID getSyPluginRecID() { return SY_Plugin_RecID; } public CB_CustomSetting setSyPluginRecID(UUID value) { this.SY_Plugin_RecID = value; return this; } } public static class CB_CustomSettingValues { @Required() public String SettingValueID = null; @References(CB_CustomSetting.class) public String SettingID = null; @References(CB_BatchTrans.class) @Required() public String CashBookID = null; public String Contents = null; @Required() public Date LastSavedDateTime = null; public String getSettingValueID() { return SettingValueID; } public CB_CustomSettingValues setSettingValueID(String value) { this.SettingValueID = value; return this; } public String getSettingID() { return SettingID; } public CB_CustomSettingValues setSettingID(String value) { this.SettingID = value; return this; } public String getCashBookID() { return CashBookID; } public CB_CustomSettingValues setCashBookID(String value) { this.CashBookID = value; return this; } public String getContents() { return Contents; } public CB_CustomSettingValues setContents(String value) { this.Contents = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public CB_CustomSettingValues setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } } public static class CB_Documents { @Required() public String RecID = null; @Required() public String CashBookID = null; @Required() public String DocumentTypeID = null; public Date LastSavedDateTime = null; @Required() public String LastSavedByStaffID = null; public ArrayList FileBinary = null; public String Description = null; public String PhysicalFileName = null; @Required() public Integer ItemNo = null; public String getRecID() { return RecID; } public CB_Documents setRecID(String value) { this.RecID = value; return this; } public String getCashBookID() { return CashBookID; } public CB_Documents setCashBookID(String value) { this.CashBookID = value; return this; } public String getDocumentTypeID() { return DocumentTypeID; } public CB_Documents setDocumentTypeID(String value) { this.DocumentTypeID = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public CB_Documents setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public String getLastSavedByStaffID() { return LastSavedByStaffID; } public CB_Documents setLastSavedByStaffID(String value) { this.LastSavedByStaffID = value; return this; } public ArrayList getFileBinary() { return FileBinary; } public CB_Documents setFileBinary(ArrayList value) { this.FileBinary = value; return this; } public String getDescription() { return Description; } public CB_Documents setDescription(String value) { this.Description = value; return this; } public String getPhysicalFileName() { return PhysicalFileName; } public CB_Documents setPhysicalFileName(String value) { this.PhysicalFileName = value; return this; } public Integer getItemNo() { return ItemNo; } public CB_Documents setItemNo(Integer value) { this.ItemNo = value; return this; } } public static class CB_Notes { @Required() public String RecID = null; @Required() public String CashBookID = null; @Required() public String NoteTypeID = null; @Required() public Date LastSavedDateTime = null; @Required() public String LastSavedByStaffID = null; public String NoteText = null; @Required() public Integer ItemNo = null; public String getRecID() { return RecID; } public CB_Notes setRecID(String value) { this.RecID = value; return this; } public String getCashBookID() { return CashBookID; } public CB_Notes setCashBookID(String value) { this.CashBookID = value; return this; } public String getNoteTypeID() { return NoteTypeID; } public CB_Notes setNoteTypeID(String value) { this.NoteTypeID = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public CB_Notes setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public String getLastSavedByStaffID() { return LastSavedByStaffID; } public CB_Notes setLastSavedByStaffID(String value) { this.LastSavedByStaffID = value; return this; } public String getNoteText() { return NoteText; } public CB_Notes setNoteText(String value) { this.NoteText = value; return this; } public Integer getItemNo() { return ItemNo; } public CB_Notes setItemNo(Integer value) { this.ItemNo = value; return this; } } public static class CN_Contact { @Required() public String ContactID = null; public String AccNo = null; public String Title = null; public String FName = null; public String SName = null; @References(CN_ContactPosition.class) @Required() public String PrimaryID = null; @References(CN_ContactPosition.class) @Required() public String SecondaryID = null; @References(CN_ContactPosition.class) @Required() public String TertiaryID = null; public String Phone = null; public String Mobile = null; public String Fax = null; public String EmailAddress = null; @Required() public String ProspectID = null; public String LogonCode = null; public String LogonPassword = null; public String ExternalAppRecID = null; public Boolean DefaultContact = null; public Boolean DebtorContact = null; public Boolean CreditorContact = null; public Date LastSavedDateTime = null; @Required() public Integer ItemNo = null; public String getContactID() { return ContactID; } public CN_Contact setContactID(String value) { this.ContactID = value; return this; } public String getAccNo() { return AccNo; } public CN_Contact setAccNo(String value) { this.AccNo = value; return this; } public String getTitle() { return Title; } public CN_Contact setTitle(String value) { this.Title = value; return this; } public String getFName() { return FName; } public CN_Contact setFName(String value) { this.FName = value; return this; } public String getSName() { return SName; } public CN_Contact setSName(String value) { this.SName = value; return this; } public String getPrimaryID() { return PrimaryID; } public CN_Contact setPrimaryID(String value) { this.PrimaryID = value; return this; } public String getSecondaryID() { return SecondaryID; } public CN_Contact setSecondaryID(String value) { this.SecondaryID = value; return this; } public String getTertiaryID() { return TertiaryID; } public CN_Contact setTertiaryID(String value) { this.TertiaryID = value; return this; } public String getPhone() { return Phone; } public CN_Contact setPhone(String value) { this.Phone = value; return this; } public String getMobile() { return Mobile; } public CN_Contact setMobile(String value) { this.Mobile = value; return this; } public String getFax() { return Fax; } public CN_Contact setFax(String value) { this.Fax = value; return this; } public String getEmailAddress() { return EmailAddress; } public CN_Contact setEmailAddress(String value) { this.EmailAddress = value; return this; } public String getProspectID() { return ProspectID; } public CN_Contact setProspectID(String value) { this.ProspectID = value; return this; } public String getLogonCode() { return LogonCode; } public CN_Contact setLogonCode(String value) { this.LogonCode = value; return this; } public String getLogonPassword() { return LogonPassword; } public CN_Contact setLogonPassword(String value) { this.LogonPassword = value; return this; } public String getExternalAppRecID() { return ExternalAppRecID; } public CN_Contact setExternalAppRecID(String value) { this.ExternalAppRecID = value; return this; } public Boolean isDefaultContact() { return DefaultContact; } public CN_Contact setDefaultContact(Boolean value) { this.DefaultContact = value; return this; } public Boolean isDebtorContact() { return DebtorContact; } public CN_Contact setDebtorContact(Boolean value) { this.DebtorContact = value; return this; } public Boolean isCreditorContact() { return CreditorContact; } public CN_Contact setCreditorContact(Boolean value) { this.CreditorContact = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public CN_Contact setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Integer getItemNo() { return ItemNo; } public CN_Contact setItemNo(Integer value) { this.ItemNo = value; return this; } } public static class CN_ContactPosition { @Required() public String ContactPositionID = null; public Date LastSavedDateTime = null; @Required() public String Position = null; @Required() public Boolean IsDefault = null; public String getContactPositionID() { return ContactPositionID; } public CN_ContactPosition setContactPositionID(String value) { this.ContactPositionID = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public CN_ContactPosition setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public String getPosition() { return Position; } public CN_ContactPosition setPosition(String value) { this.Position = value; return this; } public Boolean getIsDefault() { return IsDefault; } public CN_ContactPosition setIsDefault(Boolean value) { this.IsDefault = value; return this; } } public static class CN_Documents { @Required() public String RecID = null; @Required() public String ProspectID = null; @Required() public String DocumentTypeID = null; public Date LastSavedDateTime = null; @Required() public String LastSavedByStaffID = null; public ArrayList FileBinary = null; public String Description = null; public String PhysicalFileName = null; @Required() public Integer ItemNo = null; public String getRecID() { return RecID; } public CN_Documents setRecID(String value) { this.RecID = value; return this; } public String getProspectID() { return ProspectID; } public CN_Documents setProspectID(String value) { this.ProspectID = value; return this; } public String getDocumentTypeID() { return DocumentTypeID; } public CN_Documents setDocumentTypeID(String value) { this.DocumentTypeID = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public CN_Documents setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public String getLastSavedByStaffID() { return LastSavedByStaffID; } public CN_Documents setLastSavedByStaffID(String value) { this.LastSavedByStaffID = value; return this; } public ArrayList getFileBinary() { return FileBinary; } public CN_Documents setFileBinary(ArrayList value) { this.FileBinary = value; return this; } public String getDescription() { return Description; } public CN_Documents setDescription(String value) { this.Description = value; return this; } public String getPhysicalFileName() { return PhysicalFileName; } public CN_Documents setPhysicalFileName(String value) { this.PhysicalFileName = value; return this; } public Integer getItemNo() { return ItemNo; } public CN_Documents setItemNo(Integer value) { this.ItemNo = value; return this; } } public static class CN_Group { @Required() public String GroupID = null; public Date LastSavedDateTime = null; public String Description = null; public String getGroupID() { return GroupID; } public CN_Group setGroupID(String value) { this.GroupID = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public CN_Group setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public String getDescription() { return Description; } public CN_Group setDescription(String value) { this.Description = value; return this; } } public static class CN_GroupLink { @Required() public String LinkID = null; @References(CN_Group.class) @Required() public String GroupID = null; public String ProspectID = null; @References(HR_Staff.class) @Required() public String StaffID = null; @Required() public Boolean DefaultItem = null; @Required() public Date LastSavedDateTime = null; public Integer ItemNo = null; public String getLinkID() { return LinkID; } public CN_GroupLink setLinkID(String value) { this.LinkID = value; return this; } public String getGroupID() { return GroupID; } public CN_GroupLink setGroupID(String value) { this.GroupID = value; return this; } public String getProspectID() { return ProspectID; } public CN_GroupLink setProspectID(String value) { this.ProspectID = value; return this; } public String getStaffID() { return StaffID; } public CN_GroupLink setStaffID(String value) { this.StaffID = value; return this; } public Boolean isDefaultItem() { return DefaultItem; } public CN_GroupLink setDefaultItem(Boolean value) { this.DefaultItem = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public CN_GroupLink setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Integer getItemNo() { return ItemNo; } public CN_GroupLink setItemNo(Integer value) { this.ItemNo = value; return this; } } public static class CN_Main { @Required() public String ProspectID = null; public Date LastSavedDateTime = null; @Required() public String ProspectNumber = null; public String CompanyName = null; public String Address1 = null; public String Address2 = null; public String Address3 = null; public String State = null; public String PostCode = null; public String Phone = null; public String Fax = null; public String EmailAddress = null; public String CRAccountNo = null; public String DBAccountNo = null; @References(CR_Main.class) public String CreditorID = null; @References(DB_Main.class) public String DebtorID = null; public String ExternalAppRecID = null; public String AustPostDPID = null; public String AustPostBCSP = null; @Required() public String Country = null; public String getProspectID() { return ProspectID; } public CN_Main setProspectID(String value) { this.ProspectID = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public CN_Main setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public String getProspectNumber() { return ProspectNumber; } public CN_Main setProspectNumber(String value) { this.ProspectNumber = value; return this; } public String getCompanyName() { return CompanyName; } public CN_Main setCompanyName(String value) { this.CompanyName = value; return this; } public String getAddress1() { return Address1; } public CN_Main setAddress1(String value) { this.Address1 = value; return this; } public String getAddress2() { return Address2; } public CN_Main setAddress2(String value) { this.Address2 = value; return this; } public String getAddress3() { return Address3; } public CN_Main setAddress3(String value) { this.Address3 = value; return this; } public String getState() { return State; } public CN_Main setState(String value) { this.State = value; return this; } public String getPostCode() { return PostCode; } public CN_Main setPostCode(String value) { this.PostCode = value; return this; } public String getPhone() { return Phone; } public CN_Main setPhone(String value) { this.Phone = value; return this; } public String getFax() { return Fax; } public CN_Main setFax(String value) { this.Fax = value; return this; } public String getEmailAddress() { return EmailAddress; } public CN_Main setEmailAddress(String value) { this.EmailAddress = value; return this; } public String getCrAccountNo() { return CRAccountNo; } public CN_Main setCrAccountNo(String value) { this.CRAccountNo = value; return this; } public String getDbAccountNo() { return DBAccountNo; } public CN_Main setDbAccountNo(String value) { this.DBAccountNo = value; return this; } public String getCreditorID() { return CreditorID; } public CN_Main setCreditorID(String value) { this.CreditorID = value; return this; } public String getDebtorID() { return DebtorID; } public CN_Main setDebtorID(String value) { this.DebtorID = value; return this; } public String getExternalAppRecID() { return ExternalAppRecID; } public CN_Main setExternalAppRecID(String value) { this.ExternalAppRecID = value; return this; } public String getAustPostDPID() { return AustPostDPID; } public CN_Main setAustPostDPID(String value) { this.AustPostDPID = value; return this; } public String getAustPostBCSP() { return AustPostBCSP; } public CN_Main setAustPostBCSP(String value) { this.AustPostBCSP = value; return this; } public String getCountry() { return Country; } public CN_Main setCountry(String value) { this.Country = value; return this; } } public static class CN_Notes { @Required() public String RecID = null; @Required() public String ProspectID = null; @Required() public String NoteTypeID = null; @Required() public Date LastSavedDateTime = null; @Required() public String LastSavedByStaffID = null; public String NoteText = null; @Required() public Integer ItemNo = null; public String getRecID() { return RecID; } public CN_Notes setRecID(String value) { this.RecID = value; return this; } public String getProspectID() { return ProspectID; } public CN_Notes setProspectID(String value) { this.ProspectID = value; return this; } public String getNoteTypeID() { return NoteTypeID; } public CN_Notes setNoteTypeID(String value) { this.NoteTypeID = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public CN_Notes setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public String getLastSavedByStaffID() { return LastSavedByStaffID; } public CN_Notes setLastSavedByStaffID(String value) { this.LastSavedByStaffID = value; return this; } public String getNoteText() { return NoteText; } public CN_Notes setNoteText(String value) { this.NoteText = value; return this; } public Integer getItemNo() { return ItemNo; } public CN_Notes setItemNo(Integer value) { this.ItemNo = value; return this; } } public static class CN_SyncLog { @Required() public String RecID = null; public Date LastSavedDateTime = null; public String SyncFlag = null; public String getRecID() { return RecID; } public CN_SyncLog setRecID(String value) { this.RecID = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public CN_SyncLog setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public String getSyncFlag() { return SyncFlag; } public CN_SyncLog setSyncFlag(String value) { this.SyncFlag = value; return this; } } public static class CR_AllocationBatch { @Required() public String RecID = null; @Required() public Date LastSavedDateTime = null; @Required() public String BatchNo = null; @Required() public String StaffID = null; @Required() public Date BatchDate = null; @Required() public String CreditorID = null; public String getRecID() { return RecID; } public CR_AllocationBatch setRecID(String value) { this.RecID = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public CR_AllocationBatch setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public String getBatchNo() { return BatchNo; } public CR_AllocationBatch setBatchNo(String value) { this.BatchNo = value; return this; } public String getStaffID() { return StaffID; } public CR_AllocationBatch setStaffID(String value) { this.StaffID = value; return this; } public Date getBatchDate() { return BatchDate; } public CR_AllocationBatch setBatchDate(Date value) { this.BatchDate = value; return this; } public String getCreditorID() { return CreditorID; } public CR_AllocationBatch setCreditorID(String value) { this.CreditorID = value; return this; } } public static class CR_AllocationBatchTransactions { @Required() public String CR_TransAlloc_AllocID = null; @Required() public String CR_AllocationBatch_RecID = null; public String getCrTransAllocAllocID() { return CR_TransAlloc_AllocID; } public CR_AllocationBatchTransactions setCrTransAllocAllocID(String value) { this.CR_TransAlloc_AllocID = value; return this; } public String getCrAllocationBatchRecID() { return CR_AllocationBatch_RecID; } public CR_AllocationBatchTransactions setCrAllocationBatchRecID(String value) { this.CR_AllocationBatch_RecID = value; return this; } } public static class CR_APIKey { @Required() public UUID RecID = null; public String Name = null; @References(CR_Main.class) @Required() public String CR_Main_CreditorID = null; @References(HR_Staff.class) @Required() public String HR_Staff_StaffID = null; @Required() public Date CreatedDateTime = null; public Date ExpiryDateTime = null; public Date CancelledDateTime = null; @Required() public Date LastSavedDateTime = null; @Required() public String KeyValue = null; @Required() public Boolean IsEnabled = null; @Required() public Integer ItemNo = null; @Required() public ArrayList RowHash = null; public UUID getRecID() { return RecID; } public CR_APIKey setRecID(UUID value) { this.RecID = value; return this; } public String getName() { return Name; } public CR_APIKey setName(String value) { this.Name = value; return this; } public String getCrMainCreditorID() { return CR_Main_CreditorID; } public CR_APIKey setCrMainCreditorID(String value) { this.CR_Main_CreditorID = value; return this; } public String getHrStaffStaffID() { return HR_Staff_StaffID; } public CR_APIKey setHrStaffStaffID(String value) { this.HR_Staff_StaffID = value; return this; } public Date getCreatedDateTime() { return CreatedDateTime; } public CR_APIKey setCreatedDateTime(Date value) { this.CreatedDateTime = value; return this; } public Date getExpiryDateTime() { return ExpiryDateTime; } public CR_APIKey setExpiryDateTime(Date value) { this.ExpiryDateTime = value; return this; } public Date getCancelledDateTime() { return CancelledDateTime; } public CR_APIKey setCancelledDateTime(Date value) { this.CancelledDateTime = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public CR_APIKey setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public String getKeyValue() { return KeyValue; } public CR_APIKey setKeyValue(String value) { this.KeyValue = value; return this; } public Boolean getIsEnabled() { return IsEnabled; } public CR_APIKey setIsEnabled(Boolean value) { this.IsEnabled = value; return this; } public Integer getItemNo() { return ItemNo; } public CR_APIKey setItemNo(Integer value) { this.ItemNo = value; return this; } public ArrayList getRowHash() { return RowHash; } public CR_APIKey setRowHash(ArrayList value) { this.RowHash = value; return this; } } public static class CR_AUDIT { @Required() public String CreditorID = null; public BigDecimal CreditorTotal = null; @Required() public String ReportGroup = null; public String getCreditorID() { return CreditorID; } public CR_AUDIT setCreditorID(String value) { this.CreditorID = value; return this; } public BigDecimal getCreditorTotal() { return CreditorTotal; } public CR_AUDIT setCreditorTotal(BigDecimal value) { this.CreditorTotal = value; return this; } public String getReportGroup() { return ReportGroup; } public CR_AUDIT setReportGroup(String value) { this.ReportGroup = value; return this; } } public static class CR_AutoTran { @Required() public String CRAutoTranID = null; public Date LastSavedDateTime = null; public Date RunDateTime = null; public String UserName = null; public String RunNo = null; public String getCrAutoTranID() { return CRAutoTranID; } public CR_AutoTran setCrAutoTranID(String value) { this.CRAutoTranID = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public CR_AutoTran setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Date getRunDateTime() { return RunDateTime; } public CR_AutoTran setRunDateTime(Date value) { this.RunDateTime = value; return this; } public String getUserName() { return UserName; } public CR_AutoTran setUserName(String value) { this.UserName = value; return this; } public String getRunNo() { return RunNo; } public CR_AutoTran setRunNo(String value) { this.RunNo = value; return this; } } public static class CR_AutoTranLines { @Required() public String CRAutoTranLineID = null; @Required() public String CRAutoTranID = null; @Required() public String SourceCRBatchID = null; @Required() public String SourceBatchNo = null; @Required() public Short SourceReceiptType = null; public String SourceDesc = null; public Date PostingDue = null; public String Reason = null; @Required() public String DestCRBatchID = null; @Required() public String DestBatchNo = null; @Required() public Short LineNum = null; public Date LastSavedDateTime = null; public String getCrAutoTranLineID() { return CRAutoTranLineID; } public CR_AutoTranLines setCrAutoTranLineID(String value) { this.CRAutoTranLineID = value; return this; } public String getCrAutoTranID() { return CRAutoTranID; } public CR_AutoTranLines setCrAutoTranID(String value) { this.CRAutoTranID = value; return this; } public String getSourceCRBatchID() { return SourceCRBatchID; } public CR_AutoTranLines setSourceCRBatchID(String value) { this.SourceCRBatchID = value; return this; } public String getSourceBatchNo() { return SourceBatchNo; } public CR_AutoTranLines setSourceBatchNo(String value) { this.SourceBatchNo = value; return this; } public Short getSourceReceiptType() { return SourceReceiptType; } public CR_AutoTranLines setSourceReceiptType(Short value) { this.SourceReceiptType = value; return this; } public String getSourceDesc() { return SourceDesc; } public CR_AutoTranLines setSourceDesc(String value) { this.SourceDesc = value; return this; } public Date getPostingDue() { return PostingDue; } public CR_AutoTranLines setPostingDue(Date value) { this.PostingDue = value; return this; } public String getReason() { return Reason; } public CR_AutoTranLines setReason(String value) { this.Reason = value; return this; } public String getDestCRBatchID() { return DestCRBatchID; } public CR_AutoTranLines setDestCRBatchID(String value) { this.DestCRBatchID = value; return this; } public String getDestBatchNo() { return DestBatchNo; } public CR_AutoTranLines setDestBatchNo(String value) { this.DestBatchNo = value; return this; } public Short getLineNum() { return LineNum; } public CR_AutoTranLines setLineNum(Short value) { this.LineNum = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public CR_AutoTranLines setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } } public static class CR_BatchPayLines { @Required() public String CR_BatchPayLinesID = null; @References(CR_BatchPayment.class) @Required() public String CR_BatchPayID = null; @Required() public String CR_TransID = null; public BigDecimal PaymentAmount = null; public Short BatchLineNo = null; @Required() public String HistoryText = null; @Required() public String PaymentTransID = null; @Required() public String ChequeNo = null; public String LedgerID = null; public BigDecimal PaymentFromBankAmount = null; public BigDecimal PaymentFXAmount = null; public BigDecimal CurrencyRateUsed = null; public String FXShortCode = null; public BigDecimal DiscountAmount = null; public BigDecimal HomeDiscountAmount = null; public String GSTID = null; public BigDecimal GSTAmount = null; public BigDecimal GSTRate = null; public String DiscountLedgerID = null; public Date LastSavedDateTime = null; @References(FX_Currency.class) public String CurrencyID = null; public BigDecimal UnrealisedGainLoss = null; public BigDecimal RealisedGainLoss = null; public BigDecimal PaymentFromBankFXAmount = null; public String BankLedgerID = null; public BigDecimal FeeAmount = null; public String FeeGSTID = null; public BigDecimal FeeGSTRate = null; public BigDecimal FeeGSTAmount = null; public BigDecimal FeeIncGSTAmount = null; public Integer LineNumber = null; public BigDecimal CR_TransOutstandingAmount = null; public BigDecimal CR_TransOutstandingFXAmount = null; public String EFTReference = null; public String getCrBatchPayLinesID() { return CR_BatchPayLinesID; } public CR_BatchPayLines setCrBatchPayLinesID(String value) { this.CR_BatchPayLinesID = value; return this; } public String getCrBatchPayID() { return CR_BatchPayID; } public CR_BatchPayLines setCrBatchPayID(String value) { this.CR_BatchPayID = value; return this; } public String getCrTransID() { return CR_TransID; } public CR_BatchPayLines setCrTransID(String value) { this.CR_TransID = value; return this; } public BigDecimal getPaymentAmount() { return PaymentAmount; } public CR_BatchPayLines setPaymentAmount(BigDecimal value) { this.PaymentAmount = value; return this; } public Short getBatchLineNo() { return BatchLineNo; } public CR_BatchPayLines setBatchLineNo(Short value) { this.BatchLineNo = value; return this; } public String getHistoryText() { return HistoryText; } public CR_BatchPayLines setHistoryText(String value) { this.HistoryText = value; return this; } public String getPaymentTransID() { return PaymentTransID; } public CR_BatchPayLines setPaymentTransID(String value) { this.PaymentTransID = value; return this; } public String getChequeNo() { return ChequeNo; } public CR_BatchPayLines setChequeNo(String value) { this.ChequeNo = value; return this; } public String getLedgerID() { return LedgerID; } public CR_BatchPayLines setLedgerID(String value) { this.LedgerID = value; return this; } public BigDecimal getPaymentFromBankAmount() { return PaymentFromBankAmount; } public CR_BatchPayLines setPaymentFromBankAmount(BigDecimal value) { this.PaymentFromBankAmount = value; return this; } public BigDecimal getPaymentFXAmount() { return PaymentFXAmount; } public CR_BatchPayLines setPaymentFXAmount(BigDecimal value) { this.PaymentFXAmount = value; return this; } public BigDecimal getCurrencyRateUsed() { return CurrencyRateUsed; } public CR_BatchPayLines setCurrencyRateUsed(BigDecimal value) { this.CurrencyRateUsed = value; return this; } public String getFxShortCode() { return FXShortCode; } public CR_BatchPayLines setFxShortCode(String value) { this.FXShortCode = value; return this; } public BigDecimal getDiscountAmount() { return DiscountAmount; } public CR_BatchPayLines setDiscountAmount(BigDecimal value) { this.DiscountAmount = value; return this; } public BigDecimal getHomeDiscountAmount() { return HomeDiscountAmount; } public CR_BatchPayLines setHomeDiscountAmount(BigDecimal value) { this.HomeDiscountAmount = value; return this; } public String getGstid() { return GSTID; } public CR_BatchPayLines setGstid(String value) { this.GSTID = value; return this; } public BigDecimal getGstAmount() { return GSTAmount; } public CR_BatchPayLines setGstAmount(BigDecimal value) { this.GSTAmount = value; return this; } public BigDecimal getGstRate() { return GSTRate; } public CR_BatchPayLines setGstRate(BigDecimal value) { this.GSTRate = value; return this; } public String getDiscountLedgerID() { return DiscountLedgerID; } public CR_BatchPayLines setDiscountLedgerID(String value) { this.DiscountLedgerID = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public CR_BatchPayLines setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public String getCurrencyID() { return CurrencyID; } public CR_BatchPayLines setCurrencyID(String value) { this.CurrencyID = value; return this; } public BigDecimal getUnrealisedGainLoss() { return UnrealisedGainLoss; } public CR_BatchPayLines setUnrealisedGainLoss(BigDecimal value) { this.UnrealisedGainLoss = value; return this; } public BigDecimal getRealisedGainLoss() { return RealisedGainLoss; } public CR_BatchPayLines setRealisedGainLoss(BigDecimal value) { this.RealisedGainLoss = value; return this; } public BigDecimal getPaymentFromBankFXAmount() { return PaymentFromBankFXAmount; } public CR_BatchPayLines setPaymentFromBankFXAmount(BigDecimal value) { this.PaymentFromBankFXAmount = value; return this; } public String getBankLedgerID() { return BankLedgerID; } public CR_BatchPayLines setBankLedgerID(String value) { this.BankLedgerID = value; return this; } public BigDecimal getFeeAmount() { return FeeAmount; } public CR_BatchPayLines setFeeAmount(BigDecimal value) { this.FeeAmount = value; return this; } public String getFeeGSTID() { return FeeGSTID; } public CR_BatchPayLines setFeeGSTID(String value) { this.FeeGSTID = value; return this; } public BigDecimal getFeeGSTRate() { return FeeGSTRate; } public CR_BatchPayLines setFeeGSTRate(BigDecimal value) { this.FeeGSTRate = value; return this; } public BigDecimal getFeeGSTAmount() { return FeeGSTAmount; } public CR_BatchPayLines setFeeGSTAmount(BigDecimal value) { this.FeeGSTAmount = value; return this; } public BigDecimal getFeeIncGSTAmount() { return FeeIncGSTAmount; } public CR_BatchPayLines setFeeIncGSTAmount(BigDecimal value) { this.FeeIncGSTAmount = value; return this; } public Integer getLineNumber() { return LineNumber; } public CR_BatchPayLines setLineNumber(Integer value) { this.LineNumber = value; return this; } public BigDecimal getCrTransOutstandingAmount() { return CR_TransOutstandingAmount; } public CR_BatchPayLines setCrTransOutstandingAmount(BigDecimal value) { this.CR_TransOutstandingAmount = value; return this; } public BigDecimal getCrTransOutstandingFXAmount() { return CR_TransOutstandingFXAmount; } public CR_BatchPayLines setCrTransOutstandingFXAmount(BigDecimal value) { this.CR_TransOutstandingFXAmount = value; return this; } public String getEftReference() { return EFTReference; } public CR_BatchPayLines setEftReference(String value) { this.EFTReference = value; return this; } } public static class CR_BatchPayment { @Required() public String CR_BatchPayID = null; @Required() public String BatchNo = null; public Date CreationDate = null; public Date ActivationDate = null; public Date LastSavedDateTime = null; public Short Status = null; @Required() public String GLBankID = null; @Required() public Boolean OneCheque = null; public Boolean UseSelectedBank = null; public Boolean TypeCheque = null; public String StartChequeNo = null; @References(HR_Staff.class) @Required() public String CreatedBy_HR_Staff_RecID = null; public String getCrBatchPayID() { return CR_BatchPayID; } public CR_BatchPayment setCrBatchPayID(String value) { this.CR_BatchPayID = value; return this; } public String getBatchNo() { return BatchNo; } public CR_BatchPayment setBatchNo(String value) { this.BatchNo = value; return this; } public Date getCreationDate() { return CreationDate; } public CR_BatchPayment setCreationDate(Date value) { this.CreationDate = value; return this; } public Date getActivationDate() { return ActivationDate; } public CR_BatchPayment setActivationDate(Date value) { this.ActivationDate = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public CR_BatchPayment setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Short getStatus() { return Status; } public CR_BatchPayment setStatus(Short value) { this.Status = value; return this; } public String getGlBankID() { return GLBankID; } public CR_BatchPayment setGlBankID(String value) { this.GLBankID = value; return this; } public Boolean isOneCheque() { return OneCheque; } public CR_BatchPayment setOneCheque(Boolean value) { this.OneCheque = value; return this; } public Boolean isUseSelectedBank() { return UseSelectedBank; } public CR_BatchPayment setUseSelectedBank(Boolean value) { this.UseSelectedBank = value; return this; } public Boolean isTypeCheque() { return TypeCheque; } public CR_BatchPayment setTypeCheque(Boolean value) { this.TypeCheque = value; return this; } public String getStartChequeNo() { return StartChequeNo; } public CR_BatchPayment setStartChequeNo(String value) { this.StartChequeNo = value; return this; } public String getCreatedByHrStaffRecID() { return CreatedBy_HR_Staff_RecID; } public CR_BatchPayment setCreatedByHrStaffRecID(String value) { this.CreatedBy_HR_Staff_RecID = value; return this; } } public static class CR_BatchTranLines { @Required() public String ReceiptLineID = null; @References(CR_BatchTrans.class) @Required() public String ReceiptID = null; public Date LastSavedDateTime = null; @References(CR_Main.class) public String AccountID = null; @References(GL_Ledger.class) public String LedgerID = null; public String LineReference = null; public String Remark = null; public String RemitNo = null; public BigDecimal HomeTransAmount = null; @Required() public Integer LineNum = null; @References(GL_Ledger.class) public String OtherLedgerID = null; public BigDecimal HomeDispAmount = null; public Date ReceiptDate = null; public BigDecimal SupplierTransAmount = null; public BigDecimal SupplierDispAmount = null; public BigDecimal CurrencyRateUsed = null; @References(TX_Main.class) public String TaxID = null; public BigDecimal TaxRate = null; public BigDecimal TaxAmount = null; public Date DueDate = null; public BigDecimal HomeDispAmountIncGST = null; @References(FX_Currency.class) public String CurrencyID = null; public BigDecimal JobChargeAmount = null; @References(JB_JobStages.class) public String JB_JobStages_RecID = null; public String getReceiptLineID() { return ReceiptLineID; } public CR_BatchTranLines setReceiptLineID(String value) { this.ReceiptLineID = value; return this; } public String getReceiptID() { return ReceiptID; } public CR_BatchTranLines setReceiptID(String value) { this.ReceiptID = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public CR_BatchTranLines setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public String getAccountID() { return AccountID; } public CR_BatchTranLines setAccountID(String value) { this.AccountID = value; return this; } public String getLedgerID() { return LedgerID; } public CR_BatchTranLines setLedgerID(String value) { this.LedgerID = value; return this; } public String getLineReference() { return LineReference; } public CR_BatchTranLines setLineReference(String value) { this.LineReference = value; return this; } public String getRemark() { return Remark; } public CR_BatchTranLines setRemark(String value) { this.Remark = value; return this; } public String getRemitNo() { return RemitNo; } public CR_BatchTranLines setRemitNo(String value) { this.RemitNo = value; return this; } public BigDecimal getHomeTransAmount() { return HomeTransAmount; } public CR_BatchTranLines setHomeTransAmount(BigDecimal value) { this.HomeTransAmount = value; return this; } public Integer getLineNum() { return LineNum; } public CR_BatchTranLines setLineNum(Integer value) { this.LineNum = value; return this; } public String getOtherLedgerID() { return OtherLedgerID; } public CR_BatchTranLines setOtherLedgerID(String value) { this.OtherLedgerID = value; return this; } public BigDecimal getHomeDispAmount() { return HomeDispAmount; } public CR_BatchTranLines setHomeDispAmount(BigDecimal value) { this.HomeDispAmount = value; return this; } public Date getReceiptDate() { return ReceiptDate; } public CR_BatchTranLines setReceiptDate(Date value) { this.ReceiptDate = value; return this; } public BigDecimal getSupplierTransAmount() { return SupplierTransAmount; } public CR_BatchTranLines setSupplierTransAmount(BigDecimal value) { this.SupplierTransAmount = value; return this; } public BigDecimal getSupplierDispAmount() { return SupplierDispAmount; } public CR_BatchTranLines setSupplierDispAmount(BigDecimal value) { this.SupplierDispAmount = value; return this; } public BigDecimal getCurrencyRateUsed() { return CurrencyRateUsed; } public CR_BatchTranLines setCurrencyRateUsed(BigDecimal value) { this.CurrencyRateUsed = value; return this; } public String getTaxID() { return TaxID; } public CR_BatchTranLines setTaxID(String value) { this.TaxID = value; return this; } public BigDecimal getTaxRate() { return TaxRate; } public CR_BatchTranLines setTaxRate(BigDecimal value) { this.TaxRate = value; return this; } public BigDecimal getTaxAmount() { return TaxAmount; } public CR_BatchTranLines setTaxAmount(BigDecimal value) { this.TaxAmount = value; return this; } public Date getDueDate() { return DueDate; } public CR_BatchTranLines setDueDate(Date value) { this.DueDate = value; return this; } public BigDecimal getHomeDispAmountIncGST() { return HomeDispAmountIncGST; } public CR_BatchTranLines setHomeDispAmountIncGST(BigDecimal value) { this.HomeDispAmountIncGST = value; return this; } public String getCurrencyID() { return CurrencyID; } public CR_BatchTranLines setCurrencyID(String value) { this.CurrencyID = value; return this; } public BigDecimal getJobChargeAmount() { return JobChargeAmount; } public CR_BatchTranLines setJobChargeAmount(BigDecimal value) { this.JobChargeAmount = value; return this; } public String getJbJobStagesRecID() { return JB_JobStages_RecID; } public CR_BatchTranLines setJbJobStagesRecID(String value) { this.JB_JobStages_RecID = value; return this; } } public static class CR_BatchTrans { @Required() public String ReceiptID = null; public Date LastSavedDateTime = null; public String JiwaUser = null; public Date ReceiptDate = null; public String BatchNum = null; public Short ReceiptType = null; public Short ReceiptStatus = null; @Required() public Short BatchType = null; @Required() public Short RepeatingType = null; @Required() public Short RepeatingUnits = null; public Date NextRepeatingDate = null; @Required() public Boolean RepeatingWillEnd = null; public Date RepeatingEndDate = null; public String Description = null; public String getReceiptID() { return ReceiptID; } public CR_BatchTrans setReceiptID(String value) { this.ReceiptID = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public CR_BatchTrans setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public String getJiwaUser() { return JiwaUser; } public CR_BatchTrans setJiwaUser(String value) { this.JiwaUser = value; return this; } public Date getReceiptDate() { return ReceiptDate; } public CR_BatchTrans setReceiptDate(Date value) { this.ReceiptDate = value; return this; } public String getBatchNum() { return BatchNum; } public CR_BatchTrans setBatchNum(String value) { this.BatchNum = value; return this; } public Short getReceiptType() { return ReceiptType; } public CR_BatchTrans setReceiptType(Short value) { this.ReceiptType = value; return this; } public Short getReceiptStatus() { return ReceiptStatus; } public CR_BatchTrans setReceiptStatus(Short value) { this.ReceiptStatus = value; return this; } public Short getBatchType() { return BatchType; } public CR_BatchTrans setBatchType(Short value) { this.BatchType = value; return this; } public Short getRepeatingType() { return RepeatingType; } public CR_BatchTrans setRepeatingType(Short value) { this.RepeatingType = value; return this; } public Short getRepeatingUnits() { return RepeatingUnits; } public CR_BatchTrans setRepeatingUnits(Short value) { this.RepeatingUnits = value; return this; } public Date getNextRepeatingDate() { return NextRepeatingDate; } public CR_BatchTrans setNextRepeatingDate(Date value) { this.NextRepeatingDate = value; return this; } public Boolean isRepeatingWillEnd() { return RepeatingWillEnd; } public CR_BatchTrans setRepeatingWillEnd(Boolean value) { this.RepeatingWillEnd = value; return this; } public Date getRepeatingEndDate() { return RepeatingEndDate; } public CR_BatchTrans setRepeatingEndDate(Date value) { this.RepeatingEndDate = value; return this; } public String getDescription() { return Description; } public CR_BatchTrans setDescription(String value) { this.Description = value; return this; } } public static class CR_BatchTransDocuments { @Required() public String RecID = null; @References(CR_BatchTrans.class) @Required() public String CR_BatchTrans_ReceiptID = null; @References(SY_DocumentTypes.class) @Required() public String DocumentTypeID = null; public Date LastSavedDateTime = null; @References(HR_Staff.class) @Required() public String LastSavedByStaffID = null; public ArrayList FileBinary = null; public String Description = null; public String PhysicalFileName = null; @Required() public Integer ItemNo = null; public String getRecID() { return RecID; } public CR_BatchTransDocuments setRecID(String value) { this.RecID = value; return this; } public String getCrBatchTransReceiptID() { return CR_BatchTrans_ReceiptID; } public CR_BatchTransDocuments setCrBatchTransReceiptID(String value) { this.CR_BatchTrans_ReceiptID = value; return this; } public String getDocumentTypeID() { return DocumentTypeID; } public CR_BatchTransDocuments setDocumentTypeID(String value) { this.DocumentTypeID = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public CR_BatchTransDocuments setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public String getLastSavedByStaffID() { return LastSavedByStaffID; } public CR_BatchTransDocuments setLastSavedByStaffID(String value) { this.LastSavedByStaffID = value; return this; } public ArrayList getFileBinary() { return FileBinary; } public CR_BatchTransDocuments setFileBinary(ArrayList value) { this.FileBinary = value; return this; } public String getDescription() { return Description; } public CR_BatchTransDocuments setDescription(String value) { this.Description = value; return this; } public String getPhysicalFileName() { return PhysicalFileName; } public CR_BatchTransDocuments setPhysicalFileName(String value) { this.PhysicalFileName = value; return this; } public Integer getItemNo() { return ItemNo; } public CR_BatchTransDocuments setItemNo(Integer value) { this.ItemNo = value; return this; } } public static class CR_BatchTransNotes { @Required() public String RecID = null; @References(CR_BatchTrans.class) @Required() public String CR_BatchTrans_ReceiptID = null; @References(SY_NoteTypes.class) @Required() public String NoteTypeID = null; @Required() public Date LastSavedDateTime = null; @References(HR_Staff.class) @Required() public String LastSavedByStaffID = null; public String NoteText = null; @Required() public Integer ItemNo = null; public String getRecID() { return RecID; } public CR_BatchTransNotes setRecID(String value) { this.RecID = value; return this; } public String getCrBatchTransReceiptID() { return CR_BatchTrans_ReceiptID; } public CR_BatchTransNotes setCrBatchTransReceiptID(String value) { this.CR_BatchTrans_ReceiptID = value; return this; } public String getNoteTypeID() { return NoteTypeID; } public CR_BatchTransNotes setNoteTypeID(String value) { this.NoteTypeID = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public CR_BatchTransNotes setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public String getLastSavedByStaffID() { return LastSavedByStaffID; } public CR_BatchTransNotes setLastSavedByStaffID(String value) { this.LastSavedByStaffID = value; return this; } public String getNoteText() { return NoteText; } public CR_BatchTransNotes setNoteText(String value) { this.NoteText = value; return this; } public Integer getItemNo() { return ItemNo; } public CR_BatchTransNotes setItemNo(Integer value) { this.ItemNo = value; return this; } } public static class CR_Classification { @Required() public String CreditorClassificationID = null; public Date LastSavedDateTime = null; @Required() public String Description = null; public String LedgerIDCreditorControl = null; public String LedgerIDCreditorPurchases = null; public String LedgerIDCreditorDiscounts = null; public String LedgerIDCreditorSourcedPayments = null; public String LedgerIDCreditorSourcedDebitAdjustment = null; public String LedgerIDCreditorSourcedPurchase = null; public String LedgerIDCreditorSourcedCreditAdjustment = null; public String LedgerIDCreditorFreight = null; public String LedgerIDCreditorInsurance = null; public String LedgerIDCreditorDuty = null; public String LedgerIDCreditorRealisedGainLoss = null; public String LedgerIDCreditorUnRealisedGainLoss = null; public Short TermsDays = null; @Required() public Short TermsType = null; @Required() public String PO_Workflows_RecID = null; @Required() public Boolean IsDefault = null; public String getCreditorClassificationID() { return CreditorClassificationID; } public CR_Classification setCreditorClassificationID(String value) { this.CreditorClassificationID = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public CR_Classification setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public String getDescription() { return Description; } public CR_Classification setDescription(String value) { this.Description = value; return this; } public String getLedgerIDCreditorControl() { return LedgerIDCreditorControl; } public CR_Classification setLedgerIDCreditorControl(String value) { this.LedgerIDCreditorControl = value; return this; } public String getLedgerIDCreditorPurchases() { return LedgerIDCreditorPurchases; } public CR_Classification setLedgerIDCreditorPurchases(String value) { this.LedgerIDCreditorPurchases = value; return this; } public String getLedgerIDCreditorDiscounts() { return LedgerIDCreditorDiscounts; } public CR_Classification setLedgerIDCreditorDiscounts(String value) { this.LedgerIDCreditorDiscounts = value; return this; } public String getLedgerIDCreditorSourcedPayments() { return LedgerIDCreditorSourcedPayments; } public CR_Classification setLedgerIDCreditorSourcedPayments(String value) { this.LedgerIDCreditorSourcedPayments = value; return this; } public String getLedgerIDCreditorSourcedDebitAdjustment() { return LedgerIDCreditorSourcedDebitAdjustment; } public CR_Classification setLedgerIDCreditorSourcedDebitAdjustment(String value) { this.LedgerIDCreditorSourcedDebitAdjustment = value; return this; } public String getLedgerIDCreditorSourcedPurchase() { return LedgerIDCreditorSourcedPurchase; } public CR_Classification setLedgerIDCreditorSourcedPurchase(String value) { this.LedgerIDCreditorSourcedPurchase = value; return this; } public String getLedgerIDCreditorSourcedCreditAdjustment() { return LedgerIDCreditorSourcedCreditAdjustment; } public CR_Classification setLedgerIDCreditorSourcedCreditAdjustment(String value) { this.LedgerIDCreditorSourcedCreditAdjustment = value; return this; } public String getLedgerIDCreditorFreight() { return LedgerIDCreditorFreight; } public CR_Classification setLedgerIDCreditorFreight(String value) { this.LedgerIDCreditorFreight = value; return this; } public String getLedgerIDCreditorInsurance() { return LedgerIDCreditorInsurance; } public CR_Classification setLedgerIDCreditorInsurance(String value) { this.LedgerIDCreditorInsurance = value; return this; } public String getLedgerIDCreditorDuty() { return LedgerIDCreditorDuty; } public CR_Classification setLedgerIDCreditorDuty(String value) { this.LedgerIDCreditorDuty = value; return this; } public String getLedgerIDCreditorRealisedGainLoss() { return LedgerIDCreditorRealisedGainLoss; } public CR_Classification setLedgerIDCreditorRealisedGainLoss(String value) { this.LedgerIDCreditorRealisedGainLoss = value; return this; } public String getLedgerIDCreditorUnRealisedGainLoss() { return LedgerIDCreditorUnRealisedGainLoss; } public CR_Classification setLedgerIDCreditorUnRealisedGainLoss(String value) { this.LedgerIDCreditorUnRealisedGainLoss = value; return this; } public Short getTermsDays() { return TermsDays; } public CR_Classification setTermsDays(Short value) { this.TermsDays = value; return this; } public Short getTermsType() { return TermsType; } public CR_Classification setTermsType(Short value) { this.TermsType = value; return this; } public String getPoWorkflowsRecID() { return PO_Workflows_RecID; } public CR_Classification setPoWorkflowsRecID(String value) { this.PO_Workflows_RecID = value; return this; } public Boolean getIsDefault() { return IsDefault; } public CR_Classification setIsDefault(Boolean value) { this.IsDefault = value; return this; } } public static class CR_CreditAdjustmentCustomSetting { @Required() public String SettingID = null; @Required() public Date LastSavedDateTime = null; public String SettingDescription = null; public String SettingName = null; public Integer DisplayOrder = null; public Short CellType = null; public String ScriptFormatCell = null; public String ScriptButtonClicked = null; public String ScriptReadData = null; public String GridHandlerCode = null; @References(SY_Plugin.class) @Required() public UUID SY_Plugin_RecID = null; public String getSettingID() { return SettingID; } public CR_CreditAdjustmentCustomSetting setSettingID(String value) { this.SettingID = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public CR_CreditAdjustmentCustomSetting setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public String getSettingDescription() { return SettingDescription; } public CR_CreditAdjustmentCustomSetting setSettingDescription(String value) { this.SettingDescription = value; return this; } public String getSettingName() { return SettingName; } public CR_CreditAdjustmentCustomSetting setSettingName(String value) { this.SettingName = value; return this; } public Integer getDisplayOrder() { return DisplayOrder; } public CR_CreditAdjustmentCustomSetting setDisplayOrder(Integer value) { this.DisplayOrder = value; return this; } public Short getCellType() { return CellType; } public CR_CreditAdjustmentCustomSetting setCellType(Short value) { this.CellType = value; return this; } public String getScriptFormatCell() { return ScriptFormatCell; } public CR_CreditAdjustmentCustomSetting setScriptFormatCell(String value) { this.ScriptFormatCell = value; return this; } public String getScriptButtonClicked() { return ScriptButtonClicked; } public CR_CreditAdjustmentCustomSetting setScriptButtonClicked(String value) { this.ScriptButtonClicked = value; return this; } public String getScriptReadData() { return ScriptReadData; } public CR_CreditAdjustmentCustomSetting setScriptReadData(String value) { this.ScriptReadData = value; return this; } public String getGridHandlerCode() { return GridHandlerCode; } public CR_CreditAdjustmentCustomSetting setGridHandlerCode(String value) { this.GridHandlerCode = value; return this; } public UUID getSyPluginRecID() { return SY_Plugin_RecID; } public CR_CreditAdjustmentCustomSetting setSyPluginRecID(UUID value) { this.SY_Plugin_RecID = value; return this; } } public static class CR_CreditAdjustmentCustomSettingValues { @Required() public String SettingValueID = null; @References(CR_CreditAdjustmentCustomSetting.class) public String SettingID = null; @References(CR_BatchTrans.class) @Required() public String CR_BatchTrans_ReceiptID = null; public String Contents = null; @Required() public Date LastSavedDateTime = null; public String getSettingValueID() { return SettingValueID; } public CR_CreditAdjustmentCustomSettingValues setSettingValueID(String value) { this.SettingValueID = value; return this; } public String getSettingID() { return SettingID; } public CR_CreditAdjustmentCustomSettingValues setSettingID(String value) { this.SettingID = value; return this; } public String getCrBatchTransReceiptID() { return CR_BatchTrans_ReceiptID; } public CR_CreditAdjustmentCustomSettingValues setCrBatchTransReceiptID(String value) { this.CR_BatchTrans_ReceiptID = value; return this; } public String getContents() { return Contents; } public CR_CreditAdjustmentCustomSettingValues setContents(String value) { this.Contents = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public CR_CreditAdjustmentCustomSettingValues setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } } public static class CR_CreditorCreditAdjustmentLineCustomFields { @Required() public String RecID = null; @Required() public String SettingName = null; public String SettingDescription = null; public Integer CellType = null; public String FieldParameter = null; @References(SY_Plugin.class) @Required() public UUID SY_Plugin_RecID = null; @Required() public Date LastSavedDateTime = null; public Integer DisplayOrder = null; public String getRecID() { return RecID; } public CR_CreditorCreditAdjustmentLineCustomFields setRecID(String value) { this.RecID = value; return this; } public String getSettingName() { return SettingName; } public CR_CreditorCreditAdjustmentLineCustomFields setSettingName(String value) { this.SettingName = value; return this; } public String getSettingDescription() { return SettingDescription; } public CR_CreditorCreditAdjustmentLineCustomFields setSettingDescription(String value) { this.SettingDescription = value; return this; } public Integer getCellType() { return CellType; } public CR_CreditorCreditAdjustmentLineCustomFields setCellType(Integer value) { this.CellType = value; return this; } public String getFieldParameter() { return FieldParameter; } public CR_CreditorCreditAdjustmentLineCustomFields setFieldParameter(String value) { this.FieldParameter = value; return this; } public UUID getSyPluginRecID() { return SY_Plugin_RecID; } public CR_CreditorCreditAdjustmentLineCustomFields setSyPluginRecID(UUID value) { this.SY_Plugin_RecID = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public CR_CreditorCreditAdjustmentLineCustomFields setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Integer getDisplayOrder() { return DisplayOrder; } public CR_CreditorCreditAdjustmentLineCustomFields setDisplayOrder(Integer value) { this.DisplayOrder = value; return this; } } public static class CR_CreditorCreditAdjustmentLineCustomValues { @Required() public String RecID = null; @References(CR_BatchTranLines.class) @Required() public String CR_CreditorCreditAdjustmentLines_RecID = null; @References(CR_CreditorCreditAdjustmentLineCustomFields.class) @Required() public String CR_CreditorCreditAdjustmentLineCustomFields_RecID = null; public String Contents = null; @Required() public Date LastSavedDateTime = null; public String getRecID() { return RecID; } public CR_CreditorCreditAdjustmentLineCustomValues setRecID(String value) { this.RecID = value; return this; } public String getCrCreditorCreditAdjustmentLinesRecID() { return CR_CreditorCreditAdjustmentLines_RecID; } public CR_CreditorCreditAdjustmentLineCustomValues setCrCreditorCreditAdjustmentLinesRecID(String value) { this.CR_CreditorCreditAdjustmentLines_RecID = value; return this; } public String getCrCreditorCreditAdjustmentLineCustomFieldsRecID() { return CR_CreditorCreditAdjustmentLineCustomFields_RecID; } public CR_CreditorCreditAdjustmentLineCustomValues setCrCreditorCreditAdjustmentLineCustomFieldsRecID(String value) { this.CR_CreditorCreditAdjustmentLineCustomFields_RecID = value; return this; } public String getContents() { return Contents; } public CR_CreditorCreditAdjustmentLineCustomValues setContents(String value) { this.Contents = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public CR_CreditorCreditAdjustmentLineCustomValues setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } } public static class CR_CreditorDebitAdjustmentLineCustomFields { @Required() public String RecID = null; @Required() public String SettingName = null; public String SettingDescription = null; public Integer CellType = null; public String FieldParameter = null; @References(SY_Plugin.class) @Required() public UUID SY_Plugin_RecID = null; @Required() public Date LastSavedDateTime = null; public Integer DisplayOrder = null; public String getRecID() { return RecID; } public CR_CreditorDebitAdjustmentLineCustomFields setRecID(String value) { this.RecID = value; return this; } public String getSettingName() { return SettingName; } public CR_CreditorDebitAdjustmentLineCustomFields setSettingName(String value) { this.SettingName = value; return this; } public String getSettingDescription() { return SettingDescription; } public CR_CreditorDebitAdjustmentLineCustomFields setSettingDescription(String value) { this.SettingDescription = value; return this; } public Integer getCellType() { return CellType; } public CR_CreditorDebitAdjustmentLineCustomFields setCellType(Integer value) { this.CellType = value; return this; } public String getFieldParameter() { return FieldParameter; } public CR_CreditorDebitAdjustmentLineCustomFields setFieldParameter(String value) { this.FieldParameter = value; return this; } public UUID getSyPluginRecID() { return SY_Plugin_RecID; } public CR_CreditorDebitAdjustmentLineCustomFields setSyPluginRecID(UUID value) { this.SY_Plugin_RecID = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public CR_CreditorDebitAdjustmentLineCustomFields setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Integer getDisplayOrder() { return DisplayOrder; } public CR_CreditorDebitAdjustmentLineCustomFields setDisplayOrder(Integer value) { this.DisplayOrder = value; return this; } } public static class CR_CreditorDebitAdjustmentLineCustomValues { @Required() public String RecID = null; @References(CR_BatchTranLines.class) @Required() public String CR_CreditorDebitAdjustmentLines_RecID = null; @References(CR_CreditorDebitAdjustmentLineCustomFields.class) @Required() public String CR_CreditorDebitAdjustmentLineCustomFields_RecID = null; public String Contents = null; @Required() public Date LastSavedDateTime = null; public String getRecID() { return RecID; } public CR_CreditorDebitAdjustmentLineCustomValues setRecID(String value) { this.RecID = value; return this; } public String getCrCreditorDebitAdjustmentLinesRecID() { return CR_CreditorDebitAdjustmentLines_RecID; } public CR_CreditorDebitAdjustmentLineCustomValues setCrCreditorDebitAdjustmentLinesRecID(String value) { this.CR_CreditorDebitAdjustmentLines_RecID = value; return this; } public String getCrCreditorDebitAdjustmentLineCustomFieldsRecID() { return CR_CreditorDebitAdjustmentLineCustomFields_RecID; } public CR_CreditorDebitAdjustmentLineCustomValues setCrCreditorDebitAdjustmentLineCustomFieldsRecID(String value) { this.CR_CreditorDebitAdjustmentLineCustomFields_RecID = value; return this; } public String getContents() { return Contents; } public CR_CreditorDebitAdjustmentLineCustomValues setContents(String value) { this.Contents = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public CR_CreditorDebitAdjustmentLineCustomValues setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } } public static class CR_CreditorPaymentLineCustomFields { @Required() public String RecID = null; @Required() public String SettingName = null; public String SettingDescription = null; public Integer CellType = null; public String FieldParameter = null; @References(SY_Plugin.class) @Required() public UUID SY_Plugin_RecID = null; @Required() public Date LastSavedDateTime = null; public Integer DisplayOrder = null; public String getRecID() { return RecID; } public CR_CreditorPaymentLineCustomFields setRecID(String value) { this.RecID = value; return this; } public String getSettingName() { return SettingName; } public CR_CreditorPaymentLineCustomFields setSettingName(String value) { this.SettingName = value; return this; } public String getSettingDescription() { return SettingDescription; } public CR_CreditorPaymentLineCustomFields setSettingDescription(String value) { this.SettingDescription = value; return this; } public Integer getCellType() { return CellType; } public CR_CreditorPaymentLineCustomFields setCellType(Integer value) { this.CellType = value; return this; } public String getFieldParameter() { return FieldParameter; } public CR_CreditorPaymentLineCustomFields setFieldParameter(String value) { this.FieldParameter = value; return this; } public UUID getSyPluginRecID() { return SY_Plugin_RecID; } public CR_CreditorPaymentLineCustomFields setSyPluginRecID(UUID value) { this.SY_Plugin_RecID = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public CR_CreditorPaymentLineCustomFields setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Integer getDisplayOrder() { return DisplayOrder; } public CR_CreditorPaymentLineCustomFields setDisplayOrder(Integer value) { this.DisplayOrder = value; return this; } } public static class CR_CreditorPaymentLineCustomValues { @Required() public String RecID = null; @References(CR_BatchTranLines.class) @Required() public String CR_CreditorPaymentLines_RecID = null; @References(CR_CreditorPaymentLineCustomFields.class) @Required() public String CR_CreditorPaymentLineCustomFields_RecID = null; public String Contents = null; @Required() public Date LastSavedDateTime = null; public String getRecID() { return RecID; } public CR_CreditorPaymentLineCustomValues setRecID(String value) { this.RecID = value; return this; } public String getCrCreditorPaymentLinesRecID() { return CR_CreditorPaymentLines_RecID; } public CR_CreditorPaymentLineCustomValues setCrCreditorPaymentLinesRecID(String value) { this.CR_CreditorPaymentLines_RecID = value; return this; } public String getCrCreditorPaymentLineCustomFieldsRecID() { return CR_CreditorPaymentLineCustomFields_RecID; } public CR_CreditorPaymentLineCustomValues setCrCreditorPaymentLineCustomFieldsRecID(String value) { this.CR_CreditorPaymentLineCustomFields_RecID = value; return this; } public String getContents() { return Contents; } public CR_CreditorPaymentLineCustomValues setContents(String value) { this.Contents = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public CR_CreditorPaymentLineCustomValues setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } } public static class CR_CreditorPurchaseLineCustomFields { @Required() public String RecID = null; @Required() public String SettingName = null; public String SettingDescription = null; public Integer CellType = null; public String FieldParameter = null; @References(SY_Plugin.class) @Required() public UUID SY_Plugin_RecID = null; @Required() public Date LastSavedDateTime = null; public Integer DisplayOrder = null; public String getRecID() { return RecID; } public CR_CreditorPurchaseLineCustomFields setRecID(String value) { this.RecID = value; return this; } public String getSettingName() { return SettingName; } public CR_CreditorPurchaseLineCustomFields setSettingName(String value) { this.SettingName = value; return this; } public String getSettingDescription() { return SettingDescription; } public CR_CreditorPurchaseLineCustomFields setSettingDescription(String value) { this.SettingDescription = value; return this; } public Integer getCellType() { return CellType; } public CR_CreditorPurchaseLineCustomFields setCellType(Integer value) { this.CellType = value; return this; } public String getFieldParameter() { return FieldParameter; } public CR_CreditorPurchaseLineCustomFields setFieldParameter(String value) { this.FieldParameter = value; return this; } public UUID getSyPluginRecID() { return SY_Plugin_RecID; } public CR_CreditorPurchaseLineCustomFields setSyPluginRecID(UUID value) { this.SY_Plugin_RecID = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public CR_CreditorPurchaseLineCustomFields setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public Integer getDisplayOrder() { return DisplayOrder; } public CR_CreditorPurchaseLineCustomFields setDisplayOrder(Integer value) { this.DisplayOrder = value; return this; } } public static class CR_CreditorPurchaseLineCustomValues { @Required() public String RecID = null; @References(CR_BatchTranLines.class) @Required() public String CR_CreditorPurchaseLines_RecID = null; @References(CR_CreditorPurchaseLineCustomFields.class) @Required() public String CR_CreditorPurchaseLineCustomFields_RecID = null; public String Contents = null; @Required() public Date LastSavedDateTime = null; public String getRecID() { return RecID; } public CR_CreditorPurchaseLineCustomValues setRecID(String value) { this.RecID = value; return this; } public String getCrCreditorPurchaseLinesRecID() { return CR_CreditorPurchaseLines_RecID; } public CR_CreditorPurchaseLineCustomValues setCrCreditorPurchaseLinesRecID(String value) { this.CR_CreditorPurchaseLines_RecID = value; return this; } public String getCrCreditorPurchaseLineCustomFieldsRecID() { return CR_CreditorPurchaseLineCustomFields_RecID; } public CR_CreditorPurchaseLineCustomValues setCrCreditorPurchaseLineCustomFieldsRecID(String value) { this.CR_CreditorPurchaseLineCustomFields_RecID = value; return this; } public String getContents() { return Contents; } public CR_CreditorPurchaseLineCustomValues setContents(String value) { this.Contents = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public CR_CreditorPurchaseLineCustomValues setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } } public static class CR_CustomSetting { @Required() public String SettingID = null; @Required() public Date LastSavedDateTime = null; public String SettingDescription = null; public String SettingName = null; public BigDecimal DisplayOrder = null; public Short CellType = null; public String ScriptFormatCell = null; public String ScriptButtonClicked = null; public String ScriptReadData = null; public String GridHandlerCode = null; @References(SY_Plugin.class) @Required() public UUID SY_Plugin_RecID = null; public String getSettingID() { return SettingID; } public CR_CustomSetting setSettingID(String value) { this.SettingID = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public CR_CustomSetting setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public String getSettingDescription() { return SettingDescription; } public CR_CustomSetting setSettingDescription(String value) { this.SettingDescription = value; return this; } public String getSettingName() { return SettingName; } public CR_CustomSetting setSettingName(String value) { this.SettingName = value; return this; } public BigDecimal getDisplayOrder() { return DisplayOrder; } public CR_CustomSetting setDisplayOrder(BigDecimal value) { this.DisplayOrder = value; return this; } public Short getCellType() { return CellType; } public CR_CustomSetting setCellType(Short value) { this.CellType = value; return this; } public String getScriptFormatCell() { return ScriptFormatCell; } public CR_CustomSetting setScriptFormatCell(String value) { this.ScriptFormatCell = value; return this; } public String getScriptButtonClicked() { return ScriptButtonClicked; } public CR_CustomSetting setScriptButtonClicked(String value) { this.ScriptButtonClicked = value; return this; } public String getScriptReadData() { return ScriptReadData; } public CR_CustomSetting setScriptReadData(String value) { this.ScriptReadData = value; return this; } public String getGridHandlerCode() { return GridHandlerCode; } public CR_CustomSetting setGridHandlerCode(String value) { this.GridHandlerCode = value; return this; } public UUID getSyPluginRecID() { return SY_Plugin_RecID; } public CR_CustomSetting setSyPluginRecID(UUID value) { this.SY_Plugin_RecID = value; return this; } } public static class CR_CustomSettingValues { @Required() public String SettingValueID = null; @References(CR_CustomSetting.class) public String SettingID = null; @References(CR_Main.class) @Required() public String CreditorID = null; public String Contents = null; @Required() public Date LastSavedDateTime = null; public String getSettingValueID() { return SettingValueID; } public CR_CustomSettingValues setSettingValueID(String value) { this.SettingValueID = value; return this; } public String getSettingID() { return SettingID; } public CR_CustomSettingValues setSettingID(String value) { this.SettingID = value; return this; } public String getCreditorID() { return CreditorID; } public CR_CustomSettingValues setCreditorID(String value) { this.CreditorID = value; return this; } public String getContents() { return Contents; } public CR_CustomSettingValues setContents(String value) { this.Contents = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public CR_CustomSettingValues setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } } public static class CR_DebitAdjustmentCustomSetting { @Required() public String SettingID = null; @Required() public Date LastSavedDateTime = null; public String SettingDescription = null; public String SettingName = null; public Integer DisplayOrder = null; public Short CellType = null; public String ScriptFormatCell = null; public String ScriptButtonClicked = null; public String ScriptReadData = null; public String GridHandlerCode = null; @References(SY_Plugin.class) @Required() public UUID SY_Plugin_RecID = null; public String getSettingID() { return SettingID; } public CR_DebitAdjustmentCustomSetting setSettingID(String value) { this.SettingID = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public CR_DebitAdjustmentCustomSetting setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public String getSettingDescription() { return SettingDescription; } public CR_DebitAdjustmentCustomSetting setSettingDescription(String value) { this.SettingDescription = value; return this; } public String getSettingName() { return SettingName; } public CR_DebitAdjustmentCustomSetting setSettingName(String value) { this.SettingName = value; return this; } public Integer getDisplayOrder() { return DisplayOrder; } public CR_DebitAdjustmentCustomSetting setDisplayOrder(Integer value) { this.DisplayOrder = value; return this; } public Short getCellType() { return CellType; } public CR_DebitAdjustmentCustomSetting setCellType(Short value) { this.CellType = value; return this; } public String getScriptFormatCell() { return ScriptFormatCell; } public CR_DebitAdjustmentCustomSetting setScriptFormatCell(String value) { this.ScriptFormatCell = value; return this; } public String getScriptButtonClicked() { return ScriptButtonClicked; } public CR_DebitAdjustmentCustomSetting setScriptButtonClicked(String value) { this.ScriptButtonClicked = value; return this; } public String getScriptReadData() { return ScriptReadData; } public CR_DebitAdjustmentCustomSetting setScriptReadData(String value) { this.ScriptReadData = value; return this; } public String getGridHandlerCode() { return GridHandlerCode; } public CR_DebitAdjustmentCustomSetting setGridHandlerCode(String value) { this.GridHandlerCode = value; return this; } public UUID getSyPluginRecID() { return SY_Plugin_RecID; } public CR_DebitAdjustmentCustomSetting setSyPluginRecID(UUID value) { this.SY_Plugin_RecID = value; return this; } } public static class CR_DebitAdjustmentCustomSettingValues { @Required() public String SettingValueID = null; @References(CR_DebitAdjustmentCustomSetting.class) public String SettingID = null; @References(CR_BatchTrans.class) @Required() public String CR_BatchTrans_ReceiptID = null; public String Contents = null; @Required() public Date LastSavedDateTime = null; public String getSettingValueID() { return SettingValueID; } public CR_DebitAdjustmentCustomSettingValues setSettingValueID(String value) { this.SettingValueID = value; return this; } public String getSettingID() { return SettingID; } public CR_DebitAdjustmentCustomSettingValues setSettingID(String value) { this.SettingID = value; return this; } public String getCrBatchTransReceiptID() { return CR_BatchTrans_ReceiptID; } public CR_DebitAdjustmentCustomSettingValues setCrBatchTransReceiptID(String value) { this.CR_BatchTrans_ReceiptID = value; return this; } public String getContents() { return Contents; } public CR_DebitAdjustmentCustomSettingValues setContents(String value) { this.Contents = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public CR_DebitAdjustmentCustomSettingValues setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } } public static class CR_DetailedGLAudit { @Required() public String ReceiptID = null; public String AccountID = null; @Required() public String CRAccountNo = null; public String RemitNo = null; public Date ReceiptDate = null; public BigDecimal HomeTransAmount = null; public String SourceID = null; public Short SetType = null; public String GLSetID = null; public String GLAccountNo = null; public String Ref = null; public BigDecimal GLTransAmount = null; public String getReceiptID() { return ReceiptID; } public CR_DetailedGLAudit setReceiptID(String value) { this.ReceiptID = value; return this; } public String getAccountID() { return AccountID; } public CR_DetailedGLAudit setAccountID(String value) { this.AccountID = value; return this; } public String getCrAccountNo() { return CRAccountNo; } public CR_DetailedGLAudit setCrAccountNo(String value) { this.CRAccountNo = value; return this; } public String getRemitNo() { return RemitNo; } public CR_DetailedGLAudit setRemitNo(String value) { this.RemitNo = value; return this; } public Date getReceiptDate() { return ReceiptDate; } public CR_DetailedGLAudit setReceiptDate(Date value) { this.ReceiptDate = value; return this; } public BigDecimal getHomeTransAmount() { return HomeTransAmount; } public CR_DetailedGLAudit setHomeTransAmount(BigDecimal value) { this.HomeTransAmount = value; return this; } public String getSourceID() { return SourceID; } public CR_DetailedGLAudit setSourceID(String value) { this.SourceID = value; return this; } public Short getSetType() { return SetType; } public CR_DetailedGLAudit setSetType(Short value) { this.SetType = value; return this; } public String getGlSetID() { return GLSetID; } public CR_DetailedGLAudit setGlSetID(String value) { this.GLSetID = value; return this; } public String getGlAccountNo() { return GLAccountNo; } public CR_DetailedGLAudit setGlAccountNo(String value) { this.GLAccountNo = value; return this; } public String getRef() { return Ref; } public CR_DetailedGLAudit setRef(String value) { this.Ref = value; return this; } public BigDecimal getGlTransAmount() { return GLTransAmount; } public CR_DetailedGLAudit setGlTransAmount(BigDecimal value) { this.GLTransAmount = value; return this; } } public static class RequestLogEntry { public Long Id = null; public Date DateTime = null; public Integer StatusCode = null; public String StatusDescription = null; public String HttpMethod = null; public String AbsoluteUri = null; public String PathInfo = null; @StringLength(2147483647) public String RequestBody = null; public Object RequestDto = null; public String UserAuthId = null; public String SessionId = null; public String IpAddress = null; public String ForwardedFor = null; public String Referer = null; public HashMap Headers = null; public HashMap FormData = null; public HashMap Items = null; public Object Session = null; public Object ResponseDto = null; public Object ErrorResponse = null; public String ExceptionSource = null; public IDictionary ExceptionData = null; public TimeSpan RequestDuration = null; public Long getId() { return Id; } public RequestLogEntry setId(Long value) { this.Id = value; return this; } public Date getDateTime() { return DateTime; } public RequestLogEntry setDateTime(Date value) { this.DateTime = value; return this; } public Integer getStatusCode() { return StatusCode; } public RequestLogEntry setStatusCode(Integer value) { this.StatusCode = value; return this; } public String getStatusDescription() { return StatusDescription; } public RequestLogEntry setStatusDescription(String value) { this.StatusDescription = value; return this; } public String getHttpMethod() { return HttpMethod; } public RequestLogEntry setHttpMethod(String value) { this.HttpMethod = value; return this; } public String getAbsoluteUri() { return AbsoluteUri; } public RequestLogEntry setAbsoluteUri(String value) { this.AbsoluteUri = value; return this; } public String getPathInfo() { return PathInfo; } public RequestLogEntry setPathInfo(String value) { this.PathInfo = value; return this; } public String getRequestBody() { return RequestBody; } public RequestLogEntry setRequestBody(String value) { this.RequestBody = value; return this; } public Object getRequestDto() { return RequestDto; } public RequestLogEntry setRequestDto(Object value) { this.RequestDto = value; return this; } public String getUserAuthId() { return UserAuthId; } public RequestLogEntry setUserAuthId(String value) { this.UserAuthId = value; return this; } public String getSessionId() { return SessionId; } public RequestLogEntry setSessionId(String value) { this.SessionId = value; return this; } public String getIpAddress() { return IpAddress; } public RequestLogEntry setIpAddress(String value) { this.IpAddress = value; return this; } public String getForwardedFor() { return ForwardedFor; } public RequestLogEntry setForwardedFor(String value) { this.ForwardedFor = value; return this; } public String getReferer() { return Referer; } public RequestLogEntry setReferer(String value) { this.Referer = value; return this; } public HashMap getHeaders() { return Headers; } public RequestLogEntry setHeaders(HashMap value) { this.Headers = value; return this; } public HashMap getFormData() { return FormData; } public RequestLogEntry setFormData(HashMap value) { this.FormData = value; return this; } public HashMap getItems() { return Items; } public RequestLogEntry setItems(HashMap value) { this.Items = value; return this; } public Object getSession() { return Session; } public RequestLogEntry setSession(Object value) { this.Session = value; return this; } public Object getResponseDto() { return ResponseDto; } public RequestLogEntry setResponseDto(Object value) { this.ResponseDto = value; return this; } public Object getErrorResponse() { return ErrorResponse; } public RequestLogEntry setErrorResponse(Object value) { this.ErrorResponse = value; return this; } public String getExceptionSource() { return ExceptionSource; } public RequestLogEntry setExceptionSource(String value) { this.ExceptionSource = value; return this; } public IDictionary getExceptionData() { return ExceptionData; } public RequestLogEntry setExceptionData(IDictionary value) { this.ExceptionData = value; return this; } public TimeSpan getRequestDuration() { return RequestDuration; } public RequestLogEntry setRequestDuration(TimeSpan value) { this.RequestDuration = value; return this; } } public static class ProductionArea { public String ProductionAreaID = null; public String ProductionAreaNo = null; public String Name = null; public String Description = null; public Boolean IsEnabled = null; public String getProductionAreaID() { return ProductionAreaID; } public ProductionArea setProductionAreaID(String value) { this.ProductionAreaID = value; return this; } public String getProductionAreaNo() { return ProductionAreaNo; } public ProductionArea setProductionAreaNo(String value) { this.ProductionAreaNo = value; return this; } public String getName() { return Name; } public ProductionArea setName(String value) { this.Name = value; return this; } public String getDescription() { return Description; } public ProductionArea setDescription(String value) { this.Description = value; return this; } public Boolean getIsEnabled() { return IsEnabled; } public ProductionArea setIsEnabled(Boolean value) { this.IsEnabled = value; return this; } } public static class WorkCentre { public String WorkCentreID = null; public String Name = null; public String Description = null; public BigDecimal Capacity = null; public Boolean IsEnabled = null; public String getWorkCentreID() { return WorkCentreID; } public WorkCentre setWorkCentreID(String value) { this.WorkCentreID = value; return this; } public String getName() { return Name; } public WorkCentre setName(String value) { this.Name = value; return this; } public String getDescription() { return Description; } public WorkCentre setDescription(String value) { this.Description = value; return this; } public BigDecimal getCapacity() { return Capacity; } public WorkCentre setCapacity(BigDecimal value) { this.Capacity = value; return this; } public Boolean getIsEnabled() { return IsEnabled; } public WorkCentre setIsEnabled(Boolean value) { this.IsEnabled = value; return this; } } public static class DebtorMonth { public Date StartDate = null; public Date EndDate = null; public Integer FinancialYearMonthNo = null; public String MonthID = null; public Date getStartDate() { return StartDate; } public DebtorMonth setStartDate(Date value) { this.StartDate = value; return this; } public Date getEndDate() { return EndDate; } public DebtorMonth setEndDate(Date value) { this.EndDate = value; return this; } public Integer getFinancialYearMonthNo() { return FinancialYearMonthNo; } public DebtorMonth setFinancialYearMonthNo(Integer value) { this.FinancialYearMonthNo = value; return this; } public String getMonthID() { return MonthID; } public DebtorMonth setMonthID(String value) { this.MonthID = value; return this; } } public static class DebtorSystemTemplate { public String SystemTemplateID = null; public String Name = null; public Boolean Enabled = null; public String getSystemTemplateID() { return SystemTemplateID; } public DebtorSystemTemplate setSystemTemplateID(String value) { this.SystemTemplateID = value; return this; } public String getName() { return Name; } public DebtorSystemTemplate setName(String value) { this.Name = value; return this; } public Boolean isEnabled() { return Enabled; } public DebtorSystemTemplate setEnabled(Boolean value) { this.Enabled = value; return this; } } public static class DebtorSystemField { public DebtorSystemTemplateField TemplateField = null; public String SystemFieldID = null; public Date LastSavedDateTime = null; public String Contents = null; public DebtorSystemTemplateField getTemplateField() { return TemplateField; } public DebtorSystemField setTemplateField(DebtorSystemTemplateField value) { this.TemplateField = value; return this; } public String getSystemFieldID() { return SystemFieldID; } public DebtorSystemField setSystemFieldID(String value) { this.SystemFieldID = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public DebtorSystemField setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } public String getContents() { return Contents; } public DebtorSystemField setContents(String value) { this.Contents = value; return this; } } public static class ReceivedPOLineQuantityDetail { public Date ExpiryDate = null; public String SerialNo = null; public BigDecimal Quantity = null; public String BinLocation = null; public Date getExpiryDate() { return ExpiryDate; } public ReceivedPOLineQuantityDetail setExpiryDate(Date value) { this.ExpiryDate = value; return this; } public String getSerialNo() { return SerialNo; } public ReceivedPOLineQuantityDetail setSerialNo(String value) { this.SerialNo = value; return this; } public BigDecimal getQuantity() { return Quantity; } public ReceivedPOLineQuantityDetail setQuantity(BigDecimal value) { this.Quantity = value; return this; } public String getBinLocation() { return BinLocation; } public ReceivedPOLineQuantityDetail setBinLocation(String value) { this.BinLocation = value; return this; } } public static class Configuration { } public static class BookInOtherBookInLine { public String LineID = null; public Integer ItemNo = null; public BigDecimal Quantity = null; public String SH_Lines_RecID = null; public String getLineID() { return LineID; } public BookInOtherBookInLine setLineID(String value) { this.LineID = value; return this; } public Integer getItemNo() { return ItemNo; } public BookInOtherBookInLine setItemNo(Integer value) { this.ItemNo = value; return this; } public BigDecimal getQuantity() { return Quantity; } public BookInOtherBookInLine setQuantity(BigDecimal value) { this.Quantity = value; return this; } public String getShLinesRecID() { return SH_Lines_RecID; } public BookInOtherBookInLine setShLinesRecID(String value) { this.SH_Lines_RecID = value; return this; } } public static class ShipmentCostType { public String CostTypeID = null; public String Name = null; public String Description = null; public Boolean IsEnabled = null; public Boolean IsDefault = null; public String getCostTypeID() { return CostTypeID; } public ShipmentCostType setCostTypeID(String value) { this.CostTypeID = value; return this; } public String getName() { return Name; } public ShipmentCostType setName(String value) { this.Name = value; return this; } public String getDescription() { return Description; } public ShipmentCostType setDescription(String value) { this.Description = value; return this; } public Boolean getIsEnabled() { return IsEnabled; } public ShipmentCostType setIsEnabled(Boolean value) { this.IsEnabled = value; return this; } public Boolean getIsDefault() { return IsDefault; } public ShipmentCostType setIsDefault(Boolean value) { this.IsDefault = value; return this; } } public static class ShipmentApportionedCost { public String ApportionedCostID = null; public Integer ItemNo = null; public String OrdersUsedKey = null; public String OrderNo = null; public String getApportionedCostID() { return ApportionedCostID; } public ShipmentApportionedCost setApportionedCostID(String value) { this.ApportionedCostID = value; return this; } public Integer getItemNo() { return ItemNo; } public ShipmentApportionedCost setItemNo(Integer value) { this.ItemNo = value; return this; } public String getOrdersUsedKey() { return OrdersUsedKey; } public ShipmentApportionedCost setOrdersUsedKey(String value) { this.OrdersUsedKey = value; return this; } public String getOrderNo() { return OrderNo; } public ShipmentApportionedCost setOrderNo(String value) { this.OrderNo = value; return this; } } public static enum ApportionMethods { Cost, Quantity, Weight, Cubic; } public static class ShipmentForwardCoverContract { public String LineKey = null; public String ForwardCoverContractTransactionID = null; public ForwardCoverContract ForwardCoverContract = null; public BigDecimal FXAmount = null; public BigDecimal HomeAmount = null; public String getLineKey() { return LineKey; } public ShipmentForwardCoverContract setLineKey(String value) { this.LineKey = value; return this; } public String getForwardCoverContractTransactionID() { return ForwardCoverContractTransactionID; } public ShipmentForwardCoverContract setForwardCoverContractTransactionID(String value) { this.ForwardCoverContractTransactionID = value; return this; } public ForwardCoverContract getForwardCoverContract() { return ForwardCoverContract; } public ShipmentForwardCoverContract setForwardCoverContract(ForwardCoverContract value) { this.ForwardCoverContract = value; return this; } public BigDecimal getFxAmount() { return FXAmount; } public ShipmentForwardCoverContract setFxAmount(BigDecimal value) { this.FXAmount = value; return this; } public BigDecimal getHomeAmount() { return HomeAmount; } public ShipmentForwardCoverContract setHomeAmount(BigDecimal value) { this.HomeAmount = value; return this; } } public static interface IResponse { public Object OriginalResponse = null; public IRequest Request = null; public Integer StatusCode = null; public String StatusDescription = null; public String ContentType = null; public Object Dto = null; public Boolean UseBufferedStream = null; public Boolean IsClosed = null; public Boolean KeepAlive = null; public Boolean HasStarted = null; public HashMap Items = null; } @Flags() public static enum RequestAttributes { @SerializedName("0") None(0), @SerializedName("1") Localhost(1), @SerializedName("2") LocalSubnet(2), @SerializedName("4") External(4), @SerializedName("8") Secure(8), @SerializedName("16") InSecure(16), @SerializedName("24") AnySecurityMode(24), @SerializedName("32") HttpHead(32), @SerializedName("64") HttpGet(64), @SerializedName("128") HttpPost(128), @SerializedName("256") HttpPut(256), @SerializedName("512") HttpDelete(512), @SerializedName("1024") HttpPatch(1024), @SerializedName("2048") HttpOptions(2048), @SerializedName("4096") HttpOther(4096), @SerializedName("8160") AnyHttpMethod(8160), @SerializedName("8192") OneWay(8192), @SerializedName("16384") Reply(16384), @SerializedName("24576") AnyCallStyle(24576), @SerializedName("32768") Soap11(32768), @SerializedName("65536") Soap12(65536), @SerializedName("131072") Xml(131072), @SerializedName("262144") Json(262144), @SerializedName("524288") Jsv(524288), @SerializedName("1048576") ProtoBuf(1048576), @SerializedName("2097152") Csv(2097152), @SerializedName("4194304") Html(4194304), @SerializedName("8388608") Wire(8388608), @SerializedName("16777216") MsgPack(16777216), @SerializedName("33554432") FormatOther(33554432), @SerializedName("67076096") AnyFormat(67076096), @SerializedName("67108864") Http(67108864), @SerializedName("134217728") MessageQueue(134217728), @SerializedName("268435456") Tcp(268435456), @SerializedName("536870912") EndpointOther(536870912), @SerializedName("1006632960") AnyEndpoint(1006632960), @SerializedName("1073741824") InProcess(1073741824), @SerializedName("1073741827") InternalNetworkAccess(1073741827), @SerializedName("1073741831") AnyNetworkAccessType(1073741831), @SerializedName("2147483647") Any(2147483647); private final int value; RequestAttributes(final int intValue) { value = intValue; } public int getValue() { return value; } } public static interface IRequestPreferences { public Boolean AcceptsGzip = null; public Boolean AcceptsDeflate = null; } public static interface IHttpFile { public String Name = null; public String FileName = null; public Long ContentLength = null; public String ContentType = null; } public static class SalesOrderCarrierService { public String CarrierServiceID = null; public String Name = null; public String getCarrierServiceID() { return CarrierServiceID; } public SalesOrderCarrierService setCarrierServiceID(String value) { this.CarrierServiceID = value; return this; } public String getName() { return Name; } public SalesOrderCarrierService setName(String value) { this.Name = value; return this; } } public static enum FreightChargeTos { FreightChargeToSender, FreightChargeToReceiver; } public static enum FreightSystemStatuses { FreightSystemStatusNone, FreightSystemStatusReadyToSend, FreightSystemStatusSent, FreightSystemStatusCompleted; } public static enum StatusTypes { OnGoing(0), Won(1), Lost(1); private final int value; StatusTypes(final int intValue) { value = intValue; } public int getValue() { return value; } } public static interface IAuthTokens { public String Provider = null; public String UserId = null; public String AccessToken = null; public String AccessTokenSecret = null; public String RefreshToken = null; public Date RefreshTokenExpiry = null; public String RequestToken = null; public String RequestTokenSecret = null; public HashMap Items = null; } @DataContract public static class JiwaAuthUserSession extends AuthUserSession { @DataMember public String APIKey_Type = null; @DataMember public String APIKey_PrincipalID = null; @DataMember public String CredentialsPassword = null; @DataMember public String StaffID = null; @DataMember public ArrayList AllowedRoutePermissions = null; public String getApiKeyType() { return APIKey_Type; } public JiwaAuthUserSession setApiKeyType(String value) { this.APIKey_Type = value; return this; } public String getApiKeyPrincipalID() { return APIKey_PrincipalID; } public JiwaAuthUserSession setApiKeyPrincipalID(String value) { this.APIKey_PrincipalID = value; return this; } public String getCredentialsPassword() { return CredentialsPassword; } public JiwaAuthUserSession setCredentialsPassword(String value) { this.CredentialsPassword = value; return this; } public String getStaffID() { return StaffID; } public JiwaAuthUserSession setStaffID(String value) { this.StaffID = value; return this; } public ArrayList getAllowedRoutePermissions() { return AllowedRoutePermissions; } public JiwaAuthUserSession setAllowedRoutePermissions(ArrayList value) { this.AllowedRoutePermissions = value; return this; } } public static class QueryBase { @DataMember(Order=1) public Integer Skip = null; @DataMember(Order=2) public Integer Take = null; @DataMember(Order=3) public String OrderBy = null; @DataMember(Order=4) public String OrderByDesc = null; @DataMember(Order=5) public String Include = null; @DataMember(Order=6) public String Fields = null; @DataMember(Order=7) public HashMap Meta = null; public Integer getSkip() { return Skip; } public QueryBase setSkip(Integer value) { this.Skip = value; return this; } public Integer getTake() { return Take; } public QueryBase setTake(Integer value) { this.Take = value; return this; } public String getOrderBy() { return OrderBy; } public QueryBase setOrderBy(String value) { this.OrderBy = value; return this; } public String getOrderByDesc() { return OrderByDesc; } public QueryBase setOrderByDesc(String value) { this.OrderByDesc = value; return this; } public String getInclude() { return Include; } public QueryBase setInclude(String value) { this.Include = value; return this; } public String getFields() { return Fields; } public QueryBase setFields(String value) { this.Fields = value; return this; } public HashMap getMeta() { return Meta; } public QueryBase setMeta(HashMap value) { this.Meta = value; return this; } } public static enum ExceptionPolicies { Report, Abort, Ignore; } public static enum ShippingEntityStatuses { Open, Activated, Closed; } public static enum ReturnTypes { Return, Exchange, ShortDelivery, PricingDifference, ShortDeliveryTracking, PricingDifferenceTracking; } public static enum RequestEntityStatuses { Open, Activated, Closed; } public static enum CreditEntityStatuses { Open, Activated, Closed; } public static class ProductionArea { public String ProductionAreaID = null; public String ProductionAreaNo = null; public String Name = null; public String Description = null; public Boolean IsEnabled = null; public String getProductionAreaID() { return ProductionAreaID; } public ProductionArea setProductionAreaID(String value) { this.ProductionAreaID = value; return this; } public String getProductionAreaNo() { return ProductionAreaNo; } public ProductionArea setProductionAreaNo(String value) { this.ProductionAreaNo = value; return this; } public String getName() { return Name; } public ProductionArea setName(String value) { this.Name = value; return this; } public String getDescription() { return Description; } public ProductionArea setDescription(String value) { this.Description = value; return this; } public Boolean getIsEnabled() { return IsEnabled; } public ProductionArea setIsEnabled(Boolean value) { this.IsEnabled = value; return this; } } public static class WorkCentre { public String WorkCentreID = null; public String Name = null; public String Description = null; public Boolean IsEnabled = null; public String getWorkCentreID() { return WorkCentreID; } public WorkCentre setWorkCentreID(String value) { this.WorkCentreID = value; return this; } public String getName() { return Name; } public WorkCentre setName(String value) { this.Name = value; return this; } public String getDescription() { return Description; } public WorkCentre setDescription(String value) { this.Description = value; return this; } public Boolean getIsEnabled() { return IsEnabled; } public WorkCentre setIsEnabled(Boolean value) { this.IsEnabled = value; return this; } } public static interface IJiwaRESTAPIPlugin { } public static class DebtorSystemTemplateField { public Integer FieldType = null; public Integer LineNumber = null; public String SystemTemplateFieldID = null; public String Name = null; public String ComboText = null; public String ScriptFormatCell = null; public String ScriptButtonClicked = null; public String ScriptReadData = null; public String DefaultValue = null; public String GridHandlerCode = null; public Integer getFieldType() { return FieldType; } public DebtorSystemTemplateField setFieldType(Integer value) { this.FieldType = value; return this; } public Integer getLineNumber() { return LineNumber; } public DebtorSystemTemplateField setLineNumber(Integer value) { this.LineNumber = value; return this; } public String getSystemTemplateFieldID() { return SystemTemplateFieldID; } public DebtorSystemTemplateField setSystemTemplateFieldID(String value) { this.SystemTemplateFieldID = value; return this; } public String getName() { return Name; } public DebtorSystemTemplateField setName(String value) { this.Name = value; return this; } public String getComboText() { return ComboText; } public DebtorSystemTemplateField setComboText(String value) { this.ComboText = value; return this; } public String getScriptFormatCell() { return ScriptFormatCell; } public DebtorSystemTemplateField setScriptFormatCell(String value) { this.ScriptFormatCell = value; return this; } public String getScriptButtonClicked() { return ScriptButtonClicked; } public DebtorSystemTemplateField setScriptButtonClicked(String value) { this.ScriptButtonClicked = value; return this; } public String getScriptReadData() { return ScriptReadData; } public DebtorSystemTemplateField setScriptReadData(String value) { this.ScriptReadData = value; return this; } public String getDefaultValue() { return DefaultValue; } public DebtorSystemTemplateField setDefaultValue(String value) { this.DefaultValue = value; return this; } public String getGridHandlerCode() { return GridHandlerCode; } public DebtorSystemTemplateField setGridHandlerCode(String value) { this.GridHandlerCode = value; return this; } } public static class ForwardCoverContract { public String ForwardCoverContractID = null; public String ContractNo = null; public String Description = null; public String Reference = null; public Currency Currency = null; public BigDecimal FXRate = null; public BigDecimal FXContractAmount = null; public BigDecimal FXUsedAmount = null; public BigDecimal HomeContractAmount = null; public BigDecimal HomeUsedAmount = null; public Date InitiatedDate = null; public Date StartDate = null; public Date EndDate = null; public Statuses Status = null; public Date LastSavedDateTime = null; public String getForwardCoverContractID() { return ForwardCoverContractID; } public ForwardCoverContract setForwardCoverContractID(String value) { this.ForwardCoverContractID = value; return this; } public String getContractNo() { return ContractNo; } public ForwardCoverContract setContractNo(String value) { this.ContractNo = value; return this; } public String getDescription() { return Description; } public ForwardCoverContract setDescription(String value) { this.Description = value; return this; } public String getReference() { return Reference; } public ForwardCoverContract setReference(String value) { this.Reference = value; return this; } public Currency getCurrency() { return Currency; } public ForwardCoverContract setCurrency(Currency value) { this.Currency = value; return this; } public BigDecimal getFxRate() { return FXRate; } public ForwardCoverContract setFxRate(BigDecimal value) { this.FXRate = value; return this; } public BigDecimal getFxContractAmount() { return FXContractAmount; } public ForwardCoverContract setFxContractAmount(BigDecimal value) { this.FXContractAmount = value; return this; } public BigDecimal getFxUsedAmount() { return FXUsedAmount; } public ForwardCoverContract setFxUsedAmount(BigDecimal value) { this.FXUsedAmount = value; return this; } public BigDecimal getHomeContractAmount() { return HomeContractAmount; } public ForwardCoverContract setHomeContractAmount(BigDecimal value) { this.HomeContractAmount = value; return this; } public BigDecimal getHomeUsedAmount() { return HomeUsedAmount; } public ForwardCoverContract setHomeUsedAmount(BigDecimal value) { this.HomeUsedAmount = value; return this; } public Date getInitiatedDate() { return InitiatedDate; } public ForwardCoverContract setInitiatedDate(Date value) { this.InitiatedDate = value; return this; } public Date getStartDate() { return StartDate; } public ForwardCoverContract setStartDate(Date value) { this.StartDate = value; return this; } public Date getEndDate() { return EndDate; } public ForwardCoverContract setEndDate(Date value) { this.EndDate = value; return this; } public Statuses getStatus() { return Status; } public ForwardCoverContract setStatus(Statuses value) { this.Status = value; return this; } public Date getLastSavedDateTime() { return LastSavedDateTime; } public ForwardCoverContract setLastSavedDateTime(Date value) { this.LastSavedDateTime = value; return this; } } @DataContract public static class AuthUserSession { @DataMember(Order=1) public String ReferrerUrl = null; @DataMember(Order=2) public String Id = null; @DataMember(Order=3) public String UserAuthId = null; @DataMember(Order=4) public String UserAuthName = null; @DataMember(Order=5) public String UserName = null; @DataMember(Order=6) public String TwitterUserId = null; @DataMember(Order=7) public String TwitterScreenName = null; @DataMember(Order=8) public String FacebookUserId = null; @DataMember(Order=9) public String FacebookUserName = null; @DataMember(Order=10) public String FirstName = null; @DataMember(Order=11) public String LastName = null; @DataMember(Order=12) public String DisplayName = null; @DataMember(Order=13) public String Company = null; @DataMember(Order=14) public String Email = null; @DataMember(Order=15) public String PrimaryEmail = null; @DataMember(Order=16) public String PhoneNumber = null; @DataMember(Order=17) public Date BirthDate = null; @DataMember(Order=18) public String BirthDateRaw = null; @DataMember(Order=19) public String Address = null; @DataMember(Order=20) public String Address2 = null; @DataMember(Order=21) public String City = null; @DataMember(Order=22) public String State = null; @DataMember(Order=23) public String Country = null; @DataMember(Order=24) public String Culture = null; @DataMember(Order=25) public String FullName = null; @DataMember(Order=26) public String Gender = null; @DataMember(Order=27) public String Language = null; @DataMember(Order=28) public String MailAddress = null; @DataMember(Order=29) public String Nickname = null; @DataMember(Order=30) public String PostalCode = null; @DataMember(Order=31) public String TimeZone = null; @DataMember(Order=32) public String RequestTokenSecret = null; @DataMember(Order=33) public Date CreatedAt = null; @DataMember(Order=34) public Date LastModified = null; @DataMember(Order=35) public ArrayList Roles = null; @DataMember(Order=36) public ArrayList Permissions = null; @DataMember(Order=37) public Boolean IsAuthenticated = null; @DataMember(Order=38) public Boolean FromToken = null; @DataMember(Order=39) public String ProfileUrl = null; @DataMember(Order=40) public String Sequence = null; @DataMember(Order=41) public Long Tag = null; @DataMember(Order=42) public String AuthProvider = null; @DataMember(Order=43) public ArrayList ProviderOAuthAccess = null; @DataMember(Order=44) public HashMap Meta = null; public String getReferrerUrl() { return ReferrerUrl; } public AuthUserSession setReferrerUrl(String value) { this.ReferrerUrl = value; return this; } public String getId() { return Id; } public AuthUserSession setId(String value) { this.Id = value; return this; } public String getUserAuthId() { return UserAuthId; } public AuthUserSession setUserAuthId(String value) { this.UserAuthId = value; return this; } public String getUserAuthName() { return UserAuthName; } public AuthUserSession setUserAuthName(String value) { this.UserAuthName = value; return this; } public String getUserName() { return UserName; } public AuthUserSession setUserName(String value) { this.UserName = value; return this; } public String getTwitterUserId() { return TwitterUserId; } public AuthUserSession setTwitterUserId(String value) { this.TwitterUserId = value; return this; } public String getTwitterScreenName() { return TwitterScreenName; } public AuthUserSession setTwitterScreenName(String value) { this.TwitterScreenName = value; return this; } public String getFacebookUserId() { return FacebookUserId; } public AuthUserSession setFacebookUserId(String value) { this.FacebookUserId = value; return this; } public String getFacebookUserName() { return FacebookUserName; } public AuthUserSession setFacebookUserName(String value) { this.FacebookUserName = value; return this; } public String getFirstName() { return FirstName; } public AuthUserSession setFirstName(String value) { this.FirstName = value; return this; } public String getLastName() { return LastName; } public AuthUserSession setLastName(String value) { this.LastName = value; return this; } public String getDisplayName() { return DisplayName; } public AuthUserSession setDisplayName(String value) { this.DisplayName = value; return this; } public String getCompany() { return Company; } public AuthUserSession setCompany(String value) { this.Company = value; return this; } public String getEmail() { return Email; } public AuthUserSession setEmail(String value) { this.Email = value; return this; } public String getPrimaryEmail() { return PrimaryEmail; } public AuthUserSession setPrimaryEmail(String value) { this.PrimaryEmail = value; return this; } public String getPhoneNumber() { return PhoneNumber; } public AuthUserSession setPhoneNumber(String value) { this.PhoneNumber = value; return this; } public Date getBirthDate() { return BirthDate; } public AuthUserSession setBirthDate(Date value) { this.BirthDate = value; return this; } public String getBirthDateRaw() { return BirthDateRaw; } public AuthUserSession setBirthDateRaw(String value) { this.BirthDateRaw = value; return this; } public String getAddress() { return Address; } public AuthUserSession setAddress(String value) { this.Address = value; return this; } public String getAddress2() { return Address2; } public AuthUserSession setAddress2(String value) { this.Address2 = value; return this; } public String getCity() { return City; } public AuthUserSession setCity(String value) { this.City = value; return this; } public String getState() { return State; } public AuthUserSession setState(String value) { this.State = value; return this; } public String getCountry() { return Country; } public AuthUserSession setCountry(String value) { this.Country = value; return this; } public String getCulture() { return Culture; } public AuthUserSession setCulture(String value) { this.Culture = value; return this; } public String getFullName() { return FullName; } public AuthUserSession setFullName(String value) { this.FullName = value; return this; } public String getGender() { return Gender; } public AuthUserSession setGender(String value) { this.Gender = value; return this; } public String getLanguage() { return Language; } public AuthUserSession setLanguage(String value) { this.Language = value; return this; } public String getMailAddress() { return MailAddress; } public AuthUserSession setMailAddress(String value) { this.MailAddress = value; return this; } public String getNickname() { return Nickname; } public AuthUserSession setNickname(String value) { this.Nickname = value; return this; } public String getPostalCode() { return PostalCode; } public AuthUserSession setPostalCode(String value) { this.PostalCode = value; return this; } public String getTimeZone() { return TimeZone; } public AuthUserSession setTimeZone(String value) { this.TimeZone = value; return this; } public String getRequestTokenSecret() { return RequestTokenSecret; } public AuthUserSession setRequestTokenSecret(String value) { this.RequestTokenSecret = value; return this; } public Date getCreatedAt() { return CreatedAt; } public AuthUserSession setCreatedAt(Date value) { this.CreatedAt = value; return this; } public Date getLastModified() { return LastModified; } public AuthUserSession setLastModified(Date value) { this.LastModified = value; return this; } public ArrayList getRoles() { return Roles; } public AuthUserSession setRoles(ArrayList value) { this.Roles = value; return this; } public ArrayList getPermissions() { return Permissions; } public AuthUserSession setPermissions(ArrayList value) { this.Permissions = value; return this; } public Boolean getIsAuthenticated() { return IsAuthenticated; } public AuthUserSession setIsAuthenticated(Boolean value) { this.IsAuthenticated = value; return this; } public Boolean isFromToken() { return FromToken; } public AuthUserSession setFromToken(Boolean value) { this.FromToken = value; return this; } public String getProfileUrl() { return ProfileUrl; } public AuthUserSession setProfileUrl(String value) { this.ProfileUrl = value; return this; } public String getSequence() { return Sequence; } public AuthUserSession setSequence(String value) { this.Sequence = value; return this; } public Long getTag() { return Tag; } public AuthUserSession setTag(Long value) { this.Tag = value; return this; } public String getAuthProvider() { return AuthProvider; } public AuthUserSession setAuthProvider(String value) { this.AuthProvider = value; return this; } public ArrayList getProviderOAuthAccess() { return ProviderOAuthAccess; } public AuthUserSession setProviderOAuthAccess(ArrayList value) { this.ProviderOAuthAccess = value; return this; } public HashMap getMeta() { return Meta; } public AuthUserSession setMeta(HashMap value) { this.Meta = value; return this; } } public static enum Statuses { Inactive, Active, Closed; } }